From 3e2bf73140dde490348a46e937e47a52b4da5d3c Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Mon, 1 Feb 2021 22:41:19 +0800 Subject: [PATCH 01/72] Initial commit. --- Dockerfile | 14 ++ k8chart/.helmignore | 22 ++ k8chart/Chart.yaml | 5 + k8chart/templates/NOTES.txt | 21 ++ k8chart/templates/_helpers.tpl | 45 ++++ k8chart/templates/curation-ingress.yaml | 17 ++ ...ontotools-curation-service-deployment.yaml | 72 +++++++ k8chart/templates/tests/test-connection.yaml | 15 ++ k8chart/values.yaml | 58 ++++++ pom.xml | 194 ++++++++++++++++++ scripts/build.sh | 6 + .../spot/ontotools/curation/Application.java | 46 +++++ .../ontotools/curation/config/CorsFilter.java | 29 +++ .../curation/config/CurationConfig.java | 46 +++++ .../config/ExceptionHandlerAdvice.java | 29 +++ .../curation/config/JettyConfig.java | 24 +++ .../curation/config/MongoConfig.java | 91 ++++++++ .../curation/config/WebMvcConfig.java | 49 +++++ .../curation/constants/CurationConstants.java | 10 + .../curation/constants/CurationStatus.java | 15 ++ .../ontotools/curation/domain/Comment.java | 31 +++ .../ontotools/curation/domain/Mapping.java | 31 +++ .../curation/domain/MappingSuggestion.java | 31 +++ .../curation/domain/OntologyTerm.java | 40 ++++ .../ontotools/curation/domain/Provenance.java | 17 ++ .../ontotools/curation/domain/Review.java | 28 +++ .../spot/ontotools/curation/domain/Trait.java | 37 ++++ .../spot/ontotools/curation/domain/User.java | 31 +++ .../exception/AuthorizationException.java | 8 + .../exception/EntityNotFoundException.java | 8 + .../repository/CommentRepository.java | 7 + .../repository/MappingRepository.java | 10 + .../MappingSuggestionRepository.java | 7 + .../repository/OntologyTermRepository.java | 10 + .../curation/repository/ReviewRepository.java | 7 + .../curation/repository/TraitRepository.java | 7 + .../curation/repository/UserRepository.java | 7 + .../rest/assembler/MappingDtoAssembler.java | 15 ++ .../assembler/OntologyTermDtoAssembler.java | 16 ++ .../assembler/ProvenanceDtoAssembler.java | 13 ++ .../rest/assembler/TraitDtoAssembler.java | 18 ++ .../rest/controller/TraitsController.java | 70 +++++++ .../curation/rest/dto/MappingDto.java | 49 +++++ .../curation/rest/dto/OntologyTermDto.java | 77 +++++++ .../curation/rest/dto/ProvenanceDto.java | 46 +++++ .../ontotools/curation/rest/dto/TraitDto.java | 77 +++++++ .../ontotools/curation/rest/dto/UserDto.java | 47 +++++ .../curation/service/MappingService.java | 10 + .../service/MappingSuggestionsService.java | 5 + .../curation/service/OntologyTermService.java | 10 + .../curation/service/TraitsService.java | 9 + .../service/impl/MappingServiceImpl.java | 33 +++ .../impl/MappingSuggestionsServiceImpl.java | 14 ++ .../service/impl/OntologyTermServiceImpl.java | 33 +++ .../service/impl/TraitsServiceImpl.java | 21 ++ .../curation/system/GeneralCommon.java | 17 ++ .../system/SystemConfigProperties.java | 45 ++++ .../ontotools/curation/util/CurationUtil.java | 24 +++ .../curation/util/DateTimeCommon.java | 19 ++ .../util/JsonJodaDateTimeDeserializer.java | 20 ++ .../util/JsonJodaDateTimeSerializer.java | 18 ++ .../util/JsonJodaLocalDateDeserializer.java | 20 ++ .../util/JsonJodaLocalDateSerializer.java | 18 ++ src/main/resources/aap.der | Bin 0 -> 871 bytes src/main/resources/application-dev.yml | 13 ++ src/main/resources/application-prod.yml | 10 + src/main/resources/application-sandbox.yml | 10 + src/main/resources/application.yml | 14 ++ src/main/resources/explore.der | Bin 0 -> 871 bytes src/main/resources/logback-spring.xml | 91 ++++++++ src/main/resources/logging-dev.properties | 3 + src/main/resources/logging-prod.properties | 3 + src/main/resources/logging-sandbox.properties | 3 + 73 files changed, 2016 insertions(+) create mode 100644 Dockerfile create mode 100644 k8chart/.helmignore create mode 100644 k8chart/Chart.yaml create mode 100644 k8chart/templates/NOTES.txt create mode 100644 k8chart/templates/_helpers.tpl create mode 100644 k8chart/templates/curation-ingress.yaml create mode 100644 k8chart/templates/ontotools-curation-service-deployment.yaml create mode 100644 k8chart/templates/tests/test-connection.yaml create mode 100644 k8chart/values.yaml create mode 100644 pom.xml create mode 100755 scripts/build.sh create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/Application.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/config/CorsFilter.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/config/CurationConfig.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/config/ExceptionHandlerAdvice.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/config/JettyConfig.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/config/MongoConfig.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/config/WebMvcConfig.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationStatus.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Comment.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Mapping.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MappingSuggestion.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/OntologyTerm.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Provenance.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Review.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Trait.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/User.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/exception/AuthorizationException.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/exception/EntityNotFoundException.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/CommentRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingSuggestionRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ReviewRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/TraitRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/UserRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/OntologyTermDtoAssembler.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProvenanceDtoAssembler.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/TraitDtoAssembler.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/TraitsController.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/MappingDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/OntologyTermDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProvenanceDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/TraitDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/UserDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/TraitsService.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/TraitsServiceImpl.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/system/GeneralCommon.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/system/SystemConfigProperties.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/util/DateTimeCommon.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/util/JsonJodaDateTimeDeserializer.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/util/JsonJodaDateTimeSerializer.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/util/JsonJodaLocalDateDeserializer.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/util/JsonJodaLocalDateSerializer.java create mode 100644 src/main/resources/aap.der create mode 100644 src/main/resources/application-dev.yml create mode 100644 src/main/resources/application-prod.yml create mode 100644 src/main/resources/application-sandbox.yml create mode 100644 src/main/resources/application.yml create mode 100644 src/main/resources/explore.der create mode 100644 src/main/resources/logback-spring.xml create mode 100644 src/main/resources/logging-dev.properties create mode 100644 src/main/resources/logging-prod.properties create mode 100644 src/main/resources/logging-sandbox.properties diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..9151247 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +# Import base image +FROM openjdk:15.0.2 + +# Create log file directory and set permission +RUN groupadd -r ontotools-curation-service && useradd -r --create-home -g ontotools-curation-service ontotools-curation-service +RUN if [ ! -d /var/log/ontotools/ ];then mkdir /var/log/ontotools/;fi +RUN chown -R ontotools-curation-service:ontotools-curation-service /var/log/ontotools + +# Move project artifact +ADD target/ontotools-curation-service-*.jar /home/ontotools-curation-service/ +USER ontotools-curation-service + +# Launch application server +ENTRYPOINT exec $JAVA_HOME/bin/java $XMX $XMS -jar -Dspring.profiles.active=$ENVIRONMENT /home/ontotools-curation-service/ontotools-curation-service-*.jar diff --git a/k8chart/.helmignore b/k8chart/.helmignore new file mode 100644 index 0000000..50af031 --- /dev/null +++ b/k8chart/.helmignore @@ -0,0 +1,22 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/k8chart/Chart.yaml b/k8chart/Chart.yaml new file mode 100644 index 0000000..7b5a60b --- /dev/null +++ b/k8chart/Chart.yaml @@ -0,0 +1,5 @@ +apiVersion: v1 +appVersion: "1.0" +description: A Helm chart for Kubernetes +name: ontotools-curation-service +version: 0.1.0 diff --git a/k8chart/templates/NOTES.txt b/k8chart/templates/NOTES.txt new file mode 100644 index 0000000..e5452db --- /dev/null +++ b/k8chart/templates/NOTES.txt @@ -0,0 +1,21 @@ +1. Get the application URL by running these commands: +{{- if .Values.ingress.enabled }} +{{- range $host := .Values.ingress.hosts }} + {{- range .paths }} + http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ . }} + {{- end }} +{{- end }} +{{- else if contains "NodePort" .Values.service.type }} + export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "ontotools-curation-service.fullname" . }}) + export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") + echo http://$NODE_IP:$NODE_PORT +{{- else if contains "LoadBalancer" .Values.service.type }} + NOTE: It may take a few minutes for the LoadBalancer IP to be available. + You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "ontotools-curation-service.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "ontotools-curation-service.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}') + echo http://$SERVICE_IP:{{ .Values.service.port }} +{{- else if contains "ClusterIP" .Values.service.type }} + export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "ontotools-curation-service.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") + echo "Visit http://127.0.0.1:8080 to use your application" + kubectl port-forward $POD_NAME 8080:80 +{{- end }} diff --git a/k8chart/templates/_helpers.tpl b/k8chart/templates/_helpers.tpl new file mode 100644 index 0000000..2b15432 --- /dev/null +++ b/k8chart/templates/_helpers.tpl @@ -0,0 +1,45 @@ +{{/* vim: set filetype=mustache: */}} +{{/* +Expand the name of the chart. +*/}} +{{- define "ontotools-curation-service.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} +{{- end -}} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "ontotools-curation-service.fullname" -}} +{{- if .Values.fullnameOverride -}} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}} +{{- else -}} +{{- $name := default .Chart.Name .Values.nameOverride -}} +{{- if contains $name .Release.Name -}} +{{- .Release.Name | trunc 63 | trimSuffix "-" -}} +{{- else -}} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} +{{- end -}} +{{- end -}} +{{- end -}} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "ontotools-curation-service.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" -}} +{{- end -}} + +{{/* +Common labels +*/}} +{{- define "ontotools-curation-service.labels" -}} +app.kubernetes.io/name: {{ include "ontotools-curation-service.name" . }} +helm.sh/chart: {{ include "ontotools-curation-service.chart" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end -}} diff --git a/k8chart/templates/curation-ingress.yaml b/k8chart/templates/curation-ingress.yaml new file mode 100644 index 0000000..e6f95ca --- /dev/null +++ b/k8chart/templates/curation-ingress.yaml @@ -0,0 +1,17 @@ +apiVersion: extensions/v1beta1 +kind: Ingress +metadata: + name: curation-ingress + annotations: + nginx.ingress.kubernetes.io/rewrite-target: /$2 + nginx.ingress.kubernetes.io/ssl-redirect: "false" + namespace: {{.Values.k8Namespace}} +spec: + rules: + - host: + http: + paths: + - path: {{.Values.ingress.path}} + curation: + serviceName: {{.Values.service.name}} + servicePort: {{.Values.service.port}} diff --git a/k8chart/templates/ontotools-curation-service-deployment.yaml b/k8chart/templates/ontotools-curation-service-deployment.yaml new file mode 100644 index 0000000..ee5ae50 --- /dev/null +++ b/k8chart/templates/ontotools-curation-service-deployment.yaml @@ -0,0 +1,72 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + name: {{.Values.service.name}} + namespace: {{.Values.k8Namespace}} + lables: + version: {{.Values.image.tag}} +spec: + replicas: {{.Values.replicaCount}} + strategy: + type: RollingUpdate + rollingUpdate: + maxSurge: 1 + maxUnavailable: 0 + template: + metadata: + labels: + app: {{.Values.service.name}} + spec: + containers: + - name: {{.Values.service.name}} + image: "{{.Values.image.repository}}:{{.Values.image.tag}}" + imagePullPolicy: {{.Values.image.pullPolicy}} + resources: + requests: + cpu: {{.Values.resources.requests.cpu}} + memory: {{.Values.resources.requests.memory}} + limits: + cpu: {{.Values.resources.limits.cpu}} + memory: {{.Values.resources.limits.memory}} + ports: + - name: http + containerPort: {{.Values.image.containerPort}} + volumeMounts: + - mountPath: {{.Values.image.logMountPath}} + name: log + env: + - name: ENVIRONMENT + value: {{.Values.image.env.envName}} + - name: XMS + value: {{.Values.image.env.xms}} + - name: XMX + value: {{.Values.image.env.xmx}} + - name: LOG_FILE_NAME + value: {{.Values.image.env.logFileName}} + - name: DB_USER + value: {{.Values.image.env.dbUser}} + - name: DB_PASSWORD + valueFrom: + secretKeyRef: + name: {{.Values.image.env.secretsName}} + key: {{.Values.image.env.secretsKey}} + volumes: + - name: log + persistentVolumeClaim: + claimName: {{ .Values.image.volume.claimName }} +--- +kind: Service +apiVersion: v1 +metadata: + labels: + app: {{.Values.service.name}} + version: {{.Values.image.tag}} + name: {{.Values.service.name}} + namespace: {{.Values.k8Namespace}} +spec: + type: {{.Values.service.type}} + ports: + - name: "application" + port: {{.Values.service.port}} + selector: + app: {{.Values.service.name}} diff --git a/k8chart/templates/tests/test-connection.yaml b/k8chart/templates/tests/test-connection.yaml new file mode 100644 index 0000000..0533f04 --- /dev/null +++ b/k8chart/templates/tests/test-connection.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Pod +metadata: + name: "{{ include "ontotools-curation-service.fullname" . }}-test-connection" + labels: +{{ include "ontotools-curation-service.labels" . | indent 4 }} + annotations: + "helm.sh/hook": test-success +spec: + containers: + - name: wget + image: busybox + command: ['wget'] + args: ['{{ include "ontotools-curation-service.fullname" . }}:{{ .Values.service.port }}'] + restartPolicy: Never diff --git a/k8chart/values.yaml b/k8chart/values.yaml new file mode 100644 index 0000000..247bf45 --- /dev/null +++ b/k8chart/values.yaml @@ -0,0 +1,58 @@ +# Default values for ontotools-backend-service. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + repository: ebispot/ontotools-curation-service + tag: latest + pullPolicy: Always + containerPort: 8080 + logMountPath: "/var/log/ontotools" + env: + envName: "sandbox" + logFileName: "ontotools-curation-service" + xms: "-Xms256m" + xmx: "-Xmx256m" + dbUser: "" + secretsName: "" + secretsKey: "" + volume: + claimName: ontotools-depo-logs + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + +service: + name: ontotools-curation-service + type: NodePort + port: 8080 + +ingress: + enabled: false + annotations: {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + + host: chart-example.local + path: "/curation(/|$)(.*)" + + tls: [] + +k8Namespace: default + +resources: + limits: + cpu: 100m + memory: 256Mi + requests: + cpu: 200m + memory: 512Mi + +nodeSelector: {} + +tolerations: [] + +affinity: {} diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..7babef9 --- /dev/null +++ b/pom.xml @@ -0,0 +1,194 @@ + + + 4.0.0 + + uk.ac.ebi.spot.ontotools + ontotools-curation-service + 0.0.1-SNAPSHOT + jar + + OntoTools Curation Service + + + org.springframework.boot + spring-boot-starter-parent + 2.4.2 + + + + + UTF-8 + uk.ac.ebi.spot.ontotools.curation.Application + + 2.4.2 + 5.3.3 + 4.0.1 + 2.0.1.Final + + 2.10.9 + 1.18.18 + 4.4 + 1.4 + 2.8.0 + 3.11 + 0.9.1 + 1.3 + 1.2.3 + 3.2.18 + 4.13.1 + 3.7.7 + 3.5.2 + + + + scm:git:https://github.com/EBISPOT/ontotools-curator.git + scm:git:https://github.com/EBISPOT/ontotools-curator.git + https://github.com/EBISPOT/ontotools-curator.git + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-tomcat + + + + + org.springframework.boot + spring-boot-starter-jetty + + + org.springframework.boot + spring-boot + + + org.springframework.boot + spring-boot-test + + + org.springframework.boot + spring-boot-starter-data-mongodb + + + org.springframework.data + spring-data-mongodb + + + org.springframework.boot + spring-boot-starter-actuator + + + org.springframework.boot + spring-boot-starter-mail + + + org.springframework.boot + spring-boot-starter-thymeleaf + + + joda-time + joda-time + ${joda.time} + + + javax.servlet + javax.servlet-api + ${javax.servlet} + + + javax.validation + validation-api + ${javax.validation} + + + org.projectlombok + lombok + ${lombok.version} + + + org.apache.commons + commons-collections4 + ${commons.collections} + + + commons-fileupload + commons-fileupload + ${commons.fileupload} + + + commons-io + commons-io + ${commons.io} + + + org.apache.commons + commons-lang3 + ${commons.lang3} + + + io.jsonwebtoken + jjwt + ${jjwt.version} + + + org.hamcrest + hamcrest-core + ${hamcrest.core} + + + ch.qos.logback + logback-classic + ${logback.classic} + + + ch.qos.logback + logback-core + ${logback.classic} + + + ognl + ognl + ${ognl.version} + + + + junit + junit + ${junit.version} + + + org.mockito + mockito-core + ${mockito.core} + test + + + nl.jqno.equalsverifier + equalsverifier + ${equalsverifier.version} + test + + + org.springframework + spring-test + ${spring.test} + test + + + + diff --git a/scripts/build.sh b/scripts/build.sh new file mode 100755 index 0000000..ffd2b8b --- /dev/null +++ b/scripts/build.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +cd .. +docker build --force-rm=true -t ontotools-curation-service:latest . +docker tag ontotools-curation-service:latest ebispot/ontotools-curation-service:latest-sandbox +docker push ebispot/ontotools-curation-service:latest-sandbox diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/Application.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/Application.java new file mode 100644 index 0000000..9feff60 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/Application.java @@ -0,0 +1,46 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import org.joda.time.DateTime; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.scheduling.annotation.EnableAsync; +import org.springframework.scheduling.annotation.EnableScheduling; +import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; +import uk.ac.ebi.spot.ontotools.curation.system.SystemConfigProperties; + +import javax.annotation.PostConstruct; +import javax.annotation.PreDestroy; +import java.net.InetAddress; +import java.net.UnknownHostException; + +@SpringBootApplication(scanBasePackages = "uk.ac.ebi.spot.ontotools") +@EnableScheduling +@EnableAsync +public class Application implements WebMvcConfigurer { + + private static final Logger log = LoggerFactory.getLogger(Application.class); + + @Autowired + private SystemConfigProperties systemConfigProperties; + + @PostConstruct + public void init() { + log.info("[{}] Initializing: {}", DateTime.now(), systemConfigProperties.getServerName()); + } + + @PreDestroy + public void destroy() { + log.info("[{}] Shutting down: {}", DateTime.now(), systemConfigProperties.getServerName()); + } + + public static void main(String[] args) throws UnknownHostException { + String hostAddress = InetAddress.getLocalHost().getHostAddress(); + String logFileName = System.getenv(GeneralCommon.LOG_FILE_NAME); + System.setProperty("log.file.name", logFileName + "-" + hostAddress); + SpringApplication.run(Application.class, args); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/CorsFilter.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/CorsFilter.java new file mode 100644 index 0000000..86dfe04 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/CorsFilter.java @@ -0,0 +1,29 @@ +package uk.ac.ebi.spot.ontotools.curation.config; + +import org.springframework.stereotype.Component; +import org.springframework.web.filter.OncePerRequestFilter; + +import javax.servlet.FilterChain; +import javax.servlet.ServletException; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.io.IOException; + +@Component +public class CorsFilter extends OncePerRequestFilter { + + @Override + protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain) throws ServletException, IOException { + response.setHeader("Access-Control-Allow-Origin", "*"); + response.setHeader("Access-Control-Allow-Methods", "GET, POST, PUT, DELETE, OPTIONS"); + response.setHeader("Access-Control-Max-Age", "3600"); + response.setHeader("Access-Control-Allow-Credentials", "true"); + response.setHeader("Access-Control-Allow-Headers", "authorization, content-type, xsrf-token"); + response.addHeader("Access-Control-Expose-Headers", "xsrf-token"); + if ("OPTIONS".equals(request.getMethod())) { + response.setStatus(HttpServletResponse.SC_OK); + } else { + filterChain.doFilter(request, response); + } + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/CurationConfig.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/CurationConfig.java new file mode 100644 index 0000000..0a6a34a --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/CurationConfig.java @@ -0,0 +1,46 @@ +package uk.ac.ebi.spot.ontotools.curation.config; + +import org.springframework.beans.factory.annotation.Value; +import org.springframework.stereotype.Component; +import uk.ac.ebi.spot.ontotools.curation.util.CurationUtil; + +import java.util.List; + +@Component +public class CurationConfig { + + @Value("${ontotools-curation.auth.enabled}") + private boolean authEnabled; + + @Value("${ontotools-curation.auth.cert:#{NULL}}") + private String certPath; + + @Value("${ontotools-curation.auth.curators.auth-mechanism:JWT_DOMAIN}") + private String curatorAuthMechanism; + + @Value("${ontotools-curation.auth.curators.jwt-domains:#{NULL}}") + private String curatorDomains; + + @Value("${ontotools-curation.db:#{NULL}}") + private String dbName; + + public String getDbName() { + return dbName; + } + + public boolean isAuthEnabled() { + return authEnabled; + } + + public String getCertPath() { + return certPath; + } + + public String getCuratorAuthMechanism() { + return curatorAuthMechanism; + } + + public List getCuratorDomains() { + return CurationUtil.sToList(curatorDomains); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/ExceptionHandlerAdvice.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/ExceptionHandlerAdvice.java new file mode 100644 index 0000000..c51eafd --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/ExceptionHandlerAdvice.java @@ -0,0 +1,29 @@ +package uk.ac.ebi.spot.ontotools.curation.config; + +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.web.bind.annotation.ControllerAdvice; +import org.springframework.web.bind.annotation.ExceptionHandler; +import org.springframework.web.bind.annotation.RestController; +import uk.ac.ebi.spot.ontotools.curation.exception.AuthorizationException; +import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; + +@ControllerAdvice(annotations = RestController.class) +public class ExceptionHandlerAdvice { + + @ExceptionHandler(AuthorizationException.class) + public ResponseEntity handleAuthorizationException(AuthorizationException e) { + HttpHeaders headers = new HttpHeaders(); + headers.setContentType(MediaType.TEXT_PLAIN); + return new ResponseEntity<>(e.getMessage(), headers, HttpStatus.UNAUTHORIZED); + } + + @ExceptionHandler(EntityNotFoundException.class) + public ResponseEntity handleAuthorizationException(EntityNotFoundException e) { + HttpHeaders headers = new HttpHeaders(); + headers.setContentType(MediaType.TEXT_PLAIN); + return new ResponseEntity<>(e.getMessage(), headers, HttpStatus.NOT_FOUND); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/JettyConfig.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/JettyConfig.java new file mode 100644 index 0000000..688c8e9 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/JettyConfig.java @@ -0,0 +1,24 @@ +package uk.ac.ebi.spot.ontotools.curation.config; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.web.embedded.jetty.JettyServletWebServerFactory; +import org.springframework.boot.web.servlet.server.ServletWebServerFactory; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import uk.ac.ebi.spot.ontotools.curation.system.SystemConfigProperties; + +@Configuration +public class JettyConfig { + + @Autowired + private SystemConfigProperties systemConfigProperties; + + @Bean + public ServletWebServerFactory servletContainer() { + JettyServletWebServerFactory factory = new JettyServletWebServerFactory(); + int port = Integer.parseInt(systemConfigProperties.getServerPort()); + factory.setPort(port); + return factory; + } +} + diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/MongoConfig.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/MongoConfig.java new file mode 100644 index 0000000..060fa43 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/MongoConfig.java @@ -0,0 +1,91 @@ +package uk.ac.ebi.spot.ontotools.curation.config; + +import com.mongodb.client.MongoClient; +import com.mongodb.client.MongoClients; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.context.annotation.Profile; +import org.springframework.data.mongodb.config.AbstractMongoClientConfiguration; +import org.springframework.data.mongodb.core.convert.MappingMongoConverter; +import org.springframework.data.mongodb.gridfs.GridFsTemplate; +import org.springframework.data.mongodb.repository.config.EnableMongoRepositories; +import org.springframework.transaction.annotation.EnableTransactionManagement; +import uk.ac.ebi.spot.ontotools.curation.system.SystemConfigProperties; + +public class MongoConfig { + + @Configuration + @EnableMongoRepositories(basePackages = {"uk.ac.ebi.spot.ontotools.curation.repository"}) + @EnableTransactionManagement + @Profile({"sandbox"}) + public static class MongoConfigDevSandbox extends AbstractMongoClientConfiguration { + + @Autowired + private SystemConfigProperties systemConfigProperties; + + @Autowired + private CurationConfig curationConfig; + + @Autowired + private MappingMongoConverter mongoConverter; + + @Override + protected String getDatabaseName() { + return curationConfig.getDbName(); + } + + @Bean + public GridFsTemplate gridFsTemplate() { + return new GridFsTemplate(mongoDbFactory(), mongoConverter); + } + + @Override + public MongoClient mongoClient() { + return MongoClients.create("mongodb://" + systemConfigProperties.getMongoUri()); + } + } + + @Configuration + @EnableMongoRepositories(basePackages = {"uk.ac.ebi.spot.ontotools.curation.repository"}) + @EnableTransactionManagement + @Profile({"prod"}) + public static class MongoConfigProd extends AbstractMongoClientConfiguration { + + @Autowired + private SystemConfigProperties systemConfigProperties; + + @Autowired + private CurationConfig curationConfig; + + @Autowired + private MappingMongoConverter mongoConverter; + + @Override + protected String getDatabaseName() { + return curationConfig.getDbName(); + } + + @Bean + public GridFsTemplate gridFsTemplate() { + return new GridFsTemplate(mongoDbFactory(), mongoConverter); + } + + @Override + public MongoClient mongoClient() { + String dbUser = systemConfigProperties.getDbUser(); + String dbPassword = systemConfigProperties.getDbPassword(); + String credentials = ""; + if (dbUser != null && dbPassword != null) { + dbUser = dbUser.trim(); + dbPassword = dbPassword.trim(); + if (!dbUser.equalsIgnoreCase("") && + !dbPassword.equalsIgnoreCase("")) { + credentials = dbUser + ":" + dbPassword + "@"; + } + } + + return MongoClients.create("mongodb://" + credentials + systemConfigProperties.getMongoUri()); + } + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/WebMvcConfig.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/WebMvcConfig.java new file mode 100644 index 0000000..6d01bfe --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/WebMvcConfig.java @@ -0,0 +1,49 @@ +package uk.ac.ebi.spot.ontotools.curation.config; + +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.core.annotation.Order; +import org.springframework.core.task.SimpleAsyncTaskExecutor; +import org.springframework.web.multipart.commons.CommonsMultipartResolver; +import org.springframework.web.multipart.support.MultipartFilter; +import org.springframework.web.servlet.config.annotation.CorsRegistry; +import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; + +import java.util.concurrent.Executor; + + +public class WebMvcConfig { + + @Configuration + public static class GeneralWebMvcConfig implements WebMvcConfigurer { + + @Bean + public Executor taskExecutor() { + return new SimpleAsyncTaskExecutor(); + } + + @Bean + @Order(0) + public MultipartFilter multipartFilter() { + MultipartFilter multipartFilter = new MultipartFilter(); + multipartFilter.setMultipartResolverBeanName("filterMultipartResolver"); + return multipartFilter; + } + + @Bean(name = "filterMultipartResolver") + public CommonsMultipartResolver multipartResolver() { + CommonsMultipartResolver multipartResolver = new CommonsMultipartResolver(); + multipartResolver.setMaxUploadSize(30000000); + return multipartResolver; + } + + @Override + public void addCorsMappings(CorsRegistry registry) { + registry.addMapping("/**") + .allowedOrigins("http://localhost:80") + .allowedMethods("GET", "POST", "PUT", "OPTIONS", "DELETE", "PATCH", "FETCH") + .allowCredentials(true) + .allowedHeaders("*", "Access-Control-Allow-Origin", "Access-Control-Allow-Credentials"); + } + } +} \ No newline at end of file diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java new file mode 100644 index 0000000..8697663 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -0,0 +1,10 @@ +package uk.ac.ebi.spot.ontotools.curation.constants; + +public class CurationConstants { + + public static final String API_TRAITS = "/traits"; + + public static final String API_MAPPINGS = "/mappings"; + + public static final String API_SUGGESTIONS = "/mapping-suggestions"; +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationStatus.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationStatus.java new file mode 100644 index 0000000..63224a0 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationStatus.java @@ -0,0 +1,15 @@ +package uk.ac.ebi.spot.ontotools.curation.constants; + +public enum CurationStatus { + + CURRENT, + UNMAPPED, + OBSOLETE, + DELETED, + NEEDS_IMPORT, + AWAITING_IMPORT, + NEEDS_CREATION, + AWAITING_CREATION, + AWAITING_REVIEW + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Comment.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Comment.java new file mode 100644 index 0000000..eedfdc8 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Comment.java @@ -0,0 +1,31 @@ +package uk.ac.ebi.spot.ontotools.curation.domain; + +import lombok.Getter; +import lombok.Setter; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.mapping.Document; + +@Document(collection = "comments") +@Getter +@Setter +public class Comment { + + @Id + private String id; + + private String mappedTraitId; + + private Provenance created; + + private String body; + + public Comment() { + + } + + public Comment(String mappedTraitId, String body, Provenance created) { + this.mappedTraitId = mappedTraitId; + this.created = created; + this.body = body; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Mapping.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Mapping.java new file mode 100644 index 0000000..f3e637c --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Mapping.java @@ -0,0 +1,31 @@ +package uk.ac.ebi.spot.ontotools.curation.domain; + +import lombok.Getter; +import lombok.Setter; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.mapping.Document; + +@Document(collection = "mappings") +@Getter +@Setter +public class Mapping { + + @Id + private String id; + + private String mappedTraitId; + + private String mappedTermId; + + private Provenance created; + + public Mapping() { + + } + + public Mapping(String mappedTraitId, String mappedTermId, Provenance created) { + this.mappedTraitId = mappedTraitId; + this.mappedTermId = mappedTermId; + this.created = created; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MappingSuggestion.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MappingSuggestion.java new file mode 100644 index 0000000..1915fdd --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MappingSuggestion.java @@ -0,0 +1,31 @@ +package uk.ac.ebi.spot.ontotools.curation.domain; + +import lombok.Getter; +import lombok.Setter; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.mapping.Document; + +@Document(collection = "mappingSuggestions") +@Getter +@Setter +public class MappingSuggestion { + + @Id + private String id; + + private String mappedTraitId; + + private String mappedTermId; + + private Provenance created; + + public MappingSuggestion() { + + } + + public MappingSuggestion(String mappedTraitId, String mappedTermId, Provenance created) { + this.mappedTraitId = mappedTraitId; + this.mappedTermId = mappedTermId; + this.created = created; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/OntologyTerm.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/OntologyTerm.java new file mode 100644 index 0000000..0c31373 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/OntologyTerm.java @@ -0,0 +1,40 @@ +package uk.ac.ebi.spot.ontotools.curation.domain; + +import lombok.Getter; +import lombok.Setter; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.mapping.Document; + +@Document(collection = "ontologyTerms") +@Getter +@Setter +public class OntologyTerm { + + @Id + private String id; + + private String curie; + + private String iri; + + private String label; + + private String status; + + private String description; + + private String crossRefs; + + public OntologyTerm() { + + } + + public OntologyTerm(String curie, String iri, String label, String status, String description, String crossRefs) { + this.curie = curie; + this.iri = iri; + this.label = label; + this.status = status; + this.description = description; + this.crossRefs = crossRefs; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Provenance.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Provenance.java new file mode 100644 index 0000000..8e77a99 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Provenance.java @@ -0,0 +1,17 @@ +package uk.ac.ebi.spot.ontotools.curation.domain; + +import lombok.Getter; +import org.joda.time.DateTime; + +@Getter +public class Provenance { + + private String userId; + + private DateTime timestamp; + + public Provenance(String userId, DateTime timestamp) { + this.userId = userId; + this.timestamp = timestamp; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Review.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Review.java new file mode 100644 index 0000000..c873539 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Review.java @@ -0,0 +1,28 @@ +package uk.ac.ebi.spot.ontotools.curation.domain; + +import lombok.Getter; +import lombok.Setter; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.mapping.Document; + +@Document(collection = "reviews") +@Getter +@Setter +public class Review { + + @Id + private String id; + + private String reviewId; + + private Provenance created; + + public Review() { + + } + + public Review(String reviewId, Provenance created) { + this.reviewId = reviewId; + this.created = created; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Trait.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Trait.java new file mode 100644 index 0000000..b767e67 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Trait.java @@ -0,0 +1,37 @@ +package uk.ac.ebi.spot.ontotools.curation.domain; + +import lombok.Getter; +import lombok.Setter; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.mapping.Document; + +@Document(collection = "traits") +@Getter +@Setter +public class Trait { + + @Id + private String id; + + private String name; + + private String currentMappingId; + + private int noSourceRecords; + + private Provenance created; + + private Provenance lastUpdated; + + public Trait() { + } + + + public Trait(String name, String currentMappingId, Provenance created) { + this.name = name; + this.currentMappingId = currentMappingId; + this.noSourceRecords = 0; + this.created = created; + this.lastUpdated = created; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/User.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/User.java new file mode 100644 index 0000000..9234dc0 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/User.java @@ -0,0 +1,31 @@ +package uk.ac.ebi.spot.ontotools.curation.domain; + +import lombok.Getter; +import lombok.Setter; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.mapping.Document; + +@Document(collection = "users") +@Getter +@Setter +public class User { + + @Id + private String id; + + private String username; + + private String email; + + private String role; + + public User() { + + } + + public User(String username, String email, String role) { + this.username = username; + this.email = email; + this.role = role; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/exception/AuthorizationException.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/exception/AuthorizationException.java new file mode 100644 index 0000000..60e0618 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/exception/AuthorizationException.java @@ -0,0 +1,8 @@ +package uk.ac.ebi.spot.ontotools.curation.exception; + +public class AuthorizationException extends RuntimeException { + + public AuthorizationException(String message) { + super(message); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/exception/EntityNotFoundException.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/exception/EntityNotFoundException.java new file mode 100644 index 0000000..9a90164 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/exception/EntityNotFoundException.java @@ -0,0 +1,8 @@ +package uk.ac.ebi.spot.ontotools.curation.exception; + +public class EntityNotFoundException extends RuntimeException { + + public EntityNotFoundException(String message) { + super(message); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/CommentRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/CommentRepository.java new file mode 100644 index 0000000..a268796 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/CommentRepository.java @@ -0,0 +1,7 @@ +package uk.ac.ebi.spot.ontotools.curation.repository; + +import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.Comment; + +public interface CommentRepository extends MongoRepository { +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java new file mode 100644 index 0000000..2920795 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java @@ -0,0 +1,10 @@ +package uk.ac.ebi.spot.ontotools.curation.repository; + +import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; + +import java.util.List; + +public interface MappingRepository extends MongoRepository { + List findByIdIn(List mappingIds); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingSuggestionRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingSuggestionRepository.java new file mode 100644 index 0000000..62736ed --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingSuggestionRepository.java @@ -0,0 +1,7 @@ +package uk.ac.ebi.spot.ontotools.curation.repository; + +import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.MappingSuggestion; + +public interface MappingSuggestionRepository extends MongoRepository { +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java new file mode 100644 index 0000000..f9a4aae --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java @@ -0,0 +1,10 @@ +package uk.ac.ebi.spot.ontotools.curation.repository; + +import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; + +import java.util.List; + +public interface OntologyTermRepository extends MongoRepository { + List findByIdIn(List ontoTermIds); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ReviewRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ReviewRepository.java new file mode 100644 index 0000000..17b231a --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ReviewRepository.java @@ -0,0 +1,7 @@ +package uk.ac.ebi.spot.ontotools.curation.repository; + +import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.Review; + +public interface ReviewRepository extends MongoRepository { +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/TraitRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/TraitRepository.java new file mode 100644 index 0000000..89ceb08 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/TraitRepository.java @@ -0,0 +1,7 @@ +package uk.ac.ebi.spot.ontotools.curation.repository; + +import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.Trait; + +public interface TraitRepository extends MongoRepository { +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/UserRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/UserRepository.java new file mode 100644 index 0000000..e8f277a --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/UserRepository.java @@ -0,0 +1,7 @@ +package uk.ac.ebi.spot.ontotools.curation.repository; + +import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.User; + +public interface UserRepository extends MongoRepository { +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java new file mode 100644 index 0000000..060a6c7 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java @@ -0,0 +1,15 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.assembler; + +import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.MappingDto; + +public class MappingDtoAssembler { + + public static MappingDto assemble(Mapping mapping, OntologyTerm ontologyTerm) { + return new MappingDto(mapping.getId(), + OntologyTermDtoAssembler.assemble(ontologyTerm), + ProvenanceDtoAssembler.assemble(mapping.getCreated())); + } + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/OntologyTermDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/OntologyTermDtoAssembler.java new file mode 100644 index 0000000..64f5b72 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/OntologyTermDtoAssembler.java @@ -0,0 +1,16 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.assembler; + +import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.OntologyTermDto; + +public class OntologyTermDtoAssembler { + + public static OntologyTermDto assemble(OntologyTerm ontologyTerm) { + return new OntologyTermDto(ontologyTerm.getCurie(), + ontologyTerm.getIri(), + ontologyTerm.getLabel(), + ontologyTerm.getStatus(), + ontologyTerm.getDescription(), + ontologyTerm.getCrossRefs()); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProvenanceDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProvenanceDtoAssembler.java new file mode 100644 index 0000000..efed199 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProvenanceDtoAssembler.java @@ -0,0 +1,13 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.assembler; + +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProvenanceDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.UserDto; + +public class ProvenanceDtoAssembler { + + public static ProvenanceDto assemble(Provenance provenance) { + return new ProvenanceDto(new UserDto(provenance.getUserId(), null, null), provenance.getTimestamp()); + } + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/TraitDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/TraitDtoAssembler.java new file mode 100644 index 0000000..1bd1253 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/TraitDtoAssembler.java @@ -0,0 +1,18 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.assembler; + +import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.Trait; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.TraitDto; + +public class TraitDtoAssembler { + + public static TraitDto assemble(Trait trait, Mapping mapping, OntologyTerm ontologyTerm) { + return new TraitDto(trait.getId(), + trait.getName(), + MappingDtoAssembler.assemble(mapping, ontologyTerm), + trait.getNoSourceRecords(), + ProvenanceDtoAssembler.assemble(trait.getCreated()), + ProvenanceDtoAssembler.assemble(trait.getLastUpdated())); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/TraitsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/TraitsController.java new file mode 100644 index 0000000..388b00d --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/TraitsController.java @@ -0,0 +1,70 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.controller; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.ResponseStatus; +import org.springframework.web.bind.annotation.RestController; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.Trait; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.TraitDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.TraitDto; +import uk.ac.ebi.spot.ontotools.curation.service.MappingService; +import uk.ac.ebi.spot.ontotools.curation.service.OntologyTermService; +import uk.ac.ebi.spot.ontotools.curation.service.TraitsService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; + +import java.util.ArrayList; +import java.util.List; +import java.util.Map; +import java.util.stream.Collectors; + +@RestController +@RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_TRAITS) +public class TraitsController { + + private static final Logger log = LoggerFactory.getLogger(TraitsController.class); + + @Autowired + private TraitsService traitsService; + + @Autowired + private MappingService mappingService; + + @Autowired + private OntologyTermService ontologyTermService; + + /** + * GET /v1/traits + */ + @GetMapping(produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public List getTraits() { + log.info("Request to get traits."); + List traits = traitsService.getTraits(); + List mappingIds = traits.stream().filter(trait -> trait.getCurrentMappingId() != null).map(Trait::getCurrentMappingId).collect(Collectors.toList()); + Map mappingMap = mappingService.getMappingsById(mappingIds); + + List ontoTermIds = new ArrayList<>(); + for (Mapping mapping : mappingMap.values()) { + if (!ontoTermIds.contains(mapping.getMappedTermId())) { + ontoTermIds.add(mapping.getMappedTermId()); + } + } + Map ontologyTerms = ontologyTermService.getOntologyTermsById(ontoTermIds); + + List result = new ArrayList<>(); + for (Trait trait : traits) { + result.add(TraitDtoAssembler.assemble(trait, mappingMap.get(trait.getCurrentMappingId()), ontologyTerms.get(mappingMap.get(trait.getCurrentMappingId()).getMappedTermId()))); + + } + return result; + } + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/MappingDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/MappingDto.java new file mode 100644 index 0000000..d3e17eb --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/MappingDto.java @@ -0,0 +1,49 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotNull; +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class MappingDto implements Serializable { + + private static final long serialVersionUID = -2548737672325162378L; + + @NotNull + @JsonProperty("id") + private final String id; + + @NotNull + @JsonProperty("ontologyTerm") + private final OntologyTermDto ontologyTerm; + + @NotNull + @JsonProperty("created") + private final ProvenanceDto created; + + @JsonCreator + public MappingDto(@JsonProperty("id") String id, + @JsonProperty("ontologyTerm") OntologyTermDto ontologyTerm, + @JsonProperty("created") ProvenanceDto created) { + this.id = id; + this.ontologyTerm = ontologyTerm; + this.created = created; + } + + public String getId() { + return id; + } + + public OntologyTermDto getOntologyTerm() { + return ontologyTerm; + } + + public ProvenanceDto getCreated() { + return created; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/OntologyTermDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/OntologyTermDto.java new file mode 100644 index 0000000..ba608cf --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/OntologyTermDto.java @@ -0,0 +1,77 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotNull; +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class OntologyTermDto implements Serializable { + + private static final long serialVersionUID = 714105630780606515L; + + @NotNull + @JsonProperty("curie") + private final String curie; + + @NotNull + @JsonProperty("iri") + private final String iri; + + @NotNull + @JsonProperty("label") + private final String label; + + @NotNull + @JsonProperty("status") + private final String status; + + @JsonProperty("description") + private final String description; + + @JsonProperty("crossRefs") + private final String crossRefs; + + @JsonCreator + public OntologyTermDto(@JsonProperty("curie") String curie, + @JsonProperty("iri") String iri, + @JsonProperty("label") String label, + @JsonProperty("status") String status, + @JsonProperty("description") String description, + @JsonProperty("crossRefs") String crossRefs) { + this.curie = curie; + this.iri = iri; + this.label = label; + this.status = status; + this.description = description; + this.crossRefs = crossRefs; + } + + public String getCurie() { + return curie; + } + + public String getIri() { + return iri; + } + + public String getLabel() { + return label; + } + + public String getStatus() { + return status; + } + + public String getDescription() { + return description; + } + + public String getCrossRefs() { + return crossRefs; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProvenanceDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProvenanceDto.java new file mode 100644 index 0000000..3a7da40 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProvenanceDto.java @@ -0,0 +1,46 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.databind.annotation.JsonDeserialize; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; +import lombok.EqualsAndHashCode; +import org.joda.time.DateTime; +import uk.ac.ebi.spot.ontotools.curation.util.JsonJodaDateTimeDeserializer; +import uk.ac.ebi.spot.ontotools.curation.util.JsonJodaDateTimeSerializer; + +import javax.validation.constraints.NotNull; +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class ProvenanceDto implements Serializable { + + private static final long serialVersionUID = -527759108725584128L; + + @NotNull + @JsonSerialize(using = JsonJodaDateTimeSerializer.class) + @JsonProperty("timestamp") + private final DateTime timestamp; + + @NotNull + @JsonProperty("user") + private final UserDto user; + + @JsonCreator + public ProvenanceDto(@JsonProperty("user") UserDto user, + @JsonProperty("timestamp") @JsonDeserialize(using = JsonJodaDateTimeDeserializer.class) DateTime timestamp) { + this.user = user; + this.timestamp = timestamp; + } + + public DateTime getTimestamp() { + return timestamp; + } + + public UserDto getUser() { + return user; + } + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/TraitDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/TraitDto.java new file mode 100644 index 0000000..fb55eef --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/TraitDto.java @@ -0,0 +1,77 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotNull; +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class TraitDto implements Serializable { + + private static final long serialVersionUID = 714105630780606515L; + + @NotNull + @JsonProperty("id") + private final String id; + + @NotNull + @JsonProperty("name") + private final String name; + + @JsonProperty("currentMapping") + private final MappingDto currentMapping; + + @JsonProperty("noSourceRecords") + private final int noSourceRecords; + + @NotNull + @JsonProperty("created") + private final ProvenanceDto created; + + @NotNull + @JsonProperty("lastUpdated") + private final ProvenanceDto lastUpdated; + + @JsonCreator + public TraitDto(@JsonProperty("id") String id, + @JsonProperty("name") String name, + @JsonProperty("currentMapping") MappingDto currentMapping, + @JsonProperty("noSourceRecords") int noSourceRecords, + @JsonProperty("created") ProvenanceDto created, + @JsonProperty("lastUpdated") ProvenanceDto lastUpdated) { + this.id = id; + this.name = name; + this.currentMapping = currentMapping; + this.noSourceRecords = noSourceRecords; + this.created = created; + this.lastUpdated = lastUpdated; + } + + public String getId() { + return id; + } + + public String getName() { + return name; + } + + public MappingDto getCurrentMapping() { + return currentMapping; + } + + public int getNoSourceRecords() { + return noSourceRecords; + } + + public ProvenanceDto getCreated() { + return created; + } + + public ProvenanceDto getLastUpdated() { + return lastUpdated; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/UserDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/UserDto.java new file mode 100644 index 0000000..39d0065 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/UserDto.java @@ -0,0 +1,47 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotNull; +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class UserDto implements Serializable { + + private static final long serialVersionUID = 8940035463152694066L; + + @NotNull + @JsonProperty("username") + private final String username; + + @JsonProperty("email") + private final String email; + + @JsonProperty("role") + private final String role; + + @JsonCreator + public UserDto(@JsonProperty("username") String username, + @JsonProperty("email") String email, + @JsonProperty("role") String role) { + this.username = username; + this.email = email; + this.role = role; + } + + public String getUsername() { + return username; + } + + public String getEmail() { + return email; + } + + public String getRole() { + return role; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java new file mode 100644 index 0000000..3111c3d --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java @@ -0,0 +1,10 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; + +import java.util.List; +import java.util.Map; + +public interface MappingService { + Map getMappingsById(List mappingIds); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java new file mode 100644 index 0000000..a413d3b --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java @@ -0,0 +1,5 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +public interface MappingSuggestionsService { + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java new file mode 100644 index 0000000..65a7786 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java @@ -0,0 +1,10 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; + +import java.util.List; +import java.util.Map; + +public interface OntologyTermService { + Map getOntologyTermsById(List ontoTermIds); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/TraitsService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/TraitsService.java new file mode 100644 index 0000000..e62a457 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/TraitsService.java @@ -0,0 +1,9 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import uk.ac.ebi.spot.ontotools.curation.domain.Trait; + +import java.util.List; + +public interface TraitsService { + List getTraits(); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java new file mode 100644 index 0000000..341c76b --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java @@ -0,0 +1,33 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; +import uk.ac.ebi.spot.ontotools.curation.repository.MappingRepository; +import uk.ac.ebi.spot.ontotools.curation.service.MappingService; + +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +@Service +public class MappingServiceImpl implements MappingService { + + private static final Logger log = LoggerFactory.getLogger(MappingService.class); + + @Autowired + private MappingRepository mappingRepository; + + @Override + public Map getMappingsById(List mappingIds) { + log.info("Retrieving mappings for {} ids.", mappingIds.size()); + Map mappingMap = new HashMap<>(); + List mappings = mappingRepository.findByIdIn(mappingIds); + for (Mapping mapping : mappings) { + mappingMap.put(mapping.getMappedTermId(), mapping); + } + return mappingMap; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java new file mode 100644 index 0000000..d270909 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.service.MappingSuggestionsService; + +@Service +public class MappingSuggestionsServiceImpl implements MappingSuggestionsService { + + private static final Logger log = LoggerFactory.getLogger(MappingSuggestionsService.class); + + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java new file mode 100644 index 0000000..96ed371 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java @@ -0,0 +1,33 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.repository.OntologyTermRepository; +import uk.ac.ebi.spot.ontotools.curation.service.OntologyTermService; + +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +@Service +public class OntologyTermServiceImpl implements OntologyTermService { + + private static final Logger log = LoggerFactory.getLogger(OntologyTermService.class); + + @Autowired + private OntologyTermRepository ontologyTermRepository; + + @Override + public Map getOntologyTermsById(List ontoTermIds) { + log.info("Retrieving ontology terms for {} ids.", ontoTermIds.size()); + Map mappingMap = new HashMap<>(); + List ontologyTerms = ontologyTermRepository.findByIdIn(ontoTermIds); + for (OntologyTerm ontologyTerm : ontologyTerms) { + mappingMap.put(ontologyTerm.getId(), ontologyTerm); + } + return mappingMap; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/TraitsServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/TraitsServiceImpl.java new file mode 100644 index 0000000..80247bc --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/TraitsServiceImpl.java @@ -0,0 +1,21 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.domain.Trait; +import uk.ac.ebi.spot.ontotools.curation.service.TraitsService; + +import java.util.List; + +@Service +public class TraitsServiceImpl implements TraitsService { + + private static final Logger log = LoggerFactory.getLogger(TraitsService.class); + + @Override + public List getTraits() { + log.info("Request to retrieve all traits."); + return null; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/GeneralCommon.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/GeneralCommon.java new file mode 100644 index 0000000..88286a6 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/GeneralCommon.java @@ -0,0 +1,17 @@ +package uk.ac.ebi.spot.ontotools.curation.system; + +public class GeneralCommon { + + public static final String API_V1 = "/v1"; + + public static final String LOG_FILE_NAME = "LOG_FILE_NAME"; + + public static final String HEADER_X_AUTH = "X-Auth"; + + public static final String HEADER_JWT = "jwt"; + + public static final String DB_USER = "DB_USER"; + + public static final String DB_PASSWORD = "DB_PASSWORD"; + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/SystemConfigProperties.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/SystemConfigProperties.java new file mode 100644 index 0000000..e04a588 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/SystemConfigProperties.java @@ -0,0 +1,45 @@ +package uk.ac.ebi.spot.ontotools.curation.system; + +import org.springframework.beans.factory.annotation.Value; +import org.springframework.stereotype.Component; + +@Component +public class SystemConfigProperties { + + @Value("${spring.config.activate.on-profile}") + private String activeSpringProfile; + + @Value("${server.name}") + private String serverName; + + @Value("${server.port}") + private String serverPort; + + @Value("${spring.data.mongodb.uri}") + private String mongoUri; + + public String getActiveSpringProfile() { + return activeSpringProfile; + } + + public String getServerName() { + return serverName; + } + + public String getServerPort() { + return serverPort; + } + + public String getMongoUri() { + return mongoUri; + } + + public String getDbUser() { + return System.getenv(GeneralCommon.DB_USER); + } + + public String getDbPassword() { + return System.getenv(GeneralCommon.DB_PASSWORD); + } + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java new file mode 100644 index 0000000..a8affd4 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java @@ -0,0 +1,24 @@ +package uk.ac.ebi.spot.ontotools.curation.util; + +import java.util.ArrayList; +import java.util.List; + +public class CurationUtil { + + public static List sToList(String s) { + List list = new ArrayList<>(); + if (s == null) { + return list; + } + + String[] parts = s.split(","); + for (String part : parts) { + part = part.trim(); + if (!"".equals(part)) { + list.add(part); + } + } + return list; + } + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/DateTimeCommon.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/DateTimeCommon.java new file mode 100644 index 0000000..c7e40ae --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/DateTimeCommon.java @@ -0,0 +1,19 @@ +package uk.ac.ebi.spot.ontotools.curation.util; + +import org.joda.time.format.DateTimeFormatter; +import org.joda.time.format.ISODateTimeFormat; + +public class DateTimeCommon { + + private static DateTimeFormatter ISO_DATE_TIME_FORMATTER = ISODateTimeFormat.dateTime(); + + private static DateTimeFormatter ISO_DATE_FORMATTER = ISODateTimeFormat.date(); + + public static DateTimeFormatter getIsoDateTimeFormatter() { + return ISO_DATE_TIME_FORMATTER; + } + + public static DateTimeFormatter getIsoDateFormatter() { + return ISO_DATE_FORMATTER; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/JsonJodaDateTimeDeserializer.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/JsonJodaDateTimeDeserializer.java new file mode 100644 index 0000000..822bd22 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/JsonJodaDateTimeDeserializer.java @@ -0,0 +1,20 @@ +package uk.ac.ebi.spot.ontotools.curation.util; + +import com.fasterxml.jackson.core.JsonParser; +import com.fasterxml.jackson.databind.DeserializationContext; +import com.fasterxml.jackson.databind.JsonDeserializer; +import org.joda.time.DateTime; +import org.joda.time.format.DateTimeFormatter; + +import java.io.IOException; + +public class JsonJodaDateTimeDeserializer extends JsonDeserializer { + + @Override + public DateTime deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException { + DateTimeFormatter isoDateTimeFormatter = DateTimeCommon.getIsoDateTimeFormatter(); + String dateValueAsString = jp.getValueAsString(); + DateTime dateTime = isoDateTimeFormatter.parseDateTime(dateValueAsString); + return dateTime; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/JsonJodaDateTimeSerializer.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/JsonJodaDateTimeSerializer.java new file mode 100644 index 0000000..f53e7c7 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/JsonJodaDateTimeSerializer.java @@ -0,0 +1,18 @@ +package uk.ac.ebi.spot.ontotools.curation.util; + +import com.fasterxml.jackson.core.JsonGenerator; +import com.fasterxml.jackson.databind.JsonSerializer; +import com.fasterxml.jackson.databind.SerializerProvider; +import org.joda.time.DateTime; +import org.joda.time.format.DateTimeFormatter; + +import java.io.IOException; + +public class JsonJodaDateTimeSerializer extends JsonSerializer { + + @Override + public void serialize(DateTime dateTime, JsonGenerator jsonGenerator, SerializerProvider serializerProvider) throws IOException { + DateTimeFormatter isoDateTimeFormatter = DateTimeCommon.getIsoDateTimeFormatter(); + jsonGenerator.writeString(isoDateTimeFormatter.print(dateTime)); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/JsonJodaLocalDateDeserializer.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/JsonJodaLocalDateDeserializer.java new file mode 100644 index 0000000..58f1df8 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/JsonJodaLocalDateDeserializer.java @@ -0,0 +1,20 @@ +package uk.ac.ebi.spot.ontotools.curation.util; + +import com.fasterxml.jackson.core.JsonParser; +import com.fasterxml.jackson.databind.DeserializationContext; +import com.fasterxml.jackson.databind.JsonDeserializer; +import org.joda.time.LocalDate; +import org.joda.time.format.DateTimeFormatter; + +import java.io.IOException; + +public class JsonJodaLocalDateDeserializer extends JsonDeserializer { + + @Override + public LocalDate deserialize(JsonParser jsonParser, DeserializationContext deserializationContext) throws IOException { + DateTimeFormatter isoDateTimeFormatter = DateTimeCommon.getIsoDateFormatter(); + String dateValueAsString = jsonParser.getValueAsString(); + LocalDate localDate = isoDateTimeFormatter.parseLocalDate(dateValueAsString); + return localDate; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/JsonJodaLocalDateSerializer.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/JsonJodaLocalDateSerializer.java new file mode 100644 index 0000000..f4b513a --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/JsonJodaLocalDateSerializer.java @@ -0,0 +1,18 @@ +package uk.ac.ebi.spot.ontotools.curation.util; + +import com.fasterxml.jackson.core.JsonGenerator; +import com.fasterxml.jackson.databind.JsonSerializer; +import com.fasterxml.jackson.databind.SerializerProvider; +import org.joda.time.LocalDate; +import org.joda.time.format.DateTimeFormatter; + +import java.io.IOException; + +public class JsonJodaLocalDateSerializer extends JsonSerializer { + + @Override + public void serialize(LocalDate localDate, JsonGenerator jsonGenerator, SerializerProvider serializerProvider) throws IOException { + DateTimeFormatter isoDateTimeFormatter = DateTimeCommon.getIsoDateFormatter(); + jsonGenerator.writeString(isoDateTimeFormatter.print(localDate)); + } +} diff --git a/src/main/resources/aap.der b/src/main/resources/aap.der new file mode 100644 index 0000000000000000000000000000000000000000..bcccfe3dd17300440687f451551738d06f70d2df GIT binary patch literal 871 zcmXqLVoo+_V)9d#AN85K^Mn-N{27@F+ZUas>=1>+kVWv=T zLjeOm5QjsU-8C;gCowO@P{=?4B*HGt>71CGRFs*Lo@yv)zz-7R66SFAb@I`5b@DXi zG2j9TaSJnt1Utic%)-o$jsXU8;=G3Dh6YAvh9-t)CZLlQI2@F^ST8yTa7}5sY}4{NvY~!%o`q~p zn+w;hCV6>vhP2y`O77SH&OG9lol@ayv}Dbeslm<#VX+J$(FX#i^*!;I`r3agYNB37 za+D~4ZS8@}jK>#ihpv8WRJlZWbAX~$>UNpwA0B(n-STUXc39Bn*U`3L9;Cfix0_e8 z_)_4XpnUe-I-x7Hyd56#bKL4UD8}lu#q-xhb+xazuKqc6M>;8GH|xS@?BO@2R;@bK z7|d}jza*VW?3Uh**piLExDMpl&yCwHG&RY?#MH%YyFtsM*`~Tee5Tj@>P|XueYb#d zx{a-UZLEIKj|V#1UUMHCpWc6C;|Apu6PcJ985kEU8ps>S0^?DZk420{WbzHUlGMt~ zO=1Qbm8H8_N)>OoH6RBfF#P}nk&z*1e|y#pPcDJ(wC8VMihSS5+6jld@g+dq9W^2G39v^=dUX_ z^%jZk;CmyO<2hy5i{r1n`wVNEp3jS%RJ2>swqyow ztUgdEG4n*};Ym4j*Qa{zknOnY82G@}R`d>EmHczLx3+=(j%Re4H_a88zP&VF>*%~R lm20{G|4eDHI{5Y4?voO48Rd>ViEQ+$ZW77n`l5Wu0|4>KJIMe5 literal 0 HcmV?d00001 diff --git a/src/main/resources/application-dev.yml b/src/main/resources/application-dev.yml new file mode 100644 index 0000000..44223e7 --- /dev/null +++ b/src/main/resources/application-dev.yml @@ -0,0 +1,13 @@ +server: + port: 8080 + +spring: + config: + activate: + on-profile: "dev" + data: + mongodb: + uri: localhost:27017 + +ontotools-curation: + db: ontotools-curation-dev diff --git a/src/main/resources/application-prod.yml b/src/main/resources/application-prod.yml new file mode 100644 index 0000000..b68f390 --- /dev/null +++ b/src/main/resources/application-prod.yml @@ -0,0 +1,10 @@ +server: + port: 8080 + +spring: + config: + activate: + on-profile: "prod" + data: + mongodb: + uri: mongodb-hhvm-062.ebi.ac.uk:27017,mongodb-hxvm-063.ebi.ac.uk:27017/admin?replicaSet=gwasdepodevrs039 diff --git a/src/main/resources/application-sandbox.yml b/src/main/resources/application-sandbox.yml new file mode 100644 index 0000000..d231d3d --- /dev/null +++ b/src/main/resources/application-sandbox.yml @@ -0,0 +1,10 @@ +server: + port: 8080 + +spring: + config: + activate: + on-profile: "sandbox" + data: + mongodb: + uri: mongo-0.mongo.default.svc.cluster.local,mongo-1.mongo.default.svc.cluster.local,mongo-2.mongo.default.svc.cluster.local:27017 diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml new file mode 100644 index 0000000..5019367 --- /dev/null +++ b/src/main/resources/application.yml @@ -0,0 +1,14 @@ +server: + name: ontotools-curation + port: 80 + +logging: + level: + org: + springframework: DEBUG + +ontotools-curation: + auth: + enabled: false + cert: aap.der + diff --git a/src/main/resources/explore.der b/src/main/resources/explore.der new file mode 100644 index 0000000000000000000000000000000000000000..88c32f8634358ef58b68e62b3d2b12bfafe4c2f7 GIT binary patch literal 871 zcmXqLVoo+_V)9@5qwPB{BO^B}gF%uZw*e;`b0`a&FjJ_v zp@0D&h{GYw?wXgLlbDxcC}bc25@8qSbWY4oD#}brPc;-Y;0K9u33IsmI{E0jI(ZuM z7;u4vxP_TRf}LSJW?^PW#{dI4ab80U10zEdLjyx2W8)|=*VNDy%B71Nni!Rkz0SzW zz}&>h&tTBR$i>ve$jC5jO*_9;35(3#zFU%FXr@yLO9di`}PB z*E4jM?)BLl8k)On)6|2EpGquK9axyP-fAaj99NjMjl2J|u1)sF?S0!~d((}lU*+og z=&;u{cB@DG^=_`!H{TW=p5-U4`ib*C|BckNil3hsHrD3LtEb4%vfMql(`%CYjgJh` zU(1)s96Ueqc3051uz0gmyeSnIRXrCS_5LgrVw7XGYKKbg#&;XOuFuz0*4FIm5r3qo z{9b8!cZTXk?dy^!pG4jL?9OkrD#M<8>ml!OmPJXS$&B66JDXE~m&(4lcVl^QmfCl# z>0(yWF3Zgn*_eHVO`RN=R!<9S>JnsPW@KPotY{!_APbB~Sw0pq77?#YedpD-|DVa! zEcDUl(EKBt4=O)H4n$!30R|!?Lwx2%R(F+?f0BZNg}P?kuMvpNFlMc2w_E2qA#`c) zz8Il>8j|0e#CPp_G>N6whpTYW-lCQHSAGBx} zGoG*7P^^0W(G%7eLLX(;ujLO(0OQvONANR>kwY=;4k+#~K~i i3l|Q`J5Db99$I|CZp~$tnm(H<&Fjb5y!}>h76JfbBQ@Lr literal 0 HcmV?d00001 diff --git a/src/main/resources/logback-spring.xml b/src/main/resources/logback-spring.xml new file mode 100644 index 0000000..14f771a --- /dev/null +++ b/src/main/resources/logback-spring.xml @@ -0,0 +1,91 @@ + + + + + + + + + + + ${log.file.location}${log.file.name}-%d{yyyy-MM-dd}.%i.log + + + ${log.max.file.size} + + + + ${log.pattern} + + + + + + + + + + + + + + + + + + + ${log.file.location}${log.file.name}-%d{yyyy-MM-dd}.%i.log + + + ${log.max.file.size} + + + + ${log.pattern} + + + + + + + + + + + + + + + + + ${log.file.location}${log.file.name}-%d{yyyy-MM-dd}.%i.log + + + ${log.max.file.size} + + + + ${log.pattern} + + + + + + + + + + + + \ No newline at end of file diff --git a/src/main/resources/logging-dev.properties b/src/main/resources/logging-dev.properties new file mode 100644 index 0000000..70cd6b5 --- /dev/null +++ b/src/main/resources/logging-dev.properties @@ -0,0 +1,3 @@ +log.max.file.size=1000MB +log.file.location=log/ +log.pattern=%d{"yyyy-MM-dd'T'HH:mm:ss.SSSXXX"} %-5level [%thread] %property{serviceName} %logger{0}: %msg%n diff --git a/src/main/resources/logging-prod.properties b/src/main/resources/logging-prod.properties new file mode 100644 index 0000000..205d55d --- /dev/null +++ b/src/main/resources/logging-prod.properties @@ -0,0 +1,3 @@ +log.max.file.size=1000MB +log.file.location=/var/log/ontotools/ +log.pattern=%d{"yyyy-MM-dd'T'HH:mm:ss.SSSXXX"} %-5level [%thread] %property{serviceName} %logger{0}: %msg%n diff --git a/src/main/resources/logging-sandbox.properties b/src/main/resources/logging-sandbox.properties new file mode 100644 index 0000000..205d55d --- /dev/null +++ b/src/main/resources/logging-sandbox.properties @@ -0,0 +1,3 @@ +log.max.file.size=1000MB +log.file.location=/var/log/ontotools/ +log.pattern=%d{"yyyy-MM-dd'T'HH:mm:ss.SSSXXX"} %-5level [%thread] %property{serviceName} %logger{0}: %msg%n From f38afcfa0bd3f58d02f58a83d70bc78a8777dbf1 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Tue, 2 Feb 2021 23:04:13 +0800 Subject: [PATCH 02/72] Added infrastructure configuration. Fixed test scaffolding. Simplified app configuration. Added auth interceptor and associated domain objects, including: User, Project and AuthToken. --- ...ontotools-curation-service-deployment.yaml | 2 +- k8chart/values.yaml | 10 +- .../config/ontotools-curation-ingress.yaml | 18 ++++ ...ontotools-curation-service-deployment.yaml | 69 ++++++++++++++ scripts/config/ontotools-ns.yml | 5 + scripts/config/ontotools-pvc.yml | 13 +++ scripts/deploy.sh | 4 + .../spot/ontotools/curation/Application.java | 8 +- .../curation/config/AuthInterceptor.java | 77 +++++++++++++++ .../curation/config/MongoConfig.java | 2 +- .../curation/config/WebMvcConfig.java | 11 +++ .../curation/constants/CurationConstants.java | 2 + .../curation/constants/IDPConstants.java | 16 ++++ .../curation/constants/ProjectRole.java | 9 ++ .../ontotools/curation/domain/Mapping.java | 2 + .../spot/ontotools/curation/domain/Trait.java | 5 +- .../curation/domain/auth/AuthToken.java | 23 +++++ .../curation/domain/auth/Project.java | 22 +++++ .../ontotools/curation/domain/auth/Role.java | 18 ++++ .../curation/domain/{ => auth}/User.java | 22 ++--- .../repository/AuthTokenRepository.java | 10 ++ .../repository/MappingRepository.java | 2 +- .../repository/ProjectRepository.java | 10 ++ .../curation/repository/UserRepository.java | 9 +- .../rest/assembler/ProjectDtoAssembler.java | 13 +++ .../rest/controller/ProjectsController.java | 48 ++++++++++ .../rest/controller/TraitsController.java | 6 +- .../curation/rest/dto/ProjectDto.java | 48 ++++++++++ .../curation/service/JWTService.java | 7 ++ .../curation/service/MappingService.java | 2 +- .../curation/service/ProjectService.java | 10 ++ .../curation/service/UserService.java | 9 ++ .../curation/service/impl/JWTServiceImpl.java | 93 +++++++++++++++++++ .../service/impl/MappingServiceImpl.java | 8 +- .../service/impl/ProjectServiceImpl.java | 32 +++++++ .../service/impl/TraitsServiceImpl.java | 7 +- .../service/impl/UserServiceImpl.java | 48 ++++++++++ .../system/SystemConfigProperties.java | 18 ++-- .../ontotools/curation/util/HeadersUtil.java | 42 +++++++++ src/main/resources/application-dev.yml | 13 --- src/main/resources/application-prod.yml | 10 -- src/main/resources/application-sandbox.yml | 10 -- src/main/resources/application.yml | 40 +++++++- .../ontotools/curation/IntegrationTest.java | 58 ++++++++++++ .../curation/TraitsControllerTest.java | 78 ++++++++++++++++ 45 files changed, 894 insertions(+), 75 deletions(-) create mode 100644 scripts/config/ontotools-curation-ingress.yaml create mode 100644 scripts/config/ontotools-curation-service-deployment.yaml create mode 100644 scripts/config/ontotools-ns.yml create mode 100644 scripts/config/ontotools-pvc.yml create mode 100755 scripts/deploy.sh create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/config/AuthInterceptor.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/IDPConstants.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/ProjectRole.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/AuthToken.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Role.java rename src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/{ => auth}/User.java (50%) create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/AuthTokenRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ProjectRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/JWTService.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/JWTServiceImpl.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/util/HeadersUtil.java delete mode 100644 src/main/resources/application-dev.yml delete mode 100644 src/main/resources/application-prod.yml delete mode 100644 src/main/resources/application-sandbox.yml create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/TraitsControllerTest.java diff --git a/k8chart/templates/ontotools-curation-service-deployment.yaml b/k8chart/templates/ontotools-curation-service-deployment.yaml index ee5ae50..6bacf83 100644 --- a/k8chart/templates/ontotools-curation-service-deployment.yaml +++ b/k8chart/templates/ontotools-curation-service-deployment.yaml @@ -3,7 +3,7 @@ kind: Deployment metadata: name: {{.Values.service.name}} namespace: {{.Values.k8Namespace}} - lables: + labels: version: {{.Values.image.tag}} spec: replicas: {{.Values.replicaCount}} diff --git a/k8chart/values.yaml b/k8chart/values.yaml index 247bf45..4802f1f 100644 --- a/k8chart/values.yaml +++ b/k8chart/values.yaml @@ -19,7 +19,7 @@ image: secretsName: "" secretsKey: "" volume: - claimName: ontotools-depo-logs + claimName: ontotools-curation-logs imagePullSecrets: [] nameOverride: "" @@ -41,15 +41,15 @@ ingress: tls: [] -k8Namespace: default +k8Namespace: ontotools resources: limits: - cpu: 100m - memory: 256Mi - requests: cpu: 200m memory: 512Mi + requests: + cpu: 100m + memory: 256Mi nodeSelector: {} diff --git a/scripts/config/ontotools-curation-ingress.yaml b/scripts/config/ontotools-curation-ingress.yaml new file mode 100644 index 0000000..3efa765 --- /dev/null +++ b/scripts/config/ontotools-curation-ingress.yaml @@ -0,0 +1,18 @@ +apiVersion: extensions/v1beta1 +kind: Ingress +metadata: + name: ontotools-curation-ingress + namespace: ontotools + annotations: + nginx.ingress.kubernetes.io/rewrite-target: /$2 + nginx.ingress.kubernetes.io/ssl-redirect: "false" + nginx.ingress.kubernetes.io/proxy-body-size: "30m" +spec: + rules: + - host: + http: + paths: + - path: /ontotools/curation/api(/|$)(.*) + backend: + serviceName: ontotools-curation-service + servicePort: 8080 diff --git a/scripts/config/ontotools-curation-service-deployment.yaml b/scripts/config/ontotools-curation-service-deployment.yaml new file mode 100644 index 0000000..975b91b --- /dev/null +++ b/scripts/config/ontotools-curation-service-deployment.yaml @@ -0,0 +1,69 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + name: ontotools-curation-service + namespace: ontotools + labels: + version: latest +spec: + replicas: 1 + strategy: + type: RollingUpdate + rollingUpdate: + maxSurge: 1 + maxUnavailable: 0 + template: + metadata: + labels: + app: ontotools-curation-service + spec: + containers: + - name: ontotools-curation-service + image: "ebispot/ontotools-curation-service:latest-sandbox" + imagePullPolicy: Always + resources: + requests: + cpu: 100m + memory: 256Mi + limits: + cpu: 200m + memory: 512Mi + ports: + - name: http + containerPort: 8080 + volumeMounts: + - mountPath: "/var/log/ontotools" + name: log + env: + - name: ENVIRONMENT + value: "sandbox" + - name: XMS + value: "-Xms256m" + - name: XMX + value: "-Xms256m" + - name: LOG_FILE_NAME + value: "ontotools-curation-service" + - name: DB_USER + value: "" + - name: DB_PASSWORD + value: "" + volumes: + - name: log + persistentVolumeClaim: + claimName: ontotools-curation-logs +--- +kind: Service +apiVersion: v1 +metadata: + labels: + app: ontotools-curation-service + version: latest + name: ontotools-curation-service + namespace: ontotools +spec: + type: NodePort + ports: + - name: "application" + port: 8080 + selector: + app: ontotools-curation-service diff --git a/scripts/config/ontotools-ns.yml b/scripts/config/ontotools-ns.yml new file mode 100644 index 0000000..d846151 --- /dev/null +++ b/scripts/config/ontotools-ns.yml @@ -0,0 +1,5 @@ +--- +apiVersion: v1 +kind: Namespace +metadata: + name: ontotools diff --git a/scripts/config/ontotools-pvc.yml b/scripts/config/ontotools-pvc.yml new file mode 100644 index 0000000..70ec452 --- /dev/null +++ b/scripts/config/ontotools-pvc.yml @@ -0,0 +1,13 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: ontotools-curation-logs + namespace: ontotools +spec: + storageClassName: nfs-client + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi + diff --git a/scripts/deploy.sh b/scripts/deploy.sh new file mode 100755 index 0000000..cc5e98d --- /dev/null +++ b/scripts/deploy.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +kubectl delete deploy ontotools-curation-service -n gwas +kubectl apply -f config/ontotools-curation-service-deployment.yaml diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/Application.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/Application.java index 9feff60..62a91fa 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/Application.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/Application.java @@ -6,6 +6,8 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration; +import org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration; import org.springframework.scheduling.annotation.EnableAsync; import org.springframework.scheduling.annotation.EnableScheduling; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @@ -17,7 +19,11 @@ import java.net.InetAddress; import java.net.UnknownHostException; -@SpringBootApplication(scanBasePackages = "uk.ac.ebi.spot.ontotools") +@SpringBootApplication(scanBasePackages = "uk.ac.ebi.spot.ontotools" +// exclude = { +// MongoDataAutoConfiguration.class +// } + ) @EnableScheduling @EnableAsync public class Application implements WebMvcConfigurer { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/AuthInterceptor.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/AuthInterceptor.java new file mode 100644 index 0000000..c11c6b8 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/AuthInterceptor.java @@ -0,0 +1,77 @@ +package uk.ac.ebi.spot.ontotools.curation.config; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.servlet.HandlerInterceptor; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.AuthToken; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.exception.AuthorizationException; +import uk.ac.ebi.spot.ontotools.curation.repository.AuthTokenRepository; +import uk.ac.ebi.spot.ontotools.curation.service.JWTService; +import uk.ac.ebi.spot.ontotools.curation.service.UserService; +import uk.ac.ebi.spot.ontotools.curation.system.SystemConfigProperties; +import uk.ac.ebi.spot.ontotools.curation.util.HeadersUtil; + +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.util.Optional; + +public class AuthInterceptor implements HandlerInterceptor { + + private static final Logger log = LoggerFactory.getLogger(AuthInterceptor.class); + + @Autowired + private SystemConfigProperties systemConfigProperties; + + @Autowired + private JWTService jwtService; + + @Autowired + private AuthTokenRepository authTokenRepository; + + @Autowired + private UserService userService; + + @Override + public boolean preHandle(HttpServletRequest httpServletRequest, + HttpServletResponse httpServletResponse, + Object o) { + if (!"/error".equals(httpServletRequest.getRequestURI())) { + log.info("Authentication enabled: {}", systemConfigProperties.isAuthEnabled()); + if (!systemConfigProperties.isAuthEnabled()) { + return true; + } + + String jwt = HeadersUtil.extractJWT(httpServletRequest); + + if (jwt == null) { + log.error("Authorization failure. JWT token is null."); + throw new AuthorizationException("Authorization failure. JWT token is null."); + } + if ("".equals(jwt)) { + log.error("Authorization failure. JWT token is null."); + throw new AuthorizationException("Authorization failure. JWT token is null."); + } + + Optional authTokenOptional = authTokenRepository.findByToken(jwt); + log.info("Token is privileged: {}", authTokenOptional.isPresent()); + if (authTokenOptional.isPresent()) { + User user = userService.findByEmail(authTokenOptional.get().getEmail()); + log.info("User found: {} - {}", user.getName(), user.getEmail()); + return true; + } + + try { + User user = jwtService.extractUser(jwt); + log.info("User found: {} - {}", user.getName(), user.getEmail()); + return true; + } catch (Exception e) { + log.error("Authorization failure: {}", e.getMessage(), e); + throw new AuthorizationException(e.getMessage()); + } + } + + return false; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/MongoConfig.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/MongoConfig.java index 060fa43..0ffa4ed 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/MongoConfig.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/MongoConfig.java @@ -18,7 +18,7 @@ public class MongoConfig { @Configuration @EnableMongoRepositories(basePackages = {"uk.ac.ebi.spot.ontotools.curation.repository"}) @EnableTransactionManagement - @Profile({"sandbox"}) + @Profile({"dev","sandbox"}) public static class MongoConfigDevSandbox extends AbstractMongoClientConfiguration { @Autowired diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/WebMvcConfig.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/WebMvcConfig.java index 6d01bfe..07122ee 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/WebMvcConfig.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/WebMvcConfig.java @@ -7,6 +7,7 @@ import org.springframework.web.multipart.commons.CommonsMultipartResolver; import org.springframework.web.multipart.support.MultipartFilter; import org.springframework.web.servlet.config.annotation.CorsRegistry; +import org.springframework.web.servlet.config.annotation.InterceptorRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; import java.util.concurrent.Executor; @@ -17,6 +18,16 @@ public class WebMvcConfig { @Configuration public static class GeneralWebMvcConfig implements WebMvcConfigurer { + @Bean + public AuthInterceptor authInterceptor() { + return new AuthInterceptor(); + } + + @Override + public void addInterceptors(InterceptorRegistry registry) { + registry.addInterceptor(authInterceptor()); + } + @Bean public Executor taskExecutor() { return new SimpleAsyncTaskExecutor(); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java index 8697663..c319ac2 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -2,6 +2,8 @@ public class CurationConstants { + public static final String API_PROJECTS = "/projects"; + public static final String API_TRAITS = "/traits"; public static final String API_MAPPINGS = "/mappings"; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/IDPConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/IDPConstants.java new file mode 100644 index 0000000..bb871e8 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/IDPConstants.java @@ -0,0 +1,16 @@ +package uk.ac.ebi.spot.ontotools.curation.constants; + +public class IDPConstants { + + public static final String AUTH_HEADER = "Authorization"; + + public static final String AUTH_BEARER = "Bearer"; + + public static final String JWT_TOKEN = "jwt"; + + public static final String COOKIE_ACCESSTOKEN = "accessToken"; + + public static final String JWT_EMAIL = "email"; + + public static final String JWT_NAME = "name"; +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/ProjectRole.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/ProjectRole.java new file mode 100644 index 0000000..4bd8d51 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/ProjectRole.java @@ -0,0 +1,9 @@ +package uk.ac.ebi.spot.ontotools.curation.constants; + +public enum ProjectRole { + + ADMIN, + CONTRIBUTOR, + CONSUMER + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Mapping.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Mapping.java index f3e637c..f631e70 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Mapping.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Mapping.java @@ -3,6 +3,7 @@ import lombok.Getter; import lombok.Setter; import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.index.Indexed; import org.springframework.data.mongodb.core.mapping.Document; @Document(collection = "mappings") @@ -13,6 +14,7 @@ public class Mapping { @Id private String id; + @Indexed private String mappedTraitId; private String mappedTermId; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Trait.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Trait.java index b767e67..49ecd12 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Trait.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Trait.java @@ -15,8 +15,6 @@ public class Trait { private String name; - private String currentMappingId; - private int noSourceRecords; private Provenance created; @@ -27,9 +25,8 @@ public Trait() { } - public Trait(String name, String currentMappingId, Provenance created) { + public Trait(String name, Provenance created) { this.name = name; - this.currentMappingId = currentMappingId; this.noSourceRecords = 0; this.created = created; this.lastUpdated = created; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/AuthToken.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/AuthToken.java new file mode 100644 index 0000000..a1d3593 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/AuthToken.java @@ -0,0 +1,23 @@ +package uk.ac.ebi.spot.ontotools.curation.domain.auth; + +import lombok.Getter; +import lombok.NoArgsConstructor; +import lombok.Setter; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.index.Indexed; +import org.springframework.data.mongodb.core.mapping.Document; + +@Document(collection = "tokens") +@Getter +@Setter +@NoArgsConstructor +public class AuthToken { + + @Id + private String id; + + @Indexed + private String token; + + private String email; +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java new file mode 100644 index 0000000..925bc1b --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java @@ -0,0 +1,22 @@ +package uk.ac.ebi.spot.ontotools.curation.domain.auth; + +import lombok.Getter; +import lombok.NoArgsConstructor; +import lombok.Setter; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.mapping.Document; + +@Document(collection = "projects") +@NoArgsConstructor +@Getter +@Setter +public class Project { + + @Id + private String id; + + private String name; + + private String description; + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Role.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Role.java new file mode 100644 index 0000000..f6bd364 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Role.java @@ -0,0 +1,18 @@ +package uk.ac.ebi.spot.ontotools.curation.domain.auth; + +import lombok.AllArgsConstructor; +import lombok.Getter; +import lombok.NoArgsConstructor; +import lombok.Setter; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; + +@NoArgsConstructor +@AllArgsConstructor +@Getter +@Setter +public class Role { + + private String project; + + private ProjectRole role; +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/User.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/User.java similarity index 50% rename from src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/User.java rename to src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/User.java index 9234dc0..0335e82 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/User.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/User.java @@ -1,31 +1,29 @@ -package uk.ac.ebi.spot.ontotools.curation.domain; +package uk.ac.ebi.spot.ontotools.curation.domain.auth; import lombok.Getter; +import lombok.NoArgsConstructor; import lombok.Setter; import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.index.Indexed; import org.springframework.data.mongodb.core.mapping.Document; +import java.util.List; + @Document(collection = "users") @Getter @Setter +@NoArgsConstructor public class User { @Id private String id; - private String username; + private String name; + @Indexed private String email; - private String role; - - public User() { - - } + private List roles; - public User(String username, String email, String role) { - this.username = username; - this.email = email; - this.role = role; - } + private boolean superUser; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/AuthTokenRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/AuthTokenRepository.java new file mode 100644 index 0000000..99ff102 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/AuthTokenRepository.java @@ -0,0 +1,10 @@ +package uk.ac.ebi.spot.ontotools.curation.repository; + +import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.AuthToken; + +import java.util.Optional; + +public interface AuthTokenRepository extends MongoRepository { + Optional findByToken(String jwt); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java index 2920795..8a05bf0 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java @@ -6,5 +6,5 @@ import java.util.List; public interface MappingRepository extends MongoRepository { - List findByIdIn(List mappingIds); + List findByMappedTraitIdIn(List traitIds); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ProjectRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ProjectRepository.java new file mode 100644 index 0000000..f113a21 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ProjectRepository.java @@ -0,0 +1,10 @@ +package uk.ac.ebi.spot.ontotools.curation.repository; + +import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; + +import java.util.List; + +public interface ProjectRepository extends MongoRepository { + List findByIdIn(List projectIds); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/UserRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/UserRepository.java index e8f277a..44077a3 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/UserRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/UserRepository.java @@ -1,7 +1,14 @@ package uk.ac.ebi.spot.ontotools.curation.repository; import org.springframework.data.mongodb.repository.MongoRepository; -import uk.ac.ebi.spot.ontotools.curation.domain.User; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; + +import java.util.List; +import java.util.Optional; public interface UserRepository extends MongoRepository { + + Optional findByEmailIgnoreCase(String email); + + List findBySuperUser(boolean superUser); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java new file mode 100644 index 0000000..d629b6e --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java @@ -0,0 +1,13 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.assembler; + +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; + +public class ProjectDtoAssembler { + + public static ProjectDto assemble(Project project) { + return new ProjectDto(project.getId(), + project.getName(), + project.getDescription()); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java new file mode 100644 index 0000000..ceb822a --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java @@ -0,0 +1,48 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.controller; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.ResponseStatus; +import org.springframework.web.bind.annotation.RestController; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.ProjectDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.service.JWTService; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; +import uk.ac.ebi.spot.ontotools.curation.util.HeadersUtil; + +import javax.servlet.http.HttpServletRequest; +import java.util.List; +import java.util.stream.Collectors; + +@RestController +@RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) +public class ProjectsController { + + private static final Logger log = LoggerFactory.getLogger(ProjectsController.class); + + @Autowired + private JWTService jwtService; + + @Autowired + private ProjectService projectService; + + @GetMapping(produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public List getProjects(HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to retrieve projects.", user.getName()); + + List projects = projectService.retrieveProjects(user); + log.info("Found {} projects for user: {}", projects.size(), user.getName()); + return projects.stream().map(ProjectDtoAssembler::assemble).collect(Collectors.toList()); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/TraitsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/TraitsController.java index 388b00d..996b3da 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/TraitsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/TraitsController.java @@ -48,8 +48,8 @@ public class TraitsController { public List getTraits() { log.info("Request to get traits."); List traits = traitsService.getTraits(); - List mappingIds = traits.stream().filter(trait -> trait.getCurrentMappingId() != null).map(Trait::getCurrentMappingId).collect(Collectors.toList()); - Map mappingMap = mappingService.getMappingsById(mappingIds); + List traitIds = traits.stream().map(Trait::getId).collect(Collectors.toList()); + Map mappingMap = mappingService.getMappingsByTrait(traitIds); List ontoTermIds = new ArrayList<>(); for (Mapping mapping : mappingMap.values()) { @@ -61,7 +61,7 @@ public List getTraits() { List result = new ArrayList<>(); for (Trait trait : traits) { - result.add(TraitDtoAssembler.assemble(trait, mappingMap.get(trait.getCurrentMappingId()), ontologyTerms.get(mappingMap.get(trait.getCurrentMappingId()).getMappedTermId()))); + result.add(TraitDtoAssembler.assemble(trait, mappingMap.get(trait.getId()), ontologyTerms.get(mappingMap.get(trait.getId()).getMappedTermId()))); } return result; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java new file mode 100644 index 0000000..603e2af --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java @@ -0,0 +1,48 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotNull; +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class ProjectDto implements Serializable { + + private static final long serialVersionUID = -4397444940725422977L; + + @NotNull + @JsonProperty("id") + private final String id; + + @NotNull + @JsonProperty("name") + private final String name; + + @JsonProperty("description") + private final String description; + + @JsonCreator + public ProjectDto(@JsonProperty("id") String id, + @JsonProperty("name") String name, + @JsonProperty("description") String description) { + this.id = id; + this.name = name; + this.description = description; + } + + public String getId() { + return id; + } + + public String getName() { + return name; + } + + public String getDescription() { + return description; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/JWTService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/JWTService.java new file mode 100644 index 0000000..83f5d7b --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/JWTService.java @@ -0,0 +1,7 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; + +public interface JWTService { + User extractUser(String jwt); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java index 3111c3d..a61ccdb 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java @@ -6,5 +6,5 @@ import java.util.Map; public interface MappingService { - Map getMappingsById(List mappingIds); + Map getMappingsByTrait(List traitIds); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java new file mode 100644 index 0000000..7cde698 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java @@ -0,0 +1,10 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; + +import java.util.List; + +public interface ProjectService { + List retrieveProjects(User user); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java new file mode 100644 index 0000000..adf1901 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java @@ -0,0 +1,9 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; + +public interface UserService { + User findByEmail(String email); + + User findRandomSuperUser(); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/JWTServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/JWTServiceImpl.java new file mode 100644 index 0000000..e58a034 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/JWTServiceImpl.java @@ -0,0 +1,93 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import io.jsonwebtoken.Claims; +import io.jsonwebtoken.Jwts; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.core.io.DefaultResourceLoader; +import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.exception.AuthorizationException; +import uk.ac.ebi.spot.ontotools.curation.service.JWTService; +import uk.ac.ebi.spot.ontotools.curation.service.UserService; +import uk.ac.ebi.spot.ontotools.curation.system.SystemConfigProperties; + +import javax.annotation.PostConstruct; +import java.io.InputStream; +import java.security.PublicKey; +import java.security.cert.CertificateFactory; +import java.security.cert.X509Certificate; + +@Service +public class JWTServiceImpl implements JWTService { + + private static final Logger log = LoggerFactory.getLogger(JWTService.class); + + @Autowired + private SystemConfigProperties systemConfigProperties; + + @Autowired + private UserService userService; + + private PublicKey verifyingKey; + + @PostConstruct + public void initialize() { + log.info("Initializing auth cert. Auth enabled: {}", systemConfigProperties.isAuthEnabled()); + if (systemConfigProperties.isAuthEnabled()) { + String certPath = systemConfigProperties.getCertPath(); + log.info("Using cert: {}", certPath); + if (certPath == null) { + log.error("Unable to initialize cert. Path is NULL."); + } else { + try { + InputStream inputStream = new DefaultResourceLoader().getResource(certPath).getInputStream(); + final CertificateFactory certificateFactory = CertificateFactory.getInstance("X.509"); + final X509Certificate certificate = (X509Certificate) certificateFactory.generateCertificate(inputStream); + verifyingKey = certificate.getPublicKey(); + } catch (Exception e) { + log.error("Unable to initialize cert: {}", e.getMessage(), e); + } + } + } + } + + @Override + public User extractUser(String jwt) { + log.info("Auth enabled: {}", systemConfigProperties.isAuthEnabled()); + if (systemConfigProperties.isAuthEnabled()) { + if (jwt == null) { + log.error("Unauthorised access. JWT missing."); + throw new AuthorizationException("Unauthorised access. JWT missing."); + } + + Claims jwtClaims; + try { + jwtClaims = Jwts.parser().setSigningKey(verifyingKey).parseClaimsJws(jwt).getBody(); + } catch (Exception e) { + log.error("Unable to parse JWT: {}", e.getMessage(), e); + throw new AuthorizationException("Unauthorised access: " + e.getMessage()); + } + String userReference = jwtClaims.getSubject(); + String name = null; + String email = null; + if (jwtClaims.get(IDPConstants.JWT_EMAIL) != null) { + email = (String) jwtClaims.get(IDPConstants.JWT_EMAIL); + } + if (jwtClaims.get(IDPConstants.JWT_NAME) != null) { + name = (String) jwtClaims.get(IDPConstants.JWT_NAME); + } + if (name == null || email == null || userReference == null) { + log.error("Unable to parse JWT: Name, email or userReference missing."); + throw new AuthorizationException("Unauthorised access: Name, email or userReference missing."); + } + + User user = userService.findByEmail(email); + log.info("Found user: {} | {}", user.getName(), user.getEmail()); + return user; + } + return userService.findRandomSuperUser(); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java index 341c76b..1add962 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java @@ -21,12 +21,12 @@ public class MappingServiceImpl implements MappingService { private MappingRepository mappingRepository; @Override - public Map getMappingsById(List mappingIds) { - log.info("Retrieving mappings for {} ids.", mappingIds.size()); + public Map getMappingsByTrait(List traitIds) { + log.info("Retrieving mappings for {} ids.", traitIds.size()); Map mappingMap = new HashMap<>(); - List mappings = mappingRepository.findByIdIn(mappingIds); + List mappings = mappingRepository.findByMappedTraitIdIn(traitIds); for (Mapping mapping : mappings) { - mappingMap.put(mapping.getMappedTermId(), mapping); + mappingMap.put(mapping.getMappedTraitId(), mapping); } return mappingMap; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java new file mode 100644 index 0000000..3773ef6 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java @@ -0,0 +1,32 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Role; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.repository.ProjectRepository; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; + +import java.util.List; +import java.util.stream.Collectors; + +@Service +public class ProjectServiceImpl implements ProjectService { + + private static final Logger log = LoggerFactory.getLogger(ProjectService.class); + + @Autowired + private ProjectRepository projectRepository; + + @Override + public List retrieveProjects(User user) { + log.info("Retrieving projects for user: {}", user.getEmail()); + List projectIds = user.getRoles().stream().map(Role::getProject).collect(Collectors.toList()); + List projects = user.isSuperUser() ? projectRepository.findAll() : projectRepository.findByIdIn(projectIds); + log.info("Found {} projects: ", projects.size()); + return projects; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/TraitsServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/TraitsServiceImpl.java index 80247bc..b665d9e 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/TraitsServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/TraitsServiceImpl.java @@ -2,8 +2,10 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.domain.Trait; +import uk.ac.ebi.spot.ontotools.curation.repository.TraitRepository; import uk.ac.ebi.spot.ontotools.curation.service.TraitsService; import java.util.List; @@ -13,9 +15,12 @@ public class TraitsServiceImpl implements TraitsService { private static final Logger log = LoggerFactory.getLogger(TraitsService.class); + @Autowired + private TraitRepository traitRepository; + @Override public List getTraits() { log.info("Request to retrieve all traits."); - return null; + return traitRepository.findAll(); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java new file mode 100644 index 0000000..bd5dde0 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java @@ -0,0 +1,48 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; +import uk.ac.ebi.spot.ontotools.curation.repository.UserRepository; +import uk.ac.ebi.spot.ontotools.curation.service.UserService; + +import java.util.List; +import java.util.Optional; + +@Service +public class UserServiceImpl implements UserService { + + private static final Logger log = LoggerFactory.getLogger(UserService.class); + + @Autowired + private UserRepository userRepository; + + @Override + public User findByEmail(String email) { + log.info("Retrieving user: {}", email); + + Optional userOptional = userRepository.findByEmailIgnoreCase(email); + if (!userOptional.isPresent()) { + log.error("Unable to find user with email: {}", email); + throw new EntityNotFoundException("Unable to find user with email: " + email); + } + + return userOptional.get(); + } + + @Override + public User findRandomSuperUser() { + log.info("Retrieving random super user ..."); + List superUsers = userRepository.findBySuperUser(true); + if (superUsers.isEmpty()) { + log.error("Unable to find any super users!"); + throw new EntityNotFoundException("Unable to find any super users!"); + } + + log.info("Returning user: {}", superUsers.get(0).getEmail()); + return superUsers.get(0); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/SystemConfigProperties.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/SystemConfigProperties.java index e04a588..6619c85 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/SystemConfigProperties.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/SystemConfigProperties.java @@ -6,9 +6,6 @@ @Component public class SystemConfigProperties { - @Value("${spring.config.activate.on-profile}") - private String activeSpringProfile; - @Value("${server.name}") private String serverName; @@ -18,9 +15,11 @@ public class SystemConfigProperties { @Value("${spring.data.mongodb.uri}") private String mongoUri; - public String getActiveSpringProfile() { - return activeSpringProfile; - } + @Value("${ontotools-curation.auth.enabled}") + private boolean authEnabled; + + @Value("${ontotools-curation.auth.cert:#{NULL}}") + private String certPath; public String getServerName() { return serverName; @@ -42,4 +41,11 @@ public String getDbPassword() { return System.getenv(GeneralCommon.DB_PASSWORD); } + public boolean isAuthEnabled() { + return authEnabled; + } + + public String getCertPath() { + return certPath; + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/HeadersUtil.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/HeadersUtil.java new file mode 100644 index 0000000..308e3a6 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/HeadersUtil.java @@ -0,0 +1,42 @@ +package uk.ac.ebi.spot.ontotools.curation.util; + +import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; + +import javax.servlet.http.Cookie; +import javax.servlet.http.HttpServletRequest; + +public class HeadersUtil { + + public static String extractJWT(HttpServletRequest httpServletRequest) { + String authHeader = httpServletRequest.getHeader(IDPConstants.AUTH_HEADER); + if (authHeader == null) { + String jwt = httpServletRequest.getHeader(IDPConstants.JWT_TOKEN); + if (jwt == null && httpServletRequest.getCookies() != null) { + for (Cookie cookie : httpServletRequest.getCookies()) { + if (cookie.getName().equalsIgnoreCase(IDPConstants.COOKIE_ACCESSTOKEN)) { + jwt = cookie.getValue(); + break; + } + if (cookie.getName().equalsIgnoreCase(IDPConstants.JWT_TOKEN)) { + jwt = cookie.getValue(); + break; + } + } + } + return jwt; + } else { + String[] parts = authHeader.split(" "); + if (parts.length == 2) { + if (parts[0].equalsIgnoreCase(IDPConstants.AUTH_BEARER)) { + if ((parts[1] == null) || parts[1].equalsIgnoreCase("null")) { + return null; + } + + return parts[1]; + } + } + } + + return null; + } +} diff --git a/src/main/resources/application-dev.yml b/src/main/resources/application-dev.yml deleted file mode 100644 index 44223e7..0000000 --- a/src/main/resources/application-dev.yml +++ /dev/null @@ -1,13 +0,0 @@ -server: - port: 8080 - -spring: - config: - activate: - on-profile: "dev" - data: - mongodb: - uri: localhost:27017 - -ontotools-curation: - db: ontotools-curation-dev diff --git a/src/main/resources/application-prod.yml b/src/main/resources/application-prod.yml deleted file mode 100644 index b68f390..0000000 --- a/src/main/resources/application-prod.yml +++ /dev/null @@ -1,10 +0,0 @@ -server: - port: 8080 - -spring: - config: - activate: - on-profile: "prod" - data: - mongodb: - uri: mongodb-hhvm-062.ebi.ac.uk:27017,mongodb-hxvm-063.ebi.ac.uk:27017/admin?replicaSet=gwasdepodevrs039 diff --git a/src/main/resources/application-sandbox.yml b/src/main/resources/application-sandbox.yml deleted file mode 100644 index d231d3d..0000000 --- a/src/main/resources/application-sandbox.yml +++ /dev/null @@ -1,10 +0,0 @@ -server: - port: 8080 - -spring: - config: - activate: - on-profile: "sandbox" - data: - mongodb: - uri: mongo-0.mongo.default.svc.cluster.local,mongo-1.mongo.default.svc.cluster.local,mongo-2.mongo.default.svc.cluster.local:27017 diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 5019367..b6a5af1 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -1,6 +1,6 @@ server: name: ontotools-curation - port: 80 + port: 8080 logging: level: @@ -12,3 +12,41 @@ ontotools-curation: enabled: false cert: aap.der +--- + +spring: + config: + activate: + on-profile: "dev" + data: + mongodb: + uri: localhost:27017 + +ontotools-curation: + db: ontotools-curation-dev + +--- + +spring: + config: + activate: + on-profile: "sandbox" + data: + mongodb: + uri: mongo-0.mongo.default.svc.cluster.local,mongo-1.mongo.default.svc.cluster.local,mongo-2.mongo.default.svc.cluster.local:27017 + +ontotools-curation: + db: ontotools-curation-sandbox + +--- + +spring: + config: + activate: + on-profile: "prod" + data: + mongodb: + uri: mongodb-hhvm-062.ebi.ac.uk:27017,mongodb-hxvm-063.ebi.ac.uk:27017/admin?replicaSet=gwasdepodevrs039 + +ontotools-curation: + db: ontotools-curation diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java new file mode 100644 index 0000000..bc0814e --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -0,0 +1,58 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import com.fasterxml.jackson.databind.ObjectMapper; +import org.junit.Before; +import org.junit.runner.RunWith; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.core.task.SyncTaskExecutor; +import org.springframework.core.task.TaskExecutor; +import org.springframework.data.mongodb.core.MongoTemplate; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.test.web.servlet.MockMvc; +import org.springframework.test.web.servlet.setup.MockMvcBuilders; +import org.springframework.web.context.WebApplicationContext; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.repository.UserRepository; + +@RunWith(SpringJUnit4ClassRunner.class) +@SpringBootTest +@ContextConfiguration(classes = {Application.class}) +public abstract class IntegrationTest { + + @Configuration + public static class MockTaskExecutorConfig { + + @Bean + public TaskExecutor taskExecutor() { + return new SyncTaskExecutor(); + } + } + + @Autowired + private MongoTemplate mongoTemplate; + + @Autowired + private WebApplicationContext webApplicationContext; + + @Autowired + private UserRepository userRepository; + + protected MockMvc mockMvc; + + protected ObjectMapper mapper; + + protected User user; + + @Before + public void setup() { + mongoTemplate.getDb().drop(); + mapper = new ObjectMapper(); + mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build(); + + user = userRepository.insert(new User("test_user", "test@test.com", "USER")); + } +} diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/TraitsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/TraitsControllerTest.java new file mode 100644 index 0000000..98870ce --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/TraitsControllerTest.java @@ -0,0 +1,78 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import com.fasterxml.jackson.core.type.TypeReference; +import org.apache.commons.lang3.RandomStringUtils; +import org.joda.time.DateTime; +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.MediaType; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.domain.Trait; +import uk.ac.ebi.spot.ontotools.curation.repository.MappingRepository; +import uk.ac.ebi.spot.ontotools.curation.repository.OntologyTermRepository; +import uk.ac.ebi.spot.ontotools.curation.repository.TraitRepository; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.TraitDto; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; + +import java.util.List; + +import static org.junit.Assert.assertEquals; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; + +public class TraitsControllerTest extends IntegrationTest { + + @Autowired + private TraitRepository traitRepository; + + @Autowired + private OntologyTermRepository ontologyTermRepository; + + @Autowired + private MappingRepository mappingRepository; + + private OntologyTerm ontologyTerm; + + private Trait trait; + + @Override + public void setup() { + super.setup(); + Provenance provenance = new Provenance(super.user.getId(), DateTime.now()); + + ontologyTerm = ontologyTermRepository.insert(new OntologyTerm(RandomStringUtils.randomAlphabetic(10), + RandomStringUtils.randomAlphabetic(10), + RandomStringUtils.randomAlphabetic(10), + RandomStringUtils.randomAlphabetic(10), + RandomStringUtils.randomAlphabetic(10), + RandomStringUtils.randomAlphabetic(10))); + trait = traitRepository.insert(new Trait("test", provenance)); + mappingRepository.insert(new Mapping(trait.getId(), ontologyTerm.getId(), provenance)); + } + + /** + * GET /v1/traits + */ + @Test + public void shouldGetTraits() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_TRAITS; + + String response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON)) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + List actual = mapper.readValue(response, new TypeReference>() { + }); + assertEquals(1, actual.size()); + TraitDto traitDto = actual.get(0); + + assertEquals(trait.getName(), traitDto.getName()); + assertEquals(ontologyTerm.getCurie(), traitDto.getCurrentMapping().getOntologyTerm().getCurie()); + } +} From a6644f630e696fc51730b7ab75523e51d2e98ad6 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Wed, 3 Feb 2021 22:58:44 +0800 Subject: [PATCH 03/72] Added base services and tests for Zooma, OLS and Oxo. --- pom.xml | 7 ++ .../config/RestInteractionConfig.java | 58 ++++++++++++++ .../curation/config/RestTemplateConfig.java | 27 +++++++ .../constants/RestInteractionConstants.java | 30 ++++++++ .../curation/domain/auth/Project.java | 5 ++ .../curation/rest/dto/ols/OLSEmbeddedDto.java | 30 ++++++++ .../curation/rest/dto/ols/OLSResponseDto.java | 29 +++++++ .../curation/rest/dto/ols/OLSTermDto.java | 56 ++++++++++++++ .../curation/rest/dto/oxo/OXOEmbeddedDto.java | 30 ++++++++ .../rest/dto/oxo/OXOMappingResponseDto.java | 38 +++++++++ .../curation/rest/dto/oxo/OXORequestDto.java | 46 +++++++++++ .../curation/rest/dto/oxo/OXOResponseDto.java | 29 +++++++ .../rest/dto/oxo/OXOSearchResultDto.java | 30 ++++++++ .../rest/dto/zooma/ZoomaResponseDto.java | 39 ++++++++++ .../curation/service/OLSService.java | 10 +++ .../curation/service/OXOService.java | 10 +++ .../curation/service/ZoomaService.java | 9 +++ .../curation/service/impl/OLSServiceImpl.java | 62 +++++++++++++++ .../curation/service/impl/OXOServiceImpl.java | 60 +++++++++++++++ .../service/impl/ZoomaServiceImpl.java | 77 +++++++++++++++++++ .../curation/util/HttpEntityBuilder.java | 53 +++++++++++++ src/main/resources/application.yml | 13 ++++ .../ontotools/curation/IntegrationTest.java | 6 +- .../ontotools/curation/OLSServiceTest.java | 31 ++++++++ .../ontotools/curation/OXOServiceTest.java | 36 +++++++++ .../ontotools/curation/ZoomaServiceTest.java | 46 +++++++++++ 26 files changed, 866 insertions(+), 1 deletion(-) create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/config/RestInteractionConfig.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/config/RestTemplateConfig.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/RestInteractionConstants.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSEmbeddedDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSResponseDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSTermDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOEmbeddedDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOMappingResponseDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXORequestDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOResponseDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOSearchResultDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/zooma/ZoomaResponseDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OLSService.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OXOService.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ZoomaService.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OXOServiceImpl.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ZoomaServiceImpl.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/util/HttpEntityBuilder.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/OLSServiceTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/OXOServiceTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/ZoomaServiceTest.java diff --git a/pom.xml b/pom.xml index 7babef9..bce90dc 100644 --- a/pom.xml +++ b/pom.xml @@ -33,6 +33,7 @@ 1.4 2.8.0 3.11 + 4.5.13 0.9.1 1.3 1.2.3 @@ -100,6 +101,12 @@ org.springframework.boot spring-boot-starter-thymeleaf + + org.apache.httpcomponents + httpclient + ${httpclient.version} + + joda-time joda-time diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/RestInteractionConfig.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/RestInteractionConfig.java new file mode 100644 index 0000000..275c022 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/RestInteractionConfig.java @@ -0,0 +1,58 @@ +package uk.ac.ebi.spot.ontotools.curation.config; + +import org.springframework.beans.factory.annotation.Value; +import org.springframework.stereotype.Component; +import uk.ac.ebi.spot.ontotools.curation.util.HttpEntityBuilder; + +@Component +public class RestInteractionConfig { + + @Value("${ontotools.zooma.base}") + private String zoomaBase; + + @Value("${ontotools.zooma.endpoints.annotate}") + private String zoomaAnnotateEndpoint; + + @Value("${ontotools.oxo.base}") + private String oxoBase; + + @Value("${ontotools.oxo.mapping-distance}") + private int oxoMappingDistance; + + @Value("${ontotools.ols.base}") + private String olsBase; + + @Value("${ontotools.ols.endpoints.ontologies}") + private String olsOntologiesEndpoint; + + @Value("${server.name}") + private String serverName; + + public HttpEntityBuilder httpEntity() { + return new HttpEntityBuilder(serverName); + } + + public String getZoomaBase() { + return zoomaBase; + } + + public String getZoomaAnnotateEndpoint() { + return zoomaBase + zoomaAnnotateEndpoint; + } + + public String getOxoBase() { + return oxoBase; + } + + public int getOxoMappingDistance() { + return oxoMappingDistance; + } + + public String getOlsBase() { + return olsBase; + } + + public String getOlsOntologiesEndpoint() { + return olsBase + olsOntologiesEndpoint; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/RestTemplateConfig.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/RestTemplateConfig.java new file mode 100644 index 0000000..5f18087 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/RestTemplateConfig.java @@ -0,0 +1,27 @@ +package uk.ac.ebi.spot.ontotools.curation.config; + +import org.apache.http.conn.ssl.NoopHostnameVerifier; +import org.apache.http.impl.client.CloseableHttpClient; +import org.apache.http.impl.client.HttpClients; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; +import org.springframework.http.client.HttpComponentsClientHttpRequestFactory; +import org.springframework.web.client.RestTemplate; + +@Configuration +public class RestTemplateConfig { + + @Bean + public RestTemplate restTemplate() { + CloseableHttpClient httpClient = + HttpClients.custom().setSSLHostnameVerifier(new NoopHostnameVerifier()).build(); + HttpComponentsClientHttpRequestFactory requestFactory = + new HttpComponentsClientHttpRequestFactory(); + requestFactory.setHttpClient(httpClient); + requestFactory.setReadTimeout(40000); + requestFactory.setConnectTimeout(40000); + requestFactory.setConnectionRequestTimeout(40000); + return new RestTemplate(requestFactory); + } + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/RestInteractionConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/RestInteractionConstants.java new file mode 100644 index 0000000..99b236e --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/RestInteractionConstants.java @@ -0,0 +1,30 @@ +package uk.ac.ebi.spot.ontotools.curation.constants; + +import org.apache.commons.lang3.StringUtils; + +import java.util.List; + +public class RestInteractionConstants { + + public static final String ZOOMA_PROPERTY_VALUE = "propertyValue"; + + public static final String ZOOMA_FILTER = "filter"; + + public static final String ZOOMA_FILTER_VALUE_REQUIRED = "required"; + + public static final String ZOOMA_FILTER_VALUE_ONTOLOGIES = "ontologies"; + + public static final String OLS_TERMS = "/terms"; + + public static final String OLS_IDTYPE_IRI = "iri"; + + public static String zoomaFilterValueFromList(List datasources, List ontologies) { + if (datasources != null && !datasources.isEmpty()) { + return ZOOMA_FILTER_VALUE_REQUIRED + ":[" + StringUtils.join(datasources, ",") + "]"; + } + if (ontologies != null && !ontologies.isEmpty()) { + return ZOOMA_FILTER_VALUE_REQUIRED + ":[none]," + ZOOMA_FILTER_VALUE_ONTOLOGIES + ":[" + StringUtils.join(ontologies, ",") + "]"; + } + return ""; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java index 925bc1b..6a5df74 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java @@ -6,6 +6,8 @@ import org.springframework.data.annotation.Id; import org.springframework.data.mongodb.core.mapping.Document; +import java.util.List; + @Document(collection = "projects") @NoArgsConstructor @Getter @@ -19,4 +21,7 @@ public class Project { private String description; + private List datasources; + + private List ontologies; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSEmbeddedDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSEmbeddedDto.java new file mode 100644 index 0000000..6cbdebb --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSEmbeddedDto.java @@ -0,0 +1,30 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.ols; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import java.io.Serializable; +import java.util.List; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +@JsonIgnoreProperties(ignoreUnknown = true) +public final class OLSEmbeddedDto implements Serializable { + + private static final long serialVersionUID = -2333575143636379574L; + + @JsonProperty("terms") + private final List terms; + + @JsonCreator + public OLSEmbeddedDto(@JsonProperty("terms") List terms) { + this.terms = terms; + } + + public List getTerms() { + return terms; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSResponseDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSResponseDto.java new file mode 100644 index 0000000..8e67d9e --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSResponseDto.java @@ -0,0 +1,29 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.ols; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +@JsonIgnoreProperties(ignoreUnknown = true) +public final class OLSResponseDto implements Serializable { + + private static final long serialVersionUID = 1823555008334670305L; + + @JsonProperty("_embedded") + private final OLSEmbeddedDto embedded; + + @JsonCreator + public OLSResponseDto(@JsonProperty("_embedded") OLSEmbeddedDto embedded) { + this.embedded = embedded; + } + + public OLSEmbeddedDto getEmbedded() { + return embedded; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSTermDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSTermDto.java new file mode 100644 index 0000000..ddd7400 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSTermDto.java @@ -0,0 +1,56 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.ols; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +@JsonIgnoreProperties(ignoreUnknown = true) +public final class OLSTermDto implements Serializable { + + private static final long serialVersionUID = -6048583493585168328L; + + @JsonProperty("iri") + private final String iri; + + @JsonProperty("obo_id") + private final String oboId; + + @JsonProperty("label") + private final String label; + + @JsonProperty("is_obsolete") + private final Boolean obsolete; + + @JsonCreator + public OLSTermDto(@JsonProperty("iri") String iri, + @JsonProperty("obo_id") String oboId, + @JsonProperty("label") String label, + @JsonProperty("is_obsolete") Boolean obsolete) { + this.iri = iri; + this.oboId = oboId; + this.label = label; + this.obsolete = obsolete; + } + + public String getIri() { + return iri; + } + + public String getOboId() { + return oboId; + } + + public String getLabel() { + return label; + } + + public Boolean getObsolete() { + return obsolete; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOEmbeddedDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOEmbeddedDto.java new file mode 100644 index 0000000..054d61d --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOEmbeddedDto.java @@ -0,0 +1,30 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import java.io.Serializable; +import java.util.List; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +@JsonIgnoreProperties(ignoreUnknown = true) +public final class OXOEmbeddedDto implements Serializable { + + private static final long serialVersionUID = -9198144318907033616L; + + @JsonProperty("searchResults") + private final List searchResults; + + @JsonCreator + public OXOEmbeddedDto(@JsonProperty("searchResults") List searchResults) { + this.searchResults = searchResults; + } + + public List getSearchResults() { + return searchResults; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOMappingResponseDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOMappingResponseDto.java new file mode 100644 index 0000000..8528dd6 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOMappingResponseDto.java @@ -0,0 +1,38 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +@JsonIgnoreProperties(ignoreUnknown = true) +public final class OXOMappingResponseDto implements Serializable { + + private static final long serialVersionUID = -9198144318907033616L; + + @JsonProperty("curie") + private final String curie; + + @JsonProperty("label") + private final String label; + + @JsonCreator + public OXOMappingResponseDto(@JsonProperty("curie") String curie, + @JsonProperty("label") String label) { + this.curie = curie; + this.label = label; + } + + public String getCurie() { + return curie; + } + + public String getLabel() { + return label; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXORequestDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXORequestDto.java new file mode 100644 index 0000000..61415a8 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXORequestDto.java @@ -0,0 +1,46 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import java.io.Serializable; +import java.util.List; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class OXORequestDto implements Serializable { + + private static final long serialVersionUID = -9198144318907033616L; + + @JsonProperty("ids") + private final List ids; + + @JsonProperty("mappingTarget") + private final List mappingTarget; + + @JsonProperty("distance") + private final int distance; + + @JsonCreator + public OXORequestDto(@JsonProperty("ids") List ids, + @JsonProperty("mappingTarget") List mappingTarget, + @JsonProperty("distance") int distance) { + this.ids = ids; + this.mappingTarget = mappingTarget; + this.distance = distance; + } + + public List getIds() { + return ids; + } + + public List getMappingTarget() { + return mappingTarget; + } + + public int getDistance() { + return distance; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOResponseDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOResponseDto.java new file mode 100644 index 0000000..1a1de23 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOResponseDto.java @@ -0,0 +1,29 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +@JsonIgnoreProperties(ignoreUnknown = true) +public final class OXOResponseDto implements Serializable { + + private static final long serialVersionUID = -9198144318907033616L; + + @JsonProperty("_embedded") + private final OXOEmbeddedDto embedded; + + @JsonCreator + public OXOResponseDto(@JsonProperty("_embedded") OXOEmbeddedDto embedded) { + this.embedded = embedded; + } + + public OXOEmbeddedDto getEmbedded() { + return embedded; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOSearchResultDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOSearchResultDto.java new file mode 100644 index 0000000..b78352d --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOSearchResultDto.java @@ -0,0 +1,30 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import java.io.Serializable; +import java.util.List; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +@JsonIgnoreProperties(ignoreUnknown = true) +public final class OXOSearchResultDto implements Serializable { + + private static final long serialVersionUID = -9198144318907033616L; + + @JsonProperty("mappingResponseList") + private final List mappingResponse; + + @JsonCreator + public OXOSearchResultDto(@JsonProperty("mappingResponseList") List mappingResponse) { + this.mappingResponse = mappingResponse; + } + + public List getMappingResponse() { + return mappingResponse; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/zooma/ZoomaResponseDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/zooma/ZoomaResponseDto.java new file mode 100644 index 0000000..bdd8ead --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/zooma/ZoomaResponseDto.java @@ -0,0 +1,39 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.zooma; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import java.io.Serializable; +import java.util.List; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +@JsonIgnoreProperties(ignoreUnknown = true) +public final class ZoomaResponseDto implements Serializable { + + private static final long serialVersionUID = 5688769708230750868L; + + @JsonProperty("semanticTags") + private final List semanticTags; + + @JsonProperty("confidence") + private final String confidence; + + @JsonCreator + public ZoomaResponseDto(@JsonProperty("semanticTags") List semanticTags, + @JsonProperty("confidence") String confidence) { + this.semanticTags = semanticTags; + this.confidence = confidence; + } + + public List getSemanticTags() { + return semanticTags; + } + + public String getConfidence() { + return confidence; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OLSService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OLSService.java new file mode 100644 index 0000000..f040e05 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OLSService.java @@ -0,0 +1,10 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; + +import java.util.List; + +public interface OLSService { + + List retrieveTerms(String ontologyId, String identifierValue); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OXOService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OXOService.java new file mode 100644 index 0000000..54605fc --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OXOService.java @@ -0,0 +1,10 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo.OXOMappingResponseDto; + +import java.util.List; + +public interface OXOService { + + List findMapping(List ids, List ontologies); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ZoomaService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ZoomaService.java new file mode 100644 index 0000000..ddd468f --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ZoomaService.java @@ -0,0 +1,9 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import java.util.List; +import java.util.Map; + +public interface ZoomaService { + + Map> annotate(String entityValue, List datasources, List ontologies); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java new file mode 100644 index 0000000..e1ba7dc --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java @@ -0,0 +1,62 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.core.ParameterizedTypeReference; +import org.springframework.http.HttpEntity; +import org.springframework.http.HttpMethod; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.stereotype.Service; +import org.springframework.web.client.RestTemplate; +import org.springframework.web.util.UriComponentsBuilder; +import uk.ac.ebi.spot.ontotools.curation.config.RestInteractionConfig; +import uk.ac.ebi.spot.ontotools.curation.constants.RestInteractionConstants; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSResponseDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; +import uk.ac.ebi.spot.ontotools.curation.service.OLSService; + +import java.util.ArrayList; +import java.util.List; + +@Service +public class OLSServiceImpl implements OLSService { + + private static final Logger log = LoggerFactory.getLogger(OLSService.class); + + @Autowired + private RestInteractionConfig restInteractionConfig; + + @Autowired + private RestTemplate restTemplate; + + public List retrieveTerms(String ontologyId, String identifierValue) { + log.info("Calling OLS: {} - {}", ontologyId, identifierValue); + String base = restInteractionConfig.getOlsOntologiesEndpoint() + "/" + ontologyId + RestInteractionConstants.OLS_TERMS; + UriComponentsBuilder uriBuilder = UriComponentsBuilder.fromHttpUrl(base) + .queryParam(RestInteractionConstants.OLS_IDTYPE_IRI, identifierValue); + String endpoint = uriBuilder.build().toUriString(); + + try { + HttpEntity httpEntity = restInteractionConfig.httpEntity().build(); + ResponseEntity response = + restTemplate.exchange(endpoint, + HttpMethod.GET, httpEntity, + new ParameterizedTypeReference() { + }); + + if (response.getStatusCode().equals(HttpStatus.OK)) { + log.info("[{}] OLS: received {} terms.", identifierValue, response.getBody().getEmbedded().getTerms().size()); + return response.getBody().getEmbedded().getTerms(); + } + if (response.getStatusCode().equals(HttpStatus.NOT_FOUND)) { + log.info("[{}] OLS: Term not found.", identifierValue); + } + } catch (Exception e) { + log.error("Unable to call OLS: {}", e.getMessage(), e); + } + return new ArrayList<>(); + } + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OXOServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OXOServiceImpl.java new file mode 100644 index 0000000..d86375e --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OXOServiceImpl.java @@ -0,0 +1,60 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.core.ParameterizedTypeReference; +import org.springframework.http.HttpEntity; +import org.springframework.http.HttpMethod; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.stereotype.Service; +import org.springframework.web.client.RestTemplate; +import uk.ac.ebi.spot.ontotools.curation.config.RestInteractionConfig; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo.OXOMappingResponseDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo.OXORequestDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo.OXOResponseDto; +import uk.ac.ebi.spot.ontotools.curation.service.OLSService; +import uk.ac.ebi.spot.ontotools.curation.service.OXOService; + +import java.util.ArrayList; +import java.util.List; + +@Service +public class OXOServiceImpl implements OXOService { + + + private static final Logger log = LoggerFactory.getLogger(OLSService.class); + + @Autowired + private RestInteractionConfig restInteractionConfig; + + @Autowired + private RestTemplate restTemplate; + + public List findMapping(List ids, List ontologies) { + log.info("Calling OXO: {} - {}", ids, ontologies); + + try { + HttpEntity httpEntity = restInteractionConfig.httpEntity() + .withJsonBody(new OXORequestDto(ids, ontologies, restInteractionConfig.getOxoMappingDistance())) + .build(); + ResponseEntity response = + restTemplate.exchange(restInteractionConfig.getOxoBase(), + HttpMethod.POST, httpEntity, + new ParameterizedTypeReference() { + }); + + if (response.getStatusCode().equals(HttpStatus.OK)) { + log.info("[{}] OXO: received {} terms.", ids, response.getBody().getEmbedded().getSearchResults().size()); + if (!response.getBody().getEmbedded().getSearchResults().isEmpty() && + response.getBody().getEmbedded().getSearchResults().get(0).getMappingResponse() != null) { + return response.getBody().getEmbedded().getSearchResults().get(0).getMappingResponse(); + } + } + } catch (Exception e) { + log.error("Unable to call OXO: {}", e.getMessage(), e); + } + return new ArrayList<>(); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ZoomaServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ZoomaServiceImpl.java new file mode 100644 index 0000000..f2cc5bd --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ZoomaServiceImpl.java @@ -0,0 +1,77 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.core.ParameterizedTypeReference; +import org.springframework.http.HttpEntity; +import org.springframework.http.HttpMethod; +import org.springframework.http.HttpStatus; +import org.springframework.http.ResponseEntity; +import org.springframework.stereotype.Service; +import org.springframework.web.client.RestTemplate; +import org.springframework.web.util.UriComponentsBuilder; +import uk.ac.ebi.spot.ontotools.curation.config.RestInteractionConfig; +import uk.ac.ebi.spot.ontotools.curation.constants.RestInteractionConstants; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.zooma.ZoomaResponseDto; +import uk.ac.ebi.spot.ontotools.curation.service.ZoomaService; + +import java.io.UnsupportedEncodingException; +import java.net.URLEncoder; +import java.nio.charset.StandardCharsets; +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +@Service +public class ZoomaServiceImpl implements ZoomaService { + + private static final Logger log = LoggerFactory.getLogger(ZoomaService.class); + + @Autowired + private RestInteractionConfig restInteractionConfig; + + @Autowired + private RestTemplate restTemplate; + + public Map> annotate(String entityValue, List datasources, List ontologies) { + log.info("Calling Zooma for entity value: {}", entityValue); + Map> suggestionsMap = new HashMap<>(); + String encodedString; + try { + encodedString = URLEncoder.encode(entityValue, StandardCharsets.UTF_8.toString()); + } catch (UnsupportedEncodingException e) { + log.error("Unable to encode string: {} - {}", entityValue, e.getMessage(), e); + return suggestionsMap; + } + UriComponentsBuilder uriBuilder = UriComponentsBuilder.fromHttpUrl(restInteractionConfig.getZoomaAnnotateEndpoint()) + .queryParam(RestInteractionConstants.ZOOMA_PROPERTY_VALUE, encodedString) + .queryParam(RestInteractionConstants.ZOOMA_FILTER, RestInteractionConstants.zoomaFilterValueFromList(datasources, ontologies)); + String endpoint = uriBuilder.build().toUriString(); + + try { + HttpEntity httpEntity = restInteractionConfig.httpEntity().build(); + ResponseEntity> response = + restTemplate.exchange(endpoint, + HttpMethod.GET, httpEntity, + new ParameterizedTypeReference>() { + }); + + if (response.getStatusCode().equals(HttpStatus.OK)) { + log.info("[{}] Zooma: received {} suggestions.", entityValue, response.getBody().size()); + for (ZoomaResponseDto zoomaResponseDto : response.getBody()) { + if (zoomaResponseDto.getConfidence() != null && !zoomaResponseDto.getSemanticTags().isEmpty()) { + List suggestionsList = suggestionsMap.containsKey(zoomaResponseDto.getConfidence()) ? suggestionsMap.get(zoomaResponseDto.getConfidence()) : new ArrayList<>(); + suggestionsList.addAll(zoomaResponseDto.getSemanticTags()); + suggestionsMap.put(zoomaResponseDto.getConfidence(), suggestionsList); + } + } + } + } catch (Exception e) { + log.error("Unable to call Zooma: {}", e.getMessage(), e); + } + return suggestionsMap; + } + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/HttpEntityBuilder.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/HttpEntityBuilder.java new file mode 100644 index 0000000..fc52d31 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/HttpEntityBuilder.java @@ -0,0 +1,53 @@ +package uk.ac.ebi.spot.ontotools.curation.util; + +import org.springframework.http.HttpEntity; +import org.springframework.http.HttpHeaders; +import org.springframework.http.MediaType; + +import java.util.Map; + +public class HttpEntityBuilder { + + private Object body; + + private MediaType contentType; + + private HttpHeaders headers; + + public HttpEntityBuilder(String serverName) { + this.headers = new HttpHeaders(); + } + + public HttpEntityBuilder withHeaders(Map headerMap) { + + headerMap.entrySet().stream() + .forEach(entry -> headers.set(entry.getKey(), entry.getValue())); + return this; + } + + public HttpEntityBuilder withJsonBody(Object body) { + this.body = body; + this.contentType = MediaType.APPLICATION_JSON; + return this; + } + + public HttpEntityBuilder withStringBody(String body) { + this.body = body; + this.contentType = MediaType.TEXT_PLAIN; + return this; + } + + public HttpEntityBuilder withMultipartBody(Object body) { + this.body = body; + this.contentType = MediaType.MULTIPART_FORM_DATA; + return this; + } + + public HttpEntity build() { + if (body != null) { + headers.setContentType(contentType); + } + + return new HttpEntity(body, headers); + } +} diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index b6a5af1..e5fa638 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -12,6 +12,19 @@ ontotools-curation: enabled: false cert: aap.der +ontotools: + zooma: + base: http://www.ebi.ac.uk/spot/zooma/v2/api + endpoints: + annotate: /services/annotate + oxo: + base: https://www.ebi.ac.uk/spot/oxo/api/search?size=5000 + mapping-distance: 2 + ols: + base: https://www.ebi.ac.uk/ols/api + endpoints: + ontologies: /ontologies + --- spring: diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index bc0814e..7d2defd 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -53,6 +53,10 @@ public void setup() { mapper = new ObjectMapper(); mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build(); - user = userRepository.insert(new User("test_user", "test@test.com", "USER")); + user = new User(); + user.setName("Test User"); + user.setEmail("test@test.comt"); + user.setSuperUser(true); + user = userRepository.insert(user); } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OLSServiceTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OLSServiceTest.java new file mode 100644 index 0000000..a5dd904 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OLSServiceTest.java @@ -0,0 +1,31 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; +import uk.ac.ebi.spot.ontotools.curation.service.OLSService; + +import java.util.List; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; + +public class OLSServiceTest extends IntegrationTest { + + @Autowired + private OLSService olsService; + + @Test + public void shouldRetrieveTerms() { + String ontoId = "ordo"; + String termId = "http://www.orpha.net/ORDO/Orphanet_15"; + + List terms = olsService.retrieveTerms(ontoId, termId); + assertEquals(1, terms.size()); + assertEquals(termId, terms.get(0).getIri()); + assertEquals("Achondroplasia", terms.get(0).getLabel()); + assertEquals("Orphanet:15", terms.get(0).getOboId()); + assertFalse(terms.get(0).getObsolete()); + } + +} diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OXOServiceTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OXOServiceTest.java new file mode 100644 index 0000000..eb1074f --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OXOServiceTest.java @@ -0,0 +1,36 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo.OXOMappingResponseDto; +import uk.ac.ebi.spot.ontotools.curation.service.OXOService; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.stream.Collectors; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; + +public class OXOServiceTest extends IntegrationTest { + + @Autowired + private OXOService oxoService; + + @Test + public void shouldRetrieveTerms() { + String termId = "http://www.orpha.net/ORDO/Orphanet_15"; + List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "Orphanet"}); + + + List terms = oxoService.findMapping(Arrays.asList(new String[]{termId}), ontologies); + assertEquals(3, terms.size()); + + List curies = terms.stream().map(OXOMappingResponseDto::getCurie).collect(Collectors.toList()); + assertTrue(curies.contains("MONDO:0007793")); + assertTrue(curies.contains("MONDO:0007037")); + assertTrue(curies.contains("MONDO:0014658")); + } + +} diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ZoomaServiceTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ZoomaServiceTest.java new file mode 100644 index 0000000..5011634 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ZoomaServiceTest.java @@ -0,0 +1,46 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; +import uk.ac.ebi.spot.ontotools.curation.service.ZoomaService; + +import java.util.Arrays; +import java.util.List; +import java.util.Map; + +import static junit.framework.TestCase.assertTrue; +import static org.junit.Assert.assertEquals; + +public class ZoomaServiceTest extends IntegrationTest { + + @Autowired + private ZoomaService zoomaService; + + @Test + public void shouldAnnotateDatasources() { + String entity = "achondroplasia"; + List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); + + Map> annotationResults = zoomaService.annotate(entity, datasources, null); + assertEquals(1, annotationResults.size()); + String key = annotationResults.keySet().iterator().next(); + assertEquals("GOOD", key); + assertEquals(1, annotationResults.get(key).size()); + assertEquals("http://www.orpha.net/ORDO/Orphanet_15", annotationResults.get(key).get(0)); + + } + + @Test + public void shouldAnnotateOntologies() { + String entity = "achondroplasia"; + List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo"}); + + Map> annotationResults = zoomaService.annotate(entity, null, ontologies); + assertEquals(1, annotationResults.size()); + String key = annotationResults.keySet().iterator().next(); + assertEquals("MEDIUM", key); + assertEquals(2, annotationResults.get(key).size()); + assertTrue(annotationResults.get(key).contains("http://www.orpha.net/ORDO/Orphanet_15")); + assertTrue(annotationResults.get(key).contains("http://purl.obolibrary.org/obo/MONDO_0007037")); + } +} From ac7b9d0f9094c95fbcf0a90f1f702f611bb35dc8 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Thu, 4 Feb 2021 23:40:54 +0800 Subject: [PATCH 04/72] Added support for Projects and Sources. WIP: Mapping suggestions. --- .../curation/config/AuthInterceptor.java | 10 +- .../config/ExceptionHandlerAdvice.java | 10 +- .../curation/constants/CurationConstants.java | 4 + .../curation/constants/MappingStatus.java | 15 ++ .../curation/constants/SourceType.java | 8 + .../ontotools/curation/domain/Entity.java | 30 ++++ .../ontotools/curation/domain/Source.java | 46 ++++++ .../curation/domain/auth/AuthToken.java | 4 +- .../curation/domain/auth/Project.java | 5 + .../ontotools/curation/domain/auth/Role.java | 2 +- .../ontotools/curation/domain/auth/User.java | 2 + .../exception/AuthenticationException.java | 8 + .../curation/repository/EntityRepository.java | 11 ++ .../curation/repository/SourceRepository.java | 14 ++ .../rest/assembler/MappingDtoAssembler.java | 6 - .../rest/assembler/ProjectDtoAssembler.java | 30 +++- .../assembler/ProvenanceDtoAssembler.java | 9 +- .../rest/assembler/RoleDtoAssembler.java | 11 ++ .../rest/assembler/SourceDtoAssembler.java | 46 ++++++ .../rest/assembler/TraitDtoAssembler.java | 18 --- .../rest/assembler/UserDtoAssembler.java | 17 +++ .../rest/controller/ProjectsController.java | 68 ++++++++- .../rest/controller/SourcesController.java | 100 ++++++++++++ .../rest/controller/TraitsController.java | 70 --------- .../curation/rest/dto/ProjectCreationDto.java | 57 +++++++ .../curation/rest/dto/ProjectDto.java | 32 +++- .../ontotools/curation/rest/dto/RoleDto.java | 36 +++++ .../curation/rest/dto/SourceCreationDto.java | 57 +++++++ .../curation/rest/dto/SourceDto.java | 83 ++++++++++ .../ontotools/curation/rest/dto/UserDto.java | 36 +++-- .../curation/service/EntityService.java | 7 + .../curation/service/JWTService.java | 2 + .../curation/service/MappingService.java | 3 +- .../curation/service/ProjectService.java | 10 ++ .../curation/service/SourceService.java | 13 ++ .../curation/service/TraitsService.java | 9 -- .../curation/service/UserService.java | 6 + .../service/impl/EntityServiceImpl.java | 26 ++++ .../curation/service/impl/JWTServiceImpl.java | 28 +++- .../service/impl/MappingServiceImpl.java | 75 +++++++-- .../service/impl/ProjectServiceImpl.java | 100 +++++++++++- .../service/impl/SourceServiceImpl.java | 50 ++++++ .../service/impl/TraitsServiceImpl.java | 26 ---- .../service/impl/UserServiceImpl.java | 36 +++++ .../ontotools/curation/util/CurationUtil.java | 10 ++ src/main/resources/application.yml | 2 +- .../ontotools/curation/IntegrationTest.java | 59 +++++++- .../curation/ProjectsControllerTest.java | 143 ++++++++++++++++++ .../curation/SourcesControllerTest.java | 107 +++++++++++++ .../curation/TraitsControllerTest.java | 78 ---------- 50 files changed, 1367 insertions(+), 268 deletions(-) create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/MappingStatus.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/SourceType.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Entity.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Source.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/exception/AuthenticationException.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/SourceRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/RoleDtoAssembler.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/SourceDtoAssembler.java delete mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/TraitDtoAssembler.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/UserDtoAssembler.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java delete mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/TraitsController.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/RoleDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/SourceCreationDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/SourceDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/SourceService.java delete mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/TraitsService.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/SourceServiceImpl.java delete mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/TraitsServiceImpl.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/SourcesControllerTest.java delete mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/TraitsControllerTest.java diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/AuthInterceptor.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/AuthInterceptor.java index c11c6b8..3966870 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/AuthInterceptor.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/AuthInterceptor.java @@ -6,7 +6,7 @@ import org.springframework.web.servlet.HandlerInterceptor; import uk.ac.ebi.spot.ontotools.curation.domain.auth.AuthToken; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; -import uk.ac.ebi.spot.ontotools.curation.exception.AuthorizationException; +import uk.ac.ebi.spot.ontotools.curation.exception.AuthenticationException; import uk.ac.ebi.spot.ontotools.curation.repository.AuthTokenRepository; import uk.ac.ebi.spot.ontotools.curation.service.JWTService; import uk.ac.ebi.spot.ontotools.curation.service.UserService; @@ -47,11 +47,11 @@ public boolean preHandle(HttpServletRequest httpServletRequest, if (jwt == null) { log.error("Authorization failure. JWT token is null."); - throw new AuthorizationException("Authorization failure. JWT token is null."); + throw new AuthenticationException("Authorization failure. JWT token is null."); } if ("".equals(jwt)) { log.error("Authorization failure. JWT token is null."); - throw new AuthorizationException("Authorization failure. JWT token is null."); + throw new AuthenticationException("Authorization failure. JWT token is null."); } Optional authTokenOptional = authTokenRepository.findByToken(jwt); @@ -63,12 +63,12 @@ public boolean preHandle(HttpServletRequest httpServletRequest, } try { - User user = jwtService.extractUser(jwt); + User user = jwtService.extractUserSlim(jwt); log.info("User found: {} - {}", user.getName(), user.getEmail()); return true; } catch (Exception e) { log.error("Authorization failure: {}", e.getMessage(), e); - throw new AuthorizationException(e.getMessage()); + throw new AuthenticationException(e.getMessage()); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/ExceptionHandlerAdvice.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/ExceptionHandlerAdvice.java index c51eafd..3dd1d72 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/ExceptionHandlerAdvice.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/ExceptionHandlerAdvice.java @@ -7,17 +7,25 @@ import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotation.RestController; +import uk.ac.ebi.spot.ontotools.curation.exception.AuthenticationException; import uk.ac.ebi.spot.ontotools.curation.exception.AuthorizationException; import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; @ControllerAdvice(annotations = RestController.class) public class ExceptionHandlerAdvice { + @ExceptionHandler(AuthenticationException.class) + public ResponseEntity handleAuthenticationException(AuthenticationException e) { + HttpHeaders headers = new HttpHeaders(); + headers.setContentType(MediaType.TEXT_PLAIN); + return new ResponseEntity<>(e.getMessage(), headers, HttpStatus.UNAUTHORIZED); + } + @ExceptionHandler(AuthorizationException.class) public ResponseEntity handleAuthorizationException(AuthorizationException e) { HttpHeaders headers = new HttpHeaders(); headers.setContentType(MediaType.TEXT_PLAIN); - return new ResponseEntity<>(e.getMessage(), headers, HttpStatus.UNAUTHORIZED); + return new ResponseEntity<>(e.getMessage(), headers, HttpStatus.FORBIDDEN); } @ExceptionHandler(EntityNotFoundException.class) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java index c319ac2..24835cf 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -4,9 +4,13 @@ public class CurationConstants { public static final String API_PROJECTS = "/projects"; + public static final String API_SOURCES = "/sources"; + public static final String API_TRAITS = "/traits"; public static final String API_MAPPINGS = "/mappings"; public static final String API_SUGGESTIONS = "/mapping-suggestions"; + + public static final String ZOOMA_CONFIDENCE_HIGH = "HIGH"; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/MappingStatus.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/MappingStatus.java new file mode 100644 index 0000000..eb873fd --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/MappingStatus.java @@ -0,0 +1,15 @@ +package uk.ac.ebi.spot.ontotools.curation.constants; + +public enum MappingStatus { + + CURRENT, + UNMAPPED, + OBSOLETE, + DELETED, + NEEDS_IMPORT, + AWAITING_IMPORT, + NEEDS_CREATION, + AWAITING_CREATION, + AWAITING_REVIEW + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/SourceType.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/SourceType.java new file mode 100644 index 0000000..5fa2307 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/SourceType.java @@ -0,0 +1,8 @@ +package uk.ac.ebi.spot.ontotools.curation.constants; + +public enum SourceType { + + LOCAL, + REMOTE + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Entity.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Entity.java new file mode 100644 index 0000000..c97ac68 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Entity.java @@ -0,0 +1,30 @@ +package uk.ac.ebi.spot.ontotools.curation.domain; + +import lombok.AllArgsConstructor; +import lombok.Getter; +import lombok.NoArgsConstructor; +import lombok.Setter; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.index.Indexed; +import org.springframework.data.mongodb.core.mapping.Document; +import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; + +@Document(collection = "mappings") +@Getter +@Setter +@NoArgsConstructor +@AllArgsConstructor +public class Entity { + + @Id + private String id; + + private String name; + + @Indexed + private String sourceId; + + private Provenance created; + + private MappingStatus mappingStatus; +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Source.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Source.java new file mode 100644 index 0000000..8a666bd --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Source.java @@ -0,0 +1,46 @@ +package uk.ac.ebi.spot.ontotools.curation.domain; + +import lombok.AllArgsConstructor; +import lombok.Getter; +import lombok.NoArgsConstructor; +import lombok.Setter; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.index.CompoundIndex; +import org.springframework.data.mongodb.core.index.CompoundIndexes; +import org.springframework.data.mongodb.core.index.Indexed; +import org.springframework.data.mongodb.core.mapping.Document; + +@Document(collection = "sources") +@NoArgsConstructor +@AllArgsConstructor +@Getter +@Setter +@CompoundIndexes({@CompoundIndex(name = "pid_arch", def = "{'projectId': 1, 'archived': 1}"), + @CompoundIndex(name = "id_pid_arch", def = "{'id': 1, 'projectId': 1, 'archived': 1}")}) +public class Source { + + @Id + private String id; + + private String name; + + private String description; + + private String uri; + + private String type; + + private Provenance created; + + private Provenance lastUpdated; + + @Indexed + private String projectId; + + private String originalId; + + @Indexed + private boolean archived; + + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/AuthToken.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/AuthToken.java index a1d3593..f701b3e 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/AuthToken.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/AuthToken.java @@ -1,7 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.domain.auth; +import lombok.AllArgsConstructor; import lombok.Getter; -import lombok.NoArgsConstructor; import lombok.Setter; import org.springframework.data.annotation.Id; import org.springframework.data.mongodb.core.index.Indexed; @@ -10,7 +10,7 @@ @Document(collection = "tokens") @Getter @Setter -@NoArgsConstructor +@AllArgsConstructor public class AuthToken { @Id diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java index 6a5df74..bd06bf5 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java @@ -1,15 +1,18 @@ package uk.ac.ebi.spot.ontotools.curation.domain.auth; +import lombok.AllArgsConstructor; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; import org.springframework.data.annotation.Id; import org.springframework.data.mongodb.core.mapping.Document; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import java.util.List; @Document(collection = "projects") @NoArgsConstructor +@AllArgsConstructor @Getter @Setter public class Project { @@ -24,4 +27,6 @@ public class Project { private List datasources; private List ontologies; + + private Provenance created; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Role.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Role.java index f6bd364..4ee1f08 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Role.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Role.java @@ -12,7 +12,7 @@ @Setter public class Role { - private String project; + private String projectId; private ProjectRole role; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/User.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/User.java index 0335e82..8d6f707 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/User.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/User.java @@ -1,5 +1,6 @@ package uk.ac.ebi.spot.ontotools.curation.domain.auth; +import lombok.AllArgsConstructor; import lombok.Getter; import lombok.NoArgsConstructor; import lombok.Setter; @@ -13,6 +14,7 @@ @Getter @Setter @NoArgsConstructor +@AllArgsConstructor public class User { @Id diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/exception/AuthenticationException.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/exception/AuthenticationException.java new file mode 100644 index 0000000..05d0378 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/exception/AuthenticationException.java @@ -0,0 +1,8 @@ +package uk.ac.ebi.spot.ontotools.curation.exception; + +public class AuthenticationException extends RuntimeException { + + public AuthenticationException(String message) { + super(message); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java new file mode 100644 index 0000000..de6c20c --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java @@ -0,0 +1,11 @@ +package uk.ac.ebi.spot.ontotools.curation.repository; + +import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.Entity; + +import java.util.stream.Stream; + +public interface EntityRepository extends MongoRepository { + + Stream readBySourceId(String sourceId); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/SourceRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/SourceRepository.java new file mode 100644 index 0000000..84ffe52 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/SourceRepository.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.repository; + +import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.Source; + +import java.util.List; +import java.util.Optional; + +public interface SourceRepository extends MongoRepository { + + List findByProjectIdAndArchived(String projectId, boolean archived); + + Optional findByIdAndProjectIdAndArchived(String sourceId, String projectId, boolean archived); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java index 060a6c7..d5c25d6 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java @@ -6,10 +6,4 @@ public class MappingDtoAssembler { - public static MappingDto assemble(Mapping mapping, OntologyTerm ontologyTerm) { - return new MappingDto(mapping.getId(), - OntologyTermDtoAssembler.assemble(ontologyTerm), - ProvenanceDtoAssembler.assemble(mapping.getCreated())); - } - } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java index d629b6e..9f7510f 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java @@ -1,13 +1,39 @@ package uk.ac.ebi.spot.ontotools.curation.rest.assembler; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectCreationDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import java.util.ArrayList; + public class ProjectDtoAssembler { - public static ProjectDto assemble(Project project) { + public static ProjectDto assemble(Project project, User user) { return new ProjectDto(project.getId(), project.getName(), - project.getDescription()); + project.getDescription(), + project.getDatasources(), + project.getOntologies(), + ProvenanceDtoAssembler.assemble(project.getCreated(), user)); + } + + public static Project disassemble(ProjectDto project) { + return new Project(project.getId(), + project.getName(), + project.getDescription(), + project.getDatasources(), + project.getOntologies(), + ProvenanceDtoAssembler.disassemble(project.getCreated())); + } + + public static Project disassemble(ProjectCreationDto project, Provenance provenance) { + return new Project(null, + project.getName(), + project.getDescription(), + project.getDatasources() != null ? project.getDatasources() : new ArrayList<>(), + project.getOntologies() != null ? project.getOntologies() : new ArrayList<>(), + provenance); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProvenanceDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProvenanceDtoAssembler.java index efed199..8da00db 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProvenanceDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProvenanceDtoAssembler.java @@ -1,13 +1,16 @@ package uk.ac.ebi.spot.ontotools.curation.rest.assembler; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProvenanceDto; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.UserDto; public class ProvenanceDtoAssembler { - public static ProvenanceDto assemble(Provenance provenance) { - return new ProvenanceDto(new UserDto(provenance.getUserId(), null, null), provenance.getTimestamp()); + public static ProvenanceDto assemble(Provenance provenance, User user) { + return new ProvenanceDto(UserDtoAssembler.asseble(user), provenance.getTimestamp()); } + public static Provenance disassemble(ProvenanceDto provenance) { + return new Provenance(provenance.getUser().getId(), provenance.getTimestamp()); + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/RoleDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/RoleDtoAssembler.java new file mode 100644 index 0000000..6c4d446 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/RoleDtoAssembler.java @@ -0,0 +1,11 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.assembler; + +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Role; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.RoleDto; + +public class RoleDtoAssembler { + + public static RoleDto assemble(Role role) { + return new RoleDto(role.getProjectId(), role.getRole().name()); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/SourceDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/SourceDtoAssembler.java new file mode 100644 index 0000000..b53c146 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/SourceDtoAssembler.java @@ -0,0 +1,46 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.assembler; + +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.domain.Source; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceCreationDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; + +public class SourceDtoAssembler { + + public static SourceDto assemble(Source source, User user) { + return new SourceDto(source.getId(), + source.getName(), + source.getDescription(), + source.getUri(), + source.getType(), + ProvenanceDtoAssembler.assemble(source.getCreated(), user), + ProvenanceDtoAssembler.assemble(source.getLastUpdated(), user)); + } + + public static Source disassemble(SourceDto source) { + return new Source(source.getId(), + source.getName(), + source.getDescription(), + source.getUri(), + source.getType(), + ProvenanceDtoAssembler.disassemble(source.getCreated()), + ProvenanceDtoAssembler.disassemble(source.getLastUpdated()), + null, + null, + false); + } + + public static Source disassemble(SourceCreationDto source, Provenance provenance) { + return new Source(null, + source.getName(), + source.getDescription(), + source.getUri(), + source.getType(), + provenance, + provenance, + null, + null, + false); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/TraitDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/TraitDtoAssembler.java deleted file mode 100644 index 1bd1253..0000000 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/TraitDtoAssembler.java +++ /dev/null @@ -1,18 +0,0 @@ -package uk.ac.ebi.spot.ontotools.curation.rest.assembler; - -import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; -import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; -import uk.ac.ebi.spot.ontotools.curation.domain.Trait; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.TraitDto; - -public class TraitDtoAssembler { - - public static TraitDto assemble(Trait trait, Mapping mapping, OntologyTerm ontologyTerm) { - return new TraitDto(trait.getId(), - trait.getName(), - MappingDtoAssembler.assemble(mapping, ontologyTerm), - trait.getNoSourceRecords(), - ProvenanceDtoAssembler.assemble(trait.getCreated()), - ProvenanceDtoAssembler.assemble(trait.getLastUpdated())); - } -} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/UserDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/UserDtoAssembler.java new file mode 100644 index 0000000..2c82950 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/UserDtoAssembler.java @@ -0,0 +1,17 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.assembler; + +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.UserDto; + +import java.util.stream.Collectors; + +public class UserDtoAssembler { + + public static UserDto asseble(User user) { + return new UserDto(user.getId(), + user.getName(), + user.getEmail(), + user.getRoles() != null ? user.getRoles().stream().map(RoleDtoAssembler::assemble).collect(Collectors.toList()) : null); + } + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java index ceb822a..c54b312 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java @@ -1,27 +1,30 @@ package uk.ac.ebi.spot.ontotools.curation.rest.controller; +import org.joda.time.DateTime; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.HttpStatus; import org.springframework.http.MediaType; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.ResponseStatus; -import org.springframework.web.bind.annotation.RestController; +import org.springframework.web.bind.annotation.*; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.ProjectDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectCreationDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; import uk.ac.ebi.spot.ontotools.curation.service.JWTService; import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; +import uk.ac.ebi.spot.ontotools.curation.service.UserService; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; import uk.ac.ebi.spot.ontotools.curation.util.HeadersUtil; import javax.servlet.http.HttpServletRequest; +import javax.validation.Valid; +import java.util.ArrayList; import java.util.List; -import java.util.stream.Collectors; @RestController @RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) @@ -35,14 +38,63 @@ public class ProjectsController { @Autowired private ProjectService projectService; + @Autowired + private UserService userService; + + @PostMapping(consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.CREATED) + public ProjectDto createProject(@RequestBody @Valid ProjectCreationDto projectCreationDto, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to create project: {}", user.getEmail(), projectCreationDto.getName()); + Project created = projectService.createProject(ProjectDtoAssembler.disassemble(projectCreationDto, new Provenance(user.getId(), DateTime.now())), user); + userService.addProjectToUser(user, created, ProjectRole.ADMIN); + return ProjectDtoAssembler.assemble(created, user); + } + @GetMapping(produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.OK) public List getProjects(HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); - log.info("[{}] Request to retrieve projects.", user.getName()); + log.info("[{}] Request to retrieve projects.", user.getEmail()); List projects = projectService.retrieveProjects(user); - log.info("Found {} projects for user: {}", projects.size(), user.getName()); - return projects.stream().map(ProjectDtoAssembler::assemble).collect(Collectors.toList()); + log.info("Found {} projects for user: {}", projects.size(), user.getEmail()); + List result = new ArrayList<>(); + for (Project project : projects) { + result.add(ProjectDtoAssembler.assemble(project, user)); + } + return result; + } + + @GetMapping(value = "/{projectId}", + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public ProjectDto getProject(@PathVariable String projectId, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to retrieve project: {}", user.getEmail(), projectId); + Project project = projectService.retrieveProject(projectId, user); + return ProjectDtoAssembler.assemble(project, user); + } + + @PutMapping(value = "/{projectId}", + consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public ProjectDto updateProject(@RequestBody @Valid ProjectDto projectDto, @PathVariable String projectId, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to update project [{}]: {}", user.getEmail(), projectId, projectDto.getName()); + Project updated = projectService.updateProject(ProjectDtoAssembler.disassemble(projectDto), projectId, user); + return ProjectDtoAssembler.assemble(updated, user); + } + + @DeleteMapping(value = "/{projectId}", + produces = MediaType.TEXT_PLAIN_VALUE) + @ResponseStatus(HttpStatus.OK) + public void deleteProject(@PathVariable String projectId, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to delete project: {}", user.getEmail(), projectId); + projectService.deleteProject(projectId, user); + userService.removeProjectFromUser(user, projectId); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java new file mode 100644 index 0000000..a52bb5c --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java @@ -0,0 +1,100 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.controller; + +import org.joda.time.DateTime; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.web.bind.annotation.*; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.domain.Source; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.SourceDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceCreationDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.service.EntityService; +import uk.ac.ebi.spot.ontotools.curation.service.JWTService; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; +import uk.ac.ebi.spot.ontotools.curation.service.SourceService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; +import uk.ac.ebi.spot.ontotools.curation.util.HeadersUtil; + +import javax.servlet.http.HttpServletRequest; +import javax.validation.Valid; +import java.util.ArrayList; +import java.util.List; + +@RestController +@RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) +public class SourcesController { + + private static final Logger log = LoggerFactory.getLogger(SourcesController.class); + + @Autowired + private JWTService jwtService; + + @Autowired + private SourceService sourceService; + + @Autowired + private ProjectService projectService; + + @Autowired + private EntityService entityService; + + @PostMapping(value = "/{projectId}" + CurationConstants.API_SOURCES, + consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.CREATED) + public SourceDto createSource(@RequestBody @Valid SourceCreationDto sourceCreationDto, @PathVariable String projectId, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{} | {}] Request to create source: {}", user.getEmail(), projectId, sourceCreationDto.getName()); + projectService.verifyAccess(projectId, user); + Source created = sourceService.createSource(SourceDtoAssembler.disassemble(sourceCreationDto, new Provenance(user.getId(), DateTime.now())), projectId); + return SourceDtoAssembler.assemble(created, user); + } + + @GetMapping(value = "/{projectId}" + CurationConstants.API_SOURCES, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public List getSources(@PathVariable String projectId, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to retrieve sources: {}", user.getEmail(), projectId); + projectService.verifyAccess(projectId, user); + List sources = sourceService.getSources(projectId); + log.info("Found {} sources in project: {}", sources.size(), projectId); + List result = new ArrayList<>(); + for (Source source : sources) { + result.add(SourceDtoAssembler.assemble(source, user)); + } + return result; + } + + @GetMapping(value = "/{projectId}" + CurationConstants.API_SOURCES + "/{sourceId}", + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public SourceDto getSource(@PathVariable String projectId, @PathVariable String sourceId, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to retrieve source: {} | {}", user.getEmail(), projectId, sourceId); + projectService.verifyAccess(projectId, user); + Source source = sourceService.getSource(sourceId, projectId); + return SourceDtoAssembler.assemble(source, user); + } + + @PutMapping(value = "/{projectId}" + CurationConstants.API_SOURCES + "/{sourceId}", + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public void addDataToSource(@RequestBody List entities, @PathVariable String projectId, @PathVariable String sourceId, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to add data to source: {} | {} | {}", user.getEmail(), projectId, sourceId, entities); + projectService.verifyAccess(projectId, user); + Source source = sourceService.getSource(sourceId, projectId); + for (String entity : entities) { + entityService.createEntity(new Entity(null, entity, source.getId(), new Provenance(user.getId(), DateTime.now()), MappingStatus.UNMAPPED)); + } + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/TraitsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/TraitsController.java deleted file mode 100644 index 996b3da..0000000 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/TraitsController.java +++ /dev/null @@ -1,70 +0,0 @@ -package uk.ac.ebi.spot.ontotools.curation.rest.controller; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.web.bind.annotation.GetMapping; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.ResponseStatus; -import org.springframework.web.bind.annotation.RestController; -import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; -import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; -import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; -import uk.ac.ebi.spot.ontotools.curation.domain.Trait; -import uk.ac.ebi.spot.ontotools.curation.rest.assembler.TraitDtoAssembler; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.TraitDto; -import uk.ac.ebi.spot.ontotools.curation.service.MappingService; -import uk.ac.ebi.spot.ontotools.curation.service.OntologyTermService; -import uk.ac.ebi.spot.ontotools.curation.service.TraitsService; -import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; - -import java.util.ArrayList; -import java.util.List; -import java.util.Map; -import java.util.stream.Collectors; - -@RestController -@RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_TRAITS) -public class TraitsController { - - private static final Logger log = LoggerFactory.getLogger(TraitsController.class); - - @Autowired - private TraitsService traitsService; - - @Autowired - private MappingService mappingService; - - @Autowired - private OntologyTermService ontologyTermService; - - /** - * GET /v1/traits - */ - @GetMapping(produces = MediaType.APPLICATION_JSON_VALUE) - @ResponseStatus(HttpStatus.OK) - public List getTraits() { - log.info("Request to get traits."); - List traits = traitsService.getTraits(); - List traitIds = traits.stream().map(Trait::getId).collect(Collectors.toList()); - Map mappingMap = mappingService.getMappingsByTrait(traitIds); - - List ontoTermIds = new ArrayList<>(); - for (Mapping mapping : mappingMap.values()) { - if (!ontoTermIds.contains(mapping.getMappedTermId())) { - ontoTermIds.add(mapping.getMappedTermId()); - } - } - Map ontologyTerms = ontologyTermService.getOntologyTermsById(ontoTermIds); - - List result = new ArrayList<>(); - for (Trait trait : traits) { - result.add(TraitDtoAssembler.assemble(trait, mappingMap.get(trait.getId()), ontologyTerms.get(mappingMap.get(trait.getId()).getMappedTermId()))); - - } - return result; - } - -} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDto.java new file mode 100644 index 0000000..5a8180c --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDto.java @@ -0,0 +1,57 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotNull; +import java.io.Serializable; +import java.util.List; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class ProjectCreationDto implements Serializable { + + private static final long serialVersionUID = -4397444940725422977L; + + @NotNull + @JsonProperty("name") + private final String name; + + @JsonProperty("description") + private final String description; + + @JsonProperty("datasources") + private final List datasources; + + @JsonProperty("ontologies") + private final List ontologies; + + @JsonCreator + public ProjectCreationDto(@JsonProperty("name") String name, + @JsonProperty("description") String description, + @JsonProperty("datasources") List datasources, + @JsonProperty("ontologies") List ontologies) { + this.name = name; + this.description = description; + this.datasources = datasources; + this.ontologies = ontologies; + } + + public String getName() { + return name; + } + + public String getDescription() { + return description; + } + + public List getDatasources() { + return datasources; + } + + public List getOntologies() { + return ontologies; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java index 603e2af..c90f581 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java @@ -7,6 +7,7 @@ import javax.validation.constraints.NotNull; import java.io.Serializable; +import java.util.List; @EqualsAndHashCode @JsonInclude(JsonInclude.Include.NON_NULL) @@ -25,13 +26,28 @@ public final class ProjectDto implements Serializable { @JsonProperty("description") private final String description; + @JsonProperty("datasources") + private final List datasources; + + @JsonProperty("ontologies") + private final List ontologies; + + @JsonProperty("created") + private final ProvenanceDto created; + @JsonCreator public ProjectDto(@JsonProperty("id") String id, @JsonProperty("name") String name, - @JsonProperty("description") String description) { + @JsonProperty("description") String description, + @JsonProperty("datasources") List datasources, + @JsonProperty("ontologies") List ontologies, + @JsonProperty("created") ProvenanceDto created) { this.id = id; this.name = name; this.description = description; + this.datasources = datasources; + this.ontologies = ontologies; + this.created = created; } public String getId() { @@ -45,4 +61,16 @@ public String getName() { public String getDescription() { return description; } -} + + public List getDatasources() { + return datasources; + } + + public List getOntologies() { + return ontologies; + } + + public ProvenanceDto getCreated() { + return created; + } +} \ No newline at end of file diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/RoleDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/RoleDto.java new file mode 100644 index 0000000..d4737e2 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/RoleDto.java @@ -0,0 +1,36 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class RoleDto implements Serializable { + + private static final long serialVersionUID = 1216570040619515074L; + + @JsonProperty("projectId") + private final String projectId; + + @JsonProperty("role") + private final String role; + + @JsonCreator + public RoleDto(@JsonProperty("projectId") String projectId, + @JsonProperty("role") String role) { + this.projectId = projectId; + this.role = role; + } + + public String getProjectId() { + return projectId; + } + + public String getRole() { + return role; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/SourceCreationDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/SourceCreationDto.java new file mode 100644 index 0000000..cd75c88 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/SourceCreationDto.java @@ -0,0 +1,57 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotEmpty; +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class SourceCreationDto implements Serializable { + + private static final long serialVersionUID = -452026015300129980L; + + @NotEmpty + @JsonProperty("name") + private final String name; + + @JsonProperty("description") + private final String description; + + @JsonProperty("uri") + private final String uri; + + @NotEmpty + @JsonProperty("type") + private final String type; + + @JsonCreator + public SourceCreationDto(@JsonProperty("name") String name, + @JsonProperty("description") String description, + @JsonProperty("uri") String uri, + @JsonProperty("type") String type) { + this.name = name; + this.description = description; + this.uri = uri; + this.type = type; + } + + public String getName() { + return name; + } + + public String getDescription() { + return description; + } + + public String getUri() { + return uri; + } + + public String getType() { + return type; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/SourceDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/SourceDto.java new file mode 100644 index 0000000..e58c426 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/SourceDto.java @@ -0,0 +1,83 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotEmpty; +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class SourceDto implements Serializable { + + private static final long serialVersionUID = -452026015300129980L; + + @NotEmpty + @JsonProperty("id") + private final String id; + + @JsonProperty("name") + private final String name; + + @JsonProperty("description") + private final String description; + + @JsonProperty("uri") + private final String uri; + + @JsonProperty("type") + private final String type; + + @JsonProperty("created") + private final ProvenanceDto created; + + @JsonProperty("lastUpdated") + private final ProvenanceDto lastUpdated; + + @JsonCreator + public SourceDto(@JsonProperty("id") String id, + @JsonProperty("name") String name, + @JsonProperty("description") String description, + @JsonProperty("uri") String uri, + @JsonProperty("type") String type, + @JsonProperty("created") ProvenanceDto created, + @JsonProperty("lastUpdated") ProvenanceDto lastUpdated) { + this.id = id; + this.name = name; + this.description = description; + this.uri = uri; + this.type = type; + this.created = created; + this.lastUpdated = lastUpdated; + } + + public String getId() { + return id; + } + + public String getName() { + return name; + } + + public String getDescription() { + return description; + } + + public String getUri() { + return uri; + } + + public String getType() { + return type; + } + + public ProvenanceDto getCreated() { + return created; + } + + public ProvenanceDto getLastUpdated() { + return lastUpdated; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/UserDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/UserDto.java index 39d0065..250ee51 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/UserDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/UserDto.java @@ -7,6 +7,7 @@ import javax.validation.constraints.NotNull; import java.io.Serializable; +import java.util.List; @EqualsAndHashCode @JsonInclude(JsonInclude.Include.NON_NULL) @@ -15,33 +16,44 @@ public final class UserDto implements Serializable { private static final long serialVersionUID = 8940035463152694066L; @NotNull - @JsonProperty("username") - private final String username; + @JsonProperty("id") + private final String id; + @NotNull + @JsonProperty("name") + private final String name; + + @NotNull @JsonProperty("email") private final String email; - @JsonProperty("role") - private final String role; + @JsonProperty("roles") + private final List roles; @JsonCreator - public UserDto(@JsonProperty("username") String username, + public UserDto(@JsonProperty("id") String id, + @JsonProperty("name") String name, @JsonProperty("email") String email, - @JsonProperty("role") String role) { - this.username = username; + @JsonProperty("roles") List roles) { + this.id = id; + this.name = name; this.email = email; - this.role = role; + this.roles = roles; + } + + public String getId() { + return id; } - public String getUsername() { - return username; + public String getName() { + return name; } public String getEmail() { return email; } - public String getRole() { - return role; + public List getRoles() { + return roles; } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java new file mode 100644 index 0000000..54d57d2 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java @@ -0,0 +1,7 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import uk.ac.ebi.spot.ontotools.curation.domain.Entity; + +public interface EntityService { + Entity createEntity(Entity entity); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/JWTService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/JWTService.java index 83f5d7b..ff3c205 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/JWTService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/JWTService.java @@ -4,4 +4,6 @@ public interface JWTService { User extractUser(String jwt); + + User extractUserSlim(String jwt); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java index a61ccdb..9912f9a 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java @@ -6,5 +6,6 @@ import java.util.Map; public interface MappingService { - Map getMappingsByTrait(List traitIds); + + void runAutoMapping(String sourceId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java index 7cde698..18d9053 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java @@ -7,4 +7,14 @@ public interface ProjectService { List retrieveProjects(User user); + + Project createProject(Project disassemble, User user); + + Project updateProject(Project disassemble, String projectId, User user); + + void deleteProject(String projectId, User user); + + Project retrieveProject(String projectId, User user); + + void verifyAccess(String projectId, User user); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/SourceService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/SourceService.java new file mode 100644 index 0000000..9fcba59 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/SourceService.java @@ -0,0 +1,13 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import uk.ac.ebi.spot.ontotools.curation.domain.Source; + +import java.util.List; + +public interface SourceService { + Source createSource(Source source, String projectId); + + List getSources(String projectId); + + Source getSource(String sourceId, String projectId); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/TraitsService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/TraitsService.java deleted file mode 100644 index e62a457..0000000 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/TraitsService.java +++ /dev/null @@ -1,9 +0,0 @@ -package uk.ac.ebi.spot.ontotools.curation.service; - -import uk.ac.ebi.spot.ontotools.curation.domain.Trait; - -import java.util.List; - -public interface TraitsService { - List getTraits(); -} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java index adf1901..5a8bb7b 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java @@ -1,9 +1,15 @@ package uk.ac.ebi.spot.ontotools.curation.service; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; public interface UserService { User findByEmail(String email); User findRandomSuperUser(); + + void addProjectToUser(User user, Project project, ProjectRole role); + + void removeProjectFromUser(User user, String projectId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java new file mode 100644 index 0000000..58c5120 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java @@ -0,0 +1,26 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import uk.ac.ebi.spot.ontotools.curation.repository.EntityRepository; +import uk.ac.ebi.spot.ontotools.curation.service.EntityService; + +@Service +public class EntityServiceImpl implements EntityService { + + private static final Logger log = LoggerFactory.getLogger(EntityService.class); + + @Autowired + private EntityRepository entityRepository; + + @Override + public Entity createEntity(Entity entity) { + log.info("[{}] Creating entity: {}", entity.getSourceId(), entity.getName()); + Entity created = entityRepository.insert(entity); + log.info("[{}] Entity created: {}", created.getSourceId(), created.getId()); + return created; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/JWTServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/JWTServiceImpl.java index e58a034..a984586 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/JWTServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/JWTServiceImpl.java @@ -8,8 +8,10 @@ import org.springframework.core.io.DefaultResourceLoader; import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.AuthToken; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; -import uk.ac.ebi.spot.ontotools.curation.exception.AuthorizationException; +import uk.ac.ebi.spot.ontotools.curation.exception.AuthenticationException; +import uk.ac.ebi.spot.ontotools.curation.repository.AuthTokenRepository; import uk.ac.ebi.spot.ontotools.curation.service.JWTService; import uk.ac.ebi.spot.ontotools.curation.service.UserService; import uk.ac.ebi.spot.ontotools.curation.system.SystemConfigProperties; @@ -19,6 +21,7 @@ import java.security.PublicKey; import java.security.cert.CertificateFactory; import java.security.cert.X509Certificate; +import java.util.Optional; @Service public class JWTServiceImpl implements JWTService { @@ -31,6 +34,9 @@ public class JWTServiceImpl implements JWTService { @Autowired private UserService userService; + @Autowired + private AuthTokenRepository authTokenRepository; + private PublicKey verifyingKey; @PostConstruct @@ -54,13 +60,27 @@ public void initialize() { } } + @Override public User extractUser(String jwt) { + Optional authTokenOptional = authTokenRepository.findByToken(jwt); + log.info("Token is privileged: {}", authTokenOptional.isPresent()); + if (authTokenOptional.isPresent()) { + User user = userService.findByEmail(authTokenOptional.get().getEmail()); + log.info("User found: {} - {}", user.getName(), user.getEmail()); + return user; + } + + return extractUserSlim(jwt); + } + + @Override + public User extractUserSlim(String jwt) { log.info("Auth enabled: {}", systemConfigProperties.isAuthEnabled()); if (systemConfigProperties.isAuthEnabled()) { if (jwt == null) { log.error("Unauthorised access. JWT missing."); - throw new AuthorizationException("Unauthorised access. JWT missing."); + throw new AuthenticationException("Unauthorised access. JWT missing."); } Claims jwtClaims; @@ -68,7 +88,7 @@ public User extractUser(String jwt) { jwtClaims = Jwts.parser().setSigningKey(verifyingKey).parseClaimsJws(jwt).getBody(); } catch (Exception e) { log.error("Unable to parse JWT: {}", e.getMessage(), e); - throw new AuthorizationException("Unauthorised access: " + e.getMessage()); + throw new AuthenticationException("Unauthorised access: " + e.getMessage()); } String userReference = jwtClaims.getSubject(); String name = null; @@ -81,7 +101,7 @@ public User extractUser(String jwt) { } if (name == null || email == null || userReference == null) { log.error("Unable to parse JWT: Name, email or userReference missing."); - throw new AuthorizationException("Unauthorised access: Name, email or userReference missing."); + throw new AuthenticationException("Unauthorised access: Name, email or userReference missing."); } User user = userService.findByEmail(email); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java index 1add962..0d713d5 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java @@ -3,14 +3,20 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; -import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.repository.EntityRepository; import uk.ac.ebi.spot.ontotools.curation.repository.MappingRepository; import uk.ac.ebi.spot.ontotools.curation.service.MappingService; +import uk.ac.ebi.spot.ontotools.curation.service.ZoomaService; +import uk.ac.ebi.spot.ontotools.curation.util.CurationUtil; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import java.util.*; +import java.util.stream.Stream; + +import static uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants.ZOOMA_CONFIDENCE_HIGH; @Service public class MappingServiceImpl implements MappingService { @@ -20,14 +26,61 @@ public class MappingServiceImpl implements MappingService { @Autowired private MappingRepository mappingRepository; + @Autowired + private EntityRepository entityRepository; + + private ZoomaService zoomaService; + @Override - public Map getMappingsByTrait(List traitIds) { - log.info("Retrieving mappings for {} ids.", traitIds.size()); - Map mappingMap = new HashMap<>(); - List mappings = mappingRepository.findByMappedTraitIdIn(traitIds); - for (Mapping mapping : mappings) { - mappingMap.put(mapping.getMappedTraitId(), mapping); + @Async + public void runAutoMapping(String sourceId, Project project) { + log.info("Running auto-mapping for source: {}", sourceId); + Stream entityStream = entityRepository.readBySourceId(sourceId); + entityStream.forEach(entity -> this.autoMap(entity, project)); + entityStream.close(); + } + + private void autoMap(Entity entity, Project project) { + /** + * Retrieve annotations from Zooma from datasources stored in the project + */ + Map> zoomaDSResults = zoomaService.annotate(entity.getName(), project.getDatasources(), null); + + /** + * Retrieve annotations from Zooma from ontologies stored in the project + */ + Map> zoomaResults = zoomaService.annotate(entity.getName(), null, project.getOntologies()); + + List highConfidenceIRIs = new ArrayList<>(); + Set finalIRIs = new HashSet<>(); + for (String confidence : zoomaDSResults.keySet()) { + if (zoomaDSResults.get(confidence).size() > 1) { + log.warn("Found suggestion with combined terms: {} | {}", entity, zoomaDSResults.get(confidence)); + continue; + } + + String suggestedTermIRI = zoomaDSResults.get(confidence).get(0); + if (confidence.equalsIgnoreCase(ZOOMA_CONFIDENCE_HIGH)) { + highConfidenceIRIs.add(suggestedTermIRI); + } + if (project.getOntologies() != null && project.getOntologies().contains(CurationUtil.ontoFromIRI())) { + finalIRIs.add(suggestedTermIRI); + } } - return mappingMap; + + for (String iri : finalIRIs) { + /** + * TODO: + * - Create ontology term + * - Create mapping suggestion + */ + } + + /** + * TODO: Find automatic mapping + */ + /** + * TODO: Delete previous mapping suggestions for the terms just created + */ } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java index 3773ef6..439c384 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java @@ -4,13 +4,18 @@ import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; import uk.ac.ebi.spot.ontotools.curation.domain.auth.Role; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.exception.AuthorizationException; +import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; import uk.ac.ebi.spot.ontotools.curation.repository.ProjectRepository; import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; +import java.util.ArrayList; import java.util.List; +import java.util.Optional; import java.util.stream.Collectors; @Service @@ -24,9 +29,102 @@ public class ProjectServiceImpl implements ProjectService { @Override public List retrieveProjects(User user) { log.info("Retrieving projects for user: {}", user.getEmail()); - List projectIds = user.getRoles().stream().map(Role::getProject).collect(Collectors.toList()); + List projectIds = user.getRoles().stream().map(Role::getProjectId).collect(Collectors.toList()); List projects = user.isSuperUser() ? projectRepository.findAll() : projectRepository.findByIdIn(projectIds); log.info("Found {} projects: ", projects.size()); return projects; } + + @Override + public Project createProject(Project toCreate, User user) { + log.info("[{}] Creating project: {}", user.getEmail(), toCreate.getName()); + Project created = projectRepository.insert(toCreate); + log.info("[{}] Project created: {}", created.getName(), created.getId()); + return created; + } + + @Override + public Project updateProject(Project project, String projectId, User user) { + log.info("[{}] Updating project: {}", user.getEmail(), projectId); + Optional exitingOp = projectRepository.findById(projectId); + if (!exitingOp.isPresent()) { + log.error("[{}] Unable to find project: {}", user.getEmail(), projectId); + throw new EntityNotFoundException("[" + user.getEmail() + "] Unable to find project: " + projectId); + } + if (hasAccess(user, projectId)) { + Project existing = exitingOp.get(); + existing.setDatasources(project.getDatasources() != null ? project.getDatasources() : new ArrayList<>()); + existing.setOntologies(project.getOntologies() != null ? project.getOntologies() : new ArrayList<>()); + existing.setName(project.getName()); + existing.setDescription(project.getDescription()); + return projectRepository.save(existing); + } else { + log.error("User [{}] cannot change project [{}]. Required access is missing.", user.getEmail(), projectId); + throw new AuthorizationException("User [" + user.getEmail() + "] cannot change project [" + projectId + "]. Required access is missing."); + } + } + + @Override + public void deleteProject(String projectId, User user) { + log.info("[{}] Deleting project: {}", user.getEmail(), projectId); + Optional exitingOp = projectRepository.findById(projectId); + if (!exitingOp.isPresent()) { + log.error("[{}] Unable to find project: {}", user.getEmail(), projectId); + throw new EntityNotFoundException("[" + user.getEmail() + "] Unable to find project: " + projectId); + } + if (hasAccess(user, projectId)) { + Project existing = exitingOp.get(); + projectRepository.delete(existing); + + /** + * TODO: Implement downstream consequences + */ + } else { + log.error("User [{}] cannot delete project [{}]. Required access is missing.", user.getEmail(), projectId); + throw new AuthorizationException("User [" + user.getEmail() + "] cannot delete project [" + projectId + "]. Required access is missing."); + } + } + + @Override + public Project retrieveProject(String projectId, User user) { + log.info("[{}] Retrieving project: {}", user.getEmail(), projectId); + if (!hasAccess(user, projectId)) { + log.error("[{}] User does not have access project: {}", user.getEmail(), projectId); + throw new EntityNotFoundException("[" + user.getEmail() + "] Unable to find project: " + projectId); + } + + Optional exitingOp = projectRepository.findById(projectId); + if (!exitingOp.isPresent()) { + log.error("[{}] Unable to find project: {}", user.getEmail(), projectId); + throw new EntityNotFoundException("[" + user.getEmail() + "] Unable to find project: " + projectId); + } + + return exitingOp.get(); + } + + @Override + public void verifyAccess(String projectId, User user) { + log.info("[{}] Verifying access to project: {}", user.getEmail(), projectId); + if (!hasAccess(user, projectId)) { + log.error("[{}] User does not have access project: {}", user.getEmail(), projectId); + throw new EntityNotFoundException("[" + user.getEmail() + "] Unable to find project: " + projectId); + } + Optional exitingOp = projectRepository.findById(projectId); + if (!exitingOp.isPresent()) { + log.error("[{}] Unable to find project: {}", user.getEmail(), projectId); + throw new EntityNotFoundException("[" + user.getEmail() + "] Unable to find project: " + projectId); + } + } + + private boolean hasAccess(User user, String projectId) { + if (user.getRoles() != null) { + for (Role role : user.getRoles()) { + if (role.getProjectId().equals(projectId) && role.getRole().equals(ProjectRole.ADMIN)) { + return true; + } + } + } + + return false; + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/SourceServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/SourceServiceImpl.java new file mode 100644 index 0000000..5052fce --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/SourceServiceImpl.java @@ -0,0 +1,50 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.domain.Source; +import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; +import uk.ac.ebi.spot.ontotools.curation.repository.SourceRepository; +import uk.ac.ebi.spot.ontotools.curation.service.SourceService; + +import java.util.List; +import java.util.Optional; + +@Service +public class SourceServiceImpl implements SourceService { + + private static final Logger log = LoggerFactory.getLogger(SourceService.class); + + @Autowired + private SourceRepository sourceRepository; + + @Override + public Source createSource(Source toCreate, String projectId) { + log.info("[{}] Creating project: {}", projectId, toCreate.getName()); + toCreate.setProjectId(projectId); + Source created = sourceRepository.insert(toCreate); + log.info("[{}] Source created: {}", created.getName(), created.getId()); + return created; + } + + @Override + public List getSources(String projectId) { + log.info("Retrieving sources for project: {}", projectId); + List sources = sourceRepository.findByProjectIdAndArchived(projectId, false); + log.info("Found {} sources.", sources.size()); + return sources; + } + + @Override + public Source getSource(String sourceId, String projectId) { + log.info("Retrieving sources for project: {}", projectId); + Optional sourceOp = sourceRepository.findByIdAndProjectIdAndArchived(sourceId, projectId, false); + if (!sourceOp.isPresent()) { + log.error("[{}] Unable to find source: {}", projectId, sourceId); + throw new EntityNotFoundException("[" + projectId + "] Unable to find source: " + sourceId); + } + return sourceOp.get(); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/TraitsServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/TraitsServiceImpl.java deleted file mode 100644 index b665d9e..0000000 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/TraitsServiceImpl.java +++ /dev/null @@ -1,26 +0,0 @@ -package uk.ac.ebi.spot.ontotools.curation.service.impl; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.stereotype.Service; -import uk.ac.ebi.spot.ontotools.curation.domain.Trait; -import uk.ac.ebi.spot.ontotools.curation.repository.TraitRepository; -import uk.ac.ebi.spot.ontotools.curation.service.TraitsService; - -import java.util.List; - -@Service -public class TraitsServiceImpl implements TraitsService { - - private static final Logger log = LoggerFactory.getLogger(TraitsService.class); - - @Autowired - private TraitRepository traitRepository; - - @Override - public List getTraits() { - log.info("Request to retrieve all traits."); - return traitRepository.findAll(); - } -} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java index bd5dde0..2914d72 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java @@ -4,11 +4,15 @@ import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Role; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; import uk.ac.ebi.spot.ontotools.curation.repository.UserRepository; import uk.ac.ebi.spot.ontotools.curation.service.UserService; +import java.util.ArrayList; import java.util.List; import java.util.Optional; @@ -45,4 +49,36 @@ public User findRandomSuperUser() { log.info("Returning user: {}", superUsers.get(0).getEmail()); return superUsers.get(0); } + + @Override + public void addProjectToUser(User user, Project project, ProjectRole role) { + log.info("Adding project [{}] to user [{}] with role: {}", project.getId(), user.getName(), role.name()); + if (user.getRoles() == null) { + user.setRoles(new ArrayList<>()); + } + user.getRoles().add(new Role(project.getId(), role)); + userRepository.save(user); + } + + @Override + public void removeProjectFromUser(User user, String projectId) { + log.info("Removing project [{}] from user: {}", projectId, user.getName()); + if (user.getRoles() == null) { + user.setRoles(new ArrayList<>()); + } + + Role found = null; + for (Role role : user.getRoles()) { + if (role.getProjectId().equals(projectId)) { + found = role; + break; + } + } + if (found != null) { + user.getRoles().remove(found); + userRepository.save(user); + } else { + log.warn("Unable to find project [{}] associated with user: {}", projectId, user.getName()); + } + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java index a8affd4..941f4d2 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java @@ -21,4 +21,14 @@ public static List sToList(String s) { return list; } + public static String ontoFromIRI(String iri) { + int index = iri.lastIndexOf("/"); + String rest = iri.substring(index + 1); + index = rest.indexOf("_"); + if (index == -1) { + return iri; + } + return rest.substring(0, index); + } + } diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index e5fa638..48063f7 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -9,7 +9,7 @@ logging: ontotools-curation: auth: - enabled: false + enabled: true cert: aap.der ontotools: diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 7d2defd..af59f35 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -1,5 +1,6 @@ package uk.ac.ebi.spot.ontotools.curation; +import com.fasterxml.jackson.core.type.TypeReference; import com.fasterxml.jackson.databind.ObjectMapper; import org.junit.Before; import org.junit.runner.RunWith; @@ -10,13 +11,27 @@ import org.springframework.core.task.SyncTaskExecutor; import org.springframework.core.task.TaskExecutor; import org.springframework.data.mongodb.core.MongoTemplate; +import org.springframework.http.MediaType; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.setup.MockMvcBuilders; import org.springframework.web.context.WebApplicationContext; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.AuthToken; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.repository.AuthTokenRepository; import uk.ac.ebi.spot.ontotools.curation.repository.UserRepository; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectCreationDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; + +import java.util.ArrayList; + +import static org.junit.Assert.*; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; @RunWith(SpringJUnit4ClassRunner.class) @SpringBootTest @@ -41,22 +56,52 @@ public TaskExecutor taskExecutor() { @Autowired private UserRepository userRepository; + @Autowired + private AuthTokenRepository authTokenRepository; + protected MockMvc mockMvc; protected ObjectMapper mapper; - protected User user; + protected User user1; + + protected User user2; @Before - public void setup() { + public void setup() throws Exception { mongoTemplate.getDb().drop(); mapper = new ObjectMapper(); mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build(); - user = new User(); - user.setName("Test User"); - user.setEmail("test@test.comt"); - user.setSuperUser(true); - user = userRepository.insert(user); + user1 = userRepository.insert(new User(null, "Test User 1", "test1@test.com", new ArrayList<>(), false)); + authTokenRepository.insert(new AuthToken(null, "token1", "test1@test.com")); + + user2 = userRepository.insert(new User(null, "Test User 2", "test2@test.com", new ArrayList<>(), false)); + authTokenRepository.insert(new AuthToken(null, "token2", "test2@test.com")); } + + protected ProjectDto createProject(String name, String token) throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS; + ProjectCreationDto projectCreationDto = new ProjectCreationDto(name, "Description", null, null); + + String response = mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectCreationDto)) + .header(IDPConstants.JWT_TOKEN, token)) + .andExpect(status().isCreated()) + .andReturn() + .getResponse() + .getContentAsString(); + + ProjectDto actual = mapper.readValue(response, new TypeReference() { + }); + assertEquals(projectCreationDto.getName(), actual.getName()); + assertEquals(projectCreationDto.getDescription(), actual.getDescription()); + assertNotNull(actual.getDatasources()); + assertNotNull(actual.getOntologies()); + assertTrue(actual.getDatasources().isEmpty()); + assertTrue(actual.getOntologies().isEmpty()); + return actual; + } + } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java new file mode 100644 index 0000000..12bcad7 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java @@ -0,0 +1,143 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import com.fasterxml.jackson.core.type.TypeReference; +import org.junit.Test; +import org.springframework.http.MediaType; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; + +import java.util.Arrays; +import java.util.List; + +import static org.junit.Assert.assertEquals; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; + +public class ProjectsControllerTest extends IntegrationTest { + + /** + * POST /v1/projects + */ + @Test + public void shouldCreateProject() throws Exception { + super.createProject("New Project", "token1"); + } + + /** + * GET /v1/projects + */ + @Test + public void shouldGetProjects() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1"); + super.createProject("New Project 2", "token2"); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS; + String response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + List projectList = mapper.readValue(response, new TypeReference>() { + }); + assertEquals(1, projectList.size()); + + ProjectDto actual = projectList.get(0); + assertEquals(projectDto.getName(), actual.getName()); + assertEquals(projectDto.getDescription(), actual.getDescription()); + } + + /** + * GET /v1/projects/{projectId} + */ + @Test + public void shouldGetProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1"); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); + String response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + ProjectDto actual = mapper.readValue(response, new TypeReference() { + }); + assertEquals(projectDto.getName(), actual.getName()); + assertEquals(projectDto.getDescription(), actual.getDescription()); + } + + /** + * PUT /v1/projects/{projectId} + */ + @Test + public void shouldUpdateProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1"); + ProjectDto updatedProject = new ProjectDto(projectDto.getId(), + "New Name", + projectDto.getDescription(), + Arrays.asList(new String[]{"gwas"}), + Arrays.asList(new String[]{"ordo"}), + projectDto.getCreated()); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); + String response = mockMvc.perform(put(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(updatedProject)) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + ProjectDto actual = mapper.readValue(response, new TypeReference() { + }); + assertEquals(updatedProject.getName(), actual.getName()); + assertEquals(updatedProject.getDescription(), actual.getDescription()); + assertEquals(updatedProject.getDatasources(), actual.getDatasources()); + assertEquals(updatedProject.getOntologies(), actual.getOntologies()); + } + + /** + * PUT /v1/projects/{projectId} + */ + @Test + public void shouldNotUpdateProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1"); + ProjectDto updatedProject = new ProjectDto(projectDto.getId(), + "New Name", + projectDto.getDescription(), + Arrays.asList(new String[]{"gwas"}), + Arrays.asList(new String[]{"ordo"}), + projectDto.getCreated()); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); + mockMvc.perform(put(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(updatedProject)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isForbidden()); + } + + /** + * DELETE /v1/projects/{projectId} + */ + @Test + public void shouldDeleteProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1"); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); + mockMvc.perform(delete(endpoint) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()); + + mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isNotFound()); + } +} diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/SourcesControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/SourcesControllerTest.java new file mode 100644 index 0000000..e87a685 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/SourcesControllerTest.java @@ -0,0 +1,107 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import com.fasterxml.jackson.core.type.TypeReference; +import org.junit.Test; +import org.springframework.http.MediaType; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.SourceType; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceCreationDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; + +import java.util.List; + +import static org.junit.Assert.assertEquals; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; + +public class SourcesControllerTest extends IntegrationTest { + + private ProjectDto projectDto; + + @Override + public void setup() throws Exception { + super.setup(); + projectDto = createProject("New Project", "token1"); + } + + /** + * POST /v1/projects/{projectId}/sources + */ + @Test + public void shouldCreateSource() throws Exception { + createSource(); + } + + /** + * GET /v1/projects/{projectId}/sources + */ + @Test + public void shouldGetSources() throws Exception { + SourceDto sourceDto = createSource(); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_SOURCES; + String response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + List sourcesList = mapper.readValue(response, new TypeReference>() { + }); + assertEquals(1, sourcesList.size()); + + SourceDto actual = sourcesList.get(0); + assertEquals(sourceDto.getName(), actual.getName()); + assertEquals(sourceDto.getDescription(), actual.getDescription()); + } + + /** + * GET /v1/projects/{projectId}/sources/{sourceId} + */ + @Test + public void shouldGetSource() throws Exception { + SourceDto sourceDto = createSource(); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_SOURCES + "/" + sourceDto.getId(); + String response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + SourceDto actual = mapper.readValue(response, new TypeReference() { + }); + assertEquals(sourceDto.getName(), actual.getName()); + assertEquals(sourceDto.getDescription(), actual.getDescription()); + } + + private SourceDto createSource() throws Exception { + SourceCreationDto sourceCreationDto = new SourceCreationDto("Source name", + "Description", + null, + SourceType.LOCAL.name()); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_SOURCES; + + String response = mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(sourceCreationDto)) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isCreated()) + .andReturn() + .getResponse() + .getContentAsString(); + + SourceDto actual = mapper.readValue(response, new TypeReference() { + }); + assertEquals(sourceCreationDto.getName(), actual.getName()); + assertEquals(sourceCreationDto.getDescription(), actual.getDescription()); + assertEquals(sourceCreationDto.getType(), actual.getType()); + return actual; + } +} diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/TraitsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/TraitsControllerTest.java deleted file mode 100644 index 98870ce..0000000 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/TraitsControllerTest.java +++ /dev/null @@ -1,78 +0,0 @@ -package uk.ac.ebi.spot.ontotools.curation; - -import com.fasterxml.jackson.core.type.TypeReference; -import org.apache.commons.lang3.RandomStringUtils; -import org.joda.time.DateTime; -import org.junit.Test; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.MediaType; -import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; -import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; -import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; -import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; -import uk.ac.ebi.spot.ontotools.curation.domain.Trait; -import uk.ac.ebi.spot.ontotools.curation.repository.MappingRepository; -import uk.ac.ebi.spot.ontotools.curation.repository.OntologyTermRepository; -import uk.ac.ebi.spot.ontotools.curation.repository.TraitRepository; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.TraitDto; -import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; - -import java.util.List; - -import static org.junit.Assert.assertEquals; -import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; - -public class TraitsControllerTest extends IntegrationTest { - - @Autowired - private TraitRepository traitRepository; - - @Autowired - private OntologyTermRepository ontologyTermRepository; - - @Autowired - private MappingRepository mappingRepository; - - private OntologyTerm ontologyTerm; - - private Trait trait; - - @Override - public void setup() { - super.setup(); - Provenance provenance = new Provenance(super.user.getId(), DateTime.now()); - - ontologyTerm = ontologyTermRepository.insert(new OntologyTerm(RandomStringUtils.randomAlphabetic(10), - RandomStringUtils.randomAlphabetic(10), - RandomStringUtils.randomAlphabetic(10), - RandomStringUtils.randomAlphabetic(10), - RandomStringUtils.randomAlphabetic(10), - RandomStringUtils.randomAlphabetic(10))); - trait = traitRepository.insert(new Trait("test", provenance)); - mappingRepository.insert(new Mapping(trait.getId(), ontologyTerm.getId(), provenance)); - } - - /** - * GET /v1/traits - */ - @Test - public void shouldGetTraits() throws Exception { - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_TRAITS; - - String response = mockMvc.perform(get(endpoint) - .contentType(MediaType.APPLICATION_JSON)) - .andExpect(status().isOk()) - .andReturn() - .getResponse() - .getContentAsString(); - - List actual = mapper.readValue(response, new TypeReference>() { - }); - assertEquals(1, actual.size()); - TraitDto traitDto = actual.get(0); - - assertEquals(trait.getName(), traitDto.getName()); - assertEquals(ontologyTerm.getCurie(), traitDto.getCurrentMapping().getOntologyTerm().getCurie()); - } -} From 7dde0bf8493bb98baf3d3df1f603080af91a8b20 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Fri, 5 Feb 2021 20:31:16 +0800 Subject: [PATCH 05/72] WIP: Mapping suggestions. --- .../curation/constants/CurationConstants.java | 2 +- .../domain/ExternalServiceConfig.java | 28 +++++ .../curation/domain/OntologyTerm.java | 20 ++-- .../ExternalServiceConfigRepository.java | 10 ++ .../repository/OntologyTermRepository.java | 2 + .../ExternalServiceConfigDtoAssembler.java | 31 +++++ .../controller/PlatformAdminController.java | 71 ++++++++++++ .../rest/controller/ProjectsController.java | 15 +++ .../rest/controller/SourcesController.java | 12 ++ .../dto/config/ExternalServiceConfigDto.java | 39 +++++++ .../curation/rest/dto/ols/OLSTermDto.java | 9 ++ .../rest/dto/oxo/OXOMappingResponseDto.java | 11 +- .../curation/service/ConfigListener.java | 10 ++ .../curation/service/ConfigRegistry.java | 9 ++ .../service/ExternalServiceConfigService.java | 14 +++ .../curation/service/MappingService.java | 7 +- .../service/MappingSuggestionsService.java | 8 ++ .../curation/service/OntologyTermService.java | 2 + .../curation/service/ZoomaService.java | 4 +- .../service/impl/ConfigRegistryImpl.java | 36 ++++++ .../ExternalServiceConfigServiceImpl.java | 66 +++++++++++ .../service/impl/MappingServiceImpl.java | 106 ++++++++++++++---- .../impl/MappingSuggestionsServiceImpl.java | 20 ++++ .../curation/service/impl/OLSServiceImpl.java | 37 +++++- .../curation/service/impl/OXOServiceImpl.java | 53 ++++++++- .../service/impl/OntologyTermServiceImpl.java | 8 ++ .../service/impl/ZoomaServiceImpl.java | 17 +-- .../ontotools/curation/util/CurationUtil.java | 18 +++ .../ontotools/curation/IntegrationTest.java | 3 + .../curation/PlatformAdminControllerTest.java | 96 ++++++++++++++++ .../ontotools/curation/ZoomaServiceTest.java | 32 +++--- 31 files changed, 722 insertions(+), 74 deletions(-) create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ExternalServiceConfig.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ExternalServiceConfigRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ExternalServiceConfigDtoAssembler.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/PlatformAdminController.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/config/ExternalServiceConfigDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ConfigListener.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ConfigRegistry.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ExternalServiceConfigService.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ConfigRegistryImpl.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ExternalServiceConfigServiceImpl.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/PlatformAdminControllerTest.java diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java index 24835cf..93f6af5 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -6,7 +6,7 @@ public class CurationConstants { public static final String API_SOURCES = "/sources"; - public static final String API_TRAITS = "/traits"; + public static final String API_PLATFORM_ADMIN = "/platform-admin"; public static final String API_MAPPINGS = "/mappings"; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ExternalServiceConfig.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ExternalServiceConfig.java new file mode 100644 index 0000000..286a11b --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ExternalServiceConfig.java @@ -0,0 +1,28 @@ +package uk.ac.ebi.spot.ontotools.curation.domain; + +import lombok.AllArgsConstructor; +import lombok.Getter; +import lombok.NoArgsConstructor; +import lombok.Setter; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.index.Indexed; +import org.springframework.data.mongodb.core.mapping.Document; + +import java.util.List; + +@Document(collection = "externalServiceConfigs") +@Getter +@Setter +@AllArgsConstructor +@NoArgsConstructor +public class ExternalServiceConfig { + + @Id + private String id; + + @Indexed(unique = true) + private String name; + + private List aliases; + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/OntologyTerm.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/OntologyTerm.java index 0c31373..708ec46 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/OntologyTerm.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/OntologyTerm.java @@ -1,13 +1,18 @@ package uk.ac.ebi.spot.ontotools.curation.domain; +import lombok.AllArgsConstructor; import lombok.Getter; +import lombok.NoArgsConstructor; import lombok.Setter; import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.index.Indexed; import org.springframework.data.mongodb.core.mapping.Document; @Document(collection = "ontologyTerms") @Getter @Setter +@NoArgsConstructor +@AllArgsConstructor public class OntologyTerm { @Id @@ -17,6 +22,9 @@ public class OntologyTerm { private String iri; + @Indexed + private String iriHash; + private String label; private String status; @@ -25,16 +33,4 @@ public class OntologyTerm { private String crossRefs; - public OntologyTerm() { - - } - - public OntologyTerm(String curie, String iri, String label, String status, String description, String crossRefs) { - this.curie = curie; - this.iri = iri; - this.label = label; - this.status = status; - this.description = description; - this.crossRefs = crossRefs; - } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ExternalServiceConfigRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ExternalServiceConfigRepository.java new file mode 100644 index 0000000..b6c3d1b --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ExternalServiceConfigRepository.java @@ -0,0 +1,10 @@ +package uk.ac.ebi.spot.ontotools.curation.repository; + +import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.ExternalServiceConfig; + +import java.util.Optional; + +public interface ExternalServiceConfigRepository extends MongoRepository { + Optional findByName(String name); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java index f9a4aae..e1a2a1d 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java @@ -7,4 +7,6 @@ public interface OntologyTermRepository extends MongoRepository { List findByIdIn(List ontoTermIds); + + List findByIriHash(String iriHash); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ExternalServiceConfigDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ExternalServiceConfigDtoAssembler.java new file mode 100644 index 0000000..d51adbd --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ExternalServiceConfigDtoAssembler.java @@ -0,0 +1,31 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.assembler; + +import uk.ac.ebi.spot.ontotools.curation.domain.ExternalServiceConfig; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.config.ExternalServiceConfigDto; +import uk.ac.ebi.spot.ontotools.curation.util.CurationUtil; + +import java.util.ArrayList; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +public class ExternalServiceConfigDtoAssembler { + + public static ExternalServiceConfigDto assemble(ExternalServiceConfig externalServiceConfig) { + Map map = new HashMap<>(); + if (externalServiceConfig.getAliases() != null) { + map = CurationUtil.parseAliases(externalServiceConfig.getAliases()); + } + return new ExternalServiceConfigDto(externalServiceConfig.getName(), map); + } + + public static ExternalServiceConfig disassemble(ExternalServiceConfigDto externalServiceConfig) { + List aliases = new ArrayList<>(); + if (externalServiceConfig.getAliases() != null) { + for (String key : externalServiceConfig.getAliases().keySet()) { + aliases.add(key + "::" + externalServiceConfig.getAliases().get(key)); + } + } + return new ExternalServiceConfig(null, externalServiceConfig.getServiceName(), aliases); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/PlatformAdminController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/PlatformAdminController.java new file mode 100644 index 0000000..f32cd0c --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/PlatformAdminController.java @@ -0,0 +1,71 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.controller; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.web.bind.annotation.*; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.domain.ExternalServiceConfig; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.exception.AuthorizationException; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.ExternalServiceConfigDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.config.ExternalServiceConfigDto; +import uk.ac.ebi.spot.ontotools.curation.service.ExternalServiceConfigService; +import uk.ac.ebi.spot.ontotools.curation.service.JWTService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; +import uk.ac.ebi.spot.ontotools.curation.util.HeadersUtil; + +import javax.servlet.http.HttpServletRequest; +import javax.validation.Valid; +import java.util.List; +import java.util.stream.Collectors; + +@RestController +@RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PLATFORM_ADMIN) +public class PlatformAdminController { + + private static final Logger log = LoggerFactory.getLogger(PlatformAdminController.class); + + @Autowired + private JWTService jwtService; + + @Autowired + private ExternalServiceConfigService externalServiceConfigService; + + /** + * PUT /v1/platform-admin + */ + @PutMapping(consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public ExternalServiceConfigDto updateConfig(@RequestBody @Valid ExternalServiceConfigDto externalServiceConfigDto, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to update config for service: {}", user.getEmail(), externalServiceConfigDto.getServiceName()); + if (!user.isSuperUser()) { + log.error("Invalid access control for user: {}", user.getEmail()); + throw new AuthorizationException("Invalid access control for user: " + user.getEmail()); + } + + ExternalServiceConfig updated = externalServiceConfigService.updateConfig(ExternalServiceConfigDtoAssembler.disassemble(externalServiceConfigDto)); + return ExternalServiceConfigDtoAssembler.assemble(updated); + } + + /** + * GET /v1/platform-admin + */ + @GetMapping(produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public List getConfigs(HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to retrieve platform config.", user.getEmail()); + if (!user.isSuperUser()) { + log.error("Invalid access control for user: {}", user.getEmail()); + throw new AuthorizationException("Invalid access control for user: " + user.getEmail()); + } + + List configs = externalServiceConfigService.retrieveConfigs(); + return configs.stream().map(ExternalServiceConfigDtoAssembler::assemble).collect(Collectors.toList()); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java index c54b312..b678e16 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java @@ -41,6 +41,9 @@ public class ProjectsController { @Autowired private UserService userService; + /** + * POST /v1/projects + */ @PostMapping(consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.CREATED) @@ -52,6 +55,9 @@ public ProjectDto createProject(@RequestBody @Valid ProjectCreationDto projectCr return ProjectDtoAssembler.assemble(created, user); } + /** + * GET /v1/projects + */ @GetMapping(produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.OK) public List getProjects(HttpServletRequest request) { @@ -67,6 +73,9 @@ public List getProjects(HttpServletRequest request) { return result; } + /** + * GET /v1/projects/{projectId} + */ @GetMapping(value = "/{projectId}", produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.OK) @@ -77,6 +86,9 @@ public ProjectDto getProject(@PathVariable String projectId, HttpServletRequest return ProjectDtoAssembler.assemble(project, user); } + /** + * PUT /v1/projects/{projectId} + */ @PutMapping(value = "/{projectId}", consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) @@ -88,6 +100,9 @@ public ProjectDto updateProject(@RequestBody @Valid ProjectDto projectDto, @Path return ProjectDtoAssembler.assemble(updated, user); } + /** + * DELETE /v1/projects/{projectId} + */ @DeleteMapping(value = "/{projectId}", produces = MediaType.TEXT_PLAIN_VALUE) @ResponseStatus(HttpStatus.OK) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java index a52bb5c..f271aa0 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java @@ -46,6 +46,9 @@ public class SourcesController { @Autowired private EntityService entityService; + /** + * POST /v1/projects/{projectId}/sources + */ @PostMapping(value = "/{projectId}" + CurationConstants.API_SOURCES, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) @@ -58,6 +61,9 @@ public SourceDto createSource(@RequestBody @Valid SourceCreationDto sourceCreati return SourceDtoAssembler.assemble(created, user); } + /** + * GET /v1/projects/{projectId}/sources + */ @GetMapping(value = "/{projectId}" + CurationConstants.API_SOURCES, produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.OK) @@ -74,6 +80,9 @@ public List getSources(@PathVariable String projectId, HttpServletReq return result; } + /** + * GET /v1/projects/{projectId}/sources/{sourceId} + */ @GetMapping(value = "/{projectId}" + CurationConstants.API_SOURCES + "/{sourceId}", produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.OK) @@ -85,6 +94,9 @@ public SourceDto getSource(@PathVariable String projectId, @PathVariable String return SourceDtoAssembler.assemble(source, user); } + /** + * POST /v1/projects/{projectId}/sources/{sourceId} + */ @PutMapping(value = "/{projectId}" + CurationConstants.API_SOURCES + "/{sourceId}", produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.OK) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/config/ExternalServiceConfigDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/config/ExternalServiceConfigDto.java new file mode 100644 index 0000000..c285512 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/config/ExternalServiceConfigDto.java @@ -0,0 +1,39 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.config; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotNull; +import java.io.Serializable; +import java.util.Map; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class ExternalServiceConfigDto implements Serializable { + + private static final long serialVersionUID = 4777554475058064805L; + + @NotNull + @JsonProperty("serviceName") + private final String serviceName; + + @JsonProperty("aliases") + private final Map aliases; + + @JsonCreator + public ExternalServiceConfigDto(@JsonProperty("serviceName") String serviceName, + @JsonProperty("aliases") Map aliases) { + this.serviceName = serviceName; + this.aliases = aliases; + } + + public String getServiceName() { + return serviceName; + } + + public Map getAliases() { + return aliases; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSTermDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSTermDto.java index ddd7400..9be4c98 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSTermDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSTermDto.java @@ -18,6 +18,9 @@ public final class OLSTermDto implements Serializable { @JsonProperty("iri") private final String iri; + @JsonProperty("curie") + private final String curie; + @JsonProperty("obo_id") private final String oboId; @@ -29,10 +32,12 @@ public final class OLSTermDto implements Serializable { @JsonCreator public OLSTermDto(@JsonProperty("iri") String iri, + @JsonProperty("curie") String curie, @JsonProperty("obo_id") String oboId, @JsonProperty("label") String label, @JsonProperty("is_obsolete") Boolean obsolete) { this.iri = iri; + this.curie = curie; this.oboId = oboId; this.label = label; this.obsolete = obsolete; @@ -42,6 +47,10 @@ public String getIri() { return iri; } + public String getCurie() { + return curie; + } + public String getOboId() { return oboId; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOMappingResponseDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOMappingResponseDto.java index 8528dd6..1378e6d 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOMappingResponseDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOMappingResponseDto.java @@ -21,11 +21,16 @@ public final class OXOMappingResponseDto implements Serializable { @JsonProperty("label") private final String label; + @JsonProperty("targetPrefix") + private final String targetPrefix; + @JsonCreator public OXOMappingResponseDto(@JsonProperty("curie") String curie, - @JsonProperty("label") String label) { + @JsonProperty("label") String label, + @JsonProperty("targetPrefix") String targetPrefix) { this.curie = curie; this.label = label; + this.targetPrefix = targetPrefix; } public String getCurie() { @@ -35,4 +40,8 @@ public String getCurie() { public String getLabel() { return label; } + + public String getTargetPrefix() { + return targetPrefix; + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ConfigListener.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ConfigListener.java new file mode 100644 index 0000000..c0c4d7b --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ConfigListener.java @@ -0,0 +1,10 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import java.util.List; + +public interface ConfigListener { + + void updateAliases(List aliases); + + String getName(); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ConfigRegistry.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ConfigRegistry.java new file mode 100644 index 0000000..4842c90 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ConfigRegistry.java @@ -0,0 +1,9 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import uk.ac.ebi.spot.ontotools.curation.domain.ExternalServiceConfig; + +public interface ConfigRegistry { + void registerListener(ConfigListener configListener); + + void updateAliases(ExternalServiceConfig externalServiceConfig); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ExternalServiceConfigService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ExternalServiceConfigService.java new file mode 100644 index 0000000..270a0b5 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ExternalServiceConfigService.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import uk.ac.ebi.spot.ontotools.curation.domain.ExternalServiceConfig; + +import java.util.List; +import java.util.Map; + +public interface ExternalServiceConfigService { + Map retrieveAliases(String serviceName); + + List retrieveConfigs(); + + ExternalServiceConfig updateConfig(ExternalServiceConfig externalServiceConfig); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java index 9912f9a..3e072e6 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java @@ -1,11 +1,8 @@ package uk.ac.ebi.spot.ontotools.curation.service; -import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; - -import java.util.List; -import java.util.Map; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; public interface MappingService { - void runAutoMapping(String sourceId); + void runAutoMapping(String sourceId, Project project); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java index a413d3b..4c07a86 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java @@ -1,5 +1,13 @@ package uk.ac.ebi.spot.ontotools.curation.service; +import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; + +import java.util.List; + public interface MappingSuggestionsService { + void createMappingSuggestion(Entity entity, OntologyTerm ontologyTerm); + + void deleteMappingSuggestionsExcluding(Entity entity, List ontologyTerms); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java index 65a7786..f8042e8 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java @@ -7,4 +7,6 @@ public interface OntologyTermService { Map getOntologyTermsById(List ontoTermIds); + + OntologyTerm createTerm(String iri); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ZoomaService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ZoomaService.java index ddd468f..f0fe365 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ZoomaService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ZoomaService.java @@ -1,9 +1,11 @@ package uk.ac.ebi.spot.ontotools.curation.service; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.zooma.ZoomaResponseDto; + import java.util.List; import java.util.Map; public interface ZoomaService { - Map> annotate(String entityValue, List datasources, List ontologies); + List annotate(String entityValue, List datasources, List ontologies); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ConfigRegistryImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ConfigRegistryImpl.java new file mode 100644 index 0000000..32c5aa2 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ConfigRegistryImpl.java @@ -0,0 +1,36 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import org.springframework.scheduling.annotation.Async; +import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.domain.ExternalServiceConfig; +import uk.ac.ebi.spot.ontotools.curation.service.ConfigListener; +import uk.ac.ebi.spot.ontotools.curation.service.ConfigRegistry; + +import javax.annotation.PostConstruct; +import java.util.HashMap; +import java.util.Map; + +@Service +public class ConfigRegistryImpl implements ConfigRegistry { + + private Map configListenerMap; + + @PostConstruct + public void initialize() { + this.configListenerMap = new HashMap<>(); + } + + @Override + public void registerListener(ConfigListener configListener) { + this.configListenerMap.put(configListener.getName(), configListener); + } + + @Override + @Async + public void updateAliases(ExternalServiceConfig externalServiceConfig) { + ConfigListener configListener = configListenerMap.get(externalServiceConfig.getName()); + if (configListener != null) { + configListener.updateAliases(externalServiceConfig.getAliases()); + } + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ExternalServiceConfigServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ExternalServiceConfigServiceImpl.java new file mode 100644 index 0000000..c431644 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ExternalServiceConfigServiceImpl.java @@ -0,0 +1,66 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.domain.ExternalServiceConfig; +import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; +import uk.ac.ebi.spot.ontotools.curation.repository.ExternalServiceConfigRepository; +import uk.ac.ebi.spot.ontotools.curation.service.ConfigRegistry; +import uk.ac.ebi.spot.ontotools.curation.service.ExternalServiceConfigService; +import uk.ac.ebi.spot.ontotools.curation.util.CurationUtil; + +import java.util.HashMap; +import java.util.List; +import java.util.Map; +import java.util.Optional; + +@Service +public class ExternalServiceConfigServiceImpl implements ExternalServiceConfigService { + + private static final Logger log = LoggerFactory.getLogger(ExternalServiceConfigService.class); + + @Autowired + private ExternalServiceConfigRepository externalServiceConfigRepository; + + @Autowired + private ConfigRegistry configRegistry; + + @Override + public Map retrieveAliases(String serviceName) { + log.info("Retrieving aliases for: {}", serviceName); + Map map = new HashMap<>(); + Optional externalServiceConfigOp = externalServiceConfigRepository.findByName(serviceName); + if (!externalServiceConfigOp.isPresent()) { + log.error("Unable to find config for service: {}", serviceName); + return map; + } + + List aliases = externalServiceConfigOp.get().getAliases(); + return CurationUtil.parseAliases(aliases); + } + + @Override + public List retrieveConfigs() { + log.info("Retrieving config for all services."); + List list = externalServiceConfigRepository.findAll(); + log.info("Found {} service configs.", list.size()); + return list; + } + + @Override + public ExternalServiceConfig updateConfig(ExternalServiceConfig externalServiceConfig) { + log.info("Updating config for: {}", externalServiceConfig.getName()); + Optional externalServiceConfigOp = externalServiceConfigRepository.findByName(externalServiceConfig.getName()); + if (!externalServiceConfigOp.isPresent()) { + log.error("Unable to find config for service: {}", externalServiceConfig.getName()); + throw new EntityNotFoundException("Unable to find config for service: " + externalServiceConfig.getName()); + } + ExternalServiceConfig existing = externalServiceConfigOp.get(); + existing.setAliases(externalServiceConfig.getAliases()); + existing = externalServiceConfigRepository.save(existing); + configRegistry.updateAliases(existing); + return existing; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java index 0d713d5..5e19db6 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java @@ -6,11 +6,14 @@ import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; import uk.ac.ebi.spot.ontotools.curation.repository.EntityRepository; import uk.ac.ebi.spot.ontotools.curation.repository.MappingRepository; -import uk.ac.ebi.spot.ontotools.curation.service.MappingService; -import uk.ac.ebi.spot.ontotools.curation.service.ZoomaService; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo.OXOMappingResponseDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.zooma.ZoomaResponseDto; +import uk.ac.ebi.spot.ontotools.curation.service.*; import uk.ac.ebi.spot.ontotools.curation.util.CurationUtil; import java.util.*; @@ -26,11 +29,24 @@ public class MappingServiceImpl implements MappingService { @Autowired private MappingRepository mappingRepository; + @Autowired + private MappingSuggestionsService mappingSuggestionsService; + @Autowired private EntityRepository entityRepository; + @Autowired private ZoomaService zoomaService; + @Autowired + private OntologyTermService ontologyTermService; + + @Autowired + private OLSService olsService; + + @Autowired + private OXOService oxoService; + @Override @Async public void runAutoMapping(String sourceId, Project project) { @@ -44,43 +60,91 @@ private void autoMap(Entity entity, Project project) { /** * Retrieve annotations from Zooma from datasources stored in the project */ - Map> zoomaDSResults = zoomaService.annotate(entity.getName(), project.getDatasources(), null); + List zoomaResults = zoomaService.annotate(entity.getName(), project.getDatasources(), null); /** * Retrieve annotations from Zooma from ontologies stored in the project */ - Map> zoomaResults = zoomaService.annotate(entity.getName(), null, project.getOntologies()); + zoomaResults.addAll(zoomaService.annotate(entity.getName(), null, project.getOntologies())); List highConfidenceIRIs = new ArrayList<>(); Set finalIRIs = new HashSet<>(); - for (String confidence : zoomaDSResults.keySet()) { - if (zoomaDSResults.get(confidence).size() > 1) { - log.warn("Found suggestion with combined terms: {} | {}", entity, zoomaDSResults.get(confidence)); + for (ZoomaResponseDto zoomaResponseDto : zoomaResults) { + if (zoomaResponseDto.getSemanticTags().size() > 1) { + log.warn("Found suggestion with combined terms: {} | {}", entity, zoomaResponseDto.getSemanticTags()); continue; } - String suggestedTermIRI = zoomaDSResults.get(confidence).get(0); - if (confidence.equalsIgnoreCase(ZOOMA_CONFIDENCE_HIGH)) { + String suggestedTermIRI = zoomaResponseDto.getSemanticTags().get(0); + if (zoomaResponseDto.getConfidence().equalsIgnoreCase(ZOOMA_CONFIDENCE_HIGH)) { highConfidenceIRIs.add(suggestedTermIRI); } - if (project.getOntologies() != null && project.getOntologies().contains(CurationUtil.ontoFromIRI())) { + if (project.getOntologies() != null && project.getOntologies().contains(CurationUtil.ontoFromIRI(suggestedTermIRI))) { finalIRIs.add(suggestedTermIRI); } } + List termsCreated = new ArrayList<>(); for (String iri : finalIRIs) { - /** - * TODO: - * - Create ontology term - * - Create mapping suggestion - */ + OntologyTerm ontologyTerm = ontologyTermService.createTerm(iri); + termsCreated.add(ontologyTerm); + mappingSuggestionsService.createMappingSuggestion(entity, ontologyTerm); } - /** - * TODO: Find automatic mapping - */ - /** - * TODO: Delete previous mapping suggestions for the terms just created - */ + termsCreated.addAll(findExactMapping(entity, termsCreated, highConfidenceIRIs, project)); + mappingSuggestionsService.deleteMappingSuggestionsExcluding(entity, termsCreated); + } + + private List findExactMapping(Entity entity, List termsCreated, List highConfidenceIRIs, Project project) { + List ontoSuggestions = new ArrayList<>(); + + for (OntologyTerm ontologyTerm : termsCreated) { + if (highConfidenceIRIs.contains(ontologyTerm.getIri())) { + this.createMapping(entity, ontologyTerm); + log.info("Found high confidence mapping for [{}] in: {}", entity.getName(), ontologyTerm.getIri()); + return ontoSuggestions; + } + } + + for (OntologyTerm ontologyTerm : termsCreated) { + if (entity.getName().equalsIgnoreCase(ontologyTerm.getLabel())) { + this.createMapping(entity, ontologyTerm); + log.info("Found exact text matching for [{}] in: {}", entity.getName(), ontologyTerm.getIri()); + return ontoSuggestions; + } + } + + for (String iri : highConfidenceIRIs) { + String ontoId = CurationUtil.ontoFromIRI(iri); + List olsTerms = olsService.retrieveTerms(ontoId, iri); + if (olsTerms.size() > 1) { + log.warn("Found {} OLS results. Using only the first one to map to: {}", olsTerms.size(), entity.getName()); + } + if (olsTerms.isEmpty()) { + log.warn("Found no OLS results. Cannot continue mapping for: {}", entity.getName()); + continue; + } + + List oxoMappings = oxoService.findMapping(Arrays.asList(new String[]{olsTerms.get(0).getCurie()}), project.getOntologies()); + for (OXOMappingResponseDto oxoMappingResponseDto : oxoMappings) { + String targetOntoId = oxoMappingResponseDto.getTargetPrefix().toLowerCase(); + olsTerms = olsService.retrieveTerms(targetOntoId, oxoMappingResponseDto.getCurie()); + if (olsTerms.isEmpty()) { + continue; + } + String resultIri = olsTerms.get(0).getIri(); + OntologyTerm ontologyTerm = ontologyTermService.createTerm(resultIri); + ontoSuggestions.add(ontologyTerm); + mappingSuggestionsService.createMappingSuggestion(entity, ontologyTerm); + } + } + + return ontoSuggestions; + } + + /** + * TODO: Implement + */ + private void createMapping(Entity entity, OntologyTerm ontologyTerm) { } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java index d270909..1df3c79 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java @@ -2,13 +2,33 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.service.MappingSuggestionsService; +import java.util.List; + @Service public class MappingSuggestionsServiceImpl implements MappingSuggestionsService { private static final Logger log = LoggerFactory.getLogger(MappingSuggestionsService.class); + /** + * TODO: Implement + */ + @Override + public void createMappingSuggestion(Entity entity, OntologyTerm ontologyTerm) { + } + + /** + * TODO: Implement + */ + @Override + @Async + public void deleteMappingSuggestionsExcluding(Entity entity, List ontologyTerms) { + + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java index e1ba7dc..f1a77c0 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java @@ -15,24 +15,50 @@ import uk.ac.ebi.spot.ontotools.curation.constants.RestInteractionConstants; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSResponseDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; +import uk.ac.ebi.spot.ontotools.curation.service.ConfigListener; +import uk.ac.ebi.spot.ontotools.curation.service.ConfigRegistry; +import uk.ac.ebi.spot.ontotools.curation.service.ExternalServiceConfigService; import uk.ac.ebi.spot.ontotools.curation.service.OLSService; +import uk.ac.ebi.spot.ontotools.curation.util.CurationUtil; +import javax.annotation.PostConstruct; import java.util.ArrayList; import java.util.List; +import java.util.Map; @Service -public class OLSServiceImpl implements OLSService { +public class OLSServiceImpl implements OLSService, ConfigListener { private static final Logger log = LoggerFactory.getLogger(OLSService.class); + private static final String SERVICE_NAME = "OLS"; + @Autowired private RestInteractionConfig restInteractionConfig; @Autowired private RestTemplate restTemplate; + @Autowired + private ExternalServiceConfigService externalServiceConfigService; + + @Autowired + private ConfigRegistry configRegistry; + + private Map ontoAliases; + + @PostConstruct + public void initialize() { + configRegistry.registerListener(this); + this.ontoAliases = externalServiceConfigService.retrieveAliases(SERVICE_NAME); + } + public List retrieveTerms(String ontologyId, String identifierValue) { log.info("Calling OLS: {} - {}", ontologyId, identifierValue); + if (ontoAliases.containsKey(ontologyId.toLowerCase())) { + log.info("Replacing ontologyId [{}] with alias: {}", ontologyId, ontoAliases.get(ontologyId.toLowerCase())); + ontologyId = ontoAliases.get(ontologyId.toLowerCase()); + } String base = restInteractionConfig.getOlsOntologiesEndpoint() + "/" + ontologyId + RestInteractionConstants.OLS_TERMS; UriComponentsBuilder uriBuilder = UriComponentsBuilder.fromHttpUrl(base) .queryParam(RestInteractionConstants.OLS_IDTYPE_IRI, identifierValue); @@ -59,4 +85,13 @@ public List retrieveTerms(String ontologyId, String identifierValue) return new ArrayList<>(); } + @Override + public void updateAliases(List aliases) { + this.ontoAliases.putAll(CurationUtil.parseAliases(aliases)); + } + + @Override + public String getName() { + return SERVICE_NAME; + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OXOServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OXOServiceImpl.java index d86375e..bb88c47 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OXOServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OXOServiceImpl.java @@ -14,15 +14,18 @@ import uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo.OXOMappingResponseDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo.OXORequestDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo.OXOResponseDto; -import uk.ac.ebi.spot.ontotools.curation.service.OLSService; -import uk.ac.ebi.spot.ontotools.curation.service.OXOService; +import uk.ac.ebi.spot.ontotools.curation.service.*; +import uk.ac.ebi.spot.ontotools.curation.util.CurationUtil; +import javax.annotation.PostConstruct; import java.util.ArrayList; import java.util.List; +import java.util.Map; @Service -public class OXOServiceImpl implements OXOService { +public class OXOServiceImpl implements OXOService, ConfigListener { + private static final String SERVICE_NAME = "OXO"; private static final Logger log = LoggerFactory.getLogger(OLSService.class); @@ -32,9 +35,24 @@ public class OXOServiceImpl implements OXOService { @Autowired private RestTemplate restTemplate; - public List findMapping(List ids, List ontologies) { - log.info("Calling OXO: {} - {}", ids, ontologies); + @Autowired + private ExternalServiceConfigService externalServiceConfigService; + + @Autowired + private ConfigRegistry configRegistry; + + private Map ontoAliases; + @PostConstruct + public void initialize() { + configRegistry.registerListener(this); + this.ontoAliases = externalServiceConfigService.retrieveAliases(SERVICE_NAME); + } + + public List findMapping(List ids, List projectOntologies) { + List ontologies = this.fixAliases(projectOntologies); + log.info("Calling OXO: {} - {} | {}", ids, projectOntologies, ontologies); + log.info(" -- "); try { HttpEntity httpEntity = restInteractionConfig.httpEntity() .withJsonBody(new OXORequestDto(ids, ontologies, restInteractionConfig.getOxoMappingDistance())) @@ -57,4 +75,29 @@ public List findMapping(List ids, List on } return new ArrayList<>(); } + + private List fixAliases(List ontologies) { + List result = new ArrayList<>(); + for (String ontology : ontologies) { + ontology = ontology.toLowerCase(); + if (ontoAliases.containsKey(ontology)) { + if (!result.contains(ontoAliases.get(ontology))) { + result.add(ontoAliases.get(ontology)); + } + } else { + result.add(ontoAliases.get(ontology)); + } + } + return result; + } + + @Override + public void updateAliases(List aliases) { + this.ontoAliases.putAll(CurationUtil.parseAliases(aliases)); + } + + @Override + public String getName() { + return SERVICE_NAME; + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java index 96ed371..17180db 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java @@ -30,4 +30,12 @@ public Map getOntologyTermsById(List ontoTermIds) } return mappingMap; } + + /** + * TODO: Implement + */ + @Override + public OntologyTerm createTerm(String iri) { + return null; + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ZoomaServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ZoomaServiceImpl.java index f2cc5bd..1468a27 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ZoomaServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ZoomaServiceImpl.java @@ -20,9 +20,7 @@ import java.net.URLEncoder; import java.nio.charset.StandardCharsets; import java.util.ArrayList; -import java.util.HashMap; import java.util.List; -import java.util.Map; @Service public class ZoomaServiceImpl implements ZoomaService { @@ -35,15 +33,14 @@ public class ZoomaServiceImpl implements ZoomaService { @Autowired private RestTemplate restTemplate; - public Map> annotate(String entityValue, List datasources, List ontologies) { + public List annotate(String entityValue, List datasources, List ontologies) { log.info("Calling Zooma for entity value: {}", entityValue); - Map> suggestionsMap = new HashMap<>(); String encodedString; try { encodedString = URLEncoder.encode(entityValue, StandardCharsets.UTF_8.toString()); } catch (UnsupportedEncodingException e) { log.error("Unable to encode string: {} - {}", entityValue, e.getMessage(), e); - return suggestionsMap; + return new ArrayList<>(); } UriComponentsBuilder uriBuilder = UriComponentsBuilder.fromHttpUrl(restInteractionConfig.getZoomaAnnotateEndpoint()) .queryParam(RestInteractionConstants.ZOOMA_PROPERTY_VALUE, encodedString) @@ -60,18 +57,12 @@ public Map> annotate(String entityValue, List datas if (response.getStatusCode().equals(HttpStatus.OK)) { log.info("[{}] Zooma: received {} suggestions.", entityValue, response.getBody().size()); - for (ZoomaResponseDto zoomaResponseDto : response.getBody()) { - if (zoomaResponseDto.getConfidence() != null && !zoomaResponseDto.getSemanticTags().isEmpty()) { - List suggestionsList = suggestionsMap.containsKey(zoomaResponseDto.getConfidence()) ? suggestionsMap.get(zoomaResponseDto.getConfidence()) : new ArrayList<>(); - suggestionsList.addAll(zoomaResponseDto.getSemanticTags()); - suggestionsMap.put(zoomaResponseDto.getConfidence(), suggestionsList); - } - } + return response.getBody(); } } catch (Exception e) { log.error("Unable to call Zooma: {}", e.getMessage(), e); } - return suggestionsMap; + return new ArrayList<>(); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java index 941f4d2..a1ec46f 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java @@ -1,7 +1,9 @@ package uk.ac.ebi.spot.ontotools.curation.util; import java.util.ArrayList; +import java.util.HashMap; import java.util.List; +import java.util.Map; public class CurationUtil { @@ -31,4 +33,20 @@ public static String ontoFromIRI(String iri) { return rest.substring(0, index); } + public static Map parseAliases(List aliasList) { + Map map = new HashMap<>(); + if (aliasList == null) { + return map; + } + + for (String alias : aliasList) { + String[] split = alias.split("::"); + if (split.length != 2) { + continue; + } + + map.put(split[0].trim().toLowerCase(), split[1].trim().toLowerCase()); + } + return map; + } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index af59f35..b2bb56e 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -78,6 +78,9 @@ public void setup() throws Exception { user2 = userRepository.insert(new User(null, "Test User 2", "test2@test.com", new ArrayList<>(), false)); authTokenRepository.insert(new AuthToken(null, "token2", "test2@test.com")); + + userRepository.insert(new User(null, "Super User", "super@test.com", new ArrayList<>(), true)); + authTokenRepository.insert(new AuthToken(null, "supertoken", "super@test.com")); } protected ProjectDto createProject(String name, String token) throws Exception { diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/PlatformAdminControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/PlatformAdminControllerTest.java new file mode 100644 index 0000000..f669c8a --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/PlatformAdminControllerTest.java @@ -0,0 +1,96 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import com.fasterxml.jackson.core.type.TypeReference; +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.MediaType; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.domain.ExternalServiceConfig; +import uk.ac.ebi.spot.ontotools.curation.repository.ExternalServiceConfigRepository; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.config.ExternalServiceConfigDto; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; + +import java.util.Arrays; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import static org.junit.Assert.assertEquals; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.put; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; + +public class PlatformAdminControllerTest extends IntegrationTest { + + @Autowired + private ExternalServiceConfigRepository externalServiceConfigRepository; + + @Override + public void setup() throws Exception { + super.setup(); + externalServiceConfigRepository.insert(new ExternalServiceConfig(null, "OLS", Arrays.asList(new String[]{"orphanet::ordo"}))); + } + + /** + * PUT /v1/platform-admin + */ + @Test + public void shouldUpdateConfig() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PLATFORM_ADMIN; + Map newMap = new HashMap<>(); + newMap.put("orphanet", "ordo"); + newMap.put("efox", "efo"); + ExternalServiceConfigDto toUpdate = new ExternalServiceConfigDto("OLS", newMap); + String response = mockMvc.perform(put(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(toUpdate)) + .header(IDPConstants.JWT_TOKEN, "supertoken")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + ExternalServiceConfigDto actual = mapper.readValue(response, new TypeReference() { + }); + assertEquals("OLS", actual.getServiceName()); + assertEquals(newMap, actual.getAliases()); + } + + + /** + * GET /v1/platform-admin + */ + @Test + public void shouldGetConfigs() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PLATFORM_ADMIN; + String response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "supertoken")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + List externalServiceConfigDtos = mapper.readValue(response, new TypeReference>() { + }); + assertEquals(1, externalServiceConfigDtos.size()); + + ExternalServiceConfigDto actual = externalServiceConfigDtos.get(0); + assertEquals("OLS", actual.getServiceName()); + Map expectedMap = new HashMap<>(); + expectedMap.put("orphanet", "ordo"); + assertEquals(expectedMap, actual.getAliases()); + } + + /** + * GET /v1/platform-admin + */ + @Test + public void shouldNotGetConfigs() throws Exception { + mockMvc.perform(get(GeneralCommon.API_V1 + CurationConstants.API_PLATFORM_ADMIN) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isForbidden()); + } +} diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ZoomaServiceTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ZoomaServiceTest.java index 5011634..f35ba59 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ZoomaServiceTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ZoomaServiceTest.java @@ -2,13 +2,12 @@ import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.zooma.ZoomaResponseDto; import uk.ac.ebi.spot.ontotools.curation.service.ZoomaService; import java.util.Arrays; import java.util.List; -import java.util.Map; -import static junit.framework.TestCase.assertTrue; import static org.junit.Assert.assertEquals; public class ZoomaServiceTest extends IntegrationTest { @@ -21,12 +20,12 @@ public void shouldAnnotateDatasources() { String entity = "achondroplasia"; List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); - Map> annotationResults = zoomaService.annotate(entity, datasources, null); + List annotationResults = zoomaService.annotate(entity, datasources, null); assertEquals(1, annotationResults.size()); - String key = annotationResults.keySet().iterator().next(); - assertEquals("GOOD", key); - assertEquals(1, annotationResults.get(key).size()); - assertEquals("http://www.orpha.net/ORDO/Orphanet_15", annotationResults.get(key).get(0)); + ZoomaResponseDto responseDto = annotationResults.get(0); + assertEquals("GOOD", responseDto.getConfidence()); + assertEquals(1, responseDto.getSemanticTags().size()); + assertEquals("http://www.orpha.net/ORDO/Orphanet_15", responseDto.getSemanticTags().get(0)); } @@ -35,12 +34,17 @@ public void shouldAnnotateOntologies() { String entity = "achondroplasia"; List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo"}); - Map> annotationResults = zoomaService.annotate(entity, null, ontologies); - assertEquals(1, annotationResults.size()); - String key = annotationResults.keySet().iterator().next(); - assertEquals("MEDIUM", key); - assertEquals(2, annotationResults.get(key).size()); - assertTrue(annotationResults.get(key).contains("http://www.orpha.net/ORDO/Orphanet_15")); - assertTrue(annotationResults.get(key).contains("http://purl.obolibrary.org/obo/MONDO_0007037")); + List annotationResults = zoomaService.annotate(entity, null, ontologies); + assertEquals(2, annotationResults.size()); + for (ZoomaResponseDto responseDto : annotationResults) { + assertEquals("MEDIUM", responseDto.getConfidence()); + assertEquals(1, responseDto.getSemanticTags().size()); + String semanticTag = responseDto.getSemanticTags().get(0); + if (semanticTag.contains("orpha")) { + assertEquals("http://www.orpha.net/ORDO/Orphanet_15", semanticTag); + } else { + assertEquals("http://purl.obolibrary.org/obo/MONDO_0007037", semanticTag); + } + } } } From b947fe8350e15cb95a001131baf622079486bd89 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Tue, 9 Feb 2021 23:07:23 +0800 Subject: [PATCH 06/72] Finalized matchmaking service. Added EntityController and associated utilities. --- install.txt | 6 + .../curation/constants/CurationConstants.java | 4 +- .../curation/constants/EntityStatus.java | 9 + .../curation/constants/MappingStatus.java | 12 +- .../curation/constants/ReviewStatus.java | 9 + .../curation/constants/TermStatus.java | 12 ++ .../ontotools/curation/domain/Entity.java | 4 +- .../ontotools/curation/domain/Mapping.java | 41 +++- .../curation/domain/MappingSuggestion.java | 26 ++- .../curation/domain/OntologyTerm.java | 2 +- .../ontotools/curation/domain/Provenance.java | 11 +- .../ontotools/curation/domain/Review.java | 20 +- .../curation/domain/auth/Project.java | 15 ++ .../curation/repository/EntityRepository.java | 5 + .../repository/MappingRepository.java | 5 +- .../MappingSuggestionRepository.java | 11 + .../repository/OntologyTermRepository.java | 3 +- .../curation/repository/ReviewRepository.java | 7 - .../rest/assembler/EntityDtoAssembler.java | 28 +++ .../rest/assembler/MappingDtoAssembler.java | 14 +- .../MappingSuggestionDtoAssembler.java | 14 ++ .../rest/assembler/ProjectDtoAssembler.java | 8 +- .../assembler/ProvenanceDtoAssembler.java | 7 +- .../rest/assembler/ReviewDtoAssembler.java | 11 + .../rest/assembler/SourceDtoAssembler.java | 7 +- .../rest/assembler/UserDtoAssembler.java | 5 +- .../rest/controller/EntityController.java | 98 +++++++++ .../rest/controller/MappingsController.java | 56 ++++++ .../rest/controller/ProjectsController.java | 16 +- .../rest/controller/SourcesController.java | 18 +- .../curation/rest/dto/EntityDto.java | 84 ++++++++ .../curation/rest/dto/MappingDto.java | 37 ++++ .../rest/dto/MappingSuggestionDto.java | 58 ++++++ .../curation/rest/dto/ProjectCreationDto.java | 11 +- .../curation/rest/dto/ProjectDto.java | 9 + .../curation/rest/dto/ReviewDto.java | 39 ++++ .../curation/service/ConfigRegistry.java | 10 + .../curation/service/EntityService.java | 16 ++ .../curation/service/MappingService.java | 12 +- .../service/MappingSuggestionsService.java | 7 +- .../curation/service/MatchmakerService.java | 8 + .../curation/service/OntologyTermService.java | 5 +- .../curation/service/UserService.java | 2 + .../service/impl/EntityServiceImpl.java | 51 +++++ .../service/impl/MappingServiceImpl.java | 148 +++----------- .../impl/MappingSuggestionsServiceImpl.java | 56 +++++- .../service/impl/MatchmakerServiceImpl.java | 188 ++++++++++++++++++ .../curation/service/impl/OLSServiceImpl.java | 22 ++ .../curation/service/impl/OXOServiceImpl.java | 14 +- .../service/impl/OntologyTermServiceImpl.java | 94 ++++++++- .../service/impl/UserServiceImpl.java | 17 ++ .../service/impl/ZoomaServiceImpl.java | 11 + .../system/SystemConfigProperties.java | 7 + src/main/resources/application.yml | 2 + .../curation/EntityControllerTest.java | 4 + .../ontotools/curation/IntegrationTest.java | 5 +- .../ontotools/curation/OXOServiceTest.java | 8 +- .../curation/ProjectsControllerTest.java | 2 + 58 files changed, 1167 insertions(+), 244 deletions(-) create mode 100644 install.txt create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/EntityStatus.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/ReviewStatus.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/TermStatus.java delete mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ReviewRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingSuggestionDtoAssembler.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ReviewDtoAssembler.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/MappingSuggestionDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ReviewDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakerService.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java diff --git a/install.txt b/install.txt new file mode 100644 index 0000000..c2b14b1 --- /dev/null +++ b/install.txt @@ -0,0 +1,6 @@ +Data to be created during the initial setup. + +External service configs +------------------------ +db.externalServiceConfigs.insert({"name": "OXO", "aliases" : ["ordo::Orphanet"]}) +db.externalServiceConfigs.insert({"name": "OLS", "aliases" : ["Orphanet::ordo"]}) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java index 93f6af5..6169793 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -10,7 +10,9 @@ public class CurationConstants { public static final String API_MAPPINGS = "/mappings"; - public static final String API_SUGGESTIONS = "/mapping-suggestions"; + public static final String API_ENTITIES = "/entities"; public static final String ZOOMA_CONFIDENCE_HIGH = "HIGH"; + + public static final int NO_REVIEWS_REQUIRED = 3; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/EntityStatus.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/EntityStatus.java new file mode 100644 index 0000000..7d6b177 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/EntityStatus.java @@ -0,0 +1,9 @@ +package uk.ac.ebi.spot.ontotools.curation.constants; + +public enum EntityStatus { + + UNMAPPED, + SUGGESTIONS_PROVIDED, + MANUALLY_MAPPED, + AUTO_MAPPED +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/MappingStatus.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/MappingStatus.java index eb873fd..cb8a581 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/MappingStatus.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/MappingStatus.java @@ -2,14 +2,8 @@ public enum MappingStatus { - CURRENT, - UNMAPPED, - OBSOLETE, - DELETED, - NEEDS_IMPORT, - AWAITING_IMPORT, - NEEDS_CREATION, - AWAITING_CREATION, - AWAITING_REVIEW + AWAITING_REVIEW, + REVIEW_IN_PROGRESS, + FINALIZED } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/ReviewStatus.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/ReviewStatus.java new file mode 100644 index 0000000..ced48ba --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/ReviewStatus.java @@ -0,0 +1,9 @@ +package uk.ac.ebi.spot.ontotools.curation.constants; + +public enum ReviewStatus { + + AWAITING_REVIEW, + APPROVED, + REJECTED + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/TermStatus.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/TermStatus.java new file mode 100644 index 0000000..e2a084f --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/TermStatus.java @@ -0,0 +1,12 @@ +package uk.ac.ebi.spot.ontotools.curation.constants; + +public enum TermStatus { + + CURRENT, + OBSOLETE, + DELETED, + NEEDS_IMPORT, + AWAITING_IMPORT, + NEEDS_CREATION + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Entity.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Entity.java index c97ac68..e1cc2da 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Entity.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Entity.java @@ -7,7 +7,7 @@ import org.springframework.data.annotation.Id; import org.springframework.data.mongodb.core.index.Indexed; import org.springframework.data.mongodb.core.mapping.Document; -import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; +import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; @Document(collection = "mappings") @Getter @@ -26,5 +26,5 @@ public class Entity { private Provenance created; - private MappingStatus mappingStatus; + private EntityStatus mappingStatus; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Mapping.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Mapping.java index f631e70..b7b17c5 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Mapping.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Mapping.java @@ -1,33 +1,56 @@ package uk.ac.ebi.spot.ontotools.curation.domain; +import lombok.AllArgsConstructor; import lombok.Getter; +import lombok.NoArgsConstructor; import lombok.Setter; import org.springframework.data.annotation.Id; +import org.springframework.data.annotation.Transient; +import org.springframework.data.mongodb.core.index.CompoundIndex; +import org.springframework.data.mongodb.core.index.CompoundIndexes; import org.springframework.data.mongodb.core.index.Indexed; import org.springframework.data.mongodb.core.mapping.Document; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; + +import java.util.ArrayList; +import java.util.List; @Document(collection = "mappings") @Getter @Setter +@AllArgsConstructor +@NoArgsConstructor +@CompoundIndexes({@CompoundIndex(name = "eoId", def = "{'entityId': 1, 'ontologyTermId': 1}")}) public class Mapping { @Id private String id; @Indexed - private String mappedTraitId; + private String entityId; - private String mappedTermId; + @Indexed + private String ontologyTermId; - private Provenance created; + @Indexed + private boolean reviewed; - public Mapping() { + private List reviews; - } + private String status; + + private Provenance created; - public Mapping(String mappedTraitId, String mappedTermId, Provenance created) { - this.mappedTraitId = mappedTraitId; - this.mappedTermId = mappedTermId; - this.created = created; + @Transient + private OntologyTerm ontologyTerm; + + public void addReview(Review review) { + if (reviews == null) { + reviews = new ArrayList<>(); + } + this.reviews.add(review); + if (this.reviews.size() >= CurationConstants.NO_REVIEWS_REQUIRED) { + this.reviewed = true; + } } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MappingSuggestion.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MappingSuggestion.java index 1915fdd..bda11a5 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MappingSuggestion.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MappingSuggestion.java @@ -1,31 +1,35 @@ package uk.ac.ebi.spot.ontotools.curation.domain; +import lombok.AllArgsConstructor; import lombok.Getter; +import lombok.NoArgsConstructor; import lombok.Setter; import org.springframework.data.annotation.Id; +import org.springframework.data.annotation.Transient; +import org.springframework.data.mongodb.core.index.CompoundIndex; +import org.springframework.data.mongodb.core.index.CompoundIndexes; +import org.springframework.data.mongodb.core.index.Indexed; import org.springframework.data.mongodb.core.mapping.Document; @Document(collection = "mappingSuggestions") @Getter @Setter +@NoArgsConstructor +@AllArgsConstructor +@CompoundIndexes({@CompoundIndex(name = "eoId", def = "{'entityId': 1, 'ontologyTermId': 1}")}) public class MappingSuggestion { @Id private String id; - private String mappedTraitId; + @Indexed + private String entityId; - private String mappedTermId; + @Indexed + private String ontologyTermId; private Provenance created; - public MappingSuggestion() { - - } - - public MappingSuggestion(String mappedTraitId, String mappedTermId, Provenance created) { - this.mappedTraitId = mappedTraitId; - this.mappedTermId = mappedTermId; - this.created = created; - } + @Transient + private OntologyTerm ontologyTerm; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/OntologyTerm.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/OntologyTerm.java index 708ec46..d5055cb 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/OntologyTerm.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/OntologyTerm.java @@ -22,7 +22,7 @@ public class OntologyTerm { private String iri; - @Indexed + @Indexed(unique = true) private String iriHash; private String label; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Provenance.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Provenance.java index 8e77a99..3e0ad07 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Provenance.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Provenance.java @@ -1,17 +1,16 @@ package uk.ac.ebi.spot.ontotools.curation.domain; +import lombok.AllArgsConstructor; import lombok.Getter; import org.joda.time.DateTime; @Getter +@AllArgsConstructor public class Provenance { - private String userId; + private String userName; - private DateTime timestamp; + private String userEmail; - public Provenance(String userId, DateTime timestamp) { - this.userId = userId; - this.timestamp = timestamp; - } + private DateTime timestamp; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Review.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Review.java index c873539..53c42f3 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Review.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Review.java @@ -1,28 +1,14 @@ package uk.ac.ebi.spot.ontotools.curation.domain; +import lombok.AllArgsConstructor; import lombok.Getter; -import lombok.Setter; -import org.springframework.data.annotation.Id; -import org.springframework.data.mongodb.core.mapping.Document; -@Document(collection = "reviews") @Getter -@Setter +@AllArgsConstructor public class Review { - @Id - private String id; - - private String reviewId; + private String comment; private Provenance created; - public Review() { - - } - - public Review(String reviewId, Provenance created) { - this.reviewId = reviewId; - this.created = created; - } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java index bd06bf5..316eb34 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java @@ -24,9 +24,24 @@ public class Project { private String description; + /** + * List of datasources used to query Zooma to retrieve suggestions. + * Zooma service uses this list to filter results pertaining only to these datasources. + */ private List datasources; + /** + * List of datasources used to query Zooma to retrieve suggestions. + * Zooma service uses this list to filter results pertaining only to these ontologies. + * + * NB: Orphanet prefix used by Zooma is `ordo` + */ private List ontologies; + /** + * Ontology ID used when creating ontology terms locally to query OLS for a mapping + */ + private String preferredMappintOntology; + private Provenance created; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java index de6c20c..f4b0891 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java @@ -1,11 +1,16 @@ package uk.ac.ebi.spot.ontotools.curation.repository; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; import org.springframework.data.mongodb.repository.MongoRepository; import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import java.util.List; import java.util.stream.Stream; public interface EntityRepository extends MongoRepository { Stream readBySourceId(String sourceId); + + Page findBySourceIdIn(List sourceIds, Pageable page); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java index 8a05bf0..ad71f78 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java @@ -4,7 +4,10 @@ import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; import java.util.List; +import java.util.Optional; public interface MappingRepository extends MongoRepository { - List findByMappedTraitIdIn(List traitIds); + Optional findByEntityIdAndOntologyTermId(String entityId, String ontologyTermId); + + List findByEntityIdIn(List entityIds); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingSuggestionRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingSuggestionRepository.java index 62736ed..2db7c54 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingSuggestionRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingSuggestionRepository.java @@ -3,5 +3,16 @@ import org.springframework.data.mongodb.repository.MongoRepository; import uk.ac.ebi.spot.ontotools.curation.domain.MappingSuggestion; +import java.util.List; +import java.util.Optional; + public interface MappingSuggestionRepository extends MongoRepository { + + Optional findByEntityIdAndOntologyTermId(String entityId, String ontologyTermId); + + List findByEntityIdIn(List entityIds); + + List findByEntityIdAndOntologyTermIdNotIn(String entityId, List ontologyTermIds); + + List findByOntologyTermId(String ontologyTermId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java index e1a2a1d..b2adb78 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java @@ -4,9 +4,10 @@ import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; import java.util.List; +import java.util.Optional; public interface OntologyTermRepository extends MongoRepository { List findByIdIn(List ontoTermIds); - List findByIriHash(String iriHash); + Optional findByIriHash(String iriHash); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ReviewRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ReviewRepository.java deleted file mode 100644 index 17b231a..0000000 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ReviewRepository.java +++ /dev/null @@ -1,7 +0,0 @@ -package uk.ac.ebi.spot.ontotools.curation.repository; - -import org.springframework.data.mongodb.repository.MongoRepository; -import uk.ac.ebi.spot.ontotools.curation.domain.Review; - -public interface ReviewRepository extends MongoRepository { -} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java new file mode 100644 index 0000000..1228d98 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java @@ -0,0 +1,28 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.assembler; + +import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.MappingSuggestion; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.MappingDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.MappingSuggestionDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; + +import java.util.List; +import java.util.stream.Collectors; + +public class EntityDtoAssembler { + + public static EntityDto assemble(Entity entity, SourceDto source, List mappings, List mappingSuggestions) { + List mappingSuggestionDtos = mappingSuggestions.stream().map(MappingSuggestionDtoAssembler::assemble).collect(Collectors.toList()); + List mappingDtos = mappings.stream().map(MappingDtoAssembler::assemble).collect(Collectors.toList()); + + return new EntityDto(entity.getId(), + source, + entity.getName(), + entity.getMappingStatus().name(), + mappingSuggestionDtos, + mappingDtos, + ProvenanceDtoAssembler.assemble(entity.getCreated())); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java index d5c25d6..11070db 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java @@ -1,9 +1,21 @@ package uk.ac.ebi.spot.ontotools.curation.rest.assembler; import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; -import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.rest.dto.MappingDto; +import java.util.ArrayList; +import java.util.stream.Collectors; + public class MappingDtoAssembler { + public static MappingDto assemble(Mapping mapping) { + return new MappingDto(mapping.getId(), + mapping.getEntityId(), + OntologyTermDtoAssembler.assemble(mapping.getOntologyTerm()), + mapping.isReviewed(), + mapping.getStatus(), + mapping.getReviews() != null ? mapping.getReviews().stream().map(ReviewDtoAssembler::assemble).collect(Collectors.toList()) : new ArrayList<>(), + ProvenanceDtoAssembler.assemble(mapping.getCreated())); + } + } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingSuggestionDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingSuggestionDtoAssembler.java new file mode 100644 index 0000000..426bd0e --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingSuggestionDtoAssembler.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.assembler; + +import uk.ac.ebi.spot.ontotools.curation.domain.MappingSuggestion; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.MappingSuggestionDto; + +public class MappingSuggestionDtoAssembler { + + public static MappingSuggestionDto assemble(MappingSuggestion mappingSuggestion) { + return new MappingSuggestionDto(mappingSuggestion.getId(), + mappingSuggestion.getEntityId(), + OntologyTermDtoAssembler.assemble(mappingSuggestion.getOntologyTerm()), + ProvenanceDtoAssembler.assemble(mappingSuggestion.getCreated())); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java index 9f7510f..b33e238 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java @@ -2,7 +2,6 @@ import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectCreationDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; @@ -10,13 +9,14 @@ public class ProjectDtoAssembler { - public static ProjectDto assemble(Project project, User user) { + public static ProjectDto assemble(Project project) { return new ProjectDto(project.getId(), project.getName(), project.getDescription(), project.getDatasources(), project.getOntologies(), - ProvenanceDtoAssembler.assemble(project.getCreated(), user)); + project.getPreferredMappintOntology(), + ProvenanceDtoAssembler.assemble(project.getCreated())); } public static Project disassemble(ProjectDto project) { @@ -25,6 +25,7 @@ public static Project disassemble(ProjectDto project) { project.getDescription(), project.getDatasources(), project.getOntologies(), + project.getPreferredMappingOntology(), ProvenanceDtoAssembler.disassemble(project.getCreated())); } @@ -34,6 +35,7 @@ public static Project disassemble(ProjectCreationDto project, Provenance provena project.getDescription(), project.getDatasources() != null ? project.getDatasources() : new ArrayList<>(), project.getOntologies() != null ? project.getOntologies() : new ArrayList<>(), + project.getPreferredMappingOntology(), provenance); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProvenanceDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProvenanceDtoAssembler.java index 8da00db..bcd26bd 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProvenanceDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProvenanceDtoAssembler.java @@ -1,16 +1,15 @@ package uk.ac.ebi.spot.ontotools.curation.rest.assembler; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProvenanceDto; public class ProvenanceDtoAssembler { - public static ProvenanceDto assemble(Provenance provenance, User user) { - return new ProvenanceDto(UserDtoAssembler.asseble(user), provenance.getTimestamp()); + public static ProvenanceDto assemble(Provenance provenance) { + return new ProvenanceDto(UserDtoAssembler.assemble(provenance.getUserName(), provenance.getUserEmail()), provenance.getTimestamp()); } public static Provenance disassemble(ProvenanceDto provenance) { - return new Provenance(provenance.getUser().getId(), provenance.getTimestamp()); + return new Provenance(provenance.getUser().getName(), provenance.getUser().getEmail(), provenance.getTimestamp()); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ReviewDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ReviewDtoAssembler.java new file mode 100644 index 0000000..765ebcc --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ReviewDtoAssembler.java @@ -0,0 +1,11 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.assembler; + +import uk.ac.ebi.spot.ontotools.curation.domain.Review; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ReviewDto; + +public class ReviewDtoAssembler { + + public static ReviewDto assemble(Review review) { + return new ReviewDto(review.getComment(), ProvenanceDtoAssembler.assemble(review.getCreated())); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/SourceDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/SourceDtoAssembler.java index b53c146..f318029 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/SourceDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/SourceDtoAssembler.java @@ -2,20 +2,19 @@ import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.Source; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceCreationDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; public class SourceDtoAssembler { - public static SourceDto assemble(Source source, User user) { + public static SourceDto assemble(Source source) { return new SourceDto(source.getId(), source.getName(), source.getDescription(), source.getUri(), source.getType(), - ProvenanceDtoAssembler.assemble(source.getCreated(), user), - ProvenanceDtoAssembler.assemble(source.getLastUpdated(), user)); + ProvenanceDtoAssembler.assemble(source.getCreated()), + ProvenanceDtoAssembler.assemble(source.getLastUpdated())); } public static Source disassemble(SourceDto source) { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/UserDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/UserDtoAssembler.java index 2c82950..95196c2 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/UserDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/UserDtoAssembler.java @@ -7,11 +7,14 @@ public class UserDtoAssembler { - public static UserDto asseble(User user) { + public static UserDto assemble(User user) { return new UserDto(user.getId(), user.getName(), user.getEmail(), user.getRoles() != null ? user.getRoles().stream().map(RoleDtoAssembler::assemble).collect(Collectors.toList()) : null); } + public static UserDto assemble(String name, String email) { + return new UserDto(null, name, email, null); + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java new file mode 100644 index 0000000..9fcb0fe --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java @@ -0,0 +1,98 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.controller; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.PageImpl; +import org.springframework.data.domain.Pageable; +import org.springframework.data.web.PageableDefault; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.web.bind.annotation.*; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.MappingSuggestion; +import uk.ac.ebi.spot.ontotools.curation.domain.Source; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.EntityDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.SourceDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.service.*; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; +import uk.ac.ebi.spot.ontotools.curation.util.HeadersUtil; + +import javax.servlet.http.HttpServletRequest; +import java.util.*; +import java.util.stream.Collectors; + +@RestController +@RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) +public class EntityController { + + private static final Logger log = LoggerFactory.getLogger(ProjectsController.class); + + @Autowired + private JWTService jwtService; + + @Autowired + private ProjectService projectService; + + @Autowired + private SourceService sourceService; + + @Autowired + private EntityService entityService; + + @Autowired + private MappingSuggestionsService mappingSuggestionsService; + + @Autowired + private MappingService mappingService; + + /** + * GET /v1/projects/{projectId}/entities + */ + @GetMapping(value = "/{projectId}" + CurationConstants.API_ENTITIES, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public Page getEntities(@PathVariable String projectId, @PageableDefault(size = 20, page = 0) Pageable pageable, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to retrieve entities: {}", user.getEmail(), projectId); + projectService.verifyAccess(projectId, user); + List sources = sourceService.getSources(projectId); + Map sourceMap = new HashMap<>(); + for (Source source : sources) { + sourceMap.put(source.getId(), SourceDtoAssembler.assemble(source)); + } + + Page entities = entityService.retrieveEntitiesForSources(sources, pageable); + List entityIds = entities.get().map(Entity::getId).collect(Collectors.toList()); + Map> mappings = mappingService.retrieveMappingsForEntities(entityIds); + Map> mappingSuggestions = mappingSuggestionsService.retrieveMappingSuggestionsForEntities(entityIds); + List entityDtos = new ArrayList<>(); + for (Entity entity : entities.getContent()) { + entityDtos.add(EntityDtoAssembler.assemble(entity, sourceMap.get(entity.getSourceId()), mappings.get(entity.getId()), mappingSuggestions.get(entity.getId()))); + } + return new PageImpl<>(entityDtos, pageable, entities.getTotalElements()); + } + + /** + * GET /v1/projects/{projectId}/entities/{entityId} + */ + @GetMapping(value = "/{projectId}" + CurationConstants.API_ENTITIES + "/{entityId}", + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public EntityDto getEntity(@PathVariable String projectId, @PathVariable String entityId, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to retrieve entity: {} | {}", user.getEmail(), projectId, entityId); + projectService.verifyAccess(projectId, user); + Entity entity = entityService.retrieveEntity(entityId); + Source source = sourceService.getSource(entity.getSourceId(), projectId); + Map> mappings = mappingService.retrieveMappingsForEntities(Arrays.asList(new String[]{entityId})); + Map> mappingSuggestions = mappingSuggestionsService.retrieveMappingSuggestionsForEntities(Arrays.asList(new String[]{entityId})); + return EntityDtoAssembler.assemble(entity, SourceDtoAssembler.assemble(source), mappings.get(entityId), mappingSuggestions.get(entityId)); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java new file mode 100644 index 0000000..49325d4 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java @@ -0,0 +1,56 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.controller; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.service.*; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; + +@RestController +@RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_MAPPINGS) +public class MappingsController { + + private static final Logger log = LoggerFactory.getLogger(ProjectsController.class); + + @Autowired + private JWTService jwtService; + + @Autowired + private ProjectService projectService; + + @Autowired + private MappingService mappingService; + + @Autowired + private MappingSuggestionsService mappingSuggestionsService; + + @Autowired + private UserService userService; + + + /** + * GET /v1/mappings?entityId= + */ + + /** + * POST /v1/mappings + */ + + /** + * PUT /v1/mappings/{mappingId} + * - sets mapping active + */ + + /** + * DELETE /v1/mappings/{mappingId} + */ + + /** + * TODO: + * - Add comments + * - Add review + */ +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java index b678e16..4dee1c5 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java @@ -23,8 +23,8 @@ import javax.servlet.http.HttpServletRequest; import javax.validation.Valid; -import java.util.ArrayList; import java.util.List; +import java.util.stream.Collectors; @RestController @RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) @@ -50,9 +50,9 @@ public class ProjectsController { public ProjectDto createProject(@RequestBody @Valid ProjectCreationDto projectCreationDto, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to create project: {}", user.getEmail(), projectCreationDto.getName()); - Project created = projectService.createProject(ProjectDtoAssembler.disassemble(projectCreationDto, new Provenance(user.getId(), DateTime.now())), user); + Project created = projectService.createProject(ProjectDtoAssembler.disassemble(projectCreationDto, new Provenance(user.getName(), user.getEmail(), DateTime.now())), user); userService.addProjectToUser(user, created, ProjectRole.ADMIN); - return ProjectDtoAssembler.assemble(created, user); + return ProjectDtoAssembler.assemble(created); } /** @@ -66,11 +66,7 @@ public List getProjects(HttpServletRequest request) { List projects = projectService.retrieveProjects(user); log.info("Found {} projects for user: {}", projects.size(), user.getEmail()); - List result = new ArrayList<>(); - for (Project project : projects) { - result.add(ProjectDtoAssembler.assemble(project, user)); - } - return result; + return projects.stream().map(ProjectDtoAssembler::assemble).collect(Collectors.toList()); } /** @@ -83,7 +79,7 @@ public ProjectDto getProject(@PathVariable String projectId, HttpServletRequest User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to retrieve project: {}", user.getEmail(), projectId); Project project = projectService.retrieveProject(projectId, user); - return ProjectDtoAssembler.assemble(project, user); + return ProjectDtoAssembler.assemble(project); } /** @@ -97,7 +93,7 @@ public ProjectDto updateProject(@RequestBody @Valid ProjectDto projectDto, @Path User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to update project [{}]: {}", user.getEmail(), projectId, projectDto.getName()); Project updated = projectService.updateProject(ProjectDtoAssembler.disassemble(projectDto), projectId, user); - return ProjectDtoAssembler.assemble(updated, user); + return ProjectDtoAssembler.assemble(updated); } /** diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java index f271aa0..9471aa2 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java @@ -8,7 +8,7 @@ import org.springframework.http.MediaType; import org.springframework.web.bind.annotation.*; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; -import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; +import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.domain.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.Source; @@ -25,8 +25,8 @@ import javax.servlet.http.HttpServletRequest; import javax.validation.Valid; -import java.util.ArrayList; import java.util.List; +import java.util.stream.Collectors; @RestController @RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) @@ -57,8 +57,8 @@ public SourceDto createSource(@RequestBody @Valid SourceCreationDto sourceCreati User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{} | {}] Request to create source: {}", user.getEmail(), projectId, sourceCreationDto.getName()); projectService.verifyAccess(projectId, user); - Source created = sourceService.createSource(SourceDtoAssembler.disassemble(sourceCreationDto, new Provenance(user.getId(), DateTime.now())), projectId); - return SourceDtoAssembler.assemble(created, user); + Source created = sourceService.createSource(SourceDtoAssembler.disassemble(sourceCreationDto, new Provenance(user.getName(), user.getEmail(), DateTime.now())), projectId); + return SourceDtoAssembler.assemble(created); } /** @@ -73,11 +73,7 @@ public List getSources(@PathVariable String projectId, HttpServletReq projectService.verifyAccess(projectId, user); List sources = sourceService.getSources(projectId); log.info("Found {} sources in project: {}", sources.size(), projectId); - List result = new ArrayList<>(); - for (Source source : sources) { - result.add(SourceDtoAssembler.assemble(source, user)); - } - return result; + return sources.stream().map(SourceDtoAssembler::assemble).collect(Collectors.toList()); } /** @@ -91,7 +87,7 @@ public SourceDto getSource(@PathVariable String projectId, @PathVariable String log.info("[{}] Request to retrieve source: {} | {}", user.getEmail(), projectId, sourceId); projectService.verifyAccess(projectId, user); Source source = sourceService.getSource(sourceId, projectId); - return SourceDtoAssembler.assemble(source, user); + return SourceDtoAssembler.assemble(source); } /** @@ -106,7 +102,7 @@ public void addDataToSource(@RequestBody List entities, @PathVariable St projectService.verifyAccess(projectId, user); Source source = sourceService.getSource(sourceId, projectId); for (String entity : entities) { - entityService.createEntity(new Entity(null, entity, source.getId(), new Provenance(user.getId(), DateTime.now()), MappingStatus.UNMAPPED)); + entityService.createEntity(new Entity(null, entity, source.getId(), new Provenance(user.getName(), user.getEmail(), DateTime.now()), EntityStatus.UNMAPPED)); } } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java new file mode 100644 index 0000000..442735b --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java @@ -0,0 +1,84 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotNull; +import java.io.Serializable; +import java.util.List; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class EntityDto implements Serializable { + + private static final long serialVersionUID = 5798967900389052490L; + + @NotNull + @JsonProperty("id") + private final String id; + + @JsonProperty("source") + private final SourceDto source; + + @JsonProperty("name") + private final String name; + + @JsonProperty("mappingStatus") + private final String mappingStatus; + + @JsonProperty("created") + private final ProvenanceDto created; + + @JsonProperty("mappingSuggestions") + private final List mappingSuggestions; + + @JsonProperty("mappings") + private final List mappings; + + @JsonCreator + public EntityDto(@JsonProperty("id") String id, + @JsonProperty("source") SourceDto source, + @JsonProperty("name") String name, + @JsonProperty("mappingStatus") String mappingStatus, + @JsonProperty("mappingSuggestions") List mappingSuggestions, + @JsonProperty("mappings") List mappings, + @JsonProperty("created") ProvenanceDto created) { + this.id = id; + this.source = source; + this.name = name; + this.mappingStatus = mappingStatus; + this.mappingSuggestions = mappingSuggestions; + this.mappings = mappings; + this.created = created; + } + + public String getId() { + return id; + } + + public SourceDto getSource() { + return source; + } + + public String getName() { + return name; + } + + public String getMappingStatus() { + return mappingStatus; + } + + public ProvenanceDto getCreated() { + return created; + } + + public List getMappingSuggestions() { + return mappingSuggestions; + } + + public List getMappings() { + return mappings; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/MappingDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/MappingDto.java index d3e17eb..f17da9b 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/MappingDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/MappingDto.java @@ -7,6 +7,7 @@ import javax.validation.constraints.NotNull; import java.io.Serializable; +import java.util.List; @EqualsAndHashCode @JsonInclude(JsonInclude.Include.NON_NULL) @@ -18,20 +19,40 @@ public final class MappingDto implements Serializable { @JsonProperty("id") private final String id; + @JsonProperty("entityId") + private final String entityId; + @NotNull @JsonProperty("ontologyTerm") private final OntologyTermDto ontologyTerm; + @JsonProperty("reviewed") + private final boolean reviewed; + + @JsonProperty("status") + private final String status; + + @JsonProperty("reviews") + private final List reviews; + @NotNull @JsonProperty("created") private final ProvenanceDto created; @JsonCreator public MappingDto(@JsonProperty("id") String id, + @JsonProperty("entityId") String entityId, @JsonProperty("ontologyTerm") OntologyTermDto ontologyTerm, + @JsonProperty("reviewed") boolean reviewed, + @JsonProperty("status") String status, + @JsonProperty("reviews") List reviews, @JsonProperty("created") ProvenanceDto created) { this.id = id; + this.entityId = entityId; this.ontologyTerm = ontologyTerm; + this.reviewed = reviewed; + this.status = status; + this.reviews = reviews; this.created = created; } @@ -43,6 +64,22 @@ public OntologyTermDto getOntologyTerm() { return ontologyTerm; } + public String getEntityId() { + return entityId; + } + + public boolean isReviewed() { + return reviewed; + } + + public String getStatus() { + return status; + } + + public List getReviews() { + return reviews; + } + public ProvenanceDto getCreated() { return created; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/MappingSuggestionDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/MappingSuggestionDto.java new file mode 100644 index 0000000..e0179a1 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/MappingSuggestionDto.java @@ -0,0 +1,58 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotNull; +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class MappingSuggestionDto implements Serializable { + + private static final long serialVersionUID = -4565784727352793191L; + + @NotNull + @JsonProperty("id") + private final String id; + + @JsonProperty("entityId") + private final String entityId; + + @NotNull + @JsonProperty("ontologyTerm") + private final OntologyTermDto ontologyTerm; + + @NotNull + @JsonProperty("created") + private final ProvenanceDto created; + + @JsonCreator + public MappingSuggestionDto(@JsonProperty("id") String id, + @JsonProperty("entityId") String entityId, + @JsonProperty("ontologyTerm") OntologyTermDto ontologyTerm, + @JsonProperty("created") ProvenanceDto created) { + this.id = id; + this.entityId = entityId; + this.ontologyTerm = ontologyTerm; + this.created = created; + } + + public String getId() { + return id; + } + + public OntologyTermDto getOntologyTerm() { + return ontologyTerm; + } + + public String getEntityId() { + return entityId; + } + + public ProvenanceDto getCreated() { + return created; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDto.java index 5a8180c..6b52a9b 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDto.java @@ -28,15 +28,20 @@ public final class ProjectCreationDto implements Serializable { @JsonProperty("ontologies") private final List ontologies; + @JsonProperty("preferredMappingOntology") + private final String preferredMappingOntology; + @JsonCreator public ProjectCreationDto(@JsonProperty("name") String name, @JsonProperty("description") String description, @JsonProperty("datasources") List datasources, - @JsonProperty("ontologies") List ontologies) { + @JsonProperty("ontologies") List ontologies, + @JsonProperty("preferredMappingOntology") String preferredMappingOntology) { this.name = name; this.description = description; this.datasources = datasources; this.ontologies = ontologies; + this.preferredMappingOntology = preferredMappingOntology; } public String getName() { @@ -51,6 +56,10 @@ public List getDatasources() { return datasources; } + public String getPreferredMappingOntology() { + return preferredMappingOntology; + } + public List getOntologies() { return ontologies; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java index c90f581..ef56021 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java @@ -32,6 +32,9 @@ public final class ProjectDto implements Serializable { @JsonProperty("ontologies") private final List ontologies; + @JsonProperty("preferredMappingOntology") + private final String preferredMappingOntology; + @JsonProperty("created") private final ProvenanceDto created; @@ -41,12 +44,14 @@ public ProjectDto(@JsonProperty("id") String id, @JsonProperty("description") String description, @JsonProperty("datasources") List datasources, @JsonProperty("ontologies") List ontologies, + @JsonProperty("preferredMappingOntology") String preferredMappingOntology, @JsonProperty("created") ProvenanceDto created) { this.id = id; this.name = name; this.description = description; this.datasources = datasources; this.ontologies = ontologies; + this.preferredMappingOntology = preferredMappingOntology; this.created = created; } @@ -70,6 +75,10 @@ public List getOntologies() { return ontologies; } + public String getPreferredMappingOntology() { + return preferredMappingOntology; + } + public ProvenanceDto getCreated() { return created; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ReviewDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ReviewDto.java new file mode 100644 index 0000000..7535d31 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ReviewDto.java @@ -0,0 +1,39 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotNull; +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class ReviewDto implements Serializable { + + private static final long serialVersionUID = -3975761372901822735L; + + @NotNull + @JsonProperty("comment") + private final String comment; + + @NotNull + @JsonProperty("created") + private final ProvenanceDto created; + + @JsonCreator + public ReviewDto(@JsonProperty("comment") String comment, + @JsonProperty("created") ProvenanceDto created) { + this.comment = comment; + this.created = created; + } + + public String getComment() { + return comment; + } + + public ProvenanceDto getCreated() { + return created; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ConfigRegistry.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ConfigRegistry.java index 4842c90..5abbca7 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ConfigRegistry.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ConfigRegistry.java @@ -2,8 +2,18 @@ import uk.ac.ebi.spot.ontotools.curation.domain.ExternalServiceConfig; +/** + * Class in charge with keeping a registry of services awaiting for real-time configuration updates. + */ public interface ConfigRegistry { + + /** + * Accepts registration requests from services and adds them to the registry. + */ void registerListener(ConfigListener configListener); + /** + * Accepts new config values to be changed in real-time and pushes them downstream to the corresponding service. + */ void updateAliases(ExternalServiceConfig externalServiceConfig); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java index 54d57d2..24e9085 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java @@ -1,7 +1,23 @@ package uk.ac.ebi.spot.ontotools.curation.service; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; +import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.Source; + +import java.util.List; +import java.util.stream.Stream; public interface EntityService { + Entity createEntity(Entity entity); + + Stream retrieveEntitiesForSource(String sourceId); + + Entity updateMappingStatus(Entity entity, EntityStatus mappingStatus); + + Page retrieveEntitiesForSources(List sources, Pageable page); + + Entity retrieveEntity(String entityId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java index 3e072e6..257effe 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java @@ -1,8 +1,16 @@ package uk.ac.ebi.spot.ontotools.curation.service; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; + +import java.util.List; +import java.util.Map; public interface MappingService { - void runAutoMapping(String sourceId, Project project); + Mapping createMapping(Entity entity, OntologyTerm ontologyTerm, Provenance provenance); + + Map> retrieveMappingsForEntities(List entityIds); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java index 4c07a86..16ab4f8 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java @@ -1,13 +1,18 @@ package uk.ac.ebi.spot.ontotools.curation.service; import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.MappingSuggestion; import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import java.util.List; +import java.util.Map; public interface MappingSuggestionsService { - void createMappingSuggestion(Entity entity, OntologyTerm ontologyTerm); + MappingSuggestion createMappingSuggestion(Entity entity, OntologyTerm ontologyTerm, Provenance provenance); void deleteMappingSuggestionsExcluding(Entity entity, List ontologyTerms); + + Map> retrieveMappingSuggestionsForEntities(List entityIds); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakerService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakerService.java new file mode 100644 index 0000000..5638321 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakerService.java @@ -0,0 +1,8 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; + +public interface MatchmakerService { + + void runMatchmaking(String sourceId, Project project); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java index f8042e8..89fb5b2 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java @@ -1,12 +1,13 @@ package uk.ac.ebi.spot.ontotools.curation.service; import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; import java.util.List; import java.util.Map; public interface OntologyTermService { - Map getOntologyTermsById(List ontoTermIds); + OntologyTerm createTerm(String iri, Project project); - OntologyTerm createTerm(String iri); + Map retrieveTerms(List ontologyTermIds); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java index 5a8bb7b..00d2ccd 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java @@ -9,6 +9,8 @@ public interface UserService { User findRandomSuperUser(); + User retrieveRobotUser(); + void addProjectToUser(User user, Project project, ProjectRole role); void removeProjectFromUser(User user, String projectId); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java index 58c5120..0bf44e7 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java @@ -3,11 +3,21 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.Source; +import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; import uk.ac.ebi.spot.ontotools.curation.repository.EntityRepository; import uk.ac.ebi.spot.ontotools.curation.service.EntityService; +import java.util.List; +import java.util.Optional; +import java.util.stream.Collectors; +import java.util.stream.Stream; + @Service public class EntityServiceImpl implements EntityService { @@ -23,4 +33,45 @@ public Entity createEntity(Entity entity) { log.info("[{}] Entity created: {}", created.getSourceId(), created.getId()); return created; } + + @Override + public Stream retrieveEntitiesForSource(String sourceId) { + return entityRepository.readBySourceId(sourceId); + } + + @Override + public Entity updateMappingStatus(Entity entity, EntityStatus mappingStatus) { + log.info("Updating mappping status [{}]: {}", entity.getName(), mappingStatus); + Optional entityOptional = entityRepository.findById(entity.getId()); + if (!entityOptional.isPresent()) { + log.error("Unable to find entity: {}", entity.getName()); + return null; + } + + Entity existing = entityOptional.get(); + existing.setMappingStatus(mappingStatus); + existing = entityRepository.save(existing); + return existing; + } + + @Override + public Page retrieveEntitiesForSources(List sources, Pageable page) { + log.info("Retrieving entities for {} sources: {} | {}", sources.size(), page.getPageNumber(), page.getPageSize()); + List sourceIds = sources.stream().map(Source::getId).collect(Collectors.toList()); + Page entityPage = entityRepository.findBySourceIdIn(sourceIds, page); + log.info("Found {} entities.", entityPage.getContent().size()); + return entityPage; + } + + @Override + public Entity retrieveEntity(String entityId) { + log.info("Retrieving entity: {}", entityId); + Optional entityOptional = entityRepository.findById(entityId); + if (!entityOptional.isPresent()) { + log.error("Unable to find entity: {}", entityId); + throw new EntityNotFoundException("Unable to find entity: " + entityId); + } + return entityOptional.get(); + } + } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java index 5e19db6..62e69d0 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java @@ -3,23 +3,18 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; -import uk.ac.ebi.spot.ontotools.curation.repository.EntityRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.repository.MappingRepository; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo.OXOMappingResponseDto; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.zooma.ZoomaResponseDto; -import uk.ac.ebi.spot.ontotools.curation.service.*; -import uk.ac.ebi.spot.ontotools.curation.util.CurationUtil; +import uk.ac.ebi.spot.ontotools.curation.service.MappingService; +import uk.ac.ebi.spot.ontotools.curation.service.OntologyTermService; import java.util.*; -import java.util.stream.Stream; - -import static uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants.ZOOMA_CONFIDENCE_HIGH; +import java.util.stream.Collectors; @Service public class MappingServiceImpl implements MappingService { @@ -29,122 +24,41 @@ public class MappingServiceImpl implements MappingService { @Autowired private MappingRepository mappingRepository; - @Autowired - private MappingSuggestionsService mappingSuggestionsService; - - @Autowired - private EntityRepository entityRepository; - - @Autowired - private ZoomaService zoomaService; - @Autowired private OntologyTermService ontologyTermService; - @Autowired - private OLSService olsService; - - @Autowired - private OXOService oxoService; - @Override - @Async - public void runAutoMapping(String sourceId, Project project) { - log.info("Running auto-mapping for source: {}", sourceId); - Stream entityStream = entityRepository.readBySourceId(sourceId); - entityStream.forEach(entity -> this.autoMap(entity, project)); - entityStream.close(); - } - - private void autoMap(Entity entity, Project project) { - /** - * Retrieve annotations from Zooma from datasources stored in the project - */ - List zoomaResults = zoomaService.annotate(entity.getName(), project.getDatasources(), null); - - /** - * Retrieve annotations from Zooma from ontologies stored in the project - */ - zoomaResults.addAll(zoomaService.annotate(entity.getName(), null, project.getOntologies())); - - List highConfidenceIRIs = new ArrayList<>(); - Set finalIRIs = new HashSet<>(); - for (ZoomaResponseDto zoomaResponseDto : zoomaResults) { - if (zoomaResponseDto.getSemanticTags().size() > 1) { - log.warn("Found suggestion with combined terms: {} | {}", entity, zoomaResponseDto.getSemanticTags()); - continue; - } - - String suggestedTermIRI = zoomaResponseDto.getSemanticTags().get(0); - if (zoomaResponseDto.getConfidence().equalsIgnoreCase(ZOOMA_CONFIDENCE_HIGH)) { - highConfidenceIRIs.add(suggestedTermIRI); - } - if (project.getOntologies() != null && project.getOntologies().contains(CurationUtil.ontoFromIRI(suggestedTermIRI))) { - finalIRIs.add(suggestedTermIRI); - } + public Mapping createMapping(Entity entity, OntologyTerm ontologyTerm, Provenance provenance) { + log.info("Creating mapping for entity [{}]: {}", entity.getName(), ontologyTerm.getCurie()); + Optional mappingOp = mappingRepository.findByEntityIdAndOntologyTermId(entity.getId(), ontologyTerm.getId()); + if (mappingOp.isPresent()) { + log.warn("Mapping for between entity [{}] and ontology term [{}] already exists: {}", entity.getName(), ontologyTerm.getCurie(), mappingOp.get().getId()); + return mappingOp.get(); } - List termsCreated = new ArrayList<>(); - for (String iri : finalIRIs) { - OntologyTerm ontologyTerm = ontologyTermService.createTerm(iri); - termsCreated.add(ontologyTerm); - mappingSuggestionsService.createMappingSuggestion(entity, ontologyTerm); - } - - termsCreated.addAll(findExactMapping(entity, termsCreated, highConfidenceIRIs, project)); - mappingSuggestionsService.deleteMappingSuggestionsExcluding(entity, termsCreated); + Mapping created = mappingRepository.insert(new Mapping(null, entity.getId(), ontologyTerm.getId(), false, new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), provenance, null)); + log.info("Mapping for between entity [{}] and ontology term [{}] created: {}", entity.getName(), ontologyTerm.getCurie(), created.getId()); + return created; } - private List findExactMapping(Entity entity, List termsCreated, List highConfidenceIRIs, Project project) { - List ontoSuggestions = new ArrayList<>(); - - for (OntologyTerm ontologyTerm : termsCreated) { - if (highConfidenceIRIs.contains(ontologyTerm.getIri())) { - this.createMapping(entity, ontologyTerm); - log.info("Found high confidence mapping for [{}] in: {}", entity.getName(), ontologyTerm.getIri()); - return ontoSuggestions; - } - } - - for (OntologyTerm ontologyTerm : termsCreated) { - if (entity.getName().equalsIgnoreCase(ontologyTerm.getLabel())) { - this.createMapping(entity, ontologyTerm); - log.info("Found exact text matching for [{}] in: {}", entity.getName(), ontologyTerm.getIri()); - return ontoSuggestions; - } - } - - for (String iri : highConfidenceIRIs) { - String ontoId = CurationUtil.ontoFromIRI(iri); - List olsTerms = olsService.retrieveTerms(ontoId, iri); - if (olsTerms.size() > 1) { - log.warn("Found {} OLS results. Using only the first one to map to: {}", olsTerms.size(), entity.getName()); - } - if (olsTerms.isEmpty()) { - log.warn("Found no OLS results. Cannot continue mapping for: {}", entity.getName()); + @Override + public Map> retrieveMappingsForEntities(List entityIds) { + log.info("Retrieving mappings for entities: {}", entityIds); + List mappings = mappingRepository.findByEntityIdIn(entityIds); + List ontologyTermIds = mappings.stream().map(Mapping::getOntologyTermId).collect(Collectors.toList()); + Map ontologyTermMap = ontologyTermService.retrieveTerms(ontologyTermIds); + log.info("Found {} mappings.", mappings.size()); + Map> result = new HashMap<>(); + for (Mapping mapping : mappings) { + if (!ontologyTermMap.containsKey(mapping.getOntologyTermId())) { + log.warn("Unable to find ontology term [{}] for mapping suggestion: {}", mapping.getOntologyTermId(), mapping.getId()); continue; } - - List oxoMappings = oxoService.findMapping(Arrays.asList(new String[]{olsTerms.get(0).getCurie()}), project.getOntologies()); - for (OXOMappingResponseDto oxoMappingResponseDto : oxoMappings) { - String targetOntoId = oxoMappingResponseDto.getTargetPrefix().toLowerCase(); - olsTerms = olsService.retrieveTerms(targetOntoId, oxoMappingResponseDto.getCurie()); - if (olsTerms.isEmpty()) { - continue; - } - String resultIri = olsTerms.get(0).getIri(); - OntologyTerm ontologyTerm = ontologyTermService.createTerm(resultIri); - ontoSuggestions.add(ontologyTerm); - mappingSuggestionsService.createMappingSuggestion(entity, ontologyTerm); - } + List list = result.containsKey(mapping.getEntityId()) ? result.get(mapping.getEntityId()) : new ArrayList<>(); + mapping.setOntologyTerm(ontologyTermMap.get(mapping.getOntologyTermId())); + list.add(mapping); + result.put(mapping.getEntityId(), list); } - - return ontoSuggestions; - } - - /** - * TODO: Implement - */ - private void createMapping(Entity entity, OntologyTerm ontologyTerm) { + return result; } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java index 1df3c79..3378b00 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java @@ -2,33 +2,73 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.MappingSuggestion; import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.repository.MappingSuggestionRepository; import uk.ac.ebi.spot.ontotools.curation.service.MappingSuggestionsService; +import uk.ac.ebi.spot.ontotools.curation.service.OntologyTermService; -import java.util.List; +import java.util.*; +import java.util.stream.Collectors; @Service public class MappingSuggestionsServiceImpl implements MappingSuggestionsService { private static final Logger log = LoggerFactory.getLogger(MappingSuggestionsService.class); + @Autowired + private MappingSuggestionRepository mappingSuggestionRepository; + + @Autowired + private OntologyTermService ontologyTermService; - /** - * TODO: Implement - */ @Override - public void createMappingSuggestion(Entity entity, OntologyTerm ontologyTerm) { + public MappingSuggestion createMappingSuggestion(Entity entity, OntologyTerm ontologyTerm, Provenance provenance) { + log.info("Creating mapping suggestion for entity [{}]: {}", entity.getName(), ontologyTerm.getCurie()); + Optional mappingSuggestionOp = mappingSuggestionRepository.findByEntityIdAndOntologyTermId(entity.getId(), ontologyTerm.getId()); + if (mappingSuggestionOp.isPresent()) { + log.warn("Mapping suggestion already exists: {}", mappingSuggestionOp.get().getId()); + return mappingSuggestionOp.get(); + } + + MappingSuggestion created = mappingSuggestionRepository.insert(new MappingSuggestion(null, entity.getId(), ontologyTerm.getId(), provenance, null)); + log.info("[{} | {}] Mapping suggestion created: {}", entity.getName(), ontologyTerm.getCurie(), created.getId()); + return created; } - /** - * TODO: Implement - */ @Override @Async public void deleteMappingSuggestionsExcluding(Entity entity, List ontologyTerms) { + log.info("Deleting [{}] old mapping suggestions for: {}", ontologyTerms.size(), entity.getName()); + List ontologyTermIds = ontologyTerms.stream().map(OntologyTerm::getId).collect(Collectors.toList()); + List toDelete = mappingSuggestionRepository.findByEntityIdAndOntologyTermIdNotIn(entity.getId(), ontologyTermIds); + log.info("[{}] Found {} mapping suggestions to delete.", entity.getName(), toDelete.size()); + mappingSuggestionRepository.deleteAll(toDelete); + } + @Override + public Map> retrieveMappingSuggestionsForEntities(List entityIds) { + log.info("Retrieving mapping suggestions for entities: {}", entityIds); + List mappingSuggestions = mappingSuggestionRepository.findByEntityIdIn(entityIds); + List ontologyTermIds = mappingSuggestions.stream().map(MappingSuggestion::getOntologyTermId).collect(Collectors.toList()); + Map ontologyTermMap = ontologyTermService.retrieveTerms(ontologyTermIds); + log.info("Found {} mapping suggestions.", mappingSuggestions.size()); + Map> result = new HashMap<>(); + for (MappingSuggestion mappingSuggestion : mappingSuggestions) { + if (!ontologyTermMap.containsKey(mappingSuggestion.getOntologyTermId())) { + log.warn("Unable to find ontology term [{}] for mapping suggestion: {}", mappingSuggestion.getOntologyTermId(), mappingSuggestion.getId()); + continue; + } + List list = result.containsKey(mappingSuggestion.getEntityId()) ? result.get(mappingSuggestion.getEntityId()) : new ArrayList<>(); + mappingSuggestion.setOntologyTerm(ontologyTermMap.get(mappingSuggestion.getOntologyTermId())); + list.add(mappingSuggestion); + result.put(mappingSuggestion.getEntityId(), list); + } + return result; } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java new file mode 100644 index 0000000..9d08508 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java @@ -0,0 +1,188 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import org.joda.time.DateTime; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.scheduling.annotation.Async; +import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; +import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo.OXOMappingResponseDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.zooma.ZoomaResponseDto; +import uk.ac.ebi.spot.ontotools.curation.service.*; +import uk.ac.ebi.spot.ontotools.curation.util.CurationUtil; + +import java.util.*; +import java.util.stream.Stream; + +import static uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants.ZOOMA_CONFIDENCE_HIGH; + +@Service +public class MatchmakerServiceImpl implements MatchmakerService { + + private static final Logger log = LoggerFactory.getLogger(MatchmakerService.class); + + @Autowired + private MappingSuggestionsService mappingSuggestionsService; + + @Autowired + private MappingService mappingService; + + @Autowired + private EntityService entityService; + + @Autowired + private ZoomaService zoomaService; + + @Autowired + private OntologyTermService ontologyTermService; + + @Autowired + private OLSService olsService; + + @Autowired + private OXOService oxoService; + + @Autowired + private UserService userService; + + @Override + @Async + public void runMatchmaking(String sourceId, Project project) { + log.info("Running auto-mapping for source: {}", sourceId); + User robotUser = userService.retrieveRobotUser(); + Stream entityStream = entityService.retrieveEntitiesForSource(sourceId); + entityStream.forEach(entity -> this.autoMap(entity, project, robotUser)); + entityStream.close(); + } + + private void autoMap(Entity entity, Project project, User user) { + /** + * Retrieve annotations from Zooma from datasources stored in the project + */ + List zoomaResults = zoomaService.annotate(entity.getName(), project.getDatasources(), null); + + /** + * Retrieve annotations from Zooma from ontologies stored in the project + */ + zoomaResults.addAll(zoomaService.annotate(entity.getName(), null, project.getOntologies())); + + List highConfidenceIRIs = new ArrayList<>(); + Set finalIRIs = new HashSet<>(); + for (ZoomaResponseDto zoomaResponseDto : zoomaResults) { + if (zoomaResponseDto.getSemanticTags().size() > 1) { + log.warn("Found suggestion with combined terms: {} | {}", entity, zoomaResponseDto.getSemanticTags()); + continue; + } + + String suggestedTermIRI = zoomaResponseDto.getSemanticTags().get(0); + /** + * Retain high confidence terms to attempt exact mapping. + */ + if (zoomaResponseDto.getConfidence().equalsIgnoreCase(ZOOMA_CONFIDENCE_HIGH)) { + highConfidenceIRIs.add(suggestedTermIRI); + } + + /** + * Retain only suggestions pertaining to the ontologies of interest (if these have been specified) + */ + if (project.getOntologies() != null) { + if (project.getOntologies().contains(CurationUtil.ontoFromIRI(suggestedTermIRI))) { + finalIRIs.add(suggestedTermIRI); + } + } else { + finalIRIs.add(suggestedTermIRI); + } + } + + Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); + List termsCreated = new ArrayList<>(); + for (String iri : finalIRIs) { + OntologyTerm ontologyTerm = ontologyTermService.createTerm(iri, project); + if (ontologyTerm != null) { + termsCreated.add(ontologyTerm); + mappingSuggestionsService.createMappingSuggestion(entity, ontologyTerm, provenance); + } + } + + if (!termsCreated.isEmpty()) { + entity = entityService.updateMappingStatus(entity, EntityStatus.SUGGESTIONS_PROVIDED); + if (entity == null) { + return; + } + } + + List newTerms = findExactMapping(entity, termsCreated, highConfidenceIRIs, project, provenance); + if (!newTerms.isEmpty() && termsCreated.isEmpty()) { + entity = entityService.updateMappingStatus(entity, EntityStatus.SUGGESTIONS_PROVIDED); + } + termsCreated.addAll(newTerms); + mappingSuggestionsService.deleteMappingSuggestionsExcluding(entity, termsCreated); + } + + private List findExactMapping(Entity entity, List termsCreated, List highConfidenceIRIs, Project project, Provenance provenance) { + List ontoSuggestions = new ArrayList<>(); + + if (!entity.getMappingStatus().equals(EntityStatus.UNMAPPED)) { + log.warn("Entity has an existing mapping."); + } + + for (OntologyTerm ontologyTerm : termsCreated) { + if (highConfidenceIRIs.contains(ontologyTerm.getIri())) { + mappingService.createMapping(entity, ontologyTerm, provenance); + entity = entityService.updateMappingStatus(entity, EntityStatus.AUTO_MAPPED); + log.info("Found high confidence mapping for [{}] in: {}", entity.getName(), ontologyTerm.getIri()); + return ontoSuggestions; + } + } + + for (OntologyTerm ontologyTerm : termsCreated) { + if (entity.getName().equalsIgnoreCase(ontologyTerm.getLabel())) { + mappingService.createMapping(entity, ontologyTerm, provenance); + entity = entityService.updateMappingStatus(entity, EntityStatus.AUTO_MAPPED); + log.info("Found exact text matching for [{}] in: {}", entity.getName(), ontologyTerm.getIri()); + return ontoSuggestions; + } + } + + for (String iri : highConfidenceIRIs) { + String ontoId = CurationUtil.ontoFromIRI(iri); + List olsTerms = olsService.retrieveTerms(ontoId, iri); + if (olsTerms.isEmpty()) { + log.warn("Found no OLS results. Cannot continue mapping for: {}", entity.getName()); + continue; + } + if (olsTerms.size() > 1) { + log.warn("Found {} OLS results. Using only the first one to map to: {}", olsTerms.size(), entity.getName()); + } + + /** + * TODO: Discuss why are so many calls to OLS required + */ + List oxoMappings = oxoService.findMapping(Arrays.asList(new String[]{olsTerms.get(0).getCurie()}), project.getOntologies()); + for (OXOMappingResponseDto oxoMappingResponseDto : oxoMappings) { + String targetOntoId = oxoMappingResponseDto.getTargetPrefix().toLowerCase(); + olsTerms = olsService.retrieveTerms(targetOntoId, oxoMappingResponseDto.getCurie()); + if (olsTerms.isEmpty()) { + continue; + } + String resultIri = olsTerms.get(0).getIri(); + OntologyTerm ontologyTerm = ontologyTermService.createTerm(resultIri, project); + if (ontologyTerm != null) { + ontoSuggestions.add(ontologyTerm); + mappingSuggestionsService.createMappingSuggestion(entity, ontologyTerm, provenance); + } + } + } + + return ontoSuggestions; + } + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java index f1a77c0..eaa8797 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java @@ -45,10 +45,18 @@ public class OLSServiceImpl implements OLSService, ConfigListener { @Autowired private ConfigRegistry configRegistry; + /** + * Map to keep alias correspondences to ensure namespace acceptance by the service. + * For example, Orphanet to ORDO (since sometimes data retrieved from OXO uses the Orphanet namespace) + */ private Map ontoAliases; @PostConstruct public void initialize() { + /** + * Register this service as a listener for real-time configuration updates. + * Retrieve config data from DB. + */ configRegistry.registerListener(this); this.ontoAliases = externalServiceConfigService.retrieveAliases(SERVICE_NAME); } @@ -85,8 +93,22 @@ public List retrieveTerms(String ontologyId, String identifierValue) return new ArrayList<>(); } + /** + * TODO: Implement + * Scheduled task to periodically go through all local terms with status CURRENT | AWAITING_IMPORT or NEEDS_IMPORT + * and repeat the process associated with checking the status - as per the initial term creation + *

+ * Why?? + */ + public void importOLS() { + + } + @Override public void updateAliases(List aliases) { + /** + * Call received in real-time from the ConfigRegistry to update aliases. + */ this.ontoAliases.putAll(CurationUtil.parseAliases(aliases)); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OXOServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OXOServiceImpl.java index bb88c47..c6b754c 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OXOServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OXOServiceImpl.java @@ -41,10 +41,18 @@ public class OXOServiceImpl implements OXOService, ConfigListener { @Autowired private ConfigRegistry configRegistry; + /** + * Map to keep alias correspondences to ensure namespace acceptance by the service. + * For example, ORDO to Orphanet (since OXO requires the Orphanet namespace) + */ private Map ontoAliases; @PostConstruct public void initialize() { + /** + * Register this service as a listener for real-time configuration updates. + * Retrieve config data from DB. + */ configRegistry.registerListener(this); this.ontoAliases = externalServiceConfigService.retrieveAliases(SERVICE_NAME); } @@ -52,7 +60,6 @@ public void initialize() { public List findMapping(List ids, List projectOntologies) { List ontologies = this.fixAliases(projectOntologies); log.info("Calling OXO: {} - {} | {}", ids, projectOntologies, ontologies); - log.info(" -- "); try { HttpEntity httpEntity = restInteractionConfig.httpEntity() .withJsonBody(new OXORequestDto(ids, ontologies, restInteractionConfig.getOxoMappingDistance())) @@ -85,7 +92,7 @@ private List fixAliases(List ontologies) { result.add(ontoAliases.get(ontology)); } } else { - result.add(ontoAliases.get(ontology)); + result.add(ontology); } } return result; @@ -93,6 +100,9 @@ private List fixAliases(List ontologies) { @Override public void updateAliases(List aliases) { + /** + * Call received in real-time from the ConfigRegistry to update aliases. + */ this.ontoAliases.putAll(CurationUtil.parseAliases(aliases)); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java index 17180db..d62fcbb 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java @@ -1,16 +1,21 @@ package uk.ac.ebi.spot.ontotools.curation.service.impl; +import org.apache.commons.codec.digest.DigestUtils; +import org.apache.commons.collections4.CollectionUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; import uk.ac.ebi.spot.ontotools.curation.repository.OntologyTermRepository; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; +import uk.ac.ebi.spot.ontotools.curation.service.OLSService; import uk.ac.ebi.spot.ontotools.curation.service.OntologyTermService; +import uk.ac.ebi.spot.ontotools.curation.util.CurationUtil; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import java.util.*; @Service public class OntologyTermServiceImpl implements OntologyTermService { @@ -20,7 +25,10 @@ public class OntologyTermServiceImpl implements OntologyTermService { @Autowired private OntologyTermRepository ontologyTermRepository; - @Override + @Autowired + private OLSService olsService; + + // @Override public Map getOntologyTermsById(List ontoTermIds) { log.info("Retrieving ontology terms for {} ids.", ontoTermIds.size()); Map mappingMap = new HashMap<>(); @@ -31,11 +39,79 @@ public Map getOntologyTermsById(List ontoTermIds) return mappingMap; } - /** - * TODO: Implement - */ @Override - public OntologyTerm createTerm(String iri) { - return null; + public OntologyTerm createTerm(String iri, Project project) { + log.info("Creating term: {}", iri); + Optional ontologyTermOp = ontologyTermRepository.findByIriHash(DigestUtils.sha256Hex(iri)); + if (ontologyTermOp.isPresent()) { + log.warn("Ontology term already exists: {} | {}", ontologyTermOp.get().getCurie(), ontologyTermOp.get().getLabel()); + return ontologyTermOp.get(); + } + + List preferredOntoResponse = olsService.retrieveTerms(project.getPreferredMappintOntology(), iri); + List parentOntoResponse = new ArrayList<>(); + String ontoId = CurationUtil.ontoFromIRI(iri); + String termStatus; + if (!ontoId.equalsIgnoreCase(project.getPreferredMappintOntology())) { + parentOntoResponse = olsService.retrieveTerms(project.getPreferredMappintOntology(), iri); + termStatus = parseStatus(preferredOntoResponse, parentOntoResponse, null); + } else { + termStatus = parseStatus(preferredOntoResponse, null, null); + } + + OntologyTerm ot; + if (termStatus.equalsIgnoreCase(TermStatus.DELETED.name())) { + /** + * TODO: Discuss + * + * Previous code: + * ot = new OntologyTerm(null, "Not found", iri, DigestUtils.sha256Hex(iri), "Not found", MappingStatus.DELETED.name(), null, null); + */ + log.warn("Found DELETED term: {}", iri); + return null; + } else { + if (termStatus.equalsIgnoreCase(TermStatus.CURRENT.name())) { + OLSTermDto olsTermDto = preferredOntoResponse.get(0); + ot = new OntologyTerm(null, olsTermDto.getCurie(), iri, + DigestUtils.sha256Hex(iri), olsTermDto.getLabel(), TermStatus.CURRENT.name(), null, null); + } else { + OLSTermDto olsTermDto = parentOntoResponse.get(0); + ot = new OntologyTerm(null, olsTermDto.getCurie(), iri, DigestUtils.sha256Hex(iri), olsTermDto.getLabel(), termStatus, null, null); + } + } + + ot = ontologyTermRepository.insert(ot); + log.info("Created ontology term [{} | {}]: {}", ot.getCurie(), ot.getLabel(), ot.getId()); + return ot; + } + + @Override + public Map retrieveTerms(List ontologyTermIds) { + log.info("Retrieving {} ontology terms.", ontologyTermIds.size()); + Map result = new HashMap<>(); + List ontologyTerms = ontologyTermRepository.findByIdIn(ontologyTermIds); + for (OntologyTerm ontologyTerm : ontologyTerms) { + result.put(ontologyTerm.getId(), ontologyTerm); + } + return result; + } + + private String parseStatus(List preferredOntoResponse, List parentOntoResponse, String previousState) { + if (CollectionUtils.isEmpty(preferredOntoResponse) && CollectionUtils.isEmpty(parentOntoResponse)) { + return TermStatus.DELETED.name(); + } + + if ((!CollectionUtils.isEmpty(preferredOntoResponse) && preferredOntoResponse.get(0).getObsolete()) || + (!CollectionUtils.isEmpty(parentOntoResponse) && parentOntoResponse.get(0).getObsolete())) { + return TermStatus.OBSOLETE.name(); + } + + if (!CollectionUtils.isEmpty(preferredOntoResponse)) { + return TermStatus.CURRENT.name(); + } + if (previousState == null) { + return TermStatus.NEEDS_IMPORT.name(); + } + return previousState; } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java index 2914d72..2e40dc9 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java @@ -11,7 +11,9 @@ import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; import uk.ac.ebi.spot.ontotools.curation.repository.UserRepository; import uk.ac.ebi.spot.ontotools.curation.service.UserService; +import uk.ac.ebi.spot.ontotools.curation.system.SystemConfigProperties; +import javax.annotation.PostConstruct; import java.util.ArrayList; import java.util.List; import java.util.Optional; @@ -24,6 +26,21 @@ public class UserServiceImpl implements UserService { @Autowired private UserRepository userRepository; + @Autowired + private SystemConfigProperties systemConfigProperties; + + private User robotUser; + + @PostConstruct + public void initialize() { + this.robotUser = new User(null, "Robot User", systemConfigProperties.getRobotUser(), new ArrayList<>(), true); + } + + @Override + public User retrieveRobotUser() { + return robotUser; + } + @Override public User findByEmail(String email) { log.info("Retrieving user: {}", email); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ZoomaServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ZoomaServiceImpl.java index 1468a27..a4397c7 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ZoomaServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ZoomaServiceImpl.java @@ -65,4 +65,15 @@ public List annotate(String entityValue, List datasour return new ArrayList<>(); } + + /** + * TODO: Implement + * Scheduled task to periodically go through all entties and re-attempt mapping + * + * Whyy?? + */ + public void importZooma() { + + } + } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/SystemConfigProperties.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/SystemConfigProperties.java index 6619c85..e0e5ccc 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/SystemConfigProperties.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/SystemConfigProperties.java @@ -21,6 +21,9 @@ public class SystemConfigProperties { @Value("${ontotools-curation.auth.cert:#{NULL}}") private String certPath; + @Value("${ontotools-curation.admin.robot-user}") + private String robotUser; + public String getServerName() { return serverName; } @@ -48,4 +51,8 @@ public boolean isAuthEnabled() { public String getCertPath() { return certPath; } + + public String getRobotUser() { + return robotUser; + } } diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 48063f7..544bfce 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -11,6 +11,8 @@ ontotools-curation: auth: enabled: true cert: aap.der + admin: + robot-user: ontotools-curator@ebi.ac.uk ontotools: zooma: diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java new file mode 100644 index 0000000..b78c860 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java @@ -0,0 +1,4 @@ +package uk.ac.ebi.spot.ontotools.curation; + +public class EntityControllerTest { +} diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index b2bb56e..939641e 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -73,6 +73,8 @@ public void setup() throws Exception { mapper = new ObjectMapper(); mockMvc = MockMvcBuilders.webAppContextSetup(webApplicationContext).build(); + userRepository.insert(new User(null, "Robot User", "ontotools-curator@ebi.ac.uk", new ArrayList<>(), true)); + user1 = userRepository.insert(new User(null, "Test User 1", "test1@test.com", new ArrayList<>(), false)); authTokenRepository.insert(new AuthToken(null, "token1", "test1@test.com")); @@ -85,7 +87,7 @@ public void setup() throws Exception { protected ProjectDto createProject(String name, String token) throws Exception { String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS; - ProjectCreationDto projectCreationDto = new ProjectCreationDto(name, "Description", null, null); + ProjectCreationDto projectCreationDto = new ProjectCreationDto(name, "Description", null, null, "EFO"); String response = mockMvc.perform(post(endpoint) .contentType(MediaType.APPLICATION_JSON) @@ -104,6 +106,7 @@ protected ProjectDto createProject(String name, String token) throws Exception { assertNotNull(actual.getOntologies()); assertTrue(actual.getDatasources().isEmpty()); assertTrue(actual.getOntologies().isEmpty()); + assertEquals("EFO", actual.getPreferredMappingOntology()); return actual; } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OXOServiceTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OXOServiceTest.java index eb1074f..25a2303 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OXOServiceTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OXOServiceTest.java @@ -2,10 +2,11 @@ import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; +import uk.ac.ebi.spot.ontotools.curation.domain.ExternalServiceConfig; import uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo.OXOMappingResponseDto; +import uk.ac.ebi.spot.ontotools.curation.service.ConfigRegistry; import uk.ac.ebi.spot.ontotools.curation.service.OXOService; -import java.util.ArrayList; import java.util.Arrays; import java.util.List; import java.util.stream.Collectors; @@ -18,11 +19,14 @@ public class OXOServiceTest extends IntegrationTest { @Autowired private OXOService oxoService; + @Autowired + private ConfigRegistry configRegistry; + @Test public void shouldRetrieveTerms() { String termId = "http://www.orpha.net/ORDO/Orphanet_15"; List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "Orphanet"}); - + configRegistry.updateAliases(new ExternalServiceConfig(null, "OXO", Arrays.asList(new String[]{"ordo::Orphanet"}))); List terms = oxoService.findMapping(Arrays.asList(new String[]{termId}), ontologies); assertEquals(3, terms.size()); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java index 12bcad7..f2b2a3e 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java @@ -83,6 +83,7 @@ public void shouldUpdateProject() throws Exception { projectDto.getDescription(), Arrays.asList(new String[]{"gwas"}), Arrays.asList(new String[]{"ordo"}), + projectDto.getPreferredMappingOntology(), projectDto.getCreated()); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); @@ -114,6 +115,7 @@ public void shouldNotUpdateProject() throws Exception { projectDto.getDescription(), Arrays.asList(new String[]{"gwas"}), Arrays.asList(new String[]{"ordo"}), + projectDto.getPreferredMappingOntology(), projectDto.getCreated()); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); From 8f806678647d23f569a23ec2eb8bf66159412f91 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Wed, 10 Feb 2021 20:57:16 +0800 Subject: [PATCH 07/72] Added tests for MatchMaking and EntityController. --- .../spot/ontotools/curation/Application.java | 8 +- .../curation/config/WebMvcConfig.java | 8 -- .../rest/controller/EntityController.java | 6 +- .../curation/rest/dto/RestResponsePage.java | 45 ++++++ .../curation/rest/dto/ols/OLSTermDto.java | 13 +- .../curation/service/OntologyTermService.java | 2 + .../service/impl/MatchmakerServiceImpl.java | 5 +- .../service/impl/OntologyTermServiceImpl.java | 19 +-- .../ontotools/curation/util/CurationUtil.java | 8 ++ .../curation/EntityControllerTest.java | 129 +++++++++++++++++- .../ontotools/curation/IntegrationTest.java | 86 ++++++++++-- .../ontotools/curation/MatchMakingTest.java | 118 ++++++++++++++++ .../ontotools/curation/OLSServiceTest.java | 2 +- .../curation/ProjectsControllerTest.java | 14 +- .../curation/SourcesControllerTest.java | 35 +---- 15 files changed, 406 insertions(+), 92 deletions(-) create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/RestResponsePage.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/Application.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/Application.java index 62a91fa..9feff60 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/Application.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/Application.java @@ -6,8 +6,6 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; -import org.springframework.boot.autoconfigure.data.mongo.MongoDataAutoConfiguration; -import org.springframework.boot.autoconfigure.mongo.MongoAutoConfiguration; import org.springframework.scheduling.annotation.EnableAsync; import org.springframework.scheduling.annotation.EnableScheduling; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @@ -19,11 +17,7 @@ import java.net.InetAddress; import java.net.UnknownHostException; -@SpringBootApplication(scanBasePackages = "uk.ac.ebi.spot.ontotools" -// exclude = { -// MongoDataAutoConfiguration.class -// } - ) +@SpringBootApplication(scanBasePackages = "uk.ac.ebi.spot.ontotools") @EnableScheduling @EnableAsync public class Application implements WebMvcConfigurer { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/WebMvcConfig.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/WebMvcConfig.java index 07122ee..1864054 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/WebMvcConfig.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/WebMvcConfig.java @@ -3,15 +3,12 @@ import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.core.annotation.Order; -import org.springframework.core.task.SimpleAsyncTaskExecutor; import org.springframework.web.multipart.commons.CommonsMultipartResolver; import org.springframework.web.multipart.support.MultipartFilter; import org.springframework.web.servlet.config.annotation.CorsRegistry; import org.springframework.web.servlet.config.annotation.InterceptorRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; -import java.util.concurrent.Executor; - public class WebMvcConfig { @@ -28,11 +25,6 @@ public void addInterceptors(InterceptorRegistry registry) { registry.addInterceptor(authInterceptor()); } - @Bean - public Executor taskExecutor() { - return new SimpleAsyncTaskExecutor(); - } - @Bean @Order(0) public MultipartFilter multipartFilter() { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java index 9fcb0fe..f251357 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java @@ -4,7 +4,6 @@ import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.domain.Page; -import org.springframework.data.domain.PageImpl; import org.springframework.data.domain.Pageable; import org.springframework.data.web.PageableDefault; import org.springframework.http.HttpStatus; @@ -19,6 +18,7 @@ import uk.ac.ebi.spot.ontotools.curation.rest.assembler.EntityDtoAssembler; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.SourceDtoAssembler; import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.RestResponsePage; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; import uk.ac.ebi.spot.ontotools.curation.service.*; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; @@ -58,7 +58,7 @@ public class EntityController { @GetMapping(value = "/{projectId}" + CurationConstants.API_ENTITIES, produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.OK) - public Page getEntities(@PathVariable String projectId, @PageableDefault(size = 20, page = 0) Pageable pageable, HttpServletRequest request) { + public RestResponsePage getEntities(@PathVariable String projectId, @PageableDefault(size = 20, page = 0) Pageable pageable, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to retrieve entities: {}", user.getEmail(), projectId); projectService.verifyAccess(projectId, user); @@ -76,7 +76,7 @@ public Page getEntities(@PathVariable String projectId, @PageableDefa for (Entity entity : entities.getContent()) { entityDtos.add(EntityDtoAssembler.assemble(entity, sourceMap.get(entity.getSourceId()), mappings.get(entity.getId()), mappingSuggestions.get(entity.getId()))); } - return new PageImpl<>(entityDtos, pageable, entities.getTotalElements()); + return new RestResponsePage<>(entityDtos, pageable, entities.getTotalElements()); } /** diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/RestResponsePage.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/RestResponsePage.java new file mode 100644 index 0000000..bbe8cfa --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/RestResponsePage.java @@ -0,0 +1,45 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.databind.JsonNode; +import org.springframework.data.domain.PageImpl; +import org.springframework.data.domain.PageRequest; +import org.springframework.data.domain.Pageable; + +import java.util.ArrayList; +import java.util.List; + +@JsonIgnoreProperties(ignoreUnknown = true) +public class RestResponsePage extends PageImpl { + + private static final long serialVersionUID = 3248189030448292002L; + + @JsonCreator(mode = JsonCreator.Mode.PROPERTIES) + public RestResponsePage(@JsonProperty("content") List content, + @JsonProperty("number") int number, + @JsonProperty("size") int size, + @JsonProperty("totalElements") Long totalElements, + @JsonProperty("pageable") JsonNode pageable, + @JsonProperty("last") boolean last, + @JsonProperty("totalPages") int totalPages, + @JsonProperty("sort") JsonNode sort, + @JsonProperty("first") boolean first, + @JsonProperty("numberOfElements") int numberOfElements) { + super(content, PageRequest.of(number, size), totalElements); + } + + public RestResponsePage(List content, Pageable pageable, long total) { + super(content, pageable, total); + } + + public RestResponsePage(List content) { + super(content); + } + + public RestResponsePage() { + super(new ArrayList()); + } + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSTermDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSTermDto.java index 9be4c98..5952fc1 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSTermDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSTermDto.java @@ -18,11 +18,8 @@ public final class OLSTermDto implements Serializable { @JsonProperty("iri") private final String iri; - @JsonProperty("curie") - private final String curie; - @JsonProperty("obo_id") - private final String oboId; + private final String curie; @JsonProperty("label") private final String label; @@ -32,13 +29,11 @@ public final class OLSTermDto implements Serializable { @JsonCreator public OLSTermDto(@JsonProperty("iri") String iri, - @JsonProperty("curie") String curie, - @JsonProperty("obo_id") String oboId, + @JsonProperty("obo_id") String curie, @JsonProperty("label") String label, @JsonProperty("is_obsolete") Boolean obsolete) { this.iri = iri; this.curie = curie; - this.oboId = oboId; this.label = label; this.obsolete = obsolete; } @@ -51,10 +46,6 @@ public String getCurie() { return curie; } - public String getOboId() { - return oboId; - } - public String getLabel() { return label; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java index 89fb5b2..e3fe5d6 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java @@ -10,4 +10,6 @@ public interface OntologyTermService { OntologyTerm createTerm(String iri, Project project); Map retrieveTerms(List ontologyTermIds); + + List retrieveAllTerms(); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java index 9d08508..369c976 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java @@ -7,7 +7,6 @@ import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; -import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; import uk.ac.ebi.spot.ontotools.curation.domain.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; @@ -58,6 +57,8 @@ public class MatchmakerServiceImpl implements MatchmakerService { public void runMatchmaking(String sourceId, Project project) { log.info("Running auto-mapping for source: {}", sourceId); User robotUser = userService.retrieveRobotUser(); + project.setOntologies(CurationUtil.toLowerCase(project.getOntologies())); + project.setPreferredMappintOntology(project.getPreferredMappintOntology().toLowerCase()); Stream entityStream = entityService.retrieveEntitiesForSource(sourceId); entityStream.forEach(entity -> this.autoMap(entity, project, robotUser)); entityStream.close(); @@ -94,7 +95,7 @@ private void autoMap(Entity entity, Project project, User user) { * Retain only suggestions pertaining to the ontologies of interest (if these have been specified) */ if (project.getOntologies() != null) { - if (project.getOntologies().contains(CurationUtil.ontoFromIRI(suggestedTermIRI))) { + if (project.getOntologies().contains(CurationUtil.ontoFromIRI(suggestedTermIRI).toLowerCase())) { finalIRIs.add(suggestedTermIRI); } } else { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java index d62fcbb..5142c1c 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java @@ -28,17 +28,6 @@ public class OntologyTermServiceImpl implements OntologyTermService { @Autowired private OLSService olsService; - // @Override - public Map getOntologyTermsById(List ontoTermIds) { - log.info("Retrieving ontology terms for {} ids.", ontoTermIds.size()); - Map mappingMap = new HashMap<>(); - List ontologyTerms = ontologyTermRepository.findByIdIn(ontoTermIds); - for (OntologyTerm ontologyTerm : ontologyTerms) { - mappingMap.put(ontologyTerm.getId(), ontologyTerm); - } - return mappingMap; - } - @Override public OntologyTerm createTerm(String iri, Project project) { log.info("Creating term: {}", iri); @@ -53,7 +42,7 @@ public OntologyTerm createTerm(String iri, Project project) { String ontoId = CurationUtil.ontoFromIRI(iri); String termStatus; if (!ontoId.equalsIgnoreCase(project.getPreferredMappintOntology())) { - parentOntoResponse = olsService.retrieveTerms(project.getPreferredMappintOntology(), iri); + parentOntoResponse = olsService.retrieveTerms(ontoId, iri); termStatus = parseStatus(preferredOntoResponse, parentOntoResponse, null); } else { termStatus = parseStatus(preferredOntoResponse, null, null); @@ -96,6 +85,12 @@ public Map retrieveTerms(List ontologyTermIds) { return result; } + @Override + public List retrieveAllTerms() { + log.info("Retrieving all ontology terms."); + return ontologyTermRepository.findAll(); + } + private String parseStatus(List preferredOntoResponse, List parentOntoResponse, String previousState) { if (CollectionUtils.isEmpty(preferredOntoResponse) && CollectionUtils.isEmpty(parentOntoResponse)) { return TermStatus.DELETED.name(); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java index a1ec46f..f029499 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java @@ -4,9 +4,17 @@ import java.util.HashMap; import java.util.List; import java.util.Map; +import java.util.stream.Collectors; public class CurationUtil { + public static List toLowerCase(List list) { + if (list == null) { + return null; + } + return list.stream().map(String::toLowerCase).collect(Collectors.toList()); + } + public static List sToList(String s) { List list = new ArrayList<>(); if (s == null) { diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java index b78c860..aac2ee6 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java @@ -1,4 +1,131 @@ package uk.ac.ebi.spot.ontotools.curation; -public class EntityControllerTest { +import com.fasterxml.jackson.core.type.TypeReference; +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.MediaType; +import org.springframework.test.context.ContextConfiguration; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; +import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.*; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; +import uk.ac.ebi.spot.ontotools.curation.service.UserService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; + +import java.util.Arrays; +import java.util.List; + +import static org.junit.Assert.assertEquals; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; + +@ContextConfiguration(classes = {IntegrationTest.MockTaskExecutorConfig.class}) +public class EntityControllerTest extends IntegrationTest { + + @Autowired + private UserService userService; + + @Autowired + private ProjectService projectService; + + private Project project; + + private SourceDto sourceDto; + + @Override + public void setup() throws Exception { + super.setup(); + List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); + List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); + ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo"); + user1 = userService.findByEmail(user1.getEmail()); + project = projectService.retrieveProject(projectDto.getId(), user1); + sourceDto = super.createSource(project.getId()); + + super.createEntityTestData(sourceDto.getId(), user1); + } + + /** + * GET /v1/projects/{projectId}/entities + */ + @Test + public void shouldGetEntities() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_ENTITIES; + String response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + RestResponsePage entitiesPage = mapper.readValue(response, new TypeReference>() { + }); + assertEquals(1, entitiesPage.getTotalElements()); + + EntityDto actual = entitiesPage.getContent().get(0); + assertEquals("Achondroplasia", actual.getName()); + assertEquals(EntityStatus.AUTO_MAPPED.name(), actual.getMappingStatus()); + + assertEquals(1, actual.getMappings().size()); + assertEquals("Orphanet:15", actual.getMappings().get(0).getOntologyTerm().getCurie()); + assertEquals(MappingStatus.AWAITING_REVIEW.name(), actual.getMappings().get(0).getStatus()); + + assertEquals(2, actual.getMappingSuggestions().size()); + int foundCuries = 0; + for (MappingSuggestionDto mappingSuggestion : actual.getMappingSuggestions()) { + if (mappingSuggestion.getOntologyTerm().getCurie().equalsIgnoreCase("Orphanet:15")) { + foundCuries++; + } + if (mappingSuggestion.getOntologyTerm().getCurie().equalsIgnoreCase("MONDO:0007037")) { + foundCuries++; + } + } + + assertEquals(2, foundCuries); + assertEquals(sourceDto.getId(), actual.getSource().getId()); + } + + /** + * GET /v1/projects/{projectId}/entities/{entityId} + */ + @Test + public void shouldGetEntity() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_ENTITIES + "/" + entity.getId(); + String response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + EntityDto actual = mapper.readValue(response, new TypeReference() { + }); + + assertEquals("Achondroplasia", actual.getName()); + assertEquals(EntityStatus.AUTO_MAPPED.name(), actual.getMappingStatus()); + + assertEquals(1, actual.getMappings().size()); + assertEquals("Orphanet:15", actual.getMappings().get(0).getOntologyTerm().getCurie()); + assertEquals(MappingStatus.AWAITING_REVIEW.name(), actual.getMappings().get(0).getStatus()); + + assertEquals(2, actual.getMappingSuggestions().size()); + int foundCuries = 0; + for (MappingSuggestionDto mappingSuggestion : actual.getMappingSuggestions()) { + if (mappingSuggestion.getOntologyTerm().getCurie().equalsIgnoreCase("Orphanet:15")) { + foundCuries++; + } + if (mappingSuggestion.getOntologyTerm().getCurie().equalsIgnoreCase("MONDO:0007037")) { + foundCuries++; + } + } + + assertEquals(2, foundCuries); + assertEquals(sourceDto.getId(), actual.getSource().getId()); + } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 939641e..6fefe2d 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -2,6 +2,8 @@ import com.fasterxml.jackson.core.type.TypeReference; import com.fasterxml.jackson.databind.ObjectMapper; +import org.apache.commons.codec.digest.DigestUtils; +import org.joda.time.DateTime; import org.junit.Before; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; @@ -17,17 +19,19 @@ import org.springframework.test.web.servlet.MockMvc; import org.springframework.test.web.servlet.setup.MockMvcBuilders; import org.springframework.web.context.WebApplicationContext; -import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; -import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.*; +import uk.ac.ebi.spot.ontotools.curation.domain.*; import uk.ac.ebi.spot.ontotools.curation.domain.auth.AuthToken; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; -import uk.ac.ebi.spot.ontotools.curation.repository.AuthTokenRepository; -import uk.ac.ebi.spot.ontotools.curation.repository.UserRepository; +import uk.ac.ebi.spot.ontotools.curation.repository.*; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectCreationDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceCreationDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; import java.util.ArrayList; +import java.util.List; import static org.junit.Assert.*; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; @@ -59,6 +63,18 @@ public TaskExecutor taskExecutor() { @Autowired private AuthTokenRepository authTokenRepository; + @Autowired + private OntologyTermRepository ontologyTermRepository; + + @Autowired + private MappingSuggestionRepository mappingSuggestionRepository; + + @Autowired + private MappingRepository mappingRepository; + + @Autowired + private EntityRepository entityRepository; + protected MockMvc mockMvc; protected ObjectMapper mapper; @@ -67,6 +83,8 @@ public TaskExecutor taskExecutor() { protected User user2; + protected Entity entity; + @Before public void setup() throws Exception { mongoTemplate.getDb().drop(); @@ -85,9 +103,11 @@ public void setup() throws Exception { authTokenRepository.insert(new AuthToken(null, "supertoken", "super@test.com")); } - protected ProjectDto createProject(String name, String token) throws Exception { + protected ProjectDto createProject(String name, String token, + List datasources, List ontologies, + String preferredMappingOntology) throws Exception { String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS; - ProjectCreationDto projectCreationDto = new ProjectCreationDto(name, "Description", null, null, "EFO"); + ProjectCreationDto projectCreationDto = new ProjectCreationDto(name, "Description", datasources, ontologies, preferredMappingOntology); String response = mockMvc.perform(post(endpoint) .contentType(MediaType.APPLICATION_JSON) @@ -104,10 +124,58 @@ protected ProjectDto createProject(String name, String token) throws Exception { assertEquals(projectCreationDto.getDescription(), actual.getDescription()); assertNotNull(actual.getDatasources()); assertNotNull(actual.getOntologies()); - assertTrue(actual.getDatasources().isEmpty()); - assertTrue(actual.getOntologies().isEmpty()); - assertEquals("EFO", actual.getPreferredMappingOntology()); + if (datasources == null) { + assertTrue(actual.getDatasources().isEmpty()); + } else { + assertEquals(datasources.size(), actual.getDatasources().size()); + } + if (ontologies == null) { + assertTrue(actual.getOntologies().isEmpty()); + } else { + assertEquals(ontologies.size(), actual.getOntologies().size()); + } + if (preferredMappingOntology != null) { + assertEquals(preferredMappingOntology, actual.getPreferredMappingOntology()); + } + return actual; + } + + protected SourceDto createSource(String projectId) throws Exception { + SourceCreationDto sourceCreationDto = new SourceCreationDto("Source name", + "Description", + null, + SourceType.LOCAL.name()); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectId + CurationConstants.API_SOURCES; + + String response = mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(sourceCreationDto)) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isCreated()) + .andReturn() + .getResponse() + .getContentAsString(); + + SourceDto actual = mapper.readValue(response, new TypeReference() { + }); + assertEquals(sourceCreationDto.getName(), actual.getName()); + assertEquals(sourceCreationDto.getDescription(), actual.getDescription()); + assertEquals(sourceCreationDto.getType(), actual.getType()); return actual; } + protected void createEntityTestData(String sourceId, User user) { + Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); + entity = entityRepository.insert(new Entity(null, "Achondroplasia", sourceId, provenance, EntityStatus.AUTO_MAPPED)); + + OntologyTerm orphaTerm = ontologyTermRepository.insert(new OntologyTerm(null, "Orphanet:15", "http://www.orpha.net/ORDO/Orphanet_15", + DigestUtils.sha256Hex("http://www.orpha.net/ORDO/Orphanet_15"), "Achondroplasia", TermStatus.CURRENT.name(), null, null)); + + OntologyTerm mondoTerm = ontologyTermRepository.insert(new OntologyTerm(null, "MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", + DigestUtils.sha256Hex("http://purl.obolibrary.org/obo/MONDO_0007037"), "Achondroplasia", TermStatus.NEEDS_IMPORT.name(), null, null)); + + mappingSuggestionRepository.insert(new MappingSuggestion(null, entity.getId(), orphaTerm.getId(), provenance, null)); + mappingSuggestionRepository.insert(new MappingSuggestion(null, entity.getId(), mondoTerm.getId(), provenance, null)); + mappingRepository.insert(new Mapping(null, entity.getId(), orphaTerm.getId(), false, new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), provenance, null)); + } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java new file mode 100644 index 0000000..30e3023 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java @@ -0,0 +1,118 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import org.joda.time.DateTime; +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.test.context.ContextConfiguration; +import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; +import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; +import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.*; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.repository.ExternalServiceConfigRepository; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.service.*; + +import java.util.Arrays; +import java.util.HashMap; +import java.util.List; +import java.util.Map; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; + +@ContextConfiguration(classes = {IntegrationTest.MockTaskExecutorConfig.class}) +public class MatchMakingTest extends IntegrationTest { + + @Autowired + private ExternalServiceConfigRepository externalServiceConfigRepository; + + @Autowired + private EntityService entityService; + + @Autowired + private ProjectService projectService; + + @Autowired + private UserService userService; + + @Autowired + private MatchmakerService matchmakerService; + + @Autowired + private MappingSuggestionsService mappingSuggestionsService; + + @Autowired + private MappingService mappingService; + + @Autowired + private OntologyTermService ontologyTermService; + + private Project project; + + private SourceDto sourceDto; + + private Entity entity; + + @Override + public void setup() throws Exception { + super.setup(); + externalServiceConfigRepository.insert(new ExternalServiceConfig(null, "OLS", Arrays.asList(new String[]{"orphanet::ordo"}))); + externalServiceConfigRepository.insert(new ExternalServiceConfig(null, "OXO", Arrays.asList(new String[]{"ordo::orphanet"}))); + + List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); + List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); + + ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo"); + user1 = userService.findByEmail(user1.getEmail()); + project = projectService.retrieveProject(projectDto.getId(), user1); + sourceDto = super.createSource(project.getId()); + Provenance provenance = new Provenance(user1.getName(), user1.getEmail(), DateTime.now()); + + /** + * Other examples: + * - Hemochromatosis type 1 + * - Retinal dystrophy + */ + entity = entityService.createEntity(new Entity(null, "Achondroplasia", sourceDto.getId(), provenance, EntityStatus.UNMAPPED)); + } + + @Test + public void runMatchmakingTest() { + matchmakerService.runMatchmaking(sourceDto.getId(), project); + Entity updated = entityService.retrieveEntity(entity.getId()); + assertEquals(EntityStatus.AUTO_MAPPED, updated.getMappingStatus()); + + List ontologyTerms = ontologyTermService.retrieveAllTerms(); + Map ontoMap = new HashMap<>(); + for (OntologyTerm ontologyTerm : ontologyTerms) { + ontoMap.put(ontologyTerm.getId(), ontologyTerm); + if (ontologyTerm.getCurie().equalsIgnoreCase("Orphanet:15")) { + assertEquals(TermStatus.CURRENT.name(), ontologyTerm.getStatus()); + } + if (ontologyTerm.getCurie().equalsIgnoreCase("MONDO:0007037")) { + assertEquals(TermStatus.NEEDS_IMPORT.name(), ontologyTerm.getStatus()); + } + } + + Map> mappingSuggestionMap = mappingSuggestionsService.retrieveMappingSuggestionsForEntities(Arrays.asList(new String[]{entity.getId()})); + assertEquals(1, mappingSuggestionMap.size()); + List mappingSuggestions = mappingSuggestionMap.get(entity.getId()); + assertEquals(2, mappingSuggestions.size()); + + for (MappingSuggestion mappingSuggestion : mappingSuggestions) { + assertTrue(ontoMap.containsKey(mappingSuggestion.getOntologyTermId())); + } + + Map> mappingMap = mappingService.retrieveMappingsForEntities(Arrays.asList(new String[]{entity.getId()})); + assertEquals(1, mappingMap.size()); + List mappings = mappingMap.get(entity.getId()); + assertEquals(1, mappings.size()); + + for (Mapping mapping : mappings) { + assertTrue(ontoMap.containsKey(mapping.getOntologyTermId())); + assertEquals(MappingStatus.AWAITING_REVIEW.name(), mapping.getStatus()); + } + } +} diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OLSServiceTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OLSServiceTest.java index a5dd904..3021ca3 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OLSServiceTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OLSServiceTest.java @@ -24,7 +24,7 @@ public void shouldRetrieveTerms() { assertEquals(1, terms.size()); assertEquals(termId, terms.get(0).getIri()); assertEquals("Achondroplasia", terms.get(0).getLabel()); - assertEquals("Orphanet:15", terms.get(0).getOboId()); + assertEquals("Orphanet:15", terms.get(0).getCurie()); assertFalse(terms.get(0).getObsolete()); } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java index f2b2a3e..d442924 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java @@ -22,7 +22,7 @@ public class ProjectsControllerTest extends IntegrationTest { */ @Test public void shouldCreateProject() throws Exception { - super.createProject("New Project", "token1"); + super.createProject("New Project", "token1", null, null, null); } /** @@ -30,8 +30,8 @@ public void shouldCreateProject() throws Exception { */ @Test public void shouldGetProjects() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1"); - super.createProject("New Project 2", "token2"); + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null); + super.createProject("New Project 2", "token2", null, null, null); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS; String response = mockMvc.perform(get(endpoint) @@ -56,7 +56,7 @@ public void shouldGetProjects() throws Exception { */ @Test public void shouldGetProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1"); + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); String response = mockMvc.perform(get(endpoint) .contentType(MediaType.APPLICATION_JSON) @@ -77,7 +77,7 @@ public void shouldGetProject() throws Exception { */ @Test public void shouldUpdateProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1"); + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null); ProjectDto updatedProject = new ProjectDto(projectDto.getId(), "New Name", projectDto.getDescription(), @@ -109,7 +109,7 @@ public void shouldUpdateProject() throws Exception { */ @Test public void shouldNotUpdateProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1"); + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null); ProjectDto updatedProject = new ProjectDto(projectDto.getId(), "New Name", projectDto.getDescription(), @@ -131,7 +131,7 @@ public void shouldNotUpdateProject() throws Exception { */ @Test public void shouldDeleteProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1"); + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); mockMvc.perform(delete(endpoint) .header(IDPConstants.JWT_TOKEN, "token1")) diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/SourcesControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/SourcesControllerTest.java index e87a685..5823417 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/SourcesControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/SourcesControllerTest.java @@ -5,9 +5,7 @@ import org.springframework.http.MediaType; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; -import uk.ac.ebi.spot.ontotools.curation.constants.SourceType; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceCreationDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; @@ -15,7 +13,6 @@ import static org.junit.Assert.assertEquals; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; -import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; public class SourcesControllerTest extends IntegrationTest { @@ -25,7 +22,7 @@ public class SourcesControllerTest extends IntegrationTest { @Override public void setup() throws Exception { super.setup(); - projectDto = createProject("New Project", "token1"); + projectDto = createProject("New Project", "token1", null, null, null); } /** @@ -33,7 +30,7 @@ public void setup() throws Exception { */ @Test public void shouldCreateSource() throws Exception { - createSource(); + createSource(projectDto.getId()); } /** @@ -41,7 +38,7 @@ public void shouldCreateSource() throws Exception { */ @Test public void shouldGetSources() throws Exception { - SourceDto sourceDto = createSource(); + SourceDto sourceDto = super.createSource(projectDto.getId()); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_SOURCES; String response = mockMvc.perform(get(endpoint) .contentType(MediaType.APPLICATION_JSON) @@ -65,7 +62,7 @@ public void shouldGetSources() throws Exception { */ @Test public void shouldGetSource() throws Exception { - SourceDto sourceDto = createSource(); + SourceDto sourceDto = super.createSource(projectDto.getId()); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_SOURCES + "/" + sourceDto.getId(); String response = mockMvc.perform(get(endpoint) .contentType(MediaType.APPLICATION_JSON) @@ -80,28 +77,4 @@ public void shouldGetSource() throws Exception { assertEquals(sourceDto.getName(), actual.getName()); assertEquals(sourceDto.getDescription(), actual.getDescription()); } - - private SourceDto createSource() throws Exception { - SourceCreationDto sourceCreationDto = new SourceCreationDto("Source name", - "Description", - null, - SourceType.LOCAL.name()); - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_SOURCES; - - String response = mockMvc.perform(post(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .content(mapper.writeValueAsString(sourceCreationDto)) - .header(IDPConstants.JWT_TOKEN, "token1")) - .andExpect(status().isCreated()) - .andReturn() - .getResponse() - .getContentAsString(); - - SourceDto actual = mapper.readValue(response, new TypeReference() { - }); - assertEquals(sourceCreationDto.getName(), actual.getName()); - assertEquals(sourceCreationDto.getDescription(), actual.getDescription()); - assertEquals(sourceCreationDto.getType(), actual.getType()); - return actual; - } } From d67c34599995677f86f113d9709b0c8dcf7e04b0 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Wed, 10 Feb 2021 21:30:16 +0800 Subject: [PATCH 08/72] Updated base docker image. Updated default install data. --- Dockerfile | 5 ++++- install.txt | 18 ++++++++++++++++-- scripts/deploy.sh | 2 +- 3 files changed, 21 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9151247..3cf7f91 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,8 @@ # Import base image -FROM openjdk:15.0.2 +FROM openjdk:15-buster + +RUN apt-get update +RUN apt-get install -y --no-install-recommends less # Create log file directory and set permission RUN groupadd -r ontotools-curation-service && useradd -r --create-home -g ontotools-curation-service ontotools-curation-service diff --git a/install.txt b/install.txt index c2b14b1..b1ab33b 100644 --- a/install.txt +++ b/install.txt @@ -2,5 +2,19 @@ Data to be created during the initial setup. External service configs ------------------------ -db.externalServiceConfigs.insert({"name": "OXO", "aliases" : ["ordo::Orphanet"]}) -db.externalServiceConfigs.insert({"name": "OLS", "aliases" : ["Orphanet::ordo"]}) +db.externalServiceConfigs.insert({"name": "OXO", "aliases" : ["ordo::orphanet"]}) +db.externalServiceConfigs.insert({"name": "OLS", "aliases" : ["orphanet::ordo"]}) + +Users +----- +db.users.insert({"name": "Robot User", "email": "ontotools-curator@ebi.ac.uk", "roles": [], "superUser": true}) +db.users.insert({"name": "James", "email": "james@ebi.ac.uk", "roles": [], "superUser": false}) +db.users.insert({"name": "Tudor", "email": "tudor@ebi.ac.uk", "roles": [], "superUser": false}) +db.users.insert({"name": "Henriette", "email": "henriette@ebi.ac.uk", "roles": [], "superUser": false}) + +Tokens +----- +db.tokens.insert({"token": "tudor", "email":"tudor@ebi.ac.uk"}) +db.tokens.insert({"token": "james", "email":"james@ebi.ac.uk"}) +db.tokens.insert({"token": "henriette", "email":"henriette@ebi.ac.uk"}) +db.tokens.insert({"token": "robot", "email":"ontotools-curator@ebi.ac.uk"}) diff --git a/scripts/deploy.sh b/scripts/deploy.sh index cc5e98d..f277459 100755 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -1,4 +1,4 @@ #!/bin/bash -kubectl delete deploy ontotools-curation-service -n gwas +kubectl delete deploy ontotools-curation-service -n ontotools kubectl apply -f config/ontotools-curation-service-deployment.yaml From 49027458b8a08e0d905afe42bb9b61e7cee0bae5 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Thu, 11 Feb 2021 16:36:23 +0800 Subject: [PATCH 09/72] Refactored code. Added endpoints for creating manual mappings and ontology terms. --- .../curation/constants/CurationConstants.java | 7 + .../repository/MappingRepository.java | 2 + .../MappingSuggestionRepository.java | 2 +- .../rest/assembler/EntityDtoAssembler.java | 4 +- .../rest/assembler/MappingDtoAssembler.java | 3 +- .../MappingSuggestionDtoAssembler.java | 2 +- .../assembler/OntologyTermDtoAssembler.java | 15 +- .../rest/assembler/ReviewDtoAssembler.java | 2 +- .../rest/controller/MappingsController.java | 129 ++++++++++++--- .../controller/OntologyTermController.java | 48 ++++++ .../curation/rest/dto/EntityDto.java | 2 + .../ontotools/curation/rest/dto/TraitDto.java | 1 + .../rest/dto/mapping/MappingCreationDto.java | 39 +++++ .../rest/dto/{ => mapping}/MappingDto.java | 4 +- .../{ => mapping}/MappingSuggestionDto.java | 3 +- .../dto/{ => mapping}/OntologyTermDto.java | 11 +- .../rest/dto/{ => mapping}/ReviewDto.java | 3 +- .../curation/service/MappingService.java | 4 + .../service/MappingSuggestionsService.java | 4 + .../curation/service/OntologyTermService.java | 6 + .../service/impl/EntityServiceImpl.java | 2 +- .../service/impl/MappingServiceImpl.java | 33 ++++ .../impl/MappingSuggestionsServiceImpl.java | 30 ++++ .../curation/service/impl/OLSServiceImpl.java | 2 + .../service/impl/OntologyTermServiceImpl.java | 37 +++++ .../curation/EntityControllerTest.java | 1 + .../curation/MappingsControllerTest.java | 152 ++++++++++++++++++ .../curation/OntologyTermControllerTest.java | 74 +++++++++ 28 files changed, 585 insertions(+), 37 deletions(-) create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/OntologyTermController.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingCreationDto.java rename src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/{ => mapping}/MappingDto.java (94%) rename src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/{ => mapping}/MappingSuggestionDto.java (92%) rename src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/{ => mapping}/OntologyTermDto.java (92%) rename src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/{ => mapping}/ReviewDto.java (88%) create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java index 6169793..9b105fc 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -12,7 +12,14 @@ public class CurationConstants { public static final String API_ENTITIES = "/entities"; + public static final String API_ONTOLOGY_TERMS = "/ontology-terms"; + + public static final String API_COMMENTS = "/comments"; + + public static final String PARAM_ENTITY_ID = "entityId"; + public static final String ZOOMA_CONFIDENCE_HIGH = "HIGH"; public static final int NO_REVIEWS_REQUIRED = 3; + } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java index ad71f78..9d8a249 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java @@ -10,4 +10,6 @@ public interface MappingRepository extends MongoRepository { Optional findByEntityIdAndOntologyTermId(String entityId, String ontologyTermId); List findByEntityIdIn(List entityIds); + + List findByEntityId(String entityId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingSuggestionRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingSuggestionRepository.java index 2db7c54..71faa58 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingSuggestionRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingSuggestionRepository.java @@ -14,5 +14,5 @@ public interface MappingSuggestionRepository extends MongoRepository findByEntityIdAndOntologyTermIdNotIn(String entityId, List ontologyTermIds); - List findByOntologyTermId(String ontologyTermId); + List findByEntityId(String entityId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java index 1228d98..833e714 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java @@ -4,8 +4,8 @@ import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; import uk.ac.ebi.spot.ontotools.curation.domain.MappingSuggestion; import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.MappingDto; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.MappingSuggestionDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingSuggestionDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; import java.util.List; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java index 11070db..10ca396 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java @@ -1,7 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.rest.assembler; import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.MappingDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; import java.util.ArrayList; import java.util.stream.Collectors; @@ -17,5 +17,4 @@ public static MappingDto assemble(Mapping mapping) { mapping.getReviews() != null ? mapping.getReviews().stream().map(ReviewDtoAssembler::assemble).collect(Collectors.toList()) : new ArrayList<>(), ProvenanceDtoAssembler.assemble(mapping.getCreated())); } - } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingSuggestionDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingSuggestionDtoAssembler.java index 426bd0e..63cfc41 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingSuggestionDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingSuggestionDtoAssembler.java @@ -1,7 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.rest.assembler; import uk.ac.ebi.spot.ontotools.curation.domain.MappingSuggestion; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.MappingSuggestionDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingSuggestionDto; public class MappingSuggestionDtoAssembler { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/OntologyTermDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/OntologyTermDtoAssembler.java index 64f5b72..783afea 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/OntologyTermDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/OntologyTermDtoAssembler.java @@ -1,7 +1,9 @@ package uk.ac.ebi.spot.ontotools.curation.rest.assembler; +import org.apache.commons.codec.digest.DigestUtils; +import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.OntologyTermDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.OntologyTermDto; public class OntologyTermDtoAssembler { @@ -13,4 +15,15 @@ public static OntologyTermDto assemble(OntologyTerm ontologyTerm) { ontologyTerm.getDescription(), ontologyTerm.getCrossRefs()); } + + public static OntologyTerm disassemble(OntologyTermDto ontologyTerm) { + return new OntologyTerm(null, + ontologyTerm.getCurie(), + ontologyTerm.getIri(), + DigestUtils.sha256Hex(ontologyTerm.getIri()), + ontologyTerm.getLabel(), + ontologyTerm.getStatus() != null ? ontologyTerm.getStatus() : TermStatus.NEEDS_IMPORT.name(), + ontologyTerm.getDescription(), + ontologyTerm.getCrossRefs()); + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ReviewDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ReviewDtoAssembler.java index 765ebcc..d5893c2 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ReviewDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ReviewDtoAssembler.java @@ -1,7 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.rest.assembler; import uk.ac.ebi.spot.ontotools.curation.domain.Review; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.ReviewDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.ReviewDto; public class ReviewDtoAssembler { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java index 49325d4..d3522e6 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java @@ -1,16 +1,34 @@ package uk.ac.ebi.spot.ontotools.curation.rest.controller; +import org.joda.time.DateTime; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.web.bind.annotation.*; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.*; +import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.EntityDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.SourceDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingCreationDto; import uk.ac.ebi.spot.ontotools.curation.service.*; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; +import uk.ac.ebi.spot.ontotools.curation.util.HeadersUtil; + +import javax.servlet.http.HttpServletRequest; +import javax.validation.Valid; +import java.util.HashMap; +import java.util.List; +import java.util.Map; @RestController -@RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_MAPPINGS) +@RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) public class MappingsController { private static final Logger log = LoggerFactory.getLogger(ProjectsController.class); @@ -21,36 +39,109 @@ public class MappingsController { @Autowired private ProjectService projectService; + @Autowired + private EntityService entityService; + @Autowired private MappingService mappingService; @Autowired - private MappingSuggestionsService mappingSuggestionsService; + private SourceService sourceService; @Autowired - private UserService userService; + private MappingSuggestionsService mappingSuggestionsService; + @Autowired + private OntologyTermService ontologyTermService; /** - * GET /v1/mappings?entityId= + * GET /v1/projects/{projectId}/mappings?entityId= */ + @GetMapping(value = "/{projectId}" + CurationConstants.API_MAPPINGS, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public EntityDto getMappings(@PathVariable String projectId, @RequestParam(value = CurationConstants.PARAM_ENTITY_ID) String entityId, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to retrieve mappings: {} | {}", user.getEmail(), projectId, entityId); + projectService.verifyAccess(projectId, user); + Entity entity = entityService.retrieveEntity(entityId); + return packAndSend(entity, projectId); + } /** - * POST /v1/mappings + * POST /v1/projects/{projectId}/mappings */ + @PostMapping(value = "/{projectId}" + CurationConstants.API_MAPPINGS, + consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.CREATED) + public EntityDto createMapping(@PathVariable String projectId, @RequestBody @Valid MappingCreationDto mappingCreationDto, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to create mapping: {} | {} | {}", user.getEmail(), projectId, mappingCreationDto.getEntityId(), mappingCreationDto.getOntologyTerm().getCurie()); + projectService.verifyAccess(projectId, user); - /** - * PUT /v1/mappings/{mappingId} - * - sets mapping active - */ + Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); + Entity entity = entityService.retrieveEntity(mappingCreationDto.getEntityId()); + OntologyTerm ontologyTerm = ontologyTermService.retrieveTermByIri(mappingCreationDto.getOntologyTerm().getIri()); - /** - * DELETE /v1/mappings/{mappingId} - */ + /** + * Check if a mapping to this term already exists + */ + List existingMappings = mappingService.retrieveMappingsForEntity(entity.getId()); + boolean exists = false; + for (Mapping mapping : existingMappings) { + if (mapping.getOntologyTermId().equalsIgnoreCase(ontologyTerm.getId())) { + exists = true; + break; + } + } + if (exists) { + log.warn("[{}] Mapping to term [{}] already exists.", entity.getName(), ontologyTerm.getCurie()); + return packAndSend(entity, projectId); + } + + /** + * Create new mapping. + */ + mappingService.createMapping(entity, ontologyTerm, provenance); + + /** + * New mapping created - deleting existing mappings, except of the newly created one. + * Retaining ontology terms associated with the previous mappings. + */ + List ontologyTermIds = mappingService.deleteMappingExcluding(entity, ontologyTerm.getId()); + + /** + * Updating mapping status to MANUAL. + */ + entity = entityService.updateMappingStatus(entity, EntityStatus.MANUALLY_MAPPED); + + /** + * Deleting mapping suggestions associated with the current ontology term. + */ + mappingSuggestionsService.deleteMappingSuggestions(entity.getId(), ontologyTerm.getId()); + + /** + * Creating new mapping suggestion from the terms previously included in the mappings. + */ + for (String ontologyTermId : ontologyTermIds) { + OntologyTerm ontoTerm = ontologyTermService.retrieveTermById(ontologyTermId); + mappingSuggestionsService.createMappingSuggestion(entity, ontoTerm, provenance); + } + + return packAndSend(entity, projectId); + } + + private EntityDto packAndSend(Entity entity, String projectId) { + List sources = sourceService.getSources(projectId); + Map sourceMap = new HashMap<>(); + for (Source source : sources) { + sourceMap.put(source.getId(), SourceDtoAssembler.assemble(source)); + } + List mappings = mappingService.retrieveMappingsForEntity(entity.getId()); + List mappingSuggestions = mappingSuggestionsService.retrieveMappingSuggestionsForEntity(entity.getId()); + return EntityDtoAssembler.assemble(entity, sourceMap.get(entity.getSourceId()), mappings, mappingSuggestions); + + } - /** - * TODO: - * - Add comments - * - Add review - */ } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/OntologyTermController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/OntologyTermController.java new file mode 100644 index 0000000..bd46fec --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/OntologyTermController.java @@ -0,0 +1,48 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.controller; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.web.bind.annotation.*; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.OntologyTermDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.OntologyTermDto; +import uk.ac.ebi.spot.ontotools.curation.service.JWTService; +import uk.ac.ebi.spot.ontotools.curation.service.OntologyTermService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; +import uk.ac.ebi.spot.ontotools.curation.util.HeadersUtil; + +import javax.servlet.http.HttpServletRequest; +import javax.validation.Valid; + +@RestController +@RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) +public class OntologyTermController { + + private static final Logger log = LoggerFactory.getLogger(ProjectsController.class); + + @Autowired + private JWTService jwtService; + + @Autowired + private OntologyTermService ontologyTermService; + + /** + * POST /v1/projects/{projectId}/ontology-terms + */ + @PostMapping(value = "/{projectId}" + CurationConstants.API_ONTOLOGY_TERMS, + consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.CREATED) + public OntologyTermDto createOntologyTerm(@PathVariable String projectId, @RequestBody @Valid OntologyTermDto ontologyTermDto, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to create ontology term: {} | {}", user.getEmail(), projectId, ontologyTermDto.getCurie()); + OntologyTerm created = ontologyTermService.createTerm(OntologyTermDtoAssembler.disassemble(ontologyTermDto)); + return OntologyTermDtoAssembler.assemble(created); + } + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java index 442735b..9c85d6b 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java @@ -4,6 +4,8 @@ import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.EqualsAndHashCode; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingSuggestionDto; import javax.validation.constraints.NotNull; import java.io.Serializable; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/TraitDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/TraitDto.java index fb55eef..233827f 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/TraitDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/TraitDto.java @@ -4,6 +4,7 @@ import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.EqualsAndHashCode; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; import javax.validation.constraints.NotNull; import java.io.Serializable; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingCreationDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingCreationDto.java new file mode 100644 index 0000000..da93389 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingCreationDto.java @@ -0,0 +1,39 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotNull; +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class MappingCreationDto implements Serializable { + + private static final long serialVersionUID = -2530149590750902127L; + + @NotNull + @JsonProperty("entityId") + private final String entityId; + + @NotNull + @JsonProperty("ontologyTerm") + private final OntologyTermDto ontologyTerm; + + @JsonCreator + public MappingCreationDto(@JsonProperty("entityId") String entityId, + @JsonProperty("ontologyTerm") OntologyTermDto ontologyTerm) { + this.entityId = entityId; + this.ontologyTerm = ontologyTerm; + } + + public OntologyTermDto getOntologyTerm() { + return ontologyTerm; + } + + public String getEntityId() { + return entityId; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/MappingDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingDto.java similarity index 94% rename from src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/MappingDto.java rename to src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingDto.java index f17da9b..21b17c7 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/MappingDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingDto.java @@ -1,9 +1,10 @@ -package uk.ac.ebi.spot.ontotools.curation.rest.dto; +package uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.EqualsAndHashCode; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProvenanceDto; import javax.validation.constraints.NotNull; import java.io.Serializable; @@ -19,6 +20,7 @@ public final class MappingDto implements Serializable { @JsonProperty("id") private final String id; + @NotNull @JsonProperty("entityId") private final String entityId; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/MappingSuggestionDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingSuggestionDto.java similarity index 92% rename from src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/MappingSuggestionDto.java rename to src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingSuggestionDto.java index e0179a1..629aaee 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/MappingSuggestionDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingSuggestionDto.java @@ -1,9 +1,10 @@ -package uk.ac.ebi.spot.ontotools.curation.rest.dto; +package uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.EqualsAndHashCode; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProvenanceDto; import javax.validation.constraints.NotNull; import java.io.Serializable; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/OntologyTermDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/OntologyTermDto.java similarity index 92% rename from src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/OntologyTermDto.java rename to src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/OntologyTermDto.java index ba608cf..d1f25a0 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/OntologyTermDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/OntologyTermDto.java @@ -1,11 +1,11 @@ -package uk.ac.ebi.spot.ontotools.curation.rest.dto; +package uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.EqualsAndHashCode; -import javax.validation.constraints.NotNull; +import javax.validation.constraints.NotEmpty; import java.io.Serializable; @EqualsAndHashCode @@ -14,19 +14,18 @@ public final class OntologyTermDto implements Serializable { private static final long serialVersionUID = 714105630780606515L; - @NotNull + @NotEmpty @JsonProperty("curie") private final String curie; - @NotNull + @NotEmpty @JsonProperty("iri") private final String iri; - @NotNull + @NotEmpty @JsonProperty("label") private final String label; - @NotNull @JsonProperty("status") private final String status; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ReviewDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/ReviewDto.java similarity index 88% rename from src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ReviewDto.java rename to src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/ReviewDto.java index 7535d31..d9359b1 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ReviewDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/ReviewDto.java @@ -1,9 +1,10 @@ -package uk.ac.ebi.spot.ontotools.curation.rest.dto; +package uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.EqualsAndHashCode; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProvenanceDto; import javax.validation.constraints.NotNull; import java.io.Serializable; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java index 257effe..a1c7e20 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java @@ -13,4 +13,8 @@ public interface MappingService { Mapping createMapping(Entity entity, OntologyTerm ontologyTerm, Provenance provenance); Map> retrieveMappingsForEntities(List entityIds); + + List retrieveMappingsForEntity(String entityId); + + List deleteMappingExcluding(Entity entity, String ontologyTermId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java index 16ab4f8..23253fb 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java @@ -15,4 +15,8 @@ public interface MappingSuggestionsService { void deleteMappingSuggestionsExcluding(Entity entity, List ontologyTerms); Map> retrieveMappingSuggestionsForEntities(List entityIds); + + List retrieveMappingSuggestionsForEntity(String entityId); + + void deleteMappingSuggestions(String entityId, String ontologyTermId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java index e3fe5d6..051cce6 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java @@ -7,9 +7,15 @@ import java.util.Map; public interface OntologyTermService { + OntologyTerm createTerm(OntologyTerm term); + OntologyTerm createTerm(String iri, Project project); Map retrieveTerms(List ontologyTermIds); List retrieveAllTerms(); + + OntologyTerm retrieveTermByIri(String iri); + + OntologyTerm retrieveTermById(String ontologyTermId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java index 0bf44e7..eeebfda 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java @@ -41,7 +41,7 @@ public Stream retrieveEntitiesForSource(String sourceId) { @Override public Entity updateMappingStatus(Entity entity, EntityStatus mappingStatus) { - log.info("Updating mappping status [{}]: {}", entity.getName(), mappingStatus); + log.info("Updating mapping status [{}]: {}", entity.getName(), mappingStatus); Optional entityOptional = entityRepository.findById(entity.getId()); if (!entityOptional.isPresent()) { log.error("Unable to find entity: {}", entity.getName()); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java index 62e69d0..c75a837 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java @@ -61,4 +61,37 @@ public Map> retrieveMappingsForEntities(List entit } return result; } + + @Override + public List retrieveMappingsForEntity(String entityId) { + log.info("Retrieving mappings for entity: {}", entityId); + List mappings = mappingRepository.findByEntityId(entityId); + List ontologyTermIds = mappings.stream().map(Mapping::getOntologyTermId).collect(Collectors.toList()); + Map ontologyTermMap = ontologyTermService.retrieveTerms(ontologyTermIds); + log.info("Found {} mappings.", mappings.size()); + List result = new ArrayList<>(); + for (Mapping mapping : mappings) { + if (!ontologyTermMap.containsKey(mapping.getOntologyTermId())) { + log.warn("Unable to find ontology term [{}] for mapping suggestion: {}", mapping.getOntologyTermId(), mapping.getId()); + continue; + } + mapping.setOntologyTerm(ontologyTermMap.get(mapping.getOntologyTermId())); + result.add(mapping); + } + return result; + } + + @Override + public List deleteMappingExcluding(Entity entity, String ontologyTermId) { + log.info("Deleting mappings for entity [{}] excluding ontology term: {}", entity.getId(), ontologyTermId); + List mappings = mappingRepository.findByEntityId(entity.getId()); + List result = new ArrayList<>(); + for (Mapping mapping : mappings) { + if (!mapping.getOntologyTermId().equalsIgnoreCase(ontologyTermId)) { + result.add(mapping.getOntologyTermId()); + mappingRepository.delete(mapping); + } + } + return result; + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java index 3378b00..664f7b7 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java @@ -71,4 +71,34 @@ public Map> retrieveMappingSuggestionsForEntitie } return result; } + + @Override + public List retrieveMappingSuggestionsForEntity(String entityId) { + log.info("Retrieving mapping suggestions for entity: {}", entityId); + List mappingSuggestions = mappingSuggestionRepository.findByEntityId(entityId); + List ontologyTermIds = mappingSuggestions.stream().map(MappingSuggestion::getOntologyTermId).collect(Collectors.toList()); + Map ontologyTermMap = ontologyTermService.retrieveTerms(ontologyTermIds); + log.info("Found {} mapping suggestions.", mappingSuggestions.size()); + List result = new ArrayList<>(); + for (MappingSuggestion mappingSuggestion : mappingSuggestions) { + if (!ontologyTermMap.containsKey(mappingSuggestion.getOntologyTermId())) { + log.warn("Unable to find ontology term [{}] for mapping suggestion: {}", mappingSuggestion.getOntologyTermId(), mappingSuggestion.getId()); + continue; + } + mappingSuggestion.setOntologyTerm(ontologyTermMap.get(mappingSuggestion.getOntologyTermId())); + result.add(mappingSuggestion); + } + return result; + } + + @Override + public void deleteMappingSuggestions(String entityId, String ontologyTermId) { + log.info("Deleting mapping suggestions for entity [{}] with ontology term: {}", entityId, ontologyTermId); + List mappingSuggestions = mappingSuggestionRepository.findByEntityId(entityId); + for (MappingSuggestion mappingSuggestion : mappingSuggestions) { + if (!mappingSuggestion.getOntologyTermId().equalsIgnoreCase(ontologyTermId)) { + mappingSuggestionRepository.delete(mappingSuggestion); + } + } + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java index eaa8797..679236e 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java @@ -99,6 +99,8 @@ public List retrieveTerms(String ontologyId, String identifierValue) * and repeat the process associated with checking the status - as per the initial term creation *

* Why?? + * + * Do we have to introduce project-based terms? If not - how do we use project preferences to do this import? */ public void importOLS() { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java index 5142c1c..b822584 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java @@ -9,6 +9,7 @@ import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; import uk.ac.ebi.spot.ontotools.curation.repository.OntologyTermRepository; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; import uk.ac.ebi.spot.ontotools.curation.service.OLSService; @@ -28,6 +29,20 @@ public class OntologyTermServiceImpl implements OntologyTermService { @Autowired private OLSService olsService; + @Override + public OntologyTerm createTerm(OntologyTerm term) { + log.info("Creating term manually: {}", term.getCurie()); + Optional ontologyTermOp = ontologyTermRepository.findByIriHash(DigestUtils.sha256Hex(term.getIri())); + if (ontologyTermOp.isPresent()) { + log.warn("Ontology term already exists: {} | {}", ontologyTermOp.get().getCurie(), ontologyTermOp.get().getLabel()); + return ontologyTermOp.get(); + } + + OntologyTerm ontologyTerm = ontologyTermRepository.insert(term); + log.info("Term [{}] created: {}", ontologyTerm.getCurie(), ontologyTerm.getId()); + return ontologyTerm; + } + @Override public OntologyTerm createTerm(String iri, Project project) { log.info("Creating term: {}", iri); @@ -91,6 +106,28 @@ public List retrieveAllTerms() { return ontologyTermRepository.findAll(); } + @Override + public OntologyTerm retrieveTermByIri(String iri) { + log.info("Retrieving ontology term: {}", iri); + Optional ontologyTermOp = ontologyTermRepository.findByIriHash(DigestUtils.sha256Hex(iri)); + if (!ontologyTermOp.isPresent()) { + log.error("Unable to find ontology term: {}", iri); + throw new EntityNotFoundException("Unable to find ontology term: " + iri); + } + return ontologyTermOp.get(); + } + + @Override + public OntologyTerm retrieveTermById(String ontologyTermId) { + log.info("Retrieving ontology term: {}", ontologyTermId); + Optional ontologyTermOp = ontologyTermRepository.findById(ontologyTermId); + if (!ontologyTermOp.isPresent()) { + log.error("Unable to find ontology term: {}", ontologyTermId); + throw new EntityNotFoundException("Unable to find ontology term: " + ontologyTermId); + } + return ontologyTermOp.get(); + } + private String parseStatus(List preferredOntoResponse, List parentOntoResponse, String previousState) { if (CollectionUtils.isEmpty(preferredOntoResponse) && CollectionUtils.isEmpty(parentOntoResponse)) { return TermStatus.DELETED.name(); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java index aac2ee6..7f57e9e 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java @@ -11,6 +11,7 @@ import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; import uk.ac.ebi.spot.ontotools.curation.rest.dto.*; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingSuggestionDto; import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; import uk.ac.ebi.spot.ontotools.curation.service.UserService; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java new file mode 100644 index 0000000..9933474 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java @@ -0,0 +1,152 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import com.fasterxml.jackson.core.type.TypeReference; +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.MediaType; +import org.springframework.test.context.ContextConfiguration; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; +import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingCreationDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingSuggestionDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.OntologyTermDto; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; +import uk.ac.ebi.spot.ontotools.curation.service.UserService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; + +import java.util.Arrays; +import java.util.List; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; + +@ContextConfiguration(classes = {IntegrationTest.MockTaskExecutorConfig.class}) +public class MappingsControllerTest extends IntegrationTest { + + @Autowired + private UserService userService; + + @Autowired + private ProjectService projectService; + + private Project project; + + private SourceDto sourceDto; + + @Override + public void setup() throws Exception { + super.setup(); + List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); + List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); + ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo"); + user1 = userService.findByEmail(user1.getEmail()); + project = projectService.retrieveProject(projectDto.getId(), user1); + sourceDto = super.createSource(project.getId()); + + super.createEntityTestData(sourceDto.getId(), user1); + } + + /** + * GET /v1/projects/{projectId}/mappings?entityId= + */ + @Test + public void shouldGetMappings() throws Exception { + EntityDto actual = retrieveEntity(); + assertEquals("Achondroplasia", actual.getName()); + assertEquals(EntityStatus.AUTO_MAPPED.name(), actual.getMappingStatus()); + + assertEquals(1, actual.getMappings().size()); + assertEquals("Orphanet:15", actual.getMappings().get(0).getOntologyTerm().getCurie()); + assertEquals(MappingStatus.AWAITING_REVIEW.name(), actual.getMappings().get(0).getStatus()); + + assertEquals(2, actual.getMappingSuggestions().size()); + int foundCuries = 0; + for (MappingSuggestionDto mappingSuggestion : actual.getMappingSuggestions()) { + if (mappingSuggestion.getOntologyTerm().getCurie().equalsIgnoreCase("Orphanet:15")) { + foundCuries++; + } + if (mappingSuggestion.getOntologyTerm().getCurie().equalsIgnoreCase("MONDO:0007037")) { + foundCuries++; + } + } + + assertEquals(2, foundCuries); + assertEquals(sourceDto.getId(), actual.getSource().getId()); + } + + /** + * POST /v1/projects/{projectId}/mappings + */ + @Test + public void shouldCreateMapping() throws Exception { + EntityDto entityDto = retrieveEntity(); + OntologyTermDto ontologyTermDto = null; + for (MappingSuggestionDto mappingSuggestionDto : entityDto.getMappingSuggestions()) { + if (mappingSuggestionDto.getOntologyTerm().getCurie().equalsIgnoreCase("MONDO:0007037")) { + ontologyTermDto = mappingSuggestionDto.getOntologyTerm(); + break; + } + } + assertNotNull(ontologyTermDto); + MappingCreationDto mappingCreationDto = new MappingCreationDto(entityDto.getId(), ontologyTermDto); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS; + String response = mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(mappingCreationDto)) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isCreated()) + .andReturn() + .getResponse() + .getContentAsString(); + + EntityDto actual = mapper.readValue(response, new TypeReference() { + }); + + assertEquals("Achondroplasia", actual.getName()); + assertEquals(EntityStatus.MANUALLY_MAPPED.name(), actual.getMappingStatus()); + + assertEquals(1, actual.getMappings().size()); + assertEquals("MONDO:0007037", actual.getMappings().get(0).getOntologyTerm().getCurie()); + assertEquals(MappingStatus.AWAITING_REVIEW.name(), actual.getMappings().get(0).getStatus()); + + assertEquals(2, actual.getMappingSuggestions().size()); + int foundCuries = 0; + for (MappingSuggestionDto mappingSuggestion : actual.getMappingSuggestions()) { + if (mappingSuggestion.getOntologyTerm().getCurie().equalsIgnoreCase("Orphanet:15")) { + foundCuries++; + } + if (mappingSuggestion.getOntologyTerm().getCurie().equalsIgnoreCase("MONDO:0007037")) { + foundCuries++; + } + } + + assertEquals(2, foundCuries); + assertEquals(sourceDto.getId(), actual.getSource().getId()); + } + + private EntityDto retrieveEntity() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + + "?entityId=" + super.entity.getId(); + String response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + EntityDto actual = mapper.readValue(response, new TypeReference() { + }); + return actual; + } +} diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java new file mode 100644 index 0000000..2983be9 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java @@ -0,0 +1,74 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import com.fasterxml.jackson.core.type.TypeReference; +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.MediaType; +import org.springframework.test.context.ContextConfiguration; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.OntologyTermDto; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; +import uk.ac.ebi.spot.ontotools.curation.service.UserService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; + +import java.util.Arrays; +import java.util.List; + +import static org.junit.Assert.assertEquals; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; + +@ContextConfiguration(classes = {IntegrationTest.MockTaskExecutorConfig.class}) +public class OntologyTermControllerTest extends IntegrationTest { + + @Autowired + private UserService userService; + + @Autowired + private ProjectService projectService; + + private Project project; + + @Override + public void setup() throws Exception { + super.setup(); + + List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); + List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); + ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo"); + user1 = userService.findByEmail(user1.getEmail()); + project = projectService.retrieveProject(projectDto.getId(), user1); + } + + /** + * POST /v1/projects/{projectId}/ontology-terms + */ + @Test + public void shouldCreateOntologyTerm() throws Exception { + OntologyTermDto toCreate = new OntologyTermDto("MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", + "Achondroplasia", null, null, null); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_ONTOLOGY_TERMS; + String response = mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(toCreate)) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isCreated()) + .andReturn() + .getResponse() + .getContentAsString(); + + OntologyTermDto actual = mapper.readValue(response, new TypeReference() { + }); + + assertEquals(toCreate.getLabel(), actual.getLabel()); + assertEquals(toCreate.getCurie(), actual.getCurie()); + assertEquals(toCreate.getIri(), actual.getIri()); + assertEquals(TermStatus.NEEDS_IMPORT.toString(), actual.getStatus()); + + } +} From 7b435ecd12fa44cbb65314aee613cc5dc5921020 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Thu, 11 Feb 2021 21:52:28 +0800 Subject: [PATCH 10/72] Fixed trigger for matchmaking service. --- .../curation/rest/controller/SourcesController.java | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java index 9471aa2..e6830b9 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java @@ -16,10 +16,7 @@ import uk.ac.ebi.spot.ontotools.curation.rest.assembler.SourceDtoAssembler; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceCreationDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; -import uk.ac.ebi.spot.ontotools.curation.service.EntityService; -import uk.ac.ebi.spot.ontotools.curation.service.JWTService; -import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; -import uk.ac.ebi.spot.ontotools.curation.service.SourceService; +import uk.ac.ebi.spot.ontotools.curation.service.*; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; import uk.ac.ebi.spot.ontotools.curation.util.HeadersUtil; @@ -46,6 +43,9 @@ public class SourcesController { @Autowired private EntityService entityService; + @Autowired + private MatchmakerService matchmakerService; + /** * POST /v1/projects/{projectId}/sources */ @@ -93,9 +93,9 @@ public SourceDto getSource(@PathVariable String projectId, @PathVariable String /** * POST /v1/projects/{projectId}/sources/{sourceId} */ - @PutMapping(value = "/{projectId}" + CurationConstants.API_SOURCES + "/{sourceId}", + @PostMapping(value = "/{projectId}" + CurationConstants.API_SOURCES + "/{sourceId}", produces = MediaType.APPLICATION_JSON_VALUE) - @ResponseStatus(HttpStatus.OK) + @ResponseStatus(HttpStatus.CREATED) public void addDataToSource(@RequestBody List entities, @PathVariable String projectId, @PathVariable String sourceId, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to add data to source: {} | {} | {}", user.getEmail(), projectId, sourceId, entities); @@ -104,5 +104,6 @@ public void addDataToSource(@RequestBody List entities, @PathVariable St for (String entity : entities) { entityService.createEntity(new Entity(null, entity, source.getId(), new Provenance(user.getName(), user.getEmail(), DateTime.now()), EntityStatus.UNMAPPED)); } + matchmakerService.runMatchmaking(sourceId, projectService.retrieveProject(projectId, user)); } } From 43377e59c1150573cb58e04d48bc6378de660a58 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Thu, 11 Feb 2021 22:41:08 +0800 Subject: [PATCH 11/72] Added coverage checks and more DTO tests. --- pom.xml | 111 ++++++++++++++++++ .../rest/assembler/SourceDtoAssembler.java | 13 -- .../rest/assembler/UserDtoAssembler.java | 10 -- .../ontotools/curation/rest/dto/TraitDto.java | 78 ------------ .../curation/rest/dto/EntityDtoTest.java | 14 +++ .../rest/dto/ProjectCreationDtoTest.java | 14 +++ .../curation/rest/dto/ProjectDtoTest.java | 14 +++ .../curation/rest/dto/ProvenanceDtoTest.java | 14 +++ .../curation/rest/dto/RoleDtoTest.java | 14 +++ .../rest/dto/SourceCreationDtoTest.java | 14 +++ .../curation/rest/dto/SourceDtoTest.java | 13 ++ .../curation/rest/dto/UserDtoTest.java | 12 ++ .../config/ExternalServiceConfigDtoTest.java | 14 +++ .../dto/mapping/MappingCreationDtoTest.java | 14 +++ .../rest/dto/mapping/MappingDtoTest.java | 14 +++ .../dto/mapping/MappingSuggestionDtoTest.java | 14 +++ .../rest/dto/mapping/OntologyTermDtoTest.java | 14 +++ .../rest/dto/mapping/ReviewDtoTest.java | 14 +++ .../rest/dto/ols/OLSEmbeddedDtoTest.java | 13 ++ .../rest/dto/ols/OLSResponseDtoTest.java | 14 +++ .../curation/rest/dto/ols/OLSTermDtoTest.java | 15 +++ .../rest/dto/oxo/OXOEmbeddedDtoTest.java | 14 +++ .../dto/oxo/OXOMappingResponseDtoTest.java | 14 +++ .../rest/dto/oxo/OXORequestDtoTest.java | 14 +++ .../rest/dto/oxo/OXOResponseDtoTest.java | 14 +++ .../rest/dto/oxo/OXOSearchResultDtoTest.java | 14 +++ .../rest/dto/zooma/ZoomaResponseDtoTest.java | 14 +++ 27 files changed, 430 insertions(+), 101 deletions(-) delete mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/TraitDto.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProvenanceDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/RoleDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/SourceCreationDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/SourceDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/UserDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/config/ExternalServiceConfigDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingCreationDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingSuggestionDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/OntologyTermDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/ReviewDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSEmbeddedDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSResponseDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSTermDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOEmbeddedDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOMappingResponseDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXORequestDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOResponseDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOSearchResultDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/zooma/ZoomaResponseDtoTest.java diff --git a/pom.xml b/pom.xml index bce90dc..6bc957b 100644 --- a/pom.xml +++ b/pom.xml @@ -41,6 +41,16 @@ 4.13.1 3.7.7 3.5.2 + + 0.8.6 + false + + 0.7000 + 0.7000 + 0.7500 + 0.7000 + 0.7000 + 0.9000 @@ -55,6 +65,107 @@ org.springframework.boot spring-boot-maven-plugin + + org.jacoco + jacoco-maven-plugin + ${jacoco.plugin.version} + + ${project.build.directory}/coverage-reports/jacoco.exec + ${project.build.directory}/coverage-reports/ + true + + **/*Config.* + **/*ConfigProd.* + **/*Application.* + **/*ConfigDev.* + **/*ConfigNonDev.* + **/*Constants.* + **/*Properties.* + **/*Exception.* + **/*Serializer.* + **/*Deserializer.* + **/constants/**/* + **/constants/*.* + **/*Advice.* + + + + + prepare-agent + + prepare-agent + + + ${skip.coverage} + + + + + ${project.build.directory}/coverage-reports/jacoco.exec + + + + report + + integration-test + + report + + + ${skip.coverage} + + + + check + + integration-test + + check + + + ${skip.coverage} + + + BUNDLE + + + INSTRUCTION + COVEREDRATIO + ${coverage.ratio.instruction} + + + LINE + COVEREDRATIO + ${coverage.ratio.line} + + + BRANCH + COVEREDRATIO + ${coverage.ratio.branch} + + + METHOD + COVEREDRATIO + ${coverage.ratio.method} + + + CLASS + COVEREDRATIO + ${coverage.ratio.class} + + + COMPLEXITY + COVEREDRATIO + ${coverage.ratio.complexity} + + + + + + + + + diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/SourceDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/SourceDtoAssembler.java index f318029..62c03ba 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/SourceDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/SourceDtoAssembler.java @@ -17,19 +17,6 @@ public static SourceDto assemble(Source source) { ProvenanceDtoAssembler.assemble(source.getLastUpdated())); } - public static Source disassemble(SourceDto source) { - return new Source(source.getId(), - source.getName(), - source.getDescription(), - source.getUri(), - source.getType(), - ProvenanceDtoAssembler.disassemble(source.getCreated()), - ProvenanceDtoAssembler.disassemble(source.getLastUpdated()), - null, - null, - false); - } - public static Source disassemble(SourceCreationDto source, Provenance provenance) { return new Source(null, source.getName(), diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/UserDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/UserDtoAssembler.java index 95196c2..a75e012 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/UserDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/UserDtoAssembler.java @@ -1,19 +1,9 @@ package uk.ac.ebi.spot.ontotools.curation.rest.assembler; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.rest.dto.UserDto; -import java.util.stream.Collectors; - public class UserDtoAssembler { - public static UserDto assemble(User user) { - return new UserDto(user.getId(), - user.getName(), - user.getEmail(), - user.getRoles() != null ? user.getRoles().stream().map(RoleDtoAssembler::assemble).collect(Collectors.toList()) : null); - } - public static UserDto assemble(String name, String email) { return new UserDto(null, name, email, null); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/TraitDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/TraitDto.java deleted file mode 100644 index 233827f..0000000 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/TraitDto.java +++ /dev/null @@ -1,78 +0,0 @@ -package uk.ac.ebi.spot.ontotools.curation.rest.dto; - -import com.fasterxml.jackson.annotation.JsonCreator; -import com.fasterxml.jackson.annotation.JsonInclude; -import com.fasterxml.jackson.annotation.JsonProperty; -import lombok.EqualsAndHashCode; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; - -import javax.validation.constraints.NotNull; -import java.io.Serializable; - -@EqualsAndHashCode -@JsonInclude(JsonInclude.Include.NON_NULL) -public final class TraitDto implements Serializable { - - private static final long serialVersionUID = 714105630780606515L; - - @NotNull - @JsonProperty("id") - private final String id; - - @NotNull - @JsonProperty("name") - private final String name; - - @JsonProperty("currentMapping") - private final MappingDto currentMapping; - - @JsonProperty("noSourceRecords") - private final int noSourceRecords; - - @NotNull - @JsonProperty("created") - private final ProvenanceDto created; - - @NotNull - @JsonProperty("lastUpdated") - private final ProvenanceDto lastUpdated; - - @JsonCreator - public TraitDto(@JsonProperty("id") String id, - @JsonProperty("name") String name, - @JsonProperty("currentMapping") MappingDto currentMapping, - @JsonProperty("noSourceRecords") int noSourceRecords, - @JsonProperty("created") ProvenanceDto created, - @JsonProperty("lastUpdated") ProvenanceDto lastUpdated) { - this.id = id; - this.name = name; - this.currentMapping = currentMapping; - this.noSourceRecords = noSourceRecords; - this.created = created; - this.lastUpdated = lastUpdated; - } - - public String getId() { - return id; - } - - public String getName() { - return name; - } - - public MappingDto getCurrentMapping() { - return currentMapping; - } - - public int getNoSourceRecords() { - return noSourceRecords; - } - - public ProvenanceDto getCreated() { - return created; - } - - public ProvenanceDto getLastUpdated() { - return lastUpdated; - } -} diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDtoTest.java new file mode 100644 index 0000000..a0ca2a9 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class EntityDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(EntityDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDtoTest.java new file mode 100644 index 0000000..82701b4 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class ProjectCreationDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(ProjectCreationDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDtoTest.java new file mode 100644 index 0000000..d453b8e --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class ProjectDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(ProjectDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProvenanceDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProvenanceDtoTest.java new file mode 100644 index 0000000..a7a29ce --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProvenanceDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class ProvenanceDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(ProvenanceDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/RoleDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/RoleDtoTest.java new file mode 100644 index 0000000..a19b30a --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/RoleDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class RoleDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(RoleDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/SourceCreationDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/SourceCreationDtoTest.java new file mode 100644 index 0000000..562d433 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/SourceCreationDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class SourceCreationDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(SourceCreationDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/SourceDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/SourceDtoTest.java new file mode 100644 index 0000000..c8268d3 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/SourceDtoTest.java @@ -0,0 +1,13 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class SourceDtoTest { + @Test + public void equalsContract() { + EqualsVerifier.forClass(SourceDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/UserDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/UserDtoTest.java new file mode 100644 index 0000000..a0d1abc --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/UserDtoTest.java @@ -0,0 +1,12 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class UserDtoTest { + @Test + public void equalsContract() { + EqualsVerifier.forClass(UserDto.class) + .verify(); + } +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/config/ExternalServiceConfigDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/config/ExternalServiceConfigDtoTest.java new file mode 100644 index 0000000..7bdc827 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/config/ExternalServiceConfigDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.config; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class ExternalServiceConfigDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(ExternalServiceConfigDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingCreationDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingCreationDtoTest.java new file mode 100644 index 0000000..857be5c --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingCreationDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class MappingCreationDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(MappingCreationDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingDtoTest.java new file mode 100644 index 0000000..052057e --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class MappingDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(MappingDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingSuggestionDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingSuggestionDtoTest.java new file mode 100644 index 0000000..d8a47da --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingSuggestionDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class MappingSuggestionDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(MappingSuggestionDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/OntologyTermDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/OntologyTermDtoTest.java new file mode 100644 index 0000000..a144b7d --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/OntologyTermDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class OntologyTermDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(OntologyTermDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/ReviewDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/ReviewDtoTest.java new file mode 100644 index 0000000..bbb0ccd --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/ReviewDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class ReviewDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(ReviewDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSEmbeddedDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSEmbeddedDtoTest.java new file mode 100644 index 0000000..51653a6 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSEmbeddedDtoTest.java @@ -0,0 +1,13 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.ols; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class OLSEmbeddedDtoTest { + @Test + public void equalsContract() { + EqualsVerifier.forClass(OLSEmbeddedDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSResponseDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSResponseDtoTest.java new file mode 100644 index 0000000..2b69965 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSResponseDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.ols; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class OLSResponseDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(OLSResponseDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSTermDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSTermDtoTest.java new file mode 100644 index 0000000..d4a59b2 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSTermDtoTest.java @@ -0,0 +1,15 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.ols; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class OLSTermDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(OLSTermDto.class) + .verify(); + } + + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOEmbeddedDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOEmbeddedDtoTest.java new file mode 100644 index 0000000..b4605ce --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOEmbeddedDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class OXOEmbeddedDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(OXOEmbeddedDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOMappingResponseDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOMappingResponseDtoTest.java new file mode 100644 index 0000000..a37fc30 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOMappingResponseDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class OXOMappingResponseDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(OXOMappingResponseDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXORequestDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXORequestDtoTest.java new file mode 100644 index 0000000..93ef96d --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXORequestDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class OXORequestDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(OXORequestDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOResponseDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOResponseDtoTest.java new file mode 100644 index 0000000..fe1b780 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOResponseDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class OXOResponseDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(OXOResponseDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOSearchResultDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOSearchResultDtoTest.java new file mode 100644 index 0000000..1bc3ad9 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/oxo/OXOSearchResultDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class OXOSearchResultDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(OXOSearchResultDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/zooma/ZoomaResponseDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/zooma/ZoomaResponseDtoTest.java new file mode 100644 index 0000000..ed88a25 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/zooma/ZoomaResponseDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.zooma; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class ZoomaResponseDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(ZoomaResponseDto.class) + .verify(); + } + +} \ No newline at end of file From 1a3f0db979fa41774a98431195d5b9674c531b3a Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Mon, 15 Feb 2021 22:43:14 +0800 Subject: [PATCH 12/72] Refactored user management functionality. Added project user management endpoints. --- .../curation/constants/CurationConstants.java | 2 + .../curation/repository/UserRepository.java | 2 + .../rest/assembler/RoleDtoAssembler.java | 5 + .../rest/assembler/UserDtoAssembler.java | 17 ++ .../rest/controller/EntityController.java | 5 +- .../rest/controller/MappingsController.java | 6 +- .../rest/controller/ProjectsController.java | 3 +- .../rest/controller/SourcesController.java | 10 +- .../controller/UserManagementController.java | 104 ++++++++ .../curation/rest/dto/ProjectUserDto.java | 40 ++++ .../curation/service/ProjectService.java | 3 +- .../curation/service/UserService.java | 10 +- .../service/impl/ProjectServiceImpl.java | 15 +- .../service/impl/UserServiceImpl.java | 70 +++++- .../ontotools/curation/util/CurationUtil.java | 10 + .../curation/UsersControllerTest.java | 224 ++++++++++++++++++ .../curation/rest/dto/ProjectUserDtoTest.java | 13 + 17 files changed, 516 insertions(+), 23 deletions(-) create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/UserManagementController.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectUserDto.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectUserDtoTest.java diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java index 9b105fc..e23d57d 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -14,6 +14,8 @@ public class CurationConstants { public static final String API_ONTOLOGY_TERMS = "/ontology-terms"; + public static final String API_USERS = "/users"; + public static final String API_COMMENTS = "/comments"; public static final String PARAM_ENTITY_ID = "entityId"; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/UserRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/UserRepository.java index 44077a3..343e516 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/UserRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/UserRepository.java @@ -11,4 +11,6 @@ public interface UserRepository extends MongoRepository { Optional findByEmailIgnoreCase(String email); List findBySuperUser(boolean superUser); + + List findByRoles_ProjectId(String projectId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/RoleDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/RoleDtoAssembler.java index 6c4d446..ffb0abc 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/RoleDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/RoleDtoAssembler.java @@ -1,5 +1,6 @@ package uk.ac.ebi.spot.ontotools.curation.rest.assembler; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.domain.auth.Role; import uk.ac.ebi.spot.ontotools.curation.rest.dto.RoleDto; @@ -8,4 +9,8 @@ public class RoleDtoAssembler { public static RoleDto assemble(Role role) { return new RoleDto(role.getProjectId(), role.getRole().name()); } + + public static Role disassemble(RoleDto role) { + return new Role(role.getProjectId(), ProjectRole.valueOf(role.getRole())); + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/UserDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/UserDtoAssembler.java index a75e012..9d44f5b 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/UserDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/UserDtoAssembler.java @@ -1,10 +1,27 @@ package uk.ac.ebi.spot.ontotools.curation.rest.assembler; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.rest.dto.UserDto; +import java.util.ArrayList; +import java.util.stream.Collectors; + public class UserDtoAssembler { public static UserDto assemble(String name, String email) { return new UserDto(null, name, email, null); } + + public static UserDto assemble(User user) { + return new UserDto(user.getId(), user.getName(), user.getEmail(), + user.getRoles() == null ? new ArrayList<>() : + user.getRoles().stream().map(RoleDtoAssembler::assemble).collect(Collectors.toList())); + } + + public static User disassemble(UserDto userDto) { + return new User(userDto.getId(), userDto.getName(), userDto.getEmail(), + userDto.getRoles() == null ? new ArrayList<>() : + userDto.getRoles().stream().map(RoleDtoAssembler::disassemble).collect(Collectors.toList()), + false); + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java index f251357..1f8fb51 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java @@ -10,6 +10,7 @@ import org.springframework.http.MediaType; import org.springframework.web.bind.annotation.*; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.domain.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; import uk.ac.ebi.spot.ontotools.curation.domain.MappingSuggestion; @@ -61,7 +62,7 @@ public class EntityController { public RestResponsePage getEntities(@PathVariable String projectId, @PageableDefault(size = 20, page = 0) Pageable pageable, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to retrieve entities: {}", user.getEmail(), projectId); - projectService.verifyAccess(projectId, user); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR, ProjectRole.CONSUMER})); List sources = sourceService.getSources(projectId); Map sourceMap = new HashMap<>(); for (Source source : sources) { @@ -88,7 +89,7 @@ public RestResponsePage getEntities(@PathVariable String projectId, @ public EntityDto getEntity(@PathVariable String projectId, @PathVariable String entityId, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to retrieve entity: {} | {}", user.getEmail(), projectId, entityId); - projectService.verifyAccess(projectId, user); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR, ProjectRole.CONSUMER})); Entity entity = entityService.retrieveEntity(entityId); Source source = sourceService.getSource(entity.getSourceId(), projectId); Map> mappings = mappingService.retrieveMappingsForEntities(Arrays.asList(new String[]{entityId})); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java index d3522e6..8766c6b 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java @@ -9,6 +9,7 @@ import org.springframework.web.bind.annotation.*; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.domain.*; import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; @@ -23,6 +24,7 @@ import javax.servlet.http.HttpServletRequest; import javax.validation.Valid; +import java.util.Arrays; import java.util.HashMap; import java.util.List; import java.util.Map; @@ -63,7 +65,7 @@ public class MappingsController { public EntityDto getMappings(@PathVariable String projectId, @RequestParam(value = CurationConstants.PARAM_ENTITY_ID) String entityId, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to retrieve mappings: {} | {}", user.getEmail(), projectId, entityId); - projectService.verifyAccess(projectId, user); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR, ProjectRole.CONSUMER})); Entity entity = entityService.retrieveEntity(entityId); return packAndSend(entity, projectId); } @@ -78,7 +80,7 @@ public EntityDto getMappings(@PathVariable String projectId, @RequestParam(value public EntityDto createMapping(@PathVariable String projectId, @RequestBody @Valid MappingCreationDto mappingCreationDto, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to create mapping: {} | {} | {}", user.getEmail(), projectId, mappingCreationDto.getEntityId(), mappingCreationDto.getOntologyTerm().getCurie()); - projectService.verifyAccess(projectId, user); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); Entity entity = entityService.retrieveEntity(mappingCreationDto.getEntityId()); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java index 4dee1c5..7433812 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java @@ -23,6 +23,7 @@ import javax.servlet.http.HttpServletRequest; import javax.validation.Valid; +import java.util.Arrays; import java.util.List; import java.util.stream.Collectors; @@ -51,7 +52,7 @@ public ProjectDto createProject(@RequestBody @Valid ProjectCreationDto projectCr User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to create project: {}", user.getEmail(), projectCreationDto.getName()); Project created = projectService.createProject(ProjectDtoAssembler.disassemble(projectCreationDto, new Provenance(user.getName(), user.getEmail(), DateTime.now())), user); - userService.addProjectToUser(user, created, ProjectRole.ADMIN); + userService.addUserToProject(user, created.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN})); return ProjectDtoAssembler.assemble(created); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java index e6830b9..792f70e 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java @@ -9,6 +9,7 @@ import org.springframework.web.bind.annotation.*; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.domain.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.Source; @@ -22,6 +23,7 @@ import javax.servlet.http.HttpServletRequest; import javax.validation.Valid; +import java.util.Arrays; import java.util.List; import java.util.stream.Collectors; @@ -56,7 +58,7 @@ public class SourcesController { public SourceDto createSource(@RequestBody @Valid SourceCreationDto sourceCreationDto, @PathVariable String projectId, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{} | {}] Request to create source: {}", user.getEmail(), projectId, sourceCreationDto.getName()); - projectService.verifyAccess(projectId, user); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); Source created = sourceService.createSource(SourceDtoAssembler.disassemble(sourceCreationDto, new Provenance(user.getName(), user.getEmail(), DateTime.now())), projectId); return SourceDtoAssembler.assemble(created); } @@ -70,7 +72,7 @@ public SourceDto createSource(@RequestBody @Valid SourceCreationDto sourceCreati public List getSources(@PathVariable String projectId, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to retrieve sources: {}", user.getEmail(), projectId); - projectService.verifyAccess(projectId, user); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR, ProjectRole.CONSUMER})); List sources = sourceService.getSources(projectId); log.info("Found {} sources in project: {}", sources.size(), projectId); return sources.stream().map(SourceDtoAssembler::assemble).collect(Collectors.toList()); @@ -85,7 +87,7 @@ public List getSources(@PathVariable String projectId, HttpServletReq public SourceDto getSource(@PathVariable String projectId, @PathVariable String sourceId, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to retrieve source: {} | {}", user.getEmail(), projectId, sourceId); - projectService.verifyAccess(projectId, user); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR, ProjectRole.CONSUMER})); Source source = sourceService.getSource(sourceId, projectId); return SourceDtoAssembler.assemble(source); } @@ -99,7 +101,7 @@ public SourceDto getSource(@PathVariable String projectId, @PathVariable String public void addDataToSource(@RequestBody List entities, @PathVariable String projectId, @PathVariable String sourceId, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to add data to source: {} | {} | {}", user.getEmail(), projectId, sourceId, entities); - projectService.verifyAccess(projectId, user); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); Source source = sourceService.getSource(sourceId, projectId); for (String entity : entities) { entityService.createEntity(new Entity(null, entity, source.getId(), new Provenance(user.getName(), user.getEmail(), DateTime.now()), EntityStatus.UNMAPPED)); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/UserManagementController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/UserManagementController.java new file mode 100644 index 0000000..dbb2cd8 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/UserManagementController.java @@ -0,0 +1,104 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.controller; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.web.bind.annotation.*; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.UserDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectUserDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.UserDto; +import uk.ac.ebi.spot.ontotools.curation.service.JWTService; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; +import uk.ac.ebi.spot.ontotools.curation.service.UserService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; +import uk.ac.ebi.spot.ontotools.curation.util.CurationUtil; +import uk.ac.ebi.spot.ontotools.curation.util.HeadersUtil; + +import javax.servlet.http.HttpServletRequest; +import javax.validation.Valid; +import java.util.Arrays; +import java.util.List; +import java.util.stream.Collectors; + +@RestController +@RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) +public class UserManagementController { + + private static final Logger log = LoggerFactory.getLogger(ProjectsController.class); + + @Autowired + private JWTService jwtService; + + @Autowired + private ProjectService projectService; + + @Autowired + private UserService userService; + + /** + * GET /v1/projects/{projectId}/users + */ + @GetMapping(value = "/{projectId}" + CurationConstants.API_USERS, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public List getProjectUsers(@PathVariable String projectId, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to retrieve users for project: {}", user.getEmail(), projectId); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN})); + List users = userService.findByProjectId(projectId); + return users.stream().map(UserDtoAssembler::assemble).collect(Collectors.toList()); + } + + /** + * POST /v1/projects/{projectId}/users + */ + @PostMapping(value = "/{projectId}" + CurationConstants.API_USERS, + consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.CREATED) + public UserDto addUserToProject(@RequestBody @Valid ProjectUserDto projectUserDto, @PathVariable String projectId, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to add user to project [{}]", user.getEmail(), projectId, projectUserDto.getUser().getEmail()); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN})); + User targetUser = UserDtoAssembler.disassemble(projectUserDto.getUser()); + + List projectRoles = CurationUtil.rolesFromStringList(projectUserDto.getRoles()); + targetUser = userService.addUserToProject(targetUser, projectId, projectRoles); + return UserDtoAssembler.assemble(targetUser); + } + + /** + * PUT /v1/projects/{projectId}/users/{userId} + */ + @PutMapping(value = "/{projectId}" + CurationConstants.API_USERS + "/{userId}", + consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public UserDto updateUserToProject(@RequestBody @Valid ProjectUserDto projectUserDto, @PathVariable String projectId, @PathVariable String userId, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to update user roles [{}] in project [{}]", user.getEmail(), userId, projectId); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN})); + User targetUser = UserDtoAssembler.disassemble(projectUserDto.getUser()); + List projectRoles = CurationUtil.rolesFromStringList(projectUserDto.getRoles()); + targetUser = userService.updateUserRoles(targetUser, projectId, projectRoles); + return UserDtoAssembler.assemble(targetUser); + } + + /** + * DELETE /v1/projects/{projectId}/users/{userId} + */ + @DeleteMapping(value = "/{projectId}" + CurationConstants.API_USERS + "/{userId}") + @ResponseStatus(HttpStatus.OK) + public void removeUserFromProject(@PathVariable String projectId, @PathVariable String userId, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to remove user roles [{}] in project [{}]", user.getEmail(), userId, projectId); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN})); + User targetUser = userService.findById(userId); + userService.removeProjectFromUser(targetUser, projectId); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectUserDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectUserDto.java new file mode 100644 index 0000000..7ae7a8e --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectUserDto.java @@ -0,0 +1,40 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotEmpty; +import java.io.Serializable; +import java.util.List; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class ProjectUserDto implements Serializable { + + private static final long serialVersionUID = -6159143959677440040L; + + @NotEmpty + @JsonProperty("roles") + private final List roles; + + @NotEmpty + @JsonProperty("user") + private final UserDto user; + + @JsonCreator + public ProjectUserDto(@JsonProperty("user") UserDto user, + @JsonProperty("roles") List roles) { + this.user = user; + this.roles = roles; + } + + public List getRoles() { + return roles; + } + + public UserDto getUser() { + return user; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java index 18d9053..dac1e2d 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java @@ -1,5 +1,6 @@ package uk.ac.ebi.spot.ontotools.curation.service; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; @@ -16,5 +17,5 @@ public interface ProjectService { Project retrieveProject(String projectId, User user); - void verifyAccess(String projectId, User user); + void verifyAccess(String projectId, User user, List roles); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java index 00d2ccd..a23c70d 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java @@ -4,6 +4,8 @@ import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import java.util.List; + public interface UserService { User findByEmail(String email); @@ -11,7 +13,13 @@ public interface UserService { User retrieveRobotUser(); - void addProjectToUser(User user, Project project, ProjectRole role); + User addUserToProject(User user, String projectId, List roles); void removeProjectFromUser(User user, String projectId); + + List findByProjectId(String projectId); + + User updateUserRoles(User targetUser, String projectId, List projectRoles); + + User findById(String userId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java index 439c384..a4845ff 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java @@ -14,6 +14,7 @@ import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; import java.util.ArrayList; +import java.util.Arrays; import java.util.List; import java.util.Optional; import java.util.stream.Collectors; @@ -51,7 +52,7 @@ public Project updateProject(Project project, String projectId, User user) { log.error("[{}] Unable to find project: {}", user.getEmail(), projectId); throw new EntityNotFoundException("[" + user.getEmail() + "] Unable to find project: " + projectId); } - if (hasAccess(user, projectId)) { + if (hasAccess(user, projectId, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN}))) { Project existing = exitingOp.get(); existing.setDatasources(project.getDatasources() != null ? project.getDatasources() : new ArrayList<>()); existing.setOntologies(project.getOntologies() != null ? project.getOntologies() : new ArrayList<>()); @@ -72,7 +73,7 @@ public void deleteProject(String projectId, User user) { log.error("[{}] Unable to find project: {}", user.getEmail(), projectId); throw new EntityNotFoundException("[" + user.getEmail() + "] Unable to find project: " + projectId); } - if (hasAccess(user, projectId)) { + if (hasAccess(user, projectId, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN}))) { Project existing = exitingOp.get(); projectRepository.delete(existing); @@ -88,7 +89,7 @@ public void deleteProject(String projectId, User user) { @Override public Project retrieveProject(String projectId, User user) { log.info("[{}] Retrieving project: {}", user.getEmail(), projectId); - if (!hasAccess(user, projectId)) { + if (!hasAccess(user, projectId, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONSUMER, ProjectRole.CONTRIBUTOR}))) { log.error("[{}] User does not have access project: {}", user.getEmail(), projectId); throw new EntityNotFoundException("[" + user.getEmail() + "] Unable to find project: " + projectId); } @@ -103,9 +104,9 @@ public Project retrieveProject(String projectId, User user) { } @Override - public void verifyAccess(String projectId, User user) { + public void verifyAccess(String projectId, User user, List roles) { log.info("[{}] Verifying access to project: {}", user.getEmail(), projectId); - if (!hasAccess(user, projectId)) { + if (!hasAccess(user, projectId, roles)) { log.error("[{}] User does not have access project: {}", user.getEmail(), projectId); throw new EntityNotFoundException("[" + user.getEmail() + "] Unable to find project: " + projectId); } @@ -116,10 +117,10 @@ public void verifyAccess(String projectId, User user) { } } - private boolean hasAccess(User user, String projectId) { + private boolean hasAccess(User user, String projectId, List roles) { if (user.getRoles() != null) { for (Role role : user.getRoles()) { - if (role.getProjectId().equals(projectId) && role.getRole().equals(ProjectRole.ADMIN)) { + if (role.getProjectId().equals(projectId) && roles.contains(role.getRole())) { return true; } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java index 2e40dc9..ef994fd 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java @@ -5,7 +5,6 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; import uk.ac.ebi.spot.ontotools.curation.domain.auth.Role; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; @@ -68,13 +67,65 @@ public User findRandomSuperUser() { } @Override - public void addProjectToUser(User user, Project project, ProjectRole role) { - log.info("Adding project [{}] to user [{}] with role: {}", project.getId(), user.getName(), role.name()); + public User addUserToProject(User user, String projectId, List roles) { + log.info("Adding project [{}] to user [{}] with roles: {}", projectId, user.getName(), roles); if (user.getRoles() == null) { user.setRoles(new ArrayList<>()); } - user.getRoles().add(new Role(project.getId(), role)); - userRepository.save(user); + List existingRoles = new ArrayList<>(); + List toRemove = new ArrayList<>(); + for (Role role : user.getRoles()) { + if (role.getProjectId().equalsIgnoreCase(projectId)) { + existingRoles.add(role.getRole()); + toRemove.add(role); + } + } + for (Role role : toRemove) { + user.getRoles().remove(role); + } + + for (ProjectRole projectRole : roles) { + if (!existingRoles.contains(projectRole)) { + existingRoles.add(projectRole); + } + } + + for (ProjectRole projectRole : existingRoles) { + user.getRoles().add(new Role(projectId, projectRole)); + } + return userRepository.save(user); + } + + @Override + public User updateUserRoles(User user, String projectId, List projectRoles) { + log.info("Updating roles for user [{}] in project: {}", user.getEmail(), projectId); + List toRemove = new ArrayList<>(); + for (Role role : user.getRoles()) { + if (role.getProjectId().equalsIgnoreCase(projectId)) { + toRemove.add(role); + } + } + for (Role role : toRemove) { + user.getRoles().remove(role); + } + + for (ProjectRole projectRole : projectRoles) { + user.getRoles().add(new Role(projectId, projectRole)); + } + return userRepository.save(user); + } + + @Override + public User findById(String userId) { + log.info("Retrieving user: {}", userId); + + Optional userOptional = userRepository.findById(userId); + if (!userOptional.isPresent()) { + log.error("Unable to find user: {}", userId); + throw new EntityNotFoundException("Unable to find user: " + userId); + } + + return userOptional.get(); } @Override @@ -98,4 +149,13 @@ public void removeProjectFromUser(User user, String projectId) { log.warn("Unable to find project [{}] associated with user: {}", projectId, user.getName()); } } + + @Override + public List findByProjectId(String projectId) { + log.info("Retrieving users for project: {}", projectId); + List users = userRepository.findByRoles_ProjectId(projectId); + log.info("Found {} users.", users.size()); + return users; + } + } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java index f029499..22b7aa3 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java @@ -1,5 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.util; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; + import java.util.ArrayList; import java.util.HashMap; import java.util.List; @@ -8,6 +10,14 @@ public class CurationUtil { + public static List rolesFromStringList(List list) { + List projectRoles = new ArrayList<>(); + for (String pRole : list) { + projectRoles.add(ProjectRole.valueOf(pRole.toUpperCase())); + } + return projectRoles; + } + public static List toLowerCase(List list) { if (list == null) { return null; diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java new file mode 100644 index 0000000..e335b11 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java @@ -0,0 +1,224 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import com.fasterxml.jackson.core.type.TypeReference; +import org.junit.Test; +import org.springframework.http.MediaType; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.UserDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectUserDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.UserDto; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; + +import java.util.Arrays; +import java.util.List; + +import static org.junit.Assert.assertEquals; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; + +public class UsersControllerTest extends IntegrationTest { + + /** + * GET /v1/projects/{projectId}/users + */ + @Test + public void shouldGetUsersForProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + String response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + List actual = mapper.readValue(response, new TypeReference>() { + }); + + assertEquals(1, actual.size()); + assertEquals(user1.getEmail(), actual.get(0).getEmail()); + assertEquals(user1.getName(), actual.get(0).getName()); + } + + /** + * GET /v1/projects/{projectId}/users + */ + @Test + public void shouldNotGetUsersForProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * POST /v1/projects/{projectId}/users + */ + @Test + public void shouldAddUserToProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); + mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + String response = mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isCreated()) + .andReturn() + .getResponse() + .getContentAsString(); + + UserDto actual = mapper.readValue(response, new TypeReference() { + }); + + assertEquals(user2.getEmail(), actual.getEmail()); + assertEquals(user2.getName(), actual.getName()); + assertEquals(1, actual.getRoles().size()); + assertEquals(ProjectRole.CONTRIBUTOR.name(), actual.getRoles().get(0).getRole()); + + response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + List actualList = mapper.readValue(response, new TypeReference>() { + }); + + assertEquals(2, actualList.size()); + + mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); + response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + ProjectDto actualProject = mapper.readValue(response, new TypeReference() { + }); + assertEquals(projectDto.getName(), actualProject.getName()); + assertEquals(projectDto.getDescription(), actualProject.getDescription()); + + } + + /** + * PUT /v1/projects/{projectId}/users/{userId} + */ + @Test + public void shouldUpdateUserToProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + String response = mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isCreated()) + .andReturn() + .getResponse() + .getContentAsString(); + + UserDto actual = mapper.readValue(response, new TypeReference() { + }); + + assertEquals(user2.getEmail(), actual.getEmail()); + assertEquals(user2.getName(), actual.getName()); + assertEquals(1, actual.getRoles().size()); + assertEquals(ProjectRole.CONTRIBUTOR.name(), actual.getRoles().get(0).getRole()); + + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS + "/" + user2.getId(); + ProjectUserDto updatedProjectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONSUMER.name()})); + response = mockMvc.perform(put(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(updatedProjectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + actual = mapper.readValue(response, new TypeReference() { + }); + + assertEquals(user2.getEmail(), actual.getEmail()); + assertEquals(user2.getName(), actual.getName()); + assertEquals(1, actual.getRoles().size()); + assertEquals(ProjectRole.CONSUMER.name(), actual.getRoles().get(0).getRole()); + } + + /** + * DELETE /v1/projects/{projectId}/users/{userId} + */ + @Test + public void shouldDeleteUserRolesInProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + String response = mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isCreated()) + .andReturn() + .getResponse() + .getContentAsString(); + + UserDto actual = mapper.readValue(response, new TypeReference() { + }); + + assertEquals(user2.getEmail(), actual.getEmail()); + assertEquals(user2.getName(), actual.getName()); + assertEquals(1, actual.getRoles().size()); + assertEquals(ProjectRole.CONTRIBUTOR.name(), actual.getRoles().get(0).getRole()); + + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS + "/" + user2.getId(); + mockMvc.perform(delete(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()); + + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); + mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + List actualList = mapper.readValue(response, new TypeReference>() { + }); + + assertEquals(1, actualList.size()); + } +} diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectUserDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectUserDtoTest.java new file mode 100644 index 0000000..a142086 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectUserDtoTest.java @@ -0,0 +1,13 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class ProjectUserDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(ProjectUserDto.class) + .verify(); + } +} \ No newline at end of file From 90ac7754a9916496f1035d2b505739d2e816b97c Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Tue, 16 Feb 2021 22:20:54 +0800 Subject: [PATCH 13/72] Added data import functionality via file upload. --- pom.xml | 4 - .../curation/constants/CurationConstants.java | 2 + .../ontotools/curation/domain/Entity.java | 4 + .../rest/assembler/EntityDtoAssembler.java | 4 +- .../rest/controller/SourcesController.java | 20 +- .../curation/rest/dto/EntityDto.java | 18 + .../dto/dataimport/ImportDataElementDto.java | 47 + .../dto/dataimport/ImportDataPackageDto.java | 30 + .../curation/service/DataImportService.java | 8 + .../service/impl/DataImportServiceImpl.java | 77 + .../service/impl/EntityServiceImpl.java | 10 +- .../service/impl/MatchmakerServiceImpl.java | 4 + src/main/resources/logback-spring.xml | 20 +- .../ontotools/curation/DataImportTest.java | 65 + .../ontotools/curation/IntegrationTest.java | 15 +- .../ontotools/curation/MatchMakingTest.java | 4 +- .../dataimport/ImportDataElementDtoTest.java | 14 + .../dataimport/ImportDataPackageDtoTest.java | 14 + src/test/resources/import_test.json | 49776 ++++++++++++++++ 19 files changed, 50113 insertions(+), 23 deletions(-) create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataElementDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataPackageDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/DataImportService.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/DataImportTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataElementDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataPackageDtoTest.java create mode 100644 src/test/resources/import_test.json diff --git a/pom.xml b/pom.xml index 6bc957b..482e527 100644 --- a/pom.xml +++ b/pom.xml @@ -97,10 +97,6 @@ ${skip.coverage} - - - - ${project.build.directory}/coverage-reports/jacoco.exec diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java index e23d57d..138a6b0 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -6,6 +6,8 @@ public class CurationConstants { public static final String API_SOURCES = "/sources"; + public static final String API_UPLOAD = "/upload"; + public static final String API_PLATFORM_ADMIN = "/platform-admin"; public static final String API_MAPPINGS = "/mappings"; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Entity.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Entity.java index e1cc2da..63be43c 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Entity.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Entity.java @@ -21,6 +21,10 @@ public class Entity { private String name; + private String baseId; + + private String baseField; + @Indexed private String sourceId; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java index 833e714..66c62c5 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java @@ -4,9 +4,9 @@ import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; import uk.ac.ebi.spot.ontotools.curation.domain.MappingSuggestion; import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingSuggestionDto; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; import java.util.List; import java.util.stream.Collectors; @@ -20,6 +20,8 @@ public static EntityDto assemble(Entity entity, SourceDto source, List return new EntityDto(entity.getId(), source, entity.getName(), + entity.getBaseId(), + entity.getBaseField(), entity.getMappingStatus().name(), mappingSuggestionDtos, mappingDtos, diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java index 792f70e..cee4794 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java @@ -7,6 +7,7 @@ import org.springframework.http.HttpStatus; import org.springframework.http.MediaType; import org.springframework.web.bind.annotation.*; +import org.springframework.web.multipart.MultipartFile; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; @@ -48,6 +49,9 @@ public class SourcesController { @Autowired private MatchmakerService matchmakerService; + @Autowired + private DataImportService dataImportService; + /** * POST /v1/projects/{projectId}/sources */ @@ -104,8 +108,22 @@ public void addDataToSource(@RequestBody List entities, @PathVariable St projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); Source source = sourceService.getSource(sourceId, projectId); for (String entity : entities) { - entityService.createEntity(new Entity(null, entity, source.getId(), new Provenance(user.getName(), user.getEmail(), DateTime.now()), EntityStatus.UNMAPPED)); + entityService.createEntity(new Entity(null, entity, null, null, + source.getId(), new Provenance(user.getName(), user.getEmail(), DateTime.now()), EntityStatus.UNMAPPED)); } matchmakerService.runMatchmaking(sourceId, projectService.retrieveProject(projectId, user)); } + + /** + * POST /v1/projects/{projectId}/sources/{sourceId}/upload + */ + @PostMapping(value = "/{projectId}" + CurationConstants.API_SOURCES + "/{sourceId}" + CurationConstants.API_UPLOAD, + consumes = MediaType.MULTIPART_FORM_DATA_VALUE) + @ResponseStatus(HttpStatus.CREATED) + public void importDataFromFile(@RequestParam MultipartFile file, @PathVariable String projectId, @PathVariable String sourceId, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to import data from file [{} - {}] to source: {} | {}", user.getEmail(), file.getOriginalFilename(), file.getSize(), projectId, sourceId); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); + dataImportService.importData(file, projectId, sourceId, user); + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java index 9c85d6b..3fe78f1 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java @@ -27,6 +27,12 @@ public final class EntityDto implements Serializable { @JsonProperty("name") private final String name; + @JsonProperty("baseId") + private final String baseId; + + @JsonProperty("baseField") + private final String baseField; + @JsonProperty("mappingStatus") private final String mappingStatus; @@ -43,6 +49,8 @@ public final class EntityDto implements Serializable { public EntityDto(@JsonProperty("id") String id, @JsonProperty("source") SourceDto source, @JsonProperty("name") String name, + @JsonProperty("baseId") String baseId, + @JsonProperty("baseField") String baseField, @JsonProperty("mappingStatus") String mappingStatus, @JsonProperty("mappingSuggestions") List mappingSuggestions, @JsonProperty("mappings") List mappings, @@ -50,6 +58,8 @@ public EntityDto(@JsonProperty("id") String id, this.id = id; this.source = source; this.name = name; + this.baseId = baseId; + this.baseField = baseField; this.mappingStatus = mappingStatus; this.mappingSuggestions = mappingSuggestions; this.mappings = mappings; @@ -83,4 +93,12 @@ public List getMappingSuggestions() { public List getMappings() { return mappings; } + + public String getBaseId() { + return baseId; + } + + public String getBaseField() { + return baseField; + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataElementDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataElementDto.java new file mode 100644 index 0000000..f9369d3 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataElementDto.java @@ -0,0 +1,47 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.dataimport; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotEmpty; +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class ImportDataElementDto implements Serializable { + + private static final long serialVersionUID = -472202121082840265L; + + @JsonProperty("baseId") + private final String baseId; + + @NotEmpty + @JsonProperty("text") + private final String text; + + @JsonProperty("baseField") + private final String baseField; + + @JsonCreator + public ImportDataElementDto(@JsonProperty("text") String text, + @JsonProperty("baseId") String baseId, + @JsonProperty("baseField") String baseField) { + this.baseId = baseId; + this.text = text; + this.baseField = baseField; + } + + public String getBaseId() { + return baseId; + } + + public String getText() { + return text; + } + + public String getBaseField() { + return baseField; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataPackageDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataPackageDto.java new file mode 100644 index 0000000..6d3e077 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataPackageDto.java @@ -0,0 +1,30 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.dataimport; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotEmpty; +import java.io.Serializable; +import java.util.List; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class ImportDataPackageDto implements Serializable { + + private static final long serialVersionUID = 5122911468770924907L; + + @NotEmpty + @JsonProperty("data") + private final List data; + + @JsonCreator + public ImportDataPackageDto(@JsonProperty("text") List data) { + this.data = data; + } + + public List getData() { + return data; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/DataImportService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/DataImportService.java new file mode 100644 index 0000000..fee8166 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/DataImportService.java @@ -0,0 +1,8 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import org.springframework.web.multipart.MultipartFile; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; + +public interface DataImportService { + void importData(MultipartFile file, String projectId, String sourceId, User user); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java new file mode 100644 index 0000000..756f0a5 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java @@ -0,0 +1,77 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import com.fasterxml.jackson.core.type.TypeReference; +import com.fasterxml.jackson.databind.ObjectMapper; +import org.joda.time.DateTime; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.scheduling.annotation.Async; +import org.springframework.stereotype.Service; +import org.springframework.web.multipart.MultipartFile; +import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.dataimport.ImportDataElementDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.dataimport.ImportDataPackageDto; +import uk.ac.ebi.spot.ontotools.curation.service.DataImportService; +import uk.ac.ebi.spot.ontotools.curation.service.EntityService; +import uk.ac.ebi.spot.ontotools.curation.service.MatchmakerService; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; + +import javax.annotation.PostConstruct; +import java.io.IOException; + +@Service +public class DataImportServiceImpl implements DataImportService { + + private static final Logger log = LoggerFactory.getLogger(DataImportService.class); + + @Autowired + private ProjectService projectService; + + @Autowired + private EntityService entityService; + + @Autowired + private MatchmakerService matchmakerService; + + private ObjectMapper objectMapper; + + @PostConstruct + public void initialize() { + this.objectMapper = new ObjectMapper(); + } + + @Async + @Override + public void importData(MultipartFile file, String projectId, String sourceId, User user) { + log.info("[{} | {}] Importing data from: {}", projectId, sourceId, file.getOriginalFilename()); + Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); + Project project = projectService.retrieveProject(projectId, user); + try { + ImportDataPackageDto importDataPackageDto = this.objectMapper.readValue(file.getInputStream(), new TypeReference() { + }); + + log.info("Received {} entries to import.", importDataPackageDto.getData().size()); + long sTime = System.currentTimeMillis(); + log.info("Creating entities ..."); + int count = 0; + for (ImportDataElementDto importDataElementDto : importDataPackageDto.getData()) { + entityService.createEntity(new Entity(null, importDataElementDto.getText(), importDataElementDto.getBaseId(), importDataElementDto.getBaseField(), + sourceId, provenance, EntityStatus.UNMAPPED)); + count++; + if (count % 100 == 0) { + log.info(" -- [{} | {}] Progress: {} of {}", count, importDataPackageDto.getData().size()); + } + } + long eTime = System.currentTimeMillis(); + log.info("{} entities created [{}s]", count, (eTime - sTime) / 1000); + matchmakerService.runMatchmaking(sourceId, project); + } catch (IOException e) { + log.error("Unable to deserialize import data file: {}", e.getMessage(), e); + } + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java index eeebfda..90966db 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java @@ -28,9 +28,9 @@ public class EntityServiceImpl implements EntityService { @Override public Entity createEntity(Entity entity) { - log.info("[{}] Creating entity: {}", entity.getSourceId(), entity.getName()); + log.debug("[{}] Creating entity: {}", entity.getSourceId(), entity.getName()); Entity created = entityRepository.insert(entity); - log.info("[{}] Entity created: {}", created.getSourceId(), created.getId()); + log.debug("[{}] Entity created: {}", created.getSourceId(), created.getId()); return created; } @@ -56,16 +56,16 @@ public Entity updateMappingStatus(Entity entity, EntityStatus mappingStatus) { @Override public Page retrieveEntitiesForSources(List sources, Pageable page) { - log.info("Retrieving entities for {} sources: {} | {}", sources.size(), page.getPageNumber(), page.getPageSize()); + log.debug("Retrieving entities for {} sources: {} | {}", sources.size(), page.getPageNumber(), page.getPageSize()); List sourceIds = sources.stream().map(Source::getId).collect(Collectors.toList()); Page entityPage = entityRepository.findBySourceIdIn(sourceIds, page); - log.info("Found {} entities.", entityPage.getContent().size()); + log.debug("Found {} entities.", entityPage.getContent().size()); return entityPage; } @Override public Entity retrieveEntity(String entityId) { - log.info("Retrieving entity: {}", entityId); + log.debug("Retrieving entity: {}", entityId); Optional entityOptional = entityRepository.findById(entityId); if (!entityOptional.isPresent()) { log.error("Unable to find entity: {}", entityId); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java index 369c976..a2782f0 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java @@ -59,9 +59,13 @@ public void runMatchmaking(String sourceId, Project project) { User robotUser = userService.retrieveRobotUser(); project.setOntologies(CurationUtil.toLowerCase(project.getOntologies())); project.setPreferredMappintOntology(project.getPreferredMappintOntology().toLowerCase()); + + long sTime = System.currentTimeMillis(); Stream entityStream = entityService.retrieveEntitiesForSource(sourceId); entityStream.forEach(entity -> this.autoMap(entity, project, robotUser)); entityStream.close(); + long eTime = System.currentTimeMillis(); + log.info("[{}] Auto-mapping done in {}s", sourceId, (eTime - sTime) / 1000); } private void autoMap(Entity entity, Project project, User user) { diff --git a/src/main/resources/logback-spring.xml b/src/main/resources/logback-spring.xml index 14f771a..823a79b 100644 --- a/src/main/resources/logback-spring.xml +++ b/src/main/resources/logback-spring.xml @@ -23,11 +23,11 @@ - + @@ -79,11 +79,11 @@ - + diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/DataImportTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/DataImportTest.java new file mode 100644 index 0000000..dc8d0fa --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/DataImportTest.java @@ -0,0 +1,65 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import org.apache.http.entity.ContentType; +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.core.io.ClassPathResource; +import org.springframework.mock.web.MockMultipartFile; +import org.springframework.test.context.ContextConfiguration; +import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.repository.EntityRepository; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.service.MatchmakerService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; + +import java.io.InputStream; + +import static org.junit.Assert.assertEquals; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.ArgumentMatchers.eq; +import static org.mockito.Mockito.doNothing; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; + +@ContextConfiguration(classes = {IntegrationTest.MockTaskExecutorConfig.class, + IntegrationTest.MockMatchmakerServiceConfig.class}) +public class DataImportTest extends IntegrationTest { + + private ProjectDto projectDto; + + private SourceDto sourceDto; + + @Autowired + private EntityRepository entityRepository; + + @Autowired + private MatchmakerService matchmakerService; + + @Override + public void setup() throws Exception { + super.setup(); + projectDto = super.createProject("New Project", "token1", null, null, null); + sourceDto = super.createSource(projectDto.getId()); + doNothing().when(matchmakerService).runMatchmaking(eq(sourceDto.getId()), any()); + } + + @Test + public void shouldImportData() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + + CurationConstants.API_SOURCES + "/" + sourceDto.getId() + CurationConstants.API_UPLOAD; + + InputStream fileAsStream = new ClassPathResource("import_test.json").getInputStream(); + MockMultipartFile testFile = new MockMultipartFile("file", "import_test.json", + ContentType.APPLICATION_JSON.getMimeType(), fileAsStream); + + mockMvc.perform(MockMvcRequestBuilders.multipart(endpoint) + .file(testFile) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isCreated()); + + assertEquals(12443, entityRepository.findAll().size()); + } + +} diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 6fefe2d..12b8759 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -3,6 +3,7 @@ import com.fasterxml.jackson.core.type.TypeReference; import com.fasterxml.jackson.databind.ObjectMapper; import org.apache.commons.codec.digest.DigestUtils; +import org.apache.commons.lang3.RandomStringUtils; import org.joda.time.DateTime; import org.junit.Before; import org.junit.runner.RunWith; @@ -28,12 +29,14 @@ import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceCreationDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.service.MatchmakerService; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; import java.util.ArrayList; import java.util.List; import static org.junit.Assert.*; +import static org.mockito.Mockito.mock; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; @@ -51,6 +54,15 @@ public TaskExecutor taskExecutor() { } } + @Configuration + public static class MockMatchmakerServiceConfig { + + @Bean + public MatchmakerService matchmakerService() { + return mock(MatchmakerService.class); + } + } + @Autowired private MongoTemplate mongoTemplate; @@ -166,7 +178,8 @@ protected SourceDto createSource(String projectId) throws Exception { protected void createEntityTestData(String sourceId, User user) { Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); - entity = entityRepository.insert(new Entity(null, "Achondroplasia", sourceId, provenance, EntityStatus.AUTO_MAPPED)); + entity = entityRepository.insert(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), + RandomStringUtils.randomAlphabetic(10), sourceId, provenance, EntityStatus.AUTO_MAPPED)); OntologyTerm orphaTerm = ontologyTermRepository.insert(new OntologyTerm(null, "Orphanet:15", "http://www.orpha.net/ORDO/Orphanet_15", DigestUtils.sha256Hex("http://www.orpha.net/ORDO/Orphanet_15"), "Achondroplasia", TermStatus.CURRENT.name(), null, null)); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java index 30e3023..b50e223 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java @@ -1,5 +1,6 @@ package uk.ac.ebi.spot.ontotools.curation; +import org.apache.commons.lang3.RandomStringUtils; import org.joda.time.DateTime; import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; @@ -75,7 +76,8 @@ public void setup() throws Exception { * - Hemochromatosis type 1 * - Retinal dystrophy */ - entity = entityService.createEntity(new Entity(null, "Achondroplasia", sourceDto.getId(), provenance, EntityStatus.UNMAPPED)); + entity = entityService.createEntity(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), + RandomStringUtils.randomAlphabetic(10), sourceDto.getId(), provenance, EntityStatus.UNMAPPED)); } @Test diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataElementDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataElementDtoTest.java new file mode 100644 index 0000000..87768c9 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataElementDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.dataimport; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class ImportDataElementDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(ImportDataElementDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataPackageDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataPackageDtoTest.java new file mode 100644 index 0000000..9cf34b9 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataPackageDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.dataimport; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class ImportDataPackageDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(ImportDataPackageDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/resources/import_test.json b/src/test/resources/import_test.json new file mode 100644 index 0000000..b775677 --- /dev/null +++ b/src/test/resources/import_test.json @@ -0,0 +1,49776 @@ +{ + "data": [ + { + "baseId": "15041|15042|133857|133858|133859|133860|133861|133862|133863|133864|207487|221702|240085|240086|240087|240088|240089|240090|240092|240093|240094|240095|240098|303075|303076|303080|303081|303082|303084|303091|303095|303096|303097|303104|303107|303109|303114|303115|303116|303118|303133|303134|303138|303146|303149|303150|303152|303156|303158|303159|303160|303166|303173|306349|306352|306365|306366|306374|306377|306381|306389|306390|306391|306393|306396|306399|306410|306418|306424|306426|306428|306432|306433|306434|306436|306438|306439|306443|311176|311178|311193|311196|311203|311207|311208|311209|311212|311213|311217|311218|311219|311228|311229|311231|311234|311237|311249|311251|311255|311256|311275|311291|311292|311294|311298|311307|311309|311311|311313|311318|311319|311321|311327|311331|311337|311339|311358|311359|311360|311368|311369|311384|311387|311398|311404|311405|311408|311409|311412|311422|311436|311437|311438|311444|311446|311451|311452|311455|311456|362089|362090|362091|362092|395615|395654|395884|395887|395905|395906|395917|396011|396015|396018|396306|396318|396319|396330|411562|411563|438803|441133|441136|441137|456744|457173|457177|457370|457372|457382|522686|522693|522696|522700|522710|522931|522940|522941|522944|522946|523106|523107|561626|561630|561635|561637|561959|561968|561971|561975|561979|561983|561988|566877|566887|566911|577002|577003|577004|581712|620264|620265|636174|636175|636176|636177|636178|636179|636180|636181|636182|636183|636184|636185|636186|636187|636188|636189|636190|636191|636192|636193|636194|636195|636196|636197|636198|636199|651679|651682|651684|651735|683898|683899|683900|683902|683903|683904|683906|683908|683909|683910|683912|683913|685222|685223|687059|687062|687064|687065|687068|687070|687071|687075|689872|689873|689874|689875|689877|692247|692249|692250|722551|744411|759685|833626|833627|833628|833629|833630|833631|833632|833633|833634|833635|833636|833637|833638|833639|833640|833641|833642|833643|898135|898136|898137|898138|898139|898140|898141|898142|898143|898144|898145|898146|898147|898148|898149|898150|898151|898152|898153|898154|898155|898156|898157|898158|898159|898160|898161|898162|898163|898164|898165|898166|898167|898168|898169|898170|898171|898172|898173|898174|898175|898176|898177|898178|898179|898180|898181|898182|898183|898184|898185|898186|898187|898188|898189|898190|898191|898192|898193|898194|898195|898196|898197|898198|898199|898200|898201|898202|898203|898204|898205|898206|898207|898208|898209|898210|898211|898212|898213|898214|898215|898216|898217|898218|898219|898220|898221|898222|898223|898224|898225|898226|898227|898228|898229|898230|898231|898232|898233|898234|898235|898236|898237|898238|898239|898240|898241|900369|900370|900371|900372|900373|900374|900375|924859|924860|924861|924862|924863|924864|933894|933895|940076|945638|945639|945640|945641|945642|945643|945644|955161|955162|963149", + "text": "Spastic paraplegia 48, autosomal recessive" + }, + { + "baseId": "15043|136283|136284|171113|172286|172287|204986|204987|204988|204989|204990|204991|205481|227158|539062|578520|623016|791491|791492|792609|798689", + "text": "Galloway-Mowat syndrome 1" + }, + { + "baseId": "15044|15045|40005|101651|211503|444750|858564|903577|920295|969169", + "text": "Mitochondrial complex 1 deficiency, nuclear type 19" + }, + { + "baseId": "15044|16633|21206|21208|21209|21210|21926|22550|23781|24588|24594|24618|24620|24628|24677|24680|24681|24682|24683|24684|24686|24689|24690|24691|24695|24702|24705|24706|24709|24713|24714|24715|24719|24723|24724|24726|24727|24728|24731|24733|24734|24735|24737|24741|24744|24748|24749|24750|24751|24752|24753|24754|24755|24757|24760|24761|24763|24764|24765|24766|24767|24768|24769|24773|27801|27809|33920|38953|38954|48426|48652|48741|76416|76417|76418|76419|76420|76422|76424|76425|76428|101651|134284|134576|135131|135132|135137|135140|135141|135142|135145|135146|135147|135148|135720|135721|135722|135723|135724|135725|135726|135727|135728|135729|135730|140205|140206|140208|140300|140698|140701|140702|140703|140704|140705|140706|140707|140708|140709|140710|140711|140712|140713|140714|140716|140719|140795|140797|140798|140799|140800|140801|140803|140804|140805|140806|142139|142140|142143|142160|142176|142177|142178|142179|142182|142183|142185|142193|142194|142195|142197|142200|142201|142202|142204|142205|142207|142780|142781|142782|142783|143075|143076|143077|143078|143079|143080|143081|143082|150279|150282|150284|150956|151538|151589|152315|152315|153600|153604|153605|153614|153615|153616|153623|153625|153647|153648|165629|165630|165631|165633|165634|165636|165637|165638|165639|165640|165641|165642|165643|166157|166206|166207|166345|166346|170202|200131|200139|200140|205801|210741|210767|210768|210777|210796|210797|210803|210805|210807|210867|211155|211156|211157|211157|211166|211170|211343|211357|211358|211359|211361|211362|211363|211364|211367|211368|211368|211371|211469|211476|211515|211516|211536|211537|211538|211541|211544|211554|211555|211559|211564|211565|211777|211864|211866|211928|213588|213613|221617|221618|221618|224306|226816|226817|226818|226821|226822|226823|226824|226825|226826|226977|233454|233464|233464|236824|236826|236829|236915|236947|236981|237002|237030|237056|237064|237206|237218|237304|237307|237308|237334|237351|237378|237380|237398|237423|237424|237461|237470|239799|239805|239806|239817|239820|239843|239848|244160|247210|247211|247306|247307|247308|247309|247310|247311|247314|251937|251940|251943|264486|274559|274971|275552|284146|284147|284148|284149|284167|284169|284709|284909|284911|284912|284913|284922|284926|285379|285380|285385|285460|285461|285462|285470|285471|285475|285476|285478|285479|285480|285483|285484|285485|286125|286127|286135|286147|286154|286156|286160|286161|286162|286166|286169|286170|286171|286177|286179|286181|286185|286188|286189|286190|286192|286377|286404|286467|286832|286835|286843|286845|286846|286850|287223|287226|287235|287236|287237|287238|287239|287244|287247|287257|287274|287612|287613|287614|287849|287850|288485|288486|288497|288500|288518|288520|288521|288522|288523|288525|288823|288824|288825|288857|288861|288864|288869|288875|288894|288896|288897|288898|288906|289433|289502|289827|289849|289909|297296|297298|297301|297817|297817|297944|297946|297948|297950|299304|299305|299993|300102|300108|301480|301484|301488|301489|301493|301494|301500|301501|301503|301504|303496|303497|303503|303504|303688|303695|303696|303703|304216|304362|304363|304367|304368|304369|304530|304535|304546|304695|304711|304712|304731|304734|304735|304737|304738|304739|304740|304742|304743|304744|304760|307288|309367|309368|309370|309371|309499|309501|309502|309504|309505|311516|311517|311526|311918|311919|311921|311922|311927|311928|311938|311939|311947|311948|311951|311952|311953|311957|311965|311969|311972|311989|314314|314316|314319|314894|314895|314907|314908|314909|314910|314917|314921|314922|314925|314927|317067|317587|317598|317601|317610|317618|317619|317626|317628|317629|317639|317642|317644|317647|317652|320898|320904|320906|321681|321682|321691|321693|321700|321701|321702|321709|321712|321713|321716|321719|321722|321729|323562|323567|323571|323572|323573|323575|323590|323592|323595|323597|323598|323605|323606|323610|323613|323614|324270|324271|324272|324276|324277|324281|324288|324289|324293|324296|324306|324307|324311|324314|324316|324318|324327|324329|326970|327260|327264|327266|327269|327280|327281|327284|327291|327302|327303|327308|327310|327777|327780|327781|327783|327793|327802|327803|327807|328025|328026|328866|328867|328868|328875|328884|328888|328891|328894|332702|332703|337088|337095|337104|337105|337109|337111|337115|337118|337121|337123|337129|342878|342879|343314|343316|343318|343320|343321|343324|343327|343328|343329|343332|343334|343338|343341|343352|343354|343357|343360|343363|343364|343366|344879|344880|344881|344883|344885|344888|344890|344891|344894|344901|344908|344909|344910|344912|344913|344914|344916|344918|344921|344924|344928|344941|348214|349419|349421|349424|349425|349427|349428|353373|353804|354286|354287|354292|354295|354304|358787|358794|358794|359786|359910|361108|361110|363754|363898|364073|364218|364235|364247|366321|366412|366901|366991|368205|368842|369831|369985|370005|372344|372357|372359|374250|378069|379485|394926|395037|395181|395198|395291|395462|395510|395527|407585|407586|423091|423234|433703|434601|434658|434700|434701|434736|434782|434783|438041|438635|438800|438890|438981|439239|439243|445696|445696|455549|455768|455786|458765|459153|459192|459614|459618|474336|474379|474386|481427|481428|481429|481481|486374|487060|487064|487251|487410|487425|501526|502630|503671|505921|510985|510986|510987|510988|511814|511916|513317|513584|514149|521369|524240|524241|524247|524715|524722|524880|538931|539019|539032|539184|543697|562949|563125|563149|566277|576198|576199|578432|578436|581210|590645|610261|610262|610266|610267|610269|610270|610278|620372|621785|622891|626186|633918|637933|637934|654243|656402|657989|658156|672122|677958|677959|680149|680150|680151|680152|680153|680154|680155|680156|680157|680158|680159|680160|680161|680162|680163|680164|680165|680166|680167|680168|680169|680170|680171|680172|680173|680174|680175|680176|680177|680178|680179|680180|680181|680182|680183|680184|680185|680186|680187|680188|680189|680190|680191|680192|680193|680194|680195|680196|680197|680198|680199|680200|680201|680202|680203|680204|680205|680206|680207|680208|680209|680210|680211|680212|680213|680214|680215|680216|680217|680218|680219|680220|680221|680222|680223|680224|680225|680226|680227|680228|680229|680230|680231|680232|680233|680234|680235|680236|680237|680238|680239|680240|680241|680242|680243|680244|680245|680246|680247|680248|680249|680250|680251|680252|680253|680254|680255|680256|680257|680258|680259|680260|680261|680262|680263|680264|680265|680266|680267|680268|680269|680270|680271|680272|680273|680274|680275|680276|680277|680278|680279|680280|680281|680282|680283|680284|680285|680286|680287|680288|680289|680290|680291|680292|680293|680294|680295|680296|680297|680298|680299|680300|680301|680302|680303|680304|680305|680306|680307|680308|680309|680310|680311|680312|680313|680314|680315|680316|680317|680318|680319|680320|680321|680322|680323|680324|680325|680326|680327|680329|680330|680331|680332|680333|680334|680335|680336|680337|680338|680339|680340|680341|680342|680343|680344|680345|680346|680347|680348|680349|680350|680351|680352|680353|680354|680355|680356|680357|680358|680359|680360|680361|680362|680363|680364|680365|680366|680367|680368|680369|680370|680371|680372|680373|680374|680375|680376|680377|680378|680379|680380|680381|680383|680384|680385|680386|680387|680388|680389|680390|680391|680392|680393|680394|680395|680396|680397|680398|680399|680400|680401|680403|680404|680405|680407|680408|680409|680410|680411|680412|680413|680414|680415|680416|680417|680418|680419|680420|680421|680422|680423|680424|680425|680426|680427|680428|680429|680430|680431|680432|680433|680434|680435|680436|680437|680438|680439|680440|680441|680442|680443|680444|680445|680446|680447|680448|680449|680450|680451|680452|680453|680454|680455|680456|680457|680458|680459|680460|680461|680462|680463|680464|680465|680466|680467|680468|680469|680470|680471|680472|680473|680474|680475|680476|680477|680478|680479|680480|680481|680482|680483|680484|680485|680486|680487|680488|680489|680490|680491|680492|680493|680494|680495|680496|680497|680498|680499|680500|680501|680502|680503|680504|680505|680506|680507|680508|680509|680510|680511|680512|680513|680514|680515|680516|680517|680518|680519|680520|680521|680522|680523|680524|680525|680526|680527|680528|680529|680530|680531|680532|680533|680534|680535|680536|680537|680538|680539|680540|680541|680542|680543|680544|680545|680546|680547|680548|680549|680550|680551|680552|680553|680554|680555|680556|680557|680558|680559|680560|680561|680562|680563|680564|680565|680566|680567|680568|680569|680570|680571|680572|680573|680574|680575|680576|680577|680578|680579|680580|680581|680582|680583|680584|680585|680586|680587|680588|680589|680590|680591|680592|680593|680594|680595|680596|680597|680598|680599|680600|680601|680602|680603|680604|680605|680606|680607|680608|680609|680610|680611|680612|680613|680614|680615|680617|680618|680619|680620|680621|680622|680623|680624|680625|680626|680627|680628|680629|680630|680631|680632|680633|680634|680635|680636|680637|680638|680639|680640|680641|680642|680643|680644|680645|680646|680647|680648|680649|680650|680651|680652|680653|680654|680655|680656|680657|680658|680659|680660|680661|680662|680663|680664|680665|680666|680667|680668|680669|680670|680671|680672|680673|680674|680675|680676|680677|680678|680679|680680|680681|680682|680683|680684|680685|680686|680687|680688|680689|680690|680691|680692|680693|680694|680695|680696|680697|680698|680699|680700|680701|680702|680703|680704|680705|680706|680707|680708|680709|680710|680711|680712|680713|680714|680715|680716|680717|680718|680719|680720|680721|680722|680723|680724|680725|680726|680727|680728|680729|680730|680731|680732|680733|680734|680735|680736|680737|680738|680739|680740|680741|680742|680743|680744|680745|680746|680747|680748|680749|680750|680751|680752|680753|680754|680755|680756|680757|680758|680759|680760|680761|680762|680763|680764|680765|680766|680767|680768|680769|680770|680771|680772|680773|680774|680775|680776|680777|680778|680779|680780|680781|680782|680783|680784|680785|680786|680787|680788|680789|680790|680791|680792|680793|680794|680795|680796|680797|680798|680799|680800|680801|680802|680803|680804|680805|680806|680807|680808|680809|680810|680811|680812|680813|680814|680815|680816|680817|680818|680819|680820|680821|680822|680823|680824|680825|680826|680827|680828|680829|680830|680831|680832|680833|680834|680835|680836|680837|680838|680839|680840|680841|680842|680843|680844|680845|680846|680847|680848|680849|680850|680851|680852|680853|680854|680855|680856|680857|680858|680859|680860|680861|680862|680863|680864|680865|680866|680867|680868|680869|680870|680871|680872|680873|680874|680875|680876|680877|680878|680879|680880|680881|680883|680884|680885|680886|680887|680888|680889|680890|680891|680892|680893|680894|680895|680896|680898|680899|680900|680901|680902|680903|680904|680905|680906|680907|680909|680910|680911|680912|680913|680914|680915|680916|680917|680918|680919|680920|680921|680922|680923|680924|680925|680926|680927|680928|680929|680930|680931|680932|680933|680934|680935|680936|680937|680938|680939|680940|680941|680942|680943|680944|680945|680946|680947|680948|680949|680950|680951|680952|680953|680954|680955|680956|680957|680958|680959|680960|680961|680962|680964|680965|680966|680967|680968|680969|680970|680971|680972|680973|680974|680975|680976|680977|680978|680979|680980|680981|680982|680983|680984|680985|680986|680987|680988|680989|680990|680991|680992|680993|680994|680995|680996|680997|680998|680999|681000|681001|681002|681003|681004|681005|681006|681007|681008|681009|681010|681011|681012|681013|681014|681015|681016|681017|681018|681019|681020|681021|681022|681023|681024|681025|681026|681027|681028|681029|681030|681031|681032|681033|681034|681035|681036|681037|681038|681039|681040|681041|681042|681043|681044|681045|681046|681047|681048|681049|681050|681051|681052|681053|681054|681055|681056|681057|681058|681059|681060|681061|681062|681063|681064|681065|681066|681067|681068|681069|681070|681071|681072|681073|681074|681075|681076|681077|681078|681079|681080|681081|681082|681083|681084|681085|681086|681087|681088|681089|681090|681091|681092|681093|681094|681095|681096|681097|681098|681099|681100|681101|681102|681103|681104|681105|681106|681107|681108|681109|681110|681111|681112|681113|681114|681115|681116|681117|681118|681119|681120|681122|681123|681124|681125|681126|681127|681128|681129|681130|681131|681132|681133|681134|681135|681136|681137|681138|681139|681140|681141|681142|681143|681144|681145|681146|681147|681148|681149|681150|681151|681152|681153|681154|681155|681156|681157|681158|681159|681161|681162|681163|681164|681165|681166|681167|681168|681169|681170|681171|681172|681173|681174|681175|681176|681177|681178|681179|681180|681181|681182|681183|681184|681185|681186|681187|681188|681189|681190|681191|681192|681193|681194|681195|681196|681197|681198|681199|681200|681201|681202|681203|681204|681205|681206|681207|681208|681209|681210|681211|681212|681213|681214|681215|681216|681217|681218|681219|681220|681221|681222|681223|681224|681225|681226|681227|681228|681229|681230|681231|681232|681233|681234|681235|681236|681237|681238|681239|681240|681241|681242|681243|681244|681245|681246|681247|681248|681249|681250|681251|681252|681254|681255|681256|681257|681258|681259|681260|681261|681262|681263|681264|681265|681266|681267|681268|681269|681270|681271|681272|681273|681274|681275|681276|681277|681278|681279|681280|681281|681282|681283|681284|681285|681286|681287|681288|681289|681290|681291|681292|681293|681294|681295|681296|681297|681298|681299|681300|681301|681302|681303|681304|681305|681306|681307|681308|681309|681310|681311|681312|681313|681314|681315|681316|681317|681318|681319|681320|681321|681322|681323|681324|681325|681326|681327|681328|681329|681330|681331|681332|681333|681334|681335|681336|681337|681338|681339|681340|681341|681342|681343|681344|681345|681346|681347|681348|681349|681350|681351|681352|681353|681354|681355|681356|681357|681358|681359|681360|681361|681362|681363|681364|681365|681366|681367|681368|681369|681370|681371|681372|681373|681374|681375|681376|681377|681378|681379|681380|681381|681382|681383|681384|681385|681386|681387|681388|681389|681390|681391|681392|681393|681394|681395|681396|681397|681398|681399|681400|681401|681402|681403|681404|681405|681406|681407|681408|681409|681410|681411|681412|681413|681414|681415|681416|681417|681418|681419|681420|681421|681422|681423|681424|681425|681426|681427|681428|681429|681430|681431|681432|681433|681434|681435|681436|681437|681438|681439|681440|681441|681442|681443|681444|681445|681446|681447|681448|681449|681450|681451|681452|681453|681454|681455|681456|681457|681458|681459|681460|681461|681462|681463|681464|681465|681466|681467|681468|681469|681470|681471|681472|681473|681474|681475|681476|681477|681478|681479|681480|681481|681482|681483|681484|681485|681486|681487|681488|681489|681490|681491|681492|681493|681494|681495|681496|681498|681499|681500|681501|681502|681503|681504|681505|681506|681507|681508|681509|681510|681511|681512|681513|681514|681515|681516|681517|681518|681519|681520|681521|681522|681523|681524|681525|681526|681527|681528|681529|681530|681531|681532|681533|681534|681535|681536|681537|681538|681539|681540|681541|681542|681543|681544|681545|681546|681547|681548|681549|681550|681551|681552|681553|681554|681555|681556|681557|681558|681559|681560|681561|681562|681563|681564|681565|681566|681567|681568|681569|681570|681571|681572|681573|681574|681575|681576|681577|681578|681579|681580|681581|681582|681584|681585|681586|681587|681588|681589|681590|681591|681592|681593|681594|681595|681596|681597|681598|681599|681600|681601|681602|681603|681604|681605|681606|681607|681608|681609|681610|681611|681612|681613|681614|681615|681616|681617|681618|681619|681620|681621|681622|681623|681624|681625|681626|681627|681628|681629|681630|681631|681632|681633|681634|681635|681636|681637|681638|681639|681640|681641|681642|681643|681644|681645|681646|681647|681648|681649|681650|681651|681652|681653|681654|681655|681656|681657|681658|681659|681660|681661|681662|681663|681664|681665|681666|681667|681668|681669|681670|681671|681672|681673|681674|681675|681676|681677|681678|681679|681680|681681|681682|681683|681684|681685|681686|681687|681688|681689|681690|681691|681692|681693|681694|681695|681696|681697|681698|681699|681700|681701|681702|681703|681704|681705|681706|681707|681708|681709|681710|681711|681712|681713|681714|681715|681716|681717|681718|681719|681720|681721|681722|681723|681724|681725|681726|681727|681728|681729|681730|681731|681732|681733|681734|681735|681736|681737|681738|681739|681740|681741|681742|681743|681744|681745|681746|681747|681748|681749|681750|681751|681752|681753|681754|681755|681756|681757|681758|681759|681760|681761|681762|681763|681764|681765|681766|681767|681768|681769|681770|681771|681772|681773|681774|681775|681776|681777|681778|681779|681780|681781|681782|681783|681784|681785|681786|681787|681788|681789|681790|681791|681792|681793|681794|692628|721426|728544|737684|738219|740562|740571|749527|752884|752888|755603|765983|767230|773004|773005|788673|788674|788675|790154|790155|790156|790157|790158|790856|790857|791160|791161|791162|802181|808623|830799|835733|835734|835735|835736|835737|861128|866716|866717|866718|866719|866720|866721|866722|866723|866724|866725|866726|866727|866728|866729|866730|866731|866732|866733|866734|866735|866736|866737|866738|866739|868113|868114|868115|868116|868117|868118|868416|868417|868418|868419|868420|868421|868422|868423|868424|868550|868551|868552|868553|868554|868555|868556|868557|868558|868559|868560|868561|868562|868563|868564|868565|868566|868567|868684|868685|868692|868693|876766|876767|876768|876769|876770|876771|876772|876773|876774|876775|876776|876777|876778|876779|876780|876781|876782|876783|876784|876785|876786|876787|876788|876789|876790|876791|876792|876793|876794|876795|876796|876797|876798|876799|876800|876801|876802|876803|880000|880001|880002|880003|880004|880463|880464|880703|883447|883448|883449|883450|883451|883452|883453|883454|883455|883456|883457|883458|883459|883460|883461|883462|883463|883464|883465|883466|883467|883468|883469|883470|883471|883472|883473|883474|883475|883476|883749|883750|884264|884265|884266|884267|884268|884269|884270|884271|884272|884273|884274|884275|884276|884277|884278|884279|884280|884281|884282|884283|884284|884285|884286|884287|884288|884289|884290|884291|884292|884293|884294|884295|884296|884297|884298|884299|884300|884301|884302|884303|884304|884305|884306|884307|884308|884309|884310|884311|884312|884313|884314|884315|884316|884317|884318|884319|884320|884321|884322|884323|884324|884325|884326|884327|884328|884329|884330|884331|884332|884333|884334|884335|884336|884337|884338|884339|884340|884341|884342|884343|884344|884345|884346|887243|887244|887325|887326|894085|894086|894087|894088|894089|894515|894516|894517|894518|894519|894595|894596|894597|896089|896117|897233|897234|897235|897236|897237|897238|897239|897240|897241|897242|897243|897244|897245|897246|897247|897248|897249|897250|897251|897252|897253|897254|897255|901321|901322|901323|901324|901325|901326|901327|901328|901329|901330|903332|903333|916955|917033|917034|918954|925463|946470|961238|961239|961245|961247|961248|965916|972561|977191|977192|979997|979998|979999|980000|980001|980002|980003|980004|980005|980006|980007|980008|980009|980010|980011|980012|980013|980014|980015|980016", + "text": "Leigh syndrome" + }, + { + "baseId": "15046|15236|15318|15324|15349|15400|15439|15615|15628|15630|15716|15784|15974|15994|16007|16133|16151|16184|16312|16323|16367|16422|16458|16464|16633|16726|16979|17159|17319|17320|17323|17336|17337|17390|17395|17521|17553|17579|17586|17682|17683|17810|17818|17862|17865|18006|18013|18040|18090|18096|18102|18234|18235|18425|18491|18497|18607|18731|18810|18811|18814|18816|18833|18928|18938|19066|19128|19152|19218|19391|19500|19501|19560|19587|19630|19763|19914|20037|20039|20059|20084|20146|20153|20219|20316|20348|20353|20418|20442|20643|20807|21046|21060|21078|21102|21234|21326|21328|21502|21573|21646|21769|21827|21833|21860|21965|22069|22109|22115|22144|22148|22151|22154|22159|22161|22165|22168|22169|22170|22175|22182|22183|22197|22198|22202|22203|22204|22207|22214|22235|22244|22253|22256|22268|22276|22277|22409|22425|22536|22555|22577|22671|22673|22712|22745|22750|22756|22866|22872|22918|22927|23126|23145|23217|23308|23380|23381|23388|23434|23460|23472|23473|23546|23660|23730|23767|23938|23992|24018|24073|24127|24451|24472|24508|24550|24813|24967|25066|25399|25400|25402|25407|25425|25428|25747|25851|25918|25919|26019|26559|26663|26697|26735|26774|26783|26784|26848|26850|26854|26858|26872|26915|26916|26930|26949|27005|27010|27014|27077|27189|27190|27194|27268|27365|27382|27493|27592|27619|27625|27626|27628|27633|27641|27642|27809|27827|27865|27992|28003|28229|28304|28365|28368|28370|28390|28400|28435|28443|28521|28536|28799|28846|28958|28996|28997|29012|29014|29018|29019|29020|29317|29528|30295|30372|30980|31208|31366|31368|31377|31379|31388|31484|31832|32039|32043|32469|32533|33000|33006|33314|33348|33381|33420|33505|33997|34034|34059|34160|34300|34439|34654|36342|36355|36442|36750|38549|38570|38652|38711|38725|38761|38788|38811|38818|38884|38952|39106|39290|39291|39299|39300|39487|39513|39527|39720|39727|39776|39865|39866|39869|39897|39972|40005|40030|40156|40173|40257|40285|40316|40327|40328|40337|40348|44400|44440|44461|44484|44488|44489|44490|44493|44494|44496|44497|44499|44502|44503|44506|44514|44516|44517|44523|44524|44525|44529|44530|44531|44533|44534|44536|44557|44558|44608|45439|45440|45442|45777|45778|45849|45851|45852|46402|46555|46816|46833|46903|47062|47455|47604|48018|48170|48176|48180|48194|48264|48311|48375|48386|48388|48407|48413|48435|48821|48854|48857|48982|48983|48992|48995|48998|49023|49032|49121|49124|49132|49148|49210|49217|49751|49898|50104|51081|51184|51200|51577|51609|51746|52111|52388|52510|52745|52746|52755|53028|53352|53356|53895|53973|54350|54363|54879|55152|55179|55624|56442|56752|57231|57683|57788|57854|57870|58315|59375|59407|59458|59852|67825|67827|67841|67842|67892|67894|67897|67936|67985|68035|68072|68116|68124|68128|68133|68173|68197|68232|68233|68247|68248|68262|68306|68352|68353|68358|68388|68404|68418|68457|68469|68579|68588|68590|68607|68608|68620|68638|68650|68664|68669|68683|68689|68722|68738|68749|68761|70540|70566|70599|71232|71343|71431|71437|75108|75124|75126|75128|75299|75301|75392|75398|76349|76639|76889|76993|77019|77354|77632|77785|78125|78177|78255|78648|79197|79370|79435|79449|79630|79648|83803|85113|94253|94343|94427|94529|94843|96865|97526|98267|98638|98658|99058|99060|99061|99063|99064|99155|99627|99628|99796|100211|100984|101099|101102|101692|101728|101731|101827|103535|103564|104217|104942|105155|105192|105199|105287|105321|106594|106600|106647|106822|108487|131915|131928|132585|132613|132615|132675|132824|133707|134195|134887|136364|136372|136464|136547|136550|136552|136777|136791|136891|137840|138462|138657|139369|139377|139622|141332|141336|143140|143157|143229|143258|143271|150150|151141|151296|151696|151755|152734|152761|153138|153150|153315|153446|153481|153711|153719|153754|165524|165563|165747|165751|165790|165813|165903|165918|166023|166024|166148|166193|166304|166531|167591|167603|167702|167722|167735|167786|167959|168010|168032|168175|168183|168322|168637|168914|168920|169007|169009|169078|169084|169276|169341|169490|169579|169780|169799|169816|170026|170145|170184|170985|171032|171185|171241|171247|171263|171268|171351|171715|171771|171780|171808|171866|171873|171903|172130|172260|172292|172435|172539|173141|173147|174035|174036|174176|175066|175203|175344|175658|176368|176600|176940|176948|177077|177326|177364|177736|178280|178380|178417|178518|179142|179160|179638|180039|181285|181507|181511|181517|183853|184512|185520|185664|185938|186861|186914|186938|187125|187166|187207|187353|187362|187372|187388|187405|187603|187611|187773|187954|188001|188055|188069|188114|188142|188155|188339|188678|189041|189409|189629|190049|190129|190159|190163|190184|190255|190256|191073|191499|191552|191615|191784|191820|192080|192084|192090|192364|192400|192497|192578|192625|192824|192903|193055|193096|193122|193139|193201|193423|193438|193987|194136|194356|194359|194374|194512|194747|194820|195231|195232|195233|195234|195380|195531|195855|195898|196191|196196|196387|196407|196661|196743|196819|196904|197472|197632|197731|197806|198031|198035|198239|198620|199192|199526|200000|200042|200401|201132|201142|201400|201506|201650|201884|201887|202163|202301|202593|202823|202832|203229|203236|203240|203319|203426|203574|203577|203606|203702|203782|203794|204057|204059|204220|204295|204356|204638|205055|205064|205160|205213|205214|205215|205216|205217|205218|205219|205220|205221|205222|205223|205224|205225|205226|205227|205228|205229|205230|205231|205232|205233|205234|205235|205236|205237|205238|205239|205240|205241|205242|205243|205244|205245|205246|205247|205248|205249|205250|205251|205252|205253|205254|205255|205256|205257|205258|205259|205260|205261|205262|205263|205264|205266|205267|205268|205269|205270|205271|205272|205273|205274|205275|205276|205277|205278|205279|205280|205281|205282|205283|205284|205285|205286|205287|205288|205289|205290|205291|205292|205293|205294|205295|205296|205297|205298|205299|205300|205301|205302|205303|205304|205305|205306|205307|205308|205309|205310|205311|205312|205313|205314|205315|205316|205318|205319|205320|205321|205322|205323|205324|205325|205326|205327|205328|205329|205330|205331|205332|205333|205334|205335|205336|205337|205338|205339|205340|205341|205342|205343|205344|205345|205346|205347|205348|205349|205350|205351|205352|205353|205560|205614|205685|205712|205749|205751|205760|205774|205782|205793|206604|206607|206662|206847|206974|207083|207373|207384|207951|208334|208381|208500|208585|209009|209348|209451|209776|209960|210567|210770|210844|210875|211234|211259|211289|211398|211619|211676|212004|212652|213812|213813|214063|214088|214097|214182|214194|214282|214480|214565|214794|214795|215003|215013|215042|215122|215784|216792|216945|216948|217281|221666|221670|221765|222374|223295|223780|224213|224490|224581|224696|224794|225802|225872|226114|226499|226500|226616|226619|226644|226676|226714|226843|226863|226864|226865|226866|226867|226868|226869|226870|226871|226872|226873|226874|226875|226876|226877|226878|226879|226880|226881|226882|226883|226884|226885|226886|226887|226888|226889|226890|226891|226892|226893|226894|226895|226896|226897|226898|226899|226900|226901|226902|226903|226904|226905|226906|226907|226908|226909|226910|226911|226912|226913|226914|226915|226916|226917|226918|226919|226920|226921|226922|226923|226924|226925|226926|226927|226928|226929|226930|226931|226932|226933|226934|226935|226936|226937|226938|226939|226940|226941|226943|226944|226945|226946|226947|226948|226949|226950|226951|226952|226953|226954|226955|226956|226957|226958|226959|226960|226961|226962|226963|226964|226965|226966|226967|226968|226969|226970|226971|226972|226973|226974|226975|226976|226977|226978|226979|226980|226981|226982|226983|226984|226985|226986|226987|226988|226990|226991|226992|226993|226994|226995|226996|226997|227149|227442|227573|227575|227704|227705|227916|227917|228522|229258|230744|231319|231722|233842|236970|237087|237161|237193|237361|237522|237540|237577|237580|237610|238040|238140|238141|238144|238265|238371|238448|238767|239060|239061|239063|239064|239066|239067|239068|239069|239071|239653|239729|239988|239989|241557|243874|243879|243992|244362|244490|246907|247138|247331|247398|247444|248718|248801|248902|249186|249187|249402|249403|249404|249405|251795|251796|252568|252569|252571|252573|252615|252616|252617|252618|252641|252642|258028|258132|259310|259632|259636|259703|259731|259764|259766|259867|259931|260056|260057|260112|260118|260139|260145|260197|260201|260216|260226|260231|260237|260332|260464|260844|260860|260979|262449|262652|262666|263628|263783|263820|263863|263933|263996|264040|264172|264223|264289|264295|264306|264319|264409|264452|264453|264455|264472|264579|264585|264701|264749|264790|264818|264834|264868|264918|264950|265019|265026|265061|265066|265087|265161|265169|265356|265486|265487|265683|265716|265961|265994|266825|266963|267044|268409|268428|268514|268930|269056|269643|269985|270479|270643|271442|271805|273821|273837|273988|273989|275011|275215|275373|275375|277307|277378|277383|277389|282155|284036|285551|287891|288002|288297|288300|288305|288307|289063|292154|299663|301687|305992|309497|336769|344606|345159|345525|347796|348767|357238|357818|357961|358169|358626|358688|359044|359063|359196|359235|359406|359436|359455|359567|359705|359719|359788|359810|359832|359886|360026|360041|360082|360358|360425|360481|360483|360506|360537|360663|360827|360953|360954|360957|361201|361249|361750|362169|362226|362295|362304|362305|362307|362521|362591|362622|362760|362761|362861|363354|363355|363745|363797|364009|364135|366251|366307|367600|368900|369575|369680|369986|372204|372611|373997|375991|376041|376243|377729|378314|378330|379337|379439|379953|380054|380077|380084|380086|380179|380180|380317|389795|390603|390793|390806|390810|390816|390817|391721|393213|393272|393277|393293|393419|393597|393598|393622|394025|394498|394831|394832|395365|395425|395446|395633|395647|396091|396092|396688|398044|398057|398531|399614|399617|400867|401348|402131|404064|404352|404579|404621|404685|404973|405151|405662|405676|406085|406103|406301|406308|406311|406361|406643|406645|406864|407111|407285|407314|407321|407414|407685|407716|407722|407832|407854|407888|407897|408367|408418|408443|408758|408791|409082|409186|409190|409370|409871|409927|410051|410288|410566|410579|410785|410844|410863|411055|411222|411351|411396|411406|411425|411554|413210|413341|413523|413586|413927|414715|415042|415146|415340|415341|415555|415566|415608|415625|419002|420424|420436|420472|421170|421413|421466|421541|421560|421579|421588|421607|421611|421748|421767|421792|421824|422065|422244|422482|422499|424269|424347|424352|424367|424377|424395|424464|424467|424470|424508|424589|424658|424677|424961|424962|424990|425322|425370|425418|425484|425532|425603|425749|425767|426143|426170|426193|426373|426672|427996|428002|428365|428625|429423|429631|430907|430936|430947|431000|431351|431521|431537|431679|431718|431903|432314|432466|432635|432665|433013|433016|433030|433034|433282|433314|433525|433962|434040|434511|434544|434545|434546|434666|434772|434926|434929|438002|438371|438534|438582|438780|439569|439573|440007|440754|440756|440913|441110|441271|442550|442849|442981|443454|443460|443498|443697|443738|443981|444179|444522|444732|444898|444924|445137|445168|445184|445240|445319|445470|445592|445607|445843|446047|446115|446249|446250|446292|446299|446559|446656|446660|446696|446866|448729|448971|450123|450636|450732|450997|451256|451688|451689|451704|451720|451751|452021|452043|452162|452171|452193|453630|454493|455442|455873|456090|456312|456324|456355|456365|456419|456421|456650|457003|457194|457446|457777|458147|458651|458664|460390|462249|462324|462592|463464|463729|463941|464077|464162|465968|467831|468132|468163|468512|469277|469791|470488|470673|470963|472081|481276|481307|481337|481342|481356|481504|481686|481690|481755|482036|482116|482203|482260|482276|485751|485882|486168|486695|486748|486791|487108|487162|487182|487199|487206|487224|487274|487294|487785|487920|488100|489035|489489|489825|490617|490705|490839|490959|491714|492188|493048|493323|493414|493478|493936|494972|495044|495146|495185|495875|495880|496319|496394|496909|497599|497712|497837|508309|508821|508824|508884|509136|509219|510978|511019|511147|511148|511149|511150|511151|511152|511153|511154|511155|511156|511157|511158|511159|511160|511161|511162|511163|511164|511165|511166|511167|511168|511169|511170|511171|511172|511173|511174|511175|511176|511177|511178|511179|511180|511181|511182|511183|511184|511185|511186|511187|511188|511189|511190|511191|511192|511193|511194|511195|511196|511197|511198|511199|511200|511201|511202|511203|511204|511205|511206|511207|511208|511209|511210|511211|511212|511213|511214|511215|511216|511217|511218|511219|511220|511221|511222|511223|511224|511225|511226|511227|511228|511229|511230|511231|511232|511233|511234|511235|511236|511237|511238|511239|511240|511241|511242|511243|511244|511245|511246|511247|511248|511249|511250|511251|511252|511253|511254|511255|511256|511257|511258|511259|511260|511261|511262|511263|511264|511265|511266|511267|511268|511269|511270|511271|511272|511273|511274|511275|511276|511277|511278|511279|511280|511281|511282|511283|511284|511285|511286|511287|511288|511289|511290|511291|511292|511293|511294|511295|511296|511297|511298|511299|511300|511301|511302|511303|511304|511305|511306|511307|511308|511309|511310|511311|511312|511313|511314|511315|511316|511317|511318|511319|511320|511321|511322|511323|511324|511325|511326|511327|511328|511329|511330|511331|511332|511333|511334|511335|511336|511337|511338|511339|511340|511341|511342|511343|511344|511345|511346|511347|511348|511349|511350|511351|511352|511353|511354|511355|511356|511357|511358|511359|511360|511361|511362|511363|511364|511365|511366|511367|511368|511369|511370|511371|511372|511373|511374|511375|511376|511377|511378|511379|511380|511381|511382|511383|511384|511385|511386|511387|511388|511389|511390|511391|511392|511393|511394|511395|511396|511397|511398|511399|511400|511401|511402|511403|511404|511405|511406|511407|511408|511409|511410|511411|511412|511413|511414|511415|511416|511417|511418|511419|511420|511421|511422|511423|511424|511425|511426|511427|511428|511429|511430|511431|511432|511433|511434|511435|511436|511437|511438|511439|511440|511441|511442|511443|511444|511445|511446|511447|511448|511449|511450|511451|511452|511453|511454|511455|511456|511457|511458|511459|511460|511461|511462|511463|511464|511465|511466|511467|511468|511469|511470|511471|511472|511473|511474|511475|511476|511477|511478|511479|511480|511481|511482|511483|511484|511485|511486|511487|511488|511489|511490|511491|511492|511493|511494|511495|511496|511497|511498|511499|511500|511501|511502|511503|511504|511505|511506|511507|511508|511509|511510|511511|511512|511513|511514|511515|511516|511517|511518|511519|511520|511521|511522|511523|511524|511525|511526|511527|511529|511530|511531|511532|511533|511534|511535|511536|511537|511538|511539|511540|511541|511542|511543|511544|511545|511546|511547|511548|511549|511550|511551|511552|511553|511554|511555|511556|511557|511558|511559|511560|511561|511562|511563|511564|511565|511566|511567|511568|511569|511570|511571|511572|511573|511574|511575|511576|511577|511578|511579|511580|511581|511582|511583|511584|511585|511586|511587|511588|511589|511590|511591|511592|511593|511594|511595|511596|511597|511598|511599|511600|511601|511602|511603|511604|511605|511606|511607|511608|511609|511610|511611|511612|511613|511614|511615|511616|511617|511618|511619|511620|511621|511622|511623|511624|511625|511626|511627|511628|511629|511630|511631|511632|511633|511634|511635|511636|511637|511638|511639|511640|511641|511642|511643|511644|511645|511646|511647|511648|511649|511650|511651|511652|511653|511654|511655|511656|511657|511658|511659|511660|511661|511662|511663|511664|511665|511666|511667|511668|511669|511670|511671|511672|511673|511674|511675|511676|511677|511678|511679|511680|511681|511682|511683|511684|511685|511686|511687|511688|511689|511690|511691|511692|511693|511694|511695|511696|511697|511698|511699|511700|511701|511702|511703|511704|511705|511706|511707|511708|511709|511710|511711|511712|511713|511714|511715|511716|511717|511718|511719|511720|511721|511722|511723|511724|511725|511726|511727|511728|511729|511730|511731|511732|511733|511734|511735|511736|511737|511738|511739|511740|511741|511742|511743|511744|511745|511746|511747|511748|511749|511750|511751|511752|511753|511754|511755|511756|511757|511758|511759|511760|511761|511762|511763|511764|511765|511766|511767|511768|511769|511770|511771|511772|511773|511774|511775|511776|511777|511778|511779|511780|511781|511782|511783|511784|511785|511786|511787|511788|511789|511790|511791|511792|511793|511794|511795|511796|511797|511798|511799|511800|511801|511802|511803|511804|511805|511806|511807|511808|511809|511810|511811|511812|511813|511814|511815|511816|511817|511818|511819|511820|511821|511822|511823|511824|511825|511826|511827|511828|511829|511830|511831|511832|511833|511834|511835|511836|511837|511838|511839|511840|511841|511842|511843|511844|511845|511846|511847|511848|511849|511850|511851|511852|511853|511854|511855|511856|511857|511858|511859|511860|511861|511862|511863|511864|511865|511866|511867|511868|511869|511870|511871|511872|511873|511874|511875|511876|511877|511878|511879|511880|511881|511882|511883|511884|511885|511886|511887|511888|511889|511890|511891|511892|511893|511894|511895|511896|511897|511898|511899|511900|511901|511902|511903|511904|511905|511906|511907|511908|511909|511910|511911|511912|511913|511914|511915|511916|511917|511918|511919|511920|511921|511922|511923|511924|511925|511926|511927|511928|511929|511930|511931|511932|511933|511934|511935|511936|511937|511938|511939|511940|511941|511942|511943|511944|511945|511946|511947|511948|511949|511950|511951|511952|511953|511954|511955|511956|511957|511958|511959|511960|511961|511962|511963|511964|511965|511966|511967|511968|511969|511970|511971|511972|511973|511974|511975|511976|511977|511978|511979|511980|511981|511982|511983|511984|511985|511986|511987|511988|511989|511990|511991|511992|511993|511994|511995|511996|511997|511998|511999|512000|512001|512002|512003|512004|512005|512006|512007|512008|512009|512010|512011|512012|512013|512014|512015|512016|512017|512018|512019|512020|512021|512022|512023|512024|512025|512026|512027|512028|512029|512030|512032|512033|512034|512035|512036|512037|512038|512039|512040|512041|512042|512043|512044|512045|512046|512047|512048|512049|512050|512051|512052|512053|512054|512055|512056|512057|512058|512059|512060|512061|512062|512063|512064|512065|512066|512067|512068|512069|512070|512071|512072|512073|512074|512075|512076|512077|512078|512079|512080|512081|512082|512083|512084|512085|512086|512087|512088|512089|512090|512091|512092|512093|512094|512095|512096|512097|512098|512099|512100|512101|512102|512103|512104|512105|512106|512107|512108|512109|512110|512111|512112|512113|512114|512115|512116|512117|512118|512119|512120|512121|512122|512123|512124|512125|512126|512127|512128|512129|512130|512131|512132|512133|512134|512135|512136|512137|512138|512139|512140|512141|512142|512143|512144|512145|512146|512147|512148|512149|512150|512151|512152|512153|512154|512155|512156|512157|512158|512159|512160|512161|512162|512163|512164|512165|512166|512167|512168|512169|512170|512171|512172|512173|512174|512175|512176|512177|512178|512179|512180|512181|512182|512183|512184|512185|512186|512187|512188|512189|512190|512191|512192|512193|512194|512195|512196|512197|512198|512199|512200|512201|512202|512203|512204|512205|512206|512207|512208|512209|512210|512211|512212|512213|512214|512215|512216|512217|512218|512219|512220|512221|512222|512223|512224|512225|512226|512227|512228|512229|512230|512231|512232|512233|512234|512235|512236|512237|512238|512239|512240|512241|512242|512243|512244|512245|512246|512247|512248|512249|512250|512251|512252|512253|512254|512255|512256|512257|512258|512259|512260|512261|512262|512263|512264|512265|512266|512267|512268|512269|512270|512271|512272|512273|512274|512275|512276|512277|512278|512279|512280|512281|512282|512283|512284|512285|512286|512287|512288|512289|512290|512291|512292|512294|512295|512296|512297|512298|512299|512301|512302|512303|512304|512305|512306|512307|512308|512309|512310|512311|512312|512313|512314|512315|512316|512317|512318|512319|512320|512321|512322|512323|512324|512325|512326|512327|512328|512329|512330|512331|512332|512333|512334|512335|512336|512337|512338|512339|512340|512341|512342|512343|512344|512345|512346|512347|512348|512349|512350|512351|512352|512353|512354|512355|512356|512357|512358|512359|512360|512361|512362|512363|512364|512365|512366|512367|512368|512369|512370|512371|512372|512373|512374|512375|512376|512377|512378|512379|512380|512381|512382|512383|512384|512385|512386|512387|512388|512389|512390|512391|512392|512393|512394|512395|512396|512397|512398|512399|512400|512401|512402|512403|512404|512405|512406|512407|512408|512409|512410|512411|512412|512413|512414|512415|512416|512417|512418|512419|512420|512421|512422|512423|512424|512425|512426|512427|512428|512429|512430|512431|512432|512433|512434|512435|512436|512437|512438|512439|512440|512441|512442|512443|512444|512445|512446|512447|512448|512449|512450|512451|512452|512453|512454|512455|512456|512457|512458|512459|512460|512461|512462|512463|512464|512465|512466|512467|512468|512469|512470|512471|512472|512473|512474|512475|512476|512477|512478|512479|512480|512481|512482|512483|512484|512485|512486|512487|512488|512489|512490|512491|512492|512493|512494|512495|512496|512497|512498|512499|512500|512501|512502|512503|512504|512505|512506|512507|512508|512509|512510|512511|512512|512514|512515|512516|512517|512518|512519|512520|512521|512522|512523|512524|512525|512526|512527|512528|512529|512530|512531|512532|512533|512534|512535|512536|512537|512538|512539|512540|512541|512542|512543|512544|512545|512546|512547|512548|512549|512550|512551|512552|512553|512554|512555|512556|512557|512558|512559|512560|512561|512562|512563|512564|512565|512566|512567|512568|512569|512570|512571|512572|512573|512574|512575|512576|512577|512578|512579|512580|512581|512582|512583|512584|512585|512586|512587|512588|512589|512590|512591|512592|512593|512594|512595|512596|512597|512598|512599|512600|512601|512602|512603|512604|512605|512606|512607|512608|512609|512610|512611|512612|512613|512614|512615|512616|512617|512618|512619|512620|512621|512622|512623|512624|512625|512626|512627|512628|512629|512630|512631|512632|512633|512634|512635|512636|512637|512638|512639|512640|512641|512642|512643|512644|512645|512646|512647|512648|512649|512650|512651|512652|512653|512654|512655|512656|512657|512658|512659|512660|512661|512662|512663|512664|512665|512666|512667|512668|512669|512670|512671|512672|512673|512674|512675|512676|512677|512678|512679|512680|512681|512682|512683|512684|512685|512686|512687|512688|512689|512690|512691|512692|512693|512694|512695|512696|512697|512698|512699|512700|512701|512702|512703|512704|512705|512706|512707|512708|512709|512710|512711|512712|512713|512714|512715|512716|512717|512718|512719|512720|512721|512722|512723|512724|512725|512726|512727|512728|512729|512730|512731|512732|512733|512734|512735|512736|512737|512738|512739|512740|512741|512742|512743|512744|512745|512746|512747|512748|512749|512750|512751|512752|512753|512754|512755|512756|512757|512758|512759|512760|512761|512762|512763|512764|512765|512766|512767|512768|512769|512770|512771|512772|512773|512774|512775|512776|512777|512778|513764|513765|514054|514345|514977|518753|518766|518792|518802|518804|518806|518815|518959|521091|521309|521964|522461|526449|527227|527917|528766|532288|534083|534887|535054|535181|535312|535681|535682|535696|535725|536028|536093|536176|536318|536593|536830|537592|537681|537796|540508|540513|541820|541828|543305|544371|544451|544523|545698|549765|550272|550323|550329|550566|551320|552094|552136|553083|553138|553141|553519|556917|556937|558756|558764|559297|559307|561125|561126|561564|561582|562329|562906|562907|563969|563980|565136|565621|566800|567795|572547|574280|575492|576714|577733|578643|582027|582761|585348|586059|586092|586093|586588|586642|588190|588776|590062|590666|590743|608837|609004|609347|609353|609606|609654|609849|612493|612999|615264|615564|615903|615920|619906|620155|620519|620656|620784|620839|620947|620951|621254|621259|621983|622924|623048|623090|623091|623119|623562|623660|626013|628122|628211|628806|629312|629754|630771|630810|630816|630834|632159|633216|634574|635668|635799|635800|635801|635804|636056|638948|645913|646400|649942|650229|650247|652719|653912|654425|678080|679342|679910|683194|683196|683529|683848|683851|686295|686707|690361|692122|699851|710770|710771|720108|734776|735957|735958|735959|750424|750426|766115|766116|766136|774687|781528|789122|789163|789896|790077|790601|790617|790946|791440|791903|792088|792596|792602|792612|792992|793117|793656|793759|794177|794182|794237|794511|798400|799111|800473|801085|801162|801406|802169|805009|805049|805167|805337|805391|805474|805659|805909|806101|806443|806444|806445|806446|806447|806448|806449|806450|806451|807500|807501|807502|807503|807504|807505|807506|807507|807508|807509|807510|807511|807512|807513|807514|807515|807516|808571|808572|808573|808841|808842|808843|808844|808845|808846|808847|808848|808849|808850|808851|808852|808853|808854|808855|808856|808857|808858|808859|808860|808861|808862|808863|808864|808865|808866|808867|808868|808869|808870|808871|808872|808946|808947|808948|808949|808950|808951|808952|808953|808954|808955|808956|808957|808958|808959|808960|808961|808962|808963|808964|808965|808966|808967|808968|808969|808970|808971|808972|808973|808974|808975|808976|808977|808978|808979|808980|808981|808982|808983|808984|808985|808986|815210|815357|815362|815363|815364|815365|815376|815377|815378|815379|815858|815972|818138|818149|818727|823396|825612|828702|833340|837232|838068|838538|839718|845247|849076|849768|849785|850686|852409|852982|856110|858389|858585|858736|858737|858885|859195|860188|860285|860317|861273|861275|863212|869160|874793|894062|899376|904282|904660|917579|918256|918423|919009|919426|920940|921158|925364|925521|927262|928734|930058|930218|934656|935257|936134|937817|939439|939681|941955|945044|951879|951890|955261|955679|961317|961320|961597|962975|963245|963552|964268|964282|964590|965295|965644|965685|966137|966154|966983|967133|969360|969487|970273|970285|970288|970291|970335|971344|972656|972910|972936|972955|972978|972994|973120|973121|973122|973123|973124|973125|973126|973127|973128|973129|973130|973131|973132|973133|973134|973135|973136|973137|973138|973139|973140|973141|973142|973144|973145|973146|973147|973148|973149|973150|973151|973152|973153|973154|973155|973156|973157|973158|973159|973160|973161|973162|973163|973164|973165|973166|973167|973168|973169|973170|973171|973172|973173|973174|973175|973176|973177|973178|973179|973180|973181|973182|973183|973184|973185|973186|973187|973188|973189|973190|973191|973192|973193|973194|973195|973196|973197|973198|973199|973200|973201|973202|973203|973204|973205|973206|973207|973208|973209|973210|973211|973212|973213|973214|973215|973216|973217|973218|973219|973220|973221|973222|973223|973224|973225|973226|973227|973229|973230|973231|973232|973233|973234|973235|973236|973237|973238|973239|973240|973241|973242|973243|973244|973245|973246|973247|973248|973249|973250|973251|973252|973253|973254|973255|973256|973257|973258|973259|973260|973261|973262|973263|973264|973265|973266|973267|973268|973269|973270|973271|973272|973273|973274|973275|973276|973277|973278|973279|973280|973281|973282|973283|973284|973285|973286|973287|973288|973289|973290|973291|973292|973293|973294|973295|973296|973297|973298|973299|973300|973301|973302|973303|973304|973305|973306|973307|973308|973309|973310|973311|973312|973313|973314|973315|973316|973317|973318|973319|973320|973321|973322|973323|973324|973325|973326|973327|973328|973329|973330|973331|973332|973333|973334|973335|973336|973337|973338|973339|973340|973341|973342|973343|973344|973345|973346|973347|973348|973349|973350|973351|973352|973353|973354|973355|973356|973357|973358|973359|973360|973361|973362|973363|973364|973365|973366|973367|973368|973369|973370|973371|973372|973373|973374|973375|973376|973377|973378|973379|973380|973381|973382|973383|973384|973385|973386|973387|973388|973390|973391|973392|973393|973395|973396|973397|973398|973399|973400|973401|973402|973403|973404|973405|973406|973407|973408|973409|973410|973411|973412|973413|973414|973415|973416|973417|973418|973419|973420|973421|973422|973423|973424|973425|973426|973427|973428|973429|973430|973431|973432|973433|973434|973435|973436|973437|973438|973439|973440|973441|973442|973443|973444|973445|973446|973447|973448|973449|973450|973451|973452|973453|973454|973455|973456|973457|973458|973459|973460|973461|973462|973463|973464|973465|973466|973467|973468|973469|973470|973471|973473|973474|973475|973476|973477|973478|973479|973480|973481|973482|973483|973484|973485|973486|973487|973488|973489|973490|973491|973492|973493|973494|973495|973496|973497|973498|973499|973500|973501|973502|973503|973504|973505|973506|973507|973508|973509|973510|973511|973512|973513|973514|973515|973516|973517|973518|973519|973520|973521|973522|973523|973524|973525|973526|973527|973528|973529|973530|973531|973532|973533|973534|973535|973536|973537|973538|973539|973540|973541|973542|973543|973544|973545|973546|973547|973548|973549|973550|973551|973552|973553|973554|973555|973556|973557|973558|973559|973560|973561|973562|973563|973564|973565|973566|973567|973568|973569|973570|973571|973572|973573|973575|973576|973577|973578|973579|973580|973581|973582|973583|973584|973585|973586|973587|973588|973589|973590|973591|973592|973593|973594|973595|973596|973597|973598|973599|973600|973601|973602|973603|973604|973605|973606|973607|973608|973609|973610|973611|973612|973613|973614|973615|973616|973617|973618|973619|973620|973621|973622|973623|973624|973625|973626|973627|973628|973629|973630|973631|973632|973633|973634|973635|973636|973637|973638|973639|973640|973641|973642|973643|973644|973645|973646|973647|973648|973649|973650|973651|973652|973653|973654|973655|973656|973657|973658|973659|973660|973661|973662|973663|973664|973665|973666|973667|973668|973669|973671|973672|973673|973674|973675|973676|973677|973678|973679|973680|973681|973682|973683|973684|973685|973686|973687|973688|973689|973690|973691|973692|973693|973694|973695|973696|973697|973698|973699|973700|973701|973702|973703|973704|973705|973706|973707|973708|973710|973711|973712|973713|973714|973715|973716|973717|973718|973720|973721|973722|973723|973724|973725|973726|973727|973728|973729|973730|973731|973732|973733|973734|973735|973736|973737|973738|973739|973740|973741|973742|973743|973744|973745|973746|973747|973748|973749|973750|973751|973752|973753|973754|973755|973756|973757|973758|973759|973760|973761|973762|973763|973764|973765|973766|973767|973768|973769|973770|973771|973772|973773|973774|973775|973776|973777|973778|973779|973780|973781|973782|973783|973784|973785|973786|973787|973788|973789|973790|973791|973792|973793|973794|973795|973796|973797|973798|973799|973800|973801|973802|973803|973804|973805|973806|973807|973808|973809|973810|973811|973812|973813|973814|973815|973816|973817|973818|973819|973820|973821|973822|973823|973824|973825|973826|973827|973828|973829|973830|973831|973832|973833|973834|973835|973836|973837|973838|973839|973840|973841|973842|973843|973844|973845|973846|973847|973848|973849|973850|973851|973852|973853|973854|973855|973856|973857|973858|973859|973860|973861|973862|973863|973864|973865|973866|973867|973868|973869|973870|973871|973872|973873|973874|973875|973876|973879|973880|973881|973882|973883|973884|973885|973886|973887|973888|973889|973890|973891|973892|973893|973894|973895|973896|973897|973898|973899|973900|973901|973902|973903|973904|973905|973906|973907|973908|973909|973910|973911|973912|973913|973914|973915|973916|973917|973918|973919|973920|973921|973922|973923|973924|973925|973926|973927|973928|973929|973930|973931|973932|973933|973934|973935|973936|973937|973938|973939|973940|973941|973942|973943|973944|973945|973946|973947|973948|973949|973950|973951|973953|973954|973955|973956|973957|973958|973959|973960|973961|973962|973963|973964|973966|973967|973968|973969|973970|973971|973972|973973|973974|973975|973976|973977|973978|973979|973980|973981|973982|973983|973984|973985|973986|973988|973989|973990|973991|973992|973993|973994|973995|973996|973997|973998|973999|974000|974001|974002|974003|974004|974005|974006|974007|974008|974009|974010|974011|974012|974013|974014|974015|974016|974017|974018|974019|974020|974021|974022|974023|974024|974025|974026|974027|974028|974029|974030|974032|974033|974034|974035|974036|974037|974038|974039|974040|974041|974042|974043|974044|974045|974046|974047|974048|974049|974050|974051|974052|974053|974054|974055|974056|974057|974058|974059|974060|974061|974062|974063|974064|974065|974066|974067|974068|974069|974070|974071|974072|974073|974074|974075|974076|974077|974078|974079|974080|974081|974082|974083|974084|974085|974086|974087|974088|974089|974090|974091|974092|974093|974094|974095|974096|974097|974098|974099|974100|974101|974102|974103|974104|974105|974106|974107|974108|974109|974110|974111|974112|974113|974114|974115|974116|974117|974118|974119|974120|974121|974122|974123|974124|974125|974126|974127|974128|974129|974130|974131|974132|974133|974134|974135|974136|974137|974138|974139|974140|974141|974142|974143|974144|974145|974146|974147|974148|974149|974150|974151|974152|974153|974154|974155|974156|974157|974158|974159|974160|974161|974162|974163|974164|974165|974166|974167|974168|974169|974170|974171|974172|974173|974174|974175|974176|974177|974178|974179|974180|974181|974182|974183|974184|974185|974186|974187|974188|974189|974190|974191|974192|974193|974194|974195|974196|974197|974198|974199|974200|974201|974202|974203|974205|974206|974207|974208|974209|974210|974211|974212|974213|974214|974215|974216|974217|974218|974219|974220|974221|974222|974223|974224|974225|974226|974227|974228|974229|974230|974231|974232|974233|974234|974235|974236|974237|974238|974239|974240|974241|974242|974243|974244|974245|974246|974247|974248|974249|974250|974251|974252|974253|974254|974255|974256|974257|974258|974259|974260|974261|974262|974263|974264|974265|974266|974267|974268|974269|974270|974271|974272|974273|974274|974275|974276|974277|974278|974279|974280|974281|974282|974283|974284|974285|974286|974287|974288|974289|974290|974292|974293|974294|974295|974296|974297|974298|974299|974300|974301|974302|974303|974304|974305|974306|974307|974308|974309|974310|974311|974312|974313|974314|974315|974316|974317|974318|974319|974320|974321|974322|974323|974324|974325|974326|974327|974328|974329|974330|974331|974332|974333|974334|974335|974336|974337|974338|974339|974340|974341|974342|974343|974344|974345|974346|974347|974348|974349|974350|974351|974352|974353|974354|974355|974356|974357|974358|974359|974360|974361|974362|974363|974364|974365|974366|974367|974368|974369|974370|974371|974372|974373|974374|974375|974376|974377|974378|974379|974380|974381|974382|974383|974384|974385|974386|974387|974388|974389|974390|974391|974392|974393|974394|974395|974396|974397|974398|974399|974400|974401|974402|974403|974404|974405|974406|974407|974408|974409|974410|974411|974412|974413|974414|974415|974416|974417|974418|974419|974420|974421|974422|974423|974424|974425|974426|974427|974428|974429|974430|974431|974432|974433|974434|974435|974436|974437|974438|974439|974440|974441|974442", + "text": "Inborn genetic diseases" + }, + { + "baseId": "15048|15049|15050|15051|15052|15055|15056|15057|15058|17404|17410|19325|94503|134671|186058|186284|205545|212520|213452|221629|221643|221646|222805|224314|224315|239897|299721|299725|299728|299729|299735|299736|302313|302329|302330|302332|302333|306734|307009|307017|307028|307029|395087|395090|395258|395689|395931|455484|455591|561169|620224|621748|790139|790140|790670|895721|895722|895723|895724|895725|895726|895727|895728|895729|895730|895731|895732|895733|895734|895735|895736|895737|896216", + "text": "Hemochromatosis type 1" + }, + { + "baseId": "15048", + "text": "Porphyria cutanea tarda, susceptibility to" + }, + { + "baseId": "15048", + "text": "Porphyria variegata, susceptibility to" + }, + { + "baseId": "15048|19324", + "text": "Hemochromatosis, juvenile, digenic" + }, + { + "baseId": "15048|18672|27428|27656|33210|390084", + "text": "Alzheimer disease, susceptibility to" + }, + { + "baseId": "15048", + "text": "Transferrin serum level quantitative trait locus 2" + }, + { + "baseId": "15048|15049", + "text": "Microvascular complications of diabetes 7" + }, + { + "baseId": "15048|15147|15375|15382|15383|15384|15385|15393|15398|15402|15440|15836|15837|15839|15842|15843|15845|15846|15847|15849|15850|15851|15853|15855|15861|15863|15867|15868|15870|15874|15878|16282|16284|16285|16309|16792|16794|16795|16796|16797|16798|16799|16801|16803|17255|17256|17257|17262|17263|17264|17265|17268|17271|17272|17273|17277|17511|18057|18058|18060|18061|18062|18064|18066|18068|18069|18072|18074|18075|18077|18082|18083|18084|18086|18087|18402|18403|18406|18409|18410|19508|19509|19775|19776|19777|19925|19927|19932|20138|20142|20332|20333|20335|20336|20493|20630|20631|20633|20635|20636|20637|20638|20639|20642|20911|20912|21593|21861|21864|21931|21932|21934|21935|21936|21937|21939|21942|21943|21945|21947|21948|21952|21954|21956|21979|21984|21985|21986|21987|22281|22482|22484|22487|22488|22500|22851|22852|22856|22858|22859|22866|22868|22872|22875|22879|22891|23084|23260|23261|23262|23263|23272|23273|23275|23582|23777|23781|23821|23822|23823|23970|23971|23980|24273|24276|24279|24281|24283|24284|24357|24358|24359|24361|24364|24365|24367|24368|24379|24381|24383|24384|24385|24386|24387|24388|24448|24451|24453|24454|24459|24462|24463|24464|24465|27083|27084|27085|27086|27088|27270|27271|27272|27280|27283|27284|27285|27386|27387|27388|27390|27391|27392|27393|27394|27395|27396|27397|27398|27403|27404|27405|27406|27408|27409|27413|27416|27418|27421|27436|27441|27442|27713|27772|27817|27818|27820|27821|27822|27824|27826|27830|27831|28110|28112|28115|28125|28126|28129|28130|28131|28132|28920|28922|28947|28948|28953|28954|28956|28957|28970|28971|28972|28973|28975|28977|28978|28982|28983|28984|28985|28986|28987|28988|28989|28990|28994|29396|31271|31274|31275|31652|31720|31724|31727|31729|31731|31732|31738|31742|31967|31968|32117|32119|32124|32126|32128|32129|32133|32135|32136|32138|32145|32699|32700|32701|32704|32705|32706|32708|32709|32710|32711|32712|32713|32714|32715|32716|32720|32721|32722|32723|32724|32732|32733|33125|33492|33493|33882|36140|36145|36148|36152|36165|36173|36191|36194|36221|36222|36223|36224|36228|36231|36233|36239|36241|36242|36243|36246|36247|36254|36255|36260|36261|36269|36272|36273|36275|36280|36284|36286|36287|36288|36289|36291|36292|36296|36298|36302|36305|38609|38660|38740|38741|38743|38747|38851|39018|39088|39159|39241|39244|39258|39261|39492|40236|40237|44228|45185|45186|45187|45193|45201|45202|45203|45204|45205|45206|45207|45208|45209|45210|45212|45216|45217|45218|45219|45220|45222|45223|45224|45227|45228|45229|45230|45231|45232|45233|45234|45235|45237|45238|45239|45240|45241|45242|45243|45244|45245|45246|45247|45248|45249|45251|45255|45257|45258|45259|45261|45346|45349|45350|45351|45352|45353|45354|45384|45388|45429|45560|45561|45562|45564|45566|45930|45931|45932|45933|45934|45935|45936|45937|45938|45939|45942|45943|45944|45945|45946|45947|45948|45949|45954|45955|45958|45960|45961|45962|45965|45966|45967|45968|45969|45970|45971|45972|45973|45974|45976|45977|45979|45981|45982|45986|45989|45990|45991|45992|45994|45996|45997|45998|45999|46000|46001|46002|46003|46005|46006|46007|46008|46009|46010|46011|46012|46013|46015|46017|46018|46019|46020|46021|46022|46024|46025|46026|46027|46028|46029|46030|46031|46032|46033|46034|46035|46037|46038|46039|46041|46042|46043|46044|46045|46046|46047|46049|46050|46051|46055|46056|46057|46058|46060|46061|46062|46063|46065|46066|46069|46072|46073|46077|46078|46079|46080|46081|46082|46083|46084|46085|46086|46087|46089|46090|46091|46092|46093|46095|46096|46097|46098|46099|46100|46101|46102|46103|46104|46105|46109|46111|46112|46113|46115|46116|46117|46118|46119|46120|46121|46122|46125|46126|46127|46128|46129|46130|46131|46134|46135|46136|46137|46138|46140|46141|46142|46144|46145|46147|46149|46150|46151|46152|46153|46154|46155|46156|46157|46160|46161|46162|46163|46164|46167|46168|46169|46170|46171|46172|46175|46176|46177|46179|46180|46181|46183|46184|46185|46186|46187|46188|46189|46190|46191|46192|46193|46194|46195|46196|46197|46198|46200|46201|46202|46203|46204|46206|46210|46212|46213|46214|46215|46216|46217|46219|46220|46223|46224|46225|46226|46227|46228|46229|46230|46231|46232|46233|46234|46235|46236|46238|46239|46240|46241|46242|46245|46246|46247|46248|46249|46251|46252|46253|46254|46255|46256|46257|46258|46259|46262|46264|46265|46266|46267|46268|46269|46270|46271|46273|46274|46275|46276|46277|46278|46279|46280|46281|46283|46285|46286|46287|46289|46290|46291|46292|46293|46294|46295|46296|46297|46298|46299|46300|46301|46302|46303|46304|46305|46306|46307|46308|46309|46310|46311|46312|46313|46314|46315|46316|46318|46319|46320|46321|46322|46323|46324|46325|46326|46327|46328|46329|46330|46331|46333|46334|46335|46336|46337|46339|46340|46341|46342|46343|46344|46345|46346|46347|46349|46350|46352|46354|46355|46356|46357|46359|46360|46362|46363|46364|46365|46366|46367|46368|46369|46370|46371|46373|46375|46376|46378|46380|46381|46382|46384|46385|46386|46388|46389|46391|46393|46394|46395|46396|46397|46398|46400|46401|46402|46403|46404|46407|46408|46409|46411|46412|46413|46414|46415|46417|46418|46419|46421|46422|46423|46424|46428|46430|46431|46432|46433|46434|46436|46438|46439|46441|46442|46443|46445|46446|46447|46448|46449|46451|46453|46454|46455|46456|46458|46460|46461|46462|46464|46465|46466|46468|46469|46470|46471|46472|46473|46475|46476|46477|46478|46479|46481|46482|46483|46484|46485|46486|46487|46488|46491|46492|46493|46494|46495|46496|46497|46498|46499|46500|46501|46502|46504|46505|46506|46507|46509|46510|46512|46513|46514|46515|46516|46517|46519|46520|46523|46524|46525|46527|46528|46529|46530|46531|46532|46533|46534|46535|46536|46537|46539|46540|46541|46542|46543|46544|46545|46546|46547|46548|46549|46551|46552|46553|46554|46555|46556|46557|46558|46559|46560|46561|46562|46563|46564|46565|46566|46567|46568|46570|46571|46572|46574|46575|46576|46577|46578|46579|46580|46581|46582|46583|46584|46585|46586|46588|46589|46590|46591|46593|46594|46595|46597|46598|46599|46600|46601|46602|46603|46604|46606|46607|46608|46609|46614|46615|46616|46617|46618|46619|46620|46621|46623|46624|46625|46626|46627|46628|46629|46631|46632|46633|46634|46635|46636|46637|46638|46639|46640|46641|46642|46644|46645|46647|46649|46650|46652|46653|46654|46655|46656|46657|46658|46659|46660|46661|46662|46663|46664|46665|46666|46667|46668|46669|46670|46672|46675|46677|46678|46679|46680|46681|46682|46684|46686|46687|46688|46690|46691|46692|46693|46694|46695|46696|46697|46698|46701|46702|46703|46705|46707|46708|46709|46710|46711|46712|46713|46714|46715|46716|46717|46719|46720|46723|46724|46725|46726|46727|46729|46731|46732|46733|46734|46735|46736|46738|46739|46740|46741|46742|46743|46744|46745|46746|46747|46748|46749|46750|46751|46752|46754|46755|46756|46757|46758|46759|46760|46761|46763|46764|46765|46766|46767|46768|46769|46771|46773|46774|46776|46777|46778|46779|46780|46781|46782|46783|46785|46786|46787|46788|46789|46790|46791|46792|46793|46794|46795|46796|46797|46798|46799|46801|46804|46805|46806|46807|46808|46809|46810|46811|46813|46814|46816|46817|46818|46819|46820|46821|46822|47198|47205|47216|48183|48184|48215|48216|48269|48348|48560|48599|49466|49468|49469|49584|49586|49588|49596|49598|49606|49607|49611|49612|49627|49628|49630|49631|49636|49852|49938|49939|49940|49941|49942|49943|49944|49945|49947|49948|49949|49950|49951|49952|49953|49954|49955|49956|49957|49958|49959|49960|49961|49962|49963|49964|49965|49966|49968|49969|49970|49971|49972|49973|49974|49975|49976|49977|49978|49979|49980|49981|49982|49983|49984|49985|49986|49987|49988|49990|49992|49995|49997|49998|49999|50000|50001|50002|50003|50004|50006|50007|50008|50009|50010|50011|50012|50016|50017|50018|50019|50021|50022|50023|50024|50026|50027|50028|50029|50030|50032|50033|50035|50036|50038|50039|50040|50043|50044|50045|50047|50049|50050|50059|50061|50062|50063|50064|50066|50067|50068|50069|50071|50072|50073|50074|50075|50076|50077|50078|50079|50080|50081|50082|50083|50084|50085|50086|50087|50089|50090|50091|50092|50093|50094|50095|50096|50098|50099|50100|50101|50102|50103|50104|50105|50106|50108|50109|50111|50112|50113|50114|50116|50117|50118|50119|50121|50122|50123|50124|50125|50126|50127|50129|50130|50131|50132|50133|50134|50135|50137|50138|50139|50140|50141|50142|50143|50144|50145|50146|50147|50148|50150|50152|50153|50154|50155|50156|50157|50158|50159|50160|50161|50162|50163|50164|50165|50166|50168|50169|50170|50171|50172|50173|50174|50175|50176|50177|50178|50179|50180|50182|50184|50185|50186|50187|50188|50190|50191|50192|50193|50194|50195|50196|50197|50198|50199|50200|50201|50202|50203|50204|50205|50206|50209|50215|50216|50218|50219|50220|50221|50222|50223|50224|50225|50226|50227|50228|50229|50230|50231|50232|50233|50235|50236|50237|50239|50240|50241|50242|50243|50244|50245|50246|50247|50248|50249|50250|50251|50252|50253|50254|50255|50256|50257|50260|50262|50263|50264|50265|50266|50267|50268|50269|50270|50271|50274|50275|50276|50278|50279|50280|50281|50282|50283|50284|50285|50293|50294|50295|50296|50298|50302|50303|51230|51233|51237|51242|51244|51260|51261|51362|51408|51409|51412|51413|51414|51415|51417|51418|51419|51420|51421|51637|51638|51639|51640|51641|51642|51666|51667|52756|52757|52758|52759|52760|52762|52763|52764|52765|52767|52769|52774|53808|53809|53810|53813|53814|53817|54989|57889|57898|57913|57914|57917|57927|57930|57932|57959|57962|57965|57980|57983|58024|58033|58044|58093|58105|58116|58124|58131|58134|58146|58147|58149|58151|58153|58154|58168|58170|58177|58181|58182|58183|58184|58185|58186|58215|58216|58217|58219|58233|58234|58253|58255|58269|58294|58297|58303|58312|58316|58324|58325|58327|58328|58342|58347|58356|58364|58374|58378|58379|58387|58391|58393|58397|58413|58419|58420|58421|58433|58442|58451|58454|58455|58458|58464|58479|58490|58493|58510|58521|58532|58544|58548|58555|58557|58561|58613|58618|58629|58633|58635|58657|58665|58666|58667|58675|58684|58692|58695|58705|58710|58713|58715|58718|58727|58734|58735|58759|58765|58773|58778|58783|58797|58805|58808|58809|58822|58828|58833|58836|58843|58847|58860|58872|58878|58880|58888|58900|58901|58902|58904|58916|58917|58926|58934|58935|58936|58951|58980|58991|58992|58997|59008|59009|59017|59029|59042|59044|59054|59057|59061|59071|59074|59087|59089|59092|59103|59104|59115|59119|59131|59134|59164|59166|59171|59172|59181|59182|59207|59224|59230|59239|59251|59252|59262|59268|59278|59286|59287|59326|59332|59333|59343|59351|65703|65704|65706|65707|65709|65711|65713|65714|65715|65716|65717|65718|65720|65721|65722|65723|65724|65725|65726|65727|65728|65730|65731|65732|65734|65735|65736|65737|65738|65739|65741|65742|65745|65746|65748|65749|65750|65751|65752|65753|65754|65758|65759|65760|65761|65762|65763|65768|65773|65774|65775|65776|65779|65781|65784|65786|65787|65788|65789|65790|65793|65794|65796|65797|65798|65799|65800|65802|65803|65804|65805|65811|65812|65818|65820|65821|65822|65826|65827|65828|65829|65832|65834|65835|65836|65837|65838|65842|65843|65847|65849|65850|65852|65853|65854|65855|65857|65858|65859|65860|65861|65863|65865|65866|65867|65868|65869|65874|65875|65876|65878|65879|65880|65883|65884|65886|65888|65889|65895|65896|65898|65899|65901|65902|65904|65910|65911|65912|65914|65915|65916|65917|65919|65922|65925|65926|65927|65928|65934|65935|65936|65937|65939|65940|65942|65945|65946|65947|65949|65950|65951|65952|65953|65954|65959|65960|65966|65967|65968|65970|65973|65974|65975|65980|65981|65982|65983|65985|65988|65990|65994|65996|65998|66000|66001|66007|66008|66011|66013|66014|66017|66021|66023|66024|66025|66026|66027|66028|66029|66030|66031|66032|66034|66036|66038|66039|66040|66041|66042|66043|66045|66046|66047|66049|66052|66053|66055|66058|66061|66062|66063|66065|66066|66068|66071|66074|66075|66077|66078|66080|66081|66082|66086|66087|66088|66089|66091|66092|66093|66094|66096|66098|66099|66100|66101|66103|66106|66109|66114|66115|66116|66117|66118|66121|66126|66128|66129|66130|66131|66133|66135|66138|66139|66143|66144|66145|66146|66147|66148|66149|66152|66153|66156|66157|66158|66161|66163|66169|66170|66171|66172|66173|66175|66177|66180|66183|66184|66185|66186|66187|66188|66193|66194|66198|66199|66202|66205|66206|66211|66212|66213|66214|66215|66221|66223|66230|66241|66242|66243|66244|66245|66246|66247|66251|66252|66253|66254|66255|66256|66257|66260|66261|66267|66269|66270|66272|66273|66276|66277|66279|66280|66282|66284|66285|66286|66287|66291|66295|66296|66298|66299|66300|66301|66302|66303|66304|66308|66310|66311|66312|66313|66315|66316|66318|66319|66320|66321|66323|66325|66326|66327|66328|66329|66332|66337|66339|66342|66344|66345|66346|66347|66349|66350|66351|66352|66354|66355|66357|66358|66360|66362|66363|66366|66367|66369|66370|66372|66374|66377|66378|66379|66382|66384|66385|66386|66387|66389|66390|66392|66394|66395|66396|66397|66400|66402|66404|66405|66406|66409|66411|66413|66414|66415|66418|66420|66424|66425|66426|66429|66433|66434|66436|66439|66441|66443|66446|66447|66449|66451|66452|66454|66455|66459|66462|66463|66465|66466|66467|66468|66469|66470|66471|66473|66476|66478|66479|66481|66482|66484|66486|66487|66488|66489|66490|66492|66493|66494|66496|66499|66500|66501|66502|66503|66505|66508|66509|66518|66519|66520|66521|66523|66525|66526|66527|66528|66530|66532|66533|66536|66539|66541|66544|66546|66547|66549|66552|66553|66555|66556|66557|66558|66559|66560|66562|66563|66564|66565|66567|66568|66569|66570|66571|66573|66574|66575|66579|66580|66581|66585|66586|66587|66589|66593|66595|66596|66597|66598|66599|66600|66601|66604|66607|66608|66610|66613|66616|66618|66619|66620|66622|66623|66625|66626|66627|66629|66632|66633|66634|66641|66647|66648|66649|66650|66651|66652|66658|66659|66661|66663|66666|66667|66668|66669|66671|66673|66675|66676|66678|66679|66680|66683|66684|66685|66687|66692|66696|66697|66698|66700|66702|66703|66708|66711|66714|66716|66717|66719|66720|66722|66725|66726|66730|66733|66737|66739|66741|66742|66743|66748|66751|66754|66755|66756|66760|66762|66764|66765|66770|66772|66774|66775|66776|66777|66778|66780|66781|66783|66784|66790|66793|66794|66795|66796|66797|66799|66800|66802|66803|66806|66807|66808|66813|66817|66819|66821|66823|66824|66827|66828|66829|66832|66833|66834|66835|66842|66845|66846|66849|66850|66851|66852|66854|66855|66856|66859|66860|66861|66864|66866|66867|66869|66870|66871|66876|66878|66879|66880|66881|66882|66883|66884|66885|66887|66888|66890|66891|66893|66894|66895|66897|66899|66900|66901|66905|66907|66909|66910|66913|66914|66915|66916|66917|66918|66919|66922|66923|66924|66925|66926|66927|66928|66929|66931|66933|66934|66941|66945|66946|66947|66948|66951|66953|66954|66955|66959|66962|66964|66965|66966|66967|66968|66970|66972|66974|66975|66976|66980|66982|66983|66984|66989|66990|66991|66992|66993|66994|66995|66996|66998|66999|67002|67003|67004|67005|67007|67009|67010|67012|67013|67015|67017|67018|67021|67023|67024|67026|67028|67030|67031|67033|67035|67040|67041|67042|67044|67047|67049|67050|67053|67054|67056|67057|67060|67062|67063|67066|67068|67069|67073|67074|67075|67076|67077|67078|67080|67082|67085|67086|67087|67091|67092|67093|67094|67098|67102|67104|67105|67106|67107|67108|67109|67111|67115|67116|67118|67119|67120|67123|67126|67127|67129|67130|67131|67132|67134|67135|67136|67138|67139|67140|67141|67142|67143|67145|67146|67149|67152|67153|67157|67159|67161|67166|67168|67171|67172|67173|67174|67175|67176|67177|67178|67180|67181|67183|67184|67185|67188|67189|67190|67191|67197|67199|67201|67202|67203|67204|67205|67206|67207|67210|67211|67214|67215|67224|67227|67228|67230|67231|67232|67233|67234|67235|67236|67237|67238|67239|67242|67244|67249|67250|67252|67253|67254|67257|67260|67262|67263|67264|67265|67266|67267|67270|67271|67273|67274|67275|67276|67277|67278|67279|67283|67284|67285|67287|67288|67290|67291|67292|67293|67294|67297|67299|67300|67304|67306|67309|67310|67319|67321|67322|67323|67324|67326|67330|67332|67335|67336|67337|67339|67341|67343|67344|67345|67346|67347|67349|67350|67351|67352|67355|67360|67361|67362|67364|67365|67368|67372|67373|67376|67377|67378|67380|67381|67382|67384|67389|67390|67391|67393|67395|67396|67399|67400|67402|67405|67407|67408|67410|67411|67412|67419|67421|67422|67425|67426|67427|67429|67430|67431|67434|67435|67437|67438|67440|67441|67445|67446|67447|67448|67450|67451|67452|67453|67455|67457|67458|67459|67460|67461|67466|67467|67468|67469|67472|67473|67476|67477|67478|67479|67480|67482|67484|67485|67486|67490|67492|67493|67494|67498|67499|67501|67502|67504|67506|67507|67509|67510|67513|67515|67517|67519|67521|67522|67524|67526|67529|67530|67533|67535|67537|67538|67540|67541|67543|67544|67545|67551|67552|67554|67556|67558|67559|67561|67562|67563|67564|67565|67566|67569|67570|67571|67572|67573|67574|67576|67578|67579|67581|67582|67583|67584|67585|67586|67587|67589|67592|67594|68766|68768|68769|68771|68775|68777|68780|68781|68784|68787|68788|68789|68795|68796|68797|68799|68801|68802|68803|68807|68808|68810|68813|68818|68819|68824|68825|68827|68829|68833|68835|68839|68841|68842|68843|68844|68845|68850|68851|68853|68855|68857|68858|68862|68866|68867|68868|68869|68870|68871|68875|68876|68879|68881|68882|68883|68887|68889|68891|68893|68894|68895|68897|68899|68901|68902|68904|68907|68913|68914|68915|68916|68917|68918|68919|68921|68922|68925|68926|68930|68931|68935|68941|68944|68945|68946|68947|68952|68953|68954|68957|68958|68962|68964|68965|68966|68967|68971|68974|68976|68977|68978|68980|68981|68982|68989|68995|68996|68997|68998|68999|69001|69002|69004|69005|69009|69010|69011|69012|69014|69018|69019|69028|69031|69032|69033|69034|69038|69043|69044|69045|69046|69047|69048|69050|69052|69054|69056|69058|69061|69063|69066|69067|69068|69069|69071|69074|69079|69083|69084|69089|69091|69092|69093|69097|69098|69099|69100|69102|69103|69105|69109|69110|69111|69114|69115|69118|69122|69123|69124|69126|69128|69129|69132|69134|69135|69136|69137|69138|69141|69145|69146|69153|69154|69157|69158|69159|69161|69162|69166|69169|69170|69171|69172|69173|69174|69175|69179|69181|69184|69185|69187|69189|69191|69194|69196|69199|69200|69203|69207|69208|69211|69215|69216|69217|69218|69219|69223|69225|69226|69228|69230|69231|69232|69233|69234|69239|69242|69247|69248|69249|69250|69258|69260|69262|69267|69268|69269|69271|69273|69275|69276|69277|69278|69279|69280|69281|69287|69292|69296|69299|69301|69302|69309|69311|69313|69314|69319|69323|69324|69328|69330|69331|69332|69334|69335|69338|69340|69341|69342|69343|69344|69345|69346|69350|69355|69356|69358|69360|69361|69362|69368|69369|69370|69371|69376|69377|69383|69384|69386|69387|69389|69392|69393|69394|69395|69396|69397|69399|69401|69402|69405|69408|69409|69410|69411|69412|69413|69414|69415|69416|69418|69419|69420|69422|69424|69425|69427|69428|69429|69430|69431|69435|69436|69438|69439|69443|69444|69447|69454|69456|69457|69459|69462|69463|69466|69467|69473|69475|69477|69479|69482|69483|69484|69485|69486|69487|69488|69490|69491|69493|69494|69495|69497|69498|69499|69501|69503|69506|69507|69509|69510|69511|69514|69517|69519|69520|69522|69523|69524|69526|69527|69528|69529|69533|69535|69536|69538|69540|69543|69545|69546|69547|69552|69554|69557|69558|69561|69563|69567|69569|69573|69574|69578|69580|69584|69589|69592|69593|69596|69597|69598|69599|69601|69602|69603|69605|69607|69608|69609|69610|69614|69615|69616|69617|69620|69623|69624|69625|69626|69627|69635|69636|69637|69638|69639|69640|69641|69645|69646|69648|69649|69650|69652|69653|69654|69658|69659|69661|69667|69669|69672|69676|69677|69679|69682|69687|69688|69689|69692|69694|69695|69699|69703|69705|69706|69707|69708|69711|69712|69713|69716|69717|69720|69725|69726|69727|69729|69730|69731|69734|69739|69743|69744|69745|69748|69749|69751|69752|69756|69757|69760|69762|69763|69766|69770|69772|69774|69777|69778|69779|69780|69782|69784|69786|69791|69792|69794|69798|69800|69802|69803|69805|69806|69807|69808|69810|69812|69814|69816|69818|69819|69821|69822|69823|69824|69830|69831|69833|69835|69836|69839|69840|69841|69843|69844|69845|69850|69852|69854|69859|69860|69861|69862|69863|69868|69870|69873|69875|69877|69880|69881|69884|69885|69886|69887|69888|69890|69891|69894|69895|69896|69900|69901|69902|69903|69904|69905|69906|69909|69910|69911|69912|69913|69914|69916|69918|69919|69921|69922|69923|69924|69926|69929|69933|69935|69936|69939|69941|69942|69946|69947|69950|69951|69952|69957|69958|69959|69960|69961|69964|69968|69969|69970|69971|69973|69974|69976|69977|69978|69981|69983|69984|69985|69987|69988|69989|69992|69993|69994|69995|69996|69997|69998|70000|70005|70006|70008|70009|70011|70013|70016|70017|70019|70020|70022|70025|70028|70031|70034|70035|70036|70037|70038|70041|70044|70050|70053|70054|70055|70056|70057|70059|70060|70062|70063|70067|70069|70070|70071|70073|70074|70077|70078|70079|70080|70082|70083|70088|70089|70090|70094|70095|70096|70098|70099|70101|70102|70105|70108|70109|70110|70114|70115|70117|70118|70119|70120|70123|70127|70128|70129|70130|70137|70139|70140|70143|70147|70148|70149|70150|70155|70157|70166|70167|70168|70169|70170|70172|70174|70175|70177|70178|70180|70182|70183|70184|70186|70188|70189|70190|70191|70194|70195|70197|70201|70203|70205|70206|70207|70208|70211|70212|70213|70217|70219|70220|70227|70228|70230|70232|70233|70235|70237|70238|70239|70240|70244|70245|70247|70248|70251|70252|70256|70257|70258|70264|70265|70268|70271|70272|70274|70275|70278|70279|70280|70281|70282|70283|70288|70291|70293|70294|70295|70298|70299|70300|70301|70302|70304|70305|70308|70309|70310|70313|70314|70315|70319|70322|70323|70330|70333|70334|70336|70337|70339|70340|70343|70344|70345|70346|70349|70355|70356|70358|70360|70363|70372|70375|70377|70383|70384|70386|70387|70388|70390|70392|70393|70394|70398|70399|70400|70402|70405|70406|70407|70408|70409|70410|70411|70412|70413|70414|70416|70420|70421|70426|70427|70433|70434|70436|70438|70439|70441|70442|70443|70444|70447|70448|70574|75224|75314|75628|75639|75663|75674|75676|75677|75679|75688|75693|75711|75743|75744|75745|75746|75757|75772|75773|75776|75780|75785|75789|75797|75815|75817|75819|75827|75849|75857|75870|75872|75886|75897|75906|75913|75921|75926|75927|75948|75951|75964|75974|75995|76006|76011|76014|76015|76035|76041|76057|76058|76064|76067|76068|76078|76079|76083|76101|76125|76127|76130|76148|76153|76155|76161|76163|76189|76217|76221|76235|76239|76265|76283|76292|76313|76316|76317|79191|79199|79201|79203|79204|79207|79208|79212|79214|79216|79217|79221|79227|79228|79229|79232|79242|79245|79248|79254|79255|79374|79680|79740|79742|80472|82009|82748|83231|84710|86509|88349|88528|88840|90951|91258|91294|91599|91600|92829|93506|93507|93525|93526|93802|94103|94125|94253|94472|94473|94582|94583|94585|94586|94587|94589|94590|94591|94592|94595|94596|94597|94599|94601|94602|94607|94625|94633|94638|94639|94641|94642|94646|94647|94648|94649|94650|94651|94652|94654|94656|94657|94660|94661|94663|94665|94666|94667|94668|94669|94671|94672|94674|94675|94676|94678|94682|94685|94687|94689|94690|94691|94692|94693|94694|94695|94697|94702|94703|94705|94706|94707|94708|94709|94711|94713|94714|94716|94719|94720|94721|94722|94723|94725|94727|94729|94730|94731|94733|94734|94735|94736|94737|94739|94740|94741|94742|94743|94744|94748|94752|94753|94754|94755|94756|94759|94760|94762|94763|94765|94769|94778|94779|94780|94781|94783|94786|94788|94791|94792|94796|94797|94798|94799|94802|94804|94807|94808|94810|94812|94813|94814|94815|94816|94818|94820|94821|94826|94829|94831|94832|94833|94834|94836|94837|94838|94840|94842|94843|94844|94845|94851|94852|94855|94856|94857|94858|94859|94861|94863|94864|94865|94867|94869|94870|94873|94874|94876|94877|94878|94883|94889|94890|94891|94892|94895|94896|94897|94898|94900|94902|94908|94916|94917|94919|94920|94921|94922|94923|94924|94925|94927|94931|94932|94935|94937|94938|94943|94947|94948|94949|94950|94951|94953|94956|94958|94959|94960|94962|94964|94968|94970|94971|94973|94974|94975|94980|94981|94989|94992|94996|95004|95005|95008|95009|95010|95012|95014|95015|95019|95021|95022|95025|95026|95028|95033|95036|95037|95038|95039|95042|95045|95046|95047|95048|95049|95062|95063|95064|95065|95067|95073|95074|95075|95078|95079|95081|95088|95090|95103|95104|95113|95117|95119|95123|95125|95127|95128|95129|95132|95135|95136|95147|95151|95152|95162|95164|95165|95170|95172|95179|95180|95185|95186|95188|95192|95196|95201|95209|95211|95215|95218|95219|95224|95225|95226|95227|95229|95231|95234|95242|95244|95254|95264|95265|95266|95267|95271|95272|95276|95286|95290|95292|95293|95294|95300|95312|95316|95322|95328|95329|95331|95337|95342|95343|95351|95353|95355|95360|95362|95363|95366|95369|95374|95376|95377|95380|95381|95383|95384|95389|95391|95392|95394|95396|95400|95404|95405|95406|95411|95419|95421|95425|95426|95427|95429|95436|95438|95440|95442|95445|95449|95455|95459|95462|95466|95470|95471|95474|95475|95477|95479|95480|95481|95483|95484|95486|95487|95488|95490|95494|95497|95506|95516|95520|95521|95523|95524|95527|95535|95539|95541|95542|95550|95552|95555|95556|95557|95558|95561|95562|95563|95564|95568|95571|95574|95575|95576|95584|95586|95590|95592|95596|95600|95601|95603|95606|95612|95614|95615|95621|95622|95623|95625|95630|95641|95646|95650|95652|95657|95658|95662|95663|95665|95668|95685|95687|95694|95697|95703|95704|95706|95710|95717|95718|95724|95725|95731|95732|95734|95741|95747|95748|95754|95756|95759|95761|95765|95767|95774|95775|95777|95780|95785|95789|95791|95792|95793|95798|95799|95805|95806|95809|95812|95813|95816|95823|95824|95829|95830|95832|95833|95835|95837|95841|95843|95846|95848|95854|95855|95856|95862|95865|95871|95877|95880|95881|95883|95884|95887|95888|95889|95892|95894|95895|95898|95916|95918|95919|95926|95927|95928|95930|95932|95960|95963|95970|95977|95983|95985|95987|95989|95994|95995|95999|96000|96003|96004|96016|96023|96025|96028|96029|96030|96031|96032|96035|96040|96041|96044|96045|96047|96048|96049|96052|96054|96058|96059|96064|96065|96067|96069|96077|96080|96091|96094|96098|96100|96103|96104|96109|96110|96111|96112|96116|96129|96131|96132|96135|96137|96141|96145|96149|96150|96152|96154|96157|96159|96163|96169|96171|96172|96173|96176|96178|96182|96184|96188|96189|96190|96192|96195|96196|96199|96201|96202|96205|96212|96219|96220|96222|96223|96225|96230|96238|96241|96242|96243|96248|96250|96256|96257|96262|96265|96268|96269|96271|96273|96274|96279|96280|96281|96283|96284|96286|96287|96288|96290|96291|96293|96297|96300|96307|96308|96310|96317|96318|96320|96322|96329|96330|96342|96343|96346|96348|96349|96350|96353|96356|96358|96360|96361|96362|96367|96378|96381|96382|96384|96385|96396|96402|96403|96408|96417|96418|96420|96421|96423|96424|96425|96428|96430|96431|96432|96433|96437|96438|96439|96440|96443|96447|96449|96451|96452|96456|96458|96460|96461|96462|96463|96465|96466|96470|96473|96474|96475|96478|96479|96480|96481|96482|96483|96490|96491|96492|96494|96496|96497|96503|96505|96506|96508|96510|96512|96513|96514|96516|96517|96518|96520|96522|96525|96526|96528|96529|96532|96534|96535|96536|96537|96538|96543|96545|96550|96564|96565|96567|96569|96571|96572|96573|96574|96575|96576|96579|96580|96581|96582|96583|96584|96585|96587|96589|96590|96592|96594|96595|96600|96601|96602|96605|96608|96609|96614|96615|96616|96617|96627|96630|96631|96632|96637|96646|96647|96648|96649|96652|96653|96656|96657|96658|96660|96664|96669|96670|96671|96675|96680|96681|96697|96700|96708|96710|96711|96714|96715|96718|96720|96721|96722|96724|96728|96729|96735|96736|96739|96742|96743|96744|96746|96747|96748|96764|96765|96768|96774|96776|96778|96779|96780|96781|96786|96787|96788|96790|96792|96793|96795|96796|96798|96799|96802|96803|96804|96805|96806|96808|96809|96812|96813|96815|96818|96825|96826|96827|96830|96834|96836|96837|96838|96839|96841|96843|96850|96851|96852|96857|96858|96861|96886|96887|96888|96891|96892|96893|96896|96898|96899|96900|96902|96903|96904|96905|96906|96907|96908|96909|96910|96912|96914|96915|96916|96917|96918|96919|96921|96922|96923|96924|96927|96928|96929|96932|96933|96934|96936|96938|96939|96940|96942|96943|96944|96946|96947|96949|96950|96952|96953|96954|96955|96958|96959|96960|96962|96963|96964|96965|96966|96967|96968|96969|96971|96972|96973|96975|96977|96978|96979|96980|96981|96982|96983|96985|96986|96988|96991|96992|96994|96995|96996|96997|96998|96999|97001|97002|97003|97006|97007|97008|97009|97010|97011|97013|97016|97018|97019|97024|97025|97029|97031|97033|97034|97035|97039|97045|97047|97050|97051|97052|97053|97054|97055|97058|97059|97060|97061|97064|97068|97069|97070|97071|97072|97073|97074|97079|97080|97081|97082|97083|97086|97088|97089|97091|97094|97095|97097|97099|97104|97106|97107|97108|97109|97111|97112|97113|97115|97116|97118|97119|97120|97121|97122|97123|97124|97126|97127|97128|97129|97130|97131|97133|97134|97135|97136|97137|97138|97139|97141|97143|97144|97145|97146|97207|97209|97210|97211|97212|97213|97215|97218|97221|97222|97224|97225|97226|97227|97231|97232|97233|97234|97235|97236|97239|97241|97242|97244|97248|97249|97251|97252|97253|97257|97259|97262|97264|97265|97266|97267|97270|97271|97273|97276|97277|97278|97279|97280|97283|97286|97287|97288|97291|97292|97293|97295|97297|97299|97304|97306|97307|97309|97310|97311|97312|97314|98250|98251|98252|98253|98256|98257|98259|98260|98304|98305|98306|98307|98308|98338|98356|98360|98361|98362|98364|98365|98484|98485|98486|98572|98605|98715|98720|98723|98724|98725|98729|98734|98735|98737|98739|98740|98741|98743|98746|98749|99003|99004|99006|99143|99230|99232|99233|99236|99237|99468|99469|99470|99471|99473|99474|99475|99476|99477|99478|99479|99480|99481|99482|99483|99993|101890|101892|101893|102143|102144|102146|102148|102363|102364|102365|102366|102368|102369|102370|102375|102376|102377|102378|102383|102386|102387|102661|102663|102664|102665|102666|102667|102668|102669|102670|102671|102673|102674|102677|102678|102680|102682|102683|102685|102686|102688|102689|102690|102691|102692|102695|102696|102697|102698|102700|102704|102706|102707|102708|102709|102710|102712|102713|102714|102715|102716|102717|102719|102720|102721|102722|102726|102727|102728|102729|102730|102731|102732|102733|102735|102736|102737|102738|102739|102740|102741|102743|102744|102745|102747|102748|102749|102750|102751|102752|102753|102754|102755|102756|102757|102758|102760|102762|102763|102764|102765|102766|102767|102768|102769|102770|102774|102776|102777|102779|102780|102781|102782|102785|102786|102787|102788|102789|102790|102791|102792|102793|102796|102797|102798|102799|102803|102805|102806|102807|102808|102810|102811|102812|102813|102814|102815|102816|102820|102823|102824|102826|102827|102828|102830|102832|102834|102837|102841|102843|102844|102847|102850|102851|102852|102857|102858|102860|106674|106675|131003|131005|131012|131029|131039|131041|131051|131054|131056|131057|131058|131059|131061|131074|131086|131090|131092|131104|131105|131108|131133|131135|131139|131163|131189|131196|131201|131202|131204|131205|131210|131211|131213|131215|131218|131219|131223|131224|131233|131235|131241|131245|131247|131248|131253|131260|131262|131263|131264|131265|131267|131278|131284|131298|131299|131306|131316|131321|131329|131336|131341|131348|131362|131363|131365|131369|131381|131383|131384|131389|131392|131402|131404|131418|131419|131421|131425|131427|131434|131435|131436|131440|131444|131445|131446|131463|131464|131466|131471|131481|131482|131483|131484|131485|131493|131494|131503|131510|131512|131514|131516|131517|131522|131523|131527|131529|131530|131531|131533|131534|131536|131538|131539|131541|131545|131548|131550|131552|131554|131560|131565|131567|131568|131572|131573|131575|131579|131583|131584|131587|131593|131600|131601|131603|131604|131610|131617|131620|131625|131626|131634|131651|131656|131660|131662|131663|131666|131667|131668|131671|131673|131674|131678|131693|131694|131696|131701|131705|131706|131712|131716|131719|131726|131727|131730|131733|131737|131739|131740|131741|131749|131750|131754|131755|131887|131888|131890|131891|131894|131895|131896|131897|131898|131899|131900|132081|132088|132090|132091|132092|132093|132094|132096|132097|132100|132101|132102|132103|132105|132108|132109|132110|132111|132112|132114|132116|132117|132118|132119|132120|132121|132123|132124|132126|132132|132133|132134|132135|132136|132137|132138|132139|132140|132145|132147|132150|132152|132154|132156|132157|132158|132159|132162|132163|132165|132167|132170|132170|132171|132179|132180|132182|132183|132185|132186|132188|132189|132191|132192|132193|132198|132198|132201|132202|132204|132205|132206|132207|132208|132208|132209|132211|132215|132216|132217|132218|132219|132221|132221|132223|132225|132226|132227|132228|132236|132237|132238|132239|132240|132241|132242|132243|132244|132246|132247|132248|132249|132250|132251|132253|132254|132255|132257|132258|132259|132260|132264|132267|132268|132270|132271|132272|132273|132274|132275|132276|132277|132278|132279|132280|132281|132282|132284|132285|132286|132287|132288|132290|132291|132292|132295|132306|132330|132334|132336|132337|132338|132342|132347|132350|132354|132403|132404|132411|132413|132420|132421|132422|132423|132424|132427|132476|132477|132478|132480|132481|132482|132489|132498|132502|132509|132512|132516|132517|132522|132523|132526|132527|132543|132544|132732|132733|132734|132735|132738|132739|132742|132743|132744|132745|132747|132748|132749|132750|132751|132752|132753|132754|132755|132757|132758|132759|132760|132761|132763|132764|132765|132766|132767|132769|132770|132771|132772|132773|132774|132775|132776|132777|132778|132779|132780|132781|132782|132783|132784|132785|132786|132787|132788|132789|132790|132791|132792|132794|132795|132796|132797|132798|132799|132800|132801|132802|132803|132804|132805|132806|132807|132808|132809|132810|132811|132812|132813|132814|132815|132816|132817|132818|132819|132820|132821|132822|132823|132824|132825|132826|132827|132828|132829|132830|132831|132832|132833|132834|132835|132836|132837|132838|132839|132840|132841|132842|132843|132844|132845|132846|132847|132848|132849|132850|132851|132852|132854|132856|132857|132858|132859|132860|132861|132862|132863|132864|132865|132867|132868|132869|132870|132871|132872|132873|132874|132875|132876|132877|132878|132879|132880|132881|132882|132883|132885|132886|132887|132888|132889|132890|132891|132892|132893|132894|132895|132896|132897|132899|132900|132901|132902|132903|132904|132905|132906|132907|132909|132910|132911|132912|132913|132914|132915|132916|132917|132918|132920|132921|132922|132923|132924|132925|132926|132928|132929|132930|132931|132932|132934|132935|132936|132937|132939|132941|132942|132943|132944|132945|132946|132947|132948|132949|132950|132951|132954|132955|132956|132957|132958|132960|132961|132962|132963|132964|132965|132967|132968|132969|132971|132972|132973|132974|132975|132977|132979|132980|132981|132982|132983|132986|132989|132991|132992|132993|132994|132995|132997|132998|133000|133001|133005|133006|133007|133008|133009|133011|133012|133013|133014|133015|133016|133017|133018|133019|133020|133021|133022|133023|133024|133025|133026|133027|133028|133029|133030|133031|133032|133033|133036|133037|133038|133039|133041|133042|133043|133044|133045|133046|133047|133048|133049|133050|133051|133053|133055|133057|133058|133060|133061|133062|133063|133064|133065|133066|133068|133069|133070|133071|133072|133073|133074|133075|133076|133077|133078|133079|133080|133081|133082|133083|133084|133085|133086|133087|133088|133089|133090|133091|133093|133094|133095|133096|133097|133098|133099|133100|133101|133103|133104|133105|133106|133108|133109|133110|133111|133112|133113|133115|133116|133117|133118|133119|133120|133122|133123|133131|133133|133138|133139|133140|133142|133144|133145|133148|133149|133150|133151|133152|133153|133154|133155|133156|133157|133158|133159|133160|133162|133163|133164|133165|133166|133167|133168|133169|133170|133171|133172|133173|133174|133175|133176|133177|133178|133179|133180|133182|133184|133186|133187|133188|133189|133190|133192|133193|133194|133195|133197|133198|133199|133200|133201|133202|133203|133204|133205|133206|133207|133208|133209|133210|133211|133212|133213|133214|133215|133216|133217|133218|133219|133220|133221|133222|133223|133224|133225|133226|133227|133228|133229|133230|133231|133233|133234|133235|133237|133238|133239|133240|133242|133245|133246|133247|133248|133249|133250|133251|133252|133253|133254|133255|133256|133257|133258|133259|133261|133262|133263|133264|133265|133267|133268|133269|133271|133273|133275|133276|133277|133278|133280|133281|133282|133283|133284|133285|133286|133287|133288|133289|133290|133291|133292|133293|133294|133295|133297|133298|133299|133300|133302|133303|133304|133305|133306|133307|133308|133309|133310|133311|133312|133313|133314|133315|133316|133317|133318|133319|133320|133321|133322|133323|133324|133325|133326|133328|133329|133330|133331|133332|133333|133335|133336|133337|133338|133339|133340|133341|133342|133343|133344|133345|133346|133347|133348|133349|133350|133351|133352|133353|133354|133355|133356|133357|133359|133360|133361|133362|133363|133364|133365|133366|133367|133368|133369|133370|133371|133372|133374|133375|133376|133377|133378|133379|133380|133381|133382|133383|133384|133385|133386|133387|133388|133389|133390|133391|133393|133394|133395|133396|133397|133398|133399|133400|133401|133402|133404|133405|133406|133407|133411|133412|133413|133414|133416|133417|133418|133419|133420|133422|133423|133424|133425|133426|133427|133428|133429|133431|133432|133433|133434|133435|133436|133437|133438|133439|133440|133443|133444|133446|133447|133449|133450|133451|133452|133454|133455|133456|133457|133458|133459|133460|133461|133462|133463|133464|133465|133466|133467|133468|133469|133470|133471|133472|133473|133474|133475|133476|133477|133478|133479|133480|133481|133482|133483|133484|133485|133486|133487|133488|133489|133490|133491|133492|133493|133494|133495|133496|133498|133499|133500|133501|133502|133503|133504|133505|133506|133507|133508|133510|133511|133513|133514|133516|133517|133518|133519|133520|133521|133522|133523|133524|133525|133526|133527|133528|133529|133530|133531|133532|133533|133534|133535|133536|133537|133538|133539|133540|133541|133542|133543|133544|133545|133546|133547|133549|133573|133574|133575|133576|133577|133578|133579|133580|133581|133582|133583|133585|133586|133587|133588|133590|133593|133594|133595|133596|133597|133599|133600|133601|133602|133603|133604|133605|133606|133607|133608|133609|133610|133611|133612|133613|133614|133615|133617|133618|133619|133620|133622|133623|133624|133626|133627|133628|133629|133630|133631|133632|133634|133636|133637|133640|133641|133642|133643|133644|133645|133646|133647|133648|133649|133650|133651|133652|133653|133654|133655|133656|133657|133658|133659|133660|133661|133662|133663|133664|133665|133666|133667|133668|133669|133672|133673|133675|133681|133903|133904|133905|133906|133907|133908|133909|133979|134454|135068|135720|135721|135723|135724|135725|135726|135727|135728|135729|135730|136089|136432|136433|136434|136435|136436|136438|136439|136440|136441|136442|136443|136444|136445|136446|136447|136448|136449|136450|136451|136452|136453|136454|136455|136456|136457|136458|136460|136461|136462|136463|136467|136468|136469|136470|136471|136472|136473|136474|136475|136478|136479|136480|136481|136483|136484|136485|136486|136487|136488|136490|136491|136492|136493|136496|136497|136498|136499|136500|136501|136502|136503|136504|136505|136506|136507|136508|136509|136510|136511|136512|136513|136514|136515|136517|136518|136519|136520|136521|136527|136528|136529|136530|136569|136721|136722|136723|137023|137024|137125|137200|137201|137204|137207|137210|137211|137213|137215|137218|137224|137244|137247|137248|137249|137251|137252|137253|137254|137255|137256|137257|137258|137260|137261|137262|137263|137264|137268|137269|137270|137271|137272|137273|137274|137275|137276|137277|137278|137341|137342|137343|137344|137345|137346|137347|137349|137350|137352|137354|137355|137356|137357|137358|137359|137360|137362|137363|137364|137367|137368|137369|137370|137371|137372|137373|137374|137375|137376|137377|137378|137379|137380|137381|137382|137400|137402|137403|137404|137405|137406|137436|137437|137438|137440|137441|137442|137446|137447|137449|137450|137452|137453|137456|137457|137461|137463|137464|137465|137467|137468|137469|137470|137471|137472|137473|137474|137475|137476|137481|137482|137484|137487|137489|137490|137491|137492|137493|137494|137495|137496|137497|137498|137499|137500|137501|137584|137585|137586|137587|137588|137589|137590|137591|137592|137593|137594|137612|137613|137614|137615|137616|137621|137622|137623|137625|137626|137627|137628|137629|137631|137701|137703|137704|137705|137706|137707|137708|137709|137710|137711|137712|137713|137714|137715|138034|138035|138036|138037|138038|138040|138041|138043|138044|138152|138154|138155|138156|138157|138162|138163|138165|138166|138169|138170|138171|138360|138363|138364|138366|138367|138368|138381|138382|138384|138385|138387|138388|138389|138390|138391|138392|138393|138394|138395|138396|138397|138579|138580|138581|138582|138585|138587|138588|138590|138591|138592|138594|138595|138596|138598|138599|138600|138601|138602|138603|138605|138606|138611|138612|138613|138614|138615|138616|138617|138618|138619|138620|138621|138622|138623|138625|138626|138627|138628|138630|138631|138632|138633|138635|138636|138731|138732|138733|138734|138735|138753|138754|138755|138756|138757|138759|138761|138767|138801|138803|138805|138806|138808|138809|138810|138811|138832|138833|138834|138836|138837|138838|138839|138840|138841|138842|138843|138845|138846|138848|138849|138854|138857|138859|138860|138861|138864|138912|138916|138917|138918|138922|138925|138926|138927|138928|138929|138930|138931|138932|138933|138935|138936|138937|138983|138984|138985|138986|138987|138989|138990|138991|138992|138993|138994|138995|138996|139016|139017|139019|139020|139021|139022|139023|139024|139025|139097|139098|139099|139100|139102|139103|139105|139109|139110|139111|139112|139113|139116|139118|139119|139123|139124|139125|139127|139129|139144|139145|139304|139395|139396|139397|139398|139399|139401|139402|139403|139404|139405|139406|139407|139410|139412|139413|139414|139415|139416|139417|139418|139419|139420|139421|139422|139423|139425|139426|139427|139428|139429|139430|139431|139432|139433|139435|139436|139437|139438|139439|139440|139441|139442|139443|139444|139445|139447|139448|139449|139450|139451|139452|139453|139454|139455|139456|139457|139458|139459|139460|139462|139463|139464|139465|139466|139468|139469|139470|139471|139472|139473|139474|139475|139476|139477|139478|139479|139480|139481|139482|139483|139484|139485|139486|139487|139488|139489|139490|139492|139494|139496|139497|139499|139500|139502|139503|139505|139506|139507|139508|139509|139511|139515|139517|139518|139520|139521|139522|139525|139526|139527|139528|139529|139530|139531|139532|139533|139534|139536|139537|139538|139539|139540|139541|139542|139544|139545|139546|139547|139548|139549|139550|139551|139552|139553|139554|139555|139556|139558|139559|139560|139561|139564|139565|139566|139567|139568|139569|139570|139571|139572|139573|139574|139575|139576|139577|139578|139581|139582|139583|139585|139586|139587|139589|139590|139591|139594|139595|139596|139597|139600|139602|139603|139604|139606|139607|139609|139610|139611|139612|139613|139614|139615|139616|139617|139619|139620|139621|139623|139624|139625|139626|139627|139628|139629|139630|139631|139632|139633|139634|139635|139636|139637|139638|139639|139640|139641|139642|139643|139644|139645|139646|139647|139649|139650|139651|139652|139653|139654|139655|139656|139657|139658|139659|139660|139662|139663|139666|139667|139668|139669|139672|139673|139675|139678|139679|139680|139681|139682|139683|139684|139685|139686|139688|139690|139691|139692|139693|139695|139696|139697|139698|139699|139700|139701|139702|139703|139704|139705|139729|139737|139746|139747|139748|139750|139751|139752|139753|139754|139755|139756|139757|139758|139759|139760|139761|139762|139763|139764|139765|139766|139767|139768|139769|139770|139771|139773|139774|139775|139776|139777|139778|139779|139780|139781|139782|139786|139788|139789|139790|139791|139792|139793|139797|139798|139800|139801|139802|139803|139805|139806|139807|139808|139809|139810|139811|139812|139813|139814|139815|139817|139818|139819|139820|139821|139822|139823|139824|139825|139826|139827|139829|139830|139831|139832|139833|139834|139835|139836|139838|139840|139841|139842|139843|139844|139845|139846|139847|139848|139849|139850|139851|139852|139853|139854|139855|139856|139857|139858|139859|139860|139861|139862|139863|139864|139866|139867|139868|139869|139870|139872|139873|139874|139876|139878|139879|139880|139881|139882|139913|140108|140109|140110|140111|140112|140113|140114|140132|140133|140134|140135|140136|140137|140138|140139|140140|140141|140142|140143|140144|140145|140146|140147|140148|140149|140179|140180|140181|140182|140183|140184|140185|140186|140187|140190|140191|140192|140193|140199|140200|140201|140202|140203|140204|140210|140211|140212|140213|140214|140216|140217|140219|140221|140222|140223|140227|140228|140229|140230|140240|140241|140242|140243|140244|140245|140246|140247|140248|140249|140250|140251|140252|140253|140254|140255|140256|140257|140258|140259|140260|140261|140262|140263|140264|140265|140266|140268|140269|140270|140271|140272|140273|140274|140275|140276|140277|140278|140279|140280|140281|140282|140283|140284|140285|140286|140287|140289|140394|140395|140396|140397|140398|140399|140400|140401|140402|140420|140443|140444|140445|140446|140447|140448|140450|140916|140917|140919|140978|140979|140980|140981|140983|140984|140987|140988|140989|141073|141075|141076|141394|141395|141432|141433|141434|141443|141444|141446|141447|141448|141450|141451|141608|141632|141633|141634|141635|141933|141956|141957|141958|141959|141960|141961|141962|141963|141964|141965|141966|142010|142011|142012|142013|142014|142128|142129|142130|142131|142132|142277|142278|142279|142280|142400|142401|142402|142403|142404|142406|142408|142409|142537|142538|142541|142570|142571|142572|142573|142574|142575|142576|142577|142578|142579|142580|142582|142583|142921|142922|142923|143033|143034|143035|143036|143037|143038|143039|143040|143041|143042|143043|143171|143198|143199|150470|150471|150472|150473|150475|150476|150477|150478|150480|150481|150482|150483|150484|150485|150486|150487|150488|150489|150490|150491|150492|150493|150494|150495|150496|150497|150498|150499|150500|150501|150502|150503|150504|150505|150506|150508|150509|150510|150511|150512|150513|150514|150515|150516|150517|150518|150519|150520|150521|150522|150523|150524|150525|150526|150527|150528|150530|150531|150532|150533|150534|150535|150536|150537|150538|150539|150540|150541|150542|150543|150544|150545|150546|150547|150548|150549|150550|150551|150552|150553|150554|150555|150556|150557|150558|150559|150560|150561|150562|150563|150564|150565|150566|150567|150568|150569|150570|150571|150572|150573|150575|150576|150577|150578|150580|150581|150582|150583|150584|150585|150586|150587|150588|150589|150590|150591|150592|150593|150594|150595|150597|150598|150599|150600|150601|150602|150603|150604|150605|150606|150607|150608|150609|150610|150611|150612|150613|150615|150616|150617|150618|150619|150621|150622|150623|150624|150625|150626|150627|150628|150629|150630|150632|150633|150634|150635|150636|150637|150638|150639|150640|150641|150642|150643|150644|150645|150646|150647|150648|150650|150651|150652|150653|150654|150655|150656|150657|150658|150659|150660|150661|150662|150663|150664|150665|150666|150667|150668|150669|150670|150671|150672|150673|150674|150675|150676|150677|150678|150679|150680|150681|150682|150683|150684|150685|150686|150687|150688|150689|150690|150692|150693|150694|150695|150696|150697|150698|150699|150700|150701|150702|150703|150704|150705|150706|150707|150708|150709|150710|150711|150712|150713|150714|150715|150716|150717|150718|150719|150720|150721|150722|150723|150724|150725|150726|150727|150728|150729|150730|150731|150732|150733|150734|150735|150736|150737|150738|150739|150740|150741|150742|150743|150744|150745|150746|150747|150748|150749|150750|150751|150752|150753|150754|150755|150756|150757|150758|150759|150760|150761|150762|150763|150764|150765|150766|150767|150768|150769|150770|150771|150772|150773|150774|150775|150776|150777|150778|150779|150780|150781|150782|150783|150784|150785|150786|150787|150788|150789|150790|150791|150792|150793|150794|150795|150796|150798|150799|150800|150801|150802|150803|150804|150805|150806|150807|150808|150809|150810|150811|150812|150813|150814|150815|150816|150817|150818|150819|150820|150821|150822|150823|150824|150825|150826|150827|150828|150829|150830|150831|150832|150833|150834|150835|150836|150837|150838|150839|150840|150841|150842|150843|150844|150845|150846|150847|150848|150849|150850|150851|150852|150853|150854|150855|150856|150857|150858|150859|150860|150861|150862|150863|150864|150865|150866|150867|150868|150869|150870|150871|150872|150873|150874|150875|150876|150877|150878|150879|150880|150881|150882|150883|150884|150885|150886|150887|150888|150889|150891|150892|150893|150894|150895|150896|150897|150898|150899|150900|150901|150902|150903|150904|150905|150906|150907|150908|150909|150910|150911|150912|150913|150914|150915|150916|150917|150918|150919|150920|150921|150922|150923|150924|150925|150926|150927|150928|150929|150930|150931|150932|150933|150934|150935|150936|150937|150938|150939|150940|150941|150942|150943|150944|150945|150946|150947|150948|150949|150950|150951|150952|150953|150954|150955|150956|150957|150958|150959|150960|150961|150962|150963|150964|150965|150967|150968|150969|150970|150971|150972|150973|150974|150975|150976|150977|150978|150979|150980|150981|150982|150983|150984|150985|150986|150987|150988|150989|150990|150991|150992|150993|150994|150995|150996|150997|150998|150999|151000|151001|151002|151003|151004|151005|151006|151007|151008|151009|151010|151011|151012|151013|151014|151015|151016|151017|151018|151019|151020|151021|151022|151023|151024|151025|151026|151027|151028|151029|151030|151031|151032|151033|151034|151035|151036|151037|151038|151039|151040|151041|151042|151043|151044|151045|151046|151047|151048|151049|151050|151051|151052|151053|151054|151055|151056|151057|151058|151059|151060|151061|151062|151063|151064|151065|151066|151067|151068|151069|151070|151071|151072|151073|151074|151075|151076|151077|151078|151079|151080|151081|151082|151083|151084|151085|151086|151087|151088|151089|151090|151091|151092|151093|151094|151095|151096|151097|151098|151099|151100|151101|151102|151103|151104|151105|151106|151107|151108|151109|151110|151112|151113|151114|151115|151116|151117|151118|151119|151120|151121|151122|151123|151126|151128|151129|151130|151131|151132|151133|151134|151137|151139|151142|151143|151144|151145|151146|151147|151148|151149|151150|151151|151152|151153|151154|151155|151156|151157|151158|151159|151160|151161|151162|151163|151164|151165|151166|151167|151168|151169|151170|151171|151172|151173|151174|151175|151176|151177|151178|151179|151180|151181|151182|151183|151184|151185|151186|151187|151188|151189|151190|151191|151192|151193|151194|151195|151196|151197|151198|151199|151200|151201|151202|151203|151204|151205|151206|151207|151208|151209|151210|151211|151212|151213|151214|151215|151216|151217|151218|151219|151220|151221|151222|151223|151224|151225|151226|151227|151228|151229|151230|151231|151232|151233|151234|151235|151236|151237|151238|151239|151240|151241|151242|151243|151244|151245|151246|151247|151248|151249|151250|151251|151252|151253|151254|151255|151256|151257|151258|151259|151260|151261|151262|151263|151264|151265|151266|151267|151268|151269|151270|151271|151272|151273|151274|151275|151276|151277|151278|151279|151280|151281|151282|151283|151284|151285|151286|151287|151288|151289|151290|151291|151292|151293|151294|151295|151296|151297|151298|151299|151300|151301|151302|151303|151304|151305|151306|151307|151308|151309|151310|151311|151312|151313|151314|151315|151316|151317|151318|151319|151320|151321|151322|151323|151324|151325|151326|151327|151328|151329|151330|151331|151332|151333|151334|151335|151336|151337|151338|151339|151340|151341|151342|151343|151344|151345|151346|151347|151348|151349|151350|151351|151352|151353|151354|151355|151356|151357|151358|151359|151360|151361|151362|151363|151364|151365|151366|151367|151368|151369|151370|151371|151372|151373|151374|151375|151376|151377|151378|151379|151380|151381|151382|151383|151384|151385|151386|151387|151388|151389|151390|151391|151392|151393|151394|151395|151396|151397|151398|151399|151400|151401|151402|151403|151404|151405|151406|151407|151408|151409|151410|151411|151412|151413|151414|151415|151416|151417|151418|151419|151420|151421|151422|151423|151424|151425|151427|151428|151429|151430|151431|151432|151433|151434|151435|151436|151437|151438|151439|151440|151441|151442|151443|151444|151445|151446|151447|151448|151449|151450|151451|151452|151453|151454|151455|151456|151457|151458|151459|151460|151461|151462|151463|151464|151465|151466|151467|151468|151469|151470|151471|151472|151473|151474|151475|151476|151477|151478|151479|151480|151481|151482|151483|151484|151485|151486|151487|151488|151489|151490|151491|151492|151493|151494|151495|151496|151497|151498|151499|151500|151501|151502|151503|151504|151505|151506|151507|151508|151509|151510|151511|151512|151513|151514|151515|151516|151517|151518|151519|151520|151521|151522|151523|151524|151525|151526|151527|151528|151529|151530|151531|151532|151533|151534|151535|151536|151537|151538|151539|151540|151541|151542|151543|151544|151545|151546|151547|151548|151549|151550|151551|151552|151553|151554|151555|151556|151557|151558|151559|151560|151561|151562|151563|151564|151565|151566|151567|151568|151569|151570|151571|151572|151573|151574|151575|151576|151577|151578|151579|151580|151581|151582|151583|151584|151585|151586|151587|151588|151589|151590|151591|151592|151593|151594|151595|151596|151597|151598|151599|151600|151601|151602|151603|151604|151605|151606|151607|151608|151609|151610|151611|151612|151613|151614|151615|151616|151617|151618|151619|151620|151621|151622|151623|151624|151625|151626|151627|151628|151629|151630|151631|151632|151633|151634|151635|151636|151637|151638|151639|151640|151641|151642|151643|151644|151645|151646|151647|151648|151649|151650|151651|151652|151653|151654|151655|151656|151657|151658|151659|151660|151661|151662|151663|151664|151665|151666|151667|151668|151669|151670|151671|151672|151673|151674|151675|151676|151677|151678|151679|151680|151681|151682|151683|151684|151685|151686|151687|151688|151689|151690|151691|151692|151693|151694|151695|151696|151697|151698|151699|151700|151701|151702|151703|151704|151705|151706|151707|151708|151709|151710|151711|151712|151713|151714|151715|151716|151717|151718|151719|151720|151721|151722|151723|151724|151725|151726|151727|151728|151729|151730|151731|151732|151733|151734|151735|151736|151737|151738|151739|151740|151741|151742|151743|151744|151745|151746|151747|151748|151749|151750|151751|151752|151753|151754|151755|151756|151757|151758|151759|151760|151761|151762|151763|151764|151765|151766|151767|151768|151769|151770|151771|151772|151773|151774|151775|151776|151777|151778|151779|151780|151781|151782|151783|151784|151785|151786|151787|151788|151789|151790|151791|151792|151793|151794|151795|151796|151798|151799|151800|151801|151802|151803|151804|151805|151806|151807|151808|151809|151810|151811|151812|151813|151814|151815|151816|151817|151818|151819|151820|151821|151822|151823|151824|151825|151826|151827|151828|151829|151830|151831|151832|151833|151834|151835|151836|151837|151838|151839|151840|151841|151842|151843|151844|151845|151847|151848|151849|151850|151851|151852|151853|151854|151855|151856|151857|151858|151859|151860|151861|151862|151864|151865|151866|151867|151868|151869|151870|151872|151873|151874|151875|151876|151877|151878|151879|151881|151882|151883|151884|151885|151887|151888|151889|151892|151893|151894|151895|151896|151897|151898|151899|151900|151901|151902|151903|151904|151905|151906|151907|151908|151909|151910|151911|151912|151913|151915|151916|151917|151918|151919|151920|151921|151922|151923|151924|151925|151926|151927|151928|151929|151930|151931|151932|151933|151934|151935|151936|151937|151938|151939|151940|151941|151942|151943|151944|151945|151946|151947|151948|151949|151950|151951|151952|151953|151954|151955|151956|151957|151958|151959|151960|151961|151962|151963|151964|151965|151967|151968|151969|151970|151971|151972|151973|151974|151975|151976|151977|151978|151979|151980|151981|151982|151983|151984|151985|151986|151987|151988|151989|151990|151991|151992|151993|151994|151995|151996|151997|151999|152000|152001|152002|152003|152004|152005|152006|152007|152008|152009|152011|152014|152015|152016|152017|152018|152019|152020|152021|152022|152023|152024|152025|152026|152027|152028|152029|152030|152031|152032|152033|152034|152035|152036|152037|152038|152039|152040|152041|152042|152043|152044|152045|152046|152047|152048|152049|152050|152051|152052|152053|152054|152055|152056|152057|152058|152059|152060|152062|152063|152064|152065|152066|152067|152068|152069|152070|152071|152072|152073|152074|152075|152076|152077|152078|152079|152080|152081|152082|152083|152084|152085|152086|152087|152088|152089|152090|152091|152092|152093|152094|152095|152096|152097|152098|152099|152100|152103|152104|152105|152106|152107|152108|152109|152110|152111|152112|152113|152114|152115|152116|152117|152118|152119|152120|152121|152122|152124|152125|152126|152127|152128|152129|152130|152131|152132|152133|152134|152135|152136|152137|152138|152139|152140|152141|152142|152143|152144|152145|152146|152147|152148|152149|152150|152151|152152|152153|152154|152155|152156|152157|152158|152159|152160|152161|152162|152163|152164|152165|152166|152167|152168|152169|152170|152171|152172|152173|152174|152175|152176|152177|152178|152179|152180|152181|152182|152183|152184|152185|152186|152187|152188|152189|152190|152192|152193|152194|152195|152196|152197|152198|152199|152200|152201|152202|152203|152204|152205|152206|152207|152208|152209|152210|152211|152212|152213|152214|152215|152216|152217|152218|152219|152220|152221|152222|152223|152224|152225|152226|152227|152228|152229|152230|152231|152232|152233|152234|152235|152236|152237|152238|152239|152240|152241|152242|152243|152244|152245|152246|152247|152248|152249|152250|152251|152252|152253|152254|152255|152256|152257|152258|152259|152260|152261|152262|152265|152266|152268|152269|152270|152271|152272|152273|152274|152275|152276|152277|152278|152279|152280|152281|152282|152283|152284|152285|152286|152287|152288|152289|152290|152291|152292|152293|152294|152296|152297|152298|152299|152300|152301|152302|152303|152304|152305|152306|152307|152308|152309|152310|152311|152312|152313|152314|152315|152316|152318|152319|152320|152321|152322|152323|152324|152325|152326|152327|152328|152329|152330|152331|152332|152333|152334|152335|152336|152337|152338|152339|152340|152341|152342|152343|152344|152345|152346|152347|152348|152349|152350|152351|152352|152353|152354|152355|152356|152357|152358|152359|152360|152361|152362|152363|152364|152365|152366|152367|152368|152369|152370|152371|152372|152373|152374|152376|152377|152378|152379|152380|152381|152382|152383|152384|152385|152386|152387|152388|152389|152390|152391|152392|152393|152394|152395|152396|152397|152398|152399|152400|152401|152402|152403|152404|152405|152406|152408|152409|152410|152411|152412|152413|152414|152415|152416|152417|152418|152419|152420|152421|152422|152423|152424|152425|152426|152427|152428|152429|152430|152431|152432|152433|152434|152435|152436|152437|152438|152439|152440|152441|152442|152443|152444|152445|152446|152447|152448|152449|152450|152451|152452|152453|152454|152455|152456|152457|152458|152459|152460|152461|152462|152463|152464|152465|152466|152467|152468|152469|152470|152471|152472|152473|152474|152475|152476|152477|152478|152479|152480|152481|152482|152483|152484|152485|152486|152487|152488|152489|152490|152491|152492|152493|152494|152495|152496|152497|152498|152499|152500|152501|152502|152503|152504|152505|152506|152507|152508|152509|152510|152511|152512|152513|152514|152515|152516|152517|152518|152519|152520|152521|152522|152523|152524|152525|152526|152527|152528|152529|152530|152531|152532|152533|152534|152535|152536|152537|152538|152539|152540|152541|152542|152543|152544|152545|152546|152547|152548|152549|152550|152551|152552|152553|152554|152555|152556|152557|152558|152559|152560|152561|152562|152563|152564|152565|152566|152567|152568|152569|152570|152571|152572|152573|152574|152575|152576|152577|152578|152579|152580|152581|152582|152583|152584|152585|152586|152587|152588|152589|152590|152591|152592|152593|152594|152595|152596|152597|152598|152599|152600|152601|152602|152603|152604|152605|152606|152607|152608|152609|152610|152611|152612|152613|152614|152615|152616|152617|152618|152619|152620|152621|152622|152623|152624|152625|152626|152627|152628|152629|152630|152631|152632|152633|152634|152635|152636|152637|152638|152639|152640|152641|152642|152643|152644|152645|152646|152647|152648|152649|152650|152651|152652|152653|152654|152655|152656|152657|152658|152659|152660|152661|152662|152663|152664|152665|152666|152667|152668|152669|152670|152671|152672|152673|152674|152675|152676|152677|152678|152679|152680|152681|152682|152683|152684|152685|152686|152689|152690|152691|152692|152693|152694|152695|152696|152697|152698|152699|152700|152701|152702|152703|152704|152705|152706|152707|152708|152709|152710|152711|152712|152713|152714|152715|152716|152717|152718|152719|152720|152721|152722|152723|152724|152725|152726|152727|152728|152729|152730|152731|152732|152733|152734|152735|152736|152737|152738|152739|152740|152741|152742|153693|153694|153696|153698|153702|153704|153707|153708|153734|165953|165962|165965|165966|165967|165969|165971|165974|165975|165978|165979|165980|165981|165983|165984|165985|165987|165988|165990|165991|165992|165993|166240|166245|166247|166248|166249|166252|166256|166261|166262|166264|166272|166273|166274|166275|166276|167852|170202|171051|171052|171053|171076|171077|171078|171080|171081|171097|171098|171099|171100|171114|171116|171124|171125|171126|171127|171148|171149|171186|171187|171191|171389|171614|171616|172176|172353|172491|172492|172493|173736|173810|173950|175773|176503|176640|176641|177129|177192|177247|177992|178148|178766|178875|179925|179926|179928|179929|179930|179931|179932|179933|179934|179935|179936|179937|179938|179939|179940|179941|179942|179944|179946|179947|179949|179950|179951|179952|179953|179955|179956|179957|179958|179959|179960|179961|179962|179963|179965|179966|179967|179968|179969|179970|179971|179973|179974|179976|179979|179981|179982|179983|179984|179985|179986|179987|179988|179989|179990|179991|179992|179993|179994|179995|179996|179997|179998|180000|180001|180003|180005|180007|180008|180009|180010|180012|180014|180015|180016|180017|180019|180020|180021|180022|180023|180024|180026|180027|180028|180029|180030|180031|180032|180033|180034|180036|180037|180038|180039|180040|180042|180044|180045|180046|180047|180048|180049|180050|180051|180053|180054|180055|180056|180057|180058|180059|180060|180061|180062|180063|180064|180065|180066|180067|180068|180069|180072|180073|180074|180075|180076|180077|180078|180079|180080|180081|180082|180083|180084|180085|180086|180087|180088|180089|180090|180092|180093|180094|180095|180096|180099|180100|180101|180102|180103|180104|180105|180106|180107|180108|180109|180110|180111|180113|180115|180116|180117|180119|180121|180124|180125|180126|180128|180130|180133|180134|180135|180138|180139|180140|180142|180143|180144|180148|180149|180152|180153|180154|180156|180158|180162|180167|180168|180169|180171|180173|180176|180177|180178|180180|180181|180182|180183|180184|180186|180188|180192|180193|180194|180195|180196|180197|180198|180199|180200|180202|180204|180205|180207|180208|180209|180211|180212|180214|180215|180216|180217|180218|180219|180220|180221|180223|180224|180225|180226|180228|180229|180231|180232|180233|180234|180236|180238|180239|180241|180242|180244|180245|180247|180249|180251|180252|180254|180255|180256|180257|180258|180259|180260|180261|180263|180264|180265|180266|180267|180268|180269|180271|180272|180273|180274|180276|180277|180278|180279|180280|180281|180282|180283|180284|180286|180288|180290|180291|180292|180293|180294|180295|180296|180297|180298|180300|180301|180303|180304|180306|180308|180311|180312|180313|180314|180315|180316|180318|180319|180320|180321|180325|180327|180331|180332|180333|180335|180337|180343|180344|180345|180347|180349|180350|180352|180353|180354|180355|180363|180366|180368|180369|180370|180372|180373|180374|180376|180378|180379|180381|180382|180383|180384|180385|180386|180387|180388|180389|180391|180394|180396|180398|180399|180400|180401|180402|180403|180404|180405|180406|180407|180408|180409|180410|180411|180412|180413|180414|180415|180416|180418|180421|180422|180423|180424|180427|180428|180429|180431|180432|180433|180434|180436|180437|180439|180440|180441|180442|180443|180444|180445|180447|180448|180449|180450|180451|180455|180457|180458|180459|180460|180461|180463|180464|180465|180466|180467|180468|180469|180471|180472|180474|180475|180476|180478|180479|180480|180481|180482|180483|180484|180485|180486|180487|180490|180491|180493|180494|180495|180497|180498|180499|180500|180501|180502|180503|180504|180505|180507|180508|180509|180510|180511|180512|180513|180514|180515|180516|180517|180518|180519|180520|180521|180522|180523|180524|180525|180526|180528|180529|180530|180532|180533|180534|180535|180537|180538|180539|180541|180542|180543|180544|180545|180546|180549|180550|180551|180552|180554|180555|180557|180560|180562|180563|180564|180566|180567|180568|180569|180570|180571|180572|180573|180576|180577|180578|180579|180580|180581|180582|180583|180585|180587|180589|180590|180591|180592|180595|180597|180598|180600|180602|180603|180606|180607|180608|180609|180612|180613|180614|180615|180618|180619|180620|180622|180624|180626|180627|180630|180631|180632|180634|180635|180636|180637|180638|180639|180640|180641|180642|180643|180645|180648|180649|180651|180652|180656|180657|180661|180662|180664|180665|180666|180668|180669|180670|180671|180672|180673|180676|180678|180680|180681|180682|180688|180689|180691|180692|180693|180694|180695|180696|180697|180698|180699|180702|180703|180705|180706|180708|180709|180710|180711|180712|180713|180714|180715|180716|180717|180718|180719|180720|180721|180722|180723|180724|180727|180728|180729|180730|180731|180732|180733|180735|180736|180737|180738|180739|180740|180741|180742|180743|180744|180745|180746|180748|180749|180750|180751|180752|180754|180755|180756|180757|180758|180759|180765|180766|180767|180768|180769|180770|180772|180773|180774|180775|180776|180778|180779|180780|180783|180784|180785|180786|180787|180788|180789|180790|180791|180792|180793|180795|180796|180797|180798|180799|180800|180801|180802|180803|180804|180805|180806|180807|180808|180809|180810|180811|180813|180814|180815|180816|180817|180818|180819|180822|180824|180825|180826|180827|180828|180830|180831|180834|180835|180837|180838|180839|180840|180842|180843|180844|180845|180847|180850|180852|180853|180855|180857|180859|180861|180863|180868|180870|180871|180872|180873|180875|180877|180880|180881|180882|180884|180885|180886|180888|180890|180891|180892|180893|180894|180895|180897|180898|180901|180902|180903|180904|180905|180906|180907|180908|180909|180910|180911|180912|180913|180916|180917|180918|180919|180920|180922|180923|180925|180926|180927|180928|180929|180932|180933|180934|180935|180936|180937|180938|180939|180940|180941|180942|180943|180944|180946|180947|180948|180949|180950|180952|180954|180955|180956|180957|180958|180959|180960|180961|180962|180965|180967|180969|180971|180973|180976|180977|180978|180979|180980|180981|180985|180986|180988|180989|180990|180991|180992|180993|180994|180995|180996|180998|180999|181000|181003|181004|181005|181006|181009|181010|181011|181014|181018|181019|181020|181023|181024|181025|181026|181027|181029|181031|181032|181033|181034|181035|181036|181037|181040|181042|181043|181044|181045|181047|181048|181049|181050|181051|181052|181053|181055|181056|181060|181061|181062|181063|181064|181065|181066|181068|181069|181071|181073|181076|181077|181078|181079|181080|181081|181082|181083|181084|181087|181089|181090|181091|181092|181093|181095|181098|181099|181100|181102|181103|181104|181105|181106|181107|181108|181109|181110|181112|181113|181115|181116|181117|181118|181120|181121|181122|181123|181125|181126|181128|181147|181148|181150|181155|181156|181157|181158|181159|181161|181162|181201|181202|181203|181206|181207|181209|181211|181212|181213|181216|181218|181312|181314|181315|181316|181595|181596|181597|181598|181599|181600|181601|181602|181603|181604|181605|181606|181607|181608|181609|181610|181611|181612|181613|181614|181615|181616|181617|181618|181619|181620|181621|181622|181623|181624|181625|181626|181627|181628|181629|181630|181631|181632|181633|181634|181635|181636|181637|181638|181639|181640|181641|181642|181643|181644|181645|181646|181647|181648|181649|181650|181651|181652|181653|181654|181655|181656|181657|181658|181659|181660|181661|181662|181663|181664|181665|181666|181667|181668|181669|181670|181671|181672|181673|181674|181675|181676|181677|181678|181679|181680|181681|181682|181683|181684|181685|181686|181687|181688|181689|181690|181691|181692|181693|181694|181695|181696|181697|181698|181699|181700|181701|181702|181703|181704|181705|181706|181707|181708|181709|181710|181711|181712|181713|181714|181715|181716|181717|181718|181719|181720|181721|181722|181723|181724|181725|181726|181727|181728|181729|181730|181731|181732|181733|181734|181735|181736|181737|181738|181739|181740|181741|181742|181743|181744|181745|181746|181747|181748|181749|181750|181751|181752|181753|181754|181755|181756|181757|181758|181759|181760|181761|181762|181763|181764|181765|181766|181767|181768|181769|181770|181771|181772|181773|181774|181775|181776|181777|181778|181779|181780|181781|181782|181783|181784|181785|181786|181787|181788|181789|181790|181791|181792|181793|181794|181795|181796|181797|181798|181799|181800|181801|181802|181803|181804|181805|181806|181807|181808|181809|181810|181811|181812|181813|181814|181815|181816|181817|181818|181819|181820|181821|181822|181823|181824|181825|181826|181827|181828|181829|181830|181831|181832|181833|181834|181835|181836|181837|181838|181839|181840|181841|181842|181843|181844|181845|181846|181847|181848|181849|181850|181851|181852|181853|181854|181855|181856|181857|181858|181859|181860|181861|181862|181863|181864|181865|181866|181867|181868|181869|181870|181871|181872|181873|181874|181875|181876|181877|181878|181879|181880|181881|181882|181883|181884|181885|181886|181887|181888|181889|181890|181891|181892|181893|181894|181895|181896|181897|181898|181899|181900|181901|181902|181903|181904|181905|181906|181907|181908|181909|181910|181911|181912|181913|181914|181915|181916|181917|181918|181919|181920|181921|181922|181923|181924|181925|181926|181927|181928|181929|181930|181931|181932|181933|181934|181935|181936|181937|181938|181939|181940|181941|181942|181943|181944|181945|181946|181947|181948|181949|181950|181951|181952|181953|181954|181955|181956|181957|181958|181959|181960|181961|181962|181963|181964|181965|181966|181967|181968|181969|181970|181971|181972|181973|181974|181975|181976|181977|181978|181979|181980|181981|181982|181983|181984|181985|181986|181987|181988|181989|181990|181991|181992|181993|181994|181995|181996|181997|181998|181999|182000|182001|182002|182003|182004|182005|182006|182007|182008|182009|182010|182011|182012|182013|182014|182015|182016|182017|182018|182019|182020|182021|182022|182023|182024|182025|182026|182027|182028|182029|182030|182031|182032|182033|182034|182035|182036|182037|182038|182039|182040|182041|182042|182043|182044|182045|182046|182047|182048|182049|182050|182051|182052|182053|182054|182055|182056|182057|182058|182059|182060|182061|182062|182063|182064|182065|182066|182067|182068|182069|182070|182071|182072|182073|182074|182075|182076|182077|182078|182079|182080|182081|182082|182083|182084|182085|182086|182087|182088|182089|182090|182091|182092|182093|182094|182095|182096|182097|182098|182099|182100|182101|182102|182103|182104|182105|182106|182107|182108|182109|182110|182111|182112|182113|182114|182115|182116|182117|182118|182119|182120|182121|182122|182123|182124|182125|182126|182127|182128|182129|182130|182131|182132|182133|182134|182135|182136|182137|182138|182139|182140|182141|182142|182143|182144|182145|182146|182147|182148|182149|182150|182151|182152|182153|182154|182155|182156|182157|182158|182159|182160|182161|182162|182163|182164|182165|182166|182167|182168|182169|182170|182171|182172|182173|182174|182175|182176|182177|182178|182179|182180|182181|182182|182183|182184|182185|182186|182187|182188|182189|182190|182191|182192|182193|182194|182195|182196|182197|182198|182199|182200|182201|182202|182203|182204|182205|182206|182207|182208|182209|182210|182211|182212|182213|182214|182215|182216|182217|182218|182219|182220|182221|182222|182223|182224|182225|182226|182227|182228|182229|182230|182231|182232|182233|182234|182235|182236|182237|182238|182239|182240|182241|182242|182243|182244|182245|182246|182247|182248|182249|182250|182251|182252|182253|182254|182255|182256|182257|182258|182259|182260|182261|182262|182263|182264|182265|182266|182267|182268|182269|182270|182271|182272|182273|182274|182275|182276|182277|182278|182279|182280|182281|182282|182283|182284|182285|182286|182287|182288|182289|182290|182291|182292|182293|182294|182295|182296|182297|182298|182299|182300|182301|182302|182303|182304|182305|182306|182307|182308|182309|182310|182311|182312|182313|182314|182315|182316|182317|182318|182319|182320|182321|182322|182323|182324|182325|182326|182327|182328|182329|182330|182331|182332|182333|182334|182335|182336|182337|182338|182339|182340|182341|182342|182343|182344|182345|182346|182347|182348|182349|182350|182351|182352|182353|182354|182355|182356|182357|182358|182359|182360|182361|182362|182363|182364|182365|182366|182367|182368|182369|182370|182371|182372|182373|182374|182375|182376|182377|182378|182379|182380|182381|182382|182383|182384|182385|182386|182387|182388|182389|182390|182391|182392|182393|182394|182395|182396|182397|182398|182399|182400|182401|182402|182403|182404|182405|182406|182407|182408|182409|182410|182411|182412|182413|182414|182415|182416|182417|182418|182419|182420|182421|182422|182423|182424|182425|182426|182427|182428|182429|182430|182431|182432|182433|182434|182435|182436|182437|182438|182439|182440|182441|182442|182443|182444|182445|182446|182447|182448|182449|182450|182451|182452|182453|182454|182455|182456|182457|182458|182459|182460|182461|182462|182463|182464|182465|182466|182467|182468|182469|182470|182471|182472|182473|182474|182475|182476|182477|182478|182479|182480|182481|182482|182483|182484|182485|182486|182487|182488|182489|182490|182491|182492|182493|182494|182495|182496|182497|182498|182499|182500|182501|182502|182503|182504|182505|182506|182507|182508|182509|182510|182511|182512|182513|182514|182515|182516|182517|182518|182519|182520|182521|182522|182523|182524|182525|182526|182527|182528|182529|182530|182531|182532|182533|182534|182535|182536|182537|182538|182539|182540|182541|182542|182543|182544|182545|182546|182547|182548|182549|182550|182551|182552|182553|182554|182555|182556|182557|182558|182559|182560|182561|182562|182563|182564|182565|182566|182567|182568|182569|182570|182571|182572|182573|182574|182575|182576|182577|182578|182579|182580|182581|182582|182583|182584|182585|182586|182587|182588|182589|182590|182591|182592|182593|182594|182595|182596|182597|182598|182599|182600|182601|182602|182603|182604|182605|182606|182607|182608|182609|182610|182611|182612|182613|182614|182615|182616|182617|182618|182619|182620|182621|182622|182623|182624|182625|182626|182627|182628|182629|182630|182631|182632|182633|182634|182635|182636|182637|182638|182639|182640|182641|182642|182643|182644|182645|182646|182647|182648|182649|182650|182651|182652|182653|182654|182655|182656|182657|182658|182659|182660|182661|182662|182663|182664|182665|182666|182667|182668|182669|182670|182671|182672|182673|182674|182675|182676|182677|182678|182679|182680|182681|182682|182683|182684|182685|182686|182687|182688|182689|182690|182691|182692|182693|182694|182695|182696|182697|182698|182699|182700|182701|182702|182703|182704|182705|182706|182707|182708|182709|182710|182711|182712|182713|182714|182715|182716|182717|182718|182719|182720|182721|182722|182723|182724|182725|182726|182727|182728|182729|182730|182731|182732|182733|182734|182735|182736|182737|182738|182739|182740|182741|182742|182743|182744|182745|182746|182747|182748|182749|182750|182751|182752|182753|182754|182755|182756|182757|182758|182759|182760|182761|182762|182763|182764|182765|182766|182767|182768|182769|182770|182771|182772|182773|182774|182775|182776|182777|182778|182779|182780|182781|182782|182783|182784|182785|182786|182787|182788|182789|182790|182791|182792|182793|182794|182795|182796|182797|182798|182799|182800|182801|182802|182803|182804|182805|182806|182807|182808|182809|182810|182811|182812|182813|182814|182815|182816|182817|182818|182819|182820|182821|182822|182823|182824|182825|182826|182827|182828|182829|182830|182831|182832|182833|182834|182835|182836|182837|182838|182839|182840|182841|182842|182843|182844|182845|182846|182847|182848|182849|182850|182851|182852|182853|182854|182855|182856|182857|182858|182859|182860|182861|182862|182863|182864|182865|182866|182867|182868|182869|182870|182871|182872|182873|182874|182875|182876|182877|182878|182879|182880|182881|182882|182883|182884|182885|182886|182887|182888|182889|182890|182891|182892|182893|182894|182895|182896|182897|182898|182899|182900|182901|182902|182903|182904|182905|182906|182907|182908|182909|182910|182911|182912|182913|182914|182915|182916|182917|182918|182919|182920|182921|182922|182923|182924|182925|182926|182927|182928|182929|182930|182931|182932|182933|182934|182935|182936|182937|182938|182939|182940|182941|182942|182943|182944|182945|182946|182947|182948|182949|182950|182951|182952|182953|182954|182955|182956|182957|182958|182959|182960|182961|182962|182963|182964|182965|182966|182967|182968|182969|182970|182971|182972|182973|182974|182975|182976|182977|182978|182979|182980|182981|182982|182983|182984|182985|182986|182987|182988|182989|182990|182991|182994|182995|182996|182997|182998|182999|183000|183001|183002|183003|183004|183005|183006|183007|183008|183009|183010|183011|183012|183013|183014|183015|183016|183017|183018|183019|183020|183021|183022|183023|183024|183025|183026|183027|183028|183029|183030|183031|183032|183033|183034|183035|183036|183037|183038|183039|183040|183041|183042|183043|183044|183045|183046|183047|183048|183049|183050|183051|183052|183053|183054|183055|183056|183057|183058|183059|183060|183061|183062|183063|183064|183065|183066|183067|183068|183069|183070|183071|183072|183073|183074|183075|183076|183077|183078|183079|183080|183081|183082|183083|183084|183085|183086|183087|183088|183089|183090|183091|183092|183093|183094|183095|183096|183097|183098|183099|183100|183101|183102|183103|183104|183105|183106|183107|183108|183109|183110|183111|183112|183113|183114|183115|183116|183117|183118|183119|183120|183121|183122|183123|183124|183125|183126|183127|183128|183129|183130|183131|183132|183133|183134|183135|183136|183137|183138|183139|183140|183141|183142|183143|183144|183145|183146|183147|183148|183149|183150|183151|183152|183153|183154|183155|183156|183157|183158|183159|183160|183161|183162|183163|183164|183165|183166|183167|183168|183169|183170|183171|183172|183173|183174|183175|183176|183177|183178|183179|183180|183181|183182|183183|183184|183185|183186|183187|183188|183189|183190|183191|183192|183193|183194|183195|183196|183197|183198|183199|183200|183201|183202|183203|183204|183205|183206|183207|183208|183209|183210|183211|183212|183213|183214|183215|183216|183217|183218|183219|183220|183221|183222|183223|183224|183225|183226|183227|183228|183229|183230|183231|183232|183233|183234|183235|183236|183237|183238|183239|183240|183241|183242|183243|183244|183245|183246|183247|183248|183249|183250|183251|183252|183253|183254|183255|183256|183257|183258|183259|183260|183261|183262|183263|183264|183265|183266|183267|183268|183269|183270|183271|183272|183273|183274|183275|183276|183277|183278|183279|183280|183281|183282|183283|183284|183285|183286|183287|183288|183289|183290|183291|183292|183293|183294|183295|183296|183297|183298|183299|183300|183301|183302|183303|183304|183305|183306|183307|183308|183309|183310|183311|183312|183313|183314|183315|183316|183317|183318|183319|183320|183321|183322|183323|183324|183325|183326|183327|183328|183329|183330|183331|183332|183333|183334|183335|183336|183337|183338|183339|183340|183341|183342|183343|183344|183345|183346|183347|183348|183349|183350|183351|183352|183353|183354|183355|183356|183357|183358|183359|183360|183361|183362|183363|183364|183365|183366|183367|183368|183369|183370|183371|183372|183373|183374|183375|183376|183377|183378|183379|183380|183381|183382|183383|183384|183385|183386|183387|183388|183389|183390|183391|183392|183393|183394|183395|183396|183397|183398|183399|183400|183401|183402|183403|183404|183405|183406|183407|183408|183409|183410|183411|183412|183413|183414|183415|183416|183417|183418|183419|183420|183421|183422|183423|183424|183425|183426|183427|183428|183429|183430|183431|183432|183433|183434|183435|183436|183437|183438|183439|183440|183441|183442|183444|183445|183446|183447|183448|183449|183450|183451|183452|183453|183454|183455|183456|183457|183458|183459|183460|183461|183462|183463|183464|183465|183466|183467|183468|183469|183470|183471|183472|183473|183474|183475|183476|183477|183478|183479|183480|183481|183482|183483|183484|183485|183486|183487|183488|183489|183490|183491|183492|183493|183494|183495|183496|183497|183498|183499|183500|183501|183502|183503|183504|183505|183506|183507|183508|183509|183510|183511|183512|183513|183514|183515|183516|183517|183518|183519|183520|183521|183522|183523|183524|183525|183526|183527|183528|183529|183530|183531|183532|183533|183534|183535|183536|183537|183538|183539|183540|183541|183542|183543|183544|183545|183546|183547|183548|183549|183550|183551|183552|183553|183554|183555|183556|183557|183558|183559|183560|183561|183562|183563|183564|183565|183566|183567|183568|183569|183570|183571|183572|183573|183574|183575|183576|183577|183578|183579|183580|183581|183582|183583|183584|183585|183586|183587|183588|183589|183590|183591|183592|183593|183594|183595|183596|183597|183598|183599|183600|183601|183602|183603|183604|183605|183606|183607|183608|183609|183610|183611|183612|183613|183614|183615|183616|183617|183618|183619|183620|183621|183622|183623|183624|183625|183626|183627|183628|183629|183630|183631|183632|183633|183634|183635|183636|183637|183638|183639|183640|183641|183642|183643|183644|183645|183646|183647|183648|183649|183650|183651|183652|183653|183654|183655|183656|183657|183658|183659|183660|183661|183662|183663|183664|183665|183666|183667|183668|183669|183670|183671|183672|183673|183674|183675|183676|183677|183678|183679|183680|183681|183682|183683|183684|183685|183686|183687|183688|183689|183690|183691|183692|183693|183694|183695|183696|183697|183698|183699|183700|183701|183702|183703|183704|183705|183706|183707|183708|183709|183710|183711|183712|183713|183714|183715|183716|183717|183718|183719|183720|183721|183722|183723|183724|183725|183726|183727|183728|183729|183730|183731|183732|183733|183734|183735|183736|183737|183738|183739|183740|183741|183742|183743|183744|183745|183746|183747|183748|183749|183750|183751|183752|183753|183754|183755|183756|183757|183758|183759|183760|183761|183762|183763|183764|183765|183766|183767|183768|183769|183770|183771|183772|183773|183774|183775|183776|183777|183778|183779|183781|183782|183783|183784|183785|183786|183787|183788|183789|183790|183791|183792|183793|183794|183795|183796|183797|183798|183799|183800|183801|183802|183803|183804|183805|183806|183807|183808|183809|183810|183811|183812|183813|183814|183815|183816|183817|183818|183819|183820|183821|183822|183823|183824|183825|183826|183827|183828|183829|183830|183831|183832|183833|183834|183835|183836|183837|183838|183839|183840|183841|183842|183843|183844|183845|183846|183847|183848|183849|183850|183851|183852|183853|183854|183855|183856|183857|183858|183859|183860|183861|183862|183863|183864|183865|183866|183867|183868|183869|183870|183871|183872|183873|183874|183875|183876|183877|183878|183879|183880|183881|183882|183883|183884|183885|183886|183887|183888|183889|183890|183891|183892|183893|183894|183895|183896|183897|183898|183899|183900|183901|183902|183903|183904|183905|183906|183907|183908|183909|183910|183911|183912|183913|183914|183915|183916|183917|183918|183919|183920|183921|183922|183923|183924|183925|183926|183927|183928|183929|183930|183931|183932|183933|183934|183935|183936|183937|183938|183939|183940|183941|183942|183943|183944|183945|183946|183947|183948|183949|183950|183951|183952|183953|183954|183955|183956|183957|183958|183959|183960|183961|183962|183963|183964|183965|183966|183967|183968|183969|183970|183971|183972|183973|183974|183975|183976|183977|183978|183979|183980|183981|183982|183983|183984|183985|183986|183987|183988|183989|183990|183991|183992|183993|183994|183995|183996|183997|183998|183999|184000|184001|184002|184003|184004|184005|184006|184007|184008|184009|184010|184011|184012|184013|184014|184015|184016|184017|184018|184019|184020|184021|184022|184023|184024|184025|184026|184027|184028|184029|184030|184031|184032|184033|184034|184035|184036|184037|184038|184039|184040|184041|184042|184043|184044|184045|184046|184047|184048|184049|184050|184051|184052|184053|184054|184055|184056|184057|184058|184059|184060|184061|184062|184063|184064|184065|184066|184067|184068|184069|184070|184071|184072|184073|184074|184075|184076|184077|184078|184079|184080|184081|184082|184083|184084|184085|184086|184087|184088|184089|184090|184091|184092|184093|184094|184095|184096|184097|184098|184099|184100|184101|184102|184103|184104|184105|184106|184107|184108|184109|184110|184111|184112|184113|184114|184115|184116|184117|184118|184119|184120|184121|184122|184123|184124|184125|184126|184127|184128|184129|184130|184131|184132|184133|184134|184135|184136|184137|184138|184139|184140|184141|184142|184143|184144|184145|184146|184147|184148|184149|184150|184151|184152|184153|184154|184155|184156|184157|184158|184159|184160|184161|184162|184163|184164|184165|184166|184167|184168|184169|184170|184171|184172|184173|184174|184175|184176|184177|184178|184179|184180|184181|184182|184183|184184|184185|184186|184187|184188|184189|184190|184191|184192|184193|184194|184195|184196|184197|184198|184199|184200|184201|184202|184203|184204|184205|184206|184207|184208|184209|184210|184211|184212|184213|184214|184215|184216|184217|184218|184219|184220|184221|184222|184223|184224|184225|184226|184227|184228|184229|184230|184231|184232|184233|184234|184235|184236|184237|184238|184239|184240|184241|184242|184243|184244|184245|184246|184247|184248|184249|184250|184251|184252|184253|184254|184255|184256|184257|184258|184259|184260|184261|184262|184263|184264|184265|184266|184267|184268|184269|184270|184271|184272|184273|184274|184275|184276|184277|184278|184279|184280|184281|184282|184283|184284|184285|184286|184287|184288|184289|184290|184291|184292|184293|184294|184295|184296|184297|184298|184299|184300|184301|184302|184303|184304|184305|184306|184307|184308|184309|184310|184311|184312|184313|184314|184315|184316|184317|184318|184319|184320|184321|184322|184323|184324|184325|184326|184327|184328|184329|184330|184331|184332|184333|184334|184335|184336|184337|184338|184339|184340|184341|184342|184343|184344|184345|184346|184347|184348|184349|184350|184351|184352|184353|184354|184355|184356|184357|184358|184359|184360|184361|184362|184363|184364|184365|184366|184367|184368|184369|184370|184371|184372|184373|184374|184375|184376|184377|184378|184379|184380|184381|184382|184383|184384|184385|184386|184387|184388|184389|184390|184391|184392|184393|184394|184395|184396|184397|184398|184399|184400|184401|184402|184403|184404|184405|184406|184407|184408|184409|184410|184411|184412|184413|184414|184415|184416|184417|184418|184419|184420|184421|184422|184423|184424|184425|184426|184427|184428|184429|184430|184431|184432|184433|184434|184435|184436|184437|184438|184439|184440|184441|184442|184443|184444|184445|184446|184447|184448|184449|184450|184451|184452|184453|184454|184455|184456|184457|184458|184459|184460|184461|184462|184463|184464|184465|184466|184467|184468|184469|184470|184471|184472|184473|184474|184475|184476|184477|184478|184479|184480|184481|184482|184483|184484|184485|184486|184487|184488|184489|184490|184491|184492|184493|184494|184495|184496|184497|184498|184499|184500|184501|184502|184503|184504|184505|184506|184507|184508|184509|184510|184511|184512|184513|184514|184515|184516|184517|184518|184519|184520|184521|184522|184523|184524|184525|184526|184527|184528|184529|184530|184531|184532|184533|184534|184535|184536|184537|184538|184539|184540|184541|184542|184543|184544|184545|184546|184547|184548|184549|184550|184551|184552|184553|184554|184555|184556|184557|184558|184559|184560|184561|184562|184563|184564|184565|184566|184567|184568|184569|184570|184571|184572|184573|184574|184575|184576|184577|184578|184579|184580|184581|184582|184583|184584|184585|184586|184587|184588|184589|184590|184591|184592|184593|184594|184595|184596|184597|184598|184599|184600|184601|184602|184603|184604|184605|184606|184607|184608|184609|184610|184611|184612|184613|184614|184615|184616|184617|184618|184619|184620|184621|184622|184623|184624|184625|184626|184627|184628|184629|184630|184631|184632|184633|184634|184635|184636|184637|184638|184639|184640|184641|184642|184643|184644|184645|184646|184647|184648|184649|184650|184651|184652|184653|184654|184655|184656|184657|184658|184659|184660|184661|184662|184663|184664|184665|184666|184667|184668|184669|184670|184671|184672|184673|184674|184675|184676|184677|184678|184679|184680|184681|184682|184683|184684|184685|184686|184687|184688|184689|184690|184691|184692|184693|184694|184695|184696|184697|184698|184699|184700|184701|184702|184703|184704|184705|184706|184707|184708|184709|184710|184711|184712|184713|184714|184715|184716|184717|184718|184719|184720|184721|184722|184723|184724|184725|184726|184727|184728|184729|184730|184731|184732|184733|184734|184735|184736|184737|184738|184739|184740|184741|184742|184743|184744|184745|184746|184747|184748|184749|184750|184751|184752|184753|184754|184755|184756|184757|184758|184759|184760|184761|184762|184763|184764|184765|184766|184767|184768|184769|184770|184771|184772|184773|184774|184775|184776|184777|184778|184779|184780|184781|184782|184783|184784|184785|184786|184787|184788|184789|184790|184791|184792|184793|184794|184795|184796|184797|184798|184799|184800|184801|184802|184803|184804|184805|184806|184807|184808|184809|184810|184811|184812|184813|184814|184815|184816|184817|184818|184819|184820|184821|184822|184823|184824|184825|184826|184827|184828|184829|184830|184831|184832|184833|184834|184835|184836|184837|184838|184839|184840|184841|184842|184843|184844|184845|184846|184847|184848|184849|184850|184851|184852|184853|184854|184855|184856|184857|184858|184859|184860|184861|184862|184863|184864|184865|184866|184867|184868|184869|184870|184871|184872|184873|184874|184875|184876|184877|184878|184879|184880|184881|184882|184883|184884|184885|184886|184887|184888|184889|184890|184891|184892|184893|184894|184895|184896|184897|184898|184899|184900|184901|184902|184903|184904|184905|184906|184907|184908|184909|184910|184911|184912|184913|184914|184915|184916|184917|184918|184919|184920|184921|184922|184923|184924|184925|184926|184927|184928|184929|184930|184931|184932|184933|184934|184935|184936|184937|184938|184939|184940|184941|184942|184943|184944|184945|184946|184947|184948|184949|184950|184951|184952|184953|184954|184955|184956|184957|184958|184959|184960|184961|184962|184963|184964|184965|184966|184967|184968|184969|184970|184971|184972|184973|184974|184975|184976|184977|184978|184979|184980|184981|184982|184983|184984|184985|184986|184987|184988|184989|184990|184991|184992|184993|184994|184995|184996|184997|184998|184999|185000|185001|185002|185003|185004|185005|185006|185007|185008|185009|185010|185011|185012|185013|185014|185015|185016|185017|185018|185019|185020|185021|185022|185023|185024|185025|185026|185027|185028|185029|185030|185031|185032|185033|185034|185035|185036|185037|185038|185039|185040|185041|185042|185043|185044|185045|185046|185047|185048|185049|185050|185051|185052|185053|185054|185055|185056|185057|185058|185059|185060|185061|185062|185063|185064|185065|185066|185067|185068|185069|185070|185071|185072|185073|185074|185075|185076|185077|185078|185079|185080|185081|185082|185083|185084|185085|185086|185087|185088|185089|185090|185091|185092|185093|185094|185095|185096|185097|185098|185099|185100|185101|185102|185103|185104|185105|185106|185108|185109|185110|185111|185112|185113|185114|185115|185116|185117|185118|185119|185120|185121|185122|185123|185124|185125|185126|185127|185128|185129|185130|185131|185132|185133|185134|185135|185136|185137|185138|185139|185140|185141|185142|185143|185144|185145|185146|185147|185148|185149|185150|185151|185152|185153|185154|185155|185156|185157|185158|185159|185160|185161|185162|185163|185164|185165|185166|185167|185168|185169|185170|185171|185172|185173|185174|185175|185176|185177|185178|185179|185180|185181|185182|185183|185184|185185|185186|185187|185188|185189|185190|185191|185192|185193|185194|185195|185196|185197|185198|185199|185200|185201|185202|185203|185204|185205|185206|185207|185208|185209|185210|185211|185212|185213|185214|185215|185216|185217|185218|185219|185220|185221|185222|185223|185224|185225|185226|185227|185228|185229|185230|185231|185232|185233|185234|185235|185236|185237|185238|185239|185240|185241|185242|185243|185244|185245|185246|185247|185248|185249|185250|185251|185252|185253|185254|185255|185256|185257|185258|185259|185260|185261|185262|185263|185264|185265|185266|185267|185268|185269|185270|185271|185272|185273|185274|185275|185276|185277|185278|185279|185280|185281|185282|185283|185284|185285|185286|185287|185288|185289|185290|185291|185292|185293|185294|185295|185296|185297|185298|185299|185300|185301|185302|185303|185304|185305|185306|185307|185308|185309|185310|185311|185312|185313|185314|185315|185316|185317|185318|185319|185320|185321|185322|185323|185324|185325|185326|185327|185328|185329|185330|185331|185332|185333|185334|185335|185336|185337|185338|185339|185340|185341|185342|185343|185344|185345|185346|185347|185348|185349|185350|185351|185352|185353|185354|185355|185356|185357|185358|185359|185360|185361|185362|185363|185364|185365|185366|185367|185368|185369|185370|185371|185372|185373|185374|185375|185376|185377|185378|185379|185380|185381|185382|185383|185384|185385|185386|185387|185388|185389|185390|185391|185392|185393|185394|185395|185396|185397|185398|185399|185400|185401|185402|185403|185404|185405|185406|185407|185408|185409|185410|185411|185412|185413|185414|185415|185416|185417|185418|185419|185420|185421|185422|185423|185424|185425|185426|185427|185428|185429|185430|185431|185432|185433|185434|185435|185436|185437|185438|185439|185440|185441|185442|185443|185444|185445|185446|185447|185448|185449|185450|185451|185452|185453|185454|185455|185456|185457|185458|185459|185460|185461|185462|185463|185464|185465|185466|185467|185468|185469|185470|185471|185472|185473|185474|185475|185476|185477|185478|185479|185480|185481|185482|185483|185484|185485|185486|185487|185488|185489|185490|185491|185492|185493|185494|185495|185496|185497|185498|185499|185500|185501|185502|185503|185504|185505|185506|185507|185508|185509|185510|185511|185512|185513|185514|185515|185516|185517|185518|185519|185520|185521|185522|185523|185524|185525|185526|185527|185528|185529|185530|185531|185532|185533|185534|185535|185536|185537|185538|185539|185540|185541|185542|185543|185544|185545|185546|185547|185548|185549|185550|185551|185552|185553|185554|185555|185556|185557|185558|185559|185560|185561|185562|185563|185564|185565|185566|185567|185568|185569|185570|185571|185572|185573|185574|185575|185576|185577|185578|185579|185580|185581|185582|185583|185584|185585|185586|185587|185588|185589|185590|185591|185592|185593|185594|185595|185596|185597|185598|185599|185600|185601|185602|185603|185604|185605|185606|185607|185608|185609|185610|185611|185612|185613|185614|185615|185616|185617|185618|185619|185620|185621|185622|185623|185624|185625|185626|185627|185628|185629|185630|185631|185632|185633|185634|185635|185636|185637|185638|185639|185640|185641|185642|185643|185644|185645|185646|185647|185648|185649|185650|185651|185652|185653|185654|185655|185656|185657|185658|185659|185660|185661|185662|185954|185955|185956|185957|185974|185975|185977|185979|185980|185982|185983|185984|185986|185987|185989|185990|185991|185992|185993|185994|185995|185997|185998|185999|186000|186004|186005|186009|186013|186014|186015|186016|186017|186026|186029|186030|186031|186033|186034|186037|186038|186039|186040|186044|186045|186059|186061|186062|186063|186064|186065|186066|186067|186079|186080|186081|186085|186086|186093|186094|186095|186097|186099|186100|186101|186104|186108|186110|186111|186112|186113|186115|186116|186118|186122|186123|186132|186133|186134|186136|186137|186138|186141|186142|186143|186144|186145|186146|186150|186157|186158|186167|186169|186170|186171|186174|186175|186176|186179|186180|186182|186183|186184|186210|186212|186213|186215|186217|186218|186219|186220|186221|186222|186223|186224|186229|186230|186231|186232|186247|186255|186256|186257|186258|186259|186260|186264|186265|186266|186271|186272|186275|186277|186279|186280|186283|186440|186442|186443|186444|186449|186451|186452|186454|186455|186457|186539|186544|186545|186549|186551|186792|186796|186797|186798|186799|186800|186801|186802|186803|186804|186805|186947|186948|186949|186950|187277|187281|187282|187285|187298|187307|187316|187321|187322|187323|187329|187331|187332|187334|187335|187336|187337|187338|187339|187340|187345|187349|187351|187353|187355|187357|187358|187359|187361|187363|187366|187367|187370|187373|187374|187375|187378|187379|187381|187382|187384|187386|187388|187389|187390|187697|187698|188057|188058|188847|188870|190024|190025|190027|190028|190109|190112|190235|190247|190808|190857|190858|190859|190953|191141|191164|191244|191406|191407|191748|191853|192724|192882|193412|193532|194046|194155|194260|194275|194276|194513|194823|194909|195020|195171|195206|195259|195361|195552|195590|195617|195744|195893|196239|196445|196489|196490|196491|196493|196494|197378|197379|197386|197514|197519|197521|197523|197525|197526|197533|197535|197537|197541|197542|197548|197552|197554|197557|197558|197559|197562|197564|198037|198613|198614|202458|202460|202465|202469|202470|202471|202472|202478|202479|202480|202481|202482|202485|202489|202491|202493|202503|203081|203084|203086|203090|203092|203093|203095|203096|203100|203101|203102|203105|203106|203109|203110|203112|203115|203117|203118|203121|203124|203128|203129|203131|203132|203133|203137|203138|203140|203144|203147|203152|203153|203155|203157|203159|203161|203164|203166|203167|203169|203170|203171|203179|203183|203184|203185|203186|203188|203189|203190|203191|203192|203193|203194|203202|203205|203207|203209|203212|203214|203218|204604|205207|205265|205310|205416|205418|205692|205705|205718|205766|205869|205906|205908|205929|206077|206156|206170|206206|206207|206208|206209|206210|206311|206313|206376|206411|206446|206537|207572|207731|207797|207813|208505|208506|208507|208508|208509|208510|208511|208512|208514|208516|208518|208519|208523|208524|208526|208529|208530|208531|208532|209317|209318|210653|210654|210657|210660|210669|210670|210671|210672|210674|210675|210677|210678|210681|210687|210696|210697|210704|210706|210708|210709|210711|212067|212089|212090|212091|212092|212093|212094|212095|212096|212100|212101|212102|212103|212104|212127|212129|212130|212131|212132|212133|212134|212135|212136|212137|212139|212140|212141|212142|212153|212181|212182|212185|212186|212187|212188|212190|212191|212192|212193|212194|212196|212197|212198|212199|212200|212201|212202|212203|212204|212205|212206|212207|212209|212210|212211|212212|212213|212214|212215|212216|212217|212218|212219|212220|212221|212222|212223|212224|212225|212228|212231|212232|212233|212234|212235|212237|212239|212240|212241|212242|212243|212245|212246|212248|212249|212250|212253|212254|212255|212258|212260|212262|212264|212265|212268|212269|212277|212278|212279|212280|212286|212297|212301|212303|212304|212306|212308|212320|212322|212323|212324|212325|212326|212327|212329|212385|212386|212387|212390|212391|212392|212395|212396|212397|212399|212400|212401|212403|212405|212406|212408|212409|212410|212411|212412|212413|212414|212416|212417|212418|212419|212421|212422|212423|212424|212426|212427|212428|212429|212430|212432|212433|212434|212435|212436|212438|212442|212444|212445|212446|212447|212449|212450|212451|212452|212453|212454|212455|212456|212457|212458|212459|212460|212461|212462|212463|212464|212466|212467|212468|212469|212470|212471|212472|212473|212474|212475|212477|212478|212479|212480|212481|212482|212483|212484|212485|212486|212487|212488|212489|212490|212491|212492|212493|212533|212535|212536|212538|212539|212540|212542|212545|212546|212548|212550|212553|212554|212555|212556|212557|212558|212559|212560|212561|212563|212564|212586|212587|212588|212590|212592|212593|212596|212598|212599|212600|212601|212602|212603|212604|212605|212607|212609|212610|212611|212612|212613|212640|212642|212643|212644|212645|212646|212647|212648|212649|212650|212659|212660|212661|212662|212663|212664|212665|212666|212667|212668|212672|212673|212674|212677|212678|212679|212681|212683|212684|212686|212689|212692|212694|212695|212696|212697|212698|212700|212701|212702|212703|212704|212709|212710|212711|212716|212719|212720|212725|212726|212729|212730|212732|212733|212735|212737|212738|212744|212746|212750|212751|212753|212756|212757|212758|212759|212765|212767|212768|212769|212770|212771|212772|212775|212776|212777|212780|212781|212783|212784|212785|212786|212787|212789|212790|212792|212794|212795|212799|212800|212801|212802|212805|212806|212807|212808|212809|212810|212812|212813|212814|212816|212817|212819|212820|212825|212834|212836|212837|212842|212843|212844|212846|212847|212848|212849|212850|212851|212852|212853|212854|212855|212857|212858|212860|212861|212862|212863|212864|212866|212867|212868|212869|212870|212875|212879|212880|212881|212882|212883|212884|212886|212887|212888|212889|212892|212893|212894|212895|212896|212897|212899|212900|212902|212904|212905|212906|212907|212908|212910|212912|212913|212914|212915|212930|212931|212932|212934|212935|212936|212940|212941|212944|212945|212946|212947|212949|212950|212951|212954|212955|212957|212958|212959|212960|212962|212963|212964|212965|212966|212967|212971|213001|213002|213003|213005|213006|213007|213008|213020|213023|213026|213027|213028|213029|213030|213031|213033|213034|213036|213038|213039|213041|213044|213046|213050|213051|213052|213056|213060|213061|213062|213064|213065|213066|213069|213070|213074|213077|213078|213079|213080|213081|213082|213083|213086|213088|213091|213092|213094|213095|213098|213144|213149|213150|213151|213152|213153|213154|213155|213157|213159|213163|213165|213166|213167|213168|213169|213170|213171|213172|213174|213175|213176|213177|213179|213180|213182|213185|213186|213189|213196|213197|213200|213202|213203|213204|213206|213207|213208|213209|213210|213211|213212|213214|213215|213242|213244|213250|213252|213254|213257|213259|213260|213261|213269|213270|213273|213275|213277|213278|213279|213282|213285|213287|213288|213290|213293|213294|213295|213296|213297|213301|213302|213303|213304|213306|213307|213309|213310|213311|213313|213314|213315|213316|213318|213319|213320|213321|213323|213325|213326|213327|213328|213329|213332|213334|213335|213336|213337|213339|213340|213341|213342|213343|213344|213348|213350|213351|213352|213353|213354|213356|213358|213360|213361|213362|213363|213364|213368|213370|213371|213372|213373|213374|213375|213377|213378|213381|213384|213385|213387|213388|213390|213391|213392|213394|213397|213398|213399|213400|213401|213403|213404|213405|213406|213407|213419|213421|213422|213423|213424|213428|213429|213431|213432|213433|213434|213436|213438|213441|213442|213443|213444|213445|213446|213447|213448|213477|213478|213479|213480|213481|213482|213483|213487|213488|213490|213491|213492|213493|213772|213945|214572|214577|214580|214581|214582|214589|214590|214592|214593|214594|214596|214597|214598|214601|214602|214603|214606|214607|214608|214614|214615|214616|214622|214625|214628|214631|214639|214646|214652|214654|214655|214656|214658|214659|214661|214662|214663|214664|214665|214667|214677|214678|214680|214681|214682|214684|214686|214691|214692|214695|214702|214710|214715|214716|214718|214719|214720|214722|214728|214729|214731|214805|214913|214914|215258|215302|215306|215365|215366|215407|215422|215445|215576|220980|220981|221084|221085|221097|221099|221100|221101|221102|221105|221107|221108|221137|221138|221139|221142|221143|221144|221145|221146|221147|221148|221149|221150|221151|221153|221156|221158|221160|221161|221162|221163|221164|221165|221167|221168|221170|221171|221172|221202|221204|221205|221206|221207|221209|221210|221211|221212|221213|221214|221216|221217|221219|221220|221222|221223|221225|221226|221227|221228|221231|221232|221234|221236|221237|221238|221239|221242|221243|221244|221245|221246|221248|221249|221251|221252|221253|221254|221255|221256|221257|221259|221260|221261|221262|221263|221264|221265|221266|221268|221269|221270|221271|221272|221273|221274|221276|221277|221278|221279|221280|221281|221282|221283|221284|221286|221289|221290|221291|221292|221294|221295|221296|221297|221298|221299|221301|221303|221304|221305|221307|221308|221309|221310|221311|221313|221314|221343|221344|221345|221348|221352|221354|221356|221357|221376|221379|221382|221383|221385|221386|221387|221389|221394|221395|221396|221397|221398|221399|221401|221402|221403|221405|221407|221408|221410|221411|221420|221421|221459|221460|221463|221464|221466|221467|221469|221471|221473|221474|221481|221482|221484|221486|221488|221490|221491|221492|221493|221494|221496|221497|221498|221500|221502|221503|221504|221505|221506|221507|221511|221512|221513|221514|221515|221516|221517|221518|221521|221522|221523|221524|221525|221526|221527|221529|221530|221533|221534|221535|221536|221537|221539|221540|221541|221542|221543|221544|221545|221546|221548|221549|221550|221557|221558|221559|221560|221561|221562|221564|221565|221566|221567|221568|221570|221571|221573|221574|221575|221576|221577|221578|221579|221580|221581|221582|221583|221584|221585|221586|221587|221588|221589|221590|221591|221592|221593|221617|221618|221619|221647|221649|221650|221651|221653|221655|221656|221658|221661|221663|221664|221703|221705|221706|221707|221708|221710|221713|221714|221715|221716|221719|221720|221721|221722|221723|221724|221725|221726|221727|221728|221733|221735|221736|221769|221771|221772|221773|221774|221775|221776|221777|221778|221779|221780|221781|221782|221783|221785|221786|221787|221788|221791|221792|221794|221795|221796|221797|221798|221805|221816|221817|221818|221819|221821|221823|221824|221825|221826|221831|221833|221834|221837|221839|221840|221842|221843|221846|221847|221849|221850|221851|221852|221854|221855|221856|221861|221863|221865|221866|221867|221868|221869|221873|221874|221878|221879|221880|221881|221884|221885|221888|221889|221890|221891|221892|221893|221896|221897|221898|221899|221902|221903|221907|221908|221909|221912|221913|221916|221918|221919|221921|221922|221924|221925|221930|221933|221934|221935|221936|221944|221946|221947|221948|221949|221950|221951|221952|221955|221957|221958|221961|221967|221968|221970|221972|221973|221974|221976|221988|221989|221990|221992|221995|221997|221998|221999|222000|222001|222006|222020|222022|222023|222026|222027|222029|222030|222032|222034|222036|222037|222038|222040|222041|222042|222043|222044|222045|222046|222048|222049|222051|222052|222053|222056|222057|222059|222060|222061|222062|222063|222064|222066|222067|222069|222070|222071|222072|222073|222074|222075|222076|222077|222078|222079|222080|222081|222083|222085|222086|222088|222089|222090|222091|222092|222094|222095|222097|222098|222099|222101|222102|222103|222104|222105|222106|222107|222108|222109|222110|222111|222112|222113|222114|222115|222116|222118|222119|222120|222122|222124|222125|222126|222127|222128|222131|222132|222133|222157|222158|222159|222161|222164|222165|222167|222168|222169|222171|222172|222174|222175|222176|222177|222178|222179|222180|222184|222185|222187|222188|222189|222190|222191|222192|222206|222207|222208|222211|222212|222213|222214|222215|222216|222217|222218|222219|222220|222222|222223|222224|222226|222230|222232|222233|222234|222236|222238|222239|222240|222242|222245|222257|222258|222259|222260|222261|222263|222264|222265|222266|222272|222274|222275|222277|222279|222280|222281|222282|222283|222284|222286|222287|222288|222290|222291|222292|222294|222295|222296|222298|222300|222301|222303|222306|222308|222309|222314|222315|222318|222319|222322|222323|222325|222326|222327|222328|222329|222330|222331|222332|222333|222334|222337|222341|222342|222344|222346|222349|222350|222352|222355|222356|222392|222393|222394|222395|222396|222401|222402|222403|222404|222405|222406|222407|222408|222409|222411|222412|222415|222438|222439|222450|222452|222454|222456|222457|222458|222459|222460|222461|222464|222465|222466|222468|222469|222470|222471|222473|222474|222476|222478|222479|222480|222482|222483|222484|222485|222493|222494|222495|222498|222499|222500|222502|222504|222505|222506|222507|222508|222509|222510|222511|222512|222513|222514|222516|222517|222519|222521|222523|222524|222525|222529|222530|222531|222560|222563|222564|222565|222566|222568|222575|222576|222579|222581|222582|222583|222585|222587|222588|222593|222594|222595|222596|222598|222600|222602|222604|222607|222608|222610|222611|222612|222613|222615|222616|222617|222621|222622|222625|222626|222627|222630|222631|222633|222634|222635|222636|222638|222642|222647|222648|222649|222650|222652|222655|222658|222661|222663|222664|222665|222666|222668|222670|222671|222673|222674|222677|222678|222679|222681|222682|222683|222685|222689|222691|222692|222693|222694|222695|222697|222698|222699|222700|222702|222703|222704|222706|222708|222710|222711|222712|222714|222715|222716|222718|222719|222720|222721|222722|222723|222725|222726|222727|222728|222729|222730|222734|222735|222737|222738|222741|222743|222744|222754|222756|222757|222762|222763|222766|222767|222768|222770|222771|222772|222773|222774|222775|222776|222777|222778|222779|222785|222786|222787|222788|222790|222795|222796|222797|222798|222799|222800|222801|222819|222820|222821|222822|222824|222825|222826|222827|222830|222832|222833|222834|222835|222836|222837|222838|222840|222841|222842|222843|222844|222845|222846|222847|222848|222849|222850|222857|222858|222859|222860|222861|222862|222865|222866|222867|222868|222869|222876|222877|222878|222989|223361|223362|223599|223600|223602|223628|223646|224306|224894|224898|224902|224915|224916|224918|224919|224936|224950|224957|224962|224963|224965|225120|225121|225122|225123|225124|225125|225126|225127|225128|225129|225130|225131|225132|225133|225134|225135|225136|225137|225138|225139|225140|225141|225142|225143|225144|225145|225146|225147|225148|225149|225150|225151|225152|225153|225154|225155|225156|225157|225158|225159|225160|225161|225162|225163|225164|225165|225166|225167|225168|225169|225170|225171|225172|225173|225174|225175|225176|225177|225178|225179|225180|225181|225182|225183|225184|225185|225186|225187|225188|225189|225190|225191|225192|225193|225194|225195|225196|225197|225198|225199|225200|225201|225202|225203|225204|225205|225206|225207|225208|225209|225210|225211|225212|225213|225214|225215|225216|225217|225218|225219|225220|225221|225222|225223|225224|225225|225226|225227|225228|225229|225230|225231|225232|225233|225234|225235|225236|225237|225238|225239|225240|225241|225242|225243|225244|225245|225246|225247|225248|225249|225250|225251|225252|225253|225254|225255|225256|225257|225258|225259|225260|225261|225262|225263|225264|225265|225266|225267|225268|225269|225270|225271|225272|225273|225274|225275|225276|225277|225278|225279|225280|225281|225282|225283|225284|225285|225286|225287|225288|225289|225290|225291|225292|225293|225294|225295|225296|225297|225298|225299|225300|225301|225302|225303|225304|225305|225306|225307|225308|225309|225310|225311|225312|225313|225314|225315|225316|225317|225318|225319|225320|225321|225322|225323|225324|225325|225326|225327|225328|225329|225330|225331|225332|225333|225334|225335|225336|225337|225338|225339|225340|225341|225342|225343|225344|225345|225346|225347|225348|225349|225350|225351|225352|225353|225354|225355|225356|225357|225358|225359|225360|225361|225362|225363|225364|225365|225366|225367|225368|225369|225370|225371|225372|225373|225374|225375|225376|225377|225378|225379|225380|225381|225382|225383|225384|225385|225386|225387|225388|225389|225390|225391|225392|225393|225394|225395|225396|225397|225398|225399|225400|225401|225402|225403|225404|225405|225406|225407|225408|225409|225410|225411|225412|225413|225414|225415|225416|225417|225418|225419|225420|225421|225422|225423|225424|225425|225426|225427|225428|225429|225430|225431|225432|225433|225434|225435|225436|225437|225438|225439|225440|225441|225442|225443|225444|225445|225446|225447|225448|225449|225450|225451|225452|225453|225454|225455|225456|225457|225458|225459|225460|225461|225462|225463|225464|225465|225466|225467|225468|225469|225470|225471|225472|225473|225474|225475|225476|225477|225478|225479|225480|225481|225482|225483|225484|225485|225486|225487|225488|225489|225490|225491|225492|225493|225494|225495|225496|225497|225498|225499|225500|225501|225502|225503|225504|225505|225506|225507|225508|225509|225510|225511|225512|225513|225514|225515|225516|225517|225518|225519|225520|225521|225522|225523|225524|225525|225526|225527|225528|225529|225530|225531|225532|225533|225534|225535|225536|225537|225538|225539|225540|225541|225542|225543|225544|225545|225546|225547|225548|225549|225550|225551|225552|225553|225554|225555|225556|225557|225558|225559|225560|225561|225562|225563|225564|225565|225566|225567|225568|225569|225570|225571|225572|225573|225574|225575|225576|225577|225578|225579|225580|225581|225582|225583|225584|225585|225586|225587|225588|225589|225590|225591|225592|225593|225594|225595|225596|225597|225598|225599|225600|225601|225602|225603|225604|225605|225606|225607|225608|225609|225610|225611|225612|225613|225614|225615|225616|225617|225618|225619|225620|225621|225622|225623|225624|225625|225626|225627|225628|225629|225630|225631|225632|225633|225634|225635|225636|225637|225638|225639|225640|225641|225642|225643|225644|225645|225646|225647|225648|225649|225650|225651|225652|225653|225654|225655|225656|225657|225658|225659|225660|225661|225662|225663|225664|225665|225666|225667|225668|225669|225670|225671|225672|225673|225674|225675|225676|225677|225678|225679|225680|225681|225682|225683|225684|225685|225686|225687|225688|225689|225690|225691|225692|225693|225694|225695|225696|225697|225698|225699|225700|225701|225702|225703|225704|225705|225706|225707|225708|225709|225710|225711|225712|225713|225714|225715|225716|225717|225718|225719|225720|225721|225722|225723|225724|225725|225726|225727|225728|225729|225730|225731|225732|225733|225734|225735|225736|225737|225738|225739|225740|225741|225742|225743|225744|225745|225746|225747|225748|225749|225750|225751|225752|225753|225754|225755|225756|225757|225758|225759|225760|225761|225762|225763|225764|225765|225766|225767|225768|225769|225770|225771|225772|225773|225774|225775|225776|225777|225778|225779|225780|225781|226087|226152|226153|226154|226155|226156|226159|226160|226162|226164|226174|226175|226180|226185|226189|226191|226193|226198|226204|226205|226207|226293|226294|226295|226296|226298|226299|226300|226301|226302|226303|226304|226305|226306|226307|226308|226311|226312|226313|226316|226317|226320|226323|226324|226325|226327|226328|226329|226330|226331|226332|226333|226334|226335|226339|226342|226343|226344|226345|226346|226347|226348|226349|226350|226351|226352|226355|226356|226357|226358|226359|226360|226361|226362|226363|226364|226365|226366|226367|226368|226369|226370|226371|226788|226816|226817|226818|226820|226821|226822|226823|226824|226825|226826|227193|227194|227197|227276|227399|227520|227527|227528|227529|227531|227532|227533|227534|227535|227536|227538|227539|227543|227544|227550|227551|227554|227556|227557|227558|227559|227563|227567|227577|227664|227665|227667|227671|227672|227699|227700|227854|227920|228967|229170|229171|229172|229173|229791|230612|230675|230758|230765|230766|230767|230768|230773|231520|231526|231527|231530|231532|231533|231535|231536|231537|231541|231542|231547|231548|231549|231550|231551|231552|231553|231554|231555|231562|231564|231565|231567|231569|231570|231572|231573|231574|231575|231577|231579|231580|231581|231582|231584|231586|231587|231588|231592|231594|231599|231601|231606|231608|231609|231610|231612|231613|231614|231616|231617|231618|231619|231621|231623|231624|231626|231627|231631|231655|231656|231657|231659|231661|231662|231668|231669|231670|231671|231675|231676|231678|231680|231681|231682|231683|231684|231685|231687|231688|231690|231692|231693|231694|231698|231701|231702|231706|231707|231708|231709|231713|231714|231723|231724|231725|231728|231730|231731|231732|231733|231737|231738|231749|231750|231752|231753|231762|231779|231786|231791|231792|231793|231794|231795|231796|231798|231855|231858|231859|231864|231865|231866|231869|231870|231871|231872|231873|231874|231877|231879|231880|231881|231882|231883|231886|231887|231888|231890|231891|231892|231893|231894|231897|231900|231902|231903|231905|231906|231907|231911|231912|231962|231964|231966|231968|231969|231971|231972|231973|231974|231975|231976|231977|231980|231982|231984|231986|231989|231993|231995|231996|231997|231998|231999|232000|232001|232002|232003|232005|232006|232008|232009|232012|232016|232017|232021|232023|232024|232027|232035|232070|232071|232074|232075|232077|232078|232079|232082|232083|232084|232085|232088|232112|232117|232119|232120|232121|232122|232123|232124|232125|232127|232128|232129|232130|232131|232132|232134|232136|232138|232139|232142|232143|232144|232166|232167|232168|232169|232170|232171|232172|232173|232174|232175|232176|232177|232178|232179|232180|232181|232182|232183|232184|232185|232186|232187|232188|232189|232190|232191|232192|232193|232194|232195|232196|232197|232198|232199|232200|232201|232202|232203|232204|232205|232206|232207|232209|232210|232211|232212|232213|232214|232215|232216|232217|232218|232219|232220|232221|232222|232223|232224|232225|232226|232227|232228|232229|232230|232231|232232|232233|232234|232235|232236|232237|232238|232239|232240|232241|232242|232243|232244|232245|232246|232247|232248|232249|232250|232251|232252|232253|232254|232255|232256|232257|232258|232259|232260|232261|232262|232263|232264|232265|232266|232267|232268|232269|232270|232271|232272|232273|232274|232275|232276|232277|232278|232279|232280|232281|232282|232283|232284|232285|232286|232287|232288|232289|232290|232291|232292|232293|232294|232295|232296|232297|232298|232299|232300|232301|232302|232303|232304|232305|232306|232307|232308|232309|232310|232311|232312|232313|232314|232315|232316|232317|232318|232319|232320|232321|232322|232323|232324|232325|232326|232327|232328|232329|232330|232331|232332|232333|232334|232335|232336|232337|232338|232339|232340|232341|232342|232343|232344|232345|232346|232347|232348|232349|232350|232351|232352|232353|232354|232355|232356|232357|232358|232359|232360|232361|232362|232363|232364|232365|232366|232367|232368|232369|232370|232371|232372|232373|232374|232375|232376|232377|232378|232379|232380|232381|232382|232383|232384|232385|232386|232387|232388|232389|232390|232391|232392|232393|232394|232395|232396|232397|232398|232399|232400|232401|232402|232403|232404|232405|232406|232407|232408|232409|232410|232411|232412|232413|232414|232415|232416|232417|232418|232419|232420|232421|232422|232423|232424|232425|232426|232427|232428|232429|232430|232431|232432|232433|232434|232435|232436|232437|232438|232439|232440|232441|232442|232443|232444|232445|232446|232447|232448|232449|232450|232451|232452|232453|232454|232455|232456|232457|232458|232459|232460|232461|232462|232463|232464|232465|232466|232467|232468|232469|232470|232471|232472|232473|232474|232475|232476|232477|232478|232479|232480|232481|232482|232483|232484|232485|232486|232487|232488|232489|232490|232491|232492|232493|232494|232495|232496|232497|232498|232499|232500|232501|232502|232503|232504|232505|232506|232507|232508|232509|232510|232511|232512|232513|232514|232515|232516|232517|232518|232519|232520|232521|232522|232523|232524|232525|232526|232527|232528|232529|232530|232531|232532|232533|232534|232535|232536|232537|232538|232539|232540|232541|232542|232543|232544|232545|232546|232547|232548|232549|232550|232551|232552|232553|232554|232555|232556|232557|232558|232559|232560|232561|232562|232563|232564|232565|232566|232567|232568|232569|232570|232571|232572|232573|232574|232575|232576|232577|232578|232579|232580|232581|232582|232583|232584|232585|232586|232587|232588|232589|232590|232591|232592|232593|232594|232595|232596|232597|232598|232599|232600|232601|232602|232603|232604|232605|232606|232607|232608|232609|232610|232611|232612|232613|232614|232615|232616|232617|232618|232619|232620|232621|232622|232623|232624|232625|232626|232627|232628|232629|232630|232631|232632|232633|232634|232635|232636|232637|232638|232639|232640|232641|232642|232643|232644|232645|232646|232647|232648|232649|232650|232651|232652|232653|232654|232655|232656|232657|232658|232659|232660|232661|232662|232663|232664|232665|232666|232667|232668|232669|232670|232671|232672|232673|232674|232675|232676|232677|232678|232679|232680|232681|232682|232683|232684|232685|232686|232687|232688|232689|232690|232691|232692|232693|232694|232695|232696|232697|232698|232699|232700|232701|232702|232703|232704|232705|232706|232707|232708|232709|232710|232711|232712|232713|232714|232715|232716|232717|232718|232719|232720|232721|232722|232723|232724|232725|232726|232727|232728|232729|232730|232731|232732|232733|232734|232735|232736|232737|232738|232739|232740|232741|232742|232743|232744|232745|232746|232747|232748|232749|232750|232751|232752|232753|232754|232755|232756|232757|232758|232760|232761|232762|232763|232764|232765|232766|232767|232768|232769|232770|232771|232772|232773|232774|232775|232776|232777|232778|232779|232780|232781|232782|232783|232784|232785|232786|232787|232788|232789|232790|232791|232792|232793|232794|232795|232796|232797|232798|232799|232800|232801|232802|232803|232804|232805|232806|232807|232808|232809|232810|232811|232812|232813|232814|232815|232816|232817|232818|232819|232820|232821|232822|232823|232824|232825|232826|232827|232828|232829|232830|232831|232832|232833|232834|232835|232836|232837|232838|232839|232840|232841|232842|232843|232844|232845|232846|232847|232848|232849|232850|232851|232852|232853|232854|232855|232856|232857|232859|232860|232861|232862|232863|232864|232865|232866|232867|232868|232869|232870|232871|232872|232873|232874|232875|232876|232877|232878|232879|232880|232881|232882|232883|232884|232885|232886|232887|232888|232889|232890|232891|232892|232893|232894|232895|232896|232897|232898|232899|232900|232901|232902|232903|232904|232905|232906|232907|232908|232909|232910|232911|232912|232913|232914|232915|232916|232917|232918|232919|232920|232921|232922|232923|232924|232925|232926|232927|232928|232929|232930|232931|232932|232933|232934|232935|232936|232937|232938|232939|232940|232941|232942|232943|232944|232945|232946|232947|232948|232949|232950|232951|232952|232953|232954|232955|232956|232957|232958|232959|232960|232961|232962|232963|232964|232965|232966|232967|232968|232969|232970|232971|232973|232974|232975|232976|232977|232978|232979|232980|232981|232982|232983|232984|232985|232986|232987|232988|232989|232990|232991|232992|232993|232994|232995|232996|232997|232998|232999|233000|233001|233002|233003|233004|233005|233006|233007|233008|233009|233010|233011|233012|233013|233014|233015|233016|233017|233018|233019|233020|233021|233022|233023|233024|233025|233026|233027|233028|233029|233030|233031|233032|233033|233034|233035|233036|233037|233038|233039|233040|233041|233042|233043|233044|233045|233046|233047|233048|233049|233050|233051|233052|233053|233054|233055|233056|233057|233058|233059|233060|233061|233062|233063|233064|233065|233066|233067|233068|233069|233070|233071|233072|233073|233074|233075|233076|233077|233078|233079|233080|233081|233082|233083|233084|233085|233086|233087|233088|233089|233090|233091|233092|233093|233094|233095|233096|233097|233098|233099|233100|233101|233102|233103|233104|233105|233106|233107|233108|233109|233110|233111|233112|233113|233114|233115|233116|233117|233118|233119|233120|233121|233122|233123|233124|233125|233126|233127|233128|233129|233130|233131|233132|233133|233134|233135|233136|233137|233138|233139|233140|233141|233142|233143|233144|233145|233146|233147|233148|233149|233150|233151|233152|233153|233154|233155|233156|233157|233158|233159|233160|233161|233162|233163|233164|233165|233166|233167|233168|233169|233170|233171|233172|233173|233174|233175|233176|233177|233178|233179|233180|233181|233182|233183|233184|233185|233186|233187|233188|233189|233190|233191|233192|233193|233194|233195|233196|233197|233198|233199|233200|233201|233202|233203|233204|233205|233206|233207|233208|233209|233210|233211|233212|233213|233214|233215|233216|233217|233218|233219|233220|233221|233222|233223|233224|233225|233226|233227|233228|233229|233230|233231|233232|233233|233234|233235|233236|233237|233238|233239|233240|233241|233242|233243|233244|233245|233246|233247|233248|233249|233250|233251|233252|233253|233254|233255|233256|233257|233258|233259|233260|233261|233262|233263|233264|233265|233266|233267|233268|233269|233270|233271|233272|233273|233274|233275|233276|233277|233278|233279|233280|233281|233282|233283|233284|233285|233286|233287|233288|233289|233290|233291|233292|233293|233294|233295|233296|233297|233298|233299|233300|233301|233302|233303|233304|233305|233306|233307|233308|233309|233310|233311|233312|233313|233314|233315|233316|233317|233318|233319|233320|233321|233322|233323|233324|233325|233326|233327|233328|233329|233330|233331|233332|233333|233334|233335|233336|233337|233338|233339|233340|233341|233342|233343|233344|233345|233346|233347|233348|233349|233350|233351|233352|233353|233354|233355|233356|233357|233358|233359|233360|233361|233362|233363|233364|233365|233366|233367|233368|233369|233370|233371|233372|233373|233374|233375|233376|233377|233378|233379|233380|233381|233382|233383|233384|233385|233386|233387|233388|233389|233390|233391|233392|233393|233394|233395|233396|233397|233398|233399|233400|233401|233402|233403|233404|233405|233406|233407|233408|233409|233410|233411|233412|233413|233414|233415|233416|233417|233418|233419|233420|233421|233422|233423|233424|233425|233426|233427|233428|233429|233430|233431|233432|233433|233434|233435|233436|233437|233438|233439|233440|233441|233442|233443|233444|233445|233446|233447|233448|233449|233450|233451|233452|233453|233454|233455|233456|233457|233458|233459|233460|233461|233462|233463|233464|233465|233466|233467|233468|233469|233470|233471|233472|233473|233474|233475|233476|233477|233478|233479|233480|233481|233482|233483|233484|233485|233486|233487|233488|233489|233490|233491|233492|233493|233494|233495|233496|233497|233498|233499|233500|233501|233502|233503|233504|233505|233506|233507|233509|233510|233511|233512|233513|233514|233515|233516|233517|233518|233519|233520|233521|233522|233523|233524|233525|233526|233527|233528|233529|233530|233531|233532|233533|233534|233535|233536|233537|233538|233539|233540|233541|233542|233543|233544|233545|233546|233547|233548|233549|233550|233551|233552|233553|233554|233555|233556|233557|233558|233559|233560|233561|233562|233563|233564|233565|233566|233567|233568|233569|233570|233571|233572|233573|233574|233575|233576|233577|233578|233579|233580|233581|233582|233583|233584|233585|233586|233587|233588|233589|233590|233591|233592|233593|233594|233595|233596|233597|233598|233599|233600|233601|233602|233603|233604|233605|233606|233607|233608|233609|233610|233611|233612|233613|233614|233615|233616|233617|233618|233619|233620|233621|233622|233623|233624|233625|233626|233627|233628|233629|233630|233631|233632|233633|233634|233635|233636|233637|233638|233639|233640|233641|233642|233643|233644|233645|233646|233647|233648|233649|233650|233651|233652|233653|233654|233655|233656|233657|233658|233659|233660|233661|233662|233663|233664|233665|233666|233667|233668|233669|233670|233671|233672|233673|233674|233675|233676|233677|233678|233679|233680|233681|233682|233683|233684|233685|233686|233687|233688|233689|233690|233691|233692|233693|233694|233695|233696|233697|233698|233699|233700|233701|233702|233703|233704|233705|233706|233707|233708|233709|233710|233711|233712|233713|233714|233715|233716|233717|233718|233719|233720|233721|233722|233723|233724|233725|233726|233727|233728|233729|233730|233731|233732|233733|233734|233735|233736|233737|233738|233739|233740|233741|233742|233743|233744|233745|233746|233747|233748|233749|233750|233751|233752|233753|233754|233755|233756|233757|233758|233759|233760|233761|233762|233763|233764|233765|233766|233767|233768|233769|233770|233771|233772|233773|233774|233775|233776|233777|233778|233779|233780|233781|233782|233783|233784|233785|233786|233787|233788|233789|233790|233791|233792|233793|233794|233795|233796|233797|233798|233799|233800|233801|233802|233803|233804|233805|233806|233807|233808|233809|233810|233811|233812|233813|233814|233815|233816|233817|233818|233819|233820|233821|233822|233823|233824|233825|233826|233827|233828|233829|233830|233831|233832|233833|233834|233835|233836|233837|233838|233839|233840|233841|233842|233843|233844|233845|233846|233847|233848|233849|233850|233851|233852|233853|233854|233855|233856|233857|233858|233859|233860|233861|233862|233863|233864|233865|233866|233867|233868|233869|233870|233871|233872|233873|233874|233875|233876|233877|233878|233879|233880|233881|233882|233883|233884|233885|233886|233887|233888|233889|233890|233891|233892|233893|233894|233895|233896|233897|233898|233899|233900|233901|233902|233903|233904|233905|233906|233907|233908|233909|233910|233911|233912|233913|233914|233915|233916|233917|233918|233919|233920|233921|233922|233923|233924|233925|233926|233927|233928|233929|233930|233931|233932|233933|233934|233935|233936|233937|233938|233939|233940|233941|233942|233943|233944|233945|233946|233947|233948|233949|233950|233951|233952|233953|233954|233955|233956|233957|233958|233959|233960|233961|233962|233963|233964|233965|233966|233967|233968|233969|233970|233971|233972|233973|233974|233975|233976|233977|233978|233979|233980|233981|233982|233983|233984|233985|233986|233987|233988|233989|233990|233991|233992|233993|233994|233995|233996|233997|233998|233999|234000|234001|234002|234003|234004|234005|234006|234007|234008|234009|234010|234011|234012|234013|234014|234015|234016|234017|234018|234019|234020|234021|234022|234023|234024|234025|234026|234027|234028|234029|234030|234031|234032|234033|234034|234035|234036|234037|234038|234039|234040|234041|234042|234043|234044|234045|234046|234047|234048|234049|234050|234051|234052|234053|234054|234055|234056|234057|234058|234059|234060|234061|234062|234063|234064|234065|234066|234067|234068|234069|234070|234071|234072|234073|234074|234075|234076|234077|234078|234079|234080|234081|234082|234083|234084|234085|234086|234087|234088|234089|234090|234091|234092|234093|234094|234095|234096|234097|234098|234099|234100|234101|234102|234103|234104|234105|234106|234107|234108|234109|234110|234111|234112|234113|234114|234115|234116|234117|234118|234119|234120|234121|234122|234123|234124|234125|234126|234127|234128|234129|234130|234131|234132|234133|234134|234135|234136|234137|234138|234139|234140|234141|234142|234143|234144|234145|234146|234147|234148|234149|234150|234151|234152|234153|234154|234155|234156|234157|234158|234159|234160|234161|234162|234163|234164|234165|234166|234167|234168|234169|234170|234171|234172|234173|234174|234175|234176|234177|234178|234179|234180|234181|234182|234183|234184|234185|234186|234187|234188|234189|234190|234191|234192|234193|234194|234195|234196|234197|234198|234199|234200|234201|234202|234203|234204|234205|234206|234207|234208|234209|234210|234211|234212|234213|234214|234215|234216|234217|234218|234219|234220|234221|234222|234223|234224|234225|234226|234227|234228|234229|234230|234231|234232|234233|234234|234235|234236|234237|234238|234239|234240|234241|234242|234243|234244|234245|234246|234247|234248|234249|234250|234251|234252|234253|234254|234255|234256|234257|234258|234259|234260|234261|234262|234263|234264|234265|234266|234267|234268|234269|234270|234271|234272|234273|234274|234275|234276|234277|234278|234279|234280|234281|234282|234283|234284|234285|234286|234287|234288|234289|234290|234291|234292|234293|234294|234295|234296|234297|234298|234299|234300|234301|234302|234303|234304|234305|234306|234307|234308|234309|234310|234311|234312|234313|234314|234315|234316|234317|234318|234319|234320|234321|234322|234323|234324|234325|234326|234327|234328|234329|234330|234331|234332|234333|234334|234335|234336|234337|234338|234339|234340|234341|234342|234343|234344|234345|234346|234347|234348|234349|234350|234351|234352|234353|234354|234355|234356|234357|234358|234359|234360|234361|234362|234363|234364|234365|234366|234367|234368|234369|234370|234371|234372|234373|234374|234375|234376|234377|234378|234379|234380|234381|234382|234383|234384|234385|234386|234387|234388|234389|234390|234391|234392|234393|234394|234395|234396|234397|234398|234399|234400|234401|234402|234403|234404|234405|234406|234407|234408|234409|234410|234411|234412|234413|234414|234415|234416|234417|234418|234419|234420|234421|234422|234423|234424|234425|234426|234427|234428|234429|234430|234431|234432|234433|234434|234435|234436|234437|234438|234439|234440|234441|234442|234443|234444|234445|234446|234447|234448|234449|234450|234451|234452|234453|234454|234455|234456|234457|234458|234459|234460|234461|234462|234463|234464|234465|234466|234467|234468|234469|234470|234471|234472|234473|234474|234475|234476|234477|234478|234479|234480|234481|234482|234483|234484|234485|234486|234487|234488|234489|234490|234491|234492|234493|234494|234495|234496|234497|234498|234499|234500|234501|234502|234503|234504|234505|234506|234507|234508|234509|234510|234511|234512|234513|234514|234515|234516|234517|234518|234519|234520|234521|234522|234523|234524|234525|234526|234527|234528|234529|234530|234531|234532|234533|234534|234535|234536|234537|234538|234539|234540|234541|234542|234543|234544|234545|234546|234547|234548|234549|234550|234551|234552|234553|234554|234555|234556|234557|234558|234559|234560|234561|234562|234563|234564|234565|234566|234567|234568|234569|234570|234571|234572|234573|234574|234575|234576|234577|234578|234579|234580|234581|234582|234583|234584|234585|234586|234587|234588|234589|234590|234591|234592|234593|234594|234595|234596|234597|234598|234599|234600|234601|234602|234603|234604|234605|234606|234607|234608|234609|234610|234611|234612|234613|234614|234615|234616|234617|234618|234619|234620|234621|234622|234623|234624|234625|234626|234627|234628|234629|234630|234631|234632|234633|234634|234635|234636|234637|234638|234639|234640|234641|234642|234643|234644|234645|234646|234647|234648|234649|234650|234651|234652|234653|234654|234655|234656|234657|234658|234659|234660|234661|234662|234663|234664|234665|234666|234667|234668|234669|234670|234671|234672|234673|234674|234675|234676|234677|234678|234679|234680|234681|234682|234683|234684|234685|234686|234687|234688|234689|234690|234691|234692|234693|234694|234695|234696|234697|234698|234699|234700|234701|234702|234703|234704|234705|234706|234707|234708|234709|234710|234711|234712|234713|234714|234715|234716|234717|234718|234719|234720|234721|234722|234723|234724|234725|234726|234727|234728|234729|234730|234731|234732|234733|234734|234735|234736|234737|234738|234739|234740|234741|234742|234743|234744|234745|234746|234747|234748|234749|234750|234751|234752|234753|234754|234755|234756|234757|234758|234759|234760|234761|234762|234763|234764|234765|234766|234767|234768|234769|234770|234771|234772|234773|234774|234775|234776|234777|234778|234779|234780|234781|234782|234783|234784|234785|234786|234787|234788|234789|234790|234791|234792|234793|234794|234795|234796|234797|234798|234799|234800|234801|234802|234803|234804|234805|234806|234807|234808|234809|234810|234811|234812|234813|234814|234815|234816|234817|234818|234819|234820|234821|234822|234823|234824|234825|234826|234827|234828|234829|234830|234831|234832|234833|234834|234835|234836|234837|234838|234839|234840|234841|234842|234843|234844|234845|234846|234847|234848|234849|234850|234851|234852|234853|234854|234855|234856|234857|234858|234859|234860|234861|234862|234863|234864|234865|234866|234867|234868|234869|234870|234871|234872|234873|234874|234875|234876|234877|234878|234879|234880|234881|234882|234883|234884|234885|234886|234887|234888|234889|234890|234891|234892|234893|234894|234895|234896|234897|234898|234899|234900|234901|234902|234903|234904|234905|234906|234907|234908|234909|234910|234911|234912|234913|234914|234915|234916|234917|234918|234919|234920|234921|234922|234923|234924|234925|234926|234927|234928|234929|234930|234931|234932|234933|234934|234935|234936|234937|234938|234939|234940|234941|234942|234943|234944|234945|234946|234947|234948|234949|234950|234951|234952|234953|234954|234955|234956|234957|234958|234959|234960|234961|234962|234963|234964|234965|234966|234967|234968|234969|234970|234971|234972|234973|234974|234975|234976|234977|234978|234979|234980|234981|234982|234983|234984|234985|234986|234987|234988|234989|234990|234991|234992|234993|234994|234995|234996|234997|234998|234999|235000|235001|235002|235003|235004|235005|235006|235007|235008|235009|235010|235011|235012|235013|235014|235015|235016|235017|235018|235019|235020|235021|235022|235023|235024|235025|235026|235027|235028|235029|235030|235031|235032|235033|235034|235035|235036|235037|235038|235039|235040|235041|235042|235043|235044|235045|235046|235047|235048|235049|235050|235051|235052|235053|235054|235055|235056|235057|235058|235059|235060|235061|235062|235063|235064|235065|235066|235067|235068|235069|235070|235071|235072|235073|235074|235075|235076|235077|235078|235079|235080|235081|235082|235083|235084|235085|235086|235087|235088|235089|235090|235091|235092|235093|235094|235095|235096|235097|235098|235099|235100|235101|235102|235103|235104|235105|235106|235107|235108|235109|235110|235111|235112|235113|235114|235115|235116|235117|235118|235119|235120|235121|235122|235123|235124|235125|235126|235127|235128|235129|235130|235131|235132|235133|235134|235135|235136|235137|235138|235139|235140|235141|235142|235143|235144|235145|235146|235147|235148|235149|235150|235151|235152|235153|235154|235155|235156|235157|235158|235159|235160|235161|235162|235163|235164|235165|235166|235167|235168|235169|235170|235171|235172|235173|235174|235175|235176|235177|235178|235179|235180|235181|235182|235183|235184|235185|235186|235187|235188|235189|235190|235191|235192|235193|235194|235195|235196|235197|235198|235199|235200|235201|235202|235203|235204|235205|235206|235207|235208|235209|235210|235211|235212|235213|235214|235215|235216|235217|235218|235219|235220|235221|235222|235223|235224|235225|235226|235227|235228|235229|235230|235231|235232|235233|235234|235235|235236|235237|235238|235239|235240|235241|235242|235243|235244|235245|235246|235247|235248|235249|235250|235251|235252|235253|235254|235255|235256|235257|235258|235259|235260|235261|235262|235263|235264|235265|235266|235267|235268|235269|235270|235271|235272|235273|235274|235275|235276|235277|235278|235279|235280|235281|235282|235283|235284|235285|235286|235287|235288|235289|235290|235291|235292|235293|235294|235295|235296|235297|235298|235299|235300|235301|235302|235303|235304|235305|235306|235307|235308|235309|235310|235311|235312|235313|235314|235315|235316|235317|235318|235319|235320|235321|235322|235323|235324|235325|235326|235327|235328|235329|235330|235331|235332|235333|235334|235335|235336|235337|235338|235339|235340|235341|235342|235343|235344|235345|235346|235347|235348|235349|235350|235351|235352|235353|235354|235355|235356|235357|235358|235359|235360|235361|235362|235363|235364|235365|235366|235367|235368|235369|235370|235371|235372|235373|235374|235375|235376|235377|235378|235379|235380|235381|235382|235383|235384|235385|235386|235387|235388|235389|235390|235391|235392|235393|235394|235395|235396|235397|235398|235399|235400|235401|235402|235403|235404|235405|235406|235407|235408|235409|235410|235411|235412|235413|235414|235415|235416|235417|235418|235419|235420|235421|235422|235423|235424|235425|235426|235427|235428|235429|235430|235431|235432|235433|235434|235435|235436|235437|235438|235439|235440|235441|235442|235443|235444|235445|235446|235447|235448|235449|235450|235451|235452|235453|235454|235455|235456|235457|235458|235459|235460|235461|235462|235463|235464|235465|235466|235467|235468|235469|235470|235471|235472|235473|235474|235475|235476|235477|235478|235479|235480|235481|235482|235483|235484|235485|235486|235488|235489|235490|235491|235492|235493|235494|235495|235496|235497|235498|235499|235500|235501|235502|235503|235504|235505|235506|235507|235508|235509|235510|235511|235512|235513|235514|235515|235516|235517|235518|235519|235520|235521|235522|235523|235524|235525|235526|235527|235528|235529|235530|235531|235532|235533|235534|235535|235536|235537|235538|235539|235540|235541|235542|235543|235544|235545|235546|235547|235548|235549|235550|235551|235552|235553|235554|235555|235556|235557|235558|235559|235560|235561|235562|235563|235564|235565|235566|235567|235568|235569|235570|235571|235572|235573|235574|235575|235576|235577|235578|235579|235580|235581|235582|235583|235584|235585|235586|235587|235588|235589|235590|235591|235592|235593|235594|235595|235596|235597|235598|235599|235600|235601|235602|235603|235604|235605|235606|235607|235608|235609|235610|235611|235612|235613|235614|235615|235616|235617|235618|235619|235620|235621|235622|235623|235624|235625|235626|235627|235628|235629|235630|235631|235632|235633|235634|235635|235636|235637|235638|235639|235640|235641|235642|235643|235644|235645|235646|235647|235648|235649|235650|235651|235652|235653|235654|235655|235656|235657|235658|235659|235660|235661|235662|235663|235664|235665|235666|235667|235668|235669|235670|235671|235672|235673|235674|235675|235676|235677|235678|235679|235680|235681|235682|235683|235684|235685|235686|235687|235688|235689|235690|235691|235692|235693|235694|235695|235696|235697|235698|235699|235700|235701|235702|235703|235704|235705|235706|235707|235708|235709|235710|235711|235712|235713|235714|235715|235716|235717|235718|235719|235720|235721|235722|235723|235724|235725|235726|235727|235728|235729|235730|235731|235732|235733|235734|235735|235736|235737|235738|235739|235740|235741|235742|235743|235744|235745|235746|235747|235748|235749|235750|235751|235752|235753|235754|235755|235756|235757|235758|235759|235760|235761|235762|235763|235764|235765|235766|235767|235768|235769|235770|235771|235772|235773|235774|235775|235776|235777|235778|235779|235780|235781|235782|235783|235784|235785|235786|235787|235788|235789|235790|235791|235792|235793|235794|235795|235796|235797|235798|235799|235800|235801|235802|235803|235804|235805|235806|235807|235808|235809|235810|235811|235812|235813|235814|235815|235816|235817|235818|235819|235820|235821|235822|235823|235824|235825|235826|235827|235828|235829|235830|235831|235832|235833|235834|235835|235836|235837|235838|235839|235840|235841|235842|235843|235844|235845|235846|235847|235848|235849|235850|235851|235852|235853|235854|235855|235856|235857|235858|235859|235860|235861|235862|235863|235864|235865|235866|235867|235868|235869|235870|235871|235872|235873|235874|235875|235876|235877|235878|235879|235880|235881|235882|235883|235884|235885|235886|235887|235888|235889|235890|235891|235892|235893|235894|235895|235896|235897|235898|235899|235900|235901|235902|235903|235904|235905|235906|235907|235908|235909|235910|235911|235912|235913|235914|235915|235916|235917|235918|235919|235920|235921|235922|235923|235924|235925|235926|235927|235928|235929|235930|235931|235932|235933|235934|235935|235936|235937|235938|235939|235940|235941|235942|235943|235944|235945|235946|235947|235948|235949|235950|235951|235952|235953|235954|235955|235956|235957|235958|235959|235960|235961|235962|235963|235964|235965|235966|235967|235968|235969|235970|235971|235972|235973|235974|235975|235976|235977|235978|235979|235980|235981|235982|235983|235984|235985|235986|235987|235988|235989|235990|235991|235992|235993|235994|235995|235996|235997|235998|235999|236000|236001|236002|236003|236004|236005|236006|236007|236008|236009|236010|236011|236012|236013|236014|236015|236016|236017|236018|236019|236020|236021|236022|236023|236024|236025|236026|236027|236028|236029|236030|236031|236032|236033|236034|236035|236036|236037|236038|236039|236040|236041|236042|236043|236044|236045|236046|236047|236048|236049|236050|236051|236052|236053|236054|236055|236056|236057|236058|236059|236060|236061|236062|236063|236064|236065|236066|236067|236068|236069|236070|236071|236072|236073|236074|236075|236076|236077|236078|236079|236080|236081|236082|236083|236084|236085|236086|236087|236088|236089|236090|236091|236092|236093|236094|236095|236096|236097|236098|236099|236100|236101|236102|236103|236104|236105|236106|236107|236108|236109|236110|236111|236112|236113|236114|236115|236116|236117|236118|236119|236120|236121|236122|236123|236124|236125|236126|236127|236128|236129|236130|236131|236132|236133|236134|236135|236136|236137|236138|236139|236140|236141|236142|236143|236144|236145|236146|236147|236148|236149|236150|236151|236152|236153|236154|236155|236156|236157|236158|236159|236160|236161|236162|236163|236164|236165|236166|236167|236168|236169|236170|236171|236172|236173|236174|236175|236176|236177|236178|236179|236180|236181|236182|236183|236184|236185|236186|236187|236188|236189|236190|236191|236192|236193|236194|236195|236196|236197|236198|236199|236200|236201|236202|236203|236204|236205|236206|236207|236208|236209|236210|236211|236212|236213|236214|236215|236216|236217|236218|236219|236220|236221|236222|236223|236224|236225|236226|236227|236228|236229|236230|236231|236232|236233|236234|236235|236236|236237|236238|236239|236240|236241|236242|236243|236244|236245|236246|236247|236248|236249|236250|236251|236252|236253|236254|236255|236256|236257|236258|236259|236260|236261|236262|236263|236264|236265|236266|236267|236268|236269|236270|236271|236272|236273|236274|236275|236276|236277|236278|236279|236280|236281|236282|236283|236284|236285|236286|236287|236288|236289|236290|236291|236292|236293|236294|236295|236296|236297|236298|236299|236300|236301|236302|236303|236304|236305|236306|236307|236308|236309|236310|236311|236312|236313|236314|236315|236316|236317|236318|236319|236320|236321|236322|236323|236324|236325|236326|236327|236328|236329|236330|236331|236332|236333|236334|236335|236336|236337|236338|236339|236340|236341|236342|236343|236344|236345|236346|236347|236348|236349|236350|236351|236352|236353|236354|236355|236356|236357|236358|236359|236360|236361|236362|236363|236364|236365|236366|236367|236368|236369|236370|236371|236372|236373|236374|236375|236376|236377|236378|236379|236380|236381|236382|236383|236384|236385|236386|236387|236388|236389|236390|236391|236392|236393|236394|236395|236396|236397|236398|236399|236400|236401|236402|236403|236404|236405|236406|236407|236408|236409|236410|236411|236412|236413|236414|236415|236416|236417|236418|236419|236420|236421|236422|236423|236424|236425|236426|236427|236428|236429|236430|236431|236432|236433|236434|236435|236436|236437|236438|236439|236440|236441|236442|236443|236444|236445|236446|236447|236448|236449|236450|236451|236452|236453|236454|236455|236456|236457|236458|236459|236460|236461|236462|236463|236464|236465|236466|236467|236468|236469|236470|236471|236472|236473|236474|236475|236476|236477|236478|236479|236480|236481|236482|236483|236484|236485|236486|236487|236488|236489|236490|236491|236492|236493|236494|236495|236496|236497|236498|236499|236500|236501|236502|236503|236504|236505|236506|236507|236508|236509|236510|236511|236512|236513|236514|236515|236516|236517|236518|236519|236520|236521|236522|236523|236524|236525|236526|236527|236528|236529|236530|236531|236532|236533|236534|236535|236536|236537|236538|236539|236540|236541|236542|236543|236544|236545|236546|236547|236548|236549|236550|236551|236552|236553|236554|236555|236556|236557|236558|236559|236560|236561|236562|236563|236564|236565|236566|236567|236568|236569|236570|236571|236572|236573|236574|236575|236576|236577|236578|236579|236580|236581|236582|236583|236585|236586|236587|236588|236589|236590|236591|236592|236593|236594|236595|236596|236597|236598|236599|236600|236601|236602|236603|236604|236605|236606|236607|236608|236609|236610|236611|236612|236613|236614|236615|236616|236617|236618|236619|236620|236621|236622|236623|236624|236625|236626|236627|236628|236629|236630|236631|236632|236633|236634|236635|236636|236637|236638|236639|236640|236641|236642|236643|236644|236645|236646|236647|236648|236649|236650|236651|236652|236653|236654|236655|236656|236657|236658|236659|236660|236661|236662|236663|236664|236665|236666|236667|236668|236669|236670|236671|236672|236673|236674|236675|236676|236677|236678|236679|236680|236681|236682|236683|236684|236685|236686|236687|236688|236689|236690|236691|236692|236693|236694|236695|236696|236697|236698|236699|236700|236701|236702|236703|236704|236705|236706|236707|236708|236709|236710|236711|236712|236713|236714|236715|237021|237216|237261|237521|237817|237818|237823|237833|238161|238162|238163|238167|238171|238173|238174|238175|238177|238178|238179|238181|238182|238187|238190|238194|238199|238204|238205|238207|238253|238254|238260|238311|238312|238314|238315|238316|238318|238319|238320|238321|238322|238324|238325|238327|238328|238330|238331|238333|238620|238622|238624|238628|238629|238632|238635|238638|238639|238640|238641|238642|238643|238644|238645|238646|238648|238649|238650|238651|238652|238653|238654|238655|238656|238704|238706|238715|238721|238722|238723|238724|238726|238734|238737|238738|238743|238744|238748|238756|238759|238762|238781|238802|238804|238806|238807|238808|238809|238810|238814|238819|238820|238821|238822|238823|238826|238827|238828|238834|238835|238836|238837|238839|238841|238842|238844|238845|238849|238850|238851|238852|238853|238854|238862|238864|238865|238866|238867|238868|238869|238872|238873|238875|238876|238877|238878|238880|238882|238883|238884|238887|238889|238892|238893|238896|238900|238901|238902|238904|238905|238907|238908|238909|238910|238911|238912|238913|238914|238916|238918|238919|238921|238922|238923|238924|238925|238926|238929|238930|238933|238937|238938|238939|238940|238941|238942|238944|238946|238950|238951|238956|238957|238958|238959|239022|239023|239024|239026|239027|239028|239043|239045|239046|239048|239049|239050|239052|239053|239140|239146|239147|239148|239150|239152|239153|239154|239155|239156|239159|239160|239162|239168|239169|239170|239171|239172|239174|239175|239176|239177|239179|239180|239182|239183|239184|239185|239186|239187|239189|239190|239258|239259|239260|239261|239262|239263|239264|239265|239266|239267|239268|239269|239270|239271|239272|239273|239275|239276|239278|239280|239281|239282|239283|239285|239286|239287|239357|239358|239359|239360|239362|239363|239365|239366|239368|239369|239370|239372|239373|239374|239375|239379|239380|239383|239384|239388|239390|239394|239398|239405|239406|239407|239408|239410|239412|239414|239417|239421|239425|239426|239428|239429|239430|239431|239432|239436|239437|239439|239440|239441|239442|239444|239445|239446|239451|239455|239458|239461|239463|239464|239466|239468|239471|239474|239476|239477|239478|239482|239483|239486|239488|239491|239493|239495|239499|239518|239522|239524|239526|239528|239529|239530|239531|239532|239533|239534|239535|239536|239538|239539|239543|239544|239545|239547|239552|239553|239554|239555|239558|239559|239560|239562|239564|239565|239566|239567|239568|239569|239570|239572|239573|239575|239579|239580|239582|239586|239587|239588|239589|239590|239591|239593|239596|239597|239598|239600|239602|239603|239604|239605|239606|239607|239609|239610|239611|239612|239613|239614|239615|239619|239620|239622|239623|239678|239679|239681|239682|239683|239684|239687|239688|239689|239691|239692|239693|239694|239695|239696|239697|239698|239699|239700|239701|239702|239703|239704|239705|239706|239707|239708|239709|239710|239711|239712|239713|239714|239715|239716|239750|239751|239755|239756|239757|239759|239760|239796|239799|239800|239802|239803|239804|239805|239806|239808|239811|239816|239817|239819|239820|239821|239823|239824|239825|239827|239828|239829|239830|239831|239832|239833|239836|239839|239841|239842|239843|239845|239846|239848|240014|240015|240017|240109|240110|240114|240116|240117|240119|240121|240123|240124|240126|240128|240130|240131|240133|240134|240135|240136|240138|240139|240140|240142|240145|240146|240147|240148|240149|240150|240151|240152|240154|240155|240157|240403|240405|240406|240407|240409|240411|240412|240413|240415|240417|240418|240419|240423|240425|240427|240428|240429|240430|240431|240432|240472|240474|240476|240477|240481|240482|240483|240485|240490|240491|240492|240493|240498|240500|240501|240502|240503|240504|240505|240507|240509|240510|240593|240594|240595|240596|240597|240598|240600|240602|240603|240605|240628|240630|240631|240635|240636|240638|240642|240644|240646|240647|240648|240649|240650|240651|240653|240654|240655|240656|240657|240659|240660|240661|240662|240666|240673|240674|240675|240676|240678|240679|240680|240681|240684|240685|240689|240690|240691|240693|240694|240699|240700|240701|240702|240704|240705|240706|240707|240708|240709|240710|240711|240712|240713|240715|240716|240721|240722|240723|240724|240725|240726|240727|240728|240729|240730|240731|240732|240784|240786|240787|240790|240792|240794|240795|240797|240801|240802|240803|240805|240806|240808|240809|240810|240811|240815|240852|240853|240854|240856|240861|240863|240864|240866|240867|240876|240877|240879|240884|240886|240889|240905|240906|240907|240908|240911|240912|240913|240914|240916|240917|240918|240919|240920|240921|240922|240924|240926|240927|240928|240930|240931|240933|240934|240935|240936|240937|240939|240941|240944|240945|240947|240948|240951|240953|240954|240955|240956|240957|240958|240961|240963|240964|240965|240966|240969|240971|240972|240977|240978|240980|240981|240982|240983|240984|240990|240993|240998|240999|241002|241003|241005|241008|241010|241011|241013|241014|241015|241016|241017|241018|241020|241021|241023|241025|241027|241028|241029|241030|241033|241034|241035|241036|241037|241039|241044|241047|241049|241051|241161|241162|241167|241168|241170|241171|241172|241173|241178|241182|241184|241185|241188|241190|241191|241194|241197|241198|241203|241208|241210|241211|241250|241251|241252|241254|241255|241258|241259|241260|241261|241263|241268|241270|241271|241274|241277|241278|241281|241283|241294|241298|241300|241303|241304|241309|241310|241313|241315|241318|241321|241322|241323|241334|241336|241344|241345|241346|241348|241349|241352|241358|241359|241362|241367|241369|241370|241372|241373|241382|241387|241389|241392|241393|241394|241395|241399|241400|241401|241406|241407|241408|241411|241412|241413|241414|241415|241419|241423|241425|241426|241430|241431|241432|241434|241435|241437|241438|241439|241440|241441|241442|241447|241448|241449|241450|241452|241454|241457|241458|241462|241465|241466|241467|241469|241470|241471|241472|241473|241475|241476|241477|241478|241479|241481|241482|241483|241484|241485|241486|241487|241490|241491|241495|241499|241503|241506|241507|241508|241509|241511|241512|241513|241514|241515|241516|241517|241518|241519|241525|241527|241572|241573|241574|241633|241636|241637|241638|241640|241641|241642|241645|241646|241648|241649|241655|241656|241659|241660|241663|241664|241670|241671|241672|241673|241674|241676|241678|241680|241681|241685|241687|241688|241689|241690|241693|241694|241699|241702|241704|241705|241710|241713|241715|241720|241723|241728|241729|241741|241742|241743|241744|241746|241748|241750|241752|241754|241759|241761|241762|241855|241856|241857|241898|241901|241903|241904|241907|241908|241909|241910|241912|241913|241914|241915|241917|241918|241920|241922|241923|241924|241925|241930|241931|241935|241936|241937|241940|241941|241943|241944|241945|241946|241947|241951|241952|241954|241955|241956|241957|241960|241961|241963|241964|241965|241966|241967|241968|241969|241971|241972|241974|241975|241976|241977|241978|241979|241980|241981|241982|241983|241984|241985|241986|241989|241991|241992|241993|241994|241995|241996|241997|241999|242000|242001|242002|242003|242004|242005|242008|242010|242011|242014|242016|242017|242018|242019|242021|242022|242146|242148|242150|242152|242153|242154|242155|242156|242158|242160|242161|242162|242164|242165|242166|242169|242172|242173|242174|242204|242206|242207|242208|242209|242213|242214|242215|242217|242218|242220|242224|242226|242228|242231|242232|242240|242242|242243|242244|242245|242246|242247|242249|242251|242253|242254|242257|242258|242269|242272|242273|242277|242278|242281|242282|242287|242291|242292|242294|242296|242299|242305|242306|242309|242311|242315|242318|242319|242320|242323|242326|242327|242329|242331|242336|242339|242342|242344|242345|242346|242349|242351|242352|242354|242355|242356|242358|242359|242362|242363|242364|242365|242367|242369|242370|242371|242372|242373|242374|242375|242376|242377|242379|242381|242382|242384|242386|242387|242389|242390|242391|242392|242393|242394|242395|242448|242450|242451|242453|242454|242455|242456|242458|242459|242460|242461|242462|242463|242467|242468|242469|242470|242472|242474|242478|242479|242480|242482|242484|242485|242487|242488|242489|242490|242596|242597|242598|242599|242601|242605|242606|242607|242608|242609|242611|242613|242614|242618|242622|242623|242624|242625|242627|242628|242629|242632|242633|242635|242637|242644|242645|242646|242647|242651|242652|242653|242661|242664|242670|242671|242675|242678|242681|242684|242685|242687|242688|242689|242691|242692|242693|242694|242698|242699|242700|242703|242708|242712|242714|242717|242718|242719|242720|242722|242723|242725|242728|242729|242731|242732|242736|242737|242738|242739|242743|242745|242746|242755|242758|242759|242760|242761|242767|242768|242770|242771|242774|242775|242777|242781|242782|242783|242784|242785|242788|242789|242791|242794|242798|242799|242800|242802|242804|242806|242808|242809|242810|242813|242817|242818|242828|242829|242830|242832|242833|242834|242835|242836|242837|242840|242843|242845|242846|242847|242849|242850|242851|242852|242853|242855|242856|242857|242858|242859|242860|242862|242863|242864|242865|242866|242867|242868|242869|242871|242873|242874|242875|242876|242877|242878|242880|242881|242883|242886|242889|242894|242897|242899|242900|242901|242902|242903|242908|242912|242913|242914|242916|242917|242918|242923|242924|242925|242927|242929|242930|242934|242937|242939|242942|242947|242955|242958|242959|242960|242961|242962|242964|242976|242978|242979|242982|242984|242986|242987|242988|242991|242992|242993|242994|243062|243063|243064|243065|243068|243070|243071|243072|243075|243076|243077|243083|243084|243085|243087|243088|243089|243092|243094|243095|243096|243097|243098|243099|243100|243101|243102|243103|243104|243105|243107|243108|243109|243110|243111|243112|243113|243114|243116|243117|243118|243121|243122|243123|243124|243125|243126|243127|243128|243129|243130|243131|243132|243133|243134|243135|243136|243138|243139|243140|243142|243143|243144|243149|243150|243152|243153|243154|243155|243156|243157|243158|243159|243160|243161|243162|243163|243166|243168|243169|243170|243172|243173|243174|243175|243176|243177|243178|243179|243180|243181|243182|243183|243184|243185|243186|243189|243190|243191|243192|243193|243194|243195|243196|243197|243198|243200|243202|243203|243204|243206|243208|243209|243210|243211|243214|243216|243217|243218|243220|243221|243223|243224|243227|243228|243229|243231|243232|243233|243234|243235|243236|243237|243238|243239|243240|243242|243243|243244|243245|243246|243248|243249|243250|243251|243253|243256|243257|243258|243259|243263|243264|243286|243288|243289|243290|243291|243292|243295|243296|243299|243300|243301|243302|243303|243305|243307|243308|243309|243310|243387|243388|243389|243394|243395|243399|243401|243402|243405|243407|243408|243409|243410|243411|243413|243414|243415|243416|243417|243418|243420|243425|243427|243428|243429|243431|243432|243433|243434|243435|243436|243437|243439|243440|243441|243442|243443|243444|243446|243447|243448|243451|243453|243454|243455|243456|243458|243459|243460|243462|243466|243469|243474|243478|243480|243481|243482|243484|243487|243490|243493|243495|243498|243500|243501|243510|243511|243515|243517|243519|243522|243524|243527|243528|243531|243534|243535|243536|243538|243539|243540|243541|243542|243650|243652|243653|243657|243659|243660|243661|243662|243663|243664|243667|243668|243669|243670|243671|243673|243674|243676|243678|243679|243680|243682|243683|243684|243688|243689|243691|243692|243694|243696|243698|243699|244085|244266|244267|244268|244269|244270|244274|244275|244323|244325|244332|244333|244334|244335|244336|244337|244338|244339|244366|244370|244372|244373|244374|244376|244377|244378|244381|244382|244384|244386|244389|244390|244392|244393|244394|244395|244398|244404|244406|244407|244409|244415|244416|244417|244418|244419|244420|244421|244422|244425|244426|244427|244432|244433|244435|244437|244439|244440|244441|244448|244449|244450|244452|244453|244454|244455|244456|244457|244459|244460|244492|244497|244545|244547|244548|244549|244550|244561|244562|244563|244564|244565|244567|244568|244572|244575|244577|244578|244579|244581|244583|244587|244589|244591|244592|244594|244596|244599|244601|244603|244604|244606|244607|244610|244612|244614|244615|244616|244617|244618|244622|244625|244627|244629|244631|244632|244633|244637|244638|244640|244641|244642|244644|244645|244647|244648|244649|244650|244651|244652|244654|244657|244658|244734|244752|244753|244759|244761|244763|244769|244831|244832|244843|244844|244846|244847|244850|244851|244852|244856|244943|244944|244945|244946|244947|244948|244949|244950|244951|244954|244955|244956|244957|244958|244959|244960|244962|244963|244964|244966|244973|244976|244977|244978|244979|245014|245015|245016|245017|245019|245022|245025|245029|245030|245031|245032|245036|245037|245039|245041|245044|245045|245047|245051|245052|245054|245055|245056|245057|245058|245060|245061|245064|245065|245067|245069|245070|245071|245072|245073|245074|245077|245078|245095|245122|245145|245147|245148|245149|245151|245153|245228|245229|245232|245233|245235|245240|245244|245245|245246|245253|246787|246789|246791|246794|246796|246797|246801|246802|246803|246805|246811|246812|246815|246821|246822|246823|246824|246825|246827|246830|246837|246838|246842|246851|246853|246922|246925|247074|247086|247087|247090|247220|247223|247224|247226|247227|247228|247229|247235|247236|247245|247248|247249|247250|247254|247256|247257|247258|247260|247272|247273|247275|247281|247286|247288|247294|247303|247305|247306|247307|247308|247309|247310|247311|247312|247313|247314|247439|247645|247646|247652|247653|247654|247655|247656|247664|247671|247676|247773|248489|248819|248823|248826|248828|248829|248830|248833|248834|248835|248838|248840|248841|248843|248844|248846|248847|248848|248852|248855|248857|248858|248860|248861|248863|248866|248867|248868|248869|248876|248877|248880|248881|248883|248888|248910|248911|248914|248921|248926|248944|248957|248989|248990|248997|249003|249013|249014|249029|249059|249064|249065|249071|249079|249091|249108|249129|249133|249137|249160|249163|249168|249171|249179|249181|249194|250542|250543|250715|250718|250719|250720|250721|250722|250724|250742|251099|251242|251487|251488|251491|251492|251493|251495|251496|251497|251499|251502|251504|251505|251937|251940|251942|253192|253193|253596|253598|253602|253604|253609|253611|253612|253669|253765|253766|253895|253896|253901|253988|253989|254243|254274|254275|254276|254453|254847|255116|255117|255118|255119|255120|255121|255425|255486|255488|255499|255501|255855|256302|256350|256353|256354|256356|256357|256773|257196|257599|259659|259660|259662|259664|259718|259738|259740|259741|259746|259799|259801|259802|259868|259871|259924|259928|259947|259948|259949|259952|259956|259957|259960|259964|259967|259969|259971|259972|259973|259993|259998|259999|260013|260042|260044|260045|260046|260047|260094|260096|260098|260099|260102|260108|260110|260154|260170|260172|260192|260193|260207|260252|260253|260256|260260|260356|260357|260360|260999|261002|261062|261066|261086|261091|261097|261099|261102|261103|261115|261118|261128|261131|261132|261133|261139|261140|261152|261158|261164|261165|261167|261169|261174|261175|261181|261191|261200|261201|261206|261213|261221|261222|261227|261228|261233|261237|261244|261245|261249|261251|261260|261278|261281|261285|261303|261310|261322|261335|261341|261344|261350|261351|261361|261362|261370|261384|261393|261395|261413|261415|261428|261437|261445|261447|261468|261487|261488|261515|261542|261546|261556|261557|261560|261566|261577|261578|261588|261597|261598|261625|261634|261647|261657|261660|261677|261687|261691|261713|261721|261739|261765|261791|261796|261801|261807|261808|261821|261827|261831|261845|261866|261884|261888|261919|261929|261962|261965|261973|261977|262005|262100|262105|262396|262800|262826|262828|262835|262839|262840|262841|262844|262845|262846|262850|262860|262863|262917|262921|262924|262927|262940|262951|262979|262981|262987|262988|262989|263987|264011|264074|264174|264436|264437|264443|264490|264496|264514|264571|264580|264583|264620|264638|264675|264690|264696|264769|264776|264844|264992|265013|265016|265126|265458|265578|265621|265808|265860|266100|266152|266177|267576|267769|268678|269252|270565|270566|271247|271670|271777|271973|274074|274513|275350|275419|277358|278160|278420|280504|280523|281945|281954|282701|282711|285273|285971|286670|286681|286740|286754|286759|287600|287607|287611|287660|287661|287665|287667|288986|288988|288993|289007|289366|289376|289830|289831|290191|291187|291322|291708|292136|292137|292138|292145|293581|294022|294554|294906|294910|294911|294920|294922|294923|294924|294929|294932|294935|294942|294946|295537|295561|295571|295699|295700|295707|296697|296698|297296|297301|298468|298606|300412|300418|300427|300428|300432|300433|301609|301619|303497|303688|303695|306559|308997|309444|309605|311450|311622|312240|312246|312249|313766|314892|315369|315392|315393|315500|315514|316331|316332|316333|316337|317044|317057|317503|317506|317507|318044|318057|318058|318274|318276|319512|319918|320054|320126|320128|320156|320419|321388|321659|321664|321673|321676|321678|321939|321940|321947|321953|322066|322068|322103|322400|322402|322407|323654|323749|323752|324088|324621|324627|324639|324937|327101|327399|327448|327449|327454|327770|328022|328447|328620|328850|328859|329574|329576|329579|329839|330108|331127|331228|331230|331238|331637|332444|332588|333311|334162|334173|334406|334409|334891|335896|336780|336792|336793|336799|337612|337726|338049|339496|339511|339850|339978|340074|340085|340849|340855|340856|340862|340863|341537|342258|342264|342274|342534|342586|342599|342603|342611|342618|342786|343564|343740|344034|344038|344043|344046|344098|345291|345292|345444|346687|346910|346913|346931|346932|347302|347982|348124|348581|349279|349281|349283|349371|351197|351285|352340|357087|357089|357090|357092|357093|357656|357660|357662|357669|357670|357672|357673|357674|357835|357877|357884|357887|357894|357895|357898|357901|357902|357906|357907|357915|357917|357923|357924|357927|357929|358342|358343|358347|358349|358364|358365|358697|358698|358699|358701|358703|358704|358706|358712|358713|358716|358718|358719|358720|358721|358722|358723|358726|358727|358730|358732|358738|358739|358742|358743|358744|358747|358748|358759|358760|358761|358765|358766|358767|358768|358769|358770|358771|358772|358773|358776|358778|358779|358783|358784|358788|358794|358795|358797|358799|358801|358807|358816|358822|358826|358827|358832|358833|358838|358839|358846|358850|358864|358882|358889|358892|358895|358896|358898|358901|358902|358904|358905|358906|358909|358910|358911|358913|358914|358915|358916|358917|358918|358919|358920|358922|358923|358928|358934|358939|358941|358950|358952|358953|358956|358958|358959|358961|358962|358964|358967|358973|358974|358978|358979|358981|359004|359005|359006|359203|359309|359363|359365|359501|359650|359807|359852|359961|359964|360059|360264|360335|360358|360361|360415|360472|360500|360507|360512|360712|360716|360833|360925|361009|361011|361012|361014|361218|361561|361566|361610|361856|361857|361862|361870|361883|361947|362213|362216|362217|362804|362896|362938|362940|363133|363184|363185|363213|363216|363264|363388|363389|363438|363442|363443|363449|363450|363451|363452|363455|363458|363462|363463|363477|363479|363482|363483|363484|363485|363488|363490|363494|363497|363498|363505|363512|363513|363516|363521|363523|363524|363525|363528|363531|363533|363534|363535|363536|363537|363538|363539|363541|363546|363548|363555|363559|363563|363564|363566|363567|363569|363570|363571|363573|364161|364229|364940|365103|365239|365242|365243|365250|365259|365260|365263|365273|365295|365300|365303|365316|365318|365323|365326|365328|365335|365336|365350|365353|365360|366131|366135|366137|366139|366141|366146|366149|366154|366157|366303|366305|366314|366318|366319|366324|366328|366336|366337|366345|366369|366376|366377|366381|366384|366388|366396|366405|366411|366418|366420|366424|366430|366450|366456|366472|366473|366475|366477|366479|366480|366494|366501|366514|366518|366519|366527|366530|366535|366547|366549|366554|366556|366559|366577|366581|366582|366585|366620|366635|366641|366651|366666|366675|366676|366677|366678|366683|366685|366692|366696|366700|366701|366707|366710|366712|366715|366719|366721|366723|366728|366736|366739|366741|366744|366745|366748|366750|366753|366762|366766|366767|366768|366770|366771|366772|366773|366774|366775|366776|366777|366783|366785|366786|366787|366788|366792|366795|366796|366799|366802|366805|366811|366815|366825|366828|366848|366851|366853|366854|366859|366864|366865|366866|366962|366964|366965|366969|366971|367095|367100|367119|367124|367126|367127|367130|367133|367147|367155|367162|367167|367180|367182|367336|367382|367390|367392|367393|367397|367399|367400|367402|367404|367405|367407|367408|367410|367412|367418|367423|367425|367426|367430|367431|367434|367435|367437|367440|367442|367446|367447|367449|367450|367459|367460|367461|367463|367465|367471|367485|367486|367488|367498|367506|367519|367524|367533|367537|367554|367564|367569|367578|367579|367582|367587|367588|367689|367699|367708|367738|367746|367752|367755|367756|367758|367761|367763|367764|367766|367774|367780|367782|367792|367794|367796|367797|367800|367807|367808|367815|367822|368039|368041|368044|368048|368057|368059|368062|368067|368068|368073|368079|368081|368082|368083|368086|368089|368091|368098|368104|368110|368111|368114|368115|368117|368119|368120|368132|368137|368141|368145|368147|368160|368176|368177|368181|368189|368191|368193|368194|368196|368406|368416|368420|368424|368428|368429|368432|368446|368462|368470|368622|368721|368730|368733|369073|369079|369082|369171|369181|369184|369189|369192|369196|369206|369210|369222|369230|369234|369237|369240|369243|369246|369247|369280|369292|369293|369295|369296|369299|369306|369311|369313|369348|369353|369364|369365|369369|369373|369374|369378|369379|369381|369387|369404|369406|369520|369523|369531|369533|369541|369543|369554|369557|369585|369587|369601|369603|369604|369674|369675|369813|369823|369828|369830|369833|369836|369838|369872|369886|369890|370044|370048|370050|370054|370055|370064|370070|370087|370094|370341|370345|370351|370353|370363|370370|370375|370376|370385|370470|370471|370486|370508|370521|370522|370547|370551|370554|370742|370743|370755|370785|370787|370840|370845|370936|370943|370950|370951|370954|370957|370999|371026|371027|371037|371041|371042|371046|371068|371071|371084|371085|371093|371098|371100|371105|371106|371109|371121|371128|371143|371161|371164|371166|371175|371176|371183|371188|371189|371191|371193|371194|371198|371205|371209|371210|371212|371221|371222|371224|371226|371232|371246|371258|371286|371302|371373|371416|371418|371419|371514|371516|371522|371527|371528|371533|371539|371540|371543|371544|371551|371552|371556|371558|371560|371566|371587|371671|371701|371704|371712|371737|371741|371754|371759|371767|371769|371775|371777|371795|371804|371807|371814|371815|371819|371822|371830|371842|371843|371847|371853|371855|371856|371857|371862|371865|371869|371871|371876|371881|371885|371896|371898|371900|371908|371911|371912|371923|371934|371936|371941|371951|371953|371955|371962|371965|371969|371970|371971|371973|371977|371978|371979|371982|371983|371984|371988|371989|371991|371996|372000|372001|372006|372007|372017|372020|372022|372029|372030|372035|372036|372042|372043|372049|372050|372051|372054|372058|372060|372066|372067|372072|372074|372075|372079|372080|372081|372082|372086|372088|372089|372090|372105|372110|372111|372117|372120|372121|372122|372126|372130|372132|372135|372144|372250|372342|372400|372403|372406|372409|372410|372413|372418|372420|372516|372649|372667|372672|372673|372678|372683|372685|372689|372706|372709|372718|372727|372732|372734|372736|372739|372740|372741|372744|372750|372756|372758|372759|372763|372775|372780|372784|372788|372790|372791|372794|372802|372815|372818|372820|372823|372828|372836|372926|372929|372933|372935|372939|372946|372950|372952|372960|372980|372999|373012|373020|373029|373036|373046|373062|373070|373207|373213|373216|373217|373348|373354|373356|373382|373393|373401|373418|373422|373423|373434|373436|373445|373449|373452|373460|373461|373464|373473|373478|373497|373506|373516|373523|373524|373540|373543|373555|373560|373564|373565|373652|373657|373664|373666|373670|373672|373673|373678|373679|373681|373689|373691|373692|373694|373695|373698|373700|373703|373706|373709|373712|373719|373720|373727|373730|373731|373734|373736|373739|373743|373745|373747|373750|373756|373758|373759|373767|373768|373771|373773|373774|373777|373784|373785|373787|373794|373801|373806|373814|373815|373833|373835|373843|373847|373851|373866|374043|374066|374082|374094|374101|374116|374117|374118|374126|374135|374159|374160|374167|374175|374176|374252|374255|374274|374282|374287|374438|374440|374443|374447|374449|374452|374457|374459|374461|374464|374467|374476|374488|374490|374494|374495|374505|374509|374511|374520|374522|374533|374667|374680|374681|374684|374685|374708|374710|374712|374725|374729|374737|374748|374751|374753|374762|374777|374782|374783|374784|374792|374796|374799|374805|374809|374815|374819|374825|374826|374828|374834|374835|374840|374854|374860|374918|374921|374922|374923|374924|374928|374931|374934|374941|374949|374950|374958|374959|374964|374972|375041|375046|375071|375072|375081|375088|375090|375096|375098|375101|375102|375103|375105|375106|375112|375115|375128|375163|375175|375198|375199|375241|375246|375247|375250|375251|375257|375264|375266|375268|375271|375274|375286|375289|375294|375298|375300|375310|375311|375318|375322|375326|375328|375333|375334|375354|375372|375375|375378|375390|375393|375404|375412|375425|375426|375429|375434|375438|375441|375443|375451|375514|375523|375524|375528|375534|375537|375539|375544|375547|375548|375549|375552|375555|375567|375569|375571|375574|375576|375577|375592|375598|375612|375614|375616|375674|375712|375721|375723|375726|375730|375732|375779|375787|375835|375841|375864|375867|375868|375946|375952|375957|375958|375961|375974|375976|375977|375978|375979|375980|375982|375985|375986|375987|375992|375993|375995|375997|375999|376005|376009|376012|376031|376032|376035|376036|376082|376093|376095|376097|376098|376101|376102|376110|376122|376124|376127|376133|376143|376148|376156|376158|376160|376162|376165|376166|376262|376268|376305|376318|376323|376324|376327|376329|376330|376336|376340|376342|376343|376346|376351|376385|376386|376387|376389|376397|376410|376412|376414|376416|376419|376420|376421|376423|376428|376435|376441|376447|376449|376459|376460|376466|376478|376540|376581|376602|376604|376607|376613|376616|376631|376672|376676|376680|376684|376704|376705|376707|376709|376737|376740|376747|376782|376786|376790|376791|376824|376829|376831|376834|376836|376844|376845|376851|376860|376890|376896|376898|376902|376904|376908|376910|376914|377033|377035|377037|377041|377048|377072|377073|377090|377091|377096|377097|377110|377121|377132|377140|377149|377154|377170|377178|377183|377213|377215|377249|377260|377271|377274|377277|377278|377285|377287|377288|377294|377299|377307|377318|377323|377358|377362|377364|377365|377378|377380|377385|377394|377402|377422|377423|377425|377442|377447|377452|377456|377460|377635|377647|377655|377659|377662|377664|377665|377667|377670|377701|377708|377715|377719|377720|377725|377730|377734|377739|377747|377759|377760|377763|377769|377773|377775|377776|377780|377784|377794|377809|377811|377813|377839|377903|377905|377909|377922|377929|377931|377935|377936|377940|377942|377945|377947|377955|377960|377975|377980|377992|378032|378037|378042|378053|378057|378061|378085|378101|378123|378126|378131|378230|378236|378243|378261|378268|378278|378283|378285|378289|378296|378301|378537|378538|378546|378550|378562|378567|378571|378577|378581|378582|378586|378590|378592|378593|378599|378601|378604|378605|378621|378623|378649|378668|378677|378678|378681|378694|378701|378703|378724|378727|378736|378745|378749|378751|378753|378759|378781|378798|378799|378800|379022|379024|379030|379036|379040|379044|379045|379051|379055|379206|379207|379212|379215|379219|379220|379222|379229|379238|379255|379260|379622|379624|379626|379627|379628|379629|379630|379631|379634|379637|379638|379640|379642|379644|379647|379649|379651|379652|379654|379655|379658|379660|379825|379827|379828|379829|379831|379832|379835|379837|379839|379840|379846|380277|380449|380453|380455|380458|380461|380462|380464|380471|384402|389257|389258|389259|389260|389261|389262|389263|389264|389265|389266|389267|389268|389269|389270|389271|389272|389273|389274|389275|389276|389277|389278|389279|389280|389281|389282|389283|389284|389527|389696|390005|390037|390085|390089|390137|390209|390486|390688|390861|390864|390875|390877|390878|390886|390887|390888|390890|390892|390893|390894|390898|390899|390900|390901|390904|390908|390909|390914|390915|390917|390922|390923|390925|390928|390930|390931|390940|390947|390961|390964|390975|390982|391106|391108|391111|391116|391119|391130|391134|391139|391146|391156|391162|391164|391181|391200|391202|391269|391278|391286|391289|391291|391304|391307|391321|391324|391325|391329|391331|391335|391336|391337|391342|391354|391358|391367|391380|391385|391388|391391|391443|391446|391450|391461|391476|391496|391502|391517|392307|392309|392324|392331|392337|392341|392342|392346|392357|392395|392404|392411|392418|392419|392424|392435|392437|392440|392441|392449|392451|392463|392498|392499|392504|392511|392517|392519|392521|392524|392527|392529|392531|392538|392540|392543|392548|392556|392566|392571|392575|392577|392584|392587|392589|392594|392597|392601|392606|392607|392608|392613|392617|392621|392624|392627|392635|392650|392670|392672|392681|392685|392686|392690|392692|392696|392697|392698|392699|392700|392701|392702|392703|392709|392710|392718|392721|392730|392731|392735|392736|392738|392739|392747|392753|392755|392759|392760|392763|392767|392768|392774|392777|392779|392780|392793|392795|392800|392804|392805|392810|392813|392814|392817|392820|392825|392827|392829|392830|392832|392838|392840|392841|392842|392843|392848|392849|392851|392853|392855|392859|392860|392863|392867|392869|392876|392878|392879|392886|392888|392889|392892|392894|392898|392900|392902|392904|392907|392908|392909|392910|392912|392919|392922|392925|392926|392927|392928|392931|392934|392936|392937|392939|392945|392946|392947|392951|392952|392954|392956|392957|392958|392964|392966|392968|392969|392971|392974|392977|392982|392983|392984|392987|392988|392989|392990|392991|392993|392995|392998|392999|393000|393001|393003|393005|393007|393008|393009|393014|393019|393022|393024|393027|393029|393033|393034|393036|393040|393041|393042|393043|393044|393045|393046|393047|393051|393052|393054|393055|393057|393058|393062|393065|393069|393073|393074|393077|393078|393083|393084|393087|393089|393094|393095|393097|393101|393103|393108|393115|393117|393119|393122|393123|393124|393126|393127|393130|393132|393137|393139|393140|393148|393154|393155|393161|393164|393168|393170|393174|393176|393182|393184|393187|393192|393193|393196|393199|393201|393206|393207|393214|393216|393237|393246|393251|393253|393265|393268|393280|393284|393290|393295|393305|393318|393323|393336|393344|393348|393350|393356|393364|393366|393376|393377|393381|393382|393399|393422|393425|393428|393440|393442|393444|393459|393462|393464|393465|393470|393472|393478|393480|393482|393486|393488|393490|393493|393494|393496|393497|393512|393513|393526|393527|393528|393531|393535|393536|393539|393543|393548|393551|393564|393569|393654|393655|393663|393670|393676|393680|393681|393687|393690|393696|393697|393699|393700|393701|393703|393707|393708|393714|393715|393718|393719|393721|393722|393723|393725|393727|393728|393729|393736|393738|393741|393755|393832|393833|393834|393843|393850|393857|393864|393885|393887|393889|393892|393893|393895|393901|393902|393904|393905|393907|393908|393910|393911|393913|393914|393915|393918|393919|393920|393927|393929|393931|393936|393937|393942|393948|393949|393958|393964|393969|393980|393988|393996|394006|394036|394038|394041|394049|394071|394073|394081|394086|394098|394101|394104|394105|394107|394108|394120|394126|394131|394137|394138|394144|394150|394159|394160|394161|394165|394168|394170|394172|394175|394178|394184|394186|394188|394189|394193|394199|394201|394202|394203|394204|394218|394223|394227|394228|394230|394231|394234|394240|394243|394246|394251|394253|394257|394258|394267|394269|394276|394278|394285|394289|394290|394291|394294|394302|394312|394316|394317|394319|394321|394322|394324|394327|394329|394330|394331|394332|394333|394334|394335|394338|394341|394343|394345|394346|394347|394349|394350|394351|394353|394354|394355|394359|394363|394367|394368|394371|394374|394377|394382|394387|394389|394390|394391|394394|394395|394397|394399|394400|394401|394405|394408|394410|394411|394412|394413|394417|394418|394420|394421|394424|394425|394427|394429|394430|394432|394434|394435|394439|394441|394445|394446|394447|394448|394452|394455|394456|394459|394460|394462|394463|394465|394470|394471|394474|394475|394476|394480|394481|394482|394483|394485|394486|394488|394489|394492|394493|394494|394495|394504|394508|394509|394515|394516|394520|394521|394523|394525|394529|394530|394532|394534|394535|394540|394543|394545|394547|394548|394549|394551|394561|394564|394565|394567|394573|394577|394581|394585|394586|394590|394593|394594|394596|394597|394598|394602|394604|394605|394607|394609|394610|394614|394617|394622|394623|394625|394627|394632|394633|394636|394639|394640|394643|394644|394646|394647|394649|394652|394663|394665|394666|394667|394668|394669|394670|394671|394672|394673|394674|394675|394676|394677|394678|394679|394680|394681|394682|394684|394685|394687|394688|394690|394692|394694|394695|394697|394698|394699|394700|394701|394702|394703|394704|394706|394707|394708|394711|394712|394716|394717|394719|394721|394727|394729|394734|394735|394737|394738|394741|394743|394744|394750|394753|394754|394765|394772|394776|394777|394781|394782|394784|394787|394790|394792|394794|394795|394796|394798|394800|394801|394804|394806|394809|394812|394825|394830|394837|394843|394845|394856|394857|394858|394859|394860|394861|394862|394863|394864|394865|394868|394869|394871|394873|394875|394876|394877|394878|394880|394882|394884|394885|394888|394892|394893|394901|394907|394908|394909|394911|394912|394914|394916|394917|394923|394924|394926|394927|394929|394930|394932|394934|394935|394939|394942|394946|394947|394948|394950|394951|394952|394955|394960|394961|394969|394970|394974|394976|394982|394988|394989|394990|394993|394995|394997|395003|395004|395011|395029|395034|395035|395037|395039|395040|395043|395048|395067|395078|395088|395116|395160|395181|395185|395189|395195|395198|395200|395201|395205|395209|395211|395214|395215|395217|395225|395232|395234|395237|395242|395243|395250|395254|395256|395257|395260|395261|395262|395268|395273|395279|395280|395281|395283|395285|395288|395291|395292|395295|395297|395299|395301|395303|395304|395311|395315|395318|395319|395326|395332|395339|395355|395363|395366|395373|395381|395383|395389|395391|395394|395462|395463|395478|395488|395496|395503|395509|395513|395515|395517|395524|395525|395527|395531|395533|395570|395576|395581|395586|395589|395590|395593|395732|395736|395744|395745|395750|395752|395756|395769|395770|395790|395896|395899|395928|395932|395935|395940|395941|395953|395955|395958|395963|395971|395976|395978|395992|395999|396000|396001|396017|396023|396025|396037|396039|396044|396048|396052|396058|396061|396062|396064|396076|396087|396094|396095|396117|396118|396293|396297|396307|396313|396326|396333|396343|396344|396349|396350|396358|396360|396364|396366|396372|396375|396384|396398|396500|396503|396507|396511|396515|396521|396535|396536|396555|396559|396562|396567|396568|396575|396578|396580|396602|396613|396617|396622|396623|396633|396634|396635|396637|396694|396697|396701|396705|396708|396713|396715|396717|396720|396721|396725|396732|396752|396761|396769|396776|396784|396789|396825|396833|396841|396864|396868|396869|396875|396906|396910|396914|396921|396925|396927|396931|396932|396933|396934|396935|396936|396938|396939|396941|396942|396943|396954|396955|396958|396960|396962|396967|396971|396973|396974|396976|396979|396981|396984|396987|396988|396991|396994|396999|397014|397022|397023|397026|397031|397034|397037|397041|397052|397056|397058|397060|397062|397064|397065|397074|397075|397078|397082|397092|397098|397101|397103|397126|397130|397134|397146|397150|397163|397167|397168|397175|397179|397181|397182|397188|397198|397200|397205|397209|397210|397211|397212|397216|397218|397222|397224|397226|397236|397238|397244|397245|397246|397251|397252|397253|397258|397262|397264|397265|397266|397267|397268|397269|397271|397272|397275|397279|397281|397282|397284|397286|397287|397290|397294|397296|397298|397304|397314|397317|397335|397343|397348|397349|397351|397359|397361|397364|397365|397366|397376|397382|397390|397394|397402|397411|397412|397415|397429|397432|397433|397436|397438|397441|397442|397443|397444|397445|397448|397452|397453|397454|397456|397457|397461|397466|397469|397473|397474|397475|397479|397480|397481|397482|397484|397487|397488|397489|397492|397495|397498|397500|397501|397502|397503|397505|397507|397508|397510|397517|397520|397521|397524|397531|397532|397533|397535|397537|397560|397570|397574|397586|397594|397605|397606|397608|397614|397616|397617|397619|397623|397626|397628|397629|397636|397637|397645|397646|397648|397649|397650|397651|397653|397655|397656|397658|397660|397661|397662|397664|397665|397669|397671|397672|397674|397676|397679|397680|397683|397685|397686|397687|397688|397695|397696|397697|397699|397703|397704|397705|397706|397709|397710|397716|397718|397721|397727|397730|397735|397738|397745|397750|397754|397755|397758|397769|397770|397772|397778|397781|397784|397786|397788|397791|397792|397796|397797|397800|397802|397803|397806|397808|397809|397811|397812|397813|397814|397817|397819|397820|397822|397823|397825|397826|397829|397830|397831|397833|397845|397849|397850|397851|397852|397854|397855|397859|397861|397862|397864|397865|397870|397871|397872|397873|397875|397876|397879|397880|397882|397884|397885|397887|397889|397891|397893|397895|397896|397897|397900|397901|397903|397905|397906|397907|397909|397913|397914|397919|397920|397921|397922|397925|397926|397928|397929|397933|397936|397938|397941|397942|397943|397944|397945|397948|397949|397951|397954|397955|397960|397962|397965|397969|397972|397974|397980|397981|397983|397985|397991|397992|397996|397999|398002|398005|398008|398011|398012|398015|398016|398019|398022|398026|398027|398028|398029|398030|398032|398034|398035|398036|398037|398038|398041|398043|398044|398047|398049|398051|398057|398063|398068|398070|398076|398077|398078|398093|398105|398110|398113|398121|398133|398134|398137|398141|398143|398154|398162|398163|398166|398168|398170|398172|398173|398178|398183|398185|398190|398191|398195|398204|398209|398210|398211|398214|398221|398223|398225|398228|398230|398236|398238|398239|398241|398243|398244|398248|398249|398252|398257|398258|398260|398261|398266|398270|398271|398272|398274|398276|398282|398283|398284|398285|398286|398287|398288|398290|398292|398293|398294|398297|398299|398300|398302|398308|398311|398313|398314|398322|398323|398324|398326|398327|398329|398331|398332|398333|398334|398335|398338|398340|398341|398343|398350|398351|398352|398353|398354|398355|398356|398358|398359|398360|398361|398367|398369|398370|398371|398374|398377|398378|398379|398382|398383|398384|398391|398394|398395|398396|398400|398401|398408|398412|398424|398434|398439|398442|398450|398452|398454|398463|398467|398468|398472|398473|398474|398484|398496|398500|398503|398505|398508|398513|398519|398530|398539|398541|398542|398547|398548|398550|398561|398570|398573|398574|398576|398582|398603|398604|398610|398615|398643|398653|398672|398673|398674|398675|398690|398694|398696|398698|398702|398712|398713|398715|398733|398739|398740|398743|398750|398751|398756|398768|398775|398776|398778|398779|398782|398784|398785|398789|398796|398797|398800|398801|398804|398805|398807|398808|398819|398822|398825|398829|398839|398851|398857|398861|398863|398864|398870|398873|398877|398887|398888|398893|398894|398905|398906|398908|398910|398915|398924|398934|398935|398941|398942|398952|398954|398964|398973|398977|398979|398983|398987|398996|399004|399005|399007|399009|399011|399016|399019|399028|399037|399043|399044|399045|399046|399052|399062|399064|399129|399131|399133|399136|399137|399150|399152|399155|399156|399158|399161|399162|399172|399173|399179|399184|399190|399191|399192|399193|399197|399198|399199|399202|399203|399205|399207|399211|399216|399221|399225|399227|399230|399232|399234|399239|399248|399269|399270|399276|399283|399292|399294|399296|399299|399301|399305|399306|399308|399314|399319|399324|399326|399327|399331|399333|399334|399336|399338|399342|399347|399351|399354|399363|399364|399367|399369|399374|399378|399381|399387|399396|399400|399402|399406|399409|399411|399418|399427|399429|399430|399435|399437|399441|399455|399458|399460|399462|399465|399467|399468|399473|399474|399477|399485|399486|399493|399495|399496|399497|399500|399505|399513|399523|399524|399526|399529|399537|399541|399542|399543|399546|399547|399549|399554|399557|399559|399571|399583|399629|399646|399649|399651|399659|399665|399686|399697|399714|399715|399745|399752|399753|399754|399758|399761|399765|399771|399773|399774|399775|399778|399780|399782|399789|399791|399792|399794|399801|399802|399803|399805|399807|399809|399811|399813|399814|399819|399822|399823|399824|399826|399832|399835|399842|399845|399847|399854|399861|399864|399865|399867|399869|399870|399871|399878|399880|399881|399886|399887|399888|399889|399892|399893|399898|399899|399900|399902|399905|399906|399914|399927|399929|399947|399949|399951|399952|399954|399955|399957|399961|399963|399964|399966|399967|399969|399970|399971|399977|399978|399980|399985|399987|399988|399989|399992|399996|400000|400001|400002|400004|400005|400008|400009|400011|400013|400014|400015|400016|400021|400024|400025|400027|400029|400032|400035|400036|400041|400042|400044|400049|400050|400051|400059|400060|400061|400067|400068|400069|400077|400085|400092|400094|400102|400103|400105|400110|400112|400114|400115|400116|400117|400122|400123|400124|400125|400130|400132|400135|400137|400147|400150|400153|400154|400166|400168|400184|400191|400198|400202|400204|400241|400249|400300|400301|400319|400328|400334|400335|400338|400340|400352|400353|400354|400356|400361|400367|400372|400377|400378|400385|400388|400400|400403|400404|400413|400433|400434|400435|400437|400438|400441|400442|400445|400446|400448|400449|400452|400455|400461|400468|400473|400475|400477|400489|400501|400504|400507|400514|400551|400562|400573|400575|400586|400591|400596|400597|400602|400606|400611|400616|400617|400621|400625|400628|400635|400637|400638|400641|400645|400649|400650|400651|400652|400654|400663|400675|400678|400679|400681|400684|400695|400713|400716|400721|400722|400724|400726|400727|400728|400730|400746|400750|400757|400759|400764|400768|400772|400774|400777|400778|400779|400784|400787|400789|400790|400791|400792|400793|400794|400800|400801|400803|400808|400812|400816|400819|400821|400826|400827|400831|400832|400833|400836|400837|400838|400839|400843|400844|400848|400859|400861|400862|400864|400866|400873|400881|400884|400887|400888|400910|400923|400924|400926|400933|400935|400937|400938|400940|400942|400943|400944|400948|400951|400952|400953|400956|400959|400963|400964|400965|400966|400967|400969|400971|400976|400978|400979|400983|400985|400989|400992|400993|400995|400996|400999|401000|401001|401004|401005|401007|401010|401011|401012|401014|401017|401021|401024|401025|401027|401028|401029|401032|401038|401043|401049|401050|401056|401060|401063|401064|401070|401071|401075|401077|401081|401083|401085|401089|401094|401095|401101|401102|401109|401114|401115|401118|401122|401129|401133|401137|401141|401142|401146|401150|401155|401156|401165|401171|401200|401201|401204|401207|401211|401239|401243|401244|401251|401254|401257|401263|401264|401269|401270|401271|401273|401275|401279|401280|401282|401284|401285|401286|401292|401293|401294|401295|401296|401297|401298|401300|401301|401303|401305|401306|401307|401308|401312|401316|401320|401325|401328|401336|401339|401344|401369|401383|401394|401397|401401|401409|401414|401415|401418|401432|401433|401438|401441|401445|401449|401452|401455|401464|401468|401469|401470|401473|401474|401480|401481|401491|401495|401498|401501|401505|401513|401517|401518|401523|401524|401530|401531|401534|401535|401542|401545|401548|401550|401553|401554|401556|401557|401560|401561|401563|401564|401572|401577|401578|401580|401581|401582|401585|401586|401587|401589|401590|401592|401593|401597|401599|401602|401605|401608|401611|401614|401621|401629|401631|401634|401635|401637|401645|401653|401657|401664|401667|401671|401675|401680|401683|401685|401695|401696|401698|401709|401712|401716|401721|401724|401725|401726|401728|401730|401733|401734|401735|401739|401741|401743|401744|401746|401747|401753|401754|401759|401764|401765|401767|401768|401770|401771|401772|401773|401774|401775|401776|401778|401780|401781|401785|401786|401788|401793|401795|401796|401797|401799|401800|401801|401803|401804|401806|401816|401819|401820|401822|401823|401830|401837|401841|401842|401843|401845|401846|401847|401848|401850|401851|401853|401854|401855|401857|401862|401866|401872|401873|401878|401879|401881|401882|401883|401884|401890|401892|401893|401901|401906|401914|401915|401926|401932|401936|401937|401961|401971|401977|401980|401982|401985|401986|401997|402001|402005|402006|402007|402009|402012|402013|402017|402020|402022|402023|402024|402026|402027|402032|402037|402038|402039|402041|402042|402047|402048|402049|402054|402056|402059|402061|402062|402063|402071|402072|402073|402074|402076|402084|402089|402092|402093|402094|402095|402096|402097|402100|402108|402112|402119|402136|402145|402150|402153|402155|402158|402163|402164|402166|402167|402170|402172|402175|402178|402182|402183|402187|402188|402192|402193|402203|402205|402208|402209|402210|402211|402212|402215|402216|402217|402224|402226|402230|402235|402238|402243|402244|402245|402246|402251|402252|402254|402256|402263|402265|402269|402270|402271|402272|402274|402278|402280|402281|402285|402289|402290|402291|402293|402295|402296|402297|402298|402299|402300|402301|402305|402307|402312|402315|402317|402318|402319|402320|402322|402324|402325|402326|402328|402340|402342|402346|402348|402350|402353|402354|402356|402371|402377|402378|402379|402383|402387|402388|402390|402391|402394|402397|402398|402400|402405|402406|402410|402415|402416|402419|402422|402423|402425|402428|402429|402433|402434|402435|402437|402438|402448|402452|402453|402460|402465|402469|402470|402475|402476|402479|402481|402482|402488|402489|402490|402495|402497|402498|402499|402500|402512|402525|402532|402533|402534|402536|402542|402545|402548|402551|402552|402556|402557|402559|402560|402562|402563|402564|402565|402567|402568|402569|402571|402572|402574|402577|402578|402580|402581|402582|402588|402590|402595|402596|402601|402606|402607|402609|402611|402613|402615|402623|402626|402637|402640|402642|402643|402644|402646|402648|402649|402650|402651|402653|402655|402659|402661|402664|402667|402669|402671|402677|402680|402681|402686|402688|402693|402694|402696|402699|402701|402710|402718|402721|402729|402730|402732|402736|402740|402741|402742|402744|402746|402747|402748|402750|402752|402758|402759|402764|402765|402766|402767|402770|402774|402776|402777|402778|402781|402786|402789|402792|402798|402802|402803|402805|402806|402812|402814|402816|402818|402819|402823|402830|402837|402839|402847|402850|402851|402859|402861|402862|402865|402866|402867|402875|402876|402877|402878|402879|402880|402881|402882|402883|402887|402890|402891|402893|402894|402897|402898|402899|402900|402905|402907|402908|402909|402912|402913|402915|402916|402917|402918|402920|402921|402922|402923|402930|402931|402933|402934|402938|402941|402942|402951|402957|402958|402960|402961|402963|402964|402965|402966|402968|402971|402976|402977|402978|402989|402994|402998|403001|403005|403008|403010|403011|403013|403014|403015|403020|403021|403024|403025|403027|403029|403032|403033|403036|403038|403039|403040|403041|403045|403046|403047|403048|403049|403050|403051|403052|403053|403056|403057|403058|403060|403066|403070|403071|403078|403079|403080|403081|403085|403088|403092|403093|403096|403101|403102|403105|403108|403110|403111|403115|403125|403126|403127|403129|403141|403144|403145|403155|403156|403158|403162|403165|403166|403169|403178|403181|403182|403183|403186|403188|403190|403193|403194|403198|403207|403218|403225|403231|403296|403305|403307|403310|403312|403313|403315|403321|403325|403329|403331|403342|403346|403349|403352|403357|403359|403367|403373|403375|403382|403383|403386|403388|403393|403399|403401|403402|403403|403404|403406|403407|403408|403412|403413|403416|403419|403420|403422|403423|403424|403425|403426|403428|403429|403433|403435|403436|403437|403438|403440|403441|403443|403445|403446|403447|403448|403449|403451|403452|403453|403454|403455|403456|403459|403460|403461|403462|403463|403465|403468|403469|403473|403474|403475|403477|403479|403480|403481|403482|403484|403485|403486|403487|403488|403490|403492|403494|403495|403500|403507|403508|403509|403512|403515|403516|403517|403520|403521|403522|403524|403527|403528|403530|403532|403534|403538|403539|403541|403542|403543|403546|403547|403549|403552|403558|403560|403561|403562|403563|403569|403575|403576|403581|403588|403591|403613|403621|403622|403627|403631|403632|403633|403634|403640|403641|403648|403651|403660|403675|403677|403687|403773|403780|403782|403785|403789|403790|403793|403796|403807|403808|403819|403821|403823|403825|403829|403831|403832|403834|403836|403839|403840|403842|403843|403845|403849|403852|403853|403864|403865|403869|403872|403876|403877|403880|403883|403884|403885|403886|403890|403891|403892|403894|403895|403896|403898|403904|403905|403907|403910|403913|403915|403916|403918|403922|403924|403925|403928|403929|403930|403931|403932|403934|403935|403936|403938|403939|403940|403942|403944|403946|403976|403979|403986|403994|404005|404030|404032|404036|404039|404043|404063|404065|404081|404087|404313|404316|404319|404321|404326|404329|404332|404333|404334|404335|404337|404342|404345|404347|404348|404349|404352|404353|404355|404357|404359|404360|404361|404363|404364|404367|404368|404372|404377|404378|404379|404382|404384|404389|404394|404599|404604|404632|404700|404709|404710|404716|404981|405126|405128|405181|405183|405184|405188|405189|405195|405198|405199|405200|405201|405203|405204|405205|405206|405207|405208|405558|405559|405560|405561|405562|405563|405566|405568|405569|405570|405572|405577|405578|405579|405581|405582|405583|405584|405585|405586|405588|405594|405595|405596|405597|405598|405600|405603|405604|405605|405607|405608|405741|405743|405744|405748|405749|405750|405751|405752|405754|405755|405756|405759|405761|405762|405763|405765|405766|405767|405768|405769|405771|405772|405776|405780|405781|405782|405783|405784|405786|405787|405788|405790|405791|405792|405793|405797|405799|405800|405801|405802|405803|405806|405807|405809|405810|405812|405816|405817|405818|405825|405826|405829|405830|405831|405832|405833|405834|405836|405837|405838|405839|405843|405844|405845|405846|405847|405848|405850|405851|405854|405856|405861|405862|405864|405865|405866|405869|405870|405874|405878|405879|405880|405881|405883|405885|405886|405887|405890|405892|405893|405894|405895|405896|405897|405898|405900|405901|405903|405905|405906|405907|405909|405910|405911|405914|405916|405917|405919|405923|405924|405925|405926|405927|405928|405929|405930|405931|405932|405934|405936|405937|405939|405940|405942|405943|405947|405949|405950|405951|405952|405953|405959|405960|405961|405962|405963|405964|405965|405966|405967|405972|405973|405975|405976|405978|406057|406059|406062|406069|406074|406075|406190|406192|406194|406197|406198|406203|406207|406209|406210|406211|406213|406214|406216|406220|406221|406222|406224|406227|406233|406234|406236|406238|406240|406246|406247|406249|406250|406251|406255|406258|406259|406262|406342|406345|406479|406480|406481|406485|406488|406490|406491|406492|406493|406499|406500|406501|406502|406503|406504|406505|406506|406508|406509|406513|406515|406518|406519|406520|406522|406523|406525|406526|406528|406529|406532|406534|406535|406537|406542|406544|406546|406547|406550|406551|406552|406553|406555|406558|406560|406564|406565|406566|406567|406569|406575|406576|406577|406578|406579|406580|406581|406582|406583|406584|406585|406588|406590|406594|406595|406597|406598|406599|406600|406739|406740|406962|407080|407082|407085|407088|407090|407092|407093|407098|407102|407103|407104|407106|407108|407165|407167|407168|407169|407170|407171|407175|407176|407177|407179|407180|407181|407184|407185|407186|407188|407189|407190|407192|407196|407197|407198|407201|407203|407204|407205|407206|407207|407209|407210|407211|407212|407214|407217|407218|407221|407222|407224|407225|407226|407227|407229|407232|407234|407457|407459|407461|407462|407463|407464|407465|407467|407470|407472|407473|407475|407483|407484|407485|407489|407491|407492|407496|407497|407498|407499|407570|407649|407651|407654|407655|407659|407661|407664|407665|407673|407732|407733|407737|407738|407744|407749|407751|407754|407758|407759|407769|407770|407780|407856|407927|407929|407931|407932|407933|407934|407935|407938|407939|407941|407944|407945|407949|407952|407954|407955|407956|407957|407959|407960|407963|407964|407966|407973|407976|407977|407978|407982|407985|407987|407990|407991|407993|407994|407997|408002|408003|408004|408005|408010|408011|408012|408040|408042|408044|408047|408049|408051|408054|408055|408056|408060|408062|408063|408064|408066|408067|408072|408076|408078|408082|408083|408084|408085|408086|408087|408088|408089|408090|408091|408095|408096|408097|408099|408101|408102|408103|408104|408107|408108|408109|408110|408111|408113|408114|408117|408118|408119|408120|408121|408122|408126|408127|408133|408135|408138|408139|408141|408142|408143|408144|408148|408153|408155|408157|408160|408161|408162|408165|408169|408172|408176|408178|408179|408180|408182|408184|408185|408187|408190|408191|408192|408194|408195|408196|408200|408203|408204|408205|408210|408213|408214|408216|408221|408224|408225|408229|408230|408232|408234|408235|408236|408239|408240|408242|408243|408244|408245|408246|408247|408249|408251|408252|408254|408255|408257|408258|408259|408260|408262|408265|408270|408271|408405|408406|408412|408553|408561|408565|408569|408581|408585|408590|408591|408592|408724|408725|408726|408824|408825|408827|408828|408837|408839|408843|408844|408852|408855|408858|408862|408865|408866|408872|408873|408877|408880|408883|408884|408885|408887|408888|408889|408892|408896|408898|408899|408902|408905|408909|408910|408913|408914|408919|408921|408923|408931|408932|408934|408935|408937|408941|408942|408943|408946|408947|408948|408949|408951|408952|408953|408954|408955|408956|408959|408960|408965|408966|408967|408970|408977|408978|408980|408982|408985|408986|408987|408988|408990|408995|408996|408997|408999|409000|409001|409003|409006|409008|409010|409017|409019|409020|409030|409032|409393|409474|409488|409513|409514|409517|409518|409519|409522|409523|409525|409526|409528|409531|409532|409533|409535|409536|409539|409541|409547|409548|409551|409552|409554|409555|409556|409557|409559|409560|409564|409569|409573|409574|409670|409672|409674|409675|409676|409679|409681|409683|409686|409688|409690|409693|409694|409695|409696|409698|409699|409700|409702|409704|409706|409708|409709|409711|409712|409714|409715|409838|409860|409871|409875|409890|409891|409893|409894|409896|409900|409902|409906|409907|409908|409909|409913|409940|409941|409942|409946|409950|409955|409957|409959|409962|409967|409968|409973|409976|409982|409986|409988|409989|409998|409999|410002|410003|410006|410007|410008|410013|410014|410015|410018|410020|410023|410024|410025|410027|410030|410034|410090|410095|410097|410098|410102|410103|410106|410108|410112|410113|410114|410115|410118|410119|410120|410122|410125|410127|410128|410130|410133|410134|410136|410138|410139|410142|410145|410148|410152|410154|410155|410156|410157|410159|410163|410164|410180|410182|410188|410193|410199|410204|410249|410253|410256|410257|410258|410259|410263|410265|410266|410267|410269|410274|410278|410283|410284|410285|410379|410380|410382|410388|410389|410392|410393|410394|410395|410423|410438|410439|410440|410441|410442|410443|410451|410453|410454|410457|410458|410461|410462|410463|410464|410466|410468|410469|410675|410678|410683|410696|410697|410926|410927|410928|410930|410931|410932|410934|410935|410937|410938|410942|410945|410947|410948|410950|410953|410956|410957|410958|410960|410965|410967|410968|410970|410972|410973|410974|410975|413206|413325|413327|413356|413533|415247|415544|415548|415562|416231|416232|416234|416235|416240|416241|416244|416246|416248|416249|416256|416257|416267|416268|416272|416274|416277|416278|416282|416290|416294|416296|416299|416301|416305|416306|416308|416312|416315|416318|416322|416323|416330|416333|416334|416335|416337|416339|416340|416343|416344|416345|416346|416347|416348|416351|416353|416354|416356|416360|416362|416363|416366|416369|416370|416377|416382|416384|416388|416389|416392|416393|416396|416402|416404|416405|416411|416412|416413|416415|416419|416424|416429|416434|416436|416437|416438|416439|416444|416448|416453|416456|416457|416458|416459|416464|416466|416468|416474|416478|416482|416484|416490|416492|416494|416495|416496|416497|416498|416501|416503|416505|416509|416511|416514|416521|416522|416527|416529|416531|416534|416937|416938|416941|416943|416945|416949|416954|416961|416964|416969|416972|416981|419003|419299|419300|419301|419302|419303|419304|419306|419307|419309|419310|419311|419312|419313|419314|419315|419316|419317|419318|419319|419320|419321|419322|419323|419324|419325|419326|419327|419328|419329|419330|419331|419332|419333|419335|419336|419338|419339|419340|419341|419342|419344|419345|419346|419347|419348|419349|419350|419351|419352|419353|419355|419356|419357|419359|419360|419361|419363|419364|419365|419366|419367|419368|419369|419370|419371|419372|419374|419375|419377|419378|419379|419380|419381|419382|419383|419384|419385|419386|419387|419388|419389|419390|419392|419393|419394|419395|419396|419397|419398|419399|419400|419401|419402|419403|419404|419405|419406|419407|419408|419410|419412|419413|419414|419415|419416|419417|419418|419419|419420|419421|419422|419423|419424|419425|419426|419427|419428|419429|419430|419431|419432|419433|419434|419435|419436|419437|419438|419439|419440|419441|419442|419443|419444|419445|419446|419447|419448|419449|419450|419451|419452|419453|419454|419455|419456|419457|419458|419459|419460|419461|419462|419463|419464|419465|419466|419467|419468|419469|419470|419471|419472|419473|419474|419475|419476|419477|419478|419479|419480|419481|419482|419483|419484|419485|419486|419487|419488|419489|419490|419491|419492|419493|419494|419495|419496|419497|419498|419499|419500|419501|419502|419503|419504|419505|419506|419507|419508|419509|419510|419511|419512|419513|419514|419515|419516|419517|419518|419519|419520|419521|419522|419523|419524|419525|419526|419527|419528|419529|419530|419531|419532|419533|419534|419535|419536|419537|419538|419539|419540|419541|419542|419543|419544|419545|419546|419547|419548|419549|419550|419551|419552|419553|419555|419556|419557|419558|419559|419560|419561|419562|419563|419564|419565|419566|419567|419568|419569|419570|419571|419572|419573|419574|419575|419576|419577|419578|419579|419580|419581|419582|419583|419584|419585|419586|419587|419588|419589|419590|419591|419592|419593|419594|419595|419596|419597|419598|419599|419600|419601|419602|419603|419604|419605|419606|419607|419608|419609|419610|419611|419612|419613|419614|419615|419616|419617|419618|419619|419620|419621|419622|419623|419624|419625|419626|419627|419628|419629|419630|419631|419632|419633|419634|419635|419636|419637|419638|419639|419640|419641|419642|419643|419644|419645|419646|419647|419648|419649|419650|419651|419652|419653|419654|419655|419656|419657|419658|419659|419660|419661|419662|419663|419664|419665|419666|419667|419668|419669|419670|419671|419672|419673|419674|419675|419676|419677|419678|419679|419680|419681|419682|419683|419684|419685|419686|419687|419688|419689|419690|419691|419692|419693|419694|419695|419696|419697|419698|419699|419700|419701|419702|419703|419704|419705|419706|419707|419708|419709|419710|419711|419712|419713|419714|419715|419716|419717|419718|419719|419720|419721|419722|419723|419724|419725|419726|419727|419728|419729|419730|419731|419732|419733|419734|419735|419736|419737|419738|419739|419740|419741|419742|419743|419744|419745|419746|419747|419748|419749|419750|419751|419752|419753|419754|419755|419756|419757|419758|419759|419760|419761|419762|419763|419764|419765|419766|419767|419768|419769|419770|419771|419772|419773|419774|419775|419776|419777|419778|419779|419780|419781|419782|419783|419784|419785|419786|419787|419788|419789|419790|419791|419792|419793|419794|419795|419796|419797|419798|419799|419800|419801|419802|419803|419804|419805|419806|419807|419808|419809|419810|419811|419812|419813|419814|419815|419816|419817|419818|419819|419820|419821|419822|419823|419824|419825|419826|419827|419828|419829|419830|419831|419832|419833|419834|419835|419836|419837|419838|419839|419840|419841|419842|419843|419844|419845|419846|419847|419848|419849|419850|419851|419852|419853|419854|419855|419856|419857|419858|419859|419860|419861|419862|419863|419864|419865|419866|419867|419868|419869|419870|419871|419872|419873|419874|419875|419876|419877|419878|419879|420437|420438|420439|420440|420441|420442|420443|420444|420445|420446|420447|420448|420449|420450|420451|420452|420453|420454|420455|420456|420457|420458|420459|420460|420461|420462|420463|420464|420465|420466|420467|420468|420469|420470|420471|420473|420474|420475|420476|420477|420478|420479|420480|420481|420482|420483|420484|420485|420486|420487|420488|420489|420490|420491|420492|420493|420494|420495|420496|420497|420498|420499|420500|420501|420502|420503|420504|420505|420506|420507|420508|420509|420510|420511|420512|420513|420514|420515|420516|420517|420518|420519|420520|420521|420522|420523|420524|420525|420526|420527|420528|420529|420530|420531|420532|420533|420534|420535|420536|420537|420538|420539|420540|420541|420542|420543|420544|420545|420546|420547|420548|420549|420550|420551|420552|420553|420554|420555|420556|420557|420558|420559|420560|420561|420562|420563|420564|420565|420566|420567|420568|420569|420570|420571|420572|420573|420574|420575|420576|420577|420578|420579|420580|420581|420582|420583|420584|420585|420586|420587|420588|420589|420590|420591|420592|420593|420594|420595|420596|420597|420598|420599|420600|420601|420602|420603|420604|420605|420606|420607|420608|420609|420610|420611|420612|420613|420614|420615|420616|420617|420618|420619|420620|420621|420622|420623|420624|420625|420626|420627|420628|420629|420630|420631|420632|420633|420634|420635|420636|420637|420638|420639|420640|420641|420642|420643|420644|420645|420646|420647|420648|420649|420650|420651|420652|420653|420654|420655|420656|420657|420658|420659|420660|420661|420662|420663|420664|420665|420666|420667|420668|420669|420670|420671|420672|420673|420674|420675|420676|420677|420678|420679|420680|420681|420682|420683|420684|420685|420686|420687|420688|420689|420690|420691|420692|420693|420694|420695|420696|420697|420698|420699|420700|420701|420702|420704|420705|420706|420707|420708|420709|420710|420711|420712|420713|420714|420715|420716|420717|420718|420719|420720|420721|420722|420723|420724|420725|420726|420727|420728|420729|420730|420731|420732|420733|420734|420735|420736|420737|420738|420739|420740|420741|420742|420743|420744|420745|420746|420747|420748|420749|420750|420751|420752|420753|420754|420755|420756|420757|420758|420759|420760|420761|420762|420763|420764|420765|420766|420767|420768|420769|420770|420771|420772|420773|420774|420775|420776|420777|420778|420779|420780|420781|420782|420783|420784|420787|420788|420789|420790|420791|420792|420793|420794|420795|420796|420797|420798|420799|420800|420801|420802|420803|420804|420805|420806|420807|420808|420809|420810|420811|420812|420813|420814|420815|420816|420817|420818|420819|420820|420821|420822|420823|420824|420825|420826|420827|420828|420829|420830|420831|420832|420833|420834|420835|420836|420837|420838|420999|421000|421001|421002|421003|421004|421005|421006|421007|421008|421009|421010|421011|421012|421013|421014|421015|421016|421017|421018|421019|421020|421021|421022|421023|421024|421025|421026|421027|421028|421030|421031|421032|421033|421034|421035|421036|421037|421038|421039|421040|421041|421042|421043|421044|421045|421046|421047|421048|421049|421050|421051|421052|421053|421054|421055|421056|421057|421058|421059|421060|421062|421063|421064|421065|421066|421067|421068|421069|421070|421071|421072|421073|421074|421075|421076|421077|421078|421079|421080|421081|421082|421083|421084|421085|421086|421087|421088|421089|421090|421091|421092|421093|421094|421095|421096|421097|421098|421099|421100|421101|421102|421103|421104|421105|421106|421107|421108|421109|421110|421111|421112|421113|421114|421115|421116|421117|421118|421120|421121|421122|421123|421124|421125|421126|421127|421128|421129|421130|421131|421132|421133|421134|421135|421136|421137|421138|421139|421140|421141|421142|421507|421819|421821|421961|422156|422190|423239|423243|423245|424497|424705|424708|424712|424715|424727|424758|424765|424776|424778|424796|424801|424805|424809|424814|424822|424823|424829|424834|424851|424868|424878|424879|425096|425120|425138|425168|425175|425178|425187|425193|425874|425903|426153|426155|426213|426217|426277|426563|427132|427133|427152|427155|427163|427171|427176|427179|427181|427182|427183|427184|427185|427187|427206|427208|427222|427224|427242|427257|427260|427262|427264|427271|427305|427311|427314|427325|427326|427327|427333|427340|427343|427346|427352|427359|427365|427367|427368|427370|427378|427380|427384|427385|427387|427391|427393|427394|427396|427398|427400|427404|427409|427414|427415|427417|427419|427422|427438|427439|427527|427541|427542|427547|427554|427558|427560|427565|427568|427574|428061|428062|428667|428670|428671|428672|429167|429493|429494|429496|429749|429996|429997|429998|430119|430126|430553|430557|432026|432047|432370|432394|432415|432419|432491|432493|432494|432500|432501|432502|432503|432506|432507|432508|432511|432512|432515|432516|432519|432521|432522|432523|432525|432529|432530|432531|432534|432535|432537|432538|432559|432560|432561|432568|432570|432573|432575|432579|432585|432587|432588|432590|432601|432643|432646|432648|432650|432652|432653|432654|432655|432657|432658|432663|432667|432712|432715|432717|432718|432721|432722|432724|432728|432730|432731|432732|432734|432735|432737|432761|432763|432764|432765|432766|432768|432771|432777|432782|432787|432790|432791|432792|432795|432796|432798|432800|432802|432804|432805|432806|432809|432811|432812|432819|432821|432822|432828|432830|432834|432835|432878|432880|432881|432882|432883|432890|432891|432892|432895|432896|432901|432905|432906|432910|432916|432919|432924|432926|432927|432929|432930|432935|432936|432938|432941|432946|432953|432954|432966|432968|432969|432970|432971|433124|433262|433271|433272|433370|433376|433405|433702|433984|434038|434061|434084|434086|434942|434943|434944|434945|434946|434947|434948|434949|434950|434951|434952|434953|434954|434955|434956|434957|434958|434959|434960|434961|434962|434963|434964|434965|434966|434967|434968|434969|434970|434971|434972|434973|434974|434975|434976|434977|434978|434979|434980|434981|434982|434983|434984|434985|434986|434987|434988|434989|434990|434991|434992|434993|434994|434995|434996|434997|434998|434999|435000|435001|435002|435003|435004|435005|435006|435007|435008|435009|435010|435011|435012|435013|435014|435015|435016|435017|435018|435019|435020|435021|435022|435023|435024|435025|435026|435027|435028|435029|435030|435031|435032|435033|435034|435035|435036|435037|435038|435039|435040|435041|435042|435043|435044|435045|435046|435047|435048|435049|435050|435051|435052|435053|435054|435055|435056|435057|435058|435059|435060|435061|435062|435063|435064|435065|435066|435067|435068|435069|435070|435071|435072|435073|435074|435075|435076|435077|435078|435079|435080|435081|435082|435083|435084|435085|435086|435087|435088|435089|435090|435091|435092|435093|435094|435095|435096|435097|435098|435099|435100|435101|435102|435103|435104|435105|435106|435107|435108|435109|435110|435111|435112|435113|435114|435115|435116|435117|435118|435119|435120|435121|435122|435123|435124|435125|435126|435127|435129|435130|435131|435132|435133|435134|435135|435136|435137|435138|435139|435140|435141|435142|435143|435144|435145|435146|435147|435148|435149|435150|435151|435153|435154|435155|435156|435157|435158|435159|435160|435161|435162|435163|435164|435165|435166|435167|435168|435169|435170|435171|435172|435173|435174|435175|435176|435177|435178|435179|435180|435181|435182|435183|435184|437910|438036|438244|439582|441321|441487|441488|441798|442664|442858|443157|443254|443256|443258|443261|443263|443264|443266|443267|443268|443319|443417|443419|443421|443422|443423|443424|443425|443501|443782|444046|444050|444146|444147|444148|444308|444388|444464|444538|444540|444542|444543|444666|444667|444668|444669|444670|444672|444676|444704|444706|444711|444715|444716|444717|444719|444855|445140|445144|445471|445522|445523|445529|445530|445546|445548|445549|445600|445603|445604|445726|445735|445838|445840|445849|445901|446179|446383|446384|446385|446386|446387|446389|446390|446392|446393|447263|447286|447305|447326|447349|447380|447384|447390|447397|447403|447405|447417|447483|447485|447501|447515|447517|447547|447678|447679|447706|447713|447718|447916|447922|447932|447962|447967|447969|447973|447975|447990|448005|448007|448010|448018|448021|448023|448036|448042|448049|448052|448059|448064|448066|448085|448133|448143|448157|448166|448171|448179|448185|448191|448193|448200|448296|448316|448324|448329|448330|448335|448339|448341|448348|448352|450330|450333|450352|450355|450373|450377|450380|450463|450477|450481|450485|450486|450489|450504|450511|450515|450521|450523|450591|450599|450601|450603|450605|450613|450629|450630|450645|450647|450650|450653|450656|450657|450660|450664|450681|450688|450689|450691|450700|450731|450733|450819|450855|450893|450952|450955|450975|450984|451001|451003|451014|451016|451024|451025|451026|451028|451031|451040|451044|451048|451063|451066|451070|451073|451075|451079|451084|451088|451089|451092|451096|451103|451108|451111|451114|451120|451121|451123|451128|451131|451134|451141|451142|451156|451159|451165|451172|451176|451177|451178|451179|451181|451184|451193|451199|451201|451202|451208|451211|451213|451221|451223|451228|451233|451237|451240|451250|451251|451254|451259|451260|451261|451265|451266|451268|451269|451272|451273|451276|451277|451278|451287|451291|451293|451294|451296|451297|451298|451300|451309|451310|451313|451316|451317|451318|451320|451322|451327|451328|451332|451335|451338|451339|451346|451347|451350|451351|451352|451354|451355|451356|451361|451363|451364|451365|451369|451370|451371|451372|451379|451380|451381|451383|451386|451390|451395|451398|451401|451411|451412|451414|451415|451419|451423|451425|451427|451429|451432|451433|451439|451442|451445|451447|451448|451451|451456|451460|451470|451471|451474|451475|451478|451479|451481|451482|451484|451485|451493|451495|451498|451500|451501|451503|451504|451507|451509|451510|451514|451515|451518|451522|451523|451524|451526|451532|451537|451544|451547|451550|451551|451553|451555|451560|451568|451569|451573|451574|451575|451576|451579|451582|451587|451589|451594|451596|451601|451603|451605|451609|451615|451620|451622|451624|451630|451633|451653|451658|451664|451667|451670|451673|451675|451676|451678|451696|451698|451702|451755|451764|451766|451789|451838|451841|451846|451849|451863|451864|451866|451869|451876|451929|451963|452079|452087|452097|452101|452102|452106|452108|452120|452121|452125|452143|452148|452341|452343|452351|452354|452369|452371|452376|452382|452387|452389|452394|452400|452402|452407|452411|452433|452453|452458|452469|452477|452482|452528|452548|452563|452568|452578|452612|452620|452627|452645|452649|452665|452672|452676|452681|452693|452699|452700|452710|452712|452715|452717|452719|452721|452724|452730|452731|452732|452733|453013|453015|453017|453028|453029|453039|453044|453046|453048|453052|453054|453058|453060|453064|453065|453067|453068|453074|453076|453077|453083|453091|453095|453096|453098|453104|453167|453172|453174|453293|453309|453311|453336|453346|453351|453360|453366|453369|453377|453382|453388|453393|453396|453410|453423|453432|453445|453451|453488|453528|453540|453551|453553|453590|453619|453623|453640|453653|453655|453657|453685|453690|453711|453728|453757|453786|453809|453815|453826|453828|453829|453838|453842|453847|453853|453859|453862|453875|453876|453889|453897|453899|453900|453901|453910|453914|453915|453916|453922|453924|453926|453929|453930|453939|453955|453961|453972|453981|453983|454005|454016|454019|454026|454028|454031|454036|454037|454042|454043|454045|454048|454049|454050|454052|454057|454063|454068|454069|454070|454071|454075|454081|454083|454085|454089|454090|454093|454101|454103|454105|454106|454107|454113|454114|454119|454120|454122|454123|454128|454130|454136|454145|454146|454154|454155|454157|454166|454171|454182|454183|454184|454185|454188|454198|454200|454209|454213|454218|454221|454227|454229|454232|454233|454237|454240|454243|454248|454250|454252|454254|454255|454260|454262|454265|454268|454269|454277|454278|454280|454281|454288|454292|454294|454299|454302|454304|454318|454322|454332|454346|454355|454361|454380|454381|454383|454385|454386|454387|454391|454394|454398|454403|454405|454408|454410|454417|454420|454423|454425|454427|454433|454434|454437|454438|454439|454440|454444|454446|454450|454452|454454|454458|454462|454463|454464|454468|454471|454476|454478|454480|454482|454483|454484|454485|454487|454488|454489|454491|454492|454495|454496|454506|454511|454512|454516|454518|454520|454521|454522|454523|454524|454525|454526|454527|454529|454530|454532|454537|454538|454539|454542|454543|454545|454546|454547|454551|454554|454555|454557|454560|454561|454562|454563|454565|454566|454570|454576|454578|454579|454581|454582|454583|454584|454589|454590|454592|454593|454594|454596|454604|454608|454618|454626|454629|454640|454641|454650|454662|454667|454693|454695|454702|454708|454713|454715|454725|454735|454736|454744|454747|454753|454762|454767|454801|454812|454822|454830|454851|454873|454876|454881|454883|454885|454886|454888|454889|454891|454892|454893|454900|454902|454903|454904|454905|454908|454912|454913|454914|454917|454919|454922|454925|454927|454930|454934|454941|454942|454943|454945|454949|454954|454955|454956|454959|454961|454962|454971|454975|454983|454988|454989|454991|454994|454997|455011|455031|455055|455061|455064|455065|455077|455090|455095|455097|455102|455118|455127|455128|455136|455138|455143|455145|455149|455151|455152|455161|455164|455165|455172|455182|455185|455186|455191|455204|455206|455219|455222|455224|455230|455240|455243|455254|455257|455258|455261|455263|455269|455270|455274|455275|455284|455289|455290|455292|455293|455297|455302|455306|455308|455311|455315|455318|455321|455323|455324|455326|455332|455506|455508|455516|455519|455526|455533|455543|455548|455556|455560|455577|455598|455601|455611|455614|455726|455732|455734|455768|455786|455792|455795|455805|455806|455815|455855|455859|455870|455874|455983|455993|455999|456011|456033|456044|456054|456127|456128|456132|456134|456136|456137|456147|456151|456168|456171|456205|456235|456247|456252|456264|456285|456300|456301|456313|456315|456319|456387|456389|456393|456397|456403|456405|456418|456420|456424|456442|456449|456457|456467|456475|456534|456541|456563|456566|456568|456587|456589|456599|456635|456685|456687|456689|456691|456696|456708|456710|456715|456723|456725|456752|456770|456774|456783|456794|456817|456826|456828|456852|456858|456860|456866|456946|456948|456967|456968|456976|456990|456992|457035|457037|457068|457079|457091|457099|457104|457108|457110|457112|457143|457155|457157|457179|457207|457210|457228|457242|457251|457260|457275|457285|457292|457314|457325|457334|457344|457345|457356|457373|457417|457419|457443|457452|457459|457460|457471|457480|457491|457496|457497|457505|457822|457825|457831|457842|457845|457848|457863|457881|457889|457891|457897|457905|457994|458000|458010|458031|458035|458037|458045|458048|458057|458059|458074|458092|458093|458095|458544|458559|458564|458566|458579|458584|458586|458588|458589|458590|458592|458611|458614|458620|458621|458623|458627|458628|458633|458634|458635|458657|458658|458663|458666|458670|458673|458679|458685|458691|458694|458700|458709|458711|458714|458753|458755|458989|458996|458999|459001|459004|459006|459014|459016|459019|459030|459038|459043|459053|459058|459062|459067|459068|459070|459071|459076|459077|459079|459081|459085|459088|459092|459097|459099|459100|459102|459103|459105|459110|459112|459115|459118|459136|459160|459169|459174|459346|459382|459388|459393|459403|459406|459408|459414|459420|459423|459426|459434|459449|459450|459452|459453|459459|459462|459469|459471|459473|459475|459477|459479|459495|459501|459530|459550|459573|459580|459584|459592|459605|459606|459617|459622|459642|459650|459660|459675|459694|459704|459706|459712|459720|459723|459748|459753|459757|459765|459774|459775|459789|459794|459798|459801|459804|459816|459831|459833|459834|459839|459840|459845|459853|459854|459856|459857|459859|459866|459869|459870|459871|459879|459882|459885|459886|459901|459928|459937|459940|459947|459954|459955|459956|459961|459969|459970|459973|459980|459990|459995|459998|460000|460008|460009|460013|460021|460023|460025|460029|460032|460058|460074|460222|460233|460234|460235|460237|460240|460241|460242|460243|460247|460255|460256|460268|460271|460272|460275|460278|460281|460285|460291|460293|460295|460298|460300|460304|460306|460309|460310|460313|460316|460318|460319|460333|460335|460341|460351|460353|460355|460378|460380|460470|460471|460472|460476|460481|460483|460484|460485|460489|460491|460492|460493|460494|460495|460496|460500|460502|460505|460507|460508|460513|460514|460516|460518|460520|460521|460522|460523|460525|460528|460529|460531|460533|460536|460543|460551|460562|460563|460565|460566|460567|460569|460570|460572|460573|460577|460580|460582|460586|460592|460593|460594|460595|460599|460601|460603|460604|460611|460612|460618|460621|460625|460626|460628|460630|460632|460637|460648|460652|460654|460655|460660|460665|460668|460670|460672|460676|460677|460678|460680|460681|460683|460684|460689|460690|460692|460693|460694|460696|460697|460698|460705|460707|460708|460709|460711|460712|460713|460714|460717|460718|460721|460727|460728|460730|460733|460736|460738|460745|460746|460747|460750|460752|460758|460763|460768|460770|460771|460773|460775|460777|460779|460782|460789|460791|460792|460794|460798|460799|460800|460805|460806|460813|460814|460816|460822|460829|460830|460843|460844|460845|460846|460848|460849|460859|460860|460861|460864|460880|460881|460883|460886|460891|460912|460918|460921|460925|460928|460956|460962|460970|460983|460995|461002|461005|461012|461024|461025|461028|461031|461035|461036|461037|461042|461044|461050|461051|461055|461057|461060|461064|461067|461073|461076|461087|461088|461099|461101|461102|461116|461126|461143|461144|461155|461161|461177|461206|461216|461223|461228|461239|461247|461250|461261|461263|461271|461273|461278|461279|461289|461291|461293|461296|461307|461309|461311|461313|461320|461329|461378|461380|461382|461395|461401|461405|461416|461425|461429|461437|461446|461447|461457|461461|461462|461464|461465|461469|461473|461480|461483|461488|461500|461506|461507|461515|461517|461522|461524|461525|461526|461528|461529|461530|461538|461539|461542|461543|461544|461549|461555|461557|461563|461565|461568|461578|461593|461599|461603|461612|461615|461645|461656|461659|461676|461695|461701|461721|461735|461736|461742|461783|461785|461801|461812|461832|461845|461859|461868|461872|461874|461877|461879|461882|461889|461891|461899|461905|461938|461947|461956|461964|461966|461968|461971|461974|461978|461997|461999|462013|462030|462035|462039|462040|462043|462051|462069|462070|462072|462113|462168|462185|462186|462196|462200|462201|462202|462208|462223|462228|462229|462232|462241|462244|462245|462251|462254|462261|462263|462266|462267|462277|462358|462374|462393|462416|462451|462469|462485|462490|462493|462495|462502|462524|462571|462587|462601|462607|462620|462637|462646|462653|462659|462665|462673|462676|462677|462679|462682|462688|462693|462695|462697|462698|462701|462713|462719|462722|462723|462724|462733|462740|462752|462757|462759|462764|462766|462771|462774|462777|462778|462781|462799|462805|462809|462812|462815|462820|462821|462822|462824|462827|462833|462837|462839|462843|462844|462851|462857|462858|462863|462864|462865|462866|462895|462899|462906|462916|462918|462920|462922|462933|462945|462953|462955|462958|462972|462981|462986|462996|463001|463007|463014|463024|463025|463036|463040|463045|463049|463068|463088|463093|463115|463133|463135|463137|463155|463157|463171|463190|463199|463209|463215|463231|463232|463241|463242|463258|463261|463265|463298|463317|463343|463363|463366|463398|463401|463404|463421|463422|463426|463427|463430|463454|463466|463481|463485|463487|463496|463498|463504|463505|463506|463507|463512|463513|463522|463529|463535|463547|463550|463554|463555|463560|463561|463570|463593|463601|463605|463606|463608|463620|463631|463632|463634|463636|463639|463641|463642|463643|463646|463653|463656|463663|463664|463665|463666|463671|463673|463677|463678|463681|463684|463685|463688|463691|463696|463697|463698|463702|463707|463708|463709|463711|463712|463715|463716|463718|463721|463724|463727|463737|463760|463761|463766|463769|463775|463780|463783|463790|463793|463799|463809|463815|463819|463820|463823|463825|463827|463830|463833|463834|463835|463840|463862|463865|463868|463879|463887|463891|463892|463894|463896|463901|463902|463910|463913|463914|463915|463916|463920|463923|463924|463989|463998|464199|464216|464217|464227|464241|464243|464256|464260|464261|464280|464307|464319|464322|464329|464341|464343|464360|464373|464378|464382|464392|464393|464395|464407|464411|464431|464432|464435|464436|464442|464447|464450|464451|464454|464464|464469|464472|464480|464495|464499|464514|464557|464560|464569|464570|464572|464574|464577|464579|464581|464584|464585|464595|464601|464608|464612|464615|464624|464625|464626|464628|464633|464634|464635|464643|464644|464645|464647|464653|464654|464658|464660|464662|464666|464667|464668|464669|464674|464675|464676|464681|464682|464687|464692|464698|464700|464701|464702|464703|464705|464707|464709|464711|464712|464714|464718|464727|464729|464731|464733|464735|464738|464741|464743|464747|464748|464751|464754|464756|464757|464766|464773|464774|464777|465140|465151|465153|465168|465186|465197|465200|465254|465262|465269|465270|465290|465292|465293|465311|465313|465318|465322|465325|465331|465336|465337|465340|465355|465386|465387|465413|465414|465421|465422|465423|465427|465444|465446|465450|465455|465456|465459|465461|465463|465472|465474|465479|465480|465487|465488|465490|465494|465496|465500|465503|465504|465514|465515|465520|465525|465532|465538|465543|465546|465549|465550|465554|465562|465567|465568|465573|465574|465588|465590|465592|465603|465608|465614|465615|465708|465713|465718|465719|465721|465752|465764|465809|465815|465819|465831|465832|465838|465847|465851|465852|465853|465854|465860|465864|465867|465868|465877|465884|465888|465899|465905|465908|465911|465915|465917|465922|465931|465934|465936|465939|465962|465967|465988|465992|465994|465998|466000|466015|466026|466029|466030|466031|466034|466039|466051|466054|466055|466057|466060|466066|466073|466076|466084|466089|466094|466097|466098|466102|466105|466111|466114|466118|466119|466122|466126|466131|466138|466141|466145|466146|466148|466151|466152|466159|466163|466164|466165|466166|466173|466176|466178|466184|466187|466188|466190|466198|466200|466203|466206|466207|466210|466215|466216|466217|466219|466223|466225|466226|466233|466240|466242|466247|466249|466252|466253|466256|466257|466258|466259|466261|466268|466269|466270|466272|466275|466277|466278|466279|466281|466282|466283|466285|466290|466297|466301|466303|466312|466316|466346|466348|466355|466358|466372|466377|466379|466383|466393|466394|466395|466398|466399|466404|466410|466411|466412|466413|466415|466425|466431|466438|466439|466451|466473|466482|466494|466497|466499|466506|466509|466510|466511|466521|466523|466525|466527|466528|466529|466530|466535|466537|466539|466542|466547|466551|466555|466562|466566|466568|466574|466575|466577|466579|466584|466585|466594|466601|466602|466612|466625|466627|466629|466636|466638|466639|466644|466650|466654|466664|466671|466679|466690|466697|466720|466725|466730|466732|466735|466741|466748|466754|466777|466780|466786|466787|466800|466819|466834|466839|466854|466855|466861|466863|466874|466881|466882|466883|466886|466888|466903|466904|466909|466915|466922|466932|466936|466938|466941|466952|466955|467064|467068|467075|467078|467082|467090|467095|467103|467104|467107|467111|467113|467117|467121|467129|467135|467141|467146|467147|467150|467154|467156|467158|467160|467165|467169|467172|467174|467175|467177|467180|467184|467187|467189|467195|467199|467205|467217|467221|467225|467227|467229|467231|467234|467236|467237|467247|467250|467271|467275|467276|467287|467306|467315|467316|467329|467333|467335|467336|467338|467349|467353|467356|467358|467365|467371|467377|467381|467387|467390|467392|467397|467409|467410|467413|467417|467420|467427|467428|467432|467435|467440|467442|467444|467447|467452|467453|467456|467464|467468|467472|467473|467477|467493|467495|467496|467507|467508|467509|467511|467515|467517|467519|467524|467529|467530|467531|467534|467541|467542|467545|467546|467547|467548|467550|467553|467554|467555|467557|467561|467562|467564|467566|467567|467568|467576|467584|467585|467588|467591|467592|467593|467597|467599|467601|467607|467611|467615|467619|467620|467624|467631|467636|467640|467644|467650|467655|467658|467670|467675|467676|467687|467700|467705|467711|467718|467722|467725|467735|467736|467739|467740|467744|467751|467755|467757|467772|467774|467775|467778|467782|467793|467797|467801|467805|467809|467826|467830|467831|467843|467882|467888|467894|467896|467897|467903|467910|467911|467918|467922|467927|467929|467939|467944|467950|467952|467954|467955|467960|467963|467977|467978|467982|467984|467985|467986|467989|467991|467994|468003|468004|468008|468010|468011|468012|468014|468017|468022|468023|468026|468027|468030|468033|468034|468035|468036|468038|468039|468043|468044|468045|468047|468048|468052|468056|468058|468060|468061|468062|468065|468069|468075|468080|468087|468090|468091|468092|468098|468105|468109|468115|468119|468126|468128|468129|468136|468138|468140|468143|468145|468147|468171|468198|468228|468232|468233|468236|468240|468243|468246|468249|468250|468252|468258|468259|468267|468268|468273|468276|468280|468282|468284|468289|468298|468307|468309|468311|468312|468314|468316|468319|468321|468329|468331|468335|468336|468338|468339|468342|468345|468346|468347|468348|468350|468354|468364|468365|468366|468367|468371|468373|468376|468377|468379|468381|468387|468389|468390|468391|468392|468393|468398|468400|468407|468410|468412|468413|468415|468425|468428|468429|468440|468443|468445|468448|468453|468458|468459|468462|468466|468473|468485|468486|468489|468490|468491|468498|468499|468505|468506|468521|468526|468540|468543|468555|468561|468568|468579|468587|468589|468599|468622|468627|468631|468636|468653|468655|468662|468668|468676|468686|468687|468695|468700|468705|468725|468734|468736|468737|468738|468750|468759|468766|468835|468855|468856|468861|468863|468877|468906|468913|468941|468942|468948|468959|468966|468977|468982|468983|468989|468990|468994|468998|469024|469037|469056|469069|469071|469074|469083|469107|469108|469110|469111|469115|469117|469118|469121|469124|469127|469129|469132|469134|469136|469137|469147|469155|469156|469158|469160|469167|469170|469177|469178|469180|469181|469188|469191|469192|469194|469201|469205|469209|469213|469214|469218|469220|469233|469236|469248|469253|469257|469258|469261|469266|469268|469275|469281|469290|469292|469294|469308|469312|469333|469340|469350|469366|469376|469381|469386|469389|469393|469396|469398|469517|469522|469529|469537|469545|469551|469570|469571|469573|469577|469580|469581|469585|469589|469594|469597|469598|469606|469607|469623|469630|469634|469635|469640|469649|469655|469659|469660|469668|469671|469672|469682|469683|469702|469703|469765|469788|469789|469796|469798|469805|469808|469810|469811|469814|469967|469980|469982|470000|470008|470009|470013|470017|470023|470027|470028|470033|470038|470042|470045|470047|470048|470049|470051|470053|470055|470065|470070|470079|470082|470087|470088|470093|470095|470100|470109|470111|470117|470124|470129|470130|470133|470140|470143|470147|470155|470162|470177|470184|470194|470199|470207|470210|470220|470236|470239|470242|470273|470279|470281|470286|470317|470320|470327|470386|470387|470399|470402|470405|470415|470419|470421|470426|470429|470491|470618|470634|470636|470651|470659|470661|470668|470670|470677|470694|470713|470750|470917|470938|470951|470957|470973|470983|470990|470993|471023|471028|471053|471139|471143|471185|471216|471222|471242|471383|471384|471389|471403|471405|471413|471414|471416|471419|471429|471433|471441|471476|471488|471493|471801|471821|471829|471842|471845|471859|471860|471864|471874|471879|471886|471890|471893|471895|471902|471906|472262|472263|472264|472265|472266|472267|472268|472269|472270|472271|472272|472273|472274|472275|472276|472277|472278|472279|472280|472281|472282|472283|472284|472285|472286|472287|472288|472289|472290|472291|472292|472293|472294|472295|472296|472297|472298|472299|472300|472301|472302|472303|472304|472305|472306|472307|472308|472309|472310|472311|472312|472313|472314|472315|472316|472317|472318|472319|472320|472321|472322|472323|472324|472325|472326|472327|472328|472329|472330|472331|472332|472333|472334|472335|472336|472337|472338|472339|472340|472341|472342|472343|472344|472345|472346|472347|472348|472349|472350|472351|472352|472353|472354|472355|472356|472357|472358|472359|472360|472361|472362|472363|472364|472365|472366|472367|472368|472369|472370|472371|472372|472373|472374|472375|472376|472377|472378|472379|472380|472381|472382|472383|472384|472385|472386|472387|472388|472389|472390|472391|472392|472393|472394|472395|472396|472397|472398|472399|472400|472401|472402|472403|472404|472405|472406|472407|472408|472409|472410|472411|472412|472413|472414|472415|472416|472417|472418|472419|472420|472421|472422|472423|472424|472425|472426|472427|472428|472429|472430|472431|472432|472433|472434|472435|472436|472437|472438|472439|472440|472441|472442|472443|472444|472445|472446|472447|472448|472449|472450|472451|472452|472453|472454|472455|472456|472457|472458|472459|472460|472461|472462|472463|472464|472465|472466|472467|472468|472469|472470|472471|472472|472473|472474|472475|472476|472477|472478|472479|472480|472481|472482|472483|472484|472485|472486|472487|472488|472489|472490|472491|472492|472493|472494|472495|472496|472497|472498|472499|472500|472501|472502|472503|472504|472505|472506|472507|472508|472509|472510|472511|472512|472513|472514|472515|472516|472517|472518|472519|472520|472521|472522|472523|472524|472525|472526|472527|472528|472529|472530|472531|472532|472533|472534|472535|472536|472537|472538|472539|472540|472541|472542|472543|472544|472545|472546|472547|472548|472549|472550|472551|472552|472554|472555|472556|472557|472558|472559|472560|472561|472562|472563|472564|472565|472566|472567|472568|472569|472570|472571|472572|472573|472574|472575|472576|472577|472578|472579|472580|472581|472582|472583|472584|472585|472586|472587|472588|472589|472590|472591|472592|472593|472594|472595|472596|472597|472598|472599|472600|472601|472602|472603|472604|472605|472606|472607|472608|472609|472610|472611|472612|472613|472614|472615|472616|472617|472618|472619|472620|472621|472622|472623|472624|472625|472626|472627|472628|472629|472630|472631|472632|472633|472634|472635|472636|472637|472638|472639|472640|472641|472642|472643|472644|472645|472646|472647|472648|472649|472650|472651|472652|472653|472654|472655|472656|472657|472658|472659|472660|472661|472662|472663|472664|472665|472666|472667|472668|472669|472670|472671|472672|472673|472674|472675|472676|472677|472678|472679|472680|472681|472682|472683|472684|472685|472686|472687|472688|472689|472690|472691|472692|472693|472694|472695|472696|472697|472698|472699|472700|472701|472702|472703|472704|472705|472706|472707|472708|472709|472710|472711|472712|472713|472714|472715|472716|472717|472718|472719|472720|472721|472722|472723|472724|472725|472726|472727|472728|472729|472730|472731|472732|472733|472734|472735|472736|472737|472738|472739|472740|472741|472742|472743|472744|472746|472747|472748|472749|472750|472751|472752|472753|472754|472755|472756|472757|472758|472759|472760|472761|472762|472763|472764|472765|472766|472767|472768|472769|472770|472771|472772|472773|472774|472775|472776|472777|472778|472779|472780|472781|472782|472783|472784|472785|472786|472787|472788|472789|472790|472791|472792|472793|472794|472795|472796|472797|472798|472799|472800|472801|472802|472803|472804|472805|472806|472807|472808|472809|472810|472811|472812|472813|472814|472815|472816|472817|472818|472819|472820|472821|472822|472823|472824|472825|472826|472827|472828|472829|472830|472831|472832|472833|472834|472835|472836|472837|472838|472839|472840|472841|472842|472843|472844|472845|472846|472847|472848|472849|472850|472851|472852|472853|472854|472855|472856|472857|472858|472859|472860|472861|472862|472863|472864|472865|472866|472867|472868|472869|472870|472871|472872|472873|472874|472875|472876|472877|472878|472879|472880|472881|472882|472883|472884|472885|472886|472887|472888|472889|472890|472891|472892|472893|472894|472895|472896|472897|472898|472899|472900|472901|472902|472903|472904|472905|472906|472907|472908|472909|472910|472911|472912|472913|472914|472915|472916|472917|472918|472919|472920|472921|472922|472923|472924|472925|472926|472927|472928|472929|472930|472931|472932|472933|472934|472935|472936|472937|472938|472939|472940|472941|472942|472943|472944|472945|472946|472947|472948|472949|472950|472951|472952|472953|472954|472955|472956|472957|472958|472959|472960|472961|472962|472963|472964|472965|472966|472967|472968|472969|472970|472971|472972|472973|472974|472975|472976|472977|472978|472979|472980|472981|472982|472983|472984|472985|472986|472987|472988|472989|472990|472991|472992|472993|472994|472995|472996|472997|472998|472999|473000|473001|473002|473003|473004|473005|473006|473007|473008|473009|473010|473011|473012|473013|473014|473015|473016|473017|473018|473019|473020|473021|473022|473023|473024|473025|473026|473027|473028|473029|473030|473031|473032|473033|473034|473035|473036|473037|473038|473039|473040|473041|473042|473043|473044|473045|473046|473047|473048|473049|473050|473051|473052|473053|473054|473055|473056|473057|473058|473059|473060|473061|473062|473063|473064|473065|473066|473067|473068|473069|473070|473071|473072|473073|473074|473075|473076|473077|473078|473079|473080|473081|473082|473083|473084|473085|473086|473087|473088|473089|473090|473091|473092|473093|473094|473095|473096|473097|473098|473099|473100|473101|473102|473103|473104|473105|473106|473107|473108|473109|473110|473111|473112|473113|473114|473115|473116|473117|473118|473119|473120|473121|473122|473123|473124|473125|473126|473127|473128|473129|473130|473131|473132|473133|473134|473135|473136|473137|473138|473139|473140|473141|473142|473143|473144|473145|473146|473147|473148|473149|473150|473151|473152|473153|473154|473155|473156|473157|473158|473159|473160|473161|473162|473163|473164|473165|473166|473167|473168|473169|473170|473171|473172|473173|473174|473175|473176|473177|473178|473179|473180|473181|473182|473183|473184|473185|473186|473187|473188|473189|473190|473191|473192|473193|473194|473195|473196|473197|473198|473199|473200|473201|473202|473203|473204|473205|473206|473207|473208|473209|473210|473211|473212|473213|473214|473215|473216|473217|473218|473219|473220|473221|473222|473223|473224|473225|473226|473227|473228|473229|473230|473231|473232|473233|473234|473235|473236|473237|473238|473239|473240|473241|473242|473243|473244|473245|473246|473247|473248|473249|473250|473251|473252|473253|473254|473255|473256|473257|473258|473259|473260|473261|473262|473263|473264|473265|473266|473267|473268|473269|473270|473271|473272|473273|473274|473275|473276|473277|473278|473279|473280|473281|473282|473283|473284|473285|473286|473287|473288|473289|473290|473291|473292|473293|473294|473295|473296|473297|473298|473299|473300|473301|473302|473303|473304|473305|473306|473307|473308|473309|473310|473311|473312|473313|473314|473315|473316|473317|473318|473319|473320|473321|473322|473323|473324|473325|473326|473327|473328|473329|473330|473331|473332|473333|473334|473335|473336|473337|473338|473339|473340|473341|473342|473343|473344|473345|473346|473347|473348|473349|473350|473351|473352|473353|473354|473355|473356|473357|473358|473359|473360|473361|473362|473363|473364|473365|473366|473367|473368|473369|473370|473371|473372|473373|473374|473375|473376|473377|473378|473379|473380|473381|473382|473383|473384|473385|473386|473387|473388|473389|473390|473391|473392|473393|473394|473395|473396|473397|473398|473399|473400|473401|473402|473403|473404|473405|473406|473407|473408|473409|473410|473411|473412|473413|473414|473415|473416|473417|473418|473419|473420|473421|473422|473423|473424|473425|473426|473427|473428|473429|473430|473431|473432|473433|473434|473435|473436|473437|473438|473439|473440|473441|473442|473443|473444|473445|473446|473447|473448|473449|473450|473451|473452|473453|473454|473455|473456|473457|473458|473459|473460|473461|473462|473463|473464|473465|473466|473467|473468|473469|473470|473471|473472|473473|473474|473475|473476|473477|473478|473479|473480|473481|473482|473483|473484|473485|473486|473487|473488|473489|473490|473491|473492|473493|473494|473495|473496|473497|473498|473499|473500|473501|473502|473503|473504|473505|473506|473507|473508|473509|473510|473511|473512|473513|473514|473515|473516|473517|473518|473519|473520|473521|473522|473523|473524|473525|473526|473527|473528|473529|473530|473531|473532|473533|473534|473535|473536|473537|473538|473539|473540|473541|473542|473543|473544|473545|473546|473547|473548|473549|473550|473551|473552|473553|473554|473555|473556|473557|473558|473559|473560|473561|473562|473563|473564|473565|473566|473567|473568|473569|473570|473571|473572|473573|473574|473575|473576|473577|473578|473579|473580|473581|473582|473583|473584|473585|473586|473587|473588|473589|473590|473591|473592|473593|473594|473595|473596|473597|473598|473599|473600|473601|473602|473603|473604|473605|473606|473607|473608|473609|473610|473611|473612|473613|473614|473615|473616|473617|473618|473619|473620|473621|473622|473623|473624|473625|473626|473627|473628|473629|473630|473631|473632|473633|473634|473635|473636|473637|473638|473639|473640|473641|473642|473643|473644|473645|473646|473647|473648|473649|473650|473651|473652|473653|473654|473655|473656|473657|473658|473659|473660|473661|473662|473663|473664|473665|473666|473667|473668|473669|473670|473671|473672|473673|473674|473675|473676|473677|473678|473679|473680|473681|473682|473683|473684|473685|473686|473687|473688|473689|473690|473691|473692|473693|473694|473695|473696|473697|473698|473699|473700|473701|473702|473703|473704|473705|473706|473707|473708|473709|473710|473711|473712|473713|473714|473715|473716|473717|473718|473719|473720|473721|473722|473723|473724|473725|473726|473727|473728|473729|473730|473731|473732|473733|473734|473735|473736|473737|473738|473739|473740|473741|473742|473743|473744|473745|473746|473747|473748|473749|473750|473751|473752|473753|473754|473755|473756|473757|473758|473759|473760|473761|473762|473763|473764|473765|473766|473767|473768|473769|473770|473771|473772|473773|473774|473775|473776|473777|473778|473779|473780|473781|473782|473783|473784|473785|473786|473787|473788|473789|473790|473791|473792|473793|473794|473795|473796|473797|473798|473799|473800|473801|473802|473803|473804|473805|473806|473807|473808|473809|473810|473811|473812|473813|473814|473815|473816|473817|473818|473819|473820|473821|473822|473823|473824|473825|473826|473827|473828|473829|473830|473831|473832|473833|473834|473835|473836|473837|473838|473839|473840|473841|473842|473843|473844|473845|473846|473847|473848|473849|473850|473851|473852|473853|473854|473855|473856|473857|473858|473859|473860|473861|473862|473863|473864|473865|473866|473867|473868|473869|473870|473871|473872|473873|473874|473875|473876|473877|473878|473879|473880|473881|473882|473883|473884|473885|473886|473887|473888|473889|473890|473891|473892|473893|473894|473895|473896|473897|473898|473899|473900|473901|473902|473903|473904|473905|473906|473907|473908|473909|473910|473911|473912|473913|473914|473915|473916|473917|473918|473919|473920|473921|473922|473923|473924|473925|473926|473927|473928|473929|473930|473931|473932|473933|473934|473935|473936|473937|473938|473939|473940|473941|473942|473943|473944|473945|473946|473947|473948|473949|473950|473951|473952|473953|473954|473955|473956|473957|473958|473959|473960|473961|473962|473963|473964|473965|473966|473967|473968|473969|473970|473971|473972|473973|473974|473975|473976|473977|473978|473979|473980|473981|473982|473983|473984|473985|473986|473987|473988|473989|473990|473991|473992|473993|473994|473995|473996|473997|473998|473999|474000|474001|474002|474003|474004|474005|474006|474007|474008|474009|474010|474011|474012|474013|474014|474015|474016|474017|474018|474019|474020|474021|474022|474023|474024|474025|474026|474027|474028|474029|474030|474031|474032|474033|474034|474035|474036|474037|474038|474039|474040|474041|474042|474043|474044|474045|474046|474047|474048|474049|474050|474051|474052|474053|474054|474055|474056|474057|474058|474059|474060|474061|474062|474063|474064|474065|474066|474067|474068|474069|474070|474071|474072|474073|474074|474075|474076|474077|474078|474079|474080|474081|474082|474083|474084|474085|474086|474087|474088|474089|474090|474091|474092|474093|474094|474095|474096|474097|474098|474099|474100|474101|474102|474103|474104|474105|474106|474107|474108|474109|474110|474111|474112|474113|474114|474115|474116|474117|474118|474119|474120|474121|474122|474123|474124|474125|474126|474127|474128|474129|474130|474131|474132|474133|474134|474135|474136|474137|474138|474139|474140|474141|474142|474143|474144|474145|474146|474147|474148|474149|474150|474151|474152|474153|474154|474155|474156|474157|474158|474159|474160|474161|474162|474163|474164|474165|474166|474167|474168|474169|474170|474171|474172|474173|474174|474175|474176|474177|474179|474180|474181|474182|474183|474184|474185|474186|474187|474188|474189|474190|474191|474192|474193|474194|474195|474196|474197|474198|474199|474200|474201|474202|474203|474204|474205|474206|474207|474208|474209|474210|474211|474212|474213|474214|474215|474216|474217|474218|474219|474220|474221|474222|474223|474224|474225|474226|474227|474228|474229|474230|474231|474232|474233|474234|474235|474236|474237|474238|474239|474240|474241|474242|474243|474244|474245|474246|474247|474248|474249|474250|474251|474252|474253|474254|474255|474256|474257|474258|474259|474260|474261|474262|474263|474264|474265|474266|474267|474268|474269|474270|474271|474272|474273|474274|474275|474276|474277|474278|474279|474280|474281|474282|474283|474284|474285|474286|474287|474288|474289|474290|474291|474292|474293|474294|474295|474296|474297|474298|474299|474300|474301|474302|474303|474304|474305|474306|474307|474308|474309|474310|474311|474312|474313|474314|474315|474316|474317|474318|474319|474320|474321|474322|474323|474324|474325|474326|474327|474328|474329|474330|474331|474332|474333|474334|474335|474336|474337|474338|474339|474340|474341|474342|474343|474344|474345|474346|474347|474348|474349|474350|474351|474352|474353|474354|474355|474356|474357|474358|474359|474360|474361|474362|474363|474364|474365|474366|474367|474368|474369|474370|474371|474372|474373|474374|474375|474376|474377|474378|474379|474380|474381|474382|474383|474384|474385|474386|474387|474388|474389|474390|474391|474392|474393|474394|474395|474396|474397|474398|474399|474400|474401|474402|474403|474404|474405|474406|474407|474408|474409|474410|474411|474412|474413|474414|474415|474416|474417|474418|474419|474420|474421|474422|474423|474424|474425|474426|474427|474428|474429|474430|474431|474432|474433|474434|474435|474436|474437|474438|474439|474440|474441|474442|474443|474444|474445|474446|474447|474448|474449|474450|474451|474452|474453|474454|474455|474456|474457|474458|474459|474460|474461|474462|474463|474464|474465|474466|474467|474468|474469|474470|474471|474472|474473|474474|474475|474476|474477|474478|474479|474480|474481|474482|474483|474484|474485|474486|474487|474488|474489|474490|474491|474492|474493|474494|474495|474496|474497|474498|474499|474500|474501|474502|474503|474504|474505|474506|474507|474508|474509|474510|474511|474512|474513|474514|474515|474516|474517|474518|474519|474520|474521|474522|474523|474524|474525|474526|474527|474528|474529|474530|474531|474532|474533|474534|474535|474536|474537|474538|474539|474540|474541|474542|474543|474544|474545|474546|474547|474548|474549|474550|474551|474552|474553|474554|474555|474556|474557|474558|474559|474560|474561|474562|474563|474564|474565|474566|474567|474568|474569|474570|474571|474572|474573|474574|474575|474576|474577|474578|474579|474580|474581|474582|474583|474584|474585|474586|474587|474588|474589|474590|474591|474592|474593|474594|474595|474596|474597|474598|474599|474600|474601|474602|474603|474604|474605|474606|474607|474608|474609|474610|474611|474612|474613|474614|474615|474616|474617|474618|474619|474620|474621|474622|474623|474624|474625|474626|474627|474628|474629|474630|474631|474632|474633|474634|474635|474636|474637|474638|474639|474640|474641|474642|474643|474644|474645|474646|474647|474648|474649|474650|474651|474652|474653|474654|474655|474656|474657|474658|474659|474660|474661|474662|474663|474664|474665|474666|474667|474668|474669|474670|474671|474672|474673|474674|474675|474676|474677|474678|474679|474680|474681|474682|474683|474684|474685|474686|474687|474688|474689|474690|474691|474692|474693|474694|474695|474696|474697|474698|474699|474700|474701|474702|474703|474704|474705|474706|474707|474708|474709|474710|474711|474712|474713|474714|474715|474716|474717|474718|474719|474720|474721|474722|474723|474724|474725|474726|474727|474728|474729|474730|474731|474732|474733|474734|474735|474736|474737|474738|474739|474740|474741|474742|474743|474744|474745|474746|474747|474748|474749|474750|474751|474752|474753|474754|474755|474756|474757|474758|474759|474760|474761|474762|474763|474764|474765|474766|474767|474768|474769|474770|474771|474772|474773|474774|474775|474776|474777|474778|474779|474780|474781|474782|474783|474784|474785|474786|474787|474788|474789|474790|474791|474792|474793|474794|474795|474796|474797|474798|474799|474800|474801|474802|474803|474804|474805|474806|474807|474808|474809|474810|474811|474812|474813|474814|474815|474816|474817|474818|474819|474820|474821|474822|474823|474824|474825|474826|474827|474828|474829|474830|474831|474832|474833|474834|474835|474836|474837|474838|474839|474840|474841|474842|474843|474844|474845|474846|474847|474848|474849|474850|474851|474852|474853|474854|474855|474856|474857|474858|474859|474860|474861|474862|474863|474864|474865|474866|474867|474868|474869|474870|474871|474872|474873|474874|474875|474876|474877|474878|474879|474880|474881|474882|474883|474884|474885|474886|474887|474888|474889|474890|474891|474892|474893|474894|474895|474896|474897|474898|474899|474900|474901|474902|474903|474904|474905|474906|474907|474908|474909|474910|474911|474912|474913|474914|474915|474916|474917|474918|474919|474920|474921|474922|474923|474924|474925|474926|474927|474928|474929|474930|474931|474932|474933|474934|474935|474936|474937|474938|474939|474940|474941|474942|474943|474944|474945|474946|474947|474948|474949|474950|474951|474952|474953|474954|474955|474956|474957|474958|474959|474960|474961|474962|474963|474964|474965|474966|474967|474968|474969|474970|474971|474972|474973|474974|474975|474976|474977|474978|474979|474980|474981|474982|474983|474984|474985|474986|474987|474988|474989|474990|474991|474992|474993|474994|474995|474996|474997|474998|474999|475000|475001|475002|475003|475004|475005|475006|475007|475008|475009|475010|475011|475012|475013|475014|475015|475016|475017|475018|475019|475020|475021|475022|475023|475024|475025|475026|475027|475028|475029|475030|475031|475032|475033|475034|475035|475036|475037|475038|475039|475040|475041|475042|475043|475044|475045|475046|475047|475048|475049|475050|475051|475052|475053|475054|475055|475056|475057|475058|475059|475060|475061|475062|475063|475064|475065|475066|475067|475068|475069|475070|475071|475072|475073|475074|475075|475076|475077|475078|475079|475080|475081|475082|475083|475084|475085|475086|475087|475088|475089|475090|475091|475092|475093|475094|475095|475096|475097|475098|475099|475100|475101|475102|475103|475104|475105|475106|475107|475108|475109|475110|475111|475112|475113|475114|475115|475116|475117|475118|475119|475120|475121|475122|475123|475124|475125|475126|475127|475128|475129|475130|475131|475132|475133|475134|475135|475136|475137|475138|475139|475140|475141|475142|475143|475144|475145|475146|475147|475148|475149|475150|475151|475152|475153|475154|475155|475156|475157|475158|475159|475160|475161|475162|475163|475164|475165|475166|475167|475168|475169|475170|475171|475172|475173|475174|475175|475176|475177|475178|475179|475180|475181|475182|475183|475184|475185|475186|475187|475188|475189|475190|475191|475192|475193|475194|475195|475196|475197|475198|475199|475200|475201|475202|475203|475204|475205|475206|475207|475208|475209|475210|475211|475212|475213|475214|475215|475216|475217|475218|475219|475220|475221|475222|475223|475224|475225|475226|475227|475228|475229|475230|475231|475232|475233|475234|475235|475236|475237|475238|475239|475240|475241|475242|475243|475244|475245|475246|475247|475248|475249|475250|475251|475252|475253|475254|475255|475256|475257|475258|475259|475260|475261|475262|475263|475264|475265|475266|475267|475268|475269|475270|475271|475272|475273|475274|475275|475276|475277|475278|475279|475280|475281|475282|475283|475284|475285|475286|475287|475288|475289|475290|475291|475292|475293|475294|475295|475296|475297|475298|475299|475300|475301|475302|475303|475304|475305|475306|475307|475308|475309|475310|475311|475312|475313|475314|475315|475316|475317|475318|475319|475320|475321|475322|475323|475324|475325|475326|475327|475328|475329|475330|475331|475332|475333|475334|475335|475336|475337|475338|475339|475340|475341|475342|475343|475344|475345|475346|475347|475348|475349|475350|475351|475352|475353|475354|475355|475356|475357|475358|475359|475360|475361|475362|475363|475364|475365|475366|475367|475368|475369|475370|475371|475372|475373|475374|475375|475376|475377|475378|475379|475380|475381|475382|475383|475384|475385|475386|475387|475388|475389|475390|475391|475392|475393|475394|475395|475396|475397|475398|475399|475400|475401|475402|475403|475404|475405|475406|475407|475408|475409|475410|475411|475412|475413|475414|475415|475416|475417|475418|475419|475420|475421|475422|475423|475424|475425|475426|475427|475428|475429|475430|475431|475432|475433|475434|475435|475436|475437|475438|475439|475440|475441|475442|475443|475444|475445|475446|475447|475448|475449|475450|475451|475452|475453|475454|475455|475456|475457|475458|475459|475460|475461|475462|475463|475464|475465|475466|475467|475468|475469|475470|475471|475472|475473|475474|475475|475476|475477|475478|475479|475480|475481|475482|475483|475484|475485|475486|475487|475488|475489|475490|475491|475492|475493|475494|475495|475496|475497|475498|475499|475500|475501|475502|475503|475504|475505|475506|475507|475508|475509|475510|475511|475512|475513|475514|475515|475516|475517|475518|475519|475520|475521|475522|475523|475524|475525|475526|475527|475528|475529|475530|475531|475532|475533|475534|475535|475536|475537|475538|475539|475540|475541|475542|475543|475544|475545|475546|475547|475548|475549|475550|475551|475552|475553|475554|475555|475556|475557|475558|475559|475560|475561|475562|475563|475564|475565|475566|475567|475568|475569|475570|475571|475572|475573|475574|475575|475576|475577|475578|475579|475580|475581|475582|475583|475584|475585|475586|475587|475588|475589|475590|475591|475592|475593|475594|475595|475596|475597|475598|475599|475600|475601|475602|475603|475604|475605|475606|475607|475608|475609|475610|475611|475612|475613|475614|475615|475616|475617|475618|475619|475620|475621|475622|475623|475624|475625|475626|475627|475628|475629|475630|475631|475632|475633|475634|475635|475636|475637|475638|475639|475640|475641|475642|475643|475644|475645|475646|475647|475648|475649|475650|475651|475652|475653|475654|475655|475656|475657|475658|475659|475660|475661|475662|475663|475664|475665|475666|475667|475668|475669|475670|475671|475672|475673|475674|475675|475676|475677|475678|475679|475680|475681|475682|475683|475684|475685|475686|475687|475688|475689|475690|475691|475692|475693|475694|475695|475696|475697|475698|475699|475700|475701|475702|475703|475704|475705|475706|475707|475708|475709|475710|475711|475712|475713|475714|475715|475716|475717|475718|475719|475720|475721|475722|475723|475724|475725|475726|475727|475728|475729|475730|475731|475732|475733|475734|475735|475736|475737|475738|475739|475740|475741|475742|475743|475744|475745|475746|475747|475748|475749|475750|475751|475752|475753|475754|475755|475756|475757|475758|475759|475760|475761|475762|475763|475764|475765|475766|475767|475768|475769|475770|475771|475772|475773|475774|475775|475776|475777|475778|475779|475780|475781|475782|475783|475784|475785|475786|475787|475788|475789|475790|475791|475792|475793|475794|475795|475796|475797|475798|475799|475800|475801|475802|475803|475804|475805|475806|475807|475808|475809|475810|475811|475812|475813|475814|475815|475816|475817|475818|475819|475820|475821|475822|475823|475824|475825|475826|475827|475828|475829|475830|475831|475832|475833|475834|475835|475836|475837|475839|475840|475841|475842|475843|475844|475845|475846|475847|475848|475849|475850|475851|475852|475853|475854|475855|475856|475857|475858|475859|475860|475861|475862|475863|475864|475865|475866|475867|475868|475869|475870|475871|475872|475873|475874|475875|475876|475877|475878|475879|475880|475881|475882|475883|475884|475885|475886|475887|475888|475889|475890|475891|475892|475893|475894|475895|475896|475897|475898|475899|475900|475901|475902|475903|475904|475905|475906|475907|475908|475909|475910|475911|475912|475913|475914|475915|475916|475917|475918|475919|475920|475921|475922|475923|475924|475925|475926|475927|475928|475929|475930|475931|475932|475933|475934|475935|475936|475937|475938|475939|475940|475941|475942|475943|475944|475945|475946|475947|475948|475949|475950|475951|475952|475953|475954|475955|475956|475957|475958|475959|475960|475961|475962|475963|475964|475965|475966|475967|475968|475969|475970|475971|475972|475973|475974|475975|475976|475977|475978|475979|475980|475981|475982|475983|475984|475985|475986|475987|475988|475989|475990|475991|475992|475993|475994|475995|475996|475997|475998|475999|476000|476001|476002|476003|476004|476005|476006|476007|476008|476009|476010|476011|476012|476013|476014|476015|476016|476017|476018|476019|476020|476021|476022|476023|476024|476025|476026|476027|476028|476029|476030|476031|476032|476033|476034|476035|476036|476037|476038|476039|476040|476041|476042|476043|476044|476045|476046|476047|476048|476049|476050|476051|476052|476053|476054|476055|476056|476057|476058|476059|476060|476061|476062|476063|476064|476065|476066|476067|476068|476069|476070|476071|476072|476073|476074|476075|476076|476077|476078|476079|476080|476081|476082|476083|476084|476085|476086|476087|476088|476089|476090|476091|476092|476093|476094|476095|476096|476097|476098|476099|476100|476101|476102|476103|476104|476105|476106|476107|476108|476109|476110|476111|476112|476113|476114|476115|476116|476117|476118|476119|476120|476121|476122|476123|476124|476125|476126|476127|476128|476129|476130|476131|476132|476133|476134|476135|476136|476137|476138|476139|476140|476141|476142|476143|476144|476145|476146|476147|476148|476149|476150|476151|476152|476153|476154|476155|476156|476157|476158|476159|476160|476161|476162|476163|476164|476165|476166|476167|476168|476169|476170|476171|476172|476173|476174|476175|476176|476177|476178|476179|476180|476181|476182|476183|476184|476185|476186|476187|476188|476189|476190|476191|476192|476193|476194|476195|476196|476197|476198|476199|476200|476201|476202|476203|476204|476205|476206|476207|476208|476209|476210|476211|476212|476213|476214|476215|476216|476217|476218|476219|476220|476221|476222|476223|476224|476225|476226|476227|476228|476229|476230|476231|476232|476233|476234|476235|476236|476237|476238|476239|476240|476241|476242|476243|476244|476245|476246|476247|476248|476249|476250|476251|476252|476253|476254|476255|476256|476257|476258|476259|476260|476261|476262|476263|476264|476265|476266|476267|476268|476269|476270|476271|476272|476273|476274|476275|476276|476277|476278|476279|476280|476281|476282|476283|476284|476285|476286|476287|476288|476289|476290|476291|476292|476293|476294|476295|476296|476297|476298|476299|476300|476301|476302|476303|476304|476305|476306|476307|476308|476309|476310|476311|476312|476313|476314|476315|476316|476317|476318|476319|476320|476321|476322|476323|476324|476325|476326|476327|476328|476329|476330|476331|476332|476333|476334|476335|476336|476337|476338|476339|476340|476341|476342|476343|476344|476345|476346|476347|476348|476349|476350|476351|476352|476353|476354|476355|476356|476357|476358|476359|476360|476361|476362|476363|476364|476365|476366|476367|476368|476369|476370|476371|476372|476373|476374|476375|476376|476377|476378|476379|476380|476381|476382|476383|476384|476385|476386|476387|476388|476389|476390|476391|476392|476393|476394|476395|476396|476397|476398|476399|476400|476401|476402|476403|476404|476405|476406|476407|476408|476409|476410|476411|476412|476413|476414|476415|476416|476417|476418|476419|476420|476421|476422|476423|476424|476425|476426|476427|476428|476429|476430|476431|476432|476433|476434|476435|476436|476437|476438|476439|476440|476441|476442|476443|476444|476445|476446|476447|476448|476449|476450|476451|476452|476453|476454|476455|476456|476457|476458|476459|476460|476461|476462|476463|476464|476465|476466|476467|476468|476469|476470|476471|476472|476473|476474|476475|476476|476477|476478|476479|476480|476481|476482|476483|476484|476485|476486|476487|476488|476489|476490|476491|476492|476493|476494|476495|476496|476497|476498|476499|476500|476501|476502|476503|476504|476505|476506|476507|476508|476509|476510|476511|476512|476513|476514|476515|476516|476517|476518|476519|476520|476521|476522|476523|476524|476525|476526|476527|476528|476529|476530|476531|476532|476533|476534|476535|476536|476537|476538|476539|476540|476541|476542|476543|476544|476545|476546|476547|476548|476549|476550|476551|476552|476553|476554|476555|476556|476557|476558|476559|476560|476561|476562|476563|476564|476565|476566|476567|476568|476569|476570|476571|476572|476573|476574|476575|476576|476577|476578|476579|476580|476581|476582|476583|476584|476585|476586|476587|476588|476589|476590|476591|476592|476593|476594|476595|476596|476597|476598|476599|476600|476601|476602|476603|476604|476605|476606|476607|476608|476609|476610|476611|476612|476613|476614|476615|476616|476617|476618|476619|476620|476621|476622|476623|476624|476625|476626|476627|476628|476629|476630|476631|476632|476633|476634|476635|476636|476637|476638|476639|476640|476641|476642|476643|476644|476645|476646|476647|476648|476649|476650|476651|476652|476653|476654|476655|476656|476657|476658|476659|476660|476661|476662|476663|476664|476665|476666|476667|476668|476669|476670|476671|476672|476673|476674|476675|476676|476677|476678|476679|476680|476681|476682|476683|476684|476685|476686|476687|476688|476689|476690|476691|476692|476693|476694|476695|476696|476697|476698|476699|476700|476701|476702|476703|476704|476705|476706|476707|476708|476709|476710|476711|476712|476713|476714|476715|476716|476717|476718|476719|476720|476721|476722|476723|476724|476725|476726|476727|476728|476730|476731|476732|476733|476734|476735|476736|476737|476738|476739|476740|476741|476742|476743|476744|476745|476746|476747|476748|476749|476750|476751|476752|476753|476754|476755|476756|476757|476758|476759|476760|476761|476762|476763|476764|476765|476766|476767|476768|476769|476770|476771|476772|476773|476774|476775|476776|476777|476778|476779|476780|476781|476782|476783|476784|476785|476786|476787|476788|476789|476790|476791|476792|476793|476794|476795|476796|476797|476798|476799|476800|476801|476802|476803|476805|476806|476807|476808|476809|476810|476811|476812|476813|476814|476815|476816|476817|476818|476819|476820|476821|476822|476823|476824|476825|476826|476827|476828|476829|476830|476831|476832|476833|476834|476835|476836|476837|476838|476839|476840|476841|476842|476843|476844|476845|476846|476847|476848|476849|476850|476851|476852|476853|476854|476855|476856|476857|476858|476859|476860|476861|476862|476863|476864|476865|476866|476867|476868|476869|476870|476871|476872|476873|476874|476875|476876|476877|476878|476879|476880|476881|476882|476883|476884|476885|476886|476887|476888|476889|476890|476891|476892|476893|476894|476895|476896|476897|476898|476899|476900|476901|476902|476903|476904|476905|476906|476907|476908|476909|476910|476911|476912|476913|476914|476915|476916|476917|476918|476919|476920|476921|476922|476923|476924|476925|476926|476927|476928|476929|476930|476931|476932|476933|476934|476935|476936|476937|476938|476939|476940|476941|476942|476943|476944|476945|476946|476947|476948|476949|476950|476951|476952|476953|476954|476955|476956|476957|476958|476959|476960|476961|476962|476963|476964|476965|476966|476967|476968|476969|476970|476971|476972|476973|476974|476975|476976|476977|476978|476979|476980|476981|476982|476983|476984|476985|476986|476987|476988|476989|476990|476991|476992|476993|476994|476995|476996|476997|476998|476999|477000|477001|477002|477003|477004|477005|477006|477007|477008|477009|477010|477011|477012|477013|477014|477015|477016|477017|477018|477019|477020|477021|477022|477023|477024|477025|477026|477027|477028|477029|477031|477032|477033|477034|477035|477036|477037|477038|477039|477040|477041|477042|477043|477044|477045|477046|477047|477048|477049|477050|477051|477052|477053|477054|477055|477056|477057|477058|477059|477060|477061|477062|477063|477064|477065|477066|477067|477068|477069|477070|477071|477072|477073|477074|477075|477076|477077|477078|477079|477080|477081|477082|477083|477084|477085|477086|477087|477088|477089|477090|477091|477092|477093|477094|477095|477096|477097|477098|477099|477100|477101|477102|477103|477104|477105|477106|477107|477108|477109|477110|477111|477112|477113|477114|477115|477116|477117|477118|477119|477120|477121|477122|477123|477124|477125|477126|477127|477128|477129|477130|477131|477132|477133|477134|477135|477136|477137|477138|477139|477140|477141|477142|477143|477144|477145|477146|477147|477148|477149|477150|477151|477152|477153|477154|477155|477156|477157|477158|477159|477160|477161|477162|477163|477164|477165|477166|477167|477168|477169|477170|477171|477172|477173|477174|477175|477176|477177|477178|477179|477180|477181|477182|477183|477184|477185|477186|477187|477188|477189|477190|477191|477192|477193|477194|477195|477196|477197|477198|477199|477200|477201|477202|477203|477204|477205|477206|477207|477208|477209|477210|477211|477212|477213|477214|477215|477216|477217|477218|477219|477220|477221|477222|477223|477224|477225|477226|477227|477228|477229|477230|477231|477232|477233|477234|477235|477236|477237|477238|477239|477240|477241|477242|477243|477244|477245|477246|477247|477248|477249|477250|477251|477252|477253|477254|477255|477256|477257|477258|477259|477260|477261|477262|477263|477264|477265|477266|477267|477268|477269|477270|477271|477272|477273|477274|477275|477276|477277|477278|477279|477280|477281|477282|477283|477284|477285|477286|477287|477288|477289|477290|477291|477292|477293|477294|477295|477296|477297|477298|477299|477300|477301|477302|477303|477304|477305|477306|477307|477308|477309|477310|477311|477312|477313|477314|477315|477316|477317|477318|477319|477320|477321|477322|477323|477324|477325|477326|477327|477328|477329|477330|477331|477332|477333|477334|477335|477336|477337|477338|477339|477340|477341|477342|477343|477344|477345|477346|477347|477348|477349|477350|477351|477352|477353|477354|477355|477356|477357|477358|477359|477360|477361|477362|477363|477364|477365|477366|477367|477368|477369|477370|477371|477372|477373|477374|477375|477376|477377|477378|477379|477380|477381|477382|477383|477384|477385|477386|477387|477388|477389|477390|477391|477392|477393|477394|477395|477396|477397|477398|477399|477400|477401|477402|477403|477404|477405|477406|477407|477408|477409|477410|477411|477412|477413|477414|477415|477416|477417|477418|477419|477420|477421|477422|477423|477424|477425|477426|477427|477428|477429|477430|477431|477432|477433|477434|477435|477436|477437|477438|477439|477440|477441|477442|477443|477444|477445|477446|477447|477448|477449|477450|477451|477452|477453|477454|477455|477456|477457|477458|477459|477460|477461|477462|477463|477464|477465|477466|477467|477468|477469|477470|477471|477472|477473|477474|477475|477476|477477|477478|477479|477480|477481|477482|477483|477484|477485|477486|477487|477488|477489|477490|477491|477492|477493|477494|477495|477496|477497|477498|477499|477500|477501|477502|477503|477504|477505|477506|477507|477508|477509|477510|477511|477512|477513|477514|477515|477516|477517|477518|477519|477520|477521|477522|477523|477524|477525|477526|477527|477528|477529|477530|477531|477532|477533|477534|477535|477536|477537|477538|477539|477540|477541|477542|477543|477544|477545|477546|477547|477548|477549|477550|477551|477552|477553|477554|477555|477556|477557|477558|477559|477560|477561|477562|477563|477564|477565|477566|477567|477568|477569|477570|477571|477572|477573|477574|477575|477576|477577|477578|477579|477580|477581|477582|477583|477584|477585|477586|477587|477588|477589|477590|477591|477592|477593|477594|477595|477596|477597|477598|477599|477600|477601|477602|477603|477604|477605|477606|477607|477608|477609|477610|477611|477612|477613|477614|477615|477616|477617|477618|477619|477620|477621|477622|477623|477624|477625|477626|477627|477628|477629|477630|477631|477632|477633|477634|477635|477636|477637|477638|477639|477640|477641|477642|477643|477644|477645|477646|477647|477648|477649|477650|477651|477652|477653|477654|477655|477656|477657|477658|477659|477660|477661|477662|477663|477664|477665|477666|477667|477668|477669|477670|477671|477672|477673|477674|477675|477676|477677|477678|477679|477680|477681|477682|477683|477684|477685|477686|477687|477688|477689|477690|477691|477692|477693|477694|477695|477696|477697|477698|477699|477700|477701|477702|477703|477704|477705|477706|477707|477708|477709|477710|477711|477712|477713|477714|477715|477716|477717|477718|477719|477720|477721|477722|477723|477724|477725|477726|477727|477728|477729|477730|477731|477732|477733|477734|477735|477736|477737|477738|477739|477740|477741|477742|477743|477744|477745|477746|477747|477748|477749|477750|477751|477752|477753|477754|477755|477756|477757|477758|477759|477760|477761|477762|477763|477764|477765|477766|477767|477768|477769|477770|477771|477772|477773|477774|477775|477776|477777|477778|477779|477780|477781|477782|477783|477784|477785|477786|477787|477788|477789|477790|477791|477792|477793|477794|477795|477796|477797|477798|477799|477800|477801|477802|477803|477804|477805|477806|477807|477808|477809|477810|477811|477812|477813|477814|477815|477816|477817|477818|477819|477820|477821|477822|477823|477824|477825|477826|477827|477828|477829|477830|477831|477832|477833|477834|477835|477836|477837|477838|477839|477840|477841|477842|477843|477844|477845|477846|477847|477848|477849|477850|477851|477852|477853|477854|477855|477856|477857|477858|477859|477860|477861|477862|477863|477864|477865|477866|477867|477868|477869|477870|477871|477872|477873|477874|477875|477876|477877|477878|477879|477880|477881|477882|477883|477884|477885|477886|477887|477888|477889|477890|477891|477892|477893|477894|477895|477896|477897|477898|477899|477900|477901|477902|477903|477904|477905|477906|477907|477908|477909|477910|477911|477912|477913|477914|477915|477916|477917|477918|477919|477920|477921|477922|477923|477924|477925|477926|477927|477928|477929|477930|477931|477932|477933|477934|477935|477936|477937|477938|477939|477940|477941|477942|477943|477944|477945|477946|477947|477948|477949|477950|477951|477952|477953|477954|477955|477956|477957|477958|477959|477960|477961|477962|477963|477964|477965|477966|477967|477968|477969|477970|477971|477972|477973|477974|477975|477976|477977|477978|477979|477980|477981|477982|477983|477984|477985|477986|477987|477988|477989|477990|477991|477992|477993|477994|477995|477996|477997|477998|477999|478000|478001|478002|478003|478004|478005|478006|478007|478008|478009|478010|478011|478012|478013|478014|478015|478016|478017|478018|478019|478020|478021|478022|478023|478024|478025|478026|478027|478028|478029|478030|478031|478032|478033|478034|478035|478036|478037|478038|478039|478040|478041|478042|478043|478044|478045|478046|478047|478048|478049|478050|478051|478052|478053|478054|478055|478056|478057|478058|478059|478060|478061|478062|478063|478064|478065|478066|478067|478068|478069|478070|478071|478072|478073|478074|478075|478076|478077|478078|478079|478080|478081|478082|478083|478084|478085|478086|478087|478088|478089|478090|478091|478092|478093|478094|478095|478096|478097|478098|478099|478100|478101|478102|478103|478104|478105|478106|478107|478108|478109|478110|478111|478112|478113|478114|478115|478116|478117|478118|478119|478120|478121|478122|478123|478124|478125|478126|478127|478128|478129|478130|478131|478132|478133|478134|478135|478136|478137|478138|478139|478140|478141|478142|478143|478144|478145|478146|478147|478148|478149|478150|478151|478152|478153|478154|478155|478156|478157|478158|478159|478160|478161|478162|478163|478164|478165|478166|478167|478168|478169|478170|478171|478172|478173|478174|478175|478176|478177|478178|478179|478180|478181|478182|478183|478184|478185|478186|478187|478188|478189|478190|478191|478192|478193|478194|478195|478196|478197|478198|478199|478200|478201|478202|478203|478204|478205|478206|478207|478208|478209|478210|478211|478212|478213|478214|478215|478216|478217|478218|478219|478220|478221|478222|478223|478224|478225|478226|478227|478228|478229|478230|478231|478232|478233|478234|478235|478236|478237|478238|478239|478240|478241|478242|478243|478244|478245|478246|478247|478248|478249|478250|478251|478252|478253|478254|478255|478256|478257|478258|478259|478260|478261|478262|478263|478264|478265|478266|478267|478268|478269|478270|478271|478272|478273|478274|478275|478276|478277|478278|478279|478280|478281|478282|478283|478284|478285|478286|478287|478288|478289|478290|478291|478292|478293|478294|478295|478296|478297|478298|478299|478300|478301|478302|478303|478304|478305|478306|478307|478308|478309|478310|478311|478312|478313|478314|478315|478316|478317|478318|478319|478320|478321|478322|478323|478324|478325|478326|478327|478328|478329|478330|478331|478332|478333|478334|478335|478336|478337|478338|478339|478340|478341|478342|478343|478344|478345|478346|478347|478348|478349|478350|478351|478352|478353|478354|478355|478356|478357|478358|478359|478360|478361|478362|478363|478364|478365|478366|478367|478368|478369|478370|478371|478372|478373|478374|478375|478376|478377|478378|478379|478380|478381|478382|478383|478384|478385|478386|478387|478388|478389|478390|478391|478392|478393|478394|478395|478396|478397|478398|478399|478400|478401|478402|478403|478404|478405|478406|478407|478408|478409|478410|478411|478412|478413|478414|478415|478416|478417|478418|478419|478420|478421|478422|478423|478424|478425|478426|478427|478428|478429|478430|478431|478432|478433|478434|478435|478436|478437|478438|478439|478440|478441|478442|478443|478444|478445|478446|478447|478448|478449|478450|478451|478452|478453|478454|478455|478456|478457|478458|478459|478460|478461|478462|478463|478464|478465|478466|478467|478468|478469|478470|478471|478472|478473|478474|478475|478476|478477|478478|478479|478480|478481|478482|478483|478484|478485|478486|478487|478488|478489|478490|478491|478492|478493|478494|478495|478496|478497|478498|478499|478500|478501|478502|478503|478504|478505|478506|478507|478508|478509|478510|478511|478512|478513|478514|478515|478516|478517|478518|478519|478520|478521|478522|478523|478524|478525|478526|478527|478528|478529|478530|478531|478532|478533|478534|478535|478536|478537|478538|478539|478540|478541|478542|478543|478544|478545|478546|478547|478548|478549|478550|478551|478552|478553|478554|478555|478556|478557|478558|478559|478560|478561|478562|478563|478564|478565|478566|478567|478568|478569|478570|478571|478572|478573|478574|478575|478576|478577|478578|478579|478580|478581|478582|478583|478584|478585|478586|478587|478588|478589|478590|478591|478592|478593|478594|478595|478596|478597|478598|478599|478600|478601|478602|478603|478604|478605|478606|478607|478608|478609|478610|478611|478612|478613|478614|478615|478616|478617|478618|478619|478620|478621|478622|478623|478624|478625|478626|478627|478628|478629|478630|478631|478632|478633|478634|478635|478636|478637|478638|478639|478640|478641|478642|478643|478644|478645|478646|478647|478648|478649|478650|478651|478652|478653|478654|478655|478656|478657|478658|478659|478660|478661|478662|478663|478664|478665|478666|478667|478668|478669|478670|478671|478672|478673|478674|478675|478676|478677|478678|478679|478680|478681|478682|478683|478684|478685|478686|478687|478688|478689|478690|478691|478692|478693|478694|478695|478696|478697|478698|478699|478700|478701|478702|478703|478704|478705|478706|478707|478708|478709|478710|478711|478712|478713|478714|478715|478716|478717|478718|478719|478720|478721|478722|478723|478724|478725|478726|478727|478728|478729|478730|478731|478732|478733|478734|478735|478736|478737|478738|478739|478740|478741|478742|478743|478744|478745|478746|478747|478748|478749|478750|478751|478752|478753|478754|478755|478756|478757|478758|478759|478760|478761|478762|478763|478764|478765|478766|478767|478768|478769|478770|478771|478772|478773|478774|478775|478776|478777|478778|478779|478780|478781|478782|478783|478784|478785|478786|478787|478788|478789|478790|478791|478792|478793|478794|478795|478796|478797|478798|478799|478800|478801|478802|478803|478804|478805|478806|478807|478808|478809|478810|478811|478812|478813|478814|478815|478816|478817|478818|478819|478820|478821|478822|478823|478824|478825|478826|478827|478828|478829|478830|478831|478832|478833|478834|478835|478836|478837|478838|478839|478840|478841|478842|478843|478844|478845|478846|478847|478848|478849|478850|478851|478852|478853|478854|478855|478856|478857|478858|478859|478860|478861|478862|478863|478864|478865|478866|478867|478868|478869|478870|478871|478872|478873|478874|478875|478876|478877|478878|478879|478880|478881|478882|478883|478884|478885|478886|478887|478888|478889|478890|478891|478892|478893|478894|478895|478896|478897|478898|478899|478900|478901|478902|478903|478904|478905|478906|478907|478908|478909|478910|478911|478912|478913|478914|478915|478916|478917|478918|478919|478920|478921|478922|478923|478924|478925|478926|478927|478928|478929|478930|478931|478932|478933|478934|478935|478936|478937|478938|478939|478940|478941|478942|478943|478944|478945|478946|478947|478948|478949|478950|478951|478952|478953|478954|478955|478956|478957|478958|478959|478960|478961|478962|478963|478964|478965|478966|478967|478968|478969|478970|478971|478972|478973|478974|478975|478976|478977|478978|478979|478980|478981|478982|478983|478984|478985|478986|478987|478988|478989|478990|478991|478992|478993|478994|478995|478996|478997|478998|478999|479000|479001|479002|479003|479004|479005|479006|479007|479008|479009|479010|479011|479012|479013|479014|479015|479016|479017|479018|479019|479020|479021|479022|479023|479024|479025|479026|479027|479028|479029|479030|479031|479032|479033|479034|479035|479036|479037|479038|479039|479040|479041|479042|479043|479044|479045|479046|479047|479048|479049|479050|479051|479052|479053|479054|479055|479056|479057|479058|479059|479060|479061|479062|479063|479064|479065|479066|479067|479068|479069|479070|479071|479072|479073|479074|479075|479076|479077|479078|479079|479080|479081|479082|479083|479084|479085|479086|479087|479088|479089|479090|479091|479092|479093|479094|479095|479096|479097|479098|479099|479100|479101|479102|479103|479104|479105|479106|479107|479108|479109|479110|479111|479112|479113|479114|479115|479116|479117|479118|479119|479120|479121|479122|479123|479124|479125|479126|479127|479128|479129|479130|479131|479132|479133|479134|479135|479136|479137|479138|479139|479140|479141|479142|479143|479144|479145|479146|479147|479148|479149|479150|479151|479152|479153|479154|479155|479156|479157|479158|479159|479160|479161|479162|479163|479164|479165|479166|479167|479168|479169|479170|479171|479172|479173|479174|479175|479176|479177|479178|479179|479180|479181|479182|479183|479184|479185|479186|479187|479188|479189|479190|479191|479192|479193|479194|479195|479196|479197|479198|479199|479200|479201|479202|479203|479204|479205|479206|479207|479208|479209|479210|479211|479212|479213|479214|479215|479216|479217|479218|479219|479220|479221|479222|479223|479224|479225|479226|479227|479228|479229|479230|479231|479232|479233|479234|479235|479236|479237|479238|479239|479240|479241|479242|479243|479244|479245|479246|479247|479248|479249|479250|479251|479252|479253|479254|479255|479256|479257|479258|479259|479260|479261|479262|479263|479264|479265|479266|479267|479268|479269|479270|479271|479272|479273|479274|479275|479276|479277|479278|479279|479280|479281|479282|479283|479284|479285|479286|479287|479288|479289|479290|479291|479292|479293|479294|479295|479296|479297|479298|479299|479300|479301|479302|479303|479304|479305|479306|479307|479308|479309|479310|479311|479312|479313|479314|479315|479316|479317|479318|479319|479320|479321|479322|479323|479324|479325|479326|479327|479328|479329|479330|479331|479332|479333|479334|479335|479336|479337|479338|479339|479340|479341|479342|479343|479344|479345|479346|479347|479348|479349|479350|479352|479353|479354|479355|479356|479357|479358|479359|479360|479361|479362|479363|479364|479365|479366|479367|479368|479369|479370|479371|479372|479373|479374|479375|479376|479377|479378|479379|479380|479381|479382|479383|479384|479385|479386|479387|479388|479389|479390|479391|479392|479393|479394|479395|479396|479397|479398|479399|479400|479401|479402|479403|479404|479405|479406|479407|479408|479409|479410|479411|479412|479413|479414|479415|479416|479417|479418|479419|479420|479421|479422|479423|479424|479425|479426|479427|479428|479429|479430|479431|479432|479433|479434|479435|479436|479437|479438|479439|479440|479441|479442|479443|479444|479445|479446|479447|479448|479449|479450|479451|479452|479453|479454|479455|479456|479457|479458|479459|479460|479461|479462|479463|479464|479465|479466|479467|479468|479469|479470|479471|479472|479473|479474|479475|479476|479477|479478|479479|479480|479481|479482|479483|479484|479485|479486|479487|479488|479489|479490|479491|479492|479493|479494|479495|479496|479497|479498|479499|479500|479501|479502|479503|479504|479505|479506|479507|479508|479509|479510|479511|479512|479513|479514|479515|479517|479518|479519|479520|479521|479522|479523|479524|479525|479526|479527|479528|479529|479530|479531|479532|479533|479534|479535|479536|479537|479538|479539|479540|479541|479542|479543|479544|479545|479546|479547|479548|479549|479550|479551|479552|479553|479554|479555|479556|479557|479558|479559|479560|479561|479562|479563|479564|479565|479566|479567|479568|479569|479570|479571|479572|479573|479574|479575|479576|479577|479578|479579|479580|479581|479582|479583|479584|479585|479586|479587|479588|479589|479590|479591|479592|479593|479594|479595|479596|479597|479598|479599|479600|479601|479602|479603|479604|479605|479606|479607|479608|479609|479610|479611|479612|479613|479614|479615|479616|479617|479618|479619|479620|479621|479622|479623|479624|479625|479626|479627|479628|479629|479630|479631|479632|479633|479634|479635|479636|479637|479638|479639|479640|479641|479642|479643|479644|479645|479646|479647|479648|479649|479650|479651|479652|479653|479654|479655|479656|479657|479658|479659|479660|479661|479662|479663|479664|479665|479666|479667|479668|479669|479670|479671|479672|479673|479674|479675|479676|479677|479678|479679|479680|479681|479682|479683|479684|479685|479686|479687|479688|479689|479690|479691|479692|479693|479694|479695|479696|479697|479698|479699|479700|479701|479702|479703|479704|479705|479706|479707|479708|479709|479710|479711|479712|479713|479714|479715|479716|479717|479718|479719|479720|479721|479722|479723|479724|479725|479726|479727|479728|479729|479730|479731|479732|479733|479734|479735|479736|479737|479738|479739|479740|479741|479742|479743|479744|479745|479746|479747|479749|479750|479751|479752|479753|479754|479755|479756|479757|479758|479759|479760|479761|479762|479763|479764|479765|479766|479767|479768|479769|479770|479771|479772|479773|479774|479775|479776|479777|479778|479779|479780|479781|479782|479783|479784|479785|479786|479787|479788|479789|479790|479791|479792|479793|479794|479795|479796|479797|479798|479799|479800|479801|479802|479803|479804|479805|479806|479807|479808|479809|479810|479811|479812|479813|479814|479815|479816|479817|479818|479819|479820|479821|479822|479823|479824|479825|479826|479827|479828|479829|479830|479831|479832|479833|479834|479835|479836|479837|479838|479839|479840|479841|479842|479843|479844|479845|479846|479847|479848|479849|479850|479851|479852|479853|479854|479855|479856|479857|479858|479859|479860|479861|479862|479863|479864|479865|479866|479867|479868|479869|479870|479871|479872|479873|479874|479875|479876|479877|479878|479879|479880|479881|479882|479883|479884|479885|479886|479887|479888|479889|479890|479891|479892|479893|479894|479895|479896|479897|479898|479899|479900|479901|479902|479903|479904|479905|479906|479907|479908|479909|479910|479911|479912|479913|479914|479915|479916|479917|479918|479919|479920|479921|479922|479923|479924|479925|479926|479927|479928|479929|479930|479931|479932|479933|479934|479935|479936|479937|479938|479939|479940|479941|479942|479943|479944|479945|479946|479947|479948|479949|479950|479951|479952|479953|479954|479955|479956|479957|479958|479959|479960|479961|479962|479963|479964|479965|479966|479967|479968|479969|479970|479971|479972|479973|479974|479975|479976|479977|479978|479979|479980|479981|479982|479983|479984|479985|479986|479987|479988|479989|479990|479991|479992|479993|479994|479995|479996|479997|479998|479999|480000|480001|480002|480003|480004|480005|480006|480007|480008|480009|480010|480011|480012|480013|480014|480015|480016|480017|480018|480019|480020|480021|480022|480023|480024|480025|480026|480027|480028|480029|480030|480031|480032|480033|480034|480035|480036|480037|480038|480039|480040|480041|480042|480043|480044|480045|480046|480047|480048|480049|480050|480051|480052|480053|480054|480055|480056|480057|480058|480059|480060|480061|480062|480063|480064|480065|480066|480067|480068|480069|480070|480071|480072|480073|480074|480075|480076|480077|480078|480079|480080|480081|480082|480083|480084|480085|480086|480087|480088|480089|480090|480091|480092|480093|480094|480095|480096|480097|480098|480099|480100|480101|480102|480103|480104|480105|480106|480107|480108|480109|480110|480111|480112|480113|480114|480115|480116|480117|480118|480119|480120|480121|480122|480123|480124|480125|480126|480127|480128|480129|480130|480131|480132|480133|480134|480135|480136|480137|480138|480139|480140|480141|480142|480143|480144|480145|480146|480147|480148|480149|480150|480151|480152|480153|480154|480155|480156|480157|480158|480159|480160|480161|480162|480163|480164|480165|480166|480167|480168|480169|480170|480171|480172|480173|480174|480175|480176|480177|480178|480179|480180|480181|480182|480183|480184|480185|480186|480187|480188|480189|480190|480191|480192|480193|480194|480195|480196|480197|480198|480199|480200|480201|480202|480203|480204|480205|480206|480207|480208|480209|480210|480211|480212|480213|480214|480215|480216|480217|480218|480219|480220|480221|480222|480223|480224|480225|480226|480227|480228|480229|480230|480231|480232|480233|480234|480235|480236|480237|480238|480239|480240|480241|480242|480243|480244|480245|480246|480247|480248|480249|480250|480251|480252|480253|480254|480255|480256|480257|480258|480259|480260|480261|480262|480263|480264|480265|480266|480267|480268|480269|480270|480271|480272|480273|480274|480275|480276|480277|480278|480279|480280|480281|480282|480283|480284|480285|480286|480287|480288|480289|480290|480291|480292|480293|480294|480295|480296|480297|480298|480299|480300|480301|480302|480303|480304|480305|480306|480307|480308|480309|480310|480311|480312|480313|480314|480315|480316|480317|480318|480319|480320|480321|480322|480323|480324|480325|480326|480327|480328|480329|480330|480331|480332|480333|480334|480335|480336|480337|480338|480339|480340|480341|480342|480343|480344|480345|480346|480347|480348|480349|480350|480351|480352|480353|480354|480355|480356|480357|480358|480359|480360|480361|480362|480363|480364|480365|480366|480367|480368|480369|480370|480371|480372|480373|480374|480375|480376|480377|480378|480379|480380|480381|480382|480383|480384|480385|480386|480387|480388|480389|480390|480391|480392|480393|480394|480395|480396|480468|480469|480475|480485|480488|480489|480492|480495|480499|480500|480501|481885|481887|481898|481920|481928|482128|482340|482341|482342|482343|482344|482345|482346|482347|482348|482349|482350|482351|482352|482353|482354|482355|482356|482357|482358|482359|482360|482361|482362|482363|482364|482365|482366|482367|482368|482369|482370|482371|482372|482373|482374|482375|482376|482377|482378|482379|482380|482381|482382|482384|482385|482386|482388|482389|482390|482391|482392|482393|482394|482395|482396|482397|482398|482399|482400|482401|482402|482403|482404|482405|482406|482407|482408|482409|482410|482411|482412|482413|482414|482415|482416|482417|482418|482419|482420|482421|482422|482423|482424|482425|482426|482427|482428|482429|482430|482431|482432|482433|482434|482435|482436|482437|482438|482439|482440|482441|482442|482443|482444|482445|482446|482447|482448|482449|482450|482451|482452|482453|482454|482455|482456|482457|482458|482459|482460|482461|482462|482463|482464|482465|482466|482467|482468|482469|482470|482471|482472|482473|482474|482475|482476|482477|482478|482479|482480|482481|482482|482483|482484|482485|482486|482487|482488|482489|482490|482491|482492|482493|482494|482495|482496|482497|482498|482499|482500|482501|482502|482503|482504|482505|482506|482507|482508|482509|482510|482511|482512|482513|482514|482515|482516|482517|482518|482519|482520|482521|482522|482523|482524|482526|482527|482528|482529|482530|482531|482532|482533|482534|482535|482536|482537|482538|482539|482540|482541|482542|482543|482544|482545|482546|482547|482548|482549|482550|482551|482552|482553|482554|482555|482557|482558|482559|482560|482561|482562|482563|482564|482565|482566|482567|482568|482569|482570|482571|482572|482573|482574|482575|482576|482577|482578|482579|482580|482581|482582|482583|482584|482585|482586|482587|482588|482589|482590|482591|482592|482593|482594|482595|482596|482597|482598|482599|482600|482601|482602|482603|482604|482605|482606|482607|482608|482609|482610|482611|482612|482613|482614|482615|482616|482617|482618|482619|482620|482621|482622|482623|482624|482625|482626|482627|482628|482629|482630|482631|482632|482633|482634|482635|482636|482637|482638|482639|482640|482641|482642|482643|482644|482645|482646|482647|482648|482649|482650|482651|482652|482653|482654|482655|482656|482657|482658|482659|482660|482661|482662|482663|482664|482665|482666|482667|482668|482669|482670|482671|482672|482673|482674|482675|482676|482677|482678|482679|482680|482681|482682|482683|482684|482685|482686|482687|482688|482689|482690|482691|482692|482693|482694|482695|482696|482697|482698|482699|482700|482701|482702|482703|482704|482705|482706|482707|482708|482709|482710|482711|482712|482713|482714|482715|482716|482717|482718|482719|482721|482722|482723|482724|482725|482726|482727|482728|482730|482731|482732|482733|482734|482735|482736|482737|482738|482739|482740|482741|482742|482743|482744|482745|482746|482747|482748|482749|482750|482751|482752|482753|482754|482755|482756|482757|482758|482759|482760|482761|482762|482763|482764|482765|482766|482767|482768|482769|482770|482771|482772|482773|482774|482775|482777|482778|482779|482780|482781|482782|482783|482784|482785|482786|482787|482788|482789|482790|482791|482792|482793|482794|482795|482796|482797|482798|482800|482801|482804|482805|482806|482807|482808|482809|482811|482812|482813|482814|482815|482816|482817|482818|482819|482820|482821|482822|482823|482824|482825|482826|482827|482828|482829|482830|482831|482832|482833|482834|482835|482836|482837|482838|482839|482841|482842|482843|482844|482845|482846|482847|482848|482849|482850|482851|482852|482853|482854|482855|482856|482857|482858|482859|482860|482861|482862|482863|482864|482865|482866|482868|482869|482870|482871|482872|482873|482874|482875|482876|482877|482878|482879|482880|482881|482882|482883|482884|482885|482886|482887|482888|482889|482890|482891|482892|482893|482894|482895|482896|482897|482898|482899|482900|482901|482902|482904|482905|482906|482907|482908|482909|482910|482911|482912|482913|482914|482915|482916|482917|482918|482919|482920|482921|482922|482923|482924|482925|482926|482927|482928|482929|482930|482931|482932|482933|482934|482935|482936|482937|482938|482939|482940|482941|482942|482943|482944|482945|482946|482947|482948|482949|482950|482951|482952|482953|482955|482956|482957|482958|482959|482960|482961|482963|482964|482965|482966|482967|482968|482969|482970|482971|482972|482973|482974|482975|482976|482977|482978|482979|482980|482981|482982|482983|482984|482985|482986|482987|482988|482989|482990|482991|482992|482993|482994|482995|482996|482997|482998|482999|483000|483001|483002|483003|483004|483005|483006|483007|483008|483009|483010|483011|483012|483013|483014|483015|483016|483017|483018|483019|483020|483021|483022|483023|483024|483025|483026|483027|483028|483029|483030|483031|483032|483033|483034|483035|483036|483037|483038|483039|483040|483041|483042|483043|483044|483045|483046|483047|483048|483049|483050|483051|483052|483053|483054|483055|483056|483057|483058|483059|483060|483061|483062|483063|483064|483065|483066|483067|483068|483069|483070|483071|483072|483073|483074|483075|483076|483078|483079|483080|483081|483082|483083|483084|483085|483086|483087|483088|483089|483090|483091|483092|483094|483095|483096|483098|483099|483100|483101|483102|483103|483104|483105|483106|483107|483119|483120|483121|483122|483123|483124|483125|483126|483127|483128|483129|483130|483131|483132|483133|483134|483135|483136|483137|483138|483139|483140|483141|483142|483143|483144|483145|483146|483147|483148|483149|483150|483151|483152|483153|483154|483155|483156|483157|483158|483159|483160|483161|483162|483163|483164|483165|483167|483169|483171|483172|483173|483175|483176|483178|483182|483183|483185|483186|483189|483190|483191|483192|483193|483195|483196|483197|483199|483201|483202|483205|483207|483212|483215|483217|483221|483230|483231|483232|483234|483235|483237|483239|483240|483241|483242|483243|483244|483245|483246|483247|483248|483250|483251|483252|483254|483255|483256|483257|483258|483259|483260|483261|483262|483263|483264|483265|483266|483267|483268|483269|483270|483271|483272|483273|483274|483275|483276|483277|483278|483279|483280|483281|483282|483283|483284|483285|483286|483287|483288|483289|483290|483291|483292|483293|483294|483295|483296|483297|483298|483299|483300|483301|483302|483303|483304|483305|483306|483307|483308|483309|483310|483311|483312|483313|483314|483315|483316|483317|483318|483319|483320|483321|483322|483323|483324|483325|483326|483327|483328|483329|483330|483331|483332|483333|483334|483335|483336|483337|483338|483339|483340|483341|483342|483343|483344|483346|483347|483348|483349|483350|483351|483352|483353|483354|483355|483356|483357|483358|483359|483360|483361|483362|483363|483364|483365|483366|483367|483368|483369|483370|483371|483372|483373|483374|483375|483376|483377|483378|483379|483380|483381|483382|483383|483384|483385|483386|483387|483388|483389|483390|483391|483392|483393|483394|483395|483396|483397|483398|483399|483400|483401|483403|483404|483405|483406|483407|483408|483409|483410|483411|483412|483413|483414|483415|483416|483417|483418|483419|483420|483421|483422|483423|483424|483425|483426|483427|483428|483429|483430|483431|483432|483433|483434|483435|483436|483437|483438|483439|483440|483441|483442|483443|483444|483445|483446|483447|483448|483449|483450|483451|483452|483453|483454|483455|483456|483457|483458|483459|483460|483461|483462|483463|483464|483465|483466|483467|483468|483469|483470|483471|483472|483473|483474|483475|483476|483477|483478|483479|483480|483481|483482|483483|483484|483485|483486|483487|483488|483489|483490|483491|483492|483493|483494|483495|483496|483497|483498|483499|483500|483501|483502|483503|483504|483505|483506|483507|483508|483509|483510|483512|483513|483514|483515|483516|483517|483518|483519|483520|483521|483522|483523|483524|483525|483526|483527|483528|483529|483530|483531|483532|483533|483534|483535|483536|483537|483538|483539|483540|483541|483542|483543|483544|483545|483546|483547|483548|483550|483551|483552|483553|483554|483555|483556|483557|483558|483559|483560|483561|483562|483563|483564|483565|483566|483567|483568|483569|483570|483571|483572|483573|483574|483575|483576|483577|483578|483579|483580|483581|483582|483583|483584|483585|483586|483587|483588|483589|483590|483591|483592|483593|483594|483595|483596|483597|483598|483599|483600|483601|483602|483603|483604|483605|483606|483607|483608|483609|483610|483611|483612|483613|483614|483615|483616|483617|483618|483619|483620|483621|483622|483623|483624|483625|483626|483627|483628|483629|483630|483631|483632|483633|483634|483635|483636|483637|483638|483639|483640|483641|483642|483643|483644|483645|483646|483647|483648|483649|483650|483651|483652|483653|483654|483655|483656|483657|483658|483659|483660|483661|483662|483663|483664|483665|483666|483667|483668|483669|483670|483671|483672|483673|483674|483675|483676|483677|483678|483679|483680|483681|483682|483683|483684|483685|483686|483687|483688|483689|483690|483691|483692|483693|483694|483695|483696|483697|483698|483699|483700|483701|483702|483703|483704|483705|483706|483707|483708|483709|483710|483711|483712|483713|483714|483715|483716|483717|483718|483719|483720|483721|483722|483723|483724|483725|483726|483727|483728|483729|483730|483731|483732|483733|483734|483735|483736|483737|483738|483739|483740|483741|483742|483743|483744|483745|483746|483747|483748|483749|483750|483751|483752|483753|483754|483755|483756|483757|483758|483759|483760|483761|483762|483763|483764|483765|483766|483767|483768|483769|483770|483771|483773|483774|483775|483776|483777|483778|483779|483780|483781|483782|483783|483784|483785|483786|483787|483788|483789|483790|483791|483792|483793|483794|483795|483796|483797|483798|483799|483800|483801|483802|483803|483804|483805|483806|483807|483808|483809|483810|483811|483812|483813|483814|483815|483816|483817|483818|483819|483820|483822|483823|483824|483825|483826|483827|483828|483829|483830|483831|483832|483833|483834|483835|483836|483837|483838|483839|483840|483841|483842|483843|483844|483845|483846|483847|483848|483849|483850|483851|483852|483853|483854|483855|483856|483857|483858|483859|483860|483861|483862|483863|483864|483865|483866|483867|483868|483869|483870|483871|483872|483873|483874|483875|483876|483877|483878|483879|483880|483881|483883|483884|483885|483886|483887|483888|483889|483890|483891|483892|483893|483894|483895|483896|483897|483898|483899|483900|483901|483902|483903|483904|483905|483906|483907|483908|483909|483910|483911|483912|483913|483914|483915|483916|483917|483918|483919|483920|483921|483922|483923|483924|483925|483926|483927|483928|483929|483930|483931|483932|483933|483934|483935|483936|483937|483938|483939|483940|483941|483942|483943|483944|483945|483946|483947|483948|483949|483950|483951|483952|483953|483954|483955|483956|483957|483958|483959|483960|483961|483962|483963|483964|483965|483966|483967|483968|483969|483970|483971|483972|483973|483974|483975|483976|483977|483978|483979|483980|483981|483982|483983|483984|483985|483986|483987|483988|483989|483990|483991|483992|483993|483994|483995|483996|483997|483998|483999|484000|484001|484002|484003|484004|484005|484006|484007|484008|484009|484010|484011|484012|484013|484014|484015|484016|484017|484018|484019|484020|484021|484022|484023|484024|484025|484026|484027|484028|484029|484030|484031|484032|484033|484034|484035|484036|484037|484038|484039|484040|484041|484042|484043|484044|484045|484046|484047|484048|484049|484050|484051|484052|484053|484054|484055|484056|484057|484058|484059|484060|484061|484062|484063|484064|484065|484066|484067|484068|484069|484070|484071|484072|484073|484074|484075|484076|484077|484078|484079|484080|484081|484082|484083|484084|484085|484086|484087|484088|484089|484090|484091|484092|484093|484094|484095|484096|484097|484098|484100|484101|484103|484104|484105|484106|484107|484108|484109|484110|484111|484112|484113|484114|484115|484116|484117|484118|484119|484120|484121|484122|484123|484124|484125|484126|484127|484128|484129|484130|484131|484132|484133|484134|484136|484137|484138|484139|484140|484141|484142|484143|484144|484145|484146|484147|484148|484149|484150|484151|484152|484153|484154|484155|484156|484157|484158|484159|484160|484161|484162|484163|484164|484165|484166|484167|484168|484169|484170|484171|484172|484173|484174|484175|484176|484177|484178|484179|484180|484181|484182|484183|484184|484186|484187|484188|484189|484190|484191|484192|484193|484194|484195|484196|484197|484198|484199|484200|484201|484202|484203|484204|484205|484206|484207|484208|484209|484210|484211|484212|484213|484214|484215|484216|484217|484218|484220|484221|484222|484223|484224|484225|484226|484227|484228|484229|484230|484231|484232|484233|484234|484235|484236|484237|484238|484239|484240|484241|484242|484243|484244|484245|484246|484247|484248|484249|484250|484251|484252|484253|484254|484255|484256|484257|484258|484259|484260|484261|484262|484263|484264|484265|484266|484267|484268|484269|484270|484271|484272|484273|484274|484275|484276|484277|484278|484279|484280|484281|484282|484283|484284|484285|484286|484287|484288|484289|484290|484291|484292|484293|484294|484295|484296|484297|484298|484299|484300|484301|484302|484303|484304|484305|484306|484307|484308|484309|484310|484311|484312|484313|484314|484315|484316|484317|484318|484319|484320|484321|484322|484323|484324|484325|484326|484327|484328|484329|484330|484331|484332|484333|484334|484335|484336|484337|484338|484339|484340|484341|484342|484343|484344|484345|484346|484347|484348|484349|484350|484351|484352|484353|484354|484355|484356|484357|484358|484359|484360|484361|484362|484363|484364|484365|484366|484367|484368|484369|484370|484371|484372|484373|484374|484375|484376|484377|484378|484379|484380|484381|484382|484383|484384|484385|484386|484387|484388|484389|484390|484391|484392|484393|484394|484395|484396|484397|484398|484399|484400|484401|484402|484403|484404|484405|484406|484407|484408|484409|484410|484411|484412|484413|484414|484415|484416|484417|484418|484419|484420|484421|484422|484423|484424|484425|484427|484428|484429|484430|484431|484432|484433|484434|484435|484436|484437|484438|484439|484440|484441|484442|484443|484444|484445|484446|484447|484448|484449|484450|484451|484452|484453|484454|484455|484456|484457|484458|484459|484460|484461|484462|484463|484464|484465|484466|484467|484468|484469|484470|484471|484472|484473|484474|484475|484476|484477|484478|484479|484480|484481|484482|484483|484484|484485|484486|484487|484488|484489|484490|484491|484492|484493|484494|484495|484496|484497|484498|484499|484500|484501|484502|484503|484504|484505|484506|484507|484508|484509|484510|484511|484512|484513|484514|484515|484516|484517|484518|484519|484520|484521|484522|484523|484524|484525|484526|484527|484528|484529|484530|484531|484532|484533|484534|484535|484536|484537|484538|484539|484540|484541|484542|484543|484544|484545|484546|484547|484548|484549|484550|484551|484552|484553|484554|484555|484556|484557|484558|484559|484560|484561|484562|484563|484564|484565|484566|484567|484568|484569|484570|484571|484572|484573|484574|484575|484576|484577|484578|484579|484580|484581|484582|484583|484584|484585|484586|484587|484588|484589|484590|484591|484592|484593|484594|484595|484596|484597|484598|484599|484600|484601|484602|484603|484604|484605|484606|484607|484608|484609|484610|484611|484612|484613|484614|484615|484616|484617|484618|484619|484620|484621|484622|484623|484624|484625|484626|484627|484628|484629|484630|484631|484632|484633|484634|484635|484636|484637|484638|484639|484640|484641|484642|484643|484644|484645|484646|484647|484648|484649|484650|484651|484652|484653|484654|484655|484656|484657|484658|484659|484660|484661|484662|484663|484664|484665|484666|484667|484668|484669|484670|484671|484672|484673|484674|484675|484676|484677|484678|484679|484680|484681|484682|484683|484684|484685|484686|484687|484688|484689|484690|484691|484692|484693|484694|484695|484696|484697|484698|484699|484700|484701|484702|484703|484704|484705|484706|484707|484708|484709|484710|484711|484712|484713|484714|484715|484716|484717|484718|484719|484720|484721|484722|484723|484724|484725|484726|484727|484728|484729|484730|484731|484732|484733|484734|484735|484736|484737|484738|484739|484740|484741|484742|484743|484744|484745|484746|484747|484748|484749|484750|484751|484752|484753|484754|484755|484756|484757|484758|484759|484760|484761|484762|484763|484764|484765|484766|484767|484768|484769|484770|484771|484772|484773|484774|484775|484776|484777|484778|484779|484780|484781|484782|484783|484784|484785|484786|484787|484788|484789|484790|484791|484792|484793|484794|484795|484796|484797|484798|484799|484800|484801|484802|484803|484804|484805|484806|484807|484808|484809|484810|484811|484812|484813|484814|484815|484816|484817|484818|484819|484820|484821|484822|484823|484824|484825|484826|484827|484828|484829|484830|484831|484832|484833|484834|484835|484836|484837|484838|484839|484840|484841|484842|484843|484844|484845|484846|484847|484848|484849|484850|484851|484852|484853|484854|484855|484856|484857|484858|484859|484860|484861|484862|484863|484864|484865|484866|484867|484868|484869|484870|484871|484872|484873|484874|484875|484876|484877|484878|484879|484880|484881|484882|484883|484884|484885|484886|484887|484888|484889|484890|484891|484892|484893|484894|484895|484896|484897|484898|484899|484900|484901|484902|484903|484904|484905|484906|484907|484908|484909|484910|484911|484912|484913|484914|484915|484916|484917|484918|484919|484920|484921|484922|484923|484924|484925|484926|484927|484928|484929|484930|484931|484932|484933|484934|484935|484936|484937|484938|484939|484940|484941|484942|484943|484944|484945|484946|484947|484948|484949|484950|484951|484952|484953|484954|484955|484956|484957|484958|484959|484960|484961|484962|484963|484964|484965|484966|484967|484968|484969|484970|484971|484972|484973|484974|484975|484976|484977|484978|484979|484980|484981|484982|484983|484984|484985|484986|484987|484988|484989|484990|484991|484992|484993|484994|484995|484996|484997|484998|484999|485000|485001|485002|485003|485004|485005|485006|485007|485008|485009|485010|485011|485012|485013|485014|485015|485016|485017|485018|485019|485020|485021|485022|485023|485024|485025|485026|485027|485028|485029|485030|485031|485032|485033|485034|485035|485036|485037|485038|485039|485040|485041|485042|485043|485044|485045|485046|485047|485048|485049|485050|485051|485052|485053|485054|485055|485056|485057|485058|485059|485060|485061|485062|485063|485064|485065|485066|485067|485068|485069|485070|485071|485072|485073|485074|485075|485076|485077|485078|485079|485080|485081|485082|485083|485084|485085|485086|485087|485088|485089|485090|485091|485092|485093|485094|485095|485096|485097|485098|485099|485100|485101|485102|485103|485104|485105|485106|485107|485108|485109|485110|485111|485112|485113|485114|485115|485116|485117|485118|485119|485120|485121|485122|485123|485124|485125|485126|485127|485128|485129|485130|485131|485132|485133|485134|485135|485136|485137|485138|485139|485140|485141|485142|485143|485144|485146|485147|485148|485149|485150|485151|485152|485153|485154|485155|485156|485157|485158|485159|485160|485161|485162|485163|485164|485165|485166|485167|485168|485169|485170|485171|485172|485173|485174|485175|485176|485177|485178|485179|485180|485181|485182|485183|485184|485185|485186|485187|485188|485189|485190|485191|485192|485193|485194|485195|485196|485197|485198|485199|485200|485201|485202|485203|485204|485205|485206|485207|485208|485209|485210|485211|485212|485213|485214|485215|485216|485217|485218|485219|485220|485221|485222|485223|485224|485225|485226|485227|485228|485229|485230|485231|485232|485233|485234|485235|485236|485237|485238|485239|485240|485241|485242|485243|485244|485245|485246|485247|485248|485249|485250|485251|485252|485253|485255|485256|485257|485259|485260|485261|485262|485263|485264|485265|485266|485267|485268|485269|485270|485271|485272|485273|485274|485275|485276|485277|485278|485279|485280|485281|485282|485283|485284|485285|485286|485287|485288|485289|485290|485291|485292|485293|485294|485295|485296|485297|485298|485299|485300|485301|485302|485303|485304|485305|485306|485307|485308|485309|485310|485311|485312|485313|485314|485315|485316|485317|485318|485319|485320|485321|485322|485323|485324|485325|485326|485327|485328|485329|485330|485331|485332|485333|485334|485335|485336|485337|485338|485339|485340|485341|485342|485343|485344|485345|485346|485347|485348|485349|485350|485351|485352|485353|485354|485355|485356|485357|485358|485359|485360|485361|485362|485363|485364|485365|485366|485367|485368|485369|485370|485371|485372|485373|485374|485375|485376|485377|485378|485379|485380|485381|485382|485383|485384|485385|485386|485387|485388|485389|485390|485391|485392|485393|485394|485395|485396|485397|485398|485399|485400|485401|485402|485403|485405|485406|485407|485408|485409|485410|485411|485412|485413|485414|485415|485416|485417|485418|485419|485420|485421|485422|485423|485424|485425|485426|485427|485428|485429|485430|485431|485432|485433|485434|485435|485436|485437|485438|485439|485440|485441|485442|485443|485444|485445|485446|485447|485448|485449|485451|485452|485453|485454|485455|485456|485457|485458|485459|485460|485461|485462|485463|485464|485465|485466|485467|485468|485469|485470|485471|485472|485473|485474|485475|485476|485477|485478|485479|485480|485481|485482|485483|485484|485485|485486|485487|485488|485489|485490|485491|485492|485493|485494|485495|485496|485497|485498|485499|485500|485501|485502|485503|485504|485505|485506|485507|485508|485509|485510|485511|485512|485513|485514|485515|485516|485517|485518|485519|485520|485521|485522|485523|485524|485525|485526|485527|485528|485529|485530|485531|485532|485533|485534|485535|485536|485537|485538|485539|485540|485541|485542|485543|485544|485545|485546|485547|485548|485549|485550|485553|485554|485555|485556|485557|485558|485559|485560|485561|485562|485563|485564|485565|485566|485567|485568|485569|485570|485571|485572|485573|485574|485575|485576|485577|485578|485579|485580|485581|485582|485583|485584|485585|485586|485603|485604|485612|485622|485668|486074|486093|486094|486647|486651|486885|486912|486926|486933|486942|486954|486959|486960|486966|486969|486972|486980|486986|486989|486999|487001|487002|487010|487090|487117|487121|487130|487142|487149|487160|487161|487242|487257|487287|487289|487307|487345|487369|487380|487382|487397|487398|487405|487408|487424|487429|487431|487433|487435|487437|487440|487448|487455|487457|487467|487468|487469|487481|487482|487484|487499|487509|487520|487542|487550|487556|487557|487582|487584|487640|487643|487647|487658|487661|487673|487674|487680|487698|487704|487711|487738|487739|487748|487843|487879|487894|487898|487901|487902|487904|487908|487911|487931|487933|487934|487936|487938|487959|487970|487986|488003|488006|488134|488241|488242|488243|488853|490569|492405|493412|494047|495509|495672|495839|496278|496381|496761|496795|496796|496817|496818|497006|497731|498358|498370|498502|498514|498548|498559|498706|498710|498715|498716|498726|499751|499753|499771|499800|499813|499821|499980|499984|499994|500021|500028|500030|500032|500043|500167|500211|500229|500248|500257|500268|500273|500277|500402|500450|500468|500590|500593|500610|500612|500647|500758|500766|500803|500872|500899|500907|500926|500927|500934|500935|501077|501088|501198|501535|501688|501768|501771|502062|502063|502106|502110|502187|502415|502426|502439|502506|502518|502712|502748|502918|503039|503041|503042|503047|503055|503057|503065|503091|503094|503102|503113|503116|503123|503357|503375|503380|503388|503399|503416|503423|503434|503494|503579|503585|503602|503625|503631|503650|503655|503657|503807|503811|503827|503841|503905|503916|503933|503935|503937|503944|503952|503968|503977|504007|504039|504173|504191|504220|504234|504303|504316|504635|504666|504744|504745|504764|504766|504773|504778|505151|505153|505154|505165|505166|505172|505177|505263|505449|505466|505479|505521|505599|505649|505688|505707|505727|505728|505846|505882|506017|506088|506089|506102|506112|506114|506137|506145|506150|506160|506188|506190|506204|506211|506214|506216|506223|506238|506257|506270|506281|506368|506376|506397|506402|506405|506412|506413|506426|506427|506428|506431|506432|506493|506571|506597|506626|506638|506680|506719|506730|506748|506749|506757|506848|506855|506858|506860|506865|506908|507001|507011|507023|507025|507026|507117|507142|507187|507393|507493|507547|507548|508107|508112|512279|512374|512846|513369|514029|514061|514075|514337|514338|514339|514340|514341|515316|515333|515363|515396|515416|515731|515739|515761|515798|515841|515934|515938|515960|515961|515965|515970|516007|516062|516078|517620|517655|517673|517717|517735|517737|517748|517752|517769|517772|517774|517792|517799|517801|517810|517886|517887|517899|517915|517916|518022|518039|518102|518105|518113|518114|518122|518153|518275|518282|518288|518295|518304|518307|518320|518324|518336|518338|518341|518342|518346|518347|518348|518349|518350|518352|518353|518360|518365|518371|518376|518378|518379|518384|518391|518394|518408|518415|518417|518420|518424|518429|518431|518433|518435|518437|518438|518439|518440|518443|518446|518447|518448|518449|518451|518452|518455|518456|518465|518466|518472|518474|518480|518483|518509|518522|518532|518546|518547|518549|518552|518555|518570|518576|518578|518694|518729|518749|518859|518864|518865|518867|518869|518874|518876|519088|519098|519100|519112|519114|519119|519141|519178|519186|519188|519269|519274|519280|519293|519300|519311|519313|519322|519328|519544|519557|519562|519564|519581|519610|519778|519784|519790|519794|519807|519812|519813|519817|519823|519851|519937|520014|520062|520068|520126|520169|520184|520196|520206|520257|520259|520261|520271|520276|520281|520285|520288|520293|520297|520301|520307|520316|520322|520324|520327|520330|520333|520337|520343|520348|520371|520376|520377|520397|520400|520403|520412|520416|520432|520453|520463|520467|520471|520482|520486|520496|520504|520516|520542|520544|520570|520584|520591|520595|520598|520601|520607|520611|520620|520628|520631|520635|520641|520648|520650|520651|520653|520661|520662|520664|520665|520670|520683|520684|520686|520687|520693|520694|520696|520698|520703|520705|520708|520710|520722|520725|520751|520755|520760|520762|520763|520766|520774|520785|520787|520788|520792|520809|520810|520813|520816|520825|520830|520837|520847|520849|520864|520865|520867|520869|520870|520872|520874|520878|520879|520883|520887|520893|520899|520903|520905|520907|520910|520916|520929|520936|520939|520940|520949|520951|520954|520956|520957|520958|521027|521034|521037|521040|521043|521047|521050|521052|521055|521061|521068|521069|521071|521073|521074|521083|521086|521090|521093|521094|521096|521097|521101|521102|521105|521107|521110|521111|521114|521117|521118|521124|521125|521131|521132|521141|521142|521146|521148|521151|521154|521364|521370|521399|521400|521418|521684|521741|521761|521989|522033|522038|522065|522068|522072|522149|522314|522325|522334|522341|522347|522348|522362|522368|522370|522389|522422|522463|522468|522472|522476|522493|522721|522725|522735|522744|522752|522760|522773|522848|522858|522972|522994|522995|523010|523018|523020|523122|523129|523190|523203|523210|523324|523346|523350|523364|523719|523727|523736|523740|523751|524036|524037|524073|524131|524165|524286|524295|524309|524317|524328|524330|524337|524340|524342|524354|524364|524380|524395|524422|524426|524468|524501|524502|524664|524668|524670|524685|524709|524712|524719|524720|524736|524775|524784|524786|524795|524817|524823|524837|524845|524878|524906|524909|524912|524941|524952|524963|524967|524971|524975|524977|525005|525007|525028|525033|525036|525043|525048|525057|525081|525083|525085|525091|525097|525098|525104|525105|525112|525117|525121|525128|525132|525135|525145|525156|525176|525191|525213|525247|525257|525260|525261|525267|525270|525279|525286|525287|525289|525294|525296|525302|525305|525308|525311|525313|525316|525320|525331|525344|525346|525355|525360|525395|525401|525439|525443|525459|525461|525467|525471|525540|525556|525582|525594|525596|525617|525622|525628|525630|525640|525641|525658|525679|525691|525692|525699|525703|525711|525720|525721|525723|525725|525726|525728|525734|525751|525758|525762|525763|525773|525778|525782|525784|525788|525797|525808|525818|525831|525836|525844|525847|525853|525856|525860|525864|525867|525870|525874|525877|525878|525894|525896|525899|525909|525910|525913|525915|525933|525957|525962|525973|525988|525992|525998|526010|526032|526043|526056|526057|526058|526114|526147|526165|526176|526187|526204|526205|526225|526233|526262|526268|526269|526280|526281|526329|526340|526345|526356|526368|526373|526377|526383|526526|526611|526670|526730|526797|526841|526887|526919|526970|527071|527151|527275|527433|527455|527508|527516|527518|527530|527540|527541|527545|527561|527564|527570|527578|527603|527604|527618|527638|527642|527647|527653|527700|527704|527709|527742|527748|527753|527773|527776|527788|527792|527819|527850|527885|527891|527894|527912|527916|527936|527969|527971|527976|527999|528014|528034|528045|528057|528067|528073|528074|528083|528095|528123|528129|528203|528217|528221|528253|528264|528265|528292|528303|528304|528307|528343|528355|528380|528400|528402|528415|528426|528439|528445|528454|528455|528470|528475|528496|528506|528512|528523|528525|528539|528549|528553|528578|528767|528851|528858|528860|528861|528867|528873|528874|528880|528882|528888|528889|528896|528904|528906|528913|528923|528926|528932|528937|528942|528945|528977|529003|529007|529141|529150|529153|529154|529167|529176|529188|529193|529196|529197|529201|529216|529464|529484|529487|529498|529511|529526|529532|529533|529543|529551|529552|529560|529578|529618|529633|529648|529660|529664|529700|529701|529708|529728|529732|529747|529750|529751|529769|529780|529781|529784|529787|529790|529805|529806|529807|529809|529810|529814|529830|529832|529836|529839|529842|529852|529857|529867|529870|529879|529883|529885|529895|529899|529912|529920|529927|529929|529933|529944|529961|529973|530029|530036|530069|530073|530083|530094|530095|530108|530123|530126|530131|530132|530133|530134|530142|530145|530148|530150|530152|530158|530162|530171|530181|530195|530207|530221|530225|530229|530230|530237|530239|530244|530297|530349|530389|530424|530433|530440|530445|530448|530459|530460|530462|530476|530486|530615|530618|530635|530654|530657|530666|530678|530687|530688|530690|530700|530703|530710|530712|530717|530762|530806|530807|530823|530833|530852|530857|530861|530879|530880|530884|530887|530890|530896|530903|530911|530924|530931|530936|530941|530956|530964|530967|530971|530978|530979|530982|530984|531018|531028|531056|531059|531060|531064|531068|531088|531095|531120|531122|531123|531150|531152|531167|531181|531184|531186|531188|531202|531206|531207|531231|531245|531263|531264|531267|531268|531273|531277|531290|531294|531298|531303|531308|531317|531318|531321|531324|531328|531337|531343|531349|531351|531352|531357|531361|531374|531384|531388|531408|531419|531423|531424|531430|531434|531437|531445|531446|531448|531453|531460|531464|531469|531475|531477|531486|531490|531492|531499|531514|531522|531529|531539|531544|531550|531556|531562|531571|531577|531579|531596|531597|531604|531611|531621|531622|531623|531629|531634|531662|531668|531678|531712|531723|531727|531731|531732|531762|531764|531772|531774|531784|531786|531788|531793|531794|531796|531797|531802|531807|531815|531833|531834|531838|531840|531842|531847|531853|531858|531869|531874|531922|531923|531973|532024|532194|532201|532211|532218|532225|532229|532309|532313|532446|532457|532458|532465|532495|532502|532505|532506|532524|532539|532540|532563|532568|532569|532575|532585|532593|532598|532605|532613|532614|532619|532620|532627|532634|532639|532647|532651|532652|532662|532665|532674|532693|532696|532699|532703|532704|532706|532708|532713|532714|532715|532738|532768|532921|532953|532966|532974|532989|532995|533008|533010|533015|533047|533067|533090|533092|533098|533113|533118|533125|533232|533241|533245|533254|533748|533855|534082|534088|534103|534116|534119|534137|534141|534151|534164|534177|534180|534181|534187|534188|534197|534224|534229|534244|534273|534289|534300|534305|534310|534313|534325|534612|534627|534676|534681|534688|534698|534705|534712|535741|535743|535745|536184|536241|536252|536260|536270|536279|536324|536333|536341|536345|536346|536366|536377|536411|536416|536425|536426|536442|536465|536475|536482|536499|536522|536530|536933|538116|538190|538213|538217|538232|538235|538638|538642|538659|538738|538759|538820|538875|538896|539130|539202|539203|539204|539206|539218|539228|539251|539256|539268|539270|539271|539274|539276|539279|539281|539296|539300|539305|539315|539316|539318|539326|539342|539347|539358|539362|539369|539373|539379|539385|539386|539388|539409|539411|540484|540485|540486|540487|540488|540489|540490|540491|540492|540493|540494|540533|540553|541078|544487|544786|544806|544810|544988|545339|545342|545365|545370|545711|545753|545766|545768|545967|545994|546007|546009|546038|547639|547654|547686|547927|547950|548338|548393|549465|550666|550673|550675|550699|550739|551803|551804|551805|551806|551807|551808|551823|551834|551836|551839|551840|551841|551848|551850|551852|551874|551875|551876|551877|551884|551885|551889|551904|551914|551915|551916|551925|551934|551935|551941|552143|552290|552930|552945|552956|552971|552996|553392|553655|556690|556694|556926|556930|556934|557028|557054|557056|557079|557083|557085|557087|557222|557224|557230|557304|557365|557838|557844|557848|557852|557854|557866|557897|557905|557909|557921|558027|558121|558129|558139|558145|558159|558169|558171|558179|558181|558203|558217|558235|558242|558362|558364|558439|558484|558486|558496|558524|558539|558542|558549|558556|558566|558588|558590|558592|558594|558694|558734|558884|558886|558890|558902|558906|558916|559075|559077|559089|559102|559104|559114|559205|559257|559429|559433|559435|559441|559447|559449|559644|559646|559801|559829|559842|559855|559857|559866|559871|559879|559885|559887|559897|559901|559903|559907|559911|559921|559925|559939|559943|559945|559947|559949|559951|559955|559963|559965|559967|559978|560012|560022|560024|560026|560030|560034|560038|560048|560060|560064|560066|560068|560072|560075|560076|560077|560079|560081|560083|560085|560087|560089|560091|560093|560095|560097|560099|560101|560103|560105|560107|560109|560111|560113|560115|560117|560119|560121|560123|560125|560127|560129|560131|560133|560135|560137|560162|560164|560166|560168|560170|560172|560174|560176|560178|560180|560182|560184|560186|560188|560190|560192|560194|560196|560198|560200|560202|560204|560206|560208|560210|560212|560214|560216|560218|560220|560222|560224|560226|560301|560311|560414|560426|560589|560661|560685|560687|560705|560721|560741|560754|560764|560782|560813|560822|560824|560832|560833|561021|561074|561200|561202|561207|561224|561251|561253|561266|561297|561311|561328|561333|561397|561415|561420|561422|561427|561436|561551|561568|561579|561595|561604|561625|561628|561631|561652|561662|561672|561675|561688|561691|561697|561699|561711|561714|561716|561720|561767|561784|561804|561816|562016|562044|562066|562068|562073|562083|562105|562120|562123|562125|562130|562207|562210|562224|562227|562231|562294|562313|562314|562330|562334|562355|562369|562385|562393|562399|562406|562413|562419|562446|562449|562462|562466|562468|562470|562488|562498|562505|562506|562507|562508|562509|562510|562529|562535|562540|562542|562543|562547|562681|562682|562684|562685|562688|562693|562695|562698|562701|562702|562707|562713|562715|562716|562718|562723|562725|562730|562731|562733|562735|562737|562742|562743|562745|562749|562751|562754|562757|562758|562760|562766|562768|562770|562773|562774|562776|562778|562911|562940|563117|563125|563126|563130|563131|563137|563142|563147|563154|563165|563170|563176|563207|563211|563335|563337|563344|563347|563368|563398|563551|563611|563637|563684|563687|563707|563710|563715|563716|563727|563738|563750|563758|563838|563839|563873|563879|563882|563932|563959|563970|563988|563991|563992|564000|564027|564101|564119|564129|564134|564151|564153|564163|564170|564177|564181|564184|564187|564189|564192|564195|564204|564205|564213|564215|564216|564217|564222|564225|564232|564233|564236|564241|564248|564262|564265|564269|564271|564273|564277|564283|564292|564300|564301|564306|564311|564312|564316|564317|564324|564328|564333|564334|564337|564338|564339|564342|564344|564353|564359|564362|564369|564370|564373|564380|564388|564394|564409|564462|564471|564563|564565|564567|564569|564570|564572|564573|564576|564583|564587|564589|564604|564608|564609|564610|564616|564618|564628|564629|564640|564642|564644|564645|564656|564658|564661|564675|564677|564684|564686|564688|564764|564783|564798|564806|564810|564835|564932|565061|565062|565076|565080|565085|565091|565094|565103|565115|565116|565123|565126|565138|565179|565183|565187|565189|565190|565218|565226|565232|565245|565252|565258|565267|565281|565325|565327|565330|565343|565363|565367|565380|565387|565405|565412|565423|565427|565466|565625|565632|565662|565668|565669|565670|565834|565867|565886|565917|565927|565939|565951|565964|565981|565998|566007|566016|566022|566028|566033|566035|566043|566045|566049|566055|566057|566065|566099|566125|566130|566135|566139|566144|566165|566167|566208|566211|566218|566263|566266|566279|566301|566306|566330|566348|566387|566473|566536|566546|566558|566564|566591|566696|566698|566726|566758|566764|566768|566772|566779|566785|566802|566803|566804|566805|566810|566818|566820|566834|566838|566848|566857|566888|566900|566910|566921|566922|566923|566925|566927|566929|566939|566945|566962|566989|566998|567004|567008|567016|567025|567026|567035|567037|567040|567051|567057|567062|567089|567232|567257|567264|567265|567266|567274|567359|567361|567373|567374|567383|567389|567394|567402|567411|567437|567447|567486|567490|567592|567595|567596|567711|567736|567740|567744|567777|567779|567787|567812|567833|567908|567911|567914|567936|567937|567939|567947|567959|567996|567999|568016|568017|568028|568113|568123|568154|568156|568165|568168|568177|568214|568215|568217|568226|568231|568233|568251|568302|568330|568340|568341|568347|568352|568353|568361|568363|568373|568382|568393|568409|568414|568421|568427|568434|568437|568438|568441|568443|568477|568490|568493|568497|568523|568531|568551|568561|568575|568583|568598|568725|568727|568751|568787|568801|568830|568853|568888|568930|568932|568934|568935|568959|568975|568996|568998|569003|569008|569017|569086|569087|569099|569114|569122|569123|569127|569129|569132|569137|569142|569152|569158|569159|569193|569214|569223|569242|569246|569249|569253|569265|569268|569281|569287|569295|569299|569303|569319|569343|569353|569362|569393|569418|569425|569435|569445|569454|569456|569592|569634|569654|569655|569660|569677|569690|569700|569712|569717|569718|569719|569721|569724|569726|569727|569728|569741|569769|569777|569784|569786|569806|569829|569835|569858|569861|569908|569914|569928|569950|569956|569960|569971|569991|570018|570024|570025|570047|570049|570068|570096|570097|570104|570112|570122|570127|570141|570150|570164|570165|570167|570169|570176|570183|570201|570202|570217|570226|570288|570352|570356|570357|570373|570395|570396|570403|570420|570425|570435|570444|570450|570460|570478|570493|570507|570785|570788|570796|570800|570801|570858|570863|570885|570887|570940|570944|570971|570995|571001|571006|571025|571028|571040|571046|571079|571098|571126|571152|571159|571170|571171|571172|571204|571207|571209|571265|571272|571288|571298|571299|571317|571318|571328|571356|571360|571363|571364|571371|571374|571375|571377|571379|571392|571395|571405|571419|571422|571427|571447|571453|571474|571501|571506|571620|571633|571638|571640|571732|571735|571736|571748|571759|571769|571776|571777|571779|571780|571787|571789|571795|571830|571843|571860|571868|571897|571904|571912|571955|572046|572082|572088|572090|572105|572112|572123|572140|572141|572143|572144|572169|572175|572190|572197|572290|572314|572328|572337|572351|572457|572474|572485|572499|572549|572651|572664|572758|572780|572812|572821|572823|572828|572841|572849|572877|572891|572906|572907|572909|573013|573016|573023|573035|573037|573043|573048|573057|573076|573082|573303|573309|573327|573330|573334|573342|573344|573393|573398|573590|573591|573595|573601|573604|573620|573622|573753|573827|573840|573862|573901|573902|573910|573911|573912|573914|573918|573924|573926|573937|573939|573955|573961|573968|573975|573976|573984|573988|574036|574053|574057|574059|574061|574062|574077|574080|574085|574110|574114|574117|574123|574125|574127|574324|574348|574350|574368|574372|574374|574381|574392|574420|574421|574425|574428|574430|574436|574439|574441|574467|574468|574481|574484|574485|574487|574489|574535|574540|574544|574545|574546|574547|574548|574552|574557|574558|574589|574621|574622|574635|574641|574822|574851|574852|574854|574855|574867|575222|575227|575230|575238|575239|575240|575244|575247|575517|575518|575519|575520|575521|575522|575523|575524|575525|575526|575527|575528|575529|575530|575532|575533|575534|575535|575536|575537|575538|575539|575541|575542|575543|575544|575545|575546|575547|575548|575549|575550|575551|575552|575553|575554|575555|575556|575557|575559|575560|575561|575562|575564|575565|575566|575567|575568|575569|575570|575571|575572|575573|575574|575575|575576|575577|575578|575579|575580|575581|575582|575583|575584|575585|575586|575587|575588|575589|575590|575591|575592|575593|575594|575595|575596|575597|575598|575599|575600|575601|575602|575603|575604|575605|575606|575607|575608|575609|575610|575611|575612|575614|575615|575616|575618|575619|575620|575621|575622|575623|575624|575625|575626|575627|575628|575629|575630|575631|575632|575633|575634|575635|575636|575637|575638|575656|575662|575665|575673|575684|575691|575692|575693|575694|575695|575696|575697|575700|575703|575708|575709|575710|575718|575723|575729|575736|575737|575738|575746|575752|575755|575756|575757|575758|575759|575760|575782|575783|575785|575786|575789|575794|575815|575839|575857|575867|575868|575869|575870|575871|575872|575873|575874|575875|575876|575877|575878|575879|575880|575881|575882|575883|575884|575885|575886|575887|575888|575889|575890|575891|575897|575903|575920|575956|575957|575958|575959|575960|575961|575962|575963|575964|575965|575966|575967|575971|575978|575984|575999|576000|576009|576021|576024|576054|576055|576056|576258|576343|578306|578308|578309|579694|579697|579913|581784|581823|587926|588187|590988|608821|609169|609170|609171|609172|609173|609174|609175|609176|609179|609180|609181|609492|609869|609951|610070|610417|610594|610595|610906|610912|610941|610942|610945|610946|610948|610973|610974|610977|610978|611006|611007|611016|611021|611031|611050|611055|611058|611060|611062|611064|611065|611067|611068|611069|611158|611160|611161|611164|611167|611183|611185|611188|611189|611193|611194|611196|611198|611201|611203|611217|611220|611222|611226|611229|611233|611234|611239|611242|611250|611251|611252|611255|611257|611261|611263|611310|611319|611321|611523|611683|611740|611815|611994|611996|612004|612005|612007|612018|612151|612193|612942|614326|614416|615057|616087|616088|616089|616090|616091|616092|616093|616094|616095|616096|616097|616098|616099|616100|616101|616102|616103|616104|616105|616106|616107|616108|616109|616110|616111|616112|616113|616114|616115|616116|616117|616118|616119|616120|616121|616122|616123|616124|616125|616126|616127|616128|616129|616130|616131|616132|616133|616134|616517|616518|616519|616520|616521|616522|616523|616524|616525|616526|616527|616528|616529|616530|616531|616532|616533|616534|616535|616536|616537|616538|616539|616540|616541|616542|616543|616544|616545|616546|616547|616548|616549|616550|616551|616552|616553|616554|616555|616556|616557|616558|616559|616560|616561|616562|616563|616564|616565|616566|616567|616568|616569|616570|616571|616572|616573|616574|616575|616576|616577|616578|616579|616580|616581|616582|616583|616584|616585|616586|616587|616588|616589|616590|616591|616592|616593|616594|616595|616596|616597|616598|616599|616600|616601|616602|616603|616604|616605|616606|616607|616608|616609|616610|616611|616612|616613|616614|616615|616616|616617|616618|616619|616620|616621|616622|616623|616624|616625|616626|616627|616628|616629|616630|616631|616632|616633|616634|616635|616636|616637|616638|616639|616640|616641|616642|616643|616644|616645|616646|616647|616648|616649|616650|616651|616652|616653|616654|616655|616656|616657|616658|616659|616660|616661|616662|616663|616664|616665|616666|616667|616668|616669|616670|616671|616672|616673|616674|616675|616676|616677|616678|616679|616680|616681|616682|616683|616684|616685|616686|616687|616688|616689|616690|616691|616692|616693|616694|616695|616696|616697|616698|616699|616700|616701|616702|616703|616704|616705|616706|616707|616708|616709|616710|616711|616712|616713|616714|616715|616716|616717|616718|616719|616720|616721|616722|616723|616724|616725|616726|616727|616728|616729|616730|616731|616732|616733|616734|616735|616736|616737|616738|616739|616740|616741|616742|616743|616744|616745|616746|616747|616748|616749|616750|616751|616752|616753|616754|616755|616756|616757|616758|616759|616760|616761|616762|616763|616764|616765|616766|616767|616768|616769|616770|616771|616772|616773|616774|616775|616776|616777|616778|616779|616780|616781|616782|616783|616784|616785|616786|616787|616788|616789|616790|616791|616792|616793|616794|616795|616796|616797|616798|616799|616800|616801|616802|616803|616804|616805|616806|616807|616808|616809|616810|616836|616837|616838|616839|616840|616841|616842|616843|616844|616845|616846|616847|616848|616849|616850|616851|616852|616853|616854|616855|616856|616857|616858|616859|616860|616861|616862|616863|616864|616865|616866|616867|616868|616869|616870|616871|616872|616873|616874|616875|616876|616877|616878|616879|616880|616881|616882|616883|616884|616885|616886|616887|616888|616889|616934|616935|616936|616937|616938|616939|616940|616941|616942|616943|616944|616945|616946|616947|616948|616949|616950|616951|616952|616953|616954|616955|616956|616957|616958|616959|616960|616961|616962|616963|616964|616965|616966|616967|616968|616969|616970|616971|616972|616973|616974|616975|616976|616977|616978|616979|616980|616981|616982|616983|616984|616985|616986|616987|616988|616989|616990|616991|616992|616993|616994|616995|616996|616997|616998|616999|617000|617001|617002|617003|617004|617005|617006|617007|617008|617009|617010|617011|617012|617013|617014|617015|617016|617017|617018|617019|617020|617021|617022|617023|617024|617025|617026|617027|617028|617029|617030|617031|617032|617033|617034|617035|617036|617037|617038|617039|617040|617041|617042|617043|617044|617045|617046|617047|617048|617049|617050|617051|617052|617053|617054|617055|617056|617057|617058|617059|617060|617061|617062|617063|617064|617065|617066|617067|617068|617069|617070|617071|617072|617073|617074|617075|617076|617077|617078|617079|617080|617081|617082|617083|617084|617085|617086|617087|617088|617089|617090|617091|617092|617093|617094|617095|617096|617097|617098|617099|617100|617101|617102|617103|617104|617105|617106|617107|617108|617109|617110|617111|617112|617113|617114|617115|617116|617117|617118|617119|617120|617121|617122|617123|617124|617125|617126|617127|617128|617129|617130|617131|617132|617133|617134|617135|617136|617137|617138|617139|617140|617141|617142|617143|617144|617145|617146|617147|617148|617149|617150|617151|617152|617153|617154|617155|617156|617157|617158|617159|617160|617161|617162|617163|617164|617165|617166|617167|617168|617169|617170|617171|617172|617173|617174|617175|617176|617177|617178|617179|617180|617181|617182|617183|617184|617185|617186|617187|617188|617189|617190|617191|617192|617193|617194|617195|617196|617197|617198|617199|617200|617201|617202|617203|617204|617205|617206|617207|617208|617209|617210|617211|617212|617213|617214|617215|617216|617217|617218|617219|617220|617221|617222|617223|617224|617225|617226|617227|617228|617229|617230|617231|617232|617233|617234|617235|617236|617237|617238|617239|617240|617241|617242|617243|617244|617245|617246|617247|617248|617249|617250|617251|617252|617253|617254|617255|617256|617257|617258|617259|617260|617261|617262|617263|617264|617265|617266|617267|617268|617269|617270|617271|617272|617273|617274|617275|617276|617277|617278|617279|617280|617281|617282|617283|617284|617285|617286|617287|617368|617369|617370|617371|617372|617373|617374|617375|617376|617377|617378|617379|617380|617381|617382|617383|617384|617385|617386|617387|617388|617389|617390|617391|617392|617393|617394|617395|617396|617397|617398|617399|617400|617401|617402|617403|617404|617405|617406|617407|617408|617409|617410|617411|617412|617413|617414|617415|617416|617417|617418|617419|617420|617421|617422|617423|617424|617425|617426|617427|617428|617429|617430|617431|617432|617433|617434|617435|617436|617437|617438|617439|617440|617441|617442|617443|617444|617445|617446|617447|617448|617449|617450|617451|617452|617453|617454|617455|617456|617457|617458|617459|617460|617461|617462|617463|617464|617465|617466|617467|617468|617469|617470|617471|617472|617473|617474|617475|617476|617477|617478|617479|617480|617481|617482|617483|617484|617485|617486|617487|617488|617489|617490|617491|617492|617493|617494|617495|617496|617497|617498|617499|617500|617501|617502|617503|617504|617505|617506|617507|617508|617509|617510|617511|617512|617513|617514|617515|617516|617517|617518|617519|617520|617521|617522|617523|617524|617525|617526|617527|617528|617529|617530|617531|617532|617533|617534|617535|617536|617537|617538|617539|617540|617541|617542|617543|617544|617545|617546|617547|617548|617551|617552|617553|617554|617555|617556|617557|617558|617559|617560|617561|617562|617563|617564|617565|617566|617567|617568|617569|617570|617571|617572|617573|617574|617575|617576|617577|617578|617579|617580|617581|617582|617583|617584|617585|617586|617587|617588|617589|617590|617591|617592|617593|617594|617595|617596|617597|617598|617599|617600|617601|617602|617603|617604|617605|617606|617607|617608|617609|617610|617611|617618|617619|617620|617621|617622|617623|617624|617625|617626|617627|617628|617629|617630|617631|617632|617633|617634|617635|617636|617637|617638|617639|617640|617641|617642|617643|617644|617645|617646|617647|617648|617649|617650|617651|617652|617653|617654|617655|617656|617657|617658|617659|617660|617661|617662|617663|617664|617665|617666|617667|617668|617669|617670|617671|617672|617673|617674|617675|617676|617677|617678|617679|617680|617681|617682|617683|617684|617685|617686|617687|617688|617689|617690|617691|617692|617693|617694|617695|617696|617697|617698|617699|617700|617701|617702|617703|617704|617705|617706|617707|617708|617709|617710|617711|617712|617713|617714|617715|617716|617717|617718|617719|617720|617721|617722|617723|617724|617725|617726|617727|617728|617729|617730|617731|617732|617733|617734|617735|617736|617737|617738|617739|617740|617741|617742|617743|617744|617745|617746|617747|617748|617749|617750|617751|617752|617753|617754|617755|617756|617757|617758|617759|617760|617761|617762|617763|617764|617765|617766|617767|617768|617769|617770|617771|617772|617773|617774|617775|617776|617777|617778|617779|617780|617781|617782|617783|617784|617785|617786|617787|617788|617789|617790|617791|617792|617793|617794|617795|617796|617797|617798|617799|617800|617801|617802|617803|617804|617805|617806|617807|617808|617809|617810|617811|617812|617813|617814|617815|617816|617817|617818|617819|617820|617821|617822|617823|617824|617825|617826|617827|617828|617829|617830|617831|617832|617833|617834|617835|617836|617837|617838|617839|617840|617841|617842|617843|617844|617845|617846|617847|617848|617849|617850|617912|617913|617914|617915|617916|617917|617918|617919|617920|617921|617922|617923|617924|617925|617926|617927|617928|617929|617930|617931|617932|617933|617934|617935|617936|617937|617938|617939|617940|617941|617942|617943|617944|617945|617946|617947|617948|617949|617950|617951|617952|617953|617954|617955|617956|617957|617958|617959|617960|617961|617962|617963|617964|617965|617966|617967|617968|617969|617970|617971|617972|617973|617974|617975|617976|617977|617978|617979|617980|617981|617982|617983|617984|617985|617986|617987|617988|617989|617990|617991|617992|617993|617994|617995|617996|617997|617998|617999|618000|618001|618002|618003|618004|618005|618006|618007|618008|618009|618010|618011|618012|618013|618014|618015|618016|618017|618018|618019|618020|618021|618022|618023|618024|618025|618026|618027|618028|618029|618030|618031|618032|618033|618034|618035|618036|618037|618038|618039|618040|618041|618042|618043|618044|618045|618046|618047|618048|618049|618050|618051|618052|618053|618054|618055|618056|618057|618058|618059|618060|618061|618062|618063|618064|618065|618066|618067|618068|618069|618070|618071|618072|618073|618074|618075|618076|618077|618078|618079|618080|618081|618082|618083|618084|618085|618086|618087|618088|618089|618090|618091|618092|618093|618094|618095|618096|618097|618098|618099|618100|618101|618102|618103|618104|618105|618106|618107|618108|618109|618110|618111|618112|618113|618114|618115|618116|618117|618118|618119|618120|618121|618122|618123|618124|618125|618126|618127|618128|618129|618130|618131|618132|618133|618134|618135|618136|618137|618138|618139|618140|618141|618142|618143|618144|618145|618146|618147|618148|618149|618150|618151|618152|618153|618154|618155|618156|618157|618158|618159|618160|618161|618162|618163|618164|618165|618166|618167|618168|618169|618170|618171|618172|618173|618174|618175|618176|618177|618178|618179|618180|618181|618182|618183|618184|618185|618186|618187|618188|618189|618190|618191|618192|618193|618194|618195|618196|618197|618198|618199|618200|618201|618202|618203|618204|618205|618206|618207|618208|618209|618210|618211|618212|618213|618345|618346|618347|618348|618349|618350|618351|618352|618353|618354|618355|618356|618357|618358|618359|618360|618361|618362|618363|618364|618365|618366|618367|618368|618369|618370|618371|618372|618373|618374|618375|618376|618377|618378|618379|618380|618381|618382|618383|618384|618385|618386|618387|618388|618389|618390|618391|618392|618393|618394|618395|618396|618397|618398|618399|618400|618401|618402|618403|618404|618405|618406|618407|618408|618409|618410|618411|618412|618413|618414|618415|618416|618417|618418|618419|618420|618421|618422|618423|618424|618425|618426|618427|618428|618429|618430|618431|618432|618433|618434|618435|618436|618437|618438|618439|618440|618441|618442|618443|618444|618445|618446|618447|618448|618449|618450|618451|618452|618453|618454|618455|618456|618457|618458|618459|618460|618461|618462|618463|618464|618465|618466|618467|618468|618469|618470|618471|618472|618473|618474|618475|618476|618477|618478|618479|618480|618481|618482|618483|618484|618485|618486|618487|618488|618489|618490|618491|618492|618493|618494|618495|618496|618497|618498|618499|618500|618501|618502|618503|618504|618505|618506|618507|618508|618509|618510|618511|618512|618513|618514|618515|618516|618517|618518|618519|618520|618521|618522|618523|618524|618525|618526|618527|618528|618529|618530|618531|618532|618533|618534|618535|618536|618537|618538|618539|618540|618541|618542|618543|618544|618545|618546|618547|618548|618549|618550|618551|618552|618553|618554|618555|618556|618557|618558|618559|618560|618561|618562|618563|618564|618565|618566|618567|618568|618569|618570|618571|618572|618573|618574|618575|618576|618577|618578|618579|618580|618581|618582|618583|618584|618585|618586|618587|618588|618589|618590|618591|618592|618593|618594|618595|618596|618597|618598|618599|618600|618601|618602|618603|618604|618605|618606|618607|618608|618609|618610|618611|618612|618613|618614|618615|618616|618617|618618|618619|618620|618621|618622|618623|618624|618625|618626|618627|618628|618629|618630|618631|618632|618633|618634|618635|618636|618637|618638|618639|618640|618641|618642|618643|618644|618645|618646|618647|618648|618649|618650|618651|618652|618653|618654|618655|618656|618657|618658|618659|618660|618661|618662|618663|618664|618665|618666|618667|618668|618669|618670|618671|618672|618673|618674|618675|618676|618677|618678|618679|618680|618681|618682|618683|618684|618685|618686|618687|618688|618689|618690|618691|618692|618693|618694|618695|618696|618697|618698|618699|618700|618701|618702|618703|618704|618705|618706|618707|618708|618709|618710|618711|618712|618713|618714|618715|618716|618717|618718|618719|618720|618721|618722|618723|618724|618725|618726|618727|618728|618729|618730|618731|618732|618733|618734|618735|618736|618737|618738|618739|618740|618741|618742|618743|618744|618745|618746|618747|618748|618749|618750|618751|618752|618753|618754|618755|618756|618757|618758|618759|618760|618761|618762|618763|618764|618765|618766|618767|618768|618769|618770|618771|618772|618773|618774|618775|618776|618777|618778|618779|618780|618781|618782|618783|618784|618785|618786|618787|618788|618789|618790|618791|618792|618793|618794|618795|618796|618797|618798|618799|618800|618801|618802|618803|618804|618805|618806|618807|618808|618809|618810|618811|618812|618813|618814|618815|618816|618817|618818|618819|618820|618821|618822|618823|618824|618825|618826|618827|618828|618829|618830|618831|618832|618833|618834|618835|618836|618837|618838|618839|618840|618841|618842|618843|618888|618889|618890|618891|618892|618893|618894|618895|618896|618897|618898|618899|618900|618901|618902|618903|618904|618905|618906|618907|618908|618909|618910|618911|618912|618913|618914|618915|618916|618917|618918|618919|618920|618921|618922|618923|618924|618925|618926|618927|618972|618973|618974|618975|618976|618977|618978|618979|618980|618981|618982|618983|618984|618985|618986|618987|618988|618989|618990|618991|618992|618993|618994|618995|618996|618997|618998|618999|619000|619001|619002|619003|619012|619013|619014|619015|619016|619017|619018|619019|619020|619021|619022|619023|619024|619025|619026|619027|619028|619029|619030|619031|619032|619033|619034|619035|619036|619037|619038|619039|619040|619041|619042|619043|619044|619045|619050|619052|619059|619062|619063|619064|619065|619066|619067|619068|619069|619070|619071|619072|619073|619074|619076|619077|619079|619080|619081|619084|619087|619088|619089|619091|619097|619099|619101|619104|619105|619106|619107|619108|619109|619111|619113|619115|619116|619121|619124|619126|619127|619128|619129|619130|619133|619134|619137|619139|619140|619141|619142|619143|619144|619145|619146|619147|619148|619149|619151|619153|619154|619155|619156|619157|619158|619159|619160|619161|619162|619163|619164|619165|619166|619167|619168|619169|619170|619171|619173|619176|619177|619180|619181|619183|619184|619185|619186|619187|619188|619189|619190|619191|619192|619194|619195|619196|619198|619199|619200|619201|619202|619203|619204|619205|619206|619207|619208|619209|619210|619211|619212|619213|619214|619216|619217|619219|619220|619221|619222|619223|619224|619225|619226|619227|619228|619229|619230|619231|619232|619233|619234|619235|619236|619237|619238|619239|619240|619241|619243|619244|619247|619248|619250|619251|619252|619253|619254|619255|619256|619257|619258|619259|619260|619261|619262|619263|619264|619266|619267|619268|619269|619271|619272|619273|619274|619275|619276|619279|619282|619283|619286|619287|619288|619289|619290|619291|619292|619293|619294|619295|619296|619297|619298|619299|619300|619301|619302|619303|619304|619305|619306|619307|619308|619309|619310|619311|619312|619313|619314|619315|619316|619317|619318|619319|619320|619321|619322|619323|619324|619325|619326|619327|619328|619329|619330|619331|619332|619333|619334|619335|619336|619337|619338|619339|619340|619341|619342|619343|619344|619346|619347|619348|619349|619350|619351|619352|619353|619354|619355|619356|619357|619358|619359|619360|619361|619362|619363|619364|619365|619366|619368|619369|619370|619371|619372|619373|619375|619376|619377|619378|619379|619380|619381|619382|619383|619384|619385|619386|619387|619388|619389|619390|619391|619392|619393|619394|619395|619396|619397|619398|619399|619400|619401|619402|619404|619405|619406|619408|619409|619410|619411|619412|619413|619414|619415|619416|619418|619419|619420|619421|619423|619425|619426|619429|619430|619431|619432|619433|619434|619435|619436|619437|619438|619439|619440|619441|619442|619443|619445|619449|619451|619452|619454|619456|619458|619460|619461|619465|619467|619468|619469|619470|619471|619472|619473|619474|619475|619476|619477|619478|619479|619480|619481|619482|619483|619484|619485|619486|619487|619488|619489|619490|619491|619492|619493|619494|619495|619496|619497|619498|619499|619500|619503|619504|619505|619507|619508|619510|619511|619512|619513|619514|619517|619518|619520|619521|619522|619523|619524|619525|619526|619528|619529|619530|619531|619532|619534|619536|619537|619538|619540|619541|619542|619543|619545|619546|619547|619548|619549|619550|619551|619552|619553|619554|619556|619557|619558|619559|619560|619561|619562|619563|619564|619565|619566|619567|619568|619569|619570|619571|619572|619573|619574|619575|619576|619577|619578|619579|619581|619582|619583|619584|619585|619586|619587|619589|619590|619591|619592|619593|619598|619599|619601|619603|619604|619605|619606|619607|619608|619609|619610|619611|619612|619613|619614|619615|619616|619617|619618|619619|619620|619621|619622|619623|619624|619625|619626|619627|619628|619629|619630|619631|619632|619633|619634|619635|619636|619637|619638|619639|619640|619641|619642|619643|619644|619645|619646|619647|619648|619649|619650|619651|619652|619653|619654|619655|619656|619657|619658|619659|619660|619661|619662|619663|619664|619665|619666|619667|619668|619669|619670|619671|619672|619674|619676|619677|619678|619679|619680|619683|619684|619685|619687|619690|619691|619692|619693|619694|619695|619696|619697|619698|619699|619700|619701|619702|619703|619704|619705|619706|619707|619708|619709|619710|619711|619712|619713|619714|619715|619716|619717|619718|619719|619720|619721|619722|619723|619724|619725|619726|619727|619728|619729|619730|619731|619732|619733|619734|619735|619736|619737|619738|619739|619740|619741|619742|619743|619744|619745|619746|619747|619748|619749|619750|619751|619752|619753|619754|619755|619756|619757|619758|619759|619760|619761|619762|619763|619764|619765|619766|619768|619769|619770|619771|619772|619773|619774|619775|619776|619777|619779|619780|619784|619785|619786|619787|619788|619789|619790|619793|619794|619795|619796|619798|619799|619800|619802|619803|619804|619806|619807|619808|619809|619810|619812|619813|619814|619815|619816|619817|619818|619819|619820|619821|619822|621122|621123|621139|621155|621156|621157|621225|621268|621273|621275|621285|621327|621329|621330|621331|621336|621392|621406|621409|621422|621426|621428|621446|621450|621521|621528|621533|621534|621546|621549|621558|621561|621570|621589|621592|621598|621599|621601|621603|621605|621606|621649|621723|621830|621925|621931|622450|622586|622620|622628|622667|622670|623004|623217|623635|625973|627031|627032|627085|627099|627102|627114|627168|627182|627630|627634|627647|627663|627665|628079|628080|628082|628088|628092|628095|628103|629360|629362|629365|629375|629377|629378|629380|629385|629389|629390|629400|629404|629409|629411|629414|629421|629422|629426|629817|629824|629825|629827|629828|629829|629832|630074|630077|630080|630084|630102|630104|630107|630120|630123|630124|630126|630130|630133|630135|630138|630140|630141|630156|630163|630169|630175|630179|630194|630196|630199|630218|630226|630232|630233|630238|630250|630254|630257|630259|630263|630264|630268|630275|630276|630279|630280|630287|630288|630294|630314|630334|630335|630336|630341|630342|630350|630351|630352|630359|630366|630631|630647|630649|630698|630704|630712|630715|631194|631201|631205|631208|631211|631212|631214|631218|631223|631225|631227|631229|631237|631257|631264|631701|631702|631703|631704|631705|631708|631713|631714|631731|631735|631740|632216|632217|632218|632265|632310|632361|632380|632419|632559|632565|632566|632567|632574|632576|632591|632599|632604|632608|632622|632624|632627|632644|632647|632648|632658|632663|632664|632666|632669|632675|632678|632680|632685|632695|632698|632699|632707|632711|632712|632726|632729|632740|632745|632754|632756|632757|632763|632768|632774|632778|632794|632803|632806|632810|632816|632823|632824|632825|632826|632828|632831|632833|632834|632836|632838|632839|632842|632847|632848|632858|632861|632864|632865|633078|633079|633080|633081|633082|633083|633084|633085|633086|633087|633088|633089|633090|633091|633092|633093|633094|633095|633096|633097|633098|633099|633100|633101|633102|633103|633104|633105|633106|633107|633108|633109|633110|633111|633112|633113|633114|633115|633116|633117|633118|633119|633120|633121|633122|633123|633124|633125|633126|633127|633128|633129|633130|633131|633132|633133|633134|633135|633136|633137|633138|633139|633140|633141|633142|633143|633144|633145|633146|633147|633148|633149|633150|633151|633152|633153|633154|633155|633156|633157|633158|633159|633160|633161|633162|633163|633164|633165|633166|633167|633168|633169|633170|633171|633172|633173|633174|633175|633176|633177|633178|633179|633180|633181|633182|633183|633184|633185|633186|633187|633188|633279|633285|633286|633290|633292|633295|633300|633308|633313|633317|633323|633326|633332|633333|633338|633342|633343|633347|633367|633372|633375|633376|633379|633396|633397|633409|633423|633440|633442|633453|633851|633866|633874|633878|633891|633894|633899|633900|633928|634040|634041|634043|634062|634066|634076|634082|634087|634089|634092|634097|634105|634106|634107|634108|634112|634113|634118|634128|634135|634145|634146|634147|634148|634151|634154|634160|634164|634165|634191|634206|634207|634209|634213|634214|634220|634222|634223|634233|634235|634236|634237|634244|634245|634247|634248|634251|634261|634264|634268|634270|634272|634280|634282|634284|634285|634289|634292|634299|634307|634308|634316|634319|634332|634333|634335|634341|634342|634349|634352|634355|634357|634359|634364|634367|634379|634382|634388|634393|634402|634408|634409|634410|634411|634412|634414|634419|634422|634424|634425|634438|634441|634444|635452|635460|635468|635474|635487|635495|635508|635509|635512|635524|635525|635530|635577|635590|635591|635592|635595|635598|635600|635606|635613|635616|635618|635625|635956|636224|636227|636232|636233|636234|636250|636261|636263|636275|636279|636290|636291|636298|636303|637412|637434|637438|637443|637446|637453|637461|637468|637472|637473|637820|637825|637836|637853|637855|637856|637904|637927|638149|638155|638162|638168|638176|638180|638435|638437|638439|638447|638449|638450|638451|638462|638476|638478|638482|638483|638487|638498|638509|638516|638518|638523|638524|638529|638539|638542|638545|638546|638557|638561|638565|638570|638573|638578|638590|638592|638612|638613|638616|638618|638626|638677|638687|638689|638690|638691|638692|638703|638705|638880|638881|638889|638895|638922|638932|639212|639213|639216|639229|639231|639235|639237|639238|639262|639273|639281|639291|639372|639377|639383|639385|639397|639401|639406|639411|639414|639417|639422|639438|639439|639443|639445|639446|639455|639459|639469|639470|639471|639474|639478|639479|639483|639489|639492|639504|639519|639520|639537|639545|639547|639555|639567|639573|639576|639582|639587|639588|639595|639597|639604|639605|639606|639622|639633|639635|639637|639641|639646|639661|639673|639676|639677|639700|639704|639709|639710|640178|640182|640186|640187|640193|640276|640285|640286|640312|640507|640508|640512|640515|640517|640518|640675|640677|640678|640679|640680|640682|640686|640690|640692|640698|640933|640935|640941|640943|640945|640953|640954|641327|641341|641344|641634|641636|641637|641649|641651|641658|641684|641685|641688|641698|641699|641707|641715|641725|641730|641736|641737|641750|641753|641756|641770|641779|641789|641790|641800|641808|641809|641814|641816|641823|641825|641837|641838|641842|641848|641850|641856|641862|641863|641871|641876|641877|641882|641900|641901|641906|641911|641919|641924|641949|641957|641979|641996|642628|642631|642632|642792|642807|642816|642817|642822|642824|642828|642837|642840|642851|642857|642860|642867|642876|642878|642879|642880|642881|642898|642899|642904|642909|642910|642918|642921|642931|642938|642941|642942|642948|642951|642969|643633|643634|643635|643640|643648|643661|643669|643671|643675|643676|643686|643696|643697|643699|643701|643704|643707|643711|643723|643729|643730|643965|643968|643971|643974|643977|643981|643982|643983|643985|643986|643987|643988|643990|643993|643995|644000|644004|644007|644008|644014|644015|644023|644027|644030|644032|644041|644047|644049|644050|644052|644055|644057|644059|644067|644069|644073|644077|644078|644080|644081|644083|644084|644085|644090|644092|644093|644096|644100|644105|644109|644111|644112|644113|644115|644120|644130|644142|644151|644161|644191|644196|644206|644213|644221|644224|644251|644263|644271|644280|644283|644315|644321|644340|644342|644343|644358|644362|644365|644371|644372|644389|644395|644409|644410|644414|644415|644422|644428|644429|644441|644455|644457|644460|644462|644464|644465|644813|644822|644826|644852|644853|644857|644860|644864|644875|644887|644889|645349|645350|645357|645363|645365|645367|645368|645369|645376|645383|645386|645393|645394|645395|645396|645435|645438|645450|645469|645500|645504|645507|645514|645531|645533|645546|645552|645553|645556|645558|645561|645562|645577|645620|645632|645651|645669|645677|645727|645747|645776|645798|645800|645801|645804|645810|645822|645834|645836|645841|645843|645847|645848|645919|645922|645931|645934|645972|645973|645990|645991|645992|645996|646022|646025|646026|646031|646043|646046|646049|646064|646238|646241|646247|646254|646259|646269|646275|646281|646295|646298|646302|646306|646319|646328|646329|646340|646343|646344|646348|646349|646350|646351|646352|646367|646369|646370|646474|646480|646502|646543|646549|646558|646559|646568|646607|646727|646729|646732|646735|646743|646756|646768|646787|647299|647303|647309|647314|647315|647317|647318|647319|647483|647488|647489|647494|647497|647499|647504|647514|647516|647519|647523|647525|647530|647531|647532|647538|647540|647541|647547|647549|647559|647561|647562|647563|647566|647567|647569|647581|647583|647587|647603|647612|647654|647656|647668|647669|647673|647677|647680|647688|647693|648345|648350|648351|648357|648358|648391|649217|649253|649256|649263|649289|649292|649293|649299|649304|649313|649318|649324|649333|649338|649340|649341|649352|649356|649363|649367|650382|650683|650709|650763|650937|650940|650997|651014|651056|651221|651223|651235|651275|651276|651282|651283|651286|651303|651326|651334|651350|651351|651356|651359|651363|651370|651373|651379|651392|651398|651410|651421|651432|651449|651632|651704|651989|652006|652068|652077|652090|652093|652106|652153|652236|652243|652302|652405|652420|652450|652454|652483|652522|652532|652700|652717|652836|652855|652899|652932|652961|653033|653069|653072|653135|653181|653222|653223|653234|653247|653269|653275|653483|653495|653524|653702|654494|654784|655085|655108|655417|655455|655457|655458|655488|655562|655622|655623|655768|655770|655978|655979|656177|656199|656349|656357|656379|656382|656438|656496|656687|662975|665769|676947|676948|676949|676950|676951|676952|676953|676954|677029|677030|677031|677334|677460|677973|677979|678161|678166|678259|678284|678344|678493|678561|678592|678593|678606|678636|678687|678704|678722|678757|679825|682218|683293|683295|683296|683502|683503|683592|683681|683682|683684|683686|683687|683690|683691|683695|683697|683698|683699|684056|684058|684122|684123|684504|684529|684565|684663|684773|684774|684776|685170|685584|685600|685673|685674|685812|686217|686455|686517|686519|686522|686529|686535|686540|686569|686570|686572|686616|686652|686653|686655|686660|686661|686666|686679|686680|686681|686682|686684|686688|686738|686739|686741|686745|686955|686956|686962|686964|687084|687321|687554|687555|687557|687558|687559|687561|687569|687571|687572|687573|687576|687578|687579|687581|687627|687630|687634|687635|687705|687795|687797|687809|687920|687921|687922|688173|688174|688175|688176|688379|688380|688382|688383|688500|688501|688506|688507|688509|688512|688537|688540|688541|688546|688550|688628|688746|688748|688759|688761|688764|688771|688806|688810|688818|688819|688949|688950|688952|688953|689154|689267|689268|689273|689274|689780|689784|689785|690200|690406|690417|690419|690421|690432|690562|690624|690626|691128|691131|691180|691235|691237|691472|691567|691568|691583|691585|691587|691593|691643|691649|691730|691732|691734|691739|691740|691847|692105|692107|692108|692123|692124|692128|692258|692524|692714|692715|692720|692724|692732|692734|692743|692744|692749|692764|692766|692828|692831|692833|692837|692839|692895|692921|692924|693063|693081|693157|693160|693383|693384|693385|693389|693390|693391|693623|693624|693629|693630|693631|693632|693754|693756|693759|693765|693770|693771|693774|693803|693811|693812|693814|693821|693822|693825|693826|694053|694054|694056|694057|694065|694070|694071|694075|694076|694081|694138|694209|694280|694312|694314|694315|694316|694317|694318|694320|694321|694329|694330|694505|694695|694701|694702|694706|695143|695258|695259|695260|695261|695262|695398|695399|695478|695743|695762|695869|697542|697727|697728|697729|697730|698048|698225|698226|698807|698810|699194|699195|699197|699770|699796|699798|701126|701128|701453|702218|702219|702220|702458|702703|702708|703553|703554|703991|704305|704328|704735|704750|709560|710046|710047|710048|710049|710050|710051|712086|712088|712101|712495|714793|715262|715264|715649|717395|718840|718841|718842|720998|721001|721150|721426|721567|721571|721572|721574|723401|723402|723671|723698|724183|724572|725504|725875|725876|725878|726351|726486|726489|727096|727153|727379|729132|729135|730331|732317|733663|734802|734839|735235|735236|735237|735238|735239|735899|736039|736762|737487|737626|738106|738215|738803|739061|739062|739410|739418|739419|739420|739423|739426|739431|740676|740679|740681|741516|741528|741532|741537|742786|742787|744938|745151|746526|747250|747251|747255|747669|747671|747674|747675|747679|748433|749130|749131|749136|749205|749207|749208|749624|749625|749627|749628|749630|749631|749632|749633|750357|750714|751497|751844|751850|751855|751856|752313|752401|752402|752404|752406|752410|752411|752779|752782|753243|753528|753798|753801|753802|753812|753813|754223|754224|754226|754228|754231|754234|754239|754240|754243|754790|754975|754981|754989|754995|755005|755032|755335|755336|755747|755750|755754|755756|755762|755763|755779|755875|755876|756004|756007|756155|756481|756483|756640|756644|756646|756652|756708|758024|758025|759038|759129|759353|759374|759534|759751|760005|760226|760265|760527|760528|760596|760751|760752|760939|761307|761325|761813|761970|761971|761974|761976|761978|762870|762873|762876|762877|763191|763268|763270|763271|763273|763274|763275|763278|763279|763297|763300|763301|763303|763308|763315|763318|763323|763331|763332|763335|763336|763341|763342|763343|763503|763829|763840|764080|764081|764086|764506|764516|764542|764679|764683|764685|764688|764696|764702|764703|764705|764710|764722|764727|764731|764824|764829|764830|764832|764833|764838|764840|764842|764843|764845|764846|764851|764854|764857|764858|764861|764862|764863|764890|764892|764902|765082|765089|765239|765241|765246|765248|765265|765266|765268|765274|765284|765287|765288|765292|765295|765297|765304|765305|765312|765325|765326|765328|765332|765335|765346|765347|765350|766008|766010|766011|766016|766330|766343|766345|766924|766925|767206|767223|767523|767528|767535|767543|767730|768021|768022|768037|768039|768041|768042|768125|768130|768133|768134|768139|768154|768158|768163|768169|768171|768175|768177|768179|768181|768185|768190|768203|768582|768674|769010|769011|769460|769463|769466|769467|769476|769477|769481|769482|769483|769519|769524|769529|769530|769537|769538|769869|769961|769962|769973|769974|769975|769978|769989|769996|769997|769998|769999|770000|770003|770012|770014|770017|770421|770434|770440|770598|770601|770606|770609|770614|770616|770619|770623|770624|770629|770631|770634|770636|770638|770642|770644|770665|770669|770689|770697|770705|770725|770727|770731|770732|770742|770745|770747|770750|770784|770785|770789|770790|770794|771014|771017|771019|771024|771026|771342|771357|771367|771372|771373|771376|771386|771530|771531|771546|771673|771679|771690|771697|771702|771703|771737|771857|772200|772306|772308|772314|772320|772329|772330|772334|772351|772353|772382|772392|772393|772395|772846|772849|772852|772853|772854|773480|773487|773500|774748|774852|774854|774869|775586|775599|775685|775692|775722|775732|775747|775752|775773|776251|776292|776295|776297|776303|776367|776373|776496|776654|776684|776840|777482|778239|779037|779232|780709|781151|781152|781372|781374|781375|781378|781387|781391|781645|781646|781651|781955|782079|782085|782087|782090|782132|782133|782134|782135|782140|782141|782369|782761|782825|782896|783166|783170|783485|783524|783754|783758|783768|783822|783833|783837|783851|783852|783856|784299|784340|784341|784444|784446|784449|784570|784571|784572|784573|784575|784580|784581|784584|784585|784587|784592|784841|785168|785175|785201|785209|785220|785221|785223|785226|785348|785357|785359|785499|785500|785501|785503|785511|785513|785532|785584|785588|785594|785601|785603|785628|785652|785655|785661|785672|785673|785674|785675|785677|785706|785718|785756|785757|786006|786007|786013|786046|786570|787095|787103|787224|787227|787263|787304|787307|787309|787420|787444|787798|787842|787845|787847|788122|788247|788864|789409|789422|789423|789425|789429|789432|789438|789453|789457|789462|789465|789478|789482|789484|789486|789487|789488|789545|789547|789558|789565|789567|789568|789570|789572|789575|789582|789600|789603|789604|789608|789609|789611|789613|789617|789618|789626|789628|789633|789640|789663|789676|789688|789700|789754|789755|789756|789757|789758|789759|789760|789761|789762|789763|789764|789765|789766|789767|789768|789769|789770|789771|789772|789773|789774|789775|790184|790278|790313|790386|790478|790490|790492|790493|790565|790818|790819|791036|791058|791059|791090|791320|791512|791636|791774|791797|791804|791812|793403|795153|795454|795606|795608|795691|795725|796402|796512|796513|797288|797363|797520|797545|798083|799421|799657|800019|801662|804935|806113|806452|806453|806454|806455|806456|806457|806458|806459|806460|806461|806462|806463|806464|806465|806466|806467|806468|806469|806470|806471|806472|806473|806474|806475|806476|806477|806478|806479|806480|806481|806482|806483|806484|806485|806486|806487|806488|806489|806490|806491|806492|806493|806494|806495|806496|806497|806498|806499|806500|806501|806502|806503|806504|806505|806506|806507|806508|806509|806510|806511|806512|806513|806514|806515|806516|806517|806518|806519|806520|806521|806522|806523|806524|806525|806526|806527|806528|806529|806530|806531|806532|806533|806534|806535|806536|806537|806538|806539|806540|806541|806542|806543|806544|806545|806546|806547|806548|806549|806550|806551|806552|806553|806554|806555|806556|806557|806558|806559|806560|806561|806562|806563|806564|806565|806566|806567|806568|806569|806570|806571|806572|806573|806574|806575|806576|806577|806578|806579|806580|806581|806582|806583|806584|806585|806586|806587|806588|806589|806590|806591|806592|806593|806594|806595|806596|806597|806598|806599|806600|806601|806602|806603|806604|806605|806606|806607|806608|806609|806610|806611|806612|806613|806614|806615|806616|806617|806618|806619|806620|806621|806622|806623|806624|806625|806626|806627|806628|806629|806630|806631|806632|806633|806634|806635|806636|806637|806638|806639|806640|806641|806642|806643|806644|806645|806646|806647|806648|806649|806650|806651|806652|806653|806654|806655|806656|806657|806658|806659|806660|806661|806662|806663|806664|806665|806666|806667|806668|806669|806670|806671|806672|806673|806674|806675|806676|806677|806678|806679|806680|806681|806682|806683|806684|806685|806686|806687|806688|806689|806690|806691|806692|806693|806694|806695|806696|806697|806698|806699|806700|806701|806702|806703|806704|806705|806706|806707|806708|806709|806710|806711|806712|806713|806714|806715|806716|806717|806718|806719|806720|806721|806722|806723|806724|806725|806726|806727|806728|806729|806730|806731|806732|806733|806734|806735|806736|806737|806738|806739|806740|806741|806742|806743|806744|806745|806746|806747|806748|806749|806750|806751|806752|806753|806754|806755|806756|806757|806758|806759|806760|806761|806762|806763|806764|806765|806766|806767|806768|806769|806770|806771|806772|806773|806774|806775|806776|806777|806778|806779|806780|806781|806782|806783|806784|806785|806786|806787|806788|806789|806790|806791|806792|806793|806794|806795|806796|806797|806798|806799|806800|806801|806802|806803|806804|806805|806806|806807|806808|806809|806810|806811|806812|806813|806814|806815|806816|806817|806818|806819|806820|806821|806822|806823|806824|806825|806826|806827|806828|806829|806830|806831|806832|806833|806834|806835|806836|806837|806838|806839|806840|806841|806842|806843|806844|806845|806846|806847|806848|806849|806850|806851|806852|806853|806854|806855|806856|806857|806858|806859|806860|806861|806862|806863|806864|806865|806866|806867|806868|806869|806870|806871|806872|806873|806874|806875|806876|806877|806878|806879|806880|806881|806882|806883|806884|806885|806886|806887|806888|806889|806890|806891|806892|806893|806894|806895|806896|806897|806898|806899|806900|806901|806902|806903|806904|806905|806906|806907|806908|806909|806910|806911|806912|806913|806914|806915|806916|806917|806918|806919|806920|806921|806922|806923|806924|806925|806926|806927|806928|806929|806930|806931|806932|806933|806934|806935|806936|806937|806938|806939|806940|806941|806942|806943|806944|806945|806946|806947|806948|806949|806950|806951|806952|806953|806954|806955|806956|806957|806958|806959|806960|806961|806962|806963|806964|806965|806966|806967|806968|806969|806970|806971|806972|806973|806974|806975|806976|806977|806978|806979|806980|806981|806982|806983|806984|806985|806986|806987|806988|806989|806990|806991|806992|806993|806994|806995|806996|806997|806998|806999|807000|807001|807002|807003|807004|807005|807006|807007|807008|807009|807010|807011|807012|807013|807014|807015|807016|807017|807018|807019|807020|807021|807022|807023|807024|807025|807026|807027|807028|807029|807030|807031|807032|807033|807034|807035|807036|807037|807038|807039|807040|807041|807042|807043|807044|807045|807046|807047|807048|807049|807050|807051|807052|807053|807054|807055|807056|807057|807058|807059|807060|807061|807062|807063|807064|807065|807066|807067|807068|807069|807070|807071|807072|807073|807074|807075|807076|807077|807078|807079|807080|807081|807082|807083|807084|807085|807086|807087|807088|807089|807090|807091|807092|807093|807094|807095|807096|807097|807098|807099|807100|807101|807102|807103|807104|807105|807106|807107|807108|807109|807110|807111|807112|807113|807114|807115|807116|807117|807118|807119|807120|807121|807122|807123|807124|807125|807126|807127|807128|807129|807130|807131|807132|807133|807134|807135|807136|807137|807138|807139|807140|807141|807142|807143|807144|807145|807146|807147|807148|807149|807150|807151|807152|807153|807154|807155|807156|807157|807158|807159|807160|807161|807162|807163|807164|807165|807166|807167|807168|807169|807170|807171|807172|807173|807174|807175|807176|807177|807178|807179|807180|807181|807182|807183|807184|807185|807186|807187|807188|807189|807190|807191|807192|807193|807194|807195|807196|807197|807198|807199|807200|807201|807202|807203|807204|807205|807206|807207|807208|807209|807210|807211|807212|807213|807214|807215|807216|807217|807218|807219|807220|807221|807222|807223|807224|807225|807226|807227|807228|807229|807230|807231|807232|807233|807234|807235|807236|807237|807238|807239|807240|807241|807242|807243|807244|807245|807246|807247|807248|807249|807250|807251|807252|807253|807254|807255|807256|807257|807258|807259|807260|807261|807262|807263|807264|807265|807266|807267|807268|807269|807270|807271|807272|807273|807274|807275|807276|807277|807278|807279|807280|807281|807282|807283|807284|807285|807286|807287|807288|807289|807290|807291|807292|807293|807294|807295|807296|807297|807298|807299|807300|807301|807302|807303|807304|807305|807306|807307|807308|807309|807310|807311|807312|807313|807314|807315|807316|807317|807318|807319|807320|807321|807322|807323|807324|807325|807326|807327|807328|807329|807330|807331|807332|807333|807334|807335|807336|807337|807338|807339|807340|807341|807342|807343|807344|807345|807346|807347|807348|807349|807350|807351|807352|807353|807354|807355|807356|807357|807358|807359|807360|807361|807362|807363|807364|807365|807366|807367|807368|807369|807370|807371|807372|807373|807374|807375|807376|807377|807378|807379|807380|807381|807382|807383|807384|807385|807386|807387|807388|807389|807390|807391|807392|807393|807394|807395|807396|807397|807398|807399|807400|807401|807402|807403|807404|807405|807406|807407|807408|807409|807410|807411|807412|807413|807414|807415|807416|807417|807418|807419|807420|807421|807422|807423|807424|807425|807426|807427|807428|807429|807430|807431|807432|807433|807434|807435|807436|807437|807438|807439|807440|807441|807442|807443|807444|807445|807446|807447|807448|807449|807450|807451|807452|807453|807454|807455|807456|807457|807458|807459|807460|807461|807462|807463|807464|807465|807466|807467|807468|807469|807470|807471|807472|807473|807474|807475|807476|807477|807478|807479|807480|807481|807482|807483|807484|807485|807486|807487|807488|807489|807490|807491|807492|807493|807494|807495|807496|807497|807498|807499|807517|807518|807519|807520|807521|807522|807523|807524|807525|807526|807527|807528|807529|807530|807531|807532|807533|807534|807535|807536|807537|807538|807539|807540|807541|807542|807543|807544|807545|807546|807547|807548|807549|807550|807551|807552|807553|807554|807555|807556|807557|807558|807559|807560|807561|807562|807563|807564|807565|807566|807567|807568|807569|807570|807571|807572|807573|807574|807575|807576|807577|807578|807579|807580|807581|807582|807583|807584|807585|807586|807587|807588|807589|807590|807591|807592|807593|807594|807595|807596|807597|807598|807599|807600|807601|807602|807603|807604|807605|807606|807607|807608|807609|807610|807611|807612|807613|807614|807615|807616|807617|807618|807619|807620|807621|807622|807623|807624|807625|807626|807627|807628|807629|807630|807631|807632|807633|807634|807635|807636|807637|807638|807639|807640|807641|807642|807643|807644|807645|807646|807647|807648|807649|807650|807651|807652|807653|807654|807655|807656|807657|807658|807659|807660|807661|807662|807663|807664|807665|807666|807667|807668|807669|807670|807671|807672|807673|807674|807675|807676|807677|807678|807679|807680|807681|807682|807683|807684|807685|807686|807687|807688|807689|807690|807691|807692|807693|807694|807695|807696|807697|807698|807699|807700|807701|807702|807703|807704|807705|807706|807707|807708|807709|807710|807711|807712|807713|807714|807715|807716|807717|807718|807719|807720|807721|807722|807723|807724|807725|807726|807727|807728|807729|807730|807731|807732|807733|807734|807735|807736|807737|807738|807739|807740|807741|807742|807743|807744|807745|807746|807747|807748|807749|807750|807751|807752|807753|807754|807755|807756|807757|807758|807759|807760|807761|807762|807763|807764|807765|807766|807767|807768|807769|807770|807771|807772|807773|807774|807775|807776|807777|807778|807779|807780|807781|807782|807783|807784|807785|807786|807787|807788|807789|807790|807791|807792|807793|807794|807795|807796|807797|807798|807799|807800|807801|807802|807803|807804|807805|807806|807807|807808|807809|807810|807811|807812|807813|807814|807815|807816|807817|807818|807819|807820|807821|807822|807823|807824|807825|807826|807827|807828|807829|807830|807831|807832|807833|807834|807835|807836|807837|807838|807839|807840|807841|807842|807843|807844|807845|807846|807847|807848|807849|807850|807851|807852|807853|807854|807855|807856|807857|807858|807859|807860|807861|807862|807863|807864|807865|807866|807867|807868|807869|807870|807871|807872|807873|807874|807875|807876|807877|807878|807879|807880|807881|807882|807883|807884|807885|807886|807887|807888|807889|807890|807891|807892|807893|807894|807895|807896|807897|807898|807899|807900|807901|807902|807903|807904|807905|807906|807907|807908|807909|807910|807911|807912|807913|807914|807915|807916|807917|807918|807919|807920|807921|807922|807923|807924|807925|807926|807927|807928|807929|807930|807931|807932|807933|807934|807935|807936|807937|807938|807939|807940|807941|807942|807943|807944|807945|807946|807947|807948|807949|807950|807951|807952|807953|807954|807955|807956|807957|807958|807959|807960|807961|807962|807963|807964|807965|807966|807967|807968|807969|807970|807971|807972|807973|807974|807975|807976|807977|807978|807979|807980|807981|807982|807983|807984|807985|807986|807987|807988|807989|807990|807991|807992|807993|807994|807995|807996|807997|807998|807999|808000|808001|808002|808003|808004|808005|808006|808007|808008|808009|808010|808011|808012|808013|808014|808015|808016|808017|808018|808019|808020|808021|808022|808023|808024|808025|808026|808027|808028|808029|808030|808031|808032|808033|808034|808035|808036|808037|808038|808039|808040|808041|808042|808043|808044|808045|808046|808047|808048|808049|808050|808051|808052|808053|808054|808055|808056|808057|808058|808059|808060|808061|808062|808063|808064|808065|808066|808067|808068|808069|808070|808071|808072|808073|808074|808075|808076|808077|808078|808079|808080|808081|808082|808083|808084|808085|808086|808087|808088|808089|808090|808091|808092|808093|808094|808095|808096|808097|808098|808099|808100|808101|808102|808103|808104|808105|808106|808107|808108|808109|808110|808111|808112|808113|808114|808115|808116|808117|808118|808119|808120|808121|808122|808123|808124|808125|808126|808127|808128|808129|808130|808131|808132|808133|808134|808135|808136|808137|808138|808139|808140|808141|808142|808143|808144|808145|808146|808147|808148|808149|808150|808151|808152|808153|808154|808155|808156|808157|808158|808159|808160|808161|808162|808163|808164|808165|808166|808167|808168|808169|808170|808171|808172|808173|808174|808175|808176|808177|808178|808179|808180|808181|808182|808183|808184|808185|808186|808187|808188|808189|808190|808191|808192|808193|808194|808195|808196|808197|808198|808199|808200|808201|808202|808203|808204|808205|808206|808207|808208|808209|808210|808211|808212|808213|808214|808215|808216|808217|808218|808219|808220|808221|808222|808223|808224|808225|808226|808227|808228|808229|808230|808231|808232|808233|808234|808235|808236|808237|808238|808239|808240|808241|808242|808243|808244|808245|808246|808247|808248|808249|808250|808251|808252|808253|808254|808255|808256|808257|808258|808259|808260|808261|808262|808263|808264|808265|808266|808267|808268|808269|808270|808271|808272|808273|808274|808275|808276|808277|808278|808279|808280|808281|808282|808283|808284|808285|808286|808287|808288|808289|808290|808291|808292|808293|808294|808295|808296|808297|808298|808299|808300|808301|808302|808303|808304|808305|808306|808307|808308|808309|808310|808311|808312|808313|808314|808315|808316|808317|808318|808319|808320|808321|808322|808323|808324|808325|808326|808327|808328|808329|808330|808331|808332|808333|808334|808335|808336|808337|808338|808339|808340|808341|808342|808343|808344|808345|808346|808347|808348|808349|808350|808351|808352|808353|808354|808355|808356|808357|808358|808359|808360|808361|808362|808363|808364|808365|808366|808367|808368|808369|808370|808371|808372|808373|808374|808375|808376|808377|808378|808379|808380|808381|808382|808383|808384|808385|808386|808387|808388|808389|808390|808391|808392|808393|808394|808395|808396|808397|808398|808399|808400|808401|808402|808403|808404|808405|808406|808407|808408|808409|808410|808411|808412|808413|808414|808415|808416|808417|808418|808419|808420|808421|808422|808423|808424|808425|808426|808427|808428|808429|808430|808431|808432|808433|808434|808435|808436|808437|808438|808439|808440|808441|808442|808443|808444|808445|808446|808447|808448|808449|808450|808451|808452|808453|808454|808455|808456|808457|808458|808459|808460|808461|808462|808463|808464|808465|808466|808467|808468|808469|808470|808471|808472|808473|808474|808475|808476|808477|808478|808479|808480|808481|808482|808483|808484|808485|808486|808487|808488|808489|808490|808491|808492|808493|808494|808495|808496|808497|808498|808499|808500|808501|808502|808503|808504|808505|808506|808507|808508|808509|808510|808511|808512|808513|808514|808515|808516|808517|808518|808519|808520|808521|808522|808523|808524|808525|808526|808527|808528|808529|808530|808531|808532|808533|808534|808535|808536|808537|808538|808539|808540|808541|808542|808543|808544|808545|808546|808547|808548|808549|808550|808551|808552|808553|808554|808555|808556|808557|808558|808559|808560|808561|808562|808563|808564|808565|808566|808567|808568|808569|808570|808574|808575|808576|808577|808578|808579|808580|808581|808582|808583|808584|808585|808586|808587|808588|808589|808590|808591|808592|808593|808594|808595|808596|808597|808598|808599|808600|808601|808602|808603|808604|808605|808606|808607|808608|808609|808610|808611|808612|808613|808614|808615|808616|808617|808618|808619|808620|808621|808622|808623|808624|808625|808626|808627|808628|808629|808630|808631|808632|808633|808634|808635|808636|808637|808638|808639|808640|808641|808642|808643|808644|808645|808646|808647|808648|808649|808650|808651|808652|808653|808654|808655|808656|808657|808658|808659|808660|808661|808662|808663|808664|808665|808666|808667|808668|808669|808670|808671|808672|808673|808674|808675|808676|808677|808678|808679|808680|808681|808682|808683|808684|808685|808686|808687|808688|808689|808690|808691|808692|808693|808694|808695|808696|808697|808698|808699|808700|808701|808702|808703|808704|808705|808706|808707|808708|808709|808710|808711|808712|808713|808714|808715|808716|808717|808718|808719|808720|808721|808722|808723|808724|808725|808726|808727|808728|808729|808730|808731|808732|808733|808734|808735|808736|808737|808738|808739|808740|808741|808742|808743|808744|808745|808746|808747|808748|808749|808750|808751|808752|808753|808754|808755|808756|808757|808758|808759|808760|808761|808762|808763|808764|808765|808766|808767|808768|808769|808770|808771|808772|808773|808774|808775|808776|808777|808778|808779|808780|808781|808782|808783|808784|808785|808786|808787|808788|808789|808790|808791|808792|808793|808794|808795|808796|808797|808798|808799|808800|808801|808802|808803|808804|808805|808806|808807|808808|808809|808810|808811|808812|808813|808814|808815|808816|808817|808818|808819|808820|808821|808822|808823|808824|808825|808826|808827|808828|808829|808830|808831|808832|808833|808834|808835|808836|808837|808838|808839|808840|808873|808874|808875|808876|808877|808878|808879|808880|808881|808882|808883|808884|808885|808886|808887|808888|808889|808890|808891|808892|808893|808894|808895|808896|808897|808898|808899|808900|808901|808902|808903|808904|808905|808906|808907|808908|808909|808910|808911|808912|808913|808914|808915|808916|808917|808918|808919|808920|808921|808922|808923|808924|808925|808926|808927|808928|808929|808930|808931|808932|808933|808934|808935|808936|808937|808938|808939|808940|808941|808942|808943|808944|808945|808987|808988|808989|808990|808991|808992|808993|808994|808995|808996|808997|808998|808999|809000|809001|809002|809003|809004|809005|809006|809007|809008|809009|809010|809011|809012|809013|809014|809015|809016|809017|809018|809019|809020|809021|809022|809023|809024|809025|809026|809027|809028|809029|809030|809031|809032|809033|809034|809035|809036|809037|809038|809039|809040|809041|809042|809043|809044|809045|809046|809047|809048|809049|809050|809051|809052|809053|809054|809055|809056|809057|809058|809059|809060|809061|809062|809063|809064|809065|809066|809067|809068|809069|809070|809071|809072|809073|809074|809075|809076|809077|809078|809079|809080|809081|809082|809083|809084|809085|809086|809087|809088|809089|809090|809091|809092|809093|809094|809095|809096|809097|809098|809099|809100|809101|809102|809103|809104|809105|809106|809107|809108|809109|809110|809111|809112|809113|809114|809115|809116|809117|809118|809119|809120|809121|809122|809123|809124|809125|809126|809127|809128|809129|809130|809131|809132|809133|809134|809135|809136|809137|809138|809139|809140|809141|809142|809143|809144|809145|809146|809147|809148|809149|809150|809151|809152|809153|809154|809155|809156|809157|809158|809159|809160|809161|809162|809163|809164|809165|809166|809167|809168|809169|809170|809171|809172|809173|809174|809175|809176|809177|809178|809179|809180|809181|809182|809183|809184|809185|809186|809187|809188|809189|809190|809191|809192|809193|809194|809195|809196|809197|809198|809199|809200|809201|809202|809203|809204|809205|809206|809207|809208|809209|809210|809211|809212|809213|809214|809215|809216|809217|809218|809219|809220|809221|809222|809223|809224|809225|809226|809227|809228|809229|809230|809231|809232|809233|809234|809235|809236|809237|809238|809239|809240|809241|809242|809243|809244|809245|809246|809247|809248|809249|809250|809251|809252|809253|809254|809255|809256|809257|809258|809259|809260|809261|809262|809263|809264|809265|809266|809267|809268|809269|809270|809271|809272|809273|809274|809275|809276|809277|809278|809279|809280|809281|809282|809283|809284|809285|809286|809287|809288|809289|809290|809291|809292|809293|809294|809295|809296|809297|809298|809299|809300|809301|809302|809303|809304|809305|809306|809307|809308|809309|809310|809311|809312|809313|809314|809315|809316|809317|809318|809319|809320|809321|809322|809323|809324|809325|809326|809327|809328|809329|809330|809331|809332|809333|809334|809335|809336|809337|809338|809339|809340|809341|809342|809343|809344|809345|809346|809347|809348|809349|809350|809351|809352|809353|809354|809355|809356|809357|809358|809359|809360|809361|809362|809363|809364|809365|809366|809367|809368|809369|809370|809371|809372|809373|809374|809375|809376|809377|809378|809379|809380|809381|809382|809383|809384|809385|809386|809387|809388|809389|809390|809391|809392|809393|809394|809395|809396|809397|809398|809399|809400|809401|809402|809403|809404|809405|809406|809407|809408|809409|809410|809411|809412|809413|809414|809415|809416|809417|809418|809419|809420|809421|809422|809423|809424|809425|809426|809427|809428|809429|809430|809431|809432|809433|809434|809435|809436|809437|809438|809439|809440|809441|809442|809443|809444|809445|809446|809447|809448|809449|809450|809451|809452|809453|809454|809455|809456|809457|809458|809459|809460|809461|809462|809463|809464|809465|809466|809467|809468|809469|809470|809471|809472|809473|809474|809475|809476|809477|809478|809479|809480|809481|809482|809483|809484|809485|809486|809487|809488|809489|809490|809491|809492|809493|809494|809495|809496|809497|809498|809499|809500|809501|809502|809503|809504|809505|809506|809507|809508|809509|809510|809511|809512|809513|809514|809515|809516|809517|809518|809519|809520|809521|809522|809523|809524|809525|809526|809527|809528|809529|809530|809531|809532|809533|809534|809535|809536|809537|809538|809539|809540|809541|809542|809543|809544|809545|809546|809547|809548|809549|809550|809551|809552|809553|809554|809555|809556|809557|809558|809559|809560|809561|809562|809563|809564|809565|809566|809567|809568|809569|809570|809571|809572|809573|809574|809575|809576|809577|809578|809579|809580|809581|809582|809583|809584|809585|809586|809587|809588|809589|809590|809591|809592|809593|809594|809595|809596|809597|809598|809599|809600|809601|809602|809603|809604|809605|809606|809607|809608|809609|809610|809611|809612|809613|809614|809615|809616|809617|809618|809619|809620|809621|809622|809623|809624|809625|809626|809627|809628|809629|809630|809631|809632|809633|809634|809635|809636|809637|809638|809639|809640|809641|809642|809643|809644|809645|809646|809647|809648|809649|809650|809651|809652|809653|809654|809655|809656|809657|809658|809659|809660|809661|809662|809663|809664|809665|809666|809667|809668|809669|809670|809671|809672|809673|809674|809675|809676|809677|809678|809679|809680|809681|809682|809683|809684|809685|809686|809687|809688|809689|809690|809691|809692|809693|809694|809695|809696|809697|809698|809699|809700|809701|809702|809703|809704|809705|809706|809707|809708|809709|809710|809711|809712|809713|809714|809715|809716|809717|809718|809719|809720|809721|809722|809723|809724|809725|809726|809727|809728|809729|809730|809731|809732|809733|809734|809735|809736|809737|809738|809739|809740|809741|809742|809743|809744|809745|809746|809747|809748|809749|809750|809751|809752|809753|809754|809755|809756|809757|809758|809759|809760|809761|809762|809763|809764|809765|809766|809767|809768|809769|809770|809771|809772|809773|809774|809775|809776|809777|809778|809779|809780|809781|809782|809783|809784|809785|809786|809787|809788|809789|809790|809791|809792|809793|809794|809795|809796|809797|809798|809799|809800|809801|809802|809803|809804|809805|809806|809807|809808|809809|809810|809811|809812|809813|809814|809815|809816|809817|809818|809819|809820|809821|809822|809823|809824|809825|809826|809827|809828|809829|809830|809831|809832|809833|809834|809835|809836|809837|809838|809839|809840|809841|809842|809843|809844|809845|809846|809847|809848|809849|809850|809851|809852|809853|809854|809855|809856|809857|809858|809859|809860|809861|809862|809863|809864|809865|809866|809867|809868|809869|809870|809871|809872|809873|809874|809875|809876|809877|809878|809879|809880|809881|809882|809883|809884|809885|809886|809887|809888|809889|809890|809891|809892|809893|809894|809895|809896|809897|809898|809899|809900|809901|809902|809903|809904|809905|809906|809907|809908|809909|809910|809911|809912|809913|809914|809915|809916|809917|809918|809919|809920|809921|809922|809923|809924|809925|809926|809927|809928|809929|809930|809931|809932|809933|809934|809935|809936|809937|809938|809939|809940|809941|809942|809943|809944|809945|809946|809947|809948|809949|809950|809951|809952|809953|809954|809955|809956|809957|809958|809959|809960|809961|809962|809963|809964|809965|809966|809967|809968|809969|809970|809971|809972|809973|809974|809975|809976|809977|809978|809979|809980|809981|809982|809983|809984|809985|809986|809987|809988|809989|809990|809991|809992|809993|809994|809995|809996|809997|809998|809999|810000|810001|810002|810003|810004|810005|810006|810007|810008|810009|810010|810011|810012|810013|810014|810015|810016|810017|810018|810019|810020|810021|810022|810023|810024|810025|810026|810027|810028|810029|810030|810031|810032|810033|810034|810035|810036|810037|810038|810039|810040|810041|810042|810043|810044|810045|810046|810047|810048|810049|810050|810051|810052|810053|810054|810055|810056|810057|810058|810059|810060|810061|810062|810063|810064|810065|810066|810067|810068|810069|810070|810071|810072|810073|810074|810075|810076|810077|810078|810079|810080|810081|810082|810083|810084|810085|810086|810087|810088|810089|810090|810091|810092|810093|810094|810095|810096|810097|810098|810099|810100|810101|810102|810103|810104|810105|810106|810107|810108|810109|810110|810111|810112|810113|810114|810115|810116|810117|810118|810119|810120|810121|810122|810123|810124|810125|810126|810127|810128|810129|810130|810131|810132|810133|810134|810135|810136|810137|810138|810139|810140|810141|810142|810143|810144|810145|810146|810147|810148|810149|810150|810151|810152|810153|810154|810155|810156|810157|810158|810159|810160|810161|810162|810163|810164|810165|810166|810167|810168|810169|810170|810171|810172|810173|810174|810175|810176|810177|810178|810179|810180|810181|810182|810183|810184|810185|810186|810187|810188|810189|810190|810191|810192|810193|810194|810195|810196|810197|810198|810199|810200|810201|810202|810203|810204|810205|810206|810207|810208|810209|810210|810211|810212|810213|810214|810215|810216|810217|810218|810219|810220|810221|810222|810223|810224|810225|810226|810227|810228|810229|810230|810231|810232|810233|810234|810235|810236|810237|810238|810239|810240|810241|810242|810243|810244|810245|810246|810247|810248|810249|810250|810251|810252|810253|810254|810255|810256|810257|810258|810259|810260|810261|810262|810263|810264|810265|810266|810267|810268|810269|810270|810271|810272|810273|810274|810275|810276|810277|810278|810279|810280|810281|810282|810283|810284|810285|810286|810287|810288|810289|810290|810291|810292|810293|810294|810295|810296|810297|810298|810299|810300|810301|810302|810303|810304|810305|810306|810307|810308|810309|810310|810311|810312|810313|810314|810315|810316|810317|810318|810319|810320|810321|810322|810323|810324|810325|810326|810327|810328|810329|810330|810331|810332|810333|810334|810335|810336|810337|810338|810339|810340|810341|810342|810343|810344|810345|810346|810347|810348|810349|810350|810351|810352|810353|810354|810355|810356|810357|810358|810359|810360|810361|810362|810363|810364|810365|810366|810367|810368|810369|810370|810371|810372|810373|810374|810375|810376|810377|810378|810379|810380|810381|810382|810383|810384|810385|810386|810387|810388|810389|810390|810391|810392|810393|810394|810395|810396|810397|810398|810399|810400|810401|810402|810403|810404|810405|810406|810407|810408|810409|810410|810411|810412|810413|810414|810415|810416|810417|810418|810419|810420|810421|810422|810423|810424|810425|810426|810427|810428|810429|810430|810431|810432|810433|810434|810435|810436|810437|810438|810439|810440|810441|810442|810443|810444|810445|810446|810447|810448|810449|810450|810451|810452|810453|810454|810455|810456|810457|810458|810459|810460|810461|810462|810463|810464|810465|810466|810467|810468|810469|810470|810471|810472|810473|810474|810475|810476|810477|810478|810479|810480|810481|810482|810483|810484|810485|810486|810487|810488|810489|810490|810491|810492|810493|810494|810495|810496|810497|810498|810499|810500|810501|810502|810503|810504|810505|810506|810507|810508|810509|810510|810511|810512|810513|810514|810515|810516|810517|810518|810519|810520|810521|810522|810523|810524|810525|810526|810527|810528|810529|810530|810531|810532|810533|810534|810535|810536|810537|810538|810539|810540|810541|810542|810543|810544|810545|810546|810547|810548|810549|810550|810551|810552|810553|810554|810555|810556|810557|810558|810559|810560|810561|810562|810563|810564|810565|810566|810567|810568|810569|810570|810571|810572|810573|810574|810575|810576|810577|810578|810579|810580|810581|810582|810583|810584|810585|810586|810587|810588|810589|810590|810591|810592|810593|810594|810595|810596|810597|810598|810599|810600|810601|810602|810603|810604|810605|810606|810607|810608|810609|810610|810611|810612|810613|810614|810615|810616|810617|810618|810619|810620|810621|810622|810623|810624|810625|810626|810627|810628|810629|810630|810631|810632|810633|810634|810635|810636|810637|810638|810639|810640|810641|810642|810643|810644|810645|810646|810647|810648|810649|810650|810651|810652|810653|810654|810655|810656|810657|810658|810659|810660|810661|810662|810663|810664|810665|810666|810667|810668|810669|810670|810671|810672|810673|810674|810675|810676|810677|810678|810679|810680|810681|810682|810683|810684|810685|810686|810687|810688|810689|810690|810691|810692|810693|810694|810695|810696|810697|810698|810699|810700|810701|810702|810703|810704|810705|810706|810707|810708|810709|810710|810711|810712|810713|810714|810715|810716|810717|810718|810719|810720|810721|810722|810723|810724|810725|810726|810727|810728|810729|810730|810731|810732|810733|810734|810735|810736|810737|810738|810739|810740|810741|810742|810743|810744|810745|810746|810747|810748|810749|810750|810751|810752|810753|810754|810755|810756|810757|810758|810759|810760|810761|810762|810763|810764|810765|810766|810767|810768|810769|810770|810771|810772|810773|810774|810775|810776|810777|810778|810779|810780|810781|810782|810783|810784|810785|810786|810787|810788|810789|810790|810791|810792|810793|810794|810795|810796|810797|810798|810799|810800|810801|810802|810803|810804|810805|810806|810807|810808|810809|810810|810811|810812|810813|810814|810815|810816|810817|810818|810819|810820|810821|810822|810823|810824|810825|810826|810827|810828|810829|810830|810831|810832|810833|810834|810835|810836|810837|810838|810839|810840|810841|810842|810843|810844|810845|810846|810847|810848|810849|810850|810851|810852|810853|810854|810855|810856|810857|810858|810859|810860|810861|810862|810863|810864|810865|810866|810867|810868|810869|810870|810871|810872|810873|810874|810875|810876|810877|810878|810879|810880|810881|810882|810883|810884|810885|810886|810887|810888|810889|810890|810891|810892|810893|810894|810895|810896|810897|810898|810899|810900|810901|810902|810903|810904|810905|810906|810907|810908|810909|810910|810911|810912|810913|810914|810915|810916|810917|810918|810919|810920|810921|810922|810923|810924|810925|810926|810927|810928|810929|810930|810931|810932|810933|810934|810935|810936|810937|810938|810939|810940|810941|810942|810943|810944|810945|810946|810947|810948|810949|810950|810951|810952|810953|810954|810955|810956|810957|810958|810959|810960|810961|810962|810963|810964|810965|810966|810967|810968|810969|810970|810971|810972|810973|810974|810975|810976|810977|810978|810979|810980|810981|810982|810983|810984|810985|810986|810987|810988|810989|810990|810991|810992|810993|810994|810995|810996|810997|810998|810999|811000|811001|811002|811003|811004|811005|811006|811007|811008|811009|811010|811011|811012|811013|811014|811015|811016|811017|811018|811019|811020|811021|811022|811023|811024|811025|811026|811027|811028|811029|811030|811031|811032|811033|811034|811035|811036|811037|811038|811039|811040|811041|811042|811043|811044|811045|811046|811047|811048|811049|811050|811051|811052|811053|811054|811055|811056|811057|811058|811059|811060|811061|811062|811063|811064|811065|811066|811067|811068|811069|811070|811071|811072|811073|811074|811075|811076|811077|811078|811079|811080|811081|811082|811083|811084|811085|811086|811087|811088|811089|811090|811091|811092|811093|811094|811095|811096|811097|811098|811099|811100|811101|811102|811103|811104|811105|811106|811107|811108|811109|811110|811111|811112|811113|811114|811115|811116|811117|811118|811119|811120|811121|811122|811123|811124|811125|811126|811127|811128|811129|811130|811131|811132|811133|811134|811135|811136|811137|811138|811139|811140|811141|811142|811143|811144|811145|811146|811147|811148|811149|811150|811151|811152|811153|811154|811155|811156|811157|811158|811159|811160|811161|811162|811163|811164|811165|811166|811167|811168|811169|811170|811171|811172|811173|811174|811175|811176|811177|811178|811179|811180|811181|811182|811183|811184|811185|811186|811187|811188|811189|811190|811191|811192|811193|811194|811195|811196|811197|811198|811199|811200|811201|811202|811203|811204|811205|811206|811207|811208|811209|811210|811211|811212|811213|811214|811215|811216|811217|811218|811219|811220|811221|811222|811223|811224|811225|811226|811227|811228|811229|811230|811231|811232|811233|811234|811235|811236|811237|811238|811239|811240|811241|811242|811243|811244|811245|811246|811247|811248|811249|811250|811251|811252|811253|811254|811255|811256|811257|811258|811259|811260|811261|811262|811263|811264|811265|811266|811267|811268|811269|811270|811271|811272|811273|811274|811275|811276|811277|811278|811279|811280|811281|811282|811283|811284|811285|811286|811287|811288|811289|811290|811291|811292|811293|811294|811295|811296|811297|811298|811299|811300|811301|811302|811303|811304|811305|811306|811307|811308|811309|811310|811311|811312|811313|811314|811315|811316|811317|811318|811319|811320|811321|811322|811323|811324|811325|811326|811327|811328|811329|811330|811331|811332|811333|811334|811335|811336|811337|811338|811339|811340|811341|811342|811343|811344|811345|811346|811347|811348|811349|811350|811351|811352|811353|811354|811355|811356|811357|811358|811359|811360|811361|811362|811363|811364|811365|811366|811367|811368|811369|811370|811371|811372|811373|811374|811375|811376|811377|811378|811379|811380|811381|811382|811383|811384|811385|811386|811387|811388|811389|811390|811391|811392|811393|811394|811395|811396|811397|811398|811399|811400|811401|811402|811403|811404|811405|811406|811407|811408|811409|811410|811411|811412|811413|811414|811415|811416|811417|811418|811419|811420|811421|811422|811423|811424|811425|811426|811427|811428|811429|811430|811431|811432|811433|811434|811435|811436|811437|811438|811439|811440|811441|811442|811443|811444|811445|811446|811447|811448|811449|811450|811451|811452|811453|811454|811455|811456|811457|811458|811459|811460|811461|811462|811463|811464|811465|811466|811467|811468|811469|811470|811471|811472|811473|811474|811475|811476|811477|811478|811479|811480|811481|811482|811483|811484|811485|811486|811487|811488|811489|811490|811491|811492|811493|811494|811495|811496|811497|811498|811499|811500|811501|811502|811503|811504|811505|811506|811507|811508|811509|811510|811511|811512|811513|811514|811515|811516|811517|811518|811519|811520|811521|811522|811523|811524|811525|811526|811527|811528|811529|811530|811531|811532|811533|811534|811535|811536|811537|811538|811539|811540|811541|811542|811543|811544|811545|811546|811547|811548|811549|811550|811551|811552|811553|811554|811555|811556|811557|811558|811559|811560|811561|811562|811563|811564|811565|811566|811567|811568|811569|811570|811571|811572|811573|811574|811575|811576|811577|811578|811579|811580|811581|811582|811583|811584|811585|811586|811587|811588|811589|811590|811591|811592|811593|811594|811595|811596|811597|811598|811599|811600|811601|811602|811603|811604|811605|811606|811607|811608|811609|811610|811611|811612|811613|811614|811615|811616|811617|811618|811619|811620|811621|811622|811623|811624|811625|811626|811627|811628|811629|811630|811631|811632|811633|811634|811635|811636|811637|811638|811639|811640|811641|811642|811643|811644|811645|811646|811647|811648|811649|811650|811651|811652|811653|811654|811655|811656|811657|811658|811659|811660|811661|811662|811663|811664|811665|811666|811667|811668|811669|811670|811671|811672|811673|811674|811675|811676|811677|811678|811679|811680|811681|811682|811683|811684|811685|811686|811687|811688|811689|811690|811691|811692|811693|811694|811695|811696|811697|811698|811699|811700|811701|811702|811703|811704|811705|811706|811707|811708|811709|811710|811711|811712|811713|811714|811715|811716|811717|811718|811719|811720|811721|811722|811723|811724|811725|811726|811727|811728|811729|811730|811731|811732|811733|811734|811735|811736|811737|811738|811739|811740|811741|811742|811743|811744|811745|811746|811747|811748|811749|811750|811751|811752|811753|811754|811755|811756|811757|811758|811759|811760|811761|811762|811763|811764|811765|811766|811767|811768|811769|811770|811771|811772|811773|811774|811775|811776|811777|811778|811779|811780|811781|811782|811783|811784|811785|811786|811787|811788|811789|811790|811791|811792|811793|811794|811795|811796|811797|811798|811799|811800|811801|811802|811803|811804|811805|811806|811807|811808|811809|811810|811811|811812|811813|811814|811815|811816|811817|811818|811819|811820|811821|811822|811823|811824|811825|811826|811827|811828|811829|811830|811831|811832|811833|811834|811835|811836|811837|811838|811839|811840|811841|811842|811843|811844|811845|811846|811847|811848|811849|811850|811851|811852|811853|811854|811855|811856|811857|811858|811859|811860|811861|811862|811863|811864|811865|811866|811867|811868|811869|811870|811871|811872|811873|811874|811875|811876|811877|811878|811879|811880|811881|811882|811883|811884|811885|811886|811887|811888|811889|811890|811891|811892|811893|811894|811895|811896|811897|811898|811899|811900|811901|811902|811903|811904|811905|811906|811907|811908|811909|811910|811911|811912|811913|811914|811915|811916|811917|811918|811919|811920|811921|811922|811923|811924|811925|811926|811927|811928|811929|811930|811931|811932|811933|811934|811935|811936|811937|811938|811939|811940|811941|811942|811943|811944|811945|811946|811947|811948|811949|811950|811951|811952|811953|811954|811955|811956|811957|811958|811959|811960|811961|811962|811963|811964|811965|811966|811967|811968|811969|811970|811971|811972|811973|811974|811975|811976|811977|811978|811979|811980|811981|811982|811983|811984|811985|811986|811987|811988|811989|811990|811991|811992|811993|811994|811995|811996|811997|811998|811999|812000|812001|812002|812003|812004|812005|812006|812007|812008|812009|812010|812011|812012|812013|812014|812015|812016|812017|812018|812019|812020|812021|812022|812023|812024|812025|812026|812027|812028|812029|812030|812031|812032|812033|812034|812035|812036|812037|812038|812039|812040|812041|812042|812043|812044|812045|812046|812047|812048|812049|812050|812051|812052|812053|812054|812055|812056|812057|812058|812059|812060|812061|812062|812063|812064|812065|812066|812067|812068|812069|812070|812071|812072|812073|812074|812075|812076|812077|812078|812079|812080|812081|812082|812083|812084|812085|812086|812087|812088|812089|812090|812091|812092|812093|812094|812095|812096|812097|812098|812099|812100|812101|812102|812103|812104|812105|812106|812107|812108|812109|812110|812111|812112|812113|812114|812115|812116|812117|812118|812119|812120|812121|812122|812123|812124|812125|812126|812127|812128|812129|812130|812131|812132|812133|812134|812135|812136|812137|812138|812139|812140|812141|812142|812143|812144|812145|812146|812147|812148|812149|812150|812151|812152|812153|812154|812155|812156|812157|812158|812159|812160|812161|812162|812163|812164|812165|812166|812167|812168|812169|812170|812171|812172|812173|812174|812175|812176|812177|812178|812179|812180|812181|812182|812183|812184|812185|812186|812187|812188|812189|812190|812191|812192|812193|812194|812195|812196|812197|812198|812199|812200|812201|812202|812203|812204|812205|812206|812207|812208|812209|812210|812211|812212|812213|812214|812215|812216|812217|812218|812219|812220|812221|812222|812223|812224|812225|812226|812227|812228|812229|812230|812231|812232|812233|812234|812235|812236|812237|812238|812239|812240|812241|812242|812243|812244|812245|812246|812247|812248|812249|812250|812251|812252|812253|812254|812255|812256|812257|812258|812259|812260|812261|812262|812263|812264|812265|812266|812267|812268|812269|812270|812271|812272|812273|812274|812275|812276|812277|812278|812279|812280|812281|812282|812283|812284|812285|812286|812287|812288|812289|812290|812291|812292|812293|812294|812295|812296|812297|812298|812299|812300|812301|812302|812303|812304|812305|812306|812307|812308|812309|812310|812311|812312|812313|812314|812315|812316|812317|812318|812319|812320|812321|812322|812323|812324|812325|812326|812327|812328|812329|812330|812331|812332|812333|812334|812335|812336|812337|812338|812339|812340|812341|812342|812343|812344|812345|812346|812347|812348|812349|812350|812351|812352|812353|812354|812355|812356|812357|812358|812359|812360|812361|812362|812363|812364|812365|812366|812367|812368|812369|812370|812371|812372|812373|812374|812375|812376|812377|812378|812379|812380|812381|812382|812383|812384|812385|812386|812387|812388|812389|812390|812391|812392|812393|812394|812395|812396|812397|812398|812399|812400|812401|812402|812403|812404|812405|812406|812407|812408|812409|812410|812411|812412|812413|812414|812415|812416|812417|812418|812419|812420|812421|812422|812423|812424|812425|812426|812427|812428|812429|812430|812431|812432|812433|812434|812435|812436|812437|812438|812439|812440|812441|812442|812443|812444|812445|812446|812447|812448|812449|812450|812451|812452|812453|812454|812455|812456|812457|812458|812459|812460|812461|812462|812463|812464|812465|812466|812467|812468|812469|812470|812471|812472|812473|812474|812475|812476|812477|812478|812479|812480|812481|812482|812483|812484|812485|812486|812487|812488|812489|812490|812491|812492|812493|812494|812495|812496|812497|812498|812499|812500|812501|812502|812503|812504|812505|812506|812507|812508|812509|812510|812511|812512|812513|812514|812515|812516|812517|812518|812519|812520|812521|812522|812523|812524|812525|812526|812527|812528|812529|812530|812531|812532|812533|812534|812535|812536|812537|812538|812539|812540|812541|812542|812543|812544|812545|812546|812547|812548|812549|812550|812551|812552|812553|812554|812555|812556|812557|812558|812559|812560|812561|812562|812563|812564|812565|812566|812567|812568|812569|812570|812571|812572|812573|812574|812575|812576|812577|812578|812579|812580|812581|812582|812583|812584|812585|812586|812587|812588|812589|812590|812591|812592|812593|812594|812595|812596|812597|812598|812599|812600|812601|812602|812603|812604|812605|812606|812607|812608|812609|812610|812611|812612|812613|812614|812615|812616|812617|812618|812619|812620|812621|812622|812623|812624|812625|812626|812627|812628|812629|812630|812631|812632|812633|812634|812635|812636|812637|812638|812639|812640|812641|812642|812643|812644|812645|812646|812647|812648|812649|812650|812651|812652|812653|812654|812655|812656|812657|812658|812659|812660|812661|812662|812663|812664|812665|812666|812667|812668|812669|812670|812671|812672|812673|812674|812675|812676|812677|812678|812679|812680|812681|812682|812683|812684|812685|812686|812687|812688|812689|812690|812691|812692|812693|812694|812695|812696|812697|812698|812699|812700|812701|812702|812703|812704|812705|812706|812707|812708|812709|812710|812711|812712|812713|812714|812715|812716|812717|812718|812719|812720|812721|812722|812723|812724|812725|812726|812727|812728|812729|812730|812731|812732|812733|812734|812735|812736|812737|812738|812739|812740|812741|812742|812743|812744|812745|812746|812747|812748|812749|812750|812751|812752|812753|812754|812755|812756|812757|812758|812759|812760|812761|812762|812763|812764|812765|812766|812767|812768|812769|812770|812771|812772|812773|812774|812775|812776|812777|812778|812779|812780|812781|812782|812783|812784|812785|812786|812787|812788|812789|812790|812791|812792|812793|812794|812795|812796|812797|812798|812799|812800|812801|812802|812803|812804|812805|812806|812807|812808|812809|812810|812811|812812|812813|812814|812815|812816|812817|812818|812819|812820|812821|812822|812823|812824|812825|812826|812827|812828|812829|812830|812831|812832|812833|812834|812835|812836|812837|812838|812839|812840|812841|812842|812843|812844|812845|812846|812847|812848|812849|812850|812851|812852|812853|812854|812855|812856|812857|812858|812859|812860|812861|812862|812863|812864|812865|812866|812867|812868|812869|812870|812871|812872|812873|812874|812875|812876|812877|812878|812879|812880|812881|812882|812883|812884|812885|812886|812887|812888|812889|812890|812891|812892|812893|812894|812895|812896|812897|812898|812899|812900|812901|812902|812903|812904|812905|812906|812907|812908|812909|812910|812911|812912|812913|812914|812915|812916|812917|812918|812919|812920|812921|812922|812923|812924|812925|812926|812927|812928|812929|812930|812931|812932|812933|812934|812935|812936|812937|812938|812939|812940|812941|812942|812943|812944|812945|812946|812947|812948|812949|812950|812951|812952|812953|812954|812955|812956|812957|812958|812959|812960|812961|812962|812963|812964|812965|812966|812967|812968|812969|812970|812971|812972|812973|812974|812975|812976|812977|812978|812979|812980|812981|812982|812983|812984|812985|812986|812987|812988|812989|812990|812991|812992|812993|812994|812995|812996|812997|812998|812999|813000|813001|813002|813003|813004|813005|813006|813007|813008|813009|813010|813011|813012|813013|813014|813015|813016|813017|813018|813019|813020|813021|813022|813023|813024|813025|813026|813027|813028|813029|813030|813031|813032|813033|813034|813035|813036|813037|813038|813039|813040|813041|813042|813043|813044|813045|813046|813047|813048|813049|813050|813051|813052|813053|813054|813055|813056|813057|813058|813059|813060|813061|813062|813063|813064|813065|813066|813067|813068|813069|813070|813071|813072|813073|813074|813075|813076|813077|813078|813079|813080|813081|813082|813083|813084|813085|813086|813087|813088|813089|813090|813091|813092|813093|813094|813095|813096|813097|813098|813099|813100|813101|813102|813103|813104|813105|813106|813107|813108|813109|813110|813111|813112|813113|813114|813115|813116|813117|813118|813119|813120|813121|813122|813123|813124|813125|813126|813127|813128|813129|813130|813131|813132|813133|813134|813135|813136|813137|813138|813139|813140|813141|813142|813143|813144|813145|813146|813147|813148|813149|813150|813151|813152|813153|813154|813155|813156|813157|813158|813159|813160|813161|813162|813163|813164|813165|813166|813167|813168|813169|813170|813171|813172|813173|813174|813175|813176|813177|813178|813179|813180|813181|813182|813183|813184|813185|813186|813187|813188|813189|813190|813191|813192|813193|813194|813195|813196|813197|813198|813199|813200|813201|813202|813203|813204|813205|813206|813207|813208|813209|813210|813211|813212|813213|813214|813215|813216|813217|813218|813219|813220|813221|813222|813223|813224|813225|813226|813227|813228|813229|813230|813231|813232|813233|813234|813235|813236|813237|813238|813239|813240|813241|813242|813243|813244|813245|813246|813247|813248|813249|813250|813251|813252|813253|813254|813255|813256|813257|813258|813259|813260|813261|813262|813263|813264|813265|813266|813267|813268|813269|813270|813271|813272|813273|813274|813275|813276|813277|813278|813279|813280|813281|813282|813283|813284|813285|813286|813287|813288|813289|813290|813291|813292|813293|813294|813295|813296|813297|813298|813299|813300|813301|813302|813303|813304|813305|813306|813307|813308|813309|813310|813311|813312|813313|813314|813315|813316|813317|813318|813319|813320|813321|813322|813323|813324|813325|813326|813327|813328|813329|813330|813331|813332|813333|813334|813335|813336|813337|813338|813339|813340|813341|813342|813343|813344|813345|813346|813347|813348|813349|813350|813351|813352|813353|813354|813355|813356|813357|813358|813359|813360|813361|813362|813363|813364|813365|813366|813367|813368|813369|813370|813371|813372|813373|813374|813375|813376|813377|813378|813379|813380|813381|813382|813383|813384|813385|813386|813387|813388|813389|813390|813391|813392|813393|813394|813395|813396|813397|813398|813399|813400|813401|813402|813403|813404|813405|813406|813407|813408|813409|813410|813411|813412|813413|813414|813415|813416|813417|813418|813419|813420|813421|813422|813423|813424|813425|813426|813427|813428|813429|813430|813431|813432|813433|813434|813435|813436|813437|813438|813439|813440|813441|813442|813443|813444|813445|813446|813447|813448|813449|813450|813451|813452|813453|813454|813455|813456|813457|813458|813459|813460|813461|813462|813463|813464|813465|813466|813467|813468|813469|813470|813471|813472|813473|813474|813475|813476|813477|813478|813479|813480|813481|813482|813483|813484|813485|813486|813487|813488|813489|813490|813491|813492|813493|813494|813495|813496|813497|813498|813499|813500|813501|813502|813503|813504|813505|813506|813507|813508|813509|813510|813511|813512|813513|813514|813515|813516|813517|813518|813519|813520|813521|813522|813523|813524|813525|813526|813527|813528|813529|813530|813531|813532|813533|813534|813535|813536|813537|813538|813539|813540|813541|813542|813543|813544|813545|813546|813547|813548|813549|813550|813551|813552|813553|813554|813555|813556|813557|813558|813559|813560|813561|813562|813563|813564|813565|813566|813567|813568|813569|813570|813571|813572|813573|813574|813575|813576|813577|813578|813579|813580|813581|813582|813583|813584|813585|813586|813587|813588|813589|813590|813591|813592|813593|813594|813595|813596|813597|813598|813599|813600|813601|813602|813603|813604|813605|813606|813607|813608|813609|813610|813611|813612|813613|813614|813615|813616|813617|813618|813619|813620|813621|813622|813623|813624|813625|813626|813627|813628|813629|813630|813631|813632|813633|813634|813635|813636|813637|813638|813639|813640|813641|813642|813643|813644|813645|813646|813647|813648|813649|813650|813651|813652|813653|813654|813655|813656|813657|813658|813659|813660|813661|813662|813663|813664|813665|813666|813667|813668|813669|813670|813671|813672|813673|813674|813675|813676|813677|813678|813679|813680|813681|813682|813683|813684|813685|813686|813687|813688|813689|813690|813691|813692|813693|813694|813695|813696|813697|813698|813699|813700|813701|813702|813703|813704|813705|813706|813707|813708|813709|813710|813711|813712|813713|813714|813715|813716|813717|813718|813719|813720|813721|813722|813723|813724|813725|813726|813727|813728|813729|813730|813731|813732|813733|813734|813735|813736|813737|813738|813739|813740|813741|813742|813743|813744|813745|813746|813747|813748|813749|813750|813751|813752|813753|813754|813755|813756|813757|813758|813759|813760|813761|813762|813763|813764|813765|813766|813767|813768|813769|813770|813771|813772|813773|813774|813775|813776|813777|813778|813779|813780|813781|813782|813783|813784|813785|813786|813787|813788|813789|813790|813791|813792|813793|813794|813795|813796|813797|813798|813799|813800|813801|813802|813803|813804|813805|813806|813807|813808|813809|813810|813811|813812|813813|813814|813815|813816|813817|813818|813819|813820|813821|813822|813823|813824|813825|813826|813827|813828|813829|813830|813831|813832|813833|813834|813835|813836|813837|813838|813839|813840|813841|813842|813843|813844|813845|813846|813847|813848|813849|813850|813851|813852|813853|813854|813855|813856|813857|813858|813859|813860|813861|813862|813863|813864|813865|813866|813867|813868|813869|813870|813871|813872|813873|813874|813875|813876|813877|813878|813879|813880|813881|813882|813883|813884|813885|813886|813887|813888|813889|813890|813891|813892|813893|813894|813895|813896|813897|813898|813899|813900|813901|813902|813903|813904|813905|813906|813907|813908|813909|813910|813911|813912|813913|813914|813915|813916|813917|813918|813919|813920|813921|813922|813923|813924|813925|813926|813927|813928|813929|813930|813931|813932|813933|813934|813935|813936|813937|813938|813939|813940|813941|813942|813943|813944|813945|813946|813947|813948|813949|813950|813951|813952|813953|813954|813955|813956|813957|813958|813959|813960|813961|813962|813963|813964|813965|813966|813967|813968|813969|813970|813971|813972|813973|813974|813975|813976|813977|813978|813979|813980|813981|813982|813983|813984|813985|813986|813987|813988|813989|813990|813991|813992|813993|813994|813995|813996|813997|813998|813999|814000|814001|814002|814003|814004|814005|814006|814007|814008|814009|814010|814011|814012|814013|814014|814015|814016|814017|814018|814019|814020|814021|814022|814023|814024|814025|814026|814027|814028|814029|814030|814031|814032|814033|814034|814035|814036|814037|814038|814039|814040|814041|814042|814043|814044|814045|814046|814047|814048|814049|814050|814051|814052|814053|814054|814055|814056|814057|814058|814059|814060|814061|814062|814063|814064|814065|814066|814067|814068|814069|814070|814071|814072|814073|814074|814075|814076|814077|814078|814079|814080|814081|814082|814083|814084|814085|814086|814087|814088|814089|814090|814091|814092|814093|814094|814095|814096|814097|814098|814099|814100|814101|814102|814103|814104|814105|814106|814107|814108|814109|814110|814111|814112|814113|814114|814115|814116|814117|814118|814119|814120|814121|814122|814123|814124|814125|814126|814127|814128|814129|814130|814131|814132|814133|814134|814135|814136|814137|814138|814139|814140|814141|814142|814143|814144|814145|814146|814147|814148|814149|814150|814151|814152|814153|814154|814155|814156|814157|814158|814159|814160|814161|814162|814163|814164|814165|814166|814167|814168|814169|814170|814171|814172|814173|814174|814175|814176|814177|814178|814179|814180|814181|814182|814183|814184|814185|814186|814187|814188|814189|814190|814191|814192|814193|814194|814195|814196|814197|814198|814199|814200|814201|814202|814203|814204|814205|814206|814207|814208|814209|814210|814211|814212|814213|814214|814215|814216|814217|814218|814219|814220|814221|814222|814223|814224|814225|814226|814227|814228|814229|814230|814231|814232|814233|814234|814235|814236|814237|814238|814239|814240|814241|814242|814243|814244|814245|814246|814247|814248|814249|814250|814251|814252|814253|814254|814255|814256|814257|814258|814259|814260|814261|814262|814263|814264|814265|814266|814267|814268|814269|814270|814271|814272|814273|814274|814275|814276|814277|814278|814279|814280|814281|814282|814283|814284|814285|814286|814287|814288|814289|814290|814291|814292|814293|814294|814295|814296|814297|814298|814299|814300|814301|814302|814303|814304|814305|814306|814307|814308|814309|814310|814311|814312|814313|814314|814315|814316|814317|814318|814319|814320|814321|814322|814323|814324|814325|814326|814327|814328|814329|814330|814331|814332|814333|814334|814335|814336|814337|814338|814339|814340|814341|814342|814343|814344|814345|814346|814347|814348|814349|814350|814351|814352|814353|814354|814355|814356|814357|814358|814359|814360|814361|814362|814363|814364|814365|814366|814367|814368|814369|814370|814371|814372|814373|814374|814375|814376|814377|814378|814379|814380|814381|814382|814383|814384|814385|814386|814387|814388|814389|814390|814391|814392|814393|814394|814395|814396|814397|814398|814399|814400|814401|814402|814403|814404|814405|814406|814407|814408|814409|814410|814411|814412|814413|814414|814415|814416|814417|814418|814419|814420|814421|814422|814423|814424|814425|814426|814427|814428|814429|814430|814431|814432|814433|814434|814435|814436|814437|814438|814439|814440|814441|814442|814443|814444|814445|814446|814447|814448|814449|814450|814451|814452|814453|814454|814455|814456|814457|814458|814459|814460|814461|814462|814463|814464|814465|814466|814467|814468|814469|814470|814471|814472|814473|814474|814475|814476|814477|814478|814479|814480|814481|814482|814483|814484|814485|814486|814487|814488|814489|814490|814491|814492|814493|814494|814495|814496|814497|814498|814499|814500|814501|814502|814503|814504|814505|814506|814507|814508|814509|814510|814511|814512|814513|814514|814515|814516|814517|814518|814519|814520|814521|814522|814523|814524|814525|814526|814527|814528|814529|814530|814531|814532|814533|814534|814535|814536|814537|814538|814539|814540|814541|814542|814543|814544|814545|814546|814547|814548|814549|814550|814551|814552|814553|814554|814555|814556|814557|814558|814559|814560|814561|814562|814563|814564|814565|814566|814567|814568|814569|814570|814571|814572|814573|814574|814575|814576|814577|814578|814579|814580|814581|814582|814583|814584|814585|814586|814587|814588|814589|814590|814591|814592|814593|814594|814595|814596|814597|814598|814599|814600|814601|814602|814603|814604|814605|814606|814607|814608|814609|814610|814611|814612|814613|814614|814615|814616|814617|814618|814619|814620|814621|814622|814623|814624|814625|814626|814627|814628|814629|814630|814631|814632|814633|814634|814635|814636|814637|814638|814639|814640|814641|814642|814643|814644|814645|814646|814647|814648|814649|814650|814651|814652|814653|814654|814655|814656|814657|814658|814659|814660|814661|814662|814663|814664|814665|814666|814667|814668|814669|814670|814671|814672|814673|814674|814675|814676|814677|814678|814679|814680|814681|814682|814683|814684|814685|814686|814687|814688|814689|814690|814691|814692|814693|814694|814695|814696|814697|814698|814699|814700|814701|814702|814703|814704|814705|814706|814707|814708|814709|814710|814711|814712|814713|814714|814715|814716|814717|814718|814719|814720|814721|814722|814723|814724|814725|814726|814727|814728|814729|814730|814731|814732|814733|814734|814735|814736|814737|814738|814739|814740|814741|814742|814743|814744|814745|814746|814747|814748|814749|814750|814751|814752|814753|814754|814755|814756|814757|814758|814759|814760|814761|814762|814763|814764|814765|814766|814767|814768|814769|814770|814771|814772|814773|814774|814775|814776|814777|814778|814779|814780|814781|814782|814783|814784|814785|814786|814787|814788|814789|814790|814791|814792|814793|814794|814795|814796|814797|814798|814799|814800|814801|814802|814803|814804|814805|814806|814807|814808|814809|814810|814811|814812|814813|814814|814815|814816|814817|814818|814819|814820|814821|814822|814823|814824|814825|814826|814827|814828|814829|814830|814831|814832|814833|814834|814835|814836|814837|814838|814839|814840|814841|814842|814843|814844|814845|814846|814847|814848|814849|814850|814851|814852|814853|814854|814855|814856|814857|814858|814859|814860|814861|814862|814863|814864|814865|814866|814867|814868|814869|814870|814871|814872|814873|814874|814875|814876|814877|814878|814879|814880|814881|814882|814883|814884|814885|814886|814887|814888|814889|814890|814891|814892|814893|814894|814895|814896|814897|814898|814899|814900|814901|814902|814903|814904|814905|814906|814907|814908|814909|814910|814911|814912|814913|814914|814915|814916|814917|814918|814919|814920|814921|814922|814923|814924|814925|814926|814927|814928|814929|814930|814931|814932|814933|814934|814935|814936|814937|814938|814939|814940|814941|814942|814943|814944|814945|814946|814947|814948|814949|814950|814951|814952|814953|814954|814955|814956|814957|814958|814959|814960|814961|814962|814963|814964|814965|814966|814967|814968|814969|814970|814971|814972|814973|814974|814975|814976|814977|814978|814979|814980|814981|814982|814983|814984|814985|814986|814987|814988|814989|814990|814991|814992|814993|814994|814995|814996|814997|814998|814999|815000|815001|815002|815003|815004|815005|815006|815007|815008|815009|815010|815011|815012|815013|815014|815015|815016|815017|815018|815019|815020|815021|815022|815023|815024|815025|815026|815027|815028|815029|815030|815031|815032|815033|815034|815035|815036|815037|815038|815039|815040|815041|815042|815043|815044|815045|815046|815047|815048|815049|815050|815051|815052|815053|815054|815055|815056|815057|815058|815059|815060|815061|815062|815063|815064|815065|815066|815067|815068|815069|815070|815071|815072|815073|815074|815075|815076|815077|815078|815079|815080|815081|815082|815083|815084|815085|815086|815087|815088|815089|815090|815091|815092|815093|815094|815095|815096|815097|815098|815099|815100|815101|815102|815103|815104|815105|815106|815107|815108|815109|815110|815111|815112|815113|815114|815115|815116|815117|815118|815119|815120|815121|815122|815123|815124|815125|815126|815127|815128|815129|815130|815131|815132|815133|815134|815135|815136|815137|815138|815139|815140|815141|815142|815143|815144|815145|815146|815147|815148|815149|815150|815151|815152|815153|815154|815155|815156|815157|815158|815159|815160|815161|815162|815163|815164|815165|815166|815167|815168|815169|815170|815171|815172|815173|815174|815175|815176|815177|815178|815179|815180|815181|815182|815183|815184|815185|815186|815187|815188|815189|815190|815191|815192|815193|815194|815195|815196|815197|815198|815199|815200|815201|815202|815203|815204|815205|815211|815212|815213|815214|815215|815216|815217|815218|815219|815220|815221|815222|815223|815224|815225|815226|815227|815228|815229|815230|815231|815232|815233|815234|815235|815236|815237|815238|815239|815240|815241|815242|815243|815244|815245|815246|815247|815248|815249|815250|815251|815252|815253|815254|815255|815256|815257|815258|815259|815260|815261|815262|815263|815264|815265|815266|815267|815268|815269|815270|815271|815272|815273|815274|815275|815276|815277|815278|815279|815280|815281|815282|815283|815284|815285|815286|815287|815288|815289|815290|815291|815292|815293|815294|815295|815296|815297|815298|815299|815300|815301|815302|815303|815304|815305|815306|815307|815308|815309|815310|815311|815312|815313|815314|815315|815316|815317|815318|815319|815320|815321|815322|815323|815324|815325|815326|815327|815328|815329|815330|815331|815332|815333|815334|815335|815336|815337|815338|815339|815340|815341|815342|815343|815344|815345|815346|815347|815348|815349|815350|815351|815352|815353|815354|815355|815356|815366|815367|815368|815369|815370|815371|815372|815373|815374|815375|815380|815381|815382|815383|815384|815385|815386|815387|815388|815389|815390|815391|815392|815393|815394|815395|815396|815397|815398|815399|815400|815401|815402|815403|815404|815405|815406|815407|815408|815409|815410|815411|815412|815413|815414|815415|815416|815417|815418|815419|815420|815421|815422|815423|815424|815425|815426|815427|815428|815429|815430|815431|815432|815434|815435|815436|815437|815438|815439|815440|815441|815442|815443|815444|815445|815446|815447|815448|815449|815450|815451|815452|815453|815454|815455|815456|815457|815458|815459|815460|815461|815462|815463|815464|815465|815466|815467|815468|815469|815470|815471|815472|815473|815474|815475|815476|815477|815478|815479|815480|815481|815482|815483|815484|815485|815486|815487|815488|815489|815490|815491|815492|815493|815494|815495|815496|815497|815498|815499|815500|815501|815502|815503|815504|815505|815506|815507|815508|815509|815510|815511|815512|815513|815514|815515|815516|815517|815518|815519|815520|815521|815522|815523|815524|815525|815526|815527|815528|815529|815530|815531|815532|815533|815534|815535|815536|815537|815538|815539|815540|815541|815542|815543|815544|815545|815546|815547|815548|815549|815550|815551|815552|815553|815554|815555|815556|815557|815558|815559|815560|815561|815562|815563|815564|815565|815566|815567|815568|815569|815570|815571|815572|815573|815574|815575|815576|815577|815578|815579|815580|815581|815582|815583|815584|815585|815586|815587|815588|815589|815590|815591|815592|815593|815594|815595|815596|815597|815598|815599|815600|815601|815602|815603|815604|815605|815606|815607|815608|815609|815610|815611|815612|815613|815614|815615|815616|815617|815618|815619|815620|815621|815622|815623|815624|815625|815626|815627|815628|815629|815630|815631|815632|815633|815634|815635|815636|815637|815638|815639|815640|815641|815642|815643|815644|815645|815646|815647|815648|815649|815650|815651|815652|815653|815654|815655|815656|815657|815658|815659|815660|815661|815662|815663|815664|815665|815666|815667|815668|815669|815670|815671|815672|815673|815674|815675|815676|815677|815678|815679|815680|815681|815682|815683|815684|815685|815686|815687|815688|815689|815690|815691|815692|815693|815694|815695|815696|815697|815698|815699|815700|815701|815702|815703|815704|815705|815706|815707|815708|815709|815710|815711|815712|815713|815714|815715|815716|815717|815718|815719|815720|815721|815722|815723|815724|815725|815726|815727|815728|815729|815730|815731|815732|815733|815734|815735|815736|815737|815738|815739|815740|815741|815742|815743|815744|815745|815746|815747|815748|815749|815750|815751|815752|815753|815754|815755|815756|815757|815758|815759|815760|815761|815762|815763|815764|815765|815766|815767|815768|815769|815770|815771|815772|815773|815774|815775|816046|818445|818463|818466|818470|818501|818651|818792|819537|819538|819539|819540|819541|819542|819543|819544|824166|824181|824191|824192|824195|824196|824197|825661|825667|825669|825683|825684|825692|825712|825715|826564|826568|826581|826588|826600|826611|826625|826626|826637|826728|826759|827923|827943|827963|828458|828459|828471|828482|828484|828487|828492|828494|829599|829646|829652|829655|829667|829683|829729|829747|829753|829754|829792|829799|829805|829817|830076|830077|830078|830079|830080|830081|830082|830083|830084|830085|830086|830087|830088|830089|830090|830091|830092|830093|830094|830095|830096|830097|830098|830099|830100|830101|830102|830103|830104|830105|830106|830107|830108|830109|830110|830111|830112|830113|830114|830115|830116|830117|830118|830119|830120|830121|830122|830123|830124|830125|830126|830127|830128|830129|830130|830131|830132|830133|830134|830135|830136|830137|830138|830139|830140|830141|830142|830143|830144|830145|830146|830147|830148|830149|830150|830151|830152|830153|830154|830155|830156|830157|830158|830159|830160|830161|830162|830163|830164|830165|830166|830167|830168|830169|830170|830171|830172|830173|830174|830175|833763|833785|833788|833793|835143|835992|835998|837381|837600|837609|837621|837634|837645|837666|837712|837728|837729|837756|837758|837768|837788|837789|837831|837855|837890|837909|837933|840634|840669|840671|840680|840701|840757|840801|840820|840829|840847|840871|840875|843585|843592|843624|843637|843639|844131|844154|844184|845208|845209|845413|845698|845701|845741|845749|845754|845755|845776|845806|845812|845819|846302|846915|847243|847263|847276|849140|849159|851006|851008|851010|851244|851245|851471|851560|851800|851814|851818|851831|851854|851856|851858|851860|851862|851864|851898|851900|851903|851906|852196|852532|852569|852746|852780|852813|853153|853247|853442|853547|853771|853884|853905|854159|854225|854303|854322|854453|854516|854563|854714|854762|854772|854973|855170|855228|855230|855257|855334|855395|855503|855505|859830|872326|905922|906020|906348|907207|907208|907209|907210|907211|907212|907213|907214|907215|907216|907217|907218|907219|907220|907221|907222|907223|907224|907225|907226|907227|907228|907229|907230|907231|907232|907233|907234|907235|907236|907237|907238|907239|907240|907241|907242|907243|907244|907245|907246|907247|907248|907249|907250|907251|907252|907253|907254|907255|907256|907257|907258|907259|907260|907261|907262|907263|907264|907265|907266|907267|907268|907269|907270|907271|907272|907273|907274|908615|908616|908617|908618|908619|908620|908621|908622|908623|908624|908625|908626|908627|908628|908629|908630|908631|908632|908633|908634|908635|908636|908637|908638|908639|908640|908641|908642|908643|908644|908645|908646|908647|908648|908649|908650|908651|908652|908653|908654|908655|908656|908657|908658|908659|908660|908661|908662|908663|908664|908665|908666|908667|908668|908669|908670|908671|908672|908673|908674|908675|908676|908677|908678|908679|908680|908681|908682|908683|908684|908685|908686|908687|908688|908689|908690|908691|908692|908693|908694|908695|908696|908697|908698|908699|908700|908701|908702|908703|908704|908705|908706|908707|908708|908709|908710|908711|908712|908713|908714|908715|908716|908717|908718|908719|908720|908721|908722|908723|908724|908725|908726|908727|908728|908729|908730|908731|908732|908733|908734|908735|908736|908737|908738|908739|908740|908741|908742|908743|908744|908745|908746|908747|908748|908749|908750|908751|908752|908753|908754|908755|908756|908757|908758|908759|908760|908761|908762|908763|908764|908765|908766|908767|908768|908769|908770|908771|908772|908773|908774|908775|908776|908777|908778|908779|908780|908781|908782|908783|908784|908785|908786|908787|908788|908789|908790|908791|908792|908793|908794|908795|908796|908797|908798|908799|908800|908801|908802|908803|908804|908805|908806|908807|908808|908809|908810|908811|908812|908813|908814|908815|908816|908817|908818|908819|908820|908821|908822|908823|908824|908825|908826|908827|908828|908829|908830|908831|908832|908833|908834|908835|908836|908837|908838|908839|908840|908841|908842|908843|908844|908845|908846|908847|908848|908849|908850|908851|908852|908853|908854|908855|908856|908857|908858|908859|908860|908861|908862|908863|908864|908865|908866|908867|908868|908869|908870|908871|908872|908873|908874|908875|908876|908877|908878|908879|908880|908881|908882|908883|908884|908885|908886|908887|908888|908889|908890|908891|908892|908893|908894|908895|908896|908897|908898|908899|908900|908901|908902|908903|908904|908905|908906|908907|908908|908909|908910|908911|908912|908913|908914|908915|908916|908917|908918|908919|908920|908921|908922|908923|908924|908925|908926|908927|908928|908929|908930|908931|908932|908933|908934|908935|908936|908937|908938|908939|908940|908941|908942|908943|908944|908945|908946|908947|908948|908949|908950|908951|908952|908953|908954|908955|908956|908957|908958|908959|908960|908961|908962|908963|908964|908965|908966|908967|908968|908969|908970|908971|908972|908973|908974|908975|908976|908977|908978|908979|908980|908981|908982|908983|908984|908985|908986|908987|908988|908989|908990|908991|908992|908993|908994|908995|908996|908997|908998|908999|909000|909001|909002|909003|909004|909005|909006|909007|909008|909009|909010|909011|909012|909013|909014|909015|909016|909017|909018|909019|909020|909021|909022|909023|909024|909025|909026|909027|909028|909029|909030|909031|909032|909033|909034|909035|909036|909037|909038|909039|909040|909041|909042|909043|909044|909045|909046|909047|909048|909049|909050|909051|909052|909053|909054|909055|909056|909057|909058|909059|909060|909061|909062|909063|909064|909065|909066|909067|909068|909069|909070|909071|909072|909073|909074|909075|909076|909077|909078|909079|909080|909081|909082|909294|909295|909296|909297|909298|909299|909300|909301|909302|909303|909304|909305|909306|909307|909308|909309|909310|909311|909312|909313|909314|909315|909316|909317|909318|909319|909320|909321|909322|909323|909324|909325|909326|909327|909328|909329|909330|909331|909332|909333|909334|909335|909336|909337|909338|909339|909340|909341|909342|909343|909344|909345|909346|909347|909348|909349|909350|909351|909352|909353|909354|909355|909356|909357|909358|909359|909360|909361|909362|909363|909364|909365|909366|909367|909368|909369|909370|909371|909372|909373|909679|909680|909681|909682|909683|909684|909685|909686|909687|909688|909689|909690|909691|909692|909693|909694|909695|909696|909697|909698|909699|909700|909701|909702|909703|909704|909705|909706|909707|909708|909709|909710|909711|909712|909713|909714|909715|909716|909717|909718|909719|909720|909721|909722|909723|909724|909725|909726|909727|909728|909729|909730|909731|909732|909733|909734|909735|909736|909737|909738|909739|909740|909741|909742|909743|909744|909745|909746|909747|909748|909749|909750|909751|909752|909753|909754|909755|909756|909757|909758|909759|909760|909761|909762|909763|909764|909765|909766|909767|909768|909769|909770|909771|909772|909773|909774|909775|909776|909777|909778|909779|909780|909781|909782|909783|909784|909785|909786|909787|909788|909789|909790|909791|909792|909793|909794|909795|909796|909797|909798|909799|909800|909801|909802|909803|909804|909805|909806|909807|909808|909809|909810|909811|909812|909813|909814|909815|909816|909817|909818|909819|909820|909821|909822|909823|909824|909825|909826|909827|909828|909829|909830|909831|909832|909833|909834|909835|909836|909837|909838|909839|909840|909841|909842|909843|909844|909845|909846|909847|909848|909849|909850|909851|909852|909853|909854|909855|909856|909857|909858|909859|909860|909861|909862|909863|909864|909865|909866|909867|909868|909869|909870|909871|909872|909873|909874|909875|909876|909877|909878|909879|909880|909881|909882|909883|909884|909885|909886|909887|909888|909889|909890|909891|909892|909893|909894|909895|909896|909897|909898|909899|909900|909901|909902|909903|909904|909905|909906|909907|909908|909909|909910|909911|909912|909913|909914|909915|909916|909917|909918|909919|909920|909921|909922|909923|909924|909925|909926|909927|909928|909929|909930|909931|909932|909933|909934|909935|909936|909937|909938|909939|909940|909941|909942|909943|909944|909945|909946|909947|909948|909949|909950|909951|909952|909953|909954|909955|909956|909957|909958|909959|909960|909961|909962|909963|909964|909965|909966|909967|909968|909969|909970|909971|909972|909973|909974|909975|909976|909977|909978|909979|909980|909981|909982|909983|909984|909985|909986|909987|909988|909989|909990|909991|909992|909993|909994|909995|909996|909997|909998|909999|910000|910001|910002|910003|910004|910005|910006|910007|910008|910009|910010|910011|910012|910013|910014|910015|910016|910017|910018|910019|910020|910021|910022|910023|910024|910025|910026|910027|910028|910029|910030|910031|910032|910033|910034|910035|910036|910037|910038|910039|910040|910041|910042|910043|910044|910045|910046|910047|910048|910049|910050|910051|910052|910053|910054|910055|910056|910057|910058|910059|910060|910061|910062|910063|910064|910065|910066|910067|910068|910069|910070|910071|910072|910073|910074|910075|910076|910077|910078|910079|910080|910081|910082|910083|910084|910085|910086|910087|910088|910089|910090|910091|910092|910093|910094|910095|910096|910097|910098|910099|910100|910101|910102|910103|910104|910105|910106|910107|910108|910109|910110|910111|910112|910113|910114|910115|910116|910117|910118|910119|910120|910121|910122|910123|910124|910125|910126|910127|910128|910129|910130|910131|910132|910133|910134|910135|910136|910137|910138|910139|910140|910141|910142|910143|910144|910145|910146|910147|910148|910149|910150|910151|910152|910153|910154|910155|910156|910157|910158|910159|910160|910161|910162|910163|910164|910165|910166|910167|910907|910908|910909|910910|910911|910912|910913|910914|910915|910916|910917|910918|910919|910920|910921|910922|910923|910924|910925|910926|910927|910928|910929|910930|910931|910932|910933|910934|910935|910936|910937|910938|910939|910940|910941|910942|910943|910944|910945|910946|910947|910948|910949|910950|910951|910952|910953|910954|910955|910956|910957|910958|910959|910960|910961|910962|910963|910964|910965|910966|910967|910968|910969|910970|910971|910972|910973|910974|910975|910976|910977|910978|910979|910980|910981|910982|910983|910984|910985|910986|910987|910988|910989|910990|910991|910992|910993|910994|910995|910996|910997|910998|910999|911000|911001|911002|911003|911004|911005|911006|911007|911008|911009|911010|911011|911012|911013|911014|911015|911016|911017|911018|911019|911020|911021|911022|911023|911024|911025|911026|911027|911028|911029|911030|911031|911032|911033|911034|911035|911036|911037|911038|911039|911040|911041|911042|911043|911044|911045|911046|911047|911048|911049|911050|911051|911052|911053|911054|911055|911056|911057|911058|911059|911060|911061|911062|911063|911064|911065|911066|911067|911068|911069|911070|911071|911072|911073|911074|911075|911076|911077|911078|911079|911080|911081|911082|911083|911084|911085|911086|911087|911088|911089|911090|911091|911147|911148|911149|911150|911151|911152|911153|911154|911155|911156|911157|911158|911159|911160|911161|911162|911163|911164|911165|911166|911167|911168|911169|911170|911171|911172|911173|911174|911175|911176|911177|911178|911179|911180|911181|911182|911183|911184|911185|911186|911187|911188|911189|911190|911191|911192|911193|911194|911195|911196|911197|911198|911199|911200|911201|911202|911203|911204|911205|911206|911207|911208|911209|911210|911211|911212|911213|911214|911215|911216|911217|911218|911219|911220|911221|911222|911223|911224|911225|911226|911227|911228|911229|911230|911231|911232|911233|911234|911235|911236|911237|911238|911283|911284|911285|911286|911287|911288|911289|911290|911291|911292|911293|911294|911295|911296|911297|911298|911299|911300|911301|911302|911303|911304|911305|911306|911307|911308|911309|911310|911311|911312|911313|911314|911315|911316|911317|911318|911319|911320|911321|911322|911323|911324|911325|911326|911327|911328|911329|911330|911331|911332|911333|911334|911335|911336|911337|911338|911339|911340|911341|911342|911343|911344|911345|911346|911347|911348|911349|911350|911351|911352|911353|911354|911355|911356|911357|911358|911359|911360|911361|911362|911363|911364|911365|911366|911367|911368|911369|911370|911371|911372|911373|911374|911375|911376|911377|911378|911379|911380|911381|911382|911383|911384|911385|911386|911387|911388|911389|911390|911391|911392|911393|911394|911395|911396|911397|911398|911399|911400|911401|911402|911403|911404|911405|911406|911407|911408|911409|911410|911411|911412|911413|911414|911415|911416|911417|911418|911419|911420|911421|911422|911423|911424|911425|911426|911427|911428|911429|911430|911431|911432|911433|911434|911435|911436|911437|911438|911439|911440|911441|911442|911443|911444|911445|911446|911447|911448|911449|911450|911451|911452|911453|911454|911455|911456|911457|911458|911459|911460|911461|911462|911463|911464|911465|911466|911467|911468|911469|911470|911471|911472|911473|911474|911475|911476|911477|911478|911479|911480|911481|911482|911483|911484|911485|911486|911487|911488|911489|911490|911491|911492|911493|911494|911495|911496|911497|911498|911499|911500|911501|911502|911503|911504|911505|911506|911507|911508|911509|911510|911511|911512|911513|911514|911515|911516|911517|911518|911519|911520|911521|911522|911523|911524|911525|911526|911527|911528|911529|911530|911531|911532|911533|911534|911535|911536|911537|911538|911539|911540|911541|911542|911543|911544|911545|911546|911547|911548|912084|912085|912086|912087|912088|912089|912090|912091|912092|912093|912094|912095|912096|912097|912098|912099|912100|912101|912102|912103|912104|912105|912106|912107|912108|912109|912110|912111|912112|912113|912114|912115|912116|912117|912118|912119|912120|912121|912122|912123|912124|912125|912126|912127|912128|912129|912130|912131|912132|912133|912134|912135|912136|912137|912138|912139|912140|912141|912142|912143|912144|912145|912146|912147|912148|912149|912150|912151|912152|912153|912154|912155|912156|912157|912158|912159|912160|912161|912162|912163|912164|912165|912166|912167|912168|912169|912170|912171|912172|912173|912174|912175|912176|912177|912178|912179|912180|912181|912182|912183|912184|912185|912186|912187|912188|912189|912190|912191|912192|912193|912194|912195|912196|912197|912198|912199|912200|912201|912202|912203|912204|912205|912206|912207|912208|912209|912210|912211|912212|912213|912214|912215|912216|912217|912218|912219|912220|912221|912222|912223|912224|912225|912226|912227|912228|912229|912230|912231|912232|912233|912234|912235|912236|912237|912238|912239|912240|912241|912242|912243|912244|912245|912246|912247|912248|912249|912250|912251|912252|912253|912254|912255|912256|912257|912258|912259|912260|912261|912262|912263|912264|912265|912266|912267|912268|912269|912270|912271|912272|912273|912274|912275|912276|912277|912278|912279|912280|912281|912282|912283|912284|912285|912286|912287|912288|912289|912290|912291|912292|912293|912294|912295|912296|912297|912298|912299|912300|912301|912302|912303|912304|912305|912306|912307|912308|912309|912310|912311|912312|912313|912314|912315|912316|912317|912318|912319|912320|912321|912322|912323|912324|912325|912326|912327|912328|912329|912330|912331|912332|912333|912334|912335|912336|912337|912338|912339|912340|912341|912342|912343|912344|912345|912346|912347|912348|912349|912350|912351|912352|912353|912354|912355|912356|912357|912358|912359|912360|912361|912362|912363|912364|912365|912366|912367|912368|912369|912370|912371|912372|912373|912374|912375|912376|913587|913588|913589|913590|913591|913592|913593|913594|913595|913596|913597|913598|913599|913600|913601|913602|913603|913604|913605|913606|913607|913608|913609|913610|913611|913612|913613|913614|913615|913616|913617|913618|913619|913620|913621|913622|913623|913624|913625|913626|913627|913628|913629|913630|913631|913632|913633|913634|913635|913636|913637|913638|913639|913640|913641|913642|913643|913644|913645|913646|913647|913648|913649|913650|913651|913652|913653|913654|913655|913656|913657|913658|913659|913660|913661|913662|913663|913664|913665|913666|913667|913668|913669|913670|913671|913672|913673|913674|913675|913676|913677|913678|913679|913680|913681|913682|913683|913684|913685|913686|913687|913688|913689|913690|913691|913692|913693|913694|913695|913696|913697|913698|913699|913700|913701|913702|913703|913704|913705|913706|913707|913708|913709|913710|913711|913712|913713|913714|913715|913716|913717|913718|913719|913720|913721|913722|913723|913724|913725|913726|913727|913728|913729|913730|913731|913732|913733|913734|913735|913736|913737|913738|913739|913740|913741|913742|913743|913744|913745|913746|913747|913748|913749|913750|913751|913752|913753|913754|913755|913756|913757|913758|913759|913760|913761|913762|913763|913764|913765|913766|913767|913768|913769|913770|913771|913772|913773|913774|913775|913776|913777|913778|913779|913780|913781|913782|913783|913784|913785|913786|913787|913788|913789|913790|913791|913792|913793|913794|913795|913796|913797|913798|913799|913800|913801|913802|913803|913804|913805|913806|913807|913808|913809|913810|913811|913812|913813|913814|913815|913816|913817|913818|913819|913820|913821|913822|913823|913824|913825|913826|913827|913828|913829|913830|913831|913832|913833|913834|913835|913836|913837|913838|913839|913840|913841|913842|913843|913844|913845|913846|913847|913848|913849|913850|913851|913852|913853|913854|913855|913856|913857|913858|913859|913860|913861|913862|913863|913864|913865|913866|913867|913868|913869|913870|913871|913872|913873|913874|913875|913876|913877|913878|913879|913880|913881|913882|913883|913884|913885|913886|913887|913888|913889|913890|913891|913892|913893|913894|913895|913896|913897|913898|913899|913900|913901|913902|913903|913904|913905|913906|913907|913908|913909|913910|913911|913912|913913|913914|913915|913916|913917|913918|913919|913920|913921|913922|913923|913924|913925|913926|913927|913928|913929|913930|913931|913932|913933|913934|913935|913936|913937|913938|913939|913940|913941|913942|913943|913944|913945|913946|913947|913948|913949|913950|913951|913952|913953|913954|913955|913956|913957|913958|913959|913960|913961|913962|913963|913964|913965|913966|913967|913968|913969|913970|913971|913972|913973|913974|913975|913976|913977|913978|913979|913980|913981|913982|913983|913984|913985|913986|913987|913988|913989|913990|913991|913992|913993|913994|913995|913996|913997|913998|913999|914000|914001|914002|914003|914004|914005|914006|914007|914008|914009|914010|914011|914012|914013|914014|914015|914016|914017|914018|914019|914020|914021|914022|914023|914024|914025|914026|914027|914028|914029|914030|914031|914032|914033|914034|914035|914036|914037|914038|914039|914040|914041|914042|914043|914044|914045|914046|914047|914048|914049|914050|914051|914052|914053|914054|914055|914056|914057|914058|914059|914060|914061|914062|914063|914064|914065|914066|914067|914068|914069|914070|914071|914072|914073|914074|914075|914076|914077|914078|914079|914080|914081|914082|914083|914084|914085|914086|914087|914088|914089|914090|914091|914092|914093|914094|914095|914096|914097|914098|914099|914100|914101|914102|914103|914104|914105|914106|914107|914108|914109|914110|914111|914112|914113|914114|914115|914116|914117|914118|914119|914120|914121|914122|914123|914124|914125|914126|914127|914128|914129|914130|914131|914132|914133|914134|914135|914136|914137|914138|914139|914140|914141|914142|914143|914144|914145|914146|914147|914148|914149|914150|914151|914152|914153|914154|914155|914156|914157|914158|914159|914160|914161|914162|914163|914164|914165|914166|914167|914168|914169|914170|914171|914172|914173|914174|914175|914176|914177|914178|914179|914180|914181|914182|914183|914184|914185|914186|914187|914188|914189|914190|914191|914192|914193|914194|914195|914196|914197|914198|914199|914200|914201|914202|914203|914204|914205|914206|914207|914616|914617|914618|914619|914620|914621|914622|914623|914624|914625|914626|914627|914628|914629|914630|914631|914632|914633|914634|914635|914636|914637|914638|914639|914640|914641|914642|914643|914644|914645|914646|914647|914648|914824|914825|914826|914827|914828|914829|914830|914831|914832|914833|914834|914835|914836|914837|914838|914839|914840|914841|914842|914843|914844|914845|914846|914847|914848|914849|914850|914851|914852|914853|914854|914855|914856|914857|914858|914859|914860|914861|914862|914863|914864|914865|914866|914916|914917|914918|914919|914920|914921|914922|914923|914924|914925|914926|914927|914928|914929|914930|914931|914932|914933|914934|914935|914936|914937|914938|914939|914940|914941|914942|914943|914944|914945|914946|914947|914948|914949|914950|914951|914952|914953|914954|914955|914956|914957|914958|914959|914960|914961|914962|914963|914964|914965|914966|914967|914968|914969|914970|914971|914972|914973|915177|915179|915181|915183|915185|915187|915189|915191|915193|915232|915235|915237|915243|915246|915250|915252|915254|915256|915258|915259|915260|915261|915262|915263|915265|915267|915269|915271|915273|915275|915277|915279|915281|915283|915285|915287|915289|915291|915292|915294|915296|915297|915300|915302|915304|915310|915312|915314|915316|915318|915320|915322|915324|915326|915328|915330|915332|915334|915336|915338|915340|915343|915345|915347|915350|915356|915360|915364|915368|915370|915374|915377|915379|915381|915382|915383|915385|915387|915388|915389|915391|915392|915393|915395|915397|915399|915401|915403|915441|915443|915445|915447|915448|915449|915450|915451|915453|915455|915456|915457|915459|915461|915463|915465|915466|915467|915470|915473|915474|915475|915477|915479|915481|915482|915483|915484|915485|915486|915488|915490|915493|915496|915499|915501|915503|915511|915514|915517|915521|915522|915523|915525|915527|915529|915531|915533|915535|915536|915537|915539|915540|915541|915543|915545|915547|915549|915550|915552|915553|915555|915556|915557|915559|915560|915561|915562|915563|915564|915565|915566|915567|915568|915569|915570|915571|915572|915573|915574|915575|915576|915577|915578|915579|915580|915581|915582|915583|915584|915585|915586|915587|915588|915589|915590|915591|915592|915593|915594|915595|915596|915597|915598|915599|915601|915602|915607|915609|915611|915612|915613|915614|915615|915617|915619|915622|915625|915627|915628|915630|915631|915632|915633|915634|915635|915636|915637|915639|915640|915643|915649|915651|915655|915658|915660|915661|915662|915663|915664|915665|915666|915667|915668|915669|915671|915672|915673|915674|915675|915676|915677|915678|915679|915680|915681|915682|915683|915684|915685|915686|915687|915688|915689|915690|915691|915692|915693|915694|915695|915696|915697|915698|915699|915700|915701|915702|915703|915704|915705|915706|915707|915708|915709|915710|915711|915712|915713|915714|915715|915716|915717|915718|915719|915720|915721|915722|915724|915726|915728|915730|915732|915734|915736|915738|915740|915742|915749|915751|915755|915759|915761|915763|915765|915767|915771|915773|915775|915777|915779|915781|915783|915785|915787|915789|915791|915793|915795|915797|915799|915801|915803|915805|915807|915809|915811|915813|915815|915817|915819|915821|915823|915825|915831|915835|915839|915903|915907|915909|915911|915913|915915|915917|915919|915921|915923|915925|915927|915929|915931|915932|915933|915934|915936|915937|915938|915939|915940|915941|915942|915943|915944|915945|915946|915947|915948|915949|915950|915951|915952|915953|915954|915955|915956|915957|915958|915960|915961|915962|915963|915965|915966|915967|915969|915970|915971|915972|915973|915974|915975|915976|915977|915978|915979|915980|915981|915982|915983|915984|915985|915986|915987|915988|915989|915990|915991|915992|915993|915994|915995|915996|915997|915998|915999|916000|916001|916002|916003|916005|916006|916007|916008|916009|916010|916011|916012|916013|916014|916015|916016|916017|916018|916019|916020|916021|916022|916023|916025|916026|916028|916029|916030|916031|916032|916033|916034|916035|916036|916037|916039|916040|916041|916042|916043|916044|916045|916046|916047|916048|916049|916050|916051|916052|916053|916054|916055|916057|916059|916061|916063|916065|916066|916067|916068|916069|916071|916073|916075|916077|916078|916079|916080|916081|916082|916083|916084|916085|916086|916087|916088|916089|916090|916091|916092|916093|916095|916097|916098|916099|916100|916101|916102|916103|916104|916105|916106|916107|916108|916109|916110|916111|916112|916113|916115|916116|916117|916120|916121|916122|916124|916125|916126|916127|916129|916135|916138|916142|916144|916145|916150|916162|916163|916165|916167|916168|916169|916171|916186|916188|916189|916192|916195|916197|916198|916200|916202|916204|916205|916206|916207|916211|916212|916213|916214|916216|916220|916221|916222|916223|916224|916225|916228|916232|916233|916234|916235|916239|916241|916246|916250|916254|916257|916258|916261|916264|916265|916266|916267|916268|916270|916271|916272|916274|916275|916276|916278|916279|916280|916283|916286|916290|916300|916302|916308|916310|916320|916322|916326|916329|916333|916338|916340|916345|916346|916351|916356|916358|916360|916362|916387|916394|916396|916399|916406|916407|916408|916409|916411|916412|916414|916417|916418|916419|916421|916422|916423|916424|916426|916427|916428|916430|916432|916433|916434|916435|916437|916439|916440|916441|916447|916448|916450|916451|916452|916454|916456|916457|916459|916460|916461|916462|916464|916466|916468|916469|916470|916471|916472|916473|916474|916475|916476|916477|916478|916479|916480|916481|916482|916483|916484|916485|916486|916487|916488|916489|916490|916491|916492|916493|916494|916495|916496|916498|916499|916500|916502|916503|916504|916506|916507|916508|916509|916511|916513|916514|916515|916516|916517|916519|916520|916521|916522|916525|916526|916527|916529|916530|916532|916533|916534|916536|916537|916538|916551|916554|916557|916560|916562|916565|916566|916568|916569|916570|916572|916573|916574|916575|916577|916578|916579|916580|916582|916584|916585|916586|916587|916589|916590|916593|916599|916600|916601|916611|916618|916620|916622|916623|916627|916632|916635|916637|916638|916640|916642|916645|916646|916663|916666|916669|916671|916673|916674|916676|916677|916684|916685|916687|916688|916690|916691|916692|916700|916701|916702|916703|916704|916705|916706|916707|916708|916709|916710|916711|916712|916713|916714|916715|916716|916717|916718|916719|916720|916721|916722|916723|916724|916725|916726|916727|916728|916729|916730|916731|916732|916733|916734|916735|916736|916737|916738|916739|916740|916741|916742|916743|916744|916745|916746|916747|916748|916749|916750|916751|916752|916753|916754|916755|916764|916765|916766|916773|916774|916775|916776|916777|916780|916781|923799|923800|923801|923802|923803|923804|923805|923806|923807|923808|923809|923810|923811|923812|923813|923814|923815|923816|923817|923818|923819|923820|923821|923822|923823|923824|923825|923826|923827|923828|932647|932648|932649|932650|932651|932652|932653|932654|932655|932656|932657|932658|932659|932660|932661|932662|932663|932664|932665|932666|932667|932668|932669|932670|932671|932672|932673|932674|939981|939982|939983|940796|940797|944326|944327|944328|944329|944330|944331|944332|944333|944334|944335|944336|944337|944338|944339|944340|944341|944342|944343|944344|944345|944346|944347|944348|944349|944350|944351|944352|944353|944354|944355|944356|944357|944358|944359|944360|953975|953976|953977|953978|953979|953980|953981|953982|953983|953984|953985|953986|953987|953988|953989|953990|953991|953992|953993|953994|953995|953996|959749|959750|959751|960549|960550", + "text": "Hereditary cancer-predisposing syndrome" + }, + { + "baseId": "15048|15049|15050|15058|19325|20422|34214|34217|34220|34221|34225|34226|34230|94503|134671|186057|212520|212530|213450|213451|221629|221642|221644|221645|222806|224315|239897|239955|239956|243332|252546|271323|283579|283593|283615|283616|284276|286258|299721|301262|301268|302313|304456|304459|304461|304463|309043|309060|309071|353550|395087|395264|395624|395930|395938|403292|455484|455487|455491|455588|455591|455888|456096|456499|456503|456865|521830|521904|521906|522221|522312|522661|522662|522664|560678|561111|561113|561132|561136|561167|561169|563903|566173|620244|635334|635335|635336|635337|635338|635339|647942|651741|683828|683829|683830|683831|683832|683833|683834|683835|683836|683837|685200|685201|685202|685203|685204|685205|686927|686928|686931|686932|686933|689844|689845|689846|689847|691975|692083|765918|765925|779896|782690|782694|787519|790670|819770|832624|832625|832626|832627|832628|832629|851112|851322|895724|897036|924527|924528|928929|933266|940841|944962|945266|954408|954409|954942|954943|954944", + "text": "Hereditary hemochromatosis" + }, + { + "baseId": "15048|966618|969329", + "text": "Cutaneous photosensitivity" + }, + { + "baseId": "15048|360805", + "text": "Porphyrinuria" + }, + { + "baseId": "15048|682747", + "text": "Hemochromatosis type 2" + }, + { + "baseId": "15048|15049", + "text": "Bronze diabetes" + }, + { + "baseId": "15048|23886|23891|24765|32903|33127|33128|33130|33132|33133|33137|33140|33145|103887|103896|103986|104129|132725|336528|336531|336536|336542|336544|336553|336554|336561|336562|346238|346247|346248|346249|346250|346257|346260|346261|346266|346269|350516|350518|350521|350522|350524|350525|350527|350528|350529|350530|351560|351563|351566|351567|351570|351574|418806|418807|420431|442309|469532|533749|533765|534332|577873|577874|577876|577877|590943|590944|590945|590948|590949|590950|590951|590952|590953|590955|590965|648878|648879|648880|648881|648882|648883|648884|653161|694610|694614|694615|694616|694617|694618|695855|742577|848660|848661|886639|886640|886641|886642|886643|886644|886645|886646|886647|886648|886649|886650|886651|886652|886653|886654|886655|886656|886657|886658|886659|886660|886661|886662|886663|886664|886665|886666|886667|886668|919751|951189|960949", + "text": "Alzheimer disease" + }, + { + "baseId": "15048|16740|16742|17524|19329|19331|19332|19334|19350|19367|22872|22883|27386|28984|29127|29131|29141|29164|29209|29220|29230|29680|31328|31338|31379|32039|32043|32048|32049|32351|32386|32485|38590|39416|40351|45303|45605|45795|48174|50281|51564|52028|52044|52045|52071|52136|52146|52155|52270|52287|70951|77659|99352|101204|102208|133120|133133|133139|133153|141325|151663|153737|165560|168250|175442|175610|181400|181428|181463|182990|187315|187363|187986|187995|187996|188003|188008|192716|193089|195318|195508|195559|201545|205216|207373|213298|213517|213602|213614|231766|243979|243980|243996|244257|259764|263177|263180|263194|263240|263241|263277|263291|263293|263316|263394|263403|263416|263417|263518|263934|264139|265506|271274|271557|272622|273563|295323|312875|345158|346557|359454|359566|360802|360811|360819|360859|360872|360898|360946|360972|360974|360982|361037|361038|361058|361059|361072|361082|361104|362135|362312|367608|376313|380289|389102|394589|399749|414003|414007|414011|419728|421792|425565|434691|439829|441976|443485|445808|445822|447245|448196|460360|470377|475556|481888|494081|495459|501070|513901|513906|513919|513932|513933|513950|513962|513963|513965|513993|514025|514034|514129|514146|514151|514177|514222|520980|535226|590034|590053|590056|590058|590066|590086|590460|613542|614175|619854|622212|622213|677418|677428|682676|794202|801189|801253|904254|918916|920247|974891", + "text": "7 conditions" + }, + { + "baseId": "15049|15050|17586|18005|18818|18846|20935|20936|20943|20949|21407|22745|22762|22988|26559|27642|27645|27652|28368|28535|28536|28541|28944|28971|29701|29967|29987|30372|32581|34164|36254|36270|36280|36288|38432|48426|48918|50281|50282|51081|52045|52071|54113|56195|56266|56357|56399|56456|56592|56666|56690|56713|56728|56878|56896|71378|71401|78562|79181|79391|102176|102192|105451|135440|135718|136510|137584|150555|151704|152602|152917|153737|171102|171103|171865|171868|171869|171870|171871|171872|171873|172611|172621|172686|172863|172957|173003|173045|173046|173088|173135|173156|173307|173331|173363|173447|173490|175500|175979|178130|178385|178478|181403|181410|181412|181413|181436|182955|184342|184379|184384|184423|186244|187243|189478|189582|189586|189592|189659|189673|189745|190811|191589|192080|192343|192648|192752|192816|193029|193740|193816|193915|193923|193928|194009|195312|195314|195474|197033|197386|197829|198692|198753|198753|198754|198754|198768|198796|198806|198822|198924|199019|199066|199081|199085|199184|199191|199229|199254|199432|199449|199449|199544|199572|199576|199729|199751|202902|202910|202926|202938|202940|202960|202978|202985|202987|203008|203013|203017|205753|213214|213576|223736|224323|224987|225076|225871|226501|226933|228631|228654|228719|228812|231514|237762|238384|238400|238443|238456|238472|242453|243967|243968|243969|243970|243971|243977|243982|243983|243989|243990|243991|244002|244004|244006|252133|258032|258458|263150|263174|263182|263183|263186|263214|263225|263256|263266|263272|263311|263321|263342|264844|265061|265335|266188|266545|266956|268326|268328|268703|269646|273865|274934|274943|274948|339687|353887|354283|354286|354287|359685|360800|360800|360827|360858|360875|360891|360900|360909|360911|360917|360931|360949|360966|361031|361095|361103|362138|373786|391634|391804|391891|391910|392055|392097|392098|392135|392302|392323|397267|397271|397282|404754|407274|411132|415577|422187|424467|425956|427956|428802|429383|434584|434634|440566|440625|441526|441571|441761|444002|445458|445463|449097|449144|449146|449154|449260|449421|449453|449589|449603|449693|450130|450131|450207|450236|457422|457703|457936|457981|458025|459871|464568|465378|465483|467286|470525|471580|477884|481620|488437|488511|488557|488582|490421|492360|492468|493054|493055|496677|502504|509280|509298|509360|509380|509812|512158|513899|513920|513976|513991|513997|514012|514042|514045|514062|514087|514105|514145|514156|514212|516657|516737|516762|516806|516859|516937|517059|517160|517163|517227|517235|517239|522932|523379|531474|531589|538932|538956|543641|550132|550166|550167|550228|552058|552059|552060|559480|563694|564520|569517|569649|570147|571466|572032|574567|574574|574575|576095|576607|576623|576638|577607|590032|590068|590079|590080|590096|609038|614175|614691|622048|622049|622050|625980|626014|626015|626461|643599|677070|679674|679687|679846|680922|800995|801079|801103|801104|801129|816044|816045|857333|857411|861454|905850|905851|905855|905856|917804|920210|971543|971545", + "text": "6 conditions" + }, + { + "baseId": "15049|22144|22144|22145|22145|22146|22146|22147|22147|22147|22148|22148|22148|22149|22149|22150|22150|22150|22151|22151|22152|22152|22153|22153|22153|22154|22154|22154|22155|22155|22156|22157|22157|22157|22158|22158|22158|22159|22159|22159|22161|22161|22161|22162|22162|22163|22163|22164|22165|22166|22166|22167|22167|22168|22168|22168|22169|22170|22171|22172|22173|22173|22174|22174|22175|22175|22176|22176|22177|22178|22178|22178|22179|22180|22180|22181|22182|22182|22183|22183|22183|22184|22185|22186|22188|22189|22189|22190|22191|22192|22193|22194|22194|22194|22195|22196|22197|22197|22198|22199|22199|22200|22201|22201|22202|22203|22204|22205|22205|22205|22206|22207|22207|22209|22210|22210|22211|22211|22212|22213|22214|22215|22216|22217|22218|22219|22220|22220|22221|22221|22221|22222|22223|22224|22224|22225|22225|22225|22226|22226|22227|22229|22229|22229|22229|22230|22231|22232|22233|22233|22233|22235|22236|22237|22237|22237|22238|22240|22241|22242|22242|22243|22244|22245|22246|22247|22247|22248|22249|22250|22250|22251|22252|22253|22254|22255|22256|22257|22258|22259|22260|22261|22262|22262|22264|22265|22266|22267|22268|22269|22270|22270|22271|22271|22273|22274|22275|22276|22277|22278|22279|22279|27573|29391|31643|33008|33858|33858|33858|44480|44481|44482|44483|44484|44485|44485|44485|44485|44486|44486|44487|44487|44488|44488|44489|44490|44492|44493|44494|44495|44495|44496|44497|44497|44497|44497|44498|44499|44499|44500|44500|44501|44501|44502|44502|44503|44504|44506|44506|44507|44508|44510|44510|44511|44512|44513|44513|44514|44515|44516|44517|44518|44518|44519|44521|44521|44522|44523|44524|44525|44525|44526|44527|44528|44528|44528|44529|44529|44530|44530|44530|44531|44531|44531|44532|44532|44533|44534|44535|44536|44537|44538|44539|44539|44540|44541|44542|44543|44544|44545|44546|44547|44548|44550|44551|44552|44553|44554|44554|44555|44556|44557|44557|44558|44559|46824|46824|47057|47057|47058|47058|47058|47059|47059|47062|47062|47062|47062|47331|47331|47333|47333|47333|47335|47335|47335|47338|47338|47340|47340|47342|47438|47455|48115|48115|52745|52746|52748|57834|57834|57836|57842|57842|57842|57843|57843|57846|57846|57847|57847|57850|57850|57850|57850|57854|57854|57854|57862|57866|57866|57870|57870|65697|65698|65699|65701|67824|67825|67826|67827|67828|67829|67830|67830|67831|67832|67833|67835|67835|67838|67839|67840|67841|67842|67843|67844|67845|67847|67848|67851|67852|67853|67854|67855|67856|67858|67858|67859|67860|67862|67864|67866|67867|67868|67869|67870|67872|67873|67874|67875|67876|67878|67879|67880|67881|67882|67883|67884|67885|67886|67886|67887|67888|67889|67890|67893|67894|67895|67896|67897|67897|67899|67899|67900|67901|67901|67904|67905|67905|67906|67907|67908|67909|67910|67910|67911|67912|67912|67914|67915|67916|67916|67917|67918|67919|67922|67924|67925|67926|67927|67929|67930|67931|67933|67934|67936|67937|67938|67939|67940|67941|67942|67943|67943|67944|67945|67946|67948|67948|67950|67952|67953|67955|67957|67958|67959|67962|67963|67965|67966|67968|67970|67971|67972|67973|67974|67976|67977|67978|67979|67980|67982|67983|67985|67985|67985|67987|67988|67989|67990|67991|67992|67993|67993|67993|67994|67995|67998|67999|68000|68001|68002|68003|68004|68005|68006|68006|68006|68007|68009|68010|68011|68012|68012|68014|68015|68015|68016|68017|68018|68019|68020|68020|68021|68022|68023|68023|68024|68025|68026|68027|68028|68029|68030|68031|68033|68033|68033|68034|68035|68036|68038|68039|68041|68042|68042|68043|68044|68045|68046|68047|68048|68049|68050|68051|68052|68052|68053|68054|68056|68058|68059|68059|68060|68061|68062|68063|68063|68064|68065|68066|68066|68067|68068|68069|68071|68071|68071|68072|68072|68073|68074|68075|68076|68077|68078|68079|68081|68083|68084|68085|68085|68086|68087|68089|68090|68091|68093|68093|68095|68096|68097|68098|68098|68099|68100|68102|68103|68104|68105|68106|68107|68108|68108|68109|68110|68111|68112|68113|68115|68116|68117|68118|68119|68120|68121|68123|68124|68125|68127|68128|68128|68129|68131|68133|68135|68139|68139|68140|68141|68142|68143|68144|68147|68148|68148|68150|68151|68151|68152|68153|68154|68155|68155|68156|68158|68159|68160|68160|68162|68163|68164|68169|68170|68171|68171|68172|68173|68174|68175|68176|68177|68177|68178|68179|68181|68183|68184|68185|68186|68187|68188|68189|68192|68193|68194|68196|68197|68197|68198|68200|68201|68202|68203|68204|68207|68208|68209|68210|68211|68213|68214|68214|68215|68216|68217|68218|68218|68220|68220|68222|68223|68224|68226|68227|68228|68229|68229|68230|68231|68232|68233|68234|68235|68236|68237|68238|68240|68242|68243|68243|68243|68245|68246|68247|68248|68249|68250|68251|68252|68253|68255|68257|68258|68260|68260|68262|68263|68264|68266|68267|68268|68269|68269|68269|68270|68271|68271|68272|68273|68274|68274|68274|68278|68278|68279|68280|68281|68282|68282|68283|68284|68286|68287|68288|68289|68290|68291|68292|68293|68294|68295|68295|68296|68297|68298|68299|68301|68302|68303|68304|68305|68306|68308|68308|68310|68311|68313|68314|68316|68318|68320|68320|68321|68322|68325|68326|68327|68328|68329|68330|68334|68335|68336|68337|68338|68339|68340|68340|68342|68344|68345|68346|68347|68348|68348|68350|68351|68352|68352|68353|68353|68353|68354|68355|68356|68356|68357|68358|68358|68360|68360|68361|68362|68363|68364|68365|68366|68367|68369|68370|68371|68374|68375|68376|68376|68377|68379|68379|68380|68381|68382|68382|68383|68384|68385|68386|68387|68388|68389|68390|68393|68394|68396|68398|68400|68401|68403|68405|68405|68406|68407|68409|68410|68411|68413|68415|68416|68417|68418|68418|68419|68420|68422|68424|68425|68425|68426|68427|68429|68430|68432|68433|68434|68435|68437|68442|68443|68444|68445|68446|68447|68447|68448|68449|68449|68450|68451|68454|68455|68456|68457|68457|68458|68459|68460|68461|68463|68465|68465|68465|68466|68468|68469|68470|68472|68472|68473|68475|68476|68479|68479|68480|68482|68483|68484|68485|68486|68487|68488|68490|68491|68492|68493|68494|68494|68495|68496|68497|68499|68500|68501|68503|68505|68506|68508|68508|68510|68511|68512|68512|68513|68513|68514|68515|68517|68518|68519|68520|68521|68523|68524|68525|68526|68527|68529|68530|68531|68532|68533|68534|68535|68536|68537|68538|68539|68540|68541|68542|68543|68545|68546|68547|68548|68550|68550|68552|68553|68554|68555|68556|68558|68561|68562|68565|68567|68568|68569|68570|68572|68574|68575|68576|68577|68579|68579|68580|68581|68584|68585|68586|68588|68590|68591|68592|68593|68594|68595|68596|68597|68597|68600|68601|68604|68606|68607|68608|68611|68612|68613|68614|68614|68615|68616|68616|68618|68620|68621|68622|68623|68624|68626|68631|68632|68634|68635|68636|68637|68638|68638|68639|68641|68641|68642|68643|68644|68645|68646|68647|68648|68649|68650|68651|68652|68653|68655|68656|68657|68658|68658|68659|68660|68661|68662|68663|68664|68665|68666|68668|68669|68670|68672|68673|68674|68674|68677|68677|68677|68678|68679|68679|68680|68681|68681|68683|68685|68685|68685|68686|68687|68689|68690|68691|68692|68693|68693|68695|68696|68697|68698|68699|68700|68701|68702|68703|68703|68703|68705|68706|68707|68708|68708|68708|68709|68710|68712|68713|68714|68716|68717|68718|68719|68720|68722|68722|68723|68725|68725|68726|68728|68729|68730|68731|68732|68733|68734|68736|68736|68738|68739|68741|68742|68742|68743|68744|68745|68746|68747|68748|68749|68750|68751|68752|68753|68754|68755|68756|68756|68759|68761|68762|68763|68764|68764|68765|77003|77003|77005|77006|99055|99058|99059|99060|99061|99062|99063|99064|99066|124927|166107|171032|171722|171723|171724|171725|171726|174036|174036|174169|174173|178276|186743|186744|186745|186746|186747|186747|190751|190755|191499|192084|192625|193438|195898|205613|205614|205614|205615|205617|205619|205620|205621|205623|205625|205626|205627|205628|205629|205631|205632|205633|205634|205635|205636|212565|221666|236932|236970|239980|239981|239982|239983|239984|239985|239986|248494|252564|252565|252566|252568|252569|252571|252573|265961|266029|267207|268012|270643|270918|270918|271106|271442|272695|273837|274110|274210|274514|275215|301669|301687|301696|309497|309498|309534|309622|357562|357563|357564|357565|357566|357567|357568|357569|357570|357571|357572|357573|357574|357574|357575|357575|357576|357577|357578|357579|357580|357581|357582|357582|357583|357584|357585|357585|362284|362419|370760|395239|395393|395395|395404|395407|395423|395438|395632|395633|395636|395806|395809|395810|395813|396065|396065|396082|396083|425722|432602|432603|432604|432610|432617|432618|432619|432629|432629|432631|432632|432635|432638|432642|433026|433027|433029|433030|433032|433033|433034|433039|433040|456078|456084|456088|456090|456095|456097|456098|456324|456334|456341|456351|456353|456355|456361|456365|456636|456638|456642|456650|456654|456810|456999|457004|457007|457012|457014|457022|480433|480434|480435|480436|480438|480439|480439|480440|480441|480442|480444|480446|480448|480449|480450|480452|480453|480454|480455|480456|480457|480458|480459|480460|485739|485739|486425|487108|487109|487125|487154|487162|487174|487182|487199|487199|487205|487209|487214|487214|487224|487228|487229|487230|487232|487236|487237|487240|487243|487243|487244|487248|487253|487259|487264|487274|487276|487277|487286|487294|487298|487304|487306|487332|487336|489023|489035|489453|491045|491495|491495|493454|493478|493929|494020|496487|511037|513291|521876|522077|522079|522085|522249|522283|522354|522361|522449|522628|522782|522783|522784|522801|544113|544119|544127|544128|544130|544131|544135|544138|544146|544148|544150|544151|544156|544159|544164|544167|544173|544174|544176|544178|544180|544189|544191|544193|544198|544209|544211|544215|544216|544218|544220|544223|544223|544371|544378|544383|544388|544389|544397|544405|544407|544408|544417|544419|544428|544429|544431|544432|544436|544437|544438|544439|544440|544444|544445|544446|544451|544460|544463|544465|544466|544468|544471|544474|544476|544477|544480|544482|544485|544486|544488|544489|544490|544491|544492|544493|544494|544495|544495|544496|544498|544500|544503|544504|544507|544509|544510|544511|544513|544513|544515|544516|544517|544518|544518|544519|544520|544522|544523|544524|544525|544527|544530|544530|544531|544533|544535|544536|544538|544539|544543|544544|544546|544548|544550|544551|544553|544554|544556|544558|544560|544563|544569|544571|544573|544582|544585|544601|544606|544607|544609|544618|544622|549456|549459|551270|561027|561141|561226|561228|561234|561235|561237|561239|561242|561281|561285|561292|561300|561301|561307|561308|561314|563836|563969|563972|563973|563976|563980|563982|566042|566332|581269|584341|586642|587329|587967|589641|589707|589709|589784|609647|609651|609655|610293|610294|610295|610296|610297|610298|610299|610300|610301|610302|610303|610304|610305|610306|610307|610308|610309|610310|610311|610312|610313|610314|610315|610316|610317|610318|610319|610320|610320|610321|610322|610323|610324|610327|610328|610329|610330|610331|610332|610333|610334|610335|610336|610337|610338|610339|610340|610341|610342|610342|610343|610344|610345|610346|610347|610348|610349|610349|610350|610351|610352|610353|610354|610355|610356|610357|610358|610359|610360|610361|610362|610363|610364|610365|611073|611301|612279|612280|614543|621226|621227|621228|621229|621232|621235|621241|621246|621758|621759|621765|621888|622700|622701|622702|622703|622704|622705|622706|622743|622744|622745|622746|622747|622748|622749|622750|622751|622752|622753|622754|622756|622757|622758|625800|625986|635537|635538|635539|635540|635541|635542|635543|635544|635545|635546|635547|635548|635549|635550|635551|635552|635553|635554|635555|635556|635557|635558|635559|635560|635561|635562|635563|635564|651559|651564|651602|651700|651752|677034|681849|681850|681851|681852|681853|681854|683849|683850|685208|686965|686970|686971|686972|686973|686974|689853|689854|692112|692114|692117|692118|692119|692120|692121|692122|695338|695339|695341|695342|699773|699775|710727|710728|722265|750366|777612|782748|789471|789477|789477|790684|790685|790686|790687|790688|790689|790690|792573|799473|799475|799476|799488|799489|801646|801647|801648|801648|801649|804883|806291|806292|806293|806294|806295|806296|806296|806297|806298|806299|806300|806301|806302|806303|806304|806305|806306|806307|806308|806309|806310|806311|806312|806313|806314|806315|806316|806317|806318|806319|806320|806322|806323|806324|806325|806326|806327|806328|806329|806330|806331|806332|806336|806338|806340|806343|806344|806345|806346|806348|806349|806350|806351|806352|806353|806354|806355|806356|806359|806360|806361|806362|806363|806364|806365|806422|808844|808847|808856|808860|808862|808866|808870|808871|815364|815365|816411|819784|819785|819786|819787|819788|819789|819790|819791|819794|819795|819796|819797|819798|819799|819800|819801|819802|819803|819804|819805|832869|832870|832871|832872|832873|832874|832875|832876|832877|832878|832879|832880|832881|832882|832883|832884|832885|832886|832887|832888|832889|832890|832891|832892|832893|832894|832895|832896|832897|832898|832899|832900|832901|832902|832903|851127|851130|851616|858449|859578|897327|905030|905916|905917|905918|906318|916981|916983|916986|916992|921211|921212|924612|924613|924614|924615|924616|924617|924618|924619|924620|924621|933606|933607|933608|933609|933610|940057|945348|945349|945350|945351|954987|954988|954989|954990|954991|954992|954993|954994|954995|954996|954997|954998|954999|955000|955001|959826|962157|962158|962159|962160|962190|962191|965216|965217|965218|969157|969158|970069|970155|971579|971981|971982|971983|971984|971985|971986|971987|971988|971989|971990|971991|971992|971993|971994|971995|971996|971997|971998|971999|972000|972001|972002|975790|978386|978387|978388|978389|978390|978391|978392|978393|978394|978395|978396|978397|980925|983963", + "text": "Cystic fibrosis" + }, + { + "baseId": "15053", + "text": "HFE INTRONIC POLYMORPHISM" + }, + { + "baseId": "15054|15055", + "text": "HFE POLYMORPHISM" + }, + { + "baseId": "15059|15060|15061|15062|76527|76527|76528|76529|76531|76532|99368|99368|177078|178154|178155|178155|192629|192629|192964|192964|195918|195918|206935|206935|206937|250472|265346|265346|268034|268034|270910|271977|272560|272806|272806|273025|283724|283727|283728|283734|283736|283737|283738|283749|283751|283752|283757|283759|283764|283770|283771|283776|283778|283779|283780|283785|283796|283796|283799|283799|283805|283805|283810|283820|283823|283824|283829|283830|284401|284404|284407|284414|284419|284430|284431|284432|284437|284437|284438|284448|284457|284458|284459|284461|284463|284463|284471|284471|286403|286415|286416|286421|286422|286439|286446|286447|286448|286450|286451|286452|286470|286472|286472|286474|286475|286476|286478|286481|286484|286484|286777|286778|286779|286781|286786|286793|286794|286810|286816|286828|286841|286842|286855|286857|286857|286858|286865|286866|286876|286878|286881|286881|425298|427983|427983|431459|431460|434040|434042|434042|434044|434045|450229|450242|450242|450249|450362|450490|481529|481532|488635|488637|490556|517497|557806|557810|557857|559023|559522|559525|629268|629274|629274|629275|697232|697236|719510|730096|747156|762776|825542|825545|825548|825553|883131|883132|883133|883134|883135|883136|883137|883138|883139|883140|883141|883142|883143|883144|883145|883146|883147|883148|883149|883150|883151|883152|883153|883154|883155|883156|883157|883158|883159|883160|883161|883162|883163|883164|883165|883166|883167|883168|883169|883170|883171|883172|883173|883174|883175|883176|883177|883178|887229|887230|887231|887232|922506|931069|952874|959619", + "text": "Cranioectodermal dysplasia 2" + }, + { + "baseId": "15063|15064|15065|15066|133702|133703|133704|152958|152959|152960|244168|260803|267423|335045|335048|335051|335060|335067|335074|335075|344830|344832|344834|344839|344840|344843|344846|344851|349775|349778|349781|349782|349784|350785|350788|350789|350792|350793|350796|350797|353583|377969|424226|446212|509045|535709|848258|885932|885933|885934|885935|885936|885937|885938|885939|885940|885941|885942|885943|885944|885945|885946|887436|887437", + "text": "Polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, and cataract" + }, + { + "baseId": "15067|177212|884608|918769", + "text": "Retinitis pigmentosa 58" + }, + { + "baseId": "15067|76616|101480|105678|105683|105694|105695|105697|193413|195456|252354|256338|276556|276557|276559|276574|277045|285839|285845|285847|286597|286598|286599|286605|286612|286620|288382|288828|288829|288835|288837|288845|288848|288849|288851|289235|289236|289240|289247|289918|291381|293005|293389|293396|293404|293405|300123|300126|300134|300137|300141|300173|302858|302861|302865|302867|302869|302871|307243|307263|307275|307276|307289|307361|307363|307369|307471|307480|307508|307515|307521|307522|307578|308121|308122|308139|309406|310951|312529|314772|314795|318344|318809|318838|318854|320386|321090|327227|329401|329410|329414|329421|329440|329441|329442|329443|329444|329445|329448|329452|329455|333926|333959|334250|334252|337254|337259|339390|339395|339690|339706|339710|339716|339719|339724|339730|339732|339733|339736|339740|339742|339743|343491|343885|343913|344187|344188|344216|345436|345449|345454|345456|345458|345460|345465|345466|346116|346800|346801|346803|346805|346806|346812|346815|346816|349196|349200|349209|350128|350359|351471|351490|353450|353451|353520|353771|353775|353806|353840|620083", + "text": "Retinitis Pigmentosa, Dominant" + }, + { + "baseId": "15068|15069|15070|15071|15072|15073|200652|200653|200654|200655|200656|200657|200658|200659|200660|200661|200662|200663|200664|200665|200666|200667|200668|200669|200670|200671|200672|200673|200674|200675|200676|200677|200678|200679|200680|200681|200682|200683|200684|200685|200686|311815|311816|311822|311830|311833|311834|311841|311843|311845|317422|317423|317430|317432|317439|317445|317446|317447|317448|317450|317453|317454|323464|323485|323488|324086|324087|324091|324101|324105|324106|324129|324131|324134|361418|384488|513085|513086|545322|545324|545327|545330|545331|545663|545666|545672|545673|545674|545675|545677|545679|545680|545681|545956|584999|613512|620826|737669|737671|752359|752360|768089|768091|768092|783790|783791|783794|837569|866646|866647|866648|866649|866650|866651|866652|866653|866654|866655|866656|866657|866658|866659|866660|866661|866662|866663|866664|866665|866666|866667|866668|866669|866670|866671|866672|866673|868546|978810|978811|978812|978813|978814|978815|978816|978817|978818|978819|978820", + "text": "Primary hyperoxaluria, type III" + }, + { + "baseId": "15074|15075|15076|15077|15078|102110|102111|176952|286942|286944|537353|542144|542196|542200|542299|719931|719932|719934|733534|747733|747734|763375|781417|799305|816401|826873|826883|826884|826888|885305|918778|931539|953159|953161|953163|977724|977725|977726|977727|977728|977729|977730|977731|977732|977733|977734|977735|977736|977737|977738", + "text": "Retinitis pigmentosa 28" + }, + { + "baseId": "15074|15075|15076|15077|15198|15215|15438|15577|16007|16048|16189|16190|16271|16367|16372|16376|16378|16869|16870|17085|17086|17089|17094|17100|17165|17232|17233|17390|17392|17394|17395|17396|17397|17398|17403|17569|17767|17770|17776|17778|17779|17783|17787|17789|18391|18394|18395|18396|18595|19010|19207|19399|19434|19438|19609|19611|19617|19622|19955|19978|20121|20180|20262|20264|20348|20440|20442|20569|20571|20572|20604|20648|20649|20769|20771|20772|20775|20778|20879|21004|21005|21266|21267|22397|22457|22460|22461|22555|22558|22918|22919|22921|22923|22927|22931|22933|22937|22938|22939|22940|22943|22946|22951|22967|23111|24189|24191|24394|24396|24514|24515|24516|24517|24518|24521|24925|24926|24927|24934|24935|24941|24949|24950|25585|25590|26191|26654|26889|27182|27186|28052|28053|28055|28057|28061|28066|28067|28072|28074|28075|28077|28082|28089|28140|28142|28154|28203|28204|28206|28212|28216|28218|28222|31971|32422|32533|38829|39174|39532|39679|39717|39735|39763|39789|39892|40161|40342|44417|45727|45795|45840|45865|47865|47870|47877|47881|48109|48213|48409|50332|52305|52310|52376|52378|52388|52400|52406|52440|52445|52452|52468|52483|52495|52515|55081|55440|55444|55481|57307|57504|57509|57514|57516|57517|57518|57537|57550|57552|57554|57557|57559|57562|57570|57571|57578|57604|57633|57643|57651|57653|57661|57666|57673|57682|57697|57706|57708|57716|57721|57726|57754|57759|57763|57766|57773|57777|57788|57790|57796|70917|70923|71368|71378|76340|78967|84346|84447|84873|96865|97580|98674|98764|98772|98773|98774|98776|98777|98778|99525|99526|99608|102126|102394|102552|102558|102559|102956|103519|104456|104468|104469|104486|104556|104561|104570|104580|104582|104588|104589|104601|104603|104617|104619|104622|104629|104661|104662|104673|104674|104677|104679|104702|104705|104715|104720|104725|104767|104789|104792|104811|104823|104833|104836|104857|104859|104868|104869|104880|104885|104886|104889|104890|104904|104905|104914|104915|104916|104918|104920|104923|104925|104933|104935|104942|104952|104954|104959|104962|104972|104973|104976|104984|104987|104990|104991|104992|104996|104997|105000|105001|105002|105003|105006|105012|105016|105024|105025|105030|105032|105033|105051|105056|105061|105063|105064|105067|105069|105071|105074|105076|105081|105100|105101|105104|105106|105107|105108|105113|105120|105125|105127|105128|105134|105138|105144|105149|105152|105155|105156|105167|105172|105173|105177|105179|105181|105182|105189|105192|105193|105194|105197|105200|105210|105212|105214|105218|105219|105220|105221|105227|105229|105230|105232|105236|105238|105239|105240|105244|105248|105256|105259|105260|105261|105262|105270|105283|105287|105292|105308|105310|105314|105317|105319|105320|105321|105323|105326|105327|105328|105336|105337|105341|105346|105349|105352|105359|105360|105367|105370|105376|105387|105389|105394|105402|105405|105406|105487|105554|105555|105584|105595|105606|105610|105614|105624|105631|105638|105657|105658|105659|105662|105671|105679|105730|105777|105786|105802|106454|106487|131774|133696|133698|139942|141929|143162|152787|152788|152791|152794|152826|152830|152833|152848|152852|152861|152862|152865|152869|152881|152882|152885|152888|152890|152891|152892|152897|152900|166081|166167|171851|172377|172390|172511|172517|172522|172743|172756|172765|172882|172911|172912|172917|172925|174461|174546|174811|174817|174972|175265|175283|175522|176881|177110|177241|177287|177340|177375|177450|177451|177917|177924|178185|181395|186675|186676|186765|186766|186767|187074|187108|187115|188197|188783|188865|188865|188867|189011|189092|189144|190033|190034|190035|190036|190037|190038|190039|190264|190649|190743|190883|190903|191153|191491|191520|191521|191931|191956|192398|192422|192536|192826|192827|192828|192997|193097|193099|193260|193443|194094|194608|194671|194870|194945|195039|195093|195353|195479|195502|195505|195575|195870|195880|199800|200711|200983|203260|204391|205143|205152|205153|205376|205377|205604|205725|205726|207022|207999|208002|209342|211934|213655|213666|214067|214068|214252|214329|214334|214336|214454|226404|226519|226520|226522|226523|226527|226528|226529|226530|226532|226535|226536|226933|227007|227270|227285|227508|227509|228297|228304|228307|228312|228320|228337|228349|229178|229899|237598|237651|237652|237653|237655|237659|237663|237665|237670|237680|237685|237688|237689|237692|237701|237967|237968|237969|237970|237971|237972|237973|237974|237975|237976|237977|237978|237979|237980|237981|237982|237983|237984|237985|237986|237987|237988|237989|237990|237991|237992|237993|237994|237995|237996|237997|237998|237999|238000|238001|238002|238003|238004|238005|238006|238007|238008|238009|238010|238011|238012|238013|238014|238015|238016|238017|238018|238019|238020|238021|238022|238023|238024|238025|238026|238027|238028|238029|238030|238031|238032|238033|238034|238035|238036|238037|238038|238039|238040|238041|238042|238043|238044|238045|238046|238047|238048|238049|238050|238051|238052|238053|238054|238055|238056|238057|238058|238059|238060|238061|238062|238063|238064|238065|238066|238067|238068|238069|238070|238071|238072|238073|238074|238075|238076|238077|238078|238079|238080|238081|238082|238083|238084|238085|238086|238087|238088|238089|238090|238091|238092|238093|238094|238095|238096|238097|238098|238099|238100|238101|259643|259652|259653|259677|259680|259684|259685|259747|259990|260776|260777|263977|264008|264132|264200|264426|264538|264814|265069|265072|265129|265131|265159|265400|265562|265833|265863|265965|266055|266784|267624|267810|268071|268269|268648|269446|269500|270152|270341|270925|271072|271073|271201|271485|271531|272578|273103|273469|273547|273549|273550|274139|274143|274481|279452|280288|280985|281340|281988|282449|283282|283437|283438|283762|288384|289458|292542|292546|292547|292555|292556|292558|292592|292599|293946|293947|293963|293974|293975|296281|296972|297322|297324|297327|297333|297335|297336|297342|297351|297352|297355|297357|297361|297362|297385|297386|297388|297407|298430|303808|303823|303833|307602|308027|308510|308531|312414|320737|320738|320744|322426|322855|323481|324536|326038|329449|329581|329582|329584|332983|336193|336200|336203|336207|338097|338103|338104|338106|340774|346815|353303|357073|357865|358035|358036|359227|359230|359259|359276|359278|359328|359473|359518|359697|360464|360557|360815|360816|360901|361067|361069|361560|361654|361926|361927|361928|361930|361931|361932|361934|361935|361936|361937|361938|361939|361940|364061|364628|364742|364771|364867|365227|365228|365246|365251|365252|365431|365433|365449|365528|368864|368871|389198|393234|398446|399055|400451|404810|405033|405046|405251|405254|405257|405264|405265|406402|406455|406457|406869|406889|407393|408478|409585|411619|413265|413266|413443|413527|413666|413693|413718|413825|415136|415139|415648|417088|417095|417103|418815|418819|420007|420016|421203|421556|421558|426028|428272|431559|431560|431562|431564|431568|431569|431574|431575|431589|431592|431600|431601|431602|431605|431606|431611|431613|431617|431618|431620|431622|431624|431628|431629|431631|431632|431633|431634|431636|431641|431643|431644|431647|431650|431651|431652|431655|431658|431661|431663|431669|431670|431671|431675|431678|431680|431681|431685|431690|431692|431694|431695|431698|431705|431707|431710|431711|431712|431713|431714|431718|431721|431722|431723|431731|431732|431736|431738|431740|431741|431743|431749|431750|431751|431754|431757|431785|431786|431787|431789|431790|431791|431795|431798|431801|431803|431807|431810|431811|431812|431813|431814|431815|431816|431817|431819|431821|431836|431838|431849|431853|431861|431864|431866|431873|431874|434030|437843|438281|438312|438769|439008|439508|439509|439510|439510|439511|439755|440058|442716|443322|443965|444290|444424|446188|454655|481602|482086|486006|486008|486434|486824|486831|488629|488680|488682|488710|488838|488890|489150|489360|489436|489730|489964|490192|491840|491866|492643|492739|492849|493727|494074|496608|496642|496836|496894|497818|498604|508746|511219|511932|511933|511946|512332|512912|513965|514039|514515|514535|514574|514650|530053|536575|537271|538935|539191|540758|540775|540780|540806|540815|540821|540825|540827|540829|540830|540832|540841|540843|540847|540850|540852|540857|540859|540873|540876|540887|540891|540903|540909|540917|540920|540924|540925|540930|540933|540940|540961|540964|540966|540968|540970|540979|540994|540998|541005|541017|541025|541036|541045|541060|541062|541065|541074|541079|541086|541088|541090|541092|541097|541099|541105|541107|541115|541791|542144|542420|542490|542576|542663|542799|542833|543287|543353|543371|543897|543921|544194|545915|546746|547264|547531|547755|547812|548013|548065|550245|551522|551527|551528|551537|551555|551560|551570|551579|551583|551587|551588|551594|551595|553585|559279|567933|568186|569886|576221|582791|584904|585299|587734|588585|588848|589204|590329|609656|610617|611509|611734|611983|612156|612157|612249|612725|612757|613154|619983|620017|620019|620042|620098|620162|620172|620238|620327|620496|620829|622989|622993|623803|623811|623815|623825|623826|623839|623851|623877|623884|623913|623921|623925|623926|623927|623936|623956|623957|623958|623966|623975|623989|624010|624012|624017|624032|624041|628253|631945|633262|633282|633330|633426|635123|640466|642643|651677|654181|654191|654195|672057|677405|677413|683378|702961|703510|707593|720297|721040|726443|731766|735726|736713|736717|744276|746111|746113|759483|761008|761596|765778|780508|787896|788158|788758|789916|789921|789924|789930|790456|790624|790645|791285|791628|791958|792434|792458|793004|794257|794454|794567|794577|794732|795553|795890|797487|798034|799313|799450|800075|800419|800439|800442|800451|800458|800462|800511|800516|800537|800571|800601|800637|800685|800686|800988|801103|801104|801277|801332|801354|801358|801389|801400|801441|801443|801447|801477|801491|802124|802190|805198|805505|806271|818174|822120|823126|823132|823330|823339|823346|823349|823393|823397|823415|823443|824261|824447|824448|824452|824471|824474|824482|824498|824501|824507|824513|824514|824517|824565|824703|824710|824713|825444|825448|825459|825975|826154|826160|826191|826196|826233|826267|826871|827159|827192|827196|827251|827255|827271|827534|827541|828939|829184|829448|829449|829457|830517|830915|831277|831586|831594|831599|831941|831954|831961|832168|832184|832230|832247|832253|832315|833581|834874|834889|835083|835389|836893|837361|837486|838601|839065|839066|839747|840348|841170|841171|841332|841688|841689|843192|844048|847556|847785|847788|848326|848879|849300|849871|850066|850136|850346|850787|850822|850955|850974|851082|851164|851216|851251|851273|851367|851848|852268|852290|852295|852406|852527|852626|855850|855851|855852|855853|855854|855855|855856|855857|855858|855859|855860|855861|855862|855863|855864|855865|855866|855867|855868|855869|855870|855871|855872|855873|855874|855875|855876|855877|855878|855879|855880|855881|855882|855883|855884|855885|855886|855887|855888|855889|855890|855891|855892|855893|855894|855895|855896|855897|855898|855899|855900|855901|855902|855903|855904|855905|855906|855907|855908|855909|855910|855911|855912|855913|855914|855915|855916|855917|855918|855919|855920|855921|855922|855923|855924|855925|855926|855927|855928|855929|855930|855931|855932|855933|855934|855935|855936|855937|855938|855939|855940|855941|855942|855943|855944|855945|855946|855947|855948|855949|855950|855951|855952|855953|855954|855955|855956|855957|855958|855959|855960|855961|855962|855963|855964|855965|855966|855967|855968|855969|855970|855971|855972|855973|855974|855975|855976|855977|855978|855979|855980|855981|855982|855983|855984|855985|855986|855987|855988|855989|855990|855991|855992|855993|855994|855995|855996|855997|855998|855999|856000|856001|856002|856003|856004|856005|856006|856007|856008|856009|856010|856011|856012|856013|856014|856015|856016|856017|856018|856019|856020|856021|856022|856023|856024|856025|856026|856027|856028|856029|856030|856031|856032|856033|856034|856035|856036|856037|856038|856039|856040|856041|856042|856043|856044|856045|856046|856047|856048|856049|856050|856051|856052|856053|856054|856055|856056|856057|856058|856059|856060|856061|856062|856063|856064|856065|856066|856067|856068|856069|856070|856071|856072|856073|856074|856075|856076|856077|856078|856079|856080|856081|856082|856083|856084|856085|856086|856087|856088|856089|856090|856091|856092|856093|856094|856095|856096|856097|856098|856099|856100|856101|856102|856103|856104|856105|856106|856107|856108|856109|856110|856111|856112|856113|856114|856115|856116|856117|856118|856119|856120|856121|856122|856123|856124|856125|856126|856127|856128|856129|856130|856131|856132|856133|856134|856135|856136|856137|856138|856139|856140|856141|856142|856143|856144|856145|856146|856147|856148|856149|856150|856151|856152|856153|856154|856155|856156|856157|856158|856159|856160|856161|856162|856163|856164|856165|856166|856167|856168|856169|856170|856171|856172|856173|856174|856175|856176|856177|856178|856179|856180|856181|856182|856183|856184|856185|856186|856187|856188|856189|856190|856191|856192|856193|856194|856195|856196|856197|856198|856199|856200|856201|856202|856203|856204|856205|856206|856207|856208|856209|856210|856211|856212|856213|856214|856215|856216|856217|856218|856219|856220|856221|856222|856223|856224|856225|856226|856227|856228|856229|856230|856231|856232|856233|856234|856235|856236|856237|856238|856239|856240|856241|856242|856243|856244|856245|856246|856247|856248|856249|856250|856251|856252|856253|856254|856255|856256|856257|856258|856259|856260|856261|856262|856263|856264|856265|856266|856267|856268|856269|856270|856271|856272|856273|856274|856275|856276|856277|856278|856279|856280|856281|856282|856283|856284|856285|856286|856287|856288|856289|856290|856291|856292|856293|856294|856295|856296|856297|856298|856299|856300|856301|856302|856303|856304|856305|856306|856307|856308|856309|856310|856311|856312|856313|856314|856315|856316|856317|856318|856319|856320|856321|856322|856323|856324|856325|856326|856327|856328|856329|856330|856331|856332|856333|856334|856335|856336|856337|856338|856339|856340|856341|856342|856343|856344|856345|856346|856347|856348|856349|856350|856351|856352|856353|856354|856355|856356|856357|856358|856359|856360|856361|856362|856363|856364|856365|856366|856367|856368|856369|856370|856371|856372|856373|856374|856375|856376|856377|856378|856379|856380|856381|856382|856383|856384|856385|856386|856387|856388|856389|856390|856391|856392|856393|856394|856395|856396|856397|856398|856399|856400|856401|856402|856403|856404|856405|856406|856407|856408|856409|856410|856411|856412|856413|856414|856415|856416|856417|856418|856419|856420|856421|856422|856423|856424|856425|856426|856427|856428|856429|856430|856431|856432|856433|856434|856435|856436|856437|856438|856439|856440|856441|856442|856443|856444|856445|856446|856447|856448|856449|856450|856451|856452|856453|856454|856455|856456|856457|856458|856459|856460|856461|856462|856463|856464|856465|856466|856467|856468|856469|856470|856471|856472|856473|856474|856475|856476|856477|856478|856479|856480|856481|856482|856483|856484|856485|856486|856487|856488|856489|856490|856491|856492|856493|856494|856495|856496|856497|856498|856499|856500|856501|856502|856503|856504|856505|856506|856507|856508|856509|856510|856511|856512|856513|856514|856515|856516|856517|856518|856519|856520|856521|856522|856523|856524|856525|856526|856527|856528|856529|856530|856531|856532|856533|856534|856535|856536|856537|856538|856539|856540|856541|856542|856543|856544|856545|856546|856547|856548|856549|856550|856551|856552|856553|856554|856555|856556|856557|856558|856559|856560|856561|856562|856563|856564|856565|856566|856567|856568|856569|856570|856571|856572|856573|856574|856575|856576|856577|856578|856579|856580|856581|856582|856583|856584|856585|856586|856587|856588|856589|856590|856591|856592|856593|856594|856595|856596|856597|856598|856599|856600|856601|856602|856603|856604|856605|856606|856607|856608|856609|856610|856611|856612|856613|856614|856615|856616|856617|856618|856619|856620|856621|856622|856623|856624|856625|856626|856627|856628|856629|856630|856631|856632|856633|856634|856635|856636|856637|856638|856639|856640|856641|856642|856643|856644|856645|856646|856647|856648|856649|856650|856651|856652|856653|856654|856655|856656|856657|856658|856659|856660|856661|856662|856663|856664|856665|856666|856667|856668|856669|856670|856671|856672|856673|856674|856675|856676|856677|856678|856679|856680|856681|856682|856683|856684|856685|856686|856687|856688|856689|856690|856691|856692|856693|856694|856695|856696|856697|856698|856699|856700|856701|856702|856703|856704|856705|856706|856707|856708|856709|856710|856711|856712|856713|856714|856715|856716|856717|856718|856719|856720|856721|856722|856723|856724|856725|856726|856727|856728|856729|856730|856731|856732|856733|856734|856735|856736|856737|856738|856739|856740|856741|856742|856743|856744|856745|856746|856747|856748|856749|856750|856751|856752|856753|856754|856755|856756|856757|856758|856759|856760|856761|856762|856763|856764|856765|856766|856767|856768|856769|856770|856771|856772|856773|856774|856775|856776|856777|856778|856779|856780|856781|856782|856783|856784|856785|856786|856787|856788|856789|856790|856791|856792|856793|856794|856795|856796|856797|856798|856799|856800|856801|856802|856803|856804|856805|856806|856807|856808|856809|856810|856811|856812|856813|856814|856815|856816|856817|856818|856819|856820|856821|856822|856823|856824|856825|856826|856827|856828|856829|856830|856831|856832|856833|856834|856835|856836|856837|856838|856839|856840|856841|856842|856843|856844|856845|856846|856847|856848|856849|856850|856851|856852|856853|856854|856855|856856|856857|856858|856859|856860|856861|856862|856863|856864|856865|856866|856867|856868|856869|856870|856871|856872|856873|856874|856875|856876|856877|856878|856879|856880|856881|856882|856883|856884|856885|856886|856887|856888|856889|856890|856891|856892|856893|856894|856895|856896|856897|856898|856899|856900|856901|856902|856903|856904|856905|856906|856907|856908|856909|856910|856911|856912|856913|856914|856915|856916|856917|856918|856919|856920|856921|856922|856923|856924|856925|856926|856927|856928|856929|856930|856931|856932|856933|856934|856935|856936|856937|856938|856939|856940|856941|856942|856943|856944|856945|856946|856947|856948|856949|856950|856951|856952|856953|856954|856955|856956|856957|856958|856959|856960|856961|856962|856963|856964|856965|856966|856967|856968|856969|856970|856971|856972|856973|856974|856975|856976|856977|856978|856979|856980|856981|856983|856984|856985|856986|856987|856988|856989|856990|856991|856992|856993|856994|856995|856996|856997|856998|856999|857000|857001|857002|857003|857004|857005|857006|857007|857008|857009|857010|857011|857013|857014|857015|857016|857017|857018|857019|857020|857021|857022|857023|857025|857026|857027|857028|857029|857030|857031|857032|857033|857034|857035|857036|857037|857038|857039|857040|857041|857042|857043|857044|857045|857046|857047|857048|857049|857050|857051|857052|857053|857054|857055|857056|857057|857058|857059|857060|857061|857062|857063|857064|857065|857066|857067|857068|857069|857070|857071|857072|857073|857074|857075|857076|857077|857078|857079|857080|857081|857082|857083|857084|857085|857086|857087|857088|857089|857090|857091|857092|857093|857094|857095|857096|857097|857098|857099|857100|857101|857102|857103|857104|857105|857106|857107|857108|857109|857110|857111|857112|857113|857114|857116|857117|857118|857119|857120|857121|857122|857123|857124|857125|857126|857127|857128|857129|857130|857131|857132|857133|857134|857135|857136|857137|857138|857139|857140|857141|857142|857143|857144|857145|857146|857147|857148|857149|857150|857151|857152|857153|857154|857155|857156|857157|857158|857159|857160|857161|857162|857163|857164|857165|857166|857167|857168|857169|857170|857171|857172|857173|857174|857175|857176|857177|857178|857179|857180|857181|857182|857183|857184|857185|857186|857187|857188|857189|857190|857191|857192|857193|857194|857195|857196|857197|857198|857199|857200|857201|857202|857203|857204|857205|857206|857207|857208|857209|857210|857211|857212|857213|857214|857215|857216|857218|857219|857220|857221|857222|857223|857224|857225|857226|857227|857228|857229|857230|857231|857232|857233|857234|857235|857236|857237|857238|857239|857240|857241|857242|857243|857244|857245|857246|857247|857248|857249|857250|857251|857252|857253|857254|857255|857256|857257|857258|857259|857260|857261|857262|857263|857264|857265|857266|857267|857268|857269|857270|857271|857272|857273|857274|857275|857276|857277|857278|857279|857280|857281|857282|857283|857284|857285|857286|857287|857288|857289|857290|857291|857292|857293|857294|857295|857296|857297|857298|857299|857300|857301|857302|857303|857304|857305|857306|857307|857308|857309|857310|857311|857312|857313|857314|857315|857316|857317|857318|857319|857320|857321|857322|857323|857324|976587", + "text": "Retinal dystrophy" + }, + { + "baseId": "15074|15144|17084|17395|19612|20441|20442|20571|20772|28136|28148|28154|40151|45879|76385|101251|104730|104765|104923|105164|105210|105264|105308|105554|152869|177241|177287|188788|188789|188791|188796|188856|188926|188927|188928|188948|188981|188983|188984|188992|189010|189065|189067|189092|189127|189135|189144|190264|191986|192827|193099|194617|226635|228337|237678|259692|303823|308450|308542|359518|413765|431648|431654|431714|438325|438998|489358|544208|544272|550225|551545|583166|722103|722105|750153|765767|765771|765777|765778|765779|782631|788828|790651|795889|795891|799450|800687|801353|816400|816462|829044|829448|832162|832172|832187|832197|832206|832214|832216|832232|832265|832270|832271|855873|855876|856176|856179|856484|856489|856492|856502|856517|857201|859675|896741|896764|896768|933416|933427|939962|942208|945123|945126|954801|954803|954816|954819|954825|954835|954840|954843|954844|954845|954848|954849|960603|962252|966323|966324|966325|966326|966327|967049|967050|967051|967052|967053|967054|967055|967056|967057|967058|967059|967060|967061|967062|967063|967064|967065|967066|967067|967069|967070|967071|967072|967073|967075|967076|967077|967078|967079|967080|967081|967082|967083|967084|967085|967086|967087|967088|967089|967090|967091|967092|967093|967094|967095|967096|967097|967098|967099|978246|978247|978248|978249|978250|978251|978252|978253|978254|978255|978256|978257|978258|978259|978260|978261|978262|978263|978264|978265|978266|978267|978268|978269|978270|978271|978272|978273|978274|978275|978276|978277|978278|978279|978280|978281|978282|978283|978284|978285|978286|978287|978288|978289|978290|978291|978292|978293|978294|978295|978296|978297|978298|978299|978300|978301|978302|978303|978304|978305|978306|978307|978308|978309|978310|978311|978312|978313|978314|978315|978316|978317|978318|978319|978320|978321|978322|978323|978324|978325|978326|978327|978328|978329|978330|978331|978332|978333|978334|978335|978336|978337|978338|978339|978340|978341|978342|978343|978344|978345|978346", + "text": "Autosomal recessive retinitis pigmentosa" + }, + { + "baseId": "15075|17390|17403|20264|20921|22918|28209|28217|31971|57538|57611|94314|98753|104543|104548|104554|104556|104592|104603|104611|105044|105200|105292|137049|142607|142608|142609|142611|177987|188766|188865|237685|252356|256107|265648|267625|270098|271627|300152|300154|300156|300157|300161|300164|300166|300167|300169|302873|302878|302879|302880|302885|302916|302918|302926|302934|302935|302948|302949|302951|302953|302954|302960|302962|302963|307343|307353|307354|307355|307552|307564|307565|307570|307575|307579|307586|327866|327876|327883|327886|327889|327901|337702|337706|337708|337710|337712|337718|343921|343930|343934|343935|343938|345373|345374|345375|345378|345385|345387|345392|345396|361474|404762|413237|413665|421591|438272|486006|486110|489877|536575|537490|551508|551519|551561|551562|551580|551592|551627|612147|612177|612552|620017|623816|623827|623878|623895|623942|623972|699595|794740|795089|796987|796988|801317|801328|801330|801332|801337|801340|801363|801371|801387|801418|801419|801438|801450|801451|831963|844830|844833|877084|877085|877086|877087|877088|877089|877090|877091|896283|896284|896285|896286|896287|896288|896289|896290|896291|896292|896293|896294|896295|896296|896297|896298|896299|896300|896301|896302|896303|896304|962011|962023|962026|976588", + "text": "Cone-rod dystrophy" + }, + { + "baseId": "15075|15076|15077|15143|15144|16048|16367|16372|16376|17033|17086|17090|17093|17094|17097|17100|17390|17395|17396|17401|17403|17787|18374|18391|18401|18585|18589|19434|19436|19609|19616|19617|20180|20264|20571|20572|20648|20771|20772|20775|20777|21005|21008|21009|22401|22408|22619|22918|22923|22933|22940|22967|24189|24938|25583|25590|26898|27182|28037|28053|28057|28060|28064|28067|28071|28073|28076|28077|28079|28081|28089|28139|28140|28141|28142|28145|28149|28154|28159|28203|28206|28209|28222|31971|32646|38739|38825|39174|39666|39679|40151|40152|45727|48213|55056|55106|57545|57558|57571|57579|57593|57599|57626|57633|57634|57636|57640|57643|57644|57645|57646|57648|57649|57650|57657|57662|57667|57668|57669|57670|57671|57672|57677|57678|57680|57682|57683|57684|57690|57692|57702|57717|57726|57734|57743|57753|57763|57764|57766|57771|57773|57777|57796|70906|71372|76340|76385|76616|88254|96865|96877|98674|98675|98676|98753|98754|98766|98767|98777|98916|98917|98918|99374|99380|99508|99509|99510|99511|99512|99513|99514|99515|99516|99517|99518|99519|99520|99521|99522|99523|99524|99525|99599|99600|99601|99603|99605|99606|99607|99608|99965|99989|100027|100028|101058|101212|101214|101228|101229|101230|101233|101251|101253|101254|101256|101270|101271|101341|101449|101450|101479|101481|101631|101643|101644|101645|101646|101764|101803|101804|101927|102110|102111|102553|104543|104548|104554|104561|104567|104579|104585|104589|104592|104595|104596|104603|104605|104611|104655|104676|104696|104710|104718|104720|104726|104727|104757|104759|104761|104793|105063|105181|105221|105264|105287|105310|105394|105481|105486|105489|105493|105494|105497|105502|105506|105550|105553|105555|105560|105565|105567|105569|105571|105573|105574|105575|105580|105582|105615|105616|105621|105632|105677|105680|105683|105685|105686|105690|105694|105749|105758|105761|105762|105767|105795|105802|105803|106433|106434|106435|106436|106440|106443|106444|106445|106446|106448|106450|106451|106455|106456|106457|106458|106459|106485|106486|133696|140944|140950|140956|140959|140960|140962|140963|140964|140965|140966|140968|140969|140970|140971|140972|140973|140975|142335|142336|142337|142338|142339|142340|142341|142342|142343|142347|142607|142608|142609|142611|152782|152783|152784|152785|152786|152787|152788|152797|152798|152799|152800|152801|152802|152803|152804|152805|152806|152807|152808|152811|152812|152813|152814|152815|152816|152817|152818|152819|152820|152821|152822|152823|152824|152825|152826|152827|152828|152829|152830|152831|152832|152833|152834|152839|152840|152841|152842|152843|152844|152845|152847|152848|152851|152852|152853|152854|152855|152856|152857|152860|152861|152862|152863|152865|152866|152867|152868|152869|152872|152881|152882|152883|152887|152888|152891|152892|152893|152894|152895|152896|152897|152900|152901|152902|152903|166163|166173|172375|172388|172390|172520|172743|172771|172773|172775|172776|172784|172882|172889|172905|172911|172912|172913|172914|172918|172920|172922|172925|176952|176954|176961|176978|176987|177024|177056|177079|177083|177110|177122|177155|177209|177212|177215|177260|177261|177287|177340|177344|177358|177373|177381|177411|177472|177522|177528|177529|177576|177578|177579|177580|177606|177611|177612|177649|177699|177794|177818|177835|177889|177918|177920|177922|177924|177926|177982|177983|177987|178014|178015|178020|178023|178038|178040|178103|181395|188856|188865|188867|188982|188983|188992|189049|189155|189156|189157|189158|189159|189160|189161|189162|190238|190239|190250|190251|190253|190264|190277|190298|190299|190300|190301|190304|190305|190306|190309|190310|190311|190312|190403|190404|190406|190408|190494|190629|190683|190684|190685|190791|190829|190830|190865|190978|190982|191194|191235|191261|191269|191349|191357|191358|191417|191424|191435|191520|191636|191654|191655|191768|191769|191774|191956|191966|191986|191990|192093|192122|192225|192226|192268|192411|192412|192422|192431|192471|192532|192603|192618|192623|192826|192828|192847|192896|193026|193097|193098|193100|193293|193295|193443|193520|193579|193580|193583|193584|193587|193596|193597|193605|193625|193737|193738|193760|193761|193777|193834|193835|194029|194288|194294|194330|194334|194335|194347|194431|194433|194434|194435|194436|194580|194604|194631|194787|194815|194831|194927|194996|195037|195038|195093|195274|195353|195369|195369|195381|195392|195397|195479|195505|195551|195718|196012|203265|204538|204542|204543|204544|204551|204554|204555|204556|204560|205152|205180|205376|205377|205603|205604|205725|205726|206565|207325|213126|213127|213556|214235|214454|221358|226519|226525|227208|227209|227269|228304|228344|228352|229031|229178|231425|237468|237685|237986|238001|238025|238027|238028|238030|238031|238039|238081|238082|247005|247032|247423|247424|247425|247426|247427|247428|249423|249592|250436|250437|250438|250919|250920|250921|250922|251300|251364|251366|251367|251368|251369|252356|255107|255108|255110|255111|255112|255338|255852|255853|260350|264200|265176|265560|265561|265562|265617|265710|265947|265976|266047|266049|266055|266504|267424|267667|267810|268151|268646|269271|269272|269281|269623|269990|269991|270036|270098|270483|270607|270752|270754|270869|271073|271102|271103|271280|271310|271311|271533|271577|271677|271817|271822|272006|272007|272984|273551|273552|273553|273851|273853|274142|274143|274234|275072|275237|276329|276332|276348|276351|276352|276353|276561|276569|276570|276573|276617|276618|276621|276622|276623|276624|276625|276627|276628|276629|276630|276631|276634|276635|276881|276882|276883|276888|276892|276893|276894|277046|277047|277048|277051|277148|277151|277463|277475|277477|277478|277540|277541|277551|277562|278311|278320|278321|278335|278346|278348|278353|278354|278358|278928|278931|278932|278939|278940|278944|278947|278953|278954|278959|278969|278970|278971|278972|278977|278987|279068|279086|279087|279088|279095|279102|279103|279441|279448|279452|279453|279462|279468|279470|279527|279528|279529|279530|279532|279539|279540|279542|279543|279544|279547|279564|279572|280323|280331|280332|280334|280335|280338|280344|280345|280350|280351|280365|280366|280379|280380|280386|280391|280398|280400|280404|280405|280406|280408|280411|280412|280415|280417|280418|280419|280420|280421|280423|280425|280702|280703|280704|280706|280708|280715|280716|280717|280726|281145|281146|281151|281156|281580|281584|281586|281589|281595|281764|281767|281769|281991|282004|282005|282024|282030|282041|282042|282045|282119|282126|282127|282130|282167|282168|282169|282231|282232|282233|282247|282250|282251|282252|282253|282254|282957|282958|282960|282963|282966|283247|283248|283440|283445|283448|283454|283463|283466|283556|283557|283558|283560|283561|283562|283574|283584|283585|283589|283716|283717|283720|283732|283744|283753|283756|283762|283768|283787|284115|284119|284124|284125|284130|284140|284142|285376|285381|285382|285383|285384|285386|285387|285839|285845|285847|285852|285854|285857|285858|285862|285863|285864|285868|285869|285879|285880|285882|285893|285897|285898|285903|285908|285915|285916|285918|285919|285921|285925|285928|285929|285933|285934|285944|285945|286020|286021|286022|286025|286026|286027|286030|286036|286039|286041|286042|286043|286056|286412|286413|286414|286423|286426|286429|286430|286432|286433|286597|286599|286605|286612|286623|286628|286629|286632|286652|286653|286654|286655|286656|286669|286671|286672|286673|286675|286677|286679|286682|286685|286687|286689|286692|286706|286707|286716|286723|286726|286727|286728|286730|286915|286920|286923|286924|286938|286942|286944|286945|286947|287623|287625|287630|287633|287634|287637|287642|287645|287649|287654|287664|287666|287671|287674|287683|287690|287709|287711|287719|287721|287722|287848|287854|287859|287864|287868|287869|287870|287874|287878|287880|287884|287894|287897|287905|287909|287910|287913|287914|287923|287925|287935|287937|287944|288345|288347|288353|288383|288384|288385|288389|288391|288392|288393|288395|288398|288399|288400|288401|288405|288406|288542|288550|288553|288570|288571|288572|288574|288578|288579|288580|288603|288609|288617|288626|288629|288630|288631|288633|288636|288643|288646|288647|288648|288652|288659|288724|288725|288729|288730|288733|288736|288745|288748|288749|288768|288769|288770|288772|288828|288829|288835|288837|288845|288848|288849|288858|288860|288862|288866|288868|288870|288872|288873|288874|288880|288884|288889|288899|288900|288901|288911|288912|288913|288914|288915|288922|288926|288932|288935|288938|289236|289240|289247|289252|289254|289266|289284|289285|289296|289297|289301|289303|289311|289315|289318|289319|289339|289340|289344|289345|289347|289353|289456|289458|289463|289469|289484|289489|289490|289493|289494|290090|290091|290097|290099|290103|290111|290112|290122|290123|290124|290440|290441|290442|290453|290455|290459|290460|290466|290491|290492|290493|291162|291164|291176|291186|291204|291206|291207|291211|291228|291231|291232|291233|291235|291236|291237|291238|291244|291246|291323|291331|291335|291340|291343|291344|291345|291356|291369|291380|291465|291466|291478|291492|291497|291499|291518|291529|291531|291538|291539|291546|291559|291560|291627|291645|291649|291650|291657|291658|291661|291663|291670|291678|291679|291681|291684|291685|291686|291791|291792|291793|291802|291806|292512|292515|292516|292519|292520|292530|292531|292533|292534|292535|292538|292539|292546|292547|292553|292554|292555|292556|292558|292561|292597|292599|292683|292685|292686|292688|292689|292691|292695|292699|292700|292702|292704|292710|292711|292724|292732|292733|292734|292736|292737|293133|293470|293474|293944|293946|293963|293969|293970|293971|293972|293973|293975|293978|293979|293980|293981|293985|293986|294050|294067|294069|294070|294071|294072|294073|294074|294076|294078|294079|294080|294081|294082|294861|294864|294865|295264|295265|295273|295274|295279|295342|295348|295374|295375|295378|295379|295380|295386|295392|295395|295399|295400|295401|295404|295406|295407|295408|295416|296239|296243|296246|296255|296263|296264|296269|296270|296276|296279|296280|296281|296288|296289|296292|296293|296294|296300|296451|296453|296455|296466|297322|297323|297324|297325|297327|297328|297333|297335|297336|297342|297352|297354|297356|297357|297361|297362|297377|297378|297379|297386|297406|297407|297480|297481|297486|297488|297491|297493|297494|297497|297508|297519|297520|297521|297522|297535|297539|297546|297553|297554|297555|297557|297564|297565|297569|297593|297594|297616|297620|297621|298074|298076|298077|298081|298082|298083|298085|298087|298092|298094|298096|298103|298112|298113|298116|298522|298540|298541|298579|298580|298592|298607|298610|298616|298617|299055|299091|299092|299102|299103|299104|299112|299115|299117|299125|299139|299140|299141|299144|299145|299151|299152|299153|299156|299164|299172|299173|299186|299187|299192|299193|299198|299199|299202|299205|299208|299210|299231|299233|299937|299938|299942|300126|300128|300129|300130|300134|300137|300145|300146|300150|300152|300154|300156|300157|300161|300164|300166|300167|300169|300869|300871|300872|300878|300879|300891|300892|300897|300902|300903|300904|300912|300913|300915|300917|300923|301832|301833|301839|301840|301844|301845|302075|302076|302079|302088|302134|302135|302138|302142|302149|302150|302161|302162|302166|302342|302343|302356|302357|302359|302361|302362|302365|302366|302373|302383|302393|302394|302395|302403|302404|302411|302419|302420|302557|302558|302567|302568|302572|302573|302574|302576|302589|302593|302609|302611|302612|302613|302615|302810|302861|302863|302864|302865|302867|302869|302870|302871|302873|302878|302879|302880|302885|302916|302918|302926|302934|302935|302948|302949|302951|302953|302954|302960|302962|302963|303792|303803|303805|303808|303811|303813|303816|303823|303824|303825|303831|303832|303833|303840|303846|303847|303848|303851|303852|303857|304990|304997|305010|305021|305023|305432|305478|305490|305491|305497|305498|305502|305503|305511|305513|305518|305519|305544|305932|305933|305937|305938|305946|305947|305950|306077|306078|306079|306083|306166|306990|306991|307242|307243|307249|307250|307256|307263|307275|307276|307285|307287|307289|307290|307298|307321|307325|307326|307343|307353|307354|307355|307489|307508|307510|307511|307515|307520|307521|307522|307532|307546|307549|307550|307551|307552|307564|307565|307570|307575|307579|307586|308124|308125|308127|308137|308411|308446|308448|308450|308454|308456|308457|308460|308468|308475|308476|308477|308478|308480|308481|308489|308494|308495|308497|308500|308501|308502|308504|308506|308507|308508|308510|308513|308518|308523|308524|308529|308531|308539|308541|308542|308543|308549|309002|309362|309364|309372|309375|309378|309381|309382|309385|309391|309393|309396|309397|309672|309673|309674|309675|309676|309681|309683|309793|309795|309815|309818|309819|309821|309824|309845|310085|310087|310088|310091|310095|310120|310121|310340|310341|310343|310344|310345|310349|310351|310352|310353|310362|310363|310370|310380|310653|310655|310658|310660|310661|310663|310935|310946|310947|310949|310950|310955|310957|310960|311119|311120|311442|311443|311445|312487|312496|312498|312499|312500|312508|312515|312517|312536|314403|314405|314406|314422|314440|314452|314458|314459|314463|314464|314696|314699|314701|314704|314705|314706|314707|314708|314709|314718|314719|314720|314723|314724|314728|314735|314738|314752|314754|314764|314767|315427|315428|315430|315432|315433|315434|315437|315438|315439|315441|315447|315449|315451|315468|315474|315475|315477|315478|315479|315622|315623|315628|315629|315630|315633|315634|316993|317010|317011|317015|317026|317035|318364|318367|318368|318831|318839|318844|318851|318852|318853|320382|320383|320385|320388|321023|321024|321026|321027|321036|321037|321044|321045|321071|321089|321098|321100|321102|321103|321425|321426|321427|321448|321462|321467|321469|321478|321483|321485|321680|321683|321684|321685|321689|321692|321695|321697|321698|321699|322173|322179|322181|322182|322194|322207|322208|322209|322243|322251|322252|322268|322270|322271|322433|323009|323014|323015|323250|323251|323259|323260|323266|323267|323270|323277|323283|323284|323448|323451|323456|323458|323459|323460|323461|323472|323577|324895|325959|325961|325967|325968|325971|325973|325985|325986|326000|326002|326003|326013|326014|326016|326017|326032|326033|326038|326043|326044|326048|326049|327135|327145|327146|327159|327160|327164|327166|327167|327195|327220|327229|327230|327232|327367|327374|327375|327384|327385|327396|327409|327411|327414|327415|327416|327418|328207|328208|328209|328210|328211|328214|328220|328222|328228|329005|329006|329018|329040|329043|329049|329203|329204|329213|329214|329410|329412|329418|329426|329430|329445|329448|329449|329452|330117|330120|330122|330123|330200|330202|330204|330212|330213|330220|330221|330225|330227|330234|330578|330582|330583|330585|330588|330943|330945|330948|330950|330955|332935|332942|332943|332946|332952|332960|332962|332965|332968|333147|333149|333151|333153|333160|333162|333928|333931|333934|333935|333938|333939|333943|333946|333950|333952|333970|333971|333974|333976|333986|333988|333989|333990|333994|333995|333998|334000|334255|334257|334260|334261|334262|334270|334272|334274|334658|335079|335080|335090|335094|335097|335098|335101|335117|335610|335611|335622|335625|335636|335638|335642|335646|335657|335658|335659|335660|335662|335663|335667|335671|335674|335675|335676|335678|335679|335681|335685|335695|335697|335714|335717|335724|335726|335730|335733|335736|335738|335740|336386|336389|336391|336392|336398|336400|336404|336405|336423|336424|336631|336633|336639|336640|336642|337189|337193|337194|337199|337217|337224|337225|337228|337230|337233|337234|337244|337257|337281|337282|337285|337493|337496|337642|337643|337647|337650|337655|337659|337663|337680|337685|337690|337695|337703|337704|337713|337714|337715|338598|338600|338603|339210|339218|339219|339231|339393|339400|339403|339404|339706|339707|339710|339715|339716|339718|339720|339721|339722|339725|339729|339730|339734|339735|339737|339744|339806|339813|339814|339985|339987|339991|339993|339996|339999|340414|340417|340425|340426|340429|340442|340449|340455|340825|340827|340830|341242|341243|341247|341248|341371|341373|341378|341381|341382|341384|341387|342030|342033|342034|342038|342040|342045|342046|342051|342052|342055|342057|342060|342064|342068|342070|342071|343444|343448|343449|343456|343459|343460|343463|343466|343471|343472|343473|343474|343488|343496|343498|343504|343505|343509|343514|343515|343516|343518|343534|343535|343543|343544|343545|343548|343557|343558|343565|343566|343569|343570|343571|343572|343573|343591|343592|343593|343594|343602|343603|343609|343880|343881|343884|343893|343895|343896|343898|343903|343904|343907|343908|343912|343917|343918|343925|343926|343928|343929|343931|343933|344190|344192|344202|344203|344205|344206|344212|344213|344215|344861|344870|344874|344878|344889|344892|344895|345039|345040|345041|345042|345046|345047|345050|345051|345052|345055|345057|345059|345065|345220|345426|345432|345437|345443|345460|345462|345566|345711|346118|346123|346131|346133|346135|346136|346137|346139|346141|346142|346144|346146|346153|346154|346435|346438|346443|346619|346620|346622|346626|346627|346629|346798|346799|346806|346812|346815|346818|346819|347445|347452|347456|347460|347464|347469|347474|347477|347478|347773|347777|348751|348759|349187|349190|349193|349195|349199|349202|349205|349207|349208|349210|349211|349212|349215|349218|349221|349222|349224|349225|349226|349353|349354|349357|349785|349787|349788|349790|350102|350103|350106|350108|350110|350114|350116|350118|350119|350123|350124|350126|350127|350130|350133|350138|350143|350146|350147|350150|350155|350160|350165|350166|350168|350362|350367|350368|350369|350372|350373|350376|350377|350435|350437|350438|350439|350440|350442|350443|350445|350446|350448|350449|350800|350801|350804|351474|351475|351478|351479|351482|351485|351486|351487|351492|351494|351496|352244|352245|352246|352247|352248|352249|352250|352862|352863|352865|352866|352867|354176|358036|359518|360887|361007|361383|364867|365251|366713|367215|367970|367986|372472|389200|404762|405000|405252|406402|406437|406660|406869|406871|406889|407888|409585|413182|413235|413267|413272|413443|413451|413535|413611|413676|413717|413718|413822|413823|413825|415050|418822|418828|418829|420007|421203|428269|428272|429604|431561|431563|431566|431567|431570|431574|431575|431576|431577|431578|431581|431583|431585|431587|431588|431589|431590|431591|431592|431593|431594|431595|431596|431597|431598|431600|431601|431602|431607|431610|431620|431631|431641|431642|431648|431649|431651|431653|431654|431658|431659|431660|431662|431665|431666|431667|431668|431669|431672|431673|431674|431675|431676|431677|431679|431680|431681|431688|431689|431691|431692|431696|431697|431699|431700|431701|431702|431703|431704|431705|431706|431707|431708|431709|431711|431712|431714|431715|431720|431721|431724|431725|431726|431727|431728|431729|431730|431731|431732|431733|431734|431737|431738|431742|431755|431756|431771|431772|431775|431786|431788|431789|431791|431792|431793|431794|431795|431796|431797|431798|431799|431805|431806|431808|431809|431813|431819|431820|431821|431822|431823|431824|431825|431826|431827|431828|431830|431835|431836|431855|431856|431857|431858|431859|431860|431862|431863|431865|431871|431872|431874|431875|431878|431880|431882|433689|433782|437830|437840|437899|437900|438006|438007|438012|438124|438153|438192|438193|438305|438306|438321|438325|438326|438373|438395|438438|444472|448228|463360|481582|482103|486024|486057|486147|486149|486186|486233|486329|486397|486406|486477|486479|488346|488712|488887|489150|489331|489358|489433|489870|489877|490280|491563|496468|496475|498168|500531|506994|512912|512914|513054|513603|513916|514535|528788|528800|528852|536532|537118|537204|537207|537208|537271|537352|537353|537493|537496|537560|537561|537565|539191|540846|540887|540908|540917|540932|540997|541067|541070|541071|541086|541090|541097|541791|542144|542299|543884|543895|543897|543900|543908|543910|543915|543937|543952|543956|544217|544275|544296|544475|546384|547531|550249|551543|551553|551572|551574|551575|551576|551578|551579|551587|551595|551602|551603|578030|584907|585168|585295|585498|587547|609021|609443|609489|609587|610617|611617|611700|612511|612515|612516|612518|612520|612725|612757|612758|612761|612821|612859|613041|613067|613068|613249|613629|613632|619989|620025|620026|620042|620043|620084|620085|620086|620098|620104|620165|620166|620167|620206|620238|620239|620240|620241|620258|620301|620302|620303|620361|620408|620481|620558|620780|620793|620821|620823|620824|620860|620879|620918|623000|623791|623792|623793|623794|623796|623797|623798|623799|623800|623801|623802|623803|623804|623805|623806|623807|623808|623809|623810|623811|623823|623826|623828|623829|623830|623831|623832|623833|623834|623835|623836|623837|623839|623840|623841|623842|623843|623844|623845|623846|623847|623850|623853|623854|623855|623856|623857|623858|623859|623860|623861|623862|623863|623864|623865|623866|623867|623868|623869|623881|623882|623883|623884|623885|623886|623887|623888|623889|623890|623897|623899|623900|623901|623902|623903|623904|623908|623909|623910|623911|623912|623913|623914|623915|623916|623917|623918|623919|623920|623923|623924|623925|623926|623927|623928|623929|623930|623931|623932|623933|623934|623935|623937|623938|623939|623940|623941|623943|623944|623945|623946|623947|623950|623951|623952|623953|623959|623960|623962|623963|623964|623965|623966|623967|623971|623973|623974|623976|623978|623979|623980|623981|623982|623983|623985|623987|623992|623993|623995|623997|623998|623999|624000|624001|624002|624003|624004|624005|624006|624007|624008|624009|624013|624015|624018|624019|624020|624023|624024|624025|624026|624028|624033|624035|624036|624037|624038|624039|624040|624043|624044|626259|627740|629179|635123|642643|651577|651630|651635|651669|672015|672055|672056|672067|692130|696153|696154|696361|696860|696864|697415|697520|697521|697537|697538|697539|697706|698912|699561|699595|699814|699816|704293|705417|706969|706971|707504|707665|707666|707887|708112|708113|708223|708224|708225|708226|708227|708325|708417|709217|709726|709728|710472|710579|710581|710582|710583|712378|714579|715603|717791|718275|719065|719066|719466|719716|719717|719718|719719|719838|719931|719933|719934|720014|720819|722096|722097|722099|722100|722102|722103|722104|722105|722294|722453|723954|723956|725629|725846|726328|727010|731767|731768|732116|732351|733421|733422|733434|733440|733533|733534|733657|733660|734694|734925|734926|734928|735720|735721|735722|735723|735725|735938|736710|737492|737496|740913|741207|742549|744229|745661|745740|746632|747105|747570|747571|747730|747971|749334|750135|750136|750143|750146|750155|751200|751206|751672|755634|757695|758920|759059|760621|761621|762071|762720|763166|764376|764606|765766|765769|765770|765775|765777|765790|765793|768513|770312|770315|774640|775217|777303|777623|777625|777634|778113|779216|779562|779806|781416|781420|782612|782856|783137|785657|787508|790302|790303|790474|790481|790482|790524|790525|790648|790804|790805|790806|790902|790992|790993|791628|791629|791953|791954|791955|791956|791957|791958|791959|792434|792435|792436|792437|792438|792439|792440|792441|792442|792443|792444|792445|792680|794256|794411|794454|794522|794563|794572|794577|795221|795222|795257|795290|795292|795555|795655|795656|795889|795891|796179|796180|797023|797589|797922|797924|797956|798293|798296|798297|799224|799283|799284|799305|799552|799959|800418|800420|800422|800423|800425|800427|800428|800430|800432|800434|800437|800438|800439|800443|800444|800446|800447|800454|800465|800466|800467|800468|800469|800472|800473|800476|800486|800487|800488|800491|800492|800493|800497|800498|800499|800500|800501|800502|800503|800504|800505|800508|800510|800511|800515|800516|800518|800519|800520|800521|800522|800523|800524|800525|800527|800528|800529|800530|800533|800534|800536|800537|800538|800553|800556|800560|800582|800583|800584|800585|800586|800587|800588|800591|800592|800595|800596|800598|800601|800602|800603|800606|800607|800609|800612|800622|800623|800624|800629|800630|800631|800632|800633|800634|800635|800636|800637|800638|800639|800640|800641|800642|800650|800651|800652|800653|800687|800688|800689|800698|800700|800701|800702|800704|800705|800710|800711|801267|801268|801270|801271|801272|801273|801276|801278|801280|801282|801283|801285|801287|801288|801289|801290|801292|801293|801295|801297|801300|801301|801303|801308|801313|801315|801323|801325|801333|801334|801335|801336|801339|801341|801344|801345|801351|801352|801353|801354|801356|801358|801361|801362|801365|801366|801367|801368|801369|801370|801372|801373|801374|801375|801376|801377|801378|801379|801380|801384|801385|801389|801391|801394|801395|801396|801397|801398|801399|801400|801401|801403|801404|801405|801406|801407|801408|801409|801410|801412|801413|801414|801420|801421|801429|801433|801436|801440|801441|801443|801444|801445|801447|801448|801449|801452|801453|801456|801457|801458|801459|801460|801461|801462|801463|801464|801465|801466|801467|801468|801470|801471|801472|801473|801474|801475|801476|801477|801478|801479|801480|801481|801482|801483|801484|801485|801486|801487|801488|801489|801490|801491|801492|801493|801494|801495|801503|821836|821837|821880|822120|823467|824398|824456|824475|824690|824692|824700|824711|825972|825976|826178|826246|826871|826875|826882|826885|827164|827169|827270|827538|827540|828937|828938|829437|829458|829459|830508|830512|830523|830531|831890|831960|831963|831967|832181|832184|832196|832200|832212|832215|832224|832229|832231|832236|832238|832248|832251|832252|832253|832266|832273|832277|832961|832967|834893|836908|837364|838625|838637|842642|844047|844054|844067|844074|844075|848607|851826|855891|856143|856444|856592|856684|857176|858501|862196|862197|862198|862199|862200|862201|862202|862203|862204|862205|862424|862425|862426|862427|862428|862429|862430|862431|862432|862433|862434|862435|862436|862437|863217|863218|863219|863220|863221|863222|863223|863224|863225|863226|863227|863228|863229|863230|863231|863232|863233|863234|863235|863236|863530|863531|863532|863533|863534|863535|863536|863537|863538|863539|863540|863541|863542|863543|863544|863545|863546|863547|863548|863549|863550|863551|863552|863553|863554|863555|864264|864265|864266|864267|864268|864269|864270|864271|864272|864273|864274|864275|864276|864277|864278|864279|864280|864281|864282|864283|864771|864772|864773|864774|864775|864776|864777|864778|864779|864780|864781|864782|864783|864784|864785|864786|864787|864788|864789|864790|864791|864792|864793|864794|864996|865109|865110|865205|865206|865207|865883|865884|865885|865886|865887|865888|865889|865890|865891|865892|865893|865894|865895|865896|865897|865898|865899|865900|865901|865902|865903|865904|866443|866444|866445|866446|866447|866448|866449|868173|868174|868175|868176|868177|868178|868179|868180|868185|868186|868187|868188|868189|868190|868191|868192|868193|868194|868195|868196|868197|868523|868524|868665|868666|868667|871740|871741|871742|871743|871744|871745|871746|871747|871748|871749|872096|872097|872099|872101|872102|872103|872104|872105|872852|872853|872854|872855|872856|872857|872858|872859|872860|872861|872862|872863|872864|872865|872866|872867|872868|872869|872870|872871|872872|872873|872874|872875|872876|872877|872878|872879|874060|874061|874062|874063|874064|874067|874068|874069|874070|874071|874072|874073|874211|874212|874213|874214|874215|874216|874217|874218|874219|874220|874221|874222|874223|874224|875680|875681|875682|875683|875684|875685|875686|875687|875688|875689|875690|875691|875692|875693|875694|875695|875696|875697|875698|875699|875700|875701|875702|875703|875704|875705|875706|875707|875708|875709|875710|875711|875712|875713|875714|875715|875716|875717|875718|875719|875720|875721|875722|875723|875724|875725|875726|875727|875728|875729|875730|875731|875732|875733|876462|876563|876564|876583|876584|876585|876692|876693|876694|876695|876696|876697|876698|876699|876700|876701|876851|876852|876853|876854|876855|876856|876857|876858|876859|876860|876861|876862|876863|876864|876865|876866|876867|876868|876869|876870|876871|876872|876873|876874|876875|876876|876877|877987|877988|877989|877990|877991|878168|878171|878175|878176|878177|878178|878179|878180|878181|878182|878183|878184|878185|878186|878187|878188|878189|878621|878622|878623|878624|878625|878626|878627|878628|878629|878630|878631|878632|878633|878634|878635|878636|878637|878638|878639|878823|878824|878825|878826|878827|878828|878829|878830|878831|878832|880468|880469|880470|880471|880472|880473|880474|880475|880476|880477|880606|880846|880847|880848|880849|880850|880851|880852|880853|880854|880855|880856|880857|880858|880859|880860|880861|882225|882226|882227|882228|882229|882230|882231|882232|882233|882234|882235|882236|882237|882238|882239|882240|882241|882242|882243|882244|882245|882246|882247|882248|882249|882250|882251|882252|882253|882254|882255|882256|882257|882258|882259|882459|882460|882461|882462|882463|882464|882465|882466|882467|882468|882469|882470|882471|882472|882473|882474|882475|882782|882929|882930|882931|882932|882933|882934|882989|882990|882991|882992|882993|882994|882995|882996|882997|882998|882999|883000|883001|883002|883003|883004|883005|883006|883007|883008|883009|883010|884189|884190|884191|884192|884193|884194|884195|884196|884197|884198|884199|884200|884586|884587|884588|884589|884590|884591|884592|884593|884594|884595|884596|884597|884598|884599|884600|884601|884602|884603|884604|884605|884606|884607|884609|884610|884611|884612|884613|884614|884615|884616|884617|884618|884619|884620|884621|884622|884623|884624|884625|884626|884627|884628|884629|884630|884631|884632|884633|884634|884635|884636|884637|884638|884639|884640|884641|884642|884643|884644|884645|884646|884647|884648|884649|884650|884651|884652|884653|884654|884655|884656|884657|884658|884659|884660|884661|884662|884663|884664|884665|884666|884667|884668|884669|884670|884671|884672|884673|884674|885290|885291|885292|885293|885294|885295|885296|885297|885298|885299|885300|885301|885302|885303|885304|885305|885306|885307|885308|885309|885310|885311|885312|885313|885695|885696|885697|885698|885699|885700|885701|885702|885703|885704|885705|885706|885707|885708|885709|885710|885711|885712|885947|885948|885949|885950|885951|885952|885953|885954|886547|886548|886549|886550|886551|886552|886553|886554|886555|886556|886557|886558|886559|886560|887217|887218|887319|887320|887380|887381|887411|887412|887413|887414|887415|887416|887438|887439|887440|887441|887442|887486|887487|887488|887489|887490|887491|887492|887493|887494|887588|887589|887590|887591|887592|887593|887594|887595|887596|887597|887598|887599|887600|887601|887602|887603|887604|887605|887606|887607|887608|887609|887610|887611|887612|887613|887614|887615|887616|887617|887618|887619|887620|887621|887622|887623|887624|887625|887626|887627|887628|887629|887630|887631|887632|887633|887634|887635|887636|887637|887638|887639|887640|887641|887642|887643|887644|887645|887646|887647|887648|887649|887948|887949|887950|887951|887952|887953|887954|887955|887956|887957|887958|887959|887960|887961|887962|887963|887964|887965|887966|887967|887968|887969|887970|887971|887972|887973|887974|889783|889784|889785|889786|889787|889788|889789|889790|889791|889792|890280|890281|890282|890283|890284|890285|890286|890287|890288|890289|890290|890291|890292|890293|890294|890295|890296|890297|890298|890299|890300|890301|890302|890303|890304|890305|890306|890307|890308|890309|890310|890311|890312|890313|890314|890315|890316|890363|890364|890365|890366|890367|890368|890369|890370|890371|890372|890373|890374|890375|890376|890377|890378|890379|890380|890381|890382|890383|890384|890385|890386|890387|890682|890683|890684|890685|890686|890687|890688|890689|890690|890691|890692|890693|890694|890695|890696|890697|890698|891564|891565|891714|891755|891764|891765|891766|891767|891768|891795|891796|891797|891798|891998|891999|892000|892001|892002|892003|892004|892005|892051|892052|892053|892054|892055|892056|892057|892058|892059|892060|892061|892062|892063|892064|892065|892066|892067|892068|893473|893474|893475|893476|893477|893478|893479|893480|893481|893482|893483|893484|893485|893486|893487|893488|893489|893490|893491|893492|893493|893494|893495|893496|893497|893498|893499|893500|893501|893502|893503|893504|893505|893506|893507|893508|893509|893510|893511|893512|893513|893514|893515|893516|893517|893518|893519|893520|893521|893522|893523|895866|895867|895868|895869|895870|895871|895873|895874|895875|895876|895877|895986|895987|895988|895989|895990|896061|896166|896167|896168|896169|896235|896236|896266|896267|896268|896269|896270|896271|896272|896273|896274|896275|896276|896277|896278|896279|896280|896281|896282|896283|896284|896285|896286|896287|896288|896289|896290|896291|896292|896293|896294|896295|896296|896297|896298|896299|896300|896301|896302|896303|896304|896730|896731|896732|896733|896734|896735|896736|896737|896738|896739|896740|896741|896742|896743|896744|896745|896746|896747|896748|896749|896750|896751|896752|896753|896754|896755|896756|896757|896758|896759|896760|896761|896762|896763|896764|896765|896766|896767|896768|896769|896770|896771|896772|896773|896774|896775|896776|896777|896778|896779|897395|897396|897397|897398|897399|897400|897401|897402|897403|897404|897405|897406|897407|897408|897409|897410|897411|897412|897413|897414|897415|897416|897417|897418|897419|897420|897421|897910|897911|897912|897913|897914|897915|897916|897917|897918|897919|897920|897921|897922|898003|898004|898005|898006|899750|899751|899752|899753|899754|899755|899756|899757|899758|899759|899760|899761|899762|899763|899764|899765|899766|899767|899768|899769|899770|899771|899772|899773|899774|899775|899776|899777|899778|899779|899780|899781|900254|900255|900256|900257|900258|900309|900310|900311|900312|900349|900550|900551|900552|900553|900554|900555|900556|900557|900558|900559|900560|900561|900562|900563|900564|900565|900566|900567|900568|900569|900570|900571|900572|900573|900574|900575|900576|900577|901888|901889|901890|901891|901892|901893|901894|901895|901896|901897|901898|901899|901900|901901|901902|901903|901904|901905|901906|901907|901908|901909|901910|901911|901912|901913|901914|901915|901916|901917|903048|903049|903050|903051|903052|903053|903054|903055|903056|903057|903058|903059|903060|903061|903062|903386|903387|904869|919270|919374|919881|933338|941745|942097|943174|954455|961664|961665|961666|961667|961668|961669|961670|961671|961672|961673|961674|961675|961676|961677|961678|961679|961680|961681|961682|961683|961684|961685|961686|961687|961688|961690|961691|961692|961693|962012|962013|962016|962024|966347|976585|976586", + "text": "Retinitis pigmentosa" + }, + { + "baseId": "15079|15080|15081|15082|15083|39992|39993|39994|39995|39996|39997|39998|39999|99440|99442|99443|99444|141609|141610|141611|141612|141613|169473|169474|169475|169477|169478|169480|169481|169482|169483|169484|169485|169486|169487|169488|169489|169490|169491|169492|169493|169495|169496|169497|169499|169501|169502|169505|169506|169507|169508|169509|169510|169511|169512|169513|169514|169515|169517|169518|169519|169520|169521|169522|169523|169524|169526|169527|169528|169529|169530|169531|169532|169533|169534|169536|169537|169538|169539|169540|178157|192271|193023|193774|208571|208575|208576|208578|265067|268026|268831|333226|333227|333234|333239|333241|333242|333254|333265|333266|343335|343337|343340|343342|343343|343346|343349|343351|343353|348629|348630|348631|348634|348635|348638|348639|348641|349700|349703|349704|349707|349708|349711|349712|349715|349716|379530|413504|430185|430187|430189|446093|488843|492004|508924|613133|620635|620636|623017|623018|669669|677265|681832|728140|756942|806043|806290|855116|880367|880368|880369|880370|880371|880372|880373|880374|880375|880376|880377|880378|880379|880380|880381|880382|880383|880384|880385|880386|880735|880736|880737|880738|880739|880740|880741|919851|964523|965746|966006|966007|966008|966009", + "text": "Primary autosomal recessive microcephaly 2" + }, + { + "baseId": "15080|19999|34434|167642|208040|222995|247394|247395|247396|428854|496152", + "text": "Primary autosomal recessive microcephaly" + }, + { + "baseId": "15084|101641|172323|186006|190552|190886|212273|221320|221321|221321|250755|250756|250757|250759|286960|286966|286970|286971|286975|286988|286989|287727|287744|287746|287748|287751|290127|290128|290129|290132|290134|290495|290497|290499|290503|290516|290517|290518|512811|518584|518637|560894|620090|620749|683505|683506|683507|686230|686231|885314|885315|885316|885317|885318|885319|885320|885321|885322|885323|885324|885325|887382|887383|887384|887385|887386|906280|963128|969601|969602", + "text": "Bardet-Biedl syndrome 15" + }, + { + "baseId": "15085", + "text": "Bardet-Biedl syndrome 12, modifier of" + }, + { + "baseId": "15086", + "text": "Meckel syndrome, type 6, modifier of" + }, + { + "baseId": "15087|15088|15089|135980|135981|135982|135983|135984|135985|135986|143094|143095|143096|143097|143099|143100|143101|143102|192294|192295|192525|194350|203222|203228|203234|203238|203241|203242|203245|203246|203250|208250|230634|230638|230643|230645|324792|324793|324797|324799|324803|324818|324819|324823|324827|324829|324833|324836|324839|324840|324843|324847|324856|324858|324860|324861|324862|324873|324874|324878|324879|324883|334412|334415|334416|334423|334426|334429|334436|334440|334444|334447|334450|334457|334459|334470|334471|334473|334474|334476|334481|334484|334486|334488|334490|334495|341007|341008|341009|341012|341013|341020|341021|341023|341024|341027|341030|341032|341036|341037|341038|341039|341043|341045|341046|341047|341048|341053|341057|342539|342547|342548|342550|342551|342552|342553|342558|342560|342563|342565|342567|342569|342572|342575|342579|342582|342583|342587|342588|342589|342590|342592|342594|342595|342598|342602|342604|342607|374293|374986|375027|426166|429780|429781|614419|644501|797289|874994|874995|874996|874997|874998|874999|875000|875001|875002|875003|875004|875005|875006|875007|875008|875009|875010|875011|875012|875013|875014|875015|875016|875017|875018|875019|875020|875021|875022|875023|875024|875025|875026|875027|875028|875029|875030|875031|875032|875033|875034|875035|875036|875037|875038|875039|875040|875041|875042|875043|875044|875045|875046|875047", + "text": "Myoclonic epilepsy, familial infantile" + }, + { + "baseId": "15088|71464|96871|96874|96874|135980|135981|135982|135983|135984|135985|135986|135987|136991|143096|143097|143098|143099|143100|143101|181290|192295|192296|192525|194350|203221|203222|203223|203224|203225|203226|203228|203228|203229|203230|203233|203234|203236|203238|203240|203241|203241|203242|203242|203245|203247|203248|203250|203252|203253|203254|204635|208250|230634|230635|230636|230638|230643|230645|230645|242398|269132|271757|324793|341009|341012|341013|362597|362598|374296|374986|374995|375002|375011|375027|375276|375281|375283|377427|377432|377436|401123|401125|401880|401887|409578|409583|413423|413424|413425|413897|422086|422086|422087|426165|426166|429779|429780|441890|445550|445553|465533|465575|465579|465581|466288|466298|466302|466307|466339|466552|466556|466560|466569|466570|466573|486131|497076|497258|497477|529860|529862|529945|529950|529951|529956|530198|530395|568036|568038|570029|570030|570033|570218|570219|570221|570222|570225|573994|573996|578528|580064|614419|644496|644497|644498|644499|644500|644501|644502|644503|644504|644505|644506|644507|644508|644509|644510|644511|644512|653128|653252|684581|688556|688557|688558|688559|770799|788897|843650|843651|843652|843653|843654|843655|843656|843657|843658|843659|843660|843661|843662|843663|843664|843665|843666|843667|843668|843669|843670|874998|875001|919636|919637|919637|927749|937387|937388|937389|937390|937391|937392|949330|949331|949332|949333|949334|949335|957710|957711|957712|957713|957714|957715|960842", + "text": "Deafness, autosomal dominant 65" + }, + { + "baseId": "15088|71464|96871|96874|135980|135981|135982|135983|135984|135985|135986|135987|143096|143097|143098|143099|143100|143101|181290|192295|192296|192525|194350|203221|203222|203223|203224|203225|203226|203228|203229|203230|203233|203234|203236|203238|203240|203241|203242|203245|203247|203248|203250|203252|203253|203254|204635|208250|230634|230635|230636|230638|230643|230645|242398|269132|271757|324793|341009|341012|341013|362597|362598|374296|374986|374995|375002|375011|375027|375276|375281|375283|377427|377432|377436|401123|401125|401880|401887|409578|409583|413423|413424|413425|422086|422087|426165|426166|429779|429780|441890|445550|445553|465533|465575|465579|465581|466288|466298|466302|466307|466339|466552|466556|466560|466569|466570|466573|486131|497076|497258|497477|529860|529862|529945|529950|529951|529956|530198|530395|568036|568038|570029|570030|570033|570218|570219|570221|570222|570225|573994|573996|580064|644496|644497|644498|644499|644500|644501|644502|644503|644504|644505|644506|644507|644508|644509|644510|644511|644512|653128|653252|684581|688556|688557|688558|688559|770799|843650|843651|843652|843653|843654|843655|843656|843657|843658|843659|843660|843661|843662|843663|843664|843665|843666|843667|843668|843669|843670|874998|875001|919637|927749|937387|937388|937389|937390|937391|937392|949330|949331|949332|949333|949334|949335|957710|957711|957712|957713|957714|957715|960842", + "text": "Caused by mutation in the TBC1 domain family, member 24" + }, + { + "baseId": "15088|26225|26225|26226|26226|26227|26228|26238|26241|34642|38918|38919|38920|71464|96871|96874|102345|102347|102348|102349|102350|125920|135980|135981|135982|135983|135984|135985|135986|135986|135987|140124|143096|143097|143098|143099|143100|143101|166526|167591|167596|167601|167602|167603|167603|167606|167608|167610|181290|181448|188155|192295|192296|192525|192561|192562|192564|194350|194533|203221|203222|203223|203224|203225|203226|203228|203229|203230|203233|203234|203236|203238|203240|203241|203242|203245|203247|203248|203250|203252|203253|203254|203754|204635|208250|208304|209009|209021|209024|209028|215521|225804|230634|230635|230636|230638|230643|230645|232150|236971|237029|237434|242398|242507|242508|242509|242510|242511|242512|242513|242514|242515|242516|242517|243787|255880|255881|255883|255884|255886|260303|269132|271757|272619|324793|341009|341012|341013|360300|361223|362597|362598|364009|364067|374296|374568|374571|374572|374578|374588|374986|374995|375002|375011|375027|375276|375281|375283|375442|375450|375456|375463|375464|375467|375477|375648|375652|375655|375669|375670|377427|377432|377436|377779|377788|377798|377808|377812|378138|378144|379290|379292|384519|401123|401125|401330|401332|401340|401341|401342|401343|401345|401349|401356|401358|401860|401861|401867|401868|401874|401880|401887|402122|402123|402125|404176|404510|404513|404534|404535|409578|409583|409741|409744|410488|411306|413423|413424|413425|415510|422086|422087|426165|426166|426181|426686|426687|429779|429780|429847|429848|430770|438018|441890|445550|445553|445615|445617|445618|445621|445622|445625|464847|465441|465453|465533|465575|465579|465581|465985|465991|465995|465999|466004|466008|466009|466017|466288|466298|466302|466307|466339|466552|466556|466560|466569|466570|466573|466707|466711|466712|466714|466717|466718|466767|466770|466774|466783|466791|466996|466998|467000|470657|470658|471582|471843|471844|472116|472117|472118|480424|486131|486786|497076|497258|497477|505506|505767|505947|506504|508145|508522|512648|513665|513688|529274|529276|529860|529862|529945|529950|529951|529956|530198|530254|530256|530260|530270|530277|530280|530283|530291|530298|530356|530359|530395|530552|530555|530561|530562|530770|530772|530773|534398|534701|534706|534707|534789|534792|534801|534806|535127|535128|536912|536913|536914|539058|567542|567543|567547|568036|568038|568339|568342|568346|568356|568358|568368|568371|569397|569399|569815|569817|570029|570030|570033|570218|570219|570221|570222|570225|570467|570470|570474|570474|570477|570480|570481|570483|570485|570491|570544|570546|570551|570553|570555|572392|572394|573773|573774|573774|573776|573994|573996|574167|574168|574169|574170|574171|574172|574173|574174|574494|574525|575383|575384|577571|578383|578532|578564|578586|580064|580902|580943|581077|581231|586384|590359|612167|622313|622474|622928|626118|644496|644497|644498|644499|644500|644501|644502|644503|644504|644505|644506|644507|644508|644509|644510|644511|644512|644985|644986|644987|644988|644989|644990|644991|644992|644993|644994|644995|644996|644997|644998|644999|645000|645001|645002|645003|645004|645005|649936|649937|649938|649939|649940|649941|649942|649943|649944|649945|649946|652481|652662|653128|653150|653252|653314|653385|653637|677452|684581|684627|684628|688556|688557|688558|688559|688658|688659|688661|689455|689457|689459|690149|690269|715087|770799|771070|771071|773967|776375|788071|791644|791645|791646|792250|792251|792252|800920|806383|806383|820877|820878|820879|820880|820881|820882|820883|820884|822223|843650|843651|843652|843653|843654|843655|843656|843657|843658|843659|843660|843661|843662|843663|843664|843665|843666|843667|843668|843669|843670|844334|844335|844336|844337|844338|844339|844340|844341|844342|844343|844344|844345|844346|844347|844348|844349|844350|844351|844352|844353|844354|844355|844356|844357|844358|844359|849914|849915|849916|849917|849918|851681|852129|857625|858378|860286|860511|860837|874998|875001|903652|919637|927749|927954|927955|927956|927957|927958|927959|927960|927961|929675|929676|929677|929678|929679|929680|929681|937387|937388|937389|937390|937391|937392|937622|937623|937624|937625|937626|937627|939544|939545|939546|949330|949331|949332|949333|949334|949335|949575|949576|949577|949578|949579|949580|949581|949582|949583|949584|949585|949586|949587|949588|951723|951724|951725|951726|951727|951728|951729|951730|951731|951732|951733|957710|957711|957712|957713|957714|957715|957881|957882|957883|957884|957885|957886|959236|959237|960179|960842|963916|963917|963918|964599|964600|964601|966622|971200|971201", + "text": "Epileptic encephalopathy, early infantile, 1" + }, + { + "baseId": "15090|15091|178158|196322|213494|338144|338149|338151|338161|338162|338165|338166|338184|338190|338193|338196|338201|338204|338205|338214|347778|347779|347781|347783|347786|347793|347794|347797|347810|347811|347823|347828|347832|347837|347838|347844|347851|347861|347872|347873|347876|347882|347894|347896|351615|351617|351618|351622|351624|351625|351626|351629|351630|351631|351634|351635|351638|351641|351643|351646|351649|351652|352564|352565|352566|352567|352568|352570|352571|352572|352573|352574|352576|352577|352580|352581|352583|352584|352585|352586|352587|352590|352591|352592|352593|352594|404393|469864|534316|572011|620928|649527|684923|685473|689292|695883|786606|849374|891315|891316|891317|891318|891319|891320|891321|891322|891323|891324|891325|891326|891327|891328|891329|891330|891331|891332|891333|891334|891335|891336|891337|891338|891339|891340|891341|891342|891343|891344|891345|891346|891347|891348|891349|891350|891351|891352|891353|891354|891355|891356|891357|891358|891359|891360|891361|891362|891363|891364|891365|891841|891842|939324", + "text": "Nephronophthisis-like nephropathy 1" + }, + { + "baseId": "15092|15093|133983|133983|140298|140298|140299|140299|211578|254440|316224|316225|316228|316231|323564|323565|323568|323579|329708|329709|329709|329718|329721|330961|330963|330965|330966|330969|330970|503572|538428|566397|640668|640669|684309|687914|753174|801553|820448|839377|839378|869424|869425|869426|869427|869428|869429|869430|869431|869432|869433|869434|869435|869436|869437|869438|869439|869440|869441|869442|869443|904204|947809", + "text": "Combined oxidative phosphorylation deficiency 7" + }, + { + "baseId": "15092|18494|21822|39422|98402|142972|168010|178088|208019|263302|264512|268517|364478|364483|389104|389105|389106|389107|389108|389109|389110|389114|389115|389116|389118|389119|389120|389121|389122|389123|389124|389125|389126|389127|389128|389129|389130|389131|389132|389136|389137|389138|389139|389140|389141|389142|389143|389144|389145|389146|389147|389148|389149|389150|389151|389152|389153|389154|389155|389156|389157|389159|389160|389161|389162|389164|389165|389166|389167|389168|389169|389170|389171|389172|389173|389174|389175|389177|389179|389180|389181|389182|389183|389184|389185|389186|389187|389188|389189|389190|389191|389192|514092|576060|576061|625988", + "text": "Abnormality of brain morphology" + }, + { + "baseId": "15092|48181|94433|96885|153818|153819|538428|919417|971343", + "text": "Spastic paraplegia 55, autosomal recessive" + }, + { + "baseId": "15092|34621|38843|90624|101376|153559|167780|186890|187611|187723|193200|201362|202135|202308|202311|202442|202741|202756|203772|226945|247726|259633|263008|263009|263010|263011|263935|271703|296015|299752|299799|354006|354013|360801|360936|360940|361000|361001|361078|361086|361087|361132|361153|361181|361751|361752|362140|362141|362315|362317|362318|362320|362321|362322|362325|362328|362329|362331|362332|362333|362334|362335|362336|362339|362340|362341|362342|362343|362345|362347|362348|362349|362350|362352|362354|362355|364152|373366|375789|384445|410530|410815|438572|438729|439573|446266|459491|459493|459502|459736|459743|459746|459964|459974|459978|459979|459981|459983|460372|460375|460377|460382|460389|460394|460395|463942|463964|463972|463974|463976|463981|463982|463987|463991|463994|463997|464004|464005|464007|464009|464011|464012|464016|464027|464029|464035|464038|464039|464040|464045|464047|464050|464052|464056|464064|464065|464066|464067|464069|464072|464074|464076|464077|464081|464086|464089|464099|464100|464106|464111|464113|464115|464117|464129|464132|464135|464139|464552|464554|464559|464564|464566|464576|464580|464582|464587|464593|464594|464599|464605|464609|464611|464616|464618|464619|464621|464623|464627|464629|464631|464632|464640|464646|464648|464650|464656|464657|464665|464677|464684|464686|464688|464693|464694|464807|464813|464815|464816|464817|464821|464822|464824|464826|464827|464828|464829|464830|464831|464835|464838|464839|464842|464843|464844|464845|464846|464848|464850|464851|464852|464854|464855|464859|464860|464864|464865|464866|464869|464873|464875|464878|464880|464884|464885|464888|464889|464890|464891|464893|464894|464895|464896|464897|464902|464903|464905|464907|464911|464915|464916|464917|464919|464922|464925|464926|464928|464929|464930|464931|464932|464942|464944|464949|464951|464952|464953|464954|464957|464966|464969|467706|467713|467727|467731|467734|467741|467743|467746|467749|467756|467759|467760|467762|467764|467767|467770|467773|467781|467787|467792|467794|467796|467798|467799|467800|467802|468598|468602|468609|468610|468611|468615|468624|468628|468641|468642|468644|468645|468652|468657|468658|468665|468671|468672|468674|468679|468681|468683|468688|468699|468701|468708|468711|468712|468716|468720|468723|468724|468727|468733|468735|468739|468741|469068|469075|469076|469077|469080|469081|469085|469086|469094|469098|469102|469103|469109|469116|469123|469126|469128|469130|469133|469141|469142|469151|469159|469163|469164|469168|469171|469172|469374|469379|469382|469390|469407|469416|469417|469422|469425|469433|469436|469441|469449|469451|469453|469461|469464|469465|469471|469474|469487|469488|469494|469497|469503|469508|469510|469521|469528|469538|469540|470956|514105|514109|524829|524834|524835|525066|525067|525071|525369|525372|528608|528612|528614|528616|528622|528624|528626|528628|528630|528633|528634|528639|528640|528641|528642|528643|528648|528649|528651|528652|528653|528655|528658|528659|528663|528665|528671|528673|528675|528676|528677|528681|528682|528686|528687|528692|528693|528694|528697|528699|528700|528702|528705|528709|528711|528716|528720|528721|528733|528737|528739|528740|528743|528745|528750|528751|528754|528998|529001|529002|529005|529006|529008|529010|529012|529017|529019|529029|529034|529043|529047|529050|529053|529055|529057|529061|529063|529067|529069|529071|529073|529074|529075|529082|529085|529092|529093|529095|529096|529098|529099|529100|529107|529109|529112|529123|529128|529151|529165|529166|529169|529173|529177|529184|529195|529204|529209|529213|529218|529219|529221|532011|532016|532018|532019|532020|532023|532025|532027|532028|532030|532034|532037|532039|532040|532041|532042|532044|532045|532046|532049|532051|532052|532058|532060|532063|532065|532067|532068|532073|532078|532079|532081|532083|532086|532092|532093|532095|532096|532099|532101|532105|532108|532111|532112|532118|532122|532127|532129|532132|532138|532154|532156|532158|532162|532167|532169|532175|532176|532178|532192|532193|532384|532389|532394|532398|532399|532405|532408|532409|532413|532414|532415|532418|532421|532423|532424|532436|532437|532441|532443|532447|532448|532449|532450|532454|532455|535695|535710|536183|550642|551754|553119|563449|563450|563452|564349|564355|564366|564368|564371|566084|566086|566087|566895|566898|566904|566905|566907|566909|566919|566924|566926|566930|566933|566935|566936|566937|566940|566941|566943|566946|566947|566952|566954|566958|566964|566966|566968|566970|568644|568647|568648|568651|568658|568664|568667|568670|568671|568673|568674|568676|568677|568689|568691|568692|568695|568696|569236|569238|569244|569251|569254|569256|569257|569259|569260|569270|569274|569275|569276|569280|569282|569283|569292|569293|569296|569301|569302|569304|569306|569320|569321|569342|569344|569948|569949|569951|569953|569961|569962|569974|569978|569981|569983|569987|569995|569997|571749|571753|571757|571761|571763|571764|571767|571768|571770|571771|571773|571778|571781|571784|571786|571790|571791|571794|571796|571798|571800|571801|571802|571805|572429|572430|572434|572435|572439|572444|572446|572447|572461|573146|573147|573152|573155|573158|573159|573160|573161|573163|573164|573173|573179|573181|573183|573185|573191|573196|573200|573204|573209|573213|574684|574685|574686|574687|574688|574689|574690|574691|574692|574693|574694|583092|613542|622053|622055|622056|622057|622058|622059|622060|622063|622064|622065|622066|622067|622068|622069|622853|638598|638599|638600|638601|638602|638603|638604|638605|638606|643011|643012|643013|643014|643015|643016|643017|643018|643019|643020|643021|643022|643023|643024|643025|643026|643027|643028|643029|643030|643031|643032|643033|643034|643035|643036|643037|643038|643039|643040|643041|643042|643043|643044|643045|643046|643047|643048|643049|643050|643051|643052|643053|643054|643055|643056|643057|643058|643059|643060|643061|643062|643063|643064|643065|643066|643067|643068|643069|643070|643071|643072|643073|643074|643075|643076|643077|643078|643079|643080|643081|643082|643083|643084|643085|643086|643087|643088|643089|643090|643091|643092|643093|643094|643095|643096|643097|643098|643099|646970|646971|646972|646973|646974|646975|646976|646977|646978|646979|646980|646981|646982|646983|646984|646985|646986|646987|646988|646989|646990|646991|646992|646993|646994|646995|646996|646997|646998|646999|647000|647001|647002|647003|647004|647005|647006|647007|647008|647009|647010|647011|647012|647013|647014|647015|647016|647017|647018|647019|652403|652404|652549|652721|652723|653022|653027|653544|692746|693651|693652|693653|693654|694226|694227|694228|694229|694230|694231|694232|694233|695635|695786|701109|701110|701111|701112|701113|701114|703119|703120|703121|703122|703123|703124|703125|703126|703129|703130|703131|703132|703133|703134|704478|704479|704480|704482|704483|704484|704485|704486|704487|704488|704489|704490|704492|704493|704494|704495|704496|704497|704498|704499|704500|704501|704503|704504|704505|704506|704508|714389|714391|714392|714393|714398|715834|715836|715837|715839|715840|715841|715843|715846|715847|715849|715850|723685|723686|723687|723689|723690|723691|723692|726004|726005|726006|726007|726008|726010|726011|726012|727581|727582|727583|727585|727588|727590|730660|730978|730980|730981|731195|737269|739542|739544|739546|739548|739551|739552|739553|739554|739555|739557|739559|739560|739561|741222|741223|741224|741226|741228|741229|741230|741231|741234|741236|741237|741238|741239|741240|741241|744740|744864|745073|745081|745117|745141|751869|751871|754367|754370|754371|754373|754375|754378|754382|754383|754385|754386|756305|756306|756307|756308|756311|756312|756313|756315|756317|756320|756326|759848|760149|767567|767568|767569|767570|770080|770085|770086|770087|770092|770093|771980|771983|771984|771987|771988|771990|771993|771994|771995|771996|771997|771999|772003|772008|775450|776116|776463|776565|778110|778137|778141|778151|778235|778326|778328|778560|779453|779996|779997|783507|784873|784877|784884|785815|785820|785822|785823|785825|787991|788150|798927|798928|798929|798930|798931|798932|798933|798934|798935|798936|798937|798938|798939|798940|798941|798942|798943|798944|798945|798946|798947|798948|800989|801080|801083|801084|801088|801107|801108|801110|801130|801140|801167|801180|801181|801194|801202|801203|815873|820183|821176|822033|822034|822035|822036|822037|822038|822039|822040|822041|822042|822043|822044|822045|822046|822273|836462|836463|836464|836465|836466|836467|836468|836469|836470|836471|836472|836473|836474|836475|836476|836477|836478|836479|836480|836481|842135|842136|842137|842138|842139|842140|842141|842142|842143|842144|842145|842146|842147|842148|842149|842150|842151|842152|842153|842154|842155|842156|842157|842158|842159|842160|842161|842162|842163|842164|842165|842166|842167|842168|842169|842170|842171|842172|842173|842174|842175|842176|842177|842178|842179|842180|842181|842182|842183|842184|842185|842186|842187|842188|842189|842190|842191|842192|842193|842194|842195|842196|842197|842198|842199|842200|842201|842202|842203|842204|842205|842206|842207|842208|842209|842210|842211|842212|842213|842214|842215|842216|842217|842218|842219|842220|842221|842222|842223|842224|842225|842226|842227|842228|842229|846520|846521|846522|846523|846524|846525|846526|846527|846528|846529|846530|846531|846532|846533|846534|846535|846536|846537|846538|846539|846540|846541|846542|846543|846544|846545|846546|846547|846548|846549|846550|846551|846552|846553|846554|846555|846556|846557|846558|846559|846560|846561|846562|846563|846564|846565|846566|846567|846568|846569|846570|846571|846572|846573|846574|846575|846576|846577|846578|846579|846580|846581|846582|846583|846584|846585|846586|846587|846588|846589|846590|846591|846592|851599|851601|851758|851763|852029|852031|852033|852579|852580|852582|852586|852758|852759|852927|925690|925691|925692|925693|925694|925695|925696|925697|925698|925699|925700|925701|925702|925703|927268|927269|927270|927271|927272|927273|927274|927275|927276|927277|927278|927279|927280|927281|927282|927283|927284|927285|927286|927287|927288|927289|927290|927291|927292|927293|927294|927295|927296|927297|928616|928617|928618|928619|928620|928621|928622|928623|928624|928625|928626|928627|928628|928629|928630|928631|928632|928633|928634|928635|928636|928637|928638|928639|928640|928641|928642|934877|934878|934879|934880|934881|934882|934883|936858|936859|936860|936861|936862|936863|936864|936865|936866|936867|936868|936869|936870|936871|936872|936873|936874|936875|936876|936877|936878|936879|936880|936881|936882|936883|936884|936885|936886|936887|936888|936889|936890|936891|936892|936893|936894|936895|936896|938329|938330|938331|938332|938333|938334|938335|938336|938337|938338|938339|938340|938341|938342|938343|938344|938345|938346|938347|938348|938349|938350|938351|938352|938353|938354|938355|938356|938357|938358|938359|938360|938361|940447|940448|941082|941083|946744|946745|946746|946747|946748|946749|946750|946751|946752|948809|948810|948811|948812|948813|948814|948815|948816|948817|948818|948819|948820|948821|948822|948823|948824|948825|948826|948827|948828|948829|948830|948831|948832|948833|948834|948835|948836|948837|948838|948839|948840|948841|948842|948843|948844|948845|948846|950412|950413|950414|950415|950416|950417|950418|950419|950420|950421|950422|950423|950424|950425|950426|950427|950428|950429|950430|955947|957382|957383|957384|957385|957386|957387|957388|957389|957390|957391|957392|957393|957394|958404|958405|958406|958407|958408|958409|958410|958411|958412|958413|958414|959926|960102|960103|960104|960105|960106|960255|960709|960819|971562", + "text": "Epileptic encephalopathy" + }, + { + "baseId": "15094|15094|15095|101548|101548|101549|101550|101551|140422|140423|140424|140425|140426|140427|140428|140429|169122|169123|169124|169125|169126|169127|169128|169129|169130|169131|169132|169133|169134|169135|169136|169137|169138|169139|169140|169141|169142|169143|169144|169145|169147|169148|169148|169149|169150|169151|169152|169153|169154|169154|169155|169156|169157|169159|169161|169162|169163|169164|169165|169166|169167|169168|169169|169170|169171|169172|169173|169174|169175|169176|208201|322812|322813|322814|322817|322818|332286|332288|332290|332291|332298|332299|332302|332305|332310|332323|332325|332332|332333|332347|339307|339310|339311|339312|339314|339321|339330|339338|340752|340760|340762|340764|340768|340775|340777|340781|373593|374218|429684|513631|513632|612101|714475|770213|789379|873743|873744|873745|873746|873747|873748|873749|873750|873751|873752|873753|873754|873755|873756|873757|873758|873759|873760|873761|873762|873763|873764|873765|873766|873767|873768|965995|965996|966041", + "text": "Primary autosomal recessive microcephaly 9" + }, + { + "baseId": "15094|39987|39989|39990|39991|101548|101548|101549|101550|101551|140422|140423|140424|140425|140426|140427|140428|140429|169123|169125|169126|169128|169129|169132|169133|169138|169140|169141|169142|169148|169148|169149|169152|169154|169154|169159|169163|169164|169168|169172|169174|169175|169176|322812|322813|322814|322817|322818|332286|332288|332290|332291|332298|332299|332302|332305|332310|332323|332325|332332|332333|332347|339307|339310|339311|339312|339314|339321|339330|339338|340752|340760|340762|340764|340768|340775|340777|340781|373593|374218|390686|513631|714475|770213|873743|873744|873745|873746|873747|873748|873749|873750|873751|873752|873753|873754|873755|873756|873757|873758|873759|873760|873761|873762|873763|873764|873765|873766|873767|873768|919579|919580", + "text": "Seckel syndrome 5" + }, + { + "baseId": "15094|169154|332308|620523|620869|620870|620871", + "text": "CEP152-Related Disorders" + }, + { + "baseId": "15096|15096|15097|15098|15099|166293|176930|176930|178060|178060|190854|191240|196005|206781|206782|206783|206784|249845|249846|249846|249848|249848|249850|249851|249854|268658|268658|280170|280177|280179|280185|280185|280192|280192|280530|280538|280538|280543|280543|280560|280560|280561|280563|281826|281828|281955|281956|281956|281968|281974|281974|281975|281978|281979|281980|427758|427758|427759|447949|447949|448070|448070|515777|515777|552297|556940|612139|622312|627685|627686|627687|627688|627689|650586|650710|690565|690565|690570|695042|695043|695044|695044|707257|818956|823805|823806|823807|823807|823808|823809|823810|823811|823812|823813|823814|823815|823816|823817|823818|823819|823820|823821|823822|850778|864180|864181|864182|864183|864184|864185|864186|865168|865169|921959|921960|921961|921962|930434|930435|939807|941888|941889|941890|941891|941892|941893|952364|952365|952366|952367|952368|952369|952370", + "text": "Senior-Loken syndrome 7" + }, + { + "baseId": "15096|16186|16189|16190|16365|16367|17079|17568|17569|17696|17699|17701|18054|18055|19608|19609|19610|19611|19612|19615|19616|19617|19622|20348|21200|22389|22390|22392|24184|24185|24186|27182|27183|27184|27185|27186|27187|34519|34520|34521|34521|34522|34523|34523|34524|34558|34559|34560|34581|34582|34583|34584|34585|34586|34587|34588|34589|34590|34591|34592|34593|34594|38435|39774|39775|44414|44415|44416|44417|44418|44419|44420|78955|78956|78957|90780|101393|101394|101396|101397|101398|101817|101818|101819|102024|102025|102026|102064|102100|102127|102392|102393|102398|102540|106441|106442|106460|106463|106468|106472|106482|106485|152879|171804|176959|177020|177127|177141|177150|177222|177250|177273|177353|177505|177507|177508|177509|177510|177511|177513|177514|177569|177574|186006|186020|186021|186197|186836|186837|186838|186848|186850|186851|186852|189022|189109|190551|190552|190621|190635|190886|191067|191287|191301|191594|191847|191848|191965|192157|192440|192441|192442|192443|192574|192575|192577|192793|192794|193731|193760|193761|194521|194525|194548|205180|205604|207477|209353|212272|212273|212274|212349|212350|212351|212352|212353|212354|212355|212527|212579|212580|212581|212582|212583|212584|212585|212952|212953|213009|213010|213011|213012|213124|213126|213127|213194|213466|213467|214074|221320|221321|221433|221434|221700|222267|226933|227327|227345|237357|237445|238076|240081|240082|241206|243573|250385|250386|250387|250388|250755|250757|251321|251323|251324|251325|251326|251327|251328|251329|251330|252796|252801|252802|252803|252806|252807|252809|252810|252811|252812|252813|252815|252816|253281|253282|254256|254260|254720|254721|254723|254724|254734|255108|255110|255111|255348|255352|255356|255822|255825|257303|260897|260904|260905|260906|260911|260912|260918|260919|260920|260922|264628|265360|265833|265835|265863|266394|266678|268119|268120|268181|268296|268533|268974|269018|269313|269464|269498|269617|269813|269844|269846|269950|270494|270972|271121|271205|271264|271903|272416|272492|272609|272672|272895|273403|273579|274562|274715|280562|280564|281829|281981|286955|286968|286971|286975|286988|286990|287744|287748|287752|287753|287755|290126|290518|290522|292180|292181|292198|292204|292209|293617|293633|296450|296459|296467|296948|296968|296969|296972|296974|296977|296978|296980|302842|302846|302850|306569|306582|310933|311130|311182|314715|314722|316171|316186|316187|316198|318506|318511|318604|321437|321440|321441|321442|321451|321460|321699|323310|323344|326682|326794|326807|326864|326876|327580|327581|327599|328643|332901|332914|332915|332978|332989|334566|334588|334596|334650|334785|335456|335466|337703|339855|339856|341279|341899|341906|341911|341912|341913|341917|343426|343438|343442|344655|346578|346583|349613|350639|353342|353343|353574|353665|357327|358035|358040|358042|358043|358046|358107|358113|358376|363879|367862|369720|369721|371621|372322|372535|384491|390016|391629|391630|391635|394133|394300|395637|396287|396388|396670|397016|398348|398446|398448|398900|399055|399208|399558|399747|399750|399815|400329|400330|400478|400813|401166|401731|404130|404810|408745|408746|413671|424022|424187|424374|425240|425241|425242|425243|425244|425245|425246|425247|425248|425249|425250|425251|425252|425253|425254|426019|428084|428269|428272|428273|428709|429277|429279|429449|429604|429716|438281|439258|441256|444334|444335|444336|444338|451723|451728|452943|452952|453263|453712|453715|456114|456709|457349|457774|458121|458205|458206|458737|458827|461400|461402|461569|462242|462472|462732|463587|464492|464791|465137|465365|465687|466508|466753|471361|471362|487588|487920|488900|488965|489326|489499|490195|490282|491001|491371|491387|492450|492453|493106|493567|502585|502858|512038|512824|516233|516724|516815|518584|518637|518642|519717|519737|519738|519983|519988|520005|520007|522912|523083|523087|524192|524469|524528|524531|526418|526422|526449|526452|526726|527371|528800|529420|529619|530058|534000|543046|543257|543274|543287|543300|543358|543369|543375|546459|546589|546712|546729|546879|547210|547241|547264|547755|547762|547764|547788|547792|547812|548023|548025|548029|548043|548489|548504|551531|557725|557727|558907|559162|560894|561589|561591|561877|561882|561945|562687|563375|563381|563385|563387|563389|563431|563855|565430|565432|565437|566095|566856|567065|567240|567242|568198|568410|568418|568425|572037|572041|572052|572062|573506|574093|575074|576215|576216|576218|576219|576221|576222|576223|576224|576225|576226|576227|576228|576229|576230|576231|576235|576236|576237|576238|576239|576240|576241|576242|576243|576244|576245|576246|576247|576322|576323|582509|583361|585764|587793|587796|587963|588446|588535|589618|613749|613750|613751|613752|613753|613754|613755|613756|613757|620261|623905|623906|623935|624000|624115|626170|630407|631911|631912|631913|636141|636142|636143|636144|636145|637637|637638|637639|637640|637641|637642|637643|640363|640364|641389|641390|641391|642777|642778|642779|643521|643522|644765|644766|648569|648570|648571|648572|651268|651824|652427|652541|652543|683505|683506|683507|683618|683619|683620|683621|683889|683890|684037|684265|684266|684267|684346|684348|684349|684350|684351|684352|684353|684554|684610|684861|684862|685117|685218|685219|685294|685420|685918|685919|686230|686231|686232|686233|686235|686490|686492|686493|686494|686495|687045|687046|687047|687817|687820|687821|687822|688044|688045|688046|688047|688049|688050|688051|688052|688053|688054|688055|688623|688624|688626|688627|689678|690011|690012|690013|691504|691505|691506|692232|693095|693096|693098|693286|693287|693288|693289|693899|693903|693904|695539|697155|698361|700766|701924|703317|744650|748711|752844|752847|753614|755252|763379|764292|767064|768643|768644|769307|769309|769310|770965|770967|791156|792743|800494|800570|800593|800594|800686|801359|801360|801434|801435|801446|801448|802209|815789|819080|819440|819873|819874|819875|820042|820043|820044|820045|820405|820406|820407|820408|820409|820410|820520|820736|825197|825198|825199|825200|826889|826890|826891|826892|826893|826894|826895|826896|826897|826898|826899|826900|826901|828721|828722|828723|828724|828725|828726|828727|828728|828732|828733|828734|828735|828736|828737|828738|828739|828740|828741|828742|828743|828744|833573|833574|833575|833576|833577|833578|833579|833580|833581|833582|833583|833584|833585|833586|833587|833588|833589|833590|833591|833592|833593|835411|835412|835413|835414|835415|835416|835417|835418|835419|835420|835421|835422|835423|835424|835425|835426|835427|835428|835429|835430|835431|838808|838809|838810|838811|838812|838813|838814|838815|838816|838817|838818|838819|838820|838821|838822|838823|838824|840277|840278|840279|840280|840281|840282|840283|840284|840285|840286|840287|840288|840289|840290|840291|840292|840293|840294|841894|841895|841896|841897|841898|841899|841900|841901|841902|842658|842659|842660|842661|842662|842663|842664|842665|842666|842667|844003|844004|844005|844006|844007|844008|844009|844010|844011|844012|844013|844014|844015|844016|844017|844018|844019|844020|844021|844022|848197|848198|848199|848200|848201|848202|848203|848204|848205|848206|848207|848208|850852|850873|850915|850917|851107|851358|851438|851584|851841|851909|852365|852623|852624|852778|852779|852995|855849|856309|856311|856803|858466|868333|868341|868343|874075|874080|875523|906091|917216|918226|922405|922895|923399|923402|923403|923404|924848|924849|924850|925343|925344|925345|925346|925347|925348|926355|926356|926357|926358|926736|926737|927861|927862|927863|927864|927865|929140|930970|930971|930972|931544|931545|931546|931547|931548|932136|932137|932138|932139|932140|932141|932142|932143|932146|932147|932148|932149|932150|932151|933878|933879|933880|933881|933882|933883|933884|933885|934523|934524|934525|934526|935707|935708|935709|935710|935711|936265|936266|936267|936268|936269|936761|936762|936763|936764|936765|937047|937048|937049|937050|937051|937052|937053|937493|937494|937495|937496|937497|937498|937499|938904|938905|938906|938907|940075|940230|940318|940361|940362|940665|940666|941139|941140|942398|942399|942400|942401|943071|943072|943073|943074|943075|943076|943077|943078|943079|943080|943081|943082|943769|943770|943771|943772|943773|943774|943775|943776|943777|943778|943782|943783|943784|943785|943786|943787|943788|945621|945622|945623|945624|945625|945626|945627|945628|945629|946331|946332|946333|946334|946335|946336|947594|947595|948160|948161|948162|948163|948164|948165|948166|948167|948168|948718|948719|948720|948721|948722|948995|948996|948997|948998|948999|949000|949001|949441|949442|949443|949444|950977|950978|950979|950980|950981|950982|950983|950984|950985|952784|953167|953168|953169|953170|953171|953172|953642|953643|953644|953645|953646|953647|953648|953649|953650|953651|953652|953653|953654|953655|953656|953657|953658|953659|953660|955149|955150|955151|955152|955153|955154|955155|955156|955670|955671|955672|955673|956600|956601|956602|956603|956604|956605|956606|956607|956608|956942|956943|956944|956945|956946|956947|956948|956949|957333|957334|957335|957336|957337|957496|957497|957808|957809|957810|957811|957812|957813|957814|958771|958772|958773|958774|958775|958776|958777|958778|959854|959855|959856|960162|960163|960488|960757|960758|960792|960825|960826|960847|963399|964070|964071|965859", + "text": "Bardet-Biedl syndrome" + }, + { + "baseId": "15096|15099|15100|166292|166293|166293|176930|176930|178060|178060|190854|191240|196005|205134|206781|206784|249845|249846|249846|249848|249848|249850|249851|249854|268658|268658|280170|280177|280179|280185|280185|280192|280192|280530|280538|280538|280543|280543|280560|280560|280561|280563|281826|281828|281955|281956|281956|281968|281974|281974|281975|281978|281979|281980|427758|427758|427759|447949|447949|448070|448070|515777|515777|552297|556940|612174|622312|622860|627685|627686|627687|627688|627689|650586|650710|690565|690565|690570|695042|695043|695044|695044|707257|789361|818956|823805|823806|823807|823807|823808|823809|823810|823811|823812|823813|823814|823815|823816|823817|823818|823819|823820|823821|823822|850778|864180|864181|864182|864183|864184|864185|864186|865168|865169|906278|918625|921959|921960|921961|921962|930434|930435|939807|941888|941889|941890|941891|941892|941893|952364|952365|952366|952367|952368|952369|952370", + "text": "Bardet-Biedl syndrome 16" + }, + { + "baseId": "15101|15102|15103", + "text": "Tritanopia" + }, + { + "baseId": "15104|15105|15106|15111|15112|15113|15114|15115|248651|249962|249963|280657|280668|280676|281155|282433|282696|282698|746521|789972|864495|864496|864497|864498|864499|864500|864501|864502|864503|864504|864505|864506|865186|865187|903667", + "text": "Familial porphyria cutanea tarda" + }, + { + "baseId": "15105|15107|15108|15109|15110", + "text": "Hepatoerythropoietic porphyria" + }, + { + "baseId": "15105|75613|75614|281152|281154|282431|282695|282699|353103", + "text": "Porphyria cutanea tarda" + }, + { + "baseId": "15110", + "text": "Porphyria cutanea tarda, type I" + }, + { + "baseId": "15116|15119|15120|15121|190730|192211|253908|253909|311624|311628|311633|311636|311638|311639|311640|311644|311646|311651|311658|317185|317188|317193|317194|317199|317202|317207|317208|317209|317220|317222|317225|317227|323214|323218|323219|323229|323232|323233|323236|323243|323255|323256|323257|323258|323813|323814|323822|323823|323826|323827|323828|323832|323833|545635|545648", + "text": "Wolman disease" + }, + { + "baseId": "15116|15117|15118|15119|15121|94353|190730|192211|193399|195569|199794|205164|253908|253909|266300|273974|274223|311624|311628|311633|311638|311639|311640|311644|317185|317188|317193|317194|317199|317209|317220|317222|317225|323214|323218|323219|323236|323243|323255|323256|323813|323822|323826|323827|323828|323832|323833|423865|460671|489048|490257|490500|492955|525605|545310|545311|545315|545317|545319|545321|545611|545612|545626|545633|545635|545647|545648|545650|545654|545657|545667|545671|545947|545952|545953|564048|569890|585506|585777|586202|586607|587039|587407|589564|589766|639304|652047|683151|683152|683153|683154|683155|683156|683157|683158|683159|683160|683161|683162|683163|683164|683165|683166|683167|683168|683169|683170|683171|683172|683173|683174|683175|683176|683177|683178|683179|683180|683181|683182|683183|683184|737633|737634|737636|744655|752325|768051|768054|768056|768057|768058|768059|775566|779512|783776|783778|820277|820278|820279|837473|851397|857331|866532|866533|866534|866537|866538|866539|866540|866542|866543|866545|866546|866547|866548|868533|868534|919303|925975|935231|935232|935233|940186|947131|959951|972099|972100|972101|972102|978805|978806|978807|978808|978809", + "text": "Lysosomal acid lipase deficiency" + }, + { + "baseId": "15119", + "text": "Cholesteryl ester storage disease" + }, + { + "baseId": "15122|15123|15124|15125|15126|15127|15128|15129|75281|791020", + "text": "Urofacial syndrome 1" + }, + { + "baseId": "15130|15131|15132|15133|15134|70551|194549|194550|253089|253094|253096|304724|304726|304728|304732|304736|304745|304747|304751|304752|304754|304755|304756|304761|304763|308419|308421|308423|308426|308429|308430|308431|308432|308433|308434|313506|313507|313514|313515|313516|313521|313525|313526|313526|313537|313538|313539|313541|313542|313544|313616|313621|313622|313623|313625|313626|313629|313631|313642|313645|413771|497027|536065|536066|577056|577057|626174|679517|680100|700503|777762|777764|790792|790793|800712|800713|800714|800715|800716|800717|800718|800719|800720|800722|800723|800724|800725|800726|800727|800728|800729|800730|800731|800732|800733|800734|800735|800736|800737|800738|800739|800742|800743|800745|800746|800747|800748|800749|800750|800751|899197|899198|899199|899200|899201|899202|899203|899204|899205|899206|899207|899208|899209|899210|899211|899212|899213|899214|899215|899216|899217|899218|899219|899220|899221|899222|899223|899224|899225|899226|899227|900462|900463", + "text": "Farber disease" + }, + { + "baseId": "15135|15136|15137|15138|15139|204460|337805|337807|337809|337812|337818|337822|337829|337840|337841|337845|337847|347408|347409|347414|347415|347416|347418|347421|347422|347423|347426|347427|347430|351348|351351|351352|351355|351356|351359|351360|351363|351364|351366|351367|351368|351369|352381|352382|352383|352386|352387|352388|352391|352392|352393|352394|352395|352396|353604|363797|433960|433962|470138|470139|470141|471060|471065|471497|471909|534201|534208|534209|534213|534223|534227|534228|573353|573357|574087|574089|575251|610169|614490|614491|614492|649368|649369|649370|649371|649372|649373|649374|649375|653254|653602|653711|717398|717399|729138|729139|742847|742848|742849|742850|742853|745365|758036|760753|760979|773509|773511|773512|776848|786579|792052|849217|849218|849219|849220|849221|849222|849223|849224|849225|849226|849227|849228|849229|849230|849231|849232|849233|857386|891080|891081|891082|891083|891084|891085|891086|891087|891088|891089|891090|891091|891092|891093|891094|891095|891096|891818|929460|929461|929462|939268|939269|939270|939271|939272|940530|951421|951422|951423|951424|959070", + "text": "Transcolabamin II deficiency" + }, + { + "baseId": "15136", + "text": "TRANSCOBALAMIN II POLYMORPHISM" + }, + { + "baseId": "15140|15141|15142|15143|15144|177344|177528|190306|190311|192268|267424|285916|288922|288935|289346|490280|512895|590511|818214|859158|905054", + "text": "Retinitis pigmentosa 54" + }, + { + "baseId": "15145|21387|32675", + "text": "Bone mineral density quantitative trait locus 15" + }, + { + "baseId": "15146|15147|15148|15149|38740|38741|38743|38744|151770|184108", + "text": "Pheochromocytoma, susceptibility to" + }, + { + "baseId": "15146|15147|15148|15149|17257|17257|17264|17265|17266|17276|19701|21932|21932|21934|21934|21935|21935|21935|21936|21936|21937|21939|21940|21942|21942|21943|21945|21947|21948|21948|21950|21951|21952|21954|21954|21955|21956|21957|27817|27817|27817|27818|27820|27820|27821|27821|27822|27822|27824|27824|27825|27827|27830|27831|28947|28948|28949|28950|28956|28957|28958|28975|28977|28986|28993|28994|33493|36221|36228|36230|36269|36275|36287|36305|38851|38851|45384|45429|45429|45430|45431|48183|50209|50210|50212|50216|50278|50282|50284|50285|52768|53809|53811|53814|53815|53816|53817|53817|54989|101890|101891|101892|132474|132476|132477|132478|132479|132480|132481|132482|132483|132484|132485|132486|132487|136461|136472|138926|138931|138935|138936|138937|138938|139807|139815|139817|139819|139827|139828|139830|139833|139835|139913|150487|151782|151825|152351|152351|152367|152477|152478|152541|152741|165952|165953|171051|171052|171052|171053|171053|171125|171127|171127|172353|172492|172493|175341|175342|181604|181605|181606|181607|181608|181609|181610|181611|181613|181614|181616|181617|181618|181619|181620|181621|181622|181623|181623|181624|181624|181625|181627|181628|182199|182200|182202|182944|182948|182956|182958|183477|183479|183481|186117|186118|194371|196493|196494|207813|207813|212767|212783|212784|212794|215422|217064|217065|217066|217067|217068|217069|217070|217071|217072|217073|221085|221946|232173|232175|232175|232176|232181|232183|232187|234436|234438|234440|234441|238108|238109|238170|238171|238173|238174|238175|238176|238177|238178|238179|238180|238181|238181|238183|238184|238185|238186|238187|238188|238189|238190|238191|238192|238193|238194|239025|239026|239028|239836|240788|240790|240797|240802|240898|241038|241039|241041|241042|241043|241044|241045|241046|241047|241049|241049|241050|241051|241052|241053|241855|241857|248478|249531|259746|264583|271973|275617|275648|275677|275679|275747|275751|275760|275761|275762|275764|275766|275785|275787|275792|275802|275832|275842|275887|275902|275904|275960|276961|276990|277000|277006|277007|277012|277019|277256|277258|277267|277278|277285|277358|277363|277947|277949|277952|277966|277986|278008|278066|278076|278090|278101|278420|278420|287549|287550|287558|287560|287567|287570|287573|287577|287579|287580|287581|287587|287590|287599|287600|287607|287611|287617|287619|288316|288321|288322|288323|288325|288326|288327|288329|288333|288334|288335|288337|288348|288351|288373|288376|288378|288381|291101|291105|291106|291107|291115|291129|291132|291133|291134|291135|291151|291155|291156|291157|291158|291273|291274|291276|291277|291285|291286|291288|291291|291294|291302|291303|291307|291308|291309|291311|291313|291318|291319|291322|297301|299304|299305|303496|310269|310270|310276|310292|310293|310301|310303|310308|310309|310315|310324|310330|310333|310334|310337|314381|314397|315391|315392|315393|315394|315397|315398|315399|315400|315401|315409|315411|315412|315418|315419|318274|318276|318277|318278|320987|320988|320992|320994|320995|320996|321001|321004|321005|321007|321008|321018|321020|321028|321368|321369|321370|321384|321385|321388|321398|321411|321412|321414|321415|321417|321419|321420|321423|322063|322066|322067|322068|322098|322103|322120|322121|322125|322128|322139|322140|322141|322142|322151|322153|322160|322161|322168|324403|324409|325143|325150|325151|327106|327108|327116|330074|330076|330078|330083|330092|330094|330098|330103|330108|330110|330111|330112|330114|336596|336597|336600|336605|336615|336626|336630|338549|338550|338556|338563|338565|338566|338569|338574|338579|338587|338596|353022|353023|353066|353067|353069|353127|353128|358698|358699|358701|358701|358732|358824|358829|360798|371258|384402|390718|390721|390732|390733|390870|390876|390877|390878|390880|390882|390890|390891|390892|390893|390893|390894|390895|390898|390899|390900|390901|390903|390904|390905|390906|390907|390908|390909|390910|390911|390912|390913|390914|390914|390915|390916|390917|390918|390919|390920|390921|390922|390923|390924|390925|390926|390927|390928|390929|390930|390931|390932|390934|390935|390936|390939|390940|397269|397444|397680|397699|398005|398008|398009|398013|398014|398017|398019|398027|398031|398033|398034|398040|398045|398062|398065|398066|398068|398070|398388|398389|398391|398394|398395|398505|398506|398507|400249|404976|404979|404981|406075|408270|408271|420737|420743|420745|420746|420748|420750|420755|420756|425903|432026|432028|432034|432038|432042|432045|432047|432050|432051|432988|442662|442663|442664|442665|446940|447286|447290|447293|447295|447296|447301|447305|447306|447371|447377|447379|447381|447383|447387|447390|447397|447400|447409|447417|447440|447451|447452|447456|447457|447483|447485|447487|447489|447490|447492|447494|447501|447502|447504|447505|447508|447510|447512|447515|447517|447518|447529|447530|451789|451846|451864|459817|460008|460025|460251|460316|460325|460677|460686|460872|460874|460875|460876|460880|460881|460883|460886|460894|461175|461177|461179|461180|461185|461190|461193|461195|461204|461206|461657|461661|461662|461664|461670|461672|461675|461679|461681|463425|472265|472268|472271|472272|472273|472274|472276|472277|472278|472279|472280|472283|472284|472318|472323|472339|475107|475955|475956|475993|475995|476243|476249|476426|476431|476436|476439|514854|514882|515267|515268|515273|515281|515283|515285|515287|515290|515291|515294|515295|515298|515302|515307|515310|515313|515314|515316|515322|515324|515328|515333|515334|515353|515355|515356|515357|515359|515362|515363|515364|515366|515369|515371|515372|515373|515375|525176|525849|525882|525883|525887|525890|525898|525978|526071|526072|526074|526398|526400|526408|526411|539281|551810|556488|556492|556517|556519|556521|556690|556692|556694|556696|556698|556700|556743|556745|556747|556749|556871|557040|557042|557044|557046|557048|557050|557052|557054|557056|557058|558236|558240|558242|558244|558246|558248|558250|558728|564091|564393|564396|564402|564409|564411|564417|564418|564427|564429|565003|565487|565489|565490|565492|565493|565494|565505|565505|566722|567041|567048|567049|569630|569655|569941|570295|570304|575654|609782|627077|627078|627079|627080|627081|627082|627083|627084|627085|627086|627087|627088|627089|627090|627091|627092|627093|627094|627095|627096|627097|627098|627099|627100|627101|627102|627103|627104|627105|627106|627107|627108|627109|627110|627111|627112|627113|627114|627115|627116|627117|627118|627119|627120|639692|639693|639694|639695|639696|639697|639698|639699|639700|639701|639702|639703|639704|639705|639706|639707|639708|639709|639710|639711|639712|639713|650537|650539|650564|650566|650595|650596|650644|650646|650649|650650|652097|652154|652305|652483|657158|682511|684224|690417|690420|690421|731863|745840|745844|758851|761325|761328|761331|761333|768201|768204|790301|791417|806488|806490|806491|806492|806494|806495|806501|810758|810761|810765|818863|818864|818865|818866|818867|818868|818869|818870|820331|820332|820333|820334|820335|820426|822372|822993|822994|822995|822996|822997|822998|822999|823000|823001|823002|823003|823004|823005|823006|823007|823008|823009|823010|823011|836830|837948|837949|837950|837951|837952|837953|837954|837955|837956|837957|837958|837959|837960|850733|850735|850937|851421|852603|858441|865863|865864|865865|865866|865867|865868|865869|865870|865871|865872|865873|865874|865875|865876|865877|865878|865879|865880|865881|865882|867045|868471|868472|868604|872084|872085|872086|872087|872088|872089|872090|872091|872092|872093|872094|872388|885667|885668|885669|885670|885671|885672|885673|885674|885675|885676|885677|885678|885679|885680|885681|885682|885683|885684|885685|885686|885687|885688|885689|885690|885691|885692|885693|885694|921742|921743|921744|921745|921746|921747|921748|921749|921750|921751|921752|921753|921754|921755|921756|926117|926118|926119|926120|926121|926122|926123|926124|930156|930157|930158|930159|930160|930161|930162|930163|930164|930165|930166|930167|930168|935377|935378|935379|935380|935381|940203|940607|940608|940609|941573|941574|941575|941576|941577|941578|941579|941580|947302|947303|947304|947305|947306|952140|952141|952142|952143|952144|952145|952146|956377|956378|956379|959531|959532|959974|960744", + "text": "Pheochromocytoma" + }, + { + "baseId": "15150|15151|15152|15153|15154|490107|513104|513105|615891", + "text": "Arthrogryposis, renal dysfunction, and cholestasis 2" + }, + { + "baseId": "15155", + "text": "Keratosis linearis with ichthyosis congenita and sclerosing keratoderma" + }, + { + "baseId": "15156|15170|15171", + "text": "Homocystinuria, pyridoxine-nonresponsive" + }, + { + "baseId": "15156|15159|15165|15168|15169", + "text": "HYPERHOMOCYSTEINEMIA, THROMBOTIC, CBS-RELATED" + }, + { + "baseId": "15156|15157|15158|15159|15161|15163|15164|15165|15166|15167|15168|15169|15170|15171|98334|98335|98336|98337|140369|140370|140371|140373|140374|140375|140377|140379|140380|187051|187052|187053|187054|187055|187056|187057|187058|187059|187060|187061|187062|187063|191134|191313|191481|191855|194786|195549|196148|204459|209350|210390|210393|210394|210395|210396|210398|210399|210402|210404|210405|210408|210409|210411|210412|210413|210415|210419|210420|210421|210423|210424|210427|210429|210430|210431|210433|210434|210435|210437|210439|210440|210441|210442|210443|210444|210446|210447|210448|210449|210450|210451|210452|210453|210454|222855|231132|237447|243632|243633|243634|243635|243636|243637|257471|259083|259084|259088|259090|259091|259092|259093|259094|259097|259098|259099|259100|259101|259103|259104|265247|336874|336879|336881|336884|336887|346560|346562|346570|346572|346581|346582|346587|346591|350748|350749|350752|350753|350756|350757|350760|350764|351807|358633|358634|358635|358636|358637|358638|358639|358640|358641|358642|358643|358644|358645|358646|358647|358648|377269|377295|378454|378558|379784|379785|403740|403742|403744|403787|403798|403799|404249|404252|404257|404259|404265|404267|404279|404286|404302|404307|404308|410875|410878|415703|433393|469652|470682|470688|471079|471215|471219|471221|471223|471228|471658|471660|471661|471665|471666|471667|471673|480530|488011|488016|488288|491269|492825|507390|507404|507408|507411|507571|508313|508316|510855|510857|510860|510863|512882|533892|533894|533897|533898|533899|533901|533903|533939|533942|533947|533949|534330|534447|549032|549038|549039|549042|549045|549048|549049|549051|549053|549102|549105|549106|549107|549108|549114|549120|549123|549261|549263|549266|549267|549268|549269|549273|549275|549276|549277|549422|549423|549424|549425|549426|549427|551338|571461|571570|571571|571575|573132|573135|573136|573806|573809|573810|573811|573814|575170|575171|575172|575173|620672|620922|621647|649005|649006|649007|649008|649009|649010|649011|649012|649013|649014|649015|649016|649017|649018|649019|653165|653574|653669|653671|656662|684907|684908|684909|689254|689255|689256|689257|690244|694634|694635|694636|695860|728927|742660|742661|773358|778621|801742|821374|821375|848809|848810|848811|848812|848813|848814|848815|848816|848817|848818|848819|848820|852916|886868|886869|886870|886871|886872|886873|886874|886875|886876|886877|886878|886879|886880|886881|886882|887516|929327|929328|929329|929330|929331|939120|939121|939122|939123|941261|941262|951241|951242|958965|958966|966848|972357|972358|972359|972360|972361|980041|980042|980043|980044|980045", + "text": "Classic homocystinuria" + }, + { + "baseId": "15156|15157|15158|15159|15161|15164|15165|15167|15171|29317|98334|187051|187055|187056|187058|187059|187062|196148|199952|210429|210437|210443|210444|336873|336881|346575|346577|350762|358636|358637|358643|358648|471223|488011|488016|621647|621874|800981|848818|906109|917313", + "text": "Homocystinuria" + }, + { + "baseId": "15156|15159|15164|15166|15170|15307|15365|15773|15825|15826|15827|15828|17509|18156|18157|18158|18159|18160|18165|18166|18167|18170|18171|18174|18177|18179|18250|19626|19629|19768|19770|19772|20580|20581|21091|21093|21793|21795|21796|21885|22603|23317|23318|23324|23332|23642|23647|23655|23815|23817|23819|24047|24048|24057|24408|24413|24416|24422|24428|24431|24432|24435|24440|24446|25754|25769|25777|25787|26306|26307|26308|26813|27236|27237|27447|27448|27450|27454|27458|27460|27463|27482|27484|27495|27496|27541|27553|27563|27565|27698|27746|27996|27998|28365|28367|28465|28466|28473|28491|28497|28516|28518|28676|28997|29101|29102|29103|29106|29107|29127|29128|29130|29131|29133|29134|29136|29137|29141|29143|29146|29163|29164|29173|29174|29190|29409|29459|29463|29481|29482|29556|29566|31478|31479|31483|31488|31490|31491|31496|31853|31857|31885|32244|32673|33095|33096|33097|33098|33099|33315|33317|33352|34156|34194|36140|38447|38448|38552|39055|39062|39099|39262|39268|39270|39354|39415|40369|40371|40374|40376|40377|40426|40431|40438|40440|40446|40448|40451|40452|40453|40454|40455|40456|40457|40458|40460|40463|40464|40465|40466|40467|40468|40469|40471|40479|40481|40485|40486|40487|40496|40498|40499|40537|40543|40545|40548|40549|44162|44292|44293|44295|44297|44299|44314|44315|44351|44354|44355|44431|44434|44436|44468|44628|44665|44666|44667|44669|44670|44673|44678|44679|44684|44685|44686|44689|44690|44695|44705|44708|44713|44718|44724|44729|44735|44738|44742|44748|44750|44767|44768|44771|44772|44780|44783|44790|44792|44793|44796|44797|44800|44801|44802|45088|45091|45092|45097|45100|45101|45102|45105|45106|45107|45108|45109|45110|45111|45112|45135|45138|45139|45141|45263|45264|45265|45266|45267|45269|45271|45272|45273|45275|45276|45278|45280|45282|45283|45284|45289|45291|45296|45299|45303|45304|45307|45308|45310|45319|45320|45341|45342|45357|45358|45369|45390|45391|45397|45398|45400|45401|45406|45407|45408|45409|45411|45422|45424|45426|45427|45428|45518|45520|45523|45526|45530|45534|45535|45536|45537|45538|45557|45558|45559|45599|45725|45847|45929|47468|48044|48063|48065|48266|48983|48985|49006|49029|49036|49040|49055|49056|49058|49067|49082|49096|49097|49098|49357|50227|51095|51429|51440|51441|51443|51446|51454|51455|51457|51464|51465|51466|51467|51468|51490|51495|51500|51504|51505|51507|51525|51526|51527|51536|51538|51540|51551|51552|51569|51571|51572|51578|51580|51582|51583|51587|51593|51604|51607|51623|51624|51634|51636|51643|51644|51645|51646|51648|51651|51652|51653|51654|51656|51657|51658|51659|51663|51668|51676|51684|51685|51688|51694|51702|51706|51707|51710|51711|51713|51715|51719|51721|51726|51732|51733|51735|51736|51738|51741|51742|51745|51754|51755|51758|51760|51769|51783|51785|51789|51790|51794|51796|51797|51808|51809|51814|51815|51817|51822|51826|51828|51832|51833|51834|51836|51844|51846|51850|51857|51858|51860|51861|51863|51864|51870|51874|51876|51877|51881|51888|51892|51898|51901|51905|51906|51914|51916|51923|51927|51928|51929|51930|51937|51938|51943|51947|51949|51950|51953|51954|51956|51958|51960|51961|51962|51963|51967|51976|51977|51980|51983|51987|51989|51990|51991|51992|51993|51999|52003|52010|52013|52022|52023|52032|52033|52034|52039|52044|52045|52054|52060|52064|52066|52070|52071|52083|52088|52092|52096|52101|52103|52108|52109|52112|52115|52116|52119|52120|52121|52122|52123|52124|52126|52127|52128|52138|52150|52155|52158|52162|52163|52165|52171|52175|52182|52187|52190|52197|52199|52201|52202|52207|52209|52212|52214|52226|52231|52241|52242|52245|52252|52256|52259|52260|52262|52263|52268|52269|52270|52273|52283|52285|52286|52291|52294|52299|52300|52534|52536|52537|52540|52543|52545|52554|52559|52561|52565|52573|52575|52580|52594|52602|52613|52614|52619|52622|52623|52624|52625|52628|52630|52642|52645|52783|52786|52789|52792|52795|52796|52797|52798|52801|52805|52810|52817|52828|52838|52845|52846|52867|52868|52871|52877|52879|52884|52886|52888|52890|52892|52896|52897|52898|52899|52902|52903|52911|52914|52915|52916|52919|52920|52922|52924|52928|52931|52932|52933|52935|52937|52939|52946|52951|52956|52961|52963|52964|52967|52970|52971|52974|52976|52982|52988|52989|52995|52996|52997|52998|53002|53005|53007|53008|53009|53048|53049|53053|53066|53068|53071|53073|53077|53078|53084|53086|53089|53093|53096|53098|53100|53102|53103|53106|53107|53112|53117|53120|53121|53134|53137|53138|53139|53142|53146|53147|53149|53151|53156|53159|53163|53164|53171|53172|53174|53177|53184|53186|53188|53190|53192|53193|53196|53197|53320|53325|53326|53327|53328|53330|53335|53399|53400|53401|53406|53409|53410|53412|53419|53421|53425|53428|53429|53432|53438|53439|53441|53442|53444|53445|53454|53456|53459|53460|53462|53463|53467|53469|53471|53472|53474|53475|53476|53479|53480|53481|53482|53484|53485|53486|53488|53490|53493|53496|53498|53501|53502|53503|53514|53516|53524|53527|53528|53532|53533|53540|53546|53547|53564|53566|53569|53582|53583|53593|53599|53600|53601|53604|53612|53615|53616|53617|53618|53622|53626|53627|53628|53630|53634|53636|53639|53640|53641|53642|53646|53647|53648|53650|53651|53653|53654|53655|53656|53657|53659|53660|53662|53667|53668|53671|53673|53674|53682|53683|53684|53685|53687|53688|53689|53691|53692|53693|53695|53696|53699|53700|53703|53704|53708|53709|53713|53745|53747|53765|53769|53774|53790|53796|53819|53825|53828|53829|53830|53833|53834|53836|53839|53840|53843|53846|53855|53859|53861|53862|53863|53872|53873|53874|53876|53879|53881|53939|53940|53941|53943|53944|53947|53950|53951|53956|53958|54004|54022|54024|54025|54027|54028|54034|54037|54040|54041|54043|54044|54053|54054|54057|54060|54061|54062|54064|54066|54073|54074|54075|54077|54080|54082|54084|54086|54088|54089|54091|54092|54093|54096|54103|54105|54108|54110|54112|54114|54117|54123|54127|54128|54134|54135|54136|54149|54170|54173|54174|54177|54179|54183|54188|54189|54191|54196|54197|54200|54202|54210|54214|54218|54219|54222|54223|54224|54225|54230|54234|54235|54243|54244|54246|54248|54250|54251|54253|54260|54261|54262|54264|54361|54553|54555|54557|54558|54559|54564|54570|54577|54583|54586|54637|54638|54641|54651|54652|54654|54655|54659|54663|54664|54666|54675|54677|54678|54686|54690|54691|54692|54693|54696|54697|54702|54703|54704|54708|54710|54713|54714|54716|54717|54720|54726|54727|54741|54743|54745|54746|54748|54749|54753|54754|54760|54761|54762|54765|54766|54768|54769|54783|54785|54788|54790|54792|54793|54795|54798|54804|54849|54851|54853|54857|54861|54867|54871|54874|54876|54877|54881|54886|54892|54895|54903|54943|54945|54946|54947|54949|54952|54993|54997|54999|55002|55007|55010|55011|55012|55013|55015|55016|55017|55019|55020|55303|55305|55306|55312|55313|55315|55318|55319|55321|55325|55328|55330|55335|55336|55343|55347|55348|55351|55352|55353|55354|55356|55367|55696|55698|55699|55700|55701|55739|55741|55743|55744|55746|55747|55750|55751|55752|55755|55756|55757|55759|55760|55762|55764|55771|55772|55777|55778|55779|55782|55783|55786|55798|55800|55806|55809|55810|55814|55819|55820|55821|55823|55829|55831|55837|55842|55845|55846|55847|55851|55852|55858|55860|55863|55867|55870|55873|55875|55878|55879|55880|55881|55882|55887|55896|55897|55898|55899|55904|55907|55908|55910|55915|55921|55923|55928|55931|55935|55936|55938|55939|55940|55941|55942|55944|55946|55949|55951|55957|55963|55970|55973|55977|55982|55983|55984|55988|55990|55991|56002|56004|56009|56016|56017|56024|56025|56028|56029|56036|56038|56039|56042|56043|56047|56048|56049|56050|56051|56054|56055|56059|56072|56074|56075|56076|56079|56094|56096|56097|56100|56101|56107|56108|56111|56113|56114|56115|56117|56118|56119|56120|56121|56124|56125|56128|56132|56133|56135|56136|56138|56143|56147|56148|56150|56152|56153|56155|56156|56158|56166|56167|56171|56172|56173|56174|56175|56176|56178|56179|56180|56181|56183|56189|56190|56191|56193|56195|56196|56197|56199|56200|56201|56202|56203|56205|56208|56209|56210|56211|56214|56215|56216|56218|56221|56222|56224|56230|56233|56235|56237|56239|56242|56243|56248|56253|56263|56264|56265|56270|56271|56275|56276|56285|56288|56289|56291|56292|56293|56301|56302|56307|56313|56315|56317|56321|56323|56324|56325|56327|56330|56333|56335|56337|56338|56342|56343|56344|56345|56347|56349|56350|56352|56353|56354|56356|56357|56359|56362|56365|56367|56370|56373|56374|56377|56378|56381|56383|56385|56387|56388|56390|56391|56392|56393|56394|56395|56401|56405|56408|56409|56412|56413|56414|56415|56418|56420|56421|56425|56428|56430|56433|56436|56439|56440|56441|56442|56444|56454|56455|56457|56458|56459|56462|56463|56467|56469|56470|56471|56472|56473|56478|56481|56483|56485|56486|56487|56490|56493|56494|56497|56498|56499|56503|56504|56508|56512|56514|56515|56516|56518|56519|56520|56521|56524|56530|56532|56533|56535|56537|56538|56539|56540|56542|56544|56545|56547|56549|56551|56555|56556|56557|56558|56559|56560|56561|56563|56564|56567|56569|56570|56572|56573|56575|56577|56579|56580|56582|56583|56584|56585|56586|56589|56592|56593|56595|56597|56598|56600|56606|56608|56612|56615|56616|56621|56624|56628|56629|56631|56634|56637|56638|56639|56640|56641|56645|56646|56648|56652|56658|56661|56663|56665|56667|56668|56675|56678|56680|56681|56683|56684|56685|56687|56691|56693|56694|56696|56700|56701|56706|56708|56709|56710|56711|56714|56716|56717|56718|56719|56722|56723|56725|56726|56727|56730|56731|56732|56735|56738|56741|56743|56750|56753|56755|56759|56760|56762|56763|56764|56766|56767|56768|56771|56772|56774|56775|56777|56778|56785|56786|56787|56788|56789|56792|56793|56796|56797|56798|56800|56802|56803|56804|56805|56806|56807|56811|56812|56814|56816|56819|56822|56824|56825|56826|56827|56829|56831|56833|56834|56838|56839|56841|56842|56845|56847|56848|56849|56851|56853|56855|56856|56857|56858|56863|56864|56865|56866|56867|56868|56870|56871|56872|56873|56874|56875|56876|56879|56880|56881|56882|56884|56886|56887|56971|56976|56978|56980|56985|56987|56988|56990|56993|56994|56995|56996|56998|56999|57000|57001|57002|57003|57004|57005|57008|57054|57057|57058|57063|57070|57074|57075|57076|57078|57079|57196|57201|57205|57207|57209|57210|57211|57212|57216|57219|57226|57230|57234|57235|57239|57240|57246|57248|57252|57256|57260|57261|57281|57284|57289|57443|57444|57446|57448|57450|57451|57453|57455|57460|57461|57463|57464|57466|57467|57470|57471|57473|57474|57475|57476|57478|57479|57481|65597|67598|67600|67618|67623|67629|67630|67638|67640|67648|67650|67654|67661|67664|67668|67671|67677|67686|67687|67690|67695|67699|67718|67720|67721|67729|67731|67737|67738|67740|67745|67764|67768|67776|67784|67786|67792|67804|67808|67813|67819|75310|76388|77677|77678|77757|77761|77798|77805|77807|77902|77922|77926|77933|77938|77943|77953|77968|77969|77971|77974|77984|78012|78013|78059|78074|78104|78121|78125|78126|78144|78157|78175|78188|78217|78219|78248|78264|78275|78287|78293|78298|78323|78324|78326|78330|78333|78334|78340|78347|78350|78371|78376|78382|78398|78400|78401|78405|78406|78410|78431|78448|78452|78465|78493|78495|78502|78511|78535|78547|78552|78555|78573|78578|78586|78587|78605|78607|78608|78618|78620|78626|78627|78639|78643|78648|78673|78684|78688|78702|78714|78718|78728|78729|78731|78735|78774|78775|78791|78795|78817|78826|78832|78839|78844|78849|78862|78870|78872|78877|78880|78889|78900|78901|78902|78906|78916|78924|78940|78946|78949|81524|85203|85951|86527|89851|94510|94537|98335|98337|98597|99298|99300|99303|99305|99306|99309|99310|99311|99314|99316|99317|99319|99320|99321|99322|99323|99324|99326|99330|99382|99415|99422|99423|99426|99427|99651|99654|99656|99666|99668|99669|99670|99673|99674|99675|99680|99922|100333|100346|100353|100361|100371|100373|100376|100378|100380|100382|100387|100394|100403|100410|100416|100439|100448|100487|100503|100504|100508|100513|100515|100516|100518|100532|100542|100548|100556|100557|100575|100579|100587|100603|100641|100642|100656|100657|100665|100676|100684|100697|100705|100709|100716|100756|100761|101147|101153|101154|101155|101183|101184|101185|101850|102169|102172|102182|102185|102190|102192|102195|102197|102201|102203|102206|102207|102208|102211|102212|102214|102215|102223|106919|106954|107015|107042|107097|107134|107174|107194|107198|107216|107218|131959|134480|134481|134482|134484|134485|134486|134487|134488|134490|134492|134493|134494|134495|134496|134497|134498|134499|134500|134505|134506|134509|134511|134513|134515|134516|134517|134518|134519|134521|134522|134523|134566|134760|135035|135036|135039|135657|136116|136125|136127|136129|136135|136399|136408|136409|136418|136421|136424|136425|136427|136430|136441|136493|138649|138650|138651|138653|138658|138660|138662|138665|138666|138668|138669|138670|138671|138673|138674|138676|138678|138679|138681|138683|138685|138687|138688|138693|138695|138696|138698|138983|139987|139989|140033|140035|140036|140039|140040|140041|140042|140043|140044|140045|140046|140047|140048|140049|140050|140051|140052|140053|140084|140086|140087|140090|140093|140100|140101|140196|140198|140316|140318|140326|140331|140333|140335|140336|140338|140339|140344|140345|140349|140350|140351|140352|140360|140362|140370|140371|140380|140546|140547|140548|140551|140552|140556|140557|140559|140560|140562|140563|140570|140572|140574|140578|140579|140583|140585|140586|140590|140592|140593|140595|140598|140601|140602|140603|140604|140605|140609|140614|140615|140617|140618|140620|140621|140622|140623|140625|140629|140630|140633|140634|140635|140637|140638|140640|140642|140643|140644|140647|140649|140651|140652|140655|140656|140657|140658|140660|140661|140662|140664|140665|140666|140738|140780|140861|140867|140869|140871|140874|140875|140876|141002|141008|141014|141016|141017|141019|141020|141022|141023|141025|141027|141028|141033|141036|141038|141039|141043|141044|141047|141052|141053|141056|141057|141059|141060|141061|141062|141089|141150|141151|141194|141240|141241|141242|141244|141245|141246|141291|141293|141294|141298|141305|141308|141309|141310|141312|141313|141314|141315|141338|141339|141340|141490|141501|141502|141509|141510|141516|141520|141524|141534|141537|141545|141549|141604|141605|141663|141664|141686|141690|141691|141693|141694|141695|141696|141700|141701|141704|141708|141710|141712|141713|141714|141715|141770|141771|141803|141804|141806|142022|142030|142031|142032|142033|142035|142036|142037|142038|142040|142041|142044|142045|142046|142047|142048|142049|142051|142052|142053|142054|142056|142057|142059|142060|142061|142062|142063|142065|142066|142067|142068|142069|142071|142072|142073|142075|142076|142091|142093|142094|142095|142098|142102|142118|142121|142126|142127|142212|142214|142228|142371|142374|142375|142378|142381|142397|142546|142603|142604|142638|142639|142640|142642|142645|142646|142648|142649|142652|142654|142655|142695|142696|142698|142736|142739|142740|142746|142747|142749|142751|142754|142755|142756|142757|142761|142764|142766|142769|142770|142814|142815|142816|142817|142818|142819|142820|142872|142873|142874|142875|142876|142877|142879|142880|142884|142885|142886|142915|142916|142920|142925|142927|151781|152781|165525|165529|165540|165548|165560|165566|165569|165571|165576|165579|165589|165960|167406|168106|169194|170939|170942|170944|171050|171059|171072|171073|171075|171083|171102|171108|171117|171118|171119|171120|171122|171123|171133|171139|171141|171143|171145|171147|171162|171176|171178|171181|171184|171190|171194|171245|171246|171281|171781|172238|172333|172346|172392|172394|172397|172403|172407|172410|172416|172425|172429|172433|172435|172436|172457|172473|172475|172489|172499|172503|172540|172547|172549|172564|172565|172568|172599|172609|172610|172615|172621|172622|172631|172642|172647|172657|172665|172671|172679|172683|172697|172698|172709|172710|172738|172786|172800|172820|172829|172834|172850|172852|172863|172868|172879|172955|172958|172962|172963|172967|172973|172977|172981|172982|172994|172998|172999|173002|173008|173009|173015|173022|173031|173035|173036|173043|173044|173045|173046|173049|173054|173068|173069|173074|173081|173089|173092|173093|173102|173107|173118|173136|173144|173147|173157|173158|173159|173163|173166|173167|173169|173193|173218|173225|173235|173252|173258|173264|173267|173270|173311|173316|173344|173364|173383|173396|173403|173409|173443|173446|173453|173456|173462|173483|173492|173586|173591|173597|173599|173612|173727|173730|173752|173755|173757|173777|173779|173790|173792|173799|173800|173801|173802|173806|173850|173855|173864|173893|173894|173895|173917|173926|173931|173932|173943|173990|173996|173997|174000|174005|174048|174049|174134|174137|174142|174144|174186|174258|174347|174384|174532|174577|174590|174592|174598|174604|174615|174620|174724|174735|174737|174738|174750|174751|174756|174773|174775|174776|174786|174799|174853|174855|174878|174880|174886|174887|174890|174893|174896|174918|174919|175019|175032|175042|175138|175139|175150|175157|175164|175175|175177|175179|175180|175183|175184|175185|175199|175201|175212|175290|175291|175314|175315|175330|175395|175405|175412|175413|175415|175416|175419|175426|175429|175430|175433|175436|175437|175442|175451|175470|175477|175480|175481|175484|175497|175499|175503|175557|175565|175573|175575|175581|175582|175587|175594|175598|175600|175611|175619|175624|175630|175631|175647|175699|175700|175705|175726|175753|175756|175838|175861|175864|175867|175869|175870|175893|175894|175898|175955|175979|175991|175994|176123|176126|176137|176235|176358|176490|176516|176517|176519|176531|176532|176536|176658|176673|176678|176679|176681|176806|176810|176829|176848|176849|177047|177075|177206|177439|177533|177536|177599|177601|177707|177764|177765|177766|177829|177830|177831|178037|178112|178203|178210|178212|178213|178216|178217|178218|178223|178225|178228|178229|178256|178295|178436|178441|178456|178457|178461|178495|178507|178522|178523|178526|178533|178534|178536|178552|178556|178559|178574|178575|178582|178587|178589|178594|178596|178608|178613|178626|178634|178673|178675|178699|178700|178709|178710|178711|178712|178715|178726|178737|178748|178753|178754|178764|178863|178881|178913|178923|178930|178944|179043|179045|179046|179088|179117|179124|179169|179171|179185|179229|179230|179255|179256|179268|179279|179280|179289|179307|179310|179351|179365|179369|179373|179436|179464|179499|179500|179525|179535|179545|179563|179571|179597|179598|179616|179636|179640|179645|179658|179665|179678|179681|179712|179717|179728|179746|179749|179802|179816|179856|179882|179904|179906|181036|185443|185452|186018|186087|186151|186280|186340|186355|186396|186427|186430|186468|186481|186494|186522|186574|187213|187396|188021|188023|188306|188307|188323|188325|188326|188327|188328|188333|188336|188339|188347|188359|188360|188372|188373|188375|188385|188388|188392|188394|188395|188405|188407|188410|188412|188416|188428|188434|188435|188439|188440|188441|188442|188449|188458|188463|188464|188478|188483|188484|188485|188486|188492|188497|188498|188500|188501|188504|188506|188507|188539|188551|188552|188557|188559|188577|188581|188609|188614|188616|188625|188626|188628|188629|188633|188635|188636|188640|188641|188666|188676|188684|188707|188712|188722|188734|188745|188746|188753|188755|188894|189200|189203|189207|189221|189222|189229|189235|189238|189240|189244|189247|189248|189249|189250|189251|189257|189264|189266|189267|189268|189272|189273|189276|189277|189278|189279|189285|189286|189287|189288|189291|189293|189295|189297|189299|189300|189302|189304|189305|189307|189319|189338|189341|189342|189343|189344|189358|189373|189377|189383|189393|189396|189409|189416|189435|189444|189445|189451|189464|189466|189467|189478|189496|189523|189539|189540|189541|189548|189553|189554|189585|189586|189591|189611|189614|189620|189655|189698|189702|189705|189733|189736|189745|189761|189768|189815|189816|189827|189834|189844|189847|189849|189852|189855|189858|189860|189861|189862|189863|189869|189870|189871|189882|189885|189893|189910|189921|189932|189933|189957|189962|189965|189968|189972|189979|189980|189983|189986|189989|190006|190007|190050|190051|190107|190385|190412|190413|190452|190914|190915|191008|191190|191200|191320|191359|191451|191890|191955|192031|192064|192065|192066|192072|192176|192196|192544|192551|192628|192654|192655|192712|192760|192900|192913|192915|192957|193001|193004|193006|193008|193082|193086|193093|193217|193221|193232|193241|193272|193303|193304|193315|193317|193356|193357|193408|193540|193566|193589|193889|193962|194052|194075|194223|194229|194230|194471|194483|194517|194565|194638|194641|194647|194660|194666|194679|194683|194703|194721|194769|194793|194849|194889|194931|195071|195080|195138|195142|195153|195202|195434|195629|195637|195694|195767|195796|195854|195980|195981|195986|195987|196151|196219|196238|196270|196400|196450|196467|196476|196485|196503|196504|196514|196521|196538|196541|196546|196555|196566|196567|196580|196581|196592|196595|196600|196605|196635|196638|196640|196646|196658|196672|196673|196711|196721|196740|196760|196763|196770|196776|196782|196783|196786|196789|196790|196791|196792|196799|196804|196805|196806|196812|196816|196817|196834|196839|196840|196843|196846|196862|196888|196889|196891|196944|196963|196964|196967|196976|197003|197006|197020|197037|197039|197053|197057|197065|197069|197073|197086|197087|197100|197110|197116|197146|197159|197164|197175|197201|197219|197228|197235|197259|197263|197272|197273|197278|197282|197289|197299|197324|197327|197332|197371|197393|197398|197402|197450|197471|197484|197485|197488|197580|197585|197588|197590|197601|197615|197619|197622|197636|197644|197649|197650|197655|197657|197661|197672|197677|197685|197688|197703|197717|197735|197742|197743|197746|197755|197789|197803|197808|197811|197822|197823|197832|197833|197841|197842|197845|197846|197847|197849|197852|197865|197868|197869|197870|197876|197877|197879|197880|197882|197883|197884|197886|197887|197890|197893|197894|197896|197899|197902|197907|197914|197917|197922|197925|197926|197929|197941|197957|197962|197974|197998|198007|198042|198048|198054|198058|198063|198078|198082|198090|198092|198098|198099|198111|198112|198135|198143|198154|198157|198164|198169|198177|198187|198197|198199|198224|198225|198236|198262|198272|198286|198315|198318|198320|198331|198346|198351|198365|198377|198387|198395|198402|198415|198417|198418|198436|198441|198452|198459|198463|198467|198468|198473|198478|198493|198526|198529|198532|198533|198534|198535|198538|198564|198568|198577|198591|198594|198695|198701|198731|198737|198744|198745|198747|198753|198754|198773|198789|198793|198797|198809|198818|198834|198835|198838|198841|198842|198853|198856|198895|198943|198952|198969|198987|198998|199041|199043|199086|199087|199115|199117|199118|199122|199130|199132|199145|199148|199174|199175|199189|199201|199222|199230|199234|199249|199285|199304|199306|199308|199310|199320|199322|199332|199373|199380|199555|199557|199582|199613|199743|199749|199750|199774|199890|204196|204202|206601|207155|207157|207158|207159|207161|207163|207174|207727|208969|208978|209154|209160|209161|209425|209426|209429|209430|209431|209432|209434|209440|209444|209446|209448|209449|209453|209456|209458|209463|209465|209470|209472|209473|209474|209480|209481|209482|209484|209485|209486|209493|209494|209495|209499|209500|209501|209502|209518|209522|209533|209534|209538|209541|209556|209560|209562|209565|209569|209578|209580|209581|209606|209646|209648|209653|209654|209655|209656|209657|209661|209670|209673|209687|209689|209690|209693|209695|209697|209698|209705|209710|209713|209717|209724|209729|209731|209732|209734|209741|209746|209756|209759|209778|209781|209785|209795|209805|209806|209807|209808|209809|209813|209818|209822|209826|209828|209830|209841|209844|209849|209850|209851|209856|209857|209865|209869|209870|209878|209879|209884|209904|209962|209966|209970|209971|209972|209973|209974|209978|209979|209985|209986|209987|209989|209991|209993|209994|209995|209996|209998|210000|210003|210006|210011|210014|210018|210023|210028|210032|210035|210036|210041|210044|210052|210053|210055|210064|210069|210076|210083|210088|210089|210093|210094|210096|210100|210115|210121|210122|210125|210131|210136|210137|210138|210156|210157|210158|210162|210166|210172|210182|210214|210215|210216|210245|210259|210278|210293|210309|210310|210334|210352|210362|210365|210369|210379|210383|210386|210388|210389|210393|210394|210395|210396|210404|210412|210415|210418|210423|210430|210431|210441|210442|210444|210447|210450|210460|210462|210465|210471|210472|210477|210478|210482|210484|210504|210506|210507|210516|210521|210523|210531|210533|210540|210548|210551|210555|210566|210578|212344|212347|212567|212569|212616|212621|212622|212997|212999|213468|213544|213550|214116|215017|215346|215355|215553|221089|221120|221124|221361|221429|221430|221431|221432|221668|221671|221672|221675|221743|221746|221747|221750|221807|221808|221810|221811|221813|221814|221815|221980|221986|222136|222246|222247|222248|222416|222432|222447|222449|222750|222802|222811|222812|222813|222814|222853|222854|222883|223625|224055|224123|224176|224203|224216|224240|224252|224260|224294|224296|224310|224318|224322|224358|224370|224399|224439|224447|224451|224466|224515|224528|224554|224575|224989|225027|225057|225060|226989|227370|227843|228262|228402|228514|228558|228584|228609|228660|228739|228740|228771|228847|228875|228892|228924|228983|228984|228986|228987|228988|228989|228992|228995|228997|228998|228999|229002|229003|229004|229005|229006|229007|229015|229050|229051|229053|229056|229059|229061|229096|229156|229388|229389|229390|229391|229395|229398|229399|229400|229401|229402|229404|229405|229406|229407|229408|229411|229412|229413|229414|229415|229416|229419|229425|229491|229494|229496|229511|229733|229762|229826|229828|229830|229834|229839|229946|229953|230297|230320|230432|230458|230459|230463|230466|230471|230479|230480|230481|230505|230806|230807|230808|230809|230812|230815|230818|230820|230821|230838|230839|230843|230846|230847|230849|230851|230855|230856|230859|230862|230870|230872|230874|230876|230878|230880|230883|230884|230886|230887|230888|230890|230891|230898|230899|230902|230903|230905|231101|231116|231264|231273|231274|231310|231348|231352|231353|231359|231412|236529|236741|236752|236756|236758|236763|236764|236765|236770|236772|236774|236778|236779|236785|236790|236792|236793|236794|236795|236797|236800|236803|236814|236815|236817|236822|237396|238121|238222|238223|238224|238235|238404|238430|238441|238443|238472|238481|238489|238555|238560|238580|238582|238585|239079|239080|239084|239085|239093|239111|239112|239139|239196|239213|239294|239301|239302|239306|239309|239310|239312|239317|239318|239320|239322|239325|239327|239329|239648|239656|239657|239661|239884|239997|239999|240002|240011|240181|240182|240188|240190|240193|240203|240222|240223|240224|240225|240227|240228|240514|240518|240521|240533|240535|240536|240539|240540|240541|240543|240544|240546|240547|240553|240554|240555|240556|240559|240560|240561|240563|240564|240566|240567|240573|240574|240575|240577|240578|240579|240582|240584|240585|240586|240743|240750|240751|240754|240755|240757|240817|240818|240819|240835|240837|240843|241068|241093|241094|241146|241530|241538|241541|241542|241543|241796|241797|241802|241808|241809|241816|241817|241820|241889|241890|241891|241892|241893|241897|242063|242065|242066|242071|242072|242081|242082|242105|242107|242114|242116|242203|242748|242752|243041|243062|243375|243377|243379|243382|243551|243578|243583|243601|243633|243637|243643|243644|243645|243647|243648|243775|243791|243801|243821|245166|245257|245265|245271|245281|246930|246933|247104|247367|249371|249372|249373|249375|249376|250460|250467|250872|250873|250875|250878|250881|250882|250885|250888|251091|251312|251313|251314|251315|251642|251645|251845|252648|252942|252943|253424|253455|253659|253717|254022|254321|254420|254914|255335|255477|257324|257785|257906|257907|257908|257909|257910|257911|257912|257913|257914|257915|257916|257917|257918|257919|257920|257921|257922|257923|257924|257925|257926|257927|257928|257929|257930|257931|257932|257933|257934|257935|257936|257937|257938|257939|257940|257941|257942|257943|257944|257945|257946|257947|257948|257949|257950|257951|257952|257953|257954|257955|257956|257957|257958|257959|257960|257961|257962|257963|257964|257965|257966|257967|257968|257969|257970|257971|257972|257973|257974|257975|257976|257977|257978|257979|257980|257981|257982|257983|257984|257985|257986|257987|257988|257989|257990|257991|257992|257993|257994|257995|257996|257997|257998|257999|258000|258001|258002|258003|258004|258005|258006|258007|258008|258009|258010|258011|258012|258013|258014|258015|258016|258017|258018|258019|258020|258021|258022|258023|258024|258025|258026|258027|258028|258029|258030|258031|258032|258033|258034|258035|258036|258037|258038|258039|258040|258041|258042|258043|258044|258045|258046|258047|258048|258049|258050|258051|258052|258053|258054|258055|258056|258057|258058|258059|258060|258061|258062|258063|258064|258065|258066|258067|258068|258069|258070|258071|258072|258073|258074|258075|258076|258077|258078|258079|258080|258081|258082|258083|258084|258085|258086|258087|258088|258089|258090|258091|258092|258093|258094|258095|258096|258097|258098|258099|258100|258101|258102|258103|258104|258105|258106|258107|258108|258109|258110|258111|258112|258113|258114|258115|258116|258117|258118|258119|258120|258121|258122|258123|258124|258125|258126|258127|258128|258129|258130|258131|258133|258134|258135|258136|258137|258138|258139|258140|258141|258142|258143|258144|258145|258146|258147|258148|258149|258150|258151|258152|258153|258154|258155|258156|258157|258158|258159|258160|258161|258162|258163|258164|258165|258166|258167|258168|258169|258170|258171|258172|258173|258174|258175|258176|258177|258178|258179|258180|258181|258182|258183|258184|258185|258186|258187|258188|258189|258190|258191|258192|258193|258194|258195|258196|258197|258198|258199|258200|258201|258202|258203|258204|258205|258206|258207|258208|258209|258210|258211|258212|258213|258214|258215|258216|258217|258218|258219|258220|258221|258222|258223|258224|258225|258226|258227|258228|258229|258230|258231|258232|258233|258234|258235|258236|258237|258238|258239|258240|258241|258242|258243|258244|258245|258246|258247|258248|258249|258250|258251|258252|258253|258254|258255|258256|258257|258258|258259|258260|258261|258262|258263|258264|258265|258266|258267|258268|258269|258270|258271|258272|258273|258274|258275|258276|258277|258278|258279|258280|258281|258282|258283|258284|258285|258287|258288|258289|258290|258291|258292|258294|258295|258296|258297|258298|258300|258301|258302|258304|258305|258306|258307|258308|258309|258310|258311|258312|258313|258314|258315|258316|258317|258318|258319|258320|258321|258322|258323|258324|258325|258326|258327|258328|258329|258330|258331|258332|258333|258334|258335|258336|258337|258338|258339|258340|258341|258342|258343|258344|258345|258346|258347|258348|258349|258350|258351|258352|258353|258354|258355|258356|258357|258358|258359|258360|258361|258362|258363|258364|258365|258366|258367|258368|258369|258370|258371|258372|258373|258374|258375|258376|258377|258378|258379|258380|258381|258382|258383|258384|258385|258386|258387|258388|258389|258390|258391|258392|258393|258394|258395|258396|258397|258398|258399|258400|258401|258402|258403|258404|258405|258406|258407|258408|258409|258410|258412|258413|258414|258415|258416|258417|258418|258419|258420|258421|258422|258423|258424|258425|258426|258427|258428|258429|258430|258431|258432|258433|258434|258435|258436|258437|258438|258439|258440|258441|258442|258443|258444|258445|258446|258447|258448|258449|258450|258451|258452|258453|258454|258455|258456|258457|258458|258459|258460|258461|258462|258463|258464|258465|258466|258467|258468|258469|258470|258471|258472|258473|258474|258475|258476|258477|258478|258479|258480|258482|258483|258484|258485|258486|258487|258488|258489|258490|258491|258492|258494|258495|258496|258497|258498|258499|258500|258501|258502|258503|258504|258505|258506|258507|258508|258509|258510|258511|258512|258513|258514|258515|258516|258517|258518|258519|258520|258521|258522|258523|258524|258525|258526|258527|258528|258529|258530|258531|258532|258533|258534|258535|258536|258537|258538|258539|258540|258541|258542|258543|258544|258545|258546|258547|258548|258549|258550|258551|258552|258553|258554|258555|258556|258557|258558|258559|258560|258561|258562|258563|258564|258565|258566|258567|258568|258569|258570|258571|258572|258573|258574|258575|258576|258577|258578|258579|258580|258581|258582|258583|258584|258585|258586|258587|258588|258589|258590|258591|258592|258593|258594|258595|258596|258597|258598|258599|258600|258601|258602|258603|258604|258605|258606|258608|258609|258610|258611|258612|258613|258614|258615|258616|258617|258618|258619|258620|258621|258622|258623|258624|258625|258626|258627|258628|258629|258630|258631|258632|258633|258634|258635|258636|258637|258638|258639|258640|258641|258642|258643|258644|258645|258646|258647|258648|258649|258650|258651|258652|258653|258654|258655|258656|258657|258658|258659|258660|258661|258662|258663|258664|258665|258666|258667|258668|258669|258670|258671|258672|258673|258674|258676|258677|258678|258679|258680|258681|258682|258683|258684|258685|258686|258689|258690|258691|258692|258693|258694|258695|258696|258697|258698|258699|258700|258701|258702|258703|258704|258705|258706|258707|258708|258709|258710|258711|258712|258713|258714|258715|258716|258717|258718|258719|258720|258721|258722|258723|258724|258725|258726|258727|258728|258729|258730|258731|258732|258733|258734|258735|258736|258737|258738|258739|258740|258741|258742|258743|258744|258745|258746|258747|258748|258749|258750|258751|258752|258753|258754|258755|258756|258757|258758|258759|258760|258761|258762|258763|258764|258765|258766|258767|258768|258769|258770|258771|258772|258773|258774|258775|258776|258777|258778|258779|258780|258781|258782|258783|258784|258785|258786|258787|258788|258789|258790|258791|258792|258793|258794|258795|258796|258797|258798|258799|258800|258801|258802|258803|258804|258805|258806|258807|258808|258809|258810|258811|258812|258813|258814|258815|258816|258817|258818|258819|258820|258821|258822|258823|258824|258825|258826|258827|258828|258829|258830|258831|258832|258833|258834|258835|258836|258837|258838|258839|258840|258841|258842|258843|258844|258845|258846|258847|258848|258849|258850|258851|258852|258853|258854|258855|258856|258857|258858|258859|258860|258861|258862|258863|258864|258865|258866|258867|258868|258869|258870|258871|258872|258873|258874|258875|258876|258877|258878|258879|258880|258881|258882|258883|258884|258885|258886|258887|258888|258889|258890|258891|258892|258893|258894|258895|258896|258897|258898|258899|258900|258901|258902|258903|258904|258905|258906|258907|258908|258909|258910|258911|258912|258913|258914|258915|258916|258917|258918|258919|258920|258921|258922|258923|258924|258925|258926|258927|258928|258929|258930|258931|258932|258933|258934|258935|258936|258937|258938|258940|258941|258942|258943|258944|258945|258946|258947|258948|258949|258950|258951|258952|258953|258954|258955|258956|258957|258958|258959|258960|258961|258962|258963|258964|258965|258966|258967|258968|258969|258970|258971|258972|258973|258974|258975|258976|258977|258978|258979|258980|258981|258982|258983|258984|258985|258986|258987|258988|258989|258990|258991|258992|258993|258994|258995|258996|258997|258998|258999|259000|259001|259002|259003|259004|259005|259006|259007|259008|259009|259010|259011|259012|259013|259014|259015|259016|259017|259018|259019|259020|259021|259022|259023|259024|259025|259026|259027|259028|259029|259030|259031|259032|259033|259034|259035|259036|259037|259038|259039|259040|259041|259042|259043|259044|259045|259046|259047|259048|259049|259050|259051|259052|259053|259054|259055|259056|259057|259058|259059|259060|259061|259062|259063|259064|259065|259066|259067|259068|259069|259070|259071|259072|259073|259074|259075|259076|259077|259078|259079|259080|259081|259082|259083|259084|259085|259086|259087|259088|259089|259090|259091|259092|259093|259094|259095|259096|259097|259098|259099|259100|259101|259102|259103|259104|259105|259106|259107|259108|259109|259110|259111|259112|259113|259114|259115|259116|259117|259118|259119|259120|259121|259122|259123|259124|259125|259126|259127|259128|259129|259130|259131|259132|259133|259134|259135|259136|259137|259138|259139|259140|259141|259142|259143|259144|259145|259146|259147|259148|259149|259150|259151|259152|259153|259154|259155|259156|259157|259158|259159|259160|259161|259162|259163|259164|259165|259166|259167|259168|259169|259170|259171|259172|259173|259174|259175|259176|259177|259178|259179|259180|259181|259182|259183|259184|259185|259186|259187|259188|259189|259190|259191|259192|259193|259194|259195|259196|259197|259198|259199|259200|259203|259205|259206|259207|259208|259212|259215|259848|259979|260073|264131|265345|265919|266075|266232|266724|267010|267393|267543|267725|267729|268031|268042|268111|268223|268668|268690|268703|268990|269184|269796|270042|270378|270379|270849|270946|271146|271300|271829|271856|271889|272181|272253|273101|273318|273957|274161|274199|274369|274953|274954|276156|276162|276284|276431|276836|279964|280289|280328|281358|281557|281591|281604|281622|283232|283303|283430|283481|283504|283930|286241|286317|286480|286579|288349|288366|288371|288372|288402|289701|289959|291088|292113|292143|292159|292241|292884|294400|296827|296833|297051|299107|300743|300748|302179|302804|303500|303547|304013|304029|306933|306939|307475|308732|309976|311015|311576|311704|311711|311738|311836|311852|311859|311865|315013|316757|317318|317667|317695|320215|320333|320340|320362|320376|320650|322781|323054|323336|324243|324412|324557|328957|329557|329624|331163|331596|331689|333927|334004|334052|334064|334074|334804|334808|335279|335633|337312|339297|339739|340728|340740|340743|342129|344000|344001|344693|348136|349256|350218|350222|350671|350911|351083|351644|359196|359326|359445|359707|359740|359896|359981|360107|360403|361874|361875|362738|362742|363772|364058|364317|364334|364337|364365|364414|364600|364674|364755|364907|364924|365002|365088|365411|365917|365940|365943|365969|366013|366059|366214|366219|366226|366253|366312|366895|367163|367452|367476|367497|367522|367538|367615|367783|367784|367809|367811|367820|367888|367911|368174|368522|368524|368546|368749|368923|369023|369053|369536|369592|369657|369770|370022|370210|370271|370282|370525|370548|370590|370638|370735|370775|370782|370812|370816|370822|370828|370909|370997|371031|371076|371090|371111|371114|371150|371184|371190|371303|371377|371391|371575|371600|371616|371639|371733|372141|372232|372261|372456|372460|372488|372549|372772|372917|372943|372972|372974|372990|373124|373240|373248|373398|373504|373550|373653|373671|373683|373940|373948|373971|373983|374044|374122|374124|374182|374278|374363|374650|374961|374970|374980|375028|375050|375074|375874|376000|376002|376015|376206|376215|376217|376492|376592|376617|376618|376660|376980|377021|377039|377045|377081|377083|377295|377388|377391|377819|377837|377844|377927|377928|378049|378166|378182|378235|378238|378246|378257|378479|378558|378595|378618|378962|378971|378979|379072|379082|379168|379192|379237|379377|379690|379691|379704|379784|379814|379820|379987|380112|389561|390072|390169|390322|390545|390738|390767|390778|390779|390989|391029|391063|391086|391094|391126|391150|391183|391186|391526|391536|391541|391634|391668|391687|391708|391721|391811|391874|391899|391951|391966|392067|392384|392399|392422|392427|392444|392457|392708|393266|393320|393325|393353|393479|393530|393753|393778|393814|393819|393829|393838|393869|393876|393877|393953|393979|394046|394074|394224|394247|394274|394791|395083|395105|395137|395231|395369|395374|395375|395408|395482|395497|395571|395667|395668|395680|395706|395798|395807|395870|395872|395892|396047|396099|396100|396164|396192|396197|396273|396470|396483|396755|396774|396794|396823|396842|396848|396989|397000|397027|397046|397068|397080|397124|397129|397133|397142|397187|397192|397206|397316|397325|397338|397339|397386|397496|397499|397555|397602|397618|397917|398256|398278|398307|398638|398656|398911|398937|398960|399069|399097|399375|399594|399605|399725|399784|399862|399950|400229|400308|400332|400336|400342|400344|400375|400459|400492|400541|400547|400548|400731|401033|401035|401103|401128|401131|401179|401181|401198|401205|401928|402004|402720|402725|402731|402735|402753|402755|403247|403253|403342|403360|403635|403652|403688|403694|403740|403742|403761|403787|403799|403815|403833|403837|404150|404153|404178|404286|404320|404488|404586|404593|404774|404786|404802|405013|405048|405437|405515|405522|406791|406800|407591|407595|407622|407624|407815|408275|408324|408376|409095|409299|409327|410338|414937|414959|415020|415404|415425|415559|415681|419261|421225|421229|421324|421347|421417|421732|421979|422320|425304|425343|425590|425617|425703|425971|426065|426147|426268|426337|430725|430726|430907|433145|433439|433443|433557|433564|433576|433734|433837|433839|433841|434565|437982|438415|440614|441337|442400|442763|443100|443101|443114|443549|443668|443676|443866|444001|444435|444610|444613|444780|444968|444983|445252|445350|445376|445379|445410|445497|445771|446256|446358|446359|447022|447028|447033|447037|447118|447125|447133|447146|447157|447205|447224|447254|447317|447532|447788|447796|447843|447895|447908|447977|447996|448242|448379|449077|449129|449137|449282|449284|449348|449390|449440|449509|449534|449566|449688|449708|449803|449935|449988|450095|450106|450138|450148|450226|450312|451772|452028|452109|452128|452147|452218|452230|452246|452253|452306|452424|452468|452587|452868|452870|453236|453255|453326|453334|453693|454414|454836|455037|455101|455433|455996|456014|456034|456055|456463|456478|456494|456504|456787|456801|456805|456831|457038|457052|457080|457545|457748|457989|458774|458782|458924|458926|458928|458957|458972|458995|459166|459184|459263|459300|459307|459322|459337|459351|459364|459368|459374|459409|459651|459687|459744|459751|459778|459780|459786|459787|459815|459892|459922|459930|460068|460202|460216|460356|460512|460545|460559|460929|461422|461639|461851|462012|462017|462107|462112|462135|462399|462417|462816|462831|462880|462881|462936|462982|463141|463583|463618|463629|463895|463921|464102|464114|464127|464128|464173|464353|464397|464413|464422|464524|464927|465158|465220|465299|465385|465777|465948|467926|468008|468042|468046|468069|468306|469008|469310|469638|470341|470381|470900|470967|471071|471081|471340|471358|471363|471387|471395|471508|471540|471836|472100|481616|485242|485756|485762|486035|486121|486857|486862|486908|486917|487300|487340|487491|487554|487573|487790|487865|487993|487995|488016|488044|488758|489677|490092|490318|490889|491346|491402|491474|492618|492911|493346|496161|496342|496619|496730|496752|497340|497529|497572|497866|497975|498007|498024|498387|498938|499047|499306|499322|499379|499458|499666|499671|499741|499783|499836|499850|500440|500475|500695|500696|500699|500869|500877|501073|501120|501145|501349|501448|501800|501827|502080|502164|502314|502323|502437|502509|502700|502782|502801|502813|502818|502892|502926|502941|502958|503045|503159|503267|503353|503561|503632|503755|503771|504789|504790|504832|504980|505015|505061|505651|506038|506068|506099|506101|507284|507366|507476|507490|507514|507907|507945|508010|508014|508046|508070|508181|508219|508314|508364|508389|508572|508665|508823|508825|508903|509061|509062|509063|509064|509065|509066|509067|509068|509069|509070|509071|509072|509073|509074|509075|509076|509077|509078|509079|509080|509081|509082|509083|509084|509085|509086|509087|509088|509089|509090|509091|509092|509093|509094|509095|509096|509097|509098|509099|509100|509101|509102|509103|509104|509105|509106|509107|509108|509109|509110|509111|509112|509113|509114|509115|509116|509117|509118|509119|509120|509121|509122|509123|509124|509125|509126|509127|509128|509129|509130|509131|509132|509133|509134|509135|509136|509137|509138|509139|509140|509141|509142|509143|509144|509145|509146|509147|509148|509149|509150|509151|509152|509153|509154|509155|509156|509157|509158|509159|509160|509161|509162|509163|509164|509165|509166|509167|509168|509169|509170|509171|509172|509173|509174|509175|509176|509177|509178|509179|509180|509181|509182|509183|509184|509185|509186|509187|509188|509189|509190|509191|509192|509193|509194|509195|509196|509197|509198|509199|509200|509201|509202|509203|509204|509205|509206|509207|509208|509209|509210|509211|509212|509213|509214|509215|509216|509217|509218|509219|509220|509221|509222|509223|509224|509225|509226|509227|509228|509229|509230|509231|509232|509233|509234|509235|509236|509237|509238|509239|509240|509241|509242|509243|509244|509245|509246|509247|509248|509249|509250|509251|509252|509253|509254|509255|509256|509257|509258|509259|509260|509261|509262|509263|509264|509265|509266|509267|509268|509269|509270|509271|509272|509273|509274|509275|509276|509277|509278|509279|509280|509281|509282|509283|509284|509285|509286|509287|509288|509289|509290|509291|509292|509293|509294|509295|509296|509297|509298|509299|509300|509301|509302|509303|509304|509305|509306|509307|509308|509309|509310|509311|509312|509313|509314|509315|509316|509317|509318|509319|509320|509321|509322|509323|509324|509325|509326|509327|509328|509329|509330|509331|509332|509333|509334|509335|509336|509337|509338|509339|509340|509341|509342|509343|509344|509345|509346|509347|509348|509349|509350|509351|509352|509353|509354|509355|509356|509357|509358|509359|509360|509361|509362|509363|509364|509365|509366|509367|509368|509369|509370|509371|509372|509373|509374|509375|509376|509377|509378|509379|509380|509381|509382|509383|509384|509385|509386|509387|509388|509389|509390|509391|509392|509393|509394|509395|509396|509397|509398|509399|509400|509401|509402|509403|509404|509405|509406|509407|509408|509409|509410|509411|509412|509413|509414|509415|509416|509417|509418|509419|509420|509421|509422|509423|509424|509425|509426|509427|509428|509429|509430|509431|509432|509433|509434|509435|509436|509437|509438|509439|509440|509441|509442|509443|509444|509445|509446|509447|509448|509449|509450|509451|509452|509453|509454|509455|509456|509457|509458|509459|509460|509461|509462|509463|509464|509465|509466|509467|509468|509469|509470|509471|509472|509473|509474|509475|509476|509477|509478|509479|509480|509481|509482|509483|509484|509485|509486|509487|509488|509489|509490|509491|509492|509493|509494|509495|509496|509497|509498|509499|509500|509501|509502|509503|509504|509505|509506|509507|509508|509509|509510|509511|509512|509513|509514|509515|509516|509517|509518|509519|509520|509521|509522|509523|509524|509525|509526|509527|509528|509529|509530|509531|509532|509533|509534|509535|509536|509537|509538|509539|509540|509541|509542|509543|509544|509545|509546|509547|509548|509549|509550|509551|509552|509553|509554|509555|509556|509557|509558|509559|509560|509561|509562|509563|509564|509565|509566|509567|509568|509569|509570|509571|509573|509574|509575|509576|509577|509578|509579|509580|509581|509582|509583|509584|509585|509586|509587|509588|509589|509590|509591|509592|509593|509594|509595|509596|509597|509598|509599|509600|509601|509602|509603|509604|509605|509606|509607|509608|509609|509610|509611|509612|509613|509614|509615|509616|509617|509618|509619|509620|509621|509622|509623|509624|509625|509626|509627|509628|509629|509630|509631|509632|509633|509634|509635|509636|509637|509638|509639|509640|509641|509642|509643|509644|509645|509646|509647|509648|509649|509650|509651|509652|509653|509654|509655|509656|509657|509658|509659|509660|509661|509662|509663|509664|509665|509666|509667|509668|509669|509670|509671|509672|509673|509674|509675|509676|509677|509678|509679|509680|509681|509682|509683|509684|509685|509686|509687|509688|509689|509690|509691|509692|509693|509694|509695|509696|509697|509698|509699|509700|509701|509702|509703|509704|509705|509706|509707|509708|509709|509710|509711|509712|509713|509714|509715|509716|509717|509718|509719|509720|509721|509722|509723|509724|509725|509726|509727|509728|509729|509730|509731|509732|509733|509734|509735|509736|509737|509738|509739|509740|509741|509742|509743|509744|509745|509746|509747|509748|509749|509750|509751|509752|509753|509754|509755|509756|509757|509758|509759|509760|509761|509762|509763|509764|509765|509766|509767|509768|509769|509770|509771|509772|509773|509774|509775|509776|509777|509778|509779|509780|509781|509783|509784|509785|509786|509787|509788|509789|509790|509791|509792|509793|509794|509795|509796|509797|509798|509799|509800|509801|509802|509803|509804|509805|509806|509807|509808|509809|509810|509811|509812|509813|509814|509815|509816|509817|509818|509819|509820|509821|509822|509823|509824|509825|509826|509827|509828|509829|509830|509831|509832|509833|509834|509835|509836|509837|509838|509839|509840|509841|509842|509843|509844|509845|509846|509847|509848|509849|509850|509851|509852|509853|509854|509855|509856|509857|509858|509859|509860|509861|509862|509863|509864|509865|509866|509867|509868|509869|509870|509871|509872|509873|509874|509875|509876|509877|509878|509879|509880|509881|509882|509883|509884|509885|509886|509887|509888|509889|509890|509891|509892|509893|509894|509895|509896|509897|509898|509899|509900|509901|509902|509903|509904|509905|509906|509907|509908|509909|509910|509911|509912|509913|509914|509915|509916|509917|509918|509919|509920|509921|509922|509923|509924|509925|509926|509927|509928|509929|509930|509931|509932|509933|509934|509935|509936|509937|509938|509939|509940|509941|509942|509943|509944|509945|509946|509947|509948|509949|509950|509951|509952|509953|509954|509955|509956|509957|509958|509959|509960|509961|509962|509963|509964|509965|509966|509967|509968|509969|509970|509971|509972|509973|509974|509975|509976|509977|509978|509979|509980|509981|509982|509983|509984|509985|509986|509987|509988|509989|509990|509991|509992|509993|509994|509995|509996|509997|509998|509999|510000|510001|510002|510003|510004|510005|510006|510007|510008|510009|510010|510011|510012|510013|510014|510015|510016|510017|510018|510019|510020|510021|510022|510023|510024|510025|510026|510027|510028|510029|510030|510031|510032|510033|510034|510035|510036|510037|510038|510039|510040|510041|510042|510043|510044|510045|510046|510047|510048|510049|510050|510051|510052|510053|510054|510055|510056|510057|510058|510059|510060|510061|510062|510063|510064|510065|510066|510067|510068|510069|510070|510071|510072|510073|510074|510075|510076|510077|510078|510079|510080|510081|510082|510083|510084|510085|510086|510087|510088|510089|510090|510091|510092|510093|510094|510095|510096|510097|510098|510099|510100|510101|510102|510103|510104|510105|510106|510107|510108|510109|510110|510111|510112|510113|510114|510115|510116|510117|510118|510119|510120|510121|510122|510123|510124|510125|510126|510127|510128|510129|510130|510131|510132|510133|510134|510135|510136|510137|510138|510139|510140|510141|510142|510143|510144|510145|510146|510147|510148|510149|510150|510151|510152|510153|510154|510155|510156|510157|510158|510159|510160|510161|510162|510163|510164|510165|510166|510167|510168|510169|510170|510171|510172|510173|510174|510175|510176|510177|510178|510179|510180|510181|510182|510183|510184|510185|510186|510187|510188|510189|510190|510191|510192|510193|510194|510195|510196|510197|510198|510199|510200|510201|510202|510203|510204|510205|510206|510207|510208|510209|510210|510211|510212|510213|510214|510215|510216|510217|510218|510219|510220|510221|510222|510223|510224|510225|510226|510227|510228|510229|510230|510231|510232|510233|510234|510235|510236|510237|510238|510239|510240|510241|510242|510243|510244|510245|510246|510247|510248|510249|510250|510251|510252|510253|510254|510255|510256|510257|510258|510259|510260|510261|510262|510263|510264|510265|510266|510267|510268|510269|510270|510271|510272|510273|510274|510275|510276|510277|510278|510279|510280|510281|510282|510283|510284|510285|510286|510287|510288|510289|510290|510291|510292|510293|510294|510295|510296|510297|510298|510299|510300|510301|510302|510303|510304|510305|510306|510307|510308|510309|510310|510311|510312|510313|510314|510315|510316|510317|510318|510319|510320|510321|510322|510323|510324|510325|510326|510327|510328|510329|510330|510331|510332|510333|510334|510335|510336|510337|510338|510339|510341|510342|510343|510344|510345|510346|510347|510348|510349|510350|510351|510352|510353|510354|510355|510356|510357|510358|510359|510360|510361|510362|510363|510364|510365|510366|510367|510368|510369|510370|510371|510372|510373|510374|510375|510376|510377|510378|510379|510380|510381|510382|510383|510384|510385|510386|510387|510388|510389|510390|510391|510392|510393|510394|510395|510396|510397|510398|510399|510400|510401|510402|510403|510404|510405|510406|510407|510408|510409|510410|510411|510412|510413|510414|510415|510416|510417|510418|510419|510420|510421|510422|510423|510424|510425|510426|510427|510428|510429|510430|510431|510432|510434|510435|510436|510437|510438|510439|510440|510441|510442|510443|510444|510445|510446|510447|510448|510449|510450|510451|510452|510453|510454|510455|510456|510457|510458|510459|510460|510461|510462|510463|510464|510465|510466|510467|510468|510469|510470|510471|510472|510473|510475|510476|510477|510478|510479|510480|510481|510482|510483|510484|510485|510486|510487|510488|510489|510490|510491|510492|510493|510494|510495|510496|510497|510498|510499|510500|510501|510502|510503|510504|510505|510506|510507|510508|510509|510510|510511|510512|510513|510514|510515|510516|510517|510518|510519|510520|510521|510522|510523|510524|510525|510526|510527|510528|510529|510530|510531|510532|510533|510534|510535|510536|510537|510538|510539|510540|510541|510542|510543|510544|510545|510546|510547|510548|510549|510550|510551|510552|510553|510554|510555|510556|510557|510558|510559|510560|510561|510562|510563|510564|510565|510566|510567|510568|510569|510570|510571|510572|510573|510574|510575|510576|510577|510578|510579|510580|510581|510582|510583|510584|510585|510586|510587|510588|510589|510590|510591|510592|510593|510594|510595|510596|510597|510598|510599|510600|510601|510602|510603|510604|510605|510606|510607|510608|510609|510610|510611|510612|510613|510614|510615|510616|510617|510618|510619|510620|510621|510622|510623|510624|510625|510626|510627|510628|510629|510630|510631|510632|510633|510634|510635|510636|510637|510638|510639|510640|510641|510642|510643|510644|510645|510646|510647|510648|510649|510650|510651|510652|510653|510654|510655|510656|510657|510658|510659|510660|510661|510662|510663|510664|510665|510666|510667|510668|510669|510670|510671|510672|510673|510674|510675|510676|510677|510678|510679|510680|510681|510682|510683|510684|510685|510686|510687|510688|510689|510690|510691|510692|510693|510694|510695|510696|510697|510698|510699|510700|510701|510702|510703|510704|510705|510706|510707|510708|510709|510710|510711|510712|510713|510714|510715|510716|510717|510718|510719|510720|510721|510722|510723|510724|510725|510726|510727|510728|510729|510730|510731|510732|510733|510734|510735|510736|510737|510738|510739|510740|510741|510742|510743|510744|510745|510746|510747|510748|510749|510750|510751|510752|510753|510754|510755|510756|510757|510758|510759|510760|510761|510762|510763|510764|510765|510766|510767|510768|510769|510770|510771|510772|510773|510774|510775|510776|510777|510778|510779|510780|510781|510782|510783|510784|510785|510786|510787|510788|510789|510790|510791|510792|510793|510794|510795|510796|510797|510798|510799|510800|510801|510802|510803|510804|510805|510806|510807|510808|510809|510810|510811|510812|510813|510814|510815|510816|510817|510818|510819|510820|510821|510822|510823|510824|510825|510826|510827|510828|510829|510830|510831|510832|510833|510834|510835|510836|510837|510838|510839|510840|510841|510842|510843|510844|510845|510846|510847|510848|510849|510850|510851|510852|510853|510854|510855|510856|510857|510858|510859|510860|510861|510862|510863|510864|510865|510866|510867|510868|510869|510870|510871|510872|510873|510874|510875|510876|510877|510878|510879|510880|510881|510882|510883|510884|510885|510886|510887|510888|510889|510890|510891|510892|510893|510894|510895|510896|510897|510898|510899|510900|510901|510902|510903|510904|510905|510906|510907|510908|510909|510910|510911|510912|510913|510914|510915|510916|510917|510918|510919|510920|510921|510922|510923|510924|510925|510926|510927|510928|510929|510930|510931|510932|510933|510934|510935|510936|510937|510938|510939|510940|510941|510942|510943|510944|510945|510946|510947|510948|510949|510950|510951|510952|510953|510954|510955|510956|510957|510958|510959|510960|510961|510962|510963|510964|510965|510966|510967|510968|510969|510970|510971|510972|510973|510974|510975|510976|510977|510978|510979|510980|510981|510982|510983|510984", + "text": "Cardiovascular phenotype" + }, + { + "baseId": "15157|15158|15159|15160|15161|15162|15163|15164|15165|15166|15167", + "text": "Homocystinuria, pyridoxine-responsive" + }, + { + "baseId": "15159|15283|15328|15332|15349|15843|16262|16329|16549|16550|16552|16659|16740|17238|17257|17395|17521|17524|17577|17578|17579|17581|17582|17584|17586|17587|18066|18077|18087|18159|18250|18401|18409|18559|18560|19141|19329|19409|19410|19413|19566|19730|19731|19732|19770|19772|19881|19966|20026|20027|20042|20138|20142|20188|20332|20333|20341|20381|20550|20630|20633|21091|21406|21934|21939|21979|21987|22138|22152|22154|22155|22159|22161|22164|22165|22168|22169|22175|22176|22182|22194|22204|22205|22214|22224|22229|22235|22238|22267|22268|22270|22276|22500|22819|22852|22858|22918|22923|22924|22927|22952|23317|23318|23332|23441|23470|23582|23777|23815|23835|23845|23849|23970|24258|24263|24264|24266|24284|24332|24364|24368|24388|24419|24431|24432|24941|25404|25405|25407|25428|25439|25450|25611|25618|25627|25629|25646|25666|25686|25777|26071|26299|26306|26307|26308|26342|26351|26352|26420|26863|26868|27271|27313|27320|27327|27390|27450|27460|27628|27641|27746|27818|27830|27885|27895|27896|27897|27898|28139|28366|28384|28436|28437|28447|28448|28456|28460|28465|28473|28491|28495|28505|28516|28518|28548|28552|28714|28799|28944|28955|28970|28972|28975|28984|28996|29062|29190|29213|29987|30129|30138|30145|30151|30165|30190|30191|30195|30200|30207|30209|30210|30215|30241|30252|30273|30280|30283|30284|30286|30317|30319|30325|30331|30339|30341|30359|30361|30362|30368|30372|30440|30441|30442|30443|30452|30453|30454|30456|30457|30458|30461|30462|30473|30475|30476|30477|30486|30487|30488|30489|30490|30493|30496|30497|30498|30499|30500|30503|30508|30510|30522|30553|30572|30579|30604|30638|30652|30663|30668|30669|30674|30675|30676|30678|30686|30689|30691|30692|30701|30729|30731|30733|30738|30746|30772|30784|30785|30804|30833|30834|30842|30861|30873|30924|31275|31366|31370|31371|31376|31378|31381|31393|31398|31720|31897|31952|32039|32043|32044|32046|32048|32049|32050|32053|32055|32062|32128|32244|32352|32369|32386|32418|32700|32701|32709|32715|32716|32720|32791|33097|33858|33994|34016|34043|34156|34162|34164|34196|34239|34676|34678|34680|34689|34691|34695|34696|36140|36243|36261|36273|36275|36276|36287|36305|38447|38469|38851|39074|39099|39315|39316|40369|40451|40462|40469|40479|44292|44297|44298|44300|44308|44318|44351|44355|44431|44433|44489|44490|44493|44494|44496|44499|44503|44505|44506|44508|44517|44524|44526|44531|44532|44533|44536|44546|44557|44558|44579|44586|44590|44594|44596|44598|44605|44624|44627|44628|44662|44663|44673|44674|44680|44682|44683|44684|44685|44690|44695|44705|44729|44735|44742|44748|44767|44768|44796|44797|44802|44804|44943|44944|44946|44949|44951|44955|44956|44967|44972|44973|44974|44982|44984|44986|44991|44993|44995|44996|44998|45004|45041|45042|45087|45088|45089|45092|45100|45101|45108|45110|45111|45112|45141|45162|45163|45164|45165|45166|45168|45169|45170|45171|45172|45173|45174|45175|45177|45178|45181|45204|45210|45216|45219|45229|45233|45235|45239|45243|45245|45246|45249|45259|45261|45269|45272|45283|45287|45293|45346|45347|45348|45349|45350|45351|45352|45353|45354|45357|45358|45369|45376|45384|45389|45391|45392|45393|45396|45398|45399|45407|45408|45410|45411|45419|45420|45421|45422|45424|45426|45428|45431|45433|45439|45441|45442|45518|45528|45532|45534|45539|45540|45545|45553|45724|45982|46008|46010|46021|46025|46035|46063|46083|46117|46167|46234|46270|46290|46291|46297|46314|46325|46373|46386|46415|46442|46448|46460|46466|46469|46471|46492|46499|46515|46529|46546|46554|46571|46584|46616|46619|46621|46642|46708|46724|46748|46776|46786|46798|46804|46816|46822|47058|47216|47272|47340|47455|48163|48266|48807|48830|48834|48861|48889|48891|48901|48902|48916|48976|49081|49143|49162|49167|49183|49208|49217|49219|49224|49230|49953|49955|49966|49979|49981|49984|49988|49995|49997|50000|50001|50003|50004|50006|50008|50009|50011|50019|50050|50062|50063|50066|50068|50100|50102|50112|50123|50139|50140|50141|50142|50143|50144|50145|50146|50147|50148|50152|50155|50161|50164|50165|50170|50175|50177|50184|50187|50194|50196|50198|50199|50202|50205|50206|50208|50215|50221|50242|50244|50247|50249|50250|50251|50253|50254|50256|50257|50260|50265|50266|50267|50269|50274|50291|50293|50296|51095|51420|51457|51465|51467|51489|51491|51500|51508|51551|51582|51583|51603|51628|51641|51655|51656|51659|51676|51706|51796|51815|51822|51823|51846|51857|51881|51922|51928|51930|51956|51960|51967|51987|52003|52034|52081|52122|52147|52190|52197|52202|52262|52273|52286|52318|52340|52428|52444|52463|52493|52494|52504|52545|52625|52694|52695|52713|52716|52745|52746|52748|52760|52764|52821|52832|52876|52881|52884|52886|52896|52902|52909|52911|52914|52915|52922|52938|52939|52951|52955|52990|52994|53001|53002|53041|53042|53049|53072|53073|53084|53090|53205|53227|53229|53233|53236|53241|53244|53280|53282|53318|53399|53400|53410|53419|53422|53425|53432|53434|53436|53462|53473|53474|53479|53489|53498|53620|53622|53627|53638|53639|53642|53647|53648|53650|53655|53659|53660|53661|53673|53682|53686|53693|53704|53711|53718|53737|53738|53740|53753|53790|53792|53808|53817|53818|53825|53828|53829|53859|53862|53863|53873|53874|53882|53884|53904|53906|53921|53922|53927|53936|53937|53943|53947|53949|53950|54017|54025|54027|54040|54045|54048|54060|54064|54073|54075|54082|54084|54092|54096|54103|54105|54108|54110|54118|54130|54135|54261|54285|54307|54313|54361|54368|54370|54376|54474|54501|54520|54557|54558|54564|54566|54572|54576|54579|54589|54592|54598|54600|54601|54606|54607|54609|54619|54622|54623|54630|54678|54692|54704|54713|54714|54716|54717|54727|54743|54747|54749|54753|54765|54768|54785|54804|54842|54848|54849|54852|54874|54892|54895|54995|54996|54997|55002|55007|55008|55012|55022|55031|55047|55062|55071|55078|55104|55110|55122|55184|55185|55196|55237|55253|55303|55306|55318|55319|55353|55383|55416|55431|55436|55463|55464|55479|55490|55499|55506|55538|55554|55561|55565|55567|55574|55601|55605|55612|55635|55658|55663|55670|55701|55722|55733|55735|55743|55746|55750|55752|55756|55757|55760|55762|55771|55777|55779|55786|55790|55798|55800|55805|55806|55811|55818|55820|55823|55829|55831|55832|55835|55837|55844|55846|55850|55852|55858|55867|55869|55870|55873|55876|55878|55881|55886|55890|55906|55907|55908|55923|55924|55935|55940|55944|55957|55982|55984|55987|55991|55993|55996|55997|55998|56006|56013|56016|56022|56031|56038|56039|56041|56049|56067|56069|56071|56076|56082|56087|56095|56097|56100|56107|56108|56116|56133|56145|56146|56147|56148|56152|56153|56155|56172|56173|56174|56178|56179|56180|56183|56189|56193|56201|56202|56205|56209|56214|56222|56233|56235|56239|56251|56264|56265|56288|56289|56292|56293|56305|56315|56337|56342|56345|56353|56370|56378|56390|56391|56393|56398|56401|56425|56430|56440|56454|56455|56459|56481|56486|56497|56498|56503|56540|56545|56555|56558|56564|56570|56573|56575|56577|56579|56580|56582|56584|56587|56597|56600|56611|56616|56621|56631|56641|56644|56648|56658|56661|56663|56665|56671|56674|56675|56678|56680|56687|56693|56696|56710|56714|56719|56722|56723|56727|56738|56742|56752|56760|56762|56763|56764|56765|56767|56768|56772|56785|56787|56788|56790|56796|56797|56800|56802|56803|56805|56806|56807|56816|56826|56834|56838|56841|56855|56863|56865|56866|56870|56874|56875|56876|56879|56881|56887|56905|56913|56920|56927|56928|56929|56933|56937|56959|56978|56980|56987|56990|57005|57010|57011|57014|57061|57070|57079|57145|57146|57160|57189|57211|57220|57226|57281|57286|57329|57332|57353|57397|57437|57443|57444|57450|57451|57460|57470|57479|57506|57534|57542|57546|57549|57565|57581|57585|57589|57601|57606|57607|57613|57615|57617|57621|57625|57630|57646|57648|57649|57662|57669|57672|57675|57677|57680|57682|57690|57696|57709|57717|57724|57727|57730|57734|57739|57769|57782|57834|57850|57866|57930|57983|58168|58170|58181|58303|58312|58324|58451|58464|58544|58593|58629|58666|58695|58710|58778|58788|58806|58847|58901|58980|59009|59057|59119|59171|59189|59278|59301|59351|65711|65715|65721|65728|65784|65836|65837|65860|65861|65865|65926|65994|66011|66017|66034|66047|66049|66103|66116|66118|66147|66149|66256|66257|66260|66284|66312|66345|66346|66397|66467|66481|66490|66533|66546|66564|66580|66732|66770|66855|66867|66884|66915|66917|66985|67087|67140|67190|67228|67262|67274|67278|67350|67360|67365|67448|67458|67556|67564|67565|67566|67823|67825|67828|67841|67860|67887|67890|67897|68000|68030|68035|68072|68133|68155|68173|68197|68209|68229|68243|68270|68299|68306|68334|68352|68356|68387|68388|68409|68430|68446|68457|68466|68469|68498|68561|68590|68608|68629|68650|68660|68725|68749|68762|68810|68813|68983|69043|69063|69091|69102|69109|69128|69172|69234|69331|69410|69447|69507|69597|69637|69639|69654|69800|69824|69877|69896|69902|69909|69912|69926|69939|69968|70074|70095|70252|70256|70302|70309|70394|70438|70462|70475|70476|70962|76101|76408|76467|76468|76573|76620|77593|77671|77683|77916|77922|78188|78323|78493|78509|78511|78607|78664|78670|78729|78895|78916|79251|81524|82778|89851|93633|93635|94027|94678|94960|95196|95829|95960|96615|96752|96753|96779|96781|96799|96802|96812|96825|96921|96991|97112|97124|97209|97225|97271|98224|98227|98232|98256|98293|98335|98337|98489|98548|98572|98587|98588|98589|98592|98622|98676|98717|98751|98760|98761|98802|98999|99004|99006|99041|99055|99060|99061|99062|99063|99064|99066|99095|99096|99098|99099|99100|99306|99309|99310|99316|99323|99324|99325|99327|99330|99368|99398|99399|99401|99403|99418|99422|99426|99430|99469|99470|99471|99482|99651|99653|99656|99668|99669|99670|99673|99674|99675|99679|99680|99690|99693|99922|100027|100323|100359|100371|100373|100376|100382|100387|100394|100395|100410|100428|100448|100503|100504|100507|100508|100515|100516|100517|100542|100548|100557|100574|100579|100603|100641|100665|100667|100676|100683|100684|100699|100700|100705|100712|100744|100754|101088|101089|101171|101172|101173|101221|101224|101264|101278|101279|101280|101281|101282|101284|101285|101286|101339|101405|101406|101480|101557|101558|101559|101626|101628|101708|101876|101877|101890|101891|101892|102001|102002|102006|102016|102031|102032|102143|102146|102163|102183|102185|102206|102208|102214|102383|102386|102527|102755|103331|103338|103350|103366|103411|103420|103424|103446|103449|103470|103512|103524|103548|103742|103744|103761|103772|103773|103784|103810|103826|103878|104451|104456|104727|104930|104931|105030|105135|105163|105190|105208|105285|105296|105332|105333|105337|105343|105383|105493|105497|105560|105567|105571|105580|105582|105616|105683|105689|105694|105709|105795|106083|106101|106131|106198|106207|106214|106469|106471|107213|131074|131092|131163|131210|131241|131248|131381|131402|131411|131464|131465|131481|131503|131514|131517|131548|131560|131656|131671|131696|131716|131783|131790|131887|131899|132007|132092|132102|132118|132123|132140|132192|132193|132209|132218|132254|132255|132268|132271|132279|132290|132776|132789|132800|132812|132815|132819|132830|132834|132837|132865|132869|132887|132900|132928|133046|133096|133154|133157|133162|133208|133326|133383|133388|133391|133395|133398|133400|133499|133525|133527|133530|133538|133613|133649|133652|133903|133904|133905|133906|133907|133908|134059|134235|134277|134371|134380|134383|134385|134387|134388|134390|134480|134482|134484|134485|134486|134487|134488|134490|134491|134492|134493|134494|134497|134499|134500|134502|134506|134508|134509|134511|134513|134515|134517|134519|134520|134522|134566|134583|134584|134830|134833|134834|134836|134838|134841|134844|134928|135065|135084|135085|135086|135129|135130|135437|135439|135554|135702|135705|135709|135712|135720|135723|135724|135725|135726|135727|135728|135729|135730|135748|135838|136094|136095|136097|136099|136100|136101|136104|136107|136111|136129|136139|136140|136194|136364|136399|136433|136434|136438|136440|136441|136443|136447|136450|136453|136454|136461|136462|136463|136464|136467|136468|136469|136478|136484|136492|136505|136508|136527|136528|136529|137341|137343|137349|137354|137358|137362|137368|137369|137477|137495|137499|137709|137710|138125|138126|138129|138131|138138|138148|138204|138594|138613|138615|138617|138778|138839|139021|139252|139395|139402|139416|139449|139452|139476|139486|139525|139555|139565|139651|139655|139658|139769|139803|139819|139869|139937|139938|140026|140089|140101|140106|140107|140113|140134|140149|140180|140184|140186|140187|140196|140197|140228|140231|140232|140240|140250|140252|140257|140277|140286|140291|140293|140330|140340|140369|140370|140374|140377|140380|140395|140398|140400|140402|140432|140433|140505|140544|140546|140547|140548|140549|140551|140552|140556|140559|140705|140731|140776|140778|140784|140785|140833|140834|140835|140861|140871|140872|140876|140902|140904|140905|140906|141007|141008|141011|141014|141015|141017|141019|141020|141024|141028|141030|141033|141036|141040|141042|141044|141047|141058|141060|141061|141062|141073|141075|141076|141079|141080|141088|141200|141234|141259|141268|141271|141371|141378|141394|141413|141415|141416|141427|141429|141437|141440|141443|141484|141485|141487|141488|141494|141496|141499|141501|141509|141524|141527|141546|141581|141596|141600|141616|141618|141619|141620|141627|141663|141691|141710|141805|141909|141911|141913|141915|141922|141923|141953|141954|141964|141992|141998|141999|142000|142002|142003|142014|142015|142040|142041|142043|142044|142045|142046|142053|142056|142057|142058|142059|142061|142087|142118|142231|142289|142404|142450|142486|142520|142537|142540|142542|142549|142570|142584|142585|142588|142590|142641|142650|142651|142652|142698|142708|142736|142739|142753|142754|142757|142786|142855|142856|142923|143031|143042|143075|143079|143082|150475|150476|150480|150481|150483|150484|150498|150624|150627|150632|151068|151227|151284|151308|151455|151494|151526|151682|151781|151853|151854|151858|151859|152247|152261|152346|152347|152455|152484|153134|153441|153467|165488|165489|165563|165614|165850|167386|167399|167457|167576|167577|167583|167809|167815|167821|167822|167843|167852|167853|168530|168531|168532|168596|168598|168622|168636|169456|169457|169472|171032|171059|171073|172174|172380|172381|172417|172429|172443|172512|172529|172564|172565|172568|172571|172579|172581|172592|172671|172820|172908|172942|173008|173136|173163|173236|173258|173305|173328|173356|173378|173462|173463|173629|173726|173755|173810|173950|173970|173979|174017|174024|174035|174048|174300|174360|174528|174584|174615|174620|174684|174896|175067|175290|175291|175351|175437|175517|175559|175577|175581|175582|175833|175894|175904|175979|175984|176036|176058|176181|176235|176654|176984|177019|177167|177274|177282|177298|177299|177355|177356|177452|177456|177472|177478|177498|177522|177534|177535|177575|177632|177711|177794|177851|177971|178002|178059|178232|178448|178485|178536|178711|178748|179238|180193|180522|180571|180603|180606|180613|180636|180696|180778|180822|181048|181600|181655|181670|181971|182129|182136|182332|182669|182738|182764|182857|182874|183049|183106|183109|183859|183864|184006|184071|184074|184084|184334|184501|184518|184580|184699|184762|184771|184913|184915|185117|185195|185227|185426|186076|186280|186367|186384|186404|186440|186473|186475|186479|186551|186585|186861|188392|188507|188572|188620|188676|188842|189247|189249|189250|189251|189338|189503|189650|189870|189921|189931|189933|189962|190215|190228|190247|190271|190278|190494|190617|190628|190666|190667|190672|190711|190748|190898|190914|190925|190998|191088|191159|191224|191234|191367|191392|191393|191466|191481|191531|191604|191626|191683|191804|191864|191869|191940|191949|191960|192053|192064|192077|192078|192098|192116|192139|192231|192301|192310|192315|192517|192529|192531|192586|192612|192625|192629|192636|192691|192692|192701|192913|192938|192986|193084|193290|193367|193370|193379|193381|193438|193476|193529|193626|193669|193674|193768|193794|193824|194047|194048|194159|194165|194179|194241|194246|194352|194391|194453|194494|194545|194569|194621|194660|194679|194683|194708|194710|194718|194788|194790|194791|194840|194943|195240|195255|195306|195309|195314|195351|195444|195584|195625|195709|195767|195830|195841|195858|195872|195898|195938|196010|196041|196060|196118|196131|196160|196240|196284|196292|196299|196350|196386|196393|196786|196790|196791|196815|196816|196839|197075|197131|197235|197371|197542|197579|197615|197743|197803|197832|197871|198272|198279|198582|199012|199066|199106|199108|199242|199402|199409|199586|199603|199661|199943|199994|200104|200105|203031|203128|203159|203653|205144|205334|205377|205685|205727|205779|206935|206952|206963|206971|207114|207155|207158|207161|207163|207791|208058|208065|208516|208637|209253|209589|209630|209661|209672|209697|209698|209702|209705|209710|209759|209813|209827|210154|210404|210405|210412|210415|210447|210450|210458|210462|210471|210480|210490|210516|210517|210532|210582|210598|210605|210777|211025|211736|211841|212703|212932|212980|212982|213000|213020|213175|213317|213363|213454|213456|213459|213460|213461|213624|213652|213876|214615|214668|215087|215178|215191|215196|215206|215539|216045|221072|221074|221117|221131|221229|221370|221387|221431|221526|221556|221613|221615|221666|221672|221697|221756|221950|222200|222201|222206|222216|222217|222218|222226|222228|222230|222232|222240|222245|222255|222361|222402|222405|222407|222409|222412|222484|222491|222532|222633|222739|222744|222772|222778|222808|222809|222813|222814|222819|222820|222830|222831|222833|222847|224153|225399|226351|227197|227521|227549|227653|227843|228323|228733|228816|228910|228983|228985|228987|228989|228995|228999|229001|229002|229003|229005|229007|229056|229071|229170|229172|229202|229214|229224|229226|229274|230437|230654|230655|231071|231148|231251|231347|231492|231632|231643|231937|231956|232027|232597|232937|234298|234438|234921|235496|236181|236391|236923|237092|237112|237142|237173|237223|237290|237393|237410|237438|238113|238116|238117|238157|238163|238209|238377|238502|238510|238513|238516|238596|238609|239079|239085|239093|239105|239311|239317|239769|239770|239771|239981|240002|240172|240787|241063|241127|241227|241234|241236|241261|241283|241309|241339|241340|241394|241415|241419|241440|241462|241499|241530|241567|241648|241790|241889|241891|241907|241957|241979|242082|242897|242917|243268|243373|243375|243377|243379|243380|243381|243382|243505|243762|243849|243986|244201|244260|244290|244292|244311|244610|244691|244725|244836|245672|246930|246938|247081|247115|247123|247124|249266|249415|249416|249419|249424|249425|249430|249431|249432|249433|249435|249437|249439|249440|249446|249447|249449|249450|249451|249454|249455|249456|249457|249458|249459|249460|249462|249464|249465|249466|249467|249468|249469|249470|249471|249472|249491|249532|249723|249727|249728|249733|249734|249736|249737|249741|249813|249815|249816|249830|249856|249857|249858|249965|249966|250078|250117|250130|250132|250324|250325|250327|250329|250330|250493|250506|250805|250808|250873|250874|250878|250899|250964|251106|251245|251250|251253|251255|251257|251263|251264|251288|251365|251378|251380|251381|251383|251393|251394|251478|251479|251480|251488|251521|251523|251529|251539|251540|251544|251550|251642|251795|251796|251817|251832|251882|251883|251894|251907|251927|251940|251941|251943|252051|252057|252145|252379|252537|252538|252559|252564|252569|252571|252573|252648|252855|252868|252880|252929|252930|252934|252960|252979|252980|252982|252990|253356|253357|253359|253360|253363|253366|253612|253658|253700|253701|253706|253803|253853|253854|253876|253879|253881|253883|253896|254021|254143|254148|254150|254151|254206|254288|254290|254291|254293|254296|254303|254306|254397|254399|254402|254530|254531|254532|254543|254548|254551|254554|254558|254559|254566|254668|254669|254670|254671|254672|254673|254675|254682|254683|254684|254685|254686|254687|254688|254689|254691|254692|254693|254696|254697|254698|254699|254704|254705|254761|254765|254881|254885|254889|254893|254894|254896|254900|254901|254902|254913|254994|254996|254998|255000|255001|255002|255003|255004|255005|255006|255008|255009|255010|255011|255012|255013|255014|255015|255017|255018|255019|255024|255027|255028|255029|255030|255032|255034|255035|255121|255275|255344|255706|255936|255939|256081|256084|256135|256137|256139|256171|256186|256187|256188|256189|256192|256193|256194|256195|256197|256198|256255|256353|256354|256357|256464|256729|256745|256746|256769|256770|256790|256791|256792|256793|256794|256795|256797|256798|256799|256802|256803|256805|256806|256808|256810|256811|256812|256813|256816|256817|256819|256820|256821|256822|256823|256824|256825|256826|256842|256855|257197|257294|257296|257299|257332|257352|257361|257423|257694|257695|257807|257883|258026|258067|258083|258216|258257|258283|258397|258398|258731|258773|258883|258969|259161|259180|259935|260871|260878|261503|263974|264543|265157|265307|265354|265355|265578|265615|265939|265940|265961|266015|266128|266139|266817|267125|267316|267364|267390|267391|267804|267843|268045|268169|268201|268249|268250|268253|268275|268308|268412|268601|268767|268853|269089|269223|269227|269275|269656|270759|271102|271236|271724|271725|271861|271921|272005|272077|272080|272181|272182|272210|272381|272806|273142|273143|273305|273413|273804|273923|273981|273982|274292|274529|274681|274697|274700|275007|275215|275473|275733|275742|275750|275754|275809|275840|276675|276721|276731|276943|276971|276995|277002|277011|277024|277524|277546|277717|278320|278895|278904|278995|278997|279064|279072|279084|279127|279131|279135|279154|279156|279160|279189|279195|279229|279231|279244|279249|279275|279314|279357|279387|279391|279434|279443|279457|279469|279584|279589|279813|280201|280378|280437|280457|280465|280488|280497|280514|280517|280520|280606|280616|280681|280686|280996|281060|281097|281101|281416|281420|281438|281579|281708|281887|282208|282243|283402|283796|284457|284471|284722|284730|285499|285504|286246|286252|286256|286472|286484|287152|287923|288008|288345|288346|288366|290731|290748|290763|291314|291348|291687|291689|292053|292179|292243|292404|292449|292459|293044|293711|293717|293739|293753|293790|293792|293836|293838|294162|294210|294796|294883|294895|295109|295179|295188|295274|295348|295812|295832|295841|295860|295882|295896|296207|296316|296833|297599|297709|298146|298186|298323|298432|298729|298757|298773|298778|298789|298848|298855|298874|298898|298912|298954|298978|299107|300386|300389|301206|301214|301687|301812|301963|302183|302276|302288|302298|302439|302443|302467|303245|303386|303404|305149|305216|305379|306779|306788|306789|307168|307211|307590|308036|308039|308041|308994|309854|309922|309957|310121|310194|310570|311082|311334|311511|311749|311751|311978|311998|312001|312094|312111|312372|312397|314200|314467|314846|314896|314926|315175|315181|315242|315437|315438|315554|316922|317259|318116|318120|318176|318498|318630|318647|318666|318684|319525|319919|320125|320212|320825|320869|320926|320961|320976|320980|320981|321032|321421|321765|321776|321783|321857|321919|323240|323456|323481|325007|325017|325504|326106|326119|326223|326434|326770|327422|327427|328751|328765|328943|329145|329211|330025|330048|330056|330058|330069|330197|330408|331109|331121|331131|331166|331218|332316|332389|332443|332693|332731|332748|332882|332917|333010|333017|333019|333557|334051|334061|334602|334638|334664|334732|335154|335158|335175|335179|335184|335395|335402|335427|335703|336046|336543|337264|337290|337457|337496|337766|337795|337857|337872|337896|337908|338047|338383|338477|338499|338653|338968|339290|339806|339879|339892|339893|339902|339942|340721|340728|341260|341352|341616|341618|341620|341629|341634|341646|341657|342198|342248|342487|342497|342860|342889|342918|342924|342928|343080|343081|343083|343092|343097|343117|343605|344001|344077|344486|344495|344498|345855|346121|347886|347980|347991|348073|348256|348276|349220|349441|349442|349460|349469|349530|350549|350937|351035|351578|352799|353067|357615|357920|358843|359211|359259|359294|359685|361335|361490|361523|361552|363681|363986|364522|364707|364747|364857|365000|365104|365461|365709|365832|365926|366290|366524|366843|367075|367083|367117|367118|367142|367449|367467|367539|367593|367601|367829|367831|367869|367886|367896|367909|367963|368056|368060|368174|368175|368244|368286|368457|368795|368903|368963|368999|369141|369303|369696|370003|370964|370965|371120|371190|371369|371439|371603|371747|371896|371947|371984|372115|372141|372509|372651|372706|372718|372727|372744|372777|372840|372901|372916|372982|373020|373073|373095|373173|373175|373201|373209|373236|373407|373498|373596|373640|373744|374003|374080|374092|374541|374570|374601|374619|374673|374780|375609|376078|376307|376729|376927|376982|377206|377227|377408|377409|377592|377706|377748|377819|377844|377889|378246|378450|378487|378490|378632|379113|379126|379146|379209|389359|389399|389406|389780|390138|390208|390471|390931|391487|391678|391749|391987|392140|392157|392161|392217|392462|392810|393557|393769|393915|394074|394224|394832|395421|395813|396065|396354|396932|397198|398638|398708|398752|398822|399950|400547|400675|401699|402008|402259|402981|403557|403755|404247|404439|405361|406105|406435|407122|407278|408078|408513|409064|409101|409128|409737|409998|410427|411571|413983|414077|414153|414187|414296|414317|419790|419835|420766|424224|425480|425722|426246|428297|428300|428315|428744|432632|432642|432671|432692|432694|432700|432704|432739|432744|432842|432843|432845|432848|432863|432864|432866|432867|432873|432986|432987|432989|433003|433006|433014|433016|433017|433028|433029|433030|433072|433078|433079|433081|433082|433083|433084|433095|433116|433117|433120|433121|433149|433150|433151|433152|433153|433154|433230|433231|433295|433296|433297|433299|433335|433337|433389|433391|433461|433474|433476|433488|433490|433587|433589|433604|433605|433606|433607|433608|433610|433617|433624|433625|433634|433644|433648|433659|433661|433684|433701|433709|433712|433734|433765|433787|433788|433789|433790|433791|433792|433793|433794|433795|433796|433797|433798|433799|433800|433801|433802|433803|433804|433805|433806|433807|433808|433809|433810|433811|433812|433813|433814|433824|433825|433826|433829|433830|433831|433879|433880|433885|433888|433906|433935|433942|433958|433969|433989|434003|434012|434013|434014|434015|434016|434018|434019|434020|434021|434022|434023|434024|434033|434039|434042|434509|434998|438769|438802|438860|438912|439114|439171|439238|439314|439325|440064|440475|440480|440692|440733|440759|441308|442040|442096|442108|442114|442128|442132|442138|442147|442159|442168|442171|442177|442180|442181|442184|442551|443487|443583|443595|443981|444782|444867|445585|446049|446161|446169|447365|447475|447477|447591|447605|447900|448763|449189|450612|450704|451455|451583|451888|452237|452248|453405|453434|453537|453963|454732|455096|456324|457073|457303|457435|458502|458929|458988|459730|459738|460070|460134|460420|460556|461351|461598|461713|462419|463119|463171|463400|463487|463561|463884|463893|463932|464569|465864|465948|466309|466471|466475|466548|466797|466806|466809|466813|466814|467096|467804|468188|468293|468424|468426|468451|468867|468989|469041|469226|469810|471070|471078|472011|473119|475535|476549|480438|480439|480440|480446|480704|482122|482767|482789|483406|484012|484209|484299|485114|485574|485756|486981|487049|487057|487058|487108|487199|487298|487306|487524|487544|487860|487969|488290|489881|489919|489943|490014|490207|490867|491045|491370|491519|492033|495363|496649|496893|498073|498287|498552|498584|498764|498850|498877|498891|499606|500102|500389|500478|500505|500550|500557|500635|500814|500818|500838|500853|500889|501125|501145|501172|502557|503739|503875|503879|504039|504072|504303|504462|504890|504900|504908|504909|505096|505270|505389|505595|506052|506898|506959|508046|508164|508451|508531|509637|512812|514868|515439|516743|518076|518524|518816|519115|519681|520076|522085|523022|523052|525056|525214|525410|527287|528322|528386|528508|529265|529796|529878|529967|530339|530588|531251|531420|531649|532003|532575|532836|532997|534028|534048|534052|534088|536567|536981|537232|537882|537897|538329|539277|540563|545120|550002|550004|550012|552459|553103|553135|559406|561235|561308|564036|566364|566631|566999|572143|573125|576495|576503|576509|576775|576776|577154|577741|577992|579007|579454|581815|584946|587443|587799|587807|588347|588614|589593|590054|590466|609359|609360|609364|609370|609378|609387|609390|609398|609407|609409|609419|609533|609537|609541|609581|609628|609740|609758|609891|609943|609947|609949|610033|610035|610036|610038|610041|610042|610046|610048|610049|610050|610052|610058|610083|610098|610157|611325|612660|614421|614504|615673|617266|618173|619956|621720|623460|625069|628095|628693|629308|630874|631275|632451|634364|637395|638423|640401|640783|642729|644724|647187|647412|651416|654654|654691|654935|655347|655590|655813|655816|656143|656449|656573|657271|658471|659955|663075|668364|670438|679452|682758|683744|683845|684706|684708|684880|685134|687751|687866|687964|688970|689197|689411|689469|689610|689918|690179|690695|691601|691989|693446|694219|694342|694343|694845|695162|695508|695523|695842|696193|696468|696471|698555|698563|698565|698586|699702|701217|702530|703883|703884|704427|704810|705320|705399|705521|706197|706201|706763|706824|707091|709003|710049|710051|710560|712196|713315|715179|715181|715184|715186|716230|716870|718659|718661|718680|720605|721574|722200|722486|722655|723540|723801|726881|726886|726894|726895|726902|726909|726912|726915|727208|727226|728464|729232|732124|732128|732147|732156|734517|737379|739999|740445|740448|740464|740470|740471|740475|740483|740809|741733|743675|744882|744884|745435|746101|746135|746148|746164|747029|755335|755389|755637|755891|758379|762470|764798|770894|771167|771381|772495|777198|777891|778503|779459|779850|779851|779861|780068|781531|789585|789586|789692|789693|789854|791910|793060|794566|795647|796826|797766|799024|799102|799141|799144|799147|799149|799152|799176|799178|799180|799182|799183|799184|799186|799195|799197|799242|799256|799258|799274|799278|799279|799282|799283|799287|799292|799293|799299|799318|799329|799341|799353|799354|799357|799365|799372|799408|799410|799411|799421|799447|799455|799458|799459|799460|799464|799465|799466|799467|799468|799469|799475|799482|799507|799582|799601|799618|799651|799668|799677|799735|799751|799777|799830|799831|799837|799840|799846|799847|799852|799858|799859|799964|799966|799971|799972|799973|799974|799976|799977|799978|799979|799985|799988|799991|799994|799997|800007|800071|800077|800083|800100|800101|800102|800103|800104|800107|800109|800110|800112|800114|800116|800117|800118|800122|800123|800158|800159|800191|800204|800205|800206|800207|800210|806164|808710|808716|811611|811647|811853|813838|822050|823365|824358|825135|828696|832402|833961|836496|839283|842437|843307|843784|843935|843945|843948|848667|848734|848947|849843|849934|849982|855962|857163|857528|859330|861240|862405|862417|862499|863582|863589|863600|863681|864994|865024|868514|868516|869894|872245|872919|872939|880706|887644|889528|890451|890675|891892|898385|898389|898538|900896|901833|907625|909292|912857|912963|912978|914361|914800|916898|917195|917410|917460|917493|920370|922175|924613|925928|926636|930154|932132|933310|933608|935140|935219|935383|936262|937423|937533|940206|944120|945348|948945|953639|956144|958474|962248|965475|965851|965855|970998|971057|972766|975805|975894|981133|981134|981145|981211|981212|981213|981214|981215|981218|981230|981231|981232|981233|981234|981235|981236|981237|981238|981239|981240|981241|981242|981243|981244|981245|981246|981247|981248|981249|981250|981251|981252|981253|981254|981255|981256|981257|981258|981259|981260|981261|981262|981263|981264|981265|981266|981267|981268|981269|981270|981271|981272|981273|981274|981275|981276|981277|981278|981279|981280|981281|981282|981283|981284|981285|981286|981287|981288|981289|981290|981291|981292|981293|981294|981295|981296|981297|981298|981299|981300|981301|981302|981303|981304|981305|981306|981307|981308|981309|981310|981311|981314|981315|981316|981317|981318|981319|981328|981329|981330|981331|981332|981333|981334|981335|981336|981337|981338|981339|981340|981341|981342|981343|981344|981345|981346|981347|981349|981350|981351|981352|981353|981354|981355|981356|981357|981358|981359|981360|981361|981362|981363|981364|981365|981366|981367|981369|981370|981371|981372|981373|981374|981375|981376|981377|981382|981383|981384|981385|981386|981387|981388|981389|981390|981391|981392|981393|981394|981395|981396|981397|981398|981399|981400|981401|981402|981403|981404|981405|981406|981407|981408|981409|981410|981411|981412|981413|981414|981415|981416|981417|981418|981419|981420|981421|981422|981423|981424|981425|981426|981429|981430|981431|981432|981434|981435|981436|981437|981438|981439|981440|981442|981443|981444|981445|981446|981448|981449|981450|981451|981452|981453|981456|981457|981458|981459|981460|981461|981462|981463|981464|981465|981466|981467|981468|981469|981470|981471|981472|981473|981474|981475|981476|981477|981478|981479|981480|981481|981482|981483|981484|981485|981486|981487|981488|981489|981490|981491|981492|981493|981494|981495|981496|981497|981498|981499|981500|981501|981502|981503|981504|981505|981506|981507|981508|981509|981510|981511|981512|981515|981517|981518|981519|981525|981526|981527|981528|981529|981530|981531|981532|981533|981534|981535|981536|981537|981538|981539|981540|981541|981542|981543|981544|981545|981546|981547|981549|981550|981551|981553|981554|981555|981556|981557|981558|981559|981560|981561|981562|981563|981564|981565|981567|981568|981569|981570|981571|981572|981573|981574|981575|981576|981577|981578|981579|981580|981581|981582|981583|981584|981585|981586|981587|981588|981589|981590|981591|981594|981595|981596|981597|981598|981599|981602|981603|981604|981605|981606|981607|981608|981609|981610|981611|981612|981613|981614|981616|981618|981619|981624|981625|981649|981650|981651|981652|981668|981669|981670|981671|981672|981673|981674|981675|981676|981677|981678|981679|981682|981683|981684|981685|981686|981687|981688|981689|981690|981691|981692|981696|981698|981699|981700|981701|981702|981703|981704|981705|981706|981707|981708|981709|981710|981711|981712|981713|981714|981715|981716|981717|981718|981719|981730|981731|981732|981733|981734|981735|981736|981737|981738|981739|981740|981742|981744|981745|981746|981747|981748|981749|981750|981751|981752|981753|981756|981757|981758|981759|981761|981762|981763|981764|981765|981766|981767|981768|981769|981770|981771|981772|981773|981774|981775|981787|981788|981789|981790|981792|981793|981794|981795|981796|981797|981798|981799|981800|981801|981822|981823|981824|981825|981827|981828|981829|981831|981832|981833|981834|981837|981845|981846|981847|981848|981849|981850|981851|981852|981853|981854|981855|981856|981857|981858|981859|981860|981861|981862|981863|981864|981865|981866|981867|981868|981869|981870|981871|981872|981873|981874|981875|981876|981877|981878|981879|981880|981881|981882|981883|981885|981886|981887|981888|981889|981890|981891|981892|981902|981903|981904|981911|981912|981913|981914|981915|981916|981917|981918|981919|981920|981921|981922|981923|981924|981925|981926|981928|981933|981934|981937|981938|981939|981940|981941|981942|981943|981944|981945|981946|981947|981948|981949|981950|981951|981952|981953|982003|982004|982006|982007|982008|982009|982010|982011|982012|982013|982014|982015|982016|982017|982018|982019|982020|982021|982022|982023|982024|982025|982026|982027|982028|982029|982030|982031|982032|982033|982034|982035|982036|982037|982038|982039|982040|982041|982042|982043|982044|982045|982046|982047|982048|982049|982050|982051|982052|982053|982054|982055|982056|982057|982058|982059|982060|982061|982062|982063|982064|982065|982066|982067|982068|982069|982070|982071|982072|982073|982074|982075|982076|982077|982078|982079|982080|982081|982082|982083|982084|982085|982086|982087|982088|982089|982090|982091|982092|982093|982094|982095|982096|982097|982098|982099|982100|982101|982102|982103|982104|982105|982106|982107|982108|982109|982110|982111|982112|982113|982114|982115|982116|982117|982118|982119|982120|982121|982122|982123|982131|982133|982134|982135|982139|982140|982141|982142|982143|982144|982145|982146|982147|982148|982149|982150|982151|982152|982153|982154|982155|982156|982157|982158|982159|982160|982161|982162|982163|982164|982165|982166|982167|982168|982169|982170|982171|982172|982175|982180|982181|982182|982186|982187|982188|982189|982192|982193|982194|982195|982196|982203|982204|982205|982206|982207|982208|982209|982210|982211|982212|982213|982214|982215|982216|982217|982218|982219|982220|982223|982224|982225|982226|982227|982229|982230|982231|982232|982233|982244|982245|982246|982247|982250|982251|982252|982253|982254|982255|982256|982257|982268|982269|982273|982274|982275|982276|982277|982278|982279|982280|982281|982282|982283|982284|982285|982286|982287|982288|982289|982290|982291|982292|982293|982294|982295|982296|982297|982298|982299|982300|982301|982335|982336|982337|982338|982339|982340|982341|982342|982343|982344|982345|982346|982347|982348", + "text": "none provided" + }, + { + "baseId": "15159|16376|16941|17159|17203|17373|17558|18090|18091|18108|18268|18928|19293|19294|19299|19886|23120|24320|24472|25750|25867|25901|26019|26378|26559|26611|26675|26697|26735|26781|26848|26862|26863|26867|27928|28540|31158|33997|34033|34263|36382|38685|38972|38972|38997|39106|39135|39517|39748|40295|45151|45153|46513|46853|48312|49116|49896|50067|50121|51184|51814|53601|58754|70509|76337|76988|77870|79480|92746|97552|97554|99044|99450|99503|99929|101129|101168|101320|101331|101358|101442|104195|105803|106647|108235|125784|132612|132659|134099|134663|134762|134883|134958|134964|134987|135025|135264|135289|135490|135579|135757|135759|136058|136160|137063|137064|137065|137329|137335|137774|138333|138523|139690|140539|142910|142913|153074|153077|153125|153127|153199|153481|153555|166182|166183|166184|166185|166186|166187|166188|166189|166190|166191|166192|166193|166525|167681|167722|167731|168023|168149|168515|169057|169078|169192|169243|169501|169657|171803|171866|171866|171867|171867|171872|171874|172223|172224|177214|177274|177306|177379|177428|178413|178414|178415|181292|181411|181417|181434|181437|181438|181442|181443|181447|181449|181461|181465|187768|188112|188114|188524|190388|190570|190956|191285|191419|191469|191735|192090|192104|192146|192158|192343|192509|192821|192931|193410|193574|193860|194170|194179|194589|194639|194856|195318|196078|196169|196386|198605|200257|200983|200986|201049|201160|201510|201600|201710|201736|201892|201908|202166|202172|202181|202181|202202|202206|202211|202287|202287|202308|202320|202566|202858|202960|202975|202978|203013|203048|203241|203443|203788|203798|203985|204032|205013|205014|205220|205231|205280|205334|205385|205386|205416|205780|205795|205796|206744|206974|207066|207083|207426|207454|207519|207526|207566|207665|207761|208548|208549|208553|208578|208697|208995|209009|209132|209301|210442|210849|212518|212828|213128|213913|214422|214423|214736|215312|222267|223284|223285|224296|225802|225824|226495|226502|226589|226591|226880|227108|227142|227161|230343|231838|236721|236722|237027|237152|237163|237252|237500|237501|237502|237503|237504|237505|237506|237507|237508|237509|237510|237511|237512|237815|238152|241553|243986|244021|244353|244364|244877|247131|247367|247429|248813|248814|248815|253845|257945|258340|259765|259803|259926|260231|263009|263181|263248|263282|263405|263410|263782|263783|263800|263801|263802|263803|263823|264012|264349|264354|264380|264423|264462|264742|264747|264749|264765|264790|265017|265043|265372|266815|268040|268413|268539|268541|268711|268760|269753|269760|270052|270654|270693|270927|271309|271362|272361|272503|273382|273797|273968|274815|278319|279093|279284|279516|279804|280448|282805|285551|287840|288156|293387|293984|299180|300140|302751|306666|308119|308154|308181|308207|312480|313180|314592|315539|316481|318657|319385|321670|324560|324607|326113|326612|334331|336935|344085|346901|350092|351665|353901|359096|359406|359475|359671|359716|359969|360471|360857|360870|360871|360938|360965|361066|361077|361081|361133|361271|362161|362228|362591|362592|362593|362594|362602|363660|363688|363820|364114|364240|364330|364370|367000|368285|368289|368300|368307|368313|368318|368460|368463|368469|368862|369645|369663|369667|370379|370949|372867|374888|375842|376349|377884|378260|380144|384420|389102|389103|389117|389133|389134|389153|389158|389176|390552|390989|391309|391420|395134|400100|400613|401874|404259|404405|404663|404799|405000|405354|406087|406645|406673|406862|407394|407647|408763|409423|409797|410542|411079|414841|414968|415246|415325|421913|422065|422126|422440|424454|424455|424456|424457|424458|424459|424460|424461|424462|424463|424464|424465|424466|424467|424468|424469|424588|424629|424630|424632|424633|424634|424661|424961|425479|425622|426674|427641|428365|428376|428479|428557|428569|428990|429518|429704|430597|430777|430965|431523|431901|431970|432441|433679|434926|438230|438612|438689|439158|439568|439569|439570|439571|439572|440008|440809|442349|442645|442985|443697|444652|444898|445472|445668|445828|446266|446292|446380|447100|447731|454788|454789|454855|455343|455348|456092|457299|457526|457691|461199|462492|469809|470461|470498|470897|471646|471817|479492|480611|480612|480613|480614|480615|480616|480617|480618|480619|480620|480621|481510|481511|481512|481513|481514|482276|485864|486612|486695|489734|490435|490858|491613|492013|492252|492920|493392|495097|495809|495899|496780|498147|499823|500387|500720|501378|502199|506016|509671|511323|511569|511828|511891|511934|512013|512297|512330|512351|512721|512805|514017|514105|514124|514127|514186|514205|514209|514211|514305|514322|514330|514333|519403|520977|520978|521200|521206|521474|524758|525796|526001|526412|527882|535072|535710|535711|536617|538005|538311|538627|539084|539127|540495|540496|540497|540498|540499|540500|540501|540502|540503|540504|540505|540506|540507|540508|540509|540510|540511|540512|540513|540514|540515|540516|548854|548895|549547|550330|550356|550740|550741|550742|550743|550744|550745|550746|551271|551272|551352|551425|551430|552042|552111|552114|552115|553119|553120|553121|553164|553165|553166|553167|553168|553169|553170|553171|553173|553174|553175|553176|553177|553180|553181|553183|553184|553185|553186|553188|553189|553299|553300|553301|553302|553303|553304|553305|553306|556474|560245|560247|560249|560251|560356|560358|560439|561995|562782|563386|563519|564983|566742|568459|569461|573625|573697|574088|574272|576060|576061|576134|576146|578654|579155|579212|579242|579246|579391|579641|579815|580193|580324|580422|580442|580444|580480|580923|581229|581731|581732|582007|583142|583202|589432|589719|590017|590046|590123|590451|590736|608800|608802|608837|608860|610430|610519|610523|610591|611390|611406|611438|611439|611445|611469|613016|613532|613533|613534|613535|613536|613537|613538|613539|613540|613541|613542|613543|613544|613545|613546|613547|613548|613549|613550|613551|613604|614154|614550|614601|619844|621936|622051|622052|622054|622061|622062|622268|623113|623596|623604|623627|623628|623665|623666|623667|623782|623783|624119|625785|625797|625829|625830|626434|626437|626438|626439|626617|628802|629269|630744|632093|632104|633689|633690|633691|633692|633693|633694|634586|634796|635525|636544|638199|641377|644511|645247|647795|649136|649412|649854|649941|651314|651409|653855|653866|653885|654009|655648|672009|672066|676968|677043|677400|678937|678938|678942|678943|678944|678945|678947|678948|678949|678950|678952|678953|678954|678955|678959|678960|678961|678962|679673|679675|679676|679677|679679|679680|679681|679682|679683|679685|679686|679688|679689|679707|679731|682109|682110|682753|682754|682762|682850|683187|683192|683199|683278|687308|689501|691026|691811|695783|696142|701670|706453|707517|708004|715753|719080|721761|724324|727891|730145|732928|734989|736661|739687|740199|742154|742335|744859|752560|752766|764386|779946|780175|780263|782235|782237|782733|788257|789140|789259|789344|789405|789720|789740|790315|790840|791436|793021|793888|796462|796750|798255|798386|798452|801062|801217|801229|801532|801536|801538|802005|802090|804831|804986|805016|805027|805050|805066|805069|805071|805135|806013|806078|808732|815958|815967|815968|815969|815970|815971|815972|816026|816027|818146|818147|818148|818149|818150|818577|818578|818630|818745|821907|821908|822017|822141|822156|822259|825044|826810|830582|830583|830584|830585|830586|830587|830588|830589|830590|830591|830592|830593|830872|834567|836064|836170|839326|846990|847347|849497|855115|856758|857425|858396|861071|869899|881457|886250|889177|891722|904214|904359|904877|905852|905853|916788|917755|918152|918155|918499|918523|918531|918858|920543|920763|921245|921255|921256|921257|921449|922661|923395|923970|923971|923972|923973|923974|926753|929679|932818|932819|933757|934736|935698|936638|938470|939443|939643|944511|944512|944513|944514|944515|944516|951031|954101|954102|954103|954104|956981|957763|958543|959360|959374|961419|961431|961437|961438|961439|961440|961441|961442|961443|961444|961445|961446|961447|961448|961449|961450|961451|961452|961453|961454|961455|961456|961457|961458|961459|961460|961461|961462|961463|961464|961465|961466|961467|961468|961469|961470|961472|961474|961608|961907|961908|961909|961910|961912|961913|961914|961915|961916|961917|961994|962042|962129|962130|962201|963080|963085|963086|963087|963089|963090|963091|963092|963444|963445|963446|963447|963448|963449|963450|963451|963452|963453|963454|963455|963456|963457|963458|963459|963460|963461|963462|963463|963464|963465|963466|963467|963468|963469|963470|963471|963472|963473|963474|963475|963476|963477|963478|963481|963482|963485|963486|963488|963489|963490|963491|963492|963493|963495|963496|963497|963499|963500|963501|963503|963504|963505|963506|963507|963508|963509|963510|963511|963512|963513|963514|963516|963517|963518|963519|963520|963524|963525|963526|963527|963528|963529|963530|963533|963534|963535|963536|963537|963538|963539|963541|963542|963543|963544|963545|963546|963547|963554|963556|963557|963558|963559|963560|963561|963562|963563|963564|963565|963566|963567|963570|963572|963574|963575|963576|963577|963578|963580|963582|963583|963584|963585|963586|963587|963588|963589|963590|963591|963592|963593|963594|963597|963598|963599|963600|963601|963602|963603|963604|963605|963606|963607|963610|963611|963612|963613|963614|963615|963618|963619|963620|963621|963623|963624|963625|963626|963627|963628|963629|963630|963631|963632|963633|963634|963635|963636|963637|963638|963639|963640|963641|963643|963644|963645|963650|963651|963654|963656|963657|963658|963659|963660|963661|963662|963663|963664|963665|963666|963667|963668|963669|963672|963673|963674|963675|963676|963677|963678|963679|963680|963681|963682|963683|963684|963685|963686|963687|963688|963689|963690|963691|963692|963693|963694|963696|963697|963698|963699|963700|963701|963702|963703|963704|963705|963706|963707|963708|963709|963710|963711|963712|963713|963714|963715|963716|963717|963719|963720|963722|963723|963724|963725|963726|963727|963728|963729|963730|963731|963732|963733|963734|963735|963736|963737|963738|963739|963740|963741|963742|963743|963744|963745|963746|963748|963750|963751|963752|963753|963754|963755|963756|963757|963758|963760|963763|963765|963768|963769|963770|963771|963772|963774|963775|963776|963777|963778|963779|963780|963781|963783|963784|963785|963788|963789|963790|963791|963792|963793|963794|963795|963796|963797|963798|963799|963800|963801|963802|963803|963805|963806|963807|963808|963809|963811|963813|963814|963815|963816|963817|963818|963819|963820|963824|963825|963826|963827|963828|963829|963830|963831|963832|963833|963834|963835|963836|963837|963838|963839|963840|963841|963842|963843|963844|963845|963846|963847|963848|963849|963850|963851|963853|963854|963855|963856|963858|963859|963860|963861|963862|963863|963864|963865|963866|963867|963868|963869|963871|963872|963873|963874|963875|963876|963877|963878|963879|963880|963881|963882|963883|963884|963885|963886|963887|963888|963889|963890|963891|963892|963893|963894|963895|963896|963897|963898|963899|963900|963901|963902|963903|963904|963905|963906|963907|963908|963909|963911|963912|963913|963915|963919|963921|963922|963923|963925|963926|963927|963928|963929|963930|963931|963932|963933|963934|963935|963936|963937|963938|963944|963945|963946|963947|963948|963949|963950|963951|963952|963953|963954|963956|963957|963958|963959|963962|963963|963964|963965|963966|963967|963968|963969|963970|963974|963975|963976|963978|963979|963982|963984|963985|963988|963989|963990|963991|963992|963993|963994|963995|963996|963997|963998|964001|964004|964005|964006|964007|964008|964009|964012|964013|964014|964015|964016|964017|964018|964020|964021|964022|964023|964026|964027|964028|964029|964031|964032|964033|964034|964035|964037|964038|964039|964040|964041|964042|964043|964044|964045|964046|964047|964048|964050|964051|964053|964054|964056|964057|964058|964059|964060|964061|964062|964063|964064|964065|964066|964067|964068|964156|964157|964167|964194|964268|964275|964278|964308|964334|964349|964357|964434|964458|964461|964466|964497|964535|964585|964601|964614|964617|964623|965290|965443|965458|965462|965463|965467|965469|965470|965477|965484|965485|965489|965493|965511|965513|965517|965520|965524|965525|965531|965532|965534|965535|965542|965560|965561|965563|965564|965570|965571|965572|965573|965574|965575|965576|965577|965579|965583|965584|965735|965736|965737|965738|965739|965740|965741|965742|965743|965744|965745|965746|965747|965748|966219|966220|966229|966230|966233|966234|966235|966237|966239|966240|966242|966245|966246|966247|966248|966249|966250|966254|966257|966259|966261|966262|966263|966265|966267|966268|966269|966270|966271|966272|966273|966274|966277|966280|966281|966282|966286|966287|966289|966291|966294|966296|966298|966300|966301|966305|966306|966308|966309|966314|966318|966319|966321|966337|966905|966906|966907|966908|966909|966910|966911|966912|966913|966914|966916|966917|966918|966919|966920|966921|966922|966923|966924|966925|966926|966927|966928|966929|966930|966931|966932|966933|966934|966935|966936|966937|966938|966939|966940|966941|966942|966943|966944|966945|966947|966948|966949|966950|966951|966952|966953|966954|966955|966956|966957|966958|966959|966960|966961|966962|966963|966964|966965|966966|966967|966968|966969|966970|966971|966972|966973|966974|966975|966976|966977|966978|966980|966981|966982|966983|966984|966985|966986|966987|966988|966989|966990|966991|966992|966993|966994|966995|966996|966997|966998|966999|967000|967001|967002|967003|967004|967005|967006|967007|967008|967009|967010|967011|967012|967013|967014|967015|967016|967017|967018|967019|967020|967021|967022|967023|967024|967025|967026|967027|967030|967031|967032|967033|967034|967035|967036|967037|967038|967039|967040|967041|967042|967043|967044|967045|967046|967047|967048|967249|967252|969330|969331|969332|969333|969334|969335|969336|969337|969338|969339|969340|969341|969342|969343|969344|969345|969346|969347|969348|969349|969350|969351|969352|969353|969354|969355|969356|969357|969358|969359|969360|969361|969362|969363|969364|969365|969366|969367|969368|969369|969370|969371|969372|969373|969374|969375|969376|969377|969378|969379|969380|969381|969382|969383|969384|969385|969386|969387|969388|969389|969390|969391|969392|969393|969394|969395|969396|969397|969398|969399|969400|969401|969402|969403|969404|969405|969406|969407|969408|969409|969410|969411|969412|969413|969414|969415|969416|969417|969418|969419|969420|969421|969422|969423|969424|969425|969426|969427|969428|969429|969430|969431|969432|969433|969434|969435|969436|969437|969438|969439|969440|969441|969442|969443|969444|969445|969446|969447|969448|969449|969450|969451|969452|969453|969454|969455|969456|969457|969458|969459|969460|969461|969462|969463|969464|969465|969466|969467|969468|969469|969470|969471|969472|969473|969474|969475|969476|969477|969478|969479|969480|969481|969482|969483|969484|969485|969486|969487|969488|969489|969490|969491|969492|969493|969494|969495|969496|969497|969498|969499|969500|969501|969502|969503|969504|969505|969506|969507|969508|969509|969510|969511|969512|969513|969514|969515|969516|969517|969518|969519|969520|969521|969525|969526|969527|969528|969529|969530|969531|969532|969533|969534|969535|969536|969537|969538|969539|969540|969541|969546|969759|969772|969777|969881|969887|969976|969977|969978|969979|969980|969981|969982|969983|969984|969985|969986|969987|969988|969989|969990|969991|969992|969993|969994|969995|969996|969997|969998|969999|970000|970001|970003|970258|970335|970359|970360|970361|970430|971289|971347|971384|971386|971388|971390|971392|971393|971397|971398|971399|971400|971402|971404|971407|971408|971409|971412|971413|971414|971415|971416|971420|971423|971425|971428|971429|971430|971432|971434|971438|971439|971447|971448|971449|971450|971452|971455|971456|971457|971458|971459|971462|971463|971464|971465|971470|971471|971472|971473|971474|971476|971478|971480|971481|971483|971484|971488|971489|971492|971493|971496|971497|971499|971501|976525|976699|977359|977360|980653|980654|980657|980658|980660|980661|980663|980673|980675|980676|980679|980681|980683|980684|980692|980693|980698|980699|980700|980702|980705|980707|980708|980709|980710|980711|980715|980716|980719|980724|980725|980726|980730|980736|980737|980738|980740|980747|980748|980749|980750|983685|983688|983691|983846|984026|984027|984028|984030|984031|984032|984033|984034|984035", + "text": "Intellectual disability" + }, + { + "baseId": "15172", + "text": "CYSTATHIONINE BETA-SYNTHETASE POLYMORPHISM" + }, + { + "baseId": "15173|15174|15175|15176|15177|174132|174688|190344|190346|229679|433987|615805|615806|799588", + "text": "Deafness, autosomal recessive 79" + }, + { + "baseId": "15178|15179|15180|15181|15182|15183|15184|206610|206611|206612|206613|206614|206615|206616|206617|206618|206619|206620|206621|206622|206623|206624|206625|206626|206627|206628|206629|206630|206634|206635|257436|257437|257440|257442|446305|446898|446899|469481|469482|469486|469495|469499|469501|469502|470542|470544|470546|470549|471043|471045|471051|471067|471502|471504|471505|471507|471513|471518|471530|481243|533720|533724|533730|533732|533736|533738|533741|533742|533754|534297|534303|534307|539010|571412|571416|571418|571420|572987|572991|573683|573685|573695|575139|575140|612166|612335|648849|648850|648851|648852|648853|648854|648855|648856|648857|648858|648859|648860|648861|648862|648863|653115|653643|654917|654918|694597|694598|694599|694600|694601|694602|694605|695853|742564|757711|773262|773264|773265|848612|848613|848614|848615|848616|848617|848618|848619|848620|848621|848622|848623|848624|848625|848626|848627|848628|861426|929266|929267|929268|929269|929270|929271|939058|939059|939060|940515|951180|951181|958922|958923|958924", + "text": "Brown-Vialetto-Van Laere syndrome 1" + }, + { + "baseId": "15185|15186|15187|15188|15189|15190|15191|15192|15193|15194|15195|15196|15197|15198|15199|15200|15201|15202|15203|15204|15205|15206|15207|15208|15209|15210|15211|15212|15213|15214|15215|15216|15217|15218|15219|15220|15221|15222|70750|70751|70753|70754|70755|70758|70759|70760|70761|70762|70763|70764|70765|70767|70768|70769|70770|70771|70772|70773|70774|70775|70776|70777|70778|70779|70780|177892|190734|195866|309693|309697|309698|309706|309709|309710|314547|314550|314565|320614|320618|320619|320620|320624|320637|321119|321129|321131|321132|321135|321136|321139|360916|361582|437880|459717|460162|460174|460181|460185|525219|525530|545381|563616|564512|588588|590288|638770|638771|651951|692797|692799|692800|695471|723829|737391|759784|759906|767658|775452|783555|800691|818276|836691|836692|852231|865570|865571|865572|865573|865574|865575|865576|865577|865578|865579|865580|865581|865582|865583|865584|868456|925762|925763|925764|934977|940164|946836|946837|946838|956003|956004|956005|978624|978625|978626|978627|978628|978629|978630|978631|978632|978633", + "text": "Ornithine aminotransferase deficiency" + }, + { + "baseId": "15201|15220", + "text": "Gyrate atrophy of choroid and retina with pyridoxine-responsive ornithinemia" + }, + { + "baseId": "15223|15224|15225|15226|106014|106015|106016|106018|106019|106024|106025|106026|106027|106028|106029|303758|303759|303760|303766|303768|307251|307253|307258|307261|307262|312127|312128|312207|312225|312232|359881|619920|620282|711227|898593|898594|898595|898596|898597|898598|898599|898600|898601|898602|898603|898604|898605|898606|898607|898608|900429|961046|961062", + "text": "Dihydropyrimidinase deficiency" + }, + { + "baseId": "15227|15228|15229|15230|70572|191174|191175|191352|213775|251841|251842|251843|251844|271767|273301|296826|296837|296838|296839|296841|296842|296845|296846|296848|296849|296851|296852|296861|296866|296871|296873|296878|296880|296885|296892|296908|296909|296917|296919|296921|296925|296928|296932|296944|296960|298791|298792|298793|298794|298797|298798|298799|298803|298807|298808|298810|298812|298819|298820|298826|298828|298829|298830|298833|298835|298838|298840|298841|298850|298851|298852|298854|303002|303003|303009|303054|303058|303059|303060|303062|303063|303067|303088|303089|303090|303092|303094|303108|303111|303139|303141|303142|303148|303167|303168|303169|303170|303171|303172|303175|303178|303189|303198|303199|303201|303202|303204|303218|303226|303237|303251|303254|303261|303264|303266|303273|303277|303278|303279|303282|303288|303298|303303|303304|303306|488706|491270|493099|538377|709828|735009|788775|893877|893878|893879|893880|893881|893882|893883|893884|893885|893886|893887|893888|893889|893890|893891|893892|893893|893894|893895|893896|893897|893898|893899|893900|893901|893902|893903|893904|893905|893906|893907|893908|893909|893910|893911|893912|893913|893914|893915|893916|893917|893918|893919|893920|893921|893922|893923|893924|893925|893926|893927|893928|893929|893930|893931|893932|893933|893934|893935|893936|893937|893938|893939|893940|893941|893942|893943|893944|893945|893946|893947|893948|893949|893950|893951|893952|896077|896078", + "text": "Frank-Ter Haar syndrome" + }, + { + "baseId": "15231|553277", + "text": "Spinocerebellar ataxia type 8" + }, + { + "baseId": "15232|15233|15234|15235|53055|53056|53057|53058|173952|229177|293452|293455|293459|294857|298476|298478|298497|298501|298503|298550|298551|298553|298554|298567|513051|620164|890679|890680|890681|975781", + "text": "Deafness, autosomal recessive 25" + }, + { + "baseId": "15236|15236|15237|71023|71023|131828|131829|190353|190354|193481|214309|214310|214311|254216|254219|267184|274218|274218|314373|314380|320991|320993|320997|320998|320999|321003|327057|327058|327075|327082|327091|328152|328160|328166|357972|357973|357974|357975|357976|444839|490294|546039|546040|546321|546327|546451|546455|546462|546470|546472|546474|546667|546677|546686|546690|588035|588644|589661|687793|687794|695529|838578|838580|868159|868160|868161|868162|868163|868164|868165|868166|868167|868663|979013|979014|979015", + "text": "Joubert syndrome 2" + }, + { + "baseId": "15236|15236|15237|15238|15239|71023|71023|131828|131829|190353|190354|254216|254219|267184|274218|274218|314373|314380|320991|320993|320997|320998|320999|321003|327057|327058|327075|327082|327091|328152|328160|328166|357972|357973|357974|357975|357976|546039|546040|546321|546327|546451|546455|546462|546470|546472|546474|546667|546677|546686|546690|589661|868159|868160|868161|868162|868163|868164|868165|868166|868167|868663", + "text": "Meckel syndrome, type 2" + }, + { + "baseId": "15236|15237|15438|15439|15786|16108|16108|16109|16111|16113|16115|16115|16117|16117|16372|16376|16378|16381|16415|16416|16417|16422|16422|16430|16431|16431|16432|17049|17054|39859|40059|40137|49510|49525|49539|49564|70517|70940|70942|70951|70955|70955|71023|71256|71256|71263|71368|71369|71372|71373|71377|71378|71379|71401|71404|71406|71422|90149|91061|99436|99438|99439|99439|101414|101586|101587|101587|101588|101588|101589|101590|101590|101652|101653|102062|102064|102064|102066|102422|102423|102929|105736|105739|105741|105746|105748|105749|105750|105753|106469|106470|106471|106738|131759|131760|131761|131766|131768|131769|131772|131774|131779|131780|131781|131783|131784|131787|131789|131790|131794|131801|131804|131806|131807|131807|131809|131809|131811|131811|131812|131812|131815|131817|131818|131819|131820|131821|131823|131824|131826|131827|131828|131829|131831|131833|131834|131836|131839|133770|133771|133772|133773|133774|133775|133776|133777|134709|134710|134711|134712|134713|134714|134715|134716|134717|134718|134719|134720|134721|134722|134723|134724|140430|140431|140432|140433|152870|152874|153777|166167|168893|168894|168897|169944|169945|169946|169948|169949|169950|169951|169953|177011|177012|177013|177143|177234|177274|177275|177286|177406|177407|177418|177477|177556|177557|177558|177559|177569|177571|177572|177574|177624|178021|178098|181164|181446|186227|186227|186228|186262|186262|186263|186286|186289|187119|188890|190353|190354|190671|190783|190824|190880|190880|191063|191063|191068|191182|191183|191418|191581|191704|191705|191705|191726|191794|191795|191827|191879|191930|191933|191981|191982|191983|191984|192032|192033|192056|192150|192679|192691|192931|192993|192997|193066|193138|193138|193150|193197|193481|193638|193874|193875|193954|193955|193956|194205|194245|194246|194340|194464|194464|194668|194735|194758|195134|195422|195423|195425|195426|195571|195612|195613|195754|195923|195923|196042|196300|200983|205194|205331|207109|207113|207326|207656|207657|207658|207935|207940|207998|208003|208284|208285|208288|208288|208403|208884|208885|212357|212518|212519|212651|212652|212653|212654|212657|212658|212991|212992|213013|213014|213015|213016|213495|214172|214177|214179|214182|214183|214187|214189|214193|214194|214194|214196|214231|214237|214240|214244|214249|214251|214252|214256|214280|214282|214295|214296|214297|214298|214299|214300|214301|214302|214303|214304|214305|214306|214307|214309|214310|214312|214313|214314|214315|214316|214317|214318|214319|214320|214322|214325|214326|214327|214328|214329|214330|214335|214336|214337|214338|214340|214342|214343|214356|214357|214357|214358|214359|214360|214361|214362|214363|214364|214364|214365|214366|214367|214368|214369|214370|214371|214372|214373|215459|215540|215782|221627|221800|221801|222203|222267|222267|222490|222686|222687|222882|237020|237090|237107|237317|237317|237473|238059|238061|239335|239337|239339|239340|239341|239342|239893|239894|240433|241226|241237|241249|241579|241580|241581|241582|242442|242442|242443|242615|242824|242825|243343|243721|243764|243896|243906|247084|248681|248682|250481|251352|251360|252123|252125|252129|252133|252138|252139|252141|252619|253195|253203|253207|253212|253472|253479|253480|254410|254445|254734|254740|254742|254760|254761|254762|254763|255806|255806|255811|255814|255815|255817|256098|256100|256102|256103|256285|256287|256291|257135|257137|257138|260117|260117|264538|264717|265351|265360|265487|265781|265876|266004|266616|266978|267031|267183|267184|267823|268040|268059|268059|268140|268166|268659|269093|269621|269753|269778|270185|270311|270778|270862|270917|271121|271206|271215|271215|271427|271440|271483|271597|271830|272079|272162|272794|272796|272797|272946|273009|273848|274218|274283|274669|275383|275392|275428|281544|282439|282504|283168|283170|284646|284675|284750|285195|285200|285204|286616|287044|287046|287748|291780|292623|292626|294001|294003|294005|294012|297390|297399|297424|297442|297472|299158|299165|299569|299628|301559|301562|301563|301576|301892|301897|301914|301920|301945|303750|304072|305057|305059|305936|305941|306008|307615|307651|307654|309703|309704|309741|309878|311897|314352|314353|314370|315372|315373|315532|316255|316266|316275|317954|317960|317965|317968|318585|318587|318602|318604|318607|320971|320975|320998|320999|323293|323618|323621|323625|325641|325647|325653|325653|325654|325654|326794|326805|326807|326830|326833|326850|326864|326876|327058|328107|328108|328109|328111|328116|328119|328121|328160|329161|329378|329753|329769|331024|332974|332978|332983|332990|332993|332994|334647|334649|334650|334653|334658|335303|335303|335321|335321|335322|335322|341790|341797|341797|341803|341803|343285|343285|343286|343287|343293|343298|345182|346576|346578|346584|353542|353701|357972|358457|359929|360055|360113|361484|363655|363660|363771|364169|367958|368348|368355|368357|368862|368864|368871|370192|370732|372581|372585|373261|373475|373481|375447|375452|375454|389204|393999|394140|395169|396651|396740|396747|396957|397048|398683|398862|399209|401190|401253|401960|401960|401967|401969|401974|402124|404091|404096|404098|404102|404456|404459|404499|406406|406408|406410|406411|406417|408757|408759|408763|408764|408765|408768|408769|408770|408772|409650|409651|415175|415498|415498|419004|419005|419006|419007|419008|419010|419011|419012|419013|420432|420433|420434|421479|423858|426028|428522|429461|429462|429950|429991|431772|433122|438708|438996|443884|445093|445097|445099|445588|445832|453023|453312|453406|453407|453805|453806|455300|455390|455758|455964|455966|455967|458103|458716|458921|459740|461608|461841|462217|462224|462475|462506|462513|462515|462516|462765|462769|463244|463251|463260|463263|463267|463268|463350|463355|463358|463360|466388|466493|466500|466502|467057|467368|468248|468480|468823|469855|470391|470506|470513|470926|471310|471312|471748|471751|471755|471990|472067|472068|472069|472070|488833|489058|489186|489341|489361|489372|489382|489383|489462|490151|490265|490294|490297|490946|491255|491410|491604|491604|491627|492196|492648|492651|492965|493445|494220|495514|497478|500929|501165|503188|504099|504663|504668|508343|508512|513323|513558|513575|513637|514649|514650|520063|521727|522028|524078|524343|524669|524676|524824|526672|526917|526957|527372|527391|527394|527399|527405|527407|527409|527410|527670|527673|527675|527917|527929|527931|527940|527942|530034|530041|530184|530188|530188|530351|530360|530364|530564|530565|531270|531444|531533|534556|534569|534570|535050|535051|536196|536908|536949|536950|539151|546462|548273|548558|548579|549492|559619|559621|559782|561966|562548|563035|563049|563539|563542|563543|563546|563782|565045|565230|565442|565737|565744|566400|567079|567083|567084|568182|568185|568186|568259|568264|568828|570303|571310|571722|571728|572093|572096|572100|572243|572252|573606|574322|574534|575335|575336|575337|575338|578475|582385|582385|582740|582794|582828|583685|583686|584729|584731|584821|585568|585858|586068|586349|587041|587551|588033|588426|588644|588824|588934|588955|609863|610526|610527|610528|612725|620156|622340|622900|623936|632054|632055|632056|632057|632058|632059|632060|634639|634640|634641|634642|637487|637488|637489|637490|637491|637492|637493|640633|641414|641415|641416|641417|641418|641419|641420|641421|641422|641423|641424|641425|641426|641427|641428|641429|641430|641431|641432|641433|641434|641435|644748|644749|644750|644751|644752|644753|644754|644755|644756|644757|645399|646234|646235|646236|646237|649729|649732|649733|651165|651183|651634|652345|652351|652570|653030|653635|654238|654381|656190|667259|670734|672202|678064|681862|682111|683762|683763|683764|683765|683766|683767|684067|684069|684070|684284|684285|684313|684354|684355|684356|684357|684358|684359|684600|684600|684601|684601|684602|684603|684603|684604|684604|684605|684605|684664|684665|684691|684692|684693|684821|685192|685245|685251|685252|685384|685385|685386|685419|686506|686507|686805|686806|686807|687436|687438|687792|687793|687794|687916|687918|688057|688058|688059|688061|688062|688063|688064|688065|688066|688067|688068|688069|688070|688072|688073|688075|688607|688607|688608|688608|688609|688611|688611|688612|688612|688613|688614|688614|688615|688795|688796|688797|688798|688799|688800|688801|688802|689064|689814|689815|689816|690055|690056|690142|690142|690143|690144|690144|690180|690181|691524|692637|693293|693294|693295|693296|693297|693299|693893|693894|693895|693895|694136|694789|694790|695529|695585|695699|695761|725297|725299|738885|744923|753623|753624|753625|755982|760254|767289|769332|770950|770950|770952|770953|776130|779208|784272|784273|784484|785298|785301|785651|791285|795546|796876|797341|797343|799078|801910|818725|818799|819429|819457|819664|819665|820098|820099|820100|820389|820443|820449|820450|820451|820526|820527|820836|820837|820838|821109|821563|828898|828899|828900|828901|828902|828903|828904|828905|828906|828907|828908|828909|828910|828911|831577|831578|831579|831580|831581|831582|831583|831584|831585|831586|831587|831588|831589|831590|831591|831592|831593|831594|831595|831596|831597|831598|831599|831600|831601|831602|831603|831604|831605|831606|831607|835149|835150|835151|835152|835848|835849|835850|835851|835852|835853|835854|835855|835856|835857|835858|835859|835860|835861|835862|835863|835864|835865|835866|835867|835868|835869|835870|835871|835872|838578|838579|838580|839310|839311|839312|839313|840342|840343|840344|840345|840346|840347|840348|840349|840350|840351|840352|840353|840354|840355|840356|840357|840358|840359|840360|840361|840362|840363|840364|840365|840366|840367|840368|840369|840370|840371|840372|840373|840374|840375|840376|840377|840378|840379|840380|840381|840382|840383|840384|840385|840386|840387|840388|840389|840390|840391|840392|840393|840394|840395|840396|840397|840398|840399|840400|843965|843966|843966|843967|843968|843969|843970|843971|843971|843972|843973|843974|843975|843976|843976|843977|843978|843979|843980|843981|843982|843982|843983|843983|843984|843984|843985|843985|843986|843987|843988|843989|843990|843990|843991|843992|843993|843994|843995|843995|843996|843996|843997|843997|843998|845654|845655|845656|845657|845658|845659|845660|845661|845662|845663|845664|845665|845666|845667|845668|847725|849684|849685|849686|849687|849688|849689|850970|851060|851062|851114|851316|851493|851523|851525|851594|851959|852229|852248|852501|852502|852506|852510|852654|852666|852702|852821|852823|852892|856412|856419|856630|856758|856762|856766|856767|870502|870505|870508|870516|870517|875432|875433|875437|877956|880551|890323|890328|895435|895438|895441|901539|901540|906233|906261|906275|919663|919664|920320|923448|923449|923450|924265|925501|925502|925503|926464|926752|926753|926754|926755|926756|926757|926758|926759|926760|926761|926762|926763|926764|926765|927849|927850|927851|927852|927853|927854|927855|927856|928087|928088|928386|928387|928388|928389|928390|929581|932220|932221|932222|932223|932224|932225|932226|932227|932228|932229|932230|932231|932232|933182|933183|933184|933185|933186|933187|933188|933189|934444|934445|934446|934447|934655|934656|934657|934658|934659|934660|934661|934662|934663|934664|934665|935606|935937|936284|936285|936286|936287|936288|936289|936290|936291|936292|936293|936294|936295|936296|936297|936298|936299|937486|937487|937488|937489|937490|937490|937491|937492|938036|938037|938038|938039|938040|938041|938042|938043|939454|939456|939960|940030|940141|940220|940275|940360|941022|941023|943859|943860|943861|943862|943863|943864|943865|943866|943867|943868|943869|943870|943871|943872|943873|943874|943875|943876|943877|944890|944891|944892|944893|944894|944895|944896|944897|944898|944899|946507|946508|946509|946510|946511|946512|946513|946514|946515|946516|946517|946518|947507|948179|948180|948181|948182|948183|948184|948185|948186|948187|948188|948189|948190|948191|948192|948193|948194|948195|948196|948197|948198|948199|948200|948201|948202|948203|948204|948205|948206|948207|948208|948209|948210|948211|948212|948213|948214|948215|948216|949431|949432|949433|949434|949435|949436|949437|949737|950046|950047|950048|950049|951628|953695|953696|953697|953698|953699|953700|953701|953702|953703|953704|953705|953706|954374|954375|954376|954377|954378|954379|954380|955756|955757|955758|955759|955760|955761|955762|955763|956536|956961|956962|956963|956964|956965|956966|956967|956968|956969|956970|956971|956972|956973|956974|956975|956976|956977|956978|956979|956980|956981|956982|956983|956984|956985|956986|956987|957788|957788|957789|957790|957790|957791|957792|957793|957794|957795|957796|957797|957798|957799|957800|957801|957801|957802|957803|957804|957805|957806|957806|958008|958196|958197|958198|958199|958200|958201|958202|959173|959174|959714|959799|959993|960061|960062|960063|960064|960529|960530|960680|960681|960793|960890|967126|967127|967128|967129|967130|967131|967143|971592|971593|971595|972522|972615|979768|979769|979770|979771|979772|979773|979774|979775|979776|979777|979778|979779|979780|979781|979782|979783|979784|979785|979786|979787|979788|979789|979790|979791|979792|979793|979794|979795|979796|979797|979798|979799|979800|979801|979802|979803", + "text": "Joubert syndrome" + }, + { + "baseId": "15236|71023", + "text": "TMEM216-Related Disorders" + }, + { + "baseId": "15240|15241|15242|33438|166127|488186|488187|488188|488189|488190|488191|488192|488193|488194|488195|488196|488197|488198|488199|488200|488201|488202|488203|550626|614428|715000|788899|937523", + "text": "Poikiloderma with neutropenia" + }, + { + "baseId": "15243|15244|15245|15246|442563", + "text": "Thyrotoxic periodic paralysis 2" + }, + { + "baseId": "15243|15244|15246|32666|32667|32668|152920|152921|152923|152924|152925|152926|447524|447676|556752|576456", + "text": "Thyrotoxic periodic paralysis, susceptibility to, 1" + }, + { + "baseId": "15247|15248|15250|15251|15252|15253|15254|15255|15256|15257|206589|206590|333091|333095|333098|333102|333104|333116|333117|333119|333120|333123|333124|333125|343197|343199|343206|343207|343212|343215|343216|343218|343220|343225|343228|343230|343232|343234|343243|348563|348564|348565|348566|348567|348569|348572|348575|348577|348578|348585|348586|349644|349646|349647|349649|349650|349652|349653|349656|349659|349660|349661|349663|349664|349665|349666|513660|587745|716363|716364|716365|716369|792814|798744|798745|880271|880272|880273|880274|880275|880276|880277|880278|880279|880280|880281|880282|880283|880284|880285|880286|880287|880727|880728", + "text": "Prolidase deficiency" + }, + { + "baseId": "15258", + "text": "Aspartylglucosaminuria, finnish type" + }, + { + "baseId": "15258|15259|15260|15261|15262|15263|15264|15265|15266|15267|15268|70577|70578|70579|70580|70581|70582|70583|70584|70585|70586|70587|70588|70589|70590|70591|70592|70593|98218|98219|98220|98221|186679|251371|274821|275494|292917|292920|292921|294280|294289|294294|294295|294296|294298|294300|297725|297726|297728|297735|297737|297738|297739|297747|297749|297820|297823|297829|297836|297837|297838|297839|297850|357328|357329|357330|357331|357332|357333|357334|357335|357336|359615|364242|367915|414968|487014|520079|543094|543096|543097|543366|543372|543382|543383|543388|543390|543392|543429|543441|563591|581752|612269|626142|632092|632093|651166|698437|709240|720841|734523|764382|764384|764385|764386|774894|777471|781902|781903|819465|828960|828961|828962|828963|828964|890484|890485|890486|890487|890488|890489|890490|890491|890492|890493|890494|890495|890496|890497|890498|890499|890500|891777|920201|939965|943904|943905|943906|953724|953725|978059|978060|978061|978062|978063|978064|978065|978066|978067|978068", + "text": "Aspartylglucosaminuria" + }, + { + "baseId": "15269|514848|514849", + "text": "Methemoglobinemia type 4" + }, + { + "baseId": "15270|15271|15272|171258|322861|322863|322864|322866|322867|322868|322874|322923|322926|322927|322945|322946|322958|322959|322963|322970|322975|332379|332385|332386|332393|332398|332435|332450|332454|332477|332479|332489|332501|332507|332513|332514|332516|339412|339420|339438|339441|339457|339467|339480|340805|340807|340823|340845|340864|340877|340881|340889|340893|340894|340899|340900|340915|340916|513221|513223|620873|873806|873808|873809|873810|873811|873812|873813|873814|873815|873816|873817|873818|873819|873820|873821|873822|873823|873825|873826|873827|873828|873829|873830|873831|873833|873834|873835|873836|873837|873838|873839|873840|873841|873842|873843|873844|873845|873846|873847|873848|873849|873850|873851|873852|873853|873854|873855|873856|873857|873858|873859|873860|873861|873862|873863|873864|873865|873866|873867|873868|873869|873870|873871|873872|873873|873874|873875|876538|876539|876541|876542|876543", + "text": "Amelogenesis imperfecta, hypomaturation type, IIA3" + }, + { + "baseId": "15273|15277|15278|15279|15280|15281|15282|15284|15286|15287", + "text": "Methemoglobinemia type 2" + }, + { + "baseId": "15274|15275|15276|15285|15288|15289|15290|15291|798115|815836|815837|815838", + "text": "Methemoglobinemia, type I" + }, + { + "baseId": "15283", + "text": "NADH-CYTOCHROME b5 REDUCTASE POLYMORPHISM" + }, + { + "baseId": "15284|789808|977297", + "text": "Deficiency of cytochrome-b5 reductase" + }, + { + "baseId": "15292|15293|15294|15295|15296|15297|15298|15299|15300|15301|139203|139204|139205|139208|139210|139211|139212|139213|139214|139215|139216|139217|139218|139219|139220|139221|139222|139223|139224|139225|139226|139228|139229|139230|139231|187973|187974|187975|187976|187978|187980|250968|250969|250971|250975|262034|262035|262036|288985|288989|288990|288994|288999|289717|289718|289736|289737|289740|289741|289742|289744|289748|292706|292719|292735|292745|292757|292759|292768|292777|292778|292971|292972|292973|292979|292990|292991|293016|293035|293036|432247|487043|542797|542798|542803|542805|542808|542809|542812|542813|542815|542951|542956|542964|542971|542973|542977|542983|542987|542991|542992|542993|542995|542996|542997|542999|543000|543001|543002|543003|543005|543007|543009|543010|543011|543012|543014|543016|543018|543019|543020|543024|543025|543026|543028|543030|543032|543035|543036|543038|543040|543047|543049|543052|543055|543059|543061|543062|543064|543065|543068|543069|543071|543073|543077|543087|552070|623133|683544|683546|720219|720220|720222|733843|733846|759237|763662|781572|790339|790340|792734|888054|888055|888056|888057|888058|888059|888060|888061|888062|888063|888064|888065|888066|888067|888068|888069|888070|888071|888072|888073|888074|888075|888076|888077|888078|888079|888080|888081|888082|888083|891577|891578|891579|891580|891581|904908|904909|904910", + "text": "Xeroderma pigmentosum, group C" + }, + { + "baseId": "15297|15298|15301|16033|16034|31605|31615|187973|187975|187980|208243|227299|259252|259693|262035|281797|282419|284079|288952|288959|288962|288963|288985|288989|288995|289707|289712|289736|289741|292653|292656|292665|292703|292885|292907|292911|292973|292975|292979|292990|293006|300294|300321|300324|300332|303027|303077|303106|303110|303140|303145|303147|307462|307472|307507|307584|307608|307626|307722|307743|307798|307800|309055|314262|319623|320876|327922|340564|343775|349077|349972|353260|353261|353538|432247|486987|487043|497233|542815|543019|543068|545011|545299|545337|545406|916903|916904|917127", + "text": "Xeroderma pigmentosum" + }, + { + "baseId": "15302|15303|15304|15305|15306|76406|176018|176020|176021|176022|176023|176161|176162|176163|176164|176165|176166|177676|213225|230664|230665|230666|230667|230668|230670|230671|242519|242521|242522|242523|242524|242525|242528|255914|255916|255917|255918|255921|255922|255924|255926|255929|255933|255934|255935|270915|326486|326488|326490|326494|326498|336292|336294|336295|336300|336302|342502|342505|342507|342510|342512|342516|342523|344144|344146|344148|401355|401359|401877|530607|530876|538457|684631|685426|688670|844420|844426|844428|876059|876060|876061|876062|876063|876064|876065|876066|876067|876068|876069|876070|876071|876724|876725|876726|876727", + "text": "Ciliary dyskinesia, primary, 13" + }, + { + "baseId": "15302|15306|15568|19993|20643|20644|20645|20646|39773|40205|40206|40207|40357|40358|48236|48297|48298|70497|70498|76611|76612|76629|76931|76936|76951|77872|77873|77874|77875|77879|94261|94263|94265|94269|94270|94432|143224|143225|143226|143227|143228|143235|166145|166146|167456|174693|174694|175107|175109|191937|194954|205407|205551|205552|205553|205554|205555|205556|205557|205558|205559|205560|205561|205562|205563|205564|205565|212669|221828|229686|240608|240610|240612|240613|253512|308215|308217|308221|308227|308228|308232|318484|318491|318494|318495|319006|319009|319010|319019|396873|459131|459429|459516|481248|481249|481250|525082|525084|545009|545244|563190|563920|638205|684089|684096|759741|901938|901939|901940|901941|901942|901943|901944|901945|901946|901947|901948|901949|901950|901951|901952|903391|903392|980935|983857", + "text": "Kartagener syndrome" + }, + { + "baseId": "15303|15304|15305|15542|15543|15544|19994|20643|20645|24941|40024|40026|40028|40029|40206|40358|45542|45639|45640|48236|48238|48239|48248|48250|48283|52532|52536|52541|52561|70498|75615|76544|76545|76611|76612|76858|76906|76931|76936|77321|77872|77875|77879|79339|86568|91155|94263|94265|94269|94432|98393|98757|98760|98761|99370|99584|99585|99586|99587|99588|99589|99590|99592|99593|99594|99595|99596|99597|99630|101391|101777|101787|101788|101789|101790|104615|104631|104680|104682|104687|104696|106437|141390|143224|143225|143228|152810|153742|173544|173545|173547|173548|173549|173551|173552|173553|173554|173557|173558|173559|173561|173562|173563|173564|173565|173566|173567|173568|173569|173570|173571|173682|173683|173684|173685|173686|173687|173688|173689|173691|173692|173693|173695|173697|173698|173699|173700|173701|173702|173703|173704|173705|173706|173761|173762|173763|173764|173902|173903|173904|174054|174055|174056|174057|174058|174059|174060|174062|174065|174066|174067|174068|174069|174070|174071|174072|174073|174074|174075|174076|174077|174078|174079|174080|174081|174082|174188|174189|174190|174191|174192|174193|174194|174195|174197|174198|174199|174200|174201|174202|174204|174205|174206|174208|174209|174211|174212|174213|174214|174215|174216|174217|174339|174340|174341|174342|174476|174477|174478|174479|174480|174516|174517|174692|174693|174694|175105|175106|175107|175108|175940|175941|176018|176020|176021|176022|176023|176024|176025|176161|176162|176163|176164|176165|176166|176246|176496|176497|176498|176506|176508|176509|176510|176511|176512|176633|176634|176635|176642|176643|176644|176645|176647|176648|176649|176986|177031|177094|177118|177249|177350|177676|177677|186011|186046|186047|186048|186049|186050|186074|186278|190557|190788|190792|191090|191198|191281|191408|191527|191781|191782|191937|191989|192069|192156|192499|192682|192683|192684|192685|192740|192829|192969|192970|194105|194332|194333|194478|194676|194678|194702|194954|195139|195179|195508|196328|196352|205156|205552|205563|205564|212294|212295|212296|212383|212494|212495|212497|212498|212499|212500|212501|212502|212503|212504|212516|212517|212573|212574|212575|212577|212669|213107|213108|213109|213111|213222|213223|213224|213225|213383|213408|213409|213410|213411|213412|213413|213414|213415|213416|213417|213506|215361|215550|221372|221373|221374|221375|221594|221595|221596|221597|221598|221599|221600|221601|221602|221603|221604|221631|221677|221678|221679|221680|221681|221682|221683|221684|221686|221687|221688|221689|221690|221691|221692|221693|221694|221695|221696|221828|222368|222369|222370|222371|222536|222745|222746|222747|226790|226791|226792|226802|227278|229034|229035|229036|229037|229038|229241|229242|229243|229245|229246|229247|229248|229249|229250|229252|229254|229255|229256|229258|229259|229260|229261|229262|229263|229265|229266|229267|229268|229269|229270|229379|229381|229382|229572|229573|229574|229575|229576|229577|229578|229579|229580|229582|229583|229584|229585|229586|229587|229589|229590|229591|229592|229683|229684|229685|229686|230527|230529|230530|230531|230532|230536|230664|230665|230666|230667|230668|230669|230670|230671|230672|230778|230779|230780|230781|230782|230791|230792|230794|230795|230796|230797|230798|230799|230800|230801|230802|230803|231130|231284|238696|238697|238698|238699|238700|238701|238702|238703|239119|239121|239122|239123|239124|239125|239126|239127|239128|239129|239242|239243|239244|239245|239246|239247|239248|239249|239250|239717|239718|239719|239720|239721|239722|239723|239724|239725|239726|239727|239728|239729|239730|239731|239732|239733|239734|239735|239736|239737|239738|239739|239740|239741|239742|239743|239744|239745|239746|239747|239748|239754|239762|239763|239764|239765|239766|239851|239852|239853|239854|239855|239856|239857|239858|239875|239876|239905|239906|239907|239908|239909|239910|239915|239916|239917|239918|239919|239920|239921|239923|239924|239925|239926|239927|239928|239929|239930|239931|239932|239933|239934|239935|239936|239937|240019|240020|240021|240023|240024|240025|240026|240027|240028|240029|240030|240031|240032|240033|240034|240035|240036|240037|240038|240039|240040|240041|240042|240043|240044|240045|240046|240047|240048|240049|240050|240051|240052|240053|240054|240055|240056|240057|240058|240059|240060|240061|240063|240064|240065|240066|240067|240068|240069|240070|240071|240072|240073|240074|240075|240076|240077|240078|240079|240080|240158|240159|240160|240161|240162|240163|240164|240168|240169|240170|240171|240174|240175|240176|240177|240178|240179|240180|240607|240608|240609|240610|240611|240612|240613|241845|241846|241847|242087|242518|242519|242521|242522|242523|242524|242525|242526|242527|242528|242819|242820|242821|242965|242966|242967|242968|242969|242970|242971|242972|242973|242974|242999|243000|243001|243002|243003|243004|243005|243006|243008|243009|243010|243011|243012|243013|243014|243360|243361|243362|243363|243364|243365|243366|243367|243368|243369|243370|243371|243553|243554|243556|243557|243597|243598|243622|243623|243624|243625|243626|243627|243628|243629|243630|243631|243724|243810|243812|243813|243961|248496|248511|251018|251022|251028|251029|251032|251035|251037|251679|251680|251681|251686|251689|251690|251694|251696|251700|251705|251706|251709|251712|251713|251715|251722|251725|251727|251729|251732|251734|251735|251738|251741|251748|251750|251751|251759|251761|251765|251768|251771|251784|251785|251786|251787|251788|252062|252063|252349|252667|252669|252670|252673|252674|252675|252677|252678|252679|252681|252683|252688|252694|252695|252696|252697|252698|252700|252703|252704|252707|252714|252715|252717|252721|252722|252726|252727|252729|252731|252738|252739|252740|252742|252744|252745|252746|252748|252754|252760|252764|252765|252767|252768|252769|252770|252771|252916|252919|252924|252935|252937|253031|253036|253039|253042|253510|253512|253516|253518|253520|254957|254958|254959|254960|254964|254965|254967|254968|255910|255913|255916|255917|255920|255921|255922|255923|255924|255926|255928|255929|255930|255933|256213|256216|256374|256381|256382|256384|256386|256387|256388|256390|256392|256393|256475|256479|256484|256485|256487|256489|256490|256497|256498|256499|256502|256504|256505|256509|256510|256511|257161|257163|257164|257165|257170|257173|257176|257177|257180|257184|257185|257186|257188|257189|257237|257242|257243|257244|257246|257247|257248|257251|257252|257253|257254|257256|257815|257822|257823|257827|257828|257829|259810|259856|265368|265708|265859|265964|266017|266593|268134|268139|270023|270304|270913|270915|271560|271935|272779|272981|273561|275490|275491|289561|289571|289573|289577|289583|289612|290331|290333|290334|290344|290345|290348|293424|293430|293441|293445|293446|293447|293877|293884|293921|293923|293927|293954|295383|295388|295457|295459|295473|295490|295502|295511|295517|295519|295520|295527|295540|295553|295554|295560|295568|297179|297279|297282|297285|297286|297294|297295|297306|297308|297346|297365|298814|298815|300975|300985|301002|301026|301032|301080|301084|301115|301127|301134|301136|301138|301142|301155|301156|301157|301177|301188|301193|301265|301269|301283|301291|301304|301315|301337|301379|301421|302412|302416|302418|302422|302425|302426|302429|302430|302431|302434|302442|302445|302446|302448|302449|302451|302456|302458|302462|302470|302471|302477|302479|302484|302491|302494|302496|302500|302503|302504|303151|305659|305660|305664|305665|305668|305679|305688|305690|305694|305695|305701|305715|305716|305732|305733|305734|305736|305747|305748|305749|305752|305754|305755|305763|305765|305770|305773|305776|305777|305778|305781|307630|307640|308212|308214|308215|308227|308228|310474|310486|310503|310505|310506|310507|310515|310516|310517|310520|310521|310522|310524|310531|310540|310541|310545|310547|310550|310551|310552|310553|310554|310563|310571|310572|310574|310575|310581|310582|310583|310684|310685|310697|310699|310700|310701|310708|310711|310712|310719|310722|310724|310730|310732|310746|310759|310761|310764|310765|310767|310770|310772|310778|310780|310783|310788|310791|310794|310801|310809|312602|318485|318495|320401|320629|320630|320643|321193|321210|321222|321231|321233|321234|321236|321256|326485|326498|328761|328763|329377|329433|329434|329435|329450|329451|329456|329757|329763|329765|330341|330369|330371|330388|330393|330397|330399|330403|330404|330405|330410|330416|330429|330436|330438|330439|330441|334402|334408|334411|334413|335996|336009|336011|336294|336296|336870|336876|336933|336946|336947|336948|336977|337973|337979|337981|338720|338728|338784|338822|338844|338856|338867|340057|340604|340614|340630|340632|340638|340643|342494|342496|342501|342507|342516|344154|344280|344282|344290|345743|345746|345756|345763|345769|346176|346306|347148|347151|347168|347646|347650|347657|347661|347662|349399|350412|353375|353377|353381|353524|353809|353810|353893|359641|359652|360307|363701|364039|389498|389680|389740|389763|390185|392481|392482|392484|392491|392495|392500|392503|392505|392506|392508|392578|392582|392665|392669|392671|392823|392826|392831|392835|392850|392852|392854|392856|392861|392862|393375|393390|393446|393627|393631|393634|393636|393811|393851|393852|394054|394282|394709|394713|394715|394728|394730|394732|394736|394740|394747|394749|394751|394756|394758|394759|394760|394763|394766|394769|394771|394773|394805|394811|394816|394818|394819|394820|394821|394822|394823|394826|394827|394829|394839|394840|394842|394852|394854|394866|394883|394886|394890|394957|394962|394965|394966|394968|394977|394978|394979|394983|394986|395000|395005|395008|395009|395012|395014|395017|395025|395026|395030|395031|395051|395052|395054|395055|395059|395068|395075|395122|395123|395126|395127|395129|395131|395133|395139|395142|395144|395148|395149|395150|395156|395161|395165|395167|395168|395177|395178|395182|395186|395271|395274|395278|395282|395286|395287|395294|395296|395298|395302|395308|395309|395312|395317|395321|395324|395327|395328|395329|395330|395335|395336|395341|395343|395345|395347|395348|395349|395350|395352|395353|395356|395357|395361|395362|395365|395367|395372|395377|395378|395380|395384|395386|395387|395390|395396|395397|395398|395401|395406|395468|395473|395477|395479|395481|395486|395491|395500|395508|395512|395516|395518|395520|395523|395530|395535|395539|395543|395544|395546|395547|395551|395553|395559|395560|395563|395567|395572|395575|395584|395587|395594|395599|395602|395603|395605|395613|395616|395617|395618|395626|395630|395635|395659|395662|395742|395743|395748|395751|395754|395757|395760|395761|395762|395771|395772|395773|395774|395776|395777|395779|395781|395783|395788|395789|395792|395794|395795|395796|395797|395800|395801|395803|395808|395811|395812|395814|395815|395817|395819|395824|395825|395826|395829|395849|395851|395852|395861|395865|395901|395904|395908|395919|395921|395936|395945|395948|395950|395957|395962|395970|395975|395977|395979|395994|395995|396005|396014|396016|396022|396120|396121|396126|396135|396140|396153|396155|396212|396216|396228|396230|396237|396239|396247|396249|396251|396252|396254|396272|396276|396277|396281|396285|396406|396417|396429|396432|396533|396872|396873|397090|397285|397291|397459|399648|399667|399816|400033|400213|400217|400218|400283|400405|400406|400408|400429|400762|400767|400769|400776|400785|401062|401353|401355|401359|401360|401364|401366|401368|401527|401877|401995|402111|402127|402157|402159|402506|402510|402511|402513|402515|402517|402518|402521|402524|402576|402584|402587|402591|402620|402625|402628|402631|402635|402749|402979|402983|402984|402988|403074|403075|403076|403077|403086|403087|403089|403136|403137|403139|403168|403191|403197|403201|403286|403291|403341|403345|403358|403572|403574|403587|403590|403592|403614|403616|403617|403618|403629|403707|403709|403751|403754|403760|403766|403767|403768|403769|403775|403786|403805|403810|403813|404089|404113|404122|404123|404126|404135|404138|404141|404242|404244|404255|404258|404262|404278|404297|404573|404575|404577|404578|410644|414987|414990|421525|434602|438950|443685|446887|450678|450679|450683|450772|450778|450785|450933|450937|450942|450943|450947|450948|450954|450957|450971|450976|450990|451881|451883|451971|451975|451978|451983|451986|451989|452010|452208|452209|452211|452216|452311|452312|452318|452440|452441|452443|452461|452462|452465|452538|452541|452657|452675|452845|453100|453882|454413|454499|454501|454509|454510|454517|454536|454548|454553|454559|454572|454574|454577|454585|454588|454595|454597|454598|454600|454602|454603|454605|454606|454607|454610|454611|454614|454615|454616|454617|454620|454622|454624|454627|454630|454631|454633|454635|454637|454642|454643|454648|454649|454653|454660|454674|454678|454679|454681|454685|454696|454698|455017|455020|455023|455027|455028|455029|455030|455032|455033|455043|455046|455049|455086|455092|455093|455098|455108|455113|455114|455123|455131|455134|455140|455153|455158|455162|455208|455211|455214|455305|455309|455335|455346|455350|455354|455368|455388|455391|455400|455402|455408|455411|455412|455417|455419|455422|455423|455425|455431|455435|455437|455439|455441|455442|455585|455586|455603|455605|455606|455609|455610|455612|455613|455615|455618|455630|455633|455677|455678|455742|455743|455747|455752|455754|455755|455772|455773|455775|455776|455777|455780|455785|455788|455791|455794|455796|455797|455802|455804|455807|455808|455809|455810|455814|455866|455930|455937|455942|455944|456043|456155|456157|456158|456160|456162|456166|456173|456183|456184|456186|456190|456192|456196|456199|456201|456203|456204|456208|456402|456408|456417|456428|456429|456430|456435|456451|456453|456455|456464|456469|456472|456481|456482|456484|456485|456489|456505|456507|456512|456513|456526|456535|456540|456543|456544|456546|456552|456555|456558|456559|456561|456562|456574|456576|456577|456579|456582|456584|456586|456596|456597|456601|456605|456612|456615|456625|456822|456884|456886|456916|456918|456926|456944|456949|456950|456952|456954|456958|456962|456963|456970|456971|456975|456980|456982|456985|456997|457001|457005|457006|457008|457010|457011|457024|457025|457030|457033|457034|457166|457168|457172|457174|457176|457178|457180|457182|457186|457188|457192|457200|457206|457208|457213|457216|457218|457220|457225|457227|457230|457232|457235|457243|457402|457403|457408|457410|457414|457416|457440|457441|457462|457469|457472|457475|457550|457554|457565|457566|457585|457587|457603|457604|457607|457611|457613|457614|457616|457617|457627|457629|457632|457634|457637|457638|457642|457650|457654|457658|457926|457930|457939|459131|459133|459135|459137|459139|459141|459147|459151|459152|459427|459429|459436|459510|459516|459522|459982|459989|459994|463247|463249|463254|463749|463754|463762|463770|463773|463777|464085|464092|464093|464098|464244|464248|464257|464263|464265|464267|464273|464400|464402|465204|465265|466068|466075|466294|466820|466823|466828|466844|466937|466937|467116|467119|467120|467123|467124|467455|467457|467459|467461|467463|467609|467613|467617|467623|467626|467803|468095|468285|468320|468325|468446|468447|468452|468457|468465|468472|468474|468818|468938|468939|468943|468946|468956|468958|468962|468968|469065|469067|469073|469221|469227|469295|469300|469301|469536|469549|469626|469628|469637|469639|469642|469643|470255|470257|470362|470363|470572|470580|470591|470674|470676|470785|470788|470794|470797|470798|470804|470811|470813|470819|471049|471054|471055|471059|471062|471068|471082|471202|471205|471214|471299|471306|471317|471320|471323|471546|471550|471563|471565|471648|471650|471656|471873|471875|472145|472146|472147|486156|486617|488343|489983|490539|496353|496417|496418|496925|497468|497670|511555|511556|511557|514267|518011|518019|518021|518054|518056|518061|518062|518063|518141|518659|518981|518993|518996|518997|519000|519005|519006|519007|519013|519016|519018|519024|519027|519181|519184|519190|519198|519201|519207|519209|519435|519537|519635|519684|520583|520716|520718|520721|520723|520729|520731|520745|520759|520761|520765|520768|520772|520780|520784|520961|520967|520973|520974|520981|520984|520988|520998|521006|521011|521015|521020|521021|521030|521032|521035|521038|521119|521121|521126|521128|521129|521133|521134|521144|521152|521156|521160|521164|521165|521167|521168|521171|521174|521179|521180|521183|521188|521189|521198|521202|521207|521208|521212|521213|521217|521218|521237|521240|521336|521338|521341|521498|521502|521504|521506|521508|521576|521631|521634|521636|521640|521647|521648|521650|521660|521661|521662|521664|521674|521703|521823|521828|521831|521843|521941|521943|521948|521949|521956|521958|521959|521960|521963|521965|521967|521969|521971|521973|521974|521979|521980|521986|521994|521995|521996|522001|522003|522007|522012|522020|522022|522029|522034|522036|522039|522041|522043|522047|522048|522059|522291|522315|522316|522328|522329|522330|522331|522344|522353|522355|522363|522365|522366|522369|522374|522382|522523|522525|522528|522530|522533|522535|522536|522537|522539|522545|522548|522550|522634|522763|522776|522778|522789|522790|522791|522793|522794|522795|522797|522798|522800|522802|522806|522807|522813|522815|522816|522817|522819|522821|522831|522833|522837|522838|522839|522840|522842|522845|522855|522857|522859|522867|522880|522882|522891|522898|522900|522904|522906|522910|522916|522918|522919|522922|522927|522930|523066|523189|523191|523192|523198|523200|523201|523209|523212|523216|523220|523223|523225|523231|523241|523259|523265|523272|523279|523367|523384|523393|524518|524526|524812|524816|524822|524935|525082|525084|528141|528145|528161|528170|528177|528185|528187|528521|528570|528646|528940|528949|529550|529553|530346|530350|530352|530438|530439|530540|530605|530607|530609|530619|530622|530636|530640|530642|530643|530846|530849|530859|530860|530863|530869|530876|531051|531147|531362|531760|531768|531881|531885|531887|531891|531898|531902|531929|531942|531945|531947|531950|531961|532000|532006|532008|532130|532144|532146|532278|532281|532285|533097|533101|533105|533106|533107|533198|533199|533212|533213|533215|533412|533413|533440|533465|533621|533623|533627|533628|533774|533776|533885|533887|533889|533891|533893|533936|533952|534339|534436|534438|535163|535164|538372|538394|539132|539133|543686|543690|543793|545244|548331|552084|557438|557988|557990|558854|558856|558858|559060|559393|559395|559397|559586|559588|559958|560139|560141|560143|560145|560149|560151|560153|560155|560157|560159|560161|560228|560230|560232|560234|560236|560238|560240|560242|560244|560246|560248|560250|560252|560254|560256|560258|560260|560262|560359|560419|560421|560423|560425|560478|560480|560482|560546|560548|560557|560708|560710|560712|560714|560716|560718|560720|560722|560724|560726|560728|560730|560812|560816|560819|560820|560836|560838|560840|560841|560843|560845|560847|560849|560850|560852|560856|560861|561252|561259|561261|561286|561290|561450|561453|561455|561457|561459|561461|561463|561467|561482|561483|561734|561737|561739|561749|561777|561778|561780|561790|561796|561797|561807|561812|561814|561820|561821|561823|561824|561826|561828|561838|561840|561843|561850|561851|561854|561858|561860|562139|562168|562193|562194|562592|562598|562604|562608|562780|562783|562785|562787|562790|562800|562802|562809|562813|562815|562817|562824|562827|562829|562831|562833|562835|562837|562838|562840|562841|562842|562852|563108|563115|563123|563134|563187|563188|563190|563191|563205|563208|563331|563339|563345|563553|563559|563561|563565|563566|563568|563573|563577|563579|563580|563584|563594|563598|563602|563609|563854|563919|563920|564102|564111|564185|564193|564194|564199|564201|564203|564206|564207|564209|564210|564218|564219|564221|564224|564398|564408|564413|564698|564700|564705|564706|564711|564715|564720|564733|564739|564752|564753|564754|564758|564760|564775|564784|565342|565628|565630|565631|565635|565637|565642|565644|565656|565666|565677|565678|565688|565872|565873|566450|566451|566458|566461|566469|566474|566668|566670|566674|566680|566682|566683|566687|566691|566692|566693|566706|566711|566718|566723|566724|566736|566739|566740|567109|567111|567123|567128|567210|568078|568079|568431|568432|568524|568668|568891|568892|568897|568898|568902|568916|568985|568990|568999|569536|569538|569710|569714|569831|569832|569834|569836|569837|570287|570539|570550|570560|570565|570567|570586|570889|570892|570893|570897|571104|571106|571217|571454|571561|571566|571579|571581|571584|571693|571695|572235|572236|572366|572372|572377|572381|572575|572585|572588|572789|572793|572795|572799|572808|572817|572822|572824|573024|573210|573215|573220|573421|573422|573427|573444|573448|573728|573801|574192|574194|574656|574657|574658|574659|574660|574661|574662|574663|574664|574999|575000|575001|575061|575062|575166|575167|575168|575169|584317|587528|589371|590985|590986|610479|610526|610527|610528|611679|611680|620482|621884|622850|624617|629765|629766|629767|629768|629769|629770|629771|629772|629773|629774|629775|629776|629777|629778|629779|629780|629781|631070|631071|631072|631073|631074|631075|631076|631077|631078|631079|631080|631081|631082|631588|631589|631590|631591|631592|631593|631594|631595|631596|631597|631598|631599|631600|631601|633189|633190|633191|633192|633193|633194|633195|633196|633197|633198|633199|633200|633201|633202|633203|633204|633205|633206|633207|633208|633209|633210|633211|633212|633213|633214|633215|633216|633217|633218|633228|633229|633230|633231|633232|633233|633234|633235|633236|633237|633238|633239|633240|633241|633242|633243|633244|633245|633246|633247|633248|633249|633250|633251|633252|633253|633254|633255|633256|633257|633390|633391|633459|633460|633461|633462|633463|633464|633465|633467|633468|633469|633470|633471|633472|633473|633474|633475|633484|633976|633977|633978|633979|633980|633981|633982|633983|633984|633985|633986|634514|634515|634516|634517|634518|634519|634878|634879|634880|634881|634882|634883|634884|634885|634886|634887|634888|634889|634890|634891|634892|634893|634894|634895|634896|634897|634898|634899|634900|634901|634902|634903|634904|634905|634906|634907|634908|634909|634910|634911|634912|634913|634914|634915|634916|634917|634918|634919|634920|634921|634922|634923|634924|634925|634926|634927|634935|634936|634937|635977|635978|635979|635980|635981|635982|635983|635984|635985|635986|635987|635988|635989|635990|635991|635992|635993|635994|635995|635996|635997|635998|635999|636000|636001|636002|636003|636004|636005|636006|636007|636008|636009|636010|636011|636012|636013|636014|636015|636016|636017|636018|636019|636020|636021|636022|636023|636024|636025|636026|636027|636028|636029|636030|636031|636032|636033|636034|636035|636036|636037|636038|636039|636040|636041|636042|636043|636044|636045|636046|636047|636048|636049|636318|636319|636320|636321|636322|636323|636328|636329|636330|636331|636332|636333|636334|636335|636345|636346|636347|636348|636349|636350|638200|638201|638202|638203|638204|638205|638206|638207|638208|638209|642460|642461|642462|642463|642464|642465|642466|642467|642468|643443|643444|643446|645066|645067|645068|645069|645070|645071|645072|645073|645074|645075|645076|645077|646087|646088|646089|646090|646091|646665|646666|646667|646668|646669|646670|646671|646672|646673|646674|646675|646676|646840|646843|646844|646845|646846|646847|646848|646849|646850|646851|646852|646853|646854|646855|646856|646857|646858|646859|648209|648210|648211|648212|648213|648214|648215|648216|648217|648218|648219|648502|648503|648504|648505|648506|648507|648508|648509|648510|648511|648512|648513|648888|649001|649002|649003|649004|650036|650037|650038|650749|651004|651211|651226|651293|651297|651327|651329|651331|651353|651365|651366|651397|651558|651609|651614|651656|651688|651716|651720|651722|651723|651791|651793|651794|652015|652163|652170|652172|652586|652693|652967|653078|653163|653374|653500|653504|653506|653508|653568|654318|654366|654417|654833|654835|683492|683569|683571|683663|683664|683665|683666|683667|683668|683669|683670|683671|683672|683673|683674|683675|683676|683677|683678|683679|683688|683689|683700|683701|683702|683703|683704|683705|683706|683707|683708|683755|683756|683785|683786|683788|683790|683794|683796|683799|683800|683802|683803|683805|683807|683866|683867|683868|683871|683872|683873|683874|683875|683877|683878|683879|683880|683882|683885|683887|683926|683934|683936|683937|683938|684088|684089|684090|684091|684092|684093|684094|684095|684096|684492|684493|684630|684710|684711|684712|684713|684715|684716|684722|684723|684724|684725|684726|684837|684838|684839|684840|684841|684842|684852|684853|684905|684994|685171|685172|685174|685196|685214|685215|685216|685217|685226|685254|685426|685488|686170|686173|686174|686175|686374|686375|686377|686439|686440|686617|686618|686619|686620|686621|686622|686623|686624|686625|686626|686627|686628|686629|686630|686631|686632|686634|686635|686636|686637|686638|686640|686641|686642|686643|686644|686645|686646|686647|686649|686689|686690|686691|686692|686693|686695|686696|686697|686698|686699|686700|686758|686759|686761|686789|686839|686841|686842|686848|686850|686851|686855|686859|686861|686862|686863|686865|687015|687018|687019|687023|687024|687025|687028|687029|687030|687031|687033|687035|687100|687101|687102|687111|687478|687479|687480|687481|687482|687483|687484|687485|687486|688299|688670|688671|688776|688828|688829|688830|688831|688834|688835|688836|688837|688839|688840|688841|688851|688854|688855|688856|688859|689110|689111|689112|689115|689116|689252|689490|689738|689772|689775|689776|689777|689778|689779|689786|689788|689789|689790|689808|689825|689826|689827|689828|689866|689868|689886|689947|689948|690185|690240|691703|691705|691706|691707|691714|691715|691716|691719|691720|691721|691726|691727|691728|691751|691752|691753|691754|691756|691902|691985|691987|692208|692210|692293|692659|692660|692662|693495|693498|693946|694185|694186|694187|694188|694189|694190|694191|694192|694213|694470|695140|695263|695264|695265|695266|695271|695274|695275|695779|698791|698792|698794|698804|698816|709632|709648|716576|721225|722025|722615|727406|727407|729579|734850|734855|734858|734864|734870|737111|742021|744195|744267|745335|747523|749226|749228|749229|750062|750063|750065|750563|759741|764869|764870|764872|764878|765674|766211|766410|771799|771800|771801|771802|771897|774985|775037|775541|776728|777363|777558|778314|778619|782147|782154|782155|782158|782160|782162|782171|782313|782314|782830|782832|787311|787547|787555|788081|798584|800971|800972|805332|819356|819546|819547|819548|819549|819550|819551|819552|819553|819554|819555|819688|819860|819861|819862|821154|821155|821156|821171|821273|821274|821784|821785|821786|826124|826125|826126|826127|826128|826129|826130|826131|826132|826133|827744|827745|827746|827747|827748|827749|827750|827751|827752|827753|827754|828358|828359|828360|828361|828362|828408|830177|830178|830179|830180|830181|830182|830183|830184|830185|830186|830187|830188|830189|830190|830191|830192|830193|830194|830195|830196|830197|830198|830199|830200|830201|830202|830203|830204|830205|830213|830214|830215|830216|830217|830218|830219|830220|830221|830222|830223|830224|830225|830226|830227|830228|830229|830234|830235|830236|830237|830238|830239|830240|830241|830242|830295|830296|830345|830346|830347|830349|830350|830351|830355|830356|830888|830889|830890|830891|830892|830893|830894|830895|830896|830897|830898|830899|830900|830901|830902|830903|831460|831461|831462|831463|831464|831465|831466|831467|831468|831469|831893|831894|831895|831896|831897|831898|831899|831900|831901|831902|831903|831904|831905|831906|831907|831908|831909|831910|831911|831912|831913|831914|831915|831916|831917|831918|831919|831920|831921|831922|831923|831924|831925|831926|831927|831928|831929|831930|831931|831932|831933|831934|831984|831985|833419|833420|833421|833422|833423|833424|833425|833426|833427|833428|833429|833430|833431|833432|833433|833434|833435|833436|833437|833438|833439|833440|833441|833442|833443|833444|833445|833446|833447|833448|833449|833450|833451|833452|833453|833454|833455|833456|833457|833458|833459|833460|833461|833462|833463|833464|833465|833466|833467|833468|833469|833470|833471|833472|833473|833474|833475|833476|833477|833478|833479|833480|833481|833482|833483|833484|833485|833486|833487|833488|833489|833490|833491|833492|833815|833816|833817|833818|833830|833831|833832|833833|833834|833847|833848|833849|836067|836068|836069|836070|841519|841520|841521|841522|841523|841524|844419|844420|844421|844422|844423|844424|844425|844426|844427|844428|845496|845497|846168|846169|846170|846171|846172|846173|846361|846362|846363|846364|846368|846371|846372|846373|846374|846375|846376|846377|846378|847809|847810|847811|847812|847813|848088|848089|848090|848091|848092|848093|848094|848095|848805|848806|848807|848808|850028|850029|850030|850031|850032|850922|851012|851161|851283|851335|851550|851636|851638|851866|851868|851878|851885|852074|852076|852078|852080|852155|852260|852271|852272|852345|852348|852352|852790|852890|852922|858269|871898|877777|892947|892952|892954|893015|893041|893057|893061|893076|897832|897835|897843|901947|901949|904347|904348|904349|904350|904351|904352|904353|922682|922683|923103|923104|923829|923830|923831|923832|923833|923834|923835|923836|923837|923840|923841|923842|923843|923844|923845|923846|923864|923865|923888|923889|924089|924090|924091|924092|924228|924229|924230|924231|924232|924351|924352|924353|924354|924355|924356|924357|924358|924364|924784|924785|924786|924787|924788|924789|924790|924791|924792|924793|924794|924795|924796|924797|924798|924799|924800|924801|924802|924803|924804|924805|924806|924807|924808|924809|924810|924811|924812|924813|924814|924903|924909|925563|925564|925565|927075|927076|927077|927078|927079|927080|927081|927981|927982|927983|927984|927985|928341|928342|928524|928578|928579|928580|928581|928582|928583|929008|929009|929010|929011|929012|929013|929119|929120|929121|929325|929326|929723|931265|931266|931267|931268|931269|931270|931847|931848|931849|931850|931851|932025|932675|932676|932677|932678|932679|932680|932681|932682|932683|932684|932685|932687|932688|932689|932690|932691|932692|932693|932694|932695|932712|932725|932727|932728|932930|932931|933141|933142|933143|933144|933145|933312|933313|933314|933315|933316|933317|933318|933319|933320|933321|933322|933323|933324|933814|933815|933816|933817|933818|933819|933820|933821|933822|933823|933824|933825|933826|933827|933828|933829|933830|933831|933832|933833|933834|933835|933836|933837|933986|933987|933988|933989|933991|933992|934737|934738|934739|934740|936628|937645|937646|937647|937648|938213|938214|938215|938275|938276|938280|938281|938754|938755|938756|938757|938758|938759|938860|938861|938862|938863|938864|939117|939118|939119|939932|939984|939985|939986|939987|939989|940036|940040|940041|940073|940144|940145|940373|940438|940744|940745|940798|940799|940804|940805|940875|940936|940937|941149|941235|942749|942750|942751|942752|942753|942754|942755|943428|943429|943430|943431|943432|943630|943631|943632|944361|944362|944363|944364|944365|944366|944367|944372|944373|944374|944375|944376|944377|944378|944379|944380|944381|944393|944395|944396|944413|944414|944415|944416|944637|944638|944861|944862|944863|945006|945007|945008|945009|945010|945011|945012|945013|945014|945015|945016|945017|945018|945019|945020|945021|945045|945564|945565|945566|945567|945568|945569|945570|945571|945572|945573|945574|945575|945576|945577|945578|945579|945580|945581|945582|945583|945584|945585|945586|945587|945756|945757|945763|946593|946594|946595|946596|948573|948574|948951|949613|949614|949615|949616|949975|949976|950346|950347|950352|950353|950837|950838|950839|950840|950929|950930|950931|951780|953025|953400|953550|953997|953998|953999|954000|954001|954002|954003|954004|954005|954006|954007|954008|954009|954010|954011|954012|954013|954015|954016|954017|954018|954019|954020|954021|954023|954024|954025|954026|954027|954028|954029|954030|954042|954049|954050|954051|954179|954331|954442|954443|954444|954445|954446|954447|954448|954449|955109|955110|955111|955112|955113|955114|955115|955116|955117|955118|955119|955120|955121|955122|955123|955210|955214|955215|955217|955803|955804|955805|955806|955807|955808|957223|957904|958295|958296|958297|958298|958299|958300|958301|958302|958345|958349|958675|958676|958677|958678|958679|958739|958740|958741|959289|959290|959291|959752|959756|959757|959804|959847|959848|959849|959864|959917|960521|960551|960582|960629|960630|965660|965661|965662|965663|965664|965665|965666|965667|965668|965669|965670|965671|965672|965673|965674|965675|965676|965677|965678|965679|965680|965681|965682|965683|965684|965685|965686|965687|965688|965689|965690|965691|965692|965693|965694|965695|965696|965697|965698|965699|965700|965701|965702|965703|965704|965705|965706|965707|965708|965709|965710|965711|965712|965713|965714|965715|965716|965717|965718|965719|965720|965721|965722|965723|965724|965725|965726|965727|965728|965729|965730|965731|965732|965733|965734|978127|978128|978129|978130|978131|978132|978133|978134|978135|978136|978137|978138|978139|978140|978141|978142|978143|978144|978145|978146|978147|978148|978149|978150|978151|978152|978153|978154|978155|978572|978573|978574|978575|978576|978577|979918|979919", + "text": "Primary ciliary dyskinesia" + }, + { + "baseId": "15307|15308|15309|15310|15311|53131|53134|53136|53137|53138|53139|53140|53141|53142|53143|53144|53145|53146|53147|53148|53149|53150|53151|53154|53155|53156|53157|53158|53159|53160|53161|53163|53164|53165|53166|53167|53169|53171|53172|53174|53177|53179|53180|53181|53183|53184|53186|53188|53189|53190|53191|53192|53193|53196|53197|53198|136688|136689|136690|136691|136692|142603|142604|174588|174589|174590|174591|174592|174594|174595|174597|174598|174599|174602|174603|174604|174864|174867|174868|174872|174874|174875|174878|174880|178601|178602|178605|178608|190999|191519|195284|196219|198185|198186|198187|198188|198189|198191|198195|198197|198198|198199|198201|198203|198204|198209|198210|198211|198217|198220|198221|198223|198224|198227|221937|229715|229717|229718|229719|229722|229723|229733|229735|240733|240734|240735|240736|240737|240738|240739|240740|240741|240742|240743|240744|240745|240746|240747|258622|258623|258624|258625|258626|258628|258629|309472|309480|309483|309489|309494|309503|309507|309508|314229|314234|314241|314243|314255|314258|314260|314261|314266|314267|314268|314280|314282|314283|314285|314294|314296|320079|320081|320092|320098|320103|320104|320115|320122|320124|320130|320131|320132|320144|320148|320149|320154|320155|320158|320161|320162|320164|320173|320176|320181|320187|320189|320205|320221|320238|320241|320242|320647|320650|320652|320653|320660|320661|320663|320673|320674|320678|320681|320686|320693|320710|359790|359819|370611|370614|370615|371141|371145|371152|371160|371537|371545|371549|371567|373272|397108|397114|397116|397135|397136|397137|397152|397375|397378|397381|397388|397538|397540|397544|397555|397675|397678|397684|397694|397702|407815|407816|421775|425862|459673|459676|459677|459687|459690|459693|459699|459860|459863|459865|459873|459875|459876|459880|459884|460020|460103|460105|460112|460115|460121|460122|460548|460550|460555|460559|460564|460576|460583|460587|460596|460598|460606|460608|460610|460613|503252|503253|503262|508844|508845|508846|508847|508848|508849|508850|508851|508852|510137|510138|510143|511030|511097|524929|524948|524953|524954|524955|524966|524969|524980|525142|525147|525148|525151|525158|525161|525162|525170|525175|525189|525190|525192|525194|525290|525291|525295|525300|525303|525312|525408|525464|525466|525469|525472|525474|525475|525479|538625|550881|563557|563562|563563|563570|563572|563576|564487|564489|564495|564496|566152|566154|566155|566166|566168|569472|569489|569495|569500|569504|609738|609739|620344|622691|638714|638715|638716|638717|638718|638719|638720|638721|638722|638723|638724|638725|638726|638727|638728|638729|638730|638731|638732|638733|638734|638735|638736|638737|651948|652250|654581|679444|684128|684129|684131|684132|687586|687587|687589|689971|692770|701171|723763|767627|767637|775449|775476|775603|796360|796366|820191|836605|836606|836607|836608|836609|836610|836611|836612|836613|836614|836615|836616|836617|836618|836619|836620|836621|836622|836623|836624|836625|836626|836627|836628|836629|836630|836631|836632|836633|836634|836635|836636|836637|836638|836639|836640|836641|836642|865406|865407|865408|865409|865410|865411|865412|865413|865414|865415|865416|865417|865418|865419|865420|865421|865422|865423|865424|865425|865426|865427|865428|865429|865430|865431|868443|918500|925737|925738|925739|925740|925741|925742|925743|925744|925745|925746|925747|934944|934945|934946|934947|934948|934949|934950|934951|934952|934953|934954|934955|934956|934958|946809|946810|946811|946812|946813|946814|946815|946816|946817|946818|946819|946820|946821|946822|946823|946824|946825|955979|955980|955981|955982|955983|955984|955985|955986|959928|960713|981681", + "text": "Dilated cardiomyopathy 1DD" + }, + { + "baseId": "15307|15309|15310|15365|19772|20564|23815|24426|24445|24645|27453|27453|27454|27690|27746|28675|28676|29147|29188|29190|29190|29516|29522|29523|29539|29543|29558|29566|31884|33195|33352|39353|39354|40451|40471|40472|40479|40498|40499|40500|40544|40551|40559|44293|44299|45109|45135|45135|45136|45138|45141|45269|45272|45272|45292|45401|45599|48043|48044|48808|49040|49167|51429|51431|51436|51439|51440|51732|51743|51745|51766|51796|51895|51983|51983|51992|51992|52026|52030|52036|52037|52065|52096|52108|52123|52135|52175|52198|52219|52239|52239|52245|52246|52253|52255|52258|52263|52268|52557|52562|52564|52574|52576|52584|52585|52587|52590|52636|52645|52794|52803|52806|52807|52808|52818|52828|53131|53139|53154|53163|53163|53166|53326|53411|53419|53427|53454|53476|53486|53503|53524|53528|53533|53680|53712|53747|53849|53863|53945|53949|54052|54075|54089|54093|54094|54115|54145|54223|54350|54357|54581|54639|54640|54642|54643|54644|54645|54647|54651|54652|54653|54656|54657|54659|54660|54661|54662|54664|54665|54666|54686|54768|54775|54781|54784|54790|54792|54793|54795|54798|54800|54804|55327|55576|55783|55809|55811|55832|55854|55886|55924|55958|55968|55997|56014|56020|56054|56064|56069|56075|56080|56088|56112|56141|56147|56151|56162|56168|56169|56175|56177|56178|56201|56212|56231|56235|56257|56278|56280|56284|56286|56296|56312|56327|56340|56349|56378|56402|56438|56441|56466|56488|56489|56492|56499|56562|56579|56622|56650|56661|56662|56664|56665|56678|56689|56699|56719|56763|56807|56809|56816|56821|56984|57005|57055|57192|57193|57194|57195|57196|57205|57206|57210|57225|57226|57231|57232|57233|57234|57238|57239|57240|57243|57244|57245|57248|57253|57255|57257|57259|57260|57262|57457|57482|57483|57484|57485|57486|57487|57488|57490|57495|77299|77299|77309|77316|77320|77687|77697|77699|77700|77753|77757|77774|77779|77803|77858|78369|78552|78626|78723|78801|78895|78915|100361|100410|100487|100756|102172|102190|102192|102203|102207|102215|132581|134503|136112|136674|136674|140106|140107|142212|142371|142372|142374|142375|142376|142381|143093|152012|153685|165472|165531|165532|165535|165553|165558|165561|165574|165583|165601|165602|165604|171048|171104|171133|171136|171141|171159|172177|172349|172360|172459|172487|172615|172623|172627|172630|172633|172649|172662|172664|172688|172690|172692|172696|172698|172707|172713|172726|172727|172790|172792|172818|172822|172832|172861|172880|172928|172932|172934|172935|172954|172959|172968|172994|173053|173067|173082|173086|173094|173096|173106|173110|173112|173115|173133|173141|173154|173163|173164|173220|173264|173321|173340|173350|173396|173403|173410|173465|173493|173633|173844|173847|173848|173854|173858|173859|173860|173866|173871|173922|173932|174000|174280|174383|174383|174483|174521|174524|174590|174600|174603|174608|174616|174622|174625|174626|174630|174635|174637|174639|174640|174641|174642|174779|174793|174880|174884|174887|174899|174900|174901|174902|174903|174905|174906|174908|174910|174912|174916|174918|174919|175146|175295|175296|175387|175414|175452|175468|175491|175495|175594|175599|175612|175623|175756|175863|175867|176098|176138|176317|176322|176439|176528|176766|176829|176939|177030|178191|178197|178206|178431|178436|178438|178440|178446|178456|178457|178470|178471|178473|178474|178475|178476|178477|178478|178481|178484|178519|178525|178526|178531|178540|178547|178548|178549|178552|178556|178564|178565|178566|178569|178605|178608|178609|178611|178623|178626|178627|178628|178635|178640|178643|178666|178669|178673|178676|178682|178684|178688|178709|178716|178731|178732|178736|178763|178764|178935|179281|179662|186151|188351|189250|189268|189307|189319|189377|189658|189857|189881|189882|189885|189921|189972|191293|192877|193417|193884|196450|196459|196467|196467|196470|196472|197005|197022|197036|197979|198007|198161|198163|198164|198165|198166|198169|198170|198182|198241|198242|198244|198245|198246|198248|198250|198251|198252|198305|198335|198346|198349|198351|198353|198475|198590|198767|198794|199026|199051|199141|199225|199274|199293|199344|199356|199437|199438|199459|199661|199724|205803|205804|213530|221942|224178|224181|224182|224183|224186|224200|224207|224208|224223|224224|224225|224226|224227|224228|224229|224230|224231|224232|224233|224234|224236|224237|224238|224240|224241|224243|224244|224253|224259|224261|224264|224269|224274|224276|224295|224297|224308|224311|224316|224319|224323|224328|224330|224331|224354|224374|224375|224379|224381|224384|224390|224393|224394|224412|224413|224419|224435|224436|224438|224439|224440|224441|224453|224455|224458|224462|224463|224473|224508|224512|224514|224519|224528|224546|224547|224561|224563|224564|224571|224572|224574|224576|224577|224584|224982|224983|224984|224985|224986|224987|224988|224989|224990|224991|224992|224993|224994|224995|224996|224997|224998|224999|225000|225001|225002|225003|225004|225005|225006|225008|225009|225010|225011|225012|225013|225014|225015|225016|225017|225018|225019|225020|225021|225022|225023|225024|225025|225026|225027|225028|225029|225030|225031|225032|225033|225034|225035|225036|225037|225038|225039|225040|225041|225042|225043|225044|225045|225046|225047|225048|225049|225050|225051|225052|225053|225054|225055|225056|225057|225058|225059|225060|225061|225062|225063|225064|225065|225066|225067|225068|225069|225070|225071|225072|225073|225074|225075|225076|225077|225078|225079|225080|225081|225082|225083|225084|225085|225086|225087|225088|225089|225090|225091|225092|225093|225094|225095|225096|225097|225098|225099|225100|225101|225102|225103|225104|225105|225106|225107|225108|225109|225110|225111|225112|225113|225114|225115|225116|225117|225118|225119|226430|227851|227852|228273|228275|228285|228287|228527|228571|228582|228610|228614|228632|228653|228686|228688|228692|228739|228748|228771|228842|228872|229164|229166|229168|229169|229498|229718|229742|229744|229747|229749|229754|229758|229760|229761|229762|229916|230208|230506|230595|238359|239212|239297|239319|239353|239354|239355|239356|240759|240761|240762|240764|240765|240766|240767|241801|243643|243644|243645|243646|243647|243648|243649|247399|248487|252605|259114|259117|259121|259122|259123|259125|259128|259131|259135|259139|267732|267735|273165|275301|283936|284090|311659|311663|311668|311669|311676|317232|317234|317236|317252|320399|323263|323265|323274|323869|323878|331630|339057|352158|352159|352160|352795|352796|352797|359958|360503|361057|362747|367623|369090|369099|369104|370678|371256|371261|371583|371628|371630|371639|373365|377391|378587|378614|378618|378699|379814|379818|379820|384439|390050|391151|391589|393912|393917|394337|397201|397203|397207|397208|397417|397596|397607|397611|397753|397756|403258|403688|403761|403762|403812|403815|403818|404083|404276|404280|404318|404320|405441|407847|415219|418202|418203|418204|419277|419279|419281|419286|419296|424551|426369|426370|438182|439873|440340|443088|443608|444580|444581|444583|446358|446359|446363|446585|448423|448428|448439|448442|448559|448570|448597|453112|453113|453181|453368|453484|453486|453865|455835|456069|459747|459756|459758|459921|459925|459933|459936|459941|460022|460193|460195|460207|460209|460213|460215|460217|460218|460221|460257|460638|461001|462133|469901|471346|471352|471358|471363|471366|471369|471370|471773|471797|481127|481130|481138|481141|481772|481868|485934|487217|487619|490449|491026|493565|496193|496213|496214|496247|496251|496578|496579|496658|496668|496675|496678|497125|497450|503186|507646|508364|509683|510139|510169|510170|510230|510266|510880|510882|510887|513911|513956|514041|514052|514088|514133|514185|514271|514360|516253|519847|519850|519874|519940|520101|521613|524866|525058|525259|525262|525377|525379|525557|525558|525559|525562|525579|534057|534069|534070|534072|534115|534548|534604|536589|536791|537013|551428|551708|557515|557517|558665|558955|558979|559168|559457|559647|559806|559808|563338|563570|563641|563666|563668|563671|563673|563683|564544|564689|566238|566241|566242|566248|566249|566251|569600|569603|569605|569609|569611|571702|571704|571706|573265|573266|573268|573272|573947|573948|575213|575214|575215|576324|576325|576326|576327|610480|614741|617333|624828|628363|628364|628365|628366|628367|628368|629101|629129|632117|632118|632119|632120|632121|632122|632123|632124|635251|638828|638829|638830|638831|638832|638833|638834|638835|638836|638837|638838|638839|638840|638841|639081|649189|649190|649191|649192|649193|649194|649195|649196|649197|649198|649199|649200|649201|651107|651167|652028|652031|652315|653221|653595|653609|654173|654176|654226|654229|654230|654461|672032|677127|677209|677212|677213|677214|677215|677216|677224|677226|677227|677231|677234|677248|677249|677258|679362|679371|679373|679376|679389|679393|679398|679401|679402|679404|679405|679420|679437|679444|679447|679459|679464|679524|679525|679528|679529|679530|679531|679532|679534|679535|679536|679544|679545|679546|679550|679559|679868|679870|679871|682183|683629|684916|685270|685831|686515|687616|687617|689264|689265|689980|691547|692823|692824|695229|720873|748848|759100|762134|775655|799015|819467|819468|820201|820202|821400|821401|824612|824613|824614|828991|828992|828993|828994|828995|828996|828997|828998|828999|836756|836757|836758|836759|836760|836761|836762|836763|836764|836765|836766|836767|836768|836769|836770|836771|836772|836773|836774|836775|836776|836777|849052|849053|849054|849055|849056|849057|849058|849059|849060|849061|849062|849063|849064|849065|849066|851598|851770|852241|852423|858250|858260|858261|866549|866550|866551|866552|866553|866554|866555|866556|866557|866558|866559|902885|902886|902887|902888|902889|902890|902891|903462|903742|918208|918483|922204|923479|925781|925782|925783|925784|925785|925786|929405|929406|929407|930745|932260|932261|935005|935006|935007|935008|939199|939200|939201|939202|939203|939204|940165|940523|940954|940955|941273|942175|942176|943913|943914|943915|943916|943917|943918|946854|946855|946856|946857|946858|946859|946860|946861|951342|951343|951344|951345|951346|951347|951348|951349|952599|953734|953735|953736|956030|956031|956032|956033|959026|959027|959028|959931|960534|960959|962129|962130|963098|963099|963100|963101|963102|963103|963104|963104|965296|965297|965312|967122|967123|980666|980668|980672", + "text": "Primary dilated cardiomyopathy" + }, + { + "baseId": "15307|15365|27484|29147|29148|29151|29152|45929|51986|51987|51991|51992|51993|52038|52039|52043|52056|52064|52066|52070|52080|52083|52091|52108|52111|52112|52123|52126|52171|52190|52194|52226|52252|52258|52261|52273|52645|54762|56273|77805|77852|136663|136674|142081|142091|152936|171164|172489|175443|175446|175516|175588|175590|175599|175606|175612|178672|179466|179471|179522|179525|179526|179579|179680|189445|197064|198899|199027|199253|213631|230497|230502|238538|254932|258803|258808|260507|260510|260511|260512|260513|260514|260517|260518|260519|260520|260521|260522|260523|260524|260525|260526|260527|260529|260530|260531|260532|260533|260534|260535|260538|260541|260544|328980|328997|335630|335643|335644|335647|335648|337446|337452|337458|337463|337469|337478|361876|538436|538437|551269|576065|609140|610572|656238|788880|798672|841243|841286|851989|871732|871733|871734|871736|871737|871738|871739|872363|872364|872365|961530|970992", + "text": "Dilated cardiomyopathy 1S" + }, + { + "baseId": "15307|19770|29517|29518|29519|29522|29523|29524|29529|29530|29543|29556|29566|38730|45135|45138|45141|45142|45599|51983|53131|53630|53956|54048|54562|56340|57195|57201|57207|57208|57209|57210|57212|57226|57227|57234|57235|57238|57240|57242|57250|57252|57261|57262|76672|77677|77750|77753|77757|77785|77796|77798|77818|77828|77852|78532|171145|172488|172489|174280|175721|179369|189824|189882|196270|196461|196463|196470|197065|197076|197939|198089|198130|198218|199039|199304|213610|223685|224183|226437|229844|230204|230494|231915|238151|238425|244222|244226|244232|259712|264565|265497|276591|276609|276614|276876|277432|277441|277446|277453|277456|277461|277537|368747|392211|420289|427650|444810|449108|495116|508080|509122|511002|511003|513495|517129|525475|536179|550299|556620|576413|611727|622303|626918|638734|672030|672460|681874|685575|777019|792654|796996|822803|828010|862419|862420|862421|862422|862423|864995|915170|918566|918567|964131|966404|966408|966410|966411|966412|966413|966414|966436|966437|966448|966449|966450|966474|966475|966486|966487|966495|966496|966497|966501", + "text": "Dilated cardiomyopathy 1A" + }, + { + "baseId": "15310|19768|23647|24435|27237|40479|49056|51797|51822|51920|51941|52071|52096|52135|52175|52809|53150|53190|53485|53680|53712|54073|54098|54246|54693|54748|56466|56562|57199|57240|57257|77735|77782|78664|78727|172357|172497|172608|172662|172968|173096|173871|173922|175485|175638|178436|178940|179175|189870|192373|194683|196456|198090|198307|198316|198562|204080|225057|226460|229486|229744|229746|229913|236815|258656|265379|397400|397403|397602|398280|407816|409090|416230|421324|421334|444822|481620|496342|508202|509205|510362|511043|511044|511055|511066|511082|511083|511085|511086|511098|511105|511109|511110|511116|511136|511143|514342|514344|589807|639084|639202|672372|672373|672374|672378|672381|672383|672384|672387|672388|672390|672391|672402|672404|672405|672408|672410|672411|672412|672414|672432|672439|672446|672458|672459|672461|672464|672465|904188|965824", + "text": "Primary familial dilated cardiomyopathy" + }, + { + "baseId": "15310|15365|15773|19283|19766|19767|19768|19773|20580|21793|21795|21796|21885|21892|23317|23318|23332|23642|23643|23647|23656|23660|23815|23820|25777|25787|25807|27447|27450|27460|27460|27461|27465|27495|27698|28456|28460|28465|28466|28473|28497|28518|28675|28676|29101|29102|29103|29104|29127|29128|29129|29131|29132|29133|29134|29136|29137|29141|29143|29144|29150|29153|29161|29163|29164|29190|29524|29525|29526|29537|29538|29543|29556|29558|29559|29566|31852|31853|31855|31857|31885|31889|33097|33098|33352|33362|33370|39099|39141|39951|40368|40370|40371|40374|40390|40426|40431|40437|40438|40439|40440|40441|40448|40451|40479|40543|40548|40549|40558|44290|44291|44292|44292|44293|44294|44295|44296|44297|44298|44299|44300|44310|44313|44314|44315|44316|44357|44436|44468|44630|44665|44666|44667|44668|44669|44670|44671|44672|44673|44674|44674|44675|44675|44676|44676|44677|44678|44679|44680|44681|44683|44684|44685|44686|44687|44688|44689|44690|44691|44692|44693|44694|44800|44801|44802|44803|44804|44944|45088|45103|45105|45106|45107|45108|45109|45110|45111|45112|45139|45140|45141|45142|45263|45264|45265|45269|45271|45272|45272|45275|45276|45290|45292|45293|45295|45296|45298|45301|45303|45304|45305|45307|45308|45310|45311|45313|45314|45315|45316|45341|45342|45345|45357|45358|45359|45390|45391|45393|45394|45396|45397|45398|45399|45400|45401|45402|45403|45404|45405|45406|45407|45408|45409|45410|45411|45419|45421|45422|45425|45426|45427|45432|45433|45531|45532|45534|45535|45536|45537|45538|45542|45547|45553|45557|45558|45559|45599|45725|45929|48805|49040|49167|49357|49462|49658|51095|51441|51442|51443|51444|51624|51626|51628|51629|51668|51669|51671|51673|51676|51680|51682|51685|51686|51688|51689|51691|51693|51694|51697|51703|51704|51705|51706|51707|51708|51709|51710|51711|51712|51713|51715|51716|51719|51720|51721|51726|51728|51732|51733|51734|51735|51736|51739|51741|51742|51743|51745|51746|51747|51749|51751|51754|51755|51757|51758|51763|51764|51765|51766|51768|51769|51770|51771|51773|51774|51776|51777|51778|51783|51784|51785|51787|51788|51789|51790|51791|51793|51794|51796|51797|51798|51801|51805|51807|51808|51814|51815|51817|51818|51819|51821|51822|51824|51825|51826|51828|51829|51834|51835|51838|51839|51841|51843|51844|51845|51846|51848|51849|51850|51851|51852|51854|51855|51857|51858|51858|51860|51861|51864|51865|51870|51873|51874|51875|51876|51879|51880|51881|51883|51886|51889|51891|51892|51893|51895|51897|51900|51904|51905|51906|51909|51911|51914|51920|51921|51922|51923|51924|51926|51927|51928|51930|51931|51933|51935|51937|51938|51941|51942|51943|51945|51947|51948|51949|51950|51954|51955|51956|51961|51962|51963|51964|51966|51967|51968|51969|51970|51974|51977|51979|51980|51981|51982|51983|51985|51986|51987|51989|51990|51991|51993|51995|51997|51998|51999|52002|52003|52011|52012|52013|52014|52016|52017|52023|52026|52027|52033|52034|52039|52042|52043|52044|52045|52046|52050|52054|52059|52060|52064|52066|52068|52069|52070|52071|52081|52085|52088|52090|52092|52096|52101|52107|52108|52109|52111|52112|52114|52115|52116|52118|52119|52120|52121|52122|52123|52125|52126|52127|52129|52130|52131|52132|52140|52142|52143|52144|52145|52146|52147|52149|52150|52151|52152|52155|52156|52157|52158|52159|52160|52161|52162|52164|52165|52168|52169|52171|52173|52174|52177|52179|52181|52182|52183|52184|52185|52188|52189|52190|52190|52192|52194|52197|52199|52200|52201|52202|52204|52205|52207|52208|52209|52212|52214|52215|52217|52218|52219|52220|52222|52223|52226|52227|52233|52234|52235|52237|52238|52241|52242|52243|52245|52246|52251|52252|52254|52256|52257|52259|52261|52262|52263|52265|52268|52270|52271|52273|52276|52283|52285|52286|52287|52289|52290|52291|52292|52294|52295|52296|52297|52298|52299|52300|52525|52531|52532|52533|52534|52536|52537|52538|52539|52540|52541|52542|52543|52544|52545|52546|52547|52548|52549|52550|52551|52552|52554|52558|52559|52561|52562|52563|52565|52567|52569|52570|52571|52573|52575|52577|52578|52580|52586|52588|52590|52592|52595|52600|52602|52604|52606|52608|52612|52613|52617|52619|52622|52623|52625|52628|52630|52636|52638|52639|52641|52642|52643|52644|52645|52648|52783|52784|52785|52786|52787|52788|52790|52791|52793|52799|52801|52804|52805|52809|52810|52812|52820|52821|52823|52824|52825|52829|52832|52833|52834|52835|52836|52837|52838|52839|52840|52841|52843|52844|52846|52850|52853|52854|52855|52856|52865|52867|52868|52870|52871|52874|52876|52877|52879|52881|52884|52885|52886|52887|52888|52890|52891|52892|52894|52896|52897|52898|52899|52900|52902|52903|52908|52909|52910|52911|52914|52915|52916|52919|52920|52922|52924|52925|52927|52928|52929|52930|52931|52932|52933|52934|52935|52936|52937|52938|52939|52940|52941|52944|52945|52946|52947|52951|52955|52956|52957|52958|52959|52960|52961|52962|52963|52964|52966|52967|52969|52971|52973|52974|52976|52979|52980|52982|52986|52987|52988|52989|52990|52991|52994|52995|52996|52997|52998|52999|53001|53002|53003|53005|53006|53007|53008|53009|53010|53011|53062|53064|53066|53071|53072|53073|53077|53078|53080|53084|53086|53089|53090|53093|53096|53098|53100|53109|53111|53112|53117|53120|53134|53137|53138|53139|53142|53146|53147|53149|53151|53154|53156|53158|53163|53163|53166|53167|53171|53172|53174|53177|53179|53181|53186|53188|53189|53190|53192|53193|53196|53197|53198|53320|53321|53323|53326|53329|53330|53338|53339|53349|53399|53402|53403|53406|53410|53413|53419|53422|53432|53440|53441|53444|53445|53450|53451|53454|53455|53456|53457|53459|53460|53462|53463|53464|53465|53466|53467|53469|53470|53471|53472|53473|53474|53474|53475|53476|53479|53480|53481|53482|53483|53484|53485|53486|53486|53489|53490|53492|53493|53494|53495|53496|53497|53498|53506|53513|53514|53516|53528|53532|53535|53540|53541|53546|53547|53548|53550|53551|53562|53565|53566|53567|53574|53575|53579|53580|53593|53601|53613|53615|53616|53617|53620|53627|53634|53636|53637|53638|53640|53641|53642|53648|53650|53653|53654|53656|53659|53660|53661|53664|53665|53667|53673|53676|53678|53684|53688|53691|53696|53700|53703|53704|53708|53709|53713|53745|53747|53858|53859|53861|53862|53863|53868|53872|53873|53874|53875|54017|54021|54022|54023|54024|54025|54027|54028|54031|54034|54035|54036|54040|54041|54042|54043|54044|54045|54048|54049|54051|54053|54054|54057|54060|54061|54062|54064|54065|54066|54067|54073|54074|54075|54075|54077|54078|54079|54080|54081|54082|54083|54084|54085|54086|54088|54090|54091|54092|54093|54096|54096|54097|54098|54100|54103|54104|54105|54106|54107|54108|54110|54112|54113|54114|54116|54117|54118|54120|54122|54123|54124|54127|54128|54129|54130|54131|54132|54134|54135|54136|54137|54138|54140|54141|54142|54143|54144|54147|54148|54149|54170|54172|54173|54174|54175|54177|54180|54181|54183|54185|54188|54190|54191|54192|54193|54195|54196|54197|54198|54199|54200|54202|54204|54205|54207|54209|54210|54214|54215|54216|54217|54219|54220|54222|54223|54224|54225|54228|54229|54230|54233|54234|54235|54236|54239|54240|54241|54243|54244|54246|54247|54248|54250|54251|54251|54252|54253|54254|54255|54256|54257|54259|54337|54338|54339|54344|54345|54346|54348|54354|54359|54361|54552|54553|54555|54557|54558|54559|54564|54566|54570|54576|54577|54580|54582|54587|54589|54591|54661|54675|54677|54683|54690|54692|54693|54696|54697|54698|54710|54713|54714|54716|54727|54743|54748|54749|54753|54757|54765|54772|54775|54779|54783|54788|54790|54793|54795|54796|54797|54798|54800|54803|54804|54804|54849|54851|54852|54853|54857|54858|54859|54861|54862|54864|54865|54867|54868|54869|54871|54873|54874|54875|54876|54877|54878|54879|54880|54882|54883|54884|54886|54887|54888|54889|54890|54891|54892|54895|54896|54898|54901|54902|54903|54905|54943|54944|54945|54945|54946|54947|54952|54997|54999|55002|55007|55007|55009|55015|55022|55301|55303|55304|55305|55306|55311|55312|55313|55315|55317|55318|55319|55320|55321|55322|55325|55326|55327|55328|55330|55331|55332|55334|55335|55336|55337|55338|55339|55340|55342|55343|55344|55347|55348|55349|55351|55352|55353|55354|55355|55356|55361|55365|55366|55367|55369|55370|55681|55682|55686|55687|55688|55691|55691|55692|55694|55699|55701|55738|55741|55744|55746|55750|55752|55756|55757|55759|55760|55762|55763|55764|55768|55769|55771|55774|55777|55779|55782|55783|55786|55787|55796|55798|55798|55800|55808|55809|55810|55813|55814|55816|55818|55819|55820|55823|55826|55839|55840|55841|55845|55846|55848|55850|55853|55855|55858|55859|55866|55867|55868|55876|55877|55878|55880|55882|55887|55891|55891|55892|55898|55904|55906|55910|55918|55929|55935|55936|55936|55943|55945|55952|55954|55956|55957|55960|55982|55984|55985|55994|55995|55997|55999|56002|56004|56006|56009|56013|56016|56018|56022|56029|56038|56041|56043|56045|56047|56048|56049|56052|56053|56054|56060|56066|56074|56076|56077|56079|56082|56083|56084|56087|56094|56096|56097|56099|56101|56108|56113|56115|56116|56118|56119|56131|56132|56135|56136|56137|56142|56143|56145|56148|56152|56153|56155|56160|56167|56172|56173|56176|56179|56180|56180|56181|56183|56187|56189|56190|56195|56196|56199|56201|56203|56205|56207|56209|56210|56211|56214|56214|56215|56222|56231|56233|56235|56240|56243|56248|56251|56253|56256|56264|56265|56271|56276|56281|56282|56289|56289|56302|56302|56303|56305|56307|56321|56322|56323|56323|56324|56325|56325|56327|56328|56330|56333|56339|56340|56342|56342|56343|56345|56347|56353|56353|56354|56354|56356|56359|56362|56364|56366|56367|56368|56373|56377|56381|56384|56387|56388|56390|56394|56395|56396|56401|56405|56409|56413|56413|56415|56418|56419|56430|56437|56439|56440|56441|56441|56443|56454|56457|56459|56462|56463|56466|56467|56469|56471|56472|56473|56477|56481|56483|56485|56486|56487|56497|56499|56499|56500|56503|56506|56508|56515|56516|56526|56528|56530|56537|56539|56540|56544|56549|56551|56556|56559|56560|56563|56564|56566|56569|56570|56572|56575|56576|56577|56578|56580|56582|56584|56586|56587|56597|56600|56601|56606|56608|56610|56616|56618|56620|56622|56631|56633|56634|56641|56643|56645|56647|56648|56652|56663|56671|56675|56681|56685|56689|56693|56700|56703|56705|56707|56708|56709|56715|56716|56718|56722|56723|56725|56729|56737|56738|56752|56753|56760|56762|56764|56766|56772|56775|56777|56778|56784|56790|56797|56797|56798|56800|56803|56804|56805|56805|56806|56809|56820|56822|56823|56828|56831|56834|56834|56837|56838|56841|56842|56842|56847|56849|56851|56855|56857|56870|56876|56881|56884|56887|56973|56975|56976|56978|56980|56985|56990|56992|56994|56995|57003|57007|57008|57051|57057|57061|57063|57064|57069|57070|57072|57074|57079|57197|57198|57199|57201|57204|57207|57208|57209|57211|57212|57213|57215|57216|57218|57219|57220|57226|57227|57230|57235|57238|57242|57246|57247|57250|57251|57252|57255|57256|57257|57261|57262|57280|57284|57457|57478|57484|57487|57488|57490|57495|65597|75578|77320|77508|77656|77671|77677|77691|77693|77694|77695|77698|77700|77701|77716|77748|77759|77761|77764|77765|77767|77791|77803|77807|77856|77858|77916|78502|78564|87691|89864|90404|91688|94537|98597|99382|99383|99385|100387|100508|100516|100602|100683|100756|100761|101186|102004|102134|102161|102169|102170|102195|102200|102206|102208|102210|102214|134503|135114|136041|136110|136111|136128|136129|136131|136136|136355|136670|136686|136689|136690|136692|136725|136732|139983|139987|140048|140738|140739|140861|140863|140867|140868|140869|140871|140873|140874|140875|140876|141245|141246|141379|141388|141398|141479|141490|141502|141509|141510|141515|141516|141524|141542|141544|141551|141603|141604|141605|141663|141664|141772|141803|142020|142021|142022|142077|142078|142079|142080|142081|142082|142083|142084|142086|142090|142091|142092|142093|142094|142095|142096|142097|142098|142102|142214|142394|142395|142397|142398|142513|142603|142604|142638|142639|142640|142642|142645|142646|142648|142649|142652|142653|142654|142655|142656|142657|142658|142802|165525|165534|165535|165536|165540|165560|165582|165583|165584|167352|167353|171048|171050|171057|171058|171059|171060|171061|171084|171102|171103|171104|171119|171133|171135|171136|171137|171138|171139|171140|171141|171142|171143|171144|171145|171146|171147|171150|171151|171157|171158|171159|171160|171161|171162|171163|171164|171192|171193|171194|171245|172177|172178|172179|172341|172343|172344|172346|172347|172348|172350|172354|172355|172361|172362|172367|172391|172392|172396|172397|172400|172402|172403|172404|172407|172409|172410|172411|172412|172415|172416|172417|172420|172421|172422|172425|172426|172428|172429|172434|172435|172436|172437|172460|172461|172473|172475|172477|172483|172485|172489|172490|172497|172533|172536|172537|172539|172541|172543|172545|172546|172547|172549|172553|172554|172555|172559|172561|172562|172564|172565|172567|172568|172573|172596|172597|172598|172609|172611|172621|172642|172646|172647|172651|172653|172656|172662|172671|172681|172684|172691|172697|172698|172699|172726|172787|172788|172791|172792|172793|172800|172807|172808|172850|172861|172872|172926|172934|172948|172951|172955|172963|172967|172968|172975|172981|172984|172987|172998|173009|173015|173030|173040|173041|173043|173053|173059|173061|173080|173081|173095|173099|173102|173114|173126|173133|173141|173155|173163|173166|173175|173192|173207|173208|173213|173231|173234|173242|173244|173246|173247|173248|173252|173258|173259|173264|173266|173267|173268|173308|173313|173314|173316|173320|173344|173355|173381|173396|173400|173446|173448|173452|173463|173488|173586|173603|173604|173621|173624|173628|173723|173751|173752|173753|173755|173757|173784|173797|173798|173799|173800|173802|173806|173808|173850|173852|173853|173855|173856|173858|173864|173868|173891|173893|173894|173895|173896|173939|173942|173943|173989|173990|173991|173996|173997|173997|173999|174000|174002|174005|174047|174048|174051|174052|174053|174134|174135|174136|174137|174142|174143|174144|174145|174182|174186|174187|174382|174383|174384|174385|174387|174520|174522|174590|174594|174597|174603|174610|174731|174735|174737|174738|174741|174748|174750|174751|174752|174755|174756|174757|174759|174765|174768|174769|174773|174775|174776|174778|174779|174780|174786|174788|174789|174791|174792|174793|174794|174796|174797|174800|174878|175011|175019|175032|175033|175043|175046|175047|175138|175139|175143|175145|175146|175148|175149|175153|175155|175157|175158|175173|175174|175178|175179|175180|175182|175185|175188|175193|175197|175203|175206|175210|175211|175212|175323|175386|175390|175393|175405|175411|175412|175415|175417|175419|175422|175426|175429|175436|175437|175440|175442|175446|175448|175449|175451|175453|175455|175456|175460|175462|175466|175470|175477|175479|175484|175487|175488|175490|175495|175497|175501|175503|175510|175513|175516|175517|175554|175565|175575|175577|175581|175582|175583|175586|175587|175588|175592|175593|175594|175598|175599|175600|175602|175605|175606|175607|175608|175615|175616|175625|175631|175646|175655|175656|175691|175694|175696|175721|175722|175724|175726|175728|175731|175861|175862|175863|175864|175865|175866|175867|175869|175870|175871|175994|175996|175999|176015|176076|176078|176079|176080|176101|176135|176137|176210|176226|176230|176232|176233|176340|176343|176348|176349|176353|176354|176356|176490|176513|176515|176516|176517|176518|176519|176521|176524|176526|176527|176529|176531|176532|176533|176534|176535|176536|176538|176541|176543|176653|176654|176655|176658|176659|176662|176665|176666|176667|176671|176672|176673|176675|176676|176677|176678|176679|176681|176808|176810|176829|176848|176927|177027|177380|177957|178037|178108|178124|178128|178129|178182|178203|178217|178218|178222|178223|178229|178259|178290|178432|178434|178436|178437|178438|178447|178448|178449|178452|178453|178455|178456|178457|178459|178469|178508|178509|178510|178511|178512|178550|178551|178552|178554|178556|178558|178559|178560|178561|178563|178566|178567|178615|178638|178639|178642|178655|178667|178672|178675|178679|178681|178683|178709|178715|178719|178725|178726|178729|178730|178748|178756|178916|178918|178919|178920|178923|178924|178925|178927|178929|178930|178932|178935|178940|178942|178943|178944|178947|178949|178957|178958|179060|179061|179065|179066|179071|179072|179079|179090|179092|179111|179116|179120|179122|179124|179125|179128|179129|179133|179134|179135|179136|179137|179171|179176|179185|179187|179193|179196|179197|179199|179203|179208|179209|179211|179212|179213|179216|179223|179224|179225|179229|179230|179232|179233|179240|179241|179242|179243|179245|179246|179248|179249|179253|179258|179259|179266|179268|179269|179270|179271|179272|179274|179279|179282|179283|179289|179292|179293|179297|179299|179307|179310|179315|179321|179324|179329|179331|179336|179341|179347|179348|179351|179358|179359|179360|179366|179369|179373|179378|179379|179381|179383|179387|179389|179394|179397|179399|179406|179407|179409|179424|179425|179426|179427|179428|179429|179433|179436|179437|179438|179464|179465|179466|179468|179470|179471|179473|179476|179482|179483|179490|179491|179492|179493|179494|179497|179499|179500|179501|179502|179503|179512|179514|179518|179522|179524|179535|179536|179540|179545|179551|179558|179566|179567|179572|179573|179576|179583|179597|179598|179612|179614|179616|179617|179640|179649|179653|179658|179662|179667|179669|179670|179672|179673|179693|179698|179700|179703|179708|179710|179711|179712|179714|179717|179725|179735|179736|179740|179751|179754|179783|179802|179852|179854|179855|179856|179858|179859|179860|179882|179894|179899|179911|179913|179921|179922|186303|186305|186327|186329|186330|186332|186333|186334|186335|186336|186339|186340|186345|186349|186352|186355|186358|186359|186363|186369|186386|186390|186396|186409|186410|186412|186415|186418|186423|186426|186461|186465|186468|186471|186476|186477|186479|186481|186486|186491|186498|186503|186513|186534|186564|186567|186571|186572|186573|186574|186577|186578|186585|188306|188327|188388|188392|188486|188488|188506|188804|188894|189184|189188|189190|189193|189195|189197|189200|189201|189203|189204|189205|189206|189239|189248|189264|189279|189287|189293|189295|189319|189343|189383|189384|189395|189396|189399|189402|189409|189451|189467|189493|189498|189507|189516|189522|189539|189541|189548|189560|189566|189580|189585|189589|189591|189602|189606|189655|189687|189733|189738|189770|189774|189775|189776|189780|189788|189805|189819|189820|189824|189826|189827|189831|189834|189847|189849|189863|189865|189870|189887|189889|189892|189898|189906|189909|189910|189911|189912|189933|189940|189948|189951|189956|189964|189965|189969|189979|189980|189981|189982|189983|189984|189986|189989|189991|189992|189993|189994|190006|190017|190640|191125|191293|191294|191461|191535|191628|191904|192072|192820|192881|192982|193006|193084|193086|193217|193227|193229|193241|193271|193313|193334|193416|193556|193734|193814|193961|193962|194297|194739|194779|195118|195122|195518|195533|196219|196270|196400|196411|196461|196463|196468|196477|196479|196485|196486|196487|196488|196502|196505|196510|196523|196533|196534|196538|196540|196542|196544|196545|196546|196552|196555|196556|196557|196560|196561|196563|196566|196567|196569|196571|196572|196573|196574|196575|196576|196577|196580|196586|196587|196588|196590|196593|196595|196596|196597|196600|196601|196602|196604|196605|196607|196608|196609|196610|196612|196620|196638|196640|196642|196643|196644|196645|196646|196647|196648|196650|196651|196652|196653|196658|196659|196661|196662|196663|196666|196668|196669|196670|196672|196673|196682|196689|196690|196697|196709|196711|196720|196721|196722|196723|196724|196734|196750|196752|197017|197020|197024|197025|197027|197032|197035|197036|197039|197040|197041|197045|197046|197050|197051|197053|197056|197057|197060|197064|197066|197067|197070|197073|197075|197076|197078|197079|197080|197081|197083|197086|197092|197096|197097|197098|197100|197102|197105|197106|197109|197110|197115|197116|197123|197126|197127|197929|197930|197931|197935|197936|197937|197940|197941|197943|197947|197948|197950|197951|197952|197956|197957|197959|197961|197962|197966|197967|197969|197974|197976|197977|197979|197987|197989|197990|197991|197995|197997|197998|198002|198003|198004|198005|198007|198008|198009|198050|198062|198078|198081|198082|198083|198089|198090|198091|198098|198140|198141|198142|198143|198145|198146|198151|198152|198153|198154|198155|198156|198157|198172|198177|198180|198186|198197|198203|198209|198211|198255|198281|198282|198313|198318|198330|198347|198348|198349|198350|198363|198367|198377|198383|198387|198393|198398|198400|198403|198408|198415|198418|198420|198421|198427|198429|198430|198434|198436|198437|198443|198444|198445|198451|198458|198459|198478|198486|198529|198532|198721|198726|198744|198781|198810|198838|198849|198851|198858|198910|198924|198969|198999|199022|199035|199107|199133|199144|199149|199167|199182|199191|199192|199212|199216|199251|199269|199277|199299|199302|199342|199344|199365|199387|199430|199439|199451|199452|199459|199492|199508|199526|199545|199556|199561|199563|199580|199585|199588|199661|199670|199671|199700|199710|199715|199720|199730|199753|204080|205175|205199|205200|205201|205202|205203|205204|205205|206914|206924|208085|209879|209886|209895|209898|212929|213530|214104|214105|214106|214107|214111|214116|214121|214122|214123|214490|215346|215347|215442|215473|215553|217192|221090|221092|222136|222144|222145|222251|222364|222416|222854|224123|224183|224200|224203|224206|224209|224210|224239|224251|224261|224266|224318|224325|224330|224332|224336|224337|224348|224448|224454|224459|224460|224461|224464|224471|224506|224529|224537|224538|224539|224574|224987|225019|228272|228279|228280|228282|228286|228288|228359|228364|228367|228371|228373|228375|228381|228382|228383|228385|228386|228387|228388|228391|228392|228393|228394|228395|228398|228399|228400|228401|228402|228404|228405|228406|228408|228514|228519|228523|228552|228557|228564|228578|228588|228594|228614|228660|228666|228679|228690|228695|228718|228723|228754|228757|228800|228802|228812|228829|228834|228905|228919|229022|229024|229096|229098|229100|229157|229489|229491|229494|229495|229496|229499|229501|229502|229503|229511|229514|229517|229519|229520|229561|229564|229566|229567|229721|229733|229735|230200|230201|230206|230210|230211|230212|230213|230215|230217|230218|230219|230255|230256|230295|230310|230312|230313|230316|230319|230320|230322|230323|230324|230462|230463|230464|230473|230481|230488|230493|230494|230495|230497|230500|230501|230506|230512|230514|230515|230558|230826|230827|230832|230862|230863|230864|230865|230866|230868|230869|230870|231080|231083|231113|231310|231352|231648|231913|231920|232152|236744|236758|236798|236799|236800|236813|236814|236815|238145|238149|238150|238151|238222|238233|238235|238237|238240|238246|238422|238430|238441|238478|238481|238489|238526|238573|239110|239111|239112|239288|239322|240007|240011|240743|240750|241143|241147|241149|241150|241152|241238|241239|241549|241550|241551|241797|241803|241805|241813|241814|241815|241816|241817|241818|241820|242030|242032|243042|243043|243375|243379|243381|243778|243779|244207|244209|244223|244224|244232|244239|245257|245259|245263|245264|245265|245266|245268|245271|245275|245279|245280|245281|245284|246879|246880|247150|249829|250432|252535|253892|254928|254930|256648|257926|257934|257936|257951|257958|257961|257962|257963|257964|257965|257966|257968|257969|257976|257977|258003|258052|258060|258073|258082|258130|258157|258175|258280|258285|258288|258292|258317|258325|258442|258446|258449|258452|258455|258456|258457|258459|258460|258462|258656|258679|258698|258703|258706|258712|258746|258748|258751|258779|258783|258786|258790|258792|258800|258801|258806|258808|258810|259017|259019|259020|259022|259026|259029|259030|259033|259038|259040|259043|259198|259712|259847|259848|260053|260346|260508|260516|260532|260534|260538|260539|264150|265714|266024|266210|266293|266423|266434|266525|266735|266890|266892|266956|267009|267393|267407|267457|267546|267629|267635|267717|267872|267901|268132|268171|268223|268334|268734|268758|269185|269582|270200|270495|270508|270724|271998|272177|272610|272668|272902|273262|273364|273378|274449|274528|274588|274603|274897|274935|274945|275371|276614|279740|279942|279963|279964|279985|279989|279990|280003|280005|280010|280076|280282|280284|280286|280289|280328|280330|280333|281360|281590|281591|281593|281604|281622|281626|281627|281630|281641|281758|281766|281790|281799|281802|281816|281819|283244|283301|283346|283375|283404|283408|283931|283994|284064|285998|286152|286295|288948|289696|289701|291667|292649|292652|292882|292883|292884|294871|301042|301044|301049|301063|302217|302804|304029|304031|304032|304033|304034|304035|305443|305444|305445|308732|308733|308741|308743|308744|308745|308746|308748|308765|308803|308804|308807|310328|313528|314281|314290|316035|316953|320347|320362|320370|320374|320376|322312|324154|324557|324565|328975|328990|328992|328994|330442|330565|330767|331163|331167|332141|332147|332637|335573|335590|335630|335631|335634|335647|337458|337463|337469|340332|341351|341439|341449|344273|346873|346908|346912|348136|348188|348190|348194|348197|348200|349397|352159|359294|359300|359450|359533|359639|359753|359886|360024|360028|360038|360187|360336|360347|360486|360803|361057|361092|361482|361874|361875|361876|362162|362734|363958|364449|364491|364493|364525|364527|364564|364567|364596|364600|364750|364825|364840|364842|364868|364871|364887|364889|364890|364909|364911|364976|364977|364985|364988|365002|365018|365029|365031|365040|365047|365049|365052|365056|365058|365059|365064|365066|365068|365073|365074|365075|365082|365085|365086|365088|365104|365874|365975|366017|366023|366029|366038|366108|366109|366309|366380|366438|366981|367212|367249|367264|367337|367538|367589|367615|367811|368225|368610|368723|368725|368731|368732|368738|368744|368747|368749|368759|369038|369039|369050|369065|369070|369075|369090|369185|369200|369221|369223|369242|369263|369277|369285|369358|369363|369637|370076|370548|370550|370594|370595|370611|371031|371044|371141|371254|371434|371435|371465|371466|371467|371639|372180|372193|372197|372203|372215|372220|372245|372255|372261|372325|372392|372399|372402|372414|372460|372551|372858|373007|373009|373019|373021|373023|373024|373042|373056|373058|373214|373227|373229|373240|373378|373611|373612|373762|373778|373790|374050|374122|374124|374127|374128|374129|374148|374158|374166|374466|374473|374583|374648|374966|374996|375074|375076|375077|375083|375865|375871|375874|375996|376000|376002|376003|376004|376006|376010|376016|376392|376532|376767|376784|376871|376942|376943|378950|378951|378958|378962|378964|378967|378971|378974|378979|379666|379904|379997|389323|389773|389925|390042|390140|390777|390818|390834|390851|390976|390994|391002|391015|391017|391019|391026|391027|391029|391031|391036|391037|391045|391050|391052|391053|391057|391060|391068|391072|391078|391079|391080|391090|391094|391107|391122|391123|391150|391161|391163|391166|391169|391183|391191|391205|391223|391225|391480|391485|391603|391620|391668|391681|391715|391766|391844|391868|391910|391933|391941|391943|391944|392039|392072|392119|392164|392221|392230|392263|392265|392266|392300|392336|392338|392374|393329|393331|393338|393343|393568|393590|393769|393770|393774|394183|395213|395221|395230|395231|395235|395433|395447|395451|395460|395475|395499|395502|395507|395571|395582|395588|395591|395592|395802|395875|395877|395890|395891|395892|395893|395894|395897|397108|398203|398206|398216|398254|398256|398259|398278|398280|398438|398632|398638|398647|398656|398700|398727|398736|398754|398960|398962|398965|398970|398978|398980|399057|399060|399446|399448|399453|399605|399609|399620|399626|399707|399709|399777|399784|400057|400098|400133|400136|400151|400159|400185|400199|400299|400308|400547|400817|400871|401068|402679|402715|402720|402722|402731|402733|402779|402783|403184|403208|403212|403239|403252|403258|403833|404437|404835|405105|405106|405107|405109|405117|405118|406312|406905|406908|406909|406914|406917|406918|406921|406922|406924|407073|408359|408362|408365|408373|408377|408379|408523|408641|408644|409092|409100|409101|409104|410335|410336|410338|410342|410345|410346|410349|410350|410352|410353|410354|410356|410360|410714|413250|414849|414855|414943|414961|415066|415237|415260|415273|415274|415388|415447|415598|415599|417646|419263|419271|419284|419287|419290|419293|421226|421229|421422|421599|421854|421855|422163|422216|422217|425314|425349|425708|425709|425883|425931|426057|426059|426060|426061|426062|426267|426268|427655|427966|439926|440616|440759|442636|442763|442764|442766|442767|442772|442773|442774|442775|442777|442778|443066|444001|444002|444006|444010|444013|444016|444810|444816|444818|444822|444823|444825|444983|445204|445205|445214|445956|446190|447238|447243|447254|447266|447423|447610|447620|447626|447628|447637|447660|447662|447664|447760|447777|447780|447782|447786|447793|447803|447804|447825|447827|447841|447843|447844|447856|447868|447872|447873|447877|447879|447883|447894|447895|447901|447906|447908|447920|447941|447944|447947|447954|447960|447963|447971|447982|447984|447986|447987|447992|448242|448365|448570|449006|449179|449282|449441|449473|449535|449566|449575|449580|449592|449649|449657|449693|449709|449729|449799|449903|449905|449951|450002|450003|450020|450028|450076|450182|450204|450226|450241|450395|450655|451882|452099|452227|452229|452232|453561|455645|455812|455827|455835|455841|455843|455996|456001|456009|456014|456028|456034|456072|456086|456093|456399|456425|456432|456436|456504|456763|456773|456801|456803|456900|457130|457132|457592|460105|460554|460685|460870|461142|461343|461350|461353|461358|461609|461632|461634|461652|461685|461691|461957|461960|461983|461992|462010|462012|462017|462133|462135|462181|462386|462399|462402|462417|462912|462930|463033|463043|463044|463048|463154|463651|463660|463690|463944|463977|463988|464109|464128|464140|464143|464173|465144|467661|467912|467915|467916|467956|467958|468867|468891|468905|469247|469288|469310|469313|469314|469684|469693|469718|469736|471292|471296|480674|480692|480696|480713|481133|482196|482277|485938|486016|486848|486852|486853|486861|486862|486865|486882|486964|487089|487093|487096|487193|487204|487207|487212|487213|487215|487217|487338|487340|487360|487365|487487|487776|487932|488132|488140|488142|488370|488417|488434|488444|488515|489375|490461|490463|490509|490599|490807|490825|491900|492023|492088|493419|493976|495086|496159|496192|496197|496198|496478|496621|496649|496652|496666|496915|497205|497223|497446|497617|497619|497684|498064|498073|498132|498256|498265|498267|498283|498298|498338|498346|498348|498354|498360|498365|498366|498372|498380|498468|498473|498474|498495|498498|498505|498515|498516|498518|498521|498526|498943|499160|499213|499291|499392|499459|499533|499565|499722|499734|500076|500285|500567|500573|501079|501342|501448|501465|501469|501474|501477|501479|501697|501698|501702|501803|501965|502008|502014|502080|502093|502306|502311|502312|502314|502899|503273|503621|503632|503649|503771|503821|503823|504130|504136|504143|504236|504240|504243|504249|504475|504500|504523|504720|504726|504738|504739|504751|504757|504891|504977|505005|505006|505010|505014|505016|505096|505402|505404|505413|505430|505617|505620|505758|506291|506298|506302|506304|506545|506548|506909|506931|507339|507348|508768|508903|509109|509114|509115|509116|509117|509119|509120|509122|509124|509125|509127|509172|509175|509176|509178|509180|509181|509182|509183|509185|509187|509191|509195|509198|509201|509203|509204|509205|509206|509207|509209|509210|509211|509218|509220|509222|509288|509293|509318|509397|509405|509416|509434|509563|509564|509565|509569|509570|509571|509630|509635|509636|509803|509809|509811|509815|509820|509821|509826|509829|509830|509835|509837|509839|509840|509880|509881|509882|509954|510193|510249|510268|510288|510291|510299|510301|510302|510303|510304|510307|510308|510309|510312|510314|510317|510325|510341|510393|510398|510404|510436|510454|510463|510464|510469|510484|510485|510486|510492|510494|510497|510654|510761|510762|510763|510765|510767|510770|510772|510775|510779|510785|510786|510787|510788|510789|510813|511082|511086|511090|511104|511107|511108|511121|511132|511137|512792|512793|512848|512849|512931|512932|513495|513911|514347|515117|515118|515124|515135|515157|515162|515170|515386|515462|515533|515588|515589|515598|515604|515624|515625|515631|515639|515644|515654|515659|515669|515674|515677|515687|515692|515697|515700|515701|515702|515704|515706|515711|515715|515716|515720|515724|515734|515737|515741|515753|515762|515767|515779|515781|515795|515799|515803|515817|516811|516826|516831|516900|516909|516930|516957|517022|517048|517066|517096|517252|517313|517377|517699|518906|518910|519101|519122|519127|519317|521607|521827|521829|521836|521848|522173|522180|522184|522186|522193|522195|522199|522201|522207|522211|522213|522215|522233|522238|522239|522245|522247|522498|522559|522569|522573|522595|522604|522606|522609|522614|522737|522805|525170|525462|525505|525802|526232|526236|526239|526243|526245|526246|526453|526462|526674|526739|526752|527106|527107|527114|527121|527152|527156|527375|527392|527612|528029|528061|528066|528096|528110|528124|528422|528424|528431|528478|528479|528544|528554|528575|528611|529052|529233|532198|532208|532210|532227|532288|532290|532297|532299|532302|532305|532334|532336|533391|533457|534380|536966|536996|537483|551269|551956|556620|556624|556679|556681|556823|556833|556835|556837|556839|556843|556864|556876|556910|556914|557112|557161|557184|557186|557188|557200|557206|557207|557225|557229|557245|557249|557765|558142|558317|558321|558383|558391|558401|558419|558595|558935|559353|560956|560994|561000|561011|561077|561091|561092|561095|561221|561602|562804|563777|563786|563796|563799|563814|564673|564678|564693|564713|564717|565434|565965|565977|565989|565999|566361|566368|566370|566372|566603|566617|566812|566814|566816|566824|567292|567318|567664|567885|568014|568813|570692|571103|571809|571818|571823|571826|571862|571863|571869|571872|571875|572605|572617|572620|572622|572769|572807|573456|574718|574722|574733|574735|575060|575080|576413|583803|583864|583962|584002|584306|586096|587315|589388|589524|609415|609471|609630|609787|610127|610128|610649|610664|610695|610896|610898|612502|613499|614694|614695|614696|614697|614698|614699|614700|614703|614704|614705|614706|614707|614708|614709|614710|614711|614712|614713|614714|614715|614716|614717|614718|614719|614720|614721|614722|614723|614724|614725|614726|614727|614728|614729|614730|614731|614732|614733|614734|614735|614736|614737|614738|614739|614740|614741|614742|614743|614744|614745|614746|614747|614748|614749|614750|614751|614752|614753|614754|614755|614756|614757|614758|614759|614760|614761|614762|614763|614764|614765|614766|614767|614768|614769|614770|614771|614772|614773|614774|614775|614776|614777|614778|614779|614780|614781|614782|614783|614784|614785|614786|614787|614788|614789|614790|614791|614792|614793|614794|614795|614796|614797|614798|614799|614800|614801|614802|614803|614804|614805|614806|614807|614808|614809|614810|614811|614812|614813|614814|614815|614816|614817|614818|614819|614820|614821|614822|614823|614824|614825|614826|614827|614828|614829|614830|614831|614832|614833|614834|614835|614836|614837|614838|614839|614840|614841|614842|614843|614844|614845|614846|614847|614848|614849|614850|614851|614852|614853|614854|614855|614856|614857|614858|614859|614860|614861|614862|614863|614864|614865|614866|614867|614868|614869|614870|614871|614872|614873|614880|614881|614882|614891|614892|614893|614897|614898|614899|614900|614901|614902|614903|614904|614905|614906|614907|614908|614909|614910|614911|614912|614913|614914|614915|614916|614917|614918|614919|614920|614921|614922|614923|614924|614925|614926|614927|614928|614929|614930|614931|614932|614933|614934|614935|614936|614937|614938|614939|614940|614941|614942|614943|614944|614945|614946|614947|614948|614949|614950|614951|614952|614983|614984|614985|614986|614987|614988|614989|614990|614991|614992|614993|614994|614995|614996|614997|614998|614999|615000|615001|615002|615003|615004|615005|615006|615007|615008|615009|615010|615011|615012|615013|615014|615015|615016|615017|615018|615019|615020|615021|615022|615023|615024|615025|615026|615027|615028|615029|615030|615031|615032|615033|615034|615035|615036|615037|615038|615039|615040|615041|615042|615043|615044|615045|615046|615047|615048|615049|615050|615051|615052|615053|615061|615062|615063|615064|615065|615066|615067|615068|615069|615070|615071|615072|615073|615074|615075|615076|615077|615078|615079|615080|615081|615082|615083|615084|615085|615086|615087|615088|615089|615090|615091|615092|615093|615095|615096|615097|615125|615126|615127|615128|615129|615130|615138|615139|615140|615141|615146|615147|615148|615149|615150|615151|615152|615153|615154|615155|615156|615157|615158|615159|615161|615162|615163|615164|615165|615166|615167|615168|615169|615170|615177|615178|615179|615180|615181|615182|615183|615184|615185|615186|615189|615190|615191|615192|615193|615194|615195|615196|615197|615198|615199|615200|615201|615202|615203|615204|615206|615207|615208|615209|615210|615212|615213|615214|615215|615216|615217|615218|615219|615220|615221|615222|615223|615228|615232|615233|615234|615235|615236|616005|616006|616007|616008|616009|616010|616011|616012|616013|616014|616015|616016|616017|616018|616019|616020|616021|616022|616023|616024|616025|616026|616027|616028|616029|616030|616031|616032|616033|616034|616035|616036|616037|616038|616039|616040|616041|616042|616043|616044|616045|616046|616047|616048|616049|616050|616051|616052|616053|616054|616055|616056|616057|616058|616059|616060|616061|616062|616063|616064|616065|616066|616067|616068|616069|616070|616071|616072|616073|616074|616075|616076|616077|616078|616079|616080|616081|616082|616083|616084|616085|616086|616811|616812|616813|616814|616815|616816|616817|616818|616819|616820|616821|616822|616823|616824|616927|616928|616929|616930|616931|616932|616933|617288|617289|617290|617291|617292|617293|617294|617295|617296|617297|617298|617299|617300|617301|617302|617303|617304|617305|617306|617307|617308|617309|617310|617311|617312|617313|617314|617315|617316|617317|617318|617319|617320|617321|617322|617323|617324|617325|617326|617327|617328|617329|617330|617331|617332|617333|617358|617359|617360|617361|617362|617363|617364|617365|617366|617367|617864|617865|617866|617867|617868|617869|617870|617871|617872|617873|617874|617875|617876|617877|617878|617879|617880|617881|617882|617883|617884|617885|617886|617887|617888|617889|617890|617891|617892|617893|617894|617895|617896|617897|617898|617899|617900|617901|617902|617903|617904|617905|617906|617907|617908|617909|617910|617911|618214|618215|618216|618217|618218|618219|618220|618221|618222|618223|618224|618225|618226|618227|618228|618229|618230|618231|618232|618233|618234|618235|618236|618237|618238|618239|618240|618241|618242|618278|618279|618280|618844|618845|618846|618847|618848|618849|618850|618851|618852|618853|618854|618855|618856|618857|618858|618859|618860|618861|618862|618863|618864|618865|618866|618867|618868|618869|618870|618871|618872|618873|618874|618875|618876|618877|618878|618879|618880|618881|618882|618883|618884|618885|618886|618887|619004|619005|619006|619007|619008|619009|619010|619011|619047|619048|619049|619051|619053|619054|619055|619056|619057|619058|619060|619061|619179|619193|619218|619242|619270|619284|619367|619422|619424|619427|619428|619444|619448|619450|619457|619459|619462|619463|619502|619515|619527|619596|619767|619778|621071|621073|621074|621075|621077|621149|621219|621220|621222|621224|621375|621612|621704|622378|623063|624437|624478|626917|626918|626927|626928|626930|627280|627283|627517|627542|627544|627547|627548|627549|627552|627555|627556|627563|627569|627571|627577|627584|627614|630969|630972|630977|630978|630979|631458|635244|635246|635248|635250|635252|635262|635265|635267|635269|635270|635273|635276|635279|635282|635284|635289|635292|635298|635299|635304|635306|635933|635940|639194|639207|640096|640101|640104|640112|640115|640124|640638|641081|641086|641093|641094|641095|641098|641100|641103|642258|642266|642267|642268|642273|642278|642280|642286|642305|642314|642320|643108|647139|647140|647141|647142|647145|647147|647164|647166|647171|647172|647178|650627|650725|651576|651674|652431|652600|652756|652889|653940|653943|654313|654842|655079|655083|655179|655273|655750|655790|656057|656060|656061|656062|656228|656232|656233|656239|657518|657713|659758|666512|667999|672403|672405|672423|679363|679365|679366|679368|679369|679372|679374|679375|679377|679386|679388|679391|679397|679399|679410|679411|679415|679418|679419|679421|679423|679424|679425|679428|679434|679436|679438|679439|679442|679443|679448|679449|679453|679457|679462|679463|679466|679467|679468|679472|679473|679474|679476|679477|679482|679525|679544|679558|679865|683315|683316|683428|683452|683455|683864|683865|684259|684470|684471|684472|684752|684753|684851|685277|685573|685575|685576|685645|685646|685647|685650|685651|685653|685655|685658|685659|685660|685661|685663|685666|685669|685670|685672|686001|686070|686337|686338|686339|686341|686342|686909|686911|686912|686913|686914|686916|686917|687005|687007|687008|687779|687780|687781|687783|687785|687786|687879|687984|687986|687987|688260|688261|688264|688265|688267|688269|688400|688903|688904|688905|688906|688907|689649|689806|689839|689865|690189|690378|690453|690540|690541|690542|690543|690545|690546|690547|690548|690550|690552|690554|690555|691425|692061|693046|693048|693049|693050|693052|693142|693466|693467|693468|693470|693658|694260|695007|695038|695636|695655|695657|696606|699672|701784|702297|703140|712858|718823|722144|722146|732295|735367|738008|739174|743300|746319|746324|746327|746333|746335|748045|750229|750231|750523|752612|752695|753341|753989|753993|756424|758864|759492|759526|761254|761744|761748|761750|761753|761759|761765|761772|761778|761782|765847|765850|765856|765864|765872|766184|768472|768473|768474|768890|769049|769097|769098|769740|770111|770262|772105|772106|772116|772117|774464|775819|775829|775925|777019|778855|780618|780621|782660|782662|784018|784376|785882|787005|787868|787931|791141|791142|791394|794538|794539|794541|794628|794629|794632|795337|795339|795900|795907|795908|795911|795995|797009|797662|797663|797667|798999|799002|799004|799011|799645|816418|816419|816420|816432|822794|822802|822803|823225|823229|823231|823232|823630|823650|823654|823655|823662|823667|823669|823678|823679|823680|823683|823684|823686|823702|823707|823708|823714|823720|823726|823736|823738|823740|823743|827575|827577|827578|827580|827581|827583|827585|827586|827588|832444|832445|832446|832450|832451|832459|832464|832467|832472|832474|832475|832478|832484|832486|832495|832497|832499|832500|832501|832502|832503|832504|832507|832513|832515|832516|832517|832518|832520|832526|833371|833375|838185|838497|838498|838499|838502|838530|838531|838535|838540|839316|839860|839862|839863|839864|839867|839874|841216|841243|841273|841276|841291|841297|842575|846747|846752|846787|846789|846790|846793|846797|846801|846802|848085|848086|850765|851547|851549|851771|851989|851993|852300|852992|858855|858923|858924|858926|859274|860467|860468|862422|864086|864090|864095|864098|864100|864102|864104|864105|864111|865155|866257|868102|868658|869734|869735|869737|869738|871736|871738|871739|872232|873936|873937|879106|879108|879144|879150|880647|881736|881904|896848|896853|896855|896864|897696|900268|900269|903706|903707|903708|903709|903710|903711|903712|903713|903714|903715|903716|903717|903718|903719|903723|903724|903725|903726|903727|903728|903729|903730|903731|903732|903733|903734|903735|903736|903737|903738|903739|903740|903741|903742|903743|903744|903745|903746|903747|903748|903749|903750|903751|903752|903753|903754|903755|903756|903757|903758|903759|903760|903761|903762|903763|903764|903765|903766|903767|903768|903769|903770|903771|903772|903773|903774|903775|903776|903777|903778|903779|903780|903781|903782|903783|903784|903785|903786|903787|903788|903789|903790|903791|903792|903793|903794|903795|903796|903797|903798|903799|903800|903801|903802|903803|903804|903805|903806|903807|903808|903809|903810|903811|903812|903813|903814|903815|903816|903817|903818|903819|903820|903821|903822|903823|903824|903825|903826|903827|903828|903829|903830|903831|903832|903833|903834|903835|903836|903837|903838|903839|903840|903841|903842|903843|903844|903845|903846|903847|903851|903866|903870|903871|903872|903873|903874|903875|903876|903877|903878|903879|903880|903881|903882|903883|903884|903885|903886|903887|903903|903904|903905|903906|903907|903908|903909|903910|903911|903912|903913|903914|903915|903916|903917|903919|903920|903921|903922|903923|903924|903925|903926|903927|903928|903929|903930|903931|903932|903933|903934|903935|903936|903937|903938|903939|903940|903941|903942|903943|903944|903945|903946|903947|903948|903949|903950|903951|903953|903954|903955|903956|903957|903958|903959|903960|903961|903962|903963|903964|903965|903966|903967|903968|903969|903970|903971|903972|903973|903974|903975|903976|903977|903978|904003|904013|904014|904015|904016|904017|904020|904021|904022|904023|904024|904025|904026|904028|904029|904030|904031|904032|904033|904034|904035|904036|904037|904038|904048|904049|904050|904051|904052|904053|904054|904055|904056|904057|904058|904489|904662|905108|905559|905877|906396|906397|906398|906399|906400|906401|906402|906403|906404|906405|906406|906407|906408|906409|906410|906411|906412|906413|906414|906415|906416|906417|906418|906419|906420|906421|906422|906423|906424|906425|906426|906427|906428|906429|906430|906431|906432|906433|906434|906435|906436|906437|906438|906439|906440|906441|906442|906443|906444|906445|906446|906447|906448|906449|906450|906451|906452|906453|906454|906455|906456|906457|906458|906459|906460|906461|906462|906463|906464|906465|906466|906467|906468|906469|906470|906471|906472|906473|906474|906475|906476|906477|906478|906479|906480|906481|906482|906483|906484|906485|906486|906487|906488|906489|906490|906491|906492|906493|906494|906495|906496|906497|906498|906499|906500|906501|906502|906503|906504|906505|906506|906507|906508|906509|906510|906511|906512|906513|906514|906515|906516|906517|906518|906519|906520|906521|906522|906523|906524|906525|906526|906527|906528|906529|906530|906531|906532|906533|906534|906535|906536|906537|906538|906539|906540|906541|906542|906543|906544|906545|906546|906547|906548|906549|906550|906551|906552|906553|906554|906555|906556|906557|906558|906559|906560|906561|906562|906563|906564|906565|906566|906567|906568|906569|906570|906571|906572|906573|906574|906575|906576|906577|906578|906579|906580|906581|906582|906583|906584|906585|906586|906587|906588|906589|906590|906591|906592|906593|906594|906595|906596|906597|906598|906599|906600|906601|906602|906603|906604|906605|906606|906607|906608|906609|906610|906611|906612|906613|906614|906615|906616|906617|906618|906619|906620|906621|906622|906623|906624|906625|906626|906627|906628|906629|906630|906631|906632|906633|906634|906635|906636|906637|906638|906639|906640|906641|906642|906643|906644|906645|906646|906647|906648|906649|906650|906651|906652|906653|906654|906655|906656|906657|906658|906659|906660|906661|906662|906663|906664|906665|906666|906667|906668|906669|906670|906671|906672|906673|906674|906675|906676|906677|906678|906679|906680|906681|906682|906683|906684|906685|906686|906687|906688|906689|906690|906691|906692|906693|906694|906695|906696|906697|906698|906699|906700|906701|906702|906703|906704|906705|906706|906707|906708|906709|906710|906711|906712|906713|906714|906715|906716|906717|906718|906719|906720|906721|906722|906723|906724|906725|906726|906727|906728|906729|906730|906731|906732|906733|906734|906735|906736|906737|906738|906739|906740|906741|906742|906743|906744|906745|906746|906747|906748|906749|906750|906751|906752|906753|906754|906755|906756|906757|906758|906759|906760|906761|906762|906763|906764|906765|906766|906767|906768|906769|906770|906771|906772|906773|906774|906775|906776|906777|906778|906779|906780|906781|906782|906783|906784|906785|906786|906787|906788|906789|906790|906791|906792|906793|906794|906795|906796|906797|906798|906799|906800|906801|906802|906803|906804|906805|906806|906807|906808|906809|906810|906811|906812|906813|906814|906815|906816|906817|906818|906819|906820|906821|906822|906823|906824|906825|906826|906827|906828|906829|906830|906831|906832|906833|906834|906835|906836|906837|906838|906839|906840|906841|906842|906843|906844|906845|906846|906847|906848|906849|906850|906851|906852|906853|906854|906855|906856|906857|906858|906859|906860|906861|906862|906863|906864|906865|906866|906867|906868|906869|906870|906871|906872|906873|906874|906875|906876|906877|906878|906879|906880|906881|906882|906883|906884|906885|906886|906887|906888|906889|906890|906891|906892|906893|906894|906895|906896|906897|906898|906899|906900|906901|906902|906903|906904|906905|906906|906907|906908|906909|906910|906911|906912|906913|906914|906915|906916|906917|906918|906919|906920|906921|906922|906923|906924|906925|906926|906927|906928|906929|906930|906931|906932|906933|906934|906935|906936|906937|906938|906939|906940|906941|906942|906943|906944|906945|906946|906947|906948|906949|906950|906951|906952|906953|906954|906955|906956|906957|906958|906959|906960|906961|906962|906963|906964|906965|906966|906967|906968|906969|906970|906971|906972|906973|906974|906975|906976|906977|906978|906979|906980|906981|906982|906983|906984|906985|906986|906987|906988|906989|906990|906991|906992|906993|906994|906995|906996|906997|906998|906999|907000|907001|907002|907003|907004|907005|907006|907007|907008|907009|907010|907011|907012|907013|907014|907015|907016|907017|907018|907019|907020|907021|907022|907023|907024|907025|907026|907027|907028|907029|907030|907031|907032|907033|907034|907035|907036|907037|907038|907039|907040|907041|907042|907043|907044|907045|907046|907047|907048|907049|907050|907051|907052|907053|907054|907055|907056|907057|907058|907059|907060|907061|907062|907063|907064|907065|907066|907067|907068|907069|907070|907071|907072|907073|907074|907075|907076|907077|907078|907079|907080|907081|907082|907083|907084|907085|907086|907087|907088|907089|907090|907091|907092|907093|907094|907095|907096|907097|907098|907099|907100|907101|907102|907103|907104|907105|907106|907107|907108|907109|907110|907111|907112|907113|907114|907115|907116|907117|907118|907119|907120|907121|907122|907123|907124|907125|907126|907127|907128|907129|907130|907131|907132|907133|907134|907135|907136|907137|907138|907139|907140|907141|907142|907143|907144|907145|907146|907147|907148|907149|907150|907151|907152|907153|907154|907155|907156|907157|907158|907159|907160|907161|907162|907163|907164|907165|907166|907167|907168|907169|907170|907171|907172|907173|907174|907175|907176|907177|907178|907179|907180|907181|907182|907183|907184|907185|907186|907187|907188|907189|907190|907191|907192|907193|907194|907195|907196|907197|907198|907199|907200|907201|907202|907203|907204|907205|907206|909083|909084|909085|909086|909087|909088|909089|909090|909091|909092|909093|909094|909095|909096|909097|909098|909099|909100|909101|909102|909103|909104|909105|909106|909107|909108|909109|909110|909111|909112|909113|909114|909115|909116|909117|909118|909119|909120|909121|909122|909123|909124|909125|909126|909127|909128|909129|909130|909131|909132|909133|909134|909135|909136|909137|909138|909139|909140|909141|909142|909143|909144|909145|909146|909147|909148|909149|909150|909151|909152|909153|909154|909155|909156|909157|909158|909159|909160|909161|909162|909163|909164|909165|909166|909167|909168|909169|909170|909171|909172|909173|909174|909175|909176|909177|909178|909179|909180|909181|909182|909648|909649|909650|909651|909652|909653|909654|909655|909656|909657|909658|909659|909660|909661|909662|909663|909664|909665|909666|909667|909668|909669|909670|909671|909672|909673|909674|909675|909676|909677|909678|910168|910169|910170|910171|910172|910173|910174|910175|910176|910177|910178|910179|910180|910181|910182|910183|910184|910185|910186|910187|910188|910189|910190|910191|910192|910193|910194|910195|910196|910197|910198|910199|910200|910201|910202|910203|910204|910205|910206|910207|910208|910209|910210|910211|910212|910213|910214|910215|910216|910217|910218|910219|910220|910221|910222|910223|910224|910225|910226|910227|910228|910229|910230|910231|910232|910233|910234|910235|910236|910237|910238|910239|910240|910241|910242|910243|910244|910245|910246|910247|910248|910249|910250|910251|910252|910253|910254|910255|910256|910257|910258|910259|910260|910261|910262|910263|910264|910265|910266|910267|910268|910269|910270|910271|910272|910273|910274|910275|910276|910277|910278|910279|910280|910281|910282|910283|910284|910285|910286|910287|910288|910289|910290|910291|910292|910293|910294|910295|910296|910297|910298|910299|910300|910301|910302|910303|910304|910305|910306|910307|910308|910309|910310|910311|910312|910313|910314|910315|910316|910317|910318|910319|910320|910321|910322|910323|910324|910325|910326|910327|910328|910329|910330|910331|910332|910333|910334|910335|910336|910337|910338|910339|910340|910341|910342|910343|910344|910345|910346|910347|910348|910349|910350|910351|910352|910353|910354|910355|910356|910357|910358|910359|910360|910361|910362|910363|910364|910365|910366|910367|910368|910369|910370|910371|910372|910373|910374|910375|910376|910377|910378|910379|910380|910381|910382|910383|910384|910385|910386|910387|910388|910389|910390|910391|910392|910393|910394|910395|910396|910397|910398|910399|910400|910401|910402|910403|910404|910405|910406|910407|910408|910409|910410|910411|910412|910413|910414|910415|910416|910417|910418|910419|910420|910421|910422|910423|910424|910425|910426|910427|910428|910429|910430|910431|910432|910433|910434|910435|910436|910437|910438|910439|910440|910441|910442|910443|910444|910445|910446|910447|910448|910449|910450|910451|910452|910453|910454|910455|910456|910457|910458|910459|910460|910461|910462|910463|910464|910465|910466|910467|910468|910469|910470|910471|910472|910473|910474|910475|910476|910477|910478|910479|910480|910481|910482|910483|910484|910485|910486|910487|910488|910489|910490|910491|910492|910493|910494|910495|910496|910497|910498|910499|910500|910501|910502|910503|910504|910505|910506|910507|910508|910509|910510|910511|910512|910513|910514|910515|910516|910517|910518|910519|910520|910521|910522|910523|910524|910525|910526|910527|910528|910529|910530|910531|910532|910533|910534|910535|910536|910537|910538|910539|910540|910541|910542|910543|910544|910545|910546|910547|910548|910549|910550|910551|910552|910553|910554|910555|910556|910557|910558|910559|910560|910561|910562|910563|910564|910565|910566|910567|910568|910569|910570|910571|910572|910573|910574|910575|910576|910577|910578|910579|910580|910581|910582|910583|910584|910585|910586|910587|910588|910589|910590|910591|910592|910593|910594|910595|910596|910597|910598|910599|910600|910601|910602|910603|910604|910605|910606|910607|910608|910609|910610|910611|910612|910613|910614|910615|910616|910617|910618|910619|910620|910621|910622|910623|910624|910625|910626|910627|910628|910629|910630|910631|910632|910633|910634|910635|910636|910637|910638|910639|910640|910641|910642|910643|910644|910645|910646|910647|910648|910649|910650|910651|910652|910653|910654|910655|910656|910657|910658|910659|910819|910820|910821|910822|910823|910824|910825|910826|910827|910828|910829|910830|910831|910832|910833|910834|910835|910836|910837|910838|910839|910840|910841|910842|910843|910844|910845|910846|910847|910848|910849|910850|910851|910852|910853|910854|910855|910856|910857|910858|910859|910860|910861|910862|910863|910864|910865|910866|910867|910868|910869|910870|910871|910872|910873|910874|910875|910876|910877|910878|910879|910880|910881|910882|910883|910884|910885|910886|910887|910888|910889|910890|910891|910892|910893|910894|910895|910896|910897|910898|910899|910900|910901|910902|910903|910904|910905|910906|911665|911666|911667|911668|911669|911670|911671|911672|911673|911674|911675|911676|911677|911678|911679|911680|911681|911682|911683|911684|911685|911686|911687|911688|911689|911690|911691|911692|911693|911694|911695|911696|911697|911698|911699|911700|911701|911702|911703|911704|911705|911706|911707|911708|911709|911710|911711|911712|911713|911714|911715|911716|911717|911718|911719|911720|911721|911722|911723|911724|911725|911726|911727|911728|911729|911730|911731|911732|911733|911734|911735|911736|911737|911738|911739|911740|911741|911742|911743|911744|911745|911746|911747|911748|911749|911750|911751|911752|911753|911754|911755|911756|911757|911758|911759|911760|911761|911762|911763|911764|911765|911766|911767|911768|911769|911770|911771|911772|911773|911774|911775|911776|911777|911778|911779|911780|911781|911782|911783|911784|911785|911786|911787|911788|911789|911790|911791|911792|911793|911794|911795|911796|911797|911798|911799|911800|911801|911802|911803|911804|911805|911806|911807|911808|911809|911810|911811|911812|911813|911814|911815|911816|911817|911818|911819|911820|911821|911822|911823|911824|911825|911826|911827|911828|911829|911830|911831|911832|911833|911834|911835|911836|911837|911838|911839|911840|911841|911842|911843|911844|911845|911846|911847|911848|911849|911850|911851|911852|911853|911854|911855|911856|911857|911858|911859|911860|911861|911862|911863|911864|911865|911866|911867|911868|911869|911870|911871|911872|911873|911874|911875|911876|911877|911878|911879|911880|911881|911882|911883|911884|911885|911886|911887|911888|911889|911890|911891|911892|911893|911894|911895|911896|911897|911898|911899|911900|911901|911902|911903|911904|911905|911906|911907|911908|911909|911910|911911|911912|911913|911914|911915|911916|911917|911918|911919|911920|911921|911922|911923|911924|911925|911926|911927|911928|911929|911930|911931|911932|911933|911934|911935|911936|911937|911938|911939|911940|911941|911942|911943|911944|911945|911946|911947|911948|911949|911950|911951|911952|911953|911954|911955|911956|911957|911958|911959|911960|911961|911962|911963|911964|911965|911966|911967|911968|911969|911970|911971|911972|911973|911974|911975|911976|911977|911978|911979|911980|911981|911982|911983|911984|911985|911986|911987|911988|911989|911990|911991|911992|911993|911994|911995|911996|911997|911998|911999|912000|912001|912002|912003|912004|912005|912006|912007|912008|912009|912010|912011|912012|912013|912014|912015|912016|912017|912018|912019|912020|912021|912022|912023|912024|912025|912026|912027|912028|912029|912030|912031|912032|912033|912034|912035|912036|912037|912038|912039|912040|912041|912042|912043|912044|912045|912046|912047|912048|912049|912050|912051|912052|912053|912054|912055|912056|912057|912058|912059|912060|912061|912062|912063|912064|912065|912066|912067|912068|912069|912070|912071|912072|912073|912074|912075|912076|912077|912078|912079|912080|912081|912082|912083|912377|912378|912379|912380|912381|912382|912383|912384|912385|912386|912387|912388|912389|912390|912391|912392|912393|912394|912395|912396|912397|912398|912399|912400|912401|912402|912403|912404|912405|912406|912407|912408|912409|912410|912411|912412|912413|912414|912415|912416|912417|912418|912419|912420|912421|912422|912423|912424|912425|912426|912427|912428|912429|912430|912431|912432|912433|912434|912435|912436|912437|912438|912439|912440|912441|912442|912443|912444|912445|912446|912447|912448|912449|912450|912451|912452|912453|912454|912455|912456|912457|912458|912459|912460|912461|912462|912463|912464|912465|912466|912467|912468|912469|912470|912471|912472|912473|912474|912475|912476|912477|912478|912479|912480|912481|912482|912483|912484|912485|912486|912487|912488|912489|912490|912491|912492|912493|912494|912495|912496|912497|912498|912499|912500|912501|912502|912503|912504|912505|912506|912507|912508|912509|912510|912511|912512|912513|912514|912515|912516|912517|912518|912519|912520|912521|912522|912523|912524|912525|912526|912527|912528|912529|912530|912531|912532|912533|912534|912535|912536|912537|912538|912539|912540|912541|912542|912543|912544|912545|912546|912547|912548|912549|912550|912551|912552|912553|912554|912555|912556|912557|912558|912559|912560|912561|912562|912563|912564|912565|912566|912567|912568|912569|912570|912571|912572|912573|912574|912575|912576|912577|912578|912579|912580|912581|912582|912583|912584|912585|912586|912587|912588|912589|912590|912591|912592|912593|912594|912595|912596|912597|912598|912599|912600|912601|912602|912603|912604|912605|912606|912607|912608|912609|912610|912611|912612|912613|912614|912615|912616|912617|912618|912619|912620|912621|912622|912623|912624|912625|912626|912627|912628|912629|913054|913055|913056|913057|913058|913059|913060|913061|913062|913063|913064|913065|913066|913067|913068|913069|913070|913071|913072|913073|913074|913075|913076|913077|913078|913079|913080|913081|913082|913083|913084|913085|913086|913087|913088|913089|913090|913091|913092|913093|913094|913095|913096|913097|913098|913099|913100|913101|914208|914209|914210|914211|914212|914213|914214|914215|914216|914217|914218|914219|914220|914221|914222|914223|914224|914225|914226|914227|914228|914229|914230|914231|914232|914233|914234|914235|914236|914237|914238|914239|914240|914241|914242|914243|914244|914245|914246|914247|914248|914249|914250|914251|914252|914253|914254|914255|914256|914257|914258|914259|914260|914261|914262|914263|914264|914265|914266|914267|914268|914269|914270|914271|914272|914273|914274|914275|914276|914277|914278|914279|914280|914281|914282|914283|914284|914285|914286|914287|914288|914289|914290|914291|914292|914293|914294|914295|914296|914297|914298|914299|914300|914301|914302|914303|914304|914305|914306|914307|914308|914309|914310|914311|914312|914313|914314|914315|914316|914317|914318|914319|914320|914321|914322|914323|914324|914325|914326|914327|914328|914329|914330|914331|914332|914333|914334|914335|914336|914337|914338|914339|914340|914341|914342|914343|914344|914345|914346|914347|914348|914349|914350|914351|914352|914353|914354|914355|914356|914357|914358|914359|914360|914361|914362|914363|914364|914365|914366|914367|914368|914369|914370|914371|914372|914373|914374|914375|914376|914377|914378|914379|914380|914381|914382|914383|914384|914385|914386|914387|914388|914389|914390|914391|914392|914393|914394|914395|914396|914397|914398|914399|914400|914401|914402|914403|914404|914405|914406|914407|914408|914409|914410|914411|914412|914413|914414|914415|914416|914417|914418|914419|914420|914421|914422|914423|914424|914425|914426|914427|914428|914429|914430|914431|914432|914433|914434|914435|914436|914437|914438|914439|914440|914441|914442|914443|914444|914445|914446|914447|914448|914449|914450|914451|914452|914453|914454|914455|914456|914457|914458|914459|914460|914461|914462|914463|914464|914465|914466|914467|914468|914469|914470|914471|914472|914473|914474|914475|914476|914477|914478|914479|914480|914481|914482|914483|914484|914485|914486|914487|914488|914489|914490|914491|914492|914493|914494|914495|914496|914497|914498|914499|914500|914501|914502|914503|914504|914505|914506|914507|914508|914509|914510|914511|914512|914513|914514|914515|914516|914517|914518|914519|914520|914521|914522|914523|914524|914525|914526|914527|914528|914529|914530|914531|914532|914533|914534|914535|914536|914537|914538|914539|914540|914541|914542|914543|914544|914545|914546|914547|914548|914549|914550|914551|914552|914553|914554|914555|914556|914557|914558|914559|914560|914561|914562|914563|914564|914565|914566|914567|914568|914569|914570|914571|914572|914573|914574|914575|914576|914577|914578|914579|914580|914581|914582|914583|914584|914585|914586|914587|914588|914589|914590|914591|914592|914593|914594|914595|914596|914597|914598|914599|914600|914601|914602|914603|914604|914605|914606|914607|914608|914609|914610|914611|914612|914613|914614|914615|914867|914868|914869|914870|914871|914872|914873|914874|914875|914876|914877|914878|914879|914880|914881|914882|914883|914884|914885|914886|914887|914888|914889|914890|914891|914892|914893|914894|914895|914896|914897|914898|914899|914900|914901|914902|914903|914904|914905|914906|914907|914908|914909|914910|914911|914912|914913|914914|914915|915099|915100|915101|915102|915103|915104|915105|915106|915107|915108|915109|915110|915111|915112|915113|915114|915115|915116|915117|915118|915119|915120|915121|915122|915123|915124|915125|915126|915127|915128|915129|915130|915131|915132|915133|915134|915135|915136|915137|915138|915139|915140|915141|915142|915143|915144|915145|915146|915147|915148|915149|915150|915151|915152|915153|915154|915155|915156|915157|915158|915159|915160|915161|915162|915163|915164|915165|915166|915167|915168|915169|915170|915171|915172|915173|915174|915175|915176|915178|915180|915182|915184|915186|915188|915190|915192|915194|915196|915198|915200|915202|915204|915206|915208|915210|915212|915214|915216|915218|915220|915221|915222|915223|915224|915225|915226|915228|915229|915230|915231|915233|915236|915238|915242|915244|915245|915248|915264|915268|915272|915278|915282|915286|915288|915293|915295|915299|915301|915305|915311|915313|915317|915319|915321|915329|915333|915339|915342|915344|915346|915348|915349|915352|915353|915354|915358|915362|915366|915371|915372|915373|915375|915376|915378|915380|915384|915386|915390|915394|915396|915398|915404|915405|915406|915407|915409|915411|915412|915414|915416|915417|915420|915424|915431|915433|915434|915435|915437|915438|915439|915442|915444|915600|915604|915606|915608|915610|915616|915618|915620|915621|915623|915624|915626|915629|915638|915659|915743|915747|915762|915764|915766|915768|915770|915772|915774|915776|915778|915780|915782|915784|915786|915788|915790|915792|915794|915796|915798|915800|915802|915804|915806|915808|915810|915812|915814|915816|915818|915820|915822|915824|915826|915827|915828|915829|915830|915832|915833|915837|915841|915843|915845|915847|915849|915853|915857|915888|915890|915892|915894|915895|915896|915897|915898|915899|915900|915901|915905|916056|916058|916060|916062|916064|916094|916096|916130|916131|916132|916133|916134|916136|916137|916139|916140|916141|916143|916146|916147|916148|916149|916151|916155|916156|916157|916159|916164|916166|916173|916174|916175|916176|916180|916182|916183|916184|916185|916187|916190|916191|916193|916194|916196|916199|916201|916203|916208|916210|916215|916217|916218|916226|916227|916229|916230|916231|916236|916237|916238|916240|916242|916243|916244|916245|916247|916248|916249|916251|916252|916253|916255|916256|916259|916260|916269|916281|916284|916285|916287|916288|916289|916292|916294|916295|916299|916324|916327|916328|916331|916342|916347|916348|916349|916353|916357|916392|916393|916395|916397|916400|916402|916410|916413|916415|916416|916420|916425|916429|916431|916436|916438|916442|916443|916444|916445|916446|916449|916453|916455|916458|916463|916465|916467|916497|916501|916505|916510|916512|916518|916523|916524|916528|916531|916535|916539|916540|916541|916542|916543|916545|916547|916549|916552|916556|916558|916564|916591|916595|916596|916597|916603|916604|916605|916609|916619|916621|916624|916625|916626|916628|916629|916630|916631|916633|916634|916679|916680|916682|916756|916757|916758|916759|916760|916761|916762|916763|916779|917110|917574|921505|964259|973033|980831", + "text": "Cardiomyopathy" + }, + { + "baseId": "15312", + "text": "Classic Hodgkin lymphoma" + }, + { + "baseId": "15313|15314|15315", + "text": "Alpha-2-plasmin inhibitor deficiency" + }, + { + "baseId": "15316|15317|15318|15319|15320|15321|15322|17573|39970|39971|39972|39973|39974|39975|39976|49864|132691|132694|192559|264867|270856|330334|330336|330343|330344|330352|330356|330361|330366|330368|330370|330372|330373|330374|330378|330380|330387|340560|340561|340568|340570|340574|340584|340589|340591|340594|340596|346262|346263|346264|346270|346271|346274|346278|346285|346289|346294|347587|347588|347594|347597|347598|347601|347605|347606|347615|347616|347619|347622|347625|347626|347629|347631|347633|347634|347635|360238|376729|465131|513647|529227|529502|529523|539076|567707|569572|573744|620611|643961|643962|643963|643964|703528|703529|703530|714761|714762|714763|714764|714765|714766|714767|715764|715765|726464|726465|726466|726468|727487|739997|741095|756192|771887|785158|785776|788013|797266|797611|843207|843208|843209|843210|843211|843212|878689|878690|878691|878692|878693|878694|878695|878696|878697|878698|878699|878700|878701|878702|878703|878704|878705|878706|878707|878708|878709|878710|878711|878712|878713|878714|878715|878716|878717|878718|878719|880611|927580|937252|937253|949210|949211|960137", + "text": "Desbuquois dysplasia 1" + }, + { + "baseId": "15323|15324|15325|15331|15340|15343|15344|15345|15346|15357|106145|106207", + "text": "von Willebrand disease, type 2a" + }, + { + "baseId": "15323|15324|15327|15328|15329|15334|15335|15337|15342|15347|15349|15353|39966|106065|106073|106083|106101|106123|106133|106134|106141|106146|106156|106165|106171|106182|106184|106187|106196|106200|106203|106204|106206|106207|106210|106214|106215|106221|106240|106246|106249|106268|106295|106297|106300|106313|106316|106320|106326|106337|106344|106346|106363|106364|192818|193826|195905|237320|254650|254651|254653|254654|254656|254657|254658|254659|254660|254661|254663|254664|254668|254669|254670|254671|254672|254673|254675|254678|254679|254680|254681|254682|254683|254684|254685|254688|254689|254691|254692|254693|254694|254695|254696|254697|254698|254700|254702|254703|266166|318184|318189|318191|318192|318199|318201|318204|318206|318208|318210|318213|318216|318218|326196|326200|326201|326202|326203|326204|326207|326223|326224|326225|332362|332367|332374|332389|332394|332400|332402|332410|332415|332417|332422|332423|332424|332434|332437|332441|332442|332448|332451|332456|332457|334011|334012|334018|334024|334026|334028|334030|334034|334036|334042|334043|334048|334055|334057|334058|334059|334061|334071|334078|334080|360133|373235|404808|432749|497420|551722|611314|615459|615460|615461|615462|615465|615466|615467|615468|615471|615472|615475|615477|615478|615480|615481|615482|615483|615484|615485|615486|615487|615488|615491|615494|615495|615501|615502|615503|615504|615505|615507|615509|615510|615511|615512|615513|615514|615515|615516|615517|615518|615519|615734|615736|615737|615738|615869|615870|615871|620449|620450|620451|620452|620453|789690|872158|872160|872161|872162|872163|872164|872165|872166", + "text": "von Willebrand disorder" + }, + { + "baseId": "15326|15327|15328|15329|15330|15341|15353", + "text": "von Willebrand disease, type 2b" + }, + { + "baseId": "15327|15329|15335|15335|15349|15353|39966|39967|39969|106073|106207|106327|106364|373235|404808|615480|615489|615490|615493|615496|615497|615498|920305|920306", + "text": "von Willebrand disease type 2" + }, + { + "baseId": "15327|15332|15335|25284|25305|106100|106151|106152|106237|106299|213664|360133|446595|611369|615464|615474|615476|615479|615492|615500|615529|615532|615534|615664|615666|615671|615675|615678|615680|615760|615761|615763", + "text": "Abnormality of coagulation" + }, + { + "baseId": "15332", + "text": "VON WILLEBRAND FACTOR POLYMORPHISM" + }, + { + "baseId": "15332|15335|15335|15336|15337|15347|15348|39965|39968|106073|106207|106327|106364|373235|404808|615476|615499|615506|615731|788870|816014|818299|969566|977260", + "text": "von Willebrand disease type 1" + }, + { + "baseId": "15333|15334|15335|15351|15352|15355|15356", + "text": "von Willebrand disease type 2N" + }, + { + "baseId": "15333|15335|15342|19329|19366|26930|27100|27115|28365|29111|29113|31443|33062|87115|99670|106097|106102|106207|106344|138576|171096|171155|186682|186683|186693|195055|206772|209505|209967|210003|227440|227441|268076|272704|277248|281392|286637|290794|290831|304919|333314|334918|344553|350743|360133|361018|361019|411535|445070|459194|496315|496315|538367|538367|543462|552368|615274|615338|615369|615374|615378|615391|615393|615451|615508|615526|615534|615535|615557|615565|615584|615590|615603|615609|615610|615610|615611|615612|615613|615614|615635|615639|615689|615746|615849|615850|615861|615867|621059|684682|701301|709203|718365|795237|795388|796175|797556|848160|860660|870793|882731|889173|889189|904690|958947|976735|976736|976737|976738|976739|976740|976741|976742|976743|976744|976745|976746|976747|976748|976749|976750|976751|976752|976753|976754|976755|976756|976757|976758|976759|976760|976761|976762|976763|976764|976765|976766|976767|976768|976769|976770|976771|976772|976773|976774|976775|976776|976777|976778|976779|976780|976781|976782|976783|976784|976785|976786|976787|976788|976789|976790|976791|976792|976793|976794|976795|976796|976797|976798|976799|976800|976801|976802|976803|976804|976805|976806|976807|976808|976809|976810|976811", + "text": "Abnormal bleeding" + }, + { + "baseId": "15335|106073|106099|106102|106327|106358|106364|373235|404808|611369|615463|615469|615470|615473|615731|615732|615733|615735|615868|791269|964853", + "text": "Von Willebrand disease, recessive form" + }, + { + "baseId": "15335|19194|19329|19366|25463|26162|26930|28365|28568|29111|29113|29121|29197|31079|31956|33062|39810|59386|59387|87115|99670|106102|106344|133499|138563|138576|139302|166055|171096|171155|171928|171929|171930|188069|188069|188070|188070|193571|195055|206772|209505|209967|227440|227441|227504|250588|253731|253742|253743|253744|253745|253748|253749|253751|253752|253753|253755|253758|253759|267766|268076|272704|277248|281392|286637|290794|290831|302629|302639|302677|302692|302700|304919|306034|306062|310140|310163|310166|310168|310169|310173|310175|310181|310182|310188|310190|310191|310193|310197|310210|310716|310720|310790|310795|310979|311014|315193|315228|315253|315270|315283|315284|315293|315295|315297|315299|315301|315306|321249|321267|321292|321303|321306|321770|321798|321916|321927|321931|321932|321943|321944|321954|321957|321964|321970|321971|333314|334918|344553|350743|360133|360836|411535|411535|429062|445070|470586|496315|538367|552368|552368|552369|585411|590073|610162|612061|612066|615338|615346|615419|615422|615423|615432|615433|615434|615435|615436|615437|615438|615439|615455|615456|615457|615458|615550|615552|615553|615554|615559|615560|615562|615564|615570|615591|615592|615597|615598|615599|615600|615602|615610|615616|615618|615619|615626|615627|615628|615631|615634|615635|615635|615636|615638|615640|615641|615642|615644|615645|615647|615648|615660|615714|615716|615721|615853|615863|621059|684682|701301|701302|709203|712315|718365|795237|795388|796175|797556|801073|801087|801117|801118|801119|801128|801171|801204|801205|801206|801207|801208|801209|801210|801211|801226|801252|848160|860660|865801|865802|865803|865804|865805|865806|865807|865808|865809|865810|865811|865812|865813|865814|865815|865816|865817|865818|865819|865820|865821|865822|865823|865824|868470|870793|882731|889173|889189|904690|958947|976735|976736|976737|976738|976739|976740|976741|976742|976743|976744|976745|976746|976747|976748|976749|976750|976751|976752|976753|976754|976755|976756|976757|976758|976759|976760|976761|976762|976763|976764|976765|976766|976767|976768|976769|976770|976771|976772|976773|976774|976775|976776|976777|976778|976779|976780|976781|976782|976783|976784|976785|976786|976787|976788|976789|976790|976791|976792|976793|976794|976795|976796|976797|976798|976799|976800|976801|976802|976803|976804|976805|976806|976807|976808|976809|976810|976811", + "text": "Thrombocytopenia" + }, + { + "baseId": "15336|15337|15338|15342|15354|39965|976584", + "text": "von Willebrand disease type 3" + }, + { + "baseId": "15339|15350|106207|106217|254671", + "text": "von Willebrand disease type 2M" + }, + { + "baseId": "15347", + "text": "von Willebrand factor Vicenza" + }, + { + "baseId": "15347|615738|801067|801135|801136", + "text": "Reduced quantity of Von Willebrand factor" + }, + { + "baseId": "15347|615498|615738|801067|801135|801136", + "text": "Reduced von Willebrand factor activity" + }, + { + "baseId": "15349", + "text": "von Willebrand disease, type 1, susceptibility to" + }, + { + "baseId": "15358|15359|15360|15361|15362|15363|39963|132027|132028|132029|132030|237630|252574|301710|301712|301719|304912|304920|304926|304928|304929|304930|309535|309553|309557|309558|309650|309651|309660|309662|309663|359793|792670|897341|897342|897343|897344|897345|897346|897347|897348|897349|897350|897351|897352|897353|897354|897355|919071", + "text": "Exudative vitreoretinopathy 5" + }, + { + "baseId": "15364|15365|15365|15366|39951|57050|57051|57052|57054|57054|57055|57056|57057|57059|57060|57061|57063|57063|57070|57071|57072|57074|57075|57076|57078|57079|142214|172462|172596|172597|172598|172599|172602|178469|191293|198075|198078|198082|198089|198090|198091|198092|198094|198098|198099|198100|198107|228513|228514|228515|228518|228518|228521|228522|238345|238346|257981|257984|283296|391545|391546|404750|425384|442887|448242|448247|448367|448372|448375|448379|448433|448437|509228|509231|509232|509234|509236|509241|516079|516080|516081|516083|516085|516088|516090|516113|516118|516122|557372|557374|557425|558595|590237|614739|628260|628261|628262|628263|628264|628265|628266|628267|628268|628269|685109|685829|746651|762083|818999|824421|824422|824423|824424|824425|850812|922162|930662|930663|942103|952527|970701", + "text": "Dilated cardiomyopathy 1CC" + }, + { + "baseId": "15365|39950|39951|39951|57050|57051|57051|57052|57054|57055|57056|57057|57059|57060|57061|57063|57070|57071|57072|57074|57075|57076|57078|57079|142214|172462|172596|172597|172598|172599|172602|178469|191293|198075|198078|198082|198089|198090|198091|198092|198094|198098|198099|198100|198107|228513|228514|228515|228518|228521|228522|238345|238346|257981|257984|283296|391545|391546|404750|425384|442887|448242|448247|448367|448372|448375|448379|448433|448437|509228|509231|509232|509234|509236|509241|516079|516080|516081|516083|516085|516088|516090|516113|516118|516122|557372|557374|557425|558595|614739|628260|628261|628262|628263|628264|628265|628266|628267|628268|628269|685109|685829|746651|762083|818999|824421|824422|824423|824424|824425|850812|922162|930662|930663|942103|952527", + "text": "Familial hypertrophic cardiomyopathy 20" + }, + { + "baseId": "15367|15368|15369|15370|34107|34108|140977|199857|244479|271093|296800|296802|296803|296804|296805|296811|296813|296814|298708|298709|298710|298717|298737|298739|298740|298747|302945|302950|302956|302957|303124|303126|303129|303130|368070|368364|369733|454418|454806|454924|454926|455398|455401|455662|508800|520585|520992|521007|521009|521012|521232|521234|521238|521244|521407|521408|521499|521501|521505|521507|521511|560257|560370|563023|563028|563030|563032|563034|633718|633721|633722|633726|633728|655652|691816|893839|893840|893841|893842|893843|893844|893845|893846|893847|893848|893849|893850|893851|893852|893853|893854|893855|893856|893857|896076|903668", + "text": "Hereditary sensory and autonomic neuropathy type IIB" + }, + { + "baseId": "15367|15369|20202|20203|20204|20205|20206|20207|20207|20208|20209|20210|21389|21395|21398|21405|21406|21407|21409|34107|34108|34109|34111|34121|34122|34122|34196|34199|34201|39313|39315|39315|39316|70494|76767|76783|80302|99991|99992|135702|135705|135707|135708|135709|135710|135711|135712|135712|135714|135715|135718|135719|141626|141627|141628|141629|167457|167458|167458|171771|177333|178054|178058|178058|178059|188834|190810|190811|190812|191022|191023|191370|191661|191661|191829|191830|191899|191900|191900|192002|192109|192649|192686|192753|192837|192976|192977|192995|193140|193181|195313|195314|195314|206888|206959|231501|231504|231505|231506|231510|231514|231515|238383|238384|238385|244295|244296|244300|244301|244304|244305|244307|244308|244311|244313|244314|244315|244317|244319|244320|244321|244344|244362|244839|250350|250353|254719|254728|254731|254765|254766|254767|254768|254769|268249|268661|270142|270187|270755|270757|272066|273736|273981|273982|274078|274080|275101|275422|282594|282597|282598|282600|283323|283334|283335|283336|283355|283356|284848|284864|284866|284868|285355|285357|285359|285361|285365|285388|285390|285392|285402|318498|318565|318567|318612|318615|318618|318621|318629|318630|318634|326642|326717|326765|326770|326921|326937|326943|332882|332917|332957|332972|333004|333009|333010|333015|333016|333017|333019|334600|334602|334638|334640|334644|334645|334646|334703|334711|334722|334726|334732|334739|334766|334773|359378|360111|360823|363878|364014|365676|365687|365688|365908|365911|365916|366164|391441|391444|391448|391452|391453|391456|391486|391488|391495|391498|391498|391500|391507|391611|391614|391616|391617|391619|391621|391625|391661|391665|405413|405415|405417|413333|414848|414880|421318|421319|425436|425437|426661|426662|427935|434048|440564|440565|440566|440567|440569|440688|440692|442555|443042|443044|443045|443046|443214|445090|448472|448550|448865|448866|448870|448874|448876|448878|448879|448880|448882|448889|448890|448897|448902|448903|448913|448922|448927|448938|448951|448952|448953|448955|448957|449038|449055|449057|449059|449063|449072|449080|449089|449091|449093|449095|449097|449099|449101|449104|449105|449110|449117|449146|449148|449149|449153|449154|449159|449160|449161|449162|449164|449166|449168|449169|449172|449175|449178|449180|449181|449183|449184|449185|449187|449189|449191|449196|449197|449198|449199|449203|449204|449209|449210|449211|449218|449222|449228|449231|449233|449235|449244|449260|449261|449265|449268|450626|450900|462466|462468|462497|462501|462521|462526|462527|462532|462534|462536|462727|462761|462773|462775|462782|462783|462786|462792|462794|463211|463212|463234|463252|463269|463270|463272|463277|463278|463281|463282|463285|463288|463333|463340|463342|463346|463370|463380|463387|463392|463394|463397|463400|463405|489508|490283|490953|491926|492995|493532|496215|498890|498981|505053|511356|516611|516616|516618|516631|516635|516636|516650|516656|516657|516658|516659|516661|516669|516670|516671|516672|516675|516676|516677|516678|516679|516682|516684|516685|516686|516687|516688|516690|516691|516693|516694|516695|516698|516701|516702|516703|516704|516705|516707|516710|516714|516716|516719|516721|516722|516725|516735|516739|516747|516752|516753|516755|516760|516762|516769|516771|516790|516796|516804|516807|516808|516813|518076|518112|527206|527340|527343|527351|527360|527365|527366|527381|527382|527384|527387|527390|527398|527402|527404|527411|527412|527413|527414|527417|527420|527422|527424|527426|527652|527658|527661|527663|527665|527667|527668|527676|527679|527684|527698|527703|527884|527898|527913|527915|527945|527946|527954|536616|557650|557652|557658|557660|557662|557664|557666|557668|557670|557672|557674|557676|557678|557680|557682|557684|557686|557688|557690|557693|557695|557697|557699|557701|557703|557705|557707|557709|557711|557713|557715|557717|557719|557721|557723|558867|558869|558871|558873|558875|558877|558879|558881|558883|558885|558887|558889|558891|558893|558895|558897|558899|558901|558903|558905|559352|559354|559356|559358|559360|559362|559364|559366|559368|559370|559372|559374|559376|559378|559380|559382|559384|559386|559388|559390|565030|565725|565733|565736|565741|565750|565751|565763|565766|565768|565769|565771|566292|567060|567061|567069|567074|567087|567091|568173|568178|568181|568190|568191|568195|568196|568201|568202|572074|572075|572084|572103|572104|572120|572126|572132|572134|572139|572142|572145|576587|578504|578505|582661|588407|608919|612573|612964|620852|622316|622836|624877|625099|625281|628887|628888|628889|628890|628891|628892|628893|628894|628895|628896|628897|628898|628899|628900|628901|628902|628903|628904|628905|628906|628907|628908|628909|628910|628911|628912|628913|628914|628915|628916|628917|628918|628919|628920|628921|628922|628923|628924|628925|628926|628927|628928|628929|628930|628931|628932|628933|628934|628935|628936|628937|628938|628939|628940|628941|628942|628943|628944|628945|628946|628947|628948|628949|628950|628951|628952|628953|628954|628955|628956|628957|628958|628959|628960|628961|628962|628963|628964|628965|628966|628967|628968|628969|628970|628971|628972|628973|628974|628975|641386|641387|641388|641398|641403|641404|641405|641406|641407|641408|641409|641410|641411|641412|641413|641436|641437|641438|641447|641448|641449|641459|641460|641462|641463|641465|641466|641467|641470|641471|641474|641475|641477|641478|641479|641481|641482|641488|641489|641490|641491|641492|641493|641494|641495|641496|641497|641498|641499|641500|641501|641502|641503|650863|650871|650897|652502|652739|655175|683416|683418|685116|685904|685906|685907|685909|685910|685912|685914|685915|685916|685917|688056|689676|689677|690876|690879|690880|690881|690882|693283|693284|693285|693291|693292|693300|693305|693308|693309|702530|702540|702541|719371|725312|732887|746896|746898|753644|762367|762370|762371|762376|769338|769342|769356|774631|780932|780933|780934|787106|790124|790125|792591|794848|794851|799730|820519|820522|820523|820525|825102|825103|825104|825105|825106|825107|825108|825109|825110|825111|825112|825113|825114|825115|825116|825117|825118|825119|825120|825121|825122|825123|825124|825125|825126|825127|825128|825129|825130|825131|825132|825133|825134|825135|825136|825137|825138|825139|825140|825141|825142|825143|825144|825145|825146|825147|825148|825149|825150|825151|825152|825153|825154|825155|825156|825157|825158|825159|825160|825161|825162|825163|825164|825165|825166|825167|825168|825169|825170|825171|825172|825173|825174|825175|825176|825177|825178|825179|825180|825181|825182|825183|825184|825185|825186|825187|825188|825189|825190|825191|825192|840270|840271|840272|840273|840274|840275|840276|840301|840307|840308|840309|840310|840311|840312|840313|840314|840315|840316|840317|840318|840319|840320|840321|840322|840323|840324|840325|840326|840327|840328|840329|840330|840331|840332|840333|840334|840335|840336|840337|840338|840339|840340|840341|840401|840402|840407|840408|840413|840414|840415|840417|840418|840423|840424|840425|840427|840428|840429|840435|840436|840437|840444|840445|840446|840447|840448|840449|840450|840451|840452|840453|850805|850850|851352|851354|870452|881391|881399|918691|918691|918692|918693|918760|918761|918762|918763|919473|920173|920174|922375|922376|922377|922378|922379|922380|922381|922382|922383|922384|922385|922386|922387|922388|922389|922390|922391|922392|922393|922394|922395|922396|922397|922398|922399|922400|922401|926731|926732|926733|926734|926735|926739|926742|926743|926744|926745|926746|926747|926748|926749|926750|926751|926766|926768|926772|926773|926776|926777|926780|926781|926782|926783|926784|930943|930944|930945|930946|930947|930948|930949|930950|930951|930952|930953|930954|930955|930956|930957|930958|930959|930960|930961|930962|930963|930964|930965|930966|930967|930968|936262|936263|936264|936275|936277|936278|936279|936280|936281|936282|936283|936305|936306|936308|936310|936313|936314|936315|941041|941042|942366|942367|942368|942369|942370|942371|942372|942373|942374|942375|942376|942377|942378|942379|942380|942381|942382|942383|942384|942385|942386|942387|942388|942389|942390|942391|942392|942393|942394|942395|942396|948159|948169|948172|948173|948174|948175|948176|948177|948178|948227|948228|948235|948236|952765|952766|952767|952768|952769|952770|952771|952772|952773|952774|952775|952776|952777|952778|952779|952780|956940|956941|956955|956956|956957|956958|956959|956960|956992|956995|957001|959592|959593|959594|959595|960059|960060|960453|961475|961476|961477|961478|961479|961480|961481|961482|961483|961484|961485|961486|961487|961488|961489", + "text": "Hereditary sensory and autonomic neuropathy type IIA" + }, + { + "baseId": "15367|15369|16052|16054|16056|16363|16761|16763|17307|17308|17310|17311|17314|17315|17317|17318|17319|17320|17321|17519|17521|17522|17524|17656|17657|17658|17951|19232|19237|19239|19241|19697|19699|19826|19830|19831|19839|19840|19841|19842|20032|20038|20039|20040|20041|20042|20160|20340|20369|20370|20371|21020|21096|21100|21124|21125|21126|21227|21228|22316|22319|22322|22323|22384|22385|22386|22387|22450|22517|22519|22523|23443|23470|23474|23476|23480|23482|23483|23505|24153|24243|24244|24245|24247|24686|25472|25480|25483|25485|25489|26833|26834|27350|28456|28460|28461|28465|28466|28473|28479|28491|28493|28497|29205|29206|29213|29215|29216|29218|29219|29220|29222|29223|29224|29227|29237|29239|29526|29527|29528|29537|29538|29542|29558|29559|29566|31791|33931|33932|33933|33934|33935|33936|33937|33938|34109|34111|34540|34541|34542|34543|34544|34547|34549|34550|34553|38401|38402|38425|38637|38984|39114|39397|39429|39430|39536|39691|39692|39695|39817|44263|45136|45139|45141|45142|45552|45553|46970|47002|47004|47011|47012|48094|49429|49430|49431|49438|49439|49441|49442|49444|49446|49447|49448|49449|49450|49653|49654|49655|49660|49853|52622|52623|52625|57199|57201|57207|57208|57212|57218|57219|57226|57235|57240|57242|57250|57252|57256|59596|77508|77568|77570|77573|77581|77583|77584|77585|77589|77591|77592|77593|77699|77753|77759|77772|77845|77856|77862|79355|83910|131993|132007|132008|134370|134371|134374|134375|134376|134377|134378|134379|134380|134382|134383|134384|134385|134386|134387|134388|134389|134390|134391|134845|134846|134847|135065|135494|135495|135496|135497|135498|135499|135743|135744|135745|135746|135747|135748|140023|140025|140026|140027|140028|140821|140822|140885|141071|141072|141077|141078|141079|141080|141142|141143|141144|141145|141146|141147|141271|141425|141426|141427|141428|141429|141551|141902|141903|141904|141913|141914|141915|141916|141918|141919|141920|141921|141922|141923|141974|141975|142136|142137|142213|142520|142566|142666|142667|142668|142669|142804|142805|143024|143025|165481|165482|165483|165484|165488|165491|165492|165494|165496|165499|165500|165503|165504|165506|165507|165509|165817|165820|165834|167382|167383|167384|167385|167388|167389|167390|167391|167392|167393|167394|167395|167396|167397|167398|167399|167400|167401|167459|171049|171812|171902|171903|171904|172343|172465|172488|172490|176680|179802|179808|179812|179813|181182|181183|185749|185951|185952|186051|186052|186053|186076|186089|186163|186164|186290|186291|187891|187892|187893|187938|189383|190114|190380|191088|191093|191094|191254|191366|191367|191443|191530|191531|191532|191533|191572|191601|191657|191658|192151|192323|192529|192545|192546|192674|192971|193949|194297|194535|194619|195304|195306|195407|195513|195938|196028|196270|196292|196468|196471|198602|199857|200697|200698|200699|200700|200701|204407|204408|204409|204476|204477|204478|205258|205754|208055|208056|208057|208058|208060|208062|208063|208065|208077|208080|208083|210581|210582|210584|210587|210588|210589|210591|210594|210597|210598|210603|210605|211999|212066|212067|212068|212070|212071|212075|212505|212506|212510|212511|212513|212614|212631|212633|212797|212975|212977|212980|212981|212982|212983|212984|212985|213147|213148|213241|213453|213454|213456|213459|213461|213462|213464|213498|213500|213501|213502|213504|213582|213789|213792|213795|213813|213814|213836|213890|213892|214089|214516|214517|214533|215003|215004|215437|221072|221073|221074|221077|221079|221083|221606|221607|221608|221609|221611|221612|221613|221615|221616|221621|221697|221699|221739|221755|221768|221981|222194|222196|222197|222198|222199|222200|222201|222357|222442|222443|222444|222445|222559|222808|222809|222815|222816|222817|222818|226815|226827|228278|228279|230871|231639|231643|231645|231715|231806|231807|231811|231812|231813|231814|231824|232156|232162|237047|237453|238110|238113|238114|238115|238116|238117|238157|239774|239775|239776|239779|240172|240173|240443|240445|241218|241223|241225|241227|241228|241231|241233|241234|241236|241764|241772|241774|241775|241776|243335|243338|243339|243340|243342|243822|244171|244187|244188|244192|244195|244196|244198|244220|244224|244249|244251|244253|244254|244256|244462|244464|244470|244472|244473|244504|244506|244510|244513|244521|244523|244526|244539|244569|244671|244678|244684|244690|244695|244696|244704|244717|244731|244819|244858|244939|244986|244993|244994|245001|245123|245125|245126|245129|245130|245131|245135|245139|245141|245178|245179|245180|245181|245182|245183|245184|245188|245189|247463|248765|249211|249214|249266|249267|249268|252049|252050|252051|252053|252054|252055|252056|252057|252786|252788|252789|252790|252793|252795|252932|252934|253060|253176|253796|254287|254288|254289|254290|254291|254292|254293|254294|254295|254296|254298|254300|254301|254302|254303|254304|254306|254308|254309|254310|254369|254370|254371|254399|254402|254403|254404|254405|254879|254880|264285|265353|266620|267186|267635|267827|268251|268456|268457|268601|268886|268889|269524|270495|271257|271447|271540|271542|271543|272216|272799|273691|274897|275620|275649|275671|275703|275733|275737|275742|275746|275750|275754|275757|275758|275799|275809|275900|276220|276610|276884|276943|276953|276954|278027|292511|296204|296233|298029|298731|301214|301988|302040|302063|302065|302074|302288|302289|302308|302796|303724|304405|305570|305571|305587|306131|306135|306149|306822|306829|306833|308910|308911|310604|310904|310905|310994|310996|311081|311087|311679|311681|312023|313229|313233|313237|313591|315010|315544|315550|315557|315559|315573|315606|315609|315625|315627|315647|315650|315984|315989|316589|316590|316601|316602|316611|316612|316822|316833|316842|319383|319967|319975|320125|320127|320133|320136|320152|320175|320180|321790|321791|321792|321807|321857|322452|322493|323240|323242|323248|323734|324393|326195|327853|327868|327874|328677|328679|328697|328724|328725|328728|328729|328743|328933|328938|328961|328978|328983|328985|329271|329275|329281|329895|329916|330287|330448|330495|330497|330499|331861|333547|333552|333554|333557|333558|334076|334077|334099|335332|335876|337142|337184|337211|337222|337249|337279|338837|340468|341848|343380|343605|343607|343613|343619|343812|343825|348459|348903|348907|348939|348944|348945|349263|349849|349859|349862|349866|349869|349874|352059|352940|352942|353954|358288|359204|359759|360628|360934|361105|361545|361552|363899|364342|364346|364400|364425|364426|364449|364522|364527|366203|366375|367013|368003|368200|368281|368286|368451|368638|369141|369375|369578|369611|369648|369651|369713|369716|369722|370463|370961|371096|371359|371569|371673|371765|371768|371932|371968|372108|372411|372487|372633|372636|372637|372643|372647|372650|372840|372884|372893|372921|372927|373173|373177|373201|373407|373409|373596|373630|373640|373642|373913|373972|373995|374283|374285|374297|374398|374401|374431|374472|374513|374528|374529|375357|375365|375382|375755|375775|375792|375808|375809|375821|375832|375891|376502|376509|377486|377643|378125|379575|379576|379613|390736|390740|390751|390819|390836|390842|390844|390849|390858|394833|394898|395077|395089|395094|395346|395428|395634|395915|396265|396279|396414|396551|396675|396688|396813|397323|397504|397732|398806|398933|398938|398949|398958|401091|401543|401813|402264|402722|403294|403327|403348|403719|403846|404289|404290|404895|404896|404898|404958|404971|406787|407128|407876|408497|408501|408513|408629|408630|409060|410607|410608|411470|411472|413321|414993|415301|415739|421186|421892|422104|422510|422511|425764|425817|425942|426010|426202|426718|426719|429340|429523|429527|429644|433504|433634|433691|433692|433993|433994|438108|438450|438507|440348|440350|440355|440400|440403|440406|440868|440870|440871|440877|440904|440905|441080|441144|441146|441171|441503|441941|442226|442441|442442|442443|442444|442447|442449|442450|442452|442454|442609|442657|442659|443710|444306|444528|444531|444910|445059|446751|446958|446998|447073|447159|447174|447257|447368|447429|447442|450538|450735|452185|452187|452342|452516|454724|454731|454741|454808|455148|455259|455264|455273|455294|455592|455779|456013|456923|457158|457448|457766|457812|457969|457987|458215|458238|458365|458542|458664|459011|459045|459680|461551|461617|461635|461740|461948|462063|462105|462180|462282|462375|462381|462385|462387|462391|462409|462894|462995|463003|463119|463131|463237|463250|463420|463482|463784|466970|467288|468804|469817|469829|469844|470221|470223|470244|470418|470422|470425|470455|470867|470874|470883|470912|470975|470989|470998|471000|471001|471721|472198|482001|486086|490562|492021|492543|495216|495847|498010|501059|501212|501755|502083|502296|502365|502368|502453|502965|502997|503339|503427|503764|503874|504071|504324|504355|504408|504490|504527|504562|504563|504611|504845|504857|504900|504903|505288|505314|506949|506956|508858|509114|509119|511160|511955|511961|512742|512743|514037|514518|514869|514902|514908|514920|515030|515078|515092|515140|515150|515228|515242|515261|515330|515335|517843|518777|518922|519312|520898|521264|521296|521380|521921|522820|522828|523269|523283|523291|523509|523981|523991|524209|524304|524535|524561|524680|524687|525615|526465|526597|526599|526642|526653|526669|527026|527112|527192|527218|527308|527314|527316|527321|527840|527872|527903|528346|530513|532993|533014|533019|533028|533078|533093|533103|533108|533131|533134|533481|533483|533660|533665|533687|534929|534951|534954|535067|535069|535125|535192|535194|535195|537077|537147|537474|539959|540438|552154|556578|556582|556615|556660|556664|556721|556903|556905|556909|558090|558092|558098|560193|560205|560316|560322|560328|560330|560946|561068|562170|562710|562884|563073|563305|564659|564664|564975|565041|565215|565767|566239|566353|566799|567510|567603|568288|570412|570791|570862|570922|570936|571244|572572|572574|572616|572748|573114|573116|573989|574306|574883|574885|575446|575643|576405|576434|577606|577807|579833|579843|580097|590307|608961|609158|609184|609686|609702|610055|610575|611494|611955|612699|612702|613532|619948|619958|620192|620269|622355|623317|624120|624882|624883|624884|624885|624886|624887|624888|624889|624890|624891|624892|624893|624894|624895|624896|624897|624898|624899|624900|624901|624902|624903|624904|624905|624906|624907|624908|624909|624910|624911|624912|624913|624914|624915|624916|624917|624918|624919|624920|624921|624922|624923|624924|624925|624926|624927|624928|624929|624930|624931|624932|624933|624934|624935|624936|624937|624938|624939|624940|624941|624942|624943|624944|624945|624946|624947|624948|624949|624950|624951|624952|624953|624954|624955|624956|624957|624958|624959|624960|624961|624962|624963|624964|624965|624966|624967|624968|624969|624970|624971|624972|624973|624974|624975|624976|624977|624978|624979|624980|624981|624982|624983|624984|624985|624986|624987|624989|624990|624991|624992|624993|624994|624995|624996|624997|624998|624999|625002|625003|625004|625005|625006|625007|625008|625009|625010|625011|625012|625013|625015|625016|625017|625018|625019|625020|625021|625022|625023|625024|625025|625027|625028|625029|625030|625031|625032|625033|625034|625035|625036|625037|625038|625041|625042|625043|625044|625045|625046|625047|625048|625049|625050|625051|625052|625053|625054|625055|625056|625058|625059|625060|625061|625062|625063|625064|625065|625066|625067|625068|625069|625070|625071|625072|625074|625075|625076|625077|625078|625079|625080|625081|625082|625083|625084|625085|625086|625087|625089|625090|625091|625092|625093|625095|625096|625097|625098|625099|625101|625102|625103|625104|625105|625106|625107|625108|625109|625110|625111|625112|625113|625114|625115|625116|625117|625118|625119|625120|625121|625122|625123|625124|625125|625126|625127|625128|625129|625130|625131|625132|625133|625134|625135|625136|625137|625138|625140|625141|625142|625145|625146|625147|625148|625149|625150|625151|625152|625153|625154|625156|625157|625158|625159|625160|625161|625162|625163|625164|625165|625166|625167|625168|625169|625170|625171|625172|625173|625174|625175|625176|625177|625178|625179|625180|625181|625182|625183|625184|625185|625186|625187|625188|625189|625190|625191|625192|625193|625195|625196|625197|625201|625202|625203|625204|625210|625225|625232|625236|625243|625255|625258|625260|625261|625262|625263|625264|625265|625266|625267|625268|625269|625270|625271|625272|625273|625274|625275|625276|625277|625278|625279|625280|625281|625282|625283|625284|625285|625294|625295|625296|625297|625298|625299|625300|625301|625302|625303|625304|625305|625306|625307|625308|625309|625310|625311|625313|625314|625315|625332|625353|625361|625362|625364|625365|625367|625368|625369|625372|625373|625374|625375|625376|625377|625378|625379|625380|625383|625384|625385|625386|625387|625391|625396|625397|625398|625399|625400|625401|625402|625403|625404|625406|625407|625410|625411|625412|625413|625414|625415|625416|625417|625418|625419|625420|625421|625422|625424|625425|625426|625427|625428|625429|625430|625431|625432|625433|625434|625435|625436|625437|625438|625439|625440|625441|625442|625443|625444|625445|625446|625447|625448|625449|625450|625451|625452|625453|625454|625455|625456|625457|625458|625459|625460|625461|625462|625463|625464|625465|625466|625467|625468|625469|625470|625471|625472|625473|625474|625475|625476|625477|625478|625479|625480|625481|625482|625483|625484|625485|625486|625487|625488|625489|625490|625491|625492|625493|625494|625495|625496|625497|625498|625499|625500|625501|625502|625503|625504|625505|625506|625507|625508|625509|625510|625511|625512|625513|625514|625515|625516|625517|625518|625519|625520|625521|625522|625523|625524|625525|625526|625527|625528|625529|625530|625531|625532|625533|625534|625535|625536|625537|625538|625539|625540|625541|625542|625543|625545|625546|625547|625548|625549|625550|625551|625552|625553|625554|625555|625556|625557|625558|625559|625560|625561|625562|625563|625564|625565|625566|625567|625568|625569|625570|625571|625572|625573|625574|625575|625576|625577|625578|625579|625580|625581|625582|625583|625584|625585|625586|625587|625588|625589|625590|625591|625592|625593|625594|625595|625596|625597|625598|625599|625600|625601|625602|625603|625604|625605|625606|625607|625608|625609|625610|625611|625612|625613|625614|625615|625616|625617|625618|625619|625620|625621|625622|625623|625624|625625|625626|625627|625628|625629|625630|625631|625632|625633|625634|625635|625636|625637|625638|625639|625640|625641|625642|625643|625644|625645|625646|625647|625648|625649|625650|625651|625652|625653|625654|625655|625656|625657|625658|625659|625660|625661|625662|625663|625664|625665|625666|625667|625668|625669|625670|625671|625672|625673|625674|625675|625676|625678|625679|625680|625681|625682|625683|625684|625685|625686|625687|625688|625689|625690|625691|625692|625693|625694|625695|625696|625697|625698|625699|625700|625701|625702|625703|625704|625705|625706|625707|625708|625709|625710|625711|625712|625713|625714|625715|625719|625723|625724|625725|625726|625727|625728|625729|625730|625732|625733|625734|625735|625736|625737|625738|625739|625740|625741|625742|625743|625744|625745|625746|625747|625748|625749|625754|625755|625756|625757|625758|625759|625762|625763|625764|625765|625766|625767|625768|625769|625771|625772|626491|626494|626748|626918|629485|632549|633601|633604|633619|633622|634484|636128|636129|637035|637037|637659|637669|637670|637671|638394|639356|640206|640400|640402|640429|640431|640562|640574|640609|640614|640628|640629|640630|640631|641064|641075|641303|641306|642076|642079|642097|642111|643813|643816|643818|644930|644942|645317|645320|648091|648101|648115|648125|648131|648135|648267|648280|650673|651610|655699|655860|656797|663407|663794|663811|666404|667147|667189|667214|667230|682112|682952|682953|682954|682955|682956|682957|682958|682961|682963|682964|682965|682966|682967|682968|682970|682971|682972|682973|682974|682975|682976|682977|682978|682979|682980|682981|682983|682985|682986|682987|682988|682990|682993|682994|682995|682996|682997|682998|683001|683002|683003|683005|683007|683008|683009|683010|683011|683012|683013|683015|683018|683019|683020|683022|683023|683024|683025|683026|683027|683028|683029|683030|683032|683033|683034|683035|683036|683039|683041|683042|683047|683048|683049|683051|683052|683053|683054|683055|683056|683057|683058|683059|683060|683061|683062|683065|683066|683067|683068|683071|683073|683074|683077|683078|683079|683080|683081|683082|683084|683086|683087|683088|683089|683090|683091|683092|683093|683094|683095|683096|683097|683099|683100|683106|683109|683110|683111|683112|683113|683116|683117|683118|683121|683123|683124|683125|683126|683127|683128|683129|683131|683132|683227|683232|683286|683719|683723|683724|683750|683751|683979|684039|684041|684184|684273|684276|684281|684282|684322|684426|684429|684571|684811|684813|684814|684817|684848|684850|684944|685031|685079|685189|685506|685563|686772|686778|687193|687359|687849|687857|687865|687866|687870|688188|688200|688202|689045|689056|689134|689454|689551|689906|689930|690285|691783|692227|692703|693123|693128|693189|693404|694047|695282|695306|695605|711763|725560|730541|738248|752931|753034|758640|758864|761252|766739|767100|774196|775742|783265|791854|792836|793079|799080|799081|799082|799083|799084|799085|799661|800146|800147|815847|815849|822366|822372|822628|825756|830497|831406|834565|835445|835448|835449|837578|838970|839272|846811|847687|847706|847711|847871|847883|850251|850254|869243|871630|876816|882052|899011|899015|899375|899376|905067|905068|905069|905070|905071|905072|905073|905074|905075|905076|905077|905078|905079|905080|905081|905082|905083|905084|905085|905086|905087|905088|905089|905090|905091|905092|905093|905094|905095|905096|905097|905098|905099|905100|905101|905102|905103|905104|905105|905106|905107|905108|905109|905110|905111|905112|905113|905114|905115|905116|905117|905118|905119|905120|905121|905122|905123|905124|905125|905126|905127|905128|905129|905130|905131|905132|905133|905134|905135|905136|905137|905138|905139|905140|905141|905142|905143|905144|905145|905146|905147|905148|905149|905150|905151|905152|905153|905154|905155|905156|905157|905158|905159|905160|905161|905162|905163|905164|905165|905166|905167|905168|905169|905170|905171|905172|905173|905174|905175|905176|905177|905178|905179|905180|905181|905182|905183|905184|905185|905186|905187|905188|905189|905190|905191|905192|905193|905194|905195|905196|905197|905198|905199|905200|905201|905202|905203|905204|905205|905206|905207|905208|905209|905210|905211|905212|905213|905214|905215|905216|905217|905218|905219|905220|905221|905222|905223|905224|905225|905226|905227|905228|905229|905230|905231|905232|905233|905234|905235|905236|905237|905238|905239|905240|905241|905242|905243|905244|905245|905246|905247|905248|905249|905250|905251|905252|905253|905254|905255|905256|905257|905258|905259|905260|905261|905262|905263|905264|905265|905266|905267|905268|905269|905270|905271|905272|905273|905274|905275|905276|905277|905278|905279|905280|905281|905282|905283|905284|905285|905286|905287|905288|905289|905290|905291|905292|905293|905294|905295|905296|905297|905298|905299|905300|905301|905302|905303|905304|905305|905306|905307|905308|905309|905310|905311|905312|905313|905314|905315|905316|905317|905318|905319|905320|905321|905322|905323|905324|905325|905326|905327|905328|905329|905330|905331|905332|905333|905334|905335|905336|905337|905338|905339|905340|905341|905342|905343|905344|905345|905346|905347|905348|905349|905350|905351|905352|905353|905354|905355|905356|905357|905358|905359|905360|905361|905362|905363|905364|905365|905366|905367|905368|905369|905370|905371|905372|905373|905374|905375|905376|905377|905378|905379|905380|905381|905382|905383|905384|905385|905386|905387|905388|905389|905390|905391|905392|905393|905394|905395|905396|905397|905398|905399|905400|905401|905402|905403|905404|905405|905406|905407|905408|905409|905410|905411|905412|905413|905414|905415|905416|905417|905418|905419|905420|905421|905422|905423|905424|905425|905426|905427|905428|905429|905430|905431|905432|905433|905434|905435|905436|905437|905438|905439|905440|905441|905442|905443|905444|905445|905446|905447|905448|905449|905450|905451|905452|905453|905454|905455|905456|905457|905458|905459|905460|905461|905462|905463|905464|905465|905466|905467|905468|905469|905470|905471|905472|905473|905474|905475|905476|905477|905478|905479|905480|905481|905482|905483|905484|905485|905486|905487|905488|905489|905490|905491|905492|905493|905494|905495|905496|905497|905498|905499|905500|905501|905502|905503|905504|905505|905506|905507|905508|905509|905510|905511|905512|905513|905514|905515|905516|905517|905518|905519|905520|905521|905522|905523|905524|905525|905526|905527|905528|905529|905530|905531|905532|905533|905534|905535|905536|905537|905538|905539|905540|905541|905542|905543|905544|905545|905546|905547|905548|905549|905550|905551|905552|905553|905554|905555|905556|905557|905558|905559|905560|905561|905562|905563|905564|905565|905566|905567|905568|905569|905570|905571|905572|905573|905574|905575|905576|905577|905578|905579|905580|905581|905582|905583|905584|905585|905587|905588|905589|905590|905591|905592|905593|905594|905595|905596|905597|905598|905599|905600|905601|905602|905603|905604|905605|905606|905607|905608|905609|905610|905611|905612|905613|905614|905615|905616|905617|905618|905619|905620|905621|905622|905623|905624|905625|905626|905627|905628|905629|905630|905631|905632|905633|905634|905635|905636|905637|905638|905639|905640|905641|905642|905643|905644|905645|905646|905647|905648|905649|905650|905651|905652|905653|905654|905655|905656|905657|905658|905659|905660|905661|905662|905663|905664|905665|905666|905667|905668|905669|905670|905671|905672|905673|905674|905675|905676|905677|905678|905679|905680|905681|905682|905683|905684|905685|905687|905688|905689|905690|905691|905692|905693|905694|905695|905696|905697|905698|905699|905700|905701|905702|905703|905704|905705|905706|905707|905708|905709|905710|905711|905712|905713|905714|905715|905716|905717|905718|905719|905720|905721|905722|905723|905724|905725|905726|905727|905728", + "text": "Charcot-Marie-Tooth disease" + }, + { + "baseId": "15371|15372|15373|15374|15375|15375|15376|15377|15378|15379|15382|15382|15382|15383|15384|15384|15385|15386|15387|15389|15391|15392|15393|15393|15394|15395|15396|15398|15399|15400|15402|15403|15405|15406|15407|15409|15410|15411|15412|15413|39949|48599|50108|50109|50109|50110|50111|50112|50113|50114|50116|50117|50118|50118|50119|50119|79188|79191|79193|79194|79195|79197|79199|79199|79200|79203|79204|79204|79206|79206|79207|79209|79211|79212|79213|79214|79215|79216|79217|79219|79221|79223|79228|79229|79231|79232|79232|79232|79235|79239|79242|79244|79245|79248|79249|79251|79254|79254|79256|91294|91296|138618|138619|138620|138621|138622|138625|138626|138627|138628|138630|150715|150720|150743|150747|150762|150795|150821|150826|150830|150844|150853|150890|150923|150951|151037|151052|151055|151055|151075|151083|151089|151107|151121|151162|151165|151168|151205|151207|151227|151227|151245|151300|151308|151315|151351|151354|151399|151425|151433|151461|151461|151533|151551|151558|151558|151569|151606|151609|151628|151696|151696|151711|151751|151786|151794|151798|151814|152333|152393|152421|152455|152456|152467|152469|152473|152475|152518|152518|152572|152672|152727|152728|184495|184496|184497|184498|184499|184500|184501|184502|184503|184504|184505|184506|184508|184509|184510|184511|184512|184512|184513|184514|184515|184516|184517|184518|184524|184525|184526|184527|184529|184530|184531|184532|184533|184534|184535|184536|184537|184538|184539|184540|184541|184543|184545|184546|184547|184548|184549|184550|184551|184552|184553|184554|184555|184557|184559|184560|184562|184563|184564|184565|184567|184568|184569|184570|184571|184572|184573|184574|184576|184577|184578|184579|184580|184581|184582|184583|184584|184586|184587|184589|184590|184591|184592|184593|184599|184600|184601|184602|184603|184603|184604|184605|184606|184607|184608|184609|184610|184611|184612|184613|184614|184616|184617|184619|184621|184622|184623|184624|184625|184626|184627|184630|184631|184632|184633|184634|184635|184636|184638|184641|184643|184644|184644|184647|184648|184650|184656|184657|184658|184659|184660|184662|184663|184663|184664|184665|184666|184668|184669|184670|184671|184672|184673|184674|184676|184677|184679|184680|184681|184682|184684|184685|184686|184687|184688|184690|184693|184694|184694|184695|184696|184697|184698|184699|184700|184701|184702|184703|184704|184705|184706|184707|184708|184710|184711|184712|184714|184716|184717|184718|184719|184720|184722|184723|184724|184725|184726|184727|184728|184729|184730|184732|184733|184734|184734|184734|184735|184736|184737|184738|184739|184740|184742|184744|184744|184745|184746|184747|184748|184750|184751|184752|184753|184755|184756|184757|184758|184759|184760|184761|184762|184764|184765|184767|184770|184771|184772|184773|184774|184775|184776|184776|184776|184777|184778|184779|184782|184784|184785|184786|184787|184788|184789|184790|184791|184792|184793|184794|184796|186245|186246|186247|186248|186250|186251|186252|186253|186254|205301|205414|205415|205416|205416|205417|205418|205418|213242|213243|213244|213245|213246|213247|213248|213249|213250|213251|213252|213253|213254|213255|213256|213257|213258|213259|213260|213261|213262|213263|213264|213265|213266|213267|213268|213269|213270|213272|213273|213275|213276|213277|213278|213278|213279|213280|213281|213282|213283|213284|213285|213287|213288|213289|213290|213292|213293|213294|213295|213296|213296|213297|213298|213299|213300|213301|213302|213675|213676|213677|213678|213679|213680|213681|213682|213683|213684|213685|213686|213687|213688|213689|213690|213691|213692|213693|213694|213695|213696|213697|213698|213699|213700|213701|213702|213703|213704|213705|213706|213707|213708|213709|213710|213711|213712|213713|213716|213717|213718|213719|213720|213721|213722|213723|213724|213725|213726|213727|213728|213729|213730|213731|213732|213733|213734|213735|213736|213737|213738|213739|213740|213741|213742|213743|213744|213745|213746|213747|213748|213749|213750|213751|213752|213753|213754|213755|213756|213757|213758|222545|222562|222563|222564|222565|222566|222567|222568|222569|222570|222571|222572|222573|222574|222575|222576|222577|222578|222580|222581|222582|222583|222584|222585|222586|222587|222588|222590|222591|222592|222593|222594|222596|222597|222598|222599|222600|222601|222602|222603|222604|222605|222606|222607|222607|222608|222609|222610|222611|222612|222613|222614|222615|222616|222617|222618|222619|222621|222622|222624|222625|222626|222627|222628|222629|222630|222630|222631|222632|222633|222633|222634|222635|222636|222638|222639|222640|222641|224875|226809|230758|230762|230764|230765|230766|230767|230768|230771|230771|230773|230774|231989|235496|235498|235500|235501|235502|235504|235505|235506|235507|235508|235510|235513|235514|235516|235517|235518|235520|235525|235527|235528|235530|235531|235533|235535|235537|235538|235542|235544|235545|235547|235548|235548|235549|235550|235555|235556|235560|235561|235562|235563|235564|235566|235567|235568|235569|235570|235571|235573|235574|235578|235579|235580|235583|235584|235585|235586|235587|235588|235589|235590|235591|235592|235593|235594|235596|235597|235598|235599|235601|235602|235604|235605|235606|235607|235610|235611|235612|235614|235615|235617|235619|235620|235621|235622|235623|235624|235626|235627|235628|235631|235633|235636|235638|235639|235640|235643|235645|235646|235648|235649|235651|235653|235654|235655|235658|235660|235663|235664|235665|235668|235669|235670|235672|235674|235675|235676|235677|235679|235681|235682|235683|235684|235686|235689|235689|235690|235691|235692|235693|235694|235695|235697|235698|235699|235701|235703|235705|235707|235708|235709|235710|235711|235712|235713|235714|235715|235717|235718|235720|235721|235724|235725|235726|235727|235729|235730|235732|235733|235736|235737|235740|235746|235747|235748|235749|235750|235752|235754|235755|235758|235758|235760|235761|235762|235766|235769|235770|235772|235773|235776|235778|235780|235781|235782|235784|235785|235786|235787|235788|235788|235789|235790|235793|235795|235796|235800|235802|235803|235804|235806|235809|235811|235812|235816|235819|235820|235823|235824|235827|235828|235830|235831|235832|235833|235835|235836|235837|235838|235839|235841|235842|235845|235846|235848|235849|235850|235852|235853|237165|242577|242578|242618|242618|242620|242621|242622|242623|242624|242625|242626|242627|242628|242629|242630|242631|242632|242633|242634|242635|242636|242637|242638|242639|242640|242641|242642|242643|242644|242645|242646|242647|242648|242649|242650|242651|242653|242655|242656|242657|242658|242659|242661|242662|242663|242664|242665|242666|242667|242668|242669|242670|242671|242672|242674|242675|242676|242677|242678|242679|242680|242681|242682|242683|242684|242685|242686|242687|242688|242689|242690|242691|242693|242694|242695|242696|242697|242698|242699|242700|242702|242703|242704|242705|242706|242707|242708|242709|242710|242711|242712|242713|242714|242715|242716|242717|242718|242719|248514|248528|256113|256125|256129|256141|256148|260163|264844|264844|265014|327954|327955|327957|327958|327961|327978|327979|327980|327981|327982|327983|327986|327988|337800|337802|337803|337806|337808|337811|337813|337815|337817|337819|337821|337823|344012|344013|344021|344023|344027|344029|344034|344038|344043|344046|344049|344051|344059|344060|344065|344066|344071|344072|344073|345438|345439|345440|345441|345442|345444|345445|345447|345452|345459|345464|345469|345471|354178|360233|360299|360327|360415|361008|361009|361010|361012|361014|375835|375836|375841|378108|378113|401475|401476|401479|401483|401502|401506|401511|401594|401595|401597|401599|401600|401601|401602|401603|401608|401609|401612|401614|401615|401619|401620|401627|401628|401629|401633|401634|401635|401638|401641|401642|401643|401644|401645|401646|401648|401650|401651|401653|401655|401657|401663|401665|401666|401668|401672|401674|401675|401678|401680|401685|401687|401688|401689|401691|401695|401696|401697|401698|401699|401700|401701|401704|401705|401706|401707|401710|401712|401712|401715|401720|401720|401722|401728|401729|401732|401735|401738|401740|401746|401747|401748|401752|401753|401754|401757|401758|401763|401766|401767|401771|401772|401774|401777|401779|401781|401783|401784|401789|401791|401793|401794|401795|401798|401802|401804|401805|401807|401809|401811|401812|401816|401817|401819|401820|401821|401823|401825|401826|401828|401829|401830|401832|401833|401835|401836|401837|401838|401839|401842|401843|401844|401845|401846|401847|401849|401858|401862|401863|401866|401869|401871|401881|401883|401885|401890|401893|401907|401910|401912|401915|401966|402080|402082|402084|402088|402090|402092|402098|402099|402108|402115|402117|402119|402126|402132|402137|402141|402147|402148|402162|402166|402173|402177|402178|402183|402184|402192|402194|402196|402209|402219|402228|402230|402231|402235|402236|402247|402255|402257|402274|402276|402279|402280|402283|402285|402290|402291|402294|402299|402302|402304|402308|402309|402310|402316|402320|402322|402326|402328|402331|402335|402340|402342|402343|402345|402346|402348|402349|402350|402352|402353|402356|402357|402360|402363|402365|402368|402369|402372|402373|402377|402379|402381|402382|402383|402384|402387|402388|402389|402390|402392|402414|402415|402419|402425|402435|402439|402443|402448|402450|402450|402452|402458|402460|402465|402468|402470|402474|402475|402477|402481|402482|402487|402490|402492|402502|402504|402508|402514|402516|402519|402522|402525|402528|402535|402536|402542|402546|402547|402548|409860|409861|409863|409865|409869|409871|409873|409875|409880|409881|409883|409886|409887|409888|415545|415547|415548|415549|415550|420759|420760|420768|420769|420770|420772|420773|420775|420776|420777|420778|420780|420781|420783|420784|420792|420794|420797|420798|420799|420801|420804|420809|420811|420812|420822|420824|420826|420828|420834|420835|420837|422155|422155|422157|422160|424506|425066|425067|425068|425069|425070|425071|425072|425073|425074|425075|425076|425077|425078|425079|425080|425081|425082|425083|425084|425085|425086|425088|425089|425090|425091|425092|425093|425094|425095|425096|425097|425098|425099|425100|425101|425102|425103|425104|425105|425106|425107|425108|425109|425110|425111|425112|425113|425114|425115|425116|425117|425118|425119|425120|425121|425122|425123|425124|425125|425126|425127|425128|425129|425130|425131|425132|425133|425134|425135|425136|425137|425138|425139|425140|425141|425142|425143|425144|425145|425146|425147|425148|425149|425150|425151|425152|425153|425154|425155|425156|425157|425158|425159|425160|425161|425162|425163|425164|425165|425166|425167|425168|425169|425170|425171|425172|425173|425174|425175|425176|425177|425178|425179|425180|425181|425182|425183|425184|425185|425186|425187|425188|425189|425190|425191|425192|425193|425194|425195|425196|425197|425198|425199|425200|425201|426210|426212|426213|426216|426748|430967|433234|433236|433241|433243|433248|433249|433255|433256|433262|433263|433265|445726|445731|445732|445735|445737|445738|445739|445742|445746|445749|445750|466208|466392|466393|466395|466402|466404|466407|466411|466413|466417|466420|466422|466426|466437|466438|466447|466451|466458|466460|466467|466473|466474|466477|466480|466486|466491|466494|466497|466501|466506|466511|466513|466526|466531|466532|466537|466541|466542|466545|466548|466548|466563|466571|466576|466585|466588|466593|466601|466602|466606|466612|466613|466614|466615|466618|466623|466629|466631|466633|466635|466638|466648|466649|466651|466654|466657|466658|466660|466664|466665|466667|466671|466672|466679|466685|466690|466692|466697|466706|466708|466713|466720|466725|466727|466729|466730|466986|467009|467016|467073|467083|467084|467089|467216|467217|467221|467223|467225|467227|467229|467231|467234|467236|467242|467245|467247|467250|467260|467262|467275|467276|467281|467282|467285|467287|467293|467300|467304|467305|467306|467308|467309|467319|467321|467330|467331|467334|467335|467338|467339|467350|467362|467366|467371|467376|467377|467382|467386|467387|467389|467390|467392|467394|467395|467397|467399|467400|467404|467405|467406|467409|467410|467412|467413|467414|467415|467417|467417|467420|467421|467422|467423|467427|467428|467429|467432|467435|467436|467438|467442|467443|467444|467447|467449|467451|467454|467456|467460|467462|467465|467472|467474|467480|467481|467482|467484|467485|467486|467490|467493|467496|467498|467500|467501|467502|467503|467504|467505|467507|467509|467510|467512|467513|467515|467517|467519|467521|467522|467523|467524|467525|467526|467527|467528|467529|467530|467531|467532|467534|467535|467536|467537|467538|467540|467543|467545|467546|467549|467550|467551|467554|467556|467557|467558|467559|467560|467561|467562|467563|467564|467566|467567|467569|467570|467571|467573|467574|467575|467576|467577|467578|467579|467580|467581|467584|467585|467587|467588|467589|467591|467594|467595|467597|467599|467601|467602|467603|467605|467608|467610|467615|467616|467622|467627|467628|467630|467631|467635|467637|467640|467646|467651|467652|467653|467657|467662|467665|467670|467677|467678|467680|467681|467683|467690|467692|467693|467694|467696|467698|467700|467702|467704|467705|467707|467708|467709|467711|467714|467715|467717|467718|467718|467721|467723|467726|467728|467729|467733|467737|467738|467739|467740|467742|467745|467748|467750|467751|467751|467754|467755|467757|467761|467763|467765|467769|467771|467772|467774|467775|467778|467779|467780|467783|467785|467786|467788|467789|467791|467793|467795|467807|467812|467822|467825|467828|467829|467831|467833|467843|467844|467847|467849|467851|467852|467863|467874|467876|467879|467881|467882|467885|467888|467894|467896|467903|467905|467907|467910|467913|467920|477901|477908|477918|477920|477926|477928|477950|477960|477975|477979|477981|477982|477986|477987|477989|477993|477995|477998|478003|478006|478010|478012|478014|478029|478030|478033|478042|478043|478046|478048|478058|478061|478063|478065|478070|478071|478072|478073|478076|478081|478087|478088|478090|478091|478096|478098|478101|478103|478106|478108|478117|478119|478120|478125|478127|478129|478131|478142|478144|478146|478147|478150|478154|478165|478174|478178|478181|478182|478184|478185|478200|478201|478203|478205|478206|478214|478216|478217|478219|478220|478223|478230|478232|478238|478240|478244|478253|478258|478267|478271|478276|478279|478284|478289|478291|478296|478305|478307|478314|478319|478327|478329|478330|478331|478332|478340|478346|478347|478348|478351|478355|478359|478363|478365|478368|478371|478379|478381|478383|478384|478388|478388|478395|478406|478422|478423|478426|478457|478462|478473|478505|478515|478517|478525|478537|478547|478552|478557|478560|478564|478572|478632|478647|478652|478655|478660|478674|478697|478727|478733|478747|478757|478807|478812|478826|478839|478881|478896|478901|478906|478907|478915|478918|478927|478932|478954|478955|478966|478970|478971|478977|478986|478999|479006|479015|479024|479048|479051|479054|479098|479105|479113|479121|480529|481323|481430|482122|482123|482124|482128|482128|482130|482131|482132|485764|485765|485766|485767|485768|485769|485770|485771|485772|485773|485774|485775|485776|485777|485778|485779|485780|485781|485782|495410|495413|495416|495666|495668|495672|495684|495833|495835|497266|497565|497566|505825|506238|506730|506748|506760|513135|513192|513200|514075|514078|514079|514080|514273|514712|514714|530475|530627|530661|530666|530668|530670|530671|530673|530682|530683|530687|530690|530700|530702|530707|530708|530710|530717|530718|530720|530722|530729|530731|530737|530739|530753|530755|530761|530771|530780|530782|530783|530786|530789|530802|530815|530817|530818|530820|530822|530823|530824|530826|530828|530832|530833|530834|530839|530842|530847|530850|530851|530852|530853|530855|530857|530858|530861|530861|530867|530871|530873|530874|530875|530879|530883|530884|530885|530888|530889|530892|530893|530897|530899|530901|530902|530903|530911|530914|530915|530916|530917|530918|530922|530923|530924|530926|530927|530929|530931|530932|530934|530936|530937|530938|530940|530941|530942|530943|530944|530945|530946|530947|530951|530952|530953|530954|530955|530957|530959|530960|530962|530966|530968|530971|530973|530981|530982|530985|530988|530989|530993|530994|530996|531001|531002|531004|531005|531007|531008|531011|531012|531013|531015|531016|531017|531018|531020|531021|531025|531026|531027|531028|531032|531033|531034|531035|531036|531038|531040|531042|531043|531044|531045|531053|531054|531058|531059|531060|531061|531062|531063|531065|531067|531072|531073|531080|531081|531083|531085|531092|531093|531095|531097|531098|531101|531102|531107|531110|531116|531118|531122|531123|531126|531129|531137|531141|531142|531145|531146|531149|531173|531183|531184|531186|531187|531188|531189|531194|531196|531198|531201|531203|531214|531218|531222|531223|531226|531232|531235|531236|531237|531239|531241|531247|531248|531252|531255|531256|531262|531267|531272|531279|531282|531286|531289|531290|531293|531302|531304|531305|531309|531311|531321|531323|531330|531336|531339|531343|531344|531348|531349|531356|531358|531359|531363|531365|531372|531374|531378|531382|531386|531390|531394|531396|531403|531404|531407|531410|531430|531434|531437|531441|536216|536486|536487|536932|536933|538099|538100|538101|538102|538103|538104|538105|538106|538107|538108|538109|538110|538111|538112|538113|538114|538115|538116|538116|538117|538118|538119|538120|538121|538122|538123|538124|538125|538126|538127|538128|538129|538130|538131|538132|538133|538134|538135|538136|538137|538138|538139|538140|538141|538142|538143|538144|538145|538146|538147|538148|538149|538150|538151|538152|538153|538154|538155|538156|538157|538158|538159|538160|538161|538162|538163|538164|538165|538166|538167|538168|538169|538170|538171|538172|538173|538174|538175|538176|538177|538178|538179|538180|538181|538182|538183|538184|538185|538186|538187|538188|538189|538190|538191|538192|538193|538194|538195|538196|538197|538198|538199|538200|538201|538202|538203|538204|538205|538206|538207|538208|538209|538210|538211|538212|538213|538214|538215|538216|538217|538218|538219|538220|538221|538222|538223|538224|538225|538226|538227|538228|538229|538230|538231|538232|538233|538234|538235|538236|538237|538238|538239|551931|552201|552877|552878|552885|552915|552923|552926|552927|552930|552939|552945|552956|552965|552971|552972|552978|568578|568579|568760|568763|568765|568767|568769|568770|568771|568776|568783|568786|568787|568790|568794|568797|568801|568805|568806|568808|568827|568830|568833|568844|568849|568853|568857|568862|568863|568871|568875|568879|568885|568888|568890|568894|568896|568901|568904|568909|568913|568919|568921|568923|568925|568927|568930|568935|568938|568940|568945|568948|568954|568957|568963|568965|568966|568970|568972|568977|568979|568984|568989|568991|568995|570663|570664|570668|570749|570757|570758|570772|570774|570775|570778|570833|570838|570845|570850|570853|570855|570858|570860|570867|570869|570876|570879|570880|570882|570884|570885|570888|570895|570898|570899|570901|570903|570906|570915|570916|570917|570918|570918|570921|570924|570925|570927|570928|570930|570931|570932|570933|570934|570938|570940|570942|570944|570946|570948|570951|570952|570953|570956|570957|570959|570960|570961|570962|570963|570965|570966|570967|570968|570970|570971|570973|570975|570978|570980|570981|570982|570986|570988|570990|570990|570992|570994|570996|570998|571000|571001|571002|571004|571005|571006|571007|571008|571011|571012|571013|571014|571015|571016|571019|571021|571024|571025|571027|571028|571029|571031|571033|571034|571036|571038|571041|571045|571046|571049|571051|571052|571057|571058|571059|571060|571061|571063|571065|571066|571069|571073|571075|571078|571084|571085|571086|571102|571112|571116|571117|571118|571119|571124|571126|571132|571133|571138|571141|571144|571145|571151|571152|571160|571165|571169|571170|571171|571175|571176|571179|571191|571192|571199|571216|571218|571219|571223|571226|571228|571229|571241|571247|571254|571255|574249|574253|574254|574342|574343|574344|574346|574348|574350|574352|574354|574356|574358|574360|574362|574364|574366|574368|574370|574372|574374|574376|574378|574378|574379|574381|574383|574384|574385|574386|574387|574388|574389|574390|574391|574392|574393|574394|574395|574396|574397|574398|574399|574400|574401|574402|574403|574403|574404|574405|574406|574407|574408|574409|574410|574411|574412|574413|574414|574415|574416|574417|574418|574419|574420|574421|574422|574423|574424|574425|574426|574427|574428|574429|574430|574431|574432|574433|574434|574435|574436|575603|575975|575976|575977|575978|575979|575980|575981|575982|575983|575984|576342|576343|577620|577625|578002|578027|590165|609010|610069|610070|610075|610081|611851|612164|615874|619899|620580|620581|621556|621557|623343|623344|623345|623346|623635|623637|624623|624625|626344|645433|645434|645435|645436|645437|645438|645439|645440|645441|645442|645443|645444|645445|645446|645447|645448|645449|645450|645451|645452|645453|645454|645455|645456|645457|645458|645459|645460|645461|645462|645463|645464|645465|645466|645467|645468|645469|645470|645471|645472|645473|645474|645475|645476|645477|645478|645479|645480|645481|645482|645483|645484|645485|645486|645487|645488|645489|645490|645491|645492|645493|645494|645495|645496|645497|645498|645499|645500|645501|645502|645503|645504|645505|645506|645507|645508|645509|645510|645511|645512|645513|645514|645515|645516|645517|645518|645519|645520|645521|645522|645523|645524|645525|645526|645527|645528|645529|645530|645531|645532|645533|645534|645535|645536|645537|645538|645539|645540|645541|645542|645543|645544|645545|645546|645547|645548|645549|645550|645551|645552|645553|645554|645555|645556|645557|645558|645559|645560|645561|645562|645563|645564|645565|645566|645567|645568|645569|645570|645571|645572|645573|645574|645575|645576|645577|645578|645579|645580|645581|645582|645583|645584|645585|645586|645587|645588|645589|645590|645591|645592|645593|645594|645595|645596|645597|645598|645599|645600|645601|645602|645603|645604|645605|645606|645607|645608|645609|645610|645611|645612|645613|645614|645615|645616|645617|645618|645619|645620|645621|645622|645623|645624|645625|645626|645627|645628|645629|645630|645631|645632|645633|645634|645635|645636|645637|645638|645639|645640|645641|645642|645643|645644|645645|645646|645647|645648|645649|645650|645651|645652|645653|645654|645655|645656|645657|645658|645659|645660|645661|645662|645663|645664|645665|645666|645667|645668|645669|645670|645671|645672|645673|645674|645675|645676|645677|645678|645679|645680|645681|645682|645683|645684|645685|645686|645687|645688|645689|645690|645691|645692|645693|645694|645695|645696|645697|645698|645699|645700|645701|645702|645703|645704|645705|645706|645707|645708|645709|645710|645711|645712|645713|645714|645715|645716|645717|645718|645719|645720|645721|645722|645723|645724|645725|645726|645727|645728|645729|645730|645731|645732|645733|645734|645735|645736|645737|645738|645739|645740|645741|645742|645743|645744|645745|645746|645747|645748|645749|645750|645751|645752|645753|645754|645755|645756|645757|645758|645759|645760|645761|645762|645763|645764|645765|645766|645767|645768|645769|645770|645771|645772|645773|645774|645775|645776|645777|645778|645779|645780|645781|645782|645783|645784|645785|645786|645787|645788|645789|652626|652627|652632|652633|652701|652705|652710|652716|652717|652719|652722|652726|652738|652745|652751|652754|652758|652762|652764|652767|652773|652776|652798|652903|652906|652908|652913|652918|652921|652923|652926|652928|652929|652931|652933|653088|653089|653091|653093|653098|653104|653213|653214|653217|653226|653233|653235|653237|653239|653242|653248|653249|653262|653264|653347|653352|653391|653397|653401|653403|653408|653416|653417|653423|653427|653430|654140|678053|678054|679797|682492|682494|682495|682496|682497|682498|682499|682678|682679|682680|682681|682682|688758|688760|688761|690171|694065|694068|694070|694071|694072|694073|694075|694076|694078|694079|695733|695735|695736|704073|704074|704075|715357|727096|727098|740675|740676|740679|740680|740681|744952|755742|755745|755747|755748|755750|755754|755755|755756|755757|755760|755762|755763|760399|760528|760535|760553|771342|771343|771346|771349|771357|771364|771365|771366|771369|771370|771373|771375|771376|771378|771379|771384|771386|771399|771400|771407|771408|771411|771420|771421|771428|776251|776253|776264|776279|776289|776303|776306|776472|776617|776634|776643|776646|778337|778467|785492|785495|785500|785501|785505|785509|785512|785513|785514|785515|785517|785524|785526|785527|785533|787945|788133|788136|788222|788228|788908|789249|791688|791689|791690|791691|791692|791693|791694|791695|791696|791697|791698|791699|791700|791701|791702|791703|791704|791705|791706|791707|791708|791709|791710|791711|791712|791713|791714|791715|791716|791717|791718|791719|791720|791721|791722|791723|791724|791725|791726|791727|791728|791729|791730|791731|791732|791733|792537|792584|794063|794261|797515|800020|800027|804924|804925|804926|804927|804928|804929|804930|804931|804932|804933|804934|804935|804936|804937|804938|804939|804940|804941|804942|804943|804944|804945|804946|804947|804948|804949|804950|804951|804952|804953|804954|804955|804956|804957|804958|804959|804960|804961|804962|804963|804964|804965|804966|804967|804968|804969|804970|804971|804972|804973|804974|804975|804976|804977|804978|804979|804980|806386|806387|806388|806389|806390|806391|806392|806392|806393|806394|806395|806396|806397|806398|806399|806399|806400|806401|806402|806402|806403|806404|806405|806405|813083|813094|813109|813118|813126|813128|813133|813143|813149|813171|813175|813182|813183|813186|813212|813225|813228|813258|813274|813280|813282|813293|813334|813361|813367|813368|813373|813374|813380|813381|813386|813396|813400|813420|813423|813426|813429|813468|813474|813482|813488|813489|813496|813530|815671|815962|818701|818703|820994|820995|820996|820997|820998|820999|821000|821001|821002|821003|821004|821005|821006|821007|821008|821009|821010|821011|821012|821013|821014|821015|821016|821017|821018|821019|821020|821021|821022|821023|821024|821025|821026|821027|821029|821030|821031|821032|821033|821034|844841|844842|844843|844844|844845|844846|844847|844848|844849|844850|844851|844852|844853|844854|844855|844856|844857|844858|844859|844860|844861|844862|844863|844864|844865|844866|844867|844868|844869|844870|844871|844872|844873|844874|844875|844876|844877|844878|844879|844880|844881|844882|844883|844884|844885|844886|844887|844888|844889|844890|844891|844892|844893|844894|844895|844896|844897|844898|844899|844900|844901|844902|844903|844904|844905|844906|844907|844908|844909|844910|844911|844912|844913|844914|844915|844916|844917|844918|844919|844920|844921|844922|844923|844924|844925|844926|844927|844928|844929|844930|844931|844932|844933|844934|844935|844936|844937|844938|844939|844940|844941|844942|844943|844944|844945|844946|844947|844948|844949|844950|844951|844952|844953|844954|844955|844956|844957|844958|844959|844960|844961|844962|844963|844964|844965|844966|844967|844968|844969|844970|844971|844972|844973|844974|844975|844976|844977|844978|844979|844980|844981|844982|844983|844984|844985|844986|844987|844988|844989|844990|844991|844992|844993|844994|844995|844996|844997|844998|844999|845000|845001|845002|845003|845004|845005|845006|845007|845008|845009|845010|845011|845012|845013|845014|845015|845016|845017|845018|845019|845020|845021|845022|845023|845024|845025|845026|845027|845028|845029|845030|845031|845032|845033|845034|845035|845036|845037|845038|845039|845040|845041|845042|845043|845044|845045|845046|845047|845048|845049|845050|845051|845052|845053|845054|845055|845056|845057|845058|845059|845060|845061|845062|845063|845064|845065|845066|845067|845068|845069|845070|845071|845072|845073|845074|845075|845076|845077|845078|845079|845080|845081|845082|845083|845084|845085|845086|845087|845088|845089|845090|845091|845092|845093|845094|845095|845096|845097|845098|845099|845100|845101|845102|845103|845104|845105|845106|845107|845108|845109|845110|845111|845112|845113|845114|845115|845116|845117|845118|845119|845120|845121|845122|845123|845124|845125|845126|845127|845128|845129|845130|845131|845132|845133|845134|845135|845136|845137|845138|845139|845140|845141|845142|845143|845144|845145|845146|845147|845148|845149|845150|845151|845152|845153|845154|845155|845156|845157|845158|845159|845160|845161|845162|845163|845164|845165|845166|845167|845168|845169|845170|845171|845172|845173|845174|845175|845176|845177|845178|845179|845180|845181|845182|845183|845184|845185|845186|845187|845188|845189|845190|845191|845192|845193|845194|845195|845196|845197|845198|845199|845200|845201|845202|845203|845204|845205|851699|851701|851703|851705|851707|851709|851711|852153|852163|852165|852167|852169|852171|852173|852175|852177|852179|852181|852183|852185|852187|852189|852190|852193|852690|852696|852699|852700|852703|852707|852710|852711|852713|852714|852716|852720|852722|852723|852724|852726|852730|852732|852733|852734|852857|852858|852859|852861|852865|852867|852868|852869|852871|858415|858416|858429|858433|860371|861164|861165|861166|861167|877176|877177|877178|877179|877180|877181|877182|877183|877184|877185|877186|877187|877188|877189|877190|877191|877192|877193|877194|877195|877196|877197|877198|877199|877200|877201|877202|877203|877204|877205|877206|877207|877208|880495|880496|880497|880498|880499|903617|917231|917232|919718|919719|919720|919721|919722|919723|919724|920369|920370|928093|928094|928095|928096|928097|928098|928099|928100|928101|928102|928103|928104|928105|928106|928107|928108|928109|928110|928111|928112|928113|928114|928115|928116|928117|928118|928119|928120|928121|928122|928123|928124|928125|928126|928127|928128|928129|928130|928131|928132|928133|928134|928135|928136|928137|928138|928139|928140|928141|928142|928143|928144|928145|928146|928147|928148|928149|928150|928151|928152|928153|928154|928155|928156|928157|928158|928159|928160|928161|928162|928163|928164|928165|928166|928167|928168|928169|928170|928171|928172|928173|928174|928175|928176|928177|928178|928179|928180|928181|928182|928183|928184|928185|928186|928187|928188|928189|928190|928191|928192|928193|928194|928195|928196|928197|928198|928199|928200|928201|928202|928203|928204|928205|928206|928207|928208|928209|928210|928211|928212|928213|928214|928215|928216|928217|928218|928219|928220|937760|937761|937762|937763|937764|937765|937766|937767|937768|937769|937770|937771|937772|937773|937774|937775|937776|937777|937778|937779|937780|937781|937782|937783|937784|937785|937786|937787|937788|937789|937790|937791|937792|937793|937794|937795|937796|937797|937798|937799|937800|937801|937802|937803|937804|937805|937806|937807|937808|937809|937810|937811|937812|937813|937814|937815|937816|937817|937818|937819|937820|937821|937822|937823|937824|937825|937826|937827|937828|937829|937830|937831|937832|937833|937834|937835|937836|937837|937838|937839|937840|937841|937842|937843|937844|937845|937846|937847|937848|937849|937850|937851|937852|937853|937854|937855|937856|937857|937858|937859|937860|937861|937862|937863|937864|937865|937866|937867|937868|937869|937870|937871|937872|937873|937874|937875|937876|937877|937878|937879|937880|937881|937882|937883|937884|940389|940390|940391|940392|940393|940394|940395|940396|940397|940398|940399|940400|940401|940402|940403|940404|940405|940406|940407|941157|941162|941163|941164|941165|941166|941167|941168|941169|941170|941171|941172|941173|941174|941175|941176|941177|941178|949751|949752|949753|949754|949755|949756|949757|949758|949759|949760|949761|949762|949763|949764|949765|949766|949767|949768|949769|949770|949771|949772|949773|949774|949775|949776|949777|949778|949779|949780|949781|949782|949783|949784|949785|949786|949787|949788|949789|949790|949791|949792|949793|949794|949795|949796|949797|949798|949799|949800|949801|949802|949803|949804|949805|949806|949807|949808|949809|949810|949811|949812|949813|949814|949815|949816|949817|949818|949819|949820|949821|949822|949823|949824|949825|949826|949827|949828|949829|949830|949831|949832|949833|949834|949835|949836|949837|949838|949839|949840|949841|949842|949843|949844|949845|949846|949847|949848|949849|949850|949851|949852|949853|949854|949855|949856|949857|949858|949859|949860|949861|949862|949863|949864|949865|949866|949867|949868|949869|949870|949871|949872|958021|958022|958023|958024|958025|958026|958027|958028|958029|958030|958031|958032|958033|958034|958035|958036|958037|958038|958039|958040|958041|958042|958043|958044|958045|958046|958047|958048|958049|958050|958051|958052|958053|958054|958055|958056|958057|958058|958059|958060|958061|958062|958063|958064|958065|958066|958067|958068|958069|958070|958071|958072|958073|958074|958075|958076|958077|958078|958079|958080|958081|958082|958083|960195|960196|960197|960199|960200|960201|960202|960203|960204|960205|960206|960207|960208|960209|960210|960211|960212|960875|960876|960877|960878|960879|960880|960881|960882|964471|964472|964473|964474|964475|964689|966166|969613|972491|974885|975833|975951|980380|980552|983929|984084|984085|984086|984087|984088|984089|984090|984091|984092|984093|984094|984095|984096|984097|984098|984099|984100|984101|984102|984103|984104|984105|984106|984107|984108|984109|984110|984111|984112|984113|984114|984115|984116|984117|984118|984119|984120|984121|984122|984123|984124|984125|984126|984127|984128|984129|984130|984131|984132|984133|984134|984135|984136|984137|984138|984139|984140|984141|984142|984143|984144|984145|984146|984147|984148|984149|984150|984151|984152|984153|984154|984155|984156|984157|984158|984159|984160|984161|984162|984163|984164|984165|984166|984167|984168|984169|984170|984171|984172|984173|984174|984175|984176|984177|984178|984179|984180|984181|984182|984183|984184|984185|984186|984187|984188|984189|984190|984191|984192|984193|984194|984195|984196|984197|984198|984199|984200|984201|984202|984203|984204|984205|984206|984207|984208|984209|984210|984211|984212|984213|984214|984215|984216|984217|984218|984219|984220|984221|984222|984223|984224|984225|984226|984227|984228|984229|984230|984231|984232|984233|984234|984235|984236|984237|984238|984239|984240|984241|984242|984243|984244|984245|984246|984247|984248", + "text": "Neurofibromatosis, type 1" + }, + { + "baseId": "15375|48599|53763|184559|235823|361009|361010|467795|514075|514077|514081|623635|623636|623637|623638|624836|625836|801168", + "text": "Neurofibromas" + }, + { + "baseId": "15375|186247|361009|433256|581787", + "text": "Optic nerve glioma" + }, + { + "baseId": "15375|48599|178504|222607|263242|361009|361009|361010|361011|361014|426213|514073|514074|514075|514077|514079|514081|514179|514180|551417|551418", + "text": "Neurofibromatosis type 6" + }, + { + "baseId": "15375|48599|186247|361010|361013|514077|514081", + "text": "Axillary freckling" + }, + { + "baseId": "15375|15380|15381|15382|15402|50109|50111|50112|50114|50117|50118|50119|79232|79232|79254|138619|138620|150747|150951|151055|151165|151425|151461|151558|151609|151696|151696|151711|152518|152518|184501|184505|184506|184518|184524|184526|184536|184545|184563|184571|184580|184584|184600|184603|184621|184627|184643|184644|184644|184647|184663|184669|184673|184674|184676|184681|184685|184694|184699|184701|184710|184711|184719|184724|184734|184739|184744|184745|184748|184771|184776|184794|184796|205416|205418|213246|213278|213289|213296|222633|222641|230764|235548|235578|235633|235689|235726|235758|242618|242644|256113|264844|327954|327955|327957|327958|327961|327978|327979|327980|327981|327982|327983|327986|327988|337800|337802|337803|337806|337808|337811|337813|337815|337817|337819|337821|337823|344012|344013|344021|344023|344027|344029|344034|344038|344043|344046|344049|344051|344059|344060|344065|344066|344071|344072|344073|345438|345439|345440|345441|345442|345444|345445|345447|345452|345459|345464|345469|345471|375841|401720|402482|402525|402547|420826|466548|467417|467718|467751|478119|478185|478388|482128|530861|570918|570990|574403|800027|877176|877177|877178|877179|877180|877181|877182|877183|877184|877185|877186|877187|877188|877189|877190|877191|877192|877193|877194|877195|877196|877197|877198|877199|877200|877201|877202|877203|877204|877205|877206|877207|877208|880495|880496|880497|880498|880499", + "text": "Caf\u00e9-au-lait macules with pulmonary stenosis" + }, + { + "baseId": "15375|15382|15388|15397|15398|15407|15408|50109|50111|50112|50114|50117|50118|50119|79232|79254|138619|138620|150747|150951|151055|151165|151425|151461|151558|151609|151696|151696|151711|152518|152518|184501|184505|184506|184518|184524|184526|184536|184545|184563|184571|184580|184584|184600|184603|184621|184627|184643|184644|184644|184647|184663|184669|184673|184674|184676|184681|184685|184694|184699|184701|184710|184711|184719|184724|184734|184739|184744|184745|184748|184771|184776|184794|184796|205416|205418|213246|213278|213289|213296|222633|222641|230764|235548|235578|235633|235689|235726|235758|242618|242644|256113|264844|327954|327955|327957|327958|327961|327978|327979|327980|327981|327982|327983|327986|327988|337800|337802|337803|337806|337808|337811|337813|337815|337817|337819|337821|337823|344012|344013|344021|344023|344027|344029|344034|344038|344043|344046|344049|344051|344059|344060|344065|344066|344071|344072|344073|345438|345439|345440|345441|345442|345444|345445|345447|345452|345459|345464|345469|345471|375841|401720|402482|402525|402547|420826|466548|467417|467718|467751|478119|478185|478388|482128|530861|570918|570990|574403|800027|877176|877177|877178|877179|877180|877181|877182|877183|877184|877185|877186|877187|877188|877189|877190|877191|877192|877193|877194|877195|877196|877197|877198|877199|877200|877201|877202|877203|877204|877205|877206|877207|877208|880495|880496|880497|880498|880499", + "text": "Neurofibromatosis, familial spinal" + }, + { + "baseId": "15375|15382|15389|15390|15391|20091|20092|20093|27619|27621|27622|27623|28363|28364|28365|28366|28367|28368|28368|28369|28370|28371|28372|28373|28375|28376|28377|28378|28379|28940|38779|48247|48599|48957|48959|48972|48982|48983|48983|48998|49010|49026|49028|49028|49029|49029|49032|49040|50109|50118|53766|79232|79254|125841|151055|151461|151558|151696|152518|172332|175345|175398|175540|175854|184644|184663|184694|184701|184734|184744|184776|205418|213278|213296|222633|230257|235548|235689|235758|242618|264844|401720|420826|466548|467417|467718|467751|478388|482128|530861|538420|539096|570918|570990|574403|645561|801168|801197", + "text": "Juvenile myelomonocytic leukemia" + }, + { + "baseId": "15375|15382|15402|15403|15404|39949|49242|50109|50111|50112|50114|50117|50118|50119|79232|79254|138619|138620|150747|150951|151055|151165|151425|151461|151558|151609|151696|151696|151711|152518|152518|184501|184505|184506|184518|184524|184526|184536|184545|184563|184571|184580|184584|184600|184603|184621|184627|184643|184644|184644|184647|184663|184669|184673|184674|184676|184681|184685|184694|184699|184701|184710|184711|184719|184724|184734|184739|184744|184745|184748|184771|184776|184794|184796|205416|205418|213246|213278|213289|213296|222633|222641|230764|235548|235578|235633|235689|235726|235758|242034|242618|242644|256113|264670|264844|327954|327955|327957|327958|327961|327978|327979|327980|327981|327982|327983|327986|327988|337800|337802|337803|337806|337808|337811|337813|337815|337817|337819|337821|337823|344012|344013|344021|344023|344027|344029|344034|344038|344043|344046|344049|344051|344059|344060|344065|344066|344071|344072|344073|345438|345439|345440|345441|345442|345444|345445|345447|345452|345459|345464|345469|345471|375841|401720|402482|402525|402547|420826|466548|467417|467718|467751|478119|478185|478388|482128|530861|538217|570918|570990|574403|800027|877176|877177|877178|877179|877180|877181|877182|877183|877184|877185|877186|877187|877188|877189|877190|877191|877192|877193|877194|877195|877196|877197|877198|877199|877200|877201|877202|877203|877204|877205|877206|877207|877208|880495|880496|880497|880498|880499", + "text": "Neurofibromatosis-Noonan syndrome" + }, + { + "baseId": "15382|15384|15393|79199|79204|79206|151227|184512|184776|222607|222630|230771|235788|401712|402450|422155|433236|514076|538116|574378|806386|806387|806388|806389|806390|806391|806392|806393|806394|806395|806396|806397|806398|806399|806400|806401|806402|806403|806404|806405", + "text": "Tibial pseudoarthrosis" + }, + { + "baseId": "15393|22858|24276|27395|27405|27408|27409|27641|27642|28849|46200|46415|46641|46678|66068|66161|66352|70402|96029|99230|133266|133278|150772|151677|152315|176641|184694|186247|222630|230767|235062|241976|242675|245069|362765|363028|363029|363030|363479|406737|421138|485675|538217|568925|966354|966884|966885|966886|966887", + "text": "Rhabdomyosarcoma (disease)" + }, + { + "baseId": "15414|15420|15425|15426|15427|15428", + "text": "Galactosialidosis, late infantile" + }, + { + "baseId": "15415", + "text": "Galactosialidosis, adult" + }, + { + "baseId": "15415|15416|15417|15418|15419|15420|15422|106589|192221|227690|260848|335561|335568|335569|335570|335572|335575|335576|335580|345317|345324|345326|345331|345340|345347|345353|350015|350018|350021|350022|351036|351040|351042|351043|351045|351048|351049|351052|351053|351056|351057|351060|469372|470407|534117|571253|573555|613167|620659|621643|648720|705507|786383|789390|848430|848431|848432|851851|886160|886161|886162|886163|886164|886165|886166|887461|887462|887463|905963|919915|929201|929202|938987|951109|958851|960318|960941|963081|963082|969192", + "text": "Combined deficiency of sialidase AND beta galactosidase" + }, + { + "baseId": "15422|15423|15424", + "text": "Galactosialidosis, early infantile" + }, + { + "baseId": "15429|15430|15431|15432|15433|18928|18972|176964|177227|177752|181419|251827|251828|296457|296458|296464|296465|296473|296474|296476|296480|296485|296489|296493|296496|296497|298321|298322|298330|298353|298356|298357|298358|298365|298380|298381|298382|298396|298397|298398|298400|302465|302469|302472|302473|302474|302476|302488|302489|302493|302499|302723|302726|302729|302730|302733|302737|302740|302741|302742|302755|302758|302759|302762|302763|302768|302769|302770|362043|362044|520161|547815|612272|633655|734962|830547|893610|893611|893612|893613|893614|893615|893616|893617|893618|893619|893620|893621|893622|893623|893624|893625|893626|893627|893628|893629|893630|893631|893632|893633|893634|893635|893636|893637|893638|893639|893640|964248", + "text": "Tay-Sachs disease, variant AB" + }, + { + "baseId": "15434|39947|39948|57080|57082|57083|57084|57085|57086|57087|57088|57089|57090|57091|57092|57093|57094|57096|57097|57098|57100|57101|57102|57104|57105|57106|57107|57108|57109|57110|57111|57112|57113|57115|176549|176550|176552|176554|176555|176556|176560|176561|176564|176565|176567|176568|176569|176572|176573|176574|176576|176577|176580|176581|176584|176686|176687|176688|176689|176690|176691|176692|176696|176697|176699|176700|176701|176703|176706|176707|176708|176710|176711|176712|176713|176714|176715|176717|176718|176719|176720|176721|176722|188895|191602|193215|195439|230914|230915|230916|230917|230918|230920|230925|230927|230930|230931|230934|230936|230937|230938|230939|230943|230945|230947|230948|230949|230950|230951|230952|230953|230956|230959|230960|230962|230965|230966|230967|230971|237624|256664|256665|256666|256667|265968|266985|270991|271000|271621|273174|274131|275377|331379|331381|331382|331384|331387|331395|331396|331400|331402|331405|331414|341668|341671|341673|341677|341682|341683|341684|341685|341688|341691|341693|341696|341698|341700|341702|341707|341709|341711|341713|341727|347048|347050|347055|347060|347067|347069|347072|347073|347079|347083|347086|347088|347089|347090|348362|348366|348367|348374|348375|348382|348384|348385|348388|348390|348391|348398|348399|348403|348408|348409|389251|404837|404838|410371|445979|492016|497299|497504|497577|497578|497579|497582|497583|497585|497599|497712|497713|497714|497717|497728|513373|514275|538477|548667|548682|549036|586920|620620|620621|620898|654850|654854|654856|654857|654858|654859|654860|654861|656494|669527|677287|727736|727737|741383|741384|741385|741387|756465|756466|756467|756469|756472|760635|772156|772159|772161|772167|772169|772172|772175|772178|772182|772185|772190|776508|776511|785917|785927|785928|785929|785931|788276|793714|800089|800090|802079|806020|857692|861597|879172|879173|879174|879175|879176|879177|879178|879179|879180|879181|879182|879183|879184|879185|879186|879187|879188|879189|879190|879191|879192|879193|879194|879195|879196|879197|879198|879199|879200|879201|879202|879203|879204|879205|879206|879207|879208|879209|879210|879211|879212|879213|879214|879215|879216|879217|879218|879219|880654|880655|880656|880657|880658|880659|970363|970364|970365|970366|970367|970368|979945|979946|979947|979948|979949|979950|979951|979952|979953|979954|979955|979956|979957", + "text": "Deafness, autosomal recessive 77" + }, + { + "baseId": "15435", + "text": "MORM syndrome" + }, + { + "baseId": "15436|15437|15438|15439|16376|70955|106470|131761|131829|133773|134710|134711|134712|134713|134714|134716|134717|134718|134719|134720|134721|134722|134723|134724|135260|152874|177143|178098|190671|191108|191984|192938|195418|196356|198620|198621|198627|207657|207658|214199|214305|214336|214337|221117|250480|253466|253470|253480|253481|265648|307613|307614|307615|307621|307622|307644|307645|307651|307654|307656|307657|311884|311885|311894|311902|317469|317472|317479|317481|317482|317484|317941|317942|317952|317954|317960|317961|317965|317968|317986|317987|317992|362132|362148|368864|394140|397048|622892|626308|641418|685155|685156|687440|692638|751560|788833|790558|790559|790560|790589|790590|790591|790823|790824|791280|791281|791282|791283|791284|791285|791286|835867|856632|901531|901532|901533|901534|901535|901536|901537|901538|901539|901540|901541|901542|901543|901544|901545|901546|901547|903354|919206|919207|920271|974516", + "text": "Joubert syndrome 1" + }, + { + "baseId": "15439|20341|176924|263175|263178|263211|263399|263412|538431", + "text": "16 conditions" + }, + { + "baseId": "15440|810787|970938", + "text": "Paragangliomas 2" + }, + { + "baseId": "15440|21932|21935|21936|21939|21940|21945|21946|21956|22283|27817|27817|27818|27820|27822|27830|27831|33493|34203|38741|38743|38851|45429|50211|50212|50215|50275|50276|53808|53809|53813|132476|132477|132478|132479|132480|135720|135721|135722|135723|135724|135725|135726|135727|135728|135729|135730|138931|138932|138933|139913|143270|150487|150956|151185|151538|151589|151761|151770|151825|152351|152477|152478|165953|172353|172492|172493|173538|175057|175063|181595|181600|181603|181608|181610|181611|181613|181616|181616|181619|181623|181624|181625|181626|181627|181628|182199|182200|182201|182202|182203|183478|183482|184109|194371|196490|197512|215422|221085|221617|224306|226816|226817|226818|226821|226822|226823|226824|226825|226826|232167|232175|232176|232177|232179|232187|233464|234442|234443|234445|235082|235084|235087|238163|238164|238183|238187|238190|238358|239022|239023|239024|239025|239026|239027|239028|239805|239806|239820|239843|239848|241044|241160|241161|241162|241163|241855|241856|241857|241858|241859|247306|247307|247309|247311|251937|251940|251943|259746|264583|270760|276981|276982|276984|276989|276991|276993|276998|276999|277005|277013|277243|277246|277247|277251|277255|277259|277264|277268|277274|277279|277358|277365|277555|277557|277916|277948|277984|277995|277998|278010|278056|278059|278061|278067|278086|278089|278406|278421|278427|278435|287600|287607|287611|288381|291322|297296|297298|303497|303503|303504|303688|303695|303696|303703|312394|312395|312400|314382|314393|314394|318274|318276|318286|321006|321030|324403|324407|324410|325142|327101|327104|327110|327115|327118|328197|328204|330108|353066|358787|358794|369831|372258|384402|390005|390592|390894|390899|390919|390920|393117|393122|393123|393127|393137|393141|393143|393269|393270|393280|393283|393284|393295|393493|393494|393496|394926|395037|395291|395462|398027|398230|398238|398249|398257|398327|398332|398685|398690|398692|398696|398768|398782|398789|398797|398801|399591|399697|399708|399715|399847|399855|399856|399858|399863|400239|400241|400245|400249|400437|400440|400445|406048|420734|420746|420755|425903|432022|432023|432024|432025|432026|432027|432028|432029|432030|432031|432032|432033|432034|432035|432036|432038|432039|432040|432041|432042|432043|432045|432046|432047|432048|432049|432050|432051|432052|432053|432054|432055|432056|443319|447529|448558|451506|451510|451512|451755|451764|451766|451771|451775|451776|451782|451789|451838|451841|451843|451846|451849|451857|451863|451873|451949|451960|451963|451965|451973|451974|451976|455786|460881|461212|461216|461227|461228|461395|461396|461399|461718|461721|461725|461733|461734|461736|461738|461739|462041|462044|462045|463418|463423|463425|463427|463717|463989|463998|464318|464325|464435|464439|464440|464442|472339|473261|473271|473273|473274|473282|473286|473301|473302|473307|473314|473317|473325|473425|473427|473438|474336|475971|475974|476257|476271|476449|476450|476453|476460|477031|477128|477290|477643|496595|496596|518679|518686|518687|518690|518694|518769|518772|518780|518859|518861|518864|518865|518866|518867|518869|518874|518876|521369|526266|526268|526277|526278|526281|526499|526501|526502|526778|526779|526780|526785|528313|528316|528319|528688|528690|528695|528767|528772|558694|558696|559166|559205|559207|559209|559211|561010|561020|561021|561023|562119|562120|562122|562129|562130|563149|564761|564764|564766|565867|565870|566572|566582|566585|567366|572877|572882|630630|630631|630632|630633|630634|630635|630636|630637|630638|630639|630640|630641|630642|630643|630644|630645|630646|630647|630648|630649|630650|630651|630652|630653|630654|630655|640178|640179|640180|640182|640183|640184|640185|640186|640187|640188|640189|640190|640191|640192|640193|642628|642629|642630|642631|642632|642633|642634|650856|651018|651019|652100|652128|652214|652416|652548|655488|683521|683522|684504|687796|687797|689721|691235|693063|697704|701828|702953|721426|733629|747818|747820|760071|763465|763467|776010|781485|787159|787994|790301|796604|807439|807441|807445|807447|807449|807451|807454|807456|807458|807465|808623|810780|810781|810786|810787|810790|810793|811904|811908|819284|819285|819286|820390|820632|820633|827127|827128|827129|827130|827131|827132|827133|827134|827135|827136|827137|827138|827139|827140|827141|827142|827143|827144|827145|827146|827147|827148|830799|838583|838584|838585|838586|838587|838588|838589|838590|838591|838592|838593|838594|838595|841653|841654|841655|841656|841657|841658|841659|841660|841661|841662|851569|862616|862617|862618|862619|862620|862621|862622|862623|862624|862625|862626|862627|862628|862629|862630|865021|865032|867044|867045|867046|867047|867048|867049|868168|868169|868170|868171|868172|868604|868664|872094|894085|894086|894087|894088|894089|896089|917074|922951|922952|922953|922954|922955|926282|926283|926284|926285|926286|926287|927144|927145|927146|931619|931620|931621|931622|931623|931624|931625|931626|935607|935608|935609|935610|935611|935612|935613|936684|941001|941064|943155|943156|943157|943158|943159|943160|943161|943162|943163|943164|943165|943166|943167|943168|947510|947511|947513|947514|947515|947516|948627|948628|948629|948630|948631|953252|953253|953254|953255|953256|956537|956538|980139", + "text": "Hereditary Paraganglioma-Pheochromocytoma Syndromes" + }, + { + "baseId": "15441|15442|15443|15444|15445|255857|326219|326227|326228|326229|326233|326235|335944|335952|335955|335966|335970|335974|342280|342284|342286|342288|342289|342292|342293|342294|343867|343870|343871|343872|343883|343888|343890|343891|426179|466669|547782|547791|547796|547820|547829|547830|547832|547833|547838|547839|548070|548077|548085|548086|548525|548527|548528|548535|548537|581773|644950|644951|715046|715047|726771|726772|726773|731092|755369|771050|771051|785372|785374|787936|820870|844242|875897|875898|875899|875900|875901|875902|875903|875904|875905|875906|875907|875908|875909|875910|875911|875912|875913|875914|876718|937579|957855|957856|960853|966149", + "text": "Tyrosinemia type II" + }, + { + "baseId": "15446|15447|207039|626134|961762|961763|961764", + "text": "Urocanate hydratase deficiency" + }, + { + "baseId": "15448|34155|40570|40571|800831|800841|800842|970791|970792", + "text": "Huntington disease" + }, + { + "baseId": "15449|141372|141373|141374|177401|193726|193727|194522|211571|211572|254360|315365|322214|322215|328321|868889|868890|868891|868892", + "text": "Optic atrophy 7" + }, + { + "baseId": "15450|15680|22564|24628|24661|24693|24694|24695|24696|24697|24699|24700|24701|24705|24707|27796|27797|27799|27800|27801|27802|27803|27804|27805|27807|27808|27809|31914|38852|65567|130979|133699|136140|140698|140701|140702|140703|140704|140705|140706|140707|140708|140709|140710|140711|140712|140713|140724|140725|140996|140997|140998|140999|141000|141576|141579|141582|141583|142780|142781|142782|142783|142784|142785|142786|142787|142788|142789|142790|142791|143089|166197|188296|188297|192465|210756|210759|210760|210761|210765|211358|211368|211777|211818|211821|211868|211962|211976|214391|224694|273255|284180|284182|284184|284185|284196|284198|284204|284205|284209|284210|284218|284219|284235|284237|284243|284245|284246|284248|284254|284936|284943|284945|284953|284960|284961|284963|284968|284972|284973|284974|284975|284976|284977|284979|286854|286873|286874|286880|286882|286886|286888|286892|286894|286899|286901|286902|286903|286904|286906|286912|286913|286917|286928|286941|286943|286961|286964|286969|287284|287285|287286|287289|287290|287291|287293|287309|287310|287315|287318|287328|287331|287338|287339|287340|287343|287345|311923|311937|317580|317603|317617|317632|317640|317643|327260|327264|327266|327269|327280|327281|327284|327291|327302|327303|327308|327310|329333|329334|329336|337088|337095|337104|337105|337109|337111|337115|337118|337121|337123|337129|338573|338576|338577|338584|339604|339606|343314|343316|343318|343320|343321|343324|343327|343328|343329|343332|343334|343338|343341|343352|343354|343357|343360|343363|343364|343366|344879|344880|344881|344883|344885|344888|344890|344891|344894|344901|344908|344909|344910|344912|344913|344914|344916|344918|344921|344924|344928|344941|345348|345356|345358|346741|346742|348160|348162|348165|348167|348169|348592|348594|349671|351824|351825|351827|351828|351830|351831|351832|352678|352679|352680|352681|353373|361580|363720|363881|364235|365162|366093|377583|378069|434458|434657|434658|434658|434758|438041|439243|443142|445696|445696|481178|505921|506644|513340|538463|552063|620050|626225|656402|689294|707969|740562|740571|786642|790159|790160|798710|822313|861128|876766|876767|876768|876770|876771|876772|876773|876774|876775|876776|876777|876778|876779|876780|876781|876782|876783|876784|876785|876786|876787|876788|876789|876790|876791|876792|876793|876794|876795|876796|876797|876798|876799|876800|876801|876802|876803|878105|878106|878107|878108|878109|878110|880311|880312|880313|880463|880464|883477|883478|883479|883480|883481|883482|883483|883484|883485|883486|883487|883488|883489|883490|883491|883492|883493|883494|883495|883496|883497|883498|883499|883500|883501|883502|883503|883504|883505|883506|883507|883508|883509|883510|883511|883512|883513|883514|883515|883516|883517|883518|883519|883520|883521|883522|883523|883524|883525|883526|883527|883528|883529|883530|883531|883532|883533|883534|883535|883536|887245|891500|891501|891502|919759", + "text": "Mitochondrial complex IV deficiency" + }, + { + "baseId": "15450|187971", + "text": "Mitochondrial complex 4 deficiency, nuclear type 8" + }, + { + "baseId": "15451|15452|15453|15454|15455|15456|299596|299597|299610|299611|299616|299617|299622|302139|302140|302141|302143|302151|302160|302163|302164|302165|302176|306547|306548|306551|306552|306554|306565|306815|306816|306835|306841|306847|306859|306861|428599|710325|710326|710327|710328|721875|735529|802160|861086|861625|895665|895666|895667|895668|895669|895670|896214|919021|920226", + "text": "Leukoencephalopathy, cystic, without megalencephaly" + }, + { + "baseId": "15457|15458|15459|15460|190243|303055|303056|303057|306309|306338|306340|311165|311167|311168|311296|311297|311300|311301|369750|434619|523317|578459|636166|636167|710992|833616|833617|833618|833619|833620|898108|898109|898110|898111|898112|898113|898114|898115|924856|933891|945637|955160", + "text": "Glycogen storage disease type X" + }, + { + "baseId": "15461|15462|15463|626073", + "text": "Mitochondrial complex 1 deficiency, nuclear type 18" + }, + { + "baseId": "15464|360473", + "text": "Autosomal dominant macrothrombocytopenia TUBB1-related" + }, + { + "baseId": "15464|19193|28568|28570|31079|51193|51196|51197|51198|572347|612063|612487|615337|615338|615548|615549|615550|615551|615555|615556|615558|615559|615561|615563|615564|615567|615574|615588|615589|615593|615594|615595|615596|615599|615601|615617|615619|615620|615621|615622|615623|615624|615625|615629|615630|615638|615643|615644|615648|615650|615651|615654|615656|615658|615661|615715|615717|615745|615854|615864|615867|801081|801139|801201|801212|801213|801214|801215|801516", + "text": "Macrothrombocytopenia" + }, + { + "baseId": "15465|15466|15467|48319|48320|48321|94456|168559|168560|168561|168562|168566|168567|168569|168570|207401|237813|369100|415045|424603|428611|428613|486744|551295|679749|788799|855107|964273|964274|970830", + "text": "Polymicrogyria, asymmetric" + }, + { + "baseId": "15468|15469", + "text": "MITOCHONDRIAL COMPLEX II DEFICIENCY, NUCLEAR TYPE 2" + }, + { + "baseId": "15470|140691|140692|140693|140694|140695|140696|190089|211720|211721|211723|211724|211727|325944|325945|325947|335545|335551|335554|335555|335589|335599|335604|335606|342019|342021|342027|342028|343531|375490|875597|875598|875599|875600|875601|875602|875603|875604|875605|875606|876688|876689", + "text": "Coenzyme Q10 deficiency, primary, 5" + }, + { + "baseId": "15471|15473|15474|15475|15476|84886|94529|94530|105940|105941|105942|105944|105946|105948|105957|105961|105964|105965|105969|105970|105971|105972|105973|105974|105977|105978|105980|105990|105993|106000|186635|186636|237147|267156|271717|281384|281390|281393|281396|281397|281399|282007|282008|282009|282021|282023|282025|282026|282038|282044|282054|283300|283305|283337|283338|283342|283345|283359|283443|283444|283446|283449|283459|283490|283491|283499|283500|283509|283520|283522|357148|357149|357150|357151|357152|357153|357154|357155|357156|357157|357158|357159|357160|357161|357162|357163|357164|357165|357166|357167|357168|357169|357170|357171|357172|357173|357174|357175|357176|357177|357178|357179|357180|357181|357182|357183|357184|357185|357186|442900|486871|494099|541312|541325|541328|541339|541341|541344|541346|541349|541350|541352|541354|541375|541377|541381|541382|541385|541391|541394|541398|541399|541401|541410|541411|541413|541415|576559|620020|620021|621090|621091|794751|801600|864881|864882|864883|864884|864885|864886|864887|864888|864889|864890|864891|864892|864893|864894|864895|864896|864897|864898|864899|864900|864901|864902|864903|864904|864905|864906|865224|865235|865236|865237|865238|868425|868426|868427|961751", + "text": "Dihydropyrimidine dehydrogenase deficiency" + }, + { + "baseId": "15471|15472|94529", + "text": "Fluorouracil response" + }, + { + "baseId": "15471|28870|28946|28951|28959|28960|28961|28962|28963|28964|28965|28966|28971|28975|28976|28977|28978|28979|28986|28991|28993|28994|36221|36228|36269|36275|36287|36305|45384|45386|50165|50278|50282|50284|50285|101890|101891|101892|136461|136472|138345|138726|138849|138926|138928|138929|139807|139815|139817|139819|139827|139828|139830|139833|166578|166579|166580|171125|182944|182948|182956|182958|186117|188092|188093|188094|188095|188096|188097|188098|188099|188100|188101|188102|188103|188104|209431|212767|212783|212784|212794|215301|221946|240788|240790|240797|240802|263835|263836|263839|263840|263841|263842|263843|263844|263845|263846|263847|263848|271973|310269|310270|310276|310293|310303|310309|310315|310330|310333|310334|315391|315392|315393|315394|315397|315411|315412|315418|315419|321369|321370|321384|321385|321388|321398|321411|321412|321415|321417|321419|321420|321423|322066|322103|322120|322142|322160|322161|322168|358824|358829|362046|362047|362048|362049|397269|397444|397680|397699|459817|460008|460025|460251|460316|460325|460677|460686|475107|525176|539281|569630|569655|581736|654156|679770|836830|858560|865863|865864|865865|865866|865867|865868|865869|865870|865871|865872|865873|865874|865875|865876|865877|865878|865879|865880|865881|865882|868471|868472", + "text": "Hirschsprung disease 1" + }, + { + "baseId": "15471|94529", + "text": "capecitabine response - Toxicity/ADR, Metabolism/PK" + }, + { + "baseId": "15471|94529", + "text": "fluorouracil response - Toxicity/ADR, Metabolism/PK" + }, + { + "baseId": "15471|94529", + "text": "Pyrimidine analogues response - Toxicity/ADR, Metabolism/PK" + }, + { + "baseId": "15471|94529", + "text": "tegafur response - Toxicity/ADR, Metabolism/PK" + }, + { + "baseId": "15471|28310|590069", + "text": "22 conditions" + }, + { + "baseId": "15477", + "text": "LUTHERAN BLOOD GROUP POLYMORPHISM Lu(a)/Lu(b)" + }, + { + "baseId": "15478", + "text": "AUBERGER BLOOD GROUP POLYMORPHISM Au(a)/Au(b)" + }, + { + "baseId": "15479|15480|15481|15482", + "text": "BLOOD GROUP--LUTHERAN NULL" + }, + { + "baseId": "15483|227369|255242|255243|255244|255245|255246|260069|538443|906177|961030|963172", + "text": "Thyroglobulin synthesis defect" + }, + { + "baseId": "15484|15485|15486|15487|15488|15489|256709|256710|256711|256712|256713|332019|332020|332025|332026|332027|332029|332030|332031|332033|332044|332048|332052|332053|332056|332059|332061|332070|332078|332083|332090|332095|332096|332104|332106|332109|332113|332117|332119|332133|332134|332136|332142|342221|342223|342225|342227|342230|342232|342234|342235|342236|342240|342242|342243|342246|342249|342250|342253|342255|342257|342259|342260|342261|342265|342267|342268|342278|342281|342283|342296|342298|342299|342302|342309|342310|342313|347624|347627|347636|347639|347640|347644|347649|347651|347655|347656|347659|347660|347667|347668|347673|347679|347684|347687|347688|347693|347694|347695|347696|347702|347703|347711|347712|347713|347714|347717|347727|347728|347729|347732|347733|348979|348981|348983|348991|348995|349003|349004|349005|349011|349014|349015|349019|349027|349029|349031|349039|349043|349052|349060|349066|349068|349070|349078|349080|349084|349087|349088|349094|349096|507407|513543|578427|614452|620902|704641|727761|756497|772236|791879|800092|879600|879601|879602|879603|879604|879605|879606|879607|879608|879609|879610|879611|879612|879613|879614|879615|879616|879617|879618|879619|879620|879621|879622|879623|879624|879625|879626|879627|879628|879629|879630|879631|879632|879633|879634|879635|879636|879637|879638|879639|879640|879641|879642|879643|879644|879645|879646|879647|879648|879649|879650|879651|879652|879653|879654|879655|879656|879657|879658|879659|879660|879661|879662|879663|879664|879665|879666|879667|879668|879669|879670|879671|879672|880671", + "text": "Hennekam lymphangiectasia-lymphedema syndrome 1" + }, + { + "baseId": "15490|15491|15493|15494|15495|15497|15498|15499|15500|15501", + "text": "Coproporphyria" + }, + { + "baseId": "15492|15496|131973", + "text": "Harderoporphyria" + }, + { + "baseId": "15498|291807|291809|291810|291814|291816|291818|291820|291821|291823|291828|291830|291834|291835|293138|293139|293140|293142|293174|293175|293176|293190|293193|293194|293195|293197|293200|293201|296460|296461|296463|296470|296471|296472|296475|296477|296478|296481|296483|296484|296486|296488|296490|296491|296499|296500|296501|296503|296504|296513|296517|296518|296519|296523|790424|859316|889793|889794|889795|889796|889797|889798|889799|889800|889801|889802|889803|889804|889805|889806|889807|889808|889809|889810|889811|889812|889813|889814|891715|891716|891717|891718", + "text": "Hereditary coproporphyria" + }, + { + "baseId": "15502", + "text": "Coproporphyria, digenic" + }, + { + "baseId": "15503|15504|15505|15507|15508|15509|15510|15511|15512|15513|15514|17204|39935|39936|39937|186775|186776|186777|186778|186779|186780|193362|215107|215108|253252|253253|269611|271344|306261|306263|306270|306277|306279|306282|306286|306292|310376|310379|310381|310397|310401|310402|310403|310410|315742|315744|315747|315748|315749|315751|315813|315814|315815|315816|315824|315833|315835|315836|357757|357758|357759|357760|357761|357762|357763|372045|372053|404779|425807|487350|492840|493102|493140|502082|502550|544597|544913|545016|545019|545026|545030|545031|545037|545101|545119|545135|545136|545139|545141|545143|545147|584887|586526|621289|736795|736796|736797|766968|766969|766970|766971|766972|766973|783198|783203|820034|820035|900668|900669|900670|900671|900672|900673|900674|900675|900676|900677|900678|900679|900680|900681|900682|900683|900684|900685|900686|900687|900688|900689|903279|917027|925308|925309|934489|940120|940917|955618|972024|972025|972026|972027|978505|978506|978507|978508|980931", + "text": "Hereditary fructosuria" + }, + { + "baseId": "15515|15516|15518|15519|15520|15522|15523|15524|15525|15667|15670|108502|312401|312403|325159|357930|359860|359983|425904|460885|461217|461692|461694|461696|513619|525902|545404|545410|545411|545413|545415|545417|545418|545420|545750|545752|545763|545767|545769|545772|545777|545818|545821|545827|545828|545830|545831|545837|545840|546044|546058|546064|546066|546069|546072|546073|546079|546083|639714|639715|639716|652488|737727|768205|775753|775775|783871|801690|820336|820337|837961|837962|867050|867051|867052|867053|867054|867055|867056|867057|935382|970226|970227", + "text": "BH4-deficient hyperphenylalaninemia A" + }, + { + "baseId": "15516|15517|15521|15522", + "text": "Hyperphenylalaninemia, bh4-deficient, a, due to partial pts deficiency" + }, + { + "baseId": "15518|15520|312403|737727|775775|837961|867051|978861|978862|978863", + "text": "6-Pyruvoyl-tetrahydrobiopterin synthase deficiency" + }, + { + "baseId": "15526|15527|150469|708756|708757|980450|981427|981428", + "text": "Riddle syndrome" + }, + { + "baseId": "15528|15529|15530|15531|15532|15533|15534|251370|270628|292888|292890|292895|292899|292904|292905|292914|294253|294254|294256|294257|294261|294264|294269|294271|297721|297724|297793|297796|297802|297806|297811|453349|453831|496317|508792|508793|520077|559635|559790|561976|612268|614643|632091|651144|790458|790459|790460|828959|851496|890472|890473|890474|890475|890476|890477|890478|890479|890480|890481|890482|890483|943902|943903|959718", + "text": "Dihydropteridine reductase deficiency" + }, + { + "baseId": "15535|15536|15537|15538|15539|15540|135604|224972|224973|380216|578353|578354", + "text": "Mitchell-Riley syndrome" + }, + { + "baseId": "15536|22745|23707|34055|136364|167531|168864|168868|168869|168874|168875|195995|211069|281461|299130|372861|421907|444937|758701|801165|905057|905058|905059|905060|906381|906382|906383|906384|906385|906386|906387|906388|906389|906390|906391", + "text": "Diabetes mellitus" + }, + { + "baseId": "15542|15543|15544|77877|77878|94432|99370|174339|174340|174341|174342|174477|174479|174480|190293|194332|194333|212517|229378|229380|229381|229382|229383|252064|298814|298815|301269|301270|301274|301275|301276|305665|305670|305772|305773|305775|305784|305786|305797|434602|455807|521959|634516|683757|895224|895225|895226|895227|895228|895229|895230|895231|895232|895233|895234|895235|895236|895237|895238|895239|895240", + "text": "Ciliary dyskinesia, primary, 11" + }, + { + "baseId": "15545|15546|15548|15549|15550|15552|237250|253110|253111|253112|253113|253114|253115|253117|253118|253119|253120|253121|253122|253124|253125|253126|253127|253128|253129|253130|253132|253133|253134|253135|253136|253137|253138|253139|253140|253141|253142|253143|305249|305250|305258|305260|305267|305272|305279|305291|305295|305302|305304|305308|305309|305310|305312|305318|305323|305327|305330|309065|309068|309070|309073|309075|309076|309078|309084|309087|309091|309110|309117|309121|309136|309152|309153|309154|309159|309161|309162|309163|309167|314271|314274|314286|314288|314292|314293|314299|314300|314328|314329|314330|314332|314339|314341|314346|314351|314359|314368|314371|314372|314374|314375|314376|314383|314384|314385|314386|314387|314388|314390|314391|314392|314398|314399|314400|314402|314407|314409|314410|314411|314412|314413|314415|314417|314423|314424|314425|314426|360899|535247|535248|535249|535250|535251|609693|609694|609696|609698|711527|711530|723086|723087|723093|736649|736650|736654|751139|751140|751148|751154|751155|766806|775249|777707|777758|790800|799539|799540|799541|799542|799543|799544|799545|799546|799547|799548|799549|818256|899535|899536|899537|899538|899539|899540|899541|899542|899543|899544|899545|899546|899547|899548|899549|899550|899551|899552|899553|899554|899555|899556|899557|899558|899559|899560|899561|899562|899563|899564|899565|899566|899567|899568|899569|899570|899571|899572|899573|899574|899575|899576|899577|899578|899579|899580|899581|899582|899583|899584|899585|899586|899587|899588|899589|899590|899591|899592|899593|899594|899595|899596|899597|899598|899599|899600|899601|899602|899603|899604|899605|899606|900493|900494|900495|900496|900497|900498|900499|919153|961857|967231|981626|981627|981628|981629|981630|981631|981632|981633|981634|981635|981636|981637|981638|981639|981640|981641|981642|981643|981644|981645|981646|981647|981648", + "text": "Spherocytosis type 1" + }, + { + "baseId": "15546|15547|15551|15552|15553", + "text": "Spherocytosis, type 1, autosomal recessive" + }, + { + "baseId": "15555|15556|15557|141827|200127|226902|227302|300924|300928|300929|300933|303860|303862|303871|303875|303876|303878|303882|303883|303891|308509|308516|308532|308550|308561|308562|308563|308566|369159|369165|434613|438330|443978|501400|522143|563682|635126|635127|635128|635129|672068|765800|788804|832283|832284|832285|832286|832287|832288|896780|896781|896782|896783|896784|896785|896786|896787|896788|896789|896790|900259|900260|933430|945135", + "text": "Methylmalonic aciduria and homocystinuria type cblF" + }, + { + "baseId": "15558|15559|15561|15562|15563|15564|15565|15566|33441|99922|134480|134481|134482|134483|134484|134485|134486|134487|134488|134489|134490|134491|134492|134493|134494|134495|134496|134497|134498|134499|134500|141018|141019|141020|141021|141022|141023|141024|141025|141027|141028|141029|141032|141033|141036|141037|141038|141039|141040|141042|141043|141044|141045|141046|141047|141047|141048|141049|141050|141051|141052|141053|141055|141056|141057|141058|141060|141061|141062|165548|165549|171281|171282|190385|190800|193941|207155|207157|207158|207159|207161|207162|207163|209640|209641|209642|209645|209646|209647|209649|209650|209653|209654|209656|209657|209658|209659|209660|209661|209664|209665|209666|209670|209671|209672|209673|209674|209679|209683|209684|209686|209687|209689|209690|209691|209695|209697|209698|209699|209703|209704|209705|209706|209708|209709|209710|209711|209714|209716|209717|209720|209722|209723|209724|209729|209730|209731|209734|209735|209736|209741|209742|209746|209748|209753|209754|209756|209757|209758|209759|209761|209766|209769|209771|209772|209774|209778|209778|209780|209781|209783|209785|209786|209792|209793|209795|209796|209799|209806|209807|209807|209808|209809|209812|209813|209818|209820|209824|209826|209827|209830|209836|209841|209842|209843|209845|209849|209850|209853|209854|209855|209856|209857|221556|224300|224304|227275|231636|231640|239646|239648|239649|239650|239651|239652|239653|239654|239656|239657|239659|239660|239661|239662|251642|251660|251661|258373|258374|258377|258383|258390|258390|258396|258397|258398|258402|258402|258404|258405|258406|258408|258413|258416|258417|267389|273965|295210|295211|295217|295218|295223|295226|295227|295239|295243|295245|295246|295248|295249|295254|295259|295261|295262|295267|295269|297008|297035|297036|297039|297040|297041|297048|297049|297049|297050|297051|297060|297065|297066|297086|297088|297094|297096|297105|300674|300678|300679|300684|300694|300696|300703|300715|300716|300717|300720|300724|300725|300727|300737|300743|300746|300747|300748|300760|300761|300762|300764|300766|300768|300860|300865|300867|300873|300874|300875|300877|300880|300881|300882|300889|300908|300919|300920|353677|359544|362067|362069|367879|368136|368142|368143|368157|368157|368174|368232|368242|368279|369519|369562|369580|394275|394552|394555|394559|394572|394575|394580|394600|394603|394608|394611|394613|394618|394619|394621|394624|394628|394770|394778|394780|394783|394788|394791|394797|395076|395083|395085|395086|395091|395092|395100|395105|395108|395112|395114|395117|395120|406626|413688|421519|421523|440046|443666|443671|443675|453872|454247|454249|454251|454257|454261|454264|454271|454272|454279|454289|454290|454402|454404|454406|454407|454409|454411|454414|454415|454415|454416|454422|454424|454430|454431|454435|454750|454751|454759|454763|454766|454772|454775|454778|454781|454790|454792|455037|455039|455040|455041|455042|455050|455052|455060|455062|455073|455074|455078|455079|455083|455085|455088|455089|455094|455096|455101|480518|480519|481723|490134|500650|500663|500955|501170|509699|509711|509714|509720|509722|509727|509730|509731|509732|509735|509737|509738|509742|509745|509747|511553|513553|520509|520509|520513|520517|520522|520525|520529|520532|520534|520540|520553|520556|520559|520743|520748|520749|520752|520754|520771|520773|520776|520786|520803|520808|520817|520823|520897|520901|520904|520922|520928|520930|520931|520932|520941|520946|520948|520960|520962|520964|520970|520972|521001|521004|521008|521010|521024|521026|521028|521033|521036|521039|521044|521046|537765|537768|537770|537771|552083|552430|560009|560011|560013|560015|560017|560019|560021|560023|560025|560114|560116|560118|560120|560122|560124|560126|560128|560130|560132|560134|562609|562612|562614|562616|562624|562625|562629|562635|562636|562638|562642|562644|564469|564476|564479|564480|564481|564483|564484|609572|612692|613460|614279|614280|620180|622345|632968|632969|632970|632971|632972|632973|632974|632975|632976|632977|632978|632979|632980|632981|632982|632983|632984|632985|632986|632987|632988|632989|632990|632991|632992|632993|632994|632995|632996|632997|632998|632999|633000|633001|633002|633003|633004|633005|651220|651300|651304|651310|651311|651324|660828|676960|686589|686592|686593|686594|686595|686598|686602|689768|689770|691674|691676|721195|734829|764794|774975|782124|790513|799393|799393|805004|816312|819532|819533|819534|819535|829948|829949|829950|829952|829954|829955|829956|829957|829958|829959|829960|829961|829962|829963|829964|829965|829966|829967|829968|829969|829970|829971|829972|829973|829974|829975|829976|829977|829978|829979|829980|829981|829982|829983|829984|829985|829986|829987|829988|829989|829990|829991|829992|851000|851002|851886|851888|851890|855102|892817|892818|892819|892820|892821|892822|892823|892824|892825|892826|892827|892828|892829|892830|892831|892832|892833|892834|892835|892836|892837|892838|892839|892840|892841|892842|892843|892844|892845|892846|892847|892848|892849|892850|892851|892852|892853|892854|892855|892856|892857|892858|892859|892860|892861|892862|892863|892864|896026|896027|896028|923749|923750|923751|923752|923753|923754|923755|923756|923757|923758|923759|923760|923761|923762|923763|923764|923765|923766|923767|923768|923769|923770|932611|932612|932613|932614|932615|932616|932617|932618|932619|932620|932621|932622|932623|932624|932625|939978|944285|944286|944287|944288|944289|944290|944291|953942|953944|953945|953946|953947|953948|953949|953950|953951|953952|959745|965440|966344|977207|977208", + "text": "Congenital contractural arachnodactyly" + }, + { + "baseId": "15568|101787|101788|101789|101790|175940|190557|192499|205407|213109|213111|222368|222369|222371|230527|230529|230531|230532|241844|241846|241847|254957|254958|254959|254960|254964|254965|254966|320641|320642|320643|320648|329433|329435|329436|329450|329451|329456|329457|335996|336009|336011|336020|337969|337974|337977|337981|399648|620482|693497|791409|871893|871894|871895|871896|871897|871898|871899|871900|871901|871902|871903|871904|871905|871906|871907|871908|871909|871910|871911|871912", + "text": "Ciliary dyskinesia, primary, 10" + }, + { + "baseId": "15570|15571|15572|40264|40265|40266|40267|134334|134335|134336|134337|134338|134339|189063|205728|209327|213527|282811|282818|282830|282831|282833|282834|282838|282841|282843|282844|282846|282851|282859|282861|283624|283626|283628|283630|283632|283635|283636|283637|283648|283654|283655|283663|283665|283666|283672|285150|285154|285156|285161|285168|285170|285171|285172|285175|285176|285183|285189|285190|285201|285202|285203|285657|285658|285659|285660|285662|285663|285664|285675|285707|285709|285712|285732|285733|285734|285741|285742|285754|285756|285757|285758|438178|537368|557694|558913|620937|628991|628992|628993|628994|683419|685920|685922|790127|792723|825211|881548|881549|881550|881551|881552|881553|881554|881555|881556|881557|881558|881559|881560|881561|881562|881563|881564|881565|881566|881567|881568|881569|881570|881571|881572|881573|881574|881575|881576|881577|881578|881579|881580|881581|881582|881583|881584|881585|881586|882845|882846|882847|922410|930976|930977|930978|942407", + "text": "Hypogonadism, diabetes mellitus, alopecia, mental retardation and electrocardiographic abnormalities" + }, + { + "baseId": "15573|15574|15575|15576|15577|15578|99509|99515|99521|99524|116527|140950|140956|140959|140963|140964|140965|140966|140968|140969|140970|140975|152820|152830|177110|177373|191520|191778|191986|192093|192826|192827|192896|193097|193098|193099|193777|194347|205152|205153|238032|247005|265562|266046|271533|274143|300904|300912|303823|303824|303831|303833|303846|308450|308477|308508|308531|389200|406887|406889|431696|431697|431705|431712|431714|438326|486397|512912|513965|543884|543888|543895|543897|543900|543902|543908|543910|543915|543921|543937|543952|543956|544194|544201|544203|544208|544217|544229|544240|544272|544275|544278|544280|544282|544284|544286|544292|544296|544302|544303|551546|551548|551549|551550|551551|551552|551608|551621|551622|551623|551624|590282|590283|610616|610617|611354|623294|623295|710580|710583|730434|735720|735721|735722|735726|744294|750154|765772|765774|765781|765785|765790|777640|782608|782625|782628|790645|790646|790647|790648|790649|790650|790651|790652|790653|790654|790655|790656|799448|799449|799450|799451|800356|818251|818252|832163|832169|832183|832190|832191|832208|832218|832219|832227|832229|832254|832263|832269|832276|852028|970836|980330|981552", + "text": "Retinitis pigmentosa 25" + }, + { + "baseId": "15579|15580|39914|39915|39916|136044|136045|136046|136047|141380|141381|141382|200166|200167|200168|200169|200170|200172|215388|267661|305828|305830|305831|305833|305837|305839|305840|305842|309911|309912|309913|309919|309927|315124|315128|315129|315132|315133|315134|315216|315219|315222|315223|315225|315229|315232|315233|315234|315235|315238|315245|315246|369567|407452|457964|458527|458528|458604|481492|502786|524025|561847|565210|565212|565213|568096|620304|637387|637388|637389|736749|798605|819985|835030|835031|835032|835033|835034|835035|835036|835037|900001|900002|900003|900004|900005|900006|900007|900008|900009|900010|900011|900012|900013|900014|900015|900016|900017|900516|925259|925260|934417|934418|955499", + "text": "Nuclearly-encoded mitochondrial complex V (ATP synthase) deficiency 2" + }, + { + "baseId": "15582|15583|15584|15585|53206|53207|53208|174808|230229|230234|230235|230237|315088|315089|315090|315091|315096|315099|315108|315109|315113|315115|315116|315117|315123|315125|321908|321909|321913|321914|321922|321924|321926|321929|327985|327987|327996|328003|328009|329098|329102|329112|329130|329138|329140|329149|329150|329158|329159|329164|329176|329179|329194|578494|615815|620419|620836|868756|868757|868758|868759|868760|868761|868762|868763|868764|868765|868766|868767|868768|868769|868772|868773|868774|868775|868776|868777|868778|868779|872135", + "text": "Deafness, autosomal recessive 63" + }, + { + "baseId": "15582|16237|16339|17390|17391|17394|17396|17397|17398|17400|19141|19142|19431|19434|19436|19559|19565|19855|19856|19857|19858|19859|19860|19864|19865|19868|19869|19874|19875|19878|19879|19881|19955|19957|19961|19970|19972|19975|20180|20182|21172|21176|21182|21280|21281|21282|21650|21653|21837|22968|22974|23620|23621|24667|26886|26887|26889|26898|26899|32039|32040|32041|32042|32043|32044|32045|32046|32048|32049|32050|32053|32055|32062|32066|32068|32071|32075|32163|33361|34239|34241|34683|34686|38617|38879|39513|39947|44165|51396|52303|52308|52310|52313|52314|52316|52321|52322|52325|52329|52333|52334|52335|52337|52339|52341|52342|52344|52345|52348|52366|52372|52376|52378|52379|52380|52381|52382|52387|52389|52393|52398|52399|52400|52402|52406|52409|52410|52415|52419|52431|52434|52436|52440|52445|52450|52452|52458|52459|52461|52462|52464|52465|52468|52470|52471|52476|52478|52480|52483|52484|52488|52497|52499|52500|52510|52515|52516|52517|52520|52522|52656|52663|52664|52665|52666|52667|52668|52670|52671|52674|52675|52676|52678|52680|52683|52685|52687|52688|52691|52697|52701|52702|52710|52711|52720|52722|52724|52725|52731|52732|52734|52735|52736|52737|52738|52740|53289|53889|53890|53892|53894|53895|53896|53900|53902|53903|53904|53905|53907|53909|53911|53916|53917|53919|53920|53928|53930|53933|53934|54308|54610|54613|54614|54810|54844|54921|54922|54930|54936|54942|55030|55051|55085|55091|55094|55108|55119|55137|55153|55154|55160|55164|55165|55166|55174|55188|55194|55204|55206|55218|55242|55258|55267|55269|55278|55279|55284|55292|55296|55410|55419|55440|55457|55471|55474|55535|55536|55564|55611|55614|55629|57020|57028|57040|57094|57121|57122|57263|57266|57267|57268|57270|57291|57306|57309|57310|57327|57351|57357|57395|57404|57420|57423|57428|57432|57440|57505|57509|57510|57514|57517|57518|57519|57527|57531|57537|57538|57550|57551|57552|57554|57555|57556|57567|57568|57570|57574|57578|57588|57591|57595|57611|57633|57638|57659|57661|57664|57665|57666|57674|57688|57697|57705|57706|57707|57716|57720|57726|57741|57757|57766|57773|57775|57777|57783|57786|57788|57790|57796|67718|70522|76695|76718|100292|141320|152878|152890|169009|169011|172390|172463|172467|172511|172515|172517|172522|172583|172740|172741|172750|172765|172768|172778|172881|172889|172916|172924|173509|173510|173511|173539|173634|173635|173637|173640|173648|173677|174003|174023|174027|174030|174032|174033|174141|174146|174151|174163|174164|174221|174260|174303|174396|174401|174449|174459|174471|174483|174571|174581|174680|174699|174722|174808|174844|174960|174998|175093|175133|175222|175223|175224|175234|175237|175277|175338|175407|175522|175524|175763|175766|175770|175771|175904|175905|175907|175911|175912|175913|175925|175926|175947|175952|175960|175964|175965|175967|175969|175972|176001|176090|176096|176111|176112|176115|176240|176262|176332|176365|176368|176455|176456|176463|176470|176477|176480|176488|176561|176564|176571|176587|176599|176604|176612|176706|176723|176870|176879|176880|176920|178183|178185|178186|178188|178248|178258|178260|178267|178278|178288|178304|178305|186676|186731|186854|186857|186860|186863|186864|195093|203228|211050|215511|228251|228256|228299|228300|228312|228320|228321|228328|228337|228349|228352|228526|228932|228972|228973|229148|229151|229152|229188|229205|229284|229307|229323|229335|229348|229362|229420|229510|229525|229527|229531|229537|229545|229546|229615|229627|229628|229629|229701|229703|229705|229706|229709|229712|229788|229815|229846|229851|229858|229863|229896|229908|230005|230007|230048|230079|230242|230248|230249|230342|230349|230353|230401|230433|230434|230451|230543|230552|230571|230574|230579|230618|230688|230729|230733|230744|230750|230751|230977|230991|231006|231041|231133|231229|231297|231385|231386|231387|231388|237610|273474|275828|327577|357850|357859|358080|358129|358131|389206|390155|404799|405044|421558|429949|431606|442483|445122|445124|445719|482004|489962|490084|491485|494951|495068|496156|496179|496182|496184|496265|496266|496320|496322|496379|496392|496456|496544|496561|496627|496765|496773|496807|496836|496878|496916|496922|496931|496950|496965|496983|497039|497046|497055|497072|497128|497153|497157|497169|497174|497191|497200|497248|497253|497269|497270|497302|497341|497344|497384|497408|497430|497466|497482|497563|497581|497613|497628|497655|497666|497672|497680|497686|497699|497703|497791|497802|497803|497811|497812|505638|508742|508746|537726|540927|541060|549036|590349|609763|612902|620574|654163|654244|654272|654377|654389|654402|654419|654448|654466|654517|654545|654645|654647|654648|654668|654723|654726|654730|654731|654768|654775|654817|654829|654838|654922|654974|654975|654976|654978|654985|654987|672206|918221|918323|918352|918410|918421|918423|918484|977404|977405", + "text": "Rare genetic deafness" + }, + { + "baseId": "15586|140308|211343|359159|359160|359161|359163|359164|917814|917815|919178", + "text": "Mitochondrial complex 1 deficiency, nuclear type 17" + }, + { + "baseId": "15587|15588|15589|15590|15591|15592|15593|15594|15595|15596|15597|15598|15599|15601|39908|256682|256683|331767|331768|331771|331776|331785|331790|331792|331793|331795|331798|331801|331802|331805|331808|331810|331814|331816|331828|331829|331831|331834|331837|331842|331846|331850|331853|331873|331875|331895|331897|331901|342058|342061|342062|342065|342067|342069|342079|342080|342083|342084|342090|342091|342094|342095|342097|342099|342102|342103|342110|342113|342114|342120|342124|342126|342128|342132|342134|342145|347435|347436|347439|347442|347443|347444|347448|347449|347453|347454|347455|347459|347462|347463|347465|347466|347470|347475|347476|347479|347482|347483|347485|347487|347490|347492|348769|348770|348778|348781|348782|348783|348786|348787|348789|348791|348792|348795|348797|348798|348801|348803|348807|348808|348811|348812|348813|348814|348823|348824|348829|348844|348846|348848|348853|348854|348857|348862|348865|348866|348868|348873|348874|348875|362176|612137|620623|620624|791873|791874|791875|880678|880679|980384", + "text": "Protoporphyria, erythropoietic, 1" + }, + { + "baseId": "15589|15601|214205|214208|214224", + "text": "Jaundice" + }, + { + "baseId": "15589|15601", + "text": "Erythema" + }, + { + "baseId": "15600|16003|17020|17279|17333|18370|18416|18706|18962|19407|20128|20347|20492|21136|22052|22107|22208|22913|23191|23280|23950|25431|25541|25857|26197|26581|27225|27848|28196|28660|28945|29421|29453|29836|29837|29838|29855|29941|29952|30080|30204|30536|30656|31086|31087|31331|31516|31604|31786|31812|32748|32755|32777|32846|32893|32902|32911|32912|33332|34010|34011|36264|36268|36271|36282|36285|36290|36303|36316|36326|36774|38381|38382|38386|38388|38389|38393|38394|38403|38409|38411|38412|38413|38420|38423|38429|38430|38433|38439|38440|38441|38443|38453|38454|38456|38458|38460|38463|38464|38466|38467|38468|38472|38474|38475|38477|38478|38479|38480|38482|38486|38487|38488|38490|38491|38492|38495|38498|38831|39688|45585|45586|45588|45814|46900|46929|46930|47214|47696|47697|47698|47699|47700|47701|48593|48594|49640|49641|49642|49643|51304|51328|65678|65679|70465|70466|70469|75266|75810|75811|76114|76115|76256|76257|76280|76281|76326|76327|76521|76962|95937|95938|97321|97524|107154|107155|132608|136523|136524|165917|166223|166332|166333|166407|166442|166443|171716|171717|172806|175053|175331|178311|178409|178410|185945|187140|187141|187253|187271|187272|188043|188045|188048|188237|188243|188244|198596|198597|198599|198600|198603|198604|198607|198612|198623|198624|198635|198636|198637|200465|200466|200559|200560|200618|200619|200690|204120|204121|204141|204142|204143|204144|204995|204996|204997|205011|205071|205072|205435|205436|205443|205444|205454|205455|205459|205471|205472|205480|205491|209423|209424|213520|213521|213529|213531|213542|213543|213548|213553|213555|213559|213564|213567|213568|213573|213579|213581|213586|213587|213594|213596|213601|213611|213612|213615|213616|213617|213618|213619|213623|213625|213626|213635|213638|213639|213642|213657|213660|213714|213715|213997|213998|214001|214011|214149|214150|214380|214381|214382|214384|214387|214390|214540|215016|215658|215659|222899|222990|222991|223750|223754|224615|226245|226246|226444|226445|226446|226450|226452|226453|226461|226462|226465|226478|226485|226486|229064|230420|230906|237477|237478|237479|237481|237599|237606|237607|237619|237656|237798|237812|237957|237961|237962|243924|243976|244009|244069|244084|244097|244180|244181|245306|245414|245688|245692|245962|245963|247360|247522|247523|248590|260440|260483|260732|260792|260793|260930|260931|260935|262266|262702|262703|262704|262705|262706|262707|262708|262709|262710|262711|262712|262713|262762|262763|262764|262765|262929|262930|263528|263529|263866|263867|354271|360754|361134|361135|361945|361964|361965|361968|361969|361971|362050|362051|362059|362060|362400|362401|362631|362632|362635|364259|364260|364261|364262|364263|364264|364265|364266|380146|384474|390711|390712|404620|411584|414032|414033|418555|420149|420150|420980|420981|421145|421146|424190|424261|424391|424392|424414|424415|424586|424587|424940|425238|425239|427117|427118|427119|427128|427129|431552|431886|431887|434125|434128|434131|437663|439519|439520|439524|439525|472227|472254|472257|480401|480402|480403|480404|480405|480542|481068|481281|481282|481283|486574|486806|496538|536015|536016|536085|536104|536105|546974|547127|550124|550158|550637|550638|551237|551238|551241|551505|551506|551547|576064|576307|576308|578241|578242|578662|578663|608890|609023|609048|610366|613407|613408|613409|613410|613411|613412|613413|613414|613415|613416|613417|613418|613419|613420|613421|613423|613427|613428|614641|615901|615916|615917|619827|622272|622273|622274|622277|622278|622279|622292|622293|622828|622829|622830|622831|622837|622838|622839|622840|623812|625094|654101|654102|677116|677118|679212|679213|679694|679695|680081|680082|682301|682314|682316|682795|789141|800335|800341|804893|806357|806358|815787|815877|815878|816514|818750|857326|857332|857354|857355|857356|857357|857376|857377|857434|857524|858636|858667|861050|861124|861125|904064|904065|904244|904246|904871|918325|918326|961426|961429|962921|962922|967028|967029|970489|970490|970498|970499|970500|970501|970502|970504|970505|970511|970634|970635|970636|970637|970638|970639|970640|970643|970644|970645|970646|970647|970648|970649|970650|970651|970652|971236|971352|972758|972759|972760|972761|980502|980503", + "text": "-" + }, + { + "baseId": "15601|918495", + "text": "Autosomal erythropoietic protoporphyria" + }, + { + "baseId": "15602|15603|15604|15605|15606|15607|15608|39903|39904|39905|39906|48469|48470|135781|135782|135783|135784|135785|135786|135787|135788|135789|135790|135791|135792|135793|135794|195391|207790|271254|271405|271522|310633|310635|310636|310637|310641|310643|315867|315875|315881|315882|315887|315895|315904|321917|321920|321921|321933|321945|321949|321950|321951|321961|321962|321963|321966|321987|322638|322639|322640|322642|322643|460129|460135|460506|525350|525359|525371|525373|525447|525453|525566|525567|525785|563923|563926|563931|563933|564730|566449|566454|566463|566464|566470|566471|566475|569414|586654|586769|624410|639125|639126|639127|639128|639129|639130|639131|639132|639133|639134|639135|639136|639137|639138|639139|652007|701424|724048|724049|724050|724051|730704|737572|737573|752217|759960|783672|837183|837184|837185|837186|837187|837188|837189|837190|837191|837192|866101|866102|866103|866104|866105|866106|866107|866108|866109|866110|866111|866112|866113|903570|925911|935147|935148|935149|935150|940964|947027|947028|956150|956151|956152|956153|983773", + "text": "Histiocytosis-lymphadenopathy plus syndrome" + }, + { + "baseId": "15609|15610|140303|359158|361116|550094|788935|791972|800167", + "text": "Mitochondrial complex 1 deficiency, nuclear type 16" + }, + { + "baseId": "15611", + "text": "Kininogen deficiency, total" + }, + { + "baseId": "15612|15613|15614|227257", + "text": "High molecular weight kininogen deficiency" + }, + { + "baseId": "15615|15616|15617|15618|15619|15620|15621|15622|15623|15624|15625|15626|15627|15628|15629|15630|15631|15632|15633|15634|15635|15636|15637|15638|15639|15640|15641|15642|15643|15644|15645|15646|15647|15648|15649|15650|15651|15652|15653|15654|15655|15656|15657|15658|15659|15660|15661|15662|15664|15665|15666|15667|15668|15669|15670|15671|15672|15673|15674|15675|15676|15678|98634|98636|98637|98638|98639|98641|98643|98644|98645|98647|98648|98649|98650|98651|98653|98654|98655|98656|98657|98658|98659|98660|98662|98663|108195|108199|108204|108211|108212|108213|108218|108219|108220|108223|108225|108227|108228|108234|108236|108237|108239|108240|108242|108243|108245|108246|108250|108253|108254|108257|108260|108261|108262|108264|108266|108267|108271|108272|108273|108274|108277|108278|108279|108280|108281|108283|108285|108286|108289|108290|108291|108292|108293|108296|108297|108301|108302|108303|108304|108305|108307|108308|108309|108312|108313|108316|108317|108319|108320|108322|108324|108325|108326|108328|108330|108331|108332|108333|108336|108337|108338|108340|108341|108342|108343|108344|108345|108347|108349|108352|108354|108355|108356|108357|108358|108359|108361|108362|108368|108369|108373|108374|108375|108378|108380|108381|108383|108385|108386|108388|108390|108391|108392|108394|108396|108397|108398|108399|108400|108401|108402|108403|108405|108406|108407|108408|108410|108413|108416|108420|108421|108422|108423|108425|108429|108430|108432|108433|108434|108436|108437|108438|108439|108441|108442|108443|108448|108450|108451|108452|108454|108456|108457|108458|108459|108460|108462|108463|108465|108467|108469|108470|108471|108472|108473|108474|108476|108477|108478|108479|108480|108482|108483|108485|108487|108488|108489|108492|108493|108494|108495|108498|108499|108501|108502|108503|108504|108505|108506|108508|108509|108513|108515|108518|108520|108522|108524|108525|108528|108529|108531|108532|108536|108537|108539|108540|108541|108542|108543|108546|108547|108549|108550|108551|108552|108553|108554|108557|108559|108560|108566|108567|108568|108569|108570|108572|108575|108576|108577|108578|108579|108580|108582|108585|108586|108587|108588|108589|108590|108591|108592|108593|108596|108598|108599|108602|108605|108607|108608|108609|108610|108612|108613|108615|108616|108617|108618|108620|108621|108622|108623|108624|108625|108628|108630|108633|108635|108636|108637|108638|108640|108641|108643|108646|108647|108648|108649|108650|108651|108652|108653|108654|108657|108658|125851|125852|125853|125854|125855|125856|125857|125858|125859|125860|125861|125862|125863|125864|125865|125866|125867|125868|125869|125870|125871|125872|125873|125874|125875|125876|125877|125878|125879|125880|125881|125882|125883|125884|125885|125886|125887|125888|125889|125890|125891|125892|125904|130974|136994|137051|186846|186847|191324|194286|200222|200225|204453|204454|204455|204456|227027|227028|227029|227030|254389|265310|270899|315838|315842|322931|322933|329001|329002|329008|329009|330196|330201|330203|353207|358082|358083|358084|358085|358086|358087|358088|358089|358090|358091|363815|408504|421894|432709|432710|440021|440042|461766|461793|461795|462148|462155|462157|487329|504093|526605|526617|526628|546568|546570|546573|546577|546582|546587|546590|546596|546598|546604|546605|546619|546620|546621|546629|546632|546804|546816|546818|546819|546821|546823|546833|546837|546890|546898|546905|546906|546907|546913|546916|546923|546925|546926|546931|546934|547131|547139|547142|547146|547151|547154|547160|547165|547168|547170|564992|566303|567645|571177|576255|576256|576257|581278|581708|610543|610544|610545|610546|610547|610548|610549|610550|610551|610552|610553|610554|610555|610556|610557|610558|610559|610560|610561|610562|611103|611986|613618|613619|613620|613621|613622|613623|614606|623049|623050|640583|640584|640585|640586|640587|640588|652164|652393|652620|693132|702061|724841|738395|738396|738397|753050|768865|768866|768868|778019|784255|791187|791188|791189|794119|794120|794121|794122|794123|794124|794125|794126|794127|794128|794129|794130|794131|794132|794133|794134|794135|794136|794137|794138|794139|794140|794141|794142|794143|794144|794145|794146|794147|794148|820439|820440|839250|839251|839252|852429|852430|852653|860992|860993|860994|860995|860996|860997|860998|860999|861000|861001|861002|861003|861004|861005|861006|861007|861008|869140|869141|869142|869143|869144|869145|869146|869147|869148|872177|917098|920555|920556|920557|920558|920559|920560|920561|920562|920563|920564|920565|920566|920567|920568|920569|920570|920571|920572|920573|920574|920575|920576|920577|920578|920579|920580|920581|920582|920583|926446|926447|926448|926449|926450|935899|935900|940239|947770|956735|956736|956737|956738|972616|975726|975727|975728|975729|975730|975731|975732|975733|975734|975735|975736|975737|975738|975739|975740|975741|975742|975743|975744|975745|975746|975747|975748|975749|975750|975751|975752|975753|975754|975852|975879|975880|975881|975882|975883|975884|975885|975886|975896|979255|979256|979257|979258|979259|979260|979261|979262|979263|979264|979265|979266|979267", + "text": "Phenylketonuria" + }, + { + "baseId": "15622|15625|15632|15656|15657|15663|15664|15667|15669|15670|15671|15672|15677|15678|98641|98657|98658|108462|108488", + "text": "Hyperphenylalaninemia, non-pku" + }, + { + "baseId": "15655|15666", + "text": "Mild non-PKU hyperphenylalanemia" + }, + { + "baseId": "15667|237522|406083|406687|424694|428391|514326|540506|550579|550587|550621|550636|550742|626435|677338|677339|677340|677341|677342|677343|677344|677345|677346|677347|677348|677349|677350|677351|677352|677353|677354|677355|677356|677357|677358|677359|677360|677361|677362|677363|677364|677365|677366|677367|677368|677369|677370|677371|677372|677373|677374|677375|677376|677377|677378|677379|677380|677381|677382|677383|677384|677385|677386|677387|677388|677389|677390|677391|677392|677393|677394|677395|677396|677397|677398|677399|677956", + "text": "Marfanoid habitus and intellectual disability" + }, + { + "baseId": "15671", + "text": "Hyperphenylalaninaemia" + }, + { + "baseId": "15679|613488", + "text": "Endocrine-cerebroosteodysplasia" + }, + { + "baseId": "15680|361580|788673|788674|788675|858628|858629", + "text": "Combined oxidative phosphorylation deficiency 44" + }, + { + "baseId": "15681|28349|29054|33100", + "text": "Ischemic stroke, susceptibility to" + }, + { + "baseId": "15681", + "text": "Budd-Chiari syndrome, susceptibility to" + }, + { + "baseId": "15681|558220|610573", + "text": "Recurrent abortion" + }, + { + "baseId": "15681|15681|15685|15686|15687|15688|15689|15690|15691|15692|15693|38307|227743|249498|249500|249502|249503|249504|249505|249506|249507|249508|249510|249511|249512|249513|249514|249515|249516|249517|249518|249520|249521|249522|249523|249524|249525|249526|277166|277168|277179|277180|277191|277192|277194|277195|277214|277219|277220|277221|277222|277225|277248|277249|277250|277252|277253|277254|277257|277260|277261|277262|277263|277270|277272|277273|277294|277416|277422|277423|277427|277428|277435|277443|277444|277452|277454|277458|277459|277466|277467|277468|277471|277472|277474|277480|277482|277486|277489|277492|277494|277498|277504|277505|278219|278222|278240|278256|278260|278261|278262|278263|278264|278267|278268|278269|278270|278271|278278|278280|278281|278288|278289|278291|278295|278297|278298|278305|278307|278309|278310|278312|278316|278317|278318|278325|278328|278329|278330|278332|278334|278336|278338|278340|278341|278342|278343|278350|278351|278352|278360|278364|278373|278374|278383|557032|558220|558220|615275|615276|615278|615279|615280|615281|615282|615283|615284|615285|615286|615287|615288|615289|615290|615291|615718|619964|627058|654174|706851|706852|706853|718361|718365|718366|718368|718369|718370|718372|718374|731854|731855|731856|743730|745824|745828|745830|745832|777016|778749|788955|862698|862699|862700|862701|862702|862703|862704|862705|862706|862707|862708|862709|862710|862711|862712|862713|862714|862715|862716|862717|862718|862719|862720|862721|862722|862723|862724|862725|862726|862727|862728|862729|862730|862731|862732|862733|862734|862735|862736|862737|862738|862739|862740|862741|862742|862743|862744|862745|862746|862747|862748|862749|862750|862751|862752|862753|865026|865027|865028|966342", + "text": "Factor V deficiency" + }, + { + "baseId": "15681|15681|15683|15684|15694|38307|249497|249498|249500|249501|249503|249504|249505|249506|249507|249508|249509|249510|249511|249512|249513|249514|249515|249516|249517|249518|249519|249520|249521|249522|249523|249524|249525|249526|277166|277168|277179|277180|277191|277192|277194|277195|277214|277219|277220|277221|277222|277225|277248|277249|277250|277252|277253|277254|277257|277260|277262|277263|277270|277272|277273|277294|277416|277422|277423|277427|277428|277435|277443|277444|277452|277454|277458|277459|277466|277467|277468|277471|277472|277474|277480|277482|277486|277489|277492|277494|277498|277504|277505|278219|278222|278240|278256|278260|278261|278262|278263|278264|278267|278268|278269|278270|278271|278278|278280|278281|278288|278289|278291|278295|278297|278298|278305|278307|278309|278310|278312|278316|278317|278318|278325|278328|278329|278330|278332|278334|278336|278338|278340|278341|278342|278343|278350|278351|278352|278360|278364|278373|278374|278383|558220|615287|619964|706851|718365|862698|862699|862701|862702|862703|862704|862705|862706|862707|862708|862709|862710|862711|862712|862713|862714|862715|862717|862718|862719|862721|862722|862724|862726|862728|862732|862736|862737|862738|862739|862740|862743|862744|862746|862750|862751|862752|862753|865026|865027", + "text": "Thrombophilia due to factor V Leiden" + }, + { + "baseId": "15682", + "text": "Factor V Hong Kong" + }, + { + "baseId": "15695|15696|15698|15700|15701|15705|15707|15708|15709|15710|15711|15712|15713|15714|15716|15717|15718|15719|171062|171063|171064|171065|171066|171067|171068|171069|171070|171071|185963|221115|227218|227219|238360|238361|238362|238363|250153|250154|250155|281801|281808|281809|281820|282432|282437|282438|282458|282459|282462|282463|284085|284086|284285|284286|284301|284303|284305|391596|448562|448682|448774|448775|448776|513020|516326|516330|516337|516340|516346|516373|516413|516415|557504|557549|557551|557553|558711|558713|612185|612186|628433|628434|650813|683389|685113|685838|690738|794766|824737|824738|824739|824740|824741|881027|881028|881029|881030|881031|881032|881033|881034|881035|881036|881037|881038|881039|882795|922234|922235|930794|930795|942227|952630|961020|977178", + "text": "Thrombophilia, hereditary, due to protein C deficiency, autosomal dominant" + }, + { + "baseId": "15697|15698|15699|15700|15701|15702|15703|15704|15705|15706|15714|15715|171068|615323|789084|798960", + "text": "Thrombophilia, hereditary, due to protein C deficiency, autosomal recessive" + }, + { + "baseId": "15698|15708|15714|171067|171070|238363|615310|615312|615313|615314|615315|615319|615320|615321|615322|615323|615324|615325|615326|615327|615720", + "text": "Reduced protein C activity" + }, + { + "baseId": "15704|615294|615361|615615|801511", + "text": "Abnormal thrombosis" + }, + { + "baseId": "15710|33051|171063|448774|615273|615277|615287|615288|615311|615371|615390|615392|615719|615723", + "text": "Thromboembolism" + }, + { + "baseId": "15714|33051|33073|171063|212340|448774|515340|558713|615287|615307|615311|615311|615316|615317|615318|615375|615376|615420|615421|615653|615865", + "text": "Deep venous thrombosis" + }, + { + "baseId": "15720|15721|15722|15723|15724|15725|15726|15727|15728|15729|15730|15731|106585|106586|190216|190217|190218|195207|237099|271825|280105|280107|280111|280112|280117|280119|280123|280125|280126|280444|280446|280448|280450|280454|280456|281770|281921|281923|353101|448013|481387|481388|513388|549519|556916|557255|558431|578381|621079|650558|690559|696614|777118|780632|789108|823755|823756|858730|861140|864147|864148|864149|864150|864151|864152|864153|864154|864155|864156|865163|865164|941861|961825|967102|967103|967104|967105|969145|972778|972807|976707", + "text": "Fucosidosis" + }, + { + "baseId": "15730", + "text": "FU1/FU2 POLYMORPHISM" + }, + { + "baseId": "15732|15733|15734|15735|15736|39901|39902|227332|307313|307314|307315|307319|307322|307323|307324|307327|307328|307329|307330|307338|307339|307341|307342|307344|307348|307349|307357|307364|311619|311625|311626|311627|311630|311643|311645|311650|311652|311655|311656|311657|311660|317115|317120|317125|317126|317127|317128|317129|317131|317138|317152|317154|317156|317158|317556|317557|317559|317561|317564|317567|317572|317575|317581|317583|317584|419138|508835|508836|514842|612849|613383|901380|901381|901382|901383|901384|901385|901386|901387|901388|901389|901390|901391|901392|901393|901394|901395|901396|901397|901398|901399|901400|901401|901402|901403|901404|901405|901406|901407|901408|901409|901410|901411|901412|901413|901414|901415|901416|901417|901418|901419|901420|901421|901422|901423|901424|901425|901426|901427|901428|901429|901430|901431|901432|901433|901434|901435|901436|901437|901438|903340|903341|903342|903343|903344|903345|903346|903347|903558|919196|919197|919198", + "text": "Geleophysic dysplasia 1" + }, + { + "baseId": "15737|15738|15739|15740|15741|15742|15743|15744|15745|15746|15747|15748|15749|15750|15751|15752|15753|33442|99072|99074|99075|99079|99086|99087|99089|99090|99093|99094|190091|190760|191341|194310|195248|195588|198638|226602|255948|255953|255955|255957|260136|260138|265255|268429|272490|326786|326798|326799|326806|326808|336634|336637|336643|336644|336661|336662|336664|336669|336671|336672|342873|342880|342882|342886|342892|342894|342895|342901|342903|342905|342907|342911|342912|342913|342915|344525|344528|344530|344532|344533|344537|344538|344542|344544|344549|344550|344556|344559|353371|377894|466842|512231|512232|513364|513638|529245|529284|530382|530388|530498|530499|530696|530921|549737|570601|570603|570605|570616|574200|574202|611356|612195|612315|621552|621553|622436|645116|645117|645118|645119|645121|645122|645123|652775|653170|703896|726918|740495|740496|740499|755531|755533|788903|789382|791649|791650|791651|820910|820911|820912|844476|844477|844478|844479|844480|844481|851689|852677|852679|858650|861185|861186|861187|861188|861189|861191|861281|876147|876148|876149|876150|876151|876152|876153|876154|876155|876156|876157|876158|876159|876160|876161|876162|876163|876164|876165|876166|876167|876168|876169|876170|876171|876172|876173|876174|876175|876176|876177|876178|876735|904966|928002|937656|937657|940377|941152|961878|970240", + "text": "Mucopolysaccharidosis, MPS-IV-A" + }, + { + "baseId": "15739|15742|15747|15750|15752|99069|195587|196191|255948|265255|290017|290775|293951|294412|326781|326785|326786|336625|336637|336644|336662|342867|342872|342873|342882|342884|342892|342895|342907|342908|344521|344525|344528|344533|344537|344556|353363|512233|574202|621553|621849|645119|917223", + "text": "Morquio syndrome" + }, + { + "baseId": "15754|15755|15756|15757|15758|15759|15760|136214|136215|136216|136217|136218|136219|136220|136221|299745|299746|299750|302338|302339|306735|306739|306746|306747|307035|307041|307058|513062|895738|895739|895740|895741|895742|895743|895744", + "text": "Transient neonatal diabetes mellitus 1" + }, + { + "baseId": "15761|15762|15763|15764|15765", + "text": "Slow acetylator due to N-acetyltransferase enzyme variant" + }, + { + "baseId": "15761", + "text": "ethambutol, isoniazid, pyrazinamide, and rifampin response - Toxicity/ADR, Metabolism/PK" + }, + { + "baseId": "15766|15767", + "text": "Skin/hair/eye pigmentation, variation in, 10" + }, + { + "baseId": "15768|141594|211105|295307|295317|295319|295320|295333|295343|295344|297113|297114|297121|300824|300825|300826|300829|300846|300854|300859|300861|300884|300953|300955|300958|300964|300965|300966|655637|892885|892886|892887|892888|892889|892890|892891|892892|892893|892894|892895|892896|892897|892898|892899|892900|892901|892902|892903", + "text": "Mitochondrial complex III deficiency, nuclear type 4" + }, + { + "baseId": "15769|15770|39899|39900|132428|132435|132447|190335|190336|190337|190338|190339|190342|190343|192274|192275|192279|192280|192286|192287|237472|265442|265908|266137|266288|267181|267182|267817|269224|269279|269680|269681|269682|270787|272749|272750|275478|292156|292158|292165|292167|292173|292178|293592|293599|293600|293608|293609|293614|293615|296899|296900|296901|296905|296906|296907|296911|296912|296914|296920|296922|296923|296926|296933|296935|296943|326618|326633|326640|326644|326646|326647|326648|326651|326652|326653|326660|326662|326663|326664|326672|326674|326675|326676|326680|326681|326685|326686|326689|326691|326692|326699|326702|326705|326706|326710|326711|326712|326713|326721|326723|326724|326726|326727|326728|326731|326733|326734|326735|326739|326741|326742|326744|326745|326746|326750|326752|326753|326754|326758|336430|336431|336438|336440|336441|336442|336444|336447|336449|336452|336454|336455|336456|336458|336461|336463|336465|336468|336470|336471|336473|336476|336479|336481|336483|336486|336497|336502|336503|336507|336508|336509|336515|336516|336520|336521|336522|336526|336527|336529|336532|336533|336534|336539|336541|336545|336547|336548|336549|336551|342666|342667|342671|342674|342675|342678|342682|342684|342691|342697|342708|342709|342712|342714|342716|342717|342719|342726|342730|342740|342744|342745|342748|342751|342755|342761|342766|342771|342772|342773|342774|342784|342785|342787|342792|342795|342796|342798|342800|342801|342802|342806|342807|342808|342817|342818|342826|342827|342830|342833|342834|342835|342839|342844|344274|344276|344279|344281|344284|344287|344288|344289|344296|344300|344301|344309|344310|344316|344320|344321|344332|344333|344337|344338|344340|344345|344347|344349|344350|344352|344353|344356|344361|344362|344367|344372|344376|344377|344386|344389|344390|344392|344393|344397|344398|344400|344401|344407|344408|344417|344421|344422|344425|344428|344430|344431|344433|344437|344441|344442|344444|344446|344454|344458|344460|344465|344469|344471|360310|374694|375580|409764|409765|409770|415516|422116|422120|426187|426188|445637|514067|514068|536168|614431|672124|672125|969119|969120|969121|969122|969123", + "text": "Brittle cornea syndrome 1" + }, + { + "baseId": "15771|790691|790692", + "text": "Alopecia, neurologic defects, and endocrinopathy syndrome" + }, + { + "baseId": "15772|16674", + "text": "Spinocerebellar ataxia type 31" + }, + { + "baseId": "15773|45531|45533|45534|49357|55303|55304|55305|55306|55308|55311|55312|55315|55317|55318|55319|55320|55321|55322|94537|173751|173752|173754|173755|173757|173893|173894|173895|173896|178508|178510|178511|189774|189775|189776|189778|198140|198141|198142|198143|198145|198146|198151|198152|198153|198154|198156|198157|198160|224261|229022|229024|236758|239109|239110|239111|239112|258285|258288|258292|260346|289698|289701|292649|292652|292883|292884|367249|368225|393310|393329|393331|393338|393343|393397|393568|393769|393774|393781|421422|440759|451872|451882|451882|452099|452110|452227|452229|452232|452233|452337|452339|500567|500568|509563|509565|509569|509571|518906|518910|518911|518932|518934|519092|519101|519105|519106|519116|519122|519127|558824|559353|559355|561221|562484|616817|616821|616823|616824|621149|630966|630967|630968|630969|630970|630971|630972|630973|630974|630975|630976|630977|630978|630979|630980|651061|683541|686337|686338|686339|686341|686342|689732|691316|748045|759233|763657|795337|795339|819330|827573|827574|827575|827576|827577|827578|827579|827580|827581|827582|827583|827584|827585|827586|827587|827588|827589|851536|851538|909115|909129|909142|909157|909160|909170|909171|915624|915629|923062|923063|923064|931781|931782|931783|931784|931785|931786|943344|943345|943346|943347|953346|959682", + "text": "Arrhythmogenic right ventricular cardiomyopathy, type 5" + }, + { + "baseId": "15773|21793|21794|21795|21796|28516|31849|31851|31853|31855|31856|31857|31885|39864|44669|44670|44673|44674|44679|44684|44690|45089|45135|45341|45342|45343|45407|45408|45533|45534|49162|52209|52928|52955|52966|52997|53001|53010|53177|53426|53445|53450|53453|53462|53474|53474|53477|53483|53486|53488|53499|53837|54017|54019|54023|54032|54034|54039|54041|54042|54043|54045|54048|54055|54059|54063|54067|54073|54075|54077|54081|54084|54084|54089|54091|54093|54095|54096|54110|54113|54130|54135|54170|54173|54174|54177|54178|54182|54183|54184|54186|54187|54189|54194|54195|54200|54202|54203|54205|54208|54212|54213|54214|54216|54218|54221|54222|54226|54230|54232|54235|54237|54238|54242|54244|54248|54251|54252|54258|54564|54579|54698|55301|55318|55325|55333|55335|55336|55351|55354|55364|55368|55369|55783|55809|56048|56076|56137|56641|57240|78369|78578|78870|94537|99324|106529|136129|140875|140876|165533|165536|165537|165596|171102|171103|171150|171151|171192|171194|172173|172182|172556|172571|173231|173463|173844|173844|173851|173854|173859|173874|173932|173991|173995|173997|174135|174142|174383|175380|175616|175720|175729|175861|176513|176526|176531|176665|176672|176677|176765|178037|178203|178460|178542|178559|178566|178656|178719|178725|178726|178729|178748|186418|186427|186574|187973|188805|189302|189707|189892|189913|189921|189962|193317|196652|197022|197064|197069|197078|197104|197976|198005|198417|198430|198446|198455|206919|215346|215347|215348|215349|215552|215553|224209|224219|224242|224267|224272|224291|224317|224326|224332|224333|224378|224439|224442|224447|224475|224509|224517|224518|224520|224531|224532|224534|224535|224536|224539|224592|228409|229489|229493|230315|230322|230829|230864|243041|245264|247080|247149|247150|258459|260528|270495|279955|279963|279976|280014|280020|280023|280026|280032|280280|280324|280326|280327|280333|280340|280346|280347|280355|280373|280381|280387|280394|280402|281593|281646|281676|281680|281697|281699|281700|281747|281773|281833|281849|281863|281874|288948|288951|288952|288959|288962|288963|288964|288985|288989|289698|289707|289711|289712|289713|289736|289741|292653|292656|292661|292662|292663|292665|292687|292696|292885|292887|292907|292911|292927|292944|292969|292973|292979|292990|301040|301063|301069|301070|304010|304029|304032|304033|304034|304045|308731|308774|308785|308786|308822|308823|308824|316927|316931|316932|316937|316948|316952|316955|321444|324531|324533|324538|324565|330684|330720|330722|330726|330738|330739|330766|330779|331081|331084|331159|331163|331173|331210|332123|332170|337306|338354|338366|338372|339331|339342|339348|339360|341326|341330|341334|341355|341419|341423|341449|341457|341469|341476|341481|341494|341496|346854|346861|346866|346879|346880|346920|346921|346938|346947|346950|346952|346965|348108|348111|348112|348128|348132|348143|348190|348208|348211|348227|348229|348231|348235|353244|353630|353797|359754|361032|362734|368743|391029|404238|444012|447628|447786|449670|455835|456069|459690|466980|468905|481772|487607|488131|488132|488140|488141|488142|496476|496578|496579|496871|497007|497224|497418|497639|511049|511050|511052|511071|511097|511119|514347|514358|514359|551702|609471|610143|610250|635251|635264|639064|654461|654463|654718|655244|672445|672447|679408|679445|679455|679460|679461|679471|679543|679551|679864|679867", + "text": "Arrhythmogenic right ventricular cardiomyopathy" + }, + { + "baseId": "15773|24413|44669|48063|54073|54183|54200|54216|54230|54235|78880|171193|178554|178726|196985|198417|198419|198450|204196|390709|390710|408639|487491|487607|905934", + "text": "Familial isolated arrhythmogenic right ventricular dysplasia" + }, + { + "baseId": "15773|15827|21885|21888|21891|21893|21894|23641|23642|23643|23647|23655|23656|23658|23660|23815|23817|23819|25021|25769|25777|25807|27237|27447|27448|27450|27453|27458|27460|27461|27463|27463|27465|27465|27468|27482|27495|27496|28370|28676|29100|29101|29102|29103|29104|29106|29126|29127|29128|29129|29130|29131|29133|29134|29136|29137|29138|29141|29143|29144|29146|29147|29148|29150|29151|29152|29153|29154|29157|29158|29159|29159|29160|29161|29162|29163|29164|29165|29166|29188|33288|33370|39098|39099|39415|39466|39864|40437|40438|40440|40441|40442|40443|40446|40448|40451|40498|40499|40500|40515|40525|40535|40536|40537|40538|40542|40543|40544|40545|40548|40549|40553|40555|40558|44314|44944|45263|45264|45265|45266|45267|45269|45271|45272|45273|45275|45276|45277|45290|45298|45299|45300|45301|45303|45304|45310|45359|45542|45545|45548|45599|45725|45929|48983|49167|49302|51095|51262|51263|51619|51625|51668|51669|51670|51673|51675|51676|51677|51678|51680|51681|51682|51683|51684|51685|51686|51687|51688|51689|51690|51691|51692|51693|51694|51695|51697|51698|51699|51701|51702|51703|51705|51706|51707|51708|51709|51710|51711|51713|51715|51716|51717|51719|51720|51720|51721|51726|51728|51729|51730|51732|51733|51734|51735|51736|51737|51738|51740|51741|51742|51743|51745|51746|51747|51748|51749|51750|51751|51752|51754|51755|51756|51757|51758|51760|51761|51762|51763|51764|51765|51766|51766|51767|51768|51769|51772|51773|51774|51775|51776|51777|51778|51779|51780|51781|51783|51785|51788|51789|51790|51791|51792|51793|51794|51795|51796|51797|51802|51804|51805|51806|51807|51808|51809|51811|51812|51814|51815|51816|51817|51817|51818|51819|51820|51821|51822|51824|51826|51828|51830|51833|51834|51835|51836|51837|51839|51840|51841|51842|51844|51845|51846|51847|51848|51849|51850|51851|51852|51853|51856|51857|51858|51859|51860|51861|51862|51863|51864|51865|51866|51870|51871|51872|51873|51874|51875|51876|51877|51880|51881|51882|51883|51884|51885|51887|51888|51889|51890|51892|51893|51896|51897|51898|51899|51900|51901|51903|51905|51906|51907|51908|51909|51911|51912|51913|51914|51914|51915|51916|51917|51918|51919|51920|51921|51922|51923|51924|51925|51926|51927|51928|51929|51930|51931|51933|51934|51935|51937|51938|51940|51941|51942|51943|51944|51945|51946|51947|51948|51949|51950|51953|51954|51955|51956|51957|51958|51959|51960|51961|51962|51963|51964|51965|51966|51967|51968|51970|51971|51972|51974|51975|51976|51977|51979|51980|51981|51983|51984|51985|51986|51987|51988|51989|51990|51991|51992|51993|51997|51998|51999|52001|52003|52004|52005|52006|52008|52010|52013|52014|52018|52021|52023|52026|52030|52032|52033|52034|52035|52038|52039|52043|52044|52045|52046|52048|52050|52052|52054|52055|52056|52060|52064|52066|52067|52068|52070|52071|52074|52077|52078|52079|52080|52081|52083|52084|52085|52086|52087|52088|52091|52092|52096|52097|52101|52102|52103|52104|52108|52109|52111|52112|52114|52115|52116|52118|52119|52120|52121|52122|52123|52124|52126|52127|52128|52129|52130|52131|52132|52133|52135|52136|52140|52141|52143|52144|52146|52147|52148|52149|52150|52151|52152|52155|52156|52157|52158|52161|52162|52163|52165|52166|52169|52171|52172|52173|52174|52175|52176|52177|52179|52180|52181|52182|52183|52184|52185|52189|52190|52190|52191|52193|52194|52197|52198|52199|52201|52202|52204|52205|52206|52207|52208|52209|52211|52212|52213|52214|52215|52217|52218|52219|52222|52224|52225|52226|52229|52233|52234|52235|52236|52237|52239|52241|52242|52243|52244|52245|52246|52252|52254|52256|52260|52262|52263|52265|52266|52268|52269|52270|52271|52272|52273|52276|52277|52279|52283|52285|52286|52287|52291|52294|52298|52299|52300|52530|52531|52532|52533|52534|52535|52536|52537|52540|52541|52542|52543|52545|52546|52549|52550|52551|52552|52553|52554|52556|52558|52559|52560|52561|52563|52565|52566|52568|52569|52573|52575|52577|52579|52580|52584|52586|52589|52590|52592|52594|52595|52602|52604|52607|52608|52611|52613|52614|52618|52619|52629|52631|52634|52645|52649|52650|52651|52781|52782|52786|52795|52796|52797|52798|52800|52801|52805|52817|52821|52825|52826|52831|52838|52842|52843|52845|52847|52848|53068|53073|53075|53080|53084|53097|53102|53103|53119|53124|53157|53160|53163|53179|53484|53514|53516|53582|53583|53585|53586|53588|53589|53593|53599|53600|53609|53610|53612|53659|53663|53666|53861|53872|53873|53878|53951|54096|54130|54248|54251|54345|54356|54358|54520|54722|54860|54862|54866|54869|54882|54904|54944|54945|54945|54946|54947|54949|54952|54953|55007|55009|55338|55790|55798|55878|55880|55927|56006|56032|56066|56099|56114|56152|56160|56180|56330|56342|56353|56406|56430|56440|56555|56641|56675|56684|56762|56784|56785|56790|56803|56826|56917|56956|56978|57007|57078|57227|57461|75578|77971|78400|78502|78515|89285|90404|98214|98596|98597|99306|99423|100353|101850|102004|102168|102208|134503|135114|136049|136674|136686|136725|139990|140876|141245|141305|141306|141307|141308|141309|141310|141311|141312|141313|141314|141388|141390|141492|141534|142020|142021|142022|142029|142077|142078|142079|142081|142083|142084|142086|142089|142090|142091|142092|142094|142095|142097|142098|142371|142372|142374|142375|142376|142381|152931|152934|165552|165553|165560|165565|165566|165570|165574|165575|165592|167406|171084|171133|171134|171135|171136|171137|171139|171140|171141|171142|171143|171144|171145|171146|171147|171157|171158|171159|171160|171162|171163|171164|171165|171245|172177|172354|172356|172362|172363|172365|172391|172435|172495|172499|172501|172501|172786|172879|172926|172928|173031|173313|173487|173800|173939|173940|173949|173997|174183|174347|174603|174725|174728|174731|174732|174733|174735|174736|174737|174738|174740|174741|174742|174743|174744|174745|174746|174747|174748|174749|174750|174751|174753|174754|174755|174756|174757|174758|174760|174763|174764|174766|174768|174770|174772|174775|174776|174778|174779|174779|174780|174782|174783|174784|174785|174786|174787|174788|174789|174791|174793|174794|174796|174797|174798|174799|174800|174916|174916|175019|175138|175138|175139|175140|175141|175142|175143|175144|175145|175146|175147|175148|175149|175150|175151|175152|175153|175154|175156|175157|175158|175160|175161|175162|175163|175164|175165|175168|175171|175173|175174|175175|175177|175179|175182|175183|175184|175185|175188|175189|175190|175191|175192|175194|175195|175196|175197|175198|175199|175201|175202|175203|175205|175207|175208|175209|175212|175410|175414|175440|175441|175442|175443|175446|175451|175452|175453|175454|175456|175458|175458|175459|175460|175462|175467|175468|175470|175472|175473|175474|175477|175479|175480|175481|175482|175484|175485|175486|175488|175490|175491|175492|175494|175496|175497|175498|175501|175502|175503|175506|175507|175508|175510|175511|175513|175516|175517|175531|175563|175568|175577|175583|175584|175586|175587|175588|175590|175593|175594|175598|175599|175600|175600|175606|175607|175610|175611|175612|175614|175615|175616|175617|175619|175620|175621|175624|175624|175629|175630|175631|175632|175634|175636|175638|175641|175643|175645|175645|175646|175647|175648|175652|175656|175657|175658|175694|175896|175955|175993|175994|175998|175999|176016|176067|176068|176069|176070|176073|176074|176076|176135|176137|176139|176140|176207|176208|176208|176209|176211|176212|176213|176214|176214|176218|176219|176318|176320|176340|176343|176532|178115|178124|178128|178182|178184|178194|178207|178284|178448|178638|178642|178672|178675|178679|178681|178725|178726|178728|178863|178913|178927|178937|178948|179056|179060|179064|179066|179071|179171|179172|179174|179175|179179|179180|179184|179185|179187|179190|179192|179194|179196|179198|179200|179207|179208|179209|179211|179212|179213|179215|179216|179220|179223|179228|179229|179230|179232|179233|179234|179238|179240|179241|179242|179247|179252|179255|179256|179258|179259|179263|179266|179268|179269|179275|179279|179280|179283|179286|179289|179290|179291|179292|179293|179294|179297|179299|179302|179305|179306|179308|179309|179310|179311|179315|179320|179324|179330|179331|179337|179338|179341|179344|179348|179351|179352|179353|179356|179362|179363|179365|179368|179369|179373|179377|179378|179379|179380|179381|179383|179386|179387|179389|179392|179395|179397|179400|179401|179406|179407|179409|179435|179464|179465|179466|179467|179468|179470|179471|179472|179473|179474|179476|179477|179478|179482|179483|179485|179486|179488|179489|179490|179492|179493|179494|179495|179496|179498|179500|179501|179502|179503|179505|179508|179512|179513|179514|179517|179518|179519|179520|179522|179523|179524|179525|179535|179536|179538|179539|179540|179545|179547|179548|179552|179553|179554|179561|179563|179565|179572|179575|179577|179579|179583|179584|179588|179591|179592|179593|179597|179598|179600|179606|179607|179611|179613|179617|179619|179623|179626|179628|179630|179632|179636|179639|179640|179641|179645|179648|179649|179651|179652|179653|179658|179659|179660|179662|179663|179665|179667|179669|179671|179672|179676|179680|179681|179682|179689|179692|179693|179694|179696|179697|179700|179706|179709|179710|179712|179714|179721|179745|179749|179760|179771|179773|179778|179780|179833|179836|179850|179851|179852|179853|179855|179856|179858|179861|186019|186188|186189|186190|186288|186345|186351|186352|186355|186359|186363|186365|186369|186372|186386|186390|186396|186400|186402|186412|186415|186460|186465|186473|186477|186479|186481|186484|186491|186494|186495|186498|186513|186532|186572|186577|187659|188231|188232|188283|188642|189264|189309|189319|189341|189591|189745|189784|189882|189889|189890|189893|189948|189951|189952|189953|189962|190002|190006|190017|190105|191628|192881|193011|193221|194483|196555|196586|198161|198163|198164|198165|198166|198169|198170|198170|198180|198265|198308|198471|198526|198529|198532|198533|198534|198535|198536|198537|198538|198692|198791|198838|198969|199000|199203|199524|199892|200068|209638|212332|212928|212929|213103|213104|213105|213106|213465|213470|213471|214115|214116|214122|214123|214133|214490|214491|214493|214496|217339|221419|222010|222142|222143|222144|222145|222146|222147|222366|222367|222430|222748|222750|222854|224163|224164|224213|224282|224405|224429|224459|224460|224461|224465|224466|224471|224526|224533|224561|226979|228646|229096|229097|229098|229100|229101|229157|229164|229166|229168|229169|229955|230200|230202|230206|230207|230209|230210|230211|230212|230214|230215|230216|230217|230218|230487|230490|230492|230493|230494|230495|230497|230498|230500|230508|230510|230511|230512|230513|230515|230805|230807|230808|230809|230811|230813|230815|230816|230820|230822|230823|230824|230832|230834|230835|230837|230839|230840|230843|230845|230846|230847|230848|230849|230850|230851|230852|230855|230856|230857|230858|230859|230874|230875|230886|230889|230891|230893|230897|230899|230901|230902|230904|231098|231101|231237|231913|231915|236787|236797|236799|236800|236801|236803|236804|236806|236811|238151|239237|239297|239327|239353|239354|239355|239356|241141|241143|241144|241146|241147|241148|241150|241151|241152|241815|241817|241818|241819|241820|241821|241822|241823|241824|241825|241826|241827|241828|242090|242091|242115|243036|243037|243038|243039|243045|243046|243047|243048|243049|243050|243051|243052|243053|243054|243055|243056|243057|243058|243548|243549|243550|243551|243552|243579|243580|248487|248633|248634|252605|254928|254930|256530|257238|257239|257242|257243|257246|257247|257248|257251|257252|257253|258325|258604|258698|258703|258704|258705|258706|258708|258786|258792|258795|258796|258800|258801|258804|258805|258806|258808|258809|258810|258811|259040|259051|259061|259064|259066|259067|259071|259076|259909|260053|260077|265399|265469|266316|267280|278453|278454|278568|279761|279762|280068|280071|280080|280081|280083|281230|281366|281371|281382|281553|281561|281562|281853|281856|283203|283251|283295|283301|283302|283303|283427|283925|283957|284034|284037|284061|284064|285684|285724|285913|285986|286010|286102|286159|286333|291660|292150|296388|296887|296890|296896|301280|301294|301302|310229|313530|313531|314279|314281|314284|314287|314289|314290|319738|319747|320355|320364|320370|320374|320376|320380|320886|320887|320892|320893|322278|322281|322290|322292|322305|322315|322319|322320|322321|325907|326925|326939|326941|326942|326951|327968|327969|327974|327975|328966|328973|328975|328987|328990|328992|328994|329388|329400|331578|331581|331583|331587|331597|331610|331619|331628|331630|331646|332637|332639|334391|334413|335616|335619|335627|335628|335630|335631|335647|335648|335649|337435|337446|337452|337463|337484|338527|338558|338581|338582|338583|338588|338608|338610|338614|338623|338700|338709|338710|338713|338717|338721|338722|338724|338727|338736|338740|338742|338749|338751|339585|340274|340279|340282|340299|340308|340311|340314|340316|340327|340328|340329|340336|340337|340978|344273|348302|348304|348317|348321|348323|348325|348331|348332|348334|348335|348337|348341|348348|348349|348351|348353|348354|349397|349798|350406|350409|351933|351976|351981|351982|351990|351991|351992|351993|351994|351995|351996|351997|352000|352001|352003|352005|352018|352019|352021|352717|352718|352719|352720|352721|352722|352723|352724|353178|353295|353322|353523|353524|353525|353584|359533|360009|360028|360139|360187|360468|360845|360890|360959|360960|367264|367589|367623|367628|369090|369099|369104|371435|371467|372197|372203|372215|372219|372399|372456|373024|373034|373042|373058|373069|373755|373762|373772|373779|374103|374107|374122|374128|374129|374130|374132|374146|374166|374232|374648|375981|376000|376002|376003|376006|377027|377030|377850|378027|378033|378035|378238|379666|389925|390042|390169|390184|390322|392253|393590|393831|393836|393875|393912|393917|394040|394337|396488|397581|398122|398200|398203|398206|398212|398213|398216|398219|398254|398256|398259|398263|398268|398269|398273|398277|398278|398280|398307|398309|398312|398632|398638|398642|398644|398651|398654|398656|398700|398706|398720|398720|398724|398727|398732|398736|398754|398757|399597|399608|399609|399617|399618|399620|399622|399624|399626|399636|399638|399749|399755|399757|399760|399762|399764|399766|399776|399784|400128|400133|400136|400142|400151|400156|400158|400164|400167|400170|400173|400178|400183|400185|400199|400286|400317|400323|400327|400336|400337|400346|400347|400349|400350|400355|400430|400432|401068|402641|402652|402657|402689|402703|402705|402706|402707|402709|402712|402714|402724|402725|402726|402728|402735|402737|402738|402745|402753|402755|402760|402794|402796|402800|403132|403174|403176|403177|403214|403217|403221|403230|403242|403246|403247|403259|403270|403279|403281|403299|403300|403623|403624|403636|403639|404083|404109|404158|404170|404619|404802|408360|408362|408364|408375|408377|408378|408379|409092|409098|414943|414961|415274|415275|415388|415391|419262|419263|419264|419267|419268|419269|419270|419271|419272|419273|419276|419278|419280|419282|419284|419287|419288|419290|419291|419292|419293|419294|419297|421858|421859|421985|425926|426059|426063|426337|437891|443608|444817|444818|444822|444825|445199|445201|445202|445204|445205|445206|445211|445213|445214|446238|446244|447836|452438|452439|452446|452743|452919|452931|452942|453112|453113|453181|453257|453334|453368|453484|453486|453865|456644|460462|460464|461045|461139|461142|461150|461163|461168|461335|461342|461343|461349|461350|461353|461358|461361|461632|461634|461639|461652|461660|461668|461673|461685|461688|461691|461693|461957|461960|461976|461977|461980|461983|461984|461992|461996|462000|462001|462003|462017|463134|463154|463160|463162|463164|463165|463179|463184|463185|463191|463193|463195|463603|463640|463644|463648|463651|463652|463660|463667|463668|463670|463674|463676|463679|463690|463695|463701|463944|463951|463962|463977|463978|463980|463983|463986|463988|463992|463996|464003|464006|464023|464138|464141|464143|464145|464151|464152|464155|464161|464164|464166|464167|464170|464173|464180|464185|464403|464406|464408|465018|465207|465209|465211|465274|465277|465282|467947|467949|467971|467976|468815|468819|468828|468832|468871|468873|468875|468876|468917|468918|468921|468923|469241|469254|469259|469262|469269|469276|469278|469279|469280|469284|469287|469288|469293|469316|469317|469460|469638|469646|469664|469669|469695|469700|469707|469709|469710|469712|469743|470235|470247|470249|470253|470381|470385|470388|470891|470900|471078|471292|471294|471296|471387|471390|480713|481130|485937|485939|487487|487776|492980|494005|496552|497070|497073|497292|497335|497452|497496|497568|497572|497617|497620|497685|497749|497751|500285|503823|504249|504491|504500|504757|505005|505006|505012|505014|505425|505430|507577|507750|508181|509630|509680|509683|510287|510288|510289|510293|510295|510301|510302|510303|510307|510308|510312|510317|510318|510322|510323|510329|510462|510463|510468|510478|510481|510483|510485|510486|510491|510654|510813|510827|510832|510834|510889|511117|514040|514354|514357|514360|515677|517312|519501|519847|519850|519874|519940|520101|522254|525481|525602|525997|526000|526229|526230|526232|526234|526236|526238|526240|526243|526245|526248|526249|526254|526256|526263|526270|526275|526442|526443|526448|526450|526453|526455|526457|526460|526462|526596|526725|526731|526732|526736|526739|526742|526744|526746|526748|526752|526754|528029|528031|528041|528043|528048|528058|528059|528061|528064|528069|528072|528077|528079|528080|528084|528086|528087|528089|528093|528094|528096|528098|528100|528101|528103|528104|528107|528108|528110|528112|528116|528118|528119|528124|528125|528128|528134|528417|528424|528431|528436|528444|528447|528450|528453|528460|528463|528473|528478|528479|528483|528543|528544|528548|528550|528554|528557|528561|528564|528566|528571|528575|528577|528580|528582|528593|528599|528601|528604|528611|528951|528958|528959|529051|529052|529058|529060|529068|529076|529393|529555|532187|532189|532197|532199|532214|532216|532217|532236|532252|532253|532265|532267|532271|532273|532279|532280|532284|532311|532312|532314|532317|532344|532349|532353|532354|532358|532361|532363|532375|532376|532592|532595|532607|532612|532615|532616|532645|532654|532658|532663|532718|533391|533394|533398|533399|533401|533402|533417|533419|533422|533429|533435|533457|533461|533463|533470|533516|533518|533562|533566|533607|533611|533612|534099|534104|534108|534112|536814|551729|551730|551733|551781|558403|559006|559521|559543|559579|559647|559806|559808|560550|561054|561600|561602|562972|563338|563641|564062|564673|564678|564685|564687|564691|564693|564695|564697|564707|564713|564714|564717|564721|564723|565031|565806|565816|565818|565830|565835|565837|565841|565849|566354|566355|566359|566361|566363|566366|566368|566370|566372|566382|566383|566389|566395|566398|566399|566401|567284|567291|567292|567296|567298|567299|567306|567307|567312|567318|567320|567767|567885|567886|567887|567892|567906|567909|567918|567922|567927|567931|567932|567938|567946|567950|567958|567968|567969|567972|567977|568097|568789|568791|568792|568799|568807|568812|568813|568815|568816|568821|568824|568826|568829|568837|568838|568841|568842|568845|569020|569027|569514|569540|569611|570074|570075|570077|570101|570125|570130|570134|570138|570140|570146|570149|570677|570678|570683|570684|570688|570689|570690|570692|570694|570699|571092|571094|571103|571236|571238|571859|571876|571919|571921|571923|572577|572581|572582|572593|572611|572614|572623|572628|572630|572761|572765|572767|572768|572769|572771|572772|572807|572901|573414|573418|573456|573457|573503|573505|573512|573514|573519|574717|574725|574727|574742|574744|574788|575059|575060|575103|575104|575105|575106|575466|609787|610480|610646|610647|610648|610649|610650|610651|610652|610653|610654|610655|610656|610657|610658|610659|610660|610661|610662|610663|610664|610665|610666|610667|610668|610669|610670|610671|610672|610673|610674|610675|610676|610677|610678|610679|610680|610690|611345|611747|612983|614899|615012|615026|615063|615075|615076|615085|615091|616929|617872|617879|617880|617888|618219|618225|619010|619427|619463|620403|623073|624268|624437|624442|624665|624680|631458|631459|631460|631461|631908|631909|632117|632118|632119|632120|632121|632122|632123|632124|640091|640092|640093|640094|640095|640096|640097|640098|640099|640100|640101|640102|640103|640104|640105|640106|640107|640108|640109|640110|640111|640112|640113|640115|640116|640117|640118|640119|640120|640121|640122|640123|640124|640125|640126|640127|640128|640129|642256|642257|642258|642259|642260|642261|642262|642263|642264|642265|642266|642267|642268|642269|642270|642271|642272|642273|642274|642275|642276|642277|642278|642279|642280|642281|642282|642283|642284|642285|642286|642287|642288|642289|642290|642291|642292|642293|642294|642295|642296|642297|642298|642299|642300|642301|642302|642303|642304|642305|642306|642307|642308|642309|642310|642311|642312|642313|642314|642315|642316|642317|642318|642319|642320|642321|642322|642323|643448|643449|643450|643451|643452|643453|643454|643455|645829|647125|647126|647127|647128|647129|647130|647131|647132|647133|647149|647150|647151|647152|647153|647154|647155|647156|647158|647159|647160|647162|647163|647183|647192|647193|647194|647195|647196|647197|647198|647199|647200|647201|647202|647203|647205|647206|648496|648497|648498|648499|648500|648501|648690|648691|648692|648693|648694|648695|648696|648697|648698|651001|651100|651107|651137|651167|652193|652196|652199|652330|652334|652339|652431|652463|652465|652598|652600|652756|652915|652925|652946|652968|653087|653398|653550|653638|654175|654683|654684|654783|654843|656059|656061|672032|672423|672436|677250|677272|679367|679370|679380|679385|679413|679416|679427|679429|679433|679440|679451|679452|679456|679458|679466|679469|679470|679475|679478|679481|679548|679549|679856|679857|679872|681801|683629|684259|684470|684472|684750|684754|684882|685398|685443|686430|686515|687780|687781|687783|687786|688260|688262|688265|688266|688267|688269|688270|688462|688892|688894|688898|688911|688912|689202|690079|690188|690229|690230|691547|693046|693466|693467|693470|693707|694262|694264|694265|694550|695229|695519|695520|695655|701784|720873|738008|748848|756420|768472|768473|769740|769742|769744|769748|772910|773108|775684|775822|776596|784017|784691|784692|784693|784694|785893|785894|789731|789732|789733|789734|789735|791142|792711|798985|798986|798987|798988|798989|798990|798992|798994|798995|798996|798997|798998|798999|799000|799001|799002|799003|799004|799005|799006|799008|799009|799010|799011|799012|799014|799015|799017|799018|799019|799645|819467|819468|820375|820376|820377|820378|820379|820610|820611|820612|820613|820614|820615|820617|820724|820725|821183|821184|821198|821293|821294|821295|821296|821326|828189|828189|828190|828716|828717|828718|828719|828720|828991|828992|828993|828994|828995|828996|828997|828998|828999|838487|838488|838489|838490|838491|838492|838493|838494|838495|838496|838497|838498|838499|838500|838501|838502|838503|838504|838505|838506|838507|838508|838509|838510|838511|838512|838513|838514|838515|838516|838517|838518|838519|838520|838521|838522|838523|838524|838525|838526|838527|838528|838529|838530|838531|838532|838533|838534|838535|838536|838537|838538|838539|838540|838541|841243|841244|841245|841246|841247|841248|841249|841250|841251|841252|841253|841254|841255|841256|841257|841258|841259|841260|841261|841262|841263|841264|841265|841266|841267|841268|841269|841270|841271|841272|841273|841274|841275|841276|841277|841278|841279|841280|841281|841282|841283|841284|841285|841286|841287|841288|841289|841290|841291|841292|841293|841294|841295|841296|841297|841298|841299|841300|841301|841302|841303|841304|841305|841306|841307|841308|841309|841310|841311|841312|841313|841314|841315|841316|841317|841318|841319|841320|841321|841322|841323|841324|841325|841326|841327|841328|841329|841330|841331|842571|842572|842573|842574|842575|846737|846738|846739|846740|846741|846742|846743|846744|846764|846765|846766|846767|846768|846769|846770|846771|846772|846773|846774|846775|846776|846777|846778|846779|846805|846814|846815|846816|846817|846818|846819|846821|846822|846823|846824|846825|848082|848083|848084|848085|848086|848087|848401|848402|848403|848404|848405|848406|848407|848408|848409|848410|848411|848412|850962|851433|851435|851437|851547|851549|851598|851769|851844|851880|851989|851991|851993|852353|852354|852614|852729|852731|852735|852992|858245|858247|858249|858251|858253|858257|858258|858259|858262|858263|858264|858265|858266|858268|858474|868657|911710|911725|911757|911808|911831|911853|911885|912397|912410|912458|912487|912544|912564|914892|918402|923219|923220|923221|923222|923223|923479|926256|926257|926258|926259|926260|926261|926262|926996|926997|926998|926999|927000|927001|927002|927003|927004|927005|927006|927007|927008|927388|927389|927390|928673|928674|928675|928680|928681|928682|928692|928693|928694|928695|928696|928697|929117|929118|929191|929192|929193|929194|929195|931964|931965|932134|932135|932260|932261|935577|935578|935579|935580|935581|935582|935583|935584|935585|935586|935587|935588|935589|935590|936569|936570|936571|936572|936573|936574|936575|936576|936577|936578|936579|936580|936581|936582|936583|936584|936585|936586|936587|936588|937000|937001|937002|937003|938395|938396|938397|938398|938403|938404|938405|938406|938407|938408|938409|938420|938421|938423|938424|938425|938856|938857|938858|938859|938980|938981|938982|938983|938984|938985|940215|940216|940217|940218|940219|940999|941058|941059|941248|943766|943767|943768|943913|943914|943915|943916|943917|943918|947484|947485|947486|947487|947488|947489|947490|947491|947492|947493|947494|947495|948496|948497|948498|948499|948500|948501|948502|948503|948504|948505|948506|948507|948508|948509|948510|948511|948512|948513|948514|948515|948516|948517|948518|948519|948520|948521|948522|948523|948524|948525|948954|948955|948956|950482|950483|950484|950485|950486|950493|950494|950495|950504|950505|950506|950507|950508|950509|950510|950511|950512|950513|950925|950926|950927|950928|951096|951097|951098|951099|951100|951101|953496|953497|953498|953499|953734|953735|953736|956516|956517|956518|956519|956520|956521|956522|956523|956524|957187|957188|957189|957190|957191|957192|957193|957194|957195|957464|957465|958452|958459|959991|960086|960263|960534|960752|960802|960824|960927|960928|963223|964259|965298|965306|965314|971587|974521|976826|980751", + "text": "Hypertrophic cardiomyopathy" + }, + { + "baseId": "15774|15775", + "text": "Recombination rate quantitative trait locus 1" + }, + { + "baseId": "15776|15777|15778|15779|252155", + "text": "Iodotyrosine deiodination defect" + }, + { + "baseId": "15780|15782|15783|15784|15786|15787|70942|70943|70948|70951|98767|99436|131759|131760|131761|131766|131766|131768|131769|131772|131779|131780|177091|177556|177557|177559|191878|191878|191879|191983|195612|195613|207109|207110|207110|207111|207112|207113|212357|214170|214171|214172|214172|214173|214174|214175|214176|214177|214177|214178|214179|214180|214181|214182|214183|214184|214185|214186|214187|214188|214189|214190|214191|214192|214193|214194|214195|214196|239335|239335|239336|239340|239341|239342|251350|251352|251361|251362|251363|266978|267031|267183|269743|272794|272797|273009|274669|275428|292529|292604|292624|292625|292627|292629|292631|293976|293984|293991|294001|294003|294005|294011|294012|297363|297364|297376|297381|297387|297389|297392|297399|297400|297401|297411|297424|297439|297441|297442|297443|297444|297445|297446|297454|297458|297459|367617|367949|406406|406411|406413|421479|421481|421481|489382|489382|490151|493783|500929|513950|537655|559621|578428|586790|588876|588934|622340|622342|625795|632058|788767|788889|828900|828906|858589|890278|890279|890317|890318|890319|890320|890321|890322|890323|890324|890325|890326|890327|890328|890329|890330|891756|891757|891758|962154", + "text": "Joubert syndrome 9" + }, + { + "baseId": "15781|15786|16372|16384|40033|70936|70937|70938|70939|70940|70941|70942|70943|70944|70945|70946|70947|70948|70949|70951|70953|70954|70955|70956|99436|131759|131760|131761|131766|131766|131768|131769|131772|131779|131780|177091|177557|177559|191878|191878|191879|191983|191984|195612|195613|207109|207110|207111|207112|212357|214172|214177|214182|214185|214187|239335|239335|239336|239340|239341|239342|251350|251352|251361|251362|251363|266978|267031|267183|269743|272794|272797|273009|274669|275428|292529|292604|292624|292625|292627|292629|292631|293976|293984|293991|294001|294003|294005|294011|294012|297363|297364|297376|297381|297387|297389|297392|297399|297400|297401|297411|297424|297439|297441|297442|297443|297444|297445|297446|297454|297458|297459|367617|367949|406406|406411|406413|421479|421481|421481|489382|489382|490151|493783|500929|578428|586790|588876|588934|622340|622342|632058|678048|678049|828900|890278|890279|890317|890318|890319|890320|890321|890322|890323|890324|890325|890326|890327|890328|890329|890330|891756|891757|891758|906239|906281|962154|970207|970208|970209|970229|970230|970232", + "text": "Meckel syndrome type 6" + }, + { + "baseId": "15783|15785|15786|15787", + "text": "COACH SYNDROME 2" + }, + { + "baseId": "15786|39799|39800|39891", + "text": "Joubert syndrome 9/15, digenic" + }, + { + "baseId": "15786|16108|16109|16111|16113|16115|16117|16372|16372|16376|16378|16381|16415|16416|16417|16422|16430|16431|16431|16432|40059|70940|70942|70951|70955|70955|71256|71263|71368|71372|71373|71377|71378|71379|71401|71401|71404|71406|71422|75583|90149|91061|99436|99438|99439|101414|101586|101587|101588|101589|101590|102062|102064|102064|102066|102422|102423|105736|105739|105739|105741|105746|105748|105749|105750|105753|106469|106470|106471|106546|106738|131759|131760|131761|131766|131766|131768|131769|131772|131774|131774|131776|131777|131779|131780|131781|131783|131784|131787|131787|131789|131790|131792|131794|131801|131803|131804|131806|131807|131809|131811|131812|131815|131817|131818|131819|131820|131821|131823|131824|131826|131827|131831|131833|131834|131836|131838|131839|140430|140431|140432|140433|152874|166167|168893|168894|168897|177011|177012|177013|177143|177274|177275|177286|177406|177407|177418|177556|177557|177558|177559|177569|177571|177572|177574|177624|178021|178098|181164|181405|181414|181425|186227|186262|186263|188889|188890|190671|190783|190880|191063|191068|191182|191183|191581|191704|191705|191726|191879|191930|191933|191981|191982|191983|191984|192033|192056|192150|192997|193138|193150|193638|193874|193875|193954|193955|193956|194205|194245|194246|194340|194464|194735|194758|195134|195422|195423|195425|195426|195612|195613|195754|195923|195923|205194|207109|207113|207935|207940|207998|208003|208284|208285|208288|208403|212357|212651|212652|212653|212654|212991|212992|213013|213014|213016|214172|214177|214179|214182|214183|214187|214189|214193|214194|214194|214196|214280|214322|214325|214326|214327|214328|214329|214330|214335|214336|214337|214338|214340|214357|214364|215459|215540|221800|221801|222203|222267|222267|222490|222686|222687|237090|237107|237317|237473|238059|238061|239335|239339|239340|239341|239342|240433|241226|241237|241249|241579|241580|241581|241582|242442|242615|242824|242825|243343|243906|247084|250938|251352|251360|253195|253203|253207|253212|254410|254445|254734|254740|254742|254760|254761|254762|254763|255806|255811|255814|255817|256098|256100|256102|256103|256285|256287|256291|257135|257137|257138|260117|260902|260903|260910|260915|260916|260925|260928|264538|264717|265351|265360|265487|265781|265876|266004|266616|266978|267031|267183|267823|268040|268059|268140|268166|268882|269093|269753|269778|270185|270311|270778|270862|271121|271215|271427|271440|271483|271597|271830|272079|272162|272794|272796|272797|272946|273009|273848|274283|274669|275342|275383|275392|275428|288796|288814|288821|289582|292582|292583|292584|292586|292623|292626|292784|292789|292796|294001|294003|294005|294012|297390|297399|297424|297442|306008|314370|315372|315373|315532|316255|316266|316275|318585|318587|318602|318604|318607|323293|323618|323621|323625|325641|325647|325653|325654|326794|326805|326807|326830|326833|326850|326864|326876|329161|329378|329753|329769|331024|332974|332978|332983|332990|332993|332994|334647|334649|334650|334653|334658|335303|335321|335322|341790|341797|341803|343285|343286|343287|343293|343298|345182|346576|346578|346583|346584|358457|359929|360055|360113|361484|363660|364169|367958|372581|372585|373261|373475|373481|375447|375452|375454|389204|393999|394140|396651|396747|398862|399209|401190|401253|401960|401967|401969|401974|402124|406406|406408|406410|406411|406417|408757|408759|408763|408764|408765|408768|408769|408770|408772|409650|409651|415498|421479|426028|429461|429462|429950|429991|431772|433122|438996|445093|445097|445099|445832|453023|453312|453406|453407|453805|453806|458103|458716|461608|461841|462217|462224|462475|462506|462513|462515|462516|462765|462769|463244|463251|463260|463263|463267|463268|463350|463355|463358|463360|466388|466493|466500|466502|467057|467368|468248|468480|468823|469855|470926|488833|489058|489186|489341|489361|489372|489382|489383|489462|490151|490265|490297|490946|491255|491410|491604|492196|492651|492965|493445|494220|496932|500929|504099|504663|504668|513323|514649|514650|520063|524078|524343|526672|526917|526957|527372|527391|527394|527399|527405|527407|527409|527410|527670|527673|527675|527917|527929|527931|527940|527942|530034|530041|530184|530188|530351|530360|530364|530564|530565|531270|531444|531533|536196|536908|536949|536950|548273|548558|548579|559619|559621|559782|561966|562548|563539|563542|563543|563546|565045|565737|565744|566400|567079|567083|567084|568182|568185|568186|568259|568264|570303|571310|571722|571728|572093|572096|572100|574534|582385|582740|582794|583685|583686|584729|584731|584821|585568|585858|586068|586349|587041|587551|588033|588426|588824|588934|588955|609863|620156|622340|622900|623705|623936|632054|632055|632056|632057|632058|632059|632060|637487|637488|637489|637490|637491|637492|637493|640633|641414|641415|641416|641417|641418|641419|641420|641421|641422|641423|641424|641425|641426|641427|641428|641429|641430|641431|641432|641433|641434|641435|644748|644749|644750|644751|644752|644753|644754|644755|644756|644757|645399|646234|646235|646236|646237|651165|651183|652345|652351|652570|653030|656190|667259|672018|672202|684284|684285|684313|684354|684355|684356|684357|684358|684359|684600|684601|684602|684603|684604|684605|684664|684665|684691|684692|684693|684821|685245|685384|685385|685386|685419|686506|686507|687916|687918|688057|688058|688059|688061|688062|688063|688064|688065|688066|688067|688068|688069|688070|688072|688073|688075|688607|688608|688609|688611|688612|688613|688614|688615|688795|688796|688797|688798|688799|688800|688801|688802|689064|690055|690056|690142|690143|690144|690180|690181|691524|693293|693294|693295|693296|693297|693299|693893|693894|693895|694136|695585|695699|695761|725297|725299|738885|744923|753623|753624|753625|755982|760254|769332|770950|770952|770953|776130|784272|784273|784484|785298|785301|785651|791285|795546|796876|797341|818725|819429|819457|820443|820449|820450|820451|820526|820527|820836|820837|820838|821109|828898|828899|828900|828901|828902|828903|828904|828905|828906|828907|828908|828909|828910|828911|835149|835150|835151|835152|839310|839311|839312|839313|840342|840343|840344|840345|840346|840347|840348|840349|840350|840351|840352|840353|840354|840355|840356|840357|840358|840359|840360|840361|840362|840363|840364|840365|840366|840367|840368|840369|840370|840371|840372|840373|840374|840375|840376|840377|840378|840379|840380|840381|840382|840383|840384|840385|840386|840387|840388|840389|840390|840391|840392|840393|840394|840395|840396|840397|840398|840399|840400|843965|843966|843967|843968|843969|843970|843971|843972|843973|843974|843975|843976|843977|843978|843979|843980|843981|843982|843983|843984|843985|843986|843987|843988|843989|843990|843991|843992|843993|843994|843995|843996|843997|843998|845654|845655|845656|845657|845658|845659|845660|845661|845662|845663|845664|845665|845666|845667|845668|847725|850970|851114|851493|851523|851525|851594|851959|852229|852501|852502|852506|852510|852654|852666|852702|852821|852823|852892|856758|856762|856766|856767|870502|870505|870508|870516|870517|875432|875437|877956|880551|890323|890328|906255|906258|906260|906276|919663|919664|920320|923448|923449|923450|926464|926752|926753|926754|926755|926756|926757|926758|926759|926760|926761|926762|926763|926764|926765|927849|927850|927851|927852|927853|927854|927855|927856|928087|928088|928386|928387|928388|928389|928390|932220|932221|932222|932223|932224|932225|932226|932227|932228|932229|932230|932231|932232|934444|934445|934446|934447|935937|936284|936285|936286|936287|936288|936289|936290|936291|936292|936293|936294|936295|936296|936297|936298|936299|937486|937487|937488|937489|937490|937491|937492|938036|938037|938038|938039|938040|938041|938042|938043|939960|940275|940360|941022|941023|943859|943860|943861|943862|943863|943864|943865|943866|943867|943868|943869|943870|943871|943872|943873|943874|943875|943876|943877|948179|948180|948181|948182|948183|948184|948185|948186|948187|948188|948189|948190|948191|948192|948193|948194|948195|948196|948197|948198|948199|948200|948201|948202|948203|948204|948205|948206|948207|948208|948209|948210|948211|948212|948213|948214|948215|948216|949431|949432|949433|949434|949435|949436|949437|949737|950046|950047|950048|950049|953695|953696|953697|953698|953699|953700|953701|953702|953703|953704|953705|953706|956961|956962|956963|956964|956965|956966|956967|956968|956969|956970|956971|956972|956973|956974|956975|956976|956977|956978|956979|956980|956981|956982|956983|956984|956985|956986|956987|957788|957789|957790|957791|957792|957793|957794|957795|957796|957797|957798|957799|957800|957801|957802|957803|957804|957805|957806|958008|958196|958197|958198|958199|958200|958201|958202|959714|960061|960062|960063|960064|960529|960530|960793|960890", + "text": "Meckel-Gruber syndrome" + }, + { + "baseId": "15786|16113|16115|16410|16414|16417|16418|16419|16420|16422|131766|190880|191878|207110|214172|214177|214280|214282|227327|237317|239335|239342|272794|272797|273848|343287|367617|401969|406411|409651|421481|425214|489341|489382|513544|530184|578428|622340|622342|962154", + "text": "Joubert syndrome with hepatic defect" + }, + { + "baseId": "15788|15789|15790|15791|39889|39890|90485|90486|136222|136223|136224|136225|136226|136227|136228|136229|186191|186193|186194|186196|191066|205775|208123|213114|213117|213118|213119|222376|222378|222379|222381|222384|226940|241860|241861|241862|241863|241864|241866|241867|272829|273690|273692|321029|321033|321038|321039|321041|321043|321049|321051|321054|321055|321056|321060|321062|321063|321068|321069|321073|321075|330125|330128|330133|330136|330148|330149|330152|330153|330156|330165|330172|330173|330178|330180|330181|330191|330192|330199|330206|330207|330215|330217|330218|330229|330230|336645|336646|336649|336650|336652|336654|336657|336658|336666|336675|336687|336691|336693|336698|336705|336706|336709|336718|338605|338611|338613|338633|338635|338638|338641|338643|338648|338658|338659|338684|338685|338688|338696|338699|338707|338708|338714|338715|338718|338725|338729|338730|338732|360165|373139|373140|376111|399868|399885|409145|421991|441671|463441|464463|481319|481320|482053|492296|504585|539055|540461|547169|547177|547180|547186|547192|547202|547207|547215|547222|547229|547231|547236|547239|547242|547246|547247|547253|547262|547324|547330|547333|547337|547339|547342|547343|547348|547350|547356|547466|547468|547469|547471|547498|547510|547513|547523|547528|547530|547532|547546|547557|547569|547573|547576|547578|547580|547582|547826|547831|547834|547837|547842|547845|547846|569002|572898|642648|642662|684506|684513|684518|684519|688343|688347|688351|688354|690089|784759|791421|791422|797057|861395|861396|872106|872107|872108|872109|872110|872111|872112|872113|872114|872115|872116|872117|872118|872119|872120|872121|872122|872123|872124|872125|872126|872127|872128|872129|872390|872391|872392|872393|872394|872395|872396|872397|872398|872399|872400|872401|872402|872403|872404|872405|872406|872407|872408|872409|872410|872411|872412|872413|872414|872415|872416|876432|876433|876434|876435|876436|876437|919541|919542|920604|970999", + "text": "Hereditary spastic paraplegia 15" + }, + { + "baseId": "15788|16328|16901|17562|19385|20551|21139|21142|21144|21146|21847|21848|25029|25034|25038|34312|34314|39716|45788|45790|45791|47015|47016|48099|48103|49928|90045|98234|98825|98830|98831|98832|98835|98837|98839|98841|100771|100774|100778|100779|100782|101320|125787|133841|133842|133844|133845|133846|133847|133848|133851|133855|133856|133983|134467|134468|134473|134475|134476|134479|134585|134687|134688|134689|134819|134821|136222|136223|136224|136225|136226|136227|136228|136229|136231|136232|136233|140298|140299|141264|141265|141266|141268|141269|170043|170087|170184|177596|177804|177807|178073|181415|185964|186191|186192|186193|186194|186195|186196|190259|190457|190512|190869|190870|190871|190872|190874|190875|191066|191224|191333|191706|192393|192812|193192|194300|196179|205730|205775|207541|207542|208016|208017|208018|208019|208020|208021|208093|208123|208207|208211|208930|208933|209094|209099|210721|210722|211578|212627|212637|212827|213000|213114|213115|213116|213117|213118|213119|213120|213121|213122|213123|213496|215463|221134|221135|221751|221752|221764|221765|221766|221767|222007|222254|222255|222256|222376|222377|222378|222379|222380|222381|222382|222383|222384|236721|237018|237032|237066|237288|237341|237438|238214|238215|238216|238588|238589|239298|239299|240229|240391|240397|240398|240399|240622|240623|240624|240625|240626|240895|241565|241566|241567|241568|241569|241570|241578|241615|241616|241617|241618|241619|241621|241622|241623|241624|241625|241626|241627|241628|241629|241630|241631|241860|241861|241862|241863|241864|241865|241866|241867|241868|241869|241870|241871|241872|241873|242085|242086|242496|242497|242498|242499|242500|242501|243346|243348|243349|243766|247202|249754|254831|254832|254833|254834|254835|254837|254838|257776|260287|260290|260291|264659|265653|266622|267143|267448|268016|268019|268110|268890|269478|269480|270758|271448|271537|271538|271539|271562|271755|272475|272828|272829|272942|273690|273692|275105|275380|275474|283713|284398|289206|290000|290002|293065|293067|293504|305751|309761|311848|311849|314991|315004|315131|317461|318110|318116|318117|319230|319237|319247|319252|319260|319264|319270|319284|319296|321055|321060|321062|321064|321068|321069|323498|324135|324137|324152|326106|326120|326324|327774|327775|327792|327794|327804|327806|327809|327812|329709|330165|330173|330181|330192|330199|330206|330207|330217|330218|332269|333824|333843|333845|334033|334035|334038|334046|334070|334072|334075|334089|334090|335699|335701|335708|335718|335728|336056|336658|336666|336675|336688|336691|336705|336709|338613|338633|338635|338641|338643|338659|338685|338688|338696|338699|338707|338715|338718|338732|342329|342330|342333|343803|343951|343955|350017|358136|358163|358168|358169|358173|358182|358205|359461|360126|360839|360841|361245|361371|361637|361645|363667|366829|372509|372511|372513|373139|373140|373440|374643|375399|376111|376605|379600|392455|392456|392518|393346|394215|396136|396264|396560|396895|396898|397123|397127|397307|397310|397311|397470|399029|399033|399035|399038|399040|399104|399106|399111|399113|399119|399120|399121|399170|399174|399176|399266|399271|399279|399532|399614|399619|399623|399793|399868|399873|399875|399876|399879|399884|399885|400451|400456|400457|400466|400471|400758|400761|401319|401348|402131|403770|403987|404596|406132|409145|411567|411581|411586|415143|421214|421991|426116|426417|428827|429482|429555|429694|429698|429701|430693|430912|431012|431013|433654|438017|438410|439182|440762|441592|441595|441597|441603|441604|441607|441610|441611|441614|441616|441617|441622|441623|441624|441628|441629|441630|441670|441671|441672|441927|442233|442234|442238|442396|444298|445128|445130|445132|446548|446549|447506|448481|450382|452254|452828|453199|453201|454752|454754|454819|454820|454821|455316|455322|455327|455607|457827|458495|458498|458500|458511|458512|458517|458591|458889|458984|459234|459236|459239|459534|459537|459602|460086|460405|462398|462403|462406|462408|462410|462615|462618|462619|462622|462628|462633|462636|462642|462655|462905|462911|462921|462926|462927|462932|462939|462941|462943|462948|462952|463138|463139|463142|463147|463259|463385|463416|463441|463442|463445|463451|463469|463471|463483|463488|463490|463491|463492|463494|463500|464021|464030|464034|464046|464048|464053|464058|464347|464457|464458|464460|464463|464466|465202|465257|465258|465261|465548|465971|466693|468895|468896|469902|470577|470584|470585|471022|471725|471809|471988|472088|472089|472090|481826|482241|491151|492546|493324|495740|500859|502621|503154|503572|504357|504581|504584|504585|505089|505319|505750|505925|512752|513925|514220|514654|515478|515565|515566|517482|517562|519117|520933|520934|521169|521382|521390|523680|523878|524000|524150|524624|524626|524628|524854|525141|525143|525154|525987|526623|527326|527500|527514|527522|527524|527532|527533|527535|527755|527759|527761|527762|527768|527775|527779|527845|528016|528022|528024|528151|528272|528345|528350|528358|528491|528627|528704|528706|528710|528789|528790|528792|529039|529045|529546|530233|533599|533602|534353|534660|534702|534708|534931|540460|546812|547104|547239|547262|547356|547530|547557|549997|551404|551410|556794|556865|557163|559555|559710|560215|561862|561866|562531|562941|563364|563367|564040|564041|564050|564085|564962|564963|565108|565654|565655|565658|565869|565875|565876|565879|565880|565884|565915|566397|566607|566686|566695|567193|567199|567200|567223|568023|568155|568242|568244|568250|568278|568280|568282|568283|568285|568294|569000|569001|569002|569004|569007|569076|569084|569085|569092|569930|570452|571968|572061|572208|572228|572232|572237|572240|572241|572309|572310|572316|572317|572541|572583|572777|572894|572896|572898|573186|573416|573668|573669|574001|574002|574165|575305|575359|575360|575361|575428|575429|575430|575449|575450|576720|577302|577303|577309|577310|577321|577322|577325|577327|577328|580838|581002|589522|612972|627393|627394|627395|627396|627397|627398|627399|627400|627401|629256|629257|631015|631848|631849|631850|631851|631852|631853|631854|631855|633638|633639|633640|633641|633642|633643|633644|637194|637359|637360|637361|637362|637363|637364|637365|637366|637367|637368|638298|638299|638300|638301|638302|638303|638304|638305|638306|638307|638308|638309|638310|638311|638312|638313|639351|639352|640668|640669|641311|641312|641313|641314|641315|641316|641317|641318|641319|641320|641321|641322|641323|641324|641325|641588|641589|641590|641591|641592|641593|641594|641595|641596|641597|641598|641599|641600|641601|641602|641603|641604|641605|641606|641607|641608|641609|641610|641611|641612|641613|641614|641615|641616|641617|641618|641619|641620|641621|641622|641623|641624|641625|641626|641627|641628|641629|641630|641631|642349|642644|642645|642646|642647|642648|642649|642650|642651|642652|642653|642654|642655|642656|642657|642658|642659|642660|642661|642662|642663|642664|642665|642666|643423|643424|643425|643426|643427|643428|643429|643430|643431|643432|643433|644969|644970|644971|648173|648174|648175|648176|649797|649798|649799|649800|649801|649802|649803|650107|650108|650109|650202|650203|650204|651096|652048|652210|652270|652306|652429|652677|652724|652766|653778|656197|656256|677228|677233|677244|677260|683308|683309|683562|683604|683605|683606|683607|683608|683610|684026|684102|684103|684309|684337|684339|684340|684341|684343|684344|684345|684385|684386|684387|684388|684389|684391|684392|684393|684394|684395|684396|684397|684398|684399|684400|684401|684402|684403|684404|684405|684406|684407|684408|684409|684410|684411|684412|684414|684506|684507|684508|684509|684510|684511|684513|684514|684516|684517|684518|684519|684520|684545|684546|684547|684620|684965|684969|685023|685024|685025|685047|685128|685241|685400|685401|685402|685403|685404|685422|685485|685491|685632|686107|686351|686352|686475|686478|687914|688032|688033|688034|688037|688041|688101|688102|688103|688104|688106|688107|688109|688110|688111|688113|688114|688116|688117|688119|688120|688121|688122|688123|688124|688125|688126|688127|688128|688129|688130|688131|688132|688134|688136|688137|688138|688139|688140|688141|688142|688143|688144|688145|688146|688147|688148|688149|688150|688151|688152|688153|688155|688334|688335|688336|688338|688339|688340|688341|688342|688343|688344|688345|688346|688347|688348|688349|688350|688351|688352|688354|688355|688356|688460|688461|688644|688645|688648|689103|689104|689388|689390|689393|689397|689527|689528|689561|689562|689748|689953|690046|690047|690086|690088|690089|690110|691329|691792|691793|691797|691800|692519|693261|693329|693330|693333|693334|693335|693336|693337|693338|693339|693341|693342|693343|693344|693347|693348|693564|693565|693567|693568|693570|693571|693572|693573|693575|693576|693577|693578|693579|693580|693581|693582|693583|693584|693585|693586|693588|693704|695629|695630|695631|698942|702629|702630|702962|702963|703808|705099|709733|713871|713872|713873|725424|730641|738994|738995|738996|738999|739000|753174|753754|753757|753758|753759|758556|769421|769423|769424|769429|769430|769431|769433|769435|769437|769440|769880|769885|769887|776014|781103|784441|784546|784549|784551|784553|784559|784756|784757|784758|784759|784761|784762|784766|784771|786743|786866|786904|787830|793473|793476|796921|796922|796924|797163|797166|799186|801066|801137|801138|801512|819436|819973|820448|820550|820642|820643|820644|820645|822089|822091|823495|823496|823497|825538|825539|825540|827643|828647|828648|828649|828650|830539|830540|830541|830542|830543|830544|834728|834729|834730|834731|834732|834733|834734|834982|834983|834984|836148|836149|836150|836151|836152|837570|837571|837572|839377|839378|840146|840147|840148|840149|840150|840151|840152|840153|840154|840155|840156|840219|840586|840587|840588|840589|840590|840591|840592|840593|840594|840595|840596|840597|840598|840599|840600|840601|840602|840603|840604|840605|840606|840607|840608|840609|840610|840611|840612|840613|840614|840615|840616|840617|840618|841691|841692|841693|841694|841695|841696|841697|841698|841699|841700|841701|841702|841703|841704|841705|841706|841707|841708|841709|841710|841711|841712|842547|842548|842549|842550|842551|842552|842553|844284|844285|844286|844287|844288|847764|847765|847766|847767|849766|849767|849768|849769|850260|850261|850262|850263|851519|851577|852013|852697|852698|870949|870958|872403|872405|917133|921854|923080|923950|925195|925196|925593|925594|926692|926693|926694|926695|926696|926697|926814|926815|926816|926817|926818|926819|926820|926821|926822|927152|927153|927154|927155|927156|927377|927378|927379|927380|927381|927941|927942|927943|929609|929773|929810|930333|930334|930335|930336|931066|931809|931810|932110|932796|932797|932798|934299|934395|934396|934397|934398|934399|934773|934774|934775|934776|934777|935262|935263|936204|936205|936206|936207|936208|936209|936210|936211|936212|936213|936234|936357|936358|936359|936360|936361|936362|936363|936364|936697|936698|936699|936700|936701|936702|936703|937596|937597|938728|938729|938730|939477|939478|939759|940311|940544|941039|941092|942538|943382|944494|944495|944496|946059|946060|946157|946158|946636|947170|947809|948116|948117|948118|948276|948277|948278|948279|948280|948281|948282|948283|948284|948285|948642|948643|948644|948645|948646|948647|948948|949553|949554|949555|949556|949557|950820|950821|951653|951878|951879|952305|953622|953623|953624|954094|954095|955486|955848|955849|956912|957034|957035|957036|957037|957038|957039|957040|957041|957042|957043|957044|957045|957046|957047|957048|957275|957276|957277|957278|957279|957280|957281|957282|957283|957284|957285|957286|957287|957288|957289|957290|957291|957458|957871|957872|958655|958656|958657|959191|959192|959193|959618|960050|960366|960796|961993|974562", + "text": "Spastic paraplegia" + }, + { + "baseId": "15792|15793|15794|15795|15796|213536|389487|508777|508778|508779|508780|508781|512894|918754", + "text": "Parkinson disease 11" + }, + { + "baseId": "15797|15798|15799|49854|136058|136072|136074|136079|136083|207507|207512|207526|237027|304433|308154|308163|308166|308167|313190|313324|428773|428775|428783|428794|428796|538397|579537|620803|788823|900425|900426|900427|900428|904189|965972|966035", + "text": "Mental retardation, autosomal recessive 13" + }, + { + "baseId": "15800|15801|15802", + "text": "Homocystinuria, cblD type, variant 1" + }, + { + "baseId": "15803|15804|15805", + "text": "Methylmalonic aciduria, cblD type, variant 2" + }, + { + "baseId": "15803|15804|15805|15806|15807|15808|199983|199984|199985|215216|216021|216022|216023|216024|270084|282028|282035|282037|282047|282049|282051|282052|282710|282712|282720|282730|282731|282733|284333|284334|284337|284556|284557|284564|284565|284566|363942|365441|365640|480572|538949|628488|628489|628490|650836|690749|719280|719281|762214|762215|774585|790054|819051|819052|824812|824813|824814|824815|850791|881123|881124|881125|881126|882805|882806|942250|942251|952639|970198", + "text": "Methylmalonic acidemia with homocystinuria cblD" + }, + { + "baseId": "15809|15810|15811|15812|15813|15814|15815|15816|15817|15818|15819|15820|39887|253062|253064|481381|790784", + "text": "Amelogenesis imperfecta, hypocalcification type" + }, + { + "baseId": "15821|15822|224867", + "text": "Myopathy with lactic acidosis, hereditary" + }, + { + "baseId": "15823|920287", + "text": "Cataract, juvenile, with microcornea and glucosuria" + }, + { + "baseId": "15824|102140|102141|192557|204228|204229|204230|204231|204232|204233|215289|271294|291191|291195|291200|291202|291203|291205|291209|291212|291213|291218|291219|291223|291224|291229|291230|291234|291245|291257|291259|292152|292153|292155|292160|292161|292162|292164|292166|292168|292207|292217|292223|292225|292226|292228|292231|292232|295593|295595|295604|295619|295620|295622|295628|295630|295633|295635|295643|295644|295654|295663|295664|295726|295729|295743|295770|295773|295776|295778|295784|295786|295789|295790|295797|295798|295810|295813|295814|368763|453437|481700|486813|519582|538361|559660|620767|626137|631744|686458|698249|708987|720577|720578|720579|734208|748442|798535|816451|889434|889435|889436|889437|889438|889439|889440|889441|889442|889443|889444|889445|889446|889447|889448|889449|889450|889451|889452|889453|889454|889455|889456|889457|889458|889459|889460|889461|889462|889463|889464|889465|889466|889467|889468|889469|889470|889471|891693|918849", + "text": "Congenital disorder of glycosylation type 1N" + }, + { + "baseId": "15825|15826|15827|15828|551762|562669", + "text": "Brugada syndrome 2" + }, + { + "baseId": "15825|33098|40426|52937|57473|78586|78934|188506", + "text": "Death in infancy" + }, + { + "baseId": "15825|15826|15827|15828|17509|20581|24408|24409|24410|24413|24414|24415|24416|24416|24419|24420|24422|24424|24426|24428|24429|24430|24431|24432|24434|24435|24436|24437|24438|24439|24440|24441|24446|28516|29472|32673|32674|38446|38447|38448|39000|39001|39003|39004|44159|44160|45420|45421|45422|45424|45425|45426|45426|45427|45428|48043|48044|51826|54084|54200|54566|55786|56025|56038|56054|56413|56430|56594|56752|57443|57444|57445|57446|57448|57448|57449|57450|57450|57451|57453|57454|57455|57456|57457|57458|57458|57459|57460|57461|57462|57463|57464|57467|57469|57470|57471|57472|57473|57474|57475|57476|57477|57478|57478|57479|57481|78315|78450|78452|78453|78520|78521|78522|78523|78524|78525|78526|78527|78528|78529|78530|78531|78532|78533|78534|78535|78536|78537|78538|78539|78540|78543|78547|78548|78550|78551|78552|78553|78554|78555|78556|78557|78558|78559|78560|78562|78563|78565|78566|78567|78568|78569|78570|78571|78572|78573|78574|78576|78577|78578|78579|78581|78582|78586|78587|78588|78589|78590|78591|78592|78593|78595|78596|78598|78599|78600|78602|78603|78605|78606|78607|78608|78609|78610|78612|78613|78614|78615|78616|78617|78618|78619|78621|78622|78624|78626|78627|78629|78629|78630|78631|78632|78635|78636|78637|78638|78639|78640|78641|78642|78643|78644|78645|78647|78648|78649|78650|78651|78652|78653|78654|78655|78656|78657|78658|78659|78660|78661|78662|78664|78665|78666|78666|78667|78668|78669|78670|78671|78673|78674|78675|78676|78677|78678|78679|78680|78682|78683|78684|78685|78686|78687|78688|78690|78691|78692|78696|78697|78702|78703|78704|78706|78707|78708|78709|78710|78711|78712|78714|78715|78716|78718|78719|78720|78721|78723|78724|78726|78727|78728|78729|78730|78731|78732|78735|78737|78739|78740|78742|78743|78744|78745|78746|78747|78748|78749|78750|78751|78752|78753|78754|78755|78756|78757|78759|78760|78761|78762|78763|78764|78765|78766|78767|78768|78769|78770|78772|78773|78774|78775|78776|78777|78778|78779|78781|78782|78788|78790|78791|78792|78795|78796|78797|78798|78802|78803|78804|78806|78807|78809|78810|78811|78812|78813|78814|78817|78819|78820|78821|78823|78826|78828|78829|78831|78832|78834|78835|78839|78840|78842|78843|78844|78845|78847|78848|78849|78850|78851|78852|78855|78856|78857|78858|78859|78860|78862|78863|78868|78870|78872|78875|78876|78877|78878|78880|78883|78886|78889|78890|78891|78892|78893|78895|78897|78899|78900|78901|78902|78903|78904|78906|78907|78908|78909|78910|78911|78912|78913|78914|78916|78919|78920|78921|78922|78923|78924|78925|78926|78927|78928|78930|78933|78934|78936|78937|78938|78939|78940|78941|78942|78944|78945|78946|78947|78949|78950|78951|78952|78953|85943|85960|94568|99318|101299|101301|101302|101304|136655|140315|140338|141194|141700|141701|142741|142743|142744|142745|142746|142747|142750|142751|142752|142753|142754|142755|142757|142758|142761|142762|142764|142766|142769|142770|167406|171119|171120|171121|171122|171123|172171|173777|173778|173779|173781|173782|173783|173784|173786|173788|173788|173790|173792|173793|173917|173919|173920|173922|173923|173924|173926|173929|173931|173932|173935|175577|175867|178052|178515|178517|178518|178522|178523|178526|178538|178582|178650|178709|178752|186012|186018|187213|188323|188324|188325|188326|188327|188328|188477|188530|188534|188551|188601|188620|189209|189211|189212|189215|189217|189219|189341|189769|189965|191451|193308|196826|196827|196828|196831|196832|196833|196834|196838|196839|196840|196841|196842|196843|196849|196852|196860|196862|196864|196868|196876|196880|196881|196886|196886|196888|196889|196891|196893|196897|196903|196904|196904|196908|196909|196911|196912|196916|196917|196918|196919|196921|196922|196924|196926|196927|196928|196929|196930|196932|196940|196941|196942|196943|196944|196950|196953|196957|196958|196959|196963|196964|196965|196966|196967|196968|196969|196971|196973|196976|196978|196983|196984|196991|196992|196994|196995|196997|196998|197003|197008|197008|197014|197016|198761|204196|212332|212333|212334|212335|212336|212615|212616|212618|212994|214484|221413|221414|221415|221416|221417|221418|221740|221741|221742|222246|222247|224175|224266|224268|224269|224270|224271|224272|224276|224277|224279|224296|224355|224409|227847|227848|229044|229045|229046|229049|229050|229052|229053|229056|229058|229059|229060|229061|236759|236912|239138|239139|239194|239195|239196|239197|239198|239199|239200|239203|239204|239205|239206|239207|239208|239210|239211|239212|239213|239214|239216|239217|239218|239219|239220|239221|239222|239223|239224|239226|239227|239228|239229|239230|239232|239233|239234|239235|239236|239291|239292|240181|240182|243379|243718|243729|246944|246944|248629|251091|251105|251243|252942|252943|258307|258310|258311|258313|258314|258315|258318|258321|258473|258478|258483|258486|258720|258722|258742|262402|265899|273617|289959|290242|290243|290244|290254|290271|290272|290275|290276|290282|290699|291029|291030|291039|291040|291049|291066|291078|291083|291086|291087|291088|291095|293878|293883|294310|294320|294337|294342|294384|294386|294387|294391|294399|294401|294413|294701|294707|294717|294718|294722|294738|294749|309998|310014|310022|310024|312954|312972|313011|315022|315024|315048|315051|315054|315147|315154|316516|316781|316790|319012|321072|321081|321088|321091|321617|321618|321621|321639|321642|321942|321980|324278|325175|325976|325982|326015|328027|328054|328058|329272|329280|329302|330195|330349|331818|353125|353126|359672|359840|359946|362737|362738|363675|367106|367188|367199|367205|367206|367213|367217|367221|367224|367368|367467|367468|367470|367482|367483|367492|367499|367503|367505|367515|367522|367526|367530|368522|368524|368539|368546|368572|368576|368585|371366|371391|373124|378276|389579|393151|393330|393333|393409|393511|393529|393530|393534|393537|393540|393541|393544|393547|393549|393553|393554|393558|393559|393560|393561|393562|393566|393570|393571|393574|393575|393576|393577|393578|393579|393581|393583|393586|393587|393588|393589|393593|393594|393602|393603|393607|393608|393611|393615|393616|393618|393619|393624|393747|393748|393752|393753|393758|393763|393767|393775|393778|393779|393791|393792|393802|393803|393806|393808|393810|393812|393816|393818|393822|393825|393826|393828|393829|393945|393947|393952|393955|393965|393966|393967|393970|393976|393979|393982|393985|393987|393989|393994|393998|394003|394004|394008|394009|394012|394016|394018|394024|394025|394031|394180|395786|396035|396040|396047|396056|396162|396164|396435|396469|397187|398884|402722|403304|404765|406265|406269|406273|406274|406276|406277|406280|406282|406284|406287|406288|406291|407265|407267|407835|414937|418202|419283|421435|421436|421438|424892|425551|425552|425554|425558|425560|439143|443426|443427|443428|443429|443432|443433|443436|443439|443440|443441|443443|443446|449729|451559|452057|452156|452159|452166|452173|452175|452179|452180|452182|452183|452194|452195|452200|452202|452210|452218|452219|452228|452245|452249|452256|452260|452261|452264|452266|452273|452278|452279|452281|452286|452296|452297|452301|452310|452319|452320|452321|452322|452323|452325|452327|452395|452396|452417|452419|452421|452422|452424|452437|452445|452448|452449|452451|452452|452454|452456|452457|452460|452468|452470|452471|452473|452478|452479|452481|452483|452496|452498|452500|452526|452530|452532|452533|452539|452540|452544|452545|452547|452549|452551|452553|452555|452561|452566|452572|452577|452579|452586|452587|452589|452591|452597|452599|452603|452606|452609|452611|452613|452615|452619|452694|452695|452696|452697|452709|452713|452714|452722|452726|452729|452746|452751|452756|452758|452761|452767|452769|452770|452775|452778|452780|452795|452797|452800|452805|452812|453454|456929|456933|456956|457478|457482|457483|457490|457605|457941|457943|457947|470447|471678|472045|481142|481689|485930|487028|487099|488137|495184|496298|496299|496342|496343|500195|500217|500235|500237|500439|500474|500475|500476|500680|500688|500696|500732|500802|500804|500808|501816|501822|501827|503755|504790|509576|509578|509585|509589|509591|509592|509594|509597|509599|509600|509625|509902|509907|509912|511073|511075|511076|511078|511080|514345|514483|517062|517485|518826|518892|519074|519094|519095|519115|519118|519120|519138|519144|519146|519153|519154|519158|519160|519164|519170|519171|519177|519179|519185|519192|519194|519199|519202|519203|519208|519210|519211|519213|519214|519215|519217|519221|519224|519238|519239|519244|519245|519246|519247|519248|519252|519267|519268|519270|519349|519352|519358|519359|519360|519363|519365|519367|519369|519371|519374|519375|519376|519379|519380|519381|519383|519389|519391|519392|519393|519394|519397|519398|519401|519402|519404|519405|519406|519407|519412|519413|519418|519420|519421|519422|519424|519426|519432|519434|519440|519442|519444|519455|519456|519466|519470|519473|519477|519478|519481|519585|519591|519646|519651|519855|519857|522836|522841|522843|523068|523281|523394|527030|527255|527556|534467|534476|551709|551768|558712|558714|558878|558880|558918|558920|558922|558924|558926|558928|558930|558932|558934|558936|558938|558940|558942|558944|558946|558948|558950|558952|558954|558956|558958|558960|558962|558964|558966|558968|558970|559425|559457|559459|559461|559463|559465|559467|559469|559471|559473|559475|559477|559479|559481|559483|559485|559487|559489|559664|561372|561379|561449|561451|561458|561460|561462|561470|561477|561480|561481|561489|561491|561493|561498|561499|561503|561509|561513|561517|561519|561527|561793|562198|562211|562669|562747|562748|562750|562759|562764|562786|562788|562791|562792|562793|562798|562799|562803|562805|562807|562812|562836|562839|562844|562846|562851|562854|562869|563284|564420|564421|565375|565383|567132|567945|572167|574247|578602|589830|616893|616898|616899|616904|616905|616909|616910|616923|621152|631169|631170|631171|631172|631271|631272|631273|631274|631275|631276|631277|631278|631279|631280|631281|631282|631283|631284|631285|631286|631287|631288|631289|631290|631291|631292|631293|631294|631295|631296|631297|631298|631299|631300|631301|631302|631303|631304|631305|631306|631307|631308|631309|631310|631311|631312|631313|631314|631315|631316|631317|631318|631319|631320|631321|631322|631323|631324|631325|631326|631327|631328|631329|631330|631331|631332|631333|631334|631335|631336|631337|631338|631339|631340|631341|631342|631343|631344|631345|631346|631347|631348|631349|631350|631351|631352|631353|631354|631355|631356|631762|631763|631764|631765|631766|636351|636352|636353|636354|636355|641016|641017|641018|650994|650998|651067|651087|651135|651185|651239|654321|654323|655541|655545|672398|672454|679383|679435|679465|680064|683575|683576|683577|683578|683579|683580|683581|683583|683585|683586|683587|683939|685145|685148|685227|686389|686399|686400|686401|686402|686404|686406|686407|686409|686411|686412|686423|687118|689742|691384|691385|691387|691390|691391|691392|691394|691396|691398|695201|698063|698064|708822|748225|748228|748229|748231|748232|763854|763856|763858|763859|763860|763867|763874|769042|773697|781655|781666|781667|787298|793006|795408|795422|799007|818751|819398|819918|819919|827895|827896|827897|827898|827899|827982|827983|827984|827985|827986|827987|827988|827989|827990|827991|827992|827993|827994|827995|827996|827997|827998|827999|828000|828001|828002|828003|828004|828005|828006|828007|828008|828009|828010|828011|828012|828013|828014|828015|828016|828017|828018|828019|828020|828021|828022|828023|828024|828025|828026|828027|828028|828029|828030|828031|828032|828033|828034|828035|828036|828037|828038|828039|828040|828041|828042|828043|828044|828045|828046|828047|828048|828049|828050|828051|828052|828053|828054|828055|828056|828057|828058|828059|828060|828061|828062|828063|828064|828065|828066|828067|828068|828069|828070|828071|828072|828073|828074|828075|828076|828077|828078|828079|828080|828081|828082|828083|828084|828085|828086|828087|828088|828089|828090|828091|828092|828093|828094|828095|828096|828097|828098|828099|828100|833850|833851|833852|833853|833854|850673|850674|850676|850677|850678|850679|850680|850682|850936|850938|851045|851047|851049|851051|851562|851660|858252|858267|906315|906316|906317|906323|909418|909433|909500|909523|909562|909590|909603|909632|909633|909636|909645|923159|923160|923161|923162|923163|923164|923165|923166|923167|923168|923169|923170|923171|923172|923173|923174|923175|923176|923177|923178|923179|923180|923181|923182|923183|923184|923185|923186|923331|923332|923333|923334|924910|924911|924912|931912|931913|931914|931915|931916|931917|931918|931919|931920|931921|931922|931923|931924|931925|931926|931927|931928|931929|931930|931931|931932|931933|931934|931935|931936|931937|931938|931939|931940|931941|931942|931943|931944|931945|932073|932074|934000|934001|939401|939937|939938|940764|943474|943475|943506|943507|943508|943509|943510|943511|943512|943513|943514|943515|943516|943517|943518|943519|943520|943521|943522|943523|943524|943525|943526|943527|943528|943529|943530|943531|943532|943690|943691|945764|945765|947958|951574|953431|953432|953433|953434|953449|953450|953451|953452|953453|953454|953455|953456|953457|953458|953459|953460|953461|953462|953463|953464|953465|953466|953467|953468|953469|953470|953580|953581|955218|959154|959697|959865|965311|980667|980669|980670|980671|980720", + "text": "Brugada syndrome" + }, + { + "baseId": "15825|78451|78452|78528|487028|621159|621160|654323|972559", + "text": "Brugada syndrome (shorter-than-normal QT interval)" + }, + { + "baseId": "15827|24428|24432|24636|24767|24768|77909|77927|77950|77952|78005|78322|78340|78368|78395|78427|78430|78435|78566|78601|78666|78681|78787|78846|141701|189321|222247", + "text": "SUDDEN INFANT DEATH SYNDROME" + }, + { + "baseId": "15827|21094|21885|23327|23642|23647|24419|24431|24642|24645|24650|25754|25787|27450|27461|27463|27495|28997|29102|29103|29106|29126|29128|29129|29130|29134|29136|29143|29150|29159|29164|29190|29191|31857|33352|33370|39099|39951|40426|40435|40437|40438|40470|40539|40542|40543|40545|44310|44311|44312|44314|44315|44315|44669|44690|45103|45104|45263|45265|45267|45269|45270|45271|45272|45273|45275|45276|45277|45302|45303|45304|45306|45307|45308|45309|45310|45356|45542|45543|45545|45549|45929|49070|49075|49093|51095|51672|51675|51678|51685|51686|51688|51697|51703|51706|51710|51713|51715|51717|51726|51732|51736|51745|51746|51747|51755|51756|51764|51769|51780|51783|51785|51788|51789|51790|51795|51796|51809|51812|51814|51822|51826|51833|51834|51835|51836|51849|51852|51860|51861|51866|51872|51876|51897|51898|51903|51905|51908|51909|51914|51916|51920|51922|51926|51929|51937|51945|51949|51954|51957|51961|51962|51968|51971|51976|51977|51983|51990|51997|52005|52008|52032|52044|52045|52055|52065|52070|52071|52083|52092|52097|52118|52162|52163|52173|52176|52182|52209|52214|52243|52270|52276|52287|52291|52294|52544|52554|52558|52559|52565|52645|52651|52781|52788|52796|52836|52838|52839|52844|52846|52856|52938|53062|53066|53068|53071|53072|53073|53074|53075|53077|53078|53079|53080|53083|53084|53085|53086|53087|53088|53089|53089|53090|53091|53092|53093|53095|53096|53097|53098|53100|53102|53103|53104|53105|53106|53107|53109|53111|53112|53116|53117|53118|53119|53120|53121|53146|53344|53700|53709|53858|53870|53872|53873|53873|53874|53875|53876|53877|53878|53879|53880|53881|54034|54170|54174|54199|54234|54533|54760|54804|54858|54862|54870|55351|55849|56066|56362|57050|57064|57261|77299|77753|77759|78195|78563|98596|139985|139986|139987|139989|141516|165539|165550|165551|165552|165554|165556|165557|165559|165560|165562|165563|165565|165566|165570|165574|165575|165576|165577|165582|165583|165586|165593|165594|165597|165598|165599|165603|165604|171084|171134|171135|171136|171137|171138|171139|171140|171141|171142|171143|171144|171145|171146|171147|171157|171158|171160|171161|171162|171163|171164|171165|171245|172178|172354|172362|172391|172392|172394|172396|172397|172400|172501|172503|172530|172533|172535|172537|172538|172557|172609|172786|172787|172788|172928|173316|173798|173883|174142|174731|174737|174741|174745|174757|174776|174779|174785|174916|175139|175143|175146|175153|175178|175188|175201|175392|175412|175414|175435|175442|175473|175510|175572|175587|175606|175615|175619|175655|175658|175696|176068|176213|176490|176492|176628|176629|176629|178223|178432|178434|178435|178443|178448|178450|178451|178455|178459|178462|178467|178468|178479|178480|178482|178485|178486|178487|178488|178489|178490|178491|178509|178516|178520|178522|178524|178527|178528|178529|178539|178543|178544|178546|178553|178555|178561|178563|178568|178570|178602|178603|178604|178610|178616|178619|178620|178621|178625|178630|178632|178633|178634|178638|178639|178640|178642|178644|178645|178647|178648|178649|178651|178657|178659|178660|178661|178664|178667|178668|178670|178671|178672|178674|178677|178678|178680|178687|178689|178704|178715|178717|178720|178721|178722|178723|178724|178728|178730|178731|178735|178756|178760|178761|178944|179196|179255|179256|179259|179262|179340|179356|179381|179390|179464|179557|179652|179676|179813|186288|186529|187659|189393|189394|189395|189396|189396|189402|189403|189801|189939|189956|189965|189965|189972|192359|194575|197086|198041|198042|198042|198043|198044|198045|198048|198049|198050|198051|198053|198054|198055|198058|198059|198059|198060|198061|198062|198067|198071|198082|198092|198327|198363|198364|198366|198368|198471|198472|198473|198474|198477|198478|198480|209638|212080|212081|212084|212085|221090|224180|224194|224194|224195|224201|224202|224204|224205|224206|224210|224211|224212|224213|224215|224216|224220|224222|224241|224252|224254|224260|224278|224280|224281|224282|224283|224307|224309|224312|224318|224320|224329|224334|224337|224338|224348|224349|224350|224351|224376|224377|224380|224382|224383|224389|224395|224397|224398|224400|224403|224404|224408|224410|224416|224417|224418|224421|224422|224423|224424|224425|224426|224427|224428|224429|224430|224431|224432|224433|224434|224452|224457|224460|224466|224467|224468|224470|224471|224472|224476|224477|224506|224507|224514|224515|224516|224526|224529|224530|224537|224540|224541|224544|224545|224559|224565|224566|224573|224575|224576|224580|224581|224582|224583|224585|224586|224588|224589|224590|224591|228359|228362|228364|228365|229019|230207|230225|238222|238223|238224|238225|238227|238229|238230|241205|241808|242733|242734|242735|257951|257955|257957|258702|258759|259005|259007|266688|267457|268263|270405|273206|274882|279744|279746|279746|279753|279754|280076|281356|281358|281360|281557|359244|359287|359902|364787|364936|364942|364946|364967|364989|364991|364994|372288|374182|374191|390978|390990|390991|390994|391004|391005|391009|391013|391017|391026|391028|391033|391034|391079|391114|391131|391142|391145|391149|391151|401951|405244|421224|421225|421226|421226|422163|425939|430982|433341|441954|444862|446925|446951|447588|447589|447590|447592|447595|447597|447602|447756|447760|447767|447774|447819|447821|447836|447840|447843|447845|447847|447849|447850|447866|447870|447873|447874|447877|447881|447893|447897|447902|447906|447908|447918|448156|461366|461535|461668|461893|461894|466769|467648|467816|467818|467824|468001|468005|480713|487689|497070|497395|503360|508768|509163|509164|509166|510206|510247|510738|510739|511046|511047|511047|511089|511090|511104|511106|511107|511108|511111|511112|511113|511114|511118|511122|511132|511135|511139|511140|511141|511142|514357|515547|515549|515553|515572|515633|515637|515645|515649|515651|515653|515654|515659|515662|515688|515690|515691|515695|515697|522576|526700|526701|526937|526945|531105|531182|556523|556823|556825|556827|556829|557154|557156|557157|557161|557164|557166|557201|557203|557205|557207|557209|557211|558375|558377|558379|558381|558383|558385|558387|566070|567459|569020|571313|571315|574447|578541|614705|615024|627509|627510|627511|627512|627513|627514|627515|627516|627517|627518|627519|627520|627521|627522|627523|627524|627525|627526|627527|627528|627529|627530|640336|640337|640338|640339|643107|645828|645829|645830|645831|645832|645833|650621|650626|650634|650693|672375|672416|672435|672438|672456|672457|679523|679533|679537|679538|679540|679541|685639|685640|687813|690009|690535|690536|695036|732293|761741|768616|794618|798985|823612|823613|823614|823615|823616|823617|823618|823619|823620|823621|823622|823623|823624|823625|823626|823627|823628|823629|823630|823631|823632|823633|838776|838777|838778|838779|838780|838781|838782|838783|838784|838785|845249|845250|845251|845252|845253|845254|850702|851902|863989|921889|921890|921891|921892|921893|921894|921895|921896|921897|921898|926346|928240|928241|930379|930380|930381|930382|930383|935693|935694|935695|935696|937901|937902|937903|940624|941808|941809|941810|941811|941812|941813|941814|941815|941816|947585|949892|949893|952324|952325|952326|952327|952328|952329|956589|956590|958094|958095|959546|959547|959548|960424", + "text": "Primary familial hypertrophic cardiomyopathy" + }, + { + "baseId": "15827|18156|18157|18158|18159|18160|18162|18165|18167|18169|18170|18174|18177|18179|18183|18184|20922|21094|23317|23318|23322|23323|23324|23328|23332|23335|23515|23895|24441|27998|28514|28516|28517|28518|29459|29463|29466|29467|29469|29470|29471|29474|29482|31857|31884|32671|32673|33095|33096|33097|33098|33099|38732|40368|40369|40371|40373|40374|40376|40377|40390|40400|44335|44351|44354|44355|44356|44431|44468|45091|45092|45100|45101|45102|45276|45424|45426|45426|45438|45847|51654|51656|51657|51658|51659|51660|51661|51662|51663|51817|51858|51914|51964|53139|53177|53872|54096|54790|55691|55698|55699|55700|55701|55702|55756|55763|55891|56006|56189|56214|56311|56325|56354|56572|56764|56842|57057|57455|57463|57471|57473|57478|67596|67598|67600|67605|67608|67614|67615|67618|67621|67623|67629|67632|67637|67638|67640|67641|67646|67648|67652|67657|67659|67661|67662|67663|67664|67666|67668|67671|67673|67674|67675|67677|67686|67687|67694|67695|67699|67702|67713|67715|67718|67720|67721|67724|67726|67729|67731|67734|67737|67740|67744|67747|67751|67755|67756|67758|67759|67768|67769|67775|67776|67777|67782|67783|67784|67785|67787|67792|67808|67819|67820|77900|77902|77909|77913|77916|77917|77920|77922|77923|77924|77925|77926|77927|77928|77930|77932|77934|77937|77938|77939|77942|77949|77953|77955|77957|77958|77959|77966|77968|77969|77971|77973|77974|77980|77981|77983|77984|77990|77992|77993|77995|77996|77997|77999|78003|78005|78011|78012|78013|78015|78016|78017|78025|78026|78057|78059|78062|78069|78078|78080|78102|78104|78114|78116|78121|78124|78128|78136|78137|78139|78143|78144|78150|78157|78159|78165|78167|78173|78175|78177|78180|78182|78185|78186|78188|78191|78194|78195|78197|78210|78211|78219|78221|78223|78225|78233|78242|78244|78248|78252|78255|78256|78259|78262|78263|78264|78265|78267|78270|78272|78273|78275|78285|78287|78293|78295|78298|78301|78303|78305|78313|78315|78316|78318|78319|78320|78322|78323|78324|78325|78326|78328|78329|78330|78331|78332|78333|78334|78336|78337|78339|78340|78341|78347|78349|78350|78351|78352|78355|78359|78362|78363|78364|78365|78366|78367|78368|78369|78371|78376|78377|78378|78379|78382|78386|78387|78388|78392|78393|78394|78399|78400|78401|78402|78404|78405|78406|78408|78410|78412|78414|78419|78423|78431|78433|78434|78435|78436|78437|78439|78440|78443|78447|78448|78449|78450|78451|78452|78453|78491|78492|78493|78494|78495|78499|78502|78510|78511|78512|78515|78515|78517|78519|78532|78547|78556|78573|78576|78577|78588|78593|78605|78607|78608|78629|78684|78727|78729|78737|78797|78805|78841|78877|78880|78895|78907|78941|81524|89851|99298|99300|99301|99303|99304|99305|99306|99309|99310|99311|99312|99314|99315|99316|99317|99318|99318|99319|99320|99321|99322|99323|99324|99326|99329|99330|102133|102134|136398|136399|136405|136408|136409|136410|136418|136419|136424|136425|136426|136427|136430|136431|139389|139391|140033|140035|140036|140038|140040|140041|140042|140043|140044|140045|140046|140047|140048|140049|140050|140051|140052|140053|140084|140085|140086|140087|140089|140090|140093|140095|140100|140101|140314|140315|140316|140318|140321|140322|140325|140326|140328|140330|140331|140332|140333|140335|140336|140338|140344|140345|140346|140362|140876|141310|141693|141694|141695|141696|141697|141698|141704|141705|141707|141708|141710|141711|141713|141714|141715|142741|142925|142926|142927|165526|165527|165528|167508|171106|171108|171190|172417|173790|173806|173931|173946|173947|174383|174724|174916|175699|175700|175702|175838|175840|175841|175844|176235|176357|176358|177008|177402|177533|177535|177536|177537|178444|178447|178453|178508|178523|178533|178534|178535|178536|178557|178573|178574|178575|178577|178578|178579|178583|178585|178587|178588|178589|178590|178591|178622|178624|178646|178652|178653|178654|178685|178727|178737|178747|178752|178753|178754|179083|179088|179090|179091|186018|186073|186087|186151|186151|186152|186287|188330|188331|188333|188335|188336|188337|188339|188348|188349|188351|188353|188355|188356|188359|188360|188362|188367|188372|188373|188374|188375|188377|188378|188380|188381|188382|188385|188387|188388|188390|188391|188392|188394|188395|188399|188401|188402|188404|188405|188407|188408|188410|188412|188415|188416|188419|188431|188432|188434|188435|188436|188439|188440|188441|188442|188444|188445|188446|188449|188452|188454|188458|188459|188463|188464|188465|188509|188510|188511|188514|188519|188520|188522|188523|188524|188525|188526|188530|188531|188533|188538|188539|188545|188550|188551|188552|188553|188554|188555|188557|188558|188559|188562|188567|188571|188572|188574|188576|188580|188581|188588|188591|188601|188602|188606|188607|188608|188609|188610|188611|188612|188613|188614|188615|188616|188618|188619|188620|188622|188629|188717|188722|188723|188726|188729|188732|188734|188736|188739|188743|188744|188745|188746|188998|189213|189214|189220|189221|189222|189224|189228|189229|189231|189235|189236|189238|189239|189240|189244|189245|189246|189247|189248|189249|189250|189251|189256|189257|189262|189263|189264|189266|189267|189268|189269|189271|189273|189276|189277|189278|189279|189282|189285|189286|189287|189287|189288|189289|189291|189293|189295|189297|189298|189299|189300|189302|189303|189304|189305|189306|189307|189308|189309|189317|189322|189328|189329|189337|189338|189341|189342|189343|189344|189369|189373|189376|189377|189380|190965|191320|191347|192259|192628|193093|194156|194187|194219|194567|194615|194616|194641|194659|194666|194672|194673|194699|194721|195595|196486|196541|196702|196864|197129|197130|197131|197135|197136|197137|197142|197143|197145|197146|197147|197149|197153|197154|197156|197157|197159|197164|197165|197171|197172|197173|197174|197175|197176|197178|197181|197185|197187|197192|197193|197201|197211|197219|197220|197227|197228|197232|197235|197239|197240|197245|197248|197260|197263|197265|197266|197270|197272|197273|197278|197279|197291|197293|197296|197299|197300|197303|197315|197323|197324|197325|197326|197327|197328|197333|197334|197340|197348|197354|197356|197357|197358|197367|197368|197371|197374|197408|197416|197421|197422|197426|197427|197431|197443|197450|197459|197462|197469|197471|197473|197475|197478|197483|197484|197486|197487|197488|197496|197498|197500|197504|197506|197507|197510|199555|204065|204066|204067|204068|204069|204070|204071|204072|204073|204074|204075|204076|204077|204078|204079|204080|204081|204082|204083|204084|204085|204086|204087|204088|204089|204090|204091|204092|204093|204094|204095|204096|204097|204098|204099|204100|204101|204102|204103|204104|204105|204106|204107|204108|204109|204110|204111|204112|204113|204114|204115|204116|204117|204118|204119|204122|204123|204124|204125|204126|204127|204128|204129|204130|204131|204132|204133|204134|204135|204136|204137|204138|204139|204140|204145|204146|204147|204148|204149|204150|204151|204152|204153|204154|204155|204156|204157|204158|204159|204160|204161|204162|204163|204164|204165|204166|204167|204168|204169|204170|204171|204172|204173|204174|204175|204176|204198|204202|204203|212343|212344|212345|212346|212347|212567|212568|212569|212570|212571|212619|212621|212622|212623|212920|212922|212923|212927|212993|212995|212997|212999|213468|215355|221428|221429|221430|221431|221432|221668|221669|221670|221671|221672|221673|221674|221675|221676|221743|221744|221745|221746|221747|221748|222134|222135|222138|222139|222140|222141|222248|222249|222250|222853|224269|224286|224287|224288|224290|224292|224294|224296|224336|224339|224340|224341|224342|224343|224347|224360|224361|224363|224401|224434|224443|224444|224456|224522|224542|230190|230195|230197|230198|231114|231115|231116|231632|236763|236765|236770|236794|238222|239294|239301|239302|239303|239305|239307|239308|239309|239310|239311|239312|239314|239315|239316|239317|239318|239319|239320|239321|239322|239323|239324|239325|239326|239327|239328|239329|239330|239331|239992|239993|239994|239995|239996|239997|239998|239999|240000|240001|240002|240003|240004|240187|240188|240189|240190|240191|240192|240194|240196|240200|240202|240203|241065|241085|241086|241087|241090|241092|241093|241094|241530|241538|241539|241540|241541|241542|241543|241545|243578|243601|251312|251313|251314|251315|252648|254496|258327|258329|258331|258332|258335|258337|258338|258339|258340|258341|258342|258343|258345|258347|258351|258353|258355|258359|258463|258485|258488|258490|258496|258503|258504|258506|258508|258510|258512|258514|258515|258516|258694|258695|258696|258719|258720|258721|258730|258731|258741|258742|259046|259049|259050|259053|259054|259059|259063|259180|259855|259979|264150|264154|264160|264463|264595|265970|266059|266236|266280|267851|268668|268720|270737|272503|275156|290242|290243|290244|290254|290271|290276|291029|291030|291039|291040|291049|291066|291078|291087|291088|291095|292040|292043|292067|292081|292090|292102|293484|293487|293511|293525|293530|294310|294320|294337|294342|294384|294386|294391|294399|294413|294701|294707|294717|294718|294722|294738|296388|296777|296810|296816|296821|296824|296828|296829|296830|296833|296836|302179|302180|302189|302190|302194|303500|303501|303502|303516|305367|305381|305389|305392|306921|306933|306939|306940|306944|306951|306952|310199|310299|310302|310317|310321|311818|311837|311851|311852|311856|311859|311865|312489|312495|313787|313790|313794|313799|313800|313812|313813|313817|316586|316730|316733|316755|316757|316774|318378|318415|318430|318469|319399|319980|319984|319986|319987|319988|320021|320022|320025|324081|324158|324231|324233|324234|324236|324243|324519|324544|324581|325306|325539|326169|326170|326178|326180|326190|326206|326214|327103|327120|327127|327130|330195|330197|330280|330281|330298|331596|331669|331676|331677|331685|335279|335288|336624|336627|336647|345107|346356|350563|350579|350595|350597|350916|351633|351642|351644|353590|359192|359804|359805|359809|360088|360503|361865|362737|367445|367452|367476|367497|367508|367512|367765|367776|367783|367784|367787|367791|367801|367803|367809|367810|367811|367813|367820|367836|368878|368903|369016|369017|369023|369044|369060|369314|369342|369347|369350|369597|369606|369612|369616|369621|369622|370973|370997|371001|371299|371342|371367|371368|371370|372141|372185|372201|372227|372232|372345|372874|372943|372972|372974|372976|372990|373145|373166|373183|373185|373191|373194|374044|374060|374890|374980|375021|375028|376975|376980|376983|377986|378276|378481|379688|379689|379690|379691|389717|390050|390546|393764|393765|393777|393783|393784|393795|393798|393801|393813|393814|393819|393827|393830|393838|393840|393845|393846|393849|393853|393854|393855|393862|393865|393867|393868|393869|393870|393873|393874|393877|393878|393883|393974|393978|393993|393995|394007|394017|394023|394027|394028|394035|394045|394050|394057|394074|394076|394093|394094|394100|394116|394118|394127|394181|394183|394217|394224|394226|394236|394237|394245|394250|394254|394270|394274|394277|394280|394281|394284|394286|394295|395482|395485|395487|395489|395490|395495|395497|395609|395611|395666|395668|395671|395676|395682|395693|395694|395703|395706|395716|395717|395787|395791|395793|395798|395799|395802|395804|395807|395816|395853|395862|395863|395866|395868|395878|396077|396079|396080|396081|396097|396099|396100|396137|396141|396142|396154|396157|396158|396168|396172|396173|396175|396180|396181|396184|396186|396190|396192|396195|396196|396197|396198|396200|396202|396203|396206|396470|396478|396480|396483|396487|396488|396489|397566|397568|397752|398006|398090|398096|398098|398114|398119|398124|398149|398151|398184|398187|398459|398466|398469|398476|398482|398520|398523|398529|398575|398589|398593|398596|398597|398601|398883|398909|398911|398913|398923|398937|398947|398948|398953|398955|399063|399069|399073|399081|399094|399097|399110|399114|399350|399368|399375|399377|399379|399386|399390|399405|399408|399410|399415|399421|399422|399425|399428|399635|399650|399658|399661|399662|399663|399664|399668|403718|404147|404153|404180|404182|404235|404238|407049|407054|407058|407069|408326|408327|408328|408331|408610|408620|408624|408625|414959|415088|419276|421916|422353|424566|425913|426333|433355|433386|434589|434680|442551|442552|443518|443552|443555|443556|444780|444789|444968|444974|446223|446224|449942|452799|452835|452843|452848|452851|452853|452857|452864|452866|452868|452869|452879|452886|452889|452890|452906|452910|452912|452914|453192|453193|453205|453209|453218|453226|453228|453230|453232|453236|453239|453244|453250|453254|453255|453267|453274|453276|453284|453286|453288|453294|453295|453297|453300|453302|453306|453310|453313|453318|453326|453561|453636|453639|453641|453648|453650|453663|453664|453669|453682|453689|453693|453696|453698|453703|453705|453708|456462|456463|456465|456466|456471|456478|456490|456492|456493|456494|456496|456498|456787|456789|456799|456805|456807|456811|456816|456825|456830|456831|456834|456836|456840|456843|456848|456853|456855|456861|456863|456864|456867|456876|456887|456889|456891|457021|457026|457032|457040|457042|457045|457052|457054|457056|457057|457059|457063|457075|457078|457080|457097|457098|457100|457103|457107|457113|457116|457513|457515|457517|457519|457521|457523|457524|457525|457527|457531|457532|457533|457538|457543|457544|457545|457546|457549|457553|457555|457556|457557|457558|457560|457563|457569|457576|457583|457588|457639|457640|457643|457644|457648|457651|457655|457660|457663|457665|457666|457984|457986|457991|457993|457995|457997|458005|458009|458012|458016|460426|460923|460987|460993|461000|461003|461004|461009|461128|461129|461133|461136|461145|461153|461299|461301|461418|461421|461422|461423|461575|461776|461778|461781|461790|461792|462066|462075|462077|462084|462091|462093|462099|462101|462103|462107|462108|462112|462116|462118|462126|462318|462341|462343|462345|462349|462353|462359|462360|462361|462369|462370|462798|462816|462817|462825|462826|462856|462868|462869|462873|462874|462880|462881|462884|462887|462909|462910|462936|462947|462949|462951|462956|462960|462963|462974|462978|462980|462982|462984|462987|462993|462999|463011|463018|469342|470337|470341|470344|470881|471380|471554|471609|480686|480699|487008|487480|487583|487957|488008|492809|495332|495572|496994|497392|500382|500388|500409|500416|500695|500698|500704|500869|501017|501035|501662|501851|501937|501942|501947|501971|501978|502282|502899|503246|503511|503516|503760|504080|504101|504293|507284|507294|508163|509633|509635|509636|509637|509640|509642|509645|509651|509654|509656|509657|509659|509661|509669|509671|509676|509677|509846|509849|509851|509852|509868|509870|509872|509919|509920|509925|509926|509927|509933|509934|509938|509943|509950|509952|509961|509966|509974|509976|509982|510273|510275|510276|510278|510280|510372|510375|510376|510378|510381|510382|510384|510385|510389|510390|510824|511087|511088|511091|511092|511093|511103|511519|514348|514349|514350|514625|519602|519603|519676|519681|519682|519685|519689|519690|519691|519692|519693|519695|519697|519699|519700|519701|519702|519706|519707|519712|519714|519718|519719|519729|519731|519736|519893|519900|519950|519951|519954|519956|519958|519959|519962|519968|519970|519971|519972|519973|519974|519975|519979|519981|519985|519994|519998|521613|521901|522289|522440|522442|522445|522446|522448|522451|522454|522456|522467|522474|522624|522656|522663|522666|522669|522670|522684|522687|522688|522690|522691|522697|522699|522702|522705|522714|522764|522769|522770|522772|522774|522779|522781|522792|522796|522799|522804|522875|522879|522892|522895|522903|522905|522914|522921|522923|522928|523075|523077|523085|523090|523092|523093|523097|523099|523127|523130|523136|523140|523141|523146|523314|523320|523322|523329|523331|523338|523342|523351|523356|523363|523365|523370|523427|523437|523439|523444|523450|523452|523455|523458|523462|523464|525601|526035|526038|526040|526103|526107|526109|526118|526133|526137|526213|526217|526237|526545|526548|526549|526552|526564|527043|527050|527052|527054|527056|527057|527062|527065|527066|527068|527070|527072|527075|527082|527084|527085|527086|527088|527113|527118|527120|527123|527126|527131|527246|527287|527293|527300|527301|527306|527307|527311|527318|527320|527325|527332|527334|527338|527551|527562|527565|527566|527568|527576|527579|527585|527587|527591|527594|527595|527599|527605|527607|533497|533543|533551|533557|533824|533837|534062|534380|536660|536741|536839|551700|551716|551782|552404|559524|559557|559559|559561|559563|559565|559567|559569|559571|559573|559575|559577|559712|559714|559716|559718|559720|559722|559724|559726|561036|561403|561404|561406|561407|561689|561696|561705|561718|561724|561727|561728|561738|561740|561741|561786|561787|561794|561798|561800|561819|561868|561870|561874|562237|562241|562243|562246|563370|563371|563400|563402|563408|563412|563414|563415|563418|563847|564148|564156|564160|564161|564166|564168|564443|564445|564452|564458|564460|564465|564466|564468|564470|564475|564506|564552|564553|564557|564562|564577|565361|565390|565392|565394|565398|565399|565402|565406|565411|565417|565563|565622|565633|565638|565639|565649|566556|566561|566568|566570|566571|566581|566583|566595|566751|566752|566754|566757|566765|566769|566781|566783|566784|567156|567160|567162|567195|567198|567203|567208|567211|567212|567942|567955|567960|567961|567964|567970|567973|567976|567978|567980|567982|567984|567990|569946|569952|570472|570473|570495|570501|571128|571130|571195|571516|571752|571756|571758|571765|571766|571774|573077|573078|573489|575088|575089|576958|579801|609524|609671|609672|611746|617347|617348|617349|617351|617353|617356|617851|617855|617858|617861|617862|620277|621167|621168|621263|625801|631796|631797|631798|631799|631863|631864|631865|631866|631867|631868|631869|631870|631871|631872|631873|631874|631875|631876|631877|631878|631879|631880|631881|631882|631883|631884|631885|631886|631887|631888|631889|631890|631891|631892|631893|631894|631895|631896|631897|631898|631899|631900|631901|631902|631903|631904|631905|631906|631907|635883|635884|635885|635886|635887|635888|635889|635890|635891|635892|635893|635894|635895|635896|635897|635898|635899|635900|635901|635902|635903|635904|635905|635906|635907|635908|635909|635910|635911|635912|635913|635914|635915|635916|635917|635918|635919|635920|635921|635922|635923|635924|635925|635926|635927|635928|635929|635930|635931|635932|636389|636390|636391|636392|636393|636394|636395|636396|636397|636398|636399|636400|636401|636402|636403|636404|636405|636406|636407|636408|636409|636410|636411|636412|636413|636414|636415|636416|636417|636418|636419|636420|636421|636422|636423|636424|636425|636426|636427|636428|636429|636430|636431|636432|636433|636434|636435|636436|639818|639819|639820|639821|639822|639899|639900|639901|639902|639903|639904|639905|639906|639907|639908|639909|639910|641009|641010|641011|641031|641032|641033|641034|641035|641036|641037|641038|641039|641040|641041|641042|641043|641044|641045|641046|641047|641048|641049|641050|641051|641052|641053|641054|641055|641056|641057|641058|641059|641060|641061|641062|648631|648632|648945|648946|648947|648948|651002|651051|651132|651133|651149|651592|651654|651665|651709|651783|652177|652180|652187|652189|652238|652371|652485|652529|653657|654680|654920|655810|656628|665692|665693|665698|665703|665708|665717|665721|665725|665735|665737|665741|665743|665749|665759|665763|665767|665770|665777|665780|666235|666364|666370|666371|666380|666389|666393|666394|666398|666400|666406|666413|666423|666431|666434|666442|666447|666491|666494|666496|666499|666504|666507|666510|666515|666517|666520|666529|666531|666537|666545|666561|666758|666763|666765|666773|666775|666777|666785|666786|666793|666796|672406|672418|672420|679382|679392|679407|679417|679441|679446|680050|683612|683613|683614|683616|683861|683862|683863|683944|684239|684253|684318|684320|685210|685211|685229|685312|685313|685314|685315|685316|685317|685320|685321|685322|685323|685324|685325|685326|685327|685328|685329|685330|685331|685332|685333|685334|685335|685336|685337|685338|685339|685340|685341|685342|685343|685344|685346|685347|685348|685349|685350|685351|685352|685353|685354|685355|685356|685357|685358|685359|685360|685361|685362|685363|685364|685365|685366|685367|685368|685369|685371|685372|685373|685374|685375|685376|685377|685378|686479|686481|686482|686483|686484|686487|686488|686489|686999|687000|687001|687002|687128|687137|687138|687721|687751|687752|687949|687952|687953|687954|687961|687962|687963|687964|687966|687967|687971|687973|687977|687978|687979|689243|689750|689860|689861|689863|689892|690035|690036|690037|690038|690040|690042|690043|691501|691503|692179|692180|692182|692183|692184|692185|692186|692965|692966|692984|692985|693172|693177|693178|693179|693181|693182|693184|693185|695507|695559|699932|699933|702282|722393|730256|736024|736025|737928|744187|744848|748682|750496|750498|750500|750505|752544|752545|752632|753319|759561|760168|760170|764180|766168|766169|766174|769063|769065|769082|774920|775350|775382|775818|775821|775831|775834|775881|775888|775890|775957|775962|775966|776028|776031|781813|781852|781853|782939|784355|787769|787778|787801|787803|787805|789805|792718|793046|795515|798991|799643|800838|805681|819294|819439|819765|819766|819850|819851|819852|819921|820353|820354|820355|820356|820357|820488|820489|820490|820491|828575|828576|828577|828578|828579|828580|828581|828673|828674|828675|828676|828677|828678|828679|828680|828681|828682|828683|828684|828685|828686|828687|828688|828689|828690|828691|828692|828693|828694|828695|828696|828697|828698|828699|828700|828701|828702|828703|828704|828705|828706|828707|828708|828709|828710|828711|828712|828713|828714|828715|833311|833312|833313|833314|833315|833316|833317|833318|833319|833320|833321|833322|833323|833324|833325|833326|833327|833328|833329|833330|833331|833332|833333|833334|833335|833336|833337|833338|833339|833340|833341|833342|833343|833344|833345|833346|833347|833348|833349|833350|833351|833352|833353|833354|833355|833356|833357|833358|833359|833360|833361|833362|833363|833364|833884|833885|833886|833887|833888|833889|833890|833891|833892|833893|833894|833895|833896|833897|833898|833899|833900|833901|833902|833903|833904|833905|833906|833907|833908|833909|833910|833911|833912|833913|833914|838117|838118|838119|838120|838121|838232|838233|838234|838235|838236|838237|838238|838239|838240|838241|838242|838243|838247|838248|838249|838250|839755|839756|839757|839758|839759|839811|839812|839813|839814|839815|839816|839817|839818|839819|839820|839821|839822|839823|839824|839825|839826|839827|839828|839829|839830|839831|839832|839833|839834|839835|839836|839837|839838|839839|839840|848301|848302|848303|848304|848734|848735|848736|850960|851144|851495|851943|851945|852342|852611|852686|852901|889976|889994|897669|897677|910662|910665|910681|910685|910693|910698|910702|910725|910738|910774|911595|911643|911656|916923|917013|917085|923360|923361|923362|923383|923384|923385|923386|923387|923388|923389|923390|923391|923392|923393|923394|923395|923396|923397|923398|924750|924751|924752|924753|924754|924755|924756|924757|924758|924759|924760|924761|924762|924763|924764|924765|924926|924927|924928|924929|924930|924931|926153|926154|926181|926182|926183|926184|926185|926583|926594|926595|926596|926597|926598|926599|926600|926601|929163|932087|932117|932118|932119|932120|932121|932122|932123|932124|932125|932126|932127|932128|932129|932130|932131|932132|932133|933762|933763|933764|933765|933766|933767|933768|933769|933770|933771|933772|933773|933774|933775|933776|933777|933778|933779|933780|933781|933782|933783|933784|933785|933786|934010|934011|934012|934013|934014|934015|934016|934017|934018|934019|934020|934021|935434|935435|935468|935469|935470|935471|935472|935473|936057|936058|936079|936080|936081|936082|936083|936084|936085|936086|936087|936088|938940|938941|939954|940070|940071|940072|940085|940086|940087|940209|940210|940263|940503|941030|941031|941032|943705|943744|943745|943746|943747|943748|943749|943750|943751|943752|943753|943754|943755|943756|943757|943758|943759|943760|943761|943762|943763|943764|943765|945515|945516|945517|945518|945519|945520|945521|945522|945523|945524|945525|945526|945527|945528|945529|945530|945531|945775|945776|945777|945778|945779|945780|945781|945782|945783|947357|947358|947393|947394|947395|947945|947946|947973|947974|947975|947976|947977|947978|947979|947980|947981|947982|947983|947984|947985|947986|951216|953595|953634|953635|953636|953637|953638|953639|953640|953641|955090|955091|955092|955093|955094|955095|955096|955097|955098|955223|955224|955225|955226|955227|955228|955229|955230|955231|955232|955233|955234|955235|955236|955237|955238|956453|956454|956455|956456|956849|956850|956851|956852|956853|956854|956855|959710|959843|959868|959986|960639|960785|965302|965304|965307|965308|965313|980164", + "text": "Long QT syndrome" + }, + { + "baseId": "15829|21928|24750|24758|24759|29095|29097|33920|45630|59458|101651|134576|136391|140302|140303|142182|142197|195749|205140|205774|207213|210615|210797|211149|211150|211157|211565|211675|211676|211925|211926|226977|246907|275552|276897|277891|277894|277975|277989|277994|277997|284147|284169|284922|285476|285485|286190|286192|287223|287238|287257|287274|288486|288520|288525|288894|292000|297817|297817|297944|297946|297948|299993|303686|304362|304363|304367|304368|304388|304443|309036|314314|314316|314909|314910|314917|320418|320428|320430|320434|321722|321729|327780|328875|329187|329191|329201|329202|335813|335814|335817|335819|337676|337682|337687|342444|342879|349198|349201|349420|349421|349424|349425|349427|349428|350421|353482|359158|359993|360002|404755|408382|424968|439523|488342|513258|513313|513602|539032|539038|543697|550839|552061|552062|553389|576145|578436|619957|622426|679783|735048|735050|735051|742261|742262|742263|765072|765073|773006|773007|782269|858260|858261|861143|961239|978179|978180", + "text": "Mitochondrial complex I deficiency" + }, + { + "baseId": "15830|39162|39163|134578", + "text": "Persistent truncus arteriosus (disease)" + }, + { + "baseId": "15831|153723|512951", + "text": "Lipase deficiency, combined" + }, + { + "baseId": "15832|15834|15835|15836|15837|15838|15840|15842|15843|15844|15845|15846|15846|15847|15848|15849|15849|15850|15851|15852|15853|15854|15855|15859|15860|15861|15862|15863|15864|15865|15867|15868|15870|15873|15874|15875|15880|15881|33882|49938|49939|49940|49941|49942|49943|49944|49945|49947|49948|49948|49949|49949|49950|49951|49951|49952|49953|49954|49955|49956|49957|49958|49959|49960|49961|49962|49963|49964|49965|49966|49968|49969|49969|49970|49971|49972|49973|49974|49975|49976|51408|51408|51409|51410|51412|51413|51414|51415|51417|51418|51418|51419|51420|51421|86510|93506|93507|93526|94125|94138|94142|94472|94473|98250|98252|98256|98257|98258|98259|98259|98260|132732|132733|132734|132735|132738|132739|132741|132742|132743|132744|132745|132747|132748|132749|132750|132751|132752|132753|132754|132755|132757|132758|132759|132760|132761|132763|132764|132765|132766|132767|132768|132769|132769|132770|132771|132772|132773|132774|132775|132776|132777|132778|132779|132780|132781|132782|132783|136436|136453|136459|136466|136470|136480|136481|136485|136495|136497|136504|136511|137244|137245|137247|137248|137249|137250|137251|137252|137253|137254|137255|137256|137257|137258|137260|137261|137262|137263|137264|137267|137268|137269|137270|137271|137272|137274|137275|137276|137277|137278|139394|139395|139396|139397|139398|139399|139400|139401|139402|139403|139404|139405|139406|139407|139408|139409|139410|139411|139412|139413|139414|139415|139416|139417|139418|139419|139420|139421|139421|139422|139423|139425|139426|139427|139428|139429|139430|139431|139432|139433|139434|139435|139436|139437|139438|139439|139440|139441|140108|140109|140110|140111|140112|140113|140114|150514|150553|150568|150577|150604|150605|150607|150618|150623|150665|150666|150666|150668|150669|150670|150683|150702|150708|150735|150754|150761|150775|150781|150822|150838|150882|150905|150930|150990|151007|151080|151082|151084|151150|151150|151229|151235|151238|151262|151288|151325|151332|151332|151336|151359|151395|151402|151404|151404|151449|151488|151490|151641|151642|151645|151657|151724|151729|151758|151874|151903|151913|151915|151916|151918|151928|151952|151954|151960|151982|151992|152156|152171|152173|152180|152233|152288|152445|152459|152493|152667|152697|152718|152720|166240|166241|166242|166243|166244|166245|166246|166247|166248|171099|171100|178765|180167|180168|180170|180171|180173|180176|180177|180178|180179|180180|180181|180183|180184|180185|180186|180187|180188|180189|180192|180193|180194|180195|180196|180197|180198|180199|180200|180202|180204|180205|180207|180208|180209|180211|180212|180214|180215|180216|180217|180218|180219|180220|180221|180223|180224|180225|180226|180228|180229|180230|180231|180232|180233|180234|181206|181207|181208|181209|181210|182312|182313|182313|182318|182319|182320|182321|182322|182323|182324|182325|182326|182328|182329|182330|182331|182332|182333|182335|182336|182336|182338|182339|182340|182341|182342|182345|182346|182347|182348|182350|182351|182352|182353|182355|182357|182358|182359|182360|182361|182362|182363|182364|182365|182366|182367|182368|182369|182370|182371|182373|182374|182375|182376|182377|182378|182381|182382|182383|182384|182385|182386|182387|182388|182389|182390|182391|182392|182393|182394|182395|182396|182397|182398|182399|182401|182402|182406|182408|182409|182409|182411|182412|182413|182414|182415|182416|182417|182420|182421|182422|182424|182427|182428|182429|182430|182431|182432|182434|182436|182438|182439|182441|182441|182442|182443|182444|182445|182446|182447|182449|182451|182452|182454|182455|182458|182459|182461|182462|182465|182466|182468|182469|182471|182472|182473|182474|182475|182477|182478|182479|182480|182481|182482|182483|182484|182485|182487|182488|182489|182490|182491|182492|182493|186026|186027|186028|186029|186030|186031|186032|186033|186034|186035|186036|186037|186038|186039|186040|186041|186042|186043|186044|186045|191748|198622|212382|212384|212385|212386|212388|212389|212390|212391|212392|212394|212395|212396|212397|212398|212399|212400|212401|212403|212404|212405|212406|212406|212407|212408|212409|212410|212411|212412|212413|212414|212415|212416|212417|212418|212419|212421|212422|212423|212424|212425|212426|212427|212428|212429|212431|212434|212436|212437|212438|212439|212440|212441|212442|212443|212444|212445|212446|212447|212448|212449|212450|212451|212452|212453|212454|212455|212456|212457|212458|212459|212460|212460|214643|214646|214652|214654|214655|214658|214659|214661|214662|214663|214664|214667|214673|214674|214675|214677|214678|214680|214681|214682|214682|214684|214686|214688|214689|214691|214692|214693|214694|214695|214700|214702|214707|214710|214711|214716|214718|214720|214722|214727|214729|214731|214732|214733|214735|215306|221481|221482|221484|221485|221486|221488|221490|221491|221492|221493|221494|221495|221496|221497|221498|221499|221500|221501|221502|221503|221504|221505|221506|221507|221508|221509|221510|221511|221512|221513|221514|221515|221516|221517|221521|221522|221523|221524|221525|221526|221527|221528|221529|221530|221531|221532|221533|221534|221535|221536|221537|221538|221539|221540|221541|221542|221543|221544|221545|221546|221547|221549|221552|224682|226319|226320|226321|226322|232982|232983|232984|232985|232987|232988|232989|232990|232991|232994|232995|232997|232999|233001|233002|233008|233008|233009|233011|233012|233015|233017|233018|233019|233020|233022|233023|233024|233025|233026|233027|233030|233031|233031|233035|233036|233037|233038|233039|233040|233041|233042|233044|233048|233049|233050|233052|233054|233056|233058|233058|233059|233060|233063|233064|233066|233068|233071|233073|233075|233076|233077|233078|233079|233080|233081|233082|233084|233086|233087|233089|233090|233092|233093|233094|233095|233099|233100|233101|233102|233103|233104|233105|233106|233107|233109|233110|233111|233112|233116|233117|233119|233120|233121|233125|233128|233129|233130|233135|233136|233137|233139|233140|233141|233142|233143|233144|233145|233147|233148|233150|233151|233156|233159|233161|233163|233166|233169|233170|233176|233177|233178|233180|233181|233183|233185|233186|233189|233190|233191|233192|233194|233195|233196|233197|233199|233200|233201|233202|233203|233204|233205|233208|233210|233211|233212|233213|233216|233217|233218|233221|233222|233224|233225|233227|237761|239511|239512|239518|239519|239520|239521|239522|239523|239524|239525|239526|239527|239528|239529|239530|239531|239532|239534|239536|239537|239538|239539|239540|239541|239542|239543|239544|239545|239546|239547|239549|239550|239551|239552|239553|239554|239555|239556|239557|239558|239560|239561|239562|239563|239564|239565|239566|239567|239568|239569|239570|239571|239572|239573|239574|239575|239576|239577|239578|239579|239580|239581|239582|239583|239584|239586|239587|239588|239589|239590|239591|239592|239593|239594|239595|239596|239597|239598|239599|239600|239601|239602|239603|239604|239605|239606|239607|239608|239609|239610|239611|239612|239613|239614|239615|239616|239617|239619|239620|239621|239622|239623|244085|244086|244087|244088|244410|244413|244416|244417|244418|244419|244420|244421|244422|244423|244426|244427|244435|244436|244439|244440|244441|244443|244447|244448|244449|244450|244451|244452|244453|244454|244455|244456|244457|244458|244459|246969|248490|251611|259788|259789|259791|259800|264174|264221|267576|294906|294911|294920|294923|294929|296697|296698|300412|300427|300432|358749|358750|358751|358752|358753|358754|358755|358756|358757|358758|358759|358760|358761|358762|358763|358764|358765|358766|358767|358768|358769|358770|358771|358772|358773|358774|358775|358776|358777|358778|358779|358780|358781|358782|358783|358784|360864|361861|361862|367720|367723|367727|367746|367752|367755|367761|367763|367766|367774|367782|367792|367794|367796|367800|367807|367822|367823|368039|368041|368044|368048|368051|368057|368062|368067|368068|368073|368083|368084|368086|368089|368091|368098|368110|368111|368114|368119|368120|368132|368134|368141|368145|368160|368176|368181|368191|368194|369243|369280|369293|369295|369296|369299|369306|369311|369313|369348|369353|369365|369373|369379|369381|369404|369406|394158|394162|394166|394178|394184|394188|394189|394197|394199|394201|394202|394220|394227|394231|394231|394238|394240|394242|394244|394246|394252|394257|394260|394263|394267|394272|394276|394289|394291|394293|394294|394296|394299|394302|394304|394306|394308|394312|394317|394318|394319|394321|394324|394329|394331|394333|394335|394340|394341|394342|394343|394345|394346|394347|394348|394349|394350|394353|394354|394355|394358|394359|394363|394368|394374|394375|394378|394380|394381|394384|394385|394387|394389|394390|394392|394394|394395|394397|394398|394399|394401|394403|394404|394405|394407|394408|394410|394411|394412|394413|394416|394417|394418|394419|394421|394424|394425|394426|394427|394428|394429|394430|394432|394433|394434|394435|394436|394439|394440|394442|394443|394445|394446|394448|394449|394451|394455|394456|394459|394461|394462|394463|394464|394465|394466|394470|394471|394475|394476|394478|394480|394481|394482|394483|394484|394485|394486|394488|394489|394491|394493|394494|394495|394496|394500|394504|394505|394507|394508|394512|394513|394514|394515|394516|394520|394521|394523|394525|394526|394527|394529|394532|394534|394535|394542|394543|394547|394549|394551|394562|394564|394565|394567|394573|394574|394577|394581|394585|394586|394614|394623|394626|394633|394634|394639|394640|394643|394648|394649|394652|394653|394660|394661|394663|394664|394666|394667|394670|394673|394675|394680|394683|394685|394686|394687|394688|394689|394693|394697|394698|394699|394700|394701|394705|394707|394708|394710|394711|394712|394714|394717|394718|394721|394722|394723|394725|394726|394727|394733|394745|394754|394772|394775|394779|394785|394789|394804|394812|394813|394814|394825|394828|394830|394835|394837|394843|394845|394853|394856|394863|394871|394878|394880|394888|394896|394908|394912|394913|394922|394927|394928|394931|394934|394947|394948|394950|394952|394955|394956|394961|394964|394973|394974|394976|394980|394982|394985|394990|394991|394992|394993|394997|395003|406479|406480|406481|406482|406485|406486|406488|406489|406490|406491|406492|406493|406495|406496|406498|406500|406502|406503|406504|406507|406510|406513|406514|406515|406518|406519|406520|406522|406525|406526|406527|406528|406529|406532|406534|406535|406536|406537|406538|406541|406542|406544|406546|406547|406548|406550|406551|406552|406553|406555|406558|406560|406563|406564|406565|406566|406567|406568|406573|406575|406577|406578|406579|406580|406581|406582|406583|406584|406585|406587|406588|406589|406590|406593|406594|406597|406598|406600|419003|419591|419592|419593|419594|419597|419602|419603|419604|419611|419612|419614|419615|419616|419617|419618|419619|419628|419630|419631|419637|419639|419640|419645|419656|419660|419665|419668|419672|419675|419676|419683|420992|421024|421025|421030|421036|421037|421505|427247|427249|427251|427256|427257|427260|427264|427267|427271|427281|427290|427299|427314|432579|432583|432585|432587|432588|432590|432592|432593|432596|432598|432601|433004|443647|453598|453601|453602|453612|453614|453665|453667|453671|453673|453678|453680|453691|453692|453695|453697|453700|453702|453704|453710|453710|453711|453716|453723|453725|453729|453733|453741|453745|453751|453756|453757|453758|453760|453764|453771|453773|453776|453784|453789|453790|453792|453796|453801|453802|453804|453808|453811|453815|453825|453826|453828|453838|453842|453847|453850|453852|453853|453859|453862|453868|453870|453876|453877|453879|453880|453889|453892|453897|453897|453901|453910|453911|453912|453914|453922|453926|453928|453932|453933|453934|453936|453938|453941|453945|453946|453948|453951|453953|453955|453957|453959|453962|453963|453964|453966|453968|453971|453972|453973|453974|453977|453978|453981|453983|453984|453985|453987|453988|453989|453990|453993|453995|453996|453997|453998|454000|454001|454003|454004|454005|454012|454013|454014|454017|454019|454021|454022|454024|454026|454028|454031|454032|454034|454036|454037|454041|454042|454043|454045|454048|454049|454050|454052|454053|454055|454056|454057|454059|454060|454063|454068|454070|454073|454074|454075|454076|454079|454080|454081|454082|454083|454084|454085|454086|454087|454088|454089|454090|454091|454093|454094|454096|454097|454100|454101|454103|454104|454105|454106|454107|454108|454109|454111|454113|454114|454116|454117|454118|454119|454122|454123|454125|454126|454127|454128|454129|454130|454131|454132|454133|454134|454135|454137|454139|454140|454142|454143|454145|454146|454147|454151|454154|454155|454160|454162|454164|454166|454168|454168|454171|454175|454176|454177|454180|454182|454183|454185|454188|454189|454190|454192|454193|454194|454198|454200|454202|454203|454206|454209|454210|454210|454212|454213|454214|454217|454219|454221|454223|454225|454227|454228|454229|454230|454231|454232|454233|454237|454240|454243|454248|454250|454252|454253|454254|454255|454258|454259|454260|454262|454263|454265|454266|454267|454268|454270|454273|454274|454276|454277|454278|454280|454281|454282|454283|454284|454285|454286|454287|454288|454292|454294|454313|454316|454318|454322|454325|454332|454346|454350|454355|454359|454361|454366|454374|454375|454379|454382|454383|454387|454389|454395|454398|454399|454400|454403|454412|454420|454423|454429|454436|454441|454443|454444|454446|454450|454454|454463|454468|454469|454470|454473|454475|454477|454479|454481|454483|454483|454485|454486|454494|454495|454496|454497|454500|454502|454503|454504|454507|454508|454513|454514|454515|454521|454522|454524|454527|454528|454531|454532|454533|454534|454539|454540|454541|454544|454549|454550|454552|454555|454556|454558|454561|454562|454564|454567|454568|454569|454570|454571|454573|454576|454578|454580|454581|454582|454584|454586|454587|454590|454591|454593|454596|454601|454604|454608|454609|454612|454613|454618|454619|454621|454623|454625|454626|454629|454640|454641|454647|454650|454662|454664|454667|454682|454683|454693|454695|454697|454699|454700|454702|454704|454708|454713|454715|454725|454729|454733|454735|454736|454740|454744|454747|454748|454753|454755|454762|454767|454779|454784|454791|454801|454803|454807|454809|454811|454812|454830|454831|454848|454851|454869|454872|454873|454880|454881|454882|454883|454885|454885|454887|454888|454890|454891|454897|454900|454901|454902|454907|454908|454912|454914|454922|454936|454937|454942|473513|473523|473525|473527|473531|473533|473562|473569|473581|473592|473594|473598|473600|473602|473604|473606|473607|473608|473609|473615|473617|473622|473624|473628|473635|473637|473645|473648|473655|473658|473659|473664|473669|473670|473673|473677|473678|473679|473680|473681|473691|473692|473693|473694|473696|473699|473700|473702|473707|473708|473709|473712|473715|473719|473720|473724|473727|473728|473730|473733|473734|473735|473736|473737|473746|473753|473755|473758|473759|473765|473771|473775|473776|473777|473778|473779|473780|473781|473782|473785|473788|473789|473797|473798|473799|473800|473803|473806|473807|473810|473812|473816|473818|473819|473820|473821|473823|473824|473828|473829|473833|473834|473838|473839|473844|473849|473850|473854|473857|473858|473861|473863|473864|473865|473865|473869|473873|473876|473878|473887|473888|473889|473893|473897|473900|473902|473907|473908|473909|473911|473912|473913|473915|473922|473926|473927|473929|473933|473934|473935|473936|473941|473945|473948|473949|473951|473952|473953|473955|473957|473960|473961|473962|473964|473967|473970|473973|473975|473976|473977|473981|473984|473987|473989|473990|473992|473998|474000|474003|474004|474006|474009|474010|474011|474012|474014|474015|474020|474022|474036|474037|474038|474043|474045|474046|474058|474059|474075|474085|474099|474103|474106|474112|474117|474122|474127|474129|474148|474168|480465|480466|482542|482553|482568|482572|482579|482580|482582|482586|482587|482592|482593|482594|482596|482597|482599|482601|482603|482606|482609|482611|482612|482616|482617|482618|482619|482621|482622|482625|482626|482636|482639|482645|482650|482651|482654|482662|482666|482676|482680|482681|482686|482688|482700|483740|483756|483784|483795|483797|483803|483805|483811|483812|483813|483816|483817|483822|483824|483828|483835|483840|483843|483852|483854|483855|483857|483861|483864|483868|483869|483872|483877|483881|483883|483885|483887|483894|483895|483901|483904|483907|483912|483915|483919|483921|483929|483933|483935|483939|483950|483953|483956|483968|483980|483995|483999|484029|484049|484055|485614|485617|485620|485622|485624|485629|487026|487090|487092|487117|487118|487130|487149|487160|487161|496350|496381|496795|496796|496817|500582|500593|500597|500609|500614|500889|500899|500923|500934|501075|520154|520176|520179|520187|520188|520190|520192|520195|520202|520211|520218|520220|520224|520225|520230|520234|520236|520237|520242|520244|520246|520251|520259|520261|520264|520268|520272|520276|520277|520279|520286|520296|520301|520309|520317|520318|520319|520320|520322|520323|520328|520329|520330|520332|520333|520335|520337|520340|520341|520344|520346|520348|520349|520351|520353|520357|520358|520360|520361|520362|520365|520371|520372|520374|520376|520383|520384|520385|520387|520389|520390|520391|520396|520397|520399|520400|520403|520404|520406|520407|520408|520409|520414|520416|520419|520421|520423|520424|520426|520435|520438|520441|520447|520463|520464|520469|520474|520476|520480|520482|520484|520486|520487|520491|520492|520497|520499|520503|520504|520516|520519|520521|520530|520531|520533|520535|520541|520542|520544|520548|520557|520562|520566|520567|520569|520570|520572|520573|520575|520576|520577|520578|520581|520584|520586|520587|520588|520589|520590|520591|520592|520595|520598|520601|520603|520604|520607|520609|520611|520612|520613|520614|520615|520617|520618|520620|520621|520622|520624|520626|520628|520629|520631|520633|520634|520635|520636|520637|520638|520639|520640|520641|520642|520643|520645|520646|520648|520649|520650|520652|520655|520657|520658|520664|520668|520669|520673|520675|520679|520680|520681|520682|520689|520690|520691|520692|520693|520695|520704|520706|520707|520709|520711|520714|520717|520719|520722|520724|520725|520727|520728|520730|520732|520734|520735|520736|520737|520739|520741|520742|520746|520750|520751|520753|520755|520756|520757|520758|520762|520763|520764|520766|520767|520769|520770|520774|520775|520777|520778|520779|520781|520782|520783|520785|520787|520788|520790|520791|520792|520797|520801|520804|520805|520807|520809|520810|520811|520812|520813|520814|520819|520820|520825|520829|520830|520831|520834|520835|520837|520838|520840|520847|520849|520854|520857|520860|520871|520874|520878|520880|520884|520900|520906|520907|520908|536215|536301|539130|539131|539235|539236|539237|539238|539239|539240|539241|539242|539243|539244|539245|539246|539247|550673|550677|551852|559853|559855|559857|559859|559861|559863|559865|559867|559869|559871|559873|559875|559877|559879|559881|559883|559885|559887|559889|559891|559893|559895|559897|559899|559901|559903|559905|559907|559909|559911|559913|559915|559917|559919|559921|559923|559925|559927|559929|559931|559933|559935|559937|559939|559941|559943|559945|559947|559949|559951|559953|559954|559955|559957|559959|559961|559963|559965|559967|559969|559970|559971|559972|559974|559976|559978|559980|559982|559984|559986|559988|559990|559992|559994|559996|559998|560000|560002|560004|560006|560008|560010|560012|560014|560016|560018|560020|560022|560024|560026|560028|560030|560032|560034|560036|560038|560040|560042|560044|560046|560048|560050|560052|560054|560056|560058|560060|560062|560064|560066|560068|560070|560072|560074|560076|560078|560080|560082|562288|562313|562314|562315|562317|562325|562330|562332|562334|562341|562345|562355|562357|562369|562372|562376|562377|562382|562385|562386|562388|562389|562391|562393|562395|562398|562399|562403|562405|562406|562409|562413|562415|562417|562419|562421|562426|562428|562435|562438|562441|562446|562449|562451|562453|562455|562458|562460|562462|562464|562466|562468|562470|562472|562474|562480|562482|562488|562490|562491|562498|562505|562507|562509|562522|562529|562532|562534|562538|562543|562545|562546|562550|562552|562562|562564|564162|564172|564176|564195|564204|564205|564212|564213|564215|564216|564222|564223|564228|564230|564231|564243|564246|564252|564265|564266|564268|564269|564271|564275|564277|564279|564280|564281|564292|564293|564298|564301|564305|564306|564307|564316|564317|564320|564324|564335|564341|564344|564351|564352|564358|564362|564363|564364|564369|564375|564380|564383|564384|564391|564394|564404|564412|564414|575712|575713|575714|575715|575717|575718|575719|575720|575721|575722|575723|575724|575725|575727|575728|575729|575730|575731|575732|575733|575734|575735|578306|609166|609167|611055|611056|611062|611064|611067|611068|611069|611996|617037|617040|617043|617044|617049|617057|617059|617064|617065|617075|617078|617085|617086|617087|617088|617089|617093|617098|617106|617114|617123|617139|617142|617149|617153|617162|617167|617174|617177|617187|617191|617200|617210|617212|617213|617214|617215|617220|617221|617225|617226|617231|617235|617238|617241|617243|617246|617248|617254|617255|617259|617269|617270|617272|617281|617284|617285|619271|619357|619364|632553|632554|632555|632556|632557|632558|632559|632560|632561|632562|632563|632564|632565|632566|632567|632568|632569|632570|632571|632572|632573|632574|632575|632576|632577|632578|632579|632580|632581|632582|632583|632584|632585|632586|632587|632588|632589|632590|632591|632592|632593|632594|632595|632596|632597|632598|632599|632600|632601|632602|632603|632604|632605|632606|632607|632608|632609|632610|632611|632612|632613|632614|632615|632616|632617|632618|632619|632620|632621|632622|632623|632624|632625|632626|632627|632628|632629|632630|632631|632632|632633|632634|632635|632636|632637|632638|632639|632640|632641|632642|632643|632644|632645|632646|632647|632648|632649|632650|632651|632652|632653|632654|632655|632656|632657|632658|632659|632660|632661|632662|632663|632664|632665|632666|632667|632668|632669|632670|632671|632672|632673|632674|632675|632676|632677|632678|632679|632680|632681|632682|632683|632684|632685|632686|632687|632688|632689|632690|632691|632692|632693|632694|632695|632696|632697|632698|632699|632700|632701|632702|632703|632704|632705|632706|632707|632708|632709|632710|632711|632712|632713|632714|632715|632716|632717|632718|632719|632720|632721|632722|632723|632724|632725|632726|632727|632728|632729|632730|632731|632732|632733|632734|632735|632736|632737|632738|632739|632740|632741|632742|632743|632744|632745|632746|632747|632748|632749|632750|632751|632752|632753|632754|632755|632756|632757|632758|632759|632760|632761|632762|632763|632764|632765|632766|632767|632768|632769|632770|632771|632772|632773|632774|632775|632776|632777|632778|632779|632780|632781|632782|632783|632784|632785|632786|632787|632788|632789|632790|632791|632792|632793|632794|632795|632796|632797|632798|632799|632800|632801|632802|632803|632804|632805|632806|632807|632808|632809|632810|632811|632812|632813|632814|632815|632816|632817|632818|632819|632820|632821|632822|632823|632824|632825|632826|632827|632828|632829|632830|632831|632832|632833|632834|632835|632836|632837|632838|632839|632840|632841|632842|632843|632844|632845|632846|632847|632848|632849|632850|632851|632852|632853|632854|632855|632856|632857|632858|632859|632860|632861|632862|632863|632864|632865|632866|632867|651182|651212|651214|651216|651229|651230|651234|651242|651248|651250|651252|651254|651287|651296|651299|651303|651334|651387|651390|651391|651394|651400|651401|651402|651403|651404|651406|651407|651408|651411|651412|651413|651415|651417|651420|651422|651426|651427|651428|651433|651434|651436|651437|651438|651440|651442|651444|651445|651446|651447|651448|651450|651451|651452|651454|651455|651456|651457|651460|651462|651465|651467|651469|651470|651471|651472|651478|651481|651488|651490|651491|651492|651493|651494|651498|651500|651502|651505|651507|651509|651510|651512|651513|651515|651517|651519|651521|651522|651524|651530|651531|651533|651536|651539|651541|651542|651547|651554|651556|651557|660620|686568|686570|691643|691644|691645|691648|691649|691652|709560|709561|734802|749128|749130|749132|749135|764682|764683|764703|764715|764720|764721|764722|764724|764731|764733|764734|764736|764737|764745|782072|782073|782074|782075|782077|782078|782082|782085|782087|782089|787224|789452|789465|789466|790489|790490|790491|790492|790493|790494|790495|790496|790497|790498|790499|790500|790501|790502|790503|790504|790505|790506|790507|790508|790509|795606|807796|807798|807800|807803|807804|807809|807811|807819|807826|807839|807849|807857|807862|807885|807889|807894|807895|807907|807939|807944|807949|807960|807962|807965|807976|808004|808005|808009|808018|808030|808047|808068|808090|808101|808104|808106|808119|808122|808123|808124|808128|808141|808152|808154|808155|808161|808164|808168|808179|808182|808185|808189|808196|808200|808203|808210|808219|808223|808225|808228|808238|808257|808267|808274|808275|808286|808289|808295|808300|819505|819506|819507|819508|819509|819510|819511|819512|819513|819516|819517|819518|819519|819520|819521|819522|819523|829580|829581|829582|829583|829584|829585|829586|829587|829588|829589|829590|829591|829592|829593|829594|829595|829596|829597|829598|829599|829600|829601|829602|829603|829604|829605|829606|829607|829608|829609|829610|829611|829612|829613|829614|829615|829616|829617|829618|829619|829620|829621|829622|829623|829624|829625|829626|829627|829628|829629|829630|829631|829632|829633|829634|829635|829636|829637|829638|829639|829640|829641|829642|829643|829644|829645|829646|829647|829648|829649|829650|829651|829652|829653|829654|829655|829656|829657|829658|829659|829660|829661|829662|829663|829664|829665|829666|829667|829668|829669|829670|829671|829672|829673|829674|829675|829676|829677|829678|829679|829680|829681|829682|829683|829684|829685|829686|829687|829688|829689|829690|829691|829692|829693|829694|829695|829696|829697|829698|829699|829700|829701|829702|829703|829704|829705|829706|829707|829708|829709|829710|829711|829712|829713|829714|829715|829716|829717|829718|829719|829720|829721|829722|829723|829724|829725|829726|829727|829728|829729|829730|829731|829732|829733|829734|829735|829736|829737|829738|829739|829740|829741|829742|829743|829744|829745|829746|829747|829748|829749|829750|829751|829752|829753|829754|829755|829756|829757|829758|829759|829760|829761|829762|829763|829764|829765|829766|829767|829768|829769|829770|829771|829772|829773|829774|829775|829776|829777|829778|829779|829780|829781|829782|829783|829784|829785|829786|829787|829788|829789|829790|829791|829792|829793|829794|829795|829796|829797|829798|829799|829800|829801|829802|829803|829804|829805|829806|829807|829808|829809|829810|829811|829812|829813|829814|829815|829816|829817|829818|829819|829820|829821|829822|829823|829824|829825|829826|829827|829828|829829|829830|829831|829832|829833|829834|829835|829836|829837|850998|851145|851230|851232|851831|859361|909804|909827|909840|909852|909854|909866|909890|909903|909942|909969|909999|910000|910005|910054|910057|910065|910069|910071|910077|910081|910085|910094|910122|910134|910135|910146|915403|916937|916939|916944|923627|923628|923629|923630|923631|923632|923633|923634|923635|923636|923637|923638|923639|923640|923641|923642|923643|923644|923645|923646|923647|923648|923649|923650|923651|923652|923653|923654|923655|923656|923657|923658|923659|923660|923661|923662|923663|923664|923665|923666|923667|923668|923669|923670|923671|923672|923673|923674|923675|923676|923677|923678|923679|923680|923681|923682|923683|923684|923685|923686|923687|923688|923689|923690|923691|923692|923693|923694|923695|923696|923697|923698|923699|923700|923701|923702|923703|923704|923705|923706|923707|923708|923709|923710|923711|923712|923713|923714|923715|923716|923717|923718|923719|923720|923721|923722|923723|932491|932492|932493|932494|932495|932496|932497|932498|932499|932500|932501|932502|932503|932504|932505|932506|932507|932508|932509|932510|932511|932512|932513|932514|932515|932516|932517|932518|932519|932520|932521|932522|932523|932524|932525|932526|932527|932528|932529|932530|932531|932532|932533|932534|932535|932536|932537|932538|932539|932540|932541|932542|932543|932544|932545|932546|932547|932548|932549|932550|932551|932552|932553|932554|932555|932556|932557|932558|932559|932560|932561|932562|932563|932564|932565|932566|932567|932568|932569|932570|932571|932572|932573|932574|932575|932576|939975|940788|940789|940790|944160|944161|944162|944163|944164|944165|944166|944167|944168|944169|944170|944171|944172|944173|944174|944175|944176|944177|944178|944179|944180|944181|944182|944183|944184|944185|944186|944187|944188|944189|944190|944191|944192|944193|944194|944195|944196|944197|944198|944199|944200|944201|944202|944203|944204|944205|944206|944207|944208|944209|944210|944211|944212|944213|944214|944215|944216|944217|944218|944219|944220|944221|944222|944223|944224|944225|944226|944227|944228|944229|944230|944231|944232|944233|944234|944235|944236|944237|944238|944239|944240|944241|944242|944243|944244|944245|944246|944247|944248|944249|944250|944251|944252|944253|944254|953879|953880|953881|953882|953883|953884|953885|953886|953887|953888|953889|953890|953891|953892|953893|953894|953895|953896|953897|953898|953899|953900|953901|953902|953903|953904|953905|953906|953907|953908|953909|953910|953911|953912|953913|953914|953915|953916|953917|953918|953919|953920|953921|953922|953923|953924|959740|959741|960545|964238|966389|970797|976523", + "text": "Familial adenomatous polyposis 1" + }, + { + "baseId": "15836|15837|15838|15839|15850|15855|15862|15863|15871|15878", + "text": "Gardner syndrome" + }, + { + "baseId": "15836|15868|33882|49939|49941|49944|49947|49948|49949|49950|49951|49952|49953|49955|49959|49962|49964|49965|49966|49973|51408|51409|51412|51413|51414|51415|51417|51419|51420|93507|94143|94147|94148|94151|94152|94153|94154|98256|98259|98260|132745|132752|136436|136453|136485|136497|136511|137256|137261|137263|137269|139395|139396|139402|139406|139416|139418|139421|139425|139428|139432|139436|140110|140111|140113|140114|150882|151150|151332|151402|151657|151915|180171|180193|180207|180217|180234|182352|182353|182357|182359|182384|182386|182402|182416|182427|182443|182478|182480|182483|182484|186026|212392|212412|212422|221524|221552|233003|233121|233137|233142|233144|233148|233221|233225|239530|239538|239602|294905|294906|294910|294911|294920|294922|294923|294924|294929|294934|294938|294939|294947|294949|294950|296697|296698|296702|296704|296707|296708|296709|296713|296715|296716|296717|300409|300412|300416|300417|300418|300419|300422|300423|300425|300427|300428|300432|300433|300439|300441|300442|300446|300447|300453|300456|300464|300465|300468|358771|367774|367807|369246|394830|394952|454083|454198|454355|454463|454532|473948|483756|483852|484002|520880|617228|632658|764683|807810|807929|808106|892631|892632|892633|892634|892635|892636|892637|892638|892639|892640|892641|892642|892643|892644|892645", + "text": "APC-Associated Polyposis Disorders" + }, + { + "baseId": "15836|27632|139810|152315|227671|552359|581788|612029|612031", + "text": "Pilocytic astrocytoma" + }, + { + "baseId": "15837|15846|15849|15850|15861|20630|21703|28794|49960|133499|139407|139421|152171|180205|182399|226318|226319|226320|226321|226322|226372|419003", + "text": "Colorectal cancer, susceptibility to" + }, + { + "baseId": "15837|15838|15845|15846|15847|15849|15850|15851|15855|15860|15861|15863|15870|15874|33882|49939|49941|49944|49948|49949|49950|49953|49960|49963|49966|50194|50206|51410|51411|51418|51421|93766|94472|94473|98253|98257|132732|132738|132752|132759|132763|132769|136511|137244|137257|137263|139402|139406|139421|139438|140111|150577|150666|151082|151229|152288|173540|173984|180167|182313|182336|182339|182342|182368|191748|212389|212414|214662|214664|214670|214682|214693|215306|226318|232984|233042|233044|233046|233052|233062|233075|233127|233133|233209|239546|239564|244421|244422|244423|244434|246969|394347|394577|394685|394723|406490|406515|406522|419614|419619|419639|421027|421030|427229|427230|427231|427232|427233|427234|427235|427236|427237|427238|427239|427240|427241|427243|427244|427246|427247|427248|427249|427250|427251|427252|427253|427254|427255|427256|427257|427258|427261|427263|427264|427265|427267|427268|427269|427270|427272|427273|427274|427275|427276|427277|427279|427280|427281|427282|427283|427284|427285|427286|427287|427288|427289|427290|427291|427292|427293|427294|427296|427297|427298|427299|427300|427301|427302|427303|427304|427305|427306|427307|427308|427309|427310|427315|427579|427580|427581|427582|427583|427584|427585|432595|443651|454626|487023|487116|487132|487134|487141|496347|496412|496797|520782|537761|550680|612087|621183|621184|621189|621734|808073|905908|916935|916938|920491|983955", + "text": "Familial multiple polyposis syndrome" + }, + { + "baseId": "15840|15846|15849|15855|15861|16794|18408|18409|20332|20333|20507|20596|20678|20738|20918|20919|21298|21797|21798|21919|21920|23171|23172|23173|23174|23728|23729|24487|24550|24551|24767|28691|28694|28695|28696|28938|29000|29001|29002|29003|29005|29022|29241|29242|31303|31390|31391|32113|32615|32616|38609|49949|49951|49969|50192|50193|50195|50206|51408|51418|95724|96145|98259|132745|132769|133170|133288|133302|133516|137257|137506|137516|137518|138162|138599|139421|150666|150996|151049|151150|151332|151404|152318|152717|166273|166274|171787|171788|171789|171790|171791|171792|171793|171794|171795|180708|180735|180975|181542|182313|182336|182409|182441|184222|184243|184276|186210|200719|200720|200721|200722|200723|200724|200725|200726|200727|200728|200729|200730|200731|200732|200733|200734|200735|200736|200737|200738|200739|200740|200741|200742|200743|200744|200745|200746|200747|200748|200749|200750|200751|200752|200753|212406|212460|213168|214682|222460|222482|223358|223359|223360|223361|223362|227197|233008|233031|233058|235168|235189|235483|242041|242900|242906|247653|248647|248648|248649|251904|256353|327448|347927|363531|394231|394291|400896|401063|402341|402370|402900|402952|402990|403007|409552|453710|453897|454168|454210|454483|454885|467237|467353|473827|473865|477616|477736|517748|528761|529267|530769|531657|534326|536301|550675|550682|550685|790548|818468|818554|818555|818566", + "text": "Carcinoma of colon" + }, + { + "baseId": "15840|22852|22868|23582|23584|27386|27388|27394|27395|27397|27398|27403|27404|27405|27408|27409|27422|27617|27618|27619|27620|27621|27622|27623|27632|27641|27642|27643|27645|27646|27650|27652|28375|28377|28378|28691|28692|28693|28694|28695|28696|28698|28916|28938|28939|28940|28996|29000|29006|29009|29010|29011|29013|29022|29755|30972|30973|31651|32616|32619|32622|32626|32627|32628|36163|36171|36173|37785|40609|40610|44227|48247|48304|48938|48939|48940|49030|49213|49214|53970|53980|54158|54282|54283|54284|54289|54290|54291|54633|70450|80852|83949|98735|100947|133271|133272|133274|133276|133277|139098|150515|150535|151476|151732|151858|151897|152428|166215|166563|171614|172332|173901|174177|175715|175854|176503|176758|179419|181000|181001|185345|185350|185366|185367|185371|185375|185394|191748|194404|206650|212414|213392|213398|213402|213942|213943|216786|222738|232035|233761|236459|236461|236462|236463|236469|236471|236477|236479|236481|239564|242978|242980|245074|247393|260191|263939|359197|360335|362753|362755|362768|362770|362771|362772|362774|362775|362776|362777|362778|362779|362822|362825|362826|362837|362838|362840|362841|362842|362843|362844|362845|362846|362847|362860|362865|362866|362867|362868|362873|362875|362876|362877|362878|362879|362895|362896|362912|362914|362918|362928|362929|362930|362938|362939|362940|362941|362942|362952|362979|363008|363067|363068|363110|363121|363123|363126|363140|363174|363201|363203|363204|363220|363222|363223|363239|363247|363248|363249|363250|363251|363255|363263|363264|363265|363266|363267|363270|363271|363272|363273|363283|363285|363289|363290|363293|363294|363295|363296|363297|363298|363299|363300|363301|363302|363303|363304|363305|363306|363317|363318|363321|363322|363323|363324|363325|363326|363336|363348|363352|363353|363354|363355|363356|363357|363358|363359|363360|363361|363362|363363|363364|363365|363366|363367|363368|363369|363370|363371|363372|363373|363374|363375|363376|363377|363378|363379|363380|363381|363382|363384|363385|363386|363388|363389|363393|363398|363399|363400|363416|363417|363418|363419|363420|363438|363439|363440|363441|363442|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363453|363454|363455|363456|363461|363462|363463|363469|363470|363471|363472|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363494|363495|363496|363497|363498|363499|363503|363504|363505|363506|363507|363508|363512|363513|363514|363515|363516|363517|363518|363519|363520|363521|363522|363523|363524|363525|363528|363529|363530|363531|363534|363535|363538|363542|363543|363544|363545|363546|363547|363548|363552|363553|363554|363555|363556|363557|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|363572|363573|363574|363575|363576|363618", + "text": "Neoplasm of the large intestine" + }, + { + "baseId": "15841|15842|15846|15849|18559|20332|20333|20333|20337|20338|22613|22805|22807|27285|27621|27623|28329|28691|28694|28697|28918|29759|49949|49951|49969|50193|50226|51408|51418|98259|132769|133281|133297|133302|133303|138598|139421|139695|150591|150666|150996|151150|151332|151404|152450|179930|181678|182313|182336|182409|182441|184387|212406|212460|214646|214682|232272|233008|233031|233058|362773|363046|363100|363113|363116|394231|404747|453710|453897|454168|454210|454483|454883|454885|473865|536301|538960|550667|550673|578398|614238|918038", + "text": "Neoplasm of stomach" + }, + { + "baseId": "15845|15853", + "text": "Brain tumor-polyposis syndrome 2" + }, + { + "baseId": "15846|15849|15879|20508|21076|22800|27386|27388|27391|27392|27393|27394|27395|27403|27404|27405|27407|27408|27409|27422|27641|27642|27645|27652|28691|28692|28694|28695|28697|28698|28939|29022|29834|29835|30972|30973|32616|32617|32618|32619|32620|32621|32622|32623|32625|32626|32627|32628|40609|44227|48304|49949|49951|49969|51408|51418|52763|54284|83949|98259|100947|132769|133271|133272|133274|133276|133277|137276|137693|139098|139421|150535|150666|150855|151150|151314|151332|151404|151476|151595|151773|151955|166215|171613|171614|179419|180995|181000|182313|182336|182409|182441|182669|185345|185366|185367|185371|185375|185384|185394|206650|212406|212460|212544|213392|213398|213402|213943|214682|222738|226760|232035|233008|233031|233058|236461|236463|236469|236471|236477|236481|242978|242980|245074|260191|260192|263517|263518|263519|263520|263521|263939|309444|359197|360335|362753|362768|362770|362771|362772|362773|362774|362775|362844|362865|362866|362887|362894|362895|362896|362912|362933|363107|363108|363109|363110|363112|363113|363114|363121|363123|363186|363201|363258|363259|363260|363265|363266|363267|363269|363270|363271|363272|363273|363307|363317|363318|363322|363323|363344|363345|363346|363347|363349|363350|363351|363352|363353|363354|363360|363405|363406|363407|363408|363410|363411|363438|363439|363440|363441|363442|363448|363449|363450|363451|363452|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363494|363495|363496|363497|363498|363499|363509|363510|363511|363512|363513|363514|363516|363517|363518|363519|363520|363526|363527|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363538|363539|363540|363541|363545|363546|363547|363548|363553|363554|363555|363556|363557|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|394231|395996|396013|419628|432418|443454|453710|453897|454168|454210|454483|454885|455993|473865|491079|522734|522773|536301|566301|790393|790394|903539", + "text": "Hepatocellular carcinoma" + }, + { + "baseId": "15846|15849|15857|15872|15876|49948|49949|49951|49969|51408|51418|98259|132769|139421|150666|151150|151332|151404|182313|182336|182409|182441|212406|212460|214682|221526|233008|233031|233058|394231|453710|453897|454168|454210|454483|454885|473865|536301", + "text": "Desmoid disease, hereditary" + }, + { + "baseId": "15850|15851", + "text": "Periampullary adenoma" + }, + { + "baseId": "15855", + "text": "Adenomatous polyposis coli with congenital cholesteatoma" + }, + { + "baseId": "15855|27395|182336|358777|363372|486821|486822", + "text": "Malignant Colorectal Neoplasm" + }, + { + "baseId": "15855|360864", + "text": "Adenomatous colonic polyposis" + }, + { + "baseId": "15855", + "text": "Hyperplastic colonic polyposis" + }, + { + "baseId": "15855", + "text": "Intestinal polyp" + }, + { + "baseId": "15855", + "text": "Duodenal polyposis" + }, + { + "baseId": "15855", + "text": "Gastric polyposis" + }, + { + "baseId": "15855|21230|137262|550681|550732", + "text": "Colon adenocarcinoma" + }, + { + "baseId": "15855|15861|20642|27403|27404|27413|29000|46603|52759|94753|94755|94763|95045|96129|99638|99640|99642|99647|99648|101927|102771|132759|132775|133391|133398|133400|133418|133517|137774|137778|137779|137780|137782|137785|137788|137795|137796|137804|140050|150735|169823|169825|169826|169830|169831|169834|169835|169836|171100|180211|182432|185986|191007|191199|192635|193836|193839|195293|208797|208799|215445|222238|226351|227849|227854|236490|236689|241293|241375|243458|247757|265631|271024|338245|338250|338256|338271|338276|347905|347913|347955|351664|351674|351691|351692|352602|362739|362743|362744|362745|362746|363512|379858|400244|406503|431929|438546|473598|488136|488148|492538|493637|493638|513785|514281|534478|534841|572013|572016|572017|572022|573419|574141|574142|574143|590606|590610|649528|649529|649530|653288|705951|705953|705956|717474|729208|729209|729218|731426|731427|742927|742935|742936|773567|773568|773569|778625|807908|821465|821466|849375|849376|849377|849378|917838|929496|941282|959101|960349|964238|964656|973094|980453", + "text": "Colorectal cancer" + }, + { + "baseId": "15856|27398|32619|32620|32621|139537|181051|432378|432388|432391", + "text": "Hepatoblastoma" + }, + { + "baseId": "15861", + "text": "Adenomatous polyposis coli, susceptibility to" + }, + { + "baseId": "15861|16284|16285|16821|18062|18072|18087|20630|20630|20640|20642|23084|23984|28432|66873|132093|132119|132156|132221|132225|132267|132794|132798|132871|133499|133528|133532|133585|137376|151098|151118|151260|151270|151274|152066|152122|180433|180519|183348|183467|183471|213319|234712|240887|244622|246794|389282|397887|476493|480186|485382|535740|535741|535742|535743|535744|535745|535746|535747|535748|535749|535750|535751|564370|569950|810246|849160|967155|967208", + "text": "Breast cancer, susceptibility to" + }, + { + "baseId": "15877|32619", + "text": "Desmoid tumor, somatic" + }, + { + "baseId": "15882|45589|45675|45676|45677|45678|45679|134815|134816|134817|141757|141758|141759|141760|192578|202127|202128|202130|202131|202132|202133|202134|202135|202136|202138|202140|203288|269762|303275|303276|303285|303286|303287|303293|303294|303295|303297|303299|303300|303305|303314|306614|306615|306616|306617|306619|306621|306623|306626|306628|306630|306636|306658|306670|311499|311500|311502|311507|311518|311520|311524|311531|311538|311539|311543|311545|311546|311547|311548|311551|311654|311664|311667|311674|311678|311686|311687|311688|311690|311712|311714|311715|369920|407243|456487|456846|456878|456883|457379|457381|457387|457540|457541|457542|457548|457909|493738|511718|522787|522788|523043|523235|539008|539415|549633|550302|552118|561099|561729|561732|564397|566143|567108|579491|636313|636314|636315|636316|636317|651687|651762|655800|683925|766357|766358|788819|819912|833808|833809|833810|833811|833812|833813|833814|898315|898316|898317|898318|898319|898320|898321|898322|898323|898324|898325|898326|898327|898328|898329|898330|898331|898332|898333|898334|898335|898336|898337|898338|898339|898340|898341|898342|924900|933979|933980|933981|933982|933983|933984|933985|945750|945751|955207|955208|955209", + "text": "Epilepsy, progressive myoclonic 3" + }, + { + "baseId": "15883|15884|34346|34347|34348|34349|34350|34351|34352|34353|34354|48051|48052|89775|101414|101415|101416|101417|101419|101420|101421|101422|101423|101424|177270|191248|207942|236963|268636|268988|316277|316279|316282|316283|316289|316290|316293|316294|316296|316304|316306|316307|323630|323632|323637|323661|323662|323664|323665|323681|323683|323685|323690|323692|323693|323694|323702|323703|323721|323722|323726|323736|329778|329780|329783|329788|329789|329790|329794|329803|329806|329807|329810|329820|329837|329841|329843|329849|329854|329858|331046|331050|331050|331051|331071|331071|331072|331073|331076|331083|331085|331086|331087|331090|331091|331099|331103|331104|331106|371882|372614|372875|374645|374645|413355|444943|489736|526714|584648|656109|666582|802179|859948|869480|869481|869482|869483|869484|869485|869486|869487|869488|869489|869490|869491|869492|869493|869494|869495|869496|869497|869498|869499|869500|869501|869502|869503|869504|869505|869506|869507|869508|869509|869510|869511|869512|869513|869514|869515|869516|869517|869518|869519|869520|869521|869522|869523|869524|872205|872206|872207|983763|983767", + "text": "Cutis laxa with osteodystrophy" + }, + { + "baseId": "15886|15887|49799|82782|136092|136093|267743|322502|322506|322514|322515|322522|322526|322528|322529|322530|322532|322535|331887|331888|331893|331896|331899|331902|338880|338881|338890|338891|338892|338895|338896|338901|338905|338907|338909|338914|338921|340507|340510|340512|340513|340514|340516|340517|340525|340526|340527|340529|340532|340533|340536|413400|577384|622427|754446|793528|793534|873499|873500|873501|873502|873503|873504|873505|873506|873507|873508|873509|873510|873511|873512|873513|873514|873515|873516|873517|873518|873519|873520|873521|873522|873523|873524|873525|971016", + "text": "Spinocerebellar ataxia type 11" + }, + { + "baseId": "15888|26968|26968|26969|26970|26971|26972|26973|48323|48325|48326|48327|48328|48329|94405|103452|103456|103461|103463|103464|103466|103470|103473|103478|103487|103491|103493|103512|103523|103524|103526|135085|142016|142017|190748|214395|214396|231816|231819|231821|244709|244711|244712|323152|329248|330408|444905|462167|526895|527212|537210|565034|566309|571185|571186|571187|624452|640599|640600|640601|640602|640603|640604|640605|652649|775896|779494|784267|799664|839260|839261|839262|839263|839264|839265|839266|839267|839268|839269|935901|935902|935903|935904|935905|940240|940241|941020|947775|956742|956743|960021|960772", + "text": "Porokeratosis 3, disseminated superficial actinic type" + }, + { + "baseId": "15889|15890|15891|15892|15893|15894|34595|34596|34597|39879|39880|39881|39882|76657|76658|76660|76661|190644|190645|247131|272298|327762|327766|327772|327778|327785|327786|327790|327796|327797|327801|327805|327810|327813|327814|327816|327820|327822|327824|327825|327827|327828|327841|327843|327846|337587|337589|337592|337595|337598|337601|337603|337608|337615|337619|337622|337624|337630|337631|337633|337648|337649|337652|337653|337660|337665|343820|343821|343823|343827|343828|343829|343830|343832|343835|343839|343844|343853|343859|343861|343862|343873|343875|343878|343879|345313|345316|345318|345319|345325|345328|345329|345330|345332|345333|345335|345336|345339|345341|505819|704047|727078|877022|877023|877024|877025|877026|877027|877028|877029|877030|877031|877032|877033|877034|877035|877036|877037|877038|877039|877040|877041|877042|877043|877044|877045|877046|877047|877048|877049|877050|877051|877052|877053|877054|877055|877056|877057|877058|877059|877060|877061|877062|877063|877064|877065", + "text": "Congenital defect of folate absorption" + }, + { + "baseId": "15895|15896|15897|15898|15899|15900|15901|15902|15903|49835|275884|275890|275891|275892|275893|275896|275898|275899|275901|275905|275907|275908|275911|275914|275915|275917|275919|275920|275922|275968|275975|275976|275980|275981|275986|275987|276000|276001|276003|276007|276008|276012|276013|276070|276071|276072|276073|276075|276078|276079|276085|276089|276176|276177|276178|276192|276196|276197|276203|276209|276214|276215|276226|276227|276228|276229|276273|353030|353031|861934|861935|861936|861937|861938|861939|861940|861941|861942|861943|861944|861945|861946|861947|861948|861949|861950|861951|861952|861953|861954|861955|861956|861957|861958|861959|861960", + "text": "Schnyder crystalline corneal dystrophy" + }, + { + "baseId": "15904|15905", + "text": "Deafness, autosomal dominant 50" + }, + { + "baseId": "15906|15907|15908|15909|15910|15911|141066|141067|141068|141069|141070|211413|211414|211415|211416|211417|211419|211421|211422|211423|253586|253587|253589|253590|253591|253593|308912|308915|308916|313608|313612|313614|313627|313628|319391|319403|319406|319407|319413|319419|319979|353860|370474|370993|371354|390671|390675|390676|407727|434633|502686|502688|525246|539024|539025|553126|553127|553128|553129|553130|553131|563329|565996|611364|638429|820170|836328|836329|836330|902513|902514|902515|902516|902517|902518|902519|902520|902521|902522|902523|902524|902525|902526|903444|904215|946689", + "text": "Fructose-biphosphatase deficiency" + }, + { + "baseId": "15912|15914|75258|75259|75260|75261|226073|226074|226075|226076|226077|226078|672264|816437|818164", + "text": "Congenital anomalies of kidney and urinary tract 1, susceptibility to" + }, + { + "baseId": "15912|15913|28975|28977|28986|28993|28994|28995|36221|36228|36230|36269|36275|36287|36305|45384|50278|50282|50284|50285|101890|101891|101892|132022|132023|132024|136461|136472|138926|139807|139815|139817|139819|139827|139828|139830|139833|139835|171125|182944|182948|182956|182958|186117|186118|212767|212783|212784|212794|221946|226095|240788|240790|240797|240802|271973|310269|310270|310276|310292|310293|310301|310303|310308|310309|310315|310324|310330|310333|310334|310337|315391|315392|315393|315394|315397|315398|315399|315400|315401|315409|315411|315412|315418|315419|321368|321369|321370|321384|321385|321388|321398|321411|321412|321414|321415|321417|321419|321420|321423|322063|322066|322067|322068|322098|322103|322120|322121|322125|322128|322139|322140|322141|322142|322151|322153|322160|322161|322168|338416|338421|338422|338423|338429|338433|338436|348048|348055|348056|351761|351764|351766|351767|351769|351771|351772|352633|352634|352635|352636|352637|352638|353127|353128|358824|358829|378752|397269|397444|397680|397699|459817|460008|460025|460251|460316|460325|460677|460686|475107|513591|525176|539281|569630|569655|729247|745381|836830|865863|865864|865865|865866|865867|865868|865869|865870|865871|865872|865873|865874|865875|865876|865877|865878|865879|865880|865881|865882|868471|868472|891421|891422|891423|891424|891425|891426|891427|891428|891850", + "text": "Renal hypodysplasia/aplasia 1" + }, + { + "baseId": "15915", + "text": "Malaria, mild, susceptibility to" + }, + { + "baseId": "15916", + "text": "Mucopolysaccharidosis, type vi, intermediate" + }, + { + "baseId": "15916|15917|15918|15919|15920|15921|15922|15923|15924|15925|15926|15927|15944|98261|98262|98263|98265|98267|98268|106583|177363|187113|190201|252017|260944|270323|272117|298115|298119|298121|298122|298123|298129|298130|298133|298134|298136|298137|298142|298147|298148|298153|298157|298158|298160|298162|298169|298171|298172|298174|298189|298194|298198|300414|300415|300420|300421|300429|300431|300434|300437|300443|300445|300457|300458|300463|300467|300479|300487|300488|300491|300492|300494|300498|304682|304685|304687|304693|304703|304704|304706|304713|304718|304729|304730|304733|304753|304764|304765|304766|304768|304947|304952|304953|304963|304964|304966|304967|304968|304971|304977|304987|304993|304994|304995|305000|305001|305002|305019|305028|353738|368534|406764|421553|438296|438558|438559|438560|438561|438562|438563|438564|438565|481744|481745|487135|487184|487321|488214|521246|521253|521605|521863|538379|539968|549596|549597|550383|550384|550385|550386|550387|550388|550389|550390|550391|550392|550393|550394|550395|550396|550397|550398|550399|550400|550401|550402|550403|550404|550405|550406|550407|550408|550409|550410|550411|550412|550413|550414|550415|550416|550417|550418|550419|550420|550421|550422|550423|550424|550425|550426|550427|550428|550429|550430|550431|550432|550433|550434|550435|550436|550437|550438|550439|550440|550441|550442|550443|550444|550445|550446|550447|550448|550449|550450|550451|550452|550453|550454|550455|550456|550457|550458|550459|550460|550461|550462|550463|550464|550465|550466|550467|550468|550470|550471|550472|550473|550474|550475|550476|550477|550478|550479|550480|550481|550482|550483|550484|550485|550486|550487|550488|550489|550490|550491|550492|550493|550494|550495|550496|550497|550498|550499|550500|550501|550502|550503|550504|550505|550506|550507|550508|550509|550510|550511|550512|550513|550514|550515|550516|550517|550518|550519|550520|550521|550522|550523|550524|550525|550526|550527|550528|550529|550530|550531|550532|550533|550534|550536|550537|550538|550539|550540|550541|550542|550543|550544|550545|550546|550547|550548|550549|550550|550551|550554|550555|550556|610697|626152|634032|634033|634037|634038|651233|710019|721539|721542|735208|744154|749607|749608|749609|749610|759489|765224|765226|765227|782341|782345|782346|787300|788785|819611|819612|821923|830966|830967|830968|830970|830971|851040|894709|894710|894711|894712|894713|894714|894715|894716|894717|894718|894719|894720|894721|894722|894723|894724|894725|894726|894727|894728|894729|894730|894731|894732|894733|894734|894735|894736|894737|894738|894739|894740|894741|894742|894744|894745|894746|894755|894756|896137|896139|904203|924114|924116|940817|944663|954199|954204|960571|963139|978209|978212|978214|978215", + "text": "Mucopolysaccharidosis type 6" + }, + { + "baseId": "15917|15919|15920|15921|15922", + "text": "Mucopolysaccharidosis, type vi, severe" + }, + { + "baseId": "15918", + "text": "Mucopolysaccharidosis, type vi, mild" + }, + { + "baseId": "15919|15924|18088|18089|18090|18091|18092|18093|18096|18097|18099|18102|18103|18104|18105|18107|18108|18109|18110|18111|18112|18113|18114|18116|18117|18119|18120|18121|18123|18124|18125|18126|18129|18130|34036|34038|34039|55236|55237|55239|55244|55245|55246|55247|79003|79007|79008|79013|79017|79020|79023|79024|79025|79028|79035|79039|79040|79042|79044|79045|79046|79050|79052|79053|79054|79055|79056|79057|79058|99022|99024|99026|99027|99028|99030|99031|99032|99033|99035|99036|99987|137043|175007|175287|175289|177490|187069|187070|187071|187072|187073|190193|194841|195894|195895|253830|257717|260266|265187|265223|265398|272614|310742|310745|310771|310806|310808|310811|316006|316010|316044|316047|316059|316063|322088|322102|322108|322109|322114|322165|322166|322713|322714|322725|322726|322738|322776|338622|338626|338627|338628|338632|338634|338636|338640|338646|338647|338660|338662|338667|348187|348189|348191|348195|348196|348205|348206|348209|348215|348216|348218|348221|348228|348232|348233|348236|348240|348247|348254|348264|348265|351857|351860|351862|351864|351866|351895|351896|351901|351902|351904|351906|351907|351908|351909|351918|351922|351923|351925|352691|352692|352693|352694|352695|352696|352697|352698|352699|352700|352701|352702|352703|352704|352705|352706|352707|353137|353139|353147|353148|353153|358673|358674|358675|358676|358677|358678|358679|358680|358681|358682|358683|358684|358685|358686|358687|358688|358689|358690|360618|361603|404849|407907|411048|413618|424607|424608|424609|424610|424611|424612|424613|430596|438867|471607|486311|488065|489866|513675|534023|534336|549113|549118|549122|549124|549126|549130|549132|549176|549178|549180|549184|549185|549186|549187|549301|549302|549307|549308|549310|549314|549315|549318|549447|549448|549449|549450|549451|549452|549453|549454|549455|550497|572047|573429|573433|574159|621204|621655|622488|639143|639144|649555|649556|649557|649558|649559|649560|649561|694753|694754|694755|694756|706022|712459|712460|724053|729318|729319|737588|737591|743041|743042|743043|743044|743045|743046|752248|752249|752250|752251|758191|758192|767962|767964|767965|773644|773645|773646|773647|776859|776865|783731|786653|786656|786657|786658|786659|786660|786661|786662|789093|789094|789095|789096|789097|789098|789099|789100|789101|798775|849461|849462|849463|849464|849465|849466|849467|849468|851932|853025|860743|891514|891515|891516|891517|891518|891519|891520|891521|891522|891523|891524|891525|891526|891527|891528|891529|891530|891531|891532|891533|891534|891535|891536|891537|891538|891539|891540|891541|891542|891543|891544|891545|891546|891547|891548|891549|891861|891862|917329|917330|917570|921252|929512|929513|939366|939367|939368|951534|951535|951536|951537|959133|959134|959135|959136|959137|962075|962076|962077|962078|962079|962080|962081|962082|962910|965929|978776|978777|978778|978779|978780|978781|978782|978783|978784|978785|978786|978787|978788|978789|978790|978791|978792|978793|978794|978795|978796|978797|978798|978799|978800|978801|978802|978803|978804|980076|980077|980078|980203|983841|983842", + "text": "Metachromatic leukodystrophy" + }, + { + "baseId": "15928", + "text": "Autoimmune disease 1" + }, + { + "baseId": "15929", + "text": "Bowen-Conradi syndrome" + }, + { + "baseId": "15930|39868|39869|135540|135541|135542|135543|135544|135545|135546|142594|142596|142599|142600|142601|192515|204466|207424|207425|211264|211266|211269|211274|211277|211280|211281|211282|211285|211288|211289|211292|226903|227304|273972|301222|301228|301229|304366|304374|308982|308999|309010|309012|309107|309108|368781|428634|481453|481454|511690|513424|539005|552109|621024|621039|692076|692077|735809|750271|759506|759674|765901|765903|765907|782686|790665|790666|790667|857620|857621|897008|900277|920230|963143|964915|965415|978366|978367|978368|978369|978370", + "text": "Pontocerebellar hypoplasia type 6" + }, + { + "baseId": "15931|166015|626087", + "text": "Wolfram syndrome 2" + }, + { + "baseId": "15932|15933|15934|15935|15936|15937|15938|15939|15940|15941|15942|15943|15944|15945|15946|15947|98494|98495|98496|106587|188278|194281|227309|303243|303244|303248|303252|303253|306560|306564|306567|306577|306583|311472|311475|311478|311479|311642|311647|457526|487321|522775|522777|523033|549626|549629|562127|562136|566129|581757|581758|590118|610518|621278|626171|636305|636306|682113|692259|692260|692261|692262|692263|692265|695367|711091|779429|790749|790750|819904|819906|819907|833796|833797|833798|898282|898283|898284|898285|898286|898287|898288|898289|898290|898291|898292|898293|898294|898295|898296|898297|898298|898299|900385|900386|919109|924898|924899|933977|963269", + "text": "Mucopolysaccharidosis type 7" + }, + { + "baseId": "15933|15947|188270|188271|188272|188273|188275|188276|188277|188278|188279|188280|188281|188282|188283|188284|215038|215039", + "text": "Non-immune hydrops fetalis" + }, + { + "baseId": "15948|15949|15950|15951|48159|256828|265057|332773|332775|332780|332782|342930|342936|342937|342941|342942|342948|348272|348275|348279|348280|348282|348284|348286|348297|348298|348301|348307|348308|349474|349477|349479|349482|349485|349489|349491|349494|349497|349498|349501|349505|349507|349508|377333|410546|413500|426292|438096|506582|551357|551358|551359|551360|551361|551362|551363|551364|551365|551366|551367|551368|551369|551370|551371|551372|551373|551374|551375|551376|551377|551378|551379|551380|551381|551382|551383|551384|551385|551386|551387|551388|551389|620905|622257|622258|622259|622266|716243|727984|741667|880068|880069|880070|880071|880072|880073|880074|880075|880076|880077|880078|880079|880080|880081|880082|880083|880084|880085|880086|880709", + "text": "Autosomal recessive congenital ichthyosis 5" + }, + { + "baseId": "15952|15953|15954", + "text": "CARBONIC ANHYDRASE II VARIANT" + }, + { + "baseId": "15952|15955|15956|15958|15959|195548|253178|273146|305944|305945|305948|305949|305951|309985|309988|309990|315288|315289|315364|315382|315383|315386|315388|353844|513295|620305|620306|792774|900087|900088|900089|900090|900091|900092|900093|900094|900095|962051", + "text": "Osteopetrosis with renal tubular acidosis" + }, + { + "baseId": "15960|75280|94455|101793|101795|101797|141875|141877|141878|141880|141881|176935|177066|177330|177820|181488|181489|181490|190890|191074|191075|195389|196050|196051|196305|196306|196307|196308|196309|196310|196312|201187|201189|201190|201191|201192|201193|201194|201198|201199|201200|201201|201203|201204|201208|201209|201211|201212|201213|201215|201221|201222|201223|201225|201226|201227|201228|201231|201234|201236|201237|201238|201239|201240|201241|201242|201243|201244|201247|206856|206858|206860|206862|238364|238365|250169|262998|264065|271793|281999|282022|282651|359289|365410|365417|365425|365585|365588|365606|365620|365623|365624|365639|365810|391365|391377|391378|391424|391430|391513|391514|391522|391608|405300|405301|425399|434570|440524|442929|442932|448574|448580|448583|448584|448731|448732|448740|448741|448745|448753|448762|448765|448808|448815|448819|498670|498896|498902|498934|516349|516351|516352|516362|516367|516384|516389|516439|516441|516447|516453|516455|516457|516461|516463|516464|516466|516469|516472|516474|516482|516484|539963|539964|551760|552052|557471|557528|557530|557532|557571|557573|557575|558731|558733|558735|558737|558739|558741|558743|559214|559216|559218|559220|559222|559224|559228|559230|578920|628462|628463|628464|628465|628466|628467|628468|628469|628470|628471|628472|628473|628474|628475|628476|628477|628478|628479|628480|628481|628482|628483|628484|628485|628486|628487|650826|683394|683396|685843|685844|685846|685849|690746|690747|746789|746791|762205|762206|774574|780840|790051|790052|790053|792909|794777|800682|801976|819048|819049|819050|821851|821852|821853|821854|821855|821856|821857|821858|821859|821860|821861|821862|821863|821864|821865|821866|821867|821868|821869|824780|824781|824782|824783|824784|824785|824786|824787|824788|824789|824790|824791|824792|824793|824794|824795|824796|824797|824798|824799|824800|824801|824802|824803|824804|824805|824806|824807|824808|824809|824810|824811|918672|918673|922248|922249|922250|922251|922252|922253|922254|922255|930808|930809|930810|930811|930812|930813|930814|930815|930816|930817|930818|930819|930820|942239|942240|942241|942242|942243|942244|942245|942246|942247|942248|942249|952634|952635|952636|952637|952638|962030|965922|970712", + "text": "Mental retardation, autosomal dominant 1" + }, + { + "baseId": "15961", + "text": "Autosomal recessive osteopetrosis 6" + }, + { + "baseId": "15962|15962|15963|15963|15964|15965|15966|15967|15968|15968|15971|15973|15974|15975|15977|15978|15979|15980|15981|15982|15983|15984|15984|15987|98800|98802|98803|98805|98807|98808|98813|98814|98817|98819|106590|106591|106592|191759|192236|198618|205010|205010|244010|244010|247388|251094|259759|259759|268409|404764|443416|488319|511481|513262|513535|519256|542920|542929|542931|542932|542934|542937|542939|542941|542944|542948|542958|542960|542962|542965|542967|542970|543091|543093|543095|543098|543109|543110|543114|543117|543122|543156|543170|543173|543181|543184|543185|543186|543188|543190|543192|543193|543194|543195|543198|543200|543202|543206|543207|543208|543214|543215|543217|543219|543220|543222|543223|543224|543226|543242|543243|553376|677122|788764|789350|806439|815872|861129|906152|971843|971844|971845|971846", + "text": "Infantile GM1 gangliosidosis" + }, + { + "baseId": "15962|15963|15964|15965|15965|15968|15969|15974|15974|15977|15978|15979|15980|15981|15982|15984|15984|15987|98800|98802|98803|98805|98807|98808|98813|98814|98817|98819|192236|205010|244010|247388|251094|259759|268409|404764|443416|488319|511481|513535|519256|542920|542929|542931|542932|542934|542937|542939|542941|542944|542948|542958|542960|542962|542965|542967|542970|543091|543093|543095|543098|543109|543110|543114|543117|543122|543156|543170|543173|543181|543184|543185|543186|543188|543190|543192|543193|543194|543195|543198|543200|543202|543206|543207|543208|543214|543215|543217|543219|543220|543222|543223|543224|543226|543242|543243|553376|971843|971844|971845|971846", + "text": "GM1 gangliosidosis type 3" + }, + { + "baseId": "15962|15962|15963|15963|15964|15964|15965|15967|15968|15970|15971|15971|15972|15974|15974|15975|15975|15976|15977|15977|15978|15978|15979|15979|15980|15980|15980|15981|15981|15981|15982|15982|15983|15984|15984|15984|15985|15985|15987|79371|98800|98801|98802|98802|98803|98804|98804|98805|98806|98806|98807|98808|98808|98809|98811|98812|98813|98813|98814|98814|98816|98817|98819|98821|134600|177750|177750|177751|191759|192236|195238|195238|198618|205010|205010|244010|247388|247388|251092|251094|251094|251095|251095|259759|259759|259759|268409|268409|268409|290008|290009|290015|290019|290020|290020|290021|290770|290771|290772|290774|290774|290776|290776|290779|290779|290780|293940|293941|293941|293942|293942|293948|294402|294405|294406|294409|294409|359418|359418|368399|368399|404764|404764|413623|414933|414933|443416|443416|488319|488319|511481|511481|513535|513535|519256|519256|542920|542929|542931|542932|542934|542934|542937|542937|542939|542941|542941|542944|542948|542958|542960|542962|542965|542967|542970|543091|543093|543095|543098|543109|543110|543114|543117|543117|543122|543156|543170|543173|543181|543184|543185|543186|543188|543190|543190|543192|543193|543194|543195|543198|543200|543202|543206|543207|543207|543207|543208|543214|543215|543215|543215|543217|543217|543219|543220|543222|543223|543223|543224|543226|543242|543243|549547|553376|553376|559427|559427|631173|631174|631175|631176|631177|631178|651170|672002|691372|691373|691375|691376|691377|695198|698038|698039|698039|698040|708787|708788|708788|734026|734026|734027|734029|763816|763818|763820|774802|777248|805341|819366|827900|827901|827902|827903|827904|827905|827906|888665|888666|888667|888668|888669|888670|888671|888672|888673|888674|888675|891635|891636|891637|923139|940747|940748|943476|943477|953435|953436|959694|975775", + "text": "Mucopolysaccharidosis, MPS-IV-B" + }, + { + "baseId": "15962|15963|15964|15965|15968|15974|15974|15977|15978|15979|15980|15981|15982|15983|15984|15984|15987|77007|77008|79370|79371|79372|98800|98802|98803|98805|98807|98808|98813|98814|98817|98819|192236|195238|198618|205010|244010|247388|247388|251094|259759|268409|404764|443416|488319|488319|511481|513535|519256|542920|542929|542931|542932|542934|542937|542939|542941|542944|542948|542958|542960|542962|542965|542967|542970|543091|543093|543095|543098|543109|543110|543114|543117|543122|543156|543170|543173|543181|543184|543185|543186|543188|543188|543190|543192|543193|543193|543194|543195|543198|543200|543202|543206|543207|543208|543214|543215|543217|543219|543220|543222|543223|543223|543224|543226|543242|543243|553376|672002|672008|798530|971843|971844|971845|971846", + "text": "GM1 gangliosidosis type 2" + }, + { + "baseId": "15962|15963|15963|15964|15964|15967|15971|15971|15974|15975|15978|15978|15980|15981|15983|15984|15984|15985|15985|79371|98801|98802|98804|98804|98806|98806|98808|98809|98811|98812|98813|98814|98814|98816|98817|98820|98821|134600|177750|177751|191759|192236|195238|195238|198618|198618|205010|247388|247388|251092|251094|251095|251095|259759|268409|290008|290009|290015|290017|290019|290020|290020|290021|290770|290771|290772|290774|290774|290775|290776|290776|290779|290779|290780|293940|293941|293941|293942|293942|293948|293951|294402|294405|294406|294409|294409|294412|359418|368399|404764|404764|413623|414933|443416|488319|511481|519256|542934|542937|542941|543117|543188|543190|543207|543207|543215|543215|543217|543223|549547|553376|553376|559427|631173|631174|631175|631175|631176|631177|631178|651170|672002|691372|691373|691375|691376|691377|695198|698038|698039|698039|698040|708787|708788|708788|734026|734026|734027|734029|763816|763818|763820|774802|777248|805341|805341|819366|827900|827901|827902|827903|827904|827904|827905|827906|888665|888666|888667|888668|888669|888670|888671|888672|888673|888674|888675|891635|891636|891637|905905|906358|906362|916909|923139|940747|940748|943476|943477|953435|953436|959694|961839|961840", + "text": "GM1 gangliosidosis" + }, + { + "baseId": "15980|15984|15985|15986|15987", + "text": "GM1-gangliosidosis, type I, with cardiac involvement" + }, + { + "baseId": "15988|15989|15990|75138|75139|88570|140838|140839|140840|140841|140842|140844|140845|140846|140847|140848|140850|140851|140852|140853|140854|140855|140856|140857|140858|140859|140860|174549|174550|174690|174691|174696|174697|174825|174826|175103|175104|175110|175111|193766|195457|215402|226224|226225|229688|229690|229691|236911|237163|259926|266815|308106|308113|308115|308119|308141|308211|308345|308363|308442|308443|308482|308483|308503|308511|308574|308576|308579|308582|312197|312198|312480|312593|312596|312803|312804|312858|312897|312917|312924|313003|313004|313019|313021|313022|317883|317885|317887|318105|318335|318342|318343|318386|318398|318399|318657|318770|318778|318795|318799|318804|318805|318807|318812|318843|318845|318846|318914|318915|318928|318929|319005|319274|319326|319373|319375|319376|319385|319410|319421|319439|319447|319477|319550|319551|359803|359811|363998|370372|370443|370886|370891|370946|370949|370952|370956|371207|371211|371231|371280|372961|372971|372977|373060|373066|373067|373074|389910|407684|407710|407711|407712|415196|421748|434741|444469|444475|444500|444502|444503|444504|444505|444508|458128|459128|459168|459170|459425|459613|459972|459975|460098|494071|497054|497117|503168|503370|503425|503426|511837|523828|524107|524402|524408|524411|524510|524515|524637|524638|524642|524643|524650|524802|524808|524867|524869|524871|524921|524928|524931|524997|525079|525163|525166|525167|525169|525172|525174|562600|563183|563185|563240|563241|563245|563271|563275|563276|563278|563280|563286|564078|564084|564086|564094|564096|565359|565851|565855|565856|565857|565860|565928|565930|565932|565938|565940|565941|565946|565949|569121|569128|569131|569134|569135|612862|614346|638182|638183|638184|638185|638186|638187|638188|638189|638190|638191|638192|638193|638194|638195|638196|638197|638198|638199|638330|638331|638332|638333|638338|638339|638340|638341|638342|638343|638344|638345|638346|638347|638348|638349|638350|638351|638352|638353|638354|638355|638356|638357|638358|638359|651835|651840|651843|651849|651851|651854|651949|651950|651953|652029|652040|652064|652070|652218|655962|723534|723541|723553|723582|723583|730645|737105|737106|737136|737145|737152|744376|751666|751679|751711|751736|759752|759910|767372|767378|767430|767431|767440|775548|775556|779422|783392|783420|787635|790911|790913|790914|820110|820111|820112|820113|820114|820115|820116|820125|820126|820128|820129|820130|820131|820132|820133|820134|820142|820143|820145|820146|835987|835988|835989|836006|836037|836038|836039|836040|836041|836042|836043|836060|836061|836062|836063|836064|836065|836066|836164|836165|836169|836170|836171|836172|836173|836174|836175|836176|836177|836178|836179|836180|836181|836182|836183|836184|836185|836186|836187|836188|836189|836190|836191|836192|836193|836194|836195|836196|836197|836198|836199|836200|836201|836202|836203|836204|836205|836206|836207|836208|836209|836210|836211|836212|836213|836214|836215|836216|836217|851742|858762|901881|901882|901883|901884|901885|901886|901887|901918|901919|901920|901934|901935|901936|901937|902057|902058|902059|902060|902061|902076|902077|902091|902092|902113|902127|902129|902173|902178|902192|902206|902207|902208|902209|902211|902212|902213|902256|902257|902258|902259|902260|902261|902262|902263|902264|902265|902266|902267|902268|903380|903385|903388|903413|903414|903415|903416|903418|903419|919235|919236|920273|925557|925558|925559|925560|925561|925562|925602|925603|925604|925605|925607|925608|925609|925610|925611|925612|925613|925614|925615|925616|925617|925618|925619|925620|925621|934723|934724|934733|934734|934735|934736|934784|934785|934786|934788|934789|934790|934791|934792|934793|934794|934795|934796|934797|934798|934799|934800|940151|946581|946582|946590|946591|946592|946640|946641|946642|946643|946644|946645|946646|946647|946648|946649|946650|946651|946652|946653|946654|946655|955855|955860|955861|955862|955863|955864|955865|959919|959921|976658|980464", + "text": "Hyperimmunoglobulin E recurrent infection syndrome, autosomal recessive" + }, + { + "baseId": "15991|15992|15993|15994|15994|15995|15995|15996|15997|15998|15999|16000|16000|16001|16002|16004|29346|39863|190736|190737|191147|191148|191149|191323|191755|192718|192804|192806|192886|195224|195572|195868|206562|206563|208145|208146|208170|208171|208172|208172|208173|208174|214462|242569|255132|255133|255134|255135|255137|255138|255140|255141|255142|255145|255147|255148|255150|255151|268271|322119|322129|322130|322133|331398|331399|331401|331412|331413|331415|331419|338295|338297|338302|338306|338311|338316|338319|340107|340111|340112|340113|340122|340128|343069|360967|401431|409200|422005|422134|424507|426088|429631|429631|429633|429634|429636|429637|429638|429639|429641|429642|445685|445685|467249|467261|491377|539156|539157|539158|576279|609224|609227|615958|615959|615960|615961|615962|615963|615967|615968|615969|620502|620503|620504|620505|622698|666810|703096|770064|791437|873122|873123|873124|873125|873126|873127|873128|873129|873130|873131|873132|873133|873134|873135|873136|873137|873138|873139|873140|873141|873142|873143|873144|873145|873146|873147|873148|873149|873150|873151|873152|873153|873154|876480|876481|876482|905055|961532|971588", + "text": "Tyrosinase-positive oculocutaneous albinism" + }, + { + "baseId": "15991", + "text": "Brown oculocutaneous albinism" + }, + { + "baseId": "15994|15995|15999|16000|16001|16002|19782|19783|19784|191148|208172|236894|374023|422005|429631|508884|578449|792795", + "text": "Skin/hair/eye pigmentation, variation in, 1" + }, + { + "baseId": "15995|18814|18831|18834|18835|32635|105416|105431|105472|208174|445285|494127|609202|609206|609207|609215|609216|609217|609218|609224|609225|609226|609227|609228|609229|609230|609264|609265|609266|609267|609268|609272", + "text": "Nonsyndromic Oculocutaneous Albinism" + }, + { + "baseId": "16005|16006|16007|16008|177112|177243|177374|301108|301118|301119|301123|301125|301126|301129|301130|301137|301139|301141|304121|304139|304140|304147|304156|304157|304165|304166|304167|304179|304183|304184|304185|304192|304219|304220|304221|308878|308882|308883|308884|308886|308889|308891|308894|308895|308896|308909|308913|308914|308917|308962|308964|308985|308998|309000|309002|309004|309006|309007|309008|361402|692066|692070|692071|699676|735779|735780|798916|799452|799453|799454|832577|896934|896935|896936|896937|896938|896939|896940|896941|896942|896943|896944|896945|896946|896947|896948|896949|896950|896951|896952|896953|896954|896955|896956|896957|896958|896959|896960|896961|896962|896963|896964|896965|896966|896967|896968|896969|896970|900274|900275|966586|966587|966588|966589|966590|966591|966592|966593|966594|966596", + "text": "Leber congenital amaurosis 5" + }, + { + "baseId": "16005|16007|16372|16374|16381|16870|17086|17088|17089|17094|17984|20022|20264|20604|20775|20778|20779|20879|20901|22555|28154|28154|28158|33455|38825|39736|45795|48213|71372|71373|71377|71378|90149|98766|98767|101845|102062|102064|102066|104456|104492|104710|104715|104720|104726|104730|104747|104750|104753|104756|104757|104761|104789|105003|105219|105677|105698|105739|105745|105746|105755|105767|105772|105777|105795|105802|105803|105806|106469|106470|131781|131784|131789|131790|131801|132656|140430|140432|140433|152874|152885|152893|166162|166163|166167|166170|166171|166172|166173|166174|166175|166176|166177|166178|166179|177012|177143|177274|177275|177407|177569|177574|177649|177818|186767|192056|193150|193956|194245|194735|195036|195038|195426|196354|208002|213535|214327|214330|214336|215459|222267|226069|226534|227208|238059|238060|241580|241581|241582|244072|254734|254763|265486|265487|266496|269446|269860|270116|270185|271821|271989|278313|278731|278752|278767|278948|278950|278951|279529|279543|279548|279565|280103|280136|280138|280188|280189|280191|280236|280238|280239|280242|280243|280244|280248|281153|282951|285348|285975|286003|288344|292531|292538|292539|292542|292553|292554|292558|292561|292592|292597|293944|293947|293972|293973|293974|293975|297323|297325|297328|297351|297354|297355|297356|297377|297378|297379|297385|297388|297406|302595|304192|304195|307247|308890|308894|308895|308983|318583|318585|318587|318604|321023|321024|326794|326807|326864|326876|328900|329414|329441|329443|329455|330122|332974|332978|332982|332983|333926|333959|334650|334658|339719|339732|339733|339736|339743|343885|343913|345454|345466|346805|349196|349200|349209|350128|353450|353451|353806|359276|360037|360901|361383|363660|364061|364169|377829|405000|408763|408764|408767|408772|413259|413368|413369|413658|418814|418817|418818|418820|418821|418823|418824|418825|418826|418827|418830|418831|426028|429460|429461|431560|431564|431565|431570|431637|431638|431639|431640|431664|431717|431718|431773|431776|431777|431802|431876|439631|448228|448230|462506|462765|463244|463251|463360|481582|489186|490297|496468|527405|527407|527409|527675|540977|550243|550244|550245|550246|550247|550249|550250|550251|550252|551581|551586|551591|551601|567084|568182|568185|569530|576338|609862|622989|623795|623879|623891|623892|623893|623894|623936|623977|624011|624014|624021|624030|628252|635309|641430|641431|641434|642639|642641|654353|684355|684356|684357|684358|685384|685386|688057|688060|688061|688062|688065|688066|688068|688069|688070|688071|688072|688073|688075|690054|690055|690437|690438|692065|692067|692070|692071|692072|693293|693294|693296|695586|696356|696361|696859|696863|702958|702960|706971|706972|707502|707504|710617|713770|714209|718484|719066|719067|731980|731981|731982|735782|739289|745957|746632|750240|750241|753624|759673|760254|761441|761443|762071|769332|777151|777160|778208|780423|782667|784751|791839|794252|795395|796876|800419|800421|800424|800448|800509|800512|800513|800514|800531|800544|800580|800610|800611|800614|800615|800684|800690|800703|801274|801275|801309|801331|801357|801437|801454|816462|823108|823114|823128|823139|824391|824401|824402|832551|832553|832557|832562|832564|832566|832568|832569|832570|832571|832573|832574|832578|840355|840356|840363|840368|840369|840379|840388|840395|841682|841683|841684|841690|852038|852510|870503|870508|870517|921782|952514|956982|956983|970641|970642|977470|977471|977472|977473|977474|977475|977476|977557|977558|977559|977560|977561|978354|978355|978356|978357|979302|979303|979304|979305|979306|979307|979308|979309|979310|979311|979312|979313|979314|979315|979316|979317|979318|979319|979320|979321|979322|979323|979324|979325|979326|979327|979328|979329|979330|979331|979332|979333|979334|979335|979336|979337|979338|979339|979340|979510|979511|979512|979513|979514|979515|979516|979517|979518|979519|979520|979521", + "text": "Leber congenital amaurosis" + }, + { + "baseId": "16009|399644|622414|919450|970128", + "text": "Mental retardation, fra12a type" + }, + { + "baseId": "16010|16011|16012|16013|34168|135444|202902|205210|208223|208224|213140|222433|227371|242122|242125|242126|242129|242134|242136|242137|242138|242142|255378|255379|255383|255384|255385|255386|255387|255389|323474|323482|323486|323487|323490|323492|323499|323502|323507|333179|333181|333190|333199|333200|333214|333215|333222|333224|333230|333231|333235|333236|333243|333247|340002|340005|340006|340007|340009|340010|340012|340013|340022|340029|340031|340032|340034|340036|341388|341390|341396|341397|341399|341401|341404|341406|341407|341408|341409|341411|341412|341420|341422|341424|341431|341434|341435|341436|341440|363821|400365|400376|400387|400414|400419|400511|400516|400530|400539|400540|400865|401220|401226|401232|401233|445447|464549|464561|465208|465228|465452|529135|529450|529451|529674|567316|567324|567326|569628|614402|614403|620530|620531|643586|643587|643589|684560|688496|874225|874226|874227|874228|874229|874230|874231|874232|874233|874234|874235|874236|874237|874238|874239|874240|874241|874242|874243|874244|874245|874246|874247|874248|874249|874250|874253|874254|876586|876587|876588|918031|918032|918033|918034|918035|918036|918039|918040|918041|918042|918043|918044|918045|918046|918047|918048|918049|918050|918051", + "text": "Fanconi anemia, complementation group I" + }, + { + "baseId": "16014|16015|16016|16017|550808", + "text": "Macrocephaly, macrosomia, facial dysmorphism syndrome" + }, + { + "baseId": "16016|23594|49251|50126|50180|57932|75743|75801|75812|75986|76035|76039|76077|76144|76148|76195|76217|76313|84057|187273|187274|201908|203104|205325|215524|223668|224835|224836|224837|224838|224839|224840|224841|224842|224843|224844|224845|224846|224847|224848|224849|224850|224851|237859|237860|237861|237862|237863|237864|237865|237866|237867|237868|237869|237870|237871|237872|237873|237874|237875|237876|237877|237878|237879|237880|237881|237882|237883|237884|237885|237886|237887|237888|237889|237890|237891|237892|237893|237894|237895|237896|237897|237898|237899|237900|237901|237902|237903|237904|237905|237906|237907|237908|237909|237910|237911|237912|237913|237914|237915|237916|237917|237918|237919|237920|237921|237922|237923|237924|237925|237926|237927|237928|237929|237930|237931|237932|237933|237934|237935|237936|237937|237938|237939|237940|237941|237942|237943|237944|237945|237946|237947|237948|237949|237950|237951|237952|237953|260052|260481|315038|315042|315044|315045|315046|315050|315052|315053|315055|315056|315058|315062|315064|321828|321829|321836|321839|321843|321845|321848|321849|321862|321863|321866|321875|321885|321887|322097|322099|322100|322104|322107|322110|322111|322112|322117|327887|327891|327899|327905|327907|327909|327912|327913|327927|327931|327932|327933|327938|329021|329022|329025|329026|329029|329030|329031|329032|329034|329047|329048|331378|331380|331385|331388|331389|331392|331397|338264|338269|338272|338275|338279|338287|338293|340099|340104|340105|340106|360623|363822|363839|363862|364197|374744|374752|374759|375632|375802|375813|377949|409073|421975|422128|429890|438585|438824|438884|439351|441932|441933|466891|481349|511323|512076|512868|530704|536165|551629|551630|551631|551632|551633|551634|551635|551636|551637|551638|551639|551640|551641|551642|551643|551644|551645|551646|551647|551648|551649|551650|551651|551652|551653|551654|551655|551656|551657|551658|551659|551660|551661|551662|551663|551664|551665|551666|551667|551668|551669|551670|551671|551672|551673|553316|553317|553318|553319|553320|553321|553322|553323|553324|553325|553327|553328|553329|553330|553331|553332|553333|553334|553335|553336|553337|553338|553339|553340|553341|553342|553343|553344|553345|553346|553347|553348|553349|553350|572553|576146|577575|577576|577577|577580|577582|577583|577586|577587|577588|577589|577591|577593|577595|577596|577597|577598|577599|577601|580045|580049|580050|580055|580058|580061|580074|580076|580078|580086|580094|580099|580100|580107|580110|580112|580113|580133|580134|580136|580139|580143|580144|580145|580147|580149|580150|580151|580152|580153|580155|580156|580159|580160|580161|580162|580164|580165|580167|580169|580170|580171|580173|580174|580178|580179|580181|580182|580183|580184|580186|580187|580189|580192|580193|580195|580196|580197|580200|580203|580205|580206|580208|580209|580211|580214|580216|580218|580219|580220|580221|580222|580225|580228|580232|580233|580234|580236|580237|580239|580245|580248|580250|580252|580254|580259|580263|580371|580373|580374|580376|580381|580384|580387|580389|580394|580396|580398|580400|580405|580410|580416|580421|580422|580427|580430|580442|580447|580450|580452|580454|580457|677425|789342|789343|916785|916786|916787|961471|961473|963961|966915|966946|966979|970334|970339|970343|977268|977269", + "text": "Autism spectrum disorder" + }, + { + "baseId": "16018|16019|309611|309618|309623|314432|314435|314436|314437|320472|320473|320479|320480|320949|865515|865516|865517|865518|865519|865520|865521|865522", + "text": "Age-related macular degeneration 8" + }, + { + "baseId": "16020|16021|16022|16023|142223|142224|206941|236976|366373|427987|427989|450644|499998|517726|517836|559121|614243|629474|629475|629476|629477|629478|629479|691034|774672|781186|825751|825752|825753|825754|850841|850882|940694|942613|952944", + "text": "Severe combined immunodeficiency with microcephaly, growth retardation, and sensitivity to ionizing radiation" + }, + { + "baseId": "16024", + "text": "Severe combined immunodeficiency with sensitivity to ionizing radiation due to nhej1 deficiency" + }, + { + "baseId": "16025|16026|19566|19567|20132|20133|20134|20135|22892|23725|23745|23897|23898|23899|23900|23901|23902|23903|24144|24145|24252|27680|28829|29021|29739|29746|31120|31128|31172|31198|38715|38717|44278|44282|44864|44907|45009|45017|134590|139383|151135|151136|165951|167531|173819|173835|173968|186816|187111|195351|195994|200245|207853|207854|208598|211038|211039|211046|211053|211055|211058|227236|227344|229181|259865|293779|361179|389505|414921|428730|429186|429199|429208|430214|430215|430216|430217|432333|434047|434359|434360|434361|434638|437669|437670|437743|437744|437745|437746|437747|437748|437749|437750|437751|437752|437753|437754|437755|437756|437757|437758|437759|437760|437761|437762|437763|437764|437765|437766|437767|437768|437769|437770|437771|437772|437773|437774|437775|437776|437777|437778|437779|437780|437781|437782|437783|437784|437785|437786|437787|442293|443626|469804|470212|472261|487507|496327|512807|512808|513547|514235|546120|546326|576978|577852|623536|694415|695821|704986|716446|728184|790463|790464|790465|790466|790467|790468|792729|847677|847678|847679|903588|918899|918900|918901|920407|950783|958635|961285|970859", + "text": "Type 2 diabetes mellitus" + }, + { + "baseId": "16027|33448|33449|33450|33451|143071|143072|200016|200020|200021|200025|200027|207028|287320|287322|287323|287327|287329|288040|288052|288067|288073|288079|288085|290733|290734|290735|290736|290751|290752|290971|290990|290991|290992|290993|290994|291008|367037|433946|518644|518832|552067|552068|558686|562091|620094|620095|620750|622848|672052|774886|790297|790300|806417|827074|885485|885486|887402|887403|961760", + "text": "Mitochondrial DNA depletion syndrome 9 (encephalomyopathic with methylmalonic aciduria)" + }, + { + "baseId": "16028|16030|106537|190896|191942|191943|193662|198616|269092|289273|289277|289278|289287|289288|289294|289295|289298|290056|290060|290067|290075|290084|290085|293149|293150|293151|293153|293155|293157|293161|293162|293164|293165|293597|293598|293601|293602|293605|293623|293635|293636|293639|421425|452118|493010|620759|620760|683565|686353|686358|799315|799316|799317|827649|827652|888257|888258|888259|888260|888261|888262|888263|888264|888265|888266|888267|888268|888269|888270|888271|888272|888273|888274|888275|888276|888277|888278|888279|888280|888281|888282|888283|888284|888285|888286|888287|888288|888289|888290|888291|888292|888293|891598|891599|891600|891601|971373|980154", + "text": "Asphyxiating thoracic dystrophy 2" + }, + { + "baseId": "16031|16032|16033|16034|16035|16036|16037|139197|139198|139199|139200|139201|139202|187984|187985|222996|259252|259253|262038|262039|309045|309047|313795|313810|313811|319615|319622|319641|319642|320193|320202|320203|361843|421768|514259|514260|544990|544995|545006|545010|545011|545017|545024|545028|545033|545035|545036|545038|545039|545045|545291|545297|545299|545316|545320|545323|545328|545337|545346|545366|545368|545372|545376|545377|545379|545382|545383|545388|545393|545399|545405|545406|545416|545424|545426|545430|545646|545649|545651|545655|545656|545658|545660|545661|545664|737260|751862|902630|902631|902632|902633|902634|902635|902636|902637|902638", + "text": "Xeroderma pigmentosum group A" + }, + { + "baseId": "16038|47606|47607|47608|47609|47610|919958|920431", + "text": "Spinocerebellar ataxia type 10" + }, + { + "baseId": "16039|17474|19923|20458|22452|22453|22454|23717|28628|29493|29757|29973|31129|39078|39083|39084|39085|39086|299023", + "text": "Diabetes mellitus type 2, susceptibility to" + }, + { + "baseId": "16040|16041|16042|16043|16044|16045|16046|76805|135054|135055|135056|135057|141924|141926|141927|141928|141929|141930|172081|172082|172083|172084|172085|172085|190927|193743|195779|195780|201730|201733|201736|201738|201740|201742|201743|201744|201745|201746|201746|201747|201752|201752|201753|201757|201759|207106|239333|268467|292222|292224|292229|292230|292235|292252|292254|293665|293676|293705|293708|293715|293716|296981|296993|296995|296996|296997|296998|297009|297015|297023|297025|297026|297028|297030|297042|367901|367902|367935|394134|394212|406402|424648|425599|443586|452965|453271|453273|453356|453731|453740|491691|496375|519730|519733|519759|519760|520017|520020|520023|520024|520026|550559|559547|559585|559587|559589|559738|561905|561913|561916|563464|563467|563471|576774|578701|579091|579095|579096|614274|620149|620150|620151|631942|631943|631944|631945|631946|631947|631948|631949|631950|631951|631952|651139|655595|683622|685159|686498|686499|691509|698370|709167|734455|764322|764324|774921|787410|790434|790435|790436|790437|802151|819443|819444|819445|819446|819447|819448|819449|819450|828796|828797|828798|828799|828800|828801|828802|828803|828804|828805|828806|828807|828808|828809|828810|828811|850966|851481|851588|859333|890088|890089|890090|890091|890092|890093|890094|890095|890096|890097|890098|890099|890100|890101|890102|890103|890104|890105|890106|890107|890108|890109|890110|890111|890112|890113|890114|890115|891750|918880|918881|920200|923425|923426|923427|932173|932174|932175|939956|943804|943805|943806|943807|943808|953673|953674|953675|953676|953677|953678|953679|960527|965587|971505", + "text": "Neuronal ceroid lipofuscinosis 7" + }, + { + "baseId": "16044|16939|19116|20720|21234|21406|22421|22527|23997|24242|24291|26378|28535|28541|28542|28544|28546|28548|28552|31230|31232|32539|33033|33034|34161|34162|34164|34168|34170|34261|34263|34264|34614|34616|34631|45151|51108|58105|58133|59008|59810|75270|76573|76666|76988|79397|79415|79446|79470|79508|79554|79565|79637|84706|88066|98791|98792|99331|99332|99333|99334|99335|99337|99339|99341|99565|101205|101295|101297|101585|101647|101820|102399|102400|102401|104012|104015|104029|104036|104039|104051|104071|104072|104079|104081|104203|104211|104215|107055|125784|132585|132797|133142|133794|133795|133796|133797|133798|134186|134187|134188|134189|134190|134191|134192|134193|134194|134195|134196|134197|134198|134199|134224|134225|134226|134227|134228|134231|134232|134233|134237|134306|134320|134321|134322|134323|134324|134325|134449|134450|134451|134452|134569|134571|134573|134574|134575|134611|134762|134778|134779|134783|134784|134786|134787|134788|134790|134791|134792|134793|134794|134795|134796|134797|134799|134801|134802|134803|134804|134808|134809|134810|134811|134812|134813|134814|134816|134817|135054|135055|135056|135057|135212|135213|135344|135345|135347|135348|135349|135350|135351|135354|135355|135356|135357|135359|135360|135361|135362|135426|135427|135428|135429|135435|135436|135437|135438|135439|135440|135443|135445|135470|135472|135473|135474|135475|135476|135657|135981|135982|135983|135984|135985|135986|136051|136052|136053|136054|136055|136056|140071|140073|140082|140453|140456|140459|140460|140461|140462|140463|140464|140468|140470|140473|140476|140477|140483|140486|140489|140491|140493|140495|140496|140497|140499|140503|140505|140506|140510|140740|140742|140743|140744|140750|140753|140922|140923|140925|140926|141112|141113|141117|141119|141124|141191|141401|141404|141406|141407|141409|141410|141717|141718|141719|141720|141726|141727|141729|141732|141733|141735|141736|141741|141743|141749|141753|141754|141757|141760|141815|141926|141928|142225|142451|142456|142459|142469|142472|142473|142474|142476|142482|142505|142506|142509|142510|142670|142673|142695|142696|142698|142833|142834|142837|142840|142841|142842|142844|142845|142848|142968|142972|142974|142975|142980|142981|142982|142984|142985|142986|142993|142997|143000|143001|143004|143005|143006|143007|143008|143009|143011|143012|143013|143014|143017|143018|143023|143096|143097|143099|143100|143101|153385|166182|166184|166185|166186|166187|166188|166190|166191|166192|167983|167985|168546|168757|168758|168774|168775|168777|168782|168787|168792|168884|168888|168890|169007|171000|171874|172081|172293|176972|177145|177603|177786|177787|177971|177972|177973|178089|178737|178807|181175|181397|181398|181399|181404|181409|181411|181417|181440|181442|181443|181449|181455|181464|187772|188676|188677|188696|188703|188707|188709|190110|190490|190506|190544|190553|190554|190603|190604|190746|190806|190905|190927|191016|191022|191086|191189|191539|191587|191609|191640|191676|191944|191988|192142|192144|192340|192505|192506|192509|192509|192525|192780|193143|193515|193574|193642|193664|193688|193860|194022|194102|194348|194601|194850|194851|194853|195051|195052|195053|195149|195161|195166|195236|195312|195734|195780|196240|197325|201024|201030|201031|201345|201479|201736|201746|201757|201759|201783|201793|201794|201798|201804|201833|201842|201846|201869|201895|201926|201942|201943|201950|201958|201960|202128|202130|202131|202133|202144|202149|202151|202158|202166|202174|202187|202189|202200|202202|202206|202211|202220|202222|202249|202252|202264|202265|202287|202346|202361|202387|202395|202396|202422|202433|202451|202456|202533|202549|202550|202552|202570|202577|202579|202582|202594|202607|202625|202631|202632|202684|202685|202692|202693|202697|202704|202767|202773|202775|202778|202780|202781|202784|202792|202886|202895|202896|202915|202925|202934|202949|202975|202976|202978|202988|202990|203013|203013|203036|203044|203050|203056|203057|203058|203059|203225|203228|203230|203232|203241|203242|203245|203254|203260|203280|203281|203283|203288|203289|203321|203458|203643|203653|203662|203665|203668|203679|203700|203705|203724|203728|203766|203781|203807|203812|203818|203823|204635|205216|205385|205386|206803|206807|206860|206877|206887|207616|207650|207652|207655|207915|208401|208704|208705|208706|208787|210849|214427|214799|214800|214801|214802|215118|215431|223024|223771|224877|225802|225839|226495|226495|226496|226497|226498|226499|226500|226501|226502|226589|226591|229342|230645|237071|237102|237176|238152|238286|238287|238288|238290|238292|238294|240525|240527|240528|240531|243705|243706|243707|243709|243710|243712|243714|243981|243987|243993|248813|248814|248815|249406|249939|249940|249942|249943|249944|249947|249949|249950|249952|251561|254263|254264|254266|254267|254268|254269|254270|254271|255128|255129|255130|255390|256200|256202|256231|257602|257603|257604|257605|257607|259345|259354|259357|259707|259836|260358|263009|263187|263242|263248|263262|263295|263309|263328|263358|263364|263367|263376|263409|263935|263996|264399|264576|264749|264863|265856|267446|268027|269249|270927|273452|274071|275226|275228|279957|292252|298652|302222|302896|302899|305042|306981|306985|308761|312975|314592|316481|318582|319018|322495|323345|325496|325740|328235|336426|344740|346302|351178|351499|351503|351514|351519|351885|353970|359534|360223|360315|360801|360812|360865|360889|360943|360957|360996|361004|361016|361084|361087|361271|361652|362134|362144|362151|362165|362170|362228|363759|363854|363952|364017|364496|365314|367693|367992|369362|369703|369918|370083|370135|370148|370188|370397|370557|370592|370616|370626|370639|370648|370673|370704|370708|370729|370883|370905|370982|370998|371045|371609|371752|371793|371817|372216|372297|372523|372655|372656|372733|372755|372761|372871|373359|373786|373960|374204|374296|374389|374859|375002|375027|375109|375153|375283|375603|375622|375644|376276|376374|376488|376494|376526|377105|377155|377171|377179|377180|378077|378158|378228|378254|378279|378309|378321|378350|378406|378436|378439|378443|378714|378721|379742|379756|379761|379762|389158|389178|391217|391220|391244|391249|391250|391267|391271|391277|391288|391294|391298|391306|391309|391313|391372|391379|391402|391412|391639|391641|395063|395066|395081|395686|396915|396917|396932|397025|397047|397299|398106|398765|399590|400469|402131|403285|403685|403695|403697|403960|403965|403978|403983|404201|404211|404221|404369|404375|404376|404385|404386|404400|404407|404410|404417|404799|405300|406402|407367|408486|408653|409252|409578|409603|410795|410811|410821|410996|413317|413422|413569|413774|413802|415291|421513|422177|422333|424352|425778|426245|426654|426676|426751|427828|427908|427932|427934|428040|434926|438223|438224|439048|440338|440339|441418|441433|441890|441964|442306|442312|443058|444261|444409|444898|446250|447122|447140|447228|447299|448397|452144|452274|452292|453780|454658|455317|455467|456673|458287|458842|459244|460945|461034|461088|461751|462234|462492|464759|466390|466397|466569|467033|468266|468292|468722|469519|469661|469665|469670|469674|469678|470217|470229|470237|470261|470288|470488|470691|470696|470697|470705|470715|470722|470739|471089|471101|471232|471233|471235|471238|471539|471542|471674|471676|471691|471696|471702|479763|480432|489157|490858|493596|495097|500479|501189|502199|502211|502679|503172|503492|505182|505188|505283|506707|507107|507271|507843|507877|508251|508281|511583|512868|513897|513898|513908|513909|513921|513926|513940|513983|513986|514004|514017|514019|514033|514090|514099|514107|514110|514111|514123|514124|514127|514130|514149|514182|514194|514208|514210|514220|514327|514987|515017|515095|518979|519403|521220|521404|522785|523891|524611|526001|526007|526412|526500|526515|527825|528231|530024|530432|531701|531765|533513|533769|533917|533922|533924|533928|533929|533937|533951|533977|533992|534202|534203|534285|534382|534390|534767|537008|537084|537086|539020|547515|550129|550131|550134|550226|550330|551271|551272|551698|551701|551718|551720|551737|552042|560092|561951|563403|563500|563736|566073|567113|568036|568086|569649|570392|571303|571322|571344|571882|575886|576134|576169|576540|576541|576542|576543|576544|576545|576723|577054|577068|577069|577070|577543|577895|577896|577897|577899|578383|578702|578707|578708|578709|578756|578763|578777|578781|578810|578812|578813|578814|578816|578818|578819|578820|578823|578827|578828|578829|578831|578832|578833|578834|578836|578839|578840|578841|578844|578845|578846|578847|578848|578849|578850|578851|578852|578853|578854|578855|578856|578857|578858|578859|578860|578861|578862|578863|578864|578865|578866|578867|578868|578869|578870|578871|578872|578873|578874|578875|578876|578877|578878|578879|578880|578881|578882|578883|578884|578885|578886|578889|578890|578891|578894|578895|578898|578902|578903|578904|578905|578908|578912|578913|578914|578915|578916|578921|578941|578943|578995|579004|579008|579011|579014|579017|579020|579039|579044|579045|579050|579051|579063|579084|579088|579091|579092|579093|579094|579095|579096|579097|579098|579101|579102|579103|579104|579105|579106|579107|579108|579110|579112|579114|579116|579117|579119|579120|579121|579122|579125|579218|579219|579238|579255|579263|579268|579321|579325|579346|579373|579374|579376|579377|579383|579387|579388|579389|579395|579396|579399|579401|579466|579481|579485|579491|579493|579496|579503|579508|579539|579543|579546|579548|579550|579555|579556|579558|579560|579564|579566|579567|579571|579579|579580|579584|579590|579591|579592|579594|579596|579597|579599|579601|579603|579604|579606|579615|579621|579623|579624|579626|579627|579632|579635|579687|579692|579693|579698|579699|579702|579704|579705|579707|579708|579711|579712|579713|579714|579717|579718|579719|579723|579724|579726|579728|579731|579733|579734|579740|579741|579742|579743|579744|579750|579779|579784|579787|579790|579792|579793|579794|579797|579803|579805|579807|579809|579810|579815|579816|579820|579834|579836|579915|579919|579924|579929|579942|579944|579948|579949|579950|579951|579958|579960|579977|579983|579984|579985|579988|579994|579996|579998|580007|580009|580010|580016|580019|580020|580021|580038|580057|580059|580063|580064|580065|580067|580068|580069|580070|580080|580082|580083|580229|580231|580235|580238|580240|580243|580246|580247|580249|580255|580260|580262|580266|580267|580268|580275|580277|580279|580285|580331|580334|580336|580338|580346|580349|580350|580351|580353|580354|580359|580361|580366|580367|580372|580385|580388|580393|580408|580420|580426|580428|580433|580436|580439|580441|580443|580445|580451|580455|580464|580467|580474|580477|580479|580484|580486|580493|580494|580495|580497|580505|580512|580515|580517|580554|580562|580564|580568|580570|580572|580579|580582|580583|580586|580588|580589|580593|580595|580596|580597|580599|580601|580603|580607|580610|580611|580612|580614|580617|580618|580619|580623|580626|580633|580638|580639|580642|580644|580645|580648|580651|580653|580655|580657|580658|580659|580661|580669|580671|580683|580684|580686|580691|580698|580700|580722|580723|580726|580734|580736|580739|580744|580746|580766|580768|580770|580780|580783|580785|580786|580794|590047|590048|590084|610521|610581|610592|613496|614154|614601|621906|621907|621909|621910|621916|623113|624116|626445|626446|627286|627949|628802|628836|629516|630596|630744|641220|643042|644511|644699|649000|672066|677043|677400|678942|678944|678945|679673|679677|679679|679682|679683|679689|683210|683211|683344|756763|780263|783366|792692|793858|794275|800755|800783|800985|800991|801070|801086|801130|801158|801159|801199|801200|801227|802091|802115|804831|804832|805071|805143|822141|822299|825044|829863|835824|843743|846990|848657|857388|859416|880368|906209|918956|921240|921245|921258|921442|921444|921445|921448|934238|935698|936638|937325|951031|955387|965430|965458|965459|965462|965463|965464|965466|965467|965470|965471|965475|965477|965479|965481|965486|965487|965491|965494|965495|965497|965498|965499|965501|965502|965503|965504|965506|965509|965510|965511|965513|965514|965515|965516|965521|965523|965527|965528|965529|965530|965533|965535|965538|965539|965540|965541|965542|965544|965546|965547|965549|965551|965556|965558|965559|965564|965565|965566|965573|965580|965583|965584|966218|966219|966221|966222|966223|966225|966226|966228|966230|966231|966233|966236|966241|966242|966250|966252|966253|966254|966260|966262|966263|966264|966267|966271|966277|966278|966285|966288|966289|966291|966292|966293|966298|966299|966309|966310|966312|966317|966320|967248|967249|970765|970967|970995|971284|971285|971385|971389|971391|971393|971398|971401|971403|971405|971408|971418|971419|971423|971424|971427|971432|971433|971436|971437|971438|971439|971440|971442|971446|971450|971453|971456|971457|971459|971460|971461|971464|971465|971466|971468|971469|971470|971473|971485|971486|971494|971498|980515|980652|980655|980656|980657|980664|980665|980676|980677|980678|980680|980683|980684|980686|980689|980693|980700|980701|980706|980714|980715|980718|980721|980722|980723|980725|980727|980732|980733|980736|980737|980739|980741|980742|980743|980744|980745|980747|980749|983556|983746", + "text": "Seizures" + }, + { + "baseId": "16047|16048|16049", + "text": "Retinitis pigmentosa 42" + }, + { + "baseId": "16050|16051|16052|16053|16054|16055|16056|47002|47003|47004|141071|141072|186163|186164|186165|191443|191601|194535|213504|226815|226827|243836|244817|244819|244824|316809|316813|316815|316816|316818|316820|316822|316828|316833|316836|316840|316842|316844|316845|316851|316853|316854|316856|316857|316859|316860|316863|316867|316868|316869|316873|324395|324396|324404|324413|324415|324416|324417|324419|324422|324427|324431|324432|324442|324445|324447|324458|324459|330469|330492|330495|330497|330499|330501|330511|330520|330525|330532|330549|330550|330552|330563|330566|330567|330571|330574|330586|330594|330596|330597|330604|330610|330614|331848|331849|331861|331863|331864|331872|331878|331879|331880|331882|331884|331890|331891|331894|331898|331915|331918|331934|331937|331938|331954|331958|331959|331971|331973|331974|331981|331986|331991|398958|462377|527348|578499|578500|590025|590026|590029|641075|684322|791228|799678|799679|804743|839851|869676|869677|869678|869679|869680|869681|869682|869683|869684|869685|869686|869687|869688|869689|869690|869691|869692|869693|869694|869695|869696|869697|869698|869699|869700|869701|869702|869703|869704|869705|869706|869707|869708|869709|869710|869711|869712|869713|869714|869715|869716|869717|869718|869719|869720|872229|872230", + "text": "Charcot-Marie-Tooth disease, type 4H" + }, + { + "baseId": "16055|16760|16762|17317|17517|17520|17521|17522|17524|17950|17951|19826|19828|19830|19831|19833|20159|21270|34541|34542|34548|47004|47011|65666|82291|135494|135495|135496|135497|135498|135499|135743|135744|135745|135746|135747|135748|141071|141072|141077|141078|141079|141080|141974|142136|142137|142520|142666|142667|142668|142804|142805|165818|167394|167395|167398|186051|186052|186053|186089|186126|186160|186161|186162|186163|186164|186165|186285|191093|191094|191430|191431|191443|191579|191601|192151|194468|194535|212505|212506|212507|212508|212509|212510|212511|212513|212515|212628|212629|212630|212631|212972|212973|212974|212975|212976|212977|212978|213453|213454|213455|213456|213457|213458|213459|213460|213461|213504|213812|213839|215727|221605|221606|221607|221608|221609|221610|221611|221612|221613|221614|221615|221616|221621|221622|221623|221754|221755|222193|222194|222195|222196|222197|222198|222199|222807|222808|222809|226815|226827|231639|231643|231652|231689|231812|231813|231814|231815|237130|239774|239775|239776|239777|239778|239779|239868|239869|240233|240234|240899|241218|241219|241220|241221|241223|241224|241225|243333|243334|243335|243336|243337|243338|243339|243340|243341|243342|243836|244462|244463|244464|244465|244468|244471|244472|244476|244488|244489|244490|244511|244512|244513|244698|244700|244701|244702|244703|244704|244707|244817|244818|244819|244821|244823|244824|244825|245123|245124|245125|245126|245127|245128|245129|245130|245131|245132|245133|245134|245135|245136|245137|245138|245141|249211|249214|252051|252053|252054|252055|252056|253060|254369|254370|254371|265353|266620|268889|271276|271543|271643|273691|295960|295964|295986|295990|296025|296062|296065|296070|296089|296111|296171|296204|296207|296219|296228|296232|296233|297782|297787|297812|297863|297876|297904|297905|297912|297914|297945|297952|297971|298007|298013|298024|298029|298040|298054|298731|298732|301206|301209|301214|301223|301689|301698|301702|301726|301859|301872|301874|301875|301921|301947|301978|301993|301995|302004|302040|302043|302044|302047|302062|302063|302065|302072|302074|302092|302093|302125|302157|302158|302171|302259|302260|302266|302267|302288|302289|302308|304394|304399|304401|304405|305569|305570|305571|305582|312023|312026|312046|313161|313229|313234|313235|313237|313254|315524|315544|315549|315550|315557|315559|315561|315574|315578|315609|315614|315625|315627|315647|315650|316820|316833|316836|316840|316862|316865|316874|316878|322409|322422|322452|322471|322492|322493|323641|323734|324393|324433|324449|328559|328574|328591|328676|328677|328679|328695|328697|328709|328710|329848|329861|329862|329895|329909|329915|329916|330495|330497|330499|330561|330562|331861|331919|331957|333520|333522|333524|333539|333547|333552|333554|333557|333558|343605|343607|343613|348903|348907|348913|348940|348944|348945|349847|349849|349854|349855|349859|349862|349866|349867|349869|353221|359582|361316|361545|361550|363899|367981|367993|368003|368271|368280|368281|368286|368451|369375|369648|369651|369653|369713|370067|371569|371772|371926|373199|374398|374401|374431|374439|374469|374472|376502|376503|376505|376509|377486|377643|379571|379572|379573|379574|379575|379576|384516|394287|394833|394834|394891|394898|394899|394902|394999|395001|395010|395015|395077|395089|395093|395094|395172|395174|395176|395340|395342|395346|395428|395429|395643|395913|395915|396573|396581|396584|397584|397989|398404|398405|398409|398417|398485|398487|398490|398497|398498|398790|398791|398933|398936|398938|398958|399125|399670|399675|400053|403251|403294|403301|403703|403705|403713|403714|403719|403722|403724|403725|403755|406657|406786|406787|407316|408630|410607|410608|413692|415124|415314|415316|421892|421918|429340|433569|438108|440868|440870|440871|440872|440873|440874|440875|440901|440904|440905|441171|441174|441392|441490|441491|441493|441494|441495|441497|442226|442229|442230|443710|443711|443712|443714|443715|443716|444218|444219|444695|444900|454723|454724|454727|454731|454738|454739|454741|454796|454798|454799|454800|454802|454804|454808|455142|455144|455146|455148|455259|455264|455267|455273|455279|455280|455281|455282|455285|455287|455294|455299|455304|455573|455578|455581|455584|455589|455590|455592|455751|455771|455779|456005|456006|456008|456013|456016|456019|456020|456025|457223|457231|457812|457814|457832|457835|458235|458238|460759|460762|461546|461551|461552|461554|461556|461579|461732|461740|461749|461755|461758|461760|461763|461764|462053|462054|462061|462065|462076|462080|462082|462083|462087|462088|462089|462096|462105|462125|462129|462180|462363|462365|462375|462377|462379|462385|462387|462388|462389|462892|462894|463021|463022|463031|468800|468801|468804|468809|468810|468816|468820|469817|469819|469823|469824|469829|469837|469842|469844|470216|470221|470222|470223|470226|470228|470233|470240|470241|470244|470245|470843|470847|470866|470867|470874|470890|470893|470895|470899|470910|470912|481748|492021|500715|501039|501059|502298|502593|503824|504087|504490|504836|506945|506949|506956|507764|520896|520898|520902|520909|520911|520913|520918|520919|520921|520923|521147|521153|521155|521157|521159|521161|521162|521166|521281|521283|521296|521297|521301|521305|521318|521331|521333|521342|521343|521344|521346|521352|521354|521359|521361|521365|521368|521371|521374|521380|521572|521580|521584|521588|521592|521600|521602|521606|521659|521666|521672|521675|521915|521916|521921|521925|521927|521928|522828|523024|523029|523283|523284|523286|523291|523299|523309|523509|523511|523518|523519|523522|523526|523637|523642|523646|523648|525609|525615|525683|525686|525688|525690|525852|525855|526019|526022|526553|526557|526559|526563|526567|526577|526578|526579|526586|526592|526597|526598|526599|526602|526604|526606|526607|526614|526812|526814|526833|526838|526840|526842|526845|526852|526853|526867|527091|527098|527099|527104|527105|527111|527112|527115|527130|527132|527137|527140|527141|527143|527147|527148|527155|527163|527164|527169|527176|527179|527184|527186|527187|527190|527192|527198|527202|527203|527342|527348|527352|527356|527368|527608|527609|532368|532972|532990|532991|532993|532994|532997|533001|533009|533011|533014|533016|533019|533025|533028|533034|533035|533043|533061|533070|533072|533073|533074|533075|533078|533079|533086|533091|533093|533096|533099|533100|533103|533104|533108|533109|533111|533119|533481|533483|533487|533491|533494|533506|533509|533523|533524|533527|533532|536685|537147|537474|538486|556897|560193|560195|560197|560199|560201|560203|560205|560207|560209|560211|560310|560312|560314|560316|560318|560320|560322|560324|560326|560328|560330|560332|560403|560405|560407|560409|560411|560524|560528|561956|562378|562942|562944|562946|562952|562960|562969|562971|562979|562989|563299|563303|563304|563307|563309|564097|564099|564659|564664|564668|564670|564672|564931|564936|564937|564938|564941|564958|564959|564964|564965|564968|564970|564972|564974|564975|564980|564984|564986|565005|565009|565043|565215|565221|565262|565282|565284|565286|565297|565298|565425|565426|566239|566243|566246|566247|566258|566260|566264|566267|566268|566271|566274|566734|566735|566795|566796|566799|567390|567396|567584|567585|567588|567590|567591|567600|567603|567605|567607|567609|567611|567614|567992|567994|567995|569963|569964|569966|570779|570783|570786|570787|570791|570793|570797|571053|571056|571074|571080|571089|571096|571097|571100|571108|571122|571123|571129|571134|571775|571785|571792|572503|572505|572508|572509|572511|572513|572517|572518|572521|573102|573103|573107|573109|573110|573111|573114|573115|573116|573117|573119|573123|573124|573125|573130|573134|573138|573139|574969|574970|574971|574972|574973|574974|574975|574976|574977|576832|576833|576834|577807|578440|578495|586757|587695|587732|609584|612699|612701|612702|612722|621654|622460|625112|625118|625125|625267|625424|633601|633602|633603|633604|633605|633606|633607|633608|633609|633610|633611|633612|633613|633614|633615|633616|633617|633618|633619|633620|633621|633622|633623|633624|633625|633626|633627|633628|633629|634476|634477|634478|634479|634480|634481|634482|634483|634484|634485|634486|634487|634488|636610|636611|636612|636613|636614|636615|636616|636617|636618|636619|636620|636621|636622|636623|639354|639355|639356|639357|640534|640535|640536|640537|640538|640539|640540|640541|640542|640543|640544|640545|640546|640547|640548|640549|640550|640551|640552|640553|640554|640555|640556|640557|640558|640559|640560|640561|640562|640563|640564|640565|640566|640567|640568|640569|640570|640571|640572|640573|640574|640575|640576|640577|640578|640579|641063|641064|641065|641066|641067|641068|641069|641070|641071|641072|641073|641074|641075|641076|641077|641078|648086|648087|648088|648089|648090|648091|648092|648093|648094|648095|648096|648097|648098|648099|648100|648101|648102|648103|648104|648105|648106|648107|648108|648109|648110|648111|648112|648113|648114|648115|648116|648117|648118|648119|648120|648121|648122|648123|648124|648125|648126|648127|648128|648129|648130|648131|648132|648133|648134|648135|651231|651377|651503|651574|651610|651617|651748|651852|652051|652105|652149|652209|652255|652321|652359|652612|653577|655699|677279|682959|682960|682978|682992|683031|683038|683083|683097|683105|683115|683120|683122|683130|683719|683720|683721|683722|683723|683724|683725|683749|683750|683751|683752|683977|683978|683979|684271|684272|684273|684274|684276|684322|684810|684811|684812|684813|684817|685297|685298|685300|686708|686709|686710|686772|686777|686778|686779|686780|687188|687189|687191|687192|687193|687195|687198|687199|687200|687680|687681|687683|687840|687841|687842|687843|687844|687845|687846|687847|687848|687849|687850|687855|687856|687857|687858|689045|689050|689051|689052|689053|689054|689056|689057|689059|689805|689904|689905|689906|691779|692352|692355|692914|693123|693124|693128|693129|693130|693131|693189|693191|693193|694422|694423|695306|695378|695561|695562|704991|722865|736463|738372|744773|749740|752374|757025|759620|764958|766552|769096|772694|775442|782209|782407|782997|782999|786197|787731|793790|793791|793793|796671|819566|819648|819947|820286|820425|820492|820493|821255|821905|830473|830474|830475|830476|830477|830478|830479|830480|830481|830482|830483|830484|830485|830486|830487|830488|830489|830490|830491|830492|830493|830494|830495|830496|830497|830498|830499|830500|831383|831384|831385|831386|831387|831388|831389|831390|831391|831392|831393|831394|831395|831396|831397|831398|831399|831400|831401|831402|831403|831404|831405|831406|831407|831408|831409|831410|831411|834147|834148|834149|834150|834151|834152|834153|834154|834155|834156|834157|837577|837578|837579|837580|837581|837582|837585|839190|839191|839192|839193|839194|839195|839196|839197|839198|839199|839200|839201|839202|839203|839204|839205|839206|839207|839208|839209|839210|839211|839212|839213|839214|839215|839216|839217|839218|839219|839220|839221|839222|839223|839224|839225|839226|839227|839228|839229|839230|839231|839232|839233|839234|839235|839236|839237|839238|839239|839841|839842|839843|839844|839845|839846|839847|839848|839849|839850|839851|839852|839853|839854|839855|839856|839857|839858|847680|847681|847682|847683|847684|847685|847686|847687|847688|847689|847690|847691|847692|847693|847694|847695|847696|847697|847698|847699|847700|847701|847702|847703|847704|847705|847706|847707|847708|847709|847710|847711|847712|847713|847714|847715|847716|847717|851308|851470|851472|851501|851925|851947|851978|852114|852413|852415|852416|852421|852650|852870|859398|869005|869006|869007|882053|899011|899014|903635|905146|905162|905164|905179|905209|905213|905360|905432|905458|905466|905611|918992|920731|923935|923936|923937|923938|923939|923940|923941|923942|923943|923944|924212|924213|924214|924215|924216|924217|924218|924219|925022|925023|925024|925998|926427|926428|926429|926430|926431|926432|926433|926434|926435|926436|926437|926438|926439|926440|926441|926442|926443|926602|926603|926604|926605|926606|926607|926608|926609|926610|928964|928965|928966|928967|928968|928969|928970|928971|928972|928973|932772|932773|932774|932775|932776|932777|932778|933119|933120|933121|933122|933123|933124|933125|934099|934100|934101|934102|934103|934104|934105|935266|935267|935268|935269|935875|935876|935877|935878|935879|935880|935881|935882|935883|935884|935885|935886|935887|935888|935889|935890|935891|935892|935893|935894|935895|936089|936090|936091|936092|936093|936094|938681|938682|938683|938684|938685|938686|938687|938688|938689|938690|938691|938692|938693|938694|938695|938696|938697|940024|940025|940092|940189|940806|940807|940808|940829|940830|944459|944460|944461|944462|944463|944464|944465|944466|944467|944468|944469|944470|944471|944472|944846|944847|944848|944849|944850|945856|945857|945858|947172|947173|947748|947749|947750|947751|947752|947753|947754|947755|947756|947757|947758|947759|947760|947761|947762|947763|947764|947987|947988|947989|947990|950784|950785|950786|950787|950788|950789|950790|950791|950792|950793|950794|950795|950796|950797|950798|954079|954080|954320|954321|954322|954323|955294|955295|955296|955297|955298|955299|955300|955301|955302|955303|956298|956299|956301|956722|956723|956724|956725|956726|956727|956728|956729|956730|956856|958636|958637|958638|958639|958640|958641|958642|958643|959758|959788|959957|960642|960768|960769|960786|961518|978411|978412|978413|978414|978415|978416", + "text": "Charcot-Marie-Tooth disease type 4" + }, + { + "baseId": "16057|39837|39838|39839|39840|39841|139955|139956|139957|139958|139959|177460|177461|210915|210916|210919|210923|210927|210933|210935|213547|214383|214388|288663|288664|288672|288675|288682|288683|288687|288691|288692|289392|289395|289397|289398|289401|289404|292405|292406|292409|292412|292413|292414|292418|292420|292559|292563|292574|292606|292607|292609|359154|359155|359481|367178|368215|406111|549905|620751|626135|744011|759196|763608|763611|763615|790328|795323|805079|827524|851274|857613|857614|887894|887895|887896|887897|887898|887899|887900|887901|887902|887903|887904|887905|887906|887907|887908|887909|891560|891561|977793|977794|977795|977796", + "text": "Acyl-CoA dehydrogenase family, member 9, deficiency of" + }, + { + "baseId": "16058|75319|84781|142399|191716|191716|191832|191940|192043|192139|192140|192687|192687|192688|192689|193660|195741|195741|196054|196054|196055|196056|196056|231497|231498|231498|236918|236918|244278|244279|244281|244282|244283|244283|244284|244285|244287|244288|244288|244289|244290|244290|244291|244292|244292|244293|244294|244294|265896|265896|265963|265963|266960|268743|268743|268885|268885|269804|269805|271724|271724|271725|271725|272148|272148|274250|275302|275506|281043|281048|281049|281054|281055|281060|281060|281062|281068|281068|281069|281077|281079|281079|281083|281083|281086|281091|281093|281093|281100|281101|281101|281650|281654|281658|281660|281661|281663|281666|281668|281668|281669|281687|281688|281689|281689|281695|281696|281698|281698|281708|281708|281720|281722|281723|281723|281727|282863|282864|282865|282866|282869|282872|282874|282874|282876|282883|282883|282886|282886|282891|282891|282892|282893|282894|282894|282896|282896|282899|282899|282904|282904|282906|282906|282913|282913|282914|282914|283149|283150|283151|283153|283155|283156|283157|283173|283176|283176|283179|283208|283208|283210|283210|283213|283213|359270|365178|365179|365179|365185|365185|365189|365189|365195|365197|365199|365201|365363|365363|365380|365385|365448|365460|365461|365461|365464|365464|405228|414805|414807|421254|442882|448208|448212|448214|448215|448219|448277|448288|448303|448308|448309|448314|448319|448323|448325|448334|448338|448343|448344|448346|448347|448354|448402|448404|448405|448409|448411|448413|448417|448426|481599|485980|498817|516031|516037|516051|516053|516057|516060|516067|516068|516069|516072|516073|516074|516082|516084|516092|516097|516099|516194|516202|516205|516209|516213|516218|516218|516223|516226|536598|540440|557356|557358|557360|557362|557364|557366|557368|557405|557407|557409|557411|557413|557415|557417|557419|557421|558024|558026|558028|558030|558032|558034|558036|558038|558040|558573|558575|558577|558579|558581|558583|612539|628212|628212|628213|628214|628215|628216|628217|628217|628218|628219|628220|628221|628222|628223|628224|628225|628226|628227|628228|628229|628230|628231|628232|628233|628234|628235|628236|628237|628238|628239|628240|628241|628242|628243|628244|628245|650769|690658|690659|690660|690661|695061|696837|696840|696841|746620|746623|762055|762057|778838|780758|787165|818989|818990|824354|824355|824356|824357|824358|824359|824360|824361|824362|824363|824364|824365|824366|824367|824368|824369|824369|824370|824371|824372|824373|824374|824375|824376|824377|824378|824379|824380|824381|824382|824383|850783|864719|864720|864721|864722|864723|864724|864725|864726|864727|864728|864729|864730|864731|864732|864733|864734|864735|864736|864737|864738|865201|922147|922148|922149|922150|922151|922152|922153|922154|922155|930644|930645|930646|930647|930648|930649|930650|930651|930652|939824|940647|942083|942084|942085|942086|942087|942088|942089|942090|942091|952502|952503|952504|952505|952506", + "text": "Distal spinal muscular atrophy, autosomal recessive 4" + }, + { + "baseId": "16058|20041|23440|441227|443712|452516|556613|558202|562065|625100|625143|625194|625292", + "text": "Hereditary motor neuron disease" + }, + { + "baseId": "16059|16060", + "text": "MYOPATHY, CENTRONUCLEAR, AUTOSOMAL DOMINANT, MODIFIER OF" + }, + { + "baseId": "16061|18998|21835|22033|22034|23405|28597|29418|29419|29511|31633|32916|33100|44292", + "text": "Myocardial infarction" + }, + { + "baseId": "16062|16063|16064|16065|16066|16067|16068|16069|39832|39833|39834|39835|273506|390529|437666|919100", + "text": "Lethal osteosclerotic bone dysplasia" + }, + { + "baseId": "16070|16071|16071|16072|16073|16074|167422|167423|169418|169422|169423|169424|169425|169428|169430|169434|169435|208453|331271|331273|331289|331306|331316|331347|331351|341637|341652|347012|347041|348305|348318|348326|348361|434668|539080|694279|791859|791860|791861|976671|977290", + "text": "Schinzel-Giedion syndrome" + }, + { + "baseId": "16070|40530|100020|100024|141332|169569|171233|189212|190135|190136|190137|254100|254103|254104|256045|263959|271555|312682|313489|313519|313520|313534|313535|313536|313543|313546|319125|319683|319725|319726|319733|319734|319749|319750|325800|325831|325853|325854|325896|325916|325917|325922|325923|326880|326881|327191|327244|337052|337081|413635|426749|426750|445387|448523|448545|488722|489879|511407|553412|556535|557414|578035|587787|610419|619849|620934|621026|623668|626464|655018|680083|680084|680085|680086|680087|680088|680089|680090|680091|680092|680093|680094|680095|680096|680097|680098|680099|680100|680101|680102|680103|680104|680105|680106|680107|680108|680109|680110|680111|680112|680113|680114|680115|680116|680117|680118|680119|680120|680121|680122|680123|680124|680125|680126|680127|680128|680129|680130|680131|680132|680133|680134|680135|680136|680137|706511|706513|707621|729896|731499|822351|824610|966695|966696", + "text": "Arthrogryposis multiplex congenita" + }, + { + "baseId": "16070|141332|169569|171233|181416|189212|263959|413635|445387|488722|489879|587787|610419|620934|680083|680084|680085|680086|680087|680088|680089|680090|680091|680092|680093|680094|680095|680096|680097|680098|680099|680100|680101|680102|680103|680104|680105|680106|680107|680108|680109|680110|680111|680112|680113|680114|680115|680115|680116|680117|680118|680119|680120|680121|680122|680123|680124|680125|680126|680127|680128|680129|680130|680131|680132|680133|680134|680135|680136|680137|801537", + "text": "Fetal akinesia sequence" + }, + { + "baseId": "16070|16071|167418|167419|167420|167421|167422|167422|167423|167423|208453|264907|362448|482171|512352|512354|514090|539080|611888|611890|611891|626268|798736|919797|919798|919799|963857|964499|971102|972987|972988|972989|972990|972991|972992|972993|976671", + "text": "Mental retardation, autosomal dominant 29" + }, + { + "baseId": "16074|27663|27665|27666|27667|27668|29701|48939|50038|152948|152949|152950|174177|204572|362963|362964|362965|362966|362967|362968|362969|362970|362971|362972|362973|362974|362975|362976|362996|362997|362998|362999|363000|363001|363002|363003|363004|363231", + "text": "Chronic myelogenous leukemia, BCR-ABL1 positive" + }, + { + "baseId": "16075", + "text": "Deafness, autosomal dominant 44" + }, + { + "baseId": "16076|16077|16078|16079|16080|39831|187650|187651|187652|187653|208398|256183|256184|328639|328648|328650|328651|328652|338618|338619|338621|344679|344683|344691|344695|344696|344698|344699|344703|346082|346086|346090|531360|531415|571215|571508|571509|571521|574497|574498|614435|620590|646071|646072|646073|646074|646075|646076|646077|646078|646079|646080|715479|740805|740806|740807|755884|755885|755886|771566|845486|845487|845488|845489|852215|877679|877680|877681|877682|877683|877684|880527|880528|928330|928331|928332|928333|928334|937978|937979|937980|937981|949968|949969|949970|949971|949972|949973|958142|964482", + "text": "Severe congenital neutropenia 4, autosomal recessive" + }, + { + "baseId": "16081|679799|679830", + "text": "Dursun syndrome" + }, + { + "baseId": "16082|16083|39827|39828|39829|39830|40302|40303|134473|134474|134475|134476|134477|134478|134479|213640|242500|326295|326301|326302|326310|326311|326312|326316|326317|326322|326323|326324|326325|326329|326331|336043|336047|336048|336049|336053|336056|342317|342319|342326|342327|342329|342330|342333|343920|343922|343923|343924|343927|343932|343940|343942|343943|343946|343947|343951|343955|353356|361645|375399|401319|438017|481380|506477|538454|575502|608908|608909|612314|685422|688645|688647|690147|791640|791641|798704|798705|875935|875936|875937|875938|875939|875940|875941|875942|875943|876721|927941", + "text": "Spastic paraplegia 35" + }, + { + "baseId": "16085|16086|16088|190546|190547|190548|191064|192134|192467|194466|195379|196295|227235|237089|267230|267232|267363|268578|268662|271727|271768|272251|273648|274366|284794|284802|284807|284809|284811|284823|284825|284827|284831|284833|284834|284839|284843|284845|284847|284850|284854|284855|284859|284865|284869|284870|285487|285488|285491|285492|285495|285496|285497|285498|285500|285501|285502|285503|285513|285522|285524|285530|287700|287701|287705|287707|287708|287726|287728|287738|287754|287761|287762|287767|287768|287769|287771|287772|287780|287784|287791|287793|287804|287805|287807|287816|287827|287978|287986|287989|287991|287992|287993|287997|288006|288017|288019|288031|288034|288042|288044|288045|288047|288060|288061|288065|288071|288074|288081|288105|288107|288108|361173|361174|405638|488352|513922|584937|588799|608874|620064|620065|697353|719661|719662|719665|719666|719667|733199|733202|733203|733205|733206|733208|733210|747366|747367|762967|790201|795176|858422|883812|883813|883814|883815|883816|883817|883818|883819|883820|883821|883822|883823|883824|883825|883826|883827|883828|883829|883830|883831|883832|883833|883834|883835|883836|883837|883838|883839|883840|883841|883842|883843|883844|883845|883846|883847|883848|883849|883850|883851|883852|883853|883854|883855|883856|883857|883858|883859|883860|883861|883862|883863|883864|883865|883866|883867|883868|883869|883870|883871|883872|883873|883874|883875|883876|883877|883878|883879|883880|883881|887278|887279|887280|887281|918743", + "text": "Three M syndrome 2" + }, + { + "baseId": "16089|16090|16090|16091|16092|16093|39823|244907|244909|244910|244910|244917|244917|254881|254881|254882|254883|254883|254889|254889|254893|254893|254894|254894|254895|254895|254896|254896|254897|254898|254899|254900|254900|254901|254901|254902|254902|254903|254904|254905|254906|254906|275317|320195|320196|320200|320201|320201|320210|320211|320211|320212|320212|320214|320214|320217|320217|320226|320228|320228|320229|320230|320239|320240|320246|328746|328751|328751|328753|328765|328765|328768|328769|328770|328770|328771|328771|328775|328776|335377|335377|335382|335395|335395|335398|335411|335411|335413|335413|335421|335422|335422|335424|335427|335427|335432|337256|337256|337261|337263|337264|337264|337265|337265|337266|337266|337271|337271|337276|337279|337280|337286|337289|337292|360155|372982|372982|372997|372997|374071|374080|374080|374086|374089|375881|375907|409064|415381|415382|421971|433643|433644|433644|433645|441642|463063|463074|463082|463090|463094|463096|463099|463106|463109|463111|463111|463389|463542|463549|463552|463556|463559|463562|463829|463837|463839|463847|463849|463852|463853|463857|463860|464022|464024|464026|464028|464031|464042|464049|464055|464057|464060|490223|492759|504427|504427|504441|504661|504661|504949|505343|505344|514037|527934|527939|527941|527943|527947|527948|527950|527953|527967|527972|527975|527977|527978|527983|527986|527989|527991|527993|528279|528281|528284|528285|528286|528288|528291|528293|528314|528320|528322|528330|528335|528342|528348|528437|528437|528440|528442|528443|528458|528458|528459|528462|528462|528464|528465|553591|566245|566253|566259|566261|566265|566269|566272|566273|566275|566281|566288|567825|567829|567835|567837|568721|568721|568724|568728|568729|572683|572684|572685|572687|572688|590306|590307|590308|609886|609886|620476|623317|625294|625299|642129|642130|642131|642131|642132|642133|642134|642135|642136|642137|642138|642139|642140|642141|642142|642143|642144|642145|642146|642147|642148|642149|642150|642151|642152|642153|642154|642155|642156|642157|642158|642159|642160|642161|642162|642163|642164|642165|642166|642167|642168|642169|642170|642171|642172|642173|642174|642174|642175|642176|642177|652299|652407|652455|656226|656226|684464|685393|693423|693424|693425|693426|693427|693428|693428|693429|693430|693434|693436|693440|693441|693442|693444|693445|693446|693446|695610|702774|714020|753937|769684|769684|769685|769687|769688|769690|769694|793499|798670|816000|818302|818303|818304|841092|841093|841094|841095|841096|841097|841098|841099|841100|841101|841102|841103|841104|841105|841105|841106|841107|841108|841108|841109|841110|841111|841112|841113|841114|841115|841116|841117|841118|841119|841120|841121|841122|841123|841124|841125|841126|841127|841128|841129|841130|841131|841132|841133|841134|841135|841136|841137|841138|852554|871645|871646|871647|871648|871649|871650|871651|871652|871653|871654|871655|871656|871657|871658|871659|871660|871661|871662|871663|871664|871665|871666|871667|871668|871669|871670|871671|872353|872354|872355|926968|926969|926970|926971|926972|926973|926974|936528|936529|936530|936531|936532|936533|936534|940297|948442|948443|948444|948445|948446|948447|948448|948449|948450|948451|948452|957158|957159|957160|960077|970061|980350", + "text": "Focal segmental glomerulosclerosis 5" + }, + { + "baseId": "16090|39821|39822|39823|39823|39824|39825|39826|244907|244909|244910|244917|254881|254883|254889|254893|254894|254895|254896|254900|254901|254902|254906|320201|320211|320212|320214|320217|320228|328746|328751|328765|328770|328771|335377|335395|335411|335413|335422|335427|337256|337264|337265|337266|337271|360155|372982|372997|374071|374080|374086|374089|375881|375907|409064|415381|421971|433643|433644|433645|441642|463063|463074|463082|463090|463094|463096|463099|463106|463109|463111|463389|463542|463549|463552|463556|463559|463562|463829|463837|463839|463841|463847|463849|463852|463853|463857|463860|464022|464024|464026|464028|464031|464042|464049|464055|464057|464060|490223|492759|504427|504441|504661|504949|505343|527934|527939|527941|527943|527947|527948|527950|527953|527967|527972|527975|527977|527978|527983|527986|527989|527991|527993|528279|528281|528284|528285|528286|528288|528291|528293|528314|528320|528322|528330|528335|528342|528348|528437|528440|528442|528443|528458|528459|528462|528465|566245|566253|566259|566261|566265|566269|566272|566273|566275|566281|566288|567825|567829|567835|567837|568721|568724|568728|568729|572683|572684|572685|572687|572688|609161|609886|625294|625299|642129|642130|642131|642132|642133|642134|642135|642136|642137|642138|642139|642140|642141|642142|642143|642144|642145|642146|642147|642148|642149|642150|642151|642152|642153|642154|642155|642156|642157|642158|642159|642160|642161|642162|642163|642164|642165|642166|642167|642168|642169|642170|642171|642172|642173|642174|642175|642176|642177|652299|652407|652455|656226|684464|685393|693423|693424|693426|693427|693428|693429|693430|693434|693436|693440|693441|693442|693444|693445|693446|695610|702774|714020|753937|769684|769685|769687|769688|769690|769694|793499|841092|841093|841094|841095|841096|841097|841098|841099|841100|841101|841102|841103|841104|841105|841106|841107|841108|841109|841110|841111|841112|841113|841114|841115|841116|841117|841118|841119|841120|841121|841122|841123|841124|841125|841126|841127|841128|841129|841130|841131|841132|841133|841134|841135|841136|841137|841138|852554|919509|926968|926969|926970|926971|926972|926973|926974|936528|936529|936530|936531|936532|936533|936534|940297|948442|948443|948444|948445|948446|948447|948448|948449|948450|948451|948452|957158|957159|957160|960077|964859|970989", + "text": "Charcot-Marie-Tooth disease, dominant intermediate E" + }, + { + "baseId": "16094|204571|325661|325662|325669|325670|325675|325678|325684|325685|325693|325695|325700|325707|325710|325712|325713|325721|325723|325724|325725|325727|325728|325729|335330|335341|335342|335344|335348|335363|335364|335368|335372|341809|341810|341819|341820|341821|341825|341827|341829|341830|341831|341832|341836|341840|341842|341843|341845|343297|343298|343300|343307|343308|343313|343315|343317|343322|343323|343325|343326|343330|343331|343333|343336|343339|343344|343345|438656|513360|620548|620549|703735|714972|726679|875446|875447|875448|875449|875450|875451|875452|875453|875454|875455|875456|875457|875458|875459|875460|875461|875462|875463|875464|875465|875466|875467|875468|875469|875470|875471|875472|875473|875474|875475|875476|875477|875478|875479|875480|875481|875482|875483|875484|875485", + "text": "Growth retardation, developmental delay, coarse facies, and early death" + }, + { + "baseId": "16095|108175|108176|108177|108178|141637|141638|141640|205770|205771|211638|211639|316904|316907|316909|316912|316913|316916|324508|324510|324513|324515|324518|324522|330689|330692|330694|330699|330703|330705|330707|332072|332081|332087|332103|332107|332108|332112|738617|869721|869722|869723|869724|869725|869726", + "text": "Myopathy, lactic acidosis, and sideroblastic anemia 2" + }, + { + "baseId": "16096|16097|16098|16099|16100|16101|16102|16103|16104|16105|16106|34398|34399|39819|39820|140768|140769|140773|140774|140775|277455|277460|277462|277469|277473|277660|277661|278545|278546|278547|278552|278574|278577|278579|278586|278589|278590|278591|278592|364624|364690|427664|442667|513498|620708|682589|789883|789884|789885|789886|861604|862827|862828|862829|862830|862831|862832|862833|862834|862835|862836|862837|865038|865039|865040", + "text": "Leukoencephalopathy with brain stem and spinal cord involvement-high lactate syndrome" + }, + { + "baseId": "16096|16101|51184|225802|225802|361061|361062|402131|402131|514220|536183", + "text": "Gait ataxia" + }, + { + "baseId": "16096|16101|360889", + "text": "Gait imbalance" + }, + { + "baseId": "16096|16101", + "text": "Dysmetria" + }, + { + "baseId": "16096|16101|29017|39943|184571|192474|207388|226496|243994|263173|263216|263221|263245|263259|263263|263290|263386|263390|263395|263397|263408|286038|360910|361083|514000|514108|514144|514165|514172|514332|590033|590041|590045|590071|590072|590076|590083|590087|590088|590092|615237|792643|792644|797206|815876", + "text": "10 conditions" + }, + { + "baseId": "16099|16101|427664", + "text": "Leukoencephalopathy with brain stem and spinal cord involvement and lactate elevation" + }, + { + "baseId": "16107|16108|16109|16110|16113|16114|16115|16115|16116|16117|16118|16119|101586|101587|101588|101589|101590|131807|131809|131811|131812|177286|177418|178021|186227|190880|190880|191930|205194|208284|208285|208287|208288|214350|214351|214352|214353|214354|214355|221479|237020|237107|237317|237317|242442|255806|255807|255810|255815|255817|266004|268059|268166|269093|271215|273848|273848|325639|325640|325646|325648|325649|325653|325654|325657|335287|335289|335291|335292|335293|335300|335303|335305|335307|335309|335319|335320|335321|335322|335323|335325|341773|341774|341775|341779|341787|341788|341791|341795|341797|341803|341805|343259|343260|343262|343266|343269|343272|343273|343276|343282|343285|343286|343287|343287|343293|375212|401969|409651|415498|432330|530041|530184|622911|644749|688608|688615|797343|818305|875411|875412|875413|875414|875415|875416|875417|875418|875419|875420|875421|875422|875423|875424|875425|875426|875427|875428|875429|875430|875431|875432|875433|875434|875435|875436|875437|875438|875439|875440|875441|875442|875443|875444|875445|876677|876678|919662|919663|919664", + "text": "Joubert syndrome 7" + }, + { + "baseId": "16107|16113|482045|568743|620477|620478|620479|620547", + "text": "RPGRIP1L-Related Disorders" + }, + { + "baseId": "16111|16112|16113|16113|16115|16117|71200|71201|101586|101587|101588|101589|101590|131807|131809|131811|131812|177286|177418|178021|190880|190880|191063|191930|208284|208285|208288|237020|237107|237317|237317|242442|255806|255807|255810|255815|255817|266004|268059|268166|269093|271215|273848|273848|325639|325640|325646|325648|325649|325653|325654|325657|335287|335289|335291|335292|335293|335300|335303|335305|335307|335309|335319|335320|335321|335322|335323|335325|341773|341774|341775|341779|341787|341788|341791|341795|341797|341803|341805|343259|343260|343262|343266|343269|343272|343273|343276|343282|343285|343286|343287|343287|343293|375212|401969|409651|415498|530041|530184|644749|688608|688615|797343|875411|875412|875413|875414|875415|875416|875417|875418|875419|875420|875421|875422|875423|875424|875425|875426|875427|875428|875429|875430|875431|875432|875433|875434|875435|875436|875437|875438|875439|875440|875441|875442|875443|875444|875445|876677|876678", + "text": "Meckel syndrome, type 5" + }, + { + "baseId": "16117", + "text": "Retinitis pigmentosa in ciliopathies, modifier of" + }, + { + "baseId": "16117|16372|16376|16378|16381|16416|16422|16426|16869|16870|16872|17671|17675|17678|17679|18439|18443|18444|18548|18549|26998|27001|39735|39736|39892|71368|71372|71373|71377|71378|71379|90149|98623|98624|98626|98627|99374|101492|101493|101494|101495|101497|101498|101569|101570|101571|101572|101573|101574|101575|101576|101578|101579|101580|101582|101583|102031|102032|102062|102064|102066|102117|102118|102119|102402|102403|102404|102406|102407|102409|102410|105736|105739|105741|105746|105748|105749|105750|105753|106469|106470|106471|106738|131781|131783|131784|131787|131789|131790|131794|131801|132658|135259|135260|135261|136094|136095|136096|136097|136098|136099|136100|136101|136102|136103|136104|136105|136106|136107|140430|140431|140432|140433|152874|166167|166179|176932|176995|177011|177012|177013|177064|177086|177087|177143|177195|177218|177274|177275|177328|177349|177406|177407|177417|177571|177572|177610|177780|177881|177882|177883|177884|177885|177886|185958|186010|188781|188782|190668|190732|191062|191412|191413|191490|191568|191569|191570|191571|191574|191595|191726|191815|191822|191838|191844|191927|191928|191962|192029|192056|192150|192550|192691|192692|192769|192770|192771|192774|192938|192945|192989|192997|193137|193150|193156|193157|193193|193299|193627|193632|193792|193874|193875|193954|193955|193956|194205|194245|194246|194456|194735|194758|194813|194867|195042|195134|195418|195425|195426|195571|195605|195864|195865|196017|196029|196294|207045|207998|208003|212105|212106|212108|212109|212118|212119|212121|212122|212123|212287|212288|212289|212290|212656|213013|213014|213016|213192|213193|213503|214322|214325|214326|214327|214328|214329|214330|214335|214336|214337|214338|214340|215270|215459|221109|221110|221111|221112|221114|221116|221117|221358|221359|221360|221365|221366|221803|222267|222488|222489|226829|237104|237153|237156|238059|238061|238338|238339|238340|238341|238342|238343|238344|238354|238377|239057|239108|240436|240438|240439|240440|241226|241579|241580|241581|241582|242437|242438|242439|242617|243906|243907|243908|243909|243910|243911|243912|247084|250002|250003|250006|250008|250011|250087|250324|250325|250329|250332|250335|250337|250855|250857|250928|250930|250931|250932|250933|250934|250935|250936|250937|250938|250939|250944|250946|250948|250953|253235|253241|253242|253247|254740|254742|254760|254761|254762|254763|255742|264538|265418|265487|266212|266213|266590|266616|267000|267761|268040|268051|268559|268882|269236|269781|270185|270311|270776|270942|271014|271042|271099|271233|271239|271333|271349|271425|271582|272341|272410|272411|272606|272766|272959|272960|273216|273272|273564|273772|273785|273792|274111|274125|274214|274283|274311|274617|275140|275336|275337|275340|275342|275394|275431|275479|275514|275519|275528|280978|281536|281544|281551|281554|281560|281564|281578|281592|282229|282746|282761|282762|282778|282780|282783|282784|283018|283019|283022|283024|283025|283026|283040|283041|283060|283087|283088|283133|283158|283161|283553|283554|284715|284726|284730|288796|288805|288814|288821|289582|289587|289589|291965|292582|292583|292584|292586|292784|292789|292793|292795|292796|306008|306192|306205|306212|310312|310314|310316|315372|315595|315613|315616|315617|315621|315784|318585|318587|318602|318607|325335|325337|325641|325647|326805|326830|326833|326850|332974|332983|332990|332993|332994|334647|334649|334653|334658|334973|334992|334995|335008|341456|341459|341790|342955|342982|343298|360055|360113|361484|363660|364169|365832|365835|367191|367235|368222|372581|372585|373261|373475|373481|375447|375452|375454|389204|391373|391469|391503|393234|393751|393754|393759|396365|396652|396661|396782|399209|406118|408757|408759|408763|408764|408765|408768|408769|408770|408772|425527|426028|429461|429462|431772|433122|443008|443365|445093|445097|445099|448218|448220|448255|448260|448362|448383|448470|448544|448554|448755|448757|448813|448989|449094|449103|449109|451855|451862|452096|452190|452197|452199|452201|452203|452205|452309|452314|452317|458138|458669|458741|458743|458745|459177|462506|462513|462515|462516|462765|462769|463244|463251|463260|463263|463267|463268|463350|463355|463358|463360|465415|466452|466470|488263|488264|488341|488677|489043|489044|489186|489203|489294|489297|489298|489304|489361|489529|489555|489559|489564|490125|490213|490297|490655|490678|490684|490765|490790|490810|491014|491182|491223|491360|491412|491415|491589|491669|491760|491983|491997|492066|492074|492174|492185|492320|492399|492749|492789|492849|492853|493151|493373|493463|493743|493781|493938|493954|494208|496110|500529|504099|504663|504668|513323|514649|514650|515992|516055|516157|516292|516294|516306|516393|516396|516520|516603|516622|518899|518903|518930|519090|523817|523842|523843|523849|524117|524120|524121|524130|524414|524450|527372|527391|527394|527399|527405|527407|527409|527410|527670|527673|527675|527917|527929|527931|527940|527942|530109|536196|536612|539138|539148|539149|539155|553539|553550|557109|557328|557469|557488|557602|557647|558068|558701|558822|559279|559347|559349|559351|561210|561211|561213|562430|562440|562568|562618|562632|563264|565737|565744|567079|567083|567084|568142|568182|568185|568186|572093|572096|572100|582511|582794|583256|583704|584061|584237|584348|584405|584568|584630|584683|584746|584889|584912|584963|584973|585066|585125|585234|585277|585368|585392|585599|585858|586001|586003|586004|586108|586109|586278|586333|586423|586501|586741|586785|587156|587175|587205|587334|587373|587492|587556|587666|587816|587862|588092|588149|588198|588201|588242|588579|588678|588984|589270|589455|589706|589758|589759|589765|609863|622900|623936|628169|628170|628410|628411|628412|628798|628799|628800|630756|630757|630952|630953|630954|630955|630956|637550|637551|637552|637553|641414|641415|641416|641417|641418|641419|641420|641421|641422|641423|641424|641425|641426|641427|641428|641429|641430|641431|641432|641433|641434|641435|644686|650891|651877|651880|652345|652351|654523|655171|656190|667259|672202|672263|683376|683377|683378|683413|683526|683527|683540|684354|684355|684356|684357|684358|684359|684591|684593|685142|685384|685385|685386|685820|685824|685889|685891|685893|686280|686281|686282|686283|686284|686334|686335|687326|687328|688057|688058|688059|688061|688062|688063|688064|688065|688066|688067|688068|688069|688070|688072|688073|688075|688603|689668|689674|690055|690056|690652|690653|690707|690860|691309|692546|693293|693294|693295|693296|693297|693299|693875|693876|695056|695404|695585|696817|725297|725299|736793|738885|751289|753623|753624|753625|759040|760254|762354|769332|776130|777183|778845|784484|791285|796876|818725|818986|819028|819029|819030|819031|819032|819033|819034|819035|819313|819325|819327|820526|820527|824257|824258|824259|824260|824261|824262|824263|824264|824265|824266|824267|824268|824269|824270|824271|824272|824273|824274|824275|824276|824277|824278|824279|824280|824281|824282|824283|824284|824285|824286|824287|824288|824289|824290|824678|824679|824680|824681|824682|824683|824684|824685|824686|824687|824688|824689|825099|825100|825101|827323|827324|827325|827326|827327|827328|827329|827542|827543|827544|827545|827546|827547|827548|827549|827550|827551|827552|827553|827554|827555|827556|827557|827558|827559|827560|827561|827562|827563|827564|827565|835282|835283|835284|835285|835286|835287|835288|835289|835290|835291|835292|835293|835294|835295|835296|835297|835298|835299|835300|840342|840343|840344|840345|840346|840347|840348|840349|840350|840351|840352|840353|840354|840355|840356|840357|840358|840359|840360|840361|840362|840363|840364|840365|840366|840367|840368|840369|840370|840371|840372|840373|840374|840375|840376|840377|840378|840379|840380|840381|840382|840383|840384|840385|840386|840387|840388|840389|840390|840391|840392|840393|840394|840395|840396|840397|840398|840399|840400|843872|850808|850914|851017|851277|851279|851523|851525|851528|851959|852464|852501|852502|852506|852510|852702|856020|856758|856762|856766|856767|864667|864671|864672|864673|870502|870505|870508|870516|870517|875268|880842|888013|918482|920320|922120|922121|922122|922123|922124|922125|922126|922337|923050|923051|923052|923053|923054|923055|923056|923057|923058|923059|925306|925307|926752|926753|926754|926755|926756|926757|926758|926759|926760|926761|926762|926763|926764|926765|930605|930606|930607|930608|930609|930610|930611|930612|930613|930614|930615|930616|930617|930618|930619|930769|930770|930771|930772|930773|930774|930775|930910|930911|930912|930913|931691|931692|931693|931694|931695|931766|931767|931768|931769|931770|931771|931772|931773|931774|931775|934479|934480|934481|934482|934483|934484|934485|934486|934487|934488|936284|936285|936286|936287|936288|936289|936290|936291|936292|936293|936294|936295|936296|936297|936298|936299|939822|939840|939841|940275|940645|940662|940739|942039|942040|942041|942042|942043|942044|942045|942046|942047|942048|942049|942050|942051|942052|942053|942054|942055|942056|942196|942197|942198|942199|942200|942201|942202|942330|943258|943259|943260|943261|943262|943263|943264|943265|943266|943267|943327|943328|943329|943330|943331|943332|943333|943334|943335|943336|943337|943338|943339|943340|946278|946279|946280|946281|946282|948179|948180|948181|948182|948183|948184|948185|948186|948187|948188|948189|948190|948191|948192|948193|948194|948195|948196|948197|948198|948199|948200|948201|948202|948203|948204|948205|948206|948207|948208|948209|948210|948211|948212|948213|948214|948215|948216|949403|952475|952476|952477|952478|952479|952480|952481|952482|952483|952484|952485|952486|952487|952609|952610|952611|952612|952613|952614|952750|952751|952752|953299|953300|953301|953302|953303|953339|953340|955608|955609|955610|955611|955612|955613|955614|955615|955616|955617|956961|956962|956963|956964|956965|956966|956967|956968|956969|956970|956971|956972|956973|956974|956975|956976|956977|956978|956979|956980|956981|956982|956983|956984|956985|956986|956987|959566|959576|959577|959680|960061|960062|960063|960064|960793|965280", + "text": "Nephronophthisis" + }, + { + "baseId": "16117|101586|101587|101588|101589|101590|131807|131809|131811|131812|177286|177418|178021|190880|191930|208284|208285|208288|237020|237107|237317|242442|255806|255807|255810|255815|255817|266004|268059|268166|269093|271215|273848|325639|325640|325646|325648|325649|325653|325654|325657|335287|335289|335291|335292|335293|335300|335303|335305|335307|335309|335319|335320|335321|335322|335323|335325|341773|341774|341775|341779|341787|341788|341791|341795|341797|341803|341805|343259|343260|343262|343266|343269|343272|343273|343276|343282|343285|343286|343287|343293|375212|415498|530041|644749|688608|688615|797343|875411|875412|875413|875414|875415|875416|875417|875418|875419|875420|875421|875422|875423|875424|875425|875426|875427|875428|875429|875430|875431|875432|875433|875434|875435|875436|875437|875438|875439|875440|875441|875442|875443|875444|875445|876677|876678", + "text": "Nephronophthisis 8" + }, + { + "baseId": "16118|16119", + "text": "COACH SYNDROME 3" + }, + { + "baseId": "16120|16121|308847|308848|308851|308852|313447|313450|313452|313470|313483|313493|319267|319276|319281|319878|319879|319887|319891|319896|319901|319902|319920|525188|620338|620815|790917|902435|902436|902437|902438|902439|902440|902441|902442|902443|902444|902445|902446|902447|902448|902450|902451|902452|902453|902454|902455|902456|902457|902458|902459|902460|903440|964743|964744", + "text": "Phosphoserine aminotransferase deficiency" + }, + { + "baseId": "16122|142238|142239|178173|178174|178175|178176|178177|270762|302069|302073|302083|302084|302089|302090|302096|302097|302098|305247|305248|305254|305255|305256|309999|310001|310002|310003|310018|310019|310020|310031|310084|310092|310093|310094|310105|310106|310107|710846|730473|800378|897593|897594|897595|897596|897597|897598|897599|897600|897601|897602|897603|897604|897605|897606|900327|900328|900329|900330|900331", + "text": "Premature ovarian failure 5" + }, + { + "baseId": "16123|27735|27736|27737|38861|428764|539140", + "text": "Autoimmune thyroid disease 3" + }, + { + "baseId": "16124|16125|534064|848305", + "text": "Cataract 31 multiple types" + }, + { + "baseId": "16126|16127|16128|16129|16130|16131|16132|39813|321430|321433|337274|339228|339279|339300|513724|654757", + "text": "Proliferative vasculopathy and hydranencephaly-hydrocephaly syndrome" + }, + { + "baseId": "16127|16130|33457|33458|33459|39732|101714|101715|101716|101717|134548|134549|188854|278799|278801|278808|278809|278820|278821|278830|278831|278836|278838|278844|278846|278848|278849|278852|278857|278858|278863|278867|278870|278871|278873|278877|278879|278880|278965|278966|278967|278979|278980|278988|278994|279013|279015|279016|279017|279018|279022|279023|279024|279025|279026|279030|279032|279033|279034|279037|279039|280153|280164|280183|280186|280203|280209|280223|280225|280231|280232|280251|280253|280265|280266|280275|280283|280285|280287|280288|280292|280293|280294|280296|280297|280298|280300|280303|280304|280305|280306|280307|280309|280310|280314|280315|280317|280320|280321|280325|280329|280336|280342|280359|280360|280361|280369|280371|280372|280376|280377|321408|321413|321416|321418|330643|330644|330647|330660|330665|337284|337288|337301|337302|337303|339235|339238|339246|339249|339254|339259|339268|339271|339273|339274|339278|339294|353094|361654|440444|442710|481580|508766|512887|620491|620492|620493|702995|789915|794562|858898|861614|863473|863474|863475|863476|863477|863478|863479|863480|863481|863482|863483|863484|863485|863486|863487|863488|863489|863490|863491|863492|863493|863494|863495|863496|863497|863498|863499|863500|863501|863502|863503|863504|863505|863506|863507|863508|863509|863510|863511|863512|865108|872674|872675|872676|872677|872678|872679|872680|872681|872682|872683|872684|872685|872686|872687|872688|872689|872690|872691|872692|872693|872694|872695|872696|872697|876451|876452", + "text": "Posterior column ataxia-retinitis pigmentosa syndrome" + }, + { + "baseId": "16133|16137|16138|16139|16140|16141|16142|16145|16147|186640|186643|193447|425390|623127|623128|623172|623173|623174|623175", + "text": "Glycogen storage disease IIIa" + }, + { + "baseId": "16133|16134|16135|16137|16138|16139|16142|16144|16145|16147|34067|34068|186637|186638|186639|186640|186641|186642|186643|186644|186645|186646|186647|192257|192258|193022|193447|193830|194847|195593|196194|198606|250043|250044|250045|250048|250049|250050|250052|250054|250055|250056|250057|250058|250059|250060|250062|250066|250067|250069|250071|250073|260780|260781|265466|265570|268647|269620|271341|271713|273867|281404|281411|281412|281415|281416|281422|281432|281433|281435|281436|282055|282056|282063|282064|282066|282067|282070|282071|282074|282083|282087|282090|282093|282095|282098|283366|283367|283383|283384|283393|283396|283397|283398|283403|283406|283410|283421|283426|283428|283524|283529|283534|283535|283536|283537|283543|283544|283545|283552|283564|283565|283570|283573|357187|357188|357189|357190|357191|357192|357193|357194|357195|357196|357197|357198|357199|357200|357201|357202|357203|357204|357205|357206|357207|357208|357209|357210|357211|357212|357213|357214|357215|357216|357217|357218|357219|357220|357221|357222|357223|357224|361161|361162|364070|365270|365296|365298|365466|365481|365482|365484|365563|365564|405277|413239|413240|421264|425390|433353|438829|446966|448282|448283|448285|448289|448292|448297|448315|448321|448327|448332|448337|448340|448342|448349|448351|448359|448407|448410|448412|448414|448418|448419|448421|448424|448425|448429|448431|448434|448435|448436|448438|448441|448443|448445|448446|448447|448448|448449|448450|448451|448452|448454|448455|448457|448458|448460|448468|448469|448473|448475|448482|448485|448486|448487|448491|448496|448497|448498|448501|448502|448503|448505|448507|448512|448514|448515|448519|448520|448521|488548|492311|498632|498816|498870|498878|513017|513245|516108|516110|516119|516121|516123|516126|516127|516128|516130|516134|516136|516140|516141|516142|516144|516146|516148|516149|516150|516154|516155|516159|516161|516163|516164|516166|516168|516169|516172|516173|516174|516176|516177|516178|516180|516181|516183|516185|516187|516190|516191|516192|516197|516199|516258|516259|516261|516264|516267|516280|516281|516282|516284|516287|536600|541355|541357|541361|541364|541367|541368|541373|541374|541376|541378|541379|541380|541383|541384|541386|541388|541392|541393|541395|541396|541403|541405|541406|541408|541409|541417|541418|541419|541421|541422|541423|541424|541427|541428|541430|541431|541433|541434|541435|541439|541440|541441|541442|541443|541444|541445|541449|541451|541452|541453|541457|541462|541464|541467|541468|541469|541473|541474|541475|541481|541484|541486|541487|541488|549539|556533|557390|557392|557394|557396|557398|557400|557402|557404|557406|557408|557410|557412|557433|557435|557437|557439|557441|557443|557445|557447|557449|557451|557453|557455|557457|557459|557461|557463|557465|558048|558050|558052|558054|558056|558058|558060|558062|558064|558607|558609|558611|558613|558615|558617|558619|558621|558623|558625|583082|620022|620023|620730|621092|621093|628304|628305|628306|628307|628308|628309|628310|628311|628312|628313|628314|628315|628316|628317|628318|628319|628320|628321|628322|628323|628324|628325|628326|628327|628328|628329|628330|628331|628332|628333|628334|628335|628336|628337|628338|628339|628340|628341|628342|628343|628344|628345|628346|628347|628348|628349|628350|628351|628352|628353|628354|628355|628356|628357|628358|628359|628360|628361|650549|650598|650703|655131|690682|690683|690684|690685|695064|696929|707618|707619|707620|719156|719157|719158|732681|732682|746706|746707|746710|746711|746712|746713|758955|759094|762123|762125|762128|777117|777152|778847|780790|780792|780795|780796|780797|787031|787182|790021|790022|790023|790024|790025|790026|790027|792666|792678|801601|819009|819010|819011|819012|819013|824567|824568|824569|824570|824571|824572|824573|824574|824575|824576|824577|824578|824579|824580|824581|824582|824583|824584|824585|824586|824587|824588|824589|824590|824591|824592|824593|824594|824595|824596|824597|824598|824599|824600|824601|824602|824603|824604|824605|824606|824607|824608|824609|850828|851075|851329|858983|864907|864908|864909|864910|864911|864912|864913|864914|864915|864916|864917|864918|864919|864920|864921|864922|864923|864924|864925|864926|864927|864928|864929|864930|864931|864932|864933|864934|864935|864936|864937|864938|865225|865226|916830|922183|922184|922185|922186|922187|922188|922189|922190|922191|922192|922193|922194|922195|922196|922197|922198|922199|922200|922201|922202|930718|930719|930720|930721|930722|930723|930724|930725|930726|930727|930728|930729|930730|930731|930732|930733|930734|930735|930736|930737|930738|930739|930740|930741|939834|939835|939836|939837|940651|940652|942156|942157|942158|942159|942160|942161|942162|942163|942164|942165|942166|942167|942168|942169|942170|942171|942172|942173|952566|952567|952568|952569|952570|952571|952572|952573|952574|952575|952576|952577|952578|952579|952580|952581|952582|952583|952584|952585|952586|952587|952588|952589|952590|952591|952592|952593|952594|952595|952596|952597|952598|959574|960437|960438|960439|960440|960441|960442|961826|961827|961828|964805|969542|971686|971687|971688|971689|971690|971691|971692|971693|971694|971695|971696|971697|971698|971699|971700|971701|971702|971703|971704|971705|971706|971707|971708|977565|977566|977567|977568|977569|977570|977571|977572|977573", + "text": "Glycogen storage disease type III" + }, + { + "baseId": "16134|16135|16138|16143|16144|192258", + "text": "Glycogen storage disease IIIb" + }, + { + "baseId": "16146", + "text": "Glycogen storage disease IIIc" + }, + { + "baseId": "16148|16148|16149|16150|16151|16152|16153|16154|16155|16156|49692|49693|49694|49695|49696|49697|49698|49699|49702|49703|49704|49705|49706|49707|49708|49709|49710|49711|49712|49713|49714|49715|49717|49718|49719|49720|49721|49722|49723|49724|49725|49727|49728|49729|49730|49731|49732|49733|49734|49735|49736|49737|49738|49739|49741|49742|49743|49744|49746|49747|49748|49749|49750|49751|49752|49753|49754|49755|49756|49757|49758|49759|49760|49761|49763|49764|49765|49766|49767|49768|49769|49770|49771|49772|49773|49774|49775|49777|49778|49779|49780|49781|49782|49783|49784|49785|49786|49788|49790|49791|49792|49823|49827|135810|135811|135812|135813|135814|186198|186199|186200|186201|186202|186203|186204|191839|199801|208197|208198|213128|213129|213130|213131|213132|213133|213134|213135|213136|214790|214791|222419|222420|222421|222422|222423|222424|222425|222426|227366|237049|237525|237526|242045|242046|242047|242048|242049|242050|242051|242052|242053|242054|242056|242057|266495|268255|268998|275329|322569|322571|322572|322573|322579|322580|322583|332009|332010|332017|332021|332024|332028|332037|332038|332040|332041|332045|332047|332054|332055|332057|332058|338989|338991|338993|338994|338999|339000|339004|339006|339012|339013|339015|339019|339019|339021|340572|340573|340576|340579|340580|340581|340582|340583|340587|340588|340592|360265|360970|360971|363868|363887|373433|373435|374085|374516|376425|389161|400026|400031|400093|400100|400101|400104|400109|400111|400113|400119|400120|400256|400263|400270|400273|400281|400285|400287|400532|400581|400583|400585|400592|400594|400600|400601|400603|400605|400608|400608|400609|400613|400615|400852|400855|400902|400905|400907|400911|400916|400918|400920|400921|400928|400929|409235|409240|413401|415420|426099|439035|441743|441746|441749|441752|464230|464234|464237|464240|464245|464247|464254|464259|464266|464268|464270|464271|464274|464278|464287|464517|464772|464781|464783|464787|464789|464794|464797|464801|464803|464805|464810|464811|464814|465023|465027|465030|465032|465035|465035|465039|465042|465043|465044|465046|465049|465050|465051|465052|465056|465059|465061|465061|465068|465071|465072|465073|465075|465077|465081|465083|465085|465088|465091|465093|465094|465098|465100|465103|465104|465109|465113|465114|465120|465122|465125|482069|482070|482070|491234|495776|504782|512942|512943|512980|513452|528600|528602|528799|528805|528807|528815|528818|528820|528823|528824|528826|528829|528830|528832|528833|528835|528837|528840|528841|528843|528848|528853|528855|528859|528862|528863|528864|528865|528868|528869|528872|528875|528876|528877|528879|528887|528895|529185|529186|529190|529192|529194|529202|529205|529207|529220|529222|529226|529235|529236|529240|529242|529244|529314|529315|529317|529319|529322|529323|529325|529329|529333|529335|529342|529344|529355|529356|529365|529369|529370|529371|529378|529384|529385|529387|529391|529397|529401|529409|529411|529413|535706|552181|552181|552182|566869|567020|567021|567024|567028|567029|567043|567044|567046|567058|567059|567064|567067|567068|567075|567076|567081|567085|567086|568796|568798|568800|568802|568803|568811|568819|568820|568823|568832|568836|568855|568856|568858|569203|569354|569358|569369|569370|569372|569374|569374|569380|569382|569384|569390|569391|569395|569396|569401|569402|569404|569407|569408|569412|569413|569416|569417|573237|573243|573246|573252|573254|573255|573256|573263|573267|573270|573271|573273|573280|573281|573284|573288|573291|573300|573304|573310|573311|573317|611795|613011|620515|620868|643188|643189|643190|643191|643192|643193|643194|643195|643196|643197|643198|643199|643200|643201|643202|643203|643204|643205|643206|643207|643208|643209|643210|643211|643212|643213|643214|643215|643216|643217|643218|643219|643220|643221|643222|643223|643224|643225|643226|643227|643228|643229|643230|643231|643232|643233|643234|643235|643236|643237|643238|643239|643240|643241|643242|643243|643244|643245|643246|643247|643248|643249|643250|643251|643252|643253|643254|643255|643256|643257|643258|643259|643260|643261|643262|643263|643264|643265|643266|643267|643268|643269|643270|643271|643272|643273|643274|643275|643276|643277|643278|643279|643280|652410|652520|652561|652666|652735|652740|652743|652744|684534|684535|684536|684537|684538|684539|684540|684541|688417|688419|688423|688428|688429|688431|688433|688434|688435|690099|690100|690102|690104|690105|693676|693678|693682|693683|693684|695643|726088|754470|770161|770167|770169|770172|770173|776077|784930|784934|784937|787951|789082|789129|791450|791451|791452|791453|792796|802202|820699|820700|820702|820703|820704|820705|820706|842328|842329|842330|842331|842332|842333|842334|842335|842336|842337|842338|842339|842340|842341|842342|842343|842344|842345|842346|842347|842348|842349|842350|842351|842352|842353|842354|842355|842356|842357|842358|842359|842360|842361|842362|842363|842364|842365|842366|842367|842368|842369|842370|842371|842372|842373|842374|842375|842376|842377|842378|842379|842380|842381|842382|842383|842384|842385|842386|842387|842388|842389|842390|842391|842392|842393|842394|842395|842396|842397|842398|842399|842400|842401|842402|842403|842404|842405|842406|842407|842408|842409|842410|842411|842412|851615|851617|852037|852039|852588|852589|852590|852765|858411|873552|873553|873554|873555|873556|873557|873558|873559|873560|873561|873562|873563|873564|873565|873566|873567|873568|873569|873570|873571|873572|873573|873574|873575|873576|873577|873578|873579|873580|873581|873582|873583|873584|873585|873586|876515|876516|876517|876518|919570|920343|920344|927314|927315|927316|927317|927318|927319|927320|927321|927322|927323|927324|927325|927326|927327|927328|927329|927330|927331|927332|927333|927334|927335|927336|927337|927338|927339|927340|927341|936924|936925|936926|936927|936928|936929|936930|936931|936932|936933|936934|936935|936936|936937|936938|936939|936940|936941|936942|936943|936944|936945|936946|936947|936948|936949|936950|936951|936952|936953|941088|941089|948884|948885|948886|948887|948888|948889|948890|948891|948892|948893|948894|948895|948896|948897|948898|948899|948900|948901|948902|948903|948904|948905|948906|948907|957424|957425|957426|957427|957428|957429|957430|957431|957432|957433|957434|957435|957436|957437|957438|960111|960112|961324|963074|963170|963171|964420|966054", + "text": "Spastic paraplegia 11, autosomal recessive" + }, + { + "baseId": "16148|16148|16149|16150|49728|214790|214791|237525|237526|339019|400608|465035|465061|482070|569374|792796", + "text": "Charcot-Marie-Tooth disease, axonal type 2X" + }, + { + "baseId": "16150|16151|49711|49718|49757|49782|339019|374516|400608|465035|465061|482070|552181|552182|569374|792796|861398|861399|861400", + "text": "Amyotrophic lateral sclerosis type 5" + }, + { + "baseId": "16151|17562|21144|21146|45791|49924|49929|51184|135812|181460|181467|185949|190660|190870|205789|211769|212511|236923|266622|284698|285646|358179|375819|389217|392272|401365|402131|411550|411551|411552|411553|411554|411555|411556|411557|411558|411559|411560|411561|411562|411563|411564|411565|411566|411567|411568|411569|411570|411571|411572|411573|411574|411575|411576|411577|411578|411579|411580|411581|411582|411583|411585|411586|411588|411589|411590|411591|411592|411593|411594|411595|411596|411597|411598|464396|464398|464989|465100|465172|465178|465183|465193|465255|497082|528928|529032|529036|529373|529374|529379|529542|567194|567197|568580|573406|643420|643421|643422|682752|693694|693695|693696|693700|693701|693702|693703|695650|695652|714479|739671|815844|842546|918407|927376|936994|936995|936996|948947|957457", + "text": "Hereditary spastic paraplegia" + }, + { + "baseId": "16157|16158|16159|16160|16161|265917|290283|290284|290285|290290|290291|290295|291116|291117|291118|291128|291136|291140|291141|291142|294419|294428|294431|294437|294438|294446|294758|294759|294768|294783|294793|294807|294827|367543|367565|500253|552073|620125|620126|698078|792736|888873|888874|888875|888876|888877|888878|888879|888880|888881|888882|888883|888884|888885|888886|888887|888888|888889|891640|891641", + "text": "Anemia, sideroblastic, 2, pyridoxine-refractory" + }, + { + "baseId": "16158|620124", + "text": "SLC25A38-Related Disorders" + }, + { + "baseId": "16162|16163|16164|16165|16166|16167|16168|433925|516104|628249|628250|628251|730021|732567|762062|799223|824388|824389|952508|952509", + "text": "Schneckenbecken dysplasia" + }, + { + "baseId": "16169", + "text": "Inflammatory bowel disease 10, susceptibility to" + }, + { + "baseId": "16170|16171|39807|39808|39809|101542|101544|101545|106536|177679|229664|229665|229666|229667|229668|229669|229671|229672|229674|307025|307026|307027|311138|311144|316734|316738|316741|316744|316748|316751|316752|316754|317139|317140|317141|317143|317157|317159|364144|369915|370416|370418|370683|372286|372310|444372|444373|444375|458412|458414|458874|458876|458878|458882|458919|458923|459410|459412|459417|459418|459421|496504|496937|524064|524069|524072|524355|524363|524577|524581|524583|524586|524622|562830|562832|562845|563540|563552|565339|565568|565570|568543|568546|568547|568549|637769|637770|637771|637772|637773|637774|637775|637776|637777|637778|637779|637780|655900|692589|692590|692591|692592|736921|751429|751430|767150|767152|767154|783295|820075|835554|835555|835556|835557|835558|835559|835560|835561|835562|835563|835564|835565|835566|901164|901165|901166|901167|901168|901169|901170|901171|901172|925404|925405|934565|934566|934567|934568|934569|946395|946396|955703|955704|955705|955706|955707", + "text": "Congenital disorder of glycosylation type 1M" + }, + { + "baseId": "16172|16173|16174|16175|16176|16177|16178|16179|16180|16181|48341|48591|48592|94345|191592|255359|255360|271580|323347|323348|323353|323356|323358|323376|323379|323382|323383|332999|333003|333008|333021|333022|333028|333029|333032|333035|333039|333041|333044|333046|333047|339868|339869|339872|339873|339876|339877|339880|339881|339882|339883|341281|341282|341283|341287|341288|341291|431508|439522|464530|464537|465167|465174|465305|465420|573538|587548|703324|703326|703329|703331|714597|726240|754665|778195|785010|874139|874140|874141|874142|874143|874144|874145|874146|874147|874148|874149|874150|874151|874152|874153|874154|874155|874156|874157|874158|874159|874160|876567|876568|876569|876570|876571|903605|919595|919596|937073|937074|940330|941095|949012|960121|973038|973039", + "text": "Matthew-Wood syndrome" + }, + { + "baseId": "16182|313115|313119|319168|319170|319174|319177|325309|325310|325311|326158|326167|326173|326176|326183|326188|545814|712698|724288|783902|978866|978867|978868|978869|978870|978871|978872|978873|978874|978875|978876", + "text": "Hydrolethalus syndrome" + }, + { + "baseId": "16182|313120|545808|545811|545814|546109|546111|546161|546165|546435|546437|546439", + "text": "Hydrolethalus syndrome 1" + }, + { + "baseId": "16183|16184|16185|185756|188107|205049|205050|213970|237274|243978|366235|366274|366276|366277|366800|405524|421351|481398|481399|499680|499696|629237|629238|629239|629240|677411|730094|743857|789112|952868|961231|961232|961752|961753|961754|961755|961756", + "text": "Beta-hydroxyisobutyryl-CoA deacylase deficiency" + }, + { + "baseId": "16186|16187|16188|16189|16190|102398|106441|106442|176959|177222|177507|177508|177509|177510|186021|192577|212353|212354|212355|221433|221434|251323|251324|251325|251326|251327|251329|251330|265833|265834|292197|292198|292203|292204|292209|292211|292219|292220|293631|293632|293634|293637|293643|293647|296969|296970|296971|296972|296974|296977|296978|296980|296984|296985|357327|428271|428272|428273|438279|453263|520007|543041|543046|543048|543050|543051|543057|543058|543060|543070|543257|543262|543273|543274|543287|543298|543300|543302|543304|543307|543322|543324|543327|543330|543334|543342|543346|543350|543353|543355|543357|543358|543360|543363|543367|543369|543371|543373|543375|543384|543386|543387|551531|615888|620147|620148|631913|683620|683621|686492|686495|691508|698361|764292|828732|828734|828735|828739|828744|856311|890077|890078|890079|890080|890081|890082|890083|890084|890085|890086|890087|962699|978012|978013|978014|978015", + "text": "Bardet-Biedl syndrome 12" + }, + { + "baseId": "16186|17586|28369|39169|165814|165815|188428|207171|207172|207173|226235|226236|406053|514069|514070", + "text": "Abnormality of cardiovascular system morphology" + }, + { + "baseId": "16186|203840|203843|260323|263250|263309|360933|360934", + "text": "Inability to walk" + }, + { + "baseId": "16186|28855|28860|39217|259861|259864|361188|380284|428715|514122|590738|590739|625969|625969|625971|625972", + "text": "Postaxial polydactyly type A1" + }, + { + "baseId": "16186|18513|24396|98778|188865|360815|360816|360817|361392|362165|415139|513965|513966|514039|514150|801185|801225|980736", + "text": "Visual impairment" + }, + { + "baseId": "16191|16192|16193|16194|16195|16196|16197|16198|187120|254568|254569|254570|254572|254580|254581|254585|254586|254587|317279|317280|317286|317287|317293|317294|325024|325025|325033|325036|325043|325044|325045|331177|331185|331195|331196|331198|331199|331205|332695|332696|332701|373089|408669|434767|492451|504496|527182|547012|565485|566840|566841|576154|588750|609833|620443|641141|641142|641143|641144|656166|667102|713545|725111|738657|738659|738660|753393|760200|760202|769133|769135|769136|769138|775900|784395|787788|787806|787812|796775|799684|839964|839965|839966|869907|869908|869909|869910|869911|869912|869913|869914|869915|869916|869917|869918|869919|936135|936136|941033|941034|956886|960787|979283|979284|979285|979286|979287|981802|981803|981804|981805|981806", + "text": "Glycogen storage disease, type VII" + }, + { + "baseId": "16200|16200|16201|16202|47611|76621|134822|134822|134823|134823|186088|186088|189035|192927|192927|194463|212626|215376|221753|221753|240231|273689|304107|304116|304117|304117|304122|304124|304124|304132|307707|307707|307717|307719|307719|307723|307730|307730|307733|307735|307735|307738|307738|307739|312730|312745|312746|312746|312753|312759|312760|312761|312864|312865|312866|312868|312872|312875|312877|312877|312884|312885|312886|312886|312893|312899|312900|361439|361439|369691|371499|395886|396283|396284|425775|425775|441168|457793|457807|457807|457808|457808|458179|458181|486611|486611|489373|522977|522984|522989|523617|561941|562349|562351|564606|564611|564614|564620|564623|564630|567355|567356|567360|567360|622349|622385|622411|622417|622448|636577|636578|636579|636580|636581|636582|683972|683973|683974|683975|683976|683976|685233|685234|685236|687175|687181|687182|692345|722840|782989|796116|819944|834108|834109|834110|834111|834111|834112|834113|898806|898807|898808|898809|898810|898811|898812|898813|898814|898815|898816|898817|898818|898819|898820|898821|898822|900436|900437|900438|925008|925009|925010|925011|934087|934088|945849|955287", + "text": "Hereditary spastic paraplegia 8" + }, + { + "baseId": "16200|97556|214760|214761|361439|396283|457793|458179|522977|522989|523617|561941|562349|562351|564606|564611|564614|564620|564623|564630|567355|567356|621019|636577|636579|636580|636581|636582|790780|970873", + "text": "Ritscher-Schinzel syndrome 1" + }, + { + "baseId": "16203", + "text": "FACTOR XII (WASHINGTON D.C.)" + }, + { + "baseId": "16204", + "text": "FACTOR XII (LOCARNO)" + }, + { + "baseId": "16205|16206|16207|16208|16209|227284|251868|251869|297104|297110|297117|297118|297132|297134|299039|299040|299041|299042|299043|299067|299070|303255|303259|303260|303268|303269|303284|303290|303292|303301|303307|303308|303438|303439|303440|303444|303445|353691|353692|893997|893998|893999|894000|894001|894002|894003|894004|894005|896080|896081|896082|896083|896084", + "text": "Factor XII deficiency disease" + }, + { + "baseId": "16205|251868|297104|297110|299039|299040|299041|299042|303255|303259|303260|303268|303269|303435|303438", + "text": "Nephrolithiasis/osteoporosis, hypophosphatemic" + }, + { + "baseId": "16205", + "text": "F12-Related Disorders" + }, + { + "baseId": "16206", + "text": "FACTOR XII POLYMORPHISM" + }, + { + "baseId": "16206|16207|16208|16208|16209|251868|251869|297117|297118|297132|297134|299041|299042|299043|299067|299070|303268|303269|303284|303290|303292|303301|303307|303308|303439|303440|303444|303445|390679|435195|700335|893997|893998|893999|894000|894001|894002|894003|894004|894005|896080|896081|896082|896083|896084|967291|971506|971507|971508|971509|971510", + "text": "Hereditary angioedema type 3" + }, + { + "baseId": "16207", + "text": "FACTOR XII (TENRI)" + }, + { + "baseId": "16208|251868|297104|297110|299039|299040|299041|299042|303255|303259|303260|303268|303269|303438|314325|353691|353692|581232", + "text": "Hereditary angioneurotic edema" + }, + { + "baseId": "16209|362153|417648|677237|677238|677239", + "text": "Angioedema" + }, + { + "baseId": "16209", + "text": "Urticaria (disease)" + }, + { + "baseId": "16209|27320|168041|168042|168043|168044|168045|168046|168047|168048|168049|168050|168051|168052|206950|206951|206952", + "text": "Hyperbilirubinemia" + }, + { + "baseId": "16209|35796|223747|250588|360836|360862|360987|360988|360989|360993|513923|514037|622024|622025|622026|622027", + "text": "Hypertensive disorder" + }, + { + "baseId": "16210|16212|16213|16214|16215|16216|16217|16218|16219|16220|16221|16222|16223|16224|16225|16226|44641|44645|44648|44649|44651|44653|44655|71453|71453|71454|71455|71456|71457|71458|88099|237358|304470|304472|304478|304479|304480|304485|304487|304491|304492|304495|304508|304509|304510|304511|304516|304518|304519|304520|304527|304528|304541|304542|308223|308224|308249|308254|308256|308261|308264|308270|308280|308281|308283|308284|308285|313236|313242|313245|313247|313248|313270|313277|313278|313281|313283|313285|313286|313297|313327|313328|313332|313333|313335|313338|313339|313341|313342|313343|313351|313359|313369|313381|313384|313398|313400|313404|428801|441176|441178|441179|513068|513069|544374|544381|544384|544387|544390|544392|544394|544396|544398|544651|544654|544659|544660|544661|544665|544673|544674|544676|544677|544678|544681|544685|544686|544688|544693|544694|544696|544696|544703|544705|544710|544712|544716|544718|544732|544735|544737|544738|544740|544741|544743|620294|695381|899026|899027|899028|899029|899030|899031|899032|899033|899034|899035|899036|899037|899038|899039|899040|899041|899042|899043|899044|899045|899046|899047|899048|899049|899050|899051|899052|899053|899054|899055|899056|899057|899058|899059|899060|899061|899062|899063|900452|900453|961817|961818|972009|972010|972011|983570|983571", + "text": "Deficiency of steroid 11-beta-monooxygenase" + }, + { + "baseId": "16210|16211|31916|44641|44645|44649|44651|44653|71453|304470|304472|304478|304479|304480|304484|304485|304487|304491|304492|304495|304508|304509|304510|304511|304516|304518|304519|304520|304527|304528|304541|304542|304547|304548|304552|304553|304554|304555|304569|304570|304571|304572|304573|304577|304580|304581|304583|304593|304594|304596|304598|304602|304605|308223|308224|308249|308254|308256|308261|308264|308270|308280|308281|308283|308284|308285|308289|308296|308310|308312|308315|308316|308321|308322|308323|313236|313241|313242|313245|313247|313248|313270|313277|313278|313281|313283|313285|313286|313297|313327|313328|313332|313333|313334|313335|313338|313339|313341|313342|313343|313344|313345|313346|313347|313348|313349|313350|313351|313355|313359|313361|313362|313369|313381|313384|313398|313400|313404|313407|313411|313418|313425|313428|313433|313445|313446|313448|313449|313454|313455|313456|313457|313462|313464|313467|313479|353825|428801|544674|544678|544696|620294|695381|711339|722896|750943|750948|766574|783007|899026|899027|899028|899029|899030|899031|899032|899033|899034|899035|899036|899037|899038|899039|899040|899041|899042|899043|899044|899045|899046|899047|899048|899049|899050|899051|899052|899053|899054|899055|899056|899057|899058|899059|899060|899061|899062|899063|899064|899065|899066|899067|899068|899069|899070|899071|899072|899073|899074|899075|899076|899077|899078|899079|899080|899081|899082|899083|899084|899085|899086|899087|900452|900453|900454|900455|919141|920251", + "text": "Hyperaldosteronism, familial, type I" + }, + { + "baseId": "16218|16225|27193|44641|44642|44643|44644|44646|44647|44648|44649|44650|44651|44652|44653|44654|44655|44656|44657|44658|44659|44660|276415|276799|304484|308905|309342|313241|313334|314024|314138|314160|314161|319911|320450|975788", + "text": "Congenital adrenal hyperplasia" + }, + { + "baseId": "16227|45727|152813", + "text": "Retinitis pigmentosa 36" + }, + { + "baseId": "16228", + "text": "Coronary artery spasm 3, susceptibility to" + }, + { + "baseId": "16229|16230|16231|16232|16233|38590|39802|39803|39804|360853|514082", + "text": "Anonychia" + }, + { + "baseId": "16234|16235|16236|16237|53012|53013|53016|174282|174283|174422|192270|229303|229307|271525|275022|297985|297986|297987|297991|300184|300185|300187|300190|300193|300194|300195|300201|304395|304402|304403|304409|304720|304725|304741|304746|304748|404768|496825|894616|894617|894618|894619|894620|894621|894622|894623|894624|894625|894626|894627|894628|896126", + "text": "Deafness, autosomal recessive 49" + }, + { + "baseId": "16237", + "text": "Deafness, neurosensory, autosomal recessive 49" + }, + { + "baseId": "16239|16240|211198|513281", + "text": "Coenzyme Q10 deficiency, primary, 3" + }, + { + "baseId": "16241|16242|16243|16244|16245|16246|16247|16248|16249|16250|253866|253867|253868|253869|253870|253871|253872|264435|268603|311254|311258|311263|311270|311271|311276|311281|311293|316667|316689|316690|316692|316693|316699|316710|316711|316724|316727|316742|316745|316746|316747|316749|316750|316762|316765|316770|316772|316775|322697|322698|322716|322718|322719|322735|322741|322748|322750|322751|322753|322755|322759|322764|322765|323404|323406|323415|323418|323419|323429|323430|323431|323432|323433|359871|407916|407917|415233|421802|425217|425218|460173|460972|525437|525521|525524|525662|525664|525798|563966|564749|566512|566516|566520|569772|569774|639182|639183|639184|701448|837334|837335|837336|837337|837338|866353|866354|866355|866356|866357|866358|866359|866360|866361|866362|866363|866364|866365|866366|866367|866368|866369|866370|866371|866372|866373|866374|866375|866376|866377|866378|866379|866380|866381|868514|868515|868516|925943|935190|959946", + "text": "Hepatic methionine adenosyltransferase deficiency" + }, + { + "baseId": "16251|21188|30977|30993|30995|30999|138212|336004|336005|336007|336014|336016|336017|336021|336026|336027|336030|336035|336044|336045|336051|336052|336060|336069|336070|336074|336075|336076|336086|336088|336091|345757|345767|345770|345777|345781|345782|345785|345787|345790|345794|345805|345806|345808|345819|345821|345822|345831|350232|350234|350238|350240|350242|350244|350245|350246|350247|350250|350251|350254|350255|350257|350258|350261|350262|350265|350266|350269|350270|350273|350276|350278|351284|351287|351288|351291|351293|351297|351298|351301|351302|351305|351306|361065|610611|613921|742476|861666|886402|886403|886404|886405|886406|886407|886408|886409|886410|886411|886412|886413|886414|886415|886416|886417|886418|886419|886420|886421|886422|886423|886424|886425|886426|886427|886428|886429|886430|886431|886432|886433|886434|886435|886436|886437|886438|886439|886440|886441|886442|919922|919923|920083|920111|966169|971151", + "text": "Pseudohypoparathyroidism type 1B" + }, + { + "baseId": "16252", + "text": "Memory quantitative trait locus" + }, + { + "baseId": "16253|16254|16255|16256|34577|34578|166128|283866|302509|302514|302515|302520|302523|302525|302529|302533|302538|302539|302544|302545|302546|302547|302551|302553|305782|305783|305792|305794|305816|305818|305836|305845|305847|305849|305876|305881|305883|305884|305886|305887|305888|305898|305901|305902|305903|305918|305920|305923|305930|310584|310585|310591|310597|310598|310601|310605|310608|310616|310620|310621|310628|310629|310634|310638|310639|310647|310648|310649|310652|310821|310823|310824|310828|310836|310840|310861|310863|310872|310876|310888|310894|310896|310898|310900|310913|364075|421629|425747|457036|457671|522844|522846|561146|561865|622887|687036|687037|687038|687039|692215|692216|700003|736078|782834|782836|833493|897872|897873|897874|897875|897876|897877|897878|897879|897880|897881|897882|897883|897884|897885|897886|897887|897888|897889|897890|897891|897892|897893|897894|897895|897896|897897|897898|897899|897900|897901|897902|897903|897904|897905|897906|897907|897908|897909|900345|900346|900347|900348", + "text": "Hypomyelination and Congenital Cataract" + }, + { + "baseId": "16257|16258|16259|16260|39790|39791|77000|77001|79917|133912|133912|133913|133913|133914|133915|133916|133916|133917|133918|133918|133919|133920|133921|133921|133922|133923|133924|133925|133925|152914|191276|191276|205722|205723|206728|206728|206730|206730|249528|249528|249529|249529|277295|277296|277299|277305|277309|277309|277311|277312|277313|277323|277326|277326|277328|277331|277331|277332|277347|277510|277511|277511|277512|277512|277520|277520|277530|277530|277532|277539|277544|277544|277547|277547|277550|277550|277552|277554|277554|278365|278366|278367|278370|278375|278380|278381|278381|278382|278382|278387|278388|278389|278390|278390|278392|278392|278393|278393|278394|278396|278400|278402|278410|278410|278413|278413|278414|278414|278416|278429|364534|434562|437799|447270|447277|447278|447279|447369|447410|447418|447421|447430|447466|447466|447469|447471|447476|447484|485986|492028|515262|515264|515265|515265|515274|515276|515306|515315|515351|515352|515354|536569|536569|537080|549502|556682|556684|556686|556688|556737|556737|556739|556741|557034|557036|557038|558222|558224|558226|558228|558230|558232|558234|576078|576078|576438|576441|578778|578784|578790|578790|578793|578794|578794|578803|578803|578804|578804|578811|578811|584195|584195|614196|614196|614197|614198|614199|614200|619965|619966|627059|627060|627061|627062|627063|627064|627065|627066|627067|627068|627069|627070|627071|627072|627073|627074|627075|627076|627076|650536|650592|677123|690409|690409|690412|690412|690415|690416|695016|695017|695019|695019|696253|696254|696256|696258|696261|718381|729937|731862|789877|794490|794490|822980|822981|822982|822983|822984|822985|822986|822987|822988|822989|822990|822991|822992|851237|858872|861588|861603|862754|862755|862756|862757|862758|862759|862760|862761|862762|862763|862764|862765|862766|862767|862768|862769|862770|862771|862772|862772|862773|862774|862775|865029|865030|865031|921739|921740|921741|930152|930153|930154|930155|941568|941569|941570|941571|941572|952138|952139|966155", + "text": "Kufor-Rakeb syndrome" + }, + { + "baseId": "16261|16261|16262|16262|16263|16264|16265|16266|101278|101279|101280|101281|101282|101282|101285|101285|101286|101286|101287|101287|101288|101288|177167|177299|177299|177431|194946|194946|195702|257332|257332|257333|257333|257335|257335|271293|271293|334835|334840|344709|344711|344713|344715|344715|349690|349693|349695|349695|349696|349696|349698|349701|349702|350689|350690|350690|350692|471367|533466|534028|571157|572868|575077|575077|620652|620653|648587|648588|648589|653118|653191|695841|695841|695842|695842|695843|695845|705393|705394|705395|705395|716866|757387|773012|800168|801196|848233|848234|852898|885829|885830|885831|885832|885833|885834|885835|885836|885837|885838|885839|885840|885841|885842|887428|919906|919907|958790", + "text": "Congenital dyserythropoietic anemia, type II" + }, + { + "baseId": "16261|16262|101282|101285|101286|101287|101287|101288|177299|194946|226247|257332|257333|257335|271293|344715|349695|349696|350690|533466|534028|571157|572868|575077|648587|648588|648589|653118|653191|695841|695842|695843|695845|705394|705395|716866|757387|848233|848234|852898|958790", + "text": "Cowden syndrome 7" + }, + { + "baseId": "16267|48120|464037|572784|702868|725663|725664|739207|739208|779716|779719|920332", + "text": "Craniolenticulosutural dysplasia" + }, + { + "baseId": "16268|227312|227313|544362|544363|544365|544372|544646|544648|544727|544729|544731|622382|917580", + "text": "Tumoral calcinosis, familial, normophosphatemic" + }, + { + "baseId": "16269|16269|16270|16271|16271|16272|16273|16274|16275|16275|16276|16276|16277|39789|39789|102394|102394|102395|102396|102396|102397|176990|176990|177253|177253|205376|205376|205377|205377|205378|247363|259899|259899|305403|305407|305409|305409|305411|305416|305417|305418|305420|305421|309247|309255|309255|309257|309258|309274|309279|309289|309290|309301|309302|309314|314506|314506|314511|314513|314515|314515|314517|314517|314531|314533|314535|314536|314537|314539|314542|314548|314554|314555|314558|314589|314589|314592|314592|314595|314595|314596|314597|314597|314601|314601|314602|314603|314605|314606|314610|314611|314612|314614|314623|314625|361294|407393|407394|407394|413894|415132|415132|488261|488261|495386|495386|513428|523172|523582|539012|544421|544423|544423|544430|544443|544447|544450|544728|544733|544734|544742|544747|544754|544754|544767|544772|544772|544774|544775|544779|544781|544782|544782|544783|544787|544789|544792|544795|544817|544820|544826|544830|544833|544833|544842|544843|544843|552124|562427|562958|565143|567933|621282|626178|637223|637224|637224|637225|637226|637227|711544|711544|711545|711545|711546|711546|711547|711548|711548|723110|723110|723111|723112|723112|723113|723113|723114|723115|723115|730577|736686|736686|736687|736687|744365|751172|751173|751175|751176|751176|751177|751177|751178|759728|766827|766827|766828|766831|766832|766832|775276|775334|783117|787737|790803|819962|819963|819964|819965|819966|819967|834781|834781|834782|834783|834783|834784|834785|834786|834786|834787|834788|834789|834790|834790|834791|834792|834793|834794|834795|856589|899645|899646|899647|899648|899648|899649|899650|899651|899652|899653|899654|899655|899656|899657|899658|899659|899660|899661|899662|899663|899664|899665|899666|899667|899668|899669|899670|899671|899672|899673|899674|899675|899676|899677|899678|899679|899680|899681|899682|899683|899684|899685|899686|899687|899688|899689|899690|899691|899692|899693|899694|899695|899696|900502|900503|925209|934318|934319|934320|934321|934322|934323|940105|940106|946077|946078|946079|946080|946081|946082|946083|946084|946085|946086|955422|955423|955424|955425|955426|955427|955428|955429|955430|963083|972012|972013|972014|972015|972016|972017|972018|972019|972020|972021|972022|972023|978471", + "text": "Mucopolysaccharidosis, MPS-III-C" + }, + { + "baseId": "16269|16270|16271|16275|16276|39789|102394|102396|176990|177253|205375|205376|205376|205377|205377|259899|305409|309255|309255|314506|314515|314517|314589|314592|314595|314597|314601|407394|415132|488261|495386|523172|523582|539012|544423|544754|544772|544782|544833|544843|562427|562958|565143|567933|621282|637223|637224|637225|637226|637227|711544|711545|711546|711547|711548|723110|723111|723112|723113|723114|723115|730577|736686|736687|744365|751172|751173|751175|751176|751177|751178|766827|766828|766831|766832|775276|783117|787737|819962|819963|819964|819965|819966|819967|834781|834782|834783|834784|834785|834786|834786|834787|834788|834789|834790|834791|834792|834793|834794|834795|899648|915033|919158|925209|934318|934319|934320|934321|934322|934323|940105|940106|946077|946078|946079|946080|946081|946082|946083|946084|946085|946086|955422|955423|955424|955425|955426|955427|955427|955428|955429|955430|962889|962890|962891|962892|962893", + "text": "Retinitis pigmentosa 73" + }, + { + "baseId": "16269|16275|20146|20150|39416|39752|39789|102394|195855|259899|265225|309255|309284|314503|314556|318311|326267|326268|326347|328513|332578|332641|334163|334224|338454|338457|338462|338481|344536|344539|344543|344545|345940|345941|345945|346332|346359|347721|358524|487839|544423|544781|562427|915033", + "text": "Sanfilippo syndrome" + }, + { + "baseId": "16276|16601|16604|16605|20146|20147|20150|39416|247363|264874|508893|513465|548897|620589|818746|818747|818748|818749", + "text": "Mucopolysaccharidosis" + }, + { + "baseId": "16278|980437", + "text": "Immunodeficiency due to defect in mapbp-interacting protein" + }, + { + "baseId": "16279|102123|102124|192553|256893|333267|333275|333277|333278|333282|333283|333284|343367|343371|343378|343379|343382|343383|343385|348648|348651|348658|348659|348661|348664|348665|348666|348673|348675|348678|348679|349718|349721|349722|349728|349729|349731|349732|349735|847554|880387|880388|880389|880390|880391|880392|880393|880394|880395|880396|880397|880398|880399|880400|880401|880402|880403|880404|880405|880406|880407|880408|880409|880410|880411|880412|880413|880742", + "text": "Age-related macular degeneration 6" + }, + { + "baseId": "16279|16280|16281|102123|102124|192553|204391|256893|333267|333275|333277|333278|333282|333283|333284|343367|343371|343378|343379|343382|343383|343385|348648|348651|348658|348659|348661|348664|348665|348666|348673|348675|348678|348679|349718|349721|349722|349728|349729|349731|349732|349735|590329|623353|880387|880388|880389|880390|880391|880392|880393|880394|880395|880396|880397|880398|880399|880400|880401|880402|880403|880404|880405|880406|880407|880408|880409|880410|880411|880412|880413|880742", + "text": "Cone-rod dystrophy 11" + }, + { + "baseId": "16282|16283|16284|16285|132077|132081|132088|132090|132092|132102|132103|132114|132118|132123|132124|132140|132147|132161|132171|132179|132182|132191|132191|132192|132193|132201|132204|132208|132208|132209|132218|132225|132237|132237|132240|132244|132250|132251|132255|132258|132268|132271|132278|132286|132288|132290|132291|133574|133576|133587|133590|133593|133601|133601|139840|142278|150970|151242|151249|151423|151688|153698|180735|180736|180742|180754|184177|184202|184207|184211|184213|184235|184239|184249|184286|186212|186220|186222|213153|214572|235150|235197|235209|235265|235280|242367|242396|334406|334409|342534|374972|377394|389266|389283|401785|466261|466269|466348|477581|478191|482931|484720|812845|818451|818569|818570|874991|874992|874993", + "text": "Fanconi anemia, complementation group N" + }, + { + "baseId": "16282|16284|16285|18058|18062|18062|18064|18072|18075|18076|18077|18083|18083|19775|19775|19776|19777|19777|19777|20630|20631|20633|20635|20636|20637|20637|20638|20639|20639|20642|20642|23084|23221|24359|24361|24364|24365|24368|24381|27272|27395|28166|28975|32700|32700|32701|32709|32710|32711|32712|32713|32714|32714|32714|32716|32720|32732|32732|39492|45973|45981|45982|45982|46005|46022|46045|46072|46087|46090|46091|46098|46116|46121|46122|46135|46137|46144|46150|46152|46154|46163|46172|46231|46247|46249|46254|46257|46258|46290|46386|46390|46411|46415|46419|46423|46458|46510|46513|46531|46540|46544|46554|46567|46599|46630|46632|46633|46666|46669|46682|46735|46764|46785|46789|46816|48348|49979|49982|49984|49995|49997|50001|50006|50008|50009|50011|50242|50247|50250|50251|50254|50254|50256|50257|50260|50266|50269|50270|52759|65702|65705|65709|65711|65713|65729|65743|65744|65757|65761|65767|65771|65772|65776|65781|65782|65783|65787|65791|65795|65797|65801|65807|65815|65819|65823|65830|65833|65848|65852|65854|65855|65861|65869|65870|65875|65881|65885|65887|65888|65891|65898|65926|65931|65937|65941|65948|65961|65979|65983|65984|65987|65995|65999|66009|66010|66022|66023|66038|66044|66051|66054|66076|66078|66086|66087|66089|66097|66103|66104|66114|66122|66134|66150|66151|66155|66167|66190|66201|66213|66216|66222|66233|66246|66252|66257|66260|66263|66265|66271|66331|66334|66343|66345|66348|66356|66361|66363|66364|66365|66391|66394|66401|66407|66410|66421|66427|66440|66441|66445|66456|66460|66467|66472|66477|66481|66482|66497|66505|66517|66521|66529|66547|66551|66560|66566|66577|66580|66588|66602|66609|66614|66615|66619|66635|66638|66642|66643|66656|66660|66665|66694|66699|66705|66712|66718|66721|66736|66746|66747|66752|66760|66763|66771|66772|66774|66785|66788|66793|66798|66809|66815|66816|66825|66837|66855|66857|66858|66902|66909|66917|66929|66930|66932|66944|66950|66953|66956|66960|66971|66981|66985|67016|67036|67037|67040|67043|67048|67052|67056|67070|67098|67117|67136|67156|67169|67182|67187|67193|67198|67207|67212|67217|67221|67226|67243|67246|67247|67248|67256|67262|67281|67282|67301|67308|67310|67315|67316|67317|67326|67334|67353|67363|67367|67375|67378|67381|67394|67397|67413|67418|67424|67431|67458|67463|67475|67482|67483|67488|67494|67518|67521|67525|67538|67551|67560|67563|67566|67576|67591|67592|68773|68777|68778|68781|68785|68786|68793|68794|68798|68800|68805|68810|68813|68816|68817|68823|68826|68832|68834|68847|68848|68852|68856|68859|68860|68865|68867|68873|68883|68888|68892|68894|68906|68926|68937|68939|68940|68944|68949|68950|68955|68961|68963|68969|68975|68981|68986|68987|68988|68991|68992|68993|68994|69000|69006|69007|69017|69024|69037|69049|69062|69065|69070|69077|69082|69087|69089|69091|69101|69107|69108|69113|69114|69119|69125|69128|69130|69147|69149|69160|69168|69171|69175|69178|69193|69195|69197|69198|69202|69220|69229|69232|69238|69250|69263|69264|69265|69270|69271|69282|69283|69297|69300|69304|69305|69308|69315|69324|69329|69333|69336|69349|69353|69355|69365|69366|69369|69372|69374|69375|69388|69390|69400|69408|69432|69433|69436|69441|69442|69448|69450|69451|69452|69455|69460|69464|69470|69489|69492|69494|69524|69537|69539|69541|69544|69545|69552|69555|69556|69557|69559|69560|69564|69565|69567|69571|69577|69581|69586|69596|69604|69606|69611|69618|69620|69621|69643|69644|69647|69657|69666|69667|69670|69685|69686|69700|69701|69704|69706|69719|69736|69737|69739|69745|69763|69769|69773|69784|69789|69790|69792|69793|69801|69815|69817|69820|69827|69832|69842|69848|69853|69856|69857|69867|69869|69874|69880|69882|69888|69892|69899|69903|69915|69923|69934|69940|69944|69949|69953|69960|69965|69975|69982|70010|70018|70033|70037|70040|70044|70045|70048|70051|70052|70058|70063|70074|70077|70089|70093|70095|70097|70112|70113|70118|70119|70121|70122|70124|70138|70141|70142|70145|70147|70147|70154|70155|70159|70161|70162|70163|70164|70165|70170|70171|70178|70192|70196|70198|70199|70205|70214|70217|70221|70222|70223|70224|70236|70247|70253|70254|70256|70262|70266|70268|70284|70297|70302|70303|70311|70317|70318|70320|70325|70327|70331|70347|70350|70351|70353|70358|70359|70361|70362|70366|70367|70368|70370|70371|70379|70385|70389|70390|70395|70406|70413|70415|70417|70432|70440|90951|92829|94585|94591|94592|94598|94600|94602|94604|94605|94606|94608|94609|94610|94611|94612|97097|97112|97118|97122|97241|102755|131074|131092|131092|131212|131241|131247|131381|131474|131481|131503|131517|131541|131548|131560|131601|131651|131660|131671|131696|131716|132077|132078|132079|132080|132081|132082|132083|132085|132086|132087|132088|132089|132090|132091|132092|132093|132094|132095|132096|132097|132098|132099|132100|132101|132102|132103|132103|132104|132105|132107|132108|132109|132110|132111|132112|132113|132114|132115|132116|132117|132118|132119|132120|132121|132122|132123|132125|132126|132127|132128|132129|132130|132131|132132|132133|132134|132135|132136|132137|132138|132139|132140|132141|132142|132143|132144|132145|132146|132147|132148|132150|132151|132152|132153|132154|132155|132156|132157|132158|132159|132162|132163|132164|132165|132166|132167|132167|132170|132170|132171|132172|132173|132174|132175|132176|132177|132179|132180|132181|132182|132183|132184|132185|132186|132187|132188|132189|132190|132191|132191|132191|132192|132193|132194|132195|132196|132197|132198|132198|132199|132200|132201|132202|132203|132204|132204|132205|132206|132207|132208|132209|132210|132211|132212|132213|132214|132215|132216|132217|132218|132219|132220|132221|132221|132222|132223|132224|132225|132226|132227|132228|132229|132230|132231|132232|132233|132234|132236|132237|132237|132238|132239|132240|132241|132242|132243|132244|132245|132246|132247|132248|132249|132250|132250|132251|132251|132252|132253|132254|132255|132257|132258|132259|132260|132261|132262|132263|132264|132265|132267|132268|132269|132270|132271|132272|132273|132274|132275|132276|132277|132278|132279|132280|132281|132282|132283|132284|132285|132286|132287|132288|132289|132290|132291|132292|132293|132365|132366|132367|132368|132369|132370|132371|132372|132373|132374|132375|132376|132411|132413|132420|132421|132422|132422|132423|132424|132427|132522|132628|132629|132630|132631|132785|132796|132797|132798|132800|132801|132803|132804|132812|132814|132815|132821|132823|132824|132825|132826|132827|132828|132834|132842|132842|132843|132844|132847|132847|132849|132849|132851|132857|132858|132865|132869|132870|132871|132872|132873|132876|132885|132897|132903|132904|132904|132906|132913|132913|132916|132920|132928|133169|133170|133171|133172|133173|133174|133175|133176|133177|133178|133179|133180|133181|133182|133184|133185|133187|133188|133189|133190|133191|133192|133193|133194|133195|133196|133197|133198|133199|133200|133201|133202|133203|133204|133205|133206|133207|133372|133374|133385|133496|133498|133499|133499|133501|133501|133502|133503|133503|133504|133505|133506|133507|133507|133508|133509|133510|133511|133511|133513|133513|133514|133516|133516|133516|133517|133518|133519|133520|133520|133521|133522|133523|133523|133524|133525|133526|133527|133527|133528|133529|133529|133530|133531|133532|133532|133532|133533|133534|133535|133536|133538|133539|133541|133542|133543|133544|133545|133546|133547|133549|133549|133573|133574|133574|133575|133576|133576|133577|133578|133579|133580|133581|133582|133583|133585|133586|133587|133590|133592|133593|133593|133594|133595|133596|133597|133599|133600|133601|133601|133601|133602|133603|133604|133605|133606|133607|133608|133609|133610|133610|133611|133612|133613|133613|133614|133615|133617|133618|133619|133620|133621|133622|133623|133624|133625|133626|133627|133627|133629|133630|133631|133632|133634|133636|133637|133640|133641|133641|133642|133643|133644|133644|133646|133647|133648|133649|133649|133650|133650|133651|133652|133652|133653|133654|133655|133655|133656|136460|136460|136499|136500|136505|136512|136527|136528|136529|136569|136693|136695|136696|136699|136703|136704|136705|136710|136711|136712|136714|136718|137018|137019|137020|137342|137347|137362|137364|137371|137375|137377|137379|137379|137380|137380|137484|137487|137489|137490|137491|137491|137492|137493|137494|137495|137495|137496|137497|137497|137498|137499|137500|137500|137625|137626|137627|137627|137628|137629|137630|137631|138731|138732|138733|138734|138735|139459|139488|139515|139778|139803|139838|139839|139840|139841|139842|139843|139844|139845|139846|139847|139848|139849|139850|139851|139852|139853|139854|139855|139856|139856|139857|139858|139859|139859|139860|139861|139862|139863|139864|139865|139866|140199|140200|140201|140202|140203|140204|140240|140243|140250|140254|140257|140261|140263|140271|140276|140278|140279|140282|140283|140283|140284|140285|140287|140443|140444|140445|140446|140447|140448|140450|142277|142278|142279|142280|150134|150279|150280|150281|150282|150283|150284|150471|150485|150486|150502|150504|150509|150522|150526|150533|150539|150548|150549|150556|150566|150572|150575|150585|150589|150595|150608|150629|150630|150641|150642|150646|150646|150647|150652|150652|150659|150673|150673|150679|150688|150692|150698|150698|150699|150709|150716|150719|150721|150741|150749|150750|150760|150764|150765|150767|150773|150777|150819|150823|150847|150848|150850|150881|150892|150896|150897|150898|150899|150900|150915|150941|150945|150947|150952|150953|150962|150970|150984|151019|151028|151029|151032|151033|151034|151050|151051|151054|151064|151086|151088|151095|151095|151096|151096|151098|151099|151101|151103|151104|151116|151116|151118|151122|151149|151179|151201|151213|151215|151217|151241|151242|151249|151259|151260|151268|151274|151275|151302|151304|151304|151307|151322|151327|151338|151341|151348|151361|151380|151380|151408|151412|151412|151416|151423|151423|151432|151447|151452|151453|151458|151459|151463|151467|151468|151475|151477|151487|151491|151493|151497|151498|151499|151518|151526|151531|151532|151541|151543|151550|151552|151570|151570|151574|151575|151575|151580|151587|151594|151598|151604|151643|151649|151650|151651|151661|151661|151686|151687|151688|151688|151689|151691|151691|151695|151707|151739|151746|151749|151755|151755|151760|151762|151763|151767|151784|151792|151793|151817|151827|151828|151831|151833|151837|151840|151841|151847|151849|151853|151861|151865|151870|151884|151892|151893|151898|151910|151923|151930|151936|151936|151939|151945|151947|151961|151980|151981|151994|152014|152024|152040|152042|152050|152054|152056|152057|152060|152060|152066|152066|152069|152072|152075|152080|152082|152085|152087|152089|152090|152094|152104|152114|152115|152117|152120|152122|152126|152144|152146|152147|152150|152159|152162|152162|152164|152165|152170|152172|152177|152179|152181|152182|152187|152193|152193|152202|152206|152213|152218|152236|152238|152243|152247|152247|152254|152255|152259|152265|152268|152269|152278|152282|152285|152287|152293|152298|152300|152305|152309|152310|152314|152414|152419|152420|152425|152437|152442|152446|152446|152447|152448|152451|152460|152470|152474|152480|152483|152486|152514|152520|152523|152523|152564|152565|152612|152614|152615|152623|152624|152627|152628|152629|152631|152649|152656|152659|152662|152663|152670|152670|152679|152722|152731|152733|152735|153592|153593|153594|153595|153596|153597|153598|153601|153602|153603|153605|153608|153609|153610|153611|153613|153615|153617|153619|153620|153621|153622|153623|153624|153627|153641|153642|153643|153691|153692|153693|153694|153695|153696|153697|153698|153698|153699|153702|153704|153705|153707|153708|153709|153710|165476|166265|166266|167479|167480|167481|167482|167483|167484|167485|167487|167488|167489|167490|167492|167493|167494|167495|167496|167497|167498|167499|167500|171818|171819|171820|171822|179942|179944|179946|179947|179948|179949|179951|179952|179953|179954|179955|179956|179957|179958|179959|179960|179961|179962|179963|179965|179968|179969|179970|179971|179974|179976|180382|180391|180391|180411|180411|180463|180464|180464|180465|180483|180483|180484|180491|180494|180519|180522|180558|180597|180604|180628|180647|180660|180668|180697|180706|180707|180708|180709|180710|180711|180712|180713|180714|180715|180716|180718|180719|180720|180721|180722|180723|180724|180727|180728|180729|180730|180731|180732|180733|180734|180735|180736|180737|180738|180739|180740|180741|180742|180742|180743|180744|180745|180746|180748|180749|180750|180751|180752|180753|180754|180754|180755|180756|180757|180758|180849|180859|180873|180880|180923|180924|180925|180925|180926|180927|180928|180929|180932|180934|180935|180935|180936|180936|180938|180940|180941|180942|180943|180944|180947|180948|180949|180950|180951|180952|180954|180956|180957|180958|180959|180960|180960|180961|181089|181090|181091|181092|181093|181095|181096|181097|181098|181099|181100|181100|181101|181102|181103|181104|181105|181106|181106|181107|181108|181110|181112|181113|181116|181116|181117|181118|181120|181121|181122|181122|181123|181129|181130|181133|181139|181144|181146|181746|181749|181750|181753|181754|181755|181756|181758|181759|181761|181762|181763|181764|181766|181769|181770|181771|181772|181773|181774|181776|181777|181778|181779|181780|181781|181783|181785|181786|181787|181789|181790|181791|181792|181793|181794|181797|181800|181805|181807|181809|181810|181811|181812|181813|181814|181815|181816|181817|181818|181820|181821|181822|181823|181824|181825|181826|181827|181828|181830|181832|181833|181834|181835|181836|181837|181838|181839|181840|181841|181842|181843|181844|181845|181846|181849|181850|181851|181852|181853|181855|181856|181857|181858|182250|183085|183104|183106|183113|183176|183194|183202|183215|183230|183245|183260|183319|183360|183380|183384|183391|183401|183401|183448|183467|183693|183739|183894|183990|184093|184151|184152|184153|184154|184155|184156|184157|184158|184159|184160|184161|184162|184163|184165|184166|184167|184168|184169|184170|184171|184173|184176|184177|184179|184180|184182|184183|184185|184186|184188|184191|184192|184193|184194|184195|184197|184198|184199|184200|184201|184202|184203|184204|184205|184206|184207|184208|184209|184210|184211|184212|184213|184214|184217|184218|184219|184220|184221|184222|184223|184224|184225|184226|184228|184229|184230|184231|184233|184234|184235|184236|184237|184239|184239|184240|184243|184246|184247|184248|184249|184250|184251|184252|184253|184255|184256|184258|184259|184260|184261|184262|184263|184264|184265|184268|184269|184271|184272|184273|184274|184276|184277|184278|184279|184280|184281|184282|184284|184285|184286|184287|184288|184289|184290|184291|184293|184295|184297|184298|184299|184300|184301|184302|184303|184304|184305|184306|184379|184420|185052|185093|185131|185186|185187|185188|185189|185190|185190|185192|185194|185195|185197|185198|185199|185200|185201|185203|185204|185205|185207|185207|185210|185211|185212|185213|185213|185214|185215|185216|185218|185222|185223|185224|185225|185226|185227|185228|185230|185231|185233|185236|185237|185238|185240|185242|185243|185244|185245|185246|185246|185247|185250|185251|185253|185254|185254|185256|185257|185257|185258|185259|185260|185260|185261|185263|185264|185266|185267|185268|185270|185272|185273|185275|185277|185278|185279|185280|185281|185283|185284|185285|185286|185287|185289|185290|185292|185293|185294|185295|185296|185296|185297|185297|185298|185300|185302|185303|185304|185305|185306|185308|185309|185310|185311|185312|185314|185315|185316|185317|185319|185320|185321|185322|185323|185326|185327|185328|185329|185330|185343|185421|185570|185571|185573|185574|185575|185576|185577|185578|185580|185582|185586|185587|185588|185589|185591|185592|185594|185595|185597|185599|185601|185603|185604|185605|185606|185608|185609|185610|185611|185612|185613|185616|185618|185619|185620|185621|185622|185623|185624|185626|185628|185629|185630|185631|185633|185634|185635|185636|185637|185638|185639|185641|185642|185643|185644|185647|185648|185649|185651|185653|185654|185655|185656|185658|185659|185660|185661|185662|186141|186143|186206|186208|186210|186211|186212|186213|186214|186215|186216|186217|186218|186219|186220|186220|186221|186222|186222|186223|186224|186242|186266|186267|186268|186269|186270|186271|186872|194513|195020|198622|204580|212111|212127|212128|212129|212130|212131|212132|212133|212134|212135|212136|212137|212139|212140|212141|212142|212143|212851|212910|213142|213143|213144|213149|213150|213151|213152|213153|213153|213154|213155|213156|213157|213159|213160|213161|213162|213163|213164|213165|213166|213167|213168|213169|213170|213171|213172|213174|213175|213176|213177|213178|213179|213180|213181|213182|213183|213184|213185|213186|213240|213311|213356|213357|213358|213359|213360|213361|213362|213363|213364|213365|213368|213369|213370|213371|213372|213373|213374|213375|213376|213377|213378|213379|213380|213474|213475|213476|213477|213478|213479|213480|213481|213482|213482|213483|213483|213484|213485|213486|213487|213488|213489|213490|213491|213492|213493|213512|214572|221137|221138|221139|221140|221141|221142|221143|221144|221145|221146|221147|221148|221149|221150|221151|221152|221153|221154|221155|221156|221157|221158|221159|221160|221161|221162|221163|221164|221165|221166|221167|221168|221169|221170|221171|221172|221174|222036|222037|222059|222103|222132|222311|222331|222440|222454|222455|222456|222457|222458|222459|222460|222461|222462|222463|222464|222465|222466|222467|222468|222470|222471|222472|222473|222474|222475|222476|222477|222478|222479|222480|222481|222482|222483|222484|222485|222555|222698|222699|222700|222701|222702|222703|222704|222705|222706|222707|222708|222710|222710|222712|222713|222714|222715|222716|222717|222718|222719|222720|222722|222723|222724|222725|222726|222727|222856|222857|222858|222859|222860|222861|222862|222864|222865|222866|222867|222868|222869|222870|222871|222872|222873|222874|222875|222876|222877|222878|223302|223303|223304|223305|223306|223307|223362|223602|226342|226359|226365|226367|226812|227551|227570|227661|227662|227664|227665|227666|227667|227668|227669|227670|227671|227672|227673|227674|227675|227676|227677|227678|231993|231993|231995|231996|231997|231997|231998|231999|232000|232001|232001|232002|232003|232005|232006|232006|232007|232008|232009|232011|232012|232013|232112|232117|232119|232121|232122|232123|232124|232125|232127|232128|232129|232130|232132|232133|232134|232135|232138|232142|232143|232144|232302|232304|232305|232306|232307|232310|232311|232314|232315|232317|232319|232321|232322|232324|232325|232327|232328|232331|232333|232337|232341|232343|232344|232345|232347|232349|232352|232354|232355|232356|232357|232360|232363|232365|232368|232369|232370|232371|232372|232377|232378|232380|232383|232384|232388|232389|232391|232392|232393|232394|232395|232396|232397|232398|232400|232401|232402|232403|232404|232405|232408|232410|232411|232414|232416|232417|232418|232419|232421|232422|232423|232424|232425|232426|232427|232431|232433|232434|232435|232436|232437|232438|232439|232440|232441|232445|232446|232448|232449|232451|232452|232454|232455|232456|232457|232458|232459|232460|233900|233966|234008|234015|234099|234197|234284|234298|234321|234343|234353|234923|234933|235148|235150|235153|235155|235156|235157|235158|235160|235161|235163|235164|235165|235168|235169|235170|235172|235175|235176|235178|235179|235180|235181|235185|235187|235188|235189|235190|235191|235195|235197|235203|235207|235208|235211|235213|235214|235215|235216|235217|235218|235220|235221|235222|235223|235224|235226|235227|235228|235229|235230|235231|235232|235235|235239|235241|235242|235244|235245|235246|235247|235249|235250|235251|235252|235253|235254|235256|235257|235260|235262|235263|235265|235267|235268|235269|235270|235274|235276|235276|235278|235280|235288|235289|235291|235292|235293|235294|235296|235297|235298|235299|235301|235302|235304|235305|235306|235307|235309|235310|235311|235313|235316|235318|235321|235323|235324|235325|235328|235329|235335|235336|235338|235341|235343|235344|235345|235348|236066|236141|236254|236254|236255|236256|236256|236257|236260|236264|236266|236268|236269|236270|236272|236273|236275|236276|236277|236278|236280|236283|236284|236285|236287|236291|236294|236295|236296|236297|236298|236299|236300|236301|236302|236303|236304|236305|236306|236306|236307|236309|236311|236312|236313|236314|236315|236317|236318|236319|236320|236324|236325|236329|236330|236331|236332|236332|236335|236335|236338|236339|236340|236341|236343|236345|236346|236347|236348|236350|236352|236353|236355|236356|236358|236358|236359|236360|236361|236362|236363|236364|236365|236368|236369|236370|236372|236373|236375|236377|236379|236380|236381|236384|236386|236387|236388|236389|236390|236391|236392|236393|236395|236396|236397|236399|236400|236402|236403|236404|236407|236409|236410|236411|236413|236414|236415|236416|236418|236421|236423|236426|236427|236430|236431|236432|236433|236435|236586|236587|236588|236589|236592|236593|236594|236595|236596|236597|236598|236599|236602|236604|236605|236606|236606|236607|236608|236611|236613|236614|236615|236616|236617|236619|236622|236623|236624|236625|236626|236628|236631|236632|236633|236634|236634|236635|236638|236639|236641|236642|236644|236645|236646|236648|236649|236650|236651|236653|236654|236655|236656|236662|236665|236666|236668|236669|236673|236674|236675|236676|236677|236678|236679|236681|236685|236686|236687|236688|236689|236690|236691|236692|236693|236694|236695|236697|236698|236700|236702|236703|236704|236705|236710|236711|236712|236713|236714|238355|238620|238621|238622|238623|238624|238626|238627|238629|238630|238631|238633|238634|238635|238636|238637|238638|238639|238640|238641|238642|238643|238644|238645|238646|238647|238649|238650|238652|238654|238655|238656|240964|240981|241643|242185|242186|242346|242347|242349|242350|242351|242352|242354|242355|242356|242357|242358|242359|242360|242361|242362|242363|242364|242365|242366|242367|242368|242369|242370|242371|242372|242373|242374|242375|242376|242377|242378|242380|242381|242382|242383|242384|242385|242386|242387|242389|242390|242391|242392|242393|242394|242395|242396|242785|242842|242843|242844|242845|242846|242847|242848|242849|242850|242850|242851|242852|242853|242854|242856|242857|242858|242859|242860|242861|242862|242863|242864|242864|242865|242866|242867|242868|242869|242870|242871|242872|242873|242874|242875|242876|242877|242878|242879|242880|242881|242882|242883|242884|242886|243640|243641|243656|243657|243658|243659|243660|243661|243662|243663|243664|243666|243667|243668|243669|243670|243671|243672|243673|243674|243675|243676|243677|243678|243679|243680|243681|243682|243683|243685|243686|243687|243688|244325|244329|244332|244333|244334|244335|244336|244337|244338|244339|244622|244943|244944|244946|244947|244949|244950|244951|244954|244955|244956|244957|244958|244959|244960|244963|244966|244968|244971|244972|244973|244976|244977|244978|244979|244980|246821|246834|246835|246838|246839|246840|246842|246843|246847|246851|248515|248521|248531|248537|248949|248995|250542|259718|259971|260094|260096|260098|260101|260102|260105|260107|260108|260252|260253|260255|260256|260257|260258|260259|260357|261117|261203|261965|261987|262837|263870|264074|264620|264690|264696|264776|264779|264786|264925|264992|265126|284585|285282|287450|287453|287660|287661|287665|287667|287668|318057|334406|334409|339496|339511|345292|346687|358702|358703|358704|358705|358706|358899|358900|358901|358902|358903|358904|358905|358906|358907|358908|358909|358910|358911|358955|358959|358959|359004|359005|359006|359007|359008|360833|361023|363478|363625|366135|366137|366141|366146|366149|366157|366316|366318|366324|366360|366367|366376|366377|366384|366405|366962|366964|366965|366971|368244|374259|374274|374279|374922|374925|374942|374950|374959|374964|375246|375250|375259|375266|375268|375274|375404|375412|375416|375416|375438|375732|376305|376323|376323|376329|376340|376342|376412|376414|376416|376428|376435|376447|376459|377362|377365|377368|377394|377402|377423|377425|377442|377444|377447|377452|377456|378577|378582|378586|378592|378593|378599|378621|378623|378623|378668|378694|378700|378701|378703|378736|378749|378759|379828|379829|379839|379840|389257|389259|389260|389261|389266|389268|389269|389272|389273|389274|389275|389278|389279|389281|389282|389283|390688|390690|392305|392307|392309|392314|392315|392319|392324|392329|392331|392335|392337|392341|392342|392346|392357|392395|392404|392405|392411|392418|392419|392424|392434|392435|392437|392440|392441|392449|392451|392461|392463|392466|392467|392474|392498|392499|392504|392509|392511|392514|392517|392519|392521|392524|392527|392529|392531|392536|392538|392543|392548|392556|392577|392584|392587|392589|392591|392597|392608|392613|392617|392619|392621|392624|392627|392635|392645|392650|392658|392661|392666|392672|392678|392679|392684|392685|392687|397861|397920|400207|400498|400499|400503|400505|400510|400993|400995|400997|400998|401001|401003|401004|401011|401017|401018|401025|401027|401028|401032|401036|401038|401042|401043|401045|401048|401049|401050|401051|401055|401056|401058|401059|401060|401061|401063|401064|401066|401070|401071|401075|401076|401077|401079|401081|401082|401083|401084|401085|401086|401087|401089|401090|401093|401094|401095|401099|401101|401102|401105|401107|401109|401111|401114|401115|401118|401122|401129|401133|401137|401141|401142|401146|401150|401153|401156|401464|401470|401480|401481|401491|401495|401498|401500|401501|401505|401509|401513|401516|401521|401524|401525|401530|401535|401542|401544|401545|401546|401550|401552|401554|401558|401571|401572|401579|401580|401585|401586|401593|401596|401730|401733|401736|401741|401744|401749|401751|401755|401756|401761|401764|401769|401770|401773|401778|401780|401785|401785|401790|401799|401801|401806|401810|401814|401824|401827|401834|401841|401848|401850|401853|401854|401864|401878|402191|402197|402202|402207|402210|402211|402212|402215|402216|402217|402218|402222|402224|402226|402232|402234|402237|402238|402239|402241|402243|402244|402245|402246|402249|402250|402251|402252|402254|402258|402262|402263|402265|402267|402268|402270|402271|402277|402278|402286|402292|402295|402297|402301|402307|402312|402314|402317|402319|402321|402324|402646|402655|402659|402664|402667|402669|402671|402677|402681|402681|402684|402686|402693|402697|402699|402710|402718|402721|402730|402736|402740|402741|402748|402750|402762|402764|402776|402781|402782|402784|402785|402786|402789|402790|402792|402797|402798|402802|402803|402805|402806|402808|402809|402811|402812|402814|402816|402818|402820|402823|402824|402825|402829|402830|402832|402835|402841|402842|402845|402848|402850|402853|402855|402858|402877|402880|402882|402882|402885|402887|403745|403747|403748|403790|403793|403796|403802|403806|403807|403808|403811|403814|403819|403821|403823|403829|403832|403834|403836|403842|403843|403845|403848|403852|403853|403855|403857|403860|403867|403869|403872|403877|403878|403880|403883|403884|403885|403886|403890|403891|403893|403895|403899|403900|403901|403907|403910|403911|404268|404305|404311|404312|404313|404316|404319|404321|404322|404324|404325|404326|404328|404330|404332|404334|404335|404336|404337|404338|404339|404340|404341|404342|404343|404344|404345|404346|404347|404348|404349|404350|404351|404352|404354|404359|404360|404360|404361|404363|404365|404367|404371|404372|404377|404379|404382|404384|404599|404700|405203|405558|405559|405560|405561|405562|405563|405564|405566|405567|405569|405572|405573|405575|405578|405585|405586|405588|405594|405595|405596|405597|405598|405599|405600|405602|405603|405604|405605|405607|405608|408138|408191|408822|408911|409011|409511|409513|409514|409515|409517|409519|409522|409526|409527|409528|409530|409531|409533|409535|409536|409537|409539|409541|409542|409544|409547|409548|409550|409551|409552|409553|409554|409555|409557|409560|409562|409565|409567|409569|409574|410113|410114|410115|410118|410119|410120|410122|410123|410125|410126|410128|410130|410133|410136|410137|410138|410139|410142|410145|410152|410155|410157|410161|410163|410927|410928|410929|410930|410931|410932|410933|410937|410938|410939|410945|410947|410948|410948|410950|410953|410957|410958|410964|410965|410967|410967|410968|410970|410972|410973|410974|413325|420729|420730|420731|420995|420996|421079|423239|423243|424225|424778|427542|429997|432499|432500|432501|432502|432503|432504|432506|432508|432874|432877|432878|432879|432880|432881|432931|432933|432935|432936|432936|432968|432970|432970|432971|435087|439582|443157|443159|444711|444719|445546|445547|445548|445549|445849|446383|446384|446385|446388|446390|446391|446392|446393|448366|448368|448381|448483|448484|448532|448577|450320|450321|450324|450330|450333|450336|450339|450341|450342|450344|450347|450352|450354|450355|450359|450367|450373|450377|450380|450463|450474|450476|450477|450481|450482|450485|450486|450489|450499|450500|450503|450504|450508|450510|450511|450515|450516|450518|450519|450521|450523|450527|450532|450534|450543|450548|450550|450554|450557|450561|450584|450591|450594|450599|450601|450603|450605|450606|450607|450610|450613|450620|450629|450630|450633|450641|450645|450647|450650|450651|450653|450656|450657|450659|450660|450662|450664|450667|450672|450675|450681|450689|450691|460485|461076|461289|462741|464819|465394|465434|465439|465440|465443|465446|465449|465455|465461|465469|465472|465474|465480|465481|465487|465491|465498|465503|465504|465509|465510|465520|465531|465534|465539|465549|465550|465552|465554|465555|465559|465562|465566|465567|465572|465574|466097|466098|466104|466105|466111|466114|466120|466131|466138|466145|466154|466159|466160|466162|466164|466165|466169|466173|466176|466178|466184|466186|466187|466188|466189|466190|466196|466198|466200|466202|466203|466205|466206|466210|466211|466213|466215|466216|466217|466219|466223|466225|466226|466227|466228|466230|466231|466233|466236|466239|466240|466242|466245|466247|466249|466250|466251|466252|466253|466254|466256|466257|466258|466259|466261|466263|466268|466269|466270|466275|466277|466279|466280|466283|466284|466285|466291|466297|466303|466305|466306|466312|466316|466319|466322|466326|466348|466351|466355|466358|466361|466373|466374|466385|466386|466394|466398|466399|466410|466412|466415|466418|466425|466431|466432|466435|466439|466443|466449|466453|466482|466484|466488|466496|466499|466509|466510|466514|466518|466520|466521|466522|466523|466524|466525|466527|466535|466547|466550|467062|467094|467095|467103|467104|467107|467113|467117|467121|467126|467129|467132|467141|467144|467146|467150|467152|467153|467156|467158|467165|467167|467170|467172|467175|467180|467181|467186|467187|467187|467189|467192|467192|467379|468045|468047|468049|468052|468053|468055|468056|468060|468061|468061|468064|468070|468074|468080|468081|468084|468087|468088|468091|468092|468093|468098|468099|468101|468104|468105|468109|468110|468111|468114|468116|468118|468119|468125|468126|468137|468138|468300|468317|468319|468321|468321|468323|468335|468342|468344|468347|468351|468354|468365|468377|468393|468398|468402|468407|468408|468409|468410|468413|468415|468429|468431|468440|468445|468448|468453|468459|468460|468462|468467|468473|468485|468489|468498|468499|468499|468505|468506|468521|468524|468526|468556|468557|468558|468560|468561|468568|468569|468579|468587|468589|468592|468603|468605|468618|468621|468622|468627|468631|468635|468653|468655|468662|468668|468668|468676|468682|468684|468692|468695|468700|468702|468706|468714|468718|468725|468731|468732|468734|468738|469117|469847|469849|469853|469859|469997|470000|470003|470005|470009|470015|470017|470018|470021|470024|470025|470033|470034|470045|470052|470053|470055|470064|470067|470068|470070|470071|470076|470077|470079|470086|470088|470092|470850|470852|470853|470925|470935|470936|470938|470944|470950|470951|470955|470957|470960|470962|470966|470971|470973|470983|470990|470991|470993|471011|471012|471016|471023|471305|471307|471309|471410|471413|471414|471416|471419|471429|471430|471432|471433|471438|471441|471442|471444|471445|471449|471450|471451|471453|471459|471468|471469|471472|471778|471779|471780|471816|471821|471822|471824|471825|471826|471828|471829|471831|471837|471839|471842|471845|471846|471850|471859|471860|471861|471864|471874|471876|471879|472442|472444|472455|472479|472480|472493|472497|472498|472499|472501|472503|472512|472513|472515|472517|472518|472525|472526|472529|472532|472533|472538|472539|472542|472543|472544|472549|472550|472552|472554|472555|472562|472563|472564|472565|472566|472568|472572|472573|472575|472576|472579|472582|472583|472585|472587|472591|472592|472596|472598|472601|472607|472608|472609|472612|472613|472614|472615|472616|472619|472620|472622|472624|472629|472631|472632|472636|472638|472641|472642|472644|472645|472649|472653|472654|472656|472658|472659|472662|472663|472665|472668|472671|472674|472676|472677|472678|472680|472681|472685|472690|472693|472696|472697|472699|472724|472730|472734|472752|474927|475708|475787|476089|476870|477422|477433|477442|477449|477464|477465|477469|477478|477481|477484|477493|477496|477503|477504|477505|477506|477507|477531|477533|477536|477542|477544|477545|477547|477559|477561|477569|477570|477571|477578|477581|477581|477582|477584|477589|477590|477591|477593|477595|477597|477599|477603|477612|477616|477619|477621|477623|477628|477634|477638|477639|477642|477645|477647|477652|477654|477655|477656|477658|477668|477672|477673|477677|477682|477688|477689|477697|477700|477704|477706|477708|477709|477711|477714|477716|477723|477724|477729|477733|477734|477736|477740|477741|477744|477758|477761|477793|477795|477798|477806|477809|477813|478015|478020|478027|478039|478047|478062|478069|478077|478080|478095|478109|478113|478122|478128|478130|478143|478145|478168|478170|478189|478191|478191|478195|478245|478249|478270|478285|478300|478309|478310|478325|478892|479014|479023|479025|479030|479032|479037|479044|479050|479055|479058|479059|479062|479063|479064|479066|479067|479068|479070|479076|479084|479086|479087|479089|479090|479100|479107|479109|479110|479114|479116|479119|479120|479122|479124|479125|479128|479130|479136|479139|479141|479143|479145|479148|479150|479152|479157|479162|479163|479166|479168|479176|479185|479190|479196|479197|479198|479201|479201|479210|479219|479224|479226|479227|479229|479237|479239|479246|479254|479255|479260|479262|479262|479730|479730|479745|479753|479770|479786|479793|479797|479803|479813|479815|479824|479842|479860|479871|479872|479882|479897|479927|479949|479950|479956|479959|479975|479991|480001|480006|480017|480019|480023|480028|480037|480040|480046|480047|480050|480051|480052|480056|480058|480059|480068|480073|480074|480075|480078|480083|480087|480092|480095|480097|480102|480103|480105|480110|480113|480114|480120|480122|480128|480130|480131|480132|480135|480138|480139|480140|480144|480151|480153|480155|480157|480162|480165|480169|480175|480181|480184|480186|480341|480349|480352|480353|480358|480360|480365|480369|480370|480373|480374|480375|480377|480377|480378|480382|480383|480386|480387|480388|480461|480477|480478|480479|480480|480481|480488|480491|480492|480493|480494|480501|480740|482349|482359|482360|482364|482370|482378|482384|482385|482386|482391|482392|482395|482403|482878|482881|482886|482896|482898|482916|482922|482928|482937|482948|483023|483025|483026|483029|483040|483050|483054|483056|483058|483062|483065|483066|483067|483087|483103|483104|483106|483230|483232|483234|483239|483242|483248|483252|483263|483265|483269|483277|483284|483288|483298|484375|484638|484651|484660|484665|484680|484685|484691|484702|484718|484732|484736|484751|484759|484803|484805|484807|484808|484833|484837|484843|484855|484860|484861|484979|484987|485009|485029|485030|485032|485043|485051|485052|485060|485064|485066|485084|485199|485199|485210|485210|485225|485226|485233|485256|485257|485259|485268|485274|485275|485275|485276|485355|485357|485365|485368|485375|485382|485401|485409|485445|485454|485463|485467|485468|485474|485479|485488|485493|485496|485497|485517|485520|485537|485556|485569|485570|485573|485574|485575|485582|485584|486643|486644|486650|486652|486885|486912|486931|486942|487660|487661|487778|487882|487901|487936|487976|487980|488006|488017|506211|506216|506281|508111|508390|514061|516179|517620|517621|517623|517626|517630|517631|517645|517653|517655|517657|517661|517665|517668|517669|517672|517673|517675|517707|517709|517713|517717|517718|517727|517735|517736|517737|517740|517742|517746|517747|517748|517752|517753|517757|517759|517761|517763|517764|517768|517769|517772|517774|517776|517777|517778|517781|517790|517792|517799|517801|517806|517807|517809|517810|517812|517883|517886|517887|517890|517892|517899|517901|517907|517911|517913|517915|517916|528518|529753|529757|529762|529766|529767|529768|529780|529782|529784|529785|529793|529806|529809|529811|529816|529818|529820|529823|529825|529826|529827|529830|529832|529834|529836|529837|529839|529840|529842|529843|529844|529845|529846|529851|529852|529857|529858|529870|529872|529880|529883|529890|529891|529895|529899|529901|529905|529917|529920|529921|529933|529934|529937|529939|530108|530111|530115|530116|530123|530125|530128|530132|530133|530135|530139|530148|530153|530167|530169|530175|530180|530181|530190|530193|530321|530322|530333|530335|530348|530349|530353|530357|530362|530368|530369|530374|530375|530376|530377|530379|530384|530386|530387|530389|530512|530514|530840|530844|531041|531046|531047|531064|531318|531322|531324|531326|531328|531329|531331|531341|531345|531347|531361|531376|531380|531392|531395|531405|531413|531416|531419|531424|531426|531429|531436|531438|531439|531480|531483|531486|531492|531494|531498|531499|531504|531506|531508|531514|531515|531518|531522|531525|531529|531534|531536|531539|531539|531548|531551|531562|531568|531572|531573|531576|531577|531581|531585|531590|531595|531602|531603|531605|531611|531615|531622|531625|531635|531637|531639|531644|531645|531650|531651|531654|531655|531658|531668|531669|531797|531802|531812|531815|531820|531824|531834|531836|531840|531846|531850|531853|531856|531858|531869|531874|531879|534097|534098|534100|534102|534105|534110|534111|534113|534114|534119|534120|534123|534124|534125|534128|534130|534131|534133|534136|534137|534138|534139|534140|534149|534150|534152|534154|534157|534162|534163|534166|534173|534174|534178|534179|534205|534215|534220|534224|534225|534229|534233|534235|534237|534240|534244|534249|534253|534257|534262|534263|534270|534273|534274|534275|534277|534279|534283|534286|534289|534291|534550|534631|534638|534640|534645|534647|534650|534654|534663|534666|534669|534670|534672|534676|534681|536166|536166|536431|536456|536457|536461|536462|536463|536468|536508|536537|536538|538692|539202|539203|539341|539342|539343|539344|539345|539408|539409|539410|539411|539412|545728|545730|545967|551913|551916|551936|557430|557432|557479|557481|557483|557485|557836|557838|557840|557842|557844|557846|557848|557850|557852|557854|557856|557858|557860|557862|557864|557866|557868|557870|557872|557874|557876|557893|557895|557897|557899|557901|557903|557905|557907|557909|557911|557913|557915|557917|557919|557921|558080|559071|559073|559075|559077|559079|559081|559083|559085|559087|559089|559091|559093|559095|559097|559099|559101|560824|560828|560829|560830|560833|560839|560870|560874|560875|560879|560882|565258|565464|567475|567477|567482|567936|567937|567939|567940|567947|567948|567952|567953|567957|567959|567963|567965|567967|567975|567983|567985|567989|567996|567999|568000|568002|568007|568009|568011|568012|568016|568017|568027|568028|568034|568035|568649|568650|568653|569362|569364|569368|569376|569377|569379|569381|569383|569386|569389|569393|569398|569403|569406|569411|569418|569419|569421|569425|569427|569432|569435|569441|569445|569450|569451|569458|569465|569788|569794|569800|569804|569921|569926|569928|569937|569938|569942|569950|569956|569957|569960|569977|569979|569984|569985|569991|569993|570007|570008|570009|570010|570018|570021|570024|570025|570027|570158|570160|570161|570163|570164|570167|570169|570171|570173|570175|570176|570178|570184|570188|570189|570195|570201|570203|570209|570210|570212|570213|570214|570714|570716|570718|570720|570822|570826|570832|570834|571360|571362|571363|571368|571369|571371|571373|571374|571377|571379|571381|571384|571386|571389|571390|571392|571395|571398|571401|571402|571405|571406|571409|571414|571417|571421|571422|571425|571667|571670|571673|571759|571760|571762|571772|571777|571779|571780|571782|571783|571787|571788|571789|571795|571797|571799|571803|571804|571807|571811|571813|571817|571819|571821|571828|571830|571831|571836|571838|571843|571845|571847|571848|571853|571854|571855|571861|571868|571870|571877|571886|571887|571892|571894|571897|571899|571906|571915|571918|571928|571929|571939|571948|571955|571961|571966|573207|573211|573212|573214|573295|573297|573298|573302|573303|573306|573313|573318|573322|573325|573326|573330|573334|573335|573337|573338|573342|573649|573652|573653|573902|573906|573907|573908|573910|573911|573912|573914|573918|573919|573920|573924|573926|573927|573928|573931|573932|573935|573937|573939|573949|573950|573951|573955|573959|573961|573962|573963|573968|573975|573976|573977|573978|573979|573981|573982|573983|573984|573986|573987|573988|573990|573991|573992|573993|573995|574003|574008|574012|574014|574021|574023|574026|574031|574033|574036|574039|574042|574044|574047|574048|574053|574054|574057|574059|574277|574544|574545|574546|574547|574548|574549|574550|574551|574552|574553|574554|574555|574556|574557|574558|574559|574560|574561|575204|575205|575206|575224|575225|575226|575227|575228|575229|575230|575231|575232|575233|575234|575235|575236|575237|575238|575239|575240|575241|575242|575518|575599|575601|575619|575620|575621|575623|575661|575662|575663|575664|575665|575666|575667|575956|575957|575958|575959|575961|575962|575964|575965|575966|575967|576014|576016|576019|576019|576020|576020|576021|576022|576023|576024|576024|576025|576026|576027|576045|576046|576047|576048|576049|576050|576051|576272|576273|576274|578400|578414|611219|611220|611224|614353|616517|616522|616528|616529|616534|616536|616542|616546|616551|616558|616559|616562|616565|616568|616570|616578|616579|616585|616593|616594|617773|618370|618377|618388|618393|618395|618401|618406|618407|618410|618413|618414|618419|618421|618422|618425|618442|618443|618447|618448|618449|618454|618455|618457|618742|618746|618747|618760|618764|618768|618770|618771|618772|618787|618794|618796|618802|618803|618815|618817|619015|619026|619028|619030|619039|619127|619487|619492|619513|619556|619567|619612|619702|619733|619748|619756|619799|619806|619901|621527|621529|621530|621531|621533|621534|621592|621593|621650|621862|625973|625976|629360|629361|629362|629363|629364|629365|629366|629367|629368|629369|629370|629371|629372|629373|629374|629375|629376|629377|629378|629379|629380|629381|629382|629383|629384|629385|629386|629387|629388|629389|629390|629391|629392|629393|629394|629395|629396|629397|629398|629399|629400|629401|629402|629403|629404|629405|629406|629407|629408|629409|629410|629411|629412|629413|629414|629415|629416|629417|629418|629419|629420|629421|629422|629423|629424|629425|629426|629427|629428|629429|629430|629431|629432|629433|629434|629435|644378|644379|644380|644381|644382|644383|644384|644385|644386|644387|644388|644389|644390|644391|644392|644393|644394|644395|644396|644397|644398|644399|644400|644401|644402|644403|644404|644405|644406|644407|644408|644409|644410|644411|644412|644413|644414|644415|644416|644417|644418|644419|644420|644421|644422|644423|644424|644425|644426|644427|644428|644429|644430|644431|644432|644433|644434|644435|644436|644437|644438|644439|644440|644441|644442|644443|644444|644445|644446|644447|644448|644449|644450|644451|644452|644453|644454|644455|644456|644457|644458|644459|644460|644461|644462|644463|644464|644465|644466|644467|644468|644469|644470|644471|644472|644473|644474|644475|644476|644477|644478|644479|644480|644481|644482|644483|644484|644485|644486|644487|644488|644489|644490|644491|644492|644493|644494|644495|646268|646269|646270|646271|646272|646273|646274|646275|646276|646277|646278|646279|646280|646281|646282|646283|646284|646285|646286|646287|646288|646289|646290|646291|646292|646293|646294|646295|646296|646297|646298|646299|646300|646301|646302|646303|646304|646305|646306|646307|646308|646309|646310|646311|646312|646313|646314|646315|646316|646317|646318|646319|646320|646321|646322|646323|646324|646325|646326|646327|646328|646329|646330|646331|646332|646333|646334|646335|646336|646337|646338|646339|646340|646341|646342|646343|646344|646345|646346|646347|646348|646349|646350|646351|646352|646353|646354|646355|646356|646357|646358|646359|646360|646361|646362|646363|646364|646365|646366|646367|646368|646369|646370|646371|646372|646373|646374|646375|646376|646377|649234|649235|649236|649237|649238|649239|649240|649241|649242|649243|649244|649245|649246|649247|649248|649249|649250|649251|649252|649253|649254|649255|649256|649257|649258|649259|649260|649261|649262|649263|649264|649265|649266|649267|649268|649269|649270|649271|649272|649273|649274|649275|649276|649277|649278|649279|649280|649281|649282|649283|649284|649285|649286|649287|649288|649289|649290|649291|649292|649293|649294|649295|649296|649297|649298|649299|649300|649301|649302|649303|649304|649305|649306|649307|649308|649309|649310|649311|649312|649313|649314|649315|649316|649317|649318|649319|649320|649321|649322|649323|649324|649325|649326|649327|649328|649329|650727|650728|650741|650742|650787|650790|650791|650793|650794|650926|650930|652467|652470|652473|652474|652555|652557|652614|652718|652725|652819|652823|652825|652826|652832|652834|652848|652852|652854|652857|652861|652979|652985|652992|652994|653001|653127|653160|653162|653172|653190|653192|653194|653195|653198|653201|653203|653232|653234|653238|653241|653243|653274|653277|653279|653282|653307|653309|653311|653484|653486|653489|653495|653498|653599|653600|653613|653614|653692|653693|653694|653701|653702|653705|653707|653708|677971|677972|682632|688804|693831|694139|695762|704262|719580|731171|747250|755030|755031|755032|756004|756005|758023|759198|760472|760625|760939|762865|762868|762869|762870|762873|762874|770771|770774|770783|770785|770793|771687|771688|771690|771700|771702|771704|773483|773486|773488|776377|776741|778246|781147|781148|781149|781154|785217|785222|785224|785227|785228|785233|785665|785667|785669|785671|785672|785673|785679|787095|788168|789250|789600|789663|790173|790174|790175|790176|790177|790178|790179|790180|790181|790182|790183|790184|790185|790186|790187|790188|790189|790190|790191|790192|791562|791563|791564|791565|791566|791567|791568|791569|791570|791571|791572|791573|791574|791575|791576|791577|791578|791802|791803|791803|791804|791805|791806|791807|791808|791809|791810|791811|791812|791813|791814|791815|791816|792024|792025|792026|792027|792028|792029|792030|792031|792032|792033|792034|792035|792036|792037|792780|806707|806711|806713|806715|806717|806718|806720|806721|806734|806742|806747|806749|806752|806754|806760|806769|806770|806773|806780|806794|806801|806802|806804|806805|806807|806822|806825|806832|806837|806842|806860|806861|806872|812638|812644|812655|812657|812668|812671|812674|812680|812683|812684|812691|812696|812708|812709|812712|812718|812735|812742|812745|812746|812747|812751|812772|812777|812778|812781|812784|812787|812788|812796|812801|812803|812813|812817|812819|812821|812822|812831|812835|812840|812843|812847|812850|812852|812856|812986|814183|814184|814185|814205|814225|814230|814239|814241|814253|814261|814264|814270|814282|814283|814284|814287|814294|814299|814304|814305|814308|814318|814322|814324|814327|814335|814339|814342|814364|814367|814371|814373|815010|815013|815014|815018|815023|815031|815039|815040|815044|815050|815073|815076|815084|815085|815089|815091|815094|815100|815116|815120|815123|815131|815136|815629|815702|815703|815760|815763|815765|815766|818445|818454|818455|818459|818460|818462|818466|818472|818477|818482|818486|818489|818493|818494|818496|818497|818505|818517|818519|818533|818535|818538|818559|818568|818571|818572|819014|819107|819109|819110|819111|819112|819113|819114|819115|819116|819117|819118|819119|819120|819121|819122|819123|820798|820799|820800|820801|820802|820803|820804|820805|820806|820807|820808|820809|820810|820811|820812|820813|820814|821129|821130|821131|821132|821134|821135|821136|821137|821138|821139|821140|821141|821142|821143|821144|821145|821146|821147|821393|821394|821412|821413|821414|821415|821416|821417|821418|821419|821420|821421|821423|821424|821425|821426|821427|821428|821429|821430|821431|821432|821433|821434|821435|821436|825661|825662|825663|825664|825665|825666|825667|825668|825669|825670|825671|825672|825673|825674|825675|825676|825677|825678|825679|825680|825681|825682|825683|825684|825685|825686|825687|825688|825689|825690|825691|825692|825693|825694|825695|825696|825697|825698|825699|825700|825701|825702|825703|825704|825705|825706|825707|825708|825709|825710|825711|825712|825713|825714|825715|843551|843552|843553|843554|843555|843556|843557|843558|843559|843560|843561|843562|843563|843564|843565|843566|843567|843568|843569|843570|843571|843572|843573|843574|843575|843576|843577|843578|843579|843580|843581|843582|843583|843584|843585|843586|843587|843588|843589|843590|843591|843592|843593|843594|843595|843596|843597|843598|843599|843600|843601|843602|843603|843604|843605|843606|843607|843608|843609|843610|843611|843612|843613|843614|843615|843616|843617|843618|843619|843620|843621|843622|843623|843624|843625|843626|843627|843628|843629|843630|843631|843632|843633|843634|843635|843636|843637|843638|843639|843640|843641|843642|843643|843644|843645|843646|843647|843648|843649|845726|845727|845728|845729|845730|845731|845732|845733|845734|845735|845736|845737|845738|845739|845740|845741|845742|845743|845744|845745|845746|845747|845748|845749|845750|845751|845752|845753|845754|845755|845756|845757|845758|845759|845760|845761|845762|845763|845764|845765|845766|845767|845768|845769|845770|845771|845772|845773|845774|845775|845776|845777|845778|845779|845780|845781|845782|845783|845784|845785|845786|845787|845788|845789|845790|845791|845792|845793|845794|845795|845796|845797|845798|845799|845800|845801|845802|845803|845804|845805|845806|845807|845808|845809|845810|845811|845812|845813|845814|845815|845816|845817|845818|845819|845820|845821|845822|845823|845824|845825|845826|845827|845828|845829|845830|845831|845832|845833|845834|849108|849109|849110|849111|849112|849113|849114|849115|849116|849117|849118|849119|849120|849121|849122|849123|849124|849125|849126|849127|849128|849129|849130|849131|849132|849133|849134|849135|849136|849137|849138|849139|849140|849141|849142|849143|849144|849145|849146|849147|849148|849149|849150|849151|849152|849153|849154|849155|849156|849157|849158|849159|849160|849161|849162|849163|849164|849165|849166|849167|849168|849169|849170|849171|849172|849173|849174|849175|849176|849177|849178|849179|849180|849181|850833|850835|850837|850839|850878|851147|851396|851879|851908|851910|851912|852233|852426|852649|852773|852774|852776|852780|852782|852783|852810|852811|852813|852899|852903|852905|853016|853017|853018|853019|853020|853021|858413|858418|858434|858462|858798|858799|858800|858801|858802|858803|858804|858805|858806|858810|858812|858813|861551|874991|883671|883672|883673|883674|903622|903644|908647|908654|908689|908693|911543|913595|913608|913630|913633|913642|913648|913677|914043|914050|914064|914065|914091|914096|914097|914102|914142|914146|914151|914935|914936|914966|915261|915568|917219|917840|917857|917866|918108|919316|919635|919754|919755|919756|920208|920293|920330|920359|922543|922544|922545|922546|922547|922548|922549|922550|922551|922552|922553|922554|922555|922556|922557|922558|922559|922560|922561|922562|922563|922564|922565|922566|927698|927699|927700|927701|927702|927703|927704|927705|927706|927707|927708|927709|927710|927711|927712|927713|927714|927715|927716|927717|927718|927719|927720|927721|927722|927723|927724|927725|927726|927727|927728|927729|927730|927731|927732|927733|927734|927735|927736|927737|927738|927739|927740|927741|927742|927743|927744|927745|927746|927747|927748|928400|928401|928402|928403|928404|928405|928406|928407|928408|928409|928410|928411|928412|928413|928414|928415|928416|928417|928418|928419|928420|928421|928422|928423|928424|928425|928426|928427|928428|928429|928430|929422|929423|929424|929425|929426|929427|929428|929429|929430|929431|929432|929433|929434|929435|929436|929437|929438|929439|929440|929441|929442|929443|929444|929445|929446|929447|929448|929449|929450|929451|931108|931109|931110|931111|931112|931113|931114|931115|931116|931117|931118|931119|931120|931121|931122|931123|931124|931125|931126|931127|931128|931129|931130|931131|931132|931133|937354|937355|937356|937357|937358|937359|937360|937361|937362|937363|937364|937365|937366|937367|937368|937369|937370|937371|937372|937373|937374|937375|937376|937377|937378|937379|937380|937381|937382|937383|937384|937385|937386|938065|938066|938067|938068|938069|938070|938071|938072|938073|938074|938075|938076|938077|938078|938079|938080|938081|938082|938083|938084|938085|938086|938087|938088|938089|938090|938091|938092|938093|938094|938095|938096|938097|938098|938099|938100|938101|938102|938103|938104|938105|938106|938107|938108|939227|939228|939229|939230|939231|939232|939233|939234|939235|939236|939237|939238|939239|939240|939241|939242|939243|939244|939245|939246|939247|939248|939249|939250|939251|939252|939874|940355|940356|940424|940425|940526|940689|940690|940691|940692|940693|941130|941131|941132|941188|941189|941190|941191|941275|941276|941277|941278|942581|942582|942583|942584|942585|942586|942587|942588|942589|942590|942591|942592|942593|942594|942595|942596|942597|942598|942599|942600|942601|942602|942603|949300|949301|949302|949303|949304|949305|949306|949307|949308|949309|949310|949311|949312|949313|949314|949315|949316|949317|949318|949319|949320|949321|949322|949323|949324|949325|949326|949327|949328|949329|950089|950090|950091|950092|950093|950094|950095|950096|950097|950098|950099|950100|950101|950102|950103|950104|950105|950106|950107|950108|950109|950110|950111|950112|950113|950114|950115|950116|950117|950118|950119|950120|950121|950122|950123|950124|950125|950126|950127|950128|950313|951367|951368|951369|951370|951371|951372|951373|951374|951375|951376|951377|951378|951379|951380|951381|951382|951383|951384|951385|951386|951387|951388|951389|951390|951391|951392|951393|951394|951395|951396|951397|951398|951399|951400|951401|951402|951403|951404|952910|952911|952912|952913|952914|952915|952916|952917|952918|952919|952920|952921|952922|952923|957694|957695|957696|957697|957698|957699|957700|957701|957702|957703|957704|957705|957706|957707|957708|957709|958217|958218|958219|958220|958221|958222|958223|958224|958225|958226|958227|958228|958229|958230|958231|959042|959043|959044|959045|959046|959047|959048|959049|959050|959051|959052|959053|959054|959055|959056|959057|959624|959625|959626|959627|960150|960228|960229|960230|960338|960339|960462|960891|960962|960963|960964|962061|962063|964192|964354|964489|964490|964551|964653|966623|966680|966852|966854|970982|970983|970984|971055|973091|973092|976547|976549|980513|980717", + "text": "Familial cancer of breast" + }, + { + "baseId": "16284|132182|132221|132239|132267|153702", + "text": "PALB2-Related Disorders" + }, + { + "baseId": "16292|16293|16294|16295|16296|16297|16298|191720|266317|267759|268769|272369|272443|274096|365079|365080|365083|365084|365092|365163|365167|365174|365182|365254|365272|414799|421243|433768|433769|433772|433773|442843|447899|447903|447904|447910|447911|448048|448050|448057|448060|448065|448071|448080|448116|448118|448123|448126|448129|448132|448136|448197|448199|448209|448225|448227|448229|488684|492430|498470|513014|513243|515869|515872|515882|515889|515890|515894|515895|515898|515924|515927|515931|515935|515940|515995|515997|538947|557057|557266|557268|557270|557319|557321|557323|557325|557327|557329|557331|558511|558513|558515|623234|627843|627844|627845|627846|627847|627848|627849|627850|627851|627852|627853|627854|627855|627856|627857|627858|627859|627860|650661|650662|650751|685732|690598|690599|690600|690602|696745|707412|732456|788738|799220|823967|823968|823969|823970|823971|823972|823973|823974|823975|823976|823977|823978|823979|823980|851301|864414|864415|864417|864418|864420|864423|864425|864426|864427|864428|864429|864432|864434|922018|922019|922020|922021|922022|930487|930488|930489|939813|941941|941942|941943|941944|952412|952413|970168|970691|970692|981323|981324|981325|981326|981327", + "text": "Osteogenesis imperfecta type 8" + }, + { + "baseId": "16299|16300|199797|199798|254245|314553|314559|314560|314570|314576|314582|314583|314586|314590|314591|314598|314599|321252|321253|321258|321259|321260|321268|321270|321272|321273|321280|321282|321285|321287|327403|327413|327420|327432|327435|327436|327440|327456|327457|327461|327463|328458|328462|328463|328466|328481|328482|328492|328493|328501|328502|328506|328512|361534|439163|461348|566056|566066|570828|624449|640325|640326|640327|738150|784090|838758|838759|838760|838761|868264|868265|868266|868267|868268|868269|868270|868271|868272|868273|868274|868275|868276|868277|868671|926343|935689|935690|947581|947582|947583|947584|969709|971504", + "text": "Aicardi Goutieres syndrome 3" + }, + { + "baseId": "16299|40348|67271|181292|214847|244018|389153|536164|567199|581716|590734|612486|626060|626270|626445|626446|676962|676969|679673|679675|679676|679677|679679|679680|679681|679682|679683|679685|679686|679688|679689|682748|682758|789258|802086|802087|802089|802095|805083|805137|964209|964234|964287|964300|964342|964380|964452|964478|964522|964597|964679|971283|983454|983680|983681", + "text": "Neurodevelopmental delay" + }, + { + "baseId": "16301|16302|188848|227352|254859|270631|319927|319929|319933|319935|319936|319937|319941|319944|319948|328473|328475|328476|328483|334977|334980|336819|336831|336834|360007|373859|527818|528154|528317|566169|567722|568619|568621|568625|577339|620473|642018|642019|642020|642021|642022|642023|642024|642025|642026|642027|642028|652296|652377|652406|652842|693393|693394|695602|702720|739065|769587|840978|840979|858760|871398|871399|871400|871401|871402|871403|871404|871405|871406|871407|871408|871409|871410|926940|926941|926942|936478|940292|948406|948407|957119|970145|980473", + "text": "Aicardi Goutieres syndrome 2" + }, + { + "baseId": "16301|39562|76972|102135|102136|131928|251190|265435|290894|290897|291832|291833|291841|295022|295410|295418|295421|295439|328464|328494|328502|328506|334944|335369|345200|348153|349391|349941|441638|571210|648644|648648|648656|731341|757494|757496|757497|757501|773096|780209|848369|848379|980019|980020", + "text": "Aicardi Goutieres syndrome" + }, + { + "baseId": "16303|16304|16306|16307|34717|102516|102517|102518|102520|102521|102522|102523|177276|177503|177504|191110|254845|265391|268147|373338|413358|413359|429488|445137|489314|489420|535721|567225|572250|585857|641632|688158|693349|695595|702661|702662|725450|753782|820551|840619|840620|840621|840622|871000|871001|871002|871003|871004|871005|871006|871007|871008|871009|871010|871011|871012|871013|871014|871015|871016|871017|871018|871019|871020|871021|871022|871023|871024|871025|871026|871027|871028|871029|871030|871031|871032|871033|871034|871035|871036|871037|871038|871039|871040|871041|871042|871043|871044|871045|871046|871047|871048|871049|871050|871051|871052|871053|871054|871055|871056|871057|871058|871059|871060|871061|871062|871063|871064|871065|871066|871067|871068|871069|872323|872324|872325|926823|976015", + "text": "Peters plus syndrome" + }, + { + "baseId": "16308", + "text": "Association with systemic lupus erythematosus" + }, + { + "baseId": "16309|16310|16311|221934|397304|397474|475211|475220|475221|475245", + "text": "Colorectal cancer 1" + }, + { + "baseId": "16312|16312|16313|16313|16314|16315|16315|16316|16317|16318|16319|16321|16321|134353|134356|134357|134359|134360|134362|134364|193756|193758|195784|195785|195786|195788|195789|205737|205737|205738|205738|207118|246964|251442|251449|251450|251451|251468|251469|251470|251471|265661|265854|267408|269333|269335|270556|359625|406429|406430|406431|421486|421486|428295|428296|440848|443612|443613|443614|452822|453125|453129|453131|453133|453135|453137|453138|453147|453149|453390|453395|453397|453498|453503|453506|453519|453527|453610|453881|453888|453891|453895|453896|453896|453905|453907|500822|513273|519878|519881|519887|519888|519891|519892|519896|519897|519901|519902|519904|519912|520134|520136|520142|520144|520147|520166|520170|520174|520175|535238|535270|538369|538369|552078|552079|552079|559659|559661|559663|559665|559667|559669|559671|559822|559824|559826|559828|559830|561997|561998|562001|563662|563663|563667|563675|563681|632159|632160|632161|632162|632163|632164|632165|632166|632167|632168|632169|632170|632171|632172|632173|632174|632175|632176|632177|632178|632179|632180|632181|632182|632183|632184|632185|632186|632187|632188|632189|632190|632191|632192|632193|651111|676959|689753|689754|691550|691551|691553|691554|691555|691556|691560|691561|691562|695230|695231|695232|695234|698498|698499|698500|720950|720951|730286|748925|748929|764453|764456|777445|792748|792749|800954|801607|819479|819480|829074|829075|829076|829077|829078|829079|829080|829081|829082|829083|829084|829085|829086|829087|829088|829089|829090|829091|829092|829093|829094|829095|829096|829097|829098|829099|850984|851498|851602|923493|923494|923495|923496|923497|923498|923499|923500|923501|923502|932297|932298|932299|932300|932301|932302|932303|932304|932305|943961|943962|943963|943964|943965|943966|953762|953763|959722|959723|960536", + "text": "Myasthenia, limb-girdle, familial" + }, + { + "baseId": "16312|16313|20953|21691|23085|23090|23094|32552|33280|33387|33396|33399|34013|48714|75121|132068|132069|134182|134183|134184|134204|134205|134206|134209|134210|134211|134212|134213|134214|134215|134216|134217|135535|135536|135537|135538|190766|191135|191169|192261|194410|195200|195909|206906|244110|244111|244112|244113|244114|244115|244116|244117|244118|244119|244122|250660|254191|254194|254196|254197|256232|256233|256234|256235|256236|256240|256241|256245|256250|256251|259249|264430|265660|266273|267375|269662|272149|272153|272237|272295|282956|282959|283772|283773|283774|283775|283797|283803|283808|285265|285276|285277|285281|285284|285294|285296|285404|285409|285413|285430|285431|285435|285437|285438|285819|285820|285822|285832|285833|285838|285906|285917|285922|285932|285940|285941|285943|285949|285950|285951|285956|288234|288235|288236|288242|288262|288264|288657|288667|288668|288669|288670|288680|288681|288686|288688|314302|326961|326964|328008|328017|329037|329041|329044|329046|329050|329052|329060|329063|329064|339080|339088|339093|339094|339096|339109|339111|339112|339113|339125|345071|345072|345073|345074|345076|345077|345081|345082|345083|345087|345092|345093|346403|346404|346406|346408|346410|346416|346417|346419|346420|346429|346436|346437|346439|346441|346444|346448|346453|346456|346457|346460|360460|361049|361050|367085|376285|413452|415568|422179|429984|445795|448988|450493|450517|461171|466961|467864|467869|467880|467895|468358|486265|517965|518034|518516|526258|526260|531216|531397|536399|538964|540459|557729|564737|571592|574510|577648|620594|620595|620886|624114|629016|640135|640147|646147|646148|646150|646154|646161|646163|654166|654225|676959|682756|682757|693055|693056|693057|694100|694103|694105|694106|701788|701789|719712|738014|738016|740840|760070|771611|771613|771615|771621|784020|784024|838550|838551|845583|845584|851439|868108|868109|868110|877867|877868|877869|877870|877871|877872|877873|877874|877875|877876|877877|877878|877879|877880|881618|881619|881620|881621|881622|881623|881624|881625|881626|881627|881628|881629|881630|884121|884122|884123|884124|884125|884126|884127|884128|884129|884130|884131|884132|884133|884134|884135|884136|884137|884138|884139|887315|887316|956527|958175|978998|978999|979000|979001|979002|979003|979004|979005|979006|979007|979008|979009|979010|979909|979910|979911|979912|980211", + "text": "Congenital myasthenic syndrome" + }, + { + "baseId": "16312|16313|16313|16315|16321|23085|23085|23090|23094|23095|23278|134353|134356|134357|134358|134359|134360|134362|134364|135077|135078|135079|135080|135535|135536|135537|135538|188285|188286|193756|193758|193758|194410|194417|194418|194419|195784|195785|195786|195788|195789|196271|205737|205738|207598|207599|215099|236991|236991|246964|251442|251449|251450|251451|251468|251469|251470|251471|253268|253271|253273|253276|253279|253280|254190|254191|254191|254193|254194|254194|254196|254196|254197|254199|254199|259249|265645|265661|265854|267408|269333|269335|269662|270310|270556|272237|272237|273473|306486|310665|310670|314291|314298|314302|314302|314303|314304|314310|314311|316033|316039|316043|316056|316060|316061|316362|316370|316372|320894|320895|320896|326952|326961|326961|326964|326964|326966|326966|326967|326967|326969|327989|327990|327992|327993|328006|328006|328007|328008|328008|328017|328017|328018|328020|359625|359884|360903|406429|406430|406431|421486|425810|425811|425812|428892|429242|440848|441429|443613|443614|452822|453125|453129|453131|453133|453135|453137|453138|453147|453149|453390|453395|453397|453498|453503|453506|453519|453527|453610|453881|453888|453891|453895|453895|453896|453905|453907|458118|458200|458202|458724|458728|458730|458731|458813|458815|458818|458820|458821|458823|458824|459228|459231|459233|459237|459241|459247|461171|461173|461192|461192|461196|461377|461384|461384|461702|461704|461705|462027|462028|500822|503668|519878|519881|519887|519888|519891|519892|519896|519897|519901|519902|519904|519912|520134|520136|520142|520144|520147|520166|520170|520174|520175|523905|524180|524182|524185|524187|524190|524464|524496|524500|524505|524513|524514|524519|525851|526258|526259|526260|526291|526292|526294|526479|538369|538423|546445|550615|552078|552078|552079|552080|559659|559661|559663|559665|559667|559669|559671|559822|559824|559826|559828|559830|561997|561998|562001|562680|562686|563372|563662|563663|563667|563675|563681|564725|564727|564728|564734|564737|565317|565322|565420|565422|565864|567327|567332|568401|568408|570703|610419|620404|632159|632160|632161|632162|632163|632164|632165|632166|632167|632168|632169|632170|632171|632172|632173|632174|632175|632176|632177|632178|632179|632180|632181|632182|632183|632184|632185|632186|632187|632188|632189|632190|632191|632192|632193|637618|637619|637620|637621|637622|637623|637624|637625|637626|637627|637628|637629|637630|637631|637632|637633|637634|640135|640136|640137|640138|640139|640140|640141|640142|640143|640144|640145|640146|640147|640148|640149|651111|651963|651973|651974|652084|677435|677436|677436|689753|689754|691550|691551|691553|691554|691555|691556|691560|691561|691562|692562|692563|692566|693055|693056|693057|693058|695230|695231|695232|695234|695410|695411|698498|698499|698500|701788|701788|711692|720950|720951|730286|738012|738013|738014|738015|738016|738017|748925|748929|751303|752698|764453|764456|767000|767001|767004|768481|777445|783220|784019|784022|784023|790469|791143|791143|819479|819480|820380|820381|829074|829075|829076|829077|829078|829079|829080|829081|829082|829083|829084|829085|829086|829087|829088|829089|829090|829091|829092|829093|829094|829095|829096|829097|829098|829099|835370|835371|835372|835373|835374|835375|835376|835377|835378|835379|835380|835381|835382|835383|835384|835385|835386|838547|838548|838549|838550|838551|838552|838553|838554|838555|850984|851439|851498|851602|868105|868106|868107|868108|868109|868110|868111|868112|868659|868660|868660|900849|900851|923493|923494|923495|923496|923497|923498|923499|923500|923501|923502|925333|925334|925335|925336|926266|926267|926268|926269|932297|932298|932299|932300|932301|932302|932303|932304|932305|934506|934507|934508|934509|935592|941000|943961|943962|943963|943964|943965|943966|946307|946308|946309|946310|946311|946312|946313|946314|947496|947497|947498|953762|953763|955653|955654|955655|956525|956526|956527|956528|956529|956530|959722|959723|960536", + "text": "Pena-Shokeir syndrome type I" + }, + { + "baseId": "16313|251471|443612", + "text": "Fetal akinesia deformation sequence 3" + }, + { + "baseId": "16322|190079|190080|190081|190633|371851|372605|372869|374641|421908|461651|461865|462211|503563|526694|526695|526698|526712|526941|527267|565087|565089|640658|640659|640660|640661|640662|640663|640664|713388|713389|724948|738502|753162|779751|784291|839359|839360|839362|839363|839364|839365|839366|839367|839368|839369|850699|851931|926479|926480|926481|935931|935932|935933|947800|947801|947802|947803|947804|947805|947806|956762", + "text": "Combined immunodeficiency due to ORAI1 deficiency" + }, + { + "baseId": "16323|16324|16325|16326|39778|139380|194475|227472|272473|273439|280357|280358|280363|280364|280367|280368|280727|280730|280731|280732|282057|282060|282061|282062|282075|282076|282077|282082|282171|282179|282186|282188|365211|365212|405151|414791|442807|442808|498391|538334|552184|614216|682814|732359|858941|864284|864285|864286|864287|864288|864289|864290|864291|864292|864293|864294|864295|864296|864297|865175", + "text": "Hyperphosphatasia with mental retardation syndrome 1" + }, + { + "baseId": "16323|270363|282089|353102|513588|654540", + "text": "Hyperphosphatasia-intellectual disability syndrome" + }, + { + "baseId": "16327|190662|495084|583330|622442|626982|626983|650550|696204|952114", + "text": "Hypercoagulability syndrome due to glycosylphosphatidylinositol deficiency" + }, + { + "baseId": "16328|136231|136232|136233|222007|240895|311846|311848|311849|311850|311861|311862|311863|311864|311869|311872|311873|311874|311875|317461|317478|317486|317487|317491|323498|323501|323504|323506|323509|323511|323512|324135|324137|324140|324143|324149|324152|324163|324170|324172|324174|324176|324192|324193|324194|324202|837570|866674|866675|866676|866677|866678|866679|866680|866681|866682|866683|866684|866685|866686|866687|866688|866689|866690|866691|866692|866693|866694|866695|868547|868548|868549|919310", + "text": "Spastic paraplegia 33, autosomal dominant" + }, + { + "baseId": "16328|971426", + "text": "Spastic tetraparesis" + }, + { + "baseId": "16329", + "text": "Deafness, mitochondrial, modifier of" + }, + { + "baseId": "16329|16330|16331|16332|16333|39776|39777|141411|141412|141413|141414|141416|141417|141418|141419|141420|141422|141423|141424|191073|211945|211946|211948|211950|211951|211954|211955|211956|213662|271100|338448|338450|338451|338452|338459|338463|338464|338467|338470|338473|338476|348064|348068|348069|348071|348073|348075|348079|348082|348087|351775|351781|351783|351784|351785|351787|351788|352639|352640|352641|352642|352643|352644|352645|352646|352647|352648|352649|352650|379866|415721|434687|491567|549073|549077|549079|552233|584105|584342|587178|620695|773591|776754|776834|786618|788096|798773|849393|891429|891430|891431|891432|891433|891434|891435|891436|891437|891851|891852|961793|980058|980059|980060|980061|980062", + "text": "Acute infantile liver failure due to synthesis defect of mtDNA-encoded proteins" + }, + { + "baseId": "16334", + "text": "Seborrhea-like dermatitis with psoriasiform elements" + }, + { + "baseId": "16335|45584|141330|361330|581733|792816", + "text": "Macrocephaly, alopecia, cutis laxa, and scoliosis" + }, + { + "baseId": "16336|16337|16338|16339|16340|16341|16342|53037|53039|53040|53041|53042|172797|172799|172937|228548|273171|275039|283174|283175|283184|283186|283190|283901|283903|283904|285666|285668|285673|285674|285676|286059|286066|286071|353548|490780|553250|881714|881715|881716|881717|881718|881719|881720|881721", + "text": "Deafness, autosomal recessive 59" + }, + { + "baseId": "16343|16344|16345|16346|16347|16348|16349|16350|205190|227410|654900|980967", + "text": "Corneal endothelial dystrophy" + }, + { + "baseId": "16346|16351|16352|16353|16354|16355|16356|16357|16358|257347|335150|335155|335160|335162|344936|344949|344951|349799|350819|350823|350828|350829|350833|513381|705428|705429|705430|705432|716899|716900|716901|728589|742316|742318|742319|742320|742324|745107|757418|757421|757423|757425|757426|760649|760946|773037|773038|773040|773041|773048|773052|773054|773055|776769|780043|786336|786348|793835|793836|885959|980017|980018", + "text": "Corneal dystrophy-perceptive deafness syndrome" + }, + { + "baseId": "16359|16360|16361|16362", + "text": "Corneal dystrophy, Fuchs endothelial, 4" + }, + { + "baseId": "16363|188053|213463|222816|410649|847886|961634|962984", + "text": "Charcot-Marie-Tooth disease type 2B2" + }, + { + "baseId": "16363|17307|17308|17309|17310|17313|17314|17315|17317|17319|17320|17321|19582|19583|19585|19699|19700|23505|24243|29517|29520|29522|29524|29525|29526|29528|29533|29534|29537|29538|29539|29542|29543|29547|29556|29558|29559|29563|29564|29566|39693|45135|45138|45139|45141|57194|57195|57196|57199|57201|57202|57204|57205|57207|57208|57209|57210|57211|57212|57213|57215|57216|57218|57219|57220|57225|57226|57227|57229|57230|57234|57235|57238|57239|57240|57241|57242|57244|57246|57247|57252|57254|57256|57257|57259|57260|57261|57262|77655|77656|77657|77659|77662|77664|77666|77669|77674|77675|77677|77683|77687|77688|77689|77691|77692|77694|77695|77696|77697|77698|77699|77701|77702|77703|77704|77708|77712|77714|77716|77717|77746|77747|77750|77756|77757|77759|77761|77764|77765|77767|77774|77775|77779|77781|77798|77799|77803|77805|77807|77808|77813|77818|77821|77822|77825|77826|77828|77836|77843|77849|77852|77856|77857|101186|133981|133982|134845|134846|134847|141142|141143|141144|141145|141146|141147|141903|141913|141914|141915|141917|141918|141919|141920|141921|141922|141923|153583|165484|165485|165487|165488|165489|165503|165504|165644|167393|167399|171048|171050|172341|172345|172346|172348|172465|172481|172483|172484|172489|172490|178432|181570|185950|186075|186076|186077|186078|186153|187938|189383|190878|191101|191254|191366|191572|192098|192545|192546|193949|194120|194890|194937|196028|196270|196292|196335|196456|196457|196460|196461|196463|196467|196468|196470|196476|196477|196479|196488|198602|205754|206726|207867|207868|210581|210582|210583|210584|210585|210587|210588|210589|210590|210594|210597|210598|210601|210602|210603|210604|210605|212060|212062|212063|212065|212066|212067|212068|212069|212070|212071|212578|213216|213217|213218|213219|213220|213221|213462|213463|213464|213788|213789|213790|215103|221072|221073|221074|221076|221078|221079|221697|221698|221699|222148|222150|222151|222532|222533|222534|222535|222815|222816|222817|222818|224181|224183|226437|228272|228277|228278|228279|228280|228282|238110|238112|238113|238114|238115|238116|238117|238136|238137|238138|238145|238146|238147|238148|238149|238150|238151|241164|241165|241166|242492|242493|242494|242495|243383|243384|244149|244186|244190|244192|244195|244199|244201|244207|244209|244210|244217|244221|244224|244225|244226|244230|244231|244232|244238|244239|244499|244501|244659|244660|244662|244664|244666|244667|244984|244986|244988|244989|244990|244991|244992|244994|244995|244996|244998|244999|245001|245260|245261|245262|249266|252786|252788|252789|252793|252795|257926|257936|260125|263976|265790|265812|266058|266396|267009|267234|267407|268422|268423|268456|268457|269185|269705|270175|270495|271542|272177|272210|272364|272513|272902|273698|274737|274897|275617|275618|275620|275648|275649|275671|275677|275679|275703|275733|275737|275742|275746|275747|275750|275751|275754|275758|275760|275761|275762|275763|275764|275766|275773|275785|275787|275792|275799|275802|275832|275842|275887|275897|275902|275904|275960|276217|276218|276219|276220|276223|276224|276238|276239|276240|276243|276245|276253|276260|276268|276269|276473|276475|276476|276482|276485|276486|276487|276488|276496|276497|276514|276601|276610|276614|276860|276879|276884|276885|276886|276889|276898|276899|276903|276905|276906|276907|276908|276909|276951|276952|276953|276954|276965|276969|276970|276972|276977|276978|276992|277008|277039|277430|277433|277434|277445|277447|277456|288623|288635|288638|292393|292395|292510|302796|302805|303437|306110|306131|306135|306839|310904|310905|310906|311001|311081|311087|311089|311091|311092|311094|314466|314467|316173|316570|316614|316872|320150|320157|321112|323452|326184|326195|326197|326198|328232|329273|330859|334076|334077|334082|334083|334099|334101|335871|335876|335888|335893|335895|335897|342248|342254|343812|343816|343818|343834|343842|343847|343849|344009|349263|350227|353022|353023|353062|353209|359204|360396|361488|364339|364342|364400|364422|364423|364425|364426|364429|364449|364520|364525|364527|369141|369717|371096|371108|371120|371503|371504|372259|374546|374548|375563|375593|375596|375606|377737|377740|377743|379613|380250|380252|390725|390730|390731|390732|390740|390745|390751|390783|390790|390792|390794|390796|390797|390799|390801|390802|390804|390807|390809|390815|390816|390818|390819|390820|390821|390823|390824|390826|390827|390830|390832|390834|390837|390838|390839|390851|395619|395622|395625|395627|395634|395871|396002|396004|396286|398262|398342|398344|398347|401310|401314|401318|401808|401813|401815|403327|403332|403333|403348|403846|403850|404898|407124|407126|408397|409719|409720|409722|410649|411573|413249|413313|421176|421866|425314|425751|427647|427654|427655|427656|432972|433332|433691|433692|437797|440347|440351|440360|441080|442603|442607|442609|442638|444840|446907|446943|446947|446949|446950|446957|446958|446983|446988|446989|446991|446992|446998|446999|447004|447007|447068|447072|447073|447159|447163|447169|447173|447174|447180|447189|447196|447227|447230|447234|447236|447237|447238|447239|447243|447252|447253|447254|447255|447258|447266|447307|447315|447317|456697|456698|456702|456704|457153|457154|457156|457158|457164|457338|457340|457343|457752|457756|457766|457767|457772|457773|461232|461415|461419|461427|461753|462047|462060|462063|462068|465940|465941|466628|466634|466640|466643|466674|466686|466703|466959|466963|466966|466970|466974|468986|468987|469959|469963|469968|470418|470422|470423|470425|470431|470438|470448|470455|471097|471104|471108|480668|481568|488416|490402|491150|491488|491900|493495|493976|495086|497999|498005|498035|498064|498125|502025|502032|502367|505736|506457|509110|509111|509115|509119|509120|509122|509124|511044|514858|514862|514867|514868|514869|514876|514881|514902|514903|514908|514909|514910|514917|514920|514921|514928|514930|514933|515014|515016|515021|515022|515030|515033|515034|515035|515038|515039|515042|515045|515046|515048|515078|515085|515086|515088|515092|515094|515099|515102|515103|515112|515113|515114|515118|515122|515124|515125|515131|515135|515136|515137|515138|515149|515150|515157|515159|515161|515162|515166|515170|515171|515279|515280|515282|515284|522301|522633|522635|522638|522641|522646|522653|522907|522909|522911|523072|523076|523079|523081|523288|523290|523294|523295|523297|526005|526011|526282|526513|526518|526799|526807|526810|529856|530185|530187|530200|530211|530219|530257|530259|530261|530263|530269|530271|530278|530511|530513|530518|530520|530523|530726|530730|530732|530734|530736|532390|533131|533134|533231|533235|533244|533247|533250|533251|533255|533257|533258|533266|533275|533660|533665|533671|533674|533681|533683|533687|536562|537077|540437|540448|556493|556513|556518|556520|556522|556543|556545|556547|556574|556576|556578|556580|556582|556584|556586|556611|556613|556614|556615|556616|556617|556618|556619|556620|556621|556622|556624|556669|556671|556673|556675|556677|556679|556681|556683|556808|556888|556890|556897|556900|556903|556905|556907|556909|556955|556959|556961|556963|556965|556967|556969|558011|558079|558084|558086|558088|558090|558092|558094|558096|558098|558140|558142|558144|558146|561576|561580|561581|561585|561918|561924|561926|561936|561937|561943|564289|564291|564772|564777|564779|565901|565909|565911|565918|565923|566831|566847|566851|566854|567369|567372|567539|568275|568288|568289|568291|570399|570404|570407|570409|570410|570412|570415|570419|570422|570424|570459|570461|570462|570475|570479|570487|570492|570494|570497|570503|570937|570941|570943|572613|572616|572618|573240|573244|573245|573249|573250|573251|573257|573259|573260|574135|574137|574146|574147|574148|574149|574150|575008|575009|575010|575011|575012|575013|576406|576412|576972|576973|576974|583277|589194|589611|589638|609799|612779|613043|619948|621704|624892|624894|624917|624922|624925|624937|624939|624958|624960|624971|625140|625724|626484|626485|626486|626487|626488|626489|626490|626491|626492|626493|626494|626495|626497|626734|626735|626738|626740|626741|626742|626743|626744|626745|626746|626747|626748|626749|626750|626751|626752|626753|626754|626755|626756|626757|626758|626759|626760|626761|626762|626763|626764|626765|626901|626902|626903|626904|626905|626906|626907|626908|626909|626910|626911|626912|626913|626914|626915|626916|626917|626918|626919|626920|626921|626922|626923|626924|626925|626926|626927|626928|626929|626930|626931|636128|636129|636130|636131|636132|636133|636134|636135|636136|636137|636138|636139|636140|640200|640201|640202|640203|640204|640205|640206|640207|640208|640209|640210|644920|644921|644922|644923|644924|644925|644926|644927|644928|644929|644930|644931|644932|644933|644934|644935|644936|644937|644938|644939|644940|644941|644942|644943|644944|644945|648259|648260|648261|648262|648263|648264|648265|648266|648267|648268|648269|648270|648271|648272|648273|648274|648275|648276|648277|648278|648279|648280|648281|648282|648283|648284|648285|650527|650530|650531|650534|650538|650548|650553|650582|650588|650601|650632|650636|650653|651807|652220|652648|652658|652659|653147|679362|681874|682977|683002|683007|683074|683227|683228|683230|683231|683285|683286|683888|684262|684263|684613|684614|684615|684616|684846|684847|684848|684849|684850|685079|685293|685421|685503|685505|685507|685573|685575|687042|687798|687800|687801|687803|688635|688636|688639|688640|689127|689128|689129|689130|689132|689134|689136|689137|689140|689141|689613|690006|690007|690225|690284|690286|690351|690378|693917|693918|693924|694494|694500|694501|694502|695006|695703|695704|695835|703786|716612|724537|730778|745494|745734|758864|759546|774391|774395|775706|777019|780346|782855|784038|784039|784040|786257|787005|794398|797368|799084|818833|819871|819872|820868|820869|822361|822362|822363|822365|822366|822367|822368|822369|822371|822372|822373|822374|822375|822376|822377|822379|822380|822381|822382|822383|822384|822385|822386|822387|822626|822627|822628|822629|822630|822631|822632|822633|822634|822635|822636|822637|822638|822639|822640|822641|822642|822643|822644|822645|822646|822647|822648|822649|822650|822651|822652|822653|822789|822790|822791|822792|822793|822794|822795|822796|822797|822798|822799|822800|822801|822802|822803|822804|822805|822806|822807|822808|822809|822810|822811|822812|822813|833563|833564|833565|833566|833567|833568|833569|833570|833571|833572|838639|838640|838641|838642|838643|838644|838645|838646|838647|838648|838649|838650|844215|844216|844217|844218|844219|844220|844221|844222|844223|844224|844225|844226|844227|844228|844229|844230|844231|844232|844233|844234|844235|844236|844237|844238|847864|847865|847866|847867|847868|847869|847870|847871|847872|847873|847874|847875|847876|847877|847878|847879|847880|847881|847882|847883|847884|850713|850720|850728|850729|850734|851103|851152|852127|852347|852369|852825|861810|862127|862128|862129|862130|862131|862132|862133|862134|862135|862136|862137|862138|862139|862140|862141|862142|862143|862144|862145|862146|862147|862148|864970|864971|864972|897981|905084|906433|906450|906451|920956|921535|921536|921537|921538|921539|921540|921611|921616|921618|921664|921665|921666|921667|921668|921669|921670|921671|921672|921673|924842|924843|924844|924845|924846|924847|926293|926294|926295|926296|926297|926298|926299|926300|927915|927916|927917|927918|927919|927920|927921|927922|927923|927924|927925|927926|929031|929032|929033|929034|929035|929036|929037|929038|929039|929040|929041|929042|929043|929044|929045|929046|929891|929892|929893|929894|929895|929896|929897|929898|929899|929900|929901|930003|930004|930006|930007|930008|930009|930010|930011|930012|930013|930059|930060|930061|930062|930063|930064|930065|930066|930067|930068|930069|930070|930071|933869|933870|933871|933872|933873|933874|933875|933876|933877|935638|935639|935640|935641|935642|935643|937573|937574|937575|937576|937577|937578|938778|938779|938780|938781|938782|938783|938784|938785|940226|940596|940877|941002|941325|941326|941327|941328|941329|941330|941331|941332|941333|941334|941335|941415|941416|941417|941418|941419|941420|941421|941422|941423|941424|941425|941490|941491|941492|941493|941494|941495|941496|941497|941498|941499|941500|941501|941502|941503|941504|941505|945616|945617|945618|945619|945620|947543|949523|949524|949525|949526|949527|949528|949529|949530|949531|949532|950860|950861|950862|950863|950864|950865|950866|950867|950868|950869|951982|951983|951984|951985|951986|951987|952039|952041|952042|952043|952090|952091|955145|955146|955147|955148|956555|957853|957854|958692|958693|958694|958695|958696|958697|959521|959523|959524|959525|959997|960175|960176|960298|960397|960851", + "text": "Charcot-Marie-Tooth disease, type 2" + }, + { + "baseId": "16363|141903|141904|199858|213462|213463|213464|222816|222817|222818|379613|410649|471108|610574|610575|800146|800147|961634|982190|982191", + "text": "Basel-Vanagaite-Smirin-Yosef syndrome" + }, + { + "baseId": "16364|134601|134602|134604|134605|134606|193742|247454|247455|247456|253560|308365|308366|308368|308373|308374|308380|308384|308385|308390|308391|308393|308397|308401|308405|308414|308422|308435|308449|308453|308455|308461|308463|308470|308471|308484|308486|308487|308488|308492|312828|312831|312832|312833|312840|312842|312843|312844|312867|312869|312871|312873|312874|312892|312904|312905|312930|312931|312932|312933|312934|312936|312938|312941|312943|318663|318665|318668|318669|318670|318679|318680|318690|318700|318714|318738|318741|318750|318751|318754|318760|318762|318763|318765|318766|318793|318800|318801|318803|318806|318813|318826|318829|318837|318842|319275|319278|319283|319285|319287|319290|319292|319295|319300|319302|319303|319305|319306|319308|319309|319311|319323|319337|319348|319352|319354|319366|319368|319369|319425|319427|319450|319451|319457|319460|319462|319473|380235|380236|380238|429021|429023|540018|620812|654541|723579|737143|737147|737148|783416|902093|902094|902095|902096|902097|902098|902099|902100|902101|902102|902103|902104|902105|902106|902107|902108|902109|902110|902111|902112|902114|902115|902116|902117|902118|902119|902120|902121|902122|902123|902124|902125|902126|902128|902130|902131|902132|902133|902134|902135|902136|902137|902138|902139|902140|902141|902142|902143|902144|902145|902146|902147|902148|902149|902150|902151|902152|902153|902154|902155|902156|902157|902158|902159|902160|902161|902162|902163|902164|902165|902166|902167|902168|902169|902170|902171|902172|902174|902175|902176|902177|902179|902180|902181|902182|902183|902184|902185|902186|902187|902188|902189|902190|902191|902193|902194|902195|902196|902197|902198|902199|902200|902201|902202|902203|902204|902205|903410|903411|903412", + "text": "Diabetes mellitus, neonatal, with congenital hypothyroidism" + }, + { + "baseId": "16365|17080|20359", + "text": "Bardet-Biedl syndrome 1, modifier of" + }, + { + "baseId": "16366|239515|239516|239517|294803|294805|294810|294811|294812|294813|294819|294820|294821|294828|294830|296437|296444|296446|296452|296462|296468|296469|296479|296482|296487|296492|296494|296495|296511|296522|296524|300192|300196|300209|300212|300216|300219|300228|300230|300231|300234|300236|300246|300249|300261|300281|300284|300286|394662|453628|453635|453898|453903|454432|454442|454448|454449|520165|520171|520173|520308|520546|520551|520594|538982|559841|559843|632536|632537|632538|685164|686567|799388|829562|829563|892593|892594|892595|892596|892597|892598|892599|892600|892601|892602|892603|892604|892605|892606|892607|892608|892609|892610|892611|892612|892613|892614|892615|892616|892617|892618|892619|892620|892621|892622|892623|892624|892625|892626|892627|892628|892629|892630|896011|896012|896013|918913|923625|932485|944156", + "text": "Neuropathy, hereditary sensory, with spastic paraplegia, autosomal recessive" + }, + { + "baseId": "16367|16368|16370|16371|39774|39775|44415|44416|78954|177141|177273|177405|177505|186848|186849|186850|186851|186852|192540|213010|213011|213012|214075|214076|214077|226933|237357|254720|254721|254723|260913|268121|272492|318501|318502|318504|318505|318508|318509|318510|326670|326679|326684|326687|326688|326690|326693|326694|332885|332890|332893|332894|332898|332900|332909|332911|332912|332914|334567|334569|334570|334573|334581|334588|334589|334590|358107|358108|358109|358110|358111|358112|358113|358114|358115|358116|358117|358118|358119|358120|358121|358122|358123|358124|358125|358126|358127|399055|399208|404810|408745|426019|426020|429449|429451|481238|487588|491371|493542|512858|527371|546695|546697|546711|546712|546713|546715|546722|546724|546729|546735|546736|546855|546857|546858|546861|546865|546877|546879|546881|546882|547014|547027|547039|547044|547048|547205|547209|547210|547213|547221|547234|547238|547241|547244|547255|547260|547264|547266|552165|572037|572041|572062|587963|621383|621384|641389|672028|684346|684348|684349|684353|688047|688050|688052|688053|693286|753614|769310|791276|791277|870453|870454|870455|870456|870457|870458|870459|870460|870461|870462|870463|870464|870465|870466|870467|870468|870469|870470|870471|870472|963363|974496|979294|979295|979296|979297|979298|979299|979300|979301", + "text": "Bardet-Biedl syndrome 10" + }, + { + "baseId": "16367", + "text": "Bardet-biedl syndrome 6/10, digenic" + }, + { + "baseId": "16367|17701|27182|27183|27184|27185|27186|27187|27188|34559|34586|44416|44420|101641|102025|102026|102100|102398|102540|106441|106442|106468|106472|131912|131913|131914|176959|177222|177250|177505|177507|177508|177510|177512|177514|186836|186838|190621|191287|191594|191848|192577|193731|207477|212952|214073|214074|221320|227345|237357|237445|241206|251316|251317|251321|251325|251327|251330|252807|252809|252810|252814|252816|254256|254260|254262|255348|255822|255825|268120|269617|270214|272301|272771|273557|292180|314715|314716|314717|314721|314722|314726|314729|314731|314739|314744|321437|321440|321441|321442|321450|321451|321452|321454|321459|321461|327571|327576|327581|327599|328643|328647|328656|328657|358031|358032|358033|358034|358035|358036|358037|358038|358039|358040|358041|358042|358043|358044|358045|358046|358047|358048|358049|371619|372535|390016|398348|398446|428273|429277|429278|429279|437899|453263|461402|512811|512824|512858|513096|546141|546143|546144|546146|546149|546150|546154|546160|546453|546459|546467|546475|546478|546583|546585|546589|546591|546594|546595|546597|546600|546798|546802|546808|546810|546820|551566|566095|612094|640363|640364|684267|687817|687818|687821|690011|690012|693098|695539|752844|791156|791157|801718|838813|838814|838818|838820|838822|838824|852623|857426|868333|868334|868335|868336|868337|868338|868339|868340|868341|868342|868343|868344|868345|868346|868347|868348|868349|868350|868351|868352|868353|868354|906256|906287|906288|926358|961007|969325|972103|972104|972105|972106|972107|972108|972109|972110|979058|979059|979060|979061|979062|979063|979064|979065|979066|979067|979068|979069", + "text": "Bardet-Biedl syndrome 1" + }, + { + "baseId": "16369", + "text": "Bardet-biedl syndrome 1/10, digenic" + }, + { + "baseId": "16372|16372|16372|16373|16374|16376|16376|16378|16378|16384|22927|71368|71372|71377|71378|102062|102066|105739|105741|106469|106470|106471|131783|131784|131789|131790|131794|131801|140430|140432|140433|152874|166166|177012|177012|177013|177143|177274|177571|177572|191726|193150|193874|193875|194245|194245|194246|195425|209353|214321|214322|214323|214324|214325|214325|214326|214327|214327|214328|214329|214330|214330|214331|214332|214333|214334|214335|214336|214337|214338|214339|214340|214341|215459|237416|241579|241580|241581|241582|254740|254742|254760|254761|254763|264538|265486|265486|265487|266616|268040|270185|271034|271034|274283|318575|318578|318583|318585|318587|318599|318602|318607|318610|326795|326802|326805|326809|326815|326818|326819|326830|326832|326833|326838|326844|326848|326850|326860|326862|326882|326888|332974|332976|332982|332983|332987|332988|332990|332993|332994|333001|333002|334647|334649|334653|334657|334658|334659|334671|334674|334680|334684|360055|360950|363660|364169|373481|375454|389204|408763|408772|408772|432311|433122|442556|462516|463244|488743|514649|527675|572093|576354|622900|622901|622902|641416|684357|688062|688063|688070|688072|760254|792790|840370|840371|840383|870494|870495|870496|870497|870498|870499|870500|870501|870502|870503|870504|870505|870506|870507|870508|870509|870510|870511|870512|870513|870514|870515|870516|870517|870518|870519|870520|872295|919469|919470|919471|919472|920320|962819|965740|970232|980946", + "text": "Joubert syndrome 5" + }, + { + "baseId": "16372|16376|16378|16384|16422|102062|102066|106469|106470|106471|131783|131784|131789|131790|131794|131801|131836|140430|140432|140433|152874|177012|177012|177013|177143|177274|177572|191726|193150|193874|193875|194245|194245|194246|195425|214280|214282|214322|214325|214327|214330|215459|237416|241579|241580|241581|241582|254740|254742|254761|254763|265486|265486|265487|266616|268040|270185|271034|271034|318575|318578|318583|318585|318587|318599|318602|318607|318610|326795|326802|326805|326809|326815|326818|326819|326830|326832|326833|326838|326844|326848|326850|326860|326862|326882|326888|332974|332976|332982|332983|332987|332988|332990|332993|332994|333001|333002|334647|334649|334653|334657|334658|334659|334671|334674|334680|334684|360055|363660|364169|373481|375454|408763|408772|408772|433122|462516|463244|489341|513323|514649|527675|572093|684357|688062|688063|688070|688072|760254|792790|840370|840383|870494|870495|870496|870497|870498|870499|870500|870501|870502|870503|870504|870505|870506|870507|870508|870509|870510|870511|870512|870513|870514|870515|870516|870517|870518|870519|870520|872295", + "text": "Bardet-Biedl syndrome 14" + }, + { + "baseId": "16372|16372|16376|16378|16379|16380|16381|16383|71368|71369|71370|71371|71372|71373|71374|71375|71376|71377|71378|71379|102062|102066|106469|106470|106471|131783|131784|131789|131790|131794|131801|140430|140432|140433|152874|177012|177012|177013|177143|177274|177572|191726|193150|193874|193875|194245|194245|194246|195425|209353|214325|214327|214330|214330|214337|214339|215459|237416|241579|241580|241581|241582|254740|254742|254761|254763|260915|265486|265486|265487|266616|268040|270185|271034|271034|318575|318578|318583|318585|318587|318599|318602|318607|318610|326795|326802|326805|326809|326815|326818|326819|326830|326832|326833|326838|326844|326848|326850|326860|326862|326882|326888|332974|332976|332982|332983|332987|332988|332990|332993|332994|333001|333002|334647|334649|334653|334657|334658|334659|334671|334674|334680|334684|363660|364169|373481|375454|408763|408772|408772|433122|462516|463244|514649|527675|536196|572093|609863|672202|672203|684357|688062|688063|688070|688072|760254|792790|840370|840383|870494|870495|870496|870497|870498|870499|870500|870501|870502|870503|870504|870505|870506|870507|870508|870509|870510|870511|870512|870513|870514|870515|870516|870517|870518|870519|870520|872295|948198|971593|971594", + "text": "Meckel syndrome, type 4" + }, + { + "baseId": "16372|16372|16375|16376|16378|16378|102062|102066|106469|106470|106471|131783|131784|131789|131790|131794|131801|140430|140432|140433|152874|177012|177012|177013|177143|177274|177572|191726|193150|193874|193875|194245|194245|194246|195425|209353|214322|214325|214327|214330|215459|237416|241579|241580|241581|241582|254740|254742|254761|254763|265486|265486|265487|266616|268040|270185|271034|271034|318575|318578|318583|318585|318587|318599|318602|318607|318610|326795|326802|326805|326809|326815|326818|326819|326830|326832|326833|326838|326844|326848|326850|326860|326862|326882|326888|332974|332976|332982|332983|332987|332988|332990|332993|332994|333001|333002|334647|334649|334653|334657|334658|334659|334671|334674|334680|334684|363660|364169|373481|375454|408763|408772|408772|433122|462516|463244|514649|527675|572093|684357|688062|688063|688070|688072|760254|792790|840370|840383|870494|870495|870496|870497|870498|870499|870500|870501|870502|870503|870504|870505|870506|870507|870508|870509|870510|870511|870512|870513|870514|870515|870516|870517|870518|870519|870520|872295", + "text": "Senior-Loken syndrome 6" + }, + { + "baseId": "16372|16376|16376|16377|16378|16378|16379|16382|102062|102066|106469|106470|106471|131783|131784|131789|131790|131794|131801|140430|140432|140433|152874|166158|166159|166166|166167|177012|177012|177013|177143|177274|177572|191726|193150|193874|193875|194245|194245|194246|195425|209353|214325|214327|214330|215459|237416|241579|241580|241581|241582|254740|254742|254761|254763|265486|265486|265487|266616|268040|270185|271034|271034|318575|318578|318583|318585|318587|318599|318602|318607|318610|326795|326802|326805|326809|326815|326818|326819|326830|326832|326833|326838|326844|326848|326850|326860|326862|326882|326888|332974|332976|332982|332983|332987|332988|332990|332993|332994|333001|333002|334647|334649|334653|334657|334658|334659|334671|334674|334680|334684|363660|364169|373481|375454|408763|408772|408772|433122|445093|462516|463244|514649|527675|551568|572093|684357|688062|688063|688070|688072|760254|792790|802180|818301|840370|840383|870494|870495|870496|870497|870498|870499|870500|870501|870502|870503|870504|870505|870506|870507|870508|870509|870510|870511|870512|870513|870514|870515|870516|870517|870518|870519|870520|872295", + "text": "Leber congenital amaurosis 10" + }, + { + "baseId": "16378|360950", + "text": "Molar tooth sign on MRI" + }, + { + "baseId": "16378|360941|360950", + "text": "Central hypotonia" + }, + { + "baseId": "16378|16432|18513|18846|45840|105416|243993|260323|267852|360901|360950|361027|361067|361069|361097|361107|496932|513979|514086|514138|568036|624881|792733|800988|822308", + "text": "Nystagmus" + }, + { + "baseId": "16378|17397|105349|181401|214327|263309|270311|360950|361108|513929", + "text": "Blindness" + }, + { + "baseId": "16381|25032|45818|683339|966695|966696|966699|966722|966733|966734|966735", + "text": "Severe hydrocephalus" + }, + { + "baseId": "16381|17203|19147|19147|102335|186709|186713|186713|186718|221366|255586|360861|360862|360862|360863|360880|360881|360987|360990|360991|360992|360993|417656|427500|439930|513954|514054|514055|514056|514058|514059|514085|514102|551414|551415|611473|624327|683810|686889|816408|816410|861051|861509|861524|906257|965434|965435|965436|965437|966705|966706|966722|976700", + "text": "Polycystic kidney disease" + }, + { + "baseId": "16381|683339|966699|966705|966706|966707|966708|966722", + "text": "Encephalocele" + }, + { + "baseId": "16385", + "text": "Caudal regression syndrome" + }, + { + "baseId": "16386|16387|23220|24091|24092|40597|40598|40599|181532|181533|181536", + "text": "Neural tube defects, susceptibility to" + }, + { + "baseId": "16388|48153|48154|48155|48156|48156|48157|249387|249388|249389|249390|249391|249392|276354|276355|276360|276362|276363|276366|276368|276369|276372|276375|276377|276387|276580|276583|276584|276586|276592|276592|276594|276595|276596|276611|276612|276615|277052|277063|277065|277066|277069|277072|277079|277083|277093|277096|277105|277110|277118|277124|277125|277126|277127|277153|277154|277155|277171|277172|277174|277175|277176|277181|277183|277184|277186|277197|277198|277199|277201|277203|277206|277207|277224|277227|277233|586023|614182|614183|614184|614185|614186|614186|619951|620705|622300|718192|731704|745669|816300|862206|862207|862208|862209|862210|862211|862212|862213|862214|862215|862216|862217|862218|862219|862220|862221|862222|862223|862224|862225|862226|862227|862228|862229|862230|862231|862232|862233|862234|862235|862236|862237|862238|862239|862240|862241|862242|862243|862244|862245|862246|862247|862248|862249|862250|862251|862252|864974|864975|864976|864977|980433", + "text": "Ectopia lentis 2, isolated, autosomal recessive" + }, + { + "baseId": "16389|16390|16391|16392", + "text": "Autoimmune disease 6" + }, + { + "baseId": "16393|134067|208545|208553|208555|208558|230984|580481|622451|816491|919832|919833|971119|972798", + "text": "Mental retardation, autosomal recessive 3" + }, + { + "baseId": "16394|16395|16396|16397|16398|16399|133792|133793|215335|227703|237193|237246|237311|268309|268444|268563|268564|268779|268833|268955|270020|270927|271115|271327|272063|272940|273656|299657|299661|299663|299665|299666|299668|299673|299675|299683|299684|299688|299690|299696|299698|299711|299712|299715|299716|299719|302257|302263|302268|302273|302277|302278|302282|302283|302291|302300|302302|302303|302311|306654|306656|306663|306666|306667|306674|306683|306687|306688|306692|306694|306695|306705|306706|306718|306719|306720|306721|306730|306732|306955|306957|306964|306965|306966|306968|306970|306971|306972|306974|306976|306977|306978|306980|306994|307008|363666|368543|368544|370313|415038|428605|443937|455467|455476|455478|455479|455482|455483|455561|455572|455574|455579|455580|456071|456087|456089|456092|456305|456311|456312|456314|456317|456322|490849|511649|521512|521514|521520|521522|521526|521530|521536|521537|521811|521817|521818|521820|521822|521888|521891|522189|522190|522196|522197|522200|522205|522210|522212|522218|560513|560670|560672|560674|560676|560751|560753|563491|563500|563504|565248|565538|565539|565542|578445|586561|634785|634786|634787|634788|634789|634790|634791|634792|634793|634794|634795|634796|634797|634798|634799|634800|634801|634802|699478|710357|710358|735555|735556|735557|735558|765603|765607|765608|782500|782501|782502|787377|790607|792759|831762|831763|831764|831765|831766|831767|831768|831769|831770|831771|831772|831773|831774|831775|831776|831777|831778|831779|831780|831781|831782|831783|831784|831785|831786|851068|895680|895681|895682|895683|895684|895685|895686|895687|895688|895689|895690|895691|895692|895693|895694|895695|895696|895697|895698|895699|895700|895701|895702|895703|895704|895705|895706|895707|895708|895709|895710|895711|895712|895713|895714|895715|895716|895717|895718|895719|895720|896215|924309|924310|924311|924312|924313|924314|933256|933257|933258|933259|933260|933261|933262|933263|933264|933265|944954|944955|944956|944957|944958|944959|944960|944961|954406|954407|959801|972789|980897", + "text": "Succinate-semialdehyde dehydrogenase deficiency" + }, + { + "baseId": "16400|16401|16402|280525|280526|280531|280532|280539|280540|280544|280545|280546|280962|280983|280987|281001|281005|281006|281010|281011|282281|282282|282283|282284|282288|282307|282498|282499|282515|282526|282535|282537|282543|282544|282550|539120|539121|551674|823965|864383|864384|864385|864386|864387|864388|864389|864390|864391|864392|864393|864394|864395|864396|864397|864398|864399|864400|864401|864402|864403|864404|864405|864406|864407|864408|864409|864410|864411|864412|864413|918532|962667", + "text": "Hypomagnesemia 5, renal, with ocular involvement" + }, + { + "baseId": "16403", + "text": "Prostate cancer, hereditary, 12" + }, + { + "baseId": "16404|16405|16406|16408|16409|16412|16415|16416|16417|16422|70570|71401|71402|71403|71404|71405|71406|71407|71408|71409|71410|71411|71412|71413|71414|71415|71416|71417|71418|71419|71421|71422|71423|71426|71427|71428|102422|102423|131831|131833|131834|131836|131839|212651|214280|214282|214287|243906|253194|253195|253203|253209|253212|253213|270862|306007|306009|306010|306015|306017|306035|310036|310037|310038|310039|315373|315374|315375|315376|315377|315516|315517|315527|315531|315532|315535|315541|444309|489341|552127|637489|672205|900150|900151|900152|900153|900154|900155|900156|900157|900518|900519|900541|900542|900543|900544|900545|900546|900547|900548|900549|903276|903277|961004|970888", + "text": "Meckel syndrome, type 3" + }, + { + "baseId": "16407|16410|16411|16412|16413|16414|16415|16416|16417|16418|16420|16421|16422|16422|16424|16425|16426|39765|71401|71412|71422|71426|102422|102423|131833|131834|131836|207574|212651|212652|214270|214271|214272|214273|214274|214275|214276|214277|214278|214279|214280|214280|214281|214282|214282|214283|214284|214285|214286|214287|214288|214289|214290|214291|214292|214293|214294|227327|243906|253194|253195|253203|253209|253212|253213|270862|306007|306009|306010|306015|306017|306035|310036|310037|310038|310039|315373|315374|315375|315376|315377|315516|315517|315527|315531|315532|315535|315541|370404|444309|486823|486834|486835|489341|511772|623148|637489|680065|802166|900150|900151|900152|900153|900154|900155|900156|900157|900518|900519|900541|900542|900543|900544|900545|900546|900547|900548|900549|903276|903277|906253", + "text": "Joubert syndrome 6" + }, + { + "baseId": "16415|16422|71401|71422|620309", + "text": "TMEM67-Related Disorders" + }, + { + "baseId": "16415|16416|16422|444309|583167|919176|919177|920257", + "text": "RHYNS syndrome" + }, + { + "baseId": "16416", + "text": "Bardet-Biedl syndrome 14, modifier of" + }, + { + "baseId": "16416|16421|16422|16422|16423|16424|102422|102423|131833|131834|131836|212651|214280|214282|214287|221800|243906|253194|253195|253203|253209|253212|253213|270862|306007|306009|306010|306015|306017|306035|310036|310037|310038|310039|315373|315374|315375|315376|315377|315516|315517|315527|315531|315532|315535|315541|444309|489341|637489|900150|900151|900152|900153|900154|900155|900156|900157|900518|900519|900541|900542|900543|900544|900545|900546|900547|900548|900549|903276|903277|962718|962719", + "text": "Nephronophthisis 11" + }, + { + "baseId": "16422|186713|214282|360844|360880|360915|360988|360994|971020", + "text": "Renal cyst" + }, + { + "baseId": "16422|19147|214282|360881", + "text": "Oligohydramnios" + }, + { + "baseId": "16422|17315|31366|31371|31377|31378|31379|32405|32434|32501|32502|53428|76763|192309|214282|215768|226497|263204|263208|263226|263258|263278|263301|263313|263402|263406|325021|361089|407722|453069|511532|514190|536665|590060|590063|590095|679598|679599", + "text": "14 conditions" + }, + { + "baseId": "16428|16429|16429|16430|16430|16431|16431|16432|71252|71253|71254|71256|71257|71258|71258|71259|71261|71262|71263|71263|71264|71264|71266|71266|131803|131804|131806|181163|181164|186262|186263|191265|191933|192033|193638|196045|208403|208405|208405|214363|214364|214364|214367|214367|222686|222686|222687|237090|237473|237473|242824|242825|242825|256280|256281|256283|256284|256285|256287|256288|256290|256292|260473|265360|265781|265781|265876|271121|271440|271734|272946|275520|329155|329156|329157|329161|339301|339303|339303|345175|345176|345181|345182|346571|346573|346576|346576|346578|346579|346580|346583|346584|346586|358457|358458|429991|429994|438996|438996|445833|468480|493136|536949|536950|548215|548216|548218|548253|548261|548273|548279|548558|548563|548566|548568|548571|548577|548579|548579|548992|548999|549000|549001|549004|549005|585568|588985|646234|688796|688799|688802|690181|845657|845660|852892|877946|877947|877948|877949|877950|877951|877952|877953|877954|877955|877956|877957|877958|880551|880552|880553|880554|906269|938039|979913", + "text": "Meckel syndrome type 1" + }, + { + "baseId": "16429|16430|16431|16431|16432|16432|16433|71256|71258|71263|71264|131803|131804|131806|181163|181163|181164|186263|191265|191933|192033|193638|208403|208405|214363|214364|214364|214367|214367|222686|222687|237090|237473|237473|242824|242825|242825|256280|256281|256283|256284|256285|256288|256290|256292|265360|265781|271121|329155|329156|329157|329161|339301|339303|339303|345175|345176|345181|345182|346571|346573|346576|346576|346578|346579|346580|346583|346584|346586|358457|358458|429994|438996|438996|490946|548215|548216|548218|548253|548261|548273|548279|548558|548563|548566|548568|548571|548577|548579|548992|548999|549000|549001|549004|549005|588985|688796|688799|877946|877947|877948|877949|877950|877951|877952|877953|877954|877955|877956|877957|877958|880551|880552|880553|880554", + "text": "Bardet-Biedl syndrome 13" + }, + { + "baseId": "16429|16430|16431|16432|71256|71258|71263|71264|131803|181163|186262|186263|191265|208405|214363|214364|214364|214367|222686|222687|237090|237473|242825|249226|249228|256280|256281|256284|256288|265781|339303|346576|346583|358457|358458|438996|548215|548216|548218|548253|548261|548273|548279|548558|548563|548566|548568|548571|548577|548579|548992|548999|549000|549001|549004|549005", + "text": "Joubert syndrome 28" + }, + { + "baseId": "16432|40348|137063|137064|137065|178412|178416|181434|181447|209338|226495|226500|226502|243981|243988|263200|263231|263248|263249|263252|263254|263255|263262|263323|263332|263335|263388|263782|263783|264319|360955|361130|406053|408757|415099|417657|514041|514086|514182|514185|514194|514210|551445|581716|583203|583204|677223|682488|961915|961916|961917|969264|969266", + "text": "Muscular hypotonia" + }, + { + "baseId": "16432|28860|46777|70943|141188|141189|191624|191625|191626|207480|214364|236899|252842|252844|252845|252846|252847|252848|252849|252850|252854|252855|252856|252860|252864|252866|252868|252873|252874|252875|252876|252880|252881|259861|259864|263337|267367|268321|268762|269149|272221|273308|302938|302939|302940|302941|302943|302944|302947|302952|302961|302966|302968|302970|302973|302977|302978|302982|302983|302990|302992|302994|303006|303007|303011|303020|303022|303024|303026|303029|303033|303034|303040|303041|303046|303047|303048|303049|303053|306259|306260|306264|306265|306266|306267|306268|306269|306271|306272|306273|306274|306275|306276|306287|306290|306294|310985|310988|310989|311012|311032|311033|311042|311058|311061|311068|311070|311071|311099|311107|311108|311109|311112|311114|311133|311135|311142|311143|311146|311148|311149|311156|311157|311164|311245|311246|311248|311252|311257|311259|311260|311261|311262|311264|311265|311266|311267|311268|311269|311272|311274|311277|311278|311279|311280|311282|311283|311284|311285|311286|311287|311288|311289|311290|311295|353817|353818|502039|514086|540582|692239|700067|700070|898063|898064|898065|898066|898067|898068|898069|898070|898071|898072|898073|898074|898075|898076|898077|898078|898079|898080|898081|898082|898083|898084|898085|898086|898087|898088|898089|898090|898091|898092|898093|898094|898095|898096|898097|898098|898099|898100|898101|898102|898103|898104|898105|898106|898107|900361|900362|900363|900364|966707|966708", + "text": "Polydactyly" + }, + { + "baseId": "16434|16435|16436|16437|39761|39762|39763|101803|101804|177411|187123|191269|194996|194997|195392|270912|271103|273548|321680|321683|321684|321685|321689|321692|330943|330945|330948|337642|337643|337647|337650|337655|337659|337663|337680|337685|339718|339720|339721|339725|339729|339734|409162|409163|482057|489407|528852|551577|703007|714258|725846|778113|820659|841879|841880|841881|841882|841883|841884|841885|841886|841887|841888|841889|841890|841891|841892|841893|872852|872853|872854|872855|872856|872857|872858|872859|872860|872861|872862|872863|872864|872865|876462|920338|927192|936759|936760|940317|948713|948714|948715|948716|948717|957330|957331|957332|966101|966102|966103|966106|966107|966108|966145", + "text": "Leber congenital amaurosis 3" + }, + { + "baseId": "16434|39763|620496", + "text": "SPATA7-Related Disorders" + }, + { + "baseId": "16438|16439|16440|16441|16442|16443|16444|16445|16446|16447|16448|16449|39759|237221|257668|257669|257670|257671|257672|257673|257674|257675|257676|257677|257678|338084|338088|338089|338093|338098|338099|338101|338109|347720|347723|347724|347726|347735|347736|351565|351568|351569|351572|351573|351576|351577|351581|351582|351584|352528|352529|352530|352531|352532|352533|352534|352535|352536|352537|352538|352539|352540|352541|352542|353608|514211|608921|615947|620689|620690|717433|778648|891241|891242|891243|891244|891245|891246|891247|891248|891249|891250|891251|891252|891253|891254|891255|891256|891257|891258|891259|891260|891261|891262|891263|891264|891265|891266|891267|891268|891269|891270|891271|891272|891273|891274|891275|891276|891277|891278|891279|891280|891281|891831|891832|905733|905735", + "text": "Microcytic anemia" + }, + { + "baseId": "16450|289538|289543|289546|289548|289553|289560|290312|290314|290316|290318|290319|290323|290325|290326|290327|293394|293395|293397|293398|293400|293409|293410|293860|293861|293862|293864|293866|620761|697935|708688|888416|888417|888418|888419|888420|888421|888422|888423|888424|888425|888426|888427|888428|888429|888430|888431|891620|891621", + "text": "Globozoospermia" + }, + { + "baseId": "16451|16452|16453|16454|16455|16456|16457|16458|259752|289305|289313|289316|289317|289325|289326|289334|289336|289341|289348|289355|289359|289363|289367|289368|289369|289374|289381|289383|289384|289396|289399|289400|289410|289413|289414|289416|290096|290105|290113|290117|290125|290130|290131|290144|290152|290154|290158|290167|290169|290170|290171|290172|290175|290181|290195|293187|293188|293189|293196|293209|293210|293228|293241|293245|293246|293248|293249|293250|293251|293260|293264|293267|293278|293656|293657|293659|293662|293663|293664|293668|293669|293670|293672|293673|293681|293682|293683|293693|293695|293696|293699|293706|293709|363835|406140|439201|496339|620116|620117|720286|790356|888294|888295|888296|888297|888298|888299|888300|888301|888302|888303|888304|888305|888306|888307|888308|888309|888310|888311|888312|888313|888314|888315|888316|888317|888318|888319|888320|888321|888322|888323|888324|888325|888326|888327|888328|888329|888330|888331|888332|888333|888334|888335|888336|888337|888338|888339|891602|891603|891604|891605|891606|891607|891608|891609|891610|891611|891612|891613|891614|973018", + "text": "Sucrase-isomaltase deficiency" + }, + { + "baseId": "16459", + "text": "Skin/hair/eye pigmentation, variation in, 6" + }, + { + "baseId": "16460|16461|16462|16463|16464|39757|77870|101600|101601|101602|101603|101604|141941|141942|170961|170962|170963|194467|199944|199945|199946|199947|199948|199949|199950|199951|199952|199953|199954|199956|204443|265244|272481|280700|280701|281166|282449|282450|282737|282747|282748|282752|365277|365337|365372|404748|404749|432280|433696|433698|448353|448355|481595|486859|486903|492708|498713|515996|516019|541098|541100|541102|541103|541114|541116|541119|541122|541132|541135|541138|541141|541146|541161|541167|541169|541170|541172|541175|541176|541185|541206|541208|541212|541216|541219|541222|541225|541228|541232|541234|541236|541237|541240|541241|541242|541244|541245|541246|541247|541252|541253|541256|541259|541261|541263|541265|541267|541269|541276|541278|541281|557089|557314|557316|557367|622036|628114|690627|690628|690629|690630|696774|696775|696776|746529|746530|761986|761989|761990|780716|780717|780720|801593|801594|801595|801596|801597|801598|801599|805136|818977|818978|818979|824199|824200|824201|824202|850777|851313|905868|922107|922108|922109|930582|942016|942017|952456|961750|964801|966757|980905", + "text": "Cobalamin C disease" + }, + { + "baseId": "16460|22068|29317|101599|141941|141942|141985|141986|141987|141988|141989|141990|141991|141992|141993|141994|141995|141996|141997|141999|142000|142002|142003|142004|142005|142006|142007|142008|142009|196160|199943|199945|199947|199952|199954|199983|199984|199985|200103|200104|200105|204443|215216|227302|249967|270084|279775|279781|279782|279783|279787|279799|279800|279801|279804|279805|279806|279810|279813|279817|279818|279822|279824|279826|279833|279835|279844|279845|279848|279852|279853|279859|279864|279866|279875|279877|279881|279883|279887|279889|279894|279899|279901|279902|279903|279907|279914|279917|279920|279921|279922|279930|279931|279936|280095|280096|280110|280113|280114|280115|280118|280120|280121|280122|280124|280127|280140|280142|280148|280150|280151|280152|280154|280162|280180|280184|280190|280196|280197|280202|280205|280206|280208|280210|280230|280233|280235|280240|280241|280245|280256|280259|280260|280695|280700|280701|280707|280713|280714|280720|280721|280728|280729|280734|280736|280740|280742|280743|281165|281166|281167|281172|281179|281180|281183|281184|281185|281199|281200|281202|281204|281386|281387|281403|281405|281406|281407|281419|281420|281424|281427|281428|281437|281438|281439|281443|281445|281447|281458|281459|281463|281465|281467|281468|281469|281472|281479|281480|281481|281483|281484|281487|281489|281490|281500|281501|281512|281517|281528|281530|281541|281542|281563|281566|281567|281568|281576|281579|281581|281582|281585|281587|281635|281636|281637|281639|281642|281644|281652|281653|281657|281659|281662|281671|281673|281674|281675|281683|281701|281703|281705|281706|281707|281709|281714|281716|281719|281728|281729|282028|282035|282037|282047|282049|282051|282052|282448|282449|282450|282452|282455|282456|282457|282475|282476|282478|282481|282487|282488|282489|282710|282712|282718|282719|282720|282722|282730|282731|282732|282733|282737|282747|282748|282752|282754|282755|282756|282767|282771|282786|282787|284333|284334|284337|284556|284557|284564|284565|284566|298104|298105|298108|298109|298114|298161|298186|298199|298203|298206|298207|298209|300395|300403|300406|300452|300462|300466|300502|300511|300515|300516|300517|300519|300925|300934|300939|303874|303892|304678|304679|304681|304721|304722|304723|304727|304780|304782|304976|304981|304982|304985|304986|305029|305039|305041|305043|305045|308536|363942|364968|365003|365008|365441|368255|368260|368547|368554|368719|369947|425347|433709|455965|486859|498247|498255|498448|498494|498713|515703|541281|558389|560494|619993|620032|620200|620716|620717|620784|627537|690627|690749|691880|707239|765216|864013|864014|864015|864016|864017|864018|864019|864020|864021|864022|864023|864024|864025|864026|864027|864028|864029|864030|864031|864032|864033|864034|864035|864036|864037|864038|864039|864040|864041|864042|864043|864044|864045|864046|864047|864048|864049|864050|864051|864052|864053|864054|864055|864056|864057|864058|864059|864060|864061|864062|864063|864064|864065|864066|864067|864068|864069|864070|864071|864072|864073|864074|864075|864076|864077|864078|864079|864080|864081|864082|864083|864084|864508|864509|864510|864511|864512|864513|864514|864515|864516|864517|864518|864519|864520|864521|864522|864523|864524|864525|864526|864527|864528|864529|864530|864531|865150|865151|865152|881123|881124|881125|881126|882805|882806|894702|894703|894704|894705|894706|894707|894708|894743|894747|894748|894749|894750|894751|894752|894753|894754|894757|894758|894759|894760|894761|894762|894763|894764|894765|894766|894767|894768|894769|894770|894771|894772|894773|896138", + "text": "Disorders of Intracellular Cobalamin Metabolism" + }, + { + "baseId": "16460|486708|486709|486714|486715", + "text": "METHYLMALONIC ACIDURIA AND HOMOCYSTINURIA, cblC TYPE, DIGENIC" + }, + { + "baseId": "16460|16462|16463|16464|39757|101600|101601|101602|101603|101604|194467|199944|199945|199946|199947|199948|199951|199952|199953|265244|280700|282450|282737|282748|282752|365277|365372|448353|481595|486903|498500|541098|541135|541138|541228|541244|541246|541281|557367|690627|690630|696775|746529|761986|761989|761990|780717|780720|801598|864510", + "text": "Methylmalonic aciduria with homocystinuria cblC type" + }, + { + "baseId": "16462|16464|16916|16917|16919|16920|16921|16923|16925|16926|16927|98587|98588|98589|98590|98591|98592|98594|98595|106562|106572|177367|193400|200109|200110|200111|200112|200114|200115|200116|200117|200121|200122|200123|200124|200126|216037|216038|216039|216040|216041|216042|216043|216044|216045|216046|216047|216048|216049|216050|216051|216052|216053|216054|224618|224619|224620|224621|224622|224623|224624|224625|224626|224627|224628|224629|224630|224631|224632|224633|224634|224635|224636|224637|224638|224639|224640|224641|224642|224643|224644|224645|224646|224647|224648|224649|224650|224651|224652|224653|224654|224655|224656|224657|224658|227101|227102|236987|268472|272964|274267|274558|300512|300513|300522|300524|303372|303374|303377|303378|303384|303385|303387|303389|303391|307916|307925|307927|307928|307940|307942|307943|307952|307953|308058|308066|308067|308073|308080|308083|361113|361114|368676|370483|406880|406882|406883|415053|415056|438323|439145|443970|455818|455819|456214|481422|481423|487143|487201|490207|502013|512823|513283|513284|513569|521632|521676|522000|522002|522062|543667|543675|543688|543689|543691|543694|543707|543717|543721|543729|543738|543968|543976|543985|543991|543994|543997|543999|544001|544007|544008|544012|544014|544016|544017|544018|544019|544021|544023|544024|544025|544026|544041|544043|544047|544049|544052|544057|544058|544064|544065|544066|544068|544125|544133|544134|544137|544140|544141|544144|544145|544153|544154|560734|560736|560738|563617|565693|565694|581755|581756|581776|582291|620792|634938|634939|634940|634941|634942|634943|634944|634945|634946|634947|651553|651561|679751|699613|722064|722065|735698|744217|765711|765712|765714|765715|765716|765719|790636|790637|790638|798576|818250|819693|831990|831991|831992|831993|831994|831995|831996|831997|852278|896561|896562|896563|896564|896565|896566|896567|896568|896569|896570|896571|896572|896573|896574|896575|896576|896577|896578|896579|896580|896581|896582|896583|896584|903545|924365|924366|933345|933346|933347|933348|940845|945046|945047|945048|945049|954473|954474|954475|954477|954478|954479|954480|961775|961776|961787|966758|966759|966760|966761|966762|966763|966764|966765|966766|966767|966768|966769|966770|966771|966772|966773|970218|970219|971953|971954|971955|971956|971957|971958|971959|971960|971961|971962|971963|971964|971965|971966|971967|980329|980923", + "text": "Methylmalonic aciduria due to methylmalonyl-CoA mutase deficiency" + }, + { + "baseId": "16462", + "text": "cblC type of combined methylmalonic aciduria and homocystinuria" + }, + { + "baseId": "16465|16466|16467|16468|16469|16470|16471|16472|16473|16474|191441|191442|195771|265451|269096|384486|432302|437700|437701|437702|437703|437704|438959|513078|513079|790875|818267|818268|818269|818270|818271|818272|835948|919211", + "text": "Autosomal recessive hypophosphatemic bone disease" + }, + { + "baseId": "16468|438959", + "text": "Hypophosphatemic rickets with hypercalciuria" + }, + { + "baseId": "16475|16477|16478|16479|134277|134278|134279|140681|211104|362100|513055|581745|581746|581747|581753|581762|798548|802153|818234|918198", + "text": "Coenzyme Q10 deficiency, primary 1" + }, + { + "baseId": "16475|16477|16478|16479|75117|75119|142389|211447|295996|298511|299717|305208|305215|305397|321198|321757|335546|342017|343530|362100|362101|362102|620176", + "text": "Coenzyme Q10 deficiency, primary" + }, + { + "baseId": "16480|16483|16520|16521|16523", + "text": "Porphyria, acute intermittent, nonerythroid variant" + }, + { + "baseId": "16481|16482|16484|16485|16486|16487|16488|16489|16490|16491|16492|16493|16494|16495|16496|16497|16498|16499|16500|16501|16502|16503|16504|16505|16506|16507|16508|16509|16510|16511|16512|16513|16514|16515|16516|16517|16518|16519|16522|16524|16525|99631|171128|171129|171130|171131|171132|177396|254014|254015|254016|312560|312568|318548|324646|324649|324652|324664|324667|324668|324675|324687|325412|325413|325419|325424|325425|325428|325432|325433|325434|353169|359912|360926|361868|444737|444738|444739|503169|513190|540142|609296|639780|639782|677433|682125|724240|867120|867121|867122|867123|867124|867125|867126|867127|867128|904069|919323|920294|935409", + "text": "Acute intermittent porphyria" + }, + { + "baseId": "16526|75132|615964", + "text": "Skin/hair/eye pigmentation, variation in, 4" + }, + { + "baseId": "16527|191732|195791|195791|222561|242616|242617|256108|256109|327902|327906|327910|327911|327915|327919|327921|337719|337723|337725|337729|337736|337738|337743|343939|343941|343945|343950|343953|343957|343958|345397|345400|345402|345410|345413|345417|402077|467207|467210|467385|483114|530653|530655|530659|530813|530910|530912|570830|570914|584316|610470|620577|620578|620579|645429|645430|645431|684666|688752|688754|688755|844837|844838|844839|851697|877092|877093|877094|877095|877096|877097|877098|877099|877100|877101|877102|877103|877104|877105|877106|877107|877108|877109|877110|877111|877112|877113|877114|877115|877116|880491|880492|928091|928092|937759|958017|958018|958019|958020", + "text": "Nephronophthisis 9" + }, + { + "baseId": "16528|424690|858306|858792|918181", + "text": "Hermansky-Pudlak syndrome 8" + }, + { + "baseId": "16529|16530|16531|16532|16533|16534|16535|16536|165838|176306|176411|176412|176426|195608|227416|231209|231217|270035|270996|271877|275023|389254|389255|443697|486666|508414|513668|538499|553273|614609|614610|615831|615832|615833|615834|626285|758085|800188|800189|816496|919952", + "text": "Deafness, autosomal recessive 28" + }, + { + "baseId": "16537|16538|16539|16540|16541|16542|16543|205187|213647|237439|256457|256458|256459|256460|330042|330047|330049|330052|330060|330062|330066|330067|330073|330079|330080|330081|330085|330087|330091|330093|330102|330104|330105|330106|330119|330121|330129|330134|330135|330138|330144|340265|340268|340271|340273|340275|340277|340278|340283|340285|340290|340293|340295|340301|340302|340304|340309|340317|340318|340320|340325|340326|340330|340331|340334|340335|340343|346021|346029|346030|346036|346038|346040|346041|346042|346043|346044|346046|346047|346050|346054|346055|346060|346061|346062|346064|346065|346071|346072|346074|346075|346077|346078|346079|346080|347330|347331|347336|347338|347341|347342|347345|347349|347350|347357|347358|347360|347362|347364|347365|347369|347371|347372|347373|347376|347378|347380|347381|347384|438965|538470|568672|569757|571606|646722|715717|715718|715719|715720|727451|727452|727453|741047|741048|741050|741051|756144|756145|756147|756148|756149|771849|771850|771851|771852|776400|776401|785750|785752|788184|792810|821157|821158|846244|846245|846246|852793|878530|878531|878532|878533|878534|878535|878536|878537|878538|878539|878540|878541|878542|878543|878544|878545|878546|878547|878548|878549|878550|878551|878552|878553|878554|878555|878556|878557|878558|878559|878560|878561|878562|878563|878564|878565|878566|878567|878568|878569|878570|878571|878572|878573|878574|878575|878576|878577|878578|878579|878580|878581|878582|878583|878584|878585|878586|878587|878588|880599|880600|880601|880602|940439|962053|965605|965656|979923|979924|979925", + "text": "Peroxisomal acyl-CoA oxidase deficiency" + }, + { + "baseId": "16544|16545|16546|16548|16549|16550|16552|16552|16553|16554|16555|16556|16557|227202|237092|237092|249415|249416|263974|263974|276575|276576|276577|276589|276590|276835|276838|276844|276845|276846|276864|276865|276866|276870|276872|277385|277387|277390|277393|277397|277406|277412|277425|277493|277496|277500|277507|277515|277531|277533|277534|277535|277536|442635|513235|578365|614553|619954|619955|619956|696141|789854|804879|862398|862399|862400|862401|862402|862403|862404|862405|862406|862407|862408|862409|862410|862411|862412|862413|862414|862415|862416|862417|862418|864989|864990|864991|864992|864993|864994|970662", + "text": "Pyruvate kinase deficiency of red cells" + }, + { + "baseId": "16551|16552|16552|237092|263974|442635", + "text": "Adenosine triphosphate, elevated, of erythrocytes" + }, + { + "baseId": "16558|16559|16560|16561|16561|16562|16563|16564|16565|16566|16567|16568|16569|16570|16571|16572|16573|16574|16575|16576|16577|16578|16579|16580|16581|16582|16583|16584|16585|16586|16587|16589|16590|16591|16592|16593|16595|16596|16597|48634|167953|167957|228248|228249|304769|304770|304771|304779|304781|304784|304786|308436|308437|308438|308439|308441|308445|308447|308451|308459|308469|308479|308485|308491|308493|308496|308498|308517|308525|313559|313561|313563|313575|313598|313599|313600|313602|313603|313605|313609|313610|313618|313650|313651|313655|313656|313657|313660|313664|313668|313670|313671|313672|313676|313677|313690|313699|313703|313721|313722|313723|487330|487375|487383|513294|514566|620297|722988|722989|736574|751056|751057|751059|766711|766712|766713|766714|766722|783066|783071|899228|899229|899230|899231|899232|899233|899234|899235|899236|899237|899238|899239|899240|899241|899242|899243|899244|899245|899246|899247|899248|899249|899250|899251|899252|899253|899254|899255|899256|899257|899258|899259|899260|899261|899262|899263|900464|961855|961856|966454|967100|978461|978462|978463|978464", + "text": "Hyperlipoproteinemia, type I" + }, + { + "baseId": "16561|16561|16566|16568|16569|16579|16589|411513|511752|970879", + "text": "Hyperlipidemia, familial combined, LPL related" + }, + { + "baseId": "16573", + "text": "LIPOPROTEIN LIPASE POLYMORPHISM" + }, + { + "baseId": "16577", + "text": "Lpl-arita" + }, + { + "baseId": "16588|16589|16591|16594|27333|27334", + "text": "Hyperlipidemia, familial combined, susceptibility to" + }, + { + "baseId": "16591|32943|143193|143194|143195", + "text": "Coronary heart disease" + }, + { + "baseId": "16595", + "text": "LIPOPROTEIN LIPASE (OLBIA)" + }, + { + "baseId": "16598|48634", + "text": "High density lipoprotein cholesterol level quantitative trait locus 11" + }, + { + "baseId": "16599|16599|16600|16600|16601|16601|16602|16602|16603|16603|16604|16604|16605|16605|16606|16606|16607|16608|16609|16610|16610|16611|16611|39752|39752|98599|98600|98601|98602|98604|98604|152905|152906|152906|177157|177853|237435|237435|260811|260812|265243|265243|272255|272277|272277|274557|274557|274815|274815|328519|328519|328521|328521|328522|328522|328524|328524|338465|338468|338469|338469|338479|338479|344551|344551|345949|345951|345951|345952|345954|345958|345958|358436|358436|358437|431000|468077|468077|487839|487839|488906|512959|512959|513465|513465|513466|531265|539071|539071|548134|548138|548140|548143|548145|548147|548149|548151|548152|548153|548154|548155|548156|548157|548160|548160|548161|548163|548165|548168|548170|548171|548175|548176|548177|548185|548187|548392|548399|548411|548416|548417|548417|548421|548425|548425|548427|548432|548441|548443|548445|548453|548453|548454|548454|548463|548470|548470|548473|548477|548478|548480|548483|548488|548496|548497|548497|548507|548845|548850|548852|548854|548856|548866|548868|548886|548888|548895|548897|548899|548901|548902|548904|548904|548910|548916|548916|548921|548925|548926|548930|548939|548939|548941|569051|569053|569053|574461|574462|578545|581774|612319|620588|620589|620589|623161|623162|625884|625885|645901|645902|645903|645904|645905|704146|704146|715460|715460|715461|715461|715462|715462|727184|727184|727185|727185|727186|727186|731150|731150|740757|740757|740758|740758|740759|740759|744975|755854|755854|755855|755856|771507|771508|771509|771509|771510|771511|771513|771516|771517|771518|771519|771520|771520|785566|785569|785572|785573|785574|791745|791746|791747|845342|845343|845344|845345|845346|845347|852743|877553|877554|877555|877556|877557|877558|877559|877560|877561|877562|877563|877564|937932|937933|937934|937935|949921|949922|958107|958108|958109|958110|958111|958112|962245|972273|972274|972275|979899|979900|979901|979902", + "text": "Mucopolysaccharidosis, MPS-III-B" + }, + { + "baseId": "16599|16600|16601|16602|16603|16604|16605|16606|16610|16611|39752|98604|152906|177157|200975|237435|265243|272277|274557|274815|328519|328521|328522|328524|338469|338479|344551|345951|345958|358436|468077|487839|488906|512959|513465|531265|539071|539071|548160|548417|548425|548453|548454|548470|548497|548904|548916|548939|569051|569053|574461|574462|620589|645901|645902|645903|645904|645905|704146|715460|715461|715462|727184|727185|727186|731150|740757|740758|740759|744975|755854|755855|755856|771507|771508|771509|771510|771511|771513|771516|771517|771518|771519|771520|785566|785569|785572|785573|845342|845343|845344|845345|845346|845347|852743|937932|937933|937934|937935|949921|949922|958107|958108|958109|958110|958111|958112", + "text": "Charcot-Marie-Tooth disease, axonal type 2V" + }, + { + "baseId": "16603|17577|18513|18536|18820|19260|20874|23435|23993|24680|26862|28958|30966|31490|31500|32040|32041|32044|32046|32048|32055|32062|32068|32660|39003|39501|44706|44738|44739|44742|44746|44771|44794|46362|46375|46446|46492|46568|46632|46720|46743|46771|46785|48043|51454|51459|51525|51526|51540|51604|53896|53902|53907|53916|53930|53931|53932|57587|57643|65709|65786|65914|66202|66329|66607|66687|66817|66833|66884|66924|67002|67098|67130|67183|67447|67476|67494|67533|71284|78529|78674|78697|78817|78895|78901|78903|78910|78945|96907|98319|102667|102683|102731|102743|102758|103449|131517|131583|151171|151719|170101|173777|173934|175763|175906|175979|175988|178699|180661|181441|183666|184005|186861|196831|196929|197650|197688|197723|197743|197755|224272|226499|231864|233846|234768|234820|234954|235048|242076|243997|244001|258823|260039|260073|263184|263220|263253|263261|263267|263286|263292|263318|263319|263384|263401|263863|264055|264422|264749|287152|340675|342667|358436|359267|360800|360951|360968|361006|361055|361065|361065|361100|361105|362139|373504|403333|404845|404846|409256|414704|422039|433558|435058|461285|463766|464306|465146|487849|487854|493078|510615|511075|513888|513892|513973|514014|514030|514038|514051|514066|514067|514068|514089|514120|514141|514152|514153|514167|514204|514206|514219|529011|539719|539842|547329|559457|590037|590091|614396|614397|614398|614399|614400|615920|672319|672321|801262|816327|816328|858541|975888|980477", + "text": "8 conditions" + }, + { + "baseId": "16612|16613|16614|16615|16615|16616|236948|316202|316206|316206|323517|323518|323518|323528|323533|323536|323537|323538|329699|329699|329701|329701|329707|330953|330956|462460|503564|526618|526707|526710|526876|526949|526956|526956|527273|527273|565093|565098|566391|640665|640666|640667|713390|730843|738506|753167|820447|839370|839371|839372|839373|839374|839375|869414|869415|869416|869417|869418|869419|869420|869421|869422|869423|872195|872196|935934|935935|935936|947807|947808|956763|956764", + "text": "Tyrosinemia type 3" + }, + { + "baseId": "16615|16615|16616|16616|236948|316202|316206|316206|316211|323517|323518|323518|323528|323533|323536|323537|323538|329699|329699|329701|329701|329707|330953|330956|353210|353211|462460|503564|526618|526707|526710|526876|526949|526956|526956|527273|565093|565098|566391|640665|640666|640667|713390|730843|738506|753167|791201|820447|839370|839371|839372|839373|839374|839375|869414|869415|869416|869417|869418|869419|869420|869421|869422|869423|872195|872196|935934|935935|935936|947807|947808|956763|956764|967245", + "text": "Hawkinsinuria" + }, + { + "baseId": "16617|16618|29951|320043|320044|320049|320055|320057|320066|320068|320072|320082|320083|320085|320086|328595|328598|328599|328607|328608|328612|328614|328616|328617|328623|328625|328627|328631|328632|335072|335077|335078|335084|335085|335086|335087|335096|335100|335102|335104|335118|335123|335134|335148|335153|335156|335164|335166|335188|337042|337045|337047|337050|337055|337061|337062|337064|337075|337076|683201|713979|725525|753898|871526|871527|871528|871529|871530|871531|871532|871533|871534|871536|871537|871538|871539|871540|871541|871542|871543|871544|871545|871546|871547|871548|871549|871550|871551|871552|871553|871555|871556|871557|871559|871560|871561|871562|871563|871564|871565|871566|871567|871568|871569", + "text": "Tourette syndrome" + }, + { + "baseId": "16617", + "text": "Trichotillomania" + }, + { + "baseId": "16619|16620|16621|16622", + "text": "Glaucoma 1, open angle, G" + }, + { + "baseId": "16621|21837|21837|21838|21839|21840|21841|21842|21843|21844|55409|55411|55413|55414|55416|55417|55418|55420|55422|55423|55424|55425|55426|55427|55429|55432|55433|55434|55435|55436|55438|55439|55444|55445|55447|55448|55449|55450|55451|55453|55455|55456|55458|55459|55462|55463|55464|55465|55466|55468|55469|55470|55471|55472|55473|55475|55476|55477|55478|55479|55480|55481|55482|55483|55483|55484|55485|55486|55487|55489|55490|55491|55492|55494|55495|55496|55498|55499|55500|55502|55503|55504|55505|55506|55507|55508|55509|55510|55511|55513|55515|55516|55517|55519|55521|55523|55524|55525|55526|55528|55529|55530|55531|55532|55533|55538|55539|55541|55542|55544|55545|55546|55547|55548|55548|55551|55552|55554|55555|55558|55560|55561|55565|55567|55568|55569|55571|55572|55573|55574|106479|115776|141201|141203|141204|152876|152877|152878|168544|168545|168546|168548|168550|168552|168556|174292|174294|174295|174296|174297|174300|174301|174305|174306|174306|174309|174313|174314|174316|174320|174321|174327|174331|174433|174434|174436|174442|174443|174447|174448|174452|174453|174454|174455|174455|174456|174460|174462|174468|174469|174475|177755|190912|192696|192785|193724|194148|194654|195169|195465|195465|195538|195622|195827|196072|226526|226538|229327|229338|229344|229347|229349|229349|229351|229357|229359|229361|229367|229369|229375|246883|260785|267208|267429|267749|268781|268828|269624|269624|272062|273234|275060|275062|362174|363866|363866|389222|389223|389493|404769|415013|425651|433350|443833|488627|488666|490842|491555|495293|495297|496394|496397|496400|496403|496403|496405|496409|496410|496445|496449|496828|496833|496846|501459|513560|535680|537464|537464|551542|585004|587192|587555|588227|588228|589213|590278|590279|590280|609606|612130|615791|615792|615793|615794|615795|615836|620201|623286|654397|654400|654409|654412|655685|655687|655693|699211|721585|735263|735265|735271|744171|749659|749677|765375|765380|782385|782392|788786|790566|790567|790568|790569|793098|793104|793106|800354|800355|800369|800370|815983|818240|831261|831266|831272|831283|831300|831303|831309|831315|831318|831347|856394|856395|856410|894854|894855|894856|894857|894858|894859|894860|894861|894862|894863|894864|894865|894866|894867|894868|894869|894870|894871|894872|894873|894874|894875|894876|894877|894878|894879|894880|894881|894882|894883|894884|894885|894886|894887|894888|894889|894890|894891|894892|894893|894894|894895|894896|894897|894898|894899|894900|894901|894902|894903|894904|894905|894906|894907|894908|894909|894910|894911|894912|894913|894914|894915|894916|894917|894918|894919|894920|894921|894922|894923|894924|894925|894926|894927|894928|894929|894930|894931|894932|894933|894934|894935|894936|894937|894938|894939|894940|894941|894942|894943|894944|894945|894946|894947|894948|894949|894950|894951|894952|894953|894954|894955|894956|894957|894958|894959|894960|894961|894962|894963|894964|894965|894966|894967|894968|894969|894970|894971|894972|894973|894974|894975|894976|894977|894978|894979|894980|894981|894982|894983|894984|894985|894986|894987|894988|894989|894990|894991|894992|894993|894994|894995|896145|896146|896147|896148|896149|896150|896151|896152|896153|896154|896155|896156|896157|896158|896159|896160|896161|963140", + "text": "Usher syndrome, type 2C" + }, + { + "baseId": "16623|16624|16625|16626|16627|16628|16629|16630|16631|16632|49833|49834|103605|103606|103607|103608|103609|103610|103611|103612|103613|103614|103615|103616|103617|103618|103619|103620|103621|103622|103623|103624|103626|103627|103628|103629|103630|103631|103632|103633|103634|103635|103636|103637|103638|103639|103640|103641|103642|103643|103644|103645|103646|103647|103648|103650|103651|103652|103653|103654|103655|103656|103657|103658|103659|103660|103661|103662|103663|103664|103665|103666|103667|103668|103669|103670|103671|103672|103673|103674|103675|103676|103677|103678|103679|103680|103681|103682|103683|103684|103685|103686|103687|103688|103689|103691|103692|103693|103694|103695|103696|103697|103698|103699|103700|103786|103787|103788|103789|103790|103791|103792|103793|132717|132720|132721|271343|271712|272489|274560|274744|334310|334316|334321|334322|334335|334337|334350|334352|334357|334358|334361|334365|334375|334379|334383|334384|344240|344241|344251|344252|344253|344254|344261|344263|344268|349374|349377|349378|349381|349382|349385|349386|349389|349390|349392|350394|350395|350398|620914|800949|818722|822325|882494|882495|882496|882497|882498|882499|882500|882501|882502|882503|882504|882505|882506|882507|882508|882509|882510|882511|882512|882513|882514|882515|882516|882517|882518|882519|882520|882521|882522|882523|882524|882525|882526|882527|882528|882529|882530|882531|882532|882533|882534|882535|882536|882537|882538|882539|882540|882935", + "text": "Hydatidiform mole, recurrent, 1" + }, + { + "baseId": "16633|16634|142160|406756|488088|488090", + "text": "Mitochondrial complex 1 deficiency, nuclear type 10" + }, + { + "baseId": "16633|21926|21927|21928|21929|24093|29095|48741|101651|134558|135131|135132|135134|135135|135136|135137|135138|135139|135141|135142|135143|135144|135145|135146|135147|135148|135149|141102|141103|141104|141105|142139|142140|142143|142146|142148|142156|142157|142158|142160|142161|142162|142164|142176|142177|142178|142179|142182|142183|142185|142186|142187|142188|142189|142190|142191|142192|142193|142194|142195|142196|142197|142200|142201|142202|142204|142205|142207|142210|142270|188131|208193|210613|210616|210617|210618|210619|210741|210796|210803|210805|210807|211015|211149|211155|211156|211157|211166|211170|211499|211501|211505|211507|211515|211515|211536|211537|211538|211541|211544|211554|211555|211559|211564|211664|211667|211671|211674|211675|211676|211677|211687|211690|211691|211692|211693|211864|211866|211906|211908|211925|246907|267035|274971|276891|276895|276896|276901|277177|277178|277185|277188|277868|277871|277872|277873|277890|277896|277920|277930|277931|277939|277942|277953|277960|277973|277987|284146|284148|284149|284167|284909|284911|284912|284913|284926|285460|285461|285462|285470|285471|285475|285478|285479|285480|285483|285484|286125|286127|286135|286147|286154|286156|286160|286161|286162|286166|286169|286170|286171|286177|286179|286181|286185|286188|286189|286832|286835|286843|286845|286846|286850|287226|287235|287236|287237|287239|287244|287247|288485|288497|288500|288518|288521|288522|288523|288823|288824|288825|288857|288861|288864|288869|288875|288896|288897|288898|288906|291994|291996|292006|292014|295351|295352|295356|295361|295363|295371|295372|295373|295381|295585|295586|295589|295647|295653|297291|297431|297433|297435|297438|297950|300102|300108|301235|301237|301238|301239|301248|301249|301255|301256|301301|301496|301511|301513|303478|303479|303494|303495|303685|303686|303687|304216|304369|304378|304379|304386|304387|304389|304396|304408|304425|304446|304450|304530|304535|304546|304695|309013|309018|309023|309028|309031|309033|309037|309120|309122|309125|309126|309127|309128|309131|309132|309133|309134|313196|313198|313199|313200|313202|313203|313214|313216|314319|314894|314895|314907|314908|314921|314922|314925|314927|319341|319342|319345|319347|320420|320421|320422|320426|320427|320433|320435|320437|320898|320904|320906|321681|321682|321691|321693|321700|321701|321702|321709|321712|321713|321716|321719|321722|321729|322455|322457|325485|325493|325495|325496|325498|326413|326416|326422|326424|326425|326970|327777|327781|327783|327793|327802|327803|327807|328025|328026|328866|328867|328868|328884|328888|328891|328894|329170|329177|329178|329180|329181|329185|329205|329207|329215|329216|329219|329220|331807|331811|331812|331819|331821|332306|332702|332703|334435|334437|335775|335781|335787|335789|335792|335793|335806|335809|337593|337604|337606|337618|337620|337632|337651|337656|337657|337658|337671|337673|337674|337691|337707|337727|337731|338816|338818|340402|340406|340413|340415|342445|342878|344305|344311|344313|344315|347865|347866|347868|347869|348214|349203|349413|349414|349418|349419|349422|350422|350425|359994|364593|366321|366901|368205|372344|372357|372359|374237|374250|377189|379485|408448|438800|444873|486374|487060|491356|500765|501494|503185|503671|504122|511916|614598|614599|620134|620626|620830|620903|695499|706810|731822|735050|738219|744084|749527|752884|752888|757286|789359|791160|862586|867536|867537|867538|867539|867540|867541|867542|867543|867544|867545|867546|868113|868114|868115|868116|868117|868118|868416|868417|868418|868419|868420|868421|868422|868423|868424|868619|868684|868685|868692|868693|871792|871793|871794|871795|871796|871797|871798|871799|871800|871801|871802|871803|871804|871805|871806|871807|871808|871809|871810|871811|871812|871813|871814|871815|871816|871817|871818|873419|873420|873421|873422|873423|873424|873425|873426|873427|873428|879739|879740|879741|879742|879743|880000|880001|880002|880003|880004|880677|880703|882564|882565|882566|882567|882568|882569|883447|883448|883449|883450|883451|883452|883453|883454|883455|883456|883457|883458|883459|883460|883461|883462|883463|883464|883465|883466|883467|883468|883469|883470|883471|883472|883473|883474|883475|883476|884264|884265|884266|884267|884268|884269|884270|884271|884272|884273|884274|884275|884276|884277|884278|884279|884280|884281|884282|884283|884284|884285|884286|884287|884288|884289|884290|884291|884292|884293|884294|884295|884296|884297|884298|884299|884300|884301|884302|884303|884304|884305|884306|884307|884308|884309|884310|884311|884312|884313|884314|884315|884316|884317|884318|884319|884320|884321|884322|884323|884324|884325|884326|884327|884328|884329|884330|884331|884332|884333|884334|884335|884336|884337|884338|884339|884340|884341|884342|884343|884344|884345|884346|887243|887244|887325|887326|889341|889342|889343|889344|889345|889346|889347|889348|889349|889350|889351|893111|893112|894082|894083|894084|894515|894516|894517|894518|894519|894595|894596|894597|896117|897009|897010|897011|897012|897013|897014|897015|897016|897017|897018|897019|897020|897021|897022|897023|897024|897025|897026|897027|918497|969137", + "text": "Mitochondrial complex I deficiency, nuclear type 1" + }, + { + "baseId": "16635|16636|103778|103781|103782|103783|103796|257201|257202|257203|257204|257205|257206|257207|334185|334186|334188|334189|334191|334193|334195|334198|334214|334216|334220|334221|334222|334223|334227|334230|344064|344067|344068|344070|344074|344075|344078|344080|344082|344094|344095|344106|344107|344113|344117|344123|344127|344141|349306|349309|349313|349314|349318|349321|349322|349325|349326|349328|349329|349332|349333|349336|349337|349340|350304|350309|350312|350313|350314|350315|350318|350321|350323|350324|350326|350328|350331|350333|350334|350335|390434|410711|434676|438122|446183|468174|469263|469271|470234|470766|470770|470779|471282|471283|471286|486231|486232|495545|513478|514301|514302|514304|532491|532829|533367|533376|533378|533385|533387|533404|533406|533408|533443|533444|533446|533448|533880|533881|533895|533900|533902|533911|533914|533918|533919|533923|533933|533935|533943|571070|571071|571072|571076|571077|571081|571087|572714|572788|572790|572794|572797|572800|573401|573405|573410|573412|575048|575049|575050|575051|575052|575053|575054|575055|590803|613150|619929|620646|648447|648448|648449|648450|648451|648452|648453|648454|648455|648456|648457|648458|648459|648460|648461|648462|648463|648464|648465|648466|648467|648468|648469|648470|648471|648472|648473|648474|648475|648476|648477|648478|648479|648480|648481|648482|648483|648484|648485|648486|648487|652954|652963|652965|653585|716670|728391|728392|728395|728396|742106|742108|742109|742110|757240|757245|772887|772888|772894|772896|772900|776907|800152|800153|800154|800155|800156|821287|821288|821289|821290|848042|848043|848044|848045|848046|848047|848048|848049|848050|848051|848052|848053|848054|848055|848056|848057|848058|848059|848060|848061|848062|848063|848064|848065|848066|848067|848068|848069|848070|848071|848072|848073|848074|848075|848076|848077|860603|882420|882421|882422|882423|882424|882425|882426|882427|882428|882429|882430|882431|882432|882433|882434|882435|882436|882437|882438|882439|882440|882441|882442|882443|882444|882445|929104|929105|929106|929107|929108|929109|929110|929111|929112|929113|938844|938845|938846|938847|938848|938849|938850|938851|941246|950912|950913|950914|950915|950916|950917|950918|950919|950920|958729|958730|958731|958732|958733|958734|958735|958736|958737|961370|975895|982197|982198|982199|982200|982201|982202", + "text": "Familial cold autoinflammatory syndrome 2" + }, + { + "baseId": "16637|16638|400211", + "text": "Fanconi anemia, complementation group M" + }, + { + "baseId": "16639|16640|16641|39751|404967|413892|413893|798457", + "text": "Ectodermal dysplasia-syndactyly syndrome 1" + }, + { + "baseId": "16642|16643", + "text": "Palmoplantar hyperkeratosis with squamous cell carcinoma of skin and 46,XX sex reversal" + }, + { + "baseId": "16644", + "text": "Palmoplantar hyperkeratosis and true hermaphroditism" + }, + { + "baseId": "16645|226288|226289|904120|904121", + "text": "Sideroblastic anemia 3, pyridoxine-refractory" + }, + { + "baseId": "16646|16647|16648|16649|16650|16651|39750|169067|169069|196332|208099|208101|208103|376074|429562|429563|429566|429571|429573|550016|566489|566490|568081|568089|568936|572810|642483|714142|714143|725677|739217|769815|820624|841537|841538|841539|841540|861133|861139|919528|927092|957229|961416|961873", + "text": "L-2-hydroxyglutaric aciduria" + }, + { + "baseId": "16652|16653|16654|16657|16658|132701|189014|191253|191701|191820|192130|192460|192461|192463|193056|194460|194461|195373|215088|252364|252365|252366|252367|252369|252370|252371|252372|266149|266328|266570|267180|268589|273625|274980|300205|300211|300218|300220|300221|300223|300227|300229|300232|300233|300237|302974|302976|302979|302981|302984|302987|302993|307411|307414|307416|307419|307421|307432|307435|307438|307441|307443|307444|307445|307449|307451|307617|307618|307620|307623|307624|307625|307631|307632|307641|307647|307649|307658|307659|307662|307667|307669|307671|307672|307674|406874|488849|578450|588076|590361|590362|590443|590446|590447|590448|590516|590517|612275|612276|620231|620788|722043|735674|750083|765699|788801|789167|790634|816463|896320|896321|896322|896323|896324|896325|896326|896327|896328|896329|896330|896331|896332|896333|896334|896335|896336|896337|896338|896339|896340|896341|896342|896343|896344|896345|896346|896347|896348|896349|896350|896351|896352|896353|896354|896355|896356|896357|896358|900231|900232|917756|959504|973024", + "text": "Three M syndrome 1" + }, + { + "baseId": "16655", + "text": "Yakut short stature syndrome" + }, + { + "baseId": "16660|16661|16662|16663|16665|16667|16670|16671|16672|16673|33864|33865|33866|33867|33868|33869|33870|33871|33873|33874|33875|33876|33877|38417|98180|98181|98184|98185|98187|98188|98189|98190|98191|98192|98193|98194|98197|98198|98199|98200|98201|98203|98204|139964|177029|177030|177160|177292|177423|177424|177462|177465|178720|186983|186984|186985|186986|190705|190949|191476|191478|191479|191480|192609|195844|196140|200317|200318|200320|200321|200322|200323|200324|200325|200326|200327|200329|200330|200331|200332|200333|200334|200335|200336|200338|200339|200340|200341|200342|200343|217195|236943|236994|256363|256364|256367|256371|256372|265279|267159|267165|270089|271751|275400|287268|329729|329730|329732|329733|339994|339997|340008|340011|340017|340019|345706|345709|345710|345717|345719|345720|347105|347106|347107|347109|347111|358459|358460|358461|358462|358463|358464|358465|358466|358467|358468|358469|358470|358471|358472|358473|358474|358475|358476|358477|358478|358479|358480|358481|358482|360274|360329|361026|363795|375681|376557|376645|376650|376656|378747|378754|378757|404834|410235|410237|410240|415585|415586|415587|422195|422196|426249|426251|433278|433279|433282|433283|433284|433285|433286|433288|445883|445885|445886|467439|467441|467445|467448|467450|468310|468313|468315|468773|468777|468790|468802|468805|468807|468808|468817|469011|469013|469030|469033|469035|469036|469043|469048|469050|487774|492737|506361|506374|506378|506383|507134|513140|531740|531744|531746|531750|531752|531808|531814|531816|531822|531823|531857|531871|531876|532100|532102|532119|532121|532126|548226|548228|548229|548234|548236|548238|548241|548246|548247|548248|548250|548255|548258|548266|548267|548269|548272|548277|548280|548281|548283|548292|548293|548296|548297|548298|548300|548301|548302|548305|548306|548307|548308|548309|548310|548312|548313|548315|548317|548319|548320|548321|548323|548325|548330|548332|548334|548336|548339|548341|548343|548345|548347|548349|548352|548585|548608|548609|548616|548617|548627|548628|548633|548636|548637|548641|548642|548644|548652|548661|548662|548664|548673|548677|548679|548686|548693|548696|548706|548712|548713|548715|549008|549009|549012|549018|549019|549021|549022|549024|549025|549033|549037|549041|549056|549063|549071|549074|549075|549076|549078|549082|549087|549096|549100|569696|569701|569704|569705|571574|571578|572201|572212|572214|572216|572218|572219|572225|572227|572229|572234|574610|583285|586672|610100|610101|610102|610103|610105|610107|610111|610112|612358|620054|620055|646644|646645|646646|646647|646648|646649|646650|646651|646652|646653|646654|646655|646656|646657|646658|646659|646660|646661|652841|653025|653029|653362|653499|653502|653503|653505|694178|694179|694180|694181|694182|695771|704336|715663|715664|740997|756105|756106|756107|760652|771786|771788|771791|776392|776725|785722|785723|785724|785725|785726|791823|791824|798724|800061|800062|800063|800064|800065|800066|800067|800068|800069|800070|816489|846140|846141|846142|846143|846144|846145|846146|846147|846148|846149|846150|846151|846152|846153|846154|846155|846156|846157|846158|846159|846160|846161|846162|846163|846164|857327|857328|857329|878326|878327|878328|878329|878330|878331|878332|878333|878334|878335|878336|880571|920504|921034|921035|921036|921037|921038|921039|921040|921041|921042|921043|921044|921045|921046|921047|921048|921049|921050|921051|921052|921053|921054|921055|921056|921057|921058|921059|921060|921061|921062|921063|921064|921065|921066|921067|921068|921069|921070|921071|921072|921073|921074|921075|921076|921077|921078|921079|921080|921081|921082|921083|921084|921085|921086|921087|921088|921089|921090|921091|921092|921093|921094|921095|921096|921097|921098|921099|921100|921101|921102|921103|921104|921105|921106|921107|921108|921109|921110|921111|921112|921113|921114|921115|921116|921117|921118|921119|921120|921121|921122|921123|921124|921125|921126|921127|921128|921129|921130|921131|921132|921133|921134|921135|921136|921137|921138|921139|921140|921141|921142|921143|921144|921145|921146|921147|921148|921149|921150|921151|921152|921153|921154|921155|921156|921157|921158|921159|921160|921161|921162|921163|921164|921165|921166|921167|921168|921169|921170|921171|921172|921173|921174|921175|921176|921177|921178|921179|921180|921181|921182|921183|921184|921185|921186|921187|921188|921189|921190|921191|921192|921193|928522|928523|938206|938207|938208|938209|938210|938211|940435|940436|940437|950262|950263|950264|950265|950266|950267|950268|950269|950270|958290|958291|958292|960241|960242|960897|960898|979914|979915|979916|979917|982124|982125|982126|982127|982128|982129|982130", + "text": "Very long chain acyl-CoA dehydrogenase deficiency" + }, + { + "baseId": "16673|20938|23992|27992|187120|200340|208349|361026|512449|539122|539137|539161|792691|801182", + "text": "Rhabdomyolysis" + }, + { + "baseId": "16673|801182", + "text": "Abnormality of circulating enzyme level" + }, + { + "baseId": "16675|16676|16677|16678|16679|16680|16681|16682|16683|186955|186956|186957|186958|186959|186960|260160|260161|264755|267970|327649|327655|327659|327661|327665|327671|327676|327677|327678|327682|327683|327687|327702|337460|337461|337468|337470|337471|337473|337476|337480|343715|343717|343719|343721|343726|343728|343732|343733|343734|343738|345177|345178|345179|345180|345183|345185|345186|345201|345204|345207|358393|358394|358395|358396|358397|358398|358399|358400|358401|358402|358403|358404|358405|358406|358407|358408|358409|358410|431883|431884|431885|487670|487677|487679|513368|547979|547988|547995|548003|548007|548011|548016|548024|548026|548031|548033|548038|548039|548276|548282|548287|548288|548290|548291|548755|548758|548760|548761|548763|548764|548769|578538|610422|612318|620576|740643|740644|755701|771310|771311|771312|771315|785484|791687|792803|804830|876996|876997|876998|876999|877000|877001|877002|877003|877004|877005|877006|877007|877008|877009|877010|877011|877012|877013|877014|877015|877016|877017|877018|877019|877020|877021|880487|965860|972262|972263|972264|972265|972266|972267|972268|972269|979886", + "text": "Sj\u00f6gren-Larsson syndrome" + }, + { + "baseId": "16684|16685|16686|16687|16688|16689|16690|40310|40311|227322|305387|305388|305390|305391|305393|305399|305402|309195|309198|309216|309220|309232|309234|309242|314476|314484|314490|314497|314498|314510|314524|314525|314557|314564|314568|314585|353839|413775|421679|438390|438391|441237|457855|457864|458508|458514|458918|511756|523898|523907|524172|562420|562422|565135|565139|567930|637218|637219|651971|651978|679760|679957|687293|798600|798601|805577|834768|834769|834770|899632|899633|899634|899635|899636|899637|899638|899639|899640|899641|899642|899643|899644|919156|920255|925204|946075|955415|960653|964667", + "text": "Torsion dystonia 6" + }, + { + "baseId": "16691|16692|16693|16694|34357|34358|34359|34359|44141|103891|103892|103893|251291|251291|291683|291688|291692|291692|291700|291703|291704|293021|293023|293023|293025|293025|293028|293029|293042|293046|296287|296308|296310|296311|296342|296355|296355|296357|296364|296365|559682|691486|691486|695217|709053|720645|828574|859301|889721|889722|889723|889724|889725|889726|889727|889728|889729|889730|889731|889732|889733|889734|889735|889736|889737|891709|923359", + "text": "Frontotemporal dementia, chromosome 3-linked" + }, + { + "baseId": "16695|268646|431738|481856|513993|513994|551560|590286|609733|799591|919227", + "text": "Retinitis pigmentosa 31" + }, + { + "baseId": "16697|16708|17173|264701|318161|318162|318163|318167|326143|326148|326151|326165|332322|332326|332328|332329|332331|333912|333913|333932|333933|333936|372536|513614|620448|760040|791268|870232|870233|870234|870235|870236|870237|870238|870239|870240|870241|870242|870243|870244|870245|870246", + "text": "Vitamin D-dependent rickets, type 1" + }, + { + "baseId": "16697|16698|16699|16700|16701|16702|16703|16704|16705|16706|16707|16708|16709|16710|16711|16712|16713", + "text": "Vitamin D-dependent rickets type 1A" + }, + { + "baseId": "16714|16715|16716|16717|16718|16719|16720|16721|16722|101218|101219|291847|291851|291853|291854|291855|291862|291864|291868|291877|291879|293216|293217|293221|293222|293223|293238|293239|293240|293242|293257|293259|293266|293269|293275|296532|296533|296534|296536|296539|296540|296563|296575|296580|296587|296590|296592|296593|296594|439302|452826|453189|513265|519686|519688|519945|576109|581872|620769|621166|631846|631847|709098|709099|709100|709101|774868|779080|819435|828645|828646|851582|889818|889819|889820|889821|889822|889823|889824|889825|889826|889827|889828|889829|889830|889831|889832|889833|889834|891722|891723|891724|916921|932108|932109|963560|973009", + "text": "Beta-D-mannosidosis" + }, + { + "baseId": "16723|16724|16725|16726|16727|34059|34060|34061|34062|99114|99117|99121|99122|99124|99125|135030|187033|187034|192626|193442|194844|194845|204485|204486|204487|204488|204489|204490|204491|204492|204493|204494|204495|204496|204497|204498|204499|204500|204501|204502|204503|204504|204505|204506|204507|204508|204509|204510|204511|204512|204513|204514|204515|204516|204517|204518|204519|204520|215562|237252|237427|265389|270901|271823|274266|332610|332611|332618|332625|332627|332629|332630|332631|332636|332638|332640|332643|332646|332649|342815|342816|342819|342824|342825|342838|342841|348129|348130|348131|348138|348141|348144|348147|348148|348149|348152|349376|349379|349380|349383|349384|349387|349388|358566|358567|358568|358569|358570|358571|358572|358573|358574|358575|358576|358577|358578|358579|358580|358581|358582|358583|358584|358585|410474|426282|433679|446031|446032|469809|470446|512381|532700|532716|538483|548669|548672|548675|548678|548683|548684|548685|548687|548688|548689|548690|548691|548692|548694|548695|548697|548699|548700|549043|549044|549046|549050|549052|549064|549065|549067|549069|549322|549323|549324|549325|549326|549327|549328|549329|549330|549783|549785|549787|550635|572910|572918|578563|612329|620627|620628|621629|647696|647697|647698|647699|647700|647701|647702|652941|653146|653490|653597|653598|653896|716169|716170|716171|716172|716173|716174|716175|716176|716177|727902|727903|727904|727905|727906|727907|731244|731245|741578|741579|741580|741581|741582|741583|741584|745215|756710|756711|756712|756713|756714|756715|756716|760797|760801|772397|772398|772399|772400|772403|772405|772408|772409|772410|772411|772414|776557|776664|776667|776669|776843|776844|786054|786055|786056|786058|786061|788250|800621|801736|847279|847280|847281|847282|847283|847284|847285|847286|847287|847288|847289|847290|847291|847292|852853|879946|879947|879948|879949|879950|879951|879952|879953|879954|879955|879956|879957|879958|879959|879960|879961|879962|879963|879964|879965|879966|879967|879968|879969|880693|880694|880695|880696|880697|880698|928841|928842|928843|928844|928845|928846|928847|928848|928849|938576|938577|938578|940470|950670|950671|958533|958534|958535|958536|958537|961888|963304|963870|965867|972307|972308|972309|972310|972311|972312|972313|972314|972315|972316|972317|972318|972319|972320|972321|972322|972323|972324|972325|972326|979962|979963|979964|979965|979966|979967|979968|979969|979970", + "text": "Deficiency of alpha-mannosidase" + }, + { + "baseId": "16728|16729|16730|16731|227693|318709|318710|318717|318719|318720|318721|318723|318725|318728|318730|318731|318733|318736|318737|327036|327046|327068|327069|327072|327073|327074|327076|327078|327080|327081|327083|327087|327088|333121|333139|333140|333141|333142|333143|333159|333166|333171|333174|333176|333180|333182|333183|333185|333187|333188|333194|333196|333201|333202|334861|334870|334871|334874|334889|334890|334894|334903|334905|334906|334917|334923|334924|334931|334932|334936|353259|620461|620853|620854|702555|738904|779576|870562|870563|870564|870565|870566|870567|870568|870569|870570|870571|870572|870573|870574|870575|870576|870577|870578|870579|870580|870581|870582|870583|870584|870585|870586|870587|870588|870589|870590|870591|870592|870593|870594|870595|870596|870597|870598|870599|870600|872296", + "text": "Histidinemia" + }, + { + "baseId": "16732", + "text": "Hurthle cell carcinoma of thyroid" + }, + { + "baseId": "16733|16734|16735|16736|229480|299946|299948|299957|299961|299968|299969|299974|299979|299989|300015|300018|302621|302623|302631|302635|302636|302640|302641|302644|302645|302647|302662|302686|302693|302699|306993|306995|306997|307002|307006|307007|307020|307047|307049|307257|307265|307269|307284|307310|307320|362595|389224|553258|578448|735641|895878|895879|895880|895881|895882|895883|895884|895885|895886|895887|895888|895889|895890|895891|895892|895893|895894|895895|895896|895897|895898|895899|895900|895901|895902|895903", + "text": "Deafness, autosomal recessive 67" + }, + { + "baseId": "16737|16738|51092|224980|224981|227233|284270|284273|284274|284282|284283|284288|284302|284314|284315|284319|284323|284324|284327|284328|284329|284331|284336|284338|284342|284345|284346|284352|284354|284359|284360|284364|284366|284367|284369|284996|285003|285005|285011|285012|285013|285014|285016|285020|285022|285023|285024|285026|285028|285032|285036|285038|285039|285040|285042|285043|285046|285047|285048|285050|286979|286984|286994|287000|287005|287006|287007|287009|287010|287015|287022|287023|287025|287029|287030|287032|287040|287041|287053|287055|287075|287080|287083|287084|287101|287110|287119|287349|287351|287352|287363|287364|287365|287369|287373|287376|287392|287396|287398|287399|287461|287466|287467|287468|287469|287475|287476|287480|287490|287492|353555|353556|620051|697274|883543|883544|883545|883546|883547|883548|883549|883550|883551|883552|883553|883554|883555|883556|883557|883558|883559|883560|883561|883562|883563|883564|883565|883566|883567|883568|883569|883570|883571|883572|883573|883574|883575|883576|883577|883578|883579|883580|883581|883582|883583|883584|883585|883586|883587|883588|883589|883590|883591|883592|887247|887248|887249|887250|887251|887252|887253|887254|887255|887256", + "text": "Fleck corneal dystrophy" + }, + { + "baseId": "16739|16740|16742|16742|16743|16744|16746|16747|16749|40257|40257|88864|152904|187986|187987|187988|187988|187989|187990|187991|187991|187992|187992|187993|187993|187994|187996|187997|187997|187999|188000|188000|188001|188002|188004|188004|188005|188006|188008|188009|188010|188011|188012|188013|188042|190720|191315|191858|191859|207742|207742|207743|209352|227716|253771|267792|273204|310393|310398|310409|310411|310413|310417|310422|310422|310424|310428|310434|310435|310437|310439|310447|310447|310450|310452|310452|310456|310457|310458|310460|315486|315487|315492|315497|315512|315513|315528|315536|315545|315546|315551|315552|315553|315553|315554|315556|315570|315571|315576|315577|315579|315580|315583|315583|315584|321486|321490|321494|321495|321506|321507|321508|321509|321511|321522|321540|321541|321541|321548|321557|321558|321563|321566|321568|321569|321576|321577|321580|321580|321586|321589|322296|322297|322298|322299|322303|322306|322307|322307|322308|322309|322317|322318|322323|322324|322326|322330|322340|322344|429066|429067|439215|444606|491919|493589|513306|545050|545054|545059|545062|545064|545066|545076|545081|545082|545084|545092|545094|545387|545389|545392|545394|545400|545403|545412|545422|545422|545427|545429|545431|545432|545433|545434|545435|545437|545446|545449|545452|545454|545459|545472|545474|545475|545477|545669|545670|545685|545688|545689|545690|545695|545698|545700|545702|545703|545704|545706|545708|545710|545723|578484|586213|589799|679828|744510|818719|836913|857676|865905|865906|865907|865908|865909|865910|865911|865912|865913|865914|865915|865916|865917|865918|865919|865920|865921|865922|865923|865924|865925|865926|865927|865928|865929|865930|865931|865932|865933|865934|865935|865936|865937|865938|865939|865941|865942|865943|865944|865945|865946|865947|865948|865949|865950|865951|865952|865953|865954|868473|868474|868475|868476|868477|963154|972077|972078|972079|972080|972081|972082|972083|972084|972085|972086|972087|972088|972089|972090|972091|972092|972093|972094|972095|972096|972097|972098", + "text": "Cockayne syndrome B" + }, + { + "baseId": "16740|16742|16746|16750|40257|88864|187986|187988|187991|187992|187993|187995|187996|187997|187999|188000|188004|188006|188009|207742|209352|227716|267792|310413|310422|310447|310452|315528|315553|315583|321541|321580|322307|322309|421792|491919|493589|545050|545054|545059|545062|545064|545066|545076|545081|545082|545084|545092|545094|545387|545389|545392|545394|545400|545403|545412|545422|545427|545429|545431|545432|545433|545434|545435|545437|545446|545449|545452|545454|545459|545472|545474|545475|545477|545669|545670|545685|545688|545689|545690|545695|545698|545700|545702|545703|545704|545706|545708|545710|545723|790960|790961|790962|818719", + "text": "DE SANCTIS-CACCHIONE SYNDROME" + }, + { + "baseId": "16740|16750|187999|322325|620362|620363|620364|626197", + "text": "ERCC6-Related Disorders" + }, + { + "baseId": "16740|16742|16745|16746|16750|16751|16752|40257|40257|88864|137838|187986|187988|187991|187992|187993|187994|187997|188000|188004|188006|188008|188012|188013|190720|191315|191858|191859|207742|227716|253771|267792|273204|310393|310398|310409|310411|310413|310417|310422|310422|310424|310428|310434|310435|310437|310439|310447|310447|310450|310452|310452|310456|310457|310458|310460|315486|315487|315492|315497|315512|315513|315528|315536|315545|315546|315551|315552|315553|315553|315554|315556|315570|315571|315576|315577|315579|315580|315583|315583|315584|321486|321490|321494|321495|321506|321507|321508|321509|321511|321522|321540|321541|321541|321548|321557|321558|321563|321566|321568|321569|321576|321577|321580|321580|321586|321589|322296|322297|322298|322299|322303|322306|322307|322307|322308|322309|322317|322318|322323|322324|322326|322330|322340|322344|360919|439215|444606|491919|493589|513593|545050|545054|545059|545062|545064|545066|545076|545081|545082|545084|545092|545094|545387|545389|545392|545394|545400|545403|545412|545422|545427|545429|545431|545432|545433|545434|545435|545437|545446|545449|545452|545454|545459|545472|545474|545475|545477|545669|545670|545685|545688|545689|545690|545695|545698|545700|545702|545703|545704|545706|545708|545710|545723|578484|586213|744510|818719|865905|865906|865907|865908|865909|865910|865911|865912|865913|865914|865915|865916|865917|865918|865919|865920|865921|865922|865923|865924|865925|865926|865927|865928|865929|865930|865931|865932|865933|865934|865935|865936|865937|865938|865939|865940|865941|865942|865943|865944|865945|865946|865947|865948|865949|865950|865951|865952|865953|865954|868473|868474|868475|868476|868477|919271|919272", + "text": "Cerebrooculofacioskeletal syndrome 1" + }, + { + "baseId": "16746|16748|187994|188008|188012|188013|190720|191315|191858|191859|253771|273204|310393|310398|310409|310411|310417|310422|310424|310428|310434|310435|310437|310439|310447|310450|310452|310456|310457|310458|310460|315486|315487|315492|315497|315512|315513|315528|315536|315545|315546|315551|315552|315553|315554|315556|315570|315571|315576|315577|315579|315580|315583|315584|321486|321490|321494|321495|321506|321507|321508|321509|321511|321522|321540|321541|321548|321557|321558|321563|321566|321568|321569|321576|321577|321580|321586|321589|322296|322297|322298|322299|322303|322306|322307|322308|322317|322318|322323|322324|322326|322330|322340|322344|439215|444606|586213|744510|865905|865906|865907|865908|865909|865910|865911|865912|865913|865914|865915|865916|865917|865918|865919|865920|865921|865922|865923|865924|865925|865926|865927|865928|865929|865930|865931|865932|865933|865934|865935|865936|865937|865938|865939|865941|865942|865943|865944|865945|865946|865947|865948|865949|865950|865951|865952|865953|865954|868473|868474|868475|868476|868477", + "text": "Age-related macular degeneration 5" + }, + { + "baseId": "16747", + "text": "UV-sensitive syndrome 1" + }, + { + "baseId": "16748|31535|31556", + "text": "LUNG CANCER, SUSCEPTIBILITY TO" + }, + { + "baseId": "16753|16754|16755|16756|16757|79645|187981|187982|187983|190958|196149|272557|297902|297911|297917|297919|297922|297923|297927|297930|297931|297932|300093|300097|300098|300099|300100|304328|304331|304354|304356|304360|304368|304691|304692|357419|384613|406755|406756|421550|423862|536698|536698|543431|543433|543435|543437|543438|543443|543445|543446|543449|543701|543702|543704|543753|543771|543775|543778|543780|543782|543786|543788|543789|543861|543866|543867|543869|543869|543873|543875|543876|543879|578013|581726|609081|623140|686762|691875|765160|798562|858721|894577|894578|894579|894580|894581|894582|894583|894584|894585|894586|894587|894588|894589|894590|894591|894592|894593|894594|896122|962059|963236|971870|971871|971872|971873|971874|971875|971876", + "text": "Cockayne syndrome type A" + }, + { + "baseId": "16755|31619|31817|70482|70487|134454|134459|134460|134461|134462|134463|134464|134465|134466|135137|137870|137873|137874|137876|137877|137880|137881|137882|137883|137884|137887|137889|137891|137892|137897|187995|188003|188007|188009|191753|193374|215505|237323|242189|242190|242191|242192|247041|255456|255457|259255|271456|297932|297944|300095|304363|310384|310391|310392|310405|310413|310414|310463|315483|315490|315526|315555|321491|321510|321549|321588|322273|322279|322288|322302|322309|322331|333738|340492|341868|341877|341879|353732|360919|400521|400523|400529|400665|400667|401098|401100|401337|413430|429758|429759|465041|465045|465053|465057|465726|465919|529246|529434|529436|529444|529465|529466|529467|529771|529772|529774|567671|567677|567678|569972|569973|573713|643908|643909|643910|643911|643912|643913|643914|643915|643916|643917|643918|643919|643920|643921|652453|684573|684574|684577|688527|692846|739952|754899|797245|820765|843092|843093|843094|843095|843096|843097|843098|843099|843100|843101|843102|843103|843104|843105|843106|843107|843108|843109|843110|843111|843112|851649|851651|852620|927558|927559|927560|927561|927562|927563|927564|937217|937218|937219|937220|940343|949164|949165|949166|949167|957624|957625|957626|957627|960834|970356", + "text": "Cockayne syndrome" + }, + { + "baseId": "16758|16759", + "text": "Preeclampsia/eclampsia 4" + }, + { + "baseId": "16760|16761|16762|16763|141077|141077|141078|141078|141079|141080|165818|165819|165820|212515|213812|221621|231652|249211|249214|252051|252053|252054|252054|252055|252056|252057|298724|298725|298731|298744|301199|301202|301203|301204|301206|301208|301209|301210|301213|301214|301219|305557|305565|305566|305567|305569|305570|305571|305582|305587|305686|305687|305691|368286|368638|395001|406786|440905|521666|521916|578440|626307|651610|683001|683751|895193|895194|895195|895196|896177|896178|896179", + "text": "Charcot-Marie-Tooth disease, type 4J" + }, + { + "baseId": "16760|16762|16766|16767|141077|141077|141078|141078|141079|141080|212515|221621|231652|249211|249212|249213|249214|249215|252051|252053|252054|252054|252055|252056|252057|298724|298725|298731|298744|301199|301202|301203|301204|301206|301208|301209|301210|301213|301214|301219|305557|305565|305566|305567|305568|305569|305570|305571|305582|305587|305686|305687|305691|368286|368638|395001|406786|521666|521916|578440|651610|683001|683751|790574|895193|895194|895195|895196|896177|896178|896179", + "text": "Amyotrophic lateral sclerosis type 11" + }, + { + "baseId": "16760|16762|38909|104217|165502|191839|213136|222425|237049|241567|242045|250808|264531|284698|288008|333845|384443|400111|400608|441283|481797|513590|610538|633837|683149|697294|719843|848494|861332|861333|861334|861335|861337|861339|861340|861341|861342|861345|861356|861357|861358|861387|861388|861390|861391|861394|861401|861402|861403|861404|861405|861406|861407|861408|861418|861422|861423|861425|873576|964785|964787|964788|964789|964790|964791|969094|969095|969096|969097|969098|969099|969100|969101|969102|969103|969104|969105|969106|969107|969108|969109|969110", + "text": "Amyotrophic lateral sclerosis" + }, + { + "baseId": "16760|16761|65664|65665|65666|65667|301209|384430|384431|395001|395176|406786|440905|626307|788789|918992|920218", + "text": "Yunis-Varon syndrome" + }, + { + "baseId": "16768|16769|16770|16771|251833|251834|251835|251836|296684|296686|296687|296689|296695|296705|296706|296711|296712|296714|298536|298542|298543|298548|298549|298555|298557|298562|298563|302672|302675|302676|302678|302682|302684|302695|302696|302697|302965|302967|302971|302980|302989|302991|302995|303000|303001|303008|303013|303014|359546|622225|622226|626323|626324|626325|626326|626327|626328|626329|626330|626331|626332|626333|626334|626335|626336|626337|626338|626339|626340|626341|626342|626343|893739|893740|893741|893742|893743|893744|893745|893746|893747|893748|893749|893750|893751|893752|893753|893754|893755|893756|893757|893758|893759|893760|893761|896073", + "text": "Autosomal recessive congenital ichthyosis 6" + }, + { + "baseId": "16772|16773|45848|45849|45850|45851|45852|45853|48382|48383|48384|48385|142814|142815|142816|142817|142818|142819|142820|181281|181282|181283|190412|190413|195317|209446|209448|209449|209451|209452|209453|209454|209456|209457|209458|209459|209462|209463|209465|209466|209467|209469|209470|209472|209473|209474|209475|209480|209481|209482|209484|209486|209489|209491|209492|221089|224190|224191|226716|226717|228357|228358|238212|238217|249764|257944|257945|257946|359313|359326|364080|364674|364724|364811|364819|364908|364915|364920|364924|390973|390987|390988|390989|391048|391061|391067|391069|391073|391083|391086|405082|414765|425338|425342|433915|447532|447533|447643|447644|447682|447787|447788|447789|447792|447795|447797|447807|447808|447810|447833|447852|447853|498275|509137|509144|509149|509152|509157|509159|509160|511243|515461|515463|515502|515550|515551|515556|515567|515578|515587|515615|515617|556858|556860|556862|556874|557001|557003|557155|557162|557171|557173|557175|558357|614208|614209|627381|627382|627383|627384|627385|627386|627387|627388|627420|627421|627422|627423|627424|627425|627426|627427|627428|627429|650517|679733|683310|683312|685090|685625|685633|685635|695028|718766|718768|780597|799199|823485|823486|823487|823488|823489|823513|823514|823515|823516|823517|823518|823519|823520|823521|823522|921849|921850|921851|921852|921862|930330|930339|930340|930341|930342|930343|941775|941776|941777|952303|952306|952307", + "text": "Shprintzen-Goldberg syndrome" + }, + { + "baseId": "16774|16775|16776|16777|16778|16779|34083|34084|34085|34086|34087|34088|34089|34090|34091|34092|34093|34094|34095|34096|34097|34098|34099|34101|34102|34103|34104|168585|168586|168587|168588|193459|193461|195273|207539|207540|253098|265638|271769|273926|305058|305062|305067|305068|305069|305075|305084|305085|305096|305098|305099|305101|305103|305105|308791|308793|308794|308805|308811|308813|313969|313973|313984|313985|313986|313987|313989|313993|313994|313999|314003|314006|314009|314035|314041|314052|314067|314074|314090|314099|314100|314103|314104|314105|314108|584600|711480|766752|766754|766756|787568|787570|788827|792773|899409|899410|899411|899412|899413|899414|899415|899416|899417|899418|899419|899420|899421|899422|900476|978465|978466|978467|978468|978469", + "text": "Roberts-SC phocomelia syndrome" + }, + { + "baseId": "16781", + "text": "Intrinsic factor deficiency, congenital, susceptibility to" + }, + { + "baseId": "16781|16784|16785|16786|16787|204450|204451|204452|314343|314344|314347|314348|314350|320941|320964|320966|327032|327033|327037|328083|328088|328089|328090|328097|328102|433589|564748|564750|567344|570707|609795|620406|640159|640160|701822|712901|730774|752714|768494|768495|787990|818291|868145|868146|868147|868148|868149|868662|926276|926277|947504|956533", + "text": "Intrinsic factor deficiency" + }, + { + "baseId": "16788", + "text": "Dopamine beta-hydroxylase activity" + }, + { + "baseId": "16789|16790|16791|38418|214408|214409|214410|214411|214412|214413|214414|227065|227067|307374|307375|307377|307401|307402|307406|307407|307409|307410|307417|307418|307422|307424|307428|307440|311661|311662|311665|311666|311670|311673|311675|311677|311680|311684|311692|311694|317163|317176|317181|317186|317190|317191|317196|317198|317200|317212|317214|317218|317219|317221|317224|317226|317228|317240|317244|317245|317250|317586|317591|317592|317594|317595|317596|317597|317607|317608|317609|317614|317620|317621|317622|317623|317636|317641|317658|439060|524253|524255|524516|524520|563697|563698|637935|637936|637937|637938|700875|700876|711829|711831|711832|711833|711835|723420|723422|723424|723425|723426|723427|736987|751521|751524|767238|835738|835739|835740|835741|835742|835743|901439|901440|901441|901442|901443|901444|901445|901446|901447|901448|901449|901450|901451|901452|901453|901454|901455|901456|901457|901458|901459|901460|901461|901462|901463|901464|901465|901466|901467|901468|901469|901470|901471|901472|901473|901474|901475|901476|901477|901478|901479|903348|903349|925464|925465|946471", + "text": "Orthostatic hypotension 1" + }, + { + "baseId": "16792|16793|16794|16794|16795|16796|16798|16799|16801|16803|16803|16804|16806|16813|32119|32126|32128|32133|38609|45201|45203|45207|45208|45209|45217|45219|45224|45227|45228|45229|45230|45231|45232|45233|45234|45235|45237|45238|45239|45242|45243|45244|45346|45349|45350|45352|49845|49846|50027|50071|50080|50081|50083|50084|50085|50085|50087|50089|50090|50144|50146|50152|50155|50305|51640|51666|94667|94672|94753|94763|94826|94831|94832|94890|94974|94992|94993|95008|95014|95087|95088|95136|95137|95156|95170|95172|95218|95292|95310|95371|95380|95386|95421|95427|95431|95444|95453|95468|95488|95516|95522|95523|95542|95547|95575|95580|95589|95590|95607|95609|95610|95612|95615|95616|95617|95652|95685|95703|95717|95748|95772|95777|95792|95838|95841|95926|95934|95953|95954|95955|95960|95963|95967|95970|95971|95975|95985|95987|95987|95988|95994|96003|96028|96029|96029|96030|96032|96039|96044|96044|96052|96058|96071|96094|96094|96098|96103|96123|96129|96129|96137|96145|96149|96150|96154|96157|96160|96169|96173|96182|96188|96194|96195|96201|96205|96219|96220|96225|96257|96272|96273|96279|96279|96287|96297|96307|96308|96318|96319|96330|96350|96355|96362|96378|96381|96385|96408|96430|96431|96439|96440|96447|96461|96463|96465|96465|96468|96470|96473|96474|96478|96480|96490|96503|96505|96506|96508|96510|96512|96514|96516|96517|96520|96522|96525|96526|96528|96529|96535|96536|96537|96565|96567|96572|96572|96573|96575|96576|96579|96580|96583|96587|96590|96594|96597|96608|96615|96620|96623|96649|96656|96660|96664|96675|96681|96683|96697|96710|96717|96718|96729|96735|96739|96742|96744|96746|96748|96792|96798|96802|96803|96805|98572|133011|133078|133081|133084|133085|133086|133088|133089|133093|133094|133096|133098|133100|133101|133103|133104|133105|133111|133227|133255|133258|133348|138579|138585|138808|139547|139569|139571|139572|139574|139576|139577|139655|139745|141956|141957|141958|150499|150557|150578|150746|150756|150772|150783|150793|150862|152230|152438|152590|152724|166267|166268|166269|166270|166271|166272|166275|171076|171077|179978|179981|179986|179987|179989|179989|179990|179993|179997|179998|180000|180007|180008|180009|180010|180014|180017|180023|180026|180029|181861|181873|181882|181888|181892|181894|181895|181896|181900|181902|181907|181909|181916|181922|181928|181931|181953|181954|181959|181960|181964|181967|181968|181971|181978|181980|181981|181982|185970|185974|185980|185982|185987|190022|190023|190024|190025|195590|198613|212166|212185|212191|212192|212193|212196|212198|212200|212202|212203|212204|212205|212210|214577|214582|220983|220984|221206|221211|221214|221220|221221|221229|221236|221237|221238|221248|221723|226299|231565|232484|232498|232502|232517|232530|232531|232542|232551|232555|232556|232566|232572|232574|232587|232589|232597|232602|232622|232641|232719|232890|232923|238808|238826|238834|238835|238850|238864|238865|244365|246923|286665|286668|286670|286676|287401|290165|290183|290187|290188|290189|311622|358707|358708|358709|358710|358711|358712|358713|358714|358715|358716|358717|361855|361856|366696|367382|392727|392738|392774|392794|392810|392842|392860|393000|405771|416956|416957|416958|416959|419395|419421|424486|427208|432377|432516|432521|433701|443423|451097|451120|451332|451338|451369|472775|472804|473489|473652|483365|483377|483383|483416|485590|500169|511144|511145|539204|539205|539206|539207|539208|539209|539210|539211|539212|552275|552276|552277|552278|552279|552280|552281|561621|575670|609011|609163|609164|609165|609168|609178|613497|626130|626440|626442|630125|630144|685134|747675|790245|790246|790247|790248|790249|790250|790251|790252|790253|790254|790255|790256|790257|790258|790259|790260|790261|790262|790263|790264|807102|807583|827915|861168|861169|861170|861171|861172|861173|861174|861175|861176|861177|861178|861179|861180|861181|861215|861216|861217|885117|885118|885119|885120|887377|918723|964202|965455|970744", + "text": "Lynch syndrome I" + }, + { + "baseId": "16792|16794|16795|16796|16797|16798|16799|16800|16801|16803|16807|23970|23971|24273|24274|24276|24279|24281|24284|32118|32119|32124|32126|32127|32128|32129|32133|32135|32136|32137|32138|32144|32145|38609|38612|45201|45202|45203|45204|45205|45206|45208|45209|45210|45211|45212|45213|45214|45215|45216|45217|45218|45219|45220|45221|45222|45223|45224|45225|45226|45227|45228|45229|45230|45231|45232|45233|45234|45235|45237|45238|45239|45240|45241|45242|45243|45244|45245|45246|45247|45248|45249|45251|45252|45254|45255|45256|45257|45258|45259|45260|45261|45262|45346|45347|45348|45349|45350|45351|45352|45353|45354|50027|50029|50030|50032|50035|50071|50073|50074|50075|50076|50078|50079|50080|50083|50084|50085|50089|50090|50091|50140|50141|50142|50143|50144|50145|50147|50148|50149|50152|50153|50154|50155|50160|50161|51362|51637|51638|51639|51641|51642|51666|79740|94623|94624|94625|94626|94627|94630|94632|94634|94635|94636|94637|94639|94642|94643|94645|94646|94648|94649|94652|94653|94658|94659|94662|94663|94665|94666|94667|94668|94670|94671|94672|94676|94677|94678|94679|94680|94681|94682|94683|94684|94685|94687|94688|94692|94694|94695|94697|94698|94699|94701|94704|94705|94706|94707|94708|94709|94716|94717|94719|94720|94721|94727|94728|94729|94730|94735|94736|94741|94742|94743|94745|94748|94751|94753|94755|94756|94759|94760|94764|94768|94769|94770|94774|94775|94777|94779|94781|94782|94784|94785|94786|94788|94789|94790|94792|94794|94797|94798|94800|94802|94803|94804|94805|94808|94810|94812|94813|94814|94815|94817|94818|94819|94821|94822|94823|94824|94825|94826|94828|94830|94831|94832|94835|94836|94837|94838|94839|94840|94841|94843|94844|94845|94846|94847|94848|94849|94850|94851|94856|94858|94860|94862|94863|94864|94865|94873|94874|94875|94877|94878|94879|94881|94882|94884|94885|94889|94892|94893|94899|94901|94903|94904|94906|94907|94908|94909|94910|94914|94918|94924|94927|94928|94930|94932|94933|94936|94937|94941|94943|94945|94946|94947|94948|94949|94952|94953|94954|94955|94957|94958|94959|94960|94961|94962|94964|94966|94968|94969|94970|94971|94972|94973|94974|94975|94976|94980|94981|94982|94984|94985|94986|94988|94991|94992|94993|94995|94996|94998|94999|95000|95005|95006|95007|95008|95011|95013|95016|95017|95018|95020|95021|95024|95025|95026|95030|95031|95032|95033|95034|95035|95036|95037|95040|95041|95043|95044|95046|95047|95048|95050|95051|95053|95054|95055|95056|95057|95059|95061|95062|95064|95066|95068|95070|95072|95073|95074|95075|95076|95077|95078|95079|95080|95081|95082|95083|95084|95085|95087|95088|95089|95090|95091|95092|95093|95094|95095|95096|95097|95098|95099|95100|95101|95102|95103|95104|95105|95106|95107|95109|95110|95111|95113|95114|95115|95116|95117|95118|95119|95121|95122|95124|95125|95126|95127|95130|95132|95134|95135|95139|95140|95141|95142|95144|95145|95146|95147|95148|95150|95152|95153|95154|95155|95157|95158|95160|95163|95165|95166|95167|95169|95170|95171|95173|95175|95176|95177|95178|95179|95180|95181|95182|95183|95185|95186|95187|95190|95191|95192|95193|95194|95196|95198|95199|95200|95201|95202|95204|95205|95207|95208|95209|95210|95212|95213|95214|95218|95220|95221|95222|95223|95224|95226|95227|95228|95229|95230|95231|95232|95233|95235|95236|95237|95238|95239|95240|95241|95242|95243|95246|95247|95248|95249|95250|95252|95253|95254|95255|95256|95257|95258|95259|95261|95262|95263|95264|95265|95267|95268|95269|95270|95271|95272|95273|95274|95275|95276|95277|95279|95280|95281|95282|95283|95287|95288|95289|95294|95296|95297|95298|95299|95300|95301|95302|95303|95304|95305|95306|95307|95308|95309|95312|95313|95314|95315|95319|95320|95321|95322|95323|95324|95325|95326|95327|95328|95329|95330|95331|95333|95334|95335|95336|95338|95339|95340|95341|95345|95346|95347|95348|95352|95353|95354|95356|95357|95358|95359|95360|95361|95362|95363|95364|95365|95367|95368|95369|95370|95372|95373|95374|95376|95377|95378|95380|95381|95382|95383|95384|95385|95386|95388|95390|95391|95394|95395|95396|95398|95399|95400|95401|95402|95404|95405|95406|95407|95408|95409|95410|95412|95415|95416|95417|95418|95419|95420|95421|95422|95423|95424|95428|95429|95430|95432|95433|95435|95436|95437|95439|95440|95441|95442|95443|95446|95447|95448|95449|95451|95454|95455|95456|95457|95458|95459|95460|95461|95463|95465|95466|95467|95469|95471|95472|95473|95474|95475|95478|95479|95480|95482|95483|95484|95486|95488|95489|95490|95491|95492|95493|95494|95495|95496|95497|95498|95499|95500|95502|95503|95504|95505|95506|95507|95509|95510|95511|95512|95513|95514|95515|95516|95517|95518|95519|95520|95523|95526|95528|95529|95531|95533|95534|95535|95536|95537|95539|95540|95541|95542|95543|95544|95545|95546|95547|95549|95553|95556|95557|95558|95561|95562|95565|95566|95567|95568|95570|95571|95572|95573|95574|95575|95576|95578|95581|95582|95583|95584|95585|95586|95587|95588|95590|95591|95592|95594|95595|95597|95598|95604|95606|95608|95611|95614|95620|95621|95622|95624|95625|95626|95627|95628|95629|95630|95631|95632|95633|95634|95636|95640|95641|95645|95647|95648|95649|95653|95655|95656|95657|95660|95661|95663|95664|95665|95666|95667|95668|95669|95670|95672|95673|95674|95675|95676|95678|95680|95681|95682|95683|95684|95687|95688|95690|95691|95693|95695|95697|95698|95700|95701|95703|95704|95705|95706|95707|95708|95709|95710|95711|95712|95713|95715|95716|95719|95720|95721|95723|95724|95726|95727|95728|95729|95730|95732|95733|95734|95735|95738|95739|95740|95741|95742|95743|95744|95745|95746|95748|95750|95752|95753|95754|95755|95756|95759|95760|95761|95764|95765|95768|95769|95770|95771|95773|95775|95777|95778|95779|95780|95781|95782|95783|95784|95785|95786|95787|95789|95792|95793|95794|95795|95796|95797|95798|95800|95801|95802|95803|95805|95806|95807|95808|95811|95812|95813|95814|95815|95816|95817|95818|95819|95821|95822|95824|95826|95828|95829|95830|95831|95832|95833|95834|95835|95836|95837|95840|95842|95843|95844|95845|95846|95847|95848|95849|95850|95851|95853|95854|95856|95857|95858|95859|95860|95862|95863|95864|95865|95866|95867|95869|95870|95872|95873|95875|95876|95877|95881|95882|95883|95885|95886|95888|95889|95890|95891|95892|95893|95894|95895|95896|95897|95898|95899|95901|95902|95903|95904|95905|95906|95908|95909|95910|95913|95915|95917|95920|95922|95923|95925|95926|95927|95930|95932|95935|95936|95939|95940|95942|95943|95944|95945|95946|95947|95948|95949|95951|95952|95953|95954|95955|95956|95957|95959|95960|95961|95963|95964|95965|95966|95967|95968|95969|95971|95972|95973|95976|95977|95978|95979|95980|95981|95982|95984|95985|95986|95987|95989|95990|95992|95994|95995|95996|95998|95999|96000|96001|96002|96004|96005|96007|96008|96009|96010|96012|96013|96014|96015|96018|96019|96020|96021|96022|96023|96024|96025|96026|96027|96029|96032|96033|96034|96036|96037|96038|96039|96040|96041|96042|96043|96047|96048|96052|96055|96056|96057|96058|96059|96062|96063|96065|96066|96067|96068|96070|96071|96072|96073|96074|96075|96076|96077|96078|96079|96080|96081|96082|96083|96084|96085|96086|96087|96088|96089|96090|96091|96092|96093|96094|96095|96096|96097|96099|96100|96104|96106|96107|96108|96110|96111|96113|96114|96115|96116|96117|96118|96120|96121|96122|96124|96125|96126|96127|96128|96129|96130|96131|96132|96134|96137|96138|96139|96140|96141|96142|96143|96144|96145|96146|96147|96148|96149|96151|96152|96153|96154|96155|96156|96157|96158|96162|96163|96164|96165|96168|96170|96171|96172|96173|96174|96177|96178|96179|96181|96182|96183|96185|96186|96187|96192|96193|96194|96195|96196|96197|96198|96199|96201|96202|96203|96204|96205|96206|96208|96210|96211|96213|96214|96216|96217|96218|96219|96221|96223|96225|96226|96227|96228|96230|96231|96232|96233|96234|96235|96236|96237|96238|96240|96241|96242|96243|96244|96245|96246|96247|96248|96249|96250|96251|96252|96253|96254|96255|96256|96258|96259|96260|96262|96263|96265|96266|96267|96269|96271|96274|96275|96277|96278|96279|96281|96283|96284|96286|96287|96288|96289|96291|96296|96298|96299|96300|96301|96302|96303|96304|96305|96306|96307|96308|96309|96310|96311|96312|96314|96315|96316|96318|96320|96321|96322|96326|96327|96329|96331|96334|96335|96336|96337|96340|96342|96343|96345|96346|96349|96352|96353|96354|96356|96357|96358|96359|96360|96361|96364|96366|96367|96368|96369|96370|96371|96372|96373|96374|96375|96376|96378|96379|96380|96383|96384|96385|96386|96387|96390|96393|96394|96395|96396|96397|96398|96399|96403|96404|96405|96406|96407|96408|96409|96410|96413|96414|96415|96417|96418|96419|96420|96421|96422|96423|96424|96426|96427|96428|96429|96430|96431|96432|96434|96435|96436|96437|96438|96439|96441|96442|96444|96445|96446|96448|96449|96450|96451|96452|96453|96454|96456|96458|96459|96460|96461|96462|96464|96465|96467|96468|96469|96470|96471|96472|96476|96477|96479|96480|96481|96482|96483|96484|96488|96489|96490|96491|96492|96494|96495|96496|96497|96498|96499|96502|96504|96514|96515|96519|96520|96521|96524|96525|96528|96529|96530|96533|96534|96535|96537|96541|96542|96543|96544|96545|96546|96550|96551|96552|96553|96554|96555|96556|96557|96558|96559|96560|96561|96563|96564|96565|96568|96569|96570|96571|96572|96576|96577|96578|96580|96582|96584|96586|96590|96591|96592|96593|96595|96596|96597|96598|96601|96603|96604|96605|96607|96609|96610|96611|96614|96615|96616|96617|96619|96620|96621|96624|96625|96626|96627|96628|96629|96630|96631|96633|96634|96635|96636|96637|96638|96639|96640|96642|96643|96644|96645|96647|96648|96650|96651|96652|96653|96654|96655|96656|96657|96658|96659|96660|96661|96662|96663|96665|96667|96668|96670|96671|96672|96673|96674|96676|96677|96679|96680|96682|96685|96687|96688|96690|96691|96692|96694|96696|96697|96700|96701|96702|96703|96704|96706|96707|96708|96709|96710|96711|96712|96713|96714|96715|96716|96717|96718|96719|96720|96721|96722|96724|96725|96726|96727|96728|96729|96730|96731|96732|96733|96736|96737|96738|96739|96740|96741|96743|96744|96745|96748|96749|96750|96751|96752|96753|96755|96756|96757|96758|96759|96761|96764|96765|96766|96767|96769|96770|96771|96774|96775|96776|96778|96779|96781|96782|96783|96784|96785|96787|96789|96790|96791|96792|96793|96795|96796|96798|96799|96801|96802|96803|96804|96805|96806|96807|96808|96809|96810|96811|96812|96813|96816|96817|96818|96820|96821|96825|96828|96829|96830|96831|96832|96833|96835|96837|96838|96839|96840|96841|96842|96844|96846|96847|96848|96849|96850|96851|96852|96853|96854|96855|96857|96858|96860|96861|96862|98484|98485|99143|132403|132404|133011|133012|133027|133037|133042|133046|133070|133071|133072|133074|133080|133091|133093|133094|133101|133208|133210|133220|133221|133227|133243|133247|133248|133250|133255|133305|136458|136516|138591|138808|139542|139562|139648|139655|139656|139728|139731|139732|139734|139736|139737|139738|139740|139741|139742|139743|139744|141958|142406|150473|150493|150494|150499|150578|150602|150675|150686|150836|150846|150891|150979|150995|151041|151303|151381|151465|151492|151559|151599|151632|151895|151933|151990|152019|152055|152227|152275|152291|152364|152372|152377|152388|152412|152422|152435|152452|152479|152491|152495|152570|152673|152674|152683|152694|152705|152721|152737|166272|172174|179981|179983|179998|180003|180015|180017|180023|180031|180044|180048|180053|180056|180059|180062|180063|180065|180066|180078|180097|180099|180128|180157|180263|180268|181200|181204|181873|181892|181949|181953|181960|181998|182018|182038|182039|182044|182045|182054|182063|182088|182097|182101|182124|182129|182140|182152|182162|182183|182191|182194|182226|182255|182256|182257|182278|182280|182687|182697|182719|182774|182777|182785|182793|182807|185960|185962|185969|185971|185972|185973|185976|185977|185978|185981|185985|185993|185994|185995|185999|186084|186310|186312|186313|186317|190025|195590|198613|212112|212113|212114|212115|212117|212150|212151|212152|212154|212160|212162|212163|212165|212169|212170|212172|212174|212175|212179|212180|212183|212189|212193|212195|212208|212217|212220|212222|212229|212231|212233|212234|212238|212243|212245|212247|212255|212259|212263|212270|212298|212300|212302|212321|212328|212528|212529|212591|212596|212597|212600|212604|212606|214581|214597|214598|214603|214606|214607|214615|214626|214629|214639|215258|215365|215366|220980|220982|221113|221181|221184|221185|221188|221190|221192|221194|221195|221196|221198|221199|221200|221202|221215|221218|221221|221224|221226|221229|221233|221240|221246|221250|221259|221265|221266|221270|221278|221279|221280|221284|221285|221294|221299|221300|221303|221310|221312|221314|221377|221380|221383|221398|221399|221400|221403|221404|221406|221409|221412|221641|221709|221717|221718|221729|221730|221731|221732|221737|226296|226297|226298|226299|226300|226301|226302|226303|226304|226305|226306|226307|226308|226310|226314|226315|226327|226328|226329|228967|231527|231529|231545|231555|231567|231582|231600|231624|231675|231681|232512|232544|232574|232611|232617|232622|232632|232647|232651|232654|232698|232705|232717|232721|232729|232747|232761|232793|232807|232820|232828|232842|232880|232884|232969|232975|233496|233513|233522|233545|233549|233553|233579|233599|233606|233609|238356|238357|238776|238778|238779|238780|238782|238783|238785|238787|238791|238792|238794|238795|238796|238797|238798|238799|238800|238805|238810|238811|238812|238813|238834|238837|238843|238846|238848|238849|238855|238857|238858|238859|238863|238870|238881|238882|238885|238888|238890|238891|238898|238899|238903|238906|238907|238910|238911|238915|238916|238920|238931|238936|238942|238944|238945|238946|238948|238949|238952|238953|238957|238958|239030|239142|239149|239155|239157|239161|239163|239169|239173|239175|239176|239182|239186|239189|239954|240099|240100|240103|240105|240106|240111|240115|240117|240122|240125|240127|240133|240136|240144|240146|240148|240154|244372|244380|244390|244397|246922|246923|246925|248480|248481|248482|248483|248485|248491|248495|248498|248502|255062|259741|262399|262400|262401|262406|286667|286690|287401|289750|289786|289811|289826|289830|290145|290163|290919|290924|294547|306559|311641|321363|321373|321382|330608|330620|330631|337219|337231|337243|339147|339151|339170|353551|353819|358738|358744|359365|361860|369550|369556|369828|391353|391360|391362|391363|391384|391386|391390|391393|391400|391467|391468|391470|391472|391477|391478|391483|391490|391491|391555|391557|391560|391565|391579|391581|392704|392705|392723|392728|392731|392742|392743|392749|392752|392762|392764|392765|392774|392777|392790|392791|392795|392800|392825|392833|392836|392839|392845|392855|392858|392860|392866|392870|392874|392882|392883|392884|392885|392893|392896|392897|392905|392906|392914|392916|392918|392920|392923|392924|392927|392933|392942|392943|392944|392951|392958|392962|392963|392969|392975|392976|392981|392986|392990|392992|392997|393000|393004|393005|393007|393010|393014|393015|393031|393032|393037|393039|393052|393062|393067|393068|393074|393080|393086|393087|393093|393104|393116|393119|393121|393134|393144|393149|393164|393172|393177|393180|393195|393204|393222|393241|393263|393287|393289|393313|393316|393339|393349|393352|393362|393402|393437|393442|393453|393460|393486|393497|393501|393506|393515|393519|393548|393550|393649|393650|393686|393833|393834|393843|393871|393880|393896|393927|395248|395249|395501|395621|395681|395698|395705|395707|395730|395737|395739|395744|395749|395763|395766|395911|395914|395928|395932|395968|395971|395978|396024|396025|396049|396069|396073|396114|396334|396336|396342|396356|396360|396366|396375|396384|405769|405878|405910|405940|405943|405960|405972|406211|406238|406263|407165|407211|416961|419309|419336|419364|419370|419379|419385|419392|419395|419410|419418|419448|419463|419480|419494|419517|419532|419562|419565|419567|419571|419578|419586|420989|420991|427134|427135|427136|427137|427138|427141|427142|427143|427147|427148|427149|427151|427152|427154|427155|427157|427158|427159|427160|427161|427162|427164|427165|427166|427167|427170|427171|427174|427175|427176|427179|427181|427183|427184|427187|427188|427189|427190|427192|427193|427194|427195|427196|427197|427199|427200|427201|427203|427204|427205|427207|427209|427210|427211|427212|427213|427217|427218|427219|427220|427221|427222|427223|427224|427322|427323|427324|427326|427327|427328|427329|427330|427331|427334|427589|427590|427591|427592|427593|427594|427595|427596|427597|427598|427601|432566|432567|440016|443255|443264|451137|451233|451314|451338|451501|451579|452139|456817|457228|457356|472715|472813|472833|472865|472932|472967|473081|473108|473165|473179|473212|473377|474599|482522|482697|483382|483406|483474|483555|483586|485602|486902|486937|486983|486989|486996|487220|487223|487316|487320|487322|496233|496280|496281|496497|496586|496704|496760|496764|497094|518386|518537|518547|518578|522994|523114|540528|558123|558183|558205|561427|561604|561641|561652|561662|561664|561805|562694|567035|575668|575670|575671|575673|575674|575675|575676|575677|575678|575679|575680|575681|575682|575683|575684|575685|575688|575698|575699|575700|575701|575702|575703|575705|575706|575707|575781|575782|575783|576258|609082|610416|610900|610901|610902|610903|610904|610905|610906|610907|610908|610909|610910|610911|610912|610913|610914|610915|610916|610917|610918|610919|610920|610921|610922|610923|610924|610925|610926|610927|610928|610929|610930|610931|610932|610933|610934|610935|610936|610937|610938|610939|610940|610941|610942|610943|610944|610945|610946|610947|610948|610949|610950|610951|610952|610953|610954|610955|610956|610957|610958|610959|610960|610961|610962|610963|610964|610965|610966|610967|610968|610969|610970|610971|610972|610973|610974|610975|610976|610977|610978|610979|610980|610981|610982|610983|610984|610985|610987|611989|611990|611991|616598|616712|621134|621135|621153|621270|621271|621276|621925|621926|621927|621928|621929|621930|621931|621932|650973|654286|654289|654290|654494|654981|672143|861546|861548|905895|972457|977402|977403", + "text": "Lynch syndrome" + }, + { + "baseId": "16792|16794|16795|16796|16797|16798|16799|16801|16803|23970|23971|23980|24273|24276|24279|24281|24284|32119|32126|32128|32129|32133|32135|32136|32137|32138|32145|38609|45201|45202|45207|45208|45209|45210|45212|45215|45219|45220|45222|45223|45224|45225|45227|45228|45230|45231|45232|45233|45234|45235|45237|45238|45239|45240|45241|45242|45243|45244|45245|45246|45247|45249|45251|45255|45257|45258|45259|45261|45262|45346|45347|45348|45349|45350|45351|45352|45354|50026|50027|50028|50029|50030|50032|50033|50035|50071|50072|50073|50074|50075|50076|50077|50078|50079|50080|50081|50082|50083|50084|50085|50086|50087|50089|50090|50091|50140|50141|50142|50143|50144|50145|50146|50147|50148|50150|50151|50152|50153|50154|50155|50156|50157|50158|50159|50160|50161|51637|51638|51639|51640|51642|51666|94639|94641|94642|94646|94647|94648|94649|94650|94652|94654|94656|94657|94660|94661|94663|94665|94666|94667|94668|94669|94671|94672|94674|94676|94678|94682|94685|94687|94690|94691|94692|94693|94694|94698|94702|94703|94705|94706|94707|94708|94709|94711|94713|94714|94719|94720|94721|94722|94725|94727|94729|94730|94731|94733|94734|94735|94736|94737|94738|94739|94740|94741|94742|94743|94748|94750|94752|94753|94754|94755|94756|94759|94760|94761|94762|94763|94765|94778|94779|94781|94783|94786|94788|94795|94796|94799|94802|94804|94807|94810|94811|94812|94813|94814|94815|94816|94818|94821|94826|94829|94831|94832|94833|94834|94836|94837|94838|94840|94842|94843|94844|94845|94851|94852|94855|94856|94857|94861|94864|94865|94869|94871|94873|94874|94876|94877|94878|94883|94886|94888|94889|94895|94897|94898|94902|94908|94916|94917|94921|94922|94923|94924|94931|94932|94934|94935|94937|94943|94944|94946|94947|94948|94949|94950|94951|94953|94955|94956|94958|94959|94960|94962|94964|94968|94970|94971|94972|94974|94975|94980|94981|94989|94992|95008|95009|95010|95012|95014|95015|95019|95020|95021|95022|95025|95026|95028|95029|95033|95036|95037|95038|95039|95042|95044|95045|95046|95047|95048|95063|95067|95075|95078|95079|95090|95093|95103|95104|95107|95114|95117|95119|95122|95123|95125|95127|95132|95135|95146|95147|95150|95151|95152|95157|95158|95159|95160|95162|95164|95165|95170|95172|95179|95183|95186|95188|95192|95201|95207|95209|95211|95212|95213|95215|95218|95219|95224|95225|95226|95227|95229|95231|95233|95234|95235|95242|95253|95254|95255|95256|95257|95265|95266|95267|95268|95276|95283|95286|95292|95294|95298|95300|95308|95312|95313|95315|95316|95320|95323|95324|95326|95328|95329|95331|95332|95337|95342|95343|95344|95351|95355|95360|95362|95366|95369|95374|95376|95377|95380|95381|95383|95384|95385|95389|95391|95394|95399|95400|95404|95406|95414|95419|95420|95421|95425|95426|95427|95428|95429|95431|95433|95436|95438|95439|95442|95447|95448|95449|95451|95453|95454|95455|95461|95466|95468|95475|95477|95479|95480|95481|95483|95484|95485|95486|95487|95488|95490|95494|95497|95503|95506|95512|95514|95516|95522|95523|95535|95539|95541|95542|95545|95550|95552|95555|95556|95557|95558|95561|95562|95564|95565|95568|95571|95574|95575|95576|95581|95586|95588|95590|95592|95594|95596|95600|95601|95602|95603|95606|95611|95614|95615|95616|95621|95622|95623|95624|95625|95640|95645|95646|95650|95652|95657|95658|95660|95662|95663|95665|95666|95668|95669|95681|95685|95690|95691|95694|95697|95703|95704|95717|95718|95724|95725|95728|95731|95732|95734|95741|95747|95748|95756|95759|95760|95764|95765|95767|95770|95771|95774|95775|95777|95780|95784|95785|95786|95789|95792|95793|95799|95804|95805|95806|95809|95812|95813|95814|95815|95816|95823|95829|95830|95834|95835|95841|95846|95854|95855|95856|95861|95871|95878|95881|95882|95887|95888|95889|95890|95895|95898|95904|95909|95912|95915|95916|95918|95919|95923|95926|95927|95930|95977|95982|95983|95984|95987|95988|95989|95991|95994|96003|96004|96014|96016|96025|96028|96029|96030|96031|96032|96035|96038|96039|96040|96041|96044|96045|96047|96048|96049|96052|96058|96061|96064|96065|96067|96091|96094|96098|96099|96102|96103|96105|96111|96112|96116|96123|96129|96132|96135|96137|96143|96145|96149|96150|96152|96154|96157|96160|96169|96171|96172|96173|96176|96177|96182|96187|96188|96189|96194|96195|96196|96202|96203|96205|96212|96219|96220|96222|96223|96225|96231|96238|96241|96242|96243|96246|96248|96256|96257|96258|96264|96269|96271|96272|96273|96274|96277|96279|96280|96283|96286|96287|96290|96291|96293|96297|96300|96307|96308|96310|96318|96329|96330|96331|96341|96343|96346|96348|96349|96350|96353|96356|96361|96362|96367|96378|96379|96381|96382|96384|96385|96388|96394|96396|96402|96407|96408|96412|96417|96420|96421|96423|96424|96425|96428|96430|96432|96433|96437|96439|96440|96443|96447|96449|96451|96458|96460|96461|96462|96463|96465|96466|96468|96470|96471|96473|96474|96475|96478|96479|96481|96490|96491|96494|96496|96497|96498|96503|96505|96506|96510|96512|96513|96514|96516|96517|96518|96520|96522|96525|96526|96528|96529|96530|96531|96535|96536|96537|96538|96539|96543|96545|96546|96564|96565|96567|96569|96571|96572|96573|96574|96575|96576|96578|96580|96581|96585|96586|96587|96588|96589|96590|96592|96594|96600|96601|96608|96609|96610|96614|96615|96616|96623|96624|96625|96632|96636|96646|96647|96649|96652|96653|96655|96656|96657|96660|96664|96669|96671|96675|96678|96680|96681|96695|96697|96707|96708|96711|96714|96717|96718|96720|96721|96722|96724|96727|96728|96729|96735|96736|96739|96742|96743|96744|96746|96747|96748|96764|96765|96774|96776|96778|96779|96780|96781|96785|96786|96787|96788|96790|96792|96793|96794|96795|96796|96798|96799|96802|96803|96804|96805|96806|96808|96809|96812|96813|96815|96816|96818|96825|96826|96830|96836|96837|96841|96843|96844|96845|96850|96851|96852|96856|96857|96858|96861|98484|98485|98486|98572|99143|132404|132489|132493|132498|132502|133009|133011|133012|133014|133015|133017|133018|133019|133020|133021|133022|133023|133024|133025|133026|133027|133028|133029|133030|133031|133032|133033|133034|133035|133036|133037|133038|133039|133041|133042|133043|133044|133045|133046|133048|133049|133050|133051|133052|133053|133054|133055|133057|133060|133061|133062|133063|133064|133065|133066|133067|133068|133069|133070|133071|133072|133073|133074|133075|133076|133077|133078|133079|133080|133082|133083|133084|133085|133086|133087|133088|133089|133090|133091|133093|133094|133095|133096|133097|133098|133099|133100|133101|133103|133104|133105|133106|133107|133108|133110|133111|133112|133208|133209|133210|133211|133212|133213|133214|133215|133216|133217|133218|133219|133220|133221|133222|133223|133224|133225|133226|133227|133228|133230|133231|133232|133233|133234|133235|133236|133237|133238|133239|133240|133245|133246|133247|133248|133249|133250|133251|133252|133253|133254|133255|133256|133257|133258|133259|133305|133307|133308|136445|136478|136496|136506|136509|136519|136520|138395|138396|138397|138579|138580|138581|138582|138583|138584|138585|138587|138588|138589|138590|138591|138592|138594|138595|138801|138803|138804|138805|138806|138808|138809|138810|138811|139540|139541|139542|139544|139545|139546|139547|139548|139549|139550|139551|139552|139553|139554|139555|139556|139557|139558|139559|139560|139561|139563|139564|139565|139566|139567|139568|139569|139570|139571|139572|139573|139574|139575|139576|139577|139644|139645|139646|139647|139649|139650|139651|139652|139653|139654|139655|139656|139657|139658|139659|139729|139730|139739|139745|140919|141933|141957|141958|141959|141960|141961|141962|142400|142403|142404|142406|142408|142409|150472|150473|150488|150493|150494|150499|150506|150511|150518|150524|150543|150550|150552|150557|150561|150562|150578|150580|150594|150598|150602|150606|150616|150637|150651|150661|150674|150675|150714|150746|150756|150772|150792|150794|150799|150808|150829|150835|150836|150861|150877|150880|150886|150891|150894|150902|150911|150946|150950|150972|150979|150980|150988|150994|150995|151010|151013|151036|151041|151042|151065|151078|151079|151108|151109|151110|151120|151144|151148|151151|151156|151189|151214|151216|151237|151239|151255|151299|151303|151317|151320|151364|151365|151369|151374|151378|151381|151397|151427|151465|151472|151483|151484|151546|151585|151588|151599|151605|151621|151622|151627|151630|151632|151638|151722|151723|151731|151780|151824|151843|151877|151882|151883|151888|151895|151932|151946|151948|151949|151958|151965|151971|151974|151978|151984|151986|151990|151991|151993|152019|152041|152049|152055|152063|152074|152127|152135|152140|152153|152161|152175|152178|152204|152209|152210|152222|152223|152230|152239|152253|152275|152277|152283|152286|152290|152291|152301|152311|152327|152332|152334|152337|152339|152349|152364|152372|152377|152378|152379|152384|152385|152386|152389|152394|152399|152402|152412|152422|152429|152432|152435|152452|152479|152481|152482|152487|152491|152492|152495|152552|152556|152570|152586|152589|152591|152593|152604|152609|152611|152621|152643|152650|152660|152673|152674|152675|152676|152678|152684|152694|152716|152721|152724|152732|166272|166275|167463|171076|171077|172174|179979|179980|179981|179982|179984|179985|179986|179988|179989|179990|179991|179993|179994|179995|179997|179998|180000|180001|180002|180005|180007|180009|180010|180011|180012|180014|180015|180016|180017|180020|180021|180022|180023|180024|180027|180028|180029|180031|180033|180034|180036|180037|180038|180039|180040|180042|180044|180045|180046|180048|180049|180050|180051|180053|180054|180055|180056|180057|180058|180059|180060|180061|180062|180063|180064|180066|180067|180068|180069|180070|180071|180072|180073|180074|180075|180077|180078|180079|180080|180081|180082|180083|180084|180085|180086|180087|180088|180089|180090|180092|180093|180095|180096|180098|180099|180100|180103|180104|180128|180129|180132|180133|180134|180135|180138|180139|180140|180143|180144|180148|180149|180150|180151|180153|180154|180157|180158|180254|180255|180256|180257|180259|180260|180261|180263|180264|180265|180267|180271|180272|180273|181201|181202|181203|181861|181886|181888|181889|181890|181891|181892|181894|181895|181896|181897|181898|181899|181900|181901|181904|181905|181907|181908|181909|181913|181915|181916|181917|181918|181922|181923|181927|181928|181929|181930|181931|181933|181934|181935|181936|181937|181938|181939|181940|181941|181942|181943|181944|181946|181948|181949|181951|181952|181953|181954|181955|181957|181958|181959|181960|181963|181964|181965|181967|181968|181969|181970|181971|181972|181973|181975|181976|181977|181978|181979|181980|181981|181982|181984|181985|181986|181988|181989|181990|181991|181992|181993|181995|181996|181998|182000|182001|182002|182003|182004|182005|182008|182009|182010|182014|182015|182016|182017|182018|182019|182020|182023|182025|182027|182028|182029|182030|182031|182032|182033|182034|182037|182038|182039|182040|182042|182043|182045|182046|182048|182053|182055|182058|182060|182061|182062|182063|182065|182066|182068|182070|182072|182073|182074|182075|182077|182079|182080|182082|182083|182084|182085|182086|182087|182088|182089|182090|182091|182095|182097|182098|182099|182100|182101|182103|182104|182105|182106|182107|182109|182110|182111|182114|182115|182116|182118|182120|182123|182124|182125|182126|182127|182129|182130|182133|182134|182135|182136|182138|182139|182140|182142|182143|182144|182145|182146|182147|182148|182150|182152|182153|182154|182155|182156|182157|182159|182160|182161|182162|182163|182164|182165|182166|182167|182168|182169|182170|182171|182173|182174|182175|182176|182177|182178|182179|182182|182183|182184|182185|182188|182189|182190|182191|182192|182194|182195|182196|182197|182214|182216|182217|182218|182220|182221|182223|182224|182225|182226|182227|182228|182229|182230|182231|182234|182235|182236|182239|182243|182244|182247|182248|182250|182251|182252|182253|182254|182255|182256|182257|182258|182259|182261|182262|182263|182264|182265|182268|182269|182270|182271|182274|182275|182276|182277|182278|182279|182280|182281|182282|182283|182284|182285|182287|182288|182290|182291|182294|182296|182300|182301|182302|182306|182307|182308|182682|182683|182684|182685|182686|182687|182689|182690|182691|182692|182694|182696|182697|182698|182699|182700|182701|182702|182703|182705|182706|182708|182709|182710|182713|182714|182716|182717|182718|182719|182721|182722|182723|182724|182726|182727|182728|182729|182730|182732|182733|182734|182735|182736|182737|182738|182740|182741|182742|182743|182744|182745|182746|182747|182748|182749|182751|182752|182753|182754|182756|182758|182759|182760|182761|182762|182763|182764|182765|182766|182767|182768|182769|182770|182771|182772|182773|182774|182775|182776|182777|182779|182780|182781|182782|182783|182784|182785|182786|182787|182789|182790|182791|182792|182793|182794|182795|182796|182797|182798|182799|182801|182802|182803|182805|182806|182807|182808|182810|182811|182812|182813|182814|182815|182816|182817|182818|182819|182820|182821|182823|185974|185975|185977|185979|185980|185982|185983|185984|185986|185987|185989|185990|185991|185992|185995|185997|185998|186000|186001|186004|186005|186013|186014|186015|186016|186017|186079|186080|186081|186082|186083|186085|186086|186313|186317|190022|190024|190025|190109|191164|194275|194276|195590|198613|198614|212153|212155|212158|212161|212166|212171|212176|212182|212185|212186|212187|212188|212190|212191|212192|212193|212196|212197|212198|212199|212200|212201|212202|212203|212204|212205|212206|212207|212209|212210|212211|212212|212213|212214|212215|212216|212218|212219|212221|212222|212223|212224|212225|212226|212227|212228|212233|212235|212236|212237|212239|212240|212241|212246|212248|212249|212250|212253|212254|212257|212258|212261|212262|212264|212268|212269|212297|212300|212301|212303|212304|212305|212306|212308|212309|212310|212311|212312|212313|212314|212315|212316|212317|212318|212320|212322|212323|212324|212325|212326|212327|212329|212330|212586|212587|212588|212589|212590|212592|212593|212594|212598|212599|212601|212602|212603|212605|212607|212609|212610|212611|212612|212613|214575|214577|214582|214586|214589|214590|214591|214593|214594|214596|214597|214598|214600|214603|214606|214607|214608|214615|214616|214625|214628|214632|214639|214642|215258|220980|221182|221183|221202|221204|221205|221206|221207|221208|221209|221210|221211|221212|221213|221214|221216|221217|221219|221220|221222|221223|221225|221227|221228|221231|221232|221235|221236|221237|221238|221239|221241|221242|221243|221244|221245|221246|221247|221248|221249|221251|221252|221253|221254|221255|221256|221257|221258|221259|221260|221261|221262|221263|221264|221267|221268|221269|221271|221272|221274|221275|221276|221277|221281|221282|221283|221284|221286|221287|221288|221289|221290|221291|221292|221293|221295|221296|221297|221298|221299|221301|221302|221303|221304|221305|221306|221307|221308|221309|221311|221313|221314|221376|221378|221379|221381|221382|221383|221385|221386|221387|221388|221389|221391|221392|221393|221394|221395|221396|221397|221398|221401|221402|221403|221405|221407|221408|221410|221411|221703|221705|221706|221707|221708|221710|221712|221713|221714|221715|221716|221719|221720|221721|221722|221723|221724|221725|221726|221727|221728|221733|221734|221735|221736|226296|226298|226299|226300|226301|226302|226303|226304|226305|226306|226307|226314|226315|226327|226328|226329|228967|231520|231526|231527|231528|231532|231535|231537|231541|231544|231547|231549|231550|231551|231552|231553|231554|231555|231556|231564|231565|231567|231569|231570|231572|231573|231574|231576|231577|231580|231581|231582|231584|231585|231586|231587|231590|231592|231594|231599|231607|231609|231610|231612|231613|231614|231616|231617|231618|231619|231621|231623|231624|231625|231626|231627|231628|231655|231656|231657|231658|231659|231660|231662|231663|231664|231666|231668|231669|231670|231671|231673|231675|231676|231677|231678|231680|231681|231682|231683|231684|231686|231687|231688|231691|231692|231694|231695|231698|232502|232504|232505|232506|232508|232509|232511|232512|232513|232515|232516|232517|232522|232524|232525|232528|232530|232535|232536|232538|232540|232542|232544|232545|232547|232550|232551|232553|232554|232555|232556|232558|232559|232560|232562|232564|232566|232568|232570|232571|232572|232574|232576|232578|232579|232580|232583|232584|232587|232588|232589|232590|232591|232592|232593|232595|232597|232601|232602|232603|232606|232607|232608|232609|232610|232611|232612|232615|232616|232618|232620|232621|232622|232624|232625|232626|232629|232630|232631|232633|232635|232639|232640|232641|232643|232644|232646|232647|232648|232650|232652|232653|232654|232655|232656|232657|232660|232662|232664|232665|232667|232668|232669|232670|232671|232674|232677|232679|232680|232682|232683|232684|232691|232692|232693|232694|232695|232697|232698|232699|232700|232701|232702|232705|232707|232708|232712|232713|232714|232715|232716|232717|232718|232719|232721|232722|232723|232726|232727|232728|232732|232733|232736|232737|232740|232741|232742|232744|232747|232748|232750|232752|232754|232755|232757|232761|232762|232763|232764|232765|232766|232767|232769|232770|232771|232772|232774|232775|232777|232778|232780|232781|232784|232785|232786|232787|232789|232791|232792|232793|232794|232795|232796|232797|232798|232800|232801|232802|232804|232806|232807|232808|232809|232812|232813|232815|232816|232817|232818|232819|232820|232821|232822|232823|232824|232825|232826|232827|232829|232831|232832|232833|232834|232835|232836|232837|232840|232841|232842|232843|232844|232845|232847|232850|232851|232852|232853|232854|232855|232857|232873|232876|232877|232880|232885|232886|232888|232890|232893|232894|232897|232898|232899|232905|232911|232912|232915|232916|232917|232918|232919|232921|232923|232926|232927|232928|232931|232933|232937|232941|232942|232943|232944|232946|232947|232948|232953|232954|232956|232957|232959|232962|232964|232966|232967|232970|232973|232974|232975|232977|232978|232979|232980|233471|233473|233474|233475|233477|233479|233480|233481|233483|233484|233485|233487|233488|233489|233490|233492|233493|233494|233497|233500|233502|233503|233504|233505|233506|233507|233509|233512|233513|233514|233515|233516|233518|233519|233520|233521|233522|233525|233526|233527|233530|233531|233532|233533|233535|233536|233537|233538|233539|233541|233542|233544|233545|233549|233550|233551|233552|233554|233555|233556|233558|233560|233562|233564|233565|233566|233567|233568|233569|233571|233572|233574|233577|233578|233579|233580|233581|233584|233585|233586|233588|233589|233590|233591|233594|233595|233597|233598|233599|233600|233601|233602|233605|233607|233610|233611|233612|233614|233615|238802|238803|238804|238806|238807|238808|238809|238810|238814|238815|238816|238817|238818|238819|238820|238821|238822|238823|238824|238826|238827|238828|238829|238831|238833|238834|238835|238836|238838|238839|238840|238841|238842|238844|238845|238847|238850|238851|238852|238853|238854|238860|238861|238862|238864|238865|238866|238867|238868|238869|238871|238872|238873|238874|238875|238877|238878|238879|238880|238881|238882|238883|238884|238887|238889|238893|238896|238900|238901|238902|238904|238905|238907|238908|238909|238911|238912|238913|238914|238917|238918|238919|238921|238922|238923|238924|238925|238926|238928|238929|238932|238933|238934|238935|238937|238938|238939|238941|238942|238943|238946|238950|238951|238954|238955|238956|238959|239140|239141|239143|239145|239146|239147|239148|239149|239152|239154|239156|239159|239160|239162|239164|239166|239167|239168|239170|239171|239172|239174|239175|239177|239179|239180|239183|239184|239185|239187|239188|239190|239191|240101|240102|240107|240108|240109|240110|240113|240114|240116|240118|240119|240120|240121|240123|240124|240126|240128|240129|240130|240131|240132|240133|240134|240135|240138|240139|240140|240141|240142|240145|240147|240149|240150|240151|240152|240153|240155|240156|240157|244366|244367|244370|244372|244373|244376|244377|244378|244379|244381|244383|244385|244389|244391|244392|244393|244394|244395|244398|244399|244409|246922|246925|250742|251099|259738|259740|259741|259761|259868|262407|270566|275543|286667|286681|286690|287401|289830|289831|290191|290207|290924|294554|306559|311471|311622|358720|358722|358727|358738|358743|358744|358747|358803|359365|359501|359650|359807|361856|366411|366418|366419|366420|366430|366450|366479|366480|366492|366494|366517|366530|366535|366547|366549|366556|366577|366582|366635|366641|366651|366654|366666|366676|366678|366696|366708|366710|366712|366715|366725|366726|366728|366739|366741|366744|366745|366750|366752|366753|366762|366766|366768|366771|366773|366774|366776|366783|366785|366792|366796|366805|366812|366827|366848|366851|366854|367119|367127|367132|367139|367147|367155|367162|367181|367182|367382|367390|367392|367399|367400|367402|367404|367410|367412|367418|367425|367431|367434|367435|367437|367439|367446|367448|367450|367459|367460|367461|367488|367498|367506|367519|367534|367537|367564|367569|367578|367579|367582|368406|368416|368417|368424|368446|368470|369171|369177|369184|369189|369192|369210|369213|369218|369234|369505|369523|369531|369533|369541|369554|369557|369813|369823|369828|369830|369836|369838|369872|369873|369886|371191|371194|371209|371227|371246|389527|392670|392675|392681|392686|392692|392697|392698|392699|392701|392703|392710|392713|392721|392724|392727|392733|392735|392736|392738|392739|392744|392747|392755|392759|392763|392767|392768|392771|392774|392775|392779|392780|392784|392793|392794|392796|392804|392805|392808|392810|392813|392814|392817|392820|392825|392827|392829|392830|392832|392837|392838|392840|392841|392842|392843|392844|392846|392847|392848|392849|392851|392853|392857|392859|392860|392863|392864|392867|392868|392869|392876|392878|392879|392880|392881|392886|392887|392888|392889|392890|392892|392894|392895|392898|392902|392904|392907|392908|392910|392919|392922|392925|392930|392931|392932|392936|392937|392939|392941|392945|392946|392947|392948|392949|392951|392952|392954|392956|392957|392964|392965|392967|392968|392971|392977|392978|392982|392983|392984|392985|392988|392989|392991|392993|392994|392995|392998|393001|393002|393003|393008|393009|393013|393014|393017|393019|393022|393024|393026|393027|393029|393033|393034|393040|393041|393042|393043|393045|393046|393047|393049|393051|393053|393054|393055|393056|393057|393065|393069|393073|393077|393078|393083|393084|393088|393089|393094|393095|393097|393101|393103|393108|393110|393124|393126|393128|393130|393132|393138|393140|393142|393145|393148|393154|393155|393161|393162|393164|393170|393172|393182|393184|393192|393193|393197|393199|393201|393202|393207|393214|393215|393237|393239|393246|393251|393253|393265|393268|393290|393302|393305|393308|393318|393323|393336|393340|393344|393348|393356|393364|393366|393376|393377|393381|393382|393386|393398|393399|393422|393425|393428|393430|393444|393459|393462|393464|393473|393478|393480|393482|393488|393490|393492|393497|393502|393507|393509|393512|393513|393517|393524|393526|393527|393528|393532|393536|393539|393543|393546|393548|393655|393663|393666|393670|393672|393681|393687|393705|393706|393717|393731|393736|393741|393832|393837|393843|393850|393857|393861|393864|393885|393889|393892|393894|393897|393904|393913|393915|393937|395688|395702|395710|395714|395718|395732|395740|395745|395746|395753|395756|395769|395918|395923|395925|395929|395935|395940|395941|395947|395953|395955|395958|395963|395965|395972|395976|395978|395992|395999|396000|396001|396023|396026|396031|396042|396044|396048|396058|396062|396070|396076|396087|396094|396095|396106|396111|396117|396118|396333|396336|396340|396341|396343|396349|396358|396360|396364|396372|396398|405746|405747|405748|405749|405750|405751|405752|405756|405757|405759|405761|405762|405767|405768|405769|405771|405773|405776|405780|405781|405782|405787|405788|405791|405792|405797|405798|405799|405800|405802|405804|405807|405809|405810|405812|405817|405818|405824|405825|405830|405831|405832|405833|405834|405835|405836|405837|405839|405840|405843|405844|405846|405847|405856|405859|405861|405862|405864|405866|405869|405870|405871|405874|405878|405879|405880|405882|405883|405884|405886|405887|405890|405892|405896|405897|405898|405900|405902|405903|405905|405906|405907|405909|405910|405913|405914|405917|405919|405920|405923|405924|405927|405928|405930|405932|405934|405935|405936|405940|405941|405942|405946|405947|405948|405949|405950|405951|405952|405953|405958|405959|405960|405961|405962|405965|405966|405970|405972|405974|405975|405976|406192|406195|406196|406197|406198|406203|406204|406206|406207|406209|406211|406213|406215|406216|406218|406222|406224|406227|406233|406234|406238|406240|406241|406242|406247|406251|406252|406254|406258|406259|406260|406263|407166|407167|407168|407169|407170|407171|407175|407176|407177|407179|407181|407182|407184|407186|407188|407189|407190|407192|407195|407196|407197|407198|407201|407204|407207|407208|407211|407212|407213|407215|407218|407221|407222|407223|407224|407226|407229|407230|407233|407234|407236|416961|416964|417649|419309|419314|419316|419321|419322|419323|419330|419340|419342|419344|419345|419347|419349|419353|419355|419357|419368|419388|419390|419392|419395|419397|419416|419417|419419|419422|419425|419428|419431|419435|419436|419437|419438|419439|419441|419443|419444|419446|419449|419455|419457|419458|419463|419465|419467|419469|419470|419471|419472|419473|419475|419476|419478|419480|419484|419486|419497|419503|419505|419507|419509|419511|419520|419522|419532|419541|419543|419545|419548|419549|419558|419562|419568|419569|419572|419573|419578|419580|419582|419584|419587|427152|427153|427155|427157|427159|427162|427167|427171|427181|427184|427193|427208|427213|427214|427327|428061|428062|432509|432510|432511|432513|432514|432516|432520|432522|432523|432525|432531|432534|432559|432561|432571|432572|432643|432646|432648|432650|433701|443258|443262|443263|443264|443265|443266|443267|443417|443419|443421|443422|443423|443424|443425|444148|448400|448415|448416|448506|448509|448526|448536|448541|448542|448548|448553|448557|448568|448573|448575|448579|448592|448602|448605|448649|448654|450944|450949|450952|450955|450967|450972|450977|450980|450981|450984|450985|450988|450991|450993|450996|451003|451012|451014|451018|451031|451036|451042|451062|451063|451066|451067|451070|451073|451075|451077|451082|451084|451085|451086|451087|451088|451089|451090|451092|451093|451096|451097|451102|451103|451108|451109|451111|451114|451116|451119|451120|451121|451123|451129|451130|451131|451132|451133|451137|451138|451141|451142|451143|451149|451150|451151|451155|451156|451159|451164|451165|451166|451167|451168|451170|451172|451174|451175|451176|451177|451179|451181|451184|451186|451189|451191|451193|451195|451197|451199|451200|451201|451202|451203|451208|451209|451211|451213|451215|451218|451220|451221|451223|451227|451228|451229|451232|451233|451234|451237|451242|451243|451244|451246|451247|451248|451249|451250|451252|451253|451254|451255|451257|451258|451259|451260|451261|451262|451263|451264|451265|451266|451267|451268|451269|451270|451271|451272|451273|451274|451275|451276|451277|451278|451279|451280|451281|451282|451283|451284|451285|451286|451287|451288|451289|451290|451291|451292|451293|451294|451295|451296|451297|451298|451299|451300|451301|451302|451303|451304|451305|451306|451307|451308|451309|451310|451311|451312|451313|451314|451315|451316|451317|451318|451319|451320|451321|451322|451323|451324|451325|451326|451327|451328|451329|451330|451331|451332|451333|451334|451335|451336|451337|451338|451339|451340|451341|451342|451343|451344|451345|451346|451347|451348|451349|451350|451351|451352|451353|451354|451355|451356|451357|451358|451359|451361|451362|451363|451364|451365|451368|451369|451370|451371|451372|451375|451377|451379|451380|451381|451382|451383|451385|451386|451387|451390|451391|451392|451398|451401|451404|451406|451408|451411|451413|451414|451415|451418|451419|451420|451424|451425|451426|451427|451432|451433|451435|451436|451439|451440|451442|451444|451445|451447|451448|451450|451451|451453|451454|451455|451456|451457|451458|451460|451463|451465|451466|451469|451470|451471|451473|451474|451475|451476|451478|451479|451481|451482|451484|451485|451487|451488|451489|451490|451493|451494|451495|451496|451498|451500|451501|451502|451503|451504|451505|451507|451509|451511|451513|451514|451515|451517|451518|451519|451522|451523|451524|451526|451528|451531|451532|451537|451538|451541|451543|451544|451546|451547|451548|451550|451551|451552|451553|451554|451555|451556|451560|451568|451569|451571|451573|451574|451575|451576|451579|451582|451585|451587|451589|451594|451596|451598|451601|451604|451608|451609|451611|451614|451615|451620|451622|451624|451626|451628|451630|451633|451635|451636|451638|451639|451640|451641|451642|451646|451651|451653|451655|451657|451658|451659|451661|451664|451667|451670|451671|451675|451676|451677|451678|451679|451682|451683|451685|451686|451696|451697|451698|451702|451803|451885|452022|452024|452076|452079|452084|452087|452089|452090|452093|452095|452097|452098|452100|452102|452105|452106|452108|452112|452115|452117|452125|452127|452133|452135|452137|452139|452140|452143|452146|452148|452341|452343|452345|452348|452351|452352|452353|452354|452369|452371|452373|452375|452376|452382|452384|452385|452387|452389|452390|452392|452394|452400|452401|452402|452404|452405|452407|452409|452411|452413|452428|452431|452433|452435|452442|452444|452447|452453|452458|452469|452477|452482|452485|452494|452521|452524|452528|452548|452560|452563|452568|452574|452575|452578|452594|452612|452616|452618|452620|452622|452625|452627|452630|452632|452639|452641|452643|452645|452647|452649|452665|452671|452672|452676|452681|452684|455868|455879|456123|456126|456133|456139|456141|456470|456473|456479|456760|456764|456768|456770|456774|456778|456783|456792|456794|456798|456802|456804|456817|456826|456827|456828|456829|456833|456835|456837|456838|456841|456852|456858|456860|456866|457179|457190|457195|457197|457201|457203|457207|457210|457214|457221|457222|457228|457229|457242|457251|457256|457260|457262|457269|457270|457285|457292|457293|457295|457304|457309|457314|457318|457325|457329|457330|457334|457339|457342|457344|457345|457356|457365|457373|457377|457395|457396|457413|457415|457417|457419|457421|457432|457434|457439|457443|457449|457452|457454|457459|457480|457484|457487|457489|457491|457494|457497|457500|457505|457507|457518|457520|457522|457813|457822|457824|457825|457828|457831|457834|457841|457842|457845|457848|457852|457853|457854|457858|457859|457861|457863|457871|457877|457881|457889|457891|457897|457899|457903|457905|472718|472727|472736|472738|472756|472758|472765|472768|472774|472775|472779|472781|472782|472785|472786|472788|472789|472794|472797|472798|472804|472806|472808|472810|472812|472814|472815|472816|472820|472822|472823|472825|472830|472831|472833|472834|472839|472849|472852|472853|472865|472866|472869|472872|472873|472874|472875|472876|472877|472878|472882|472883|472889|472891|472894|472895|472897|472905|472910|472913|472914|472916|472917|472922|472924|472925|472926|472927|472932|472934|472935|472939|472942|472945|472946|472947|472950|472952|472955|472956|472959|472961|472967|472973|472974|472978|472983|472986|472987|472988|472995|472996|473000|473001|473003|473005|473006|473008|473009|473011|473013|473015|473017|473018|473020|473025|473027|473032|473033|473035|473036|473041|473045|473049|473051|473055|473058|473063|473065|473067|473077|473080|473083|473084|473085|473086|473088|473090|473093|473097|473099|473105|473108|473109|473111|473114|473115|473116|473117|473118|473120|473124|473125|473133|473136|473137|473139|473140|473146|473147|473148|473149|473151|473152|473153|473154|473155|473156|473159|473163|473164|473166|473168|473173|473174|473175|473176|473177|473178|473190|473193|473196|473197|473198|473199|473202|473204|473205|473208|473209|473210|473211|473218|473219|473220|473221|473222|473228|473234|473236|473237|473239|473240|473245|473251|473254|473256|473257|473258|473259|473260|473265|473270|473284|473285|473291|473292|473294|473295|473299|473303|473306|473316|473318|473319|473320|473324|473328|473331|473333|473335|473338|473339|473341|473342|473351|473354|473360|473361|473364|473369|473370|473376|473377|473378|473379|473385|473386|473394|473398|473399|473400|473401|473402|473403|473408|473410|473411|473413|473417|473420|473421|473426|473429|473430|473434|473436|473442|473448|473460|473466|473476|473477|473481|473482|473486|473488|473492|473493|473495|473510|473516|473517|473526|473549|473558|473567|473568|473575|473593|473599|473623|473640|473642|473643|473649|473661|474500|474501|474510|474515|474518|474521|474533|474534|474538|474540|474541|474547|474555|474561|474567|474569|474573|474577|474578|474580|474581|474583|474584|474585|474586|474588|474589|474594|474599|474600|474601|474605|474609|474610|474611|474612|474615|474616|474620|474626|474636|474642|474643|474645|474647|474648|474649|474650|474651|474656|474657|474658|474661|474666|474670|474676|474677|474678|474679|474680|474681|474686|474687|474688|474689|474691|474692|474705|474706|474711|474712|474714|474717|474719|474726|474733|474748|474752|474761|474766|474769|474772|474774|474778|474784|474796|474805|474833|474834|474843|474855|482394|482396|482397|482398|482405|482407|482409|482410|482413|482415|482416|482418|482423|482424|482427|482431|482432|482433|482434|482436|482440|482442|482447|482449|482450|482452|482453|482454|482455|482456|482458|482459|482463|482466|482470|482471|482472|482478|482480|482482|482483|482485|482486|482489|482491|482495|482500|482505|482506|482518|482522|482530|482549|482550|482563|482589|482653|482665|482668|482704|482715|483296|483299|483320|483321|483341|483342|483344|483347|483349|483355|483357|483365|483366|483371|483382|483388|483399|483414|483418|483423|483431|483440|483451|483456|483457|483458|483461|483465|483468|483469|483471|483474|483476|483481|483483|483486|483487|483490|483493|483495|483497|483504|483520|483527|483531|483533|483548|483557|483564|483568|483577|483579|483586|483589|483595|483601|483606|483616|483632|483634|483639|483886|483893|483898|483922|483942|483947|483948|483958|483970|483979|483996|484009|484121|484132|484145|485596|485597|485602|485609|486239|486919|486923|486933|486966|486969|486982|486989|486996|486999|487002|487003|487006|487010|487082|487094|487220|487225|487307|487316|487320|487353|489475|496233|496281|496704|496888|499753|499799|499821|499828|500011|500167|500174|500175|500196|500236|500257|500268|500468|501768|502067|502070|502090|502415|502426|516195|516196|516203|516204|516207|516214|516222|516229|516231|516235|516240|516241|516245|516328|516333|516341|518262|518269|518270|518274|518275|518277|518281|518282|518285|518288|518293|518294|518295|518297|518299|518300|518303|518304|518307|518308|518309|518310|518312|518313|518314|518315|518316|518318|518319|518320|518322|518324|518325|518326|518332|518333|518334|518335|518336|518337|518338|518340|518341|518342|518346|518347|518348|518349|518350|518351|518352|518353|518355|518357|518359|518360|518363|518365|518367|518368|518369|518370|518371|518372|518373|518374|518376|518378|518379|518380|518381|518382|518383|518384|518385|518386|518388|518389|518390|518391|518392|518393|518394|518395|518396|518397|518398|518399|518400|518401|518403|518404|518405|518406|518407|518408|518409|518410|518411|518412|518413|518414|518415|518416|518417|518418|518419|518420|518421|518422|518423|518424|518425|518426|518427|518428|518429|518430|518431|518432|518433|518434|518435|518436|518437|518438|518439|518440|518441|518442|518443|518444|518445|518446|518447|518448|518449|518450|518451|518452|518453|518454|518455|518456|518458|518459|518460|518461|518462|518463|518464|518465|518467|518468|518469|518470|518471|518472|518473|518474|518475|518476|518477|518478|518479|518480|518481|518482|518483|518485|518487|518488|518490|518491|518492|518502|518504|518506|518507|518509|518511|518513|518515|518518|518522|518523|518524|518527|518529|518530|518532|518533|518537|518538|518545|518546|518547|518549|518552|518553|518555|518559|518560|518570|518572|518574|518576|518578|518586|518589|518596|518605|518608|518612|518812|518813|518891|519086|519087|519088|519093|519097|519098|519100|519104|519111|519112|519114|519119|519123|519124|519130|519132|519141|519145|519150|519165|519168|519174|519182|519183|519186|519188|519262|519264|519274|519275|519276|519278|519280|519282|519285|519286|519287|519288|519289|519291|519293|519294|519298|519300|519309|519311|519313|519314|519315|519318|519320|519322|519323|519324|519328|519330|519331|519336|519337|519339|519340|521889|521900|522261|522304|522640|522713|522718|522721|522723|522742|522750|522751|522752|522754|522757|522758|522760|522766|522968|522972|522979|522980|522982|522986|522988|522992|522994|522995|523007|523008|523010|523018|523020|523027|523028|523110|523114|523122|523123|523129|523131|523135|523143|523144|523145|523152|523169|523170|523185|523188|523190|523193|523195|523196|523203|523210|523213|523219|523222|523319|523324|523330|523332|523335|523337|523343|523344|523346|523347|523350|523352|523354|523360|523362|523364|536247|536250|536252|536258|536279|536326|536331|537753|539206|539217|539221|539228|539264|539266|539268|539271|551836|551839|551840|551848|552276|557444|557448|557450|557452|557497|557499|557501|557507|557509|558119|558121|558123|558125|558127|558129|558131|558133|558135|558137|558139|558141|558143|558145|558147|558149|558151|558153|558155|558157|558159|558161|558163|558165|558167|558169|558171|558173|558175|558177|558179|558181|558183|558185|558187|558189|558191|558193|558195|558197|558199|558201|558203|558207|558209|558211|558213|558215|558217|558219|558221|558223|558225|558227|558229|558231|558233|558235|558237|558306|558308|558482|558484|558486|558488|558490|558492|558494|558496|558498|558500|558502|558504|558506|558508|558510|558512|558514|558516|558518|558520|558522|558524|558526|558528|558530|558532|558534|558536|558538|558540|558542|558544|558546|558548|558550|558552|558554|558556|558558|558560|558562|558564|558566|558568|558570|558572|558574|558576|558578|558580|558582|558584|558586|558588|558590|558592|558594|558596|558598|558600|558602|558604|558606|558608|558645|558647|558657|558659|558661|558663|558702|558704|558708|558884|558886|558888|558890|558892|558894|558896|558898|558900|558902|558904|558906|558908|558910|558912|558914|558916|559137|559142|559144|559146|559154|559223|559225|559229|559429|559431|559433|559435|559437|559439|559441|559443|559445|559447|559449|560653|560655|560657|560659|560661|560663|560665|560667|560669|560671|560673|560675|560677|560679|560681|560683|560685|560687|560689|560691|560693|560695|560697|560699|560701|560703|560705|560707|560709|560711|560713|560715|560717|560719|560721|560723|560725|560727|560729|560731|560733|560735|560737|560739|560741|560743|560745|560747|560749|560754|560764|560766|560769|560770|560778|560780|560782|560784|560786|560789|560792|560794|560796|560799|560802|560805|560807|560810|560813|560814|560818|560822|560825|560827|560831|560832|560834|561048|561050|561076|561082|561151|561154|561156|561158|561390|561393|561395|561397|561399|561409|561411|561413|561415|561417|561418|561420|561422|561427|561428|561434|561436|561441|561551|561555|561561|561568|561574|561577|561578|561579|561592|561595|561603|561604|561620|561621|561625|561628|561631|561632|561633|561641|561643|561645|561647|561651|561652|561654|561655|561657|561660|561662|561664|561666|561668|561669|561671|561672|561673|561674|561675|561677|561680|561682|561683|561684|561688|561690|561691|561694|561697|561698|561699|561701|561703|561706|561707|561708|561711|561713|561714|561715|561716|561719|561720|561721|561731|561733|561735|561736|561747|561751|561752|561761|561764|561766|561772|561775|561784|561792|561801|561804|561805|561806|561810|561816|562005|562006|562009|562010|562016|562037|562044|562045|562048|562051|562052|562053|562061|562066|562072|562073|562082|562083|562084|562089|562103|562104|562105|562107|562108|562123|562125|562181|562182|562187|562188|562674|562679|562692|562694|562695|562697|562699|562700|562707|562714|562722|562724|562729|562731|562740|562741|563859|563865|563867|563880|564318|564319|564328|564336|564339|564342|564343|564348|564359|564360|564365|564367|564373|564374|564378|564385|564386|564388|564390|566078|566080|566083|566106|566108|566109|566113|566114|566118|566912|566913|566916|566918|566921|566923|566928|566934|566938|566962|566982|566986|566993|566994|567003|567004|567012|567016|567022|567025|567031|567035|567038|567040|567042|567045|567051|567057|567062|567077|567089|567090|567104|567106|575527|575545|575546|575668|575673|575676|575680|575684|575700|575703|575783|576258|576260|582331|610931|610932|610966|610987|611029|611035|611076|611289|611683|611989|613497|616603|616605|616608|616610|616612|616614|616617|616621|616630|616633|616634|616641|616651|616652|616656|616664|616678|616681|616686|616687|616690|616694|616703|616707|616709|616712|616715|616720|616732|616738|616739|616744|616745|616750|616752|616759|616767|616784|616785|616787|616840|616843|616846|616848|616852|616861|616867|616869|616870|616876|616880|616881|616883|617373|617375|617377|617378|617384|617391|617392|617393|617394|617397|617398|617400|617406|617408|619168|621136|621154|621156|621157|621265|621268|621273|621275|630074|630075|630076|630077|630078|630079|630080|630081|630082|630083|630084|630085|630086|630087|630088|630089|630090|630091|630092|630093|630094|630095|630096|630097|630098|630099|630100|630101|630102|630103|630104|630105|630106|630107|630108|630109|630110|630111|630112|630113|630114|630115|630116|630117|630118|630119|630120|630121|630122|630123|630124|630125|630126|630127|630128|630129|630130|630131|630132|630133|630134|630135|630136|630137|630138|630139|630140|630141|630142|630143|630144|630145|630146|630147|630148|630149|630150|630151|630152|630153|630154|630155|630156|630157|630158|630159|630160|630161|630162|630163|630164|630165|630166|630167|630168|630169|630170|630171|630172|630173|630174|630175|630176|630177|630178|630179|630180|630181|630182|630183|630184|630185|630186|630187|630188|630189|630190|630191|630192|630193|630194|630195|630196|630197|630198|630199|630200|630201|630202|630203|630204|630205|630206|630207|630208|630209|630210|630211|630212|630213|630214|630215|630216|630217|630218|630219|630220|630221|630222|630223|630224|630225|630226|630227|630228|630229|630230|630231|630232|630233|630234|630235|630236|630237|630238|630239|630240|630241|630242|630243|630244|630245|630246|630247|630248|630249|630250|630251|630252|630253|630254|630255|630256|630257|630258|630259|630260|630261|630262|630263|630264|630265|630266|630267|630268|630269|630270|630271|630272|630273|630274|630275|630276|630277|630278|630279|630280|630281|630282|630283|630284|630285|630286|630287|630288|630289|630290|630291|630292|630293|630294|630295|630296|630297|630298|630299|630300|630301|630302|630303|630304|630305|630306|630307|630308|630309|630310|630311|630312|630313|630314|630315|630316|630317|630318|630319|630320|630321|630322|630323|630324|630325|630326|630327|630328|630329|630330|630331|630332|630333|630334|630335|630336|630337|630338|630339|630340|630341|630342|630343|630344|630345|630346|630347|630348|630349|630350|630351|630352|630353|630354|630355|630356|630357|630358|630359|630360|630361|630362|630363|630364|630365|630366|630367|630368|630369|631191|631192|631193|631194|631195|631196|631197|631198|631199|631200|631201|631202|631203|631204|631205|631206|631207|631208|631209|631210|631211|631212|631213|631214|631215|631216|631217|631218|631219|631220|631221|631222|631223|631224|631225|631226|631227|631228|631229|631230|631231|631232|631233|631234|631235|631236|631237|631238|631239|631240|631241|631242|631243|631244|631245|631246|631247|631248|631249|631250|631251|631252|631253|631254|631255|631256|631257|631258|631259|631260|631261|631262|631263|631264|636205|636206|636207|636208|636209|636210|636211|636212|636213|636214|636215|636216|636217|636218|636219|636220|636221|636222|636223|636224|636225|636226|636227|636228|636229|636230|636231|636232|636233|636234|636235|636236|636237|636238|636239|636240|636241|636242|636243|636244|636245|636246|636247|636248|636249|636250|636251|636252|636253|636254|636255|636256|636257|636258|636259|636260|636261|636262|636263|636264|636265|636266|636267|636268|636269|636270|636271|636272|636273|636274|636275|636276|636277|636278|636279|636280|636281|636282|636283|636284|636285|636286|636287|636288|636289|636290|636291|636292|636293|636294|636295|636296|636297|636298|636299|636300|636301|636302|636303|636304|650759|650760|650761|650771|650773|650779|650784|650786|650789|650792|650795|650799|650803|650805|650807|650808|650810|650819|650820|650824|650825|650830|650834|650838|650840|650841|650842|650843|650844|650845|650847|650848|650850|650854|650860|650867|650937|650940|650963|650964|650973|650986|650988|650991|650992|650993|650996|650997|651034|651046|651048|651056|651059|651063|651064|651068|651073|651075|651078|651081|651082|651091|651101|651123|651125|651131|651178|651601|651605|651607|651615|651616|651618|651619|651621|651625|651640|651676|651678|651681|651691|651718|651721|651726|651733|651744|651747|651750|651821|651826|654287|655460|655796|683502|683503|686215|686217|686218|686219|687084|687085|687086|687087|687088|691179|691180|691379|692253|692254|692255|692256|692257|692258|695147|695365|719895|722593|743953|744062|747675|747678|747679|747681|747682|750710|750713|759126|759693|763268|763269|763270|763274|763275|763278|763279|763285|763287|763290|763300|763303|763318|763322|763323|763326|763331|763334|763337|763340|763341|763343|763832|763835|766326|766329|766330|766335|766342|766347|774754|774774|774810|774851|774852|775385|781361|781363|781389|781391|781392|781393|781394|781395|781645|781649|781651|782883|782885|782887|782888|782889|782893|787147|787225|787296|787304|787314|787373|787523|787524|789429|789431|789432|789434|789446|790250|790256|790739|790740|799302|806941|806950|806963|806964|806985|806987|806992|806995|806998|807019|807041|807042|807047|807050|807060|807067|807073|807082|807089|807092|807097|807118|807126|807128|807132|807134|807136|807158|807176|807180|807185|807187|807194|807195|807196|807206|807207|807215|807220|807224|807226|807238|807246|807252|807262|807263|807264|807266|807270|807276|807283|807291|807296|807302|807304|807308|807311|807328|807345|807352|807354|807357|807370|807376|807378|807380|807388|807393|807408|807410|807414|807419|807427|807432|807527|807528|807537|807545|807553|807562|807565|807574|807598|807599|807600|807609|807611|807615|807627|807631|807636|809034|809035|809040|809044|809064|809068|809075|809082|809087|809090|809093|809102|809106|809108|809111|809112|809121|809132|809146|809150|809152|809179|809183|809184|809188|815236|815238|815239|815303|815311|815384|819175|819176|819177|819178|819179|819180|819181|819182|819183|819184|819185|819186|819187|819188|819189|819190|819191|819192|819193|819194|819195|819196|819198|819199|819200|819201|819202|819203|819204|819205|819206|819207|819208|819209|819214|819215|819216|819217|819218|819219|819220|819222|819223|819225|819226|819228|819230|819231|819232|819233|819234|819235|819236|819237|819238|819239|819240|819241|819242|819243|819244|819245|819246|819247|819248|819249|819250|819251|819253|819254|819255|819256|819368|819369|819370|819371|819372|819373|819374|819379|819380|819381|819382|819383|819386|819387|819388|819389|819390|819391|819392|819393|819394|819395|819396|819883|819884|819885|819887|819888|819889|819890|819891|819892|819893|819894|819895|819896|819897|819898|819899|819901|819902|819903|826548|826549|826550|826551|826552|826553|826554|826555|826556|826557|826558|826559|826560|826561|826562|826563|826564|826565|826566|826567|826568|826569|826570|826571|826572|826573|826574|826575|826576|826577|826578|826579|826580|826581|826582|826583|826584|826585|826586|826587|826588|826589|826590|826591|826592|826593|826594|826595|826596|826597|826598|826599|826600|826601|826602|826603|826604|826605|826606|826607|826608|826609|826610|826611|826612|826613|826614|826615|826616|826617|826618|826619|826620|826621|826622|826623|826624|826625|826626|826627|826628|826629|826630|826631|826632|826633|826634|826635|826636|826637|826638|826639|826640|826641|826642|826643|826644|826645|826646|826647|826648|826649|826650|826651|826652|826653|826654|826655|826656|826657|826658|826659|826660|826661|826662|826663|826664|826665|826666|826667|826668|826669|826670|826671|826672|826673|826674|826675|826676|826677|826678|826679|826680|826681|826682|826683|826684|826685|826686|826687|826688|826689|826690|826691|826692|826693|826694|826695|826696|826697|826698|826699|826700|826701|826702|826703|826704|826705|826706|826707|826708|826709|826710|826711|826712|826713|826714|826715|826716|826717|826718|826719|826720|826721|826722|826723|826724|826725|826726|826727|826728|826729|826730|826731|826732|826733|826734|826735|826736|826737|826738|826739|826740|826741|826742|826743|826744|826745|826746|826747|826748|826749|826750|826751|826752|826753|826754|826755|826756|826757|826758|826759|826760|826761|826762|826763|826764|826765|826766|826767|826768|826769|826770|826771|826772|826773|826774|826775|826777|826778|826779|826780|826781|826782|826783|826784|826785|826786|826787|826788|826789|826790|826791|826792|826793|826794|827915|827916|827917|827918|827919|827920|827921|827922|827923|827924|827925|827926|827927|827928|827929|827930|827931|827932|827933|827934|827935|827936|827937|827938|827939|827940|827941|827942|827943|827944|827945|827946|827947|827948|827949|827950|827951|827952|827953|827954|827955|827956|827957|827958|827959|827960|827961|827962|827963|827964|827965|827966|827967|827968|827969|827970|827971|827972|827973|827974|827975|827976|827977|827978|833730|833731|833732|833733|833734|833735|833736|833737|833738|833739|833740|833741|833742|833743|833744|833745|833746|833747|833748|833749|833750|833751|833752|833753|833754|833755|833756|833757|833758|833759|833760|833761|833762|833763|833764|833765|833766|833767|833768|833769|833770|833771|833772|833773|833774|833775|833776|833777|833778|833779|833780|833781|833782|833783|833784|833785|833786|833787|833788|833789|833790|833791|833792|833793|833794|833795|850865|850867|850869|850907|850908|850911|850926|850927|850928|850930|850932|850934|851159|851182|851184|851186|851188|851190|851194|851336|851432|851556|851558|851560|851648|851650|852094|852096|852098|852100|852372|858403|858457|858461|858472|885123|908798|908808|908881|908890|908894|908904|908915|908937|908946|908952|908953|908992|909006|909067|909302|909329|909330|910919|910942|910953|910960|910967|910975|915517|916872|916877|921456|922793|922794|922795|922796|922797|922798|922799|922800|922801|922802|922803|922804|922805|922806|922807|922808|922809|922810|922811|922812|922813|922814|922815|922816|922817|922818|922819|922820|922821|922822|922823|922824|922825|922826|922827|922828|922829|922830|922831|922832|922833|922834|922835|922836|922837|922838|922839|922840|922841|922842|922843|922844|922845|922846|922847|922848|922849|922850|922851|922852|922853|922854|922855|922856|922857|922858|922859|922860|922861|922862|922863|922864|922865|922866|922867|922868|922869|923144|923145|923146|923147|923148|923149|923150|923151|923152|923153|923154|923155|923156|923157|924880|924881|924882|924883|924884|924885|924886|924887|924888|924889|924890|924891|924892|924893|924894|924895|924896|924897|931426|931427|931428|931429|931430|931431|931432|931433|931434|931435|931436|931437|931438|931439|931440|931441|931442|931443|931444|931445|931446|931447|931448|931449|931450|931451|931452|931453|931454|931455|931456|931457|931458|931459|931460|931461|931462|931463|931464|931465|931466|931467|931468|931469|931470|931471|931472|931473|931474|931475|931476|931477|931478|931479|931480|931481|931482|931483|931484|931485|931486|931487|931488|931489|931490|931491|931492|931493|931494|931495|931496|931497|931498|931499|931500|931501|931502|931503|931504|931505|931506|931507|931508|931509|931510|931511|931512|931513|931514|931515|931516|931517|931518|931890|931891|931892|931893|931894|931895|931896|931897|931898|931899|931900|931901|931902|931903|931904|931905|931906|931907|931908|931909|931910|931911|933943|933944|933945|933946|933947|933948|933949|933950|933951|933952|933953|933954|933955|933956|933957|933958|933959|933960|933961|933962|933963|933964|933965|933966|933967|933968|933969|933970|933971|933972|933973|933974|933975|933976|939899|939900|939901|939902|939903|939904|939905|939935|939936|940082|940713|940714|940715|940716|940717|940718|940719|940720|940749|940879|940880|940881|942954|942955|942956|942957|942958|942959|942960|942961|942962|942963|942964|942965|942966|942967|942968|942969|942970|942971|942972|942973|942974|942975|942976|942977|942978|942979|942980|942981|942982|942983|942984|942985|942986|942987|942988|942989|942990|942991|942992|942993|942994|942995|942996|942997|942998|942999|943000|943001|943002|943003|943004|943005|943006|943007|943008|943009|943010|943011|943012|943013|943014|943015|943016|943017|943018|943019|943020|943021|943022|943023|943024|943025|943026|943027|943028|943029|943030|943031|943032|943033|943034|943035|943480|943481|943482|943483|943484|943485|943486|943487|943488|943489|943490|943491|943492|943493|943494|943495|943496|943497|943498|943499|943500|943501|943502|945720|945721|945722|945723|945724|945725|945726|945727|945728|945729|945730|945731|945732|945733|945734|945735|945736|945737|945738|945739|945740|945741|945742|945743|945744|945745|945746|945747|953106|953107|953108|953109|953110|953111|953112|953113|953114|953115|953116|953117|953118|953119|953120|953121|953122|953123|953124|953125|953126|953127|953128|953129|953131|953132|953133|953134|953135|953136|953137|953138|953139|953140|953141|953439|953440|953441|953442|953443|953444|953445|953446|953447|953448|955183|955184|955185|955186|955187|955188|955189|955190|955191|955192|955193|955194|955195|955196|955197|955198|955199|955200|955201|955202|955203|959645|959646|959647|959648|959695|959696|959862|959863|960479|960480|960481|960482|960483|960484|960485|960486|960636", + "text": "Hereditary nonpolyposis colorectal neoplasms" + }, + { + "baseId": "16794|16803|23978|23980|24273|24276|24284|24284|32119|32126|32127|32130|32136|32138|32144|45202|45233|45350|50032|50071|50072|50084|50085|50148|50152|50153|51362|94679|94763|94786|94812|94816|94826|94834|94836|94843|94898|94947|94971|95036|95079|95127|95179|95218|95225|95362|95406|95427|95485|95488|95506|95556|95606|95622|95650|95759|95780|95916|95926|95987|95994|96029|96044|96049|96094|96129|96220|96279|96330|96378|96465|96516|96572|96611|96710|96775|96792|96795|96805|96815|96818|96841|96841|96850|96857|133027|133050|133072|133076|133086|133227|133237|133248|133249|133252|133253|133255|138590|139651|150473|150877|150979|151013|151078|151946|152204|152291|152364|152385|171076|179989|180098|180145|180148|180263|180273|181907|181971|181998|181998|182130|182257|182281|182738|182807|212191|212214|212225|221236|221251|221252|221295|221394|221405|221705|221713|231655|231678|231692|232602|232837|233515|233544|233555|239148|259868|361855|369830|392813|392893|395935|405879|405897|406198|406222|407204|432523|451404|452376|472775|473109|473493|474621|474639|483975|487316|518546|523007|562700|789372|919108|920243|920244|964664|965451", + "text": "Turcot syndrome" + }, + { + "baseId": "16794|16797|16800|16803|16813|32138|45202|50071|50072|50084|50085|95054|95079|95127|95179|95218|95225|95406|95421|95427|95485|95488|95506|95556|95606|95622|95650|95759|95780|95916|95926|95987|95994|96029|96044|96094|96129|96279|96330|96378|96465|96572|96710|133072|133076|133086|150473|171076|179989|180145|180148|181907|182257|182281|212191|221236|221394|221405|232602|239148|406198|406222|452376|472775|473493|562700|613998", + "text": "Muir-Torr\u00e9 syndrome" + }, + { + "baseId": "16798|16799|24281|45255|94646|94694|94804|94807|94812|94813|94814|94818|95037|95201|95227|95255|95310|95313|95360|95374|95384|95404|95419|95466|95576|95581|95584|95615|95759|95786|95805|95806|95855|95985|96029|96093|96116|96187|96241|96265|96343|96428|96496|96577|96580|96648|96652|96729|96737|96765|96774|96793|96798|96818|96851|133112|133253|150580|150772|150994|152364|152570|180099|180273|182030|182160|182782|182807|185992|186313|212611|214607|214608|221222|228967|231656|232847|233486|233596|238932|240100|244380|359365|359807|392853|392918|393047|405910|405949|405952|419548|427162|451200|451635|474770|484101|487006|518417|518434|610916|809090|915020|916866|916871|916872|916875|916878|917008|917426|920527|921457|964738|964739|969148|970062|970063|970064|970065|970066|970067|970068|970070|970071|970072|972530|972549|975755|975756|975770|983930|983950", + "text": "Hereditary nonpolyposis colon cancer" + }, + { + "baseId": "16801", + "text": "MSH2 POLYMORPHISM" + }, + { + "baseId": "16801|21985|24368|31619|32700|45243|45982|46604|47727|49984|50006|50089|50199|50251|50254|50257|50266|50270|66533|94815|94834|96346|96428|96572|133160|133610|139629|150591|151001|151773|167486|167491|180144|182185|182304|185548|238862|286667|360962|405963|457119|468105|475637|485590|514061|551416|551419|624834|677245|790251|809656|970742|970743|970915", + "text": "Breast carcinoma" + }, + { + "baseId": "16806|16807|96202|96324", + "text": "MISMATCH REPAIR CANCER SYNDROME 2" + }, + { + "baseId": "16814|16815|125902|142831|142832|142833|142834|142838|142839|142840|142841|142842|142843|142844|142845|142847|142848|142850|153738|168882|168883|168884|168885|168886|168888|168889|202631|202639|202644|207916|262351|269133|315273|315274|315276|315279|315281|315290|315307|315312|315313|315323|315331|315333|315336|315337|322123|322127|322131|322132|322136|322137|322138|322144|322149|322150|322156|322163|322177|322178|328198|328199|328200|328202|328217|328218|328219|328230|328235|328243|328244|328249|329515|329517|329525|329526|329550|329563|329570|329572|329577|429321|456110|456372|456374|456375|456380|456382|456384|456660|456667|457028|457031|459965|459976|459977|459986|459988|459991|459993|460002|460004|460011|460016|460018|460026|460100|460107|460109|460111|460117|460118|460120|460123|460125|460128|460131|460133|460139|460142|460144|460146|460149|460150|460152|460157|460163|460368|460373|460374|460396|460400|460402|460404|460406|460409|460410|460412|460417|460429|460430|460439|460440|460446|460796|460797|460802|460817|460818|460836|460838|460840|460857|460858|460862|460863|460865|460877|460879|460882|460884|460887|460888|460893|460896|460905|460906|522087|522090|522091|522803|522809|525211|525220|525221|525222|525223|525231|525234|525240|525383|525391|525392|525393|525397|525494|525496|525498|525500|525503|525508|525513|525684|525689|525693|525707|525710|525712|525713|525714|525717|525719|525722|561142|561244|561319|561326|563804|563811|563816|563817|563818|563823|563829|563832|563840|563844|563848|563985|564637|564648|564649|564650|564652|564660|564663|564665|564666|566333|566336|566337|566340|566375|566376|566380|566381|566385|566388|566390|567554|569706|569713|569720|569730|571009|579797|610292|614552|635565|635566|635567|635568|635569|635570|635571|635572|635573|638994|638995|638996|638997|638998|638999|639000|639001|639002|639003|639004|639005|639006|639007|639008|639009|639010|639011|639012|639013|639014|639015|639016|639017|639018|639019|639020|639021|639022|639023|639024|639025|639026|639027|639028|639029|639030|639031|639032|639033|639034|639035|639036|639037|639038|639039|639040|639041|639042|639043|639044|639045|639046|639047|639048|639049|639050|651702|652110|652143|652240|692870|692872|692873|692874|692875|699777|699778|699779|699780|699781|701394|701395|701396|701397|701398|701399|701400|701401|701402|712422|712425|712427|712428|724002|724003|724004|724005|724006|724007|737546|737547|737548|744622|750367|750369|750370|752167|752170|752173|752174|752176|752179|759944|766031|767843|767846|767848|767849|767851|767852|767853|767854|767858|767859|775549|778097|778101|783652|783653|796426|820225|832904|832905|832906|832907|837004|837005|837006|837007|837008|837009|837010|837011|837012|837013|837014|837015|837016|837017|837018|837019|837020|837021|837022|837023|837024|837025|837026|837027|837028|837029|837030|837031|837032|837033|837034|837035|837036|837037|837038|837039|837040|837041|837042|837043|837044|837045|837046|837047|837048|837049|837050|837051|837052|837053|837054|837055|837056|837057|837058|837059|837060|837061|837062|837063|837064|837065|837066|837067|837068|837069|837070|837071|837072|837073|837074|851780|851782|852050|852318|852555|868850|868851|868852|868853|868854|868855|868856|868857|868858|868859|868860|868861|868862|868863|868864|868865|868866|868867|868868|872145|924622|924623|925847|925848|925849|925850|925851|925852|925853|925854|925855|925856|925857|925858|925859|925860|925861|925862|925863|925864|925865|925866|925867|925868|925869|925870|925871|925872|925873|925874|925875|925876|925877|925878|925879|925880|925881|925882|925883|933611|933612|935087|935088|935089|935090|935091|935092|935093|935094|935095|935096|935097|935098|935099|935100|935101|935102|935103|935104|935105|935106|935107|935108|935109|935110|935111|935112|935113|935114|935115|935116|935117|935118|935119|935120|935121|935122|940961|945352|945353|946961|946962|946963|946964|946965|946966|946967|946968|946969|946970|946971|946972|946973|946974|946975|946976|946977|946978|946979|946980|946981|946982|946983|946984|946985|946986|946987|956117|956118|956119|956120|956121|956122|956123|956124|956125|956126|956127|956128|956129|956130|956131|956132|960721", + "text": "Early myoclonic encephalopathy" + }, + { + "baseId": "16816|16818|16819|16820|16824|16825|16828|16829|16830|16831|16835|16836|16837|16838|16840|16841|16842|16843|16844|16847", + "text": "Complete combined 17-alpha-hydroxylase/17,20-lyase deficiency" + }, + { + "baseId": "16816|16819|16821|16824|16826|309338|309339|309341|314007|314008|314016|314017|314018|314022|319908|319911|319917|320451|320457|404785|425860|429040|620342|737315|767606|767607|767608|783527|865317|865318|865319|865320|865321|865322|865323|865324|865325|868430|978615|978616|978617|978618|978619|978620|978621|978622|978623", + "text": "Deficiency of steroid 17-alpha-monooxygenase" + }, + { + "baseId": "16817|16821|16822|16823|16832|16833|16834|16839|16845|16846", + "text": "Combined partial 17-alpha-hydroxylase/17,20-lyase deficiency" + }, + { + "baseId": "16826|16827", + "text": "Isolated 17,20-lyase deficiency" + }, + { + "baseId": "16848|16849|16850|16851|16852|16853|16854|16855|39741|49794|49795|49796|49797|49890|49891|57129|57130|57131|57132|57133|57134|175959|176103|222418|230561|242033|242034|242035|242036|242038|264838|322322|322328|322333|322334|322338|322343|322345|322347|322350|322351|322352|322356|322362|322364|322367|322368|322369|322371|322372|322386|322393|331649|331651|331652|331655|331665|331666|331674|331675|331687|331688|331693|331697|331699|331702|338625|338629|338637|338639|338645|338652|338654|338657|338664|338666|338669|338674|338676|338678|338680|338682|338686|340338|340339|340344|340345|340347|340351|340353|340355|340357|340362|340363|340364|340367|340368|340370|340372|340373|360244|361214|373383|373387|373388|400071|400528|400554|400555|400558|422010|464153|464168|464172|464174|464176|464697|464706|464708|464710|464715|464717|464720|464721|464975|464981|464988|464993|485754|485755|497043|504728|512136|528724|528727|528782|528785|529110|529111|529116|529252|529256|529257|529263|529266|538024|538025|538026|538027|538028|552852|566864|566978|566981|566987|566991|566992|568569|569323|569328|573217|573221|624494|624495|643113|643114|643115|643116|643117|643118|643119|643120|643121|643122|643123|643124|643125|643126|653035|688401|805820|820688|820689|842240|842241|842242|842243|842244|842245|842246|842247|873292|873293|873294|873295|873296|873297|873298|873299|873300|873301|873302|873303|873304|873305|873306|873307|873308|873309|873310|873311|873312|873313|873314|873315|873316|873317|873318|873319|873320|873321|873322|873323|873324|873325|873326|873327|873328|873329|873330|873331|873332|873333|873334|873335|873336|873337|873338|873339|873340|873341|873342|873343|873344|873345|873346|919568|927300|936899|936900|948850|948851|948852|948853|948854|948855|948856|948857|948858|957396|957397|957398|957399|957400|960820", + "text": "Legius syndrome" + }, + { + "baseId": "16856|16857|16858|34511|34512|34513|34514|34515|34516|34517|34518|39740|101805|140421|169015|169015|169018|169019|169020|169021|169022|169023|169024|169025|169026|169027|169028|169031|169031|169032|169032|169033|169034|169036|169037|169038|169038|169039|169039|169040|169041|169042|169043|169044|169045|191939|194480|208029|208038|254844|319318|319320|319324|319331|319335|319339|319340|319344|327833|327837|327838|327860|327863|327872|327873|327877|327879|327880|327888|327890|327892|327893|334132|334133|334135|334148|334152|334165|334170|335735|335772|335797|335804|335810|335820|335829|335830|335833|335838|335845|335846|404812|426039|429484|437953|437953|488204|488238|490846|513331|587191|870972|870973|870974|870975|870976|870977|870978|870979|870980|870981|870982|870983|870984|870985|870986|870987|870988|870989|870990|870991|870992|870993|870994|870995|870996|870997|870998|870999|872321|872322|965989", + "text": "Primary autosomal recessive microcephaly 6" + }, + { + "baseId": "16856|18493|18494|18495|34421|34422|34458|34554|34555|34556|34557|39596|39597|39598|39599|102020|102022|102023|141888|168642|168643|168644|168645|168647|168648|168649|168650|168651|168653|168654|168655|168656|168657|168658|168659|168660|168661|168662|168663|168664|168665|168666|168667|168668|168669|168670|168671|168672|168674|168675|168676|168677|168684|168685|168686|168687|168689|168692|168693|168694|168695|168696|168697|168698|168700|168701|168702|168703|168705|177255|177832|191095|191285|193676|195416|196068|204410|207565|207566|207567|207568|263004|268492|269728|269760|271359|305726|305728|305729|305737|305738|305762|305766|305767|305768|309735|309736|309737|309765|309766|309771|314972|314987|315019|315021|315082|315086|315104|315106|315107|315136|315137|315146|407440|425803|428850|428852|428853|428854|490847|491170|538402|577066|620807|626179|682798|682799|723165|736734|801848|861607|899924|899925|899926|899927|899928|899929|899930|899931|899932|899933|899934|899935|899936|899937|899946|899950|899951|899952|899953|899954|899955|899956|899957|899958|899959|899960|899961|899962|899963|900511|904224|904225|919172|970885|975861", + "text": "Primary autosomal recessive microcephaly 1" + }, + { + "baseId": "16859|106652|106652|135519|135520|135521|135521|135523|135523|135524|135524|135525|135526|206757|206757|206758|206758|206762|206762|237363|237363|270346|271432|271432|271433|279278|279279|279280|279285|279286|279295|279300|279301|279308|279309|279310|279311|279318|279318|279324|279324|279325|279329|279329|279330|279343|279490|279491|279493|279494|279496|279497|279498|279502|279506|279507|279508|279508|279509|279512|279512|279534|279535|279536|279545|279545|279549|280795|280797|280798|280799|280804|280805|280809|280810|280813|280822|280823|280825|280825|280830|280835|280837|280839|280845|280846|280847|280850|280851|280855|280860|280863|280872|280873|280874|280875|280876|280877|280878|280887|280887|280897|280909|280913|280923|280924|280924|280939|280940|280956|280957|280958|364904|364905|425336|427712|447500|447631|447634|447736|447738|447738|447743|447746|498243|515542|515555|535673|556790|557153|558347|558347|627378|627379|627380|650679|690489|690489|690490|696474|696475|696475|696477|777096|780569|801776|823482|823483|823484|858672|858673|863719|863720|863721|863722|863723|863724|863725|863726|863727|863728|863729|863730|863731|863732|863733|863734|863735|863736|863737|863738|863739|863740|863741|863742|863743|863744|863745|863746|863747|863748|863749|863750|863751|863752|863753|863754|863755|863756|863757|863758|863759|865128|865129|865130|921848|930328|930329|940619|941768|941769|941770|969093", + "text": "Cataract-intellectual disability-hypogonadism syndrome" + }, + { + "baseId": "16860|205733|972782", + "text": "Mental retardation, autosomal recessive 2" + }, + { + "baseId": "16861|19441|19442|21008|132639", + "text": "Hypertriglyceridemia, susceptibility to" + }, + { + "baseId": "16862|39738|44164|44165|44166|44167|54729|54730|54732|54733|54734|54735|54736|54737|54738|172328|172466|206697|275806|275807|275810|275811|275824|275825|275826|275829|275913|275916|275921|275932|275942|275950|275953|276010|276015|276035|276036|276038|276039|276040|276041|276042|276043|276044|364350|496145|497969|513485|578357|609341|620703|731539|855104|861862|861863|861864|861865|861866|861867|861868|861869|861870|861871|861872|861873|861874|864955|864956|864957", + "text": "Chudley-McCullough syndrome" + }, + { + "baseId": "16862|21526|21527|32043|246783|262397|389218|389253|514275|682182|905841|905845", + "text": "Autosomal recessive non-syndromic sensorineural deafness type DFNB" + }, + { + "baseId": "16863|16864|16865|16867|16868|39737|213953|214140|583120", + "text": "Hypotrichosis 8" + }, + { + "baseId": "16865|16866", + "text": "Autosomal recessive woolly hair 1, with or without hypotrichosis" + }, + { + "baseId": "16869|16870|16871|16872|16873|39733|39735|39736|99374|166160|177086|195605|196206|212287|221358|221359|250855|250857|288263|288275|288277|288288|288289|289045|289046|289048|289058|289061|291958|291966|291985|291988|291999|292001|292003|292109|292110|292115|393234|620099|683527|686282|790317|790318|800368|827325|887716|887717|887718|887719|887720|887721|887722|887723|887724|887725|887726|887727|887728|891556", + "text": "Senior-Loken syndrome 5" + }, + { + "baseId": "16869|39892|102064|177569|177574|195571|221112|222267|254734|280562|280564|281544|281592|281829|281981|282784|283087|283088|288278|289062|291965|291998|292112|318604|326794|326807|326864|326876|332978|334650|443009|496723|800445|800485", + "text": "Renal dysplasia and retinal aplasia" + }, + { + "baseId": "16874", + "text": "Combined oxidative phosphorylation deficiency 2" + }, + { + "baseId": "16875|16876|16877|16878|16879|16880|16881|16882|336576|336579|336580|336584|336586|336590|346287|346291|346296|350538|350541|350542|350545|351586|351587|351590|886679|886680|886681|886682|886683|886684|886685|886686|887501", + "text": "Glucocorticoid deficiency 2" + }, + { + "baseId": "16880|18297|18298|18299|18300|18301|18302|18303|18304|18305|33464|330751|330758|330760|330789|330800|330801|330807|330809|330812|330813|340969|340971|340981|340986|340990|341000|341003|341015|341017|341022|341031|341033|341035|341040|341044|341049|341050|346567|346568|346585|346588|346589|346590|346596|346601|346603|346605|346607|346612|346613|346614|346616|346624|346625|347888|347889|347892|347895|347897|347900|347902|347909|347917|347918|347925|347928|347931|347934|437707|437708|437709|437710|437711|437735|485789|620616|704544|741303|878933|878934|878935|878936|878937|878938|878939|878940|878941|878942|878943|878944|878945|878946|878947|878948|878949|878950|878951|878952|878953|878954|878955|878956|878957|878958|878959|878960|878961|878962|878963|878964|878965|878966|878967|878968|878969|878970", + "text": "ACTH resistance" + }, + { + "baseId": "16883|16884|16885|16886|16887|226712|539007", + "text": "Trichothiodystrophy, nonphotosensitive 1" + }, + { + "baseId": "16888|16889|16890|622379", + "text": "Glutaryl-CoA oxidase deficiency" + }, + { + "baseId": "16891|16892|16893|16894|16895|16896|16897|168054|168055|168056|168060|168062|168063|168064|168065|168066|168067|168068|168069|168070|168072|168073|186291|206987|206990|206991|215255|285583|285585|285586|285591|285592|285594|285600|285602|285603|285607|285608|286279|286280|286282|286283|286284|286299|286301|286302|286306|286322|286335|286337|286338|288594|288597|288599|288601|288607|288608|288611|288639|288640|289003|289009|289011|289016|289019|289020|289031|289033|289034|289035|289037|289039|425483|428033|428039|516224|557982|560551|561240|620075|620743|620744|629747|629748|629749|629750|708190|719783|733369|743904|743925|747488|747491|774691|790222|819148|826109|826110|826111|884421|884422|884423|884424|884425|884426|884427|884428|884429|884430|884431|884432|884433|884434|884435|884436|884437|884438|884439|884440|884441|884442|884443|884444|884445|884446|884447|884448|884449|884450|884451|884452|884453|884454|884455|884456|887331|887332|887333|887334|887335|922676|931262|931263|961758", + "text": "D-2-hydroxyglutaric aciduria 1" + }, + { + "baseId": "16898|16899|16900|16901|16902|135554|167389|186007|210907|210908|210911|221341|221342|226729|244400|265654|287484|287491|287494|287495|287504|287505|287508|288253|288254|288256|288258|288259|288260|288270|288272|288273|290927|290939|290942|290969|290980|290982|291169|291171|291172|291173|291177|291193|291196|291197|291201|291222|366824|367046|367984|391499|393125|393136|393259|393485|393487|448552|451733|451735|451826|518650|518664|518674|518676|518727|518730|518731|518836|518839|518843|557513|559193|559195|559197|559199|559201|560991|562097|562099|588014|609146|630605|630606|630607|630608|650812|650822|651096|819278|819279|827086|827087|827088|827089|827090|827091|827092|827093|885602|885603|885604|885605|885606|885607|885608|885609|885610|885611|885612|885613|885614|885615|885616|885617|885618|885619|885620|885621|885622|885623|885624|885625|885626|885627|885628|885629|922941|922942|931612|931613|939917|940726|953249|959658|962032|964208", + "text": "Spastic paraplegia 31, autosomal dominant" + }, + { + "baseId": "16903|16904|16905|16906|16907|16908|16909|289432|289441|289442|289450|289451|289465|290220|290223|293305|293316|293747|293748|359498|418983|418987|418993|418994|418995|418997|418998|419000|419001|452119|452270|452274|452276|452357|452358|518945|553153|559365|561232|561236|581296|631024|651039|819344|819345|819346|819348|827655|850918|888358|888359|888360|891616|918812|940741|943395|970759", + "text": "Cerebral cavernous malformations 3" + }, + { + "baseId": "16910|16911", + "text": "Wilms tumor 5" + }, + { + "baseId": "16912|16913|16914|16915|48464|48465|48466|48467|76349|76350|76351|247067|254339|254340|254341|254342|254343|254344|254346|254348|254349|254351|254352|254353|254354|254355|254356|254357|254358|315338|315342|315344|315348|315349|315352|315358|322187|322188|322189|322201|322205|322210|322211|328250|328260|328261|328265|328267|328270|328271|328278|328281|328294|328300|328307|328308|329603|329608|329609|329610|425945|461471|461474|461477|461479|461485|461682|461684|461686|461687|461689|462002|462008|462009|462015|462016|462019|462311|462313|462316|462322|462327|462328|462331|526491|526498|526503|526547|526554|526555|526558|526790|526791|526796|527074|527076|564916|564917|564924|564926|566203|566205|566207|567558|567560|571010|571023|571035|571037|571043|620423|640479|640480|640481|640482|640483|640484|640485|640486|640487|640488|652135|652603|687830|687831|693116|693118|693119|702011|702012|713218|713219|724771|738334|753005|768817|768820|787840|820419|839115|839116|839117|839118|839119|839120|839121|839122|839123|839124|839125|839126|839127|839128|839129|839130|839131|839132|839133|839134|839135|839136|851463|868869|868870|868871|868872|868873|868874|868875|868876|868877|868878|868879|868880|868881|868882|868883|868884|868885|868886|868887|868888|872146|872147|872148|872149|919397|926402|926403|926404|926405|926406|926407|926408|935835|935836|935837|935838|935839|935840|947720|947721|947722|947723|956704|956705|956706|956707|965653|965654", + "text": "Neutral lipid storage myopathy" + }, + { + "baseId": "16916|16917|16918|16919|16923|16924|16925|16926|16927|16928|16929|106572|224657", + "text": "METHYLMALONIC ACIDURIA, mut(0) TYPE" + }, + { + "baseId": "16917|16920|16923|16925|16926|98587|98588|98589|98591|98592|98594|106572|177367|193400|200114|200117|200122|200123|200124|216037|216044|216045|236987|274267|274558|303391|307943|308067|415056|439145|487201|490207|501673|522062|543691|544017|544019|544021|544043|544144|560736|565694|634940|699613|722064|722065|765712|765715|782553|978223", + "text": "Methylmalonic aciduria due to complete methylmalonyl-CoA mutase deficiency" + }, + { + "baseId": "16919|16920|16925|16926|18134|18199|40093|40094|98595|102137|106572|135084|139972|139973|139974|139976|139977|139978|139979|177367|200054|200055|200110|200111|200114|200116|200121|200123|200124|200226|200304|200305|215029|216025|216037|216039|216044|216045|216058|216059|224619|254395|254396|287871|290415|292317|292318|292319|292341|292348|292367|293762|293773|297053|297067|297093|297097|297169|297190|300514|300520|300527|303401|308052|315908|315917|315921|315923|315924|315935|315941|315943|323051|323053|323082|323083|323084|323095|323115|323134|323137|323148|329123|329195|329197|329199|329206|329208|330322|330325|330357|330362|330381|353576|374720|409781|409783|415056|422125|439337|453275|487063|487143|487190|487201|505854|543081|543691|544019|544026|544041|544043|544057|544133|544137|544140|544144|546844|565694|621750|634947|645125|656395|715199|748753|755535|771186|771192|844484|916967|979819|979820|979821|979822|979823|979824|979825|979826|979827|979828|979829|979830|979831|979832|979833|979834|979835|979836|979837|979838|979839|979840|979841|979842|979843|979844|979845|979846|979847|979848|979849|979850|979851|979852|979853|979854|979855|979856|979857|979858|979859|979860|979861|979862|979863|979864|979865|979866|979867|979868|979869|979870|979871|979872|979873|979874", + "text": "Methylmalonic acidemia" + }, + { + "baseId": "16920|16921|16922", + "text": "METHYLMALONIC ACIDURIA, mut(-) TYPE" + }, + { + "baseId": "16930", + "text": "Pseudofolliculitis barbae, susceptibility to" + }, + { + "baseId": "16931|16932|16933|76666|190882|238658|250572|250573|284653|284658|284659|284662|284665|284666|284667|284672|284676|284677|284681|284686|284688|284690|285339|285345|285346|285349|285350|285351|285352|285363|285370|285373|285375|285377|285378|287514|287517|287530|287531|287547|287557|287562|287569|287588|287597|287604|287605|287778|287786|287795|287796|287800|287801|287832|287836|287847|353558|363930|392689|425468|450383|450388|450695|450702|450705|450707|450712|508776|513522|517702|517710|517719|517830|517924|517926|559105|559107|559109|559111|560930|883734|883735|883736|883737|883738|883739|883740|883741|883742|883743|883744|883745|883746|883747|883748|918736|918737|918738|964193|964403", + "text": "Paroxysmal nonkinesigenic dyskinesia 1" + }, + { + "baseId": "16931", + "text": "Episodic hemiplegia" + }, + { + "baseId": "16931|169841|590085|801114", + "text": "Paroxysmal dyskinesia" + }, + { + "baseId": "16931|360813|966891", + "text": "Paroxysmal dystonia" + }, + { + "baseId": "16932|16933|238657|250572|284658|284659|284665|284667|285339|285345|285346|285351|287547|287562|287796|287800|287801|363930|392580|392689|392706|450391|450536|450621|450623|450695|450706|450712|450713|450715|514459|517712|517723|517800|517802|517814|517824|517827|517926|517928|557882|557929|560895|560913|560923|629452|629453|629454|629455|629456|629457|629458|629459|629460|629461|629462|629463|650913|686142|686143|686144|686145|774662|781169|819124|825728|825729|825730|825731|825732|825733|825734|825735|825736|825737|825738|825739|825740|825741|851398|922570|922571|922572|922573|922574|922575|922576|922577|931142|931143|931144|931145|931146|931147|931148|931149|931150|931151|939875|939876|942607|942608|942609|942610|952931|952932|952933|952934", + "text": "Paroxysmal non-kinesigenic dyskinesia" + }, + { + "baseId": "16934|16935|16936|16937|16938|16939|16940|16941|16942|16943|16944|36182|36312|36313|36314|36315|36317|36318|36319|36320|36322|36323|36324|36327|36329|36330|36331|36332|36333|36334|36335|36336|36337|36338|36339|36340|36342|36343|36344|36345|36346|36347|36348|36349|36350|36351|36353|36354|36355|36357|36358|36359|36360|36363|36364|36365|36366|36367|36368|36369|36370|36371|36372|36373|36374|36376|36377|36378|36379|36380|36381|36382|36383|36384|36385|36386|36387|36388|36389|36390|36391|36393|36394|36395|36396|36398|36401|36402|36405|36406|36407|36409|36410|36411|36412|36413|36414|36415|36416|36417|36418|36419|36421|36422|36423|36424|36425|36426|36427|36428|36429|36430|36431|36432|36433|36434|36435|36436|36437|36438|36439|36440|36441|36442|46830|46832|46833|46836|46844|46845|46846|46848|46849|46851|46852|46853|47043|47160|47162|47163|47164|47165|47166|47167|47168|47197|98310|98311|165804|165805|165806|165807|165808|165809|165810|186677|186678|193364|200042|264145|267157|270601|273348|274306|289227|289229|289230|289238|289243|289255|290016|290036|290037|293069|293082|293088|293089|293092|293101|293118|357290|357291|357292|357293|357294|357295|357296|357297|357298|357299|357300|357301|359456|360849|367000|367247|368264|406135|406136|421424|432545|432546|451903|452116|452259|452267|491712|518944|518948|519125|542845|542846|542857|542858|542860|542865|542866|542868|542870|542877|542887|542888|542892|542895|542897|543034|543042|543043|543045|543053|543054|543056|543085|543086|543090|543108|543112|543119|543121|543128|543131|543132|543133|543138|543139|543146|559363|561229|578666|578667|578668|578669|578670|578671|578672|578673|578674|578675|578676|578677|578678|578679|578680|578681|578682|578683|578684|578685|578686|578687|578688|578689|578690|578691|578692|578694|578695|578697|578698|578700|581751|609502|620115|650307|650308|650309|650316|650317|650327|694976|694980|743519|743520|758689|758690|758691|758692|758693|774287|774289|786946|788761|790346|790347|790348|790349|790350|790351|790352|790353|818383|819342|920182|929853|939713|959389|963320|963321|977814|977815", + "text": "Biotinidase deficiency" + }, + { + "baseId": "16939|17051|17159|17159|18935|21235|21406|23091|26378|26867|27024|28542|28544|31232|39226|39422|40353|44169|45778|48099|48180|48278|48413|48423|48430|48495|48983|51108|76995|79323|79470|94274|95421|99628|102019|137063|137064|137065|166182|166183|166184|166185|166186|166187|166188|166189|166190|166191|166192|169007|171866|178380|178416|181397|181398|181404|181409|181418|181421|181422|181423|181424|181431|181433|181435|181440|181445|181447|181448|181451|181452|181454|181455|181456|181462|181464|181465|181468|188114|190110|190806|194348|200273|203022|203232|203726|204032|205216|205263|214205|214208|214224|214327|214364|215004|223024|226235|226236|226495|226500|226502|227149|227467|243981|243985|243986|243987|243988|243988|243993|247328|247329|247330|247331|247332|248477|263187|263190|263224|263234|263246|263247|263249|263251|263252|263255|263262|263264|263271|263275|263276|263279|263280|263282|263295|263305|263307|263323|263332|263333|263335|263339|263351|263359|263365|263366|263369|263370|263374|263377|263389|263393|263398|263421|263782|263783|264105|264749|264914|265026|265506|270311|282658|287840|288925|354299|360812|360849|360870|360874|360877|360878|360894|360912|360923|360955|360957|360996|360998|361016|361036|361041|361071|361073|361074|361075|361076|361084|361088|361101|361251|361271|361343|362165|362226|364179|380289|384510|384511|384513|384514|384517|384518|384519|384520|384521|384525|389103|389117|389133|389134|389176|389178|389193|389194|408757|415601|424588|424589|424590|424591|424592|424593|424594|424595|424596|424597|426751|438553|444072|444125|446250|446889|485951|511550|511686|512868|513939|513945|513964|513983|514007|514022|514032|514091|514111|514130|514136|514138|514162|514163|514164|514175|514182|514183|514186|514193|514194|514197|514199|514201|514210|514213|514214|514218|536013|536014|536136|539435|540616|540617|540618|550131|551445|556790|576134|578026|580794|583203|583204|590046|590047|590048|590061|590093|590716|590717|590718|608984|610521|610564|610591|613496|614542|622041|622128|622207|623597|623598|624127|624128|624129|624130|624131|624132|624133|624134|624135|624136|624137|624138|626018|626019|628836|654125|677211|677252|678055|679520|679521|682488|682737|682850|682863|682863|737527|789737|798746|800984|800985|800988|800991|801070|801072|801074|801079|801103|801104|801109|801159|801184|801185|801199|801200|801216|801225|801227|801257|801514|801518|801519|802098|802099|802115|805065|805067|805091|805133|806406|816010|818709|831356|858271|858513|859391|861055|861056|861144|861283|861284|861668|880277|904239|904355|905848|906188|921253|921254|921255|921256|921257|921258|921259|921260|921448|962045|962147|965430|965472|965506|965528|965547|965552|965752|965753|965754|965755|965756|965757|965758|965759|965760|965761|965762|965763|965764|965765|965766|965767|965768|965769|965770|965771|966222|966244|966251|966256|966275|966276|966279|966297|966312|971394|971406|971411|971421|971443|971444|971445|971451|971475|971479|971482|971490|971500|980677|980678|980695|980696|980728|980731|980742|983855|984026|984027|984028|984029|984030|984031|984032|984033|984034|984035", + "text": "Global developmental delay" + }, + { + "baseId": "16945|16946|16947|16948|16949|16950|16951|16952|16953|98822|98823|141248|141249|141250|141251|141252|141253|141254|141255|141256|200360|200362|200363|200364|200366|200368|200370|200371|200372|200373|200374|200375|200376|200377|200378|200383|257460|336772|336773|336782|336784|336785|336787|336788|336791|336795|336796|336798|336800|336801|336805|336810|336812|336815|336826|336828|346430|346433|346440|346442|346446|346449|346451|346458|346459|346461|346465|346467|346470|346472|346476|346481|346482|346484|350652|350655|350656|350658|350660|350662|350664|350666|350667|350670|350672|350675|350679|350681|350682|350685|350686|350688|350691|351716|351717|351722|351723|351724|351727|351730|351732|351733|351734|351739|351743|351745|351747|351750|351751|351754|351755|351758|351759|353591|353911|358631|358632|364097|377230|378489|379770|410853|415700|415701|420143|469612|469617|471639|487964|507913|508298|508299|508300|508303|533869|533883|534428|549002|549014|549016|549017|549020|549028|549030|549090|549091|549093|549098|549253|549254|549255|549258|549259|549416|549417|549418|549419|549420|549421|573786|573790|575164|581778|648984|648985|648986|648987|648988|648989|653567|694630|694631|694632|728897|728898|728899|728901|731372|742627|742628|745445|757795|757796|773320|773321|773323|773324|773329|773330|773331|773333|773334|773335|776722|786488|792007|821370|821371|821372|848786|848787|848788|848789|848790|848791|848792|848793|851859|886767|886768|886769|886770|886771|886772|886773|886774|886775|886776|886777|886778|886779|886780|886781|886782|886783|886784|886785|886786|886787|886788|886789|886790|886791|886792|886793|886794|886795|886796|886797|887505|887506|887507|887508|887509|929319|929320|951234|951235|958956|958957|958958|958959|958960|958961|958962|972344|972345|972346|972347|972348|972349|972350|972351|972352|972353|972354|972355|972356|980033|980034|980035|980036|980037|980038|980039|980040", + "text": "Holocarboxylase synthetase deficiency" + }, + { + "baseId": "16954", + "text": "SCIANNA BLOOD GROUP SYSTEM, SC:-1,-2" + }, + { + "baseId": "16955", + "text": "SCIANNA BLOOD GROUP SYSTEM, SC:-1,2" + }, + { + "baseId": "16956", + "text": "Radin blood group" + }, + { + "baseId": "16957", + "text": "Antigen in Scianna blood group system" + }, + { + "baseId": "16958|16959|16960|16961|16962|16963|16964|16965|16966|16967|101923|101924|101926|177099|177230|191719|195411|195413|200097|200099|200100|200101|200102|251975|251980|251982|271170|297992|297999|298004|298011|298012|298017|298022|298028|300202|300206|300207|300210|300213|300217|300235|304413|304414|304418|304430|304432|304434|304749|304750|304757|304758|304759|304762|368227|368708|443820|454072|455056|455238|455245|455703|455704|455711|455712|455947|455951|455958|481743|490822|501398|501410|501649|513060|521241|521521|521531|521595|521846|521850|560367|560369|560371|560373|560375|560377|560484|563213|563217|565170|565182|586274|620199|634000|634001|634002|634003|634004|634005|634006|634007|651335|661243|691876|691877|735165|735167|749566|749567|759386|765187|765189|819604|819605|830935|830936|830937|830938|830939|830940|830941|894629|894630|894631|894632|894633|894634|894635|894636|894637|894638|894639|894640|894641|894642|894643|894644|894645|894646|894647|894648|894649|894650|894651|894652|894653|894654|894655|894656|896127|896128|924097|924098|924099|932941|932942|932943|932944|932945|932946|940008|940009|944644|944645|944646|944647|944648|944649|954188|954189|964260|970814", + "text": "3-methylcrotonyl CoA carboxylase 2 deficiency" + }, + { + "baseId": "16968|16969|16970|16971|16972|16973|16974|101834|101836|101837|101839|141882|141883|141884|177088|177821|177822|177823|177824|191076|195739|200045|200046|200047|200050|251038|251043|251044|259755|289630|289632|289638|289640|290370|290371|290373|290376|293450|293453|293463|293977|293996|293997|367017|367272|368297|406159|425534|430991|451990|451995|451996|452001|452224|452226|452330|452333|452336|452340|452486|452491|481680|481681|489554|495181|500104|500406|500595|500598|513260|513261|519026|519031|519036|519038|519044|519200|519212|558860|558862|558864|559401|559403|559405|559407|561302|561306|562620|562621|562626|631083|631084|631085|631086|631087|631088|631089|631090|631091|631092|631093|631094|631095|631096|631097|631098|631099|631100|631101|631102|631103|631104|631105|631106|631107|631108|650979|651041|651043|651071|686378|686379|691342|691343|691345|733927|733928|763747|763749|781616|781617|781618|781620|781621|790368|819357|819358|819359|827758|827759|827760|827761|827762|827763|827764|827765|827766|827767|827768|851033|851552|861591|888453|888454|888455|888456|888457|888458|888459|888460|888461|920189|923106|923107|923108|923109|923110|931853|931854|939933|943435|953401|953402|953403|953404|953405|953406", + "text": "3 Methylcrotonyl-CoA carboxylase 1 deficiency" + }, + { + "baseId": "16968|16969|16973|101924|141882|141884|177099|177822|177823|177824|191076|191719|195739|200045|200047|200099|200100|200102|251982|289632|293997|452001|452224|452226|455711|455947|455958|481743|490822|521595|560377|562620|563217|565182|631090|631092|631096|631102|686378|691342|735165|735167|749567|759386|830939|888458|894631|944649|953403|977821|977822|977823|977824|977825|977826|977827|977828|977829|977830|977831|977832|977833|977834|977835|977836|977837|978185|978186|978187|978188|978189|978190|978191|978192|978193|978194|978195|978196|978197|978198|978199|978200|978201|978202", + "text": "Methylcrotonyl-CoA carboxylase deficiency" + }, + { + "baseId": "16975|16976|16977|16978|16979|16980|16981|16982|23412|47734|47735|47736|47737|47738|47739|47740|47741|47742|47743|47744|47745|47746|47747|47748|47749|47750|47751|47752|47753|47754|47755|47756|47757|47758|47759|47760|47761|47762|47763|47764|47765|47766|47767|47768|47769|47770|47771|47772|47773|47774|47775|47776|47777|47778|47779|47780|47781|47782|47783|47784|47785|47786|47787|47788|47789|47790|47791|47792|47793|47794|47795|47796|47797|47798|47799|47800|47801|47802|47803|47804|47804|47805|47806|47807|47808|47809|47810|47811|47812|47813|47814|47815|47816|47817|47818|47819|47820|47821|47822|47823|47824|47825|47826|47827|47828|47829|47830|47831|47832|47833|47834|47835|47836|47837|47838|47839|47840|47841|47842|47843|47844|47845|47846|47847|47848|47849|47850|47851|47852|47884|227175|237840|237841|237842|237843|237844|237845|237846|237847|237848|237849|237850|237851|237852|237853|317019|317020|317022|317028|317029|317030|317036|317038|317043|317047|317049|324682|324683|324685|324686|324688|324690|324694|324695|324696|324697|324698|324704|324706|324707|324713|324716|324728|324729|324744|324745|324746|324748|324757|324759|324760|324764|324765|330850|330854|330863|330868|330872|330873|330877|330896|330897|330898|332317|332319|332320|332321|332330|332334|332335|332341|332342|332351|332353|332354|332363|332364|332370|332380|332383|332384|332388|332390|332395|332396|332397|332404|353245|437927|462143|462146|462432|463050|527134|527135|527161|527162|527165|527626|537191|565444|566828|568025|568026|568030|571834|571841|571842|577259|619925|620442|641104|641105|641106|641107|641108|641109|641110|641111|652698|684325|684326|684327|685380|693195|693196|693198|693199|695565|738632|738633|753348|769104|778090|793420|839880|839881|839882|839883|839884|839885|839886|869764|869765|869766|869767|869768|869769|869770|869771|869772|869773|869774|869775|869776|869777|869778|869779|869780|869781|869782|869783|869784|869785|869786|869787|869788|869789|869790|869791|869792|869793|869794|869795|869796|869797|869798|869799|869800|872237|872238|872239|919428|919429|919430|919431|926615|936109|936110|936111|940267|948001|948002|948003|948004", + "text": "Parkinson disease 8, autosomal dominant" + }, + { + "baseId": "16979|22089", + "text": "Young-onset Parkinson disease" + }, + { + "baseId": "16983|16984|16985|16986|16987|16988|16989|45768|344604|508932|614468|614469|614470", + "text": "Weill-Marchesani syndrome 1" + }, + { + "baseId": "16990|125789|140823|140824|210976|293959|293966|293967|452475|519022|695187|779047|827755|931852|943433|980911", + "text": "3-methylglutaconic aciduria type V" + }, + { + "baseId": "16991|16992|177530|188766|188767|254273|314839|314840|314841|314848|314850|314851|314855|314856|314866|314881|314882|314886|314889|321579|321581|321591|321593|321594|321595|321605|321606|321613|321614|321623|321651|321655|327684|327689|327690|327693|327694|327695|327698|327699|327700|327712|327716|327719|327731|327735|327752|327753|327756|328782|328790|328799|328801|328804|328806|328807|328809|328810|328811|328818|328822|328824|328832|328834|328836|328841|431757|623308|693100|791159|838825|868378|868379|868380|868381|868382|868383|868384|868385|868386|868387|868388|868389|868390|868391|868392|868393|868394|868395|868396|868397|868398|868399|868400|868401|868402|868403|868404|868405|868406|868407|868408|868409|868410|868411|868412|868683", + "text": "Congenital stationary night blindness, type 2B" + }, + { + "baseId": "16993|16994|16995|16996|16997|16998|16999|17000|17001|17002|17003|17004|17005|17006|17007|17008|17009|17010|17012|17013|17014|17015|17016|17018|17019|17023|44317|44318|79148|79149|79150|79151|79152|79153|79154|79155|79156|79157|79158|79159|190708|231104|257361|257362|260230|335525|335529|335531|335536|335560|345310|350014|351027|351029|351030|351031|351032|351035|377038|378044|390341|390343|430318|470393|471393|497336|507775|533534|533536|533544|533569|533570|533571|533575|533613|533619|548891|548893|548898|548909|548912|548913|548968|548970|548972|548973|549211|549381|549382|549383|549384|549385|549386|549387|549388|549389|549390|549391|571135|571245|572904|572912|610158|613994|623167|648699|648700|648701|648702|648703|648704|648705|648706|653129|653559|694553|694554|694555|695846|705499|705500|705501|728671|728672|731348|745304|757538|757539|757541|757542|760899|773111|773112|773114|773115|773117|786378|786380|786381|821327|821328|821329|848413|848414|848415|848416|848417|848418|848419|848420|848421|848422|848423|848424|852908|852999|886147|886148|886149|886150|886151|886152|886153|886154|886155|886156|886157|886158|886159|929196|929197|951102|951103|951104|951105|958842|958843|958844|958845|958846|958847|958848|960940|972340|972341|972342|972343|980021|980022", + "text": "Severe combined immunodeficiency due to ADA deficiency" + }, + { + "baseId": "16998|28168|28169|28169|28170|28172|28172|28174|28174|28174|28175|28177|28185|28187|28193|28198|28199|28200|45371|45372|45372|45373|45374|45375|45376|45376|45377|45380|45381|79572|79572|79573|79574|79575|79576|79581|79582|142585|142585|142586|142587|142587|142588|142588|142589|142589|142590|142590|142590|254148|254148|254149|254150|254151|254151|269282|313990|313990|313992|313992|313995|314000|314002|314012|314013|314014|314015|314025|314026|314032|320368|320369|320387|320387|320393|320393|320401|320401|320417|320431|320432|320452|320453|320454|320456|320463|320476|320489|320490|320497|320500|326350|326360|326369|326374|326377|326378|326380|326382|326382|326384|326384|326399|326401|326415|326421|326429|326430|326430|326434|326434|326435|326435|326435|326443|326452|327380|327381|327381|327390|327392|327406|327407|327408|327412|327430|327431|327441|327443|327444|327446|327450|327451|327455|327462|327462|327462|327474|327474|327480|359878|359938|359941|371408|408342|415266|415267|425922|425922|433888|433888|433888|444800|461092|461092|461100|461295|461298|461300|461304|461574|461576|461576|461890|461890|461904|461904|461907|461907|481990|488104|488104|488113|488113|488119|488119|491899|513657|513658|526182|526185|526190|526194|526194|526666|526667|526671|526676|526676|526679|526682|564612|564613|567235|567235|567235|567239|567241|567241|567244|567245|567249|570614|570620|570629|612909|614356|614357|624428|640003|640004|640005|640006|640007|640008|640009|640010|640011|640012|640013|640014|640015|640016|640017|640018|640019|640020|640021|640022|640022|640023|640023|640024|640025|640025|640026|640027|640028|687777|687778|693020|693020|693021|693021|701752|701752|712815|737960|737962|768438|768440|768442|783988|783989|783990|820362|838357|838358|838359|838360|838361|838362|838363|838364|838365|838365|838366|838367|838368|838368|838369|838370|838371|838372|838373|838373|838374|838375|838376|838377|838378|838379|838380|838381|838382|838383|838384|838385|838386|838387|838388|838389|838390|838391|838392|838393|838394|838395|838396|838397|838398|838399|838400|838401|838402|867886|867887|867888|867889|867890|867891|867892|867893|867894|867895|867896|867897|867898|867899|867900|867901|867902|867903|867904|867905|867906|867907|867908|867909|867910|867911|867912|867913|867914|867915|867916|867917|867918|867919|867920|867921|867922|867923|867924|867925|867926|867927|867928|867929|867930|867931|867932|926215|926216|926217|926218|926219|926220|926221|926222|926223|926224|926225|935514|935515|935516|935517|935518|935519|935520|935521|947432|947433|947434|947435|947436|947437|947438|947439|947440|947441|947442|947443|947444|947445|956477|956478|956479|956480|956481|956482|956483|956484|956485|956486|956487|956488|956489|956490|956491|956492|956493|961958|961959|961960|961961|961962", + "text": "Severe combined immunodeficiency, autosomal recessive, T cell-negative, B cell-negative, NK cell-positive" + }, + { + "baseId": "17000|17001|17002|17003|17005|17006|17018|17019", + "text": "Partial adenosine deaminase deficiency" + }, + { + "baseId": "17004|17018|17023|28177|44474|260230|291325|297340|299357|299373|312525|314019|314021|320474|320491|325324|327380|327410|327417|327426|327480|332796|342993|342997|348310|348336|348355|349518|353163|353188|353488|353489|481990|548898|548913|972607|983949", + "text": "Severe Combined Immune Deficiency" + }, + { + "baseId": "17009|44318|44319|44469|44470|44471|44472|44473|44474|44663|44664|45054|45055|45056|45057|45059|45060|45078|45079|45080|45081|45082|45083|45084|45085|45086|45372|45373|45375|45376|45377|45380|45381|45575|79585|363593|390341|434671|487945|497336|549388|590646|974489", + "text": "Severe combined immunodeficiency disease" + }, + { + "baseId": "17011|17021|17022|17023", + "text": "SCID due to ADA deficiency, delayed onset" + }, + { + "baseId": "17012", + "text": "Adenosine deaminase 2 allozyme" + }, + { + "baseId": "17024|17025|190688|190689|190691|190692|190693|190694|190696|190697|190698|190699|190700|190701|190702|191453|192950|237269|237411|237422|254848|254849|254850|265784|265785|267426|268038|268941|270623|271818|273858|319604|319605|319607|319610|319611|319612|319616|319618|319619|319621|319625|319631|319632|319636|319637|319638|319643|319645|319647|319651|319652|319656|319658|319659|319660|319662|319663|319664|319674|319679|319690|319692|319693|319694|319696|319699|319704|319706|319707|319713|319715|319716|319717|319727|319731|319732|319745|319746|319751|319767|328125|328127|328128|328133|328134|328135|328137|328146|328147|328150|328153|328156|328173|328175|328179|328180|328187|328188|328192|328194|328195|328203|328226|328227|328236|328237|328238|328245|328247|328252|328254|328258|328262|328263|328264|328272|328274|328283|328287|328291|328293|328295|334520|334521|334525|334539|334545|334552|334553|334555|334564|334568|334571|334572|334576|334579|334583|334584|334592|334594|334599|334601|334607|334619|334620|334624|334641|334642|334643|334660|334662|334663|334668|334675|334676|334677|334678|334692|334706|334710|334716|334721|334728|334729|334744|336286|336287|336290|336297|336298|336308|336314|336315|336323|336333|336337|336338|336341|336342|336344|336346|336347|336350|336354|336356|336361|336364|336365|336366|336376|336380|336382|336384|336388|336393|336394|336395|336399|336408|336414|336428|336434|336436|336437|336445|336448|336477|336489|336496|336498|336500|429502|489673|492814|513100|513101|539051|584919|613524|620471|620472|688163|688165|688166|688167|688168|688169|693357|693359|693360|693362|693365|693366|693371|693372|739048|739049|753838|871180|871181|871182|871183|871184|871185|871186|871187|871188|871189|871190|871191|871192|871193|871194|871195|871196|871197|871198|871199|871200|871201|871202|871203|871204|871205|871206|871207|871208|871209|871210|871211|871212|871213|871214|871215|871216|871217|871218|871219|871220|871221|871222|871223|871224|871225|871226|871227|871228|871229|871230|871231|871232|871233|871234|871235|871236|871237|871238|871239|871240|871241|871242|871243|871244|871245|871246|871247|871248|871249|871250|871251|871252|871253|871254|871255|871256|871257|871258|871259|871260|871261|871262|871263|871264|871265|871266|871267|871268|871269|871270|871271|871272|871273|871274|871275|871276|871277|871278|871279|871280|871281|871282|871283|871284|871285|872329|872330|872331|872332|872333|872334|904991|904992|904993|904994|904995|971581|971582", + "text": "Fraser syndrome 2" + }, + { + "baseId": "17027|17028|17029|413788", + "text": "BNAR syndrome" + }, + { + "baseId": "17030|17031|17032|133901|133902|196356|214168|214169|214762|271907|291765|293111|293112|296408|367421|367743|368828|393771|393817|406366|452801|453564|519614|536654|559535|563313|620138|622334|622335|622336|685154|686467|764186|764187|781815|819421|819424|819425|828588|828589|828590|828591|828592|828593|828594|851578|851580|923365|923366|932091|932092|932093|943709|943710|943711|943712|943713|943714|943715|943716|953597|953598|953599|953600|953601", + "text": "Joubert syndrome 8" + }, + { + "baseId": "17033|102096|177028|191435|191436|192057|193721|195431|196333|256341|256342|256345|256346|256347|256348|256349|329459|329460|329465|329488|329490|329494|329504|329505|329512|329518|329522|329527|329529|329533|329535|329544|329545|329546|329547|329551|329553|329592|329593|339753|339763|339765|339767|339782|339783|339789|339791|339793|339797|339801|339802|339804|339810|339815|339816|339818|339820|339822|345484|345496|345506|345510|345520|345521|345526|345534|345537|345541|345548|345554|345559|345564|345566|345569|345571|345574|346824|346825|346836|346844|346851|346857|346858|346859|346862|346867|346870|346871|346872|346876|346877|346882|346883|346889|346893|346929|346930|845926|845927|845938|878194|878195|878196|878197|878198|878199|878200|878201|878202|878203|878204|878205|878206|878207|878208|878209|878210|878211|878212|878213|878214|878215|878216|878217|878218|878219|878220|878221|878222|878223|878224|878225|878226|878227|878228|878229|878230|878231|878232|878233|878234|878235|878236|878237|878238|878239|878240|878241|878242|878243|878244|878245|878264|878265|919763", + "text": "Cone-rod dystrophy 5" + }, + { + "baseId": "17034|140169|140170|140171|140172|211799|211802|211806|211807|327514|327518|327519|337350|337355|343627|343629|343635|343639|343640|345122|345129|409847|622915|876908|876909|876910|876911|876912|876913|876914|876915|876916|876917|876918|876919|876920|880479|919713", + "text": "Nuclearly-encoded mitochondrial complex V (ATP synthase) deficiency 1" + }, + { + "baseId": "17035|17036|17037|17038|17039|17040|17041|17042|227397|227398|237010|237321|237368|256414|256415|256416|256417|256418|256420|256423|256426|256427|256428|256429|256430|256431|256437|256439|256440|256441|256446|256447|256450|256451|256453|256454|329958|329959|329966|329968|329975|329978|329990|329994|329997|330000|330002|330014|330017|330022|330024|330026|330027|330028|330032|340221|340227|340231|340233|340235|340240|340241|340243|340245|340247|340260|345957|345963|345964|345968|345976|345977|345985|345987|345988|345992|345995|346003|346005|346008|346009|347296|347299|347301|347303|347307|347308|347309|347310|347311|347312|375709|390239|410246|422202|434394|434457|445900|467475|467476|467479|468333|468340|468846|468851|468852|469093|469095|531771|531778|531780|531782|531789|531852|531855|531894|531897|531903|531904|531908|531913|531914|531915|532152|532155|532157|532164|532166|532168|569747|569748|569752|569753|569755|569756|571594|571597|571598|572249|572251|572257|572261|572262|572267|572272|572274|574615|574616|574617|574618|574619|587269|614444|620607|620608|646697|646698|646699|646700|646701|646702|646703|646704|646705|646706|646707|646708|646709|646710|646711|646712|646713|646714|646715|646716|646717|646718|646719|646720|646721|652844|653031|653364|653516|653518|715712|727448|727449|727450|731180|741045|745082|756134|756135|756137|756138|756140|760670|771841|771842|771844|771845|771846|776734|785747|785748|785749|792809|846200|846201|846202|846203|846204|846205|846206|846207|846208|846209|846210|846211|846212|846213|846214|846215|846216|846217|846218|846219|846220|846221|846222|846223|846224|846225|846226|846227|846228|846229|846230|846231|846232|846233|846234|846235|846236|846237|846238|846239|846240|846241|851755|852909|858755|878498|878499|878500|878501|878502|878503|878504|878505|878506|878507|878508|878509|878510|878511|878512|878513|878514|878515|878518|878519|878520|878521|880591|880592|880593|880594|880595|880596|880597|880598|928533|928534|928535|928536|928537|928538|928539|928540|928541|928542|928543|928544|938223|938224|938225|938226|938227|938228|938229|938230|938231|941198|941199|950290|950291|950292|950293|950294|950295|950296|950297|950298|950299|950300|958313|958314|958315|958316|958317|958318|958319|958320|958321|958322|958323|958324|960245|960246|961977|980485", + "text": "Familial hemophagocytic lymphohistiocytosis 3" + }, + { + "baseId": "17043|17044|17045|17046|17047|17048|98559|98560|98561|98562|98564|117265|135742|178066|187121|192209|194807|194808|195568|205173|228218|254825|254829|254830|265322|265525|266407|266527|267944|268189|269008|269208|269214|269291|269367|269472|269833|270070|270437|272665|273800|274472|274581|275451|319224|319226|327724|327754|327763|334017|335632|335639|335640|353291|372663|462610|462891|463382|463383|490527|492123|492730|527427|527489|527490|527492|527745|527749|528013|539048|546795|546796|546797|546954|546956|546962|546967|546969|547115|547119|547124|547345|547346|567120|567125|568269|608906|641582|641583|641584|641585|641586|641587|652283|652352|652525|652768|679459|681848|693327|693328|787944|794047|799734|802183|820548|820549|840579|840580|840581|840582|840583|840584|840585|852529|852712|926813|936355|936356|948273|948274|948275|957028|957029|957030|957031|957032|957033|966349|979360|979361", + "text": "Severe autosomal recessive muscular dystrophy of childhood - North African type" + }, + { + "baseId": "17049|17050|17051|17052|17053|17054|17055|39717|39718|49167|75116|101652|101653|101654|133771|133772|133773|133774|133775|133776|133777|152870|166163|166164|177234|191418|191827|192032|192679|192931|193197|196042|198627|207325|207326|212518|212519|214230|214231|214232|214233|214234|214235|214236|214237|214238|214239|214240|214241|214242|214243|214244|214245|214246|214247|214248|214249|214250|214251|214252|214253|214254|214255|214256|214257|214258|237019|252116|252123|252128|252130|252135|252139|264200|268659|299154|299162|299166|299167|299169|299170|301557|301558|301560|301562|301563|301567|301569|301576|305939|305942|305954|305955|305965|305969|305977|305978|305980|306211|306213|306214|306217|306228|306240|306247|306248|306258|306262|306281|306283|368348|368357|368862|438708|455967|501165|620215|620216|622883|623142|626308|634642|678064|683761|683762|683764|802159|831586|895420|895421|895422|895423|895424|895425|895426|895427|895428|895429|895430|895431|895432|895433|895434|895435|895436|895437|895438|895439|895440|895441|895442|895443|895444|895445|895446|895447|895448|895449|896193|896194|896195|896196|896197|896198|896199|906245|906283|962050|963595|963596|972788", + "text": "Joubert syndrome 3" + }, + { + "baseId": "17051|181421|181433", + "text": "Typical Joubert syndrome MRI findings" + }, + { + "baseId": "17054|39717|904949|904950|904951", + "text": "Joubert syndrome with ocular defect" + }, + { + "baseId": "17057|17058|17058|17059|443654|513552|626146|904267|904268|906011|961768|961769", + "text": "Neutral 1 amino acid transport defect" + }, + { + "baseId": "17058|17424|918914|961768|961769", + "text": "Iminoglycinuria" + }, + { + "baseId": "17058|17060|17423|17424|19884|290474|290478|290483|290496|290509|290514|290515|290521|290529|290530|290539|290540|290548|290550|290552|290557|290559|290569|290570|290571|290573|290578|290579|290586|291372|291373|291374|291382|291383|291385|291389|291390|291391|291396|291397|291398|291401|291403|291407|291411|291412|291413|291418|291426|291436|291437|291438|291459|291460|291461|291467|294599|294602|294608|294620|294622|294629|294631|294635|294639|294643|294644|294646|294647|294648|294650|294652|294653|294657|294659|294678|294680|294699|294700|294713|294715|294716|295036|295037|295052|295054|295058|295061|295065|295066|295067|295068|295069|295073|295082|295084|295086|295087|295088|295089|583095|612428|620763|620764|888977|888978|888979|888980|888981|888982|888983|888984|888985|888986|888987|888988|888989|888990|888991|888992|888993|888994|888995|888996|888997|888998|888999|889000|889001|889002|889003|889004|889005|889006|889007|889008|889009|889010|889011|889012|889013|889014|889015|889016|889017|889018|889019|889020|889021|889022|889023|889024|889025|889026|889027|889028|889029|889030|889031|889032|889033|889034|889035|889036|891648|891649|961768|961769", + "text": "Hyperglycinuria" + }, + { + "baseId": "17060|17423|19884", + "text": "Iminoglycinuria, digenic" + }, + { + "baseId": "17061|17061|17062|17063|17066|17067|17068|17070|17071|17072|17073|17076|17077|17544|101670|101671|101673|101674|101675|101676|101677|101678|101679|101680|101681|101685|101685|101686|101687|101688|101689|101691|101692|101693|101695|101696|101697|101698|101699|101700|101701|101702|101703|101704|101705|101706|101707|101708|101709|101711|101712|101713|168589|168591|168592|168593|168594|168595|168597|168599|168601|168602|168603|168604|168606|168609|168610|168611|168613|168614|168615|168617|168618|168619|168620|168621|168622|168623|168623|168624|168625|168626|168627|168629|168630|168632|168633|168634|168635|168636|168637|168638|168640|176992|177386|177595|177602|186090|186091|190888|191582|191582|191709|191710|191828|192482|192483|192486|192487|192488|192489|192491|192494|193060|193139|193139|193342|193639|193870|193950|194031|194076|194077|194077|194174|194197|194198|194202|194203|195384|195384|196301|196302|207549|207550|207551|207553|207555|207556|207558|207559|207560|207561|207562|207563|212634|212635|212636|213580|215174|215372|215385|221760|221761|221762|221763|223369|227917|237524|240183|240392|240393|240394|240395|247033|252945|252947|252948|253149|253150|253158|253167|253168|253174|259903|262638|262639|262640|262641|262642|262643|262644|262645|262646|262647|262648|262648|262649|262650|262651|262652|262653|262654|262655|262656|262657|262658|262659|262660|262661|262662|262663|262664|262665|262666|264397|264411|265843|266798|266825|270747|271865|272720|275025|305618|305623|305633|305650|305652|305652|305662|305669|305672|305676|309529|309530|309550|309551|309564|309586|309627|309652|309666|309679|309713|314854|314860|314904|314906|314911|314912|314913|314916|314918|314924|314937|314940|314969|314978|315029|353841|359863|361191|361547|362385|370299|370306|371931|371942|390672|390691|396067|396169|396250|396259|396262|396534|396538|396539|396545|396549|396666|396667|396671|396674|396912|396920|396922|396928|405245|407403|407414|407426|407433|407437|408674|420428|420429|421685|424375|424563|425798|428849|434798|438510|456159|456960|456961|457493|457495|457501|457620|457910|457911|457929|457933|457934|457940|457942|458484|458486|458488|458488|458489|458490|458493|458496|458501|458565|458567|458569|458572|458581|458583|458971|458975|458976|458980|481211|481212|481213|481214|481215|481216|481217|481218|481219|481220|481221|481222|481223|481225|481235|481347|481348|481823|487402|490083|495395|502479|513977|514270|514575|522849|523069|523070|523175|523289|523292|523396|523406|523645|523649|523657|523659|523661|523664|523664|523670|523670|523672|523679|523969|523970|523971|523973|523984|523985|524237|524239|524246|524251|524252|524254|524256|524258|524259|524261|524262|524263|524264|524265|524265|524267|524272|524272|524273|524283|524285|537508|537829|537830|537831|537832|537833|537834|537835|537836|537837|537838|539430|550149|552125|552126|561770|561771|562220|562471|562471|562473|562478|562481|562483|562988|562992|562993|562994|562998|563010|563014|563017|563024|563037|563038|565180|565185|565191|565194|565198|565200|565200|565203|567144|567152|567154|567167|567997|568003|568006|568013|568015|568022|568032|568037|568045|568046|568051|578469|578470|579417|579450|579453|579454|579458|579459|579461|579468|579478|579614|579620|579651|581845|582466|583103|584199|588572|589840|590780|610693|610694|611398|611703|612822|614164|614324|614325|614514|615267|615268|622105|625871|625966|626022|636357|636358|636359|636360|636361|636362|636363|636364|636365|636366|636367|636368|636369|636370|637303|637304|637305|637306|637307|637308|637309|637310|637311|637312|637313|637314|637315|637316|637317|637318|637319|637320|637321|637322|637323|637324|637325|637326|637327|637328|637329|637330|637331|637332|637333|637334|637335|637336|637337|637338|637339|637340|637341|637342|637343|637344|637345|637346|637347|637348|637349|637350|637351|637352|637353|637354|637355|637356|637357|637358|651792|651795|651797|651906|651995|654513|677293|677294|677315|677321|677982|679761|679762|679763|682732|682810|682811|683941|684013|684014|684016|684019|684022|684024|685228|687120|687121|687122|687123|687124|687126|687127|687294|687295|687296|687297|687299|687300|687302|687303|687304|687305|687306|687307|687308|687309|687311|687313|687314|687315|689922|689924|692305|692309|692505|692508|692510|692511|692517|695393|695395|723156|759585|766412|777633|783140|783142|787561|788829|788954|790807|790808|790809|790810|790811|790812|792672|796082|805138|819971|819972|833855|833856|833857|833858|833859|833860|833861|833862|833863|833864|833865|833866|833867|833868|833869|833870|833871|833872|834920|834921|834922|834923|834924|834925|834926|834927|834928|834929|834930|834931|834932|834933|834934|834935|834936|834937|834938|834939|834940|834941|834942|834943|834944|834945|834946|834947|834948|834949|834950|834951|834952|834953|834954|834955|834956|834957|834958|834959|834960|834961|834962|834963|834964|834965|834966|834967|834968|834969|834970|834971|834972|834973|834974|834975|834976|834977|834978|834979|851207|851698|852142|852144|852146|859681|899879|903554|918296|918297|919163|919164|919165|919166|919167|919168|919169|919170|919171|920256|924913|924914|924915|925239|925240|925241|925242|925243|925244|925245|925246|925247|925248|925249|925250|925251|925252|934002|934003|934372|934373|934374|934375|934376|934377|934378|934379|934380|934381|934382|934383|934384|934385|934386|934387|934388|934389|934390|934391|934392|934393|934394|940110|940111|940909|940910|940911|945766|945767|945768|945769|945770|945771|945772|946137|946138|946139|946140|946141|946142|946143|946144|946145|946146|946147|946148|946149|946150|946151|946152|946153|946154|946155|946156|955219|955220|955221|955469|955470|955471|955472|955473|955474|955475|955476|955477|955478|955479|955480|955481|955482|955483|955484|955485|959866|959867|959897|959898|959899|960655|960656|961611|961955|964303|969282|969780|969782|969785|970883|970884|975664|980509", + "text": "CHARGE association" + }, + { + "baseId": "17061|17073|17074|17075|101670|101671|101674|101675|101678|101679|101681|101683|101685|101687|101688|101689|101691|101692|101693|101695|101696|101697|101698|101699|101700|101701|101702|101703|101704|101705|101707|101708|101709|101711|101713|168592|168608|168613|168621|168622|168623|168633|168639|177595|189028|191582|191828|192486|193139|193639|194076|194077|194174|194203|195384|195384|196301|207550|207556|240392|240393|253150|253174|260790|262560|262648|271380|271865|275025|305624|305627|305647|305650|305652|305652|305657|305662|305669|305671|305672|305683|305684|305697|305698|309528|309547|309565|309566|309568|309578|309586|309595|309597|309615|309624|309631|309637|309648|309652|309664|309666|309668|309679|309680|309688|309690|309702|309714|309718|314836|314868|314869|314870|314874|314875|314876|314899|314900|314904|314905|314913|314915|314918|314920|314923|314929|314930|314934|314936|314937|314939|314945|314960|314969|314973|314974|314975|314983|314984|315003|315011|315014|315015|315016|315017|315018|371931|371942|396922|407414|423254|458484|458488|502343|513071|523664|523670|523984|524237|524252|524265|524272|524273|562471|565200|579417|579453|579454|579649|611398|614324|614325|624149|637321|637339|637346|684014|684024|687299|687309|692518|793285|806423|834973|899855|899856|899857|899858|899859|899860|899861|899862|899863|899864|899865|899866|899867|899868|899869|899870|899871|899872|899873|899874|899875|899876|899877|899878|899879|899880|899881|899882|899883|899884|899885|899886|899887|899888|899889|899890|899891|899892|899893|899894|899895|899896|899897|899898|899899|899900|899901|900508|900509|961611", + "text": "Hypogonadotropic hypogonadism 5 with or without anosmia" + }, + { + "baseId": "17069", + "text": "Scoliosis, idiopathic 3" + }, + { + "baseId": "17072", + "text": "Hypogonadotropic hypogonadism 5 without anosmia" + }, + { + "baseId": "17078", + "text": "PPARGC1B polymorphism" + }, + { + "baseId": "17079|17080|17081|17082|17083|17083|251300|251300|291791|291792|291793|291802|291802|291806|293133|296451|296453|296455|296466|354273|561830|631804|651246|685157|686472|781822|819427|828596|828597|828598|828599|889783|889784|889785|889786|889787|889788|889789|889790|889791|889792|891714|932095|932096|943720", + "text": "Bardet-Biedl syndrome 3" + }, + { + "baseId": "17083|17084|251300|291802|561830|631804|651246|685157|686472|781822|819427|828596|828597|828598|828599|932095|932096|943720|965642", + "text": "Retinitis pigmentosa 55" + }, + { + "baseId": "17085|17086|17087|17088|17089|17090|17091|17092|17093|17094|17095|17096|17097|17098|17100|152881|195036|195038|195039|199800|238071|238072|269446|321023|321024|321026|330122|336640|482052|528788|550250|612157|642639|642640|642641|642642|642643|652613|693561|702958|702959|702960|702961|725770|739288|739289|769878|778300|784749|784750|784752|791418|791419|791420|794252|794253|794254|794255|794256|794258|818306|841678|841679|841680|841681|841682|841683|841684|841685|841686|841687|841688|841689|841690|851575|856786|856787|856788|856790|919540|927151|936691|936692|936693|936694|936695|936696|948641|957270|957271|957272|957273|957274|960807|960808|965937|965938|965939|965940|965941|965942|965943|965944|965945", + "text": "Leber congenital amaurosis 13" + }, + { + "baseId": "17086|20264|21608|101737|101744|152872|205170|205460|259747|263389|417109|426811|431556|431656|431661|431735|431744|431769|431774|431785|431831|431834|431839|431849|431852|431877", + "text": "Abnormality of the eye" + }, + { + "baseId": "17086", + "text": "RDH12-Related Disorders" + }, + { + "baseId": "17088|17403|21917|21918|75295|105181|205138|237652|237678|247774|247775|359177|359178|431847|488481|569886|642639|800449|800457|800471|800474|800481|800535|800554|800558|800559|800571|800581|800617|800618|800625|800693|800696|800707|800708", + "text": "Cone-rod degeneration" + }, + { + "baseId": "17099|17100", + "text": "Retinitis pigmentosa 53" + }, + { + "baseId": "17101", + "text": "Diabetes mellitus, insulin-dependent, 5" + }, + { + "baseId": "17102|17103|17104|17105|17109|207420", + "text": "Myoclonic Epilepsy, Juvenile, 1" + }, + { + "baseId": "17102|17103|17104|17106|22647|38421|101782|101782|134010|134011|134012|134407|134408|134409|134409|134410|134410|134411|134411|134412|134413|134414|134414|134415|134416|134417|134417|134418|134418|140354|140358|140359|140895|140895|140896|140896|140897|140898|140899|140899|140900|190285|190889|191506|193645|194994|196048|201269|201270|201851|201972|201973|201975|201977|201978|201979|201979|201980|201981|201982|201984|201988|201989|201991|201991|201993|201993|201995|201996|201997|201997|201998|202003|202003|202005|202005|202007|202008|202008|202009|202010|202011|202012|207419|268415|270295|271613|282202|282203|282204|282210|282211|282215|282225|282228|282238|282249|282262|282263|282264|282265|282273|282275|282285|282287|282291|282292|282867|282873|282884|282889|282890|282897|282908|282909|282910|282911|282912|282915|282916|282937|282940|282941|282942|282946|282949|282954|282983|282984|282985|282986|282987|282988|282989|282994|284475|284478|284479|284480|284481|284482|284486|284491|284492|284493|284498|284501|284503|284519|284520|284781|284799|284801|284803|284815|284818|284819|284822|284851|284852|284875|284876|284882|284883|284884|284885|284889|284892|284893|284898|284904|284921|284923|284924|284925|284930|284934|284935|285431|298623|300707|300708|300713|300714|300719|300721|300722|300723|300734|300738|300739|300751|300752|302845|303045|303061|303064|303627|303628|303629|303632|303633|303635|303651|303652|303659|303660|303670|303671|303672|303675|303677|303678|308173|308174|308174|308180|308182|308199|308201|308210|308222|308225|308226|308231|308233|308236|308237|308238|308239|308240|308241|308242|308245|308250|308251|308252|308253|308263|308267|353540|368987|370496|389791|395192|395194|395421|395552|395557|395841|395842|445828|455651|455654|455845|455849|456246|456250|521697|521700|522042|522046|522051|522071|522073|522392|522396|522399|522407|560748|560750|560752|560755|560761|560880|560881|560888|560890|560896|560897|560903|565718|565718|565738|565747|634982|634983|634984|634985|634986|634987|634988|634989|634990|634991|634992|634993|634994|634995|634996|634997|634998|634999|635000|635001|635002|686900|686901|686902|692012|710557|722069|777747|790532|790533|818378|818381|819699|819700|821936|821937|821938|822261|832037|832038|832039|832040|832041|832042|832043|832044|832045|832046|832047|832048|832049|832050|832051|832052|832053|832054|832055|832056|832057|832058|832059|832060|832061|832062|832063|851078|924380|924381|933357|933358|933359|933360|933361|933362|933363|933364|945065|945066|945067|945068|945069|945070|954500|954501|954502|954503", + "text": "Juvenile myoclonic epilepsy" + }, + { + "baseId": "17103|17106|38421|101782|134407|134408|134409|134410|134411|134412|134414|134417|134418|140895|140896|140897|140898|140899|140900|190889|193645|194994|196048|201972|201977|201978|201979|201981|201984|201988|201991|201993|201995|201996|201997|201998|202003|202005|202007|202008|202011|207419|270295|271613|308174|368987|370496|389791|395194|395421|395552|395557|455845|455849|456250|522042|522046|522071|522073|522407|560752|565718|565738|634983|634992|634994|634996|635000|686900|686901|686902|692012|710557|722069|777747|819699|819700|821936|821937|821938|822261|832037|832038|832039|832040|832041|832042|832043|832044|832045|832046|832047|832048|832049|832050|832051|832052|832053|832054|832055|832056|832057|832058|832059|832060|832061|832062|832063|851078|924380|924381|933357|933358|933359|933360|933361|933362|933363|933364|945065|945066|945067|945068|945069|945070|954500|954501|954502|954503", + "text": "Typical absence seizures" + }, + { + "baseId": "17107|17108|134410|201975|201979|201980|201982|201993|201997|202012|268415|395192|395841|395842|455651|455654|456246|521697|521700|522051|522392|522396|522399|560748|560750|560755|560761|560880|560881|560888|560890|560896|560897|560903|565718|565747|634982|634984|634985|634986|634987|634988|634989|634990|634991|634993|634995|634997|634998|634999|635001|635002", + "text": "Epilepsy, juvenile absence, susceptibility to, 1" + }, + { + "baseId": "17110|17111|17112|17113|17114|17115|17116|39716|75257|143207|260933|264773|264778|427721|439182|439182|622311|627401|683308|789107|789938|789939|858698|861132|861134|861137|921275|969126|969128|970140|971518", + "text": "Leukodystrophy, hypomyelinating, 2" + }, + { + "baseId": "17117|434566|439182|918614", + "text": "Spastic paraplegia 44, autosomal recessive" + }, + { + "baseId": "17118|17119|439182", + "text": "Lymphatic malformation 3" + }, + { + "baseId": "17120|17121|17122|17123|17124|17125|17126|17127|17128|98436|98437|98438|98440|98443|177296|187035|187036|187037|187038|187039|187040|187041|187042|187043|187044|187045|189178|189179|189180|190724|190725|190961|190962|191139|195557|205029|205030|223592|223593|223594|223595|223596|223597|228219|237278|237297|237513|237514|237515|237516|237752|256782|270210|270478|272485|332698|342852|342861|342865|342869|342870|348213|349416|349417|358586|358587|358588|358589|358590|358591|358592|358593|358594|358595|358596|358597|358598|358599|358600|358601|358602|358603|361321|376167|376170|377186|377192|377194|377198|377199|377203|379279|410475|422235|422236|422238|424376|425226|468492|468496|468497|468501|469399|469400|469402|469404|469812|487990|488039|488041|506733|507122|507495|507502|507508|507511|513374|514843|532707|532710|532724|532747|532756|533135|533136|548698|548702|548703|548704|548705|548707|548708|548709|548711|548714|548718|548719|548720|548722|548723|548724|548726|548727|548729|548734|548735|548738|549070|549080|549084|549089|549092|549097|549099|549101|549103|549111|549112|549115|549116|549331|549332|549333|549334|549335|549336|549337|549338|549339|549340|549341|549342|570509|570510|572230|572922|572925|574878|613624|613625|613626|613627|613628|622854|622855|623164|623165|647708|647709|647710|647711|647712|647713|647714|647715|647716|647717|647718|653601|679214|694331|694332|694333|695810|704759|716183|727910|727911|741588|741590|741591|756720|756721|756722|772419|772420|772421|772423|772425|776553|786064|786066|788198|788257|789104|791896|791897|801737|847307|847308|847309|847310|847311|847312|847313|847314|847315|847316|847317|847318|847319|847320|847321|852308|879986|879987|879988|879989|879990|879991|879992|879993|879994|879995|879996|879997|879999|880702|919822|928855|928856|928857|928858|928859|928860|940471|950677|950678|950679|950680|950681|950682|958541|958542|958543|958544|960283|965657|972327|972328|972329|972330|972331|972332|972333|972334|979971|980387", + "text": "Glutaric aciduria, type 1" + }, + { + "baseId": "17129|17130|17131|17132|54005|54006|54007|54008|54009|54010|54011|54012|54013|54014|54015|174084|174085|174088|174089|227308|229594|302579|302580|302584|302586|302600|302608|302610|302614|302616|302617|305960|305962|305963|305966|305967|305968|305981|305986|305987|305989|305990|305993|310680|310682|310683|310689|310690|310692|310709|310710|310715|310961|310962|310963|310964|310976|496491|513971|897923|897924|897925|897926|897927|897928|897929|897930|897931|897932|897933|897934|897935|897936|900350", + "text": "Deafness, autosomal dominant 5" + }, + { + "baseId": "17133|17134|17135|17136|17137|17138|17139|17140|17141|34071|34072|34073|34074|34075|34076|34077|34078|34079|34080|34081|34082|135325|142281|142282|142283|142284|142286|142288|200186|200187|200188|200189|200190|200192|200200|200201|200202|200203|200205|200208|200209|200210|200212|200213|200214|200215|200216|314816|314820|314823|314825|314837|321550|321553|321559|321562|321571|321572|321574|321575|327657|327660|327664|327666|327670|327673|327674|327681|328744|328747|328749|328750|328760|328762|328766|328772|328773|328774|371632|372332|372333|372336|372540|372550|372554|372558|374215|415297|429287|442480|480411|503405|503725|503936|503951|526728|546167|546176|546179|546184|546186|546479|546480|546484|546601|546603|546606|546609|546613|546830|546832|546834|549979|566110|570902|578493|609806|620835|622406|640366|640367|640368|640369|640370|640371|640372|665984|713095|724659|724660|724661|724662|730794|738202|738203|738204|738205|738206|738207|738208|738209|738210|738211|744554|752867|752868|752869|752870|752871|752872|752873|752874|752875|760033|760036|768652|768655|768656|768657|768658|768660|768661|768663|768664|768665|768667|768668|768669|768670|768671|775867|778163|784115|784119|784121|784123|784126|784128|784130|787699|787710|791158|868355|868356|868357|868358|868359|868360|868361|868362|868363|868364|868365|868366|868367|868368|868369|868370|868371|868372|868373|868374|868375|868376|868377|868675|868676|868677|868678|868679|868680|868681|868682|919384|919385|926359|935713|935714|940231|941010|956609|956610|956611|956612|956613|964847|970228", + "text": "Pyruvate carboxylase deficiency" + }, + { + "baseId": "17142|17143|578443|963441|963442|963443", + "text": "Trichothiodystrophy 3, photosensitive" + }, + { + "baseId": "17144", + "text": "Dopamine receptor d2, reduced brain density of" + }, + { + "baseId": "17144|24577", + "text": "ethanol response - Toxicity/ADR" + }, + { + "baseId": "17144|227797|227815", + "text": "clozapine response - Toxicity/ADR" + }, + { + "baseId": "17144", + "text": "bupropion response - Efficacy" + }, + { + "baseId": "17144|227797|227815", + "text": "olanzapine response - Toxicity/ADR" + }, + { + "baseId": "17144|227765|227796|227814|227815", + "text": "antipsychotics response - Toxicity/ADR" + }, + { + "baseId": "17144|227797|227815", + "text": "risperidone response - Toxicity/ADR" + }, + { + "baseId": "17145|17146|17147|241241|241242|241243|241244|241245|241246|398456|398477|398486|398492|398526|398527|398844|398845|398847|398971|418971|425952|434766|461636|461640|461642|461644|461770|461858|462193|462195|462199|462433|462433|462434|462437|526688|526693|526931|527254|527261|527262|565058|565069|565077|566356|566362|567681|567683|571282|571283|588709|611408|611409|640644|640645|640646|640647|640648|652650|684289|684293|684294|684296|684297|684298|684299|684302|684303|684304|687902|695551|702149|724906|738461|784277|784278|784280|789405|820446|822057|839337|839338|839339|839340|839341|839342|839343|839344|852657|926471|926472|935925|935926|935927|947792|947793|956752|956753|961617", + "text": "Transposition of the great arteries, dextro-looped 1" + }, + { + "baseId": "17148|17149|140788|140789|140790|140792|140793|140794|205266|211483|211485|312369|325111|361584|372166|425901|429171|512847|525969|525972|538418|620385|752424|752425|820427|837945|837946|837947|919318|947300|947301", + "text": "Pyruvate dehydrogenase E2 deficiency" + }, + { + "baseId": "17150|17151|17152|17153|17154|17155|17156|17157|17158|39709|142357|142359|142360|142361|142362|142363|142365|142366|142367|142368|142369|171910|211519|211521|211522|211524|211526|211527|211531|211534|266574|270374|270583|270584|270585|313943|313944|313946|313947|313949|313950|313960|313965|313967|313974|313975|313976|313980|320291|320293|320297|320299|320311|320313|320315|320324|320325|320330|320335|320345|326299|326304|326309|326313|326314|326326|326327|326333|326334|326344|326346|327358|327359|327369|327373|327376|327377|408337|482271|620399|759998|867870|867871|867872|867873|867874|867875|867876|867877|867878|867879|867880|867881|867882|867883|867884|867885|919356|919357", + "text": "Pyruvate dehydrogenase E3-binding protein deficiency" + }, + { + "baseId": "17159|17159|195798|208414|208416|208419|208420|486768|552207|625982", + "text": "Pontocerebellar hypoplasia type 2A" + }, + { + "baseId": "17159|169400|169404|169408|169410|169411|169412|169415|169417", + "text": "Olivopontocerebellar hypoplasia" + }, + { + "baseId": "17159|17159|17161|17162|38422|39708|102564|102567|169409|195798|208414|486768|552207", + "text": "Pontocerebellar hypoplasia type 4" + }, + { + "baseId": "17159|17161|178840|195798|208414|919770", + "text": "Pontocerebellar hypoplasia type 5" + }, + { + "baseId": "17159|18235|21235|21826|21979|22501|23434|25099|26019|26767|39058|48983|65676|77012|79451|99015|99447|132972|133661|137296|137449|137941|151908|166525|170145|171866|171866|171867|171874|177103|178415|181164|181417|181418|181423|181431|181440|181447|181456|201030|201142|201184|210519|214881|214882|226497|243988|243988|247055|263250|263257|263279|263302|268582|268631|279874|280440|280550|288723|294012|315393|319879|326608|326850|328175|329767|334331|334553|340102|342025|342289|346923|351979|354286|354287|354288|359349|360812|360923|360957|361137|361150|363728|369878|389111|389112|389113|389158|389163|389193|389194|398391|400086|400370|401909|422187|426097|444151|454760|467355|478363|513945|513949|513958|513961|513984|514013|514032|514109|514137|514213|514282|540880|548618|556790|571602|590046|590093|610521|613534|613536|613536|613537|613537|623671|623782|623783|625828|625988|626420|627663|648728|656512|672009|676961|676968|677265|679688|684936|686553|704290|709709|712134|722118|724494|739622|746128|748554|768844|784007|784152|792733|799162|801082|801084|801105|801167|801257|801768|801769|801770|801771|801772|801773|801774|801775|801776|801777|801778|801779|801780|801781|801782|801783|801784|801785|801786|801787|801788|801789|801790|801791|801792|801793|801794|801795|801796|801797|801798|801799|801800|801801|801802|801803|801804|801805|801806|801807|801808|801809|801810|801811|801812|801813|801814|801815|801816|801817|801818|801819|801820|801821|801822|801823|801824|801825|801826|801827|801828|801829|801830|801831|801832|801833|801834|801835|801836|801837|801838|801839|801840|801841|801842|801843|801844|801845|801846|801847|801848|801849|801850|801851|801852|801853|801854|801855|801856|801857|801858|801859|801860|801861|801862|801863|801864|801865|801866|801867|801868|801869|801870|801871|801872|801873|801874|801875|801876|801877|801878|801879|801880|801881|801882|801883|801884|801885|801886|801887|801888|801889|801890|801891|801892|801893|801894|801895|801896|801897|801898|801899|801900|801901|801902|801903|801904|801905|801906|801907|801908|801909|801910|801911|801912|801913|801914|801915|801916|801917|801918|801919|801920|801921|801922|801923|801924|801925|801926|801927|801928|801929|801930|801931|801932|801933|801934|801935|801936|801937|801938|801939|801940|801941|801942|801943|801944|801945|801946|801947|801948|801949|801950|801951|801952|801953|801954|801955|801956|801957|801958|801959|801960|801961|801962|801963|801964|801965|801966|801967|858271|858513|861144|921245|961911|963085|963086|963087|965446|965462|965560|970283|980554|980659|980683|980731|983725|983747|983851", + "text": "Microcephaly" + }, + { + "baseId": "17159|21235|22745|22745|25040|33995|100016|132609|136147|136149|136150|136151|136152|136153|136155|136156|136158|136159|136161|181399|191375|192361|196242|200983|200986|204050|207089|207711|207713|207717|207719|263284|272060|274730|307964|307965|307970|307972|307974|307975|307981|307986|307987|307989|307990|307992|307993|307997|312309|312311|312323|312326|312327|312337|312339|312341|312342|317994|318001|318004|318005|318006|318007|318020|318033|318035|318047|318559|318563|318566|318569|318574|318586|318591|318598|367600|379257|421712|434634|490210|514137|514138|514213|621017|621018|621020|621021|621024|621025|621026|621027|621031|621033|621035|621036|621037|621038|621039|621040|621041|624841|682313|682315|801165|801225|967144", + "text": "Congenital cerebellar hypoplasia" + }, + { + "baseId": "17159|361099", + "text": "Amblyopia" + }, + { + "baseId": "17159|426751|514138", + "text": "Hypertonia" + }, + { + "baseId": "17159|101293|102069|102562|102563|102564|102565|102566|102567|134470|135541|141452|141453|141454|141455|141456|141457|141458|141459|141461|141462|141463|168082|168086|168087|168088|168089|168093|168095|168096|168097|169402|169406|169409|169410|169413|169414|169415|169416|169604|169605|169607|178107|190930|194562|195429|196096|196098|207036|208414|208418|208624|211268|211274|257208|271314|288534|288539|288541|288543|288544|288548|288549|289283|289300|289302|289306|289307|289308|289309|292259|292260|292265|292271|292275|292276|292280|292282|292283|292284|292295|292313|292407|292408|292410|292415|292416|292428|292432|292437|292438|292439|292441|292454|292457|293243|293268|294605|294606|298111|298127|298225|298237|298240|301220|304351|304355|304359|308980|312824|329821|329822|329823|329827|329829|329832|331247|331250|334276|334279|334281|334283|334296|334297|334309|340123|340125|340134|340135|340148|340152|340154|344219|344221|344223|344227|344228|344231|344233|344234|344236|344239|345840|345843|345844|345845|345846|345849|347220|349358|349361|349362|349365|349366|349369|349370|349373|350378|350379|350382|350383|350386|350387|350390|350391|353314|353454|353521|353522|353613|353798|379665|384448|384449|384450|422199|500014|507174|620101|620647|747946|793702|798920|861668|878419|878420|878421|878422|878423|878424|878425|878426|878427|878428|878429|878430|878431|878432|878433|880577|880578|882476|882477|882478|882479|882480|882481|882482|882483|882484|882485|882486|882487|882488|882489|882490|882491|882492|882493|887820|887821|887822|887823|887824|887825|887826|887827|887828|887829|887830|887831|887832|887833|887834|887835|891558", + "text": "Pontoneocerebellar hypoplasia" + }, + { + "baseId": "17163|169606|208624|791960", + "text": "Pontocerebellar hypoplasia type 2C" + }, + { + "baseId": "17164|168087|168090|168091|168093|168094|168097|178837|178838|178839|207034|207038|486741|486742", + "text": "Pontocerebellar hypoplasia type 2B" + }, + { + "baseId": "17165|177836|191707|193723|194518|195432|272280|312750|312754|312755|312766|312767|312770|312772|312776|312778|312779|312783|312784|312789|312795|312796|312801|312802|318744|318745|318758|318788|318789|318798|318815|318817|318818|318820|318822|318823|318827|324842|324846|324848|324853|324854|324870|324871|324872|324877|324884|324894|324897|325705|325708|325714|325719|325720|325734|325737|325745|325753|325754|325762|325763|325769|325770|325774|325782|488632|620829|701610|800426|802174|802175|838078|867200|867201|867202|867203|867204|867205|867206|867207|867208|867209|867210|867211|867212|867213|867214|867215|867216|867217|867218|868610|868611", + "text": "Late-onset retinal degeneration" + }, + { + "baseId": "17166|17167|17168|17169|17170|177351|251047|289665|289669|289670|290393|290400|290411|290412|290413|293498|293500|293503|293505|293509|293510|293514|294058|294059|294061|294062|294063|367019|452002|500678|538974|608838|608876|608877|608880|609076|609077|622832|631110|720322|730200|748137|827771|888474|888475|888476|888477|888478|888479|888480|888481|888482|888483|888484|888485|891628|920190|943436", + "text": "ALG3-CDG" + }, + { + "baseId": "17171|17172|193740|195035|195440|268322|271392|273967|372461|390052|444827|444828|444830|461367|461371|461375|461698|462023|503666|503840|503846|526283|526285|526288|565862|567322|640130|640131|640132|640133|640134|652329|693054|701785|701786|738010|738011|752697|838542|838543|838544|838545|838546|852355|926263|926264|926265|935591", + "text": "Spondylocheirodysplasia, Ehlers-Danlos syndrome-like" + }, + { + "baseId": "17173|919342|965315|965316|965317", + "text": "Vitamin d hydroxylation-deficient rickets, type 1b" + }, + { + "baseId": "17174|17175|792797", + "text": "Dyslexia 1" + }, + { + "baseId": "17176|17177|194859|194860|287099|287105|287106|287844|290293|290301|290305|290660|290665|290704|622966|885388|885389|885390|885391|885392|885393|885394|885395|887387", + "text": "Premature ovarian failure 6" + }, + { + "baseId": "17178|17179|17180|17181|17182|17183|17185|17186|17187|17188|17189|17190|102224|102225|102226|102227|102228|102229|102230|102231|102233|102235|102236|102237|102238|102242|102243|102246|102249|105808|105809|105810|105812|105813|105814|105815|105816|105817|105818|105819|105820|105821|105822|105823|105824|105825|105826|105827|105828|105829|105831|105832|137044|168298|168299|168300|168301|168302|168303|168305|168306|168307|168308|168309|168310|168311|168312|168313|168314|168315|168316|168317|168318|168319|168320|168321|168322|168323|168324|168325|168326|168327|168328|168329|168330|168331|168332|168333|168334|168336|168337|168338|168339|168340|168341|168342|168343|168344|168345|168346|168347|168348|168349|168350|168351|168352|168353|168354|168356|168357|168359|168360|168361|168362|168363|168364|168365|168367|168368|168369|168370|168371|168372|168373|168374|168375|168376|168377|168378|168379|168380|168381|168382|168383|168384|168385|168386|168387|168389|168390|168391|168392|168393|168394|168395|168396|168397|168398|168399|168400|168401|168402|168403|168404|168405|168406|168407|168408|168409|168410|168411|168412|168414|168416|168417|168418|168419|168421|168422|168423|168426|168427|168429|168430|168435|168436|168437|168438|168439|168440|168441|168442|168443|168444|168445|168446|168447|168448|168450|168451|168453|168454|168455|168456|168457|168458|168459|168460|168461|168462|168463|168464|168465|168466|168468|168469|168470|168471|168473|168474|168475|168476|168478|168479|168480|168482|168483|168484|168485|168486|168487|168488|168490|168491|168492|168493|168494|168495|168496|168497|168498|168499|168500|168501|168502|168503|168504|168505|168506|168507|168508|168509|168510|168511|168512|168513|168514|168515|168516|168517|168518|168519|168520|168522|168523|168525|168526|168527|168528|177608|178372|178373|178374|178375|178376|178377|178378|178379|178381|178383|190922|196341|207214|207215|207216|207217|207218|207220|207221|207222|207223|207224|207225|207226|207227|207228|207229|207231|207232|207233|207234|207236|207237|207238|207239|207240|207241|207242|207243|207247|207248|207250|207251|207252|207254|207255|207256|207257|207258|207259|207260|207261|264212|265061|265985|297425|297426|297434|297447|299486|299488|299494|299501|299520|299524|299526|299528|299530|299534|299535|303645|303649|303650|303653|303654|303657|303674|303710|303711|303949|303958|303963|303964|303975|303986|303995|304003|353895|360869|368481|369876|428418|428419|428420|428421|428423|428426|428428|428429|428430|439808|439877|443787|453890|454421|454996|454998|455005|455007|455168|455170|455178|455179|455181|455189|455620|455625|455629|455875|455877|491797|511597|513817|513818|513819|520593|521185|521187|521193|521201|521451|521794|521795|536158|536692|549466|550599|560321|560323|560325|560327|560454|560456|562298|576816|579073|579157|610517|622351|624150|625869|633947|633948|633949|633950|633951|633952|633953|633954|651347|651349|654126|679747|682844|691855|691857|695292|699078|709903|765112|782285|790554|790555|790556|790557|805440|819589|830848|830849|830850|830851|830852|830853|830854|830855|830856|830857|830858|852213|857672|894201|894202|894203|894204|894205|894206|894207|894208|894209|894210|894211|894212|894213|894214|894215|894216|894217|894218|896097|896098|896099|903536|918955|918957|918958|918959|918960|918961|918962|924070|924071|924072|932910|932911|932912|940816|944622|944623|944624|944625|944626|944627|954173|961276|964255|964256|964257|969776|970805|970806|970807|976650|977214|977242|980920", + "text": "Cornelia de Lange syndrome 1" + }, + { + "baseId": "17191|17191|17193|17193|17195|17196|17197|101774|101776|192498|194477|265813|267825|269777|271334|271603|271603|272010|272698|347065|446353|489599|489816|491813|492858|494182|575212|584856|584967|586318|588541|821398|849023|849024|849025|849026|849027|939187|939188|939189|939190|941272|951322|951323|951324|951325|951326|951327|951328|959016|959017|959018|959019|959020", + "text": "Peroxisome biogenesis disorder 7B" + }, + { + "baseId": "17191|17193|19209|21809|21813|22555|22558|22559|22813|23161|28743|98683|98685|98687|98689|98690|98697|99009|143213|177943|177944|186750|186751|186752|186753|186755|186758|190969|191328|191329|193558|195684|195870|214063|226048|237362|252357|252359|252360|252362|259881|266214|266215|267043|267618|269776|271125|271218|271736|273218|273977|274317|281791|300203|307373|307376|307381|307590|307592|307593|320695|320708|357074|357606|357620|357627|358425|358427|439298|442785|485898|487075|487137|487200|487227|488062|489029|489213|489234|490120|490260|490272|490638|491019|491046|492179|492365|492366|492367|492387|493070|493770|493841|493948|493986|494209|539070|543634|543636|543958|543959|543960|543962|544083|544091|544108|544643|544760|548344|548348|549610|552151|560857|560860|563613|563615|564500|584468|584911|585437|585627|586251|586617|587376|587440|587441|588204|589223|621279|621562|621749|621781|634931|634932|634933|634934|636452|654449|699596|701770|710522|730769|735667|735669|735670|750073|750074|750076|760021|765685|765687|765693|765694|765696|775094|775096|775193|782539|782542|782543|782544|782548|782549|784006|784007|819690|819691|819692|831971|831972|831973|831974|831975|831976|831977|831978|831979|831980|831981|831982|838449|838450|838451|838452|838453|838454|838455|852277|896310|917016|917017|917314|917461|924360|924361|924362|924363|933340|933341|933342|933343|933344|935551|935552|935553|935554|940039|940844|945038|945039|945040|945041|945042|945043|947462|947463|947464|947465|947466|954462|954463|954464|954465|954466|954467|954468|954469|954470|954471|954472|956501|956502|959807|960585|969159", + "text": "Peroxisome biogenesis disorders, Zellweger syndrome spectrum" + }, + { + "baseId": "17191|17192|17193|17193|17194|17195|17196|17197|17198|101774|101774|101776|101776|177937|192498|192498|194477|194477|265813|265813|267825|269777|269777|271334|271334|271603|271603|272010|272010|272698|272698|337464|337466|337492|337498|337499|337503|337510|337513|337515|337520|337522|337523|337530|337538|347062|347064|347065|347065|347066|347070|347071|347074|347075|347076|347077|347080|347081|347082|347085|347091|347095|347096|347108|347114|351111|351112|351115|351118|351122|351123|351126|351127|351130|351131|351133|351134|351137|351138|351140|351142|351144|351147|352135|352136|352137|352138|352139|352140|352141|352142|352143|352144|352145|352148|352149|352150|352151|352152|352153|352154|362314|446353|489599|489599|489816|491813|492858|494182|575212|584856|584856|584967|586318|588065|588276|588541|588541|821398|849023|849024|849025|849026|849027|887213|887214|887215|887216|890849|890850|890851|890852|890853|890854|890855|890856|890857|890858|890859|890860|890861|890862|890863|890864|890865|890866|890867|890868|890869|890870|890871|890872|890873|890874|890875|890876|890877|890878|890879|890880|891805|939187|939188|939189|939190|941272|951322|951323|951324|951325|951326|951327|951328|959016|959017|959018|959019|959020", + "text": "Peroxisome biogenesis disorder 7A" + }, + { + "baseId": "17200|17201|17202|17203|17203|17204|17204|17204|17205|75263|102570|102578|102581|102581|133838|133839|133839|133840|133840|150228|150231|150233|191740|191968|191968|192166|192166|192704|192704|192795|192866|192867|194563|194564|194564|195068|213817|230189|254117|254125|254126|264605|264605|265545|265695|266391|266402|266417|266437|266552|266631|266634|266733|266733|266734|266734|267080|267436|267746|267983|268176|268204|269056|269308|269436|269458|269559|269575|269711|269789|269865|269906|269924|269979|270179|270428|270687|270687|270704|270711|272667|272754|273090|273182|273400|273464|273889|274566|274780|313663|319863|319881|327003|327012|360929|371340|372129|408319|408321|408322|425917|425919|429236|430997|444776|444777|444778|460424|460961|461065|461071|461074|461086|461091|461095|461379|461383|461385|461388|461388|461392|461394|461403|461406|461413|461417|461771|461774|461775|488826|489642|490435|492080|492529|493161|493392|493833|495273|526031|526102|526183|526193|526195|526537|526538|539033|564541|564542|564546|565007|565018|565605|565609|565610|565617|565621|567135|567145|569945|570455|570456|570463|585089|585974|588717|589608|608959|622896|639877|639878|639879|639880|639881|639882|639883|639884|639885|639886|639887|639888|639889|639890|639891|677236|692982|695504|752620|752622|768394|768395|791125|791126|792781|820348|820349|820350|820351|820352|838201|838202|838203|838204|838205|838206|838207|838208|838209|838210|838211|838212|838213|838214|838215|838216|838217|838218|838219|838220|838221|838222|851837|852340|919351|919352|920298|926174|926175|926176|926177|935458|935459|935460|935461|935462|935463|935464|940993|947386|947387|956447|956448", + "text": "Gnathodiaphyseal dysplasia" + }, + { + "baseId": "17202|17202|17203|17203|17204|17204|17204|17205|17205|47882|47883|48349|102570|102578|102578|102581|102581|102581|133838|133839|133840|150228|150231|150233|191740|191740|191968|191968|191968|192166|192704|192795|192866|192867|194563|194563|194564|195068|213817|213817|213818|226474|230189|254117|254125|254126|264605|264605|265545|265695|266391|266402|266417|266437|266552|266631|266631|266634|266733|266734|267080|267436|267746|267983|268176|268204|269056|269308|269436|269458|269559|269575|269711|269789|269865|269906|269924|269979|270179|270179|270428|270428|270687|270704|270711|272667|272754|273069|273090|273182|273400|273464|273889|274566|274780|313663|319881|327003|327012|371340|372129|408319|408321|408322|425917|425919|429236|440222|444776|444777|444778|460424|460961|461062|461065|461071|461074|461086|461091|461095|461379|461383|461385|461388|461388|461392|461394|461403|461406|461413|461417|461771|461774|461775|488826|489642|490435|492080|492529|493161|493392|493833|494011|495273|526031|526102|526183|526193|526195|526537|526538|539033|539472|539975|564541|564542|564546|565007|565018|565605|565609|565610|565617|565621|567135|567145|569945|570455|570456|570463|585089|585974|588717|589608|608959|610424|622896|622896|639877|639878|639879|639880|639881|639882|639883|639884|639885|639886|639887|639888|639889|639890|639891|677236|681855|681859|692982|695504|752620|752622|768394|768395|802176|802177|820348|820349|820350|820351|820352|838201|838202|838203|838204|838205|838206|838207|838208|838209|838210|838211|838212|838213|838214|838215|838216|838217|838218|838219|838220|838221|838222|851837|852340|926174|926175|926176|926177|935458|935459|935460|935461|935462|935463|935464|940993|947386|947387|956447|956448", + "text": "Limb-girdle muscular dystrophy, type 2L" + }, + { + "baseId": "17202|17203|17204|17205|48349|102581|191968|194563|264605|266631|425917|444778|461388|539033|610424|964846", + "text": "Miyoshi muscular dystrophy 3" + }, + { + "baseId": "17203|19066|20958|22321|22389|23085|23093|24609|24653|32584|32660|38596|56569|172652|172813|175617|189619|198685|199454|200340|206724|206924|206928|206954|208086|208584|208585|208586|208588|208589|208592|208723|208725|208726|270687|354302|360803|360829|360855|360929|360953|360956|361026|361045|361046|361052|361093|446892|513912|514049|514128|514175|623605|623606|625198|676966|677218|677235|677236|677240|677266|677273|788956|792691|801221|822323|857409|857415|969267|969268|972892|980758", + "text": "Myopathy" + }, + { + "baseId": "17203|513970|514056", + "text": "Achilles tendon contracture" + }, + { + "baseId": "17203|19239|23318|23320|23322|23325|23326|98887|226138|270687|272349|275546|275548|275551|353883|360414|417651|417654|439919|439925|439928|501808|514010|514056|514095|514132|514135|514181|551401|551432|682500|961601|969272|980755|980756", + "text": "Elevated serum creatine phosphokinase" + }, + { + "baseId": "17203|198685|198685|360933|360934|361020|514056|514181|682738|801539", + "text": "Lower limb muscle weakness" + }, + { + "baseId": "17203|28028|39430|514056", + "text": "Lower limb amyotrophy" + }, + { + "baseId": "17203|17204|192165|192866|266631|269575|620832", + "text": "ANO5-Related Disorders" + }, + { + "baseId": "17206|17207|17208|101373|252048|298566|298570|298576|298578|298582|298583|298584|298588|298598|298601|298608|298609|298624|298627|300890|300893|300895|300900|300932|300935|300936|300944|300954|300972|300981|300986|300987|300993|300995|300996|301023|301024|305277|305284|305286|305297|305298|305316|305329|305346|305347|305370|305372|305373|305408|305410|305412|305413|305414|305415|305419|305433|305483|305485|305486|305487|305492|305493|305494|305496|305499|305512|305514|305515|305516|305523|305530|305537|305541|305542|305547|305550|305561|305564|305577|305578|305585|305589|305591|513061|895102|895103|895104|895105|895106|895107|895108|895109|895110|895111|895112|895113|895114|895115|895116|895117|895118|895119|895120|895121|895122|895123|895124|895125|895126|895127|895128|895129|895130|895131|895132|895133|895134|895135|895136|895137|895138|895139|895140|895141|895142|895143|895144|895145|895146|895147|895148|895149|895150|896172|896173|896174|918989|980326", + "text": "Polycystic liver disease 2" + }, + { + "baseId": "17211|17212|17213|17214|17215|17216|17217|17218|17219|17220|17221|17222|17223|17224|89137|226925|313015|313016|313020|313023|313024|313025|313031|313034|313039|313050|313051|313058|313060|313067|313068|313069|313071|313072|313074|319013|319017|319021|319024|319034|319036|319039|319045|319049|319053|319054|319077|319079|319089|319090|319098|319111|319112|319115|319118|319123|319126|319128|319131|325198|325200|325202|325203|325204|325205|325220|325224|325239|325243|325246|325248|325249|326046|326055|326057|326058|326061|326068|326074|326075|326079|326080|326083|326084|326085|326087|326090|326091|552150|583110|620388|620389|620390|620391|724280|737835|752511|858563|867428|867429|867430|867431|867432|867433|867434|867435|867436|867437|867438|867439|867440|867441|867442|867443|867444|867445|867446|867447|867448|867449|867450|867451|867452|867453|867454|867455|867456|867457|868613|868614|963157|963158|983808|983809|983811|983812|983813|983814|983815|983818|983825|983826", + "text": "Gaze palsy, familial horizontal, with progressive scoliosis 1" + }, + { + "baseId": "17225|208410|248751|429999|445851|467193|468141|468148|468532|468742|468745|468749|468755|508888|530535|531443|531559|531561|531673|531675|531682|531683|531694|531893|531895|531896|531900|531901|569466|569467|569468|569474|569475|571429|571433|571434|571972|571979|571981|571994|571996|574562|574563|574564|574565|646378|646379|646380|646381|646382|646383|652831|694140|695763|704281|715618|715619|727340|756019|756021|771714|771716|789385|845836|845837|845838|845839|845840|845841|845842|845843|845844|845845|845846|928431|928432|928433|928434|928435|928436|928437|938109|938110|938111|938112|938113|938114|938115|938116|941192|950129|950130|950131|950132|950133|958232|958233|958234|958235|958236|960231", + "text": "Polyhydramnios, megalencephaly, and symptomatic epilepsy" + }, + { + "baseId": "17226|17227|17228|17229|17230|47854|47855|47856|47857|47858|47859|47860|47861|47862|47863|47864|47865|47866|47867|47868|47869|47870|47871|47872|47873|47874|47875|47876|47877|47878|47879|47880|47881|177662|177663|177664|177666|191114|206572|251427|251428|292967|292968|292978|292980|292981|292982|292993|292995|292996|293003|293008|293009|293012|293015|293018|293022|293032|293034|293040|294375|294393|294398|294407|294411|294415|294416|294417|294418|294421|294424|294425|294426|294429|294432|294433|294435|294439|294445|294448|297815|297824|297840|297842|297854|297855|297856|297857|297866|297867|297868|297869|297870|297871|297882|297883|297885|297889|297890|297891|297892|297894|297898|297899|297903|297908|297909|297913|297916|297920|297929|297941|297942|297955|297956|297961|297962|297969|297970|297973|297990|359278|486367|488711|624031|709273|790462|800495|800496|890529|890530|890531|890532|890533|890534|890535|890536|890537|890538|890539|890540|890541|890542|890543|890544|890545|890546|890547|890548|890549|890550|890551|890552|890553|890554|890555|890556|890557|890558|890559|890560|890561|890562|890563|890564|890565|890566|890567|890568|890569|890570|890571|890572|890573|890574|890575|890576|891778|891779|891780|918246", + "text": "Bietti crystalline corneoretinal dystrophy" + }, + { + "baseId": "17231", + "text": "Asthma-related traits, susceptibility to, 2" + }, + { + "baseId": "17232|17233|87970|102447|102448|152884|227315|227316|227317|260789|267740|303772|303780|303781|303787|303788|303794|303795|303797|303798|303800|303804|303812|303814|303817|303818|303820|303821|303822|303826|303827|303829|303830|303835|303836|303837|303841|303844|303845|303854|303855|303863|303865|303866|303868|303870|303879|303884|303886|303890|303895|303896|303903|303904|303907|303908|303911|303912|303914|303918|303920|303921|303923|303927|303934|303943|303944|303945|303947|307271|307273|307277|307278|307279|307291|307295|307296|307297|307316|307317|307318|307331|307332|307336|307340|307345|307346|307347|307350|307351|307352|307358|307359|307360|307362|307365|307371|307372|307378|307382|307384|307385|307387|307388|307389|307390|307391|307393|307394|307396|307398|307399|307400|307405|307408|307415|307427|307429|307430|307431|307433|307434|307442|307446|307447|307448|307458|307464|307479|307481|307482|307483|307484|312129|312130|312133|312135|312139|312140|312143|312150|312151|312156|312161|312166|312170|312177|312179|312180|312181|312196|312200|312214|312221|312222|312233|312235|312239|312241|312243|312245|312247|312251|312254|312260|312261|312266|312269|312270|312271|312273|312274|312283|312285|312287|312288|312289|312291|312296|312298|312301|312302|312304|312312|312313|312315|312316|312317|312319|312320|312321|312322|312328|312331|312335|312336|312349|312351|312354|312356|312357|312360|312363|312366|312367|312368|312371|312379|312381|312383|312385|312386|312390|312393|312399|312406|312408|312410|312413|312414|312415|312416|312418|312423|312427|312433|312435|312440|312441|312442|312444|312445|312446|312447|312448|312450|312451|312452|312456|312457|312458|312462|312463|312467|312469|312474|312478|312479|312482|312484|312488|312490|312491|312492|312494|312497|312501|312504|312513|312514|312518|312520|312523|312535|312538|312542|361319|361489|413764|413765|413767|413769|438379|486430|486431|486434|486435|490785|513293|612800|612804|619921|620283|620284|620285|620286|711228|736394|790770|790771|790772|859642|898609|898610|898611|898612|898613|898614|898615|898616|898617|898618|898619|898620|898621|898622|898623|898624|898625|898626|898627|898628|898629|898630|898631|898632|898633|898634|898635|898636|898637|898638|898639|898640|898641|898642|898643|898644|898645|898646|898647|898648|898649|898650|898651|898652|898653|898654|898655|898656|898657|898658|898659|898660|898661|898662|898663|898664|898665|898666|898667|898668|898669|898670|898671|898672|898673|898674|898675|898676|898677|898678|898679|898680|898681|898682|898683|898684|898685|898686|898687|898688|898689|898690|898691|898692|898693|898694|898695|898696|898697|898698|898699|898700|898701|898702|898703|898704|898705|898706|898707|898708|898709|898710|898711|898712|898713|898714|898715|898716|898717|898718|898719|898720|898721|898722|898723|898724|898725|898726|898727|898728|898729|898730|898731|898732|898733|898734|898735|898736|898737|898738|898739|898740|898741|898742|898743|898744|898745|898746|898747|898748|953335|980929", + "text": "Occult macular dystrophy" + }, + { + "baseId": "17232|59496|513293|612797|816398|816399|816400|919131|919132|919133|919134", + "text": "Retinitis pigmentosa 88" + }, + { + "baseId": "17234|97553", + "text": "Deafness, autosomal dominant 28" + }, + { + "baseId": "17235|17236|17237|17238|17239|53211|53212|53213|53214|53217|53218|53219|53220|53223|53224|53225|53226|53227|53228|53229|53230|53231|53233|53234|53235|53236|53237|53238|53239|53240|53241|53243|53244|53246|53247|53249|176036|176037|176039|176043|176046|176049|176052|176053|176058|176062|176182|176183|176190|176191|176193|176198|176199|176203|176204|176205|199809|231050|231053|231055|231062|231067|231068|231071|231073|231075|270993|271198|271836|334107|334109|334112|334115|334116|334118|334130|334134|334140|334142|334145|334157|334159|334161|334166|334168|334172|344014|344015|344017|344020|344022|344024|344026|344028|344030|344030|344032|344033|344036|344039|344047|344050|349269|349270|349271|349272|349275|349278|349282|349285|349287|349289|349290|349293|349294|349297|350249|350252|350253|350259|350260|350263|350264|350268|350271|350272|350274|350277|350279|350284|350285|350288|350291|350292|350296|497322|497779|536994|578570|614516|620913|622469|624869|625878|742078|745258|786259|793803|800150|861598|882335|882336|882337|882338|882339|882340|882341|882342|882343|882344|882345|882346|882347|882348|882349|882350|882351|882352|882353|882354|882355|882356|882357|882358|882359|882360|882361|882362|882363|882364|882365|882366|882367|882368|882369|882370|882371|882372|882373|882374|882375|882376|882377|882378|882379|882380|882381|882382|882383|882384|882385|882386|882387|882388|882389|882390|882391|882392|882393|882394|882395|882396|882397|882398|882399|882400|882401|882919|882920|882921|882922|961349", + "text": "Deafness, autosomal dominant 4" + }, + { + "baseId": "17240|17241|17242|17243|94426|94427|94428|190560|192502|192503|192855|194998|221061|255429|255431|255432|255435|255437|255438|255440|273438|323584|323587|323591|323594|323596|323600|333314|333316|333322|333327|340094|340095|340098|340102|340109|340110|340114|341541|341543|341550|341552|341554|429751|491044|491452|492181|493464|493758|513106|514682|578522|582601|615892|623160|623179|682127|703427|776113|874324|874325|874326|874327|874328|874329|874330|874331|874332|874333|874334|874335|876593|876594|876595|876596", + "text": "Arthrogryposis, renal dysfunction, and cholestasis 1" + }, + { + "baseId": "17244", + "text": "MACULAR DEGENERATION, AGE-RELATED, 1, SUSCEPTIBILITY TO" + }, + { + "baseId": "17244|102101|102102|102103|102104|106473|106474|106477|177769|196397|196398|214519|277759|277784|277788|277789|277791|277820|277821|277822|277845|277846|277847|277849|277851|277856|277858|277878|277879|277880|277881|277882|277883|277884|277885|277887|277888|277889|277901|277902|277904|277909|277911|277918|277919|277921|277922|277923|277924|277925|277926|277928|277932|277933|277934|277935|277936|277937|277941|277943|277944|277950|277951|277954|277955|277956|277957|277958|277959|277961|277962|277963|277964|277965|277967|277968|277969|277970|277971|277972|277974|277976|277977|277978|277979|277980|277981|277982|277983|277985|277988|277990|277991|277992|277993|277996|277999|278000|278006|278007|278017|278018|278020|278021|278022|278023|278024|278025|278026|278028|278029|278030|278034|278036|278039|278040|278041|278042|278043|278044|278045|278046|278047|278048|278050|278051|278053|278054|278057|278058|278060|278062|278063|278064|278070|278072|278073|278818|278825|278826|278835|278837|278842|278850|278851|278853|278854|278856|278859|278860|278861|278864|278866|278868|278869|278883|278898|278899|278900|278901|278902|278905|278906|278907|278921|278924|278925|278926|278927|278934|278935|278938|278941|278942|278946|278952|278955|278956|278957|278963|278968|278973|278974|278975|278976|278978|278981|278982|278983|278984|278985|278986|278992|278993|278996|279000|279001|279002|279003|279006|279007|279008|279009|279010|279019|279027|279028|279043|279046|279047|279056|279059|279062|279069|279081|279082|279083|279089|279096|279097|279105|279118|279119|279121|279122|279133|279134|279136|279140|279141|279157|279158|279162|279163|279167|279214|279215|279216|279230|279238|279239|513499|619974|619975|696314|696315|696316|706929|706931|706932|706935|718435|718436|718440|718441|731914|731918|745903|758844|786984|862953|862954|862955|862956|862957|862958|862959|862960|862961|862962|862963|862964|862965|862966|862967|862968|862969|862970|862971|862972|862973|862974|862975|862976|862977|862978|862979|862980|862981|862982|862983|862984|862985|862986|862987|862988|862989|862990|862991|862992|862993|862994|862995|862996|862997|862998|862999|863000|863001|863002|863003|863004|863005|863006|863007|863008|863009|863010|863011|863012|863013|863014|863015|863016|863017|863018|863019|863020|863021|863022|863023|863024|863025|863026|863027|863028|863029|863030|863031|863032|863033|863034|863035|863036|863037|863038|863039|863040|863041|863042|863043|863044|863045|863046|863047|863048|863049|863050|863051|863052|863053|863054|863055|863056|863057|863058|863059|863060|863061|863062|863063|865047|865048|865049|865050|865051|865052|865053|865054|865055|865056|865057|865058|865059|865060|865061|865062|865063|865064|865065|865066", + "text": "Age-related macular degeneration 1" + }, + { + "baseId": "17245|17251|227783|325116|325118|334771|341254|679794|714884|875107|875108|875109|875110|875111|875112|875113|875114|875115|875116|875117|875118|875119|876653", + "text": "Vitamin K-dependent clotting factors, combined deficiency of, 2" + }, + { + "baseId": "17246|17247|17248|17249|17250|17251|23447|23448|23449|32008|32012|32887|32903|38302|75246|133867|133869|133871|133874|176160|250533|611348|611349|611350|679794", + "text": "Warfarin response" + }, + { + "baseId": "17251|23447|23448|38302|227760|227769|227772|227774|227781|227782|227783|227784|227785|227786|227787|227800|362496|362502|538602", + "text": "warfarin response - Dosage" + }, + { + "baseId": "17252|102117|102118|102119|132658|177417|192550|213192|213193|222488|222489|255741|255742|266590|325333|325334|325335|325338|325342|325346|325354|334963|334969|334972|334973|334978|334981|334984|334990|334992|334995|334996|334999|335020|335021|335027|335030|335031|341455|341456|341459|341462|341465|341466|341472|341474|341475|341477|341478|341480|341482|341484|341486|341487|342953|342954|342955|342958|342959|342962|342965|342971|342972|342974|342978|342980|342981|342983|342985|843872|875259|875260|875261|875262|875263|875264|875265|875266|875267|875268|875269|875270|875271|875272|875273|875274|875275|875276|875277|875278|875279|875280|875281|875282|875283|875284|875285|875286|875287|875288|875289|876668|876669", + "text": "Nephronophthisis 7" + }, + { + "baseId": "17253|17254|17254|17255|17255|17256|17256|17257|17257|17257|17258|17258|17259|17260|17261|17261|17262|17262|17263|17264|17264|17265|17265|17266|17267|17268|17268|17269|17270|17271|17271|17272|17272|17273|17274|17275|17276|17276|17277|17277|45560|45560|45561|45561|45562|45562|45563|45564|45565|45566|45566|45567|45567|45568|50304|52765|52765|52766|52766|52767|52768|52768|52769|52769|52770|52771|52772|52772|52773|52774|99233|99233|99234|99234|99235|99236|99236|99237|99237|133285|133285|133286|133287|133287|136455|136455|139144|139144|139145|139145|139146|139663|139663|139664|139665|139665|139666|139667|139668|139668|141607|141608|141608|150758|150758|171078|171078|171079|171079|171080|171080|171081|171081|173676|173736|173736|173876|178148|180107|180107|180109|180109|180111|180112|180114|180115|180116|180117|180117|180118|180119|180119|180120|180120|180121|180121|180122|180123|180125|180125|182205|182206|182208|182208|186008|186009|190283|192254|192254|193445|212277|212277|212278|212278|212279|212279|212280|212281|212283|212283|212284|212285|212286|212286|217068|217068|221343|221343|221344|221344|221347|221347|221348|221349|221350|221350|221351|221351|221352|221353|221354|221354|221356|221357|221357|224889|224889|224890|224891|224892|224892|224893|224894|224895|224895|224896|224897|224897|224898|224899|224899|224900|224900|224901|224901|224902|224902|224903|224904|224905|224905|224906|224907|224907|224908|224909|224910|224911|224912|224913|224914|224915|224916|224917|224918|224918|224919|224919|224920|224921|224922|224922|224923|224924|224924|224925|224926|224926|224927|224928|224929|224929|224930|224931|224931|224932|224933|224933|224934|224935|224936|224936|224937|224937|224938|224938|224939|224940|224940|224941|224942|224943|224944|224945|224946|224947|224948|224949|224950|224950|224951|224952|224953|224954|224955|224956|224956|224957|224957|224958|224958|224959|224960|224960|224961|224962|224962|224963|224964|224965|224966|232860|232861|232862|232864|239029|239043|239043|239044|239045|239045|239046|239047|239048|239048|239049|239050|239050|239051|239052|239053|239054|239055|239055|239056|244404|244405|244406|244407|250850|264141|272986|287952|287957|287959|287964|287967|287972|287973|287974|287977|287979|287980|287981|287983|287984|287987|287990|287998|288000|288007|288012|288018|288020|288022|288023|288026|288030|288032|288033|288039|288046|288049|288660|288671|288673|288676|288684|288693|288694|288695|288696|288699|288701|288709|288711|288717|288722|288742|288743|288747|288751|288752|288753|288761|288762|288763|288765|288771|288779|291561|291569|291573|291574|291576|291582|291584|291585|291586|291590|291593|291595|291599|291601|291602|291618|291619|291628|291630|291632|291636|291639|291642|291643|291644|291654|291655|291656|291662|291666|291707|291708|291708|291709|291711|291714|291715|291716|291727|291728|291731|291732|291745|291747|291750|291751|291752|291755|291759|291760|291761|291770|291771|291772|291777|291778|291781|291782|291783|291786|291787|358729|358729|358730|358730|358731|358731|358732|358732|358732|358733|358733|358734|361857|361857|363101|366863|366866|367095|367098|367100|367103|367126|367133|368080|368104|368104|368107|368137|393129|393147|393165|393165|393169|393171|393173|393174|393175|393176|393178|393181|393183|393185|393187|393188|393191|393194|393196|393198|393200|393206|393212|393212|393216|393219|393223|393224|393229|393232|393301|393307|393347|393350|393358|393367|393370|393374|393378|393521|393522|393531|393533|393535|393535|393551|393563|393564|393565|393569|393572|406057|406058|406059|406061|406062|406063|406065|406066|406066|406067|406069|406071|406072|406074|406074|406075|406075|420438|420439|420439|420441|420443|420444|420449|420449|420451|420453|420453|420455|420456|427115|434038|451527|451599|451602|451603|451605|451610|451613|451617|451617|451860|451864|451864|451866|451869|451870|451870|451876|451887|451889|451891|451919|451919|451920|451924|451929|451937|451938|452005|452072|452077|452080|452081|452086|452088|452091|452091|452101|452101|452120|452121|452124|472246|473279|473281|473309|473321|473326|473327|473337|473349|473440|473451|473461|473470|486941|486951|486953|486958|486978|486979|486985|486985|486986|487011|487012|487013|487013|487015|487017|487017|487024|487024|487031|487032|500395|500402|500410|500412|518665|518667|518671|518681|518683|518692|518693|518695|518723|518728|518729|518732|518734|518735|518739|518741|518742|518746|518749|518901|518908|518912|518914|518916|518918|518920|518921|518939|518940|518940|518949|518950|518952|518954|518954|518960|536270|536271|537735|537737|539230|539230|539231|539232|551810|551810|551820|558700|558724|558726|558728|558728|558730|558732|558734|558736|559217|559253|559255|559257|559259|559261|559263|559265|559267|559269|561070|561074|561079|561083|561087|561088|561090|562171|562228|562231|562232|562236|562248|575528|575529|575529|613553|613553|613554|613555|613555|613556|613557|613558|613559|613560|613561|613562|613562|613563|613564|613565|613566|613567|613568|613569|613570|613571|613572|613572|613573|613574|613575|613576|613577|613578|613579|613580|613581|613582|613583|613584|613585|613586|613587|613588|613589|613590|613591|613592|613593|613594|613595|613596|613597|613598|613599|613600|613601|613602|613603|613603|621143|621143|621144|621144|630696|630697|630698|630699|630700|630701|630702|630703|630704|630705|630706|630707|630708|630709|630710|630711|630712|630713|630714|630715|630716|630717|630718|630719|630720|630721|630722|630723|630724|630725|630726|630727|630728|630729|630730|630731|650954|650960|650965|651014|651028|651030|651054|651060|651065|651102|651103|651105|651150|682317|686277|686278|686279|691251|697727|697728|697730|733663|744001|747856|747858|747860|763496|763497|763500|763501|763502|763503|777301|781500|790313|804891|804892|804895|807484|807488|807491|816447|819296|819297|819298|819299|819302|819303|819304|819305|819306|819307|819308|819309|819310|822257|822258|827274|827275|827276|827277|827278|827279|827280|827281|827282|827283|827284|827285|827286|827287|827288|827289|827290|827291|827292|827293|827294|827295|827296|827297|827298|827299|850893|850895|850897|850899|850901|850981|850983|850985|850987|850989|850991|850993|850995|851009|851011|851013|851015|851218|851220|851222|851224|851226|851228|851231|851233|851235|851238|851241|851246|851248|851252|851254|851257|851456|851458|851497|851514|851518|851522|851526|887650|887651|887652|887653|887654|887655|887656|887657|887658|887659|887660|887661|887662|887663|887664|887665|887666|887667|887668|887669|887670|887671|887672|887673|887674|887675|887676|887677|887678|887679|887680|887681|887682|887683|887684|887685|887686|887687|887688|887689|887690|887691|887692|887693|887694|887695|887696|887697|887698|887699|887700|887701|916887|922978|922979|922980|922981|922982|922983|922984|931669|931670|931671|931672|931673|931674|931675|931676|931677|931678|931679|931680|939921|939922|939923|939924|939925|940727|940728|940729|940730|940731|940732|940733|943243|943244|943245|943246|943247|943248|943249|953289|953290|953291|953292|953293|953294|959665|959666|959667|959668|959669|959670|959671|959672|959673|960496|960497|960498|960499|960500|960501|960502|960503", + "text": "Von Hippel-Lindau syndrome" + }, + { + "baseId": "17254|17256|17257|18076|22868|27397|27398|27403|27422|28691|28692|28694|28695|28698|28920|28921|28922|28923|28924|28925|28926|28939|45429|48304|50047|50049|50050|50051|50052|50055|50059|50060|50061|50062|50063|50064|50065|50066|50067|50068|50069|83949|95987|99468|99469|99470|99471|99473|99474|99475|99476|99477|99478|99479|99480|99481|99482|99483|133276|136437|136442|136465|136489|136490|136513|136521|138381|138382|138383|138384|138385|138386|138387|138388|138389|138390|138391|138392|138393|138394|139098|139669|139670|139671|139672|139673|139674|139675|139677|139678|139679|139680|139681|139682|139683|139684|139685|139686|139687|139688|139689|139690|139691|150515|150535|150855|151603|151732|151773|151773|151774|152613|166563|176503|176984|177247|180995|182661|182662|182663|182665|182666|182667|182668|182669|182669|182670|182671|182672|182673|182674|182675|182676|182677|182678|185350|185371|185394|186059|186060|186061|186062|186063|186064|186065|186066|186067|186068|186069|186070|186071|187953|191187|195617|212531|212532|212533|212534|212535|212536|212537|212538|212539|212541|212542|212543|212544|212544|212545|212546|212548|212549|212550|212553|212554|212555|212556|212557|212558|212559|212560|212561|212563|212564|213392|213402|213943|221639|221647|221648|221649|221650|221651|221652|221653|221654|221655|221656|221657|221658|221659|221660|221661|221662|221663|221664|221665|236462|236471|236477|236479|242978|245215|245225|245226|245227|245228|245229|245231|245232|245233|245234|245235|245236|245237|245238|245239|245240|245241|245242|245243|245244|245245|245246|245247|245248|245249|245250|245251|245253|245254|245255|245256|247303|247304|263939|301595|301603|301605|301609|301611|301619|301620|301630|301631|301643|301651|301652|301654|301655|301656|301663|301668|304869|304870|304871|304872|304878|304879|304880|304884|304887|304895|304897|304901|304904|309444|309444|309446|309455|309456|309462|309463|309465|309468|309478|309479|309493|309495|309596|309598|309605|309609|309610|309612|309613|309614|309616|309619|309620|309621|359197|361700|362753|362775|362837|362926|362927|363008|363332|363333|363334|363335|363336|363340|363341|363342|363343|363357|363360|363388|363394|363395|363409|363412|363435|363436|363437|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363461|363462|363463|363464|363465|363466|363467|363468|363494|363495|363516|363517|363529|363530|363538|363542|363543|363544|363545|363546|363552|363560|363561|363562|363563|363564|363565|363566|363567|363568|369444|369446|395297|395300|395305|395313|395316|395334|395337|395344|395351|395354|395355|395359|395363|395366|395373|395381|395383|395385|395388|395389|395570|395576|395581|395586|395589|395590|395593|395596|395610|395614|395620|395725|395727|395738|395741|395750|395752|395755|395759|395764|395768|395770|395775|395784|395805|395993|395996|395996|395997|395998|396008|396010|396013|396013|396017|396020|396021|396029|396037|396039|396046|396054|396057|396059|396061|396064|432395|444046|455983|455993|455993|455999|456002|456007|456011|456017|456024|456027|456029|456032|456033|456036|456041|456044|456048|456049|456054|456056|456067|456068|456073|456075|456232|456235|456237|456245|456247|456252|456259|456264|456265|456267|456268|456271|456273|456275|456285|456288|456298|456299|456300|456301|456313|456315|456319|456534|456541|456563|456566|456568|456572|456573|456581|456587|456589|456592|456595|456598|456599|456613|456617|456627|456632|456635|456934|456936|456938|456946|456948|456951|456955|456957|456959|456967|456968|456969|456976|456978|456981|456990|456992|456996|474404|474413|474415|474423|474424|474425|474426|474427|474434|474437|474440|474441|474450|474453|474459|474461|474469|474472|474476|474479|474481|474482|474513|474514|474524|474528|474530|474536|474558|474570|474572|481177|501542|521966|521984|521988|521989|521999|522008|522010|522014|522015|522021|522033|522035|522037|522038|522049|522050|522052|522058|522065|522068|522072|522279|522302|522306|522313|522314|522318|522325|522333|522334|522336|522339|522341|522345|522347|522370|522373|522375|522379|522388|522397|522398|522403|522406|522415|522418|522422|522426|522439|522447|522712|522725|522728|522732|522734|522734|522735|522738|522741|522743|522744|522748|522765|522768|522771|522773|522773|561138|561139|561185|561188|561190|561195|561196|561199|561200|561201|561202|561203|561204|561206|561207|561208|561209|561212|561216|561218|561219|561223|561224|561246|561254|561256|561263|561267|563834|563930|563932|563934|563936|563938|563940|563942|563944|563945|563953|563954|563956|563959|563960|563963|563964|563968|566299|566301|566301|566305|566306|566307|566312|566315|566321|566324|566328|566329|566330|575737|575738|575739|575740|575741|575742|575743|575744|575745|575746|575747|575748|575749|575750|575751|575752|575753|575754|621225|635451|635452|635453|635454|635455|635456|635457|635458|635459|635460|635461|635462|635463|635464|635465|635466|635467|635468|635469|635470|635471|635472|635473|635474|635475|635476|635477|635478|635479|635480|635481|635482|635483|635484|635485|635486|635487|635488|635489|635490|635491|635492|635493|635494|635495|635496|635497|635498|635499|635500|635501|635502|635503|635504|635505|635506|635507|635508|635509|635510|635511|635512|635513|635514|635515|635516|635517|635518|635519|635520|635521|635522|635523|635524|635525|635526|635527|635528|635529|635530|635531|635532|635533|635534|635535|635536|651631|651632|651636|651646|651649|651693|651695|651697|651701|655770|682317|686955|686956|686957|686958|686959|686960|686963|686964|689850|689852|692103|692104|692106|692108|692110|699766|699768|699769|699770|710724|750356|750357|750361|750364|765996|766000|766001|766008|766012|766013|766016|782735|782736|782737|782739|782742|782743|782744|782745|782746|782747|789820|789821|790672|790673|790674|790675|790676|790677|790678|790679|790680|790681|790682|790683|808725|808726|808732|808738|808741|808742|808743|808747|808748|808749|808751|808755|808756|808764|808772|808775|808783|808786|808787|808788|808793|808795|808796|808799|808801|808803|808804|808807|808813|808818|808822|808830|808834|808835|808839|819780|819781|819782|819783|832785|832786|832787|832788|832789|832790|832791|832792|832793|832794|832795|832796|832797|832798|832799|832800|832801|832802|832803|832804|832805|832806|832807|832808|832809|832810|832811|832812|832813|832814|832815|832816|832817|832818|832819|832820|832821|832822|832823|832824|832825|832826|832827|832828|832829|832830|832831|832832|832833|832834|832835|832836|832837|832838|832839|832840|832841|832842|832843|832844|832845|832846|832847|832848|832849|832850|832851|832852|832853|832854|832855|832856|832857|832858|832859|832860|832861|832862|832863|832864|832865|832866|832867|832868|851117|851124|851611|851614|897281|897282|897283|897284|897285|897286|897287|897288|897289|897290|897291|897292|897293|897294|897295|897296|897297|897298|897299|897300|897301|897302|897303|897304|897305|897306|897307|897308|897309|897310|897311|897312|897313|897314|924581|924582|924583|924584|924585|924586|924587|924588|924589|924590|924591|924592|924593|924594|924595|924596|924597|924598|924599|924600|924601|924602|924603|924604|924605|924606|924607|924608|924609|924610|924611|933587|933588|933589|933590|933591|933592|933593|933594|933595|933596|933597|933598|933599|933600|933601|933602|933603|933604|933605|940056|940866|940867|945312|945313|945314|945315|945316|945317|945318|945319|945320|945321|945322|945323|945324|945325|945326|945327|945328|945329|945330|945331|945332|945333|945334|945335|945336|945337|945338|945339|945340|945341|945342|945343|945344|945345|945346|945347|954981|954982|954983|954984|954985|954986|959825|960620|960621", + "text": "Renal cell carcinoma, papillary, 1" + }, + { + "baseId": "17254|17255|17256|17257|17257|17258|17261|17262|17264|17264|17265|17266|17268|17268|17269|17269|17270|17271|17271|17272|17273|17273|17274|17274|17276|17277|45560|45561|45562|45566|45567|50304|52765|52766|52768|52769|52772|99233|99234|99236|99237|133285|133287|136455|139144|139145|139146|139663|139664|139665|139666|139667|139668|141608|150758|150758|171078|171079|171080|171081|173736|180107|180109|180117|180119|180120|180121|180123|180125|182205|182206|182208|186008|186009|192254|212277|212278|212279|212280|212283|212285|212286|217068|221343|221344|221347|221350|221351|221352|221354|221356|221357|224889|224892|224895|224897|224899|224900|224901|224902|224905|224907|224918|224919|224922|224924|224926|224929|224931|224933|224936|224937|224938|224940|224950|224956|224957|224958|224960|224962|232860|232862|232864|239029|239043|239044|239045|239046|239047|239048|239049|239050|239051|239052|239053|239054|239055|239056|244404|244405|244406|244407|291708|358729|358730|358731|358732|358732|358733|361857|363101|366863|366866|367095|367098|367100|367103|367126|367133|368080|368104|368107|368137|393129|393147|393165|393169|393171|393173|393174|393175|393176|393178|393181|393183|393185|393187|393188|393191|393194|393196|393198|393200|393206|393212|393216|393219|393223|393224|393224|393229|393232|393301|393307|393347|393350|393358|393367|393370|393374|393378|393521|393522|393531|393533|393535|393551|393563|393564|393565|393569|393572|406057|406058|406059|406061|406062|406063|406065|406066|406067|406069|406071|406074|406075|406075|420439|420444|420449|420453|420455|434038|451527|451599|451602|451603|451605|451610|451613|451617|451860|451864|451864|451866|451869|451870|451876|451889|451891|451919|451920|451924|451929|451937|451938|452005|452072|452077|452080|452081|452086|452088|452091|452101|452120|452121|452124|473279|473281|473309|473326|473327|473337|473349|473440|473451|473461|473470|486979|486985|487013|487017|487024|487031|500395|500402|500410|500412|518665|518667|518671|518681|518683|518692|518693|518695|518723|518728|518729|518732|518734|518735|518739|518741|518742|518746|518749|518901|518908|518912|518914|518916|518918|518920|518921|518939|518940|518949|518950|518952|518954|518960|536270|539230|551810|551820|558700|558724|558726|558728|558728|558730|558732|558734|558736|559217|559253|559255|559257|559259|559261|559263|559265|559267|559269|561070|561074|561079|561083|561087|561088|561090|562171|562228|562231|562232|562236|562248|575528|575529|613553|613555|613562|613572|613603|621143|621144|623184|630696|630697|630698|630699|630700|630701|630702|630703|630704|630705|630706|630707|630708|630709|630710|630711|630712|630713|630714|630715|630716|630717|630718|630719|630720|630721|630722|630723|630724|630725|630726|630727|630728|630729|630730|630731|650954|650960|650965|651014|651028|651030|651054|651060|651065|651102|651103|651105|651150|686277|686278|686279|691251|697727|697728|697730|733663|744001|747856|747858|747860|763496|763497|763500|763501|763502|763503|777301|781500|804891|804891|804892|804892|804895|804895|807484|807488|807491|819296|819297|819298|819299|819302|819303|819304|819305|819306|819307|819308|819309|819310|822257|822258|827274|827275|827276|827277|827278|827279|827280|827281|827282|827283|827284|827285|827286|827287|827288|827289|827290|827291|827292|827293|827294|827295|827296|827297|827298|827299|850893|850895|850897|850899|850901|850981|850983|850985|850987|850989|850991|850993|850995|851009|851011|851013|851015|851218|851220|851222|851224|851226|851228|851231|851233|851235|851238|851241|851246|851248|851252|851254|851257|851456|851458|851497|851514|851518|851522|851526|922978|922979|922980|922981|922982|922983|922984|931669|931670|931671|931672|931673|931674|931675|931676|931677|931678|931679|931680|939921|939922|939923|939924|939925|940727|940728|940729|940730|940731|940732|940733|943243|943244|943245|943246|943247|943248|943249|953289|953290|953291|953292|953293|953294|959665|959666|959667|959668|959669|959670|959671|959672|959673|960496|960497|960498|960499|960500|960501|960502|960503", + "text": "Erythrocytosis, familial, 2" + }, + { + "baseId": "17256|32544|32545|32546|32547|32548|32549|32550|32551|32552|32553|32554|134164|134165|134166|134167|134169|134170|134171|134174|134175|134176|191271|191585|196053|196316|196317|207744|253776|253778|253781|253783|253788|264430|269344|272147|274181|359962|404787|407859|407860|421793|425878|429068|441375|459902|459905|459907|459910|459912|459917|460078|460080|460084|460331|460334|460339|460342|460348|460350|460354|460757|460765|460766|460774|460778|488721|489165|490064|513998|525181|525183|525352|525357|525476|525659|525661|538412|538413|563787|563789|563790|563792|564599|564601|566313|566314|566318|566325|566326|566331|566339|569671|569673|569675|576137|612481|612482|638951|638952|638953|638954|638955|638956|638957|638958|638959|638960|638961|638962|638963|638964|638965|638966|638967|651966|652002|652104|652138|692853|692854|692856|692857|692859|692860|692861|692862|695480|701366|737511|737512|752120|767772|778085|783615|790963|836918|836919|836920|836921|836922|836923|836924|836925|836926|836927|836928|836929|836930|836931|836932|836933|836934|836935|836936|836937|836938|836939|836940|852257|852546|925818|925819|925820|925821|925822|925823|925824|925825|925826|925827|925828|925829|935059|935060|935061|935062|935063|935064|935065|935066|946923|946924|946925|946926|946927|946928|946929|946930|946931|946932|946933|946934|956078", + "text": "Familial infantile myasthenia" + }, + { + "baseId": "17257|52768|138162|235483|247653|327448|358732|406075|451864|467353|512896|530769|551810|558728", + "text": "Renal cell carcinoma, nonpapillary" + }, + { + "baseId": "17270", + "text": "Renal cell carcinoma with paraneoplastic erythrocytosis" + }, + { + "baseId": "17271", + "text": "Acute leukemia of ambiguous lineage" + }, + { + "baseId": "17272|22494|22868|27386|27395|27404|27405|27413|27612|27614|27645|28117|28129|28691|28918|28924|28928|28948|28970|29000|29003|29005|29008|29010|30972|30973|48834|48858|50062|50063|52763|53970|53979|132320|151829|170209|174042|180313|182676|183040|186283|206650|206652|362755|362943|362944|362945|362946|363067|363068|363069|363070|363071|363072|363073|363074|363075|363076|363077|363078|363079|363080|363081|363101|363115|363117|363118|363133|363136|363137|363138|363139|363140|363141|363142|363143|363144|363145|363146|363147|363148|363149|363150|363151|363152|363153|363170|363171|363172|363173|363175|363176|363177|363178|363179|363180|363181|363182|363183|363184|363185|363186|363187|363188|363189|363197|363198|363199|363200|363201|363202|363213|363214|363216|363217|363218|551405|551406|567807", + "text": "Neoplasm" + }, + { + "baseId": "17272|29000|32615|32627|97610|185444|313895|313897|313901|313913|313932|320206|320208|320209|320216|320220|320227|320232|320235|320282|320286|320288|320289|326279|326280|326283|326285|326288|326290|326296|327287|327288|327326|327346|327353|398614|432376|432389|432396|432403|432420|961568", + "text": "Nephroblastoma" + }, + { + "baseId": "17278|17280|17281|17282|17283|17284|17285|17286|17287|79377|79378|79379|79380|79382|79383|79384|79385|79386|79387|79388|79389|194829|249581|249582|249583|265448|265556|271388|277753|277754|277757|277758|277859|277860|277861|277863|277869|277870|278804|278806|278807|278813|278814|278865|278882|278897|364643|447325|447538|447556|489335|514875|515321|515346|515402|515403|556710|556712|556714|556759|556761|557066|557068|620710|627146|627147|627148|627149|627150|627151|627152|627153|627154|627155|627156|627157|627158|627159|627160|650697|706920|718429|731913|745889|745891|745892|745894|745896|761388|761389|761390|761391|761392|818876|823046|823047|823048|823049|823050|823051|823052|823053|850746|850941|850943|851255|862944|862945|862946|862947|862948|862949|862950|862951|862952|921765|921766|921767|930181|930182|930183|930184|940612|941594|941595|959533|961923", + "text": "Chronic granulomatous disease, autosomal recessive cytochrome b-positive, type 2" + }, + { + "baseId": "17288|17289|17290|17291|17292|17293|17294|415113|614314|624360|961954", + "text": "Chronic granulomatous disease, autosomal recessive cytochrome b-positive, type 1" + }, + { + "baseId": "17295|17297|17298|17299|17300|17301|17302|17303|17304|17305|17306|79102|247122|255945|255946|268891|270031|273728|409771|445656|466099|466880|467155|467157|530378|530680|530689|530907|530909|530913|548610|568452|570585|574198|589145|610427|610428|645104|645105|645106|645107|645108|645109|645110|645111|645112|645113|645114|652489|652595|652771|653073|731106|740441|740442|771138|771141|771142|771143|771144|771145|771146|771147|771148|771149|776406|820907|820908|820909|844464|844465|844466|844467|844468|844469|844470|844471|844472|851685|927999|928000|928001|937653|937654|937655|941151|949622|949623|957910|957911|957912|960183|960184|960858", + "text": "Granulomatous disease, chronic, autosomal recessive, cytochrome b-negative" + }, + { + "baseId": "17299|17304|38924|38925|39150|79102|224721|255945|255946|268891|277749|277751|277752|277850|277853|277857|277875|278841|278843|278845|409771|422469|445656|467157|470778|530378|574198|645105|645106|645107|645108|645111|652595|729577|729578|731106|740441|740442|771141|771144|771146|776406|785412|844465|844466|844469|844470|844471|850027|979811|979812|979813|979814|979815|979816|979817|979818|980101|980102|980103|980104|980105|980106|980107", + "text": "Chronic granulomatous disease" + }, + { + "baseId": "17302", + "text": "CYBA POLYMORPHISM" + }, + { + "baseId": "17302|590651", + "text": "Very early onset inflammatory bowel disease" + }, + { + "baseId": "17307|17308|17308|17309|17310|17311|17312|17313|17314|17315|17316|17317|17319|17319|17320|17320|17321|39692|39695|165484|196292|198602|213787|213788|213789|213790|213791|244137|244147|244148|244149|244150|244188|439809|513488|513489|556900|624971|789828|789829|789830|789831|789834|789835|921527|966391|977168", + "text": "Charcot-Marie-Tooth disease, type 2A2A" + }, + { + "baseId": "17308|17319|17319|17320|39691|39693|39694|39695|244148|439809|539959|540436|540437|578360|798912", + "text": "Charcot-Marie-Tooth disease, axonal, autosomal recessive, type 2A2B" + }, + { + "baseId": "17308|17315|17316|17317|17318|17319|17320|17320|17321|39695|141913|141914|141915|141917|141918|141920|141921|141922|141923|190878|191572|196028|196292|210581|210582|210589|210590|210597|210602|210603|210605|212071|221079|238137|244186|276217|276218|276219|276220|276223|276224|276238|276239|276240|276245|276253|276260|276268|276269|276473|276475|276482|276485|276487|276488|276860|276879|276884|276885|276886|276889|276898|276899|276903|276905|276906|276907|276908|276951|276952|276953|276954|276965|276969|276970|276977|276978|276992|277008|277039|359204|364342|364422|430974|439809|481414|497999|515038|862127|862128|862129|862130|862131|862132|862133|862134|862135|862136|862137|862138|862139|862140|862141|862142|862143|862144|862145|862146|862147|862148|864970|864971|864972|918549", + "text": "Hereditary motor and sensory neuropathy with optic atrophy" + }, + { + "baseId": "17319", + "text": "MFN2-Related Disorders" + }, + { + "baseId": "17322|39686|39687|82413|102399|102401|135471|135472|135473|135474|135475|135476|142505|142506|142507|142509|142510|142511|177978|178388|181292|195041|195782|196078|196080|202684|202685|202686|202688|202689|202690|202693|202696|202697|202699|202704|202706|202707|202708|241552|241553|244138|265444|269130|317066|317070|317084|324780|324811|324820|330902|330914|360943|373027|373033|373035|373037|373251|375109|375126|398985|399142|399143|399456|399457|408653|444995|444996|462162|462164|462171|462174|462445|462449|462452|462455|462459|462950|462957|462966|463087|463095|463097|463101|491613|493645|504424|527150|527157|527172|527178|527418|527428|527436|527664|527666|527669|527688|527693|527695|527697|565465|565474|565476|566287|566835|566836|568043|568044|568050|571851|579810|579820|641127|641128|641129|641130|641131|641132|652323|687989|687990|687991|687993|769115|793423|839904|839905|839906|839907|839908|839909|839910|839911|839912|839913|839914|839915|839916|839917|839918|839919|839920|839921|839922|839923|839924|839925|839926|926623|926624|926625|926626|926627|926628|926629|926630|936113|936114|936115|936116|936117|936118|936119|936120|936121|936122|948013|948014|948015|948016|948017|948018|948019|956868|956869|956870|956871|970960", + "text": "Progressive myoclonus epilepsy with ataxia" + }, + { + "baseId": "17323|17324|17325|17326|17327|17328|17331|17332|17334|17335|17336|38424|101555|101556|101557|101557|101558|101559|101560|101562|101564|101565|101566|165496|165497|165499|165499|165500|165502|165502|167386|167386|167387|167387|190879|193136|205757|205758|244159|253350|253350|253353|253356|253356|253357|253359|253359|253360|253360|253361|253363|253363|270115|270117|270117|307125|307126|307130|307131|307134|307135|307136|307141|307142|307146|307150|307153|307153|307167|307167|307168|307171|307174|307175|307176|307176|307183|307184|307187|307190|307193|311247|311250|311273|311308|311314|311316|311316|311320|311322|311323|311324|311328|311333|311333|311334|311334|311335|311335|311351|311352|316834|316846|316847|316848|316852|316855|316866|316877|316880|316880|316882|316886|316887|316896|316914|316914|316915|316917|316918|316918|316919|316919|316922|316922|316925|316926|317275|317281|317282|317283|317284|317285|317292|317295|317296|317299|317307|317308|317308|317319|317323|317324|317324|317333|317346|317346|317350|317350|317351|411570|411570|411571|411571|415165|433911|433912|433913|441269|441270|441271|441274|441277|441282|441283|441286|441287|441287|441290|441293|441298|441302|441305|441307|441308|441311|441311|441312|441312|441314|458502|458513|458524|458525|458535|458535|458553|458553|458555|458558|458558|458571|458573|458575|458576|458929|458933|458941|458952|458952|458959|458959|458964|458965|458967|458967|458968|458973|458974|458977|458979|458981|458982|458985|458985|458987|458987|458988|458988|458990|458992|458994|458998|459005|459007|459439|459441|459446|459447|459448|459448|459455|481843|481843|513297|524098|524108|524109|524114|524115|524119|524123|524124|524388|524390|524392|524393|524399|524399|524401|524403|524603|524614|524616|524623|524627|524629|524651|524653|524656|524661|524666|524677|524681|524686|524703|524706|524711|524717|524717|552134|552135|562850|562855|562856|562857|562862|562864|562866|562868|562872|563595|563596|563600|563603|563604|565598|565600|565606|565611|565612|565615|565616|565616|568588|568595|568597|568599|568605|568607|568612|577104|577107|577109|577111|577112|609722|620322|637802|637803|637804|637804|637805|637806|637806|637807|637808|637809|637810|637811|637812|637813|637814|637815|637816|637817|637818|692603|692604|692605|692605|692606|692609|692611|692612|692615|692616|692618|692619|692620|692621|736971|736972|736973|787602|793305|793307|793311|793323|793324|793328|793330|798614|798615|798616|799585|800789|820080|820081|821983|835609|835610|835611|835612|835613|835613|835614|835615|835616|835617|835618|835619|835620|835621|835622|835623|835624|835625|835625|835626|835627|835628|852492|859729|861358|861359|861632|901212|901213|901214|901215|901216|901217|901218|901219|901220|901221|901222|901223|901224|901225|901226|901227|901228|901229|901230|901231|901232|901233|901234|901235|901236|901237|901238|901239|901240|901241|901242|901243|901244|901245|901246|901247|901248|901249|901250|901251|901252|901253|901254|901255|901256|901257|901258|901259|901260|901261|901262|901263|901263|901264|901265|901266|901267|901268|901269|901270|901271|901272|903327|903328|903329|903330|919193|925415|925416|925417|925418|925419|925420|925421|925422|925423|934585|934586|934587|934588|934589|934590|934591|934592|946410|946411|946412|946413|946414|946415|946416|946417|955717|955718|955719|955720|955721|970898|970899", + "text": "Spinocerebellar ataxia, autosomal recessive, with axonal neuropathy 2" + }, + { + "baseId": "17328|17328|17329|17330|17332|38424|101555|101556|101557|101557|101558|101559|101560|101562|101564|101565|101565|101566|165496|165497|165499|165499|165500|165500|165502|165502|167386|167386|167387|167387|190879|193136|253350|253350|253353|253356|253356|253357|253359|253359|253360|253360|253361|253363|253363|270115|270117|270117|307125|307126|307130|307131|307134|307135|307136|307141|307142|307146|307150|307153|307153|307167|307167|307168|307171|307174|307175|307176|307176|307183|307184|307187|307190|307193|311247|311250|311273|311308|311314|311316|311316|311320|311322|311323|311324|311328|311333|311333|311334|311334|311335|311335|311351|311352|316834|316846|316847|316848|316852|316855|316866|316877|316880|316880|316882|316886|316887|316896|316914|316914|316915|316917|316918|316918|316919|316919|316922|316922|316925|316926|317275|317281|317282|317283|317284|317285|317292|317295|317296|317299|317307|317308|317308|317319|317323|317324|317324|317333|317346|317346|317350|317350|317351|411570|411570|411571|411571|415165|433911|433912|433913|441269|441270|441271|441274|441277|441282|441286|441287|441287|441290|441293|441295|441298|441302|441305|441307|441308|441311|441311|441312|441312|441314|458502|458513|458524|458525|458535|458535|458553|458553|458555|458558|458558|458571|458573|458575|458576|458929|458933|458941|458952|458952|458959|458959|458964|458965|458967|458967|458968|458973|458974|458977|458979|458981|458982|458985|458985|458987|458987|458988|458988|458990|458992|458994|458998|459005|459007|459439|459441|459446|459447|459448|459455|481843|481843|524098|524108|524109|524114|524115|524119|524123|524124|524388|524390|524392|524393|524399|524399|524401|524403|524603|524614|524616|524623|524627|524629|524651|524653|524656|524661|524666|524677|524681|524686|524703|524706|524711|524717|524717|540455|562850|562855|562856|562857|562862|562864|562866|562868|562872|563595|563596|563600|563603|563604|565598|565600|565606|565611|565612|565615|565616|565616|568588|568595|568597|568599|568605|568607|568612|577104|577107|577109|577111|577112|609722|620322|637802|637803|637804|637804|637805|637806|637806|637807|637808|637809|637810|637811|637812|637813|637814|637815|637816|637817|637818|692603|692604|692605|692605|692606|692609|692611|692612|692615|692616|692618|692619|692620|692621|736971|736972|736973|787602|790848|790849|793305|793307|793311|793323|793324|793328|799585|820080|820081|821983|835609|835610|835611|835612|835613|835613|835614|835615|835616|835617|835618|835619|835620|835621|835622|835623|835624|835625|835625|835626|835627|835628|852492|859729|861358|861359|861359|901212|901213|901214|901215|901216|901217|901218|901219|901220|901221|901222|901223|901224|901225|901226|901227|901228|901229|901230|901231|901232|901233|901234|901235|901236|901237|901238|901239|901240|901241|901242|901243|901244|901245|901246|901247|901248|901249|901250|901251|901252|901253|901254|901255|901256|901257|901258|901259|901260|901261|901262|901263|901263|901264|901265|901266|901267|901268|901269|901270|901271|901272|903327|903328|903329|903330|925415|925416|925417|925418|925419|925420|925421|925422|925423|934585|934586|934587|934588|934589|934590|934591|934592|946410|946411|946412|946413|946414|946415|946416|946417|955717|955718|955719|955720|955721", + "text": "Amyotrophic lateral sclerosis type 4" + }, + { + "baseId": "17328|17329|17330|20041|24246|24247|141142|141143|141144|141145|141146|141147|171902|171903|186076|191530|192141|212511|212578|215003|221697|221699|230227|237453|244499|244678|244732|252786|252788|252790|252795|281044|281097|281645|281648|281667|281669|281687|282892|283165|283172|302780|302781|302785|302795|302796|302798|302805|306103|306109|306110|306131|306135|306149|306154|310897|310901|310902|310903|310904|310905|310906|310908|310909|311055|311072|311080|311081|311082|311085|311086|311087|311089|311090|311091|311092|311094|395634|402131|407124|425751|455267|457158|457340|482001|509044|512853|521333|528356|531096|540442|540445|540446|540455|540458|540464|552154|564895|565041|570939|609186|610418|611754|625137|625139|625205|625208|625209|625211|625217|625218|625219|625220|625222|625223|625228|625233|625234|625235|625240|625244|625245|625246|625248|625250|625251|625252|625254|625751|625752|636133|651628|683004|683006|683009|683044|683045|683046|683051|683063|683064|683069|683076|683099|683101|683102|683104|683115|815845|815846|833570|897972|897973|897974|897975|897976|897977|897978|897979|897980|897981|897982|897983|900352", + "text": "Distal spinal muscular atrophy" + }, + { + "baseId": "17337|17338|17339|17341|17342|17343|17344|17345|17346|17347|17348|17349|17350|17351|17352|17353|17355|48554|48555|101188|101189|101190|101191|101192|101193|101194|101195|101196|101197|101198|101199|143230|143231|143232|143233|143234|166121|177268|186829|186830|186831|186832|190481|190844|190845|191048|191396|191552|191911|192660|194938|195991|199796|254232|254235|254237|254238|254239|265282|265626|265979|266820|266821|267655|269450|272802|274272|275306|314518|314519|314521|314522|314523|314527|321218|321219|321226|321227|321232|321241|321242|321245|327317|327318|327324|327332|327350|327352|327362|327363|327364|327366|327378|327379|328384|328393|328398|328408|328412|328414|357999|358000|358001|358002|358003|358004|358005|358006|358007|358008|358009|358010|358011|358012|358013|358014|358015|358016|358017|358018|358019|371520|371530|372278|372496|372504|408400|408401|408402|415285|421868|421870|426717|444844|444847|444849|462106|488299|503894|503896|503907|504282|504291|526859|536817|537158|546093|546095|546104|546110|546117|546123|546374|546377|546392|546400|546401|546402|546519|546539|546542|546546|546547|546552|546553|546564|546569|546759|546765|546768|546769|546770|546772|546775|564797|564803|565956|565967|567408|567410|570768|582676|583829|612155|620414|622405|623155|626207|640248|640249|640250|640251|640252|640253|652222|713003|724570|730783|730784|730785|730786|738101|738102|738103|738104|744597|752771|752772|752773|752774|759915|768551|768553|768555|768557|768558|768559|768561|768562|775766|775767|775921|775924|775927|784057|784058|784061|784062|784064|784065|784066|791148|791149|792782|796615|798643|820395|820396|820397|820398|820399|838696|838697|838698|838699|838700|838701|838702|838703|838704|851883|852374|852617|868242|868243|868244|868245|868246|868247|868248|868249|868250|868251|868252|868253|868254|868669|868670|926315|926316|926317|926318|926319|935659|935660|935661|935662|935663|935664|947559|947560|956568|956569|956570|956571|956572|956573|956574|956575|956576|956577|956578|974892|979026|979027|979028|979029|979030|979031|979032|979033|979034|979035|979036|979037|979038|979039|979040|979041|979042|979043|979044|979045|979046|979047", + "text": "Glycogen storage disease, type V" + }, + { + "baseId": "17354|17355", + "text": "McArdle disease, mild" + }, + { + "baseId": "17356|17357|17358|17359|17360|17361|39682|140940|140941|140942|140943|211889|211890|211891|211892|211893|211894|211895|257139|333729|333732|333733|333736|343706|349053|349054|349055|349058|349945|349947|349948|361262|376595|424283|426319|430239|430240|471010|481376|481377|487822|487823|496113|496114|496115|496116|496117|496118|496119|496120|496121|496122|496123|496124|496125|496126|496127|496128|506854|533188|550091|570844|573182|590458|609188|620641|648171|648172|652951|694465|694466|716506|716507|745414|757092|772735|772736|786219|821262|821263|882108|882109|882110|882111|882112|882113|882904|904213|938726|938727|950819|958653|958654|960293|979986", + "text": "Ethylmalonic encephalopathy" + }, + { + "baseId": "17363|135902|135903|135904|135905|135906|135907|135908|135909|135910|135911|135912|135913|135914|135915|135916|135917|135919|135920|135921|135922|135923|135924|135925|135926|135927|135928|135929|135930|135931|135932|135933|135934|135935|135936|135937|135938|135939|135940|135941|135942|135943|135944|135945|135946|135947|135948|135949|135950|135951|135952|135953|135954|135955|135956|135957|135958|135959|135960|135961|135962|135963|135964|135965|135966|135967|181471|190934|190937|190942|191116|191117|191118|191119|191120|193075|194040|194214|194697|194764|194765|194766|194767|194774|195157|195500|195805|195824|195843|196113|196124|196125|196135|196138|196379|196406|208122|247097|265388|265429|265433|265510|265521|265540|265544|265547|265907|266027|266061|266081|266247|266267|266337|266338|266340|266341|266344|266355|266403|266426|266441|266442|266508|266514|266526|266540|266646|266695|266701|266714|266739|266747|266751|266753|266759|266781|266855|266856|266858|266898|266901|267053|267109|267116|267119|267129|267132|267298|267299|267377|267379|267404|267444|267445|267453|267472|267507|267508|267540|267554|267561|267630|267644|267645|267648|267672|267730|267856|267857|267858|267905|267939|267940|267956|267960|267978|268183|268194|268200|268218|268225|268497|268537|269402|269703|270065|270176|270181|270391|270420|270424|271002|271997|272134|274000|274164|274166|320785|320792|320797|320802|320805|320806|320807|320809|320811|320812|320815|320816|320819|320823|320824|320829|320833|320835|320836|320838|320841|320844|320845|320851|320854|320857|320858|320859|320860|320867|320872|320878|320879|320882|320889|320890|320891|320897|320899|320900|320902|320903|320910|320915|320917|320921|320925|320927|329661|329673|329676|329686|329689|329702|329703|329710|329711|329714|329715|329726|329744|329746|329747|329748|329756|329770|329775|329785|329786|329795|329804|329805|329818|329824|329825|329826|329828|329830|329831|329833|329834|329844|329847|329850|329853|329855|329857|329871|329884|329897|329898|329910|329911|329913|329914|329919|329931|329932|329933|329935|329936|329945|329946|329954|329956|329957|329960|329963|329964|329970|336242|336250|336254|336257|336261|336262|336264|336268|336273|336282|336283|336288|336289|336316|336317|336319|336321|336326|336330|336331|336332|336339|336340|336343|336355|336359|336362|336373|336374|336402|336403|336406|336412|336413|336416|336418|336421|336427|336435|336439|336443|336451|336459|336460|336480|336482|336484|336487|336488|336494|336499|338179|338182|338183|338189|338199|338211|338216|338220|338233|338235|338238|338244|338248|338252|338253|338261|338267|338268|338274|338284|338286|338288|338290|338292|338299|338303|338304|338309|338314|338335|338337|338338|338342|338343|338349|338351|338356|338362|338378|338379|338391|338392|338393|338397|338399|338400|338406|338426|338427|338434|338435|338437|338439|363843|429586|429589|441654|441656|441657|441659|441660|441662|441663|441664|441666|441668|445245|463359|463362|463367|463371|463373|463375|463379|463381|463384|463386|463388|463390|463399|463402|463415|463883|463885|463888|463890|463904|463906|463908|463926|463928|463930|463933|463936|463938|463947|463950|463955|463960|463961|463970|463985|464225|464231|464232|464236|464238|464242|464246|464249|464250|464252|464255|464258|464262|464264|464269|464272|464276|464282|464284|464286|464288|464293|464296|464305|464310|464316|464317|464365|464366|464368|464371|464372|464376|464380|464385|464391|464404|464420|464424|464427|464429|464433|491839|513620|513621|528239|528240|528245|528254|528255|528256|528257|528258|528260|528261|528262|528263|528266|528271|528273|528276|528278|528280|528290|528294|528306|528308|528312|528605|528607|528615|528620|528621|528625|528632|528635|528645|528654|528656|528660|528662|528666|528670|528679|528683|528684|528715|528718|528722|528726|528730|528732|528735|528738|528741|528744|528746|528749|528753|528756|528757|528765|539054|566509|566515|566517|566519|566524|566527|566530|566533|566535|566537|566540|566545|566549|566553|566554|566557|566559|568179|568187|568189|568192|568194|568197|568203|568204|568205|568208|568211|568213|568218|568219|568221|568223|568224|568971|568974|568980|568981|568983|568986|568992|568993|568997|572844|572847|572854|572856|572858|572859|572860|572861|572862|572863|572869|572872|572873|572876|577353|577357|578513|578514|612992|626231|642537|642538|642539|642540|642541|642542|642543|642544|642545|642546|642547|642548|642549|642550|642551|642552|642553|642554|642555|642556|642557|642558|642559|642560|642561|642562|642563|642564|642565|642566|642567|642568|642569|642570|642571|642572|642573|642574|642575|642576|642577|642578|642579|642580|642581|642582|642583|642584|642585|642586|642587|642588|642589|642590|642591|642592|642593|642594|642595|642596|642597|642598|642599|642600|642601|642602|642603|642604|642605|642606|642607|642608|642609|642610|642611|642612|642613|642614|642615|642616|642617|642618|642619|642620|642621|642622|642623|642624|642625|642626|642627|652471|652602|652607|652610|652959|688324|688325|688326|688327|688329|688331|693522|693530|693531|693532|693533|693535|693537|693538|693539|693541|693543|693544|693545|693547|693549|693550|693551|693552|693554|693555|693557|693558|693559|693560|695623|695625|695626|695627|702937|702938|702940|702941|702943|702946|702948|714185|714186|714189|725740|725741|754104|769844|769851|769852|769860|776280|787879|793513|841579|841580|841581|841582|841583|841584|841585|841586|841587|841588|841589|841590|841591|841592|841593|841594|841595|841596|841597|841598|841599|841600|841601|841602|841603|841604|841605|841606|841607|841608|841609|841610|841611|841612|841613|841614|841615|841616|841617|841618|841619|841620|841621|841622|841623|841624|841625|841626|841627|841628|841629|841630|841631|841632|841633|841634|841635|841636|841637|841638|841639|841640|841641|841642|841643|841644|841645|841646|841647|841648|841649|841650|841651|841652|851563|851565|851567|852005|852007|852009|852560|852561|852562|852564|852748|871997|871998|871999|872000|872001|872002|872003|872004|872005|872006|872007|872008|872009|872010|872011|872012|872013|872014|872015|872016|872017|872018|872019|872020|872021|872022|872023|872024|872025|872026|872027|872028|872029|872030|872031|872032|872033|872034|872035|872036|872037|872038|872039|872040|872041|872042|872043|872044|872045|872046|872047|872048|872049|872050|872051|872052|872053|872054|872055|872056|872057|872058|872059|872060|872061|872062|872063|872064|872065|872066|872067|872068|872069|872070|872071|872072|872073|872074|872075|872076|872077|872078|872079|872080|872081|872082|872083|872372|872373|872374|872375|872376|872377|872378|872379|872380|872381|872382|872383|872384|872385|872386|872387|919534|919535|919536|919537|919538|919539|920336|927116|927117|927118|927119|927120|927121|927122|927123|927124|927125|927126|927127|927128|927129|927130|927131|927132|927133|927134|927135|927136|927137|927138|927139|927140|927141|927142|927143|936651|936652|936653|936654|936655|936656|936657|936658|936659|936660|936661|936662|936663|936664|936665|936666|936667|936668|936669|936670|936671|936672|936673|936674|936675|936676|936677|936678|936679|936680|936681|936682|936683|940307|940308|940309|941062|941063|948600|948601|948602|948603|948604|948605|948606|948607|948608|948609|948610|948611|948612|948613|948614|948615|948616|948617|948618|948619|948620|948621|948622|948623|948624|948625|948626|957242|957243|957244|957245|957246|957247|957248|957249|957250|957251|957252|957253|957254|957255|957256|957257|957258|957259|957260|957261|957262|957263|960095|960806|970997", + "text": "Emery-Dreifuss muscular dystrophy 5, autosomal dominant" + }, + { + "baseId": "17365|17365|17366|17367|17368|17369|17370|17373|17373|87088|87088|87089|97550|97551|97551|97552|97552|135834|135834|135835|135836|135836|135837|135837|135838|135838|135839|135840|135841|135841|135842|135842|135843|135843|135844|135845|135846|135847|135848|135848|135849|135849|135850|135850|135851|135852|135853|135853|135854|135854|135855|135856|135856|135857|135857|135858|135858|135859|135860|135860|135861|135862|135862|135863|135863|135864|135864|135865|135866|135866|135867|135867|135868|135868|135869|135870|135870|135871|135871|135872|135873|135874|135875|135876|135877|135877|135878|135878|135879|135880|135881|135881|135882|135883|135884|135885|135886|135887|135887|135888|135889|135889|135890|135890|135891|135891|135892|135892|135894|135894|135895|135895|135896|135896|135897|135897|135898|135899|135900|135900|135901|135901|167504|190913|190936|190938|190938|190940|190940|191288|191310|191310|191311|191438|191438|191456|191462|191462|191463|191466|191466|191468|191468|191469|191612|191612|191613|191614|191614|192062|192062|192153|192153|192555|192555|192940|192940|192998|192998|193151|193208|193208|193350|193350|193960|193960|194179|194179|194247|194247|194248|194248|194606|194606|194736|194736|194737|194737|195090|195101|195101|195116|195116|195175|195175|195487|195496|195496|195497|195497|195510|195524|195524|195532|195539|195539|195814|195815|195815|195828|195828|195832|195832|195833|195833|195834|195834|195836|195836|195842|195842|196102|196107|196107|196129|196337|196378|196378|196385|196385|196386|196386|196410|200696|205149|207327|207328|207328|207329|207330|207333|207335|213565|213566|213569|214106|215329|252164|252164|252168|252169|252170|252175|252180|252180|252183|252187|252187|252188|252189|252191|252194|252194|252196|252196|252197|252211|252211|264275|264275|265371|265372|265372|265373|265373|265397|265397|265470|265515|265530|265532|265534|265534|265543|265543|265901|265921|265921|265928|265928|265929|265929|266020|266090|266190|266190|266351|266351|266352|266366|266366|266416|266416|266430|266443|266443|266473|266473|266478|266478|266483|266483|266521|266521|266532|266551|266555|266556|266557|266560|266561|266640|266640|266643|266675|266675|266693|266696|266711|266726|266726|266765|266768|266768|266873|266884|266902|266902|266919|266935|266935|266959|266959|267012|267012|267114|267114|267125|267125|267130|267258|267258|267263|267263|267267|267267|267272|267272|267342|267342|267380|267440|267440|267483|267483|267493|267538|267550|267550|267569|267628|267676|267676|267691|267693|267855|267855|267879|267898|267902|267903|267911|267911|267913|267913|267914|267920|267923|267923|267930|267930|267935|267935|267936|267945|267946|267988|268173|268268|268268|268325|268369|268371|268374|268374|268494|268494|268517|268517|268518|268518|268626|268626|268692|268696|268696|268711|268735|268735|268736|268811|268811|268838|268838|268867|268918|268918|268925|268925|268927|269004|269004|269006|269022|269022|269024|269048|269172|269211|269288|269289|269289|269294|269294|269302|269309|269314|269317|269332|269336|269379|269383|269388|269398|269423|269423|269431|269431|269473|269532|269534|269535|269535|269541|269558|269565|269565|269566|269572|269572|269586|269592|269592|269596|269602|269691|269691|269709|269709|269715|269828|269828|269837|269837|269872|269872|269877|269879|269879|269881|269881|269883|269911|269914|269914|269925|269925|269926|269942|269943|269960|269969|269969|270048|270051|270051|270052|270052|270172|270174|270174|270223|270223|270237|270239|270245|270257|270279|270279|270385|270399|270399|270435|270436|270472|270472|270488|270493|270493|270507|270507|270693|270701|270719|270719|270728|270823|270832|270833|270949|271054|271054|271063|271147|271159|271160|271160|271166|271421|271702|271894|271948|271948|272187|272254|272311|272314|272368|272422|272539|272539|272543|272621|272623|272623|272628|272628|272632|272632|272637|272662|272666|272735|272744|272812|272834|272836|272841|272841|272843|272843|272872|272872|272873|272873|272875|272886|272904|272925|272978|273052|273065|273085|273085|273086|273086|273092|273092|273095|273102|273108|273179|273179|273190|273212|273317|273349|273353|273382|273394|273406|273406|273582|273589|273607|273795|273795|273803|273814|273821|273874|273874|273878|273885|273910|273910|273993|273993|274013|274020|274077|274328|274337|274391|274408|274409|274419|274457|274505|274506|274565|274573|274583|274634|274681|274686|274692|274692|274724|274738|274739|274751|274768|274788|274808|274827|274830|274837|274837|274842|274855|274906|274947|275118|275154|275163|275171|275314|275450|299385|299388|299390|299399|299400|299402|299403|299403|299404|299409|299415|299416|299416|299420|299421|299429|299431|299431|299432|299440|299441|299441|299442|299442|299443|299448|299458|299460|299463|299475|299480|299481|299485|299485|299487|299495|299495|299496|299497|299497|299506|299511|299515|299518|299521|299522|299523|301860|301882|301883|301884|301884|301885|301886|301887|301887|301898|301901|301901|301907|301910|301910|301911|301911|301915|301916|301917|301917|301923|301924|301924|301925|301925|301932|301932|301940|301943|301943|301950|301962|301963|301963|301972|301979|301980|301989|301989|301992|301992|301994|301996|301996|301997|301997|302015|302024|302025|302028|302029|302030|302039|306313|306317|306323|306325|306327|306328|306333|306336|306337|306350|306351|306355|306360|306362|306362|306372|306385|306392|306392|306394|306397|306397|306403|306403|306404|306404|306408|306408|306409|306411|306412|306412|306431|306431|306440|306445|306445|306446|306446|306447|306451|306451|306454|306455|306499|306600|306605|306606|306618|306638|306640|306646|306650|306650|306651|306652|306661|306662|306676|306676|306677|306678|306681|306690|306698|306700|306701|306702|306709|306711|306712|306712|306714|306723|306726|306727|306727|306728|306736|306745|306745|306749|306749|306750|306754|306754|306755|306757|306757|306758|306759|306765|306766|306766|306767|306767|359609|363979|368394|368394|368421|368448|368448|368458|368752|368766|368787|368908|368910|368927|368962|368973|370232|370244|389126|406830|406831|406831|415031|425673|425674|425676|428529|428530|428531|428532|428533|428534|440937|440938|440940|440944|440947|440949|440956|440959|440961|440963|440966|440972|440972|440975|440986|440997|441001|441005|441007|441012|441013|441017|441019|443902|443908|443915|443916|443917|455319|455320|455325|455329|455337|455338|455340|455340|455345|455355|455357|455358|455359|455370|455371|455372|455376|455380|455382|455386|455409|455410|455413|455421|455429|455438|455444|455445|455447|455452|455460|455463|455466|455468|455469|455470|455472|455475|455480|455481|455494|455496|455497|455973|455977|455982|455984|455989|455989|455991|455992|456000|456003|456021|456022|456030|456040|456045|456050|456057|456060|456164|456167|456172|456177|456178|456181|456185|456189|456202|456212|456221|456225|456229|488501|488729|488798|489005|489251|489262|489265|489269|489355|489609|489641|489785|489997|490048|490331|490353|490397|490431|490472|490514|490797|491119|491122|491394|491515|491595|491736|491786|491831|492235|492241|492322|492461|492863|492865|492984|493065|493200|493583|493588|493963|494010|494085|501201|501233|501491|501524|501591|501595|501595|501622|501842|501854|501880|511008|513419|513567|521457|521459|521462|521463|521464|521470|521472|521475|521477|521478|521481|521482|521625|521742|521747|521763|521766|521767|521776|521810|521813|521814|521814|521824|521825|521826|521832|521833|521835|521839|521841|521847|521851|521853|521857|521858|521861|521868|522070|522074|522076|522080|522084|522094|522099|522100|522103|522108|522109|522119|522120|522140|522150|538384|538995|540447|560477|560479|560481|560483|560485|560487|560489|560491|560493|560495|560497|560499|560614|560616|560618|560620|560622|560624|560626|560628|560630|560632|560634|560636|560638|563416|563417|563432|563433|563435|563436|563438|563439|563443|563444|563448|563454|563455|563456|565460|565461|565462|565468|565469|565472|565475|565477|565495|565496|565497|565498|576865|576873|576876|576879|576885|576886|576897|576904|578441|584364|584881|585255|585771|585921|585928|586396|586451|586453|586670|586881|586968|586968|587055|587133|587135|587321|587485|587611|587653|587988|588450|588731|589074|589249|589744|609621|620221|622357|622358|622359|622360|622505|622506|623615|626159|634675|634676|634677|634678|634679|634680|634681|634682|634683|634684|634685|634686|634687|634688|634689|634690|634691|634692|634693|634694|634695|634696|634697|634698|634699|634700|634701|634702|634703|634704|634705|634706|634707|634708|634709|634710|634711|634712|634713|634714|634715|634716|634717|634718|634719|634720|634721|634722|634723|634724|634725|634726|634727|634728|634729|634730|634731|634732|634733|634734|634735|634736|634737|634738|634739|634740|634741|634742|634743|634744|634745|634746|634747|651483|651527|651527|651528|651534|651535|651537|651543|651593|651600|654425|655724|672065|691944|691946|691949|691952|691954|691957|691958|691964|699395|699399|710271|710271|710272|721817|721823|735485|735486|735487|735488|735492|749923|759452|759462|765546|765558|775262|782476|782481|782482|790601|793136|793138|795773|795775|798569|798570|831648|831649|831650|831651|831652|831653|831654|831655|831656|831657|831658|831659|831660|831660|831661|831662|831663|831664|831665|831666|831667|831668|831669|831670|831671|831672|831673|831674|831675|831676|831677|831678|831679|831680|831681|831682|831683|831684|831685|831686|831687|831688|831689|831690|831691|831692|831693|831694|831695|831696|831697|831698|831699|831700|831701|831702|831703|831704|831705|831706|831707|831708|831709|831710|831711|831712|831713|831714|831715|831716|831717|831718|831719|831720|831721|831722|831723|831724|851066|851318|852016|852018|852249|859475|895541|895542|895543|895544|895545|895546|895547|895548|895549|895550|895551|895551|895552|895553|895554|895555|895556|895557|895558|895559|895560|895561|895562|895563|895564|895565|895566|895566|895567|895568|895569|895570|895571|895572|895573|895574|895575|895576|895577|895578|895579|895580|895581|895582|895583|895584|895585|895586|895587|895587|895588|895589|895590|895591|895592|895593|895594|895595|895596|895597|895598|895599|895600|895601|895602|895603|895604|895605|895606|895607|895608|895609|895610|895611|895612|895613|895614|895615|895616|895617|895618|895619|895620|896201|896202|896203|896204|896205|896206|896207|896208|896209|896210|896210|896211|896212|905859|919002|919003|919004|919005|920222|920223|924282|924283|924284|924285|924286|924287|924288|924289|924290|924291|924292|924293|924294|924295|924296|924297|924298|924299|924300|933206|933207|933208|933209|933210|933211|933212|933213|933214|933215|933216|933217|933218|933219|933220|933221|933222|933223|933224|933225|933226|933227|933228|933229|933230|933231|933232|933233|933234|933235|933236|933237|933238|933239|933240|940031|940032|940033|944915|944916|944917|944918|944919|944920|944921|944922|944923|944924|944925|944926|944927|944928|944929|944930|944931|944932|944933|944934|944935|944936|944937|944938|944939|944940|944941|944942|944943|944944|944945|944946|944947|954393|954394|954395|954396|954397|954398|954399|954400|954401|954402|954403|969705|969706|970139|970410|971578|983460|983461", + "text": "Spinocerebellar ataxia, autosomal recessive 8" + }, + { + "baseId": "17365|17371|17372|17373|17373|87088|87088|87089|97550|97551|97551|97552|97552|135834|135834|135835|135836|135836|135837|135837|135838|135838|135839|135840|135841|135841|135842|135842|135843|135843|135844|135845|135846|135847|135848|135848|135849|135849|135850|135850|135851|135852|135853|135853|135854|135854|135855|135856|135856|135857|135857|135858|135858|135859|135860|135860|135861|135862|135862|135863|135863|135864|135864|135865|135866|135866|135867|135867|135868|135868|135869|135870|135870|135871|135871|135872|135873|135874|135875|135876|135877|135877|135878|135878|135879|135880|135881|135881|135882|135883|135884|135885|135886|135887|135887|135888|135889|135889|135890|135890|135891|135891|135892|135892|135894|135894|135895|135895|135896|135896|135897|135897|135898|135899|135900|135900|135901|135901|190913|190936|190938|190938|190940|190940|191288|191310|191310|191311|191438|191438|191456|191462|191462|191463|191466|191466|191468|191468|191469|191612|191612|191613|191614|191614|192062|192062|192153|192153|192555|192555|192940|192940|192998|192998|193151|193208|193208|193350|193350|193960|193960|194179|194179|194247|194247|194248|194248|194606|194606|194736|194736|194737|194737|195090|195101|195101|195116|195116|195175|195175|195487|195496|195496|195497|195497|195510|195524|195524|195532|195539|195539|195814|195815|195815|195828|195828|195832|195832|195833|195833|195834|195834|195836|195836|195842|195842|196102|196107|196107|196129|196337|196378|196378|196385|196385|196386|196386|196410|204974|207328|207328|207329|207333|214106|215329|252164|252164|252168|252169|252170|252175|252180|252180|252183|252187|252187|252189|252191|252194|252194|252196|252196|252197|252211|252211|264275|264275|265371|265372|265372|265373|265373|265397|265397|265470|265515|265530|265532|265534|265534|265543|265543|265901|265921|265921|265928|265928|265929|265929|266020|266090|266190|266190|266351|266351|266352|266366|266366|266416|266416|266430|266443|266443|266473|266473|266478|266478|266483|266483|266521|266521|266532|266551|266555|266556|266557|266560|266561|266640|266640|266643|266675|266675|266693|266696|266711|266726|266726|266765|266768|266768|266873|266884|266902|266902|266919|266935|266935|266959|266959|267012|267012|267114|267114|267125|267125|267130|267258|267258|267263|267263|267267|267267|267272|267272|267342|267342|267380|267440|267440|267483|267483|267493|267538|267550|267550|267569|267628|267676|267676|267691|267693|267855|267855|267879|267898|267902|267903|267911|267911|267913|267913|267914|267920|267923|267923|267930|267930|267935|267935|267936|267945|267946|267988|268173|268268|268268|268325|268369|268371|268374|268374|268494|268494|268517|268517|268518|268518|268626|268626|268692|268696|268696|268711|268735|268735|268736|268811|268811|268838|268838|268867|268918|268918|268925|268925|268927|269004|269004|269006|269022|269022|269024|269048|269172|269211|269288|269289|269289|269294|269294|269302|269309|269314|269317|269332|269336|269379|269383|269388|269398|269423|269423|269431|269431|269473|269532|269534|269535|269535|269541|269558|269565|269565|269566|269572|269572|269586|269592|269592|269596|269602|269691|269691|269709|269709|269715|269828|269828|269837|269837|269872|269872|269877|269879|269879|269881|269881|269883|269911|269914|269914|269925|269925|269926|269942|269943|269960|269969|269969|270048|270051|270051|270052|270052|270172|270174|270174|270223|270223|270237|270239|270245|270257|270279|270279|270385|270399|270399|270435|270436|270472|270472|270488|270493|270493|270507|270507|270693|270701|270719|270719|270728|270823|270832|270833|270949|271054|271054|271063|271147|271159|271160|271160|271166|271421|271702|271894|271948|271948|272187|272254|272311|272314|272368|272539|272539|272543|272621|272623|272623|272628|272628|272632|272632|272637|272662|272666|272735|272744|272812|272834|272836|272841|272841|272843|272843|272872|272872|272873|272873|272875|272886|272904|272925|272978|273052|273085|273085|273086|273086|273092|273092|273095|273102|273108|273179|273179|273190|273212|273317|273349|273353|273382|273394|273406|273406|273582|273589|273607|273795|273795|273803|273814|273821|273874|273874|273878|273885|273910|273910|273993|273993|274013|274020|274077|274328|274337|274391|274408|274409|274419|274457|274505|274506|274565|274573|274583|274634|274681|274686|274692|274692|274724|274738|274739|274751|274768|274788|274808|274827|274830|274837|274837|274842|274855|274906|274947|275118|275154|275163|275171|275450|299385|299388|299390|299399|299400|299402|299403|299403|299404|299409|299415|299416|299416|299420|299421|299429|299431|299431|299432|299440|299441|299441|299442|299442|299443|299448|299458|299460|299463|299475|299480|299481|299485|299485|299487|299495|299495|299496|299497|299497|299506|299511|299515|299518|299521|299522|299523|301860|301882|301883|301884|301884|301885|301886|301887|301887|301898|301901|301901|301907|301910|301910|301911|301911|301915|301916|301917|301917|301923|301924|301924|301925|301925|301932|301932|301940|301943|301943|301950|301962|301963|301963|301972|301979|301980|301989|301989|301992|301992|301994|301996|301996|301997|301997|302015|302024|302025|302028|302029|302030|302039|306313|306317|306323|306325|306327|306328|306333|306336|306337|306350|306351|306355|306360|306362|306362|306372|306385|306392|306392|306394|306397|306397|306403|306403|306404|306404|306408|306408|306409|306411|306412|306412|306431|306431|306440|306445|306445|306446|306446|306447|306451|306451|306454|306455|306499|306600|306605|306606|306618|306638|306640|306646|306650|306650|306651|306652|306661|306662|306676|306676|306677|306678|306681|306690|306698|306700|306701|306702|306709|306711|306712|306712|306714|306723|306726|306727|306727|306728|306736|306745|306745|306749|306749|306750|306754|306754|306755|306757|306757|306758|306759|306765|306766|306766|306767|306767|359609|363979|368394|368394|368421|368448|368448|368458|368752|368766|368787|368908|368910|368927|368962|368973|370232|370244|389126|406830|406831|406831|415031|425673|425674|425676|440937|440938|440940|440944|440947|440949|440956|440959|440961|440963|440966|440972|440972|440975|440986|440997|441001|441005|441007|441012|441013|441017|441019|443908|443915|443916|443917|455319|455320|455325|455329|455337|455338|455340|455340|455345|455355|455357|455358|455359|455370|455371|455372|455376|455380|455382|455386|455409|455410|455413|455421|455429|455438|455444|455445|455447|455452|455460|455463|455468|455469|455470|455472|455475|455480|455494|455496|455497|455973|455977|455982|455984|455989|455989|455991|455992|456000|456003|456021|456022|456030|456040|456045|456050|456057|456060|456164|456167|456172|456177|456178|456181|456185|456189|456202|456212|456221|456225|456229|488501|488729|488798|489005|489251|489262|489265|489269|489355|489609|489641|489785|489997|490048|490331|490353|490397|490431|490472|490514|490797|491119|491122|491394|491515|491595|491736|491786|491831|492235|492241|492322|492461|492863|492865|492984|493065|493200|493583|493588|493963|494010|494085|501201|501233|501491|501524|501591|501595|501595|501622|501842|501854|501880|513566|521457|521459|521462|521463|521464|521470|521472|521475|521477|521478|521481|521482|521625|521742|521747|521763|521766|521767|521776|521810|521813|521814|521814|521824|521825|521826|521832|521833|521835|521839|521841|521847|521851|521853|521857|521858|521861|521868|522070|522074|522076|522080|522084|522094|522099|522100|522103|522108|522109|522119|522120|522140|522150|560477|560479|560481|560483|560485|560487|560489|560491|560493|560495|560497|560499|560614|560616|560618|560620|560622|560624|560626|560628|560630|560632|560634|560636|560638|563416|563417|563432|563433|563435|563436|563438|563439|563443|563444|563448|563454|563455|563456|565460|565461|565462|565468|565469|565472|565475|565477|565495|565496|565497|565498|576865|576873|576876|576879|576885|576886|576897|576904|584364|584881|585255|585771|585921|586396|586451|586453|586670|586881|586968|586968|587055|587133|587135|587321|587485|587611|587653|587988|588450|588731|589074|589249|589744|609621|620221|622361|626309|634675|634676|634677|634678|634679|634680|634681|634682|634683|634684|634685|634686|634687|634688|634689|634690|634691|634692|634693|634694|634695|634696|634697|634698|634699|634700|634701|634702|634703|634704|634705|634706|634707|634708|634709|634710|634711|634712|634713|634714|634715|634716|634717|634718|634719|634720|634721|634722|634723|634724|634725|634726|634727|634728|634729|634730|634731|634732|634733|634734|634735|634736|634737|634738|634739|634740|634741|634742|634743|634744|634745|634746|634747|651483|651527|651527|651528|651534|651535|651537|651543|651593|651600|655724|691944|691946|691949|691952|691954|691957|691958|691964|699395|699399|710271|710271|710272|721817|721823|735485|735486|735487|735488|735492|749923|759452|759462|765546|765558|775262|782476|782481|782482|793136|793138|795773|795775|831648|831649|831650|831651|831652|831653|831654|831655|831656|831657|831658|831659|831660|831660|831661|831662|831663|831664|831665|831666|831667|831668|831669|831670|831671|831672|831673|831674|831675|831676|831677|831678|831679|831680|831681|831682|831683|831684|831685|831686|831687|831688|831689|831690|831691|831692|831693|831694|831695|831696|831697|831698|831699|831700|831701|831702|831703|831704|831705|831706|831707|831708|831709|831710|831711|831712|831713|831714|831715|831716|831717|831718|831719|831720|831721|831722|831723|831724|851066|851318|852016|852018|852249|859475|895541|895542|895543|895544|895545|895546|895547|895548|895549|895550|895551|895551|895552|895553|895554|895555|895556|895557|895558|895559|895560|895561|895562|895563|895564|895565|895566|895566|895567|895568|895569|895570|895571|895572|895573|895574|895575|895576|895577|895578|895579|895580|895581|895582|895583|895584|895585|895586|895587|895587|895588|895589|895590|895591|895592|895593|895594|895595|895596|895597|895598|895599|895600|895601|895602|895603|895604|895605|895606|895607|895608|895609|895610|895611|895612|895613|895614|895615|895616|895617|895618|895619|895620|896201|896202|896203|896204|896205|896206|896207|896208|896209|896210|896210|896211|896212|903538|916963|924282|924283|924284|924285|924286|924287|924288|924289|924290|924291|924292|924293|924294|924295|924296|924297|924298|924299|924300|933206|933207|933208|933209|933210|933211|933212|933213|933214|933215|933216|933217|933218|933219|933220|933221|933222|933223|933224|933225|933226|933227|933228|933229|933230|933231|933232|933233|933234|933235|933236|933237|933238|933239|933240|940031|940032|940033|944915|944916|944917|944918|944919|944920|944921|944922|944923|944924|944925|944926|944927|944928|944929|944930|944931|944932|944933|944934|944935|944936|944937|944938|944939|944940|944941|944942|944943|944944|944945|944946|944947|954393|954394|954395|954396|954397|954398|954399|954400|954401|954402|954403", + "text": "Emery-Dreifuss muscular dystrophy 4, autosomal dominant" + }, + { + "baseId": "17374|264275|268173|268749|623618|793124|970824|970825", + "text": "Arthrogryposis multiplex congenita 3, myogenic type" + }, + { + "baseId": "17375|17376|17378|17379|208176|255174|271609|360186|429647|434646|445312|464206|464208|528771|528774|528821|567014|568742|568753|568758|643156|643157|643158|643159|643160|693669|703156|739579|804914|816478|842289|842290|842291|842292|936915|936916|948871|957407|957408|957409|971014", + "text": "Ehlers-Danlos syndrome, musculocontractural type" + }, + { + "baseId": "17375|17376|17378|17379|17380|17381|33460|65663|439521", + "text": "Ehlers-Danlos syndrome, musculocontractural type 1" + }, + { + "baseId": "17382|141885|141886|192552|200012|200013|287138|287143|290398|290404|290408|290707|290710|630415|630416|630417|733547|781432|819268|885404|885405|885406|885407|885408|887390", + "text": "Methylmalonyl-CoA epimerase deficiency" + }, + { + "baseId": "17383|17384|17385|17386|17387|17388|17389|33461|33462|33463|253925|253926|253928|253929|253930|253931|253932|253934|253935|253936|253937|253938|253940|253941|253942|253943|253945|253946|253947|260791|274360|311735|311737|311740|311742|311743|311747|311748|311750|311752|311753|311754|311756|311758|311760|311761|311766|311768|311769|311771|311773|317302|317306|317312|317315|317316|317317|317328|317331|317334|317335|317336|317338|317339|317340|317343|317353|317357|317359|317361|317362|317363|317365|323351|323355|323368|323369|323387|323396|323398|323400|323405|323409|323410|323411|323939|323946|323948|323949|323950|323952|323955|323956|323972|323973|323976|323980|323981|323984|323986|323991|323994|323995|323997|324000|324019|324022|415241|441386|441387|493316|577163|620371|622894|623151|623304|701484|701485|737651|737652|788843|788844|791017|792779|866584|866585|866586|866587|866588|866589|866590|866591|866592|866593|866594|866595|866596|866597|866598|866599|866600|866601|866602|866603|866604|866605|866606|866607|866608|866609|866610|866611|866612|866613|866614|866615|866616|866617|866618|866619|866620|866621|866622|866623|866624|866625|866626|866627|866628|866629|866630|866631|866632|866633|868538|868539|868540|868541|868542", + "text": "Nephrotic syndrome, type 3" + }, + { + "baseId": "17390|17391|17391|17392|17393|17394|17395|17396|17397|17397|17398|17399|17400|19961|39679|39679|39680|39681|39940|57504|57506|57509|57510|57511|57512|57514|57514|57515|57516|57517|57517|57519|57520|57521|57523|57524|57525|57525|57529|57532|57532|57539|57540|57541|57542|57543|57545|57546|57547|57548|57549|57550|57551|57552|57552|57553|57554|57558|57559|57560|57562|57565|57566|57566|57570|57571|57572|57574|57575|57579|57579|57581|57584|57585|57589|57590|57591|57592|57593|57595|57595|57599|57600|57601|57602|57602|57604|57606|57607|57608|57611|57612|57615|57617|57617|57619|57624|57625|57626|57627|57627|57629|57630|57631|57633|57634|57635|57636|57638|57638|57639|57639|57640|57643|57644|57645|57646|57647|57647|57648|57649|57650|57651|57653|57657|57658|57661|57661|57662|57664|57665|57666|57667|57668|57668|57669|57670|57671|57672|57673|57674|57677|57678|57680|57681|57682|57684|57685|57686|57687|57689|57690|57694|57697|57698|57698|57699|57700|57702|57705|57707|57708|57708|57709|57709|57712|57715|57715|57717|57718|57720|57723|57724|57727|57730|57731|57732|57732|57733|57734|57736|57737|57738|57738|57739|57739|57740|57742|57743|57743|57744|57744|57745|57746|57748|57749|57750|57751|57753|57754|57755|57755|57756|57756|57757|57759|57759|57760|57760|57761|57763|57764|57765|57766|57766|57768|57769|57771|57773|57773|57774|57774|57777|57778|57779|57780|57782|57784|57785|57786|57789|57790|57790|57793|57795|57796|57797|80007|84450|97374|102558|102559|102559|109938|109941|137048|137049|137049|137050|152886|152888|152888|152889|152890|152893|152895|152895|152897|152898|152899|166173|166173|166176|172371|172375|172375|172376|172377|172382|172383|172384|172385|172387|172390|172508|172509|172510|172511|172512|172518|172520|172520|172521|172522|172523|172524|172526|172742|172743|172743|172746|172746|172747|172747|172748|172749|172751|172751|172752|172756|172756|172758|172759|172760|172762|172771|172772|172773|172774|172775|172776|172779|172780|172782|172783|172784|172882|172884|172886|172887|172888|172893|172896|172902|172903|172904|172904|172905|172905|172906|172907|172908|172909|172909|172911|172912|172912|172913|172914|172914|172918|172920|172921|172922|172923|172925|187108|187108|191966|192949|193158|194608|195093|195093|195105|195479|195505|195505|195527|195527|195622|205129|205725|205725|205726|205726|213519|226519|226520|226521|226540|227209|227210|227210|228240|228290|228290|228291|228292|228293|228295|228295|228301|228302|228304|228306|228306|228307|228310|228316|228317|228318|228320|228322|228323|228323|228324|228327|228330|228331|228331|228332|228337|228342|228343|228344|228346|228348|228349|228349|228352|237598|237978|237980|237981|237981|237986|237990|237993|259651|259652|259653|260776|260776|260777|263977|265965|266055|268108|270036|270305|270541|270869|271073|271073|271288|273627|275046|278928|278931|278932|278939|278940|278944|278947|278953|278954|278959|278969|278970|278971|278972|278977|278987|279068|279086|279087|279088|279095|279102|279103|280365|280366|280379|280380|280386|280391|280398|280400|280404|280405|280406|280408|280411|280412|280415|280417|280418|280419|280420|280421|280423|280425|357061|357073|359230|360808|361477|361560|364628|364634|364778|405037|405042|405043|413266|413268|413269|418815|418816|421207|425333|430976|431572|431575|431578|431580|431586|431587|431592|431593|431594|431598|431599|431600|431600|431601|431601|431602|431602|431604|431610|431610|437843|442714|481515|481582|486831|486831|488344|488838|489896|489896|490149|490281|496156|496156|496179|496182|496601|496604|496611|508746|508746|511226|513012|540725|540727|540732|540733|540735|540739|540751|540758|540761|540763|540765|540766|540766|540772|540772|540773|540775|540780|540785|540787|540790|540791|540795|540800|540801|540804|540805|540806|540809|540811|540813|540814|540815|540816|540819|540820|540821|540823|540825|540825|540826|540827|540828|540829|540830|540831|540832|540832|540834|540835|540836|540837|540838|540840|540841|540841|540842|540843|540844|540845|540846|540847|540848|540849|540850|540851|540852|540853|540854|540855|540856|540857|540858|540859|540860|540862|540864|540866|540869|540871|540872|540873|540874|540875|540876|540878|540878|540882|540882|540883|540885|540886|540887|540889|540891|540892|540893|540895|540897|540898|540899|540901|540903|540904|540905|540906|540907|540908|540909|540910|540911|540912|540913|540914|540915|540916|540917|540918|540919|540920|540920|540921|540922|540923|540924|540925|540926|540927|540928|540929|540930|540931|540932|540933|540934|540935|540936|540937|540938|540940|540941|540942|540944|540946|540948|540949|540950|540951|540952|540953|540954|540954|540955|540956|540958|540960|540961|540962|540963|540964|540964|540965|540966|540966|540967|540968|540969|540970|540971|540972|540973|540974|540975|540976|540977|540978|540979|540980|540981|540982|540983|540984|540985|540987|540988|540989|540991|540992|540993|540994|540995|540996|540997|540997|540998|540998|541000|541005|541007|541010|541012|541013|541014|541017|541018|541020|541020|541022|541023|541024|541025|541026|541027|541028|541029|541030|541031|541032|541034|541035|541036|541036|541037|541039|541043|541044|541045|541046|541047|541048|541049|541050|541050|541051|541053|541055|541056|541057|541059|541060|541060|541061|541062|541063|541064|541065|541065|541066|541067|541067|541069|541070|541071|541071|541073|541074|541076|541077|541079|541080|541081|541082|541083|541084|541085|541086|541086|541087|541088|541089|541090|541092|541093|541094|541095|541096|541096|541097|541099|541101|541104|541105|541106|541107|541108|541109|541110|541111|541112|541115|541125|541127|550865|551511|551513|551517|551619|551756|551776|552400|590236|609371|609373|609375|610612|619989|622310|623244|623800|623803|627362|654178|654179|654186|654188|654191|654196|655061|679901|696464|707090|718634|718638|718639|732101|732106|732107|732111|732112|732113|732115|732116|732117|732118|732121|732122|746099|746102|746103|746107|746110|746117|746118|758861|761555|761562|761567|761568|761572|761581|761585|761589|761596|761597|761599|761602|761603|761611|761613|761615|761617|761619|761621|761623|774452|778794|780495|780501|780512|780519|780529|780539|780540|780543|780552|780557|789916|789917|789918|789919|789920|789921|789922|789923|789924|789925|789926|789927|789928|789929|789930|789931|794566|800348|800365|800366|800367|801589|801590|801591|801592|821835|821836|821837|823328|823329|823330|823335|823338|823340|823346|823349|823361|823363|823370|823374|823378|823385|823388|823392|823399|823403|823404|823406|823410|823417|823418|823421|823428|823435|823436|823437|823440|823443|823446|823447|823449|823459|823463|823467|823468|850756|851273|855909|857405|857671|863530|863531|863532|863533|863534|863535|863536|863537|863538|863539|863540|863541|863542|863543|863544|863545|863546|863547|863548|863549|863550|863551|863552|863553|863554|863555|865109|865110|906121|906122|906123|906124|906125|906126|906127|918601|918602|918603|918604|918606|918607|918608|918609|920133|920134|962914|967257|969092|977479|977480|977481|977482|977483|977484|977485|977486|977487|977489|977490|977492|977496|977497|977498|977499|977500|977501|977502|977503|977504|977505|977506|977507|977508|977509|977510|977511|977512|977513|977514|977515|977516|977517|977518|977519", + "text": "Usher syndrome, type 2A" + }, + { + "baseId": "17390|17391|17392|17395|17396|17397|17397|17398|17399|17400|17401|39679|57504|57505|57509|57510|57511|57512|57514|57515|57516|57517|57519|57524|57525|57532|57537|57541|57550|57551|57552|57552|57554|57557|57560|57566|57570|57571|57574|57579|57589|57591|57592|57595|57602|57608|57611|57612|57617|57619|57627|57631|57633|57635|57638|57638|57639|57647|57651|57653|57658|57661|57665|57666|57668|57673|57685|57686|57697|57698|57700|57705|57706|57707|57708|57709|57712|57715|57720|57723|57726|57732|57736|57738|57739|57743|57744|57745|57749|57750|57754|57755|57756|57757|57759|57760|57763|57765|57766|57766|57773|57774|57777|57779|57784|57790|57796|80007|84450|97374|102558|102559|109938|109941|137049|152888|152888|152890|152893|152895|152897|166173|172375|172376|172377|172382|172384|172385|172390|172508|172510|172511|172517|172518|172520|172521|172522|172523|172743|172746|172747|172748|172751|172756|172758|172759|172762|172772|172779|172780|172782|172783|172882|172884|172886|172902|172903|172904|172905|172906|172907|172909|172912|172914|172914|172921|172923|187108|194608|194671|195093|195093|195479|195505|195527|205725|205725|205726|205726|227210|228240|228290|228291|228292|228293|228295|228304|228306|228310|228312|228316|228320|228321|228322|228323|228324|228330|228331|228342|228343|228346|228348|228349|228352|237978|237980|237981|237986|237993|259652|260776|260777|263977|266055|266055|268648|270341|271073|357061|357073|359230|359230|361560|364778|364778|364867|405037|405043|413266|413268|431572|431574|431578|431580|431586|431587|431592|431593|431594|431598|431599|431600|431601|431602|431604|431606|431610|437843|486824|486831|488344|489150|489896|490149|492739|496156|508746|513009|513010|513011|513013|538928|540725|540727|540732|540733|540735|540739|540751|540758|540758|540761|540763|540765|540766|540772|540773|540775|540780|540785|540787|540790|540791|540795|540800|540801|540804|540805|540806|540809|540811|540813|540814|540815|540816|540819|540820|540821|540823|540825|540826|540827|540828|540829|540830|540831|540832|540834|540835|540836|540837|540838|540840|540841|540841|540842|540843|540844|540845|540846|540847|540848|540849|540850|540851|540852|540853|540854|540855|540856|540857|540858|540859|540860|540862|540864|540866|540869|540871|540872|540873|540874|540875|540876|540878|540882|540883|540885|540886|540887|540889|540891|540892|540893|540895|540897|540898|540899|540901|540903|540904|540905|540906|540907|540908|540909|540910|540911|540912|540913|540914|540915|540916|540917|540918|540919|540920|540921|540922|540923|540924|540925|540926|540927|540928|540929|540930|540931|540932|540933|540934|540935|540936|540937|540938|540940|540941|540942|540944|540946|540948|540949|540950|540951|540952|540953|540954|540955|540956|540958|540960|540961|540962|540963|540964|540965|540966|540967|540968|540969|540970|540971|540972|540973|540974|540975|540976|540977|540978|540979|540980|540981|540982|540983|540984|540985|540987|540988|540989|540991|540992|540993|540994|540995|540996|540997|540998|541000|541005|541007|541010|541012|541013|541014|541017|541018|541020|541022|541023|541024|541025|541026|541027|541028|541029|541030|541031|541032|541034|541035|541036|541037|541039|541043|541044|541045|541046|541047|541048|541049|541050|541051|541053|541055|541056|541057|541059|541060|541061|541062|541063|541064|541065|541066|541067|541069|541070|541071|541073|541074|541076|541077|541079|541080|541081|541082|541083|541084|541085|541086|541087|541088|541089|541090|541092|541093|541094|541095|541096|541097|541099|541101|541104|541105|541106|541107|541108|541109|541110|541111|541112|541115|541125|541127|550865|551507|551509|551512|551514|551516|551620|611974|623245|818169|970674|970675", + "text": "Retinitis pigmentosa 39" + }, + { + "baseId": "17390|17390|17392|17394|17395|17396|17398|19965|19966|20180|20182|21837|24190|26891|27182|39679|52339|52355|52388|52393|52462|52468|52495|52505|55179|55241|55481|55539|57509|57514|57557|57571|57579|57621|57626|57630|57643|57659|57665|57671|57683|57697|57706|57743|57754|57759|57766|57773|57777|57788|84447|137049|172375|172388|172390|172520|172526|172740|172743|172882|172902|172905|172906|172913|175222|175253|175286|175524|176880|176888|178187|178248|178280|193260|194583|194608|194671|195093|195527|226519|226532|228240|228299|228311|228321|229846|229854|230249|231427|237980|259652|260777|266055|266381|405046|408481|421203|425880|431571|431572|431573|431579|431580|431582|431584|431586|431590|431599|431603|431604|431606|431608|431609|431684|431685|431686|431687|431752|431753|431760|431761|431762|431763|431764|431765|431766|431767|431768|431869|431870|431879|431881|488838|489150|494952|494953|494954|494979|496182|540920|541060|541096|546425|551533|551534|576301|612044|620779|622995|624027|654597|655061|918364|918488|969547", + "text": "Usher syndrome" + }, + { + "baseId": "17390|31371|48304|67621|205216|223281|223282|263195|263212|263223|263228|263237|263243|263265|263382|393365|395696|513960|513988|514121|514166|514198|519149|540141|590036|590057|590081|590097", + "text": "13 conditions" + }, + { + "baseId": "17390|18588|20649|20771|22927|22933|22940|24189|24190|24396|28206|31971|32680|76340|98777|102552|104588|104593|104952|104995|105071|105135|105177|105181|105317|105337|105394|105402|105625|105653|105777|237685|259643|287942|321026|417082|431558|431618|431622|431630|431635|431693|431694|431716|431804|431818|431833|439631|439632|488680|513915|513929|513951|514169|528800|544286|551545|551549|623817|623848|623849|623852|623871|623877|623961|623972|624042|794253|794257|794258|794259|794260", + "text": "Macular dystrophy" + }, + { + "baseId": "17390|20883|26654|26656|40161|227365|271052|274282|431612|431625|431682|431683|431739|431779|431780|431781|431782|431783|431784|431829|431832|431837|431840|431841|431842|431843|431844|431845|431846|431847|431848|434600|497708|584920|613267|623838|623880|623949|623969|623970|798325|800589|800590|800643|800644|800645|800646|800647|800648|800654|800655|800656|800657|800658|800659|800660|800706|801496", + "text": "Congenital stationary night blindness" + }, + { + "baseId": "17390|17392|17395|17398|57638|57665|57706|626104|861589", + "text": "USH2A-Related Disorders" + }, + { + "baseId": "17396|19890|29315|32041|32043|32043|32043|32044|32045|32048|32049|32053|32055|32055|32062|32068|32071|34239|38617|53902|53904|53907|53909|53916|53930|57649|67271|76712|168624|169009|169010|169011|169012|169013|169014|181454|191764|223747|247054|263239|268648|354284|354286|354286|354287|354287|354288|354295|360840|360860|360885|360886|360906|361056|361392|362144|362151|406053|492270|513923|513952|513977|514006|514113|514116|514152|514154|514168|581871|581872|581873|581874|581875|581876|581877|581878|581879|581880|581881|610530|610531|624879|800396|800402|800403|800404|800413|801081|966399|983303", + "text": "Hearing impairment" + }, + { + "baseId": "17396|226957|230000|263404|359493|360808|360866|429949|513936|514071|514072|553143", + "text": "Congenital sensorineural hearing impairment" + }, + { + "baseId": "17396|17397|17400|39679|55440|55455|55569|57552|57754|57788|86942|152897|172522|228337|228349|361628|413262|413264|413271|413273|413306|437845|540912|540961|541105|541109|683137|683138|800429|800431|800433|800435|800436|800440|800441|800442|800506|800507|801277|801279|801281|801284|801286|801291|801294|801296|801298|801299|801302|801304|801305|801306|801307|801382|801383|801423|801424|801425|801426|801430|801431", + "text": "Usher syndrome type 2" + }, + { + "baseId": "17397|104561|513994", + "text": "Pigmentary retinopathy" + }, + { + "baseId": "17397|22918|105002", + "text": "Abnormal macular morphology" + }, + { + "baseId": "17397|200983|200986|297377|370448|404617|418811|418812|431877|513934|513935|513966|623968|681597|800988|818725|858652|965405", + "text": "Rod-cone dystrophy" + }, + { + "baseId": "17397|17403|415139|513916|513929", + "text": "Retinal pigment epithelial atrophy" + }, + { + "baseId": "17402", + "text": "Autism 16" + }, + { + "baseId": "17403|96868|96869|96870|176946|177209|177577|177578|190683|190684|195274|238003|250437|250438|264085|286043|286044|286056|366713|431648|431649|431650|512892|513022|513023|513915|513916|541791|629180|707887|719468|747105|762720|781090|787254|790135|799268|799269|818180|825451|825453|825460|850821|952849|952851|977657|977658|977659|977660|977661", + "text": "Retinitis pigmentosa 26" + }, + { + "baseId": "17403|22923|24220|24394|24396|24949|28222|102019|104480|105365|106482|152960|177450|191956|252354|259677|268269|300123|300126|300134|300137|302858|302861|302865|302867|302869|302871|307243|307263|307275|307276|307289|307471|307480|307508|307515|307521|307522|361572|420007|431645|431646|431657|431757|431800|431854|431867|432018|513916|551590|612235|612240|800561|801316|801318|801321|801338|801347|801349|801388|801415|801416|801417|801439|801455", + "text": "Cone dystrophy" + }, + { + "baseId": "17404|17405|17406|17407|17408|17409|17410|17411|17412|212072|212073|212074|221080|221081|221082|276270|276275|276281|276285|276515|276516|276518|276519|276528|276915|276918|276939|276940|276941|277040|277055|277058|277067|277068|390720|447268|514856|515059|515153|535732|550878|556484|556487|581864|626777|626778|626779|626780|862149|862150|862151|862152|862153|862154|862155|862156|862157|862158|862159|862160|862161|862162|862163|862164|862165|862166|862167", + "text": "Hemochromatosis type 2A" + }, + { + "baseId": "17413|433676|433677|433678|700819|700821|723348|789745|789746|799580", + "text": "Agammaglobulinemia 5, autosomal dominant" + }, + { + "baseId": "17414|17416|17417|17418|17419|17420|17421|17422|99244|99245|99248|99249|99251|99252|99258|99259|99260|99262|99266|99268|99269|99273|99276|99279|99282|99292|99295|99297|195594|225801|333630|349906|426317|648139|694431|728206|728207|741915|741916|741918|741919|772710|772711|772713|786202|786206|979983|979984|979985", + "text": "Maple syrup urine disease type 1A" + }, + { + "baseId": "17414|17416|17419|26976|26982|26985|26988|26989|76678|76679|99241|99242|99243|99244|99245|99248|99249|99250|99251|99252|99258|99259|99260|99261|99262|99264|99266|99268|99269|99272|99273|99274|99275|99276|99278|99279|99282|99283|99284|99289|99290|99291|99292|99295|99297|99884|99887|99889|99892|99893|99894|99895|99896|99908|99909|99910|99911|99912|99913|99914|99915|99918|99919|102454|102455|102456|102457|102461|102465|102469|102471|102472|102475|102479|102480|102483|102484|102485|102486|102492|102495|102497|102498|102500|102501|102502|102504|102508|102509|102514|102515|116675|134332|176981|177515|177516|177667|186721|190799|192318|195594|195908|199937|200129|200344|200771|200772|200773|200774|206688|206689|225782|225783|225784|225785|225786|225787|225788|225789|225800|225801|227303|252539|265476|265571|268007|275553|275554|275555|275556|275557|275558|275559|275560|275561|275562|275563|275564|275565|275566|275567|275568|275569|275570|275571|275572|275573|275574|275575|275576|275577|275578|275579|275580|275581|275582|275583|275584|275585|275586|275587|275588|275589|275590|275591|275592|275593|275594|275595|275596|275597|275598|275599|275600|275601|275602|275603|275604|275605|275606|275607|275608|275609|275610|275611|275612|275613|275614|275619|275621|275623|275624|275625|275626|275627|275628|275629|275630|275631|275632|275633|275634|275635|275636|275637|275638|275639|275640|275641|275642|301176|301182|301184|301189|301191|301194|301195|301200|301201|301205|301207|301480|304272|304273|304282|304288|304289|304303|304304|304311|304317|304324|304332|304336|304341|304345|304346|304347|304349|304744|308957|308960|308961|308974|308975|308976|309046|309048|309049|309050|309058|309062|309063|309064|309080|309085|309086|309088|309090|333630|333635|333637|333641|333643|333646|333662|333674|343673|343679|343680|343683|349007|349008|349012|349018|349906|349908|349910|349912|349913|349914|349915|353804|356979|357516|357517|357518|357519|357520|357521|357522|357523|357524|357525|358619|361834|368762|368765|369081|369320|376568|376574|377548|379596|379597|379598|384484|384485|421147|425715|426316|426317|430989|433480|433481|444020|446912|446935|446938|446980|456100|456437|468824|469856|470251|470256|497317|497915|502100|506843|506845|507846|513375|513376|514893|514911|521867|522220|522228|522231|522251|522264|522618|533054|540623|540624|540625|540626|540627|540628|540629|540630|540631|540632|540633|540634|540635|540636|540637|540639|540641|540643|540648|540654|540655|540659|540664|543978|543979|543981|543983|543988|544000|544243|544244|544264|544265|544267|544268|544273|544274|544276|544321|544323|544327|544328|544329|544330|544332|544336|544349|544353|544356|544358|548791|548795|548799|548802|548803|548804|548805|548820|548829|548838|548839|548842|549164|549165|549167|549173|549175|549177|549359|549360|549361|549362|549363|556510|556537|556539|561122|563824|563826|570808|574981|581742|609633|612251|612278|612330|612331|612341|620701|622463|626466|626467|635310|635311|635312|635313|648139|648140|648141|650521|651570|692073|694431|695825|699678|710620|710621|718037|718038|722152|728206|728207|728208|731504|741915|741916|741917|741918|741919|741920|743646|743647|745488|745490|750244|757047|758786|758787|758791|761011|765879|765880|765883|765886|772707|772710|772711|772713|772714|774353|776985|780242|780245|780246|782671|782674|786203|786204|786967|789811|789812|790660|790661|790662|818825|818826|818827|818828|819756|819757|819758|819759|821257|821258|822355|822356|822357|832583|832584|832585|832586|832587|832588|832589|847726|851102|852040|861686|861687|861688|861689|861690|861691|861692|861693|861694|861695|861696|861697|861698|861699|861700|861701|861702|861703|861704|861705|861706|861707|861708|861709|861710|861711|861712|861713|861714|861715|861716|861717|861718|861719|861720|861721|861722|861723|861724|861725|861726|861727|861728|861729|861730|861731|861732|861733|861734|861735|861736|861737|861738|861739|861740|861741|861742|861743|861744|861745|861746|861747|861748|861749|861750|861751|861752|861753|861754|861755|864939|882081|882082|882083|882084|882085|882086|882087|882088|882089|882090|882091|882092|882093|882894|882895|896989|896990|896991|896992|896993|896994|896995|896996|896997|896998|896999|897000|897001|897002|897003|897004|897005|897006|897007|905914|916978|918537|920408|921532|921533|924519|924520|924521|928975|928976|928977|928978|928979|929888|933525|933526|933527|933528|933529|933530|938698|938699|938700|938701|945250|945251|945252|950804|950805|951978|951979|954929|954930|958645|958646|958647|958648|958649|958650|959514|959820|960395|960614|960919|961791|965749|965750|965751|971135|971629|971630|971631|971632|971633|971634|971635|971636|971968|971969|971970|971971|971972|971973|972335|972336|972337|972338|972339", + "text": "Maple syrup urine disease" + }, + { + "baseId": "17416|17417", + "text": "MAPLE SYRUP URINE DISEASE, INTERMEDIATE, TYPE IA" + }, + { + "baseId": "17425|17426|17427|17428|17429|17430|17431|17432|17433|17434|17435|17436|140122|200106|298991|298995|301405|305774|305790|305791|305796|305801|306021|306022|406814|406816|406817|455277|501451|501540|501825|521434|521768|543611|543614|543616|543619|543916|543918|543919|543920|543922|543924|543925|543926|543927|543928|543929|543931|543932|543933|543935|543936|544003|544010|544011|544013|544020|544022|544028|544030|560461|560463|560598|563388|565433|620213|634617|634618|634619|634620|651480|686799|686800|686801|691939|721718|744263|749814|759629|782451|790585|790586|790587|831554|831555|831556|831557|831558|852008|895322|895323|895324|895325|895326|904751|944886|954369|954370|980327", + "text": "Arginase deficiency" + }, + { + "baseId": "17437|17438|17439|17440|17441|17442|34105|34106|98269|98270|98271|98272|98273|98274|98275|98276|140125|177119|195545|200146|200147|200148|200149|200150|200152|200153|200154|200158|200161|226851|226852|226853|226854|226855|226856|226857|226858|226859|226860|226862|228216|252905|273007|303265|303267|303271|303274|306584|306585|306587|306589|306604|306609|306611|311483|311653|359828|369259|369262|369902|371309|371324|371334|415107|415108|457529|457530|457535|457536|487358|502452|522780|523035|523038|523226|523229|523230|544227|544230|544232|544237|544239|544245|544253|544263|544289|544526|544532|544534|544541|544564|544566|544567|544568|544572|544576|544578|544580|544581|544587|544588|544590|544591|544593|544595|544598|544624|544625|544629|544631|544632|544634|544640|544645|544647|544653|544657|544658|561725|562137|564395|636307|636308|636309|636310|636311|636312|651642|651694|651728|651729|651759|679756|692266|692267|692268|692269|692270|692271|695368|722609|722610|736220|736221|736222|744307|750721|766350|766351|766352|766356|775274|775403|779435|782905|782907|782908|782911|819905|819908|819909|819910|819911|821948|833799|833800|833801|833802|833803|833804|833805|833806|833807|851652|898300|898301|898302|898303|898304|898305|898306|898307|898308|898309|898310|898311|898312|898313|898314|900387|921466|933978|940083|945748|945749|955204|955205|955206|959508|972003|972004|972005|972006|972007|972008|978398|978399|978400|978401", + "text": "Argininosuccinate lyase deficiency" + }, + { + "baseId": "17443|17444|17445|17446|17447|17448|17449|17450|17451|17452|17453|17454|17456|24734|24744|181392|187107|249676|249677|249678|270627|271018|273199|273569|278529|278531|278532|278534|278541|278542|278543|278550|278551|278559|278643|278644|278645|278656|278657|278658|278672|278676|278678|279796|279797|279798|279803|279809|279812|279953|279962|279965|279966|279967|361485|361486|425331|439180|440432|440434|447474|447721|485989|491572|515409|515514|556768|609368|619985|619986|619987|619988|627313|627314|627315|627316|627317|690471|690472|690473|690474|690475|690476|707026|718571|718573|794551|823272|823273|863341|863342|863343|863344|863345|863346|863347|863348|863349|863350|863351|863352|863353|863354|863355|863356|863357|863358|863359|863360|863361|863362|863363|863364|863365|863366|865097|865098|918593|930252|939792|952221|959540", + "text": "Parkinson disease 6, autosomal recessive early-onset" + }, + { + "baseId": "17455", + "text": "Parkinson disease 6" + }, + { + "baseId": "17456|22108", + "text": "Parkinson disease, autosomal recessive early-onset, digenic, PINK1/DJ1" + }, + { + "baseId": "17457|17458|17459|17460|17461|17463|17464|17465|39677|111328|134297|134298|134299|134300|134301|140726|140727|140728|140729|172198|194135|194135|199986|199987|199988|199989|199990|199993|206940|236961|237339|237339|250535|250537|250540|250541|264072|265568|284536|284537|284541|284542|284547|284558|284559|284560|284562|284567|284568|284577|284578|285222|285223|285225|285232|285233|285239|285240|285242|285243|285245|285250|285254|285255|285258|287384|287386|287393|287394|287416|287418|287419|287420|287422|287425|287437|287441|287446|287448|287449|287644|287646|287647|287651|287656|287657|287658|287659|366120|366130|366283|366284|366285|366293|366344|366346|366939|366960|404756|405557|421361|443154|443155|450313|450317|450452|450459|450461|450502|450507|450597|481357|486956|499515|499901|499959|499964|517704|517734|517880|541668|541670|541672|541674|541676|541678|541681|541686|541691|541693|541698|541700|541702|541704|541705|541712|541713|541716|541724|541725|541734|541735|541741|541745|541747|541748|541752|541756|541758|541760|541763|541764|541765|541769|541770|541772|541773|541776|541779|541784|541785|541787|541788|541788|541792|541793|541795|541796|541797|541799|541806|541807|541814|541816|541818|541820|541822|541824|541825|541828|541829|541830|541833|541835|541836|541840|541844|541847|541848|541849|541852|541854|541862|541863|541866|541868|541875|541877|541887|557834|557889|557891|559069|560809|560811|560815|560817|560817|560821|560823|620056|620739|620740|621108|629352|629353|629354|629355|629356|629357|629358|629359|650910|650917|650945|650950|655413|655414|655415|655416|658873|686141|691022|691023|691024|691025|691026|707996|719576|719577|743846|743850|747239|747240|747241|759015|759194|762847|762849|762850|762852|762853|762854|762856|762857|774652|781139|787093|790165|790166|790167|790168|790169|790170|790171|819106|825644|825645|825646|825647|825648|825649|825650|825651|825652|825653|825654|825655|825656|825657|825658|825659|825660|850831|861617|861618|883641|883642|883643|883644|883645|883646|883647|883648|883649|883650|883651|883652|883653|883654|883655|883656|883657|883658|883659|883660|883661|883662|883663|883664|883665|883666|883667|883668|883669|883670|887257|887258|887259|887260|887261|906067|916858|922541|922542|931103|931104|931105|931106|931107|939873|942576|942577|942578|942579|942580|952896|952897|952898|952899|952900|952901|952902|952903|952904|952905|952906|952907|952908|952909|971709|971710|971711|971712|971713|971714|971715|971716|971717|971718|971719|971720|971721|971722|971723|971724|971725|971726|971727|971728|971729|971730|971731|971732|971733|971734", + "text": "Congenital hyperammonemia, type I" + }, + { + "baseId": "17462", + "text": "CARBAMOYL PHOSPHATE SYNTHETASE I POLYMORPHISM" + }, + { + "baseId": "17462|194135|237339|404756|541788|560817", + "text": "Pulmonary hypertension, neonatal, susceptibility to" + }, + { + "baseId": "17466|17467|17468|17469|17470|17471|17472|17473|200314|200315|256179|256180|256181|328630|328633|328634|328636|338615|338616|344663|344666|344668|344676|364128|375140|376056|376142|376144|378306|410040|415563|506870|531138|531406|571213|574496|581775|612181|646068|646069|646070|653276|715478|727200|727201|740799|740800|740801|740802|740804|771561|785604|785605|785606|785607|785609|785610|845482|845483|845484|845485|877667|877668|877669|877670|877671|877672|877673|877674|877675|877676|877677|877678|920372|928328|928329|949966|949967|958141|960888|979906|979907|979908", + "text": "Hyperammonemia, type III" + }, + { + "baseId": "17475|17476|17477|17478|17479|17480|217277|316957|316961|316980|316981|316983|316984|316986|316987|316988|316992|316994|316995|317001|317002|317009|317013|324575|324576|324579|324599|324605|324606|324609|324610|324611|324616|324622|324623|324626|324629|324630|324635|324636|324637|324657|324658|324662|324663|324676|330780|330781|330785|330787|330788|330796|330804|330805|330815|330819|330825|330827|330828|330829|330833|330838|330845|330846|332181|332199|332201|332206|332217|332227|332228|332229|332231|332235|332242|332244|332256|332257|332274|332276|332281|332292|332293|332300|332313|620440|620441|620848|725083|738626|753346|769102|869741|869742|869743|869744|869745|869746|869747|869748|869749|869750|869751|869752|869753|869754|869755|869756|869757|869758|869759|869760|869761|869762|869763|872233|872234|872235|872236", + "text": "Fibrosis of extraocular muscles, congenital, 1" + }, + { + "baseId": "17475|17476|17481", + "text": "Fibrosis of extraocular muscles, congenital, 3b" + }, + { + "baseId": "17482|17488|17489|17493", + "text": "Sialidosis type I" + }, + { + "baseId": "17483|17484|17485|17486|17487|17490|17491|17492|17494|17495|17496|17497|215038|215039|273412|299753|299758|299759|299762|299763|302344|302345|302346|302349|302360|302367|306753|306760|307067|307077|307078|307085|549604|620225|721957|721958|858593|895745|895746|895747|895748|895749|895750|895751|895752|895753|895754|895755|895756", + "text": "Sialidosis type 2" + }, + { + "baseId": "17498|142739|142740|188493|188498|188500|188501|189321|189322|189323|241058|372002|398399|398509|510255|526012|526421|551780|564446|625808|639736|639737|652157|680063|689998|838019|838020|838021|926133|926134|935403|947333|947334|956397", + "text": "Long QT syndrome 10" + }, + { + "baseId": "17499|77865", + "text": "Woolly hair, autosomal dominant" + }, + { + "baseId": "17500|17501|17502|17503|17504|17505|17506|17507|98216|98217|133725|133726|133727|140010|140011|140012|140013|140014|177473|190709|192169|194780|196141|203836|203839|203840|203841|203843|203845|203846|203851|203852|203853|203854|203856|203858|203859|203860|203863|203864|205025|215599|237095|243715|257684|265993|267588|267768|273616|274158|338124|338129|338130|347772|351611|352562|352563|377512|377516|377521|377536|378728|378730|378732|378797|378815|379856|379857|403985|411019|411020|426378|446422|470306|470309|471148|471151|471313|471596|471597|471978|534340|534344|534345|534352|534355|534362|534477|534836|534839|572000|572004|573411|574139|574140|575272|575273|614493|614494|649513|649514|649515|649516|649517|649518|649519|649520|649521|649522|649523|649524|649525|649526|653724|653725|684922|731424|788093|792070|792071|798771|821461|821462|821463|821464|849362|849363|849364|849365|849366|849367|849368|849369|849370|849371|849372|849373|851928|852940|891310|891311|891312|891313|891314|891838|891839|891840|929490|929491|929492|929493|929494|929495|939319|939320|939321|939322|939323|940534|951481|951482|951483|951484|951485|951486|959100|960968|971161", + "text": "Adenylosuccinate lyase deficiency" + }, + { + "baseId": "17508|39810|39811|39812|207737|207738|207740|253721|253722|253723|253724|253725|253726|253727|253728|253729|253732|253734|253736|253737|253738|253739|253740|253741|310109|310113|310115|310124|310125|310136|310137|310139|310141|310144|310145|310150|310153|310154|310162|315192|315197|315198|315207|315226|315227|315247|315248|315254|315266|315267|321220|321230|321255|321261|321263|321266|321274|321278|321279|321283|321284|321294|321777|321778|321780|321782|321788|321795|321816|321830|321831|321832|321850|321851|321869|321880|321899|321904|425871|429053|429057|429060|429061|429062|578483|615436|701301|723897|723898|723899|723900|816472|865761|865762|865763|865764|865765|865766|865767|865768|865769|865770|865771|865772|865773|865774|865775|865776|865777|865778|865779|865780|865781|865782|865783|865784|865785|865786|865787|865788|865789|865790|865791|865792|865793|865794|865795|865796|865797|865798|865799|865800|868466|868467|868468|868469|919266|980938", + "text": "Thrombocytopenia 2" + }, + { + "baseId": "17509|142736|150288|188504|188505|188506|188507|254022|258685|398081|461292|510259|564502|564503|639813|639814|639815|684238|759940|926151|947354", + "text": "Brugada syndrome 7" + }, + { + "baseId": "17509|150289|150290|150291", + "text": "Atrial fibrillation, familial, 16" + }, + { + "baseId": "17510|17511|17511|17512|17513|17514|17515|17516|137943|137944|137946|137947|137950|137951|137953|137954|137954|137955|137956|137957|190929|192606|192607|215653|254166|254170|259984|259986|259987|264541|264544|275005|314033|314037|314039|314040|314042|314043|314045|314046|314050|314053|314054|314055|320503|320506|320508|320511|320512|320524|320525|326459|326466|326473|326483|326487|326491|326492|326493|326495|326496|326500|326501|326502|326504|327488|327489|327492|327506|327507|327508|327525|327527|327529|327531|327544|353189|374068|408349|444802|460433|461215|461611|461620|461621|461927|495713|525675|526206|526210|526215|526390|526396|538422|564095|564626|564631|564633|564633|565025|565765|565770|565774|612092|626205|640051|640052|640053|640054|640055|640056|640057|640058|652126|701764|712825|712826|724437|724438|737972|796573|805692|820367|820368|820369|820370|820371|820372|822306|838422|838423|838424|838425|838426|838427|838428|838429|838430|838431|838432|838433|838434|838435|838436|838437|838438|852350|867933|867934|867935|867936|867937|867938|867939|867940|867941|867942|867943|867944|867945|867946|867947|867948|867949|867950|867951|867952|867953|867954|867955|867956|867957|867958|868648|906203|919362|926239|926240|926241|926242|926243|926244|926245|926246|935533|935534|935535|935536|935537|935538|935539|935540|935541|935542|935543|935544|935545|940213|940997|947454|947455|947456|947457|947458|956494|956495|956496|959988|959989|960751|962988|970935|971619|971620|980556", + "text": "Multiple exostoses type 2" + }, + { + "baseId": "17511|17513|137944|137954|137957|326466|538422|564633|626205|626395|805097", + "text": "Seizures, scoliosis, and macrocephaly syndrome" + }, + { + "baseId": "17517|17518|17519|17520|17521|17521|17522|17524|34540|34541|34542|34543|34544|34545|34546|34547|34548|34549|34550|34551|34552|34553|135743|135744|135745|135746|135747|135748|142804|142805|167394|186051|186052|191093|191094|212505|215727|221606|221607|221610|221611|221612|221613|221615|221616|231639|231643|239776|239779|239780|244156|244464|265353|271543|295973|295974|295976|295977|295978|295979|295985|295991|296005|296006|296012|296013|296018|296019|296022|296023|296024|296029|296034|296035|296041|296042|296056|296061|296071|296072|296078|296079|296082|296083|296084|296088|296094|296099|296100|296102|296106|296107|296109|296110|296115|296116|296120|296125|296130|296132|296135|296138|296139|296161|296162|296166|296167|296169|296170|296172|296176|296177|296181|296183|296184|296185|296190|296191|296196|296197|296198|296199|296204|296207|296216|296219|296227|296232|296233|296237|297777|297778|297783|297784|297789|297791|297795|297801|297816|297821|297822|297825|297826|297828|297830|297831|297833|297835|297843|297845|297846|297847|297878|297879|297881|297897|297900|297906|297907|297910|297915|297918|297926|297928|297933|297934|297935|297936|297938|297940|297943|297949|297957|297958|297959|297960|297963|297965|297974|297977|297978|297981|297983|297984|297995|297996|297997|298003|298006|298014|298015|298019|298027|298029|298053|298054|298069|301674|301677|301682|301686|301690|301697|301703|301704|301706|301707|301709|301718|301727|301728|301729|301735|301736|301745|301761|301766|301769|301770|301788|301795|301803|301804|301805|301829|301830|301831|301837|301841|301842|301843|301849|301852|301854|301855|301856|301857|301861|301863|301864|301865|301868|301870|301873|301876|301877|301879|301880|301881|301893|301894|301895|301896|301899|301902|301904|301905|301906|301909|301918|301929|301930|301931|301937|301938|301939|301941|301942|301946|301948|301949|301953|301954|301955|301957|301958|301964|301966|301969|301974|301975|301976|301981|301982|301983|301985|301987|301988|301999|302000|302002|302007|302008|302010|302012|302017|302018|302019|302020|302031|302033|302036|302040|302044|302049|302050|302052|302053|302054|302055|302059|302061|302063|302065|302066|302072|302074|302077|302080|302081|302091|302109|302113|302114|302115|302120|302121|302126|302127|302137|302145|302153|302159|302170|302174|302175|302185|302186|302199|302200|302211|302213|302219|302220|302221|302230|302232|302233|302237|302238|302243|302252|302253|302254|302258|302274|302279|302287|302288|302289|302308|302315|361545|368281|368451|394833|394899|395428|414993|440868|440870|454724|454798|455285|455299|521155|521380|535735|537474|608950|625125|625777|633609|653867|683722|683724|790522|790523|804739|815980|893295|893296|893297|893298|893299|893300|893301|893302|893303|893304|893305|893306|893307|893308|893309|893310|893311|893312|893313|893314|893315|893316|893317|893318|893319|893320|893321|893322|893323|893324|893325|893326|893327|893328|893329|893330|893331|893332|893333|893334|893335|893336|893337|893338|893339|893340|893341|893342|893343|893344|893345|893346|893347|893348|893349|893350|893351|893352|893353|893354|893355|893356|893357|893358|893359|893360|893361|893362|893363|893364|893365|893366|893367|893368|893369|893370|893371|893372|893373|893374|893375|893376|893377|893378|893379|893380|893381|893382|893383|893384|893385|893386|893387|893388|893389|893390|893391|893392|893393|893394|893395|893396|893397|893398|893399|893400|893401|893402|893403|893404|893405|893406|893407|893408|893409|893410|893411|893412|893413|893414|893415|893416|893417|893418|893419|893420|893421|893422|893423|893424|893425|893426|893427|893428|893429|893430|893431|893432|893433|893434|893435|893436|893437|893438|893439|893440|893441|893442|893443|893444|893445|893446|893447|893448|893449|893450|893451|893452|893453|893454|893455|893456|893457|893458|893459|893460|893461|893462|893463|893464|893465|893466|893467|893468|893469|893470|893471|893472|896060|963396", + "text": "Charcot-Marie-Tooth disease, type 4C" + }, + { + "baseId": "17521|17521|17524|34542|135743|135744|135745|135746|135747|135748|142804|142805|167394|186051|186052|191093|191094|212505|221606|221607|221610|221611|221612|221613|221615|221616|231639|231643|239776|239779|239780|244464|265353|271543|295973|295974|295976|295977|295978|295979|295985|295991|296005|296006|296012|296013|296018|296019|296022|296023|296024|296029|296034|296035|296041|296042|296056|296061|296071|296072|296078|296079|296082|296083|296084|296088|296094|296099|296100|296102|296106|296107|296109|296110|296115|296116|296120|296125|296130|296132|296135|296138|296139|296161|296162|296166|296167|296169|296170|296172|296176|296177|296181|296183|296184|296185|296190|296191|296196|296197|296198|296199|296204|296207|296216|296219|296227|296232|296233|296237|297777|297778|297783|297784|297789|297791|297795|297801|297816|297821|297822|297825|297826|297828|297830|297831|297833|297835|297843|297845|297846|297847|297878|297879|297881|297897|297900|297906|297907|297910|297915|297918|297926|297928|297933|297934|297935|297936|297938|297940|297943|297949|297957|297958|297959|297960|297963|297965|297974|297977|297978|297981|297983|297984|297995|297996|297997|298003|298006|298014|298015|298019|298027|298029|298053|298054|298069|301674|301677|301682|301686|301690|301697|301703|301704|301706|301707|301709|301718|301727|301728|301729|301735|301736|301745|301761|301766|301769|301770|301788|301795|301803|301804|301805|301829|301830|301831|301837|301841|301842|301843|301849|301852|301854|301855|301856|301857|301861|301863|301864|301865|301868|301870|301873|301876|301877|301879|301880|301881|301893|301894|301895|301896|301899|301902|301904|301905|301906|301909|301918|301929|301930|301931|301937|301938|301939|301941|301942|301946|301948|301949|301953|301954|301955|301957|301958|301964|301966|301969|301974|301975|301976|301981|301982|301983|301985|301987|301988|301999|302000|302002|302007|302008|302010|302012|302017|302018|302019|302020|302031|302033|302036|302040|302044|302049|302050|302052|302053|302054|302055|302059|302061|302063|302065|302066|302072|302074|302077|302080|302081|302091|302109|302113|302114|302115|302120|302121|302126|302127|302137|302145|302153|302159|302170|302174|302175|302185|302186|302199|302200|302211|302213|302219|302220|302221|302230|302232|302233|302237|302238|302243|302252|302253|302254|302258|302274|302279|302287|302288|302289|302308|302315|361545|368281|368451|394833|394899|395428|440870|454724|454798|455285|455299|521155|521380|537474|633609|683722|683724|893295|893296|893297|893298|893299|893300|893301|893302|893303|893304|893305|893306|893307|893308|893309|893310|893311|893312|893313|893314|893315|893316|893317|893318|893319|893320|893321|893322|893323|893324|893325|893326|893327|893328|893329|893330|893331|893332|893333|893334|893335|893336|893337|893338|893339|893340|893341|893342|893343|893344|893345|893346|893347|893348|893349|893350|893351|893352|893353|893354|893355|893356|893357|893358|893359|893360|893361|893362|893363|893364|893365|893366|893367|893368|893369|893370|893371|893372|893373|893374|893375|893376|893377|893378|893379|893380|893381|893382|893383|893384|893385|893386|893387|893388|893389|893390|893391|893392|893393|893394|893395|893396|893397|893398|893399|893400|893401|893402|893403|893404|893405|893406|893407|893408|893409|893410|893411|893412|893413|893414|893415|893416|893417|893418|893419|893420|893421|893422|893423|893424|893425|893426|893427|893428|893429|893430|893431|893432|893433|893434|893435|893436|893437|893438|893439|893440|893441|893442|893443|893444|893445|893446|893447|893448|893449|893450|893451|893452|893453|893454|893455|893456|893457|893458|893459|893460|893461|893462|893463|893464|893465|893466|893467|893468|893469|893470|893471|893472|896060", + "text": "Mononeuropathy of the median nerve, mild" + }, + { + "baseId": "17521|231645|620191|620192", + "text": "SH3TC2-Related Disorders" + }, + { + "baseId": "17525|17526|21701|390020|453117|453122|453375|453378|453487|453492|453497|453867|453869|461407|461409|461410|461412|461577|461585|461586|461914|461917|461920|461921|461924|462247|486807|486809|519864|519865|519866|519867|519877|520103|520113|520155|520156|520157|526424|526426|526454|526733|526735|526972|526975|526978|526980|526984|526986|559649|559651|559810|559812|559814|561984|563342|564866|566727|567479|570909|570910|570911|614366|632125|632126|632127|632128|632129|632130|632131|632132|632133|632134|632135|632136|632137|632138|640373|640374|640375|640376|640377|640378|640379|640380|640381|640382|640383|640384|640385|640386|640387|640388|640389|651184|652131|652386|709271|709272|713100|713101|713102|713103|713104|720876|720877|720879|724670|724672|730796|748849|748851|748852|752887|764409|768678|779465|779580|781919|784136|787372|829000|829001|829002|829003|829004|829005|829006|829007|829008|829009|829010|829011|829012|829013|829014|829015|838854|838855|838856|838857|838858|838859|838860|838861|838862|838863|838864|838865|838866|838867|838868|838869|851455|923480|923481|923482|926362|926363|926364|932262|932263|932264|932265|935729|935730|935731|935732|940232|941011|943919|943920|943921|943922|943923|943924|943925|943926|947609|947610|947611|947612|947613|953737|956619|956620|956621", + "text": "Herpes simplex encephalitis 1" + }, + { + "baseId": "17527|17528|34494|34496|34497|34498|34499|34500|34501|34502|34503|34504|34505|34506|34507|34508|34509|34510|96882|96883|96884|101791|101792|132680|140408|167979|168711|168713|168714|168715|168716|168717|168719|168720|168721|168722|168723|168724|168725|168726|168727|168728|168729|168730|168731|168733|168735|168736|168739|168741|168742|168745|168746|168747|168750|206557|206558|207602|207605|207608|237196|272767|306596|306607|306620|306622|306624|306625|306627|306629|306632|306641|306642|310800|310802|310810|310816|310818|310819|310822|310826|316199|316208|316209|316213|316215|316216|316218|316219|316222|316239|316241|316247|316250|316260|316263|316526|316540|316541|316542|316556|316557|316558|316561|316563|316568|316573|361515|369685|370187|372098|423859|428896|428897|428903|439881|576128|681826|681827|711733|799562|861595|900943|900944|900945|900946|900947|900948|900949|900950|900951|900952|900953|900954|900955|900956|900957|900958|900959|900960|900961|900962|900963|900964|900965|900966|900967|900968|900969|900970|903303|903304|903305|903306|919182|920260|965976|966037", + "text": "Primary autosomal recessive microcephaly 3" + }, + { + "baseId": "17529|132593|186205|213137|222431|242092|323041|323046|323047|323048|332653|339619|339635|339640|339641|339645|339646|339651|339659|339666|341010|341018|341019|341025|341026|400788|401074|567216|569033|643456|643457|643458|653063|684550|688463|851629|852065|852602|873955|873956|873957|873958|873959|873960|873961|873962|873963|873964|920347|948958", + "text": "Mast syndrome" + }, + { + "baseId": "17530|333464|333466|333480|333487|333488|333492|333494|333497|333498|333501|333504|333507|333508|333513|343497|343499|343521|343524|343525|343528|343529|343536|343537|343540|343541|343542|343550|343551|343552|343553|343561|343562|343567|343568|343574|343575|343579|343581|343583|343585|343589|343590|343595|348830|348831|348841|348842|348847|348849|348850|348852|348855|348859|348860|348867|348869|348870|348871|349813|349816|349817|349820|349821|349824|349825|349828|349829|349832|349833|349836|349837|508925|716422|716423|728162|731277|731279|756994|779999|880459|880460|880461|880752|881961|881962|881963|881964|881965|881966|881967|881968|881969|881970|881971|881972|881973|881974|881975|881976|881977|881978|881979|881980|881981|881982|881983|881984|881985|881986|881987|881988|881989|881990|881991|881992|881993|881994|881995|881996|881997|881998|881999|882000|882001|882002|882003|882004|882005|882006|882007|882008|882009|882010|882011|882882|882883|882884|882885", + "text": "Cerebellar ataxia, Cayman type" + }, + { + "baseId": "17531|17532|17533|17534|17537|17538|17539|17540|17541|17542|193376|227031|259889|259892|442479|486610|626349|790775|790776", + "text": "Multiple exostoses type 1" + }, + { + "baseId": "17534|17537|17539|17540|137936|137939|189033|193376|253019|253021|253022|253025|253026|259888|259889|259890|259892|259893|259895|264357|267038|304056|304061|304074|304076|304082|304083|304087|307646|307648|307650|307652|307655|312690|312691|312694|312700|312702|312704|312706|312708|312718|312800|312813|312814|312815|312822|312823|312834|312836|312845|369682|371474|407298|442479|444204|444205|457175|457181|457792|457804|458170|458176|458178|481799|481801|481803|495227|495365|522969|522976|523252|523255|523454|523456|523468|523472|523515|523597|523599|523605|523611|523612|561912|561914|561920|561922|561927|561934|561939|562339|562347|564592|564596|564600|564605|567304|567333|567348|621280|636560|636561|636562|636563|636564|636565|636566|636567|636568|636569|636570|636571|636572|636573|636574|636575|636576|651736|651738|651739|651749|651757|651769|651841|651844|692342|692343|692344|711249|722811|736408|736409|750888|792536|805558|805562|818382|819939|819940|819941|819942|819943|834067|834068|834069|834070|834071|834072|834073|834074|834075|834076|834077|834078|834079|834080|834081|834082|834083|834084|834085|834086|834087|834088|834089|834090|834091|834092|834093|834094|834095|834096|834097|834098|834099|834100|834101|834102|834103|834104|834105|834106|834107|851171|851173|851175|851177|851668|851670|852412|858616|859645|859647|898774|898775|898776|898777|898778|898779|898780|898781|898782|898783|898784|898785|898786|900435|924988|924989|924990|924991|924992|924993|924994|924995|924996|924997|924998|924999|925000|925001|925002|925003|925004|925005|925006|925007|934071|934072|934073|934074|934075|934076|934077|934078|934079|934080|934081|934082|934083|934084|934085|934086|940091|945827|945828|945829|945830|945831|945832|945833|945834|945835|945836|945837|945838|945839|945840|945841|945842|945843|945844|945845|945846|945847|945848|955281|955282|955283|955284|955285|955286|959874|959875|959876|959877|960641|961025|970129|970872", + "text": "Multiple congenital exostosis" + }, + { + "baseId": "17535|17536|919136|919137|919138", + "text": "Chondrosarcoma" + }, + { + "baseId": "17543|102428|102429|102430|106483|106484|177542|177543|191448|192946|192947|193307|194123|194212|205170|254454|254455|254456|254457|254458|254459|254460|254461|254462|254463|254464|254465|254466|273136|274974|274977|316440|316441|316446|316448|316449|316452|316454|316456|316460|316471|316472|316476|316479|316480|316490|316492|316500|316501|316507|316512|316513|316515|323943|323945|323953|323954|323957|323959|323961|323969|323970|323971|323974|323989|323990|324001|324008|324010|324012|324013|324014|324031|324032|329962|329965|329967|329969|329971|329973|329974|329976|329980|329983|329984|329985|329986|329988|329993|329995|329996|329998|329999|330001|330004|331328|331329|331330|331331|331336|331342|331350|331357|331360|331362|331363|331364|331366|331368|331375|331376|362084|408608|512929|512930|620429|620430|620431|620841|713468|730857|738579|738580|753286|753289|839742|839743|869562|869563|869564|869565|869566|869567|869568|869569|869570|869571|869572|869573|869574|869575|869576|869577|869578|869579|869580|869581|869582|869583|869584|869585|869586|869587|869588|869589|869590|869591|869592|872209|872210|872211|872212|872213|872214|872215|872216|872217|919423", + "text": "Retinal cone dystrophy 4" + }, + { + "baseId": "17545|17548|17549|17554|17555|17557|34015|34016|192231|193418|237540|271211|329700|329713|329720|329727|339968|339992|345697|345701|345702|347053|347078|347087|347103|360346|361229|378744|445882|467419|467433|481471|481472|509041|531737|531801|550632|609024|656468|679837|679838|679839|684705|684706|688825|791822|919767|941195|950261|961541|974499", + "text": "Camptomelic dysplasia" + }, + { + "baseId": "17546|17547|17548|17549|17551|17556|17557|550632|679800", + "text": "Campomelic dysplasia with autosomal sex reversal" + }, + { + "baseId": "17550|17552|17553", + "text": "Acampomelic campomelic dysplasia" + }, + { + "baseId": "17558|205228|213534|213969|214752|225861|237528|264070|264091|359408|366251|405534|424642|427982|431458|448529|450177|450179|450180|450185|450188|450196|450199|450203|450206|450220|450227|450237|450358|450384|450386|450396|450399|450401|450402|450407|450470|450473|450479|450480|450484|450487|512805|517486|517500|517507|517573|517574|517581|517604|517607|517617|517767|517770|517773|536032|557808|557853|557855|557859|558074|559025|559027|559031|559518|559520|575476|575477|575478|575479|575480|575481|575482|575483|578963|578998|611461|614079|629258|629259|629260|629261|629262|629263|629264|629265|629266|629267|629269|629270|629271|629272|629273|650908|653808|654117|678936|691005|697231|719509|733065|747146|747147|747149|747154|759104|762766|762770|762772|762774|790147|790148|798492|798493|798494|816443|818181|819095|821872|821873|821874|821875|821876|825541|825543|825544|825546|825547|825549|825550|825551|825552|918725|918726|918727|920170|922504|922505|922507|931067|931068|931070|942539|942540|942541|942542|942543|942544|942545|952875|961505|961594|961595|964189|965919|971378", + "text": "Chromosome 2q32-q33 deletion syndrome" + }, + { + "baseId": "17558|18456|26794|208522|287840|361119|364179|513958|514147|536136|610529|610563|610564|610565|682749|969772", + "text": "Cleft palate" + }, + { + "baseId": "17559|17560|17562|135250|190659|190660|242026|242027|273695|322019|322021|322022|322029|322031|322035|322040|322042|322046|322056|322057|322058|322060|322065|322069|322070|322074|322077|322078|322092|331296|331297|331299|331305|331314|331317|331318|331319|331323|331325|331337|331338|331339|331344|331352|331359|331367|331369|331370|331373|338137|338152|338156|338158|338159|338164|338174|338175|338176|338180|338181|338187|338191|338192|338209|338212|338223|338224|338226|338231|338234|338251|338254|338255|338263|340041|340045|340047|340048|340051|340064|340065|340076|340077|340080|340081|340084|340087|340088|340093|340096|374432|376300|400223|400522|400535|464795|528585|528610|528613|529025|529027|529030|566862|566884|573112|573131|642988|642989|642990|642991|642992|652370|652376|652635|684530|688385|688386|688387|784850|842078|842079|873073|873074|873075|873076|873077|873078|873079|873080|873081|873082|873083|873084|873085|873086|873087|873088|873089|873090|873091|873092|873093|873094|873095|873096|873097|873098|873099|873100|873101|873102|873103|873104|873105|873106|873107|873108|873109|873110|873111|873112|873113|873114|873115|873116|873117|873118|873119|873120|873121|920340|927255|927256|927257|971007", + "text": "Hereditary spastic paraplegia 6" + }, + { + "baseId": "17563|17564|626009|919214|964324", + "text": "Hypogonadotropic hypogonadism 9 with or without anosmia" + }, + { + "baseId": "17565|361190|433365|433367|446856|508828|508829|508830|508831|508832|512831|512832|512833|581867|609686|609687|622388|711437|736565|779296|799527|799528|800400|919144|919145|981617", + "text": "Slowed nerve conduction velocity, autosomal dominant" + }, + { + "baseId": "17566", + "text": "Osteoarthritis susceptibility 3" + }, + { + "baseId": "17566", + "text": "Lumbar disc degeneration, susceptibility to" + }, + { + "baseId": "17567|17568|17569|17570|106485|193760|193761|213126|213127|255107|255108|255110|255111|255112|321695|321697|321698|321699|330950|330955|337690|337695|337703|337704|337713|337714|337715|339735|339744|409164|429604|528800|528800|792793|872866|872867|872868|872869|872870|872871|872872|872873|872874|872875|872876|872877|872878|872879|906262|962738|962854", + "text": "Bardet-Biedl syndrome 8" + }, + { + "baseId": "17569", + "text": "Postaxial foot polydactyly" + }, + { + "baseId": "17569|203766|225810|225811|225812|264781|404617|418811|418812|495314|514021|514169|514201|581713|678050|801160|858423|858424|921259|921448", + "text": "Intellectual disability, moderate" + }, + { + "baseId": "17569|181431", + "text": "Truncal obesity" + }, + { + "baseId": "17569|17571|236865|409164|528800|792793|919549", + "text": "Retinitis pigmentosa 51" + }, + { + "baseId": "17572|17573", + "text": "Pseudoxanthoma elasticum, modifier of severity of" + }, + { + "baseId": "17572|204220|204221|538930|792806|963075", + "text": "Spondyloocular syndrome, autosomal recessive" + }, + { + "baseId": "17574|39658|39659|205671|205672|207011|221315|221316|221319|238964|238966|238969|250750|250752|250753|286877|286883|287620|287621|287622|287624|287626|290403|290416|393035|393060|393070|393231|393432|451729|518635|614248|614249|799093|799094|826856|885234|885235|885236|885237|885238|885239|885240|885241|885242|885243|885244|885245|885246|885247|885248|885249|885250|885251|918140|918141", + "text": "Fanconi anemia, complementation group L" + }, + { + "baseId": "17575|17576|142555|142556|142557|142560|142561|142562|209411|211583|211585|211588|211592|211593|211595|211596|223670|316359|316361|316368|316369|316377|323782|323783|323785|323787|323788|329881|329891|329892|329899|331160|331182|331184|331188|331191|331192|372891|374660|389202|503924|578498|609823|679710|713438|738546|753202|768943|768946|768947|768948|768949|768950|768951|784306|869538|869539|869540|869541|869542|869543|869544|869545|869546|869547|869548|869549|869550|869551|869552|872208", + "text": "Myopathy, lactic acidosis, and sideroblastic anemia 1" + }, + { + "baseId": "17577|17577|17578|17578|17579|17579|17581|17581|17582|17583|17584|17586|17586|17587|17587|17588|17588|17589|17589|17590|17591|17592|17593|17595|17596|45159|45160|45160|45161|45161|45162|45163|45164|45165|45166|45167|45168|45169|45169|45170|45171|45172|45173|45174|45175|45176|45177|45178|45178|70784|70785|70786|70787|70788|70789|70790|70791|70792|102885|103317|103318|103319|103320|103321|103322|103323|103324|103325|103326|103327|103328|103329|103330|103331|103332|103333|103333|103334|103335|103336|103337|103338|103339|103340|103341|103342|103343|103344|103345|103346|103347|103348|103349|103350|103351|103352|103353|103354|103355|103356|103357|103358|103359|103359|103360|103361|103362|103363|103364|103365|103366|103367|103368|103369|103370|103370|103371|103372|103373|103374|103375|103376|103377|103378|103379|103381|103382|103383|103384|103385|103386|103387|103388|103389|103390|103391|103392|103393|103394|103395|103396|103397|103398|103399|103400|103401|103402|103403|103404|103405|103406|103407|103407|103408|103409|103410|103411|103412|103413|103414|103415|103416|103417|103418|103419|103420|103421|103422|103423|103424|103425|103426|103427|103428|103429|103429|103430|103431|103432|103433|103434|103435|103436|103437|103438|103439|103440|103440|103441|103442|103443|103444|103445|103446|103447|103448|103449|103449|103784|136621|136622|136623|141909|141910|141911|170203|170212|170936|190090|192212|225792|225793|225794|231932|231934|231937|231938|231944|231947|231950|231951|231955|231956|247431|255706|264707|264709|267205|274103|325214|325218|325222|325223|325229|325234|325237|325247|325253|334864|334876|334878|334885|334887|334896|334898|334902|334908|341340|341344|341346|341347|341348|341349|341352|341356|341358|342837|342840|342842|342854|342855|342857|342859|342860|342863|354189|377549|377552|433685|438802|439142|445574|465658|465666|466376|466378|466403|466405|466408|466414|466416|466641|487783|487887|487909|487914|505624|505624|529935|530013|530020|530022|530253|530255|530454|530455|530457|530464|568107|568109|570143|570263|570264|570266|570272|570273|610025|614423|620539|621536|621542|644624|644625|644626|644627|644628|644629|644630|644630|644631|644632|644633|644634|644635|644636|644637|644638|644639|644640|656373|693851|695692|740173|740174|755155|755156|755157|755159|755160|770887|770888|770890|770891|770892|770894|770895|785270|785271|791588|791589|791590|791591|791592|791593|791594|791595|791596|791597|791598|791599|791600|791601|791602|791603|791604|799955|816337|820826|843777|843778|843779|843780|843781|843782|843783|843784|843785|843786|843787|843788|843789|843790|843791|843792|843793|843794|875193|875194|875195|875196|875197|875198|875199|875200|875201|875202|875203|875204|875205|875206|875207|875208|875209|875210|875211|875212|875213|875214|875215|875216|906319|906320|927786|927787|927788|927789|927790|927791|937418|937419|937420|937421|937422|937423|937424|941134|949377|949378|949379|957740|957741|957742|957743|957744|957745|957746|957747|957748|975887|979763|979764|979765|979766|979767", + "text": "Familial Mediterranean fever" + }, + { + "baseId": "17577|19210|23852|30440|30441|30475|30477|30486|30489|30493|30496|30508|31397|44949|46491|46545|46655|46771|48386|65797|66620|66924|71274|99659|102757|168250|181388|181429|195294|208964|210535|210979|214099|229443|263189|263222|263229|263230|263235|263287|263308|263392|263400|360834|360847|360848|360869|360902|360932|360958|361044|361096|377906|380597|426433|430720|472097|511931|514001|514046|514098|514157|514171|514189|514191|514202|514203|514207|534684|568718|580883|590050|590062|614501|614502|614503|614504|672020|679684|919573", + "text": "9 conditions" + }, + { + "baseId": "17577|17577|17578|17578|17579|17579|17581|17581|17582|17586|17587|17588|17589|17589|17595|17596|45160|45161|45169|45178|45178|50062|103333|103359|103370|103406|103407|103429|103440|103449|103784|465667|487887|505624|614423|644625|644630|816337|843784|975887", + "text": "Familial mediterranean fever, autosomal dominant" + }, + { + "baseId": "17577|45168|45169|103433|905840", + "text": "Acute febrile neutrophilic dermatosis" + }, + { + "baseId": "17586|23034|54002|150126|150127|150128|150129|150130|176733|229300|489148|536059|540582|551288|805098|905852|905853|905854|966698|966714|966715|966716|966717|966718|966719|966723|966724|966735|966737|980653|980681|980690|983684|983686|983687", + "text": "Heart, malformation of" + }, + { + "baseId": "17586|58297|514037|611473|677257", + "text": "Renal insufficiency" + }, + { + "baseId": "17597|17598|17599|17600|17601|17602|101982|101986|101987|177137|196065|215439|247064|268878|268878|315260|315262|315263|315264|315271|322096|322115|328185|328186|328189|328190|329454|329464|329466|329468|329469|329482|374348|482005|526783|640469|687825|693115|724751|724752|738309|738311|752993|839087|851461|868843|868844|868845|868846|868847|868848|868849|919394|935820|947704", + "text": "ALG8-CDG" + }, + { + "baseId": "17603|17604|17605|17606|17607|17608|17609|17610|71164|71165|71166|71167|71168|71169|71171|71172|71173|71174|71175|71176|71177|71178|71179|71180|71181|71182|71183|71184|71185|71186|101295|101297|134227|134228|134229|134230|134231|134232|134233|140496|140497|177145|181190|186913|188052|190506|193599|198634|202762|202766|202767|202773|202775|202776|202777|202778|202781|202782|202783|202784|202785|202787|202792|226244|241763|269249|320006|320007|320010|320014|320016|328567|328568|328571|328572|328578|335053|335056|336965|336972|358244|358245|358246|358247|358248|358249|360008|399578|399590|409046|429511|445158|445159|463956|505225|513214|536865|547098|547116|547117|547122|547256|547258|547268|547271|547412|547413|547417|547424|547426|547428|547430|547765|547768|547772|547777|547793|547795|566180|567743|568635|572584|612303|622421|623159|626224|642059|642060|642064|688184|693396|801722|841007|871476|871477|871478|871479|871480|871481|871482|871483|871484|871485|871486|871487|871488|871489|871490|871491|871492|871493|917517|979418|979419|979420|979421|979422", + "text": "Neuronal ceroid lipofuscinosis 5" + }, + { + "baseId": "17603|17604|17605|17606|17608|17680|17681|17682|17683|17684|17686|17688|17841|17843|18595|18596|19116|19121|19122|19125|23938|23943|39850|70821|70832|70838|70847|70849|70882|70883|70886|70888|70892|70897|70901|70907|70908|70924|70926|70927|70928|70929|70931|70932|71167|71168|71169|71172|71173|71174|71178|71179|71182|71183|71343|71354|71356|78985|78987|79626|79629|79630|79633|79637|79640|94620|98791|98792|99410|101295|101297|101820|106597|106601|134224|134226|134227|134228|134229|134230|134231|134232|134233|134234|134235|134237|134318|134320|134322|134325|136051|136052|136053|136055|136056|140483|140485|140486|140487|140488|140489|140491|140492|140493|140494|140495|140496|140497|140499|140500|140501|140502|140503|140504|140505|140506|140509|140510|140742|140743|140744|140745|140748|140753|140754|140756|140760|140763|140764|141401|141402|141404|141405|141406|141407|141408|141409|141410|142496|177145|186834|186913|188052|190506|190553|190554|190746|190778|190779|191332|191640|192317|192505|192506|192509|193642|193654|193688|194476|194825|194871|194872|194873|195236|195237|195734|195886|198634|202199|202200|202201|202202|202206|202207|202208|202209|202210|202211|202212|202213|202215|202216|202217|202218|202219|202524|202527|202530|202531|202532|202533|202536|202537|202538|202539|202545|202548|202549|202550|202552|202553|202554|202555|202559|202562|202564|202566|202567|202568|202570|202573|202576|202577|202578|202579|202580|202581|202582|202583|202584|202586|202587|202589|202591|202592|202593|202594|202596|202600|202601|202603|202604|202605|202607|202765|202766|202767|202768|202772|202773|202774|202775|202776|202777|202778|202779|202780|202781|202782|202783|202784|202785|202786|202787|202788|202792|202867|202868|202869|202870|202871|202872|202880|202884|202885|202886|202887|202889|202890|202891|202892|202893|202895|202896|203257|203258|203259|203260|203262|203263|203264|203265|203267|203269|203271|203272|203276|203277|203279|203280|203281|203283|203285|203286|203288|203289|203290|203812|203814|203818|203819|203823|203824|214538|240333|240336|241763|242108|243591|253088|264493|264631|266311|266966|268009|269249|270292|271722|271803|271938|272553|275228|321424|323221|323222|323226|323230|323231|323234|323235|323241|323244|323245|323246|324886|324887|324895|324896|325731|325740|326749|328567|328568|328621|328622|332879|332880|332883|332897|332907|332920|332929|334506|336301|336304|339787|339790|339792|339803|339805|341217|341222|341223|341230|341238|342620|358022|358025|358366|360008|360108|360170|369455|369885|369889|370191|371317|371321|371609|371613|371752|371753|371761|371762|372095|372099|372307|372309|372317|373662|373960|373976|373988|374201|374204|374288|374313|374316|375036|375314|375704|376610|376614|377468|378350|378458|378464|378469|396146|396496|398100|398101|398103|398104|398107|398109|398118|398339|398346|398420|398431|398443|398765|398769|398896|399578|399584|399586|399590|400047|400215|400469|400474|400810|400811|401126|401154|401157|401607|401610|401613|404151|404212|404221|407350|407352|407354|407358|408313|408425|409044|409046|409049|409051|409329|409332|409584|409585|409587|409588|409590|409596|409597|409599|415291|426118|426357|426358|429783|429784|441433|444258|444260|444261|444765|445159|445160|445413|445556|457688|458115|458287|458349|458651|458656|460927|460931|461008|461011|461015|461020|461305|461368|461369|461374|461376|461381|461537|461540|461550|461750|461896|462230|462234|462236|462238|462967|463376|463952|463956|464479|464484|464490|464820|465129|465132|465133|465267|465268|465363|465593|466315|466344|466591|466592|466595|466598|466600|480573|487317|488832|488903|489664|489911|490688|493093|493533|493878|503201|503368|503378|503920|504314|505226|505321|505351|505547|506268|506282|507329|512151|513349|523398|523402|523404|523688|523691|523713|523960|523977|525993|526001|526006|526045|526047|526050|526055|526412|526416|526439|526440|526441|526445|526446|526486|526496|526497|526500|526704|526709|526716|526950|527817|527830|527832|527834|528167|528169|528172|528326|528328|529091|529094|529610|529613|529847|529889|530205|530213|530398|533721|533722|534268|534271|534288|544753|546140|546434|546449|546576|547505|547772|548148|548482|549647|549725|549813|551717|562256|562782|564507|564511|564852|564960|564961|566073|566075|566091|566093|566180|567238|567463|567465|567467|567488|567743|567746|567750|568056|568059|568061|568635|568636|569102|569106|569589|570070|570079|570392|570393|570405|570408|570870|570883|571410|571411|572584|572590|572591|572846|572984|572985|573496|573498|573504|573657|573658|573659|573670|573999|574000|574004|574005|574007|577538|577539|579374|579726|579834|579942|580070|580277|586356|590164|622421|637011|637012|637013|637014|637015|637016|637017|637018|639834|639835|639836|639837|639838|639839|639840|639841|639842|639843|639844|640340|640341|640342|640343|640344|640345|640346|640347|640348|640349|640350|640351|640352|640353|640354|640355|640356|640357|640358|642056|642057|642058|642059|642060|642061|642062|642063|642064|643513|643514|643515|643516|643517|643518|643519|644532|644533|644534|644535|644536|644537|644538|644539|644540|644541|644542|648847|648848|651761|652230|652513|652518|652535|652537|652618|652835|652837|653006|653009|653255|656048|656300|684420|685407|685408|685417|685418|687252|687253|687254|687255|687256|687258|687724|687814|687815|687816|688180|688183|688184|688478|688479|688480|688481|688560|688561|689227|690010|690137|690138|692475|693732|693735|693832|693833|714843|714844|724338|724618|731059|740080|740081|753887|754640|754642|766704|766705|766707|768365|768621|770298|770300|770820|770822|770825|775719|775721|776179|776403|783063|783965|784094|784095|784630|784631|784632|784989|784990|785245|785246|786465|788006|790791|791155|791481|791482|791579|798012|801722|816322|820432|820433|820589|820590|820591|820731|820815|820816|820817|820818|820819|821346|822174|822175|834527|834528|834529|834530|834531|834532|834533|834534|834535|834536|834537|834538|834539|834540|834541|834542|838146|838147|838148|838149|838150|838151|838152|838153|838154|838155|838156|838157|838158|838786|838787|838788|838789|838790|838791|838792|838793|838794|838795|838796|838797|838798|838799|838800|838801|838802|838803|838804|841005|841006|841007|841008|841009|841010|841011|841012|842627|842628|842629|842630|842631|842632|842633|842634|842635|842636|842637|842638|842639|843691|843692|843693|843694|843695|843696|843697|843698|843699|843700|843701|843702|843703|843704|848596|848597|848598|848599|851904|851981|852067|852105|852607|852622|852652|852817|874039|874040|874041|874042|874043|874044|874045|874046|874047|874048|874049|874050|874051|874052|874053|874054|874055|874056|874057|874058|874059|876560|876561|876562|925135|925136|925137|925138|925139|925140|926160|926161|926162|926163|926347|926348|926349|926350|926351|926949|926950|926951|927406|927407|927408|927757|927758|927759|927760|929264|929265|934229|934230|934231|934232|935697|935698|935699|935700|935701|935702|935703|935704|935705|936487|936488|936489|936490|936491|937035|937036|937037|937038|937398|937399|939054|940357|941006|941007|941008|941055|941133|945996|945997|945998|945999|947371|947372|947373|947374|947375|947376|947586|947587|947588|947589|947590|947591|947592|947593|948418|948419|948420|948986|948987|948988|949345|949346|949347|949348|949349|949350|951171|951172|955378|955379|955380|955381|955382|956437|956438|956439|956591|956592|956593|956594|956595|956596|956597|957133|957134|957135|957136|957137|957138|957139|957140|957479|957480|957481|957482|957717|957718|957719|957720|957721|957722|957723|957724|960005|960006|960007|960151|960152|960754|960755|960756|963298", + "text": "Neuronal ceroid lipofuscinosis" + }, + { + "baseId": "17611|133551|133552|133553|133554|133556|133558|133568|133570|133571|133572|136494|139712|139723|139726|180159|180161|212379|212380|292715|292720|292725|292728|292729|292731|292738|292739|292746|292747|292761|292763|292773|294083|294084|294085|294087|294105|294106|294117|294118|294119|294121|294124|294126|297523|297524|297542|297544|297545|297548|297571|297574|297575|297578|297579|297586|297623|297624|297625|297634|297635|297636|297638|297657|297658|297659|297662|297665|297668|297683|389590|389616|795558|890388|890389|890390|890391|890392|890393|890394|890395|890396|890397|890398|890399|890400|890401|890402|890403|890404|890405|890406|890407|890408|890409|890410|890411|890412|890413|890414|890415|890416|890417|890418|890419|890420|890421|890422|891769|891770", + "text": "Pancreatic cancer 1" + }, + { + "baseId": "17611|23312|23582|23584|27386|27388|27394|27395|27397|27398|27403|27404|27405|27408|27409|27422|27641|27642|27645|27652|28691|28692|28694|28695|28698|30972|30973|32616|32619|32622|32626|36171|36173|44227|48304|54284|133271|133272|133274|133276|133277|133558|133560|133563|133566|136494|139098|139706|139707|139708|139709|139710|139711|139712|139713|139714|139715|139716|139717|139718|139719|139720|139721|139722|139723|139724|139725|139726|139727|150515|150535|150855|151476|151595|151897|151955|152428|166218|171614|173901|176503|179419|180160|180161|180995|181000|181001|181005|185345|185350|185366|185367|185371|185375|185394|186022|186023|186024|206650|212342|212358|212359|212360|212361|212362|212363|212364|212365|212366|212368|212370|212371|212372|212373|212374|212376|212377|212378|212379|212380|212381|213392|213398|213402|213943|221435|221436|221438|221439|221440|221441|221443|221446|221447|221448|221449|221451|221452|221453|221454|221455|221456|221457|222738|232035|233761|236459|236461|236462|236463|236468|236469|236477|236479|236481|239343|239344|239346|239347|239348|239349|239350|239351|239352|242978|242980|245074|260191|260192|292762|297542|297544|362775|362873|362894|362895|362896|362904|362905|362912|363110|363186|363201|363258|363259|363260|363263|363264|363270|363271|363272|363273|363322|363323|363328|363330|363331|363339|363360|363364|363365|363366|363379|363380|363381|363407|363408|363412|363416|363417|363418|363419|363420|363438|363439|363440|363441|363442|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363453|363454|363455|363456|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363494|363495|363496|363497|363498|363499|363500|363501|363502|363503|363504|363505|363506|363507|363508|363512|363513|363514|363515|363518|363519|363520|363521|363522|363523|363524|363525|363528|363529|363530|363531|363532|363533|363534|363535|363538|363539|363540|363541|363542|363543|363544|363545|363546|363547|363548|363549|363550|363551|363552|363553|363554|363555|363556|363557|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|363572|363573|393886|393888|393890|393891|393899|393900|393906|394142|394145|394309|394310|394313|394314|453038|453041|453043|453045|453322|453327|453330|453332|453417|453418|453419|453424|453425|453820|453824|519804|519808|519810|519814|519833|519838|519842|520074|520107|520111|520114|520122|520137|520138|520145|559627|559629|559631|559633|559784|559786|559788|561967|561969|561970|563575|563587|632077|632078|632079|632080|632081|632082|632083|632084|632085|632086|632087|686509|686510|686513|691529|691530|720833|819463|819464|828942|828943|828944|828945|828946|828947|828948|828949|828950|828951|828952|828953|828954|828955|828956|890412|923460|923461|923462|923463|923464|923465|932247|932248|932249|932250|943892|943893|943894|943895|943896|943897|943898|943899|953723", + "text": "Pancreatic adenocarcinoma" + }, + { + "baseId": "17612", + "text": "APOLIPOPROTEIN C-II (AFRICAN)" + }, + { + "baseId": "17612|17613|17614|17615|17616|17617|17618|17619|17620|17621|17622|17623|333740|333752|343711|343712|343714|343716|349061|349063|349064|349069|349950|349951|349953|349956|622464|779910|882114|882115|882116|882117|882118|882905", + "text": "Apolipoprotein C2 deficiency" + }, + { + "baseId": "17613", + "text": "APOLIPOPROTEIN C-II (PADOVA)" + }, + { + "baseId": "17614", + "text": "APOLIPOPROTEIN C-II (ST. MICHAEL)" + }, + { + "baseId": "17615", + "text": "APOLIPOPROTEIN C-II (TORONTO)" + }, + { + "baseId": "17616", + "text": "APOLIPOPROTEIN C-II (HAMBURG)" + }, + { + "baseId": "17617", + "text": "APOLIPOPROTEIN C-II (NIJMEGEN)" + }, + { + "baseId": "17618", + "text": "APOLIPOPROTEIN C-II (PARIS)" + }, + { + "baseId": "17619", + "text": "APOLIPOPROTEIN C-II (BARI)" + }, + { + "baseId": "17620", + "text": "Apolipoprotein c-ii variant" + }, + { + "baseId": "17621", + "text": "APOLIPOPROTEIN C-II (SAN FRANCISCO)" + }, + { + "baseId": "17622", + "text": "APOLIPOPROTEIN C-II (WAKAYAMA)" + }, + { + "baseId": "17623", + "text": "APOLIPOPROTEIN C-II (AUCKLAND)" + }, + { + "baseId": "17625|17626|17627|17628|17629|17630|17631", + "text": "Epilepsy, progressive myoclonic 2b" + }, + { + "baseId": "17625|17626|17627|17630|18137|18138|18139|18140|18141|18145|18146|101205|134449|134451|135212|135213|142225|172293|172294|176972|190490|190682|201931|201943|201949|201950|201951|201953|201954|201956|201957|201958|201959|201960|201961|201965|201968|264259|273612|299623|299625|299626|299631|302191|302192|302197|302202|302206|302222|302223|306566|306575|306576|306579|306580|306581|306586|306593|306594|306603|306608|306610|306863|306873|306876|306878|370201|395081|395082|395084|395687|415037|443935|455536|455545|455553|456282|501254|522169|522178|522182|560505|560662|560664|560666|563488|565537|579396|614298|634776|634777|634778|634779|634780|634781|634782|655727|686817|735549|765596|801990|802161|831750|831751|831752|831753|831754|831755|831756|831757|831758|895671|895672|895673|895674|895675|895676|895677|895678|895679|919001|924305|924306|924307|924308|933245|933246|933247|933248|933249|933250|933251|933252|933253|933254|944952|944953|954405", + "text": "Lafora disease" + }, + { + "baseId": "17632|17633|17634|17635|17636", + "text": "Glutaric acidemia IIA" + }, + { + "baseId": "17633|27067|27069|31755|40255|40285|40286|98351|98352|99920|100971|100972|100975|140929|140935|140936|140937|140938|140939|177021|177354|177696|191220|192383|196253|200059|200062|200064|200068|200076|200077|200078|200293|200295|200297|200298|200299|200346|200347|200348|200349|200350|200354|200356|200358|226510|226511|226512|226513|226514|226515|226516|226517|226518|237327|237375|259784|260080|268471|292678|292681|292682|294047|294048|297464|297466|297470|297510|297530|297534|323399|333069|333071|333074|333075|333078|333079|339909|339913|341322|341328|361463|367910|367969|369049|373685|406420|414967|422046|425603|453321|453411|453416|453813|453818|453819|465316|465428|469260|470224|471276|500502|500778|501089|513050|519800|519831|520065|520070|520105|533393|533437|559625|563558|563564|563567|563571|569153|569599|569601|572774|581772|581777|582813|620157|620774|632064|632065|632066|632067|632068|632069|632070|632071|632072|632073|632074|632075|643549|643550|643551|643552|643553|648437|651098|651162|651271|652432|660242|689155|714618|716648|720813|728375|730269|734506|764366|764367|764369|764370|764372|764373|764374|778348|781892|781893|781897|785025|785026|785027|785028|787424|787905|788172|788891|788931|789852|790448|790449|790450|790451|790452|820737|828914|828915|828916|828917|828918|828919|828920|828921|828922|828923|828924|828925|828926|828927|828928|842710|842711|848028|850972|852609|874187|874188|874189|874190|874191|874192|876575|876576|876577|890350|890351|890352|890353|890354|890355|890356|890357|890358|890359|890360|890361|890362|891761|891762|891763|906264|919598|923452|923453|923454|923455|927426|932233|932234|932235|938841|939961|940776|943878|943879|943880|943881|953708|953709|953710|953711|953712|953713|953714|957513|958725|958726|959715|978036|978037|978038|978039|978040|978041|978042|978043|978044|978045|978046|978047|978048|978049|978050|978051|978052|978053|978054|978055|978056|978057|978058|979670|979671|979672|979673|979674|979675|979676|979677|979678|979679|979680", + "text": "Multiple acyl-CoA dehydrogenase deficiency" + }, + { + "baseId": "17637|17638|17639|17640|17641|17642|17643|48108|205741|205742|260936|264207|294464|294465|294480|294482|294483|294484|294488|294490|294491|295946|295947|295968|295969|295972|295975|295983|295992|295993|295994|299686|299693|299697|299699|299700|299701|299703|299704|299709|299713|299718|299724|299726|299727|406466|440043|612351|734738|764624|792751|801535|892339|892340|892341|892342|892343|892344|892345|892346|892347|892348|892349|892350|892351|892352|892353|892354|892355|892356|892357|892358|892359|892360|892361|892362|892363|892364|892365|892366|892367|892368|892369|892370|892371|892372|892373|892374|892375|892376|892377|892378|892379|892380|892381|892382|892383|892384|892385|892386|892387|892388|892389|892390|892391|892392|892393|892394|892395|892396|892397|892398|892399|892400|892401|892402|892403|892404|892405|892406|892407|892408|892409|892410|892411|892412|892413|892414|892415|892416|892417|892418|892419|892420|892421|892422|892423|892424|892425|892426|892427|892428|892429|892430|892431|892432|892433|892434|892435|892436|892437|892438|892439|892440|892441|892442|892443|892444|892445|892446|896003|896004|896005|963134|970211|970212", + "text": "Hyaline fibromatosis syndrome" + }, + { + "baseId": "17644|17645|17646|17647|17648|17649|17650|17651|17652|17653|17654|17655|186961|186962|186963|186964|186965|186966|186967|194782|195198|237185|327991|327995|337825|337828|337832|344085|344086|345473|358411|358412|358413|358414|358415|358416|358417|358418|358419|358420|358421|358422|358423|358424|360237|378116|401919|422161|481084|548018|548020|548022|548032|548037|548040|548041|548044|548045|548046|548049|548050|548052|548054|548066|548294|548299|548311|548314|548316|548322|548327|548771|548773|548779|548782|548787|548806|570780|620582|645790|645791|645792|652804|685056|685057|685061|685063|689587|690165|774284|786943|801730|801731|801732|802216|850362|850364|850365|852848|858699|861141|903659|929848|959384|961033|972270|979887|979888", + "text": "Spongy degeneration of central nervous system" + }, + { + "baseId": "17644|17646|17647|17648|186962|186963|186967|358413|487928|548018|548044|917378", + "text": "Canavan Disease, Familial Form" + }, + { + "baseId": "17655", + "text": "Canavan disease, mild" + }, + { + "baseId": "17656|17657|254428|254429|316163|316164|316165|316167|316168|316170|316172|323445|323447|323449|323450|329662|329667|329668|329670|329674|330835|330842|330848|330851|330858|374613|444932|462442|551463|551464|566364|566364|869371|869372|869373|869374|869375|869376|869377|965284", + "text": "Distal hereditary motor neuronopathy type 2A" + }, + { + "baseId": "17657|17658|212989|212990|241247|241248|254428|254429|316163|316164|316165|316167|316168|316170|316172|323445|323447|323449|323450|329662|329667|329668|329670|329674|330835|330842|330848|330851|330858|374613|444932|461647|462203|462440|462442|526934|527263|551465|565079|565081|565082|566364|566364|566365|566369|566377|566378|566384|567685|571293|576150|640649|640650|640651|640652|640653|684305|793410|799667|839345|839346|839347|839348|839349|839350|839351|869371|869372|869373|869374|869375|869376|869377|920312|926474|926475|926476|935928|935929|947794|947795|947796|956754|956755|956756|956757|961303", + "text": "Charcot-Marie-Tooth disease, type 2L" + }, + { + "baseId": "17659|17660", + "text": "Ezetimibe response" + }, + { + "baseId": "17661|17662|17663|17664|17665|17666|17667|17668|17669|17670|101979|101980|196327|215309|237214|251769|251775|251778|265853|270136|270774|271094|295556|295557|295562|295569|297318|297331|297332|297339|301162|301168|301169|301174|301175|301190|301347|301359|301363|301376|301381|301418|301422|301425|301430|364112|369638|440859|440866|454689|500679|584198|620185|620186|633466|709647|749248|790517|830343|830344|830348|893063|893064|893065|893066|893067|893068|893069|893070|893075|896042|932726|961647|970798", + "text": "Marinesco-Sj\u00f6gren syndrome" + }, + { + "baseId": "17671|17672|17673|17679|102402|102403|102404|102406|102407|177087|177218|177881|177886|186010|190668|192584|192945|193157|195042|207045|212289|215270|221365|221366|239108|250930|250931|250936|250946|250950|250953|268559|270942|273792|275290|275431|288781|288784|288792|288793|288802|288805|288807|288813|288820|289574|289575|289585|289586|289587|289588|289589|289590|289597|292578|292579|292580|292581|292585|292755|292758|292781|292783|292785|292787|292788|292790|292793|292795|292795|292798|368222|390680|424264|443365|489298|492320|518899|558822|582572|583256|620105|620753|622874|630956|683540|788760|800916|800917|827553|888002|888003|888004|888005|888006|888007|888008|888009|888010|888011|888012|888013|888014|888015|888016|888017|891569|891570|891571|906236|962695|962696|962697", + "text": "Nephronophthisis 3" + }, + { + "baseId": "17673|17675|102402|102403|102404|102406|102407|177087|177218|177881|177886|186010|190668|192945|193157|195042|207045|212289|215270|221365|221366|239108|250930|250931|250936|250946|250950|250953|268559|270942|273792|275290|275431|288781|288784|288792|288793|288802|288805|288807|288813|288820|289574|289575|289585|289586|289587|289588|289589|289590|289597|292578|292579|292580|292581|292585|292755|292758|292781|292783|292785|292787|292788|292790|292793|292795|292795|292798|368222|443365|489298|492320|518899|583256|681804|681805|683540|827553|888002|888003|888004|888005|888006|888007|888008|888009|888010|888011|888012|888013|888014|888015|888016|888017|891569|891570|891571|920187", + "text": "Meckel syndrome type 7" + }, + { + "baseId": "17676|17677|17678|102402|102403|102404|102406|102407|177087|177218|177881|177886|186010|190668|192945|193157|195042|207045|212289|215270|221365|221366|239108|250930|250931|250936|250938|250946|250950|250953|268559|268882|270942|273792|275290|275342|275431|288781|288784|288792|288793|288796|288802|288805|288807|288813|288814|288820|288821|289574|289575|289582|289585|289586|289587|289588|289589|289590|289597|292578|292579|292580|292581|292582|292583|292584|292585|292586|292755|292758|292781|292783|292784|292785|292787|292788|292789|292790|292793|292795|292795|292796|292798|368222|443365|489298|492320|518899|583256|683540|790334|827553|888002|888003|888004|888005|888006|888007|888008|888009|888010|888011|888012|888013|888014|888015|888016|888017|891569|891570|891571", + "text": "Renal-hepatic-pancreatic dysplasia 1" + }, + { + "baseId": "17680|17681|17682|17682|17683|17683|17684|17685|17686|17686|17687|17688|79626|79627|79628|79629|79630|79631|79632|79633|79634|79635|79636|79637|79638|79639|79640|79641|79642|98791|98791|98792|136051|136052|136053|136054|136055|136056|141401|141404|141405|141406|141407|186833|186834|186835|190746|190746|191332|193424|194825|195237|195886|202558|202559|202559|202566|202567|202569|202569|202573|202575|202576|202577|202578|202579|202579|202581|202584|202586|202587|202588|202591|202591|202592|202592|202593|202594|202595|202601|202603|202603|202605|202607|215044|222994|243904|243905|264493|264631|314695|314700|314702|314710|321386|321396|321397|321424|321428|327528|327552|327555|327556|327564|328593|328597|328601|328604|328609|328610|328621|328622|358020|358021|358022|358023|358024|358025|358026|358027|358028|358029|358030|371610|398765|398896|408426|415291|441433|461540|462234|481494|487317|493093|503368|513604|546125|546128|546135|546136|546138|546140|546410|546414|546416|546427|546434|546441|546447|546449|546450|546571|546574|546576|546578|546776|546786|546789|546791|550201|550221|552152|566073|567467|576142|579711|590164|610532|640341|640350|640356|687815|816322|838800|838801|868314|868315|868316|868317|868318|868319|868320|868321|868322|868323|868324|868325|868326|868327|868328|868329|868330|868331|868332|868674|947593|962864|970941|979048|979049|979050|979051|979052|979053|979054|979055|979056|979057|983741|983742", + "text": "Ceroid lipofuscinosis neuronal 2" + }, + { + "baseId": "17682|17683|17683|17686|79630|94620|98791|190746|202559|202566|202569|202579|202591|202592|202603|227507|576142|610532|816322|964036", + "text": "Childhood-onset autosomal recessive slowly progressive spinocerebellar ataxia" + }, + { + "baseId": "17689|17690|17691|17692|17693|214774|227204|249533|272403|277359|277360|277362|277370|277372|277379|277380|277394|277395|277396|277398|277560|277561|277567|277569|277576|277577|277578|277579|277588|277590|277591|278412|278430|278433|278436|278437|278439|278441|278443|278444|278445|278447|278449|278455|278456|278459|513497|612253|619967|619968|706868|788730|792712|805072|862776|862777|862778|862779|862780|862781|862782|862783|862784|865033|918580", + "text": "Geroderma osteodysplastica" + }, + { + "baseId": "17694|349793|800170", + "text": "Exocrine pancreatic insufficiency, dyserythropoietic anemia, and calvarial hyperostosis" + }, + { + "baseId": "17695|17696|17697|17698|17699|17700|17701|40301|102540|191301|191847|192793|207477|212584|212585|214072|237291|240081|252796|252801|252802|252803|252804|252806|252807|252809|252810|252811|252812|252813|260446|260787|302812|302813|302835|302840|302842|302846|302850|302853|302856|302857|302859|306173|306176|306177|306180|306183|306185|306186|306187|306189|306191|306193|306194|310925|310927|310932|310933|310934|310936|311127|311131|311136|311175|311177|311181|369720|369721|456709|512824|513580|620261|683889|683890|685219|687047|788815|790719|833582|861628|861629|898007|898008|898009|898010|898011|898012|898013|898014|898015|898016|898017|898018|898019|898020|898021|898022|898023|898024|898025|898026|898027|900357|900358|963359|970857|970858", + "text": "Bardet-Biedl syndrome 9" + }, + { + "baseId": "17702|17703|17704|17705|17706|17707|17708|17709|17710|17711|17712|17713|17714|17715|17716|17717|17718|39646|102450|102451|102452|227720|251140|251147|290330|290341|290464|290465|290467|291198|291199|291208|291210|291214|291215|291216|291220|291221|291353|291354|291358|294472|294474|294475|294476|294477|294485|294486|294494|294572|294580|294582|294590|294887|294891|294907|294908|294909|294919|294928|294930|294933|295012|295013|295020|295021|295024|295028|295029|357324|406308|452640|481480|486318|542981|543229|549554|631448|631449|631450|631451|651045|651114|651199|698100|708864|720450|720451|734070|734072|748272|748273|748274|748275|763906|774817|781676|781681|781682|819399|819400|819401|819402|819403|819404|819405|828180|828181|828182|851053|888909|888910|888911|888912|888913|888914|888915|888916|888917|888918|888919|888920|888921|888922|888923|888924|888925|888926|888927|888928|888965|888966|888967|888968|888969|888970|888971|888972|891646|891647|903522|916913|916914|953491|953492|959698|960511|975778|977839|977840|977841|977842|977843", + "text": "Multiple sulfatase deficiency" + }, + { + "baseId": "17719|17720|17722|17723|17724|17725|17727|39645|190627|247409|252887|252890|252892|252893|252895|252896|418982|418985|418986|418988|418990|418991|418996|418999|441131|456738|456743|456824|457171|457783|512825|553154|561954|561958|563857|566876|577000|577001|581314|581318|581330|581333|581334|609662|636170|636171|636172|636173|651809|687054|687055|687056|689871|695363|736154|799511|819876|833621|833622|833623|833624|833625|861568|924857|924858|959857|963148", + "text": "Cerebral cavernous malformations 2" + }, + { + "baseId": "17728|54806|54807|54809|54812|54813|54814|54815|54817|54819|54820|54823|54825|54826|54828|54829|54829|54830|54831|54834|54836|54837|54838|54839|54840|54841|54842|54845|54846|165839|174126|174265|174543|174545|174546|174684|174824|190881|191257|199790|204465|229648|229651|229654|272116|273159|273252|306539|306540|306544|306553|306555|306558|306561|306562|310735|310737|310738|310740|310755|310756|310758|310763|310769|316101|316102|316104|316105|316118|316119|316125|316127|316132|316135|316136|316473|316474|316482|316486|316489|316491|316497|316498|316505|316506|316508|316509|497050|497111|584172|615804|654527|799561|900881|900882|900883|900884|900885|900886|900887|900888|900889|900890|900891|900892|900893|900894|900895|900896|900897|900898|900899|900900|900901|900902|900903|900904|900905|900906|900907|900908|900909|900910|900911|900912|900913|900914|900915|900916|900917|903301|903302", + "text": "Deafness, autosomal recessive 31" + }, + { + "baseId": "17729|17730|40364|40365|54806|54807|54809|54812|54813|54814|54815|54817|54819|54820|54823|54825|54826|54828|54829|54829|54830|54831|54834|54836|54837|54838|54839|54840|54841|54842|54845|54846|174126|174265|174543|174545|174546|174684|174824|190881|191257|199790|229648|229651|229654|272116|273159|273252|306539|306540|306544|306553|306555|306558|306561|306562|310735|310737|310738|310740|310755|310756|310758|310763|310769|316101|316102|316104|316105|316118|316119|316125|316127|316132|316135|316136|316473|316474|316482|316486|316489|316491|316497|316498|316505|316506|316508|316509|497050|497111|584172|654527|799561|818260|900881|900882|900883|900884|900885|900886|900887|900888|900889|900890|900891|900892|900893|900894|900895|900896|900897|900898|900899|900900|900901|900902|900903|900904|900905|900906|900907|900908|900909|900910|900911|900912|900913|900914|900915|900916|900917|903301|903302", + "text": "Usher syndrome, type 2D" + }, + { + "baseId": "17731|17732|17733|17734|17735|17736|21672|21673|21674|21675|48036", + "text": "p phenotype" + }, + { + "baseId": "17738|17738|17739|102132|177392|190637|237332|253660|259932|309157|313891|313896|313898|319780|320305|320319|371461|371463|371470|373256|459538|459792|460007|460010|460012|460436|524859|525094|525099|525403|525405|563486|563486|563489|563490|564387|564389|564399|569388|569394|626192|638641|638642|638643|638644|638645|638646|638647|638648|638649|638650|638651|638652|692755|692756|692757|712107|751889|767582|767585|783514|836507|836508|836509|903563|906083|925713|925714|925715|925716|925717|925718|934902|934903|934904|934905|934906|934907|934908|946766|955951|955952|955953|955954", + "text": "ALG2-CDG" + }, + { + "baseId": "17738|102132|177392|181169|181170|190637|237332|253660|259932|309157|313891|313896|313898|319780|320305|320319|371461|371463|371470|373256|459538|459792|460007|460010|460012|460436|524859|525094|525099|525403|525405|563486|563489|563490|564387|564389|564399|569388|569394|626192|638641|638642|638643|638644|638645|638646|638647|638648|638649|638650|638651|638652|692755|692756|692757|712107|751889|767582|767585|783514|836507|836508|836509|906083|925713|925714|925715|925716|925717|925718|934902|934903|934904|934905|934906|934907|934908|946766|955951|955952|955953|955954|980210", + "text": "Myasthenic syndrome, congenital, 14" + }, + { + "baseId": "17740|17741|17742|101900|101905|101910|101912|264606|363702|409441|439884|465526|465674|465693|465717|465730|465748|465849|508885|529308|529327|529389|529623|538450|538451|569498|569533|569879|569931|785114", + "text": "Epilepsy, childhood absence 6" + }, + { + "baseId": "17741|17743|17744|17745|22647|31252|99339|101896|101899|101902|101904|101906|101907|101911|132585|134011|134012|134571|140353|140355|140356|140358|141112|141113|141114|141115|141116|141117|141118|141119|177152|190285|193450|194328|195911|201250|201251|201252|201257|201258|201260|201268|201269|201270|201852|201853|201860|201861|201862|215187|223057|224873|236995|237390|242502|242503|242504|242505|242506|242995|242996|242997|242998|259817|259818|259819|260083|264650|359301|359664|362315|363680|363702|364108|365539|365547|368035|368330|369730|374600|374606|374609|374622|377014|391382|391431|391612|401324|401326|401329|401350|401352|401818|401831|401840|401852|401856|402106|402113|402575|402616|402618|403063|403065|403068|406687|409441|413416|426685|438955|440428|440429|440430|440431|440537|440540|440542|441766|441769|441771|441772|441774|445614|446922|447427|447432|447557|447558|447653|447663|447670|447672|447681|447683|447685|447688|447690|447710|447712|447714|447724|447731|448750|449032|454795|454797|454898|454906|454911|454916|454921|454923|455387|455392|464868|464870|464871|464874|464877|464881|464886|464899|464900|464913|464914|464920|464921|464923|464924|464933|464938|464939|464943|464946|464948|464950|464963|464964|464965|464968|464970|464972|464977|464979|464983|464985|464991|464992|464995|464998|465006|465011|465013|465014|465020|465028|465029|465034|465493|465501|465505|465513|465521|465526|465529|465536|465540|465547|465553|465558|465560|465561|465571|465577|465580|465582|465584|465586|465597|465600|465602|465604|465605|465609|465610|465611|465613|465616|465617|465620|465622|465624|465625|465626|465632|465635|465637|465638|465639|465641|465642|465643|465646|465648|465650|465652|465653|465654|465655|465656|465657|465661|465663|465664|465665|465672|465673|465674|465676|465693|465695|465698|465707|465709|465711|465714|465717|465720|465723|465725|465729|465730|465736|465739|465748|465762|465767|465769|465772|465773|465775|465781|465787|465813|465824|465827|465830|465839|465840|465843|465846|465849|465857|465861|465863|465873|465876|465878|465879|465881|465891|465895|465897|465901|465904|465906|465912|465969|465976|465978|465979|466695|466701|466766|466993|466995|467606|468932|469195|469197|469204|469207|469215|488955|515394|515405|515488|515490|515495|515497|515499|515500|515552|515554|516467|516468|516470|516565|516580|516594|520982|521214|521221|521404|529279|529283|529289|529290|529296|529304|529305|529308|529310|529316|529318|529321|529324|529326|529327|529330|529332|529334|529336|529339|529340|529341|529343|529347|529349|529350|529351|529352|529353|529354|529357|529358|529360|529361|529362|529366|529372|529375|529376|529377|529380|529381|529383|529388|529389|529390|529392|529395|529398|529399|529403|529405|529406|529410|529415|529418|529421|529423|529424|529430|529431|529432|529439|529440|529442|529447|529449|529455|529595|529597|529607|529608|529611|529612|529614|529617|529620|529623|529627|529628|529629|529634|529640|529653|529661|529663|529676|529680|529682|529684|529689|529692|529697|529699|529707|529709|529710|529712|529713|529715|529727|529730|529733|529734|529738|529742|529743|529754|529758|529763|529897|529904|529908|529909|529910|529911|529914|529918|529928|529930|529940|529943|529955|529959|529965|529969|529972|529974|529984|529986|529992|529994|529999|530006|530014|530016|530018|530024|530026|530028|530035|530242|530249|530250|530323|530324|530326|530330|530340|530532|530543|530548|530751|531878|531880|531919|531921|531925|531989|531996|532272|532275|538451|556491|556756|556758|556793|556795|556797|557116|557580|557582|557637|558323|558325|558327|558809|558811|559292|559294|560360|560362|563011|563015|563016|565000|567578|567598|567601|567602|567604|567606|567608|567610|567617|567618|567620|567622|567626|567630|567631|567633|567636|567637|567639|567641|567643|567646|567648|567650|567651|567656|567657|567659|567663|567669|568307|568316|568329|568335|569462|569479|569483|569484|569492|569494|569498|569501|569506|569511|569522|569526|569527|569529|569533|569830|569854|569862|569865|569869|569871|569876|569879|569883|569889|569891|569894|569899|569902|569912|569913|569915|569920|569925|569927|569929|569931|569935|569936|569939|569944|569947|569954|569955|569958|569965|569967|569969|570457|570465|571690|571691|573690|573692|573693|573694|573696|573699|573700|573702|573703|573706|573707|573709|574164|574166|574655|576459|576799|577422|577425|577428|577435|577438|577445|579039|579119|627284|627285|627286|627287|627288|627289|627290|627291|627292|628678|628679|628680|628681|628682|633696|633697|633698|633699|633700|643807|643808|643809|643810|643825|643826|643827|643828|643829|643830|643831|643832|643833|643834|643835|643836|643837|643838|643839|643840|643841|643842|643843|643844|643845|643846|643847|643848|643849|643850|643851|643852|643853|643854|643855|643856|643857|643858|643859|643860|643861|643862|643863|643864|643865|643866|643867|643868|643869|643870|643871|643872|643873|643874|643875|643876|643877|643878|643879|643880|643881|643882|643883|643884|643885|643886|643887|643888|643889|643890|643891|643892|643893|643894|643895|643896|643897|643898|643899|643900|644968|644972|644973|644974|644980|644981|644982|644983|644984|646831|646832|646833|646834|646835|646836|646837|646838|646839|650616|650869|652507|652584|652866|652919|652922|653208|653212|653367|668539|684617|684618|684623|684624|684625|684626|684717|685183|685854|685855|686713|686715|688651|688655|688656|688845|688848|690454|693783|693784|693785|693786|693787|693933|695672|695675|696390|696391|696393|696394|696396|696397|703451|703452|703453|703454|703457|703458|703460|703462|703463|703464|703465|703466|703467|703468|703469|703470|703471|703472|703473|703475|703476|703477|703478|703479|703482|703483|703484|703485|703487|703488|703489|703490|703491|703492|707000|707001|714720|714722|714723|714724|714726|714727|714728|714729|714730|714731|715080|718529|718536|718538|718539|726398|726399|726400|726401|726403|726405|726406|726408|726413|726414|726415|726416|726417|726418|731036|731038|739934|739936|739937|739938|739939|739940|739945|739946|741098|744796|744990|745194|749397|754849|754851|754852|754853|754855|754856|754857|754859|754860|754866|754868|754869|754871|754873|754875|754877|754880|754885|760253|760384|761470|761474|765001|770493|770497|770498|770508|770516|770518|770520|770521|770522|770523|770529|770530|770533|770535|770537|771065|771066|771068|776119|776123|776431|777075|778164|778221|778224|778369|778373|779745|779747|779839|780901|782239|785110|785112|785114|785115|785116|785117|785118|785119|785121|785124|785129|785130|786974|788010|788174|791630|792914|793565|797241|797242|818895|818896|819056|819641|820762|820763|820872|820975|820976|821909|821910|821911|821912|823233|823234|823235|823236|823237|823238|823239|823242|823243|823248|823249|823250|824972|824973|824974|824975|824976|830594|830595|830596|830597|842978|842989|842990|842991|842992|842993|842994|842995|842996|842997|842998|842999|843000|843001|843002|843003|843004|843005|843006|843007|843008|843009|843010|843011|843012|843013|843014|843015|843016|843017|843018|843019|843020|843021|843022|843023|843024|843025|843026|843027|843028|843029|843030|843031|843032|843033|843034|843035|843036|843037|843038|843039|843040|843041|843042|843043|843044|843045|843046|843047|843048|843049|843050|843051|843052|843053|843054|843055|843056|843057|843058|843059|843060|843061|843062|843063|843064|843065|843066|843067|844282|844283|844289|844292|844293|844294|844295|846348|846349|846350|846351|846352|846353|846354|850799|851265|851639|851641|851643|851679|851896|852198|852795|852796|852801|921805|921806|921807|921808|921809|922298|923975|923976|923977|923978|923979|923980|923981|927529|927533|927534|927535|927536|927537|927538|927539|927540|927541|927542|927543|927544|927545|927546|927547|927548|927549|927550|927551|927552|927553|927554|927555|927944|927945|927946|930245|930246|930247|930863|930864|930865|930866|932820|932821|932822|932823|932824|937179|937180|937181|937182|937183|937184|937185|937186|937187|937188|937189|937190|937191|937192|937193|937194|937195|937196|937197|937198|937199|937200|937201|937202|937203|937204|937205|937206|937207|937208|937209|937210|937211|937212|937598|937603|937604|937605|937606|938265|938266|940341|940342|940371|941106|941107|941108|941109|941110|941145|941657|941658|941663|942294|944517|944518|944519|944520|944521|944522|949132|949133|949136|949137|949138|949139|949140|949141|949142|949143|949144|949145|949146|949147|949148|949149|949150|949151|949152|949153|949154|949155|949156|949157|949158|949159|949552|949558|949559|949560|949561|949562|950339|950340|950341|950342|954105|957596|957597|957598|957599|957600|957601|957602|957603|957604|957605|957606|957607|957608|957609|957610|957611|957870|957873|957874|959539|960130|960131|960559|960829|960830|960831|964213", + "text": "Idiopathic generalized epilepsy" + }, + { + "baseId": "17741|17743|17744|17745|101896|101899|101902|101904|101906|101907|101911|177152|187648|223057|237390|260083|264606|264650|363680|363702|363702|364108|374600|374606|374609|374622|377014|409441|413416|438955|441766|441769|441771|441772|441774|464868|464870|464871|464874|464877|464881|464886|464899|464900|464913|464914|464920|464921|464923|464924|464933|464938|464939|464943|464946|464948|464950|464963|464964|464965|464968|464970|464972|464977|464979|464983|464985|464991|464992|464995|464998|465006|465011|465013|465014|465020|465028|465029|465034|465493|465501|465505|465513|465521|465526|465529|465536|465540|465547|465553|465558|465560|465561|465571|465577|465580|465582|465584|465586|465597|465600|465602|465604|465605|465609|465610|465611|465613|465616|465617|465620|465622|465624|465625|465626|465632|465635|465637|465638|465639|465641|465642|465643|465646|465648|465650|465652|465653|465654|465655|465656|465657|465661|465663|465664|465665|465672|465673|465674|465676|465693|465693|465695|465698|465707|465709|465711|465714|465717|465717|465720|465723|465725|465729|465730|465736|465739|465748|465762|465767|465769|465772|465773|465775|465781|465787|465813|465824|465827|465830|465839|465840|465843|465846|465849|465849|465857|465861|465863|465873|465876|465878|465879|465881|465891|465895|465897|465901|465904|465906|465912|529279|529283|529289|529290|529296|529304|529305|529308|529308|529310|529316|529318|529321|529324|529326|529327|529327|529330|529332|529334|529336|529339|529340|529341|529343|529347|529349|529350|529351|529352|529353|529354|529357|529358|529360|529361|529362|529366|529372|529375|529376|529377|529380|529381|529383|529388|529389|529389|529390|529392|529395|529398|529399|529403|529405|529406|529410|529415|529418|529421|529423|529424|529430|529431|529432|529439|529440|529442|529447|529449|529455|529595|529597|529607|529608|529611|529612|529614|529617|529620|529623|529623|529627|529628|529629|529634|529640|529653|529661|529663|529676|529680|529682|529684|529689|529692|529697|529699|529707|529709|529710|529712|529713|529715|529727|529730|529733|529734|529738|529742|529743|529754|529758|529763|529897|529904|529908|529909|529910|529911|529914|529918|529928|529930|529940|529943|529955|529959|529965|529969|529972|529974|529984|529986|529992|529994|529999|530006|530014|530016|530018|530024|530026|530028|530035|538451|567578|567598|567601|567602|567604|567606|567608|567610|567617|567618|567620|567622|567626|567630|567631|567633|567636|567637|567639|567641|567643|567646|567648|567650|567651|567656|567657|567659|567663|567669|569462|569479|569483|569484|569492|569494|569498|569498|569501|569506|569511|569522|569526|569527|569529|569533|569533|569854|569862|569865|569869|569871|569876|569879|569879|569883|569889|569891|569894|569899|569902|569912|569913|569915|569920|569925|569927|569929|569931|569931|569935|569936|569939|569944|569947|569954|569955|569958|569965|569967|569969|573690|573692|573693|573694|573696|573699|573700|573702|573703|573706|573707|573709|577422|577425|577428|577435|577438|577445|643807|643808|643809|643810|643825|643826|643827|643828|643829|643830|643831|643832|643833|643834|643835|643836|643837|643838|643839|643840|643841|643842|643843|643844|643845|643846|643847|643848|643849|643850|643851|643852|643853|643854|643855|643856|643857|643858|643859|643860|643861|643862|643863|643864|643865|643866|643867|643868|643869|643870|643871|643872|643873|643874|643875|643876|643877|643878|643879|643880|643881|643882|643883|643884|643885|643886|643887|643888|643889|643890|643891|643892|643893|643894|643895|643896|643897|643898|643899|643900|652507|652919|652922|653208|653212|668539|693783|693784|693785|693786|693787|695672|695675|703451|703452|703453|703454|703457|703458|703460|703462|703463|703464|703465|703466|703467|703468|703469|703470|703471|703472|703473|703475|703476|703477|703478|703479|703482|703483|703484|703485|703487|703488|703489|703490|703491|703492|714720|714722|714723|714724|714726|714727|714728|714729|714730|714731|726398|726399|726400|726401|726403|726405|726406|726408|726413|726414|726415|726416|726417|726418|731036|731038|739934|739936|739937|739938|739939|739940|739945|739946|744796|745194|754849|754851|754852|754853|754855|754856|754857|754859|754860|754866|754868|754869|754871|754873|754875|754877|754880|754885|760253|760384|770493|770497|770498|770508|770516|770518|770520|770521|770522|770523|770529|770530|770533|770535|770537|776119|776123|778164|778221|778224|778369|778373|779745|779747|779839|785110|785112|785114|785115|785116|785117|785118|785119|785121|785124|785129|785130|788010|788174|793565|797241|797242|820762|820763|820975|842978|842989|842990|842991|842992|842993|842994|842995|842996|842997|842998|842999|843000|843001|843002|843003|843004|843005|843006|843007|843008|843009|843010|843011|843012|843013|843014|843015|843016|843017|843018|843019|843020|843021|843022|843023|843024|843025|843026|843027|843028|843029|843030|843031|843032|843033|843034|843035|843036|843037|843038|843039|843040|843041|843042|843043|843044|843045|843046|843047|843048|843049|843050|843051|843052|843053|843054|843055|843056|843057|843058|843059|843060|843061|843062|843063|843064|843065|843066|843067|851639|851641|851643|852795|852796|927529|927533|927534|927535|927536|927537|927538|927539|927540|927541|927542|927543|927544|927545|927546|927547|927548|927549|927550|927551|927552|927553|927554|927555|937179|937180|937181|937182|937183|937184|937185|937186|937187|937188|937189|937190|937191|937192|937193|937194|937195|937196|937197|937198|937199|937200|937201|937202|937203|937204|937205|937206|937207|937208|937209|937210|937211|937212|940341|940342|941106|941107|941108|941109|941110|949132|949133|949136|949137|949138|949139|949140|949141|949142|949143|949144|949145|949146|949147|949148|949149|949150|949151|949152|949153|949154|949155|949156|949157|949158|949159|957596|957597|957598|957599|957600|957601|957602|957603|957604|957605|957606|957607|957608|957609|957610|957611|960130|960131|960829|960830|960831", + "text": "Hyperaldosteronism, familial, type IV" + }, + { + "baseId": "17744|17745", + "text": "Epilepsy, idiopathic generalized 6" + }, + { + "baseId": "17747|17748|17749|17750|17751|39644|40201|190909|191727|191728|192548|192549|194520|271610|273897|404803|461255|461445|461448|488701|512851|526321|526357|526360|526362|526570|526836|526847|526848|526849|564793|564795|565944|565945|565948|565955|567407|570766|570767|614361|614362|614363|640236|640237|640238|640239|640240|640241|640242|640243|640244|640245|640246|640247|652554|701856|712988|724554|724555|724556|724557|724558|724559|730779|730780|738093|744726|752757|760075|760079|768545|775860|779700|784051|838679|838680|838681|838682|838683|838684|838685|838686|838687|838688|838689|838690|838691|838692|838693|838694|926311|926312|926313|926314|935650|935651|935652|935653|935654|935655|935656|935657|941004|947552|947553|947554|947555|947556|947557|947558|960001|960753", + "text": "Leukocyte adhesion deficiency, type III" + }, + { + "baseId": "17752|17753|17754|17755|17756|17757|225892|225893|225894|225895|225896|225897|225898|225899|225900|225901|225902|225903|225904|225905|225906|225907|225908|225909|225910|225911|225912|225913|225914|257380|257381|257382|257383|257384|257385|336138|336140|336144|336152|336153|336155|336156|336159|336173|336175|336178|336180|336181|336195|336201|336202|336205|336210|336212|336216|336220|336223|345875|345878|345879|345881|345887|345893|345894|345897|345899|345912|345913|345921|345922|345924|345926|345930|345932|345933|345934|345938|345939|345942|345943|345946|345947|345950|345953|345955|345960|350299|350302|350303|350306|350307|350310|350311|350316|350317|350319|350320|350322|350325|350327|350329|350330|350332|350337|350338|350339|350340|350341|350344|350345|350348|350349|351323|351325|351327|351328|351332|351333|351335|351336|351337|351338|351340|351345|351346|351349|351350|351353|351354|351357|351358|351361|351362|351365|410782|717091|728759|728760|886463|886464|886465|886466|886467|886468|886469|886470|886471|886472|886473|886474|886475|886476|886477|886478|886479|886480|886481|886482|886483|886484|886485|886486|886487|886488|886489|886490|886491|886492|886493|886494|886495|886496|886497|886498|886499|886500|886501|886502|886503|886504|886505|886506|886507|887480|887481|887482", + "text": "Kindler's syndrome" + }, + { + "baseId": "17758|17759|17760|17761|17762|17763|17764|17765|237228|331112|331113|331116|331120|331122|331124|331134|331139|331141|331145|331147|331151|341360|341368|341369|341372|341374|341376|341377|341379|341383|341386|341393|341394|341395|341402|341403|341405|341413|341414|346881|346884|346892|346896|346897|346900|346902|346903|348145|348146|348150|348151|348154|348157|348159|348161|348163|348164|348166|348168|348170|348171|348172|348173|576181|620618|620619|704575|715937|715938|715939|715940|727695|727696|727697|727700|741336|741338|879113|879114|879115|879116|879117|879118|879119|879120|879121|879122|879123|879124|879125|879126|879127|879128|879129|879130|879131|879132|879133|879134|879135|879136|879137|879138|879139|880648|880649|880650|880651", + "text": "Hypotrichosis 6" + }, + { + "baseId": "17766|17767|17768|17769|17770|17771|17772|17773|17774|17775|17776|17777|17778|17779|17788|28209|28212|104576|104580|104603|104607|105565|105567|105569|105571|105573|105574|105575|105580|105582|105598|105616|105621|105624|105624|105625|105628|105632|105641|105644|105653|105655|105658|171760|177398|177522|190829|190830|259990|273553|291539|314401|314403|314405|314406|314422|314440|321031|321035|321036|321037|321044|321045|321046|321067|321070|327121|327122|327129|327135|327145|327146|327159|327160|327164|327166|327167|327195|328206|328207|328208|328209|328210|372472|432105|432200|437896|488171|535223|535224|535225|538935|550222|612093|612292|620407|623870|623871|623872|623873|623874|623875|791145|800516|800565|800566|800567|800569|801355|801390|801402|801427|801428|856446|856460|868173|868174|868175|868176|868177|868178|868179|868180|868665|919370|919371|919372|919373|943224|962009|962018", + "text": "Vitelliform macular dystrophy type 2" + }, + { + "baseId": "17779|17780|17781|17782|102552|105614|105615|105624|408395|418961|497622|513092|513093|513094|513095|590304|818292", + "text": "Bestrophinopathy, autosomal recessive" + }, + { + "baseId": "17779|18401|22919|22923|22924|22942|22952|101232|101480|101481|104927|104930|104931|104938|104954|104974|104990|105042|105058|105068|105082|105135|105147|105160|105200|105279|105285|105296|105297|105302|105329|105330|105332|105333|105337|105343|105380|105381|105383|105387|105565|105569|105571|105573|105575|105678|105685|105686|105690|105695|105697|139937|139938|139942|139944|152793|172769|177019|177056|177282|177450|177472|177923|190742|190829|190830|191153|191424|191525|192532|193625|193777|194353|194617|195036|196223|237686|237695|237696|237704|249423|250031|250033|255338|256338|265947|266046|267623|267624|268054|271417|276617|276618|276621|276622|276623|276624|276625|276627|276628|276629|276630|276631|276634|276635|276881|276882|276883|276888|276892|276893|276894|277463|277475|277477|277478|277540|277541|277551|277559|277562|278313|278929|278958|279100|279548|279565|280392|280397|280424|280712|280725|281153|281326|281328|281329|281332|281340|281341|281342|281346|281351|281359|281361|281367|281368|281373|281375|281378|281381|281972|281973|281986|281988|281995|281996|282000|282001|282006|282031|282032|282043|282148|282154|282159|282951|283241|283246|283260|283261|283265|283266|283281|283282|283286|283290|283291|283298|283299|283386|283388|283391|283392|283399|283400|283402|283415|283422|283423|283434|283437|283438|283441|283442|283447|283587|283765|283784|284121|285910|286007|286017|286032|286033|286044|286409|286686|286921|286935|287717|287855|287885|287887|287942|287951|288619|288859|289343|289346|290094|291462|291493|291494|291495|291496|291651|291665|291677|292542|292592|292712|293468|293469|293947|293974|294863|295405|296247|296248|296253|296450|296459|296467|297351|297355|297385|297388|297538|297540|297567|298532|298533|298537|298539|298544|298556|298639|298693|299220|300866|300868|300870|300876|300883|300885|300886|300888|300901|301039|301122|301128|302078|302103|302117|302132|302167|302350|302355|302390|302595|303842|303843|305262|305263|305276|305428|305438|305439|305455|305459|305460|305462|305465|305468|305534|305546|305583|305594|305661|307247|308474|308490|308521|308528|310098|310128|310374|314401|314405|314406|314422|314440|315482|321021|321023|321024|321027|321031|321035|321046|321067|321070|322171|322175|323008|323250|323251|323259|323260|323266|323267|323270|323277|323283|323284|323473|325962|325963|325972|326042|327121|327122|327129|327164|327167|327195|328206|328209|328210|329401|329412|329414|329418|329421|329426|329430|329440|329441|329442|329443|329444|329449|329455|330117|330120|330122|330123|332935|332936|332942|332943|332946|332951|332952|332960|332962|332965|332968|333163|335089|335709|335712|335720|336631|336633|336639|336640|336642|338598|338600|338603|339690|339707|339715|339719|339722|339724|339732|339733|339736|339737|339740|339742|339743|339806|339813|339814|339821|339823|340826|341239|341242|341243|341247|341248|341375|342032|342035|343539|345426|345432|345436|345437|345443|345449|345454|345456|345458|345462|345465|345466|346151|346447|346798|346799|346800|346801|346803|346805|346816|346818|346819|347440|347441|347780|353063|353346|353347|353348|353349|353350|353450|353451|353549|725770|794254|872095|872098|872100", + "text": "Retinitis Pigmentosa, Recessive" + }, + { + "baseId": "17779|17783|17785|17790|105565|105567|105569|105571|105573|105574|105575|105580|105582|105615|105616|105621|105624|105632|177522|190829|190830|273553|314401|314403|314405|314406|314422|314440|321031|321035|321036|321037|321044|321045|321046|321067|321070|327121|327122|327129|327135|327145|327146|327159|327160|327164|327166|327167|327195|328206|328207|328208|328209|328210|372472|868173|868174|868175|868176|868177|868178|868179|868180|868665", + "text": "Vitreoretinochoroidopathy" + }, + { + "baseId": "17779|20649|22918|22919|22921|22927|22931|22932|22933|22937|22940|22943|22946|22950|22952|28206|28209|28212|28216|28217|28218|28222|98774|98777|104556|104558|104561|104582|104593|104603|104605|104611|104612|104942|104955|104976|105009|105014|105024|105081|105172|105190|105192|105200|105210|105219|105220|105256|105264|105274|105279|105287|105292|105292|105320|105327|105357|152788|177398|190248|192224|237651|237655|237658|237670|237685|237694|267624|273547|405254|406868|406870|413234|413712|431613|431618|431634|431694|431695|511211|543956|551504|612550|623247|623813|623814|623815|623817|623818|623819|623820|623821|623822|623824|623851|623876|623896|623898|623922|623948|623954|623955|623956|623984|623991|624029|624034|672055|672067|672072|691989|790017|794733|800450|800452|800453|800455|800456|800458|800459|800460|800461|800462|800463|800464|800685|800697|801310|801314|801319|801327|801329|801386|801502|831959|856454|856459|856470|905881|933337|940038|945035|945036|962010|962014|962015|962017|962018|962020|962022|962025|962026|962027|962028", + "text": "Stargardt disease" + }, + { + "baseId": "17784", + "text": "Microcornea, rod-cone dystrophy, cataract, and posterior staphyloma 2" + }, + { + "baseId": "17786|17787|17788|17789|105624", + "text": "Retinitis pigmentosa 50" + }, + { + "baseId": "17791|17795|17796", + "text": "Osteopoikilosis" + }, + { + "baseId": "17792|17793|17796|17797|268449|271611|273660|318314|318315|318320|318322|318328|318329|318330|318332|326356|326358|326359|326362|326364|326365|326372|326373|326387|326388|326389|326390|326391|332644|332652|332656|332662|332663|332676|332677|332680|332681|332682|332686|332688|332691|332694|332699|334243|334258|334259|334273|334275|334277|334278|334282|334284|334298|334299|334306|493084|583118|588792|611979|612097|620456|702470|730881|738829|870315|870316|870317|870318|870319|870320|870321|870322|870323|870324|870325|870326|870327|870328|870329|870330|870331|870332|870333|870334|870335|870336|870337|870338|870339|870340|919464", + "text": "Dermatofibrosis lenticularis disseminata" + }, + { + "baseId": "17794|17798", + "text": "Osteopoikilosis with melorheostosis" + }, + { + "baseId": "17798|17799", + "text": "Dermatofibrosis lenticularis disseminata, isolated" + }, + { + "baseId": "17800", + "text": "Mucolipidosis III alpha/beta, atypical" + }, + { + "baseId": "17800|17801|17803|17803|17807|17807|17808|17808|17810|17810|17812|17812|17813|17813|17814|46972|46972|46973|46975|46976|46988|46988|46990|46991|46992|47620|47620|47621|47622|47623|47623|47624|47625|47625|47629|47631|47632|47632|47634|47636|47637|47638|47638|47641|47643|47644|47652|47653|47656|47658|47660|47661|47661|47662|47662|47663|47664|47665|47668|47674|47674|47676|47677|47677|47678|47681|47682|47684|47685|47686|47689|78998|78998|102012|102013|102015|102016|106602|106603|177007|177007|177753|177753|190902|191427|191428|191429|191950|192537|192690|228217|228217|237191|237191|254386|254387|265256|265256|265257|265257|268432|315728|315729|315732|315734|315736|315737|315739|315740|315740|315743|315743|315746|315746|315752|315752|315753|315764|315766|315771|322722|322723|322724|322744|322745|322746|322747|322756|322758|322763|322763|322771|322771|322774|322809|322809|322824|322824|322825|322825|322836|322837|322837|322841|322841|322842|322843|328856|328861|328863|328864|328865|328865|328879|328879|328880|330054|330063|330075|330096|330100|330107|330107|330109|330113|330113|330116|330124|372495|384451|384452|384453|384454|384455|384456|384457|384458|384459|384460|384462|384463|384464|384465|384466|384467|384468|384469|487318|487325|487325|511952|526633|546531|546535|546537|546540|546549|546554|546560|546561|546566|546750|546752|546753|546774|546779|546782|546788|546799|546876|546878|546885|546887|546888|547081|547083|547085|547086|547097|547099|547108|547118|547120|547121|547126|549690|549691|549693|549693|549698|549698|567619|567642|571167|640580|640581|640582|652195|652278|672258|713281|713282|713282|713283|713283|724837|724838|724839|730818|738383|738386|738386|738387|738387|738389|738390|738391|738392|738392|738393|744704|753040|753041|753042|753045|753046|753047|753048|760131|760137|768855|768856|768857|768858|768859|768860|768861|768862|768863|784247|784248|784249|784250|784253|820438|839240|839241|839242|839243|839244|839245|839246|839247|839248|839249|851474|851927|852422|869059|869060|869061|869062|869063|869064|869065|869066|869067|869068|869069|869070|869071|869072|869073|869074|869075|869076|869077|869078|869079|869080|869081|869082|869083|869084|869085|872172|872173|872174|872175|872176|906154|906155|906156|906157|906158|906159|906160|906161|906162|926444|926445|935896|935897|935898|941017|941018|941019|947765|947766|947767|947768|947769|956731|956732|956733|956734|960770|972162|972163|972164|972165|972166|972167|972168|972169|972170|972171|972172|972173|972174|972175|972176|972177|972178|972179|972180|972181|972182|972183|972184", + "text": "Pseudo-Hurler polydystrophy" + }, + { + "baseId": "17802|17803|17803|17804|17805|17806|17807|17807|17808|17809|17810|17810|17811|17812|17812|17813|17814|46971|46972|46973|46973|46974|46976|46977|46978|46979|46980|46981|46982|46983|46984|46985|46987|46988|46988|46989|46990|46991|46991|46992|46993|47620|47622|47622|47623|47623|47624|47624|47625|47625|47626|47627|47628|47630|47632|47633|47634|47634|47635|47637|47637|47638|47639|47640|47642|47643|47643|47644|47644|47645|47646|47647|47648|47649|47650|47651|47652|47652|47654|47655|47657|47658|47658|47659|47660|47660|47661|47662|47666|47667|47668|47668|47669|47670|47671|47672|47673|47674|47674|47675|47676|47676|47677|47679|47680|47681|47682|47682|47687|47688|47689|47689|47690|47691|47692|47693|47694|47695|49677|49678|49679|49680|49681|76433|78998|78998|102012|102013|102015|102016|106602|177007|177007|177753|177753|190902|191427|191428|191429|191950|192537|192690|228217|228217|237191|237191|254386|254387|254388|265256|265256|265257|265257|268432|268432|315724|315727|315728|315729|315732|315734|315736|315737|315739|315740|315740|315743|315743|315746|315746|315752|315752|315753|315764|315766|315771|322722|322723|322724|322744|322745|322746|322747|322754|322756|322757|322758|322763|322763|322771|322771|322774|322809|322809|322824|322824|322825|322825|322836|322837|322837|322841|322841|322842|322843|328843|328856|328861|328863|328864|328865|328865|328879|328879|328880|330053|330054|330063|330071|330075|330082|330096|330100|330107|330107|330109|330113|330113|330116|330124|372495|384451|384452|384453|384454|384455|384456|384457|384458|384459|384460|384462|384463|384464|384465|384466|384467|384468|384469|487318|487318|487325|487325|513608|526633|546531|546535|546537|546540|546549|546554|546560|546561|546566|546750|546752|546753|546774|546779|546782|546788|546799|546876|546878|546885|546887|546888|547081|547083|547085|547086|547097|547099|547108|547118|547120|547121|547126|549690|549690|549691|549693|549693|549698|549698|567619|567642|567642|571167|571167|589798|612231|623156|640580|640581|640582|640582|652195|652195|652278|713281|713281|713282|713282|713283|713283|724837|724838|724838|724839|730818|730818|738383|738383|738385|738386|738386|738387|738387|738389|738389|738390|738391|738391|738392|738392|738393|744704|744704|753040|753041|753041|753042|753042|753045|753045|753046|753047|753048|760131|760137|768855|768856|768856|768857|768857|768858|768858|768859|768860|768860|768861|768861|768862|768863|768864|784247|784248|784249|784250|784250|784253|791186|801716|801717|820438|839240|839241|839241|839242|839243|839244|839245|839245|839246|839246|839247|839248|839249|851474|851927|852422|852422|869059|869060|869061|869062|869063|869064|869065|869066|869067|869068|869069|869070|869071|869072|869073|869074|869075|869076|869077|869078|869079|869080|869081|869082|869083|869084|869085|872172|872173|872174|872175|872176|906154|906155|906156|906157|906158|906159|906160|906161|906162|926444|926445|935896|935897|935897|935898|941017|941018|941019|947765|947766|947767|947768|947769|956731|956731|956732|956733|956733|956734|960770|963163|970947|972162|972163|972164|972165|972166|972167|972168|972169|972170|972171|972172|972173|972174|972175|972176|972177|972178|972179|972180|972181|972182|972183|972184|979231|979232|979233|979234|979235|979236|979237|979238|979239|979240|979241|979242|979243|979244|979245|979246|979247|979248|979249|979250|979251|979252|979253|979254|980343", + "text": "Mucolipidosis type II" + }, + { + "baseId": "17803|17807|20170|46988|46991|47624|47637|47660|47668|47676|47690|49681|384471|497409|654786|969173", + "text": "Mucolipidosis" + }, + { + "baseId": "17807|17810|47625|619924", + "text": "GNPTAB-Related Disorders" + }, + { + "baseId": "17812|17813|20146|20147|20148|20149|20150|20151|20152|20153|20154|20155|20156|20157|39416|46976|46986|46990|46992|98515|98516|98517|98518|98520|98521|195855|237044|237319|256535|256536|256537|256538|256541|260197|264874|265041|265225|268475|271274|274269|330478|330481|330484|330486|330494|330496|330505|330509|330519|340705|340707|340708|340710|340711|340713|340717|340735|340737|340739|340742|340747|346322|346323|346326|346328|346331|346338|346353|346355|346358|347699|347700|347701|347704|347705|347706|347709|347718|358524|360293|360474|375756|376651|410305|422209|431001|482159|508893|508894|513371|513648|513649|532014|532089|536959|548451|548457|548458|548462|548465|548466|548467|548468|548471|548472|548474|548475|548479|548485|548491|548498|548836|548837|548846|548847|548849|548855|548857|548860|548861|548864|548865|548867|548871|548873|548874|549207|549208|549212|549214|549215|549219|549221|549225|549226|549763|549764|549765|549767|549769|569940|569943|571747|574683|610522|622512|625886|625887|625888|625889|625890|646960|646961|646962|646963|646964|646965|646966|646967|646968|682851|704429|715784|727505|727506|727507|727508|727509|727510|727511|727512|727513|731185|741120|741121|741122|741123|741124|741125|741126|741127|741129|741130|745103|745126|756214|756215|756216|756217|756218|756219|756220|760495|760684|771933|771934|771935|771936|771937|771938|771939|771941|771942|771944|771945|771946|771947|771948|771949|771950|771951|771953|771954|771955|776409|776743|778412|785799|785801|785802|821175|846487|846488|861650|861651|878763|878764|878765|878766|878767|878768|878769|878770|878771|878772|878773|878774|878775|878776|878777|878778|878779|878780|878781|878782|878783|878784|878785|878786|878787|878788|878789|880616|880617|906106|917279|938316|940446|950385|950386|950387|958384|958385|958386|958387|971097|979934|979935|979936", + "text": "Mucopolysaccharidosis, MPS-III-A" + }, + { + "baseId": "17815|17822|17825|17826|17829|17830|17831|17832", + "text": "Glycogen storage disease IV, congenital neuromuscular" + }, + { + "baseId": "17816|17817", + "text": "Glycogen storage disease IV, nonprogressive hepatic" + }, + { + "baseId": "17816|17816|17816|17817|17817|17818|17818|17819|17820|17820|17821|17821|17822|17823|17824|17825|17827|17831|17832|76826|76827|178812|178812|194797|205142|205142|205142|207091|207091|237241|237241|237441|251279|251279|251281|251281|251283|251283|251285|251287|251288|251288|251289|251290|251290|291664|291664|291674|291675|291675|291676|291682|292986|292988|293004|293011|293020|293020|296258|296261|296275|296275|296277|296304|296305|296307|296318|296320|296321|296321|296329|296336|296338|296338|296340|357325|357325|357326|357326|361403|361403|367385|367406|367414|367729|367733|367733|367734|424441|428221|430978|434587|434587|434587|438253|438253|443515|443515|443517|443517|452788|472256|500841|500841|511513|511514|519598|519890|538363|538363|538363|538364|549555|549555|552403|559231|559678|559680|561057|561818|561818|631793|631794|631794|631795|651052|651128|651147|698295|709048|709048|720643|734303|734303|734304|734304|734305|734305|748534|748534|748535|764168|764169|764169|764170|764170|764174|764175|764175|764176|764176|764178|774865|774865|774904|774904|781805|781808|781810|781812|787404|790422|805000|805001|819415|819416|819417|819418|819419|819420|828568|828569|828570|828571|828572|828573|889704|889705|889706|889707|889708|889709|889710|889711|889712|889713|889714|889715|889716|889717|889718|889719|889720|891707|891708|923356|923357|923358|932086|940765|943704|953592|953593|953594|977993|977994|977995|977996|977997|977998|977999|978000|978001|978002", + "text": "Glycogen storage disease, type IV" + }, + { + "baseId": "17816|17817|17821|178812|227045", + "text": "Adult polyglucosan body neuropathy" + }, + { + "baseId": "17816|205142|291664|291672|620137|620768", + "text": "GBE1-Related Disorders" + }, + { + "baseId": "17816|17817|17818|17818|17819|17820|17820|17821|178812|205142|207091|237241|237441|251279|251281|251283|251288|251290|291664|291675|293020|296275|296321|296338|357325|357326|361403|367385|367729|367733|434587|438253|443515|443517|452788|500841|519598|519890|538363|549555|559231|559678|559680|561057|561818|631793|631794|631795|651052|651128|651147|698295|709048|720643|734303|734304|734305|748534|748535|764168|764169|764170|764174|764175|764176|764178|774865|774904|781805|781808|781810|781812|787404|819415|819416|819417|819418|819419|819420|828568|828569|828570|828571|828572|828573|923356|923357|923358|932086|940765|943704|953592|953593|953594", + "text": "Glycogen storage disease IV, classic hepatic" + }, + { + "baseId": "17816|17816|17830|194797|205142|207091|237241|251279|251281|251283|251285|251287|251288|251289|251290|291674|291675|291676|291682|292986|292988|293004|293011|293020|296258|296261|296275|296277|296304|296305|296307|296318|296320|296321|296329|296336|296338|296340|357325|361403|367406|367414|367733|367734|430978|434587|434587|438253|500841|511514|538363|538363|538364|561818|720643|748534|764176|889704|889705|889706|889707|889708|889709|889710|889711|889712|889713|889714|889715|889716|889717|889718|889719|889720|891707|891708", + "text": "Adult polyglucosan body disease" + }, + { + "baseId": "17820|17827", + "text": "Glycogen storage disease IV, childhood neuromuscular" + }, + { + "baseId": "17821|17828", + "text": "Glycogen storage disease IV, combined hepatic and myopathic" + }, + { + "baseId": "17823|17824", + "text": "Glycogen storage disease IV, fatal perinatal neuromuscular" + }, + { + "baseId": "17833|17834|17835|17836|17837|17838|17839|17840|34565|34566|34567|34568|34569|34570|34571|34572|34573|34574|34575|34576|39642|47683|78999|324084|324089|324096|324097|324103|324108|333708|333711|333712|333718|333721|333724|333726|333727|333728|340469|340471|340473|340474|340478|340480|340482|340483|341852|341853|341864|353336|384470|384471|431017|445491|512945|547668|547669|547670|547672|547673|547676|547682|547692|547702|547717|547719|547720|547722|547724|547727|547729|547733|547735|547742|547746|547976|547980|547981|547987|547990|547993|547996|547997|547998|548410|548412|548420|548422|548424|548428|548430|548437|548442|548448|548449|548452|548456|548459|643904|714735|714736|726423|726425|726426|739950|739951|745196|754888|754889|754893|754897|754898|770538|770539|770540|770543|770544|770546|770547|776127|779750|785136|843070|843076|843078|843081|843082|843084|874619|874620|874621|874622|874623|874624|874625|874626|874627|874628|874629|874630|874631|874632|876610|876611|905846|906163|906164|979747|979748|979749|979750|979751|979752|979753|979754|979755|979756|979757|979758|979759", + "text": "Mucolipidosis type III gamma" + }, + { + "baseId": "17841|17843|193654|202217|614318", + "text": "Ceroid lipofuscinosis, neuronal, 8, northern epilepsy variant" + }, + { + "baseId": "17841|17842|17843|17843|17845|71342|71343|71344|71345|71346|71347|71348|71349|71350|71351|71352|71353|71354|71355|71356|71357|71358|71359|101820|106601|186761|192506|193654|193654|202200|202206|202207|202209|202213|202217|202217|207537|357629|357630|357631|407357|407358|458656|480573|523713|523977|544401|544403|544404|544689|544692|544695|544698|544700|544702|544720|544744|544745|544748|544749|544753|579373|614318|687252|834527|955381|978455|978456|978457|978458|978459|978460", + "text": "Neuronal ceroid lipofuscinosis 8" + }, + { + "baseId": "17848|17849|17850|17851|17852|17853|17854|17855|190689|190700|190701|191087|191953|192858|192950|193202|193203|194089|194204|194244|194516|194713|195022|195076|195184|195485|195509|196072|217208|217209|237166|237437|251564|251566|251567|251568|251569|251570|251571|251572|251573|251574|251575|251576|251577|251578|251579|251580|251581|251582|251583|251584|251585|251586|251587|251588|251589|251590|251591|254710|254711|254712|254713|254714|254848|254849|265701|265702|265703|265704|265705|265706|268043|268153|270660|270973|272090|272499|273861|274285|294175|294188|294189|294200|294203|294204|294209|294211|294216|294218|294219|294220|294228|294229|294238|294240|294241|294242|294250|294251|294259|294260|294263|294265|294267|294268|294270|294275|294277|294281|294283|294291|294293|294297|294299|294303|294305|294307|294315|294318|294319|294322|294331|294333|294339|294341|294348|294349|294360|294370|294371|294374|294378|294390|294403|294404|294408|294410|294420|294423|294427|294430|294434|294436|294440|294442|294443|294444|294452|294458|294461|294462|295706|295710|295711|295712|295718|295720|295728|295735|295737|295738|295740|295741|295742|295745|295746|295747|295750|295756|295759|295760|295761|295763|295764|295771|295772|295781|295782|295783|295785|295794|295796|295806|295807|295808|295819|295822|295826|295831|295861|295871|295872|295873|295875|295883|295885|295886|295887|295889|295892|295898|295909|295929|295930|299445|299446|299452|299453|299461|299462|299467|299468|299469|299472|299474|299482|299483|299489|299491|299492|299493|299498|299499|299500|299502|299503|299504|299505|299507|299508|299509|299510|299512|299513|299514|299516|299517|299519|299527|299532|299533|299536|299537|299539|299548|299549|299553|299554|299555|299557|299559|299560|299561|299562|299563|299568|299572|299573|299574|299584|299586|299587|299588|299591|299592|299593|299594|299595|299598|299599|299600|299601|299602|299604|299606|299607|299608|299609|299612|299613|299614|299619|299620|299621|299624|299634|299635|299639|299640|299641|299647|299658|299659|299662|299664|299672|299674|299676|299677|299678|299679|299680|299682|299685|299689|299691|299692|318334|318336|318339|318340|318349|319646|319709|319752|319753|326405|326406|326408|326419|326420|326436|326438|328251|328276|328284|332700|332709|332710|334308|334315|334324|334328|334669|334730|336267|336293|336420|336433|336453|336478|336491|336493|353672|421497|428320|428321|438637|508796|508797|538370|539051|585700|587538|588437|612086|614652|620175|620775|622047|622216|622217|623139|654741|686549|686553|686554|686555|686558|686559|691607|691609|691612|691613|691614|691616|691618|691619|691621|691622|695245|721082|734726|734734|743995|744177|790485|892220|892221|892222|892223|892224|892225|892226|892227|892228|892229|892230|892231|892232|892233|892234|892235|892236|892237|892238|892239|892240|892241|892242|892243|892244|892245|892246|892247|892248|892249|892250|892251|892252|892253|892254|892255|892256|892257|892258|892259|892260|892261|892262|892263|892264|892265|892266|892267|892268|892269|892270|892271|892272|892273|892274|892275|892276|892277|892278|892279|892280|892281|892282|892283|892284|892285|892286|892287|892288|892289|892290|892291|892292|892293|892294|892295|892296|892297|892298|892299|892300|892301|892302|892303|892304|892305|892306|892307|892308|892309|892310|892311|892312|892313|892314|892315|892316|892317|892318|892319|892320|892321|892322|892323|892324|892325|892326|892327|892328|892329|892330|892331|892332|892333|892334|892335|892336|892337|892338|895996|895997|895998|895999|896000|896001|896002|904967|904968|904969|904970|904971|904972|904973|904974|904975|904976|904977|904978|904979|904980|904981|904982|904983|904984|904985|904986|904987|904988|904989|904990|904996|904997|904998|904999|905000|905001|905002|905003|918904|980916|980917", + "text": "Fraser syndrome 1" + }, + { + "baseId": "17856", + "text": "Uric acid nephrolithiasis, susceptibility to" + }, + { + "baseId": "17857|17858|17859|17860|17861|17862|17863|17864|17865|17866|17867|17868|17869|71267|71268|71269|71270|71271|71272|71273|71274|71275|71276|71277|71278|71279|71280|71281|71282|71283|71284|71285|71286|71287|71288|71289|71290|71291|71292|71293|71294|71295|71296|71297|71298|71299|71300|71301|71302|71303|71304|71305|71306|71307|71308|71309|71310|71311|71312|71313|71314|71315|71316|71317|71318|71319|71320|71321|71322|71323|71324|71325|71326|71327|71328|71329|71330|71331|71332|71333|71334|71335|71336|71337|71338|71339|71340|71341|71431|78971|78974|78977|78980|87952|87953|101718|101720|101721|101722|101723|101725|101726|101727|101728|101729|101731|101732|101733|101734|101735|101736|101738|101739|101741|101742|101743|101745|101746|101747|101748|101749|101751|101752|101754|101755|101758|101759|101760|101761|101762|101763|101764|101765|101766|101767|101768|101769|101770|101771|101772|101773|126251|126253|136162|136163|136164|136165|136167|136168|136169|136170|136171|136172|136173|136174|136175|136543|136544|176994|177126|177256|177257|177388|178150|178151|186772|186773|186774|187088|191069|191070|191071|191419|191420|191711|191712|191935|191936|192497|192994|193061|193344|193951|194078|194079|194080|194081|194082|194146|194582|194605|194633|194690|195075|195099|195114|195155|195156|195174|195470|196046|196047|205460|207578|207581|207584|207585|207587|207590|207593|207594|207595|207596|226910|226911|227918|236905|237231|237271|253219|253221|253222|253228|253229|253231|253232|259908|264296|264375|264404|264439|264450|264452|265990|266946|267794|268013|268126|269256|269515|270900|271131|271204|271719|272069|272234|272429|272992|273455|274279|274931|306123|306126|306127|306133|306136|306140|306148|306150|306157|306159|306160|306161|306168|306170|306174|306175|306178|306179|306181|306182|306184|306190|310178|310202|310208|310214|310215|310216|310217|310218|310220|310223|310225|310243|310245|310253|310258|310259|310260|310262|310264|310267|310278|310279|310281|310285|310286|310289|310291|310294|310296|310298|310304|310306|310310|315508|315518|315520|315522|315523|315525|315533|315538|315539|315540|315547|315548|315558|315560|315563|315565|315670|315675|315681|315684|315687|315689|315693|315697|315701|315704|315711|315714|315716|315718|315730|315735|315738|315745|315750|353821|353898|357675|357676|357677|357678|357679|357680|357681|357682|357683|357684|357685|357686|357687|357688|357689|357690|357691|357692|357693|357694|357695|357696|357697|357698|357699|357700|357701|357702|357703|357704|357705|357706|357707|357708|357709|357710|357711|357712|357713|357714|357715|357716|357717|357718|357719|357720|357721|357722|357723|357724|357725|357726|357727|357728|357729|357730|357731|357732|357733|357734|357735|357736|357737|357738|357739|357740|357741|357742|357743|357744|357745|357746|357747|357748|357749|357750|357751|357752|357753|357754|357755|357756|360902|361421|361530|363706|369643|421691|421692|425806|428865|428866|428868|428871|428874|428876|428878|428880|428883|428884|428885|428887|428888|432216|432217|438863|438915|441245|441247|441248|441249|441250|444319|444321|457745|458110|458111|458643|459117|459120|459138|459142|481829|490211|495617|512835|514581|523181|523529|523772|523791|523796|523799|523800|523801|523808|523809|523811|523812|524079|524080|524081|524085|524086|524087|524093|524345|524348|524357|524359|524362|524373|524375|524379|524400|524416|524421|524423|524428|524433|536753|539015|539016|544505|544506|544508|544512|544514|544521|544528|544537|544540|544542|544545|544547|544549|544552|544555|544557|544559|544561|544562|544565|544570|544574|544575|544577|544579|544583|544584|544586|544589|544592|544594|544791|544794|544800|544816|544821|544822|544825|544828|544829|544832|544834|544836|544837|544838|544839|544840|544841|544845|544846|544847|544849|544855|544856|544858|544859|544863|544865|544866|544867|544873|544875|544876|544879|544880|544881|544884|544885|544888|544889|544891|544895|544897|544898|544899|544900|544901|544902|544904|544906|544907|544909|544911|544921|544922|544923|544926|544927|544931|544933|544934|544935|544937|544939|544943|544944|544947|544948|544949|544953|544954|544955|544959|544961|544966|544969|544973|544974|544978|544979|544980|544983|544985|544989|544993|544998|544999|545000|545003|545005|545007|545008|545012|545013|545015|545018|545020|545023|545025|545027|545029|545032|545043|545048|545067|545070|545072|545074|545075|545085|545086|545087|545088|550610|550612|550613|550614|550661|552128|553172|561864|562333|562549|562553|562554|562556|562557|562560|562561|563179|563181|563189|563194|563195|563198|563200|563201|563202|563206|564559|564561|564566|564568|565283|565290|565296|565299|565303|565305|565309|565310|567308|567309|568265|568276|568277|568284|568287|576285|577073|577076|577077|577078|578472|579470|579471|579476|579480|579505|579514|579519|579526|579527|579530|579531|579533|579535|579536|579544|579551|579554|579568|579569|579701|579716|579729|589055|612149|612835|614327|614328|614329|614330|614331|614332|614333|620311|622889|626181|626182|637495|637496|637497|637498|637499|637500|637501|637502|637503|637504|637505|637506|637507|637508|637509|637510|637511|637512|637513|637514|637515|637516|637517|637518|637519|637520|637521|637522|637523|637524|637525|637526|637527|637528|637529|637530|637531|637532|637533|637534|637535|637536|637537|637538|637539|637540|637541|637542|637543|637544|637545|637546|637547|637548|637549|651727|651730|651768|651815|651827|651830|651831|651833|651878|651919|651927|652013|652014|692529|692530|692531|692532|692533|692534|692535|692536|692537|692538|692539|692540|692541|692542|692543|692544|695402|695403|700698|700699|700700|700701|700702|700703|700704|711671|711672|711673|723222|723224|723225|723226|723227|736786|736787|736788|736789|736791|744413|751277|751279|751281|751282|751285|751286|751287|759675|759717|759721|759839|766939|766941|766945|766946|766949|766951|766953|766956|766957|766958|766959|766960|766961|775295|775302|775440|775446|777790|783178|783180|783183|783188|783190|783193|783194|783195|787500|787501|787751|789124|790827|790828|790829|790830|790831|792775|793292|796200|800357|800358|800371|800543|801549|801577|805592|820002|820003|820004|820005|820006|820007|820008|820009|820010|820011|820012|820013|820014|820015|820016|820017|820018|820019|820020|820021|820022|820023|820024|820025|820026|820027|820028|820029|835167|835168|835169|835170|835171|835172|835173|835174|835175|835176|835177|835178|835179|835180|835181|835182|835183|835184|835185|835186|835187|835188|835189|835190|835191|835192|835193|835194|835195|835196|835197|835198|835199|835200|835201|835202|835203|835204|835205|835206|835207|835208|835209|835210|835211|835212|835213|835214|835215|835216|835217|835218|835219|835220|835221|835222|835223|835224|835225|835226|835227|835228|835229|835230|835231|835232|835233|835234|835235|835236|835237|835238|835239|835240|835241|835242|835243|835244|835245|835246|835247|835248|835249|835250|835251|835252|835253|835254|835255|835256|835257|835258|835259|835260|835261|835262|835263|835264|835265|835266|835267|835268|835269|835270|835271|835272|835273|835274|835275|835276|835277|835278|835279|835280|835281|851211|851213|852451|852452|852457|852458|852463|859688|900158|900159|900160|900161|900162|900163|900164|900165|900166|900167|900168|900169|900170|900171|900172|900173|900174|900175|900176|900177|900178|900179|900180|900181|900182|900183|900184|900185|900186|900187|900188|900189|900190|900191|900192|900193|900194|900195|900196|900197|900198|900199|900200|900201|900202|900203|900204|900205|900206|900207|900208|900209|900210|900211|900212|900213|900214|900215|900216|900217|900218|900219|900220|900221|900222|900223|900224|900225|900226|900227|900520|900521|900522|900523|900524|900525|900526|900527|900528|904192|904193|904194|904195|904196|904197|904198|904915|905849|919181|925282|925283|925284|925285|925286|925287|925288|925289|925290|925291|925292|925293|925294|925295|925296|925297|925298|925299|925300|925301|925302|925303|925304|925305|934452|934453|934454|934455|934456|934457|934458|934459|934460|934461|934462|934463|934464|934465|934466|934467|934468|934469|934470|934471|934472|934473|934474|934475|934476|934477|934478|940117|940118|940119|940890|940915|940916|946236|946237|946238|946239|946240|946241|946242|946243|946244|946245|946246|946247|946248|946249|946250|946251|946252|946253|946254|946255|946256|946257|946258|946259|946260|946261|946262|946263|946264|946265|946266|946267|946268|946269|946270|946271|946272|946273|946274|946275|946276|946277|955531|955532|955533|955534|955535|955536|955537|955538|955539|955540|955541|955542|955543|955544|955545|955546|955547|955548|955549|955550|955551|955552|955553|955554|955555|955556|955557|955558|955559|955560|955561|955562|955563|955564|955565|955566|955567|955568|955569|955570|955571|955572|955573|955574|955575|955576|955577|955578|955579|955580|955581|955582|955583|955584|955585|955586|955587|955588|955589|955590|955591|955592|955593|955594|955595|955596|955597|955598|955599|955600|955601|955602|955603|955604|955605|955606|955607|959872|959904|960662|960663|960664|960665|963151|963670|963671|965973|965974|965975|966036|978485|978486|978487|978488|978489|978490|978491|978492|978493|978494|978495|978496|978497|978498|978499|978500|978501|978502|978503|978504", + "text": "Cohen syndrome" + }, + { + "baseId": "17860|21766|23942|23943|25867|25924|26033|26225|26669|26734|26755|26763|26783|26848|26850|26853|26867|26868|27440|27922|27928|33920|34124|34175|34312|34314|38997|44305|44308|44431|45158|45369|45412|45413|45414|45415|45630|48981|49040|49510|50327|53583|53593|53599|53601|53604|53612|58529|58699|58839|70500|71281|75664|75739|76049|76631|76632|76633|76635|76646|76666|78451|79311|79317|79318|79319|79323|79426|79450|79466|79480|79481|79508|89851|98224|98227|98292|98293|98295|98527|98530|98570|98571|98632|98679|98780|98785|98786|98788|98831|98832|98835|98837|98839|98841|99039|99041|99042|99043|99044|99045|99047|99049|99139|99298|99300|99305|99306|99309|99310|99311|99314|99316|99317|99319|99320|99321|99322|99323|99324|99326|99330|99373|99389|99390|99446|99448|99449|99462|99463|99464|99465|99466|99467|99488|99489|99491|99493|99494|99495|99496|99497|99501|99503|99504|99506|99507|99530|99546|99547|99553|99559|99561|99564|99565|99573|99574|99575|99576|99577|99578|99580|99581|99582|99583|99609|99610|99611|99612|99613|99616|99617|99618|99619|99622|99623|99626|99627|99628|99629|99651|99654|99656|99666|99668|99669|99670|99673|99674|99675|99680|99923|99925|99975|99976|100006|100010|100011|100012|100015|100017|100278|100771|100777|100782|100923|100926|100934|100935|100936|100937|100939|100940|100942|100944|100949|100950|100952|100954|100956|100957|100958|100959|100961|100962|100963|100964|100965|100966|100967|100970|100977|100978|100981|100983|100986|100989|100991|100992|100994|101000|101047|101052|101085|101087|101088|101089|101092|101094|101097|101098|101102|101105|101147|101153|101155|101163|101164|101167|101201|101202|101203|101208|101210|101226|101264|101275|101305|101306|101307|101310|101311|101312|101313|101317|101330|101377|101378|101379|101380|101381|101382|101383|101384|101385|101388|101452|101453|101454|101455|101460|101463|101464|101468|101471|101472|101475|101476|101503|101505|101506|101507|101508|101509|101511|101516|101517|101519|101520|101525|101527|101528|101530|101534|101535|101540|101541|101647|101662|101664|101669|101670|101671|101673|101674|101675|101679|101680|101681|101688|101689|101691|101693|101697|101699|101700|101702|101703|101704|101705|101707|101708|101711|101712|101713|101718|101720|101721|101722|101723|101725|101728|101732|101735|101736|101741|101742|101748|101749|101754|101755|101758|101760|101761|101763|101764|101765|101769|101770|101771|101772|101773|101795|101797|101821|101822|101823|101868|101870|101873|101876|101877|101878|101879|101881|101883|101894|101914|101928|101929|101930|101932|101934|101936|101937|101941|101943|101945|101946|101947|101949|101951|101952|101957|101964|101965|101967|101968|101973|101976|102033|102034|102038|102039|102045|102046|102052|102054|102070|102071|102072|102073|102076|102077|102080|102081|102084|102085|102086|102088|102089|102090|102092|102094|102097|102150|102152|102156|102157|102158|102159|102225|102227|102229|102233|102242|102243|102257|102258|102345|102347|102348|102388|102414|102440|102441|102525|102526|102527|102528|102531|103054|104323|104324|104325|104329|104330|104333|104335|104348|104356|104360|105813|105816|131846|131848|131850|131852|131855|131858|131859|131860|131861|131865|131866|131867|131868|131869|131870|131871|131872|131873|131874|131875|131876|131877|131878|131879|131880|131881|131883|131885|131886|133896|133898|133900|133912|133913|133914|133915|133916|133917|133918|133919|133920|133921|133922|133923|133924|133925|133935|133936|133941|133944|133972|133980|133988|133989|133990|133991|133993|133994|133995|133996|133997|133998|133999|134000|134001|134002|134003|134004|134005|134006|134007|134009|134062|134064|134066|134067|134068|134069|134071|134072|134073|134247|134248|134249|134251|134252|134253|134254|134311|134371|134374|134375|134376|134378|134380|134382|134383|134384|134385|134386|134387|134388|134389|134390|134391|134422|134423|134424|134426|134428|134429|134511|134513|134515|134516|134517|134518|134519|134521|134522|134523|134550|134554|134555|134565|134583|134584|134594|134595|134596|134612|134613|134626|134627|134628|134629|134635|134636|134638|134639|134640|134641|134642|134645|134646|134647|134648|134649|134650|134651|134653|134654|134661|134690|134692|134693|134694|134695|134697|134698|134699|134700|134701|134702|134726|134728|134730|134762|134763|134764|134819|134828|134829|134830|134831|134832|134833|134834|134835|134836|134838|134839|134841|134842|134844|134929|134930|135015|135016|135017|135019|135020|135022|135023|135024|135025|135026|135027|135031|135036|135039|135053|135058|135215|135219|135220|135221|135222|135263|135264|135265|135266|135268|135269|135270|135273|135284|135285|135286|135287|135288|135296|135297|135313|135314|135316|135318|135319|135332|135333|135334|135336|135421|135467|135468|135469|135484|135485|135529|135532|135533|135534|135658|135660|135661|135663|135664|135665|135666|135670|135671|135672|135673|135689|135691|135693|135694|135695|135697|135698|135700|135754|135755|135757|135758|135760|135802|135827|135833|135969|135970|135972|135973|135975|135976|135977|136058|136059|136063|136067|136068|136070|136071|136075|136076|136077|136078|136079|136080|136081|136082|136084|136085|136086|136087|136088|136090|136091|136138|136162|136163|136164|136167|136168|136169|136170|136171|136272|136273|136287|136295|136297|136298|136299|136300|136301|136302|136303|137396|137398|137399|137663|137665|137671|137672|137673|137676|138240|139114|140124|140166|140316|140318|140326|140333|140335|140336|140338|140414|140415|140416|140417|140419|140513|140515|140520|140521|140523|140525|140531|140534|140535|140537|140542|141089|141090|141091|141092|141093|141094|141095|141137|141138|141152|141153|141156|141193|141208|141209|141211|141212|141216|141218|141221|141222|141223|141587|141588|141589|141646|141647|141650|141653|141655|141684|141875|141877|141878|141880|141889|141890|141891|141894|141896|141898|141900|142138|142248|142249|142250|142252|142253|142260|142262|142276|142293|142294|142296|142299|142301|142304|142411|142412|142414|142415|142420|142421|142423|142426|142428|142429|142430|142496|142517|142546|142676|142682|142683|142685|142687|142688|142689|142714|142716|142721|142722|142725|142727|142730|142732|142735|142772|142774|142775|142778|142858|142861|142863|142868|142869|142870|142903|142906|142910|142911|142912|142913|143046|143049|143051|143052|143054|143057|143058|143087|143107|143108|143110|143114|143118|143255|153030|153190|153273|153289|153352|153359|153389|153411|153413|153418|153441|153443|153482|153496|153507|153540|165528|165932|166523|167562|167565|167566|167568|167570|167571|167574|167575|167591|167603|167610|167920|167997|168029|168035|168110|168113|168116|168124|168125|168127|168129|168134|168136|168156|168163|168166|168187|168189|168190|168191|168293|168315|168324|168332|168354|168359|168364|168386|168427|168489|168517|168519|168582|168592|168597|168622|168627|168633|168634|168640|168813|168817|168822|168823|168825|168827|168829|168831|168834|168838|168840|169047|169050|169051|169056|169078|169206|169214|169217|169241|169249|169257|169446|169455|169599|169601|169874|169937|169945|169946|169949|169950|169951|169953|170087|170093|170137|170139|170152|170153|170166|170169|170175|171686|175395|175543|176313|176951|177006|177054|177069|177082|177163|177184|177214|177257|177285|177308|177379|177420|177427|177428|177453|177456|177532|177533|177550|177589|177596|177599|177601|177621|177650|177669|177670|177693|177704|177714|177721|177726|177727|177756|177760|177763|177807|177830|177831|177878|177995|178024|178064|178069|178073|178084|178088|178151|178994|178998|179007|187728|187773|187828|187874|188021|188023|188539|188562|188588|188616|189019|189338|189341|189342|190199|190259|190351|190352|190361|190450|190472|190473|190484|190486|190512|190605|190606|190607|190785|190837|190838|191008|191070|191074|191200|191214|191221|191251|191292|191303|191359|191411|191419|191522|191674|191692|191695|191709|191793|191794|191800|191801|191883|191936|192013|192055|192090|192129|192184|192232|192453|192477|192488|192491|192585|192587|192589|192628|192632|192694|192741|192742|192750|192831|192900|192932|192971|192994|193061|193093|193103|193104|193186|193191|193290|193325|193342|193349|193478|193620|193637|193639|193667|193679|193681|193690|193713|193717|193719|193720|193751|193752|193753|193789|193831|193832|194076|194078|194079|194082|194104|194146|194156|194174|194189|194197|194203|194292|194300|194407|194443|194451|194514|194533|194605|194633|194660|194679|194690|194703|194880|194886|194887|194953|195066|195156|195162|195174|195218|195338|195356|195384|195389|195450|195455|195513|195566|195629|195650|195674|195710|195722|195862|195912|195968|196000|196002|196003|196046|196047|196051|196058|196147|196169|196179|196225|196280|196301|196305|196310|201049|201061|201062|201109|201149|201189|201192|201194|201200|201209|201228|201241|201243|201273|201274|201306|201325|201353|201356|201403|201436|201466|201477|201510|201539|201597|201657|201662|201669|201675|201678|201683|201685|201686|201689|201691|201708|201720|202033|202036|202047|202060|202065|202069|202071|202075|202077|202107|202111|202114|202122|202284|202285|202325|202477|202610|202614|202652|202656|202658|202661|202662|202676|202717|202720|202722|202755|202758|202761|202809|202817|202819|202852|202858|203082|203309|203310|203319|203324|203328|203351|203369|203371|203374|203502|203514|203522|203526|203532|203533|203555|203558|203578|203590|203603|203608|203897|203904|203925|203932|203965|204011|204027|204029|204060|205325|206728|206811|206872|206874|206883|206886|206957|206960|206961|206963|206965|206967|206969|206970|206973|206977|207002|207003|207082|207086|207089|207265|207266|207268|207274|207317|207318|207341|207343|207346|207347|207349|207351|207352|207353|207355|207356|207360|207366|207367|207370|207376|207379|207386|207389|207390|207402|207409|207411|207413|207507|207509|207510|207512|207522|207524|207526|207527|207530|207548|207550|207581|207584|207585|207595|207664|207665|207667|207669|207673|207676|207677|207681|207683|207686|207692|207694|207696|207697|207945|207979|207980|208056|208058|208060|208062|208063|208065|208067|208070|208073|208077|208080|208150|208151|208152|208154|208237|208238|208258|208296|208297|208299|208353|208355|208357|208358|208363|208365|208367|208539|208545|208547|208548|208549|208552|208553|208617|208721|208819|208840|208842|208853|208881|208886|208887|208890|208921|208925|208930|208933|208979|208984|208987|208989|208990|208995|208996|208999|209001|209004|209021|209040|209045|209047|209085|209089|209099|209110|209122|209123|209125|209129|209132|209133|209149|209153|209160|209180|209184|209187|209204|209208|209218|209253|209307|210458|210465|210471|210476|210477|210478|210483|210484|210504|210515|210516|210531|210533|210551|210576|210578|212003|212999|215180|215327|215516|215559|215560|215614|215616|215617|215618|221075|222248|222886|231515|232150|236905|237006|237189|237231|237271|238152|238365|239850|239898|239899|239900|240392|240393|240506|240591|241528|241530|241764|241769|241772|241774|242175|242176|242177|242178|242179|242180|242181|242252|242297|242307|242321|242324|242445|242446|243730|243731|243733|243734|243750|243764|243765|243771|243817|243823|244344|244353|244356|244773|244777|244778|244791|244794|244797|244858|245199|245218|245219|247180|247192|247202|247209|249528|249529|250169|251853|253149|253150|253168|253221|253307|253371|254316|255441|255443|255445|255446|255448|255449|255450|255489|256091|256092|256093|256787|256788|257755|257770|257776|257784|257833|258741|259703|259921|260147|264530|265479|265733|265740|265758|265767|265778|265916|265958|266114|266150|266279|266798|266816|266829|266946|266969|267044|267206|267413|267447|267449|267450|267590|267747|267772|267794|267824|268024|268250|268395|268419|268459|268461|268933|268934|268938|268980|269077|269241|269722|269731|270296|270522|270621|270747|271301|271305|271447|271496|271636|271799|271846|272069|272155|272202|272372|272429|272497|272980|273200|273390|273653|274036|274277|274280|274930|277331|277520|277550|278382|278393|278413|281999|282022|282375|283182|284291|284651|285085|285095|285553|285565|285567|286232|286252|288970|297425|297966|297967|299530|299534|300142|300144|300175|302112|302751|302756|304433|304661|304708|304709|305650|305662|306082|306087|307714|307763|307904|307911|307957|308148|308150|308162|309627|309652|309679|310208|310217|310835|311956|311979|311994|311995|312169|313180|313290|313324|314166|314918|315127|315518|315533|315538|315675|316730|316733|316905|317545|317547|317563|317566|317577|317579|317849|317853|317858|317859|317895|317910|318069|318085|318087|318112|318355|318382|318522|320125|320133|320136|320141|320152|320175|323834|323848|324233|324619|327951|328722|328724|328743|329086|329923|330590|331689|335351|336960|337211|337249|339267|339363|348580|348725|348727|348796|348815|349104|352102|352107|352261|352788|352827|352874|352876|352877|352928|352971|359708|360063|360082|360515|361317|362606|363655|363682|363705|363833|363838|363873|363912|363920|363943|364042|364181|364370|364538|364563|365276|365377|365557|365572|365583|365624|365771|365791|365803|365819|365851|365858|366487|366508|366524|366856|366857|366883|367598|367626|367722|367732|369539|369579|369776|369876|370245|370250|370251|370256|370266|370280|370301|370318|370499|370591|370807|370815|370910|370916|371144|371931|372139|372145|372147|372170|372407|372416|372430|372436|372872|372921|372942|373082|373325|373374|373596|373616|373822|373831|373838|373849|373867|373894|373912|373913|374078|374140|374151|374216|374547|374563|374576|374577|374738|374818|374830|374876|374907|374930|374940|374947|375132|375157|375158|375719|375746|375792|375808|375812|375839|375920|376273|376288|376326|376858|376895|376901|376919|376954|376962|376965|376967|377235|377240|377242|377244|377248|377261|377389|377461|377470|377501|377505|377682|377694|377731|377791|377855|377877|377900|377981|378028|378046|378152|378363|378374|378376|378397|378412|378421|378441|378451|378452|378466|378820|378840|378869|378925|378937|378940|378965|378981|379035|379047|379071|379082|379164|379176|379177|379278|379305|379328|379361|379377|379406|379423|379431|379440|379477|379488|379508|379616|379897|379904|379929|380062|380082|380086|380103|389192|390256|390326|390331|390332|390335|390337|390366|390374|390379|390445|390489|390841|391124|391222|391252|391301|391308|391419|391604|394945|395140|395244|395246|395247|395325|395448|395695|395833|396109|396540|398955|398999|399031|399069|399375|399480|399484|399506|400221|400222|400248|400669|400751|400875|400878|400941|401172|401196|401407|401419|401423|401446|401472|401574|401659|401979|401989|403106|403353|403779|404074|404098|404110|404114|404140|404146|404156|404176|404178|404488|404510|404534|404584|404593|407014|407408|407642|408610|409114|409194|409429|410484|410486|410490|410491|410493|410520|410527|411149|411193|413410|413411|413413|413561|413805|413837|413848|415626|415665|421625|422065|422239|422422|425669|425943|426102|426285|426289|426291|426670|428010|428354|428357|428384|428445|428518|428545|428546|428547|428548|428551|428552|428557|428568|428572|428579|428773|428775|428776|428777|428882|428888|428958|428961|428964|428966|428967|428986|428987|429268|429410|429544|429610|429611|429612|429828|429930|429931|429934|429945|429948|430073|430136|430143|430150|430153|430365|430369|430370|430598|430620|430622|430635|430651|430691|430717|430726|430760|430765|430791|430793|430849|430859|430935|431505|433098|433576|437998|438042|438319|438344|438432|438443|438578|438709|438813|438884|438896|438915|438926|438931|438957|438986|439116|439135|439339|439852|439854|440361|440688|440738|441257|441362|441946|442036|442048|442059|442439|442929|442983|443021|443211|443760|443919|443928|445519|446066|446576|446655|446776|447217|447369|447421|447469|447484|448117|448712|448717|448792|449088|450177|450179|450185|450188|450237|450384|450399|450401|450487|450639|450710|450727|450884|450910|451625|451631|451687|451896|451915|451954|451955|451972|452132|452136|452138|452145|452160|454720|455008|455018|455087|455183|455198|455434|455453|455629|455665|455696|455926|458725|459036|459052|459106|459142|459363|459373|459924|461667|462975|463019|463207|463468|463482|463705|463732|463745|463755|463768|463805|464763|465704|465780|466023|466201|466463|466749|468085|468112|468122|468509|469021|469049|469424|469446|469618|469621|469866|469904|470164|470619|470642|470810|470967|471003|471007|471021|471050|471058|471070|471342|471350|471381|471388|471391|471436|471634|471649|471727|471731|471732|471733|471789|471792|471983|471987|471997|472011|472047|472051|472069|472073|472077|472089|472090|472153|472158|472166|472170|472205|472223|486408|486517|486914|488369|489079|489093|489115|489120|489122|490083|490287|490288|490316|490783|491350|491358|492028|492407|492801|493005|493274|493432|493854|494058|498499|499061|499844|500058|500209|500300|500781|501009|501240|502170|502348|502477|502920|503713|504271|504280|504329|504331|504385|504533|504723|504893|504899|504932|505050|505270|505536|506225|506356|506786|507176|507182|507186|507580|507766|507782|507861|507880|508000|508014|508171|508176|508222|508254|508257|508441|508451|508467|508602|508647|508906|510378|510918|510923|511166|511259|511351|511443|511560|511609|511661|512030|512112|512592|512645|512720|512767|512805|512822|514570|515044|515262|515265|515820|515910|516483|516525|517974|518026|518050|518117|518125|518499|518752|518762|518924|521961|522282|522299|523218|523664|523772|523811|524237|524252|524259|524264|524292|524312|524348|524379|524421|524746|524895|525032|527242|527463|527879|528224|532365|532743|533146|533278|533908|534570|534657|534673|534772|534894|534937|534962|534996|535000|535001|535086|535096|535179|535201|537041|537080|537258|537412|537418|538288|538399|538515|546307|551349|551665|553168|557284|558839|559318|560169|560791|560867|562924|562988|563112|564828|565167|565826|566195|568634|568657|568866|572666|573651|573701|573896|574891|574905|575019|575316|576438|576534|576710|576816|577415|577548|577613|577616|577937|578703|578704|578705|578706|578710|578711|578712|578713|578714|578715|578716|578717|578718|578719|578720|578721|578722|578723|578724|578725|578726|578727|578728|578729|578730|578731|578732|578733|578734|578735|578736|578737|578738|578739|578740|578741|578742|578743|578744|578745|578746|578747|578748|578749|578750|578751|578752|578753|578754|578755|578757|578758|578759|578760|578761|578764|578765|578766|578767|578768|578771|578772|578773|578775|578776|578778|578779|578780|578782|578783|578784|578785|578786|578787|578788|578790|578791|578792|578793|578794|578797|578799|578800|578801|578802|578803|578804|578805|578806|578807|578808|578809|578811|578815|578817|578821|578822|578824|578825|578826|578830|578835|578837|578838|578842|578843|578887|578888|578892|578893|578896|578897|578899|578900|578901|578906|578907|578909|578910|578911|578917|578918|578919|578920|578922|578923|578924|578925|578926|578927|578928|578929|578930|578931|578932|578933|578934|578935|578936|578937|578938|578939|578940|578942|578944|578945|578946|578947|578948|578949|578950|578951|578952|578953|578954|578955|578956|578957|578958|578959|578960|578961|578962|578963|578964|578965|578966|578967|578968|578969|578970|578971|578972|578973|578974|578975|578976|578977|578978|578979|578980|578981|578982|578983|578984|578985|578987|578988|578989|578990|578991|578992|578993|578994|578996|578997|578998|578999|579000|579001|579002|579003|579005|579006|579007|579009|579010|579012|579013|579015|579016|579018|579019|579021|579022|579023|579025|579026|579027|579028|579029|579030|579031|579032|579033|579034|579035|579036|579037|579038|579040|579041|579042|579043|579046|579047|579048|579049|579052|579053|579054|579055|579056|579057|579058|579059|579061|579062|579064|579065|579066|579067|579069|579070|579071|579072|579073|579074|579075|579076|579077|579078|579079|579080|579081|579082|579083|579085|579086|579087|579089|579090|579099|579100|579109|579111|579113|579115|579118|579123|579124|579126|579127|579128|579129|579130|579131|579132|579133|579134|579135|579136|579137|579138|579139|579140|579141|579142|579143|579144|579145|579146|579147|579148|579149|579150|579151|579152|579153|579154|579155|579156|579157|579158|579159|579160|579161|579162|579163|579164|579165|579166|579167|579168|579169|579170|579171|579172|579173|579174|579175|579176|579177|579178|579179|579180|579181|579182|579183|579184|579185|579186|579187|579188|579189|579190|579191|579192|579193|579194|579195|579196|579197|579198|579199|579200|579201|579202|579203|579204|579205|579206|579207|579208|579209|579210|579211|579212|579213|579214|579215|579216|579220|579221|579222|579223|579224|579225|579226|579227|579228|579229|579230|579231|579232|579233|579234|579235|579236|579237|579239|579240|579241|579242|579243|579244|579245|579246|579247|579248|579249|579250|579251|579252|579253|579254|579255|579256|579257|579258|579259|579260|579261|579262|579264|579265|579266|579267|579268|579269|579270|579271|579272|579273|579274|579275|579276|579277|579278|579279|579280|579281|579282|579283|579284|579285|579286|579287|579288|579289|579290|579291|579292|579293|579294|579295|579296|579297|579298|579299|579300|579301|579302|579303|579304|579305|579306|579307|579308|579309|579310|579311|579312|579313|579314|579315|579316|579317|579318|579319|579320|579322|579323|579324|579326|579327|579328|579329|579330|579331|579332|579333|579334|579335|579336|579337|579338|579339|579340|579341|579342|579343|579344|579345|579347|579348|579349|579350|579351|579352|579353|579354|579355|579356|579357|579358|579359|579360|579361|579362|579363|579364|579365|579366|579367|579368|579369|579370|579371|579372|579375|579378|579379|579380|579381|579382|579384|579385|579386|579390|579391|579392|579393|579394|579397|579398|579400|579402|579403|579404|579405|579406|579407|579408|579409|579410|579411|579412|579413|579414|579415|579416|579417|579418|579419|579420|579421|579422|579423|579424|579425|579426|579427|579428|579429|579430|579431|579432|579433|579434|579435|579436|579437|579438|579439|579440|579441|579442|579443|579444|579445|579446|579447|579448|579449|579450|579451|579452|579453|579454|579455|579456|579457|579458|579459|579460|579461|579462|579463|579464|579465|579467|579468|579469|579470|579471|579472|579473|579474|579475|579476|579477|579478|579479|579480|579482|579483|579484|579486|579487|579488|579489|579490|579492|579494|579495|579497|579498|579499|579500|579501|579502|579504|579505|579506|579507|579509|579510|579511|579512|579513|579514|579515|579516|579517|579518|579519|579520|579521|579522|579523|579524|579525|579526|579527|579528|579529|579530|579531|579532|579533|579534|579535|579536|579537|579538|579541|579542|579544|579545|579549|579551|579552|579553|579554|579557|579559|579561|579562|579563|579565|579568|579569|579570|579572|579573|579574|579575|579576|579577|579578|579581|579582|579583|579585|579586|579587|579588|579589|579593|579595|579598|579600|579602|579605|579607|579608|579609|579610|579611|579612|579613|579614|579616|579617|579618|579619|579620|579622|579625|579628|579629|579630|579631|579633|579634|579636|579637|579638|579639|579640|579641|579642|579643|579644|579645|579646|579647|579648|579649|579650|579651|579652|579653|579654|579655|579657|579658|579659|579660|579661|579662|579663|579664|579665|579666|579667|579668|579669|579670|579671|579672|579673|579674|579675|579676|579677|579678|579679|579680|579681|579682|579683|579684|579685|579686|579688|579689|579690|579695|579696|579700|579701|579703|579706|579709|579710|579715|579716|579720|579721|579722|579725|579727|579729|579730|579732|579735|579736|579737|579738|579739|579745|579746|579747|579748|579749|579751|579752|579753|579754|579755|579756|579757|579758|579759|579760|579761|579762|579763|579764|579765|579766|579767|579768|579769|579770|579771|579772|579773|579774|579775|579776|579777|579778|579780|579781|579782|579783|579785|579786|579788|579789|579791|579795|579796|579798|579799|579800|579801|579802|579804|579806|579808|579811|579812|579813|579814|579815|579817|579818|579819|579821|579822|579823|579824|579825|579826|579827|579828|579829|579830|579831|579832|579833|579835|579837|579838|579839|579840|579841|579842|579843|579844|579845|579846|579847|579848|579849|579850|579851|579852|579854|579855|579856|579857|579858|579859|579860|579861|579862|579863|579864|579865|579866|579867|579868|579869|579870|579871|579872|579873|579874|579875|579876|579877|579878|579879|579880|579881|579882|579883|579884|579885|579886|579887|579888|579889|579890|579891|579892|579893|579894|579895|579896|579897|579898|579899|579900|579901|579902|579903|579904|579905|579906|579907|579908|579909|579910|579911|579912|579914|579916|579917|579918|579920|579921|579922|579923|579925|579926|579927|579928|579930|579931|579932|579933|579934|579935|579936|579937|579938|579939|579940|579941|579943|579945|579946|579947|579952|579953|579954|579955|579956|579957|579959|579961|579962|579963|579964|579965|579966|579967|579968|579969|579970|579971|579972|579973|579974|579975|579976|579978|579979|579980|579981|579982|579986|579987|579989|579990|579991|579992|579993|579995|579997|579999|580000|580001|580002|580003|580004|580005|580006|580008|580011|580012|580013|580014|580015|580017|580018|580022|580023|580024|580025|580026|580027|580028|580029|580030|580031|580032|580033|580034|580035|580036|580037|580039|580040|580041|580042|580043|580044|580046|580047|580048|580051|580052|580053|580054|580060|580062|580066|580071|580072|580073|580075|580077|580079|580081|580085|580087|580088|580089|580090|580091|580092|580093|580095|580096|580097|580098|580101|580102|580103|580104|580105|580106|580108|580109|580111|580114|580115|580116|580117|580118|580119|580120|580121|580122|580123|580124|580125|580126|580127|580128|580129|580130|580131|580132|580135|580137|580138|580140|580141|580142|580146|580148|580154|580157|580158|580163|580166|580168|580172|580175|580176|580177|580180|580185|580188|580190|580191|580194|580198|580199|580201|580202|580204|580207|580210|580212|580213|580215|580217|580223|580224|580226|580227|580230|580241|580242|580244|580251|580256|580257|580258|580261|580264|580265|580267|580269|580270|580271|580272|580273|580274|580276|580278|580280|580281|580282|580283|580284|580286|580287|580288|580289|580290|580291|580292|580293|580294|580295|580296|580297|580298|580299|580300|580301|580302|580303|580304|580305|580306|580307|580308|580309|580310|580311|580312|580313|580314|580315|580316|580317|580318|580319|580320|580321|580322|580323|580324|580325|580326|580327|580328|580329|580330|580332|580333|580335|580337|580339|580340|580341|580342|580343|580344|580345|580347|580348|580352|580355|580356|580357|580358|580360|580362|580363|580364|580365|580368|580369|580370|580375|580377|580378|580379|580380|580382|580383|580386|580390|580391|580392|580395|580397|580399|580401|580402|580403|580404|580406|580407|580409|580411|580412|580413|580414|580415|580417|580418|580419|580423|580424|580425|580429|580431|580432|580434|580435|580437|580438|580440|580444|580446|580448|580449|580453|580456|580458|580459|580460|580461|580462|580463|580465|580466|580468|580469|580470|580471|580472|580473|580475|580476|580478|580480|580481|580482|580483|580485|580487|580488|580489|580490|580491|580492|580496|580498|580499|580500|580501|580502|580503|580504|580506|580507|580508|580509|580510|580511|580513|580514|580516|580518|580519|580520|580521|580522|580523|580524|580525|580526|580527|580528|580529|580530|580531|580532|580533|580534|580535|580536|580537|580538|580539|580540|580541|580542|580543|580544|580545|580546|580547|580548|580549|580550|580551|580552|580553|580555|580556|580557|580558|580559|580560|580561|580563|580565|580566|580567|580569|580571|580573|580574|580575|580576|580577|580578|580580|580581|580584|580585|580587|580590|580591|580592|580594|580598|580600|580602|580604|580605|580606|580608|580609|580613|580615|580616|580620|580621|580622|580624|580625|580627|580628|580629|580630|580631|580632|580634|580635|580636|580637|580640|580641|580643|580646|580647|580649|580650|580652|580654|580656|580660|580662|580663|580664|580665|580666|580667|580668|580670|580672|580673|580674|580675|580676|580677|580678|580679|580680|580681|580682|580685|580687|580688|580689|580690|580692|580693|580694|580695|580696|580697|580699|580701|580702|580703|580704|580705|580706|580707|580708|580709|580710|580711|580712|580713|580714|580715|580716|580717|580718|580719|580720|580721|580724|580725|580727|580728|580729|580730|580731|580732|580733|580735|580737|580738|580740|580741|580742|580743|580745|580747|580748|580749|580750|580751|580752|580753|580754|580755|580756|580757|580758|580759|580760|580761|580762|580763|580764|580765|580767|580769|580771|580772|580773|580774|580775|580776|580777|580778|580779|580781|580782|580784|580787|580788|580789|580790|580791|580792|580793|580794|580795|580796|580797|580798|580799|580800|580801|580802|580803|580804|580805|580806|580807|580808|580809|580810|580811|580812|580813|580814|580815|580816|580817|580818|580819|580820|580821|580822|580823|580824|580825|580826|580827|580828|580829|580830|580831|580832|580833|580834|580835|580836|580837|580838|580839|580840|580841|580842|580843|580844|580845|580846|580847|580848|580849|580850|580851|580852|580853|580854|580855|580856|580857|580858|580859|580860|580861|580862|580863|580864|580865|580866|580867|580868|580869|580870|580871|580872|580873|580874|580875|580876|580877|580878|580879|580880|580881|580882|580883|580884|580885|580886|580887|580888|580889|580890|580891|580892|580893|580894|580895|580896|580897|580898|580899|580901|580902|580903|580904|580905|580906|580907|580908|580909|580910|580911|580912|580913|580914|580915|580916|580917|580918|580919|580920|580921|580922|580923|580924|580925|580926|580927|580928|580929|580930|580931|580932|580933|580934|580935|580936|580937|580938|580939|580940|580941|580942|580943|580944|580945|580946|580947|580948|580949|580950|580951|580952|580953|580954|580955|580956|580957|580958|580959|580960|580961|580962|580963|580964|580965|580966|580967|580968|580969|580970|580971|580972|580973|580974|580975|580976|580977|580978|580979|580980|580981|580982|580983|580984|580985|580986|580987|580988|580989|580990|580991|580992|580993|580994|580995|580996|580997|580998|580999|581000|581001|581002|581003|581004|581005|581006|581007|581008|581009|581010|581011|581012|581013|581014|581015|581016|581017|581018|581019|581020|581021|581022|581023|581024|581025|581026|581027|581028|581029|581030|581031|581032|581033|581034|581036|581037|581038|581039|581040|581041|581042|581043|581044|581045|581046|581047|581048|581049|581050|581051|581052|581053|581054|581055|581056|581057|581058|581059|581060|581061|581062|581063|581064|581065|581066|581067|581068|581069|581070|581071|581072|581073|581074|581075|581076|581077|581078|581079|581080|581081|581082|581083|581084|581085|581086|581087|581088|581089|581090|581091|581092|581093|581094|581095|581096|581097|581098|581099|581100|581101|581102|581103|581104|581105|581106|581107|581108|581109|581110|581111|581112|581113|581114|581115|581116|581117|581118|581119|581120|581121|581122|581123|581124|581125|581126|581127|581128|581129|581130|581131|581132|581133|581134|581135|581136|581137|581138|581139|581140|581141|581142|581143|581144|581145|581146|581147|581148|581149|581150|581151|581152|581153|581154|581155|581156|581157|581158|581159|581160|581161|581162|581163|581164|581165|581166|581167|581168|581169|581170|581171|581172|581173|581174|581175|581176|581177|581178|581179|581180|581181|581182|581183|581184|581185|581186|581187|581188|581189|581190|581191|581192|581193|581194|581195|581196|581197|581198|581199|581200|904875", + "text": "History of neurodevelopmental disorder" + }, + { + "baseId": "17870|20901|513659|622917|980965", + "text": "Bradyopsia" + }, + { + "baseId": "17871|17872|17874|17876|17877|17878|17879|17880|17881|17882|17883|17884|17885|98205|98206|98207|98208|98209|177467|177468|177469|190196|190706|195189|195190|195191|195542|195845|204576|247327|264388|265263|268015|312220|312224|312226|312227|312228|312234|312236|317980|317983|317988|317997|317999|318000|318013|318014|324036|324037|324038|324040|324041|324042|324044|324047|324049|324050|324051|324056|324867|324875|324876|324880|324881|324891|324902|324905|324906|324909|324915|324916|324920|353161|359905|363710|421815|421816|432201|460447|514616|525708|525868|569968|581765|621324|639364|639365|639366|652057|652175|654019|654020|654021|654022|654023|654024|654025|654026|654027|654028|654029|654030|654031|654032|654033|654034|654035|654036|654037|654038|654039|654040|654041|654042|654043|654044|654045|654046|654047|654048|654049|654050|654051|654052|654053|654054|654055|654056|654057|654058|654059|654060|654061|654062|654063|654064|654065|654066|654067|654068|654069|654070|654071|654072|654073|654074|654075|654076|654077|654078|654079|654080|654081|654082|654083|654084|654085|654086|654087|654088|654089|654090|654091|654096|654097|654098|654099|695492|712577|737712|744578|768116|768117|775587|777924|783813|783814|783815|787711|788845|820290|837595|837596|837597|837598|851796|852292|866936|866937|866938|866939|866940|866941|866942|866943|866944|866945|866946|866947|868597|868598|919315|920292|935280|947180|956309|956310|956311|978847|978848|978849|978850|978851|978852|978853|978854|978855", + "text": "Deficiency of acetyl-CoA acetyltransferase" + }, + { + "baseId": "17886|17887|17888|17889|17890|17891|17892|101840|190588|195397|247333|250819|273022|287702|287703|287706|287710|287712|287713|287714|287718|287720|287730|287739|287741|287745|287749|288407|288417|288422|288423|288427|288429|288430|288433|288434|288435|288436|291248|291250|291262|291270|291280|291282|291283|291284|291287|291292|291394|291400|291417|291428|291429|291432|291444|291445|291447|291453|428105|509046|615923|623272|697709|697710|730166|790304|800477|818218|885713|885714|885715|885716|885717|885718|885719|885720|885721|885722|885723|885724|885725|885726|885727|885728|885729|885730|885731|885732|885733|885734|885735|885736|885737|885738|885739|885740|885741|885742|885743|885744", + "text": "Jalili syndrome" + }, + { + "baseId": "17893|17894|17894|17895|17896|17897|259726|550877", + "text": "Autosomal recessive congenital ichthyosis 4A" + }, + { + "baseId": "17894|17898|17899|17900|17901|17902|17903|259726|405611|423860|481231|609014|622218|622219|622220|622221|622222|622223|622224|792727|918733|918734", + "text": "Autosomal recessive congenital ichthyosis 4B" + }, + { + "baseId": "17900|236997|237008|237067|237268|237450|250545|250546|250548|250550|250551|250552|250553|250554|250555|250556|250557|284587|284588|284596|284598|284605|284608|284611|284612|284614|284617|284627|284629|284635|284636|284639|285285|285286|285289|285290|285293|285297|285300|285301|285302|285304|285307|285308|285309|285310|285313|285314|285320|285323|285326|285327|285328|287460|287462|287463|287464|287465|287471|287472|287473|287474|287477|287478|287483|287487|287488|287673|287675|287676|287677|287678|287697|287704|287715|287723|287724|287725|287729|287731|287732|287733|287734|287735|287736|287737|287740|287742|438190|481459|612594|612595|620057|620058|620741|622232|622233|697296|697297|708002|719581|719582|719589|719590|743855|747256|762881|778924|883675|883676|883677|883678|883679|883680|883681|883682|883683|883684|883685|883686|883687|883688|883689|883690|883691|883692|883693|883694|883695|883696|883697|883698|883699|883700|883701|883702|883703|883704|883705|883706|883707|883708|883709|883710|883711|883712|883713|883714|883715|883716|883717|883718|883719|883720|883721|883722|883723|887262|887263|887264|887265|887266|887267|887268|887269|887270|887271|887272", + "text": "Congenital ichthyosis of skin" + }, + { + "baseId": "17904|17905|17906|17907|17908|17909|17910|17911|286586|286593|286595|286596|286603|286606|286613|286614|286624|286625|286633|286634|286637|286638|287306|287312|287313|287314|287317|287319|287321|287324|287325|287332|287335|287341|287353|287356|287357|287358|287366|289647|289648|289657|289658|289659|289661|289664|289667|289668|289684|289685|290072|290073|290074|290078|290079|290080|290092|290098|290100|290101|290102|290107|290108|290110|290114|290133|290141|290142|788755|885073|885074|885075|885076|885077|885078|885079|885080|885081|885082|885083|885084|885085|885086|885087|885088|885089|885090|885091|885092|885093|885094|885095|885096|885097|885098|885099|885100|885101|885102|885103|885104|885105|885106|885107|885108|885109|885110|885111|885112|885113|885114|885115|885116", + "text": "Factor v and factor viii, combined deficiency of, 2" + }, + { + "baseId": "17904|23101|23102|23103|23104|23105|256704|256705|256707|256708|286640|287359|289645|289646|289694|289695|289719|289722|290093|331983|331985|331997|331998|332005|332013|332016|342208|342210|342211|342217|342218|347566|347568|347572|347576|347584|347591|347592|347593|347599|347600|347604|347607|347608|347609|347610|347613|347617|347618|347623|348942|348948|348953|348955|348956|348960|348963|348964|348965|348968|348971|348973|348974|615328|615604|788955|879556|879557|879558|879559|879560|879561|879562|879563|879564|879565|879566|879567|879568|879569|879570|879571|879572|879573|879574|879575|879576|879577|879578|879579|879580|879581|879582|879583|879584|879585|879586|879587|879588|879589|879590|879591|879592|879593|879594|879595|879596|879597|879598|879599|880670", + "text": "Combined deficiency of factor V and factor VIII, 1" + }, + { + "baseId": "17912|17913|17914|17915|17916|17917|45327|45330|45331|45332|45333|187183|196754|196755|196756|196757|196758|236749|238334|238335|238336|246888|249983|249984|249986|249987|249988|249989|249990|260587|260588|260592|260593|260608|260609|260620|260626|280890|280891|280895|280902|280908|280911|280925|280929|280937|280941|280946|280951|281418|281421|281423|281431|281441|281446|281453|281456|281460|281473|282664|282665|282667|282690|282694|282939|282943|282945|282961|282962|282969|282970|282973|282975|354066|354068|362650|362651|362652|362653|362654|362655|362656|362657|362658|362659|362660|389422|391339|391346|391356|391359|391368|391371|391411|391518|391525|391530|391531|424995|424996|424997|424998|424999|431937|431938|431944|434136|434137|434140|442868|446937|448217|448243|448246|448250|448373|448374|483166|486860|486880|486881|486886|486915|486918|486922|498542|498556|508771|515983|515985|515988|516028|516048|516054|516137|516139|516151|516153|516156|538521|538526|538527|557107|557385|558559|588440|609293|612369|612370|616147|616151|616154|616162|616170|616172|616174|616178|616185|616190|616192|616199|616203|621085|621086|628162|628163|628164|628165|628166|628167|628168|650768|672392|683374|685108|685816|685819|690647|696802|780743|789411|824253|824254|824255|824256|864631|864632|864633|864634|864635|864636|864637|864638|864639|864640|864641|864642|864643|864644|864645|864646|864647|864648|864649|864650|864651|907280|907371|907396|907419|907456|916828|922119|930604|942037|942038|952474|970696|970697|976694|976695|976697|976698", + "text": "Familial hypercholesterolemia 3" + }, + { + "baseId": "17912|17914|17917|18722|18724|18725|18727|18728|18729|18730|18731|18733|18734|18735|18736|18737|18738|18739|18740|18741|18742|18743|18744|18745|18748|18749|18750|18751|18752|18754|18755|18756|18758|18760|18761|18762|18763|18765|18766|18767|18768|18769|18770|18771|18772|18773|18774|18775|18776|18777|18778|18779|18780|18781|18782|18783|18784|18785|18786|23676|23697|31642|32929|32936|32975|39584|45113|45114|45115|45116|45117|45118|45119|45120|45121|45122|45123|45124|45125|45126|45127|45327|45328|45329|45330|45331|45332|45333|48709|71434|78990|78991|78993|78994|78995|80399|85303|133865|133866|133867|133868|133869|133870|133871|133872|133873|133874|133875|171195|171196|171197|171198|171199|171200|171201|171202|171203|171204|171205|171206|171207|171208|171209|171210|171211|171212|171213|171214|171215|171216|171217|171218|171219|171220|171221|171222|171223|171224|172183|178500|178502|178503|178733|178734|181222|181223|181224|181226|181228|181229|181231|181232|181233|181234|181238|181239|181240|181243|181244|181246|181247|181249|181250|181251|181252|181253|181255|181256|181257|181258|181259|181261|181262|181264|181265|181266|181268|181269|181270|181271|181272|181275|187182|187183|187184|187185|187186|187188|187189|187190|187191|187192|187193|187194|187195|196754|196755|196756|196757|196758|196823|198010|198011|198012|198013|198014|198015|198016|198017|198018|215237|215238|215239|215240|215241|215242|215243|215244|215245|215246|215247|215248|215561|224548|224549|226398|226399|226400|226401|226402|226972|227094|227095|227096|227097|227098|227328|227401|228101|228102|228103|228104|228105|228106|228107|228108|228109|228110|228111|228112|228113|228114|228115|228116|228117|228118|228119|228120|228121|228122|228123|228124|228125|228126|228127|228128|228129|228130|228131|228132|228133|228134|228135|228136|228137|228138|228139|228140|228141|228142|228143|228144|228145|228146|228147|228148|228149|228150|228151|228152|228153|228154|228155|228156|228157|228158|228159|228160|228161|228162|228163|228164|228165|228166|228167|228168|228169|228170|228171|228172|228173|228174|228175|228176|228177|228178|228179|228180|228181|228182|228183|228184|228185|228186|228187|228188|228189|228190|228191|228192|228193|228194|228195|228196|228197|228198|228199|228200|228201|228202|228203|228204|228205|228206|228207|228208|230978|230979|230980|230981|230982|236749|236950|237306|238334|238335|238336|238599|238600|238603|238604|238608|238609|238613|238615|238616|243265|243266|243267|243268|243269|243270|243271|243272|243273|243274|243275|243276|243277|243279|245299|245300|245301|245302|245303|245304|245305|245307|245308|245309|245310|245311|245312|245313|245314|245315|245316|245317|245318|245319|245320|245321|245322|245323|245324|245325|245326|245327|245328|245329|245330|245331|245332|245333|245334|245335|245336|245337|245338|245339|245340|245341|245342|245343|245344|245345|245346|245347|245348|245349|245350|245351|245352|245353|245354|245355|245356|245357|245358|245359|245360|245361|245362|245363|245364|245365|245366|245367|245368|245369|245370|245371|245372|245373|245374|245375|245376|245377|245378|245379|245380|245381|245382|245383|245384|245385|245386|245387|245388|245389|245390|245391|245392|245393|245394|245395|245396|245397|245398|245399|245400|245401|245402|245403|245404|245405|245406|245407|245408|245409|245410|245411|245412|245413|245415|245416|245417|245418|245419|245420|245421|245422|245423|245424|245425|245426|245427|245428|245429|245430|245431|245432|245433|245434|245435|245436|245437|245438|245439|245440|245441|245442|245443|245444|245445|245446|245447|245448|245449|245450|245451|245452|245453|245454|245455|245456|245457|245458|245459|245460|245461|245462|245463|245464|245465|245466|245467|245468|245469|245470|245471|245472|245473|245474|245475|245476|245477|245478|245479|245480|245481|245482|245483|245484|245485|245486|245487|245488|245489|245490|245491|245492|245493|245494|245495|245496|245497|245498|245499|245500|245501|245502|245503|245504|245505|245506|245507|245508|245509|245510|245511|245512|245513|245514|245515|245516|245517|245518|245519|245520|245521|245522|245523|245524|245525|245526|245527|245528|245529|245530|245531|245532|245533|245534|245535|245536|245537|245538|245539|245540|245541|245542|245543|245544|245545|245546|245547|245548|245549|245550|245551|245552|245553|245554|245555|245556|245557|245558|245559|245560|245561|245562|245563|245564|245565|245566|245567|245568|245569|245570|245571|245572|245573|245574|245575|245576|245577|245578|245579|245580|245581|245582|245583|245584|245585|245586|245587|245588|245589|245590|245591|245592|245593|245594|245595|245596|245597|245598|245599|245600|245601|245602|245603|245604|245605|245606|245607|245608|245609|245610|245611|245612|245613|245614|245615|245616|245617|245618|245619|245620|245621|245622|245623|245624|245625|245626|245627|245628|245629|245630|245631|245632|245633|245634|245635|245636|245637|245638|245639|245640|245641|245642|245643|245644|245645|245646|245647|245648|245649|245650|245651|245652|245653|245654|245655|245656|245657|245658|245659|245660|245661|245662|245663|245664|245665|245666|245667|245668|245669|245670|245671|245672|245673|245674|245675|245676|245677|245678|245679|245680|245681|245682|245683|245684|245685|245686|245687|245689|245690|245691|245693|245694|245695|245696|245697|245698|245699|245700|245701|245702|245703|245704|245705|245706|245707|245708|245709|245710|245711|245712|245713|245714|245715|245716|245717|245718|245719|245720|245721|245722|245723|245724|245725|245726|245727|245728|245729|245730|245731|245732|245733|245734|245735|245736|245737|245738|245739|245740|245741|245742|245743|245744|245745|245746|245747|245748|245749|245750|245751|245752|245753|245754|245755|245756|245757|245758|245759|245760|245761|245762|245763|245764|245765|245766|245767|245768|245769|245770|245771|245772|245773|245774|245775|245776|245777|245778|245779|245780|245781|245782|245783|245784|245785|245786|245787|245788|245789|245790|245791|245792|245793|245794|245795|245796|245797|245798|245799|245800|245801|245802|245803|245804|245805|245806|245807|245808|245809|245810|245811|245812|245813|245814|245815|245816|245817|245818|245819|245820|245821|245822|245823|245824|245825|245826|245827|245828|245829|245830|245831|245832|245833|245834|245835|245836|245837|245838|245839|245840|245841|245842|245843|245844|245845|245846|245847|245848|245849|245850|245851|245852|245853|245854|245855|245856|245857|245858|245859|245860|245861|245862|245863|245864|245865|245866|245867|245868|245869|245870|245871|245872|245873|245874|245875|245876|245877|245878|245879|245880|245881|245882|245883|245884|245885|245886|245887|245888|245889|245890|245891|245892|245893|245894|245895|245896|245897|245898|245899|245900|245901|245902|245903|245904|245905|245906|245907|245908|245909|245910|245911|245912|245913|245914|245915|245916|245917|245918|245919|245920|245921|245922|245923|245924|245925|245926|245927|245928|245929|245930|245931|245932|245933|245934|245935|245936|245937|245938|245939|245940|245941|245942|245943|245944|245945|245946|245947|245948|245949|245950|245951|245952|245953|245954|245955|245956|245957|245958|245959|245960|245961|245964|245965|245966|245967|245968|245969|245970|245971|245972|245973|245974|245975|245976|245977|245978|245979|245980|245981|245982|245983|245984|245985|245986|245987|245988|245989|245990|245991|245992|245993|245994|245995|245996|245997|245998|245999|246000|246001|246002|246003|246004|246005|246006|246007|246008|246009|246010|246011|246012|246013|246014|246015|246016|246017|246018|246019|246020|246021|246022|246023|246024|246025|246026|246027|246028|246029|246030|246031|246032|246033|246034|246035|246036|246037|246038|246039|246040|246041|246042|246043|246044|246045|246046|246047|246048|246049|246050|246051|246052|246053|246054|246055|246056|246057|246058|246059|246060|246061|246062|246063|246064|246065|246066|246067|246068|246069|246070|246071|246072|246073|246074|246075|246076|246077|246078|246079|246080|246081|246082|246083|246084|246085|246086|246087|246088|246089|246090|246091|246092|246093|246094|246095|246096|246097|246098|246099|246100|246101|246102|246103|246104|246105|246106|246107|246108|246109|246110|246111|246112|246113|246114|246115|246116|246117|246118|246119|246120|246121|246122|246123|246124|246125|246126|246127|246128|246129|246130|246131|246132|246133|246134|246135|246136|246137|246138|246139|246140|246141|246142|246143|246144|246145|246146|246147|246148|246149|246150|246151|246152|246153|246154|246155|246156|246157|246158|246159|246160|246161|246162|246163|246164|246165|246166|246167|246168|246169|246170|246171|246172|246173|246174|246175|246176|246177|246178|246179|246180|246181|246182|246183|246184|246185|246186|246187|246188|246189|246190|246191|246192|246193|246194|246195|246196|246197|246198|246199|246200|246201|246202|246203|246204|246205|246206|246207|246208|246209|246210|246211|246212|246213|246214|246215|246216|246217|246218|246219|246220|246221|246222|246223|246224|246225|246226|246227|246228|246229|246230|246231|246232|246233|246234|246235|246236|246237|246238|246239|246240|246241|246242|246243|246244|246245|246246|246247|246248|246249|246250|246251|246252|246253|246254|246255|246256|246257|246258|246259|246260|246261|246262|246263|246264|246265|246266|246267|246268|246269|246270|246271|246272|246273|246274|246275|246276|246277|246278|246279|246280|246281|246282|246283|246285|246286|246287|246288|246289|246290|246291|246292|246293|246294|246295|246296|246297|246298|246299|246300|246301|246302|246303|246304|246305|246306|246307|246308|246309|246310|246311|246312|246313|246314|246315|246316|246317|246318|246319|246320|246321|246322|246323|246324|246325|246326|246327|246328|246329|246330|246331|246332|246333|246334|246335|246336|246337|246338|246339|246340|246341|246342|246343|246344|246345|246346|246347|246348|246349|246350|246351|246352|246353|246354|246355|246356|246357|246358|246359|246360|246361|246362|246363|246364|246365|246366|246367|246368|246369|246370|246371|246372|246373|246374|246375|246376|246377|246378|246379|246380|246381|246382|246383|246384|246385|246386|246387|246388|246389|246390|246391|246392|246393|246394|246395|246396|246397|246398|246399|246400|246401|246402|246403|246404|246405|246406|246407|246408|246409|246410|246411|246412|246413|246414|246415|246416|246417|246418|246419|246420|246421|246422|246423|246424|246425|246426|246427|246428|246429|246430|246431|246432|246433|246434|246435|246436|246437|246438|246439|246440|246441|246442|246443|246444|246445|246446|246447|246448|246449|246450|246451|246452|246453|246454|246455|246456|246457|246458|246459|246460|246461|246462|246463|246464|246465|246466|246467|246468|246469|246470|246471|246472|246473|246474|246475|246476|246477|246478|246479|246480|246481|246482|246483|246484|246485|246486|246487|246488|246489|246490|246491|246492|246493|246494|246495|246496|246497|246498|246499|246500|246501|246502|246503|246504|246505|246506|246507|246508|246509|246510|246511|246512|246513|246514|246515|246516|246517|246518|246519|246520|246521|246522|246523|246524|246525|246526|246527|246528|246529|246530|246531|246532|246533|246534|246535|246536|246537|246538|246539|246540|246541|246542|246543|246544|246545|246546|246547|246548|246549|246550|246551|246552|246553|246554|246555|246556|246557|246558|246559|246560|246561|246562|246563|246564|246565|246566|246567|246568|246569|246570|246571|246572|246573|246574|246575|246576|246577|246578|246579|246580|246581|246582|246583|246584|246585|246586|246587|246588|246589|246590|246591|246592|246593|246594|246595|246596|246597|246598|246599|246600|246601|246602|246603|246604|246605|246606|246607|246608|246609|246610|246611|246612|246613|246614|246615|246616|246617|246618|246619|246620|246621|246622|246623|246624|246625|246626|246627|246628|246629|246630|246631|246632|246633|246634|246635|246636|246637|246638|246639|246640|246641|246642|246643|246644|246645|246646|246647|246648|246649|246650|246651|246652|246653|246654|246655|246656|246657|246658|246659|246660|246661|246662|246663|246664|246665|246666|246667|246668|246669|246670|246671|246672|246673|246674|246675|246676|246677|246678|246679|246680|246681|246682|246683|246684|246685|246686|246687|246688|246689|246690|246691|246692|246693|246694|246695|246696|246697|246698|246699|246700|246701|246702|246703|246704|246705|246706|246707|246708|246709|246710|246711|246712|246713|246714|246715|246716|246717|246718|246719|246720|246721|246722|246723|246724|246725|246726|246727|246728|246729|246730|246731|246732|246733|246734|246735|246736|246737|246738|246739|246740|246741|246909|246910|246911|246912|246913|246914|246915|248533|249983|249984|249986|249987|249988|249989|249990|250516|250517|250518|250519|250520|250522|250523|250525|250526|250527|250529|250530|250531|250532|250533|250534|256753|256754|260587|260588|260589|260590|260591|260592|260593|260594|260595|260596|260597|260598|260599|260600|260601|260602|260603|260604|260605|260606|260607|260608|260609|260610|260611|260612|260613|260614|260615|260616|260617|260618|260619|260620|260621|260622|260623|260624|260625|260626|260627|260628|260629|260630|260631|260632|260633|260634|260635|260636|260637|260638|260639|260640|260641|260642|260643|260644|260645|260646|260647|260648|260649|260650|260651|260652|260654|260656|260657|260658|260659|260660|260661|260662|260663|260664|260665|260666|265379|280237|280258|280644|280907|280912|280921|280922|280927|280928|280943|280947|281413|281414|281418|281421|281423|281462|281464|281482|281488|281491|281492|281950|282654|282656|282659|282664|282665|282680|282688|282691|282692|282936|282943|282952|282971|282972|282974|282976|282977|284402|284413|284416|284421|284434|284445|284451|284454|284455|284456|284508|284513|284515|284527|284529|284531|285073|285074|285075|285090|285091|285092|285100|285117|285119|285145|285188|285193|285207|285211|287134|287185|287196|287224|287248|287249|287258|287262|287263|287264|287276|287316|287326|287334|287372|287496|287497|287500|287501|287521|287529|287554|287575|287583|287586|287591|287593|332455|332458|332460|332463|332467|332469|332470|332472|332476|332482|332484|332486|332488|332490|332491|332493|342625|342628|342630|342638|342639|342642|342647|342649|342654|342658|342660|342664|342676|342679|342685|342690|342694|342696|342698|342700|342703|348002|348004|348007|348008|348009|348010|348011|348015|348025|348029|348032|348033|348037|348049|348051|348052|348054|348063|349291|349292|349295|349296|349302|349303|349307|349308|349311|349312|349315|349316|349319|349320|349323|349324|349327|349330|349331|349334|349335|349338|349339|349342|349343|349345|354066|354067|354068|354069|354070|354071|354072|354073|354074|354075|354076|354077|354078|354079|354080|354081|354082|354083|354084|354085|354087|354088|354089|354090|354091|354092|354093|354094|354095|354096|354097|354098|354099|354100|354102|359028|359029|360376|361884|361885|362654|362659|362660|362661|362662|362663|362664|362665|362666|362667|362668|362669|362670|362671|362672|362673|362674|362675|362676|362677|362678|362679|362680|362681|362682|362683|362684|362685|362686|362687|362688|362689|362690|362691|362692|362693|362694|362695|362696|362697|362698|362699|362700|362701|362702|362703|362704|362705|362706|362707|362708|362709|362710|362711|362712|362713|362714|362715|362716|362717|362718|362719|362720|362721|362722|362723|362724|362725|362726|362727|362728|362729|362730|362731|362732|362733|366106|366335|389420|389422|389486|389492|389497|389499|389506|390608|390609|390610|390611|390612|390613|390614|390615|390616|390617|390618|390619|390620|390621|390622|390623|390624|390625|390626|390627|390628|390629|390630|390631|390632|390633|390634|390635|390636|390637|390638|390639|390640|390641|390642|390643|390644|390645|391339|391356|391359|391518|392299|392380|392470|392489|392541|402815|402817|402821|402822|403130|403133|403134|403140|403364|403593|403607|403615|424286|424287|424288|424289|424290|424291|424292|424293|424294|424295|424296|424297|424298|424299|424300|424301|424302|424303|424304|424305|424306|424307|424308|424309|424310|424311|424312|424313|424314|424315|424316|424317|424318|424319|424320|424321|424322|424323|424324|424325|424326|424327|424328|424329|424330|424331|424332|424333|424334|424335|424336|424337|424338|424339|424340|424341|424342|424343|424345|424346|424994|424995|424996|424997|424998|424999|425000|425001|425002|425003|425004|425005|425006|425007|425008|425009|425010|425011|425012|425013|425014|425015|425016|425017|425018|425019|425020|425021|425022|425023|425024|425025|425026|425027|425028|425029|425030|425031|425032|425033|425034|425035|425036|425037|425038|425039|425040|425041|425042|425043|425044|425045|425046|425047|425048|425049|425050|425051|425052|425053|425054|425055|425056|425057|425058|425059|425060|425061|425062|425063|425064|425065|425464|426727|426728|431937|431938|431939|431940|431941|431942|431943|431944|431945|431946|431947|431948|431949|431950|431951|431952|431953|431954|431955|431956|431957|431958|431959|431960|431961|431962|431963|431964|431965|431966|432340|432341|434113|434132|434133|434134|434135|434136|434137|434139|434140|434141|434142|434143|434144|434145|434147|434148|434149|434150|434151|434152|434153|434154|434155|434156|434157|434158|434159|434160|434161|434162|434163|434165|434166|434167|434168|434169|434170|434173|434178|434179|434181|434182|434183|434184|434185|434186|434187|434188|434189|434190|434191|434192|434193|434194|434195|434196|434197|434198|434199|434200|434201|434202|434203|434204|434205|434206|434207|434208|434209|434210|434211|434212|434213|434214|434215|434216|434217|434218|434219|434220|434221|434222|434223|434224|434225|434226|434227|434228|434229|434230|434231|434232|434233|434234|434235|434236|434237|434238|434239|434240|434241|434242|434243|434244|434245|434246|434247|434248|434249|434250|434251|434252|434253|434254|434255|434256|434257|434258|434259|434260|434261|434262|434263|434264|434265|434266|434267|434268|434269|434270|434271|434272|434273|434274|434275|434276|434277|434278|434279|434280|434281|434282|434283|434284|434285|434286|434287|434288|434289|434290|434291|434292|434293|434294|434295|434296|434297|434298|434299|434300|434301|434302|434303|434304|434305|434306|434307|434308|434309|434310|434311|434312|434313|434314|434315|434316|434317|434318|434319|434320|434321|434322|434323|434324|434325|434326|434327|434328|434329|434330|434331|434332|434333|434334|434335|434336|434337|434338|434339|434340|434341|434342|434343|434344|434345|434346|434347|434348|434349|434350|434351|434352|434353|434799|434800|434801|434802|434804|434805|434806|434807|434808|434809|434810|434811|434812|434813|434814|434816|434817|434818|434819|434820|434821|434822|434823|434824|434825|434826|434827|434828|434829|434830|434831|434832|434833|434834|434835|434836|434837|434838|434839|434840|434841|434842|434843|434844|434845|434846|434847|434848|434849|434850|434851|434852|434853|434854|434855|434856|434857|434858|434859|434860|439496|443153|448374|450308|450435|450442|450471|450571|450581|468135|468139|468144|468439|469072|469454|469711|469713|470338|483166|483168|483170|483174|483177|483179|483180|483181|483184|483188|483198|483200|483203|483206|483208|483209|483210|483213|483214|483218|483219|483220|483222|483223|483225|483227|483228|483229|483249|485254|485258|485450|485551|485552|486884|486922|486938|488034|498556|506479|514364|514365|514366|514367|514368|514369|514370|514371|514372|514373|514374|514375|514376|514377|514378|514379|514380|514381|514382|514383|514384|514385|514386|517658|517691|532348|532355|532648|532649|532657|532667|532676|532822|533080|538521|538522|538523|538524|538525|538526|538527|538528|538529|538530|538531|538532|538533|538534|538535|538536|538537|538538|538539|538540|538541|538542|538543|538544|538545|538546|538547|538548|538549|538550|538551|538552|538553|538554|538555|538556|538557|538558|538559|538560|538561|538562|538563|538564|538565|538566|538567|538568|538572|538573|538575|538576|538577|538578|538579|538580|538584|538585|538586|538587|538588|538589|538590|538591|538592|538593|538594|538595|538596|538597|538598|539017|570262|570268|570466|570469|572695|572698|572700|572701|572866|572867|572871|574858|612328|616240|616464|618955|618971|672016|672154|672155|672156|672380|672452|672453|676937|676938|676939|676940|676941|676942|676943|676944|688957|790164|799096|799097|799098|816444|857605|857606|857607|857608|857609|858485|858486|879825|879826|879827|879828|879829|879830|879831|879832|879833|879834|879835|879836|879837|879838|879839|879840|879841|879842|879843|879844|879845|879846|879847|879848|879849|879850|879851|879852|879853|879854|879855|879856|879857|879858|879859|879860|879861|879862|879863|879864|879865|879866|879867|879868|880688|907345|914692|914728|961224|961225|964503|964693|966109|966110|966111|966112|966113|966114|966115|966116|966117|966118|966119|966120|966121|966122|966123|966124|966125|966126|966127|966421|966422|966424|967247|971110|974890|976696|980838", + "text": "Familial hypercholesterolemia 1" + }, + { + "baseId": "17915|17916|17917|17919", + "text": "Low density lipoprotein cholesterol level quantitative trait locus 1" + }, + { + "baseId": "17915|17916|18722|18724|18725|18727|18728|18729|18730|18731|18733|18734|18735|18736|18737|18738|18741|18765|18766|18768|18769|18770|18772|18774|18775|18776|18777|18778|18779|18780|18783|18785|19815|19820|32923|32926|32929|32934|32935|32936|45113|45114|45115|45116|45117|45118|45119|45122|45123|45124|45125|45127|45329|48709|71434|78990|78991|78992|78993|78994|78995|85303|85305|85309|133865|133866|133867|133868|133869|133870|133871|133872|133873|133874|133875|171195|171196|171197|171198|171199|171200|171201|171202|171203|171204|171205|171206|171207|171208|171209|171210|171211|171212|171213|171214|171215|171216|171217|171218|171219|171220|171221|171222|171223|171224|172183|178500|178503|178734|181222|181224|181226|181228|181229|181232|181233|181236|181238|181240|181242|181243|181244|181245|181246|181247|181248|181249|181250|181251|181252|181253|181256|181257|181258|181259|181262|181263|181265|181268|181269|181270|181272|181275|181277|187182|187183|187189|187190|187191|187193|187194|196756|196758|196823|196824|198011|198012|198013|198014|198015|198016|198018|215238|215240|215241|215242|215243|215244|215245|215246|215247|215248|215561|224548|226398|226399|226400|226401|226402|226972|227097|227401|228114|228115|228116|228117|228119|228120|228125|228127|228128|228129|228130|228131|228132|228135|228140|228142|228143|228144|228145|228146|228147|228149|228150|228155|228156|228157|228160|228161|228162|228163|228164|228169|228172|228173|228174|228176|228179|228180|228184|228189|228192|228193|228195|228197|228201|228202|228203|228204|228206|230978|230980|236749|236950|238334|238336|238598|238599|238600|238601|238602|238603|238604|238605|238607|238608|238609|238610|238612|238613|238615|238616|238617|238618|243266|243268|243269|243276|243277|243278|245300|245302|245308|245310|245311|245322|245323|245329|245330|245334|245337|245339|245347|245351|245364|245367|245368|245373|245376|245391|245413|245417|245420|245422|245424|245425|245428|245440|245448|245450|245457|245460|245461|245464|245466|245469|245470|245475|245480|245485|245492|245519|245542|245549|245551|245554|245555|245557|245561|245574|245589|245592|245593|245595|245597|245598|245601|245609|245614|245624|245645|245646|245648|245665|245666|245672|245683|245694|245696|245698|245709|245713|245725|245730|245735|245741|245745|245751|245757|245761|245769|245773|245782|245791|245793|245802|245804|245805|245808|245821|245822|245832|245834|245847|245864|245865|245872|245873|245881|245887|245888|245891|245896|245901|245904|245907|245914|245916|245918|245923|245924|245927|245928|245945|245946|245949|245958|245960|245961|245966|245971|245975|245980|245985|245988|245991|245996|245999|246002|246008|246019|246029|246031|246041|246042|246052|246054|246061|246062|246066|246070|246072|246076|246078|246089|246092|246097|246098|246102|246106|246112|246120|246122|246124|246138|246139|246140|246150|246152|246161|246167|246170|246171|246178|246184|246188|246190|246194|246200|246205|246209|246219|246223|246227|246232|246250|246253|246265|246278|246280|246293|246294|246297|246298|246300|246301|246322|246323|246330|246347|246356|246364|246366|246371|246373|246375|246378|246384|246388|246391|246393|246395|246397|246403|246407|246411|246427|246430|246432|246438|246448|246458|246468|246470|246478|246486|246513|246518|246522|246530|246551|246552|246555|246558|246585|246591|246599|246601|246612|246615|246621|246627|246628|246635|246637|246645|246888|246909|246910|246911|246912|246914|246915|249990|249992|250517|250518|250520|250521|250523|250524|250525|250526|250527|250528|250529|250531|250533|256754|260591|260592|260609|260620|260625|260627|260630|260633|260634|260635|260636|260637|260638|260640|260642|260643|260645|260647|260649|265379|280227|280228|280603|280604|280615|280902|281418|281421|281423|281431|281930|282664|282667|282943|282945|282961|282962|284396|284408|284413|284416|284417|284418|284420|284421|284424|284426|284429|284442|284445|284450|284451|284456|284507|284513|284515|284527|284529|284530|285067|285072|285073|285074|285075|285086|285087|285090|285091|285092|285098|285119|285120|285153|285167|285188|285193|285196|285207|285211|285218|285221|287134|287155|287185|287196|287206|287208|287217|287224|287234|287248|287250|287258|287259|287262|287263|287276|287316|287334|287361|287372|287521|287524|287529|287532|287538|287554|287572|287575|287583|287586|287589|287591|287592|287601|287608|287610|332455|332458|342625|342628|348002|348004|354066|354067|354070|354071|354072|354073|354077|354078|354080|354081|354087|354088|354091|354095|354097|354099|359413|360376|361884|361885|362650|362653|362654|362655|362656|362657|362658|362659|362660|362669|362670|362690|362701|362707|362713|362725|362727|362732|362735|366100|366106|366281|366335|366341|366934|366937|389418|389420|389421|389422|389465|389476|389479|389480|389484|389485|389492|389494|389497|389499|389506|390611|390623|390627|390628|390630|391368|391518|391525|391530|392294|392296|392299|392377|392480|392486|392541|392547|392557|392562|403128|403130|403131|403134|403135|403140|403585|403598|403603|403605|403607|403610|405552|410433|410434|421359|424286|424288|424289|424291|424308|424318|424342|424344|424995|424996|424997|424998|424999|425004|425008|425009|425011|425012|425014|425029|425030|425041|425047|425052|425059|425464|425465|431944|431946|431956|434136|434137|434140|434143|434147|434148|434153|434156|434163|434164|434165|434167|434168|434169|434170|434171|434180|434192|434200|434208|434210|434212|434215|434219|434224|434226|434229|434233|434237|434240|434242|434245|434249|434257|434260|434268|434274|434278|434285|434288|434292|434297|434303|434306|434315|434316|434325|434329|434342|434347|434819|434846|442802|442868|443150|443151|443152|443153|446028|446029|447740|448217|448243|448246|448250|448373|448374|450283|450285|450291|450292|450308|450405|450421|450435|450437|450439|450442|450444|450445|450447|450456|450464|450471|450478|450488|450495|450498|450540|450551|450562|450563|450571|450573|450579|450581|468439|470338|481122|483166|483168|483170|483177|483187|483194|483198|483203|483210|483211|483214|483216|483219|483223|483224|483225|483226|483227|483233|483236|483238|483249|483253|485552|486860|486880|486881|486886|486915|486918|486922|486924|486938|487794|488023|488024|488031|488033|498542|498556|498743|499491|499500|499510|499712|499717|499894|499896|499933|499950|508771|511390|514364|514366|514371|514379|514382|514383|515983|515990|516028|516048|516054|516137|516139|516151|516156|517546|517552|517565|517576|517579|517590|517595|517603|517613|517646|517658|517662|517664|517666|517676|517685|517686|517690|517692|517694|517696|517701|517714|517725|517728|517730|517803|517808|517818|517821|517829|517842|517848|517854|517856|517858|517865|517869|532485|532646|532648|532649|532650|532659|532672|532676|533077|533083|538521|538522|538523|538524|538525|538526|538527|538530|538531|538533|538534|538535|538536|538537|538538|538542|538546|538547|538548|538549|538551|538552|538553|538554|538556|538559|538560|538561|538562|538563|538575|538579|539018|557107|557279|557385|557826|557830|557832|557873|557879|557883|557885|558469|558559|559057|559059|559063|559065|560775|560798|560803|570267|572173|572852|572853|572855|572864|572866|574859|585794|588440|611008|611009|611010|611012|611282|616135|616136|616137|616138|616139|616140|616141|616142|616143|616144|616145|616146|616147|616148|616149|616150|616151|616152|616153|616154|616155|616156|616157|616158|616159|616160|616161|616162|616163|616164|616165|616166|616167|616168|616169|616170|616171|616172|616173|616174|616175|616176|616177|616178|616179|616180|616181|616182|616183|616184|616185|616186|616187|616188|616189|616190|616191|616192|616193|616194|616195|616196|616197|616198|616199|616200|616201|616202|616203|616204|616227|616228|616229|616230|616231|616232|616233|616234|616235|616236|616237|616238|616239|616240|616241|616242|616243|616244|616245|616246|616247|616248|616249|616250|616251|616252|616253|616254|616255|616256|616257|616258|616259|616260|616261|616262|616263|616264|616265|616266|616267|616268|616269|616270|616271|616272|616273|616274|616275|616276|616277|616278|616279|616280|616281|616282|616283|616284|616285|616286|616287|616288|616289|616290|616291|616292|616293|616294|616295|616296|616297|616298|616299|616300|616301|616302|616303|616304|616305|616306|616307|616308|616309|616310|616311|616312|616313|616314|616315|616316|616317|616318|616319|616320|616321|616322|616323|616324|616325|616326|616327|616328|616329|616330|616331|616332|616333|616334|616335|616336|616337|616338|616339|616340|616341|616342|616343|616344|616345|616346|616347|616348|616349|616350|616351|616352|616353|616354|616355|616356|616357|616358|616359|616360|616361|616362|616363|616364|616365|616366|616367|616368|616369|616370|616371|616372|616373|616374|616375|616376|616377|616378|616379|616380|616381|616382|616383|616384|616385|616386|616387|616388|616389|616390|616391|616392|616393|616394|616395|616396|616397|616398|616399|616400|616401|616402|616403|616404|616405|616406|616407|616408|616409|616410|616411|616412|616413|616414|616415|616416|616417|616418|616419|616420|616421|616422|616423|616424|616425|616426|616427|616428|616429|616430|616431|616432|616433|616434|616435|616436|616437|616438|616439|616440|616441|616442|616443|616444|616445|616446|616447|616448|616449|616450|616451|616452|616453|616454|616455|616456|616457|616458|616459|616460|616461|616462|616463|616464|616465|616466|616467|616468|616469|616470|616471|616472|616473|616474|616475|616476|616477|616478|616479|616480|616481|616482|616483|616484|616485|616486|616487|616488|616489|616490|616491|616492|616493|616494|616495|616496|616497|616498|616499|616500|616501|616502|616503|616504|616505|616506|616507|616508|616509|616510|616511|616512|616513|616514|616515|616516|618928|618929|618930|618931|618932|618933|618934|618935|618936|618937|618938|618939|618940|618941|618942|618943|618944|618945|618946|618947|618948|618949|618950|618951|618952|618953|618954|618955|618956|618957|618958|618959|618960|618961|618962|618963|618964|618965|618966|618967|618968|618969|618970|618971|619075|619078|619082|619086|619090|619092|619093|619094|619095|619096|619098|619100|619102|619103|619110|619112|619114|619119|619120|619122|619135|619138|619150|619152|619673|619675|619681|619682|619686|619688|619781|619782|619791|619792|619797|619801|619805|619811|619918|620007|621085|621086|621622|621624|627720|627722|627725|628162|628164|628165|628168|629326|629327|629329|629330|629331|629333|629334|629335|629337|629338|629340|629346|629348|647613|647614|647615|647616|647617|647618|647619|647620|647621|647622|647623|647624|647625|647626|647627|647628|652912|652916|652920|652938|652940|652990|653102|653108|653119|653139|653424|653431|653435|653442|653478|653558|653560|653561|653564|653593|653594|655117|655411|655412|672394|676939|683319|683374|683475|683478|683479|683480|683481|683482|683483|683484|684777|685108|685697|685700|685816|685818|685819|686123|686124|686126|686130|686131|686132|686134|686135|686136|686137|686138|686139|688957|688958|688959|688961|688962|688963|689705|689706|690203|690576|690577|690647|691018|691019|691020|691021|694322|694323|694324|694325|694326|694327|696802|707466|719575|730103|732519|732520|741543|746574|747233|747235|756666|756667|760557|762828|762830|762834|762837|762845|772354|772356|772357|772358|778495|780652|780742|781124|781125|781126|786035|786036|786038|786040|789411|789413|789414|789415|789649|794699|794700|795134|795136|795138|795140|795142|795147|795149|797719|797721|799096|821214|821215|821216|821217|821218|821219|821220|821221|821222|821223|821224|821225|821226|821227|821228|821229|824254|824255|825619|825623|825624|825626|825629|825630|825632|825636|825637|825639|825641|847197|847198|847199|847200|847201|847202|847203|847204|847205|847206|847207|847208|847209|847210|847211|847212|847213|847214|847215|847216|847217|847218|847219|847220|851793|857609|864637|864638|864640|864641|864642|864643|879825|879829|879833|879834|879835|883601|883606|883618|883623|883624|883625|883629|883634|906167|907275|907276|907277|907278|907279|907280|907281|907282|907283|907284|907285|907286|907287|907288|907289|907290|907291|907292|907293|907294|907295|907296|907297|907298|907299|907300|907301|907302|907303|907304|907305|907306|907307|907308|907309|907310|907311|907312|907313|907314|907315|907316|907317|907318|907319|907320|907321|907322|907323|907324|907325|907326|907327|907328|907329|907330|907331|907332|907333|907334|907335|907336|907337|907338|907339|907340|907341|907342|907343|907344|907345|907346|907347|907348|907349|907350|907351|907352|907353|907354|907355|907356|907357|907358|907359|907360|907361|907362|907363|907364|907365|907366|907367|907368|907369|907370|907371|907372|907373|907374|907375|907376|907377|907378|907379|907380|907381|907382|907383|907384|907385|907386|907387|907388|907389|907390|907391|907392|907393|907394|907395|907396|907397|907398|907399|907400|907401|907402|907403|907404|907405|907406|907407|907408|907409|907410|907411|907412|907413|907414|907415|907416|907417|907418|907419|907420|907421|907422|907423|907424|907425|907426|907427|907428|907429|907430|907431|907432|907433|907434|907435|907436|907437|907438|907439|907440|907441|907442|907443|907444|907445|907446|907447|907448|907449|907450|907451|907452|907453|907454|907455|907456|907457|907458|907459|907460|907461|907462|907463|907464|907465|907466|907467|907468|907469|907470|907471|907472|907473|907474|907475|907476|907477|907478|907479|907480|907481|907482|907483|907484|907485|907486|907487|907488|907489|907490|907491|907492|907493|907494|907495|907496|907497|907498|907499|907500|907501|907502|907503|907504|907505|907506|907507|907508|907509|907510|907511|907512|907513|907514|907515|907516|907517|907762|907763|907764|907765|907766|907767|907768|907769|907770|907771|907772|907773|907774|907775|907776|907777|907778|907779|907780|907781|907782|907783|907784|907785|907786|907787|907788|907789|907790|907791|907792|907793|907794|907795|907796|907797|907798|907799|907800|907801|907802|907803|907804|907805|907806|907807|907808|907809|907810|907811|907812|907813|907814|907815|907816|907817|907818|907819|907820|907821|907822|907823|907824|907825|907826|907827|907828|907829|907830|907831|907832|907833|907834|907835|907836|907837|907838|907839|907840|907841|907842|907843|907844|907845|907846|907847|907848|907849|907850|907851|907852|907853|907854|907855|907856|907857|907858|907859|907860|907861|907862|907863|907864|907865|907866|907867|907868|907869|907870|907871|907872|907873|907874|907875|907876|907877|907878|907879|907880|907881|907882|907883|907884|907885|907886|907887|907888|907889|907890|907891|907892|907893|907894|907895|907896|907897|907898|907899|907900|907901|907902|907903|907904|907905|907906|907907|907908|907909|907910|907911|907912|907913|907914|907915|907916|907917|907918|907919|907920|907921|907922|907923|907924|907925|907926|907927|907928|907929|907930|907931|907932|907933|907934|907935|907936|907937|907938|907939|907940|907941|907942|907943|907944|907945|907946|907947|907948|907949|907950|907951|907952|907953|907954|907955|907956|907957|907958|907959|907960|907961|907962|907963|907964|907965|907966|907967|907968|907969|907970|907971|907972|907973|907974|907975|907976|907977|907978|907979|907980|907981|907982|907983|907984|907985|907986|907987|907988|907989|907990|907991|907992|907993|907994|907995|907996|907997|907998|907999|908000|908001|908002|908003|908004|908005|908006|908007|908008|908009|908010|908011|908012|908013|908014|908015|908016|908017|908018|908019|908020|908021|908022|908023|908024|908025|908026|908027|908028|908029|908030|908031|908032|908033|908034|908035|908036|908037|908038|908039|908040|908041|908042|908043|908044|908045|908046|908047|908048|908049|908050|908051|908052|908053|908054|908055|908056|908057|908058|908059|908060|908061|908062|908063|908064|908065|908066|908067|908068|908069|908070|908071|908072|908073|908074|908075|908076|908077|908078|908079|908080|908081|908082|908083|908084|908085|908086|908087|908088|908089|908090|908091|908092|908093|908094|908095|908096|908097|908098|908099|908100|908101|908102|908103|908104|908105|908106|908107|908108|908109|908110|908111|908112|908113|908114|908115|908116|908117|908118|908119|908120|908121|908122|908123|908124|908125|908126|908127|908128|908129|908130|908131|908132|908133|908134|908135|908136|908137|908138|908139|908140|908141|908142|908143|908144|908145|908146|908147|908148|908149|908150|908151|908152|908153|908154|908155|908156|908157|908158|908159|908160|908161|908162|908163|908164|908165|908166|908167|908168|908169|908170|908171|908172|908173|908174|908175|908176|908177|908178|908179|908180|908181|908182|908183|908184|908185|908186|908187|908188|908189|908190|908191|908192|908193|908194|908195|908196|908197|908198|908199|908200|908201|908202|908203|908204|908205|908206|908207|908208|908209|908210|908211|908212|908213|908214|908215|908216|908217|908218|908219|908220|908221|908222|908223|908224|908225|908226|908227|908228|908229|908230|908231|908232|908233|908234|908235|908236|908237|908238|908239|908240|908241|908242|908243|908244|908245|908246|908247|908248|908249|908250|908251|908252|908253|908254|908255|908256|908257|908258|908259|908260|908261|908262|908263|908264|908265|908266|908267|908268|908269|908270|908271|908272|908273|908274|908275|908276|908277|908278|908279|908280|908281|908282|908283|908284|908285|908286|908287|908288|908289|908290|908291|908292|908293|908294|908295|908296|908297|908298|908299|908300|908301|908302|908303|908304|908305|908306|908307|908308|908309|908310|908311|908312|908313|908314|908315|908316|908317|908318|908319|908320|908321|908322|908323|908324|908325|908326|908327|908328|908329|908330|908331|908332|908333|908334|908335|908336|908337|908338|908339|908340|908341|908342|908343|908344|908345|908346|908347|908348|908349|908350|908351|908352|908353|908354|908355|908356|908357|908358|908359|908360|908361|908362|908363|908364|908365|908366|908367|908368|908369|908370|908371|908372|908373|908374|908375|908376|908377|908378|908379|908380|908381|908382|908383|908384|908385|908386|908387|908388|908389|908390|908391|908392|908393|908394|908395|908396|908397|908398|908399|908400|908401|908402|908403|908404|908405|908406|908407|908408|908409|908410|908411|908412|908413|908414|908415|908416|908417|908418|908419|908420|908421|908422|908423|908424|908425|908426|908427|908428|908429|908430|908431|908432|908433|908434|908435|908436|908437|908438|908439|908440|908441|908442|908443|908444|908445|908446|908447|908448|908449|908450|908451|908452|908453|908454|908455|908456|908457|908458|908459|908460|908461|908462|908463|908464|908465|908466|908467|908468|908469|908470|908471|908472|908473|908474|908475|908476|908477|908478|908479|908480|908481|908482|908483|908484|908485|908486|908487|908488|908489|908490|908491|908492|908493|908494|908495|908496|908497|908498|908499|908500|908501|908502|908503|908504|908505|908506|908507|908508|908509|908510|908511|908512|908513|908514|908515|908516|908517|908518|908519|908520|908521|908522|908523|908524|908525|908526|908527|908528|908529|908530|908531|908532|908533|908534|908535|908536|908537|908538|908539|908540|908541|908542|908543|908544|908545|908546|908547|908548|908549|908550|908551|908552|908553|908554|908555|908556|908557|908558|908559|908560|908561|908562|908563|908564|908565|908566|908567|908568|908569|908570|908571|908572|908573|908574|908575|908576|908577|908578|908579|908580|908581|908582|908583|908584|908585|908586|908587|908588|908589|908590|908591|908592|908593|908594|908595|908596|908597|908598|908599|908600|908601|908602|908603|908604|908605|908606|908607|908608|908609|908610|908611|908612|908613|908614|914649|914650|914651|914652|914653|914654|914655|914656|914657|914658|914659|914660|914661|914662|914663|914664|914665|914666|914667|914668|914669|914670|914671|914672|914673|914674|914675|914676|914677|914678|914679|914680|914681|914682|914683|914684|914685|914686|914687|914688|914689|914690|914691|914692|914693|914694|914695|914696|914697|914698|914699|914700|914701|914702|914703|914704|914705|914706|914707|914708|914709|914710|914711|914712|914713|914714|914715|914716|914717|914718|914719|914720|914721|914722|914723|914724|914725|914726|914727|914728|914729|914730|914731|914732|914733|914734|914735|914736|914737|914738|914739|914740|914741|914742|914743|914744|914745|914746|914747|914748|914749|914750|914751|914752|914753|914754|914755|914756|914757|914758|914759|914760|914761|914762|914763|914764|914765|914766|914767|914768|914769|914770|914771|914772|914773|914774|914775|914776|914777|914778|914779|914780|914781|914782|914783|914784|914785|914786|914787|914788|914789|914790|914791|914792|914793|914794|914795|914796|914797|914798|914799|914800|914801|914802|914803|914804|914805|914806|914807|914808|914809|914810|914811|914812|914813|914814|914815|914816|914817|914818|914819|914820|914821|914822|914823|915195|915197|915199|915201|915203|915205|915207|915209|915241|915247|915249|915251|915253|915255|915257|915266|915270|915274|915276|915280|915284|915327|915331|915335|915337|915341|915400|915402|915408|915410|915413|915415|915418|915422|915489|915492|915494|915495|915497|915498|915500|915505|915507|915509|915512|915516|915519|915524|915538|915542|915544|915546|915548|915551|915554|916070|916072|916074|916076|916606|916608|916612|916613|916615|916616|916617|916647|916648|916649|916650|916651|916653|916654|916657|916658|916659|916661|916767|916768|916769|916770|916771|916772|917287|928818|928819|928820|938557|938558|938559|941222|950644|950645|950646|950647|950648|950649|950650|950651|950652|950653|950654|958526|967158|967159|967170|967171|967172|967173|967174|967175|967212|967213|977533|979958|979959|979960|979961", + "text": "Familial hypercholesterolemia" + }, + { + "baseId": "17916|17917|434138|434146", + "text": "Hypocholesterolemia" + }, + { + "baseId": "17917|32929|45327|45330|45331|45332|45333|196755|196756|196757|196758|206939|228912|238334|249983|249984|249986|249987|249988|249989|249990|260587|260588|260608|260609|260620|260626|280890|280891|280895|280902|280908|280911|280925|280929|280937|280941|280946|280951|281418|281431|281441|281446|281453|281456|281460|281473|282665|282667|282690|282694|282939|282943|282945|282961|282962|282969|282970|282973|282975|361171|391339|391359|391368|391518|424996|424997|427985|427986|431937|434137|448374|486886|486915|486918|498542|516028|516048|516151|538526|538527|557107|616178|616190|616199|621086|696802|789411|864631|864632|864633|864634|864635|864636|864637|864638|864639|864640|864641|864642|864643|864644|864645|864646|864647|864648|864649|864650|864651", + "text": "Hypobetalipoproteinemia" + }, + { + "baseId": "17920|17921|17922|17923|17924", + "text": "Congenital bile acid synthesis defect 1" + }, + { + "baseId": "17925|17926|17927|362444|576139", + "text": "Mental retardation, autosomal dominant 4" + }, + { + "baseId": "17928|17929|17930|17931|17932|17933|17934|17935|17937|17938|17939|17940|17941|17942|28592|28593|28594|28595|28596|28597|28599|28600|28601|28602|28603|28604|28605|28606|28607|28608|59386|59387|213645|227393|227393|227425|236945|237001|256203|256204|256205|256223|256224|256225|256226|256227|256228|256230|328692|328696|328700|328707|328708|328712|328714|328716|328718|328721|328969|328974|328991|328993|328996|328998|328999|329000|329004|329007|329010|329013|329014|338679|338681|338687|338689|338692|338695|338702|338703|338711|338983|338988|338990|339008|339014|339020|339023|339025|339027|344745|344747|344748|344755|344758|344767|344768|344772|344993|345000|345003|345007|345009|345018|345020|345022|345024|345026|345027|345032|345034|346140|346143|346147|346149|346155|346156|346159|346160|346342|346345|346346|346348|346362|346364|346367|346368|346374|346379|378307|378308|404831|404831|404832|404832|415564|429974|429981|429982|468281|574499|612107|612136|615566|615568|615569|615571|615572|615573|615574|615576|615577|615578|615579|615580|615581|615582|615583|615586|615587|615589|615747|615748|615749|615750|615751|615752|615753|620592|620593|620885|679346|684676|684677|684682|684683|684685|684688|684690|688773|688774|688784|788911|801169|801170|801250|845494|845495|877749|877750|877751|877752|877753|877754|877755|877756|877757|877758|877759|877760|877761|877762|877763|877764|877765|877766|877767|877768|877769|877770|877771|877772|877773|877822|877823|877824|877825|877826|877827|877828|877829|877830|877831|877832|877833|877834|877835|877836|877837|877838|877839|877840|877841|877842|877843|877844|877845|877846|877847|877848|877849|880538|880539|880540|880541|880542|880544|958144|958145|959435|959436|959437|959438|959439|959440|959441|959442|959443|959444|959445|959446|959447|959448|959449|959450|959451|959452|959453|959454|959455|959456|959457|959458|959459|959460|959461|959462|959463|959464|959465|959466|959467|959468|959469|959470|959471|959472|959473|959474|959475|959476|959477|959478|959479|959480|959481|959482|959483|959484|959485|959486|959487|959488|959489|959490|959491|959492|959493|959494|959495|959496|959497|959498|959499|959500|959501|959502|959503|960222|965256|965257|965258|965259|965260|965261|965262|965263|983869|983870|983871|983872|983873|983874|983875|983876|983877|983878|983879|983880|983881|983882|983883|983884|983885|983886|983887|983888|983889|983890|983891|983892|983893|983894|983895|983896|983897|983898|983899|983900|983901|983902|983903|983904|983905|983906|983907|983908|983909|983910|983911|983912|983913|983914|983915|983916|983917|983918|983919|983920|983921|983922|983923|983924|983925", + "text": "Glanzmann thrombasthenia" + }, + { + "baseId": "17930", + "text": "BAK PLATELET-SPECIFIC ANTIGEN" + }, + { + "baseId": "17943|17944|17945", + "text": "Phenylthiocarbamide tasting" + }, + { + "baseId": "17946|21759|31645|31646|174555|174828|189039|194360|253249|253250|253251|268286|273834|274187|306215|306216|306218|306231|306234|306238|306251|306252|306256|306257|310320|310326|310331|310332|310350|310354|310355|310356|310361|310368|315624|315676|315677|315679|315680|315685|315686|315691|315692|315733|315741|315801|315804|315805|315808|315809|319672|481859|552038|620313|900632|900633|900634|900635|900636|900637|900638|900639|900640|900641|900642|900643|900644|900645|900646|900647|900648|900649|900650|900651|900652|900653|900654|900655|900656|900657|900658|900659|900660|900661|900662|900663|900664|900665|900666|900667", + "text": "Hypercholanemia, familial" + }, + { + "baseId": "17947|404783|425216|583105|920275", + "text": "Cerebral palsy, spastic quadriplegic, 2" + }, + { + "baseId": "17948|82291|142666|142667|142668|142669|192151|212975|212977|222194|222196|222198|222199|241222|241223|241225|244701|244702|244704|254371|312026|312046|312075|315582|315590|315591|315596|315597|315598|315604|315606|315608|315609|315614|315615|315619|315627|315646|315647|315650|315652|317682|317724|317727|322423|322424|322425|322438|322441|322443|322447|322450|322452|322453|322462|322471|322472|322492|322493|323641|323734|323765|323770|324393|324481|328619|328659|328663|328664|328665|328675|328676|328677|328679|328695|328697|328709|328710|328713|329870|329879|329880|329888|329889|329890|329893|329895|329909|329912|329915|329916|371932|372773|374431|384516|415315|421892|441490|441493|444695|461556|504490|508858|526572|564984|571122|578495|620425|620426|625755|640560|684271|687683|791185|799661|839216|839237|866766|866767|866768|866820|866821|866822|868577|868686|868989|868990|868991|868992|868993|868994|868995|868996|868997|868998|868999|869000|869001|869002|869003|869004|869005|869006|869007|872154|872155|872156|919402|935889|970925", + "text": "Charcot-Marie-Tooth disease, type 4B2" + }, + { + "baseId": "17949|17950|17951", + "text": "Charcot-Marie-Tooth disease type 4B2 with early-onset glaucoma" + }, + { + "baseId": "17953|17954|17955|17956|17957|19972|40256|57290|57294|57295|57296|57298|57303|76647|176636|176637|230790|267403|271628|329798|329799|329801|329802|329811|329813|340090|340092|340103|340108|340115|340120|340121|345789|345795|345797|345800|345801|345809|345810|345814|345818|345820|347194|347198|347203|347204|347205|506389|552027|615827|620606|846182|846191|878385|878386|878387|878388|878389|878390|878391|878392|878393|878394|878395|878396|878397|878398|878399|878400|878401|878402|878403|878404|878405|878406|878407|878408|878409|878410", + "text": "Usher syndrome, type 1G" + }, + { + "baseId": "17955|17956|19955|19962|19964|19965|19966|19972|20179|20180|20181|20182|20182|20185|26887|26887|26889|26891|26898|26899|26901|48026|48287|52303|52304|52304|52305|52305|52306|52308|52309|52311|52312|52313|52315|52319|52320|52321|52321|52323|52326|52328|52330|52331|52332|52333|52334|52334|52336|52338|52339|52339|52340|52343|52345|52346|52346|52347|52348|52348|52349|52350|52351|52352|52353|52354|52355|52356|52357|52358|52359|52360|52361|52362|52363|52364|52365|52367|52369|52370|52371|52373|52373|52378|52378|52383|52385|52385|52388|52388|52390|52392|52393|52394|52394|52395|52396|52397|52399|52400|52401|52403|52404|52407|52411|52411|52412|52414|52414|52416|52417|52418|52421|52422|52424|52425|52426|52427|52428|52430|52431|52432|52435|52437|52438|52439|52440|52441|52442|52444|52446|52448|52449|52453|52456|52457|52458|52460|52461|52463|52464|52465|52466|52467|52468|52469|52470|52472|52473|52474|52475|52475|52477|52479|52483|52486|52487|52488|52488|52492|52493|52494|52495|52496|52497|52497|52498|52499|52501|52504|52505|52508|52509|52513|52514|53126|53126|53279|53280|53281|55024|55034|55040|55041|55047|55048|55050|55052|55055|55056|55058|55059|55061|55062|55063|55069|55070|55071|55073|55074|55077|55078|55080|55081|55083|55090|55092|55093|55095|55096|55102|55104|55107|55109|55110|55112|55114|55118|55120|55122|55124|55125|55127|55129|55130|55131|55132|55136|55138|55141|55142|55143|55145|55147|55151|55152|55157|55162|55166|55167|55172|55173|55175|55177|55180|55183|55184|55186|55191|55192|55193|55194|55196|55197|55199|55207|55208|55210|55211|55213|55217|55223|55224|55230|55231|55233|55237|55239|55243|55244|55245|55246|55247|55599|55601|55602|55604|55605|55606|55607|55608|55609|55611|55612|55613|55617|55618|55619|55621|55622|55623|55626|55631|55634|55635|55639|55640|55642|55643|55644|55645|55647|55649|55650|55651|55656|55657|55662|55663|55664|55665|55666|55667|55668|55669|55670|55671|55672|55674|55676|55678|57154|57671|88929|101919|129781|137043|142289|174331|174667|174673|174674|174676|174683|174705|174711|174713|174715|174717|174718|174810|174811|174812|174813|174814|174818|174819|174820|174945|174950|174959|174965|174966|174971|174988|174989|174991|174992|174996|175000|175001|175007|175118|175127|175221|175222|175223|175225|175226|175227|175233|175236|175238|175238|175243|175246|175257|175266|175275|175279|175281|175285|175287|175379|175519|175522|175818|176872|176872|176880|176881|176882|176890|176894|176897|177262|177394|177561|178183|178183|178185|178187|178187|178187|178237|178238|178239|178240|178241|178242|178245|178248|178280|178282|178299|178300|178301|178301|188830|188830|188830|191834|191947|192050|193147|193201|193260|193260|194566|194658|194667|195531|214846|226532|228230|228231|228232|228233|228234|228235|228236|228237|228238|228239|228240|228242|229805|229810|229855|229864|229865|229867|229871|229873|229874|229891|230238|230244|230245|230245|230249|230250|231364|231364|231366|231368|231369|231384|231384|231385|231417|231419|231420|231420|231421|231423|231424|231425|231426|231427|237612|237614|237614|238052|238053|266037|266983|268060|269641|269755|270155|270156|271130|272763|275242|310509|310514|310518|310530|310536|310538|310539|310544|310548|310713|315220|315224|315230|315231|315242|315243|315244|315250|315250|315252|315256|315257|315258|315259|315632|315635|315637|315640|315641|315642|315643|315651|315658|315663|315667|315672|315673|315707|321643|321648|321652|321658|321661|321667|321674|321686|321687|321694|321703|321704|321705|321706|321714|321718|321721|321725|321739|321758|322002|322004|322005|322010|322038|322039|322043|322044|322049|322052|322054|322055|322071|322072|322075|322076|322079|322080|322082|322083|322084|322085|322086|322088|322091|322094|322095|322389|322396|322404|322426|322428|322433|322435|322448|322704|322709|328157|328159|328161|328164|328165|328171|328172|328177|328181|328182|328183|328184|329415|329417|329419|329420|329422|329423|329424|329425|329427|329429|329431|329432|329437|329438|329439|329446|329447|329453|353137|358080|358081|359920|360049|360049|361501|361502|374343|384490|389240|389242|389242|407896|407898|407900|407901|408476|413286|415230|425944|431531|431762|431763|431766|431767|432307|444639|486183|488902|489956|491741|493338|493921|496950|496958|497099|497165|497166|497208|497209|497399|497403|497625|497811|497812|497820|497822|497860|508737|508743|511946|513314|514390|514401|546382|546385|546387|546394|546395|546399|546403|546404|546408|546409|546413|546417|546423|546425|546425|546426|546428|546431|546436|546438|546440|546446|546457|546461|546463|546466|546469|546494|546496|546508|546520|546526|546527|546530|546599|546607|546611|546612|546614|546614|546625|546628|546637|546642|546645|546659|546664|546673|546674|546687|546688|546691|546693|546694|546696|546696|546698|546700|546702|546702|546705|546708|546709|546710|546716|546716|546718|546720|546721|546723|546725|546726|546727|546731|546733|546734|546742|546742|546744|546746|546747|546754|546755|546756|546758|546761|546763|546766|546767|546780|546784|546790|546793|546803|546811|546814|546815|546824|546826|546828|546836|546838|546845|546856|546866|546867|546870|546873|547003|547006|547013|547015|547021|547031|547033|547034|547035|547038|547041|547042|547045|547046|547052|547055|547058|547060|547072|547079|547079|551614|552405|587534|609760|609761|609763|611734|612882|612884|620367|654603|654611|654612|654617|654618|654619|654620|654690|656009|656012|656013|713192|737576|737581|737584|737586|737587|738305|752138|752220|752221|752225|752227|752235|752236|752241|752242|752246|760047|767802|767806|767896|767898|767901|767904|767906|767910|767918|767919|767920|767925|767926|767930|767934|767935|767939|767940|767945|767946|767949|767958|768788|768806|775562|775689|775714|783675|783682|783687|783691|783696|783702|783706|783717|783718|784189|784220|787671|787689|800360|800555|800572|800573|800613|800695|801422|801432|801688|801689|801711|801712|801713|801714|801715|818293|836980|837193|837197|837200|837201|837206|837212|837216|837217|837219|837220|837223|837227|837233|837236|837237|837240|837242|837243|837252|837256|837263|837266|837269|839045|839075|859808|865985|865986|865987|865988|865989|865990|865991|865992|865993|865994|865995|865996|865997|865998|865999|866000|866001|866002|866003|866004|866005|866006|866007|866008|866009|866010|868479|868480|868803|868804|868805|868806|868807|868808|868809|868810|868811|868812|868813|868814|868815|868816|868817|868818|868819|868820|868821|868822|868823|868824|868825|868826|868827|868828|868829|868830|868831|868832|868833|868834|868835|868836|868837|868838|868839|868840|868841|868842|872137|872138|872139|872140|872141|872142|872143|872144|919343|956182|956189|972115|972116|972117|972118|972119|972120|972121|972122|972123|972124|972125|972126|972127|972128|972129|972130|972131|972132|972133|972134|972135|972136|972137|972138|972139|972140|972141|972142|972143|972144|972145|972146|972147|972148|972149|972150|972151|972152|972153|972154|972155|972156|972157|972158|972159|972160|972161|978683|978684|978685|978686|978687|978688|978689|978690|978691|978692|978693|978694|978695|978696|978697|978698|978699|978700|978701|978702|978703|978704|978705|978706|978707|978708|978709|978710|978711|978712|978713|978714|978715|978716|978717|978718|978719|978720|978721|978722|978723|978724|978725|978726|978727|978728|978729|978730|978731|978732|978733|978734|978735|978736|978737|978738|978739|978740|978741|978742|978743|978744|978745|978746|978747|978748|978749|978750|978751|978752|978753|978754|978755|978756|978757|978758|978759|978760|978761|978762|978763|978764|978765|978766|978767|978768|978769|978770|978771|978772|978773|978774|978775", + "text": "Usher syndrome type 1" + }, + { + "baseId": "17958|17959|17960|214523|626354", + "text": "Thyroid hormone metabolism, abnormal" + }, + { + "baseId": "17961|17962|17963|17964|17965|17966|17967|17968|512900", + "text": "Chylomicron retention disease" + }, + { + "baseId": "17969|17970|34355|34356|48167|539037", + "text": "Cold-induced sweating syndrome 2" + }, + { + "baseId": "17971|17972|17973|17974|17975|99931|99932|190386|254709|267600|318289|318294|318295|318296|318300|318301|318305|318306|318308|318309|326274|326305|326307|326308|326315|326318|326319|326320|326328|332552|332553|332577|332579|332581|332584|332601|332602|332605|332612|332616|332623|332632|334160|334171|334176|334177|334201|334206|334208|334210|334211|334212|334225|334233|334234|334242|408733|504073|565703|578510|625883|641371|652737|713708|713709|738825|738826|738827|744914|753550|753551|769278|775864|784456|784458|784460|820515|820516|820517|840220|840221|851957|870290|870291|870292|870293|870294|870295|870296|870297|870298|870299|870300|870301|870302|870303|870304|870305|870306|870307|870308|870309|870310|870311|870312|870313|870314|872284|926720|948138|960791|964398", + "text": "Mucopolysaccharidosis, MPS-III-D" + }, + { + "baseId": "17976|17977|17978|17979|17980|227217|281164|281168|281174|281176|281186|281188|281192|281772|281783|281785|281786|281787|281792|281795|281796|281803|282967|282968|282998|283001|283002|283003|283030|283034|283036|283048|283049|283264|283272|283273|283276|353108|620013|620727|620728|864795|864796|864797|864798|864799|864800|864801|864802|864803|864804|864805|864806|864807|864808|864809|865208|865209", + "text": "Cystathioninuria" + }, + { + "baseId": "17980", + "text": "Homocysteine, total plasma, elevated" + }, + { + "baseId": "17981|17983|190532|190533|192452|268079|298640|298641|298653|298655|298656|298664|298666|298667|298669|298676|298677|298682|298684|301041|301043|301045|301047|301050|301052|301054|301056|301061|301076|301078|301085|301086|301093|301095|301096|301105|301117|301120|301121|305473|305488|305489|305510|305517|305520|305521|305525|305528|305529|305531|305533|305596|305597|305598|305604|305620|305622|305628|305629|305631|305637|305638|481434|584809|620207|710102|721629|779128|790573|895151|895152|895153|895154|895155|895156|895157|895158|895159|895160|895161|895162|895163|895164|895165|895166|895167|895168|895169|895170|895171|895172|895173|895174|895175|895176|895177|895178", + "text": "Osteopetrosis, autosomal recessive 5" + }, + { + "baseId": "17984|106438|177729|268041|271289|364010|512960|626265|727570|846508", + "text": "Retinitis pigmentosa 30" + }, + { + "baseId": "17984|22919|22923|22924|22942|22952|24520|31114|31115|31116|34176|34177|34178|98778|104561|104927|104930|104931|104938|104954|104974|104990|105042|105058|105068|105082|105135|105147|105160|105279|105285|105296|105297|105302|105329|105330|105332|105333|105337|105343|105349|105380|105381|105383|105387|106449|134459|134460|134461|134462|134463|134464|134465|134466|139937|139938|139942|139944|152793|177450|187995|188003|188007|190742|191153|191753|193374|227292|227293|237323|237686|237695|237696|237704|247041|250031|250033|267624|271456|277787|277877|277940|278069|278074|278181|278855|278862|278949|279011|279014|279142|279153|279159|279170|279232|281326|281328|281329|281332|281340|281341|281342|281346|281351|281359|281361|281367|281368|281373|281375|281378|281381|281972|281973|281986|281988|281995|281996|282000|282001|282006|283241|283246|283260|283261|283265|283266|283281|283282|283286|283290|283291|283298|283299|283386|283388|283391|283392|283399|283400|283402|283415|283422|283423|283434|283437|283438|283441|283442|299768|299776|299781|299782|299793|299794|299798|299800|299801|299802|299808|299809|299810|299817|299818|299823|299824|299825|299832|302372|302387|302388|302389|302401|302405|302413|302414|306762|306777|306778|306782|306810|306818|306821|306823|306824|306825|306828|306830|307093|307103|307110|307117|307120|307123|307132|309611|309617|309623|309625|309626|309628|309632|309634|309635|310384|310391|310392|310405|310413|310414|310463|314433|314435|314436|314437|314439|314441|315483|315490|315526|315555|320486|320494|320495|320496|320958|320969|320970|320973|320983|320985|321000|321491|321510|321549|321588|322273|322279|322288|322302|322309|322331|333272|334509|337801|337826|339798|343356|343374|343375|344343|344359|344383|348650|349452|350459|353493|353745|360817|513994|723822|737385|752008|859786|859787|865523|865524|865525|865526|865527|865528|865529|865530|865531|865532|865533|868454|895776|895782|895783|895784|895785|895786|895787|895788|895789|895790|895791|895792|895793|896219", + "text": "Macular degeneration" + }, + { + "baseId": "17985|17986|17987|17988|17989|17990|17991|102073|102077|102078|102081|102084|102085|102086|102088|102089|152915|177420|181491|244142|361967|424665|429938|429944|429948|481322|513464|577616|580293|611446|613831|614034|622441|788905|791682|798711|919710|919711|919712|961333|961628|964469|964470|971069|971070", + "text": "Smith-Magenis syndrome" + }, + { + "baseId": "17992|553276|614644|626139|626140|918855", + "text": "Spinocerebellar ataxia 7" + }, + { + "baseId": "17993|17994|17995|85479|189103|250725|250726|250727|250728|250729|286023|286024|286029|286031|286035|286037|286038|286040|286045|286047|286051|286057|286061|286063|286065|286067|286072|286075|286768|286784|286787|286788|286801|286803|286805|286808|286811|286825|286826|286836|286837|286847|286849|286851|289080|289081|289083|289086|289094|289096|289097|289098|289105|289108|289109|289129|289436|289438|289439|289443|289444|289445|289448|289460|289461|289462|289468|289470|289471|289472|289475|289476|289477|289480|496231|496702|518175|561465|561466|561471|623270|629946|629947|708234|708235|708238|708239|708241|708242|708243|719844|719845|719846|719850|719851|747594|781312|826415|826416|884703|884704|884705|884706|884707|884708|884709|884710|884711|884712|884713|884714|884715|884716|884717|884718|884719|884720|884721|884722|884723|884724|884725|884726|884727|884728|884729|884730|884731|884732|884733|884734|884735|884736|884737|884738|884739|884740|884741|884742|884743|884744|884745|884746|884747|884748|884749|884750|884751|884752|884753|884754|884755|884756|884757|884758|884759|884760|884761|884762|884763|884764|884765|884766|884767|884768|884769|884770|884771|884772|887349|887350|887351|887352|887353|887354|887355|887356|887357|887358|887359|887360", + "text": "Hereditary xanthinuria type 1" + }, + { + "baseId": "17996|17997|17998|17999|18002|18003|18005|18006|18007|18008|18009|18010|18011|18012|18013|18014|18015|18016|18017|18018|33985|33986|33987|33988|33989|33990|33992|33994|91670|98607|98608|98609|98610|98611|98612|98613|98614|98616|98618|98619|98620|98621|98622|106599|135257|136637|136638|136639|136640|136641|136642|136643|136644|136645|136646|136647|136648|136649|136650|138599|179793|179794|179795|179796|179798|179799|187020|187022|187023|187024|187025|187026|187027|187028|187029|187030|187031|191145|191321|191322|191972|191973|192884|192885|194812|194949|195863|196161|196162|208444|213648|213649|236859|237046|237454|247146|255054|256596|256598|256601|256603|256607|256608|260201|263804|265268|265286|265287|266176|266178|266182|266608|268883|268899|269233|272008|272074|272343|272387|273494|273495|273976|274042|274371|330510|330513|330847|330849|330852|330856|330857|330865|339011|339016|339018|341110|341113|341115|341119|341122|341128|341130|341132|341134|341135|341136|341149|341151|341153|341155|341160|341165|341166|341168|341170|346689|346690|346695|346698|346699|347945|347946|347956|347958|347968|347969|347970|347973|347976|347981|358525|358526|358527|358528|358529|358530|358531|358532|358533|358534|358535|358536|358537|358538|358539|358540|358541|358542|358543|358544|358545|358546|360308|360321|360478|361031|361231|361232|361634|376732|376743|390247|404603|410326|410327|410328|410330|410331|422213|431002|433760|445944|445945|467901|467904|467906|469596|469602|480509|486196|487967|487968|489195|489385|489578|490682|490751|490761|490772|491363|491579|492370|492377|492780|492948|493698|493700|493771|493787|494126|495854|497495|506884|508899|508900|508901|512873|512874|512981|513372|532151|532153|532171|532264|532541|532545|537304|538474|538475|548481|548487|548490|548492|548493|548495|548499|548501|548502|548503|548505|548510|548513|548515|548516|548517|548518|548521|548523|548524|548526|548529|548531|548533|548536|548538|548539|548540|548547|548548|548550|548551|548553|548559|548561|548565|548567|548570|548572|548576|548877|548882|548883|548890|548892|548900|548903|548905|548907|548911|548914|548915|548918|548920|548927|548934|549227|549228|549230|549231|549232|549234|549235|549237|549241|549245|549248|549249|549250|549251|549252|549256|549257|549260|549262|549264|549265|549270|549271|549781|552209|571846|571849|572547|572557|574712|584406|584624|584819|584869|585055|585625|585773|586007|586050|587099|588473|588653|589498|620894|647094|647095|647096|653379|694252|695790|695791|704552|715910|725798|727659|731208|741313|741315|741316|745017|745020|745022|756394|756395|756396|756397|760713|772049|772051|772052|772054|772055|772057|772058|772059|772060|772064|772069|776438|776441|776474|776476|776477|778432|785846|785847|785848|785852|785854|788200|788201|791851|791852|791853|798732|802222|802223|822140|822141|822338|822339|846692|846693|846694|846695|846696|846697|846698|846699|846700|846701|846702|846703|846704|846705|846706|846707|846708|846709|851765|851767|852267|852806|872542|872543|872544|878971|878972|878973|878974|878975|878976|878977|878978|878979|878980|878981|878982|878983|878984|878985|878986|878987|878988|878989|878990|878991|878992|878993|878994|880635|880636|880637|880638|919790|920389|928660|928661|928662|938384|941205|941206|950459|950460|950461|950462|950463|950464|958438|958439|958440|958441|958442|958443|961024|961883|961884|961885|963179|970244|972288|972289|972290|972291|972292|972293|972294|972295|972296|972297|972298|972299|972300|972301|972302|972303|972304|972305|972306|979937|979938|979939|979940|979941|979942|979943|979944|983467|983559", + "text": "Niemann-Pick disease type C1" + }, + { + "baseId": "17997|18005|18006|18008|18012|23516|23519|34307|179794|179798|187022|187023|187024|187026|187031|191973|260201|321300|330843|330861|330871|339032|341146|341147|346676|346683|346701|346703|346708|347945|347983|358544|358545|410330|480509|487967|495854|497495|572547|621868|654839|654840|905956", + "text": "Niemann-Pick disease, type C" + }, + { + "baseId": "17999", + "text": "Niemann-Pick disease, type D" + }, + { + "baseId": "18001|18002", + "text": "Niemann-Pick disease, type C1, adult form" + }, + { + "baseId": "18003|18004|272074|548561", + "text": "Niemann-Pick disease, type C1, juvenile form" + }, + { + "baseId": "18019|18019|18021|18023|18024|18025|18028|18029|18029|18030|18030|18031|18031|18032|18032|18033|18033|18034|18035|99217|99217|99218|99219|99220|99221|99222|99222|99224|99225|99225|99226|99227|99227|99228|99229|106596|106596|177005|177267|177267|178085|178085|178086|178086|186823|186823|186824|186824|186825|186825|186826|186827|186827|186828|186828|190279|190280|192246|192246|192247|192247|192248|192248|192252|192252|194320|195253|195253|195254|195254|195255|195255|195256|195256|199816|214803|227454|227455|227456|227457|227458|227459|227460|236951|236951|237172|237172|254227|254228|254230|265222|265222|265283|265283|265566|265942|265942|266123|266123|267144|267144|269652|269654|269654|269655|269655|270485|270485|271133|271133|271270|271270|272309|272309|272310|272310|274117|274185|274185|274186|274186|275339|314473|314491|314496|314499|314499|314500|314500|314501|321148|321148|321155|321155|321158|321160|327239|327239|327240|327247|328253|328259|328266|328275|328289|328290|328311|328312|357977|357977|357978|357979|357980|357981|357981|357982|357983|357983|357984|357985|357985|357986|357987|357987|357988|357989|357990|357990|357991|357992|357993|357994|357995|357996|357997|357998|361948|372490|390057|390057|425936|431015|439104|439104|461245|461245|462081|488247|488281|488718|489451|490008|491917|493996|526300|526300|526543|526551|526556|546042|546046|546054|546057|546059|546062|546070|546071|546078|546080|546081|546086|546087|546089|546090|546092|546332|546334|546336|546338|546340|546342|546344|546349|546349|546354|546356|546361|546361|546363|546366|546369|546371|546476|546481|546483|546483|546487|546489|546491|546498|546506|546509|546513|546513|546515|546692|546699|546701|546703|546704|546707|546728|546730|546732|546737|546740|546748|546751|564786|565935|565935|583298|584116|584233|584233|584496|587377|588679|588868|589157|589470|620410|621364|640225|640226|640227|640227|640228|640229|640230|712980|712981|724549|724550|724550|738090|752750|752751|768527|768529|768530|768532|768534|768538|768539|784046|784047|784049|784050|787800|791147|801692|801693|801694|801695|801696|801697|801698|801699|801699|801700|801701|801701|816413|838668|838669|838670|838671|838672|868202|868203|868204|868205|868206|868207|868208|868209|868210|868211|868211|868212|868213|868213|868214|868215|868216|906130|926307|926308|935648|947548|956559|956560|956561|956562|956563|956564|956565|956566|970939|980612|980613|980614|980615|980616|980617|980618|980619|980620|980621|980622|980623|980624|980625|980626|980627|980628|980629|980630|980631|980632|980633|980634|980635|980636|980637|980638|980639|980640|980641|980642|980643|980644|980645|980646|980647|980648|980649|980650|980651", + "text": "Niemann-Pick disease, type A" + }, + { + "baseId": "18019|18021|18023|18026|18027|18028|18029|18030|18031|18032|18033|18034|99217|99219|99222|99225|99227|106596|177005|177267|178086|186824|186825|186827|186828|192246|192247|195254|195255|195256|199815|199816|199817|199818|199819|199820|199841|254227|265222|265942|266123|269654|271133|271270|272309|272310|274185|274208|275339|275438|314491|314496|321155|327239|357979|357983|357985|357986|357987|357990|357991|357994|372490|390057|439104|461245|488247|488281|488336|490008|491917|526551|546070|546338|546361|564786|588679|589470|640227|640229|712981|738090|768539|974500|974501|979016|979017|979018|979019|979020|979021|979022|979023|979024|979025", + "text": "Sphingomyelin/cholesterol lipidosis" + }, + { + "baseId": "18019|18019|18022|18026|18027|18028|18029|18029|18030|18031|18031|18032|18032|18033|18033|99217|99220|99222|99225|99225|99227|99227|99229|106596|177005|177267|177267|178085|178086|178086|186823|186823|186824|186825|186827|186828|190279|190280|192246|192247|192247|192248|192252|194320|195253|195254|195254|195255|195256|199816|236951|237172|254227|254228|265222|265283|265566|265942|266123|267144|269654|269655|270485|271133|271270|272309|272310|274117|274185|274186|275339|314491|314499|314500|321148|321155|327239|357977|357981|357983|357983|357985|357987|357990|372490|390057|439104|461245|462081|488718|489451|490008|491917|493996|526300|526543|526551|526556|546349|546361|546483|546513|564786|565935|584116|584233|584496|587377|588679|588868|589157|589470|621364|640225|640226|640227|640228|640229|640230|712980|712981|724549|724550|738090|752750|752751|768527|768529|768530|768532|768534|768538|768539|784046|784047|784049|784050|787800|801697|801699|801701|838668|838669|838670|838671|838672|868211|868213|906130|926307|926308|935648|947548|956559|956560|956561|956562|956563|956564|956565|956566|980612|980613|980614|980615|980616|980617|980618|980619|980620|980621|980622|980623|980624|980625|980626|980627|980628|980629|980630|980631|980632|980633|980634|980635|980636|980637|980638|980639|980640|980641|980642|980643|980644|980645|980646|980647|980648|980649|980650|980651", + "text": "Niemann-Pick disease, type B" + }, + { + "baseId": "18030|18033", + "text": "Niemann-pick disease, intermediate, protracted neurovisceral" + }, + { + "baseId": "18036|18037|18038|18039|18040|18041|18042|18043|18044|18045|18046|30959|77042|77048|328379|328380|328381|328390|328391|328392|328394|328400|328401|328406|338312|338313|338318|338320|338322|338327|338330|338334|338340|344384|344385|344394|344395|344396|344399|344405|344406|344409|344410|344411|344412|344413|344414|345817|345824|345825|345827|345828|578544|620884|877420|877421|877422|877423|877424|877425|877426|877427|877428|877429|877430|877431|877432|877433|877434|877435|877436|877437|877438|877439|877440|877441|877442|877443|877444|877445|877446|877447|877448|877449|877450|880514|964477", + "text": "Epidermolytic palmoplantar keratoderma" + }, + { + "baseId": "18036|18047|18048", + "text": "Palmoplantar keratoderma, epidermolytic, with knuckle pads" + }, + { + "baseId": "18036|165961|360835|360981", + "text": "Palmoplantar keratoderma" + }, + { + "baseId": "18049|18050|18051|18052|18053|45840|45842|48409|48410|48411|48412|102250|102251|102252|102253|102254|102255|102256|152880|177788|177789|177790|190649|190650|253502|253503|253504|253506|253507|308009|308013|308015|308019|308020|308024|308026|308027|308032|308065|308069|308070|312355|312358|312359|312361|312364|312429|318130|318131|318134|318138|318144|318632|318645|318646|318653|318746|489728|620327|623984|700970|737096|767373|801415|836026|901800|901801|901802|901803|901804|901805|901806|901807|901808|901809|901810|901811|901812|901813|901814|901815|901817|901818|901820|901821|901822|901823|901825|901826|901827|901828|901829|901830|901832|901845|901846|901847|901848|901849|903383|966597|970911", + "text": "Cone dystrophy with supernormal rod response" + }, + { + "baseId": "18054|18056|39637|171804|177353|177514|186020|212352|214071|251316|271205|292180|292181|292184|292189|292191|293616|293619|293626|293627|293628|293629|293630|296934|296936|296941|296942|296946|296947|296954|296955|296956|296957|296958|296959|296961|296962|296968|362073|428269|453712|513267|513268|519717|620146|792743|800353|828723|828724|890064|890065|890066|890067|890068|890069|890070|890071|890072|890073|890074|890075|890076|891748|891749|903531|906237|906238|970783", + "text": "Bardet-Biedl syndrome 7" + }, + { + "baseId": "18055", + "text": "Bardet-Biedl syndrome 1/7, digenic" + }, + { + "baseId": "18057|18058|18059|18060|18061|18062|18062|18064|18064|18066|18068|18069|18072|18072|18073|18074|18075|18077|18080|18081|18082|18083|18083|18084|18086|18087|48348|48348|132784|132785|132786|132787|132788|132789|132790|132791|132792|132794|132794|132795|132796|132796|132797|132798|132798|132799|132800|132801|132801|132802|132803|132803|132804|132804|132805|132806|132807|132808|132809|132810|132811|132812|132812|132813|132814|132815|132815|132817|132818|132819|132820|132821|132821|132822|132823|132823|132824|132824|132825|132825|132826|132827|132827|132828|132828|132829|132830|132831|132832|132833|132834|132834|132836|132837|132838|132839|132840|132841|132842|132842|132843|132844|132844|132845|132846|132847|132847|132848|132849|132849|132850|132851|132852|132854|132855|132856|132857|132857|132858|132859|132860|132861|132862|132864|132865|132865|132866|132867|132868|132869|132869|132870|132870|132871|132871|132871|132872|132872|132873|132874|132875|132876|132876|132877|132878|132879|132880|132881|132882|132883|132884|132885|132886|132887|132888|132889|132890|132891|132892|132893|132894|132895|132897|132897|132898|132899|132900|132902|132903|132904|132904|132905|132906|132907|132908|132909|132910|132911|132912|132913|132913|132914|132915|132916|132917|132918|132919|132920|132920|132921|132922|132923|132925|132926|132928|133903|133904|133905|133906|133907|133908|133909|136433|136443|136444|136454|136462|136463|136473|136484|136498|136505|137341|137342|137342|137343|137344|137345|137346|137347|137349|137350|137351|137354|137355|137356|137357|137358|137359|137360|137362|137363|137364|137364|137366|137367|137368|137369|137370|137371|137371|137372|137373|137374|137375|137376|137376|137377|137377|137378|137379|137379|137380|137380|137381|137382|139442|139443|139444|139445|139446|139447|139448|139449|139450|139451|139452|139453|139454|139455|139456|139457|139458|139459|139459|139460|139461|139462|139463|139464|139465|139466|139468|139469|139470|139471|139472|139473|139474|139475|139476|139477|139478|139479|139480|139481|139482|139483|139484|139485|139486|139487|139488|139489|139490|139492|139494|139495|139496|139497|139498|139499|139500|140132|140133|140135|140136|140137|140138|140139|140140|140144|140145|140146|140147|140148|140149|150475|150476|150480|150483|150484|150527|150532|150537|150546|150565|150570|150571|150581|150593|150603|150610|150611|150619|150621|150624|150626|150629|150630|150630|150634|150639|150640|150663|150695|150696|150745|150750|150751|150831|150837|150851|150896|150896|150897|150897|150903|150929|150931|150932|150947|150947|150952|150952|150954|150955|150965|150969|150985|150998|151003|151006|151029|151030|151039|151058|151061|151066|151076|151087|151103|151103|151118|151118|151118|151130|151146|151159|151160|151161|151188|151200|151202|151204|151210|151228|151232|151234|151236|151248|151257|151260|151260|151270|151271|151273|151275|151293|151296|151305|151310|151348|151352|151358|151361|151363|151367|151386|151390|151400|151410|151414|151418|151428|151435|151440|151448|151456|151464|151466|151471|151474|151477|151477|151479|151480|151489|151514|151536|151539|151554|151560|151598|151601|151623|151646|151653|151654|151655|151658|151672|151682|151690|151706|151727|151753|151757|151760|151760|151765|151769|151771|151785|151803|151804|151810|151818|151821|151840|151840|151842|151844|151854|151855|151861|151876|151878|151881|151896|151901|151902|151908|151925|151938|151957|151963|151964|151968|152036|152053|152059|152062|152068|152069|152073|152092|152121|152129|152132|152147|152147|152148|152160|152174|152186|152201|152212|152215|152217|152221|152231|152236|152246|152249|152255|152255|152257|152281|152289|152396|152414|152417|152423|152440|152463|152505|152517|152531|152607|152610|152622|152627|152647|152668|152680|152706|152726|152730|152739|180376|180378|180379|180381|180382|180382|180383|180384|180385|180386|180387|180388|180389|180390|180391|180391|180394|180395|180396|180397|180399|180400|180401|180402|180403|180405|180406|180407|180408|180409|180411|180411|180412|180413|180415|180416|180418|180419|180421|180422|180423|180424|180427|180428|180429|180431|180432|180433|180433|180434|180436|180437|180439|180440|180442|180443|180444|180447|180448|180449|180450|180451|180452|180454|180455|180457|180458|180459|180461|180462|180463|180464|180464|180465|180465|180466|180467|180468|180469|180471|180472|180474|180475|180476|180478|180479|180480|180482|180483|180483|180484|180486|180487|180489|180490|180491|180491|180493|180494|180494|180495|180498|180499|180500|180501|180502|180503|180504|180505|180507|180508|180509|180510|180511|180513|180514|180515|180516|180518|180519|180519|180521|180522|180522|180523|180524|180525|180526|180528|180529|180531|180532|180533|180534|180535|180538|181215|183067|183068|183070|183071|183073|183074|183075|183076|183077|183078|183079|183080|183081|183082|183083|183084|183085|183085|183086|183087|183088|183089|183090|183091|183092|183094|183095|183097|183098|183099|183100|183101|183103|183104|183104|183106|183107|183108|183109|183111|183112|183113|183113|183117|183118|183119|183120|183121|183122|183123|183124|183126|183127|183128|183129|183130|183132|183135|183136|183137|183138|183139|183140|183141|183145|183146|183147|183151|183152|183153|183154|183155|183156|183157|183158|183159|183160|183163|183164|183165|183166|183167|183169|183170|183171|183172|183173|183174|183175|183176|183176|183177|183179|183180|183181|183182|183183|183184|183185|183186|183187|183188|183189|183190|183192|183193|183194|183194|183196|183197|183198|183199|183200|183201|183202|183202|183203|183204|183205|183206|183207|183208|183209|183210|183212|183213|183214|183215|183215|183216|183217|183218|183219|183221|183222|183224|183225|183226|183227|183228|183230|183230|183231|183232|183233|183234|183235|183236|183237|183238|183239|183241|183242|183243|183244|183245|183245|183246|183248|183249|183250|183251|183252|183253|183254|183257|183258|183259|183260|183260|183265|183266|183267|183268|183269|183270|183271|183272|183273|183274|183275|183276|183277|183278|183280|183281|183282|183283|183284|183286|183287|183288|183289|183290|183292|183293|183294|183295|183297|183298|183299|183300|183301|183303|183304|183305|183306|183307|183308|183311|183315|183316|183318|183319|183320|183321|183322|183324|183326|183328|183329|183330|183332|183333|183334|183335|183336|183337|183338|183339|183340|183341|183342|183343|183344|183345|183346|183347|183348|183349|183351|183352|183353|183356|183357|183358|183359|183360|183360|183361|183362|183363|183364|183365|183366|183368|183369|183370|183371|183372|183373|183374|183375|183376|183377|183378|183379|183380|183381|183382|183383|183384|183384|183385|183386|183387|183388|183389|183390|183391|183391|183392|183392|183394|183395|183398|183399|183400|183401|183401|183402|183406|183407|183408|183409|183411|183412|183413|183414|183415|183416|183418|183419|183420|183421|183422|183423|183426|183428|183430|183431|183432|183433|183434|183435|183436|183437|183438|183439|183440|183441|183442|183445|183446|183448|183449|183451|183453|183455|183456|183458|183459|183460|183461|183462|183463|183464|183465|183466|183467|183467|183468|183470|183471|183471|183472|183473|183474|183476|186132|186133|186134|186135|186136|186137|186138|186139|186141|186141|186142|186143|186143|186144|186145|186146|186147|186148|186150|186796|186797|186798|186799|186800|186801|186802|186803|186804|186805|196445|205207|205766|212834|212835|212836|212837|212838|212839|212842|212843|212844|212845|212846|212847|212848|212849|212850|212851|212851|212852|212853|212854|212855|212856|212857|212858|212861|212862|212863|212864|212865|212866|212867|212868|212869|212870|212871|212872|212873|212874|212875|212876|212877|212878|212879|212880|212881|212882|212883|212884|212886|212887|212888|212889|212890|212891|212892|212893|212894|212895|212896|212897|212898|212899|212900|212902|212903|212904|212905|212906|212907|212908|212909|212910|212912|212913|212914|212915|212917|214914|222008|222009|222020|222021|222022|222023|222024|222025|222026|222027|222028|222029|222030|222031|222032|222033|222034|222035|222036|222036|222037|222037|222038|222040|222042|222043|222044|222045|222046|222047|222048|222049|222050|222051|222052|222053|222054|222055|222056|222057|222058|222059|222059|222060|222061|222063|222064|222065|222066|222067|222068|222069|222070|222071|222072|222073|222074|222075|222076|222077|222078|222079|222080|222081|222083|222084|222085|222086|222088|222089|222090|222091|222092|222094|222095|222096|222097|222098|222099|222100|222101|222102|222103|222103|222104|222106|222107|222108|222109|222110|222111|222112|222113|222114|222115|222116|222117|222118|222119|222120|222121|222122|222123|222124|222125|222126|222127|222128|222129|222130|222131|222132|222133|223599|226343|226344|227920|231791|231793|231795|231796|231797|231798|233882|233885|233886|233887|233888|233890|233894|233895|233896|233898|233899|233900|233903|233905|233906|233907|233908|233909|233913|233915|233916|233919|233921|233922|233925|233930|233931|233933|233935|233936|233937|233938|233939|233940|233941|233942|233943|233944|233945|233947|233948|233949|233951|233952|233953|233954|233957|233959|233961|233962|233963|233966|233967|233968|233969|233970|233971|233972|233973|233974|233975|233976|233978|233979|233980|233982|233984|233987|233988|233989|233990|233991|233993|233994|233995|234002|234003|234004|234005|234006|234008|234008|234010|234014|234015|234015|234016|234017|234018|234020|234021|234022|234024|234026|234028|234029|234030|234032|234034|234035|234036|234037|234038|234039|234040|234041|234042|234043|234044|234045|234046|234049|234050|234051|234052|234054|234055|234057|234058|234059|234060|234062|234063|234064|234065|234066|234067|234068|234069|234070|234071|234072|234074|234075|234076|234077|234078|234079|234080|234082|234083|234085|234086|234087|234088|234089|234091|234093|234095|234096|234097|234099|234099|234100|234104|234105|234106|234107|234108|234110|234111|234112|234116|234118|234119|234120|234122|234123|234124|234125|234126|234127|234129|234130|234131|234132|234133|234134|234136|234138|234139|234140|234141|234142|234143|234144|234145|234147|234149|234150|234151|234152|234155|234157|234158|234161|234162|234163|234165|234166|234167|234168|234169|234170|234171|234174|234176|234177|234179|234181|234184|234185|234187|234188|234190|234194|234195|234196|234197|234197|234198|234200|234205|234206|234208|234209|234211|234212|234213|234214|234215|234216|234217|234218|234219|234220|234222|234223|234227|234228|234229|234231|234232|234234|234235|234236|234238|234239|234241|234242|234243|234244|234245|234246|234247|234248|234249|234250|234251|234252|234253|234254|234255|234256|234258|234259|234261|234262|234263|234264|234265|234266|234267|234268|234269|234270|234272|234274|234275|234277|234278|234280|234281|234282|234284|234284|234288|234289|234290|234291|234292|234293|234294|234298|234298|234299|234300|234301|234302|234306|234307|234309|234310|234311|234313|234314|234315|234316|234317|234318|234319|234320|234321|234321|234323|234324|234325|234326|234329|234330|234331|234332|234336|234338|234339|234341|234342|234343|234343|234347|234348|234349|234350|234351|234353|234353|234354|234355|234357|234358|234359|234360|234361|234362|234364|234366|234368|234369|234370|234372|234373|234374|234376|234377|234378|234379|234380|234382|234384|234385|234387|234388|234390|234391|234392|234394|234395|234398|234399|234400|234403|234404|234405|234406|234407|234409|234410|234411|234412|234413|234414|234415|234416|234418|234420|234421|234422|234426|234427|234428|234429|234430|234432|234433|234434|237325|240904|240905|240906|240907|240909|240911|240912|240913|240914|240915|240916|240917|240918|240919|240920|240921|240922|240923|240924|240926|240927|240928|240929|240930|240931|240932|240933|240934|240935|240936|240937|240939|240940|240941|240943|240944|240945|240946|240947|240948|240949|240950|240951|240953|240954|240955|240956|240957|240958|240959|240960|240961|240962|240963|240964|240964|240965|240966|240969|240970|240971|240972|240973|240974|240975|240976|240977|240978|240979|240980|240981|240981|240982|240983|240984|240985|240986|240987|240988|240989|240990|240991|240993|240994|240995|240996|240997|240998|240999|241000|241002|241003|241004|241005|241006|241008|241009|241010|241011|241013|241014|241015|241016|241017|241018|241019|241020|241021|241022|241023|241024|241025|241026|241027|241028|241029|241030|241031|241032|241033|241034|241036|241037|244572|244573|244577|244578|244579|244580|244581|244583|244585|244586|244587|244589|244593|244594|244595|244596|244599|244601|244604|244605|244606|244607|244609|244610|244612|244614|244615|244617|244619|244621|244622|244622|244623|244625|244626|244627|244628|244629|244631|244632|244634|244636|244640|244641|244643|244644|244645|244647|244649|244651|244652|244654|244657|244658|248500|248507|248508|253988|259261|259948|259949|259955|259956|259957|259963|259967|259970|259971|259971|259973|262601|262602|262603|262604|262605|262606|262607|262608|262609|262610|262611|262613|262614|262615|262616|262619|262621|262622|262626|262628|262629|262630|262631|262633|262635|264392|264571|268678|312240|312244|312246|312249|312250|312252|312253|312255|312256|312258|312259|312262|312263|312267|312268|312272|318025|318027|318028|318041|318042|318044|318057|318057|318058|318064|318065|318066|318072|318076|318078|318083|318094|318095|318102|318103|318108|318109|318111|324058|324071|324073|324088|324090|324093|324094|324107|324110|324111|324122|324124|324125|324126|324130|324136|324138|324930|324934|324936|324937|324949|324952|324953|324956|324957|324958|324962|324972|357875|357876|357877|357878|357879|357880|357881|357882|357883|357884|357885|357886|357887|357888|357889|357890|357891|357892|357893|357894|357895|357896|357897|357898|357899|357900|357901|357902|357903|357904|357905|357906|357907|357908|357909|357910|357911|357912|357913|357914|357915|357916|357917|357918|357919|357920|357921|357922|357923|357924|357925|357926|357927|357928|357929|360925|361425|361492|361946|361947|371037|371041|371046|371059|371084|371085|371093|371104|371105|371143|371151|371153|371164|371174|371176|371189|371198|371205|371210|371232|371737|371741|371769|371777|371788|371804|371807|371819|371862|371869|371876|371885|371908|371975|371977|371982|372000|372001|372006|372007|372029|372030|372042|372043|372049|372050|372058|372067|372075|372079|372105|372110|372130|372132|372135|372144|373672|373695|373709|373734|373737|373739|373740|373743|373747|373767|373773|373793|373833|373843|373866|397550|397594|397605|397612|397614|397623|397624|397626|397628|397632|397636|397643|397644|397645|397656|397661|397665|397666|397669|397676|397687|397692|397696|397701|397705|397706|397707|397709|397718|397722|397724|397727|397730|397738|397742|397743|397745|397746|397747|397750|397754|397755|397758|397766|397767|397769|397770|397771|397772|397774|397781|397782|397784|397785|397786|397788|397789|397791|397792|397796|397797|397798|397800|397802|397803|397804|397806|397808|397809|397811|397812|397816|397817|397819|397820|397821|397822|397823|397826|397827|397829|397830|397831|397833|397834|397838|397840|397842|397844|397845|397848|397849|397852|397854|397855|397856|397859|397861|397861|397863|397864|397865|397866|397867|397869|397870|397871|397872|397873|397874|397875|397877|397878|397879|397882|397883|397884|397887|397887|397889|397891|397893|397894|397895|397896|397897|397898|397899|397900|397905|397906|397907|397908|397910|397913|397914|397915|397916|397919|397920|397920|397921|397922|397924|397925|397926|397928|397936|397938|397939|397941|397942|397943|397944|397945|397947|397949|397950|397952|397956|397957|397960|397961|397962|397963|397965|397967|397968|397969|397970|397972|397974|397982|397987|397988|397990|397993|397994|397995|397997|397999|398000|398001|398002|398003|398004|398011|398012|398015|398018|398023|398025|398028|398030|398032|398037|398038|398039|398041|398043|398049|398051|398054|398056|398058|398059|398064|398067|398077|398082|398085|398087|398089|398091|398093|398095|398097|398105|398108|398110|398113|398115|398116|398117|398121|398133|398134|398137|398138|398141|398143|398145|398150|398152|398154|398155|398158|398159|398161|398162|398163|398166|398168|398170|398171|398173|398174|398175|398178|398182|398183|398186|398188|398190|398191|398192|398193|398195|398201|398204|398209|398210|398211|398214|398217|398220|398223|398225|398228|398231|398233|398236|398237|398239|398241|398243|398244|398245|398246|398248|398252|398253|398255|398258|398260|398261|398270|398271|398279|398281|398282|398285|398286|398287|398288|398289|398290|398292|398293|398295|398296|398297|398298|398301|398302|398304|398308|398310|398311|398313|398314|398323|398325|398326|398328|398329|398331|398333|398334|398335|398336|398340|398341|398343|398353|398356|398358|398361|398362|398364|398366|398367|398368|398369|398370|398371|398374|398375|398377|398378|398379|398382|398385|398400|398403|398410|398412|398429|398430|398433|398434|398436|398439|398444|398445|398447|398450|398452|398454|398464|398468|398470|398471|398474|398479|398484|398491|398493|398496|398499|398503|404599|408040|408041|408042|408043|408044|408047|408049|408050|408051|408054|408056|408059|408060|408062|408063|408064|408066|408067|408068|408072|408078|408082|408085|408086|408087|408089|408090|408091|408095|408096|408097|408098|408099|408100|408101|408102|408104|408106|408107|408108|408109|408110|408111|408114|408115|408116|408117|408121|408122|408126|408127|408133|408138|408138|408139|408141|408142|408143|408144|408147|408148|408153|408154|408155|408157|408158|408160|408163|408165|408166|408167|408168|408169|408172|408173|408174|408175|408178|408179|408182|408185|408189|408190|408191|408196|408199|408200|408202|408204|408205|408207|408210|408216|408221|408224|408227|408229|408230|408231|408232|408234|408235|408236|408242|408243|408244|408246|408247|408248|408249|408251|408254|408255|408257|408259|408260|408261|408262|408264|408265|413181|413325|413328|415247|421066|421068|421069|421073|421076|421077|421079|421079|421080|421081|421083|421084|421089|421820|421821|429167|429168|433369|437910|444705|444706|444708|444710|444711|444712|444716|444717|444719|460411|460413|460422|460432|460438|460445|460448|460450|460455|460457|460473|460474|460475|460476|460478|460479|460480|460483|460484|460485|460487|460490|460491|460494|460495|460496|460497|460499|460501|460510|460511|460513|460516|460517|460518|460519|460521|460523|460524|460525|460527|460528|460529|460531|460533|460536|460537|460538|460540|460543|460544|460546|460551|460553|460556|460557|460560|460561|460562|460566|460567|460569|460570|460572|460573|460575|460577|460578|460579|460581|460582|460584|460585|460586|460588|460589|460590|460593|460595|460597|460599|460600|460602|460603|460604|460605|460611|460614|460616|460618|460620|460624|460625|460626|460628|460630|460632|460637|460641|460644|460645|460647|460648|460650|460652|460654|460656|460657|460660|460663|460665|460667|460668|460672|460673|460674|460675|460676|460678|460679|460680|460681|460683|460684|460687|460689|460690|460692|460693|460694|460696|460698|460702|460705|460706|460707|460708|460709|460711|460712|460713|460714|460718|460720|460721|460725|460728|460730|460732|460734|460735|460736|460737|460739|460740|460743|460744|460745|460746|460747|460749|460750|460751|460752|460754|460755|460758|460760|460761|460763|460764|460767|460768|460770|460771|460773|460775|460776|460777|460779|460780|460781|460782|460783|460785|460787|460788|460789|460791|460792|460794|460795|460798|460799|460800|460801|460803|460804|460805|460806|460807|460808|460809|460810|460811|460812|460813|460814|460815|460816|460819|460820|460821|460822|460823|460824|460825|460826|460827|460828|460829|460830|460831|460832|460833|460834|460835|460837|460839|460841|460842|460843|460844|460845|460846|460847|460848|460849|460850|460852|460853|460854|460855|460856|460859|460860|460861|460864|460866|460868|460869|460871|460878|460891|460892|460901|460903|460907|460909|460912|460918|460921|460925|460928|460937|460940|460947|460952|460953|460956|460962|460970|460975|460976|460978|460980|460981|460983|460992|460995|460997|461014|461018|461025|461028|461030|461036|461037|461042|461048|461055|461057|461060|461067|461069|461076|461076|461079|461085|461088|461097|461099|461102|461104|461114|461123|461126|461127|461135|461143|461144|461147|461155|461159|461160|461161|461208|461211|461223|461226|461230|461233|461239|461240|461246|461247|461250|461258|461270|461272|461279|461289|461289|461291|461293|461296|461307|461309|461311|461312|461313|461320|461325|461329|461330|461334|461337|461341|461344|461347|461351|461362|461365|461370|461372|461378|461380|461382|461387|461390|461393|461401|461404|461405|461408|461416|461420|461425|461429|461437|461441|461446|461447|461452|461454|461457|461461|461465|461469|461472|461473|461478|461481|461483|461488|461490|461493|461500|461506|461507|461516|461517|461524|461525|461528|461529|461534|461536|461538|461539|461542|461543|461549|461553|461555|461557|461561|461563|461565|461568|461572|461578|461580|461593|461595|461597|461599|461603|461604|461612|461613|461615|461637|461641|461643|461645|461648|461649|475277|475278|475284|475288|475291|475316|475321|475324|475326|475335|475337|475342|475348|475350|475352|475355|475366|475379|475380|475384|475385|475389|475393|475394|475403|475405|475408|475410|475411|475413|475414|475428|475429|475434|475435|475439|475443|475444|475454|475457|475460|475461|475463|475464|475465|475466|475467|475468|475469|475472|475478|475479|475481|475483|475485|475486|475495|475500|475503|475505|475506|475510|475520|475522|475524|475527|475528|475530|475533|475545|475546|475547|475548|475552|475553|475555|475561|475562|475564|475571|475572|475573|475574|475577|475580|475583|475585|475589|475592|475594|475595|475597|475600|475601|475604|475612|475614|475619|475628|475632|475633|475634|475635|475640|475645|475650|475656|475657|475660|475661|475663|475667|475668|475670|475671|475672|475673|475675|475676|475677|475678|475682|475683|475685|475687|475688|475690|475691|475692|475693|475698|475699|475701|475703|475705|475708|475711|475712|475714|475715|475718|475720|475721|475723|475726|475729|475730|475731|475733|475734|475736|475739|475742|475744|475745|475748|475749|475752|475753|475755|475757|475758|475759|475760|475761|475767|475772|475777|475778|475779|475783|475787|475787|475791|475792|475793|475801|475803|475805|475806|475808|475809|475811|475814|475816|475820|475821|475822|475823|475825|475827|475829|475831|475832|475839|475840|475841|475842|475845|475848|475852|475853|475854|475858|475861|475863|475870|475873|475874|475876|475878|475879|475880|475882|475884|475886|475889|475891|475893|475896|475901|475902|475908|475913|475916|475917|475918|475920|475921|475922|475923|475924|475925|475926|475927|475932|475937|475938|475940|475941|475943|475946|475950|475951|475952|475953|475957|475960|475966|475968|475973|475978|475982|475984|475987|475988|476001|476007|476011|476013|476023|476030|476033|476034|476036|476049|476050|476053|476054|476057|476060|476066|476070|476072|476073|476075|476076|476077|476078|476079|476083|476084|476089|476089|476092|476094|476097|476102|476110|476114|476116|476118|476121|476126|476128|476135|476142|476150|476152|476157|476161|476164|476167|476168|476169|476178|476181|476185|476187|476190|476196|476198|476203|476206|476207|476212|476217|476222|476223|476231|476237|476240|476258|476264|476267|476278|476293|476297|476304|476310|476314|476318|476325|476329|476337|476341|476344|476366|476368|476370|476383|476385|476392|476395|476403|476405|476419|480499|480500|480501|480502|480503|480504|480505|482713|482749|482753|482755|482761|482763|482767|482775|482780|482786|482787|482808|482809|482813|482821|482833|482834|482836|482837|482838|482842|482852|482857|482859|482864|482875|482876|482879|482880|482882|482892|484133|484137|484159|484161|484178|484180|484181|484196|484200|484201|484204|484210|484214|484216|484227|484230|484233|484249|484277|484284|484293|484296|484300|484301|484302|484320|484332|484337|484343|484347|484348|484354|484375|484380|484386|484388|484390|484391|484405|484408|484410|484413|484415|484430|484435|484437|484444|484447|484448|484449|484450|484452|484459|484461|484465|484474|484490|484493|484495|484496|484499|484512|484513|484515|484517|484518|484536|484558|484563|484580|484583|484592|484609|484610|484615|484630|484631|484643|484666|484698|484709|487427|487476|487481|487484|503048|503091|503375|503380|503383|503423|503602|503617|503923|503933|503937|503977|512846|525584|525591|525622|525625|525628|525630|525631|525634|525636|525638|525649|525650|525656|525658|525660|525663|525670|525672|525679|525691|525695|525696|525698|525702|525703|525711|525715|525721|525723|525724|525726|525728|525730|525735|525736|525737|525738|525741|525746|525747|525749|525750|525751|525752|525758|525760|525761|525762|525763|525766|525771|525773|525774|525776|525777|525778|525780|525783|525784|525791|525794|525795|525797|525801|525803|525806|525808|525809|525812|525815|525817|525818|525821|525826|525829|525831|525833|525834|525835|525836|525837|525838|525839|525840|525842|525847|525848|525850|525853|525854|525856|525857|525859|525860|525862|525863|525864|525865|525866|525867|525869|525875|525877|525880|525881|525884|525885|525888|525889|525892|525893|525894|525895|525896|525899|525900|525901|525904|525906|525908|525909|525910|525913|525914|525915|525916|525917|525920|525925|525926|525927|525930|525931|525932|525934|525936|525938|525939|525942|525944|525946|525947|525951|525956|525957|525959|525960|525962|525963|525965|525966|525967|525973|525975|525976|525979|525983|525985|525988|525989|525990|525992|525998|525999|526002|526009|526010|526020|526028|526030|526032|526033|526036|526042|526043|526044|526046|526049|526051|526053|526054|526056|526057|526058|526060|526061|526062|526063|526068|526069|526075|526080|526081|526084|526085|526087|526093|526097|526100|526108|526111|526114|526121|526123|526129|526131|526134|526136|526139|526142|526146|526151|526165|526167|526176|526179|526187|526188|526198|526200|526204|526205|526208|526209|526225|526231|526233|526241|526244|526251|526253|526257|526262|526269|526271|526274|526276|526280|526287|526289|526301|526302|526304|526307|526309|526311|526314|526317|526322|526340|526343|526348|526349|526351|526355|526356|526366|526377|536377|536378|536383|536390|536394|536395|537176|545333|545339|545342|545348|545350|545353|545365|545370|545373|545375|545396|545397|545682|545683|545687|545693|545696|545697|545707|545709|545711|545712|545713|545714|545715|545716|545718|545719|545720|545721|545724|545726|545728|545730|545732|545734|545735|545738|545740|545743|545745|545753|545766|545768|545770|545773|545774|545789|545792|545804|545809|545813|545815|545967|545967|545975|545980|545982|545986|545989|545994|546007|546009|546018|546024|546036|546038|550264|550663|551877|551884|552148|552290|564087|564088|564090|564116|564119|564124|564125|564127|564129|564134|564136|564139|564143|564145|564147|564149|564151|564153|564155|564163|564165|564167|564170|564171|564173|564182|564184|564186|564188|564190|564191|564192|564196|564198|564200|564202|564208|564211|564217|564220|564232|564233|564235|564237|564239|564245|564247|564250|564251|564254|564255|564257|564262|564263|564267|564273|564274|564282|564283|564284|564294|564300|564302|564303|564304|564312|564315|564321|564325|564326|564330|564331|564333|564334|564338|564345|564350|564353|564354|564356|564357|564361|564370|564370|564372|564376|564982|564989|564990|564998|565054|565061|565062|565064|565065|565070|565080|565085|565086|565092|565094|565096|565097|565099|565103|565104|565109|565115|565116|565118|565123|565126|565129|565130|565132|565156|565173|565178|565179|565183|565187|565189|565190|565193|565206|565217|565218|565223|565238|565242|565246|565251|565257|565258|565258|565275|565276|565278|565280|565281|565291|565293|565294|565295|565301|565302|565315|565316|565318|565330|565344|565345|565346|565350|565363|565367|565371|565373|565378|565380|565387|565388|565393|565395|565401|565403|565405|565412|565414|565415|565423|565427|565431|565439|565451|565452|565455|565456|565464|565466|565470|565471|566702|566714|566749|566759|566762|566764|566770|566772|566774|566776|566778|566782|566785|566787|566789|566791|566803|566804|566806|566807|566809|566813|566818|566820|566822|566826|566834|566837|566838|566843|566844|566846|566848|566853|566855|566857|566865|566868|566870|566873|566881|566883|566888|566889|566891|566894|566896|566897|566899|566900|566906|566908|566910|566920|566922|566925|566927|566929|566939|566942|566944|566945|566949|566953|566955|566957|566967|566969|566971|566972|566984|566988|566989|566997|566998|567001|567006|567008|567009|567011|567023|567026|567027|567032|567034|567037|569932|569933|569971|569976|569980|569982|569986|569988|569990|569992|569993|569993|569999|570002|570003|570006|570011|570012|570023|570026|570031|570032|570034|570046|570047|570049|570051|570054|570056|570057|570060|570065|570068|570084|570090|570093|570094|570096|570097|570098|570104|570109|570113|570117|570122|570123|570126|570132|570141|570142|570165|570168|570170|570182|570183|570185|570191|570196|570199|570202|570204|570207|570208|570217|570235|570236|570241|570242|570247|570255|570257|570259|570265|570271|570282|570285|570288|570289|575559|575562|575571|575573|575812|575813|575814|575815|575816|575817|575818|575819|575820|575821|575822|575823|575824|575825|575826|575827|575828|575829|575830|575831|575832|575833|575835|575836|575837|575838|575839|575840|577167|609170|609171|609781|611740|614353|615925|617619|617625|617628|617631|617633|617637|617641|617653|617655|617659|617661|617671|617676|617696|617697|617698|617708|617710|617715|617717|617723|617724|617727|617730|617732|617738|617741|617752|617761|617764|617767|617773|617776|617787|617795|617796|617797|617799|617800|617802|617803|617806|617808|617809|617811|617817|617820|617822|617824|617827|617828|617831|617833|617841|617842|617844|619350|619363|619379|619406|619429|619456|621326|621327|621329|621330|621331|621338|621798|621799|621800|621802|621804|622397|624417|624418|624792|639367|639368|639369|639370|639371|639372|639373|639374|639375|639376|639377|639378|639379|639380|639381|639382|639383|639384|639385|639386|639387|639388|639389|639390|639391|639392|639393|639394|639395|639396|639397|639398|639399|639400|639401|639402|639403|639404|639405|639406|639407|639408|639409|639410|639411|639412|639413|639414|639415|639416|639417|639418|639419|639420|639421|639422|639423|639424|639425|639426|639427|639428|639429|639430|639431|639432|639433|639434|639435|639436|639437|639438|639439|639440|639441|639442|639443|639444|639445|639446|639447|639448|639449|639450|639451|639452|639453|639454|639455|639456|639457|639458|639459|639460|639461|639462|639463|639464|639465|639466|639467|639468|639469|639470|639471|639472|639473|639474|639475|639476|639477|639478|639479|639480|639481|639482|639483|639484|639485|639486|639487|639488|639489|639490|639491|639492|639493|639494|639495|639496|639497|639498|639499|639500|639501|639502|639503|639504|639505|639506|639507|639508|639509|639510|639511|639512|639513|639514|639515|639516|639517|639518|639519|639520|639521|639522|639523|639524|639525|639526|639527|639528|639529|639530|639531|639532|639533|639534|639535|639536|639537|639538|639539|639540|639541|639542|639543|639544|639545|639546|639547|639548|639549|639550|639551|639552|639553|639554|639555|639556|639557|639558|639559|639560|639561|639562|639563|639564|639565|639566|639567|639568|639569|639570|639571|639572|639573|639574|639575|639576|639577|639578|639579|639580|639581|639582|639583|639584|639585|639586|639587|639588|639589|639590|639591|639592|639593|639594|639595|639596|639597|639598|639599|639600|639601|639602|639603|639604|639605|639606|639607|639608|639609|639610|639611|639612|639613|639614|639615|639616|639617|639618|639619|639620|639621|639622|639623|639624|639625|639626|639627|639628|639629|639630|639631|639632|639633|639634|639635|639636|639637|639638|639639|639640|639641|639642|639643|639644|639645|639646|639647|639648|639649|639650|639651|639652|639653|639654|639655|639656|639657|639658|639659|639660|639661|639662|639663|639664|639665|639666|639667|639668|639669|639670|639671|639672|639673|639674|639675|639676|639677|639678|639679|639680|639681|639682|639683|639684|639685|652022|652030|652035|652036|652044|652046|652049|652059|652066|652068|652069|652071|652073|652074|652075|652078|652079|652081|652082|652083|652087|652090|652092|652093|652106|652111|652114|652120|652123|652133|652134|652136|652137|652148|652152|652176|652178|652181|652185|652229|652236|652237|652243|652244|652251|652254|652262|652273|652275|652276|652280|652290|652294|652302|652304|652357|652361|652372|652373|652400|652405|652411|652412|652415|652422|652441|652442|652444|652450|652459|652477|664902|665769|672038|682728|684221|687705|692921|692923|692924|692925|692926|695493|724183|730724|744544|752402|752404|752405|752411|752416|759908|768119|768124|768126|768128|768130|768146|768151|768157|768158|768163|768169|768170|768171|768173|768174|768175|768177|768178|768182|775593|775594|775613|775616|775740|775743|775747|775749|775762|775773|777895|783818|783821|783822|783826|783827|783833|783836|783837|783841|783844|783847|783848|783851|783852|783853|783854|783856|783858|783861|783862|787695|787697|787718|787888|787899|791026|791027|791028|791029|791030|791031|791032|791033|791034|791035|791036|791037|791038|791039|791040|791041|791042|791043|791044|791045|791046|791047|791048|791049|791050|791051|791052|791053|791054|791055|791056|791057|791058|791059|791060|791061|791062|791063|791064|791065|791066|791067|791068|791069|791070|791071|791072|791073|791074|791075|791076|791077|791078|791079|791080|791081|791082|791083|791084|791085|791086|791087|791088|791089|791090|791091|791092|791093|791094|791095|791096|791097|791098|791099|791100|791101|792780|792780|796512|798633|798634|798635|810154|810156|810159|810165|810167|810172|810173|810189|810218|810222|810244|810246|810246|810247|810250|810254|810256|810267|810268|810283|810289|810295|810298|810299|810300|810309|810313|810319|810323|810328|810333|810342|810348|810354|810358|810362|810373|810379|810396|810405|810408|810409|810412|810415|810417|810424|810442|810446|810448|810453|810460|810461|810462|810464|810467|810471|810479|810485|810486|810489|810502|810506|810510|810518|810531|810532|810537|810540|810541|810545|810546|810547|810550|810555|810564|810567|810576|810580|810588|810595|810597|810604|810608|810617|810624|810641|810642|810659|810660|810665|810670|810673|810683|810684|810690|810692|810694|810697|810701|810720|810725|810726|810740|810752|815470|815475|815479|815480|815481|815484|815492|815494|815501|820289|820291|820292|820293|820294|820295|820296|820297|820298|820299|820300|820301|820302|820303|820304|820305|820306|820307|820309|820310|820311|820312|820313|820314|820315|820316|820317|820318|820319|820320|820321|820322|820323|820324|820325|820326|820327|820328|822052|837599|837600|837601|837602|837603|837604|837605|837606|837607|837608|837609|837610|837611|837612|837613|837614|837615|837616|837617|837618|837619|837620|837621|837622|837623|837624|837625|837626|837627|837628|837629|837630|837631|837632|837633|837634|837635|837636|837637|837638|837639|837640|837641|837642|837643|837644|837645|837646|837647|837648|837649|837650|837651|837652|837653|837654|837655|837656|837657|837658|837659|837660|837661|837662|837663|837664|837665|837666|837667|837668|837669|837670|837671|837672|837673|837674|837675|837676|837677|837678|837679|837680|837681|837682|837683|837684|837685|837686|837687|837688|837689|837690|837691|837692|837693|837694|837695|837696|837697|837698|837699|837700|837701|837702|837703|837704|837705|837706|837707|837708|837709|837710|837711|837712|837713|837714|837715|837716|837717|837718|837719|837720|837721|837722|837723|837724|837725|837726|837727|837728|837729|837730|837731|837732|837733|837734|837735|837736|837737|837738|837739|837740|837741|837742|837743|837744|837745|837746|837747|837748|837749|837750|837751|837752|837753|837754|837755|837756|837757|837758|837759|837760|837761|837762|837763|837764|837765|837766|837767|837768|837769|837770|837771|837772|837773|837774|837775|837776|837777|837778|837779|837780|837781|837782|837783|837784|837785|837786|837787|837788|837789|837790|837791|837792|837793|837794|837795|837796|837797|837798|837799|837800|837801|837802|837803|837804|837805|837806|837807|837808|837809|837810|837811|837812|837813|837814|837815|837816|837817|837818|837819|837820|837821|837822|837823|837824|837825|837826|837827|837828|837829|837830|837831|837832|837833|837834|837835|837836|837837|837838|837839|837840|837841|837842|837843|837844|837845|837846|837847|837848|837849|837850|837851|837852|837853|837854|837855|837856|837857|837858|837859|837860|837861|837862|837863|837864|837865|837866|837867|837868|837869|837870|837871|837872|837873|837874|837875|837876|837877|837878|837879|837880|837881|837882|837883|837884|837885|837886|837887|837888|837889|837890|837891|837892|837893|837894|837895|837896|837897|837898|837899|837900|837901|837902|837903|837904|837905|837906|837907|837908|837909|837910|837911|837912|837913|837914|837915|837916|837917|837918|837919|837920|837921|837922|837923|837924|837925|837926|837927|837928|837929|837930|837931|837932|837933|837934|837935|837936|837937|851401|851403|851405|851407|851409|851411|851413|851415|851417|851419|851798|851800|851802|851804|851806|851808|851810|851812|851814|851816|851818|852293|852299|852302|852303|852304|852305|852309|852314|852315|852320|852321|852326|852566|852567|852569|852573|852575|852576|852577|852581|852583|852584|852585|852587|852591|852593|852594|852595|852597|852601|858406|858407|858408|858430|858436|858438|858444|858445|858453|858459|858473|866948|866949|866950|866951|866952|866953|866954|866955|866956|866957|866958|866959|866960|866961|866962|866963|866964|866965|866966|866967|866968|866969|866970|866971|866972|866973|866974|866975|866976|866977|866978|866979|866980|866981|866982|866983|866984|866985|866986|868599|868600|868601|906087|911286|911289|911296|911297|911336|911341|911367|911374|911386|911387|911393|911401|911416|911426|911518|911543|916059|916171|917762|926004|926005|926006|926007|926008|926009|926010|926011|926012|926013|926014|926015|926016|926017|926018|926019|926020|926021|926022|926023|926024|926025|926026|926027|926028|926029|926030|926031|926032|926033|926034|926035|926036|926037|926038|926039|926040|926041|926042|926043|926044|926045|926046|926047|926048|926049|926050|926051|926052|926053|926054|926055|926056|926057|926058|926059|926060|926061|926062|926063|926064|926065|926066|926067|926068|926069|926070|926071|926072|926073|926074|926075|926076|926077|926078|926079|926080|926081|926082|926083|926084|926085|926086|926087|926088|926089|926090|926091|926092|926093|926094|926095|926096|926097|926098|926100|926101|926102|926103|926104|926105|926106|926107|926108|926109|926110|926111|935281|935282|935283|935284|935285|935286|935287|935288|935289|935290|935291|935292|935293|935294|935295|935296|935297|935298|935299|935300|935301|935302|935303|935304|935305|935306|935307|935308|935309|935310|935311|935312|935313|935314|935315|935316|935317|935318|935319|935320|935321|935322|935323|935324|935325|935326|935327|935328|935329|935330|935331|935332|935333|935334|935335|935336|935337|935338|935339|935340|935341|935342|935343|935344|935345|935346|935347|935348|935349|935350|935351|935352|935353|935354|935355|935356|935357|935358|935359|935360|935361|935362|935363|935364|935365|935366|935367|935368|935369|935370|935371|935372|935373|935374|940191|940192|940193|940194|940195|940196|940197|940198|940199|940200|940201|940976|940977|940978|940979|940980|940981|940982|940983|940984|940985|940986|940987|940988|947181|947182|947183|947184|947185|947186|947187|947188|947189|947190|947191|947192|947193|947194|947195|947196|947197|947198|947199|947200|947201|947202|947203|947204|947205|947206|947207|947208|947209|947210|947211|947212|947213|947214|947215|947216|947217|947218|947219|947220|947221|947222|947223|947224|947225|947226|947227|947228|947229|947230|947231|947232|947233|947234|947235|947236|947237|947238|947239|947240|947241|947242|947243|947244|947245|947246|947247|947248|947249|947250|947251|947252|947253|947254|947255|947256|947257|947258|947259|947260|947261|947262|947263|947264|947265|947266|947267|947268|947269|947270|947271|947272|947273|947274|947275|947276|947277|947278|947279|947280|947281|947282|947283|947284|947285|947286|947287|947288|947289|947290|947291|947292|947293|947294|956312|956313|956314|956315|956316|956317|956318|956319|956320|956321|956322|956323|956324|956325|956326|956327|956328|956329|956330|956331|956332|956333|956334|956335|956336|956337|956338|956339|956340|956341|956342|956343|956344|956345|956346|956347|956348|956349|956350|956351|956352|956353|956354|956355|956356|956357|956358|956359|956360|956361|956362|956363|956364|956365|956366|956367|956368|956369|956370|956371|956372|956373|956374|956375|956376|959959|959960|959961|959962|959963|959965|959966|959967|959968|959969|959970|959971|959972|959973|960739|960740|960741|960742|960743|961862|961863|966058|970130|970137|978856|978857|978858|978859|978860", + "text": "Ataxia-telangiectasia syndrome" + }, + { + "baseId": "18058|18062|18065|18081", + "text": "T-cell prolymphocytic leukemia" + }, + { + "baseId": "18058|18062|19777|20642|22852|22868|23582|24361|24364|27386|27388|27393|27394|27395|27397|27398|27403|27404|27405|27407|27408|27409|27413|27418|27422|27640|27641|27642|27645|27651|27652|28691|28692|28693|28694|28695|28696|28698|28916|29022|30972|30973|32700|32710|32716|33122|36171|36173|40609|40610|44227|45948|45979|45994|46029|46042|46079|46093|46126|46150|46179|46215|46247|46275|46332|46355|46371|46373|46454|46488|46540|46546|46577|46593|46599|46632|46642|46709|46761|46788|46795|46807|46814|48304|48834|49979|49980|49981|49982|49983|49995|49999|50004|50008|50222|50248|50267|52763|54155|54158|54633|65786|65799|65854|65860|65917|65926|66022|66027|66101|66256|66274|66350|66363|66564|66646|66676|66687|66755|66774|66795|66994|67015|67021|67075|67175|67194|67227|67411|67494|67516|67566|68211|68810|68893|68894|68929|69038|69048|69099|69115|69122|69139|69189|69218|69225|69271|69274|69324|69447|69477|69554|69616|69624|69640|69654|69786|69828|69841|69863|69923|69926|69929|69936|69954|69957|69969|69973|70037|70044|70055|70074|70080|70147|70247|70258|70268|70271|70393|70439|96830|97022|97207|97280|97306|98735|102665|102669|102683|102755|102799|131163|131526|133271|133272|133274|133276|133277|133499|133499|133501|133517|137701|139098|139844|140244|140270|150515|150535|150855|150869|150977|151322|151476|151721|151732|151897|152021|152371|152428|152582|166215|166218|171613|171614|173901|176503|179419|180937|180995|181000|181001|181005|182783|183706|183802|183816|183974|184068|185267|185345|185350|185366|185367|185371|185375|185384|185394|187953|206650|208406|213392|213398|213402|213943|222311|222394|222738|226152|226153|226154|226155|226156|226157|226158|226159|226160|226161|226162|226163|226164|226165|226166|226167|226168|226169|226170|226171|226172|226173|226174|226175|226176|226177|226178|226179|226180|226181|226182|226183|226184|226185|226186|226187|226188|226189|226190|226191|226192|226193|226194|226195|226196|226197|226198|226199|226200|226201|226202|226203|226204|226205|226206|226207|226208|226209|226210|226211|226212|226213|226214|232035|234901|235190|236459|236461|236462|236463|236468|236469|236471|236477|236479|236481|236689|241649|242978|242980|244978|245074|246794|260191|260192|261167|261756|285273|287660|287661|329235|329239|329240|329250|339487|339491|339517|345274|345280|345282|346666|346669|346670|346680|346681|353557|358932|360710|360711|360712|360713|360714|360715|360716|360717|360718|361700|361709|362768|362770|362771|362772|362775|362776|362777|362778|362779|362813|362814|362815|362816|362837|362838|362853|362854|362855|362869|362870|362871|362872|362873|362874|362887|362894|362895|362896|362912|362914|362915|362928|362929|362930|362931|363036|363067|363068|363082|363083|363084|363085|363122|363123|363124|363125|363194|363197|363202|363212|363222|363223|363244|363282|363283|363285|363286|363287|363288|363289|363290|363293|363294|363295|363296|363297|363298|363299|363300|363301|363312|363330|363331|363332|363333|363334|363335|363348|363349|363350|363351|363352|363353|363354|363355|363356|363357|363360|363361|363362|363363|363364|363365|363366|363367|363368|363369|363370|363376|363377|363378|363379|363380|363381|363384|363385|363386|363388|363396|363397|363398|363399|363400|363410|363411|363412|363420|363438|363439|363440|363441|363442|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363473|363474|363475|363476|363477|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363496|363497|363498|363499|363500|363501|363502|363503|363504|363505|363506|363507|363508|363509|363510|363511|363512|363513|363514|363515|363516|363517|363518|363519|363520|363521|363522|363523|363524|363525|363526|363527|363528|363529|363530|363531|363534|363535|363536|363537|363538|363539|363540|363541|363542|363543|363544|363545|363546|363547|363548|363549|363550|363551|363552|363553|363554|363555|363556|363557|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|363572|363573|363574|363575|363576|363583|363616|363625|363626|397056|399686|404713|423237|423238|423239|423240|423241|423242|423243|423244|423245|423246|423247|423248|423249|423251|423252|423863|432763|439931|456783|468319|538651|550689|550696|550708|550718|550725|677269|903496|903497|970861|971006|973095", + "text": "Breast neoplasm" + }, + { + "baseId": "18060|18061|18062|18084|18086|48348", + "text": "Ataxia-telangiectasia variant" + }, + { + "baseId": "18066", + "text": "B-cell non-Hodgkin lymphoma" + }, + { + "baseId": "18067|18068", + "text": "Ataxia-telangiectasia without immunodeficiency" + }, + { + "baseId": "18075|21979|24357|24358|24359|24361|24364|24367|24381|24388|27388|32700|32701|32705|32706|32710|32712|32713|32714|32716|32720|32721|32722|32723|32733|39241|45942|45946|45972|45974|45979|45982|45986|45991|45997|46000|46002|46005|46006|46010|46015|46021|46022|46029|46034|46079|46098|46099|46101|46110|46116|46121|46122|46125|46134|46154|46168|46172|46176|46179|46191|46192|46194|46196|46210|46215|46228|46234|46237|46242|46249|46254|46258|46259|46265|46268|46278|46281|46290|46318|46324|46326|46340|46349|46354|46357|46362|46373|46382|46402|46415|46421|46427|46430|46434|46442|46448|46466|46468|46471|46473|46479|46485|46498|46499|46506|46510|46514|46519|46531|46539|46540|46545|46551|46563|46576|46583|46584|46593|46599|46602|46604|46616|46620|46633|46635|46642|46652|46653|46659|46681|46682|46690|46697|46698|46708|46717|46724|46748|46749|46750|46757|46759|46761|46763|46764|46767|46773|46776|46777|46783|46789|46796|46797|46798|46804|46807|46818|46822|49979|49980|49981|49982|49985|49987|49988|49998|50000|50001|50002|50003|50009|50011|50244|50248|50249|50250|50260|50268|50270|50274|65711|65731|65758|65789|65807|65837|65860|65861|65898|65914|65926|65928|65946|65967|65973|66005|66017|66034|66038|66045|66046|66063|66074|66077|66087|66094|66103|66129|66149|66213|66215|66238|66243|66247|66257|66260|66334|66336|66344|66345|66352|66481|66564|66565|66568|66571|66580|66599|66618|66620|66622|66673|66675|66726|66773|66802|66813|66844|66848|66849|66867|66890|66893|66907|66914|66917|66928|66966|66992|67010|67021|67069|67115|67130|67131|67151|67168|67183|67199|67215|67227|67232|67252|67274|67360|67424|67431|67468|67494|67529|67537|67543|67566|67584|67587|68769|68780|68783|68797|68807|68819|68824|68867|68897|68910|68945|68970|68977|69038|69083|69084|69091|69098|69109|69114|69128|69134|69136|69145|69183|69223|69232|69253|69271|69299|69319|69324|69331|69341|69361|69416|69420|69457|69483|69507|69553|69574|69597|69616|69617|69624|69627|69637|69654|69754|69759|69760|69778|69784|69792|69821|69840|69858|69883|69896|69912|69923|69960|70011|70034|70042|70068|70069|70088|70111|70132|70147|70148|70190|70209|70247|70268|70272|70276|70302|70305|70309|70355|70390|70411|70436|70442|95212|95227|96158|96275|96946|96969|96978|96988|97061|97113|97245|97252|102755|102763|131073|131182|131236|131263|131381|131418|131464|131466|131485|131654|132102|132133|132193|132267|132274|132871|132904|133177|133350|133499|133506|133525|133532|133549|133623|133658|136529|139509|140240|140264|150759|150809|151086|151166|151343|151347|151482|151581|151787|151882|151983|152009|152057|152261|152428|152588|165971|176641|180554|180620|181112|181842|181980|182906|183641|183647|183737|183754|183819|183833|183894|183936|183938|183940|184006|184047|184069|184430|184954|185011|185015|185046|185104|186176|186442|186449|186452|186456|186458|186540|186545|213065|213320|213398|221277|221577|222097|222118|222344|222348|232013|232302|233710|234125|234718|234777|234781|235005|235896|235935|236182|241681|241689|242788|242857|244627|244856|246842|249040|261086|261622|261962|262097|262098|262100|262104|262105|262957|338575|399292|399761|401997|402512|409981|410136|410163|424714|427530|427541|427542|427550|427560|429493|429494|434964|472498|474340|476710|477057|477171|478499|480120|528265|529827|590169|590170|590171|590172|590173|590174|615054|615055|615056|615057|615058|615059|615060|615142|615143|615144|615145|615231|618070|685134|815341|835108|845702|903952|904018|904019|977336|977337|977338|977339|977340|977341|977342|977343|977344|977345|977346|977347|977348|977349|977350|977351|977352|977353|977354|977355|977356|977357|977358", + "text": "Breast and/or ovarian cancer" + }, + { + "baseId": "18078|18079|18080", + "text": "Mantle cell lymphoma" + }, + { + "baseId": "18086|20637|20642|21861|21985|24356|24357|24358|24359|24361|24364|24365|24367|24368|24379|24381|24383|24384|24385|24386|24387|24388|27285|27421|32699|32700|32701|32704|32705|32706|32708|32709|32710|32711|32712|32713|32714|32715|32716|32720|32721|32722|32723|32724|32732|32733|32734|39241|40236|45222|45942|45943|45944|45945|45946|45947|45948|45949|45954|45955|45957|45958|45960|45962|45965|45967|45968|45969|45970|45971|45972|45973|45974|45976|45977|45978|45979|45981|45982|45983|45986|45991|45992|45994|45996|45997|45999|46000|46001|46002|46002|46003|46005|46006|46007|46008|46010|46011|46012|46013|46015|46017|46018|46019|46020|46021|46022|46023|46024|46025|46026|46027|46028|46029|46030|46031|46032|46033|46034|46035|46036|46037|46039|46041|46042|46043|46044|46045|46046|46047|46049|46050|46055|46060|46061|46062|46063|46065|46066|46069|46072|46073|46077|46078|46079|46080|46081|46082|46083|46084|46085|46086|46087|46090|46091|46092|46093|46097|46098|46099|46100|46101|46102|46103|46104|46105|46109|46110|46111|46112|46115|46116|46117|46118|46119|46120|46121|46122|46125|46126|46127|46129|46130|46131|46132|46134|46136|46137|46138|46140|46141|46142|46144|46149|46150|46152|46154|46154|46155|46156|46157|46159|46160|46162|46163|46164|46167|46168|46169|46170|46171|46172|46175|46176|46177|46179|46180|46181|46183|46184|46184|46185|46186|46187|46188|46189|46190|46191|46192|46193|46194|46195|46196|46197|46198|46199|46200|46201|46202|46203|46204|46206|46207|46210|46210|46212|46213|46214|46215|46216|46217|46219|46220|46223|46227|46228|46229|46230|46231|46232|46233|46234|46235|46236|46237|46238|46239|46240|46241|46242|46242|46245|46247|46248|46249|46251|46252|46253|46254|46255|46256|46257|46258|46259|46262|46264|46265|46266|46268|46270|46271|46273|46274|46275|46276|46277|46278|46280|46281|46282|46283|46285|46286|46287|46289|46290|46291|46292|46293|46294|46295|46297|46298|46299|46300|46301|46302|46306|46307|46308|46309|46310|46311|46312|46314|46315|46316|46318|46319|46320|46321|46323|46324|46325|46326|46327|46328|46330|46331|46332|46334|46335|46337|46340|46341|46342|46343|46344|46347|46349|46350|46352|46354|46355|46356|46357|46359|46360|46362|46363|46365|46366|46367|46368|46370|46371|46372|46373|46375|46376|46380|46382|46384|46385|46386|46388|46389|46390|46391|46393|46395|46396|46397|46398|46399|46401|46402|46403|46404|46406|46407|46408|46409|46410|46411|46412|46413|46414|46415|46417|46418|46419|46421|46422|46423|46424|46427|46429|46431|46432|46433|46434|46436|46438|46439|46441|46442|46443|46445|46447|46448|46451|46453|46454|46455|46456|46458|46460|46461|46462|46464|46465|46466|46468|46469|46470|46471|46472|46473|46475|46476|46480|46481|46482|46483|46484|46485|46486|46487|46488|46491|46492|46493|46494|46495|46496|46497|46498|46499|46500|46501|46502|46504|46505|46506|46507|46508|46509|46510|46511|46512|46513|46514|46515|46516|46517|46519|46520|46521|46523|46524|46525|46528|46529|46530|46531|46531|46532|46533|46534|46535|46536|46537|46539|46540|46541|46542|46543|46544|46545|46546|46548|46549|46551|46552|46553|46554|46555|46557|46558|46559|46560|46561|46562|46563|46564|46565|46566|46567|46568|46569|46570|46571|46572|46574|46575|46576|46577|46578|46579|46580|46581|46582|46583|46584|46585|46586|46588|46589|46590|46592|46593|46594|46595|46597|46598|46599|46601|46602|46603|46604|46606|46607|46608|46609|46610|46615|46616|46617|46618|46619|46620|46621|46622|46623|46624|46625|46626|46627|46628|46629|46631|46632|46633|46634|46635|46637|46638|46639|46640|46641|46642|46645|46647|46649|46650|46651|46652|46653|46655|46656|46657|46658|46659|46660|46661|46662|46663|46664|46665|46666|46666|46667|46668|46669|46670|46672|46675|46677|46678|46679|46680|46681|46682|46687|46687|46688|46690|46691|46692|46693|46694|46695|46696|46697|46698|46699|46701|46702|46703|46704|46705|46707|46708|46711|46711|46713|46715|46717|46718|46719|46720|46722|46723|46724|46725|46726|46729|46731|46732|46733|46734|46735|46736|46739|46740|46741|46742|46744|46745|46746|46747|46748|46749|46750|46751|46752|46753|46754|46755|46756|46757|46758|46759|46760|46761|46763|46764|46765|46766|46767|46768|46769|46771|46771|46773|46774|46775|46776|46777|46778|46779|46780|46781|46783|46784|46785|46786|46787|46788|46789|46790|46791|46792|46793|46794|46795|46796|46797|46798|46799|46800|46802|46803|46804|46806|46807|46808|46809|46810|46811|46813|46814|46815|46816|46817|46818|46819|46820|46822|46823|49978|49979|49980|49981|49982|49983|49984|49985|49986|49987|49988|49990|49992|49995|49997|49998|49999|50000|50001|50002|50003|50004|50006|50007|50008|50009|50011|50087|50162|50242|50243|50244|50245|50246|50247|50248|50249|50250|50251|50252|50253|50254|50255|50256|50257|50260|50262|50264|50265|50266|50267|50268|50269|50270|50271|50274|51230|65706|65707|65709|65711|65713|65714|65715|65716|65717|65721|65722|65724|65725|65727|65728|65732|65733|65734|65735|65736|65738|65739|65742|65745|65748|65751|65753|65754|65755|65758|65760|65761|65762|65768|65770|65773|65776|65777|65781|65784|65788|65789|65796|65797|65798|65799|65803|65804|65827|65828|65831|65832|65834|65836|65837|65838|65843|65845|65846|65849|65850|65852|65853|65854|65855|65857|65858|65860|65861|65864|65865|65867|65868|65872|65874|65875|65876|65878|65880|65883|65884|65886|65888|65889|65898|65902|65903|65904|65912|65914|65916|65917|65919|65925|65926|65927|65928|65934|65935|65937|65942|65945|65946|65949|65950|65954|65956|65959|65960|65962|65966|65970|65973|65975|65976|65983|65985|65986|65990|65994|65996|65998|65999|66000|66008|66010|66011|66012|66013|66015|66017|66020|66021|66023|66024|66025|66030|66031|66034|66036|66038|66039|66040|66041|66043|66045|66046|66047|66049|66050|66052|66053|66057|66059|66061|66063|66065|66068|66071|66074|66077|66078|66080|66081|66082|66083|66085|66086|66087|66089|66090|66091|66094|66096|66100|66101|66103|66110|66114|66116|66118|66121|66124|66128|66129|66133|66135|66139|66147|66148|66149|66152|66153|66154|66156|66157|66158|66161|66163|66169|66170|66171|66172|66177|66183|66184|66191|66193|66198|66199|66202|66203|66205|66206|66211|66212|66213|66214|66215|66223|66230|66232|66245|66246|66247|66249|66251|66252|66254|66256|66257|66258|66260|66267|66270|66279|66282|66284|66285|66286|66287|66289|66291|66292|66295|66296|66299|66300|66301|66303|66304|66306|66308|66309|66310|66311|66312|66313|66314|66315|66316|66318|66319|66320|66321|66325|66328|66329|66337|66339|66342|66344|66345|66346|66350|66351|66352|66354|66355|66358|66360|66362|66363|66366|66369|66370|66372|66376|66377|66384|66385|66387|66389|66398|66400|66403|66404|66409|66411|66413|66414|66415|66418|66419|66423|66424|66425|66429|66433|66434|66435|66438|66441|66443|66447|66448|66449|66452|66454|66459|66462|66463|66465|66466|66467|66468|66469|66469|66470|66471|66478|66479|66481|66482|66486|66488|66490|66491|66492|66493|66494|66496|66499|66500|66501|66503|66504|66508|66509|66510|66514|66519|66520|66521|66523|66526|66527|66528|66530|66531|66532|66533|66539|66541|66543|66544|66546|66548|66549|66552|66553|66558|66559|66560|66563|66564|66565|66568|66571|66579|66580|66581|66587|66593|66595|66596|66598|66599|66601|66603|66604|66608|66611|66612|66616|66618|66620|66622|66625|66626|66627|66631|66640|66641|66647|66649|66650|66655|66658|66659|66663|66666|66669|66671|66673|66675|66683|66684|66685|66688|66690|66692|66693|66697|66700|66703|66714|66716|66722|66725|66726|66728|66737|66739|66742|66751|66754|66755|66762|66764|66765|66769|66770|66773|66774|66775|66776|66781|66783|66784|66787|66789|66790|66791|66794|66799|66802|66804|66806|66807|66813|66814|66817|66819|66823|66824|66827|66828|66829|66831|66832|66833|66842|66845|66846|66848|66850|66851|66852|66854|66855|66856|66859|66861|66864|66866|66867|66870|66871|66878|66880|66881|66882|66884|66885|66888|66890|66893|66894|66899|66900|66903|66905|66906|66907|66907|66909|66909|66910|66911|66913|66914|66915|66916|66917|66918|66919|66922|66924|66925|66926|66927|66928|66929|66945|66947|66949|66954|66955|66962|66966|66967|66968|66970|66974|66976|66977|66980|66983|66985|66989|66994|66995|66996|66998|67002|67003|67006|67007|67009|67010|67013|67015|67017|67021|67022|67028|67030|67031|67032|67033|67035|67040|67041|67042|67046|67050|67054|67060|67062|67063|67064|67068|67069|67073|67074|67077|67078|67080|67082|67085|67086|67087|67090|67091|67092|67093|67095|67098|67099|67101|67104|67105|67108|67109|67119|67121|67130|67131|67131|67134|67136|67138|67139|67139|67140|67142|67143|67146|67148|67149|67151|67153|67154|67155|67157|67161|67162|67163|67164|67165|67171|67172|67174|67175|67177|67178|67180|67181|67183|67184|67188|67189|67197|67203|67204|67205|67206|67214|67215|67218|67223|67224|67227|67228|67230|67231|67233|67234|67235|67236|67237|67241|67249|67250|67253|67254|67257|67258|67260|67262|67264|67266|67267|67270|67271|67273|67274|67275|67277|67278|67279|67283|67284|67285|67288|67290|67291|67292|67293|67294|67295|67299|67309|67310|67311|67323|67324|67326|67327|67330|67335|67336|67337|67339|67340|67341|67343|67350|67355|67357|67359|67360|67362|67365|67369|67371|67373|67376|67379|67382|67384|67389|67391|67393|67396|67399|67400|67407|67410|67411|67412|67417|67419|67421|67425|67427|67428|67431|67434|67435|67437|67438|67440|67441|67447|67448|67452|67453|67457|67458|67459|67461|67462|67466|67467|67468|67470|67472|67473|67476|67482|67485|67491|67493|67494|67496|67497|67498|67499|67505|67506|67507|67508|67509|67510|67515|67516|67517|67522|67524|67535|67537|67538|67539|67540|67541|67542|67543|67544|67545|67547|67548|67549|67550|67551|67552|67554|67556|67558|67559|67562|67563|67564|67565|67566|67570|67573|67574|67576|67578|67579|67583|67584|67585|67586|67587|67588|67592|68766|68768|68769|68770|68775|68776|68777|68780|68781|68784|68787|68789|68790|68791|68795|68797|68802|68808|68810|68812|68813|68818|68819|68821|68824|68825|68829|68833|68838|68840|68841|68844|68845|68853|68855|68857|68858|68861|68867|68868|68869|68870|68871|68874|68881|68882|68887|68889|68891|68893|68894|68897|68898|68899|68901|68902|68909|68913|68914|68915|68918|68919|68921|68922|68924|68925|68931|68933|68935|68941|68942|68944|68945|68956|68958|68959|68962|68964|68965|68970|68971|68976|68977|68978|68980|68985|68989|68996|68997|68998|69001|69002|69015|69016|69018|69020|69028|69031|69033|69034|69036|69038|69040|69043|69044|69046|69048|69050|69052|69054|69056|69060|69061|69063|69066|69067|69068|69071|69073|69074|69077|69078|69079|69083|69084|69090|69091|69092|69098|69099|69100|69105|69109|69110|69114|69119|69121|69123|69124|69126|69128|69129|69131|69132|69134|69136|69137|69138|69145|69151|69152|69158|69159|69162|69166|69170|69171|69172|69174|69175|69177|69178|69179|69183|69184|69185|69189|69194|69207|69211|69212|69213|69216|69218|69219|69223|69224|69225|69226|69227|69228|69230|69232|69234|69235|69237|69239|69242|69244|69249|69250|69251|69252|69257|69258|69267|69271|69276|69277|69279|69280|69281|69284|69286|69287|69289|69292|69296|69299|69301|69309|69312|69313|69319|69320|69322|69323|69324|69325|69327|69328|69330|69331|69332|69335|69340|69344|69345|69350|69355|69360|69361|69362|69363|69367|69368|69369|69370|69376|69393|69394|69395|69402|69403|69405|69409|69410|69411|69413|69414|69416|69417|69418|69420|69422|69424|69425|69428|69430|69435|69439|69443|69447|69451|69456|69463|69465|69471|69472|69473|69474|69477|69479|69482|69483|69486|69488|69491|69493|69494|69497|69499|69500|69503|69507|69508|69509|69512|69513|69514|69516|69517|69519|69521|69522|69525|69526|69527|69528|69535|69538|69540|69543|69552|69554|69557|69563|69569|69578|69580|69584|69587|69590|69593|69596|69597|69598|69599|69602|69608|69609|69615|69616|69617|69618|69620|69623|69624|69626|69627|69630|69636|69637|69639|69640|69645|69646|69648|69649|69652|69654|69659|69661|69662|69672|69675|69676|69677|69679|69682|69683|69687|69689|69694|69699|69702|69705|69706|69707|69710|69711|69712|69713|69716|69717|69720|69721|69726|69728|69729|69731|69737|69739|69744|69749|69752|69753|69759|69760|69761|69762|69766|69772|69774|69778|69779|69781|69782|69784|69787|69792|69794|69798|69802|69807|69812|69818|69821|69822|69823|69824|69831|69834|69835|69839|69841|69843|69845|69850|69854|69858|69860|69863|69864|69870|69871|69875|69877|69878|69880|69880|69881|69883|69886|69887|69888|69890|69891|69896|69897|69901|69902|69903|69904|69905|69906|69909|69910|69912|69914|69916|69918|69919|69920|69922|69923|69924|69926|69929|69930|69936|69938|69939|69941|69943|69945|69946|69947|69950|69951|69957|69960|69961|69968|69969|69971|69972|69976|69978|69981|69988|69989|69993|69994|69995|70000|70008|70008|70009|70011|70012|70013|70016|70017|70022|70025|70030|70031|70034|70035|70036|70037|70041|70044|70046|70050|70054|70055|70060|70061|70062|70063|70067|70068|70069|70070|70073|70074|70077|70078|70079|70082|70087|70088|70090|70091|70094|70096|70098|70100|70101|70105|70108|70113|70116|70117|70118|70118|70120|70123|70125|70127|70128|70129|70130|70132|70140|70145|70147|70148|70156|70167|70168|70169|70172|70174|70175|70177|70180|70182|70184|70189|70190|70191|70194|70197|70204|70206|70208|70210|70211|70212|70213|70219|70226|70228|70235|70238|70241|70244|70245|70247|70248|70251|70252|70256|70257|70258|70263|70265|70268|70271|70272|70274|70275|70276|70279|70280|70281|70282|70285|70288|70289|70294|70295|70299|70300|70301|70302|70304|70309|70313|70323|70326|70333|70334|70336|70337|70339|70341|70342|70343|70349|70350|70356|70358|70363|70374|70375|70376|70377|70386|70387|70388|70390|70392|70393|70394|70402|70410|70411|70412|70414|70420|70421|70422|70425|70426|70433|70434|70436|70438|70439|70442|70443|70447|70574|94582|94583|94585|94586|94587|94589|94590|94591|94592|94595|94597|94598|94599|94601|94602|94603|94604|94606|94607|94608|94609|94610|94974|95127|95343|95601|95777|96035|96058|96157|96350|96470|96590|96826|96886|96887|96888|96891|96892|96893|96895|96896|96898|96899|96900|96902|96903|96904|96905|96906|96907|96908|96909|96910|96912|96914|96915|96916|96917|96918|96919|96921|96924|96926|96927|96928|96929|96931|96932|96933|96934|96935|96936|96937|96938|96939|96940|96942|96943|96944|96946|96947|96949|96952|96953|96954|96955|96956|96958|96959|96960|96961|96962|96963|96964|96965|96966|96967|96968|96969|96970|96973|96975|96978|96979|96980|96981|96983|96985|96988|96991|96992|96995|96996|96997|96998|96999|97001|97002|97003|97004|97009|97010|97011|97013|97016|97017|97018|97019|97020|97021|97022|97024|97025|97027|97028|97029|97030|97031|97033|97034|97035|97036|97039|97043|97045|97047|97050|97051|97053|97054|97055|97058|97059|97060|97061|97064|97068|97069|97070|97071|97074|97079|97080|97081|97082|97083|97087|97088|97089|97091|97094|97099|97101|97104|97105|97106|97107|97108|97109|97111|97112|97113|97115|97116|97117|97118|97119|97121|97122|97124|97125|97126|97127|97128|97129|97130|97131|97132|97134|97135|97136|97138|97141|97143|97144|97145|97208|97209|97210|97211|97212|97213|97215|97221|97222|97224|97225|97227|97228|97229|97231|97232|97234|97235|97236|97237|97239|97241|97242|97244|97245|97248|97249|97250|97251|97252|97253|97256|97257|97261|97262|97264|97265|97266|97268|97270|97271|97273|97274|97275|97276|97277|97278|97279|97280|97281|97282|97283|97286|97287|97288|97289|97291|97292|97293|97294|97295|97298|97299|97304|97306|97307|97309|97310|97314|102661|102663|102664|102665|102666|102667|102669|102670|102671|102673|102674|102675|102680|102681|102682|102683|102684|102685|102686|102688|102689|102690|102691|102692|102695|102696|102698|102700|102701|102707|102708|102709|102710|102711|102713|102714|102715|102716|102717|102719|102720|102722|102724|102726|102728|102729|102730|102731|102732|102733|102735|102736|102738|102740|102741|102743|102744|102745|102747|102748|102750|102751|102752|102754|102755|102756|102757|102758|102763|102764|102765|102766|102767|102769|102770|102772|102774|102775|102776|102777|102778|102779|102780|102781|102782|102784|102785|102786|102787|102788|102790|102791|102792|102793|102797|102799|102806|102807|102808|102812|102813|102814|102815|102816|102820|102821|102823|102824|102825|102827|102830|102832|102834|102835|102837|102839|102841|102843|102844|102845|102846|102847|102851|102854|102856|102857|102858|131002|131003|131005|131009|131029|131033|131038|131039|131041|131042|131046|131051|131055|131057|131059|131061|131063|131074|131080|131084|131086|131090|131092|131093|131101|131104|131105|131108|131117|131127|131128|131131|131133|131139|131141|131148|131154|131158|131163|131168|131182|131189|131196|131202|131204|131210|131211|131213|131216|131218|131219|131220|131223|131235|131239|131241|131247|131248|131253|131260|131262|131263|131264|131265|131267|131271|131276|131278|131294|131297|131299|131306|131315|131316|131321|131324|131336|131341|131342|131348|131362|131363|131365|131369|131370|131381|131382|131383|131384|131389|131390|131393|131394|131394|131404|131411|131412|131418|131419|131421|131422|131423|131425|131434|131435|131438|131440|131445|131446|131464|131466|131471|131474|131481|131482|131483|131484|131485|131493|131494|131512|131514|131516|131517|131518|131522|131526|131527|131530|131533|131534|131536|131538|131539|131541|131548|131552|131554|131556|131560|131565|131567|131568|131570|131572|131573|131575|131583|131587|131597|131600|131602|131603|131604|131610|131611|131620|131626|131629|131634|131637|131638|131643|131651|131656|131661|131662|131663|131666|131671|131673|131677|131678|131693|131696|131698|131701|131706|131707|131712|131716|131719|131721|131726|131727|131733|131737|131739|131740|131741|131749|131751|131752|131754|131755|132108|132116|132133|132139|132206|132217|132218|132221|132239|132242|132244|132249|132792|132824|132834|132844|132846|132986|133073|133074|133177|133182|133211|133268|133284|133330|133339|133340|133341|133343|133347|133349|133350|133351|133352|133353|133355|133374|133447|133449|133501|133510|133521|133538|133546|133574|133590|133601|133637|133651|133658|133659|133661|133664|133666|133668|136435|136452|136476|136491|136507|136512|136518|136526|136527|136528|136529|136530|137379|137437|137449|137463|137464|137465|137467|137468|137469|137471|137472|137473|137474|137475|137476|137477|137481|137482|137492|137494|137585|138785|138794|138809|139097|139499|139502|139503|139505|139506|139507|139508|139509|139511|139513|139514|139515|139517|139518|139519|139520|139521|139522|139524|139525|139526|139527|139528|139529|139530|139531|139532|139533|139551|139660|139790|139791|139792|139793|139794|139796|139797|139798|139799|139800|139801|139802|139803|139804|139805|139844|139872|140240|140241|140242|140243|140244|140245|140246|140247|140248|140249|140250|140252|140253|140254|140254|140255|140256|140257|140258|140259|140260|140261|140262|140263|140264|140265|140266|140268|140269|140270|140271|140272|140273|140274|140275|140276|142580|142582|150558|150563|150566|150587|150589|150593|150644|150646|150672|150676|150680|150681|150689|150701|150703|150704|150705|150706|150711|150722|150723|150727|150731|150745|150748|150752|150782|150784|150786|150789|150790|150791|150798|150800|150801|150802|150804|150805|150806|150807|150811|150814|150817|150818|150829|150832|150840|150841|150842|150866|150867|150869|150876|150913|150926|150928|150936|150948|150957|150961|150968|150973|150974|150977|150985|150986|150997|151015|151022|151047|151049|151059|151071|151085|151106|151113|151142|151144|151171|151172|151173|151174|151175|151179|151182|151183|151192|151195|151212|151218|151219|151220|151221|151223|151242|151251|151253|151263|151278|151286|151292|151340|151343|151344|151347|151371|151372|151409|151416|151437|151443|151455|151458|151494|151496|151497|151500|151502|151503|151505|151506|151507|151508|151512|151513|151518|151520|151521|151522|151523|151525|151526|151528|151532|151536|151540|151562|151564|151567|151571|151577|151581|151583|151611|151613|151615|151620|151638|151664|151667|151675|151689|151699|151700|151701|151716|151718|151720|151733|151737|151740|151742|151744|151745|151746|151750|151768|151787|151796|151801|151807|151809|151816|151822|151823|151826|151828|151829|151839|151908|151929|151942|151972|151995|151996|152002|152004|152009|152011|152015|152017|152021|152022|152026|152027|152048|152080|152097|152099|152105|152109|152110|152112|152117|152136|152138|152142|152145|152162|152184|152190|152226|152234|152241|152248|152261|152282|152302|152312|152319|152321|152322|152325|152329|152330|152331|152340|152341|152342|152343|152344|152345|152348|152353|152356|152358|152360|152363|152369|152370|152376|152379|152387|152401|152408|152434|152442|152443|152448|152466|152474|152485|152489|152490|152496|152497|152498|152501|152506|152507|152508|152509|152511|152521|152527|152528|152543|152545|152546|152547|152548|152549|152550|152560|152561|152562|152569|152575|152576|152579|152580|152581|152582|152583|152587|152588|152599|152615|152632|152637|152640|152645|152664|152677|152685|152692|152699|152700|152701|152711|152712|152714|152715|152738|165962|165963|165965|165966|165969|165972|165974|165975|165978|165979|165980|165981|165983|165984|165985|165986|165987|165989|165990|165992|165993|165995|166252|166254|166256|172180|172181|179970|180040|180044|180056|180139|180408|180552|180554|180555|180557|180559|180560|180561|180562|180563|180564|180568|180569|180570|180571|180572|180573|180575|180576|180577|180578|180579|180580|180581|180582|180583|180585|180588|180590|180591|180592|180595|180597|180598|180600|180601|180602|180603|180606|180607|180608|180610|180612|180613|180615|180620|180621|180622|180623|180627|180630|180632|180634|180635|180636|180638|180639|180640|180641|180642|180643|180646|180648|180649|180650|180651|180655|180656|180657|180660|180661|180665|180667|180668|180669|180670|180671|180673|180676|180677|180678|180680|180681|180682|180683|180685|180686|180688|180689|180690|180691|180692|180693|180695|180696|180697|180699|180701|180702|180718|180736|180805|180806|180811|180812|180813|180814|180815|180816|180818|180819|180822|180824|180825|180828|180830|180831|180834|180835|180838|180839|180840|180842|180843|180845|180847|180851|180852|180853|180855|180857|180859|180861|180863|180866|180868|180870|180871|180876|180877|180880|180882|180884|180886|180888|180890|180891|180892|180894|180895|180896|180902|180903|180908|180920|180926|180934|180947|181090|181145|181218|181219|181314|181316|182551|182581|182598|182611|182841|183210|183280|183336|183467|183487|183505|183611|183612|183613|183614|183615|183616|183617|183618|183619|183621|183622|183623|183625|183627|183631|183632|183634|183635|183637|183638|183639|183641|183644|183645|183647|183649|183650|183651|183652|183653|183656|183657|183658|183660|183661|183662|183663|183664|183665|183666|183668|183669|183671|183672|183673|183674|183675|183678|183680|183682|183684|183686|183688|183691|183692|183693|183694|183697|183700|183701|183702|183703|183705|183706|183707|183708|183710|183711|183712|183714|183715|183717|183718|183719|183720|183722|183724|183725|183727|183728|183730|183731|183732|183733|183734|183735|183736|183737|183738|183739|183741|183742|183744|183746|183747|183749|183750|183751|183752|183753|183754|183756|183757|183759|183761|183764|183765|183766|183767|183768|183771|183773|183774|183777|183779|183781|183782|183783|183785|183786|183788|183791|183792|183794|183795|183796|183798|183800|183804|183805|183806|183808|183809|183811|183812|183813|183815|183816|183818|183819|183820|183821|183822|183823|183824|183825|183826|183827|183828|183829|183831|183832|183833|183834|183835|183836|183837|183838|183841|183842|183843|183844|183845|183846|183848|183850|183851|183852|183853|183855|183858|183859|183860|183861|183862|183863|183864|183865|183866|183867|183868|183870|183872|183873|183874|183875|183876|183879|183880|183881|183883|183884|183885|183890|183891|183892|183893|183894|183897|183900|183901|183902|183903|183904|183905|183911|183916|183917|183918|183920|183922|183924|183925|183926|183927|183928|183930|183933|183934|183935|183936|183938|183940|183942|183947|183948|183949|183951|183953|183954|183957|183958|183959|183960|183961|183962|183963|183964|183965|183966|183967|183968|183969|183970|183971|183973|183974|183975|183979|183980|183981|183983|183984|183990|183991|183991|183995|183997|183998|183999|184000|184002|184005|184006|184007|184008|184009|184010|184011|184013|184020|184021|184023|184024|184025|184027|184028|184029|184030|184031|184032|184034|184036|184040|184041|184043|184044|184045|184047|184055|184057|184058|184062|184063|184064|184065|184066|184068|184069|184071|184072|184073|184074|184075|184076|184077|184078|184080|184082|184083|184084|184085|184086|184087|184089|184093|184094|184095|184096|184097|184099|184101|184103|184104|184105|184207|184244|184249|184272|184342|184476|184733|184806|184818|184861|184862|184863|184864|184866|184867|184868|184869|184870|184871|184872|184874|184875|184876|184877|184883|184884|184885|184887|184890|184890|184894|184899|184900|184902|184904|184905|184906|184909|184910|184911|184912|184913|184918|184919|184920|184922|184923|184924|184929|184930|184932|184935|184936|184937|184942|184943|184944|184946|184947|184948|184953|184954|184955|184957|184960|184965|184966|184967|184968|184969|184970|184973|184976|184977|184978|184979|184980|184981|184982|184984|184986|184987|184988|184989|184990|184991|184993|184994|184995|184996|184997|184998|184999|185000|185001|185002|185004|185005|185007|185008|185009|185011|185013|185015|185016|185017|185021|185024|185025|185026|185028|185030|185031|185038|185043|185044|185045|185047|185048|185050|185051|185052|185053|185055|185056|185057|185060|185064|185065|185066|185067|185070|185071|185074|185075|185077|185079|185081|185085|185086|185087|185088|185089|185090|185091|185092|185093|185094|185096|185097|185098|185099|185100|185101|185102|185104|185106|185109|185111|185113|185115|185116|185117|185119|185120|185122|185123|185125|185127|185128|185131|185156|185157|185160|185165|185251|185282|185292|185305|185308|185622|185623|186168|186169|186170|186171|186172|186174|186175|186176|186179|186180|186181|186182|186183|186184|186185|186238|186239|186255|186256|186257|186258|186259|186260|186261|186441|186442|186443|186449|186451|186452|186454|186455|186457|186542|186544|186547|186548|186551|186872|190027|190716|190857|190859|190860|190952|190953|191244|191406|191407|194260|195361|204644|205810|208045|212851|213017|213018|213019|213020|213023|213024|213025|213026|213027|213028|213029|213030|213031|213033|213034|213036|213037|213038|213039|213041|213042|213043|213044|213045|213046|213047|213048|213050|213051|213052|213055|213056|213057|213058|213060|213061|213062|213064|213065|213066|213068|213070|213071|213072|213073|213074|213075|213078|213079|213080|213081|213082|213083|213086|213087|213088|213090|213091|213092|213093|213094|213095|213096|213097|213098|213099|213234|213235|213236|213237|213238|213239|213303|213304|213305|213306|213308|213309|213310|213311|213312|213313|213314|213315|213316|213317|213318|213319|213320|213321|213322|213323|213324|213325|213326|213327|213328|213329|213330|213331|213332|213333|213334|213335|213336|213337|213339|213340|213354|213370|214915|214916|221254|221576|222060|222124|222180|222269|222270|222272|222273|222274|222275|222276|222277|222278|222279|222280|222281|222282|222284|222286|222287|222288|222289|222290|222291|222292|222293|222294|222295|222296|222297|222298|222299|222300|222301|222302|222303|222304|222305|222306|222307|222308|222309|222310|222311|222312|222313|222315|222316|222317|222318|222319|222320|222321|222322|222323|222324|222325|222326|222327|222328|222329|222330|222331|222333|222334|222335|222336|222337|222339|222340|222341|222342|222343|222344|222345|222346|222347|222348|222349|222350|222352|222354|222355|222356|222458|222546|222547|222548|222549|222644|222645|222646|222647|222648|222649|222650|222651|222653|222654|222655|222656|222657|222658|222659|222660|222661|222662|222663|222664|222665|222666|222667|222668|222669|222670|222671|222673|222674|222675|222676|222677|222678|222679|222681|222682|222683|222684|223598|223599|223600|223601|223602|226155|226156|226159|226160|226162|226168|226169|226173|226175|226184|226189|226193|226201|226204|226207|226211|226352|226364|226810|226814|227195|227390|227519|227527|227529|227530|227531|227532|227533|227534|227535|227538|227539|227544|227551|227557|227559|227567|227577|230442|230443|231854|231855|231856|231858|231864|231866|231869|231871|231872|231873|231875|231876|231877|231879|231880|231881|231882|231884|231886|231887|231888|231891|231892|231893|231894|231896|231897|231898|231899|231900|231902|231903|231905|231907|231908|231910|231911|231995|231997|232123|232424|232522|233358|233995|234205|234341|234364|234590|234593|234594|234595|234598|234604|234607|234611|234612|234616|234618|234619|234620|234623|234629|234631|234635|234637|234638|234640|234644|234645|234646|234647|234650|234653|234656|234659|234660|234661|234662|234664|234665|234667|234670|234675|234676|234679|234681|234682|234685|234686|234690|234692|234694|234696|234699|234702|234705|234707|234709|234711|234712|234715|234718|234720|234722|234723|234727|234730|234732|234733|234741|234742|234748|234749|234750|234751|234752|234753|234755|234756|234760|234762|234763|234767|234771|234772|234774|234775|234777|234779|234780|234782|234783|234786|234787|234789|234790|234791|234792|234795|234796|234797|234801|234802|234807|234811|234813|234814|234815|234817|234818|234820|234825|234827|234829|234830|234831|234832|234839|234841|234842|234843|234850|234851|234853|234856|234862|234865|234868|234870|234873|234876|234881|234883|234887|234889|234891|234892|234897|234900|234902|234905|234909|234914|234915|234916|234919|234921|234923|234929|234931|234932|234933|234934|234935|234938|234939|234941|234942|234945|234946|234948|234949|234950|234951|234952|234954|234956|234957|234958|234959|234961|234962|234964|234966|234969|234970|234973|234974|234976|234977|234978|234982|234983|234983|234985|234991|234993|234994|234995|234999|235000|235001|235005|235006|235007|235008|235009|235012|235013|235015|235017|235018|235019|235020|235021|235022|235027|235036|235040|235044|235045|235046|235048|235049|235050|235052|235054|235059|235061|235063|235065|235066|235070|235072|235074|235076|235077|235078|235180|235689|235710|235726|235863|235871|235906|235912|235922|235927|235928|235932|235935|235939|235940|235941|235942|235943|235945|235946|235949|235953|235956|235958|235964|235965|235968|235972|235974|235976|235978|235980|235981|235982|235983|235984|235987|235993|235996|235997|235998|236000|236002|236003|236004|236006|236007|236008|236009|236014|236015|236018|236020|236021|236022|236027|236028|236029|236034|236040|236043|236044|236046|236048|236051|236053|236054|236055|236057|236060|236062|236066|236068|236073|236076|236078|236079|236080|236082|236086|236089|236093|236094|236095|236096|236099|236100|236101|236102|236103|236105|236107|236108|236109|236110|236111|236112|236116|236117|236120|236122|236123|236126|236127|236130|236131|236132|236133|236136|236137|236139|236140|236141|236142|236143|236148|236150|236152|236153|236154|236156|236157|236160|236161|236162|236163|236166|236167|236169|236172|236176|236177|236178|236179|236180|236181|236182|236183|236184|236185|236188|236210|236214|236223|236229|236622|236649|236715|237817|237822|237823|237829|237833|237835|237839|238846|240956|241633|241634|241635|241636|241637|241638|241639|241640|241641|241642|241643|241644|241645|241646|241647|241648|241649|241650|241651|241652|241653|241654|241655|241656|241657|241658|241659|241660|241662|241663|241664|241665|241666|241667|241668|241669|241670|241671|241672|241673|241674|241675|241676|241677|241678|241679|241680|241681|241682|241684|241685|241686|241687|241688|241689|241691|241692|241693|241694|241695|241696|241698|241699|241700|241701|241702|241703|241704|241705|241706|241710|241712|241713|241714|241715|241716|241717|241718|241719|241720|241721|241722|241723|241724|241725|241728|241731|241732|241733|241734|241736|241737|242362|242684|242718|242720|242729|242753|242756|242757|242758|242759|242760|242762|242763|242765|242767|242768|242770|242771|242773|242775|242777|242778|242779|242780|242781|242783|242784|242785|242786|242787|242788|242789|242790|242791|242792|242793|242794|242795|242796|242798|242799|242800|242801|242802|242803|242804|242806|242807|242808|242809|242810|242811|242812|242814|242815|242816|242818|242835|242836|244338|244612|244843|244844|244845|244849|244850|244851|244852|244853|244854|244856|245014|245017|245019|245022|245027|245028|245029|245030|245031|245033|245037|245038|245039|245041|245042|245043|245047|245051|245053|245054|245055|245056|245057|245058|246784|246788|246789|246791|246794|246795|246796|246797|246800|246802|246803|246805|246811|246812|246815|246820|246822|246823|246825|246827|246832|246838|246842|246845|246849|246851|246853|247086|247087|247214|247219|247220|247221|247223|247224|247226|247227|247228|247229|247230|247231|247232|247235|247236|247241|247245|247248|247249|247250|247254|247256|247257|247258|247260|247261|247264|247267|247272|247274|247275|247276|247277|247286|247288|247290|247292|247439|248505|248510|248516|248518|248519|248520|248522|248523|248524|248525|248526|248527|248529|248530|248534|248536|248908|248910|248911|248913|248926|248943|248950|248952|248962|248973|248980|248989|248990|248994|248995|248997|249004|249005|249013|249014|249020|249022|249028|249029|249035|249040|249054|249057|249059|249064|249065|249070|249073|249086|249087|249091|249096|249105|249124|249126|249127|249129|249151|249155|249160|249163|249164|249171|249179|249181|254847|259408|259529|259534|260043|260044|260045|260046|260047|260169|260170|260173|260257|260360|260986|260987|261008|261013|261038|261039|261045|261055|261056|261072|261073|261077|261086|261091|261099|261106|261107|261117|261119|261120|261128|261132|261139|261140|261147|261149|261152|261158|261165|261167|261168|261170|261174|261175|261181|261186|261191|261192|261195|261200|261210|261213|261216|261225|261228|261229|261235|261237|261239|261241|261244|261255|261259|261260|261269|261271|261273|261278|261281|261283|261285|261298|261306|261312|261313|261314|261316|261323|261332|261334|261335|261336|261344|261350|261352|261357|261358|261361|261362|261363|261365|261369|261370|261375|261387|261389|261395|261397|261409|261410|261413|261415|261417|261419|261423|261430|261434|261435|261437|261443|261445|261447|261456|261459|261467|261468|261479|261482|261490|261491|261494|261499|261503|261511|261515|261530|261541|261543|261546|261556|261557|261562|261572|261573|261597|261609|261611|261615|261632|261635|261638|261642|261644|261645|261660|261664|261668|261679|261684|261696|261723|261726|261727|261739|261763|261767|261778|261779|261786|261791|261795|261802|261806|261807|261813|261815|261821|261827|261828|261831|261835|261837|261838|261845|261852|261855|261873|261879|261887|261894|261907|261908|261918|261923|261941|261943|261954|261962|261971|261978|261984|261987|261997|262016|262020|262024|262098|262101|262808|262815|262822|262828|262833|262835|262841|262844|262845|262850|262852|262856|262860|262863|262879|262921|262923|262927|262946|262952|262953|262956|262957|262977|262978|262979|262981|262987|262989|262993|264514|264580|264668|264675|320553|327916|327918|328613|328624|329355|329374|334213|335896|335912|338560|345292|346052|346053|346056|346058|357674|357906|358704|358888|358890|358892|358925|358928|358934|358942|360711|360712|360714|360717|360718|361610|362213|362214|362215|362216|362217|362356|362357|372685|372687|372696|372699|372709|372717|372726|372732|372734|372739|372763|372775|372780|372802|373354|373371|373401|373412|373418|373422|373423|373436|373449|373454|373460|373464|373497|373503|373513|373516|373652|373658|373664|373673|373676|373678|373679|373681|373689|373691|373698|373703|373706|373712|373725|373727|373745|373759|373766|373768|373777|373794|373801|373806|373816|375046|375066|375071|375081|375090|375098|375101|375103|375112|375567|375576|375577|375592|375608|375612|375614|375628|375671|375961|375974|375977|375980|375983|375986|375993|376005|376012|376032|376035|376045|376082|376083|376085|376093|376095|376097|376098|376101|376102|376124|376133|378220|378226|378236|378243|378261|378263|378278|378283|378289|378295|378296|378301|378304|390695|392435|392548|393024|397874|398191|399092|399098|399124|399127|399129|399131|399135|399141|399144|399152|399155|399158|399161|399162|399168|399172|399173|399181|399183|399185|399190|399191|399199|399203|399207|399211|399213|399215|399216|399219|399221|399225|399227|399234|399248|399262|399263|399267|399268|399269|399275|399280|399281|399284|399287|399292|399299|399302|399308|399309|399311|399312|399320|399322|399324|399327|399331|399333|399334|399336|399337|399338|399339|399347|399348|399351|399353|399355|399361|399363|399364|399366|399367|399369|399370|399372|399373|399374|399378|399381|399382|399385|399387|399389|399392|399393|399394|399395|399396|399397|399400|399402|399404|399406|399407|399409|399411|399412|399413|399416|399418|399420|399423|399426|399430|399437|399442|399445|399447|399449|399452|399458|399460|399464|399465|399470|399477|399485|399488|399493|399497|399498|399604|399607|399629|399633|399642|399646|399649|399651|399656|399665|399677|399683|399686|399702|399710|399714|399717|399745|399753|399754|399759|399763|399773|399780|399786|399797|399804|399805|399823|399825|399828|399837|399842|399844|399848|399851|399854|399860|399861|399864|399867|399870|399872|399878|399880|399882|399883|399886|399888|399889|399890|399894|399895|399896|399898|399899|399903|399904|399907|399909|399914|399923|399924|399929|399931|399934|399936|399939|399941|399948|399951|399952|399955|399956|399960|399961|399963|399965|399967|399970|399979|399983|399986|399988|399990|399992|399995|399996|399997|400000|400003|400008|400014|400018|400023|400030|400032|400036|400038|400040|400048|400049|400050|400051|400058|400061|400063|400067|400069|400070|400077|400106|400107|400110|400114|400115|400116|400122|400123|400125|400132|400134|400141|400148|400154|400161|400163|400168|400169|400922|401115|401257|401496|401499|401504|401508|401512|401515|401520|401933|401936|401949|401958|401963|401968|401972|401973|401975|401976|401980|401983|401984|401986|401997|402015|402016|402018|402023|402025|402027|402037|402039|402042|402043|402044|402046|402047|402048|402049|402051|402052|402053|402054|402060|402061|402063|402067|402069|402071|402074|402078|402085|402086|402087|402095|402096|402100|402102|402103|402110|402112|402116|402120|402130|402134|402140|402143|402145|402146|402154|402155|402242|402248|402454|402459|402463|402467|402469|402476|402479|402480|402493|402494|402495|402499|402501|402507|402512|402520|402523|402532|402534|402540|402543|402549|402553|402556|402558|402561|402567|402573|402577|402606|402621|402623|402640|402644|402645|402648|402649|402650|402651|402653|402661|402676|402683|402688|402692|402694|402696|402700|402701|402708|402717|402719|402729|402732|402741|402742|402744|404709|404710|404715|405784|407083|408173|408820|408821|408822|408825|408827|408829|408831|408832|408838|408843|408846|408849|408851|408852|408854|408855|408858|408863|408866|408872|408876|408877|408878|408880|408884|408885|408888|408889|408892|408896|408897|408898|408899|408901|408902|408903|408904|408905|408907|408908|408909|408910|408914|408921|408923|408924|408925|408926|408931|408932|408935|408939|408940|408941|408942|408943|408944|408946|408947|408948|408949|408950|408955|408956|408958|408959|408964|408965|408966|408967|408972|408974|408977|408978|408980|408983|408984|408985|408986|408987|408988|408990|408995|408997|408998|409000|409003|409008|409009|409011|409017|409019|409940|409941|409942|409944|409949|409952|409953|409956|409957|409958|409959|409961|409962|409966|409967|409968|409973|409980|409982|409988|409989|409990|409993|409998|409999|410002|410003|410006|410008|410010|410014|410015|410016|410018|410020|410023|410024|410028|410030|410036|410037|413462|415562|416225|416231|416237|416240|416247|416272|416279|416284|416290|416292|416294|416305|416306|416310|416315|416322|416327|416330|416334|416336|416337|416345|416346|416348|416354|416356|416363|416366|416370|416375|416376|416377|416384|416390|416392|416396|416400|416402|416405|416415|416417|416424|416439|416448|416464|416466|416468|416478|416482|416484|416490|416493|416495|416498|416503|416507|416521|416522|416527|416529|416534|416538|418977|420994|420997|420998|421961|423245|424021|424497|424705|424706|424707|424708|424709|424710|424711|424712|424714|424715|424717|424720|424722|424724|424725|424726|424727|424729|424730|424734|424736|424737|424738|424739|424740|424742|424744|424745|424747|424749|424752|424756|424758|424761|424762|424763|424764|424765|424767|424768|424769|424770|424771|424772|424778|424779|424780|424782|424783|424784|424785|424789|424790|424791|424792|424793|424794|424795|424798|424799|424802|424803|424805|424806|424807|424808|424809|424810|424811|424812|424813|424814|424815|424816|424818|424819|424820|424821|424822|424823|424824|424825|424828|424829|424831|424834|424837|424839|424840|424841|424843|424844|424845|424848|424850|424852|424853|424855|424856|424857|424858|424859|424860|424861|424862|424864|424868|424876|424878|424880|424882|424883|424884|424885|424887|426563|427339|427340|427341|427349|427351|427352|427358|427360|427362|427369|427370|427371|427372|427373|427375|427376|427380|427385|427387|427388|427392|427396|427398|427400|427404|427409|427411|427429|427430|427431|427436|427517|427518|427519|427523|427528|427532|427536|427539|427540|427541|427542|427543|427546|427551|427553|427554|427556|427559|427560|427561|427564|427568|427574|427575|427578|427586|427588|429493|429494|429495|429496|429968|432370|432761|432762|432765|432766|432770|432777|432780|432782|432790|432791|432792|432793|432797|432798|432802|432803|432805|432806|432808|432809|432810|432811|432819|432822|432828|432829|432831|432833|432835|432890|432891|432893|432894|432896|432898|432900|432901|432903|432905|432910|432912|432913|432915|432920|432927|432943|433124|433270|434064|434065|434068|434070|434081|434082|434084|434085|434942|434943|434944|434945|434948|434954|434958|434963|434970|434972|434975|434977|434979|434981|434982|434988|434989|434992|434993|434995|434998|434999|435000|435003|435005|435006|435008|435011|435021|435027|435035|435046|435049|435050|435051|435054|435055|435057|435058|435060|435066|435071|435077|435079|435080|435081|435083|435085|435086|435097|435100|435106|435108|435109|435110|435111|435114|435115|435117|435119|435121|435123|435124|435126|435130|435131|435133|435134|435135|435153|435157|435159|435161|435162|435163|435170|435173|435177|435179|435181|435183|445140|445144|445777|451111|460709|460799|462544|462546|462551|462552|462553|462644|462660|462663|462667|462672|462673|462682|462685|462691|462693|462695|462697|462700|462702|462720|462729|462730|462733|462735|462736|462738|462740|462741|462743|462746|462748|462750|462752|462755|462757|462759|462764|462768|462771|462774|462778|462781|462785|462788|462791|462795|462797|462799|462801|462804|462805|462806|462812|462814|462815|462820|462822|462824|462829|462830|462832|462834|462836|462837|462839|462840|462842|462843|462846|462847|462849|462850|462852|462854|462857|462858|462859|462864|462865|462867|462872|462882|462888|462897|462899|462900|462902|462903|462906|462954|462965|462968|462971|462972|462981|462983|462986|462989|462990|462992|462996|462997|463001|463005|463007|463009|463014|463020|463024|463025|463028|463029|463036|463038|463040|463042|463045|463049|463052|463055|463057|463066|463067|463068|463069|463077|463078|463080|463085|463088|463091|463093|463098|463100|463103|463110|463115|463117|463123|463128|463133|463135|463137|463155|463159|463161|463163|463171|463173|463176|463187|463190|463196|463199|463202|463209|463213|463215|463218|463225|463231|463232|463241|463242|463245|463246|463253|463258|463306|463313|463314|463320|463391|463398|463401|463404|463407|463411|463417|463421|463422|463424|463426|463428|463430|463432|463438|463443|463446|463452|463454|463456|463458|463460|463462|463465|463466|463473|463474|463478|463481|463485|463487|463489|463496|463498|463502|463503|463504|463505|463506|463507|463510|463512|463513|463514|463516|463520|463521|463522|463523|463524|463525|463526|463527|463529|463532|463534|463535|463537|463540|463543|463544|463545|463547|463550|463551|463554|463555|463557|463558|463560|463561|463563|463564|463566|463567|463570|463571|463572|463576|463577|463581|463584|463588|463589|463592|463593|463595|463599|463604|463605|463606|463608|463610|463611|463612|463615|463620|463621|463624|463636|463637|463641|463642|463645|463646|463649|463650|463658|463661|463662|463663|463666|463671|463678|463681|463683|463688|463692|463698|463703|463707|463711|463712|463716|463724|463728|463738|463739|463741|463742|463747|463748|463750|463751|463757|463760|463766|463771|463772|463775|463776|463778|463779|463788|463790|463791|463792|463806|463810|463812|463815|463817|463822|463823|463825|463828|463832|463833|463834|463838|463842|464746|465318|465414|465421|465459|465588|466224|466229|466234|466271|466522|466644|466816|466821|466825|466827|466829|466831|466833|466847|466848|466853|466854|466859|466860|466862|466866|466868|466873|466874|466876|466881|466884|466886|466887|466890|466892|466895|466896|466904|466909|466910|466911|466915|466916|466917|466927|466933|467028|467029|467041|467091|467105|467115|467128|467138|467140|467347|467354|467369|467373|467669|467674|467675|467676|467679|467682|467684|467686|467687|467688|467689|467697|467699|467710|467712|467716|467719|467720|467722|467724|467725|467730|467732|467735|467736|467744|467747|467753|467758|467768|467776|467777|467782|467784|467801|467871|467873|467875|467884|467890|467891|467897|467899|467911|467923|467924|467927|467929|467930|467933|467939|467946|467954|467960|467964|467968|467974|467980|467982|467988|467992|467998|468002|468009|468012|468019|468020|468022|468026|468028|468034|468037|468040|468048|468056|468058|468071|468075|468079|468086|468103|468106|468113|468128|468129|468136|468140|468143|468145|468147|468154|468155|468157|468167|468170|468171|468178|468183|468194|468202|468208|468214|468218|468220|468226|468228|468232|468233|468240|468246|468250|468251|468256|468263|468276|468415|470951|472493|472548|473065|474207|474355|475427|475590|476054|476087|476238|476493|476515|476527|476531|476532|476533|476536|476540|476543|476552|476555|476570|476575|476585|476587|476596|476598|476602|476604|476611|476612|476621|476622|476630|476634|476636|476643|476644|476646|476657|476660|476665|476667|476673|476677|476686|476688|476695|476700|476710|476714|476720|476723|476728|476730|476749|476755|476756|476762|476767|476768|476776|476778|476791|476817|476823|476836|476839|476845|476849|476852|476859|476860|476861|476862|476863|476864|476870|476878|476882|476884|476898|476899|476900|476915|476917|476919|476922|476940|476941|476943|476960|476962|476967|476973|476976|476984|476992|477001|477002|477007|477009|477020|477033|477039|477047|477048|477054|477066|477080|477095|477096|477098|477105|477111|477112|477133|477139|477144|477153|477163|477167|477168|477169|477170|477172|477180|477182|477186|477189|477193|477198|477202|477208|477216|477233|477235|477236|477240|477249|477251|477257|477284|477294|477304|477319|477344|477354|477355|477371|477375|477381|477397|477401|477454|477491|477506|477510|477516|477520|477540|477548|477553|477557|477562|477576|477583|478030|478509|478516|478518|478538|478570|478578|478581|478584|478586|478595|478602|478621|478626|478633|478636|478644|478662|478666|478668|478669|478672|478678|478680|478681|478685|478687|478698|478700|478701|478704|478717|478726|478732|478734|478738|478739|478740|478744|478750|478765|478781|478792|478793|478794|478808|478813|478842|478848|478859|478872|478888|478892|479169|479205|479227|479229|479239|479253|479263|479275|479280|479300|479303|479304|479324|479332|479335|479370|479381|479382|479384|479401|479415|479422|479434|479444|479458|479459|479483|479543|479691|479784|480470|480471|480475|482499|482815|482823|482839|482844|482847|482855|482859|482863|482866|482870|482872|482887|482890|482905|482914|482925|482927|482929|482930|482932|482939|482944|482947|482953|482975|482987|482991|482993|483001|483006|483020|483029|483277|484450|484475|484488|484514|484526|484537|484550|484555|484559|484561|484566|484571|484575|484599|484600|484601|484603|484605|484628|484638|484646|484652|484687|484692|484696|484703|484704|484705|484710|484713|484726|484727|484745|484763|484768|484779|484787|484791|484815|484836|484851|484864|484865|484890|484894|484898|484899|484900|484912|484924|484944|484966|484967|484974|485096|485099|485120|485141|485142|485168|485320|485322|485341|485350|485389|485398|486645|486647|486959|487110|487345|487398|487405|487411|487414|487426|487432|487455|487465|487466|487468|487474|487486|487509|487511|487513|487521|487540|487542|487549|487556|487560|487571|487582|487584|487595|487640|487643|487645|487647|487648|487651|487658|487661|487663|487664|487667|487673|487675|487688|487691|487693|487699|487710|487711|487712|487713|487720|487721|487732|487733|487734|487739|487843|487863|487873|487879|487882|487891|487895|487931|487933|487934|487936|487961|487963|487989|487992|488139|504039|504173|504184|504509|504764|505154|505176|505948|505953|506103|506368|506384|506397|506855|512864|513363|514029|514338|514340|520954|525933|527430|527435|527437|527439|527449|527452|527518|527525|527528|527530|527539|527540|527541|527542|527543|527545|527547|527552|527554|527555|527559|527560|527561|527563|527564|527567|527569|527570|527571|527572|527573|527574|527575|527577|527578|527580|527582|527588|527589|527592|527593|527596|527597|527598|527600|527602|527603|527604|527611|527614|527615|527618|527619|527620|527622|527623|527624|527625|527627|527631|527633|527635|527638|527639|527642|527643|527644|527645|527647|527648|527650|527651|527653|527654|527656|527659|527660|527662|527671|527672|527674|527677|527680|527681|527682|527683|527685|527686|527687|527689|527690|527691|527692|527694|527696|527699|527701|527702|527704|527706|527709|527712|527714|527715|527716|527729|527731|527734|527740|527751|527784|527789|527791|527796|527799|527804|527805|527814|527819|527821|527846|527847|527849|527850|527869|527876|527881|527885|527887|527891|527893|527894|527896|527900|527902|527909|527912|527914|527920|527923|527925|527927|527936|527938|527949|527951|527955|527969|527971|527974|527976|527980|527982|527984|527987|527998|527999|528003|528004|528010|528014|528017|528025|528026|528030|528032|528034|528036|528038|528045|528046|528047|528050|528052|528053|528057|528060|528065|528067|528070|528071|528073|528074|528076|528082|528088|528091|528092|528095|528106|528111|528114|528117|528127|528132|528139|528147|528149|528150|528152|528153|528155|528159|528162|528165|528179|528182|528186|528194|528202|528203|528212|528214|528217|528221|528236|528243|528246|528248|528253|528259|528264|528265|529805|530482|530485|530487|530629|530633|530634|530638|530639|530660|530835|531019|531023|531024|531029|531031|531037|531048|531050|531055|531056|531064|531066|531068|531071|531074|531076|531078|531084|531086|531108|531119|531121|531124|531130|531135|531162|531175|531180|531181|531185|531191|531197|531204|531210|531211|531213|531215|531230|531231|531234|531245|531257|531260|531263|531264|531266|531268|531271|531274|531276|531277|531280|531281|531283|531284|531285|531287|531292|531294|531296|531297|531299|531300|531306|531308|531310|531312|531313|531314|531317|531319|531320|531325|531327|531332|531333|531334|531335|531337|531338|531340|531342|531346|531347|531350|531351|531352|531353|531354|531355|531357|531367|531375|531377|531379|531384|531385|531398|531401|531460|531537|531540|531540|531541|531542|531543|531550|531552|531554|531557|531563|531564|531567|531571|531582|531587|531588|531592|531597|531612|531614|531620|531623|531629|531631|531634|531638|535743|536420|536421|536427|536429|536438|536442|536465|536500|538668|538672|538691|538692|538702|538708|538711|538765|538789|538828|538871|538903|539268|539358|539360|540531|549465|550707|550717|551808|557872|564658|565784|565785|565798|565799|565804|565807|565810|565814|565824|565886|565894|565896|565904|565913|565914|565916|565917|565925|565927|565929|565931|565937|565939|565943|565947|565950|565951|565952|565962|565964|565969|565971|565981|565983|565985|565991|565998|566000|566006|566010|566011|566012|566014|566015|566017|566020|566023|566026|566033|566036|566039|566043|566049|566050|566052|566055|566057|566059|566063|566064|566074|566076|566079|566085|566088|566090|566092|566096|566097|566099|566101|566102|566104|567136|567139|567231|567232|567234|567246|567252|567253|567257|567264|567265|567266|567267|567274|567279|567300|567301|567302|567303|567310|567311|567314|567319|567323|567331|567337|567342|567343|567347|567350|567351|567353|567357|567368|567371|567376|567377|567385|567388|567389|567391|567393|567402|567412|567413|567432|567435|567438|567447|567451|567453|567461|567462|567468|567470|567481|567483|567486|567490|567505|567512|567517|567526|567528|567537|567544|567546|568047|568220|568295|568301|568302|568305|568308|568309|568312|568317|568319|568321|568330|568331|568340|568341|568343|568344|568347|568349|568352|568353|568355|568357|568359|568361|568363|568365|568367|568369|568372|568373|568375|568384|568385|568392|568393|568396|568398|568400|568403|568404|568409|568414|568415|568417|568421|568426|568429|568430|568434|568437|568439|568441|568443|568445|568451|568453|568457|568460|568463|568466|568476|568479|568483|568484|568490|568491|568493|568497|568498|568500|568503|568566|568584|568590|568591|568593|568594|568616|568618|568622|568623|568629|568637|568639|568872|569065|569072|569074|569075|569077|569079|569080|569086|569089|569094|569099|569107|569111|569117|569119|569124|569126|569127|569145|569147|569152|569154|569158|569159|569162|569164|569166|569168|569169|569173|569175|569177|569182|569193|569197|569198|569201|570681|570685|570686|570701|570705|570789|570795|570812|570813|570814|571137|571146|571153|571155|571158|571159|571161|571162|571168|571172|571178|571180|571189|571190|571193|571194|571198|571200|571204|571205|571207|571209|571211|571375|571378|571399|571413|571419|571426|571427|571431|571436|571438|571440|571443|571445|571447|571449|571453|571465|571474|571477|571482|571484|571495|571496|571497|571502|572160|572171|572254|572266|572270|572271|572276|572280|572285|572290|572294|572299|572301|572302|572305|572312|572313|572314|572322|572323|572324|572327|572337|572351|572357|572374|572378|572383|572393|572400|572401|572403|572406|572412|572423|572424|572431|572442|572448|572453|572455|572456|572457|572463|572466|572469|572473|572474|572477|572482|572485|574260|574267|574463|574464|574465|574466|574467|574468|574469|574470|574471|574472|574473|574474|574475|574476|574477|574478|574479|574480|574481|574482|574483|574484|574485|574486|574487|574488|574489|574490|574491|574492|574493|574495|575586|575872|575894|575896|575897|575899|575900|575901|575902|575903|575904|575905|575906|575907|575908|575909|575911|575912|575913|575914|575915|575917|575919|575920|575921|575922|575985|575986|575987|575988|575989|575990|575991|575992|575993|575994|575995|575996|575997|575998|575999|576000|576001|576002|576003|576004|576005|576006|576007|576008|576009|576011|576019|576050|589800|590022|590023|590024|590564|609868|610417|611160|611172|611177|611185|611188|611192|611194|611195|611201|611202|611229|611240|611323|615057|615145|615231|617912|617914|617923|617928|617933|617934|617938|617942|617946|617947|617953|617963|617967|617968|617970|617973|617974|617979|617985|617994|617996|618011|618017|618018|618022|618037|618039|618042|618049|618051|618055|618058|618071|618079|618084|618086|618089|618090|618097|618102|618108|618116|618119|618120|618132|618133|618134|618143|618144|618156|618157|618165|618172|618177|618183|618186|618191|618192|618198|618204|618547|618552|618554|618559|618560|618561|618569|618573|618576|618577|618578|618581|618591|618603|618616|618620|618626|618639|618643|618648|618651|618653|618654|618656|618667|618668|618675|618686|618687|618691|618692|618695|618698|618701|619438|619475|619505|619514|619561|619569|619571|619585|619678|619680|619687|619715|619719|621043|621044|621045|621046|621047|621048|621049|621050|621051|621390|621396|621397|621399|621400|621409|621411|621412|621413|621417|621420|621421|621425|621426|621432|621433|621435|621436|621440|621442|621452|621453|621571|621572|621577|621579|621582|621584|621589|621599|621829|621831|622040|622553|622707|624046|625975|630169|635396|635424|641633|641634|641635|641636|641637|641638|641639|641640|641641|641642|641643|641644|641645|641646|641647|641648|641649|641650|641651|641652|641653|641654|641655|641656|641657|641658|641659|641660|641661|641662|641663|641664|641665|641666|641667|641668|641669|641670|641671|641672|641673|641674|641675|641676|641677|641678|641679|641680|641681|641682|641683|641684|641685|641686|641687|641688|641689|641690|641691|641692|641693|641694|641695|641696|641697|641698|641699|641700|641701|641702|641703|641704|641705|641706|641707|641708|641709|641710|641711|641712|641713|641714|641715|641716|641717|641718|641719|641720|641721|641722|641723|641724|641725|641726|641727|641728|641729|641730|641731|641732|641733|641734|641735|641736|641737|641738|641739|641740|641741|641742|641743|641744|641745|641746|641747|641748|641749|641750|641751|641752|641753|641754|641755|641756|641757|641758|641759|641760|641761|641762|641763|641764|641765|641766|641767|641768|641769|641770|641771|641772|641773|641774|641775|641776|641777|641778|641779|641780|641781|641782|641783|641784|641785|641786|641787|641788|641789|641790|641791|641792|641793|641794|641795|641796|641797|641798|641799|641800|641801|641802|641803|641804|641805|641806|641807|641808|641809|641810|641811|641812|641813|641814|641815|641816|641817|641818|641819|641820|641821|641822|641823|641824|641825|641826|641827|641828|641829|641830|641831|641832|641833|641834|641835|641836|641837|641838|641839|641840|641841|641842|641843|641844|641845|641846|641847|641848|641849|641850|641851|641852|641853|641854|641855|641856|641857|641858|641859|641860|641861|641862|641863|641864|641865|641866|641867|641868|641869|641870|641871|641872|641873|641874|641875|641876|641877|641878|641879|641880|641881|641882|641883|641884|641885|641886|641887|641888|641889|641890|641891|641892|641893|641894|641895|641896|641897|641898|641899|641900|641901|641902|641903|641904|641905|641906|641907|641908|641909|641910|641911|641912|641913|641914|641915|641916|641917|641918|641919|641920|641921|641922|641923|641924|643711|645916|645917|645918|645919|645920|645921|645922|645923|645924|645925|645926|645927|645928|645929|645930|645931|645932|645933|645934|645935|645936|645937|645938|645939|645940|645941|645942|645943|645944|645945|645946|645947|645948|645949|645950|645951|645952|645953|645954|645955|645956|645957|645958|645959|645960|645961|645962|645963|645964|645965|645966|645967|645968|645969|645970|645971|645972|645973|645974|645975|645976|645977|645978|645979|645980|645981|645982|645983|645984|645985|645986|645987|645988|645989|645990|645991|645992|645993|645994|645995|645996|645997|645998|645999|646000|646001|646002|646003|646004|646005|646006|646007|646008|646009|646010|646011|646012|646013|646014|646015|646016|646017|646018|646019|646020|646021|646022|646023|646024|646025|646026|646027|646028|646029|646030|646031|646032|646033|646034|646035|646036|646037|646038|646039|646040|646041|646042|646043|646044|646045|646046|646047|646048|646049|646050|646051|646052|646053|646054|646055|646056|646057|646058|646059|646060|646061|646062|646063|646064|646065|646066|646067|646306|652272|652274|652277|652279|652284|652286|652287|652291|652354|652362|652389|652391|652509|652511|652532|652644|652646|652647|652657|652663|652770|652774|652778|652785|652791|652794|652800|652803|652805|652813|652814|652820|652821|652824|652827|652828|652829|652958|652960|652966|653113|653122|653134|653140|653141|653145|653275|653358|653363|653376|653381|654739|654740|654832|656202|682124|684487|688159|688770|688772|690064|695596|695743|702670|725467|738590|739031|753799|753801|753804|753812|755876|760213|760265|769466|769468|769476|769482|769483|769486|769488|769492|769495|769498|769500|769502|769508|769509|769513|769515|769522|769523|769529|771531|771536|771539|771540|771554|771556|775878|775880|775949|776019|776166|776200|776217|776304|776342|776677|778273|784567|784574|784575|784578|784580|784581|784585|784587|784588|784593|784595|784597|784598|785584|785585|785586|785592|785593|785594|785601|785603|787842|787956|788122|788124|788126|788130|788148|788245|789252|789554|789565|789568|789610|789613|789618|789620|789623|789629|789632|789635|790924|791313|791317|791338|791738|791755|806835|807272|807292|807339|807621|809073|810150|810194|810229|810434|810568|811042|811077|811352|811357|811367|811371|811377|811379|811389|811393|811404|811407|811417|811419|811420|811434|811437|811448|811469|811479|811491|811493|811506|811508|811519|811529|811535|811562|811567|811571|811580|811595|811611|811615|811624|811634|811642|811650|811652|811655|811697|811715|811724|811728|811740|811742|811753|811755|811763|811784|811793|811795|811804|811807|812403|812765|812770|813107|813175|813574|813637|813647|813649|813678|813684|813697|813724|813733|813735|813750|813762|813764|813767|813775|813792|813803|813815|813817|813818|813820|813823|813831|813845|813854|813863|813865|813867|813877|813882|813894|813897|813911|813918|813921|814092|814101|815028|815095|815705|818638|818639|818640|818641|818642|818643|818644|818645|818646|818647|818648|818649|818650|818651|818652|818653|818654|818655|818656|818657|818658|818659|818660|818661|818662|818663|818664|818665|818666|818667|818668|818669|818670|818671|818672|818673|818674|818675|818676|818677|818678|818679|818680|818681|818682|818683|818684|818685|818686|818687|818688|818689|818690|818691|818692|818693|818694|818695|818696|818697|818698|818699|818700|818701|818702|818703|818704|818705|818706|818707|818708|820552|820553|820554|820555|820556|820557|820558|820559|820561|820562|820563|820564|820565|820566|820567|820568|821045|821046|821047|821048|821049|821050|821051|821052|821053|821054|821055|821056|821057|821058|821059|821061|821062|821063|821066|821067|821068|821069|821071|821072|821075|821077|821079|821083|821084|821085|821086|821087|821088|821091|821092|821093|821095|821096|821097|822092|840623|840624|840625|840626|840627|840628|840629|840630|840631|840632|840633|840634|840635|840636|840637|840638|840639|840640|840641|840642|840643|840644|840645|840646|840647|840648|840649|840650|840651|840652|840653|840654|840655|840656|840657|840658|840659|840660|840661|840662|840663|840664|840665|840666|840667|840668|840669|840670|840671|840672|840673|840674|840675|840676|840677|840678|840679|840680|840681|840682|840683|840684|840685|840686|840687|840688|840689|840690|840691|840692|840693|840694|840695|840696|840697|840698|840699|840700|840701|840702|840703|840704|840705|840706|840707|840708|840709|840710|840711|840712|840713|840714|840715|840716|840717|840718|840719|840720|840721|840722|840723|840724|840725|840726|840727|840728|840729|840730|840731|840732|840733|840734|840735|840736|840737|840738|840739|840740|840741|840742|840743|840744|840745|840746|840747|840748|840749|840750|840751|840752|840753|840754|840755|840756|840757|840758|840759|840760|840761|840762|840763|840764|840765|840766|840767|840768|840769|840770|840771|840772|840773|840774|840775|840776|840777|840778|840779|840780|840781|840782|840783|840784|840785|840786|840787|840788|840789|840790|840791|840792|840793|840794|840795|840796|840797|840798|840799|840800|840801|840802|840803|840804|840805|840806|840807|840808|840809|840810|840811|840812|840813|840814|840815|840816|840817|840818|840819|840820|840821|840822|840823|840824|840825|840826|840827|840828|840829|840830|840831|840832|840833|840834|840835|840836|840837|840838|840839|840840|840841|840842|840843|840844|840845|840846|840847|840848|840849|840850|840851|840852|840853|840854|840855|840856|840857|840858|840859|840860|840861|840862|840863|840864|840865|840866|840867|840868|840869|840870|840871|840872|840873|840874|840875|845357|845358|845359|845360|845361|845362|845363|845364|845365|845366|845367|845368|845369|845370|845371|845372|845373|845374|845375|845376|845377|845378|845379|845380|845381|845382|845383|845384|845385|845386|845387|845388|845389|845390|845391|845392|845393|845394|845395|845396|845397|845398|845399|845400|845401|845402|845403|845404|845405|845406|845407|845408|845409|845410|845411|845412|845413|845414|845415|845416|845417|845418|845419|845420|845421|845422|845423|845424|845425|845426|845427|845428|845429|845430|845431|845432|845433|845434|845435|845436|845437|845438|845439|845440|845441|845442|845443|845444|845445|845446|845447|845448|845449|845450|845451|845452|845453|845454|845455|845456|845457|845458|845459|845460|845461|845462|845463|845464|845465|845466|845467|845468|845469|845470|845471|845472|845473|845474|845475|845476|845477|845478|845479|845480|845481|851527|851529|851967|851969|851971|852206|852210|852212|852532|852534|852538|852717|852744|852746|852750|852875|852877|853318|853375|853424|853457|853544|853703|853755|853807|853876|853877|853972|853994|854048|854102|854148|854203|854292|854474|854524|854533|854551|854587|854661|854706|854837|854861|854903|854938|854986|855344|855593|855639|855692|855715|855837|858409|858417|858425|858426|858437|858442|858451|858467|858476|860057|860391|861539|861552|904874|905940|905943|905945|912091|912102|912118|912164|912166|912188|912193|912203|912211|912261|912271|912280|912316|912320|912331|912349|913890|913934|913964|913976|915997|916197|916489|917137|917140|917143|917145|917146|917147|917152|917154|917155|917156|917157|917159|917162|917163|917246|917250|917252|917255|917507|917508|917511|917548|920533|921489|926824|926825|926826|926827|926828|926829|926830|926831|926832|926833|926834|926835|926836|926837|926838|926839|926840|926841|926842|926843|926844|926845|926846|926847|926848|926849|926850|926851|926852|926853|926854|926855|926856|926857|926858|926859|926860|926861|926862|926863|926864|926865|926866|926867|926868|926869|926870|926871|926872|926873|926874|926875|926876|926877|926878|926879|926880|926881|926882|926883|926884|926885|926886|926887|926888|926889|926890|926891|926892|926893|926894|926895|926896|926897|926898|926899|926900|926901|926902|926903|926904|926905|926906|926907|926908|926909|926910|926911|928272|928273|928274|928275|928276|928277|928278|928279|928280|928281|928282|928283|928284|928285|928286|928287|928288|928289|928290|928291|928292|928293|928294|928295|928296|928297|928298|928299|928300|928301|928302|928303|928304|928305|928306|928307|928308|928309|928310|928311|928312|928313|928314|928315|928316|928317|928318|928319|928320|928321|928322|928323|928324|928325|928326|928327|936365|936366|936367|936368|936369|936370|936371|936372|936373|936374|936375|936376|936377|936378|936379|936380|936381|936382|936383|936384|936385|936386|936387|936388|936389|936390|936391|936392|936393|936394|936395|936396|936397|936398|936399|936400|936401|936402|936403|936404|936405|936406|936407|936408|936409|936410|936411|936412|936413|936414|936415|936416|936417|936418|936419|936420|936421|936422|936423|936424|936425|936426|936427|936428|936429|936430|936431|936432|936433|936434|936435|936436|936437|936438|936439|936440|936441|936442|936443|937938|937939|937940|937941|937942|937943|937944|937945|937946|937947|937948|937949|937950|937951|937952|937953|937954|937955|937956|937957|937958|937959|937960|937961|937962|937963|937964|937965|937966|937967|937968|937969|937970|937971|937972|937973|937974|937975|937976|937977|940278|940279|940280|940281|940282|940283|940284|940285|940414|940415|941048|941049|941050|941051|941182|947242|948287|948288|948289|948290|948291|948292|948293|948294|948295|948296|948297|948298|948299|948300|948301|948302|948303|948304|948305|948306|948307|948308|948309|948310|948311|948312|948313|948314|948315|948316|948317|948318|948319|948320|948321|948322|948323|948324|948325|948326|948327|948328|948329|948330|948331|948332|948333|948334|948335|948336|948337|948338|948339|948340|948341|948342|948343|948344|948345|948346|948347|948348|948349|948350|948351|948352|948353|948354|948355|948356|948357|948358|948359|948360|948361|948362|948363|948364|948365|948366|948367|948368|948369|949924|949925|949926|949927|949928|949929|949930|949931|949932|949933|949934|949935|949936|949937|949938|949939|949940|949941|949942|949943|949944|949945|949946|949947|949948|949949|949950|949951|949952|949953|949954|949955|949956|949957|949958|949959|949960|949961|949962|949963|949964|949965|957049|957050|957051|957052|957053|957054|957055|957056|957057|957058|957059|957060|957061|957062|957063|957064|957065|957066|957067|957068|957069|957070|957071|957072|957073|957074|957075|957076|957077|957078|957079|957080|957081|957082|957083|957084|957085|957086|957087|957088|957089|957090|957091|957092|957093|957094|957095|957096|957097|957098|957099|957100|957101|957102|958115|958116|958117|958118|958119|958120|958121|958122|958123|958124|958125|958126|958127|958128|958129|958130|958131|958132|958133|958134|958135|958136|958137|958138|958139|958140|960219|960220|960221|960797|960887|961661|963301|963302|965849|970075|970076|970077|970078|970079|970080|970081|970082|970083|970084|970085|970086|970087|970088|970089|970090|970091|970092|970093|970094|970095|970096|970098|970100|975758|975815|975817|975830|975952|980133|980183|980196|983462|983646|983647|983648|983649|983650|983651|983933", + "text": "Hereditary breast and ovarian cancer syndrome" + }, + { + "baseId": "18088|18106|18108|18118|18127", + "text": "Arylsulfatase A pseudodeficiency" + }, + { + "baseId": "18089", + "text": "ARYLSULFATASE A POLYMORPHISM" + }, + { + "baseId": "18090|18091|18096|18097|18133", + "text": "Metachromatic leukodystrophy, juvenile type" + }, + { + "baseId": "18090|18091|18092|18096|18128|18129|18131", + "text": "Metachromatic leukodystrophy, adult type" + }, + { + "baseId": "18091", + "text": "Arylsulfatase a, allele a" + }, + { + "baseId": "18093|18094|18095|18099|18130|18132", + "text": "Metachromatic leukodystrophy, late infantile" + }, + { + "baseId": "18099", + "text": "Pseudoarylsulfatase A deficiency" + }, + { + "baseId": "18100|18101|18103|18113|18114|18115|18117|18119|18120", + "text": "Metachromatic leukodystrophy, severe" + }, + { + "baseId": "18119|181427|197521|361079|361392|590049|614156|677052|677053|677054|682863|682863", + "text": "Leukodystrophy" + }, + { + "baseId": "18121|18126", + "text": "Metachromatic leukodystrophy, mild" + }, + { + "baseId": "18122", + "text": "Arylsulfatase a pseudodeficiency, severe" + }, + { + "baseId": "18123", + "text": "Arylsulfatase a pseudodeficiency, intermediate" + }, + { + "baseId": "18134|18136|102137|102138|102139|195436|200226|200227|200228|200230|204444|204457|215029|215030|215031|215032|215033|215034|215035|216055|216056|216057|216058|216059|216060|227103|227104|254393|254395|254396|268593|272047|315890|315891|315892|315896|315898|315899|315901|315905|315909|315913|315915|315916|315944|315948|315950|315951|323049|323050|323052|323060|323098|323099|323124|323125|323127|323140|323141|323142|329122|329127|329129|329141|329143|329151|329153|329154|329171|329182|329183|329184|329189|329190|329196|329208|330304|330307|330314|330315|330324|330329|330331|330337|330347|330350|330354|330355|330358|330363|330364|371806|372789|425947|437947|438956|461813|503517|503835|504098|513097|526608|526634|526637|526881|546633|546635|546641|546647|546654|546655|546840|546842|546844|546850|546936|546938|546948|546959|547188|566308|640594|640595|640596|640597|640598|652203|652205|693136|713322|724878|738434|744727|768878|784261|784262|784263|784266|787792|839254|839255|839256|839257|839258|839259|869180|869181|869182|869183|869184|869185|869186|869187|869188|869189|869190|869191|869192|869193|869194|869195|869196|869197|869198|869199|869200|869201|869202|869203|869204|869205|869206|869207|869208|869209|869210|869211|869212|869213|869214|869215|869216|956740|956741|960771|979268|979269|979270|979271|979272|979273|979274|979275|979276|979277|979278|979279|979280", + "text": "Vitamin B12-responsive methylmalonic acidemia type cblB" + }, + { + "baseId": "18137|18141|22416|23434|39215|39363|39689|70599|134306|134449|134450|134452|134611|135478|135479|135480|135481|135584|140740|140920|140922|140923|140925|140926|141190|141191|141192|142670|142673|171263|172293|177103|177980|190210|190439|190490|192177|192375|192406|193573|193574|193575|195065|195792|196267|201779|201780|201782|201783|201784|201786|201789|201793|201794|201795|201796|201797|201798|201922|201926|201927|201929|201931|201933|201935|201937|201940|201941|201942|201943|201944|201946|203458|203461|203462|203466|203467|203825|203826|203827|203828|203829|203831|208401|251561|251562|251563|256222|259836|263767|266036|271353|291386|291387|291388|291393|291395|291399|291404|291405|291406|291408|291409|291410|291415|291419|291420|291423|291424|291425|291430|291431|291433|292543|292544|292545|292565|292566|292568|292571|292572|292575|292576|292577|292589|292602|292603|292605|292614|292621|292630|292650|292651|292655|292658|292673|292674|292676|292677|292679|292692|295927|295940|295942|295943|295945|295948|295951|295952|295953|295954|295956|295957|295958|295959|295961|295962|295963|295965|295966|295967|295970|295971|295980|295981|295982|296000|296001|296002|296004|296020|296021|303280|303313|306637|328931|328932|328936|328941|328942|328952|328953|328954|328956|328962|328964|328968|338929|338932|338937|338939|338949|338951|338955|338957|338965|338974|338979|344967|344974|344975|344984|344986|344987|344988|344990|344991|344992|346297|346302|346305|346313|346314|346319|346320|346333|346334|346341|360451|363937|367691|367693|367694|367989|367991|368050|368736|368872|368888|368890|369211|370201|376276|377303|378422|379788|394136|394344|394615|395063|395066|395071|395417|395686|402161|402600|402756|402757|404310|406461|406463|410883|421573|422176|426664|440828|440830|440831|443637|443638|445792|445793|453116|453130|453772|453774|453775|453780|454341|454343|454345|454347|454348|454352|454353|455303|455313|455317|455404|455407|455759|455970|456156|467846|468322|468326|468328|471240|500579|501072|501189|501565|507960|519942|520131|520132|520262|520498|520502|520524|520526|520528|521456|521803|521806|521808|522061|522063|522066|531449|533934|537010|559704|559809|559944|560473|560475|560612|562242|562244|563290|563399|563401|563403|563409|564056|564057|564060|565450|565458|569229|571560|571568|571595|573008|573148|573834|573836|573842|574504|575177|575178|579097|579110|579112|580610|614298|632454|632455|632456|632457|632458|632459|634667|634668|634669|634670|634671|634672|634673|634674|646129|646130|646131|646132|646133|646134|646135|646136|646137|646138|646139|649020|649021|651207|651219|651526|683768|685435|686809|689818|721782|749877|749878|749879|773372|782465|793058|795761|819669|821100|821356|821357|821377|828537|828538|829462|829463|829464|829465|829466|829467|829468|829469|831635|831636|831637|831638|831639|831640|831641|831642|831643|831644|831645|831646|831647|848857|848858|850658|850663|850664|850665|850666|850668|851852|886895|889554|889555|889556|889557|889558|889559|889560|889561|889562|889563|889564|889565|889566|889567|889568|889569|889570|889571|889572|889573|889574|889575|889576|889577|889578|889579|889580|889581|889582|889583|889584|889585|889586|889587|889588|889589|889590|889591|889592|889593|889594|889595|889596|889597|889598|889599|889600|889601|889602|889603|889604|889605|889606|889607|889608|889609|889610|889611|889612|923605|923606|923607|923608|923609|924276|924277|924278|924279|924280|924281|929344|929345|929867|929870|929871|929872|929873|932440|932441|933196|933197|933198|933199|933200|933201|933202|933203|933204|933205|939736|939738|939739|939740|940787|941263|944123|944124|944125|944910|944911|944912|944913|944914|951256|951257|951948|951949|953848|953849|953850|958971", + "text": "Progressive myoclonic epilepsy" + }, + { + "baseId": "18147", + "text": "Inflammatory bowel disease 17, protection against" + }, + { + "baseId": "18147", + "text": "Psoriasis, protection against" + }, + { + "baseId": "18148|57046|57047|57048|57049|175382|175526|175530|195778|227348|230251|315655|315659|315661|315662|315669|315671|315678|315682|315683|315688|315690|315698|315699|322494|322498|322520|322536|322537|322563|322591|328717|328740|328741|328748|328758|328759|329917|329934|329937|329938|329939|329947|329948|329949|444903|620838|869008|869009|869010|869011|869012|869013|869014|869015|869016|869017|869018|869019|869020|869021|869022|869023|869024|869025|869026|869027|869028|869029|869030|869031|869032|869033|869034|869035|869036|869037|872167", + "text": "Deafness, autosomal dominant 25" + }, + { + "baseId": "18149|18150|134993|134994|134995|141844|141847|141848|141849|141850|141851|141852|141853|141856|209344|210823|210824|210828|210829|210830|210831|210838|210840|210841|210844|210846|210847|210848|210849|210853|210854|210858|210866|210867|214817|214818|214819|214820|214821|227245|286375|286393|286395|286399|286401|286402|286410|286411|286420|286427|286428|286431|286444|286445|286454|286455|286458|286462|286463|287087|287091|287093|287094|287095|287097|287100|287107|287108|287109|287111|287113|287116|287117|287118|287120|287122|287126|287127|287128|287130|287131|287132|289419|289424|289434|289435|289440|289455|289464|289478|289482|289483|289496|289497|289499|289501|289504|289812|289813|289815|289817|289818|289820|289821|289822|289823|289825|289891|289893|289894|289895|289897|289898|289899|289905|289910|289919|366401|366403|366406|366590|367304|367312|389196|414886|414887|439265|443251|541986|541989|541993|541995|542006|542012|542013|542015|542024|542072|542077|542078|542082|542087|542090|542092|542097|542098|542100|542104|542108|542109|542113|542114|542116|542118|542119|542120|542122|542127|542129|542130|542132|542137|542139|542150|542181|542192|542249|542252|542255|542259|542263|542268|542274|542276|542278|542284|542288|542290|542291|621119|655450|655451|672037|733478|733479|733480|743959|747635|747642|747643|759062|763224|763234|763241|774758|774841|781331|781335|781337|781340|781347|781351|788754|801605|884962|884963|884964|884965|884966|884967|884968|884969|884970|884971|884972|884973|884974|884975|884976|884977|884978|884979|884980|884981|884982|884983|884984|884985|884986|884987|884988|884989|884990|884991|884992|884993|884994|884995|884996|884997|884998|884999|885000|885001|885002|885003|887368|887369|887370|977713|977714|977715|977716|977717|977718|977719|977720|977721|977722|977723", + "text": "Congenital lactic acidosis, Saguenay-Lac-Saint-Jean type" + }, + { + "baseId": "18152|18153|18154|18155|18156|18157|18158|18159|18160|18161|18162|18165|18167|18169|18170|18173|18174|18179|18179|18180|18181|18181|18183|18183|18184|23317|23318|23332|24416|29463|32673|45099|45100|45101|45102|45847|51654|51655|51656|51658|51659|51660|51663|67597|67599|67606|67614|67614|67615|67617|67620|67621|67621|67623|67631|67636|67638|67641|67643|67644|67647|67648|67648|67650|67652|67654|67655|67656|67658|67659|67664|67664|67666|67666|67674|67675|67678|67679|67681|67683|67685|67686|67689|67690|67691|67695|67696|67698|67699|67700|67706|67715|67718|67719|67720|67722|67726|67727|67729|67729|67730|67731|67732|67740|67740|67742|67750|67751|67754|67755|67755|67763|67768|67769|67775|67780|67782|67788|67796|67797|67808|67817|67818|67820|77900|77916|77922|77923|77925|77926|77933|77934|77937|77938|77939|77955|77957|77958|77974|77974|77978|77980|77981|78005|78013|78014|78075|78295|78322|78363|78545|78928|102607|102608|102609|102610|102611|141704|141707|141709|141711|141712|141713|141715|174724|175699|175700|175702|175840|175841|178592|186419|188734|189373|196942|197324|197416|197417|197419|197425|197427|197436|197441|197448|197473|197475|197488|197496|197500|197501|197504|204197|204198|204199|204200|204201|204202|204203|212927|215433|241093|247639|248631|259979|264150|313786|313790|313816|313822|313826|313828|313829|313831|313834|319993|319999|320013|320015|320017|320018|320026|320030|320031|320032|326163|326180|326191|326209|326210|326211|326212|326218|327103|327131|327132|327133|327139|327142|327143|327152|327157|327158|371355|390668|395447|395791|398114|398462|403309|419283|424564|424582|424896|424897|442548|442554|450938|450941|451235|451256|461128|487029|493165|509976|513199|551407|551782|551785|558117|561550|570847|572543|578603|617858|625809|625832|625833|752632|793392|800784|800926|838247|857651|857652|857653|857662|857663|867801|867802|867803|867804|867805|867806|867807|867808|867809|867810|867811|867812|868642|868643|868644|868645|868646|868647|906989|919353|966434|966435|966439|966441|966442|966443|966493|967192|967193|970932|970933|970934|980340", + "text": "Long QT syndrome 1" + }, + { + "baseId": "18152|18153|18154|18155|18156|18157|18158|18159|18161|18162|18165|18166|18170|18171|18177|18179|18180|18181|18183|18184|18189|21092|21095|23957|23958|23959|23962|23963|23964|23965|23967|24408|24409|24414|24415|24416|24416|24427|24428|24439|24441|28515|28516|28517|28518|29459|29460|29462|29463|29466|29467|29468|29469|29471|29472|29473|29474|29479|29480|29481|29482|29483|32671|32672|33095|38732|38733|39076|45102|45847|48043|57455|57457|57469|67596|67597|67600|67601|67602|67603|67604|67608|67609|67610|67611|67612|67613|67616|67619|67621|67622|67623|67624|67625|67626|67627|67628|67629|67632|67634|67635|67637|67638|67648|67649|67650|67652|67658|67659|67660|67661|67662|67663|67666|67668|67669|67670|67671|67673|67674|67675|67676|67677|67678|67680|67682|67683|67684|67685|67686|67687|67689|67690|67692|67695|67696|67699|67701|67703|67704|67705|67707|67708|67709|67710|67711|67712|67714|67717|67720|67721|67723|67725|67726|67727|67728|67729|67731|67732|67733|67734|67736|67738|67739|67740|67741|67743|67744|67745|67746|67747|67748|67749|67751|67753|67754|67755|67756|67757|67758|67759|67760|67762|67763|67764|67766|67767|67768|67769|67770|67771|67772|67773|67774|67776|67777|67778|67779|67783|67784|67785|67786|67788|67789|67790|67791|67792|67793|67798|67799|67800|67801|67802|67803|67804|67805|67806|67807|67808|67809|67810|67811|67812|67813|67814|67815|67816|67817|67818|67819|67820|77900|77901|77902|77903|77904|77905|77906|77907|77908|77910|77911|77912|77913|77914|77915|77917|77918|77921|77923|77924|77928|77930|77931|77932|77933|77935|77936|77937|77938|77939|77940|77941|77942|77943|77944|77945|77946|77947|77948|77949|77951|77953|77954|77955|77956|77958|77959|77960|77961|77963|77965|77966|77969|77972|77973|77974|77976|77977|77978|77979|77980|77981|77983|77985|77986|77987|77988|77989|77992|77993|77994|77995|77996|77997|77998|77999|78000|78001|78002|78003|78004|78005|78006|78007|78008|78009|78010|78011|78012|78013|78015|78017|78018|78019|78020|78021|78022|78023|78024|78025|78026|78057|78061|78062|78063|78064|78065|78066|78067|78068|78069|78070|78071|78072|78073|78074|78075|78076|78077|78078|78079|78080|78081|78082|78083|78085|78086|78087|78088|78089|78090|78091|78092|78093|78094|78095|78096|78097|78098|78099|78100|78101|78102|78103|78104|78105|78106|78108|78109|78110|78111|78112|78113|78114|78115|78116|78117|78118|78119|78120|78121|78122|78123|78124|78125|78126|78127|78128|78129|78130|78131|78132|78133|78134|78135|78136|78137|78138|78139|78140|78141|78142|78143|78144|78145|78146|78147|78148|78149|78150|78151|78152|78153|78154|78155|78156|78157|78158|78159|78160|78161|78162|78163|78164|78165|78166|78167|78168|78169|78170|78171|78172|78173|78174|78175|78176|78177|78178|78179|78180|78181|78182|78183|78184|78185|78186|78187|78188|78189|78190|78191|78192|78194|78195|78196|78197|78198|78199|78200|78201|78202|78203|78204|78205|78206|78207|78208|78209|78210|78211|78212|78213|78214|78215|78216|78217|78218|78219|78220|78221|78222|78223|78224|78225|78226|78227|78228|78229|78230|78231|78232|78233|78234|78235|78236|78237|78238|78239|78240|78241|78242|78243|78244|78245|78246|78247|78248|78249|78250|78251|78252|78253|78254|78255|78256|78257|78258|78259|78260|78262|78263|78264|78265|78266|78267|78269|78270|78271|78272|78274|78275|78276|78278|78279|78280|78281|78282|78283|78284|78285|78286|78287|78288|78289|78290|78292|78293|78294|78295|78296|78297|78298|78299|78300|78301|78302|78303|78304|78305|78306|78307|78308|78309|78310|78311|78312|78313|78314|78317|78318|78319|78320|78321|78324|78325|78329|78330|78331|78332|78333|78334|78336|78337|78338|78339|78341|78342|78343|78344|78345|78351|78353|78354|78355|78356|78357|78358|78359|78360|78361|78362|78363|78365|78367|78369|78370|78373|78374|78375|78377|78378|78379|78381|78383|78385|78386|78387|78390|78391|78392|78393|78396|78397|78398|78399|78402|78403|78404|78409|78412|78413|78415|78416|78417|78419|78420|78423|78424|78425|78426|78428|78429|78431|78432|78433|78434|78436|78437|78438|78439|78440|78441|78442|78443|78444|78445|78446|78447|78454|78455|78456|78457|78458|78459|78460|78461|78462|78463|78465|78467|78468|78469|78470|78471|78472|78473|78474|78475|78476|78477|78478|78479|78480|78481|78483|78484|78485|78486|78488|78489|78490|78491|78492|78493|78494|78496|78497|78498|78503|78507|78508|78510|78512|78514|78515|78518|78519|78521|78522|78529|78532|78540|78542|78544|78545|78546|78547|78548|78549|78550|78556|78557|78559|78561|78562|78564|78565|78567|78575|78576|78577|78578|78579|78580|78586|78591|78593|78594|78597|78600|78604|78606|78608|78611|78613|78617|78620|78623|78625|78628|78633|78634|78635|78646|78657|78660|78663|78667|78671|78672|78677|78679|78684|78687|78689|78691|78693|78694|78695|78697|78698|78700|78705|78707|78713|78715|78722|78725|78728|78729|78733|78734|78735|78736|78738|78740|78741|78771|78780|78783|78784|78785|78786|78788|78789|78790|78791|78793|78794|78795|78796|78797|78799|78800|78805|78808|78815|78816|78817|78818|78822|78825|78826|78827|78830|78833|78834|78836|78837|78838|78839|78841|78853|78854|78857|78861|78862|78864|78865|78866|78867|78869|78871|78872|78873|78874|78876|78877|78879|78881|78882|78884|78887|78888|78896|78897|78899|78900|78901|78905|78911|78914|78917|78919|78922|78924|78925|78929|78930|78931|78932|78934|78935|78941|78948|79375|136397|136398|136401|136402|136404|136405|136406|136407|136408|136409|136411|136413|136418|136419|136421|136423|136424|136425|136427|136428|136429|136430|136431|196886|197008|197424|197490|204198|217191|652529|654480|654678|654679", + "text": "Congenital long QT syndrome" + }, + { + "baseId": "18155|18156|18165|18167|18170|18179|24410|24413|24419|24420|24422|24426|24428|24429|24431|24432|24433|24435|24439|24441|24446|29472|29480|29482|32660|33096|33098|33099|38428|38446|38447|38448|39000|39001|39003|45091|45092|45100|45101|45420|45422|45424|45425|45426|45427|45428|48044|51654|51655|51656|51658|51659|51660|51661|51662|51663|53061|57443|57444|57445|57446|57447|57448|57449|57450|57451|57452|57453|57454|57455|57456|57457|57458|57459|57460|57461|57462|57463|57464|57465|57466|57467|57469|57470|57471|57472|57473|57474|57475|57476|57477|57478|57479|57481|67616|67618|67621|67629|67637|67638|67641|67643|67648|67664|67668|67675|67683|67684|67694|67695|67715|67720|67726|67731|67751|67752|67760|67769|67785|67786|67787|67788|77916|77921|77922|77923|77924|77925|77926|77927|77932|77933|77934|77937|77938|77939|77941|77949|77950|77953|77955|77957|77958|77971|77973|77974|77975|77980|77983|77984|77992|78005|78013|78014|78059|78080|78081|78100|78108|78111|78118|78157|78263|78276|78287|78297|78315|78316|78318|78319|78322|78323|78324|78325|78326|78328|78329|78330|78332|78333|78334|78336|78339|78340|78341|78345|78347|78348|78349|78350|78351|78352|78357|78359|78362|78363|78364|78365|78366|78367|78369|78371|78376|78381|78382|78384|78386|78387|78388|78393|78394|78395|78399|78400|78401|78443|78448|78487|78495|78499|78522|78523|78524|78532|78535|78548|78550|78552|78553|78554|78555|78556|78557|78558|78559|78562|78563|78564|78565|78566|78567|78571|78572|78573|78574|78575|78576|78578|78581|78582|78586|78587|78588|78589|78593|78599|78601|78603|78605|78606|78607|78608|78609|78610|78627|78629|78635|78656|78658|78659|78661|78662|78664|78665|78666|78667|78669|78670|78671|78674|78677|78683|78684|78686|78687|78690|78696|78697|78699|78705|78708|78712|78714|78715|78718|78723|78725|78727|78728|78729|78742|78750|78762|78771|78775|78779|78781|78788|78791|78797|78805|78813|78817|78819|78826|78834|78839|78841|78842|78844|78849|78854|78857|78870|78876|78877|78880|78886|78888|78890|78895|78896|78897|78900|78902|78903|78906|78907|78908|78910|78912|78913|78914|78916|78919|78924|78925|78926|78928|78930|78934|78940|78941|78942|78944|78945|78946|78947|78951|81524|85951|141704|141707|141708|141710|141711|141714|141715|142741|142742|142743|142744|142745|142746|142747|142748|142749|142750|142751|142752|142753|142754|142755|142756|142757|142758|142761|142762|142763|142764|142766|142767|142769|142770|172171|172539|173777|173778|173779|173780|173781|173783|173784|173786|173790|173792|173794|173917|173919|173920|173921|173923|173924|173925|173926|173927|173928|173929|173931|173932|173934|173935|174724|175135|175699|175700|175702|175841|175843|178052|178518|178520|178522|178523|178526|178527|178575|189212|189213|189214|189216|189217|189219|189256|189257|189258|189259|189260|189262|189328|190965|191320|191451|193308|196831|196832|196833|196834|196835|196838|196842|196852|196862|196874|196876|196877|196888|196890|196891|196896|196897|196904|196907|196908|196911|196913|196919|196921|196922|196923|196924|196926|196927|196928|196929|196940|196943|196948|196950|196957|196958|196963|196964|196965|196967|196971|196972|196973|196976|196980|196981|196983|196984|196985|196992|196993|197000|197002|197012|197016|197129|197130|197131|197135|197137|197138|197148|197149|197150|197152|197156|197157|197159|197164|197171|197172|197175|197181|197190|197192|197193|197194|197201|197204|197205|197207|197218|197224|197228|197235|197263|197266|197272|197278|197279|197282|197293|197298|197303|197304|197331|197340|197348|197371|197374|197375|197426|197427|197473|197475|197478|197481|197487|197488|197500|197510|197511|204196|204198|212332|212567|212569|212572|212927|215355|215433|221413|221414|221671|221672|221673|224266|224276|224347|226503|229044|229045|229046|229047|229048|229050|229052|229053|229054|229056|229059|229061|230191|230192|230193|230194|230196|230198|236759|239195|239196|239198|239199|239203|239207|239208|239210|239213|239992|239993|239994|239995|239996|239997|239998|239999|240001|240002|241093|241094|248628|251105|252648|254129|254130|258309|258313|258315|258318|258319|258321|258322|258328|258463|258692|258694|258696|265299|273617|290272|290275|290276|290282|291083|291086|291088|291098|294391|294399|294400|294413|294749|302179|302180|302190|302194|305381|305385|313787|326180|327103|359425|360883|360890|360930|360960|361035|361864|362737|367188|367192|367194|367203|367205|367206|367213|367462|367466|367467|367468|367469|367473|367484|367492|367494|367496|367504|367505|367516|367522|367523|368522|368533|368535|368539|368546|369016|369023|369044|369062|369314|369342|369343|369347|369605|369606|369612|369616|369621|370973|370976|370997|371001|372141|372346|372360|374039|374044|374060|389579|389583|389717|389774|393530|393534|393537|393544|393558|393587|393593|393594|393602|393753|393778|393785|393802|393806|393808|393952|393953|393965|393985|395482|395489|395490|395497|395668|395693|395703|395706|395716|395853|396157|396168|396181|396195|396203|398114|398184|398462|398520|398529|406265|406280|407052|407055|407064|414937|415264|419283|425554|437883|442550|442552|443426|443429|443433|443434|443437|444789|452175|452182|452195|452202|452210|452218|452228|452245|452417|452421|452424|452452|452454|452540|452545|452549|452551|452553|452579|452587|452714|452722|452756|452758|452767|452769|452770|456462|456463|456466|456494|456498|456787|456799|456805|456811|456825|456830|456831|456853|457045|457057|457063|457080|457097|457098|457515|457539|457545|457546|457557|461003|461004|461129|461145|461422|461792|480695|481691|495184|496341|496343|496994|496995|497392|500214|500474|500475|500680|500688|500690|500692|500696|500768|500782|500799|500800|501642|501942|501947|501969|502282|503246|503250|503581|503586|503587|503792|503796|504213|509585|509594|509600|509606|509611|509615|509623|509625|509628|509629|509848|509849|509851|509852|509863|509870|510275|510278|510279|511073|511075|513944|514020|514345|519115|519146|519158|519160|519203|519215|519221|519357|519360|519365|519367|519375|519392|519397|519402|519405|522440|522448|522454|522666|522669|522670|522702|522769|522796|523137|523140|523141|526035|526038|526237|526552|558926|558928|558932|558934|558938|558940|559457|559469|559471|561406|561449|561470|561493|561705|562788|562793|566581|570501|578417|584531|589841|616890|616891|616892|616893|616894|616895|616896|616897|616898|616899|616900|616901|616902|616903|616904|616905|616906|616907|616908|616909|616910|616911|616912|616913|616914|616915|616916|616917|616918|616919|616920|616921|616922|616923|616924|616925|616926|617334|617335|617336|617337|617338|617339|617340|617341|617342|617343|617344|617345|617346|617347|617348|617349|617350|617351|617352|617353|617354|617355|617356|617357|617851|617852|617853|617854|617855|617856|617857|617858|617859|617860|617861|617862|617863|619172|619174|619175|619178|619215|619245|619246|619249|619277|619278|619280|619281|619285|619374|619417|619453|619455|619544|621161|621350|631271|631290|631291|631293|631295|631297|631298|631305|631306|631307|631317|631318|635888|635891|635895|635896|635900|635907|635908|635915|635916|639908|651783|654677|654680|655541|655542|655545|655785|665670|677255|683574|683860|683861|684253|685210|685211|685212|686398|686399|686400|686402|686403|686404|686405|686998|687751|687758|689860|689863|691384|691385|691386|691387|691391|691392|692179|692180|692181|692182|692183|692184|692185|692186|692988|695506|722393|737928|744187|748225|748230|748232|750497|750498|750502|750504|752626|752632|759759|763854|763858|763860|787752|795404|795409|795987|795988|827982|827992|828010|828021|828024|828025|828026|828031|828045|828047|828048|833317|833330|833338|833341|833342|850936|851047|851144|858552|859261|888863|888864|897667|897669|897670|900333|909374|909375|909376|909377|909378|909379|909380|909381|909382|909383|909384|909385|909386|909387|909388|909389|909390|909391|909392|909393|909394|909395|909396|909397|909398|909399|909400|909401|909402|909403|909404|909405|909406|909407|909408|909409|909410|909411|909412|909413|909414|909415|909416|909417|909418|909419|909420|909421|909422|909423|909424|909425|909426|909427|909428|909429|909430|909431|909432|909433|909434|909435|909436|909437|909438|909439|909440|909441|909442|909443|909444|909445|909446|909447|909448|909449|909450|909451|909452|909453|909454|909455|909456|909457|909458|909459|909460|909461|909462|909463|909464|909465|909466|909467|909468|909469|909470|909471|909472|909473|909474|909475|909476|909477|909478|909479|909480|909481|909482|909483|909484|909485|909486|909487|909488|909489|909490|909491|909492|909493|909494|909495|909496|909497|909498|909499|909500|909501|909502|909503|909504|909505|909506|909507|909508|909509|909510|909511|909512|909513|909514|909515|909516|909517|909518|909519|909520|909521|909522|909523|909524|909525|909526|909527|909528|909529|909530|909531|909532|909533|909534|909535|909536|909537|909538|909539|909540|909541|909542|909543|909544|909545|909546|909547|909548|909549|909550|909551|909552|909553|909554|909555|909556|909557|909558|909559|909560|909561|909562|909563|909564|909565|909566|909567|909568|909569|909570|909571|909572|909573|909574|909575|909576|909577|909578|909579|909580|909581|909582|909583|909584|909585|909586|909587|909588|909589|909590|909591|909592|909593|909594|909595|909596|909597|909598|909599|909600|909601|909602|909603|909604|909605|909606|909607|909608|909609|909610|909611|909612|909613|909614|909615|909616|909617|909618|909619|909620|909621|909622|909623|909624|909625|909626|909627|909628|909629|909630|909631|909632|909633|909634|909635|909636|909637|909638|909639|909640|909641|909642|909643|909644|909645|909646|909647|910660|910661|910662|910663|910664|910665|910666|910667|910668|910669|910670|910671|910672|910673|910674|910675|910676|910677|910678|910679|910680|910681|910682|910683|910684|910685|910686|910687|910688|910689|910690|910691|910692|910693|910694|910695|910696|910697|910698|910699|910700|910701|910702|910703|910704|910705|910706|910707|910708|910709|910710|910711|910712|910713|910714|910715|910716|910717|910718|910719|910720|910721|910722|910723|910724|910725|910726|910727|910728|910729|910730|910731|910732|910733|910734|910735|910736|910737|910738|910739|910740|910741|910742|910743|910744|910745|910746|910747|910748|910749|910750|910751|910752|910753|910754|910755|910756|910757|910758|910759|910760|910761|910762|910763|910764|910765|910766|910767|910768|910769|910770|910771|910772|910773|910774|910775|910776|910777|910778|910779|910780|910781|910782|910783|910784|910785|910786|910787|910788|910789|910790|910791|910792|910793|910794|910795|910796|910797|910798|910799|910800|910801|910802|910803|910804|910805|910806|910807|910808|910809|910810|910811|910812|910813|910814|910815|910816|910817|910818|911549|911550|911551|911552|911553|911554|911555|911556|911557|911558|911559|911560|911561|911562|911563|911564|911565|911566|911567|911568|911569|911570|911571|911572|911573|911574|911575|911576|911577|911578|911579|911580|911581|911582|911583|911584|911585|911586|911587|911588|911589|911590|911591|911592|911593|911594|911595|911596|911597|911598|911599|911600|911601|911602|911603|911604|911605|911606|911607|911608|911609|911610|911611|911612|911613|911614|911615|911616|911617|911618|911619|911620|911621|911622|911623|911624|911625|911626|911627|911628|911629|911630|911631|911632|911633|911634|911635|911636|911637|911638|911639|911640|911641|911642|911643|911644|911645|911646|911647|911648|911649|911650|911651|911652|911653|911654|911655|911656|911657|911658|911659|911660|911661|911662|911663|911664|915351|915355|915357|915359|915361|915363|915365|915367|915369|915419|915421|915423|915425|915427|915429|915642|915644|915646|915648|915650|915652|915654|915657|915723|915725|915727|915729|915731|915733|915735|915737|915739|915741|915744|915745|915746|915748|915750|915752|915753|915754|915756|915757|915758|915760|915769|915855|915859|915861|915863|915864|915866|915868|915870|915872|915874|915876|915878|915880|915882|915884|915886|915887|915889|915891|915893|916118|916119|916123|916128|916152|916153|916154|916158|916160|916161|916170|916172|916177|916178|916179|916181|916364|916366|916370|916376|916384|916388", + "text": "Arrhythmia" + }, + { + "baseId": "18159|18189|29477|29480|67735|197175", + "text": "Long QT syndrome 1/2, digenic" + }, + { + "baseId": "18165|29459|52852|78119|175694|384412|406276|419284|419285|419287|551407|961008|961009|980697|980712", + "text": "Prolonged QT interval" + }, + { + "baseId": "18166|18167|18177|18178|18179|18179|18181|18183|28516|45099|45100|45101|51654|51655|51656|51658|51659|51660|51663|67614|67621|67633|67639|67648|67664|67666|67667|67672|67686|67689|67693|67713|67729|67737|67740|67740|67755|67761|67788|77916|77922|77923|77925|77926|77933|77934|77957|77958|77974|77974|78005|141704|141707|141709|141711|141712|141713|141715|174724|175699|175700|175702|175840|175841|197416|197473|197475|197488|197510|212927|241093|313786|313790|313816|313822|313826|313828|313829|313831|313834|319993|319999|320013|320015|320017|320018|320026|320030|320031|320032|326163|326180|326191|326209|326210|326211|326212|326218|327103|327131|327132|327133|327139|327142|327143|327152|327157|327158|362222|371355|398462|419283|424482|432231|461128|488172|508755|617858|752632|793392|867801|867802|867803|867804|867805|867806|867807|867808|867809|867810|867811|867812|868642|868643|868644|868645|868646|868647|967192|967193|971571", + "text": "Jervell and Lange-Nielsen syndrome 1" + }, + { + "baseId": "18167|18170|18181|18183|18187|45099|45100|45101|51654|51655|51656|51658|51659|51660|51663|67621|67648|67664|67666|67689|67699|67755|67788|77916|77922|77923|77925|77926|77933|77934|77957|77958|77968|77974|77974|78005|141704|141707|141709|141711|141712|141713|141715|174724|175699|175700|175702|175840|175841|197416|197473|197475|197488|197510|212927|241093|313786|313790|313816|313822|313826|313828|313829|313831|313834|319993|319999|320013|320015|320017|320018|320026|320030|320031|320032|326163|326180|326191|326209|326210|326211|326212|326218|327103|327131|327132|327133|327139|327142|327143|327152|327157|327158|362405|371355|398462|419283|461128|589841|617858|752632|793392|867801|867802|867803|867804|867805|867806|867807|867808|867809|867810|867811|867812|868642|868643|868644|868645|868646|868647", + "text": "Short QT syndrome 2" + }, + { + "baseId": "18167|18170|18181|18182|18183|45099|45100|45101|51654|51655|51656|51657|51658|51659|51660|51663|67621|67648|67664|67666|67689|67753|67755|67755|67788|77916|77922|77923|77925|77926|77933|77934|77957|77958|77974|77974|77990|78005|141704|141707|141709|141711|141712|141713|141715|174724|175699|175700|175702|175840|175841|197416|197473|197475|197488|212927|241093|313786|313790|313816|313822|313826|313828|313829|313831|313834|319993|319999|320013|320015|320017|320018|320026|320030|320031|320032|326163|326180|326191|326209|326210|326211|326212|326218|327103|327131|327132|327133|327139|327142|327143|327152|327157|327158|371355|398462|419283|461128|617858|752632|793392|867801|867802|867803|867804|867805|867806|867807|867808|867809|867810|867811|867812|868642|868643|868644|868645|868646|868647", + "text": "Atrial fibrillation, familial, 3" + }, + { + "baseId": "18170|18171", + "text": "Long QT syndrome 1, recessive" + }, + { + "baseId": "18170|197510", + "text": "KCNQ1-Related Disorders" + }, + { + "baseId": "18170|33095|45266|51826|54147|54243|54559|78401|78495|78729|171059|172420|189195|189203|224541|228379|229722|241797|377844|402722|406912|453664|510938|621566|642269|672379|672397|672400|672417|672425|672431|851993|966401|966406|966432|966438|966462|966473|966499|966502", + "text": "Conduction disorder of the heart" + }, + { + "baseId": "18174|21535|29459|29460|29462|29463|29465|29466|29467|29468|29469|29470|29471|29472|29473|29474|29479|29482|29483|38732|38733|45091|45092|78059|78086|78100|78121|78144|78157|78157|78175|78180|78188|78200|78211|78211|78219|78232|78248|78264|78277|78281|78287|78301|78303|78319|78322|78323|78325|78328|78333|78339|78346|78348|78351|78354|78362|78367|78377|78380|78381|78384|78392|78393|78393|78400|78401|78402|78404|78405|78408|78431|78431|78439|78443|78448|78906|81524|167508|171107|171108|178574|178576|178578|178585|189257|189262|197149|197154|197172|197175|197200|197201|197212|197230|197235|197243|197245|197263|197272|197273|197274|197319|197324|197324|197328|197332|197333|197334|197340|197348|197360|197371|212567|212569|214747|215355|221671|221672|224289|224342|224343|224344|224345|239993|239997|239999|240002|252648|263859|302179|302190|302194|305379|305381|305385|305389|305394|310179|310192|310194|310195|310201|310203|310300|310305|361864|361865|369342|369584|369621|369632|370973|389717|389774|395482|395489|395489|395490|395666|395716|396181|396190|419274|419275|419295|424268|424562|424894|439879|442550|442551|442552|456848|495332|501662|509854|511026|522772|536180|551774|551775|561705|576259|589836|589837|617351|621263|625801|625802|625977|680045|680046|680047|683140|683863|687002|805532|833340|833345|857647|857648|897660|897661|897662|897663|897664|897665|897666|897667|897668|897669|897670|897671|897672|897673|897674|897675|897676|897677|897678|897679|897680|897681|900332|900333|961000|961001|961283|967183|967184|967185|967270|970846", + "text": "Long QT syndrome 2" + }, + { + "baseId": "18181", + "text": "Acquired susceptibility to long QT syndrome 1" + }, + { + "baseId": "18181|18183|19185|20864|23785|23786|23787|23788|33281|33282|33484|33485|67621|67648|67664|67666|67755|77926|77933|77957|77974|101930|101934|101939|101941|101943|101947|101948|101949|101952|101958|101960|101964|101965|101970|101971|101971|101972|101973|101976|102653|102654|102655|102656|102657|102658|102659|136597|136599|136603|136610|136617|136619|152978|166233|166404|168110|168113|168116|168123|168124|168125|168126|168127|168132|168134|168136|168139|168142|168151|168153|168156|168158|168162|168165|168166|168167|168168|168170|168182|168183|168187|168191|168212|168214|168221|168235|168242|168245|168246|168247|168249|168250|168254|168259|168264|168265|168269|168273|168279|168293|168880|168881|172166|172167|177228|190140|190141|190142|190143|190144|190145|190146|190205|190206|190207|191835|192936|195012|195016|197416|197475|205743|207186|207864|213557|213558|232066|239787|239789|239791|241096|241097|241098|241099|241100|241101|241102|241103|241104|241105|241106|241107|241108|241109|241110|241112|241113|241114|241115|241116|241117|241118|241119|241120|241121|241122|241124|241125|241125|245098|251847|251851|251854|251862|251864|254132|264188|264205|266982|267793|273454|297027|298925|303347|303352|368108|368109|368565|369788|369790|384489|394847|394849|394850|394921|394933|394936|394944|394959|394963|394967|395141|395147|395151|395155|395458|398129|398135|398139|398142|398144|398146|398148|398153|398156|398157|398160|398196|398198|398199|398202|398205|398207|398208|398215|398224|398535|398536|398545|398546|398549|398552|398553|398558|398565|398566|398571|398572|398580|398602|398619|398620|398622|398625|398628|398631|398634|398637|398639|398640|406704|419283|428384|428390|432019|443760|443764|443768|453624|454419|454840|454844|454847|454953|454957|454958|454964|454972|455434|455436|455440|455443|455685|455687|455690|455692|455700|461010|461013|461016|461017|461021|461022|461029|461033|461039|461043|461128|461154|461157|461162|461167|461172|461174|461182|461187|461189|461197|461198|461209|461214|461428|461431|461432|461433|461434|461438|461468|461470|461482|461491|461492|461495|461496|461497|461498|461502|461504|461513|461514|461806|461806|461807|461818|461821|461829|461831|461834|461835|461838|461842|500781|521076|521077|521080|521082|521084|521088|521321|521324|521330|521332|521339|521435|521439|521441|521446|521559|521570|521573|521578|521579|521585|521586|521598|526048|526052|526070|526078|526082|526088|526089|526095|526099|526101|526104|526106|526112|526115|526117|526119|526122|526125|526126|526128|526145|526149|526154|526158|526242|526247|526250|526252|526255|526265|526267|526272|526273|526279|526284|526295|526566|526576|526582|526584|526593|526601|526613|526615|526619|537784|537786|559839|560271|560273|560275|560277|560279|560281|560386|563063|563065|563067|563069|563071|563072|563074|563076|564579|564581|564586|564588|565024|565028|565037|565044|565047|565048|565050|565650|565651|565653|565661|565664|565671|565673|565675|565680|565681|565682|565683|565686|565690|567164|567166|567169|567171|567175|567177|567179|567182|567183|567185|567196|570502|570513|570518|570527|570529|570536|570538|570540|570541|570545|570547|570562|579137|612189|633762|633763|633764|633765|633766|633767|633768|633769|633770|633771|633772|633773|633774|633775|633776|633777|633778|633779|633780|633781|633782|633783|633784|633785|633786|633787|633788|633789|633790|639922|639923|639924|639925|639926|639927|639928|639929|639930|639931|639932|639933|639934|639935|639936|639937|639938|639939|639940|639941|639942|639943|639944|639945|639946|639947|639948|639949|639950|639951|639952|651238|651388|651393|684254|685186|685187|686728|686729|687759|687760|687762|687764|687765|691823|692991|692992|692993|692995|692997|692998|692999|693000|693001|701718|701719|712777|712778|721393|724381|724382|724383|724385|724386|735019|752634|752638|765036|765040|768407|768408|768413|768414|783979|819575|820358|830672|830673|830674|830675|830676|830677|830678|830679|830680|830681|830682|830683|830684|830685|830686|830688|830689|830690|838251|838252|838253|838254|838255|838256|838257|838258|838259|838260|838261|838262|838263|838264|838265|838266|838267|838268|838269|838270|838271|838272|838273|838274|838275|838276|838277|838278|838279|838280|838281|838282|838283|838284|838285|838286|838287|838288|838289|838290|851280|851899|858732|859416|924002|924003|924004|924005|924006|924007|924008|924009|924010|924011|926186|926187|926188|926189|926190|926191|926192|926193|926194|932856|932857|932858|932859|932860|935474|935475|935476|935477|935478|935479|935480|935481|935482|935483|935484|935485|935486|935487|935488|935489|935490|944544|944545|944546|944547|944548|944549|944550|944551|944552|944553|944554|944555|944556|944557|947396|947397|947398|947399|947400|947401|947402|947403|947404|947405|947406|947407|947408|947409|954111|954112|954113|954114|956457|956458|956459|956460|956461|956462|959762|966343|966855", + "text": "Beckwith-Wiedemann syndrome" + }, + { + "baseId": "18182|21094|23515|39000|39001|39002|39003|39004|39077|45426|55809|56175|56216|56430|56634|56797|56800|77968|77970|77990|78323|78513|78690|78758|78791|78886|78894|78906|141245|141530|174886|174893|188392|189264|400482|609143|679384|679390|679395|679396|679403|679406|965490|965581", + "text": "Atrial fibrillation" + }, + { + "baseId": "18187|23966|29475|29476|51661|67638|77926|78107|78193|78389|99326|141708|178746|258487|259021|313787|313794|313799|313800|313812|313813|313817|319980|319984|319986|319987|319988|320021|320022|320025|326169|326170|326178|326190|326206|326214|327120|327127|327130|329620|329636|329643|329650|329654|329660|329663|329672|329675|339908|339921|339927|339929|339930|345653|345672|345676|345677|347000|347021|347026|625803", + "text": "short QT syndrome" + }, + { + "baseId": "18190|39628|39629|39630|39632|39633|39634|49394|174585|174863|205193|207733|253663|253665|253667|266459|266803|268437|270732|309267|309268|309270|309271|313952|313953|313956|313957|313958|313962|320384|320392|320402|424579|424580|429035|429037|429038|494109|612288|751910|801115|865270|865271|865272|865273|865274|865275|865276|865277|865278|865279|865280|865281|865282|865283|865284|865285|865286|865287|865288|865289|865290|865291|865292|865293|984076|984077|984078", + "text": "Hermansky-Pudlak syndrome 6" + }, + { + "baseId": "18191|34669|34670|34671|34672|34673|34674|175689|175690|175829|175830|195055|230185|230186|230187|254081|254085|264420|313466|313468|313469|313471|313472|313474|313475|313476|313480|319580|319590|319592|319608|319617|319620|319624|319626|319627|319628|319630|319633|319634|319661|319665|319666|319667|319670|319673|325748|325771|325772|325775|325776|325778|325784|325786|325787|326767|326772|326775|326780|326783|326792|326793|326796|326810|326813|326816|326823|326825|326828|326834|326836|326837|326851|326854|418951|418952|418953|418954|418955|418956|418957|418958|418959|418960|424687|424688|429220|429224|512926|724348|752609|788849|867671|867672|867673|867674|867675|867676|867677|867678|867679|867680|867681|867682|867683|867684|867685|867686|867687|867688|867689|867690|867691|867692|867693|867694|867695|867696|867697|867698|867699|867700", + "text": "Hermansky-Pudlak syndrome 5" + }, + { + "baseId": "18192|18193|18194|321959|321960|321965|321967|321968|321969|321974|321975|321979|321982|321983|321984|321988|321990|321991|321993|321994|321995|321999|322003|322006|322016|323846|323850|323851|323853|323854|323855|323859|323861|323863|323867|323871|323873|323874|323875|323879|323881|323885|323891|323895|323896|323898|323899|323900|323905|323910|323914|323915|323916|323920|323921|323926|323927|323931|323934|331258|331263|331264|331268|331269|331274|331276|331279|331282|331284|331286|331290|331291|331293|331294|333530|333542|333544|333545|333556|333561|333574|333577|333579|333583|333587|333588|333589|333598|333599|333600|333602|333605|333606|333607|333613|333617|333618|333620|333622|333625|338055|338059|338065|338075|338080|338081|338085|338090|338092|338094|338115|338119|338127|339990|339995|339998|340000|340001|340003|340004|340014|340015|340016|340018|340020|340027|340028|340030|340033|340037|340258|340259|340266|340267|340270|340272|340280|340284|340286|340287|340288|340289|340291|340292|340294|340296|340297|340300|340303|340307|340310|340313|340315|340319|340321|340322|340323|340324|340340|340341|340342|340346|340349|340354|340358|340360|340365|340366|340369|340371|340374|340380|341654|341659|341662|341666|341670|341672|341674|341675|341679|341687|341692|341694|341695|341701|341703|341705|341712|341714|341716|341717|341719|341722|341723|341724|341730|341731|341732|341733|341734|341738|341743|341746|341747|341752|341755|341764|480528|485879|485880|714300|714301|714709|725898|726386|739446|745054|754830|816326|816329|873035|873036|873037|873038|873039|873040|873041|873042|873043|873044|873045|873046|873047|873048|873049|873050|873051|873052|873053|873054|873055|873056|873057|873058|873059|873060|873061|873062|873063|873064|873065|873066|873067|873068|873069|873070|873071|873072|874484|874485|874486|874487|874488|874489|874490|874491|874492|874493|874494|874495|874496|874497|874498|874499|874500|874501|874502|874503|874504|874505|874506|874507|874508|874509|874510|874511|874512|874513|874514|874515|874516|874517|874518|874519|874520|874521|874522|874523|874524|874525|874526|874527|874528|874529|874530|874531|874532|874533|874534|874535|874536|874537|874538|874539|874540|874541|874542|874543|874544|874545|874546|874547|874548|874549|874550|874551|874552|874553|874554|874555|874556|874557|874558|874559|874560|876471|876472|876473|876474|876475|876476|876477|876478|876479|876602|876603|876604|980476", + "text": "Weill-Marchesani syndrome 4" + }, + { + "baseId": "18196|18197|18198|18199|102426|102427|141939|141940|200053|200054|200055|216025|216026|216027|216028|216029|216030|216031|216033|216034|216035|216036|227099|227100|251332|292308|292309|292315|292317|292318|292319|292324|292329|292330|292334|292339|292346|292353|292360|292361|292365|292372|293749|293750|293754|293755|293756|293758|293759|293760|293789|293791|293793|293795|293796|297032|297033|297034|297037|297038|297044|297052|297061|297063|297064|297069|297073|297074|297075|297077|297080|297084|297085|297092|297098|297099|297101|297108|297115|297119|297120|297123|297124|297125|297126|297129|297135|297154|297158|297183|297184|297185|297188|367941|369033|433694|434424|434425|434426|434427|434428|434429|434430|434431|434432|434433|434434|434435|434436|434437|434438|434439|434440|434441|452967|453275|453742|487063|500497|513270|513271|513949|543074|543080|543081|543083|543333|543336|543338|543339|543374|543377|543380|543389|543393|543409|543414|543415|543417|543423|543425|559591|559740|631954|631955|691510|691511|698388|698389|720775|748753|764328|764331|764332|774922|774925|781878|819451|828815|850968|890144|890145|890146|890147|890148|890149|890150|890151|890152|890153|890154|890155|890156|890157|890158|890159|890160|890161|890162|890163|890164|890165|890166|890167|890168|890169|890170|890171|890172|890173|890174|890175|890176|890177|890178|890179|890180|890181|890182|890183|890184|890185|890186|890187|891751|903533|903534|932179|932180|943814|943815|953681|971852|978018|978019|978020|978021|978022|978023|978024|978025|978026|978027|978028|978029|978030|978031|978032|978033|978034|978035", + "text": "Vitamin B12-responsive methylmalonic acidemia type cblA" + }, + { + "baseId": "18200", + "text": "Hypotrichosis 1" + }, + { + "baseId": "18201", + "text": "Unipolar depression, susceptibility to" + }, + { + "baseId": "18202", + "text": "Attention deficit-hyperactivity disorder 7" + }, + { + "baseId": "18203", + "text": "Bipolar affective disorder, susceptibility to" + }, + { + "baseId": "18203|318423|318432|318433|318438|318445|318449|318453|326574|326576|326578|326588|326592|326600|326604|332793|332794|332804|332812|332816|332823|332824|334427|334430|334434|334454|334461|334463|334464|725273|870416|870417|870418|870421|870422|870423|870424|870425|870426|870427|872290|872291", + "text": "Tryptophan 5-monooxygenase deficiency" + }, + { + "baseId": "18204|18205|18206|18207|18208|18209|18210|18211|18212|18214|76481|76482|76485|76486|166057|186669|186670|186671|186672|186673|186674|250852|288245|288246|288247|288249|288250|288255|288257|288261|289014|289017|289018|289023|289024|289025|289026|289027|289029|289040|289044|291939|291940|291941|291944|291956|292080|292082|292085|292087|292093|292095|292100|292104|292106|357267|357268|357269|357270|357271|357272|357273|357274|357275|357276|357277|357278|357279|357280|357281|357282|357283|357284|357285|357286|431010|443336|518931|542749|542750|542899|542904|542905|542930|542942|542943|542945|630755|651023|651058|708487|720097|720098|720099|720100|720101|733711|733712|743981|747916|763537|779013|779016|819312|827319|827320|827321|827322|857330|887704|887705|887706|887707|887708|887709|887710|887711|887712|887713|887714|887715|891553|891554|891555|917797|917798|917799|917800|917801|917802|922990|943257|953298|959675|960504", + "text": "Alkaptonuria" + }, + { + "baseId": "18215|18216|18217|18218|18219|18220|18221|34598|34599|34600|34601|34602|34603|34604|237114|255196|255197|255198|255199|255200|255201|255202|255203|255204|255205|255206|255207|255208|322476|322477|322484|322486|322487|322489|322490|322491|322500|322501|331841|331855|331859|331862|331868|331870|331871|331876|331877|331885|338834|338839|338840|338850|338858|338862|338866|338873|338874|340439|340440|340445|340446|340447|340448|340451|340453|340459|340462|340472|340475|340476|340481|340491|340493|340494|340497|340498|340504|340506|620510|620511|620512|703207|703208|730991|744751|754440|754443|760339|760341|776151|798685|816003|873448|873449|873450|873451|873452|873453|873454|873455|873456|873457|873458|873459|873460|873461|873462|873463|873464|873465|873466|873467|873468|873469|873470|873471|873472|873473|873474|873475|873476|873477|873478|873479|873480|873481|873482|873483|873484|873485|873486|873487|873488|873489|873490|873491|873492|873493|873494|873495|873496|873497|873498|876499|876500|876501|876502|876503|876504|876505|876506|876507|876508|981905|981906|981907|981908|981909|981910", + "text": "Congenital dyserythropoietic anemia, type I" + }, + { + "baseId": "18223|18224|18225|18226|18229|18230|18231|191263|196043|268075|268448|271762|274992|331416|331417|331418|331420|331425|331426|331428|331429|331434|341735|341736|341740|341742|341748|341749|347094|347098|347099|347100|347101|347104|347110|347113|347115|347116|348420|348421|348425|348426|348427|348429|348430|348431|348433|348439|745219|801767|971103|980383", + "text": "Dyggve-Melchior-Clausen syndrome" + }, + { + "baseId": "18228|18232|196043|271762|274992|348421|348427|745219", + "text": "Smith-McCort dysplasia 1" + }, + { + "baseId": "18233|726755|726758|731091|740317|875844|875845|875846|875847|875848|875849|875850|875851|875852|875853|875854|875855|875856|875857|875858|875859|875860|875861|875862|875863|875864|875865|875866|875867|875868|875869|875870|876710|876711|876712|876713|876714|876715|876716", + "text": "North american indian childhood cirrhosis" + }, + { + "baseId": "18234|18235|18235|18236|18237|34388|34389|34390|34390|34391|34392|34393|34394|34395|34396|34397|219162|259872|359661|424393|424394|424395|444151|539969|539970|539971|798587|798588|799087|799088|917739", + "text": "Shwachman-Diamond syndrome 1" + }, + { + "baseId": "18235|29761", + "text": "Aplastic anemia, susceptibility to" + }, + { + "baseId": "18235|24628|26378|26794|27037|28369|31377|31396|39135|49142|191253|191285|214736|225852|263345|263349|263350|263362|263372|271513|274206|360852|360853|361051|362158|362159|422029|424961|432334|444151|513922|514152|514161|514188|514195|590099|590815|590816|590817|590818|590819|590820|590821|590822|590823|590824|590825|590826|590827|590828|590829|590830|590831|590832|590833|590834|590835|590836|590837|590838|590839|590840|590841|590842|590843|590844|590845|590846|590847|590848|590849|590850|590851|590852|590853|590854|590855|590856|590857|590858|590859|590860|590861|590862|590863|590864|590865|590866|590867|590868|590869|590870|590871|590872|590873|590874|590875|590876|590877|590878|590879|590880|590881|590882|590883|590884|590885|590886|590887|590888|590889|590890|590891|590892|590893|590894|590895|590896|590897|590898|590899|590900|590901|590902|590903|590904|590905|590906|590907|590908|590909|590910|590911|590912|590913|590914|590915|590916|590917|590918|590919|590920|590921|590922|590923|590924|590925|590926|590927|590928|590929|590930|590931|590932|590933|590934|590935|590936|590937|590938|590939|590940|590941|590942|609036|609079|625988|632104|679688|742154|789799|802087|811184|861055|861056|861144|904239|904355|906373|917759|961035|961911|964072|965543|970283|980554", + "text": "Short stature" + }, + { + "baseId": "18235|171866|171867|171874|201030|444151", + "text": "Deeply set eye" + }, + { + "baseId": "18235|29701|30694|444151|513937|514003|578008|920542", + "text": "Splenomegaly" + }, + { + "baseId": "18235|444151", + "text": "Agenesis of permanent teeth" + }, + { + "baseId": "18235|21985|22362|22363|22364|27768|27769|27770|27771|27772|28758|28759|34390|47528|47713|47715|47720|47722|47724|47725|47726|47727|47731|47732|47887|47889|47890|47893|47895|47896|47897|47900|47902|116904|132522|132527|133309|133320|133322|133328|133329|133330|133331|150860|152273|173541|173543|173678|180277|180279|180298|182874|182897|188057|207165|221794|229237|229238|229239|229240|233702|239625|239629|239631|239634|239640|239641|239643|239645|239663|239675|251613|251614|251640|263518|295008|295009|295015|295110|295271|296781|296915|296945|300499|300506|300507|300508|300575|300731|300771|300775|300921|318362|318365|326480|326482|332736|332738|332744|334359|334360|334364|395064|395070|454179|454310|454390|455105|455107|458623|458714|474812|520445|521005|525349|564457|614326|620457|632878|639123|830021|870370|870371|870372|870373|870374|870375|872287|892690|892691|892692|892693|892694|892695|892732|892816|892865|892866|892867|892868|892869|966333", + "text": "Aplastic anemia" + }, + { + "baseId": "18235", + "text": "Shwachman syndrome" + }, + { + "baseId": "18238|18239|18240|18241|18242|18244|18245|18251|18253|18254|18255", + "text": "Congenital muscular dystrophy-dystroglycanopathy with brain and eye anomalies, type A4" + }, + { + "baseId": "18238|18248|18249|44800|44801|44802|44803|44804|99414|99415|99422|99423|99427|99430|141086|172234|177707|258524|267706|270708|270811|272253|274716|306414|306420|306421|306425|306429|306430|306435|306437|306441|306442|306448|306450|306453|310558|310560|310561|310562|310565|310566|310568|310570|315893|315894|315900|315902|315903|315932|315934|315936|315938|315953|315954|316150|316151|316159|316192|316193|316194|316203|316207|316212|316214|316217|316237|316238|370133|370429|425809|444327|487362|490975|493234|687329|900763|900764|900765|900766|900767|900768|900769|900770|900771|900772|900773|900774|900775|900776|900777|900778|900779|900780|900781|900782|900783|900784|900785|900786|900787|900788|900789|900790|900791|900792|900793|900794|900795|900796|900797|900798|900799|900800|900801|903288", + "text": "Dilated cardiomyopathy 1X" + }, + { + "baseId": "18239|18242|18245|18247|18250|18254|18255|18289|18294|19258|19260|19262|19265|19268|19271|19272|19274|44800|44801|44802|44803|44804|48203|88473|99418|99422|99423|99425|99426|99428|101351|101354|101357|101358|101361|101362|101365|101366|101369|102000|102001|102002|102004|102006|102007|102009|134502|134503|134504|135451|135452|135453|135454|135455|135456|135457|135458|135459|141083|172235|172237|172238|172240|172243|172256|177166|177258|177259|177298|177615|177707|192022|192124|192433|192664|192666|193612|194501|194503|194505|194508|194510|194511|207636|207637|207638|207639|208611|208612|215392|227329|240441|240442|243353|243354|243355|243356|243357|243358|253344|253346|253348|257156|258521|258523|258524|258525|258527|258528|259909|265500|265520|266068|266413|266482|266484|266518|266657|267103|267275|267302|267502|267542|267688|267706|267989|267996|268211|268292|268295|268719|269029|269035|269126|269292|269411|269533|269542|269696|269890|269937|269957|269961|270049|270072|270195|270267|270269|270337|270708|270955|271057|271136|271145|271954|272041|272240|272253|272424|272837|272898|273031|273167|273207|273327|273371|273478|273488|273581|273590|273709|273710|273802|273959|274327|274331|274414|274452|274716|274839|274840|274865|274914|275344|275362|275408|307098|311223|316159|316166|316819|316821|337988|347603|352488|357769|360906|369657|370133|370426|372055|372355|376625|376626|377578|377793|396373|396378|396381|396385|396662|396788|403271|403274|403314|403324|403336|403756|403763|403765|403783|403792|403795|403804|407567|415662|421718|425809|425827|425828|428891|428943|428945|430243|444328|444330|446151|446153|458142|458157|458171|458468|458469|458491|458499|458672|458677|458748|458752|458910|458920|458925|458927|458953|458956|458960|459180|459433|459435|468898|468907|468909|468910|468912|469917|469918|469919|470326|470334|470339|470342|470343|470347|470349|471029|471035|487362|488613|488654|489100|489644|489693|489774|490975|491064|491104|491348|492332|492979|493234|493415|493516|493619|493624|497113|502846|506906|507457|507890|509994|513986|523851|523854|523856|523857|524089|524091|524134|524136|524138|524381|524382|524386|524427|524430|524456|524459|524462|524465|524589|524601|524645|524647|524649|533082|533084|533085|533161|533164|533166|533170|533191|533194|533603|533605|533608|533609|536991|544599|544919|545153|548879|548952|549195|549376|562633|562639|562849|563267|563272|563283|563578|563582|563585|563586|565312|565360|565362|565364|565366|565589|565593|565595|568325|568328|568332|568333|568585|570852|570859|570864|570865|570868|570871|570873|570874|572544|572546|573189|573192|574995|577095|577811|585141|585328|587990|588970|589359|589399|589486|619935|637554|637555|637556|637557|637558|637559|637560|637561|637562|637563|637564|637565|637566|637567|637568|637569|637570|637571|637572|637792|637793|637794|637795|637796|637797|637798|637799|637800|637801|648182|648183|648184|648185|648186|648187|648188|648189|648190|648191|648192|648193|648194|648195|648196|648197|651861|651884|652026|653461|655879|684836|687329|687330|689106|689108|692548|692601|694467|694468|705103|705104|711808|716550|728286|742003|744461|757138|759853|766975|767172|772756|772757|772763|772764|772765|777724|777980|783205|789374|792576|820036|820037|820038|820079|821266|821267|835302|835303|835304|835305|835306|835307|835308|835309|835310|835311|835312|835313|835314|835315|835316|835591|835592|835593|835594|835595|835596|835597|835598|835599|835600|835601|835602|835603|835604|835605|835606|835607|835608|847768|847769|847770|847771|847772|847773|847774|847775|847776|847777|847778|847779|847780|847781|847782|925310|925311|925312|925313|925314|925315|925414|928995|928996|928997|928998|928999|934490|934491|934492|934493|934580|934581|934582|934583|934584|938731|938732|938733|938734|938735|938736|938737|940918|940927|946283|946284|946285|946286|946287|946288|946402|946403|946404|946405|946406|946407|946408|946409|950823|950824|950825|950826|950827|950828|950829|955619|955620|955621|955622|955715|955716|958659|958660|958661|958662|958663|958664|958665|958666|958667|958668|958669|958670|959915|974535|974536", + "text": "Walker-Warburg congenital muscular dystrophy" + }, + { + "baseId": "18242|18243|18246|18247|18252|99427|227329|267706|270708|444327|487362|490975", + "text": "Limb-girdle muscular dystrophy-dystroglycanopathy, type C4" + }, + { + "baseId": "18242|18247|18250|18252|18254|18255|44800|44801|44802|44803|44804|99414|99415|99422|99423|99427|99427|99428|99430|141086|172233|172234|177258|177707|227329|227329|258524|266076|267706|270708|270811|272253|274716|306405|306413|306414|306420|306421|306425|306429|306430|306435|306437|306441|306442|306448|306450|306453|310558|310560|310561|310562|310565|310566|310567|310568|310570|315893|315894|315900|315902|315903|315932|315934|315936|315937|315938|315939|315953|315954|316150|316151|316159|316166|316192|316193|316194|316203|316207|316212|316214|316217|316237|316238|357764|357765|357766|357767|357768|357769|370133|370429|424236|425808|425809|444327|487362|487362|490975|493234|544599|544600|544602|544604|544612|544916|544919|544924|544929|544936|545040|545046|545052|545055|545153|545156|545158|545160|545169|654524|687329|900763|900764|900765|900766|900767|900768|900769|900770|900771|900772|900773|900774|900775|900776|900777|900778|900779|900780|900781|900782|900783|900784|900785|900786|900787|900788|900789|900790|900791|900792|900793|900794|900795|900796|900797|900798|900799|900800|900801|903288", + "text": "Fukuyama congenital muscular dystrophy" + }, + { + "baseId": "18242", + "text": "FKTN-Related Disorders" + }, + { + "baseId": "18243|18260|18277|18278|18279|18280|18291|18293|18294|19259|19260|101064|101354|101358|101366|101368|101370|101440|135452|169759|172243|181432|192127|207637|207638|209351|243357|266484|267706|269411|270072|270708|271145|273031|273802|273959|403314|438420|444327|458920|458925|468910|487362|490975|493648|572942|573399|623149|679729|789374|920265|961646|970897", + "text": "Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 1" + }, + { + "baseId": "18247|18256|99427|227329|267706|270708|444327|487362|490975", + "text": "Congenital muscular dystrophy-dystroglycanopathy without mental retardation, type B4" + }, + { + "baseId": "18257|18258|18258|18259|18260|18260|18260|18261|18263|18264|18264|18265|18266|18268|18270|18274|18275|90519|101434|101440|101440|101441|101442|101442|101444|135460|135462|142489|142491|172251|177619|191249|191410|191563|191811|192026|192127|192127|192128|194956|208125|208127|255075|266224|266480|266641|266684|267076|267270|267346|267714|268226|268293|268687|269207|269304|269387|269459|272179|272998|273355|273831|273920|274002|274442|330790|330792|337437|337445|373193|421995|429591|441683|441684|445254|445255|445256|463515|463517|463531|464142|464147|464150|464399|464401|464525|464527|464533|489095|491600|493925|505548|528311|528315|528385|528387|528770|528773|528775|528850|536875|566635|566641|566642|566653|566657|566658|566661|566666|566667|568306|568311|568313|568314|568318|569041|569046|572930|572932|572933|572942|572942|572943|578516|583398|586245|589116|642739|642740|642741|642742|642743|642744|642745|642746|642747|642748|642749|642750|642751|642752|642753|642754|642755|652981|672092|693602|693603|693604|693606|760116|778216|791424|797076|841845|841846|841847|841848|841849|841850|841851|841852|841853|841854|841855|841856|851589|927181|927182|927183|927184|927185|927186|927187|936750|936751|936752|936753|936754|941068|941069|948703|948704|948705|948706|948707|957320|957321|957322|957323|980951", + "text": "Congenital muscular dystrophy-dystroglycanopathy with brain and eye anomalies, type A2" + }, + { + "baseId": "18258|18260|18260|18260|18261|18262|18263|18263|18264|18267|18268|18270|18273|90519|101434|101440|101440|101441|101442|101444|135460|135462|142489|142491|172251|177619|191249|191410|191563|191811|192026|192127|192127|192128|194956|208125|208127|255075|266224|266480|266641|266684|267076|267270|267346|267714|268226|268293|268687|269207|269304|269387|269459|272179|272998|273355|273831|273920|274002|274442|330790|330792|337437|337445|373193|421995|429591|441683|441684|445254|445255|445256|463515|463517|463531|464142|464147|464150|464399|464401|464525|464527|464533|489095|491600|493925|505548|528311|528315|528385|528387|528770|528773|528775|528850|536875|566635|566641|566642|566653|566657|566658|566661|566666|566667|568306|568311|568313|568314|568318|569041|569046|572930|572932|572933|572942|572942|572943|578516|583398|586245|589116|622905|642739|642740|642741|642742|642743|642744|642745|642746|642747|642748|642749|642750|642751|642752|642753|642754|642755|652981|672092|693602|693603|693604|693606|760116|778216|797076|841845|841846|841847|841848|841849|841850|841851|841852|841853|841854|841855|841856|851589|927181|927182|927183|927184|927185|927186|927187|936750|936751|936752|936753|936754|941068|941069|948703|948704|948705|948706|948707|957320|957321|957322|957323", + "text": "Congenital muscular dystrophy-dystroglycanopathy with mental retardation, type B2" + }, + { + "baseId": "18258|18260|18260|18263|18264|18268|18268|18269|90519|101434|101435|101436|101440|101440|101440|101441|101442|101444|135460|135461|135462|135462|135463|142489|142491|142491|172251|172251|177619|177619|191249|191410|191410|191563|191811|191811|192026|192026|192127|192127|192128|194956|194956|195714|208125|208125|208127|255074|255075|255075|266224|266480|266641|266641|266684|267076|267270|267346|267714|268226|268293|268687|269207|269304|269387|269459|272179|272998|273355|273831|273920|274002|274442|321465|321472|321473|321479|321481|321482|321484|321488|321492|321493|321498|321502|321504|321505|321512|330734|330742|330747|330754|330756|330764|330773|330782|330784|330790|330790|330792|330792|330795|330799|330803|337383|337386|337387|337398|337406|337416|337418|337426|337437|337437|337438|337445|337445|337448|339411|339416|339428|339431|339432|339435|339442|339447|339449|339450|339451|339458|339461|339468|339470|339471|339472|339481|373193|421995|421995|429591|441683|441684|445254|445255|445256|463515|463517|463531|464142|464147|464150|464399|464401|464525|464527|464533|489095|491600|493925|493925|505548|528311|528315|528385|528387|528770|528773|528775|528850|536875|566635|566641|566642|566653|566657|566658|566661|566666|566667|568306|568311|568313|568314|568318|569041|569046|572930|572932|572933|572942|572942|572943|578516|583398|586245|589116|620494|642739|642740|642741|642742|642743|642743|642744|642745|642746|642747|642748|642749|642750|642751|642752|642753|642754|642755|652981|672092|693602|693603|693604|693606|760116|778216|797076|802194|841845|841846|841847|841848|841849|841850|841851|841852|841853|841854|841855|841856|851589|872716|872717|872718|872719|872720|872721|872722|872723|872724|872725|872726|872727|872728|872729|872730|872731|872732|872733|872734|872735|872736|872737|872738|872739|872740|872741|872742|872743|872744|872745|872746|872747|872748|872749|872750|872751|876454|876455|876456|876457|927181|927182|927183|927184|927185|927186|927187|936750|936751|936752|936753|936754|941068|941069|948703|948704|948705|948706|948707|957320|957321|957322|957323", + "text": "Limb-girdle muscular dystrophy-dystroglycanopathy, type C2" + }, + { + "baseId": "18260|19274|19531|22745|29517|29534|29564|32660|32660|32660|39363|45812|55854|75127|77662|77669|77828|100211|169757|169759|171246|198685|206864|208124|208126|227736|231238|244072|260934|265299|267026|269979|360820|360828|361070|402756|427644|427646|427648|427649|427651|427652|427654|427656|431009|486836|497353|513914|514134|624113|676965|677274|801165|918201|977393", + "text": "Muscular dystrophy" + }, + { + "baseId": "18276|142384|142386|142388|142390|211449|211454|211455|310102|310104|310108|315164|315174|315176|315186|315191|321181|321183|321197|321751|321752|321754|321756|321769|362103|362104|503326|620360|701300|865753|865754|865755|865756|865757|865758|865759|865760", + "text": "Coenzyme Q10 deficiency, primary, 2" + }, + { + "baseId": "18281|18283|18284|18285|18287|18288|18289|18290", + "text": "MUSCULAR DYSTROPHY-DYSTROGLYCANOPATHY (CONGENITAL WITH IMPAIRED INTELLECTUAL DEVELOPMENT), TYPE B, 1" + }, + { + "baseId": "18282|18289|18294|48033|48034|88473|101351|101354|101354|101354|101356|101357|101357|101358|101358|101358|101359|101361|101361|101362|101362|101365|101365|101366|101366|101368|101369|101369|101370|101370|135451|135451|135452|135452|135452|135453|135453|135454|135454|135455|135455|135456|135456|135457|135457|135458|135459|135459|172243|172243|177259|177613|177615|177615|177977|192022|192124|192433|192664|192664|192666|193612|207636|207636|207637|207637|207638|207638|207639|207639|215392|253334|253344|253344|253346|253348|253348|253349|265500|265520|266413|267302|267688|268211|268211|268295|269126|269292|269292|269411|269411|269542|269890|269937|270049|270072|270072|270267|270267|270337|271145|271145|272240|272424|272664|272837|273031|273031|273031|273167|273581|274327|274865|274952|275344|307095|307096|307098|307098|307105|307106|307113|307114|307118|311220|311223|311223|311224|311225|311230|311235|311243|311244|316799|316800|316807|316812|316819|316819|316821|316821|316823|316827|317237|317239|317254|317258|317271|360906|360906|372355|407567|421718|425827|425827|425828|428943|428945|428945|458468|458469|458491|458499|458910|458920|458920|458925|458925|458927|458953|458956|458960|459433|459435|488613|489100|489100|489644|489774|490430|491064|492332|493415|493516|493516|493624|493648|513986|513986|524089|524091|524381|524382|524386|524589|524591|524601|524645|524647|524649|562849|562849|563578|563582|563585|563586|565589|565593|565595|568585|577095|585328|589486|619935|637792|637793|637794|637795|637796|637797|637798|637799|637800|637801|692601|711808|744461|767172|777724|777980|789374|790847|820079|835591|835592|835593|835594|835595|835596|835597|835598|835599|835600|835601|835602|835603|835604|835605|835606|835607|835608|901192|901193|901194|901195|901196|901197|901198|901199|901200|901201|901202|901203|901204|901205|901206|901207|901208|901209|901210|901211|903325|903326|925414|934580|934581|934582|934583|934584|940927|946402|946403|946404|946405|946406|946407|946408|946409|955715|955716|959915", + "text": "Limb-girdle muscular dystrophy-dystroglycanopathy, type C1" + }, + { + "baseId": "18282|18289|18291|18294|88473|101351|101351|101354|101354|101357|101358|101358|101361|101362|101365|101366|101366|101368|101369|101370|135451|135452|135452|135453|135454|135455|135456|135457|135458|135459|172243|177259|177615|192022|192124|192433|192664|192666|193612|207636|207637|207637|207638|207638|207639|215392|253344|253346|253348|265500|265520|266413|267302|267688|268211|268295|269126|269292|269411|269411|269542|269890|269937|270049|270072|270072|270267|270337|271145|271145|272240|272424|272837|273031|273031|273167|273581|274327|274865|275344|307098|311223|316819|316821|360906|372355|407567|421718|425827|425828|428943|428945|458468|458469|458491|458499|458910|458920|458920|458925|458925|458927|458953|458956|458960|459433|459435|481449|488613|489100|489644|489774|491064|492332|493415|493516|493624|493648|513986|524089|524091|524381|524382|524386|524589|524601|524645|524647|524649|553357|562849|563578|563582|563585|563586|565589|565593|565595|568585|577095|585328|589486|619935|637792|637793|637794|637795|637796|637797|637798|637799|637800|637801|692601|711808|744461|767172|777724|777980|789374|820079|835591|835592|835593|835594|835595|835596|835597|835598|835599|835600|835601|835602|835603|835604|835605|835606|835607|835608|925414|934580|934581|934582|934583|934584|940927|946402|946403|946404|946405|946406|946407|946408|946409|955715|955716|959915", + "text": "Congenital muscular dystrophy-dystroglycanopathy with mental retardation, type B1" + }, + { + "baseId": "18294|619935", + "text": "POMT1-Related Disorders" + }, + { + "baseId": "18295|18296|174227|191826|191932|195729|221701|229603|239953|240084|252826|252829|252833|252836|395644|395653|395883|396007|396300|396302|457167|457169|457350|457354|457775|457778|522655|522665|522667|522672|522673|522920|523089|523091|523300|561597|561599|561601|561607|561608|561946|561948|564295|564297|564308|636146|636147|636148|636149|636150|636151|636152|636153|683892|683895|683896|683897|685221|687049|687051|687052|687053|766266|833595|833596|833597|833598|833599|833600|933887|933888|940878|945631|945632|945633|945634|945635|955158", + "text": "Ciliary dyskinesia, primary, 6" + }, + { + "baseId": "18297|18304|91653|330763|330772|330774|330776|330786|330791|330797|330811|340979|340993|340997|341002|341011|341014|341016|346288|346574|346595|347885|347899|347903|347907|347916|347925|353478|353479|437708|485783|485784|485785|485786|485787|485788|485789", + "text": "Glucocorticoid Deficiency" + }, + { + "baseId": "18306|18307|18308|18309|18316|18318|34532|34533|221088|227841|238199|238203|238204|238205|238207|249584|270565|278143|278144|278145|278146|278147|278148|278154|278155|278156|278157|278159|278160|278162|278163|278164|278165|278166|278167|278168|278169|278170|278171|278172|278173|278174|278175|278177|278179|278183|278189|278190|279123|279128|279130|279143|279148|279149|279150|279151|279168|279171|279172|279174|279176|279177|279178|279182|279183|279288|279289|279290|279291|279292|279293|279296|279302|279303|279304|279305|279306|279307|279312|279313|279323|279334|279341|279350|279352|279355|390964|498135|550797|863087|863088|863089|863090|863091|863092|863093|863094|863095|863096|863097|863098|863099|863100|863101|863102|863103|863104|863105|863106|863107|863108|863109|863110|863111", + "text": "Hyperparathyroidism 2" + }, + { + "baseId": "18309|18310|18313|18314|18315|18317|18319|18320|34532|34533|34534|34535|34536|34538|34539|50287|137580|137581|221088|238199|238200|238201|238202|238203|238204|238205|238206|238207|249584|263993|270565|278143|278144|278145|278146|278147|278148|278154|278155|278156|278157|278159|278160|278162|278163|278164|278165|278166|278167|278168|278169|278170|278171|278172|278173|278174|278175|278177|278179|278183|278189|278190|279123|279128|279130|279143|279148|279149|279150|279151|279168|279171|279172|279174|279176|279177|279178|279182|279183|279288|279289|279290|279291|279292|279293|279296|279302|279303|279304|279305|279306|279307|279312|279313|279323|279334|279341|279350|279352|279355|390715|390723|390726|390933|390937|390938|390941|390943|390946|390947|390948|390950|390952|390953|390954|390955|390956|390957|390958|390959|390961|390962|390964|390965|390966|390972|390974|390975|390979|390982|390983|390984|390986|390992|390997|390998|391006|391007|391008|391010|391014|391025|421191|446914|446953|447332|447337|447341|447342|447344|447349|447353|447441|447443|447450|447459|447461|447465|447472|447479|447480|447543|447547|447551|447560|447561|447564|447565|447566|447568|447575|447577|447579|447580|447581|447583|447586|447587|447596|447598|447600|447608|488909|498135|514884|515323|515326|515327|515331|515336|515350|515367|515368|515370|515374|515379|515380|515382|515383|515395|515396|515399|515404|515406|515408|515410|515411|515413|515414|515416|550797|556495|556496|556498|556716|556718|556720|556763|556765|556767|557072|557074|557076|557078|557080|558254|558256|558258|558260|558262|558264|558266|558268|621064|627165|627166|627167|627168|627169|627170|627171|627172|627173|627174|627175|627176|627177|627178|627179|627180|627181|627182|627183|627184|627185|627186|627187|627188|627189|627190|627191|627192|627193|627194|627195|650541|650568|650572|650602|650674|650699|650700|683294|683295|683296|685594|685596|685598|685599|685601|690432|690434|690435|690436|695020|696338|696340|718469|718470|718471|729946|731954|745932|761412|761415|761416|761418|777045|777048|778760|778795|780407|780408|787032|787035|789894|789895|818877|818878|818879|818880|818881|818882|818883|818884|818885|818886|818887|818888|818889|818890|823076|823077|823078|823079|823080|823081|823082|823083|823084|823085|823086|823087|823088|823089|823090|823091|823092|823093|823094|823095|823096|823097|823098|823099|823100|823101|823102|823103|823104|823105|823106|823107|850748|850947|850949|850951|851261|863087|863088|863089|863090|863091|863092|863093|863094|863095|863096|863097|863098|863099|863100|863101|863102|863103|863104|863105|863106|863107|863108|863109|863110|863111|921768|921769|921770|921771|921772|921773|921774|921775|921776|921777|921778|930195|930196|930197|930198|930199|930200|930201|930202|930203|930204|941610|941611|941612|941613|941614|941615|941616|941617|952168|952169|952170|952171|952172|952173|952174|952175|952176|952177|952178|952179|952180|960415|960416", + "text": "Parathyroid carcinoma" + }, + { + "baseId": "18309|18311|18315|31746|34532|221088|238199|238203|238204|238205|238207|249584|278143|278144|278145|278146|278147|278148|278154|278155|278156|278157|278159|278160|278162|278163|278164|278165|278167|278168|278169|278170|278171|278172|278173|278174|278177|278179|278183|278189|278190|279123|279128|279130|279143|279148|279149|279151|279168|279171|279172|279174|279176|279178|279182|279288|279289|279290|279291|279292|279293|279296|279303|279304|279305|279306|279307|279312|279313|279323|279334|279341|279350|279355|362383|390964|498135|550797|823082|863087|863088|863089|863090|863091|863092|863093|863094|863095|863096|863097|863098|863099|863100|863101|863102|863103|863104|863105|863106|863107|863108|863109|863110|863111", + "text": "Hyperparathyroidism 1" + }, + { + "baseId": "18312", + "text": "Cystic parathyroid adenoma" + }, + { + "baseId": "18315|31728", + "text": "Parathyroid adenoma, somatic" + }, + { + "baseId": "18317|360845", + "text": "Parathyroid adenoma" + }, + { + "baseId": "18321|18322|18324|18325|18326|18327|18328|18329|18330|18331|18332|18333|18334|18335|18336|50120|138631|138633|138634|138635|138636|139309|198037|243642|243689|243690|243691|243692|243693|243694|243695|243696|243697|243698|243699|243700|243701|243703|257596|257599|337717|337720|337721|337726|337728|337730|337737|337739|337740|337744|337745|337746|337748|337749|337754|337757|337767|337770|337773|337775|337781|337784|337785|337787|337790|337798|337799|337804|347294|347298|347300|347302|347314|347317|347319|347322|347324|347329|347334|347343|347344|347346|347348|347353|347354|347361|347363|347370|347374|347379|347383|347385|347391|347392|347395|347396|347398|347405|351280|351282|351285|351286|351289|351290|351292|351294|351295|351299|351300|351303|351304|351307|351308|351311|351317|351319|351322|351324|351326|351329|351330|351331|351334|351339|351341|351342|351343|351344|351347|352334|352335|352336|352337|352340|352341|352344|352345|352346|352347|352350|352351|352352|352353|352354|352356|352357|352360|352361|352362|352363|352364|352365|352366|352367|352370|352371|352372|352373|352376|352377|352380|378776|378781|379846|390486|403750|403757|403902|403903|403906|403908|403914|403918|403919|403921|403922|403925|403927|403928|403931|403932|403933|403938|403939|403946|403949|404353|404355|404356|404357|404358|404364|404366|404368|404387|404389|404391|404394|410982|430558|446394|446398|469860|470093|470100|470101|470102|470104|470109|470113|470115|470118|470120|470123|470129|470130|470130|470133|471028|471030|471032|471037|471039|471040|471052|471053|471476|471478|471481|471485|471488|471489|471493|471495|471786|471883|471886|471887|471888|471890|471892|471893|471894|471897|471901|471902|471904|471906|471907|480166|480172|480177|480196|480199|480394|480395|480396|485796|485797|534010|534011|534034|534142|534151|534164|534168|534177|534180|534181|534181|534183|534185|534186|534188|534189|534191|534196|534197|534199|534295|534300|534304|534305|534309|534310|534313|534317|534320|534325|534688|534691|534692|534698|534699|534705|534709|534711|534712|534714|538253|538254|538255|538256|538257|538258|538259|538260|552229|571857|571858|571860|571866|571879|571884|571891|571900|571901|571904|571905|571912|571913|573218|573219|573344|573346|573347|573350|573351|573936|574061|574062|574062|574063|574064|574065|574071|574073|574075|574077|574080|574080|574085|575243|575244|575245|575246|575247|575248|575249|575250|576052|576053|576054|576055|576056|576057|576058|576059|626284|649330|649331|649332|649333|649334|649335|649336|649337|649338|649339|649340|649341|649342|649343|649344|649345|649346|649347|649348|649349|649350|649351|649352|649353|649354|649355|649356|649357|649358|649359|649360|649361|649362|649363|649364|649365|649366|649367|653205|653251|653285|653312|653318|653616|653619|653696|653697|653709|670594|683212|689276|694701|694702|694703|694704|694706|695870|695871|695872|705876|705877|717395|729134|729135|758035|760836|773506|786575|786576|792038|792039|792040|792041|792042|792043|792044|792045|792046|792047|792048|792049|792050|792051|798083|815158|815161|815178|815192|815193|815198|815202|815775|821437|821438|821440|821442|821443|821444|821445|821446|821447|821448|821449|849182|849183|849184|849185|849186|849187|849188|849189|849190|849191|849192|849193|849194|849195|849196|849197|849198|849199|849200|849201|849202|849203|849204|849205|849206|849207|849208|849209|849210|849211|849212|849213|849214|849215|849216|851914|851916|852428|852432|852433|852924|852928|858764|891037|891038|891039|891040|891041|891042|891043|891044|891045|891046|891047|891048|891049|891050|891051|891052|891053|891054|891055|891056|891057|891058|891059|891060|891061|891062|891063|891064|891065|891066|891067|891068|891069|891070|891071|891072|891073|891074|891075|891076|891077|891078|891079|929452|929453|929454|929455|929456|929457|929458|929459|939253|939254|939255|939256|939257|939258|939259|939260|939261|939262|939263|939264|939265|939266|939267|940527|940528|940529|941279|951406|951407|951408|951409|951410|951411|951412|951413|951414|951415|951416|951417|951418|951419|951420|959058|959059|959060|959061|959062|959063|959064|959065|959066|959067|959068|959069|960340|960341|960342|960343|960344|960965|960966|960967|980396", + "text": "Neurofibromatosis, type 2" + }, + { + "baseId": "18323|18324|22879|27637|622844|623015", + "text": "Meningioma" + }, + { + "baseId": "18337|18338|18339|23065|23067|23068|23069|23070|39158|131900|138996|243651|243652|243654|337610|337611|337626|347199|347201|347202|351195|351197|351200|351201|351204|352216|352217|352219|379825|403764|403825|403839|470130|534095|534181|574062|574080|626284|814999|890931|890932|890933|890934|890935|890936|890937|890938|890939|891811", + "text": "Schwannomatosis 1" + }, + { + "baseId": "18340|18341|18342|18343|227256", + "text": "Hypotrichosis 7" + }, + { + "baseId": "18342|18343|18344|18345|39626|227256", + "text": "Woolly hair, autosomal recessive 2, with or without hypotrichosis" + }, + { + "baseId": "18346|18347|18348|18349|18350|18351|18353|18354|18356|44322|44323|44324|44325|44326|44327|44328|44329|44330|44331|44332|44333|44334|70860|70861|70862|79109|79113|79116|79118|79119|79120|79123|92766|133778|133779|133781|133782|133783|133784|133785|133786|133787|133789|187064|187065|187066|237374|257475|260243|260244|264768|264972|269613|270113|272046|358649|358650|358651|358652|358653|358654|358655|358656|358657|358658|358659|358660|358661|358662|358663|378471|378564|378566|410884|439465|442315|469681|469686|469694|469696|470746|471557|471706|471707|471710|471711|480510|487965|533761|533944|533945|533954|533985|533987|533990|533994|534465|534468|534473|534474|549055|549058|549060|549062|549068|549072|549127|549129|549133|549134|549135|549139|549142|549143|549147|549149|549151|549278|549282|549283|549285|549286|549287|549290|549293|549294|549428|549429|549430|549431|549432|549433|549434|549435|549436|549461|571599|571601|571603|571605|571607|573149|573154|573156|573162|573848|573849|573850|575179|575180|575181|575182|575183|577902|612336|621648|624691|649022|649023|649024|649025|649026|649027|649028|649029|649030|649031|649032|649033|649034|649035|649036|649037|649038|649039|649040|649041|649042|649043|649044|653168|653253|653256|653576|653579|705729|717236|717237|717238|717239|717240|728933|728934|728935|728936|728937|728938|728939|728940|728941|742671|742672|742673|742674|742675|742676|742677|742678|742679|742680|742681|745138|745140|757852|757853|757854|757855|757856|757859|757860|760919|773373|773374|773375|773376|773377|773378|773379|773380|776701|776738|776820|776824|776950|780158|786510|786511|786512|786514|786516|786517|786522|786523|788083|792009|792010|794330|821378|848859|848860|848861|848862|848863|848864|848865|848866|848867|848868|848869|848870|848871|852402|852403|929346|929347|929348|929349|929350|939136|939137|939138|951258|951259|951260|951261|958972|958973|958974|958975|958976|958977|958978|958979|958980|958981|958982|958983|958984|958985|958986|958987|958988|958989|960951|960952|961986|961987|972362|972363|972364|972365|980046|980047|980048|980049|980050|980051|980052|980053|980054|980055|980056|980057|980969", + "text": "Polyglandular autoimmune syndrome, type 1" + }, + { + "baseId": "18348|18354", + "text": "Autoimmune polyglandular syndrome type 1, with reversible metaphyseal dysplasia" + }, + { + "baseId": "18352", + "text": "Autoimmune polyglandular syndrome type 1, autosomal dominant" + }, + { + "baseId": "18357|18358|18359|18360|18361|18362|18363|18364|18365|18366|18367|18368|178178|192518|192520|192521|192522|192523|215781|257373|257376|265875|267619|270740|271079|271347|335795|335796|335799|335808|345499|345503|345508|350120|351165|351166|470471|491705|571309|575119|575120|585756|648776|648777|653103|694564|742464|848479|848480|848481|904881|919920|939010", + "text": "Duane-radial ray syndrome" + }, + { + "baseId": "18369|613173|971150", + "text": "IVIC syndrome" + }, + { + "baseId": "18371|203649|203656|203676|203679|363960|410787|446280|521089", + "text": "Tobacco addiction, susceptibility to" + }, + { + "baseId": "18372|31801", + "text": "Nicotine dependence, protection against" + }, + { + "baseId": "18373|18374|177381|195456", + "text": "Retinitis pigmentosa 9" + }, + { + "baseId": "18375|18376|18377|18378|18379|18380|18381|18382|18383|18384|18385|18386|18387|18388|18390|85484|103278|103300|103306|103307|103309|103310|103311|286076|286077|286084|286097|286098|286103|286104|286113|286117|286118|286120|289134|289135|289136|289149|289161|289174|289485|289487|289495|359429|361962|390701|428054|434112|450852|450859|450861|450863|450986|451158|451161|451163|451173|485696|485697|485698|485699|485700|485701|485702|485703|485704|485705|485706|485707|518178|538628|538637|540523|540524|553315|558430|560619|613977|650798|818724|819019|884773|884774|884775|884776|884777|884778|884779|884780|884781|884782|884783|884784|884785|884786|884787|884788|884789|884790|906314|961421|961596|975669", + "text": "3-Oxo-5 alpha-steroid delta 4-dehydrogenase deficiency" + }, + { + "baseId": "18386", + "text": "STEROID 5-ALPHA-REDUCTASE POLYMORPHISM" + }, + { + "baseId": "18389|18390|966614", + "text": "Micropenis" + }, + { + "baseId": "18391|18392|18393|789839|800347|918553|920125|970488", + "text": "Retinitis pigmentosa 18" + }, + { + "baseId": "18394|18395|18396|18397|18398|39623|39624|337230|337234|337281|343449|343460|343488|345040|345046|345047|361007|537271|791677|791678|800001|800002|800003|800004|800005|800006|919705|919706|919707|919708", + "text": "Retinitis pigmentosa 13" + }, + { + "baseId": "18399|18400|18401", + "text": "Retinitis pigmentosa 35" + }, + { + "baseId": "18399|18400|18401|101927|177056|191424|192532|249423|270752|276617|276618|276621|276622|276623|276624|276625|276627|276628|276629|276630|276631|276634|276635|276881|276882|276883|276888|276892|276893|276894|277463|277475|277477|277478|277540|277541|277551|277562|587547|696153|696154|718275|731767|731768|745740|794454|862424|862425|862426|862427|862428|862429|862430|862431|862432|862433|862434|862435|862436|862437|864996", + "text": "Cone-rod dystrophy 10" + }, + { + "baseId": "18402|18403|18406|18409|18410|18417|50295|50296|50298|50301|50302|91258|102362|102363|102364|102365|102366|102367|102368|102369|102370|102371|102372|102374|102375|102376|102377|102378|102379|102380|102382|102383|102386|102387|138161|138162|138162|138163|138164|138165|138166|138169|138170|138171|151266|151439|151579|171188|175931|177708|184478|184479|184481|184482|184483|184484|184485|184487|184488|184489|184490|184491|184492|184493|184494|222560|227196|230674|230675|235474|235476|235478|235479|235480|235481|235482|235483|235483|235484|235485|235486|235488|235489|235490|235492|242594|242595|242596|242597|242598|242599|242600|242601|242602|242603|242604|242605|242606|242607|242608|242609|242611|242612|242613|242614|247644|247645|247646|247647|247648|247649|247650|247651|247652|247653|247653|247654|247655|247656|247657|247658|247659|247660|247661|247662|247663|247664|247665|247666|247667|247668|247669|247670|247671|247672|247673|247674|247675|247676|247677|247678|256084|256085|260154|327428|327429|327433|327434|327438|327442|327445|327448|327448|327449|327454|327464|327465|327466|327467|337297|337300|337305|337309|337316|337319|337320|337326|337327|337331|343533|343538|343546|343547|343549|343554|343555|343556|343559|343560|343563|343564|343576|343577|343578|343580|343582|343584|343586|343587|343588|343597|345088|345090|345094|345100|345101|345104|345106|345109|345110|360794|374854|375779|375787|378101|401548|401551|401553|401556|401557|401559|401560|401561|401562|401563|401564|401565|401567|401569|401570|401577|401578|401582|401583|401587|401588|401590|401592|401598|402001|402005|402006|402010|402013|402022|402031|402032|402033|402038|402041|402055|402066|402068|402070|402266|402269|402272|402273|402275|402281|402282|402288|402289|402293|402296|402298|402300|402305|409838|409841|415539|420607|420611|420614|420622|420624|420628|422146|424584|433574|466349|466362|466364|466370|466372|466377|466379|466383|467070|467110|467111|467122|467125|467127|467131|467135|467139|467147|467154|467159|467160|467163|467171|467174|467177|467183|467184|467191|467195|467199|467205|467295|467301|467302|467307|467315|467316|467318|467323|467324|467329|467333|467336|467340|467341|467345|467349|467352|467353|467353|467361|467363|467367|467431|467434|467437|467440|467446|467452|467453|467458|467464|467466|467468|467470|467473|467477|477867|477870|477872|477886|477888|477894|477896|477946|477952|477954|477955|477959|477961|477964|477967|477969|477974|477983|477991|477996|477997|478530|478542|478543|478545|478558|478568|478579|478583|478607|478608|478617|482118|530614|530617|530618|530623|530628|530630|530631|530635|530759|530762|530765|530769|530769|530774|530776|530779|530785|530788|530796|530798|530805|530806|530807|530829|530880|530887|530890|530891|530894|530896|530898|531000|531003|531113|531115|531125|531133|531134|531136|531140|531143|531148|531153|531156|531159|531160|531163|531167|531169|568570|568571|568719|568723|568725|568727|568740|568746|568749|568751|568752|570796|570798|570800|570801|570802|570806|570809|570815|570816|570817|570863|570866|570872|570878|570887|570894|570900|570905|570907|574318|574320|574321|574324|574326|574328|574330|574332|574339|610059|610060|645341|645342|645343|645344|645345|645346|645347|645348|645349|645350|645351|645352|645353|645354|645355|645356|645357|645358|645359|645360|645361|645362|645363|645364|645365|645366|645367|645368|645369|645370|645371|645372|645373|645374|645375|645376|645377|645378|645379|645380|645381|645382|645383|645384|645385|645386|645387|645388|645389|645390|645391|645392|645393|645394|645395|645396|645397|645398|652617|652894|652899|653082|653086|653332|653338|653341|684663|685432|688746|688748|690170|694049|694053|695731|703989|703990|703991|715262|715263|715264|727013|740598|755637|755639|755643|771264|771266|771267|771269|771270|771271|771274|771278|785474|791680|791681|812999|813000|813009|813018|813023|813025|813026|813027|813036|813041|813044|813047|813048|813061|813065|818333|820985|820986|820987|820988|820989|820990|844742|844743|844744|844745|844746|844747|844748|844749|844750|844751|844752|844753|844754|844755|844756|844757|844758|844759|844760|844761|844762|844763|844764|844765|844766|844767|844768|844769|844770|844771|844772|844773|844774|844775|844776|844777|844778|844779|844780|844781|844782|844783|844784|844785|844786|844787|844788|844789|844790|844791|844792|844793|844794|844795|844796|844797|844798|844799|844800|844801|852851|852855|858470|876878|876879|876880|876881|876882|876883|876884|876885|876886|876887|876888|876889|876890|876891|928071|928072|928073|928074|928075|928076|928077|928078|928079|928080|928081|928082|928083|928084|928085|937738|937739|937740|937741|937742|937743|937744|937745|937746|937747|937748|937749|937750|940386|940387|940388|941159|941160|941161|949717|949718|949719|949720|949721|949722|949723|949724|949725|949726|949727|949728|949729|949730|949731|949732|949733|949734|949735|949736|957999|958000|958001|958002|958003|958004|958005|958006|958007|960192|960193|960874|977412", + "text": "Multiple fibrofolliculomas" + }, + { + "baseId": "18402|18406|18409|18410|18411|18412|18414|18418|50295|50296|50302|91258|102362|102368|102379|102380|102383|102387|138162|138165|151439|171188|177708|184490|184494|235483|242608|242613|247653|256084|327429|327433|327434|327438|327442|327445|327448|327449|327454|327464|327465|327466|327467|337300|337305|337309|337316|337319|337320|337326|337327|337331|343533|343538|343546|343547|343554|343555|343556|343559|343560|343563|343564|343576|343577|343578|343580|343584|343586|343587|343588|343597|345088|345090|345094|345100|345101|345104|345106|345109|345110|401553|402305|467111|467177|467353|478542|530769|531169|621851|813009|813048|876878|876879|876880|876881|876882|876883|876884|876885|876886|876887|876888|876889|876890|876891", + "text": "Pneumothorax, primary spontaneous" + }, + { + "baseId": "18402|420622|623700", + "text": "Birt-Hogg-Dub\u00e9 Syndrome" + }, + { + "baseId": "18407|27687|29987", + "text": "Chromophobe renal cell carcinoma" + }, + { + "baseId": "18419|18420|18421|18421|18422|18422|18423|18423|18424|18425|18425|18426|18426|20377|20378|20378|20379|20379|20380|20381|20381|20382|20383|39621|39622|177093|177698|177698|190666|190667|190667|190672|190672|190925|190925|190926|191296|191296|191445|191445|191446|191446|191604|191604|191605|191605|191606|191845|191845|191846|192586|192586|192700|192701|192701|192702|194543|194543|194544|194545|194545|195442|195443|195444|195444|196350|196350|217206|217207|237112|237112|237142|237142|251506|251506|251507|251507|251510|251510|251511|251511|251512|251513|251514|251514|251519|251519|251520|251521|251521|251522|251523|251524|251525|251526|251527|251527|251530|251532|251533|251534|251536|251537|251538|251538|251540|251541|251543|251544|251545|251545|251546|251546|251548|251549|251550|251550|251552|264195|264195|265359|265359|265939|265939|265940|265940|265941|265941|267316|267316|267360|267369|267614|268666|269089|269089|269145|269346|269346|270797|270797|270800|270800|272370|272381|272381|274903|274903|275031|275031|293698|293700|293701|293703|293703|293704|293710|293710|293711|293711|293717|293717|293721|293721|293722|293734|293734|293736|293737|293739|293739|293744|293746|293752|293752|293753|293753|293790|293792|293792|293794|293797|293800|293801|293801|293805|293805|293806|293806|293809|293809|293811|293813|293813|293814|293824|293824|293836|293836|293838|293838|293847|293848|293852|293853|293858|293865|293868|293881|293887|293889|293891|293892|293899|293900|293908|293910|293911|293919|293920|295103|295104|295104|295108|295109|295109|295111|295111|295115|295117|295118|295118|295120|295120|295121|295121|295174|295175|295176|295176|295178|295178|295179|295185|295185|295186|295186|295188|295188|295191|295197|295208|295209|295215|295229|295230|295231|295232|295233|295240|295251|295256|295263|298729|298742|298745|298756|298757|298757|298758|298758|298760|298760|298763|298763|298768|298769|298770|298770|298771|298773|298773|298777|298778|298778|298779|298779|298780|298788|298788|298789|298789|298802|298804|298848|298848|298853|298855|298855|298856|298859|298861|298863|298863|298866|298868|298868|298874|298874|298875|298898|298898|298901|298901|298902|298903|298905|298908|298912|298912|298914|298914|298915|298916|298916|298919|298920|298921|298921|298924|298924|298930|298930|298931|298931|298932|298932|298939|298940|298943|298944|298947|298947|298951|298952|298952|298953|298954|298954|298959|298959|298961|298964|298967|298967|298973|298973|298975|298976|298978|298978|298979|298981|298985|298987|298988|298990|298994|298996|299001|299003|299004|299005|299006|299007|299008|299011|299012|299014|299022|299024|299025|299026|299031|299035|299036|299037|299044|299045|299046|299047|299048|299049|299050|299051|299052|299053|299054|299061|299063|299069|299073|299087|357361|357362|359502|367645|367648|368025|368025|369161|369161|369164|369183|406448|414971|421490|421490|428300|428300|428315|428315|439075|439075|440096|440097|440100|440100|440101|440102|440102|440103|440104|440104|440105|443622|443623|443623|452209|453514|453514|453524|453526|453536|453537|453755|453761|453761|453766|453770|453967|453967|454331|454335|454337|454337|454339|481378|481378|488640|489350|489350|489929|490073|490073|490157|490157|491198|491698|493522|500552|500552|500849|500853|500853|513052|513053|520493|520495|520520|536669|536671|536672|536673|536673|543136|543136|543137|543141|543142|543144|543147|543147|543150|543152|543152|543157|543160|543165|543168|543169|543175|543178|543187|543196|543199|543204|543209|543211|543211|543225|543227|543228|543230|543231|543233|543235|543434|543436|543439|543440|543440|543442|543442|543448|543450|543454|543456|543457|543457|543459|543461|543461|543465|543466|543469|543472|543472|543473|543475|543477|543479|543481|543483|543485|543485|543488|543490|543491|543491|543493|543493|543494|543494|543496|543496|543498|543505|543507|543509|543510|543511|543511|543512|543512|543513|543514|543515|543517|543518|543519|543520|543520|543521|543521|543523|543525|543526|543527|543528|543529|543529|543530|543532|543534|543536|543541|543541|543543|543544|543548|543548|543550|543551|543553|543556|543556|543562|543563|543565|543566|543567|543567|543568|543569|543569|543571|543571|543573|543574|543575|543577|543577|543585|543586|543589|543590|543592|543595|543596|543599|543603|543612|543617|543628|543631|543633|543633|543635|543640|543642|543644|543646|543646|543650|543650|543655|543659|543660|543662|543669|549467|549468|549474|549475|552082|559803|559805|559807|559942|561849|562238|562240|564029|564044|584151|584155|586895|609545|609545|609550|612475|623138|632439|632440|632441|632442|632443|632444|632445|632446|632448|632449|632450|632451|632451|632452|632453|651117|651171|651201|651203|651278|691596|691596|691597|691598|691599|691600|691600|691601|691601|695242|698554|698555|698556|698556|698557|698557|698559|698560|698560|698561|698562|698563|698563|698564|698565|698566|698567|698568|698569|698570|698571|698572|698572|698573|698573|698574|698574|698575|698582|698583|698584|698585|698586|698586|698587|698587|698588|698588|698589|698590|698590|698591|698591|698592|698592|709394|709395|709396|709402|709402|709403|721007|721008|721009|721010|721010|721016|721017|721018|721028|721029|721030|721031|730294|730295|730295|734666|734666|734667|734673|734674|734678|734679|734679|734680|734682|734683|734684|734684|744111|744169|748988|748991|748996|748997|748998|748999|748999|749000|749000|749007|749008|749010|749010|749011|749012|749012|749013|749013|749014|749015|749016|749017|749018|749018|749019|749019|759317|759338|759338|759340|759536|759537|764561|764564|764566|764569|764572|764575|764576|764577|764578|764579|764580|764586|764586|764587|764589|764590|764593|764595|777338|777349|777349|777351|777460|777518|777522|777524|777524|777529|777529|781996|781997|782004|782006|782007|782008|782011|782012|782016|782017|782017|787216|787286|787386|792555|792556|799363|799367|819493|819494|819495|819496|829403|829404|829405|829406|829407|829408|829409|829410|829411|829412|829413|829429|829430|829431|829432|829433|829434|829435|850994|850996|851520|851524|890812|890813|890814|890815|890816|890817|890818|890819|890820|890821|890822|891801|891890|891891|891892|891893|891894|891895|891912|891913|891914|891915|891916|891917|891918|891919|891920|891920|891921|891922|891923|891924|891925|891926|891927|891928|891929|891930|891931|891932|891933|891934|891935|891936|891937|891938|891939|891940|891941|891942|891943|891944|891945|891946|891947|891948|891949|891950|891951|891952|891953|891954|891955|891956|891957|891958|891959|891960|891961|891962|891963|891964|891965|891966|891967|891968|891969|891970|891971|891972|891973|891974|891975|891976|891977|891978|891979|891980|891981|891982|891983|891984|891985|891986|891987|891988|891989|891990|891991|891992|891993|891994|891995|891996|891997|895981|895982|895983|895984|895985|906241|906282|923593|923594|923595|923596|923599|923600|932426|932427|939970|939971|939972|940783|940784|940785|940786|944093|944094|944095|944099|953827|953828|953829|953835|953836|953837|953838|953839|953840|953841|959735|960542|974484|978099|978100|978101|978102|978103|978104|978105|978106|978107", + "text": "Ellis-van Creveld syndrome" + }, + { + "baseId": "18421|18422|18423|18425|18426|18427|20378|20379|20381|20381|108172|108173|108174|177698|190666|190667|190667|190672|190925|191296|191445|191446|191604|191605|191606|191845|191846|192586|192701|192702|194543|194545|195444|196350|237112|237142|251506|251507|251510|251511|251514|251519|251521|251523|251524|251527|251538|251545|251546|251550|264195|265359|265939|265940|265941|267316|267360|267369|267614|269089|269145|269346|269346|270797|270800|272370|272381|274903|275031|293703|293710|293711|293717|293721|293734|293737|293739|293752|293753|293792|293800|293801|293805|293806|293809|293813|293824|293836|293838|293852|293853|295104|295109|295111|295115|295118|295120|295121|295174|295176|295178|295185|295186|295188|298757|298758|298760|298763|298770|298773|298778|298779|298788|298789|298848|298855|298863|298868|298874|298898|298901|298912|298914|298916|298921|298924|298930|298931|298932|298947|298952|298953|298954|298959|298964|298967|298973|298978|298979|299046|367645|367648|368025|369161|369164|406448|414971|421490|428300|428315|439075|440097|440100|440102|440103|440104|443623|453514|453524|453526|453755|453761|453770|453967|454335|454337|454339|481378|488640|489350|489929|490073|490157|491198|491698|493522|500552|500849|500853|520493|520495|520520|536669|536671|536673|543136|543147|543152|543168|543211|543440|543442|543457|543461|543472|543485|543491|543493|543494|543496|543511|543512|543520|543521|543529|543541|543548|543556|543567|543569|543571|543577|543633|543646|543650|559803|559805|559807|559942|561849|562238|562240|564029|564044|584151|584155|586895|609545|609550|632439|632440|632441|632442|632443|632444|632445|632446|632448|632449|632450|632451|632452|632453|651117|651171|651201|651203|651278|691596|691597|691598|691599|691600|691601|695242|698554|698555|698556|698557|698559|698560|698561|698562|698563|698564|698565|698566|698567|698568|698569|698570|698571|698572|698573|698574|698575|698582|698583|698584|698586|698587|698588|698589|698590|698591|698592|709394|709395|709396|709402|709403|721007|721008|721009|721010|721016|721017|721018|721028|721029|721030|721031|730294|730295|734666|734667|734673|734674|734678|734679|734680|734682|734683|734684|744111|744169|748988|748991|748996|748997|748998|748999|749000|749007|749008|749010|749011|749012|749013|749014|749015|749016|749018|749019|759317|759338|759340|759536|759537|764561|764564|764566|764569|764572|764575|764576|764577|764578|764579|764580|764586|764587|764590|764593|764595|777338|777349|777351|777460|777518|777522|777524|777529|781997|782004|782006|782007|782008|782011|782012|782016|782017|787216|787286|787386|819493|819494|819495|819496|829403|829404|829405|829406|829407|829408|829409|829410|829411|829412|829413|829429|829430|829431|829432|829433|829434|829435|850994|850996|851520|851524|891920|918898|923593|923594|923595|923596|923599|923600|932426|932427|939970|939971|939972|940783|940784|940785|940786|944093|944094|944095|944099|953827|953828|953829|953835|953836|953837|953838|953839|953840|953841|959735|960542", + "text": "Curry-Hall syndrome" + }, + { + "baseId": "18422|20377|20379|39385|39386|48583|101405|101406|101407|191055|196284|205144|205144|260870|260871|260872|260876|260878|260883|267604|267965|272806|292774|292775|292776|292794|292797|292810|292816|292821|292826|294135|294139|294152|294153|294158|294160|294161|294162|294164|294165|294174|294181|294186|294206|294210|294212|294213|294214|294224|294225|294227|297588|297589|297590|297599|297600|297603|297604|297610|297619|297627|297691|297702|297709|297710|297711|297713|297729|297731|297740|297742|297743|297744|297757|297758|353902|393400|406421|425298|428289|440056|440060|440061|440065|440066|440069|440070|440076|440077|440078|440079|440080|440081|440082|440084|440100|440102|440103|440116|440197|440212|440218|453053|453343|453344|453827|500505|500796|520076|520146|536036|536038|561972|561972|561973|563590|609533|632088|632089|632090|655598|698430|720836|734517|734518|748806|828957|828958|890423|890424|890425|890426|890427|890428|890429|890430|890431|890432|890433|890434|890435|890436|890437|890438|890439|890440|890441|890442|890443|890444|890445|890446|890447|890448|890449|890450|890451|890452|890453|890454|890455|891771|891772|891773|891774|891775|891776|918887|918888|918889|923466|923467|932251|943900|943901", + "text": "Short rib-polydactyly syndrome, Majewski type" + }, + { + "baseId": "18428|18429|18430|18431|18432|18433|57120|57123|57124|57126|173795|173936|229093|271879|290706|290708|290712|291620|291622|294814|294815|294816|294823|294825|295225|295228|295242|889102|889103|889104|889105|889106|889107|889108|889109|889110|889111|889112|889113|889114|889115|889116", + "text": "Deafness, autosomal recessive 6" + }, + { + "baseId": "18434", + "text": "Inflammatory bowel disease 14, susceptibility to" + }, + { + "baseId": "18434|18435|18436", + "text": "Systemic lupus erythematosus 10" + }, + { + "baseId": "18435|19934|20788|23514|23948|24585|556475|569444|581729|581829|816330|961210|961211|961212|961213|961214|961215|961216|961217|980478", + "text": "Rheumatoid arthritis" + }, + { + "baseId": "18437", + "text": "Systemic lupus erythematosus, association with susceptibility to, 10" + }, + { + "baseId": "18438|18439|18440|18441|18442|18444|101568|101569|101570|101571|101572|101574|101575|101576|101578|101579|101580|101582|101583|166179|176932|176932|177195|177610|177884|177885|188781|191062|191574|191822|191927|191928|192769|192771|192774|193193|193299|193632|193632|193792|212105|212108|221109|221110|221111|227216|237104|238338|238339|238340|238341|238342|249993|250002|250006|250008|250010|250011|265418|266814|267000|268051|268051|269236|271042|271044|271333|271488|272410|272772|272959|273564|274125|274311|275340|275394|275394|280972|280973|280976|280977|280978|280979|280984|280985|280985|280988|281526|281527|281535|281536|281550|281551|281556|281559|281564|281565|281570|281571|281572|281573|281583|281588|282746|282749|282757|282760|282761|282762|282765|282769|282770|282778|282780|282783|283011|283015|283017|283018|283019|283022|283024|283025|283026|283037|283038|283040|283041|283060|283071|283079|283085|283086|448220|448255|448260|448383|488677|491412|492399|492399|492789|493121|493144|493743|493743|494108|494158|515992|583704|584746|585392|586278|620008|683376|683377|683378|685820|818171|818172|818173|824285|864664|864665|864666|864667|864668|864669|864670|864671|864672|864673|864674|864675|864676|864677|864678|864679|864680|864681|864682|864683|865195|865196|952487|962670|962822|962823|962824", + "text": "Nephronophthisis 4" + }, + { + "baseId": "18440", + "text": "Cerebello-oculo-renal syndrome (nephronophthisis, oculomotor apraxia and cerebellar abnormalities)" + }, + { + "baseId": "18440|54320|861136", + "text": "Infertility" + }, + { + "baseId": "18443|18444|101568|101569|101570|101571|101574|101575|101576|101578|101579|101580|101582|101583|166179|176932|176932|177195|177610|177884|185958|188781|191062|191574|191822|191927|191928|192769|192771|192774|193193|193299|193632|193632|193792|212105|212108|221109|221110|221111|227216|237104|238338|238339|238340|238341|238342|249993|250002|250006|250008|250010|250011|265418|266814|267000|268051|268051|269236|271042|271044|271333|271488|272410|272772|272959|273564|274125|274311|275340|275394|275394|280972|280973|280976|280977|280978|280979|280984|280985|280985|280988|281526|281527|281535|281536|281550|281551|281556|281559|281564|281565|281570|281571|281572|281573|281583|281588|282746|282749|282757|282760|282761|282762|282765|282769|282770|282778|282780|282783|283011|283015|283017|283018|283019|283022|283024|283025|283026|283037|283038|283040|283041|283060|283071|283079|283085|283086|448220|448255|448260|448383|488677|490490|491412|492399|492789|493144|493743|493743|494108|494158|515992|583704|584746|585392|586278|620008|683376|683377|683378|685820|800349|824285|864664|864665|864666|864667|864668|864669|864670|864671|864672|864673|864674|864675|864676|864677|864678|864679|864680|864681|864682|864683|865195|865196|918643", + "text": "Senior-Loken syndrome 4" + }, + { + "baseId": "18445|94419|94420|94421|94422|307585|307587|307595|307597|307599|307600|307604|307607|307609|307611|311847|311853|311854|311860|311868|311870|311878|311880|317409|317410|317411|317413|317420|317424|317431|317440|317441|317455|317460|317462|317881|317889|317894|317896|317905|317906|317914|317934|458907|458912|459257|459259|459324|459326|524346|524349|524353|524360|524361|524447|524646|524667|524811|524818|524821|524950|524959|563027|563029|563031|563033|563781|565756|565757|565759|565761|565772|620325|624382|624383|638032|638033|638034|638035|638036|638037|638038|638039|638040|638041|638042|638043|638044|638045|638046|700891|711862|723453|723454|723455|737007|751549|767283|767284|779310|787795|835829|835830|835831|835832|835833|835834|835835|835836|835837|835838|835839|835840|835841|835842|835843|835844|835845|835846|835847|901517|901518|901519|901520|901521|901522|901523|901524|901525|901526|901527|901528|901529|901530|903351|903352|903353|925493|925494|925495|925496|925497|925498|925499|925500|934649|934650|934651|934652|934653|934654|946497|946498|946499|946500|946501|946502|946503|946504|946505|946506|955755", + "text": "Candidiasis, familial, 2" + }, + { + "baseId": "18446|18447|18448|18449|48147|48149|48150|83245|213954|213955|256546|256549|264886|330548|330553|330556|330557|330560|330568|330569|330572|330575|330577|340789|340792|340795|340796|340799|340800|340802|340808|340810|340814|340815|340821|340824|346397|346398|346407|346409|346413|346421|346423|346424|346425|346426|346431|346432|346434|347740|347748|347757|347761|347765|347769|347771|378843|612325|620893|622254|727556|741196|878805|878806|878807|878808|878809|878810|878811|878812|878813|878814|878815|878816|878817|878818|878819|878820|878821|878822|880624|880625|880626|880627|880628|961341|971100|983336|983337|983338|983339|983340|983341|983342|983343|983344|983345|983346|983347|983348|983349|983350|983351|983352|983353|983354|983355|983356|983357|983358|983359|983360|983361|983362", + "text": "Autosomal recessive congenital ichthyosis 3" + }, + { + "baseId": "18450|18451|18453|18454|18454|18455|18456|18456|18457|18458|18458|18459|18460|18461|18462|39609|48590|48590|107258|214529|214529|249696|249696|249698|249699|249699|249701|249702|259649|278696|278697|278701|278704|278707|278710|278714|278714|278718|278718|278719|278726|278884|278885|278886|278887|278889|278890|278893|278894|278896|278908|278911|278912|278913|278913|278916|278917|280044|280045|280046|280047|280050|280052|280053|280054|280057|280058|280059|280060|280069|280070|280074|280086|280086|280087|280090|280160|280163|280168|280169|280171|280172|280173|280174|280175|353093|384611|442706|442706|447481|447486|447617|447621|447728|447730|447732|447734|447762|447762|447764|447771|488149|515460|515527|515530|515540|515570|550578|556782|556853|557145|558343|609015|627348|627349|627350|627351|627352|695024|696431|823304|823305|823306|823307|823308|823309|861039|863422|863423|863424|863425|863426|863427|863428|863429|863430|863431|863432|863433|863434|863435|863436|863437|863438|863439|863440|863441|863442|865106|865107|920552|920553|920554|930267|939794|941687|941688|952231|969768|983928", + "text": "Van der Woude syndrome" + }, + { + "baseId": "18452|18453|18453|18454|18454|18456|18458|18462|39609|39610|39611|48590|214529|249225|249696|249699|259649|278714|278718|278912|278913|280044|280086|280169|280171|346490|346491|350730|353093|442706|447481|447486|447728|447730|447734|447762|447764|515460|515527|515530|515540|515570|556782|556853|557145|558343|627348|627349|627350|627351|627352|695024|823304|823305|823306|823307|823308|823309|930267|939794|941687|941688|952231|964990", + "text": "Popliteal pterygium syndrome" + }, + { + "baseId": "18453|18454|18456|18458|48590|214529|249696|249696|249698|249699|249699|249701|259649|278696|278701|278704|278707|278710|278714|278714|278718|278718|278719|278884|278885|278886|278887|278889|278890|278893|278894|278896|278908|278911|278913|278913|278916|280045|280046|280047|280050|280052|280053|280054|280057|280058|280059|280060|280069|280070|280074|280086|280086|280087|280160|280163|280168|280172|280173|280174|280175|442706|447481|447486|447728|447730|447734|447762|447764|515460|515527|515530|515540|515570|556782|556853|557145|558343|627348|627349|627350|627351|627352|695024|696431|823304|823305|823306|823307|823308|823309|863422|863423|863424|863425|863426|863427|863428|863429|863430|863431|863432|863433|863434|863435|863436|863437|863438|863439|863440|863441|863442|865106|865107|930267|939794|941687|941688|952231|970008|970009|970010", + "text": "Orofacial cleft 6, susceptibility to" + }, + { + "baseId": "18463|193649|321711|321715|321717|321726|321727|321733|321740|321744|321745|321747|321748|330958|330972|330977|330978|330981|330985|330987|330989|330990|330995|331001|331002|331006|331007|331013|331016|337716|337722|337724|337733|337735|337741|337742|337747|337751|337758|337762|339746|339748|339750|339751|339756|339762|339772|590793|619926|620497|793519|793520|872880|872881|872882|872883|872884|872885|872886|872887|872888|872889|872890|872891|872892|872893|872894|872895|872896|872897|872898|872899|872900|872901|872902|872903|872904|872905|872906|872907|872908|872909|872910|872911|872912|876463", + "text": "Spinocerebellar ataxia, autosomal recessive, with axonal neuropathy 1" + }, + { + "baseId": "18464|18465|39608|135500|135500|135501|310050|310059|315063|315074|315092|321107|321110|321671|321672|321688|321690|321696|429047|444587|540020|865722|865723|865724|865725|865726|865727|865728|865729|865730|865731|865732", + "text": "Diabetes mellitus, permanent neonatal, with cerebellar agenesis" + }, + { + "baseId": "18466|18467|18468|18469|18470|140732|140734|140736|140737|239295|239296|393772|394187|394191|394208|452818|453596|453599|453600|519647|519922|621894|631840|631841|689747|734338|819426|828626|828627|828628|918866|923374|943731|943732|972513", + "text": "Atrioventricular septal defect 2" + }, + { + "baseId": "18468", + "text": "Atrioventricular septal defect, partial, with heterotaxy syndrome" + }, + { + "baseId": "18471|171814|428536|615412", + "text": "Hermansky-Pudlak syndrome 7" + }, + { + "baseId": "18472|18473|18474|18475|18476|18477|101989|101991|101992|101993|101994|101995|101996|177480|177481|243958|243959|257698|338487|338489|338492|338503|338506|338508|338510|338513|338525|338530|348089|348093|348095|348107|351792|351793|351794|351796|351797|351798|351799|351802|351803|351806|352651|352652|352653|352654|352655|352656|352657|352658|352659|352660|352661|352662|379867|471157|471158|471984|513672|539105|552234|572024|572030|574152|585471|588528|620696|624880|649539|649540|649541|649542|653606|689293|694749|717534|729275|742982|742984|758131|758132|853022|891438|891439|891440|891441|891442|891443|891444|891445|891446|891447|891448|891449|891450|891451|891452|891453|891454|891455|891853|951492|959106|959107|975874", + "text": "ALG12-congenital disorder of glycosylation" + }, + { + "baseId": "18478|18479|18480|18481|18482|18483|18484|18485|18486|18487|49425|70063|132989|132994|132998|133001|133005|137975|137976|137977|137978|137979|137980|137981|137982|137983|137984|137986|137987|137988|137989|137991|137992|137993|137994|137995|137997|137998|137999|138000|138001|138002|138003|138004|138005|138008|138009|138010|138014|138017|138019|138020|138021|138023|138024|138026|138027|138028|138029|138030|138031|138032|138033|138035|138036|138040|138043|138044|138051|138053|138054|139278|139281|166180|180343|180352|180364|186234|186235|186236|186237|190171|190172|200394|200395|200396|205183|205212|205705|207011|208223|208320|208323|213187|213230|213231|213232|215265|221848|221862|222541|222542|222543|222544|226959|231728|240641|240642|242432|242532|242533|242534|242535|242537|242538|242540|242541|242542|242543|242545|242546|242548|242550|242552|242555|242556|242557|242558|242559|242560|242561|245218|250831|253596|255965|255969|255971|255977|255979|255981|255982|255987|255989|255991|255998|255999|256001|256005|256006|256008|260143|287840|288498|291537|326829|326831|326835|326839|326841|326845|326847|326849|326852|326856|326857|326865|336710|336712|336714|336715|336723|336727|336731|336735|336739|336741|336743|336746|336747|336749|336751|336752|336753|336756|342931|342938|342943|342956|342957|342960|342961|342966|342969|342970|342973|342977|342986|342994|342999|343002|343003|343004|344578|344579|344580|344581|344585|344586|344597|344598|344602|344607|344608|344610|344613|344614|344619|344620|344621|344625|344628|344629|344632|344634|358389|358390|358391|358392|363852|389213|389214|393226|397315|400207|400401|400883|401237|401372|401378|401380|401382|401400|401408|401411|401412|401416|401422|401430|401442|401450|401456|401458|401652|401676|401899|401909|401913|401917|401920|401938|401941|402142|402160|402171|402186|402204|402206|407733|407749|409804|422132|429894|429897|429898|429899|429900|429903|429909|433544|433545|444540|452037|459319|464041|465692|466109|466123|466129|466150|466168|466172|466856|466877|466900|466901|466914|466935|466950|466953|467179|467197|467201|467214|481382|512953|513365|530405|530409|530419|530421|530510|530515|530521|530538|530549|530553|530576|530723|530724|530733|530735|530758|530933|535378|535379|547836|547848|547852|547853|547857|547859|547862|547863|547865|547866|547870|547871|547872|547878|547879|547880|547881|547886|547887|547888|547889|547892|547894|547896|547898|547902|547904|547906|547908|547911|547912|547915|547918|547921|547924|547925|547926|547928|547930|547931|547932|547933|547936|547938|547939|547940|547941|547943|547947|547949|547951|547952|547953|547954|547955|547956|547957|547958|547959|547960|547961|547962|547964|547966|547967|547972|547973|547975|547977|547982|547983|547985|547989|547991|547994|548004|548008|548014|548019|548122|548129|548132|548135|548137|548139|548158|548172|548178|548179|548180|548182|548197|548200|548201|548204|548205|548210|548221|548231|548232|548235|548243|548245|548257|548260|548263|548264|548271|548274|548613|548615|548618|548620|548622|548625|548629|548631|548634|548638|548643|548645|548646|548648|548654|548657|548660|548670|548680|548681|548701|548710|548717|548721|548728|548730|548731|548733|548741|548743|548749|548751|548754|568469|568508|570626|570649|570655|574214|574215|574217|575792|575794|575796|578535|611365|612102|612103|612104|612126|612127|612134|612135|612196|612197|620567|623342|638438|645153|645154|645159|645164|645167|645170|645176|645180|645183|645189|645191|645195|645201|645202|645212|645214|645215|645217|645220|645221|652783|679905|683523|684640|684641|684642|685428|685429|685430|685431|688569|688683|688686|688687|688695|688696|688701|688702|688706|688709|688710|688711|688712|688714|688721|690157|690158|693980|693981|693998|694000|695455|695716|695721|790285|790286|790287|790306|790307|790308|790309|790310|790311|790312|790908|790909|790920|790921|790922|790923|790924|790925|790926|790927|790928|790929|791404|791405|791406|791407|791408|791496|791497|791498|791605|791606|791607|791608|791609|791610|791611|791612|791613|791614|791659|791660|791661|791662|791663|791664|844514|844519|844522|844528|844533|844538|844539|844543|844548|844555|844556|844558|844567|844576|844581|844584|844590|851693|852137|852680|852687|852837|852847|876204|876205|876206|876207|876208|876209|876210|876211|876212|876213|876214|876215|876216|876217|876218|876219|876220|876221|876222|876223|876224|876225|876226|876227|876228|876229|876230|876231|876232|876233|876234|876738|876739|876740|876741|876742|876743|904097|904098|904099|904100|904103|904104|904105|917985|928014|937679|937685|949647|957931|960867|961972|962276|962277|962278|962279|962280|962281|962282|962283|962284|962285|962286|962287|962288|962289|962290|962291|962292|962293|962294|962295|962296|962297|962298|962299|962300|962301|962302|962303|962305|962306|962307|962308|962309|962311|962312|962313|962315|962316|962317|962318|962319|962320|962321|962322|962323|962324|962325|962326|962327|962328|962329|962330|962331|962332|962333|962334|962335|962336|962337|962338|962339|962340|962341|962342|962343|962344|962345|962346|962347|962348|962349|962350|962351|962352|962354|962355|962356|962357|962358|962359|962360|962361|962362|962363|962365|962366|962367|962368|962369|962370|962371|962372|962373|962374|962375|962376|962377|962378|962379|962380|962381|962382|962383|962384|962385|962386|962387|962388|962389|962390|962391|962392|962393|962394|962395|962396|962397|962398|962399|962400|962401|962402|962403|962404|962405|962406|962407|962408|962409|962410|962411|962412|962413|962414|962415|962417|962418|962419|962420|962421|962422|962423|962424|962425|962426|962427|962428|962429|962430|962431|962432|962433|962434|962435|962436|962437|962438|962439|962440|962441|962442|962443|962444|962445|962446|962447|962448|962449|962450|962451|962452|962453|962454|962455|962456|962457|962458|962459|962460|962461|962462|962463|962464|962465|962466|962467|962468|962469|962470|962471|962472|962473|962474|962475|962476|962477|962478|962479|962480|962481|962482|962483|962484|962485|962486|962487|962488|962489|962490|962491|962492|962493|962494|962495|962496|962497|962498|962499|962500|962501|962502|962503|962504|962505|962506|962507|962508|962509|962510|962511|962512|962513|962514|962515|962516|962517|962518|962519|962520|962521|962522|962523|962524|962525|962526|962527|962528|962529|962530|962531|962532|962533|962534|962535|962536|962537|962538|962539|962540|962541|962542|962543|962544|962545|962546|962547|962548|962549|962550|962551|962552|962553|962554|962555|962556|962557|962558|962559|962560|962561|962562|962563|962564|962565|962566|962567|962568|962569|962570|962571|962572|962573|962574|962575|962576|962577|962578|962579|962580|962581|962582|962583|962584|962585|962586|962587|962588|962589|962590|962591|962592|962593|962594|962595|962596|962597|962598|962599|962600|962601|962602|962603|962604|962605|962606|962607|962608|962610|962611|962612|962613|962614|962615|962616|962617|962618|962619|962620|962621|962623|962624|962625|962626|962627|962628|962629|962630|962631|962633|962634|962635|962636|962637|962638|962639|962640|962641|962642|962643|962644|962645|962646|962647|962648|962649|962651|962652|962653|962654|962655|962656|962657|962658|962659|962660|962661|962662|962663|972239|972240|972241|972242|972243|972244|972245|972246|972247|972248|972249|972250|972251|972252|972253|972254|972255|972256|972257|972258|972259|972260|972261|979875|979876|979877|979878|979879|979880|979881|979882|979883|979884|979885", + "text": "Fanconi anemia, complementation group A" + }, + { + "baseId": "18479|18482|18483|19777|21379|21380|21382|21751|21753|21754|21756|21757|21758|24388|27079|27082|27083|27084|27085|27086|27088|27090|34164|34168|46584|49425|65865|65898|66133|67040|67400|99372|99373|132280|132984|132985|132986|132987|132988|132989|132991|132992|132993|132994|132995|132996|132997|132998|132999|133000|133001|133004|133005|133007|133008|135439|136450|136518|137975|137976|137977|137978|137979|137980|137981|137982|137983|137986|137987|137988|137989|137990|137991|137992|137993|137995|137998|138000|138001|138002|138003|138004|138006|138007|138008|138009|138010|138014|138016|138017|138019|138020|138021|138022|138023|138024|138025|138026|138028|138029|138030|138031|138032|138033|138035|138036|138037|138038|138039|138040|138043|138044|138049|138050|138051|138052|138053|138054|138055|138057|138058|138059|138060|138063|138066|138067|138068|138087|138088|138090|138093|138094|138095|138096|138097|138099|138100|138101|138104|138105|138106|138108|138109|139506|139869|140978|140979|140980|140981|140983|140984|140987|140988|140989|140990|142457|152470|177703|180327|180329|180331|180332|180333|180336|180337|180338|180343|180344|180345|180346|180347|180349|180350|180352|180353|180354|180355|180357|180358|180359|180363|180571|180642|180937|185267|186096|186097|186225|186226|186234|186235|186236|186237|186792|186793|190171|194336|194866|195603|205183|205208|205210|205212|207011|207731|208096|208097|208098|208223|208224|208254|208255|208256|208257|208406|212271|212670|212671|212673|212674|212676|212677|212678|212679|212680|212681|212682|212683|212684|212685|212686|212687|212689|212690|212925|213140|213141|213145|213187|213188|213189|213190|213191|213230|213231|213232|215407|215479|221315|221316|221317|221319|221802|221829|221830|221831|221832|221833|221834|221835|221836|221837|221838|221839|221840|221841|221842|221843|221844|221846|221847|221848|221849|221850|221851|221852|221853|221854|221855|221856|221857|221858|221860|221861|221862|221863|222325|222433|222434|222435|222436|222486|222541|222542|222543|222544|226959|231721|231723|231724|231725|231728|231730|231731|231732|231737|231738|231881|236954|236960|237216|238962|238963|238964|238965|238966|238967|238969|239031|239032|239033|239034|239035|239036|239037|239038|239039|239040|239041|239042|240435|240614|240615|240616|240617|240618|240619|240620|240621|240627|240629|240630|240632|240633|240634|240635|240636|240637|240638|240639|240640|240641|240642|240643|241077|241078|241079|241080|241081|241083|241084|241831|241832|241833|241834|241835|241836|241837|241838|241839|241840|241841|241842|241843|242119|242120|242121|242122|242123|242124|242125|242126|242127|242129|242130|242132|242133|242134|242136|242137|242138|242139|242140|242141|242142|242400|242401|242402|242403|242404|242405|242406|242407|242408|242409|242410|242411|242413|242414|242415|242416|242417|242418|242419|242420|242421|242422|242424|242425|242426|242427|242428|242430|242431|242432|242433|242434|242435|242436|242532|242533|242534|242535|242536|242537|242540|242541|242542|242543|242544|242545|242546|242547|242548|242549|242550|242551|242552|242553|242554|242555|242556|242557|242558|242559|242560|242561|245217|245218|245219|245220|245221|245222|245223|245224|247056|248486|250750|250831|250832|250836|250838|250841|250842|253535|253536|253596|253598|254127|254941|254943|254946|254947|254952|254953|255378|255379|255384|255385|255386|255389|255708|255709|255711|255712|255713|255714|255715|255716|255718|255719|255722|255724|255725|255727|255729|255730|255731|255732|255733|255734|255735|255736|255965|255969|255971|255972|255979|255981|255982|255986|255987|255988|255989|255999|256001|256004|256005|257770|259408|259529|259928|260102|260143|265612|286872|287798|287808|287823|287837|287840|288498|288503|288508|290414|291422|291427|291439|291451|291535|291537|291542|291580|299934|299936|308258|308262|308265|308927|308945|312648|313683|313782|318555|318558|318560|318568|319067|319075|319961|319977|320047|320054|320542|320543|320546|320553|320566|320570|320576|320580|320594|320604|320607|323474|323475|323490|323491|323502|323507|325276|325281|325283|325299|325312|325322|326152|326839|326841|326849|326852|326863|326865|327062|327064|327095|327916|327918|329235|329239|329240|329250|329347|329349|329354|329355|329357|329361|329374|333181|333190|333199|333200|333206|333214|333215|333222|333231|333235|333236|333243|333247|334213|334921|334928|334937|334940|334947|334950|335896|335912|335923|335927|335945|335946|335949|335953|336727|336731|336739|336743|336747|336751|336752|336758|337894|337897|337911|337938|338987|338995|339313|339477|339487|339491|339517|340006|340007|340009|340010|340022|340024|340026|340031|340032|341380|341385|341389|341391|341399|341407|341408|341409|341415|341416|341418|341420|341422|341428|341435|341436|341437|341442|342896|342899|342909|342910|342917|342920|342923|342931|342949|342951|342952|342966|342969|342970|342973|342977|342986|342999|343002|343003|344590|344598|344608|344612|344613|344621|344628|344629|344632|345189|345274|345280|345282|346666|346669|346670|346680|346681|348562|352102|352104|352782|353858|357819|357835|358390|358392|360157|363821|363849|363852|370481|370522|370542|371011|371018|371022|371026|371373|371376|371384|371407|373207|393030|393035|393038|393050|393059|393060|393070|393135|393146|393150|393152|393156|393157|393158|393159|393160|393163|393166|393167|393226|393231|393334|393337|393345|393419|393421|393423|393424|393432|393516|396874|396876|396878|396899|396904|396906|396909|396914|397100|397106|397111|397112|397120|397128|397131|397143|397146|397149|397153|397293|397297|397301|397314|397317|397326|397333|397463|397476|397481|397485|397749|398126|398127|398131|398140|398457|398543|398557|398562|398564|398567|398569|399639|399643|399799|399800|399806|399808|399812|400039|400203|400205|400207|400211|400365|400369|400370|400373|400374|400376|400380|400381|400382|400384|400387|400393|400394|400398|400399|400401|400409|400411|400414|400419|400511|400512|400513|400516|400527|400530|400531|400539|400540|400659|400662|400865|400870|400876|400879|400883|400890|400895|401132|401138|401144|401145|401151|401159|401162|401163|401164|401167|401169|401170|401173|401175|401176|401177|401180|401183|401186|401189|401194|401197|401199|401203|401208|401209|401215|401217|401218|401220|401223|401226|401227|401228|401229|401231|401232|401233|401235|401236|401237|401240|401333|401372|401373|401375|401378|401380|401382|401384|401385|401395|401396|401398|401399|401400|401405|401408|401410|401411|401412|401416|401420|401421|401422|401425|401429|401430|401436|401439|401442|401450|401451|401456|401458|401625|401630|401632|401636|401639|401647|401649|401652|401654|401658|401660|401662|401669|401670|401676|401677|401679|401681|401682|401684|401690|401891|401894|401896|401897|401898|401899|401905|401909|401911|401913|401916|401917|401918|401920|401922|401924|401927|401934|401938|401939|401941|401942|401943|402142|402144|402156|402160|402169|402171|402174|402185|402186|402195|402200|402201|402204|402206|402213|404139|404144|404149|404501|407728|407733|407736|407738|407739|407740|407744|407749|407751|407753|407754|407757|407759|407760|407765|407768|409623|409804|409805|422132|422133|428080|428110|429016|429237|429559|429560|429561|429722|429727|429728|429729|429789|429792|429793|429794|429796|429798|429799|429800|429801|429806|429894|429896|429899|429906|429907|429908|433544|433550|437967|438666|438795|444537|444540|444543|444544|445230|445447|445448|445576|445578|445683|445684|451534|451564|451566|451577|451593|451711|451721|451725|451729|451731|451737|451817|451827|451839|451848|451859|451899|451900|451909|452027|452037|452041|452051|452068|452070|458132|458736|459156|459316|459317|459325|459331|459334|459335|459340|459345|459346|459348|459352|459456|459458|459460|459463|459465|459474|459551|459554|459555|459619|459712|459714|459720|459725|459732|459734|459735|459737|460019|460038|460039|460042|460043|460224|460225|460236|460241|460242|460244|460991|460994|461096|461108|461117|461119|463210|463214|463217|463219|463224|463229|463230|463734|463736|463740|463743|463746|464041|464043|464044|464051|464054|464059|464061|464063|464071|464073|464075|464084|464204|464207|464213|464218|464222|464224|464226|464228|464229|464540|464541|464542|464547|464549|464555|464558|464561|464563|464849|465205|465208|465213|465214|465217|465223|465228|465326|465333|465335|465338|465343|465347|465349|465432|465433|465442|465447|465451|465452|465457|465458|465460|465462|465468|465470|465475|465542|465557|465670|465675|465677|465680|465681|465686|465692|465706|465710|465716|465722|465727|466109|466112|466113|466116|466123|466124|466128|466129|466132|466137|466139|466142|466144|466149|466150|466153|466155|466156|466168|466170|466172|466177|466380|466381|466387|466391|466406|466409|466419|466421|466423|466424|466427|466428|466429|466430|466433|466436|466440|466441|466442|466444|466445|466455|466459|466462|466642|466647|466652|466653|466659|466662|466666|466668|466673|466675|466678|466680|466689|466694|466696|466698|466699|466851|466852|466856|466870|466871|466872|466877|466897|466899|466900|466901|466902|466905|466907|466912|466913|466914|466918|466919|466920|466921|466924|466925|466926|466928|466929|466930|466934|466935|466939|466942|466944|466948|466950|466953|466956|466965|466987|466990|467162|467168|467176|467179|467188|467190|467194|467197|467201|467206|467214|467218|467219|470516|470518|470523|471324|471328|471332|471760|471761|471767|471768|471770|471774|471777|471781|472071|472072|474922|474957|474964|475123|475130|475133|481382|489977|502698|502701|502993|503049|503210|512953|513303|518505|518564|518565|518579|518581|518630|518635|518660|518661|518703|518710|518712|518721|518830|518834|518841|518844|518862|518900|518905|524563|524565|524567|524570|524702|524705|524716|524938|524941|524943|524946|524947|524952|524956|525061|525063|525075|525110|525114|525115|525247|526202|526212|526540|526544|528130|528131|528133|528136|528139|528158|528166|528168|528173|528174|528505|528507|528517|528518|528637|528638|529062|529065|529070|529077|529079|529081|529083|529087|529119|529120|529132|529133|529135|529137|529138|529251|529286|529450|529451|529457|529458|529564|529576|529667|529670|529672|529674|529678|529936|529942|529947|529949|529952|529954|529957|529958|529963|529964|529968|529976|529977|530037|530042|530045|530046|530050|530056|530061|530072|530076|530082|530084|530090|530092|530096|530264|530266|530268|530275|530282|530285|530287|530293|530302|530401|530405|530409|530414|530419|530421|530425|530426|530434|530437|530444|530474|530478|530492|530494|530503|530506|530509|530510|530515|530516|530517|530521|530536|530538|530542|530547|530549|530550|530553|530572|530574|530576|530711|530715|530721|530723|530724|530728|530733|530735|530741|530744|530748|530754|530757|530758|530760|530930|530933|530935|530949|534559|534564|534593|534595|534596|534607|534611|534637|534639|535058|536353|536448|536781|537227|545632|547836|547852|547859|547862|547863|547871|547886|547892|547898|547904|547906|547924|547933|547941|547947|547951|547957|547958|547975|547983|547994|548008|548200|548201|548204|548210|548221|548260|548263|548618|548625|548634|548645|548648|548654|548657|548660|548680|548710|548728|548730|548731|548733|548743|552189|558245|558247|558249|558622|558716|558718|558722|559235|559237|559239|559247|559249|560871|560885|561042|561047|561059|561062|561064|561853|561856|561857|561859|562157|562199|562202|562212|562216|562225|562606|563221|563223|563228|563230|563232|563333|563334|563335|563337|563340|563341|563965|563967|563974|564174|564177|564179|564550|565890|566001|566002|566007|566413|566416|566418|566425|566432|566437|566442|567148|567150|567155|567294|567297|567316|567321|567324|567326|568033|568039|568042|568047|568048|568049|568058|568069|568111|568114|568115|568119|568120|568127|568130|568132|568134|568468|568469|568471|568474|568475|568481|568486|568487|568499|568502|568504|568508|568509|568512|568515|568872|568876|568877|568880|568881|568886|569011|569012|569029|569163|569172|569174|569187|569195|569196|569204|569217|569415|569431|569626|569628|569632|569638|569822|570145|570154|570162|570177|570179|570186|570192|570276|570277|570279|570280|570281|570283|570284|570290|570468|570624|570626|570628|570630|570631|570633|570645|570649|570651|570655|570658|570665|570672|570675|570676|572607|572786|572787|573443|573547|573548|573550|573552|573558|573562|573565|573612|573662|573665|574046|574049|574050|574051|574052|574055|574056|574214|574215|574216|574217|574222|574223|574224|574226|574325|574327|575340|575341|575342|575343|575797|576165|612134|612190|613056|614393|620531|620940|620941|620942|620943|623342|630399|630400|630401|630402|630403|630404|630405|630671|630672|630673|630674|630675|630676|630677|630678|630679|630680|630681|630694|630695|638222|638223|638224|638225|638226|638227|638228|638229|638230|638231|638232|638233|638234|638430|638431|638432|638433|638434|638435|638436|638437|638438|638439|638440|638441|638442|638443|638444|638445|638446|639892|639893|639894|639895|639896|639897|639898|642359|642360|642361|642362|642363|642364|642365|642366|642367|642368|642369|642370|642371|642372|642373|642374|642375|642376|642377|642378|642379|642380|642381|642382|642383|642384|642385|642386|642387|642388|642389|642390|642391|642392|642393|642394|642395|642396|642397|642398|642399|642400|642401|642402|642403|642404|642405|642406|642407|642408|642409|642410|642411|642412|642413|642414|642415|642416|642417|642418|642419|642420|642421|642422|642423|642424|642425|642426|642427|642428|642429|642430|642431|642432|642433|642434|642435|642436|642437|642438|642439|642440|642441|642442|642443|642444|642445|642446|642447|642448|642449|642450|642451|642452|642453|642454|642455|642456|643568|643569|643570|643571|643572|643573|643574|643575|643576|643577|643578|643579|643580|643581|643582|643583|643584|643585|643586|643587|643588|643589|643590|643591|643592|643593|643594|643595|643596|644641|644642|644643|644644|644645|644646|644647|644648|644649|644650|644651|644652|644653|644654|644655|644656|644657|644658|644659|644660|644661|644662|644663|644664|644665|644666|644667|644668|644669|644670|644671|644672|644673|644674|644675|645153|645154|645155|645156|645157|645158|645159|645161|645162|645163|645164|645165|645166|645167|645168|645169|645170|645171|645172|645173|645174|645175|645176|645177|645178|645179|645180|645181|645182|645183|645184|645185|645186|645187|645189|645190|645191|645192|645193|645194|645195|645196|645197|645198|645199|645200|645201|645202|645203|645204|645205|645206|645207|645208|645209|645210|645211|645212|645213|645214|645215|645216|645217|645218|645219|645220|645221|649736|649737|649738|649739|649740|649741|649742|650817|650818|651853|651926|651937|651958|652060|652308|652347|652413|652466|652468|652492|652501|652553|652597|652682|652685|652687|652772|652777|652783|652868|652887|652890|652896|652905|652950|653014|653077|653079|653178|653193|653199|653202|653319|653323|654309|654539|679905|683523|683524|683525|684097|684098|684099|684100|684247|684248|684483|684484|684486|684487|684488|684490|684560|684583|684584|684587|684588|684589|684590|684636|684637|684638|684639|684640|684641|684642|684644|684646|684958|684959|685428|685429|685430|685431|686227|686228|686229|686272|686273|686274|686275|686276|687488|687492|687493|687551|687746|687747|687748|687749|688281|688282|688283|688285|688287|688288|688289|688290|688292|688496|688568|688570|688578|688581|688582|688584|688586|688588|688595|688683|688684|688685|688686|688687|688688|688689|688690|688691|688692|688693|688696|688699|688701|688702|688704|688705|688706|688707|688708|688709|688711|688712|688714|688715|688717|688718|688719|688720|689358|689360|689361|689362|689363|689365|689366|689723|689950|690080|690081|690118|690140|690155|690156|690157|690158|690160|690162|690164|691185|692667|692668|692713|692715|692983|693478|693481|693482|693484|693485|693486|693487|693489|693490|693491|693748|693749|693852|693861|693863|693977|693980|693981|693982|693985|693988|693991|693993|693994|693995|693996|693998|694000|694797|695438|695455|695456|695616|695660|695714|695715|695716|695717|695718|695719|695720|695893|702876|702877|702880|703922|714131|714906|723669|723670|726951|726955|733653|737251|740528|740529|743880|754035|754036|754767|754770|755164|755167|755566|755567|760111|760510|767394|767520|769797|769804|770390|771212|775439|775570|776169|776246|777296|777792|778148|780085|781495|784721|785448|785451|788218|790908|790924|791405|791406|791408|791610|797034|797318|797319|797465|801682|809446|809466|809469|809492|809494|809498|815408|816308|818677|818681|818686|819263|819295|819300|820137|820171|820172|820173|820174|820175|820176|820177|820620|820621|820622|820827|820917|820918|820919|820920|820921|820922|820923|820924|820925|820926|820927|820928|820929|820930|820931|820932|820933|820934|820935|820936|820937|820938|820939|820940|820942|820943|820944|820945|820946|820947|820948|820949|820950|820951|820952|820953|820954|820955|820956|820957|820958|821565|826851|826852|826853|826854|826855|826856|826857|826858|826859|826860|826861|827203|827204|827205|827206|827207|827208|827209|827210|827211|827212|827213|827214|827215|827216|827217|827218|827222|827228|827230|827235|827236|827237|827238|827239|827240|827241|827242|827243|827244|827245|827246|836088|836089|836090|836091|836092|836093|836094|836095|836096|836097|836098|836099|836100|836331|836332|836333|836334|836335|836336|836337|836338|836339|836340|836341|836342|836343|836344|836345|836346|838223|838224|838225|838226|838227|838228|838229|838230|838231|841372|841373|841374|841375|841376|841377|841378|841379|841380|841381|841382|841383|841384|841385|841386|841387|841388|841389|841390|841391|841392|841393|841394|841395|841396|841397|841398|841399|841400|841401|841402|841403|841404|841405|841406|841407|841408|841409|841410|841411|841412|841413|841414|841415|841416|841417|841418|841419|841420|841421|841422|841423|841424|841425|841426|841427|841428|841429|841430|841431|841432|841433|841434|841435|841436|841437|841438|841439|841440|841441|841442|841443|841444|841445|841446|841447|841448|841449|841450|841451|841452|841453|841454|841455|841456|841457|841458|841459|841460|841461|841462|841463|841464|841465|841466|841467|841468|841469|841470|841471|841472|841473|841474|841475|841476|841477|841478|841479|841480|841481|841482|841483|841484|841485|841486|841487|841488|841489|841490|841491|841492|841493|841494|841495|841496|841497|841498|841499|841500|841501|841502|841503|841504|841505|841506|841507|841508|841509|841510|841511|841512|841513|841514|841515|841516|841517|841518|842749|842750|842751|842752|842753|842754|842755|842756|842757|842758|842759|842760|842761|842762|842763|842764|842765|842766|842767|842768|842769|842770|842771|843805|843806|843807|843808|843809|843810|843811|843812|843813|843814|843815|843816|843817|843818|843819|843820|843821|843822|843823|843824|843825|843826|843827|843828|843829|843830|843831|843832|843833|843834|843835|843836|843837|843838|843839|843840|843841|843842|843843|843844|843845|843846|843847|843848|843849|843850|843851|843852|843853|843854|843855|843856|843857|843858|843859|843860|843861|844508|844509|844510|844511|844512|844513|844514|844515|844516|844517|844518|844519|844520|844521|844522|844523|844524|844525|844526|844527|844528|844529|844532|844533|844534|844535|844536|844537|844538|844539|844540|844541|844542|844543|844544|844545|844546|844547|844548|844549|844550|844551|844552|844553|844554|844555|844556|844557|844558|844559|844560|844561|844562|844563|844564|844565|844566|844567|844568|844569|844570|844571|844572|844573|844574|844575|844576|844577|844578|844579|844581|844583|844584|844585|844586|844587|844588|844589|844590|844591|844592|844593|844594|844595|844597|844598|844599|844600|844601|844602|844603|849696|849697|849698|849699|849700|849701|850891|850929|851339|851551|851553|851555|851633|851693|851736|851995|851997|851999|852137|852139|852141|852143|852145|852211|852214|852219|852660|852680|852681|852683|852687|852738|852739|852785|852834|852835|852837|852841|852843|852847|858410|858469|874235|875234|875244|875251|876213|876216|876223|876741|885246|887576|901987|918010|918093|922885|922886|922887|922888|922889|922966|922967|922970|922972|922973|922974|925570|925571|925572|925647|925648|925649|925650|925651|925652|926178|926179|926180|927032|927033|927034|927035|927036|927037|927038|927039|927040|927041|927042|927043|927044|927045|927046|927047|927048|927049|927050|927051|927052|927053|927054|927055|927056|927057|927058|927059|927060|927061|927062|927063|927064|927065|927066|927067|927068|927069|927070|927071|927072|927073|927074|927433|927434|927435|927436|927437|927438|927439|927440|927441|927442|927443|927444|927445|927793|927794|927795|927796|927797|927798|927799|927800|927801|927802|927803|927804|927805|927806|927807|927808|927809|927810|927811|927812|927813|927814|928011|928012|928013|928014|928015|928017|928018|928019|928020|928021|928022|928023|928024|928025|928026|928027|928028|928029|929582|929583|929584|929585|929586|931533|931534|931535|931652|931653|931654|931655|931656|931657|931661|931662|934751|934752|934753|934833|934834|934835|934836|934837|934838|934839|934840|935465|935466|935467|936600|936601|936602|936603|936604|936605|936606|936607|936608|936609|936610|936611|936612|936613|936614|936615|936616|936617|936618|936619|936620|936621|936622|936623|936624|936625|936626|936627|937086|937087|937088|937089|937090|937091|937092|937093|937094|937095|937096|937434|937435|937436|937437|937438|937439|937440|937441|937442|937443|937444|937445|937446|937447|937448|937449|937450|937451|937452|937665|937666|937667|937668|937669|937670|937671|937672|937673|937674|937675|937676|937677|937678|937679|937681|937682|937683|937684|937685|939458|939459|939460|939906|939919|939920|940147|940302|940332|940359|940378|940944|941060|941135|941154|941155|941156|943050|943051|943052|943053|943054|943055|943203|943204|943205|943206|943207|943208|943213|943214|943215|946603|946604|946605|946690|946691|946692|946693|946694|946695|946696|946697|946698|947388|947389|947390|947391|947392|948539|948540|948541|948542|948543|948544|948545|948546|948547|948548|948549|948550|948551|948552|948553|948554|948555|948556|948557|948558|948559|948560|948561|948562|948563|948564|948565|948566|948567|948568|948569|948570|948571|948572|949036|949037|949038|949039|949040|949041|949042|949043|949044|949045|949046|949391|949392|949393|949394|949395|949396|949397|949398|949399|949642|949643|949644|949645|949646|949647|949648|949650|949651|949652|949653|949654|949655|949656|949657|949658|949659|949660|949661|949662|951630|951631|953277|953278|953279|953280|953281|953282|953283|955813|955814|955815|955816|955817|955907|955908|955909|955910|955911|955912|956449|956450|956451|956452|957204|957205|957206|957207|957208|957209|957210|957211|957212|957213|957214|957215|957216|957217|957218|957219|957220|957221|957525|957526|957527|957528|957754|957755|957756|957757|957758|957759|957760|957761|957926|957927|957928|957929|957930|957931|957932|957933|957934|957935|957936|957937|957938|957939|957940|957941|957942|957943|957944|957945|957946|957947|957948|957949|957950|957951|957952|957953|957954|957955|957956|957957|957958|957959|957960|957961|957962|957963|957964|957965|957966|957967|957968|957969|957970|959175|959662|960089|960090|960091|960092|960093|960123|960186|960187|960188|960493|960494|960685|960707|960828|960860|960861|960862|960863|960864|960865|960866|960867|960868|970358", + "text": "Fanconi anemia" + }, + { + "baseId": "18488|18489|18490|18491|18492|142515|166367|166368|166369|262052|266582|335812|335816|335818|345515|345516|345522|345523|345525|350125|350129|350131|350132|351175|351176|351178|626012|684889|791992|805115|806425|806426|886285|886286|886287|886288|886289|886290|886291|886292|886293|886294|886295|886296|886297|886298", + "text": "Kallmann syndrome 3" + }, + { + "baseId": "18496|18497|131958|135815|181436|186187|213100|213101|213102|241738|241739|319416|319420|319422|319423|319428|319429|319432|319440|319448|319449|319453|327971|327972|327994|328001|328002|328010|328011|334295|334302|334303|334304|334305|334312|334313|334314|334325|334326|334330|334339|334343|336018|336019|336029|336031|336032|336038|336039|336040|336041|336050|336057|373533|399424|400175|409023|462907|463264|463266|463616|463846|463848|504262|505178|527718|527721|528075|567565|620470|641925|684417|840877|871134|871135|871136|871137|871138|871139|871140|871141|871142|871143|871144|871145|871146|871147|871148|871149|871150|871151|871152|871153|871154|871155|871156|871157|871158|871159|871160|871161|871162|871163|871164|871165|872328", + "text": "Troyer syndrome" + }, + { + "baseId": "18498|18499|18500|18501|18502|18503|18504|18505|18505|18506|18506|18507|18507|18509|18511|18513|18513|18515|18519|18520|18521|18522|48596|98664|98665|98665|125923|213987|215434|254136|264422|264422|264534|268523|273854|274086|274286|274286|313856|313863|313867|313877|313885|313886|313886|313889|320069|320084|320102|320108|320134|320135|320166|320197|326246|326248|326255|326256|326258|326272|326276|327203|327206|327207|327222|327224|327242|327259|327276|327276|359933|359933|359935|360004|360006|360034|363631|363633|363634|363635|363636|363637|371403|408334|424510|424511|424512|424513|424514|424515|424516|424517|424518|424519|424520|424521|424521|424522|424523|424524|424525|424525|424526|424527|424528|424529|424530|424531|424532|424533|424534|424535|424536|424537|424538|424539|424540|424541|424542|424543|424544|424545|424545|424546|424547|424548|424548|424549|424550|432304|432305|461049|461052|461052|461054|461056|461519|461520|461523|461844|461848|485940|485941|485942|485943|485943|485944|485945|485946|511911|525668|525674|525994|526296|526626|537152|550137|550336|550337|550338|550339|550340|550341|550342|550343|564093|565700|567201|567201|567202|567205|567205|571142|609013|624856|639953|639953|639954|639955|639955|639956|639957|652056|652159|652188|679779|752647|787757|788978|788979|788980|788981|788982|788983|788984|788985|788986|788987|788988|788989|788990|788991|788992|788993|788994|788995|788996|788997|788998|788999|789000|789001|789002|789003|789004|789005|789006|789007|789008|789009|789010|789011|789012|789013|789014|789015|789017|789018|789018|789019|789020|789021|789022|789023|789024|789025|789026|789027|789028|789030|789031|789032|789033|789034|789035|789036|789037|789038|789039|789040|789040|789041|789042|789043|789044|789045|789046|789047|789048|789049|789050|789051|789052|789053|789054|789055|789056|789057|789058|789059|789060|789061|789062|789063|789064|789064|789065|789066|789067|789068|789069|789070|789071|789072|789073|789074|789075|789076|789077|789078|789079|789080|789081|791127|791128|822053|838291|838292|838293|838294|838295|838296|838297|838298|852651|867828|867836|867843|867850|867856|926195|935491|935492|947410|947411|956463|956464|961905|963159", + "text": "Aniridia 1" + }, + { + "baseId": "18501", + "text": "Cataracts, congenital, with late-onset corneal dystrophy" + }, + { + "baseId": "18502", + "text": "ANTERIOR SEGMENT DYSGENESIS 5, PETERS ANOMALY SUBTYPE" + }, + { + "baseId": "18505|18506|18507|18513|18515|22776|22778|22783|39180|39724|79358|79359|79361|98344|98664|98665|136471|177657|177659|177660|177661|177947|181382|193745|195045|223604|223605|223616|223620|223629|223633|223639|223653|227244|251311|264422|267620|268523|274086|274286|286180|286182|286193|286194|286198|286203|286219|286222|286225|286231|286234|286936|286937|286939|286940|286946|286948|286949|286950|286952|286953|286957|286958|286959|286962|286963|286972|286981|286985|289251|289253|289257|289263|289265|289268|289274|289275|289276|289286|289289|289290|289291|289292|289293|289624|289628|289631|289633|289634|289635|289639|289655|289656|289660|289671|289672|292026|292032|292033|293465|296770|296771|296774|296776|296778|296779|296782|296783|296786|313870|313886|320062|320088|320089|320100|320112|320165|320174|320199|327204|327217|327218|327272|327276|359933|360034|371403|404760|424521|424525|424545|424548|461049|461052|461054|461056|461519|461520|461523|461844|461848|485943|492426|525668|525674|525994|526296|526626|550314|564093|565700|567201|567202|567205|571142|620087|639953|639954|639955|639956|639957|652056|652159|652188|691154|691155|691156|752647|781326|787757|789018|789040|789064|790957|822053|838291|838292|838293|838294|838295|838296|838297|838298|852651|884813|884814|884815|884816|884817|884818|884819|884820|884821|884822|884823|884824|884825|884826|884827|884828|884829|884830|884831|884832|884833|884834|884835|884836|884837|884838|884839|884840|884841|884842|884843|884844|884845|884846|884847|884848|884849|884850|884851|884852|884853|884854|884855|884856|884857|884858|884859|884860|884861|884862|884863|884864|889930|889931|889932|889933|889934|889935|889936|889937|889938|889939|889940|889941|889942|889943|889944|889945|889946|889947|889948|889949|889950|889951|889952|889953|889954|889955|889956|889957|889958|889959|889960|889961|889962|889963|889964|889965|889966|889967|889968|889969|889970|891736|891737|926195|935491|935492|947410|947411|956463|956464|976012|976013", + "text": "Irido-corneo-trabecular dysgenesis" + }, + { + "baseId": "18508", + "text": "Keratitis, autosomal dominant" + }, + { + "baseId": "18509|18518|215434|254136|274286|313856|313857|313862|313863|313867|313870|313872|313873|313874|313877|313885|313886|313888|313889|320061|320062|320069|320071|320080|320084|320087|320088|320089|320100|320102|320108|320111|320112|320114|320134|320135|320138|320142|320143|320145|320146|320147|320163|320165|320166|320167|320174|320197|320198|320199|326222|326244|326245|326246|326248|326251|326252|326255|326256|326257|326258|326270|326272|326273|326276|326277|327197|327203|327204|327206|327207|327214|327217|327218|327222|327223|327224|327241|327242|327259|327263|327272|327273|327276|327282|327283|612908|624856|789029|867820|867821|867822|867823|867824|867825|867826|867827|867828|867829|867830|867831|867832|867833|867834|867835|867836|867837|867838|867839|867840|867841|867842|867843|867844|867845|867846|867847|867848|867849|867850|867851|867852|867853|867854|867855|867856|867857|867858|867859", + "text": "Foveal hypoplasia and presenile cataract syndrome" + }, + { + "baseId": "18510", + "text": "Aniridia, atypical" + }, + { + "baseId": "18511", + "text": "Foveal hypoplasia 1 with cataract" + }, + { + "baseId": "18512", + "text": "ANTERIOR SEGMENT DYSGENESIS 5, MULTIPLE SUBTYPES" + }, + { + "baseId": "18512", + "text": "Foveal hypoplasia 1 with or without anterior segment anomalies" + }, + { + "baseId": "18513|176785|225852|263283|263314|263410|360879|363377|513989|514048|514112|514188|514221", + "text": "Hypertelorism" + }, + { + "baseId": "18514|18516|625874|919355", + "text": "Coloboma of optic disc" + }, + { + "baseId": "18515|512990", + "text": "Optic nerve hypoplasia, bilateral" + }, + { + "baseId": "18516|22778|22783|79359|79360|79362|79363|79368|125921|361130|424443|625776|682221|682222|682223", + "text": "Congenital ocular coloboma" + }, + { + "baseId": "18517", + "text": "Optic nerve aplasia, bilateral" + }, + { + "baseId": "18523|18524|18526|18526|18527|18532|18532|18533|18533|18536|18536|18539|18539|18545|24381|24385|26728|26729|26730|26733|50286|50286|89226|89228|100999|101000|138239|138240|138241|139192|139192|139193|139194|139194|139195|141193|178637|190617|190617|190618|190618|195334|195751|195751|195752|195752|215614|241126|241127|241127|241128|241130|241130|241131|241132|241133|241134|241134|241135|241135|241136|241136|241137|241137|241138|241138|241139|241139|241140|243717|243719|243740|243741|243743|243744|243745|243746|243747|243748|243749|243750|243751|243752|243753|243754|254138|254138|254142|254142|254144|254144|254145|254145|254146|254146|254147|257755|259981|274962|313892|313893|313904|313905|313914|313915|313918|313918|313927|313928|313928|313933|313934|313935|313940|320204|320213|320218|320219|320234|320257|320268|320269|320269|320284|320287|326278|326282|326284|326289|326291|326292|326294|326294|326297|326298|327285|327286|327296|327299|327300|327313|327320|327325|327329|327331|327340|327340|327344|327344|377785|389922|398164|398167|398169|398169|398176|398176|398177|398179|398189|398197|398229|398232|398234|398235|398240|398242|398250|398251|398583|398585|398586|398587|398591|398608|398608|398611|398612|398614|398623|398623|398626|398646|398652|398668|398668|398680|398687|398688|398691|398693|398699|404008|404071|404073|404077|404084|404093|404095|404099|404105|404107|404110|404118|404441|404442|404443|404444|404445|404447|404486|404487|404489|420986|432382|444795|444795|460431|461059|461061|461063|461070|461072|461077|461078|461080|461081|461083|461090|461238|461243|461244|461248|461254|461256|461260|461262|461264|461266|461269|461277|461281|461285|461285|461287|461288|461294|461527|461531|461532|461545|461547|461548|461559|461560|461562|461564|461570|461571|461853|461855|461867|461869|461875|461881|461883|461887|470476|470481|470486|470494|470495|470498|470499|470501|471260|471263|471264|471266|471271|471694|471697|471701|471704|471709|471714|471715|471717|471718|471720|471989|472054|472055|472056|472057|472058|472059|472060|472061|472062|472063|503257|503257|507729|508494|525996|526132|526135|526140|526148|526152|526155|526156|526160|526161|526164|526166|526170|526172|526174|526175|526181|526184|526186|526189|526192|526303|526305|526308|526319|526320|526324|526326|526330|526332|526335|526337|526341|526342|526353|526359|526359|526363|526364|526369|526371|526632|526635|526639|526643|526648|526650|526661|526662|534497|534500|534502|534506|534510|534514|534516|534518|534519|534524|534527|534529|534603|534603|534605|534619|534621|535017|535018|535019|535020|535021|535023|535024|535027|535029|535033|535035|564594|564595|564597|564598|564602|564603|564607|565708|565714|565716|565722|565726|567207|567213|567214|567219|567224|567228|567233|570569|570569|570575|570581|570588|570594|570598|570612|572199|572202|572203|572210|572220|572223|573436|573532|573537|573541|573542|573545|573546|573551|574276|574278|574280|574282|574284|574286|574288|574290|574291|575326|575327|575328|575329|575330|575331|575332|575841|575842|575843|575843|575844|575845|575846|575847|575848|575849|575850|575851|575852|580925|611457|639958|639959|639960|639961|639962|639963|639964|639965|639966|639967|639968|639969|639970|639971|639972|639973|639974|639975|639976|639977|639978|639979|639980|639981|639982|639983|639984|639985|639986|639987|639988|639989|639990|639991|639992|639993|639994|639995|639996|639996|639997|639998|649681|649682|649683|649684|649685|649686|649687|649688|649689|649690|649691|649692|649693|649694|649695|649696|649697|649698|649699|649700|649701|649702|649703|649704|649705|649706|649707|649708|652058|652119|652190|652191|652534|653298|653736|653774|684256|684257|684258|684945|684946|684947|685480|685481|685482|687767|687768|687770|687771|687772|687773|687774|687775|687776|689336|689337|689338|689339|689340|689341|689342|693007|693008|693009|693011|693012|693013|694783|695508|695509|695511|695890|706108|712789|724403|737941|737942|737943|737943|737944|752650|752652|768419|768421|768422|768424|768427|773762|773766|777946|779535|783981|783983|783984|786702|796568|820359|820360|820361|821476|821478|821479|821555|821556|821557|822216|838299|838300|838301|838302|838303|838304|838305|838306|838307|838308|838309|838310|838311|838312|838313|838314|838315|838317|838318|838319|838320|838321|838321|838322|838323|838324|838325|838326|838327|838328|838329|838330|838331|838331|838332|838333|838334|838335|838336|838337|838338|838339|838340|838341|838342|838343|838344|838345|838346|838347|838348|838349|838350|849620|849621|849622|849623|849624|849625|849626|849627|849628|849629|849630|849631|849632|849633|849634|849635|849636|849637|849638|849639|849640|849641|849642|849643|849644|849645|849646|849647|849648|849649|849650|849651|849652|849653|849654|849655|849656|849657|849658|849659|849660|849661|851431|852465|852963|852967|852968|867860|867861|867862|867863|867864|867865|867866|867867|867868|867869|904718|919976|920999|926196|926197|926198|926199|926200|926201|926202|926203|926204|926205|926206|926207|926208|926209|926210|926211|926212|926213|929564|929565|929566|929567|929568|929569|929570|929571|929572|935493|935494|935495|935496|935497|935498|935499|935500|935501|935502|935503|935504|935505|935506|935507|935508|935509|935510|935511|935512|935513|939428|939429|939430|939431|939432|939433|939434|939435|939436|939437|939438|939439|939440|939441|940211|940212|940542|940994|947412|947413|947414|947415|947416|947417|947418|947419|947420|947421|947422|947423|947424|947425|947426|947427|947428|947429|947431|951598|951599|951600|951601|951602|951603|951604|951605|951606|951607|951608|951609|951610|951611|951612|951613|951614|956465|956466|956467|956468|956469|956470|956471|956472|956473|956474|956475|956476|959169|959170|959171|959172|967153", + "text": "Wilms tumor 1" + }, + { + "baseId": "18525|18526|18527|18532|18532|18533|18533|18536|18539|18539|18543|50286|89226|89228|89229|139192|139193|139194|139195|178637|190617|190618|195751|195752|241126|241127|241128|241130|241131|241132|241133|241134|241135|241136|241137|241138|241139|241140|254138|254142|254144|254145|254146|259981|274962|313918|313928|320269|326294|327340|327344|389922|398164|398167|398169|398176|398177|398179|398189|398197|398229|398232|398234|398235|398240|398242|398250|398251|398583|398585|398586|398587|398591|398608|398611|398612|398614|398623|398626|398646|398652|398668|398680|398687|398688|398691|398693|398699|444795|460431|461059|461061|461063|461070|461072|461077|461078|461080|461081|461083|461090|461238|461243|461244|461248|461254|461256|461260|461262|461264|461266|461269|461277|461281|461285|461287|461288|461294|461527|461531|461532|461545|461547|461548|461559|461560|461562|461564|461570|461571|461853|461855|461867|461869|461875|461881|461883|461887|503257|525996|526132|526135|526140|526148|526152|526155|526156|526160|526161|526164|526166|526170|526172|526174|526175|526181|526184|526186|526189|526192|526303|526305|526308|526319|526320|526324|526326|526330|526332|526335|526337|526341|526342|526353|526359|526363|526364|526369|526371|526632|526635|526639|526643|526648|526650|526661|526662|564594|564595|564597|564598|564602|564603|564607|565708|565714|565716|565722|565726|567207|567213|567214|567219|567224|567228|567233|570569|570575|570581|570588|570594|570598|570612|575843|639958|639959|639960|639961|639962|639963|639964|639965|639966|639967|639968|639969|639970|639971|639972|639973|639974|639975|639976|639977|639978|639979|639980|639981|639982|639983|639984|639985|639986|639987|639988|639989|639990|639991|639992|639993|639994|639995|639996|639997|639998|652058|652119|652190|652191|652534|684256|684257|684258|687767|687768|687770|687771|687772|687773|687774|687775|687776|693007|693008|693009|693011|693012|693013|695508|695509|695511|712789|724403|737941|737942|737943|737944|752650|752652|768419|768421|768422|768424|768427|777946|779535|783981|783983|783984|796568|820359|820360|820361|838299|838300|838301|838302|838303|838304|838305|838306|838307|838308|838309|838310|838311|838312|838313|838314|838315|838317|838318|838319|838320|838321|838322|838323|838324|838325|838326|838327|838328|838329|838330|838331|838332|838333|838334|838335|838336|838337|838338|838339|838340|838341|838342|838343|838344|838345|838346|838347|838348|838349|838350|851431|926196|926197|926198|926199|926200|926201|926202|926203|926204|926205|926206|926207|926208|926209|926210|926211|926212|926213|935493|935494|935495|935496|935497|935498|935499|935500|935501|935502|935503|935504|935505|935506|935507|935508|935509|935510|935511|935512|935513|940211|940212|940994|947412|947413|947414|947415|947416|947417|947418|947419|947420|947421|947422|947423|947424|947425|947426|947427|947428|947429|947431|956465|956466|956467|956468|956469|956470|956471|956472|956473|956474|956475|956476|961571", + "text": "Frasier syndrome" + }, + { + "baseId": "18526|18526|18527|18527|18528|18529|18530|18531|18532|18532|18533|18534|18535|18536|18536|18537|18539|50286|89226|89228|139192|139193|139194|139195|178637|190617|190618|195751|195752|226222|226223|241126|241127|241128|241130|241130|241131|241132|241133|241134|241135|241136|241137|241138|241139|241140|254138|254142|254144|254145|254146|259981|274962|313918|313928|320269|326294|326297|327340|327344|389922|398164|398167|398169|398176|398177|398179|398189|398197|398229|398232|398234|398235|398240|398242|398250|398251|398583|398585|398586|398587|398591|398608|398611|398612|398614|398623|398623|398626|398646|398652|398668|398680|398687|398688|398691|398693|398699|444795|444795|460431|461059|461061|461063|461070|461072|461077|461078|461080|461081|461083|461090|461238|461243|461244|461248|461254|461256|461260|461262|461264|461266|461269|461277|461281|461285|461287|461288|461294|461527|461531|461532|461545|461547|461548|461559|461560|461562|461564|461570|461571|461853|461855|461867|461869|461875|461881|461883|461887|503257|525996|526132|526135|526140|526148|526152|526155|526156|526160|526161|526164|526166|526170|526172|526174|526175|526181|526184|526186|526189|526192|526303|526305|526308|526319|526320|526324|526326|526330|526332|526335|526337|526341|526342|526353|526359|526359|526363|526364|526369|526371|526632|526635|526639|526643|526648|526650|526661|526662|537657|564594|564595|564597|564598|564602|564603|564607|565708|565714|565716|565722|565726|567207|567213|567214|567219|567224|567228|567233|570569|570575|570581|570588|570594|570598|570612|575841|575843|575847|575849|575851|612154|639958|639959|639960|639961|639962|639963|639964|639965|639966|639967|639968|639969|639970|639971|639972|639973|639974|639975|639976|639977|639978|639979|639980|639981|639982|639983|639984|639985|639986|639987|639988|639989|639990|639991|639992|639993|639994|639995|639996|639997|639998|652058|652119|652190|652191|652534|684256|684257|684258|687767|687768|687770|687771|687772|687773|687774|687775|687776|693007|693008|693009|693011|693012|693013|695508|695509|695511|712789|724403|737941|737942|737943|737944|752650|752652|768419|768421|768422|768424|768427|777946|779535|783981|783983|783984|791129|791130|791131|791132|796568|798642|820359|820360|820361|838299|838300|838301|838302|838303|838304|838305|838306|838307|838308|838309|838310|838311|838312|838313|838314|838315|838317|838318|838319|838320|838321|838322|838323|838324|838325|838326|838327|838328|838329|838330|838331|838332|838333|838334|838335|838336|838337|838338|838339|838340|838341|838342|838343|838344|838345|838346|838347|838348|838349|838350|851431|926196|926197|926198|926199|926200|926201|926202|926203|926204|926205|926206|926207|926208|926209|926210|926211|926212|926213|935493|935494|935495|935496|935497|935498|935499|935500|935501|935502|935503|935504|935505|935506|935507|935508|935509|935510|935511|935512|935513|940211|940212|940994|947412|947413|947414|947415|947416|947417|947418|947419|947420|947421|947422|947423|947424|947425|947426|947427|947428|947429|947431|956465|956466|956467|956468|956469|956470|956471|956472|956473|956474|956475|956476|961571", + "text": "Drash syndrome" + }, + { + "baseId": "18526|18544|139192|139194|190617|190618|195751|195752|241127|241134|241135|241136|241137|241138|241139|254138|254142|254144|254145|254146|254147|313892|313893|313895|313897|313901|313904|313905|313913|313914|313915|313918|313927|313928|313932|313933|313934|313935|313940|320204|320206|320208|320209|320213|320216|320218|320219|320220|320227|320232|320234|320235|320257|320268|320269|320282|320284|320286|320287|320288|320289|326278|326279|326280|326282|326283|326284|326285|326288|326289|326290|326291|326292|326294|326296|326297|326298|327285|327286|327287|327288|327296|327299|327300|327313|327320|327325|327326|327329|327331|327340|327344|327346|327353|398169|398176|398608|398668|503257|526359|737943|838321|838331|867860|867861|867862|867863|867864|867865|867866|867867|867868|867869", + "text": "Meacham syndrome" + }, + { + "baseId": "18526|18527|18529|18532|18534|18539|18541|139192|139194|190617|190618|190618|195751|195752|195752|241127|241134|241135|241136|241137|241138|241139|254138|254142|254144|254144|254145|254146|254147|313892|313893|313895|313897|313901|313904|313905|313913|313914|313915|313918|313927|313928|313932|313933|313934|313935|313940|320204|320206|320208|320209|320213|320216|320218|320219|320220|320227|320232|320234|320235|320257|320268|320269|320282|320284|320286|320287|320288|320289|326278|326279|326280|326282|326283|326284|326285|326288|326289|326290|326291|326292|326294|326296|326297|326298|327285|327286|327287|327288|327296|327299|327300|327313|327320|327325|327326|327329|327331|327340|327344|327346|327353|389922|398169|398176|398608|398668|432306|503257|513089|513090|526359|537657|590302|590303|623307|737943|838321|838331|861038|867860|867861|867862|867863|867864|867865|867866|867867|867868|867869|966658|966659", + "text": "Nephrotic syndrome, type 4" + }, + { + "baseId": "18526|18532|18533|18536|18539|50286|89226|89228|139192|139193|139194|139195|178637|190617|195751|215434|241126|241127|241128|241130|241131|241132|241133|241134|241135|241136|241137|241138|241139|241140|254136|254138|254142|254145|254146|259981|274286|274962|313856|313857|313862|313863|313867|313870|313872|313873|313874|313877|313885|313886|313888|313889|313895|313897|313901|313913|313918|313928|313932|320061|320062|320069|320071|320080|320084|320087|320088|320089|320100|320102|320108|320111|320112|320114|320134|320135|320138|320142|320143|320145|320146|320147|320163|320165|320166|320167|320174|320197|320198|320199|320206|320208|320216|320220|320227|320232|320235|320269|320282|320286|320288|320289|326222|326244|326245|326246|326248|326251|326252|326255|326256|326257|326258|326270|326272|326273|326276|326277|326279|326280|326283|326285|326288|326290|326294|326296|327197|327203|327204|327206|327207|327214|327217|327218|327222|327223|327224|327241|327242|327259|327263|327272|327273|327276|327282|327283|327288|327326|327340|327344|327346|327353|363632|389922|398164|398167|398169|398176|398177|398179|398189|398197|398229|398232|398234|398235|398240|398242|398250|398251|398583|398585|398586|398587|398608|398611|398612|398614|398623|398626|398646|398652|398668|398680|398687|398688|398691|398693|398699|444795|460431|461059|461061|461063|461070|461072|461077|461078|461080|461081|461083|461090|461238|461243|461244|461248|461254|461256|461260|461262|461264|461266|461269|461277|461281|461285|461287|461288|461294|461527|461531|461532|461545|461547|461548|461559|461560|461562|461564|461570|461571|461853|461855|461867|461869|461875|461881|461883|461887|503257|525996|526132|526135|526140|526148|526152|526155|526156|526160|526161|526164|526166|526170|526172|526174|526175|526181|526184|526186|526189|526192|526303|526305|526308|526319|526320|526324|526326|526330|526332|526335|526337|526341|526342|526353|526359|526363|526364|526369|526371|526632|526635|526639|526643|526648|526650|526661|526662|564594|564595|564597|564598|564602|564603|564607|565708|565714|565716|565722|565726|567207|567213|567214|567219|567224|567228|567233|570569|570575|570581|570588|570594|570598|570612|575843|613758|613865|639958|639959|639960|639961|639962|639963|639964|639965|639966|639967|639968|639969|639970|639971|639972|639973|639974|639975|639976|639977|639978|639979|639980|639981|639982|639983|639984|639985|639986|639987|639988|639989|639990|639991|639992|639993|639994|639995|639996|639997|639998|652058|652119|652190|652191|652534|684256|684257|684258|687767|687768|687770|687771|687772|687773|687774|687775|687776|693007|693008|693009|693011|693012|693013|695508|695509|695511|712789|724403|737941|737942|737943|737944|752650|752652|768419|768421|768422|768424|768427|777946|779535|783981|783983|783984|796568|820359|820360|820361|838299|838300|838301|838302|838303|838304|838305|838306|838307|838308|838309|838310|838311|838312|838313|838314|838315|838317|838318|838319|838320|838321|838322|838323|838324|838325|838326|838327|838328|838329|838330|838331|838332|838333|838334|838335|838336|838337|838338|838339|838340|838341|838342|838343|838344|838345|838346|838347|838348|838349|838350|851431|867828|867836|867842|867843|867849|867850|867856|926196|926197|926198|926199|926200|926201|926202|926203|926204|926205|926206|926207|926208|926209|926210|926211|926212|926213|935493|935494|935495|935496|935497|935498|935499|935500|935501|935502|935503|935504|935505|935506|935507|935508|935509|935510|935511|935512|935513|940211|940212|940994|947412|947413|947414|947415|947416|947417|947418|947419|947420|947421|947422|947423|947424|947425|947426|947427|947428|947429|947431|956465|956466|956467|956468|956469|956470|956471|956472|956473|956474|956475|956476", + "text": "Wilms tumor, aniridia, genitourinary anomalies, and mental retardation syndrome" + }, + { + "baseId": "18526|20399|20400|20404|20407|21119|71146|76004|178865|178866|186603|186605|249552|249553|249555|249558|249560|278593|278595|440413|496597|540658|540697|540699|540708|540722|587964|672259|672260|672261|672262|731895|731896|745857|758855|761348|774413|794271|794272|801218|862851|977467|977468|977469", + "text": "Steroid-resistant nephrotic syndrome" + }, + { + "baseId": "18526|18539|20399|21119|21120|71146|76004|186603|801123", + "text": "Nephrotic range proteinuria" + }, + { + "baseId": "18532|18539|178740|224420|224550|496597", + "text": "Hereditary nephrotic syndrome" + }, + { + "baseId": "18538|21289|21302", + "text": "Mesothelioma" + }, + { + "baseId": "18546|18548|18549|18550|98626|135259|135260|135261|166175|177328|177328|190732|191490|195864|212119|237153|238354|267761|271582|272606|281552|281554|281560|281574|281578|282227|282229|282230|283553|283553|283554|283555|283689|283710|283715|427871|446900|448554|448755|490032|557488|585870|614128|880833|880834|880835|880836|880837|880838|880839|880840|880841|880842|880843|880844|880845|882778|882779|882780|882781|962849", + "text": "Nephronophthisis 1" + }, + { + "baseId": "18549|620733", + "text": "NPHP1-Related Disorders" + }, + { + "baseId": "18550|98626|135259|135260|135261|166175|177328|177328|190732|191490|195864|212119|237153|271582|272606|281552|281554|281560|281574|281578|282227|282229|282230|283553|283553|283554|283555|283689|283710|283715|448554|490032|557488|585870|880833|880834|880835|880836|880837|880838|880839|880840|880841|880842|880843|880844|880845|882778|882779|882780|882781", + "text": "Senior-Loken syndrome 1" + }, + { + "baseId": "18550|98626|135259|135260|135261|166175|177328|177328|190732|191490|195864|212119|214377|237153|271582|272606|281552|281554|281560|281574|281578|282227|282229|282230|283553|283553|283554|283555|283689|283710|283715|448554|490032|557488|585870|628412|880833|880834|880835|880836|880837|880838|880839|880840|880841|880842|880843|880844|880845|882778|882779|882780|882781|961829|970705", + "text": "Joubert syndrome 4" + }, + { + "baseId": "18551|18552|18553|18554|18555|18556|296509|314504|314505|314507|314508|314512|314516|321162|321164|321167|321168|321185|321186|321187|321191|321195|321196|321199|321203|321204|321206|321207|321208|327250|327257|327258|327262|327270|327271|327274|327275|327298|327309|327311|327312|328328|328329|328330|328332|328333|328334|328335|328343|328346|328349|328350|328366|328368|328376|328377|328378|620411|620412|620413|620834|724567|738096|868217|868218|868219|868220|868221|868222|868223|868224|868225|868226|868227|868228|868229|868230|868231|868232|868233|868234|868235|868236|868237|868238|868239|868240|868241|868668", + "text": "Familial renal hypouricemia" + }, + { + "baseId": "18555", + "text": "Hereditary renal hypouricemia" + }, + { + "baseId": "18557|18558|18559|18560|18561|18562|18563|18564|18565|18567|18568|177842|185766|185787|191234|265996|266128|271357|276137|276378|276690|276694|276709|493520|514997|515062|556597|626680|626681|683277|683278|683279|683280|683282|683283|683284|685552|685555|685557|685558|685559|780282|977421", + "text": "Homocystinuria due to MTHFR deficiency" + }, + { + "baseId": "18557|18559|18560|18566|18567|185757|185758|185759|185760|185761|185762|185763|185764|185765|185766|185767|185768|185769|185770|185771|185772|185773|185774|185775|185776|185777|185778|185779|185780|185781|185782|185783|185784|185785|185786|185787|185788|185789|185790|185791|185792|185793|185794|185795|185796|185797|185798|190849|190849|193590|193591|196274|204439|204440|204441|224593|224594|224595|224596|224597|224598|265996|266128|270484|270967|271357|276136|276137|276378|276690|447010|447105|447135|489913|490856|491168|493520|513228|513229|514997|515060|515062|538939|556564|556597|556859|557004|581743|584639|626680|626681|626682|626683|626684|626685|626686|626687|626688|683277|683278|683279|683280|683281|683282|683283|683284|685085|685551|685552|685553|685554|685555|685557|685558|685559|685560|685561|689625|696017|706619|718127|718128|731622|745603|761103|761105|761107|774354|780282|788723|789826|816433|822590|822591|822592|822593|822594|850716|918546|929991|929992|952030|952031|961747|964643|969111|972777|983738", + "text": "Homocystinuria due to methylene tetrahydrofolate reductase deficiency" + }, + { + "baseId": "18559|18560", + "text": "MTHFR deficiency, thermolabile type" + }, + { + "baseId": "18559|18560|22068|22280|22281|22283|22283|27817|27818|27820|27820|27821|27822|27824|27830|27830|27831|27831|28582|28583|28584|28585|28586|28587|28588|28590|28885|28891|28893|28894|28895|28896|28899|28901|28902|28904|28905|29000|33493|38851|45429|45429|45430|45430|48183|48215|48216|48217|50036|50037|50038|50039|50040|50042|50043|50044|50045|50209|50210|50214|50215|50229|50230|50231|50232|50232|50233|50235|50236|50237|50238|50239|50240|50241|53809|53812|54289|86365|138360|138361|138363|138364|138366|138367|138368|138369|138751|138753|138754|138755|138756|138757|138758|138759|138760|138761|138763|138764|138765|138766|138767|138769|138931|138933|141992|141994|142003|142007|150487|151597|151825|152351|152367|152477|152478|152541|152618|152741|167450|167451|167452|167453|167454|171051|171052|171053|171097|171098|172353|172491|172492|172493|181595|181596|181598|181599|181600|181603|181604|181605|181606|181607|181608|181609|181610|181611|181613|181614|181616|181616|181617|181618|181619|181620|181621|181622|181623|181623|181624|181625|181627|181628|187698|194371|195315|196493|196494|215302|215302|221084|221085|221459|221460|221462|221463|221464|221465|221466|221467|221468|221469|221470|221471|221472|221473|221474|224676|227193|232167|232168|232173|232175|232176|232181|232183|232187|238107|238108|238109|238158|238159|238160|238161|238162|238163|238164|238164|238165|238166|238167|238168|238169|238170|238171|238173|238174|238175|238176|238177|238178|238179|238180|238181|238181|238183|238184|238185|238186|238186|238187|238187|238188|238189|238190|238191|238192|238193|238194|239368|239369|239370|239372|239373|239374|239375|239376|239377|239378|239379|239380|239381|239382|239383|239384|239385|239386|239387|239388|239389|239390|239391|239393|239394|239395|239397|239398|239399|239400|239401|239402|239403|239404|239405|239406|239407|239408|239409|239410|239411|239412|239413|239414|239415|239416|239417|239418|239419|239420|239421|239425|239426|239427|239428|239429|239430|239431|239432|239433|239434|239435|239436|239437|239438|239439|239440|239441|239442|239443|239444|239444|239445|239446|239447|239448|239449|239450|239451|239453|239454|239455|239456|239457|239458|239459|239460|239461|239462|239463|239464|239465|239466|239467|239468|239469|239470|239471|239472|239473|239474|239474|239475|239476|239477|239478|239479|239480|239481|239482|239483|239484|239485|239486|239487|239488|239489|239490|239491|239492|239493|239494|239495|239496|239497|239498|239498|239499|248478|251491|251492|251493|251495|251496|251497|251499|251500|251502|251504|251505|277358|277948|278420|293512|293521|293522|293526|293533|293538|293539|293544|293554|293556|293562|293567|293568|293572|293573|293576|293580|293581|293582|293587|293588|293595|293596|293612|294903|294904|294927|294932|294935|294941|294942|294943|294946|294948|294963|294970|294972|294981|294984|294985|294986|294995|294997|295030|295032|295038|295039|295040|298604|298605|298606|298612|298613|298632|298634|298642|298643|298647|298650|298651|298654|298658|298659|298660|298661|298662|298663|298670|298671|298672|298673|298674|298675|298678|298679|298680|298681|298683|298688|298691|298699|298700|298701|298703|298704|298711|353670|358695|358697|358698|358699|358701|358701|358768|359203|362780|362781|362787|362788|362790|362791|362793|362795|362798|362800|362801|362802|362803|362804|362809|362810|362811|362812|362934|362935|362937|362980|363128|363129|363130|363132|363133|363233|363609|363610|363611|363612|363613|363614|363615|390713|390718|390721|390733|390847|390853|390856|390861|390863|390864|390865|390866|390867|390868|390869|390870|390871|390872|390873|390874|390875|390876|390877|390878|390879|390880|390881|390882|390883|390884|390885|390886|390887|390888|390889|390890|390891|390892|390893|390893|390894|390895|390898|390899|390900|390901|390902|390903|390904|390905|390906|390907|390908|390909|390910|390911|390912|390913|390914|390915|390916|390917|390918|390919|390920|390921|390922|390923|390924|390925|390926|390927|390928|390929|390930|390931|390932|390934|390935|390936|390939|390940|393835|393922|393929|393930|393935|393936|393938|393939|393940|393942|393943|393948|393949|393951|393956|393957|393958|393959|393960|393962|393964|393968|393969|393971|393973|393975|393977|393980|393981|393983|393986|393988|393991|393992|393996|394000|394001|394002|394005|394006|394010|394011|394013|394014|394015|394019|394020|394021|394022|394026|394029|394032|394033|394034|394036|394038|394039|394041|394042|394048|394049|394051|394052|394053|394056|394062|394064|394065|394067|394068|394069|394070|394071|394073|394077|394078|394079|394080|394081|394083|394084|394086|394087|394088|394095|394098|394098|394101|394102|394103|394105|394106|394109|394110|394112|394113|394115|394119|394121|394122|394124|394125|394128|394131|394132|394135|394149|394153|394155|394156|394160|394168|394169|394172|394174|394182|394185|394186|394190|394192|394193|394195|394196|394198|394200|394203|394204|394205|394206|394207|394209|394211|394213|394214|394218|394219|394221|394222|394222|394223|394225|394228|394229|394230|394233|394234|394235|394239|394243|394248|394251|394253|394255|394258|394264|394266|394268|394269|394271|394273|394283|394285|394288|394290|394292|394298|394301|394303|394305|394307|394311|394315|394316|394320|394325|394326|394328|394332|394334|394336|394336|394339|394339|394367|394370|394371|394377|394379|394383|394386|394388|394391|394393|394400|394406|394406|394409|394414|394415|394415|394420|394423|394431|394437|394438|394441|394444|394447|394450|394452|394454|394454|394457|394458|394460|394468|394469|394472|394473|394477|394479|394487|394499|394501|394509|394510|394511|394517|394518|394519|394524|394530|394533|394539|394541|394545|394548|394550|394553|394558|394561|394563|394566|394578|394590|394592|394610|394612|404976|404979|404981|420733|420734|420736|420737|420743|420745|420746|420748|420750|420755|432026|432028|432034|432038|432042|432491|432988|442662|442663|442664|442665|443617|446908|446909|446921|446924|446940|447261|447263|447265|447286|447290|447293|447295|447296|447301|447305|447306|447326|447330|447331|447335|447336|447371|447377|447378|447379|447380|447381|447383|447384|447387|447388|447390|447397|447400|447403|447405|447409|447417|447440|447444|447448|447449|447451|447452|447454|447455|447456|447457|447458|447483|447485|447487|447489|447490|447492|447494|447501|447502|447504|447505|447508|447510|447512|447515|447517|447518|447529|447530|453240|453245|453246|453248|453249|453252|453260|453262|453266|453272|453277|453279|453287|453290|453293|453298|453303|453304|453309|453311|453317|453323|453324|453329|453331|453333|453335|453336|453339|453346|453351|453361|453370|453372|453373|453379|453381|453391|453394|453396|453398|453401|453402|453408|453409|453410|453412|453415|453426|453428|453439|453443|453445|453447|453450|453460|453463|453466|453469|453470|453472|453476|453478|453482|453488|453491|453496|453500|453502|453508|453508|453518|453521|453523|453528|453530|453532|453535|453542|453554|453557|453559|453570|453574|453582|453583|453586|453590|453597|453605|453608|453609|453617|453621|453623|453626|453627|453629|453631|453632|453634|453637|453640|453642|453643|453644|453645|453646|453647|453649|453651|453652|453653|453655|453656|453657|453658|453661|453666|453668|453670|453672|453674|453675|453676|453677|453679|453681|453683|453684|453685|453686|453687|453688|453690|453694|453699|453701|453706|453707|453709|453713|453717|453720|453721|453728|453730|453732|453734|453735|453736|453737|453738|453739|453743|453746|453747|453748|453749|453750|453752|453759|453762|453763|453765|453768|453769|453777|453778|453779|453782|453786|453794|453795|453807|453809|453809|453814|453816|453817|453821|453823|453829|453832|453836|453839|453841|453846|453849|453854|453856|453858|453861|453871|453883|453884|453885|453887|453894|453899|453899|453900|453902|453908|453917|453921|453923|453931|453937|453939|453943|453949|453952|453956|453961|454015|454016|454018|454020|454023|454025|454030|454033|454035|454038|454046|454047|454061|454066|454069|454071|454092|454095|454098|454099|454102|454110|454112|454115|454120|454121|454124|454136|454141|454144|454150|454157|454159|454161|454163|454165|454170|454173|454174|454184|454191|454196|454197|454208|454211|454216|454218|454220|454235|454236|454239|454242|454246|454256|454275|454291|454293|454296|454299|454302|454304|454307|454308|454315|454317|454319|454329|472265|472267|472268|472269|472270|472271|472272|472273|472274|472275|472276|472277|472278|472279|472280|472283|472284|472318|472323|472339|514292|514854|514871|514882|515238|515247|515248|515249|515251|515254|515255|515256|515266|515267|515268|515269|515271|515272|515273|515275|515277|515281|515283|515285|515287|515290|515291|515294|515295|515298|515302|515307|515310|515313|515314|515316|515322|515324|515328|515333|515334|515343|515347|515353|515355|515356|515357|515359|515362|515363|515364|515366|515369|515371|515372|515373|515375|519928|519933|519965|519966|519976|519977|519982|519986|519987|519989|519990|519992|519995|519999|520000|520002|520003|520004|520006|520008|520009|520011|520013|520014|520014|520016|520018|520019|520021|520022|520027|520029|520030|520031|520036|520038|520041|520042|520045|520047|520050|520052|520054|520055|520057|520058|520059|520060|520061|520062|520064|520068|520072|520073|520075|520078|520080|520083|520085|520089|520091|520093|520095|520096|520104|520106|520108|520109|520110|520112|520115|520117|520118|520120|520121|520123|520124|520125|520126|520127|520129|520130|520143|520168|520180|520181|520186|520193|520199|520203|520205|520209|520210|520215|520216|520222|520231|520233|520239|520240|520250|520252|520253|520254|520255|520256|520257|520258|520260|520265|520266|520267|520269|520271|520274|520278|520280|520281|520283|520285|520288|520290|520292|520293|520294|520297|520298|520299|520300|520302|520303|520305|520306|520307|520310|520311|520312|520313|520314|520316|520321|520325|520326|520327|520331|520334|520336|520338|520339|520342|520343|520345|520347|520352|520354|520355|520356|520359|520363|520364|520367|520368|520369|520370|520373|520375|520377|520378|520379|520380|520381|520382|520386|520388|520392|520393|520394|520398|520401|520402|520405|520410|520411|520412|520413|520415|520418|520420|520422|520427|520432|520434|520436|520440|520442|520444|520448|520450|520453|520454|520455|520456|520457|520458|520459|520461|520462|520465|520466|520470|520471|520473|520481|520485|520488|520489|520490|520496|520501|520511|556488|556492|556517|556519|556521|556668|556670|556672|556674|556676|556678|556680|556690|556692|556694|556696|556698|556700|556727|556729|556731|556743|556745|556747|556749|556863|556869|556870|556871|557016|557018|557020|557022|557024|557026|557028|557040|557042|557044|557046|557048|557050|557052|557054|557056|557058|558204|558206|558208|558210|558212|558214|558216|558236|558240|558242|558244|558246|558248|558250|559696|559711|559713|559715|559717|559719|559721|559723|559725|559727|559729|559731|559733|559735|559737|559739|559741|559743|559745|559747|559749|559751|559753|559755|559757|559759|559761|559763|559765|559767|559769|559771|559773|559775|559777|559779|559781|559783|559785|559787|559789|559791|559793|559795|559797|559799|559801|559864|559866|559868|559870|559872|559874|559876|559878|559880|559882|559884|559886|559888|559890|559892|559894|559896|559898|559900|559902|559904|559906|559908|559910|559912|559914|559916|559918|559920|559922|559924|559926|559928|559930|559932|559934|559936|559938|559940|561848|562046|562049|562056|562058|562068|562074|562076|562079|562081|562090|562094|562101|562102|562106|562111|562113|562115|562117|562121|562132|562134|562142|562144|562148|562152|562156|562159|562161|562162|562164|562166|562169|562172|562174|562175|562177|562189|562191|562196|562197|562207|562208|562210|562213|562218|562222|562224|562226|562227|562229|563336|563350|563801|563806|563810|563812|563821|563822|563830|563831|563835|563837|563838|563839|563846|563864|563875|563877|563878|563885|563889|563891|563893|563894|563897|563899|563909|563910|563913|563915|563916|563924|563939|563946|563950|563962|563970|563979|563987|563999|563999|564009|575654|575655|615992|615993|615994|615995|615996|615997|615998|615999|627029|627030|627031|627032|627033|627034|627035|627036|627037|627038|627040|627041|627042|627043|627044|627045|627046|627047|627048|627049|627050|627051|627052|627053|627054|627077|627078|627079|627080|627081|627082|627083|627084|627085|627086|627087|627088|627089|627090|627091|627092|627093|627094|627095|627096|627097|627098|627099|627100|627101|627102|627103|627104|627105|627106|627107|627108|627109|627110|627111|627112|627113|627114|627115|627116|627117|627118|627119|627120|632261|632262|632263|632264|632265|632266|632267|632268|632269|632270|632271|632272|632273|632274|632275|632276|632277|632278|632279|632280|632281|632282|632283|632284|632285|632286|632287|632288|632289|632290|632291|632292|632293|632294|632295|632296|632297|632298|632299|632300|632301|632302|632303|632304|632305|632306|632307|632308|632309|632310|632311|632312|632313|632314|632315|632316|632317|632318|632319|632320|632321|632322|632323|632324|632325|632326|632327|632328|632329|632330|632331|632332|632333|632334|632335|632336|632337|632338|632339|632340|632341|632342|632343|632344|632345|632346|632347|632348|632349|632350|632351|632352|632353|632354|632355|632356|632357|632358|632359|632360|632361|632362|632363|632364|632365|632366|632367|632368|632369|632370|632371|632372|632373|632374|632375|632376|632377|632378|632379|632380|632381|632382|632383|632384|632385|632386|632387|632388|632389|632390|632391|632392|632393|632394|632395|632396|632397|632398|632399|632400|632401|632402|632403|632404|632405|632406|632407|632408|632409|632410|632411|632412|632413|632414|632415|632416|632417|632418|632419|632420|632421|632422|632423|632424|632425|632426|632427|632428|632429|632430|632431|632432|632433|632434|632435|632436|650532|650537|650539|650551|650557|650563|650564|650566|650595|650596|650642|650644|650646|650649|650650|651116|651142|651148|651158|651159|651160|651161|651164|651180|651186|651187|651188|651193|651195|651197|651198|651200|651202|651213|651257|651261|651273|651277|657158|683293|683634|685162|686524|686527|686528|686529|686530|686531|686532|686533|686534|686535|686537|686538|686539|686540|686541|689755|690403|690404|690405|690406|690417|690420|690421|691573|691577|691579|691581|691583|691584|691585|691586|691587|691588|691589|691591|691592|691593|695239|698549|698550|698551|709391|720996|720997|720998|720999|721000|721001|721002|731863|734660|734661|745840|745844|748965|748967|748968|748969|748970|748971|748972|748973|748978|748979|748980|748982|758851|759310|759420|759425|759534|761325|761328|761331|761333|764495|764498|764500|764508|764509|764512|764513|764515|764516|764518|764522|764531|764534|764535|764537|764538|764545|764549|764551|764552|764553|764554|764555|774942|774959|774963|774968|774978|775111|777040|777482|779037|780365|780366|781972|781973|781974|781977|781978|781979|781980|781982|781984|781985|781987|781989|781991|781992|781994|787026|787214|787274|787284|787382|787457|789878|790478|806455|806457|806488|806490|806491|806492|806494|806495|806501|807745|807749|807751|807753|807757|807758|807762|807770|807781|815211|815319|818848|818851|818852|818853|818854|818855|818856|818857|818858|818859|818860|818863|818864|818865|818866|818867|818868|818869|818870|819430|819431|819432|819485|819486|819487|819488|819489|819490|819491|819492|822945|822946|822947|822948|822949|822950|822951|822952|822953|822954|822955|822956|822957|822958|822959|822960|822961|822962|822993|822994|822995|822996|822997|822998|822999|823000|823001|823002|823003|823004|823005|823006|823007|823008|823009|823010|823011|829224|829225|829226|829227|829228|829229|829230|829231|829232|829233|829234|829235|829236|829237|829238|829239|829240|829241|829242|829243|829244|829245|829246|829247|829248|829249|829250|829251|829252|829253|829254|829255|829256|829257|829258|829259|829260|829261|829262|829263|829264|829265|829266|829267|829268|829269|829270|829271|829272|829273|829274|829275|829276|829277|829278|829279|829280|829281|829282|829283|829284|829285|829286|829287|829288|829289|829290|829291|829292|829293|829294|829295|829296|829297|829298|829299|829300|829301|829302|829303|829304|829305|829306|829307|829308|829309|829310|829311|829312|829313|829314|829315|829316|829317|829318|829319|829320|829321|829322|829323|829324|829325|829326|829327|829328|829329|829330|829331|829332|829333|829334|829335|829336|829337|829338|829339|829340|829341|829342|829343|829344|829345|829346|829347|829348|829349|829350|829351|829352|829353|829354|829355|829356|829357|829358|829359|829360|829361|829362|829363|829364|829365|829366|829367|829368|829369|829370|829371|829372|829373|829374|829375|829376|829377|829378|829379|829380|829381|829382|829383|829384|829385|829386|829387|829388|829389|829390|829391|829392|829393|829394|829395|829396|829397|829398|829399|829400|829401|850733|850735|850742|850937|850990|850992|851126|851129|851131|851192|851506|851508|851510|851512|851516|851608|858441|890731|890732|890733|890734|890735|890736|890737|890738|890739|890740|890741|890742|890743|890744|890745|890746|890747|890748|890749|890750|890751|890752|890753|890754|890755|890756|890757|890758|890759|890760|890761|890762|890763|890764|890765|890766|890767|890768|890769|890770|890771|890772|890773|890774|890775|890776|890777|890778|890779|890780|890781|890782|890783|891799|891800|921722|921723|921724|921725|921726|921742|921743|921744|921745|921746|921747|921748|921749|921750|921751|921752|921753|921754|921755|921756|923534|923535|923536|923537|923538|923539|923540|923541|923542|923543|923544|923545|923546|923547|923548|923549|923550|923551|923552|923553|923554|923555|923556|923557|923558|923559|923560|923561|923562|923563|923564|923565|923566|923567|923568|923569|923570|923571|923572|923573|923574|923575|923576|923577|923578|923579|923580|923581|923582|923583|923584|923585|923586|923587|923588|923589|923590|923591|923592|930124|930125|930126|930127|930128|930129|930130|930131|930156|930157|930158|930159|930160|930161|930162|930163|930164|930165|930166|930167|930168|932373|932374|932375|932376|932377|932378|932379|932380|932381|932382|932383|932384|932385|932386|932387|932388|932389|932390|932391|932392|932393|932394|932395|932396|932397|932398|932399|932400|932401|932402|932403|932404|932405|932406|932407|932408|932409|932410|932411|932412|932413|932414|932415|932416|932417|932418|939780|939969|940607|940608|940609|940781|940782|941549|941550|941551|941552|941573|941574|941575|941576|941577|941578|941579|941580|944030|944031|944032|944033|944034|944035|944036|944037|944038|944039|944040|944041|944042|944043|944044|944045|944046|944047|944048|944049|944050|944051|944052|944053|944054|944055|944056|944057|944058|944059|944060|944061|944062|944063|944064|944065|944066|944067|944068|944069|944070|944071|944072|944073|944074|944075|944076|944077|944078|944079|944080|944081|944082|944083|944084|944085|944086|944087|944088|944089|944090|944091|944092|951977|952126|952127|952128|952129|952130|952131|952140|952141|952142|952143|952144|952145|952146|953792|953793|953794|953795|953796|953797|953798|953799|953800|953801|953802|953803|953804|953805|953806|953807|953808|953809|953810|953811|953812|953813|953814|953815|953816|953817|953818|953819|953820|953821|953822|953823|953824|953825|959527|959528|959531|959532|959726|959727|959728|959729|959730|959731|959732|959733|959734|960411|960540|960541", + "text": "Gastrointestinal stromal tumor" + }, + { + "baseId": "18559|352627", + "text": "cyclophosphamide response - Toxicity/ADR" + }, + { + "baseId": "18559|227806", + "text": "carboplatin response - Efficacy" + }, + { + "baseId": "18559|18560|190849|276134|276302|276341|276373|276374|276588|276599|276607|276639|276642|276655|276681|276682|276684|276708|276711|558389|789826", + "text": "Neural tube defects, folate-sensitive" + }, + { + "baseId": "18559", + "text": "methotrexate response - Dosage, Efficacy, Toxicity/ADR" + }, + { + "baseId": "18559|28341|28349|40578|153725|153726|190849|249498|249500|249502|249503|249504|249505|249506|249507|249508|249510|249511|249512|249513|249514|249515|249516|249517|249518|249520|249521|249522|249523|249524|249525|249526|254180|254181|254182|254183|254184|254185|277166|277168|277179|277180|277191|277192|277194|277195|277214|277219|277220|277221|277222|277225|277248|277249|277250|277252|277253|277254|277257|277260|277262|277263|277270|277272|277273|277294|277416|277422|277423|277427|277428|277435|277443|277444|277452|277454|277458|277459|277466|277467|277468|277471|277472|277474|277480|277482|277486|277489|277492|277494|277498|277504|277505|278219|278222|278240|278256|278260|278261|278262|278263|278264|278267|278268|278269|278270|278271|278278|278280|278281|278288|278289|278291|278295|278297|278298|278305|278307|278309|278310|278312|278316|278317|278318|278325|278328|278329|278330|278332|278334|278336|278338|278340|278341|278342|278343|278350|278351|278352|278360|278364|278373|278374|278383|314178|314179|314187|314188|314190|314191|320729|320749|320751|320758|320767|320768|326803|326804|326811|327765|327768|327769|327773|557032|558220|615287|619964|679780|706851|718365|718370|724459|745824|768463|777016|862698|862699|862700|862701|862702|862703|862704|862705|862706|862707|862708|862709|862710|862711|862712|862713|862714|862715|862716|862717|862718|862719|862720|862721|862722|862723|862724|862725|862726|862727|862728|862729|862730|862731|862732|862733|862734|862735|862736|862737|862738|862739|862740|862741|862742|862743|862744|862745|862746|862747|862748|862750|862751|862752|862753|865026|865027|865028|868030|868031|868032|868033|868034|868035|868650|868651|868652", + "text": "Thrombophilia due to thrombin defect" + }, + { + "baseId": "18560|19921|19922|27975|31809|32631", + "text": "Schizophrenia, susceptibility to" + }, + { + "baseId": "18569|18570|291146|291147|291154|291160|291161|291163|291165|291166|291174|291175|292123|292125|292127|292128|295512|295514|295515|295516|295518|295528|295530|295670|295671|295672|295674|295675|519428|586113|631587|708944|720536|720537|734167|748384|748385|748386|764022|764023|764024|764025|764026|781748|781749|819293|828357|889405|889406|889407|889408|889409|889410|889411|889412|889413|889414|889415|889416|923273|932024|943628|943629|953548|953549|977979|977980|977981|977982", + "text": "Deficiency of hyaluronoglucosaminidase" + }, + { + "baseId": "18571|39554|39589|48441|49863|50336|270015|270016|432334|551264|818298", + "text": "Osteogenesis imperfecta type 12" + }, + { + "baseId": "18573|18574|18575|18576|18577|18578|18579|18580|18581|18582|18583|18584|304606|304607|304611|304614|304615|304623|304624|304631|308325|308327|308340|308342|308343|308344|308346|308349|313367|313376|313378|313380|313390|313391|313401|313402|313406|313409|313485|313488|313491|313492|313495|313496|313497|313509|313510|313511|313518|313527|313529|313533|700483|711406|711407|722941|722942|722945|722947|736535|736536|736537|736538|736539|736540|736541|751008|751009|751010|751012|751014|751015|759623|766640|766643|766646|766647|766648|766653|766654|766655|766656|766657|766659|766662|775218|775307|775310|775453|783041|783044|783046|783047|787456|899088|899089|899090|899091|899092|899093|899094|899095|899096|899097|899099|899100|899101|899102|899103|899104|899105|899106|899107|899108|899109|899110|899111|899112|899113|899114|899115|899116|900456|900458|978445|978446|978447|978448|978449|978450|978451|978452|978453|978454", + "text": "Hereditary acrodermatitis enteropathica" + }, + { + "baseId": "18585|18586|18587|18588|513045|513046|918788|918789|918790|920184", + "text": "Retinitis pigmentosa 56" + }, + { + "baseId": "18589|152869|171853|188984|590270", + "text": "Macular dystrophy, vitelliform, 5" + }, + { + "baseId": "18590|133964|206584|206585|919552", + "text": "Azorean disease" + }, + { + "baseId": "18590|19327|19329|19334|19374|19924|21117|22718|22719|24765|29284|29286|29292|38891|70810|76576|99352|99354|102612|102613|102614|102615|102616|102617|104135|205699|205700|205701|209422|215776|215777|215778|227175|282298|282301|282313|282315|282316|282317|282318|282322|283004|283007|283008|284548|284551|284553|284563|284576|284952|284957|284958|284959|284969|422174|539073|553248|553277|590519|621703|801562|881245|881246|881247|881248|881249|881250|881251|881252|881253|881254|881255|881256|881257|881258|881259|881260|881261|881262|882817|917820|918675", + "text": "Parkinson disease, late-onset" + }, + { + "baseId": "18591|18592|18593|18594|18595|18596|70882|70883|70884|70885|70886|70887|70888|70889|70890|70891|70892|70893|70894|70895|70896|70897|70898|70899|70900|70901|70902|70903|70904|70905|70906|70907|70908|70909|70910|70911|70912|70913|70914|70915|70916|70917|70918|70919|70920|70921|70922|70923|70924|70925|70926|70927|70928|70929|70930|70931|70932|70933|70934|70935|99410|106584|134224|134225|134226|140483|140486|140488|140491|140492|190778|194871|194873|203258|203262|203273|203276|203280|203281|203288|203292|324885|324886|324887|324893|324895|324896|324903|324904|334497|334499|334502|334506|334507|334510|334518|341059|341060|341073|341075|342609|342612|342613|342620|358366|358367|358368|358369|358370|358371|358372|358373|358374|358375|409585|431789|431856|445556|466598|488832|488903|505547|506265|529889|547726|547744|547745|547747|547751|547757|547771|547999|548002|548476|548482|548484|574007|621850|653990|685418|801555|875048|875049|875050|875051|875052|875053|875054|875055|875056|875057|875058|876648|904206|972228", + "text": "Neuronal ceroid lipofuscinosis 3" + }, + { + "baseId": "18595|18596|70928|181569", + "text": "Ceroid lipofuscinosis, neuronal, 3, protracted" + }, + { + "baseId": "18595|203258|976713|976720|976721|976722|976723", + "text": "early onset and severe retinal dystrophy" + }, + { + "baseId": "18597|18598", + "text": "Apocrine gland secretion, variation in" + }, + { + "baseId": "18597", + "text": "Axillary odor" + }, + { + "baseId": "18597", + "text": "Colostrum secretion" + }, + { + "baseId": "18599|18600|57117|106526|106527|175784|175788|215510|215511|230615|389206|389247|612162|614517|622432|625877|626242|672206|857686", + "text": "Deafness, autosomal recessive 22" + }, + { + "baseId": "18601|18602", + "text": "Isovaleric acidemia, type I" + }, + { + "baseId": "18602|18606|18607|99951|99952|99955|99956|99957|99958|99959|99960|177782|186929|186930|186931|186932|195641|200287|200289|200290|200291|200292|255171|260065|264619|268474|273440|322394|322398|322399|322405|322406|322411|322413|322414|322415|322419|322427|322429|322434|322436|322437|331703|331705|331706|331708|331712|331714|331723|331727|331730|331732|331734|331736|331738|331744|331745|338690|338691|338693|338698|338701|338704|338705|338706|338716|338723|338726|338734|340376|340378|340379|358294|358295|358296|358297|358298|358299|358300|358301|360185|373411|373417|374074|374076|374487|445310|464753|464758|465003|465005|465007|465017|465019|465021|482064|504741|504748|504750|504754|505233|505235|528766|529149|529159|529288|547389|547393|547395|547397|547399|547410|547415|547480|547483|547484|547677|547685|547687|547689|547691|548001|548005|548010|548012|567013|573225|578519|581771|612307|615781|623116|650365|650368|650370|650373|650374|650378|650379|650380|652500|695641|730985|739578|754401|770126|770127|776357|784905|791444|791445|791446|820691|820692|820693|820694|820757|842281|842282|842283|842284|842285|842286|842287|842288|851610|873347|873348|873349|873350|873351|873352|873353|873354|873355|873356|873357|873358|873359|873360|873361|873362|873363|873364|873365|873366|873367|873368|873369|873370|873371|873372|873373|873374|873375|873376|873377|873378|873379|873380|873381|873382|876493|903602|927309|936914|948869|948870|957405|957406|960821|966799|979593|979594|979595|979596|979597|979598|979599|979600", + "text": "Isovaleryl-CoA dehydrogenase deficiency" + }, + { + "baseId": "18603", + "text": "Isovaleric acidemia, type III" + }, + { + "baseId": "18604", + "text": "Isovaleric acidemia, type II" + }, + { + "baseId": "18608|18610|18613|20488|21184|24381|24385|27386|27395|27397|27405|28691|28692|28693|28696|28938|28940|32616|32617|32618|32620|32621|32622|32623|32625|48304|54633|100947|139019|139020|139021|139021|139022|139022|139023|139024|139024|139024|139025|151595|151955|166215|182945|185350|213595|226759|226760|236461|236462|236469|239271|240721|240721|240722|240722|240723|240724|240724|240725|240726|240727|240727|240728|240729|240729|240730|240731|240731|240732|240732|242980|245074|253669|309272|309280|309282|309283|309285|309286|309291|309296|309298|309299|309306|309308|309311|309312|309328|309329|313963|313979|313981|313983|313988|313996|314004|314005|319845|319852|319853|319855|319856|319860|319861|319862|319864|319865|319866|319870|319883|319897|319900|320407|320408|320411|320419|320419|320423|320424|320425|320429|320438|320442|320443|320445|320446|362755|362768|362770|362771|362772|362773|362777|362778|362817|362894|362933|363107|363108|363109|363110|363112|363113|363114|363265|363266|363267|363269|363270|363271|363272|363280|363281|363293|363294|363295|363296|363297|363307|363308|363309|363339|363357|363360|363370|363412|363528|363531|363532|363533|363534|363535|363552|397073|397077|397089|397092|397095|397098|397101|397103|397103|397335|397335|397340|397343|397349|397350|397351|397359|397360|397364|397369|397372|397525|397526|397528|397533|397533|397535|397537|397637|397637|397640|397642|397646|397646|397649|397651|397654|397658|397659|397662|397664|397670|432390|432392|432393|432397|432398|432399|432402|432415|432419|439503|448122|448169|459605|459611|459616|459617|459620|459622|459624|459632|459641|459647|459830|459831|459831|459839|459842|459844|459847|459854|459856|460058|460066|460071|460074|460079|460083|460089|460091|460470|460471|460481|460489|460493|460500|460502|460505|460507|460508|460514|460520|460522|460522|463691|475061|475063|475238|475240|475248|475248|503550|503554|515929|524863|524881|524894|524896|524904|524906|524907|524918|525119|525121|525125|525129|525134|525136|525250|525254|525257|525260|525261|525267|525269|525271|525274|525279|525286|525443|525448|525449|525451|525459|558529|563383|563517|563526|563529|563531|563537|563541|563548|563551|563554|563556|564403|564461|564462|564463|564464|564471|564472|564473|564477|566122|566126|566128|566133|566134|566136|569446|569447|569453|569454|569455|569456|569463|569464|620341|638673|638674|638675|638676|638677|638678|638679|638680|638681|638682|638683|638684|638685|638686|638687|638688|638689|638690|638691|638692|638693|638694|638695|638696|638697|638698|638699|638700|638701|638702|638703|638704|638705|651997|652024|652086|652122|652239|652310|677051|684126|687581|687584|687585|689969|692763|692766|695466|701150|701151|712131|723735|737311|737312|751925|759855|767597|767604|775455|783524|783525|809809|809810|809811|809818|809824|809828|809830|809834|809842|809843|809855|809859|809860|836564|836565|836566|836567|836568|836569|836570|836571|836572|836573|836574|836575|836576|836577|836578|836579|836580|836581|836582|836583|836584|836585|836586|836587|836588|836589|836590|836591|836592|836593|836594|836595|836596|851363|851365|852539|852543|852544|865294|865295|865296|865297|865298|865299|865300|865301|865302|865303|865304|865305|865306|865307|865308|865309|865310|865311|865312|865313|865314|865315|865316|868429|925724|925725|925726|925727|925728|925729|925730|925731|925732|925733|925734|934926|934927|934928|934929|934930|934931|934932|934933|934934|934935|934936|934937|946792|946793|946794|946795|946796|946797|946798|946799|946800|946801|946802|946803|955968|955969|955970|955971|959927|960711|960712", + "text": "Medulloblastoma" + }, + { + "baseId": "18609|18610|18611|18613", + "text": "Medulloblastoma, desmoplastic" + }, + { + "baseId": "18610|18610|18613|21184|21186|23250|23251|23252|23253|23254|23255|23256|23257|23260|23261|23262|23263|23265|45752|50093|50094|50095|50096|50098|50099|50100|50101|50102|50103|50104|50105|50106|98605|136432|136446|136447|136448|136467|136471|136474|136479|136483|136486|136501|136501|138832|138833|138834|138835|138836|138837|138838|138839|138840|138841|138842|138843|138844|138844|138845|138846|138848|138849|139019|139020|139021|139022|139022|139023|139024|139024|139025|139578|139579|139580|139581|139582|139583|139584|139585|139586|139587|139588|139589|139590|139591|139592|139593|139594|139595|139596|139597|139598|139599|139600|139601|139602|139603|139604|139605|139606|139607|139608|139609|139610|139611|139612|139613|139615|139616|139617|139618|139619|139620|142537|166132|171114|171115|171116|172176|177129|181212|181213|186098|186099|186099|186100|186101|186102|186103|186104|186105|186106|186107|186108|186108|186109|186110|186111|186112|186113|186113|192882|212691|212692|212694|212695|212696|212697|212698|212699|212700|212701|212702|212703|212704|212705|212706|212707|212708|212709|212710|212711|212713|212714|212715|212716|212717|212718|212719|212720|212720|212721|212722|212723|212725|212726|212728|212729|212730|212731|212732|212733|212734|212735|212736|212737|212738|212739|212741|212742|212743|212744|212745|212746|212747|212748|212749|212750|212751|212752|212753|212756|212757|212758|212759|212761|213945|213946|213947|213948|213949|214913|221864|221865|221866|221867|221868|221869|221870|221872|221873|221873|221874|221875|221876|221877|221878|221879|221880|221881|221882|221883|221884|221885|221886|221887|221888|221889|221890|221891|221892|221893|221894|221895|221896|221897|221898|221899|221900|221902|221902|221903|221905|221907|221908|221909|221911|221912|221913|221915|221916|221917|221918|221919|221920|221921|221922|221923|221924|221925|221926|221927|221928|221929|221930|221931|221932|223628|223629|227194|227846|238298|238299|238300|238301|238302|238303|238304|238305|238306|238307|238308|238309|240644|240645|240646|240647|240648|240649|240650|240651|240653|240654|240655|240656|240657|240658|240659|240660|240661|240662|240663|240664|240666|240667|240669|240670|240671|240673|240674|240675|240676|240677|240678|240679|240679|240680|240681|240682|240683|240684|240685|240686|240687|240688|240689|240690|240691|240693|240694|240695|240696|240697|240698|240699|240700|240701|240702|240721|240722|240723|240724|240725|240726|240727|240728|240729|240730|240731|240732|246887|253602|253604|253606|253609|253611|253612|253613|308953|308958|308959|308963|308970|308971|308972|308973|308984|308986|308996|308997|309001|309003|313687|313688|313689|313700|313707|313727|313728|313729|313730|313742|313752|313756|313757|313758|313762|313764|313765|313766|319438|319452|319454|319455|319456|319483|319485|319486|319488|319501|319506|319510|319512|319525|319564|319578|320059|320060|320065|320067|320070|320074|320096|320097|320120|320121|320126|320128|320137|320140|320156|320159|320419|361199|370547|370551|371061|371062|371070|371081|371416|371418|371419|371433|373245|391253|391256|391259|391262|391268|391273|391275|391282|391283|391285|391290|391293|391295|391318|391326|391423|391425|391426|391429|396359|396362|396919|396921|396927|396929|396940|396942|396943|396951|396958|396960|396963|396968|396971|396973|396974|396976|396979|396984|396990|396991|397003|397010|397012|397014|397017|397022|397023|397026|397026|397028|397031|397033|397034|397035|397073|397077|397089|397092|397095|397098|397101|397103|397163|397167|397168|397169|397170|397172|397175|397179|397182|397185|397188|397194|397204|397205|397210|397212|397216|397217|397218|397220|397222|397230|397232|397242|397247|397250|397254|397258|397265|397335|397335|397337|397340|397341|397342|397343|397344|397348|397349|397350|397351|397359|397359|397360|397361|397364|397365|397366|397369|397370|397372|397376|397380|397382|397385|397387|397390|397393|397394|397402|397411|397421|397423|397429|397431|397434|397435|397440|397440|397442|397446|397447|397448|397450|397454|397455|397457|397462|397466|397490|397491|397493|397495|397495|397498|397501|397503|397506|397507|397507|397510|397517|397521|397525|397526|397527|397528|397532|397533|397534|397535|397537|397542|397543|397547|397558|397560|397562|397563|397570|397572|397574|397577|397637|397640|397642|397646|397649|397651|397654|397658|397659|397662|397664|397670|407780|407781|407785|407790|420463|420470|420477|420480|420487|420488|420494|420495|420497|425376|439503|447917|447921|447924|447929|447934|447935|448119|448122|448122|448127|448128|448130|448147|448149|448150|448158|448167|448169|448169|448252|448263|448266|448267|448284|448286|448287|458665|459354|459356|459378|459380|459382|459383|459386|459388|459389|459393|459396|459399|459401|459406|459407|459414|459426|459430|459432|459434|459437|459445|459454|459457|459459|459461|459464|459466|459467|459473|459477|459479|459481|459485|459487|459488|459605|459611|459616|459617|459620|459621|459622|459624|459625|459627|459632|459635|459638|459640|459641|459642|459644|459647|459650|459655|459660|459662|459663|459666|459668|459670|459671|459675|459679|459684|459685|459694|459704|459706|459711|459713|459715|459722|459723|459726|459728|459729|459739|459748|459750|459753|459755|459757|459759|459760|459765|459773|459775|459781|459782|459788|459789|459795|459796|459800|459801|459802|459804|459806|459820|459824|459830|459831|459833|459834|459838|459839|459840|459842|459843|459844|459846|459847|459852|459853|459854|459856|459859|459864|459866|459869|459870|459874|459881|459883|459885|459891|459896|459899|459901|459928|459935|459937|459952|459953|459955|459957|460058|460066|460071|460074|460079|460083|460089|460091|460245|460249|460252|460256|460258|460260|460266|460269|460277|460279|460283|460286|460293|460295|460301|460306|460311|460321|460322|460323|460324|460333|460340|460341|460343|460345|460352|460353|460470|460471|460481|460489|460493|460500|460502|460505|460507|460508|460514|460520|460522|460522|474933|474934|474936|474937|474942|474951|474955|474958|474973|474981|474983|474983|474994|475004|475005|475011|475013|475013|475021|475023|475032|475061|475063|475138|475139|475140|475142|475145|475153|475154|475156|475157|475159|475161|475165|475169|475171|475172|475173|475181|475187|475238|475248|475248|481450|488135|493412|502712|503072|503550|503554|511847|513589|515919|515923|515925|515926|515928|515929|515929|515930|515932|515936|515968|515971|515973|515975|515976|515980|515982|515984|515989|515998|516015|516016|516018|516027|516029|516032|516034|516041|516047|516049|516052|524720|524725|524729|524729|524732|524735|524736|524737|524738|524751|524755|524756|524762|524766|524767|524773|524774|524778|524780|524784|524793|524794|524795|524798|524801|524806|524809|524815|524817|524823|524863|524881|524894|524896|524904|524906|524907|524918|524957|524960|524963|524967|524970|524971|524975|524977|524981|524988|524990|524996|525000|525005|525007|525022|525023|525027|525028|525031|525033|525036|525042|525043|525048|525051|525053|525080|525081|525083|525085|525091|525096|525097|525104|525117|525119|525121|525124|525125|525128|525129|525131|525134|525136|525140|525144|525145|525150|525152|525155|525156|525159|525168|525171|525173|525182|525185|525191|525191|525197|525202|525205|525207|525213|525216|525250|525254|525257|525260|525261|525267|525268|525269|525270|525271|525274|525275|525278|525279|525280|525285|525286|525289|525296|525298|525305|525307|525310|525311|525313|525316|525316|525318|525322|525327|525328|525330|525333|525339|525341|525344|525346|525351|525354|525355|525356|525360|525361|525362|525363|525367|525443|525448|525449|525451|525459|538411|551302|551302|552143|553156|557067|557069|557071|557073|557288|557290|557292|557294|557345|557347|557349|558523|558525|558527|558529|558529|558531|563220|563344|563347|563347|563357|563359|563361|563363|563368|563374|563377|563383|563391|563395|563398|563405|563407|563410|563411|563413|563419|563420|563422|563426|563429|563430|563437|563441|563442|563446|563517|563526|563529|563531|563537|563541|563548|563551|563554|563556|564181|564187|564189|564197|564214|564225|564225|564227|564229|564234|564236|564240|564241|564248|564256|564259|564260|564261|564272|564285|564287|564290|564296|564299|564309|564310|564311|564311|564322|564323|564327|564329|564337|564340|564346|564347|564403|564461|564462|564463|564464|564471|564472|564473|564477|566016|566019|566022|566028|566030|566034|566035|566037|566045|566051|566058|566060|566061|566062|566065|566069|566077|566081|566082|566122|566126|566128|566133|566134|566136|568292|569218|569225|569235|569240|569250|569253|569258|569264|569265|569269|569271|569281|569284|569287|569288|569290|569291|569300|569303|569312|569313|569318|569327|569329|569339|569446|569447|569453|569454|569455|569456|569463|569464|611977|612004|612005|612006|612007|612008|612056|615939|628033|628034|628035|628036|628037|628038|628039|628040|628041|628042|628043|628044|628045|628046|628047|628048|628049|628050|628051|628052|628053|628054|628055|628056|628057|628058|628059|628060|628061|628062|628063|628064|628065|638447|638448|638449|638450|638451|638452|638453|638454|638455|638456|638457|638458|638459|638460|638461|638462|638463|638464|638465|638466|638467|638468|638469|638470|638471|638472|638473|638474|638475|638476|638477|638478|638479|638480|638481|638482|638483|638484|638485|638486|638487|638488|638489|638490|638491|638492|638493|638494|638495|638496|638497|638498|638499|638500|638501|638502|638503|638504|638505|638506|638507|638508|638509|638510|638511|638512|638513|638514|638515|638516|638517|638518|638519|638520|638521|638522|638523|638524|638525|638526|638527|638528|638529|638530|638531|638532|638533|638534|638535|638536|638537|638538|638539|638540|638541|638542|638543|638544|638545|638546|638547|638548|638549|638550|638551|638552|638553|638554|638555|638556|638557|638558|638559|638560|638561|638562|638563|638564|638565|638566|638567|638568|638569|638570|638571|638572|638573|638574|638575|638576|638577|638578|638579|638580|638581|638582|638583|638584|638585|638586|638587|638588|638589|638590|638591|638592|638593|638594|638595|638596|638673|638674|638675|638676|638677|638678|638679|638680|638681|638682|638683|638684|638685|638686|638687|638688|638689|638690|638691|638692|638693|638694|638695|638696|638697|638698|638699|638700|638701|638702|638703|638704|638705|651870|651975|651981|651984|651985|651987|651997|652024|652063|652065|652072|652076|652086|652122|652228|652239|652310|679664|683360|683361|683362|683363|683364|683365|683366|683367|683368|683369|683370|683371|683372|683373|684121|684122|684123|684126|685105|685106|685797|685800|685801|685802|685803|685805|685806|685808|685809|685810|687554|687555|687558|687559|687561|687563|687564|687565|687566|687567|687581|687584|687585|689667|689969|690620|690621|692718|692720|692721|692722|692723|692724|692725|692727|692730|692732|692734|692735|692736|692737|692738|692740|692742|692744|692763|692766|695459|695460|695461|695462|695463|695466|701150|701151|712085|712086|712087|712088|712089|712131|723671|723672|723673|723735|730008|732487|737252|737311|737312|744528|744571|751844|751845|751847|751850|751851|751854|751855|751857|751925|759855|761963|767529|767532|767535|767539|767540|767544|767546|767553|767597|767604|775455|775586|778016|783488|783492|783495|783498|783524|783525|789971|790930|790931|790932|790936|790937|790938|798623|809510|809519|809528|809532|809541|809542|809547|809549|809550|809551|809552|809565|809568|809570|809572|809574|809586|809588|809590|809593|809596|809603|809604|809606|809609|809610|809612|809619|809620|809629|809644|809653|809655|809656|809660|809661|809662|809809|809810|809811|809818|809824|809828|809830|809834|809842|809843|809855|809859|809860|815414|818971|818972|820179|820180|820181|820182|822031|822032|824139|824140|824141|824142|824143|824144|824145|824146|824147|824148|824149|824150|824151|824152|824153|824154|824155|824156|824157|824158|824159|824160|824161|824162|824163|824164|836347|836348|836349|836350|836351|836352|836353|836354|836355|836356|836357|836358|836359|836360|836361|836362|836363|836364|836365|836366|836367|836368|836369|836370|836371|836372|836373|836374|836375|836376|836377|836378|836379|836380|836381|836382|836383|836384|836385|836386|836387|836388|836389|836390|836391|836392|836393|836394|836395|836396|836397|836398|836399|836400|836401|836402|836403|836404|836405|836406|836407|836408|836409|836410|836411|836412|836413|836414|836415|836416|836417|836418|836419|836420|836421|836422|836423|836424|836425|836426|836427|836428|836429|836430|836431|836432|836433|836434|836435|836436|836437|836438|836439|836440|836441|836442|836443|836444|836445|836446|836447|836448|836449|836450|836451|836452|836453|836454|836455|836456|836457|836458|836459|836564|836565|836566|836567|836568|836569|836570|836571|836572|836573|836574|836575|836576|836577|836578|836579|836580|836581|836582|836583|836584|836585|836586|836587|836588|836589|836590|836591|836592|836593|836594|836595|836596|850698|850790|850792|850794|850979|851307|851309|851359|851361|851363|851365|851750|851752|851754|851756|852220|852227|852530|852535|852539|852543|852544|902559|902560|902561|902562|902563|902564|902565|902566|902567|902568|902569|902570|902571|902572|902573|902574|902575|902576|902577|902578|902579|902580|902581|902582|902583|902584|902585|902586|902587|902588|902589|902590|902591|902592|902593|902594|903446|906284|922079|922080|922081|922082|922083|922084|922085|922086|922087|922088|922089|922090|922091|925653|925654|925655|925656|925657|925658|925659|925660|925661|925662|925663|925664|925665|925666|925667|925668|925669|925670|925671|925672|925673|925674|925675|925676|925677|925678|925679|925680|925681|925682|925683|925684|925685|925686|925687|925688|925689|925724|925725|925726|925727|925728|925729|925730|925731|925732|925733|925734|929887|930556|930557|930558|930559|930560|930561|930562|930563|930564|930565|934841|934842|934843|934844|934845|934846|934847|934848|934849|934850|934851|934852|934853|934854|934855|934856|934857|934858|934859|934860|934861|934862|934863|934864|934865|934866|934867|934868|934869|934870|934871|934872|934873|934874|934875|934876|934926|934927|934928|934929|934930|934931|934932|934933|934934|934935|934936|934937|940158|940159|940160|940161|940945|940946|940947|941997|941998|941999|942000|942001|942002|942003|942004|946699|946700|946701|946702|946703|946704|946705|946706|946707|946708|946709|946710|946711|946712|946713|946714|946715|946716|946717|946718|946719|946720|946721|946722|946723|946724|946725|946726|946727|946728|946729|946730|946731|946732|946733|946734|946735|946736|946737|946738|946739|946792|946793|946794|946795|946796|946797|946798|946799|946800|946801|946802|946803|952443|952444|952445|952446|952447|952448|952449|955913|955914|955915|955916|955917|955918|955919|955920|955921|955922|955923|955924|955925|955926|955927|955928|955929|955930|955931|955932|955933|955934|955935|955936|955937|955938|955939|955940|955941|955942|955943|955944|955945|955946|955968|955969|955970|955971|959924|959925|959927|960432|960708|960711|960712|961519|964335|964336|966345|974487", + "text": "Gorlin syndrome" + }, + { + "baseId": "18610", + "text": "SUFU-related disorders" + }, + { + "baseId": "18612|18613", + "text": "Medulloblastoma with extensive nodularity" + }, + { + "baseId": "18614|18616|18617|18618|18619|18620|18621|18622|18623|18624|206682|214870|215404|308685|308687|308689|308690|308692|308693|308695|308699|308701|308705|308709|308711|308713|308714|308716|308718|308719|308721|308725|308727|308728|308729|313271|313272|313279|313280|313282|313291|313295|313296|313302|313303|313304|313307|313308|319086|319087|319088|319092|319094|319096|319099|319101|319102|319103|319108|319117|319119|319121|319139|319146|319147|319148|319691|319698|319700|319701|319703|319705|319708|319712|319714|319739|319740|319755|319761|319763|319768|390703|418974|712019|723622|723623|737183|737185|737186|737192|751761|751763|759768|902305|902306|902307|902308|902309|902310|902311|902312|902313|902314|902315|902316|902317|902318|902319|902320|902321|902322|902323|902324|902325|902326|902327|902328|902329|902330|902331|902332|902333|902334|902335|902336|902337|902338|902339|902340|902341|902342|902343|902344|902345|902346|902347|902348|902349|902350|902351|902352|902353|902354|902355|902356|902357|902358|902359|902360|902361|902362|902363|902364|902365|902366|902367|903426|903427|903428|903429|903430|903561|963079", + "text": "Hypomagnesemia 1, intestinal" + }, + { + "baseId": "18625|18626|18627|18628|18629|18630|18631|18632|18633|18634|18635|18636|18637|18638|98164|98165|98167|98168|98169|98170|98172|98174|98177|98178|98179|139960|139961|186628|186629|186630|186631|186632|186634|190703|194776|195186|195540|196139|199969|199974|199975|199976|199977|199978|199980|199981|199982|227855|227856|227857|227858|227859|227860|227861|227862|227863|227864|227865|227866|227867|227868|227869|227870|227871|227872|227873|227874|227875|227876|227877|227878|227879|227880|227881|227882|227883|227884|227885|227886|227887|227888|227889|227890|227891|227892|227893|227894|227895|227896|227897|227898|227899|227900|227901|227902|227903|227904|227905|227906|227907|227908|227909|227910|227911|227912|227913|227914|250014|250016|259675|259676|265252|265253|265292|265314|281203|281206|281210|281214|281215|281218|281807|281830|281831|283050|283051|283054|283055|283058|283069|283082|283279|283280|283283|283284|283285|283287|283288|283289|283292|357128|357129|357130|357131|357132|357133|357134|357135|357136|357137|357138|357139|357140|357141|357142|357143|357144|357145|357146|357147|361160|365217|365402|365487|365490|405232|405233|425382|432496|432497|448232|448357|448360|448432|481600|486892|486927|486935|488974|498590|514913|516071|516107|516112|541251|541254|541257|541260|541262|541272|541284|541295|541299|541300|541301|541303|541307|541314|541324|541326|541330|541333|541340|541343|541351|541353|541358|541359|541360|541362|541363|541365|541366|541369|541370|541371|541372|556508|556884|557370|558587|558589|558591|558593|584803|621089|628255|628256|628257|628258|650762|650775|655126|685826|707514|732582|743772|759061|762074|762076|762077|780764|780765|780766|780767|789996|789997|798478|799225|816405|818993|818994|818995|818996|818997|818998|824404|824405|824406|824407|824408|824409|824410|824411|824412|824413|824414|824415|824416|824417|824418|824419|824420|851003|864810|864811|864812|864813|864814|864815|864816|864817|916829|922157|922158|922159|922160|922161|930658|930659|930660|942098|942099|942100|942101|942102|952522|952523|952524|952525|952526|959570|977562|977563|977564", + "text": "Medium-chain acyl-coenzyme A dehydrogenase deficiency" + }, + { + "baseId": "18640|18641|18642|18643|166364|166365|790421", + "text": "Hypogonadotropic hypogonadism 4 with or without anosmia" + }, + { + "baseId": "18644|18645|18646|18647|44205|49691|76634|76636|76637|76638|76639|76640|76641|76642|76643|76644|76645|94453|102033|102034|102035|102038|102039|102040|102041|102044|102045|102046|102047|102049|102050|102052|102054|102055|102056|102057|102060|134422|134423|134424|134426|134427|134428|134429|177693|177694|191433|191951|192055|192541|192542|192693|192694|192781|193681|193683|193684|194514|195420|195421|205761|207680|207681|207682|207683|207686|207688|207689|207690|207692|207694|223668|247037|247390|263822|265807|267217|267657|268640|269257|270621|270654|271435|307714|307718|307721|307727|307729|307748|307763|307764|311976|311979|311981|311982|311995|317633|317634|317635|317637|317649|317651|317677|317687|318112|318121|318141|318160|318172|353854|360911|360912|407642|413808|425215|428972|428976|428977|428978|428979|428984|431918|439131|459056|459060|459061|459069|459073|459083|459086|459367|459369|459375|459377|459379|459385|459387|459390|459424|459428|459442|459915|459916|459918|459919|459924|459926|459929|459932|459934|488898|489180|513433|524451|524453|524460|524466|524480|524742|524743|524746|524748|524750|524752|524757|524758|524761|524765|524768|524770|524886|524887|524888|524889|524891|524895|524899|524901|524903|525029|525032|525039|525041|525044|525046|552139|562597|563101|563106|563110|563112|563116|563120|563124|563140|563141|563238|563852|563853|563861|563862|563869|563871|565817|565819|565821|565822|565823|565825|565826|565828|565829|568869|568870|568878|568882|568883|568884|568889|568895|568900|568903|568906|568907|568908|568910|568924|579609|579629|579636|579663|579847|590783|611400|611401|611468|638113|638114|638115|638116|638117|638118|638119|638120|638121|638122|638123|638124|638125|638126|638127|638128|638129|638130|638131|638132|638133|638134|638135|638136|638137|638138|638139|638140|638141|638142|638143|638144|638145|638146|652052|652061|654132|654133|654158|682342|682812|692658|700925|700926|700927|700928|700929|700930|711898|723495|723496|723497|723499|737058|737061|744537|751607|751608|751610|751613|751616|751617|751619|751620|751621|759817|759902|767325|767329|767334|767338|767340|767343|767347|767352|775410|777989|783377|783382|787633|790876|790877|790878|790879|790880|790881|820033|820106|820107|820108|820109|822003|822004|822005|822006|822007|822008|822009|822010|822011|822012|822013|822014|822015|822016|822017|822018|822019|822020|822021|822270|822271|835952|835953|835954|835955|835956|835957|835958|835959|835960|835961|835962|835963|835964|835965|835966|835967|835968|835969|835970|835971|835972|835973|835974|835975|835976|835977|835978|835979|835980|835981|835982|835983|835984|835985|835986|851734|852505|919215|919216|919217|919218|919219|925528|925529|925530|925531|925532|925533|925534|925535|925536|925537|925538|925539|925540|925541|925542|925543|925544|925545|934688|934689|934690|934691|934692|934693|934694|934695|934696|934697|934698|934699|934700|934701|934702|934703|934704|940143|946544|946545|946546|946547|946548|946549|946550|946551|946552|946553|946554|946555|955779|955780|955781|955782|961614|961615|963153|964838|965439|967271|969275|969561|969786|970904|972722|974902|976027|980169|980334|980335", + "text": "Kleefstra syndrome 1" + }, + { + "baseId": "18648|18649|18650|18651|18652|18653|18654|18655|18656|18657|18658|18659|18660|18661|18662|18663|36443|36444|36445|36446|36447|36448|36449|36450|36451|36452|36453|36454|36455|36456|36457|36458|36459|36460|36461|36462|36463|36465|36466|36467|36468|36469|36470|36471|36472|36473|36474|36475|36476|36477|36478|36479|36480|36481|36482|36483|36484|36485|36486|36487|36488|36489|36490|36491|36492|36493|36494|36495|36496|36497|36498|36499|36500|36501|36502|36503|36504|36505|36506|36507|36508|36509|36510|36511|36512|36513|36514|36515|36516|36517|36518|36519|36520|36521|36522|36523|36524|36525|36526|36527|36528|36529|36530|36531|36532|36533|36534|36535|36537|36538|36539|36540|36541|36542|36543|36544|36545|36546|36547|36548|36549|36550|36551|36552|36553|36554|36555|36556|36557|36558|36559|36560|36561|36562|36563|36564|36565|36566|36567|36568|36569|36570|36571|36573|36574|36575|36576|36577|36578|36579|36580|36581|36582|36583|36584|36585|36586|36587|36588|36589|36590|36591|36592|36593|36594|36595|36596|36597|36599|36600|36601|36602|36603|36604|36605|36606|36607|36608|36609|36610|36611|36612|36613|36614|36615|36617|36618|36619|36620|36621|36622|36623|36625|36626|36627|36628|36629|36630|36631|36632|36633|36634|36635|36636|36637|36638|36639|36640|36641|36642|36643|36644|36645|36647|36648|36649|36650|36651|36652|36653|36654|36655|36656|36657|36659|36660|36661|36662|36663|36664|36665|36666|36667|36668|36669|36670|36671|44187|44809|44811|44812|44819|44822|44824|45901|45902|45903|45904|45905|45906|45907|45908|45909|45910|45911|45912|46835|46837|46840|46843|46847|47143|47145|47151|47152|47154|47159|98425|98426|98430|98431|98432|106814|131978|186785|190722|195555|195556|200181|200182|200184|265208|265226|265233|265306|265311|312603|312605|312606|318507|318514|318523|319020|357784|357785|357786|357787|357788|357789|357790|370377|407690|421753|433070|459173|459536|487374|487387|489984|524448|524536|524545|544707|544708|544719|544726|544730|544736|544750|545014|545021|545148|545149|545151|545152|545155|545157|545164|545246|545254|545265|545266|545293|545295|545296|545304|545307|549463|563218|565885|621302|621306|621787|638216|651855|652017|730636|737114|737115|737116|737117|751683|767385|767386|767387|775380|783398|787632|790904|790905|790906|790907|799592|799593|801674|801675|801676|801677|801678|820135|820136|836076|836077|836078|836079|836080|836081|836082|901953|901954|901955|901956|901957|901958|901959|901960|901961|901962|901963|903393|903394|934746|940146|946599|955809|955810|959918|960684|972028|972029|972030|972031|972032|972033|972034", + "text": "Deficiency of UDPglucose-hexose-1-phosphate uridylyltransferase" + }, + { + "baseId": "18651", + "text": "GALT POLYMORPHISM" + }, + { + "baseId": "18652", + "text": "GALT POLYMORPHISM (DUARTE, D2)" + }, + { + "baseId": "18652|18653|18661|36470|36498|36500|36526|36529|36537|36549|36559|36560|36586|36599|36643|44812|98432|200182|200184|265311|312603|318523|433070|487372|487373|487374|487385|487441|563218|621301|621306|737114|737116|767387|836079|978578", + "text": "Galactosemia" + }, + { + "baseId": "18665|18666|18667|18668|18669|18670|18671|18673|18674|983660", + "text": "Myeloperoxidase deficiency" + }, + { + "baseId": "18672", + "text": "Lung cancer, protection against, in smokers" + }, + { + "baseId": "18675|18676|18677|18678|18679|18680|18681|18682|18683|18684|18685|133722|133723|133724|139997|139998|140000|140001|140002|140005|140006|140008|181400|206765|206766|210625|210626|210633|210638|210644|210646|214530|226874|227211|279404|279405|279408|279409|279410|279414|279416|279417|279418|279654|279657|279673|279677|279683|279702|279707|279714|279715|280918|280919|280920|280926|280930|280931|280932|280935|280949|280950|280952|281064|281067|281074|281075|281076|281087|281088|281089|281092|281095|281096|359234|362095|362096|362097|362098|362099|364687|364832|364922|427718|427719|427720|439688|508767|513505|538331|583079|653846|653847|653848|718704|718705|732199|758880|761672|789937|792878|798462|798463|798464|818154|863814|863815|863816|863817|863818|863819|863820|863821|863822|863823|863824|863825|863826|863827|863828|865134|904202|964149|974930|974931", + "text": "Coenzyme Q10 deficiency, primary, 4" + }, + { + "baseId": "18675|21420|22089|24691|26568|31365|31971|35697|40616|40617|40621|40628|40632|40637|40639|40646|40655|40672|40675|40686|40722|40732|40734|40744|40745|40753|40764|40770|40791|40803|40818|40826|40830|40833|40839|40860|40861|40864|40887|40899|40904|40909|40918|40920|40924|40932|40948|40953|40982|40986|41018|41029|41045|41049|41061|41065|41082|41098|41099|41101|41104|41107|41113|41115|41128|41138|41141|41153|41156|41162|41169|41194|41223|41235|41266|41267|41303|41307|41308|41315|41338|41354|41382|41407|41444|41448|41454|41459|41475|41480|41483|41485|41486|41491|41493|41511|41535|41543|41553|41578|41586|41604|41606|41612|41613|41620|41626|41656|41663|41682|41689|41726|41737|41750|41761|41778|41781|41783|41785|41817|41839|41840|41850|41870|41890|41894|41900|41925|41930|41967|41973|42007|42017|42034|42043|42059|42069|42085|42087|42113|42128|42136|42169|42218|42249|42255|42339|42341|42398|42400|42408|42431|42464|42488|42491|42516|42538|42551|42591|42605|42634|42698|42728|42769|42790|42804|42815|42832|42833|42858|42886|42893|42941|42982|43028|43034|43049|43057|43096|43119|43123|43182|43203|43210|43270|43290|43304|43367|43375|43379|43389|43418|43519|43555|43575|43625|43648|43654|43656|43681|43709|43741|43838|43882|43904|43930|43977|44003|44081|51671|51905|52123|52268|54898|56325|56786|71580|71583|71584|71586|71587|71589|71590|71591|71593|71594|71596|71597|71598|71599|71600|71601|71602|71603|71604|71605|71606|71607|71608|71609|71610|71611|71612|71613|71614|71615|71616|71617|71619|71620|71621|71622|71623|71624|71625|71626|71627|71629|71630|71631|71633|71634|71635|71636|71637|71638|71639|71640|71641|71642|71643|71644|71645|71646|71647|71648|71649|71650|71651|71652|71653|71654|71655|71656|71657|71658|71660|71661|71662|71663|71664|71666|71667|71668|71669|71670|71671|71672|71673|71675|71676|71677|71678|71679|71680|71681|71682|71683|71684|71685|71686|71687|71688|71689|71690|71691|71692|71693|71694|71697|71698|71699|71700|71702|71703|71704|71705|71706|71708|71709|71710|71711|71712|71713|71714|71715|71716|71717|71718|71719|71720|71721|71722|71723|71724|71725|71726|71727|71728|71729|71730|71731|71732|71733|71735|71736|71737|71738|71739|71740|71741|71742|71743|71744|71745|71746|71747|71748|71749|71750|71751|71752|71753|71754|71755|71756|71757|71758|71759|71760|71761|71762|71763|71764|71765|71766|71767|71768|71769|71770|71771|71772|71773|71774|71775|71776|71777|71778|71779|71780|71781|71782|71783|71784|71785|71786|71787|71788|71789|71790|71791|71792|71793|71794|71795|71796|71797|71798|71799|71801|71802|71803|71804|71805|71806|71807|71808|71809|71810|71812|71813|71814|71815|71816|71817|71818|71819|71820|71821|71822|71823|71824|71825|71826|71827|71828|71830|71831|71832|71833|71834|71835|71836|71837|71838|71839|71840|71841|71842|71843|71844|71845|71846|71847|71849|71850|71851|71852|71853|71854|71855|71856|71857|71858|71859|71860|71861|71862|71864|71865|71866|71867|71868|71869|71870|71871|71872|71873|71874|71875|71876|71877|71878|71879|71881|71882|71883|71884|71885|71886|71887|71888|71889|71891|71892|71893|71894|71895|71896|71897|71898|71899|71900|71901|71902|71903|71904|71905|71906|71907|71908|71909|71910|71911|71912|71913|71914|71915|71916|71917|71918|71919|71920|71921|71922|71923|71924|71925|71926|71927|71928|71929|71930|71931|71932|71934|71935|71936|71937|71938|71939|71940|71941|71942|71944|71945|71946|71947|71948|71949|71950|71951|71952|71953|71954|71955|71956|71957|71958|71959|71960|71961|71962|71963|71965|71966|71967|71968|71969|71970|71971|71972|71973|71974|71975|71976|71977|71978|71979|71980|71981|71982|71983|71984|71985|71986|71987|71988|71989|71990|71991|71992|71993|71994|71995|71996|71997|71998|71999|72000|72001|72002|72003|72004|72005|72006|72007|72008|72009|72010|72011|72012|72013|72014|72015|72016|72017|72018|72019|72020|72021|72022|72023|72024|72026|72027|72028|72029|72030|72031|72032|72033|72034|72035|72036|72037|72038|72039|72040|72041|72042|72043|72044|72045|72046|72047|72048|72049|72050|72051|72052|72053|72054|72055|72056|72057|72058|72059|72060|72061|72062|72063|72064|72065|72066|72067|72068|72069|72070|72071|72072|72073|72074|72075|72076|72077|72078|72079|72080|72081|72082|72083|72084|72085|72086|72087|72088|72089|72090|72091|72092|72093|72094|72095|72096|72097|72098|72099|72100|72101|72102|72103|72104|72105|72106|72107|72108|72109|72110|72112|72113|72115|72117|72118|72119|72120|72121|72122|72123|72124|72125|72126|72127|72128|72129|72131|72132|72133|72134|72135|72136|72137|72138|72139|72140|72141|72142|72143|72145|72146|72147|72148|72149|72150|72151|72152|72153|72154|72155|72157|72158|72159|72160|72161|72162|72164|72165|72166|72167|72168|72169|72171|72172|72173|72174|72175|72176|72177|72178|72179|72181|72182|72183|72184|72185|72186|72187|72188|72189|72190|72191|72192|72194|72195|72196|72197|72199|72201|72202|72203|72204|72205|72206|72207|72210|72211|72212|72214|72215|72216|72217|72219|72220|72221|72222|72223|72224|72225|72227|72228|72229|72231|72232|72233|72234|72235|72236|72238|72239|72241|72242|72244|72245|72246|72247|72248|72249|72250|72251|72252|72253|72254|72255|72256|72257|72258|72260|72261|72262|72263|72264|72265|72266|72267|72268|72269|72270|72271|72273|72274|72275|72276|72277|72279|72280|72281|72283|72285|72286|72287|72288|72289|72290|72291|72292|72293|72294|72295|72296|72298|72299|72300|72302|72303|72304|72305|72306|72307|72308|72309|72312|72313|72314|72315|72316|72317|72318|72320|72321|72322|72323|72324|72325|72326|72327|72329|72330|72331|72332|72333|72334|72336|72337|72338|72340|72341|72342|72343|72344|72345|72347|72348|72349|72350|72352|72354|72355|72358|72360|72361|72363|72364|72365|72366|72367|72368|72369|72370|72371|72373|72374|72376|72377|72378|72379|72380|72382|72383|72384|72385|72386|72387|72388|72389|72390|72391|72392|72394|72395|72396|72397|72398|72399|72400|72401|72402|72403|72404|72406|72407|72409|72410|72411|72412|72413|72414|72415|72417|72418|72419|72420|72421|72422|72424|72426|72427|72428|72429|72430|72431|72433|72434|72435|72436|72437|72438|72439|72440|72442|72443|72444|72445|72446|72447|72448|72450|72451|72452|72455|72456|72457|72458|72460|72461|72462|72463|72464|72465|72466|72467|72468|72469|72470|72471|72472|72473|72474|72476|72477|72478|72479|72480|72482|72483|72484|72485|72487|72488|72489|72490|72491|72493|72495|72496|72497|72498|72499|72500|72502|72503|72505|72506|72507|72509|72510|72511|72512|72513|72514|72515|72516|72518|72519|72520|72521|72523|72524|72526|72528|72530|72531|72532|72533|72534|72535|72536|72537|72538|72539|72540|72542|72543|72544|72545|72546|72548|72549|72550|72551|72552|72553|72555|72556|72557|72558|72559|72560|72561|72562|72565|72566|72567|72568|72570|72572|72573|72574|72575|72577|72578|72579|72580|72581|72582|72583|72584|72585|72586|72587|72588|72589|72590|72591|72592|72593|72594|72595|72596|72597|72598|72601|72602|72603|72604|72606|72607|72608|72609|72610|72612|72613|72614|72615|72616|72618|72621|72622|72623|72624|72625|72626|72628|72629|72631|72632|72633|72635|72636|72637|72638|72639|72640|72642|72643|72645|72646|72649|72651|72653|72654|72655|72656|72657|72658|72660|72661|72662|72663|72664|72665|72666|72667|72668|72670|72673|72674|72675|72676|72678|72679|72680|72681|72682|72683|72684|72687|72688|72689|72691|72692|72693|72694|72695|72697|72698|72699|72700|72702|72703|72704|72705|72706|72707|72708|72709|72710|72711|72712|72713|72714|72716|72717|72718|72719|72720|72721|72722|72723|72724|72726|72727|72728|72729|72730|72731|72732|72734|72736|72737|72739|72740|72741|72742|72743|72745|72746|72749|72750|72752|72754|72755|72756|72757|72758|72759|72760|72761|72762|72763|72764|72765|72766|72767|72768|72769|72770|72771|72772|72773|72774|72775|72777|72778|72779|72780|72781|72782|72783|72784|72785|72786|72787|72788|72789|72790|72791|72792|72793|72795|72797|72799|72800|72801|72802|72803|72804|72805|72806|72807|72808|72809|72810|72811|72812|72813|72814|72815|72818|72819|72820|72821|72822|72823|72824|72825|72826|72827|72828|72829|72830|72831|72832|72833|72834|72835|72836|72837|72838|72839|72840|72841|72842|72843|72844|72845|72846|72847|72848|72850|72855|72856|72857|72858|72859|72861|72862|72864|72865|72866|72867|72869|72870|72873|72874|72875|72876|72877|72878|72880|72884|72887|72888|72889|72890|72891|72895|72896|72898|72900|72901|72902|72903|72904|72905|72906|72907|72908|72909|72910|72911|72913|72914|72915|72916|72917|72918|72919|72921|72923|72925|72926|72927|72928|72929|72930|72931|72933|72934|72935|72936|72937|72938|72939|72942|72943|72947|72948|72949|72950|72951|72952|72953|72954|72955|72956|72957|72958|72960|72961|72962|72964|72968|72969|72970|72971|72973|72974|72975|72976|72980|72981|72982|72983|72984|72985|72986|72988|72990|72991|72992|72994|72995|72997|72998|72999|73000|73002|73003|73004|73005|73006|73008|73009|73012|73014|73015|73016|73017|73018|73020|73022|73023|73024|73025|73026|73027|73028|73029|73030|73032|73033|73034|73035|73036|73037|73038|73039|73040|73041|73042|73043|73044|73046|73047|73048|73049|73050|73051|73053|73055|73056|73057|73058|73059|73060|73061|73062|73063|73064|73065|73066|73067|73069|73070|73071|73073|73074|73075|73076|73077|73078|73079|73080|73082|73083|73086|73087|73088|73089|73090|73091|73093|73094|73095|73097|73098|73099|73100|73101|73102|73103|73104|73105|73106|73107|73108|73109|73110|73111|73113|73115|73116|73118|73120|73121|73122|73125|73126|73127|73128|73129|73130|73131|73132|73133|73134|73135|73136|73137|73138|73139|73142|73143|73146|73147|73148|73149|73150|73151|73152|73154|73155|73157|73158|73159|73160|73161|73162|73163|73164|73165|73166|73168|73169|73171|73172|73173|73174|73175|73176|73177|73178|73179|73180|73181|73182|73184|73185|73186|73187|73189|73190|73191|73192|73193|73194|73195|73196|73197|73198|73199|73200|73201|73202|73203|73204|73205|73206|73207|73208|73209|73210|73211|73212|73213|73214|73215|73216|73217|73218|73221|73222|73223|73225|73226|73227|73228|73229|73230|73231|73232|73233|73234|73235|73236|73238|73239|73240|73241|73242|73243|73245|73246|73247|73248|73249|73250|73252|73254|73255|73256|73258|73259|73260|73261|73262|73263|73264|73265|73266|73267|73269|73270|73271|73272|73274|73276|73278|73279|73280|73281|73282|73283|73284|73285|73286|73287|73288|73289|73290|73291|73293|73296|73297|73298|73299|73300|73301|73303|73304|73305|73306|73307|73309|73311|73312|73313|73314|73315|73316|73318|73319|73320|73321|73322|73323|73324|73325|73326|73327|73328|73329|73330|73332|73333|73335|73336|73337|73338|73339|73340|73342|73343|73344|73345|73346|73347|73348|73349|73350|73351|73352|73353|73356|73357|73359|73360|73361|73362|73363|73365|73366|73367|73369|73371|73372|73373|73374|73375|73376|73377|73378|73379|73380|73382|73383|73384|73385|73386|73387|73388|73389|73390|73391|73392|73393|73394|73395|73396|73397|73398|73399|73400|73401|73402|73403|73404|73405|73406|73408|73411|73412|73414|73415|73416|73417|73418|73420|73422|73423|73424|73425|73426|73427|73428|73429|73430|73431|73432|73433|73434|73435|73436|73438|73439|73441|73442|73443|73445|73446|73447|73448|73449|73450|73451|73452|73453|73455|73456|73457|73458|73459|73461|73462|73463|73464|73465|73466|73467|73468|73469|73470|73471|73472|73473|73474|73475|73477|73478|73479|73480|73481|73482|73484|73486|73487|73488|73490|73491|73492|73493|73495|73496|73497|73498|73499|73501|73505|73506|73507|73509|73511|73512|73513|73514|73515|73516|73517|73518|73519|73522|73524|73525|73527|73528|73530|73531|73532|73533|73535|73536|73537|73538|73540|73541|73543|73544|73545|73546|73547|73548|73550|73551|73553|73555|73557|73558|73559|73560|73561|73562|73563|73565|73566|73568|73569|73570|73572|73574|73575|73576|73577|73578|73579|73580|73581|73582|73583|73585|73586|73587|73589|73592|73594|73595|73596|73597|73598|73599|73600|73601|73602|73604|73605|73606|73607|73608|73609|73611|73612|73613|73614|73615|73617|73618|73622|73623|73624|73625|73626|73627|73628|73629|73630|73631|73632|73633|73634|73636|73638|73640|73641|73642|73643|73644|73645|73646|73647|73648|73649|73650|73651|73652|73653|73654|73655|73656|73657|73658|73659|73660|73661|73662|73663|73664|73665|73666|73667|73668|73669|73670|73671|73672|73673|73675|73676|73677|73678|73680|73681|73682|73685|73686|73688|73689|73690|73691|73692|73693|73694|73696|73698|73699|73700|73701|73702|73703|73704|73705|73706|73707|73708|73709|73710|73711|73712|73713|73714|73715|73716|73717|73718|73719|73720|73721|73722|73723|73724|73725|73726|73727|73728|73729|73730|73731|73732|73734|73735|73736|73738|73739|73740|73741|73742|73743|73744|73745|73746|73747|73748|73749|73750|73751|73752|73753|73754|73756|73757|73758|73761|73762|73763|73764|73768|73769|73771|73772|73773|73774|73775|73776|73778|73781|73782|73783|73784|73785|73786|73789|73790|73791|73792|73794|73795|73796|73797|73798|73799|73800|73801|73802|73803|73804|73805|73806|73807|73808|73809|73810|73811|73812|73813|73814|73815|73816|73817|73818|73819|73820|73821|73822|73824|73825|73826|73827|73828|73829|73831|73832|73833|73835|73836|73837|73838|73839|73840|73841|73842|73843|73844|73845|73847|73848|73849|73850|73851|73853|73855|73858|73859|73860|73861|73862|73863|73864|73865|73867|73868|73869|73870|73871|73872|73874|73875|73876|73877|73878|73879|73880|73881|73882|73883|73884|73885|73887|73888|73889|73890|73891|73892|73895|73896|73897|73898|73899|73900|73901|73902|73903|73904|73905|73906|73908|73910|73911|73912|73913|73914|73915|73916|73917|73918|73919|73921|73922|73923|73924|73925|73926|73927|73928|73929|73932|73935|73936|73937|73938|73939|73941|73942|73944|73945|73946|73947|73948|73949|73950|73951|73952|73953|73954|73955|73956|73959|73961|73962|73963|73964|73965|73967|73969|73971|73972|73973|73974|73978|73979|73980|73983|73984|73985|73986|73987|73989|73990|73991|73992|73993|73994|73995|73996|73997|73998|73999|74000|74003|74004|74005|74006|74007|74008|74009|74010|74012|74013|74014|74015|74017|74018|74019|74020|74021|74022|74023|74024|74025|74026|74028|74029|74030|74031|74032|74033|74034|74035|74037|74038|74039|74040|74041|74042|74043|74044|74045|74046|74050|74051|74052|74053|74054|74055|74056|74057|74058|74059|74060|74062|74063|74064|74066|74067|74068|74069|74070|74074|74075|74076|74077|74079|74081|74082|74084|74085|74086|74088|74089|74090|74091|74092|74093|74094|74095|74096|74098|74099|74100|74101|74102|74103|74105|74106|74107|74108|74109|74110|74112|74113|74114|74115|74116|74117|74118|74119|74121|74122|74123|74124|74125|74127|74128|74131|74132|74133|74134|74135|74136|74137|74138|74140|74143|74144|74145|74146|74149|74150|74151|74152|74154|74155|74156|74157|74158|74160|74161|74162|74163|74164|74165|74166|74168|74171|74172|74173|74174|74175|74176|74177|74178|74179|74180|74181|74182|74183|74184|74185|74186|74189|74190|74191|74192|74193|74196|74198|74199|74200|74201|74202|74203|74204|74205|74207|74208|74209|74210|74211|74212|74213|74214|74216|74217|74218|74219|74220|74221|74222|74223|74225|74226|74227|74228|74229|74230|74231|74233|74234|74235|74236|74237|74238|74239|74240|74242|74244|74246|74247|74249|74250|74252|74253|74254|74257|74258|74259|74260|74261|74262|74264|74265|74266|74267|74268|74269|74270|74271|74273|74274|74275|74276|74277|74278|74279|74280|74281|74282|74283|74284|74286|74289|74290|74295|74296|74297|74298|74301|74302|74303|74304|74305|74306|74307|74308|74309|74310|74311|74313|74314|74315|74317|74318|74319|74320|74321|74322|74323|74324|74325|74327|74328|74329|74330|74331|74332|74333|74334|74337|74338|74339|74340|74341|74342|74343|74344|74345|74346|74347|74348|74349|74350|74351|74352|74353|74354|74355|74356|74358|74359|74361|74362|74363|74364|74365|74366|74367|74368|74369|74370|74372|74373|74377|74378|74379|74381|74382|74383|74384|74385|74388|74389|74390|74391|74393|74394|74395|74396|74399|74400|74401|74402|74407|74409|74411|74412|74413|74414|74415|74416|74417|74419|74421|74422|74423|74424|74425|74426|74427|74430|74431|74432|74434|74436|74437|74438|74439|74441|74442|74446|74447|74448|74450|74451|74452|74453|74455|74456|74458|74459|74461|74462|74463|74464|74465|74466|74467|74468|74469|74470|74471|74473|74476|74478|74479|74480|74482|74483|74484|74485|74486|74487|74488|74489|74490|74491|74493|74494|74495|74497|74498|74499|74501|74502|74503|74504|74505|74506|74507|74508|74511|74512|74513|74516|74517|74519|74520|74522|74523|74524|74525|74526|74527|74528|74529|74531|74532|74534|74537|74538|74539|74541|74544|74545|74546|74547|74548|74549|74552|74553|74554|74555|74559|74560|74561|74562|74563|74564|74565|74566|74567|74568|74571|74572|74573|74574|74575|74576|74577|74578|74579|74580|74581|74582|74584|74585|74586|74587|74588|74589|74590|74591|74593|74594|74595|74596|74598|74599|74600|74602|74603|74604|74605|74606|74607|74608|74609|74610|74611|74612|74613|74614|74616|74617|74618|74619|74620|74621|74622|74623|74624|74625|74627|74628|74629|74630|74631|74632|74633|74635|74637|74638|74640|74641|74642|74644|74645|74646|74647|74649|74650|74651|74652|74653|74654|74656|74658|74659|74660|74661|74662|74664|74665|74666|74668|74669|74671|74672|74673|74674|74675|74676|74677|74679|74680|74681|74683|74684|74685|74686|74688|74689|74690|74691|74692|74693|74694|74696|74697|74698|74699|74700|74701|74702|74703|74704|74705|74706|74707|74712|74714|74716|74717|74718|74719|74721|74722|74723|74724|74726|74727|74728|74729|74730|74732|74733|74734|74735|74737|74738|74739|74740|74741|74742|74743|74744|74745|74746|74747|74748|74749|74751|74752|74753|74754|74756|74757|74758|74760|74762|74765|74766|74767|74768|74769|74770|74771|74773|74774|74775|74776|74777|74778|74779|74780|74781|74782|74783|74785|74787|74788|74792|74793|74795|74796|74797|74798|74800|74801|74802|74803|74806|74807|74808|74809|74810|74811|74812|74814|74815|74816|74818|74819|74820|74821|74822|74823|74824|74826|74827|74828|74829|74830|74831|74832|74833|74835|74836|74838|74839|74840|74841|74842|74843|74844|74846|74847|74848|74849|74852|74853|74854|74855|74856|74857|74858|74859|74860|74861|74862|74863|74865|74866|74867|74868|74869|74870|74871|74872|74873|74874|74875|74876|74878|74879|74881|74882|74883|74884|74885|74886|74887|74889|74890|74892|74893|74895|74896|74897|74898|74899|74900|74901|74902|74903|74904|74905|74906|74907|74908|74909|74910|74911|74912|74914|74915|74916|74917|74918|74919|74920|74921|74922|74923|74924|74925|74926|74928|74929|74930|74931|74932|74933|74934|74936|74937|74941|74942|74943|74944|74945|74946|74947|74948|74949|74950|74952|74954|74955|74956|74957|74958|74959|74961|74963|74966|74967|74968|74969|74970|74971|74972|74973|74974|74975|74976|74977|74978|74979|74980|74981|74982|74983|74984|74985|74986|74988|74991|74992|74993|74995|74997|74998|74999|75000|75001|75002|75003|75004|75005|75006|75008|75009|75010|75011|75013|75014|75015|75016|75017|75018|75019|75020|75021|75022|75024|75025|75026|75028|75032|75034|75035|75036|75037|75038|75039|75041|75042|75044|75045|75046|75047|75048|75049|75050|75051|75052|75053|75055|75056|75057|75059|75060|75061|75062|75064|75065|75066|75067|75068|75069|75070|75072|101854|151323|153841|153845|153847|153849|153871|153872|153873|153874|153875|153876|153877|153878|153879|153880|153881|153882|153883|153884|153885|153886|153887|153888|153889|153890|153891|153892|153893|153894|153895|153896|153897|153898|153899|153900|153901|153902|153903|153904|153905|153906|153907|153908|153909|153910|153911|153912|153913|153914|153915|153916|153917|153918|153919|153920|153921|153922|153923|153924|153925|153926|153927|153928|153929|153930|153931|153932|153933|153934|153935|153936|153937|153938|153939|153940|153941|153942|153943|153944|153945|153946|153947|153948|153949|153950|153951|153952|153953|153954|153955|153956|153957|153958|153959|153960|153961|153962|153963|153964|153965|153966|153967|153968|153969|153970|153971|153972|153973|153974|153975|153976|153977|153978|153979|153980|153981|153982|153983|153984|153985|153986|153987|153988|153989|153990|153991|153992|153993|153994|153995|153996|153997|153998|153999|154000|154001|154002|154003|154004|154005|154006|154007|154008|154009|154010|154011|154012|154013|154014|154015|154016|154017|154018|154019|154020|154021|154022|154023|154024|154025|154026|154027|154028|154029|154030|154031|154032|154033|154034|154035|154036|154037|154038|154039|154040|154041|154042|154043|154044|154045|154046|154047|154048|154049|154050|154051|154052|154053|154054|154055|154056|154057|154058|154059|154060|154061|154062|154063|154064|154065|154066|154067|154068|154069|154070|154071|154072|154073|154074|154075|154076|154077|154078|154079|154080|154081|154082|154083|154084|154085|154086|154087|154088|154089|154090|154091|154092|154093|154094|154095|154096|154097|154098|154099|154100|154101|154102|154103|154104|154105|154106|154107|154108|154109|154110|154111|154112|154113|154114|154115|154116|154117|154118|154119|154120|154121|154122|154123|154124|154125|154126|154127|154128|154129|154130|154131|154132|154133|154134|154135|154136|154137|154138|154139|154140|154141|154142|154143|154144|154145|154146|154147|154148|154149|154150|154151|154152|154153|154154|154155|154156|154157|154158|154159|154160|154161|154162|154163|154164|154165|154166|154167|154168|154169|154170|154171|154172|154173|154174|154175|154176|154177|154178|154179|154180|154181|154182|154183|154184|154185|154186|154187|154188|154189|154190|154191|154192|154193|154194|154195|154196|154197|154198|154199|154200|154201|154202|154203|154204|154205|154206|154207|154208|154209|154210|154211|154212|154213|154214|154215|154216|154217|154218|154219|154220|154221|154222|154223|154224|154225|154226|154227|154228|154229|154230|154231|154232|154233|154234|154235|154236|154237|154238|154239|154240|154241|154242|154243|154244|154245|154246|154247|154248|154249|154250|154251|154252|154253|154254|154255|154256|154257|154258|154259|154260|154261|154262|154263|154264|154265|154266|154267|154268|154269|154270|154271|154272|154273|154274|154275|154276|154277|154278|154279|154280|154281|154282|154283|154284|154285|154286|154287|154288|154289|154290|154291|154292|154293|154294|154295|154296|154297|154298|154299|154300|154301|154302|154303|154304|154305|154306|154307|154308|154309|154310|154311|154312|154313|154314|154318|154319|154320|154321|154322|154323|154324|154325|154326|154327|154328|154329|154331|154332|154333|154334|154337|154338|154339|154340|154341|154342|154343|154344|154345|154347|154348|154350|154351|154353|154354|154358|154359|154360|154361|154363|154364|154365|154367|154368|154371|154372|154373|154374|154375|154376|154377|154379|154381|154382|154385|154388|154389|154392|154394|154395|154396|154397|154398|154399|154401|154402|154403|154404|154405|154408|154410|154411|154414|154418|154419|154423|154427|154428|154429|154431|154432|154434|154435|154436|154437|154438|154439|154440|154442|154445|154446|154447|154449|154450|154457|154458|154459|154460|154461|154463|154465|154466|154468|154472|154473|154476|154477|154478|154479|154481|154482|154484|154485|154486|154487|154488|154492|154494|154495|154496|154499|154500|154502|154503|154504|154505|154506|154507|154508|154509|154510|154512|154513|154515|154516|154517|154520|154524|154525|154528|154529|154530|154531|154532|154533|154534|154535|154536|154537|154538|154539|154540|154541|154542|154543|154544|154545|154546|154547|154548|154549|154550|154551|154552|154553|154554|154555|154556|154557|154558|154559|154560|154561|154562|154563|154564|154565|154566|154567|154568|154569|154570|154571|154572|154573|154574|154575|154576|154577|154578|154579|154580|154581|154582|154583|154584|154585|154586|154587|154588|154589|154590|154591|154592|154593|154594|154595|154596|154597|154598|154599|154600|154601|154602|154603|154604|154605|154606|154607|154608|154609|154610|154611|154612|154613|154614|154615|154616|154617|154618|154619|154620|154621|154622|154623|154624|154625|154626|154627|154628|154629|154630|154631|154632|154633|154634|154635|154636|154637|154638|154639|154640|154641|154642|154643|154644|154645|154646|154647|154648|154649|154650|154651|154652|154653|154654|154655|154656|154657|154658|154659|154660|154661|154662|154663|154664|154665|154666|154667|154668|154669|154670|154671|154672|154673|154674|154675|154676|154677|154678|154679|154680|154681|154682|154683|154684|154685|154686|154687|154688|154689|154690|154691|154692|154693|154694|154695|154696|154697|154698|154699|154700|154701|154702|154703|154704|154705|154706|154707|154708|154709|154710|154711|154712|154713|154714|154715|154716|154717|154718|154719|154720|154721|154722|154723|154724|154725|154726|154727|154728|154729|154730|154731|154732|154733|154735|154736|154737|154738|154739|154740|154741|154742|154743|154744|154745|154746|154747|154748|154749|154750|154751|154752|154753|154754|154755|154756|154757|154758|154759|154760|154761|154762|154763|154764|154765|154766|154767|154768|154769|154770|154771|154772|154773|154774|154775|154776|154777|154778|154779|154780|154781|154782|154783|154784|154785|154786|154787|154788|154789|154790|154791|154792|154793|154794|154795|154796|154797|154798|154799|154800|154801|154803|154804|154805|154806|154807|154808|154809|154810|154811|154812|154813|154814|154815|154816|154817|154818|154819|154820|154821|154822|154823|154824|154825|154826|154827|154828|154829|154830|154831|154832|154833|154834|154835|154836|154837|154838|154839|154840|154841|154842|154843|154844|154845|154846|154847|154848|154849|154850|154851|154852|154853|154854|154855|154856|154857|154858|154859|154860|154861|154862|154863|154864|154865|154866|154867|154868|154869|154870|154871|154872|154873|154874|154875|154876|154877|154878|154879|154880|154881|154882|154883|154884|154885|154886|154887|154888|154889|154890|154891|154892|154893|154894|154895|154896|154897|154898|154899|154900|154901|154902|154903|154904|154905|154906|154907|154908|154909|154910|154911|154912|154913|154914|154915|154916|154917|154918|154919|154920|154921|154922|154923|154924|154925|154926|154927|154928|154929|154930|154931|154932|154933|154934|154935|154936|154937|154938|154939|154940|154941|154942|154943|154944|154945|154946|154947|154948|154949|154950|154951|154952|154953|154954|154955|154956|154957|154958|154959|154960|154961|154962|154963|154964|154965|154966|154967|154968|154969|154970|154971|154972|154973|154974|154975|154976|154977|154978|154979|154980|154981|154982|154983|154984|154985|154986|154987|154988|154989|154990|154991|154992|154993|154994|154995|154996|154997|154998|154999|155000|155001|155002|155003|155004|155005|155006|155007|155008|155009|155010|155011|155012|155013|155014|155015|155016|155017|155018|155019|155020|155021|155022|155023|155024|155025|155026|155027|155028|155029|155030|155031|155032|155033|155034|155035|155036|155037|155038|155039|155040|155041|155042|155043|155044|155045|155046|155047|155048|155049|155050|155051|155052|155053|155054|155055|155056|155059|155061|155063|155064|155065|155066|155067|155068|155070|155071|155072|155073|155074|155075|155078|155079|155080|155081|155082|155083|155085|155086|155087|155088|155089|155090|155091|155092|155093|155094|155095|155096|155097|155098|155101|155103|155104|155105|155106|155107|155108|155110|155111|155112|155113|155114|155116|155117|155119|155120|155121|155122|155123|155124|155125|155126|155128|155129|155130|155131|155132|155133|155134|155135|155136|155137|155138|155139|155140|155142|155143|155145|155146|155148|155149|155150|155151|155152|155154|155156|155157|155158|155159|155160|155162|155163|155164|155165|155168|155169|155172|155173|155175|155176|155177|155178|155179|155180|155181|155183|155185|155187|155189|155190|155191|155192|155193|155194|155196|155197|155199|155200|155201|155202|155204|155205|155206|155207|155208|155209|155210|155211|155212|155214|155215|155216|155217|155218|155219|155220|155221|155222|155223|155224|155225|155226|155227|155228|155230|155231|155232|155233|155234|155235|155236|155237|155238|155239|155240|155241|155242|155247|155248|155250|155251|155252|155253|155254|155255|155256|155259|155260|155261|155262|155263|155265|155266|155269|155270|155273|155274|155276|155277|155280|155281|155282|155283|155284|155285|155286|155287|155288|155289|155290|155291|155292|155293|155297|155298|155300|155301|155302|155303|155304|155305|155306|155307|155309|155311|155313|155315|155318|155319|155321|155322|155323|155324|155325|155326|155327|155328|155329|155330|155333|155335|155336|155337|155338|155339|155340|155344|155345|155346|155347|155348|155349|155350|155351|155352|155353|155354|155355|155356|155357|155359|155360|155361|155362|155363|155364|155365|155366|155367|155368|155369|155370|155371|155372|155373|155374|155375|155376|155377|155378|155379|155383|155384|155385|155388|155389|155391|155392|155393|155394|155395|155396|155397|155398|155399|155400|155402|155403|155404|155405|155406|155407|155408|155409|155410|155411|155412|155414|155415|155416|155417|155418|155419|155420|155421|155422|155423|155424|155425|155426|155427|155428|155429|155430|155431|155432|155433|155434|155435|155436|155437|155438|155439|155440|155441|155442|155443|155444|155445|155446|155447|155448|155449|155450|155451|155452|155453|155454|155455|155456|155457|155458|155459|155460|155461|155462|155463|155464|155465|155466|155467|155468|155469|155470|155471|155472|155473|155474|155475|155476|155477|155478|155479|155480|155481|155482|155483|155484|155485|155486|155487|155488|155489|155490|155491|155492|155493|155494|155495|155496|155497|155498|155499|155500|155501|155502|155503|155504|155505|155506|155507|155508|155509|155510|155511|155512|155513|155514|155515|155516|155517|155518|155519|155520|155521|155522|155523|155524|155525|155526|155527|155528|155529|155530|155531|155532|155533|155534|155535|155536|155537|155538|155539|155540|155541|155542|155543|155544|155545|155546|155547|155548|155549|155550|155551|155552|155553|155554|155555|155556|155557|155558|155559|155560|155561|155562|155563|155564|155565|155566|155567|155568|155569|155570|155571|155572|155573|155574|155575|155576|155577|155578|155579|155580|155581|155582|155583|155584|155585|155586|155587|155588|155589|155590|155591|155592|155593|155594|155595|155596|155597|155598|155599|155600|155601|155602|155603|155604|155605|155606|155607|155608|155609|155610|155611|155612|155613|155614|155615|155616|155617|155618|155619|155620|155621|155622|155623|155624|155625|155626|155627|155628|155629|155630|155631|155632|155633|155634|155635|155636|155637|155638|155639|155640|155641|155642|155643|155644|155645|155646|155647|155648|155649|155650|155651|155652|155653|155654|155655|155656|155657|155658|155659|155660|155661|155662|155663|155664|155665|155666|155667|155668|155669|155670|155671|155672|155673|155674|155675|155676|155677|155678|155679|155680|155681|155682|155683|155684|155685|155686|155687|155688|155689|155690|155691|155692|155693|155694|155695|155696|155697|155698|155699|155700|155701|155702|155703|155704|155705|155706|155707|155708|155709|155710|155711|155712|155713|155714|155715|155716|155717|155718|155719|155720|155721|155722|155723|155724|155725|155726|155727|155728|155729|155730|155731|155732|155733|155734|155735|155736|155737|155738|155739|155740|155741|155742|155743|155744|155745|155746|155747|155748|155749|155750|155751|155752|155753|155754|155755|155756|155757|155758|155759|155760|155761|155762|155763|155764|155765|155766|155767|155768|155769|155770|155771|155772|155773|155774|155775|155776|155777|155778|155779|155780|155781|155782|155783|155784|155785|155786|155787|155788|155789|155790|155791|155792|155793|155794|155795|155796|155797|155798|155799|155800|155801|155802|155803|155804|155805|155806|155807|155808|155809|155810|155811|155812|155813|155814|155815|155816|155817|155818|155819|155820|155821|155822|155823|155824|155825|155826|155827|155828|155829|155830|155831|155832|155833|155834|155835|155836|155837|155838|155839|155840|155841|155842|155843|155844|155847|155848|155849|155850|155851|155852|155853|155854|155855|155856|155857|155858|155860|155861|155862|155863|155864|155865|155866|155867|155868|155869|155870|155871|155872|155873|155874|155875|155876|155877|155878|155879|155880|155881|155882|155883|155884|155885|155886|155887|155888|155889|155890|155891|155892|155893|155894|155895|155896|155897|155898|155899|155900|155901|155902|155903|155904|155905|155906|155907|155908|155909|155910|155911|155913|155914|155915|155916|155917|155918|155919|155920|155921|155922|155923|155924|155925|155926|155927|155928|155929|155930|155931|155932|155933|155935|155936|155937|155941|155942|155944|155945|155946|155947|155948|155949|155952|155953|155954|155955|155958|155959|155960|155962|155963|155964|155966|155968|155969|155970|155971|155972|155973|155974|155975|155976|155977|155978|155979|155980|155981|155982|155983|155984|155985|155986|155988|155989|155990|155991|155993|155994|155995|155998|155999|156000|156001|156002|156003|156004|156005|156006|156007|156008|156009|156010|156011|156012|156013|156014|156015|156016|156018|156020|156022|156023|156024|156026|156027|156028|156029|156030|156031|156032|156033|156034|156035|156036|156037|156038|156039|156040|156041|156042|156043|156044|156045|156046|156047|156048|156049|156050|156051|156052|156053|156054|156055|156056|156057|156058|156059|156060|156061|156062|156063|156064|156065|156066|156067|156068|156069|156070|156071|156072|156073|156074|156075|156076|156077|156078|156079|156080|156081|156082|156083|156084|156085|156086|156087|156088|156089|156090|156091|156092|156094|156095|156096|156097|156098|156099|156100|156101|156102|156103|156104|156105|156106|156107|156108|156109|156111|156113|156114|156115|156116|156117|156118|156119|156120|156121|156122|156123|156124|156126|156127|156128|156129|156130|156131|156132|156134|156136|156137|156138|156139|156140|156141|156142|156143|156144|156145|156146|156147|156148|156149|156150|156151|156152|156153|156154|156155|156156|156158|156159|156160|156161|156163|156164|156165|156167|156168|156169|156170|156173|156175|156176|156177|156178|156179|156181|156182|156183|156185|156186|156187|156188|156189|156190|156191|156192|156193|156194|156195|156196|156198|156199|156200|156203|156206|156207|156208|156209|156210|156212|156214|156217|156221|156222|156223|156225|156226|156227|156230|156231|156232|156233|156234|156235|156236|156237|156238|156243|156244|156246|156247|156248|156249|156250|156251|156252|156253|156255|156257|156258|156259|156260|156261|156262|156263|156264|156265|156266|156267|156268|156269|156270|156271|156274|156275|156277|156278|156280|156281|156285|156286|156287|156288|156289|156290|156291|156292|156294|156295|156296|156297|156298|156303|156304|156305|156306|156307|156308|156309|156310|156311|156314|156315|156316|156317|156318|156319|156321|156322|156323|156324|156325|156326|156327|156328|156329|156330|156331|156332|156333|156334|156335|156336|156337|156338|156339|156340|156341|156342|156343|156345|156346|156347|156348|156349|156351|156352|156353|156354|156355|156356|156357|156359|156360|156361|156362|156365|156366|156367|156368|156369|156370|156371|156372|156373|156374|156377|156378|156379|156380|156381|156382|156383|156384|156385|156386|156387|156388|156389|156390|156391|156392|156394|156395|156396|156397|156398|156399|156400|156401|156403|156404|156405|156406|156407|156408|156409|156410|156411|156414|156415|156416|156418|156419|156420|156421|156422|156423|156424|156426|156427|156429|156430|156431|156432|156433|156434|156435|156436|156437|156438|156439|156440|156441|156442|156443|156444|156445|156446|156447|156448|156449|156450|156451|156452|156453|156454|156455|156456|156457|156458|156460|156461|156462|156463|156464|156465|156466|156467|156469|156470|156473|156474|156475|156476|156477|156478|156479|156481|156482|156483|156484|156485|156486|156487|156488|156489|156490|156491|156493|156495|156496|156497|156498|156500|156501|156502|156503|156504|156505|156506|156507|156508|156511|156512|156513|156514|156515|156516|156517|156518|156519|156520|156521|156522|156524|156525|156526|156527|156528|156529|156530|156531|156532|156533|156534|156535|156536|156537|156538|156540|156541|156542|156543|156544|156545|156546|156547|156548|156549|156550|156551|156552|156553|156554|156555|156556|156557|156558|156559|156560|156561|156562|156563|156564|156565|156566|156567|156568|156569|156570|156571|156572|156573|156574|156576|156577|156578|156579|156580|156581|156582|156583|156584|156585|156586|156587|156588|156589|156590|156591|156592|156593|156594|156595|156596|156598|156599|156600|156601|156602|156603|156604|156605|156606|156607|156608|156609|156610|156612|156613|156614|156615|156616|156617|156618|156619|156620|156621|156622|156623|156624|156625|156626|156627|156628|156629|156630|156631|156632|156635|156636|156638|156639|156642|156645|156646|156647|156648|156649|156650|156651|156652|156656|156657|156658|156659|156662|156663|156664|156665|156667|156670|156671|156672|156673|156674|156675|156676|156677|156678|156679|156680|156681|156682|156683|156684|156685|156686|156687|156688|156689|156690|156691|156692|156693|156694|156695|156696|156697|156698|156699|156700|156701|156702|156703|156704|156705|156706|156707|156708|156709|156710|156711|156712|156713|156714|156715|156716|156717|156718|156719|156720|156721|156722|156723|156724|156725|156726|156727|156728|156729|156730|156731|156732|156733|156734|156735|156736|156737|156738|156739|156740|156741|156742|156743|156744|156745|156746|156747|156748|156749|156750|156751|156752|156753|156754|156755|156756|156757|156758|156759|156760|156761|156762|156763|156764|156765|156766|156767|156768|156769|156770|156771|156772|156773|156774|156775|156776|156777|156778|156779|156780|156781|156782|156783|156784|156785|156786|156787|156788|156789|156790|156791|156792|156793|156794|156795|156796|156797|156798|156799|156800|156801|156802|156803|156804|156805|156806|156807|156808|156809|156810|156811|156812|156813|156814|156815|156816|156817|156818|156819|156820|156821|156822|156823|156824|156825|156826|156827|156828|156829|156830|156831|156832|156833|156834|156835|156836|156837|156838|156839|156840|156841|156842|156843|156844|156845|156846|156847|156848|156849|156850|156851|156852|156853|156854|156855|156856|156857|156858|156859|156860|156861|156862|156863|156864|156865|156866|156867|156868|156869|156870|156871|156872|156873|156874|156875|156876|156877|156878|156879|156880|156881|156882|156883|156884|156885|156886|156887|156888|156889|156890|156891|156892|156893|156894|156895|156896|156897|156898|156899|156900|156901|156902|156903|156904|156905|156906|156907|156908|156909|156910|156911|156912|156913|156914|156915|156916|156917|156918|156919|156920|156921|156922|156923|156924|156925|156926|156927|156928|156929|156930|156931|156932|156933|156934|156935|156936|156937|156938|156939|156940|156941|156942|156943|156944|156945|156946|156947|156948|156949|156950|156951|156952|156953|156954|156955|156956|156957|156958|156959|156960|156961|156962|156963|156964|156965|156966|156967|156968|156969|156970|156971|156972|156973|156974|156975|156976|156977|156978|156979|156980|156981|156982|156983|156984|156985|156986|156987|156988|156989|156990|156991|156992|156993|156994|156995|156996|156997|156998|156999|157000|157001|157002|157003|157004|157005|157006|157007|157008|157009|157010|157011|157012|157013|157014|157015|157016|157017|157018|157019|157020|157021|157023|157024|157025|157026|157027|157028|157030|157031|157032|157034|157035|157036|157037|157038|157039|157040|157041|157042|157043|157044|157045|157046|157049|157050|157054|157057|157059|157060|157063|157064|157065|157066|157067|157068|157069|157071|157072|157074|157075|157076|157077|157078|157080|157081|157082|157083|157084|157087|157088|157090|157091|157092|157093|157094|157096|157098|157099|157100|157101|157102|157103|157104|157105|157106|157107|157108|157109|157111|157113|157114|157115|157116|157117|157118|157119|157120|157121|157122|157123|157125|157127|157128|157130|157131|157132|157133|157134|157135|157136|157137|157138|157140|157141|157142|157143|157144|157145|157146|157147|157148|157149|157150|157151|157152|157153|157154|157155|157156|157157|157158|157159|157160|157162|157163|157164|157165|157167|157168|157169|157170|157171|157172|157174|157175|157176|157177|157178|157179|157180|157181|157184|157185|157186|157187|157188|157189|157192|157193|157194|157195|157196|157197|157198|157199|157200|157201|157203|157204|157206|157207|157209|157210|157211|157212|157213|157215|157216|157217|157218|157219|157220|157221|157222|157225|157226|157227|157228|157230|157231|157232|157233|157235|157236|157237|157238|157239|157240|157241|157242|157243|157244|157245|157246|157247|157248|157249|157250|157251|157252|157253|157255|157256|157257|157258|157259|157260|157261|157262|157264|157265|157266|157268|157269|157272|157273|157275|157276|157277|157278|157279|157281|157282|157283|157285|157287|157288|157289|157290|157291|157292|157293|157294|157295|157296|157297|157298|157299|157301|157302|157303|157304|157305|157306|157308|157309|157310|157311|157312|157313|157314|157315|157316|157317|157318|157319|157320|157321|157322|157323|157324|157325|157326|157327|157328|157329|157331|157332|157333|157334|157335|157336|157337|157338|157339|157340|157341|157342|157343|157344|157345|157347|157348|157349|157350|157351|157352|157353|157354|157355|157356|157357|157358|157359|157360|157361|157362|157363|157364|157365|157366|157367|157369|157370|157372|157373|157374|157375|157376|157377|157378|157379|157380|157382|157383|157384|157385|157386|157387|157388|157389|157390|157391|157392|157393|157394|157395|157396|157397|157398|157399|157400|157402|157403|157404|157405|157406|157407|157408|157409|157410|157411|157412|157414|157415|157416|157417|157418|157419|157420|157421|157422|157424|157426|157427|157428|157429|157431|157433|157434|157435|157436|157437|157438|157439|157440|157441|157442|157443|157444|157446|157448|157449|157450|157451|157452|157453|157454|157455|157456|157457|157458|157459|157460|157461|157462|157463|157464|157466|157467|157468|157469|157470|157471|157472|157473|157474|157475|157477|157478|157479|157480|157481|157482|157485|157486|157487|157488|157489|157490|157491|157492|157494|157495|157496|157498|157499|157500|157501|157502|157503|157504|157505|157506|157507|157510|157511|157512|157513|157514|157515|157516|157517|157518|157520|157521|157522|157523|157524|157526|157527|157529|157530|157531|157532|157535|157537|157540|157542|157543|157544|157545|157549|157550|157551|157552|157554|157556|157557|157558|157559|157560|157561|157563|157564|157565|157566|157567|157570|157572|157573|157575|157576|157578|157579|157580|157582|157583|157584|157585|157586|157587|157588|157589|157590|157594|157595|157596|157598|157599|157600|157601|157602|157603|157604|157605|157606|157607|157608|157609|157610|157611|157612|157614|157615|157616|157617|157618|157619|157621|157622|157623|157624|157625|157626|157628|157631|157632|157633|157634|157635|157636|157638|157639|157640|157641|157644|157645|157646|157647|157648|157649|157650|157651|157653|157654|157655|157656|157657|157658|157659|157660|157661|157662|157663|157664|157665|157666|157667|157668|157669|157670|157671|157672|157673|157678|157679|157681|157682|157683|157684|157686|157687|157688|157690|157691|157693|157696|157697|157698|157699|157700|157701|157702|157703|157704|157705|157706|157707|157708|157709|157710|157711|157714|157715|157716|157717|157718|157719|157720|157721|157723|157724|157725|157726|157728|157729|157730|157731|157733|157734|157735|157737|157738|157739|157740|157741|157742|157743|157746|157747|157748|157749|157750|157751|157753|157754|157755|157756|157758|157759|157760|157761|157762|157763|157764|157765|157766|157767|157768|157769|157770|157771|157772|157773|157774|157776|157777|157778|157779|157780|157781|157782|157786|157787|157788|157789|157791|157793|157794|157795|157796|157799|157800|157801|157802|157803|157804|157805|157806|157808|157809|157810|157811|157812|157813|157814|157815|157816|157818|157819|157820|157821|157822|157823|157824|157825|157826|157827|157828|157829|157830|157831|157832|157833|157834|157836|157837|157838|157839|157840|157841|157842|157843|157845|157846|157847|157848|157849|157850|157851|157852|157853|157854|157855|157856|157857|157858|157859|157860|157861|157862|157863|157864|157865|157866|157867|157868|157869|157870|157871|157872|157873|157874|157877|157878|157879|157882|157883|157884|157885|157886|157887|157888|157889|157890|157892|157893|157894|157895|157896|157897|157898|157899|157900|157901|157902|157903|157904|157907|157908|157909|157910|157911|157913|157914|157915|157916|157917|157918|157919|157920|157921|157922|157923|157924|157925|157926|157927|157928|157929|157930|157931|157932|157933|157934|157935|157936|157937|157938|157939|157940|157941|157942|157943|157944|157945|157946|157947|157948|157949|157950|157951|157952|157953|157954|157955|157956|157957|157958|157959|157960|157961|157962|157963|157964|157965|157966|157967|157968|157969|157970|157971|157972|157973|157974|157975|157976|157977|157978|157979|157980|157981|157982|157983|157984|157985|157986|157987|157988|157989|157990|157991|157992|157993|157994|157995|157996|157997|157998|157999|158000|158001|158002|158003|158004|158005|158006|158007|158008|158009|158010|158011|158012|158013|158014|158015|158016|158017|158018|158019|158020|158021|158022|158023|158024|158025|158026|158027|158028|158029|158030|158031|158032|158033|158034|158035|158036|158037|158038|158039|158040|158041|158042|158043|158044|158045|158046|158047|158048|158049|158050|158051|158052|158053|158054|158055|158056|158057|158058|158061|158062|158063|158064|158065|158067|158068|158069|158071|158072|158073|158074|158075|158076|158077|158078|158079|158081|158082|158085|158086|158087|158088|158089|158090|158091|158092|158093|158094|158095|158096|158097|158098|158099|158100|158101|158102|158103|158104|158105|158106|158107|158108|158109|158110|158111|158112|158113|158114|158115|158116|158117|158118|158120|158121|158122|158123|158124|158125|158126|158127|158128|158129|158130|158131|158132|158133|158134|158135|158136|158137|158138|158139|158140|158141|158142|158143|158144|158145|158146|158147|158148|158149|158150|158151|158152|158153|158154|158155|158156|158157|158158|158159|158160|158161|158162|158163|158164|158165|158166|158167|158168|158169|158170|158171|158172|158173|158174|158175|158176|158177|158178|158179|158180|158181|158182|158183|158185|158187|158188|158189|158190|158191|158192|158193|158194|158195|158196|158197|158198|158199|158200|158201|158202|158203|158204|158205|158206|158207|158209|158210|158211|158212|158213|158214|158215|158216|158217|158218|158219|158220|158221|158222|158223|158224|158225|158226|158227|158228|158229|158230|158231|158232|158233|158234|158235|158236|158237|158238|158239|158240|158241|158242|158243|158244|158245|158246|158247|158248|158249|158250|158251|158252|158253|158254|158255|158256|158257|158258|158259|158260|158261|158262|158264|158265|158266|158267|158269|158270|158271|158272|158273|158274|158275|158276|158277|158278|158279|158280|158281|158283|158284|158285|158286|158287|158288|158289|158290|158291|158292|158293|158294|158295|158296|158297|158298|158300|158301|158302|158303|158304|158305|158306|158307|158308|158309|158310|158311|158312|158313|158314|158315|158316|158317|158318|158319|158320|158321|158322|158323|158324|158325|158326|158327|158328|158329|158330|158331|158333|158334|158335|158337|158338|158339|158340|158341|158342|158343|158344|158345|158346|158347|158348|158349|158350|158351|158352|158353|158354|158355|158356|158358|158359|158360|158361|158362|158363|158364|158365|158366|158368|158369|158370|158371|158372|158373|158374|158376|158377|158378|158379|158380|158381|158382|158383|158384|158385|158386|158387|158388|158389|158390|158391|158392|158393|158394|158395|158396|158397|158398|158399|158400|158401|158402|158403|158404|158405|158406|158407|158408|158409|158410|158411|158412|158413|158414|158416|158417|158418|158419|158420|158421|158422|158424|158425|158426|158427|158428|158429|158430|158433|158434|158436|158437|158438|158439|158440|158441|158442|158443|158444|158445|158447|158448|158449|158450|158451|158452|158453|158454|158455|158456|158457|158458|158459|158460|158461|158462|158465|158466|158467|158468|158469|158470|158471|158472|158473|158474|158475|158476|158477|158478|158479|158480|158481|158482|158483|158484|158485|158486|158487|158488|158489|158490|158491|158492|158493|158494|158495|158496|158497|158498|158499|158500|158501|158502|158503|158504|158505|158506|158507|158508|158509|158510|158511|158512|158513|158514|158515|158516|158517|158519|158520|158521|158522|158523|158524|158525|158526|158527|158528|158529|158530|158531|158532|158533|158534|158535|158536|158538|158539|158540|158541|158542|158543|158544|158545|158546|158547|158548|158549|158550|158552|158553|158554|158555|158556|158557|158559|158560|158561|158562|158563|158564|158565|158566|158567|158568|158569|158570|158571|158572|158573|158574|158575|158576|158577|158578|158579|158580|158581|158582|158583|158584|158585|158586|158587|158588|158589|158590|158591|158592|158593|158594|158595|158596|158597|158598|158599|158600|158601|158602|158603|158604|158605|158606|158607|158608|158609|158610|158612|158613|158614|158615|158616|158617|158618|158619|158620|158621|158622|158623|158624|158625|158626|158627|158628|158629|158630|158632|158634|158635|158636|158637|158638|158639|158640|158642|158643|158644|158645|158646|158647|158648|158649|158650|158651|158652|158653|158654|158655|158656|158657|158658|158659|158660|158661|158662|158663|158664|158665|158666|158667|158668|158669|158670|158671|158672|158673|158674|158675|158676|158677|158678|158679|158680|158681|158682|158683|158684|158685|158686|158687|158689|158690|158691|158692|158693|158694|158695|158696|158697|158698|158699|158700|158701|158702|158703|158704|158705|158706|158707|158708|158709|158710|158711|158712|158713|158714|158715|158716|158717|158718|158719|158720|158721|158722|158723|158724|158725|158726|158727|158728|158729|158731|158732|158734|158735|158736|158737|158738|158739|158740|158741|158742|158743|158744|158745|158746|158747|158748|158749|158750|158752|158753|158754|158755|158757|158758|158759|158760|158761|158762|158763|158764|158765|158766|158768|158769|158770|158772|158774|158775|158776|158777|158778|158779|158780|158781|158782|158783|158784|158785|158786|158787|158788|158789|158790|158791|158793|158794|158795|158796|158797|158798|158799|158800|158801|158802|158804|158805|158806|158807|158808|158809|158810|158811|158812|158815|158816|158817|158818|158819|158820|158822|158823|158824|158825|158826|158827|158828|158829|158830|158831|158832|158833|158834|158835|158836|158837|158838|158839|158840|158841|158842|158843|158845|158846|158847|158848|158849|158850|158851|158852|158853|158854|158855|158856|158857|158858|158859|158860|158861|158862|158863|158864|158865|158866|158867|158868|158869|158870|158871|158872|158873|158874|158875|158876|158877|158878|158879|158880|158881|158882|158883|158884|158885|158886|158887|158888|158889|158890|158893|158894|158895|158896|158897|158898|158899|158901|158902|158903|158904|158905|158906|158907|158908|158909|158910|158911|158914|158915|158916|158917|158918|158919|158920|158921|158922|158923|158924|158925|158926|158927|158928|158929|158931|158932|158933|158935|158936|158937|158938|158939|158940|158941|158942|158944|158945|158946|158947|158948|158949|158950|158951|158953|158954|158955|158956|158957|158958|158959|158960|158961|158962|158963|158964|158965|158966|158967|158968|158969|158970|158972|158973|158974|158975|158976|158978|158979|158980|158981|158982|158983|158984|158985|158986|158987|158989|158990|158991|158992|158993|158994|158995|158996|158997|158998|158999|159001|159002|159003|159004|159006|159007|159008|159009|159010|159011|159012|159013|159014|159015|159016|159017|159018|159019|159020|159021|159022|159023|159024|159025|159026|159027|159028|159029|159030|159031|159032|159033|159034|159035|159036|159037|159038|159039|159040|159041|159042|159043|159044|159047|159048|159049|159050|159051|159052|159053|159055|159056|159057|159058|159059|159060|159061|159064|159065|159066|159067|159068|159069|159070|159071|159072|159073|159074|159075|159076|159077|159078|159079|159080|159081|159082|159084|159085|159088|159089|159090|159091|159092|159093|159094|159095|159096|159097|159098|159099|159100|159101|159102|159103|159104|159105|159108|159110|159115|159118|159119|159121|159123|159127|159128|159129|159131|159132|159134|159135|159136|159137|159141|159142|159143|159144|159146|159147|159148|159149|159150|159151|159152|159154|159155|159157|159158|159159|159160|159161|159162|159163|159166|159168|159169|159170|159171|159172|159173|159175|159176|159177|159178|159179|159180|159181|159183|159184|159185|159186|159187|159188|159189|159190|159191|159192|159193|159194|159195|159196|159197|159198|159199|159200|159201|159202|159203|159204|159205|159206|159207|159208|159210|159211|159212|159213|159214|159215|159216|159217|159218|159219|159220|159221|159222|159223|159224|159225|159226|159227|159228|159229|159230|159231|159232|159233|159234|159235|159237|159238|159239|159240|159241|159242|159243|159244|159245|159246|159247|159249|159250|159251|159252|159253|159254|159255|159256|159263|159264|159267|159271|159272|159273|159274|159276|159277|159279|159280|159281|159282|159283|159285|159286|159287|159288|159289|159291|159293|159294|159295|159296|159297|159298|159299|159300|159301|159302|159303|159304|159305|159306|159307|159308|159309|159310|159311|159312|159313|159314|159315|159316|159317|159318|159319|159320|159321|159322|159323|159324|159325|159327|159328|159329|159330|159331|159332|159335|159336|159337|159338|159339|159340|159341|159342|159343|159344|159345|159346|159347|159348|159349|159350|159351|159352|159353|159354|159355|159356|159357|159358|159360|159361|159362|159363|159364|159365|159367|159368|159369|159370|159371|159372|159374|159376|159377|159378|159379|159380|159381|159382|159383|159384|159385|159386|159387|159388|159389|159390|159394|159395|159396|159397|159398|159399|159400|159401|159402|159403|159409|159410|159411|159412|159413|159414|159416|159417|159418|159419|159420|159421|159422|159423|159424|159425|159429|159430|159431|159432|159433|159436|159437|159438|159441|159443|159444|159445|159447|159448|159449|159450|159451|159452|159453|159454|159455|159456|159457|159458|159459|159460|159461|159463|159464|159465|159467|159468|159469|159470|159471|159472|159474|159475|159476|159477|159478|159479|159480|159481|159482|159484|159485|159490|159491|159492|159493|159495|159497|159498|159499|159500|159501|159503|159504|159505|159506|159507|159508|159509|159510|159511|159512|159513|159514|159515|159516|159517|159518|159519|159520|159521|159522|159523|159524|159525|159526|159527|159528|159529|159530|159531|159532|159533|159534|159535|159536|159537|159538|159540|159541|159542|159543|159544|159545|159546|159547|159548|159549|159550|159551|159552|159553|159554|159555|159556|159557|159558|159559|159560|159561|159562|159563|159564|159565|159569|159570|159571|159573|159575|159576|159578|159579|159580|159581|159584|159585|159586|159587|159588|159591|159592|159593|159594|159595|159596|159597|159598|159600|159601|159602|159603|159604|159605|159606|159607|159608|159609|159610|159611|159612|159613|159614|159615|159616|159617|159618|159619|159621|159622|159623|159624|159625|159626|159627|159628|159629|159630|159631|159632|159633|159639|159640|159641|159642|159643|159645|159646|159647|159648|159650|159651|159652|159653|159654|159655|159656|159657|159658|159659|159660|159661|159662|159663|159664|159665|159666|159667|159668|159669|159670|159673|159675|159677|159678|159679|159680|159681|159682|159683|159684|159685|159686|159687|159688|159689|159690|159691|159693|159694|159695|159697|159698|159701|159706|159707|159709|159710|159711|159712|159714|159715|159716|159717|159718|159719|159720|159721|159722|159723|159724|159725|159726|159727|159728|159729|159730|159731|159732|159733|159734|159735|159736|159737|159738|159739|159740|159748|159749|159750|159751|159752|159753|159754|159755|159756|159757|159758|159759|159761|159763|159764|159765|159766|159767|159768|159769|159770|159771|159772|159776|159777|159779|159780|159781|159782|159783|159784|159785|159786|159787|159790|159791|159792|159794|159795|159796|159797|159798|159799|159800|159801|159802|159806|159807|159808|159809|159810|159811|159812|159813|159814|159815|159816|159817|159818|159819|159820|159821|159822|159823|159824|159825|159826|159827|159828|159829|159830|159831|159832|159833|159834|159835|159836|159837|159840|159841|159842|159843|159844|159845|159846|159847|159850|159851|159854|159855|159856|159858|159859|159860|159863|159864|159866|159867|159868|159869|159872|159873|159875|159876|159877|159878|159879|159880|159881|159882|159883|159884|159885|159886|159887|159889|159890|159891|159892|159893|159894|159895|159896|159897|159898|159899|159900|159902|159903|159904|159905|159906|159907|159908|159909|159913|159914|159916|159917|159918|159919|159920|159921|159922|159923|159924|159925|159926|159927|159928|159929|159930|159931|159932|159933|159934|159935|159936|159938|159939|159940|159941|159942|159943|159944|159946|159947|159948|159949|159950|159951|159952|159953|159954|159955|159956|159957|159959|159960|159961|159962|159963|159964|159966|159967|159968|159969|159970|159971|159972|159973|159974|159975|159976|159977|159979|159981|159983|159984|159985|159986|159987|159989|159990|159991|159992|159993|159995|159996|159997|159998|159999|160000|160001|160002|160003|160004|160005|160006|160007|160008|160009|160010|160011|160013|160014|160015|160016|160017|160018|160019|160020|160021|160022|160023|160024|160025|160026|160027|160028|160029|160030|160031|160032|160033|160035|160036|160037|160038|160039|160040|160041|160042|160043|160044|160045|160046|160048|160056|160057|160058|160059|160060|160061|160067|160068|160069|160070|160072|160073|160074|160075|160076|160078|160079|160080|160081|160082|160083|160084|160085|160086|160087|160088|160089|160090|160091|160092|160093|160094|160095|160096|160097|160099|160100|160101|160102|160103|160104|160105|160106|160107|160109|160110|160111|160112|160113|160114|160118|160119|160122|160123|160124|160125|160126|160127|160128|160130|160131|160132|160133|160134|160136|160137|160138|160139|160140|160141|160142|160143|160144|160149|160150|160151|160152|160153|160154|160155|160156|160157|160158|160159|160160|160161|160162|160163|160164|160165|160166|160167|160168|160169|160170|160171|160172|160173|160174|160175|160176|160177|160179|160180|160181|160183|160184|160185|160186|160187|160188|160189|160190|160191|160192|160193|160194|160195|160196|160199|160200|160201|160202|160203|160204|160205|160206|160207|160208|160211|160212|160213|160214|160215|160216|160217|160218|160221|160222|160223|160224|160225|160226|160227|160228|160229|160230|160231|160232|160233|160234|160235|160237|160238|160239|160240|160241|160242|160243|160245|160246|160248|160249|160250|160253|160254|160255|160256|160257|160258|160260|160261|160263|160264|160265|160266|160267|160270|160271|160272|160273|160274|160275|160276|160277|160278|160279|160280|160281|160282|160283|160284|160285|160286|160287|160288|160289|160290|160291|160292|160293|160294|160295|160296|160297|160298|160299|160300|160301|160303|160305|160306|160307|160308|160309|160310|160311|160312|160313|160314|160315|160316|160317|160318|160319|160320|160321|160322|160325|160328|160329|160333|160334|160335|160340|160341|160342|160343|160344|160345|160346|160347|160348|160349|160350|160351|160352|160353|160355|160356|160357|160358|160359|160360|160361|160362|160363|160364|160365|160366|160367|160368|160369|160370|160371|160373|160375|160376|160377|160378|160379|160380|160381|160382|160383|160384|160385|160386|160387|160388|160389|160390|160391|160392|160393|160394|160395|160397|160398|160399|160400|160401|160402|160403|160404|160405|160406|160408|160409|160410|160411|160412|160413|160414|160415|160416|160417|160418|160419|160420|160421|160422|160423|160424|160425|160426|160427|160428|160429|160430|160434|160435|160436|160437|160438|160439|160440|160441|160442|160443|160444|160445|160446|160448|160449|160451|160452|160453|160454|160455|160456|160457|160458|160459|160460|160461|160463|160464|160465|160466|160467|160468|160469|160470|160471|160472|160473|160474|160475|160476|160477|160478|160479|160480|160481|160482|160483|160484|160485|160486|160487|160488|160489|160491|160492|160493|160494|160495|160496|160497|160498|160499|160500|160501|160502|160503|160504|160505|160506|160507|160508|160509|160510|160511|160512|160515|160517|160518|160519|160520|160521|160522|160523|160524|160525|160526|160527|160528|160529|160530|160531|160532|160533|160534|160535|160536|160537|160538|160539|160540|160541|160542|160545|160546|160547|160551|160552|160553|160557|160558|160559|160560|160561|160563|160564|160566|160567|160568|160569|160570|160571|160572|160573|160574|160577|160578|160579|160580|160581|160584|160585|160586|160587|160588|160589|160590|160591|160592|160594|160595|160596|160597|160598|160599|160600|160602|160603|160604|160605|160606|160607|160608|160609|160610|160611|160612|160613|160614|160615|160616|160617|160618|160619|160620|160621|160622|160623|160624|160625|160626|160627|160628|160629|160630|160631|160632|160633|160634|160635|160636|160637|160638|160639|160640|160641|160642|160643|160644|160645|160646|160647|160648|160649|160650|160651|160652|160653|160654|160655|160656|160657|160661|160662|160663|160664|160665|160667|160668|160669|160670|160671|160672|160673|160674|160675|160676|160677|160678|160679|160680|160681|160682|160683|160684|160685|160686|160687|160688|160689|160690|160691|160692|160693|160694|160695|160698|160699|160700|160701|160702|160703|160704|160705|160706|160707|160708|160709|160710|160711|160712|160714|160715|160716|160717|160718|160719|160720|160724|160725|160726|160727|160728|160729|160731|160732|160733|160734|160735|160736|160737|160738|160739|160740|160741|160742|160743|160744|160745|160746|160749|160750|160751|160753|160754|160755|160756|160757|160759|160760|160761|160762|160763|160764|160765|160766|160768|160769|160772|160773|160774|160775|160776|160777|160781|160782|160783|160784|160785|160786|160787|160788|160789|160790|160791|160792|160793|160794|160795|160796|160797|160798|160799|160800|160801|160802|160803|160807|160808|160809|160810|160812|160813|160814|160815|160816|160817|160819|160820|160821|160822|160823|160824|160825|160826|160827|160828|160829|160830|160831|160832|160833|160834|160835|160836|160837|160838|160839|160840|160841|160842|160843|160844|160845|160846|160847|160848|160849|160854|160856|160857|160861|160865|160867|160869|160871|160872|160874|160875|160876|160878|160879|160881|160882|160883|160884|160891|160894|160895|160896|160900|160901|160904|160906|160907|160909|160910|160911|160912|160913|160914|160915|160916|160918|160919|160920|160922|160923|160924|160927|160928|160929|160931|160932|160933|160934|160936|160937|160940|160941|160942|160943|160944|160945|160946|160947|160948|160950|160951|160952|160957|160958|160959|160961|160964|160965|160966|160968|160969|160970|160971|160972|160973|160974|160975|160976|160977|160978|160979|160980|160982|160983|160984|160985|160986|160987|160989|160990|160991|160992|160993|160994|160995|160996|160997|160998|160999|161000|161001|161002|161003|161004|161005|161006|161007|161008|161009|161010|161011|161012|161013|161014|161015|161016|161017|161018|161019|161020|161021|161023|161024|161025|161026|161027|161028|161029|161030|161032|161033|161034|161035|161036|161037|161038|161039|161040|161041|161042|161044|161045|161046|161049|161050|161051|161052|161054|161055|161056|161057|161058|161059|161060|161061|161062|161063|161064|161065|161066|161067|161068|161069|161070|161071|161072|161073|161074|161075|161076|161077|161078|161079|161080|161081|161082|161084|161085|161086|161087|161088|161089|161090|161092|161093|161094|161095|161096|161097|161098|161099|161100|161101|161102|161103|161104|161105|161106|161107|161108|161109|161110|161111|161112|161113|161114|161115|161116|161117|161118|161119|161120|161121|161122|161123|161124|161125|161126|161127|161128|161129|161130|161131|161132|161133|161134|161135|161136|161138|161139|161140|161141|161142|161143|161144|161145|161146|161147|161148|161149|161150|161151|161152|161153|161154|161155|161156|161157|161158|161159|161160|161161|161162|161163|161164|161165|161167|161168|161169|161170|161171|161172|161173|161174|161176|161177|161178|161179|161180|161181|161182|161183|161184|161185|161186|161187|161188|161189|161190|161191|161192|161193|161194|161195|161196|161197|161198|161199|161200|161201|161202|161203|161204|161205|161206|161207|161208|161209|161210|161211|161212|161213|161214|161215|161216|161217|161218|161219|161220|161221|161222|161223|161225|161226|161227|161228|161229|161230|161231|161232|161234|161235|161236|161237|161238|161239|161240|161241|161242|161243|161244|161245|161246|161247|161248|161249|161250|161251|161252|161253|161254|161255|161256|161257|161258|161259|161260|161261|161262|161263|161264|161265|161266|161267|161268|161269|161270|161273|161274|161275|161276|161278|161280|161282|161283|161285|161286|161287|161288|161289|161290|161291|161292|161293|161294|161295|161296|161297|161298|161299|161300|161301|161302|161303|161304|161305|161306|161307|161308|161309|161310|161311|161312|161313|161314|161315|161316|161317|161318|161319|161320|161321|161322|161323|161324|161325|161326|161327|161328|161329|161330|161331|161332|161333|161334|161335|161336|161337|161338|161339|161340|161341|161342|161343|161344|161345|161347|161348|161349|161350|161351|161352|161353|161354|161355|161356|161357|161358|161359|161360|161361|161362|161363|161364|161365|161366|161367|161368|161369|161370|161371|161372|161373|161374|161375|161376|161377|161378|161379|161380|161381|161382|161383|161384|161385|161386|161387|161388|161389|161390|161391|161392|161393|161394|161395|161396|161397|161398|161399|161400|161401|161402|161403|161404|161405|161406|161407|161408|161409|161410|161411|161412|161413|161414|161415|161416|161417|161418|161419|161420|161421|161422|161423|161424|161425|161426|161427|161428|161429|161430|161431|161432|161433|161434|161435|161436|161437|161438|161439|161440|161441|161442|161443|161444|161445|161446|161447|161448|161449|161450|161453|161454|161455|161459|161460|161461|161463|161464|161465|161466|161467|161468|161469|161470|161471|161472|161473|161474|161475|161476|161477|161478|161479|161480|161481|161482|161483|161484|161485|161486|161487|161488|161489|161491|161492|161493|161494|161499|161500|161501|161502|161503|161504|161505|161506|161507|161508|161509|161515|161516|161517|161519|161520|161521|161522|161524|161525|161526|161527|161528|161529|161530|161531|161532|161533|161534|161535|161536|161537|161538|161539|161540|161541|161542|161543|161544|161546|161547|161548|161549|161550|161551|161552|161553|161554|161555|161556|161557|161558|161559|161560|161561|161562|161563|161564|161565|161566|161567|161568|161569|161570|161571|161572|161573|161574|161575|161576|161577|161578|161579|161580|161581|161582|161583|161584|161585|161586|161587|161588|161589|161590|161591|161592|161593|161594|161595|161596|161597|161598|161599|161600|161601|161602|161603|161604|161605|161606|161607|161608|161609|161610|161611|161612|161613|161614|161615|161616|161617|161618|161619|161620|161621|161622|161623|161624|161625|161626|161627|161628|161629|161630|161631|161632|161633|161634|161635|161636|161637|161638|161639|161640|161641|161642|161643|161644|161645|161646|161647|161648|161649|161650|161651|161652|161653|161654|161655|161656|161657|161658|161659|161660|161661|161662|161663|161664|161665|161666|161667|161668|161669|161670|161671|161672|161673|161674|161675|161676|161677|161678|161679|161680|161681|161682|161683|161684|161685|161686|161687|161688|161689|161690|161691|161692|161693|161694|161695|161696|161697|161698|161699|161700|161701|161702|161703|161704|161705|161706|161707|161708|161709|161711|161712|161713|161714|161715|161717|161718|161720|161721|161722|161723|161724|161728|161730|161733|161734|161735|161736|161737|161738|161741|161742|161743|161744|161745|161746|161747|161748|161749|161750|161751|161752|161753|161754|161755|161756|161757|161758|161759|161760|161761|161762|161763|161764|161765|161766|161767|161771|161772|161773|161774|161775|161781|161782|161783|161784|161785|161790|161791|161794|161795|161796|161800|161801|161802|161803|161808|161809|161810|161812|161813|161814|161815|161816|161817|161818|161819|161821|161822|161826|161827|161828|161829|161831|161832|161833|161834|161835|161836|161837|161838|161839|161840|161841|161842|161843|161844|161845|161846|161848|161849|161850|161855|161856|161857|161859|161860|161862|161863|161864|161866|161868|161869|161871|161872|161875|161876|161879|161880|161881|161882|161883|161884|161885|161886|161887|161888|161889|161890|161891|161892|161893|161894|161895|161896|161897|161898|161899|161900|161901|161908|161909|161910|161911|161912|161919|161920|161921|161922|161923|161924|161932|161933|161935|161936|161937|161939|161941|161942|161943|161944|161945|161946|161947|161948|161949|161957|161960|161961|161962|161963|161964|161966|161967|161970|161971|161972|161975|161976|161977|161978|161979|161981|161983|161984|161987|161988|161989|161990|161993|161995|161996|161997|161998|161999|162000|162001|162002|162003|162004|162005|162006|162007|162008|162009|162010|162012|162017|162018|162019|162020|162021|162022|162027|162028|162029|162030|162032|162034|162035|162036|162037|162038|162039|162040|162041|162042|162044|162045|162048|162049|162050|162052|162053|162054|162055|162058|162059|162061|162062|162063|162066|162067|162073|162076|162077|162082|162083|162084|162085|162086|162087|162088|162089|162090|162091|162092|162095|162096|162097|162099|162100|162101|162102|162103|162104|162105|162106|162107|162108|162110|162113|162114|162115|162117|162118|162120|162121|162122|162123|162125|162127|162129|162130|162133|162134|162135|162136|162139|162140|162141|162146|162147|162148|162149|162150|162151|162152|162153|162154|162155|162156|162157|162158|162159|162160|162161|162162|162163|162165|162166|162167|162168|162169|162170|162171|162172|162173|162174|162175|162176|162177|162178|162179|162180|162181|162182|162183|162184|162185|162186|162187|162188|162189|162190|162191|162192|162193|162194|162195|162196|162197|162198|162199|162200|162201|162202|162203|162204|162205|162206|162207|162208|162209|162210|162211|162212|162213|162214|162215|162216|162217|162218|162219|162220|162221|162222|162223|162224|162225|162226|162227|162228|162229|162230|162231|162232|162233|162234|162235|162236|162237|162238|162239|162240|162241|162242|162243|162245|162246|162247|162248|162249|162250|162251|162252|162253|162254|162255|162256|162257|162258|162259|162260|162261|162262|162263|162265|162266|162267|162268|162269|162270|162271|162272|162273|162274|162275|162276|162277|162278|162279|162280|162281|162282|162283|162284|162285|162287|162288|162289|162290|162291|162292|162293|162294|162295|162296|162297|162298|162299|162300|162301|162302|162303|162304|162305|162307|162308|162309|162310|162311|162312|162313|162314|162315|162316|162317|162318|162319|162320|162321|162322|162323|162324|162325|162326|162327|162328|162329|162330|162331|162332|162333|162334|162335|162336|162337|162338|162339|162340|162341|162342|162343|162344|162345|162346|162347|162348|162349|162350|162352|162353|162354|162355|162356|162357|162358|162359|162360|162361|162362|162364|162365|162366|162367|162368|162369|162370|162371|162372|162373|162374|162375|162376|162377|162378|162379|162380|162381|162382|162383|162384|162385|162386|162388|162389|162390|162391|162392|162393|162394|162396|162397|162398|162399|162400|162401|162402|162403|162404|162405|162406|162407|162408|162409|162410|162411|162412|162413|162414|162415|162416|162417|162418|162419|162420|162421|162422|162423|162424|162425|162426|162427|162428|162429|162430|162431|162432|162433|162434|162435|162436|162437|162438|162439|162440|162441|162442|162443|162444|162446|162448|162450|162451|162454|162455|162456|162459|162461|162462|162463|162464|162465|162466|162467|162468|162470|162472|162473|162475|162476|162480|162482|162483|162484|162485|162486|162489|162491|162493|162494|162495|162496|162498|162499|162500|162501|162502|162503|162504|162505|162506|162507|162508|162509|162510|162511|162512|162513|162514|162515|162516|162517|162518|162520|162521|162522|162523|162524|162525|162526|162527|162528|162529|162530|162531|162532|162533|162534|162535|162536|162538|162539|162540|162541|162542|162543|162544|162545|162546|162547|162548|162549|162550|162551|162552|162553|162554|162555|162556|162557|162558|162559|162564|162565|162566|162567|162568|162569|162570|162571|162572|162573|162574|162575|162576|162577|162578|162579|162580|162581|162582|162583|162584|162585|162586|162587|162588|162589|162590|162591|162592|162593|162594|162595|162596|162597|162598|162599|162600|162601|162602|162603|162604|162605|162606|162607|162608|162609|162610|162611|162612|162613|162614|162615|162616|162617|162618|162621|162622|162623|162624|162625|162626|162627|162628|162629|162630|162631|162632|162633|162634|162635|162636|162637|162639|162640|162644|162645|162646|162647|162648|162649|162650|162651|162652|162653|162654|162655|162656|162657|162658|162659|162660|162661|162662|162663|162664|162665|162666|162667|162668|162669|162670|162671|162672|162673|162674|162675|162676|162677|162678|162679|162680|162681|162682|162683|162684|162685|162686|162687|162688|162690|162691|162692|162694|162695|162696|162697|162698|162699|162700|162701|162702|162703|162704|162705|162706|162707|162708|162709|162710|162711|162712|162713|162714|162715|162716|162717|162718|162719|162720|162721|162722|162723|162724|162725|162726|162727|162728|162729|162730|162731|162732|162733|162734|162735|162736|162737|162738|162739|162740|162741|162742|162743|162744|162745|162746|162747|162748|162749|162750|162751|162752|162753|162754|162755|162756|162757|162758|162759|162760|162761|162762|162763|162764|162765|162766|162767|162768|162769|162770|162771|162772|162773|162774|162775|162776|162777|162778|162779|162780|162781|162782|162783|162784|162785|162786|162787|162788|162789|162790|162791|162792|162793|162794|162795|162796|162797|162798|162799|162800|162801|162802|162803|162804|162805|162806|162807|162808|162809|162810|162811|162812|162813|162814|162815|162816|162817|162818|162819|162820|162821|162822|162823|162824|162825|162826|162827|162828|162829|162830|162831|162832|162833|162834|162835|162836|162837|162838|162839|162840|162841|162842|162843|162844|162845|162846|162847|162848|162849|162850|162851|162852|162853|162854|162855|162856|162857|162858|162859|162860|162861|162862|162863|162864|162865|162866|162867|162868|162869|162870|162871|162872|162873|162874|162875|162876|162877|162878|162879|162880|162881|162882|162883|162884|162885|162886|162887|162889|162890|162891|162892|162893|162895|162896|162897|162898|162900|162901|162902|162910|162912|162915|162916|162917|162919|162920|162921|162923|162927|162928|162929|162930|162934|162935|162936|162942|162943|162944|162945|162946|162947|162948|162950|162951|162954|162955|162957|162958|162959|162960|162961|162962|162963|162967|162968|162969|162971|162972|162973|162975|162976|162977|162979|162980|162981|162982|162983|162984|162985|162986|162988|162990|162991|162992|162993|162996|162997|162999|163000|163001|163003|163004|163005|163006|163007|163009|163010|163011|163013|163014|163015|163016|163018|163021|163022|163027|163028|163030|163031|163032|163033|163034|163035|163036|163037|163038|163039|163040|163043|163045|163046|163048|163053|163054|163055|163056|163057|163059|163060|163061|163062|163065|163066|163068|163069|163070|163071|163072|163075|163076|163077|163078|163080|163081|163082|163083|163085|163086|163087|163088|163089|163090|163092|163093|163094|163100|163102|163103|163104|163106|163108|163110|163111|163112|163113|163115|163116|163120|163121|163122|163124|163125|163126|163130|163131|163132|163136|163137|163141|163145|163146|163147|163148|163150|163153|163154|163155|163158|163159|163164|163165|163166|163167|163168|163170|163174|163175|163177|163178|163179|163181|163182|163183|163184|163185|163186|163187|163188|163189|163190|163192|163193|163195|163197|163198|163199|163200|163201|163203|163204|163205|163206|163207|163208|163210|163213|163217|163218|163219|163221|163226|163227|163228|163232|163233|163236|163237|163238|163239|163241|163242|163243|163244|163245|163247|163249|163250|163252|163253|163256|163257|163259|163260|163261|163262|163265|163266|163269|163271|163274|163275|163276|163280|163281|163283|163284|163286|163287|163288|163289|163290|163291|163293|163294|163295|163298|163299|163300|163302|163304|163305|163308|163309|163310|163311|163312|163314|163316|163317|163318|163322|163323|163324|163325|163326|163327|163328|163329|163333|163334|163337|163338|163340|163342|163343|163344|163345|163346|163347|163349|163350|163351|163352|163353|163355|163359|163361|163362|163363|163367|163368|163370|163372|163373|163376|163379|163380|163381|163382|163383|163384|163385|163386|163389|163390|163392|163393|163394|163395|163396|163397|163400|163401|163402|163403|163404|163405|163407|163408|163412|163413|163414|163416|163417|163418|163419|163422|163423|163424|163427|163429|163430|163431|163432|163433|163434|163435|163436|163438|163439|163441|163442|163445|163446|163449|163450|163453|163457|163459|163462|163463|163464|163465|163466|163467|163468|163469|163470|163471|163472|163473|163474|163475|163476|163477|163478|163480|163481|163482|163484|163485|163487|163488|163491|163492|163493|163494|163495|163496|163497|163498|163499|163500|163501|163502|163503|163504|163506|163507|163509|163511|163512|163516|163517|163518|163519|163521|163522|163523|163527|163534|163535|163538|163539|163540|163541|163542|163544|163545|163546|163548|163551|163556|163557|163559|163561|163562|163563|163564|163565|163566|163567|163568|163569|163571|163572|163573|163576|163579|163580|163582|163583|163584|163588|163589|163592|163593|163594|163597|163601|163603|163606|163608|163609|163611|163615|163618|163624|163628|163629|163631|163632|163633|163634|163635|163636|163637|163639|163644|163645|163647|163648|163649|163650|163651|163652|163656|163657|163659|163660|163661|163663|163664|163665|163666|163667|163668|163674|163675|163676|163681|163683|163684|163685|163687|163688|163689|163690|163691|163692|163698|163699|163700|163701|163703|163704|163705|163706|163708|163711|163713|163714|163717|163719|163720|163722|163723|163724|163725|163726|163729|163730|163732|163733|163735|163736|163737|163738|163739|163740|163741|163744|163745|163747|163748|163749|163750|163751|163752|163754|163755|163756|163757|163761|163762|163764|163767|163768|163769|163770|163772|163773|163774|163775|163776|163777|163778|163780|163781|163782|163783|163784|163785|163786|163787|163788|163789|163791|163792|163793|163795|163796|163798|163800|163802|163806|163807|163812|163814|163815|163816|163818|163819|163820|163821|163822|163823|163824|163825|163826|163827|163831|163832|163833|163834|163835|163839|163840|163841|163846|163848|163849|163850|163855|163856|163857|163859|163860|163861|163862|163863|163866|163868|163869|163870|163871|163872|163874|163875|163877|163878|163879|163880|163883|163886|163888|163890|163891|163893|163896|163897|163898|163903|163904|163905|163906|163907|163908|163909|163910|163911|163912|163913|163917|163925|163926|163927|163928|163929|163931|163932|163934|163937|163938|163939|163940|163941|163942|163943|163944|163945|163946|163947|163950|163951|163952|163953|163954|163957|163960|163961|163964|163965|163968|163970|163971|163972|163973|163974|163975|163976|163977|163980|163981|163983|163985|163986|163987|163989|163990|163991|163993|163994|163997|163998|164000|164001|164002|164003|164004|164005|164009|164010|164011|164013|164014|164015|164016|164017|164018|164020|164021|164022|164023|164024|164026|164029|164031|164032|164033|164034|164035|164037|164039|164040|164043|164048|164049|164050|164051|164052|164053|164054|164055|164056|164057|164058|164059|164060|164061|164062|164063|164064|164065|164066|164067|164068|164069|164070|164071|164079|164080|164081|164082|164083|164084|164085|164086|164087|164088|164089|164090|164091|164092|164093|164094|164095|164096|164097|164098|164099|164100|164101|164102|164103|164104|164105|164106|164107|164108|164109|164110|164111|164112|164113|164114|164115|164116|164117|164118|164119|164120|164121|164122|164123|164124|164125|164126|164127|164128|164129|164130|164131|164132|164133|164134|164135|164136|164137|164138|164139|164140|164141|164142|164143|164144|164145|164146|164147|164148|164149|164150|164151|164152|164153|164154|164155|164156|164157|164158|164159|164160|164161|164162|164163|164164|164165|164166|164167|164168|164169|164170|164171|164172|164173|164174|164175|164176|164177|164178|164179|164180|164181|164182|164183|164184|164185|164186|164187|164188|164189|164190|164191|164192|164193|164194|164195|164196|164197|164198|164199|164200|164201|164202|164203|164204|164205|164206|164207|164208|164209|164210|164211|164212|164213|164214|164215|164216|164217|164218|164219|164220|164221|164222|164223|164224|164225|164226|164227|164228|164229|164230|164231|164232|164233|164234|164235|164236|164237|164238|164239|164240|164241|164242|164243|164244|164245|164246|164247|164248|164249|164250|164251|164252|164253|164254|164255|164256|164257|164258|164259|164260|164261|164262|164263|164264|164265|164266|164267|164268|164269|164270|164271|164272|164273|164274|164275|164276|164277|164278|164279|164280|164281|164282|164283|164284|164285|164286|164287|164288|164289|164290|164291|164292|164293|164294|164295|164296|164297|164298|164299|164300|164301|164302|164303|164304|164305|164306|164307|164308|164309|164310|164311|164312|164313|164314|164315|164316|164317|164318|164319|164320|164321|164322|164323|164324|164325|164326|164327|164328|164329|164330|164331|164332|164333|164334|164335|164336|164337|164338|164339|164340|164341|164342|164343|164344|164345|164346|164347|164348|164349|164350|164351|164352|164353|164354|164355|164356|164357|164358|164359|164360|164361|164362|164363|164364|164365|164366|164367|164368|164369|164370|164371|164372|164373|164374|164375|164376|164377|164378|164379|164380|164381|164382|164383|164384|164385|164386|164387|164388|164389|164390|164391|164392|164393|164394|164395|164396|164397|164398|164399|164400|164401|164402|164403|164404|164405|164406|164407|164408|164409|164410|164411|164412|164413|164414|164415|164416|164417|164418|164419|164420|164421|164422|164423|164424|164425|164426|164427|164428|164429|164430|164431|164432|164433|164434|164435|164436|164437|164438|164439|164440|164441|164442|164443|164444|164445|164446|164447|164448|164449|164450|164451|164452|164453|164454|164455|164456|164457|164458|164459|164460|164461|164462|164463|164464|164465|164466|164467|164468|164469|164470|164471|164472|164473|164474|164475|164476|164477|164478|164479|164480|164481|164482|164483|164484|164485|164486|164487|164488|164489|164490|164491|164492|164495|164496|164497|164498|164499|164500|164501|164502|164503|164504|164505|164506|164507|164508|164509|164510|164511|164512|164513|164514|164515|164516|164517|164518|164519|164520|164521|164522|164523|164524|164525|164526|164527|164528|164529|164530|164531|164532|164533|164534|164535|164536|164537|164538|164539|164540|164541|164542|164543|164544|164545|164546|164547|164548|164549|164550|164551|164552|164553|164554|164555|164556|164557|164558|164559|164560|164561|164562|164563|164564|164565|164566|164567|164568|164569|164570|164571|164572|164573|164574|164575|164576|164577|164578|164579|164580|164581|164582|164583|164584|164585|164586|164587|164588|164589|164590|164591|164592|164593|164594|164595|164596|164597|164598|164599|164600|164601|164602|164603|164604|164605|164606|164607|164608|164609|164610|164611|164612|164613|164614|164615|164616|164617|164618|164619|164620|164621|164622|164623|164624|164625|164626|164627|164628|164629|164630|164631|164632|164633|164634|164635|164636|164637|164638|164639|164640|164641|164642|164643|164644|164645|164647|164648|164649|164650|164651|164652|164653|164654|164655|164656|164657|164658|164659|164660|164661|164662|164663|164664|164665|164666|164667|164669|164670|164671|164672|164673|164674|164675|164676|164677|164678|164679|164680|164681|164682|164683|164684|164685|164686|164687|164688|164689|164690|164691|164692|164693|164694|164695|164696|164697|164698|164699|164700|164701|164702|164703|164704|164705|164706|164707|164708|164709|164710|164711|164712|164713|164714|164715|164716|164717|164718|164719|164720|164721|164722|164723|164724|164725|164726|164727|164728|164729|164730|164731|164732|164733|164734|164735|164736|164737|164738|164739|164740|164741|164742|164743|164744|164745|164747|164748|164749|164750|164751|164752|164753|164754|164755|164756|164757|164758|164759|164760|164761|164762|164763|164764|164765|164766|164767|164768|164769|164770|164771|164772|164773|164774|164775|164776|164777|164778|164779|164780|164781|164782|164783|164784|164785|164786|164787|164788|164789|164790|164791|164792|164793|164794|164795|164796|164797|164798|164799|164800|164801|164802|164803|164804|164805|164806|164807|164808|164809|164810|164811|164812|164813|164814|164815|164816|164817|164818|164819|164820|164821|164822|164823|164824|164825|164826|164827|164828|164829|164830|164831|164832|164833|164834|164835|164836|164837|164838|164839|164840|164841|164842|164843|164844|164845|164846|164847|164848|164849|164850|164851|164852|164853|164854|164855|164856|164857|164858|164859|164860|164861|164862|164863|164864|164865|164866|164867|164868|164869|164870|164871|164872|164873|164874|164875|164876|164877|164878|164880|164881|164882|164883|164884|164885|164886|164887|164888|164889|164890|164891|164892|164893|164894|164895|164896|164897|164898|164899|164900|164901|164902|164903|164904|164905|164906|164907|164908|164909|164910|164911|164912|164913|164914|164915|164916|164917|164918|164919|164920|164921|164922|164923|164924|164925|164926|164927|164928|164929|164930|164931|164932|164933|164934|164935|164936|164937|164938|164939|164940|164941|164942|164943|164944|164945|164946|164947|164948|164949|164950|164951|164952|164953|164954|164955|164956|164957|164958|164959|164960|164961|164962|164963|164964|164965|164966|164967|164968|164969|164970|164971|164972|164973|164974|164975|164976|164977|164978|164979|164980|164981|164982|164983|164984|164985|164986|164987|164988|164989|164990|164991|164992|164993|164994|164995|164996|164997|164998|164999|165000|165001|165002|165003|165004|165005|165006|165007|165008|165009|165010|165011|165012|165013|165014|165015|165016|165017|165018|165019|165020|165021|165022|165023|165024|165025|165026|165027|165028|165029|165030|165031|165032|165033|165034|165035|165036|165037|165038|165039|165040|165041|165042|165043|165044|165045|165046|165047|165048|165049|165050|165051|165052|165053|165054|165055|165056|165057|165058|165059|165060|165061|165062|165063|165064|165065|165066|165067|165068|165069|165070|165071|165072|165073|165074|165075|165076|165077|165078|165079|165080|165081|165082|165083|165084|165085|165086|165087|165088|165089|165090|165091|165092|165093|165094|165095|165096|165097|165098|165099|165100|165101|165102|165103|165104|165105|165106|165107|165108|165109|165110|165111|165112|165113|165114|165115|165116|165117|165118|165119|165120|165121|165122|165123|165124|165125|165126|165127|165128|165129|165130|165131|165132|165133|165134|165135|165136|165137|165138|165139|165140|165141|165142|165143|165144|165145|165146|165147|165148|165149|165150|165151|165152|165153|165154|165155|165156|165157|165158|165159|165160|165161|165162|165163|165164|165165|165166|165167|165168|165169|165170|165171|165172|165173|165174|165175|165176|165177|165178|165179|165180|165181|165182|165183|165184|165185|165186|165187|165188|165189|165190|165191|165192|165193|165194|165195|165196|165197|165198|165199|165200|165201|165202|165203|165204|165205|165206|165207|165208|165209|165210|165211|165212|165213|165214|165215|165216|165217|165218|165219|165220|165221|165222|165223|165224|165225|165226|165227|165228|165229|165230|165231|165232|165233|165234|165235|165236|165237|165238|165239|165240|165241|165242|165243|165244|165245|165246|165247|165248|165249|165250|165251|165252|165253|165254|165255|165256|165257|165258|165259|165260|165261|165262|165263|165264|165265|165266|165267|165268|165269|165270|165271|165272|165273|165274|165275|165276|165277|165278|165279|165280|165281|165282|165283|165284|165285|165286|165287|165288|165289|165290|165291|165292|165293|165294|165295|165296|165297|165298|165299|165300|165301|165302|165303|165304|165305|165306|165307|165308|165309|165310|165311|165312|165313|165314|165315|165316|165317|165318|165319|165320|165321|165322|165323|165324|165325|165326|165327|165328|165329|165330|165331|165332|165333|165334|165335|165336|165337|165338|165339|165340|165341|165342|165343|165344|165345|165346|165347|165348|165349|165350|165351|165352|165353|165354|165355|165356|165357|165358|165359|165360|165361|165362|165363|165364|165365|165366|165367|165368|165369|165370|165371|165372|165373|165374|165375|165376|165377|165378|165379|165380|165381|165382|165384|165385|165386|165387|165388|165389|165390|165391|165392|165393|165394|165395|165396|165397|165398|165399|165400|165401|165402|165403|165404|165405|165406|165407|165408|165409|165410|165411|165412|165413|165414|165415|165416|165417|165418|165419|165420|165421|165422|165423|165424|165425|165426|165427|165428|165429|165430|165431|165432|165433|165434|165435|165436|165437|165438|165439|165440|165441|165442|165443|165444|165445|165446|165447|165448|165449|165450|165451|165452|165453|165454|165455|165456|165457|165458|165459|165460|165461|165462|165463|165464|165465|165466|165467|165468|165469|170625|170626|170636|170640|170641|170642|170645|170646|170647|170648|170651|170654|170665|170666|170667|170674|170675|170677|170680|170682|170683|170684|170685|170686|170687|170688|170689|170690|170691|170692|170693|170696|170698|170706|170707|170708|170709|170710|170715|170718|170722|170723|170724|170725|170727|170728|170729|170730|170733|170734|170735|170737|170741|170742|170752|170753|170754|170755|170756|170757|170758|170759|170760|170761|170762|170763|170764|170765|170766|170767|170768|170769|170770|170771|170772|170773|170774|170775|170776|170777|170778|170779|170780|170781|170782|170783|170784|170785|170786|170787|170788|170789|170790|170791|170792|170793|170794|170795|170796|170797|170798|170799|170800|170801|170802|170803|170804|170805|170806|170807|170808|170809|170810|170811|170812|170813|170814|170815|170816|170817|170818|170819|170820|170821|170822|170823|170824|170825|170826|170827|170828|170829|170830|170831|170832|170833|170834|170835|170836|170837|170838|170839|170840|170841|170842|170843|170844|170845|170846|170847|170848|170849|170850|170851|170852|170853|170854|170855|170856|170857|170858|170859|170860|170861|170862|170863|170864|170865|170866|170867|170868|170869|170870|170871|170872|170873|170874|170875|170876|170877|170878|170879|170880|170881|170882|170884|170885|170886|170887|170888|170889|170890|170891|170892|170893|170894|170895|170896|170897|170898|170899|170900|170901|170902|170903|170904|170905|170906|170907|170908|170909|170910|170911|170912|170913|170914|170915|170916|170917|170918|170919|170920|170921|170922|170923|170924|170925|170926|170927|170928|170929|170930|170931|170932|170933|170934|170935|171854|173631|176682|178472|179482|179700|185724|185725|185726|185727|185728|185729|185730|187098|187099|188069|190190|198655|198656|198657|198658|198659|198660|198661|198662|198663|198664|198665|198666|198667|198668|198669|198670|198671|198672|198673|198674|198675|198676|198677|198678|198679|198680|198681|199036|199825|199826|199827|199828|199829|214205|216066|216067|216068|216069|216070|216071|216072|216073|216074|216075|216076|216077|216078|216079|216080|216081|216082|216083|216084|216085|216086|216087|216088|216089|216090|216091|216092|216093|216094|216095|216096|216097|216098|223672|223673|223674|223675|223676|223677|223678|223679|223680|223681|223682|223683|223684|238515|243946|243947|243948|243950|243951|243952|243954|243957|247369|247370|247371|247372|247373|247374|247375|247376|247377|247378|247379|247380|247381|247382|247383|247384|247385|247386|247780|247781|247782|247783|247784|247785|247786|247787|247788|247789|247790|247791|247792|247793|247794|247795|247796|247797|247798|247799|247800|247801|247802|247803|247804|247805|247806|247807|247808|247809|247810|247811|247812|247813|247814|247815|247816|247817|247818|247819|247820|247821|247822|247823|247824|247825|247826|247827|247828|247829|247830|247831|247832|247833|247834|247835|247836|247837|247838|247839|247840|247841|247842|247843|247844|247845|247846|247847|247848|247849|247850|247851|247852|247853|247854|247855|247856|247857|247858|247859|247860|247861|247862|247863|247864|247865|247866|247867|247868|247869|247870|247871|247872|247873|247874|247875|247876|247877|247878|247879|247880|247881|247882|247883|247884|247885|247886|247887|247888|247889|247890|247891|247892|247893|247894|247895|247896|247897|247898|247899|247900|247901|247902|247903|247904|247905|247906|247907|247908|247909|247910|247911|247912|247913|247914|247915|247916|247917|247918|247919|247920|247921|247922|247923|247924|247925|247926|247927|247928|247929|247930|247931|247932|247933|247934|247935|247936|247937|247938|247939|247940|247941|247942|247943|247944|247945|247946|247947|247948|247949|247950|247951|247952|247953|247954|247955|247956|247957|247958|247959|247960|247961|247962|247963|247964|247965|247966|247967|247968|247969|247970|247971|247972|247973|247974|247975|247976|247977|247978|247979|247980|247981|247982|247983|247984|247985|247986|247987|247988|247989|247990|247991|247992|247993|247994|247995|247996|247997|247998|247999|248000|248001|248002|248003|248004|248005|248006|248007|248008|248009|248010|248011|248012|248013|248014|248015|248016|248017|248018|248019|248020|248021|248022|248023|248024|248025|248026|248027|248028|248029|248030|248031|248032|248033|248034|248035|248036|248037|248038|248039|248040|248041|248042|248043|248044|248045|248046|248047|248048|248049|248050|248051|248052|248053|248054|248055|248056|248057|248058|248059|248060|248061|248062|248063|248064|248065|248066|248067|248068|248069|248070|248071|248072|248073|248074|248075|248076|248077|248078|248079|248080|248081|248082|248083|248084|248085|248086|248087|248088|248089|248090|248091|248092|248093|248094|248095|248096|248097|248098|248099|248100|248101|248102|248103|248104|248105|248106|248107|248108|248109|248110|248111|248112|248113|248114|248115|248116|248117|248118|248119|248120|248121|248122|248123|248124|248125|248126|248127|248128|248129|248130|248131|248132|248133|248134|248135|248136|248137|248138|248139|248140|248141|248142|248143|248144|248145|248146|248147|248148|248149|248150|248151|248152|248153|248154|248155|248156|248157|248158|248159|248160|248161|248162|248163|248164|248165|248166|248167|248168|248169|248170|248171|248172|248173|248174|248175|248176|248177|248178|248179|248180|248181|248182|248183|248184|248185|248186|248187|248188|248189|248190|248191|248192|248193|248194|248195|248196|248197|248198|248199|248200|248201|248202|248203|248204|248205|248206|248207|248208|248209|248210|248211|248212|248213|248214|248215|248216|248217|248218|248219|248220|248221|248222|248223|248224|248225|248226|248227|248228|248229|248230|248231|248232|248233|248234|248235|248236|248237|248238|248239|248240|248241|248242|248243|248244|248245|248246|248247|248248|248249|248250|248251|248252|248253|248254|248255|248256|248257|248258|248259|248260|248261|248262|248263|248264|248265|248266|248267|248268|248269|248270|248271|248272|248273|248274|248275|248276|248277|248278|248279|248280|248281|248282|248283|248284|248285|248286|248287|248288|248289|248290|248291|248292|248293|248294|248295|248296|248297|248298|248299|248300|248301|248302|248303|248304|248305|248306|248307|248308|248309|248310|248311|248312|248313|248314|248315|248316|248317|248318|248319|248320|248321|248322|248323|248324|248325|248326|248327|248328|248329|248330|248331|248332|248333|248334|248335|248336|248337|248338|248339|248340|248341|248342|248343|248344|248345|248346|248347|248348|248349|248350|248351|248352|248353|248354|248355|248356|248357|248358|248359|248360|248361|248362|248363|248364|248365|248366|248367|248368|248369|248370|248371|248372|248373|248374|248375|248376|248377|248378|248379|248380|248381|248382|248383|248384|248385|248386|248387|248388|248389|248390|248391|248392|248393|248394|248395|248396|248397|248398|248399|248400|248401|248402|248403|248404|248405|248406|248407|248408|248409|248410|248411|248412|248413|248414|248415|248416|248417|248418|248419|248420|248421|248422|248423|248424|248425|248426|248427|248428|248429|248430|248431|248432|248433|248434|248435|248436|248437|248438|248439|248440|248441|248442|248443|248444|248445|248446|248447|248448|248449|248450|248451|248452|248453|248454|248455|248456|248457|248458|248459|248460|248461|248462|248463|248464|248465|248466|248467|248468|248469|248470|248471|248472|248473|248474|248475|263499|263500|263501|263502|263503|263504|263505|263506|263507|263508|263509|263510|263511|263512|263513|263514|263515|263516|360810|360858|360909|360947|364125|367314|380483|380484|380485|380486|380487|380488|380489|380490|380491|380492|380493|380494|380495|380496|380497|380498|380499|380500|380501|380502|380503|380504|380505|380506|380507|380508|380509|380510|380511|380512|380513|380514|380515|380516|380517|380518|380519|380520|380521|380522|380523|380524|380525|380526|380527|380528|380529|380530|380531|380532|380533|380534|380535|380536|380537|380538|380539|380540|380541|380542|380543|380544|380545|380546|380547|380548|380549|380550|380551|380552|380553|380554|380555|380556|380557|380558|380559|380560|380561|380562|380563|380564|380565|380566|380567|380568|380569|380570|380571|380572|380573|380574|380575|380576|380577|380578|380579|380580|380581|380582|380583|380584|380585|380586|380587|380588|380589|380590|380602|380603|380604|380605|380606|380607|380608|380609|380610|380611|380612|380613|380614|380615|380616|380617|380618|380619|380620|380621|380622|380623|380624|380625|380626|380627|380628|380629|380630|380631|380632|380633|380634|380635|380636|380637|380638|380639|380640|380641|380642|380643|380644|380645|380646|380647|380648|380649|380650|380651|380652|380653|380654|380655|380656|380657|380658|380659|380660|380661|380662|380663|380664|380665|380666|380667|380668|380669|380670|380671|380672|380673|380674|380675|380676|380677|380678|380679|380680|380681|380682|380683|380684|380685|380686|380687|380688|380689|380690|380691|380692|380693|380694|380695|380696|380697|380698|380699|380700|380701|380702|380703|380704|380705|380706|380707|380708|380709|380710|380711|380712|380713|380714|380715|380716|380717|380718|380719|380720|380721|380722|380723|380724|380725|380726|380727|380728|380729|380730|380731|380732|380733|380734|380735|380736|380737|380738|380739|380740|380741|380742|380743|380744|380745|380746|380747|380748|380749|380750|380751|380752|380753|380754|380755|380756|380757|380758|380759|380760|380761|380762|380763|380764|380765|380766|380767|380768|380769|380770|380771|380772|380773|380774|380775|380776|380777|380778|380779|380780|380781|380782|380783|380784|380785|380786|380787|380788|380789|380790|380791|380792|380793|380794|380795|380796|380797|380798|380799|380800|380801|380802|380803|380804|380805|380806|380807|380808|380809|380810|380811|380812|380813|380814|380815|380816|380817|380818|380819|380820|380821|380822|380823|380824|380825|380826|380827|380828|380829|380830|380831|380832|380833|380834|380835|380836|380837|380838|380839|380840|380841|380842|380843|380844|380845|380846|380847|380848|380849|380850|380851|380852|380853|380854|380855|380856|380857|380858|380859|380860|380861|380862|380863|380864|380865|380866|380867|380868|380869|380870|380871|380872|380873|380874|380875|380876|380877|380878|380879|380880|380881|380882|380883|380884|380885|380886|380887|380888|380889|380890|380891|380892|380893|380894|380895|380896|380897|380898|380899|380900|380901|380902|380903|380904|380905|380906|380907|380908|380909|380910|380911|380912|380913|380914|380915|380916|380917|380918|380919|380920|380921|380922|380923|380924|380925|380926|380927|380928|380929|380930|380931|380932|380933|380934|380935|380936|380937|380938|380939|380940|380941|380942|380943|380944|380945|380946|380947|380948|380949|380950|380951|380952|380953|380954|380955|380956|380957|380958|380959|380960|380961|380962|380963|380964|380965|380966|380967|380968|380969|380970|380971|380972|380973|380974|380975|380976|380977|380978|380979|380980|380981|380982|380983|380984|380985|380986|380987|380988|380989|380990|380991|380992|380993|380994|380995|380996|380997|380998|380999|381000|381001|381002|381003|381004|381005|381006|381007|381008|381009|381010|381011|381012|381013|381014|381015|381016|381017|381018|381019|381020|381021|381022|381023|381024|381025|381026|381027|381028|381029|381030|381031|381032|381033|381034|381035|381036|381037|381038|381039|381040|381041|381042|381043|381044|381045|381046|381047|381048|381049|381050|381051|381052|381053|381054|381055|381056|381057|381058|381059|381060|381061|381062|381063|381064|381065|381066|381067|381068|381069|381070|381071|381072|381073|381074|381075|381076|381077|381078|381079|381080|381081|381082|381083|381084|381085|381086|381087|381088|381089|381090|381091|381092|381093|381094|381095|381096|381097|381098|381099|381100|381101|381102|381103|381104|381105|381106|381107|381108|381109|381110|381111|381112|381113|381114|381115|381116|381117|381118|381119|381120|381121|381122|381123|381124|381125|381126|381127|381128|381129|381130|381131|381132|381133|381134|381135|381136|381137|381138|381139|381140|381141|381142|381143|381144|381145|381146|381147|381148|381149|381150|381151|381152|381153|381154|381155|381156|381157|381158|381159|381160|381161|381162|381163|381164|381165|381166|381167|381168|381169|381170|381171|381172|381173|381174|381175|381176|381177|381178|381179|381180|381181|381182|381183|381184|381185|381186|381187|381188|381189|381190|381191|381192|381193|381194|381195|381196|381197|381198|381199|381200|381201|381202|381203|381204|381205|381206|381207|381208|381209|381210|381211|381212|381213|381214|381215|381216|381217|381218|381219|381220|381221|381222|381223|381224|381225|381226|381227|381228|381229|381230|381231|381232|381233|381234|381235|381236|381237|381238|381239|381240|381241|381242|381243|381244|381245|381246|381247|381248|381249|381250|381251|381252|381253|381254|381255|381256|381257|381258|381259|381260|381261|381262|381263|381264|381265|381266|381267|381268|381269|381270|381271|381272|381273|381274|381275|381276|381277|381278|381279|381280|381281|381282|381283|381284|381285|381286|381287|381288|381289|381290|381291|381292|381293|381294|381295|381296|381297|381298|381299|381300|381301|381302|381303|381304|381305|381306|381307|381308|381309|381310|381311|381312|381313|381314|381315|381316|381317|381318|381319|381320|381321|381322|381323|381324|381325|381326|381327|381328|381329|381330|381331|381332|381333|381334|381335|381336|381337|381338|381339|381340|381341|381342|381343|381344|381345|381346|381347|381348|381349|381350|381351|381352|381353|381354|381355|381356|381357|381358|381359|381360|381361|381362|381363|381364|381365|381366|381367|381368|381369|381370|381371|381372|381373|381374|381375|381376|381377|381378|381379|381380|381381|381382|381383|381384|381385|381386|381387|381388|381389|381390|381391|381392|381393|381394|381395|381396|381397|381398|381399|381400|381401|381402|381403|381404|381405|381406|381407|381408|381409|381410|381411|381412|381413|381414|381415|381416|381417|381418|381419|381420|381421|381422|381423|381424|381425|381426|381427|381428|381429|381430|381431|381432|381433|381434|381435|381436|381437|381438|381439|381440|381441|381442|381443|381444|381445|381446|381447|381448|381449|381450|381451|381452|381453|381454|381455|381456|381457|381458|381459|381460|381461|381462|381463|381464|381465|381466|381467|381468|381469|381470|381471|381472|381473|381474|381475|381476|381477|381478|381479|381480|381481|381482|381483|381484|381485|381486|381487|381488|381489|381490|381491|381492|381493|381494|381495|381496|381497|381498|381499|381500|381501|381502|381503|381504|381505|381506|381507|381508|381509|381510|381511|381512|381513|381514|381515|381516|381517|381518|381519|381520|381521|381522|381523|381524|381525|381526|381527|381528|381529|381530|381531|381532|381533|381534|381535|381536|381537|381538|381539|381540|381541|381542|381543|381544|381545|381546|381547|381548|381549|381550|381551|381552|381553|381554|381555|381556|381557|381558|381559|381560|381561|381562|381563|381564|381565|381566|381567|381568|381569|381570|381571|381572|381573|381574|381575|381576|381577|381578|381579|381580|381581|381582|381583|381584|381585|381586|381587|381588|381589|381590|381591|381592|381593|381594|381595|381596|381597|381598|381599|381600|381601|381602|381603|381604|381605|381606|381607|381608|381609|381610|381611|381612|381613|381614|381615|381616|381617|381618|381619|381620|381621|381622|381623|381624|381625|381626|381627|381628|381629|381630|381631|381632|381633|381634|381635|381636|381637|381638|381639|381640|381641|381642|381643|381644|381645|381646|381647|381648|381649|381650|381651|381652|381653|381654|381655|381656|381657|381658|381659|381660|381661|381662|381663|381664|381665|381666|381667|381668|381669|381670|381671|381672|381673|381674|381675|381676|381677|381678|381679|381680|381681|381682|381683|381684|381685|381686|381687|381688|381689|381690|381691|381692|381693|381694|381695|381696|381697|381698|381699|381700|381701|381702|381703|381704|381705|381706|381707|381708|381709|381710|381711|381712|381713|381714|381715|381716|381717|381718|381719|381720|381721|381722|381723|381724|381725|381726|381727|381728|381729|381730|381731|381732|381733|381734|381735|381736|381737|381738|381739|381740|381741|381742|381743|381744|381745|381746|381747|381748|381749|381750|381751|381752|381753|381754|381755|381756|381757|381758|381759|381760|381761|381762|381763|381764|381765|381766|381767|381768|381769|381770|381771|381772|381773|381774|381775|381776|381777|381778|381779|381780|381781|381782|381783|381784|381785|381786|381787|381788|381789|381790|381791|381792|381793|381794|381795|381796|381797|381798|381799|381800|381801|381802|381803|381804|381805|381806|381807|381808|381809|381810|381811|381812|381813|381814|381815|381816|381817|381818|381819|381820|381821|381822|381823|381824|381825|381826|381827|381828|381829|381830|381831|381832|381833|381834|381835|381836|381837|381838|381839|381840|381841|381842|381843|381844|381845|381846|381847|381848|381849|381850|381851|381852|381853|381854|381855|381856|381857|381858|381859|381860|381861|381862|381863|381864|381865|381866|381867|381868|381869|381870|381871|381872|381873|381874|381875|381876|381877|381878|381879|381880|381881|381882|381883|381884|381885|381886|381887|381888|381889|381890|381891|381892|381893|381894|381895|381896|381897|381898|381899|381900|381901|381902|381903|381904|381905|381906|381907|381908|381909|381910|381911|381912|381913|381914|381915|381916|381917|381918|381919|381920|381921|381922|381923|381924|381925|381926|381927|381928|381929|381930|381931|381932|381933|381934|381935|381936|381937|381938|381939|381940|381941|381942|381943|381944|381945|381946|381947|381948|381949|381950|381951|381952|381953|381954|381955|381956|381957|381958|381959|381960|381961|381962|381963|381964|381965|381966|381967|381968|381969|381970|381971|381972|381973|381974|381975|381976|381977|381978|381979|381980|381981|381982|381983|381984|381985|381986|381987|381988|381989|381990|381991|381992|381993|381994|381995|381996|381997|381998|381999|382000|382001|382002|382003|382004|382005|382006|382007|382008|382009|382010|382011|382012|382013|382014|382015|382016|382017|382018|382019|382020|382021|382022|382023|382024|382025|382026|382027|382028|382029|382030|382031|382032|382033|382034|382035|382036|382037|382038|382039|382040|382041|382042|382043|382044|382045|382046|382047|382048|382049|382050|382051|382052|382053|382054|382055|382056|382057|382058|382059|382060|382061|382062|382063|382064|382065|382066|382067|382068|382069|382070|382071|382072|382073|382074|382075|382076|382077|382078|382079|382080|382081|382082|382083|382084|382085|382086|382087|382088|382089|382090|382091|382092|382093|382094|382095|382096|382097|382098|382099|382100|382101|382102|382103|382104|382105|382106|382107|382108|382109|382110|382111|382112|382113|382114|382115|382116|382117|382118|382119|382120|382121|382122|382123|382124|382125|382126|382127|382128|382129|382130|382131|382132|382133|382134|382135|382136|382137|382138|382139|382140|382141|382142|382143|382144|382145|382146|382147|382148|382149|382150|382151|382152|382153|382154|382155|382156|382157|382158|382159|382160|382161|382162|382163|382164|382165|382166|382167|382168|382169|382170|382171|382172|382173|382174|382175|382176|382177|382178|382179|382180|382181|382182|382183|382184|382185|382186|382187|382188|382189|382190|382191|382192|382193|382194|382195|382196|382197|382198|382199|382200|382201|382202|382203|382204|382205|382206|382207|382208|382209|382210|382211|382212|382213|382214|382215|382216|382217|382218|382219|382220|382221|382222|382223|382224|382225|382226|382227|382228|382229|382230|382231|382232|382233|382234|382235|382236|382237|382238|382239|382240|382241|382242|382243|382244|382245|382246|382247|382248|382249|382250|382251|382252|382253|382254|382255|382256|382257|382258|382259|382260|382261|382262|382263|382264|382265|382266|382267|382268|382269|382270|382271|382272|382273|382274|382275|382276|382277|382278|382279|382280|382281|382282|382283|382284|382285|382286|382287|382288|382289|382290|382291|382292|382293|382294|382295|382296|382297|382298|382299|382300|382301|382302|382303|382304|382305|382306|382307|382308|382309|382310|382311|382312|382313|382314|382315|382316|382317|382318|382319|382320|382321|382322|382323|382324|382325|382326|382327|382328|382329|382330|382331|382332|382333|382334|382335|382336|382337|382338|382339|382340|382341|382342|382343|382344|382345|382346|382347|382348|382349|382350|382351|382352|382353|382354|382355|382356|382357|382358|382359|382360|382361|382362|382363|382364|382365|382366|382367|382368|382369|382370|382371|382372|382373|382374|382375|382376|382377|382378|382379|382380|382381|382382|382383|382384|382385|382386|382387|382388|382389|382390|382391|382392|382393|382394|382395|382396|382398|382399|382400|382401|382402|382403|382404|382405|382406|382407|382408|382409|382410|382411|382412|382413|382414|382415|382416|382417|382418|382419|382420|382421|382422|382423|382424|382425|382426|382427|382428|382429|382430|382431|382432|382433|382434|382435|382436|382437|382438|382439|382440|382441|382442|382443|382444|382445|382446|382447|382448|382449|382450|382451|382452|382453|382454|382455|382456|382457|382458|382459|382460|382461|382462|382463|382464|382465|382466|382467|382468|382469|382470|382471|382472|382473|382474|382475|382476|382477|382478|382479|382480|382481|382482|382483|382484|382485|382486|382487|382488|382489|382490|382491|382492|382493|382494|382495|382496|382497|382498|382499|382500|382501|382502|382503|382504|382505|382506|382507|382508|382509|382510|382511|382512|382513|382514|382515|382516|382517|382518|382519|382520|382521|382522|382523|382524|382525|382526|382527|382528|382529|382530|382531|382532|382533|382534|382535|382536|382537|382538|382539|382540|382541|382542|382543|382544|382545|382546|382547|382548|382549|382550|382551|382552|382553|382554|382555|382556|382557|382558|382559|382560|382561|382562|382563|382564|382565|382566|382567|382568|382569|382570|382571|382572|382573|382574|382575|382576|382577|382578|382579|382580|382581|382582|382583|382584|382585|382586|382587|382588|382589|382590|382591|382592|382593|382594|382595|382596|382597|382598|382599|382600|382601|382602|382603|382604|382605|382606|382607|382608|382609|382610|382611|382612|382613|382614|382615|382616|382617|382618|382619|382620|382621|382622|382623|382624|382625|382626|382627|382628|382629|382630|382631|382632|382633|382634|382635|382636|382637|382638|382639|382641|382643|382644|382645|382646|382647|382649|382650|382651|382652|382653|382655|382656|382657|382658|382659|382660|382661|382662|382663|382664|382665|382666|382667|382669|382670|382671|382672|382673|382674|382675|382676|382677|382678|382679|382680|382681|382682|382683|382684|382685|382686|382688|382689|382691|382692|382693|382694|382695|382696|382698|382699|382700|382701|382702|382703|382704|382705|382706|382707|382708|382709|382710|382711|382712|382713|382714|382715|382716|382717|382718|382719|382720|382721|382722|382723|382724|382726|382727|382728|382730|382731|382732|382733|382734|382735|382736|382737|382738|382739|382740|382741|382742|382743|382744|382745|382746|382747|382748|382749|382750|382751|382752|382753|382754|382755|382756|382758|382759|382760|382761|382762|382763|382764|382765|382766|382767|382768|382769|382770|382771|382772|382773|382774|382775|382776|382777|382778|382779|382780|382781|382782|382783|382784|382785|382786|382787|382788|382789|382790|382791|382792|382793|382794|382795|382796|382797|382798|382799|382800|382801|382802|382803|382805|382806|382807|382808|382809|382810|382811|382812|382813|382814|382815|382816|382817|382818|382820|382821|382822|382823|382824|382825|382827|382828|382829|382830|382831|382832|382833|382834|382835|382836|382837|382838|382839|382840|382841|382842|382843|382844|382845|382846|382847|382848|382850|382851|382852|382853|382854|382855|382856|382858|382859|382860|382861|382862|382863|382864|382865|382866|382867|382868|382869|382870|382871|382872|382873|382874|382875|382876|382877|382878|382879|382880|382881|382882|382883|382885|382886|382887|382888|382889|382890|382891|382892|382893|382894|382896|382897|382898|382899|382900|382901|382902|382903|382904|382905|382906|382907|382908|382909|382910|382911|382912|382913|382914|382915|382916|382917|382918|382919|382920|382921|382922|382923|382924|382925|382926|382927|382928|382929|382930|382931|382932|382933|382934|382935|382936|382937|382938|382939|382940|382941|382942|382943|382944|382945|382946|382947|382948|382949|382950|382951|382952|382953|382954|382955|382956|382957|382958|382959|382960|382961|382962|382963|382964|382965|382966|382967|382968|382969|382970|382971|382972|382973|382974|382975|382977|382978|382979|382980|382981|382982|382983|382984|382985|382986|382987|382988|382989|382990|382991|382992|382993|382994|382995|382996|382997|382998|382999|383000|383002|383003|383004|383005|383006|383007|383008|383009|383010|383011|383014|383015|383016|383017|383018|383019|383020|383021|383022|383023|383024|383025|383026|383027|383028|383029|383030|383031|383032|383033|383034|383035|383036|383037|383038|383039|383040|383041|383043|383044|383045|383046|383047|383048|383049|383050|383051|383052|383053|383054|383055|383056|383057|383058|383059|383060|383061|383062|383063|383064|383065|383066|383067|383068|383069|383070|383071|383072|383074|383075|383076|383077|383078|383079|383080|383081|383082|383083|383084|383085|383087|383088|383089|383090|383091|383092|383093|383094|383095|383096|383097|383098|383099|383100|383101|383102|383103|383105|383106|383107|383108|383109|383110|383111|383113|383114|383115|383117|383118|383119|383120|383121|383122|383123|383124|383125|383126|383127|383128|383129|383130|383133|383134|383135|383136|383137|383138|383139|383140|383141|383143|383144|383145|383146|383148|383149|383150|383151|383152|383153|383154|383155|383156|383157|383158|383160|383161|383162|383163|383164|383165|383166|383167|383168|383170|383171|383172|383173|383174|383175|383176|383177|383178|383179|383180|383181|383182|383183|383184|383185|383186|383187|383188|383189|383190|383191|383193|383194|383195|383196|383197|383198|383199|383200|383201|383202|383203|383204|383205|383206|383207|383208|383209|383210|383211|383212|383213|383214|383215|383216|383217|383218|383219|383220|383221|383222|383223|383224|383225|383227|383228|383229|383230|383231|383232|383233|383234|383235|383236|383237|383238|383239|383240|383241|383243|383244|383245|383246|383247|383248|383249|383250|383251|383252|383253|383254|383255|383256|383257|383258|383259|383260|383261|383262|383263|383264|383265|383266|383267|383268|383270|383271|383272|383273|383274|383275|383276|383277|383278|383279|383280|383281|383282|383283|383284|383285|383286|383287|383288|383289|383290|383291|383292|383293|383294|383295|383296|383297|383298|383300|383301|383302|383303|383304|383306|383308|383309|383310|383311|383312|383313|383314|383315|383316|383317|383318|383319|383320|383321|383322|383323|383324|383325|383326|383327|383328|383329|383330|383331|383332|383333|383334|383335|383336|383337|383338|383339|383340|383341|383342|383343|383344|383345|383346|383347|383348|383349|383351|383352|383354|383355|383356|383357|383359|383360|383362|383363|383364|383365|383366|383367|383368|383369|383370|383371|383372|383373|383374|383375|383376|383377|383378|383379|383380|383381|383382|383383|383384|383385|383386|383387|383388|383389|383390|383391|383392|383393|383394|383395|383396|383397|383398|383399|383400|383401|383402|383403|383404|383405|383406|383407|383408|383409|383410|383412|383413|383414|383415|383416|383417|383418|383419|383420|383421|383422|383423|383424|383425|383426|383427|383428|383430|383431|383432|383433|383435|383436|383437|383438|383439|383440|383441|383442|383443|383444|383445|383446|383447|383449|383450|383451|383452|383453|383454|383455|383456|383457|383458|383459|383461|383462|383463|383464|383465|383466|383467|383468|383469|383470|383471|383472|383473|383474|383475|383476|383477|383478|383479|383480|383482|383483|383484|383485|383486|383487|383488|383489|383490|383491|383492|383493|383494|383495|383496|383497|383498|383499|383500|383503|383504|383507|383508|383509|383511|383512|383513|383514|383515|383517|383519|383520|383521|383522|383524|383525|383526|383527|383528|383529|383530|383531|383532|383533|383534|383535|383536|383537|383538|383539|383540|383541|383542|383543|383544|383545|383546|383547|383548|383549|383550|383552|383553|383555|383556|383557|383558|383559|383560|383561|383562|383563|383564|383565|383566|383567|383568|383569|383570|383571|383572|383573|383574|383575|383576|383577|383578|383579|383581|383582|383583|383584|383585|383586|383587|383588|383589|383590|383591|383592|383593|383594|383595|383596|383597|383598|383599|383600|383601|383602|383603|383604|383605|383606|383607|383608|383609|383611|383612|383613|383614|383615|383616|383617|383619|383620|383621|383622|383623|383624|383625|383626|383627|383628|383629|383630|383631|383632|383633|383634|383635|383636|383637|383638|383639|383640|383641|383642|383643|383644|383645|383646|383647|383648|383649|383650|383651|383652|383653|383654|383655|383656|383657|383658|383659|383660|383661|383662|383663|383664|383665|383666|383667|383668|383669|383670|383671|383672|383673|383674|383675|383676|383677|383679|383680|383681|383682|383683|383684|383685|383686|383687|383688|383689|383690|383691|383692|383693|383694|383695|383696|383697|383698|383699|383700|383701|383702|383703|383704|383705|383706|383707|383708|383710|383711|383712|383713|383714|383715|383716|383717|383718|383719|383720|383721|383723|383724|383725|383726|383727|383728|383729|383730|383731|383732|383733|383735|383736|383738|383739|383740|383742|383743|383744|383747|383748|383749|383750|383751|383752|383753|383754|383755|383756|383757|383758|383759|383760|383761|383762|383763|383764|383765|383766|383767|383768|383769|383770|383771|383772|383773|383774|383775|383777|383778|383779|383780|383781|383782|383783|383784|383785|383786|383787|383788|383789|383790|383791|383792|383793|383794|383795|383796|383797|383798|383799|383800|383801|383802|383803|383804|383805|383806|383807|383808|383809|383810|383811|383812|383813|383814|383815|383816|383817|383818|383819|383820|383821|383822|383823|383824|383825|383826|383827|383829|383830|383831|383832|383833|383834|383835|383836|383837|383838|383839|383840|383841|383842|383844|383845|383846|383847|383848|383850|383851|383852|383853|383855|383856|383857|383858|383859|383860|383861|383862|383863|383864|383865|383866|383867|383869|383870|383871|383872|383873|383874|383875|383876|383877|383878|383880|383881|383882|383883|383884|383885|383886|383887|383888|383889|383891|383892|383893|383895|383896|383897|383898|383899|383900|383901|383902|383903|383904|383905|383906|383907|383908|383909|383910|383911|383912|383913|383914|383916|383917|383918|383919|383920|383922|383923|383924|383925|383926|383927|383928|383929|383930|383931|383932|383933|383934|383936|383937|383938|383939|383940|383942|383943|383944|383945|383946|383947|383948|383949|383950|383951|383952|383953|383954|383955|383956|383957|383958|383959|383960|383961|383962|383963|383964|383965|383966|383967|383968|383969|383970|383972|383973|383974|383975|383976|383977|383978|383979|383980|383981|383982|383983|383984|383985|383986|383987|383988|383989|383990|383991|383992|383993|383994|383995|383996|383997|383998|383999|384000|384001|384002|384003|384004|384005|384006|384007|384008|384010|384012|384013|384014|384015|384016|384017|384018|384019|384020|384021|384022|384023|384024|384025|384027|384028|384029|384030|384031|384032|384033|384034|384035|384036|384037|384038|384039|384040|384041|384042|384043|384044|384045|384046|384048|384049|384050|384051|384052|384053|384054|384055|384056|384057|384058|384059|384060|384061|384062|384063|384064|384065|384066|384067|384068|384069|384070|384071|384072|384074|384075|384076|384077|384078|384079|384080|384081|384082|384083|384085|384086|384087|384088|384089|384091|384092|384093|384094|384095|384096|384097|384098|384099|384100|384101|384102|384103|384104|384105|384106|384107|384108|384109|384110|384111|384112|384113|384114|384116|384117|384118|384119|384120|384121|384122|384123|384124|384125|384126|384127|384128|384129|384130|384131|384132|384133|384134|384135|384136|384137|384138|384139|384140|384141|384142|384143|384145|384146|384147|384148|384149|384150|384151|384152|384153|384154|384155|384156|384157|384158|384159|384160|384161|384162|384164|384165|384166|384167|384168|384169|384170|384171|384172|384173|384174|384176|384177|384178|384179|384180|384181|384182|384183|384184|384185|384186|384187|384188|384189|384190|384191|384192|384193|384194|384195|384196|384197|384198|384199|384200|384201|384202|384204|384205|384206|384207|384208|384209|384210|384211|384212|384214|384215|384216|384217|384218|384219|384220|384221|384222|384223|384224|384225|384226|384227|384228|384229|384231|384233|384234|384235|384236|384237|384238|384239|384240|384241|384242|384243|384244|384245|384246|384247|384248|384249|384250|384251|384252|384253|384254|384255|384256|384257|384258|384259|384260|384261|384262|384263|384264|384265|384266|384267|384268|384269|384270|384271|384272|384273|384274|384275|384276|384277|384278|384279|384280|384281|384282|384283|384284|384285|384286|384287|384288|384291|384292|384293|384294|384295|384296|384297|384298|384299|384300|384301|384302|384303|384304|384305|384306|384307|384308|384309|384310|384311|384312|384313|384314|384315|384316|384317|384318|384319|384320|384321|384322|384324|384325|384326|384327|384328|384329|384330|384331|384332|384333|384334|384335|384336|384340|384341|384342|384343|384344|384345|384346|384347|384348|384349|384350|384351|384352|384353|384354|384355|384356|384357|384358|384359|384360|384361|384362|384363|384364|384365|384366|384367|384368|384369|384370|384372|384373|384374|384375|384376|384377|384378|384379|384382|384383|384384|384385|384387|384388|384389|384390|384740|384741|384742|384743|384744|384745|384746|384747|384748|384749|384750|384751|384752|384753|384754|384755|384756|384757|384758|384759|384760|384761|384762|384763|384764|384765|384766|384767|384768|384769|384770|384771|384772|384773|384774|384775|384776|384777|384778|384779|384780|384781|384782|384783|384784|384785|384786|384787|384788|384789|384790|384791|384792|384793|384794|384795|384796|384797|384798|384799|384800|384801|384802|384803|384804|384805|384806|384807|384808|384809|384810|384811|384812|384813|384814|384815|384816|384817|384818|384819|384820|384821|384822|384823|384824|384825|384826|384827|384828|384829|384830|384831|384832|384833|384834|384835|384836|384837|384838|384839|384840|384841|384842|384843|384844|384845|384846|384847|384848|384849|384850|384851|384852|384853|384854|384855|384856|384857|384858|384859|384860|384861|384862|384863|384864|384865|384866|384867|384868|384869|384870|384871|384872|384873|384874|384875|384876|384877|384878|384879|384880|384881|384882|384883|384884|384885|384886|384887|384888|384889|384890|384891|384892|384893|384894|384895|384896|384897|384898|384899|384900|384901|384902|384903|384904|384905|384906|384907|384908|384909|384910|384911|384912|384913|384914|384915|384916|384917|384918|384919|384920|384921|384922|384923|384924|384925|384926|384927|384928|384929|384930|384931|384932|384933|384934|384935|384936|384937|384938|384939|384940|384941|384942|384943|384944|384945|384946|384947|384948|384949|384950|384951|384952|384953|384954|384955|384956|384957|384958|384959|384960|384961|384962|384963|384964|384965|384966|384967|384968|384969|384970|384971|384972|384973|384974|384975|384976|384977|384978|384979|384980|384981|384982|384983|384984|384985|384986|384987|384988|384989|384990|384991|384992|384993|384994|384995|384996|384997|384998|384999|385000|385001|385002|385003|385004|385005|385006|385007|385008|385009|385010|385011|385012|385013|385014|385015|385016|385017|385018|385019|385020|385021|385022|385023|385024|385025|385026|385027|385028|385029|385030|385031|385032|385033|385034|385035|385036|385037|385038|385039|385040|385041|385042|385043|385044|385045|385046|385047|385048|385049|385050|385051|385052|385053|385054|385055|385056|385057|385058|385059|385060|385061|385062|385063|385064|385065|385066|385067|385068|385069|385070|385071|385072|385073|385074|385075|385076|385077|385078|385079|385080|385081|385082|385083|385084|385085|385086|385087|385088|385089|385090|385091|385092|385093|385094|385095|385096|385097|385098|385099|385100|385101|385102|385103|385104|385105|385106|385107|385108|385109|385110|385111|385112|385113|385114|385115|385116|385117|385118|385119|385120|385121|385122|385123|385124|385125|385126|385127|385128|385129|385130|385131|385132|385133|385134|385135|385136|385137|385138|385139|385140|385141|385142|385143|385144|385145|385146|385147|385148|385149|385150|385151|385152|385153|385154|385155|385156|385157|385158|385159|385160|385161|385162|385163|385164|385165|385166|385167|385168|385169|385170|385171|385172|385173|385174|385175|385176|385177|385178|385179|385180|385181|385182|385183|385184|385185|385186|385187|385188|385189|385190|385191|385192|385193|385194|385195|385196|385197|385198|385199|385200|385201|385202|385203|385204|385205|385206|385207|385208|385209|385210|385211|385212|385213|385214|385215|385216|385217|385218|385219|385220|385221|385222|385223|385224|385225|385226|385227|385228|385229|385230|385231|385232|385233|385234|385235|385236|385237|385238|385239|385240|385241|385242|385243|385244|385245|385246|385247|385248|385249|385250|385251|385252|385253|385254|385255|385256|385257|385258|385259|385260|385261|385262|385263|385264|385265|385266|385267|385268|385269|385270|385271|385272|385273|385274|385275|385276|385277|385278|385279|385280|385281|385282|385283|385284|385285|385286|385287|385288|385289|385290|385291|385292|385293|385294|385295|385296|385297|385298|385299|385300|385301|385302|385303|385304|385305|385306|385307|385308|385309|385310|385311|385312|385313|385314|385315|385316|385317|385318|385319|385320|385321|385322|385323|385324|385325|385326|385327|385328|385329|385330|385331|385332|385333|385334|385335|385336|385337|385338|385339|385340|385341|385342|385343|385344|385345|385346|385347|385348|385349|385350|385351|385352|385353|385354|385355|385356|385357|385358|385359|385360|385361|385362|385363|385364|385365|385366|385367|385368|385369|385370|385371|385372|385373|385374|385375|385376|385377|385378|385379|385380|385381|385382|385383|385384|385385|385386|385387|385388|385389|385390|385391|385392|385393|385394|385395|385396|385397|385398|385399|385400|385401|385402|385403|385404|385405|385406|385407|385408|385409|385410|385411|385412|385413|385414|385415|385416|385417|385418|385419|385420|385421|385422|385423|385424|385425|385426|385427|385428|385429|385430|385431|385432|385433|385434|385435|385436|385437|385438|385439|385440|385441|385442|385443|385444|385445|385446|385447|385448|385449|385450|385451|385452|385453|385454|385455|385456|385457|385458|385459|385460|385461|385462|385463|385464|385465|385466|385467|385468|385469|385470|385471|385472|385473|385474|385475|385476|385477|385478|385479|385480|385481|385482|385483|385484|385485|385486|385487|385488|385489|385490|385491|385492|385493|385494|385495|385496|385497|385498|385499|385500|385501|385502|385503|385504|385505|385506|385507|385508|385509|385510|385511|385512|385513|385514|385515|385516|385517|385518|385519|385520|385521|385522|385523|385524|385525|385526|385527|385528|385529|385530|385531|385532|385533|385534|385535|385536|385537|385538|385539|385540|385541|385542|385543|385544|385545|385546|385547|385548|385549|385550|385551|385552|385553|385554|385555|385556|385557|385558|385559|385560|385561|385562|385563|385564|385565|385566|385567|385568|385569|385570|385571|385572|385573|385574|385575|385576|385577|385578|385579|385580|385581|385582|385583|385584|385585|385586|385587|385588|385589|385590|385591|385592|385593|385594|385595|385596|385597|385598|385599|385600|385601|385602|385603|385604|385605|385606|385607|385608|385609|385610|385611|385612|385613|385614|385615|385616|385617|385618|385619|385620|385621|385622|385623|385624|385625|385626|385627|385628|385629|385630|385631|385632|385633|385634|385635|385636|385637|385638|385639|385640|385641|385642|385643|385644|385645|385646|385647|385648|385649|385650|385651|385652|385653|385654|385655|385656|385657|385658|385659|385660|385661|385662|385663|385664|385665|385666|385667|385668|385669|385670|385671|385672|385673|385674|385675|385676|385677|385678|385679|385680|385681|385682|385683|385684|385685|385686|385687|385688|385689|385690|385691|385692|385693|385694|385695|385696|385697|385698|385699|385700|385701|385702|385703|385704|385705|385706|385707|385708|385709|385710|385711|385712|385713|385714|385715|385716|385717|385718|385719|385720|385721|385722|385723|385724|385725|385726|385727|385728|385729|385730|385731|385732|385733|385734|385735|385736|385737|385738|385739|385740|385741|385742|385743|385744|385745|385746|385747|385748|385749|385750|385751|385752|385753|385754|385755|385756|385757|385758|385759|385760|385761|385762|385763|385764|385765|385766|385767|385768|385769|385770|385771|385772|385773|385774|385775|385776|385777|385778|385779|385780|385781|385782|385783|385784|385785|385786|385787|385788|385789|385790|385791|385792|385793|385794|385795|385796|385797|385798|385799|385800|385801|385802|385803|385804|385805|385806|385807|385808|385809|385810|385811|385812|385813|385814|385815|385816|385817|385818|385819|385820|385821|385822|385823|385824|385825|385826|385827|385828|385829|385830|385831|385832|385833|385834|385835|385836|385837|385838|385839|385840|385841|385842|385843|385844|385845|385846|385847|385848|385849|385850|385851|385852|385853|385854|385855|385856|385857|385858|385859|385860|385861|385862|385863|385864|385865|385866|385867|385868|385869|385870|385871|385872|385873|385874|385875|385876|385877|385878|385879|385880|385881|385882|385883|385884|385885|385886|385887|385888|385889|385890|385891|385892|385893|385894|385895|385896|385897|385898|385899|385900|385901|385902|385903|385904|385905|385906|385907|385908|385909|385910|385911|385912|385913|385914|385915|385916|385917|385918|385919|385920|385921|385922|385923|385924|385925|385926|385927|385928|385929|385930|385931|385932|385933|385934|385935|385936|385937|385938|385939|385940|385941|385942|385943|385944|385945|385946|385947|385948|385949|385950|385951|385952|385953|385954|385955|385956|385957|385958|385959|385960|385961|385962|385963|385964|385965|385966|385967|385968|385969|385970|385971|385972|385973|385974|385975|385976|385977|385978|385979|385980|385981|385982|385983|385984|385985|385986|385987|385988|385989|385990|385991|385992|385993|385994|385995|385996|385997|385998|385999|386000|386001|386002|386003|386004|386005|386006|386007|386008|386009|386010|386011|386012|386013|386014|386015|386016|386017|386018|386019|386020|386021|386022|386023|386024|386025|386026|386027|386028|386029|386030|386031|386032|386033|386034|386035|386036|386037|386038|386039|386040|386041|386042|386043|386044|386045|386046|386047|386048|386049|386050|386051|386052|386053|386054|386055|386056|386057|386058|386059|386060|386061|386062|386063|386064|386065|386066|386067|386068|386069|386070|386071|386072|386073|386074|386075|386076|386077|386078|386079|386080|386081|386082|386083|386084|386085|386086|386087|386088|386089|386090|386091|386092|386093|386094|386095|386096|386097|386098|386099|386100|386101|386102|386103|386104|386105|386106|386107|386108|386109|386110|386111|386112|386113|386114|386115|386116|386117|386118|386119|386120|386121|386122|386123|386124|386125|386126|386127|386128|386129|386130|386131|386132|386133|386134|386135|386136|386137|386138|386139|386140|386141|386142|386143|386144|386145|386146|386147|386148|386149|386150|386151|386152|386153|386154|386155|386156|386157|386158|386159|386160|386161|386162|386163|386164|386165|386166|386167|386168|386169|386170|386171|386172|386173|386174|386175|386176|386177|386178|386179|386180|386181|386182|386183|386184|386185|386186|386187|386188|386189|386190|386191|386192|386193|386194|386195|386196|386197|386198|386199|386200|386201|386202|386203|386204|386205|386206|386207|386208|386209|386210|386211|386212|386213|386214|386215|386216|386217|386218|386219|386220|386221|386222|386223|386224|386225|386226|386227|386228|386229|386230|386231|386232|386233|386234|386235|386236|386237|386238|386239|386240|386241|386242|386243|386244|386245|386246|386247|386248|386249|386250|386251|386252|386253|386254|386255|386256|386257|386258|386259|386260|386261|386262|386263|386264|386265|386266|386267|386268|386269|386270|386271|386272|386273|386274|386275|386276|386277|386278|386279|386280|386281|386282|386283|386284|386285|386286|386287|386288|386289|386290|386291|386292|386293|386294|386295|386296|386297|386298|386299|386300|386301|386302|386303|386304|386305|386306|386307|386308|386309|386310|386311|386312|386313|386314|386315|386316|386317|386318|386319|386320|386321|386322|386323|386324|386325|386326|386327|386328|386329|386330|386331|386332|386333|386334|386335|386336|386337|386338|386339|386340|386341|386342|386343|386344|386345|386346|386347|386348|386349|386350|386351|386352|386353|386354|386355|386356|386357|386358|386359|386360|386361|386362|386363|386364|386365|386366|386367|386368|386369|386370|386371|386372|386373|386374|386375|386376|386377|386378|386379|386380|386381|386382|386383|386384|386385|386386|386387|386388|386389|386390|386391|386392|386393|386394|386395|386396|386397|386398|386399|386400|386401|386402|386403|386404|386405|386406|386407|386408|386409|386410|386411|386412|386413|386414|386415|386416|386417|386418|386419|386420|386421|386422|386423|386424|386425|386426|386427|386428|386429|386430|386431|386432|386433|386434|386435|386436|386437|386438|386439|386440|386441|386442|386443|386444|386445|386446|386447|386448|386449|386450|386451|386452|386453|386454|386455|386456|386457|386458|386459|386460|386461|386462|386463|386464|386465|386466|386467|386468|386469|386470|386471|386472|386473|386474|386475|386476|386477|386478|386479|386480|386481|386482|386483|386484|386485|386486|386487|386488|386489|386490|386491|386492|386493|386494|386495|386496|386497|386498|386499|386500|386501|386502|386503|386504|386505|386506|386507|386508|386509|386510|386511|386512|386513|386514|386515|386516|386517|386518|386519|386520|386521|386522|386523|386524|386525|386526|386527|386528|386529|386530|386531|386532|386533|386534|386535|386536|386537|386538|386539|386540|386541|386542|386543|386544|386545|386546|386547|386548|386549|386550|386551|386552|386553|386554|386555|386556|386557|386558|386559|386560|386561|386562|386563|386564|386565|386566|386567|386568|386569|386570|386571|386572|386573|386574|386575|386576|386577|386578|386579|386580|386581|386582|386583|386584|386585|386586|386587|386588|386589|386590|386591|386592|386593|386594|386595|386596|386597|386598|386599|386600|386601|386602|386603|386604|386605|386606|386607|386608|386609|386610|386611|386612|386613|386614|386615|386616|386617|386618|386619|386620|386621|386622|386623|386624|386625|386626|386627|386628|386629|386630|386631|386632|386633|386634|386635|386636|386637|386638|386639|386640|386641|386642|386643|386644|386645|386646|386647|386648|386649|386650|386651|386652|386653|386654|386655|386656|386657|386658|386659|386660|386661|386662|386663|386664|386665|386666|386667|386668|386669|386670|386671|386672|386673|386674|386675|386676|386677|386678|386679|386680|386681|386682|386683|386684|386685|386686|386687|386688|386689|386690|386691|386692|386693|386694|386695|386696|386697|386698|386699|386700|386701|386702|386703|386704|386705|386706|386707|386708|386709|386710|386711|386712|386713|386714|386715|386716|386717|386718|386719|386720|386721|386722|386723|386724|386725|386726|386727|386728|386729|386730|386731|386732|386733|386734|386735|386736|386737|386738|386739|386740|386741|386742|386743|386744|386745|386746|386747|386748|386749|386750|386751|386752|386753|386754|386755|386756|386757|386758|386759|386760|386761|386762|386763|386764|386765|386766|386767|386768|386769|386770|386771|386772|386773|386774|386775|386776|386777|386778|386779|386780|386781|386782|386783|386784|386785|386786|386787|386788|386789|386790|386791|386792|386793|386794|386795|386796|386797|386798|386799|386800|386801|386802|386803|386804|386805|386806|386807|386808|386809|386810|386811|386812|386813|386814|386815|386816|386817|386818|386819|386820|386821|386822|386823|386824|386825|386826|386827|386828|386829|386830|386831|386832|386833|386834|386835|386836|386837|386838|386839|386840|386841|386842|386843|386844|386845|386846|386847|386848|386849|386850|386851|386852|386853|386854|386855|386856|386857|386858|386859|386860|386861|386862|386863|386864|386865|386866|386867|386868|386869|386870|386871|386872|386873|386874|386875|386876|386877|386878|386879|386880|386881|386882|386883|386884|386885|386886|386887|386888|386889|386890|386891|386892|386893|386894|386895|386896|386897|386898|386899|386900|386901|386902|386903|386904|386905|386906|386907|386908|386909|386910|386911|386912|386913|386914|386915|386916|386917|386918|386919|386920|386921|386922|386923|386924|386925|386926|386927|386928|386929|386930|386931|386932|386933|386934|386935|386936|386937|386938|386939|386940|386941|386942|386943|386944|386945|386946|386947|386948|386949|386950|386951|386952|386953|386954|386955|386956|386957|386958|386959|386960|386961|386962|386963|386964|386965|386966|386967|386968|386969|386970|386971|386972|386973|386974|386975|386976|386977|386978|386979|386980|386981|386982|386983|386984|386985|386986|386987|386988|386989|386990|386991|386992|386993|386994|386995|386996|386997|386998|386999|387000|387001|387002|387003|387004|387005|387006|387007|387008|387009|387010|387011|387012|387013|387014|387015|387016|387017|387018|387019|387020|387021|387022|387023|387024|387025|387026|387027|387028|387029|387030|387031|387032|387033|387034|387035|387036|387037|387038|387039|387040|387041|387042|387043|387044|387045|387046|387047|387048|387049|387050|387051|387052|387053|387054|387055|387056|387057|387058|387059|387060|387061|387062|387063|387064|387065|387066|387067|387068|387069|387070|387071|387072|387073|387074|387075|387076|387077|387078|387079|387080|387081|387082|387083|387084|387085|387086|387087|387088|387089|387090|387091|387092|387093|387094|387095|387096|387097|387098|387099|387100|387101|387102|387103|387104|387105|387106|387107|387108|387109|387110|387111|387112|387113|387114|387115|387116|387117|387118|387119|387120|387121|387122|387123|387124|387125|387126|387127|387128|387129|387130|387131|387132|387133|387134|387135|387136|387137|387138|387139|387140|387141|387142|387143|387144|387145|387146|387147|387148|387149|387150|387151|387152|387153|387154|387155|387156|387157|387158|387159|387160|387161|387162|387163|387164|387165|387166|387167|387168|387169|387170|387171|387172|387173|387174|387175|387176|387177|387178|387179|387180|387181|387182|387183|387184|387185|387186|387187|387188|387189|387190|387191|387192|387193|387194|387195|387196|387197|387198|387199|387200|387201|387202|387203|387204|387205|387206|387207|387208|387209|387210|387211|387212|387213|387214|387215|387216|387217|387218|387219|387220|387221|387222|387223|387224|387225|387226|387227|387228|387229|387230|387231|387232|387233|387234|387235|387236|387237|387238|387239|387240|387241|387242|387243|387244|387245|387246|387247|387248|387249|387250|387251|387252|387253|387254|387255|387256|387257|387258|387259|387260|387261|387262|387263|387264|387265|387266|387267|387268|387269|387270|387271|387272|387273|387274|387275|387276|387277|387278|387279|387280|387281|387282|387283|387284|387285|387286|387287|387288|387289|387290|387291|387292|387293|387294|387295|387296|387297|387298|387299|387300|387301|387302|387303|387304|387305|387306|387307|387308|387309|387310|387311|387312|387313|387314|387315|387316|387317|387318|387319|387320|387321|387322|387323|387324|387325|387326|387327|387328|387329|387330|387331|387332|387333|387334|387335|387336|387337|387338|387339|387340|387341|387342|387343|387344|387345|387346|387347|387348|387349|387350|387351|387352|387353|387354|387355|387356|387357|387358|387359|387360|387361|387362|387363|387364|387365|387366|387367|387368|387369|387370|387371|387372|387373|387374|387375|387376|387377|387378|387379|387380|387381|387382|387383|387384|387385|387386|387387|387388|387389|387390|387391|387392|387393|387394|387395|387396|387397|387398|387399|387400|387401|387402|387403|387404|387405|387406|387407|387408|387409|387410|387411|387412|387413|387414|387415|387416|387417|387418|387419|387420|387421|387422|387423|387424|387425|387426|387427|387428|387429|387430|387431|387432|387433|387434|387435|387436|387437|387438|387439|387440|387441|387442|387443|387444|387445|387446|387447|387448|387449|387450|387451|387452|387453|387454|387455|387456|387457|387458|387459|387460|387461|387462|387463|387464|387465|387466|387467|387468|387469|387470|387471|387472|387473|387474|387475|387476|387477|387478|387479|387480|387481|387482|387483|387484|387485|387486|387487|387488|387489|387490|387491|387492|387493|387494|387495|387496|387497|387498|387499|387500|387501|387502|387503|387504|387505|387506|387507|387508|387509|387510|387511|387512|387513|387514|387515|387516|387517|387518|387519|387520|387521|387522|387523|387524|387525|387526|387527|387528|387529|387530|387531|387532|387533|387534|387535|387536|387537|387538|387539|387540|387541|387542|387543|387544|387545|387546|387547|387548|387549|387550|387551|387552|387553|387554|387555|387556|387557|387558|387559|387560|387561|387562|387563|387564|387565|387566|387567|387568|387569|387570|387571|387572|387573|387574|387575|387576|387577|387578|387579|387580|387581|387582|387583|387584|387585|387586|387587|387588|387589|387590|387591|387592|387593|387594|387595|387596|387597|387598|387599|387600|387601|387602|387603|387604|387605|387606|387607|387608|387609|387610|387611|387612|387613|387614|387615|387616|387617|387618|387619|387620|387621|387622|387623|387624|387625|387626|387627|387628|387629|387630|387631|387632|387633|387634|387635|387636|387637|387638|387639|387640|387641|387642|387643|387644|387645|387646|387647|387648|387649|387650|387651|387652|387653|387654|387655|387656|387657|387658|387659|387660|387661|387662|387663|387664|387665|387666|387667|387668|387669|387670|387671|387672|387673|387674|387675|387676|387677|387678|387679|387680|387681|387682|387683|387684|387685|387686|387687|387688|387689|387690|387691|387692|387693|387694|387695|387696|387697|387698|387699|387700|387701|387702|387703|387704|387705|387706|387707|387708|387709|387710|387711|387712|387713|387714|387715|387716|387717|387718|387719|387720|387721|387722|387723|387724|387725|387726|387727|387728|387729|387730|387731|387732|387733|387734|387735|387736|387737|387738|387739|387740|387741|387742|387743|387744|387745|387746|387747|387748|387749|387750|387751|387752|387753|387754|387755|387756|387757|387758|387759|387760|387761|387762|387763|387764|387765|387766|387767|387768|387769|387770|387771|387772|387773|387774|387775|387776|387777|387778|387779|387780|387781|387782|387783|387784|387785|387786|387787|387788|387789|387790|387791|387792|387793|387794|387795|387796|387797|387798|387799|387800|387801|387802|387803|387804|387805|387806|387807|387808|387809|387810|387811|387812|387813|387814|387815|387816|387817|387818|387819|387820|387821|387822|387823|387824|387825|387826|387827|387828|387829|387830|387831|387832|387833|387834|387835|387836|387837|387838|387839|387840|387841|387842|387843|387844|387845|387846|387847|387848|387849|387850|387851|387852|387853|387854|387855|387856|387857|387858|387859|387860|387861|387862|387863|387864|387865|387866|387867|387868|387869|387870|387871|387872|387873|387874|387875|387876|387877|387878|387879|387880|387881|387882|387883|387884|387885|387886|387887|387888|387889|387890|387891|387892|387893|387894|387895|387896|387897|387898|387899|387900|387901|387902|387903|387904|387905|387906|387907|387908|387909|387910|387911|387912|387913|387914|387915|387916|387917|387918|387919|387920|387921|387922|387923|387924|387925|387926|387927|387928|387929|387930|387931|387932|387933|387934|387935|387936|387937|387938|387939|387940|387941|387942|387943|387944|387945|387946|387947|387948|387949|387950|387951|387952|387953|387954|387955|387956|387957|387958|387959|387960|387961|387962|387963|387964|387965|387966|387967|387968|387969|387970|387971|387972|387973|387974|387975|387976|387977|387978|387979|387980|387981|387982|387983|387984|387985|387986|387987|387988|387989|387990|387991|387992|387993|387994|387995|387996|387997|387998|387999|388000|388001|388002|388003|388004|388005|388006|388007|388008|388009|388010|388011|388012|388013|388014|388015|388016|388017|388018|388019|388020|388021|388022|388023|388024|388025|388026|388027|388028|388029|388030|388031|388032|388033|388034|388035|388036|388037|388038|388039|388040|388041|388042|388043|388044|388045|388046|388047|388048|388049|388050|388051|388052|388053|388054|388055|388056|388057|388058|388059|388060|388061|388062|388063|388064|388065|388066|388067|388068|388069|388070|388071|388072|388073|388074|388075|388076|388077|388078|388079|388080|388081|388082|388083|388084|388085|388086|388087|388088|388089|388090|388091|388092|388093|388094|388095|388096|388097|388098|388099|388100|388101|388102|388103|388104|388105|388106|388107|388108|388109|388110|388111|388112|388113|388114|388115|388116|388117|388118|388119|388120|388121|388122|388123|388124|388125|388126|388127|388128|388129|388130|388131|388132|388133|388134|388135|388136|388137|388138|388139|388140|388141|388142|388143|388144|388145|388146|388147|388148|388149|388150|388151|388152|388153|388154|388155|388156|388157|388158|388159|388160|388161|388162|388163|388164|388165|388166|388167|388168|388169|388170|388171|388172|388173|388174|388175|388176|388177|388178|388179|388180|388181|388182|388183|388184|388185|388186|388187|388188|388189|388190|388191|388192|388193|388194|388195|388196|388197|388198|388199|388200|388201|388202|388203|388204|388205|388206|388207|388208|388209|388210|388211|388212|388213|388214|388215|388216|388217|388218|388219|388220|388221|388222|388223|388224|388225|388226|388227|388228|388229|388230|388231|388232|388233|388234|388235|388236|388237|388238|388239|388240|388241|388242|388243|388244|388245|388246|388247|388248|388249|388250|388251|388252|388253|388254|388255|388256|388257|388258|388259|388260|388261|388262|388263|388264|388265|388266|388267|388268|388269|388270|388271|388272|388273|388274|388275|388276|388277|388278|388279|388280|388281|388282|388283|388284|388285|388286|388287|388288|388289|388290|388291|388292|388293|388294|388295|388296|388297|388298|388299|388300|388301|388302|388303|388304|388305|388306|388307|388308|388309|388310|388311|388312|388313|388314|388315|388316|388317|388318|388319|388320|388321|388322|388323|388324|388325|388326|388327|388328|388329|388330|388331|388332|388333|388334|388335|388336|388337|388338|388339|388340|388341|388342|388343|388344|388345|388346|388347|388348|388349|388350|388351|388352|388353|388354|388355|388356|388357|388358|388359|388360|388361|388362|388363|388364|388365|388366|388367|388368|388369|388370|388371|388372|388373|388374|388375|388376|388377|388378|388379|388380|388381|388382|388383|388384|388385|388386|388387|388388|388389|388390|388391|388392|388393|388394|388395|388396|388397|388398|388399|388400|388401|388402|388403|388404|388405|388406|388407|388408|388409|388410|388411|388412|388413|388414|388415|388416|388417|388418|388419|388420|388421|388422|388423|388424|388425|388426|388427|388428|388429|388430|388431|388432|388433|388434|388435|388436|388437|388438|388439|388440|388441|388442|388443|388444|388445|388446|388447|388448|388449|388450|388451|388452|388453|388454|388455|388456|388457|388458|388459|388460|388461|388462|388463|388464|388465|388466|388467|388468|388469|388470|388471|388472|388473|388474|388475|388476|388477|388478|388479|388480|388481|388482|388483|388484|388485|388486|388487|388488|388489|388490|388491|388492|388493|388494|388495|388496|388497|388498|388499|388500|388501|388502|388503|388504|388505|388506|388507|388508|388509|388510|388511|388512|388513|388514|388515|388516|388517|388518|388519|388520|388521|388522|388523|388524|388525|388526|388527|388528|388529|388530|388531|388532|388533|388534|388535|388536|388537|388538|388539|388540|388541|388542|388543|388544|388545|388546|388547|388548|388549|388550|388551|388552|388553|388554|388555|388556|388557|388558|388559|388560|388561|388562|388563|388564|388565|388566|388567|388568|388569|388570|388571|388572|388573|388574|388575|388576|388577|388578|388579|388580|388581|388582|388583|388584|388585|388586|388587|388588|388589|388590|388591|388592|388593|388594|388595|388596|388597|388598|388599|388600|388601|388602|388603|388604|388605|388606|388607|388608|388609|388610|388611|388612|388613|388614|388615|388616|388617|388618|388619|388620|388621|388622|388623|388624|388625|388626|388627|388628|388629|388630|388631|388632|388633|388634|388635|388636|388637|388638|388639|388640|388641|388642|388643|388644|388645|388646|388647|388648|388649|388650|388651|388652|388653|388654|388655|388656|388657|388658|388659|388660|388661|388662|388663|388664|388665|388666|388667|388668|388669|388670|388671|388672|388673|388674|388675|388676|388677|388678|388679|388680|388681|388682|388683|388684|388685|388686|388687|388688|388689|388690|388691|388692|388693|388694|388695|388696|388697|388698|388699|388700|388701|388702|388703|388704|388705|388706|388707|388708|388709|388710|388711|388712|388713|388714|388715|388716|388717|388718|388719|388720|388721|388722|388723|388724|388725|388726|388727|388728|388729|388730|388731|388732|388733|388734|388735|388736|388737|388738|388739|388740|388741|388742|388743|388744|388745|388746|388747|388748|388749|388750|388751|388752|388753|388754|388755|388756|388757|388758|388759|388760|388761|388762|388763|388764|388765|388766|388767|388768|388769|388770|388771|388772|388773|388774|388775|388776|388777|388778|388779|388780|388781|388782|388783|388784|388785|388786|388787|388788|388789|388790|388791|388792|388793|388794|388795|388796|388797|388798|388799|388800|388801|388802|388803|388804|388805|388806|388807|388808|388809|388810|388811|388812|388813|388814|388815|388816|388817|388818|388819|388820|388821|388822|388823|388824|388825|388826|388827|388828|388829|388830|388831|388832|388833|388834|388835|388836|388837|388838|388839|388840|388841|388842|388843|388844|388845|388846|388847|388848|388849|388850|388851|388852|388853|388854|388855|388856|388857|388858|388859|388860|388861|388862|388863|388864|388865|388866|388867|388868|388869|388870|388871|388872|388873|388874|388875|388876|388877|388878|388879|388880|388881|388882|388883|388884|388885|388886|388887|388888|388889|388890|388891|388892|388893|388894|388895|388896|388897|388898|388899|388900|388901|388902|388903|388904|388905|388906|388907|388908|388909|388910|388911|388912|388913|388914|388915|388916|388917|388918|388919|388920|388921|388922|388923|388924|388925|388926|388927|388928|388929|388930|388931|388932|388933|388934|388935|388936|388937|388938|388939|388940|388941|388942|388943|388944|388945|388946|388947|388948|388949|388950|388951|388952|388953|388954|388955|388956|388957|388958|388959|388960|388961|388962|388963|388964|388965|388966|388967|388968|388969|388970|388971|388972|388973|388974|388975|388976|388977|388978|388979|388980|388981|388982|388983|388984|388985|388986|388987|388988|388989|388990|388991|388992|388993|388994|388995|388996|388997|388998|388999|389000|389001|389002|389003|389004|389005|389006|389007|389008|389009|389010|389011|389012|389013|389014|389015|389016|389017|389018|389019|389020|389021|389022|389023|389024|389025|389026|389027|389028|389029|389030|389031|389032|389033|389034|389035|389036|389037|389038|389039|389040|389041|389042|389043|389044|389045|389046|389047|389048|389049|389050|389051|389052|389053|389054|389055|389056|389057|389058|389059|389060|389061|389062|389063|389064|389065|389066|389067|389068|389069|389070|389071|389072|389073|389074|389075|389076|389077|389078|389079|389080|389081|389082|389083|389084|389085|389086|389087|389088|389092|389093|389094|389095|389096|389097|389098|389099|389100|389101|390677|390678|403112|413172|413183|431651|433589|434934|435197|435198|435199|435200|435201|435202|435203|435204|435205|435206|435207|435208|435209|435210|435211|435212|435213|435214|435215|435216|435217|435218|435219|435220|435221|435222|435223|435224|435225|435226|435227|435228|435229|435230|435231|435232|435233|435234|435235|435236|435237|435238|435239|435240|435241|435242|435243|435244|435245|435246|435247|435248|435249|435250|435251|435252|435253|435254|435255|435256|435257|435258|435259|435260|435261|435262|435263|435264|435265|435266|435267|435268|435269|435270|435271|435272|435273|435274|435275|435276|435277|435278|435279|435280|435281|435282|435283|435284|435285|435286|435287|435288|435289|435290|435291|435292|435293|435294|435295|435296|435297|435298|435299|435300|435301|435302|435303|435304|435305|435306|435307|435308|435309|435310|435311|435312|435313|435314|435315|435316|435317|435318|435319|435320|435321|435322|435323|435324|435325|435326|435327|435328|435329|435330|435331|435332|435333|435334|435335|435336|435337|435338|435339|435340|435341|435342|435343|435344|435345|435346|435347|435348|435349|435350|435351|435352|435353|435354|435355|435356|435357|435358|435359|435360|435361|435362|435363|435364|435365|435366|435367|435368|435369|435370|435371|435372|435373|435374|435375|435376|435377|435378|435379|435380|435381|435382|435383|435384|435385|435386|435387|435388|435389|435390|435391|435392|435393|435394|435395|435396|435397|435398|435399|435400|435401|435402|435403|435404|435405|435406|435407|435408|435409|435410|435411|435412|435413|435414|435415|435416|435417|435418|435419|435420|435421|435422|435423|435424|435425|435426|435427|435428|435429|435430|435431|435432|435433|435434|435435|435436|435437|435438|435439|435440|435441|435442|435443|435444|435445|435446|435447|435448|435449|435450|435451|435452|435453|435454|435455|435456|435457|435458|435459|435460|435461|435462|435463|435464|435465|435466|435467|435468|435469|435470|435471|435472|435473|435474|435475|435476|435477|435478|435479|435480|435481|435482|435483|435484|435485|435486|435487|435488|435489|435490|435491|435492|435493|435494|435495|435496|435497|435498|435499|435500|435501|435502|435503|435504|435505|435506|435507|435508|435509|435510|435511|435512|435513|435514|435515|435516|435517|435518|435519|435520|435521|435522|435523|435524|435525|435526|435527|435528|435529|435530|435531|435532|435533|435534|435535|435536|435537|435538|435539|435540|435541|435542|435543|435544|435545|435546|435547|435548|435549|435550|435551|435552|435553|435554|435555|435556|435557|435558|435559|435560|435561|435562|435563|435564|435565|435566|435567|435568|435569|435570|435571|435572|435573|435574|435575|435576|435577|435578|435579|435580|435581|435582|435583|435584|435585|435586|435587|435588|435589|435590|435591|435592|435593|435594|435595|435596|435597|435598|435599|435600|435601|435602|435603|435604|435605|435606|435607|435608|435609|435610|435611|435612|435613|435614|435615|435616|435617|435618|435619|435620|435621|435622|435623|435624|435625|435626|435627|435628|435629|435630|435631|435632|435633|435634|435635|435636|435637|435638|435639|435640|435641|435642|435643|435644|435645|435646|435647|435648|435649|435650|435651|435652|435653|435654|435655|435656|435657|435658|435659|435660|435661|435662|435663|435664|435665|435666|435667|435668|435669|435670|435671|435672|435673|435674|435675|435676|435677|435678|435679|435680|435681|435682|435683|435684|435685|435686|435687|435688|435689|435690|435691|435692|435693|435694|435695|435696|435697|435698|435699|435700|435701|435702|435703|435704|435705|435706|435707|435708|435709|435710|435711|435712|435713|435714|435715|435716|435717|435718|435719|435720|435721|435722|435723|435724|435725|435726|435727|435728|435729|435730|435731|435732|435733|435734|435735|435736|435737|435738|435739|435740|435741|435742|435743|435744|435745|435746|435747|435748|435749|435750|435751|435752|435753|435754|435755|435756|435757|435758|435759|435760|435761|435762|435763|435764|435765|435766|435767|435768|435769|435770|435771|435772|435773|435774|435775|435776|435777|435778|435779|435780|435781|435782|435783|435784|435785|435786|435787|435788|435789|435790|435791|435792|435793|435794|435795|435796|435797|435798|435799|435800|435801|435802|435803|435804|435805|435806|435807|435808|435809|435810|435811|435812|435813|435814|435815|435816|435817|435818|435819|435820|435821|435822|435823|435824|435825|435826|435827|435828|435829|435830|435831|435832|435833|435834|435835|435836|435837|435838|435839|435840|435841|435842|435843|435844|435845|435846|435847|435848|435849|435850|435851|435852|435853|435854|435855|435856|435857|435858|435859|435860|435861|435862|435863|435864|435865|435866|435867|435868|435869|435870|435871|435872|435873|435874|435875|435876|435877|435878|435879|435880|435881|435882|435883|435884|435885|435886|435887|435888|435889|435890|435891|435892|435893|435894|435895|435896|435897|435898|435899|435900|435901|435902|435903|435904|435905|435906|435907|435908|435909|435910|435911|435912|435913|435914|435915|435916|435917|435918|435919|435920|435921|435922|435923|435924|435925|435926|435927|435928|435929|435930|435931|435932|435933|435934|435935|435936|435937|435938|435939|435940|435941|435942|435943|435944|435945|435946|435947|435948|435949|435950|435951|435952|435953|435954|435955|435956|435957|435958|435959|435960|435961|435962|435963|435964|435965|435966|435967|435968|435969|435970|435971|435972|435973|435974|435975|435976|435977|435978|435979|435980|435981|435982|435983|435984|435985|435986|435987|435988|435989|435990|435991|435992|435993|435994|435995|435996|435997|435998|435999|436000|436001|436002|436003|436004|436005|436006|436007|436008|436009|436010|436011|436012|436013|436014|436015|436016|436017|436018|436019|436020|436021|436022|436023|436024|436025|436026|436027|436028|436029|436030|436031|436032|436033|436034|436035|436036|436037|436038|436039|436040|436041|436042|436043|436044|436045|436046|436047|436048|436049|436050|436051|436052|436053|436054|436055|436056|436057|436058|436059|436060|436061|436062|436063|436064|436065|436066|436067|436068|436069|436070|436071|436072|436073|436074|436075|436076|436077|436078|436079|436080|436081|436082|436083|436084|436085|436086|436087|436088|436089|436090|436091|436092|436093|436094|436095|436096|436097|436098|436099|436100|436101|436102|436103|436104|436105|436106|436107|436108|436109|436110|436111|436112|436113|436114|436115|436116|436117|436118|436119|436120|436121|436122|436123|436124|436125|436126|436127|436128|436129|436130|436131|436132|436133|436134|436135|436136|436137|436138|436139|436140|436141|436142|436143|436144|436145|436146|436147|436148|436149|436150|436151|436152|436153|436154|436155|436156|436157|436158|436159|436160|436161|436162|436163|436164|436165|436166|436167|436168|436169|436170|436171|436172|436173|436174|436175|436176|436177|436178|436179|436180|436181|436182|436183|436184|436185|436186|436187|436188|436189|436190|436191|436192|436193|436194|436195|436196|436197|436198|436199|436200|436201|436202|436203|436204|436205|436206|436207|436208|436209|436210|436211|436212|436213|436214|436215|436216|436217|436218|436219|436220|436221|436222|436223|436224|436225|436226|436227|436228|436229|436230|436231|436232|436233|436234|436235|436236|436237|436238|436239|436240|436241|436242|436243|436244|436245|436246|436247|436248|436249|436250|436251|436252|436253|436254|436255|436256|436257|436258|436259|436260|436261|436262|436263|436264|436265|436266|436267|436268|436269|436270|436271|436272|436273|436274|436275|436276|436277|436278|436279|436280|436281|436282|436283|436284|436285|436286|436287|436288|436289|436290|436291|436292|436293|436294|436295|436296|436297|436298|436299|436300|436301|436302|436303|436304|436305|436306|436307|436308|436309|436310|436311|436312|436313|436314|436315|436316|436317|436318|436319|436320|436321|436322|436323|436324|436325|436326|436327|436328|436329|436330|436331|436332|436333|436334|436335|436336|436337|436338|436339|436340|436341|436342|436343|436344|436345|436346|436347|436348|436349|436350|436351|436352|436353|436354|436355|436356|436357|436358|436359|436360|436361|436362|436363|436364|436365|436366|436367|436368|436369|436370|436371|436372|436373|436374|436375|436376|436377|436378|436379|436380|436381|436382|436383|436384|436385|436386|436387|436388|436389|436390|436391|436392|436393|436394|436395|436396|436397|436398|436399|436400|436401|436402|436403|436404|436405|436406|436407|436408|436409|436410|436411|436412|436413|436414|436415|436416|436417|436418|436419|436420|436421|436422|436423|436424|436425|436426|436427|436428|436429|436430|436431|436432|436433|436434|436435|436436|436437|436438|436439|436440|436441|436442|436443|436444|436445|436446|436447|436448|436449|436450|436451|436452|436453|436454|436455|436456|436457|436458|436459|436460|436461|436462|436463|436464|436465|436466|436467|436468|436469|436470|436471|436472|436473|436474|436475|436476|436477|436478|436479|436480|436481|436482|436483|436484|436485|436486|436487|436488|436489|436490|436491|436492|436493|436494|436495|436496|436497|436498|436499|436500|436501|436502|436503|436504|436505|436506|436507|436508|436509|436510|436511|436512|436513|436514|436515|436516|436517|436518|436519|436520|436521|436522|436523|436524|436525|436526|436527|436528|436529|436530|436531|436532|436533|436534|436535|436536|436537|436538|436539|436540|436541|436542|436543|436544|436545|436546|436547|436548|436549|436550|436551|436552|436553|436554|436555|436556|436557|436558|436559|436560|436561|436562|436563|436564|436565|436566|436567|436568|436569|436570|436571|436572|436573|436574|436575|436576|436577|436578|436579|436580|436581|436582|436583|436584|436585|436586|436587|436588|436589|436590|436591|436592|436593|436594|436595|436596|436597|436598|436599|436600|436601|436602|436603|436604|436605|436606|436607|436608|436609|436610|436611|436612|436613|436614|436615|436616|436617|436618|436619|436620|436621|436622|436623|436624|436625|436626|436627|436628|436629|436630|436631|436632|436633|436634|436635|436636|436637|436638|436639|436640|436641|436642|436643|436644|436645|436646|436647|436648|436649|436650|436651|436652|436653|436654|436655|436656|436657|436658|436659|436660|436661|436662|436663|436664|436665|436666|436667|436668|436669|436670|436671|436672|436673|436674|436675|436676|436677|436678|436679|436680|436681|436682|436683|436684|436685|436686|436687|436688|436689|436690|436691|436692|436693|436694|436695|436696|436697|436698|436699|436700|436701|436702|436703|436704|436705|436706|436707|436708|436709|436710|436711|436712|436713|436714|436715|436716|436717|436718|436719|436720|436721|436722|436723|436724|436725|436726|436727|436728|436729|436730|436731|436732|436733|436734|436735|436736|436737|436738|436739|436740|436741|436742|436743|436744|436745|436746|436747|436748|436749|436750|436751|436752|436753|436754|436755|436756|436757|436758|436759|436760|436761|436762|436763|436764|436765|436766|436767|436768|436769|436770|436771|436772|436773|436774|436775|436776|436777|436778|436779|436780|436781|436782|436783|436784|436785|436786|436787|436788|436789|436790|436791|436792|436793|436794|436795|436796|436797|436798|436799|436800|436801|436802|436803|436804|436805|436806|436807|436808|436809|436810|436811|436812|436813|436814|436815|436816|436817|436818|436819|436820|436821|436822|436823|436824|436825|436826|436827|436828|436829|436830|436831|436832|436833|436834|436835|436836|436837|436838|436839|436840|436841|436842|436843|436844|436845|436846|436847|436848|436849|436850|436851|436852|436853|436854|436855|436856|436857|436858|436859|436860|436861|436862|436863|436864|436865|436866|436867|436868|436869|436870|436871|436872|436873|436874|436875|436876|436877|436878|436879|436880|436881|436882|436883|436884|436885|436886|436887|436888|436889|436890|436891|436892|436893|436894|436895|436896|436897|436898|436899|436900|436901|436902|436903|436904|436905|436906|436907|436908|436909|436910|436911|436912|436913|436914|436915|436916|436917|436918|436919|436920|436921|436922|436923|436924|436925|436926|436927|436928|436929|436930|436931|436932|436933|436934|436935|436936|436937|436938|436939|436940|436941|436942|436943|436944|436945|436946|436947|436948|436949|436950|436951|436952|436953|436954|436955|436956|436957|436958|436959|436960|436961|436962|436963|436964|436965|436966|436967|436968|436969|436970|436971|436972|436973|436974|436975|436976|436977|436978|436979|436980|436981|436982|436983|436984|436985|436986|436987|436988|436989|436990|436991|436992|436993|436994|436995|436996|436997|436998|436999|437000|437001|437002|437003|437004|437005|437006|437007|437008|437009|437010|437011|437012|437013|437014|437015|437016|437017|437018|437019|437020|437021|437022|437023|437024|437025|437026|437027|437028|437029|437030|437031|437032|437033|437034|437035|437036|437037|437038|437039|437040|437041|437042|437043|437044|437045|437046|437047|437048|437049|437050|437051|437052|437053|437054|437055|437056|437057|437058|437059|437060|437061|437062|437063|437064|437065|437066|437067|437068|437069|437070|437071|437072|437073|437074|437075|437076|437077|437078|437079|437080|437081|437082|437083|437084|437085|437086|437087|437088|437089|437090|437091|437092|437093|437094|437095|437096|437097|437098|437099|437100|437101|437102|437103|437104|437105|437106|437107|437108|437109|437110|437111|437112|437113|437114|437115|437116|437117|437118|437119|437120|437121|437122|437123|437124|437125|437126|437127|437128|437129|437130|437131|437132|437133|437134|437135|437136|437137|437138|437139|437140|437141|437142|437143|437144|437145|437146|437147|437148|437149|437150|437151|437152|437153|437154|437155|437156|437157|437158|437159|437160|437161|437162|437163|437164|437165|437166|437167|437168|437169|437170|437171|437172|437173|437174|437175|437176|437177|437178|437179|437180|437181|437182|437183|437184|437185|437186|437187|437188|437189|437190|437191|437192|437193|437194|437195|437196|437197|437198|437199|437200|437201|437202|437203|437204|437205|437206|437207|437208|437209|437210|437211|437212|437213|437214|437215|437216|437217|437218|437219|437220|437221|437222|437223|437224|437225|437226|437227|437228|437229|437230|437231|437232|437233|437234|437235|437236|437237|437238|437239|437240|437241|437242|437243|437244|437245|437246|437247|437248|437249|437250|437251|437252|437253|437254|437255|437256|437257|437258|437259|437260|437261|437262|437263|437264|437265|437266|437267|437268|437269|437270|437271|437272|437273|437274|437275|437276|437277|437278|437279|437280|437281|437282|437283|437284|437285|437286|437287|437288|437289|437290|437291|437292|437293|437294|437295|437296|437297|437298|437299|437300|437301|437302|437303|437304|437305|437306|437307|437308|437309|437310|437311|437312|437313|437314|437315|437316|437317|437318|437319|437320|437321|437322|437323|437324|437325|437326|437327|437328|437329|437330|437331|437332|437333|437334|437335|437336|437337|437338|437339|437340|437341|437342|437343|437344|437345|437346|437347|437348|437349|437350|437351|437352|437353|437354|437355|437356|437357|437358|437359|437360|437361|437362|437363|437364|437365|437366|437367|437368|437369|437370|437371|437372|437373|437374|437375|437376|437377|437378|437379|437380|437381|437382|437383|437384|437385|437386|437387|437388|437389|437390|437391|437392|437393|437394|437395|437396|437397|437398|437399|437400|437401|437402|437403|437404|437405|437406|437407|437408|437409|437410|437411|437412|437413|437414|437415|437416|437417|437418|437419|437420|437421|437422|437423|437424|437425|437426|437427|437428|437429|437430|437431|437432|437433|437434|437435|437436|437437|437438|437439|437440|437441|437442|437443|437444|437445|437446|437447|437448|437449|437450|437451|437452|437453|437454|437455|437456|437457|437458|437459|437460|437461|437462|437463|437464|437465|437466|437467|437468|437469|437470|437471|437472|437473|437474|437475|437476|437477|437478|437479|437480|437481|437482|437483|437484|437485|437486|437487|437488|437489|437490|437491|437492|437493|437494|437495|437496|437497|437498|437499|437500|437501|437502|437503|437504|437505|437506|437507|437508|437509|437510|437511|437512|437513|437514|437515|437516|437517|437518|437519|437520|437521|437522|437523|437524|437525|437526|437527|437528|437529|437530|437531|437532|437533|437534|437535|437536|437537|437538|437539|437540|437541|437542|437543|437544|437545|437546|437547|437548|437549|437550|437551|437552|437553|437554|437555|437556|437557|437558|437559|437560|437561|437562|437563|437564|437565|437566|437567|437568|437569|437570|437571|437572|437573|437574|437575|437576|437577|437578|437579|437580|437581|437582|437583|437584|437585|437586|437587|437588|437589|437590|437591|437592|437593|437594|437595|437596|437597|437598|437599|437600|437601|437602|437603|437604|437605|437606|437607|437608|437609|437610|437611|437612|437613|437614|437615|437616|437617|437618|437619|437620|437621|437622|437623|437624|437625|437626|437627|437628|437629|437630|437631|437632|437633|437634|437635|437636|437637|437638|437639|437640|437641|437642|437643|437644|437645|437646|437647|437648|437649|437650|437651|437652|437653|437654|437655|437656|437657|437658|439758|439759|439760|439761|439762|439763|439764|439765|439766|439767|439768|439769|439770|439771|439772|439773|439774|439775|439776|439777|439778|439779|439780|439781|439782|439783|439784|439785|439786|439787|439788|439789|439790|439791|439792|439793|439794|439795|439796|439797|439798|439799|439800|439801|439802|439803|439804|439805|439806|440221|442470|444039|464005|481568|495012|495013|495014|495015|495016|495017|495018|495019|495020|495021|495022|495023|495024|495025|495026|495027|495028|495029|495030|495031|495032|495033|495034|495035|495036|495037|495038|495039|495040|514087|539446|539447|539448|539449|539450|539451|539452|539453|539454|539455|539456|539457|539458|539459|539460|539461|539462|539463|539464|539465|539466|570424|608933|608934|610268|625916|625917|625918|625919|625920|625921|625922|625923|625924|625925|625926|625927|625928|625929|625930|625931|625932|625933|625934|625935|625936|625937|625938|625939|625940|625941|625942|625943|625944|625945|625946|625947|625948|625949|625950|625951|625952|625953|625954|625955|625956|625957|625958|625959|625960|625961|625962|625963|625964|625965|625993|625994|625997|625998|640108|677561|677864|677959|680941|681598|681717|794226|794227|794228|794229|794230|794231|794232|794233|794234|794235|794236|794237|794238|794239|794240|794241|794242|794243|794244|794245|794246|794247|794248|794249|794250|794262|794263|794264|804684|804685|804686|804687|804688|804689|804690|804691|804692|804693|804694|804695|804696|804697|804698|804699|804700|804701|804702|804703|804704|804705|804706|804707|804708|804709|804710|804711|804712|804713|804714|804715|804716|804717|804718|804719|804720|804721|804722|804723|804724|804725|804726|804727|804728|804729|804730|804731|861668|912411|917632|917634|917635|917636|917637|917638|917639|917640|917641|917642|917643|917644|917645|917646|917647|917648|917649|917651|917652|917654|917655|917656|917657|917658|917659|917661|917662|917664|917665|917666|917667|917668|917669|917670|917671|917672|917673|917674|917675|917676|917677|917678|917679|917680|917681|917682|917683|917684|917685|917686|917688|917689|917690|917691|917692|917693|917694|917695|917696|917697|917698|917699|917700|917701|917702|917703|917705|917706|917707|917708|917709|917710|917711|917712|917713|917714|917715|917716|917717|917718|917719|917720|917722|917723|917724|917725|917726|917727|918143|918144|918145|918146|918147|918148|918149|918150|918151|918568|918613|918631|918647|918694|918696|918704|918705|918755|918759|918774|918861|918869|918930|918938|918963|918970|918986|918987|919018|919023|919040|919101|919102|919139|919188|919189|919241|919247|919248|919250|919251|919264|919285|919364|919381|919382|919383|919460|919495|919498|919565|919566|919591|919599|919644|919666|919669|919674|919697|919773|919810|919846|919977|920066|920067|920076|920077|920078|920079|920080|920099|920110|920119|920120|920139|920147|920158|920167|920181|920188|920197|920217|920250|920264|920299|920321|920327|920333|920364|920381|920385|920423|971239|971240|971241|971242|971243|971244|971245|971246|971247|971248|971249|971250|971251|971252|971253|971254|971255|971256|971257|971258|971259|971260|971261|971262|971263|971264|971265|971266|971267|971268|971269|971270|971271|971272|971273|971274|971275|971276|971277|971278|971348|971349|971350|972514|972516|972517|972518|972519|973053|974453|974568|975718|976535|976536|976537|976538|976539|976540|976541|976542|976543|976544|976545|976546|980833", + "text": "See cases" + }, + { + "baseId": "18684|34005|40176|40177|40177|40178|40179|40180|40180|40181|167374|167374|167376|167873|167873|167874|167874|167875|167875|167876|167877|167877|167878|167879|167880|167880|167882|167882|167883|167883|167884|167884|167885|167885|167886|167886|167887|167888|167888|167889|167889|167892|167892|167893|167894|167894|167895|167896|167897|167898|167898|167899|167899|167900|167901|167902|167902|167903|167903|167904|167905|167905|167906|167906|167907|167907|167908|167909|181421|191091|191092|191724|192147|192857|192857|193065|193347|193872|193872|194083|194083|194498|194653|194692|194712|196329|207263|207263|207264|214197|214197|214198|214199|214200|214201|214202|214203|214204|214204|214205|214206|214207|214208|214208|214209|214210|214211|214212|214213|214214|214215|214216|214217|214218|214219|214220|214221|214222|214223|214224|214224|214225|214226|214227|214228|214229|251950|251953|251954|251954|251957|251957|251958|251958|251959|251959|251960|251962|251962|251963|251963|259826|259826|264270|264270|272778|287347|297460|297465|297467|297468|297471|297473|297473|297474|297478|297479|297483|297485|299540|299542|299543|299544|299544|299546|299556|299564|299565|299570|299571|299577|299578|299580|299581|299585|299603|299605|299615|299618|299627|299627|299629|303712|303714|303717|303718|303719|303719|303723|303726|303729|303730|303744|303744|303745|303745|303747|303747|303749|303753|304022|304023|304024|304060|304062|304066|304067|304067|304089|304091|304094|304095|304098|304109|304125|304126|304127|304127|304128|304129|304136|304137|304138|304138|363746|368168|368170|368486|368487|368653|369882|369882|369909|418964|418965|418966|418967|455192|455193|455194|455631|455638|455640|455643|455647|455653|455878|455885|455896|501209|501350|501355|521204|521461|521469|521796|521797|560329|560331|560333|560333|560335|560337|560339|560341|560343|560345|560458|560460|560462|560464|563172|563173|565134|565136|565141|565142|565154|565158|620196|620197|622879|622880|622881|633955|633957|655663|655663|677420|677420|677421|691858|691859|699082|699082|699084|699084|709906|709906|721448|721448|730360|735090|777461|777461|802155|802156|802157|894219|894220|894221|894222|894223|894224|894225|894226|894227|894228|894229|894230|894231|894232|894233|894234|894235|894236|894237|894238|894239|894240|894241|894242|894243|894244|894245|894246|894247|894248|894249|894250|894251|894252|894253|894254|894255|894256|894257|894258|894259|894260|894261|894262|894263|894264|896100|896101|896102|896103|896104|896105|896106|906243|906244|932913|964822|970418|970483|973007|974485", + "text": "Joubert syndrome 17" + }, + { + "baseId": "18686|18687|18688|102114|193728|193729|236920|236953|270109|270767|326179|335856|335857|342228|342231|342237|342245|343772|343778|343779|343781|343792|343793|343795|364111|377727|377728|465923|465926|505708|588555|644890|644891|644892|653055|688630|693912|693913|740319|875871|875872|875873|875874|875875|875876|875877|875878|875879|875880|875881|875882|875883|876717|921236|957850|957851", + "text": "Congenital disorder of glycosylation type 2H" + }, + { + "baseId": "18689|18690|102416|102417|191963|324738|324741|324743|324749|324755|324758|324761|324762|334329|334332|334338|334351|334353|334354|334362|334363|334369|340973|340976|340982|340983|342439|342441|342447|342448|342452|342470|342471|342472|342475|342478|342479|342488|374208|374222|375222|375233|377345|466338|491141|505254|506200|530104|539192|539193|569919|644374|644375|644376|644377|652552|656356|668432|688554|690136|693828|703566|726507|740034|874956|874957|874958|874959|874960|874961|874962|874963|874964|874965|874966|874967|876645|876646|920358|937353", + "text": "COG7 congenital disorder of glycosylation" + }, + { + "baseId": "18691|18692|40584|40585|101593|101594|101595|192136|205182|335913|335934|335936|342273|342275|343855|374551|375381|375618|445607|466655|505908|568293|570426|570512|570516|644946|644947|644948|644949|688643|726767|755360|771046|785367|791639|844239|844240|844241|903614|919675|949533|949534|960852", + "text": "Congenital disorder of glycosylation type 2J" + }, + { + "baseId": "18691|136760|153138|165849|188286|263276|360903|360957|361048|361051|514173|590984", + "text": "Delayed gross motor development" + }, + { + "baseId": "18693|18694|101806|101807|101808|101809|101810|101813|101814|101815|101816|177623|190561|215543|237184|247139|329735|329736|329737|329741|329745|329752|340023|340035|340043|345725|345726|345729|345733|345736|345737|345741|347121|347131|347132|347134|347138|347143|347146|363851|439037|469054|490998|531758|585912|620603|620604|646662|646663|646664|688827|694183|694184|715669|715670|715671|727399|779830|785730|791825|846165|846166|846167|878337|878338|878339|878340|878341|878342|878343|878344|878345|878346|878347|878348|878349|878350|878351|878352|878353|878354|878355|878356|878357|880572|938212|958293|958294", + "text": "COG1 congenital disorder of glycosylation" + }, + { + "baseId": "18695|18696|18697|18698|18700|18704|18705|18707|18708|18709|18710|326105|326110|335786|342147|342148|343667|343668|614689|614690|620559|875790|875791|875792|875793|875794|875795|875796|875797|875798|875799|875800|875801|875802|875803|875804|876705", + "text": "Norum disease" + }, + { + "baseId": "18699|18701|18703|18711|18712|18713", + "text": "Fish-eye disease" + }, + { + "baseId": "18714|18715|18716|18717|18718|18719|18720|18721|34023|34024|34025|98795|98796|98798|177324|196175|196176|271860|280056|280063|280067|280072|280077|280078|280403|280407|280409|280410|281724|281726|281735|281737|281738|281885|281886|281890|281891|389429|515730|515791|557251|587748|587749|627616|627617|627618|627619|627620|627621|695039|729986|729987|746338|789952|823748|823749|823750|823751|823752|864128|864129|864130|864131|864132|864133|864134|864135|864136|864137|865159|865160|865161|865162|921937|941859|973015", + "text": "UDPglucose-4-epimerase deficiency" + }, + { + "baseId": "18721", + "text": "Galactose epimerase deficiency, severe" + }, + { + "baseId": "18724|18725|18727|18729|18730|18731|18735|18738|18741|18770|18775|18778|18779|18780|32929|45116|45118|48709|78994|80399|171199|171201|171204|171213|171217|172183|181222|181228|181233|181246|181247|181252|181258|187193|198011|198012|198013|198015|228126|228135|228146|228149|228151|228160|228179|228192|228206|230978|230982|243268|245525|245645|245773|245832|245946|246106|246122|246306|246513|281418|354088|354099|402821|434337", + "text": "Homozygous familial hypercholesterolemia" + }, + { + "baseId": "18730|509534", + "text": "Internal carotid artery dissection" + }, + { + "baseId": "18730|31479|360973|360979|485694|509534|677254", + "text": "Aortic dissection" + }, + { + "baseId": "18730|509534", + "text": "Carotid artery dissection" + }, + { + "baseId": "18730|509534", + "text": "Carotid artery occlusion" + }, + { + "baseId": "18730|24258|24628|28692|509534|577760|794275|801188", + "text": "Stroke" + }, + { + "baseId": "18731|18779|45115|45116|45125|78990|171195|171196|171197|171198|171199|171200|171201|171202|171203|171204|171205|171206|171207|171208|171209|171210|171211|171212|171213|171214|171215|171216|171217|171218|171219|171220|171221|171222|171223|171224|172183", + "text": "Hypercholesterolaemia" + }, + { + "baseId": "18740", + "text": "FH LEIDEN 1" + }, + { + "baseId": "18787|18788|101415|101416|101417|101420|102028|102029|102030|177264|177270|192025|207942|236963|237091|268988|270351|270637|312324|312325|312330|312332|312333|312334|312338|312344|312345|318190|318194|318197|318211|318230|318232|318233|323637|323662|323664|324294|324295|324302|324303|324304|324312|324313|324348|324349|324351|324354|324355|324356|324363|325008|325019|325026|325052|325054|325058|325060|325061|325062|325065|329780|329783|331071|331073|361619|371237|371961|371963|372150|372151|372878|373874|441534|481251|489736|503438|514617|525871|526711|526714|577255|584329|589444|639686|640670|656110|687706|692928|692929|702192|768195|784295|787746|837938|839379|839380|839381|867019|867020|867021|867022|867023|867024|867025|867026|867027|867028|867029|867030|867031|867032|867033|867034|867035|867036|867037|867038|867039|867040|867041|926483|940202|956765|960776", + "text": "ALG9 congenital disorder of glycosylation" + }, + { + "baseId": "18789|18790|18791|18792|18793|18794|18795|18796|18797|18798|18799|18800|18801|18802|18803|18804|18805|18806|18807|18808|39583|76508|76509|227033|309712|309715|309716|309717|314566|314567|314569|314571|314572|314573|320639|320640|321156|321157|321166|321169|321178|682859|730676|865585|865586|865587|865588|865589|865590|865591|865592|865593|865594", + "text": "Congenital erythropoietic porphyria" + }, + { + "baseId": "18809|44159|44160|44161|44162|44163|178747|178748|222810|222811|222812|222813|222814|224554|224555|227408|243372|243373|243374|243375|243376|243377|243378|243379|243380|243381|243382|257190|259034|259037|259041|334051|334052|334054|334064|334067|334068|334074|343979|343983|343989|343991|343992|343993|344000|344001|344007|349247|349248|349251|349253|349255|349256|349259|349260|350202|350205|350206|350209|350213|350216|350217|350218|350219|350222|350225|350226|360403|376641|376642|377589|377817|377819|377844|403298|403304|403317|403360|403362|403368|403370|403771|403776|403777|403817|403826|403833|403837|403838|404840|410647|410648|424964|446168|446169|468160|468947|468951|468952|469458|469925|469930|470372|470375|470377|470378|470379|470390|470392|470395|471071|471075|471078|471081|471084|482196|506927|507098|507485|507503|507915|510805|512429|513378|514766|533114|533116|533120|533201|533221|533223|533637|533642|533644|570904|570908|570919|570920|572604|572606|573223|573227|573229|575004|575005|610143|620645|620908|620909|620910|648233|648234|648235|648236|648237|648238|648239|648240|648241|648242|648243|648244|648245|648246|648247|648248|648249|648250|653509|653622|656585|679475|689118|689123|689125|690222|742049|772801|800140|800141|800142|800143|800144|800145|821278|821279|821280|847829|847830|847831|847832|847833|847834|847835|847836|847837|847838|847839|847840|847841|847842|847843|847844|847845|847846|847847|847848|847849|847850|847851|847852|852983|882298|882299|882300|882301|882302|882303|882304|882305|882306|882307|882308|882309|882310|882311|882312|882313|882314|882315|882316|882317|882318|882319|882320|882321|882322|882323|882324|882325|882326|882327|882916|919882|919883|919884|929024|929025|929026|929027|929028|929029|938770|938771|938772|938773|938774|938775|938776|940488|941237|950847|950848|950849|950850|950851|950852|950853|950854|950855|950856|950857|950858|958686|958687|958688|958689|960296|960297|964524|964694", + "text": "Progressive familial heart block type IB" + }, + { + "baseId": "18810|18811|18812|18812|18813|18813|18814|18814|18814|18815|18816|18816|18817|18818|18820|18822|18823|18825|18826|18827|18828|18829|18829|18830|18831|18832|18833|18833|18834|18834|18835|18837|18838|18839|18840|18841|18842|18843|18844|18845|18846|18846|48497|105415|105416|105416|105421|105430|105430|105431|105437|105442|105454|105454|105459|105461|105464|105471|105472|105472|105476|153856|153857|153858|153858|207917|207918|207919|207920|207921|207922|209323|360937|408495|408495|429322|429323|429324|429325|429328|429330|514014|576335|576336|576337|609215|609265|611978|614155|615954|615955|615956|615957|615966|624840|677125|983703", + "text": "Tyrosinase-negative oculocutaneous albinism" + }, + { + "baseId": "18811|18846|18846|32632|104537|105416|360967|428912|429631|431770|431778|431850|431868|918182|918183|918502", + "text": "Albinism" + }, + { + "baseId": "18811|18812|18813|18816|18817|18818|18829|18840|105416|105437|105464|105472|133809|207921|254366|254367|272488|297312|299316|299318|303721|303762|303767|303809|303815|303828|303850|310952|310965|310975|315471|315472|316559|322332|328465|329772|329774|331409|337677|408495|429326|490993|491129|576336|587519|620424|654776|713243|868937|868938|868939|868940|868941|868942|868943|868944|868945|868946|868947", + "text": "Oculocutaneous albinism" + }, + { + "baseId": "18811|18812|18812|18813|18814|18814|18815|18816|18816|18818|18829|18833|18833|18834|18846|18846|105416|105416|105430|105437|105454|105472|153856|153857|153858|408495|609265|677125|789139|789144", + "text": "Oculocutaneous albinism type 1B" + }, + { + "baseId": "18812|18813|18814|18816|18829|18833|18834|18846|105416|105430|105437|105454|105472|408495|682800", + "text": "Albinism, ocular, with sensorineural deafness" + }, + { + "baseId": "18812|18813|18814|18816|18817|18818|18829|18833|18834|18846|105416|105430|105437|105454|105472|408495", + "text": "Skin/hair/eye pigmentation, variation in, 3" + }, + { + "baseId": "18818|18821", + "text": "Oculocutaneous albinism type 1, temperature sensitive" + }, + { + "baseId": "18818|38747|38747|229145|229146|229149|631792|828567|851093", + "text": "Cutaneous malignant melanoma 8" + }, + { + "baseId": "18818", + "text": "Skin/hair/eye pigmentation 3, blue/green eyes" + }, + { + "baseId": "18818", + "text": "Autosomal recessive ocular albinism" + }, + { + "baseId": "18818|19699|19775|23388|23970|27831|28977|29349|29350|32712|39492|45219|46807|46822|47519|47731|50009|50078|50139|50242|50254|50266|50269|50284|66867|67139|67230|69099|69417|70148|97210|132096|132140|132179|132799|133157|133194|133401|133513|133528|133578|133652|133668|138033|138052|138088|138731|139188|139490|150524|151816|151840|152117|152722|180449|180494|180571|180715|181603|222845|241992|242393|242417|242432|245218|252373|267391|273927|299920|332443|338575|364161|398967|400520|402859|404368|408130|429594|457512|457879|460575|475258|488134|614353|623687|639417|645920|672038|677966|677967|677969|677980|781576|791049|921485|963277|963279|965841|969188|974882|975913|975914|976514", + "text": "Malignant tumor of breast" + }, + { + "baseId": "18846", + "text": "Hypopigmentation of hair" + }, + { + "baseId": "18846|188865|513965|514039", + "text": "Horizontal nystagmus" + }, + { + "baseId": "18846", + "text": "Hypopigmentation of the skin" + }, + { + "baseId": "18846", + "text": "Iris transillumination defect" + }, + { + "baseId": "18846|32418|33288|105416|223747|354298|360977|360978|360984|361099|513923|513982", + "text": "Myopia (disease)" + }, + { + "baseId": "18847|18849|18850|18851|18852|18853|18854", + "text": "Chediak-Higashi syndrome, childhood type" + }, + { + "baseId": "18847|18848|18849|18850|18851|18852|18853|18854|18855|18856|49401|76437|76438|76441|76443|76444|76446|76447|76448|76449|76450|76451|76452|76453|76454|76455|76456|76457|76458|76460|178787|178788|178789|178790|178791|178792|178793|178794|178795|178796|178797|206772|206773|206775|206776|206778|206780|236927|237053|237263|237316|249778|249779|249780|249781|249782|249783|249785|249786|249787|249788|249790|249791|249795|249797|249798|249800|249801|249802|249803|249804|249805|249806|249807|249808|249809|249810|249811|279647|279648|279650|279651|279652|279655|279656|279660|279662|279666|279668|279669|279670|279674|279678|279680|279684|279686|279690|279692|279693|279695|279696|279698|279703|279704|279708|279710|279879|279880|279882|279884|279885|279886|279888|279890|279891|279892|279896|279898|279900|279906|279908|279909|279910|279911|279912|279916|279918|279925|279926|279929|279939|279951|279954|279957|279958|279959|279969|279971|279972|279980|279981|279983|279993|279996|279997|279998|279999|281246|281247|281248|281252|281254|281265|281270|281272|281273|281276|281281|281282|281283|281290|281291|281293|281301|281303|281304|281308|281309|281310|281313|281314|281315|281316|281318|281343|281344|281357|281363|281369|281374|281376|281392|281394|281395|281408|281409|281417|281425|281426|281429|281430|281434|281442|281444|281449|281451|281452|281455|281471|281476|281486|281493|281498|281499|281503|281514|281515|281516|389398|405089|414777|414778|427726|427727|427728|427729|442745|442748|447572|447578|447582|447742|447745|447751|447755|447860|447864|493091|512802|512803|512888|512889|515515|515516|515522|515524|515525|515529|515535|515536|515539|515543|515545|515546|515574|515575|515579|515580|515582|515584|515592|515593|515597|515599|515600|515601|515602|515603|515605|515607|515608|515610|515616|515618|515620|515622|515628|515630|515632|515635|515636|515640|515646|515648|515650|515655|515660|515665|515666|515675|515680|515681|515683|515685|515686|553133|553134|556804|556806|556807|556809|556811|556813|556815|556817|556819|557132|557134|557136|557138|557140|557142|557144|557146|557148|557150|557152|557183|557185|557187|557189|557191|557193|557195|557197|557199|558365|558367|558369|558371|558373|614210|614211|614212|614213|619992|624181|627447|627448|627449|627450|627451|627452|627453|627454|627455|627456|627457|627458|627459|627460|627461|627462|627463|627464|627465|627466|627467|627468|627469|627470|627471|627472|627473|627474|627475|627476|627477|627478|627479|627480|627481|627482|627483|627484|627485|627486|627487|627488|627489|627490|627491|627492|627493|627494|627495|627496|627497|627498|627499|627500|627501|627502|627503|627504|627505|627506|627507|627508|650688|690517|690519|690520|690523|690524|690525|690526|690527|690528|690531|690532|690534|695034|695035|696583|696584|696586|707223|707224|707226|707227|707231|718807|718810|718811|729983|732277|732280|732281|732282|746297|746299|758891|761722|761724|761730|780604|780609|780610|789945|789946|789947|792715|794611|794612|802119|816438|818935|823548|823549|823550|823551|823552|823553|823554|823555|823556|823557|823558|823559|823560|823561|823562|823563|823564|823565|823566|823567|823568|823569|823570|823571|823572|823573|823574|823575|823576|823577|823578|823579|823580|823581|823582|823583|823584|823585|823586|823587|823588|823589|823590|823591|823592|823593|823594|823595|823596|823597|823598|823599|823600|823601|823602|823603|823604|823605|823606|823607|823608|823609|823610|850755|850757|851289|863920|863921|863922|863923|863924|863925|863927|863928|863929|863930|863931|863932|863933|863934|863935|863936|863937|863938|863939|863940|863941|863942|863943|863944|863945|863946|863947|863948|863949|863950|863951|863952|863953|863954|863955|863956|863957|863958|863959|863960|863961|863962|863963|863964|863965|863966|863967|863968|865140|865141|865142|865143|865144|865145|865146|920141|921870|921871|921872|921873|921874|921875|921876|921877|921878|921879|921880|921881|921882|921883|921884|921885|921886|921887|921888|930356|930357|930358|930359|930360|930361|930362|930363|930364|930365|930366|930367|930368|930369|930370|930371|930372|930373|930374|930375|930376|930377|930378|940622|940623|941783|941784|941785|941786|941787|941788|941789|941790|941791|941792|941793|941794|941795|941796|941797|941798|941799|941800|941801|941802|941803|941804|941805|941806|941807|952309|952310|952311|952312|952313|952314|952315|952316|952317|952318|952319|952320|952321|952322|952323|960423|961924", + "text": "Ch\u00e9diak-Higashi syndrome" + }, + { + "baseId": "18848|18855|18856", + "text": "Chediak-Higashi syndrome, adult type" + }, + { + "baseId": "18857|18858|39571|39572|39573|39574|39575|39576|39577|39578|55236|55237|55239|55244|55245|55246|55247|98402|98403|98404|98405|98406|98407|98408|98409|98411|98412|98413|98414|98415|98416|98417|98418|98419|98421|98422|99987|137043|175007|175287|175289|177147|186914|186915|186916|186917|186918|186919|186920|186921|186922|186923|190219|191485|192182|194271|196153|204567|208128|208129|227363|253829|253830|255097|255100|255102|255106|260059|260060|265194|265196|270775|270902|271824|274192|310742|310745|310771|310806|310808|310811|316006|316010|316044|316047|316063|321644|321645|321646|321654|321666|321668|321669|321670|321675|321677|322088|322102|322108|322109|322147|322165|322166|322713|322714|322725|322726|322729|322738|322776|330918|330920|330922|330924|330925|330929|330932|330933|330942|337614|337616|337617|337621|337625|337628|337629|337634|337636|337638|337640|339667|339668|339676|339677|339682|339688|339691|339693|339694|339704|339705|339708|339713|339714|353137|353139|353147|353148|353153|353950|358250|358251|358252|358253|358254|358255|358256|358257|358258|358259|358260|358261|358262|358263|358264|358265|358266|358267|358268|358269|358270|360963|360964|361555|373233|376263|389160|409161|421997|426078|426079|426080|427116|437975|445261|462970|463553|463573|463579|464160|464162|464165|487742|488223|513346|527841|536217|540599|547295|547298|547300|547308|547309|547311|547313|547315|547320|547321|547335|547352|547353|547355|547358|547363|547366|547367|547370|547372|547373|547374|547378|547384|547392|547400|547401|547402|547403|547416|547433|547435|547437|547440|547447|547448|547587|547597|547600|547602|547604|547608|547612|547621|547625|547629|547634|547636|547644|547651|547653|547868|547875|547884|547885|547890|547891|547895|547900|547910|547913|547914|547919|547920|547923|547929|547935|549457|549458|549460|549464|549718|549723|569058|569063|583123|612306|612999|620863|621479|621480|621481|622906|642770|642771|642772|642773|642774|642775|642776|652326|652480|652895|693615|693616|693617|693618|703005|714257|725845|730959|739362|754187|754188|754191|769936|769937|769938|769939|769940|769941|769942|769944|769945|775958|775960|776030|776032|784800|784801|784802|784804|784805|784806|787978|788146|791426|791427|791428|792674|818398|818399|818711|820653|820654|820655|820656|820657|820658|841872|841873|841874|841875|841876|841877|841878|851591|852570|858696|861138|872826|872827|872828|872829|872830|872831|872832|872833|872834|872835|872836|872837|872838|872839|872840|872841|872842|872843|872844|872845|872846|872847|872848|872849|872850|872851|876460|876461|904182|904217|919548|920337|927190|927191|936756|936757|936758|948711|948712|957326|957327|957328|957329|964417|969127|979532|979533|979534|979535|979536|979537|979538|979539|979540|979541|979542|979543|979544|979545|979546|979547|979548|979549|979550|979551|979552|984266", + "text": "Galactosylceramide beta-galactosidase deficiency" + }, + { + "baseId": "18859|18860|18861|18862|18863|135830|198633|207983|318038|318043|318045|318046|318048|318049|318051|318052|318054|325941|325951|325952|325954|325955|325956|325958|332173|332177|332183|332193|332202|332205|332207|332209|332216|333664|333668|333678|333682|333689|364038|527277|527816|565627|571934|587801|609848|610989|610990|610991|612297|626219|641279|641280|641281|713637|738748|753503|753504|791260|791261|791262|840109|840110|840111|852693|870179|870180|870181|870182|870183|870184|870185|870186|870187|870188|870189|872269|872270|919457|936193|948108|948109|966600|976593|977258|980126", + "text": "Isolated sulfite oxidase deficiency" + }, + { + "baseId": "18864|18865|18866|18867|18868|18869|18870|18871|18872|18873|18874|18875|18876|39568|39569|39570|139962|139963|187076|187077|190704|193358|194253|200232|200233|200235|200238|200239|200240|200242|200243|200244|200245|200246|200249|254431|254432|264511|316178|316179|316182|316183|316184|323453|323454|323457|323467|329678|329680|329681|329685|330864|330879|330885|330887|330889|330893|330895|330899|358092|358093|358094|358095|358096|358097|358098|358099|358100|358101|358102|358103|358104|358105|358106|371838|372575|372579|372583|374627|408539|415324|425953|425954|425955|444933|461861|462210|462446|462448|462457|526689|526696|526703|526705|526938|526939|527265|527266|546657|546660|546661|546663|546670|546675|546681|546684|546689|546851|546853|546960|546964|546971|546973|546975|546986|546995|546998|547004|547005|547009|547011|547191|547193|547195|547197|547199|547201|547203|566280|571301|612095|640654|640655|640656|640657|652211|702167|738495|753156|839352|839353|839354|839355|839356|839357|851929|852438|869378|869379|869380|869381|869382|869383|869384|869385|869386|869387|869388|869389|869390|869391|869392|869393|869394|872193|872194|926477|926478|935930|940245|947797|947798|947799|956758|956759|956760|956761|961803", + "text": "Deficiency of butyryl-CoA dehydrogenase" + }, + { + "baseId": "18877|18878|18879|18881|39566|39567|317122|317130|317132|317133|317142|317144|317145|317147|317148|317155|317165|324863|324864|324865|324868|324869|324882|324888|324889|324890|324892|324898|330964|330968|330973|330974|330979|330980|330993|330997|330998|331003|331004|331015|331026|332474|332478|332483|332492|332502|332509|332517|332519|332521|332522|332535|332544|332554|332556|332559|332560|462136|462177|462461|462467|462973|527166|527171|527705|527710|527713|527720|527727|565482|566839|571864|571871|641133|641134|641135|641136|641137|641138|641139|652490|652491|725089|725090|753364|769120|839927|839928|839929|839930|839931|839932|839933|858638|869817|869818|869819|869820|869821|869822|869823|869824|869825|869826|869827|869828|869829|869830|869831|869832|869833|869834|869835|869836|869837|869838|869839|869840|869841|872240|872241|918164|918165|926631|926632|936123|948020|948021|948022|948023|948024|956872", + "text": "Immunodeficiency due to interleukin-1 receptor-associated kinase-4 deficiency" + }, + { + "baseId": "18880", + "text": "Invasive pneumococcal disease, recurrent isolated" + }, + { + "baseId": "18881", + "text": "Invasive pneumococcal disease, recurrent isolated, 1" + }, + { + "baseId": "18882|18885|18886|18887|18888|18889|18890|18891|18892|18893|18894|18895|18896|18897|18898|18899|18900|18901|18902|18903|18904|18905|44363|44364|44365|44366|44367|44368|44369|44370|44371|44372|44373|44374|44375|44376|44377|44378|44379|44380|44381|44382|44383|44384|44385|44386|44387|44388|44389|44391|44392|44393|44394|44395|44396|44397|44398|44399|44400|94514|94515|98297|98298|98299|98300|98301|98302|166061|166063|166064|166065|167775|167777|167779|167780|167781|167783|167784|167785|167786|167789|167790|167792|167794|167798|167799|167801|167802|167803|167804|171156|186873|186874|186875|186876|186877|186878|186879|186880|186881|186882|186883|186884|186885|186886|186887|186888|186889|186890|186891|186892|186893|186894|186895|186896|186897|186898|186899|186900|186901|186902|186903|186904|186905|186906|186907|186908|186909|186910|186911|186912|191132|194784|205174|208046|208047|208048|208049|227353|247315|254862|254863|254864|254865|254866|254870|254871|267145|267152|268909|270118|270120|272479|273702|319950|319951|319959|319960|319971|319973|319974|319978|319981|319985|328486|328488|328496|328499|328503|328505|328507|328509|328511|328530|328532|328533|328541|328542|328544|328545|328546|328547|328550|334987|334989|334993|334994|335004|335006|335007|335009|335010|335011|335019|335026|335032|335033|335037|335040|335041|335046|336837|336841|336847|336848|336857|336858|336859|336871|336872|336878|336880|336885|336886|336892|336898|336899|336904|336912|336914|336917|336934|358211|358212|358213|358214|358215|358216|358217|358218|358219|358220|358221|358222|358223|358224|358225|358226|358227|358228|358229|358230|358231|358232|358233|358234|358235|358236|358237|358238|358239|358240|358241|358242|358243|360952|372860|372863|373572|373583|373861|373869|375694|375695|375697|404813|409035|409037|409038|411516|415377|421962|421963|424263|426047|433130|433132|433133|437956|437957|462961|462964|463322|463368|463372|463374|463931|463937|463941|487515|487522|487523|487525|487532|487600|487603|487606|487611|487612|487706|487715|487729|487755|487764|487771|492114|504277|504294|504566|505197|512064|514657|527794|527795|527801|527802|527820|527823|527824|527826|527827|528156|528160|528164|540598|546955|546961|546963|546965|546966|546968|546978|546980|546985|546994|546999|547000|547002|547007|547008|547010|547019|547022|547024|547026|547030|547032|547043|547047|547049|547051|547053|547056|547057|547061|547062|547066|547068|547071|547073|547075|547093|547095|547148|547157|547163|547167|547171|547174|547176|547179|547181|547182|547184|547190|547194|547196|547198|547200|547204|547214|547216|547218|547220|547225|547228|547230|547232|547243|547249|547250|547275|547277|547279|547283|547285|547286|547288|547297|547299|547305|547312|547318|547322|547325|547326|547332|547334|547336|547340|547341|547344|547347|547349|547360|547362|547364|547368|547369|547371|547375|547377|547379|547381|547394|547396|547398|547406|547407|547408|547409|547558|547560|547565|547574|547584|547590|547591|547596|547605|547610|547613|547614|547618|547620|547622|547632|547638|547641|547646|547650|547656|547681|547684|547693|547695|547697|547699|547701|547703|547706|547709|547711|547725|547738|547740|547741|547743|547748|547763|566175|566177|567723|567742|568626|568632|568633|581768|581769|609310|609311|609312|609313|609314|609872|609873|609876|609877|612098|612356|620474|620859|621454|621456|621457|621458|621460|621462|621463|621464|621467|621470|621471|621472|621473|621474|626222|626223|642029|642030|642031|642032|642033|642034|642035|642036|642037|642038|642039|642040|642041|642042|642043|642044|642045|642046|642047|642048|642049|642050|642051|642052|642053|652517|652542|652545|652799|652845|656207|688177|688178|688179|693395|702722|725509|725510|725511|753864|753866|753868|753869|753870|753871|753872|760083|760277|769588|769589|769593|769597|769598|769599|769601|769602|769603|769605|769606|769608|769609|769610|769611|769613|769614|775950|776227|776233|784616|784617|784619|784622|784623|784624|784625|784626|784627|784628|787961|788128|788877|791375|791376|791377|796948|796949|796954|796960|799741|799742|799743|799744|799745|799746|799747|799748|799749|799750|800960|801721|820584|820585|820586|820587|820588|840980|840981|840982|840983|840984|840985|840986|840987|840988|840989|840990|840991|840992|840993|840994|840995|840996|840997|840998|840999|841000|841001|841002|841003|841004|851539|851541|851979|871411|871412|871413|871414|871415|871416|871417|871418|871419|871420|871421|871422|871423|871424|871425|871426|871427|871428|871429|871430|871431|871432|871433|871434|871435|871436|871437|871438|871439|871440|871441|871442|871443|871444|871445|871446|871447|871448|871449|871450|871451|871452|871453|871454|871455|871456|872346|905946|905947|906027|906029|906031|915047|917172|917175|917177|917515|919500|920326|926943|926944|926945|926946|926947|936479|936480|936481|936482|936483|936484|936485|936486|940293|948408|948409|948410|948411|948412|948413|948414|948415|948416|957120|957121|957122|957123|957124|957125|957126|957127|957128|957129|957130|957131|957132|961872|963291|965207|969177|972185|972186|972187|972188|972189|972190|972191|972192|972193|972194|972195|972196|972197|974454|979384|979385|979386|979387|979388|979389|979390|979391|979392|979393|979394|979395|979396|979397|979398|979399|979400|979401|979402|979403|979404|979405|979406|979407|979408|979409|979410|979411|979412|979413|979414|979415|979416|979417|980186|980187|981838|981839|981840|981841|981842|981843|981844|983700|983764|983985", + "text": "Wilson disease" + }, + { + "baseId": "18906|18907|18908|18909|18909|18910|18910|18911|143179|263935|276165|276166|276179|276180|276181|276183|276185|276193|276439|276441|276442|276451|276452|276822|276826|276827|276828|276839|276840|276862|276867|276871|276873|276874|276875|276900|353052|360801|440346|442598|442600|486843|513230|513231|515070|515071|515107|556570|558007|578359|621055|622857|626716|626718|626719|626720|626721|626722|706625|706626|718140|718141|718144|731632|731633|731634|743686|745613|745614|745615|745616|761125|761128|761129|761130|761131|761132|761134|761135|774384|778728|778765|780292|780293|780298|780299|786991|818843|822614|822615|822616|850730|862101|862102|862103|862104|862105|862106|862107|862108|862109|862110|864966|864967|904757|904758|930002|952036|952037|960402|977426|977427|977428|977429", + "text": "Phosphoglycerate dehydrogenase deficiency" + }, + { + "baseId": "18907|18909|18910|18911|143178|143179|143179|166140|166141|513231|558007|578359", + "text": "Neu-Laxova syndrome 1" + }, + { + "baseId": "18912|18913|18916|18917|18918|18920|18921|18923|18926|99101|99102|99104|99106|99109|99110|134669|134670|177100|177767|191343|192243|207281|237264|243984|252009|252014|259827|264274|265212|265239|273442|298037|298039|298041|298042|298045|300238|300239|300240|300243|304435|304439|304473|304767|304772|353735|353736|359710|361184|369935|384482|428465|428466|487070|488409|508808|520537|521242|521532|540588|543451|543460|543463|543468|543470|543474|543476|543478|543712|543714|543715|543716|543719|543723|543724|543726|543728|543730|543733|543735|543746|543804|543805|543807|543813|543817|543819|543821|543825|543829|543885|543886|543892|543894|543899|543907|543909|543911|543913|543923|543930|560486|562300|563219|565192|612273|612441|621203|621746|623141|634008|634009|634010|634011|634012|651266|691878|691879|695302|709996|749582|749583|765197|765199|775031|775043|782332|782333|788784|789251|795722|830942|830943|830944|830945|830946|830947|851036|851290|857404|858719|894657|894658|894659|894660|896129|896130|896131|906363|916959|916960|916961|924100|924101|932947|944650|954190|954191|954192|954193|954194|954195|954196|959771|971877|971878|971879|971880|971881|971882|971883|971884|971885|971886|972774|975786|978203|978204|978205|983740", + "text": "Sandhoff disease" + }, + { + "baseId": "18913|99109", + "text": "HEXB POLYMORPHISM" + }, + { + "baseId": "18914|18916|18917", + "text": "Sandhoff disease, juvenile type" + }, + { + "baseId": "18915", + "text": "Hexosaminidase B (paris)" + }, + { + "baseId": "18917|18918", + "text": "Sandhoff disease, adult type" + }, + { + "baseId": "18920", + "text": "HEXOSAMINIDASE B, HEAT-LABILE POLYMORPHISM" + }, + { + "baseId": "18921|18922|18924|18925|18926|543813", + "text": "Sandhoff disease, infantile type" + }, + { + "baseId": "18923", + "text": "Sandhoff disease, chronic" + }, + { + "baseId": "18928|18928|18929|18930|18931|18932|18933|18934|18935|18936|18937|18938|18939|18940|18943|18944|18945|18946|18947|18948|18949|18950|18951|18952|18953|18954|18956|18957|18958|18959|18961|18963|18964|18965|18966|18967|18968|18969|18970|18971|18972|18972|18973|18974|18975|18976|18977|18980|18981|38431|39563|99095|99096|99097|99098|99099|99100|106593|106594|106595|132034|186933|186934|186935|186936|186937|186938|186939|186940|191502|205779|214781|215043|215045|222992|222993|255344|255345|271317|272306|323287|323296|323309|332971|332973|332975|332980|339827|339828|339830|339842|339844|339848|339849|339851|341250|341255|341256|341257|341260|341265|341266|341267|341270|358302|358303|358304|358305|358306|358307|358308|358309|358310|358311|358312|358313|358314|358315|358316|361391|362115|362116|362117|362118|362119|362120|362121|362122|362123|362124|362125|362126|362127|362128|362129|362130|362131|373669|376623|400224|404823|409341|432438|432439|432440|432441|433602|438669|445415|465273|486124|487657|487757|487870|513352|529097|547520|547522|547525|547527|547529|547534|547537|547538|547540|547542|547545|547547|547549|547552|547553|547554|547559|547561|547562|547563|547564|547566|547567|547568|547570|547572|547579|547583|547585|547588|547594|547758|547760|547761|547766|547767|547769|547770|547773|547775|547778|547781|547783|547785|547787|547789|547794|547804|547805|547807|547815|547815|547817|547824|547825|547827|548183|548186|548188|548190|548193|548199|548202|548209|548211|548212|548214|548220|548222|548223|548225|548230|548237|548239|548251|548252|548254|548256|553391|569113|569591|610619|610620|650338|650344|650348|650349|650350|650351|650354|650355|650356|652704|685064|685068|685071|685072|689609|689610|689612|690127|690128|787911|791483|799818|818710|820732|820734|820735|850395|850397|850399|850404|850405|850406|850408|850409|850410|850418|861131|905953|906394|906395|917386|917538|920351|929858|939716|939717|939720|939721|940337|940338|951927|959397|959398|959399|960129|969129|972213|972214|972215|972216|972217|972218|972219|972220|972221|972222|972599|972776|975828|979657|979658|979659|979660", + "text": "Tay-Sachs disease" + }, + { + "baseId": "18934|18938", + "text": "Gm2-gangliosidosis, juvenile" + }, + { + "baseId": "18935|18936|18960|18963", + "text": "Tay-Sachs disease, B1 variant" + }, + { + "baseId": "18935", + "text": "Hexa, dn allele" + }, + { + "baseId": "18936", + "text": "HEXA, Czechoslovakian allele" + }, + { + "baseId": "18937", + "text": "Gm2-gangliosidosis, adult" + }, + { + "baseId": "18941", + "text": "Tay-sachs disease, juvenile" + }, + { + "baseId": "18945|205779", + "text": "Gm2-gangliosidosis, chronic" + }, + { + "baseId": "18954", + "text": "Gm2-gangliosidosis, adult-onset" + }, + { + "baseId": "18955", + "text": "Gm2-gangliosidosis, variant b1" + }, + { + "baseId": "18961", + "text": "Beta-hexosaminidase a, pseudodeficiency of" + }, + { + "baseId": "18966|18977|18978", + "text": "Gm2-gangliosidosis, late onset" + }, + { + "baseId": "18967", + "text": "Tay-sachs disease, juvenile/adult" + }, + { + "baseId": "18980|18982", + "text": "Gm2-gangliosidosis, subacute" + }, + { + "baseId": "18983|18985|18986|18988|18989|18990|18991|18995|18996|79141|79144|97584|97586|247342|247343|247344|254213|254214|314326|314327|314331|314340|320923|320924|320933|320933|320935|327001|327002|327010|327014|327019|327020|327022|327023|328074|328075|328082|372234|480575|480576|480577|495533|550316|610570|610571|614679|614680|614681|614682|614683|614684|614685|614686|614687|614688|622209|678025|678026|678027|678028|678029|678030|678031|678032|678033|678034|678035|678036|678037|679845|682856|685292|818637|858612|858613|868129|868130|868131|868132|868133|868134|868135|868136|868137|868138|868139|868140|868141|868142|868143|868144|868661|964366|967292|967293|967294|967295|967296|967297|967298|971298|971299|971300|971301|971302|971303|971304|971305|971306|971307|971308|971309|971310|971311|971312|971313|971314|971315|971316|971317|971318|971319|971320|971321|971322|971323|971324|971325|971326|971327|971328|971329", + "text": "Hereditary angioedema type 1" + }, + { + "baseId": "18984|18985|18986|18987|18992|18993", + "text": "Hereditary C1 esterase inhibitor deficiency - dysfunctional factor" + }, + { + "baseId": "18994", + "text": "Complement component 4, partial deficiency of, due to dysfunctional c1 inhibitor" + }, + { + "baseId": "18997|919042", + "text": "Gamma-glutamylcysteine synthetase deficiency, hemolytic anemia due to" + }, + { + "baseId": "18999|19000|19001|19002|19003|19004|19005|19006|19007|132591|132592|136009|136013|136014|136016|136019|136021|205571|205572|205573|205574|205575|205576|205577|205578|205579|205580|205581|205582|205583|205584|205585|205586|205587|205588|205589|205590|205591|205592|205593|205594|205595|205596|207166|207167|227281|251823|251826|264246|296428|296432|296434|296439|296447|296448|298255|298288|298295|298297|302407|302409|302417|302432|302447|302453|302454|302674|302689|368456|406663|425627|427123|428360|443725|443729|453886|454757|454758|454760|455608|455619|491478|492306|493014|495256|501366|513557|520536|520935|521172|521367|521403|521405|521411|560217|560219|560336|560338|562999|563000|564113|589686|633645|633646|633647|633648|633649|633650|633651|633652|633653|633654|651318|682733|691802|691803|691804|691805|691808|698945|698946|698947|698948|698949|698950|709735|782224|782225|782227|790527|790528|790529|790530|804847|821906|830545|830546|851026|906309|918935|918936|923951|923952|923953|923954|923955|932799|932800|932801|932802|932803|944497|954096|964247|965622|969775|971589|980323", + "text": "Treacher Collins syndrome 1" + }, + { + "baseId": "19008|19009|19010|19011|19013|19014|44341|45839|48347|85588|85590|97580|97581|97582|97583|98152|188918|190191|190541|190542|190543|191823|196030|196032|196033|196034|196036|207017|207018|207019|207020|207021|207022|207023|207024|209346|215261|221322|221323|221324|221325|221326|221327|221328|221329|221330|221331|221332|221333|221334|221335|221336|221337|221338|221339|221340|226620|227247|237135|237219|237276|237302|238972|238973|238974|238975|238976|238977|238978|238979|238980|238981|238982|238983|238984|238985|238986|238987|238988|238989|238990|238991|238992|238993|238994|238995|238996|238997|238998|238999|239000|239001|239002|239003|239004|239005|239006|239007|239008|239009|239010|239011|239012|239013|239014|239015|239016|239017|239018|239019|250795|250798|250799|250800|250802|264140|268055|287204|287209|287210|287219|287220|287225|287227|287229|287230|287232|287917|287918|287919|287929|287936|287938|287939|287940|287945|287946|290505|290506|290507|290511|290512|290513|290519|290520|290788|290800|290802|290807|290808|290809|290811|290823|290825|290829|290832|357266|359370|359414|359465|359467|359509|361392|361394|363831|364013|364034|366684|366694|366698|366702|366709|366718|366730|366751|366756|366757|366758|366761|366780|366922|366940|366943|366944|366946|366953|366959|366963|366975|366976|366980|366982|366988|366989|366993|366997|366998|366999|367002|367005|367007|367014|367021|367026|367028|367041|367043|367049|367798|367805|367806|367812|367847|367860|367861|367863|367864|367866|367873|367891|367893|367900|367904|367916|367920|367921|367925|367929|367933|367934|380190|380192|380193|380194|380196|380198|380199|380200|393066|393071|393072|393075|393079|393081|393082|393085|393090|393091|393092|393098|393099|393100|393102|393105|393106|393107|393109|393112|393113|393114|393236|393242|393244|393245|393247|393252|393257|393258|393434|393438|393443|393445|393450|393455|393456|393457|393458|393468|393471|393475|393476|393484|404761|406013|406015|406020|406021|406022|406023|406024|406025|406026|414894|414897|414898|414899|421404|421406|421407|425505|425510|428091|428092|428095|428097|428098|431545|431904|431905|438148|443294|443295|443299|443300|443303|443304|443305|443306|443308|451417|451421|451422|451428|451430|451431|451434|451437|451438|451623|451627|451629|451634|451637|451643|451645|451647|451648|451650|451652|451654|451662|451663|451666|451668|451767|451769|451773|451781|451786|451790|451792|451800|451832|451834|451835|451840|451845|451851|451856|451858|451861|451867|451868|451871|451874|451875|451878|481124|481125|481663|481664|489071|489422|491200|491202|491203|496235|496236|497906|499893|499900|499904|499907|499919|499922|500137|500139|500151|500292|500302|500304|500319|500329|500342|500343|500345|500360|513526|518556|518558|518562|518567|518568|518569|518571|518573|518575|518577|518580|518582|518583|518585|518587|518591|518593|518594|518595|518641|518643|518645|518653|518655|518662|518668|518709|518713|518715|518718|518724|518725|518733|518744|518745|518747|518754|518755|518757|518763|518768|518774|535697|535698|542124|542128|542134|542138|542141|542143|542146|542148|542151|542152|542155|542156|542158|542163|542165|542167|542169|542171|542175|542190|542194|542195|542197|542201|542203|542204|542205|542207|542208|542210|542211|542212|542215|542216|542218|542219|542220|542221|542222|542223|542224|542226|542228|542229|542230|542233|542234|542235|542239|542240|542241|542242|542243|542244|542245|542246|542247|542250|542251|542253|542257|542261|542265|542267|542271|542273|542275|542280|542281|542282|542286|542287|542289|542292|542294|542295|542296|542301|542302|542303|542304|542305|542306|542307|542308|542309|542310|542311|542312|542313|542314|542316|542318|542320|542321|542322|542326|542327|542329|542331|542333|542334|542337|542338|542339|542340|542341|542343|542344|542345|542346|542347|542348|542349|542350|542351|542352|542353|542354|542355|542356|542358|542359|542360|542361|542363|542364|542365|542367|542369|542370|542371|542372|542374|542375|542376|542377|542378|542379|542380|542381|542383|542384|542385|542386|542388|542392|542393|542394|542395|542396|542397|542398|542399|542400|542401|542402|542403|542404|542405|542406|542407|542408|542409|542410|542411|542412|542413|542414|542415|542416|542417|542418|542419|542420|542421|542422|542423|542424|542425|542426|542427|542428|542429|542430|542431|542432|542433|542434|542435|542436|542437|542438|542439|542440|542441|542442|542443|542444|542445|542446|542447|542448|542449|542450|542451|542452|542453|542454|542455|542456|542457|542458|542459|542460|542461|542462|542463|542464|542465|542466|542467|542468|542469|542470|542471|542472|542473|542474|542475|542476|542477|542478|542479|542480|542481|542482|542483|542484|542485|542486|542487|542488|542489|542490|542491|542492|542493|542494|542495|542496|542497|542498|542499|542500|542501|542502|542503|542504|542505|542506|542507|542508|542509|542510|542511|542512|542513|542514|542515|542516|542517|542518|542519|542520|542521|542522|542523|542524|542525|542526|542527|542528|542529|542530|542531|542532|542533|542534|542535|542536|542537|542538|542539|542540|542541|542542|542543|542544|542545|542546|542547|542548|542549|542550|542551|542552|542553|542554|542555|542556|542557|542558|542559|542560|542561|542562|542563|542564|542565|542566|542567|542568|542569|542570|542571|542572|542573|542574|542575|542576|542577|542578|542579|542580|542581|542582|542583|542584|542585|542586|542587|542588|542589|542590|542591|542592|542593|542594|542595|542596|542597|542598|542599|542600|542601|542602|542603|542604|542605|542606|542607|542608|542609|542610|542611|542612|542613|542614|542615|542616|542617|542618|542619|542620|542621|542622|542623|542624|542625|542626|542627|542628|542629|542630|542631|542632|542633|542634|542635|542636|542637|542638|542639|542640|542641|542642|542643|542644|542645|542646|542647|542648|542649|542650|542651|542652|542653|542654|542655|542656|542657|542658|542659|542660|542661|542662|542663|542664|542665|542666|542667|542668|542669|542670|542671|542672|542673|542674|542675|542676|542677|542678|542679|542680|542681|542682|542683|542684|542685|542686|542687|542688|542689|542690|542691|542692|542693|542694|542695|542696|542697|542698|542699|542700|542701|542702|542703|542704|542705|542706|542707|542708|542709|542710|542711|542712|542713|542714|542715|542716|542717|542718|542719|542720|542721|542722|542723|542724|542725|542726|542727|542728|542729|542730|542731|542732|542733|542734|542735|542736|542737|542738|542739|542740|542741|542742|542743|542744|542745|542746|542747|542748|542753|542754|542755|542757|542759|542760|542761|542762|542763|542765|542766|542769|542771|542772|542773|542776|542777|542778|542779|542781|542782|542784|542785|542787|542788|542789|542791|542792|542793|542794|542795|542796|542799|542800|542801|542802|542804|542806|542807|542810|542811|542814|542816|542817|542818|542819|542820|542821|542822|542824|542825|542826|542828|542830|542831|542833|542834|542835|542836|542838|542839|542841|542842|542843|542844|542847|542848|542849|542850|542851|542852|542853|542854|542855|542856|542859|542861|542862|542863|542864|542867|542869|542871|542872|542873|542874|542875|542876|542878|542879|542880|542881|542882|542883|542884|542885|542886|542889|542891|542893|542894|542896|542898|542902|542906|542908|542911|542914|542917|542919|542922|542925|542928|542933|542935|542940|542953|550589|550590|551615|558269|558271|558273|558275|558277|558279|558281|558283|558285|558644|558646|558648|558650|558652|558654|558656|558658|558660|560943|560945|560947|560953|560959|560966|561961|561962|561964|561986|561987|561999|562019|562023|562024|562025|583087|587416|590553|590558|611575|626367|630478|630479|630480|630481|630482|630483|630484|630485|630486|630487|630488|630489|630490|630491|630492|630493|630494|630495|630496|630497|630498|630499|630500|630501|630502|630503|630504|630505|630506|630507|630508|630509|630510|630511|630512|630513|630514|630515|630516|630517|630518|630519|630520|630521|630522|630523|651006|655476|655477|655481|655482|655483|672040|672041|679741|679742|683508|683509|683510|683511|683512|683513|683514|683515|683516|683517|685139|686236|686237|686238|686239|686241|686242|686244|686246|686248|686251|686252|686253|686254|686256|686257|686258|686259|686260|686261|686262|686263|686264|686265|691206|691207|691211|691212|691213|691214|697658|708356|708358|719961|733568|733569|747770|747772|763415|763416|763417|763420|763426|763428|774782|781449|781451|781452|781457|781458|781459|781460|781462|781466|781468|787231|790290|790291|790292|790293|792732|794251|795275|800475|801342|801343|818216|818217|819020|819274|819275|826975|826976|826977|826978|826979|826980|826981|826982|826983|826984|826985|826986|826987|826988|826989|826990|826991|826992|826993|826994|826995|826996|826997|826998|826999|827000|827001|827002|827003|827004|827005|827006|827007|827008|827009|827010|827011|827012|827013|827014|827015|827016|827017|827018|827019|827020|827021|827022|827023|827024|827025|827026|827027|850885|850921|850923|851210|856192|856195|856202|857348|858460|859195|885449|885450|885451|905045|906234|906235|918782|922912|922913|922914|922915|922916|922917|922918|922919|922920|931568|931569|931570|931571|931572|931573|931574|931575|931576|931577|931578|931579|931580|931581|931582|931583|931584|931585|939912|939913|943113|943114|943115|943116|943117|943118|943119|943120|943121|943122|943123|943124|943125|943126|953194|953195|953196|953197|953198|953199|953200|953201|953202|953203|953204|953205|953206|953207|953208|953209|953210|953211|953212|953213|953214|953215|953216|953217|953218|953219|953220|953221|953222|953223|953224|953225|953226|953227|959656|963257|964206|966072|966075|966076|966077|966078|966079|966080|966081|966082|966084|966085|966087|966088|966089|966090|966091|966092|966093|966094|966105|970747|975771|977763|977764|977765|977766|977767|977768|977769|977770|977771|977772|977773|977774|977775|977776|977777|977778|977779|977780|977781|977782|977783|977784|977785|977786|977787|977788|977789|977790|977791|977792", + "text": "Alstrom syndrome" + }, + { + "baseId": "19015|19016|22015|27408|27409|27619|28691|28692|28693|28694|29022", + "text": "Breast adenocarcinoma" + }, + { + "baseId": "19018|19019|19020|19021|19022|19023|19024|552302", + "text": "Friedreich's ataxia" + }, + { + "baseId": "19025|19026|19027|19028|19029|19031|19032|19033|19034|19035|71230", + "text": "Congenital muscular dystrophy-dystroglycanopathy with brain and eye anomalies, type A3" + }, + { + "baseId": "19027|19028|19031|19032|19036|19037|19038|19039|19039|71214|71216|71217|71218|71219|71220|71221|71221|71222|71223|71225|71226|71227|71228|71229|71230|71231|71232|71233|71234|71235|71236|71237|71238|71239|71240|71241|71242|71243|71245|71246|71247|71248|71249|71250|101656|101658|135450|172203|172204|172205|172205|177974|186624|195383|195732|206823|259673|267066|267566|267575|269177|269429|272350|272833|273163|273827|274517|274517|275297|275411|357094|357095|357096|357097|357098|357099|357100|357101|357102|357103|357104|357105|357106|357107|357108|357109|357110|357111|357112|365373|405212|405214|427839|448090|489006|515974|541148|541152|541154|541163|541165|541168|541174|541177|541179|541182|541189|541193|541195|541200|541202|541270|541271|541273|541279|541280|541282|541283|541285|541286|541287|541289|541290|541291|541293|541294|541296|541297|541298|541305|552046|557318|557371|628117|628118|628121|628124|628131|650690|685813|690631|690633|695053|696779|696780|707439|777139|789984|824212|824213|824215|864535|973097|977543|977544|977545|977546|977547|977548", + "text": "Muscle eye brain disease" + }, + { + "baseId": "19031|19031|19036|19037|19037|19038|19039|19039|19039|71214|71221|71221|71221|71225|71226|71231|71232|71243|71243|71249|71249|101656|135450|172203|172204|172204|172205|172205|177975|195383|195732|206819|206821|206823|259673|259673|265294|267066|267551|267566|267575|269177|269306|269429|269471|269959|270384|270402|270427|270503|271148|272350|272833|272864|273163|273823|273827|274248|274517|274517|274683|274722|275297|275297|275411|280745|282511|359364|365125|405212|405214|405214|427839|440513|442860|442861|442862|446963|448087|448090|448095|448182|448184|448190|448206|448211|448213|448216|448224|448356|448358|491875|492078|492161|492526|493660|498501|498524|498532|515972|515974|515978|516004|516022|516036|516040|516105|516109|516111|538948|541179|541285|541296|556506|557091|557093|557095|557097|557318|557369|557371|557373|585546|587082|587489|588487|628115|628116|628117|628118|628119|628120|628121|628122|628123|628124|628125|628126|628127|628128|628129|628130|628131|628132|628133|628134|628135|650603|650604|650690|685813|690631|690633|690634|695053|696780|707438|707439|718991|718993|732494|732495|761996|761997|761998|774529|774537|774542|777082|777139|778833|780721|818980|818981|824203|824204|824205|824206|824207|824208|824209|824210|824211|824212|824213|824214|824215|824216|824217|850802|864538|922110|922111|922112|930583|930584|930585|930586|930587|930588|942018|942019|942020|942021|942022|942023|942024|952457|952458|952459|952460|952461|952462|959561|959562|959563|959564|959565", + "text": "Congenital muscular dystrophy-dystroglycanopathy with mental retardation, type B3" + }, + { + "baseId": "19031|19031|19036|19036|19037|19039|19039|48318|71214|71217|71221|71221|71221|71225|71226|71231|71232|71232|71243|71243|71249|71249|101655|101656|101656|101658|135450|135450|142488|172203|172203|172204|172204|172205|172205|177975|195383|195383|195732|206819|206821|206823|206823|249977|259673|259673|265294|265294|267066|267551|267551|267566|267575|269177|269177|269306|269429|269471|269959|270384|270384|270402|270427|270503|271148|272350|272833|272864|273163|273823|273827|274248|274517|274517|274683|274722|275297|275297|275411|280745|280745|280746|280747|281212|281227|282490|282501|282502|282511|282511|359364|359364|365125|405212|405214|405214|427839|440513|442860|442860|442861|442862|446963|448087|448090|448090|448095|448182|448184|448190|448206|448211|448213|448216|448216|448224|448356|448358|491875|492078|492150|492161|492526|493660|498501|498524|498532|515972|515974|515978|516004|516022|516036|516040|516105|516109|516111|538948|541179|541285|541296|541296|556506|557091|557093|557095|557097|557318|557369|557371|557373|585546|587082|587489|588487|628115|628116|628117|628118|628119|628120|628121|628122|628123|628124|628125|628126|628127|628128|628129|628130|628130|628131|628131|628132|628133|628134|628135|650603|650604|650690|685813|690631|690633|690634|695053|696780|696780|707438|707439|718991|718993|732494|732494|732495|761996|761997|761998|774529|774537|774542|777082|777139|778833|780721|804984|818980|818981|824203|824204|824205|824206|824207|824208|824209|824210|824211|824212|824213|824214|824215|824216|824217|850802|864532|864533|864534|864535|864536|864537|864538|864538|864539|864540|865188|865189|922110|922111|922112|930583|930584|930585|930586|930587|930588|942018|942019|942020|942021|942022|942023|942024|952457|952458|952459|952460|952461|952462|959561|959562|959563|959564|959565", + "text": "Limb-girdle muscular dystrophy-dystroglycanopathy, type C3" + }, + { + "baseId": "19031|19033|19039|71217|71221|71221|71231|71232|71243|71249|172204|172205|248803|248805|248807|248808|259673|269429|274517|275297|405212|405214|587057", + "text": "Retinitis pigmentosa 76" + }, + { + "baseId": "19036|71232|101655|101656|101658|134731|134732|134733|134734|134735|135450|142488|172203|190323|195281|195383|195615|195925|195926|206823|229570|229571|249977|252661|265294|266194|266398|267551|269177|269303|270384|272620|273054|273827|273914|273915|280745|280746|280747|281212|281227|282490|282501|282502|282511|302341|302351|302352|302353|302363|302364|302368|302369|302374|302375|302377|302378|302385|302386|302391|302392|302397|302399|302400|302402|302406|302408|302410|305558|305560|305562|305563|305574|305575|305576|305579|305580|305588|305590|305592|305595|305613|305615|305616|305621|305625|305626|305632|305634|305641|305642|305643|305644|305646|305648|305649|305651|305653|305654|305656|305658|310371|310372|310382|310383|310385|310387|310390|310394|310396|310416|310426|310441|310445|310449|310451|310455|310459|310461|310482|310483|310489|310495|310498|310499|310500|310501|310508|310511|310513|310519|310523|310557|310564|310569|310587|310588|310590|310593|310596|310599|310602|310607|310627|310630|310632|310650|310654|310656|310657|310667|310669|310671|310672|310676|310678|337988|347603|352488|359364|369131|492150|501707|541296|588507|589630|619919|628130|628131|696780|732494|777643|864532|864533|864534|864535|864536|864537|864538|864539|864540|865188|865189|897756|897757|897758|897759|897760|897761|897762|897763|897764|897765|897766|897767|897768|897769|897770|897771|897772|897773|897774|897775|897776|897777|897778|897779|897780|897781|897782|897783|897784|897785|897786|897787|897788|897789|897790|897791|897792|897793|897794|897795|897796|897797|897798|897799|897800|897801|897802|897803|897804|897805|897806|897807|897808|897809|897810|897811|897812|897813|897814|897815|897816|897817|897818|897819|897820|897821|897822|897823|897824|897825|897826|897827|897828|897829|897830|900336", + "text": "Congenital Muscular Dystrophy, alpha-dystroglycan related" + }, + { + "baseId": "19040|101273|177625|191238|227306|270301|301375|301390|301393|301397|301398|301402|301407|304561|304564|304566|304584|304589|304590|304591|304592|304595|304600|304601|304603|304608|304609|304610|304621|304622|309194|309199|309209|309212|309214|309224|309230|309231|309238|309239|309240|309241|309244|309246|309248|309251|309252|309253|309404|309413|309414|309416|309421|309426|309430|309431|309432|309440|368827|368831|369119|369417|370651|424652|424653|444040|455974|455978|456529|494135|502151|514549|521952|522360|561183|566256|583101|620246|620247|622373|626169|635441|635442|635443|635444|651629|655762|692097|692098|699734|710693|744257|765967|789118|805521|832774|832775|832776|832777|897133|897134|897135|897136|897137|897138|897139|897140|897141|897142|897143|897144|897145|897146|897147|897148|897149|897150|897151|897152|897153|897154|897155|897156|897157|897158|897159|897160|897161|897162|897163|897164|897165|897166|897167|897168|897169|897170|897171|897172|897173|897174|897175|900294|900295|900296|920234|921226|921227|921228|921230|921231|921232|921234|921235|940055|954978|960618", + "text": "Congenital disorder of glycosylation type 2i" + }, + { + "baseId": "19041|19042|19043|278071|278075|278077|278079|278082|278083|278084|278087|278091|278092|278095|278096|278099|278100|278106|278107|278108|278109|278115|278118|278120|278121|278122|278123|278125|278126|278127|278129|278142|278149|278150|279035|279042|279044|279045|279049|279061|279070|279071|279073|279074|279078|279090|279091|279093|279108|279110|279112|279115|279240|279247|279248|279251|279252|279264|279265|279266|279269|279271|279272|279273|279276|279284|279287|432426|447327|447439|447541|447559|557070|627161|627162|627163|627164|650561|685590|685591|685592|685593|690429|690430|696328|731929|794509|801975|823054|823055|823056|823057|823058|863064|863065|863066|863067|863068|863069|863070|863071|863072|863073|863074|863075|863076|863077|863078|863079|863080|863081|863082|863083|863084|863085|863086|865067|865068|865069|865070|865071|865072|865073|865074|930185|952158|961748", + "text": "Deficiency of pyrroline-5-carboxylate reductase" + }, + { + "baseId": "19044|19045|19046|19047|19048|19049|19050|19051|19052|469838|469884|469887|469889|469889|469891|470841|470907|470908|471319|471321|471326|471330|471334|471795|471796|534055|538494|538495|571658|573199|649178|649179|689259|689260|689262|694667|694668|773425|849028|849029|849030|849031|929396|939191|939192|951329|959021|959022|959023", + "text": "Proline dehydrogenase deficiency" + }, + { + "baseId": "19044|19045|19046|19047|19048|19049|19050|19052|469889", + "text": "Schizophrenia 4" + }, + { + "baseId": "19053|19054|19055|54956|54957|54958|54959|54961|54962|54963|54964|54965|54966|54967|54968|54969|54970|54971|54972|54973|54974|54975|54976|54978|54980|54981|54982|54983|54984|54985|54986|54987|54988|88805|174654|174655|174656|174659|174661|174662|174663|174665|174924|174925|174927|174929|174932|174933|174934|174936|174937|174938|174940|174941|227337|229771|229776|229777|229781|229782|229783|229789|229790|265828|275061|310065|310066|310072|310075|310086|310089|310090|310096|310097|310099|315093|315095|315097|315103|315112|315118|315119|315120|315122|315153|315155|315162|321126|321133|321134|321141|321142|321144|321149|321152|321159|321163|321165|321170|321171|321172|321173|321176|321708|321720|321723|321724|321730|321735|321741|321742|321743|438767|444595|609748|615808|615809|615837|620354|620355|620356|620357|620358|620359|638842|790956|793366|865733|865734|865735|865736|865737|865738|865739|865740|865741|865742|865743|865744|865745|865746|865747|865748|865749|865750|865751|865752|868465", + "text": "Deafness, autosomal recessive 30" + }, + { + "baseId": "19056|19057|19058|99846|99847|99850|99852|99854|134263|134264|191241|191558|205796|266934|337138|337146|337152|337156|337166|346875|346885|346886|346888|346890|346901|346904|350939|350943|350946|350949|350952|350957|350961|351937|351941|351944|351954|378513|469836|470829|482221|493775|534022|534106|571656|620676|620677|620678|620679|649131|649132|649133|649134|649135|649136|694662|742710|742712|786537|821385|848982|848983|852417|852917|929387|951293|951294|951295|959012", + "text": "GLUTAMATE FORMIMINOTRANSFERASE DEFICIENCY" + }, + { + "baseId": "19059", + "text": "Acid alpha-glucosidase, allele 2" + }, + { + "baseId": "19059|19060|19061|19062|19063|19064|19066|19068|19069|19070|19071|19072|19073|19074|19075|19076|98368|98369|98370|98371|98372|98373|98374|98375|98376|98377|98379|98381|98382|98383|98384|98385|98386|98387|98388|98389|98390|98391|98392|98393|98394|98395|98396|98397|98398|98399|98400|101777|134567|134568|176511|176512|176648|176649|177162|177735|178323|178324|178325|185936|186552|186553|186554|186555|186556|186557|186560|186561|186562|186563|186987|186988|186989|186990|186991|186992|186993|186994|186995|186996|186997|186998|186999|187000|187001|187002|187003|187004|187005|187006|187007|187008|187009|187010|187011|187012|187013|187014|187015|187016|187017|187018|187019|191138|191317|191484|191621|191622|191860|192076|192181|193383|193384|194794|195208|195553|195554|226966|247145|256514|256515|256516|256517|256520|256522|256523|256525|256526|256527|256530|260196|265030|265034|265191|265192|265193|265289|265293|265334|265469|265477|265478|265511|265536|265567|265987|265988|266231|266375|266479|266491|266599|266870|266879|267079|267456|267467|267732|267733|267735|268003|268131|268208|268330|268348|268469|268470|268483|268594|268686|268717|268720|268734|269012|269013|269103|269123|269394|269434|269531|269581|269603|269693|269826|269886|269913|269971|270058|270230|270255|270400|270447|270456|270465|270466|270487|270505|270554|270672|270695|270706|270718|270815|270842|271374|271651|272229|272639|272668|272742|272871|272910|273000|273593|273598|273604|273725|273872|273913|274399|274423|274460|274462|274503|274508|274536|274564|274677|275161|275301|275449|275460|330436|330442|330443|330447|330451|330453|330456|330459|330464|330465|330471|330474|340632|340638|340639|340642|340643|340645|340647|340661|340669|340670|340684|340686|340693|340700|340701|340702|346306|346307|346308|346310|346311|346312|346317|346318|346321|347657|347661|347665|347666|347669|347675|347677|347680|347689|354179|354180|358483|358484|358485|358486|358487|358488|358489|358490|358491|358492|358493|358494|358495|358496|358497|358498|358499|358500|358501|358502|358503|358504|358505|358506|358507|358508|358509|358510|358511|358512|358513|358514|358515|358516|358517|358518|358519|358520|358521|358522|358523|360286|375741|375742|375747|375754|376649|376738|376764|376768|376770|376772|378819|378821|390687|410290|410291|410292|410294|410296|410297|410298|415589|415590|422205|422207|422208|426256|426257|433585|445910|445911|466300|467629|467632|467633|467634|467639|467641|467643|467645|467654|467656|467659|467660|467671|468475|468487|468493|468494|468503|468508|468516|468518|468523|468533|468534|468537|468538|468549|468552|468554|468559|468563|468565|468566|468567|468571|468573|468575|468577|468970|468974|468980|468981|468988|468991|468993|468999|469001|469002|469007|469010|469012|469014|469025|469230|469231|469234|469238|469239|469240|469244|469246|469252|469256|469264|469265|469267|469273|469274|469291|469297|469304|469305|469307|469324|469330|469335|486830|487782|487917|488012|488324|488456|488457|488591|488801|489097|489541|489548|489705|489991|490330|490513|490717|490804|491098|491246|491302|491513|492095|492126|492452|492718|493201|493217|506202|506463|506466|506769|506770|507202|507211|512334|513141|530557|530854|530856|531910|531911|531920|531928|531931|531933|531936|531948|531951|531952|531955|531960|531962|531965|531967|531968|531970|531972|531978|531979|531982|532010|532021|532022|532035|532036|532038|532047|532050|532054|532057|532059|532292|532300|532301|532308|532316|532318|532322|532331|532345|548360|548369|548371|548372|548379|548380|548382|548388|548389|548394|548395|548398|548400|548402|548403|548405|548408|548409|548413|548414|548415|548418|548419|548423|548426|548429|548431|548433|548434|548435|548436|548438|548439|548440|548444|548446|548447|548450|548455|548461|548464|548765|548768|548775|548777|548778|548780|548781|548784|548786|548788|548790|548792|548797|548800|548801|548809|548811|548815|548817|548824|548830|548832|548834|549140|549141|549144|549145|549150|549152|549154|549157|549158|549162|549168|549171|549174|549181|549182|549188|549189|549190|549191|549194|549198|549200|549201|549202|549205|551432|552208|569838|569842|569844|569847|569866|569872|569875|569878|569881|569882|569884|571697|571698|571708|571710|571716|571723|571726|571727|571729|571734|572386|572387|572391|572397|572402|572410|574665|574666|574667|574668|574669|574670|574671|574672|574673|574674|574675|584307|584550|585768|586531|587056|587075|587207|588208|588442|588443|589005|589023|589256|589261|621607|621608|621609|621866|621867|625779|625781|625782|625783|625835|646860|646861|646862|646863|646864|646865|646866|646867|646868|646869|646870|646871|646872|646873|646874|646875|646876|646877|646878|646879|646880|646881|646882|646883|646884|646885|646886|646887|646888|646889|646890|646891|646892|646893|646894|646895|646896|646897|646898|646899|646900|646901|646902|646903|646904|646905|646906|646907|646908|646909|646910|646911|646912|646913|652862|652872|653052|653056|653060|653062|653183|653542|681815|682391|682392|694216|694217|694218|695780|695781|695782|715778|727493|727494|727495|727497|741106|741108|756200|756202|756203|756204|760671|771903|771906|771910|771911|771913|771915|771917|776550|785783|785784|785790|785792|785793|788141|788915|798952|798953|821173|821174|846379|846380|846381|846382|846383|846384|846385|846386|846387|846388|846389|846390|846391|846392|846393|846394|846395|846396|846397|846398|846399|846400|846401|846402|846403|846404|846405|846406|846407|846408|846409|846410|846411|846412|846413|846414|846415|846416|846417|846418|846419|846420|846421|846422|846423|846424|846425|846426|846427|846428|846429|846430|846431|846432|846433|846434|851761|852262|852923|852925|852926|878736|878742|878743|878744|878745|878746|878747|878748|878749|878750|878751|878752|878753|878754|878755|878756|878757|878758|878759|878760|878761|878762|880615|905955|915010|917274|917275|917277|917278|917771|919780|920384|920505|921196|921197|921198|921199|921200|921201|921202|921203|921204|921205|921206|921207|928584|928585|928586|928587|928588|928589|928590|928591|928592|928593|928594|928595|928596|928597|928598|928599|938282|938283|938284|938285|938286|938287|938288|938289|938290|938291|938292|938293|938294|938295|938296|950354|950355|950356|950357|950358|950359|950360|950361|950362|950363|950364|950365|950366|950367|958350|958351|958352|958353|958354|958355|958356|958357|958358|958359|958360|958361|958362|958363|958364|958365|958366|958367|958368|958369|958370|958371|958372|960252|960901|960902|961109|961110|961111|961112|961113|961114|961115|961116|961117|961118|961119|961120|961121|961122|961123|961124|961126|961127|961128|961129|961130|961131|961132|961133|961134|961135|961136|970243|970411|970412|970479|970480|970481|971096|972281|972282|972283|972284|972285|972286|972287|972896|972897|972898|972899|972900|976693|979926|979927|979928|979929|979930|979931|979932|979933|982132", + "text": "Glycogen storage disease, type II" + }, + { + "baseId": "19060|19061|19064|19067|19068|610587", + "text": "Glycogen storage disease type II, infantile" + }, + { + "baseId": "19062|19063|19065|19066|19071|19074|19075", + "text": "Glycogen storage disease II, adult form" + }, + { + "baseId": "19066|21965|27037|27039|31088|260196|358501|448519|620443|654717", + "text": "Glycogen storage disease" + }, + { + "baseId": "19069", + "text": "Acid alpha-glucosidase, allele 4" + }, + { + "baseId": "19077|19078|131951|131952|508861|508862|967125", + "text": "Ichthyosis, congenital, autosomal recessive 11" + }, + { + "baseId": "19079|19080|19081|19082|19083|19084|19085|19086|19087|19088|19089|19090|19091|19092|19093|85021|227221|250164|250165|250166|250167|250168|250170|250173|250174|250175|250292|281897|281899|281900|281992|281993|282058|282059|282078|282079|282084|282293|282528|282529|282630|282631|282633|282685|282693|282708|282739|282740|282742|282745|282996|282997|284188|284193|284202|284295|284298|284299|284300|284304|284339|284436|284439|284440|284444|284526|284528|284532|284533|284534|284535|284554|284555|284572|284575|284938|284947|284948|360819|361166|421275|576091|612258|612259|620033|697043|697044|697046|707747|707748|719276|719282|732794|762198|778886|790066|857345|881106|881107|881108|881109|881110|881111|881112|881113|881114|881115|881116|881117|881118|881119|881120|881121|881122|881127|881189|881190|881191|881194|881238|881239|881240|881241|881242|881243|881244|882802|882803|882804|882807|904876|918671|918674", + "text": "Deficiency of iodide peroxidase" + }, + { + "baseId": "19094|19095|19096|19097|19098|19099|19100|101399|101400|101401|101402|101404|141935|141936|141937|141938|200300|247120|326464|326467|326476|326477|326481|326484|336230|336237|336238|336243|336247|336251|336259|336263|336265|336269|336271|336272|336274|336278|336281|336285|342469|342473|342476|342477|342480|342481|342482|342484|342486|342492|344131|344133|344134|344137|344138|344139|344142|344143|374618|375507|375520|375531|375532|375686|375687|409746|426185|466056|466065|466824|466832|467109|505543|530341|530344|530430|530435|530602|568428|569400|570537|570584|574190|645062|645063|645064|645065|688667|695707|740390|755428|820888|844413|844414|844415|844416|844417|844418|857403|876035|876036|876037|876038|876039|876040|876041|876042|876043|876044|876045|876046|876047|876048|876049|876050|876051|876052|876053|876054|876055|876056|876057|876058|876723|927977|927978|927979|927980|937643|937644|957902|957903", + "text": "Deficiency of malonyl-CoA decarboxylase" + }, + { + "baseId": "19101|19102|19103|19104|187124|187125|227367|227368|237177|255228|255229|255230|255231|255232|255233|255234|255235|255236|255237|255238|255239|255240|255241|264574|271316|322584|322586|322587|322589|322590|322592|322604|322605|322607|322608|322612|322614|322618|322620|322621|322622|322624|322629|322632|322633|332060|332064|332068|332071|332074|332075|332080|332082|332084|332086|332092|332099|332110|332111|332127|332129|332138|332140|332145|332148|332152|332155|339022|339029|339031|339034|339040|339046|339047|339051|339063|339064|339065|339067|339070|339071|339087|339098|339102|339105|339106|339110|340593|340597|340603|340605|340607|340608|340609|340618|340619|340621|340634|340636|340637|340644|340646|364107|409243|409247|445329|512140|538442|609269|609270|620516|620517|620518|620519|620520|620521|620522|621483|626316|703228|703229|703230|714464|714465|726101|726104|730999|731001|739640|739646|739647|754473|754474|754476|754481|754483|770181|770183|778245|791454|873587|873588|873589|873590|873591|873592|873593|873594|873595|873596|873597|873598|873599|873600|873601|873602|873603|873604|873605|873606|873607|873608|873609|873610|873611|873612|873613|873614|873615|873616|873617|873618|873619|873620|873621|873622|873623|873624|873625|873626|873627|873628|873629|873630|873631|873632|873633|873634|873635|873636|873637|873638|873639|873640|873641|873642|873643|873644|873645|873646|873647|873648|873649|873650|873651|873652|873653|873654|873655|876519|876520|876521|876522|876523|876524|876525|876526|876527|903688|903691|903692|906176|973036", + "text": "Thyroid dyshormonogenesis 6" + }, + { + "baseId": "19105|19106|19108|19109|19110|19111|19112|39560|39561|39562|131935|131936|131937|131938|131939|131940|131941|131942|131943|131944|131945|131946|274485|335338|335358|335359|335360|335361|335369|335371|335374|335378|345199|345200|345203|345205|349932|349936|349937|349940|349941|349943|349944|350941|350942|350945|350947|350950|350951|350954|350955|350958|442289|471355|533596|537001|550312|571202|571210|572881|572886|573455|575091|575091|575092|575093|575094|583131|624677|648644|648645|648646|648647|648648|648649|648650|648651|648652|648653|648654|648655|648656|648657|648658|648659|653099|653196|653541|716950|731341|757494|757495|757496|757497|757500|757501|760951|773095|773096|776936|780209|786367|788077|788937|789389|791979|821319|821320|821321|821322|821323|821324|848363|848364|848365|848366|848367|848368|848369|848370|848371|848372|848373|848374|848375|848376|848377|848378|848379|851849|886058|886059|886060|886061|886062|886063|886064|886065|886066|886067|886068|886069|886070|886071|887457|887458|929174|929175|929176|929177|929178|938969|938970|938971|938972|940508|951087|951088|951089|958830|958831|958832|958833|958834|965449", + "text": "Aicardi Goutieres syndrome 5" + }, + { + "baseId": "19113|19114|19115|678038", + "text": "Atrial septal defect 6" + }, + { + "baseId": "19116|19117|19118|19119|19120|19121|19122|19123|19124|19125|39557|39558|78985|78987|78989|106596|134235|134236|140505|190553|195734|202867|202869|202871|202871|202880|202895|202896|217194|332905|361660|445413|465133|489664|513349|513350|513351|513633|547494|547496|547501|547502|547504|547505|547512|547515|547518|547519|547521|547731|547732|547734|547736|547737|548146|548148|548159|551390|551391|551392|551393|569589|612357|802207|858717|906332|972210|972211|972212", + "text": "Neuronal ceroid lipofuscinosis 6" + }, + { + "baseId": "19126|19126|19127|19128|19128|19130|19131|19131|19132|19133|19135|19136|19136|19137|19137|19138|19139|70651|70652|70653|70654|70655|70655|70657|70658|70659|70660|70661|70662|70662|70663|70664|70665|70666|70667|70668|75348|76466|76466|76467|76467|76468|193370|193372|193372|251814|251814|251815|251815|251816|251816|251817|251817|265354|265354|265355|265355|267147|267147|268613|274270|274270|296301|296302|296303|296306|296306|296314|296316|296323|296325|296328|296332|296335|296337|296339|296341|296346|296347|296348|296354|296356|296360|298117|298139|298140|298144|298145|298146|298149|298150|298151|298155|298163|298164|298165|298166|298167|298173|298181|298182|298188|302172|302178|302181|302182|302183|302183|302184|302187|302188|302193|302193|302195|302198|302203|302205|302208|302209|302240|302241|302245|302246|302248|302250|302251|302270|302275|302276|302293|302298|302424|302427|302428|302433|302433|302435|302436|302437|302438|302439|302440|302443|302450|302455|302466|302467|302480|302481|302486|302487|302495|302498|357392|357393|357394|357395|357396|357396|357397|357398|357399|357400|357401|357402|357403|357403|357404|357405|357406|357407|357408|357409|357410|357411|414994|414994|487047|500718|543337|633630|633631|633632|633633|633634|655645|698914|709729|734929|734930|734932|805005|830533|830534|830535|893524|893525|893526|893527|893528|893529|893530|893531|893532|893533|893534|893535|893536|893537|893538|893539|893540|893541|893542|893543|893544|893545|893546|893547|893548|893549|893550|893551|893552|893553|893554|893555|893556|893557|893558|893559|893560|893561|893562|893563|893564|893565|893566|893567|893568|893569|893570|893571|893572|893573|893574|893575|923947|932794|932795|944488|944489|944490|954090|954091|954092", + "text": "Diastrophic dysplasia" + }, + { + "baseId": "19126|19126|19127|19128|19128|19129|19130|19130|19131|19131|19136|19136|19137|19137|70653|70655|70657|70662|75348|76466|76466|76467|76467|76468|193370|193372|193372|228215|251814|251814|251815|251815|251816|251816|251817|251817|265354|265354|265355|265355|267147|267147|268613|274270|274270|296301|296302|296303|296306|296306|296314|296316|296323|296325|296328|296332|296335|296337|296339|296341|296346|296347|296348|296354|296356|296360|298117|298139|298140|298144|298145|298146|298150|298151|298155|298163|298166|298167|298181|298182|298188|302172|302178|302181|302182|302183|302183|302184|302187|302188|302193|302193|302195|302198|302203|302205|302209|302240|302241|302245|302246|302248|302250|302251|302270|302275|302276|302293|302298|302424|302427|302428|302433|302433|302435|302436|302437|302438|302440|302443|302450|302455|302466|302467|302481|302495|302498|357392|357393|357394|357395|357396|357396|357397|357398|357399|357400|357401|357402|357403|357403|357404|357405|357406|357407|357408|357409|357410|357411|414994|414994|487047|500718|543337|633630|633631|633632|633633|633634|655645|698914|709729|734929|734930|734932|830533|830534|830535|893524|893525|893526|893527|893528|893529|893530|893531|893532|893533|893534|893535|893536|893537|893538|893539|893540|893541|893542|893543|893544|893545|893546|893547|893548|893549|893550|893551|893552|893553|893554|893555|893556|893557|893558|893559|893560|893561|893562|893563|893564|893565|893566|893567|893568|893569|893570|893571|893572|893573|893574|893575|923947|932794|932795|944488|944489|944490|954090|954091|954092", + "text": "Atelosteogenesis type II" + }, + { + "baseId": "19126|19126|19127|19128|19128|19130|19131|19131|19132|19133|19136|19136|19137|19137|70653|70655|70657|70662|75348|75348|76466|76466|76467|76467|76468|193370|193372|193372|251814|251814|251815|251815|251816|251816|251817|251817|265354|265354|265355|265355|267147|267147|268613|268613|274270|274270|296301|296302|296303|296306|296306|296314|296316|296323|296325|296328|296332|296335|296337|296339|296341|296346|296347|296348|296354|296356|296360|298117|298139|298140|298144|298145|298146|298150|298151|298155|298163|298166|298167|298181|298182|298188|302172|302178|302181|302182|302183|302183|302184|302187|302188|302193|302193|302195|302198|302203|302205|302209|302240|302241|302245|302246|302248|302250|302251|302270|302275|302276|302293|302298|302424|302427|302428|302433|302433|302435|302436|302437|302438|302440|302443|302450|302455|302466|302467|302481|302495|302498|357392|357393|357394|357395|357396|357396|357397|357398|357399|357400|357401|357402|357403|357403|357404|357405|357406|357407|357408|357409|357410|357411|414994|414994|487047|500718|543337|633630|633631|633632|633633|633634|633634|655645|655645|698914|709729|709729|734929|734929|734930|734932|782214|805081|830533|830534|830535|893524|893525|893526|893527|893528|893529|893530|893531|893532|893533|893534|893535|893536|893537|893538|893539|893540|893541|893542|893543|893544|893545|893546|893547|893548|893549|893550|893551|893552|893553|893554|893555|893556|893557|893558|893559|893560|893561|893562|893563|893564|893565|893566|893567|893568|893569|893570|893571|893572|893573|893574|893575|923947|932794|932795|944488|944489|944490|954090|954091|954092|964243|978156|978157|978158|978159", + "text": "Achondrogenesis, type IB" + }, + { + "baseId": "19126|19128|19131|19136|19137|70665|70666|76466|76467|76468|186695|193370|193372|251814|251815|251816|251817|265354|265355|267147|274270|296301|296302|296303|296306|296314|296316|296323|296325|296328|296332|296335|296337|296339|296341|296346|296347|296348|296354|296356|296360|298117|298139|298140|298144|298145|298146|298149|298150|298151|298155|298163|298164|298165|298166|298167|298173|298181|298182|298188|302172|302178|302181|302182|302183|302184|302187|302188|302193|302195|302198|302203|302205|302208|302209|302240|302241|302245|302246|302248|302250|302251|302270|302275|302276|302293|302298|302424|302427|302428|302433|302435|302436|302437|302438|302439|302440|302443|302450|302455|302466|302467|302480|302481|302486|302487|302495|302498|357396|414994|487047|543810|610502|610503|610504|610505|610506|610507|610508|610509|893524|893525|893526|893527|893528|893529|893530|893531|893532|893533|893534|893535|893536|893537|893538|893539|893540|893541|893542|893543|893544|893545|893546|893547|893548|893549|893550|893551|893552|893553|893554|893555|893556|893557|893558|893559|893560|893561|893562|893563|893564|893565|893566|893567|893568|893569|893570|893571|893572|893573|893574|893575|916952|916953|965835", + "text": "Osteochondrodysplasia" + }, + { + "baseId": "19126|19127|19128|19128|19129|19130|19130|19131|19131|19133|19136|19136|19137|19137|70653|70655|70655|70657|70662|70666|75348|76466|76466|76467|76467|76468|186695|193370|193372|193372|251814|251814|251815|251815|251816|251816|251817|251817|265354|265354|265355|265355|267147|267147|268613|274270|274270|296301|296302|296303|296306|296306|296314|296316|296323|296325|296328|296332|296335|296337|296339|296341|296346|296347|296348|296354|296356|296360|298117|298139|298140|298144|298145|298146|298149|298150|298151|298155|298163|298164|298165|298166|298167|298173|298181|298182|298188|302172|302178|302181|302182|302183|302183|302184|302187|302188|302193|302193|302195|302198|302203|302205|302208|302209|302240|302241|302245|302246|302248|302250|302251|302270|302275|302276|302293|302298|302424|302427|302428|302433|302433|302435|302436|302437|302438|302439|302440|302443|302450|302455|302466|302467|302480|302481|302486|302487|302495|302498|357392|357393|357394|357395|357396|357396|357397|357398|357399|357400|357401|357402|357403|357403|357404|357405|357406|357407|357408|357409|357410|357411|414994|414994|487047|500718|543326|543337|543337|543341|543348|543351|543354|543356|543359|543362|543602|543605|543608|543613|543615|543624|543703|543705|543706|543708|543710|543711|543718|543725|543795|543796|543797|543798|543801|543806|543809|543810|543812|612468|633630|633631|633632|633633|633634|655645|698914|709729|734929|734930|734932|830533|830534|830535|893524|893525|893526|893527|893528|893529|893530|893531|893532|893533|893534|893535|893536|893537|893538|893539|893540|893541|893542|893543|893544|893545|893546|893547|893548|893549|893550|893551|893552|893553|893554|893555|893556|893557|893558|893559|893560|893561|893562|893563|893564|893565|893566|893567|893568|893569|893570|893571|893572|893573|893574|893575|923947|932794|932795|944488|944489|944490|954090|954091|954092", + "text": "Multiple epiphyseal dysplasia type 4" + }, + { + "baseId": "19128|19131|19136|70655|543810", + "text": "SLC26A2-Related Disorders" + }, + { + "baseId": "19128|19131|19136|19137|39925|39926|39927|39928|39929|39930|626129|980445", + "text": "3MC syndrome 2" + }, + { + "baseId": "19135", + "text": "Diastrophic dysplasia, broad bone-platyspondylic variant" + }, + { + "baseId": "19138", + "text": "de la Chapelle dysplasia" + }, + { + "baseId": "19140|135486|135487|135488|207097|207102|207105|292107|292108|292111|292116|292120|292132|292133|292140|292141|293542|293547|293551|293552|293553|293555|293561|296835|296843|296853|296856|296857|296860|296867|296869|296872|296874|296875|296876|296879|296881|296882|428256|428262|434590|439129|620143|620144|620145|620772|622337|709136|720719|720720|748686|890023|890024|890025|890026|890027|890028|890029|890030|890031|890032|890033|890034|890035|890036|890037|890038|890039|890040|890041|890042|890043|890044|890045|890046|890047|890048|890049|890050|890051|890052|890053|890054|890055|890056|890057|890058|890059|890060|890061|890062|890063|891743|891744|891745|891746|891747", + "text": "Mental retardation, autosomal recessive 1" + }, + { + "baseId": "19141|19144|57024|57025|57027|57032|57033|57035|57037|57038|57041|88600|174571|174574|174847|174849|181568|270989|308677|308678|308681|308682|308683|313238|313243|313249|313250|313251|313261|313269|319058|319061|319062|319063|319071|319072|319073|319074|319680|319687|319688|404781|404782|497055|536777|585701|796330|902290|902291|902292|902293|902294|902295|902296|902297|902298|902299|902300|902301|902302|902303|902304", + "text": "Deafness, autosomal dominant 36" + }, + { + "baseId": "19142|19143|19145|19146|57024|57025|57027|57028|57032|57033|57035|57037|57038|57041|88600|174571|174574|174847|174849|229701|229709|237604|237605|270989|272121|308677|308678|308681|308682|308683|313238|313243|313249|313250|313251|313261|313269|319058|319061|319062|319063|319071|319072|319073|319074|319680|319687|319688|389230|404781|404782|497055|536777|553259|553260|585701|610566|611985|615807|622690|790916|796330|902290|902291|902292|902293|902294|902295|902296|902297|902298|902299|902300|902301|902302|902303|902304|919238", + "text": "Deafness, autosomal recessive 7" + }, + { + "baseId": "19147|19148|19149|19150|19151|19152|19153|19154|87316|102259|102260|102261|102262|102263|102264|102265|102266|102267|102268|102269|102270|102271|102272|102275|102277|102278|102279|102280|102281|102282|102285|102287|102288|102290|102291|102292|102293|102295|102296|102297|102298|102299|102300|102304|102305|102306|102308|102309|102310|102313|102314|102315|102316|102317|102318|102319|102320|102321|102323|102325|102326|102328|102329|102330|102333|102334|102335|102336|102337|102338|102339|116425|171423|176973|176975|177105|177107|177236|177237|177238|177239|177240|177368|177369|177371|177948|177949|177950|177951|177952|177953|177954|177955|177956|186054|186055|186056|186704|186705|186706|186707|186708|186709|186710|186711|186712|186713|186714|186715|186716|186717|186718|186719|186720|191600|192699|192860|192861|193072|193213|193306|193797|193963|193964|193965|193966|193968|194150|194151|194181|194210|194211|194528|194636|194696|194716|194763|195031|195103|195119|195176|195438|195467|195475|195477|195529|195776|195777|196344|205151|212522|212523|212524|212525|212526|221620|221632|221633|221634|221635|221636|221637|221638|237391|239938|239939|239940|239941|239942|239943|239944|239945|239946|252401|252410|252411|252412|252413|252418|252420|252421|252423|252424|252425|252431|252433|252443|260786|264271|265614|266031|266291|267765|267888|267889|268288|269482|269740|269998|270593|270888|270921|271038|271324|271337|271340|271438|271742|271756|272334|272389|272708|272711|272825|272930|272956|272957|273780|274051|274060|274118|274120|274122|274123|274127|275135|275189|275212|275214|275266|275386|300610|300613|300614|300616|300617|300621|300628|300630|300631|300634|300638|300650|300651|300664|300670|300672|300676|300683|300686|300687|300688|303521|303523|303525|303531|303533|303534|303536|303537|303539|303548|303550|303551|303553|303554|303555|303569|303578|303580|303583|303584|303585|303586|303587|303588|303589|303590|303591|303593|303596|303597|303598|303599|303603|303605|303619|308047|308048|308049|308051|308053|308057|308059|308062|308063|308064|308071|308074|308077|308088|308090|308095|308099|308100|308101|308102|308114|308116|308117|308118|308120|308123|308134|308136|308138|308144|308145|308149|308155|308157|308158|308160|308176|308178|308179|308183|308186|308189|308190|308191|308195|308197|308198|308205|308213|308216|308218|308219|354168|357435|357436|357437|357438|357439|357440|357441|357442|357443|357444|357445|357446|357447|357448|357449|357450|357451|357452|357453|357454|357455|357456|357457|357458|357459|357460|357461|357462|357463|357464|357465|357466|357467|357468|357469|357470|357471|357472|357473|357474|357475|357476|357477|357478|357479|357480|357481|357482|357483|357484|357485|357486|357487|357488|357489|357490|357491|357492|357493|357494|357495|357496|357497|357498|357499|361364|361365|363896|364147|364232|384483|395188|395190|395403|395412|395413|395415|395416|395418|395542|395545|395549|395828|395832|395836|421593|426535|427227|427228|427318|427321|427440|427442|427443|427444|427445|427446|427447|427449|427451|427456|427460|427468|427474|427475|427476|427477|427480|427481|427482|427490|427500|427503|427506|427599|427600|432297|432298|434611|434612|455634|455639|455644|455646|455649|455821|455822|455828|455833|455834|455836|456216|456219|456222|456226|456228|456239|456241|456539|456548|456550|456557|456560|456564|456571|456580|456583|481447|487081|487145|487146|487148|487150|487157|487191|487216|487219|487221|488309|488322|489025|489027|489233|489442|489560|489582|489852|489903|489968|490016|490102|490135|490266|490676|490702|490775|490952|491228|491230|491231|491811|491925|492318|492392|492393|492395|492578|492753|492755|492773|493033|493335|493456|493467|493767|494017|494018|494160|494169|494194|495200|511684|513064|521680|521688|521690|522006|522009|522013|522019|522026|522032|522064|522069|522384|522385|522386|538387|543740|543742|543745|543750|543757|543760|543764|543766|543774|543783|543791|543794|543800|543808|543811|543820|543822|543824|543828|543830|543832|543836|543837|543839|543841|543846|543848|543850|543855|543856|543863|543864|543870|543877|543882|544027|544029|544033|544037|544038|544040|544044|544046|544055|544059|544061|544062|544070|544071|544075|544078|544079|544082|544084|544085|544088|544094|544097|544099|544103|544105|544106|544109|544110|544112|544115|544116|544117|544121|544122|544124|544126|544129|544132|544136|544139|544142|544143|544147|544149|544152|544155|544157|544158|544160|544161|544162|544163|544165|544166|544168|544169|544170|544171|544172|544175|544177|544179|544181|544182|544183|544184|544185|544186|544187|544188|544190|544192|544195|544196|544197|544199|544200|544202|544204|544205|544206|544207|544210|544212|544213|544214|544219|544221|544222|544224|544225|544226|544228|544231|544233|544234|544235|544236|544238|544242|544246|544247|544248|544249|544250|544251|544252|544254|544255|544256|544257|544258|544259|544260|544261|544262|544266|544269|544270|544271|544277|544279|544281|544288|550602|550603|560740|560742|560744|560863|560869|560872|560873|560878|563621|563622|563624|563626|565697|565702|565706|583288|583310|584635|584677|584755|584758|584953|585396|585403|585444|585514|585529|585740|585938|586148|586198|586322|586421|586709|586845|586966|587240|587250|587335|587524|587673|587716|587974|588021|588133|588310|588363|588469|589135|589152|589198|589224|589273|589408|589412|589459|589499|589574|589654|589731|612756|613498|615937|620235|620236|620237|621208|621209|621210|621211|621213|621214|621216|621217|621751|621752|621754|622908|622909|623291|623292|623293|624316|624323|624327|624328|624329|624331|624778|624852|634948|634949|634950|634951|634952|634953|634954|634955|634956|634957|634958|634959|634960|634961|634962|634963|634964|634965|634966|634967|634968|634969|634970|634971|634972|634973|634974|634975|634976|634977|634978|651479|651485|651545|651560|651566|651568|683809|683810|683811|683812|683813|683814|683815|683816|683817|683818|685199|686867|686868|686869|686871|686872|686873|686874|686875|686876|686877|686878|686879|686881|686882|686883|686884|686885|686886|686887|686888|686889|686890|686891|686893|686894|686896|686897|686898|686899|689830|689831|689833|689834|689836|689837|691990|691991|691992|691994|691995|691996|691999|692000|692002|692003|692004|692005|692006|692007|692008|692010|692011|695319|695320|710555|722067|744293|750112|750113|750114|750115|750117|750118|765722|765726|765730|765736|765739|775287|782555|782557|782560|782561|782562|782565|782567|782572|782575|782576|782577|782578|782584|787403|787406|787411|787469|788802|788803|790639|790640|790641|790642|790643|790644|792669|798577|798578|800397|801616|801617|801618|801619|801620|801621|801622|801623|801624|801625|801626|801627|801628|801629|801630|801631|801632|801633|801634|801635|801636|801637|801638|801639|801640|801641|801642|801643|815965|819694|819695|819696|819697|831998|831999|832000|832001|832002|832003|832004|832005|832006|832007|832008|832009|832010|832011|832012|832013|832014|832015|832016|832017|832018|832019|832020|832021|832022|832023|832024|832025|832026|832027|832028|832029|832030|832031|851326|852024|858640|859537|896585|896586|896587|896588|896589|896590|896591|896592|896593|896594|896595|896596|896597|896598|896599|896600|896601|896602|896603|896604|896605|896606|896607|896608|896609|896610|896611|896612|896613|896614|896615|896616|896617|896618|896619|896620|896621|896622|896623|896624|896625|896626|896627|896628|896629|896630|896631|896632|896633|896634|896635|896636|896637|896638|896639|896640|896641|896642|896643|896644|896645|896646|896647|896648|896649|896650|896651|896652|896653|896654|896655|896656|896657|896658|896659|896660|896661|896662|896663|896664|900241|900242|900243|900244|900245|900246|900247|904226|906013|906014|906247|906248|906249|906250|916968|916969|916970|916973|920494|924367|924368|924369|924370|924371|924372|924373|924374|924375|924376|933349|933350|933351|933352|933353|933354|933355|940042|940846|940847|940848|940849|940850|945050|945051|945052|945053|945054|945055|945056|945057|945058|945059|945060|954481|954482|954483|954484|954485|954486|954488|954489|954490|954491|954492|954493|954494|954495|954496|954497|960586|960587|960588|962706|962707|962708|962709|962710|962711|962712|962713|962714|962715|963358|963393|966861|966862|966863|966865|966872|966873|966874|966875|966876|966882|969155|978224|978225|978226|978227|978228|978229|978230|978231|978232|978233|978234|978235|978236|978237|978238|978239|978240|978241|978242|978243|983864", + "text": "Autosomal recessive polycystic kidney disease" + }, + { + "baseId": "19147", + "text": "Colorectal cancer, protection against" + }, + { + "baseId": "19147|360881", + "text": "Periportal fibrosis" + }, + { + "baseId": "19147|19153|102029|186711|195475|581284|581285|581286|581287|581289|581290|581292|581293|619856|620235|626409|626410|626411|672253|672254|672303", + "text": "Polycystic liver disease" + }, + { + "baseId": "19156|19157|19158|19159|19162|19163|19375|19376|19379|19476|19477|19478|19479|20981|20982|20983|20984|20985|20986|20988|20989|20990|20991|48675|48676|48677|100281|101633|101634|101635|101841|101842|101843|134436|134437|177695|192364|205176|206818|213924|213925|213926|213927|213928|213929|249959|249961|251046|254441|255062|271696|280634|280635|280641|280643|280646|280650|280652|280656|281143|281147|281148|281149|282420|282422|282684|285828|285835|285837|286563|286584|286585|286594|288808|288811|288818|288827|289218|289220|289221|289222|289223|289224|289225|289649|289651|289662|289663|290378|290384|290385|290386|290387|293471|293485|293488|293489|293490|294002|294006|294009|294035|294049|294051|294054|294057|316235|316236|316240|316248|316249|316251|316254|321350|321352|321363|321372|321373|323582|323583|323585|323586|323588|323589|323599|323601|329725|329728|329731|329738|329739|330581|330587|330593|330598|330975|330986|330991|331008|331009|331011|331020|337214|337216|337219|339139|339140|339142|339143|339146|339147|339151|359528|367277|405711|406161|413354|425377|438614|486604|492274|513345|539043|551286|551287|552045|552071|576678|581882|581915|609080|609137|620082|620489|620490|631109|679861|679862|708698|708699|718985|719817|720319|720320|730198|733930|739331|748128|763752|763757|763759|763760|763764|763766|769916|788883|790369|790370|795219|798681|801606|801882|858722|861142|864476|864477|864478|864479|864480|864481|864482|864483|864484|864485|864486|864487|864488|864489|864490|864491|864492|864493|864494|865185|869444|869445|869446|869447|869448|869449|869450|869451|869452|869453|869454|869455|869456|872197|872198|872199|872200|872623|872624|872625|872626|872627|872628|872629|872630|872631|884572|884573|884574|884575|884576|884577|884578|884579|884580|884581|884582|884583|884584|884585|887347|887348|888462|888463|888464|888465|888466|888467|888468|888469|888470|888471|888472|888473|891625|891626|891627|903589|918767|918768|918815|920516|961037|964219|964570|965853|966394|970954|973034|973035|977838|980592|983643", + "text": "Leukoencephalopathy with vanishing white matter" + }, + { + "baseId": "19160|19161|19375|19377|19378|19379|20984|20987", + "text": "Ovarioleukodystrophy" + }, + { + "baseId": "19164|19165|19166|19167|19168|19169|19170|19171|19172|34528|34530|34531|208781|208783|208784|231136|231137|257586|257587|271892|274088|337646|337654|337662|337664|337666|337668|337672|337675|337677|337679|337684|337697|337698|337701|347221|347246|347247|347249|347252|347255|347257|347261|347268|351232|351235|351239|351240|351243|351247|351248|351253|351254|351257|351258|351260|351264|351265|351268|352275|352309|352310|352311|352312|352313|352314|352315|352317|352319|352325|493526|729115|742832|745341|758018|758019|890977|890978|890979|890980|890981|890982|890984|890985|890986|890987|890988|890989|890990|890991|890993|890994|890996|890997|890998|890999|891000|891001|891002|891003|891004|891005|891006|891007|891008|891009|891010|891011|891012|891013|891014|891015|891016|891017|891018|891019|891020|891021|891022|891023|891814|891815", + "text": "Hermansky-Pudlak syndrome 4" + }, + { + "baseId": "19173|19174|19175|19176|19177|19178|19179|19180|19181|19182|19183|19184|19185|101931|101940|101941|101949|101952|101953|101955|101956|101957|101971|101971|101976|168108|168109|168115|168116|168117|168118|168119|168120|168121|168122|168124|168126|168128|168130|168131|168132|168133|168135|168138|168140|168141|168142|168143|168144|168146|168147|168149|168150|168151|168152|168153|168155|168157|168158|168160|168161|168162|168164|168165|168168|168170|168171|168172|168174|168175|168176|168177|168178|168179|168180|168180|168181|168182|168183|168184|168185|168186|168187|168188|168190|168192|168193|168194|168195|168196|168197|168198|168199|168200|168202|168203|168204|168205|168206|168207|168208|168210|168211|168212|168213|168214|168215|168216|168217|168218|168219|168220|168221|168222|168223|168224|168225|168226|168227|168228|168229|168230|168231|168232|168233|168235|168236|168237|168238|168239|168240|168241|168242|168243|168243|168244|168246|168247|168248|168249|168250|168251|168252|168253|168254|168255|168256|168257|168258|168259|168260|168261|168262|168263|168264|168265|168266|168267|168269|168270|168271|168272|168273|168274|168275|168276|168278|168279|168280|168281|168282|168283|168284|168285|168286|168287|168288|168289|168294|168295|168296|168297|191835|191835|198625|205743|205744|207177|207178|207180|207181|207182|207183|207184|207185|207186|207187|207188|207189|207190|207191|207192|207193|207194|207195|207196|207197|207198|207199|207200|207201|207202|207203|207204|207205|207206|207207|209314|213557|213558|244157|264188|264205|298941|353894|368100|394967|424561|424893|428385|428387|428388|428390|428391|455687|481233|481433|500781|513278|521082|521439|521559|536308|537656|537776|537777|537778|537779|537780|537781|537782|537783|537784|537785|537786|552086|552087|611388|612189|624848|624849|625796|626150|633789|653868|653869|788776|789248|790539|790540|790541|790542|790543|790544|790545|790546|790547|798558|798559|830687|918944|918945|918946|918947|918948|918949|961648|963579|963581|964250|964251|966152|969736|970803|970804|971548|971549|976639|980324|980325", + "text": "Sotos syndrome 1" + }, + { + "baseId": "19186|19187|19188|19189|106031|106032|106036|106037|106038|106040|106041|227414|337627|337635|337637|337639|337641|347206|347207|347210|347212|351205|351206|351208|351211|351212|351215|351216|351219|351220|352222|352223|352225|352234|352235|352236|438924|439218|539103|620684|705837|717366|717367|792023|890940|890941|890942|890943|890944|890945|890946|890947|890948|890949|890950|890951|890952|890953|890954|890955|890956|890957|890958|890959|891812|961792", + "text": "Deficiency of beta-ureidopropionase" + }, + { + "baseId": "19190|19195|19196|429985", + "text": "Bernard-Soulier syndrome, type A1" + }, + { + "baseId": "19191", + "text": "PLATELET GLYCOPROTEIN Ib POLYMORPHISM" + }, + { + "baseId": "19191|404833", + "text": "Nonarteritic anterior ischemic optic neuropathy, susceptibility to" + }, + { + "baseId": "19192|19194|404833|576180", + "text": "Pseudo von Willebrand disease" + }, + { + "baseId": "19193|19195|404833|576180", + "text": "Bernard-Soulier syndrome, type A2, autosomal dominant" + }, + { + "baseId": "19194", + "text": "Impaired ristocetin-induced platelet aggregation" + }, + { + "baseId": "19198|26767|29868|29869|29870|29871|45767|205017|360849|424978", + "text": "Cryptorchidism" + }, + { + "baseId": "19199|19200|19201|39555|141164|141165|141166|141167|141168|141169|141171|141172|141173|210949|210951|210952|210956|210958|210959|210961|210964|210968|210970|289258|289259|289270|289271|289272|290038|290039|290042|290043|290044|290054|293119|293120|293121|293122|293125|293129|293141|293147|293519|293528|293531|293532|293543|293569|293571|293574|293575|293589|293590|293593|293594|361581|367003|513259|513606|513607|549907|578411|578446|620757|620758|626127|631021|654317|720276|720277|733888|748088|748089|748090|763713|763718|774813|790354|790355|800333|800334|800336|800337|800338|800339|800340|857615|888242|888243|888244|888245|888246|888247|888248|888249|888250|888251|888252|888253|888254|888255|888256|891597|918810|918811|977816|977817|977818|977819|977820", + "text": "Combined oxidative phosphorylation deficiency 1" + }, + { + "baseId": "19202", + "text": "Vitiligo-associated multiple autoimmune disease susceptibility 1" + }, + { + "baseId": "19203|19204|19205|19206|198643|513725|961892|961893", + "text": "Enterokinase deficiency" + }, + { + "baseId": "19207|101552|101553|166171|191821|252482|252483|252484|252485|252486|252487|252489|272085|300963|300970|300971|300973|300974|300976|300977|300983|300984|300994|301000|301011|301012|301013|303905|303906|303909|303917|303926|303931|303933|303935|303961|303969|303973|303974|303981|303983|303987|308591|308592|308594|308603|308614|308616|308617|308618|308619|308623|308624|308626|308628|308629|308630|308633|308634|308635|308638|308640|308642|308644|308645|308650|308655|308658|308659|308663|308664|308669|308676|308679|308680|308686|308694|489127|489884|620243|626165|699647|750170|750175|750196|816506|832311|832312|832315|832328|859554|896791|896792|896793|896794|896795|896796|896797|896798|896799|896800|896801|896802|896803|896804|896805|896806|896807|896808|896809|896810|896811|896812|896813|896814|896815|896816|896817|896818|896819|896820|896821|896822|896823|896824|896825|896826|896827|896828|900261|900262|900263|900264|900265|900266|900267|919047|919048|919049|919050", + "text": "Cone-rod dystrophy 7" + }, + { + "baseId": "19208|19209|215757", + "text": "Glycine N-methyltransferase deficiency" + }, + { + "baseId": "19210|19211|19212|19213|19214|19215|19216|19217|191057|193617|193619|194958|194959|194960|195363|215101|250558|250559|250560|250562|250564|250565|250566|250568|266001|266016|266451|266925|267317|272109|272358|275006|284640|284645|284647|284648|285330|285335|285336|285337|285338|287489|287502|287503|287506|287507|287510|287511|287512|287743|287747|287764|287766|287770|287774|287776|360834|414867|450381|450530|450609|450619|450693|486833|488124|488851|489418|492831|513024|517693|517697|517700|517794|517795|517796|517822|553541|553542|557878|557880|557923|557925|557927|560883|560884|560887|589673|590239|614241|620059|620060|629437|629438|629439|629440|629441|629442|629443|629444|629445|629446|629447|629448|629449|629450|629451|650746|650796|708020|708021|708022|733153|733154|733155|743868|747282|747283|747285|762895|762898|762901|762902|762903|762904|762905|762906|762907|762909|762910|762912|774699|781161|781162|781166|781167|792728|815895|825716|825717|825718|825719|825720|825721|825722|825723|825724|825725|825726|825727|850880|851149|858547|883724|883725|883726|883727|883728|883729|883730|883731|883732|883733|887273|918735|922567|922568|922569|931134|931135|931136|931137|931138|931139|931140|931141|942604|942605|942606|952924|952925|952926|952927|952928|952929|952930|962857|977676|977677|977678|977679|977680|977681|977682|977683|977684|980306", + "text": "Schimke immuno-osseous dysplasia" + }, + { + "baseId": "19218|19218|19219|19220|19220|19221|19223|19224|19224|102136|131917|131918|131919|131919|131920|131921|131922|131923|131924|131925|131926|131926|131927|131927|205734|205735|205735|227260|227261|227261|251190|267003|290906|290910|290911|290911|290916|290916|290917|290917|291839|291839|291840|291840|295050|295056|295056|295083|353892|361357|361357|440822|443470|452738|452739|513538|513538|513538|519366|519372|519561|559016|559018|563013|563020|576706|576707|576708|608780|612264|612656|620765|631490|631491|631492|631493|631494|679823|698152|698153|698154|708908|720509|748330|748330|790399|795443|795443|804999|804999|828232|828233|828234|828235|828236|828237|828238|828239|828240|828241|828242|828243|828244|828245|889237|889237|889238|889239|889240|889241|903526|923236|931982|931983|931984|943590|943591|943592|943593|943594|953509|953510|970772", + "text": "Aicardi Goutieres syndrome 1" + }, + { + "baseId": "19218|20505|20506|23948|27427|31890|31891|31960", + "text": "Systemic lupus erythematosus, susceptibility to" + }, + { + "baseId": "19218|19218|19220|19224|19226|102135|102136|102136|131919|131926|131927|205735|227261|251190|251190|290894|290897|290906|290910|290911|290911|290916|290916|290917|290917|291832|291833|291839|291839|291840|291840|291841|295022|295050|295056|295056|295083|295410|295418|295421|295439|361357|361357|440822|443470|443470|452738|452739|513538|513538|519366|519372|519561|559016|559018|563013|563020|576706|576707|576708|612656|620765|631490|631491|631492|631493|631494|698152|698153|698154|708908|720509|748330|748330|795443|795443|804999|828232|828233|828234|828235|828236|828237|828238|828239|828240|828241|828242|828243|828244|828245|889237|889237|889238|889239|889240|889241|923236|931982|931983|931984|943590|943591|943592|943593|943594|953509|953510", + "text": "Retinal vasculopathy with cerebral leukoencephalopathy and systemic manifestations" + }, + { + "baseId": "19218|19220|19222|19224|19224|102136|131919|131926|205735|227261|251190|290911|290916|290917|291839|291840|295056|361357|361357|443470|452738|452739|513538|513538|519366|519561|559016|559018|576706|576707|576708|612656|631490|631491|631492|631493|631494|698152|698153|698154|708908|720509|748330|795443|804999|828232|828233|828234|828235|828236|828237|828238|828239|828240|828241|828242|828243|828244|828245|889237|923236|931982|931983|931984|943590|943591|943592|943593|943594|953509|953510", + "text": "Chilblain lupus 1" + }, + { + "baseId": "19223|19224", + "text": "Aicardi Goutieres syndrome 1, autosomal dominant" + }, + { + "baseId": "19227|247504|249815|266292|447817|515626|515629|556821|823611", + "text": "Ectodermal dysplasia 11b, hypohidrotic/hair/tooth type, autosomal recessive" + }, + { + "baseId": "19227|20887|20888|20888|20889|20890|20890|20891|20892|20893|20894|20895|20898|20899|76662|250081|250082|250083|250084|259688|268021|280019|281531|281537|283532|283546|442904|448537|448540|448635|448647|448659|448661|448663|448751|448754|513511|516303|516309|516315|516391|516392|516392|557486|557539|557541|558697|558699|622270|622271|628405|628406|628407|628408|628409|650695|650781|685832|690701|690702|690705|780808|816440|824670|824671|824672|824673|824674|824675|824676|824677|863970|863978|863987|922224|930767|930768|939839|942195|952608", + "text": "Autosomal recessive hypohidrotic ectodermal dysplasia syndrome" + }, + { + "baseId": "19228|249815|266292|447817|515626|515629|556821|823611", + "text": "Ectodermal dysplasia 11a, hypohidrotic/hair/tooth type, autosomal dominant" + }, + { + "baseId": "19228|20888|20888|20890|20891|20892|20892|250081|250082|250083|250084|259688|263002|268021|281537|283532|283546|404752|442904|448537|448540|448635|448647|448659|448661|448663|448751|448754|516303|516309|516315|516391|516392|557486|557539|557541|558697|558699|620024|620732|628405|628406|628407|628408|628409|650695|650781|685832|690701|690702|690705|780808|824670|824671|824672|824673|824674|824675|824676|824677|922224|930767|930768|939839|942195|952608|961039", + "text": "Ectodermal dysplasia 10A, hypohidrotic/hair/nail type, autosomal dominant" + }, + { + "baseId": "19229|19230|19231|19232|19232|19234|19237|19237|19238|19239|19241|46970|48563|59596|165506|212638|212639|213815|221768|240400|240401|240402|244523|244524|244525|244526|244527|244528|253176|253176|370335|371968|396265|396279|396551|396683|396685|396688|396930|415146|444305|457966|457969|457976|457979|457987|458529|458531|458539|458540|458541|458542|458610|458625|459011|459012|459018|459025|459027|459029|459032|459037|459045|459046|459046|502368|523701|523703|523708|523709|524298|524304|562502|563070|563073|565214|565215|565224|565225|565227|568100|568105|590031|609702|625159|625186|637390|637391|637392|637393|637394|637395|637396|637397|637398|637399|637400|637401|651763|651996|683019|684027|687318|687319|790814|790815|819986|835038|835039|835040|835041|835042|835043|835044|835045|835046|835047|835048|835049|835050|851706|851708|905246|925261|934419|940113|946177|946178|946179|946180|946181|946182", + "text": "Charcot-Marie-Tooth disease, type 4A" + }, + { + "baseId": "19230|19232|19237|19237|19238|19239|19240|19241|19242|19243|59595|59596|59597|213815|214841|253176|459046|550866|788830|804741|804742|962982|970887", + "text": "Charcot-Marie-Tooth disease type 2K" + }, + { + "baseId": "19230|19232|19232|212639|253176|305846|305851|305852|305855|305861|305865|305866|305869|305874|305878|309933|309934|309941|309942|309943|309944|309950|309951|309952|315143|315149|315151|315152|315161|315165|315172|315173|315177|315178|315188|315208|315210|315265|315268|315275|315280|315285|315291|315292|315294|315296|315298|371968|458542|459037|459046|835046|835050|900018|900019|900020|900021|900022|900023|900024|900025|900026|900027|900028|900029|900030|900031|900032|900033|900034|900035|900036|900037|900038|900039|900040|900041|900042|900043|900044|900045|900046|900047|900048|900049|900050|900051", + "text": "Charcot-Marie-Tooth disease, axonal, with vocal cord paresis, autosomal recessive" + }, + { + "baseId": "19232|19233", + "text": "Neuropathy, axonal, with vocal cord paresis, autosomal recessive" + }, + { + "baseId": "19232|19234|19236|19237|19239|48563|212639|213815|244526|253176|305846|305851|305852|305855|305861|305865|305866|305869|305874|305878|309933|309934|309941|309942|309943|309944|309950|309951|309952|315143|315149|315151|315152|315161|315165|315172|315173|315177|315178|315188|315208|315210|315265|315268|315275|315280|315285|315291|315292|315294|315296|315298|371968|458542|459037|459046|540453|625167|835046|835050|900018|900019|900020|900021|900022|900023|900024|900025|900026|900027|900028|900029|900030|900031|900032|900033|900034|900035|900036|900037|900038|900039|900040|900041|900042|900043|900044|900045|900046|900047|900048|900049|900050|900051", + "text": "Charcot-Marie-Tooth disease, recessive intermediate A" + }, + { + "baseId": "19239|29215|244165|360906|361106|686427", + "text": "Sensory neuropathy" + }, + { + "baseId": "19239", + "text": "Elevated alkaline phosphatase" + }, + { + "baseId": "19239|222818|430295|677208|677246|677256|677259|677267|677268|682751|962129|962130|971043", + "text": "Polyneuropathy" + }, + { + "baseId": "19239|213789|283972|302805|311091|311092|311094|360832|514154|638747|677221|804737|804740|804745", + "text": "Peripheral axonal neuropathy" + }, + { + "baseId": "19239", + "text": "GDAP1-Related Disorders" + }, + { + "baseId": "19244|19245|19246|19247|19248|19249|19250|19251|19256|39552|39553|137045|215772|228936|236857|264092|264095|481047|481048|481049|481050|481051|481052|481053|481054|495125|496224|496265|496686|535279|535281|535282|537710|537711|537712|537713|537714|537715|537716|537717|537718|537719|537720|537721|537722|537723|537724|537725|537727|537728|537729|537730|537731|537732|537733|788750|789351|790202|815856|964194|983612|983616|983617|983618|983619|983620|983621|983622", + "text": "Waardenburg syndrome type 1" + }, + { + "baseId": "19251|19253|19254|19255|496224|496686|537726", + "text": "Klein-Waardenberg's syndrome" + }, + { + "baseId": "19252|192593|215772|228928|228929|228930|228931|228936|228937|228938|284872|284880|284881|284886|285534|285535|287842|287843|287860|287879|287881|287886|288118|288125|288126|288127|288130|496224|496263|496686|496686|747372|747374|883882|883883|883884|883885|883886|883887|883888|883889|883890|883891|883892", + "text": "Craniofacial-deafness-hand syndrome" + }, + { + "baseId": "19257|19258|19259|19274", + "text": "MUSCULAR DYSTROPHY-DYSTROGLYCANOPATHY (CONGENITAL WITHOUT IMPAIRED INTELLECTUAL DEVELOPMENT), TYPE B, 5" + }, + { + "baseId": "19259|19260|19260|19260|19263|19264|19265|19266|19274|102006|134502|243357|266484|273802|273959|403314|446153|468910|481141|533194|533194|919879|919880", + "text": "Congenital muscular dystrophy-dystroglycanopathy (with or without mental retardation) type B5" + }, + { + "baseId": "19259|19260|19260|19260|19261|19262|19263|19265|19267|19268|19269|19270|19271|19272|19274|101999|102001|102002|102003|102004|102006|102008|102009|134502|134502|134503|141083|177298|194503|194507|208610|243355|243356|243357|243357|257157|257158|266484|266484|267061|267103|267275|267542|268719|269533|269670|271057|271954|273488|273710|273802|273802|273959|273959|274840|376626|403314|403314|403324|446151|446153|468907|468910|468910|480541|481141|489693|493619|513477|533164|533170|533194|533194|548858|548862|548869|548875|548876|548878|548879|548881|548884|548896|548906|548908|548924|548932|548935|548936|548940|548945|548952|549195|549196|549197|549199|549203|549204|549206|549368|549369|549370|549371|549372|549373|549374|549375|549376|549377|549378|570859|570868|577811|648189|648194|681847|684836|689107|742004|788929|847769|847771|979989|979990|979991", + "text": "Limb-girdle muscular dystrophy-dystroglycanopathy, type C5" + }, + { + "baseId": "19259|19260|19260|19272|19273|102006|125788|134502|243357|263007|266484|273802|273959|403314|468910|481141|533194|906272", + "text": "Congenital muscular dystrophy-dystroglycanopathy with brain and eye anomalies type A5" + }, + { + "baseId": "19260|19262|40244|75124|75128|428699", + "text": "Muscular dystrophy-dystroglycanopathy" + }, + { + "baseId": "19260|23317|23318|56173|192866|198685|360828|453359|489500|553132|614646|965282", + "text": "Limb-girdle muscular dystrophy" + }, + { + "baseId": "19272", + "text": "FKRP-Related Disorder" + }, + { + "baseId": "19275|19276|19277|361835|508753", + "text": "Amelogenesis imperfecta - hypoplastic autosomal dominant - local" + }, + { + "baseId": "19277|481537", + "text": "Amelogenesis imperfecta, type IC" + }, + { + "baseId": "19278|19278|19280|19281|34561|34562|142275|211896|211898|265218|265218|333825|333829|333835|333836|333838|333839|333841|333848|333865|333866|333868|333871|333872|333874|333876|333881|333883|333884|333893|333895|333899|333900|333902|333904|333909|333911|333916|333917|333919|333923|343806|343809|343811|343813|343815|343819|343822|343824|343826|343831|343837|343838|343840|343841|343843|343845|343846|343851|343852|343854|343856|343860|343864|343865|343868|343869|343874|343876|343877|349091|349092|349095|349097|349100|349102|349103|349105|349109|349110|349113|349114|349117|349121|349123|349125|349127|349135|349136|349139|349142|349143|349146|349149|349150|349153|349154|349155|349159|349160|349162|349163|349165|349170|349171|349173|349175|349177|349180|349181|349183|349185|350019|350020|350023|350024|350028|350029|350031|350032|350033|350036|350037|350039|350042|350045|350046|350048|350050|350052|350054|350057|350058|350061|350062|350064|350067|350071|350072|350077|350078|350080|350081|350083|350088|350090|350093|350095|350096|350099|353496|353497|358620|377761|446146|470325|533159|540607|540608|540609|540610|540611|540612|540613|548812|548813|548814|548816|548825|548827|548828|548833|548840|548843|548844|548848|548851|548853|548859|548863|548870|548872|549179|549183|549192|549364|549365|549366|549367|576185|611904|648177|648178|741988|772751|772752|772752|772753|772755|786231|786233|786234|798756|821264|821265|882155|882156|882157|882158|882159|882160|882161|882162|882163|882164|882165|882166|882167|882168|882169|882170|882171|882172|882173|882174|882175|882176|882177|882178|882179|882180|882181|882182|882183|882184|882185|882186|882187|882188|882189|882190|882191|882192|882193|882194|882195|882196|882197|882198|882199|882200|882201|882202|882203|882204|882205|882206|882207|882208|882209|882210|882211|882212|882213|882214|882215|882216|882217|882218|882219|882220|882221|882222|882223|882224|906325|941234|950822|958658|979987|979988", + "text": "3-Methylglutaconic aciduria type 3" + }, + { + "baseId": "19278|19279|19280|19280|34561|142275|211898|227093|265218|265218|333825|333829|333835|333836|333838|333839|333841|333848|333865|333866|333871|333872|333876|333883|333884|333893|333895|333899|333900|333902|333909|333911|333916|333917|333919|333923|343806|343809|343811|343815|343819|343822|343824|343826|343831|343838|343841|343843|343845|343846|343851|343852|343854|343856|343860|343864|343868|343869|343877|349092|349095|349097|349100|349102|349103|349109|349110|349113|349114|349117|349136|349139|349142|349146|349149|349150|349153|349154|349155|349159|349160|349162|349163|349170|349171|349173|349175|349177|349180|349181|349183|349185|350019|350020|350023|350024|350028|350029|350031|350032|350033|350036|350037|350039|350045|350046|350048|350050|350052|350054|350057|350058|350061|350062|350064|350067|350071|350072|350078|350080|350081|350083|350088|350090|350095|350096|350099|353497|377761|446146|470325|533159|576185|648177|648178|741988|772751|772752|772753|772755|786231|786233|786234|821264|821265|882155|882156|882157|882158|882159|882160|882161|882162|882163|882164|882165|882166|882167|882168|882169|882170|882171|882172|882173|882174|882175|882176|882177|882178|882179|882180|882181|882182|882183|882184|882185|882186|882187|882188|882189|882190|882191|882192|882193|882194|882195|882196|882197|882198|882199|882200|882201|882202|882203|882204|882205|882206|882207|882208|882209|882210|882211|882212|882213|882214|882215|882216|882217|882218|882219|882220|882221|882222|882223|882224|941234|950822|958658", + "text": "Optic atrophy 3" + }, + { + "baseId": "19282|19283|179619", + "text": "Cardiomyopathy, hypertrophic, midventricular, digenic" + }, + { + "baseId": "19282|19283|23318|23647|27450|28466|28999|29103|29126|29127|29128|29129|29130|29131|29132|29133|29134|29135|29136|29137|29138|29139|29140|29141|29142|29143|29144|29145|29146|29157|29158|29159|29161|29162|29163|29164|29165|29168|39413|40426|40548|44315|45289|45303|45304|45312|45314|45316|45317|45929|49082|51698|51707|51710|51780|51802|51835|51839|51851|51986|51987|51988|51989|51991|51993|51999|52008|52010|52018|52023|52032|52033|52034|52038|52039|52043|52045|52055|52059|52064|52066|52070|52071|52083|52086|52092|52108|52111|52112|52114|52115|52116|52118|52122|52123|52126|52127|52140|52147|52150|52151|52153|52163|52165|52168|52171|52176|52177|52182|52185|52190|52194|52197|52202|52207|52208|52209|52214|52217|52226|52242|52243|52252|52254|52261|52262|52265|52270|52271|52273|52276|52280|52286|52287|52301|52528|52531|52537|52545|52616|52845|53636|53641|53641|53680|53874|54898|55681|55682|55683|55684|55685|55687|55688|55691|55692|55694|142081|142083|142090|142091|142094|171136|171142|171163|171164|171165|172355|172397|174775|175146|175175|175443|175446|175448|175452|175458|175460|175481|175490|175513|175516|175577|175586|175587|175588|175606|175607|175615|175617|175619|175624|175630|175631|175655|175695|176226|176229|176230|176232|176348|176349|176350|176351|176352|176354|176356|178472|178672|179278|179466|179471|179522|179525|179598|179623|179672|179680|179708|186460|186481|189930|189947|190012|190017|190018|190101|190102|190103|190104|198096|198478|198520|198522|198524|198525|205175|213631|214012|214122|214123|214124|214125|214126|214127|214128|214129|214130|214131|214132|214133|214134|214135|214136|214138|214483|214486|214487|214488|214489|214490|214491|214492|214493|214494|214495|223685|241811|243575|243576|254932|258801|258803|258808|263860|266688|272349|320364|320370|320374|320377|320379|328975|328980|328992|328994|328997|329003|335628|335630|335631|335634|335643|335644|335647|335648|337435|337446|337452|337457|337458|337463|337467|337469|337478|337486|360038|360088|361876|398259|400159|403604|403612|403619|403662|403664|403667|404165|404169|404172|404173|409095|415678|422313|426055|463977|470308|470311|470312|470862|470864|471372|471376|485931|485932|485933|485935|485936|485938|504491|508156|508933|510268|528386|528396|528424|533468|533512|533525|534030|534037|539467|551788|565835|567977|571164|573467|573472|575078|575079|575080|575081|576065|623074|624478|626453|626454|626455|626456|626457|626458|626459|648590|648591|648592|648593|648594|648595|648596|648597|648598|648599|648600|648601|656238|679481|688269|689193|757415|776767|791394|791395|791478|800171|841243|841286|848266|848267|848268|848269|848270|848271|848272|848273|848274|848275|848276|848277|851989|871732|871733|871734|871735|871736|871737|871738|871739|872363|872364|872365|905949|914996|919908|929151|938927|938928|938929|951025|951026|951027|951028|951029|960314|961601|966402|966409|966440|966452|966455|966456|966457|966459|966460|966461|966467|966468|966470|966471|966478|966491|966492|966494|966504|970545", + "text": "Familial hypertrophic cardiomyopathy 1" + }, + { + "baseId": "19284|19285|20242|20739|20740|20741", + "text": "Esophageal squamous cell carcinoma, somatic" + }, + { + "baseId": "19286|19287|19288|19289|19290|19291|178392|178393|215558|331435|331439|331440|331444|331446|331448|331450|331451|331456|331472|331473|331478|331480|331481|331483|331485|331486|331493|331494|331496|331502|331505|331509|331515|331519|331522|331525|331527|331533|331541|331545|331546|331548|331549|331558|331560|331568|331569|331572|331576|331586|331589|331591|331594|331601|331611|331614|331626|341750|341751|341756|341757|341760|341761|341763|341765|341767|341777|341780|341782|341785|341789|341792|341796|341798|341800|341802|341804|341806|341811|341812|341813|341822|341823|341824|341826|341828|341833|341837|341838|341841|341844|341851|341861|341869|341870|341873|341874|341891|347119|347120|347122|347124|347126|347127|347130|347135|347136|347137|347140|347141|347142|347149|347150|347154|347158|347159|347160|347163|347164|347171|347174|347181|347182|347183|347185|347187|347189|347190|347195|347196|347197|347200|347208|347215|347218|347228|347229|347237|347240|348442|348447|348449|348450|348461|348462|348471|348472|348478|348483|348484|348487|348488|348496|348503|348511|348519|348521|348523|348524|348528|348529|348535|348538|348539|348540|348543|348549|348556|348559|348560|348568|348570|481241|481242|537308|585907|611896|613109|620622|620899|654865|715996|715997|727741|727742|741395|741397|756475|780167|785942|791865|791866|879220|879221|879222|879223|879224|879225|879226|879227|879228|879229|879230|879231|879232|879233|879234|879235|879236|879237|879238|879239|879240|879241|879242|879243|879244|879245|879246|879247|879248|879249|879250|879251|879252|879253|879254|879255|879256|879257|879258|879259|879260|879261|879262|879263|879264|879265|879266|879267|879268|879269|879270|879271|879272|879273|879274|879275|879276|879277|879278|879279|879280|879281|879282|879283|879284|879285|879286|879287|879288|879289|879290|879291|879292|879293|879294|879295|879296|879297|879298|879299|879300|879301|879302|879303|879304|879305|879306|879307|879308|879309|879310|879311|879312|879313|879314|879315|879316|879317|879318|879319|879320|879321|879322|879323|879324|879325|879326|879327|879328|879329|879330|879331|879332|879333|879334|879335|879336|879337|879338|879339|879340|879341|879342|879343|879344|879345|879346|879347|879348|879349|879350|879351|880660|880661|880662|880663|880664|880665|962193|974503|974504|980962", + "text": "Congenital microvillous atrophy" + }, + { + "baseId": "19292|20199|23407|27292|27427|29711|29712", + "text": "Asthma, susceptibility to" + }, + { + "baseId": "19293|19294|19295|19296|19297|19298|19299|19300|19301|19303|19304|19305|19306|76523|76524|76525|76526|76733|76735|76736|76738|76739|76740|76741|76742|76743|76744|76745|76746|76747|76748|76749|76750|76752|76755|76756|76758|76759|76764|76769|76771|76772|76773|76774|76775|76776|76777|76778|76779|76781|76786|76789|76790|76793|76794|76799|76802|76803|76804|76806|76807|76810|76811|76815|76816|76818|76837|76907|134330|190289|193449|194857|196200|250575|264076|266807|267028|268413|268508|270560|271443|271550|271552|271888|272164|272165|272710|274057|275496|284710|284717|284718|284723|284728|285397|285398|285399|285400|285401|287615|287629|287853|287856|287857|287858|287861|362172|440654|443164|489454|489519|489781|489818|490819|491794|491863|491889|491939|492252|492582|493480|493693|493930|512893|517933|541762|541766|541767|541780|541783|541794|541831|541832|541838|541841|541851|541855|541856|541871|541874|541876|541879|541883|541885|541890|541912|541915|541917|541924|541926|541927|541937|541940|541942|541945|541947|541960|557931|560932|576644|576645|587401|587408|588692|588777|620062|620063|629466|629467|708041|708042|733169|733170|733171|747296|747297|747298|747299|747300|762930|762931|762934|762935|762936|774666|781177|781178|781179|787264|790197|790198|790199|805285|819125|825743|825744|883751|883752|883753|883754|883755|883756|883757|883758|883759|883760|887274|931152|931153|952937|952938|952939|959628|959629|971735|971736|971737|971738|971739|971740|971741|971742|977685|977686", + "text": "Cholestanol storage disease" + }, + { + "baseId": "19307|29110|188960|624151", + "text": "Griscelli syndrome type 3" + }, + { + "baseId": "19308|101915|135774|135777|135780|194492|195408|195409|265350|270143|329814|329815|329819|345823|345826|345833|345835|345837|347209|347211|347217|375708|430007|506407|588226|679801|679831|715702|878411|878412|878413|878414|878415|878416|878417|878418", + "text": "Amish lethal microcephaly" + }, + { + "baseId": "19309|226953|614420|614421|816334", + "text": "Ige responsiveness, atopic" + }, + { + "baseId": "19310|19311|19313|19314|39543|101215|136235|150178|150179|150221|280475|280494|280886|280892|280898|280899|280900|280904|280905|280910|282237|282239|282441|282442|282443|282444|282451|732441|732444|864347|864348|864349|864350|864351|864352|864353|864354|864355|864356|864357|864358|864359|864360|864361|864362|864363|864364", + "text": "Mandibuloacral dysplasia with type B lipodystrophy" + }, + { + "baseId": "19310|19315|29529|29539|39541|39542|45141|45142|49843|49844|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|77776|101215|136235|150178|150179|150221|172488|172489|196270|196461|196463|224183|226437|238151|244232|276591|276601|276609|276610|276614|276876|277430|277432|277433|277434|277441|277445|277446|277447|277453|277456|277461|277537|280475|280484|280486|280494|280881|280882|280886|280892|280898|280899|280900|280904|280905|280910|282234|282235|282236|282237|282239|282440|282441|282442|282443|282444|282451|353062|509122|556620|576413|626918|685575|732441|732444|789965|862419|862420|862421|862422|862423|864347|864348|864349|864350|864351|864352|864353|864354|864355|864356|864357|864358|864359|864360|864361|864362|864363|864364|864995", + "text": "Lethal tight skin contracture syndrome" + }, + { + "baseId": "19310", + "text": "ZMPSTE24-Related Disorders" + }, + { + "baseId": "19316", + "text": "Kawasaki disease, susceptibility to" + }, + { + "baseId": "19318|19319|19320|19321|38855|38856|237210|255154|322262|322264|331571|331574|331575|338504|338505|338512|340237|340242|340262|340269|429645|464956|464973|643100|643101|688399|820686|842231|873254|873255|873256|873257|873258|876492", + "text": "Dyskeratosis congenita autosomal recessive 1" + }, + { + "baseId": "19319|19320|19321|961946", + "text": "Dyskeratosis congenita, autosomal recessive 2" + }, + { + "baseId": "19322|19323|19325|19326|213451|222806|333152|403292|880308|880309|880310|905732", + "text": "Hemochromatosis type 2B" + }, + { + "baseId": "19325", + "text": "Hemochromatosis, type 2a, modifier of" + }, + { + "baseId": "19327|19327|19328|19329|19330|19331|19332|19332|19334|19334|19337|19340|19341|19345|19350|19353|19357|19358|19366|19367|19373|33922|33924|99352|99352|99353|99356|99356|99358|99360|99362|99363|99364|265824|404945|626896|679732|682848|801581|801582|801583|801584|801585|801586|801587", + "text": "Acute neuronopathic Gaucher's disease" + }, + { + "baseId": "19327|19327|19329|19330|19331|19331|19332|19332|19333|19334|19334|19337|19340|19341|19350|19353|19353|19362|19366|19366|19367|19369|19373|33922|33924|99352|99353|99356|99358|99360|99362|99363|99364|265824|362045|404945|626896|682848|801581|801582|801583|801584|801585|801586|801587", + "text": "Subacute neuronopathic Gaucher's disease" + }, + { + "baseId": "19327|19327|19329|19329|19330|19330|19331|19331|19332|19332|19333|19334|19334|19335|19337|19337|19339|19340|19341|19341|19344|19345|19346|19347|19348|19349|19350|19350|19352|19353|19353|19354|19355|19356|19359|19360|19363|19365|19366|19366|19367|19369|19371|19373|33922|33922|33924|99352|99352|99353|99355|99356|99356|99358|99360|99362|99363|99364|190774|237954|237955|237956|237958|237959|237960|265824|404945|439574|439575|495063|513234|612077|622301|626896|677160|682848|789853|801581|801582|801583|801584|801585|801586|801587|857349|906180|906182|906183|920599|920600|920601", + "text": "Gaucher's disease, type 1" + }, + { + "baseId": "19327|19329", + "text": "Dementia, Lewy body, susceptibility to" + }, + { + "baseId": "19327|19329|19330|19331|19332|19333|19334|19335|19337|19338|19340|19341|19345|19348|19350|19353|19357|19360|19365|19366|19367|19368|19373|33922|33924|33925|38432|47036|76478|99351|99352|99353|99354|99355|99356|99358|99360|99362|99363|99364|190774|194862|194863|195917|227188|237954|249411|265209|314491|404945|486012|486837|486838|486840|486844|486866|486867|496141|513234|549499|621056|621057|621058|621059|621060|621061|621703|696140|816426|915011|915012|916793|920479|920480|963246|972537|975763|977443|977444|977445|977446|977447|977448|977449|978515|983940", + "text": "Gaucher disease" + }, + { + "baseId": "19327", + "text": "Hypomimic face" + }, + { + "baseId": "19327|203232|260118|513946|613536|613536|613537|613537|800991|801159", + "text": "Movement disorder" + }, + { + "baseId": "19327|264319|360941", + "text": "Thoracolumbar scoliosis" + }, + { + "baseId": "19327|38432|38432|133431|360846|360868|360942|361108|362597|362598|476220|486013|513955|514103", + "text": "Parkinsonism" + }, + { + "baseId": "19327|486013", + "text": "Resting tremor" + }, + { + "baseId": "19327|19329|19330|19331|19332|19332|19334|19337|19341|19350|19353|19366|19367|19373|33922|33924|99352|99353|99356|99358|99360|99363|99364|265824|404945|626896|682848|801581|801582|801583|801584|801585|801586|801587", + "text": "Gaucher disease type 3C" + }, + { + "baseId": "19327|19329|19330|19332|19342|19357|19361|19364|19365|19367|19368|19370|19372|19373|33924|99354|190774|682848|918564|918565|920127", + "text": "Gaucher disease, perinatal lethal" + }, + { + "baseId": "19329", + "text": "Susceptibility to Parkinson's Disease" + }, + { + "baseId": "19329", + "text": "Akinesia" + }, + { + "baseId": "19329|38432|360942|514103", + "text": "Rigidity" + }, + { + "baseId": "19329|94418|223765|223766|223767|223768|223769|226703|226704|226705|226706|226707|226708|226709|226710", + "text": "Parkinson disease" + }, + { + "baseId": "19380|19381|39540|287298|287301|287302|287303|287311|288014|288015|288016|288021|288035|288038|290667|290668|290700|290701|290709|290711|290714|290715|290718|290720|290725|290732|290936|290941|290944|290946|290947|290950|290951|290952|733580|747788|885474|885475|885476|885477|885478|885479|885480|885481|885482|885483|885484|887401", + "text": "Parkinson disease 13" + }, + { + "baseId": "19382|19383|19384|165840|175965|175967|176105|209355|237617|404821|442483|497248|497466|511015|550777|553314|609916|612159|614131|614134|615818|679904|802083|805825|961565", + "text": "Deafness, autosomal recessive 16" + }, + { + "baseId": "19385|19385|19386|19387|19388|19389|19390|19391|19392|19393|34380|34381|34382|34383|34384|34385|34386|34386|39537|39539|71462|140131|140131|191260|195727|205019|213112|222372|222373|222374|241848|264598|320649|320667|320668|320669|320671|329462|329463|329479|329483|329486|329487|329489|329491|336024|336042|336046|336054|336055|336058|336059|337982|337983|337987|337996|373858|374245|399673|399833|441647|445234|463293|463302|463801|463803|463808|464156|464290|464292|464298|464300|495758|528195|528201|528207|528210|528213|528546|528559|528565|528567|528569|552176|552177|566492|568098|568101|568939|572612|612099|642484|642485|642486|642487|642488|642489|642490|642491|642492|642493|642494|642495|642496|684496|688303|791410|791411|798676|816001|820625|820626|820627|841541|841542|841543|841544|841545|841546|841547|841548|871913|871914|871915|871916|871917|871918|871919|872367|927093|927094|927095|936632|936633|936634|948579|948580|948581|948582|948583|957231|957232|960804|963167|970144", + "text": "Hereditary spastic paraplegia 3A" + }, + { + "baseId": "19385|34386|39536|39537|140131|625307|626229|919529|919530|964416", + "text": "Hereditary sensory neuropathy type 1D" + }, + { + "baseId": "19394|19395|19396|165954|227498|238219|238220|238221|279495|279504|279505|279510|279531|279537|279541|279546|279550|279552|279556|279558|279568|279569|279570|279580|279582|279592|279593|279602|279603|279604|279609|279763|279764|279765|279770|279771|279791|279807|279811|279821|279834|279836|279837|279838|279839|279840|279842|279846|279847|279849|279850|279854|279856|279857|279867|281073|281078|281081|281082|281084|281090|281099|281102|281118|281122|281123|281125|281127|281141|281142|281175|281177|281178|281181|281182|281187|281189|281190|281191|281193|281194|281195|281196|281197|281201|281205|281207|281213|281216|281217|281221|281222|281223|281224|281226|281233|281234|281237|281241|281249|390977|390996|390999|391001|391100|391102|391112|391112|447548|447554|447697|447699|447711|515504|515623|557177|627433|627434|627435|650687|683313|683314|685637|689644|689645|823525|823526|823527|823528|823529|823530|823531|823532|850965|863875|863876|863877|863878|863879|863880|863881|863882|863883|863884|863885|863886|863887|863888|863889|863890|863891|863892|863893|863894|863895|863896|863897|863898|863899|863900|863901|863902|863903|863904|863905|863906|863907|863908|863909|863910|863911|863912|863913|921863|921864|921865|921866|921867|930346|930347|930348|941779|941780|941781", + "text": "Erythrocytosis, familial, 3" + }, + { + "baseId": "19397|19398|19399|19400|19401|19402|19403|19404|19405|195381|438125|491867|513144|551588|551589|590356|613154|800157|818341|919893|980391", + "text": "Retinitis pigmentosa 11" + }, + { + "baseId": "19406|19408|39533|39534|39535|268860|268895|280816|280824|280827|280828|280836|280840|280842|280848|280849|280854|280866|280869|280870|280871|281322|281334|281335|281336|281337|281338|281347|281349|281350|281352|281353|281354|281362|281377|281388|281389|281391|281398|281400|281401|282590|282592|282595|282596|282601|282615|282616|282617|282618|282619|282622|282623|282624|282880|282881|282895|282901|282902|282903|282922|282923|282926|282927|282928|552047|620724|719022|798475|798476|816351|816352|864592|864593|864594|864595|864596|864597|864598|864599|864600|864601|864602|864603|864604|864605|864606|864607|864608|864609|864610|864611|864612|864613|864614|864615|864616|864617|864618|864619|864620|864621", + "text": "Desmosterolosis" + }, + { + "baseId": "19409|19410|19410|19411|19412|19413|19414|19415|19416|19417|19418|19418|103704|103800|103801|103802|103803|103804|103805|103806|103807|103808|103809|103810|103811|103812|103813|103814|103815|103816|103817|103818|103819|103820|103821|103822|103823|103824|103825|103826|103827|103828|103829|103830|103831|103832|103833|103834|103835|103836|103837|103838|103839|103840|103841|103842|103843|103844|103845|103846|103847|103848|103849|103850|103851|103852|103853|103854|103855|103856|103857|103858|103859|103860|103861|103862|103863|103864|103865|103866|103867|103868|103869|103870|103871|103872|103873|103874|103875|103876|103877|103878|103879|103880|103881|103882|103883|103884|103885|108769|137003|142229|142231|142233|142235|142236|142237|215206|231470|231483|231485|231490|231491|231492|231496|244259|249856|249857|249858|280193|280195|280198|280201|280204|280207|280211|280212|280213|280565|280566|280586|280587|280588|280589|280590|280591|281832|281854|281864|281865|281887|281894|281895|281898|281902|281982|281994|281997|282002|282003|282010|282011|282013|282019|515874|557011|557277|614215|690575|718855|761838|789957|816302|864187|864188|864189|864190|864191|864192|864193|864194|864195|864196|864197|864198|864199|864200|864201|864202|864203|864204|864205|864206|864207|865170", + "text": "Familial cold autoinflammatory syndrome 1" + }, + { + "baseId": "19409|19410|19412|19413|19416|19418|80059|103800|103801|103810|103813|103816|103823|103826|103831|103832|103834|103836|103840|103858|103877|103878|103881|103882|103884|142229|142230|142232|142233|142234|142236|142237|215206|231472|231476|231477|231480|231483|231484|231485|231486|231488|231491|231492|231495|231496|244259|244260|244262|249858|280212|281887|281894|281895|282010|282011|365069|365071|421234|439865|442797|442800|447722|447957|448043|448073|448075|448077|448078|498378|515752|515802|515804|515806|515809|515845|515874|557000|557002|557008|557011|557236|557238|557277|558467|609420|627704|627705|627706|627707|627708|627709|627710|627711|627712|627713|627714|627715|627716|627717|627718|627719|650631|650712|690572|690573|690574|707270|718854|718855|732334|732335|746376|746380|746381|746384|761834|761835|780644|818957|818958|823834|823835|823836|823837|823838|823839|823840|823841|823842|823843|823844|823845|823846|851293|921969|921970|921971|921972|921973|921974|921975|930440|930441|930442|930443|930444|930445|930446|930447|941898|941899|941900|941901|941902|941903|952375|952376", + "text": "Cryopyrin associated periodic syndrome" + }, + { + "baseId": "19410|103783|257201|257202|257203|257204|257206|257207|281855|281901|282014|282015|282018|344075|344095|349305|349310|349317|349328|350305|350308|350336|353519", + "text": "Familial cold autoinflammatory syndrome" + }, + { + "baseId": "19410|19412|19413|19414|19416|19418|103800|103801|103810|103821|103823|103832|103857|103878|103881|103882|108769|142229|142231|142233|142235|142236|142237|215206|231470|231483|231485|231490|231491|231492|231496|244259|249856|249857|249858|280193|280195|280198|280201|280204|280207|280211|280212|280213|280565|280566|280586|280587|280588|280589|280590|280591|281832|281854|281855|281864|281865|281887|281894|281895|281898|281901|281902|281982|281994|281997|282002|282003|282010|282011|282013|282014|282015|282018|282019|515874|557011|557277|614215|690575|718855|761838|816302|864187|864188|864189|864190|864191|864192|864193|864194|864195|864196|864197|864198|864199|864200|864201|864202|864203|864204|864205|864206|864207|865170", + "text": "Familial amyloid nephropathy with urticaria AND deafness" + }, + { + "baseId": "19410|19415|19416|19417|19418|103800|103810|103821|103823|103832|103857|103861|103878|103881|103882|108769|142229|142231|142233|142235|142236|142237|215206|231470|231483|231485|231490|231490|231491|231492|231496|244259|249856|249857|249858|280193|280195|280198|280201|280204|280207|280211|280212|280213|280565|280566|280586|280587|280588|280589|280590|280591|281832|281854|281855|281864|281865|281887|281894|281895|281898|281901|281902|281982|281994|281997|282002|282003|282010|282011|282013|282014|282015|282018|282019|515874|557011|557277|614215|690575|718855|761838|816302|864187|864188|864189|864190|864191|864192|864193|864194|864195|864196|864197|864198|864199|864200|864201|864202|864203|864204|864205|864206|864207|865170", + "text": "Chronic infantile neurological, cutaneous and articular syndrome" + }, + { + "baseId": "19410|19418|231490|439865|557011", + "text": "Deafness, autosomal dominant 34, with or without inflammation" + }, + { + "baseId": "19418|231490|486795|557011", + "text": "Keratitis fugax hereditaria" + }, + { + "baseId": "19419|19420|19421|19422|19423|19424|19425|19426|19427|55710|55711|55714|55715|55717|55718|172589|227215|228487|228489|228494|228496|275045|280879|280880|280883|280884|280888|281402|281410|282626|282632|282929|282932|282933|282935|496211|581790|620006|622681|654213|746571|864622|864623|864624|864625|864626|864627|864628|864629|864630|980303", + "text": "Bartter disease type 4a" + }, + { + "baseId": "19420|19423|55710|55718|194526|227215|228487|228489|228495|353106|587011|654213|654215|654216|719024|732517|746568|746569|746570|746571|746572|762016|780738|977550|977551|977552", + "text": "Bartter syndrome" + }, + { + "baseId": "19427|19428", + "text": "Sensorineural deafness with mild renal dysfunction" + }, + { + "baseId": "19429|27356|27357|31303|508794|535738", + "text": "Hemangioma, capillary infantile" + }, + { + "baseId": "19430|469343|469352|470365|470884|533503|533504|533576|533580|533588|534067|534076|571196|572880|573493|575090|648634|648635|648636|648637|648638|648639|648640|653124|653646|716914|742358|742359|757469|757471|773078|773079|773080|773081|773084|778407|786358|786359|821318|848309|848310|848311|848312|848313|848314|848315|848316|848317|917736|919911|920415|929164|938944|938945|938946|940504|951043|951044|951045|958808|958809|958810|958811|958812|960315|965779|965780", + "text": "Autoimmune disease, syndromic multisystem" + }, + { + "baseId": "19431|19432|19433|19434|19435|19436|19437|19438|57309|57310|57311|57312|173760|186675|186676|229031|229032|289133|289138|289139|289140|289141|289916|289917|289931|289936|289938|293002|293007|293010|293341|293352|293371|293380|293381|293406|293415|293419|357287|357288|357289|493293|496337|542823|542827|542829|542832|542837|542840|543017|543022|543027|543029|543031|543033|543075|543076|543079|543082|543099|543103|543106|543111|543116|590271|622134|626415|733873|790343|800352|800489|800490|827631|888208|888209|888210|888211|888212|888213|888214|888215|888216|888217|888218|888219|888220|888221|888222|888223|888224|888225|888226|888227|891594|906128", + "text": "Usher Syndrome, Type III" + }, + { + "baseId": "19434|19438|57311|57312|57313|173760|186675|357287|493293|496337|733873|781597|827625|827629|977809|977810|977811|977812|977813|980319", + "text": "Usher syndrome, type 3A" + }, + { + "baseId": "19439|19440|314660|314664|314667|314668|314671|314672|314674|314677|314678|314688|314690|321342|321354|321355|321357|321358|321361|321362|321365|321366|321377|321379|327487|327491|327493|327494|327495|327500|327503|327516|328540|328554|328555|328557|328560|328561|328563|328569|328592|497248|552286|701895|701896|724617|868290|868291|868292|868293|868294|868295|868296|868297|868298|868299|868300|868301|868302|868303|868304|868305|868306|868307|868308|868309|868310|868311|868312|868313|868673", + "text": "Spermatogenic failure 7" + }, + { + "baseId": "19441|371260|906171|967101", + "text": "Familial hypertriglyceridemia" + }, + { + "baseId": "19443|983644", + "text": "Familial type 5 hyperlipoproteinemia" + }, + { + "baseId": "19444|19453|106525|181372|181373|227231|238590|238592|238595|238595|238596|250493|250494|250497|250501|250502|250503|250505|250506|250507|266843|283960|283962|283963|283971|283972|283978|284685|284693|284695|284696|284698|284699|284725|284727|284739|284742|286627|286630|286631|286635|286636|286642|286644|287049|287060|287069|287071|287072|287088|287102|287103|287104|360832|366307|392274|450379|450392|450513|517524|517535|517610|517618|517632|560541|629294|682213|683468|683470|686110|686116|686117|689703|747169|759187|792725|792726|792726|861329|861330|883310|883311|883312|883313|883314|883315|883316|883317|883318|883319|883320|883321|883322|883323|883324|883325|883326|883327|883328|883329|883330|883331|883332|883333|883334|883335|883336|883337|883338|883339|883340|883341|883342|883343|883344|883345|883346|883347|883348|887238|887239|887240|961835|971374", + "text": "Amyotrophic lateral sclerosis type 2" + }, + { + "baseId": "19445|19446|19453|19455|51303|238595|517535|560541|682215|792725|792726|798495", + "text": "Juvenile primary lateral sclerosis" + }, + { + "baseId": "19445|19447|19448|19449|19450|19451|19452|19454|19456|51226|106525|181373|214531|214532|221136|238590|238591|238592|238593|238594|238595|238595|238596|250497|250503|250506|266843|283963|283971|283972|284698|286635|286639|287072|287103|392272|392274|392283|392458|392520|392522|392526|433360|440650|450251|450255|450378|450379|450392|450414|450422|450491|450496|450505|450506|450512|450513|517524|517526|517527|517535|517535|517610|517611|517618|517625|517632|517639|517640|557812|557814|557865|559041|559043|559045|559047|560537|560539|560541|560541|560543|629293|629294|629295|629296|629297|629298|629299|629300|629301|629302|629303|629304|629305|650938|682212|682213|682214|682216|683468|683470|683471|686108|686110|686113|686117|689700|689701|691008|691009|697251|762786|789113|792725|792726|792726|792960|792961|798496|825585|825586|825587|825588|825589|825590|825591|825592|825593|825594|825595|825596|825597|825598|825599|825600|883325|883346|922516|922517|922518|922519|922520|922521|931075|931076|931077|931078|940685|940686|942562|942563|942564|942565|952885|952886|952887|959622", + "text": "Infantile-onset ascending hereditary spastic paralysis" + }, + { + "baseId": "19457|19458|172453|442876|553249|612079|799222|972779", + "text": "Deafness, autosomal recessive 36, with or without vestibular involvement" + }, + { + "baseId": "19459|19460|19461|19462", + "text": "Deafness, without vestibular involvement, autosomal dominant" + }, + { + "baseId": "19463", + "text": "Deafness, autosomal recessive 36, without vestibular involvement" + }, + { + "baseId": "19464|19465|19466|19467|19468|19469|19470|19471|19472|140116|140117|140118|140119|169587|195446|211374|211378|211380|253509|265577|308143|308152|308156|308164|308165|318389|318390|318393|318394|318402|318856|318863|318864|318872|318874|371215|407687|414697|429011|441315|441328|441329|503372|503391|508838|549960|622509|623002|759914|901921|901922|901923|901924|901925|901926|901927|901928|901929|901930|901931|901932|901933|903389|903390|918305|966055|966057", + "text": "Ataxia-oculomotor apraxia type 1" + }, + { + "baseId": "19473|19474|103701|103702|103703|142521|142522|142523|142524|142525|142526|142528|142529|142530|142531|142533|142536|243838|243839|243841|243843|243844|244930|244931|244935|244936|244937|244938|255363|255365|255366|255367|265178|323401|323407|323408|323414|323421|333090|333092|333093|333094|333096|333097|333099|333100|333106|333110|333112|333115|333118|339914|339917|339918|339928|339932|339936|339937|339938|339947|341331|341337|341338|341339|341343|341354|341357|353330|373690|409350|415450|422047|433868|433870|433872|433875|445430|465181|465429|504979|529056|529059|529115|529117|529665|537248|566882|567286|569155|569156|569161|569604|569606|569608|573539|573540|573543|573544|609935|614401|643554|643555|643556|643557|643558|643559|643560|643561|643562|643563|652572|693746|739799|739800|754694|770353|770354|770355|776094|785031|785032|785033|789380|799820|799821|799822|799823|799824|799825|799826|799827|799828|799829|820738|842712|842713|842714|842715|842716|842717|842718|842719|842720|842721|842722|842723|842724|842725|842726|842727|842728|874193|874194|874195|874196|874197|874198|874199|876578|927427|937076|941096|949013|949014|949015|949016|949017|949018|949019|957514|957515|957516|960122|981929|981930|981931|981932", + "text": "Pyogenic arthritis-pyoderma gangrenosum-acne syndrome" + }, + { + "baseId": "19475|187259|187260|254993|439068|512941|858757", + "text": "Colobomatous optic disc-macular atrophy-chorioretinopathy syndrome" + }, + { + "baseId": "19480|19481|19482|19482|19484|19485|19486|19486|19490|19490|19491|19494|19494|19497|34290|34291|34291|34292|34293|34294|34294|186968|186969|186969|186970|186971|186972|186973|186974|186975|186976|186976|195685|195685|196260|247620|256149|256150|256152|256152|256153|256154|256155|262353|262353|262357|268431|272491|272491|328149|328151|328158|328162|328163|328167|328168|328169|328170|328174|328176|328191|328193|328196|328201|328205|328212|328213|328215|328216|328221|328223|328224|328225|328229|328231|328240|328241|328242|328246|338029|338033|338035|338047|338047|338073|338074|338077|338079|338086|338087|338091|338095|338100|338102|338105|338107|338108|338111|338112|338114|338116|338118|338120|338123|338125|338128|344204|344207|344208|344209|344214|344218|344222|344224|344229|344229|344237|344238|344244|344246|344247|344248|344249|344250|344257|344258|344260|344262|344266|344267|345599|345600|345604|345608|345608|345609|345610|345616|345616|345619|345620|345624|345626|345627|345628|345629|345632|345633|345636|345639|345643|345644|345646|345647|345655|345657|345661|345664|345666|345668|345670|345674|345675|345683|358428|358429|358430|358431|358431|358432|358433|358434|358435|409914|467343|467996|467996|487825|487918|487918|487925|487925|508965|530976|531022|531462|531468|531468|548084|548094|548095|548103|548111|548112|548114|548115|548116|548117|548119|548123|548124|548125|548126|548127|548128|548131|548133|548141|548364|548365|548373|548385|548390|548391|548822|548823|548831|548835|548835|548841|571093|574257|590453|645825|645826|645827|652641|652939|653105|653107|653266|653356|653445|704104|715396|715400|715401|727124|727124|727125|727126|727127|727128|740704|755804|771449|771450|771453|771454|771455|771457|771459|776317|779875|785542|785545|788236|792804|792805|821040|845246|845247|845248|851717|852736|858743|858749|877276|877277|877278|877279|877280|877281|877282|877283|877284|877285|877286|877287|877288|877289|877290|877291|877292|877293|877294|877295|877296|877297|877298|877299|877300|877301|877302|877303|877304|877305|877306|877307|877308|877309|877310|877311|877312|880508|928238|928239|937900|940409|941180|949890|958092|960215|960883|972271|972272", + "text": "Nephropathic cystinosis" + }, + { + "baseId": "19482|19484|19486|19486|19488|19490|19490|19492|19493|19494|34291|34294|186969|186976|195685|195685|196260|256149|256150|256152|256152|256153|256154|256155|262353|262357|268431|272491|272491|328149|328151|328158|328162|328163|328167|328168|328169|328170|328174|328176|328191|328193|328205|328212|328213|328215|328216|328221|328223|328224|328225|328231|328240|328241|328242|328246|338029|338033|338047|338047|338073|338074|338077|338079|338086|338087|338091|338095|338102|338105|338108|338111|338112|338114|338120|338123|338125|338128|344204|344207|344208|344209|344214|344218|344222|344224|344229|344229|344237|344238|344244|344246|344247|344248|344250|344257|344258|344260|344262|344266|344267|345599|345600|345608|345608|345609|345610|345616|345616|345619|345620|345624|345626|345627|345628|345629|345632|345633|345636|345643|345644|345647|345655|345657|345661|345664|345666|345670|345674|345675|345683|358429|358431|467343|467996|487918|487918|487925|530976|531022|531462|531468|548835|571093|574257|645825|645826|645827|652641|652939|653105|653107|653266|653356|653445|704104|715396|715400|715401|727124|727124|727125|727126|727127|727128|740704|755804|771449|771450|771453|771454|771455|771457|771459|776317|779875|785542|785545|788236|792804|792805|821040|822301|845246|845247|845248|851717|852736|877276|877277|877278|877279|877280|877281|877282|877283|877284|877285|877286|877287|877288|877289|877290|877291|877292|877293|877294|877295|877296|877297|877298|877299|877300|877301|877302|877303|877304|877305|877306|877307|877308|877309|877310|877311|877312|880508|928238|928239|937900|940409|941180|949890|958092|960215|960883|972271|972272", + "text": "Ocular cystinosis" + }, + { + "baseId": "19482|19484|19486|19487|19490|19494|19495|19497|34291|34294|186969|186969|186976|195685|196260|256152|262353|262357|268431|272491|338047|344229|345608|345616|358431|467343|467996|487918|487925|530976|531022|531462|531468|548835|571093|574257|645825|645826|645827|652641|652939|653105|653107|653266|653356|653445|704104|715396|715400|715401|727124|727125|727126|727127|727128|740704|755804|771449|771450|771453|771454|771455|771457|771459|776317|779875|785542|785545|788236|792804|792805|821040|845246|845247|845248|851717|852736|928238|928239|937900|940409|941180|949890|958092|960215|960883|972271|972272", + "text": "Juvenile nephropathic cystinosis" + }, + { + "baseId": "19482|19486|19494|19497|34290|34291|34292|186969|186973|186974|186976|195685|247620|247621|247622|247623|247624|256149|256150|256152|256153|262353|262354|262355|262357|268431|272491|328196|328201|328229|338035|338047|338100|338107|338116|338118|344229|344249|345604|345608|345616|345639|345646|345668|487825|487918|487925|497290|548133|571093|621563|715396|715401|727125|727127|727128|740704|755805|771453|776317|779875|785546|845248|877280|979889|979890|979891|979892|979893|979894|979895|979896|979897|979898", + "text": "Cystinosis" + }, + { + "baseId": "19486|19496|19497", + "text": "Cystinosis, atypical nephropathic" + }, + { + "baseId": "19498|338326|338329|338331|338336|347978|347979|351719|351720|351721|352615|433978|433979|433980|470319|470330|470332|471152|471981|534016|534331|534480|534487|534489|574144|649531|649532|649533|649534|717485|717486|729223|742945|758118|786611|821467|849387|849388|849389|849390|891366|891367|891368|891369|891843|891844|929498|929499", + "text": "Common variable immunodeficiency 4" + }, + { + "baseId": "19499|19500|19500|19500|19501|19501|19502|19502|19503|19504|39524|79734|143206|143206|187237|187237|227234|227234|259730|259731|259731|284729|284732|284737|284740|284741|284741|284751|284751|284752|284754|284754|284757|284763|284764|284769|284769|284770|285403|285417|285418|285420|285420|285421|285422|285422|285423|285427|285428|287631|287632|287635|287636|287636|287638|287639|287640|287641|287652|287862|287863|287865|287866|287872|287873|287875|287875|287876|287882|287883|287889|287891|287892|287901|287901|287902|359415|360835|366372|404757|414868|448382|450625|450631|450635|450717|450717|450724|517815|517833|517834|517936|517938|550120|550121|550122|550123|557933|559113|559115|559117|559119|560936|560938|622269|629468|629469|629470|629471|629472|629473|691029|691030|691030|691031|691032|691032|691033|697326|697327|733173|747301|747302|747303|762937|762942|762945|781181|781182|781184|781185|798498|825745|825746|825747|825748|825749|883761|883762|883763|883764|883765|883766|883767|883768|883769|883770|883771|883772|883773|883774|883775|883776|883777|887275|917809|922578|922579|931154|931155|931156|939877|942612|952940|952941|952942|952943", + "text": "Odonto-onycho-dermal dysplasia" + }, + { + "baseId": "19500|19500|19501|39524|79734|143206|187237|227234|259731|284729|284732|284737|284740|284741|284751|284752|284754|284757|284763|284764|284769|284770|285403|285417|285418|285420|285421|285422|285423|285427|285428|287631|287632|287635|287636|287638|287639|287640|287641|287652|287862|287863|287865|287866|287872|287873|287875|287876|287882|287883|287889|287891|287892|287901|287902|404757|450631|450717|691029|691030|691032|691033|697326|697327|747302|883761|883762|883763|883764|883765|883766|883767|883768|883769|883770|883771|883772|883773|883774|883775|883776|883777|887275|977687", + "text": "Schopf-Schulz-Passarge syndrome" + }, + { + "baseId": "19500|19500|19500|19501|19501|19502|19502|39524|45629|79734|143206|143206|187237|187237|227234|227234|259730|259731|284741|284741|284751|284751|284752|284754|284754|284757|284763|284764|284769|284769|284770|285417|285418|285420|285420|285421|285422|285422|285423|285427|285428|287636|287636|287638|287639|287640|287641|287652|287875|287875|287882|287883|287889|287891|287892|287901|287901|287902|359415|359415|360835|366372|404757|414868|448382|450625|450631|450635|450717|450717|450724|517815|517833|517834|517936|517938|557933|559113|559115|559117|559119|560936|560938|622269|622269|629468|629469|629470|629471|629472|629473|691029|691030|691030|691031|691032|691032|691033|697326|697327|733173|747301|747302|747303|762937|762942|762945|781181|781182|781184|781185|825745|825746|825747|825748|825749|883761|883762|883763|883764|883765|883766|883767|883768|883769|883770|883771|883772|883773|883774|883775|883776|883777|887275|917746|922578|922579|931154|931155|931156|939877|942612|952940|952941|952942|952943", + "text": "Tooth agenesis, selective, 4" + }, + { + "baseId": "19500", + "text": "WNT10A-Related Disorders" + }, + { + "baseId": "19501|20897|106750|165611|165614|165615|165619|172936|249812|249813|249814|249815|249816|250081|250082|250083|250084|259690|266292|268021|269619|279711|279718|279719|279724|279731|279733|279734|279736|280000|280002|280007|280021|280030|280048|280049|280051|280061|280062|281321|281323|281327|281330|281331|281333|281339|281345|281348|281355|281511|281513|281518|281519|281520|281521|281522|281523|281524|281529|281532|281533|281534|281537|281540|281543|282145|282146|282147|282150|282152|282182|282184|282199|283515|283516|283517|283525|283530|283531|283532|283546|283549|283550|283551|283642|283656|283657|283659|283660|283667|283675|448540|448751|515626|685832|690702|690704|690705|824675|863969|863971|863972|863973|863974|863975|863976|863977|863979|863980|863981|863982|863983|863984|863985|863986|863988|865147|865148|880790|880791|880792|880793|880794|880795|880796|880797|880798|880799|880800|880801|880802|880803|880804|880805|880806|880807|880808|880809|880810|880811|880812|880813|880814|880815|880816|880817|880818|880819|880820|880821|880822|880823|880824|880826|880827|880828|880829|880830|880831|880832|882776|882777", + "text": "Hypohidrotic ectodermal dysplasia" + }, + { + "baseId": "19501|143206|284754|287901|794111|794112|794113|800840|917747", + "text": "Reduced number of teeth" + }, + { + "baseId": "19505|614368", + "text": "Familial chronic mucocutaneous candidiasis" + }, + { + "baseId": "19505|581228", + "text": "Aspergillosis, susceptibility to" + }, + { + "baseId": "19506", + "text": "Invasive pneumococcal disease, protection against" + }, + { + "baseId": "19506|20506|29052|30165|30200|30372|32764", + "text": "Malaria, resistance to" + }, + { + "baseId": "19506|29762|32992", + "text": "Mycobacterium tuberculosis, protection against" + }, + { + "baseId": "19506", + "text": "Bacteremia, resistance to" + }, + { + "baseId": "19507|19508|19509|19510|19511|39519|137710|222400|222408|241986|321882|321890|321906|321925|331202|331209|331225|338031|338032|338048|339961|339964|339965", + "text": "Pleuropulmonary blastoma" + }, + { + "baseId": "19507|19508|19509|19511|39519|39521|39522|39523|76997|76998|82748|137701|137703|137704|137705|137706|137707|137708|137709|137710|137711|137712|137712|137713|137714|137715|139252|222392|222393|222394|222395|222396|222397|222398|222399|222400|222401|222402|222403|222404|222405|222406|222407|222408|222409|222410|222411|222412|222413|222414|222415|223646|227696|227697|227698|227699|227700|227701|241898|241899|241900|241901|241903|241904|241905|241906|241907|241908|241909|241910|241911|241912|241913|241914|241915|241916|241917|241918|241919|241920|241921|241922|241923|241924|241925|241926|241928|241929|241930|241931|241933|241934|241935|241936|241937|241938|241939|241940|241941|241942|241943|241944|241945|241946|241948|241950|241951|241952|241954|241955|241956|241957|241958|241959|241960|241961|241962|241963|241964|241965|241966|241967|241968|241969|241970|241971|241972|241973|241974|241975|241976|241977|241978|241979|241980|241981|241982|241983|241984|241985|241986|241987|241989|241990|241991|241992|241993|241994|241995|241996|241997|241998|241999|242000|242001|242002|242003|242004|242005|242006|242007|242008|242010|242011|242012|242013|242014|242015|242016|242017|242018|242019|242020|242021|242022|248816|248817|248818|248819|248820|248821|248822|248823|248824|248825|248826|248827|248828|248829|248830|248831|248832|248833|248834|248835|248836|248837|248838|248839|248840|248841|248842|248843|248844|248845|248846|248847|248848|248849|248850|248851|248852|248853|248854|248855|248856|248857|248858|248859|248860|248861|248862|248863|248864|248865|248866|248867|248868|248869|248870|248871|248872|248873|248874|248875|248876|248877|248878|248879|248880|248881|248882|248883|248884|248885|248886|248887|248888|248889|255116|255117|255118|255119|255120|255121|321871|321877|321878|321879|321881|321883|321884|321889|321892|321893|321907|321911|321918|321919|321923|321935|321939|321940|321947|321953|321955|331176|331179|331183|331186|331189|331194|331201|331206|331207|331213|331217|331221|331222|331228|331230|331230|331238|331239|331243|331245|337997|338011|338012|338020|338036|338037|338043|338044|338048|338049|338052|339954|339955|339958|339959|339963|339966|339967|339969|339971|339975|339977|339978|339983|339988|399752|399758|399765|399767|399771|399772|399774|399775|399778|399782|399789|399791|399792|399796|399798|399801|399802|399807|399809|399811|399813|399818|399822|399824|399826|399832|399835|399843|399845|399849|399865|399866|399869|399871|399881|399887|399891|399893|399897|399902|399905|399906|399906|399916|399921|399926|399927|399930|399932|399937|399942|399944|399947|399949|399953|399954|399957|399958|399958|399959|399964|399969|399971|399972|399973|399974|399976|399977|399980|399981|399982|399985|399987|399991|399993|399994|400004|400005|400006|400009|400011|400016|400022|400024|400025|400028|400029|400035|400037|400041|400044|400052|400059|400060|400065|400074|400078|400092|400094|400095|400096|400099|400102|400103|400105|400112|400117|400124|400130|400135|400137|400139|400147|400153|400166|400179|400180|400181|400186|400187|400191|400191|400197|400198|400202|400208|400300|400301|400310|400312|400319|400322|400328|400334|400335|400338|400340|400345|400351|400352|400353|400354|400356|400360|400361|400364|400367|400372|400377|400378|400379|400385|400386|400388|400389|400400|400402|400403|400404|400413|400415|400431|400442|400448|400452|400455|400458|400460|400465|400470|400473|400477|400483|400485|400489|400493|400500|400501|400502|400504|400507|400514|400517|400551|400557|400562|400566|400572|400589|400606|400611|400614|400617|400618|400621|400622|400625|400628|400631|400635|400637|400641|400643|400651|400652|400653|400654|400657|400663|400666|400675|400676|400678|400679|400685|400693|400713|400720|400721|400722|400723|400726|400728|400729|400730|400735|400738|400750|400757|400764|400765|400768|400772|400773|400787|400794|400808|400809|400812|400818|400819|400826|400828|400831|400833|400834|400835|400836|400843|409178|421090|421095|421096|421098|421102|421104|421107|421108|421115|421116|421120|421121|421122|421123|421130|421138|421139|426083|463597|463601|463614|463617|463619|463623|463625|463627|463631|463633|463634|463643|463647|463653|463659|463664|463665|463673|463677|463682|463686|463687|463689|463696|463697|463699|463702|463708|463709|463713|463715|463718|463719|463721|463726|463727|463730|463737|463752|463756|463758|463763|463769|463780|463783|463789|463793|463794|463799|463802|463804|463807|463809|463819|463820|463826|463827|463830|463835|463843|463859|463862|463865|463867|463868|463889|463891|463894|463898|463902|463910|463914|463915|463916|463917|463920|463923|463925|463929|464193|464198|464199|464203|464205|464209|464212|464216|464217|464223|464227|464233|464235|464241|464243|464251|464253|464256|464260|464261|464280|464294|464295|464301|464302|464304|464307|464314|464315|464319|464322|464323|464327|464329|464341|464343|464360|464367|464373|464374|464378|464382|464389|464392|464393|464395|464405|464407|464409|464411|464414|464416|464419|464423|464431|464432|464436|464438|464441|464447|464448|464450|464451|464454|464455|464456|464461|464464|464465|464467|464469|464472|464473|464474|464478|464480|464482|464483|464485|464487|464488|464495|464499|464506|464512|464514|464518|464520|464523|464526|464529|464548|464553|464557|464560|464569|464570|464570|464571|464572|464573|464574|464575|464577|464579|464581|464583|464584|464585|464589|464590|464591|464595|464596|464600|464601|464604|464608|464610|464612|464615|464620|464626|464628|464633|464634|464635|464635|464637|464641|464642|464644|464651|464653|464654|464655|464658|464660|464661|464662|464664|464666|464667|464669|464674|464675|464676|464678|464680|464681|464683|464685|464687|464689|464690|464695|464698|464699|464700|464701|464703|464704|464705|464707|464712|464714|464718|464719|464722|464724|464725|464727|464728|464729|464731|464733|464735|464736|464738|464741|464742|464743|464747|464749|464750|464752|464756|464757|464762|464766|464767|464770|464773|464774|464777|477045|477050|477067|477067|477078|477082|477084|477099|477109|477116|477119|477122|477127|477137|477140|477141|477143|477146|477151|477157|477158|477159|477160|477162|477165|477166|477174|477184|477196|477199|477210|477212|477214|477217|477218|477228|477239|477247|477295|477317|477321|477322|477326|477332|477339|477340|477345|477350|477356|477358|477362|477364|477365|477373|477380|477395|477396|477399|477662|477667|477670|477674|477680|477681|477684|477698|477705|477725|477726|477730|477748|477751|477757|477766|477771|477781|477791|505590|505595|514664|528337|528338|528340|528351|528353|528355|528362|528364|528376|528380|528380|528388|528390|528392|528397|528400|528402|528407|528413|528415|528418|528420|528421|528423|528426|528427|528429|528430|528432|528435|528438|528439|528441|528445|528446|528448|528449|528451|528452|528454|528455|528456|528457|528461|528466|528468|528470|528471|528472|528475|528476|528477|528482|528485|528487|528493|528496|528498|528499|528504|528506|528509|528511|528512|528513|528515|528520|528523|528525|528526|528529|528530|528533|528535|528538|528539|528549|528551|528552|528553|528560|528562|528568|528572|528573|528581|528588|528592|528817|528831|528834|528839|528844|528846|528847|528849|528851|528856|528858|528860|528861|528866|528867|528870|528871|528873|528874|528878|528880|528882|528883|528884|528886|528888|528889|528896|528898|528903|528904|528905|528906|528911|528913|528914|528917|528920|528922|528923|528924|528925|528926|528929|528930|528931|528932|528936|528937|528938|528941|528942|528945|528953|528955|528960|528968|528970|528971|528973|528977|528980|528984|528987|528989|528996|528997|529003|529007|529013|529014|566675|566679|566689|566690|566696|566697|566698|566698|566703|566705|566707|566712|566716|566720|566726|566728|566729|566737|566743|566753|566756|566758|566760|566766|566768|566771|566773|566775|566779|566780|566788|566794|566801|566802|566805|566810|566811|568354|568362|568364|568366|568370|568376|568382|568383|568389|568394|568395|568405|568413|568419|568422|568424|568427|568435|568438|568440|568449|568455|568467|568472|568473|568477|568485|568492|568501|568507|568520|568522|568523|568527|568530|568531|568532|568535|568541|569083|569087|569090|569091|569093|569095|569097|569098|569100|569108|569110|569112|569114|569116|569122|569123|569125|569129|569132|569133|569136|569137|569139|569142|569157|569160|569165|572619|572981|572986|572989|572998|573002|573009|573011|573012|573013|573016|573017|573018|573023|573025|573026|573026|573027|573035|573037|573040|573041|573043|573048|573054|573056|573057|573061|573076|573080|573081|573082|573086|573087|573088|573094|573096|573101|612020|642792|642793|642794|642795|642796|642797|642798|642799|642800|642801|642802|642803|642804|642805|642806|642807|642808|642809|642810|642811|642812|642813|642814|642815|642816|642817|642818|642819|642820|642821|642822|642823|642824|642825|642826|642827|642828|642829|642830|642831|642832|642833|642834|642835|642836|642837|642838|642839|642840|642841|642842|642843|642844|642845|642846|642847|642848|642849|642850|642851|642852|642853|642854|642855|642856|642857|642858|642859|642860|642861|642862|642863|642864|642865|642866|642867|642868|642869|642870|642871|642872|642873|642874|642875|642876|642877|642878|642879|642880|642881|642882|642883|642884|642885|642886|642887|642888|642889|642890|642891|642892|642893|642894|642895|642896|642897|642898|642899|642900|642901|642902|642903|642904|642905|642906|642907|642908|642909|642910|642911|642912|642913|642914|642915|642916|642917|642918|642919|642920|642921|642922|642923|642924|642925|642926|642927|642928|642929|642930|642931|642932|642933|642934|642935|642936|642937|642938|642939|642940|642941|642942|642943|642944|642945|642946|642947|642948|642949|642950|642951|642952|642953|642954|642955|642956|642957|642958|642959|642960|642961|642962|642963|642964|642965|642966|642967|642968|642969|652360|652363|652366|652433|652482|652484|652566|652615|652621|652625|652897|652983|652984|652995|653000|653002|653003|678125|678126|678128|678132|678137|678138|678143|678146|678154|678155|678156|685405|688379|688380|688381|688382|688383|690094|690095|693621|693623|693624|693625|693626|693627|693628|693629|693630|693631|693633|703037|703045|725874|725875|725876|725878|739410|739418|739419|739422|739423|739431|739432|739433|744838|754225|754226|754227|754228|754229|754230|754231|754232|754233|754235|754238|754239|754240|754243|754250|769961|769962|769972|769973|769974|769975|769976|769979|769980|769985|769987|769988|769989|769991|769997|769999|770000|770002|770004|770005|770009|770017|775969|776042|776096|776104|776105|776106|784825|784826|784828|784832|784834|784836|784838|784840|784841|784842|784843|784845|791429|791430|811914|811919|811920|811931|811935|811944|811963|811970|811982|811988|811994|811996|812002|812011|812012|812017|812023|812025|812029|812031|812034|812036|812037|812040|812041|812046|812053|812058|812062|812067|812076|812079|812093|812100|812116|812120|812133|812155|812156|812158|812164|812167|812168|812202|812206|812213|812215|812233|812251|812252|812253|815587|815589|815594|815597|820660|820661|841914|841915|841916|841917|841918|841919|841920|841921|841922|841923|841924|841925|841926|841927|841928|841929|841930|841931|841932|841933|841934|841935|841936|841937|841938|841939|841940|841941|841942|841943|841944|841945|841946|841947|841948|841949|841950|841951|841952|841953|841954|841955|841956|841957|841958|841959|841960|841961|841962|841963|841964|841965|841966|841967|841968|841969|841970|841971|841972|841973|841974|841975|841976|841977|841978|841979|841980|841981|841982|841983|841984|841985|841986|841987|841988|841989|841990|841991|841992|841993|841994|841995|841996|841997|841998|841999|842000|842001|842002|842003|842004|842005|842006|842007|842008|842009|842010|842011|842012|842013|842014|842015|842016|842017|842018|842019|842020|842021|842022|842023|842024|842025|842026|842027|842028|842029|842030|842031|842032|842033|842034|842035|842036|842037|842038|842039|842040|842041|842042|842043|842044|842045|842046|842047|842048|842049|842050|842051|842052|842053|842054|842055|842056|842057|842058|842059|842060|842061|842062|842063|842064|842065|842066|851593|852021|852023|852571|852572|852574|852578|852749|852751|852755|872990|872991|872992|872993|872994|872995|872996|872997|872998|872999|873000|873001|873002|873003|873004|873005|873006|873007|873008|873009|873010|873011|873012|873013|873014|873015|873016|873017|873018|873019|873020|873021|873022|873023|873024|873025|873026|876468|918493|921280|921281|921282|921283|921284|921285|921286|921287|921288|921289|921290|921291|921292|921293|921294|921295|921296|921297|921298|921299|921300|921302|921303|921304|921306|921307|921308|921310|921311|921312|921313|921314|921315|921316|921317|921318|921319|921320|921322|921323|921325|921328|921329|921330|921331|921332|921334|921335|921336|921338|921339|921340|921341|921343|921344|921345|921346|921347|921348|921349|921350|921351|921352|921353|921355|921356|921357|921358|921359|921360|921362|921363|921364|921365|921366|921367|921368|921370|921371|921372|921373|921375|921376|921378|921379|921380|921381|921382|921383|921384|921385|921386|921388|921390|921391|921393|921394|921397|921398|921399|921400|921403|921405|921406|921407|921408|921409|921410|921411|921412|921413|921414|921415|921416|921417|921419|921420|921421|921423|921424|921426|921429|921431|921432|921436|921438|921440|921441|927198|927199|927200|927201|927202|927203|927204|927205|927206|927207|927208|927209|927210|927211|927212|927213|927214|927215|927216|927217|927218|927219|927220|927221|927222|927223|927224|927225|927226|927227|927228|927229|927230|927231|927232|927233|927234|927235|927236|927237|927238|927239|927240|927241|927242|927243|927244|927245|927246|936769|936770|936771|936772|936773|936774|936775|936776|936777|936778|936779|936780|936781|936782|936783|936784|936785|936786|936787|936788|936789|936790|936791|936792|936793|936794|936795|936796|936797|936798|936799|936800|936801|936802|936803|936804|936805|936806|936807|936808|936809|936810|936811|936812|936813|936814|936815|936816|936817|936818|936819|936820|936821|936822|936823|936824|936825|936826|936827|940319|941071|941072|941073|941074|941075|941076|941077|948727|948728|948729|948730|948731|948732|948733|948734|948735|948736|948737|948738|948739|948740|948741|948742|948743|948744|948745|948746|948747|948748|948749|948750|948751|948752|948753|948754|948755|948756|948757|948758|948759|948760|948761|948762|948763|948764|948765|948766|948767|948768|948769|948770|948771|948772|948773|948774|957343|957344|957345|957346|957347|957348|957349|957350|957351|957352|957353|957354|957355|957356|957357|957358|957359|957360|960098|960099|960100|960813|960814|960815|964681|970357", + "text": "DICER1-related pleuropulmonary blastoma cancer predisposition syndrome" + }, + { + "baseId": "19513|19514|19515|19516|903678|903679|903680", + "text": "Nanophthalmos 2" + }, + { + "baseId": "19513|19515|19517|177265|177397|177836|181184|181185|181186|181187|181188|188832|191098|191437|191707|193723|194518|195024|195432|195757|195758|205768|254020|272280|312750|312754|312755|312766|312767|312770|312772|312776|312778|312779|312783|312784|312789|312795|312796|312801|312802|312808|318744|318745|318758|318788|318789|318798|318815|318817|318818|318820|318822|318827|324842|324846|324848|324853|324854|324870|324871|324872|324877|324884|324894|324897|325705|325708|325714|325719|325720|325734|325737|325745|325753|325754|325762|325763|325768|325769|325770|325774|325782|460985|481316|481317|488632|488856|551565|567088|567095|620829|692950|701610|768261|838078|838084|838085|838086|838087|838088|838089|838090|838091|838092|838093|838094|838095|838096|838097|838098|838099|838100|838101|838102|838103|838104|851827|867200|867201|867202|867203|867204|867205|867206|867207|867208|867209|867210|867211|867212|867213|867214|867215|867216|867217|867218|868610|868611|903576|926150|935424|935425|935426|935427|935428|935429|940207|947346|947347|947348|947349|947350|947351|947352|947353|956420|956421|956422|956423|956424|959980|960749|960750", + "text": "Microphthalmia, isolated 5" + }, + { + "baseId": "19518|19519|19520|19521|19522|19523|19524|19525|19526|19527|433763|710976|799508|799509|799510|981600|981601", + "text": "Uridine 5-prime monophosphate hydrolase deficiency, hemolytic anemia due to" + }, + { + "baseId": "19528|19529|19530|19531|19532|19533|19534|19535|19535|19536|101851|101852|101853|101854|101855|101856|101857|101859|101860|101861|101862|101863|135731|172199|172200|177193|190593|190596|191079|192524|195398|206785|206787|249861|249864|249865|249866|249877|249878|249879|263988|264017|264017|265285|265285|269858|270336|275193|280268|280270|280663|282040|282048|359257|360810|365090|365098|365180|365196|414787|414789|425359|447750|447754|447970|448054|448058|448062|448068|448072|448084|448092|448094|485992|514427|515760|515764|515765|515769|515770|515814|515857|515885|557015|557017|557019|557021|557242|557244|557246|557248|557250|557281|557283|558471|576535|583080|587529|612256|627726|627727|627728|627729|627730|627731|627732|627733|627734|627735|627736|627737|627738|627739|650633|650648|650656|650663|650732|650735|650736|650740|690578|696657|732339|732340|732341|732342|761842|780659|823849|823850|823851|823852|823853|823854|823855|823856|823857|823858|823859|823860|823861|823862|823863|823864|851295|858475|921980|921981|921982|921983|921984|921985|930452|930453|930454|930455|930456|930457|930458|930459|939808|939809|939810|939811|941904|941905|941906|941907|941908|941909|952380|952381|952382|959555|960428|963121", + "text": "Eichsfeld type congenital muscular dystrophy" + }, + { + "baseId": "19531|19535|101851|101852|101855|101857|101859|101860|101862|101863|135731|172199|191079|206785|206787|249859|249860|249865|249866|249874|249876|249877|249878|249879|249880|280264|280268|280270|280274|280276|280277|280278|280290|280295|280299|280301|280308|280311|280312|280313|280318|280319|280663|280669|280678|280683|280685|280691|280692|280694|280696|281957|281958|281959|281964|281965|281987|281989|282040|282046|282048|282050|282065|282068|282069|282072|282073|282080|282081|282088|282102|365090|365196|485992|515764|619997|620721|864232|864233|864234|864235|864236|864237|864238|864239|864240|864241|864242|864243|864244|864245|864246|864247|864248|864249|864250|864251|864252|864253|864254|864255|864256|864257|864258|864259|864260|864261|864262|864263|865173|865174", + "text": "SEPN1-Related Disorders" + }, + { + "baseId": "19535|19535|27486|27487|27489|27489|27491|27492|27493|27493|28014|28027|28028|33328|33329|33330|51262|51263|51264|51265|51266|51267|51268|51269|51270|51271|51272|51273|51274|51275|51279|51279|51280|51281|51282|51283|52148|52182|70540|76849|76889|76904|99153|99451|99452|99457|99460|133708|136739|136769|136823|136922|136930|136942|150176|169559|171233|171241|175460|175617|175631|177297|179672|195121|195251|206725|206725|206767|206786|208586|226127|226138|226974|249759|264017|265285|276423|276424|276425|276466|276470|276474|276477|276484|276490|276495|276498|276499|276500|276651|276653|276662|276663|276664|276666|276667|276677|276678|276685|276693|276703|276704|276710|277182|277187|277213|277218|277230|277231|277232|277237|277266|277269|277271|277275|277276|277276|277291|277293|277297|277318|277319|277329|277330|277333|277344|277366|277375|279423|279424|279425|279717|280964|281106|281108|281109|348771|349774|359257|360414|361049|361050|361051|404619|410591|430975|430975|447137|447221|447294|447811|468667|468669|469680|469791|498039|513661|514095|515083|515208|515220|515222|532933|533050|536983|539091|552032|553353|556489|556651|556651|570770|576535|626844|626845|626846|648034|648055|690510|746246|761219|798466|822748|850727|862275|862276|862277|862278|862279|862280|862281|862282|862283|862284|862285|862287|862288|862289|862291|862293|862294|862295|862296|862298|862299|862300|862302|862304|862305|862306|862308|862309|862310|862311|862312|862313|862314|862315|862316|862317|862318|862319|862320|862321|862322|862323|862324|862325|862326|862327|862328|862329|862330|862331|862332|862333|862334|862335|862336|862337|862338|862339|862340|862341|862342|862343|862344|862345|863829|863830|863831|863832|863833|863834|863835|864981|918561|919231|919232|919518|919519|919520|919521|919522|919523|919854|919855|919856|919857|919858|919859|919860|919861|919862|919863|919864|919865|920406|921645|921646|921647|921648|952072|960406|974509", + "text": "Congenital myopathy with fiber type disproportion" + }, + { + "baseId": "19537|19538|19539|19540|19541|19542|19543|19545|206560|207211|207212|213560|251945|268642|297302|297309|299306|299309|303512|303722|303757|303761|303762|303763|361183|428412|428413|428415|511595|615949|615950|615951|620194|735068|765103|894090|894091|894092|894093|894094|894095|894096|894097|894098|894099|894100|894101|894102|894103|894104|894105|894106|894107|894108|894109|894110|894111|894112|894113|896090", + "text": "Oculocutaneous albinism type 4" + }, + { + "baseId": "19543|19544|207211|816454", + "text": "Skin/hair/eye pigmentation, variation in, 5" + }, + { + "baseId": "19544|22868|23312|27386|27395|27398|27403|27405|27407|27408|27409|27422|27641|27642|27645|27652|28691|28692|28693|28694|28695|28696|28698|28905|28916|28938|28939|28940|28996|29000|29005|29006|29007|29009|29010|29011|29013|29022|30972|30973|31967|31968|32616|32617|32619|32620|32621|32622|32623|32626|32627|32628|44227|48247|48304|48938|48939|48940|49213|49214|53970|53980|53985|54284|54633|70450|80852|83949|85336|87211|87578|87659|87660|88528|100947|133271|133272|133276|139098|150535|150855|151732|166215|166563|171613|171614|172332|174177|176503|179419|180995|185345|185375|185394|206650|213392|213402|213943|216786|232035|233761|236459|236461|236463|236469|236477|236479|242978|242980|245074|263939|359197|362753|362755|362768|362770|362771|362772|362774|362775|362777|362778|362826|362837|362844|362860|362881|362887|362895|362896|362912|362914|362933|362944|362952|363008|363016|363053|363096|363097|363107|363108|363109|363110|363112|363121|363140|363165|363174|363179|363186|363197|363201|363202|363222|363241|363245|363246|363247|363248|363249|363250|363251|363252|363255|363256|363257|363258|363259|363260|363261|363262|363263|363264|363265|363266|363267|363268|363269|363270|363271|363272|363273|363283|363291|363292|363298|363299|363300|363301|363302|363303|363304|363305|363306|363319|363320|363323|363324|363325|363326|363327|363328|363336|363337|363338|363360|363370|363376|363377|363378|363387|363388|363391|363392|363393|363404|363405|363406|363410|363411|363413|363414|363415|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363484|363485|363486|363487|363488|363489|363490|363509|363510|363511|363518|363519|363520|363521|363522|363523|363524|363525|363528|363529|363530|363531|363534|363535|363536|363537|363538|363542|363543|363544|363545|363546|363547|363548|363553|363554|363555|363556|363557|363558|363559|363566|363567|363568", + "text": "Malignant melanoma of skin" + }, + { + "baseId": "19546|19547|19548|19549|19550|19551|19552|19553|19554|19555|19556|19558|19564|19567|39509|39510|39513|39513|39514|39515|54609|136194|141614|141616|152850|173819|173835|173968|187111|187111|195351|195994|205739|205740|211037|211038|211039|211046|211049|211053|211055|211057|211058|229181|361179|361179|361180|434047|496327|576167|611975|612145|790479|790480|798545|798546|918249|918251|970795", + "text": "Diabetes mellitus AND insipidus with optic atrophy AND deafness" + }, + { + "baseId": "19558|195995|207139|207141|207142|207144|428319", + "text": "Wolfram syndrome" + }, + { + "baseId": "19558|19566|19568|54595|54597|54598|54599|54600|54601|54603|54604|54605|54606|54607|54609|54612|54615|54616|54618|54619|54620|54622|54623|54625|54626|54627|54629|54630|101221|101222|101224|136193|136194|136195|136197|136198|141614|141616|141617|141618|141619|141620|141621|141622|141623|141624|152849|152850|173816|173818|173821|173823|173827|173832|173833|173835|173841|173842|173843|173955|173959|173964|173966|173970|173972|173974|173979|177356|195351|195995|207145|211031|211032|211034|211038|211040|211049|211051|211053|211054|211055|211056|211062|211068|211069|211070|211072|211079|211083|211086|229179|229180|229190|229193|229198|229199|229202|251553|273248|273254|293922|293925|293926|293936|293938|293945|293949|293950|293956|293961|293964|295280|295281|295296|295297|295308|295313|295314|295321|295325|295326|295327|295328|295329|295331|295337|295338|295339|299058|299059|299060|299064|299066|299074|299075|299080|299081|299082|299083|299094|299097|299098|299099|299101|299111|299113|299114|299120|299122|299130|299131|299132|299133|299134|299143|299148|299150|299157|299159|299160|380208|421492|428318|496790|500871|501018|501178|582065|620171|749032|764601|892006|892007|892008|892009|892010|892011|892012|892013|892014|892015|892016|892017|892018|892019|892020|892021|892022|892023|892024|892025|892026|892027|892028|892029|892030|892031|892032|892033|892034|892035|892036|892037|892038|892039|892040|892041|892042|892043|892044|892045|892046|892047|892048|892049|892050", + "text": "WFS1-Related Spectrum Disorders" + }, + { + "baseId": "19559|19560|19561|19562|19563|19565|19566|19568|54595|54597|54598|54600|54601|54603|54604|54605|54606|54607|54609|54612|54615|54616|54618|54619|54620|54622|54623|54625|54626|54627|54629|54630|101221|101222|101224|136193|136194|136195|136197|136198|141614|141614|141616|141617|141618|141619|141620|141621|141623|141624|152849|152850|173816|173818|173819|173821|173823|173826|173827|173832|173833|173835|173835|173841|173842|173843|173955|173959|173964|173966|173968|173970|173972|173974|173979|177356|187111|195351|195351|195994|207145|211031|211032|211034|211038|211038|211039|211046|211049|211051|211053|211053|211054|211055|211055|211058|211062|211068|211070|211072|211079|211083|211086|227272|229179|229180|229181|229193|229198|229199|229202|251553|273248|273254|293922|293925|293926|293936|293938|293945|293949|293950|293961|295280|295281|295296|295297|295308|295313|295314|295321|295325|295326|295327|295328|295329|295331|295338|299058|299059|299060|299064|299066|299074|299075|299080|299081|299082|299094|299097|299098|299099|299101|299111|299113|299114|299120|299122|299131|299132|299133|299134|299148|299150|299157|299159|299160|361179|361179|380208|428318|434047|496327|496790|500871|501018|501178|576167|582065|749032|764601|892006|892007|892008|892009|892010|892011|892012|892013|892014|892015|892016|892017|892018|892019|892020|892021|892022|892023|892024|892025|892026|892027|892028|892029|892030|892031|892032|892033|892034|892035|892036|892037|892038|892039|892040|892041|892042|892043|892044|892045|892046|892047|892048|892049|892050", + "text": "Autosomal dominant nonsyndromic deafness 6" + }, + { + "baseId": "19565|39513|39516|141614|173819|173835|173968|187111|195351|195351|195994|211038|211039|211046|211053|211055|211058|211082|229181|229205|361179|434047|496327|576167|964233", + "text": "Wolfram-like syndrome, autosomal dominant" + }, + { + "baseId": "19565", + "text": "DFNA6/14/38 Nonsyndromic Low-Frequency Sensorineural Hearing Loss" + }, + { + "baseId": "19567", + "text": "Diabetes mellitus, noninsulin-dependent, association with" + }, + { + "baseId": "19569|678975", + "text": "Short sleep, familial natural, 1" + }, + { + "baseId": "19570|19571|19572|19573|19574|19575|19576|19577|19578|19579|19580|19581|19584|19585|133981|133982|153583|165485|222151|244659|244661|244662|244664|254224|254225|314466|314467|314468|314470|314471|321104|321112|321127|321143|321145|321146|327233|327236|327237|327238|328232|328233|328234|328239|328248|359020|359021|359022|359023|359024|359025|359026|411515|429247|503308|504268|540480|540481|540482|540483|564772|565901|612293|612354|620409|868198|868199|868200|868201", + "text": "Congenital generalized lipodystrophy type 2" + }, + { + "baseId": "19574|153583|153584|564772|919375", + "text": "Encephalopathy, progressive, with or without lipodystrophy" + }, + { + "baseId": "19582|19583|19583|564772", + "text": "Spastic paraplegia 17" + }, + { + "baseId": "19582|19583|24244|24245|24246|24247|133981|133982|141142|141142|141143|141144|141145|141146|141147|141147|165485|186076|191530|212578|213574|221697|221699|222151|224877|244499|244659|244662|244664|245262|252786|252786|252788|252790|252795|252795|254224|254225|302780|302781|302785|302795|302796|302798|306103|306109|306110|306131|306135|306149|306154|310897|310901|310902|310903|310904|310905|310906|310908|310909|311055|311072|311080|311081|311082|311085|311086|311087|311089|311090|314466|314467|314468|314470|314471|321104|321112|321127|321143|321145|321146|327233|327236|327237|327238|328232|328233|328234|328239|328248|395627|395634|395871|407124|425751|434618|457340|503308|504268|564772|565901|609035|620409|636133|683004|833570|868198|868199|868200|868201|897972|897973|897974|897975|897976|897977|897978|897979|897980|897981|897982|897983|900352", + "text": "Distal hereditary motor neuronopathy type 5" + }, + { + "baseId": "19582|19583|462063", + "text": "NEURONOPATHY, DISTAL HEREDITARY MOTOR, TYPE VC" + }, + { + "baseId": "19586|19587|19588|19589|19590|19591|19595|19596|19598|19599|19600|102419|102420|190670|227411|270080|272020|274190|335385|335386|335388|335391|345210|345213|345214|345217|349946|349949|349952|350959|350963|350965|350967|404597|413598|422317|424266|424671|431003|438204|470368|471386|495744|533507|533598|534079|534087|534089|549802|571214|571220|571222|571224|571231|571232|572887|573499|575096|575097|575098|575099|575099|578574|648661|648662|648663|648664|648665|648666|648667|648668|648669|653126|653551|654901|705482|728650|742400|757516|773101|786373|791980|791981|791982|798763|798764|801198|801568|848385|848386|848387|886072|886073|886074|886075|886076|886077|886078|886079|886080|886081|886082|886083|886084|886085|886086|887459|929179|929180|929181|929182|929183|938973|938974|938975|961891|983456", + "text": "Pigmentary pallidal degeneration" + }, + { + "baseId": "19587|19592|19593|19594|19595", + "text": "Neurodegeneration with brain iron accumulation 1, atypical" + }, + { + "baseId": "19587|19595|19596|19597|19598|361063|361064|575099|578574", + "text": "Hypoprebetalipoproteinemia, acanthocytosis, retinitis pigmentosa, and pallidal degeneration" + }, + { + "baseId": "19596|20219|27363|27364|27365|27366|27980|27983|33477|40114|40115|45777|133431|195704|197521|205801|238970|238971|240465|240466|241054|241055|241056|241071|241072|241073|241074|241075|241076|241088|241089|243030|243993|253993|253994|254108|254114|254115|254116|260323|280582|280601|280607|280608|281071|282349|282361|282581|282591|282593|282602|282605|283145|283148|283152|283167|283169|283881|283897|283898|283899|285648|285649|286048|286050|286052|287177|290476|307045|309204|313638|313640|313643|313646|313649|313653|314584|314587|319830|319843|325999|326005|326006|326007|326018|326983|326984|326993|353527|353547|353548|354285|357968|360843|360907|360997|361029|361030|361307|361308|361617|362504|374065|375817|393235|396428|396431|396441|396442|396709|396716|396718|396852|396857|396871|397094|397096|397099|397104|398073|398074|398123|398128|398165|398441|398449|398489|398515|398531|398534|398540|398599|402634|402690|403161|437882|437886|437889|438145|441420|444773|451410|458291|458817|459309|459320|460889|460999|461058|461138|461140|461219|461364|461373|461761|461767|461798|461800|461803|468770|468779|476220|489308|500123|512805|518563|518621|518623|523998|525905|526023|526025|526116|526169|526171|526173|526178|526222|526235|526522|526532|526534|532143|532145|532148|532242|535682|545996|546003|546273|546278|546432|546644|546650|551413|558265|558642|560940|560941|561952|562779|562784|563482|563555|565513|565531|565596|565597|565602|565604|565641|565646|567126|567127|567129|567130|567131|568510|570052|570432|570440|570443|570498|590049|610516|613533|613550|630469|630470|630471|630472|630473|630474|630475|630476|630477|637717|637718|637719|637720|637721|637722|637723|637724|637725|637781|637782|639717|639718|639719|639860|639861|639862|639863|639864|639865|639866|639867|639868|639869|639870|639871|639872|639873|639874|639875|639876|639911|639912|639913|639914|639915|639916|639917|639918|639919|639920|639921|647078|647079|647080|647081|652116|652173|652184|652327|652528|679777|679778|684048|684049|684050|684055|684225|684226|684227|684228|684232|684233|684234|684235|684240|684241|684242|684243|684244|684245|684246|684741|685283|685285|685440|687374|687376|687729|687730|687732|687733|687735|687736|687737|687738|687739|687740|687741|687742|687743|687744|687745|687753|688881|692593|692931|692976|692977|692978|692979|695502|695503|701703|701704|701705|701706|724363|724364|724367|730758|730759|737917|737919|768392|775477|775677|783973|783975|787922|800980|800984|801102|801157|801190|801191|801198|801225|801228|801256|801514|819273|820347|826971|826972|826973|826974|835500|835501|835502|835503|835567|835568|835569|837963|838186|838187|838188|838189|838190|838191|838192|838193|838194|838195|838196|838197|838198|838199|838200|838244|838245|838246|846677|846678|922911|925384|925385|926169|926170|926171|926172|926173|931567|934548|934549|934570|935383|935456|935457|943110|943111|943112|946375|955690|956380|956441|956442|956443|956444|956445|956446|958434|959985", + "text": "Dystonia" + }, + { + "baseId": "19601|19602|19603|19604|19605|19606|135767|135768|135769|135770|135771|135772|142825|142826|142827|171852|188047|193689|195428|206943|210786|210788|210789|210790|210794|210795|265738|270144|273120|274651|285141|285142|285144|285146|285147|285155|285157|285160|285162|285163|285169|285179|285184|285185|285194|285777|285787|285788|285789|285806|285808|285811|285824|285826|285829|285867|285870|288113|288115|288116|288117|288120|288122|288129|288138|288140|288142|288147|288148|288156|288157|288493|288511|288516|288535|288536|288537|288538|288540|288564|288565|288568|288573|288576|353888|353889|359347|366468|366469|413895|414875|432352|432353|432354|432355|432356|439310|448581|450398|450542|450544|450761|481464|489915|492804|517754|517755|517756|517852|517857|517859|517939|517940|517946|517948|517953|557894|557896|557898|557951|559133|561003|561005|561007|561014|561024|581749|586383|587427|622868|629507|629508|629509|629510|629511|629512|629513|629514|629515|629516|629517|629518|629519|629520|650918|697372|708086|719684|719686|733243|747390|747392|763027|763029|781229|781230|794101|795186|795187|819134|825811|825812|825813|825814|825815|825816|825817|825818|825819|825820|825821|825822|825823|825824|825825|825826|825827|884057|884058|884059|884060|884061|884062|884063|884064|884065|884066|884067|884068|884069|884070|884071|884072|884073|884074|884075|884076|884077|884078|884079|884080|884081|884082|884083|884084|884085|887306|905869|922598|922599|922600|922601|922602|922603|931167|931168|931169|931170|931171|931172|940701|942633|942634|942635|942636|942637|952963|961836", + "text": "Biotin-responsive basal ganglia disease" + }, + { + "baseId": "19607|19608|19609|19609|19610|19611|19611|19612|19614|19616|19616|19617|19618|19622|19623|39507|44418|44419|44420|102100|106472|191287|194521|205180|205603|205604|213194|214079|255821|255822|255825|255827|255828|268119|268974|269498|269500|325829|325830|325832|325833|325835|325836|325838|325839|325841|325842|325843|335449|335453|335455|335456|335458|335473|335477|341896|341899|341900|341906|341908|341911|341912|341913|341917|341921|341924|343423|343426|343434|343437|343438|343445|343446|343447|343450|358376|358376|487920|547749|547753|547754|547755|547756|547759|547762|547764|547774|547776|547779|547780|547784|547786|547788|547790|547792|547798|547802|547812|547812|548013|548015|548017|548023|548025|548027|548029|548034|548042|548043|548055|548059|548062|548065|548486|548489|548494|548500|548504|548506|548509|548514|621543|622912|644766|684610|684611|688623|688626|693901|693903|693904|770965|785309|791626|844003|844007|844010|844016|844021|844022|875519|875520|875521|875522|875523|875524|875525|875526|875527|875528|875529|875530|876680|876681|906267|906268|957811|972229|972230|972231|972232|972233|972234|972235|972236|972237|972238|979804", + "text": "Bardet-Biedl syndrome 2" + }, + { + "baseId": "19609|19615|19620|19622|20348|20357|20358", + "text": "Bardet-biedl syndrome 2/6, digenic" + }, + { + "baseId": "19609|19611|19616|19616|19617|205603|205604|358376|547812|802209|802210", + "text": "Retinitis pigmentosa 74" + }, + { + "baseId": "19612|19621", + "text": "Bardet-biedl syndrome 2/4, digenic" + }, + { + "baseId": "19613|19616|19619", + "text": "Bardet-biedl syndrome 1/2, digenic" + }, + { + "baseId": "19617", + "text": "BBS2-Related Disorders" + }, + { + "baseId": "19624|19625|19626|19627|19628|19629|142872|142873|142874|142875|142876|142877|142878|142879|142880|142884|142885|142886|142887|142888|170939|170940|170941|170942|170943|170944|170945|170946|170947|170948|170949|170950|170951|170952|192544|194517|210351|210352|210361|210362|210363|210365|210367|210369|210371|210372|210375|210376|210377|210378|210379|210380|210381|210383|210384|210385|210386|210387|210388|243581|243582|243583|243584|259069|259070|259072|259073|259075|259077|259078|259080|259081|335626|335629|335633|335635|335637|335641|335645|335650|335651|335652|335654|335655|335656|335664|335668|335672|335673|335677|335680|335682|345370|345372|345379|345383|345388|345390|345391|345393|345395|345405|345407|345409|345411|350049|350051|350053|350055|350056|350059|350060|350063|350065|351082|351083|351086|351087|351090|351091|351094|351095|351098|377045|377047|378049|378259|378262|379702|379703|379704|403642|403652|403663|403666|404185|404187|404191|404192|410760|410762|469391|469395|469401|470440|470441|470933|471423|485795|510841|510842|533567|533601|533604|533645|534129|571139|571270|571273|572923|573563|573566|575112|575113|615174|648744|648745|648746|648747|648748|648749|648750|648751|648752|648753|653653|684884|684887|689203|728701|773145|821332|848458|848459|848460|848461|848462|848463|886188|886189|886190|886191|886192|886193|886194|886195|886196|886197|886198|886199|886200|886201|886202|886203|886204|886205|886206|886207|886208|886209|886210|886211|886212|886213|886214|886215|886216|886217|886218|886219|886220|886221|929214|929215|929216|938997|938998|951119|958855|975871", + "text": "Arterial tortuosity syndrome" + }, + { + "baseId": "19629|27541|27542|27546|27550|27551|27552|27553|27554|27558|27563|27564|27564|27565|27565|29170|29174|31468|31469|31470|31470|31476|31478|31479|31482|31484|31484|31488|31490|31490|31491|31491|31496|31500|31500|31501|31505|32241|32244|32247|32264|32267|33315|38552|38870|38871|38873|39089|39262|44561|44582|44628|44698|44705|44705|44706|44707|44708|44708|44718|44724|44724|44725|44725|44726|44726|44728|44728|44729|44729|44731|44731|44735|44735|44736|44736|44738|44738|44739|44740|44742|44745|44746|44746|44747|44748|44748|44749|44750|44750|44751|44756|44757|44757|44761|44761|44767|44767|44768|44768|44771|44772|44772|44773|44775|44775|44777|44777|44778|44779|44779|44780|44782|44785|44788|44788|44790|44790|44792|44792|44793|44794|44794|44796|44796|44797|44797|45278|45279|45281|45282|45283|45284|45286|45287|45518|45520|45521|45522|45523|45524|45526|45528|45529|45530|48266|48266|50227|51454|51454|51455|51457|51457|51459|51459|51460|51461|51461|51463|51464|51465|51466|51466|51467|51468|51468|51469|51469|51470|51477|51477|51480|51481|51489|51489|51490|51490|51491|51491|51494|51495|51495|51497|51498|51500|51500|51504|51504|51505|51505|51507|51507|51508|51508|51511|51512|51512|51513|51515|51515|51521|51524|51525|51525|51526|51526|51527|51528|51528|51531|51533|51534|51535|51535|51536|51537|51537|51538|51538|51539|51540|51540|51543|51543|51546|51551|51551|51552|51553|51554|51562|51562|51564|51564|51569|51571|51572|51577|51578|51578|51580|51580|51582|51582|51583|51583|51587|51588|51591|51592|51595|51595|51599|51603|51603|51604|51604|51605|51607|51607|51609|51609|51613|51614|51614|52858|53384|53385|53386|53818|53819|53823|53825|53826|53828|54260|54261|54262|54264|76366|82889|85240|107174|107194|107199|133407|136441|138646|138649|138650|138658|138660|138662|138668|138671|138676|138678|138679|138681|138683|138686|138688|138695|138696|138698|138984|139981|140544|140545|140546|140547|140548|140550|140551|140552|140553|140554|140556|140557|140559|140560|140595|141002|141002|141003|141004|141005|141005|141006|141007|141007|141008|141009|141009|141012|141013|141013|141014|141014|141016|141016|141017|141017|141338|141339|141340|142030|142031|142032|142033|142035|142036|142037|142038|142040|142041|142042|142044|142045|142046|142047|142048|142049|142050|142051|142052|142053|142054|142055|142056|142057|142058|142059|142060|142061|142062|142063|142065|142066|142067|142068|142069|142070|142071|142072|142073|142074|142075|142076|142873|142874|142876|142878|142879|142884|142885|142886|142915|142916|142919|142920|142923|143119|165530|165542|165543|165544|165544|165545|165548|165549|165567|165568|165569|165571|165572|165578|165579|165580|165588|165589|165590|171072|171073|171074|171075|171082|171083|171117|171171|171172|171173|171173|171175|171176|171176|171177|171177|171178|171178|171179|171179|171180|171180|171181|171181|171182|171182|171184|171185|173771|173772|173775|173776|173913|173915|173916|174577|174578|174853|174855|174856|175327|175979|175979|175980|175982|175984|175987|175988|175989|175990|175990|175991|175991|176122|176123|176128|176130|176130|178492|178494|178497|178498|178499|178506|178514|178541|178594|178595|178596|178597|178599|178617|178693|178694|178699|178700|178708|178710|178711|178712|178713|178757|178759|188103|189962|190107|190915|192066|192544|193008|193009|193009|193180|193301|193303|193320|193589|194075|194126|194183|194183|194229|194230|194638|194769|194769|195071|195506|195694|196238|196759|196760|196761|196762|196763|196764|196767|196769|196770|196771|196772|196775|196776|196782|196783|196786|196789|196790|196791|196792|196794|196795|196799|196800|196801|196804|196805|196806|196807|196808|196809|196812|196815|196816|196817|196819|196820|197388|197393|197395|197398|197402|197570|197571|197573|197576|197579|197580|197580|197581|197581|197583|197585|197585|197587|197588|197589|197589|197590|197591|197592|197596|197600|197601|197602|197603|197604|197605|197605|197613|197615|197615|197617|197618|197619|197619|197620|197622|197624|197624|197625|197626|197631|197631|197632|197634|197637|197641|197643|197643|197645|197646|197647|197649|197650|197650|197655|197655|197657|197657|197658|197658|197660|197660|197661|197661|197665|197665|197669|197672|197674|197675|197676|197676|197677|197681|197685|197688|197688|197690|197690|197695|197698|197698|197705|197705|197708|197710|197710|197715|197717|197717|197721|197721|197723|197723|197726|197731|197732|197734|197734|197735|197736|197739|197740|197741|197742|197743|197743|197745|197746|197746|197748|197749|197750|197753|197755|197755|197756|197756|197757|197762|197763|197764|197765|197765|197769|197771|197773|197773|197774|197776|197777|197780|197786|197788|197788|197789|197793|197795|197798|197799|197802|197802|197803|197803|197806|197808|197808|197811|197811|197815|197817|197817|197820|197820|197822|197823|197824|197829|197829|197831|197832|197833|197834|197835|197836|197837|197838|197841|197842|197843|197845|197846|197847|197848|197849|197850|197851|197852|197853|197854|197856|197858|197859|197860|197861|197862|197865|197867|197868|197869|197870|197871|197875|197876|197877|197878|197879|197880|197881|197882|197883|197884|197886|197887|197888|197889|197890|197891|197892|197893|197894|197895|197896|197899|197900|197902|197905|197906|197907|197908|197909|197910|197912|197913|197914|197917|197919|197922|197923|197925|197926|197927|198038|199890|209425|209426|209431|209432|209439|209593|209594|209595|209597|209598|209603|209605|209607|209610|209612|209615|209617|209619|209620|209628|209630|209631|209633|209850|210151|210154|210155|210156|210157|210158|210162|210164|210166|210169|210180|210182|210184|210185|210198|210245|210246|210248|210256|210257|210258|210259|210260|210262|210264|210266|210267|210268|210274|210277|210278|210279|210281|210283|210285|210288|210291|210293|210295|210298|210352|210362|210369|210388|215235|215506|215508|215509|221807|221808|221810|221811|221815|222429|222447|222449|224189|224246|224256|224257|224298|224302|224304|224305|224364|224367|224369|224370|224372|224373|224373|224391|224392|224406|224407|224481|224485|224489|224492|224495|224497|224500|224500|224504|224513|224567|224568|224569|227191|227370|227370|227463|227843|228910|228985|228987|228993|228994|228996|228999|229002|229233|230585|230589|230590|230609|230610|231509|231922|238578|239082|239084|239093|239130|239131|239132|239133|239135|239136|239137|240533|240539|240540|240543|240547|240553|240554|240555|240559|240564|240566|240575|240576|240578|240579|240585|240586|240589|240717|240718|240891|241889|241893|242058|242058|242059|242059|242061|242062|242065|242065|242066|242066|242067|242067|242069|242071|242071|242072|242072|242073|242074|242075|242076|242076|242077|242078|242080|242080|242081|242081|242082|242082|242083|242084|242102|242104|242105|242106|242107|242193|242194|242195|242197|242202|242203|246930|246932|246933|246934|247104|247111|250440|250443|250866|250873|250874|250881|250883|250885|251088|253659|255255|255255|255261|255265|255266|255268|255268|255335|255336|255472|255475|255476|255477|257363|258189|258194|258195|258196|258198|258199|258202|258208|258209|258212|258214|258216|258219|258222|258225|258226|258228|258229|258230|258236|258248|258250|258256|258264|258274|258281|258283|258284|258286|258289|258293|258294|258295|258296|258299|258301|258302|258303|258305|258306|258411|258561|258567|258578|258600|258605|258606|258613|258614|258615|258616|258617|258662|258664|258668|258670|258672|258674|258675|258815|258816|258816|258817|258818|258818|258821|258823|258824|258824|258825|258827|258827|258829|258829|258830|258833|258836|258836|258837|258842|258842|258845|258847|258849|258851|258855|258855|258869|258871|258874|258883|258883|258885|258885|258886|258886|258887|258887|258890|258890|258891|258894|258899|258899|258905|258906|258907|258907|258909|258909|258910|258917|258919|258919|258924|258929|258934|258935|258936|258939|258940|258941|258942|258945|258946|258947|258950|258956|258958|258959|258961|258963|258964|258965|258968|258969|258971|258972|258973|258975|258976|258977|258978|258979|258980|258982|258984|258985|258986|258991|258992|258993|258994|258995|258996|258997|258998|258999|259003|259209|259210|259211|259758|260073|260073|260501|260502|260503|260504|260505|262312|263525|264731|264737|265393|265846|265846|265919|265919|265950|265950|267791|268030|268313|268313|268446|269190|269796|271889|271960|273504|273957|274177|283481|283495|283497|283504|283511|284172|284177|284179|284186|284190|284191|286443|286460|286479|286480|286488|286490|288328|288330|288332|288336|288341|288349|288360|288366|288371|288372|288379|288396|288402|289118|289119|289120|289131|289147|289904|289914|289915|289923|289925|289927|289934|289937|289942|289944|290671|290672|290673|290674|290680|290683|290684|290686|290687|290689|290690|290691|290695|290697|292051|292052|292068|292071|292074|292092|292097|292099|292114|292143|292171|292201|292202|292208|292237|292238|292240|292270|292278|292287|293820|293826|293827|293829|293830|293831|293832|293833|293834|293835|293837|293839|293840|293841|293842|293843|293844|293845|293846|293849|293850|293876|294356|294357|294358|294359|294361|294362|294363|294364|294365|294366|294367|294368|294372|294373|294376|294377|294379|309059|309061|309069|309083|309089|309094|309095|309097|309098|309101|309105|309112|309113|309123|309124|309129|309130|309138|309140|309141|309142|309146|309147|309149|311576|311581|311582|311586|311592|311593|313814|313815|313818|313819|313820|313821|313823|313824|313825|313832|313838|313841|313842|313845|313847|313848|313852|313855|313865|313866|313875|313882|313883|317166|317169|317170|319644|319648|319649|319653|319654|319676|319678|319685|319689|319695|319697|319702|319710|319711|319718|319719|319722|319723|319729|319736|319737|319742|319743|319754|319762|320207|320215|320222|320223|320224|320225|320231|320236|320237|320244|320245|320247|320248|320250|320251|320252|320253|320255|320256|320259|320260|320272|320273|320274|320275|320279|320280|320292|322730|322731|322733|322734|322736|322737|322739|322740|322742|322743|322749|322752|322760|322762|322767|322768|322769|322769|322772|322773|322781|322782|322787|322788|322792|322793|322793|322794|322796|322796|322805|322805|322810|322811|323132|323138|323139|323144|323145|323149|323151|323153|323154|323155|323156|323160|323164|323166|323167|323169|323170|323178|323180|323189|323195|323196|323197|323200|323201|323202|323203|323205|323206|323208|323212|323215|323216|323217|323776|324398|324399|324400|324401|324406|324408|324412|324414|324420|324421|324423|324429|324430|324467|324475|324480|324486|324487|332233|332236|332237|332238|332243|332247|332248|332249|332251|332252|332254|332259|332260|332261|332263|332264|332265|332267|332267|332268|332271|332272|332272|332278|332279|332280|332283|332768|332772|332776|332779|332784|332787|332797|332799|332802|332807|332808|332821|332822|332825|332827|332836|332842|332848|332849|332854|332871|332873|332874|332876|333922|333925|333927|333941|333944|333948|333949|333951|333954|333956|333957|333964|333966|333975|333978|333982|333984|333987|333992|333993|333996|333999|334002|334004|339214|339217|339221|339222|339223|339224|339232|339237|339240|339241|339243|339245|339250|339263|339264|339265|339266|339275|339276|339277|339280|339280|339281|339285|339285|339286|339286|339287|339295|339295|339296|339297|339297|339304|339727|339728|339731|339738|339739|339741|339752|339758|339760|339764|339766|339768|339769|339771|339777|339779|339781|339786|340690|340691|340692|340694|340695|340696|340697|340703|340704|340706|340709|340712|340714|340715|340716|340718|340719|340720|340722|340723|340724|340726|340728|340728|340729|340732|340732|340733|340734|340736|340738|340740|340743|340743|340744|340744|340745|340746|340748|340756|340765|340767|341125|341126|341127|341131|341133|341137|341142|341143|341150|341152|341154|341157|341162|341163|341172|341176|341177|341179|341181|341184|341187|341188|341189|341196|341208|341212|341214|341216|342111|342116|342118|342121|342129|342130|342137|342138|342139|342140|342141|342144|342155|342160|342164|342168|342174|342175|353158|353326|353337|353612|359451|360077|360080|360164|360166|360178|360178|360192|360203|360207|360225|360230|360231|360976|361860|361878|361879|361880|362741|364644|365917|365940|365943|365954|366187|366192|366194|366201|366214|366716|366720|366727|366729|366818|366820|366895|367065|367080|367082|367319|368365|370197|370217|370238|370278|370569|370570|370746|370749|370978|371102|371113|371447|371451|371454|371598|371895|373447|373447|373468|373479|373487|373487|373493|373504|373504|373539|373552|373552|373562|373568|373569|373571|373571|373585|373591|373592|373595|373647|373648|373650|373653|373659|373943|373948|373961|373966|373967|373971|373983|373986|373987|373996|374133|374149|374150|374162|374169|374169|374188|374202|374217|374217|374278|374342|374535|374538|374541|374541|374555|374555|374559|374574|374574|374580|374585|374587|374597|374601|374601|374614|374614|374616|374634|374637|374638|374650|374652|374658|374665|374668|374679|374682|374686|375018|375020|375037|375050|375052|375055|376479|376479|376481|376492|376492|376507|376507|376511|376580|376582|376587|376592|376597|377039|377043|377068|377074|377077|377079|377081|377083|389564|390131|391046|392210|392245|392250|392260|392261|392354|392359|392399|392401|392403|392410|392422|392464|393320|393325|393403|393405|393447|393451|393452|393489|393637|393645|393646|393648|393815|393820|393821|393824|396770|396800|396819|396823|396847|396849|396996|397066|397115|397142|397165|397312|397319|397325|397327|397386|397392|397511|397513|397515|397529|397615|397618|397620|397627|398092|399950|400127|400129|400138|400144|400145|400165|400165|400172|400177|400182|400192|400196|400206|400206|400214|400216|400229|400229|400235|400246|400246|400259|400292|400292|400302|400306|400313|400313|400318|400320|400321|400325|400333|400348|400366|400368|400371|400390|400390|400391|400397|400410|400416|400423|400427|400427|400454|400459|400463|400464|400467|400536|400544|400546|400547|400567|400569|400571|400576|400620|400626|400627|400630|400632|400646|400648|400656|400656|400658|400658|400664|400664|400672|400683|400686|400687|400687|400688|400688|400691|400691|400692|400692|400694|400696|400696|400698|400702|400709|400715|400717|400725|400731|400732|400736|400739|400740|400747|400807|400932|400932|400934|400934|400950|400960|400961|400962|400968|400970|400982|400984|401006|401006|401009|401013|401015|401033|401033|401046|401103|401104|401108|401113|401116|401120|401128|401131|401134|401147|401376|401381|401389|405502|405507|405508|409254|409256|409256|409260|409261|409279|409287|409288|409292|409292|409297|409298|409298|409302|409322|409327|409449|409453|409458|409460|413402|414857|414910|414931|415209|415425|415427|415428|415435|415444|415469|421349|421418|421769|422024|422026|422039|422072|425548|425839|426105|426109|426115|426148|426149|433139|433145|433145|433147|433148|433148|433424|433426|433427|433556|433556|433557|433557|433558|433560|433720|437979|437980|437982|437982|437986|437987|443099|443100|443101|444435|445341|445342|445343|445345|445345|445346|445347|445356|445358|445362|445369|445370|445375|445376|445376|445379|445379|445407|445410|445497|445502|450099|450106|450137|450263|450286|450294|450295|450302|450306|450310|450325|450331|450411|450417|450419|450420|450425|450429|451468|451717|451718|451726|451772|451779|451794|451801|451928|451933|452036|452038|452039|452046|452048|452050|452304|452306|452313|452315|452380|452381|452383|452393|452515|452517|452518|452522|452525|458928|458954|458978|459033|459039|459322|459336|459337|459355|459368|459519|459523|459525|459531|459533|459785|459790|459987|459992|459996|459997|460005|460420|460423|460425|460434|461149|463946|463948|464306|464306|464309|464311|464313|464320|464320|464324|464334|464335|464338|464338|464340|464340|464342|464346|464346|464348|464352|464353|464356|464359|464375|464377|464377|464379|464381|464383|464384|464384|464388|464388|464390|464394|464397|464452|464462|464468|464470|464475|464477|464521|464528|464532|464535|464780|464782|464790|464836|464836|464837|464853|464856|464856|464858|464858|464861|464872|464876|464879|464882|464883|464887|464892|464901|464904|464906|464906|464909|464910|464912|464912|464918|464927|464934|464935|464936|464936|464937|464940|464940|464941|464945|464947|464955|464960|464961|464962|464967|464971|464971|464974|464978|464984|464986|465066|465067|465084|465086|465086|465087|465090|465092|465095|465096|465097|465099|465101|465101|465105|465106|465107|465107|465108|465110|465112|465115|465116|465116|465117|465119|465121|465121|465123|465124|465124|465126|465127|465128|465136|465139|465146|465147|465148|465148|465149|465150|465152|465154|465158|465161|465163|465166|465170|465176|465177|465184|465185|465187|465189|465191|465191|465194|465198|465201|465206|465206|465210|465210|465219|465220|465220|465226|465235|465244|465244|465248|465251|465259|465260|465346|465348|465361|465678|465679|465696|465738|465746|465751|465777|465783|465798|465804|465948|465956|465963|465968|465970|465987|465989|465993|469401|480682|480716|482071|482072|485756|485756|485757|485761|485762|485763|486121|486136|486911|486917|486920|486928|486947|486993|487268|487271|487391|487543|487544|487548|487575|487581|487591|487626|487628|487629|487629|487639|487639|487642|487707|487719|487723|487744|487746|487775|487784|487788|487788|487809|487811|487830|487844|487844|487847|487849|487849|487858|487858|487871|487876|487886|487888|487900|488854|489677|493078|493078|493436|495443|495600|496260|498297|499394|499634|499655|499796|499797|499825|499834|499973|500256|500623|500629|500632|500700|502514|502942|503073|503233|503292|503845|503848|504789|504789|504816|504819|504824|504826|504832|504832|504852|504922|505015|505022|505038|505040|505118|505124|505126|505261|505273|505280|505299|505302|505342|505387|505389|505401|505410|505411|505416|505586|505588|505592|505596|505621|505643|505643|505654|505690|505697|505700|505700|505716|505724|505779|506068|506077|506079|506082|506094|506099|506101|508706|508707|508708|508709|508710|508711|508712|508713|508714|508715|508716|508717|508718|508719|508720|508721|508721|508722|508723|508723|508724|508725|508726|509436|509438|509442|509443|509446|509447|509453|509455|509456|509458|509460|509507|509536|510045|510052|510114|510131|510135|510239|510528|510530|510532|510539|510540|510543|510544|510546|510546|510549|510553|510554|510555|510555|510567|510567|510573|510574|510575|510577|510578|510578|510585|510591|510597|510601|510601|510605|510609|510612|510615|510622|510623|510628|510630|510631|510632|510633|510635|510641|510641|510645|510648|510649|510657|510660|510690|510691|510692|510693|510696|510698|510699|510700|510703|510704|510709|510710|510712|510713|510714|510717|510719|510720|510721|510722|510723|510725|510726|510730|510733|510734|510735|510737|511125|511128|511131|511131|512144|512949|514051|517402|517428|517496|517504|517516|517522|517559|517567|517715|517716|517731|518726|518787|518835|519063|519068|519080|519083|519233|519234|519237|519240|519242|519249|524701|524848|524849|524857|525086|525088|525228|525388|525394|525523|525592|525595|528563|528881|528881|528891|528892|528893|528894|528894|528897|528899|528900|528902|528907|528907|528908|528909|528910|528912|528915|528916|528918|528919|528921|528927|528933|528935|528943|528944|528948|528956|528957|528962|528963|528964|528964|528967|528972|528976|528978|528981|528983|528991|528991|528993|528995|528999|529000|529011|529015|529016|529018|529020|529022|529026|529026|529090|529265|529265|529273|529275|529280|529291|529291|529294|529295|529300|529307|529312|529313|529313|529328|529331|529337|529338|529345|529346|529348|529348|529359|529363|529364|529367|529368|529407|529408|529412|529419|529422|529425|529427|529427|529429|529433|529435|529437|529438|529441|529446|529452|529454|529456|529459|529469|529474|529477|529479|529480|529481|529483|529485|529488|529489|529490|529492|529493|529501|529504|529507|529514|529516|529520|529521|529522|529534|529538|529538|529605|530055|530059|530060|530064|530068|536886|536889|537241|537374|537684|537685|537686|537687|537688|537689|537701|537704|537750|537751|537864|537865|537866|537867|538036|538043|538046|538053|538054|538055|538060|538061|538061|538072|538074|538074|538079|538082|538088|538092|538094|539483|539489|539489|539499|539506|539507|539508|539510|539531|539537|539537|539538|539541|539555|539570|539573|539580|539585|539601|539602|539611|539635|539654|539663|539670|539671|539679|539694|539697|539708|539711|539715|539723|539727|539728|539741|539752|539755|539763|539767|539767|539776|539782|539783|539789|539802|539802|539804|539809|539820|539829|539836|539853|539865|539868|539873|539880|539882|539884|539887|539889|539891|539896|539896|539904|539905|539908|539914|539914|539915|539919|539920|539928|539945|551267|552428|552446|552461|552464|552467|557782|557839|558876|559011|559423|561349|561354|561355|562610|562615|562656|562660|562661|562666|563089|563462|563472|563477|563478|563483|563484|564382|566875|566878|566880|567105|567107|567110|567115|567117|567121|567124|567133|567134|567137|567138|567140|567146|567147|567149|567151|567153|567157|567159|567163|567165|567172|567176|567176|567178|567188|567189|567191|567191|567192|567237|567682|567693|568573|568592|568861|568873|568887|568893|568899|568905|568905|568912|568914|568915|568918|568920|568920|568926|568933|568937|568942|568943|568947|568953|568962|568964|568967|568973|568978|568987|568988|568994|569064|569073|569078|569081|569088|569101|569206|569208|569213|569215|569385|569387|569428|569429|569434|569436|569438|569442|569443|569449|569459|569460|569469|569471|569473|569476|569481|569482|569485|569486|569490|569491|569493|569496|569497|569499|569509|569510|569515|569516|569518|569519|569521|569523|569525|569531|569532|569561|569567|569586|569587|570004|570013|573113|573120|573121|573321|573321|573323|573324|573328|573329|573336|573340|573341|573343|573345|573349|573354|573358|573363|573365|573368|573369|573370|573372|573375|573381|573387|573391|573394|573395|573402|573494|573719|573722|573724|573730|584154|609461|609509|609737|609926|609937|609942|612873|613012|613014|613462|613464|613475|613476|613477|613478|614399|614412|614701|614702|614874|614875|614876|614877|614878|614879|614883|614884|614885|614886|614887|614888|614889|614890|614894|614895|614896|614953|614954|614955|614956|614957|614958|614959|614960|614961|614962|614963|614964|614965|614966|614967|614968|614969|614970|614971|614972|614973|614974|614975|614976|614977|614978|614979|614980|614981|614982|615094|615098|615099|615099|615100|615101|615102|615103|615104|615105|615106|615107|615108|615109|615110|615111|615112|615112|615113|615114|615115|615116|615117|615118|615118|615119|615120|615121|615122|615123|615124|615131|615132|615133|615134|615135|615136|615137|615160|615171|615172|615173|615174|615175|615176|615187|615188|615205|615211|615224|615225|615226|615227|615229|615230|616205|616206|616207|616208|616209|616210|616211|616212|616213|616214|616215|616216|616217|616218|616219|616220|616221|616222|616223|616224|616225|616226|616825|616826|616827|616828|616829|616830|616831|616832|616833|616834|616835|617549|617550|617612|617613|617614|617615|617616|617617|618243|618244|618245|618246|618247|618247|618248|618249|618250|618251|618252|618253|618254|618255|618256|618257|618258|618259|618260|618261|618262|618263|618264|618265|618266|618267|618267|618268|618269|618270|618271|618271|618272|618273|618274|618275|618276|618277|618281|618282|618283|618284|618285|618286|618287|618288|618289|618290|618291|618292|618293|618294|618295|618296|618297|618298|618299|618300|618301|618302|618303|618304|618305|618306|618307|618308|618309|618310|618311|618312|618313|618314|618315|618316|618317|618318|618319|618320|618321|618322|618323|618324|618325|618326|618327|618328|618329|618330|618331|618332|618333|618334|618335|618336|618337|618338|618339|618340|618341|618342|618343|618344|619083|619085|619117|619118|619123|619125|619131|619132|619182|619197|619265|619345|619407|619446|619447|619464|619466|619506|619509|619516|619519|619533|619535|619539|619555|619580|619580|619588|619594|619595|619595|619597|619600|619602|621105|621106|621322|621487|621489|621494|621494|621499|621501|621515|621516|621522|621840|623064|624397|624413|624510|624521|624539|626021|628138|629181|629188|629195|629207|630594|630595|631136|631137|631138|631139|631140|631141|631142|631143|631144|631145|631146|638067|638632|638633|638634|638635|638636|638637|638638|638639|638640|643295|643295|643296|643297|643298|643298|643299|643300|643301|643302|643303|643304|643305|643305|643306|643307|643308|643309|643310|643311|643312|643313|643314|643315|643316|643317|643318|643319|643319|643320|643321|643322|643323|643324|643325|643326|643326|643327|643328|643329|643330|643331|643332|643333|643334|643335|643335|643336|643337|643338|643339|643340|643341|643342|643343|643344|643345|643346|643347|643348|643349|643350|643351|643352|643353|643354|643355|643356|643357|643358|643359|643360|643361|643362|643363|643364|643365|643366|643367|643368|643369|643370|643371|643372|643372|643373|643373|643374|643375|643376|643377|643378|643379|643380|643381|643382|643383|643384|643385|643386|643387|643388|643389|643390|643391|643392|643393|643394|643395|643396|643397|643398|643399|643400|643401|643402|643403|643404|643405|643406|643407|643408|643409|643409|643410|643411|643412|643413|643414|643415|643416|643417|643418|643495|643496|643497|643498|643499|643500|643501|643502|643503|643504|643505|643506|643507|643508|643509|643510|643511|643512|643939|643940|643942|643944|643945|643946|643947|643949|643950|643953|650889|651876|652390|652392|652394|652418|652419|652523|652527|652531|652568|652668|652674|652691|652703|652748|652750|652753|653005|653008|653012|653038|653045|653049|653057|655012|655944|656291|656292|656298|656334|658626|666976|667324|668562|672164|672370|672441|679665|683459|683533|684082|684578|684579|686088|686091|686095|686385|686386|686388|687580|687676|688441|688441|688442|688442|688443|688446|688446|688447|688447|688448|688448|688449|688450|688453|688475|688477|688529|688530|688531|688533|688534|688535|689692|689693|689727|689739|689740|690107|690114|690129|690130|690989|690990|691368|691369|693689|693691|693691|693692|693692|693693|693693|693729|693730|693731|693798|695648|695648|697210|697211|703237|703237|703297|703298|703511|714757|726213|734015|739656|739656|739658|739658|739660|739660|739662|739662|739663|739983|744419|751885|754494|754498|754500|754638|754932|754938|754939|754942|759929|762722|762731|763810|768050|770200|770208|770294|770295|770296|770568|770569|770570|770571|770572|770574|774685|774752|776012|776376|778911|781095|784948|785147|785148|785151|790872|791470|791473|795094|796345|797144|797151|797155|797158|797159|797248|797251|797252|797255|797259|799270|799320|799801|799804|799807|799811|799833|820185|820708|820709|820710|820711|820712|820713|820714|820715|820716|820717|820718|820719|820720|820727|820728|820729|820730|825468|825471|825472|825481|825487|825488|827075|827076|827440|827856|827857|827858|827859|827860|827861|827862|827863|827864|827865|827866|827867|827868|827869|835904|836496|836497|836498|836499|836500|836501|836502|836503|836504|836505|836506|842430|842431|842432|842433|842434|842435|842436|842437|842438|842439|842440|842441|842442|842443|842444|842445|842446|842447|842447|842448|842449|842450|842451|842452|842453|842454|842455|842456|842456|842457|842458|842459|842460|842461|842462|842463|842464|842465|842465|842466|842467|842468|842469|842470|842470|842471|842472|842473|842474|842475|842476|842477|842478|842479|842480|842481|842482|842483|842484|842485|842486|842487|842488|842489|842490|842491|842492|842493|842494|842495|842496|842497|842498|842499|842500|842500|842501|842502|842503|842504|842505|842506|842507|842507|842508|842509|842510|842511|842512|842513|842514|842515|842516|842517|842518|842519|842520|842521|842522|842523|842524|842525|842526|842527|842528|842529|842530|842530|842531|842532|842533|842534|842535|842536|842537|842537|842538|842539|842540|842541|842542|842543|842544|842545|842618|842619|842620|842621|842622|842623|842624|842625|842626|843162|843167|843169|843173|843174|843188|843190|843195|850889|851619|851621|851623|851625|851627|851762|852043|852045|852047|852049|852051|852053|852055|852057|852059|852061|852376|852592|852596|852598|852599|852767|852768|852769|852771|852775|852777|858412|860181|860210|861646|873702|873703|873704|873705|873706|873707|873708|873709|873710|873711|873712|873713|873714|873715|873716|873717|873718|873719|873720|873721|873722|873723|873724|873725|873726|873727|873727|873728|873729|873730|873731|873732|873733|873734|873735|873736|873737|873738|873739|873740|873741|873742|874769|874793|874794|876533|876534|876535|876536|876537|876629|883041|883042|887221|902642|903720|903721|903722|903848|903849|903850|903852|903853|903854|903855|903856|903857|903858|903859|903860|903861|903862|903863|903864|903865|903867|903868|903869|903888|903889|903890|903891|903892|903893|903894|903895|903896|903897|903898|903899|903900|903901|903902|903918|903979|903980|903981|903982|903983|903984|903985|903986|903987|903988|903989|903990|903991|903992|903993|903994|903995|903996|903997|903998|903999|904000|904001|904002|904004|904005|904006|904007|904008|904009|904010|904011|904012|904027|904039|904040|904042|904043|904044|904045|904046|904047|904059|904060|904061|904062|904063|907518|907519|907520|907521|907522|907523|907524|907525|907526|907527|907528|907529|907530|907531|907532|907533|907534|907535|907536|907537|907538|907539|907540|907541|907542|907543|907544|907545|907546|907547|907548|907549|907550|907551|907552|907553|907554|907555|907556|907557|907558|907559|907560|907561|907562|907563|907564|907565|907566|907567|907568|907569|907570|907571|907572|907573|907574|907575|907576|907577|907578|907579|907580|907581|907582|907583|907584|907585|907586|907587|907588|907589|907590|907591|907592|907593|907594|907595|907596|907597|907598|907599|907600|907601|907602|907603|907604|907605|907606|907607|907608|907609|907610|907611|907612|907613|907614|907615|907616|907617|907618|907619|907620|907621|907622|907623|907624|907625|907626|907627|907628|907629|907630|907631|907632|907633|907634|907635|907636|907637|907638|907639|907640|907641|907642|907643|907644|907645|907646|907647|907648|907649|907650|907651|907652|907653|907654|907655|907656|907657|907658|907659|907660|907661|907662|907663|907664|907665|907666|907667|907668|907669|907670|907671|907672|907673|907674|907675|907676|907677|907678|907679|907680|907681|907682|907683|907684|907685|907686|907687|907688|907689|907690|907691|907692|907693|907694|907695|907696|907697|907698|907699|907700|907701|907702|907703|907704|907705|907706|907707|907708|907709|907710|907711|907712|907713|907714|907715|907716|907717|907718|907719|907720|907721|907722|907723|907724|907725|907726|907727|907728|907729|907730|907731|907732|907733|907734|907735|907736|907737|907738|907739|907740|907741|907742|907743|907744|907745|907746|907747|907748|907749|907750|907751|907752|907753|907754|907755|907756|907757|907758|907759|907760|907761|909183|909184|909185|909186|909187|909188|909189|909190|909191|909192|909193|909194|909195|909196|909197|909198|909199|909200|909201|909202|909203|909204|909205|909206|909207|909208|909209|909210|909211|909212|909213|909214|909215|909216|909217|909218|909219|909220|909221|909222|909223|909224|909225|909226|909227|909228|909229|909230|909231|909232|909233|909234|909235|909236|909237|909238|909239|909240|909241|909242|909243|909244|909245|909246|909247|909248|909249|909250|909251|909252|909253|909254|909255|909256|909257|909258|909259|909260|909261|909262|909263|909264|909265|909266|909267|909268|909269|909270|909271|909272|909273|909274|909275|909276|909277|909278|909279|909280|909281|909282|909283|909284|909285|909286|909287|909288|909289|909290|909291|909292|909293|911092|911093|911094|911095|911096|911097|911098|911099|911100|911101|911102|911103|911104|911105|911106|911107|911108|911109|911110|911111|911112|911113|911114|911115|911116|911117|911118|911119|911120|911121|911122|911123|911124|911125|911126|911127|911128|911129|911130|911131|911132|911133|911134|911135|911136|911137|911138|911139|911140|911141|911142|911143|911144|911145|911146|911239|911240|911241|911242|911243|911244|911245|911246|911247|911248|911249|911250|911251|911252|911253|911254|911255|911256|911257|911258|911259|911260|911261|911262|911263|911264|911265|911266|911267|911268|911269|911270|911271|911272|911273|911274|911275|911276|911277|911278|911279|911280|911281|911282|912630|912631|912632|912633|912634|912635|912636|912637|912638|912639|912640|912641|912642|912643|912644|912645|912646|912647|912648|912649|912650|912651|912652|912653|912654|912655|912656|912657|912658|912659|912660|912661|912662|912663|912664|912665|912666|912667|912668|912669|912670|912671|912672|912673|912674|912674|912675|912676|912677|912678|912679|912680|912681|912682|912683|912684|912685|912686|912687|912688|912689|912690|912691|912692|912693|912694|912695|912696|912697|912698|912699|912700|912701|912702|912703|912704|912705|912706|912707|912708|912709|912710|912711|912712|912713|912714|912715|912716|912717|912718|912719|912720|912721|912722|912723|912724|912725|912726|912727|912728|912729|912730|912731|912732|912733|912734|912735|912736|912737|912738|912739|912740|912741|912742|912743|912744|912745|912746|912747|912748|912749|912750|912751|912752|912753|912754|912754|912755|912756|912757|912758|912759|912760|912761|912762|912763|912764|912765|912766|912767|912768|912768|912769|912770|912771|912772|912772|912773|912774|912775|912776|912777|912778|912779|912780|912781|912782|912783|912784|912785|912786|912787|912788|912788|912789|912790|912791|912792|912793|912794|912795|912796|912797|912798|912799|912800|912801|912802|912803|912804|912805|912806|912807|912808|912809|912810|912811|912812|912813|912814|912815|912816|912817|912818|912819|912820|912821|912821|912822|912823|912824|912825|912826|912827|912828|912829|912830|912831|912832|912833|912834|912835|912836|912837|912838|912838|912839|912840|912841|912842|912843|912844|912845|912846|912847|912848|912849|912850|912851|912852|912853|912854|912855|912856|912857|912858|912859|912860|912861|912862|912863|912864|912865|912866|912867|912868|912869|912870|912871|912872|912873|912874|912875|912876|912877|912878|912879|912880|912881|912882|912883|912884|912885|912886|912887|912888|912889|912890|912891|912892|912893|912894|912895|912896|912897|912898|912899|912899|912900|912901|912902|912903|912904|912905|912906|912906|912907|912908|912909|912910|912911|912912|912913|912914|912915|912916|912917|912918|912919|912920|912921|912922|912923|912924|912925|912926|912927|912928|912929|912930|912931|912932|912933|912934|912935|912936|912937|912938|912939|912940|912941|912942|912942|912943|912944|912945|912946|912947|912948|912949|912950|912951|912952|912953|912954|912955|912956|912957|912958|912959|912960|912961|912962|912963|912964|912965|912966|912967|912968|912969|912970|912971|912972|912973|912974|912975|912976|912977|912978|912979|912980|912981|912982|912983|912984|912985|912986|912987|912988|912989|912990|912991|912992|912993|912994|912995|912996|912997|912998|912999|913000|913001|913002|913003|913004|913005|913006|913007|913008|913009|913010|913011|913011|913012|913013|913014|913015|913016|913017|913018|913019|913020|913021|913022|913023|913024|913025|913026|913027|913028|913029|913030|913031|913032|913033|913034|913035|913036|913037|913038|913039|913040|913041|913041|913042|913043|913044|913045|913046|913047|913048|913049|913050|913051|913052|913053|913102|913103|913104|913105|913106|913107|913108|913109|913110|913111|913112|913113|913114|913115|913116|913117|913118|913119|913120|913121|913122|913123|913124|913125|913126|913127|913128|913129|913130|913131|913132|913133|913134|913135|913136|913137|913138|913139|913140|913141|913142|913143|913144|913145|913146|913147|913148|913149|913150|913151|913152|913153|913154|913155|913156|913157|913158|913159|913160|913161|913162|913163|913164|913165|913166|913167|913168|913169|913170|913171|913172|913173|913174|913175|913176|913177|913178|913179|913180|913181|913182|913183|913184|913185|913186|913187|913188|913189|913190|913191|913192|913193|913194|913195|913196|913197|913198|913199|913200|913201|913202|913203|913204|913205|913206|913207|913208|913209|913210|913211|913212|913213|913214|913215|913216|913217|913218|913219|913220|913221|913222|913223|913224|913225|913226|913227|913228|913229|913230|913231|913232|913233|913234|913235|913236|913237|913238|913239|913240|913241|913242|913243|913244|913245|913246|913247|913248|913249|913250|913251|913252|913253|913254|913255|913256|913257|913258|913259|913260|913261|913262|913263|913264|913265|913266|913267|913268|913269|913270|913271|913272|913273|913274|913275|913276|913277|913278|913279|913280|913281|913282|913283|913284|913285|913286|913287|913288|913289|913290|913291|913292|913293|913294|913295|913296|913297|913298|913299|913300|913301|913302|913303|913304|913305|913306|913307|913308|913309|913310|913311|913312|913313|913314|913315|913316|913317|913318|913319|913320|913321|913322|913323|913324|913325|913326|913327|913328|913329|913330|913331|913332|913333|913334|913335|913336|913337|913338|913339|913340|913341|913342|913343|913344|913345|913346|913347|913348|913349|913350|913351|913352|913353|913354|913355|913356|913357|913358|913359|913360|913361|913362|913363|913364|913365|913366|913367|913368|913369|913370|913371|913372|913373|913374|913375|913376|913377|913378|913379|913380|913381|913382|913383|913384|913385|913386|913387|913388|913389|913390|913391|913392|913393|913394|913395|913396|913397|913398|913399|913400|913401|913402|913403|913404|913405|913406|913407|913408|913409|913410|913411|913412|913413|913414|913415|913416|913417|913418|913419|913420|913421|913422|913423|913424|913425|913426|913427|913428|913429|913430|913431|913432|913433|913434|913435|913436|913437|913438|913439|913440|913441|913442|913443|913444|913445|913446|913447|913448|913449|913450|913451|913452|913453|913454|913455|913456|913457|913458|913459|913460|913461|913462|913463|913464|913465|913466|913467|913468|913469|913470|913471|913472|913473|913474|913475|913476|913477|913478|913479|913480|913481|913482|913483|913484|913485|913486|913487|913488|913489|913490|913491|913492|913493|913494|913495|913496|913497|913498|913499|913500|913501|913502|913503|913504|913505|913506|913507|913508|913509|913510|913511|913512|913513|913514|913515|913516|913517|913518|913519|913520|913521|913522|913523|913524|913525|913526|913527|913528|913529|913530|913531|913532|913533|913534|913535|913536|913537|913538|913539|913540|913541|913542|913543|913544|913545|913546|913547|913548|913549|913550|913551|913552|913553|913554|913555|913556|913557|913558|913559|913560|913561|913562|913563|913564|913565|913566|913567|913568|913569|913570|913571|913572|913573|913574|913575|913576|913577|913578|913579|913580|913581|913582|913583|913584|913585|913586|915211|915213|915215|915217|915219|915227|915234|915239|915240|915290|915298|915303|915306|915307|915308|915309|915315|915323|915325|915426|915430|915432|915436|915440|915446|915452|915454|915458|915460|915462|915464|915468|915469|915471|915472|915476|915478|915480|915487|915491|915502|915504|915506|915508|915510|915513|915515|915518|915520|915526|915528|915530|915532|915534|915558|915603|915605|915641|915645|915647|915653|915656|915670|915834|915836|915838|915840|915842|915844|915846|915848|915850|915852|915854|915856|915858|915860|915862|915865|915867|915869|915871|915873|915875|915877|915879|915881|915883|915885|915902|915904|915906|915908|915910|915912|915914|915916|915918|915920|915922|915924|915926|915928|915930|915959|915964|915968|916004|916024|916027|916262|916263|916273|916277|916282|916291|916293|916296|916297|916298|916301|916303|916304|916305|916306|916307|916309|916311|916312|916313|916314|916315|916316|916317|916318|916319|916321|916323|916325|916330|916332|916334|916335|916336|916337|916339|916341|916343|916344|916350|916352|916354|916355|916359|916361|916363|916365|916367|916368|916369|916371|916372|916373|916374|916375|916377|916378|916379|916380|916381|916382|916383|916385|916386|916389|916390|916391|916398|916401|916403|916404|916405|916544|916546|916548|916550|916553|916555|916559|916561|916563|916567|916571|916576|916581|916583|916588|916592|916594|916598|916602|916607|916614|916636|916639|916641|916644|916652|916656|916660|916662|916664|916665|916667|916668|916670|916672|916675|916678|916681|916683|916686|916689|916693|916695|916697|916698|916699|919592|922936|923129|923130|923131|925711|925712|927345|927346|927347|927348|927349|927350|927351|927352|927353|927354|927355|927356|927357|927358|927359|927360|927361|927362|927363|927364|927365|927366|927367|927368|927369|927370|927371|927372|927373|927374|927375|927401|927402|927403|927404|927405|931606|931882|931883|934898|934899|934900|934901|936956|936957|936958|936959|936960|936961|936962|936963|936964|936965|936966|936967|936968|936969|936970|936971|936972|936973|936974|936975|936976|936977|936978|936979|936980|936981|936982|936983|936984|936985|936986|936987|936988|936989|936990|936991|936992|936993|937029|937030|937031|937032|937033|937034|939916|940327|940328|940329|941091|941094|943462|943463|946763|946764|946765|948913|948914|948915|948916|948917|948918|948919|948920|948921|948922|948923|948924|948925|948926|948927|948928|948929|948930|948931|948932|948933|948934|948935|948936|948937|948938|948939|948940|948941|948942|948943|948944|948945|948946|948983|948984|948985|955950|957440|957441|957442|957443|957444|957445|957446|957447|957448|957449|957450|957451|957452|957453|957454|957455|957456|960113|960114|960115|960116|960117|960491|960823|961308|961385", + "text": "Familial thoracic aortic aneurysm and aortic dissection" + }, + { + "baseId": "19630|19631|33465|81386|207422|264297|300838|300840|300841|303736|303739|303741|303771|303777|303779|308341|308347|308352|308452|522477|563677|625870|686905|699636|735716|896668|896669|896670|896671|896672|896673|896674|896675|896676|896677|896678|896679|896680|896681|896682|896683|896684|896685|896686|896687|896688|896689|896690|896691|896692|896693|896695|896696|896697|896698|896699|896700|896701|896702|896703|896704|896705|900250|900251|978244|978245", + "text": "Carpenter syndrome 1" + }, + { + "baseId": "19630|207422|264297|300834|300842|303735|303740|303742|303774|308425|308427|308428|308444|308452|404641|456662|635117|686905|699636|722088|750129|750130|782593|819703|832154|933391|945106|945107", + "text": "Carpenter syndrome" + }, + { + "baseId": "19632|19633|19634", + "text": "Uric acid concentration, serum, quantitative trait locus 2" + }, + { + "baseId": "19635|19636|19637|214056|214057|214058|214059|214060|293206|294736|294737|294739|294741|294742|294754|296309|296317|296324|296326|296334|296343|296344|296345|296415|296416|296417|296423|296426|296510|296520|296530|296531|300062|300063|300066|300067|300070|300072|300084|300090|300091|300096|300103|300105|300131|300132|300143|300158|300159|300168|300170|300226|620177|734341|818237|818238|889815|889816|889817|892580|892581|892582|892583|892584|892585|892586|892587|892588|892589|892590|892591|892592", + "text": "Renal hypouricemia 2" + }, + { + "baseId": "19638|19639|19640|19641|19642|19643|19644|19645|19646|88096|304460|304464|308209|313232|313325|493544|899018|899019|899020|899021|899022|899023|899024|899025", + "text": "Acroerythrokeratoderma" + }, + { + "baseId": "19647|19648|19649|19650|19651|19652|19653|33862|173758|173759|173898|173899|173900|229025|229026|229027|229028|289077|289089|289092|289095|289839|289840|289843|289844|289845|289846|289850|289867|289880|292902|292906|292912|292922|292929|292932|292933|292951|292952|292959|292963|292965|293171|293177|293182|293203|293207|293208|293211|293218|293231|293232|293233|293236|538973|543092|630987|653857|733868|733869|748071|763689|763690|763691|763693|763694|763696|781579|888161|888162|888163|888164|888165|888166|888167|888168|888169|888170|888171|888172|888173|888174|888175|888176|888177|888178|888179|888180|888181|888182|888183|888184|888185|888186|888187|888188|888189|888190|888191|891589|891590|918807", + "text": "Hermansky-Pudlak syndrome 3" + }, + { + "baseId": "19648|19652|20316|20317|20318|20319|33943|33946|33949|33951|33955|33960|39369|134289|134290|173758|173759|173898|173899|173900|174288|174289|174290|174425|174426|174427|174428|175054|175055|175056|175333|176247|176248|176249|176369|176370|176371|177772|191863|193123|205193|207283|207284|207808|207809|207810|208784|229025|229026|229027|229028|229310|231134|231135|231138|257587|264420|273299|273562|289084|289085|289087|289088|289095|289838|289843|289848|289868|289881|292906|292913|292919|292933|292937|292941|292942|292947|292949|292950|293170|293178|293180|293203|293205|293207|293208|293224|293225|293227|293229|293230|299529|299545|299547|300330|300343|300357|302067|304677|304915|304939|304940|306501|311908|311909|311911|317492|317536|317542|319582|319669|322690|322693|323554|324238|324239|324248|324259|324267|325755|325773|326797|333781|337661|337677|337681|337688|337700|339132|347224|347226|347233|347234|347236|347239|347260|347269|351231|351236|351242|351245|351251|351261|352274|352277|352279|352280|352289|352299|352302|352303|352306|352307|352308|352322|353495|353737|424687|493975|586793|615329|615330|615331|615332|615333|615412|615424|615426|615427|615429|615430|615431|615440|615441|615442|615443|615608|615726|615727|630988|678000|678001|678002|678024|701509|708640|724141|724142|730719|733868|733869|737676|737677|748070|748072|763683|763688|763690|763691|763694|763695|763696|763697|768100|781582|781583|781584|783803|783804|801534|858793|866710|866714|888176|935264|947171|977798|977799|977800|977801|977802|977803|977804|977805|977806|977807|977808|978821|978822|978823|978824|978825|978826|978827|978828|978829|978830|978831|978832|978833|978834|978835|978836|978837|978838|978839|978840|978841|978842|978843|978844|978845|978846", + "text": "Hermansky-Pudlak syndrome" + }, + { + "baseId": "19654|682341", + "text": "Lethal congenital contractural syndrome 3" + }, + { + "baseId": "19655|19656|19657|19658|19659|19660|19661|19663|19664|19667|19668|140290|140291|140292|140293|140296|140297|171767|211434|211440|211441|211443|264446|265652|309183|309185|309197|309208|309210|309213|309215|309219|309222|309226|309227|313903|313906|313908|313916|319783|319784|319785|319786|319787|319794|319796|319797|319807|319812|319819|319821|319822|320320|320327|320331|320332|320334|371494|415211|502732|620340|865239|865240|865241|865242|865243|865244|865245|865246|865247|865248|865249|865250|865251|865252|865253|865254|865255|865256|865257|865258|964338|970014", + "text": "Autosomal dominant progressive external ophthalmoplegia with mitochondrial DNA deletions 3" + }, + { + "baseId": "19657|19661|19662|20121|20130|24618|24628|24656|24657|24680|24681|24686|24741|28534|28535|28544|28546|28552|34161|34162|34163|34164|34165|34166|34167|34168|34169|34170|34171|34172|39389|39417|39418|48174|48364|76573|136325|152761|165641|171703|186292|208318|211189|211701|226044|226045|226873|227162|227163|227164|227165|227166|227167|237763|237764|247444|247445|354304|414701|414702|414704|414705|414706|414707|414708|414709|414710|424202|424203|424204|424205|424206|424207|424208|424209|424210|424211|424212|424213|424215|424216|424217|424218|434403|434404|439690|439691|480531|480532|480533|480534|482269|513402|513404|540434|540435|550875|550876|677581|677722|677810|679356|679357|679358|679359|679360|679361|681059|789102|789103|801542|801543|858735|858758", + "text": "Mitochondrial diseases" + }, + { + "baseId": "19662|28541", + "text": "Progressive external ophthalmoplegia with mitochondrial DNA deletions, digenic" + }, + { + "baseId": "19664|28535|28538|28539|28540|28541|28546|28552|39690|76573|140290|140291|140292|140293|140296|140297|142453|142463|171767|190806|193515|202922|202938|202990|203013|203024|203030|203036|203050|211434|211440|211441|211443|242144|264446|264639|265652|309183|309185|309197|309208|309210|309213|309215|309219|309222|309226|309227|313903|313906|313908|313916|319783|319784|319785|319786|319787|319794|319796|319797|319807|319812|319819|319821|319822|320320|320327|320331|320332|320334|371494|415211|502732|576169|614404|620340|682355|682357|798690|798691|798692|865239|865240|865241|865242|865243|865244|865245|865246|865247|865248|865249|865250|865251|865252|865253|865254|865255|865256|865257|865258|971030", + "text": "Sensory ataxic neuropathy-dysarthria-ophthalmoparesis syndrome" + }, + { + "baseId": "19665|19666|19669|34525|71365|71366|71367|140290|140291|140292|140293|140296|140297|171767|211434|211440|211441|211443|227652|227653|264446|265652|309183|309185|309197|309208|309210|309213|309215|309219|309222|309226|309227|313903|313906|313908|313916|319783|319784|319785|319786|319787|319794|319796|319797|319807|319812|319819|319821|319822|320320|320327|320331|320332|320334|371494|415211|502732|620340|626193|682322|682347|682349|682352|682354|865239|865240|865241|865242|865243|865244|865245|865246|865247|865248|865249|865250|865251|865252|865253|865254|865255|865256|865257|865258", + "text": "Infantile onset spinocerebellar ataxia" + }, + { + "baseId": "19665|23192|23193|23194|23195|23196|23197|23198|139370|140783|140784|140785|140786|190646|195028|205238|210893|210897|210898|210901|274109|287240|287241|287251|290525|290526|290528|290536|290833|290835|481358|481359|513932|513933|549898|790295|885452|885453|885454|885455|885456|885457", + "text": "Mitochondrial DNA-depletion syndrome 3, hepatocerebral" + }, + { + "baseId": "19670|168813|168814|168815|168816|168817|168818|168820|168821|168822|168823|168824|168825|168826|168827|168828|168829|168830|168831|168832|168833|168834|168835|168836|168837|168838|168839|168840|178382|205262|205764|207734|207736|214455|214456|214458|214460|225819|309449|309450|314164|314165|314166|314184|314202|314203|314208|314224|314225|314226|320056|320063|320064|320073|320075|320077|320078|320626|320627|320631|320632|429043|429044|441360|441362|459672|459858|460102|513822|513823|513824|524925|566150|611403|614602|625872|625981|638713|701169|701170|730667|737342|790940|790941|805090|815991|836604|855081|865389|865390|865391|865392|865393|865394|865395|865396|865397|865398|865399|865400|865401|865402|865403|865404|865405|868440|868441|868442|919257|970919|970920|971295|974488", + "text": "Cornelia de Lange syndrome 3" + }, + { + "baseId": "19671|19672|19673|136570|136571|136572|136573|136574|136575|136576|136577|136578|136579|136580|136581|136582|508823|508824|508825|509888|790720", + "text": "Atrial septal defect 4" + }, + { + "baseId": "19674|19675|19676|19677|76648|76649|191289|192063|192941|192942|193152|207042|207043|207044|246935|250912|250913|267615|267976|272572|275510|288698|288700|288702|288703|288704|288708|288712|288714|288715|288718|288719|288723|289423|289426|289429|289437|289446|289447|289449|289452|289453|289454|292443|292446|292455|292461|292467|292468|292492|292494|292496|292498|292616|292617|292632|292636|292648|292654|292657|292664|292669|292672|292675|292680|406114|452299|518928|519076|519081|519084|562410|562429|620102|620103|630949|630950|630951|651032|691300|691301|697823|697824|708558|730185|777328|827525|827526|827527|827528|887920|887921|887922|887923|887924|887925|887927|887928|887929|887930|887931|887932|887933|887934|887935|887936|887937|887938|887939|887940|887941|887942|887943|887944|887945|887946|887947|891563|923047|923048|931758|931759|962693|962694|970492|971370", + "text": "Cranioectodermal dysplasia 1" + }, + { + "baseId": "19678|19679|227248|288087|288114|288840|288844|288853|291776|291884|291897|291903|291904|805078", + "text": "C syndrome" + }, + { + "baseId": "19680|76969|76970|76971|76972|76973|131929|131930|131931|131932|131933|131934|256775|256776|256777|256778|332655|332657|332659|332660|342843|348179|348185|348186|348192|348193|348198|349391|349394|349395|349398|349403|438851|442042|446034|469397|532702|532705|532719|532744|539085|539086|572217|572221|572222|574876|577703|584380|589810|620629|647703|647704|647705|647706|647707|653148|716180|716181|727909|756718|760754|760802|772415|786062|786063|791894|847293|847294|847295|847296|847297|847298|847299|847300|847301|847302|847303|847304|847305|847306|879970|879971|879972|879973|879974|879975|880699|880700|880701|928850|928851|928852|928853|928854|938579|938580|938581|950672|950673|950674|950675|950676|958538|958539|958540", + "text": "Aicardi Goutieres syndrome 4" + }, + { + "baseId": "19681|19682|19683|19684|19685|19686|19687|550573", + "text": "Frontonasal dysplasia 1" + }, + { + "baseId": "19688", + "text": "Sarcoidosis 2" + }, + { + "baseId": "19689|19690|19691|19692|19693|19694|19695|19696|79134|249398|249399|276502|276504|276505|276723|276724|277277|277283|277284|277286|277376|404926|427642|447139|515091|515097|515143|552033|552034|556600|556933|558114|619953|626847|626848|626849|626850|626851|626852|626853|650659|745708|745709|761220|761221|761222|774379|786966|788725|800976|818845|822750|822751|822752|822753|822754|850732|851099|862346|862347|862348|862349|862350|862351|862352|921649|921650|930042|930043|940600|941455|941456|941457|941458|941459|941460|952073|952074|952075|952076|952077|952078|952079|952080|980435", + "text": "Kostmann syndrome" + }, + { + "baseId": "19693|19695|276504|276724|404926|427642|515097|515143|556600|556933|626848|626850|650659|745708|786966|822750|822752", + "text": "Autosomal recessive severe congenital neutropenia type 3" + }, + { + "baseId": "19697|390732|390740", + "text": "Charcot-Marie-Tooth disease, type 2A1" + }, + { + "baseId": "19698|19699|19700|19701", + "text": "Neuroblastoma 1" + }, + { + "baseId": "19699|19700|28375|28377|28378|33122|33123|33124|33125|34719|46008|46750|49881|76578|76579|83949|134845|134846|134847|150855|165504|172465|175540|180995|193949|212065|212066|212068|212069|214506|214508|214509|214512|214513|214514|214515|215257|221072|221073|221074|226759|238113|238114|238115|238116|238117|249266|256141|275615|275616|275617|275618|275620|275643|275644|275646|275647|275648|275649|275650|275651|275652|275653|275655|275661|275671|275674|275677|275679|275680|275703|275730|275733|275736|275737|275742|275743|275746|275747|275748|275750|275751|275752|275754|275755|275756|275757|275758|275759|275760|275761|275762|275763|275764|275765|275766|275767|275768|275769|275770|275771|275772|275773|275774|275775|275776|275777|275778|275779|275780|275781|275782|275783|275784|275785|275786|275787|275788|275789|275790|275791|275792|275793|275794|275795|275799|275802|275803|275804|275805|275809|275818|275823|275831|275832|275833|275834|275841|275842|275844|275848|275854|275857|275858|275861|275862|275863|275864|275865|275869|275870|275871|275873|275881|275886|275887|275888|275894|275895|275897|275900|275902|275903|275904|275906|275909|275910|275912|275918|275926|275939|275944|275945|275946|275947|275956|275960|275961|275962|275963|293429|294855|298467|298528|353022|353023|362764|362766|362767|363179|363244|363308|363309|363337|363338|363339|363361|363362|363363|363390|363464|363465|363466|363467|363468|363591|363592|390732|432394|432400|432406|432407|432409|432412|432413|432416|432422|446991|514868|535377|535378|535379|581789|611988|612000|612008|612013|626484|683231|685506|789813|789816|789817|861756|861757|861758|861759|861760|861761|861762|861763|861783|861800|861801|861802|861803|861804|861805|861806|861807|861808|861809|861810|861811|861812|861813|861814|861815|861816|861817|861818|861819|861820|861821|861822|861823|861824|861825|861826|861827|861828|861829|861830|861831|861832|861833|861834|861835|861836|861837|861838|861839|861840|861841|861842|861843|861844|861845|861846|861847|864940|864941|864942|864945|864951|864952", + "text": "Neuroblastoma" + }, + { + "baseId": "19702|19703|306064|310042|310044|310057|353846|734258|970654", + "text": "Pyruvate dehydrogenase phosphatase deficiency" + }, + { + "baseId": "19704|19704|19705|19706|19707|19708|19709|19710|19711|19712|19714|22715|22716|44662|44663|134928|140776|140777|140778|191510|208008|208009|208013|237233|248737|248738|271194|271972|309807|309809|314727|314736|318850|318855|318858|318860|318861|318862|318866|318867|318871|318873|318877|318878|318879|318886|318887|320734|320739|321387|321399|321401|321403|327235|327243|327246|327249|327251|327256|327261|327265|327267|327268|333353|333354|333361|333369|333370|333378|333382|333384|333385|333386|333387|333388|333389|333398|333403|333405|333409|333416|333417|333418|333419|335099|335103|335107|335108|335112|335113|335116|335127|335129|335130|353262|371603|407833|421785|429478|459719|459727|459730|459731|459914|460187|460187|460443|460444|513304|525013|525227|525229|525232|525329|525334|525533|525533|527458|563618|563620|564410|564513|564517|564521|566107|566202|566204|566206|572195|584029|585008|589065|614347|614347|638775|638776|638777|638778|638779|638780|638781|638782|638783|638784|638785|638786|638787|638788|638789|638790|638791|638792|638793|638794|638795|638796|638797|638798|638799|638800|638801|641541|651954|651998|652095|652125|684382|692812|692813|692814|692815|695473|701266|712282|723866|730680|730681|752041|752042|752043|752044|752045|759947|767673|767674|767675|767676|775484|783566|783568|790953|790954|820197|820198|820199|836704|836705|836706|836707|836708|836709|836710|836711|836712|836713|836714|836715|836716|836717|836718|836719|836720|836721|836722|836723|836724|836725|836726|836727|851371|865636|870669|870670|870671|870672|870673|870674|870675|870676|870677|870678|870679|870680|870681|870682|870683|870684|925767|925768|925769|925770|925771|925772|925773|934986|934987|934988|934989|934990|934991|940952|946843|946844|946845|946846|956011|956012|956013|956014|956015|956016|956017|956018|956019|956020|959930|960715|960716", + "text": "Severe combined immunodeficiency due to DCLRE1C deficiency" + }, + { + "baseId": "19704|19704|19713|19716|28169|28169|28170|28170|28171|28171|28172|28172|28174|28174|28175|28182|28183|28184|28185|28186|28187|28188|28189|28190|28191|28192|28199|44662|44663|44664|45372|45374|45376|45378|45378|79572|140776|140777|140778|142585|142587|142588|142589|142590|142590|191510|237096|237233|253713|253714|254148|254149|254150|254151|271194|309774|309777|309782|309783|309789|309791|309794|309799|309800|309801|309804|309805|309806|309807|309809|313990|313992|313995|314000|314002|314012|314013|314014|314015|314019|314021|314025|314026|314032|314654|314655|314656|314663|314665|314673|314675|314676|314679|314681|314687|314689|314711|314714|314725|314727|314736|314737|320368|320369|320387|320393|320401|320417|320431|320432|320452|320453|320454|320456|320463|320474|320476|320489|320490|320491|320497|320500|320700|320701|320702|320720|320721|320727|320728|320734|320739|321301|321302|321314|321315|321325|321337|321338|321343|321371|321374|321375|321376|321387|321399|321401|321403|326350|326360|326369|326374|326377|326378|326380|326382|326384|326399|326401|326415|326421|326429|326430|326434|326435|326435|326443|326452|327380|327381|327390|327392|327406|327407|327408|327410|327412|327417|327426|327430|327431|327441|327443|327444|327446|327450|327451|327455|327462|327462|327474|327480|353188|371603|407833|408346|425922|433888|433888|433888|460187|460187|461092|461576|461890|461904|461907|488105|488106|488107|488109|488110|488111|488112|488113|488113|488115|488116|488117|488117|488119|513304|525533|526194|526676|564613|567235|567235|567241|614347|614356|614357|620349|638776|638777|638798|640022|640023|640024|640025|652125|692812|692813|692814|693020|693021|695473|701752|712282|723866|730681|737960|737962|752041|752044|767676|768442|792668|799601|838365|838368|838373|838392|838394|838397|838398|865619|865620|865621|865622|865623|865624|865625|865626|865627|865628|865629|865630|865631|865632|865633|865634|865635|865636|865637|865638|865639|865640|865641|865642|865643|867886|867887|867888|867889|867890|867891|867892|867893|867894|867895|867896|867897|867898|867899|867900|867901|867902|867903|867904|867905|867906|867907|867908|867909|867910|867911|867912|867913|867914|867915|867916|867917|867918|867919|867920|867921|867922|867923|867924|867925|867926|867927|867928|867929|867930|867931|867932|868459|868460|868461|956014|956486|978634|978635|978636|978637|978638|978639|978640|978641|978642|978643|978644|978985|978986|978987|978988|978989|978990|978991|978992|978993|978994|978995|978996|978997", + "text": "Histiocytic medullary reticulosis" + }, + { + "baseId": "19712|321403|566204|584029|638779|767673|836712|836714", + "text": "Severe combined immunodeficiency, athabascan-type" + }, + { + "baseId": "19714|19715", + "text": "Severe combined immunodeficiency, partial" + }, + { + "baseId": "19717|19718|19719|19720|40574|205177|714450|903603", + "text": "Johanson-Blizzard syndrome" + }, + { + "baseId": "19721|19722|19723|19724|19725|19726|19727|19728|19729|45830|308735|308737|308742|308747|308750|308752|308753|308755|308759|308760|308762|308767|308769|308770|308772|308779|308781|308782|308788|308792|308801|308802|308806|308808|308812|308819|308820|308825|308827|308828|308829|308831|308842|308843|308846|313311|313315|313316|313317|313323|313331|313336|313337|313352|313354|313356|313365|313373|313382|313392|313394|313395|313396|313397|313408|313415|313429|313430|313431|313435|313439|313440|313441|313442|313444|319159|319180|319181|319183|319190|319193|319194|319220|319221|319222|319223|319225|319227|319228|319232|319233|319240|319242|319244|319249|319250|319254|319255|319772|319774|319777|319788|319792|319793|319795|319800|319811|319814|319816|319817|319818|319820|319826|319827|319836|319838|319842|319844|319851|319867|319868|319869|319875|319877|441341|441348|441349|441352|441353|441354|441355|444515|444516|508840|508841|508842|508843|539023|545359|545630|577132|577133|577135|620337|654549|684104|684105|684106|684107|684108|684109|684115|684119|685255|685256|685258|685259|685263|687527|687532|687533|687539|689955|689963|692692|783447|800756|806436|818580|902368|902369|902370|902371|902372|902373|902374|902375|902376|902377|902378|902379|902380|902381|902382|902383|902384|902385|902386|902387|902388|902389|902390|902391|902392|902393|902394|902395|902396|902397|902398|902399|902400|902401|902402|902403|902404|902405|902406|902407|902408|902409|902410|902411|902412|902413|902414|902415|902416|902417|902418|902419|902420|902421|902422|902423|902424|902425|902426|902427|902428|902429|902430|902431|902432|902433|902434|903431|903432|903433|903434|903435|903436|903437|903438|903439|903562|918310|919239", + "text": "Choreoacanthocytosis" + }, + { + "baseId": "19730|19730|19731|19731|19732|19732|19733|19735|19736|19739|19739|19739|19740|103711|103711|103712|103716|103717|103718|103718|103719|103719|103721|103725|103725|103726|103728|103731|103736|103736|103737|103740|103740|103741|103742|103742|103743|103743|103744|103744|103747|103747|103748|103748|103750|103750|103757|103758|103758|103759|103760|103761|103761|103764|103764|103767|103768|103769|103769|103771|103771|103772|103772|103773|103775|103775|103776|103777|103777|103777|103794|108849|194494|194494|262395|325494|325497|325497|325504|325504|325505|325507|325509|325517|325518|325520|325521|325522|335144|335145|335151|335154|335158|335158|335159|335161|335167|335170|335170|335175|335175|335176|335176|335177|335177|335179|335179|335184|335184|335185|335185|335187|335194|335200|335201|341616|341618|341618|341619|341620|341623|341623|341629|341630|341631|341634|341640|341640|341642|341646|341646|341657|341657|341658|341658|341660|341661|341664|343077|343081|343081|343083|343083|343085|343091|343091|343092|343092|343094|343096|343096|343097|343097|343098|343098|343103|343104|343104|343107|343115|343117|343118|343118|343120|343121|343126|343129|343136|343140|343142|343143|343144|343145|359038|359039|359040|359041|359042|409643|445585|466469|466469|466471|466472|466475|466489|466746|466747|529997|529998|530001|530003|530004|530008|530019|530021|530159|530161|530163|530177|530182|530339|530342|530342|530343|530345|530345|530541|530545|530551|530554|568172|568176|568180|568184|568188|568193|570251|570253|570261|570269|570274|570275|570292|570297|570318|570320|574079|574081|574082|574083|574084|578028|614427|620878|620878|622694|644720|644721|644722|644723|644724|644725|644726|644727|644728|644728|644729|644730|644730|644731|644731|644732|644732|644733|644734|644735|644736|644737|644738|644739|644740|644741|703731|703731|714958|714959|714961|714962|740228|740229|740230|740231|740232|755213|755215|755216|755219|770928|770931|770932|770934|770935|770938|770941|770947|785289|797335|797336|799958|816339|843928|843929|843930|843931|843932|843933|843934|843935|843936|843937|843938|843939|843940|843941|843942|843943|843944|843945|843946|843947|843948|843949|843950|843951|843952|843953|843954|843955|843956|843957|843958|843959|843960|843961|843962|875366|875367|875368|875369|875370|875371|875372|875373|875374|875375|875376|875377|875378|875379|875380|927836|927837|927838|927839|927840|927841|927842|927843|927844|927845|927846|927847|937476|937477|937478|937479|937480|937481|937482|949420|949421|949422|949423|949424|949425|949426|949427|949428|949429|949430|957777|957778|957779|957780|957781|957782|957784|957785|960846|980481", + "text": "Inflammatory bowel disease 1" + }, + { + "baseId": "19730|335199|341611|341631|343103", + "text": "Crohn disease" + }, + { + "baseId": "19730|19730|19731|19731|19732|19732|19733|19733|19734|19735|19735|19736|19737|19738|19739|19739|19739|19740|19740|91052|103708|103709|103710|103711|103711|103712|103712|103713|103714|103715|103716|103716|103717|103718|103718|103719|103719|103720|103721|103721|103722|103723|103724|103725|103725|103726|103726|103727|103728|103728|103729|103730|103731|103731|103732|103733|103734|103735|103736|103736|103737|103737|103738|103739|103740|103740|103741|103742|103742|103743|103743|103744|103744|103745|103746|103747|103747|103748|103748|103749|103750|103750|103751|103752|103753|103754|103755|103756|103757|103757|103758|103758|103759|103759|103760|103761|103761|103762|103763|103764|103764|103765|103766|103767|103767|103768|103768|103769|103769|103770|103771|103771|103772|103772|103773|103773|103774|103775|103775|103776|103776|103777|103777|103777|103794|103794|103795|108849|194494|194494|262395|325494|325497|325497|325504|325504|325505|325507|325509|325517|325518|325520|325521|325522|335144|335145|335151|335154|335158|335158|335159|335161|335167|335170|335170|335175|335175|335176|335176|335177|335177|335179|335179|335184|335184|335185|335185|335187|335194|335199|335200|335201|341611|341616|341618|341618|341619|341620|341623|341623|341629|341630|341631|341631|341634|341640|341640|341642|341646|341646|341657|341657|341658|341658|341660|341661|341664|343077|343081|343081|343083|343083|343085|343091|343091|343092|343092|343094|343096|343096|343097|343097|343098|343098|343103|343103|343104|343104|343107|343115|343117|343118|343118|343120|343121|343126|343129|343136|343140|343142|343143|343144|343145|409643|445585|466469|466469|466471|466472|466475|466489|466746|466747|529997|529998|530001|530003|530004|530008|530019|530021|530159|530161|530163|530177|530182|530339|530342|530342|530343|530345|530345|530541|530545|530551|530554|568172|568176|568180|568184|568188|568193|570251|570253|570261|570269|570274|570275|570292|570297|570318|570320|574079|574081|574082|574083|574084|612311|614427|620545|620546|620878|620878|626246|644720|644721|644722|644723|644724|644725|644726|644727|644728|644729|644730|644730|644731|644731|644732|644732|644733|644734|644735|644736|644737|644738|644739|644740|644741|703731|703731|714958|714959|714961|714962|740228|740229|740230|740231|740232|755213|755215|755216|755219|770928|770931|770932|770934|770935|770938|770941|770947|785289|797335|797336|799958|816339|816339|843928|843929|843930|843931|843932|843933|843934|843935|843936|843937|843938|843939|843940|843941|843942|843943|843944|843945|843946|843947|843948|843949|843950|843951|843952|843953|843954|843955|843956|843957|843958|843959|843960|843961|843962|875366|875367|875368|875369|875370|875371|875372|875373|875374|875375|875376|875377|875378|875379|875380|927836|927837|927838|927839|927840|927841|927842|927843|927844|927845|927846|927847|937476|937477|937478|937479|937480|937481|937482|949420|949421|949422|949423|949424|949425|949426|949427|949428|949429|949430|957777|957778|957779|957780|957781|957782|957784|957785|960846|961971|964686|980481", + "text": "Blau syndrome" + }, + { + "baseId": "19730|19731|19732|19736|19739|103761|103777|614427|703731|919659|980481", + "text": "Yao syndrome" + }, + { + "baseId": "19736", + "text": "Autoinflammatory syndrome" + }, + { + "baseId": "19739|27427|29419|103761|703731|980481", + "text": "Psoriatic arthritis, susceptibility to" + }, + { + "baseId": "19741|277491|364543|447235|515100|515258|515260|558138|576073|626893|626894|626895|682122|682123|818846|822782|822783|822784|862397|941488", + "text": "Congenital disorder of glycosylation type 1O" + }, + { + "baseId": "19742|19743|19744|19745|19746|19747|19748|19749|39498|39499|39500|48589|101235|101236|101237|101238|101239|101240|101241|101242|101243|132704|142305|142306|142307|142308|142309|142310|142311|142312|142313|142314|142315|142316|142317|142318|142319|142320|142321|142322|142323|142324|142325|142326|142327|142328|142329|142330|142331|142332|142333|142334|169608|169609|169610|169611|169612|169613|169614|169615|169616|169617|169621|169622|169623|169625|169626|169627|169629|169630|169631|169633|169634|169635|169636|169637|169638|169639|169640|169641|169642|169643|169644|169646|169647|169648|169649|169650|169651|169652|169653|169654|169655|169656|169657|169658|169659|169660|169662|169663|169664|169665|169666|169667|169668|169669|169670|169671|169672|169673|169674|169675|169676|169679|169682|169683|169684|169685|169686|169687|169688|169689|169690|169691|169692|169693|169694|169695|169696|169698|169700|169701|169702|169703|169704|169706|169707|169708|169709|169710|169711|169714|169715|169716|169717|169718|169719|169720|169721|169723|169724|169726|169727|169728|169729|169730|169732|169733|169734|169736|169737|169738|169740|169741|169742|169743|169744|169745|177915|192661|192766|193947|194688|208730|208732|208735|208738|208739|208740|208746|208748|208751|208752|208755|208756|208758|208759|208761|208762|208763|208764|208765|208766|208767|208769|208771|208772|265806|267174|268318|268576|271634|272568|337192|337195|337196|337200|337202|337206|337209|337215|337221|337226|337232|337235|337236|337239|337246|337251|337253|337258|337262|337267|337268|337270|337272|337273|346907|346916|346917|346918|346919|346922|346923|346925|346927|346933|346934|346935|346940|346941|346942|346944|346945|346951|346953|346954|346955|350964|350966|350968|350971|350973|350975|350977|350978|350981|350982|350983|350986|350989|350990|350993|350994|350996|350997|351000|351001|351005|351960|351963|351964|351965|351966|351967|351968|351969|351970|351971|351972|351973|351974|351977|351978|351979|351980|351983|351984|351985|351986|351987|351989|351998|351999|352004|377337|377340|378515|378532|378544|378549|378620|378648|379802|379804|384525|422370|430438|430439|430447|430452|430457|430460|430461|430462|430468|430469|430472|430475|430477|430489|430492|430495|430496|430497|430498|430501|430508|430511|430512|430516|430523|430527|430529|430535|430539|430541|430542|430971|489145|490872|493906|493908|493911|493913|493915|497345|508019|508031|508346|508938|552227|576190|578581|610899|612168|620680|620681|620682|620683|705760|728982|728987|742721|742725|780028|786538|798049|800183|861062|887028|887029|887030|887031|887032|887033|887034|887035|887036|887037|887038|887039|887040|887041|887042|887043|887044|887045|887046|887047|887048|887049|887050|887051|887052|887053|887054|887055|887056|887057|887058|887059|887060|887061|887062|887063|887064|887065|887066|887067|887068|887069|887070|887071|887072|887073|887074|887075|887076|887077|887078|887079|887080|887081|887082|887083|887084|887085|887086|887087|887088|887089|887090|887091|887092|887093|887094|887095|887096|887097|887098|887099|887100|887101|887102|887103|887104|887105|887106|887107|887108|887109|887110|887111|887112|887113|887114|887115|887116|887117|887118|887119|887120|887121|887122|887123|887124|887125|887126|887127|887128|887550|887551|887552|887553|887554|887555|887556|887557|887558|887559|887560|887561|887562|887563|887564|887565|887566|887567|903643|919942|964550|966015|966016|966046|971572|971573|971574|973106|982234|982235|982236|982237|982238|982239|982240|982241|982242|982243", + "text": "Microcephalic osteodysplastic primordial dwarfism type II" + }, + { + "baseId": "19750|39497|49900|49900|49922|136636|136636|152909|187250|237034|237034|254152|254155|254157|254159|254160|254161|254163|361518|362275|362276|372380|444801|461105|461106|461109|461112|461113|461115|461115|461118|461120|461308|461310|461317|461322|461323|461326|461583|461587|461589|461591|461600|461610|461911|461913|461915|526191|526197|526199|526201|526203|526207|526379|526380|526388|526683|526697|564617|564621|564624|564624|565728|565732|565739|565742|565752|565753|565754|565758|565764|567255|567256|567258|567260|567272|570635|570636|570639|570652|570656|570662|614358|622401|640029|640030|640031|640032|640033|640034|640035|640036|640037|640038|640039|640040|640041|640042|640043|640044|640045|640046|640047|640048|640049|640050|652094|652546|693022|693023|693024|693025|693026|693027|693028|693031|695512|695513|701756|701757|701761|724427|752667|778132|796572|820363|820364|820365|820366|838403|838404|838405|838406|838407|838408|838409|838410|838411|838412|838413|838414|838415|838416|838417|838418|838419|838420|838421|851839|852346|919361|926226|926227|926228|926229|926230|926231|926232|926233|926234|926235|926236|926237|926238|935522|935523|935524|935525|935526|935527|935528|935529|935530|935531|935532|940995|940996|947446|947447|947448|947449|947450|947451|947452|947453|959987|980467", + "text": "Combined immunodeficiency due to STIM1 deficiency" + }, + { + "baseId": "19751|143249", + "text": "Plasma triglyceride level quantitative trait locus" + }, + { + "baseId": "19752|19753|19754|19755|19756|19757|19758|19759|19760|19761|19762|34373|34374|34375|34376|34377|34378|40300|79686|79689|135059|135060|135061|135062|135063|135064|187067|187068|198646|227417|243999|257699|257700|257702|257709|338534|338541|338542|338545|338548|338551|338553|338559|338561|338562|338567|338568|338570|338572|348116|348117|348119|348121|348123|348125|348127|348134|348135|348137|348139|348158|351808|351809|351812|351814|351817|351819|351820|351821|352663|352664|352666|352667|352668|352669|352670|352672|352673|352674|352675|352676|352677|358664|358665|358666|358667|358668|358669|358670|358671|358672|429180|513673|538501|539417|549081|549083|549094|549095|549153|549155|549156|549159|549161|549163|549166|549169|549296|549298|549437|549438|549439|549440|549441|549442|549443|549444|549445|549446|581914|614611|620929|706002|773596|773604|789133|851930|858697|861135|891456|891457|891458|891459|891460|891461|891462|891463|891464|891465|891466|891467|891468|891469|891470|891471|891472|891473|891474|891475|891476|891477|891478|891479|891480|891481|891482|891483|891484|891485|891486|891487|891488|891489|891490|891491|891492|891493|891494|891495|891496|891497|891498|891499|891854|891855|891856|905061|972366|972367|972368|972369|972370|972371|972372", + "text": "Megalencephalic leukoencephalopathy with subcortical cysts 1" + }, + { + "baseId": "19761|135059|227417|254023|254024|254025|254026|254027|254029|254030|257709|268677|313075|313076|313077|313081|313084|313085|313086|313088|313090|313099|313100|313102|313108|313109|313110|313114|319132|319134|319137|319138|319149|319150|319153|319154|319155|319160|319164|325250|325251|325263|325264|325268|325272|325282|325284|325290|325292|325293|325297|325298|326092|326098|326099|326100|326103|326109|326112|326113|326114|326125|326128|326129|326132|326140|326144|326146|348115|348135|348137|348155|348156|351818|352665|352671|539106|539107|549441|701646|706002|742985|742986|744491|752515|758133|773597|773598|773599|773604|786625|786626|786629|849396|867458|867459|867460|867461|867462|867463|867464|867465|867466|867467|867468|867469|867470|867471|867472|867473|867474|867475|867476|868615|980063|980064|980065|980066|980067", + "text": "Megalencephalic leukoencephalopathy with subcortical cysts" + }, + { + "baseId": "19763|19764|19765|39493|39494|39495|39496|101831|101833|177023|190582|190585|225848|374406|375188|375475|377584|377595|377605|377609|409644|426173|465768|466485|466490|513458|513459|567521|570302|570325|610520|644742|644743|644744|693887|693889|714963|726674|770948|785294|791620|791621|791622|919660|937483|957783|957786|957787|971051", + "text": "ALG1-CDG" + }, + { + "baseId": "19763|22745|39496|44363|99631|101293|101329|101330|101331|101827|101829|101830|101887|101982|102019|135541|136138|175940|190559|190582|190583|190599|191270|192513|194512|195644|195742|225848|237146|246889|247614|254015|268170|278557|278565|278588|278607|278644|278645|278656|278658|278672|278679|278680|278684|278690|279809|279815|279816|279829|279830|279831|279832|279855|279865|279913|279965|279966|279967|279973|279979|280008|281016|281017|281018|281027|281028|281030|281032|281038|281039|281042|281614|281615|281618|281621|281628|281633|281634|281638|282798|282802|282807|282808|282821|282823|282824|282825|282828|282829|282860|282862|283099|283122|283126|283134|283135|283139|283146|283147|290406|291249|293638|293666|293675|293685|293694|293697|295041|295049|295078|295097|295725|295727|298690|298716|298718|298727|298728|298733|298735|298755|298767|301217|301220|301392|304351|304355|304359|304560|304587|304618|304643|304644|304646|304647|304649|304653|304655|304656|304661|304671|304672|304683|304689|304690|304696|304697|304698|304705|304714|304716|308170|308177|308184|308196|308392|308394|308395|308396|308398|308404|308406|308412|308413|308415|308417|308418|308979|308980|308981|309100|309151|309207|312329|312340|312543|312545|312563|312566|312568|312575|313459|313460|313461|313473|313477|313478|313481|313486|313487|313500|313502|313503|313505|313564|313567|313568|313569|313570|313572|313585|313587|313592|313594|313611|313613|313884|314149|315269|318212|318214|318215|318217|318231|318427|318434|318561|318562|318926|318946|318973|319815|320303|320629|320630|320638|322122|324269|324282|324297|324300|324347|324362|324675|324687|324742|324999|325029|325030|325032|325048|325051|325055|325057|325434|326701|326763|328317|328323|328326|328341|329377|329398|329405|329428|329433|329435|329743|333063|334323|334369|334746|334761|335785|335991|336419|336519|336530|336601|336604|336917|336963|337947|337954|337962|337968|338483|338484|338526|340021|340983|342229|342238|342437|343781|345723|345730|345997|345999|347112|347304|347305|347306|347328|348097|350111|351790|353372|353850|406444|409644|470886|538399|571212|573495|575095|614140|614141|620296|648660|677999|678004|678005|678006|678007|678008|678009|678010|678011|678012|678013|678014|678015|678016|678017|678018|678019|678020|678022|678023|716952|780116|848380|848381|848382|848383|848384|899143|899144|899145|899146|899147|899148|899149|899150|899151|899152|899153|899154|899155|899156|899157|899158|899159|899160|899161|899162|899163|899164|899165|899166|899167|899168|899169|899170|899171|899172|899173|899174|899175|899176|899177|899178|899179|899180|899181|899182|899183|899184|899185|899186|899187|899188|899189|899190|899191|899192|899193|899194|899195|899196|900459|900460|900461|951090|970267", + "text": "Congenital disorder of glycosylation" + }, + { + "baseId": "19763|21906|21908|21911|21912|21913|21914|28799|39892|71055|71056|71057|71058|71059|71060|71061|71062|71063|71064|71065|71066|71067|71068|71069|71070|71071|71072|71073|71074|71075|71076|71077|71078|71079|71080|71081|71082|71083|71084|71085|71086|71087|71088|71089|71090|71091|71092|71093|71094|71095|71096|71097|71098|71099|71100|71101|71102|71103|71104|71105|71106|71107|71108|71109|71110|71111|71112|71113|71114|71115|71116|71117|71118|71119|71120|71121|71122|71123|71124|71125|71126|71127|71128|71129|71130|71131|71132|71133|71134|71135|71136|71137|71138|71139|71140|71141|71142|71143|71144|71145|71146|71147|71148|71149|71150|71151|71152|71153|71154|71155|71156|71157|71158|71159|71160|71161|71162|71163|91998|171093|178739|178742|178743|178744|187046|187047|187048|187049|187050|195679|224550|224551|227404|227405|256857|256859|256860|256861|256864|256865|256867|256868|256870|256871|256872|256874|256875|256877|256878|256879|256882|256883|256885|265406|266609|274359|333155|333168|333173|343280|343288|348616|348618|348619|349682|353492|358604|358605|358606|358607|358608|358609|358610|358611|358612|358613|358614|358615|358616|358617|358618|376402|384503|424418|442195|487810|487948|487949|488000|488046|513021|513650|548737|548742|548744|548745|548747|548748|548750|548752|548753|548756|548757|548759|548762|548766|548767|548770|548772|548774|548776|548785|548789|548793|548794|548796|548798|549119|549121|549125|549136|549137|549138|549146|549148|549160|549343|549344|549345|549346|549347|549348|549349|549350|549351|549352|549353|549354|549355|549356|549357|549358|577765|590327|590328|620633|620634|620906|621631|622921|679333|728132|728133|728135|728136|728137|728138|731272|731273|741808|741810|741812|741814|741815|741816|741817|741818|745068|745407|756931|756932|756935|772610|772611|772613|772615|772617|776582|776696|786147|786148|786150|786151|788279|788317|791922|793777|798751|801738|802224|847546|917554|919849|919850|979973|979974|979975|979976|979977|979978|979979|979980|979981|979982|980390", + "text": "Finnish congenital nephrotic syndrome" + }, + { + "baseId": "19766|19767|19768|19770|19772|19774|45105|45106|45107|45108|45109|45110|45111|45112|45599|49462|53044|53047|53048|53049|53053|54675|54677|54678|54680|54681|54682|54683|54685|54686|54690|54692|54693|54694|54696|54697|54698|54699|54701|54702|54703|54704|54708|54710|54711|54713|54714|54716|54717|54717|54718|54720|54721|54722|54723|54727|99431|141803|141804|141806|141809|175032|175033|175034|175036|175037|175043|175045|175047|175048|175311|175312|175313|175314|175315|175323|175325|178631|178633|189875|189877|189880|195922|198307|198307|198308|198309|198313|198316|198320|198321|198326|198327|198330|198331|198332|214486|224404|224405|229941|229942|229948|229949|236779|240850|240851|248504|264565|311447|311448|311449|317037|317039|317040|317041|317042|323019|323021|323578|323593|323602|323607|323616|359971|371495|373518|373519|373521|373531|397072|397424|397426|397428|397590|397591|397597|397598|397600|397602|397604|397609|397839|397841|397964|397975|397977|397979|415237|420993|460179|460182|460194|460201|460299|460307|460308|460549|460552|460554|460558|460974|460977|460982|460984|460986|460989|460990|461001|502897|503482|503491|503781|510223|510228|510230|510231|510238|513598|524874|525438|525440|525452|525454|525456|525526|525526|525529|525669|525671|525676|525799|525802|525804|525805|525807|525814|563971|563977|564755|564762|564763|564769|564773|564782|566525|566526|566531|566532|569776|569781|614996|614998|639186|639187|639188|639189|639190|639191|639192|639193|639194|639195|639196|639197|639198|639199|639200|639201|639202|639203|639204|639205|639206|639207|679539|685277|689987|692892|692893|775673|777893|796485|837368|837369|837370|837371|837372|837373|837374|866451|866452|866453|866454|866457|866458|866459|866460|866461|866462|868525|917054|925945|925946|925947|935201|935202|935203|935204|935205|947102|947103|947104|956227|956228|956229|956230|956231|956232|956233|956234|956235|956236|956237|956238|956239|956240|956241|956242|956243|956244|956245|956246|956247|956248|956249|956250|956251|956252|956253|956254|956255|956256|956257|959949|960730|960731|960732", + "text": "Myofibrillar myopathy, ZASP-related" + }, + { + "baseId": "19767|20032|20033|20038|20039|20040|20041|33471|33473|33474|38832|39426|39429|39430|39431|39432|39433|48018|51262|52239|55766|57196|57282|77299|77309|77750|77753|131994|132005|132007|136760|169564|173493|173633|174415|176795|178263|178281|228356|354298", + "text": "Neuromuscular disease" + }, + { + "baseId": "19767|20875|48065|53432|53436|77287|77297|77310|247640|361040|682327", + "text": "Myofibrillar myopathy" + }, + { + "baseId": "19768|19769|19770|19771|19772|19773|19774|53044|53048|54696|54717|141809|198307|224404|311447|317039|317040|317041|317042|323019|323021|323607|415237|525526|525814|866450|866451|866452|866453|866454|866457|866458|866459|866460|866461|866462|868525|919299", + "text": "Dilated cardiomyopathy 1C" + }, + { + "baseId": "19770|54699", + "text": "Familial hypertrophic cardiomyopathy 24" + }, + { + "baseId": "19774", + "text": "Left ventricular noncompaction 3" + }, + { + "baseId": "19775|19776|19777|196445|242852|429997|429998", + "text": "Breast cancer, early-onset" + }, + { + "baseId": "19775|19775|19776|19777|19777|19777|39492|39492|133608|133608|133609|133610|133610|133611|133611|133612|133613|133613|133614|133614|133615|133617|133617|133618|133619|133619|133620|133620|133621|133622|133623|133623|133624|133624|133625|133626|133626|133627|133627|133629|133630|133630|133631|133631|133632|133632|133632|133634|133634|133636|133636|133637|133637|133640|133640|133641|133641|133642|133642|133643|133643|133644|133644|133646|133646|133647|133648|133648|133649|133649|133650|133650|133651|133651|133652|133652|133653|133653|133654|133655|133655|133656|136460|136460|136500|137484|137484|137487|137489|137490|137490|137491|137491|137492|137492|137493|137494|137494|137494|137495|137495|137496|137496|137497|137497|137498|137499|137499|137500|137500|139852|139853|139853|139854|139855|139855|139856|139856|139857|139858|139858|139859|139859|139860|139861|139861|139862|139863|139863|139864|139866|139866|140277|140278|140278|140279|140282|140282|140283|140283|140284|140285|140285|140286|140287|140288|140289|140289|150522|150522|150533|150533|150539|150539|150566|150566|150572|150575|150659|150698|150699|150699|150709|150709|150773|150898|151019|151032|151033|151050|151050|151064|151096|151096|151116|151116|151122|151149|151201|151213|151213|151213|151217|151259|151259|151304|151304|151380|151380|151408|151408|151412|151412|151412|151458|151458|151467|151467|151467|151468|151468|151475|151475|151526|151541|151552|151575|151661|151661|151689|151689|151689|151695|151827|151841|151892|151893|151893|151994|151994|152057|152057|152060|152060|152072|152080|152080|152104|152104|152172|152172|152187|152187|152206|152206|152243|152265|152269|152282|152287|152309|152309|152446|152446|152520|152523|152523|152614|152629|152629|152663|152663|152679|152679|152735|152735|152735|166259|180923|180924|180925|180925|180925|180926|180926|180927|180928|180929|180932|180932|180932|180934|180934|180935|180935|180936|180936|180937|180938|180938|180940|180941|180942|180943|180944|180947|180948|180949|180949|180950|180950|180951|180952|180952|180954|180954|180955|180956|180956|180957|180958|180959|180959|180960|180960|180961|180962|180962|185186|185187|185187|185188|185189|185189|185190|185190|185192|185194|185195|185195|185197|185198|185199|185200|185201|185203|185204|185204|185205|185205|185207|185207|185210|185211|185211|185212|185212|185213|185213|185213|185214|185215|185215|185216|185218|185222|185223|185224|185224|185225|185226|185227|185227|185228|185230|185230|185231|185233|185236|185237|185238|185240|185240|185240|185242|185242|185243|185244|185245|185246|185247|185250|185251|185253|185254|185254|185256|185256|185257|185258|185258|185259|185260|185260|185261|185261|185263|185264|185266|185267|185267|185268|185268|185270|185272|185273|185273|185273|185275|185275|185277|185278|185279|185280|185281|185283|185283|185284|185285|185286|185287|185287|185289|185290|185292|185292|185293|185294|185294|185295|185296|185296|185297|185297|185298|185300|185302|185303|185304|185304|185305|185306|185308|185309|185310|185311|185312|185314|185315|185315|185316|185316|185317|185317|185319|185320|185321|185321|185322|185323|185326|185327|185328|185329|185330|185330|186242|186266|186269|186271|186271|208407|208409|213356|213358|213358|213359|213360|213361|213361|213362|213362|213363|213363|213363|213364|213365|213369|213370|213371|213372|213373|213374|213374|213375|213377|213377|213380|222698|222699|222699|222700|222703|222704|222706|222706|222708|222710|222710|222712|222714|222716|222716|222717|222718|222718|222719|222720|222722|222725|222726|222726|222727|223362|223362|225332|226365|226367|231993|231995|231995|231996|231997|231997|231997|231998|231999|232000|232001|232001|232002|232003|232003|232005|232006|232006|232007|232008|232009|232011|232012|232013|236254|236255|236256|236256|236257|236260|236264|236264|236266|236266|236268|236268|236269|236270|236272|236273|236273|236275|236276|236276|236277|236278|236280|236283|236284|236284|236285|236287|236291|236294|236295|236296|236296|236296|236297|236298|236299|236300|236301|236302|236303|236304|236305|236306|236306|236307|236309|236311|236312|236313|236314|236315|236317|236318|236319|236320|236324|236324|236325|236329|236330|236332|236332|236335|236338|236339|236340|236340|236341|236341|236343|236345|236346|236347|236348|236350|236352|236353|236355|236355|236356|236358|236358|236359|236360|236361|236362|236363|236364|236365|236368|236369|236370|236372|236372|236373|236375|236377|236379|236380|236381|236384|236386|236387|236388|236389|236390|236391|236392|236393|236395|236396|236397|236397|236399|236400|236402|236403|236404|236407|236409|236410|236411|236413|236414|236415|236416|236418|236421|236423|236426|236427|236430|236431|236432|236433|236435|242842|242843|242844|242845|242846|242847|242848|242849|242850|242851|242852|242853|242854|242856|242857|242858|242859|242860|242861|242862|242863|242864|242864|242865|242866|242867|242868|242869|242870|242871|242872|242873|242874|242875|242876|242877|242878|242880|242880|242881|242882|242883|242884|242886|248531|264690|264696|264776|264779|329234|329243|329244|329245|329249|329251|329252|329258|329259|329263|329264|329277|339462|339464|339465|339466|339478|339486|339489|339494|339495|339496|339496|339511|339511|339512|345260|345261|345262|345269|345271|345273|345283|345284|345286|345288|345291|345292|345292|345294|345296|345297|346653|346656|346660|346663|346665|346671|346672|346674|346677|346679|346682|346686|346687|346687|358954|358955|358955|358956|358957|358958|358959|358959|361023|361023|375404|375412|375412|375416|375438|376305|376323|376329|376340|376342|376412|376414|376416|376428|376435|376447|376459|378577|378582|378586|378592|378593|378599|378621|378623|401525|402191|402197|402202|402207|402210|402211|402212|402212|402215|402216|402217|402218|402222|402224|402226|402226|402232|402234|402237|402238|402239|402241|402243|402244|402245|402245|402246|402249|402250|402251|402252|402254|402258|402262|402263|402265|402265|402267|402268|402270|402271|402277|402278|402286|402292|402295|402297|402301|402307|402312|402314|402317|402319|402321|402324|402646|402655|402659|402664|402667|402669|402669|402671|402677|402681|402684|402686|402693|402697|402699|402710|402718|402721|402730|402736|402740|402748|402750|402762|402764|402776|402781|402784|402785|402785|402786|402789|402790|402792|402797|402798|402802|402803|402805|402806|402808|402809|402811|402812|402814|402816|402818|402820|402823|402824|402825|402829|402830|402832|402835|402841|402842|402845|402848|402850|402853|402853|402855|402858|402877|402877|402880|402882|402885|402887|410113|410114|410115|410118|410119|410120|410122|410123|410125|410125|410126|410128|410130|410133|410136|410137|410138|410138|410139|410142|410142|410145|410152|410155|410157|410161|410163|423239|429997|432931|432933|432935|432936|432936|445849|445850|467062|467094|467095|467103|467104|467107|467113|467117|467121|467126|467129|467132|467141|467146|467150|467152|467153|467156|467158|467165|467167|467170|467172|467175|467180|467181|467186|467187|467189|467192|468045|468047|468049|468052|468053|468055|468060|468061|468061|468064|468070|468074|468080|468081|468084|468087|468088|468091|468092|468093|468098|468099|468101|468104|468105|468109|468110|468111|468114|468116|468118|468119|468119|468125|468126|468137|468138|468300|468317|468319|468321|468321|468323|468335|468342|468344|468347|468351|468354|468365|468377|468393|468398|468402|468407|468408|468409|468410|468413|468415|468429|468431|468440|468445|468448|468448|468453|468459|468460|468462|468467|468473|468485|468489|468498|468498|468499|468505|468505|468506|468521|468524|468526|468556|468557|468558|468560|468561|468568|468569|468579|468587|468589|468592|468603|468605|468618|468621|468622|468627|468631|468635|468653|468655|468662|468668|468676|468682|468684|468692|468695|468700|468702|468714|468718|468725|468731|468732|468734|468738|479014|479023|479025|479030|479032|479037|479044|479050|479055|479058|479059|479062|479063|479064|479066|479067|479068|479070|479076|479084|479087|479089|479090|479100|479107|479109|479110|479114|479116|479119|479120|479122|479124|479125|479128|479130|479136|479139|479141|479143|479145|479148|479150|479152|479157|479162|479163|479166|479168|479176|479185|479190|479196|479197|479198|479198|479198|479201|479210|479219|479224|479226|479227|479229|479237|479239|479246|479254|479255|479260|479262|479262|479730|479730|479745|479753|479770|479786|479793|479797|479803|479813|479815|479842|479860|479871|479872|479882|479882|479897|479927|479949|479950|479956|480486|480487|480488|480488|480489|483023|483025|483026|483029|483029|483040|483050|483054|483056|483058|483062|483065|483066|485052|485060|485064|485066|485084|485199|485199|485210|485225|485226|485233|485256|485257|485259|485268|485274|485275|485275|485276|485445|485467|485479|485488|485493|485496|488006|506281|530512|530514|530840|530844|531041|531046|531047|531318|531322|531324|531326|531328|531329|531331|531341|531345|531361|531376|531380|531392|531395|531405|531413|531416|531419|531424|531426|531429|531436|531438|531439|531480|531483|531486|531492|531494|531498|531499|531504|531506|531508|531514|531515|531518|531522|531525|531529|531534|531536|531539|531548|531551|531562|531568|531572|531573|531576|531577|531581|531585|531590|531595|531602|531603|531605|531611|531615|531622|531625|531635|531637|531639|531644|531645|531650|531651|531654|531655|531658|531668|531669|531797|531802|531812|531815|531820|531824|531834|531836|531840|531846|531850|531853|531856|531858|531869|531874|531879|536166|536508|539372|539373|539375|539376|539377|539379|551936|568649|568650|568653|569362|569364|569368|569377|569379|569386|569389|569393|569398|569403|569406|569411|569418|569419|569421|569425|569427|569432|569435|569441|569445|569450|569451|569458|569465|570714|570716|570718|570720|570822|570826|570832|570834|571360|571362|571363|571368|571369|571371|571373|571374|571377|571379|571381|571384|571386|571389|571390|571392|571395|571398|571401|571402|571405|571406|571409|571414|571417|571421|571422|571425|571779|571783|571789|571807|571813|571817|571821|571838|571855|571861|571868|571870|571877|571886|571887|571892|571894|571897|571899|571906|571915|571918|571928|571929|571939|571948|571955|571961|571966|574277|574544|574545|574546|574547|574548|574549|574550|574551|574552|574553|574554|574555|574556|574557|574558|574559|574560|574561|576012|576013|576014|576014|576015|576016|576017|576018|576019|576019|576020|576020|576021|576021|576022|576023|576024|576024|576025|576026|576027|576028|618742|618746|618747|618760|618764|618768|618770|618771|618772|618787|618794|618796|618802|618803|618815|618817|619702|619733|619748|619756|621592|646268|646269|646270|646271|646272|646273|646274|646275|646276|646277|646278|646279|646280|646281|646282|646283|646284|646285|646286|646287|646288|646289|646290|646291|646292|646293|646294|646295|646295|646296|646297|646298|646299|646300|646301|646302|646303|646304|646305|646306|646307|646308|646309|646310|646311|646312|646313|646314|646315|646316|646317|646318|646319|646320|646321|646322|646323|646324|646325|646326|646327|646328|646329|646330|646331|646332|646333|646334|646335|646336|646337|646338|646339|646340|646341|646342|646343|646343|646344|646345|646346|646347|646348|646349|646350|646351|646352|646353|646354|646355|646356|646357|646358|646359|646360|646361|646362|646363|646364|646365|646366|646367|646368|646369|646370|646371|646372|646373|646374|646375|646376|646377|652823|652825|652826|652848|652852|652854|652857|652861|653160|653162|653172|653307|653309|653311|653484|653486|653489|653495|653498|688804|694139|695762|704262|731171|756004|756005|760625|771687|771688|771690|771700|771702|771704|776377|785665|785667|785669|785671|785672|785673|785679|791803|800058|814183|814184|814185|814205|814225|814230|814239|814241|814253|814261|814264|814270|814282|814283|814284|814287|814294|814299|814304|814305|814308|814318|814322|814324|814335|814339|814342|814364|814367|814371|814373|815702|815703|821129|821130|821131|821132|821134|821135|821136|821137|821138|821139|821140|821141|821142|821143|821144|821145|821146|821147|845726|845727|845728|845729|845730|845731|845732|845733|845734|845735|845736|845737|845738|845739|845740|845741|845742|845743|845744|845745|845746|845747|845748|845749|845750|845751|845752|845753|845754|845755|845756|845757|845758|845759|845760|845761|845762|845763|845764|845765|845766|845767|845768|845769|845770|845771|845772|845773|845774|845775|845776|845777|845778|845779|845780|845781|845782|845783|845784|845785|845786|845787|845788|845789|845790|845791|845792|845793|845794|845795|845796|845797|845798|845799|845800|845801|845802|845803|845804|845805|845806|845807|845808|845809|845810|845811|845812|845813|845814|845815|845816|845817|845818|845819|845820|845821|845822|845823|845824|845825|845826|845827|845828|845829|845830|845831|845832|845833|845834|852233|852773|852774|852776|852780|852782|852783|852899|852903|852905|878007|878008|878009|878010|878011|878012|878013|878014|878015|878016|878017|878018|878019|878020|878021|878022|878023|878024|878025|878026|878027|878028|878029|878030|878031|878032|878033|878034|878035|878036|878037|878038|878039|878040|880560|904101|914043|914050|914064|914065|914091|914096|914097|914102|914142|914146|914151|917840|917852|917857|917865|917866|917868|919757|928400|928401|928402|928403|928404|928405|928406|928407|928408|928409|928410|928411|928412|928413|928414|928415|928416|928417|928418|928419|928420|928421|928422|928423|928424|928425|928426|928427|928428|928429|928430|938065|938066|938067|938068|938069|938070|938071|938072|938073|938074|938075|938076|938077|938078|938079|938080|938081|938082|938083|938084|938085|938086|938087|938088|938089|938090|938091|938092|938093|938094|938095|938096|938097|938098|938099|938100|938101|938102|938103|938104|938105|938106|938107|938108|940424|940425|941188|941189|941190|941191|950089|950090|950091|950092|950093|950094|950095|950096|950097|950098|950099|950100|950101|950102|950103|950104|950105|950106|950107|950108|950109|950110|950111|950112|950113|950114|950115|950116|950117|950118|950119|950120|950121|950122|950123|950124|950125|950126|950127|950128|958217|958218|958219|958220|958221|958222|958223|958224|958225|958226|958227|958228|958229|958230|958231|960228|960229|960230|960891", + "text": "Fanconi anemia, complementation group J" + }, + { + "baseId": "19775|19777|22078|22089|22093|22852|22858|22868|22872|24022|24364|24486|27272|27386|27387|27391|27392|27393|27394|27395|27398|27403|27404|27405|27409|27411|27413|27416|27422|27617|27618|27619|27621|27622|27623|28691|28692|28694|28696|28698|28919|29000|29007|29022|32618|32623|32625|32700|32701|32710|32712|32716|32723|39346|40237|40609|40610|45982|45982|45991|46006|46028|46030|46080|46098|46102|46163|46172|46189|46192|46200|46247|46293|46386|46415|46460|46492|46516|46540|46545|46585|46603|46632|46687|46764|46781|50147|52758|52759|52763|52764|53968|54289|54633|65803|65869|66023|66703|67086|67556|68769|68802|68807|68827|68831|68978|69043|69207|69303|69416|69439|69482|69569|69809|69812|69882|69890|69989|69995|70055|70098|70116|70247|70268|82009|96238|96592|96781|98723|99230|106675|133266|133271|133272|133276|133277|133350|133444|133608|133610|133611|133613|133614|133617|133619|133623|133624|133626|133627|133630|133632|133634|133636|133637|133640|133641|133642|133643|133644|133646|133648|133649|133650|133652|133653|133655|133666|133667|136460|136697|136709|136716|136721|137024|137484|137490|137491|137492|137494|137495|137496|137497|137499|137500|139853|139855|139858|139859|139861|139863|140277|140278|140282|140283|140285|140286|140289|150515|150522|150533|150535|150539|150566|150699|150709|150809|150812|150832|151050|151091|151096|151213|151259|151412|151458|151467|151467|151475|151689|151764|151858|151893|151994|152001|152060|152080|152104|152172|152187|152206|152250|152309|152428|152542|152629|152663|152679|152735|153589|153590|153591|153599|153600|153604|153606|153607|153612|153614|153616|153618|153625|153626|153628|153629|153630|153644|153645|153646|153647|153648|153649|153650|171614|171616|176503|177251|180903|180908|180925|180926|180932|180934|180935|180936|180937|180938|180950|180952|180954|180955|180956|180959|180960|180962|180988|180998|181000|181005|181011|181013|181015|183007|183028|183857|185187|185189|185195|185204|185205|185207|185211|185212|185213|185215|185227|185240|185242|185254|185256|185258|185260|185261|185267|185273|185283|185287|185292|185294|185296|185297|185315|185316|185317|185321|185330|185350|185354|185366|185367|185384|185392|186271|187337|208409|213358|213361|213362|213363|213374|213377|213385|213392|213398|215366|222699|222710|222716|222718|222726|223362|225332|231995|231997|232003|232035|233855|235892|236233|236266|236268|236276|236284|236296|236324|236332|236340|236355|236358|236397|236448|236459|236461|236489|236504|236511|245074|249084|249169|260192|260193|261135|261356|262005|262921|262989|345292|358920|358954|358955|358956|358957|358958|358959|359852|360335|360472|362777|362837|362928|363110|363123|363349|363376|363442|363450|363451|363452|363456|363457|363461|363465|363466|363475|363480|363485|363497|363500|363504|363509|363512|363513|363518|363521|363522|363523|363524|363528|363532|363533|363534|363537|363539|363540|363542|363543|363547|363549|363566|363570|363572|390688|402023|402212|402226|402245|402569|402768|402785|402853|402877|403007|406150|410125|410130|410142|410259|410275|419435|419738|419746|420634|420642|420645|420650|420653|420674|429997|445850|462916|467547|468119|468384|468448|468498|469137|469166|479067|479198|479277|479287|479357|479996|480022|480079|480486|480487|480488|480489|483015|485675|487956|532188|539372|539373|539375|539376|539377|539379|551411|551412|572320|574538|574626|609138|609139|616001|619765|622523|622524|622525|622526|622527|622528|622530|622531|622532|622533|622534|622536|622537|622538|622539|622540|622541|622547|622548|622549|622550|622551|622552|622561|622562|622563|622564|622565|622566|622567|622568|622569|622570|622571|622572|622573|622574|622575|622576|622577|622578|622579|622580|622581|622582|622583|622584|622585|622586|622587|622588|622589|622590|622591|622592|622593|622594|622595|622596|622597|622598|622599|622600|622601|622602|622603|622604|622605|622606|622607|622608|622609|622610|622611|622612|622613|622614|622615|622616|622617|622618|622619|622620|622621|622622|622623|622624|622625|622626|622627|622628|622629|622630|622631|622632|622633|622634|622635|622636|622637|622638|622639|622640|622641|622642|622643|622644|622645|622646|622647|622648|622649|622650|622651|622652|622653|622654|622655|622656|622659|622660|622661|622662|622663|622664|622665|622666|622667|622668|622669|622670|622671|622672|622673|622674|622675|622677|622678|622679|622680|845688|918111|972485|972486", + "text": "Neoplasm of ovary" + }, + { + "baseId": "19775|19777|137491|185230|236266|345292", + "text": "BRIP1-Related Disorders" + }, + { + "baseId": "19777|27086|132103|132191|133574|133601|263273|904886|904887|904888|904889|904890|904891|904892|904893|904894|904895|904896|904897|904898|904899|904900|904901|904902|904903|904904|904905|904906|904907", + "text": "Tracheoesophageal fistula" + }, + { + "baseId": "19778|19779|101799|101800|101801|101802|153781|213609|247057|254172|314119|314120|314127|314128|314134|314135|314139|314142|314143|314145|314146|314148|314151|320664|320670|320679|320680|320682|320683|320684|320685|320688|326683|326696|326708|326714|326715|326718|326719|326725|326729|326743|326747|326748|326757|326760|327675|327679|327680|327691|327692|327696|327697|327713|327714|327715|327717|327718|327721|327723|327725|327726|372164|372386|461331|461931|503805|513601|526216|526219|526221|526399|526404|526406|526699|526702|564634|565791|570667|614359|640059|640060|640061|640062|640063|640064|640065|640066|640067|640068|737980|768456|784004|789126|820373|838439|838440|838441|838442|838443|838444|838445|838446|838447|838448|868006|868007|868008|868009|868010|868011|868012|868013|868014|868015|868016|868017|868018|926247|926248|926249|935546|935547|935548|935549|935550|947459|947460|947461|956497|956498|956499|956500", + "text": "Leukocyte adhesion deficiency type II" + }, + { + "baseId": "19780|359719|384602|444220|622386|970874|970875|977233", + "text": "Birk-Barel syndrome" + }, + { + "baseId": "19781|227288|538990|710020", + "text": "Dimethylglycine dehydrogenase deficiency" + }, + { + "baseId": "19785|19786|590480", + "text": "Epidermodysplasia verruciformis, susceptibility to, 2" + }, + { + "baseId": "19787|19788|19789|19790|467383|467600|468423|468434|468888|469184|531860|531867|531875|531906|531959|531964|531974|531985|532237|532241|532268|569795|569797|569799|569801|569805|569816|571686|571687|572350|572362|574645|574647|574648|574649|574651|574654|614446|614447|614448|614449|646788|646789|646790|646791|646792|646793|646794|646795|646796|646797|646798|646800|646801|646802|646803|646804|646806|646808|646810|646811|646812|646814|646816|646821|646822|646823|646825|646826|646827|646828|646830|653047|653532|816343|980486", + "text": "EPIDERMODYSPLASIA VERRUCIFORMIS, SUSCEPTIBILITY TO, 1" + }, + { + "baseId": "19791|788930", + "text": "Striatonigral degeneration infantile" + }, + { + "baseId": "19792|39481|141953|141954|141955|210941|210943|210945|210947|210948|289682|289688|292634|292637|292639|292875|292881|620110|759371|888052|888053|891576", + "text": "Combined oxidative phosphorylation deficiency 5" + }, + { + "baseId": "19793|19794|19795|19796|19797|19798|19799|19800|19801|19802|19803|19804|19805|19806|19807|71449|71450|101516|101517|101519|101520|101523|101525|101527|101528|101529|101530|101531|101533|101534|101535|101536|101537|101540|101541|141645|141646|141647|141649|141650|141651|141652|141653|141655|141657|141659|168021|168022|168023|168024|168025|168026|168029|168031|168032|168033|168034|168035|168036|176934|177065|177329|178161|178387|178960|178962|178965|178968|178969|178970|178975|178979|178980|178981|178982|178987|178988|178990|178991|178993|178994|178996|178998|179004|179005|179007|179008|179010|179011|179012|179013|187148|187149|187150|187151|187152|187153|187154|187155|187156|187157|187158|187159|187160|187161|187162|187163|187164|187165|187166|187167|187168|187169|187170|187171|187172|187173|190877|193629|196021|196023|206846|206847|206848|206849|206850|206852|213524|213525|243902|265870|265872|271504|281933|281934|281938|281946|281948|281976|281977|281983|281984|282545|282557|282563|282607|282609|282627|284214|284224|284268|284272|284291|284496|284510|359383|361508|364137|365376|365386|365543|365545|365553|365558|365562|365568|365576|365581|365583|365590|365757|365759|365771|391349|391416|391419|391602|391604|405296|424640|424988|427883|427885|427887|427889|427893|427895|442547|442923|448525|448695|448699|448703|448705|448706|448708|448710|448712|448713|448714|448717|448718|448726|448735|448789|448792|448797|488152|498650|498654|498656|498659|498875|498911|516342|516344|516345|516355|516411|516418|516420|516423|516426|516428|516436|516437|516446|516454|516456|537690|537691|537692|537693|537694|537695|550349|552050|552051|557514|557516|557518|557520|557522|557524|557526|557563|557565|557567|558719|558721|558723|558725|558727|558729|559206|559208|559210|559212|578917|578959|610477|628448|628449|628450|628451|628452|628453|628454|628455|628456|628457|628458|628459|628460|628461|655141|679737|679738|683392|685839|685840|685841|685842|690743|690744|719275|746783|762196|762197|788742|790046|790047|790048|790049|790050|798481|798482|798483|821843|821844|821845|821846|821847|821848|821849|821850|824759|824760|824761|824762|824763|824764|824765|824766|824767|824768|824769|824770|824771|824772|824773|824774|824775|824776|824777|824778|857644|922239|922240|922241|922242|922243|922244|922245|922246|922247|930800|930801|930802|930803|930804|930805|930806|930807|940654|942230|942231|942232|942233|942234|942235|942236|942237|942238|952632|952633|961589|961590|962877|962915|963122|963498|964019|964164|965956|970709|970710|970711|972781", + "text": "Mowat-Wilson syndrome" + }, + { + "baseId": "19803", + "text": "Hirschsprung disease-mental retardation syndrome, late infantile" + }, + { + "baseId": "19809|71388|71390|861253|861254|861255|861256", + "text": "Imerslund-Gr\u00e4sbeck syndrome 2" + }, + { + "baseId": "19811", + "text": "Hypercarotenemia and vitamin a deficiency, autosomal dominant" + }, + { + "baseId": "19812|19813|19814|19815|19816|19818|19819|19820|238266|280214|280218|280219|280224|280227|280228|280234|280246|280247|280252|280254|280255|280257|280262|280592|280593|280594|280598|280602|280603|280604|280615|280619|280622|280628|280630|280636|280651|280653|280655|280658|280659|280660|280662|281904|281906|281907|281910|281912|281917|281918|281928|281930|281931|281932|281939|281947|281949|281951|282027|282029|282033|282034|282036|282039|391148|391155|391160|447723|447740|447958|448053|448079|510999|511000|515755|515813|515853|515883|557013|557240|557279|558469|627720|627721|627722|627723|627724|627725|672380|683319|685696|685697|685698|685699|685700|685701|685702|689656|690577|780652|780655|780657|794651|818959|823847|823848|850769|864208|864209|864210|864211|864212|864213|864214|864215|864216|864217|864218|864219|864220|864221|864222|864223|864224|864225|864226|864227|864228|864229|864230|864231|865171|865172|921976|921977|921978|921979|930448|930449|930450|930451|952377|952378|952379|960427", + "text": "Familial hypercholesterolemia 4" + }, + { + "baseId": "19821|169750|413614|442344|553158|583132", + "text": "Polymicrogyria with optic nerve hypoplasia" + }, + { + "baseId": "19822|19823|19824|19825|190625|328628|328629|338578|338590|338591|338592|344653|344658|344659|344662|346073|346076|346081|771560|877645|877646|877647|877648|877649|877650|877651|877652|877653|877654|877655|877656|877657|877658|877659|877660|877661|877662|877663|877664|877665|877666", + "text": "Sclerosteosis 1" + }, + { + "baseId": "19826|19827|19828|19829|19832|23469|23483|23485|29229", + "text": "Autosomal recessive Dejerine-Sottas syndrome" + }, + { + "baseId": "19826|19830|19831|19833|47011|47012|47013|135494|135495|135496|135497|135498|135499|142520|205189|213453|213454|213456|213458|213459|213461|222808|222809|243334|243338|243339|243340|243342|245126|245128|245130|245131|245133|245135|245136|245136|245141|268889|333516|333520|333524|333534|333535|333539|333540|333547|333552|333554|333557|333558|333559|333570|343605|343607|343612|343613|343615|343617|343619|343624|343628|343630|348901|348903|348907|348913|348916|348917|348922|348924|348928|348932|348939|348940|348944|349843|349844|349847|349849|349854|349855|349858|349859|349862|349863|349866|349867|349869|349874|349875|349876|376503|377643|379572|379575|403251|403713|403719|403722|403724|468804|469824|469837|470233|470893|470912|533481|533506|538486|538486|540469|573114|577807|622460|622461|625426|625428|625437|648121|684811|689056|689058|694417|788927|798922|847688|847704|882038|882039|882040|882041|882042|882043|882044|882045|882046|882047|882048|882049|882050|882051|882052|882053|882054|882055|882056|882057|882058|882889|882890|905438|919867", + "text": "Charcot-Marie-Tooth disease, demyelinating, type 4F" + }, + { + "baseId": "19833|23473|25490|29208|29209|31791|47013|49436|222886|231988|245013|245128|245136|245137|426772|427125|440400|442658|481416|538486|539028|557010|622460|625000|625001|625014|625026|625039|625040|625057|625073|625088|625381|625382|625387|625388|625389|625390|625392|625393|625394|625395|625405|625423|625544|626198", + "text": "Dejerine-Sottas disease" + }, + { + "baseId": "19836|19837", + "text": "NEUROPATHY, HEREDITARY SENSORY, TYPE IC" + }, + { + "baseId": "19836|204570|244921|271912|321515|321521|321526|321530|321531|321535|321536|321542|321544|321545|321547|321551|321552|321560|321561|321578|321582|321584|321585|321587|321592|321596|321604|321608|321609|321611|321619|321620|321624|321626|330808|330810|330814|330817|330818|330820|330822|330826|330834|330836|330839|330841|330844|330853|330855|330860|330862|330866|330867|330869|330870|330875|330876|330880|330884|330886|330888|337450|337453|337459|337465|337472|337474|337475|337477|337479|337482|337483|337485|337487|337489|337490|337495|337500|337504|337505|337506|337508|337512|337518|337519|337525|337533|337534|337539|339488|339500|339501|339503|339504|339505|339507|339524|339527|339528|339531|339533|339543|339545|339551|339562|339563|339565|339567|339569|339573|339576|339579|339587|339590|339592|339594|339595|339597|339602|339607|339608|339612|339617|373221|373222|373925|374378|376236|376240|376258|421996|433943|445258|463538|463539|463541|463546|463548|464154|464158|464412|464534|464539|464544|464550|464556|464562|464565|504643|504872|505137|505561|513624|528318|528325|528389|528393|528401|528403|528784|528786|528791|528793|528797|566669|566672|566673|568326|569052|569057|572948|572958|572961|609900|625308|642756|642757|642758|642759|642760|642761|642762|642763|642764|642765|642766|642767|642768|642769|652426|652476|652562|652893|656267|702999|725840|820651|820652|841857|841858|841859|841860|841861|841862|841863|841864|841865|841866|841867|841868|841869|841870|841871|852017|872752|872753|872754|872755|872756|872757|872758|872759|872760|872761|872762|872763|872764|872765|872766|872767|872768|872769|872770|872771|872772|872773|872774|872775|872776|872777|872778|872779|872780|872781|872782|872783|872784|872785|872786|872787|872788|872789|872790|872791|872792|872793|876458|919546|927188|927189|936755|941070|948708|948709|948710|957324|957325|981884", + "text": "Hereditary sensory and autonomic neuropathy type IC" + }, + { + "baseId": "19838", + "text": "NEUROPATHY, HEREDITARY SENSORY AND AUTONOMIC, TYPE IC, SEVERE" + }, + { + "baseId": "19839|19840|19841|19842|143025|194439|205763|231722|244554|271540|308911|313601|319383|319389|319967|319969|319970|319975|359759|370961|373125|415204|415205|444531|459274|459599|459600|459678|459680|460164|460167|460170|503202|524674|524680|524687|524919|524920|525020|525025|525201|525206|525208|525212|563305|563306|563310|563314|563316|564115|564118|565976|565980|565984|565986|569171|638394|638395|638396|638397|638398|638399|638400|652226|664449|692700|692701|692702|692703|695451|701085|737235|767508|777783|820169|836285|836286|836287|836288|836289|836290|836291|836292|836293|836294|836295|836296|836297|836298|836299|851353|852528|902510|925635|925636|934828|940942|946681|946682|946683|946684|955900|959923", + "text": "Hereditary sensory and autonomic neuropathy type 1" + }, + { + "baseId": "19839|19840|19841|19842|19844|143024|143025|194439|271540|308901|308902|308904|308908|308910|308911|313574|313578|313579|313580|313582|313590|313591|313601|313607|319360|319362|319363|319370|319372|319383|319389|319963|319965|319967|319969|319970|319975|373125|444531|444532|459680|524687|525020|525206|563314|565984|790918|799595|799596|836287|852528|902504|902505|902506|902507|902508|902509|902510|902511|902512", + "text": "Neuropathy, hereditary sensory and autonomic, type 1A" + }, + { + "baseId": "19842|32213|51184|245116|360806|613539", + "text": "Sensorimotor neuropathy" + }, + { + "baseId": "19843|359759", + "text": "Neuropathy, hereditary sensory and autonomic, type IA, severe" + }, + { + "baseId": "19845|19845|39467|188966|257379|257379|335926|335929|335932|335935|335939|335940|335941|335943|335948|335951|335960|335961|335967|335968|335980|335983|335987|335988|335992|336001|345625|345637|345654|345656|345658|345660|345665|345671|345673|345678|345680|345692|345693|345695|345698|345699|345704|345705|345707|345712|345714|345716|345718|345724|345731|345732|345734|345742|345749|350177|350180|350182|350184|350186|350187|350187|350190|350190|350193|350194|350197|350200|350204|350207|350208|350210|350211|350212|350214|350215|350221|350223|350224|350228|350229|350231|351244|351246|351249|351250|351256|351259|351262|351263|351266|351267|351270|351272|351275|351276|351278|351281|351283|442304|442305|442305|470472|470472|470961|471454|471454|471456|471456|533583|533585|533631|533643|533643|533650|533651|534171|571320|572940|572941|573579|575121|648778|648779|648780|648781|653639|694572|694573|705569|780056|821335|848482|848483|848484|848485|848486|886346|886347|886348|886349|886350|886351|886352|886353|886354|886355|886356|886357|886358|886359|886360|886361|886362|886363|886364|886365|886366|886367|886368|886369|886370|886371|886372|886373|886374|886375|886376|886377|886378|886379|886380|886381|886382|886383|886384|886385|886386|886387|886388|886389|886390|886391|886392|886393|886394|886395|886396|886397|886398|886399|886400|886401|887477|887478|929224|929225", + "text": "Amyotrophic lateral sclerosis type 8" + }, + { + "baseId": "19845|19845|188966|257379|345654|350187|350190|442304|442305|470472|470961|471454|471456|533583|533585|533631|533643|533650|533651|534171|571320|572940|572941|573579|575121|648778|648779|648780|648781|653639|694572|694573|705569|780056|821335|848482|848483|848484|848485|848486|929224|929225", + "text": "Spinal muscular atrophy, late-onset, finkel type" + }, + { + "baseId": "19845", + "text": "Amyotrophic lateral sclerosis, typical" + }, + { + "baseId": "19846", + "text": "Amyotrophic lateral sclerosis-parkinsonism/dementia complex 1, susceptibility to" + }, + { + "baseId": "19846|205777|264787|861326|861327|861346|861347|861364|861413", + "text": "Juvenile amyotrophic lateral sclerosis" + }, + { + "baseId": "19847|19848|19849|19850|192436|227415|337905|337906|337907|337910|337913|347516|347518|347519|347522|347523|351419|351420|351423|351426|351428|352419|352420|352421|352426|352433|352434|438226|481385|508941|534312|588966|620686|620687|649454|649455|649456|649457|649458|649459|694717|694718|705903|849298|891135|891136|891137|891138|891139|891140|891141|891142|891143|891144|891145|891146|891147|891148|891820|939300|951458|951459|951460|959085|959086", + "text": "Parkinson disease 15" + }, + { + "baseId": "19851|19852|19853|19855|19856|19856|19857|19857|19858|19858|19859|19860|19860|19864|19865|19867|19868|19869|19869|19870|19871|19872|19873|19874|19874|19875|19877|19878|19879|19879|19881|19881|23489|38434|52654|52655|52656|52656|52657|52659|52661|52662|52664|52665|52666|52668|52668|52669|52670|52671|52673|52674|52675|52677|52678|52679|52680|52682|52684|52685|52686|52687|52688|52690|52691|52693|52694|52694|52695|52696|52697|52698|52699|52700|52701|52702|52704|52707|52708|52709|52710|52712|52713|52714|52715|52715|52716|52719|52720|52722|52724|52726|52727|52728|52729|52732|52733|52734|52734|52735|52737|52738|52739|52740|52742|52743|102920|174024|174027|174031|174032|174033|174034|174158|174159|174162|174165|174167|186722|186723|186724|186725|186726|186727|186728|186729|186730|186731|186732|186733|186733|186734|186735|186736|186737|186738|186739|186740|186741|186742|196183|201049|201055|227307|229532|229533|229534|229537|229539|229541|229543|229545|229545|252559|267149|272115|276776|276786|277042|277056|277061|277062|277618|277644|277648|277682|277773|301409|301412|301413|301414|301427|301428|301429|301436|301439|302958|304625|304626|304627|304628|304629|304633|304659|304660|304662|304663|304664|304680|304684|309254|309262|309273|309281|309287|309294|309295|309297|309304|309451|309452|309453|309457|309458|309459|309464|309466|357526|357527|357528|357529|357530|357531|357532|357533|357534|357535|357536|357537|357538|357539|357540|357541|357542|357543|357544|357545|357546|357547|357548|357549|357550|357551|357552|357553|357554|368833|369418|389226|389229|421612|438847|439903|439905|439906|442645|493530|496881|496919|496920|515169|544002|544004|544005|544006|544009|544015|544031|544032|544034|544036|544039|544042|544045|544048|544050|544051|544053|544054|544067|544072|544077|544080|544086|544087|544090|544095|544096|544101|544283|544285|544290|544299|544301|544308|544310|544311|544312|544316|544324|544325|544334|544335|544337|544338|544339|544340|544343|544345|544346|544348|544351|544352|544359|544360|544361|544366|544368|544369|544370|544373|544375|544376|544377|544379|544380|544382|544385|544386|544391|544393|544395|544400|544402|544406|544409|544412|544415|544422|544424|544425|544427|544433|544434|544435|544442|544442|544448|544449|544452|544453|544456|544458|584003|615803|654475|679201|722230|730452|750330|765973|765977|765978|765979|782722|787521|801644|801645|816404|832780|897176|897177|897178|897179|897180|897181|897182|897183|897184|897185|897186|897187|897188|897189|897190|897191|897192|897193|897194|897195|897196|897197|897198|897199|897200|897201|897202|897203|897204|897205|897206|897207|897208|897209|897210|897211|897212|897213|900297|900298|970056|978378|978379|978380|978381", + "text": "Pendred syndrome" + }, + { + "baseId": "19854|19855|19856|19856|19857|19857|19858|19858|19859|19860|19860|19861|19862|19863|19864|19865|19868|19869|19869|19873|19874|19877|19878|19879|19879|19880|19881|19881|22508|22509|23488|23489|38434|52654|52655|52656|52657|52659|52661|52662|52664|52666|52668|52668|52677|52679|52684|52685|52688|52693|52694|52694|52695|52696|52698|52701|52702|52707|52713|52714|52715|52715|52716|52724|52726|52727|52731|52734|52735|52742|52743|102920|134763|134764|137037|137038|141684|141685|174031|174032|174158|174159|186726|186727|186731|186733|186733|186734|186735|186737|186740|186741|192326|192326|192437|196183|201049|201049|201052|201055|201055|201057|201057|201062|227307|229532|229541|229545|238152|251840|266314|269636|270984|271776|274298|276764|276765|276766|276771|276772|276775|276777|276778|276779|276780|276787|276788|277031|277033|277034|277037|277043|277044|277057|277064|277070|277071|277073|277614|277615|277617|277626|277643|277669|277676|277681|277683|277684|277687|277768|277769|277772|277774|277775|277778|277779|277782|296819|296820|296823|298748|298759|298761|298762|298764|298766|298781|298785|298790|301409|301412|301413|301414|301427|301428|301429|301436|302959|302975|302985|302988|303131|303132|303135|303136|303137|303144|304625|304626|304627|304628|304633|304659|304660|304662|304663|304664|304680|304684|309254|309262|309273|309281|309287|309294|309295|309297|309304|309451|309452|309453|309457|309458|309459|309464|357529|357534|357535|357540|357553|364563|364622|369418|389229|404601|433920|439899|439900|439901|439902|439903|439904|439905|439906|439907|439908|439909|439910|442645|489073|491207|515169|544005|544101|544308|544316|544369|544375|544380|544382|544391|544442|584003|615796|615797|615798|615799|615800|615801|615802|615803|654475|679192|679193|679194|679195|679196|679197|679198|679199|679200|679202|679203|679204|699015|722230|749419|765977|801644|862502|862503|862504|862505|862506|862507|862508|862509|862510|862511|862512|862513|862514|862515|862516|862517|862518|862519|862520|862521|862522|862523|862524|862525|862526|862527|862528|862529|862530|862531|862532|862533|862534|862535|893858|893859|893860|893861|893862|893863|893864|893865|893866|893867|893868|893869|893870|893871|893872|893873|893874|893875|893876|897176|897177|897178|897179|897180|897181|897182|897183|897184|897185|897186|897187|897188|897189|897190|897191|897192|897193|897194|897195|897196|897197|897198|897199|897200|897201|897202|897203|897204|897205|897206|897207|897208|897209|897210|897211|897212|897213|900297|900298", + "text": "Deafness, autosomal recessive 4, with enlarged vestibular aqueduct" + }, + { + "baseId": "19856|19857|19858|19859|19860|19864|19874|19877|19878|19881|52665|186731|229545|620796|975897", + "text": "SLC26A4-Related Disorders" + }, + { + "baseId": "19878|21885|23308|29165|29190|45263|45357|45358|52071|52182|52997|54849|54851|54852|54853|54854|54857|54862|54864|54867|54871|54874|54875|54876|54878|54882|54882|54886|54888|54892|54898|67638|67758|77939|78562|99385|174047|177380|179122|179133|188550|188574|188722|189798|196689|196972|198498|224349|224519|225032|229564|252655|266688|281616|302196|302212|302215|302216|302224|305396|305405|305406|305426|305434|305440|305443|305444|305445|305447|310221|310227|310228|310229|310234|310323|310325|310327|310328|310329|310346|310347|310357|360891|369358|405107|424509|431889|456504|456900|457546|457592|471375|480667|480668|480669|480670|480671|480672|480673|480674|480675|480676|480677|480678|480679|480680|480681|480682|480683|480684|480685|480686|480687|480688|480689|480690|480691|480692|480693|480694|480695|480696|480697|480698|480699|480700|480701|480702|480703|480704|480705|480706|480707|480708|480709|480710|480711|480712|480713|480714|480715|480716|480717|480718|480719|480720|480721|480722|480723|480724|509882|511090|897682|897683|897684|897685|897686|897687|897688|897689|897690|897691|897692|897693|897694|897695|897696|897697|897698|897699|897700|919090", + "text": "Wolff-Parkinson-White pattern" + }, + { + "baseId": "19882", + "text": "CONGENITAL DISORDER OF GLYCOSYLATION, TYPE IIf, MODIFIER OF" + }, + { + "baseId": "19885|19886|19887|101375|101376|101377|101378|101379|101382|101383|101385|101388|101390|101390|142411|142412|142413|142414|142415|142417|142418|142420|142422|142426|142428|142429|142430|169585|169586|169587|169589|169590|169591|169593|169594|169595|169596|169598|169599|169599|169600|169601|169602|188053|194448|195710|203566|203574|203578|203586|203593|203595|203603|203621|203627|208613|208617|208619|269764|269764|334102|349265|349267|350235|350236|350237|350239|350241|350243|350248|377606|377883|379617|403779|430258|490857|551744|570954|573264|575017|575020|580406|620912|648288|689148|798757|802226|847905|882328|882329|882330|882331|882332|882333|882334|882917|882918|966010|966011|966012|971139|976517", + "text": "Early infantile epileptic encephalopathy 10" + }, + { + "baseId": "19886|101390|169599|185664|185665|185666|188053|203593|203595|269764|403779|551744|573264|575017|575020|578568|679847", + "text": "Ataxia-oculomotor apraxia 4" + }, + { + "baseId": "19886|39601|83720|101374|101375|101376|101377|101378|101379|101380|101381|101382|101383|101384|101385|101386|101388|101390|101585|135344|135346|135348|135350|135351|135353|135354|135355|135356|135357|135358|135359|135360|135361|135362|135363|142411|142412|142413|142414|142415|142417|142419|142420|142421|142422|142424|142425|142426|142428|142429|169586|169587|169589|169590|169591|169594|169596|169599|169601|177967|185664|188053|191405|191561|191690|191824|192675|192990|194448|194953|195359|195710|196009|196283|203566|203568|203571|203573|203574|203575|203576|203577|203578|203580|203581|203584|203585|203587|203590|203592|203593|203594|203598|203601|203604|203608|203610|203611|203612|203613|203616|203619|203621|208613|208617|208619|208711|237071|243593|243594|257444|257445|267446|269129|269764|271299|272504|272782|336426|336429|336450|336464|346145|346148|346150|346152|346169|350241|350451|350453|350454|350455|350458|350460|350465|350468|350469|350470|350471|350473|350474|350476|350482|351497|351499|351502|351503|351507|351510|351514|351517|351519|351520|351521|351525|351528|351530|351532|351537|360438|364121|376665|376673|376689|377868|379616|379617|403350|403695|403697|403699|403701|403704|403779|403781|403791|403856|404208|404211|404213|404230|404234|410653|410658|410663|415665|422295|426322|430415|430416|442240|446171|446174|469015|469504|469507|469509|469511|469519|469969|469972|470274|470462|470464|470479|470484|470489|470552|470560|470563|470568|471074|471115|471116|471119|471122|471130|471532|471541|471542|471548|471553|490855|491081|493596|507125|507128|507929|533137|533139|533143|533151|533259|533277|533278|533282|533284|533285|533287|533471|533511|533693|533695|533698|533700|533709|533713|533726|533733|533740|533744|533746|533747|533752|533755|533757|533760|533762|533764|533769|534319|534321|534324|539099|570945|570949|570950|570954|571428|571430|571432|571441|571442|571444|571450|572625|572629|572995|573000|573003|573005|573006|573264|573269|573274|573276|573698|573710|573711|575014|575015|575016|575017|575019|575020|575141|575142|575143|578568|580451|580455|580619|580624|580698|580700|584318|587698|614481|620921|648286|648287|648288|648289|648290|648291|648292|648293|648294|648295|648296|648297|648298|648299|648300|648301|648302|648303|648304|648305|648306|648307|648864|648865|648866|648867|648868|648869|648870|648871|648872|648873|648874|648875|648876|648877|653197|653626|684899|684900|689146|689147|689149|689150|689228|689229|689231|689234|689235|689236|689237|690237|690239|694606|694607|694608|694609|742565|757713|760920|772817|772821|773268|773275|776707|786476|802232|821281|821282|821314|821315|821348|821349|821350|821351|847885|847886|847887|847888|847889|847890|847891|847892|847893|847894|847895|847896|847897|847898|847899|847900|847901|847902|847903|847904|847905|847906|847907|848629|848630|848631|848632|848633|848634|848635|848636|848637|848638|848639|848640|848641|848642|848643|848644|848645|848646|848647|848648|848649|848650|848651|848652|848653|848654|848655|848656|848657|848658|848659|851855|852393|852886|852987|886561|886562|886563|886564|886565|886566|886567|886568|886569|886570|886571|886572|886573|886574|886575|886576|886577|886578|886579|886580|886581|886582|886583|886584|886585|886586|886587|886588|886589|886590|886591|886592|886593|886594|886595|886596|886597|886598|886599|886600|886601|886602|886604|887495|929047|929048|929049|929050|929051|929052|929272|929273|929274|929275|929276|929277|929278|929279|938786|938787|938788|938789|938790|938791|938792|938793|938794|938795|938796|938797|938798|939061|939062|939063|939064|939065|939066|939067|940489|941238|941239|941240|941256|950870|950871|950872|950873|951182|951183|951184|951185|951186|951187|951188|958698|958699|958700|958701|958702|958703|958925|958926|958927|958928|958929|958930|958931|960299|960925|960948", + "text": "Early infantile epileptic encephalopathy 12" + }, + { + "baseId": "19889|19890|19891|53251|53252|53253|53254|53255|53256|53257|75452|176237|176360|187219|187220|187221|193735|231119|336750|336755|336757|336759|336765|336766|346418|346422|346427|346428|350644|350645|350646|350647|350648|350649|351699|351700|351701|351704|351705|351708|351709|351712|351713|590337|886751|886752|886753|886754|886755|886756|886757|886758|886759|886760|886761|886762|886763|886764|886765|886766|887504|982228", + "text": "Deafness, autosomal recessive 29" + }, + { + "baseId": "19892|19894|19895|19897|19899|19900|19902|19903|19905|19906|19909", + "text": "Blepharophimosis, ptosis, and epicanthus inversus syndrome type 1" + }, + { + "baseId": "19892|19893|19896|19897|19898|19904|19905|19908|19910|171757|171758|171759|178772|178773|178774|178776|178777|178778|250961|250962|354103|354104|354105|354106|354107|354108|354109|354110|354111|354112|354113|354114|354115|354116|354117|354118|354119|354120|354121|354122|354123|354124|354125|354126|354127|354128|354129|354130|354131|354132|354133|354134|354135|354136|354137|354138|354139|354140|354141|354142|354143|354144|354145|354146|354147|354148|354149|354150|354151|354152|354153|354154|354155|362075|384478|427126|550591|622791|622792|622793|622794|622795|622796|622797|622798|622799|622800|622801|622802|622803|622804|622805|622806|622807|622808|622809|622810|622811|622812|622813|622814|622815|622816|622817|622818|622819|622820|622821|622822|622823|622824|622825|622826|622827|818224", + "text": "Blepharophimosis, ptosis, and epicanthus inversus" + }, + { + "baseId": "19893|19896|19897|19898|19900|19901|39464", + "text": "Blepharophimosis, ptosis, and epicanthus inversus syndrome type 2" + }, + { + "baseId": "19893", + "text": "Blepharophimosis, ptosis, and epicanthus inversus, type II with Duane retraction syndrome" + }, + { + "baseId": "19907|19908|19910|494916|513226", + "text": "Premature ovarian failure 3" + }, + { + "baseId": "19911|19912|19913|19914|19915|19916|19917|19918|19919|19920|205160|253619|253623|309005|309009|313767|313770|313771|319579|319583|319584|320160|320168|723674|723675|902595|902596|902597|902598|902599|902600|902601|902602|903447|903448|903449", + "text": "Testosterone 17-beta-dehydrogenase deficiency" + }, + { + "baseId": "19913|19914|19916|205160|259931|485709|485745|485746|485747|485748|485749|485750|485751|485752", + "text": "Pseudohermaphroditism" + }, + { + "baseId": "19923", + "text": "HYPERTENSION, INSULIN RESISTANCE-RELATED, SUSCEPTIBILITY TO" + }, + { + "baseId": "19925|19931", + "text": "Pituitary adenoma predisposition" + }, + { + "baseId": "19925|19926|19927|19928|19929|19930|19931|19932|19933|49580|49581|49582|49583|49584|49585|49586|49587|49588|49589|49590|49591|49592|49593|49594|49595|49596|49597|49598|49599|49600|49601|49602|49603|49604|49605|49606|49607|49608|49609|49610|49611|49612|49613|49615|49616|49617|49618|49619|49620|49621|49622|49623|49624|49625|49626|49627|49628|49630|49631|49632|49634|49635|49636|49637|49638|49639|254274|254275|254276|314891|314892|321250|321657|321659|321664|321673|321676|321678|321679|327770|327776|328842|328845|328849|328850|328858|328859|440017|440018|476010|476326|476355|810866|810885|810887|810903|810904|810914|868413|868414|868415", + "text": "Somatotroph adenoma" + }, + { + "baseId": "19932|30944|171718|171719|171720|171721|476010|476355", + "text": "Pituitary dependent hypercortisolism" + }, + { + "baseId": "19932", + "text": "Dopamine agonist response" + }, + { + "baseId": "19935", + "text": "Acheiropodia" + }, + { + "baseId": "19936|19938|19939|19941|19942|19945|19946|39453|39454|131903|138840|267812|268089|302229|302231|302235|302256|302261|302262|302264|302265|302269|302271|302272|302280|302281|302284|302285|302286|302290|302292|302294|302295|305453|305454|305456|305458|305461|305463|305480|305482|305484|305501|305504|305505|305506|310238|310241|310242|310248|310256|310271|310272|310273|310280|310282|310283|310284|310290|310295|310307|310313|310335|310360|310364|310365|310366|310373|310375|310377|310378|310386|310389|310395|310399|310400|310406|310407|310408|310415|310420|310429|310431|310432|310436|353808|897701|897702|897703|897704|897705|897706|897707|897708|897709|897710|897711|897712|897713|897714|897715|897716|897717|897718|897719|897720|897721|897722|897723|897724|897725|897726|897727|897728|897729|897730|897731|897732|897733|897734|897735|900334", + "text": "Polydactyly, preaxial II" + }, + { + "baseId": "19937|131903|165717|165719", + "text": "Tibia, hypoplasia or aplasia of, with polydactyly" + }, + { + "baseId": "19939|19941|19942|19945|131903", + "text": "Triphalangeal thumb" + }, + { + "baseId": "19940|19943|310236|310274|310336|310388|310404|310438", + "text": "Triphalangeal thumb polysyndactyly syndrome" + }, + { + "baseId": "19944|165718|576248", + "text": "Syndactyly, type IV" + }, + { + "baseId": "19947|19948|34370|34371|34372|49674|103705|103706|103707|141830|141831|141833|141834|141836|141837|141839|141840|141841|232037|232038|232039|232040|232044|232045|232047|232049|232050|232055|232058|232059|245082|245085|245086|245087|256646|264723|330937|330947|330954|330957|330967|330976|330982|330983|330984|330988|330992|330994|330999|331000|331005|331010|331012|331014|331017|331018|331019|331023|331031|331032|331038|331045|331047|331048|331049|331053|331054|331056|331060|341219|341226|341227|341251|341252|341261|341262|341276|341277|341285|341290|341296|341297|341299|341300|341303|341305|341307|341309|341313|341314|346756|346757|346758|346759|346761|346765|346766|346767|346770|346771|346774|346776|346780|346794|346795|346802|346804|346807|346808|346809|346813|346817|346820|346828|346831|346834|346845|346848|346850|346853|348041|348042|348043|348044|348045|348046|348047|348050|348053|348057|348058|348059|348060|348061|348062|348065|348070|348072|348077|348078|348080|348081|348083|348084|348090|348091|348096|375857|375858|375859|376754|376761|433667|433668|445948|467909|468811|468814|469219|469237|469627|469633|491476|506897|512877|532173|532180|532182|532185|532186|532269|532270|532564|532567|532580|532589|539079|570061|570066|570072|571852|571856|572524|572528|572571|574715|610124|614450|620895|620896|647111|647112|647113|647114|647115|647116|647117|647118|647119|647120|647121|647122|647123|647124|652885|653549|669717|694259|727684|731213|772100|800079|800080|800081|800082|821181|821182|846720|846721|846722|846723|846724|846725|846726|846727|846728|846729|846730|846731|846732|846733|846734|846735|846736|852270|879029|879030|879031|879032|879033|879034|879035|879036|879037|879038|879039|879040|879041|879042|879043|879044|879045|879046|879047|879048|879049|879050|879051|879052|879053|879054|879055|879056|879057|879058|879059|879060|879061|879062|879063|879064|879065|879066|879067|879068|879069|879070|879071|879072|879073|879074|879075|879076|879077|879078|879079|879080|879081|879082|879083|879084|880642|880643|928669|928670|928671|928672|938393|938394|940454|950476|950477|950478|950479|950480|950481|958449|958450|958451|982136|982137|982138", + "text": "Majeed syndrome" + }, + { + "baseId": "19949|19950|19951|19952|19953|102391|250096|250097|250098|250102|250104|250106|250108|281682|281684|281685|281686|281691|281692|281702|281704|281710|281715|281717|281718|282336|282337|282338|282341|282342|282343|282356|282357|282358|282364|282372|282373|283743|283748|283750|283754|283758|283760|283761|283777|283781|283782|283783|283790|283801|283802|283806|283812|283813|283814|284008|284010|284013|284016|284018|284019|284025|284032|284033|284035|284043|284060|284066|284073|620027|653925|653926|707688|707689|798480|880917|880918|880919|880920|880921|880922|880923|880924|880925|880926|880927|880928|880929|880930|880931|880932|880933|880934|880935|880936|880937|880938|880939|880940|880941|880942|880943|880944|880945|880946|880947|880948|880949|880950|880951|880952|880953|880954|880955|880956|880957|880958|880959|880960|882788|882789|882790|961501", + "text": "Myoglobinuria, acute recurrent, autosomal recessive" + }, + { + "baseId": "19954|19955|19955|19956|19957|19960|19961|19964|19966|19967|19971|19972|19972|53278|53279|53280|53281|53282|53283|55024|55025|55026|55031|55032|55037|55038|55040|55042|55045|55047|55048|55050|55052|55055|55056|55058|55060|55061|55062|55063|55067|55069|55070|55071|55073|55074|55076|55077|55077|55079|55082|55084|55088|55089|55090|55092|55093|55095|55096|55097|55099|55099|55100|55101|55102|55103|55104|55105|55106|55107|55108|55109|55110|55112|55112|55114|55120|55121|55122|55125|55126|55127|55129|55129|55130|55131|55136|55138|55139|55141|55142|55143|55147|55149|55150|55151|55152|55157|55161|55162|55165|55166|55167|55171|55172|55177|55180|55181|55182|55183|55184|55185|55186|55186|55187|55189|55191|55193|55196|55197|55197|55199|55201|55202|55203|55207|55208|55210|55222|55223|55224|55226|55227|55230|55232|55233|55236|55237|55239|55241|55243|55244|55245|55246|55247|55629|55640|101920|137041|137042|137043|140405|174676|174678|174683|174702|174719|174950|174952|174956|174958|174964|174965|174966|174966|174976|174977|174981|174982|174983|174991|175000|175002|175007|175133|175248|175252|175253|175257|175260|175264|175275|175278|175279|175285|175289|177131|177262|177262|177561|191834|191947|192050|194583|194667|195531|195802|226531|226539|228232|229845|229854|229855|229864|229867|229870|229873|229873|229883|229884|229886|229890|229902|229903|229907|253826|266037|266983|268780|269641|310646|310659|310668|310674|310687|310688|310691|310693|310695|310703|310704|310713|310714|310717|310726|310727|310729|310731|310736|310739|310742|310743|310745|310747|315907|315920|315925|315926|315927|315928|315929|315930|315942|315946|315947|315949|315971|315975|315976|315981|315982|315987|315990|316006|316010|316021|316031|316044|316047|321704|321718|321998|322001|322002|322004|322005|322010|322011|322034|322036|322048|322049|322050|322059|322061|322073|322079|322081|322087|322088|322089|322090|322102|322105|322106|322108|322644|322645|322647|322654|322656|322658|322659|322668|322674|322681|322684|322685|322686|322687|322694|322701|322704|322709|322710|322711|322712|322713|322714|322725|322726|353137|353139|353147|353148|384487|404788|407901|413286|444640|488663|488812|496542|496949|496950|497151|497160|513307|513308|513309|513310|536796|551563|551564|576351|576352|588232|590298|609761|620367|656013|681817|752219|767923|767925|767926|767935|787689|837194|837234|857242|866114|866115|866116|866117|866118|866119|866120|866121|866122|866123|866124|866125|866126|866127|866128|866129|866130|866131|866132|866133|866134|866135|866136|866137|866138|866139|866140|866141|866142|866143|866144|866145|866146|866147|866148|866149|866150|866151|866152|866153|866154|866155|866156|866157|866158|866159|866160|866161|866162|866163|866164|866165|866166|866167|866175|868487|868488|868489|868490|868491|868492|868493|868494|868495|868496|868497|868498|906129|919273|919274|919275|919276|919277|919278|976659", + "text": "Usher syndrome type 1D" + }, + { + "baseId": "19955|55026|55042|55045|55048|55057|55060|55077|55079|55138|55157|55183|55186|55205|55241|55243|99987|174991|175248|175260|175275|175279|175285|175289|191947|192050|229864|229867|229873|229883|229890|266983|269641|310668|310674|310688|310691|310695|310704|310717|310726|310729|310731|310736|310739|310742|310743|310745|310747|315906|315907|315920|315925|315926|315927|315928|315930|315942|315946|315947|315975|315976|315981|316006|316010|316021|316031|322001|322004|322010|322034|322036|322048|322059|322073|322087|322088|322089|322090|322101|322105|322109|322644|322645|322646|322647|322651|322654|322658|322668|322674|322686|322701|322709|322710|322711|322712|322713|322725", + "text": "CDH23-Related Disorders" + }, + { + "baseId": "19955|19958|19959|19961|19961|19962|19963|19966|19967|19968|53278|53279|53280|53281|53282|53283|55024|55025|55026|55031|55032|55037|55038|55040|55042|55045|55047|55048|55050|55052|55055|55056|55058|55060|55061|55062|55063|55067|55069|55070|55071|55073|55074|55076|55077|55077|55079|55082|55084|55088|55089|55090|55092|55093|55095|55096|55097|55099|55099|55100|55101|55102|55103|55104|55105|55106|55107|55108|55109|55110|55112|55112|55114|55120|55121|55122|55125|55126|55127|55129|55129|55130|55131|55136|55138|55139|55142|55143|55147|55149|55150|55151|55152|55157|55161|55162|55165|55166|55167|55171|55172|55177|55180|55181|55182|55183|55184|55185|55186|55186|55187|55189|55191|55193|55196|55197|55197|55199|55201|55202|55203|55207|55208|55210|55222|55223|55224|55226|55227|55230|55232|55233|55236|55237|55239|55241|55243|55244|55245|55246|55247|101920|140405|174676|174678|174683|174950|174952|174956|174958|174964|174965|174966|174966|174976|174977|174981|174982|174983|174991|174996|175000|175002|175007|175248|175252|175253|175257|175260|175264|175275|175278|175279|175285|175289|177131|177262|177262|177561|191834|191947|192050|194583|194667|195531|195802|228231|228232|229845|229855|229864|229867|229870|229873|229873|229883|229884|229886|229890|229894|229897|229902|229903|229907|237615|253826|266983|268780|269641|310646|310659|310668|310674|310687|310688|310691|310693|310695|310703|310704|310713|310714|310717|310726|310727|310729|310731|310736|310739|310742|310743|310745|310747|315907|315920|315925|315926|315927|315928|315929|315930|315942|315946|315947|315949|315971|315975|315976|315981|315982|315987|315990|316006|316010|316021|316031|316044|316047|321998|322001|322002|322004|322005|322010|322011|322034|322036|322048|322049|322050|322059|322061|322073|322079|322081|322087|322088|322089|322090|322102|322105|322106|322108|322644|322645|322647|322654|322656|322658|322659|322668|322674|322681|322684|322685|322686|322687|322694|322701|322704|322709|322710|322711|322712|322713|322714|322725|322726|353137|353139|353147|353148|362230|389232|389233|389234|389235|389236|389237|389238|404790|407901|413286|437859|439882|439911|439912|439913|439914|439915|439916|439917|439918|444640|488663|488812|496542|497151|497160|536796|551778|588232|609761|610567|612090|615810|615811|615838|615839|620367|620368|656013|752219|767923|767925|767926|767935|787689|837194|837234|857242|866114|866115|866116|866117|866118|866119|866120|866121|866122|866123|866124|866125|866126|866127|866128|866129|866130|866131|866132|866133|866134|866135|866136|866137|866138|866139|866140|866141|866142|866143|866144|866145|866146|866147|866148|866149|866150|866151|866152|866153|866154|866155|866156|866157|866158|866159|866160|866161|866162|866163|866164|866165|866166|866167|866175|868487|868488|868489|868490|868491|868492|868493|868494|868495|868496|868497|868498|966361|976659", + "text": "Deafness, autosomal recessive 12" + }, + { + "baseId": "19955|55055|55077|55099|55108|55112|55142|55165|55166|55186|55197|55241|101920|174966|175253|177262|195531|229873|322073|407901|413285|431528|431529|431530|431531|919284|976659", + "text": "Pituitary adenoma 5, multiple types" + }, + { + "baseId": "19964|19965|19973|55611", + "text": "USHER SYNDROME, TYPE ID/F, DIGENIC" + }, + { + "baseId": "19967|21280|21650|21652|32039|32041|32042|32043|32044|32045|32046|32048|32049|32050|32053|32055|32062|32066|32068|32071|34237|34239|34240|34241|44943|52304|52356|52371|52377|53882|53884|53898|53899|53902|53904|53907|53912|53913|53914|53921|53922|53923|53930|54298|54330|54481|54484|55056|55106|57422|75292|100288|169014|174003|174149|174154|175072|175075|175091|175360|175361|175904|176305|176463|186857|186859|186864|190031|204595|227350|228470|229894|229966|230518|230519|237597|237625|266218|271402|358131|358134|358135|362175|375519|407904|413167|421956|441576|445123|445124|489962|496205|508743|546404|546920|546940|576370|576371|581737|609078|791171|792676|857346|918287|963437|963438|963439|966545|966546|966867|966868", + "text": "Nonsyndromic hearing loss and deafness" + }, + { + "baseId": "19969|19970|19971|19972|19972|19973|19977|55601|55604|55605|55606|55607|55609|55611|55613|55614|55615|55616|55617|55618|55619|55620|55621|55622|55623|55625|55629|55629|55631|55639|55640|55642|55643|55645|55647|55650|55657|55662|55663|55664|55666|55669|55670|55672|55673|55674|55676|55678|128634|132045|174713|174714|174715|174717|174718|174719|174719|174948|175117|175123|175125|175127|175131|175132|175133|177914|178275|186795|192697|214844|226531|229793|229807|229809|229810|229813|238042|238043|266037|268643|268671|275030|315651|321687|321704|321718|321718|357840|357841|357842|357843|357844|357845|357846|357847|357848|357849|357850|357851|357852|357853|357854|357855|357856|357857|357858|357859|357860|357861|357862|357863|357864|357865|357866|357867|357868|357869|357870|357871|357872|357873|357874|373399|404788|407863|415224|444618|490591|540589|540590|540591|540592|540593|540594|540595|540596|540597|545096|545097|545099|545102|545105|545107|545108|545109|545111|545114|545118|545121|545122|545124|545127|545130|545144|545154|545159|545167|545172|545174|545186|545187|545191|545200|545206|545209|545210|545212|545213|545215|545217|545219|545222|545230|545235|545241|545243|545250|545252|545260|545264|545269|545270|545272|545276|545281|545283|545298|545302|545303|545305|545306|545439|545442|545445|545447|545450|545455|545461|545464|545465|545470|545473|545478|545480|545482|545486|545488|545489|545491|545492|545494|545496|545497|545498|545501|545502|545504|545505|545506|545507|545508|545509|545511|545514|545516|545517|545521|545522|545524|545527|545529|545531|545535|545536|545538|545539|545542|545544|545547|545548|545549|545552|545554|545555|545558|545559|545563|545564|545567|545568|545571|545573|545575|545576|545577|545579|545581|545583|545585|545587|545588|545590|545592|545594|545596|545598|545599|545601|545602|545604|545606|545608|545618|545619|545623|545627|545629|545631|545634|545636|545640|545644|545645|545652|545653|545725|545729|545731|545733|545742|545746|545748|545751|545755|545757|545758|545760|545761|545762|545764|545765|545775|545779|545780|545785|545795|545796|545797|545799|545801|545803|545806|545819|545829|545834|545835|545836|545839|545850|545856|545858|545861|545863|545868|545871|545873|545880|545883|545885|545889|545891|545893|545895|545901|545904|545909|545912|545913|545915|545923|545927|545929|545931|549462|578485|614603|614604|654596|712405|737518|737520|744608|752141|759941|767801|767802|767806|767807|767810|767811|767813|767817|767818|767821|775524|783618|783622|783623|783633|783634|783636|783644|790964|790965|836952|836953|836954|836957|836960|836963|836964|836968|836971|836972|836973|836980|836984|866007|866009|925836|946936|978645|978646|978647|978648|978649|978650|978651|978652|978653|978654|978655|978656|978657|978658|978659|978660|978661|978662|978663|978664|978665|978666|978667|978668|978669|978670|978671|978672|978673|978674|978675|978676|978677|978678|978679|978680|978681|978682", + "text": "Usher syndrome type 1F" + }, + { + "baseId": "19970|19972|19972|19974|19975|33468|55629|55640|132045|174719|266037|321704|321718|357856|389231|404788|444618|545895|553261|578485|610569|980939", + "text": "Deafness, autosomal recessive 23" + }, + { + "baseId": "19978|19979|19980|140907|140908|140909|301147|301150|301151|301152|301154|301163|301165|301166|301167|304225|304227|304228|304236|304237|304239|304240|304241|304248|304255|308918|308919|308925|308929|308930|308931|308932|308934|308935|308936|308938|308941|309016|309021|309022|309025|309029|309029|309030|309038|309040|552108|589206|896971|896972|896973|896974|896975|896976|896977|896978|896979|896980|896981|896982|896983|896984|896985|896986|896987|896988|900276|917626|917628", + "text": "Stargardt Disease 3" + }, + { + "baseId": "19981|19982|19983|19984|19985|39449|39450|55254|55255|55256|55259|55262|55263|55266|55267|55268|55269|55270|55272|55279|55280|55284|55285|55286|55287|55289|55294|55296|55297|55299|176239|176242|176243|176363|176365|176367|176368|195018|227412|336843|336849|336852|336855|336863|336865|336868|346522|346523|346531|346536|346538|346550|346551|346553|346555|346558|350731|350733|350735|350737|350739|350744|351800|351801|351804|351805|378449|389252|426362|433975|553272|586663|615847|620671|654922|760793|800176|800177|816510|861599|886843|886844|886845|886846|886847|886848|886849|886850|886851|886852|886853|886854|886855|886856|886857|886858|886859|886860|886861|886862|886863|886864|886865|886866|886867|887512|887513|887514|887515|962918", + "text": "Deafness, autosomal recessive 8" + }, + { + "baseId": "19986|19987|19988|19989|19990|19991|51090|51091|190503|192426|192427|205139|209347|213900|251097|251098|268772|269148|290031|290040|290041|290048|290050|290053|290058|290062|290063|290064|290066|290069|290071|290076|290077|290082|290104|290106|290109|290115|290116|290118|290119|290120|290781|290783|290784|290785|290789|290790|290791|290795|290796|290810|290828|290838|290851|290856|290872|290877|290878|290879|290880|290886|290895|290896|290899|290901|290903|290904|290907|290912|290913|290914|290918|293952|293953|293955|293957|293960|293962|293965|293968|293982|293983|293987|293988|293989|293992|293998|294010|294013|294015|294017|294422|294441|294456|294469|294473|294489|294497|294501|294505|294506|294509|294515|294533|294534|294539|294540|367394|421433|431546|433463|433464|452060|452061|452063|452075|452326|452331|452335|452397|452398|452537|452543|519078|519079|519082|519085|519102|519255|519257|519263|519266|558882|561384|561386|631179|631180|631181|631182|631183|631184|631185|631186|631187|631188|631189|631190|651080|651120|686390|691378|695199|698041|698043|799322|799323|819367|827907|827908|827909|827910|827911|827912|827913|827914|851333|888676|888677|888678|888679|888680|888681|888682|888683|888684|888685|888686|888687|888688|888689|888690|888691|888692|888693|888694|888695|888696|888697|888698|888699|888700|888701|888702|888703|888704|888705|888706|888707|888708|888709|888710|888711|888712|888713|888714|888715|888716|888717|888718|888719|888720|888721|888722|888723|888724|888725|888726|888727|888728|888729|888730|888731|888732|888733|888734|888735|888736|888737|888738|888739|888740|888741|888742|888743|888744|888745|888746|888747|888748|918828|923140|923141|923142|923143|931888|931889|943478|943479|953437|953438|970766", + "text": "Osteogenesis imperfecta type 7" + }, + { + "baseId": "19992|19993|19994|48252|176496|176497|176498|176633|176634|176635|191090|230778|230779|230780|230781|230782|242965|242966|242971|242972|242973|242974|256381|256382|256384|256387|256388|256390|256392|256393|329754|329755|329757|329758|329763|329764|329765|329766|340046|340056|340057|340060|340061|340068|345756|345758|345759|345762|345763|345769|345773|347147|347148|347151|347155|402506|402517|403139|532130|532146|548331|569714|571581|620888|646669|646670|688829|688839|688841|694189|771799|792808|878358|878359|878360|878361|878362|878363|878364|878365|878366|878367|878368|880573|880574", + "text": "Ciliary dyskinesia, primary, 9" + }, + { + "baseId": "19995|19997|19998|19999|20000|20001|20002|20003|20004|20005|34400|34401|34403|34404|34405|34406|34407|34408|34410|34412|34413|34414|34416|34417|34418|34419|34420|34421|34422|34423|34424|34425|34426|34427|34428|34429|34430|34431|34432|34433|34434|34435|34436|34437|34438|34439|34440|34441|34442|34443|34444|34445|34446|34448|34449|34450|34451|34452|34454|34455|34456|34457|34458|34459|34460|34461|34462|34463|34464|34465|34466|34467|34468|34469|34470|34471|34472|34473|34474|34475|34476|34477|34478|34479|34480|34481|34482|34483|34484|34485|34486|34487|34488|34489|34490|34491|34492|34493|47412|52677|101783|101784|101785|101786|140126|140127|140130|165918|167615|167616|167617|167618|167619|167621|167622|167623|167624|167625|167626|167627|167629|167630|167631|167632|167633|167634|167636|167637|167640|167641|167642|167643|167644|167645|167646|167647|167648|167650|167651|167652|167653|167655|167656|167658|167659|167660|167661|167662|167664|167665|167666|167667|167668|167669|167670|167671|167672|167673|167674|167675|167676|167677|167678|167679|167680|167681|167682|167683|167684|167685|167687|167688|167689|167690|167691|167692|167693|167694|167696|167697|167698|167700|167701|167702|167703|167704|167705|167706|167707|167708|167709|167710|167711|167714|167715|167716|167717|167718|167720|167721|167722|167723|167725|167727|167728|167730|167731|167732|167733|167734|167735|167736|167737|167738|167739|167740|167741|167742|167743|167744|167745|167746|167747|167748|167750|167751|167752|167753|167755|167756|167758|167759|167760|167761|167762|167763|167765|167766|167767|167768|167769|167770|177188|177495|192034|192036|192039|192040|192041|192777|206731|206733|206735|206738|206739|206740|206741|206742|206743|206744|206745|206748|206750|206754|209337|226872|227207|231448|231451|231458|231459|231462|231475|259640|266601|266967|268441|268982|272265|272714|272991|278274|278275|278276|278277|278279|278282|278283|278284|278285|278286|278287|278290|278292|278293|278294|278296|278299|278300|278301|278302|278303|278304|278306|278314|278315|278319|278322|278323|278326|278327|278331|278333|278337|278339|278344|279335|279336|279338|279340|279342|279347|279349|279362|279366|279370|279373|279374|279377|279382|279398|279400|279403|279419|279420|279422|279447|279449|279451|279464|279466|279472|279479|279481|279482|279488|279513|279516|279517|279520|279521|279522|362223|362224|364730|389113|404996|424265|427666|427671|427675|427676|427677|427679|427680|427682|427683|432207|432208|488664|498177|498179|498309|513237|513501|514418|514852|576449|578372|619979|619980|619981|622308|622858|681820|681821|681822|681823|731977|745949|745952|789105|793998|863164|863165|863166|863167|863168|863169|863170|863171|863172|863173|863174|863175|863176|863177|863178|863179|863180|863181|863182|863183|863184|863185|863186|863187|863188|863189|863190|863191|863192|863193|863194|863195|863196|863197|863198|863199|863200|863201|863202|863203|863204|863205|863206|863207|863208|863209|863210|863211|863212|863213|863214|863215|863216|865081|865082|865083|865084|965948|965949|965950|965951|965952|965953|966032|980901|983300|983789", + "text": "Primary autosomal recessive microcephaly 5" + }, + { + "baseId": "20006|20007|20011|20014|20019|39442|190614|191425|191426|196061|224255|266271|268049|268873|271029|271030|273979|274052|275501|286312|286313|286320|286321|286369|287067|287085|289380|289382|289411|289418|289759|289763|289767|289777|488390|489018|491897|491943|492385|496703|536628|584794|585560|620748|630003|708280|708281|733477|781327|826480|826481|826482|826483|826484|851178|922770|922771|939894|942919", + "text": "Sitosterolemia" + }, + { + "baseId": "20006|20007|20008|20009|20010|20011|20012|20013|20014|48119|190614|191425|196061|196062|265756|267766|268049|268307|268873|268994|269660|271030|271240|272701|272704|272795|272936|273321|274052|274207|274619|275190|275261|275501|275518|286300|286307|286308|286309|286310|286312|286313|286314|286319|286320|286321|286326|286327|286331|286332|286334|286344|286346|286353|286355|286364|286365|286367|286370|287052|287056|287058|287062|287066|287067|287074|287076|287077|287078|287079|289360|289364|289377|289380|289382|289387|289389|289390|289393|289394|289403|289409|289415|289417|289753|289755|289756|289761|289762|289763|289765|289766|289774|289777|289782|289791|289792|289799|289801|289803|289804|289805|489018|489019|490263|491353|493333|494188|584794|585411|585560|585800|586372|586439|588007|588061|588380|588878|589582|697572|708280|708281|708282|719880|884919|884920|884921|884922|884923|884924|884925|884926|884927|884928|884929|884930|884931|884932|884933|884934|884935|884936|884937|884938|884939|884940|884941|884943|884944|884945|884946|884947|884948|884949|884950|884951|884952|884953|884954|884955|884956|884957|884958|884959|884960|884961|887364|887365|887366|887367|961065", + "text": "Sitosterolemia 1" + }, + { + "baseId": "20014|196061|491943", + "text": "Gallbladder disease 4" + }, + { + "baseId": "20015|20016|20017|20018|20019|20020|39441|39442", + "text": "Sitosterolemia 2" + }, + { + "baseId": "20021|20022|20023|20024|20026|20027|20027|20028|71266|101844|105698|105698|105701|105703|105705|105705|105708|105709|105709|105714|105715|105716|106466|106466|166161|166162|166168|166169|177015|177409|189087|191584|192516|192517|192517|192996|223641|237301|237301|238063|254909|254909|254910|254911|254912|254913|260938|267200|267809|267809|268032|268032|268143|269275|269275|269345|269345|320294|320294|320295|320298|320301|320302|320306|320307|320308|320308|328878|328878|328882|328895|328895|328899|328905|335478|335483|335484|335485|335488|335489|335489|335492|337366|337367|337367|337370|337374|337376|337376|374092|374092|374098|374098|375915|413368|418825|431773|431773|431774|431775|431776|464095|464095|482045|488964|488964|489426|489717|489718|492643|493974|493974|513343|514039|528035|528035|528037|551569|551570|551570|566290|567864|567864|568741|568743|576338|576338|578347|578511|612156|693451|693452|693453|693453|693454|702801|702803|702803|702804|702804|725612|725613|730931|730931|744800|753965|769716|779731|791387|800581|802186|802187|802188|802189|802190|802191|802247|820599|820600|820601|820602|820603|841160|841161|841162|841163|841163|841164|841165|841166|841167|841168|841169|841170|841171|841172|841173|841174|841175|841176|841177|841178|851545|851987|852728|852728|871695|871696|871697|871698|871699|871700|871701|871702|871703|871704|871704|871705|871706|871707|871708|871709|871710|871710|871711|871712|871712|871713|871714|871715|871716|871717|872359|872360|926980|926981|936540|936541|936542|936543|936544|936545|936546|936547|936548|936549|936550|940300|948461|948462|948463|948464|948465|948466|948467|948468|948469|948470|948471|948472|948473|948474|948475|957161|957162|957163|957164|957165|957166|957167|957168|960079|960080|960081|960082|960799|960800|969718|969720|969721|969722|969723|969724|969725|969726|969727|969728|969729|969730|969731|969732|970004", + "text": "Leber congenital amaurosis 6" + }, + { + "baseId": "20025|20026|20027|101844|105698|105701|105705|105705|105708|105709|105709|105715|105716|106466|106466|177015|177409|191584|192516|192517|192517|192996|213628|223641|237301|237301|254909|254909|254910|254911|254912|254913|267200|267809|267809|268032|268143|269275|269275|269345|269345|320294|320294|320295|320298|320301|320302|320306|320307|320308|320308|328878|328878|328882|328895|328895|328899|328905|335478|335483|335484|335485|335488|335489|335489|335492|337366|337367|337367|337370|337374|337376|337376|374092|374092|374098|374098|418825|431773|431774|464095|464095|482045|488964|488964|489426|489717|489718|493974|493974|528035|528035|528037|551570|566290|567864|567864|568741|568743|576338|578511|693451|693452|693453|693453|693454|702801|702803|702803|702804|702804|725612|725613|730931|730931|744800|753965|769716|779731|791387|820599|820600|820601|820602|820603|841160|841161|841162|841163|841163|841164|841165|841166|841167|841168|841169|841170|841171|841172|841173|841174|841175|841176|841177|841178|851545|851987|852728|852728|871695|871696|871697|871698|871699|871700|871701|871702|871703|871704|871704|871705|871706|871707|871708|871709|871710|871710|871711|871712|871712|871713|871714|871715|871716|871717|872359|872360|926980|926981|936540|936541|936542|936543|936544|936545|936546|936547|936548|936549|936550|940300|948461|948462|948463|948464|948465|948466|948467|948468|948469|948470|948471|948472|948473|948474|948475|957161|957162|957163|957164|957165|957166|957167|957168|960079|960080|960081|960082|960799|960800", + "text": "Cone-rod dystrophy 13" + }, + { + "baseId": "20026|24389|24392|24394|24396|24397|38391|76480|76620|100027|102552|104429|104431|104432|104433|104433|104436|104437|104440|104441|104442|104443|104445|104447|104447|104448|104451|104455|104456|104456|104456|104465|104467|104469|104471|104472|104474|104475|104476|104477|104479|104480|104480|104484|104491|104492|104492|104493|104494|104495|104497|104499|104500|104501|105486|105494|105510|105560|105683|105795|105802|105803|152779|177112|177374|191486|191862|192077|192078|192193|193626|194278|194279|195216|195217|237301|256534|267852|359259|361027|410300|418814|424378|431776|432339|438037|467672|468444|469027|469027|469226|488964|489189|493639|537666|537667|551586|569886|569892|570726|578553|584376|587851|610116|612322|626263|646841|646842|646914|676976|681856|681857|694210|694219|704421|704423|704424|704425|704426|704427|704428|715777|715781|731182|756205|756208|756209|771892|771893|771894|771918|778416|785781|788916|789897|789898|789899|789900|789901|789902|789903|789904|789905|789906|789907|789908|789909|789910|790444|790445|790446|790622|790623|790624|790625|790659|791386|791387|791388|791389|791390|791839|791840|791941|791942|846355|846356|846357|846358|846359|846360|846365|846366|846367|846369|846370|846435|846436|846437|846438|846439|846440|846441|846442|846443|846444|846445|846446|846447|846448|846449|851759|938267|938268|938269|938270|938271|938272|938273|938274|938277|938278|938279|938297|938298|938299|938300|938301|938302|938303|938304|950343|950344|950345|950348|950349|950350|950351|950368|950369|950370|950371|950372|950373|950374|950375|958342|958343|958344|958346|958347|958348|958373|958374|958375|958376|958377|960253|962924|962925|962926|962927|962928|962929|962930|962931|962932|962933|962934|962935|962936|962937|962938|962939|962940|962941|962942|962943|962944|962945|962946|962947|962948|962949|962950|962951|962952|962953|962954|962955|962956|962957|962959|962960|962961|962962|962963|962964|962965|962968|963340|971541", + "text": "Leber congenital amaurosis 1" + }, + { + "baseId": "20029", + "text": "Hypoadiponectinemia" + }, + { + "baseId": "20030", + "text": "Cerebral infarction, susceptibility to" + }, + { + "baseId": "20031|20032|20042|132007|141425|141426|141427|141428|141429|191088|192529|195407|212979|212980|212981|212982|212983|212984|212985|212987|222200|222201|241227|241232|241234|241236|244713|244717|244719|244723|244730|244731|254399|254402|254405|267186|267827|315969|315978|315979|315980|315984|315986|315988|315989|323225|323227|323228|323237|323240|323242|323247|323248|329266|329268|329269|329271|329274|329275|329279|329281|329285|329286|330434|330446|330448|330460|330489|330490|330498|372841|374513|374528|441503|461598|462170|462180|490562|503871|511955|526642|526656|566310|571201|571206|571230|656103|869228|869229|869230|869231|869232|869233|869234|869235|869236|869237|869238|869239|869240|869241|869242|869243|869244|869245|872186", + "text": "Brachyrachia (short spine dysplasia)" + }, + { + "baseId": "20031|20032|20032|20033|20034|20035|20036|20037|33470|33471|33473|33474|33476|39425|39426|39427|39428|39429|39431|39432|39433|131989|131990|131991|131992|131994|131995|131996|131997|131998|131999|132000|132001|132002|132004|132005|132006|132007|132009|132012|132013|193539|247055|267835|268588|270886|270894|271513|310812|310813|310820|310829|310830|310831|310832|310842|310844|310848|310850|310852|310858|310859|310862|310864|310866|310868|310870|310878|310884|310887|310890|310892|310895|310899|310907|310918|310919|310928|310929|310930|310931|316068|316069|316072|316073|316074|316082|316090|316094|316099|316103|316111|316112|316114|316120|316133|316144|316148|316149|316156|316162|316169|316174|316175|316176|316177|316180|316181|316189|316190|316200|316201|316204|316205|316210|316220|316221|316223|316226|322169|322170|322172|322183|322185|322190|322191|322192|322196|322197|322199|322200|322212|322213|322218|322231|322232|322233|322236|322239|322240|322241|322242|322245|322246|322254|322260|322261|322266|322267|322274|322275|322276|322780|322783|322784|322785|322786|322789|322790|322801|322802|322803|322804|322806|322807|322808|322815|322816|322822|322831|322832|322845|322849|322876|322879|322880|322882|322887|322888|322890|322891|322892|322893|322894|322896|322900|357053|360896|485947|485949|623681|623736|623780", + "text": "Skeletal dysplasia" + }, + { + "baseId": "20032|20033|20037|20038|20039|20040|20041|20042|33473|39426|39429|39430|48018|132007|141425|141426|141427|141428|141429|165507|191088|192529|195407|212979|212980|212981|212982|212983|212984|212985|212986|212987|222200|222201|222202|231824|231825|237347|241227|241228|241229|241230|241231|241232|241233|241234|241235|241236|244713|244714|244716|244717|244719|244723|244724|244726|244729|244730|244731|244732|254399|254402|254404|254405|267186|267827|268612|315969|315978|315979|315980|315984|315986|315988|315989|323225|323227|323228|323237|323240|323242|323247|323248|329266|329268|329269|329271|329274|329275|329279|329281|329285|329286|330434|330446|330448|330460|330489|330490|330498|372541|372840|372841|374513|374517|374528|374550|374553|398428|398517|398521|398522|398806|398816|398944|398946|398949|398951|408511|408513|408515|421897|433993|433994|441499|441501|441502|441503|441504|444909|461596|461598|461602|461605|461607|461814|461825|461826|461836|462170|462172|462180|462404|462407|462409|482007|486086|490562|503842|503843|503871|503872|504116|504518|511955|511956|511960|511961|526640|526642|526644|526645|526646|526647|526651|526652|526653|526656|526658|526659|526660|526663|526664|526665|526669|526896|526899|526901|526906|526913|527214|527218|527221|527223|527225|527226|527230|565036|565038|565041|566310|566311|566317|567647|567649|567653|567658|567662|571188|571197|571201|571203|571206|571208|571230|571233|571244|571249|581868|640606|640607|640608|640609|640610|640611|640612|640613|640614|640615|640616|640617|640618|640619|640620|640621|640622|640623|640624|640625|640626|640627|640628|640629|640630|640631|640632|656103|672086|684278|684281|684282|687866|687871|724880|768882|784269|792686|839270|839271|839272|839273|839274|839275|839276|839277|839278|839279|839280|839281|839282|839283|839284|839285|839286|839287|839288|839289|839290|869228|869229|869230|869231|869232|869233|869234|869235|869236|869237|869238|869239|869240|869241|869242|869243|869244|869245|872186|919405|919406|919407|920307|920308|926456|926457|926458|926459|926460|926461|926462|926463|935906|935907|935908|935909|935910|935911|935912|935913|941021|947776|947777|947778|947779|947780|947781|956744|956745|960773", + "text": "Charcot-Marie-Tooth disease axonal type 2C" + }, + { + "baseId": "20033|20034|20035|20042|33473|33474|132007|141425|141426|141427|141428|141429|191088|192529|195407|212979|212980|212981|212982|212983|212984|212985|212987|222200|222201|241227|241232|241234|241236|244713|244717|244719|244723|244730|244731|254399|254402|254405|267186|267827|315969|315978|315979|315980|315984|315986|315988|315989|323225|323227|323228|323237|323240|323242|323247|323248|329266|329268|329269|329271|329274|329275|329279|329281|329285|329286|330434|330446|330448|330460|330489|330490|330498|372841|374513|374528|426720|441503|461598|462170|462180|490562|503871|511955|526642|526656|566310|571201|571206|571230|656103|869228|869229|869230|869231|869232|869233|869234|869235|869236|869237|869238|869239|869240|869241|869242|869243|869244|869245|872186", + "text": "Spondylometaphyseal dysplasia, Kozlowski type" + }, + { + "baseId": "20033|20037", + "text": "Parastremmatic dwarfism" + }, + { + "baseId": "20036|20037|20042|33469|33470|33471|33472|33474|39427|39428|39431|39432|39433|132000|132007|141425|141426|141427|141428|141429|191088|192529|195407|212979|212980|212981|212982|212983|212984|212985|212987|222200|222201|241227|241232|241234|241236|244713|244717|244719|244723|244730|244731|254399|254402|254405|267186|267827|315969|315978|315979|315980|315984|315986|315988|315989|323225|323227|323228|323237|323240|323242|323247|323248|329266|329268|329269|329271|329273|329274|329275|329279|329281|329285|329286|330434|330446|330448|330460|330489|330490|330498|353209|356978|372841|374513|374528|441503|461598|462170|462180|490562|503871|511955|526642|526656|566310|571201|571206|571230|656103|822331|869228|869229|869230|869231|869232|869233|869234|869235|869236|869237|869238|869239|869240|869241|869242|869243|869244|869245|872186", + "text": "Metatrophic dysplasia" + }, + { + "baseId": "20037|33474|33475|33476|39425", + "text": "Spondyloepiphyseal dysplasia Maroteaux type" + }, + { + "baseId": "20038|20039|20041|20042|39429|48018|132007|141425|141426|141427|141428|141429|191088|192529|195407|212979|212980|212981|212982|212983|212984|212985|212987|222200|222201|241227|241232|241234|241236|244713|244717|244719|244723|244730|244731|254399|254402|254405|267186|267827|315969|315978|315979|315980|315984|315986|315988|315989|323225|323227|323228|323237|323240|323242|323247|323248|329266|329268|329269|329271|329273|329274|329275|329279|329281|329285|329286|330434|330446|330448|330460|330489|330490|330498|353209|372841|374513|374528|441503|461598|462170|462180|490562|503871|511955|526642|526656|566310|571201|571206|571230|656103|869228|869229|869230|869231|869232|869233|869234|869235|869236|869237|869238|869239|869240|869241|869242|869243|869244|869245|872186", + "text": "Distal spinal muscular atrophy, congenital nonprogressive" + }, + { + "baseId": "20038|20040|20041|20042|132007|141425|141426|141427|141428|141429|191088|192529|195407|212979|212980|212981|212982|212983|212984|212985|212987|222200|222201|241227|241232|241234|241236|244713|244717|244719|244723|244730|244731|254399|254402|254405|267186|267827|315969|315978|315979|315980|315984|315986|315988|315989|323225|323227|323228|323237|323240|323242|323247|323248|329266|329268|329269|329271|329273|329274|329275|329279|329281|329285|329286|330434|330446|330448|330460|330489|330490|330498|353209|372841|374513|374528|441503|461598|462170|462180|490562|503871|511955|526642|526656|566310|571201|571206|571230|656103|869228|869229|869230|869231|869232|869233|869234|869235|869236|869237|869238|869239|869240|869241|869242|869243|869244|869245|872186", + "text": "Scapuloperoneal spinal muscular atrophy" + }, + { + "baseId": "20038|20040|24157|38987|39429|70511|191531|196476|200698|208054|214089|214090|231826|236923|244863|311334|461638|511936|513441|552170|574098|611754|625144|625198|625199|625200|625206|625207|625212|625213|625214|625215|625216|625221|625224|625226|625227|625229|625230|625231|625237|625238|625239|625241|625242|625243|625247|625249|625253|625255|625256|625257|625286|625287|625288|625289|625290|625291|625293|625750|682999|683011|683037|683051", + "text": "Autosomal dominant distal hereditary motor neuropathy" + }, + { + "baseId": "20039|27395|27405|27413|27626|28302|28307|28311|28312|28316|29525|32803|39040|50121|77694|79530|133150|133152|133267|133281|134137|151478|178432|203922|226498|242984|263188|263196|263199|263201|263205|263299|263383|263387|263414|360818|360983|361713|363664|398806|402557|408516|420656|441499|444566|459906|465352|479292|480668|511956|513938|513998|513999|514018|565041|569547|590039|590051|590052|590059|590064|590065|590089|615889|792641|792642|917822", + "text": "11 conditions" + }, + { + "baseId": "20042", + "text": "Sodium serum level quantitative trait locus 1" + }, + { + "baseId": "20043|20044|20045|20046|20047|20048", + "text": "Erythrokeratodermia variabilis et progressiva 2" + }, + { + "baseId": "20049|551459|969318|969319|969320", + "text": "46,XY gonadal dysgenesis, partial, with minifascicular neuropathy" + }, + { + "baseId": "20050|20051|260443|331436|462246|463136|552293|552294|552295|552296|702337|702338|926652|936145", + "text": "46,XY sex reversal, type 7" + }, + { + "baseId": "20052|20053|20054|20055|20056|20057|20058|165647|165649|314060|314062|314063|314064|314068|314070|314071|314075|314077|314081|314087|314095|314096|314097|314098|314114|314116|320528|320529|320537|320540|320541|320550|320551|320562|320563|320568|320569|320571|320573|320574|320578|320579|320584|320585|320586|320587|320591|320593|320597|320598|320599|320611|320621|320622|320633|320635|320636|320646|326505|326514|326543|326547|326550|326551|326553|326554|326556|326564|326567|326570|326571|326579|326580|326582|326587|326589|326594|326597|326606|326607|326611|326613|326614|326615|326638|326643|326658|326659|326661|326667|326671|327548|327550|327551|327558|327559|327560|327565|327566|327567|327574|327590|327591|327592|327610|327611|327619|327621|327623|327639|327640|327656|327669|327672|620401|701767|724439|737974|737977|737979|867959|867960|867961|867962|867963|867964|867965|867966|867967|867968|867969|867970|867971|867972|867973|867974|867975|867976|867977|867978|867979|867980|867981|867982|867983|867984|867985|867986|867987|867988|867989|867990|867991|867992|867993|867994|867995|867996|867997|867998|867999|868000|868001|868002|868003|868004|868005", + "text": "Parietal foramina 2" + }, + { + "baseId": "20059|165648|188208|227446|361726|578491", + "text": "Frontonasal dysplasia 2" + }, + { + "baseId": "20060|20061|27640|28939|29005|204981|204982|204983|551403|919462", + "text": "Thyroid cancer, nonmedullary, 2" + }, + { + "baseId": "20062", + "text": "Thyroid adenoma (disease)" + }, + { + "baseId": "20063|359552|360867", + "text": "Increased IgE level" + }, + { + "baseId": "20064|20065|44798|44799|317089|317097|317111|317112|317114|317117|317119|317121|324838|324841|324849|324850|324851|324855|324899|330944|330946|330951|330952|330960|330962|331027|332428|332431|332436|332452|332453|332459|332462|332466|332473|332563|577261|738637|869801|869802|869803|869804|869805|869806|869807|869808|869809|869810|869811|869812|869813|869814|869815|869816|869842|869843|869844|869845|872242", + "text": "Autosomal dominant hypophosphatemic rickets" + }, + { + "baseId": "20066|20385|22830|22831|22832|22833|22834|22835|22836|22837|22838|22839|22840|22841|22842|192386|282414|282415|282421|282426|282428|283097|283100|283101|283103|283104|283105|283106|283107|284674|284687|284700|284701|284703|285130|285138|285139|285151|285152|285158|285159|437705|437706|552053|610988|697129|707819|707820|791342|881305|881306|881307|881308|881309|881310|881311|881312|881313|881314|881315|881316|881317|881318|881319|881320|881321|882820|882821|920603", + "text": "Hyperphosphatemic familial tumoral calcinosis 1" + }, + { + "baseId": "20066|20067|20068|317089|317097|317111|317112|317114|317117|317119|317121|324838|324841|324849|324850|324851|324855|324899|330944|330946|330951|330952|330960|330962|331027|332428|332431|332436|332452|332453|332459|332462|332466|332473|332563|577261|738637|869801|869802|869803|869804|869805|869806|869807|869808|869809|869810|869811|869812|869813|869814|869815|869816|869842|869843|869844|869845|872242|919432", + "text": "Tumoral calcinosis, hyperphosphatemic, familial, 2" + }, + { + "baseId": "20066|213620|282435|283098|285137|317102|317118|319404|324857|324859|330949|332440|332445", + "text": "Tumoral calcinosis, hyperphosphatemic, familial" + }, + { + "baseId": "20069|20070|20072|20073|20074|20075|20076|20077|134577|167388|167392|167397|231987|245008|245009|255895|255896|255897|260130|273694|326427|326428|326432|326439|326440|326444|326447|326448|326450|326451|326453|326454|326456|326458|326460|336169|336170|336171|336176|336177|336179|336183|336184|336186|336187|336191|336194|336197|336198|336199|336208|336209|336211|336221|336222|336224|336225|336229|342431|342433|342435|342443|342446|342449|342450|342451|342454|342456|342457|342458|342459|342460|342462|342463|342465|344079|344081|344083|344084|344087|344088|344089|344090|344091|344092|344093|344099|344100|344102|344103|344116|344119|344122|344124|344126|344130|361521|375489|375682|415513|466024|466032|466035|466036|466038|466757|466758|466762|466763|466778|466794|466798|466802|467038|467046|467047|467067|467069|506512|512228|530309|530312|530313|530315|530371|530372|530381|530383|530400|530402|530569|530571|530573|530575|530577|530581|530792|530794|537264|552190|568377|568387|568391|568399|568402|570504|570506|570508|570511|570558|570559|570561|570564|570571|570572|570660|574175|574176|574177|574178|581728|590028|622435|625316|625317|625318|625319|625320|625321|625322|625323|625324|625325|625326|625327|625328|625329|625330|625331|625333|625334|625335|625336|625337|625338|625339|625340|625341|625342|625343|625344|625345|625346|625347|625348|625350|625351|625352|625354|625355|625356|625357|625358|625359|625360|625760|625761|645009|645010|645011|645012|645013|645014|645015|645016|645017|645018|645019|645020|645021|645022|645023|645024|645025|645026|645027|645028|645029|652757|653065|677453|688666|693935|693937|693938|693939|715097|715098|760518|771079|780051|785390|785392|820887|844368|844369|844370|844371|844372|844373|844374|844375|844376|844377|844378|844379|844380|844381|844382|844383|844384|844385|844386|844387|851683|852831|861664|876008|876009|876010|876011|876012|876013|876014|876015|876016|876017|876018|876019|876020|876021|876022|876023|876024|876025|876026|876027|876028|876029|876030|876031|876032|876033|876034|876722|927965|927966|927967|937629|937630|937631|937632|941146|941147|949595|949596|949597|949598|949599|949600|949601|957888|957889|957890|957891|957892|957893|957894", + "text": "Giant axonal neuropathy 1" + }, + { + "baseId": "20078|20079|20080|20081|20083|20084|20085|20086|20087|133700|133701|198632|260025|260027|260029|317931|317932|317936|317940|317944|317946|317949|317953|325845|325871|325873|325875|325876|325879|325880|325881|332094|332097|332098|332100|332101|332102|333560|333563|333564|333566|333567|333582|333586|333590|417444|611346|620445|620850|626315|753483|784425|870160|870161|870162|870163|870164|870165|870166|870167|870168|870169|872265|872266|872267", + "text": "Glucocorticoid deficiency with achalasia" + }, + { + "baseId": "20084|20699|33187|51184|360842|360970|360971|361043|402131|676961|961430|962129|962130|964663", + "text": "Spastic paraparesis" + }, + { + "baseId": "20084", + "text": "Babinski sign" + }, + { + "baseId": "20084|360839", + "text": "Hyperreflexia" + }, + { + "baseId": "20088|76537|76538|76539|134349|185799|185800|185801|185802|185803|185804|185805|185806|185807|185808|185809|185810|185811|185812|185813|185814|185815|185816|185817|185818|185819|185820|185821|185822|185823|185824|185825|185826|185827|185828|185829|185830|185831|185832|185833|185834|185835|185836|185837|185838|185839|185840|185841|185842|185843|185844|185845|185846|185847|185848|185849|185850|185851|185852|185853|185854|185855|185856|185857|185858|185859|185860|185861|185862|185863|185864|185865|185866|185867|185868|185869|185870|185871|185872|185873|185874|185875|185876|185877|185878|185879|185880|185881|185882|185883|185884|185885|185886|185887|185888|185889|185890|185891|185892|185893|185894|185895|185896|185897|185898|185899|185900|185901|185902|185903|185904|185905|185906|185907|185908|185909|185910|185911|185912|185913|185914|185915|185916|185917|185918|185919|185920|185921|185922|185923|185924|185925|185926|185927|185928|185929|185930|185931|185932|185933|185934|185935|248728|248729|361889|513663|514402|514404|514405|514406|514407|514409|514410|514411|514412|578567|612332|622467|626278|794185|794186|794187|794188|794189|799034|799035|799036|799037|799038|799039|799040|799041|799042|799043|799044|799045|799046|799047|799049|799050|799051|799052|799053|799054|799055|799056|799057|799058|799059|799060|799061|799062|799063|799064|799065|799066|799067|799068|799069|799070|799071|799072|799073|799074|799075|799076|799077|799095|961918|961920", + "text": "Steinert myotonic dystrophy syndrome" + }, + { + "baseId": "20089|20090|94574|133876|133881|133882|133883|133884|133885|133886|133887|133889|133890|133894|133895|208686|208689|208692|208693|208697|208699|335713|335719|335723|335725|335731|335734|335737|335739|335741|335744|335748|335750|335752|335755|335759|335761|335764|335765|335766|335770|335778|335780|345457|345461|345463|345467|345468|345470|345472|345474|345479|345481|345483|345485|345486|350079|350082|350084|350085|350086|350087|350089|350091|350092|350094|350097|350098|350100|350101|350104|350107|350109|351120|351121|351124|351125|351128|351129|351132|351135|351136|351139|351143|351145|351146|351149|430342|430351|430352|430358|578576|728707|786399|791985|791986|886233|886234|886235|886236|886237|886238|886239|886240|886241|886242|886243|886244|886245|886246|886247|886248|886249|886250|886251|886252|886253|886254|886255|886256|886257|886258|886259|886260|886261|886262|886263|886264|886265|886266|886267|886268|886269|886270|886271|886272|886273|886274|886275|886276|886277|887469|887470|887471|887472|919916|971145", + "text": "Heterotopia, periventricular, autosomal recessive" + }, + { + "baseId": "20094|20095|20096|20097|20098|227386", + "text": "Prostate cancer, hereditary, 2" + }, + { + "baseId": "20094|20095|20096|20097|20098|76941|76942|76943|76944|222556|222557|227386|237324|242582|242583|242584|242587|242588|242590|242591|242592|242593|374843|374845|375729|375937|375948|378059|378065|401533|401537|401538|401539|401540|401541|401547|401998|401999|402253|402259|466341|467099|467101|467274|467277|467278|467280|467411|467418|467424|467425|467426|481140|481370|481371|481372|530743|530745|552199|568688|568690|568702|568704|570759|570763|574303|574304|645309|645310|645311|645312|645313|645314|645315|645316|684657|684658|684659|684660|684661|688739|688743|690166|715247|726986|778446|785465|788904|844708|844709|844710|844711|844712|844713|844714|844715|844716|844717|852691|928060|928061|928062|928063|928064|937725|940383|949705|957983|957984|957985|957986|960869", + "text": "Combined oxidative phosphorylation deficiency 17" + }, + { + "baseId": "20099|282774|282779|282782|282796|282800|282801|282803|282810|283594|283595|283596|283597|283599|283600|283610|283613|283614|283617|283618|283619|285118|285128|285131|285132|285133|285134|285140|285143|285148|285625|285628|285629|285638|285641|285642|285644|285646|285650|285651|285652|513248|551695|558911|559394|628988|628989|628990|650879|650881|707849|719407|778877|788743|825209|825210|881530|881531|881532|881533|881534|881535|881536|881537|881538|881539|881540|881541|881542|881543|881544|881545|881546|881547|882843|882844|918695|952786", + "text": "Cerebral palsy, spastic quadriplegic, 1" + }, + { + "baseId": "20100|20101|508751", + "text": "Metabolic syndrome, susceptibility to" + }, + { + "baseId": "20100|20102|22032|23175|23178|23861|24726|27024|28628|28629|29357|29358|29363|29368|29369|29370|29375|29459|32735|32780|45128|45129|45130|45145|45146|45147|45148|45149|45150|48278|135465|192092|203022|206995|208462|215036|215037|256718|263264|285610|285611|285622|285624|285631|286339|286340|288404|288413|288431|288432|288642|289041|289047|289053|289177|292190|292296|292303|292305|292306|292310|299023|332144|332444|342314|342316|342318|342320|347738|347739|347743|349098|349106|349111|384510|405689|428113|430074|430075|430076|430078|443218|485790|485791|485792|485793|490887|495097|514170|514218|514853|540034|550209|550210|553408|553540|577690|583084|590038|610521|619912|619913|619914|619915|619916|619917|620939|719788|727763|733372|756500|788855|800415|800416|800417|879673|879674|879675|879676|879677|879678|879679|879680|879681|879682|879683|879684|879685|879686|879687|879688|879689|879690|879691|879692|884457|884458|884459|884460|884461|884462|884463|884464|884465|884466|887759|887767|887768|887769|887770|918796|964342|964502|970013|971396", + "text": "Obesity" + }, + { + "baseId": "20101", + "text": "Obesity, age at onset of" + }, + { + "baseId": "20103", + "text": "GHRELIN POLYMORPHISM" + }, + { + "baseId": "20104", + "text": "Hemolytic uremic syndrome, atypical, susceptibility to" + }, + { + "baseId": "20104", + "text": "Age-related macular degeneration" + }, + { + "baseId": "20105|33313", + "text": "Hypertension, salt-sensitive essential, susceptibility to" + }, + { + "baseId": "20106|20107|101502|101506|101507|101508|101509|101511|177726|177727|192457|206559|237125|244037|244038|244039|244041|244042|244043|244044|244045|244046|244047|244048|244049|244050|244051|244052|244053|244054|244055|244056|244057|244058|244059|244060|244061|244062|301505|301506|301510|301512|301516|301517|301526|301531|301533|301535|301537|301541|301543|301544|301546|301548|301570|301571|301575|301579|301581|301582|301583|301587|301594|304775|304776|304778|304789|304791|304802|304806|304811|304814|304819|304833|304840|304847|304849|304852|304855|304857|304866|304868|309376|309377|309389|309390|309394|309395|309398|309399|309400|309409|309412|309415|309423|309424|309425|309429|309439|309442|309512|309523|309525|309536|309538|309540|309541|309543|309545|309546|309549|309552|309554|309556|309559|309567|309569|309574|309589|309594|424654|579317|579460|609022|609195|609196|609201|611396|798581|897256|897257|897258|897259|897260|897261|897262|897263|897264|897265|897266|897267|897268|897269|897270|897271|897272|897273|897274|897275|897276|897277|897278|897279|897280|900304|900305", + "text": "Speech-language disorder 1" + }, + { + "baseId": "20108|20109|265637|267757|268455|508782|614083|614084|614085|790215|969294|970738", + "text": "Chromosome 2q37 deletion syndrome" + }, + { + "baseId": "20110|20111|20114|20115|20116|20117|193668|326335|326339|326340|326341|326345|326348|326349|326351|326352|326354|326355|326357|326361|326363|326366|326368|326370|326375|326376|326379|326381|326383|326392|326394|326395|326396|326410|326417|326418|336066|336068|336072|336073|336083|336084|336087|336090|336100|336102|336104|336105|336108|336121|336122|336127|336128|336130|336136|336137|336141|336142|336143|336145|336146|336148|336149|336150|336157|342337|342340|342345|342350|342351|342353|342354|342357|342358|342359|342360|342363|342365|342366|342367|342368|342371|342377|342384|342385|342388|342399|342401|342402|342406|342408|342409|342415|342417|343959|343960|343961|343962|343964|343966|343967|343970|343971|343972|343976|343978|343980|343981|343994|343995|343998|344006|344008|344010|344011|344016|344018|344019|344025|344031|344035|344037|344040|344041|344042|466700|538455|620561|620562|620563|703814|715075|715076|726792|875944|875945|875946|875947|875948|875949|875950|875951|875952|875953|875954|875955|875956|875957|875958|875959|875960|875961|875962|875963|875964|875965|875966|875967|875968|875969|875970|875971|875972|875973|875974|875975|875976|875977|875978|875979|875980|875981|875982|875983|875984|875985|875986|875987|875988|875989|875990|875991|875992|875993|875994|875995|875996|875997|875998|875999|876000|876001|876002|876003|876004|876005|876006|876007|937599", + "text": "Macular corneal dystrophy" + }, + { + "baseId": "20112|20113|20114|20118", + "text": "Macular corneal dystrophy, type II" + }, + { + "baseId": "20119|20120|20121|20122|20123|20124|20125|20126|20127|20131|34379|59852|59852|76663|101605|101606|101608|101613|101614|101618|101619|101620|101621|101622|101623|101624|101626|101628|101630|142273|142274|177896|190550|192676|210977|210978|210984|210996|211003|211011|213549|214497|214498|214499|214500|289727|289728|289729|289734|289738|289739|289746|289758|289760|289769|289770|289776|289778|289784|289793|289795|289800|289802|290531|290532|290533|290534|290535|290537|290541|290542|290543|290562|290563|290572|293645|293646|293648|293654|294183|294184|294184|294185|294187|294190|294191|294192|294193|294194|294195|294196|294197|367279|367301|367306|367344|414928|425539|443403|500414|587194|790375|790376|790377|790378|790379|790380|888560|888561|888562|888563|888564|888565|888566|888567|888568|888569|888570|888571|888572|888573|888574|888575|888576|888577|888578|888579|888580|888581|888582|888583|888584|888585|888586|888587|888588|888589|891631|891632|961599|964220|964221|965930", + "text": "Dominant hereditary optic atrophy" + }, + { + "baseId": "20121|59852|59852|210979|227007|227008|227009|294184|493528|918822|918823|918824|918825|961599", + "text": "Abortive cerebellar ataxia" + }, + { + "baseId": "20129|20130|20131|39417|39418|39419|39420|59852|198617|210979|227006|294184|428165|679822|961599|970142", + "text": "Optic atrophy with or without deafness, ophthalmoplegia, myopathy, ataxia, and neuropathy" + }, + { + "baseId": "20135", + "text": "Polycystic ovary syndrome, susceptibility to" + }, + { + "baseId": "20136|20137|20138|20139|20142|20143|20144|50125|50126|50127|50129|50130|50131|50132|50133|50133|50134|50135|50136|50137|50138|50139|57889|57891|57893|57898|57899|57913|57914|57915|57917|57918|57927|57930|57932|57941|57944|57945|57953|57954|57958|57958|57959|57962|57965|57966|57967|57979|57983|58014|58019|58020|58023|58024|58029|58032|58038|58044|58047|58047|58064|58065|58067|58068|58069|58083|58087|58091|58093|58094|58103|58104|58105|58108|58114|58116|58124|58129|58131|58133|58134|58135|58138|58144|58146|58147|58149|58151|58154|58157|58158|58160|58161|58164|58168|58170|58176|58177|58178|58181|58182|58183|58184|58185|58186|58189|58191|58197|58200|58201|58202|58205|58210|58215|58216|58217|58219|58229|58233|58234|58235|58236|58238|58241|58242|58243|58245|58245|58253|58254|58255|58256|58259|58272|58281|58282|58292|58296|58297|75628|75630|75633|75635|75639|75641|75649|75660|75662|75663|75664|75666|75668|75669|75672|75674|75676|75677|75679|75681|75683|75686|75688|75691|75692|75693|75701|75708|75711|75714|75719|75721|75722|75725|75726|75739|75741|75742|75743|75744|75745|75746|75749|75751|75754|75755|75757|75761|75763|75770|75772|139101|139102|139103|139105|139107|139108|141430|141432|141433|141434|151413|151694|151694|174686|182909|182910|182911|182913|182914|182917|182918|182919|182920|182921|182922|182923|182926|182927|192619|192723|192724|192888|202458|202459|202460|202462|202464|202465|202466|202467|202468|202469|202470|202472|202474|202475|202477|202478|202479|202480|202481|202482|202484|202485|202489|202491|202492|202493|202494|202495|202496|202497|202501|202502|202503|202507|213816|221805|233728|233729|233733|233734|233736|233737|233738|233739|233741|233742|240471|240472|240473|240474|240475|240476|240477|240478|240479|240480|240481|240482|240483|240484|240485|240486|240487|240488|240489|240490|240491|240492|240493|240494|240495|240496|240497|240498|240499|240500|240501|240502|240503|240504|240505|240506|240507|240508|240509|240510|253368|253370|253371|264413|264419|271777|271778|307194|307204|307205|307210|307221|307245|307248|307254|307255|307260|307264|307266|307272|307280|307286|311378|311379|311382|311394|311418|311428|311440|311454|311460|311465|311480|311481|311482|311487|311488|311497|311498|311504|311505|311506|311508|311510|311511|316958|316960|316965|316985|316990|316997|317004|317012|317017|317024|317025|317027|317031|317033|317034|317057|317063|317065|317352|317360|317366|317371|317383|317403|317406|317425|317426|317427|317437|317438|317442|317443|317444|317449|317457|317459|317464|317467|317475|317476|317480|317490|317503|317506|317507|317519|362068|364161|369961|370469|370470|370471|370499|370743|370747|370752|370755|370767|370781|370785|370787|372368|372370|372372|372400|372403|372406|372409|372410|372413|372418|372420|384435|396500|396503|396505|396506|396507|396511|396515|396516|396521|396525|396535|396536|396540|396547|396556|396562|396566|396568|396574|396579|396580|396582|396589|396591|396594|396595|396602|396603|396612|396613|396617|396618|396620|396623|396633|396634|396742|396745|396746|396749|396751|396752|396761|396766|396769|396775|396776|396779|396781|396784|396792|396796|396802|396807|396814|396816|396821|396825|396828|396833|396840|396841|396875|396883|396884|396886|396889|396890|396892|396894|396902|396903|396907|396910|396911|396918|396925|396926|396931|396932|396934|396935|396937|396938|396939|396945|396947|396954|397126|397130|397132|397134|397139|397141|397144|397150|397161|397171|397173|397174|397181|397181|397183|397191|397198|397200|397202|397209|397211|397224|397226|397227|397236|397239|397245|397252|397257|397260|397263|404632|404633|407568|407579|413801|419684|438424|441321|444388|444389|444390|444391|458586|458596|458606|458613|458621|458626|458631|458635|458639|458657|458659|458674|458679|458681|458683|458689|458699|458701|458704|458709|458711|458715|458717|458723|458725|458727|458732|458735|458738|458746|458751|458753|458755|458759|458761|458764|458989|458996|458999|459001|459002|459004|459006|459008|459009|459010|459013|459014|459016|459017|459019|459020|459022|459023|459024|459026|459028|459030|459035|459036|459038|459040|459042|459043|459044|459047|459050|459051|459059|459063|459064|459066|459068|459070|459072|459074|459075|459077|459079|459080|459084|459093|459095|459096|459099|459106|459107|459108|459110|459111|459113|459114|459118|459119|459122|459124|459125|459126|459127|459129|459130|459132|459134|459136|459140|459143|459145|459146|459149|459150|459157|459160|459161|459167|459169|459174|459179|459183|459462|459468|459472|459475|459476|459478|459484|459490|459492|459495|459496|459499|459504|459505|459509|459513|459515|459521|459524|459527|459529|459530|459532|459545|459546|459548|459550|459557|459561|459562|459573|459577|459580|459582|459584|459591|459592|459595|459597|459601|459606|459609|459612|474848|474854|474870|474882|474886|474886|474887|475026|475029|475031|475034|475041|475048|475052|475055|475058|475060|475064|475075|475080|475085|487409|502624|502748|503055|523826|524105|524126|524129|524131|524147|524148|524151|524153|524156|524158|524163|524165|524173|524175|524178|524181|524193|524200|524202|524204|524205|524210|524212|524216|524222|524224|524225|524227|524229|524232|524234|524238|524387|524407|524410|524415|524417|524419|524420|524422|524426|524431|524437|524441|524442|524449|524454|524457|524458|524468|524471|524477|524478|524482|524486|524488|524498|524502|524634|524635|524640|524648|524652|524654|524655|524658|524663|524668|524670|524672|524675|524678|524683|524685|524690|524694|524695|524697|524699|524700|524707|524709|524712|524713|524719|524730|524731|524734|524741|524749|524769|524771|524776|524777|524779|524789|524792|524796|524804|524805|524810|524813|524814|524820|524825|524828|524837|524840|524845|524856|524860|524862|524868|524878|537839|537840|537841|537842|537843|538324|562588|562593|562875|562880|562889|562896|562897|562899|562902|562903|562911|562912|562913|562915|562916|562918|562922|562924|562926|562928|562930|562935|562937|562940|562945|563231|563606|563607|563611|563612|563619|563625|563630|563631|563637|563643|563647|563651|563656|563658|563664|563670|563672|563674|563676|563678|563680|563684|563686|563687|563693|563696|565625|565629|565632|565647|565648|565652|565657|565659|565660|565662|565663|565665|565667|565669|565679|565684|565689|565691|565692|565698|565699|565704|565705|568322|568617|568624|568630|568631|568634|568657|568660|568666|568679|568680|568685|568697|568700|568701|568703|568708|568709|568712|568720|568726|568733|568734|568735|568745|568748|611967|614337|615921|615924|637819|637820|637821|637822|637823|637824|637825|637826|637827|637828|637829|637830|637831|637832|637833|637834|637835|637836|637837|637838|637839|637840|637841|637842|637843|637844|637845|637846|637847|637848|637849|637850|637851|637852|637853|637854|637855|637856|637857|637858|637859|637860|637861|637862|637863|637864|637865|637866|637867|637868|637869|637870|637871|637872|637873|637874|637875|637876|637877|637878|637879|637880|637881|637882|637883|637884|637885|637886|637887|637888|637889|637890|637891|637892|637893|637894|637895|637896|637897|637898|637899|637900|637901|637902|637903|637904|637905|637906|637907|637908|637909|637910|637911|637912|637913|637914|637915|637916|637917|637918|637919|637920|637921|637922|637923|637924|637925|637926|637927|637928|637929|637930|637931|637932|651875|651885|651889|651912|651914|651935|651942|651988|652027|652037|652117|652129|655910|655911|655912|684056|684057|684058|687391|687392|687394|687395|689936|689937|692623|692624|692626|692627|695425|700858|723398|723399|723400|723401|723402|736976|736977|744525|751493|751494|751496|751497|751501|759724|759885|767179|767185|767186|767191|767195|767206|767209|767210|767212|767214|767216|767219|767224|775358|775360|775399|775508|775522|783311|783315|783316|783320|783321|783322|783324|783325|783327|787777|790850|790851|790852|790853|790854|790855|796255|809311|809318|809320|809340|809345|809346|809353|809355|809358|809361|809365|809369|809381|809388|820030|820031|820082|820083|820084|820085|820086|820087|820088|820089|820090|835629|835630|835631|835632|835633|835634|835635|835636|835637|835638|835639|835640|835641|835642|835643|835644|835645|835646|835647|835648|835649|835650|835651|835652|835653|835654|835655|835656|835657|835658|835659|835660|835661|835662|835663|835664|835665|835666|835667|835668|835669|835670|835671|835672|835673|835674|835675|835676|835677|835678|835679|835680|835681|835682|835683|835684|835685|835686|835687|835688|835689|835690|835691|835692|835693|835694|835695|835696|835697|835698|835699|835700|835701|835702|835703|835704|835705|835706|835707|835708|835709|835710|835711|835712|835713|835714|835715|835716|835717|835718|835719|835720|835721|835722|835723|835724|835725|835726|835727|835728|835729|835730|835731|835732|851227|851229|851236|851240|851724|851726|852164|852166|852494|852498|858405|901273|901274|901275|901276|901277|901278|901279|901280|901281|901282|901283|901284|901285|901286|901287|901288|901289|901290|901291|901292|901293|901294|901295|901296|901297|901298|901299|901300|901301|901302|901303|901304|901305|901306|901307|901308|901309|901310|901311|901312|901313|901314|901315|901316|901317|901318|901319|901320|903331|918535|920470|920471|920472|920473|920474|920475|920476|920477|920478|925424|925425|925426|925427|925428|925429|925430|925431|925432|925433|925434|925435|925436|925437|925438|925439|925440|925441|925442|925443|925444|925445|925446|925447|925448|925449|925450|925451|925452|925453|925454|925455|925456|925457|925458|925459|925460|925461|925462|934593|934594|934595|934596|934597|934598|934599|934600|934601|934602|934603|934604|934605|934606|934607|934608|934609|934610|934611|934612|934613|934614|934615|934616|934617|934618|934619|934620|934621|934622|934623|934624|934625|934626|934627|940132|940133|940134|940135|940136|940137|940138|940928|940929|946418|946419|946420|946421|946422|946423|946424|946425|946426|946427|946428|946429|946430|946431|946432|946433|946434|946435|946436|946437|946438|946439|946440|946441|946442|946443|946444|946445|946446|946447|946448|946449|946450|946451|946452|946453|946454|946455|946456|946457|946458|946459|946460|946461|946462|946463|946464|946465|946466|946467|946468|946469|955722|955723|955724|955725|955726|955727|955728|955729|955730|955731|955732|955733|955734|955735|955736|955737|955738|960674|962723|962863|964318|965265|966664|966666|967187|983566", + "text": "Tuberous sclerosis 1" + }, + { + "baseId": "20136|20137|20138|20139|20142|20143|20144|27431|27432|27433|27434|27435|27436|27437|27438|27439|27440|27441|27441|27442|27443|27444|27445|27446|50125|50126|50127|50128|50129|50130|50131|50134|50135|50136|50139|50139|50163|50164|50165|50166|50168|50169|50170|50171|50172|50173|50174|50175|50176|50177|50179|50180|50184|50185|50187|50187|57888|57889|57890|57891|57892|57893|57894|57895|57896|57898|57899|57900|57901|57902|57903|57904|57905|57906|57907|57908|57909|57910|57911|57912|57913|57914|57915|57916|57917|57918|57919|57920|57921|57922|57924|57925|57926|57927|57928|57929|57930|57931|57932|57934|57935|57936|57937|57938|57939|57940|57941|57942|57943|57944|57945|57946|57947|57948|57949|57950|57951|57952|57953|57954|57955|57956|57957|57958|57959|57961|57962|57963|57964|57965|57966|57967|57968|57969|57970|57971|57972|57973|57974|57975|57976|57977|57978|57979|57980|57981|57982|57983|57984|57986|57987|57988|57989|57990|57991|57992|57993|57994|57995|57996|57997|57998|57999|58000|58001|58002|58003|58004|58005|58006|58007|58008|58009|58010|58011|58012|58014|58015|58016|58017|58019|58020|58021|58022|58023|58024|58025|58026|58028|58029|58030|58031|58032|58033|58034|58035|58036|58037|58038|58040|58041|58042|58043|58044|58045|58046|58047|58048|58049|58050|58051|58052|58053|58054|58055|58056|58058|58059|58060|58061|58062|58063|58064|58065|58066|58067|58068|58069|58071|58072|58073|58074|58075|58076|58077|58078|58079|58080|58081|58082|58083|58084|58085|58086|58087|58088|58089|58090|58091|58092|58093|58094|58095|58096|58097|58098|58099|58100|58101|58102|58103|58104|58105|58106|58107|58108|58109|58110|58111|58112|58113|58114|58115|58116|58117|58119|58120|58121|58122|58123|58124|58125|58126|58127|58128|58129|58130|58131|58133|58134|58135|58136|58137|58138|58139|58140|58141|58142|58144|58145|58146|58147|58148|58149|58150|58151|58153|58154|58155|58156|58157|58158|58159|58160|58161|58162|58163|58164|58165|58166|58167|58168|58168|58169|58170|58171|58172|58174|58175|58176|58177|58178|58179|58180|58181|58182|58183|58184|58185|58186|58187|58188|58189|58190|58191|58192|58193|58194|58195|58196|58197|58198|58200|58201|58202|58203|58204|58205|58208|58209|58210|58211|58212|58214|58215|58216|58217|58218|58219|58220|58222|58223|58224|58225|58226|58227|58228|58229|58230|58231|58232|58233|58234|58235|58236|58237|58239|58240|58241|58243|58244|58245|58246|58247|58248|58249|58250|58251|58252|58253|58254|58255|58256|58257|58259|58261|58262|58263|58264|58265|58266|58267|58268|58269|58270|58271|58272|58274|58275|58276|58277|58278|58279|58280|58280|58281|58282|58283|58284|58285|58286|58287|58288|58289|58290|58291|58292|58293|58294|58295|58296|58297|58298|58299|58300|58301|58302|58303|58304|58306|58307|58308|58309|58310|58311|58312|58313|58314|58315|58316|58317|58318|58319|58320|58321|58322|58323|58324|58324|58325|58326|58327|58328|58329|58330|58331|58332|58333|58334|58335|58336|58337|58338|58339|58340|58341|58342|58343|58344|58345|58346|58347|58348|58349|58350|58351|58352|58353|58354|58355|58356|58357|58358|58359|58360|58361|58362|58363|58364|58365|58366|58367|58368|58369|58370|58371|58372|58373|58374|58374|58375|58376|58377|58378|58379|58380|58381|58382|58383|58384|58385|58386|58387|58388|58389|58390|58391|58392|58393|58394|58395|58396|58397|58398|58399|58400|58401|58402|58403|58404|58405|58406|58407|58408|58409|58410|58411|58412|58413|58414|58415|58416|58417|58418|58419|58420|58421|58422|58423|58424|58425|58426|58427|58428|58429|58430|58431|58432|58433|58434|58435|58436|58437|58438|58439|58440|58441|58442|58443|58444|58445|58446|58447|58448|58449|58450|58451|58452|58453|58454|58455|58456|58457|58458|58459|58460|58461|58462|58463|58464|58466|58467|58468|58469|58470|58471|58472|58473|58474|58475|58476|58477|58478|58479|58480|58481|58482|58483|58484|58485|58486|58487|58488|58489|58490|58491|58492|58493|58494|58495|58496|58497|58498|58499|58500|58501|58502|58503|58504|58505|58506|58507|58508|58509|58510|58511|58512|58513|58514|58515|58516|58517|58518|58519|58521|58522|58523|58524|58525|58526|58527|58528|58529|58531|58532|58533|58534|58535|58536|58537|58538|58539|58540|58541|58542|58543|58544|58545|58546|58547|58548|58549|58550|58551|58552|58553|58554|58555|58556|58557|58558|58559|58560|58561|58562|58563|58564|58565|58566|58567|58569|58570|58571|58572|58573|58574|58575|58576|58577|58578|58579|58580|58581|58582|58583|58584|58585|58586|58587|58588|58589|58590|58591|58592|58593|58594|58595|58596|58597|58598|58599|58600|58601|58602|58603|58604|58605|58606|58607|58608|58609|58610|58611|58612|58613|58615|58616|58617|58618|58619|58620|58621|58622|58623|58624|58625|58626|58627|58628|58629|58630|58631|58632|58633|58635|58636|58637|58638|58639|58640|58641|58642|58643|58644|58645|58646|58647|58648|58649|58650|58651|58652|58653|58654|58655|58656|58657|58658|58659|58660|58661|58662|58663|58664|58665|58666|58667|58668|58669|58670|58671|58672|58673|58674|58675|58676|58677|58678|58679|58680|58681|58682|58683|58684|58685|58686|58687|58688|58689|58690|58691|58692|58693|58694|58695|58696|58697|58698|58699|58700|58701|58702|58703|58704|58705|58706|58707|58708|58709|58710|58711|58712|58713|58714|58715|58716|58717|58718|58719|58720|58721|58722|58723|58724|58725|58726|58727|58728|58729|58730|58731|58732|58733|58734|58735|58736|58737|58738|58739|58740|58741|58742|58743|58744|58745|58746|58747|58748|58749|58750|58751|58752|58754|58755|58756|58757|58758|58759|58760|58761|58762|58763|58764|58765|58766|58767|58768|58769|58770|58771|58772|58773|58774|58775|58776|58777|58778|58779|58780|58781|58782|58783|58785|58786|58787|58788|58789|58790|58791|58792|58793|58794|58795|58796|58797|58798|58799|58800|58801|58802|58803|58804|58805|58806|58807|58808|58809|58810|58811|58812|58813|58815|58816|58817|58818|58819|58820|58821|58822|58823|58824|58826|58827|58828|58829|58830|58831|58832|58833|58834|58835|58836|58837|58838|58839|58840|58841|58842|58843|58843|58844|58845|58846|58847|58848|58849|58850|58851|58852|58853|58854|58855|58856|58857|58858|58859|58860|58861|58862|58863|58864|58865|58866|58867|58868|58869|58870|58871|58872|58873|58875|58876|58877|58878|58879|58880|58881|58882|58883|58884|58885|58886|58887|58888|58889|58890|58891|58892|58893|58894|58895|58896|58897|58898|58899|58899|58900|58901|58902|58903|58904|58905|58906|58907|58908|58909|58910|58911|58912|58913|58914|58915|58916|58917|58918|58920|58921|58922|58923|58924|58925|58926|58927|58928|58929|58930|58931|58932|58933|58934|58935|58936|58937|58938|58939|58940|58941|58942|58943|58944|58945|58946|58947|58948|58949|58950|58951|58952|58953|58954|58955|58956|58957|58958|58959|58960|58961|58962|58963|58964|58965|58966|58967|58968|58969|58970|58971|58972|58973|58974|58975|58977|58978|58979|58980|58980|58981|58982|58983|58984|58985|58986|58987|58988|58989|58990|58991|58992|58993|58994|58995|58996|58997|58998|58999|59000|59001|59002|59003|59004|59005|59006|59007|59008|59009|59010|59011|59012|59013|59014|59015|59016|59017|59018|59019|59020|59021|59022|59023|59024|59025|59026|59027|59028|59029|59030|59031|59032|59033|59034|59035|59036|59037|59038|59039|59040|59041|59042|59043|59044|59045|59046|59047|59048|59049|59051|59052|59053|59054|59055|59056|59057|59057|59058|59059|59060|59061|59062|59063|59064|59065|59066|59067|59068|59069|59070|59071|59072|59073|59074|59075|59076|59077|59077|59078|59079|59080|59081|59082|59083|59084|59085|59086|59087|59088|59089|59090|59091|59092|59093|59094|59095|59096|59097|59098|59099|59100|59101|59102|59103|59104|59105|59106|59107|59108|59109|59110|59111|59112|59114|59115|59116|59117|59118|59119|59119|59120|59121|59122|59123|59124|59125|59126|59127|59128|59129|59130|59131|59132|59134|59136|59137|59138|59139|59140|59141|59142|59143|59144|59145|59146|59148|59149|59151|59152|59153|59154|59155|59156|59157|59158|59159|59160|59161|59162|59163|59164|59165|59166|59167|59168|59169|59170|59171|59172|59173|59174|59175|59176|59177|59178|59179|59180|59181|59182|59185|59188|59189|59190|59191|59192|59193|59194|59195|59196|59197|59198|59199|59200|59201|59202|59203|59204|59205|59206|59207|59208|59209|59210|59211|59212|59213|59214|59215|59216|59217|59218|59219|59220|59221|59222|59223|59224|59225|59226|59227|59228|59229|59230|59231|59232|59233|59234|59235|59236|59237|59238|59239|59240|59241|59242|59243|59245|59246|59247|59248|59249|59249|59250|59251|59252|59253|59254|59255|59256|59257|59258|59259|59260|59261|59262|59263|59264|59265|59266|59267|59268|59269|59270|59271|59272|59273|59274|59275|59276|59277|59278|59279|59280|59281|59282|59283|59284|59286|59287|59288|59289|59290|59291|59292|59293|59294|59295|59296|59297|59298|59299|59300|59301|59301|59302|59303|59304|59305|59306|59307|59308|59309|59310|59311|59312|59313|59314|59315|59316|59317|59318|59319|59320|59321|59322|59323|59324|59325|59326|59327|59328|59329|59330|59331|59332|59333|59334|59334|59335|59336|59337|59338|59339|59340|59341|59342|59343|59344|59345|59346|59347|59348|59349|59350|59351|59352|59353|59354|59355|59356|59357|59358|59359|59360|75626|75627|75628|75629|75630|75631|75632|75633|75634|75635|75636|75637|75638|75639|75640|75641|75642|75643|75645|75646|75647|75648|75649|75650|75651|75652|75653|75654|75655|75656|75657|75658|75659|75660|75661|75662|75663|75664|75665|75666|75667|75668|75669|75670|75671|75672|75673|75674|75675|75676|75677|75678|75679|75680|75681|75682|75683|75684|75685|75686|75687|75688|75689|75690|75691|75692|75693|75694|75695|75696|75697|75698|75699|75700|75701|75702|75703|75704|75705|75706|75708|75709|75710|75711|75712|75713|75714|75715|75716|75717|75718|75719|75720|75721|75722|75723|75724|75725|75726|75727|75728|75729|75730|75731|75732|75733|75734|75735|75736|75737|75738|75739|75740|75741|75742|75743|75744|75745|75746|75747|75748|75749|75750|75751|75752|75753|75754|75755|75756|75757|75758|75759|75760|75761|75762|75763|75764|75765|75766|75767|75768|75769|75770|75771|75772|75773|75774|75775|75776|75777|75778|75779|75780|75781|75782|75783|75784|75785|75786|75787|75788|75789|75790|75791|75792|75793|75794|75795|75796|75797|75798|75799|75800|75802|75803|75804|75805|75806|75807|75808|75809|75813|75814|75815|75816|75817|75818|75819|75820|75821|75822|75823|75824|75825|75826|75827|75828|75829|75830|75831|75832|75833|75834|75835|75836|75837|75838|75839|75840|75841|75842|75843|75844|75845|75846|75847|75848|75849|75850|75851|75852|75853|75854|75855|75856|75857|75858|75859|75860|75861|75862|75863|75864|75865|75866|75867|75868|75869|75870|75871|75872|75873|75874|75875|75876|75877|75878|75879|75880|75881|75882|75883|75884|75885|75886|75887|75888|75889|75890|75891|75892|75893|75894|75895|75896|75897|75898|75899|75900|75901|75902|75903|75904|75905|75906|75907|75908|75909|75910|75911|75912|75913|75914|75915|75916|75917|75918|75919|75920|75921|75922|75923|75924|75925|75926|75927|75928|75929|75930|75931|75932|75933|75934|75935|75936|75937|75938|75939|75940|75941|75942|75943|75944|75945|75946|75947|75948|75949|75950|75951|75952|75953|75954|75955|75956|75957|75958|75959|75960|75961|75962|75963|75964|75965|75966|75967|75968|75969|75970|75971|75972|75973|75974|75975|75976|75977|75978|75979|75980|75981|75982|75983|75984|75985|75987|75988|75989|75990|75991|75992|75993|75994|75995|75996|75997|75998|75999|76000|76001|76002|76003|76005|76006|76007|76008|76009|76010|76011|76012|76013|76014|76015|76016|76017|76018|76019|76020|76021|76022|76023|76024|76025|76026|76027|76028|76029|76030|76031|76032|76033|76034|76035|76036|76037|76038|76039|76040|76041|76042|76043|76044|76045|76046|76047|76048|76050|76051|76052|76053|76054|76055|76056|76057|76058|76059|76060|76061|76062|76063|76064|76065|76067|76068|76069|76070|76071|76072|76073|76074|76075|76076|76078|76079|76080|76081|76082|76083|76084|76085|76086|76087|76088|76089|76090|76091|76092|76093|76094|76095|76096|76097|76098|76099|76100|76101|76102|76104|76105|76106|76107|76108|76109|76110|76111|76112|76113|76116|76117|76118|76119|76120|76121|76122|76123|76124|76125|76126|76127|76128|76129|76130|76131|76132|76134|76135|76136|76137|76138|76139|76140|76141|76142|76143|76145|76146|76147|76149|76150|76151|76152|76153|76154|76155|76157|76158|76159|76160|76161|76162|76163|76164|76165|76166|76167|76168|76169|76170|76171|76172|76173|76174|76175|76176|76177|76178|76179|76180|76181|76182|76183|76184|76185|76186|76187|76188|76189|76190|76191|76192|76193|76194|76196|76197|76198|76199|76200|76201|76202|76203|76204|76205|76207|76208|76209|76210|76211|76212|76213|76214|76215|76216|76217|76218|76219|76220|76221|76222|76223|76224|76225|76226|76227|76228|76229|76230|76231|76232|76233|76234|76235|76236|76237|76238|76239|76240|76241|76242|76243|76244|76245|76246|76247|76248|76249|76250|76251|76252|76253|76254|76255|76258|76259|76260|76261|76262|76263|76264|76265|76266|76267|76268|76269|76270|76271|76272|76273|76274|76275|76276|76277|76278|76279|76282|76283|76284|76285|76286|76287|76288|76289|76290|76291|76292|76293|76294|76295|76296|76297|76298|76299|76300|76301|76302|76303|76304|76305|76306|76307|76308|76309|76310|76311|76312|76314|76315|76316|76317|136089|139110|139124|141437|141439|141443|141445|141448|171186|171187|184113|184115|184120|184122|184127|184140|184150|203086|203105|203109|203129|203132|203135|203138|203140|203141|203147|203207|203216|213816|222450|222451|227853|235111|235117|235131|235132|240489|242207|242214|242217|242233|242253|242254|242258|242259|242268|242278|242289|242292|242303|242325|255499|255504|265615|307195|307212|307222|307230|307235|307244|307252|307259|307267|307268|307281|311362|311377|311380|311385|311390|311391|311392|311396|311439|311453|311459|311464|311473|311476|311477|311496|311509|311510|311511|311515|316930|316941|316956|316966|316989|316998|317003|317005|317014|317018|317023|317032|317055|317056|317355|317373|317374|317381|317384|317405|317419|317434|317436|317468|317477|317505|317509|317512|317528|324601|324604|324612|324618|324619|324621|324627|324628|324633|324634|324639|334156|334158|334162|334167|334173|334175|340847|340849|340850|340851|340852|340853|340855|340856|340858|340859|340862|340863|340865|340867|342251|342258|342264|342266|342269|342270|342271|342274|342276|342277|342282|353851|353852|374716|374840|374841|374860|377309|400727|400952|401664|401667|407570|415478|434510|438664|465151|465275|465322|465713|465815|465973|466015|466207|477283|477330|478005|505455|529783|530083|553323|570112|644174|644227|654532|654533|688537|726488|797273|843467|874842|874843|874844|874845|874846|874847|874848|874849|874850|876634|876635|876636|876637", + "text": "Tuberous sclerosis syndrome" + }, + { + "baseId": "20138|20142|27435|27436|50125|50126|50129|50130|50133|50133|50134|50135|50137|50139|50163|50179|57898|57899|57913|57914|57927|57930|57932|57944|57958|57983|58047|58093|58134|58145|58146|58168|58170|58177|58181|58186|58215|58229|58233|58234|58245|58633|58684|58805|59092|59105|59293|75649|75656|75666|75668|75669|75679|75693|75701|75711|75743|75745|75761|75772|76006|76128|141430|141433|141434|151413|151694|166563|182909|182914|182921|184112|202466|202475|202497|203117|203163|240476|240477|240485|240498|240500|240502|240510|242231|242299|242315|253371|307194|307195|307204|307205|307210|307212|307221|307222|307230|307235|307244|307245|307248|307252|307254|307255|307259|307260|307264|307266|307267|307268|307272|307280|307281|307286|311362|311377|311378|311379|311380|311382|311385|311390|311391|311392|311394|311396|311418|311428|311439|311440|311453|311454|311459|311460|311464|311465|311473|311476|311477|311480|311481|311482|311487|311488|311496|311497|311498|311504|311505|311506|311508|311509|311510|311511|311515|316930|316941|316956|316958|316960|316965|316966|316985|316989|316990|316997|316998|317003|317004|317005|317012|317014|317017|317018|317023|317024|317025|317027|317031|317032|317033|317034|317055|317056|317057|317063|317065|317352|317355|317360|317366|317371|317373|317374|317381|317383|317384|317403|317405|317406|317419|317425|317426|317427|317434|317436|317437|317438|317442|317443|317444|317449|317457|317459|317464|317467|317468|317475|317476|317477|317480|317490|317503|317505|317506|317507|317509|317512|317519|317528|342264|353851|353852|363008|363009|364161|370767|390746|396521|396938|397181|400793|400979|401383|401474|404624|404625|404628|404632|404633|422079|459143|465350|465841|465939|466003|474886|529560|529578|529973|539064|563637|569681|575484|614337|614413|614414|614415|614416|614417|614418|637848|687391|687392|816331|816332|816333|821822|901273|901274|901275|901276|901277|901278|901279|901280|901281|901282|901283|901284|901285|901286|901287|901288|901289|901290|901291|901292|901293|901294|901295|901296|901297|901298|901299|901300|901301|901302|901303|901304|901305|901306|901307|901308|901309|901310|901311|901312|901313|901314|901315|901316|901317|901318|901319|901320|903331|906341|918542|918543|918544|964319|964685", + "text": "Focal cortical dysplasia type II" + }, + { + "baseId": "20141|27432|27435|27435|27436|27436|27439|27441|50133|50139|50179|50187|50187|57953|57958|58047|58133|58168|58178|58208|58245|58280|58324|58324|58374|58426|58434|58530|58548|58564|58633|58666|58668|58684|58701|58735|58784|58805|58843|58846|58847|58899|58930|58980|59057|59077|59085|59092|59099|59105|59113|59119|59193|59203|59249|59293|59301|59308|59334|76006|76049|76066|76103|76128|76133|76156|76161|76206|151694|184112|203109|203117|203163|242231|242299|242310|342264|360985|360986|397181|400793|400979|401383|401474|401549|422079|459111|465350|465841|465939|466003|474886|529560|529578|529973|539064|569681|614337|614413|614414|614415|614416|614417|614418|816331|816332|816333|919194|919195|919615|919616|919617|919618|920352|920353|920354|920355", + "text": "Lymphangiomyomatosis" + }, + { + "baseId": "20142", + "text": "Focal cortical dysplasia of Taylor type 2B" + }, + { + "baseId": "20145|31559", + "text": "Venous thrombosis, susceptibility to" + }, + { + "baseId": "20147", + "text": "Abnormality of carbohydrate metabolism/homeostasis" + }, + { + "baseId": "20158|512867|512952|539067|715151", + "text": "Huntington disease-like 2" + }, + { + "baseId": "20159|20160|136545|142136|142137|186089|212631|215728|221754|221755|240234|244509|253060|304377|304394|304399|304405|304406|304416|304420|308109|308110|308128|308130|308131|308140|308146|308147|313131|313140|313142|313152|313153|313161|313166|313171|313173|313189|313191|313192|313197|313205|313208|313217|313218|313227|313228|313229|313233|313234|313235|313237|313246|313255|369372|369375|369726|395913|395915|441171|457231|502296|502593|523291|523299|523642|561956|564664|636612|677279|683978|683979|687189|687193|689906|695378|789373|898990|898991|898992|898993|898994|898995|898996|898997|898998|898999|899000|899001|899002|899003|899004|899005|899006|899007|899008|899009|899010|899011|899012|899013|899014|899015|899016|899017|981615", + "text": "Charcot-Marie-Tooth disease, type 4D" + }, + { + "baseId": "20161|20162|20163|20164|20165|20166|20167|20168|20169|44320|44321|132549|132550|132551|132552|254729|254730|266805|318530|318531|318532|318536|318537|318552|318553|326720|326736|326737|326738|326740|326751|326755|326756|332928|332930|332932|332934|332939|332941|332949|332956|334605|334606|334613|334621|334623|334625|334626|334628|334629|334635|372576|462499|463236|463240|487616|527904|527907|565730|567072|568175|572071|609861|641399|641400|641401|641402|652271|713768|791279|792789|820524|840302|840303|840304|840305|840306|870473|870474|870475|870476|870477|870478|870479|870480|870481|870482|870483|870484|870485|870486|870487|870488|870489|870490|872294|926740|926741|936276|948170|948171|956954", + "text": "Hyper-IgM syndrome type 2" + }, + { + "baseId": "20170|20171|20172|20173|20174|20175|20176|20177|20178|204283|204284|204285|204286|204287|204288|204289|204290|204291|204292|204293|204294|204295|204296|204297|204298|204299|204300|204302|204303|204304|243561|257261|257262|265656|267414|269158|272480|273198|334667|334672|334673|334681|334683|334689|334691|344507|344513|344516|349542|349549|349550|349553|349554|349557|349558|350551|350552|350555|350556|350558|350561|350562|350565|350570|350576|353531|353532|358621|358622|358623|358624|358625|358626|358627|358628|358629|358630|410721|415671|469303|470825|471325|487835|532832|548885|548887|548889|548953|548955|548961|548965|548967|549209|549210|549379|549380|549796|549799|575064|575065|612359|648517|648518|648519|705333|716765|716766|716767|716768|728483|728485|731317|731318|742196|742197|742198|742201|742203|742204|745105|757327|757329|757331|757332|757333|757334|757335|757336|760765|760930|772952|772955|772956|772957|772958|772959|772960|772961|772962|772963|772966|772967|776640|776761|776919|786306|786307|786308|786309|786311|786312|788334|798923|801739|801740|801741|816417|848129|848130|858727|882679|882680|882681|882682|882683|882684|882685|882686|882687|882688|882689|882690|882691|882692|882693|882694|882956|882957|882958|882959|882960|882961|882962|882963|929123|958755|958756|958757|960929|979992|979993|979994|979995|979996", + "text": "Mucolipidosis type IV" + }, + { + "baseId": "20179|20180|20181|20182|20182|20183|20184|20185|20185|20187|20188|48026|48026|48027|48028|54592|54593|54594|57135|57138|57139|57140|57141|57144|57154|57157|57157|57158|57159|57160|57161|57162|57162|57165|57166|57166|57167|57168|57170|57171|57173|57174|57176|57178|57179|57182|57182|57183|57185|57187|57189|89181|97446|175675|175676|175676|175678|175679|175679|175683|175685|175686|175687|175688|175813|175815|175825|175826|175827|175828|191397|193578|195346|214845|230023|230025|230025|230026|230027|230031|230032|230033|230035|230036|230036|238049|254070|269355|313423|313426|313427|313432|313458|319529|319530|319531|319552|325666|325667|325674|325676|325679|325683|325686|325691|325699|325709|325739|326704|326707|326722|326730|326732|357961|357962|413306|431752|431753|444756|491719|491837|492015|497372|497592|545944|545946|545948|545949|545958|545960|545961|545962|545963|545964|545968|545970|545971|545973|545973|545987|546222|546222|546224|546225|546234|546238|546241|546242|546244|546247|546255|546255|546256|546258|546265|546266|546352|546359|546360|546362|546364|546370|546373|546376|546380|546383|546384|546386|546388|546390|546396|546405|546406|546407|546409|546529|546532|546533|546543|546551|546555|546557|546559|546562|546575|546579|546584|546588|546592|546602|546608|546610|546615|546616|546623|546624|546626|737895|752588|752591|768357|768361|775646|783958|783961|838138|838144|867636|867637|867638|867639|867640|867641|867642|867643|867644|867645|867646|867647|867648|867656|867666|867667|868630|868631|868632|978950|978951|978952|978953|978954|978955|978956|978957|978958|978959|978960|978961|978962|978963|978964|978965|978966|978967", + "text": "Usher syndrome, type 1C" + }, + { + "baseId": "20180|20182|20182|20185|20185|20186|20187|48026|48026|57144|57154|57157|57158|57162|57165|57166|57168|57173|57174|57182|57183|89181|97446|175676|175678|175679|175683|175687|175813|191397|193578|230023|230025|230026|230027|230031|230033|230035|230036|238049|357961|357962|389918|413306|431752|431753|444756|491837|545944|545946|545948|545949|545958|545960|545961|545962|545963|545964|545968|545970|545971|545973|545987|546222|546224|546225|546234|546238|546241|546242|546244|546247|546255|546256|546258|546265|546266|546352|546359|546360|546362|546364|546370|546373|546376|546380|546383|546384|546386|546388|546390|546396|546405|546406|546407|546409|546529|546532|546533|546543|546551|546555|546557|546559|546562|546575|546579|546584|546588|546592|546602|546608|546610|546615|546616|546623|546624|546626|590301|615813|615840", + "text": "Deafness, autosomal recessive 18" + }, + { + "baseId": "20189|20190|20191|20192|20193|20194|20195|20196|20197|20198|252627|252628|252629|252631|252632|301965|301967|301968|301970|301971|301977|301984|301986|301990|305095|305131|305143|305144|305153|305157|305158|305159|305160|305162|305164|305167|305170|305177|309792|309812|309813|309814|309816|309817|309838|309839|309840|309853|309874|309955|309962|309967|309972|309986|309987|309995|309996|369507|539006|612089|620252|620253|623297|699869|699870|710803|735973|750443|759551|790696|790697|790698|790699|897521|897522|897523|897524|897525|897526|897527|897528|897529|897530|897531|897532|897533|897534|897535|897536|897537|897538|897539|897540|897541|897542|897543|897544|897545|900314|900315|900316|900317|900318|900319|961850|965422", + "text": "Renal tubular acidosis, distal, autosomal recessive" + }, + { + "baseId": "20200|20201|20207|34122|70494|70494|141625|141626|141627|141628|141629|141630|141631|188834|191829|191830|191830|192686|192686|192995|193140|244839|254719|254728|254731|254732|254765|254766|254767|254768|254769|268249|268249|270757|273981|273981|273982|273982|318487|318488|318490|318492|318497|318498|318498|318565|318565|318567|318567|318596|318611|318612|318612|318615|318615|318618|318618|318621|318621|318629|318629|318630|318630|318631|318633|318634|318634|318639|318642|318656|318662|318672|318673|318676|318677|318678|318682|318683|318691|318692|326629|326631|326632|326634|326635|326636|326639|326642|326642|326669|326717|326717|326765|326765|326770|326770|326774|326789|326791|326914|326916|326921|326921|326937|326937|326943|326943|326954|326959|326960|326971|326973|326975|326980|326981|326986|326988|326989|326990|332870|332875|332878|332881|332882|332882|332917|332917|332957|332957|332958|332972|332981|332985|333004|333004|333007|333009|333009|333010|333010|333011|333015|333015|333016|333016|333017|333017|333018|333019|333019|333020|333052|333054|333086|333103|333107|334541|334547|334550|334551|334554|334563|334565|334600|334600|334602|334602|334638|334638|334640|334640|334644|334644|334645|334645|334646|334646|334703|334703|334707|334709|334711|334711|334722|334722|334724|334726|334726|334732|334739|334739|334766|334766|334772|334773|334773|334777|334789|334792|334794|334801|334802|334806|360111|413333|434048|445090|462466|462468|462497|462501|462521|462526|462527|462532|462534|462536|462727|462761|462773|462775|462782|462783|462786|462792|462794|463211|463212|463234|463252|463269|463270|463272|463277|463278|463281|463282|463285|463288|463333|463340|463342|463346|463370|463380|463387|463392|463392|463394|463397|463397|463400|463405|491926|493532|505053|527206|527340|527343|527351|527360|527365|527365|527366|527366|527381|527382|527384|527387|527390|527398|527402|527404|527411|527412|527413|527414|527417|527420|527422|527424|527424|527426|527652|527658|527661|527663|527665|527667|527668|527676|527679|527684|527698|527703|527884|527898|527913|527915|527945|527946|527954|527954|565030|565725|565725|565733|565736|565741|565750|565751|565763|565766|565768|565769|565771|566292|567060|567061|567069|567074|567087|567091|567091|568173|568178|568181|568190|568191|568195|568196|568201|568202|572074|572075|572075|572084|572103|572104|572120|572126|572132|572134|572139|572142|572142|572145|578505|582661|612964|641386|641387|641388|641398|641403|641404|641405|641406|641407|641408|641409|641410|641411|641412|641413|641436|641437|641438|641447|641448|641449|641459|641460|641462|641463|641465|641466|641467|641470|641471|641474|641475|641477|641478|641479|641481|641482|641488|641489|641490|641491|641492|641493|641494|641495|641496|641497|641498|641499|641500|641501|641502|641503|652502|652739|688056|693283|693284|693285|693291|693292|693300|693305|693308|693309|702530|702540|702541|725312|738886|753644|769304|769338|769342|769356|799730|820519|820522|820523|820525|840270|840271|840272|840273|840274|840274|840275|840276|840301|840307|840308|840309|840310|840311|840312|840313|840314|840315|840316|840317|840318|840319|840320|840321|840322|840323|840324|840325|840326|840327|840328|840329|840330|840331|840332|840333|840334|840335|840336|840337|840338|840339|840340|840341|840401|840402|840407|840408|840413|840414|840415|840417|840418|840423|840424|840425|840427|840428|840429|840435|840436|840437|840444|840444|840445|840446|840447|840448|840449|840450|840451|840452|840453|870445|870446|870447|870448|870449|870450|870451|870452|870452|870491|870492|870493|870521|870522|870523|870524|870525|870526|870527|870528|870529|870530|870531|870532|870533|870534|870535|870536|870537|870538|870539|870540|870541|870542|870543|870544|870545|870546|870547|870548|870549|926731|926732|926733|926734|926735|926739|926742|926743|926744|926745|926746|926747|926748|926749|926750|926751|926766|926768|926772|926773|926776|926777|926780|926781|926782|926783|926784|936262|936263|936264|936275|936277|936278|936279|936280|936281|936282|936283|936305|936306|936308|936310|936313|936314|936315|941041|941042|948159|948169|948172|948173|948174|948175|948176|948177|948178|948227|948228|948235|948236|956940|956941|956955|956956|956957|956958|956959|956960|956992|956995|957001|960059|960060", + "text": "Pseudohypoaldosteronism type 2C" + }, + { + "baseId": "20211", + "text": "SCHIZOPHRENIA 9, SUSCEPTIBILITY TO" + }, + { + "baseId": "20212|20213|20214|20215|101183|101184|101185|141240|141241|141242|141243|141244|141245|141246|177764|177765|178709|188633|188635|188636|188637|188641|188643|195986|242112|270849|361763|361764|361765|361766|400342|400850|465286|465384|490836|504948|529625|567254|573509|573513|573513|656304|688486|842675|874091|874092|874093|874094|874095|874096|874097|874098|874099|874100|874101|874102|874103|874104|874105|874106|874107|874108|874109|874110|874111|874112|874113|874114|874115|874116|874117|874118|874119|874120|874121|874122|874123|874124|874125|874126|874127|874128|874129|874130|874131|874132|874133|874134|874135|874136|874137|874138|876566", + "text": "Sick sinus syndrome 2, autosomal dominant" + }, + { + "baseId": "20216|101182|101183|101185|141241|141244|141245|141246|177151|177764|177765|177766|178709|188624|188625|188626|188627|188628|188629|188630|188631|188632|188633|188635|188636|188637|188639|188640|188641|188642|188643|188643|188645|188646|189358|189359|189360|189362|189363|189364|194414|195979|195980|195981|195982|195985|195986|195987|195988|222432|224510|242109|242110|242111|242112|242113|242114|242115|242116|242117|242118|258952|258953|258960|267586|270849|271171|271300|271760|272719|273510|275371|361765|373671|373674|373683|373684|374298|374305|374306|374309|374721|374730|376624|376638|376639|376643|376663|400331|400332|400341|400342|400343|400344|400363|400479|400482|400486|400490|400492|400496|400508|400509|400815|400817|400822|400823|400829|400845|400850|400851|400853|401174|401179|401181|401184|401191|401193|401195|401198|401205|401206|409343|413406|415447|426120|441754|441755|464500|464501|464503|464508|464511|464515|465141|465144|465145|465157|465159|465162|465164|465276|465279|465280|465283|465286|465286|465288|465297|465299|465301|465369|465376|465384|465391|465395|465397|465402|465407|465409|465412|482075|490836|493884|504938|504941|505152|505159|510666|510667|510668|510669|510677|510680|510681|510682|510684|529024|529028|529033|529035|529037|529038|529040|529044|529046|529102|529103|529105|529108|529114|529428|529443|529445|529448|529621|529625|529631|529632|529641|529643|529647|529650|529652|529655|529658|551789|551790|567243|567248|567254|567254|567259|567261|567263|567268|567271|567273|567278|567281|567283|569115|569118|569130|569140|569141|569150|569594|569595|569597|573509|573510|573511|573513|573513|573517|573520|573524|573526|573529|573533|573534|573535|573536|587012|623076|643523|643524|643525|643526|643527|643528|643529|643530|643531|643532|643533|643534|643535|643536|643537|643538|643539|643540|643541|643542|643543|643544|643545|656301|656303|680055|684556|684557|688484|688485|688486|688487|688488|688492|688493|693737|693738|693740|695659|703319|770328|770332|770333|785003|785004|785006|785009|797194|820733|842668|842669|842670|842671|842672|842673|842674|842675|842676|842677|842678|842679|842680|842681|842682|842683|842684|842685|842686|842687|842688|842689|842690|842691|842692|842693|842694|842695|842696|842697|842698|842699|842700|842701|842702|842703|842704|842705|927411|927412|927413|927414|927415|927416|927417|927418|927419|927420|927421|927422|927423|927424|937054|937055|937056|937057|937058|937059|937060|937061|937062|937063|937064|937065|937066|937067|937068|937069|937070|937071|937072|949002|949003|949004|949005|949006|949007|949008|949009|949010|949011|957498|957499|957500|957501|957502|957503|957504|957505|957506|957507|957508|957509|957510", + "text": "Brugada syndrome 8" + }, + { + "baseId": "20216|29190|44292|44801|45342|45426|45428|49116|53516|54242|54748|55691|55936|56038|56180|56291|56323|56440|56493|56495|56634|56805|57458|78464|78466|78482|78699|140876|141245|141502|141530|153685|171122|173867|175861|178572|178581|178584|178601|178654|178658|188357|189319|189364|189539|193356|196544|224258|224321|224346|224448|224511|224515|229491|240190|241821|259063|293513|301509|359753|374980|395893|462084|514088|679378|679400|679414|679422|679426|679450|679454|679479|679480|858248|965299", + "text": "Ventricular tachycardia" + }, + { + "baseId": "20217|20218", + "text": "Hypercalciuria, absorptive, susceptibility to" + }, + { + "baseId": "20219|20220|20221|33477|33905|172165|253321|253324|263828|263829|263830|263831|307031|307032|307034|307036|307040|307042|307043|307045|307046|307048|311145|311150|311152|311158|316756|316758|316759|316760|316771|316778|316779|316780|316783|317161|317174|317175|317178|317182|317201|396871|550616|684053|684055|805015|901173|901174|901175|901176|901177|901178|901179|901180|901181|901182|901183|901184|903321", + "text": "Dystonia 1" + }, + { + "baseId": "20219", + "text": "Dystonia-1, torsion" + }, + { + "baseId": "20220", + "text": "Dystonia, early-onset atypical, with myoclonic features" + }, + { + "baseId": "20221", + "text": "Dystonia 1, torsion, modifier of" + }, + { + "baseId": "20222|20223|20224|20225|47509|47510|47511|47512|47513|47514|255413|255414|255415|255417|255421|255422|255423|255424|269087|323574|323576|323580|333305|340063|340067|341505|341509|341510|341514|341520|341522|341524|341525|341528|341535|547623|547624|547626|547627|547628|547630|547633|547635|547637|547648|547663|547664|547666|547877|547882|547883|547893|547897|547899|547901|548284|548285|548286|548289|548295|548303|548304|548318|548324|548326|620533|726336|739870|770408|842800|874309|874310|874311|874312|874313|874314|874315|874316|874317|874318|874319", + "text": "Spondylocostal dysostosis 2, autosomal recessive" + }, + { + "baseId": "20223|47509|255414|265437|269087|340063|341505|341510|341524|714683|739871|739872|754778|770408|770410|770413|785057|785058|842800|874309|979690|979691|979692|979693|979694|979695|979696|979697|979698", + "text": "Spondylocostal dysostosis type 2" + }, + { + "baseId": "20226|20227|20229|140438|790045", + "text": "Heterotaxy, visceral, 2, autosomal" + }, + { + "baseId": "20230|20231|20232|20233|20239|20240|20241|196338|267580|274297|295775|295777|295780|295792|295795|295800|295804|295805|295811|295821|295828|295830|295835|295838|295839|295845|295846|295852|295853|295856|295869|295876|295877|295880|295890|295891|295893|295894|295899|295900|295939|295949|297591|297592|297607|297611|297613|297618|297626|297637|297645|297649|297651|297669|297671|297672|297673|297680|297681|297682|297689|297690|297695|297696|297699|297700|297701|297703|297705|297712|297715|297717|297718|297763|301485|301495|301497|301498|301499|301507|301508|301515|301521|301530|301532|301555|301565|301568|301572|301573|301585|301588|301606|301607|301610|301615|301616|301618|301621|301622|301623|301721|301724|301733|301738|301742|301743|301744|301746|301752|301756|301759|301760|301767|301768|301771|301781|301789|301791|301792|301793|301794|301806|301807|301810|301811|698894|893203|893204|893205|893206|893207|893208|893209|893210|893211|893212|893213|893214|893215|893216|893217|893218|893219|893220|893221|893222|893223|893224|893225|893226|893227|893228|893229|893230|893231|893232|893233|893234|893235|893236|893237|893238|893239|893240|893241|893242|893243|893244|893245|893246|893247|893248|893249|893250|893251|893252|893253|893254|893255|893256|893257|893258|893259|893260|893261|893262|893263|893264|893265|893266|893267|893268|893269|893270|893294|896055|896056|896057|896058|976648", + "text": "Craniometaphyseal dysplasia, autosomal dominant" + }, + { + "baseId": "20231|20234|20235|20237|20238|196338|267580|274297|295775|295777|295780|295792|295795|295800|295804|295805|295811|295821|295828|295830|295835|295838|295839|295845|295846|295852|295853|295856|295869|295876|295877|295880|295890|295891|295893|295894|295899|295900|295939|295949|297591|297592|297607|297611|297613|297618|297626|297637|297645|297649|297651|297669|297671|297672|297673|297680|297681|297682|297689|297690|297695|297696|297699|297700|297701|297703|297705|297712|297715|297717|297718|297763|301485|301495|301497|301498|301499|301507|301508|301515|301521|301530|301532|301555|301565|301568|301572|301573|301585|301588|301606|301607|301610|301615|301616|301618|301621|301622|301623|301721|301724|301733|301738|301742|301743|301744|301746|301752|301756|301759|301760|301767|301768|301771|301781|301789|301791|301792|301793|301794|301806|301807|301810|301811|698894|893203|893204|893205|893206|893207|893208|893209|893210|893211|893212|893213|893214|893215|893216|893217|893218|893219|893220|893221|893222|893223|893224|893225|893226|893227|893228|893229|893230|893231|893232|893233|893234|893235|893236|893237|893238|893239|893240|893241|893242|893243|893244|893245|893246|893247|893248|893249|893250|893251|893252|893253|893254|893255|893256|893257|893258|893259|893260|893261|893262|893263|893264|893265|893266|893267|893268|893269|893270|893294|896055|896056|896057|896058|963138|976648", + "text": "Familial calcium pyrophosphate deposition" + }, + { + "baseId": "20236", + "text": "Chondrocalcinosis 2, sporadic" + }, + { + "baseId": "20243|20244|20245|20246|20247|167467|623118", + "text": "Diarrhea 3, secretory sodium, congenital, syndromic" + }, + { + "baseId": "20248|106514|106515|106516|106517|106518|106519|247012|961777|961778", + "text": "Hyperlysinemia" + }, + { + "baseId": "20249|275836|275843|275845|275846|275847|275849|275866|275874|275876|275877|275878|275879|275880|275882|275883|275885|275889|275924|275927|275934|275935|275951|275952|275958|275966|276027|276028|276032|276045|276050|276051|276054|276060|276061|276064|276069|276114|276141|276142|276143|276145|276151|276164|276169|276170|353027|614180|619945|620704|706564|731568|861900|861905|861906|861907|861908|861909|861910|861911|861912|861913|861914|861915|861916|861917|861918|861919|861920|861921|861922|861923|861924|861925|861926|861927|861928|861929|861930|861931|861932|861933|980431", + "text": "MASP2 deficiency" + }, + { + "baseId": "20250|20251|481482|481483|552094|552095|552096|683218|963141|964824", + "text": "Congenital heart defects, multiple types, 2" + }, + { + "baseId": "20252|20257|20258|20834|20835|20836|71033|71034|71035|71036|71360|71361|71362|71363|71364|190040|190041|190042|193521|274295|300116|302843|307455|333191|333197|333198|333205|333213|333217|343301|343303|348623|348624|349697|438917|512906|741823|756936|880354|880355|880356|880357|880734", + "text": "Polycystic lipomembranous osteodysplasia with sclerosing leukoencephalopathy 1" + }, + { + "baseId": "20252|20253|20254|20255|20256|20257|20258|71363|193655|237073|252353|274295|300113|300114|300120|300122|302844|307457|307466|722029|895965|895966|895967|895968|895969|895970|895971|896243", + "text": "Polycystic lipomembranous osteodysplasia with sclerosing leukoencephalopathy 2" + }, + { + "baseId": "20259|20260|513520|581918|581919", + "text": "Osteoarthritis" + }, + { + "baseId": "20261|20262|20263|20264|20265|20266|101825|106465|152872|177387|177614|177618|186764|186765|186766|186767|186768|186769|186770|186771|253180|253181|253182|253184|253186|253187|253188|253190|268056|268061|272971|275240|305952|305953|305957|305964|305970|305971|305972|305985|309991|309997|310004|310005|310008|310011|310012|310016|315302|315315|315316|315319|315320|315321|315322|315324|315327|315330|315332|315403|315407|315408|315410|315413|315416|315435|315436|315445|315446|315450|315454|315455|315456|315461|315462|315470|357640|357641|357642|357643|357644|357645|357646|357647|357648|357649|357650|357651|357652|357653|357654|357655|360901|407456|417079|417080|417081|417082|417083|417084|417085|417086|417087|417088|417089|417090|417091|417092|417093|417094|417095|417096|417097|417098|417099|417100|417101|417102|417103|417104|417105|417106|417107|417108|417109|417110|417111|417112|417113|417114|417115|417116|417117|417118|417119|417120|417121|417122|417123|417124|417125|417126|417127|417128|417129|417130|417131|417132|417133|417134|417135|417136|417137|417138|417139|417140|417141|417142|417143|417144|417145|417146|417147|417148|417149|417150|417151|417152|417155|417156|417157|424200|424201|431735|480496|494986|544470|544475|544478|544481|544766|544768|544804|544870|544877|583381|623639|623640|711650|736761|751254|766898|766903|766908|779561|790816|799030|835088|900096|900097|900098|900099|900100|900101|900102|900103|900104|900105|900106|900107|900108|900109|900110|900111|900112|900113|900114|900115|900116|900117|900118|900119|900120|900121|900122|900123|900124|900125|900126|900127|900128|976718|976719", + "text": "Achromatopsia 3" + }, + { + "baseId": "20262|20264|20266|24514|24515|24517|24519|24520|24521|88340|101244|101245|101246|152872|177387|177614|177618|177925|186764|186766|186769|186771|188766|191918|194429|213583|253181|253184|253188|253189|253915|253916|253917|253919|253920|253921|253922|253923|253924|268061|269501|269507|275240|288462|288469|288473|291347|291525|305961|305972|305979|305984|310028|311682|311689|311693|311696|311707|311708|311713|315454|315455|315462|315470|317261|317262|317267|317268|317273|317276|317288|317289|317290|323308|323311|323312|323313|323317|323318|323319|323326|323327|323329|323330|323331|323335|323880|323890|323892|323893|323894|323911|323919|353580|353845|357644|360901|407456|413292|413546|417083|417092|417103|417114|417136|431557|431745|431746|431747|431748|444307|480771|480772|480773|480774|480775|480776|480777|480778|480779|480780|480781|480782|480783|480784|486445|488680|490192|494980|494981|494982|494983|494984|494985|494986|496144|512922|512923|514579|544475|589204|590440|612250|612831|622993|622994|623639|623640|623878|624022|700677|711649|711650|730590|736761|751252|751253|751254|766898|766902|766903|766905|766906|766908|766909|779561|796193|800479|800480|800482|800483|800484|800539|800540|800541|800542|800562|801346|801348|801350|801411|821949|821950|835057|835059|835061|835064|835066|835068|835073|835075|835076|835077|835085|835089|852156|866560|866561|866562|866563|866564|866565|866566|866567|866568|866569|866570|866571|866572|866573|866574|866575|866576|866577|866578|866579|866580|868535|868536|868537|918189|978479|978480|978481|978482", + "text": "Achromatopsia" + }, + { + "baseId": "20264|22919|22923|22924|22942|22952|104927|104930|104931|104938|104954|104974|104990|105042|105058|105068|105082|105135|105147|105160|105279|105285|105296|105297|105302|105329|105330|105332|105333|105337|105343|105380|105381|105383|105387|139937|139938|139942|139944|152793|177450|190742|191153|237686|237695|237696|237704|250031|250033|253189|267624|281326|281328|281329|281332|281340|281341|281342|281346|281351|281359|281361|281367|281368|281373|281375|281378|281381|281972|281973|281986|281988|281995|281996|282000|282001|282006|283241|283246|283260|283261|283265|283266|283281|283282|283286|283290|283291|283298|283299|283386|283388|283391|283392|283399|283400|283402|283415|283422|283423|283434|283438|283441|283442|305961|305979|305984|310028|353845", + "text": "Stargardt Disease, Recessive" + }, + { + "baseId": "20264|315327", + "text": "CNGB3-Related Disorders" + }, + { + "baseId": "20266|22918|22919|22920|22921|22921|22922|22923|22925|22926|22927|22927|22931|22933|22933|22935|22937|22937|22938|22939|22940|22942|22943|22943|22944|22946|22946|22948|22950|22951|22952|39173|39174|98774|98777|98777|98778|101825|104916|104923|104923|104925|104926|104935|104952|104955|104956|104959|104965|104969|104972|104972|104973|104973|104976|104985|104990|104991|104993|104995|104996|104997|104997|104999|105001|105003|105011|105012|105016|105030|105032|105033|105037|105042|105055|105058|105069|105070|105085|105086|105101|105102|105109|105113|105113|105128|105129|105132|105145|105149|105152|105154|105156|105163|105166|105167|105172|105173|105173|105174|105177|105181|105189|105190|105192|105193|105194|105195|105199|105199|105200|105210|105212|105219|105220|105221|105227|105229|105230|105231|105233|105235|105238|105240|105244|105254|105260|105269|105274|105279|105287|105291|105292|105308|105311|105317|105317|105319|105320|105323|105327|105328|105330|105336|105337|105339|105341|105345|105349|105352|105359|105362|105365|105381|105394|105394|105405|105406|106465|139941|152790|152792|152794|152872|177387|177450|177451|177614|177618|191153|194216|209342|209342|217189|227509|227510|237631|237632|237633|237634|237635|237636|237637|237637|237638|237639|237640|237641|237642|237643|237644|237645|237646|237647|237648|237649|237650|237651|237652|237653|237654|237655|237657|237658|237659|237660|237661|237662|237663|237664|237665|237666|237667|237668|237669|237670|237671|237672|237673|237674|237675|237676|237677|237678|237679|237680|237682|237683|237684|237685|237686|237687|237688|237689|237690|237691|237692|237693|237694|237695|237696|237697|237698|237699|237700|237701|237702|237703|237704|237705|237706|237707|237708|237709|237710|253180|253181|253182|253184|253186|253187|253188|253190|259680|259682|267624|268056|268061|272578|272971|275240|305952|305953|305957|305964|305970|305971|305972|305985|309991|309997|310004|310005|310008|310011|310012|310016|315302|315315|315316|315319|315320|315321|315322|315324|315330|315332|315403|315407|315408|315410|315413|315416|315435|315436|315445|315446|315450|315454|315455|315456|315461|315462|315470|359278|361623|365433|406402|407456|417136|426740|431614|431615|431616|431618|431619|431621|431623|431626|431627|431851|498604|498850|536020|551522|581848|583381|612831|677405|711650|736761|751254|766898|766903|766908|779561|790002|790003|790004|790005|790006|790007|790008|790009|790010|790011|790012|790013|790014|790015|790016|790017|790018|790019|799030|818175|818177|835088|900096|900097|900098|900099|900100|900101|900102|900103|900104|900105|900106|900107|900108|900109|900110|900111|900112|900113|900114|900115|900116|900117|900118|900119|900120|900121|900122|900123|900124|900125|900126|900127|900128|905881|972858", + "text": "Stargardt disease 1" + }, + { + "baseId": "20267|20267|20268|20269|20270|20270|20271|20272|20273|20274|20275|20278|34317|34319|34320|34323|34326|34328|34333|34333|34334|34335|34335|34336|34337|34339|188225|188225|188226|275812|275814|275815|275815|275816|275817|275827|275839|275840|275840|275850|275850|275851|275852|275852|275853|275855|275856|275860|275868|275872|275874|275977|275978|275982|275983|275988|275989|275995|275996|275998|276021|276022|276025|276026|276082|276105|276108|276127|276128|276138|276140|361606|512791|514974|514976|556548|576387|626571|861324|861325|861882|861883|861884|861885|861886|861887|861888|861889|861890|861891|861892|861893|861894|861895|861896|861897|861898|861899|861900|861901|861902|861903|861904|929949|929950|929951|941366", + "text": "Amyotrophic lateral sclerosis type 10" + }, + { + "baseId": "20267|20270|34319|34333|34335|34339|188225|275815|275840|275850|275852|514974|514976|556548|626571|929949|929950|929951|941366", + "text": "TARDBP-related frontotemporal dementia" + }, + { + "baseId": "20277|20278|34326", + "text": "FRONTOTEMPORAL DEMENTIA WITH TDP43 INCLUSIONS, TARDBP-RELATED" + }, + { + "baseId": "20279|20280|20281|20282|20283|20284|20285|71202|71203|71204|71205|71206|71207|71208|71209|71210|71211|71213|192133|195377|265374|265891|329163|329167|329168|329172|329174|329175|329186|329188|329193|329198|329200|339322|339324|339328|339332|339335|339344|339356|339358|339364|339365|339367|339372|339373|339376|339388|345190|345192|345193|345194|345195|345198|345202|345206|345209|345212|345216|345218|346593|346597|346598|346599|346600|346602|346606|346608|346611|346617|353446|552285|576134|578551|584704|590368|612321|620597|653894|780129|877960|877961|877962|877963|877964|877965|877966|877967|877968|877969|877970|877971|877972|877973|877974|877975|877976|877977|877978|877979|877980|877981|877982|877983|877984|877985|877986|880555|880556|880557|880558|904190|920378|974518|974526|974527", + "text": "Mulibrey nanism syndrome" + }, + { + "baseId": "20286|20288|20290|132428|132429|132430|132431|132432|132433|132434|132435|132436|132437|132438|132439|132440|132441|132442|132443|132444|132445|132446|132447|132448|132449|132450|132451|132452|132453|132454|132455|132456|132457|132458|132459|132460|227515|227516|227517|227518|350779", + "text": "Keratoconus 1" + }, + { + "baseId": "20286|20287|20288|20290|106790|106791|257338|334985|334986|334997|334998|335000|335001|335005|335015|335018|335022|335023|335025|335028|335035|335044|344805|344806|344808|344809|344810|344823|344824|344827|344828|349766|349768|349769|349771|349772|350772|350774|350775|350778|350779|350780|350781|350784|353582|360918|482202|778675|885912|885913|885914|885915|885916|885917|885918|885919|885920|885921|885922|885923|885924|885925|885926|885927|885928|885929|885930|885931|887435", + "text": "Polymorphous corneal dystrophy" + }, + { + "baseId": "20287|226677|226678|226679|226680|705429", + "text": "Posterior polymorphous corneal dystrophy 1" + }, + { + "baseId": "20289|920607", + "text": "Craniofacial anomalies and anterior segment dysgenesis syndrome" + }, + { + "baseId": "20291|20292|20293|20298|20299|20301|137696|137698|262107|262108|262110|262111|262112|262113|262116|262117|262118|262119|262120|262122|262123|262126|262127|262128|262130|262131|262132|262133|262134|325523|325529|325530|325534|325536|325540|325541|325543|325547|325548|325550|325554|325555|325557|325569|325574|325584|325585|325587|325588|325598|325599|325609|325612|335203|335205|335207|335210|335214|335215|335216|335217|335221|335224|335227|335242|335244|341665|341669|341676|341678|341680|341681|341686|341689|341690|341697|341699|341704|341706|341708|341710|341715|341718|341720|341721|341725|343150|343151|343153|343158|343159|343162|343168|343177|343179|343192|343196|343198|343201|343202|343205|343211|343217|343219|343222|343224|343226|343227|343235|343236|744960|875381|875382|875383|875384|875385|875386|875387|875388|875389|875390|875391|875392|875393|875394|875395|875396|875397|875398|875399|875400|875401|875402|875403|875404|875405|875406|875407|875408|875409|875410|876676|966751", + "text": "Cylindromatosis, familial" + }, + { + "baseId": "20293|20294|20297|20298|20300|137696|137698|262109|262114|262115|262124|262125|262129|325523|325529|325530|325534|325536|325540|325541|325543|325547|325548|325550|325554|325555|325557|325569|325574|325584|325585|325587|325588|325598|325599|325609|325612|335203|335205|335207|335210|335214|335215|335216|335217|335221|335224|335227|335242|335244|341665|341669|341676|341678|341680|341681|341686|341689|341690|341697|341699|341704|341706|341708|341710|341715|341718|341720|341721|341725|343150|343151|343153|343158|343159|343162|343168|343177|343179|343192|343196|343198|343201|343202|343205|343211|343217|343219|343222|343224|343226|343227|343235|343236|744960|875381|875382|875383|875384|875385|875386|875387|875388|875389|875390|875391|875392|875393|875394|875395|875396|875397|875398|875399|875400|875401|875402|875403|875404|875405|875406|875407|875408|875409|875410|876676", + "text": "Brooke-Spiegler syndrome" + }, + { + "baseId": "20295|20296|20297|20298|137696|137698|262121|325523|325529|325530|325534|325536|325540|325541|325543|325547|325548|325550|325554|325555|325557|325569|325574|325584|325585|325587|325588|325598|325599|325609|325612|335203|335205|335207|335210|335214|335215|335216|335217|335221|335224|335227|335242|341665|341669|341676|341678|341680|341686|341689|341690|341697|341699|341704|341706|341708|341710|341715|341718|341720|341721|341725|343150|343151|343153|343158|343159|343162|343168|343179|343192|343196|343198|343205|343211|343217|343219|343222|343226|343227|343235|343236|744960|875381|875382|875383|875384|875385|875386|875387|875388|875389|875390|875391|875392|875393|875394|875395|875396|875397|875398|875399|875400|875401|875402|875403|875404|875405|875406|875407|875408|875409|875410|876676", + "text": "Familial multiple trichoepitheliomata" + }, + { + "baseId": "20302|20303|20304|102897|199784|252151|252152|252153|252154|299237|299244|299246|299250|299256|299259|299260|299266|299271|299277|299285|299294|299295|299296|301639|301640|301644|301660|301673|301675|301680|301681|301683|301699|306067|306090|306120|306121|306138|306141|306143|306144|306145|306146|306151|306153|306155|306167|306169|306188|306331|306332|306334|306335|306361|306371|306378|306379|306382|306384|306395|306406|306407|306419|306422|306423|389650|521733|522045|560397|560610|563397|634657|634658|634659|634660|634661|634662|634663|634664|634665|634666|710233|710235|735454|749874|790598|804882|831625|831626|831627|831628|831629|831630|831631|831632|831633|831634|895495|895496|895497|895498|895499|895500|895501|895502|895503|895504|895505|895506|895507|895508|895509|895510|895511|895512|895513|895514|895515|895516|895517|895518|895519|895520|895521|895522|895523|895524|895525|895526|895527|895528|895529|895530|895531|895532|895533|895534|895535|895536|895537|895538|895539|895540|924273|924274|924275|933193|933194|933195|944905|944906|944907|944908|944909|954388|954389|954390|954391|954392", + "text": "Familial hemophagocytic lymphohistiocytosis 4" + }, + { + "baseId": "20305|20306|20307|20308|142957|142958|142959|142960|142961|142962|142963|142964|142965|142966|192019|205145|251798|251800|251801|251802|251804|251805|251806|251807|251808|251809|251810|251811|251812|251813|264202|264220|295907|295910|295911|295912|295918|295919|295922|295931|295933|295937|297719|297720|297727|297732|297746|297751|297753|301638|301642|301645|301649|301657|301658|301659|301662|301664|301666|301667|301670|301819|301820|301821|301823|301826|301827|301828|301848|359552|360867|367978|368407|368425|368427|406656|421527|443704|443705|443707|454677|454680|454684|454688|454691|454703|454776|454777|455539|495252|496425|500709|513556|514505|520839|520841|520843|520844|521103|521104|521106|521109|521113|521243|521245|521247|521255|521303|521308|521310|560179|560181|560294|560296|560298|562909|562920|564888|564893|564903|576112|584762|612271|613507|613509|613510|614281|614282|620190|633553|633554|633555|633556|633557|633558|633559|633560|633561|633562|633563|633564|633565|633566|633567|633568|633569|633570|633571|633572|633573|633574|633575|633576|633577|633578|651312|651315|709714|709715|721288|734916|734917|734919|744027|749326|759369|764950|764951|782201|782203|782204|782205|819564|830428|830429|830430|830431|830432|830433|830434|830435|830436|830437|830438|830439|830440|830441|830442|830443|830444|830445|830446|830447|830448|830449|830450|851018|851020|851022|893275|893276|893277|893278|893279|893280|893281|893282|893283|893284|893285|893286|893287|893288|893289|893290|893291|893292|893293|896059|915006|923918|923919|923920|923921|923922|923923|923924|923925|923926|932757|932758|932759|932760|932761|932762|932763|932764|939993|939994|944441|944442|944443|944444|944445|944446|944447|944448|944449|944450|944451|944452|954069|954070|954071|954072|954073|954074|954075|960557|977213", + "text": "Netherton syndrome" + }, + { + "baseId": "20308", + "text": "SPINK5 POLYMORPHISM" + }, + { + "baseId": "20309|20310|20311|552206", + "text": "Nephrolithiasis/osteoporosis, hypophosphatemic, 2" + }, + { + "baseId": "20310|20399|76488|181455|186603|192938|193488|200349|214364|244917|246919|250624|263997|312163|360862|390510|415480|443176|443179|514117|581999|624419|644712|697968|708009|708013|708015|724534|733144|791543|818211|874831|904075|904076|904077|904078|904079|904080|904081|904082|904083|904084|904085|904086|904092|904095|904096|965433", + "text": "Chronic kidney disease" + }, + { + "baseId": "20311|186616", + "text": "Hypophosphatemia" + }, + { + "baseId": "20311|20675|20683|20685|20970|27267|200501|236723|260799|539124|539125|539126|539135|539136|539143|539152|539154|969244", + "text": "Nephrolithiasis" + }, + { + "baseId": "20312|20313|20314|75333|135818|135819|192432|227921|314761|314779|314781|314805|314810|321476|321487|321489|321501|327605|327622|327637|327642|327651|328668|328736|328739|444869|480427|480431|481479|493811|493812|508867|537165|576143|576144|626208|792607|798645|868688|868689|868690|868691|903582|917388|920101|920102|920103|920104|920105|920106|920304|970943|971538", + "text": "Spinocerebellar ataxia type 5" + }, + { + "baseId": "20315|48731|48732|48733|142485|142486|142487|211824|211835|211836|211838|339745|339747|339749|345475|345476|346822|346823|378660|482152|620602|878190|878191|878192|878193|880567", + "text": "Autosomal dominant progressive external ophthalmoplegia with mitochondrial DNA deletions 4" + }, + { + "baseId": "20316|20317|20318|20319|20320|20321|20322|33943|33944|33945|33946|33947|33948|33949|33950|33951|33952|33953|33954|33955|33956|33957|33958|33959|33960|33961|33962|33965|171814|175054|175055|175056|175332|175333|175335|177772|191863|207808|207809|207810|207811|229954|253959|253961|253965|273562|311879|311881|311892|311893|311898|311900|311901|311903|311905|311908|311909|311911|311916|317495|317496|317497|317500|317527|317530|317531|317536|317538|317542|317550|317553|317560|317571|317574|323519|323522|323544|323546|323549|323553|323554|323556|323557|324204|324205|324212|324215|324219|324222|324225|324229|324230|324232|324238|324239|324248|324252|324253|324258|324259|324262|429155|493975|503317|610684|615952|615953|615965|682847|682849|712545|737674|768101|783795|783804|801120|866696|866697|866698|866699|866700|866701|866702|866703|866704|866705|866706|866707|866708|866709|866710|866711|866712|866713|866714|866715|984079|984080", + "text": "Hermansky-Pudlak syndrome 1" + }, + { + "baseId": "20323", + "text": "SKELETAL MUSCLE GLYCOGEN CONTENT AND METABOLISM QUANTITATIVE TRAIT LOCUS" + }, + { + "baseId": "20324", + "text": "Immunodeficiency due to ficolin 3 deficiency" + }, + { + "baseId": "20325|205134|227224|227225|227226|227227|550855|609298|732968|732969|790128", + "text": "Pigmented nodular adrenocortical disease, primary, 2" + }, + { + "baseId": "20327", + "text": "AIDS, progression to" + }, + { + "baseId": "20328|102925|102926|174156|981566", + "text": "Deafness, autosomal recessive 61" + }, + { + "baseId": "20329|20330|20331|190815|227212|236949|266305|266503|268573|270614|279610|279615|279616|279617|279618|279625|279629|279644|279645|279868|279869|279871|279872|279873|279874|279876|279878|281209|281238|281239|281240|281244|281245|281257|281271|281274|281275|281278|281289|281294|281296|281297|281298|389211|488693|584436|584445|620715|718804|718805|743737|761712|792714|863914|863915|863916|863917|863918|863919|865136|865137|865138|865139", + "text": "Hypoparathyroidism-retardation-dysmorphism syndrome" + }, + { + "baseId": "20329|227212|620715|792714", + "text": "Autosomal recessive Kenny-Caffey syndrome" + }, + { + "baseId": "20332|20332|20333|20333|20333|20334|20335|20336|39398|49463|50190|50191|50192|50193|50193|50194|50195|50196|50197|50198|50199|50200|50202|50203|50204|50205|50206|84710|133288|133289|133290|133291|133292|133293|133294|133295|133297|133297|133298|133299|133300|133301|133302|133302|133303|133303|133304|136451|136508|138596|138598|138598|138599|138600|138601|138602|138603|138605|138606|139692|139693|139695|139695|139696|139697|139698|139699|139700|139701|139702|139703|139704|139705|142010|142011|142012|142013|142014|150505|150525|150528|150530|150541|150544|150588|150590|150591|150591|150638|150656|150742|150849|150859|150864|150960|150996|150996|151020|151053|151093|151114|151309|151328|151417|151422|151544|151547|151572|151576|151639|151647|151662|151684|151708|151783|151806|151850|151852|151985|152083|152116|152154|152297|152318|152450|152450|152461|152465|152515|152519|152526|152563|152574|152598|152655|152717|166273|166274|179925|179926|179929|179930|179930|179931|179932|179933|179934|179935|179937|179938|179939|179941|181644|181645|181646|181647|181648|181649|181650|181651|181652|181653|181654|181655|181656|181657|181658|181660|181661|181662|181664|181665|181666|181668|181669|181670|181672|181673|181675|181676|181678|181678|181679|181680|181681|181682|181683|181684|181685|181686|181687|181688|181692|181693|181694|181695|181696|181697|181698|181699|181700|181701|181702|181703|181704|181705|181706|181707|181708|181709|181710|181711|181712|181714|181715|181716|181717|181719|181720|181721|181722|181723|181724|181725|181726|181727|181728|181729|181730|181731|181732|181734|181735|181738|181740|181741|181742|181743|185954|185955|185956|185957|212089|212090|212091|212092|212093|212094|212095|212096|212097|212098|212099|212100|212101|212102|212103|212104|213511|221097|221098|221099|221100|221101|221102|221103|221104|221105|221106|221107|221108|232201|232202|232204|232205|232206|232207|232211|232212|232213|232214|232217|232220|232221|232223|232226|232227|232230|232234|232235|232236|232237|232238|232239|232240|232241|232242|232243|232244|232245|232248|232249|232250|232252|232253|232254|232255|232256|232257|232258|232259|232260|232261|232262|232264|232265|232266|232267|232268|232269|232271|232272|232272|232273|232274|232275|232276|232277|232279|232281|232282|232283|232284|232285|232286|232287|232288|232290|232291|232292|232293|232294|232295|232297|232299|238310|238311|238312|238313|238314|238317|238318|238319|238320|238321|238322|238323|238324|238325|238326|238327|238328|238329|238330|238331|238333|244266|244267|244269|244270|244272|244273|244274|259672|280684|280689|282434|282436|282445|282700|282701|282711|282713|357086|357087|357088|357089|357090|357091|357092|357093|359363|365112|365250|365259|365260|365300|365316|365326|365335|365336|365350|365360|390717|391274|391276|391278|391281|391286|391289|391291|391303|391304|391305|391307|391310|391311|391314|391320|391321|391322|391324|391325|391329|391331|391332|391335|391336|391337|391342|391345|391348|391350|391354|391358|391366|391367|391369|391374|391380|391383|391385|391388|391391|391394|391409|391439|391442|391443|391446|391447|391450|391461|391476|391479|391493|391502|391505|391516|391517|404747|405181|405182|405184|405188|405190|405197|405199|405200|405201|405203|405205|405206|405207|405208|405209|419301|419303|419304|420988|427132|432493|432494|432495|442858|446959|447962|447964|447966|447967|447969|447973|447975|447988|447990|447995|448010|448022|448024|448025|448027|448038|448040|448042|448045|448047|448049|448051|448085|448131|448133|448134|448143|448145|448151|448157|448163|448166|448171|448172|448177|448178|448179|448180|448185|448187|448189|448191|448193|448200|448201|448204|448295|448296|448299|448306|448307|448312|448316|448318|448320|448324|448326|448328|448330|448331|448333|448335|448336|448339|448341|448348|448352|472320|472324|472326|472330|472331|472332|472333|472335|472338|472341|472347|472350|472355|472356|472359|472363|472364|472369|472371|472374|472379|472380|472387|472390|472396|472397|472400|472405|472410|472414|472419|472423|472426|472431|472432|472434|472438|472441|472445|472448|472452|472453|472456|472457|472458|472464|472465|472466|472476|472477|472478|472484|472486|480495|482341|482362|482368|483122|483123|483125|483129|483131|483135|483144|483153|483161|483162|483164|483173|483193|483195|485586|486858|514857|514878|514904|515934|515937|515938|515939|515942|515944|515945|515947|515949|515951|515953|515955|515957|515959|515960|515961|515963|515965|515966|515970|515987|515991|515993|515994|516007|516011|516017|516059|516062|516064|516070|516075|516076|516078|516086|516089|516103|537683|541068|541075|541078|541091|541159|541197|541209|541210|551823|556879|556880|557075|557077|557079|557081|557083|557085|557087|557296|557298|557300|557302|557304|557306|557308|557310|557312|557351|557353|557355|557357|557359|557361|557363|557365|558533|558535|558537|558539|558541|558543|558545|558547|558549|558551|575656|575657|575658|575659|575660|578304|578305|611006|616091|616092|616098|616099|616108|616111|616112|616121|616122|616130|616133|619091|628066|628067|628068|628069|628070|628071|628072|628073|628074|628075|628076|628077|628078|628079|628080|628081|628082|628083|628084|628085|628086|628087|628088|628089|628090|628091|628092|628093|628094|628095|628096|628097|628098|628099|628100|628101|628102|628103|628104|628105|628106|628107|628108|628109|628110|628111|628112|628113|650593|650680|650681|650682|650683|650754|650763|650764|690623|690625|759038|761969|761974|761976|761978|761979|774531|774536|780709|780713|787013|789409|789410|789973|789974|789975|789976|789977|789978|789979|789980|789981|789982|789983|806609|806642|806653|806657|806675|806679|806681|806684|806694|806695|818973|818974|818975|818976|824165|824166|824167|824168|824169|824170|824171|824172|824173|824174|824175|824176|824177|824178|824179|824180|824181|824182|824183|824184|824185|824186|824187|824188|824189|824190|824191|824192|824193|824194|824195|824196|824197|850775|850796|850798|850800|850997|850999|851311|864507|907215|907223|907227|907232|922092|922093|922094|922095|922096|922097|922098|922099|922100|922101|922102|922103|922104|922105|922106|930566|930567|930568|930569|930570|930571|930572|930573|930574|930575|930576|930577|930578|930579|930580|930581|939817|939818|939819|939820|940641|940642|940643|940644|942005|942006|942007|942008|942009|942010|942011|942012|942013|942014|942015|952450|952451|952452|952453|952454|952455", + "text": "MYH-associated polyposis" + }, + { + "baseId": "20332|20600|22859|23777|27270|27271|27617|27628|28311|28316|50032|50035|50076|94757|94763|94786|94786|94812|94816|94826|94826|94834|94836|94843|94898|94947|95036|133027|133050|133378|136694|136698|136700|136701|136702|136713|138590|150979|151013|151078|151946|152183|152204|180098|181998|182130|184193|212214|221251|221252|221295|232837|337250|362837|392813|392893|400267|405879|405897|427189|432523|451404|473109|486818|486819|486820|508809|518546|537660|553356|576119", + "text": "Endometrial carcinoma" + }, + { + "baseId": "20332|20333|32616|32617|32618|32620|32622|32623|32625|32626|50193|133297|133302|133303|138598|139695|150591|150996|152450|179930|181678|232272|363111|363112", + "text": "Pilomatrixoma" + }, + { + "baseId": "20333|20602", + "text": "Endometrial cancer" + }, + { + "baseId": "20333", + "text": "Small intestine carcinoid" + }, + { + "baseId": "20333", + "text": "Colorectal adenomatous polyposis, autosomal recessive, with pilomatricomas" + }, + { + "baseId": "20333", + "text": "Ovarian carcinoma" + }, + { + "baseId": "20335|24698|24706|24711|24712|24715|24716|24745|27406|27421|27541|28674|33882|50200|51408|51409|51412|51413|51415|51417|70573|93179|93180|93181|93182|93183|93184|93185|93186|93187|93188|93189|93190|93191|93192|93193|93194|93195|93196|93197|93198|93199|93200|93201|93202|93203|93204|93205|93206|93207|93208|93209|93210|93211|93212|93213|93214|93215|93216|93217|93218|93219|93220|93221|93222|93223|93224|93225|93226|93227|93228|93229|93230|93231|93232|93233|93234|93235|93236|93237|93238|93239|93240|93241|93242|93243|93244|93245|93246|93247|93248|93249|93250|93251|93252|93253|93254|93255|93256|93257|93258|93259|93260|93261|93262|93263|93264|93265|93266|93267|93268|93269|93270|93271|93272|93273|93274|93275|93276|93277|93278|93279|93280|93281|93282|93283|93284|93285|93286|93287|93288|93289|93290|93291|93292|93293|93294|93295|93296|93297|93298|93299|93300|93301|93302|93303|93304|93305|93306|93307|93308|93309|93310|93311|93312|93313|93314|93315|93316|93317|93318|93319|93320|93321|93322|93323|93324|93325|93326|93327|93328|93329|93330|93331|93332|93333|93334|93335|93336|93337|93338|93339|93340|93341|93342|93343|93344|93345|93346|93347|93348|93349|93350|93351|93352|93353|93354|93355|93356|93357|93358|93359|93360|93361|93362|93363|93364|93365|93366|93367|93368|93369|93370|93371|93372|93373|93374|93375|93376|93377|93378|93379|93380|93381|93382|93383|93384|93385|93386|93387|93388|93389|93390|93391|93392|93393|93394|93395|93396|93397|93398|93399|93400|93401|93402|93403|93404|93405|93406|93407|93408|93409|93410|93411|93412|93413|93414|93415|93416|93417|93418|93419|93420|93421|93422|93423|93424|93425|93426|93427|93428|93429|93430|93431|93432|93433|93434|93435|93436|93437|93438|93439|93440|93441|93442|93443|93444|93445|93446|93447|93448|93449|93450|93451|93452|93453|93454|93455|93456|93457|93458|93459|93460|93461|93462|93463|93464|93465|93466|93467|93468|93469|93470|93471|93472|93473|93474|93475|93476|93477|93478|93479|93480|93481|93482|93483|93484|93485|93486|93487|93488|93489|93490|93491|93492|93493|93494|93495|93496|93497|93498|93499|93500|93501|93502|93503|93504|93505|93506|93507|93508|93509|93510|93511|93512|93513|93514|93515|93516|93517|93518|93519|93520|93521|93522|93523|93524|93525|93526|93527|93528|93529|93530|93531|93532|93533|93534|93535|93536|93537|93538|93539|93540|93541|93542|93543|93544|93545|93546|93547|93548|93549|93550|93551|93552|93553|93554|93555|93556|93557|93558|93559|93560|93561|93562|93563|93564|93565|93566|93567|93568|93569|93570|93571|93572|93573|93574|93575|93576|93577|93578|93579|93580|93581|93582|93583|93584|93585|93586|93587|93588|93589|93590|93591|93592|93593|93594|93595|93596|93597|93598|93599|93600|93601|93602|93603|93604|93605|93606|93607|93608|93609|93610|93611|93612|93613|93614|93615|93616|93617|93618|93619|93620|93621|93622|93623|93624|93625|93626|93627|93628|93629|93630|93631|93632|93633|93634|93635|93636|93637|93638|93639|93640|93641|93642|93643|93644|93645|93646|93647|93648|93649|93650|93651|93652|93653|93654|93655|93656|93657|93658|93659|93660|93661|93662|93663|93664|93665|93666|93667|93668|93669|93670|93671|93672|93673|93674|93675|93676|93677|93678|93679|93680|93681|93682|93683|93684|93685|93686|93687|93688|93689|93690|93691|93692|93693|93694|93695|93696|93697|93698|93699|93700|93701|93702|93703|93704|93705|93706|93707|93708|93709|93710|93711|93712|93713|93714|93715|93716|93717|93718|93719|93720|93721|93722|93723|93724|93725|93726|93727|93728|93729|93730|93731|93732|93733|93734|93735|93736|93737|93738|93739|93740|93741|93742|93743|93744|93745|93746|93747|93748|93749|93750|93751|93752|93753|93754|93755|93756|93757|93758|93759|93760|93761|93762|93763|93764|93765|93766|93767|93768|93769|93770|93771|93772|93773|93774|93775|93776|93777|93778|93779|93780|93781|93782|93783|93784|93785|93786|93787|93788|93789|93790|93791|93792|93793|93794|93795|93796|93797|93798|93799|93800|93801|93802|93803|93804|93805|93806|93807|93808|93809|93810|93811|93812|93813|93814|93815|93816|93817|93818|93819|93820|93821|93822|93823|93824|93825|93826|93827|93828|93829|93830|93831|93832|93833|93834|93835|93836|93837|93838|93839|93840|93841|93842|93843|93844|93845|93846|93847|93848|93849|93850|93851|93852|93853|93854|93855|93856|93857|93858|93859|93860|93861|93862|93863|93864|93865|93866|93867|93868|93869|93870|93871|93872|93873|93874|93875|93876|93877|93878|93879|93880|93881|93882|93883|93884|93885|93886|93887|93888|93889|93890|93891|93892|93893|93894|93895|93896|93897|93898|93899|93900|93901|93902|93903|93904|93905|93906|93907|93908|93909|93910|93911|93912|93913|93914|93915|93916|93917|93918|93919|93920|93921|93922|93923|93924|93925|93926|93927|93928|93929|93930|93931|93932|93933|93934|93935|93936|93937|93938|93939|93940|93941|93942|93943|93944|93945|93946|93947|93948|93949|93950|93951|93952|93953|93954|93955|93956|93957|93958|93959|93960|93961|93962|93963|93964|93965|93966|93967|93968|93969|93970|93971|93972|93973|93974|93975|93976|93977|93978|93979|93980|93981|93982|93983|93984|93985|93986|93987|93988|93989|93990|93991|93992|93993|93994|93995|93996|93997|93998|93999|94000|94001|94002|94003|94004|94005|94006|94007|94008|94009|94010|94011|94012|94013|94014|94015|94016|94017|94018|94019|94020|94021|94022|94023|94024|94025|94026|94027|94028|94029|94030|94031|94032|94033|94034|94035|94036|94037|94038|94039|94040|94041|94042|94043|94044|94045|94046|94047|94048|94049|94050|94051|94052|94053|94054|94055|94056|94057|94058|94059|94060|94061|94062|94063|94064|94065|94066|94067|94068|94069|94070|94071|94072|94073|94074|94075|94076|94077|94078|94079|94080|94081|94082|94083|94084|94085|94086|94087|94088|94089|94090|94091|94092|94093|94094|94095|94096|94097|94098|94099|94100|94101|94102|94103|94104|94105|94106|94107|94108|94109|94110|94111|94112|94113|94114|94115|94116|94117|94118|94119|94120|94121|94122|94123|94124|94125|94126|94127|94128|94129|94130|94131|94132|94133|94134|94135|94136|94137|94138|94139|94140|94141|94142|94143|94144|94145|94146|94147|94148|94149|94150|94151|94152|94153|94154|94155|94156|94157|94158|94159|94160|94161|94162|94163|94164|94165|94166|94167|94168|94169|94170|94171|94172|94173|94174|94175|94176|94177|94178|94179|94180|94181|94182|94183|94184|94185|94186|94187|94188|94189|94190|94191|94192|94193|94222|94223|95067|96585|97337|132752|132772|138599|222223|222231|222236|222238|222829|222834|226350|227197|241269|241270|241346|241423|241425|241435|241439|241456|241471|241517|241518|243398|243401|243405|243480|243546|260013|394312|398544|398579|398709|398718|398758|398903|398939|399010|399274|399358|403862|403996|404082|410705|432714|461889|462005|462030|462480|463939|463940|464778|471179|476770|527022|528558|533272|569199|571376|575858|575859|575860|575861|575862|575863|575864|575865|575866|576042|576043|576044|652497|820679|820680|820681|820682|820683|820684|820685|861546|861548", + "text": "Familial colorectal cancer" + }, + { + "baseId": "20340|134313|271092|508907|791884|919809", + "text": "Congenital cataracts-facial dysmorphism-neuropathy syndrome" + }, + { + "baseId": "20341|20342|20343|20344|20345|20346|45539|45540|45541|199804|223590|237009|256082|260152|265347|327421|327422|327424|327427|343527|343532|345080|351719|433976|445699|445700|466345|467290|530597|530601|530603|530604|530752|530756|530870|530872|530877|531104|531112|537279|568706|568707|568718|570792|570794|574311|574315|574316|610056|610057|610058|614432|614432|624619|645324|645325|645326|645327|645328|645329|645330|645331|645332|645333|645334|645335|645336|645337|645338|645339|645340|652888|703985|715260|727012|740596|740597|771262|785472|785473|791679|844732|844733|844734|844735|844736|844737|844738|844739|844740|844741|851695|852694|918594|928068|928069|928070|937736|937737|940385|949714|949715|949716|960873|961973", + "text": "Common variable immunodeficiency 2" + }, + { + "baseId": "20341|20342|20344|199804|614432|844739", + "text": "Immunoglobulin A deficiency 2" + }, + { + "baseId": "20341|20342|20343|45539|45540|237009|256081|256082|327421|327422|327424|327425|327427|337287|337290|337293|343519|343523|343527|343532|345070|345079|345080", + "text": "Common Variable Immune Deficiency, Dominant" + }, + { + "baseId": "20342|928530|928531|928532|938221|938222|950285|950286|950287|958306|958307|958308|958309", + "text": "Common variable agammaglobulinemia" + }, + { + "baseId": "20348|20348|20348|20349|20355|34521|34521|34523|34523|38435|38435|101817|101817|101817|101818|101818|101819|101819|106463|106463|213466|213466|213467|243573|257301|257302|257303|257303|257304|334757|334759|334763|334765|334780|334781|334783|334785|344635|344636|344641|344645|344647|344655|349613|349613|349614|349616|349617|349625|349626|349630|350629|350630|350634|350635|350637|350639|350640|350642|350643|354064|404130|404130|471361|471361|471362|471362|488900|488900|490282|491001|534000|575074|648569|648570|648571|648572|684861|684862|791968|791969|848197|848198|848198|848199|848200|848201|848202|848203|848204|848205|848206|848207|848208|851841|852995|885783|885784|885785|885786|885787|885788|885789|885790|885791|885792|885793|885794|885795|885796|929140|938904|938905|938906|938907|950977|950978|950979|950980|950981|950982|950983|950984|950985|958771|958772|958773|958774|958775|958776|958777|958778", + "text": "McKusick-Kaufman syndrome" + }, + { + "baseId": "20348|20348|20350|20351|20352|20353|20354|20355|34521|34523|101817|101817|101818|101819|106463|213466|257301|257302|257303|334757|334759|334763|334765|334780|334781|334783|344635|344636|344641|344645|344647|349613|349614|349616|349617|349625|349626|349630|350629|350630|350634|350635|350637|350640|350642|350643|404130|471361|471362|488900|513146|539984|788934|848198|885783|885784|885785|885786|885787|885788|885789|885790|885791|885792|885793|885794|885795|885796|980394", + "text": "Bardet-Biedl syndrome 6" + }, + { + "baseId": "20360|28399", + "text": "Asthma, aspirin-induced, susceptibility to" + }, + { + "baseId": "20360", + "text": "Asthma and nasal polyps" + }, + { + "baseId": "20361|20362|429123|815875", + "text": "Diarrhea 4, malabsorptive, congenital" + }, + { + "baseId": "20365|20366|20369|20370|20371|32840|39397|134235|139887|139888|139889|142821|142822|142824|169108|169109|169110|169114|169116|169117|169118|169119|169120|186928|190657|192859|244926|268676|322184|322186|322193|322195|322198|322202|322203|322204|322206|322220|322223|322228|322229|322237|322238|322244|322248|322255|322257|322259|322262|331497|331498|331503|331504|331507|331510|331513|331514|331516|331520|331521|331523|331526|331532|331534|331536|331538|331543|331544|331547|331551|331553|331557|331559|331562|331570|338405|338411|338418|338419|338420|338430|338431|338438|338444|338449|338455|338458|338466|338475|338480|338488|338496|338497|338498|340173|340175|340180|340182|340183|340189|340191|340192|340193|340194|340199|340206|340208|340211|340213|340222|340223|340228|340229|340232|340234|340236|340237|340242|358277|358278|358279|358280|358281|358282|358283|358284|358285|358286|358287|358288|358289|358290|358291|358292|358293|360234|361213|373373|374030|374035|374038|374463|376378|415415|429644|433917|434645|513628|547385|547386|547388|547462|547463|547470|547474|547477|547655|547657|547661|547662|547674|547946|547963|547970|547974|547978|547984|547986|547992|548000|656286|688396|688397|693657|739565|739568|754388|770108|784890|784891|784893|801723|804746|873201|873202|873203|873204|873205|873206|873207|873208|873209|873210|873211|873212|873213|873214|873215|873216|873217|873218|873219|873220|873221|873222|873223|873224|873225|873226|873227|873228|873229|873230|873231|873232|873233|873234|873235|873236|873237|873238|873239|873240|873241|873242|873243|873244|873245|873246|873247|873248|873249|873250|873251|873252|873253|876489|876490|876491|979559|979560|979561|979562|979563|979564|979565|979566|979567|979568|979569|979570|979571|979572|979573|979574|979575|979576|979577|979578|979579|979580|979581|979582|979583|979584|979585|979586|979587|979588|979589|979590|979591|979592", + "text": "Agenesis of the corpus callosum with peripheral neuropathy" + }, + { + "baseId": "20372", + "text": "BETA-GLUCOPYRANOSIDE TASTING" + }, + { + "baseId": "20372", + "text": "Alcohol dependence, susceptibility to" + }, + { + "baseId": "20373|20374", + "text": "RETINAL DYSTROPHY, EARLY-ONSET SEVERE, LRAT-RELATED" + }, + { + "baseId": "20375|105677|106451|177818|292531|292538|292539|292546|292547|292553|292554|292555|292556|292561|292597|292599|293944|293946|293963|293972|293973|297322|297323|297324|297325|297327|297328|297333|297335|297336|297342|297352|297354|297356|297357|297361|297362|297377|297378|297379|297386|297406|297407|828896|890281|890282|890283|890284|890285|890286|890287|890288|890289|890290|890291|890292|890293|890294|890295|890296|890297|890298|890299|890300|890301|890302|890303|890304|890305|890306|890307|890308|890309|890310|890311|890312|890313|890314|890315|890316|966582|966583|966584|966585|966595", + "text": "Leber congenital amaurosis 14" + }, + { + "baseId": "20375", + "text": "RETINITIS PIGMENTOSA, JUVENILE, LRAT-RELATED" + }, + { + "baseId": "20376|614251", + "text": "Birbeck granule deficiency" + }, + { + "baseId": "20384", + "text": "KLOTHO POLYMORPHISM" + }, + { + "baseId": "20385|75515|319374|319378|319380|319384|319386|319390|319392|319393|319398|319405|319409|319411|319412|319414|319415|327934|327935|327936|327943|327945|327947|327959|327960|327962|327966|327967|334219|334231|334236|334238|334247|334248|334249|334253|334254|334256|334263|334271|334285|334288|334290|334291|335957|335958|335959|335965|335972|335976|335978|335982|335984|335985|335989|335998|336002|336003|336010|620858|725470|871078|871079|871080|871081|871082|871083|871084|871085|871086|871087|871088|871089|871090|871091|871092|871093|871094|871095|871096|871097|871098|871099|871100|871101|871102|871103|871104|871105|871106|871107|871108|871109|871110|871111|871112|871113|871114|871115|871116|871117|871118|871119|871120|871121|871122|871123|871124|871125|871126|871127|871128|871129|871130|871131|871132|871133|872327", + "text": "Hyperphosphatemic familial tumoral calcinosis 3" + }, + { + "baseId": "20386|20387|20388|20389|20390|20391|20392|20393|290368|290374|290375|290388|290390|290394|290396|290397|290405|290407|290409|290410|290417|290418|290422|290425|290427|290434|290435|290444|290451|290452|290456|290458|290462|291242|291252|291253|291254|291256|291258|291278|291295|291298|291304|291306|291310|291316|291324|291330|291341|291342|291350|291351|291352|294495|294496|294498|294499|294516|294518|294519|294528|294529|294530|294537|294549|294564|294565|294566|294568|294570|294571|294945|294960|294967|294968|294969|294971|294974|294976|294977|294978|294979|294980|294992|295000|295002|295007|295011|353649|439219|578419|610515|720449|734069|759263|800846|859269|888930|888931|888932|888933|888934|888935|888936|888937|888938|888939|888940|888941|888942|888943|888944|888945|888946|888947|888948|888949|888950|888951|888952|888953|888954|888955|888956|888957|888958|888959|888960|888961|888962|888963|888964|891645|961765|965659", + "text": "Triglyceride storage disease with ichthyosis" + }, + { + "baseId": "20394|20395|20396|20397|20398|101482|101483|101486|101487|101489|177135|270735|313326|313329|313330|313340|313353|313357|313358|313360|313363|313364|313366|319445|319446|319458|319459|325580|325582|325589|325590|325591|325597|325601|325602|326591|326616|326619|326620|326621|326625|326627|353173|360016|421838|460996|461007|461302|525991|526039|526485|565565|570385|620395|639823|639824|639825|639826|639827|639828|692967|692968|724325|838124|838125|838126|838127|867580|867581|867582|867583|867584|867585|867586|867587|867588|867589|867590|867591|867592|867593|867594|867595|867596|868620|868621|868622|868623|926155|935436|947362|956427|956428", + "text": "Deficiency of isobutyryl-CoA dehydrogenase" + }, + { + "baseId": "20399|20400|20402|20404|20405|20406|20407|20408|20409|131950|186602|186603|186604|186605|186606|186607|224184|226216|226217|226218|226219|226220|226221|227036|227037|249552|249553|249554|249555|249558|249559|249560|273986|277481|277485|277670|277677|277678|278561|278562|278564|278566|356997|356998|356999|357000|357001|357002|357003|357004|357005|357006|357007|384472|440412|440413|440418|486663|496597|540649|540650|540652|540653|540658|540662|540667|540677|540679|540682|540683|540684|540687|540688|540689|540690|540691|540694|540695|540696|540697|540698|540699|540701|540703|540704|540708|540709|540710|540711|540713|540715|540717|540719|540721|540722|540724|553582|576445|587964|590232|590233|623236|623237|789887|798459|798460|862844|862845|862846|862847|862848|862849|862850|862851|862852|865042|865043|906001|916806|962665|977170|983941", + "text": "Idiopathic nephrotic syndrome" + }, + { + "baseId": "20409|131950", + "text": "Nephrotic syndrome, type 2, susceptibility to" + }, + { + "baseId": "20409|21119|21911|76004|178433|178637|178662|178741|178742|178744|178745|223747|224184|360994|432287|513894|513895|513923|514037|514113|514114|514116|514118", + "text": "Proteinuria" + }, + { + "baseId": "20410|20411|20412|315715|315717|315723|322706|322707|322720|328831|620427|869052|869053|869054|869055|869056|869057|869058", + "text": "Spermatogenic failure 4" + }, + { + "baseId": "20413|20414|20415|20416|20417|252624|252625|252626|272397|273783|301951|301952|301956|301959|301960|301961|305060|305061|305063|305064|305074|305076|305079|305080|305081|305091|305092|305093|309745|309752|309755|309756|309757|309763|309767|309768|309769|309770|309778|309779|309788|309882|309883|309894|309898|309903|309904|309905|309907|309914|309921|309932|309935|309937|309939|309953|585828|586432|620797|788811|897479|897480|897481|897482|897483|897484|897485|897486|897487|897488|897489|897490|897491|897492|897493|897494|897495|897496|897497|897498|897499|897500|897501|897502|897503|897504|897505|897506|897507|897508|897509|897510|897511|897512|897513|897514|897515|897516|897517|897518|897519|897520|903550|903551", + "text": "Congenital bile acid synthesis defect 2" + }, + { + "baseId": "20418|141464|141466|141467|165472|165473|165474|237150|318169|318173|318177|318180|326177|326181|326186|326187|332336|332337|332338|332343|332345|333937|333942|333953|333960|333961|333962|333967|333979|333981|333985|333991|408728|549993|693265|693266|695580|738808|753533|870247|870248|870249|870250|870251|870252|870253|870254|870255|870256|870257|870258|870259", + "text": "Combined oxidative phosphorylation deficiency 3" + }, + { + "baseId": "20419|20420|20421|20422|20423|34214|34215|34216|34217|34218|34219|34220|34221|34222|34223|34224|34225|34226|34227|34228|34229|34230|34231|34232|221642|221644|221645|239956|252546|301261|301262|304456|304457|304459|304461|304462|304463|304465|309042|309043|309056|309057|309060|309066|309067|309071|309072|309135|309137|309139|309145|309148|395264|395624|456499|522312|522661|561169|620244|635334|683829|683831|683834|683837|685202|685204|686932|765920|859569|897028|897029|897030|897031|897032|897033|897034|897035|897036|897037|897038|897039|897040|897041|897042|897043|897044|897045|897046|897047|897048|897049|897050|897051|897052|897053|900278|900279|900280|900281|900282|900283|900284|905731|905734", + "text": "Hemochromatosis type 3" + }, + { + "baseId": "20422", + "text": "Hemochromatosis, type 1, modifier of" + }, + { + "baseId": "20424|794190|969326|976692", + "text": "Sudden infant death with dysgenesis of the testes syndrome" + }, + { + "baseId": "20425|20426|20427|20428|20429|20431|136325|136326|136344|142632|142633|211320|211324|211331|213577|303716|303727|303728|303733|303743|303746|303748|303751|303752|303755|307128|307129|307158|307163|307166|307179|307188|307192|307197|307198|307203|307206|307209|307215|307232|307233|307234|307239|307240|307246|312070|312074|312082|312084|312086|312087|312089|312090|312092|312093|312098|312099|312110|312119|312120|312121|312158|312160|312173|312175|312183|312185|312192|312195|421647|818390|818391|898570|898571|898572|898573|898574|898575|898576|898577|898578|898579|898580|898581|898582|898583|898584|898585|898586|898587|898588|898589|898590|898591|898592|970222", + "text": "Mitochondrial DNA depletion syndrome, encephalomyopathic form, with renal tubulopathy" + }, + { + "baseId": "20425|20426|20427|20429|20430|20431|20432|20433|39389|39390|39391|39392|39393|136325|136326|136327|136328|136329|136330|136331|136332|136334|136335|136336|136337|136338|136339|136340|136341|136343|136344|136345|136346|136347|136349|136351", + "text": "RRM2B-related mitochondrial disease" + }, + { + "baseId": "20430|39389|39390|142632|142633|211324|303716|303727|303728|303733|303743|303746|303748|303751|303752|303755|307128|307129|307158|307163|307166|307179|307188|307192|307197|307198|307203|307206|307209|307215|307232|307233|307234|307239|307240|307246|312070|312074|312082|312084|312086|312087|312089|312090|312092|312093|312098|312099|312110|312119|312120|312121|312158|312160|312173|312175|312183|312185|312192|312195|898570|898571|898572|898573|898574|898575|898576|898577|898578|898579|898580|898581|898582|898583|898584|898585|898586|898587|898588|898589|898590|898591|898592", + "text": "Autosomal dominant progressive external ophthalmoplegia with mitochondrial DNA deletions 5" + }, + { + "baseId": "20432|20433", + "text": "Mitochondrial DNA depletion syndrome 8B (MNGIE type)" + }, + { + "baseId": "20434|20435|20436|20437|20438|48515|48516|48517|176026|176027|176592|176593|176594|176729|176731|176732|187130|231017|231018|231019|236928|333571|333575|333576|333578|333581|333584|343632|343636|343637|343642|343646|343648|343650|348947|348949|348950|348958|348959|348961|348966|348967|348975|348977|348978|348984|348986|349877|349878|349883|349886|349887|349891|349892|349895|349896|349899|379579|415657|446133|446134|497518|506759|506765|506778|507349|507779|621015|728195|741899|788928|882059|882060|882061|882062|882063|882064|882065|882066|882067|882068|882069|882070|882071|882072|882073|882074|882075|882076|882077|882078|882079|882080|882891|882892|882893|961348|966608", + "text": "Cutis laxa with severe pulmonary, gastrointestinal, and urinary abnormalities" + }, + { + "baseId": "20439|20440|20441|20442|45876|45877|45878|45879|152856|152858|192122|213523|226537|282233|283732|431008|433689|511021|513018|623250|790028|790029|790030|790031|799234|799235|799236|799237|799238|971540", + "text": "Retinitis pigmentosa 38" + }, + { + "baseId": "20443", + "text": "Cardiac conduction defect, susceptibility to" + }, + { + "baseId": "20444|20445", + "text": "Asthma-related traits, susceptibility to, 1" + }, + { + "baseId": "20446|81545|302757|302765|302767|302772|302774|306082|306087|306094|306095|306097|306099|310857|310873|310874|310877|310885|310886|311037|311053|311054|353813|353814|897957|897958|897959|897960|897961|897962|897963|897964|897965|897966|897967|897968|897969|897970|897971|900351", + "text": "Microtia, hearing impairment, and cleft palate" + }, + { + "baseId": "20447|23223|23227|23228|23230|23306|23406|23801|29244|29245|31912|49908|614420|816334|980444|980451", + "text": "Human immunodeficiency virus type 1, susceptibility to" + }, + { + "baseId": "20447", + "text": "Dengue fever, protection against" + }, + { + "baseId": "20447|20448|20578|20579|29246|32983|49355|288600|450762|576099|626125|980413|980453|980456", + "text": "Mycobacterium tuberculosis, susceptibility to" + }, + { + "baseId": "20449|20450|20451|20452|20453|20454|20455|20456|20457|70797|205544|205546|212126|238586|238587|250469|250470|250471|283572|283581|283586|283592|283598|283627|284249|284250|284251|284252|284253|284259|284261|284263|284269|284271|286257|286260|286262|286270|286273|286588|286589|286590|392375|392453|481106|481107|481108|481109|481110|481111|517467|517549|517553|517750|557798|620044|683464|683466|686100|686101|690993|758998|762742|781099|790139|795100|825517|825518|850825|883061|883062|883063|883064|883065|883066|883067|883068|883069|883070|883071|883072|887224|905729|905730|922498|931063|931064|942533", + "text": "Hemochromatosis type 4" + }, + { + "baseId": "20459|20460|20461|237519|257103|257104|257112|257116|417658|513056|590330|590331|590332|623354|818337|818338|919866|977361", + "text": "Focal segmental glomerulosclerosis 1" + }, + { + "baseId": "20462|20463|20464|47612|47614|47615|47616|47617|47618|47619|51205|174806|175218|230221|314604|314608|314615|321291|321308|321310|321316|321322|321326|327469|327470|327477|327478|327479|328514|328515|328518|371581|374180|413316|433523|461352|461355|461357|461359|461360|461363|461505|461508|461509|461511|461518|461521|461533|461857|461863|461866|461873|461885|461886|462214|462218|462219|462220|462221|462225|462226|503348|512852|526395|526401|526402|526432|526438|526686|526690|526691|526692|526923|526925|526926|526933|564847|564851|566068|567455|567457|570837|570843|570849|640328|640329|640330|640331|640332|640333|640334|640335|652383|693090|738153|768609|768610|816321|820404|838762|838763|838764|838765|838766|838767|838768|838769|838770|838771|838772|838773|838774|838775|851451|852385|868278|868279|868280|868281|868282|868283|868284|868285|903580|926344|926345|935691|935692|940228|940229|956588|970526", + "text": "Autosomal recessive cutis laxa type 1B" + }, + { + "baseId": "20462|20463|20464|20514|34302|34303|34305|34306|47612|47613|47614|47615|47616|47617|47618|47619|215086|404820|677447|983565", + "text": "Autosomal recessive cutis laxa type IA" + }, + { + "baseId": "20465|20466", + "text": "Obesity, mild, early-onset" + }, + { + "baseId": "20467|143247|143248|187181|253982|253983|253985|312047|312053|312058|312059|312063|312068|312072|317718|317722|323737|323738|323744|323754|323759|323760|323763|324457|324461|324462|324463|324469|324470|324479|620376|701531|712556|866796|866797|866798|866799|866800|866801|866802|866803|866804|866805|866806|866807|866808|866809|866810|866811|866812|866813|866814|866815|866816|866817|866818|866819|868579|868580|906310|906311|906312|906313", + "text": "Amelogenesis imperfecta, hypomaturation type, IIA2" + }, + { + "baseId": "20468|297818|297827|299996|299998|300005|304231|304233|304234|304562|455026|455205|455929|521569|521574|622352|633975|799420|819598|830886|830887|894520|894521|894522|894523|894524|894525|918972|944636", + "text": "Distal hereditary motor neuronopathy type 2C" + }, + { + "baseId": "20469|20470|20471|20472|20473|20474|20475|20476|20477|20478|48703|101111|101116|101120|101123|101126|135569|135570|135581|141815|141816|141817|141818|176982|177245|191681|192016|192843|194627|195130|195515|195687|202508|202509|202510|202514|202515|202521|204392|205000|205001|205002|205003|205004|205005|205006|207451|207454|237211|240894|265869|271384|304513|311716|311724|311728|311729|311731|317300|323340|323341|323343|323345|323350|323922|323933|323935|323936|359900|370994|397541|397548|397733|397976|397984|398094|398099|398102|444034|455941|455949|460330|460337|460338|460390|460397|460408|460414|460699|461156|461158|488628|489661|521942|522356|522698|525528|525620|525624|525964|538415|564055|564061|564925|566622|566639|566640|566644|566646|569893|569896|569898|579693|587782|639312|639313|639314|639315|639316|639317|639318|639319|652161|692898|692899|768073|802020|820283|837512|837513|837514|837515|837516|837517|837518|837519|837520|866581|866582|866583|919306|925980|925981|925982|925983|925984|925985|935251|935252|935253|935254|935255|947154|947155|947156|956288|960736|970924", + "text": "Familial temporal lobe epilepsy 1" + }, + { + "baseId": "20479|20480|20481|20482|277060|277076|277077|277078|277080|277081|277084|277086|277089|277090|277091|277310|277316|277317|277320|277321|277322|277336|277337|277343|277349|277351|277352|277353|277356|277357|278081|278085|278088|278093|278094|278097|278103|278105|278112|278113|278124|278130|278136|278137|278138|278139|278140|278141|278161|278178|278194|278195|278196|278198|278208|278213|278214|481487|486794|551683|551684|551685|551686|551687|551688|552037|578341|578342|578343|578344|718358|816435|816436|862657|862658|862659|862660|862661|862662|862663|862664|862665|862666|862667|862668|862669|862670|862671|862672|862673|862674|862675|964719", + "text": "Adrenocorticotropic hormone deficiency" + }, + { + "baseId": "20483|20484|20485|20486|20487|20488|20489|20490|20491|47489|47490|47491|47492|47493|136199|136200|136201|136202|136203|136204|136205|136206|136207|136208|136209|139155|139156|139158|139159|139160|139161|139162|139163|139164|139165|139166|139167|139168|139169|139170|139171|139174|139175|139176|139177|139178|139179|139181|139182|139183|139184|139185|139186|139187|139188|139189|139190|139191|166133|191167|191978|192728|193021|193829|195260|205206|240338|240339|240340|240341|240342|240343|240344|240345|240346|240347|240348|240349|240351|240352|240353|240354|240355|240356|240357|240358|240359|240360|240361|240362|240363|240364|240365|240366|240367|240368|240369|240370|240371|240372|240373|240374|240375|240376|240377|240378|240379|240380|240381|240382|240383|240384|240385|240386|240387|240388|240389|240390|253104|268528|273751|274363|274920|274923|305106|305108|305112|305118|305121|305126|305128|305132|305134|305135|305137|305141|305142|308826|308830|308834|308836|308855|308857|308863|308872|308881|308885|314011|314023|314030|314036|314044|314047|314048|314059|314069|314072|314078|314079|314085|314089|314092|314093|314094|314101|314102|314106|314111|314113|314115|314118|314121|314125|314132|314133|314136|314137|314141|396110|396152|396161|396163|396176|396178|396179|396182|396185|396189|396191|396193|396194|396199|396201|396207|396209|396211|396214|396219|396220|396225|396229|396238|396244|396248|396420|396424|396427|396430|396433|396434|396437|396438|396439|396443|396446|396448|396453|396455|396462|396463|396465|396467|396476|396479|396486|396499|396502|396509|396513|396520|396528|396530|396553|396558|396561|396564|396565|396569|396576|396577|396583|396586|396588|396592|396596|396597|396601|396604|396605|396608|396619|396628|396630|396636|396641|396644|396646|396648|396650|396654|396658|396663|396798|396799|396804|396805|396808|396812|396815|396817|396820|396822|396829|396832|396835|396837|396838|396853|396860|396866|396877|396880|396882|396893|396901|396905|396908|457695|457738|457740|457751|457754|457755|457758|457762|457764|457769|457771|457779|457780|457785|457789|457790|457799|457800|457802|457803|457805|457818|457821|457823|458325|458336|458338|458340|458345|458348|458356|458358|458359|458361|458362|458364|458374|458375|458378|458381|458382|458384|458388|458389|458395|458398|458399|458400|458402|458404|458406|458409|458411|458413|458415|458416|458418|458420|458421|458423|458429|458430|458431|458432|458433|458436|458438|458439|458440|458442|458443|458444|458446|458448|458451|458454|458455|458457|458459|458460|458463|458464|458467|458473|458475|458478|458480|458482|458485|458693|458696|458707|458721|458733|458734|458742|458744|458749|458762|458763|458768|458772|458779|458781|458785|458786|458788|458801|458802|458804|458805|458811|458814|458816|458825|458826|458828|458833|458835|458840|458843|458847|458852|458854|458857|458861|458865|458866|458881|458884|458886|513976|523167|523418|523433|523435|523438|523440|523443|523447|523449|523453|523457|523459|523460|523463|523465|523469|523470|523475|523478|523482|523485|523486|523491|523497|523503|523508|523513|523520|523524|523532|523533|523539|523545|523546|523551|523737|523741|523743|523752|523756|523759|523761|523762|523764|523766|523776|523778|523780|523781|523785|523788|523792|523805|523807|523810|523813|523815|523818|523822|523833|523835|523838|523846|523875|523876|524002|524005|524010|524011|524012|524013|524016|524018|524021|524022|524029|524030|524031|524033|524041|524043|524046|524047|524048|524050|524052|524053|524054|524056|524058|524060|524061|524065|524066|524067|524068|524075|524077|524082|524083|524088|524092|524094|524096|524097|524100|524101|524102|524103|524104|524106|524111|524112|524113|524116|524118|524122|524125|524127|524128|524132|524133|524137|524139|524140|524141|524144|524149|562283|562285|562286|562290|562293|562295|562297|562299|562301|562303|562307|562309|562316|562320|562323|562324|562336|562343|562344|562346|562350|562354|562361|562363|562366|562370|562374|562375|562379|562383|562390|562392|562394|562402|562404|562412|562814|562819|562821|562822|562823|562834|562843|562848|562853|562859|562860|562865|562879|562890|562892|562893|562895|562900|562904|562905|562908|562914|562917|562929|562932|562933|562934|562938|564994|564995|564997|564999|565002|565004|565006|565008|565013|565015|565020|565022|565023|565029|565033|565035|565039|565040|565042|565049|565051|565052|565060|565063|565066|565067|565072|565073|565095|565100|567756|567762|567780|567788|567789|567793|567794|567799|567815|567818|567820|567828|567831|567838|567839|567848|567858|567859|567869|567876|567878|567889|567890|567893|567895|567897|567899|567903|567905|567915|567924|612815|620298|620805|637061|637062|637063|637064|637065|637066|637067|637068|637069|637070|637071|637072|637073|637074|637075|637076|637077|637078|637079|637080|637081|637082|637083|637084|637085|637086|637087|637088|637089|637090|637091|637092|637093|637094|637095|637096|637097|637098|637099|637100|637101|637102|637103|637104|637105|637106|637107|637108|637109|637110|637111|637112|637113|637114|637115|637116|637117|637118|637119|637120|637121|637122|637123|637124|637125|637126|637127|637128|637129|637130|637131|637132|637133|637134|637135|637136|637137|637138|637139|637140|637141|637142|637143|637144|637145|637146|637147|637148|637149|637150|637151|637152|637153|637154|637155|637156|637157|637158|637159|637160|637161|637162|637163|637164|637165|637166|637167|637168|637169|637170|637171|637172|637173|637174|637175|637176|637177|637178|637179|637180|637181|637182|637183|637184|637185|637186|637187|637188|637189|637190|637191|637192|637193|651719|651778|651780|651782|651786|651789|651796|651798|651847|651856|651887|651888|651892|651894|651947|651952|651955|651960|651965|684001|684002|684003|685238|685239|685240|687265|687266|687268|687269|687271|687273|689914|692483|692485|692487|692488|692489|692490|695391|700564|700565|700566|711494|711495|723053|723055|730564|736621|736622|736623|751105|751106|766763|766764|766766|766781|766785|766788|775331|775426|775472|783094|783095|790795|790796|819955|819956|819957|819958|819959|819960|834591|834592|834593|834594|834595|834596|834597|834598|834599|834600|834601|834602|834603|834604|834605|834606|834607|834608|834609|834610|834611|834612|834613|834614|834615|834616|834617|834618|834619|834620|834621|834622|834623|834624|834625|834626|834627|834628|834629|834630|834631|834632|834633|834634|834635|834636|834637|834638|834639|834640|834641|834642|834643|834644|834645|834646|834647|834648|834649|834650|834651|834652|834653|834654|834655|834656|834657|834658|834659|834660|834661|834662|834663|834664|834665|834666|834667|834668|834669|834670|834671|834672|834673|834674|834675|834676|834677|834678|834679|834680|834681|834682|834683|834684|834685|834686|834687|834688|834689|834690|834691|834692|834693|834694|834695|834696|834697|834698|834699|834700|834701|834702|834703|834704|834705|834706|834707|834708|834709|834710|834711|834712|834713|834714|834715|834716|834717|834718|834719|834720|834721|834722|834723|834724|834725|834726|851197|851199|851201|851686|851688|851690|851692|852124|852126|852128|852130|852132|852134|852136|852440|899423|899424|899425|899426|899427|899428|899429|899430|899431|899432|899433|899434|900477|900478|900479|900480|900481|925154|925155|925156|925157|925158|925159|925160|925161|925162|925163|925164|925165|925166|925167|925168|925169|925170|925171|925172|925173|925174|925175|925176|925177|925178|925179|925180|925181|925182|925183|925184|925185|925186|925187|925188|925189|925190|925191|925192|925193|925194|934243|934244|934245|934246|934247|934248|934249|934250|934251|934252|934253|934254|934255|934256|934257|934258|934259|934260|934261|934262|934263|934264|934265|934266|934267|934268|934269|934270|934271|934272|934273|934274|934275|934276|934277|934278|934279|934280|934281|934282|934283|934284|934285|934286|934287|934288|934289|934290|934291|934292|934293|934294|934295|934296|934297|934298|940096|940097|940098|940099|940100|940101|940102|940899|940900|940901|940902|940903|940904|940905|940906|940907|946011|946012|946013|946014|946015|946016|946017|946018|946019|946020|946021|946022|946023|946024|946025|946026|946027|946028|946029|946030|946031|946032|946033|946034|946035|946036|946037|946038|946039|946040|946041|946042|946043|946044|946045|946046|946047|946048|946049|946050|946051|946052|946053|946054|946055|946056|946057|946058|955388|955389|955390|955391|955392|955393|955394|955395|955396|955397|955398|955399|955400|955401|955402|955403|955404|955405|959884|959885|959886|959887|959888|959889|959890|959891|960650|960651|980930", + "text": "Werner syndrome" + }, + { + "baseId": "20493|20494|20496|51230|51232|51233|51235|51237|51238|51242|51244|51250|51254|51255|51258|51343|51344|82870|82871|98303|98304|98305|98306|98307|98308|132929|132930|132931|132932|132933|132934|132935|132936|132937|132938|132939|132940|132941|132942|132944|132945|132946|132947|132948|132949|132950|132951|132952|132953|132954|132955|132956|132957|132958|132959|132960|132961|132962|132963|132964|132965|132967|132968|132969|132971|132972|132973|132974|132975|133979|137436|137437|137438|137439|137440|137441|137442|137444|137446|137447|137448|137449|137450|137452|137453|137454|137455|140210|140211|140212|140213|140214|140215|140216|140217|140219|140220|140221|140222|140223|140224|166249|178766|180703|180704|186946|186947|186948|186949|186950|188870|205211|222437|222438|225271|237261|242146|242147|242148|242149|242150|242151|242152|242153|242154|242155|242156|242157|242158|242159|242160|242161|242162|242163|242164|242165|242166|242167|242168|242169|242170|242171|242172|242173|242174|255425|265458|271469|275350|323581|333311|333312|340070|340072|340074|340082|340085|340086|340089|340091|341536|341537|341540|358340|358341|358342|358343|358344|358345|358346|358347|358348|358349|358350|358351|358352|358353|358354|358355|358356|358357|358358|358359|358360|358361|358362|358363|358364|358365|361217|361218|400426|400434|400435|400438|400439|400441|400443|400446|400447|400449|400461|400462|400468|400475|400476|400480|400564|400573|400575|400582|400586|400587|400593|400596|400597|400598|400599|400602|400604|400610|400612|400616|400619|400623|400624|400915|400922|400924|400925|400931|400935|400938|400942|400944|400945|400948|400953|400965|400969|400980|400983|400988|400996|401005|401010|401012|401014|401021|401024|401034|401246|401255|401257|401260|401264|401266|401272|401273|401275|401277|401281|401286|401288|401291|401297|401304|401306|409393|429749|464624|464625|464630|464636|464638|464639|464643|464647|464649|464652|464659|464668|464670|464671|464672|464673|464679|464682|464691|464692|464696|464702|464709|464711|464713|464716|464730|464737|464746|464748|464751|464754|465245|465250|465252|465262|465263|465269|465270|465281|465292|465293|465296|465306|465313|465314|465317|465318|465320|465327|465328|465331|465334|465340|465341|465344|465355|465414|465416|465418|465421|465423|465427|465437|465444|465445|465454|465456|465459|465463|465465|465476|465479|465484|465488|465490|465492|465494|465495|465496|465497|465499|465500|465508|465514|465515|465516|465519|465525|465528|465530|465532|465535|465538|465543|465546|465551|465564|465568|465573|465578|465588|465590|465592|465594|465596|465601|465603|465608|465614|465615|477220|477224|477226|477230|477243|477244|477246|477250|477253|477254|477261|477267|477276|477404|477405|477406|477816|477838|477845|477865|477871|477873|477874|477879|477890|477891|487898|488671|528583|528609|529023|529141|529142|529143|529145|529148|529150|529153|529154|529155|529157|529158|529161|529162|529163|529167|529171|529172|529174|529175|529176|529178|529179|529182|529183|529187|529188|529189|529191|529193|529196|529197|529198|529199|529200|529201|529203|529206|529210|529212|529214|529216|529461|529463|529464|529472|529475|529484|529486|529487|529491|529496|529498|529500|529503|529506|529508|529509|529510|529512|529531|529533|529535|529536|529693|529701|529702|529703|529705|529714|529716|529721|529722|529726|529728|529737|529739|529747|529755|529756|529759|529770|529776|529778|529781|529786|529787|529790|529792|529801|529805|529807|529808|529810|547639|547640|547642|547643|547645|547647|547649|547652|547654|547658|547659|547660|547665|547667|547671|547675|547678|547680|547683|547686|547688|547690|547713|547716|547903|547905|547907|547909|547916|547917|547922|547927|547934|547937|547942|547944|547948|547950|547965|547968|547969|547971|548328|548329|548338|548340|548351|548353|548355|548363|548367|548375|548377|548383|548387|548393|548396|548397|548401|548404|548406|548407|553392|567349|567351|567358|567359|567361|567362|567364|567367|567373|567374|567380|567383|567384|567394|567395|567398|567404|567405|567411|567416|567424|567429|567436|567437|567441|568603|568608|569214|569221|569222|569223|569228|569231|569239|569242|569246|569248|569249|569255|569261|569266|569268|569272|569273|569289|569294|569295|569298|569299|569305|569307|569310|569316|569319|569322|569325|569326|569333|569335|569341|569345|569350|569355|569652|569654|569659|569664|569665|569667|569674|569678|569684|569688|569690|569692|569695|569700|569702|569709|569717|569719|569721|569723|569724|569726|569727|569729|569731|569740|569742|573122|573587|573589|573590|573591|573595|573601|573603|573604|573611|573614|573615|573619|573620|573621|573622|573623|573624|573628|573632|573635|573637|573639|575596|575598|575933|575934|575936|575937|575938|575940|575941|575942|575943|575944|575945|575946|575947|575948|575949|575950|575951|575952|575953|575954|575955|587926|614405|621520|621521|643632|643633|643634|643635|643636|643637|643638|643639|643640|643641|643642|643643|643644|643645|643646|643647|643648|643649|643650|643651|643652|643653|643654|643655|643656|643657|643658|643659|643660|643661|643662|643663|643664|643665|643666|643667|643668|643669|643670|643671|643672|643673|643674|643675|643676|643677|643678|643679|643680|643681|643682|643683|643684|643685|643686|643687|643688|643689|643690|643691|643692|643693|643694|643695|643696|643697|643698|643699|643700|643701|643702|643703|643704|643705|643706|643707|643708|643709|643710|643711|643712|643713|643714|643715|643716|643717|643718|643719|643720|643721|643722|643723|643724|643725|643726|643727|643728|643729|643730|652439|652448|652544|652590|652594|652596|652720|652784|653021|653076|653083|653094|654784|681830|681831|682218|684565|685412|688500|688501|688506|688508|688509|688511|688512|688513|690121|690122|690123|690124|690125|693754|693756|693757|693759|693760|693762|693764|693765|693766|693767|693768|693769|693771|693772|693773|693774|693775|693776|695666|695667|695668|703418|703419|703420|703421|714690|714691|726351|726352|739878|739880|739881|739883|754785|754786|754787|754788|754789|754792|754793|760422|770421|770425|770428|770429|770430|770432|770434|770438|770440|776081|776248|776250|785062|785064|785066|785067|785072|787975|791500|791501|791502|791503|791504|791505|791506|791507|791508|791509|791510|791511|791512|791513|791514|791515|801902|812267|812270|812278|812279|812288|812296|812298|812301|812303|812304|812305|812306|812316|812317|812318|812322|812326|812328|812333|812340|812341|812344|812346|812349|812350|812351|812353|812355|812357|812358|812361|812365|812370|812373|812377|812382|812391|812399|812408|812415|815602|815604|815606|816414|818695|820742|820743|820744|820745|820746|820747|820748|820749|820750|820751|820759|842803|842804|842805|842806|842807|842808|842809|842810|842811|842812|842813|842814|842815|842816|842817|842818|842819|842820|842821|842822|842823|842824|842825|842826|842827|842828|842829|842830|842831|842832|842833|842834|842835|842836|842837|842838|842839|842840|842841|842842|842843|842844|842845|842846|842847|842848|842849|842850|842851|842852|842853|842854|842855|842856|842857|842858|842859|842860|842861|842862|842863|842864|842865|842866|842867|842868|842869|842870|842871|842872|842873|842874|842875|842876|842877|842878|842879|842880|842881|842882|842883|842884|842885|842886|842887|842888|842889|842890|842891|842892|842893|842894|842895|842896|842897|842898|842899|842900|842901|842902|842903|842904|842905|842906|842907|842908|851635|851637|852077|852079|852081|852786|874320|874321|874322|874323|876592|927462|927463|927464|927465|927466|927467|927468|927469|927470|927471|927472|927473|927474|927475|927476|927477|927478|927479|927480|927481|927482|927483|927484|927485|927486|927487|927488|927489|927490|927491|927492|927493|927494|927495|927496|927497|937117|937118|937119|937120|937121|937122|937123|937124|937125|937126|937127|937128|937129|937130|937131|937132|937133|937134|937135|937136|937137|937138|937139|937140|937141|937142|937143|940334|940335|941099|941100|941101|941102|941103|949059|949060|949061|949062|949063|949064|949065|949066|949067|949068|949069|949070|949071|949072|949073|949074|949075|949076|949077|949078|949079|949080|949081|949082|949083|949084|949085|949086|949087|949088|949089|949090|949091|949092|949093|949094|949095|949096|949097|949098|949099|949100|949101|949102|949103|949104|949105|949106|949107|957541|957542|957543|957544|957545|957546|957547|957548|957549|957550|957551|957552|957553|957554|957555|957556|957557|957558|957559|957560|957561|957562|957563|957564|957565|957566|957567|957568|957569|960125|960126|965997|966190|966191|979699|979700|979701|979702|979703|979704", + "text": "Bloom syndrome" + }, + { + "baseId": "20497|970751", + "text": "Coronary heart disease 5" + }, + { + "baseId": "20498|20499|20500|20501|20502|20503|20504|187118|191399|191556|194424|194425|194426|194427|194941|237313|237382|237420|267837|268277|268664|271565|272448|314928|314932|314947|314948|314952|314954|314957|314958|314959|314961|314962|314970|314977|314980|314981|314988|314989|314993|314994|314997|321731|321734|321736|321737|321738|321746|321762|321764|321773|321775|321779|327808|327829|327832|327834|327835|327836|327839|327842|327849|327850|328912|328918|328919|328920|328926|358050|489344|491187|539039|546189|546199|546210|546217|546220|546228|546233|546240|546252|546253|546257|546261|546263|546267|546269|546277|546280|546282|546284|546486|546490|546492|546500|546502|546504|546510|546512|546514|546518|546521|546523|546525|546617|546618|546622|546634|546636|546640|546648|546649|546651|546656|546658|546665|546668|546669|546847|546849|546860|546862|546868|546871|546874|546884|546889|546893|546894|546897|546903|546912|546918|546922|546927|552153|584528|585644|585760|622407|682319|713105|724673|724674|724675|738222|738224|738225|738226|738227|738228|744659|752889|752890|752893|759939|759942|760041|760110|768679|768680|768682|768683|768685|768689|768695|768696|775728|784140|784144|784145|784149|788854|792783|792784|818395|868694|868695|868696|868697|868698|868699|868700|868701|868702|868703|868704|868705|868706|868707|868708|868709|868710|868711|868712|868713|872130|872131|872132|872133|966616|979070|979071|979072|979073|979074|979075|979076|979077|979078|979079|979080|979081|979082|979083|979084|979085|979086|979087|979088|979089|979090|979091|979092|979093|979094|979095|979096|979097|979098|979099|979100|979101|979102|979103|979104|979105|979106|979107|979108|979109|979110|979111|979112|979113|983464|983465", + "text": "Autosomal recessive osteopetrosis 1" + }, + { + "baseId": "20509|20510|20511|20512|20513|39380|39381|39382|46948|46950|46953|46954|133735|133736|140015|140016|140017|140019|140020|211841|211843|211847|211847|330736|330737|330741|330745|330746|330748|340961|340962|346543|346544|346546|346552|346554|346559|346563|346564|347859|347862|347867|347870|347875|347878|347880|347883|347884|438068|539078|626320|656483|798730|798731|878921|878922|878923|878924|878925|878926|878927|878928|878929|878930|878931|878932|964496", + "text": "Spinocerebellar ataxia type 28" + }, + { + "baseId": "20516|20517|20518|20519|20520|20521|20522|34305|175949|175950|176093|215085|215086|215087|230548|271430|321750|321753|321755|331029|331030|331034|331035|331036|331042|331043|331052|331055|331057|331059|337765|337766|337769|337776|337778|337795|337810|337816|339775|339776|339784|339788|339794|339796|339800|339807|339808|339809|404820|677447|872913|872914|872915|872916|872917|872918|872919|872920|872921|872922|872923|872924|876464", + "text": "Age-related macular degeneration 3" + }, + { + "baseId": "20520|21598|28229|34305|175949|175950|176093|215086|215087|230548|266502|271430|321750|321753|321755|330599|330600|330602|330603|330606|331029|331030|331034|331035|331036|331042|331043|331052|331055|331057|331059|337765|337766|337769|337776|337778|337795|337810|337816|339775|339776|339784|339788|339794|339796|339800|339807|339808|339809|340837|340843|340860|340861|340868|340869|346450|346452|346454|347785|347787|347788|347789|347790|347791|347792|347796|347799|347800|347801|347802|347803|656478|797630|801921|872913|872914|872915|872916|872917|872918|872919|872920|872921|872922|872923|872924|876464|878833|878834|878835|878836|878837|878838|878839|878840|878841|878842|878843|878844|880629", + "text": "Cutis laxa" + }, + { + "baseId": "20523|20524|20525|20526|20527|20528|152859|181193|181194|181195|181196|181197|181198|181199|190522|226404|227078|227079|227080|315381|315396|315402|315404|315405|315406|315414|315420|315422|315424|315429|315431|315440|315442|315443|315444|322216|322217|322219|322221|322222|322224|322225|322227|322230|322234|322235|322247|322249|322250|322253|322256|322258|322263|322272|322286|322287|322289|322291|328322|328331|328338|328339|328342|328360|328362|328363|328367|328370|328387|328388|328389|328395|328396|328397|328399|328407|328420|328427|329612|329618|329621|329622|329630|329634|329642|329652|329659|329671|329682|329683|329684|329696|329698|329716|329722|329723|329734|329740|329749|489074|550803|788860|839152|868893|868894|868895|868896|868897|868898|868899|868900|868901|868902|868903|868904|868905|868906|868907|868908|868909|868910|868911|868912|868913|868914|868915|868916|868917|868918|868919|868920|868921|868922|868923|917621|917622|917623|917625|919399|919400|976014", + "text": "Exudative vitreoretinopathy 1" + }, + { + "baseId": "20525", + "text": "Exudative vitreoretinopathy, digenic" + }, + { + "baseId": "20528", + "text": "Retinopathy of prematurity" + }, + { + "baseId": "20529|20532|20533|20534|20535|101452|101453|101454|101455|101457|101458|101459|101460|101461|101463|101464|101466|101468|101469|101470|101471|101472|101474|101475|101476|134247|134248|134249|134251|134252|134253|134254|134256|134257|134257|134258|140512|140512|140513|140515|140517|140519|140520|140521|140522|140523|140525|140526|140527|140531|140532|140534|140535|140536|140537|140539|140540|140541|140542|176985|177117|177379|177379|177621|190866|191564|191564|191692|191693|191695|192129|192453|192670|192670|193620|193620|195365|195719|195720|195721|195722|196014|202015|202016|202021|202022|202023|202025|202026|202027|202028|202029|202030|202030|202031|202031|202033|202034|202035|202036|202036|202037|202039|202041|202044|202045|202047|202047|202050|202056|202057|202058|202060|202061|202063|202063|202064|202065|202065|202067|202069|202070|202071|202072|202074|202075|202077|202077|202078|202080|202081|202083|202083|202086|202087|202089|202093|202095|202096|202100|202100|202102|202103|202104|202105|202105|202107|202107|202108|202110|202111|202112|202113|202115|202117|202122|202122|202123|202125|207466|207468|207470|239990|252644|267590|267772|268024|269352|273118|273297|274638|302099|302105|302106|302110|302112|302118|302119|302122|302123|302124|302130|302131|302133|302136|302144|302146|302147|302148|302152|302154|302155|302156|302168|302169|302173|305257|305261|305271|305274|305278|305281|305282|305283|305285|305290|305292|305293|305303|305305|305306|305307|305311|305313|305314|305315|305317|305319|305326|305334|305335|305338|305341|305343|305344|305345|305348|305356|305357|310046|310047|310048|310049|310051|310056|310069|310070|310071|310076|310077|310081|310100|310101|310103|310110|310111|310112|310114|310116|310117|310118|310119|310122|310123|310126|310127|310129|310131|310132|310133|310134|310142|310143|310147|310148|310155|310159|310170|310177|310180|310183|310184|310185|310186|310187|310189|310196|310198|310200|310204|310205|310206|310207|310219|310237|310251|310257|310261|310265|369282|369288|369297|369298|369535|369539|369540|369553|369570|369579|370910|370955|395455|395465|395467|395607|395652|395657|395833|395835|396103|396108|396109|396123|407006|407008|407009|407014|407017|407019|407023|407025|407026|407028|407033|407033|407036|407037|407038|407040|407042|415085|421625|426670|428677|428680|428682|428686|431968|431969|431970|431971|431972|431973|444083|444088|444088|444090|444093|455860|456441|456443|456447|456450|456458|456751|456753|456757|456765|456767|456771|456772|457019|457023|457027|457029|457044|457476|457477|457481|457485|457486|457492|457502|488968|501619|501623|501917|502259|522253|522286|522393|522395|522400|522404|522408|522410|522413|522416|522417|522431|522433|522644|522645|522649|522651|522731|522736|522740|522746|522756|522759|523105|523108|523113|523115|523116|523121|561035|561396|561398|561649|561656|561658|561678|563845|566547|566547|566548|566548|566550|579289|579337|579477|584817|614311|614311|626311|635849|635850|635852|635853|635854|635855|635856|635857|635858|635859|635860|635861|635862|635864|635865|635866|635867|635868|635869|635870|635871|635872|635873|635874|635875|651587|651647|651652|651662|651705|662234|686980|686981|686983|686985|695355|736014|750480|750492|766152|766161|782812|782813|782816|789370|790708|790709|792768|819841|819842|819843|819844|819845|819846|819847|819848|833272|833273|833274|833275|833276|833277|833278|833279|833280|833281|833282|833283|833284|833285|833286|833287|833288|833289|833290|833291|833292|833293|833294|833295|833296|833297|833298|833299|833300|833301|833302|833303|833304|833305|833306|833307|851142|851632|852072|897607|897608|897609|897610|897611|897612|897613|897614|897615|897616|897617|897618|897619|897620|897621|897622|897623|897624|897625|897626|897627|897628|897629|897630|897631|897632|897633|897634|897635|897636|897637|897638|897639|897640|897641|897642|897643|897644|897645|897646|897647|897648|897649|897650|897651|897652|897653|897654|897655|897656|897657|897658|897659|904207|919086|924730|924731|924732|924733|924734|924735|924736|924737|924738|924739|924740|924741|924742|924743|924744|924745|933739|933740|933741|933742|933743|933744|933745|933746|933747|933748|933749|933750|933751|933752|933753|933754|933755|933756|933757|933758|933759|945502|945503|945504|945505|945506|945507|945508|945509|945510|945511|945512|945513|955081|955082|955083|955084|955085|955086|955087|963145|963146", + "text": "Pitt-Hopkins-like syndrome 1" + }, + { + "baseId": "20530|20531|20532|134257|140512|177117|177379|191564|192670|193620|202030|202031|202036|202047|202063|202065|202077|202083|202100|202105|202107|202122|407033|407037|444088|566547|566548|614311", + "text": "Autism 15" + }, + { + "baseId": "20536|20537|20538|39377|39378|39379|101427|101428|101430|133799|133802|133803|133804|206834|206835|280991|280992|280993|280997|280998|281002|281014|281594|281596|281599|281601|281602|281603|281605|281608|281609|281610|281613|282785|282799|282804|283089|283091|283123|283125|361159|365165|365368|365430|365439|498545|498772|541218|541221|541224|541227|541229|541230|541235|541238|541239|541243|541248|541249|541250|541255|541258|541264|541266|541274|541275|541277|541327|541329|541331|541334|541335|541336|541337|541338|541342|541345|541347|541348|557401|557403|620010|628205|628206|628207|650614|690655|696831|707493|719046|732549|732550|732551|746610|746611|746612|762048|762049|774538|774546|818987|818988|824346|824347|824348|824349|824350|864684|864685|864686|864687|864688|864689|864690|864691|864692|864693|864694|864695|864696|864697|864698|864699|864700|864701|865197|865198|930640|930641|930642|942081|942082|952498|952499|959568|970700|977553|977554|977555|977556", + "text": "Congenital disorder of glycosylation type 1C" + }, + { + "baseId": "20540|76320|266806|284098|284099|284103|284104|284112|284113|284135|284137|284141|284878|284899|284902|284903|284905|284907|286800|286809|286814|286815|286818|286820|286822|286829|286830|286831|287212|287215|287216|287221|287222|433629|489334|517542|517644|517677|559051|560558|612590|629317|629318|650944|707950|707952|825614|825615|825616|825617|850874|883427|883428|883429|883430|883431|883432|883433|883434|883435|883436|883437|883438|883439|883440|883441|883442|883443|883444|883445|883446|922526|931081|931082|931083|942570|952890|952891", + "text": "Common variable immunodeficiency 1" + }, + { + "baseId": "20541|20542|20543|106719|195366|196015|265949|266287|270417|272321|272322|275287|297152|297159|297160|297161|297163|297164|297165|297177|297180|297181|297182|297189|297191|297193|297194|297199|297201|297210|297213|297215|297217|297219|297224|297225|297232|297233|297238|297239|297247|299109|299110|299119|299123|299124|299126|299142|299146|299147|299155|299161|299163|299168|299174|299177|299178|299179|299181|299182|299183|299184|299185|299190|299191|299196|299197|299212|299219|299223|299225|303327|303335|303338|303343|303370|303371|303375|303379|303380|303381|303383|303390|303392|303393|303395|303400|303403|303414|303416|303418|303424|303425|303430|303431|303441|303442|303447|303449|303484|303499|303506|303508|303510|303518|303519|303520|303526|303530|303543|303544|303546|303563|303573|303574|303579|303607|303610|303613|303614|303615|303617|303640|303643|303644|303662|303664|303665|303666|357418|359565|359679|368125|368131|368411|368415|368587|368594|368600|368603|369824|369826|406727|406729|406730|406731|406732|406733|425640|443776|443777|443779|443780|454849|454850|454858|454861|454976|454978|454982|454985|454995|454999|455448|455451|455454|455457|455461|455464|455465|455710|455716|455720|455722|500834|500835|500850|501117|501121|501137|501144|501150|501310|501317|501501|501507|501515|501533|501550|501551|520304|521092|521340|521349|521351|521458|521460|521611|521617|521619|521630|521635|521637|521638|521642|537481|543427|543693|543749|543859|560285|560287|560289|560392|560394|560396|560398|560400|560402|560404|563077|563080|563081|565059|565068|565071|565074|614285|614286|614287|633799|633800|633801|633802|633803|633804|633805|633806|633807|633808|633809|633810|633811|633812|633813|633814|633815|633816|633817|633818|633819|633820|633821|633822|633823|633824|633825|633826|633827|633828|633829|655659|655660|655661|655662|660878|691825|691826|691827|691828|691829|691830|691831|691832|691833|691834|691835|699030|699031|699032|699033|699034|699035|709845|709846|721407|721408|721409|735043|735044|744048|749443|749445|749446|749447|765053|765054|765056|765057|765060|765063|765066|765067|775077|777537|777578|779303|782255|782258|782260|782261|782262|782263|787511|819581|819582|819583|819584|830738|830739|830740|830741|830742|830743|830744|830745|830746|830747|830748|830749|830750|830751|830752|830753|830754|830755|830756|851282|851905|852200|894013|894014|894015|894016|894017|894018|894019|894020|894021|894022|894023|894024|894025|894026|894027|894028|894029|894030|894031|894032|894033|894034|894035|894036|894037|894038|894039|894040|894041|894042|894043|894044|894045|894046|894047|894048|894049|894050|894051|894052|894053|894054|894055|894056|894057|894058|896085|896086|924017|924018|924019|932875|932876|932877|932878|932879|940000|944577|944578|944579|954131|954132|954133|954134|954135|954136|954137|954138|954139|954140|954141|954142|954143|954144|954145|954146|954147|960562|960563|960564|960565|978164|978165|978166|978167|978168|978169|978170|978171|978172|978173|978174|978175|978176|978177|978178", + "text": "Ehlers-Danlos syndrome dermatosparaxis type" + }, + { + "baseId": "20544|20545|965641", + "text": "Retinitis pigmentosa 46" + }, + { + "baseId": "20546|89015|247049|390502|433381|437874|460362|460419|460421|460704|461181|525541|525542|525543|525545|525635|525824|563498|564065|564066|564952|566663|569911|639332|639333|639334|639335|639336|639337|639338|652121|652169|652356|724133|737661|744520|752350|752351|752352|752354|768082|779659|799626|820285|837532|837533|837534|837535|837536|837537|837538|837539|837540|837541|837542|837543|925988|925989|925990|940975|947162|956292|960737|964669", + "text": "Agammaglobulinemia 4, autosomal recessive" + }, + { + "baseId": "20547|20548|20549|20550|191037|191669|191905|192116|194391|227364|266817|266928|267366|272444|275002|321759|321760|321761|321765|321768|321774|321776|321781|321783|321784|321785|321787|321789|321797|321799|321800|321802|321803|321804|321810|321811|321818|321819|321823|321825|331063|331067|331078|331079|331095|331101|331102|331109|331110|331111|331115|331117|331125|331126|331129|331133|337830|337833|337846|337851|337852|337854|337857|337858|337859|337861|337864|337868|337869|337872|337874|337882|337895|337896|337899|337901|337908|337915|337931|339811|339812|339819|339825|339826|339831|339832|339836|339839|339840|339841|339845|339846|339847|339857|339858|339864|339870|339874|339875|339879|339889|339891|339892|339893|339894|339901|339902|339906|339915|339919|373947|374411|374415|376267|376275|433989|433991|445262|463596|497041|504909|504914|504919|505589|528808|528854|568334|568336|568337|569066|569067|569069|572969|572972|572976|588802|610502|610508|610510|620498|642782|642783|642784|642785|642786|642787|642788|654766|656273|656274|679926|679927|679928|679929|725858|725859|725861|730965|739391|739393|739395|754212|769954|799786|841904|841905|841906|841907|852019|872925|872926|872927|872928|872929|872930|872931|872932|872933|872934|872935|872936|872937|872938|872939|872940|872941|872942|872943|872944|872945|872946|872947|872948|872949|872950|872951|872952|872953|872954|872955|872956|872957|872958|872959|872960|872961|872962|872963|872964|872965|876465|876466|876467|927195|927196|948724|948725|957338|957339|957340", + "text": "Achondrogenesis, type IA" + }, + { + "baseId": "20547|513449|513450|610502|610504|610505|610507", + "text": "Goldblatt hypertension" + }, + { + "baseId": "20551|20552|20553|20554|20555|20556|20557|20558|20559|20560|20561|47015|47016|98559|98564|135646|135647|135648|135649|135650|135651|135652|135653|178066|178390|186865|186866|186867|186868|186869|186870|186871|190869|190870|190871|190872|190873|190874|190875|208015|208016|208017|208018|208019|208021|208022|209354|215463|230438|237032|237066|237288|241615|241616|241617|241619|241622|241624|241625|241627|241628|241629|241631|254831|254833|254834|254837|254838|254841|254842|254843|264512|264659|264664|264725|265443|266622|267143|268016|268019|269478|269480|270758|271448|271539|272475|272665|274745|319224|319226|319230|319234|319236|319237|319239|319247|319248|319252|319256|319260|319261|319264|319268|319270|319277|319284|319296|319297|319301|319304|319307|319310|319312|327724|327755|327757|327763|327764|327767|327771|327774|327775|327789|327791|327792|327794|327804|327806|327809|327812|327815|327819|327821|327823|327826|334023|334031|334033|334035|334037|334038|334044|334045|334046|334062|334069|334070|334072|334075|334081|334084|334087|334088|334089|334090|334097|334098|334113|334120|334127|335640|335653|335661|335665|335666|335669|335670|335683|335684|335688|335691|335693|335696|335698|335699|335701|335705|335708|335716|335718|335721|335722|335727|335728|335732|358136|358137|358138|358139|358140|358141|358142|358143|358144|358145|358146|358147|358148|358149|358150|358151|358152|358153|358154|358155|358156|358157|358158|358159|358160|358161|358162|358163|358164|358165|358166|358167|358168|358169|358170|358171|358172|358173|358174|358175|358176|358177|358178|358179|358180|358181|358182|358183|358184|358185|358186|358187|358188|358189|358190|358191|358192|358193|358194|358195|358196|358197|358198|358199|358200|358201|358202|358203|358204|358205|358206|358207|358208|358209|358210|359998|360126|384411|399113|399266|399271|399623|429482|437952|441595|441597|441601|441604|441607|441608|441609|441610|441613|441614|441615|441616|441617|441622|441623|441624|441627|441628|441629|445128|445130|445131|445132|462615|462633|462642|462911|462921|463490|463491|463494|488374|494100|495740|497235|513167|513168|513328|513329|513330|527524|527533|527755|527759|527768|528016|528022|540460|546800|546801|546805|546806|546807|546809|546812|546813|546817|546822|546827|546829|546831|546835|546841|546843|546846|546848|546852|546854|546859|546863|546864|546869|546872|546875|546880|546886|546895|546896|546901|546908|546914|546917|546919|546921|546924|546928|546935|546937|546939|546943|546950|546951|546976|546982|546983|546988|546989|546991|546993|546996|546997|547017|547018|547020|547023|547025|547028|547029|547036|547037|547040|547064|547065|547067|547069|547074|547076|547087|547089|547091|547092|547094|547100|547101|547103|547104|547106|547107|547110|547111|547113|547114|547128|547130|547132|547134|547135|547136|547140|547141|547143|547144|547145|547152|547153|547158|547159|547161|547162|547164|547166|547172|547173|547175|547178|547183|547185|547187|547189|547206|547208|547211|547212|547217|547219|547223|547224|547226|547227|547233|547235|547237|547240|547245|547248|547251|547252|547254|547257|547259|547261|547263|547273|547351|547354|547361|547376|547380|547382|547387|547390|547391|547404|547405|547411|547414|547419|547420|547427|547429|547432|547445|547452|547464|547467|547472|547475|547478|547482|547485|547497|547499|547517|547524|547526|547536|547543|547550|547551|547555|547556|549997|550623|550624|565880|565884|568280|568282|572232|572237|576158|577301|577302|577307|577309|577310|577321|577324|577325|610423|612299|612300|612301|612972|621387|641595|641597|641603|641606|641610|641611|641628|656197|677441|677442|677443|684386|684388|684392|684393|684394|684395|684399|684402|684403|684404|684405|684406|684407|684408|684409|684410|684411|684414|688102|688107|688114|688115|688117|688120|688122|688124|688127|688128|688129|688133|688135|688139|688145|688147|688148|688150|688152|688153|688154|688155|693334|693335|693336|693337|693342|693344|693346|693347|713872|738994|738999|769421|791295|791296|792791|793462|793463|793464|793466|793467|793470|793472|793473|793477|793482|793483|796920|796921|801720|840588|840595|840605|840607|840613|840614|840615|870903|870904|870905|870906|870907|870908|870909|870910|870911|870912|870913|870914|870915|870916|870917|870918|870920|870921|870922|870923|870924|870925|870926|870927|870928|870929|870930|870931|870932|870933|870934|870935|870936|870937|870938|870939|870940|870941|870942|870943|870944|870945|870946|870947|870948|870949|870950|870951|870952|870953|870954|870955|870956|870957|870958|870959|870960|870961|870962|870963|870964|870965|870966|870967|870968|870969|870970|872320|905938|917133|919491|919492|965932|965933|966056|970979|970980|979362|979363|979364|979365|979366|979367|979368|979369|979370|979371|979372|979373|979374|979375|979376|979377", + "text": "Charlevoix-Saguenay spastic ataxia" + }, + { + "baseId": "20562|133805|133806|133807|133808|133809|207213|207213|237097|237122|297310|297311|297312|297316|297317|297326|299313|299315|299316|299317|299318|299328|299329|299332|299333|303522|303527|303528|303529|303532|303535|303538|303540|303541|303542|303545|303765|303767|303778|303790|303807|303809|303815|303819|303828|303849|303850|303856|368156|369835|369853|494217|494217|501183|588163|588758|620195|790551|790552|830836|894114|894115|894116|894117|894118|894119|894120|894121|894122|894123|894124|894125|894126|894127|894128|894129|894130|894131|894132|894133|894134|894135|894136|896091", + "text": "Alpha-methylacyl-CoA racemase deficiency" + }, + { + "baseId": "20562|20563|207213|494217", + "text": "Congenital bile acid synthesis defect 4" + }, + { + "baseId": "20564|20565|53873|53875|53876|53877|53881|150263|176490|178715|189965|192360|198471|198473|213643|273206|338243|344342|344344|344346|344351|345772|467823|513211|802218|877391|877392|877393|877394|877395", + "text": "Autosomal recessive limb-girdle muscular dystrophy type 2G" + }, + { + "baseId": "20564|20566|27746|53870|53872|53873|53873|53874|53874|53875|53875|53876|53876|53877|53877|53877|53878|53879|53880|53881|53881|176490|176490|176492|176628|176629|178715|178715|187657|187659|187659|189965|189965|192359|198471|198471|198472|198473|198473|198474|198477|198478|198480|224514|224515|242733|242734|242735|259005|259007|266688|267457|268263|270405|273206|273206|274882|338243|344342|344344|344346|344351|345772|401951|422163|441954|466769|467648|467816|467818|467823|467824|468001|468005|487689|510738|510739|531105|531182|569020|571313|571315|574447|645828|645829|645830|645831|645832|645833|845249|845250|845251|845252|845253|845254|877391|877392|877393|877394|877395|928240|928241|937901|937902|937903|949892|949893|958094|958095", + "text": "Hypertrophic cardiomyopathy 25" + }, + { + "baseId": "20566|23641|23642|23643|23647|23647|23649|23651|23653|23655|23656|23658|23660|39098|39099|45263|45264|45266|45266|45269|45272|45275|45276|45277|45725|51668|51669|51673|51676|51678|51685|51688|51691|51694|51695|51703|51705|51706|51710|51711|51713|51715|51716|51719|51732|51733|51735|51736|51737|51738|51742|51746|51747|51747|51755|51755|51769|51777|51777|51778|51780|51788|51789|51790|51796|51797|51805|51806|51808|51814|51815|51817|51821|51822|51823|51826|51828|51833|51834|51836|51839|51841|51852|51857|51858|51860|51862|51870|51873|51875|51876|51876|51879|51881|51882|51885|51889|51895|51896|51905|51906|51910|51914|51922|51926|51928|51930|51931|51933|51937|51938|51941|51942|51945|51947|51948|51949|51950|51956|51959|51962|51962|51963|51966|51967|51970|51971|51974|51976|51977|51977|51980|51983|51985|75578|75580|142020|142022|142024|142029|165560|165560|171133|171136|171136|171139|171141|171142|171143|171144|171145|171146|171147|172177|174731|174737|174756|174757|174761|174764|174770|174773|174775|174776|174776|174778|174779|174785|175138|175139|175143|175146|175150|175168|175171|175175|175188|175197|175201|175203|179171|179196|179223|179232|179233|179266|179279|179299|179321|179338|179343|179351|179357|179373|179397|186345|186368|186384|186400|186404|186405|189889|193011|212928|212929|213610|214109|214110|214111|214112|214113|214115|214116|214117|214119|214120|222146|248633|248634|248635|260509|314276|320888|326913|326929|326930|326931|326940|326949|327964|327976|327977|362227|371466|372203|372209|374122|384440|390042|398206|398754|404802|415274|418554|419284|424284|430964|430982|434640|461358|461632|461652|461957|461980|462012|504238|508865|508866|512848|512849|512927|513091|526245|564717|613612|615940|617882|620403|625810|625811|679781|791140|791141|791142|818289|868092|868093|868094|868095|868096|868097|868098|868099|868100|868101|868102|868103|868104|868656|868657|868658|919366|919367|948496|966806|974493|980341", + "text": "Familial hypertrophic cardiomyopathy 4" + }, + { + "baseId": "20568|20569|20569|20570|20571|20571|20571|101477|101478|101478|152864|152864|152865|177019|177282|188865|188865|255338|255339|255339|266504|271074|323250|323250|323251|323259|323259|323260|323266|323267|323270|323277|323283|323284|332935|332936|332942|332943|332946|332951|332952|332960|332962|332962|332965|332968|339806|339813|339814|339821|339823|341239|341242|341243|341247|341248|353881|415445|488487|547507|547508|547511|547514|547516|547531|547533|547535|547539|547541|547544|547548|547739|547750|547752|548162|548164|548166|548167|548169|548173|548174|548174|714579|754646|754647|754648|770312|770314|770315|784992|784993|787896|800699|842642|842649|842650|874060|874061|874062|874063|874064|874065|874066|874067|874068|874069|874070|874071|874072|876563|876564|919593", + "text": "Enhanced s-cone syndrome" + }, + { + "baseId": "20569|20571|20571|188865|620527", + "text": "NR2E3-Related Disorders" + }, + { + "baseId": "20569|20571|20572|20573|101477|101478|101478|152864|152865|181279|188865|188865|188868|255339|255339|271074|323250|323259|332962|415445|488487|547507|547508|547511|547514|547516|547531|547533|547535|547539|547541|547544|547548|547739|547750|547752|548162|548164|548166|548167|548169|548173|548174|714579|754648|779806|842650|874065|874066|874073", + "text": "Retinitis pigmentosa 37" + }, + { + "baseId": "20571|101477|177019|177282|188865|255338|255339|271074|323267|332946|332962|415445|547750|623884|726224|726225|754648|770313|776093|797186|799817|842640|842641|842642|874063|874064|957486|957489|957492|979636|979637|979638|979639|979640|979641|979642|979643|979644|979645|979646|979647|979648|979649|979650|979651|979652|979653|979654|979655|979656", + "text": "Goldmann-Favre syndrome" + }, + { + "baseId": "20574|20575", + "text": "Asthma-related traits, susceptibility to, 5" + }, + { + "baseId": "20576|20577|76651|76652|76655|76656|187109|237011|285197|285198|285199|285206|285212|285213|285871|285872|285873|285874|285890|285891|285894|288158|288161|288165|288166|288172|288173|288174|288178|288179|288180|288582|288584|288585|288586|288587|288593|288598|288600|288600|288602|288604|288606|288610|353562|450684|450762|450762|450764|450769|512809|516210|517874|517876|517879|517954|517956|557900|557902|557953|557955|561026|561039|561040|561044|576099|620068|629521|629522|629523|629524|629525|629526|629527|629528|629529|629530|629531|629532|629533|629534|629535|629536|629537|629538|708089|719690|719691|719693|719694|719695|733248|747395|747397|747399|759106|763031|763033|763036|819015|819135|825828|825829|825830|825831|825832|825833|825834|825835|825836|825837|825838|825839|825840|825841|825842|825843|851158|851406|884086|884087|884088|884089|884090|884091|884092|884093|884094|884095|884096|884097|884098|887307|887308|887309|887310|931173|931174|931175|942639|942640|942641|942642|952964|952965|960465|980413", + "text": "Hepatic veno-occlusive disease-immunodeficiency syndrome" + }, + { + "baseId": "20580|181292", + "text": "Periodic paralysis" + }, + { + "baseId": "20580|56917|172391|360851|677212|858248|965299|966322", + "text": "Syncope" + }, + { + "baseId": "20580|24422|33099|45303|51657|52214|52852|56289|56302|56725|56834|78541|178442|178587|178612|178738|178748|178751|186553|188445|188662|189293|189476|196540|198436|224325|224357|224385|224454|224543|360883|513956|679381", + "text": "Ventricular fibrillation" + }, + { + "baseId": "20580|20581|131959|188516|188517|254321|258710|389949|389950|461990|526477|526536|526541|526772|567545|567549|640464|687824|839007", + "text": "Brugada syndrome 6" + }, + { + "baseId": "20580|131959|432260|432261|432262", + "text": "Encephalopathy, neonatal severe, with lactic acidosis and brain abnormalities" + }, + { + "baseId": "20582|20583|20583|20584|54668|54669|54670|186435|193603|227351|319135|333885|413171|415371|527511|641581|652763|840578|957027", + "text": "Deafness, autosomal dominant 3b" + }, + { + "baseId": "20583|20583|20583|20584|20584|20586|54667|54668|54668|54669|54669|54670|54670|54671|54673|175769|186435|186435|193603|193603|269638|319127|319135|319135|319136|319140|319142|319151|327587|327588|327593|327594|327596|327597|327606|327612|327613|333867|333869|333878|333880|333885|333885|333886|333888|335558|335559|335562|335566|335567|335577|335578|415371|527511|641581|652763|656196|738987|840578|870846|870847|870848|870849|870850|870851|870852|870853|870854|870855|870856|870857|870858|870859|957027", + "text": "Hidrotic ectodermal dysplasia syndrome" + }, + { + "baseId": "20583|20583|20584|20585|32039|32039|32040|32040|32041|32041|32042|32042|32043|32043|32044|32045|32046|32048|32049|32049|32052|32053|32053|32053|32055|32055|32056|32062|32062|32063|32064|32066|32068|32068|32071|32072|32074|32075|34237|34239|34240|34241|44941|44942|44943|44943|53882|53883|53884|53887|53888|53891|53892|53895|53896|53899|53900|53902|53903|53903|53904|53904|53905|53906|53907|53907|53909|53910|53911|53912|53914|53915|53916|53916|53918|53918|53919|53920|53921|53922|53923|53924|53925|53927|53928|53929|53930|53930|53931|53932|53933|53934|54668|54669|54670|90208|100288|100290|100292|169009|169010|169011|169013|175762|175904|175905|175906|175909|177744|186432|186435|186853|186854|186855|186856|186857|186858|186859|186860|186861|186862|186863|186864|190031|192365|192366|192367|193603|208014|227135|227136|227213|227350|227350|230434|230437|247434|247435|260039|269143|273253|319120|319122|319135|327572|327575|327578|327579|327582|327583|327586|333862|333863|333864|333885|335544|335547|335548|335549|335550|335552|335553|335557|358128|358129|358130|358131|358132|358133|358134|358135|359996|362175|375519|415371|432239|432240|432241|432242|432244|432245|441576|441582|441583|445122|487388|487602|490937|527511|546771|546777|546778|546781|546783|546785|546787|546792|546794|546920|546930|546932|546940|546941|546944|546952|547082|547084|547088|547090|547096|547102|547105|547109|547112|547296|547302|547303|547307|547319|547327|547328|547329|547331|547338|551725|581737|615784|615817|620467|620469|621385|621386|622693|641581|652763|681835|784536|784538|793458|840578|870831|870832|870833|870834|870835|870836|870837|870838|870839|870840|870841|870842|870843|870844|870845|906208|957027|979357|979358|979359", + "text": "Deafness, autosomal recessive 1A" + }, + { + "baseId": "20583|20583|20584|20585|32039|32040|32041|32042|32043|32049|32053|32055|32062|32068|53903|53904|53907|53916|53918|53930|54668|54669|54670|186435|193603|227351|319135|333885|415371|527511|641581|652763|840578|904218|957027", + "text": "Deafness, autosomal recessive 1b" + }, + { + "baseId": "20583|26716|26717|26718|26719|26720|26721|26722|26723|49893|49894|52519|52521|52522|166083|176453|237626|339618|349115|352457|352458|352965|389256|404600|415371|551802|590644|615835|800323|800324|903250|903251|903252|903253|903254", + "text": "Deafness, X-linked 2" + }, + { + "baseId": "20585|20587|32043", + "text": "Deafness, digenic, GJB2/GJB6" + }, + { + "baseId": "20588|20589|20590|20591|20592|20593|20594|266325|271393|320090|320091|320093|320094|320095|320099|320101|320105|320107|320109|320110|320113|320116|320117|320118|320119|320123|328635|328637|328638|328640|328641|328642|328646|328649|328653|328666|328669|328680|328685|328686|328704|328705|335195|335204|335219|335225|335233|335234|335236|335238|335239|335247|335257|335262|335281|335282|335285|335298|335302|335306|335308|335310|335313|335326|337079|337080|337083|337087|337090|337096|337099|337101|337103|337110|337113|337119|337125|337147|337148|337155|337158|337163|337168|337169|337182|586697|725530|871570|871571|871572|871573|871574|871575|871576|871577|871578|871579|871580|871581|871582|871583|871584|871585|871586|871587|871588|871589|871590|871591|871592|871593|871594|871595|871596|871597|871598|871599|871600|871601|871602|871603|871604|871605|871606|871607|871608|872348|872349", + "text": "Autosomal recessive omodysplasia" + }, + { + "baseId": "20595|135828|135829|150252|190425|194385|194918|195660|195661|239020|239021|248759|248760|266968|287435|287436|287438|287442|287444|287445|287447|287451|287452|287456|288222|288228|288229|288231|288251|288252|290891|290893|290902|290905|290923|290925|290926|291159|291167|291168|353577|353578|361612|393118|451472|451477|451727|451934|451940|451941|513527|513609|518646|518648|558688|558690|559164|559189|559190|559191|560979|560983|560985|560987|560990|562095|614253|630596|630597|630598|630599|630600|630601|630602|630603|630604|653855|683518|683519|683520|686268|689720|719987|816446|819277|827077|827078|827079|827080|827081|827082|827083|827084|827085|885587|885588|885589|885590|885591|885592|885593|885594|885595|885596|885597|885598|885599|885600|885601|887409|887410|922937|922938|922939|922940|931607|931608|931609|931610|931611|940725|943138|943139|943140|943141|943142|943143|953246|953247|953248", + "text": "Salt and pepper developmental regression syndrome" + }, + { + "baseId": "20597|20598|20599|20600|20601|20602|20603|171168|171169|171170|205209|222387|222388|222389|222390|222391|241876|241877|241878|241879|241880|241881|241882|241883|241884|241885|241886|241887|241888|255063|255064|255065|321373|321378|321381|321383|321389|321390|321391|321393|321394|321395|321400|321402|321407|330601|330612|330613|330615|330619|330621|330629|330633|330636|337218|337219|337223|337227|337229|337237|337238|337240|337242|337243|337245|337248|337250|337252|337255|337260|337269|339151|339162|339163|339171|339177|339184|339187|339189|339193|339196|339201|339215|339216|339225|399719|399721|399724|399726|399728|399737|399738|399908|399910|399911|399912|399915|399918|399919|399920|399922|400258|400260|400262|400266|400267|400267|400271|400274|400275|400277|400280|400293|400295|400487|400495|400497|400515|400520|400525|400526|400533|400534|409151|409152|463477|463486|463493|463497|464080|464082|464087|464088|464094|464096|464358|464361|464364|464369|464370|464386|464387|464481|464486|464489|464491|464493|464494|464497|485662|528274|528283|528287|528289|528295|528299|528300|528360|528363|528367|528370|528371|528372|528713|528717|528719|528725|528729|528734|528748|528752|528758|528759|528810|528812|528813|528819|528825|528827|528828|528838|528842|566612|566616|566618|566625|566628|568268|568271|568272|568274|568279|568281|569018|569019|569021|569022|569024|572899|572900|572911|572913|572914|572915|572919|572924|642686|642687|642688|642689|642690|642691|642692|642693|642694|642695|642696|642697|642698|642699|642700|642701|642702|642703|642704|642705|642706|642707|642708|642709|642710|642711|642712|642713|642714|642715|642716|642717|642718|642719|642720|642721|642722|642723|642724|642725|642726|642727|642728|652971|652974|684522|684523|684524|684525|684526|688357|688358|688359|688361|688362|688363|688364|688366|688369|693599|702991|725811|725813|725814|739339|776305|784789|841726|841727|841728|841729|841730|841731|841732|841733|841734|841735|841736|841737|841738|841739|841740|841741|841742|841743|841744|841745|841746|841747|841748|841749|841750|841751|841752|841753|841754|841755|841756|841757|841758|841759|841760|841761|841762|841763|841764|841765|841766|841767|841768|841769|841770|841771|841772|841773|841774|841775|872632|872633|872634|872635|872636|872637|872638|872639|872640|872641|872642|872643|872644|872645|872646|872647|872648|872649|872650|872651|872652|872653|872654|872655|872656|872657|872658|872659|872660|872661|872662|872663|872664|872665|872666|872667|872668|872669|872670|872671|872672|872673|876449|876450|927159|927160|927161|927162|927163|927164|927165|927166|927167|927168|927169|927170|927171|927172|927173|927174|936711|936712|936713|936714|936715|936716|936717|936718|936719|936720|936721|936722|936723|936724|936725|936726|936727|936728|936729|940314|940315|948652|948653|948654|948655|948656|948657|948658|948659|948660|948661|948662|948663|948664|948665|948666|948667|948668|957299|957300|957301|957302|957303|957304", + "text": "Hereditary nonpolyposis colorectal cancer type 7" + }, + { + "baseId": "20599|32117|32118|32119|32120|32123|32124|32126|32127|32128|32129|32130|32131|32133|32135|32136|32137|32138|32138|32140|32141|32144|32145|38609|38610|38612|45201|45202|45202|45203|45204|45205|45207|45208|45209|45210|45212|45215|45218|45219|45220|45221|50071|50071|50072|50072|50073|50074|50075|50076|50077|50078|50079|51666|79740|79742|95060|95061|95062|95063|95064|95067|95074|95078|95079|95079|95088|95117|95127|95127|95130|95162|95164|95170|95179|95179|95186|95211|95218|95218|95219|95225|95225|95227|95229|95257|95265|95267|95286|95324|95331|95357|95362|95369|95377|95380|95381|95404|95405|95406|95406|95427|95455|95466|95475|95481|95484|95485|95487|95488|95488|95490|95506|95516|95524|95527|95541|95552|95556|95556|95574|95575|95578|95586|95592|95600|95601|95606|95606|95614|95622|95622|95625|95650|95650|95657|95658|95671|95697|95703|95717|95731|95734|95755|95759|95760|95765|95767|95777|95780|95780|95785|95792|95793|95805|95809|95821|95829|95848|95855|95856|95865|95866|95871|95884|95887|95892|95898|95916|95916|95919|95926|95926|95927|95930|133066|133068|133069|133070|133071|133072|133072|133073|133074|133076|133076|136506|138395|138396|138397|139300|139556|139557|139558|139559|139565|141933|150473|150473|151156|151605|151990|152372|152378|152604|152694|180128|180138|180140|180142|180145|180148|180149|180152|180153|181203|181204|182215|182223|182224|182226|182235|182236|182239|182251|182252|182256|182257|182257|182265|182268|182276|182278|182281|182281|182282|182287|182288|182292|186016|186017|190024|212297|212305|212322|212324|212327|214628|221383|221389|221394|221395|221396|221397|221398|221405|231616|231617|232906|232916|232918|232919|232933|232954|232970|232979|239144|239148|239149|239158|239159|239160|239176|239185|290136|290137|294018|294022|294543|294552|294554|358735|358736|358737|358738|358739|358740|358741|358742|358743|358744|358745|358746|358747|358748|368417|368440|368462|393482|393502|393512|393843|393915|406198|406206|406222|406233|406236|427213|432572|443419|443422|452376|452387|452453|473370|473413|473493|473568|473649|473667|480464|483541|483578|537752|537753|539233|539234|558896|562700|575698|575699|575700|575701|575702|575707|576258|789083|790382|790383|790384|790385|790386|790387|790388|790389|790390|799033|888749|888750|903520|961842|967148", + "text": "Lynch syndrome II" + }, + { + "baseId": "20604|20605|20606|76616|76617|76618|76619|76620|101479|101480|101481|105678|105679|105680|105683|105685|105686|105687|105689|105690|105694|105695|105697|106462|177290|177472|193623|193625|193626|195369|195369|256338|275237|329401|329410|329412|329418|329421|329426|329430|329440|329442|329444|329445|329448|329449|329452|339690|339706|339707|339710|339715|339716|339722|339724|339730|339737|339740|339742|345426|345432|345436|345437|345443|345449|345456|345458|345460|345462|345465|346798|346799|346800|346801|346803|346806|346812|346815|346816|346818|346819|413455|569528|569530|578348|578349|626259|694163|694164|704291|704293|727351|727352|771727|797589|800611|845909|845910|845911|845912|845913|845914|845915|845916|845917|845918|845919|845920|845921|852906|860427|878167|878168|878169|878170|878171|878172|878173|878174|878175|878176|878177|878178|878179|878180|878181|878182|878183|878184|878185|878186|878187|878188|878189|904952|904953|904954|904955|904956|904957|904958|904959|904960|904961|904962|904963|920605|940427|950147|950148|950149|950150|950151|950152|950153|958250|960892", + "text": "Leber congenital amaurosis 4" + }, + { + "baseId": "20604|620600|620601", + "text": "AIPL1-Related Disorders" + }, + { + "baseId": "20607", + "text": "Juvenile retinitis pigmentosa, AIPL1-related" + }, + { + "baseId": "20607", + "text": "CONE-ROD DYSTROPHY, AIPL1-RELATED" + }, + { + "baseId": "20608|20609|20610|20611|20612|20613|20615|20616|20616|20617|20617|20618|20618|20619|20619|204427|253014|253015|253016|263045|263045|270799|307588|307605|307633|312643|312646|312652|312662|312727|312731|360897|360897|432057|432058|432059|432060|432061|432062|432063|432064|432064|432065|432066|432067|432068|432069|432070|432071|432071|432072|432073|432073|432074|432075|432076|432077|432078|432079|432080|432081|432082|432083|432084|432085|432086|432087|457129|513582|523431|561897|561898|562335|562337|564540|564578|567295|590566|590567|590568|611976|623186|636540|636541|636542|636543|651910|679759|682809|700352|700353|700356|722803|722804|736399|736400|782983|819934|834034|834035|834036|834037|834038|834039|834040|834041|919135|924980|924981|924982|934063|934064|934065|955274|959873|961031|969545|970060", + "text": "Trichorhinophalangeal dysplasia type I" + }, + { + "baseId": "20614|20616|20616|20617|20617|20618|20619|253014|253015|263045|270799|307588|307605|307633|312643|312646|312652|312662|312727|312731|360897|432064|432071|432073|457129|523431|561897|561898|562335|562337|564540|564578|567295|636540|636541|636542|636543|651910|700352|700353|700356|722803|722804|736399|736400|782983|819934|834034|834035|834036|834037|834038|834039|834040|834041|924980|924981|924982|934063|934064|934065|955274|959873", + "text": "Trichorhinophalangeal syndrome, type III" + }, + { + "baseId": "20620|20621|20622|20624|20625|20626|20627|20628|288750|288755|288757|288758|288776|288777|289500|289512|289525|289528|289529|289531|289534|289547|289549|289550|289551|289556|289557|289559|289562|289572|292536|292537|292551|292552|292557|292560|292562|292564|292567|292569|292570|292573|292740|292741|292744|292748|292749|359526|364253|887975|887976|887977|887978|887979|887980|887981|887982|887983|887984|887985|887986|887987|887988|887989|887990|887991|887992|887993|887994|887995|887996|887997|887998|887999|888000|888001|891566|891567|891568", + "text": "Familial benign pemphigus" + }, + { + "baseId": "20630|20631|20632|20637|20639|20642|132422|133499|133499|133501|133503|133507|133511|133513|133516|133520|133523|133527|133529|133532|133532|133546|133549|137627|150646|150652|150673|151095|151570|151691|151755|151936|152066|152162|152193|152247|152670|181100|181106|181116|181122|213482|213483|236606|236634|404360|410931|410948|410967|432970|480377", + "text": "Li-Fraumeni syndrome 2" + }, + { + "baseId": "20630|20641", + "text": "Cancer of multiple types, susceptibility to" + }, + { + "baseId": "20630|20640|20641|27286|28045|133499|133528|152066|480186|485382|849160", + "text": "Prostate cancer, susceptibility to" + }, + { + "baseId": "20630|20642|133499|133517|133521|133525|133532|151497|151580|152238|185633|213475", + "text": "Breast and colorectal cancer, susceptibility to" + }, + { + "baseId": "20630", + "text": "Gastrointestinal carcinoma" + }, + { + "baseId": "20630|27405|28691|28692|28939|29011|30972|30973|32619|32621|32623|32626|32627|32628|48304|53980|83949|133277|139098|151476|185394|206650|213392|213402|222738|232035|236461|236477|263939|359197|362753|362774|362826|362895|362896|363112|363121|363269|363273|363313|363360|363438|363439|363440|363441|363442|363461|363462|363463|363503|363504|363505|363506|363507|363508|363529|363530|363534|363535|363545|363546|363547|363548|363569|363570|363571|420661", + "text": "Adrenocortical carcinoma" + }, + { + "baseId": "20630|21681", + "text": "Colon cancer, susceptibility to" + }, + { + "baseId": "20631|20637|20642|132422|133499|133510|133511|133513|133517|133525|133527|133530|133532|133534|133538|137627|140445|140450|150526|151051|151853|151923|152075|152615|152670|181095|185589|185619|185630|222878|236586|236589|236596|236681|337709|337711|351277|352332|404384|539411|891034|891035|891036", + "text": "CHEK2-Related Cancer Susceptibility" + }, + { + "baseId": "20631|27386|27387|27388|27389|27390|27391|27392|27393|27394|27395|27397|27398|27403|27404|27405|27406|27407|27408|27409|27411|27413|27414|27415|27416|27418|27421|27422|27423|48019|50162|52756|52757|52758|52759|52760|52762|52763|52764|83231|91599|91600|91601|99230|106675|133261|133262|133263|133265|133266|133267|133268|133269|133271|133272|133273|133275|133276|133277|133278|133280|133281|133282|133283|133284|133499|136456|136502|136721|136722|137023|139097|139098|139099|139660|139661|139662|150496|150500|150515|150547|150635|150657|150725|150770|150812|150815|150816|150828|150855|150873|150942|151016|151046|151073|151091|151139|151197|151261|151280|151311|151476|151478|151495|151607|151677|151681|151717|151726|151764|151819|151848|151858|151872|151897|151920|151987|152034|152038|152046|152100|152145|152250|152266|152276|152338|152371|152405|152416|152428|152480|152560|152568|152630|171191|171613|171614|171615|171616|176503|176640|176641|180986|180988|180989|180990|180994|180995|180999|181000|181001|181005|181006|181010|181011|181014|181015|181017|181018|181019|181023|181024|181025|181026|181027|181029|181034|181220|185331|185333|185334|185335|185336|185338|185339|185340|185341|185343|185344|185345|185348|185350|185353|185358|185360|185361|185363|185365|185366|185367|185368|185369|185371|185373|185374|185376|185377|185378|185379|185380|185385|185387|185389|185390|185391|185392|185393|185394|185395|185396|185397|185398|185400|185401|185402|185403|185404|185405|185406|185409|185410|185411|185412|185413|185414|185415|185416|185417|185418|185420|185421|185424|185425|185426|185582|186272|186273|186274|186275|186276|186277|195257|213384|213385|213386|213387|213388|213389|213390|213391|213392|213393|213394|213395|213396|213397|213398|213399|213400|213401|213402|213403|213405|213406|213407|222733|222734|222735|222737|222738|222739|222740|222742|222743|222744|232035|236436|236438|236441|236442|236443|236444|236445|236446|236448|236450|236451|236452|236454|236457|236458|236459|236461|236465|236467|236468|236469|236471|236472|236473|236476|236480|236481|236482|236484|236486|236488|236490|236491|236495|236497|236499|236501|236504|236505|236506|236507|236508|236509|236511|236512|236513|236517|236519|236521|236522|242581|242975|242976|242977|242978|242979|242980|242981|242982|242983|242984|242985|242986|242987|242988|242989|242990|242991|242992|242993|242994|245067|245069|245072|245073|245074|245075|245076|245078|245079|248532|248538|256463|256465|256466|256467|260192|260193|264706|330242|330248|330250|330265|340456|346158|346161|346166|346172|346173|347486|347488|347489|347494|353462|353464|353465|358968|360335|360472|362895|362896|363438|363440|363441|363442|363443|363447|363448|363449|363451|363452|363453|363454|363455|363457|363460|363464|363465|363466|363469|363470|363473|363478|363479|363482|363483|363484|363485|363486|363487|363488|363491|363494|363497|363499|363501|363502|363503|363504|363505|363507|363508|363509|363511|363512|363514|363517|363518|363519|363520|363521|363523|363524|363525|363526|363528|363531|363532|363533|363534|363535|363536|363537|363538|363540|363541|363542|363543|363544|363545|363546|363547|363549|363550|363552|363554|363555|363556|363557|363558|363559|363560|363564|363565|363566|363570|363571|363572|363573|375717|375721|375726|376607|376680|376684|378800|401526|402529|402530|402533|402537|402538|402539|402545|402550|402552|402554|402555|402557|402562|402563|402565|402566|402568|402569|402571|402574|402579|402580|402581|402583|402592|402593|402594|402597|402599|402601|402603|402604|402607|402994|403000|403002|403007|403011|403018|403028|403030|403034|403035|403043|403046|403047|403057|403141|403144|403145|403148|403151|403154|403155|403162|403166|410252|410253|410256|410257|410258|410260|410262|410263|410265|410266|410267|410268|410270|410273|410274|410276|410278|410279|410283|410285|420634|420638|420639|420641|420643|420645|420646|420647|420650|420651|420656|420659|420662|420663|420665|420667|420668|424193|430014|430018|432338|432941|432943|438036|445901|466292|467483|467487|467489|467491|467492|467495|467506|467508|467511|467514|467516|467518|467520|467533|467541|467542|467544|467547|467548|467552|467553|467555|467565|467568|468341|468345|468356|468368|468370|468375|468378|468379|468384|468389|468390|468396|468397|468399|468405|468406|468412|468414|468416|468853|468855|468858|468863|468864|468874|468877|468879|468887|469099|469100|469106|469110|469113|469115|469117|469119|469122|469137|469144|469145|469156|469158|469161|469166|469170|469175|479208|479232|479245|479248|479257|479269|479271|479273|479274|479292|479298|479316|479318|479319|479327|479328|479329|479333|479344|479349|479357|479368|479378|479960|479964|480010|480024|480030|480041|480057|480065|480072|480079|480091|480121|483047|483061|483078|483091|485326|485363|485522|485673|485679|487956|488018|497494|506427|506428|506749|507160|530546|530672|530676|530848|531793|531796|531799|531804|531806|531807|531813|531817|531819|531826|531829|531833|531837|531842|531847|531849|531859|531861|531864|531865|531868|531870|531922|531923|531927|531932|531935|531941|531943|531949|531953|531957|532177|532181|532188|532190|532194|532201|532202|532211|532213|532218|532223|532225|532229|532231|568681|569759|569763|569764|569766|569770|569775|569777|569780|569782|569785|569791|569792|571608|571610|571613|571620|571625|571627|571630|571633|571660|571669|571671|572275|572277|572282|572288|572293|572296|572297|572304|572308|572315|572320|572328|572332|572334|572337|572340|572341|572343|574620|574621|574622|574624|574626|574629|574631|574633|574635|574637|574639|574641|576029|576030|576031|576032|576033|611336|618826|618834|618838|619765|621605|622038|622574|622586|622601|622609|622617|622624|622628|622631|622662|622665|623210|623217|646723|646724|646725|646726|646727|646728|646729|646730|646731|646732|646733|646734|646735|646736|646737|646738|646739|646740|646741|646742|646743|646744|646745|646746|646747|646748|646749|646750|646751|646752|646753|646754|646755|646756|646757|646758|646759|646760|646761|646762|646763|646764|646765|646766|646767|646768|646769|646770|646771|646772|646773|646774|646775|646776|646777|646778|646779|646780|646781|646782|646783|646784|646785|646786|646787|652679|652849|652853|652855|652871|653032|653033|653036|653040|653042|653177|653365|653386|653388|653389|653521|653524|653531|694209|756155|760596|771856|776405|776422|789639|792574|800073|814447|814452|814453|814457|814468|814482|814487|814503|814509|814515|814516|814518|814521|814525|821159|821160|821161|821162|821163|821164|821165|821166|821167|821168|821169|821170|846248|846249|846250|846251|846252|846253|846254|846255|846256|846257|846258|846259|846260|846261|846262|846263|846264|846265|846266|846267|846268|846269|846270|846271|846272|846273|846274|846275|846276|846277|846278|846279|846280|846281|846282|846283|846284|846285|846286|846287|846288|846289|846290|846291|846292|846293|846294|846295|846296|846297|846298|846299|846300|846301|846302|846303|846304|846305|852258|852794|852798|852915|852919|852921|858458|928547|928548|928549|928550|928551|928552|928553|928554|928555|928556|928557|928558|928559|928560|928561|938233|938234|938235|938236|938237|938238|938239|938240|938241|938242|938243|938244|940440|941200|941201|941202|950302|950303|950304|950305|950306|950307|950308|950309|950310|950311|950312|950313|950314|950315|950316|950317|950318|950319|958326|958327|958328|958329|958330|958331|958332|958333|960189|960247|960248|964740|964741|967157", + "text": "Li-Fraumeni syndrome" + }, + { + "baseId": "20633|20634|20637|20639|20642|26767|27398|27419|28126|29022|132342|132422|133499|133501|133503|133507|133511|133513|133516|133520|133523|133529|133532|133549|137627|137844|150646|150652|150673|151095|151570|151691|151755|151936|152066|152193|152247|181100|181106|181116|181122|213483|236606|236634|404360|410931|410948|410967|432384|432970|462915|463279|463892|480377|568568", + "text": "Osteosarcoma" + }, + { + "baseId": "20635|20636|20637|20638|20639|21959|22608|22609|22610|22611|22612|22869|22870|24848|24856|24870|24872|24873|24874|24875|33206", + "text": "Prostate cancer, somatic" + }, + { + "baseId": "20637|20639|20642|24573|24574|24575|24845|28043|28696|29396|29397|32621|46010|46540|52763|65983|66613|67228|69422|97252|103607|132422|133311|133499|133501|133503|133507|133511|133513|133516|133516|133520|133523|133529|133532|133538|133549|137627|138003|150646|150652|150673|150883|151095|151570|151691|151755|151936|152066|152193|152247|152509|171291|171292|171293|171294|171295|171296|171297|171298|171299|171300|171301|171302|171303|171304|171305|171306|171307|171308|171309|171310|171311|171312|171313|171314|171315|171316|171317|171318|171319|171320|171321|171322|171323|171324|171325|171326|171327|171328|171329|171330|171331|171332|171333|171334|171335|171336|171337|171338|171339|171340|171341|171342|171343|171344|171345|171346|171347|171348|171349|171350|171351|171352|171353|171354|171355|171356|171357|171358|171359|171360|171361|171362|171363|171364|171365|171366|171367|171368|171369|171370|171371|171372|171373|171374|171375|171376|171377|171378|171379|171380|171381|171382|171383|171384|171385|171386|171387|171388|171389|171390|171391|171392|171393|171394|171395|171396|171397|171398|171399|171400|171401|171402|171403|171404|171405|171406|171407|171408|171409|171410|171411|171412|171413|171414|171415|171416|171417|171418|171419|171420|171421|171422|171423|171424|171425|171426|171427|171428|171429|171430|171431|171432|171433|171434|171435|171436|171437|171438|171439|171440|171441|171442|171443|171444|171445|171446|171447|171448|171449|171450|171451|171452|171453|171454|171455|171456|171457|171458|171459|171460|171461|171462|171463|171464|171465|171466|171467|171468|171469|171470|171471|171472|171473|171474|171475|171476|171477|171478|171479|171480|171481|171482|171483|171484|171485|171486|171487|171488|171489|171490|171491|171492|171493|171494|171495|171496|171497|171498|171499|171500|171501|171502|171503|171504|171505|171506|171507|171508|171509|171510|171511|171512|171513|171514|171515|171516|171517|171518|171519|171520|171521|171522|171523|171524|171525|171526|171527|171528|171529|171530|171531|171532|171533|171534|171535|171536|171537|171538|171539|171540|171541|171542|171543|171544|171545|171546|171547|171548|171549|171550|171551|171552|171553|171554|171555|171556|171557|171558|171559|171560|171561|171562|171563|171564|171565|171566|171567|171568|171569|171570|171571|171572|171573|171574|171575|171576|171577|171578|171579|171580|171581|171582|171583|171584|171585|171586|171587|171588|171589|171590|171591|171592|171593|171594|171595|171596|171597|171598|171599|171600|171601|171602|171603|171604|171605|171606|171607|171608|171609|171610|171611|171612|171613|171614|171615|171616|171617|171618|171619|171620|171621|171622|171623|171624|171625|171626|171627|171628|171629|171630|171631|171632|171633|171634|171635|171636|171637|171638|171639|171640|171641|171642|171643|171644|171645|171646|171647|171648|171649|171650|171651|171652|171653|171654|171655|171656|171657|171658|171659|171660|171661|171662|171663|171664|171665|171666|171667|171668|171669|171670|171671|171672|171673|171674|171675|171676|171677|171678|171679|171680|171681|171682|171683|171684|171685|171686|171687|171688|171689|171690|171691|171692|171693|171694|171695|172297|181100|181106|181116|181122|188264|213483|214847|214848|214849|214850|214851|214852|214853|214854|214855|214856|214857|214858|214859|214860|214861|214862|214863|214864|214865|214866|220985|220986|220987|220988|220989|220990|220991|220992|220993|220994|220995|220996|220997|220998|220999|221000|221001|221002|221003|221004|221005|221006|221007|221008|221009|221010|221011|221012|221013|221014|221015|221016|221017|221018|221019|221020|221021|221022|221023|221024|221025|221026|221027|221028|221029|221030|221031|221032|221033|221034|221035|221036|221037|221038|221039|221040|221041|236606|236634|363424|363427|390492|404360|410931|410948|410967|432970|480377|681927|681928|681929|681930|681931|681932|681933|681934|681935|681936|681937|681938|681939|681940|681941|681942|681943|681944|681945|681946|681947|681948|681949|681950|681951|681952|681953|681954|681955|681956|681957|681958|681959|681960|681961|681962|681963|681964|681965|681966|681967|681968|681969|681970|681971|681972|681973|681974|681975|681976|681977|681978|681979|681980|681981|681982|681983|681984|681985|681986|681987|681988|681989|681990|681991|681992|681993|681994|681995|681996|681997|681998|681999|682000|682001|682002|682003|682004|682005|682006|682007|682008|682009|682010|682011|682012|682013|682014|682015|682016|682017|682018|682019|682020|682021|682022|682023|682024|682025|682026|682027|682028|682029|682030|682031|682032|682033|682034|682035|682036|682037|682038|682039|682040|682041|682042|682043|682044|682045|682046|682047|682048|682049|682050|682051|682052|682053|682054|682055|682056|682057|682058|682059|682060|682061|682062|682063|682064|682065|682066|682067|682068|682069|682070|682071|682072|682073|682074|682075|682076|682077|682078|682079|682080|682081|682082|682083|682084|790486|920054|920457", + "text": "Malignant tumor of prostate" + }, + { + "baseId": "20647|20648|188992|188992|205143|238018|359518|389198|413665|431671|551532|622344|790453|790454|790455|790456|790457", + "text": "Retinitis pigmentosa 41" + }, + { + "baseId": "20649|101228|101229|101230|101233|106455|177982|188992|188992|190494|191235|238018|251364|251366|251367|251368|251369|271311|273551|273853|292683|292686|292688|292691|292699|292700|292702|292704|292711|294050|294067|294069|294070|294071|294072|294073|294074|294076|294078|294079|294080|294081|294082|297480|297481|297486|297488|297491|297493|297494|297497|297508|297519|297520|297521|297522|297535|297539|297546|297553|297554|297555|297557|297564|297565|297569|297593|297594|297616|297620|297621|367970|413665|431669|624036|672055|709217|720819|764376|795555|799346|828937|828938|890363|890364|890365|890366|890367|890368|890369|890370|890371|890372|890373|890374|890375|890376|890377|890378|890379|890380|890381|890382|890383|890384|890385|890386|890387|891764|891765|891766|891767|891768|920468", + "text": "Stargardt disease 4" + }, + { + "baseId": "20649|101228|101229|101230|101233|106455|177982|188992|188992|190494|191235|238018|251364|251366|251367|251368|251369|271311|273551|273853|292683|292686|292688|292691|292699|292700|292702|292704|292711|294050|294067|294069|294070|294071|294072|294073|294074|294076|294078|294079|294080|294081|294082|297480|297481|297486|297488|297491|297493|297494|297497|297508|297519|297520|297521|297522|297535|297539|297546|297553|297554|297555|297557|297564|297565|297569|297593|297594|297616|297620|297621|367970|413665|431669|624036|672055|709217|720819|764376|795555|828937|828938|890363|890364|890365|890366|890367|890368|890369|890370|890371|890372|890373|890374|890375|890376|890377|890378|890379|890380|890381|890382|890383|890384|890385|890386|890387|891764|891765|891766|891767|891768", + "text": "Bull's eye macular dystrophy" + }, + { + "baseId": "20649|101228|101229|101230|101233|106455|177982|188992|188992|190494|191235|238018|247774|247775|251364|251366|251367|251368|251369|271311|273551|273853|292683|292686|292688|292691|292699|292700|292702|292704|292711|294050|294067|294069|294070|294071|294072|294073|294074|294076|294078|294079|294080|294081|294082|297480|297481|297486|297488|297491|297493|297494|297497|297508|297519|297520|297521|297522|297535|297539|297546|297553|297554|297555|297557|297564|297565|297569|297593|297594|297616|297620|297621|359518|367970|413665|431669|551535|612177|624036|672055|709217|720819|764376|790457|795555|828937|828938|890363|890364|890365|890366|890367|890368|890369|890370|890371|890372|890373|890374|890375|890376|890377|890378|890379|890380|890381|890382|890383|890384|890385|890386|890387|891764|891765|891766|891767|891768|918885|918886", + "text": "Cone-rod dystrophy 12" + }, + { + "baseId": "20650|20651|20652|194449|227506|247519|247520|247521|266498|269503|361467|368113|368405|368578|369816|369819|576114|633792|633793|661121|672062|709843|735031|749438|782249|830691|966609", + "text": "Ehlers-Danlos syndrome progeroid type" + }, + { + "baseId": "20652|39530|189008|512850|526327|526510|538425|564770|565897|640199|701843|712963|724533|738076|738079|738080|791146|838638|935636|935637|966612|966613", + "text": "Multiple joint dislocations, short stature, craniofacial dysmorphism, and congenital heart defects" + }, + { + "baseId": "20652|620945", + "text": "Lethal skeletal dysplasia" + }, + { + "baseId": "20653|512903|538985", + "text": "Spinocerebellar ataxia type 12" + }, + { + "baseId": "20654|20654|20660|34345|34345|71190|71191|71192|71193|71194|71195|71196|71197|71198|71199|81406|106600|135763|177111|178074|189016|189016|195713|199786|236898|301018|301020|301022|301028|301029|301030|301031|301037|303989|303999|304000|304001|304002|308691|308696|308697|308703|308704|308706|308707|308712|308715|308717|308724|308726|308730|308749|308751|308763|308768|308783|308784|357500|357501|357502|357503|357504|357505|357506|357507|357508|357509|357510|357511|357512|357513|357514|357515|424602|433918|433918|521556|543963|543966|543969|543972|544241|544291|544293|544304|544305|544306|544309|544313|544314|544315|544317|544318|544319|544322|544326|549612|549613|563689|635138|651595|710598|710599|722131|735766|735767|744145|750215|765816|765817|777755|782641|795894|819747|819748|832347|832348|832349|858695|896829|896830|896831|896832|896833|896834|896835|896836|896837|896838|896839|896840|896841|896842|896843|896844|933455|940853|940854|940855|945172|945173|954879|961607|978347|978348|978349|978350|978351|978352|978353", + "text": "Salla disease" + }, + { + "baseId": "20654|20654|20655|20656|20657|20658|20659|20660|34345|34345|106600|135763|189016|189016|195713|199786|236898|301018|301020|301022|301028|301029|301030|301031|301037|303989|303999|304001|304002|308691|308696|308703|308704|308706|308707|308712|308715|308717|308724|308726|308730|308749|308751|308763|308768|308783|433918|433918|549612|549613|710598|722131|777755|795894|858695|896829|896830|896831|896832|896833|896834|896835|896836|896837|896838|896839|896840|896841|896842|896843|896844|961607", + "text": "Sialic acid storage disease, severe infantile type" + }, + { + "baseId": "20663|20664|20665|20666|40213|40215|45765|47518|47519|47521|241829|320390|320391|320394|320395|320398|329051|329057|329062|329069|329079|335686|335692|335694|335700|335702|337516|337521|337528|337529|337537|337542|337545|404815|642324|841346|841348|871750|871751|871752|871753|871754|871755|871756|965227|980474", + "text": "Dyskeratosis congenita, autosomal dominant, 3" + }, + { + "baseId": "20663|20665|20666|22358|22359|22360|22361|22362|22364|22365|27774|39221|47518|47519|47520|47521|47522|47523|47524|47525|47526|47527|47529|47530|47531|47706|47709|47711|47712|47713|47714|47716|47717|47718|47724|47725|47732|47885|47886|47888|47891|47892|47894|47898|47899|47901|47902|47903|47905|47906|47907|49399|239114|239115|239116|393355|393357|393580|393582|428162|428163|430376|430379|430380|430383|451923|451925|451930|451935|451942|451943|452134|452391|518964|518966|518969|518976|519133|519135|519140|519142|519143|519147|533714|533717|558834|559369|559371|559373|559375|559377|561247|561257|562555|562558|562559|571397|610682|612141|624259|631030|631031|631032|631033|631034|631035|631036|631037|631038|631039|631040|631041|631042|631043|631044|631045|648808|648822|648841|728803|728806|742535|742543|742545|742547|742548|745443|757675|757680|757681|760966|773207|773248|786442|786452|786461|819350|819351|819352|827662|827663|827664|827665|827666|827667|827668|827669|827670|827671|827672|827673|827674|827675|827676|827677|827678|827679|827680|827681|827682|827683|905005|905006|923087|923088|923089|923090|923091|923092|923093|923094|931821|931822|931823|931824|931825|931826|931827|931828|931829|931830|931831|943399|943400|943401|943402|943403|943404|943405|953382|953383|953384|953385|953386|953387|961227|961228", + "text": "Dyskeratosis congenita, autosomal dominant 1" + }, + { + "baseId": "20664|40214|47518|47519|47521|241829|320390|320391|320394|320395|320398|329051|329057|329062|329067|329069|329079|329081|335686|335687|335692|335694|335700|335702|337516|337517|337521|337528|337529|337537|337542|337545|404815|642324|841346|841348|871750|871751|871752|871753|871754|871755|871756|980474", + "text": "Revesz syndrome" + }, + { + "baseId": "20666|26622|26626|26630|39952|39953|39955|39956|39957|47518|47519|47521|47544|47555|48734|51186|51187|51188|51189|76347|134307|134308|134309|134310|178827|178828|207165|208425|208426|208427|208428|208429|208708|208981|213931|214164|239792|239793|239794|239795|241829|243015|243016|243017|243018|243019|243020|243783|256553|264535|297146|299105|300507|320391|320395|320398|329051|329057|329062|330609|330617|330638|330641|330648|330649|330653|330654|330667|330670|330676|330682|330683|330685|330686|330688|330691|330693|330695|330701|330709|330710|330715|330733|335686|335692|340872|340878|340879|340880|340884|340887|340895|340902|340907|340908|340910|340913|340918|340923|340925|340939|340940|340942|340944|340946|340949|340952|340953|340957|346455|346468|346469|346478|346479|346480|346483|346488|346492|346493|346495|346501|346504|346508|346512|346513|346515|346517|346518|346524|346525|346526|346529|346532|346534|346535|346541|347807|347812|347815|347816|347818|347819|347820|347821|347824|347827|347833|347834|347835|347840|347841|347843|347845|347846|347848|347849|347852|347853|347854|347857|347858|364027|375806|390347|390350|390399|390459|390460|390482|394855|394971|399788|400201|400357|400362|402608|402638|402647|403098|403099|403203|404507|404508|411206|428338|428339|428406|429551|430031|430032|430034|430039|430041|430375|430381|430382|430389|430395|430396|430404|430408|445923|446303|455707|463198|464025|467811|467819|467835|468747|469174|469179|469183|469187|469190|469198|469210|469462|469542|469544|469548|469555|469564|469568|469574|470505|470512|470531|470533|470629|470632|471019|471026|471421|471424|471486|471490|471496|471840|472108|472109|488060|496794|521453|521610|528120|528137|528140|528619|528623|532097|532103|532106|532110|532113|532115|532116|532123|532125|532128|532134|532196|532200|532204|532206|532207|532209|532462|532466|532467|532469|532478|532484|533657|533704|533706|533707|534264|534266|534668|534764|535116|559966|560283|560388|560390|565057|566403|566405|567979|567988|568850|568851|569998|570001|570014|570015|570019|570020|570022|571806|571808|571810|571812|571814|572467|572476|572478|572479|572480|572481|572489|572773|573630|573638|573656|573664|573737|573742|573747|574375|574695|574696|574697|574698|574699|574700|574701|580873|587526|620614|620615|623376|623377|623378|624688|633794|633795|633796|633797|633798|642324|642325|642326|642327|642328|642329|642330|642331|642332|642333|642334|642335|642336|642337|642338|642339|647020|647021|647022|647023|647024|647025|647026|647027|647028|647029|647030|647031|647032|647033|647034|647035|647036|647037|647038|647039|647040|647041|647042|647043|647044|647045|647046|647047|647048|647049|647050|647051|647052|647053|648804|648817|648819|648824|648828|648830|648835|648837|648838|651396|652878|653224|653546|684474|684475|684476|684729|684730|684979|684980|688271|688272|688862|688863|688864|688865|688866|688868|688869|688871|688873|689441|689442|689444|690186|690187|690263|693472|694235|694237|694238|694847|705618|705619|717141|717142|717143|717144|728804|728807|728809|728811|728812|728813|728815|731368|742536|742538|742540|742541|742542|742544|742546|745129|757676|757682|757688|757689|760788|760969|772011|773208|773212|773215|773221|773226|773232|773235|773237|773241|773247|773249|773927|776432|776675|776678|776683|776704|776807|785826|786433|786439|786444|786457|786459|786760|791847|819576|819578|819579|820978|821177|821494|830693|830694|830695|830696|830697|830698|830699|830700|841338|841339|841340|841341|841342|841343|841344|841345|841346|841347|841348|841349|846593|846594|846595|846596|846597|846598|846599|846600|846601|846602|846603|846604|846605|846606|846607|846608|846609|846610|846611|846612|846613|846614|846615|846616|846617|846618|846619|846620|846621|846622|846623|846624|846625|846626|846627|846628|846629|846630|846631|846632|846633|846634|846635|846636|846637|846638|846639|846640|846641|846642|846643|846644|846645|846646|846647|846648|846649|846650|846651|846652|848555|848563|848564|848565|848566|848569|848575|849844|849845|849846|852558|852737|852804|878845|878846|878847|878848|878849|878850|878851|878852|878853|878854|878855|878856|878857|878858|878859|878860|878861|878862|878863|878864|878865|878866|878867|878868|878869|878870|878871|878872|878873|878874|878875|878876|878877|878878|878879|878880|878881|878882|878883|878884|878885|878886|878887|878888|878889|878890|878891|878892|878893|878894|878895|878896|878897|878898|878899|878900|878901|878902|878903|878904|878905|878906|878907|878908|878909|878910|878911|878912|878913|878914|878915|878916|878917|878918|878919|878920|880630|880631|880632|880633|880634|924014|927013|927014|927015|927016|928643|928644|928645|928646|928647|928648|928649|928650|928651|928652|929634|929635|929636|932862|932863|932864|936593|936594|936595|938362|938363|938364|938365|938366|938367|938368|938369|938370|938371|938372|939505|939506|940449|940450|940547|941291|944559|948526|948527|948528|950431|950432|950433|950434|950435|950436|950437|950438|950439|950440|950441|950442|950443|950444|951689|951690|951691|954117|954118|954119|957198|957199|958415|958416|958417|958418|958419|958420|958421|958422|958423|958424|958425|959210|959211|959212|959213|959214|960087|960256|960371|960803|960904|980023|980024|980025|980026|980027|980028|980029|980030|980031|980032", + "text": "Dyskeratosis congenita" + }, + { + "baseId": "20667|20668|20669|20670|20671|20672|98423|195209|256412|256413|329950|329951|329955|340217|340219|345929|345931|345936|345937|345944|345948|345956|347277|347283|347286|347287|347291|468839|469088|531770|548333|548335|548342|548346|548354|548357|548358|548362|548366|548368|548370|548374|548376|548378|548381|548384|548386|548716|548725|548732|548736|548739|548740|548746|549104|549109|549110|549117|549128|549131|588980|646696|694202|694203|694204|694205|695776|695777|704378|704379|704380|704381|704382|704383|715708|715709|715710|727444|741037|741038|741039|741041|756131|771829|771830|771831|771832|771833|771835|771837|785744|785745|791828|791829|846199|878487|878488|878489|878490|878491|878492|878493|878494|878495|878496|878497|941197|950288|950289|958310|958311|958312|972276|972277|972278|972279|972280|979920|979921|979922", + "text": "Deficiency of galactokinase" + }, + { + "baseId": "20673|797963", + "text": "Hereditary cerebral amyloid angiopathy, Icelandic type" + }, + { + "baseId": "20674", + "text": "Age-related macular degeneration 11" + }, + { + "baseId": "20675|20676|34342|171741|171742|171743|186791|200615|200616|200617|200620|200621|200622|200623|200624|200625|200626|200627|200629|200630|200631|200632|200633|200634|200635|200636|200637|200638|200639|200640|200641|200642|200643|200644|200645|200646|200647|200648|200649|200650|253558|308348|308350|308351|312797|312798|312799|318643|318649|318650|318651|319209|319215|319241|357806|357807|357808|357809|357810|357811|357812|357813|357814|357815|357816|357817|415197|544915|544917|545179|545181|545183|545188|545192|545193|545194|545280|545285|545287|545289|545292|545294|545462|545463|545467|545483|545484|545495|545503|545510|545512|545519|545523|545534|545537|545540|545541|545546|590449|620334|711977|751716|751717|767421|767425|783410|787810|818273|902062|902063|902064|902065|902066|902067|902068|902069|902070|902071|902072|902073|902074|902075|955856|972042|972043|972044|978587|978588|978589|978590|978591|978592", + "text": "Primary hyperoxaluria, type II" + }, + { + "baseId": "20675|20683|20685|20970|27267|200501|236723|260799|303427|539124|539125|539126|539134|539135|539136|539143|539152|539154|625971", + "text": "Nephrocalcinosis" + }, + { + "baseId": "20676|20684|20685|38436|150264|171741|186650|186661|200432|200435|200495|200503|200506|200515|200558|200572|200634|288981|311821|311826|311840|323489|324115|324127|324128|621110|858754", + "text": "Primary hyperoxaluria" + }, + { + "baseId": "20677|21231|22804|22805|22806|27398|27403|27406|28938|28940|29009|29010|29011|40563|45735|87659|87660|150535|176503|242978|362755|363053|363096|363097|363179|363247|363248|363249|363250|363251|363291|363292|363327|363337|363338|363376|363377|363378|363398|363399|363400|363401|363402|363403|363538|363542|363543|363544|363560|363561|363562|363563|363564|363565|789985|789986|789987", + "text": "Non-Hodgkin lymphoma" + }, + { + "baseId": "20679|20680|20681|20682|20683|20684|20685|20686|20687|20688|20689|38436|48085|48086|98222|98223|150264|150265|186650|186651|186652|186653|186654|186655|186656|186657|186658|186659|186660|186661|186662|186663|195195|195847|196142|200411|200412|200413|200414|200415|200416|200417|200418|200419|200420|200421|200422|200423|200424|200425|200426|200427|200428|200429|200430|200431|200432|200433|200434|200435|200436|200437|200438|200439|200440|200441|200442|200443|200444|200445|200446|200447|200448|200449|200450|200451|200452|200453|200454|200455|200456|200457|200458|200459|200460|200461|200462|200463|200464|200467|200468|200469|200470|200471|200472|200473|200474|200475|200476|200477|200478|200479|200480|200481|200482|200483|200484|200485|200486|200487|200488|200489|200490|200491|200492|200493|200494|200495|200496|200497|200498|200499|200500|200501|200502|200503|200504|200505|200506|200507|200508|200509|200510|200511|200512|200513|200514|200515|200516|200517|200518|200519|200520|200521|200522|200523|200524|200525|200526|200527|200528|200529|200530|200531|200532|200533|200534|200535|200536|200537|200538|200539|200540|200541|200542|200543|200544|200545|200546|200547|200548|200549|200550|200551|200552|200553|200554|200555|200556|200557|200558|200561|200562|200563|200564|200565|200566|200567|200568|200569|200570|200571|200572|200573|200574|200575|200576|200577|200578|200579|200580|200581|200582|200583|200584|200585|200586|200587|200588|200589|200590|200591|200592|200593|200594|200595|200596|200597|200598|200599|200600|200601|200602|200603|200604|200605|200606|200607|200608|200609|200610|200611|200612|200613|200614|250698|272486|273346|285570|285575|285582|286268|286269|286278|288590|288591|288592|288982|288983|289001|289002|357248|367164|541941|541943|541949|541950|542041|542045|542050|542053|542075|542081|542185|542186|542188|542189|542191|542193|620074|697482|719760|730126|733347|733348|733350|747469|747470|790221|826108|884407|884408|884409|884410|884411|884412|884413|884414|884415|884416|884417|884418|884419|884420|887330|961570|971787|971788|971789|971790|971791|971792|977706|977707|977708|977709", + "text": "Primary hyperoxaluria, type I" + }, + { + "baseId": "20690|20691|20692|20693|20694|20695|508763|508764|508765|590697|672209|672210|672211|672212|672213|672214|672215|672216|672217|788732|789891|961824|963118|963119|964139|975891|980900", + "text": "Camptodactyly-arthropathy-coxa vara-pericarditis syndrome" + }, + { + "baseId": "20696|20697|20698|20699|20700|20701|20702|20703|20704|20705|20706|20707|20708|20709|20710|20711|20712|20713|20714|20715|20716|185965|185966|185967|185968|194975|205235|206997|206998|212144|212145|212146|212147|212148|213538|213539|216738|216739|216740|216741|216742|216743|216744|216745|216746|216747|216748|216749|216750|216751|216752|216753|216754|216755|216756|216757|216758|216759|216760|216761|216762|216763|216764|216765|216766|216767|216768|216769|216770|216771|216772|216773|216774|216775|216776|216777|216778|216779|216780|216781|216782|216783|216784|216785|221175|221176|221177|221178|221179|221180|227916|238765|238766|238767|238768|238769|248484|259736|262398|286122|286130|286137|286139|286140|286142|286143|286144|286153|286155|286168|286173|286174|286852|286859|286864|286868|286870|286875|286879|286889|286890|286897|286898|286911|286914|286916|286927|286929|286930|289184|289189|289200|289202|289204|289207|289208|289209|289211|289212|289214|289215|289217|289226|289228|289231|289498|289511|289514|289526|289530|289542|289552|289555|289564|289568|289569|289576|289592|366539|384433|391351|391550|392653|392683|392691|392807|392811|392815|393011|393012|393018|393020|404605|404606|405721|420990|425489|425490|425493|434579|440698|440700|440701|440704|440706|440709|440711|440714|440716|440717|443240|448395|448543|448547|448596|450867|450870|450871|450889|450992|450994|450998|451180|451182|451183|451187|451190|451192|451198|451204|451205|451207|481473|481474|481652|499920|511419|513925|514466|516225|516228|518183|518185|518186|518188|518191|518192|518193|518195|518197|518240|518246|518251|518253|518301|518305|518306|518311|518317|518321|550352|551616|552065|557440|557491|557493|558071|558073|558075|558077|558081|558432|558434|558436|558438|558440|558442|558444|558446|558448|558450|560621|560623|560625|560627|561472|561494|561495|561496|561497|561500|561502|561505|576683|576687|576692|609147|609162|612140|622324|623591|629953|629954|629955|629956|629957|629958|629959|629960|629961|629962|629963|629964|629965|629966|650758|650800|650802|650811|650832|650955|650956|650958|683501|686203|686204|763198|763199|790229|790230|790231|790232|790233|790234|790235|792977|794011|798508|819157|819158|819159|819160|819161|819162|819163|819164|819165|819166|819167|826419|826420|826421|826422|826423|826424|826425|826426|826427|826428|826429|826430|826431|826432|826433|826434|826435|826436|826437|826438|884791|884792|884793|884794|884795|884796|884797|884798|884799|884800|884801|884802|884803|884804|884805|884806|884807|884808|884809|884810|884811|887361|887362|918770|918771|920175|920176|922753|922754|922755|922756|922757|922758|931386|931387|931388|931389|931390|931391|931392|931393|931394|939891|939892|940707|940708|940709|942896|942897|942898|942899|942900|942901|942902|942903|942904|942905|942906|953085|953086|959641|964199|969711|976031|976032|984251", + "text": "Spastic paraplegia 4, autosomal dominant" + }, + { + "baseId": "20710|20711", + "text": "Spastic paraplegia 4, modifier of" + }, + { + "baseId": "20717|20718|20719|20720|20721|20722|20723|20724|65567|141579|142784|142785|142786|142787|142788|142789|142790|142791|211962|211965|338573|338576|338577|348160|348162|348165|351824|351825|351827|352678|352679|377583|689294|786642|788946|891500|891501|891502|919959", + "text": "Cardioencephalomyopathy, fatal infantile, due to cytochrome c oxidase deficiency" + }, + { + "baseId": "20717|20720|65567|211965", + "text": "Myopia 6" + }, + { + "baseId": "20720|153385|177103|181399|203840|203843|225802|225802|225802|225802|225802|263309|263410|268631|360940|513921|513949|513961|513984|513986|514013|514110|514321|514323|514331|514332|514333|514334|514335|626420|921239|921240|921241|921242|966614|971562", + "text": "Severe global developmental delay" + }, + { + "baseId": "20725|20726|20727|20728|20729|20730|20731|20732|39367|187689|191369|191369|191537|194164|194191|196235|196235|207865|207865|265791|266013|266013|267194|267194|270150|270796|270796|270975|270975|270976|272453|272453|272457|272457|274999|274999|314192|314197|314198|314211|314214|314215|314218|314221|314221|314230|314230|314232|314232|314233|314235|314236|314240|314240|314245|314249|314249|314250|320769|320771|320774|320775|320780|320780|320781|320783|320783|320786|320787|320788|320790|320790|320796|320798|320818|320820|320821|320821|320834|320837|320837|320850|320852|320852|320855|320855|320863|320864|320871|320873|326814|326817|326820|326822|326824|326840|326842|326843|326846|326846|326853|326853|326855|326855|326858|326859|326859|326861|326866|326867|326872|326874|326875|326875|326887|326887|326891|326891|327779|327782|327784|327787|327788|327795|327795|327798|327798|327799|327800|327800|327811|327817|327817|327818|327830|327830|327831|327840|327844|327845|327847|327858|327858|327859|327869|327869|327870|327882|327885|360043|360043|371427|420287|429241|444807|444807|461121|461131|461137|461332|461332|461333|461623|461623|461624|461625|461626|461627|461630|461932|461939|461943|461953|488690|488691|488694|526218|526218|526223|526224|526224|526226|526227|526228|526409|526415|526429|526434|526706|526708|526713|526713|526715|526719|564646|564647|564651|564654|564655|564662|564669|564671|564671|565803|565805|567275|567276|567280|567282|570669|570670|570671|570673|626206|640069|640070|640071|640072|640073|640074|640075|640076|640077|640078|640079|640080|640081|640082|640083|640084|640085|640086|640087|640088|640089|640089|640090|652547|693032|693033|693033|693034|693037|693037|693039|693039|693040|693042|693042|693043|693044|693045|695516|695518|701776|701776|701777|701778|701778|701780|712847|712848|712849|712849|724460|724462|724464|752689|768468|784012|796596|796596|838472|838473|838474|838475|838476|838477|838478|838479|838480|838481|838482|838483|838484|838485|838486|852613|868036|868037|868038|868039|868040|868041|868042|868043|868044|868045|868046|868047|868048|868049|868050|868051|868052|868053|868054|868055|868056|868057|868058|868059|868060|868061|868062|868063|868064|868065|868066|868067|868068|868069|868070|868071|868072|868073|868074|868075|868076|868077|868078|868079|868080|868653|868654|926251|926252|926253|926254|926255|935567|935568|935569|935570|935571|935572|935573|935574|935575|935576|940214|940998|947480|947481|947482|947483|956513|956514|956515|959990|970936", + "text": "Cenani-Lenz syndactyly syndrome" + }, + { + "baseId": "20733|20734|20736|20737|196286|196287|266578|272001|273741|466808|467667|468076|485862|490861|508752|513224|531010|531132|531154|531502|531503|531505|531509|531510|531512|571113|571114|571115|571342|574455|574456|624628|645875|645876|645877|645878|645879|645880|645881|645882|645883|645884|645885|645886|652955|715456|727177|727178|727179|740747|740748|744956|755838|755839|755842|771491|771492|771494|785559|785560|785562|816341|845324|845325|845326|845327|845328|845329|845330|845331|845332|928258|928259|928260|937925|937926|937927|937928|949915|949916|949917|958105|961974|964479|980482", + "text": "Growth hormone insensitivity with immune dysregulation 1, autosomal recessive" + }, + { + "baseId": "20742|20743", + "text": "Focal segmental glomerulosclerosis 3" + }, + { + "baseId": "20745|20746|20747|20748|20750|20751|20752|33860|34280|34282|34283|34284|34285|34286|34288|34289|213653|226392|226393|227930|227931|227932|227933|410555|805031|917757|917758", + "text": "Cold-induced sweating syndrome 1" + }, + { + "baseId": "20753|20754|20755|20756|204422", + "text": "PULMONARY ALVEOLAR MICROLITHIASIS" + }, + { + "baseId": "20757|20758|20759|20760|20762|20763|20764|20765|20767", + "text": "Cerebral cavernous malformations 1" + }, + { + "baseId": "20760|20767|252960|252961|252964|252965|252966|259875|259877|259880|264247|270303|290221|293317|303552|303557|303560|303561|303562|303566|303568|303570|306979|306988|306989|306996|306998|307003|307005|307010|307011|307013|307014|311871|311876|311877|311882|311883|311886|311887|311888|311891|311895|311896|311899|311904|311907|311910|311912|311913|311914|311917|311920|311926|311929|311930|311931|311942|311946|311949|311950|311954|311955|353642|359673|361189|418980|418981|418984|418989|418992|433658|441149|444174|456163|456165|456854|456856|457060|457061|457065|457570|457571|457572|457573|457577|457668|457669|457673|457675|458018|458021|458024|458026|458036|458038|481793|495222|512828|512829|513975|522652|523471|523473|553155|561160|561802|562247|562258|564478|564482|567215|567217|581340|581356|581369|581376|581382|581391|581396|581401|581408|636173|636437|636438|636439|636440|636441|636442|651698|678067|692328|692330|695372|711180|722719|744375|750827|766441|788820|819922|833915|833916|833917|833918|833919|833920|833921|833922|833923|833924|851163|851662|852382|898468|898469|898470|898471|898472|898473|898474|898475|898476|898477|898478|898479|898480|898481|898482|898483|898484|898485|898486|898487|898488|898489|898490|898491|898492|898493|898494|898495|898496|900410|900411|900412|919120|919121|919122|924932|934022|934023|934024|934025|945784|945785|955239|955240|955241|959869|960640|964294", + "text": "Cerebral cavernous malformation" + }, + { + "baseId": "20761", + "text": "Hyperkeratotic cutaneous capillary-venous malformations associated with cerebral capillary malformations" + }, + { + "baseId": "20766", + "text": "Cavernous malformations of CNS and retina" + }, + { + "baseId": "20768|20769|20769|20770|20771|20771|20772|20772|20775|20775|20776|20777|20778|20778|20779|48213|48213|48213|102552|105758|105759|105761|105763|105767|105772|105776|105776|105777|105778|105783|105792|105795|105798|105802|105803|105806|106486|152885|177057|177649|192603|192604|195794|213518|227208|237970|259643|269623|270116|271416|271821|271909|274234|274238|278321|278346|279448|279452|279468|279470|279529|279532|279540|279543|279544|279547|279548|359259|359284|361578|364061|405000|405002|413257|431564|431566|431567|431570|439631|447357|447613|511211|556722|557082|578340|609365|611502|619983|623792|627197|627198|627199|627200|627201|650540|690437|690438|696356|696357|696359|696361|706969|706970|706971|706972|718484|718486|731981|731983|745954|745955|745957|761434|761437|761438|761439|761440|761441|761442|761443|780413|780414|780415|780417|780418|780420|780422|780423|780430|780431|786971|789907|818891|818892|818893|818894|823108|823109|823110|823111|823112|823113|823114|823115|823116|823117|823118|823119|823120|823121|823122|823123|823124|823125|823126|823127|823128|823129|823130|823131|823132|823133|823134|823135|823136|823137|823138|823139|823140|823141|850953|850955|855867|855873|855889|858435|863227|921779|921780|921781|921782|921783|930205|930206|930207|930208|930209|930210|939783|939784|941618|941619|941620|941621|941622|941623|941624|941625|941626|941627|941628|941629|941630|941631|952181|952182|952183|952184|952185|952186|952187|952188|952189|952190|952191|952192|952193|952194|952195|952196|952197|952198|952199|952200|959535|959536|964096", + "text": "Retinitis pigmentosa 12" + }, + { + "baseId": "20769|48213|102552|270116|431560|619982|619983", + "text": "CRB1-Related Disorders" + }, + { + "baseId": "20769|20769|20771|20771|20772|20772|20773|20774|20775|20775|20777|20777|20778|20778|20779|48213|48213|48213|102552|102552|102553|105755|105758|105758|105759|105761|105761|105762|105763|105764|105765|105767|105767|105769|105771|105772|105772|105776|105776|105777|105777|105778|105780|105782|105783|105786|105787|105789|105791|105792|105793|105795|105795|105798|105802|105802|105803|105803|105806|105806|106486|106486|152885|152885|166165|177057|177057|177649|177649|192603|192603|192604|195794|227208|227208|237970|249592|259643|260774|269623|270116|271416|271821|271909|274234|274234|274238|278311|278320|278321|278321|278335|278346|278346|278348|278353|278354|278358|279441|279448|279448|279452|279452|279453|279462|279468|279468|279470|279470|279527|279528|279529|279529|279530|279532|279532|279539|279540|279540|279542|279543|279543|279544|279544|279547|279547|279548|279564|279572|359259|359284|361578|364061|364061|405000|405002|413257|413258|418814|431564|431566|431567|431568|431570|439631|447357|447613|498168|511211|513238|556722|557082|578336|578337|578338|578339|578340|578340|609365|611502|611502|619983|622989|622990|623792|623792|627197|627198|627199|627200|627200|627201|650540|690437|690438|696356|696357|696359|696361|696361|706969|706969|706970|706971|706971|706972|718484|718486|731981|731983|745954|745955|745957|761434|761437|761438|761439|761440|761441|761442|761443|780413|780414|780415|780417|780418|780420|780422|780423|780430|780431|786971|789907|789908|800423|800684|802118|818891|818892|818893|818894|823108|823109|823110|823111|823112|823113|823114|823115|823116|823117|823118|823119|823120|823121|823122|823123|823124|823125|823126|823127|823128|823129|823130|823131|823132|823132|823133|823134|823135|823136|823137|823138|823139|823140|823141|850953|850955|855862|855867|855873|855889|855891|858435|858885|863217|863218|863219|863220|863221|863222|863223|863224|863225|863226|863227|863227|863228|863229|863230|863231|863232|863233|863234|863235|863236|921779|921780|921781|921782|921783|930205|930206|930207|930208|930209|930210|939783|939784|941618|941619|941620|941621|941622|941623|941624|941625|941626|941627|941628|941629|941630|941631|952181|952182|952183|952184|952185|952186|952187|952188|952189|952190|952191|952192|952193|952194|952195|952196|952197|952198|952199|952200|952200|959535|959536|962195|962196|962197|962198|962199|962200|962201|962202|962203|962204|962205|962206|962207|962208|962209|962210|962211|962212|962213|962214|962215|962216|962217|962218|962219|962220|962221|962222|962223|962224|962225|962226|962227|962228|962239", + "text": "Leber congenital amaurosis 8" + }, + { + "baseId": "20772|20777|48213|48213|102553|105758|105761|105762|105767|105776|105795|105803|106486|177649|192603|227208|249592|274234|278311|278313|278320|278321|278335|278346|278348|278353|278354|278358|279441|279448|279452|279453|279462|279468|279470|279527|279528|279529|279530|279532|279539|279540|279542|279543|279544|279547|279548|279564|279565|279572|361578|498168|696361|706969|706971|777027|850955|855891|863217|863218|863219|863220|863221|863222|863223|863224|863225|863226|863227|863228|863229|863230|863231|863232|863233|863234|863235|863236|918584|918585|918586|918587|918588", + "text": "Pigmented paravenous chorioretinal atrophy" + }, + { + "baseId": "20778|76480|622989|622990|962958", + "text": "Early-onset retinal dystrophy" + }, + { + "baseId": "20780|59436|226728|236972|237070|264778|337543|337551|337552|337555|337559|337560|337568|337570|337575|337586|337588|337590|337594|337596|337597|337599|337600|337602|337605|347118|347123|347125|347128|347129|347133|347139|347144|347145|347152|347153|347156|347161|347162|347165|347166|347172|347176|347177|347180|347184|347188|351151|351156|351157|351161|351162|351163|351164|351169|351170|351173|351174|351177|351179|351181|351182|351183|351184|351187|351188|351191|351192|351193|352155|352156|352157|352170|352173|352174|352175|352176|352189|352190|352191|352193|352195|352197|352208|352210|352211|352212|352213|352214|352215|486775|742770|890881|890882|890883|890884|890885|890886|890887|890888|890889|890890|890891|890892|890893|890894|890895|890896|890897|890898|890899|890900|890901|890902|890903|890904|890905|890906|890907|890908|890909|890910|890911|890912|890913|890914|890915|890916|890917|890918|890919|890920|890921|890922|890923|890924|890925|890926|890927|890928|890929|890930|891806|891807|891808|891809|891810", + "text": "CEDNIK syndrome" + }, + { + "baseId": "20781|20782|20783|20784|20785|20786|20787|672074|790843|790844|966796", + "text": "Ichthyosis prematurity syndrome" + }, + { + "baseId": "20789", + "text": "SLC22A4 POLYMORPHISM" + }, + { + "baseId": "20790|20791|20792|20793|106512|106513|279937|280263|280267|281549|281569|281575|281577|281731|281732|513403|685091|864085|865153|980903", + "text": "Diamond-Blackfan anemia 7" + }, + { + "baseId": "20790|20793|21218|21353|21354|22285|38387|138201|142629|238349|238350|238351|238352|238353|239901|239902|240848|243028|243344|243345|257848|259941|265986|279937|281549|281569|281575|283380|286176|289621|299917|302550|302559|302560|302561|306938|306941|306942|311239|311253|316666|322671|322683|322688|323397|323402|333684|333685|333686|349024|349036|353154|353494|353570|353770|364821|391375|391418|391435|391438|395711|397422|401529|403743|404264|404581|429129|429130|430809|447927|448377|448444|455562|455708|467380|467887|468836|468838|470262|471606|471610|472161|514914|515586|515657|515668|515705|516100|533129|535006|535011|535177|535178|540580|540581|556497|557170|557382|557384|557386|557429|558042|569420|573141|573452|574743|575425|575426|627541|628280|628281|628282|628283|628284|628285|634868|634869|639180|639181|647075|648142|648143|650088|650089|650090|650544|650701|653053|653530|653617|684197|685017|685018|685019|685091|685460|685490|685644|688879|689519|689521|689522|689823|694432|695909|706246|818936|819687|820242|821508|823641|823642|824435|824436|824437|831868|847728|847729|850105|850106|850107|850108|850762|851324|852873|922170|924343|928658|928980|929753|929754|929755|929756|930385|930386|930669|930670|938702|938703|938704|941820|942108|942109|950806|950807|952530|954430|959312|960386|969273|969274|974532", + "text": "Diamond-Blackfan anemia" + }, + { + "baseId": "20794|20795|20796|20797|20798|166239", + "text": "Hypogonadotropic hypogonadism 8 without anosmia" + }, + { + "baseId": "20798|20799|788933", + "text": "Precocious puberty, central, 1" + }, + { + "baseId": "20800|20801|20802|20803|20804|20805|20806|40212|46931|46932|313558|313576|313577|313583|313584|313588|313597|313615|313617|319779|319789|319798|325939|325940|325946|325957|325977|325983|326890|326893|326919|326932|326944|526015|526096|526168|564538|565583|565587|570423|620831|639857|639858|652168|652521|791122|850651|850652|850654|850655|868687|929864|939732|939733|951945|951946", + "text": "Hyperekplexia 3" + }, + { + "baseId": "20807|20808|20809|20810|20811|20812|20813|20814|20815|20816|20817|20818|31810|100283|100284|194386|195323|252985|252986|252987|265352|270083|271457|303658|303661|303663|307107|307108|307109|312035|312036|312037|312040|312045|312048|312055|312056|361528|384418|407282|407283|441161|441163|441164|456169|457102|457105|457115|457117|457677|457684|457686|457737|458100|458105|458108|458112|480429|481462|522658|522936|522950|523154|523160|523162|523385|523389|523400|523403|523408|523499|523500|523501|523505|523506|523510|523512|561162|561839|561842|561845|562310|562311|564526|564528|564539|567270|567277|567285|567287|567288|612148|612792|636473|636474|636475|636476|636477|636478|636479|636480|636481|636482|636483|636484|636485|636486|636487|636488|636489|636490|636491|651737|683948|683949|687139|687141|692333|692334|692335|759668|766486|787530|790764|796098|798593|798594|798595|801548|833981|833982|833983|833984|833985|833986|833987|833988|833989|833990|833991|833992|833993|833994|833995|833996|833997|851664|898556|919128|924952|924953|924954|924955|924956|924957|924958|924959|924960|924961|934045|934046|934047|940090|945803|945804|945805|955262|955263|955264|964914", + "text": "Myoclonic dystonia" + }, + { + "baseId": "20819|20820|20821|20822|20823|20824|20825|20826|20827|20828|20829|20830|20831|20832|33154|33155|33156|33157|33158|33159|33160|33161|45755|69569|171225|205188|209345|227246|227403|244022|268512|269547|272434|286469|286471|286473|286482|286483|286486|286487|287133|287135|287139|287161|287162|287165|287166|287167|287168|287176|287178|289505|289508|289513|289516|289518|289519|289520|289926|289928|289929|289935|289939|289940|289946|289949|289950|289951|289953|333045|333055|333057|333070|333073|333077|333082|333085|333089|343164|343169|343170|343175|343176|343180|343185|343190|343191|343193|348548|348551|348552|348553|348555|348557|348558|349632|349633|349634|349636|349637|349638|349639|349641|349642|349643|362173|389208|424992|493438|516320|518239|539087|539126|550747|553488|560637|619928|620632|630008|630009|650756|708286|708287|708288|708289|708290|716354|719882|719883|733483|733484|733485|733486|733487|741765|747648|747649|759122|792540|792548|818336|819169|819170|826488|826489|880254|880255|880256|880257|880258|880259|880260|880261|880262|880263|880264|880265|880266|880267|880268|880269|880270|885004|885005|885006|885007|885008|885009|885010|885011|885012|885013|885014|885015|885016|885017|885018|885019|885020|885021|885022|885023|885024|885025|885026|885027|885028|885029|885030|885031|885032|887371|887372|887373|887374|904185|919847|922775|922776|931409|940479|942924|942925|942926|962800|966574|966575|970741|980389", + "text": "Cystinuria" + }, + { + "baseId": "20837|20838|20839|20840|20841|20842|20843|20844|20845|20846|20847|20848|20849|20850|20851|20852|20853|20854|20856|20857|20858|20859|20860|79700|79703|79706|79711|79714|227331|253373|253376|253377|253379|253380|253381|253382|253383|253384|253385|253386|253388|253389|253390|253391|253392|253395|253396|253397|253399|253400|253402|307292|307293|307294|307299|307301|307304|307308|307309|307311|311534|311540|311542|311544|311565|311566|311601|311604|311606|311608|311615|317068|317069|317083|317091|317093|317096|317098|317099|317100|317103|317529|317532|317533|317535|317537|317539|317546|317554|389201|432301|432349|444392|489471|550300|620323|620324|620810|654534|700873|723417|736981|736983|736984|790858|901331|901332|901333|901334|901335|901336|901337|901338|901339|901340|901341|901342|901343|901344|901345|901347|901348|901349|901350|901351|901353|901354|901355|901356|901357|901358|901359|901361|901362|901363|901364|901365|901366|901367|901368|901369|901370|901371|901372|901373|901374|901375|901376|901377|901378|901379|903335|903336|903337|903338|903339", + "text": "Upshaw-Schulman syndrome" + }, + { + "baseId": "20861|20862|273931", + "text": "Pelviscapular dysplasia" + }, + { + "baseId": "20863|22491|22492|22493|23266|23267|23575|23577|23578|27410|27621|27622|36173|36186|39106|150842|151001|151068|151879|151912|151967|181036|181065|181068|181081|185427|185438|222800|292721|292762|292764|292770|292771|294114|294120|297568|297580|297641|297667|403225|410379|468948|468989|618896|919817|920397", + "text": "Carcinoma of pancreas" + }, + { + "baseId": "20865|20866|20867|20868|20869|20870|20871|20872|141196|141197|141198|141199|169273|169274|169275|169276|169277|169278|169279|169280|169281|169282|169283|169284|169285|169286|169287|169288|169289|169290|169292|169293|169294|169294|169295|169296|169297|169298|169300|169301|169302|169303|187126|191554|208292|208293|255846|255849|255850|260119|271363|271431|271506|360182|413442|422101|429817|429818|441917|489311|506394|513635|536910|577559|577560|577560|587647|608863|620935|714996|740281|740282|755282|755284|755285|755287|770983|770986|770987|770989|776186|785329|785330|785334|785338|785339|875607|875608|875609|875610|875611|875612|875613|875614|875615|875616|875617|875618|875619|875620|875621|875622|875623|875624|875625|875626|875627|875628|875629|875630|875631|875632|875633|875634|875635|875636|875637|875638|875639|875640|875641|875642|875643|875644|875645|875646|875647|875648|875649|875650|875651|875652|875653|875654|875655|875656|875657|875658|875659|875660|875661|875662|875663|875664|875665|875666|875667|875668|875669|875670|875671|875672|875673|875674|875675|875676|875677|875678|875679|876690|876691|965998|972795|976666|979808|979809", + "text": "Polymicrogyria, bilateral frontoparietal" + }, + { + "baseId": "20873|20874|20875|20876|20877|39364|101336|101337|101338|101339|101340|135129|135130|177357|177851|195708|195709|251716|251717|251720|265307|265425|266359|267501|270431|270834|272640|273196|273196|274719|295480|295481|295486|295488|295488|297264|297267|297276|301110|301111|301113|301114|301267|425620|454519|454535|455066|455067|455068|455070|455374|455378|455385|491123|520740|520744|520993|521137|521138|521191|560147|562804|562806|564740|564746|587282|589437|589543|633219|633220|633221|633222|633223|633224|633225|633226|633227|779071|787461|830206|830207|830208|830209|830210|830211|830212|851911|893018|893020|893021|893023|893024|893025|893026|893027|896036|923838|923839|932686|944368|944369|944370|944371|954014", + "text": "Myofibrillar myopathy 3" + }, + { + "baseId": "20874|136760|361048", + "text": "Progressive distal muscle weakness" + }, + { + "baseId": "20874|206864|360820|514132", + "text": "Progressive proximal muscle weakness" + }, + { + "baseId": "20878|101337|101338|101339|101340|135129|135130|177852|195708|195709|265307|273196|273196|295480|295481|295485|295486|295488|295488|297261|297264|297267|297276|301110|301111|301112|301113|301114|301267|301277|511554|589437|893018|893019|893020|893021|893022|893023|893024|893025|893026|893027|896036", + "text": "Spheroid body myopathy" + }, + { + "baseId": "20879|20880|20881|20882|20883|20884|20885|20886|99346|195268|227285|512904", + "text": "Congenital stationary night blindness, type 1B" + }, + { + "baseId": "20888|20891|20892|20896", + "text": "Ectodermal dysplasia 10a, hypohidrotic/hair/tooth type, autosomal dominant" + }, + { + "baseId": "20888|28534|28535|28535|28536|28539|28540|28541|28541|28542|28542|28543|28544|28544|28546|28548|28549|28550|28551|28552|28552|28552|28554|28555|34161|34162|34163|34164|34165|34168|34170|34172|76573|76573|135434|135435|135436|135437|135438|135439|135440|135442|135443|135444|135445|142446|142447|142448|142449|142450|142451|142453|142454|142455|142456|142457|142458|142459|142460|142461|142462|142463|142463|142465|142466|142468|142469|142470|142472|142473|142474|142475|142476|142477|142478|142479|142480|142481|142482|142483|142484|177971|177972|177973|190806|190806|191539|191896|192001|192338|192340|192343|192648|192752|193515|193515|195312|196240|202901|202902|202903|202906|202907|202908|202909|202914|202915|202916|202920|202922|202922|202925|202926|202927|202929|202931|202932|202934|202937|202938|202938|202939|202941|202942|202943|202946|202947|202949|202949|202951|202955|202956|202957|202959|202960|202961|202966|202968|202969|202970|202975|202977|202978|202979|202980|202981|202983|202985|202988|202989|202990|202990|202992|202993|202994|202995|202996|203003|203007|203011|203012|203013|203013|203013|203014|203016|203019|203021|203022|203023|203024|203024|203028|203030|203030|203031|203032|203033|203034|203034|203035|203036|203037|203039|203043|203044|203045|203046|203047|203048|203050|203050|203056|203057|203058|203059|203060|203061|203062|203063|208227|215502|242144|242144|242145|255390|255391|264590|264592|264637|264639|264743|264890|264890|266312|269738|272012|272696|272935|273477|275530|323492|323499|323514|333236|340031|340038|341443|341447|341451|341453|360118|360211|360215|361412|373786|373792|373798|373799|373804|374455|374458|374468|374471|374496|374506|374507|374510|374832|374842|374859|374874|374888|376741|376744|376748|376751|376763|376765|376771|376779|376788|376820|376833|376835|376837|400421|400422|400425|400549|400550|400552|400559|400560|400899|400903|400909|400912|400914|401238|401242|409368|409370|409372|409376|409377|409383|409384|409386|409387|409388|414709|415454|422056|422057|422058|422060|426128|426129|426132|426133|426134|426136|426137|426138|426139|429733|429734|429735|437992|441759|441760|441763|445449|445458|445460|445461|445463|464568|464578|464586|464588|464592|464597|464598|464602|464603|464606|464607|464613|464614|465229|465231|465233|465236|465243|465352|465354|465356|465357|465368|465371|465372|465378|465379|465390|465477|465482|465483|465486|465489|482080|489022|489157|491089|491497|492779|493325|493939|505039|505051|505283|505482|505889|528579|529106|529113|529121|529122|529124|529127|529131|529139|529683|529685|529691|539063|550024|550027|553152|567328|567330|567335|567336|569179|569185|569189|569190|569192|569200|569207|569209|569210|569643|569644|569647|569649|569650|573570|573571|573573|573575|573580|573581|576169|577404|577410|577412|577413|577414|579960|580019|580246|584487|584578|585053|585279|585408|585729|585901|586525|586908|587961|588774|588869|589197|610699|610700|610701|610702|610703|610704|610705|610706|610707|610708|610709|610710|610711|610712|610713|610714|610715|610716|610717|610718|610719|610720|610721|610722|610723|610724|610725|610726|610727|610728|610729|610730|610731|610732|610733|610734|610735|610736|610737|610738|610739|610740|610741|610743|610744|610745|610746|610747|610748|610749|610750|610751|610752|610753|610754|610755|610756|610757|610758|610759|610760|610761|610762|610763|610764|610765|610766|610767|610768|610769|610770|610771|610772|610773|610774|610775|610776|610777|610778|610779|610780|610781|610782|610783|610784|610785|610786|610787|610788|610789|610790|610791|610792|610793|610794|610795|610796|610797|610798|610799|610800|610801|610802|610803|610804|610805|610806|610807|610808|610809|610810|610811|610812|610813|610814|610815|610816|610817|610818|610819|610820|610821|610822|610823|610824|610825|610826|610827|610828|610829|610830|610831|610832|610833|610834|610835|610836|610837|610838|610839|610840|610841|610842|610843|610844|610845|610846|610847|610848|610849|610850|610851|610852|610853|610854|610855|610856|610857|610858|610859|610860|610861|610862|610863|610864|610865|610866|610867|610868|610869|610870|610871|610872|610873|610874|610875|610876|610877|610878|610879|610880|610881|610882|610883|610884|610885|610886|610887|610888|610889|610890|610891|610892|610893|610894|610895|610897|614404|643597|643598|643599|643600|643601|643602|643603|643604|643605|643606|643607|643608|643609|643610|643611|643612|643613|643614|643615|643616|643617|643618|643619|652438|652575|652587|682359|682360|682362|682363|685410|688498|770398|770402|770404|776076|785053|791499|801729|820741|842772|842773|842774|842775|842776|842777|842778|842779|842780|842781|842782|842783|842784|842785|842786|842787|842788|842789|842790|842791|842792|842793|842794|842795|842796|852075|852610|858571|874262|927446|927447|927448|927449|927450|927451|927452|927453|927454|927455|927456|937097|937098|937099|937100|937101|937102|937103|937104|937105|937106|937107|937108|937109|937110|937111|937112|937113|940333|941097|941098|949047|949048|949049|949050|949051|949052|949053|949054|949055|949056|957529|957530|957531|957532|957533|957534|957535|957536|957537|960124|971028|971029", + "text": "Progressive sclerosing poliodystrophy" + }, + { + "baseId": "20888|28535|28535|28541|28541|28542|28542|28544|28544|28545|28546|28552|28552|28554|28555|76573|142453|142463|190806|193515|202922|202938|202949|202990|203013|203013|203024|203030|203034|203050|203057|242144|264890|513353|539063|553152|576169|614404|801729", + "text": "Mitochondrial DNA depletion syndrome 4B, MNGIE type" + }, + { + "baseId": "20891|20897|214080|250081|250084|448754|918179|918180", + "text": "Non-syndromic oligodontia" + }, + { + "baseId": "20897", + "text": "Hair morphology 1, hair thickness" + }, + { + "baseId": "20897|165611|165614|165619|172936|250083|250084|281511|281513|281518|281520|281521|281522|281529|281533|281537|281539|282145|282146|282147|282150|282152|282182|282184|282199|282214|282216|282223|283512|283515|283516|283517|283525|283530|283531|283532|283546|283549|283550|283551|283629|283642|283646|283656|283657|283659|283660|283667|283675|353535|690703|880825", + "text": "Hypohidrotic Ectodermal Dysplasia, Dominant" + }, + { + "baseId": "20900|24081", + "text": "Hypercholesterolemia, susceptibility to" + }, + { + "baseId": "20902|20903|20904|20905|330271|330273|330277|330279|330287|330290|330297|330300|330301|330303|330306|330309|330311|330312|330319|330323|340477|340479|340485|340486|340489|340499|340509|340515|340518|340520|340522|340524|340528|340530|340531|340535|340537|340544|340545|340549|346200|346201|346203|346207|346209|346216|346218|346219|346220|346221|346230|346231|346232|346241|346242|346243|346245|346246|346255|346259|347507|347510|347513|347514|347521|347526|347529|347534|347537|347542|347546|347547|347550|347553|347556|347558|347564|347567|347573|347574|347575|347579|347580|347583|347586|508889|508890|508891|727464|727465|741064|756168|756169|878660|878661|878662|878663|878664|878665|878666|878667|878668|878669|878670|878671|878672|878673|878674|878675|878676|878677|878678|878679|878680|878681|878682|878683|878684|878685|878686|878687|878688|880610", + "text": "Amyotrophy, hereditary neuralgic" + }, + { + "baseId": "20906|20907|20908|20909|20910|101080|101081|329991|330034|330041|340261|340263|340264|346015|346017|347316|347318|347321|347326|347327|378783|486816|486817|532174|571600|620891|672105|694207|694208|704385|846242|846243|878516|878517|878522|878523|878524|878525|878526|878527|878528|878529|919772|958325|983743", + "text": "MPDU1-CDG" + }, + { + "baseId": "20911|20912|45934|45935|45936|45938|45939|132507|132510|132511|132516|133447|133449|133450|133455|133458|133461|133463|133464|133465|133469|133470|133477|133480|150482|150622|150625|150644|150645|150653|150759|150766|150820|150865|151031|151610|152152|152155|152494|152729|180236|180237|182498|182503|182519|182523|182531|182588|182591|182598|182629|182658|212471|212486|221571|221577|227276|233249|233267|233354|233392|233398|233407|239694|239712|251668|358785|358786|394679|454545|454975|474047|474068|474083|474196|474235|474264|474352|521131|539248|539249|539250|539251|539252|539253|560174", + "text": "Nijmegen breakage syndrome-like disorder" + }, + { + "baseId": "20913|20914|20915|20916|20917|134430|134431|134432|134433|134434|134435|190459|190460|204423|207029|287509|287513|287515|287516|287518|287519|287520|287523|287527|288279|288282|288283|288285|288286|288287|288290|288291|288292|288293|288294|290983|290984|291001|291019|291033|291035|291045|291047|291070|291074|291080|291226|291227|291239|291240|291243|291247|291251|291255|353579|380202|428103|428104|513044|708408|719999|733617|798515|885630|885631|885632|885633|885634|885635|885636|885637|885638|885639|885640|885641|885642|885643|885644|885645|885646|885647|885648|885649|885650|980908", + "text": "Wolcott-Rallison dysplasia" + }, + { + "baseId": "20919|20920|48744|133391|133392|133393|133394|133395|133396|133397|133398|133399|133400|133401|133402|133403|133404|133405|140178|140179|140180|140181|140182|140183|140184|140185|140186|140187|140189|140190|140191|140192|140193|180965|180966|180967|180968|180969|180970|180971|180972|180973|180974|180975|180975|180976|180977|180978|180980|180981|180982|180983|180984|180985|222729|222730|222731|232016|232017|232018|232019|232020|232021|232022|232023|232024|232025|232027|232028|242887|242888|242889|242890|242891|242892|242893|242894|242895|242896|242897|242898|242899|242900|242900|242901|242902|242903|242905|242906|242906|242907|242908|242909|242910|242911|242912|242913|242914|242915|242916|242917|242918|242919|242920|242921|242922|242923|242924|242925|242926|242927|242928|242929|242930|242931|242932|242933|242934|242935|242936|242937|242938|242939|242940|242941|242942|242943|242944|242945|242946|242947|242948|242949|242950|242951|242952|242953|242954|242955|242956|256350|256353|256353|256354|256356|256357|264792|329554|329555|329559|329561|329562|329566|329571|329574|329576|329578|329579|329580|329590|329591|339824|339829|339833|339834|339835|339837|345575|345576|345579|345580|345584|346894|346895|346898|346905|346909|346910|346913|346914|346915|346926|375514|375539|375546|375562|375569|375571|375574|375575|376408|376421|376423|376440|376446|376466|376473|376478|376482|376534|376539|376540|376548|378667|378670|378680|378681|378684|402303|402306|402311|402313|402315|402323|402325|402327|402329|402330|402332|402333|402334|402336|402338|402339|402341|402341|402344|402347|402351|402354|402355|402359|402361|402364|402366|402367|402370|402370|402371|402374|402375|402376|402378|402380|402385|402386|402393|402395|402399|402402|402404|402405|402406|402407|402408|402409|402411|402412|402413|402416|402417|402420|402421|402424|402426|402427|402431|402432|402434|402440|402441|402445|402447|402453|402455|402456|402461|402462|402464|402473|402478|402486|402852|402856|402859|402862|402863|402869|402873|402874|402879|402883|402886|402889|402890|402892|402895|402896|402900|402900|402901|402902|402903|402904|402906|402908|402910|402911|402913|402919|402924|402927|402928|402930|402932|402937|402940|402944|402945|402946|402947|402949|402952|402952|402954|402955|402960|402961|402962|402964|402967|402968|402972|402973|402974|402977|402985|402986|402990|402990|403003|403009|403012|403013|403021|403023|403026|403031|403049|403051|403054|403059|410180|410182|410183|410185|410186|410188|410189|410191|410193|410194|410195|410196|410197|410199|410200|410201|410202|410206|410207|410208|410209|410210|410211|445862|445864|467226|467228|467233|467235|467237|467237|467238|467241|467243|467244|467246|467248|467252|467253|467257|467263|467267|467269|467271|467273|467279|467284|467289|467298|467299|467310|467313|467317|467320|467325|467327|467328|467337|467344|468179|468181|468182|468186|468187|468191|468195|468198|468201|468203|468204|468205|468207|468212|468213|468216|468217|468222|468227|468231|468235|468236|468239|468241|468244|468254|468257|468259|468262|468267|468269|468271|468274|468275|468278|468551|468570|468576|468578|468581|468582|468593|468594|468596|468599|468601|468604|468612|468617|468620|468625|468633|468636|468649|468659|468663|468670|468675|468680|468686|468687|468691|468704|468705|468709|468710|468713|468715|468721|468827|468829|468831|468835|468840|468848|468849|468856|468857|468861|468866|468868|468870|468872|468885|468886|468889|468892|468893|468897|468899|468901|468904|468906|468911|468913|468930|468935|468940|468941|468944|468945|468950|468955|468960|468961|468965|506111|506112|506132|506146|506150|506327|506330|506334|506340|506343|506656|506669|506676|506680|507069|507076|507082|530845|531490|531511|531521|531527|531528|531538|531545|531546|531549|531555|531565|531570|531575|531578|531580|531583|531584|531586|531594|531596|531598|531601|531604|531606|531607|531609|531613|531618|531619|531621|531624|531626|531628|531630|531632|531633|531636|531640|531642|531646|531647|531653|531656|531657|531657|531659|531660|531661|531662|531663|531664|531665|531667|531671|531672|531676|531677|531678|531679|531684|531686|531688|531689|531690|531693|531697|531699|531700|531702|531708|531715|531717|531718|531721|531723|531725|531727|531732|531738|531739|531741|531742|531749|531751|531753|531755|531756|531757|531762|531763|531764|531766|531767|531773|531781|531784|531788|531794|531795|531798|531800|531803|531805|531810|531811|531818|531821|531944|531946|531954|531956|531971|531973|531976|531986|531992|531994|531997|531998|532002|532004|532012|532017|532024|532026|532029|532031|532032|532033|532043|532053|532056|532062|536512|536513|568659|569542|569544|569550|569571|569573|569574|569577|569578|569580|569592|569602|569607|569610|569613|569615|569616|569618|569619|569623|569627|569634|569637|569639|569641|569653|569656|569657|569661|569663|569669|569670|570724|571473|571480|571481|571483|571488|571489|571491|571500|571501|571506|571507|571510|571511|571513|571515|571517|571522|571523|571525|571528|571529|571535|571536|571538|571540|572043|572045|572046|572050|572054|572056|572057|572065|572068|572076|572077|572079|572087|572088|572092|572097|572105|572113|572114|572116|572117|572122|572129|572131|572147|572150|572156|574579|574580|574581|574582|574583|574584|574585|574586|574587|574588|574589|574590|574591|574592|574593|574594|574595|574596|574597|574598|574599|574600|574601|574602|574603|574604|574605|574606|646443|646444|646445|646446|646447|646448|646449|646450|646451|646452|646453|646454|646455|646456|646457|646458|646459|646460|646461|646462|646463|646464|646465|646466|646467|646468|646469|646470|646471|646472|646473|646474|646475|646476|646477|646478|646479|646480|646481|646482|646483|646484|646485|646486|646487|646488|646489|646490|646491|646492|646493|646494|646495|646496|646497|646498|646499|646500|646501|646502|646503|646504|646505|646506|646507|646508|646509|646510|646511|646512|646513|646514|646515|646516|646517|646518|646519|646520|646521|646522|646523|646524|646525|646526|646527|646528|646529|646530|646531|646532|646533|646534|646535|646536|646537|646538|646539|646540|646541|646542|646543|646544|646545|646546|646547|646548|646549|646550|646551|646552|646553|646554|646555|646556|646557|646558|646559|646560|646561|646562|646563|646564|646565|646566|646567|646568|646569|646570|646571|646572|646573|646574|646575|646576|646577|646578|646579|652676|653015|653333|653345|656461|669498|688806|688807|688808|688809|688810|688811|688813|688814|688815|690183|694167|694168|695767|704305|715631|727359|740968|740969|740970|756045|756046|756047|756048|756049|756053|756054|756055|756056|771733|771738|771739|771741|771742|771746|771747|771748|771750|771751|771753|771755|771756|771760|771761|771763|771766|771767|776384|785695|785696|785697|785705|785706|785707|785708|785710|814375|814379|814386|814399|814406|814407|814408|814409|821148|845963|845964|845965|845966|845967|845968|845969|845970|845971|845972|845973|845974|845975|845976|845977|845978|845979|845980|845981|845982|845983|845984|845985|845986|845987|845988|845989|845990|845991|845992|845993|845994|845995|845996|845997|845998|845999|846000|846001|846002|846003|846004|846005|846006|846007|846008|846009|846010|846011|846012|846013|846014|846015|846016|846017|846018|846019|846020|846021|846022|846023|846024|846025|846026|846027|846028|846029|846030|846031|846032|846033|846034|846035|846036|846037|846038|846039|846040|846041|846042|846043|846044|846045|846046|846047|846048|846049|846050|846051|846052|846053|846054|846055|846056|846057|846058|846059|846060|846061|846062|846063|846064|846065|846066|846067|846068|846069|846070|846071|846072|846073|846074|846075|846076|846077|846078|846079|846080|846081|846082|846083|846084|846085|846086|851749|852247|852250|852253|878246|878247|878248|878249|878250|878251|878252|878253|878254|878255|878256|878257|878258|878259|878260|878261|878262|878263|880568|928458|928459|928460|928461|928462|928463|928464|928465|928466|928467|928468|928469|928470|928471|928472|928473|928474|928475|928476|928477|928478|928479|928480|928481|928482|928483|928484|928485|928486|928487|928488|928489|928490|928491|928492|928493|928494|928495|928496|928497|928498|938146|938147|938148|938149|938150|938151|938152|938153|938154|938155|938156|938157|938158|938159|938160|938161|938162|938163|938164|938165|938166|938167|938168|938169|938170|938171|938172|938173|938174|938175|938176|938177|938178|938179|938180|938181|938182|938183|938184|941194|950188|950189|950190|950191|950192|950193|950194|950195|950196|950197|950198|950199|950200|950201|950202|950203|950204|950205|950206|950207|950208|950209|950210|950211|950212|950213|950214|950215|950216|950217|950218|950219|950220|950221|950222|950223|950224|950225|958269|958270|958271|958272|958273|958274|958275|958276|958277|958278|960234|960235|960236|960237", + "text": "Oligodontia-colorectal cancer syndrome" + }, + { + "baseId": "20922|140034|140035|140036|140038|140043|140044|140045|140046|140047|140048|140049|140050|140052|140053|178586|178587|178589|188434|188435|188458|188459|188463|189264|189285|189287|189291|189300|194666|212621|212622|221747|240192|258510|311851|396100|404774|457532|457989|481131|512827|625804|636409|799517|799518|799519|799520|919118|919119", + "text": "Long QT syndrome 11" + }, + { + "baseId": "20923|20924|20925|20926|20927|20928|20929|20930|20931|20932|20933|20934|225790|225791|227299|252373|252374|252375|252376|259250|259251|259256|300255|300256|300257|300259|300263|300266|300267|300268|300272|300275|300276|300277|300282|300283|300288|300290|300298|300300|300301|300307|300311|300312|300313|300318|300322|300325|303010|303012|303015|303016|303017|303019|303021|303025|303027|303028|303030|303038|303039|303042|303043|303044|303052|303066|303068|303078|303079|303098|303099|303100|303122|303123|303127|303143|307460|307461|307463|307474|307476|307477|307478|307486|307492|307493|307494|307500|307504|307506|307516|307518|307529|307533|307537|307556|307557|307567|307568|307569|307583|307610|307612|307619|307627|307628|307629|307691|307692|307701|307703|307705|307713|307715|307716|307724|307726|307728|307737|307740|307746|307749|307751|307752|307754|307757|307765|307766|307767|307773|307774|307790|307799|307808|307809|552287|620232|620789|710537|722049|750100|896371|896372|896373|896374|896375|896376|896377|896378|896379|896380|896381|896382|896383|896384|896385|896386|896387|896388|896389|896390|896391|896392|896393|896394|896395|896396|896397|896398|896399|896400|896401|896402|896403|896404|896405|896406|896407|896408|896409|896410|896411|896412|896413|896414|896415|896416|896417|896418|896419|896420|896421|896422|896423|896424|896425|896426|896427|896428|896429|896430|896431|896432|896433|896434|896435|896436|896437|896438|896439|896440|896441|896442|896443|896444|896445|896446|896447|896448|896449|896450|896451|896452|896453|896454|896455|896456|900233", + "text": "Xeroderma pigmentosum variant type" + }, + { + "baseId": "20935|20936|20937|20938|20939|20941|20942|20943|20944|20947|20948|20949|20950|20951|20952|20955|20956|20957|20958|20959|20960|20962|34003|34004|34005|34006|34007|34008|34009|34012|34013|34014|91506|91507|98768|98768|98769|98770|98770|98771|98771|135674|135674|135675|135675|135676|135676|135677|135678|135678|135679|135680|135681|135681|135682|135683|135683|135684|135685|135686|135686|135687|135687|135688|135688|152917|152918|152919|178051|191492|191494|192958|194295|194296|208411|213911|222956|222957|222958|223736|244118|247138|256315|256316|256317|256318|256319|256320|256321|256322|256323|256327|256327|256329|256332|256333|256335|256336|256337|265609|267376|269339|329360|329362|329367|329369|329371|329373|329379|329380|329382|329383|329385|329389|329390|329392|329395|329397|329399|339613|339614|339615|339620|339621|339625|339628|339637|339639|339643|339644|339649|339650|339652|339653|339654|339656|339658|339662|339663|339663|339669|339670|339672|339673|339679|339681|339683|339684|339686|339687|339689|345371|345376|345377|345380|345382|345384|345386|345389|345394|345398|345399|345401|345403|345404|345406|345408|345412|345415|345416|345419|345423|345424|345424|345425|346746|346753|346755|346760|346762|346764|346768|346772|346773|346775|346778|346779|346781|346786|346786|346789|346790|346791|346792|346793|346797|361024|361025|375476|375483|375484|375491|376499|376504|376506|376513|378624|378634|378651|378652|410169|410170|410172|410173|415580|422186|422187|422188|426240|426242|430000|430003|430005|441986|441988|441992|441994|441996|442001|442004|442005|442007|442008|442010|442011|445853|445855|466199|467198|467200|467202|467203|467209|467211|467215|467222|467224|468152|468163|468164|468166|468168|468173|468176|468535|468539|468542|468545|468547|468550|468760|468761|468763|468768|468774|468780|468781|468784|468794|468795|468803|468812|468822|506287|506288|506293|506655|531456|531458|531465|531466|531467|531472|531474|531481|531487|531488|531569|531574|531589|531591|531593|531599|531600|531608|531610|531616|531617|531704|531706|531709|531711|531714|531907|531909|531916|531917|531918|531924|531926|531930|531934|531937|531938|531940|536951|569478|569480|569487|569488|569502|569503|569505|569507|569512|569513|569517|569520|571437|571439|571448|571455|571456|571459|571466|571470|572002|572007|572008|572012|572014|572015|572025|572026|572032|574567|574568|574569|574570|574571|574572|574573|574574|574575|574576|574577|574578|577655|577657|577658|577659|577668|577669|577672|577673|582749|646389|646390|646391|646392|646393|646394|646395|646396|646397|646398|646399|646400|646401|646402|646403|646404|646405|646406|646407|646408|646409|646410|646411|646412|646413|646414|646415|646416|646417|646418|646419|646420|646421|646422|646423|646424|646425|646426|646427|646428|646429|646430|646431|646432|646433|646434|646435|646436|646437|646438|646439|646440|646441|646442|652833|653331|656459|656460|694142|694143|694146|694149|694150|694151|694152|694153|694155|694160|694162|695765|695766|704284|704285|704286|704290|715624|715626|727344|727345|727346|731175|740942|740945|756033|756036|756039|771718|771722|771723|776370|785689|793699|797587|797588|845850|845851|845852|845853|845854|845855|845856|845857|845858|845859|845860|845861|845862|845863|845864|845865|845866|845867|845868|845869|845870|845871|845872|845873|845874|845875|845876|845877|845878|845879|845880|845881|845882|845883|845884|845885|845886|845887|845888|845889|845890|845891|845892|845893|845894|845895|845896|845897|845898|845899|845900|845901|845902|845903|845904|845905|845906|845907|845908|851747|852235|852238|878131|878132|878133|878134|878135|878136|878137|878138|878139|878140|878141|878142|878143|878144|878145|878146|878147|878148|878149|878150|878151|878152|878153|878154|878155|878156|878157|878158|878159|878160|878161|878162|878163|878164|878165|878166|919760|919761|919762|920379|920922|928439|928440|928441|928442|928443|928444|928445|928446|928447|928448|928449|928450|928451|928452|928453|938118|938119|938120|938121|938122|938123|938124|938125|938126|938127|938128|938129|938130|938131|940426|941193|950135|950136|950137|950138|950139|950140|950141|950142|950143|950144|950145|950146|958238|958239|958240|958241|958242|958243|958244|958245|958246|958247|958248|958249", + "text": "Familial hyperkalemic periodic paralysis" + }, + { + "baseId": "20935|20936|20939|20961", + "text": "Paramyotonia congenita/hyperkalemic periodic paralysis" + }, + { + "baseId": "20937|20938|20941|20942|20943|20944|20946|20948|20954|20960|20962|20963|34005|34006|34014|91506|98768|98768|98770|98770|98771|98771|135674|135674|135675|135675|135676|135676|135677|135678|135678|135679|135680|135681|135681|135682|135683|135683|135684|135685|135686|135686|135687|135687|135688|135688|152918|178051|191494|192958|194295|247138|256315|256316|256317|256318|256319|256320|256321|256322|256323|256327|256327|256329|256332|256333|256335|256336|256337|329360|329362|329365|329367|329369|329371|329373|329379|329380|329382|329383|329385|329389|329390|329392|329395|329397|329399|339613|339614|339615|339620|339621|339623|339625|339628|339637|339639|339643|339644|339649|339650|339652|339653|339654|339656|339658|339662|339663|339663|339669|339670|339672|339673|339679|339681|339683|339684|339686|339687|339689|345371|345376|345377|345380|345381|345382|345384|345386|345389|345394|345398|345399|345401|345403|345404|345406|345408|345412|345415|345416|345419|345423|345424|345424|345425|346746|346753|346754|346755|346760|346762|346763|346764|346768|346772|346773|346775|346778|346779|346781|346786|346786|346789|346790|346791|346792|346793|346797|422187|426240|442008|468176|468535|511016|531474|531569|531926|569488|569512|571437|571456|574567|577672|646390|646397|646412|646434|656460|694143|694149|694153|694160|704284|704290|740942|797587|845908|878131|878132|878133|878134|878135|878136|878137|878138|878139|878140|878141|878142|878143|878144|878145|878146|878147|878148|878149|878150|878151|878152|878153|878154|878155|878156|878157|878158|878159|878160|878161|878162|878163|878164|878165|878166|964491", + "text": "Paramyotonia congenita of von Eulenburg" + }, + { + "baseId": "20939|65738|79451|263271|360889|513940|514033|514074|801513|965484|965579", + "text": "Focal seizures" + }, + { + "baseId": "20940", + "text": "Paramyotonia congenita/myotonia congenita" + }, + { + "baseId": "20940|20942|20944|20947|20949|20959|34005|34006|34014|91506|98768|98768|98770|98770|98771|98771|135674|135674|135675|135675|135676|135676|135677|135678|135678|135679|135680|135681|135681|135682|135683|135683|135684|135685|135686|135686|135687|135687|135688|135688|152918|178051|191494|192958|194295|247138|256315|256316|256317|256318|256319|256320|256321|256322|256323|256327|256327|256329|256332|256333|256335|256336|256337|329360|329362|329365|329367|329369|329371|329373|329379|329380|329382|329383|329385|329389|329390|329392|329395|329397|329399|339613|339614|339615|339620|339621|339623|339625|339628|339637|339639|339643|339644|339649|339650|339652|339653|339654|339656|339658|339662|339663|339663|339669|339670|339672|339673|339679|339681|339683|339684|339686|339687|339689|345371|345376|345377|345380|345381|345382|345384|345386|345389|345394|345398|345399|345401|345403|345404|345406|345408|345412|345415|345416|345419|345423|345424|345424|345425|346746|346753|346754|346755|346760|346762|346763|346764|346768|346772|346773|346775|346778|346779|346781|346786|346786|346789|346790|346791|346792|346793|346797|422187|426240|442008|468176|468535|531474|531569|531926|569488|569512|571437|571456|574567|577672|608846|646390|646397|646412|646434|656460|694143|694149|694153|694160|704284|704290|740942|797587|845908|878131|878132|878133|878134|878135|878136|878137|878138|878139|878140|878141|878142|878143|878144|878145|878146|878147|878148|878149|878150|878151|878152|878153|878154|878155|878156|878157|878158|878159|878160|878161|878162|878163|878164|878165|878166|964492", + "text": "Potassium-aggravated myotonia" + }, + { + "baseId": "20941|20957|20958", + "text": "Normokalemic periodic paralysis, potassium-sensitive" + }, + { + "baseId": "20945", + "text": "Myotonia congenita, atypical, acetazolamide-responsive" + }, + { + "baseId": "20948", + "text": "SCN4A-related disorder" + }, + { + "baseId": "20950|20951|20952|20955|20956|34005|34006|34007|34014|91506|98768|98768|98770|98770|98771|98771|135674|135674|135675|135675|135676|135676|135677|135678|135678|135679|135680|135681|135681|135682|135683|135683|135684|135685|135686|135686|135687|135687|135688|135688|152917|152918|152919|178051|191494|192958|194295|247138|256315|256316|256317|256318|256319|256320|256321|256322|256323|256327|256327|256329|256332|256333|256335|256336|256337|329360|329362|329367|329369|329371|329373|329379|329380|329382|329383|329385|329389|329390|329392|329395|329397|329399|339613|339614|339615|339620|339621|339625|339628|339637|339639|339643|339644|339649|339650|339652|339653|339654|339656|339658|339662|339663|339663|339669|339670|339672|339673|339679|339681|339683|339684|339686|339687|339689|345371|345376|345377|345380|345382|345384|345386|345389|345394|345398|345399|345401|345403|345404|345406|345408|345412|345415|345416|345419|345423|345424|345424|345425|346746|346753|346755|346760|346762|346764|346768|346772|346773|346775|346778|346779|346781|346786|346786|346789|346790|346791|346792|346793|346797|422187|426240|442008|468176|468535|531474|531569|531926|569488|569512|571437|571456|574567|577672|646390|646397|646412|646434|656460|694143|694149|694153|694160|704284|704290|740942|797587|845908|858744|878131|878132|878133|878134|878135|878136|878137|878138|878139|878140|878141|878142|878143|878144|878145|878146|878147|878148|878149|878150|878151|878152|878153|878154|878155|878156|878157|878158|878159|878160|878161|878162|878163|878164|878165|878166", + "text": "Hypokalemic periodic paralysis, type 2" + }, + { + "baseId": "20950|20951|20952|20955|32662|32662|32663|32663|32664|32664|32669|32669|32670|33886|33887|34003|34007|79970|79970|152916|171056|194182|196497|196498|196498|196500|196500|205724|227189|227189|227190|227190|249594|249594|249595|249596|249599|249601|249602|249603|249605|249607|249607|249608|249608|249609|249609|249610|249610|249611|249611|249612|249613|249613|249615|249615|249616|249618|249618|249619|249621|249621|249623|249623|249624|249624|249625|249626|249628|249628|249629|249629|249633|249633|249634|249635|249635|249636|249636|249637|249638|249638|249639|249639|249640|249640|249641|249642|249642|249643|249643|249644|249644|249646|249646|249647|249648|249648|249649|249649|249651|249651|249652|249652|249653|249653|249654|249655|249655|249656|249657|249657|249658|249658|249659|249660|249660|259644|263994|263994|278347|278349|278355|278356|278356|278357|278357|278359|278359|278361|278361|278362|278363|278363|278368|278369|278371|278372|278372|278376|278376|278377|278379|278379|278384|278384|278385|278386|278391|278395|278398|278405|278405|278411|278422|278423|278423|278424|278424|278426|278438|278446|278446|278451|278451|278460|279473|279473|279475|279475|279478|279489|279501|279515|279515|279518|279518|279519|279523|279523|279533|279554|279555|279555|279557|279562|279562|279563|279563|279566|279567|279573|279574|279575|279579|279579|279581|279581|279586|279590|279590|279601|279605|279606|279606|279607|279607|279608|279608|279611|279611|279619|279619|279620|279621|279621|279640|279640|279646|279646|279649|279649|279658|279658|279659|279659|279661|279661|279665|279665|279671|279671|279672|279672|279675|279675|279685|279685|279687|279687|279688|279689|279689|279705|279706|279709|359213|364590|364594|364595|364712|364712|364714|364715|364719|364720|364723|364732|364739|364746|364764|364767|364770|364770|364794|364797|364801|389351|389351|389357|405008|405009|405010|405011|405012|413260|413260|414755|421195|421195|425328|438575|440422|440423|440424|440426|440427|442691|442692|442693|442695|447385|447395|447398|447399|447402|447413|447495|447496|447498|447498|447507|447513|447514|447516|447523|447524|447524|447528|447531|447531|447539|447540|447540|447594|447601|447601|447604|447611|447612|447618|447619|447622|447627|447629|447632|447633|447635|447636|447638|447639|447640|447641|447646|447648|447654|447657|447666|447675|447676|447676|481576|495100|498170|498172|498183|498183|498193|498195|498205|498209|498233|498327|498361|515342|515348|515358|515360|515365|515412|515417|515420|515423|515425|515427|515431|515432|515444|515445|515445|515449|515458|515459|515459|515464|515465|515467|515469|515470|515471|515472|515473|515474|515476|515482|515485|515486|515486|515491|515492|515506|515506|515507|536571|538944|556738|556740|556742|556744|556746|556748|556748|556750|556752|556752|556773|556775|556777|556779|556781|556783|556785|556787|556789|557088|557090|557092|557094|557096|557098|557100|557102|557104|557106|557106|557108|558286|558288|558290|558292|558294|558296|558298|558300|558309|558311|558313|558315|576456|576456|576456|578373|582270|626306|627230|627231|627232|627233|627234|627235|627236|627237|627238|627239|627240|627241|627242|627243|627244|627245|627246|627247|627248|627249|627250|627251|627252|627253|627254|627255|627256|627257|627258|627259|627260|627261|627262|627262|627263|627264|627265|627266|627267|627268|627269|627270|627271|627272|627273|627274|650600|650605|650615|650716|680038|683297|683298|683299|683300|683301|683302|685603|685604|685605|685605|685606|685610|685613|685614|685615|685615|685617|685619|685619|685620|685622|685623|685624|689636|689637|689639|690442|690443|690444|690448|690450|718509|731994|745976|745982|761465|761465|774431|780437|780438|780444|787022|789912|789913|794524|794532|794534|794534|823174|823175|823176|823177|823178|823179|823180|823181|823182|823183|823184|823185|823186|823187|823188|823189|823190|823191|823192|823193|823194|823195|823196|823197|823198|823199|823200|823201|823202|823203|823204|823205|823206|823207|823208|823209|823210|823211|823212|823213|823214|823215|823216|823217|823218|823219|823220|823221|823222|851263|858893|863237|863238|863239|863240|863241|863242|863243|863244|863245|863246|863247|863247|863248|863249|863250|863251|863252|863253|863254|863255|863256|863257|863258|863259|863260|863261|863262|863263|863264|863265|865085|865086|865087|865088|865089|921790|921791|921792|921793|921794|921795|921796|921797|921798|921799|921800|921801|921802|921803|930220|930221|930222|930223|930224|930225|930226|930227|930228|930229|930230|930231|930232|930233|930234|930235|930236|930237|930238|939787|939788|940614|941649|941650|941651|941652|941653|941654|941655|952205|952206|952207|952208|952209|952210|952211|952212|952213|960417|964140|970670|971575", + "text": "Hypokalemic periodic paralysis 1" + }, + { + "baseId": "20953|34005|34006|34013|34014|91506|98768|98768|98770|98770|98771|98771|135674|135674|135675|135675|135676|135676|135677|135678|135678|135679|135680|135681|135681|135682|135683|135683|135684|135685|135686|135686|135687|135687|135688|135688|152918|178051|191494|192958|194295|213911|247138|256315|256316|256317|256318|256319|256320|256321|256322|256323|256327|256327|256329|256332|256333|256335|256336|256337|329360|329362|329367|329369|329371|329373|329379|329380|329382|329383|329385|329389|329390|329392|329395|329397|329399|339613|339614|339615|339620|339621|339625|339628|339637|339639|339643|339644|339649|339650|339652|339653|339654|339656|339658|339662|339663|339663|339669|339670|339672|339673|339679|339681|339683|339684|339686|339687|339689|345371|345376|345377|345380|345382|345384|345386|345389|345394|345398|345399|345401|345403|345404|345406|345408|345412|345415|345416|345419|345423|345424|345424|345425|346746|346753|346755|346760|346762|346764|346768|346772|346773|346775|346778|346779|346781|346786|346786|346789|346790|346791|346792|346793|346797|422187|426240|442008|467224|468176|468535|531474|531569|531714|531926|569488|569512|571437|571456|574567|577672|646390|646397|646412|646434|656460|694143|694149|694153|694160|704284|704290|740942|797587|798721|798722|845908|878131|878132|878133|878134|878135|878136|878137|878138|878139|878140|878141|878142|878143|878144|878145|878146|878147|878148|878149|878150|878151|878152|878153|878154|878155|878156|878157|878158|878159|878160|878161|878162|878163|878164|878165|878166", + "text": "Congenital myasthenic syndrome, acetazolamide-responsive" + }, + { + "baseId": "20964|20965|20966|20967|20968|20969|20970|20971|20972|20973|20974|20975|20976|20977|20979|39362|251068|266845|289715|289720|289721|289724|289725|290487|290488|290489|290490|290494|290500|290501|290508|290510|293566|293570|293577|293578|293606|293610|293621|293622|293624|293644|294147|294148|294149|294155|294157|294163|294166|294167|294173|294176|294177|294178|294179|294182|432291|536194|536195|551446|679900|720351|790374|888526|888527|888528|888529|888530|888531|888532|888533|888534|888535|888536|888537|888538|888539|888540|888541|888542|888543|888544|888545|888546|888547|888548|888549|888550|888551|888552|888553|888554|888555|888556|888557|888558|888559|891630|921194|962698|970763", + "text": "Primary hypomagnesemia" + }, + { + "baseId": "20978", + "text": "Hypercalciuria, childhood, self-limiting" + }, + { + "baseId": "20980", + "text": "Hypertension, diastolic, resistance to" + }, + { + "baseId": "20992|20993|172315|172315|172317|172319|366990|366994|368248|500572|518913|519128|538972|562485|562493|630982|630983|630984|827613|827614|931798|943367|953362", + "text": "Glycogen storage disease XV" + }, + { + "baseId": "20994|20995|20996|20997|20998|20999|21000|21001|21002|21003|135764|135765|135766|265447|277092|277098|277101|277102|277109|277129|277131|277132|277134|277142|277367|277368|277371|277386|277388|277391|277392|277399|277400|277407|277414|278152|278186|278187|278202|278207|278216|278218|278225|278230|278232|278233|278234|278245|278255|364528|425321|485690|485691|498115|590454|590455|619963|620707|794474|862676|862677|862678|862679|862680|862681|862682|862683|862684|862685|862686|862687|862688|862689|862690|862691|862692|862693|862694|862695|862696|862697", + "text": "Megaloblastic anemia, thiamine-responsive, with diabetes mellitus and sensorineural deafness" + }, + { + "baseId": "21004|21005|21006|21007|21009|21010|88254|106456|177385|178020|227323|263798|265746|305498|305503|314723|431733|513070|551554|551555|551556|788828|799550|799551|799552|799553|799554|799555|818257|919160|919161|970882", + "text": "Retinitis pigmentosa 1" + }, + { + "baseId": "21011|21012|94254|364011|404818|463433|463435|463436|464000|464001|464017|464328|464330|464336|464337|464344|464443|464445|464446|464453|486753|486754|486755|527836|528268|528323|528324|528329|528331|528336|528339|528341|528698|528703|528780|566587|566601|567758|568236|568237|568238|572615|572884|572885|572890|642635|642636|642637|642638|652358|652560|652964|725762|739285|778076|778293|784746|784747|787976|820634|820635|820636|820637|820638|820639|820640|820641|841663|841664|841665|841666|841667|841668|841669|841670|841671|841672|841673|851571|851573|852011|927147|927148|927149|936685|936686|936687|940310|941065|948632|948633|948634|957264|960096", + "text": "Molybdenum cofactor deficiency, complementation group C" + }, + { + "baseId": "21012|292646|292670|297436|302791|313547|313556|313557|313576|313577|313581|313583|313584|313586|313588|313589|313593|313595|313596|313597|313604|313606|313615|313617|313619|319757|319758|319759|319760|319765|319773|319775|319776|319778|319789|319791|319799|319801|325930|325934|325935|325939|325940|325946|325957|325977|325978|325983|325988|325993|326885|326886|326890|326892|326893|326901|326902|326903|326919|326920|326923|326932|326947|326948|326956|326958|326962|353179|353180|353668", + "text": "Hyperekplexia" + }, + { + "baseId": "21012|31099|31100|31101|31102|31103|31104|31105|31106|31107|31108|31109|31110|31111|31112|31113|46891|46892|46893|46894|46896|46897|46898|46899|46901|46902|49426|166114|227283|296498|296505|296506|296507|296508|296512|296514|298404|298405|298406|298411|298412|298414|302510|302516|302517|302518|302524|302771|302779|302782|302783|302787|302789|302792|454765|454769|454773|454824|454825|454827|455328|455330|455624|455628|455632|480412|513277|520937|520942|520944|521175|521176|521181|521372|521413|521416|521426|521430|535737|559964|560221|560223|560225|560227|560229|560340|560342|560344|563001|563003|564942|564945|564948|564956|564966|564973|620781|633656|633657|633658|633659|633660|633661|633662|633663|633664|651228|651313|654380|691809|691810|709767|721338|721340|734980|764981|787318|798554|798555|830548|830549|830550|830551|830552|830553|830554|830555|830556|830557|830558|830559|830560|851270|893641|893642|893643|896065|896066|918937|923956|923957|923958|923959|932804|932805|932806|939997|940809|940810|944498|944499|944500|944501|944502|944503|944504|954097|954098|959760|960558", + "text": "Hyperekplexia 1" + }, + { + "baseId": "21013", + "text": "FACTOR VII-ACTIVATING PROTEASE MARBURG I POLYMORPHISM" + }, + { + "baseId": "21013|31459", + "text": "Venous thromboembolism, susceptibility to" + }, + { + "baseId": "21013", + "text": "THYROID CANCER, NONMEDULLARY, 5, SUSCEPTIBILITY TO" + }, + { + "baseId": "21013|309516|309517|309521|309526|309527|309531|309532|309533|309537|309539|309542|309544|309548|309555|309572|314323|314324|314334|314335|314336|314337|314338|314342|314345|314349|314354|320281|320283|320285|320300|320309|320310|320314|320316|320326|320341|320351|320354|320357|320359|320360|320366|320367|320745|320753|320754|320755|320759|320762|320770|320782|320793|320794|320808|320828|320830|320831|620345|723772|723773|723774|865445|865446|865447|865448|865449|865450|865451|865452|865453|865454|865455|865456|865457|865458|865459|865460|865461|865462|865463|865464|865465|865466|865467|865468|865469|865470|865471|865472|865473|865474|865475|865476|865477|865478|865479|865480|868445|868446|868447|868448|868449", + "text": "Factor VII Marburg I Variant Thrombophilia" + }, + { + "baseId": "21014|21015|21016|21017|76940|143061|143062|143063|143064|143065|143066|143067|143069|143070|200259|200264|200267|200271|200273|200277|254851|273105|319895|319899|319904|319905|319909|319910|328423|328426|334877|334879|334881|334882|334883|334884|336683|336684|336721|336725|336748|336769|336775|336776|513339|527736|527765|612302|641944|677066|693381|693382|725502|753856|753857|769572|791345|861130|871370|871371|871372|871373|871374|871375|871376|871377|871378|871379|871380|871381|871382|872339|872340|872341|872342", + "text": "Mitochondrial DNA depletion syndrome 5 (encephalomyopathic with or without methylmalonic aciduria)" + }, + { + "baseId": "21018", + "text": "ABri amyloidosis" + }, + { + "baseId": "21019|964404", + "text": "ADan amyloidosis" + }, + { + "baseId": "21020|21020|39353|39354|39356|48063|48065|48065|53941|53943|53944|53945|53946|53947|53947|53948|53948|53949|53949|53950|53951|53951|53952|53953|53953|53956|53957|53958|53959|140194|140196|140196|140197|140198|166295|174606|174610|174612|174612|174613|174614|174615|174615|174616|174619|174620|174620|174883|174886|174887|174887|174888|174888|174889|174890|174893|174893|174894|174894|174896|174896|174897|174897|178610|178610|188821|189835|189836|189839|189841|189841|189842|189842|192373|192373|193540|198232|198233|198233|198236|198237|198238|221940|224381|224383|229736|229738|229739|229739|229741|229742|229744|236775|236776|240749|240750|240750|240751|240752|240753|258631|258632|258634|264448|267801|278736|309573|309573|309575|309576|314356|314357|314357|314361|314361|314365|320371|320373|320378|320381|320389|320389|320396|320396|320399|320399|320415|320416|320846|320847|320848|320849|320861|320862|359800|359829|359836|370643|371177|371184|371184|371190|371575|371576|371579|371583|397158|397162|397176|397397|397399|397400|397403|397406|397557|397564|397569|397630|397717|397725|397734|397739|397741|407817|407821|421776|421778|444560|459701|459894|459895|459898|460134|460138|460145|460151|460153|460617|495662|502751|502753|503135|503142|503287|503583|510148|510149|510150|510151|510154|510155|524982|524986|524987|524991|524993|525203|525204|525210|525319|525321|525323|525326|525411|525486|525490|525492|525499|525501|525506|525519|563588|563589|564497|564499|564504|564505|566103|566176|566178|566179|566181|566183|566184|566186|569508|569514|611727|638740|638741|638742|638743|638744|638745|638746|638747|638748|638749|638750|638751|638752|638753|638754|638755|638756|638757|652088|652124|652253|687590|687591|687592|687593|751987|767651|783543|783546|836651|836652|836653|836654|836654|836655|836656|836657|836658|836659|836660|836661|836662|836663|836664|836665|836666|836667|836668|836669|836670|836671|836672|836673|836674|836675|836676|836677|865481|865482|865483|865484|865485|865486|865487|865488|868450|925752|925753|925754|925755|925756|925757|925758|934965|934966|934967|934968|934969|934970|934971|934972|934973|934974|934975|940951|946826|946827|946828|946829|946830|946831|946832|946833|946834|946835|955991|955992|955993|955994|955995|955996|955997|955998|955999|956000|956001|956002|967230", + "text": "Myofibrillar myopathy, BAG3-related" + }, + { + "baseId": "21020|39352|39353|39353|39354|39354|39355|39356|39356|48063|48063|48064|48065|48065|53941|53943|53944|53945|53946|53947|53947|53948|53948|53949|53950|53951|53951|53952|53953|53953|53956|53957|53958|53959|140194|140196|140196|140197|140198|174606|174610|174612|174612|174613|174614|174615|174615|174616|174619|174620|174620|174883|174886|174887|174888|174888|174889|174890|174893|174894|174894|174896|174896|174897|174897|178610|178610|188821|189835|189836|189839|189841|189841|189842|189842|192373|192373|193540|198232|198233|198233|198236|198237|198238|221940|224381|224383|229736|229738|229739|229739|229741|229742|229744|236775|236776|240749|240750|240750|240751|240752|240753|258631|258632|258634|264448|267801|309573|309573|309575|309576|314356|314357|314357|314361|314361|314365|320371|320373|320378|320381|320389|320389|320396|320396|320399|320399|320415|320416|320846|320847|320848|320849|320861|320862|359800|359829|359836|370643|371177|371184|371184|371190|371575|371576|371579|371583|397158|397162|397176|397178|397397|397399|397400|397403|397406|397557|397564|397567|397569|397630|397717|397725|397734|397739|397741|407817|407821|421776|421778|424965|444560|459701|459894|459895|459898|460134|460138|460145|460151|460153|460617|495662|502751|502753|503135|503142|503287|503583|510148|510149|510150|510151|510154|510155|524982|524986|524987|524991|524993|525203|525204|525210|525319|525321|525323|525326|525411|525486|525490|525492|525499|525501|525506|525519|538626|563588|563589|564497|564499|564504|564505|566103|566176|566178|566179|566181|566183|566184|566186|569508|569514|611727|625807|638740|638741|638742|638743|638744|638745|638746|638747|638748|638749|638750|638751|638752|638753|638754|638755|638756|638757|652088|652124|652253|687590|687591|687592|687593|751987|767651|783543|783546|800401|836651|836652|836653|836654|836654|836655|836656|836657|836658|836659|836660|836661|836662|836663|836664|836665|836666|836667|836668|836669|836670|836671|836672|836673|836674|836675|836676|836677|865481|865482|865483|865484|865485|865486|865487|865488|868450|925752|925753|925754|925755|925756|925757|925758|934965|934966|934967|934968|934969|934970|934971|934972|934973|934974|934975|940951|946826|946827|946828|946829|946830|946831|946832|946833|946834|946835|955991|955992|955993|955994|955995|955996|955997|955998|955999|956000|956001|956002", + "text": "Dilated cardiomyopathy 1HH" + }, + { + "baseId": "21021|21022|21023|21024|21025|21026|21027|21028|21029|21030|237033|255305|322978|322979|322988|322989|322993|322995|322996|332529|332530|332531|332533|332538|332539|332547|332549|332557|332562|332568|332575|332576|332580|332595|332597|339482|339485|339493|339499|339506|339509|339514|339515|340919|340922|340924|340926|340927|340931|340932|340935|340936|340943|404822|409311|429705|429706|445391|464784|464999|528934|528939|529048|529049|529382|567204|567206|569023|569534|569535|573417|643437|643438|643439|643440|643441|643442|652397|652680|652686|754546|784968|842554|842555|842556|842557|842558|842559|873876|873877|873878|873879|873880|873881|873882|873883|873884|873885|873886|873887|873888|873889|873890|873891|873892|873893|873894|873895|873896|873897|873898|873899|873900|873901|873902|873903|873904|873905|873906|873907|873908|873909|873910|873911|873912|873913|873914|876544|876545|927382|927383|927384|927385|936997|936998|941093|948949|957459|957460|963174", + "text": "Griscelli syndrome type 2" + }, + { + "baseId": "21031|21032|21033|21034|21035|21036|21037|21038|21039|46956|46958|46959|46960|46962|46963|142828|142829|142830|200257|319824|319829|319833|319837|319839|319841|319848|319850|319854|319857|319858|319859|319871|319872|319876|328351|328357|328359|328371|328373|328382|328383|328385|328386|334805|334809|334810|334814|334823|334824|334829|334831|334833|334838|334846|336535|336540|336546|336563|336565|336567|336568|336583|336589|336595|336610|336612|336614|336617|336620|336621|336629|336635|336651|372834|373857|375688|409028|426045|504803|538434|568548|572172|610519|641941|641942|641943|693379|693380|713928|753845|753846|776219|784603|840891|840892|840893|852540|871315|871316|871317|871318|871319|871320|871321|871322|871323|871324|871325|871326|871327|871328|871329|871330|871331|871332|871333|871334|871335|871336|871337|871338|871339|871340|871341|871342|871343|871344|871345|871346|871347|871348|871349|871350|871351|926918|926919|926920|936446|957105|957106|957107|961871|979378|979379|979380|979381|979382|979383", + "text": "Hyperornithinemia-hyperammonemia-homocitrullinuria syndrome" + }, + { + "baseId": "21041|21042|21043|21044|21045|21046|34360|34369|97542|190535|191566|200164|200164|227314|247322|252988|252989|274313|303680|303681|303690|303693|303697|303698|303699|303706|303715|307111|307112|307115|307116|307119|307122|307124|307127|312042|312049|312060|312061|312066|312067|312069|312077|312078|312080|312094|312111|312113|312132|312144|404776|444192|493370|578465|586473|587153|588213|588761|620281|687143|692336|766492|898557|898558|898559|898560|898561|898562|898563|898564|898565|898566|898567|898568|898569|900421|900422|900423|900424", + "text": "Citrullinemia type II" + }, + { + "baseId": "21041|21042|21043|21045|34360|34361|34362|34363|34364|34365|34366|34367|34368|34369|97542|200164|227314|247321|247322|247323|247324|247325|247326|404776|578465|581759|581761|801657|801658|801659|801660", + "text": "Neonatal intrahepatic cholestasis caused by citrin deficiency" + }, + { + "baseId": "21041|21042|21043|21044|21045|34360|34364|34365|34367|34369|190535|191566|200164|227314|252990|271238|274313|274349|303698|303705|307115|307119|312065|312066|312094|312111|312113|312131|312132|312144|359822|369321|369322|370035|444192|458113|491041|492959|493326|493362|562318|567289|584576|585995|587153|588036|636492|636493|636494|636495|687143|692336|736363|750859|766492|766493|775202|775388|775429|790765|819926|819927|819928|833998|833999|834000|834001|834002|834003|851169|852395|852404|924962|924963|934048|934049|934050|934051|940886|945806|945807|955265|955266", + "text": "Citrin deficiency" + }, + { + "baseId": "21041|21044|34360|34369|190535|200164|227314|252988|274313|274349|303698|307115|312066|312094|567289|587153|687143|736363|766489|766492|978407|978408", + "text": "Late-onset citrullinemia" + }, + { + "baseId": "21047|21048|21049|21050|23797|28986|32735|33371|33372|138774|173810|173950|193532|229170|229171|229172|229173|231108|239357|239358|239359|239360|239361|239362|239363|239365|239366|239367|251487|251488|293425|293427|293428|293429|293433|293434|294824|294826|294836|294838|294839|294840|294843|294845|294846|294847|294855|294856|298453|298454|298455|298463|298466|298467|298468|298514|298516|298526|298527|298528|298529|298530|298538|298545|298546|393909|393911|393914|393919|393921|393925|393932|393933|394151|394152|394161|394164|394338|394351|394357|394360|394361|394366|421488|453167|453172|453174|453175|453177|453179|453183|453186|453196|453433|453438|453440|453451|453453|453455|453540|453541|453544|453546|453548|453549|453551|453553|453915|453916|453918|453919|453920|453924|453925|453927|453929|453930|473502|473506|473766|473769|473769|496319|496812|519909|519914|519926|519932|519937|519944|519952|519953|520167|520169|520172|520177|520191|520194|520196|520197|520198|520200|520204|520206|520208|552081|559683|559685|559687|559689|559691|559693|559840|559844|559846|559848|562017|563711|563716|563717|632205|632206|632207|632208|632209|632211|632212|632213|632214|632216|632217|632218|632219|632220|632221|632222|632223|632225|632226|632227|632228|632229|683633|686517|686518|686519|686522|686523|691563|691565|691566|691567|691568|709366|720981|748945|764465|774954|781958|790473|791190|807711|807714|829152|829153|829154|829155|829156|829157|829158|829159|829160|829161|829162|829163|829164|829165|829166|829167|829168|829169|829170|829171|829172|829173|829174|829175|829176|851504|857368|857369|857370|890665|890666|890667|890668|890669|890670|890671|890672|890673|890674|890675|890676|890677|890678|918895|973021", + "text": "Congenital central hypoventilation" + }, + { + "baseId": "21047|33373|138773|229171|393924|394157|453185|453435|473580|473763|520153|520182|520184|520191|559842|562022|563704|563707|632210|632215|632224|807706|807716|807720|807721|807725|807737|857370|923515|923516|923517|923518|923519|932339|932340|932341|932342|932343|932344|932345|932346|932347|932348|932349|932350|932351|939968|943999|944000|944001|944002|944003|944004|944005|944006|944007|944008|944009|944010|944011|944012|953776|953777|953778|953779|953780", + "text": "Haddad syndrome" + }, + { + "baseId": "21047", + "text": "Central hypoventilation syndrome, late-onset" + }, + { + "baseId": "21050|21053|173810|173950|229171|229172|229173|239357|239362|239363|239365|239366|293425|293427|293428|293433|293434|294824|294826|294836|294838|294839|294840|294843|294845|294846|294847|294856|298453|298454|298455|298463|298466|298468|298514|298516|298526|298527|298529|298530|298538|298545|298546|473766|473769|520191|890665|890666|890667|890668|890669|890670|890671|890672|890673|890674|890675|890676|890677|890678", + "text": "Neuroblastoma 2" + }, + { + "baseId": "21051|21052", + "text": "Neuroblastoma with Hirschsprung disease" + }, + { + "baseId": "21054|211614|211619|211619|211626|244178|247683|247684|247685|247686|247688|247689|361204|590603|590604|610426|610426|677437|791229|791230|791231|791232|919426|963114|964383|973843", + "text": "Encephalopathy due to defective mitochondrial and peroxisomal fission 1" + }, + { + "baseId": "21055|21056|21057|142196|660883|788777|971340", + "text": "Mitochondrial complex 1 deficiency, nuclear type 9" + }, + { + "baseId": "21058|21059|142193|626077", + "text": "Mitochondrial complex 1 deficiency, nuclear type 8" + }, + { + "baseId": "21060|21061|21061|21062|21064|21067|21067|21069|21072|21074|49657|101181|101181|186786|186788|191188|191188|192405|192405|193572|193572|194345|214934|253557|265528|266509|266511|266513|266783|266783|267092|267092|267466|267515|267515|268174|268685|268685|268688|268688|268728|269019|269057|269889|269922|270173|270389|270390|270409|270409|270676|271685|272186|272366|272669|272901|273291|274433|274456|274456|274461|274950|308311|308317|308318|308319|308320|308328|308329|308332|308334|308336|312724|312726|312735|312736|312737|312743|312744|312747|312748|312751|312752|312765|312768|312769|312771|312787|312793|312794|318605|318606|318613|318614|318616|318617|318619|318620|318627|318628|318635|318636|318637|318638|318640|318641|319156|319158|319161|319171|319172|319173|319182|319195|319201|319202|319203|319204|357803|370935|411514|444498|458653|459245|459549|459552|459556|459604|460097|489260|490006|490746|491769|491769|493162|503160|503160|524630|524633|524994|525157|525160|545150|545261|545444|563268|563269|564052|564059|564059|564067|564068|564070|565919|565922|569096|569103|569104|569105|569109|569120|587700|588110|588223|589743|620333|638318|638318|638319|638323|651848|655968|692674|692675|692676|692677|692678|723569|737133|767418|820140|820141|836158|836159|836160|836161|836162|836163|852188|902030|902031|902032|902033|902034|902035|902036|902037|902038|902039|902040|902041|902042|902043|902044|902045|902046|902047|902048|902049|902050|902051|902052|902053|902054|902055|902056|903407|925600|925601|934778|934779|934780|934781|934782|934783|946637|946638|946639|955851|955852|955853|955854", + "text": "Sialuria" + }, + { + "baseId": "21061|21064|21064|21065|21066|21067|21067|21068|21069|21069|21070|21071|21072|21072|21073|21074|21074|21075|23149|49657|49657|101181|101181|171864|186786|186786|186787|186788|186788|186789|186790|191188|191188|192405|192405|193571|193572|193572|194345|194345|214934|214934|253556|253557|265528|266509|266509|266511|266511|266513|266513|266783|266783|267092|267092|267466|267466|267486|267515|267515|268174|268174|268685|268685|268688|268688|268728|269019|269057|269057|269889|269889|269922|270173|270173|270251|270389|270390|270390|270409|270409|270676|270676|270841|271685|272186|272366|272366|272669|272669|272901|273291|273291|274433|274433|274456|274456|274461|274461|274660|274868|274950|274950|308311|308317|308318|308319|308320|308328|308329|308332|308334|308336|312724|312726|312735|312736|312737|312743|312744|312747|312748|312751|312752|312765|312768|312769|312771|312787|312793|312794|318605|318606|318613|318614|318616|318617|318619|318620|318627|318628|318635|318636|318637|318638|318640|318641|319156|319158|319161|319171|319172|319173|319182|319195|319201|319202|319203|319204|357791|357792|357793|357794|357795|357796|357797|357798|357799|357800|357801|357802|357803|357803|357804|357805|370935|411514|411514|432248|444498|444498|458653|459245|459245|459549|459552|459556|459604|460097|488371|488499|489260|489811|490006|490746|491133|491769|491769|493162|503160|503160|514593|524630|524633|524994|525157|525160|544871|544872|544874|544887|544890|544894|544896|544903|544905|544908|544910|544912|544914|545137|545138|545140|545142|545145|545150|545150|545161|545162|545163|545166|545170|545177|545256|545257|545258|545259|545261|545261|545268|545273|545279|545421|545423|545425|545428|545444|545444|545456|545457|563268|563269|564052|564059|564059|564067|564068|564070|565919|565922|565922|569096|569103|569104|569105|569105|569109|569120|587700|588110|588110|588223|589743|608905|610698|620333|638318|638318|638319|638323|651848|655968|692674|692675|692676|692677|692677|692678|723569|723569|730643|737133|767418|767418|800953|820140|820141|836158|836159|836160|836161|836162|836163|852188|902030|902031|902032|902033|902034|902035|902036|902037|902038|902039|902040|902041|902042|902043|902044|902045|902046|902047|902048|902049|902050|902051|902052|902053|902054|902055|902056|903407|919234|925600|925601|934778|934779|934780|934781|934782|934783|946637|946638|946639|955851|955852|955853|955854|959505|972035|972036|972037|972038|972039|972040|972041|978585|978586", + "text": "GNE myopathy" + }, + { + "baseId": "21077", + "text": "Caudal duplication anomaly" + }, + { + "baseId": "21078|141341|141342|167429|167430|167431|167432|167433|322550|322553|322554|322556|322560|331962|331966|331968|331975|331976|331982|331996|332002|332007|338948|338950|338952|338953|338960|338967|338969|338975|338977|340557|340558|340559|340562|340563|340565|340567|340569|340571|620514|703218|873534|873535|873536|873537|873538|873539|873540|873541|873542|873543|873544|873545|873546|873547|873548|873549|873550|873551|876512|876513|876514", + "text": "Peeling skin syndrome 2" + }, + { + "baseId": "21079|21080|21081|21082|21083|21084|21085|21086|21087|21088|21089|21090|193538|193539|227499|267611|267835|268588|270886|270894|273278|310812|310813|310820|310829|310830|310831|310832|310842|310844|310848|310850|310852|310858|310859|310862|310864|310866|310868|310870|310878|310884|310887|310890|310892|310895|310899|310907|310918|310919|310928|310929|310930|310931|316068|316069|316072|316073|316074|316082|316090|316094|316099|316103|316111|316112|316114|316120|316133|316144|316148|316149|316156|316162|316169|316174|316175|316176|316177|316180|316181|316189|316190|316200|316201|316204|316205|316210|316220|316221|316223|316226|322169|322170|322172|322183|322185|322190|322191|322192|322196|322197|322199|322200|322212|322213|322218|322231|322232|322233|322236|322239|322240|322241|322242|322245|322246|322254|322260|322261|322266|322267|322274|322275|322276|322780|322783|322784|322785|322786|322789|322790|322801|322802|322803|322804|322806|322807|322808|322815|322816|322822|322831|322832|322845|322849|322876|322879|322880|322882|322887|322888|322890|322891|322892|322893|322894|322896|322900|425884|472248|472249|512920|513596|513597|525455|620369|701425|724055|752256|789125|816473|866183|866184|866185|866186|866187|866188|866189|866190|866191|866192|866193|866194|866195|866196|866197|866198|866199|866200|866201|866202|866203|866204|866205|866206|866207|866208|866209|866210|866211|866212|866213|866214|866215|866216|866217|866218|866219|866220|866221|866222|866223|866224|866225|866226|866227|866228|866229|866230|866231|866232|866233|866234|866235|866236|866237|866238|866239|866240|935169|935170|947062|947063|956200|956201|956202", + "text": "Spondyloepiphyseal dysplasia with congenital joint dislocations" + }, + { + "baseId": "21091", + "text": "Long QT syndrome 6, acquired, susceptibility to" + }, + { + "baseId": "21091|21092|21093|21094|21094|78507|78508|78510|78511|78515|78517|78519|188750|188753|188755|188967|336609|336611|346324|346325|350564|351605|351606|378479|470616|471142|533812|551797|573766|575144|648944|680056|689239|689241|694624|848733|886690|886691|886692|886693|886694|939091|951214|951215", + "text": "Long QT syndrome 6" + }, + { + "baseId": "21091|21093|21094|21094|188750|188753|336609|336611|346324|346325|350564|351605|351606|886690|886691|886692|886693|886694", + "text": "Atrial fibrillation, familial, 4" + }, + { + "baseId": "21092|21093|21793|24432|33096|33097|33098|33099|44335|44351|44352|44353|44355|44356|44362|44431|44433|44434|44435|44436|44677|45087|45088|45089|45090|45091|45097|45098|45099|45100|45101|45134|45323|45324|45395|45401|45403|45406|45410|45417|45418|45420|54113|54182|54194|67645|67688|67792|78495|142592|175842|178650|188443|188452|188472|188668|188670|189253|189317|197104|197133|197134|197139|197142|197148|197150|197151|197158|197169|197174|197233|197253|197290|197294|197310|197313|197315|197325|197337|197350|197358|197365|197366|197375|197410|197464|198400|205385|205386|212999|226589|226591|243021|258310|269766|272264|376870|376874|402610|403204|406276|407049|456069|496730|532114|647054|647055|653064|679712|805511|846653|846654|846655|846656|906081|915029|917003|917085|921473|928653|928654|938373|950445|972557", + "text": "Cardiac arrhythmia" + }, + { + "baseId": "21092|188755", + "text": "KCNE2-Related Disorders" + }, + { + "baseId": "21095|24415", + "text": "Long qt syndrome 3/6, digenic" + }, + { + "baseId": "21096|21097|21098|21099|21100|29068|49653|49654|49655|204476|204477|213146|213147|213148|222442|222443|222444|222445|242188|244939|324039|324052|324063|324064|324076|324077|333657|333661|333665|333667|333670|333671|333676|333679|333681|333683|333687|333693|333695|333702|333704|340438|340441|340443|340444|340450|340452|340460|340464|340466|340468|341817|341818|341834|341839|341846|341848|374598|400519|401091|401097|445487|465485|465606|465607|465712|529277|529320|529599|529600|537259|567581|567589|567593|569767|569856|569859|569860|573687|573688|625311|643811|643812|643813|643814|643815|643816|643817|643818|643819|643820|643821|684571|688521|688522|785111|820761|842979|842980|842981|842982|874603|874604|874605|874606|874607|874608|874609|874610|874611|874612|874613|874614|874615|874616|874617|874618|927530|927531|927532|940340|949134|957594|957595", + "text": "Charcot-Marie-Tooth disease, type 1C" + }, + { + "baseId": "21101|21102|21103|21104|21105|21106|21108|21115|21116|792772", + "text": "Rothmund-Thomson syndrome type 2" + }, + { + "baseId": "21102|21102|21105|138872|138883|138909|207535|227319|240254|240305|240306|240322|253085|273145|395934|395939|396036|396053|396068|396151|396205|396253|396290|396314|396345|396668|396734|396762|457586|458168|458182|458213|458223|458324|458533|523739|523748|523840|550605|550606|552121|562098|562135|562527|564840|654505", + "text": "Rothmund-Thomson syndrome" + }, + { + "baseId": "21102|21102|21103|21105|21106|21111|21112|21114|21116|71037|71038|71042|71043|71044|71045|71046|100783|100788|100789|100790|100795|100796|100799|138865|138866|138867|138868|138869|138870|138871|138872|138872|138873|138874|138875|138877|138878|138879|138880|138881|138883|138883|138884|138885|138886|138887|138888|138889|138890|138891|138892|138893|138895|138896|138897|138901|138902|138903|138904|138905|138906|138907|138908|138909|138909|138910|138912|138913|138914|138915|190831|190832|191038|191127|191671|191906|194392|194920|194921|195949|195950|207535|207535|215381|215382|227319|240236|240237|240238|240239|240240|240241|240242|240243|240244|240245|240246|240247|240248|240249|240250|240251|240252|240253|240254|240254|240255|240256|240257|240258|240259|240260|240261|240263|240264|240265|240266|240267|240268|240269|240270|240271|240272|240273|240274|240275|240276|240277|240278|240279|240280|240281|240282|240283|240284|240285|240286|240287|240288|240289|240290|240291|240292|240293|240294|240295|240296|240297|240298|240299|240300|240301|240302|240303|240304|240305|240305|240306|240306|240307|240308|240309|240310|240311|240312|240313|240314|240315|240316|240317|240318|240319|240321|240322|240322|240323|240324|240325|240326|240327|240328|240329|240330|240331|240332|253086|266614|268634|271212|273145|273145|273927|274099|274986|395922|395924|395926|395927|395933|395934|395934|395937|395939|395939|395942|395946|395951|395956|395959|395960|395964|395980|395988|395989|396003|396006|396012|396019|396027|396028|396030|396032|396033|396036|396036|396038|396041|396043|396045|396050|396053|396053|396055|396060|396063|396066|396068|396068|396071|396072|396075|396078|396085|396088|396089|396090|396096|396098|396102|396115|396129|396132|396144|396145|396150|396151|396151|396156|396159|396160|396165|396167|396170|396174|396183|396187|396188|396205|396205|396218|396221|396222|396224|396231|396232|396236|396240|396241|396246|396253|396253|396257|396258|396267|396268|396271|396278|396280|396282|396290|396290|396294|396296|396299|396303|396304|396305|396308|396310|396311|396312|396314|396314|396320|396321|396323|396324|396325|396327|396329|396331|396332|396335|396337|396338|396345|396345|396346|396347|396348|396351|396353|396354|396355|396361|396363|396367|396368|396369|396370|396371|396374|396376|396377|396379|396380|396382|396383|396387|396389|396390|396392|396394|396399|396400|396402|396404|396407|396412|396425|396436|396440|396445|396447|396449|396452|396456|396457|396460|396461|396464|396466|396468|396471|396474|396475|396477|396481|396484|396490|396493|396494|396593|396598|396599|396600|396607|396611|396614|396616|396621|396624|396625|396629|396631|396640|396643|396657|396659|396664|396665|396668|396668|396672|396676|396679|396680|396690|396691|396693|396696|396703|396704|396711|396712|396714|396719|396727|396734|396734|396735|396743|396744|396748|396750|396753|396758|396759|396762|396762|396767|407348|438725|444255|457438|457456|457457|457458|457461|457463|457466|457479|457488|457498|457499|457506|457511|457512|457516|457534|457537|457547|457551|457552|457559|457561|457562|457564|457567|457574|457575|457580|457584|457586|457586|457589|457596|457600|457601|457608|457609|457610|457618|457625|457626|457628|457641|457646|457649|457652|457653|457656|457657|457659|457667|457670|457674|457678|457680|457682|457683|457685|457739|458065|458073|458080|458081|458083|458085|458089|458090|458098|458102|458104|458106|458109|458114|458116|458119|458122|458124|458125|458129|458133|458134|458135|458137|458140|458144|458146|458148|458149|458151|458152|458153|458154|458155|458156|458159|458161|458162|458164|458166|458167|458168|458168|458169|458172|458173|458174|458175|458180|458182|458182|458183|458187|458190|458191|458193|458197|458198|458199|458201|458203|458209|458211|458213|458213|458219|458220|458221|458222|458223|458223|458225|458226|458228|458230|458232|458233|458234|458236|458239|458240|458242|458244|458246|458247|458249|458251|458253|458255|458257|458259|458261|458262|458263|458264|458265|458267|458269|458271|458274|458275|458276|458278|458280|458290|458293|458295|458297|458300|458303|458309|458313|458314|458317|458322|458324|458328|458329|458332|458333|458342|458408|458410|458417|458422|458424|458426|458435|458437|458449|458450|458453|458456|458458|458461|458462|458470|458472|458483|458487|458492|458494|458504|458507|458509|458510|458521|458522|458530|458533|458533|458537|458538|458543|458546|458548|458550|458556|458561|458563|458568|458570|458574|458577|458580|458585|458587|458593|458594|458597|458598|458601|458602|458605|458609|458612|458615|458618|458622|458624|458632|458638|458640|458642|458644|472224|481812|523244|523246|523249|523254|523258|523262|523263|523267|523273|523275|523277|523287|523293|523296|523298|523301|523303|523307|523310|523315|523325|523326|523327|523328|523333|523334|523340|523349|523359|523366|523368|523377|523381|523383|523386|523391|523397|523514|523517|523523|523525|523528|523530|523534|523535|523536|523538|523540|523541|523550|523558|523560|523561|523564|523566|523571|523573|523574|523575|523577|523578|523579|523583|523585|523590|523595|523598|523602|523613|523615|523619|523630|523631|523635|523638|523640|523650|523651|523653|523660|523666|523668|523673|523674|523677|523682|523724|523729|523738|523739|523739|523744|523745|523748|523748|523750|523755|523758|523760|523763|523765|523767|523768|523769|523771|523773|523774|523775|523777|523779|523783|523784|523786|523787|523790|523793|523794|523795|523797|523798|523802|523803|523804|523806|523814|523816|523819|523820|523821|523823|523824|523830|523831|523832|523834|523836|523839|523840|523840|523844|523847|523848|523850|523852|523853|523855|523858|523859|523862|523865|523867|523869|523870|523871|523872|523873|523874|523877|523879|523880|523881|523883|523890|523892|523895|523896|523897|523899|523900|523901|523904|523908|523909|523910|523912|523913|523914|523915|523919|523920|523924|523925|523930|523932|523933|523934|523935|523939|523941|523942|523948|523949|523950|523951|523952|523954|523956|523966|523967|523972|537530|562098|562098|562109|562110|562112|562114|562116|562124|562126|562128|562131|562133|562135|562135|562138|562140|562145|562147|562149|562153|562154|562158|562160|562163|562167|562173|562176|562178|562183|562185|562190|562192|562195|562200|562201|562203|562206|562215|562217|562219|562221|562233|562239|562245|562251|562519|562520|562521|562523|562526|562527|562527|562536|562539|562551|562563|562575|562578|562584|562586|562594|562595|562613|562622|562623|562631|562634|562640|562645|562657|562662|562672|562683|562689|562696|562704|562709|562711|562719|562727|562732|562753|562761|562763|562771|562772|564543|564545|564838|564840|564840|564849|564855|564868|564869|564871|564876|564878|564880|564882|564884|564886|564890|564891|564894|564896|564898|564900|564902|564904|564907|564909|564913|564915|564919|564920|564922|564927|564928|564933|564935|564939|564943|564944|564946|564951|564953|564957|567540|567552|567562|567563|567564|567567|567568|567570|567571|567574|567576|567577|567582|567586|567599|567616|567623|567625|567627|567628|567629|567632|567644|567652|567654|567661|567668|567672|567676|567686|567687|567689|567691|567694|567695|567697|567698|567705|567713|567724|567725|584215|585843|611998|636805|636806|636807|636808|636809|636810|636811|636812|636813|636814|636815|636816|636817|636818|636819|636820|636821|636822|636823|636824|636825|636826|636827|636828|636829|636830|636831|636832|636833|636834|636835|636836|636837|636838|636839|636840|636841|636842|636843|636844|636845|636846|636847|636848|636849|636850|636851|636852|636853|636854|636855|636856|636857|636858|636859|636860|636861|636862|636863|636864|636865|636866|636867|636868|636869|636870|636871|636872|636873|636874|636875|636876|636877|636878|636879|636880|636881|636882|636883|636884|636885|636886|636887|636888|636889|636890|636891|636892|636893|636894|636895|636896|636897|636898|636899|636900|636901|636902|636903|636904|636905|636906|636907|636908|636909|636910|636911|636912|636913|636914|636915|636916|636917|636918|636919|636920|636921|636922|636923|636924|636925|636926|636927|636928|636929|636930|636931|636932|636933|636934|636935|636936|636937|636938|636939|636940|636941|636942|636943|636944|636945|636946|636947|636948|636949|636950|636951|636952|636953|636954|636955|636956|636957|636958|636959|636960|636961|636962|636963|636964|636965|636966|636967|636968|636969|636970|636971|636972|636973|636974|636975|636976|636977|636978|636979|636980|636981|636982|636983|636984|636985|636986|636987|636988|636989|636990|636991|636992|636993|636994|636995|636996|636997|636998|636999|637000|637001|637002|637003|637004|637005|637006|651764|651767|651771|651775|651784|651828|651842|651860|651862|651865|651869|651873|651879|651881|651938|651940|651941|651943|654505|683983|683984|683985|683986|683987|683988|683989|683990|683991|683992|687206|687207|687208|687210|687211|687212|687213|687214|687215|687216|687217|687218|687219|687220|687223|687224|687225|687226|687227|687228|687229|687230|687231|687232|687233|687235|687236|687237|687239|687240|687242|687244|687245|687246|687247|687248|687249|689907|689908|689909|689910|689912|692450|692453|692454|692455|692456|692457|692458|692459|692461|692462|692464|692466|692467|692469|692470|692471|692472|692473|692474|695388|695389|700487|700488|711413|711414|711415|711416|711417|722956|722957|722959|722960|722961|736546|736547|736550|736554|744342|751024|751025|751029|751030|751038|751041|759632|759636|766665|766669|766670|766675|766678|766682|766685|766689|766690|766692|766702|775418|775459|777725|777759|783053|783055|783057|783058|783059|787595|787700|787702|787707|792519|792772|792772|819929|819930|819931|819954|834320|834321|834322|834323|834324|834325|834326|834327|834328|834329|834330|834331|834332|834333|834334|834335|834336|834337|834338|834339|834340|834341|834342|834343|834344|834345|834346|834347|834348|834349|834350|834351|834352|834353|834354|834355|834356|834357|834358|834359|834360|834361|834362|834363|834364|834365|834366|834367|834368|834369|834370|834371|834372|834373|834374|834375|834376|834377|834378|834379|834380|834381|834382|834383|834384|834385|834386|834387|834388|834389|834390|834391|834392|834393|834394|834395|834396|834397|834398|834399|834400|834401|834402|834403|834404|834405|834406|834407|834408|834409|834410|834411|834412|834413|834414|834415|834416|834417|834418|834419|834420|834421|834422|834423|834424|834425|834426|834427|834428|834429|834430|834431|834432|834433|834434|834435|834436|834437|834438|834439|834440|834441|834442|834443|834444|834445|834446|834447|834448|834449|834450|834451|834452|834453|834454|834455|834456|834457|834458|834459|834460|834461|834462|834463|834464|834465|834466|834467|834468|834469|834470|834471|834472|834473|834474|834475|834476|834477|834478|834479|834480|834481|834482|834483|834484|834485|834486|834487|834488|834489|834490|834491|834492|834493|834494|834495|834496|834497|834498|834499|834500|834501|834502|834503|834504|834505|834506|834507|834508|834509|834510|834511|834512|834513|834514|834515|834516|834517|834518|834519|834520|851187|851189|851191|851674|851676|851678|851680|852120|852122|852424|852425|852427|852431|852435|925079|925080|925081|925082|925083|925084|925085|925086|925087|925088|925089|925090|925091|925092|925093|925094|925095|925096|925097|925098|925099|925100|925101|925102|925103|925104|925105|925106|925107|925108|925109|925110|925111|925112|925113|925114|925115|925116|925117|925118|925119|925120|925121|925122|925123|925124|925125|925126|925127|925128|925129|925130|925131|925132|925133|925134|934166|934167|934168|934169|934170|934171|934172|934173|934174|934175|934176|934177|934178|934179|934180|934181|934182|934183|934184|934185|934186|934187|934188|934189|934190|934191|934192|934193|934194|934195|934196|934197|934198|934199|934200|934201|934202|934203|934204|934205|934206|934207|934208|934209|934210|934211|934212|934213|934214|934215|934216|934217|934218|934219|934220|934221|934222|934223|934224|934225|934226|934227|940093|940094|940095|940892|940893|940894|940895|940896|945929|945930|945931|945932|945933|945934|945935|945936|945937|945938|945939|945940|945941|945942|945943|945944|945945|945946|945947|945948|945949|945950|945951|945952|945953|945954|945955|945956|945957|945958|945959|945960|945961|945962|945963|945964|945965|945966|945967|945968|945969|945970|945971|945972|945973|945974|945975|945976|945977|945978|945979|945980|945981|945982|945983|945984|945985|945986|945987|945988|945989|945990|945991|945992|945993|945994|955345|955346|955347|955348|955349|955350|955351|955352|955353|955354|955355|955356|955357|955358|955359|955360|955361|955362|955363|955364|955365|955366|955367|955368|955369|955370|955371|955372|955373|955374|955375|959881|959882|959883|960646|960647|960648", + "text": "Baller-Gerold syndrome" + }, + { + "baseId": "21102|21103|21105|21109|21110|21111|71037|71038|71040|71041|71042|71043|71044|71045|71046|71047|71048|71049|138872|138883|138909|138913|207535|227319|240251|240254|240305|240306|240322|273145|395934|395939|396036|396053|396068|396151|396205|396253|396290|396314|396345|396668|396734|396762|457586|458168|458182|458213|458223|458533|523739|523748|523840|562098|562135|562527|564840|792772", + "text": "Rapadilino syndrome" + }, + { + "baseId": "21105|151724|235216|240867|612018", + "text": "B lymphoblastic leukemia lymphoma with t(12" + }, + { + "baseId": "21105|151724|235216|240867|612018", + "text": "21)(p13" + }, + { + "baseId": "21105|151724|235216|240867|612018", + "text": "q22)" + }, + { + "baseId": "21105|151724|235216|240867|612018", + "text": " TEL-AML1 (ETV6-RUNX1)" + }, + { + "baseId": "21105", + "text": "High grade surface osteosarcoma" + }, + { + "baseId": "21117|282312|284954|284978|294991|294993|294994|294999|295001|295003|295005|296735|296738|296739|296761|296766|296767|296780|300450|300451|300469|300471|300472|300482|300483|300484|300495|300496|300497|300501|300509|300518|300525|300540|300542|300543|300573|300574|709594|892659|892660|892661|892662|892663|892664|892665|892666|892667|892668|892669|892670|892671|892672|892673|892674|892675|892676|892677|892678|892679|892680|892681|892682|892683|892684|892685|892686|892687|892688|892689|896015|896016|896017|896018|896019", + "text": "Parkinson Disease, Dominant/Recessive" + }, + { + "baseId": "21118|187180|272347", + "text": "Amelogenesis imperfecta, hypomaturation type, IIA1" + }, + { + "baseId": "21119|21120|76004", + "text": "Hyalinosis, Segmental Glomerular" + }, + { + "baseId": "21119|21119|21119|21120|76004|76004|76004|94312|94313|187048|224284|224551|254892|300480|300481|300486|300490|303316|303334|303337|303339|303341|303360|303367|303368|307806|307807|307827|307844|307849|307850|307851|307878|307879|307895|308000|308002|308025|308028|308030|308031|308033|308040|312031|312041|317704|323715|324424|335402|353794|514037|590302|801121|801163", + "text": "Focal segmental glomerulosclerosis" + }, + { + "baseId": "21119|76004", + "text": "Sickled erythrocytes" + }, + { + "baseId": "21119|76004|491214|918506|918507|918508|918510|918511|918514", + "text": "Glomerulonephritis (disease)" + }, + { + "baseId": "21120|622786|622787", + "text": "Focal segmental glomerulosclerosis 4, susceptibility to" + }, + { + "baseId": "21121|21122|21123|48137|48138|48139|48140|48141|48142|48143|48144|48145|48146|209356|256545|260198|260199|330521|330522|330523|330524|330530|330531|330535|330538|330547|340749|340751|340753|340755|340759|340763|340770|340771|340772|340780|340782|340784|340788|346360|346361|346363|346365|346366|346373|346376|346380|346383|346384|346388|346395|347725|347730|347731|347737|361028|376789|390231|410306|414711|414712|414714|431019|431020|612323|612324|620613|620892|622245|622246|622247|622248|622249|622250|622251|622252|622253|622254|622255|622256|622265|756261|756263|788917|791844|797623|860450|878790|878791|878792|878793|878794|878795|878796|878797|878798|878799|878800|878801|878802|878803|878804|880618|880619|880620|880621|880622|880623|919782|971098|971099|980961|983363|983364|983365|983366|983367|983368|983369|983370|983371|983372|983373|983374|983375|983376|983377|983378|983379|983380|983381|983382|983383|983384|983385|983386|983387|983388|983389|983390|983391|983392|983393|983394|983395|983396|983397|983398|983399|983400|983401|983402|983403|983404|983405|983406|983407|983408|983409|983410|983411|983412|983413|983414|983415|983416|983417|983418|983419|983420|983421|983422|983423|983424|983425|983426|983427|983428|983429|983430|983431|983432|983433|983434|983435|983436|983437|983438|983439|983440|983441|983442|983443|983444|983445|983446|983447|983448|983449|983450|983451|983452|983453", + "text": "Autosomal recessive congenital ichthyosis 2" + }, + { + "baseId": "21124|21125|21126|88393|141272|141273|141274|141275|141276|141277|141278|141279|141280|141281|141282|141283|141284|141285|141286|141287|191902|243831|243832|243833|243834|243835|244529|244530|244531|244532|244533|244534|244535|244536|253259|253260|253261|253262|253263|253264|253265|269477|306456|306458|306459|306461|306462|306463|306467|306476|306478|310576|310577|310578|310586|310589|310606|310611|310614|310622|310624|310631|310640|310642|310644|310645|310651|310664|315955|315968|315977|315983|315991|316011|316012|316017|316018|316019|316022|316025|316029|316030|316245|316268|316269|316271|316278|316286|316288|316297|316298|316299|316308|316309|316312|316313|316314|316319|316320|316321|316330|316342|316344|353849|357770|357771|357772|357773|357774|359749|369658|370160|370169|370442|370453|372073|372077|397013|407512|433642|458177|458185|458188|458189|458192|458682|458697|458703|458705|458708|458794|458795|458797|459186|459188|459191|459195|459201|487352|489170|490119|490954|492758|495243|502091|502095|502097|513585|523860|523861|523863|523864|523868|523884|523885|523887|524095|524142|524146|524160|524161|524162|524166|524167|524169|524432|524436|524470|524472|524475|524484|524485|524487|544613|544615|544616|544630|544633|544635|544636|544638|544639|544641|544650|544652|544655|544666|544668|544670|544672|544941|544942|544945|544962|544963|544965|544967|544968|544970|544972|544975|544986|544991|545056|545058|545061|545063|545069|545071|545073|545077|545079|545080|545091|545098|545100|545103|545104|545106|545171|545173|545175|545178|545180|545182|545204|562651|562653|562659|562664|562668|562670|562676|562678|563287|563288|563291|563292|563294|563324|563328|563332|563346|563351|565370|565376|565377|565385|565391|565397|568300|568348|568350|568351|568360|568374|568378|568379|637573|637574|637575|637576|637577|637578|637579|637580|637581|637582|637584|637586|637588|637589|637590|637592|637593|637595|637596|637599|651806|651866|651868|651890|655880|684032|684033|684034|684035|684036|685247|687333|687336|687338|687342|687344|687345|689929|692550|692552|692558|695406|711686|766978|766982|766987|775448|783215|783216|799560|805089|816430|835317|835320|835321|835324|835329|835333|835334|835340|835341|835343|835345|835347|835349|835351|851217|851219|900802|900803|900804|900805|900806|900807|900808|900809|900810|900811|900812|900813|900814|900815|900816|900817|900818|900819|900820|900821|900822|900823|900824|900825|900826|900827|900828|900829|900830|900831|900832|900833|900834|900835|900836|900837|900838|900839|903289|903290|903291|903292|903293|903294|940919|955623|955625|955628|955629|955634|955635|955640|960668|978509|978510|978511|978512|978513|978514|978516|978517|978518|978519|978520|978521|978522|978523|978524|978525|978526|978527|978528|978529|978530|978531|978532|978533|978534|978535|978536|978537|978538|978539|978540|978541|978542|978543|978544|978545|978546|978547|978548|978549|978550|978551|978552|978553|978554|978555|978556|978557|978558|978559|978560", + "text": "Familial dysautonomia" + }, + { + "baseId": "21127|21128|614126", + "text": "Neonatal ichthyosis-sclerosing cholangitis syndrome" + }, + { + "baseId": "21129|21130|21131|75587", + "text": "Hypoparathyroidism, familial isolated, 2" + }, + { + "baseId": "21132|21133|21134|21135|21137|21138|39337|39338|76401|76408|76409|76413|76414|190475|250739|268297|490057|518243|536075|536076|558472|560641|576694|630033|686213|695146|733495|826512|977193", + "text": "Holoprosencephaly 2" + }, + { + "baseId": "21139", + "text": "Bile acid synthesis defect, congenital, 3" + }, + { + "baseId": "21139|21140|21141|21142|21143|21144|21145|21146|40115|125786|125787|190457|221766|221767|227324|273222|305741|305751|305753|305756|305759|305760|309750|309761|309762|309764|314990|314991|315005|315008|315110|315111|315121|315131|431012|431013|492205|493946|513541|513599|578471|789123|789131|798602|899938|899939|899940|899941|899942|899943|899944|899945|899947|899948|899949", + "text": "Hereditary spastic paraplegia 5A" + }, + { + "baseId": "21147|21148|21149|21150|21151|21152|21153|21154|21155|215317|297808|297813|299985|299988|299991|299992|304190|304201|304202|304203|304210|304214|304215|304523|304529|486372|578434|578435|795708|802158|858725|894476|894478|894479|894480|894481|894482|894483|894484|894485|894486|894487|894488|894489|894490|894491|894492|894493|894494|894495|894496|894497|894498|894499|894500|894501|894502|894503|894504|894505|894506|894507|894508|894509|894510|894511|894512|894513|894514|918971", + "text": "Molybdenum cofactor deficiency, complementation group B" + }, + { + "baseId": "21149|297736|297741|297765|297766|297767|297776|297779|297781|297798|297807|297809|299941|299950|299962|299970|299972|299986|300053|300054|300057|300059|300071|300076|302731|302743|302752|302760|302776|304133|304169|304176|304191|304201|304202|304203|304442|304451|304490|304493|304526|307121|307397|307412|307413|307425", + "text": "Combined molybdoflavoprotein enzyme deficiency" + }, + { + "baseId": "21152|21156|21157|21158|21159|21160|205013|205014|300050|300051|300056|300060|300061|300078|300086|300087|300088|300089|300094|300101|300107|300110|302722|302724|302725|302747|302748|302753|302754|302761|302764|302766|302773|302775|302777|302784|302786|302788|302799|302811|302818|302819|302837|302841|307063|307065|307068|307070|307075|307076|307079|307140|307143|307144|307154|307156|307159|307161|307162|307164|307165|307172|307173|307181|307218|307219|307220|307224|307225|307403|307404|307423|307426|307436|307437|307439|307450|307454|361592|464000|464445|521668|522060|522377|560732|581754|620787|634928|634929|634930|679750|679826|790626|795856|831935|831936|831937|895922|895923|895924|895925|895926|895927|895928|895929|895930|895931|895932|895933|895934|895935|895936|895937|895938|895939|895940|895941|895942|895943|895944|895945|895946|895947|895948|895949|895950|895951|895952|895953|895954|895955|895956|895957|895958|895959|895960|895961|895962|895963|895964|896240|896241|896242|933325|945022|954450|961773", + "text": "Molybdenum cofactor deficiency, complementation group A" + }, + { + "baseId": "21161|21162|21163|21164|21165|94535|185740|185741|207984|318055|318056|325969|325970|332221|332224|333699|333700|333713|333717|333734|462342|641282|681809|870190|870191|870192|870193|870194|872271|872272|872273|917740|936194|936195|941035", + "text": "Diamond-Blackfan anemia 10" + }, + { + "baseId": "21166|21167|21788|22607|22659|22663|24047|24048|24049|24050|24073|39054|39058|39059|39164|39166|48117|53089|53503|176733|223686|223689|232102|264298|354279|410730|457788|481486|510873|513664|513957|513958|532147|532159|533475|551706|578648|578649|581235|581236|581838|581843|590018|590155|590156|590157|613938|613973|614485|615875|834064|919129|919130|919902|919903|919904|919905|961635|965931|970535|980490|983678|983682", + "text": "Tetralogy of Fallot" + }, + { + "baseId": "21166|21167|21169|48117|166432|166433|240219|240220|240221|252999|253002|253005|253006|395860|396119|396122|396256|396543|396544|457735|457742|457744|457765|457768|522965|523199|523204|523206|523429|523548|523568|523569|523580|551706|561886|567325|636533|636534|636535|636536|636537|636538|636539|683961|683962|683964|683965|687158|834032|834033|924979|934062|945821|945822|955273", + "text": "46,XY sex reversal 9" + }, + { + "baseId": "21167|21169|21787|48116|48118|394846|513907", + "text": "Double outlet right ventricle" + }, + { + "baseId": "21167|21168|21169|21170|621896|621897|970870|975859|975860", + "text": "Diaphragmatic hernia 3" + }, + { + "baseId": "21167|21169|27833|27835|27836|27837|27838|27839|27840|27841|27842|27843|27844|27845|27846|39055|39058|48117|142240|213584|213585|240219|252999|253284|260482|359757|359757|396274|428907|428910|458740|502861|523825|562690|562691|637644|637645|637646|653876|687353|692569|788832|794210|794211|794212|794213|794214|794215|820046|835434|835435|934528|940126|946339|946340", + "text": "46,XY sex reversal, type 3" + }, + { + "baseId": "21171|293065|406132", + "text": "Spastic paraplegia 42, autosomal dominant" + }, + { + "baseId": "21172|21173|21174|21175|21176|21177|21179|21181|21182|34675|34676|34677|34678|34679|34680|34681|34682|34683|34684|34685|34686|34687|34688|34689|34690|34691|34692|34693|34695|34696|34697|34698|34699|34700|34701|34703|34704|34705|34706|34707|34708|34709|34710|34711|34712|34714|34715|34716|48674|57327|57329|57330|57331|57332|57333|57335|57338|57340|57342|57344|57345|57346|57350|57358|57359|57362|57363|57364|57365|57367|57369|57370|57371|57372|57373|57376|57383|57387|57389|57393|57394|57397|57398|57399|57400|57403|57404|57406|57410|57411|57412|57413|57414|57415|57417|57420|57421|57422|57423|57425|57426|57433|57437|57438|57439|57442|76681|76682|76683|76684|76685|76686|76687|76688|76689|76690|76691|76692|76693|76694|76695|76696|76697|76698|76699|76700|76701|76702|76704|76705|76706|76707|76708|76709|76710|76711|76712|76713|76714|76715|76716|76717|76718|76719|76720|76721|76722|76723|76724|137046|137047|173497|173500|173501|173502|173507|173513|173514|173515|173518|173524|173638|173641|173648|173649|173657|199783|204282|208369|228939|228946|228948|228953|228956|250703|250708|271841|273157|285699|285703|285714|285716|285720|285722|285723|285725|285736|285738|285746|285748|286394|286396|286397|286398|286400|286405|286406|286407|286417|286418|286419|286424|286425|286449|286453|286456|286457|286461|288721|288726|288727|288728|288734|288735|288737|288744|288754|288756|288760|289142|289143|289146|289148|289151|289153|289154|289158|289166|289168|289169|389219|389220|404759|439895|439896|439897|439898|496272|496274|496757|539468|553251|553252|553253|615786|615787|619934|620079|620080|620081|620745|620746|622323|622684|622685|622686|622687|622699|654264|795211|799295|884491|884492|884493|884494|884495|884496|884497|884498|884499|884500|884501|884502|884503|884504|884505|884506|884507|884508|884509|884510|884511|884512|884513|884514|884515|884516|884517|884518|884519|884520|884521|884522|884523|884524|884525|884526|884527|884528|884529|884530|884531|884532|884533|884534|884535|887339|887340|887341|887342|887343|904241|966050|969147|971293", + "text": "Deafness, autosomal recessive 9" + }, + { + "baseId": "21175|21178|21179|21180|21181|21182", + "text": "Auditory neuropathy, autosomal recessive, 1" + }, + { + "baseId": "21185|23156|23157|23258|23259|31035|31036|31037", + "text": "Basal cell carcinoma, somatic" + }, + { + "baseId": "21187|247548|282900|283688|285208|481465|537369|576093|614233|792724|801574|905863|920164|970723", + "text": "Hypomyelination, global cerebral" + }, + { + "baseId": "21189|286931|286933|289232|289241|289242|289244|289245|289246|289604|289605|289620|289621|289622|359098|451004|451007|518219|518264|558458|560631|626128|679895|685132|686207|686209|826465|884812|931402|942916|942917|964120", + "text": "Diamond-Blackfan anemia 8" + }, + { + "baseId": "21190|21191|21192|21193|21194|21195|237728|253971|253973|253974|253975|253976|253977|253978|253979|253981|260794|260795|312027|312032|312038|312039|312043|312044|317683|317684|317699|317703|317707|317708|317711|317712|317713|323645|323647|323649|323650|323651|323656|323658|323671|323674|323686|323688|323689|323697|323698|323714|323723|323727|324394|324397|324405|324418|324425|324426|324434|324436|324438|324439|324440|324441|324443|324444|324446|324448|513087|513088|590300|620375|620828|623305|623306|752382|793376|818286|818287|818288|866769|866770|866771|866772|866773|866774|866775|866776|866777|866778|866779|866780|866781|866782|866783|866784|866785|866786|866787|866788|866789|866790|866791|866792|866793|866794|866795|868578|961006|962729|962730|964350|970926", + "text": "Focal segmental glomerulosclerosis 2" + }, + { + "baseId": "21196|21197|21198|21199|21200|21201|391635|427940|516815|551524|551525|557725|622864|800350|800686", + "text": "Bardet-Biedl syndrome 5" + }, + { + "baseId": "21202|21203|21204|21205|21206|21206|21207|21208|21208|21210|21212|21213|27338|140205|140206|140208|141471|141472|141473|141474|210767|210768|210770|210771|210777|266146|274559|284709|285379|285380|285385|287612|287613|287614|287849|287850|300864|300951|327316|327321|327328|327356|327357|327360|337177|337178|337181|337185|337187|343381|343392|343401|344971|344972|344976|345010|345013|345016|361172|366412|366991|541853|613536|654243|883749|883750", + "text": "Mitochondrial complex III deficiency, nuclear type 1" + }, + { + "baseId": "21203|21206|21206|21208|21208|21210|21213|71050|71051|71052|71053|140205|140206|140208|210767|210768|210769|210770|210777|210779|259729|274559|284709|285379|285380|285385|287612|287613|287614|287849|287850|357236|357237|357238|357239|357240|357241|357242|357243|357244|357245|366412|366991|541728|541730|541731|541744|541746|541759|541798|541800|541803|541805|541815|541817|541823|541827|541853|541857|541888|541892|541894|541896|541899|541900|541905|541910|654241|654243|658809|747291|762924|762925|762927|781173|790196|883749|883750", + "text": "GRACILE syndrome" + }, + { + "baseId": "21206|21208|21209|132021|210779", + "text": "Pili torti-deafness syndrome" + }, + { + "baseId": "21208|71051|210777|210779|620061", + "text": "BCS1L-Related Disorders" + }, + { + "baseId": "21210|21211", + "text": "Bjornstad syndrome with mild mitochondrial complex III deficiency" + }, + { + "baseId": "21214|48742|140717|140719|264384|487425|513311", + "text": "Cardioencephalomyopathy, fatal infantile, due to cytochrome c oxidase deficiency 2" + }, + { + "baseId": "21216|21217|125785", + "text": "Mitochondrial complex 4 deficiency, nuclear type 4" + }, + { + "baseId": "21218|21219|21221|21222|21223|106510|106511|238349|238350|238353|265986|281306|281307|281320|281324|281325|281966|281967|281969|283216|283217|283219|283234|283237|283239|283370|283372|283373|283377|391435|513510|626114|628282|679736|818405|864833|864834|864835|864836|864837|865212|865213|865214|865215|918522|969293|974937|975944", + "text": "Diamond-Blackfan anemia 6" + }, + { + "baseId": "21224|21225|21226|227297|239901|299909|299910|299911|299915|302548|302549|302550|302556|306937|306938|306946|307216|895848|895849|895850|895851|895852", + "text": "Diamond-Blackfan anemia 9" + }, + { + "baseId": "21227|21228|21229|185755|212086|212087|212088|221093|221094|244151|268997|273693|280370|280374|280375|280382|280383|280384|280396|280735|280738|280739|280744|280748|280749|280750|282094|282100|282105|282106|282125|282128|282156|282157|282158|282161|282189|282190|282191|282195|282197|282198|282208|282217|282218|282224|282226|282240|282241|282243|282244|282257|282266|365222|365229|390748|391317|442823|447785|447798|447801|447809|447974|447983|448083|448086|448106|448111|448115|515790|515796|515797|515811|515815|515819|515828|515832|515846|515904|556486|557025|557027|557029|557254|557295|557297|557299|557301|558477|558479|558481|609425|627755|627756|627757|627758|627759|627760|627761|627762|627763|627764|627765|627766|650745|685704|685705|685706|685707|685709|690583|695046|780672|818963|818964|823881|823882|823883|823884|823885|823886|823887|823888|823889|823890|823891|823892|823893|864298|864299|864300|864301|864302|864303|864304|864305|864306|864307|864308|864309|921989|921990|921991|921992|921993|921994|930466|930467|930468|930469|930470|930471|941915|941916|941917|952389|952390|952391|960429|970686", + "text": "Charcot-Marie-Tooth disease, dominant intermediate C" + }, + { + "baseId": "21232|24368|50242|137477|223027|223028|223029|223030|223031|223032|223033|223034|223035|223036|223037|223038|223039|223040|223041|223042|223043|223044|223045|223046|223047|223048|223049|223050|223051|223052|223053|223054|223055|223056|223057|223058|223059|223060|223061|223062|223063|223064|223065|223066|223067|223068|223069|223070|223071|223072|223073|223074|223075|223076|223077|223078|223079|223080|223081|223082|223083|223084|223085|223086|223087|223088|223089|223090|223091|223092|223093|223094|223095|223096|223097|223098|223099|223100|223101|223102|223103|223104|223105|223106|223107|223108|223109|223110|223111|223112|223113|223114|223115|223116|223117|223118|223119|223120|223121|223122|223123|223124|223125|223126|223127|223128|223129|223130|223131|223132|223133|223134|223135|223136|223137|223138|223139|223140|223141|223142|223143|223144|223145|223146|223147|223148|223149|223150|223151|223152|223153|223154|223155|223156|223157|223158|223159|223160|223161|223162|223163|223164|223165|223166|223167|223168|223169|223170|223171|223172|223173|223174|223175|223176|223177|223178|223179|223180|223181|223182|223183|223184|223185|223186|223187|223188|223189|223190|223191|223192|223193|223194|223195|223196|223197|223198|223199|223200|223201|223202|223203|223204|223205|223206|223207|223208|223209|223210|223211|223212|223213|223214|223215|223216|223217|223218|223219|223220|223221|223222|223223|223224|223225|223226|223227|223228|223229|223230|223231|223232|223233|223234|223235|223236|223237|223238|223239|223240|223241|223242|223243|223244|223245|223246|223247|223248|223249|223250|223251|223252|223253|223254|223255|223256|223257|223258|223259|223260|223261|223262|223263|223264|223265|223266|223267|223268|223269|223270|223271|223272|223273|223274|223275|223276|223277|223278|223279|223280", + "text": "Ductal breast carcinoma" + }, + { + "baseId": "21233|22868|22881|23106|23107|23108|23312|23582|27386|27388|27391|27393|27394|27395|27397|27398|27403|27404|27405|27407|27408|27409|27413|27418|27422|27641|27642|27645|27652|28691|28692|28693|28694|28695|28696|28698|29000|29006|29011|29022|29755|30972|30973|31371|31378|32621|32623|36171|36173|40609|44227|48304|52759|53980|54391|54633|80852|88528|100947|132039|132041|132042|132043|132044|133263|133268|133271|133272|133274|133276|133277|133278|133282|136502|139098|139099|150515|150535|150657|150816|150855|151595|151732|151897|151955|152034|152428|152480|166218|171191|171613|171614|173901|176503|179419|180989|180995|181000|181001|181005|181011|181024|185331|185338|185345|185350|185366|185367|185369|185371|185375|185384|185394|185395|185420|206650|213392|213398|213402|213943|222738|232035|233761|236459|236461|236462|236463|236469|236471|236477|236479|236481|236500|242978|242980|245074|245076|260191|360335|362775|362777|362778|362826|362837|362867|362868|362894|362895|362896|362904|362905|362912|362928|362929|362952|362959|363053|363067|363068|363088|363112|363123|363174|363186|363197|363202|363241|363247|363248|363249|363250|363251|363258|363259|363260|363261|363262|363263|363264|363265|363266|363267|363269|363274|363275|363276|363277|363280|363281|363293|363294|363295|363296|363297|363298|363299|363300|363301|363302|363303|363304|363305|363306|363315|363316|363327|363328|363329|363340|363341|363342|363343|363344|363345|363346|363347|363349|363350|363351|363352|363353|363354|363355|363356|363357|363360|363361|363362|363363|363364|363365|363366|363367|363368|363369|363370|363376|363377|363378|363384|363385|363386|363388|363391|363392|363396|363397|363401|363402|363403|363420|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363473|363474|363475|363476|363477|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363496|363497|363498|363499|363503|363504|363505|363506|363507|363508|363512|363513|363514|363515|363516|363517|363518|363519|363520|363521|363522|363523|363524|363525|363526|363527|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363538|363542|363543|363544|363545|363546|363547|363548|363549|363550|363551|363552|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|363572|363573|403028|410259|469117|485351|576029|576030|576031|619761|646766|653033|681925|681926|682250|791830|791831|791832|791833|791834|791835|791836|814476", + "text": "Squamous cell carcinoma of the head and neck" + }, + { + "baseId": "21234|21234|21236|21237|21240|21241|21241|21242|21243|39326|39327|169763|169767|169769|169774|169779|169787|169787|169794|169799|169802|169804|169805|169814|169816|169817|169818|169820|198645|208792|236944|260264|260265|338121|347754|347766|351608|352554|352555|352558|352560|352560|361274|389185|413616|415714|415714|420984|431022|431023|431023|438229|471123|471124|471581|471583|486308|486308|495587|513385|513669|513670|534798|534799|534807|538500|552230|552231|552267|571997|574136|575208|575509|577909|613193|622482|622483|622926|649497|649498|649499|649500|653620|653722|679833|689290|694739|694740|695877|695878|705931|758088|760983|773550|778653|786601|789132|792063|792064|792065|792066|792067|792068|792069|798770|801743|801744|821460|849340|849341|849342|849343|849344|849345|849346|904227|939315|939316|939317|951474", + "text": "Infantile neuroaxonal dystrophy" + }, + { + "baseId": "21234|21237|21240|39327|169761|169764|169765|169766|169767|169768|169769|169770|169772|169774|169775|169776|169777|169778|169779|169780|169781|169783|169784|169785|169786|169787|169788|169789|169790|169791|169792|169793|169794|169795|169796|169797|169798|169799|169801|169803|169804|169807|169808|169809|169810|169811|169812|169813|169814|169815|169816|169819|169821|677270|677271|801085", + "text": "Iron accumulation in brain" + }, + { + "baseId": "21234|21235|21237|21240|21241|21241|21242|21243|169766|169780|169787|169796|208794|208795|236944|347766|352560|415714|430564|430565|431023|486308|612360|961898|962186|972802", + "text": "Neurodegeneration with brain iron accumulation 2b" + }, + { + "baseId": "21234|21241|21242|21243|21243|39323|39324|39325|39328|169787|236944|347766|352560|415714|431023|486308", + "text": "Parkinson disease 14" + }, + { + "baseId": "21234|39323|169763|169767|169768|169774|169776|169779|169782|169783|169787|169800|169802|169805|169806|169818|208792|236944|338113|338122|347750|347751|347753|347754|347755|347756|347758|347759|347766|347767|347770|351604|351607|351608|351610|352549|352550|352551|352552|352553|352554|352555|352556|352557|352558|352559|352560|352561|361345|415714|471583|486308|513670|577909|694738|694739|695877|849343|849345|891296|891297|891298|891299|891300|891301|891302|891303|891304|891305|891306|891307|891308|891309|891833|891834|891835|891836|891837|918470", + "text": "PLA2G6-associated neurodegeneration" + }, + { + "baseId": "21234|48495|79451|79480|79505|94237|97346|97347|97348|97349|97350|97351|97352|97353|97354|97355|97356|97357|97358|102019|134762|153510|153517|194348|200392|200393|200755|200756|200757|202291|203036|207908|209322|209324|209325|209326|215014|359475|360894|361123|361154|361168|362170|389102|404850|424349|431497|431498|431499|431500|431501|431502|431503|431504|431505|431506|439069|439633|439634|439635|443058|444034|481029|481046|514196|514201|514214|535400|535402|535417|535418|535420|535421|535423|535424|535427|535428|535429|535430|535433|535434|535437|535438|535443|535445|535449|535457|535459|535462|535463|535465|535469|535474|535480|535481|535482|535483|535485|535486|535487|535490|535492|535493|535496|535497|535499|535500|535502|535503|535508|535509|535512|535528|535529|535530|535535|535540|535542|535546|535549|535550|535551|535552|535557|535563|535567|535568|535569|535572|535579|535580|535585|535587|535599|535605|535606|535607|535609|535612|535614|535621|535624|535625|535628|535631|535636|535638|535643|535647|535650|535651|535652|550843|550849|552225|578654|581714|581715|581850|581851|581852|581853|581854|590084|622944|626368|677400|678945|682393|682394|682395|800988|801109|801227|802100|832667|962072|963782|965484|965572|965579|966234|966235|966239|966243|966247|966254|966258|966261|966265|966272|966282|966283|966287|966294|966300|966307|966313|971420|971455|971459|971478|971496|971497|980674|980711|980713|980719", + "text": "Autistic disorder of childhood onset" + }, + { + "baseId": "21235|22501|22745|22745|24680|27809|34374|79331|181454|196365|207896|210585|213566|263234|263305|267991|268805|274788|299476|299490|301862|301890|301973|306312|306339|306415|306416|306417|306601|306602|359794|360812|360878|360906|360925|361043|361060|361062|362161|362161|384443|441283|461088|513942|514104|514152|514158|551427|551795|610516|613540|676964|677220|678943|678959|681597|681600|794276|800406|800407|800412|800956|800984|801165|801165|921254|921257|921260|962130|963089|963090", + "text": "Cerebellar ataxia" + }, + { + "baseId": "21235|26867|153385|197521|358027|362152|513980|513981|514155|514159|514160|550330|590049|792692|801518|801519|806406|858765|858766|918497", + "text": "Developmental regression" + }, + { + "baseId": "21238", + "text": "Karak syndrome" + }, + { + "baseId": "21244|21245|21247|21248|21250|21251|21253|21254|70983|70984|70985|70986|70987|70988|70989|70990|70991|70992|70993|70994|70995|70996|70997|70998|70999|71000|71001|71002|71003|71004|71005|71006|71007|71008|71009|71010|71011|71012|71013|71014|71015|71016|71017|71018|71019|71020|71021|71022|142899|142900|142901|142902|200280|200281|320312|320318|320321|320322|320323|320328|320329|328906|328916|328917|328927|335504|335508|335516|335517|335526|335527|335537|335556|335563|335564|337382|337388|337395|337396|337397|337404|337409|337412|337415|337417|337419|337423|337424|373000|373723|374102|409080|415385|430998|463118|504675|504685|504956|527837|527965|527966|527979|527981|528039|552172|566296|566304|566316|567763|567866|568744|568747|568754|572741|572743|614047|642194|642195|652583|652858|739166|739167|753976|753978|753980|753981|753982|769725|769728|775907|776054|776060|779847|784671|784673|784676|784677|788132|804907|820604|820605|820606|820607|820608|820609|841179|841180|841181|841182|841183|841184|841185|841186|841187|841188|841189|841190|841191|871718|871719|871720|871721|871722|871723|871724|871725|871726|871727|871728|871729|871730|871731|872361|872362|926982|926983|926984|926985|936551|936552|948477|948478|948479|948480|948481|957171|957172|957173|957174|957175|957176|957177|960083|979468|979469|979470|979471|979472|979473|979474|979475", + "text": "Lysinuric protein intolerance" + }, + { + "baseId": "21255|21256|21261|39322|101059|101064|101064|101066|101067|101069|101070|101071|101072|101073|101074|101075|101076|141778|169756|169757|169758|169759|169759|169760|172277|177170|177815|177816|190839|191678|191680|194401|194402|194403|208788|208789|257611|267775|271995|273963|337960|337964|337975|337976|337978|337984|337991|337994|347602|347611|347612|347614|347620|347621|347628|347630|347632|347642|347643|351481|351483|351484|351488|351489|351491|351493|351495|351498|351500|351501|351504|351505|351506|351508|351509|352487|352489|352490|352491|352492|352493|352494|352495|352496|378712|378789|379848|379850|415713|426374|470264|470267|470270|471113|471118|471121|471552|471555|471564|471568|471572|471951|471952|471961|471962|471965|508400|508407|534269|534280|534282|534408|534412|534419|534421|534424|534431|534777|571978|571986|571987|573232|573399|573399|573403|573404|573909|574124|574126|574128|577906|577907|649460|649461|649462|649463|649464|649465|649466|649467|649468|649469|649470|649471|653603|653698|694719|694720|694724|694727|694728|705904|705905|717416|742867|773533|821395|821459|849304|849305|849306|849307|849308|849309|849310|849311|849312|849313|849314|849315|891178|891179|891180|891181|891182|891183|891184|891185|891186|891187|891188|891189|891190|891191|891192|891193|891194|891195|891196|891197|891198|891199|891200|891821|891822|891823|891824|904221|929482|929483|939303|939304|939305|939306|939307|939308|951463|951464|959089|959090|959091", + "text": "Congenital muscular dystrophy-dystroglycanopathy with mental retardation, type B6" + }, + { + "baseId": "21257|21258|21259|21260|101059|101064|101064|101066|101067|101069|101070|101071|101072|101073|101074|101075|101076|141778|169756|169758|169759|169759|169760|177815|191680|208789|267775|271995|273963|337960|337964|337975|337976|337978|337984|337991|337994|347602|347611|347612|347614|347620|347621|347628|347630|347632|347642|347643|351481|351483|351484|351488|351489|351491|351493|351495|351498|351500|351501|351504|351505|351506|351508|351509|352487|352489|352490|352491|352492|352493|352494|352495|352496|379850|471568|486618|508400|534424|553159|573399|694727|891178|891179|891180|891181|891182|891183|891184|891185|891186|891187|891188|891189|891190|891191|891192|891193|891194|891195|891196|891197|891198|891199|891200|891821|891822|891823|891824", + "text": "Congenital muscular dystrophy-dystroglycanopathy with brain and eye anomalies, type A6" + }, + { + "baseId": "21262|21263|21264|21265|21266|21267|21268|39319|39320|39321|99965|177017|177280|178106|191019|192647|192749|193179|193504|193506|194903|226533|227365|322135|322143|322146|322148|322154|322155|322159|322162|322164|322167|322174|322176|322180|331421|331424|331431|331432|331443|331453|331462|331469|331476|331479|331482|331484|331491|331492|338321|338325|338328|338332|338352|338353|338359|338361|338364|338367|338368|338369|338374|338384|338386|338389|338394|338403|340130|340131|340136|340140|340141|340142|340145|340146|340147|340153|340155|340156|340159|432312|432313|584920|612158|620506|620507|620508|620864|620865|620866|703109|703111|725987|725988|725989|725990|725991|725992|739534|770069|800364|800372|818309|842107|842117|842119|856805|873155|873156|873157|873158|873159|873160|873161|873162|873163|873164|873165|873166|873167|873168|873169|873170|873171|873172|873173|873174|873175|873176|873177|873178|873179|873180|873181|873182|873183|873184|873185|873186|873187|873188|873189|873190|873191|873192|873193|873194|873195|873196|873197|873198|873199|873200|876483|876484|876485|876486|876487|876488|919564|965742", + "text": "Congenital stationary night blindness, type 1C" + }, + { + "baseId": "21269", + "text": "High density lipoprotein cholesterol level quantitative trait locus 8" + }, + { + "baseId": "21270|21271|21272|21273|21274|141974|141975|191579|231812|231813|244698|254369|254370|315506|315510|315511|315515|315519|315521|315529|315530|315534|315537|315542|315543|315544|315549|315550|315557|315559|315561|315562|315573|315581|322412|322418|322420|322422|328548|328553|328558|328562|328575|328579|328580|328596|328605|328611|329845|329846|329851|329852|329862|329863|372769|398790|398933|461740|462375|526597|540457|612295|672004|672005|672006|672007|788862|792785|868974|868975|868976|868977|868978|868979|868980|868981|868982|868983|868984|868985|868986|868987|868988|962983|980944|981760", + "text": "Charcot-Marie-Tooth disease, type 4B1" + }, + { + "baseId": "21275|21276|21278|21279|44695|53936|53937|53939|53940|174347|174484|174486|174487|174488|189814|189816|205147|229426|237601|239890|299095|299096|299100|299106|299107|299116|299118|299121|299127|299128|299129|299135|299136|299137|299149|301509|301524|301525|301534|301545|301549|301550|301551|301556|305877|305889|305906|305907|305909|305910|305921|306132|306134|306139|306142|306158|306171|306172|306197|306198|612088|691941|831571|895384|895385|895386|895387|895388|895389|895390|895391|895392|895393|895394|895395|895396|895397|895398|895399|895400|895401|895402|895403|895404|895405|895406|895407|895408|895409|895410|895411|895412|895413|895414|895415|895416|895417|895418|895419|896191|896192|905062|970821", + "text": "Deafness, autosomal dominant 10" + }, + { + "baseId": "21277|44695|53936|53937|53938|53939|53940|174347|174482|174484|174486|174487|174488|189808|189809|189812|189814|189815|189816|189817|189818|229421|229426|239887|239888|239889|239890|239892|258434|299095|299096|299100|299106|299107|299116|299118|299121|299127|299128|299129|299135|299136|299137|299149|301509|301524|301525|301534|301545|301549|301550|301551|301556|305877|305889|305906|305907|305909|305910|305921|306132|306134|306139|306142|306158|306171|306172|306197|306198|395062|395207|395219|395222|395414|395683|395684|395685|455283|455286|455296|455383|455389|455756|455962|456140|456142|456148|456150|491559|509796|521437|521438|521440|521443|521725|521770|521774|521779|521784|522024|522027|560465|560467|560469|560600|560602|560604|563392|563393|563396|565435|565441|634621|634622|634623|634624|634625|634626|634627|634628|634629|634630|634631|634632|634633|634634|634635|634636|634637|634638|651590|685191|686802|686804|689812|689813|691941|699329|765503|819663|831562|831563|831564|831565|831566|831567|831568|831569|831570|831571|831572|831573|831574|831575|831576|851314|852243|895384|895385|895386|895387|895388|895389|895390|895391|895392|895393|895394|895395|895396|895397|895398|895399|895400|895401|895402|895403|895404|895405|895406|895407|895408|895409|895410|895411|895412|895413|895414|895415|895416|895417|895418|895419|896191|896192|924260|924261|924262|924263|924264|933181|940840|944888|944889|954372|954373", + "text": "Dilated cardiomyopathy 1J" + }, + { + "baseId": "21280|21281|21282|21283|21284|21285|21286|21287|21288|34275|34276|34277|34278|34279|54268|54271|54272|76796|76801|166117|172446|204593|204594|204595|204596|204597|204598|204599|204600|204601|204602|496165|576062|581958|613748|967260", + "text": "Autosomal dominant nonsyndromic deafness 2A" + }, + { + "baseId": "21289|21290|21291", + "text": "Mucosa-associated lymphoma" + }, + { + "baseId": "21289|21304|21305", + "text": "Male germ cell tumor, somatic" + }, + { + "baseId": "21292|21293|21294|21295|21296|21297", + "text": "Follicular lymphoma" + }, + { + "baseId": "21298|24552|24553|608935", + "text": "T-cell acute lymphoblastic leukemia" + }, + { + "baseId": "21299", + "text": "Sezary syndrome" + }, + { + "baseId": "21306|76959|76960|76961|805099", + "text": "Coronary artery disease, autosomal dominant 2" + }, + { + "baseId": "21307|21308|21309|21310|21311|21312|21313|21314|21315|21316|21317|21318|21331|48770|48771|48772|48773|48774|48775|254285|262637|362379|362380|791165|858277|858278", + "text": "Osteoporosis with pseudoglioma" + }, + { + "baseId": "21319|432371", + "text": "High bone mass" + }, + { + "baseId": "21320|21321|21322|21324|181388", + "text": "Autosomal dominant osteopetrosis 1" + }, + { + "baseId": "21321|21322|21323", + "text": "Worth disease" + }, + { + "baseId": "21321", + "text": "Van Buchem disease type 2" + }, + { + "baseId": "21326|21327|21331", + "text": "Exudative vitreoretinopathy 4, autosomal dominant" + }, + { + "baseId": "21326|195712|226403|226404|226404|226405|226407|237630|304917|304932|304933|309667|315366|315379|315387|315395|315415|315417|322226|328347|328353|329665|431719|431758|431759|434765|800563|800564|800574", + "text": "Familial exudative vitreoretinopathy" + }, + { + "baseId": "21328|21329|21330|21333|21334", + "text": "Exudative vitreoretinopathy 4, autosomal recessive" + }, + { + "baseId": "21332", + "text": "Exudative vitreoretinopathy 4, digenic" + }, + { + "baseId": "21335|21336|21337|100280|106506|106507|106508|106509|237146|257368|335785|345492|345495|350111|351152|351153|351154|351155|351158|378134|422327|469419|469421|469428|470463|470468|471447|471448|471452|533578|533582|533625|533647|571306|571307|572845|572938|573576|573577|575117|575118|648767|648768|648769|648770|648771|648772|648773|648774|648775|653534|695847|780135|850634|850639|850641|850642|850643|850644|850645|850647|886278|886279|886280|886281|886282|886283|886284|887473|929223|939008|939009|940510|941254|951129", + "text": "Congenital disorder of glycosylation type 1E" + }, + { + "baseId": "21338|204404|204404|271607", + "text": "Familial expansile osteolysis" + }, + { + "baseId": "21339|23147|23149|190424|198653|198654|204404|204405|247436|251872|251872|251873|251874|251874|251875|251876|251876|251877|251878|260472|266298|271607|271834|273902|297254|297255|299249|303455|332146|332149|332150|332151|332153|332154|342324|342325|342331|342332|342334|342338|342343|342349|347744|347745|347746|347752|347760|347763|349118|349128|349129|349134|349141|349144|368605|368616|406734|440879|440880|440880|440881|454867|454870|454871|454874|455001|455004|455006|455009|455013|455014|455474|455485|455486|455488|455490|455492|455723|495500|521095|521353|521355|521466|521476|521644|521649|560406|560408|560410|563086|563088|576805|633830|633831|633832|633833|633834|633835|633836|633837|633838|633839|633840|633841|633842|633843|633844|633845|633846|633847|651328|691836|691837|691838|691839|691840|699040|699043|699044|709848|716022|721414|721415|727766|741423|744221|749450|765071|777447|777539|777547|782265|819585|830757|830758|830759|830760|830761|830762|830763|830764|830765|830766|830767|830768|830769|830770|830771|830772|851907|879693|879694|879695|879696|879697|879698|879699|879700|879701|879702|879703|879704|879705|879706|879707|879708|879709|879710|879711|879712|879713|879714|879715|879716|879718|879719|879720|879721|879722|879723|879724|879725|879726|879727|879728|879729|879730|879731|879732|879733|879734|879735|879736|879737|879738|880672|880673|880674|880675|880676|894062|924020|924021|924022|924023|924024|924025|924026|944580|944581|944582|944583|944584|954148|954149|954150|959763", + "text": "Paget disease of bone 2, early-onset" + }, + { + "baseId": "21340|21341|21342|21343|21344|190424|266298|271607|271834|273902|332146|332149|332150|332151|332153|332154|342324|342325|342331|342332|342334|342338|342343|342349|347744|347745|347746|347752|347760|347763|349118|349128|349129|349134|349141|349144|716022|727766|741423|879693|879694|879695|879696|879697|879698|879699|879700|879701|879702|879703|879704|879705|879706|879707|879708|879709|879710|879711|879712|879713|879714|879715|879716|879718|879719|879720|879721|879722|879723|879724|879725|879726|879727|879728|879729|879730|879731|879732|879733|879734|879735|879736|879737|879738|880672|880673|880674|880675|880676", + "text": "Autosomal recessive osteopetrosis 7" + }, + { + "baseId": "21345|21346|76990|334431|344295|344304|349406|349409|349410|350418|620649|882549|882550|882551|882552|882553|882554|882555|882556|882557|882558|882559|882560|882561|882562|882563|882939|882940", + "text": "Infertility associated with multi-tailed spermatozoa and excessive DNA" + }, + { + "baseId": "21347|21349|21350|578378|965211", + "text": "Mullerian aplasia and hyperandrogenism" + }, + { + "baseId": "21348|578378", + "text": "SERKAL syndrome" + }, + { + "baseId": "21351", + "text": "Lumbar disc disease, susceptibility to" + }, + { + "baseId": "21352|21353|21354|21355|21356|21357|21359|94534|142630|208599|238353|243345|265986|333680|333685|333686|343684|349023|349028|349030|349032|349034|349917|349918|349920|349921|430219|430220|557386|578653|882094|882095|882096|882097|882098|882896|882897|882898|965627|965628", + "text": "Diamond-Blackfan anemia 1" + }, + { + "baseId": "21360|21361|21362|21363|21364|21365|21366|21367|21368|21369|21370|21371|21372|21373|21374|21375|21376|21377|21378|97542|98279|98280|98281|98282|98283|98284|98285|98286|98287|176996|177496|186781|186782|186783|186784|190535|190714|191131|191617|194259|195547|200164|200174|200175|200178|200179|200180|204411|227330|236999|252988|252989|253325|253328|253330|259915|260670|260671|260672|260673|271748|303680|303681|303690|303693|303697|303698|303699|303705|303706|303715|307052|307053|307059|307060|307064|307069|307072|307073|307074|307083|307084|307089|307090|307091|307111|307112|307115|307116|307119|307122|307124|307127|311160|311162|311163|311201|311210|311211|312042|312049|312060|312061|312065|312066|312067|312069|312077|312078|312080|312094|312111|312113|312131|312132|312144|316786|316789|316793|316794|316795|317203|317204|317206|317223|317229|357775|357776|357777|357778|357779|357780|357781|357782|357783|370425|370688|372324|415163|421714|425824|433368|458127|458419|458425|458888|458890|458934|458935|458938|487247|487354|502584|502694|502699|503002|503015|524074|524076|524366|524588|524631|524639|544680|544683|544687|544690|544701|544704|544992|544994|544996|544997|545001|545002|545004|545113|545115|545117|545125|545128|545131|545207|545208|545211|545216|545221|545226|545228|545233|545238|563560|565354|565571|565573|565575|568550|568555|612131|612283|620321|620809|621294|621295|637784|637785|637786|637787|637788|637789|651832|655902|655903|692594|692595|692596|695419|700836|723363|723365|736928|736929|751439|751440|751441|751442|751443|751444|775347|775488|783297|790765|790846|801663|801664|801665|801666|801667|801668|801669|801670|801671|801672|801673|820076|820077|835570|835571|835572|835573|835574|835575|835576|835577|835578|835579|852487|901185|901186|901187|901188|901189|901190|901191|903322|903323|903324|917471|925406|925407|925408|925409|934571|934572|934573|934574|940925|940926|946397|955708|955709|955710|955711|955712|955713|959913|961782|978569|978570|978571|980932|981663|981664|981665|981666|981667", + "text": "Citrullinemia type I" + }, + { + "baseId": "21373|98282|98286|99030|99032|191131|253327|311163|312111|312132|370688|421714|637783|835572", + "text": "Citrullinemia" + }, + { + "baseId": "21374|21375", + "text": "Citrullinemia, mild" + }, + { + "baseId": "21379|21380|21381|21382|21383|138087|138088|138090|138093|205168|207863|241077|241078|241080|241081|241084|247056|254127|254128|313736|313738|313753|313755|313760|313761|313763|313779|313785|319945|319946|319947|319949|319952|319955|319957|319961|319977|326147|326150|326155|326156|326157|326159|326161|327056|327060|327063|327066|327067|327070|327071|327089|327095|327096|327100|408323|429237|461117|564550|687747|796556|796557|867781|867782|867783|867784|867785|867786|867787|867788|867789|867790|867791|867792|867793|867794|867795|867796|867797|867798|867799|867800|917880|917882|917883|980465", + "text": "Fanconi anemia, complementation group F" + }, + { + "baseId": "21384|622682|622683", + "text": "Familial advanced sleep phase syndrome 1" + }, + { + "baseId": "21385|21386|227228|283144|283145|283148|283152|283154|283882|283885|283886|283889|283890|283891|283897|283898|283899|285621|285626|285627|285630|285632|285633|285640|285643|285647|286049|286053|286054|286055|413571|449299|449304|508775|512891|516699|516751|516757|516763|516852|557422|629030|629031|677409|825268|881699|881700|881701|881702|881703|881704|881705|881706|881707|881708|881709|881710|881711|881712|881713|918701|942437", + "text": "Dystonia 16" + }, + { + "baseId": "21388|21389|21390|21391|21403|21404|21406|21409|34195|34196|34197|34198|34199|34200|34201|34202|39313|39315|39316|99992|135701|135702|135703|135704|135705|135706|135707|135709|135711|135712|135712|135713|135714|135716|135717|135719|142779|167457|167458|178056|178057|178058|178059|191022|191661|192649|192753|192977|193181|195314|231501|231504|238383|244319|250347|250350|250353|272066|275422|282546|282547|282548|282552|282559|282569|282570|282571|282573|282586|282589|282597|282598|282599|282600|282603|282604|283189|283191|283192|283193|283199|283202|283205|283209|283226|283230|283231|283243|283254|283257|283268|283297|283306|283307|283308|283310|283311|283323|283334|283335|283336|283354|283355|283356|283357|284812|284813|284820|284821|284826|284835|284836|284838|284841|284842|284846|284848|284849|284864|284866|284867|284868|284871|284873|284874|284879|284887|285257|285259|285260|285263|285267|285268|285269|285287|285288|285291|285295|285322|285331|285332|285333|285347|285357|285359|285361|285362|285365|285388|285392|285393|285406|391507|391619|449072|449093|449189|449235|516685|516796|538953|557686|614232|628887|628921|628939|655175|881369|881370|881371|881372|881373|881374|881375|881376|881377|881378|881379|881380|881381|881382|881383|881384|881385|881386|881387|881388|881389|881390|881391|881392|881393|881394|881395|881396|881397|881398|881399|881400|881401|881403|881404|881405|882826|904106", + "text": "Primary erythromelalgia" + }, + { + "baseId": "21389", + "text": "Abnormality of pain sensation" + }, + { + "baseId": "21389|360927", + "text": "Acute episodes of neuropathic symptoms" + }, + { + "baseId": "21389|21395|21398|21405|21405|21406|21406|21407|21409|34196|34199|34201|39313|39315|39316|80302|99991|99992|135702|135705|135707|135708|135709|135710|135711|135712|135712|135714|135715|135718|135718|135719|167457|167458|177333|178054|178058|178058|178059|190810|190811|190812|191022|191023|191370|191661|191899|191900|192002|192109|192649|192753|192837|192976|192977|193181|195313|195314|206888|231501|231504|231505|231506|231510|231514|238383|238384|238385|244295|244296|244300|244301|244304|244305|244307|244308|244311|244313|244314|244315|244317|244319|244320|244321|250350|250353|268661|270142|270187|270755|272066|273736|274078|274080|275101|275422|282594|282597|282598|282600|283323|283334|283335|283336|283355|283356|284848|284864|284866|284868|285355|285357|285359|285361|285365|285388|285390|285392|285402|359378|360823|364014|365676|365687|365688|365908|365911|365916|366164|391441|391444|391448|391452|391453|391456|391486|391488|391495|391498|391500|391507|391507|391611|391614|391616|391617|391619|391621|391625|391661|391665|405413|405415|405417|414848|421318|421319|425436|425437|426661|426662|427935|440564|440565|440566|440567|440569|443042|443044|443045|443046|448472|448550|448865|448866|448870|448874|448876|448878|448879|448880|448882|448889|448890|448897|448902|448903|448913|448922|448927|448938|448951|448952|448953|448955|448957|449038|449055|449057|449059|449063|449072|449080|449089|449091|449093|449095|449097|449099|449101|449104|449105|449110|449117|449146|449148|449149|449153|449154|449159|449160|449161|449162|449164|449166|449168|449169|449172|449175|449178|449180|449181|449183|449184|449185|449187|449189|449189|449191|449196|449197|449198|449199|449203|449204|449209|449210|449211|449218|449222|449228|449231|449233|449235|449244|449260|449261|449265|449268|489508|490283|490953|492995|496215|498890|498981|511356|516611|516616|516618|516631|516635|516636|516650|516656|516657|516658|516659|516661|516669|516670|516671|516672|516675|516676|516677|516678|516679|516682|516684|516685|516686|516687|516687|516688|516690|516691|516693|516694|516695|516698|516701|516702|516703|516704|516705|516707|516710|516714|516716|516719|516721|516722|516725|516735|516739|516747|516752|516753|516755|516760|516762|516769|516771|516790|516796|516804|516807|516808|516813|536616|538953|557650|557652|557658|557660|557662|557664|557666|557668|557670|557672|557674|557676|557678|557680|557682|557684|557686|557688|557690|557693|557695|557697|557699|557701|557703|557705|557707|557709|557711|557713|557715|557717|557719|557721|557723|558867|558869|558871|558873|558875|558877|558879|558881|558883|558885|558887|558889|558891|558893|558895|558897|558899|558899|558901|558903|558905|559352|559354|559356|559358|559360|559362|559364|559366|559368|559370|559372|559374|559376|559378|559380|559382|559384|559386|559388|559390|576587|588407|612573|614232|622836|622836|624877|625099|628887|628888|628889|628890|628891|628892|628893|628894|628895|628896|628897|628898|628899|628900|628901|628902|628903|628904|628905|628906|628907|628908|628909|628910|628911|628912|628913|628914|628915|628916|628917|628918|628919|628920|628921|628922|628923|628924|628925|628926|628927|628928|628929|628930|628931|628932|628933|628934|628935|628936|628937|628938|628939|628940|628941|628942|628943|628944|628945|628946|628947|628948|628949|628950|628951|628952|628953|628954|628955|628956|628957|628958|628959|628960|628961|628962|628963|628964|628965|628966|628967|628968|628969|628970|628971|628972|628973|628974|628975|650863|650871|650897|655175|683416|683418|685116|685904|685906|685907|685909|685910|685912|685914|685915|685916|685917|689676|689677|690876|690879|690880|690881|690882|719371|732887|746896|746898|762367|762370|762371|762376|774631|780932|780933|780934|787106|794848|794851|825102|825103|825104|825105|825106|825107|825108|825109|825110|825111|825112|825113|825114|825115|825116|825117|825118|825119|825120|825121|825122|825123|825124|825125|825126|825127|825128|825129|825130|825131|825132|825133|825134|825135|825136|825137|825138|825139|825140|825141|825142|825143|825144|825145|825146|825147|825148|825149|825150|825151|825152|825153|825154|825155|825156|825157|825158|825159|825160|825161|825162|825163|825164|825165|825166|825167|825168|825169|825170|825171|825172|825173|825174|825175|825176|825177|825178|825179|825180|825181|825182|825183|825184|825185|825186|825187|825188|825189|825190|825191|825192|850805|850850|851352|851354|881391|881399|918691|922375|922376|922377|922378|922379|922380|922381|922382|922383|922384|922385|922386|922387|922388|922389|922390|922391|922392|922393|922394|922395|922396|922397|922398|922399|922400|922401|930943|930944|930945|930946|930947|930948|930949|930950|930951|930952|930953|930954|930955|930956|930957|930958|930959|930960|930961|930962|930963|930964|930965|930966|930967|930968|942366|942367|942368|942369|942370|942371|942372|942373|942374|942375|942376|942377|942378|942379|942380|942381|942382|942383|942384|942385|942386|942387|942388|942389|942390|942391|942392|942393|942394|942395|942396|952765|952766|952767|952768|952769|952770|952771|952772|952773|952774|952775|952776|952777|952778|952779|952780|959592|959593|959594|959595|960453", + "text": "Generalized epilepsy with febrile seizures plus, type 7" + }, + { + "baseId": "21389", + "text": "SCN9A-related peripheral neuropathies associated with increased pain" + }, + { + "baseId": "21392|21393|21394|21401|21402|21406|21409|34196|39313|39315|39316|99992|135701|135702|135703|135704|135705|135706|135707|135709|135711|135712|135712|135713|135714|135716|135717|135719|142779|167457|167458|167459|178056|178057|178059|191022|191661|192649|192753|192977|193181|195314|198610|231501|231504|238383|244319|250347|250350|250353|272066|275422|282546|282547|282548|282552|282559|282569|282570|282571|282573|282586|282589|282597|282598|282599|282600|282603|282604|283189|283191|283192|283193|283199|283202|283205|283209|283226|283230|283231|283243|283254|283257|283268|283297|283306|283307|283308|283310|283311|283323|283334|283335|283336|283354|283355|283356|283357|284812|284813|284820|284821|284826|284835|284836|284838|284841|284842|284846|284848|284849|284864|284866|284867|284868|284871|284873|284874|284879|284887|285257|285259|285260|285263|285267|285268|285269|285287|285288|285291|285295|285322|285331|285332|285333|285347|285357|285359|285361|285362|285365|285388|285390|285392|285393|285402|285406|391507|391619|449072|449093|449209|449235|481457|496215|516796|538953|557686|614232|628887|628921|628939|655175|881369|881370|881371|881372|881373|881374|881375|881376|881377|881378|881379|881380|881381|881382|881383|881384|881385|881386|881387|881388|881389|881390|881391|881392|881393|881394|881395|881396|881397|881398|881399|881400|881401|881402|881403|881404|881405|882826", + "text": "Indifference to pain, congenital, autosomal recessive" + }, + { + "baseId": "21395|21396|21397|21398|21399|21400|21406|21409|34196|39313|39315|39316|99992|135701|135702|135703|135704|135705|135706|135707|135709|135711|135712|135712|135713|135714|135716|135717|135719|142779|167457|167458|178055|178056|178057|178058|178059|191022|191370|191661|192649|192753|192977|193181|195314|231501|231504|238383|244302|244319|250347|250350|250353|272066|273736|275422|282546|282547|282548|282552|282559|282565|282569|282570|282571|282573|282582|282586|282589|282594|282597|282598|282599|282600|282603|282604|283189|283191|283192|283193|283199|283202|283205|283206|283209|283226|283227|283230|283231|283243|283254|283257|283258|283259|283267|283268|283293|283297|283306|283307|283308|283310|283311|283322|283323|283334|283335|283336|283354|283355|283356|283357|284810|284812|284813|284820|284821|284826|284835|284836|284837|284838|284841|284842|284846|284848|284849|284864|284866|284867|284868|284871|284873|284874|284879|284887|285257|285259|285260|285263|285267|285268|285269|285287|285288|285291|285292|285295|285305|285321|285322|285329|285331|285332|285333|285347|285355|285356|285357|285359|285361|285362|285364|285365|285367|285388|285390|285392|285393|285402|285406|391507|391619|421316|439526|439527|449072|449093|449189|449235|516796|538953|557686|614232|628887|628921|628939|655175|881369|881370|881371|881372|881373|881374|881375|881376|881377|881378|881379|881380|881381|881382|881383|881384|881385|881386|881387|881388|881389|881390|881391|881392|881393|881394|881395|881396|881397|881398|881399|881400|881401|881402|881403|881404|881405|882826", + "text": "Paroxysmal extreme pain disorder" + }, + { + "baseId": "21406|27037|360928|792811", + "text": "Hypoglycemia" + }, + { + "baseId": "21407|21408", + "text": "Febrile seizures, familial, 3b" + }, + { + "baseId": "21409|34196|135701|135703|135712|135713|135717|167458|178055|178056|178057|178058|191370|191661|192753|192977|193181|238383|244319|250353|273736|275422|282547|282548|282552|282565|282571|282582|282589|282594|282597|282603|283189|283191|283192|283193|283205|283206|283227|283230|283231|283254|283258|283259|283267|283268|283293|283297|283306|283308|283322|283335|283336|284810|284813|284820|284821|284835|284837|284846|284848|284864|284867|284871|284874|285257|285260|285263|285267|285287|285291|285292|285305|285321|285329|285331|285333|285347|285355|285356|285364|285367|285390|285392|285393|285402", + "text": "Inherited Erythromelalgia" + }, + { + "baseId": "21410|21411|21412|21413|21414|21415|21416|21417|174290|174425|193123|207283|207284|226541|226542|226543|226544|226545|229310|229311|229313|229314|236990|252016|271075|298075|298078|298079|298086|298089|298093|298098|298100|298102|300338|300344|300357|300358|300367|300370|300371|300372|300374|300375|300376|300377|300379|300381|300393|300394|304617|304620|304632|304658|304668|304669|304674|304900|304906|304918|304919|304931|304939|304941|428467|428469|455246|455713|455714|521535|521538|521599|521603|521860|560379|560381|560383|560488|560490|560492|563225|563227|565196|612710|614290|614291|634013|634014|634015|634016|634017|634018|634019|634020|634021|634022|634023|634024|634025|634026|634027|634028|634029|634030|651279|682753|735202|735204|749592|749593|749594|749595|749596|765209|765210|765215|775049|775074|779130|782335|801071|819606|819607|830948|830949|830950|830951|830952|830953|830954|830955|830956|830957|830958|830959|830960|830961|830962|830963|830964|894685|894686|894687|894688|894689|894691|894692|894693|894694|894695|894696|894697|894698|894699|894700|894701|896134|896135|924102|924103|924104|924105|924106|924107|924108|924109|924110|924111|924112|924113|932948|932949|932950|932951|932952|932953|932954|932955|940010|940011|944651|944652|944653|944654|944655|944656|944657|944658|944659|954197|960568|960569|960570|961948", + "text": "Hermansky-Pudlak syndrome 2" + }, + { + "baseId": "21418|21419|21420|21421|21422|21423|21424|21425|21427|21428|176922|246855|298749|298751|298765|298772|301224|301225|301227|301230|301231|305601|305703|305705|305706|446858|511619|615922|620208|624850|626074|699260|721679|805460|816457|857385|895197|895198|896180", + "text": "Progressive pseudorheumatoid dysplasia" + }, + { + "baseId": "21429", + "text": "Pigmented nodular adrenocortical disease, primary, 3" + }, + { + "baseId": "21430|237517|237518|298056|298057|298060|298061|298066|298070|298071|300250|300254|300262|300264|300271|300273|300274|300292|300304|300317|300319|300320|300323|304477|304505|304506|304515|304517|304525|304531|304533|304536|304537|304538|304539|304543|304544|304550|304565|304567|304585|304599|304612|304613|304773|304774|304777|304804|304807|304813|304817|304818|304820|304826|304827|304830|304831|304832|304841|304845|304846|304894|304898|735198|735200|790564|894661|894662|894663|894664|894665|894666|894667|894668|894669|894670|894671|894672|894673|894674|894675|894676|894677|894678|894679|894680|894681|894682|894683|894684|896132|896133|918979|918980|920212|964261|964362", + "text": "Striatal degeneration, autosomal dominant 1" + }, + { + "baseId": "21431|21432|21433|48263|49895|49896|49897|49898|75278|75279|135969|135970|135971|135972|135973|135974|135975|135976|135977|205012|207402|207403|207405|207406|207407|207408|207409|207410|207411|207412|207413|213572|225824|225831|226901|227706|239898|239899|239900|244015|359770|360878|361343|362330|362429|362435|368917|395099|395101|395109|395111|395113|395233|395244|395246|395247|395443|395445|395448|395450|395453|395695|395696|395704|395709|406862|415049|421588|424377|424650|428617|428619|428624|428625|428626|428629|430962|431914|431915|438319|443960|455530|455538|455541|455542|455551|455559|455656|455660|455663|455670|455672|455696|455701|455702|455706|456122|456125|456129|456135|456373|456376|456383|481762|486745|488156|511673|511676|512822|513422|521575|521582|521587|521593|521594|521596|521601|521612|521614|521616|521620|521622|521871|521880|521881|521892|521896|521899|521908|521911|521946|521961|521962|521964|521970|521972|522282|522284|522288|522296|522298|522299|538386|550360|552106|560690|560692|560694|560698|560700|560791|560797|560801|563519|563521|563522|563527|563534|563535|563544|565586|565590|565592|565594|565613|565623|578447|579253|579265|579270|611393|611394|611395|611466|623587|626164|634839|634840|634841|634842|634843|634844|634845|634846|634847|634848|634849|634850|634851|634852|634853|634854|634855|634856|634857|634858|634859|634860|634861|634862|634863|634864|634865|634866|634867|651550|678958|683776|683777|683778|683779|683780|683781|685193|686827|686831|686832|686833|686834|686835|689822|691976|691977|691979|691980|691981|721992|735619|750041|750043|750044|765653|765657|782526|788800|790616|790617|790618|790619|790620|800668|801991|801992|801993|802057|819682|819684|819685|819686|821925|821926|821927|821928|821929|821930|821931|821932|821933|821934|821935|822260|831844|831845|831846|831847|831848|831849|831850|831851|831852|831853|831854|831855|831856|831857|831858|831859|831860|831861|831862|831863|831864|831865|831866|831867|851072|852022|852255|857646|861536|906187|919024|919025|920228|924333|924334|924335|924336|924337|924338|924339|924340|924341|924342|933291|933292|933293|933294|933295|933296|933297|933298|933299|933300|933301|933302|933303|933304|933305|940843|944980|944981|944982|944983|944984|944985|944986|944987|944988|944989|944990|944991|954425|954426|954427|954428|954429|960580|961606|962861|963608|963609|964030|964276|964277|964278|966681|969324|969699|970832|970833", + "text": "Mental retardation, autosomal dominant 5" + }, + { + "baseId": "21434|21435|21436|21446|21447|34132|34149|199884|246954|270859|273662|495655|495659|550594|550595|578659|578660|578661|578664|578665|609238|609239|622083|795463|798536", + "text": "Spondylocarpotarsal synostosis syndrome" + }, + { + "baseId": "21437|21438|21444|21445|34130|34131|34133|34135|34137|34139|34144|34148|193539|246954|251267|267835|268588|270886|270894|273662|310812|310813|310820|310829|310830|310831|310832|310842|310844|310848|310850|310852|310858|310859|310862|310864|310866|310868|310870|310878|310884|310887|310890|310892|310895|310899|310907|310918|310919|310928|310929|310930|310931|316068|316069|316072|316073|316074|316082|316090|316094|316099|316103|316111|316112|316114|316120|316133|316144|316148|316149|316156|316162|316169|316174|316175|316176|316177|316180|316181|316189|316190|316200|316201|316204|316205|316210|316220|316221|316223|316226|322169|322170|322172|322183|322185|322190|322191|322192|322196|322197|322199|322200|322212|322213|322218|322231|322232|322233|322236|322239|322240|322241|322242|322245|322246|322254|322260|322261|322266|322267|322274|322275|322276|322780|322783|322784|322785|322786|322789|322790|322801|322802|322803|322804|322806|322807|322808|322815|322816|322822|322831|322832|322845|322849|322876|322879|322880|322882|322887|322888|322890|322891|322892|322893|322894|322896|322900|513264|578424|682802|682815|790414|974887", + "text": "Larsen syndrome" + }, + { + "baseId": "21439|21440|34134|34136|34142|34143|34146|46907|131909|246954|259290|273662|291312", + "text": "Atelosteogenesis type 1" + }, + { + "baseId": "21440|21441|34138|34140|34145|34147|246954|273662|291312|359580|903494|918851|918852|918853|918854|974887", + "text": "Atelosteogenesis type III" + }, + { + "baseId": "21442|21443|246954|273662|578424", + "text": "Boomerang dysplasia" + }, + { + "baseId": "21448|21449|21450|21451|21452|21453|21454|21455|21456|21457|21458|21459|21460|21461|21462|21463|21464|21465|21466|21467|21468|36672|36673|36674|36675|36676|36677|36678|36680|36681|36682|36683|36684|36685|36686|36687|36688|36689|36690|36691|36692|36693|36694|36695|36697|36698|36699|36700|36701|36702|36703|36704|36705|36706|36707|36708|36709|36710|36711|36713|36715|36716|36717|36718|36719|36720|36721|36723|36724|36725|36726|36727|36728|36729|36730|36731|36732|36733|36735|36736|36737|36738|36739|36740|36741|36742|36743|36744|36745|36747|36748|36750|36751|36752|36753|36754|36755|36757|36758|36759|36760|36761|36762|36763|36764|36765|36766|36767|46831|46834|46842|47395|47396|47397|47398|47399|47400|99999|100001|100002|177225|190414|200083|200086|200090|200092|237754|237755|264226|265303|269839|270008|272965|272969|295272|295282|295283|295289|295292|295293|295298|295300|295304|295306|297106|297107|297109|297111|300759|300783|300786|300788|300791|300792|300793|300804|300816|300818|300823|300922|300926|300927|300930|300931|300942|357381|357382|357383|357384|357385|357386|357387|357388|357389|357390|357391|359545|359638|359651|361941|362413|367924|367932|367937|368197|368199|368341|368347|368353|368360|369600|406630|406631|406632|414985|421524|433009|438300|454338|454344|454349|454354|454357|454358|454360|454362|454377|454490|454493|454498|454505|454845|454846|454852|454854|454856|454857|454859|454860|454864|454866|454868|454878|454879|454884|455115|455119|455126|455130|455132|495236|500990|500993|513059|513554|520630|520632|520644|520858|520861|520863|521014|521017|521018|521023|521085|543291|543299|543301|543308|543311|543313|543317|543578|543580|543582|543584|543587|543588|543593|543594|543678|543679|543681|543683|543685|543777|543779|543784|543785|543790|560059|560061|560063|560065|560067|560069|560071|560073|560152|560154|560156|560158|560160|562671|562673|562675|562677|564519|564537|564547|564548|564558|564564|578429|621908|633052|633053|633054|633055|633056|633057|633058|633059|633060|633061|633062|633063|633064|633065|633066|633067|633068|633069|633070|633071|633072|633073|633074|633075|633076|633077|651249|651292|691688|691690|691691|698770|698771|698772|709615|721210|721211|734838|749203|749204|764818|764820|764821|787249|788773|795623|795624|799398|799399|801608|819536|819638|819639|830056|830057|830058|830059|830060|830061|830062|830063|830064|830065|830066|830067|830068|830069|830070|830071|830072|830073|830074|830075|851850|851892|892870|892871|892872|892873|892874|892875|892876|892877|892878|892879|892880|892881|892882|892883|892884|923795|923796|923797|923798|932640|932641|932642|932643|932644|932645|932646|939980|940795|944318|944319|944320|944321|944322|944323|944324|944325|953962|953963|953964|953965|953966|953967|953968|953969|953970|953971|953972|953973|953974|959746|959747|959748|961770|964112|978120|978121|978122|978123|978124|978125|978126", + "text": "Renal carnitine transport defect" + }, + { + "baseId": "21469", + "text": "THYROTROPIN RECEPTOR POLYMORPHISM" + }, + { + "baseId": "21469|21472|21475|21478|21481|21484|21487|21488|21489|21490|21491|21493|21496|139131|139133|139135|139137|139138|139139|139140|205285|215485|227361|227362|255092|255093|255095|321627|321628|321633|321634|321635|321636|330890|330891|330894|330904|330906|330908|330912|337547|337553|337556|337563|337564|337565|337571|337572|337585|337591|337607|337609|337613|339633|339636|339638|339642|339647|339648|339655|339657|339660|339661|339664|339665|429594|693609|739359|754183|791425|872794|872795|872796|872797|872798|872799|872800|872801|872802|872803|872804|872805|872806|872807|872808|872809|872810|872811|872812|872813|872814|872815|872816|872817|872818|872819|872820|872821|872822|872823|872824|872825|876459", + "text": "Hyperthyroidism, nonautoimmune" + }, + { + "baseId": "21469|21473|21474|21477|21478|21479|21480|21481|21482|21483|21484|21486|21494|21495|21497|21498|21499|21500|139131|139133|139135|139137|139138|139139|139140|187122|205285|215485|227361|227362|255092|255093|255095|321627|321628|321633|321635|330890|330891|330894|330904|330906|330908|330912|337547|337553|337556|337563|337564|337565|337571|337572|337585|337591|337607|337609|337613|339633|339636|339638|339647|339648|339655|339657|339660|339661|339664|339665|429594|612305|693609|739359|754183|872794|872795|872796|872797|872798|872799|872800|872801|872802|872803|872804|872805|872806|872807|872808|872809|872810|872811|872812|872813|872814|872815|872816|872817|872818|872819|872820|872821|872822|872823|872824|872825|876459|906178|906181", + "text": "Hypothyroidism, congenital, nongoitrous, 1" + }, + { + "baseId": "21470|21471|21472|21485|21490", + "text": "Thyroid adenoma, hyperfunctioning" + }, + { + "baseId": "21476", + "text": "THYROID CARCINOMA WITH THYROTOXICOSIS, SOMATIC" + }, + { + "baseId": "21481|45412|45413|45414|45415|45780|79466|79481|79508|99530|99532|99537|99546|99547|99559|99561|99564|142674|191002|191522|193103|201142|201560|201597|202741|206886|214847|224835|224836|224837|224843|224845|224846|224847|224851|282505|282516|282517|282522|282523|282527|282530|282532|282536|282540|282541|282542|283171|283180|283181|283182|283183|284767|284774|284775|284779|284782|284785|284786|284787|284795|284796|284797|284808|285215|285228|285235|285238|285241|285246|285247|285248|285252|285253|285256|354292|354296|354297|354300|354305|361124|361138|361140|361142|361143|361146|361155|362591|362592|362593|362594|397302|413569|426700|428861|445590|445592|465786|465789|465790|465791|465793|465795|465796|465799|465802|465806|465808|465812|465814|466504|466505|466507|466512|466515|466517|466533|466534|466538|466543|466761|466764|466768|466772|466775|466785|466788|466790|512217|529849|530067|530075|530086|530088|530093|530097|530191|530194|530196|530201|530203|530204|530366|530367|530385|530391|530393|530404|530406|530410|530606|530610|530613|530616|530620|530621|530626|530632|536067|551697|553412|568200|568209|569392|570311|570315|570317|570326|570328|570329|570333|570335|570337|570343|570344|570346|574095|574097|578035|608922|608933|621921|621922|621923|621924|623726|623731|623733|623734|623735|624877|644776|644777|644778|644779|644780|644781|644782|644783|644784|644785|644786|644787|644788|644789|644790|644791|644792|644795|644796|644797|644798|644799|644800|644801|644802|644803|644804|652578|653043|653278|679784|679940|693905|693906|703751|703752|703762|714994|726709|726717|731078|731081|740280|745240|755276|755280|822296|844034|844035|844036|844037|844038|844039|844043|844046|844049|844086|844087|844088|844089|852123|927873|927874|927875|927877|937504|937505|937506|937507|937511|937524|937525|937526|949446|949447|949451|949457|949474|949475|957816|957830|960171|964150|964287|964478|964522|964679|970257|970340", + "text": "Epilepsy" + }, + { + "baseId": "21481", + "text": "autistic features" + }, + { + "baseId": "21481|39943|202625|264298|354285|354286|354286|354287|354287|354288|354290|354295|354296|354297|354298|354298|354300|354305|360822|360938|360965|361086|425202|425203|444751|538627|622148|623665|623666|623667|672066|792771|916788|970336|970340|970344|970520", + "text": "Developmental delay" + }, + { + "baseId": "21492", + "text": "Hyperthyroidism, familial gestational" + }, + { + "baseId": "21501|21502|190983|195270|253314|253315|268653|269663|269663|273264|306902|306911|306915|306920|306927|306929|311078|311084|311096|311101|316683|316685|316686|317048|317051|317080|317081|317086|317087|317088|317090|513613|692578|695413|695414|901142|901143|901144|901145|901146|901147|901148|901149|901150|901151|901152|901153|901154|901155|901156|901157|901158|901159|901160|901161|901162|901163|903318|903319|903320", + "text": "Lethal congenital contracture syndrome 1" + }, + { + "baseId": "21501|21502|21503|21504|190983|195270|253314|253315|268653|269663|269663|273264|306902|306911|306915|306920|306927|306929|311078|311084|311096|311101|316683|316685|316686|317048|317051|317080|317081|317085|317086|317087|317088|317090|610536|610537|610538|610539|692578|692579|692582|692583|695413|695414|901142|901143|901144|901145|901146|901147|901148|901149|901150|901151|901152|901153|901154|901155|901156|901157|901158|901159|901160|901161|901162|901163|903318|903319|903320|978561|978562|978563|978564|978565|978566|978567|978568", + "text": "Lethal arthrogryposis with anterior horn cell disease" + }, + { + "baseId": "21501|21502|273264|444366|692580|695415|711770|736904", + "text": "Lethal congenital contractural syndrome Finnish type" + }, + { + "baseId": "21505|21506|193558|195974|195974|254173|254176|265404|267043|271125|314152|314158|314159|314163|314168|314170|320691|320692|320695|320695|320703|320706|320707|320708|326768|326782|326784|326787|326800|327727|327734|327737|327738|327740|490260|492179|587980|730769|802178|868019|868020|868021|868022|868023|868024|868025|868026|868027|868028|868029|868649|896571", + "text": "Peroxisome biogenesis disorder 8A" + }, + { + "baseId": "21507|21508|21509|286489|286492|286497|286503|286504|286509|286511|286519|286529|286532|286536|286552|286554|286559|286562|286565|286580|286581|286582|286583|287179|287180|287183|287184|287188|287190|287191|287199|287200|287211|287214|287228|287231|287243|287254|287271|287272|287273|287279|287280|287299|287300|287305|289527|289539|289541|289544|289558|289563|289578|289581|289584|289600|289601|289606|289607|289614|289619|289623|289625|289627|289637|289641|289981|289982|290010|290011|290012|290013|290014|290018|290022|290023|290024|290027|290028|290030|290032|290034|290035|290045|290046|290047|290049|290061|290065|290070|428060|885033|885034|885035|885036|885037|885038|885039|885040|885041|885042|885043|885044|885045|885046|885047|885048|885049|885050|885051|885052|885053|885054|885055|885056|885057|885058|885059|885060|885061|885062|885063|885064|885065|885066|885067|885068|885069|885070|885071|885072|887375|887376", + "text": "Erythrocytosis, familial, 4" + }, + { + "baseId": "21510|21511|21512|294086|294097|294098|294101|294102|294109|294111|294115|294116|294123|294125|294129|294130|294136|294137|294138|294140|294141|294142|294145|294146|295551|295552|295555|295563|295567|295570|295579|295581|295583|295588|295591|295599|295600|295602|295603|295605|295607|295610|295615|295617|295632|295639|295641|295651|295652|295660|299349|299358|299360|299362|299363|299364|299367|299374|299378|299380|299382|299386|299387|299391|299392|299393|299394|299395|299396|299397|299401|299405|299406|299407|299408|299410|299412|299413|299414|299417|299418|299425|299426|299427|299430|299433|299447|299449|536190|698621|709444|721059|721061|721062|764610|779211|790483|790484|892153|892154|892155|892156|892157|892158|892159|892160|892161|892162|892163|892164|892165|892166|892167|892168|892169|892170|892171|892172|892173|892174|892175|892176|892177|892178|892179|892180|892181|892182|892183|892184|892185|892186|892187|892188|892189|892190|892191|892192|892193|892194|892195|892196|892197|892198|892199|892200|895992|895993|895994", + "text": "Renal tubular acidosis, proximal, with ocular abnormalities and mental retardation" + }, + { + "baseId": "21513|21514|21515|45639|45640|45641|174062|174072|192740|195508|205155|205156|221681|221689|221695|229586|240035|240066|252675|252694|252721|252744|252752|252758|252770|259857|265859|273561|302431|310521|310767|395584|395617|395748|395901|395919|396216|446887|456552|456980|457024|457617|522535|523191|538394|561807|561840|564206|564207|566687|566706|620255|620256|620257|635993|683866|683877|687021|687030|792769|798584|800942|815839|833438|833467|857594|857595|857596|857597|857604|861606|897831|897832|897833|897834|897835|897836|897837|897838|897839|897840|897841|897842|897843|897844|897845|897846|897847|897848|897849|897850|897851|897852|897853|897854|897855|897856|897857|897858|897859|897860|897861|897862|897863|897864|897865|897866|897867|897868|897870|897871|900337|900338|900339|900340|900341|900342|900343|900344|919099|963147", + "text": "Ciliary dyskinesia, primary, 7" + }, + { + "baseId": "21513", + "text": "CILIARY DYSKINESIA, PRIMARY, 7, WITH SITUS INVERSUS" + }, + { + "baseId": "21516|21517|21518|21519|21520|48248|48250|48251|76544|76545|99630|150296|150297|173544|173545|173546|173547|173548|173549|173550|173551|173552|173555|173557|173559|173560|173561|173562|173563|173564|173565|173566|173567|173568|173569|173570|173571|173682|173684|173685|173687|173690|173691|173692|173694|173695|173697|173698|173699|173700|173701|173702|173703|173704|173705|173707|173708|186048|186049|186050|190792|192969|194678|194702|195139|205552|212501|212503|221594|221595|221596|221597|221602|221603|221604|227278|229241|229242|229243|229245|229246|229247|229248|229249|229250|229252|229253|229254|229255|229256|229258|229260|229261|229262|229263|229264|229266|229267|229268|229269|229270|229271|239718|239719|239720|239721|239722|239723|239725|239727|239728|239731|239735|239738|239742|239744|239745|239762|239763|239765|239766|251680|251689|251691|251693|251706|251709|251712|251713|251715|251723|251725|251727|251734|251738|251741|251748|251750|251756|251761|251768|251771|251776|251788|251793|265368|270913|271935|295376|295377|295382|295383|295388|295389|295394|295396|295397|295457|295459|295473|295474|295489|295490|295491|295494|295495|295499|295501|295506|295511|295513|295520|295527|295529|295538|295540|295550|295554|295558|295560|295568|297170|297172|297173|297174|297176|297178|297179|297202|297278|297279|297280|297287|297294|297295|297306|297319|297320|297330|297346|297347|297348|297365|300918|300938|300940|300948|300949|300950|300957|300975|300982|300985|300988|300991|300998|301002|301003|301004|301007|301010|301014|301015|301026|301055|301068|301073|301074|301075|301080|301084|301115|301116|301127|301131|301134|301136|301138|301140|301153|301157|301177|301178|301179|301180|301188|301192|301193|301265|301283|301285|301286|301287|301291|301292|301300|301304|301315|301337|301345|301361|301379|301421|353893|359652|369620|394709|394736|394740|394769|394773|394820|394821|394827|394829|394983|395025|395055|395343|395367|454501|454509|454614|454624|454649|454678|454698|455046|455092|455093|455113|455368|455388|455412|455431|489983|496353|511555|520772|520988|521032|521119|521126|521128|536048|538372|543686|543690|543793|552084|560139|560155|560250|562790|589371|620777|633191|633203|633213|633232|633464|683666|683669|683671|683675|683701|683703|685171|685174|686622|686624|686629|686632|686646|686647|686693|686696|689777|689778|691706|691720|691751|698792|698794|734850|790516|830183|857590|857591|857592|857593|857603|892929|892930|892931|892932|892933|892934|892935|892936|892937|892938|892939|892940|892941|892942|892943|892944|892945|892946|892947|892948|892949|892950|892951|892952|892953|892954|892955|892956|892957|892958|892959|892960|892961|892962|892963|892964|892993|892998|892999|893000|893003|893004|893007|893008|893009|893010|893014|893015|893016|893017|893028|893029|893030|893031|893032|893033|893034|893035|893036|893037|893038|893039|893040|893041|893042|893043|893044|893045|893046|893047|893048|893049|893050|893051|893052|893053|893054|893055|893056|893057|893058|893059|893060|893061|893062|893071|893072|893073|893074|893076|893077|893078|893079|893080|893081|893082|893083|893084|893085|893086|893087|893088|893109|893110|896030|896031|896032|896035|896037|896038|896039|896040|896041|896043|896044|896045|896046|904211|917776|918922|980919", + "text": "Ciliary dyskinesia, primary, 3" + }, + { + "baseId": "21521|21522|21523|21524|21528|21530|21532|55248|55249|55250|55252|55253|172439|172440|172441|172443|172579|172580|172581|273253|280399|280422|280427|280751|280752|280759|280761|280775|280800|282163|282164|282174|282176|282177|282178|282181|282187|282193|282201|282267|282268|282271|282276|282277|282278|282286|282297|282299|282311|282319|282320|282321|282327|282344|513242|707362|864310|864311|864312|864313|864314|864315|864316|864317|864318|864319|864320|864321|864322|864323|864324|864325|864326|864327|864328|864329|864330|864331|918634", + "text": "Erythrokeratodermia variabilis et progressiva 1" + }, + { + "baseId": "21524|21525|273253", + "text": "Deafness, autosomal dominant 2b" + }, + { + "baseId": "21529", + "text": "Deafness, autosomal dominant, with peripheral neuropathy" + }, + { + "baseId": "21531|21532|32053", + "text": "Deafness, digenic, GJB2/GJB3" + }, + { + "baseId": "21536|79362|257330|413913|413914|469332|470297|470856|470859|470861|533438|533493|533498|533522|534017|572865|648586|689185|689186|689187|694527|848232", + "text": "Cataract 33, multiple types" + }, + { + "baseId": "21537|21538|134877|281450|281454|281457|281461|281470|281474|281477|281478|281485|281494|281495|281505|281506|282103|282104|282108|282110|282111|282112|282114|282116|282117|282118|282120|282121|282132|282133|282134|282135|282136|282139|282140|282141|283429|283436|283451|283452|283456|283457|283465|283469|283479|283482|283483|283486|283492|283493|283494|283502|283576|283588|283601|283602|283605|283607|283608|283609|283622|283625|380188|380189|620731|880754|880755|880756|880757|880758|880759|880760|880761|880762|880763|880764|880765|880766|880767|880768|880769|880770|880771|880772|880773|880774|880775|880776|880777|880778|880779|880780|880781|880782|880783|880784|880785|880786|880787|880788|880789", + "text": "Maturity-onset diabetes of the young type 7" + }, + { + "baseId": "21538|23898|23902|24144|27358|28830|29525|29566|29746|29970|29984|31129|39164|39165|44274|44279|44289|44846|44852|44873|44881|45075|45077|45093|45146|45462|45472|45483|45493|45494|45496|54599|54603|54606|54607|54608|54610|54612|54620|54624|77659|77759|101221|101222|101224|133981|134133|134430|134580|134581|134587|134601|134602|134604|134679|134686|134876|135209|135321|135327|135413|135415|135420|135500|135595|135602|135603|136194|136217|136220|138250|141616|141617|141622|168866|173817|173818|173842|173957|173964|173979|173980|177356|190191|190266|190460|191101|192417|196033|196036|196486|207019|207094|207095|207310|207484|207659|207849|207867|208397|208435|208628|208629|208634|211031|211032|211038|211053|211056|211057|211062|211074|211077|215036|215037|221324|221326|221331|221333|221334|221335|221336|221338|221339|229187|229188|237135|237219|237276|237302|238975|238977|238978|238992|238994|238996|238997|238999|239000|239009|239016|248553|251005|253899|254226|269283|270744|272968|273448|277131|281140|281740|281750|281751|282104|283576|288287|299746|301798|306735|306747|307058|308470|309571|309758|311503|312713|314467|318800|318803|319427|321672|328277|338447|359370|366944|366946|366963|366975|367005|367861|367863|367866|376007|380181|380182|380183|380184|380185|380186|380187|380188|380189|380190|380191|380192|380193|380194|380195|380196|380197|380198|380199|380200|380201|380202|380203|380204|380205|380206|380207|380208|380209|380210|380211|380212|380213|380214|380215|380216|380217|380218|380219|380220|380221|380222|380223|380224|380225|380226|380227|380228|380229|380230|380231|380232|380233|380234|380235|380236|380237|380238|380239|380240|380241|380242|380243|380244|380245|380246|380247|380248|380249|380250|380251|380252|380253|380254|380256|380257|380258|380259|380260|380261|380262|380263|380264|380265|380266|380267|380268|380269|380270|380271|380272|380273|380274|380275|393443|393476|402702|414899|428104|428119|428498|428664|429021|429195|429204|429373|429384|441107|441633|441635|451437|451645|451647|496327|500665|518653|518718|522709|539987|539988|539989|539990|539991|539992|539993|539994|539995|539996|539997|539998|539999|540000|540002|540003|540004|540005|540006|540007|540008|540009|540010|540011|540012|540013|540014|540015|540016|540017|540018|540019|540020|540021|540022|540023|540024|540025|540026|540027|540028|540029|540030|540031|540032|540033|540034|540035|540036|540037|540038|540039|542169|542588|546118|546501|553540|558646|572542|577178|587845|590556|590560|622429|684262|691491|717812|723580|735298|737143|742179|765400|796706|838133|885646|895739|895740|895744|905040|905041|905042|905043|905044|905045|905046|905047|905737|905738|905739|905740|905741|905742|905743|905744|905745|905746|905747|905748|905749|905750|905751|905752|905753|905754|905755|905756|905757|905758|905759|905760|905761|905762|905763|905764|905765|905766|905767|905768|905769|905770|905771|905772|905773|905774|905775|905776|905777|905778|905779|905780|905781|905782|905783|905784|905785|905786|905787|905788|905789|905790|905791|905792|905793|905794|905795|905796|905797|905798|905799|905800|905801|905802|905803|905804|905805|905806|905807|905808|905809", + "text": "Monogenic diabetes" + }, + { + "baseId": "21539|21540|21541|21542|21543|21544|21545|21546|21547|21548|21549|21550|21551|21552|21553|39306|39387|48579|48580|48581|48582|99432|99433|99434|99435|177001|177263|177681|186127|189128|190320|192821|192822|193170|193171|196116|196122|212828|212829|212830|212831|212833|222014|222015|222016|222018|227340|240900|260898|260909|260913|260926|260927|265616|265677|267756|268859|268973|269146|272217|274239|275001|312091|312095|312096|312097|312101|312102|312103|312104|312112|312114|312115|312116|312117|312124|312125|312126|312134|312136|312137|312138|312145|312149|312152|312153|312155|312157|312162|312168|317756|317757|317758|317762|317763|317764|317765|317791|317793|317794|317802|317803|317808|317810|317811|317821|317823|317826|317832|317837|317851|317852|317856|317864|317867|317868|317869|317876|317879|317880|317891|317892|317893|317897|317898|317899|317900|317912|317918|317919|317924|317933|323845|323847|323852|323856|323857|323872|323876|323877|323883|323884|323887|323897|323904|323912|323913|323918|323923|323925|323928|323930|323932|323941|323942|323951|323960|323966|323982|323985|324548|324549|324560|324561|324562|324564|324567|324570|324571|324577|324578|324584|324586|324600|324603|324607|324624|324625|324645|324654|324669|324678|324684|324699|324702|324703|324710|324714|324724|324731|353901|353902|359980|371020|371028|371669|371674|371948|408030|408035|430981|433511|433512|440139|440173|440179|440200|460465|460769|481536|492654|492920|493007|503016|503363|503556|552147|589052|609211|609212|609213|609214|609777|680048|680049|684203|684210|684218|687692|687697|687700|791024|791025|798631|798632|861596|866837|866838|866839|866840|866841|866842|866843|866844|866845|866846|866847|866848|866849|866850|866851|866852|866853|866854|866855|866856|866857|866858|866859|866860|866861|866862|866863|866864|866865|866866|866867|866868|866869|866870|866871|866872|866873|866874|866875|866876|866877|866878|866879|866880|866881|866882|866883|866884|866885|866886|866887|866888|866889|866890|866891|866892|866893|868583|868584|868585|868586|868587|868588|868589|868590|868591|868592|919314|920291|964352|980843|980844|981720|981721|981722|981723|981724|981725|981726|981727|981728|981729", + "text": "Short-rib thoracic dysplasia 3 with or without polydactyly" + }, + { + "baseId": "21540|21542|21546|21548|39306|39892|40345|40346|48581|76527|99434|99435|102031|102032|102947|102955|132657|136094|136095|136096|136097|136098|136099|136100|136101|136102|136103|136104|136105|136106|136107|177132|177263|177681|186127|186128|186129|186130|186131|190320|190896|191511|191512|191595|191838|191942|191943|192691|192691|192692|192702|192732|192782|192821|192822|192894|192938|193170|193171|195159|195418|195492|196122|198616|212121|212122|212123|212124|212291|212292|212293|212828|212829|212830|212831|212832|212833|214312|221116|221117|221367|221368|221369|222011|222013|222014|222015|222016|222017|222018|222019|226923|238377|240900|240901|240902|240903|250324|250325|250329|250332|250334|250335|250337|263847|264652|265616|265677|266000|266006|266009|266011|267756|268973|269092|269146|271765|272217|274991|274997|275001|282439|282504|283133|283158|283161|283168|283170|284715|284726|284730|284750|285195|285200|285204|289288|289299|289304|290086|290087|290095|293148|293153|293155|293164|293166|293185|293623|293636|293639|293642|294773|294797|298349|298359|298422|298440|312091|312095|312096|312097|312101|312102|312103|312104|312115|312117|312118|312124|312125|312126|312134|312136|312138|312145|312146|312152|312167|312168|317756|317757|317758|317762|317763|317764|317791|317802|317807|317808|317810|317811|317821|317823|317826|317832|317837|317851|317856|317864|317868|317869|317879|317880|317891|317893|317897|317899|317900|317912|317918|317919|323845|323852|323856|323857|323872|323876|323877|323882|323883|323884|323887|323897|323904|323906|323912|323913|323917|323918|323923|323925|323928|323929|323930|323937|323942|323951|323960|323964|323966|324548|324549|324560|324561|324564|324567|324570|324578|324600|324607|324645|324654|324678|324684|324699|324702|324714|324731|353542|353902|361512|365832|365835|371024|371669|373651|391469|393351|393400|397585|397593|397764|398130|398132|405068|408032|408471|420432|420432|420433|420434|425423|429161|430981|433511|433512|433515|433630|439055|440053|440055|440057|440059|440062|440063|440064|440067|440068|440071|440072|440074|440075|440083|440087|440088|440089|440090|440091|440092|440094|440095|440096|440098|440099|440101|440107|440110|440111|440114|440115|440117|440121|440125|440126|440127|440131|440132|440133|440135|440137|440138|440140|440142|440146|440148|440149|440151|440152|440154|440155|440164|440167|440168|440170|440173|440175|440177|440179|440182|440186|440187|440188|440189|440192|440195|440198|440199|440200|440202|440203|440204|440205|440210|440211|440213|440214|440216|440217|440219|443008|448813|448989|449094|449103|449109|452118|452268|460435|460437|460465|460769|460772|461202|461220|461222|481975|486675|488689|491328|492662|492663|493007|493010|503007|503019|503351|503556|516520|516603|516622|518956|525616|525618|525619|525694|525697|525700|525704|525858|525861|526024|526026|536612|549469|549470|549472|549473|549476|549477|549478|549479|549480|549481|549482|549483|549484|549485|549486|549487|549488|549489|549490|549491|549492|549492|549493|557602|557647|564103|564108|565046|566741|566745|582368|609189|609237|609505|609776|625837|628798|628799|628800|631022|631023|639358|639359|639360|639361|639362|639363|650891|652067|652215|655171|683413|683563|683564|683565|684203|684204|684206|684207|684209|684211|684214|684215|684217|684220|685144|685281|685889|685891|685893|686353|686354|686355|686356|686357|686358|686359|686360|686361|687691|687692|687694|687695|687697|687700|687701|687702|689674|689734|689989|689991|689993|690860|695181|733891|759040|762354|777183|783808|783809|819343|820287|820288|825099|825100|825101|827647|827648|827649|827650|827651|827652|827653|827654|837586|837587|837588|837589|837590|837591|837592|837593|851029|866862|866873|888290|888292|922337|925999|926000|926001|926002|926003|930910|930911|930912|930913|931814|931815|931816|931817|931818|931819|931820|935270|935271|935272|935273|940662|942330|943383|943384|943385|943386|943387|943388|943389|943390|943391|943392|943393|943394|947174|952750|952751|952752|953375|953376|953377|953378|953379|956302|959693|959958|960508", + "text": "Jeune thoracic dystrophy" + }, + { + "baseId": "21542|99432|99433|99434|101405|190320|191512|193171|195492|196116|212830|212833|222014|222018|247750|247751|250474|263847|268859|268973|273447|274239|283786|283829|284409|284412|284415|284460|284474|286856|292809|292820|294154|297755|312091|312097|312112|312114|312115|312116|312118|312126|312136|312137|312146|312149|312153|312155|312157|312162|312167|317764|317765|317791|317793|317794|317803|317807|317821|317852|317856|317867|317869|317876|317880|317892|317893|317897|317898|317924|317933|323847|323852|323857|323882|323906|323913|323917|323925|323929|323932|323937|323941|323964|323982|323985|324560|324561|324562|324571|324577|324578|324584|324586|324603|324624|324625|324669|324703|324710|324714|324724|440064|481523|481524|486678|496106|496107|609190|609205|609305|609306|654623", + "text": "Short Rib Polydactyly Syndrome" + }, + { + "baseId": "21542|360924", + "text": "Bowing of the long bones" + }, + { + "baseId": "21542|255586|360924|360944|514005|514055", + "text": "Narrow chest" + }, + { + "baseId": "21542|224877|263257|360924|550129|550226|801074", + "text": "Intrauterine growth retardation" + }, + { + "baseId": "21542|549477|620379|620380|620381|620382", + "text": "DYNC2H1-Related Disorders" + }, + { + "baseId": "21545|21546|21547|48579|48581|196212|353902|359980|371024|397593|408032|408035|433515|440106|440107|440108|440109|440112|440113|440118|440119|440120|440121|440122|440123|440124|440128|440129|440130|440133|440134|440136|440138|440139|440141|440143|440144|440145|440147|440150|440153|440156|440157|440158|440159|440160|440161|440162|440163|440164|440165|440168|440169|440171|440172|440174|440176|440178|440181|440183|440184|440185|440190|440191|440192|440193|440194|440196|440197|440200|440201|440206|440207|440208|440211", + "text": "Short-rib polydactyly syndrome type III" + }, + { + "baseId": "21554|71564|71565|210240|210241|210242|230444|230446|319588|334487|336196|336215|463630|528081|799740|981835|981836", + "text": "Primary pulmonary hypertension 2" + }, + { + "baseId": "21555|21556|21557|207900|207908|225857|364272|429299|429311|551307|551308|611407|611755", + "text": "Autism 17" + }, + { + "baseId": "21558|21559|21560|21561|71187|71188|71189|227428", + "text": "Cornea plana 2" + }, + { + "baseId": "21562|21563|21564|21565|135426|135427|135428|135429|142434|142435|142436|203472|203473|203474|203475|203476|203477|203478|203481|203485|203486|203488|203490|203491|203492|203493|224877|329015|329019|329020|329033|329035|329036|339028|339042|339044|339045|339049|339050|339053|339054|339055|339061|339066|339076|339077|345037|345045|345054|345061|345063|345064|345067|345069|346381|346382|346385|346387|346390|346391|346399|346400|353445|402121|402165|402168|422177|468353|494104|513137|531696|536941|571243|571246|571582|574506|580260|580351|584421|586651|614440|614441|646141|646142|646143|771607|845551|845552|845553|845554|845555|845556|845557|845558|845559|845560|845561|845562|877850|877851|877852|877853|877854|877855|877856|877857|877858|877859|877860|877861|877862|877863|877864|877865|877866|928359|938003|938004|938005|949995|958152|958153|964484", + "text": "Pyridoxal phosphate-responsive seizures" + }, + { + "baseId": "21566|21567|21568|21569|21572|21573|21580|21589|39304|204424|204641|251054|251061|251063|268855|271227|289676|289677|289681|289691|289697|289699|289708|289709|290445|290446|290447|290448|290449|290457|290469|290477|290479|290480|290481|290482|290484|293524|293534|293535|293536|293537|293549|293550|293557|293558|293559|293560|293564|293565|294092|294093|294094|294095|294096|294099|294103|294107|294112|294113|294122|294127|294128|294131|294132|294133|294134|294143|452004|489133|585757|620762|623592|677313|697986|733957|744043|790371|790372|790373|888497|888498|888499|888500|888501|888502|888503|888504|888505|888506|888507|888508|888509|888510|888511|888512|888513|888514|888515|888516|888517|888518|888519|888520|888521|888522|888523|888524|888525", + "text": "Ectrodactyly, ectodermal dysplasia, and cleft lip/palate syndrome 3" + }, + { + "baseId": "21566|21567|21572|21573|21575|21579|193526|204424|251054|251061|251063|264162|268855|271227|289676|289677|289681|289691|289693|289697|289699|289708|289709|289714|290445|290446|290447|290448|290449|290450|290457|290469|290472|290477|290479|290480|290481|290482|290484|290485|290486|293524|293534|293535|293536|293537|293545|293548|293549|293550|293557|293558|293559|293560|293564|293565|294092|294093|294094|294095|294096|294099|294103|294107|294112|294113|294122|294127|294128|294131|294132|294133|294134|294143|294144|353647|359504|367331|452004|452361|489133|519041|519219|559409|559411|561312|561322|562627|562628|562630|585757|620762|631112|631113|631114|631115|631116|631117|631118|631119|651044|697986|733957|744043|748148|827778|827779|888497|888498|888499|888500|888501|888502|888503|888504|888505|888506|888507|888508|888509|888510|888511|888512|888513|888514|888515|888516|888517|888518|888519|888520|888521|888522|888523|888524|888525|931856", + "text": "TP63-Related Spectrum Disorders" + }, + { + "baseId": "21570|21571|21588|80708", + "text": "Split-hand/foot malformation 4" + }, + { + "baseId": "21572|21581|21582|21583|21584|21590|21592|798526", + "text": "Rapp-Hodgkin ectodermal dysplasia syndrome" + }, + { + "baseId": "21574|21575|21583", + "text": "Hay-Wells syndrome of ectodermal dysplasia" + }, + { + "baseId": "21576|21579|21585|21586|21587|21589|21591|47571|47572|204361", + "text": "ADULT syndrome" + }, + { + "baseId": "21577|21578|918821", + "text": "Limb-mammary syndrome" + }, + { + "baseId": "21586|251054|251061|251063|268855|271227|289676|289677|289681|289691|289697|289699|289708|289709|290445|290446|290447|290448|290449|290457|290469|290477|290479|290480|290481|290482|290484|293524|293534|293535|293536|293537|293549|293550|293557|293558|293559|293560|293564|293565|294092|294093|294094|294095|294096|294099|294103|294107|294112|294113|294122|294127|294128|294131|294132|294133|294134|294143|489133|576317|585757|620762|697986|733957|744043|888497|888498|888499|888500|888501|888502|888503|888504|888505|888506|888507|888508|888509|888510|888511|888512|888513|888514|888515|888516|888517|888518|888519|888520|888521|888522|888523|888524|888525", + "text": "Orofacial cleft 8" + }, + { + "baseId": "21592", + "text": "Ankyloblepharon-ectodermal defects, cleft lip/palate" + }, + { + "baseId": "21593|131887|131888|131889|131890|131895|131896|131898|131899|138985|138986|138987|138989|138990|138991|138992|138993|138994|138995|143131|143132|143133|143134|143135|208505|208506|208507|208508|208509|208510|208511|208512|208513|208514|208515|208516|208517|208518|208519|208521|208522|208523|208524|208525|208526|208529|208529|208530|208531|208532|208534|208535|222762|222763|222764|222765|222766|222767|222768|222769|222770|222771|222772|222773|222774|222775|222777|222778|222779|243083|243084|243085|243086|243087|243088|243089|243090|243091|243092|243094|243095|243096|243097|243098|243099|243100|243101|243102|243103|243104|243105|243106|243107|243108|243109|243110|243111|243112|243113|243114|243116|243117|243118|243119|243120|243121|243122|243123|243124|243125|243126|243127|243128|243129|243129|243130|243131|243132|243133|243134|243135|243137|243138|243139|243140|243142|243143|243144|243145|243146|243147|243149|243150|243151|243152|243153|243154|243155|243156|243157|243158|243159|243160|243161|243162|243163|243164|243165|243166|243167|243168|243169|243170|243171|243172|243173|243174|243175|243177|243178|243179|243180|243181|243182|243184|243185|243186|243187|243188|243189|243190|243191|243191|243192|243193|243194|243195|243196|243197|243198|243199|243200|243201|243202|243203|243204|243207|243208|243209|243210|243211|243212|243213|243214|243215|243216|243217|243218|243220|243221|243222|243223|243224|243225|243226|243227|243228|243228|243229|243230|243231|243232|243233|243234|243235|243236|243237|243238|243239|243240|243241|243242|243243|243244|243245|243246|243247|243248|243249|243250|243251|243251|243252|243253|243254|243255|243256|243257|243258|243259|243260|243261|243262|243263|243264|332432|332439|332444|342586|342599|342603|342611|342618|347982|349279|349281|349283|360358|360500|361041|364229|376117|376127|376143|377072|377073|377085|377249|377264|402810|402836|402839|402847|402851|402861|402865|402865|402867|402870|402872|402876|402878|402881|402888|402891|402893|402894|402897|402898|402899|402905|402907|402909|402912|402914|402915|402916|402917|402920|402921|402922|402923|402923|402925|402929|402931|402933|402935|402936|402939|402941|402942|402943|402950|402951|402956|402958|402965|402966|402970|402971|402976|402978|402980|402981|402987|402989|402991|402992|402995|402998|403001|403005|403006|403008|403010|403014|403015|403017|403019|403020|403022|403024|403025|403027|403029|403032|403033|403037|403038|403039|403040|403041|403044|403045|403048|403050|403052|403053|403055|403056|403058|403060|403061|403064|403067|403070|403071|403078|403079|403080|403081|403082|403083|403085|403088|403091|403092|403093|403095|403096|403097|403100|403101|403105|403106|403108|403109|403110|403111|403113|403115|403116|403118|403119|403122|403125|403125|403126|403126|403127|403129|403346|403349|403352|403355|403356|403357|403359|403361|403366|403367|403371|403373|403375|403382|403383|403386|403389|403393|403395|403399|403400|403401|403403|403404|403408|403416|403418|403419|403422|403423|403424|403428|403429|403430|403440|403441|403442|403445|403448|403448|403451|403452|403453|403457|403459|403460|403461|403462|403463|403465|403469|403471|403472|403473|403474|403475|403478|403479|403480|403482|403483|403486|403487|403492|403494|403495|403500|403508|403510|403512|403516|403517|403520|403521|403522|403524|403528|403529|403532|403536|403538|403539|403541|403542|403545|403546|403547|403548|403549|403552|403555|403556|403558|403559|403562|403563|403564|403569|403573|403575|403576|403577|403578|403580|403581|403582|403584|403588|403591|403595|403601|410423|410423|410425|430125|430126|432387|468234|468243|468247|468253|468258|468260|468268|468273|468277|468280|468282|468284|468289|468307|468309|468311|468312|468314|468316|468318|468324|468327|468329|468330|468331|468334|468336|468339|468343|468346|468348|468350|468352|468355|468357|468360|468363|468364|468366|468367|468371|468376|468381|468382|468387|468391|468392|468400|468401|468417|468417|468418|468421|468425|468428|468437|469063|469104|469107|469118|469124|469125|469127|469129|469132|469134|469136|469136|469138|469148|469152|469155|469160|469162|469177|469178|469181|469182|469185|469188|469191|469192|469194|469202|469205|469208|469209|469213|469214|469218|469220|469222|469223|469233|469236|469242|469248|469249|469255|469257|469258|469261|469266|469268|469270|469275|469281|469282|469283|469289|469290|469292|469294|469296|469298|469308|469309|469312|469448|469517|469518|469522|469523|469529|469535|469537|469541|469545|469551|469554|469558|469558|469559|469560|469566|469570|469571|469573|469573|469577|469580|469581|469585|469586|469589|469590|469591|469594|469597|469598|469600|469606|469607|469608|469609|469622|469623|469625|469630|469631|469634|469635|469640|469641|469645|469649|469653|469655|469659|469660|469666|469668|469671|469672|469673|469682|469683|469688|469689|469698|469702|469702|469703|469704|469978|469980|469982|469985|469995|470002|470008|470013|470019|470023|470027|470028|470038|470040|470042|470048|470057|470059|470061|470082|470094|470096|470103|470111|470112|470121|470124|470126|470127|470131|470135|470147|470152|470158|470162|470164|470169|470173|470177|470184|470192|470194|470196|470199|470202|470206|470207|470210|470211|470213|470219|470220|470231|470232|470236|470239|470242|470243|470258|470269|470273|470279|470281|470283|470284|470286|470293|470302|470317|470320|470323|470324|470327|470336|479412|479413|479418|479423|479424|479426|479436|479438|479448|479452|479453|479456|479457|479460|479461|479462|479463|479464|479476|479479|479479|479481|479482|479488|479492|479493|479495|479496|479496|479497|479498|479499|479501|479502|479504|479504|479505|479508|479510|479512|479526|479527|479528|479529|479531|479533|479534|479535|479537|479539|479541|479542|479544|479548|479550|479552|479559|479560|479561|479562|479564|479568|479572|479575|479577|479583|479584|479586|479589|479591|479596|479599|479603|479605|479610|479612|479616|479619|479620|479622|479623|479628|479629|479639|479641|479642|479643|479644|479645|479647|479648|479649|479650|479653|479655|479659|479660|479664|479666|479667|479668|479673|479674|479676|479677|479678|479681|479682|479685|479687|479690|479692|479704|479707|479710|479711|479722|479723|479725|479728|479737|479743|479751|479752|479763|479774|479775|479779|479782|479785|479791|479795|479805|479825|480187|480188|480190|480198|480200|480201|480202|480203|480204|480205|480207|480208|480209|480211|480214|480216|480217|480218|480220|480221|480231|480234|480239|480240|480242|480245|480246|480252|480253|480255|480258|480260|480261|480262|480266|480267|480270|480271|480275|480278|480279|506475|506690|506699|512374|532446|532458|532459|532461|532464|532474|532479|532487|532488|532490|532495|532497|532499|532500|532502|532504|532505|532506|532508|532510|532511|532512|532516|532521|532523|532524|532527|532529|532530|532534|532536|532537|532538|532539|532540|532544|532548|532550|532552|532554|532555|532556|532557|532558|532559|532560|532561|532562|532563|532565|532566|532568|532570|532571|532572|532573|532574|532575|532576|532577|532578|532579|532582|532583|532584|532585|532586|532587|532588|532591|532593|532594|532596|532597|532598|532599|532600|532601|532602|532603|532604|532605|532608|532609|532610|532611|532613|532614|532617|532618|532619|532620|532621|532622|532624|532626|532627|532628|532630|532631|532633|532634|532635|532636|532637|532638|532640|532642|532643|532644|532647|532651|532652|532655|532656|532820|532903|532906|532919|532921|532923|532929|532941|532950|532953|532956|532959|532964|532966|532974|532976|532978|532981|532982|532983|532989|532995|533002|533008|533010|533015|533017|533021|533023|533038|533038|533046|533047|533052|533065|533067|533076|570260|570374|570386|570387|570395|570397|570401|570406|570414|570416|570418|570427|570430|570431|570435|570436|570442|570444|570450|570453|570454|570458|570460|570464|572020|572073|572080|572081|572082|572085|572089|572090|572094|572095|572099|572106|572109|572110|572112|572115|572119|572121|572123|572136|572136|572138|572140|572141|572143|572144|572152|572153|572158|572159|572161|572162|572163|572166|572169|572170|572752|572758|572760|572763|572770|572778|572779|572780|572782|572785|572791|572792|572796|572798|572801|572802|572803|572809|572812|572816|572819|572821|572823|572828|572833|572836|572838|572839|572840|572841|572842|572843|572848|572849|574783|574822|574824|574826|574828|574829|574830|574831|574832|574833|574834|574835|574836|574837|574838|574839|574840|574841|574842|574843|574844|574845|574846|574847|574848|574849|574850|574851|574852|574853|574854|574855|574856|574857|609182|611429|647483|647484|647485|647486|647487|647488|647489|647490|647491|647492|647493|647494|647495|647496|647497|647498|647499|647500|647501|647502|647503|647504|647505|647506|647507|647508|647509|647510|647511|647512|647513|647514|647515|647516|647517|647518|647519|647520|647521|647522|647523|647524|647525|647526|647527|647528|647529|647530|647531|647532|647533|647534|647535|647536|647537|647538|647539|647540|647541|647542|647543|647544|647545|647546|647547|647548|647549|647550|647551|647552|647553|647554|647555|647556|647557|647558|647559|647560|647561|647562|647563|647564|647565|647566|647567|647568|647569|647570|647571|647572|647573|647574|647575|647576|647577|647578|647579|647580|647581|647582|647583|647584|647585|647586|647587|647588|647589|647590|647591|647592|647593|647594|647595|647596|647597|647598|647599|647600|647601|647602|647603|647604|647605|647606|647607|647608|647609|647610|647611|647612|652982|652987|652988|653132|653135|653136|653137|653418|653473|684773|684774|685451|685452|688950|688951|688952|688953|690200|690201|694310|694311|694312|694313|694314|694315|694317|694319|694320|694321|695801|695803|695804|695805|695806|695807|704735|727868|741516|741517|741521|741522|741523|741524|741525|741526|741527|745040|745230|756635|756637|756640|756642|756643|756644|756646|756650|756651|756652|756655|756656|756660|760679|760681|760682|760736|760767|760774|760783|772306|772307|772309|772313|772314|772316|772317|772321|772325|772327|772330|772334|772335|772336|772339|772345|772346|772348|772349|772352|776510|776527|776537|776539|778364|778491|785999|786000|786001|786003|786005|786006|786008|786013|786015|786019|786020|786021|786022|786024|786025|786030|786031|788022|788024|788182|791885|791886|801929|805069|814594|814597|814601|814610|814627|814628|814629|814638|814648|814650|814665|814674|814681|814693|814695|814697|814698|814710|814711|814743|814753|814755|814756|814761|814769|814775|814779|814780|814782|814792|814794|814803|814805|814808|814811|814815|814818|814819|814820|814830|814831|814835|815720|815723|815730|815731|821210|821211|821212|821213|847092|847093|847094|847095|847096|847097|847098|847099|847100|847101|847102|847103|847104|847105|847106|847107|847108|847109|847110|847111|847112|847113|847114|847115|847116|847117|847118|847119|847120|847121|847122|847123|847124|847125|847126|847127|847128|847129|847130|847131|847132|847133|847134|847135|847136|847137|847138|847139|847140|847141|847142|847143|847144|847145|847146|847147|847148|847149|847150|847151|847152|847153|847154|847155|847156|847157|847158|847159|847160|847161|847162|847163|847164|847165|847166|847167|847168|847169|847170|847171|847172|847173|847174|847175|847176|847177|847178|847179|847180|847181|847182|847183|847184|847185|847186|847187|847188|847189|847190|847191|847192|847193|847194|847195|847196|851787|851789|851791|852301|852306|852836|852838|852839|852840|852842|852945|852946|852947|861653|920394|920395|920396|928795|928796|928797|928798|928799|928800|928801|928802|928803|928804|928805|928806|928807|928808|928809|928810|928811|928812|928813|928814|928815|928816|928817|938523|938524|938525|938526|938527|938528|938529|938530|938531|938532|938533|938534|938535|938536|938537|938538|938539|938540|938541|938542|938543|938544|938545|938546|938547|938548|938549|938550|938551|938552|938553|938554|938555|938556|940463|940464|940465|940466|940467|941217|941218|941219|941220|941221|950614|950615|950616|950617|950618|950619|950620|950621|950622|950623|950624|950625|950626|950627|950628|950629|950630|950631|950632|950633|950634|950635|950636|950637|950638|950639|950640|950641|950642|950643|958512|958513|958514|958515|958516|958517|958518|958519|958520|958521|958522|958523|958524|958525|960275|960276|960277|960278|960279|960910|960911", + "text": "Rhabdoid tumor predisposition syndrome 2" + }, + { + "baseId": "21594|21595|21597|23420|38568|49383|215305|268158|294669|294674|294679|296235|299981|299982|434595|434595|439689|454054|632528|632529|632530|632531|691640|698695|829538|892543", + "text": "Brachydactyly type A2" + }, + { + "baseId": "21596|213897|213898|213899|215305|268158|294669|294674|294679|296235|299981|299982|434595|439689|454054|632528|632529|632530|632531|677290|691640|698695|829538|892543", + "text": "Acromesomelic dysplasia, Demirhan type" + }, + { + "baseId": "21598|21598|21599|21599|21600|21601|21602|21603|21605|21607|21608|21609|21610|21610|21611|21612|21613|21615|21616|21617|21618|21618|21619|21620|39293|39294|39295|39295|152837|152838|191634|205179|260084|260085|260086|260087|260087|260088|265406|265507|275332|275332|360154|360156|360232|374005|374017|374701|374707|375075|375082|375085|377100|377106|377108|377116|377120|390275|409463|409464|409466|415471|415472|422075|426774|426775|426776|426777|426778|426779|426780|426781|426782|426783|426784|426785|426786|426787|426788|426789|426790|426791|426792|426793|426794|426795|426796|426797|426798|426799|426800|426801|426802|426803|426804|426805|426806|426807|426808|426809|426810|426811|426812|426813|426814|426815|426816|426817|426818|426819|426820|426821|426822|426823|426824|426825|426826|426827|426828|426829|426830|426831|426832|426833|426834|426835|426836|426837|426838|426839|426840|426841|426842|426843|426844|426845|426846|426847|426848|426849|426851|426852|426853|426854|426855|426856|426857|426858|426859|426860|426861|426862|426863|426864|426865|426866|426867|426868|426869|426870|426871|426872|426873|426874|426875|426876|426877|426878|426879|426880|426881|426882|426883|426884|426885|426886|426887|426888|426889|426890|426891|426892|426893|426895|426896|426897|426898|426899|426900|426901|426902|426903|426904|426905|426907|426908|426909|426910|426911|426912|426913|426914|426915|426916|426917|426918|426919|426920|426921|426922|426923|426924|426925|426926|426927|426928|426929|426930|426931|426932|426933|426934|426935|426936|426937|426938|426939|426940|426941|426942|426943|426944|426945|426946|426947|426948|426949|426950|426951|426952|426953|426954|426955|426956|426957|426958|426959|426960|426961|426962|426963|426964|426965|426966|426967|426968|426969|426970|426971|426972|426973|426974|426975|426977|426978|426979|426980|426981|426982|426983|426984|426985|426986|426987|426988|426989|426990|426991|426992|426993|426994|426995|426996|426997|426998|426999|427000|427001|427002|427003|427004|427005|427006|427007|427008|427009|427010|427011|427012|427013|427014|427015|427016|427017|427018|427019|427020|427021|427022|427023|427024|427025|427026|427027|427028|427029|427030|427031|427032|427033|427034|427035|427036|427037|427038|427039|427040|427041|427042|427043|427044|427045|427046|427047|427048|427049|427050|427051|427052|427053|427054|427055|427056|427057|427058|427059|427060|427061|427062|427063|427064|427065|427066|427067|427068|427069|427070|427071|427072|427073|427074|427075|427076|427077|427078|427079|427080|427081|427082|427083|427085|427087|427088|427089|427090|427091|427092|427093|427094|427095|427096|427097|427098|427099|437673|569572|590735|626255|791526|791527|800599|800600|861061", + "text": "Pseudoxanthoma elasticum" + }, + { + "baseId": "21598|21598|21599|21599|21603|21610|21613|21618|39293|39294|39295|39296|260087|275332|426970|427040|858595|919611|919612", + "text": "Generalized arterial calcification of infancy 2" + }, + { + "baseId": "21598", + "text": "Papule" + }, + { + "baseId": "21598|21599|21610|21618|39295|260087|275332|426954", + "text": "Pseudoxanthoma elasticum, forme fruste" + }, + { + "baseId": "21622|21623|250955|288822|288826|288836|288838|288839|288850|289598|289599|289602|289603|292587|292588|292590|292591|292593|292799|292800|292801|292802|292806|292811|452207|452324|620106|630957|630958|759103|827566|888018|888019|888020|888021|888022|888023|888024|888025|888026|888027|888028|891572", + "text": "Cataract 12, multiple types" + }, + { + "baseId": "21624", + "text": "Snowflake vitreoretinal degeneration" + }, + { + "baseId": "21625|21626|21627|71026|71027|71028|71029|71030|71031|71032|281844|281846|281847|281851|281852|281858|281859|281860|281866|281867|281872|281877|281878|281882|281883|281884|281888|281889|282500|282503|282506|282507|282508|282509|282510|282512|282513|282514|282521|282524|282525|284144|284145|284150|284151|284152|284154|284157|284158|284161|284162|284165|284166|284168|284181|284187|284357|284362|284368|284372|284373|284374|284375|284376|284379|284380|284384|284388|284389|284428|284435|620031|719256|719257|719258|732769|881066|881067|881068|881069|881070|881071|881072|881073|881074|881075|881076|881077|881078|881079|881080|881081|881082|881083|881084|881085|881086|881087|881088|881089|881090|881091|881092|881093|881094|881095|881096|881097|881098|881099|881100|881101|881102|881103|881104|881105|882797|882798|882799|882800|882801", + "text": "Congenital lactase deficiency" + }, + { + "baseId": "21628|21629|21630|21631|21632|21633|21635|22310|190825|191377|191546|191667|191668|192005|192911|193125|194380|237083|250355|250356|250358|250361|250362|250363|250364|250366|250368|250369|250370|250371|266117|268530|268784|268874|268874|268960|270804|270936|272709|272792|272963|273360|273775|274050|274211|274318|274318|275088|275488|275527|282606|282611|282620|282625|282628|283360|283362|283363|283364|283365|283382|283385|283387|283407|284894|284906|284914|284915|284916|285408|285410|285412|285414|285416|285425|285432|285442|365697|365952|365959|366177|404753|405418|427939|489030|489226|491881|493332|494028|499135|499173|578392|585693|585991|586447|587291|587589|612260|614129|623130|707836|732908|732909|743837|762388|762393|762400|780940|780941|787109|790126|792722|851356|881406|881407|881408|881409|881410|881411|881412|881413|881414|881415|881416|881417|881418|881419|881420|881421|881422|881423|881424|881425|881426|881427|881428|881429|881430|882827|882828|882829|882830|977634|977635|977636|977637|977638|977639|977640|977641", + "text": "Progressive familial intrahepatic cholestasis 2" + }, + { + "baseId": "21629|21634|268874|270936|270936|272792|274318|404753|513515", + "text": "Benign recurrent intrahepatic cholestasis type 2" + }, + { + "baseId": "21629|284897|284910|285433|331904|331926|331942|342158|347528|347530|347531|348905|348908|915059", + "text": "Progressive familial intrahepatic cholestasis" + }, + { + "baseId": "21629|28726|28727|28728|28729|28730|28732|28735|28736|191497|192005|192083|193015|193434|195243|252953|252954|252955|252956|252957|252958|252959|265375|265376|267188|268874|274318|275489|275515|303476|303483|303485|303486|306890|306891|306901|306903|306906|311786|311788|311789|311817|311825|311827|311828|361407|361407|369290|369987|369991|371396|493148|578462|584498|585376|586619|587741|587966|589154|589239|608808|800992|800993|800994|801089|801090|801091|801092|801093|801094|801095|801096|801097|801098|801099|801100|801101|801232|801244|801245|801246|898447|898448|898449|898450|898451|898452|898453|898454|898455|898456|898457|898458|898459|898460|898461|898462|898463|898464|898465|898466|898467|900408|900409|919117", + "text": "Cholestasis, intrahepatic, of pregnancy 3" + }, + { + "baseId": "21636|21637|21638|21639|551989", + "text": "Bare lymphocyte syndrome, type II, complementation group B" + }, + { + "baseId": "21638|21639|22687|91922|108728|108729|108730|108732|108745|204413|247161|276399|276400|276401|276402|276404|276405|276407|276413|276417|276626|276632|276633|276647|276649|277138|277140|277149|277158|277159|277160|277162|277164|277238|277240|277241|277242|277244|277245|277265|277280|277281|277282|319465|319468|319471|319472|319476|319478|319479|319480|319493|319494|319495|323938|323940|323944|323947|323962|323965|323967|323968|323975|323977|323978|323979|323983|323987|323988|323992|323993|323996|323999|324005|324009|324016|324017|324020|324021|324023|324024|324025|324033|328021|328023|328029|328035|328036|328045|332938|332940|332945|332953|332954|332961|333628|333631|333632|333636|333638|333640|333644|333645|333647|333648|333650|333653|333655|333656|334344|334349|334355|334356|334366|336061|336062|336063|336064|336065|336067|336079|340381|340382|340384|340385|340389|340390|340393|340394|340397|340398|340400|340405|340409|340411|340418|340421|340423|340424|340427|340435|340436|340437|341770|341771|341776|341778|341781|341783|341784|341786|341793|341799|341801|341807|341808|341814|341815|343087|343090|343100|343102|348445|348455|348456|348457|348464|348465|349586|349587|349589|390078|409437|447095|447101|447200|447202|447280|463271|463626|463850|463851|464857|464862|464863|465467|465471|465569|465570|465583|465585|492701|515121|515178|527724|527757|527760|529258|529260|529262|529264|529293|529297|529299|529302|529303|529306|529592|529594|529871|529873|529876|529884|529886|529893|532793|532802|532869|533238|533239|533242|533246|556594|556631|556633|556635|556637|556925|558110|566117|567559|567561|567566|568511|568513|568525|568537|568544|569439|569444|569444|569448|569452|569457|569839|569846|569848|569849|569851|572306|572307|572487|572993|573667|573672|573674|573678|573680|573681|574921|574922|574923|590073|614408|614409|619952|620631|624469|624657|624817|626805|626806|626807|626808|626809|626810|626811|626812|626813|626814|626815|626816|641931|641932|641933|641934|641935|641936|641937|641938|643765|643766|643767|643768|643769|643770|643771|643772|643773|643774|643775|643776|643777|643778|643779|643780|643781|643782|643783|643784|643785|643786|643787|643788|643789|643790|643791|643792|643793|643794|643795|643796|643797|643798|643799|643800|643801|643802|643803|643804|647860|647861|647862|647863|647864|647865|647866|647867|647868|650657|652506|653023|653157|654785|677296|714712|714713|714714|718202|718203|718204|726390|726391|726392|726393|726394|729919|731716|731717|731718|739044|739921|739922|739923|739924|739925|739926|739927|739928|741737|744881|745681|754832|754833|754834|754835|754836|754837|754839|754841|754842|754843|760438|761191|761192|769549|770470|770471|770472|770473|770475|770476|770477|770480|770481|770482|770483|770484|770485|770486|770487|772538|772540|772541|776459|778162|779837|785089|785091|785092|785094|785097|785098|785104|785105|785106|785108|788313|788925|789386|816330|820760|822701|822702|822703|822704|822705|822706|822707|822708|822709|822710|822711|822712|822713|822714|822715|840879|840880|840881|840882|840883|840884|840885|842948|842949|842950|842951|842952|842953|842954|842955|842956|842957|842958|842959|842960|842961|842962|842963|842964|842965|842966|842967|842968|842969|842970|847460|847461|847462|847463|847464|847465|847466|847467|852328|852792|862259|862260|862261|862262|862263|862264|862265|862266|862267|862268|862269|862270|862271|862272|862273|862274|864978|864979|864980|871166|871167|871168|871169|871170|871171|871172|871173|871174|871175|871176|871177|871178|871179|874563|874564|874565|874566|874567|874568|874569|874570|874571|874572|874573|874574|874575|874576|874577|874578|874579|874580|874581|874582|874583|874584|874585|874586|874587|874588|874589|874590|874591|874592|874593|874594|874595|874596|874597|874598|874599|874600|874601|874602|876605|876606|876607|876608|876609|880205|880206|880207|880208|880209|880210|880211|921628|921629|921630|926912|926913|926914|926915|926916|926917|927519|927520|927521|927522|927523|927524|927525|927526|927527|927528|928903|928904|928905|930025|930026|930027|930028|930029|930030|930031|936445|937162|937163|937164|937165|937166|937167|937168|937169|937170|937171|937172|937173|937174|937175|937176|940339|941105|941443|941444|941445|941446|941447|949124|949125|949126|949127|949128|949129|949130|950725|952064|952065|957103|957104|957576|957577|957578|957579|957580|957581|957582|957583|957584|957585|957586|957587|957588|957589|957590|957591|958582|958583|964519|979705|979706|979707|979708|979709|979710|979711|979712|979713|979714|979715|979716|979717|979718|979719|979720|979721|979722|979723|979724|979725|979726|979727|979728|979729|979730|979731|979732|979733|979734|979735|979736|979737|979738|979739|979740|979741|979742|979743|979744|979745|979746|980434|980478|980963|980964", + "text": "Bare lymphocyte syndrome 2" + }, + { + "baseId": "21640|21641|21642|21643|39283|39284|39285|39286|135502|135503|190523|190525|192448|208397|328485|328487|328490|328491|328497|328498|328500|328504|328508|328510|338432|338440|338441|338443|338447|344512|344514|344515|344517|344519|344522|344526|344535|345916|345919|345920|345925|345927|345928|429966|877526|877527|877528|877529|877530|877531|877532|877533|877534|877535|877536|877537|877538|877539|877540|877541|877542|877543|877544|877545|877546|877547|877548|877549|877550|877551|877552|970241", + "text": "Lipodystrophy, congenital generalized, type 4" + }, + { + "baseId": "21644|21645|21646|106808|106809|135423|135424|135425|181591|237315|243559|243560|243561|243563|243564|243565|243566|243566|243567|243568|243569|243570|243571|243572|265656|268458|268460|334694|334696|334697|334698|334700|334701|334704|334708|334712|334714|334717|334720|334727|344523|344524|344527|344529|344531|344534|349561|349562|349566|349567|349568|349571|349572|350567|350570|350573|350576|350580|350581|350582|350584|350585|353531|353532|360448|376886|377874|377887|377902|377907|377908|378159|378165|384524|403594|403637|403643|404125|404143|404148|410723|413493|415672|439254|442260|469306|469311|470260|470833|470835|471327|471329|471331|471333|471336|471338|507061|507067|507191|507192|508009|508016|533414|533415|533416|533442|533959|538490|571107|572825|572827|573425|573426|573428|573430|573431|573432|573434|575066|577829|577830|582313|620650|620651|648520|648521|648522|648523|648524|648525|653084|684855|684856|684858|684859|685466|685467|689162|689163|689164|689165|689166|689167|689169|689170|689171|689174|690233|694519|694520|694521|705334|731319|742205|772974|798760|848131|848132|848133|848134|848135|848136|848137|848138|848139|848140|848141|848142|848143|848144|848145|848146|848147|848148|848149|848150|848151|848152|848153|848154|848155|848156|848157|851836|852358|852359|852894|852994|882691|882695|882696|882697|882698|882699|882700|882701|882702|882703|882704|882705|882706|882707|882708|882709|882710|882711|882712|882713|882714|882715|882716|882717|882718|882719|882720|882721|882722|882723|882724|882725|882726|882727|882728|882964|882965|882966|882967|882968|882969|882970|929124|929125|929126|929127|929128|929129|938879|938880|938881|938882|938883|938884|938885|938886|938887|938888|938889|938890|938891|938892|938893|938894|950951|950952|950953|950954|950955|950956|950957|950958|950959|950960|950961|950962|950963|958758|958759|958760|958761|958762|958763|960304|960305|960306", + "text": "Hereditary spastic paraplegia 39" + }, + { + "baseId": "21646|106806|181590|181591|181592|243566|538490", + "text": "Trichomegaly-retina pigmentary degeneration-dwarfism syndrome" + }, + { + "baseId": "21646|181593|243566|538490", + "text": "Laurence-Moon syndrome" + }, + { + "baseId": "21646", + "text": "PNPLA6-related disorders" + }, + { + "baseId": "21647|21648|21649|21650|21651|21652|21653|21654|21655|176083|194388|230518|230519|230520|230521|230522|230523|230524|230525|237616|266218|266380|320412|320413|329160|329162|329166|329169|335768|335769|335773|337582|337583|337584|491561|513618|802077|871774|871775|871776|871777|871778|871779|871780|871781|871782|871783|871784|871785|871786|871787|871788|871789|871790|871791", + "text": "Deafness, autosomal dominant 9" + }, + { + "baseId": "21656|204349|204350|204351|204352|321265|321269|321271|321275|321276|321277|330470|330472|330473|330475|330476|330477|330479|336984|336985|336989|336996|337003|337005|337007|337015|338925|338930|338934|338935|338938|338940|338941|338946|338947|513623|620486|620487|620861|725791|784776|860122|872465|872466|872467|872468|872469|872470|872471|872472|872473|872474|872475|872476|872477|872478|872479|872480|872481|872482|872483|872484|872485|872486|872487|872488|872489|872490|872491|872492|872493|872494|872495|872496|872497|872498|872499|872500|872501|872502|872503|872504|872505|872506|872507|872508|872509|872510|872511|872512|872513|872514|872515|872516|872517|872518|872519|872520|872521|876438|876439|904110", + "text": "Methylmalonate semialdehyde dehydrogenase deficiency" + }, + { + "baseId": "21657|192358|252146|252150|273781|275516|299207|299214|299222|299224|299228|299230|299234|299235|301636|306038|306041|306043|306044|306045|306051|306052|306053|306066|306315|306316|306319|306322|306324|492855|619943|895479|895480|895481|895482|895483|895484|895485|895486|895487|895488|895489|895490|895491|895492|895493|895494|896200|961772", + "text": "Peroxisome biogenesis disorder 10A" + }, + { + "baseId": "21659|590481", + "text": "Choanal atresia and lymphedema" + }, + { + "baseId": "21660|22017|22089|27617|27621|28696|29000|29006|29008|29010|29020|31648|31652|31848|34064|38760|38762|48817|53966|53978|54386|54403|54438|54447|54449|54464|133516|174230|205383|205384|311469|359646|359799|362828|362829|363583|363619|552584|575761|575763|575766|575769|575773|575779|615885|790727|790728|790729|790730|790731|790732|790733|790734|790735|790736|790737|971294", + "text": "Lung carcinoma" + }, + { + "baseId": "21661|21662", + "text": "Anaphylotoxin inactivator deficiency" + }, + { + "baseId": "21663|21664|21665|21666|21667|21668|21669|21670|21671|133737|133739|207659|207660|253484|266583|307660|307661|307663|307664|307676|307685|307687|307689|307690|307694|307696|311906|311915|311924|311925|311932|311943|317485|317488|317498|317516|317517|317518|317521|317524|317544|317995|317996|318011|318012|318017|318018|318019|318024|318029|318031|318032|318039|359009|359010|359011|359012|359013|359014|359015|359016|359017|359018|359019|359027|361196|361197|380242|380246|492918|540478|540479|624154|723471|737029|788834|901548|901549|901550|901551|901552|901553|901554|901555|901556|901557|901558|901559|901560|901561|901562|901563|901564|901565|901566|901567|901568|901569|901570|901571|903355", + "text": "Congenital generalized lipodystrophy type 1" + }, + { + "baseId": "21676|21677|21678|21679|21680|39254|76395|76396|76400|193608|199799|254874|254876|254878|384627|384628|384629|384631|429512|463710|463965|508882|536082|553157|566185|642065|642066|688185|693399|702755|702756|739106|739110|799753|799754|820592|841014|919501|919502|919503|926952|926953|948421|948422|957141|957142", + "text": "Holoprosencephaly 5" + }, + { + "baseId": "21682|21683|227305|433842|433846|433847|433848|433852|433853|537511|609638|612432|612766|699713|722207|903547", + "text": "Bone fragility with contractures, arterial rupture, and deafness" + }, + { + "baseId": "21684|21685|21686|44138|167558|167559|167560|167561|215228|273666|283016|283023|283027|283028|283029|283033|283035|283044|283045|283046|283047|283052|283065|283070|283080|283081|283102|283109|283110|283118|283119|283120|283129|283130|283137|283138|283140|283142|283846|283848|283849|283850|283852|283854|283865|283869|283870|283876|283878|283879|285508|285512|285526|285527|285528|285531|285533|285552|285559|285561|285563|285569|285581|285584|285587|285588|285606|285617|285907|285909|285914|285930|285931|285936|285937|285939|285942|285965|285979|285980|285983|285984|286012|286013|286028|286046|549542|707864|732965|746964|746966|746967|762437|762440|762441|780976|799243|881660|881661|881662|881663|881664|881665|881666|881667|881668|881669|881670|881671|881672|881673|881674|881675|881676|881677|881678|881679|881680|881681|881682|881683|881684|881685|881686|881687|881688|881689|881690|881691|881692|881693|881694|881695|881696|881697|881698|882858|981348", + "text": "Rhizomelic chondrodysplasia punctata type 3" + }, + { + "baseId": "21687|21688|21689|21690|21691|21692|21693|21694|21695|21696|134274|134275|134276|193576|194940|207063|250984|250989|250991|250996|250998|264144|266173|271284|289150|289152|289157|289159|289160|289941|289943|289945|289948|289952|289955|289956|289958|289963|289964|293013|293014|293017|293019|293024|293026|293027|293030|293031|293033|293038|293420|293421|293422|293423|293426|293438|293466|293467|367241|440760|451892|451893|451895|451901|452111|452238|452240|452244|452252|452356|491846|518929|518933|518938|518946|519107|519109|519113|519131|519134|537420|538355|558828|558830|559359|559361|561222|561225|561227|562528|562530|590546|590547|590548|620113|620114|620756|623586|631001|631002|631003|631004|631005|631006|631007|631008|631009|631010|631011|631012|631013|631014|651062|651072|651153|691328|697901|697902|763708|790344|790345|802148|819340|819341|827632|827633|827634|827635|827636|827637|827638|827641|827642|888228|888229|888230|888231|888232|888233|888234|888235|888236|888237|888238|888239|888240|888241|891595|891596|923073|923074|923075|923076|923077|923078|923079|931805|931806|931807|939929|943377|943378|943379|943380|943381|953367|953368|953369|953370|953371|953372|959691|959692|964655|965876|965885|980408|980409", + "text": "Endplate acetylcholinesterase deficiency" + }, + { + "baseId": "21697|21698", + "text": "Legionellosis" + }, + { + "baseId": "21697", + "text": "Systemic lupus erythematosus, resistance to, 1" + }, + { + "baseId": "21697", + "text": "Melioidosis, resistance to" + }, + { + "baseId": "21699|21700", + "text": "TLR4 POLYMORPHISM" + }, + { + "baseId": "21701|49908|486804|486805|486808|486809", + "text": "Herpes simplex encephalitis 2" + }, + { + "baseId": "21702|980453", + "text": "Leprosy 3" + }, + { + "baseId": "21704|21706|21707|21710|21712|21713|21714|21714|21715|21718|21721|21724|100162|100191|100191|100205|100248|192910|213808|259743|259744|267122|268491|437659|443289|518525|542336|608904|672039|677130|822324|931561|961663|971805|971806|971807|971808|971809|971810|971811|971812|971813|971814|971815|971816|971817|971818|971819|971820|971821|971822|971823|971824|971825|971826|971827|971828|971829|971830|971831|971832|971833|971834|971835|971836|971837|971838|971839|971840|971841|971842", + "text": "Miyoshi muscular dystrophy 1" + }, + { + "baseId": "21705|21714|21715|100162|100186|100191|100205|100248|192910|213808|226470|259744|267122|268491|443289|492464|518525|542336|672039|802142|822324|931561|961663|971805|971806|971807|971808|971809|971810|971811|971812|971813|971814|971815|971816|971817|971818|971819|971820|971821|971822|971823|971824|971825|971826|971827|971828|971829|971830|971831|971832|971833|971834|971835|971836|971837|971838|971839|971840|971841|971842", + "text": "Myopathy, distal, with anterior tibial onset" + }, + { + "baseId": "21705|21706|21707|21708|21710|21713|21714|21715|21718|21723|21724|33482|80526|85580|100162|100163|100164|100165|100168|100169|100170|100175|100179|100180|100181|100182|100183|100185|100189|100190|100191|100193|100194|100199|100200|100201|100205|100207|100210|100211|100212|100214|100215|100216|100218|100220|100221|100222|100223|100225|100227|100228|100229|100230|100231|100232|100234|100235|100236|100241|100243|100244|100245|100247|100248|100250|100251|100252|100253|100254|100258|100261|100264|100265|100267|100269|134392|134393|134394|134395|134396|173671|176953|177084|177216|177347|177348|177683|177684|177687|177688|177691|192003|192650|192756|192757|192759|192838|192909|192910|193122|193183|193286|193336|193337|193785|193855|194056|194165|194222|194376|194378|194594|194624|194665|194682|194727|195128|195618|195655|195658|213540|213541|213806|213808|213810|213811|226470|250769|250770|250771|250775|250779|250780|250782|250783|250785|250787|250789|259744|264110|265251|265300|265304|265341|265474|265538|265592|265920|266191|266401|266446|266553|266647|266660|266750|266861|266936|266940|266942|267002|267122|267329|267443|267465|267696|267711|267724|267734|267861|268202|268214|268240|268491|268621|268724|268748|268817|269041|269053|269054|269059|269074|269111|269171|269290|269293|269298|269300|269360|269370|269380|269385|269389|269414|269437|269580|269593|269700|269814|269821|269880|269884|269923|269978|269987|270041|270050|270059|270180|270219|270220|270388|270414|270463|270680|270694|270705|270948|270966|270980|271053|271157|271412|271545|271554|271710|271711|272022|272048|272050|272053|272059|272180|272245|272326|272327|272419|272420|272535|272648|272649|272675|272730|272733|272814|272860|272861|272867|272885|273030|273087|273116|273126|273178|273213|273377|273481|273482|273708|273720|273796|273808|273998|274026|274152|274197|274200|274264|274332|274353|274380|274407|274415|274424|274494|274499|274591|274752|274894|274907|274939|274982|275068|275153|275299|275308|275346|275353|275360|275405|275545|287144|287148|287157|287158|287164|287169|287171|287172|287173|287877|287896|287898|287899|287900|287903|287904|287906|287911|287912|290424|290428|290429|290430|290443|290454|290461|290463|290470|290471|290719|290721|290727|290728|290742|290745|290746|290750|290759|290760|290761|290765|290767|357265|366899|366916|366918|366970|366972|366978|367778|367788|406010|413536|421401|437659|438144|440724|440727|443286|443288|443291|451389|451393|451397|451399|451400|451402|451405|451407|451409|451562|451563|451565|451567|451570|451572|451578|451580|451584|451586|451588|451590|451591|451595|451597|451606|451607|451612|451616|451619|451750|451753|451758|451760|451762|451765|451784|451785|451788|451791|451795|451816|451824|451828|488296|488403|488736|488918|489272|489770|489796|490043|490393|490407|490434|490446|490447|490471|490508|490615|490629|490651|491428|492042|492361|492460|492464|492710|492904|492978|492982|493240|493518|493519|493566|493635|493977|495156|496762|499889|500107|500108|500326|518514|518517|518519|518520|518521|518525|518526|518528|518531|518534|518535|518536|518539|518540|518541|518542|518543|518544|518548|518550|518597|518598|518599|518606|518610|518613|518615|518616|518658|518663|518666|518670|518673|518675|518680|518682|518685|518688|518689|518701|535273|542033|542115|542117|542153|542183|542198|542214|542217|542231|542254|542277|542283|542293|542328|542330|542387|542391|550588|558257|558259|558261|558263|558630|558632|558634|558636|558638|558640|560912|560915|560916|560919|560921|560922|560926|560928|560939|561890|561894|561907|561908|561909|561911|561915|561929|561931|561938|561942|576695|576697|585090|585256|586246|587069|587283|587878|587887|588190|588191|588611|588741|588744|589195|589621|610613|620092|620093|630418|630419|630420|630421|630422|630423|630424|630425|630426|630427|630428|630429|630430|630431|630432|630433|630434|630435|630436|630437|630438|630439|630440|630441|630442|630443|630444|630445|630446|630447|630448|630449|630450|630451|630452|630453|630454|630455|630456|630457|630458|630459|630460|630461|630462|630463|630464|630465|630466|630467|630468|650880|650882|650888|651003|651005|651008|655473|659299|691194|691195|691196|691197|691198|691200|691201|691202|691203|691204|695153|695156|695157|695158|695159|697640|697641|697642|697643|697644|697646|708348|708349|719952|730158|733548|733549|733550|733551|733554|743883|743960|747748|747749|747750|747754|747755|747756|747757|759071|759076|759144|763391|763394|763398|763399|763402|763405|763406|774740|774743|774775|774776|781433|781434|781437|781438|781439|781444|781445|787126|787228|819269|819270|819271|819272|826927|826928|826929|826930|826931|826932|826933|826934|826935|826936|826937|826938|826939|826940|826941|826942|826943|826944|826945|826946|826947|826948|826949|826950|826951|826952|826953|826954|826955|826956|826957|826958|826959|826960|826961|826962|826963|826964|826965|826966|826967|826968|826969|826970|850875|850877|850879|850881|850883|851208|851440|859188|885409|885410|885411|885412|885413|885414|885415|885416|885417|885418|885419|885420|885421|885422|885423|885424|885425|885426|885427|885428|885429|885430|885431|885432|885433|885434|885435|885436|887391|887392|887393|887394|887395|922901|922902|922903|922904|922905|922906|922907|922908|922909|922910|931558|931559|931560|931561|931562|931563|931564|931565|931566|939908|939909|939910|939911|940721|940722|940723|943088|943089|943090|943091|943092|943093|943094|943095|943096|943097|943098|943099|943100|943101|943102|943103|943104|943105|943106|943107|943108|943109|953180|953181|953182|953183|953184|953185|953186|953187|953188|953189|953190|953191|953192|953193|959654|959655|960490|966353", + "text": "Qualitative or quantitative defects of dysferlin" + }, + { + "baseId": "21706|21707|21708|21709|21710|21711|21712|21713|21714|21714|21715|21716|21717|21719|21720|21722|21723|21724|33482|80526|85580|100162|100162|100163|100164|100166|100169|100171|100172|100174|100178|100179|100180|100181|100182|100183|100189|100190|100191|100191|100192|100194|100198|100199|100200|100201|100205|100205|100207|100208|100211|100212|100214|100215|100216|100218|100220|100221|100222|100225|100227|100228|100230|100231|100232|100234|100240|100243|100244|100245|100247|100248|100248|100250|100251|100252|100253|100255|100258|100264|100267|100269|134392|134393|134395|134396|177216|177686|177687|177688|191517|192651|192756|192910|192910|193183|193286|193336|193855|194222|194378|194594|194624|194665|195128|195619|195655|195656|207012|213540|213541|213807|213808|213808|213809|213810|213811|226470|250769|250770|250775|250779|250782|250785|250787|250789|250793|259743|259744|259745|265341|265377|265434|265474|265538|265920|266446|266553|266645|266647|266686|266861|266940|267002|267008|267122|267122|267465|267480|267696|267711|267724|267734|267861|268214|268240|268488|268491|268491|268621|268706|268816|268817|269037|269054|269059|269111|269300|269360|269380|269390|269580|269593|269814|269880|269923|269987|270041|270050|270180|270388|270705|270980|271157|271545|271554|271711|272053|272529|272648|272675|272730|272814|272867|272881|273116|273377|273482|273727|273808|273998|274200|274264|274332|274407|274415|274435|274441|274494|274521|274546|274547|274894|275153|275299|275308|275353|275405|275545|287144|287158|287171|287172|287877|287899|287904|290443|290750|353882|357265|361389|366680|366916|406010|421401|424285|425501|437659|440724|440730|443289|443289|451402|451567|451580|451584|451588|451753|451795|488125|488555|489272|489770|490043|490519|490651|491514|492042|492361|493240|493519|514294|518517|518525|518531|518536|518541|518542|518548|518598|518658|518689|518701|535272|535273|536159|542026|542027|542029|542031|542033|542035|542037|542042|542044|542047|542049|542066|542067|542074|542076|542080|542085|542091|542096|542102|542105|542107|542112|542115|542117|542149|542153|542160|542162|542173|542174|542176|542179|542182|542183|542184|542187|542198|542199|542202|542206|542209|542214|542217|542231|542238|542254|542256|542258|542260|542262|542264|542266|542269|542270|542272|542277|542279|542283|542285|542293|542297|542298|542300|542323|542325|542328|542330|542332|542335|542336|542336|542342|542357|542362|542366|542368|542373|542382|542387|542389|542390|542391|550588|558259|558263|558638|560922|560926|560939|561907|576697|585090|588191|588744|608903|608916|610421|610613|612261|612262|620944|622871|626364|626412|626417|630433|630436|630445|630446|630451|630455|630467|655474|672039|681816|681818|681819|681870|681871|691194|691195|691200|691201|691204|695153|695155|695156|697640|697642|697644|708348|708349|730158|733551|733554|743883|747748|747757|759074|763394|763395|763405|763412|774776|774778|781440|787229|802134|802135|802136|802137|802138|802139|802140|802141|802142|802143|802144|802145|802146|802246|822324|826930|826931|826937|826941|826953|826955|826956|826958|826961|826963|826966|921250|921251|931559|931561|961663|971805|971806|971807|971808|971809|971810|971811|971812|971813|971814|971815|971816|971817|971818|971819|971820|971821|971822|971823|971824|971825|971826|971827|971828|971829|971830|971831|971832|971833|971834|971835|971836|971837|971838|971839|971840|971841|971842|977747|977748|977749|977750|977751|977752|977753|977754|977755|977756|977757|977758|977759|977760|977761|977762", + "text": "Autosomal recessive limb-girdle muscular dystrophy type 2B" + }, + { + "baseId": "21706|100178|272053|274332", + "text": "DYSF-Related Disorders" + }, + { + "baseId": "21725|21726|21727|48241|48242|48243|48244|48245|205163|267233|267602|271833|491702|525489|525577|564850|566551|566552|639260|639261|701456|701457|712499|712500|779510|837409|919301|947116|956263", + "text": "Spondyloepimetaphyseal dysplasia, pakistani type" + }, + { + "baseId": "21728|70957|70958|70959|70960|70961|70962|70963|70964|70965|70966|70967|70968|70969|70970|70971|70972|70973|70974|70975|70976|70977|70978|70979|70980|70981|70982|71380|71381|71382|71383|71384|71385|71386|71387|71388|71389|71390|71391|71392|71393|71394|71395|71396|71397|71398|71399|71400|71430|187116|204448|227336|259935|309848|309849|309854|309867|309873|309879|309880|309881|309895|309909|309915|309930|309945|314751|314759|314760|314770|314775|314782|314791|314819|314827|314832|314833|314846|314885|314898|314901|314914|314931|314951|314967|314985|314996|320801|320826|320832|320843|320869|320880|320901|320905|320931|320954|320956|320962|320976|320980|320982|321016|321409|321429|321445|321463|321477|321480|321523|321527|321538|321539|321554|321567|373341|433361|433468|433469|433470|433473|433474|433476|433477|433479|434635|459738|463056|463536|492549|512917|513081|513082|513083|513084|513305|525021|525030|525035|525038|525233|525235|525236|525335|525340|525537|525539|527933|527964|528277|528344|528433|536788|563627|563628|563639|563640|563645|564530|564532|566213|566219|566220|568716|569555|569558|569563|569564|569575|581763|581764|581770|590289|590290|590291|590292|590293|590294|590295|590296|609883|620350|620351|620352|620353|620820|623303|638802|638803|638804|638805|638806|638807|638808|638809|638810|638811|638812|638813|638814|638815|638816|638817|638818|638819|638820|638821|642128|654582|683143|684140|684143|684144|684145|684146|684147|684148|684149|684150|684151|684153|684154|684155|684158|684159|684160|684161|684162|684163|684164|684165|684454|684456|684457|684458|684459|684460|684461|685266|685267|685268|685269|685392|687597|687601|687602|687603|687607|688242|688244|690074|739131|767686|783571|783575|784660|787658|788840|790955|799602|818277|818278|818279|818280|818281|836728|836729|836730|836731|836732|836733|836734|836735|836736|836737|836738|836739|836740|836741|836742|836743|836744|841091|851768|925774|925775|925776|925777|934992|934993|934994|934995|934996|934997|934998|934999|935000|935001|935002|936525|936526|936527|946847|956021|956022|956023|956024|957157", + "text": "Imerslund-Gr\u00e4sbeck syndrome" + }, + { + "baseId": "21728|21729|39247|70969|71390|71398|227336|259935|273570|309810|309811|309820|309822|309823|309825|309826|309828|309834|309842|309844|309848|309849|309854|309867|309869|309872|309873|309877|309879|309880|309881|309885|309888|309892|309895|309897|309899|309900|309909|309910|309915|309920|309922|309928|309930|309938|309940|309945|309957|309958|309960|309961|309963|309965|309966|314740|314741|314742|314743|314746|314747|314748|314749|314750|314751|314757|314759|314760|314762|314770|314775|314778|314780|314782|314783|314791|314798|314799|314808|314813|314819|314821|314822|314827|314828|314831|314832|314833|314844|314846|314849|314859|314863|314864|314878|314885|314887|314890|314896|314897|314898|314901|314914|314919|314926|314931|314933|314941|314942|314943|314951|314965|314966|314967|314976|314982|314985|314986|314992|314995|314996|314999|320747|320748|320752|320756|320776|320789|320795|320799|320800|320801|320803|320804|320810|320813|320817|320822|320825|320826|320827|320832|320839|320840|320842|320843|320853|320856|320868|320869|320870|320880|320881|320901|320907|320912|320914|320918|320922|320926|320928|320930|320931|320940|320953|320954|320955|320956|320957|320959|320962|320963|320967|320976|320977|320980|320981|320982|321009|321013|321015|321016|321022|321032|321034|321040|321404|321405|321406|321409|321410|321421|321422|321429|321431|321438|321439|321443|321445|321449|321457|321463|321468|321470|321477|321480|321500|321518|321520|321523|321525|321527|321529|321532|321533|321534|321537|321538|321539|321554|321555|321556|321564|321565|321567|321570|321573|321583|321590|321598|433473|433474|433476|459738|492549|513081|513082|525021|525035|525537|536788|638807|638815|638821|684140|684142|684149|684150|684155|684161|684162|684164|685265|687599|687606|787658|799602|836731|861240|861241|865644|865645|865646|865647|865648|865649|865650|865651|865652|865653|865654|865655|865656|865657|865658|865659|865660|865661|865662|865663|865664|865665|865666|865667|865668|865669|865670|865671|865672|865673|865674|865675|865676|865677|865678|865679|865680|865681|865682|865683|865684|865685|865686|865687|865688|865689|865690|865691|865692|865693|865694|865695|865696|865697|865698|865699|865700|865701|865702|865703|865704|865705|865706|865707|865708|865709|865710|865711|865712|865713|865714|865715|865716|865717|865718|865719|865720|865721|868462|868463|868464|962728|963361", + "text": "Imerslund-Gr\u00e4sbeck syndrome 1" + }, + { + "baseId": "21730|21731|21733|21734|21736|21738|21739|21742|362070|590326", + "text": "Symphalangism, proximal, 1A" + }, + { + "baseId": "21730|21735|21736|362070|362070", + "text": "Tarsal-carpal coalition syndrome" + }, + { + "baseId": "21732|21740|21745|21746|39246|319166|319167|319210|327653|327662|327663|327688|333897|333898|333907|333929|333930|333940|333945|333973|335582|335592|335603|335621|335623|349927|362070|816042", + "text": "Symphalangism-brachydactyly syndrome" + }, + { + "baseId": "21741|21742|21747|362070", + "text": "Brachydactyly type B2" + }, + { + "baseId": "21742|21743|21744|362070|975714", + "text": "Stapes ankylosis with broad thumb and toes" + }, + { + "baseId": "21748|21749|21750|210617|210618|277942|626098|961418", + "text": "Mitochondrial complex 1 deficiency, nuclear type 6" + }, + { + "baseId": "21751|21752|21753|21754|21755|21756|21757|21758|49648|138096|138097|138100|138104|138105|138106|138108|138109|139283|186096|212670|240614|240617|240618|240619|240621|253535|308258|308262|308266|308268|308269|312654|318554|318555|318558|318560|318570|318572|319060|319067|319075|319076|319080|396876|429014|438666|563228|563967|569012|578476|611355|612190|638231|836096|901976|901977|901978|901979|901980|901981|901982|901983|901984|901985|901986|901987|901988|901989|901990|901991|901992|903401|917990|917991|917992|917993|917994|917995|917996|917997|917998|917999|918001|918002|918003|918005|918006|918007|918008|918009|918010|918011|918012|918013|918014|918015|918016|918017|918018|918019|918021|918023|918024|918025|918026|918027|918028|918029|961956", + "text": "Fanconi anemia, complementation group G" + }, + { + "baseId": "21751|21753|21754|21756|138096|138099|138100|138106|138108|138109|240614|240617|240618|240619|240621|253535|396874|396876|397463|438666|459458|460039|460042|563223|563965|638222|638226|638229|684097|684100|687493|689950|695438|836094|836098|978579", + "text": "Fanconi anemia group G" + }, + { + "baseId": "21760", + "text": "Ventricular septal defect 2" + }, + { + "baseId": "21761|21762|792601", + "text": "Atrial septal defect 8" + }, + { + "baseId": "21763", + "text": "FAAH POLYMORPHISM" + }, + { + "baseId": "21764", + "text": "Colorectal cancer 3" + }, + { + "baseId": "21765|21766|21767|21768|21769|21770|100016|100017|100018|132587|143047|143058|143059|168751|168752|168753|168754|189041|195318|196242|196242|202279|202287|202290|202297|202301|202320|202327|202328|202332|207613|264306|361912|362229|407533|407541|421698|428915|444351|458771|458775|481837|486612|488157|508833|513586|551300|552129|552130|552131|562736|581230|589818|611399|611714|613942|613943|790834|790835|790836|790837|790838|790839|790840|790841|798611|798612|800669|800915|801994|802049|802058|815840|858345|858346|858347|858591|859704|920585|961554|961612|962862|962869|964305|964306|964307|964308|964668|970408|970891|971377", + "text": "Early infantile epileptic encephalopathy 4" + }, + { + "baseId": "21769|22421|22425|22428|22430|27921|27922|27923|27928|27929|34609|34614|34615|34616|34619|34620|34621|34626|34631|34632|34635|34639|34644|34645|34647|34649|34652|34654|34661|34662|39079|45412|45413|45414|45415|48359|48716|77012|79394|79396|79397|79398|79412|79415|79419|79420|79422|79425|79426|79427|79429|79432|79436|79443|79444|79445|79446|79449|79450|79451|79460|79462|79463|79466|79467|79470|79471|79476|79480|79481|79485|79489|79490|79494|79496|79498|79500|79508|79517|79522|79535|79542|79548|79550|79552|79561|79563|80297|99530|99532|99533|99537|99539|99540|99542|99543|99544|99546|99547|99549|99552|99553|99559|99561|99564|99565|99567|100017|100018|101894|106649|106651|125784|132587|134776|134778|134779|134782|134783|134784|134786|134787|134788|134789|134790|134791|135655|135689|135691|135692|135693|135695|135697|135699|135822|135824|135826|135827|139369|141717|141718|141719|141720|141721|141723|141726|141727|141729|141731|141732|141733|141734|141735|141736|141737|141741|142675|142676|142682|142683|142685|142687|142689|142771|142772|142773|142774|142775|142778|142833|142834|142837|142839|142841|142842|142843|142844|142845|142848|142849|142967|142968|142972|142974|142975|142977|142978|142980|142981|142982|142984|142985|142986|142989|142990|142991|142993|142994|142997|142998|143001|143002|143004|143005|143006|143007|143008|143009|143010|143011|143012|143013|143014|143015|143017|143018|143019|143020|143021|143023|143046|143047|143048|143049|143051|143052|143054|143057|143058|143059|143202|165903|168753|168755|168758|168759|168770|168772|168775|168777|168782|168785|168787|168788|168792|168793|168883|168884|168886|168890|177010|177069|177070|177432|177763|177787|178045|178089|178092|187701|187703|187704|187723|187731|187739|187752|187757|187771|187772|187779|187795|187802|187803|187809|187817|187821|187823|187828|187842|187854|187874|187876|187880|189041|190605|190606|190607|191002|191004|191189|191195|191250|191251|191298|191447|191522|191565|191609|191779|191780|191926|192094|192110|192288|192292|192424|192454|192737|192849|193103|193104|193106|193191|194022|194102|194348|194962|195050|195051|195052|195053|195149|195161|195354|195355|195445|195745|195753|195927|196058|196070|196242|196280|201414|201430|201432|201434|201436|201437|201446|201449|201451|201454|201455|201461|201466|201477|201478|201481|201491|201502|201504|201510|201518|201531|201534|201539|201541|201560|201564|201566|201573|201593|201597|201598|201602|201609|201610|201617|201619|201620|201624|201626|201632|201638|201640|202273|202281|202284|202285|202287|202288|202290|202291|202296|202297|202299|202301|202308|202311|202312|202313|202314|202316|202320|202324|202325|202328|202332|202338|202343|202344|202345|202347|202349|202350|202352|202353|202355|202358|202360|202361|202362|202363|202365|202369|202373|202375|202382|202384|202389|202390|202392|202394|202396|202398|202399|202401|202403|202405|202407|202408|202409|202411|202412|202421|202422|202425|202428|202431|202433|202435|202441|202449|202450|202451|202454|202455|202456|202457|202620|202623|202625|202626|202629|202630|202631|202632|202633|202637|202638|202639|202641|202644|202645|202646|202714|202716|202717|202720|202722|202726|202729|202731|202733|202735|202736|202737|202740|202741|202746|202754|202755|202756|202758|202759|202761|203690|203691|203694|203695|203698|203699|203700|203701|203703|203704|203705|203708|203714|203715|203717|203719|203724|203726|203728|203729|203730|203734|203736|203748|203750|203754|203758|203760|203766|203771|203772|203779|203788|203792|203794|203795|203799|203800|203805|203807|205293|206811|206813|206816|206886|207615|207616|207618|207915|207980|208289|208430|212125|213472|213473|213797|213802|213804|215288|217258|217263|221118|237298|237762|238297|238378|238379|238380|238381|238382|239251|239252|239253|239254|239255|239256|239257|239849|239850|240447|240467|240468|240469|240470|241557|241558|241560|241853|241854|242444|242445|242446|243022|243023|243025|243026|243588|243589|243590|246949|247714|247727|247729|247730|248493|248503|250344|253307|254608|259912|260118|260235|260377|264301|264306|264645|264882|264902|264953|267219|267587|267975|268122|268935|269722|269723|271301|271437|271459|271636|271703|271792|271794|272617|272715|282542|283182|306852|306856|306961|306969|306981|311128|311129|315310|316704|316715|316718|316905|317137|317612|322144|322150|325473|328219|328235|333192|333193|336280|346004|346012|351408|351409|354006|354008|354023|359312|359315|359410|360095|360120|360122|363873|365613|365672|365898|365899|365919|366118|369762|369804|369806|369810|369834|369842|369843|369845|369864|369878|369881|369893|369905|370202|370203|370207|370378|370380|370382|370389|370396|370397|370402|370407|370512|370639|370646|370668|370672|370680|371743|371745|372133|372186|372207|372216|372223|372248|372363|372394|372395|372416|372481|372485|372733|372760|373147|373317|373318|373353|373357|373374|373377|374389|374393|375218|375296|378186|378218|378224|378378|378388|378406|378408|378416|378417|378420|379743|379748|379749|384446|384447|391252|391413|391414|391415|391420|391422|391427|391428|391434|391436|391440|391473|391474|391484|391575|391578|391587|391590|391598|391599|391643|391644|391653|391655|391656|393640|393644|393656|393657|393659|393660|393667|393671|393677|393679|393683|393685|393858|393859|393860|393872|393879|394055|394058|394059|394066|394085|394089|394090|394091|394092|394096|394097|394943|394945|394953|394954|395119|395134|395140|395322|395323|395325|395333|395579|395595|395598|395604|396444|396451|396454|396458|396472|396473|396737|396818|396826|396862|396865|396870|397030|397036|397038|397109|397117|397118|397122|397125|398455|398773|398999|399001|399478|399480|399484|399491|399494|399689|399696|399730|399731|399733|399736|399751|399756|399834|399839|399840|399841|400220|400226|400233|400418|400436|401192|401196|401259|401978|401979|401989|401993|402624|402629|402630|402632|402633|402656|402662|402663|402665|402672|402674|402675|402678|403103|403104|403107|403112|403120|403124|403209|403210|403219|403222|403226|403691|403693|403696|403698|404188|404190|404194|404199|404201|404202|404203|404210|404843|405365|405367|405368|405393|405411|407558|408486|408707|410820|410821|410823|410824|410834|413607|413798|414844|414846|414947|415344|415696|421308|421309|421310|421314|421698|422336|422342|422343|425224|425424|425818|426174|426350|426351|426676|427833|427836|427838|427933|428208|429321|429439|429584|430042|437933|437934|438210|438651|438756|440552|440557|440559|440563|441257|441261|443014|443021|443023|443031|443035|443039|443802|444351|445041|446286|446288|446295|448101|448112|448117|448144|448528|448824|448825|448826|448830|448833|448838|448839|448842|448851|448990|448998|449015|449018|449027|449034|449073|449074|449078|449087|449107|449112|449113|449114|449115|449118|449120|449124|449125|449127|449128|449130|449131|449133|449135|449138|449139|449140|449141|449143|449145|449158|452557|452562|452564|452567|452576|452580|452583|452584|452585|452590|452846|452852|452858|452861|452862|452863|452871|452872|452873|452874|452876|452882|453106|453111|453114|453119|453126|453127|453132|453134|453142|454064|454065|455008|455012|455018|455019|455021|455022|455024|455198|455200|455201|455658|455664|455665|455912|455920|455926|455927|458126|458229|458231|458367|458371|458377|458385|458387|458392|458394|458396|458397|458401|458403|458719|458771|458775|458839|458842|458845|458849|458851|458894|458895|458900|458908|459268|459271|459349|459371|459381|459384|459394|461466|461467|461680|461991|461994|461995|462294|462299|462301|462302|462303|462309|462550|462554|462555|462562|462564|463019|463026|463027|463030|463034|463170|463175|463177|463178|463180|463345|463347|463348|463354|463356|463861|463873|463874|463877|463880|464215|464333|464339|464345|464349|464350|464357|464363|465776|465778|465780|466498|466749|466750|467836|467838|467845|467854|467857|467859|467872|467877|467883|467886|468754|468756|468757|468764|468767|469212|469216|469438|469440|469445|469575|470280|470480|470482|470483|470485|470487|470488|470490|470493|470836|470839|470845|470980|470984|470986|470987|470995|470997|471005|471462|471463|471465|471467|471471|486259|486769|486898|488830|488967|489114|489670|490316|491082|491350|491541|491793|492480|492801|492805|493534|493846|493854|498944|499108|502211|502225|502252|502477|502531|502539|502567|502929|503492|503948|503958|504051|504280|504474|504532|504534|504957|507876|511353|512214|513586|514022|514105|514279|515918|515956|515964|515967|516013|516160|516525|516538|516545|516552|516559|516566|516576|516579|516582|516584|516590|516604|516608|516609|516610|516613|516621|516623|516624|516626|516627|516628|516630|516632|516634|516641|516644|516645|516646|516647|516648|516649|516653|516654|516655|516660|516662|516663|516664|516665|516667|516680|516681|516683|516689|516696|516708|516709|516711|516717|516723|516729|516733|519437|519439|519443|519445|519448|519450|519452|519453|519454|519457|519461|519465|519469|519472|519479|519638|519643|519645|519648|519649|519687|519694|519703|519705|519710|519723|519725|519732|519740|519748|521209|521211|521215|521471|521479|521486|521488|521489|521492|521496|521543|521547|521549|521557|521561|521567|521804|521812|521816|523940|523945|524014|524017|524019|524020|524024|524026|524028|524035|524038|524040|524042|524055|524228|524315|524322|524334|524350|524352|524489|524493|524495|524555|524566|524568|524569|524571|524576|524611|524613|524617|524619|526480|526489|526542|526788|527063|527067|527213|527215|527219|527222|527227|527228|527231|527232|527235|527236|527239|527241|527249|527251|527463|527469|527474|527476|527478|527769|527771|527774|527777|528175|528225|528227|528228|528229|528231|528232|528233|528234|528237|528242|528250|528590|528595|528598|528696|528701|528707|528708|528714|530051|530052|530057|530365|530580|530582|530587|530590|530596|530599|532117|532120|532124|532131|532133|532136|532137|532141|532212|532215|532219|532492|532494|532498|532503|532515|533610|533615|533616|533624|533629|533636|533670|533673|533676|533677|533679|533682|533685|533688|533690|533692|533697|533982|534194|534202|534203|534212|536347|536822|537197|551718|557284|557343|557473|557604|557606|557608|557610|557612|557614|557616|557618|557620|557622|557624|557626|557628|557630|557632|557634|557636|557638|557640|557642|557644|557646|557648|557649|557651|557653|557655|557657|557659|557661|557663|557665|557667|557669|557671|557673|557677|557679|557681|557683|557685|557687|557689|557691|558521|558831|558833|558835|558837|558839|558841|558843|558845|558847|558849|558851|558853|558855|558857|558859|558861|558863|558865|559062|559064|559066|559068|559070|559072|559074|559320|559324|559326|559328|559330|559332|559334|559336|559338|559340|559342|559344|559346|559348|559350|559590|559592|559594|559596|559598|559600|559602|559604|560349|560351|560357|560468|560470|560472|560474|560476|561687|561692|561693|561695|561700|561702|562576|562720|562721|562726|562728|562734|562736|562826|563135|563136|563143|563152|563160|563180|563182|563406|563421|563520|563528|563530|563532|564910|565167|565491|565543|565545|565550|565551|565554|565556|565560|565561|565564|565567|565576|565578|566196|566885|566892|566901|567553|567554|567556|568092|568094|568103|568104|568108|568110|568147|568151|568153|568163|568478|568480|568533|568536|568539|568540|568955|568956|568958|568968|568969|570035|570038|570040|571009|571163|571338|571344|571347|571349|571351|571352|571355|571367|571816|571824|571825|571827|571832|571833|571835|571882|571883|571890|571893|572495|572512|572519|572520|572829|572830|572835|572959|572963|572967|572968|572970|573598|573599|573600|573602|573605|573608|573613|573618|574088|574090|574702|574703|574704|575075|575130|575131|575132|575133|577087|578919|578937|578949|579169|579184|579189|579590|579596|579601|579784|579791|579823|579827|580085|584654|584935|609020|613443|615767|621101|621102|626118|628024|628025|628026|628027|628028|628029|628030|628801|628802|628803|628804|628805|628806|628807|628808|628809|628810|628811|628812|628813|628814|628815|628816|628817|628818|628819|628820|628821|628822|628823|628824|628825|628826|628827|628828|628829|628830|628831|628832|628833|628834|628835|628836|628837|628838|628839|628840|628841|628842|628843|628844|628845|628846|628847|628848|628849|628850|628851|628852|628853|628854|628855|628856|628857|628858|628859|628860|628861|628862|628863|628864|628865|628866|628867|628868|628869|628870|628871|628872|628873|628874|628875|628876|628877|628878|628879|628880|628881|628882|628883|628884|628885|628886|631602|631603|631604|631605|631606|631607|631608|631609|631610|631611|631612|631613|631614|631615|631616|631617|631618|631619|631620|631621|631622|631623|631624|631625|631626|631627|633961|633962|633963|633964|633965|633966|633967|633968|633969|633970|633971|633972|633973|633974|637673|637674|637675|637676|637677|637746|637747|637748|637749|637750|637751|637752|637753|637754|637755|637756|637757|637758|637759|637760|637761|637762|637763|637764|637765|637766|637767|640470|640471|640472|640473|640474|640475|640476|640477|640478|641196|641197|641198|641199|641200|641201|641202|641203|641204|641205|641206|641207|641208|641209|641210|641211|641212|641213|641214|641215|641216|641217|641218|641219|641220|641221|641222|641223|641224|641225|641226|641227|641228|641229|641230|641231|641232|641233|641234|642526|642527|642528|642529|642530|642531|642532|642533|642534|642535|642536|644758|644759|644760|644761|644762|644763|644764|647056|647057|647058|647059|647060|647061|647062|647063|647064|647065|647066|647067|647068|647069|647070|647071|647072|647073|647074|650412|650413|650414|650418|650422|650426|650428|650430|650433|650434|650436|650438|650443|650444|650447|650450|650452|650453|650461|650464|650468|650470|650471|650473|650480|650718|650777|650780|650852|650857|650894|650898|650912|650914|650920|651085|651119|651215|651256|651323|651822|651834|651899|651907|652107|652109|652240|652269|652681|653066|653092|653106|653111|653186|653536|653538|653640|655891|655898|678964|678965|678966|678967|679939|683590|683591|683736|683738|684052|684332|684333|684500|684502|684503|684606|684607|684608|684609|684732|684733|684734|684736|684737|684738|684739|684893|684894|684895|685149|685150|685151|685794|686442|686443|686445|686448|686748|686750|686751|686755|687362|687363|687364|687378|687379|687385|687386|687387|687388|688013|688014|688016|688017|688018|688019|688020|688021|688022|688023|688024|688315|688318|688321|688322|688323|688616|688618|688619|688620|688875|688876|688877|688878|689218|689219|689221|689222|689675|689744|689796|690085|690145|690236|691456|693898|694239|694582|694587|694590|694592|694594|695417|695851|695852|698186|699105|702936|717136|721470|725143|728799|739269|739270|741267|742530|743739|744349|744633|746505|746507|748388|748389|748391|749523|751417|754102|754103|757666|764032|764033|764037|764039|767128|767132|767135|769189|769190|769192|769195|769196|769840|770963|774862|775475|775516|775758|776468|781755|781756|781757|783268|783269|783281|783286|783290|783291|784226|784412|784415|784416|785307|787097|787287|787337|788033|788194|790088|790091|790101|791995|791997|793850|794841|794845|798007|818821|819058|819059|819060|819062|819064|819065|819066|819067|819068|819069|819070|819071|819072|819073|819074|819075|819076|819077|819592|819593|819594|819595|819596|819597|820050|820051|820052|820053|820054|820055|820056|820385|820418|820505|820839|821308|821309|821311|821313|821339|821340|821341|821342|821343|821914|821915|821916|821917|821918|821919|821920|821951|821952|821953|821954|821955|821956|821957|821958|821965|821966|821967|821968|821969|821970|821971|821972|821973|821974|821975|821976|821977|821978|821979|821980|821981|821982|822075|822076|822077|822078|822079|822080|822081|822082|822083|822084|822085|822086|822087|822088|822119|822239|822242|822244|822245|822248|822264|822265|822266|824130|824131|824132|824133|824134|824135|824136|828363|828364|828365|828366|828367|828368|828369|828370|828371|828372|828373|828374|828375|828376|828377|828378|828379|828380|828381|828382|828383|828384|828385|828386|828387|828388|828389|828390|828391|828392|828393|828394|828395|828396|828397|828398|828399|828400|828401|828402|828403|828404|830868|830869|830870|830871|830872|830873|830874|830875|830876|830877|830878|830879|830880|830881|830882|830883|830884|830885|835457|835458|835459|835460|835461|835462|835463|835464|835465|835466|835518|835519|835520|835521|835522|835523|835524|835525|835526|835527|835528|835529|835530|835531|835532|835533|835534|835535|835536|835537|835538|835539|835540|835541|835542|835543|835544|835545|835546|835547|835548|835549|839088|839089|839090|839091|839092|839093|839094|839095|840022|840023|840024|840025|840026|840027|840028|840029|840030|840031|840032|840033|840034|840035|840036|840037|840038|840039|840040|840041|840042|840043|840044|840045|840046|840047|840048|840049|840050|840051|840052|841569|841570|841571|841572|841573|841574|841575|841576|841577|841578|843999|844000|844001|844002|846658|846659|846660|846661|846662|846663|846664|846665|846666|846667|846668|846669|846670|846671|846672|846673|848508|848509|848510|848511|848512|848513|848514|848515|848516|848517|848518|848519|848520|848521|848522|848523|848524|848525|848526|848527|848528|848529|848530|848531|848532|848533|848534|848535|848536|848537|848538|848539|848540|848541|848542|848543|848544|848545|848546|848547|848548|848549|850424|850425|850427|850429|850430|850432|850434|850435|850437|850439|850440|850442|850443|850444|850446|850448|850452|850453|850457|850462|850463|850464|850465|850466|850467|850469|850470|850471|850472|850474|850475|850477|850479|850480|850481|850487|850488|850489|850490|850493|850494|850495|850497|850499|850500|850504|850506|850508|850509|850511|850513|850514|850516|850517|850518|850521|850523|850525|850527|850529|850530|850531|850532|850534|850535|850539|850541|850542|850545|850546|850547|850556|850557|850560|850562|850563|850565|850566|850567|850568|850569|850570|850572|850573|850575|850576|850577|850579|850580|850581|850582|850583|850584|850589|850596|850597|850602|850603|850606|850608|850609|850610|850611|850613|850614|850803|850846|850848|850952|850954|851061|851063|851065|851091|851101|851105|851109|851344|851346|851348|851350|851511|851568|851570|851718|851921|852003|852160|852381|852384|852387|852390|852476|852482|852484|852641|852911|853001|853002|859043|860674|881368|904067|917732|917733|922076|922077|922078|922338|922339|922340|922341|922342|922343|922344|922345|922346|922347|922348|922349|922350|922351|922352|922353|922354|922355|922356|922357|922358|922359|922360|922361|922362|922363|922364|922365|922366|922367|922368|922369|922370|922371|922372|922373|922374|923274|923275|923276|923277|923278|923279|923280|923281|923282|924083|924084|924085|924086|924087|924088|925362|925363|925364|925365|925366|925367|925368|925369|925370|925371|925392|925393|925394|925395|925396|925397|925398|925399|925400|925401|925402|925403|926397|926398|926399|926660|926661|926662|926663|926664|926665|926666|926667|927109|927110|927111|927112|927113|927114|927115|927857|927858|927859|927860|928655|928656|928657|929237|929238|929239|929240|929241|929242|929243|929244|929245|929246|929247|929248|929249|929250|929251|929252|929253|930553|930554|930555|930914|930915|930916|930917|930918|930919|930920|930921|930922|930923|930924|930925|930926|930927|930928|930929|930930|930931|930932|930933|930934|930935|930936|930937|930938|930939|930940|930941|930942|932026|932027|932028|932029|932030|932031|932032|932033|932034|932035|932921|932922|932923|932924|932925|932926|932927|932928|934534|934535|934536|934537|934553|934554|934555|934556|934557|934558|934559|934560|934561|934562|935821|935822|935823|935824|936150|936151|936152|936153|936154|936155|936156|936157|936158|936159|936160|936161|936162|936163|936164|936165|936166|936167|936168|936169|936646|936647|936648|936649|936650|938374|938375|938376|938377|938378|939020|939021|939022|939023|939024|939025|939026|939027|939028|939029|939030|939031|939032|939033|939034|939035|939036|939037|940005|940130|940131|940451|940511|940512|940663|940664|940759|940924|941995|941996|942331|942332|942333|942334|942335|942336|942337|942338|942339|942340|942341|942342|942343|942344|942345|942346|942347|942348|942349|942350|942351|942352|942353|942354|942355|942356|942357|942358|942359|942360|942361|942362|942363|942364|942365|943633|943634|943635|943636|943637|943638|943639|943640|943641|943642|943643|943644|944633|944634|944635|946348|946349|946350|946351|946352|946353|946354|946355|946385|946386|946387|946388|946389|946390|946391|946392|946393|946394|947705|948066|948067|948068|948069|948070|948071|948072|948073|948074|948075|948076|948077|948078|948079|948080|948081|948082|948083|948594|948595|948596|948597|948598|948599|949438|949439|949440|950446|950447|950448|950449|950450|950451|950452|950453|951143|951144|951145|951146|951147|951148|951149|951150|951151|952441|952753|952754|952755|952756|952757|952758|952759|952760|952761|952762|952763|952764|953551|953552|953553|953554|953555|954177|954178|955678|955679|955680|955681|955682|955695|955696|955697|955698|955699|955700|956700|956701|956898|956899|957241|957807|958426|958427|958428|958429|958430|958431|958432|958865|958866|958867|958868|958869|958870|959588|959589|959590|959591|959702|959909|960046|960094|960257|960671|960672|960905|960942|960943|961493|961494", + "text": "Infantile epileptic dyskinetic encephalopathy" + }, + { + "baseId": "21769|168753|189041|195318|196242|202274|202282|202290|202297|202301|202306|202308|202311|202328|202332|259912|264301|264306|264460|369748|370220|372128|407533|407542|421588|444353|481837|495398|511783|536347|536759|961612|972835|972836|972849|972850|972945|972946|972947|972948|972949|972950|972951|972952|972953", + "text": "Infantile epilepsy syndrome" + }, + { + "baseId": "21771", + "text": "Glycerol release during exercise, defective" + }, + { + "baseId": "21772|21773|21774|21775|21776|21777|21778|21779|21780|21781|21782|21783|21784|335218|335220|335222|335228|335232|335240|335241|335243|335245|335250|335253|335256|335263|335271|335272|335273|345043|345044|345048|345049|345053|345056|345058|345060|345062|345066|345068|345075|345078|345086|345089|345091|345096|349857|349860|349861|349864|349865|349868|349870|349871|349872|349873|349879|349880|350872|350873|350876|350877|350880|350881|350884|350885|350888|350889|350892|350893|350896|350898|350899|410746|410747|446218|446219|470333|470335|470879|533486|533535|533540|533541|533542|533552|534058|575085|575086|575087|614473|648611|648612|648613|648614|648615|648616|648617|648620|648621|648623|648624|648626|648627|648628|648629|648630|653210|728599|742348|757446|757448|757452|760880|773069|788936|791978|800172|848287|848289|885982|885983|885984|885985|885986|885987|885988|885989|885990|885991|885992|885993|885994|885995|885996|885997|885998|885999|886000|886001|886002|886003|886004|886005|886006|886007|886008|886009|887450|887451|887452|887453", + "text": "Immunodeficiency-centromeric instability-facial anomalies syndrome 1" + }, + { + "baseId": "21773|243960|244090|609141|609142|672325|672326|672327|672328|672329|672330|672331|672332|729636|794150|794151|794152|794153|794154|798977|857360|980824|980825|980826|980827|980828|984051|984054|984055|984056|984058|984059|984060|984061", + "text": "Non-obstructive azoospermia" + }, + { + "baseId": "21785|79449", + "text": "Epileptic encephalopathy Lennox-Gastaut type" + }, + { + "baseId": "21786|513183|919845|965236", + "text": "Transposition of the great arteries, dextro-looped 3" + }, + { + "baseId": "21786|76323|513182", + "text": "Bilateral right-sidedness sequence" + }, + { + "baseId": "21786|141158|181174|213449|222804|468595|469512|469947|469948|469951|469952|469955|469964|469965|470559|470562|470566|470567|513183|532788|532791|532796|532798|532862|532864|532866|532868|533229|533236|570619|572291|572298|572303|574919|574920|622454|647851|647852|647853|647854|647855|647856|647857|647858|647859|695816|704866|756849|756852|772534|772536|786119|789800|789801|789802|847455|847456|847457|847458|847459|852325|928900|928901|928902|938621|938622|938623|940478|950722|950723|950724|958580|958581", + "text": "Epilepsy, progressive myoclonic 8" + }, + { + "baseId": "21788|70500|213449|222804|256844|256845|256846|259934|273238|280896|281031|290151|290162|290177|290178|290182|290211|290229|290231|290232|290955|290977|291011|291014|294038|294108|294180|294234|294266|294285|294286|294287|294288|294290|294576|294600|294624|315800|403213|403256|403257|403665|403706|468591|469493|469498|469505|470554|470557|532770|532771|532789|532858|532860|574918|647846|647847|647848|647849|647850|684784|847452|847453|847454|861285|950721|958579", + "text": "Heterotaxia" + }, + { + "baseId": "21789|21790|21791|168536|168538|168539|207277|207280|214162|428464|508807|788783", + "text": "Pseudo-TORCH syndrome 1" + }, + { + "baseId": "21793|21794|21795|21796|45341|45342|45343|45345|53747|54170|54171|54172|54173|54174|54175|54176|54177|54179|54180|54181|54182|54183|54185|54188|54190|54191|54192|54193|54195|54196|54197|54198|54199|54200|54202|54204|54205|54206|54207|54210|54214|54215|54216|54217|54218|54219|54220|54222|54223|54224|54227|54229|54230|54231|54232|54234|54235|54236|54237|54238|54239|54240|54241|54243|54244|54246|54247|54248|54250|54251|54252|54253|54254|54255|54256|54257|54259|54882|56311|56820|57054|89863|142394|142395|142396|142397|171150|171151|175721|175723|175724|175726|175728|175729|175730|175731|175861|175862|175863|175864|175866|175867|175869|175870|175871|177957|178655|186418|186421|186423|186425|186427|186430|186431|189909|189910|189911|193556|198383|198384|198385|198387|198389|198393|198398|198401|198402|198403|198406|198410|198414|198415|198416|198417|198418|198420|198421|198423|198425|198427|198430|198431|198433|198434|198436|198437|198438|198441|198442|198443|198445|198446|198448|198450|198451|198452|198454|198455|198458|222251|224448|230310|230312|230313|230314|230316|230317|230319|230320|230322|230323|241546|241547|241548|241549|241550|241551|248509|258751|260506|260508|260516|260528|260537|260539|260540|260542|260543|316928|316929|316934|316944|316945|316953|316954|324526|324551|324552|324554|324555|324556|324557|324563|324566|324569|324573|330718|330719|330727|330732|330743|330749|330750|330753|330767|330778|332116|332118|332121|332124|332128|332132|332141|332147|332167|332171|332175|361874|361875|372261|373007|373019|373215|373227|373229|373240|375083|390140|398511|398960|398962|398965|398966|398970|398978|398980|399126|399132|399138|399446|399448|399450|399453|399682|399684|399693|399694|399695|399698|399704|399705|399707|399709|399711|399712|408639|408642|408644|415332|425971|425973|437672|444980|444983|444988|461581|461784|462130|462133|462135|462137|462138|462139|462141|462386|462399|462402|462417|462424|462425|462430|462896|462901|462912|462913|462930|462931|462934|462937|463033|463039|463041|463043|463044|463048|482018|487338|487340|487343|487360|487365|497223|508872|508873|508874|508875|508876|510397|510398|510404|512854|512855|512931|512932|522209|522217|527107|527109|527114|527116|527117|527121|527124|527152|527154|527156|527369|527385|527386|527392|527393|527396|527400|527406|527612|527613|527616|565010|565428|565429|565434|565436|565438|565443|566286|566812|566814|566816|566823|566824|566827|567635|568001|568004|568005|568008|568010|568014|568020|568021|571154|571793|571809|571815|571818|571820|571822|571823|571826|571829|615047|615049|617900|617901|617904|617909|641079|641080|641081|641082|641083|641084|641085|641086|641087|641088|641089|641090|641091|641092|641093|641094|641095|641096|641097|641098|641099|641100|641101|641102|641103|652241|652381|652486|652645|676917|685379|687982|687983|687984|687985|695563|702297|738619|769098|784374|820494|820495|820496|820497|820498|820499|820500|820501|820502|839860|839861|839862|839863|839864|839865|839866|839867|839868|839869|839870|839871|839872|839873|839874|839875|839876|839877|839878|839879|869727|869728|869729|869730|869731|869732|869733|869734|869735|869736|869737|869738|869739|869740|872231|872232|911929|911931|911938|911947|911989|912006|912029|912034|912047|912060|912067|912076|919427|926611|926612|926613|926614|936095|936096|936097|936098|936099|936100|936101|936102|936103|936104|936105|936106|936107|936108|940264|940265|940266|947991|947992|947993|947994|947995|947996|947997|947998|947999|948000|956857|956858|956859|956860|956861|956862|960039|960040|960041|967197|967198|981791", + "text": "Arrhythmogenic right ventricular dysplasia 9" + }, + { + "baseId": "21796|54194", + "text": "Arrhythmogenic ventricular cardiomyopathy" + }, + { + "baseId": "21796|176520|445196|569611|679869|858256", + "text": "Aborted sudden cardiac death" + }, + { + "baseId": "21797|21800|21801|21803|21804|21805|137503|137504|137506|137508|137511|137514|137516|137518|137521|226807|226808|242039|242040|242041|242042|255162|255166|255169|255170|400075|400082|400083|400084|400086|400090|400238|400242|400244|400250|400251|400563|400565|400570|400574|400578|400894|400896|400901|425300|429646|464178|464182|464183|464190|464191|464195|464202|464723|464726|464732|464734|464739|464740|464744|464745|464982|464987|464990|464994|464996|464997|465000|465001|465002|528731|528736|528742|528747|528761|528763|528804|528806|528809|528811|528816|529118|529125|529126|529130|529146|529147|529267|529268|529269|529272|529281|529282|529285|566996|567005|567007|568715|568717|568722|568730|568731|568736|568737|568738|568739|569202|569331|569332|569334|569337|569338|569346|569349|573222|573224|643127|643128|643129|643130|643131|643132|643133|643134|643135|643136|643137|643138|643139|643140|643141|643142|643143|643144|643145|643146|643147|643148|643149|643150|643151|643152|643153|643154|643155|652558|652728|688403|688404|688406|688410|688413|688414|690097|690098|693665|693666|693668|695638|695639|703149|703150|760157|778241|784900|784901|820690|842248|842249|842250|842251|842252|842253|842254|842255|842256|842257|842258|842259|842260|842261|842262|842263|842264|842265|842266|842267|842268|842269|842270|842271|842272|842273|842274|842275|842276|842277|842278|842279|842280|851607|851609|852035|927301|927302|927303|927304|927305|927306|927307|927308|936901|936902|936903|936904|936905|936906|936907|936908|936909|936910|936911|936912|936913|940326|941084|941085|948859|948860|948861|948862|948863|948864|948865|948866|948867|948868|957401|957402|957403|957404|960107", + "text": "Mosaic variegated aneuploidy syndrome" + }, + { + "baseId": "21797|21799|21800|21801|21802|21803|21804|21805|21806|21807|21808|39235|39648|137506|137516|137518|242041|242043|242044|400081|400088|400254|400579|400886|400891|400896|400898|429646|432425|528761|529267|791441|791442|791443", + "text": "Mosaic variegated aneuploidy syndrome 1" + }, + { + "baseId": "21799|21800|21801|21802|21803|21804|21805|21806|21807|21808|39235|137506|137516|137518|242041|400896|528761|529267", + "text": "Premature chromatid separation trait" + }, + { + "baseId": "21809|21811|21812|21813|21814|135329|135330|172123|172124|172125|172126|172126|194546|194546|194547|195048|249840|249841|249842|249843|249844|263985|268099|268558|271095|273980|280132|280133|280134|280137|280463|280466|280467|280469|280471|280473|280474|280479|280483|280485|280485|280503|281775|281776|281778|281780|281791|281804|281804|281805|281806|281810|281811|281812|281812|281924|281926|281935|281936|281940|281940|357074|489206|490261|491457|541019|541021|541033|541038|541040|541041|541123|541124|541126|541129|541140|541142|541143|541147|541149|541153|541156|541158|541160|541162|541164|541166|541171|541173|541178|541180|541183|549520|549522|589696|619995|696619|718838|823760|864157|864158|864159|864160|864161|864162|864163|864164|864165|864166|864167|864168|864169|864170|864171|864172|864173|864174|864175|864176|865165|865166|918623|962911", + "text": "Peroxisome biogenesis disorder 6A" + }, + { + "baseId": "21809|21811|21813|172123|172124|172126|193749|194546|194547|195048|237148|249842|249843|268099|271095|273428|273980|280137|280483|280503|281791|281806|281810|281811|281812|489037|489206|489447|489532|490252|490261|490945|491457|492175|541021|541123|541160|549520|549522|585867|585868|589696|589789|696619|707248|718835|718838|746350|746353|746356|761802|761803|761804|774478|818947|818948|823757|823758|823759|823760|823761|823762|823763|823764|823765|823766|851291|864168|921941|921942|930418|930419|930420|941862|941863|941864|941865|941866|952354|952355|952356|952357|952358", + "text": "Peroxisome biogenesis disorder, complementation group 7" + }, + { + "baseId": "21809|21810|21811|21811|21813|172122|172123|172123|172124|172124|172125|172125|172126|172126|194546|263985|280485|281791|281804|281812|281940|357074|442785|541019|541021|541033|541038|541040|541041|541123|541124|541126|541129|541140|541142|541143|541147|541149|541153|541156|541158|541160|541162|541164|541166|541171|541173|541178|541180|541183|858729", + "text": "Peroxisome biogenesis disorder 6B" + }, + { + "baseId": "21809|21813|22556|28743|98687|98689|98690|98692|98693|98694|98696|98698|98745|99009|99015|99019|99021|135330|143213|177104|177929|186748|186749|186751|186754|186755|186758|190969|192238|194546|194547|214063|226048|249842|249843|252357|252359|252360|252362|252975|252976|252977|253177|266955|267046|268099|268900|269776|270590|270884|271095|271283|271736|271739|272493|272943|273434|274209|275181|280503|281791|281806|281810|303601|307373|307376|307381|307593|311974|315355|357588|357593|357597|357610|357615|357627|415115|438678|439298|439318|442785|489037|489369|489370|489384|489389|489456|489532|489595|489836|490252|490945|491365|491457|492065|493841|494170|495238|523378|544083|544355|544619|544684|544697|544713|544760|549520|549522|549610|561811|561815|584201|585811|585868|587344|587837|587950|588430|634934|636448|637406|696619|711640|718838|722721|722723|723187|735667|735669|736326|736327|736329|746350|746352|746353|746356|750076|761800|765687|766456|766457|766462|766892|774478|775422|823757|823758|823760|831971|831972|831973|831976|831977|831979|833935|833941|833943|833945|835054|835055|851291|898505|917462|924934|934028|934029|934030|934031|934032|934033|940088|940089|945788|945789|945790|945791|945792|945793|945794|955243|955244|955245|955246|955247|955248|955249|955250|955251|955252|955253|955254|959870|959871|977527|977528|977529|977530|978219|978220|978221|978222|978402|978403|978404|978405|978406|978477|978478", + "text": "Zellweger syndrome" + }, + { + "baseId": "21815|21816|21817|21818|21819|21820|21821|21822|21823|21824|21825|21826|21827|21828|21829|21830|21831|21833|21834|34124|34125|34126|34127|34128|34129|39234|99609|99610|99611|99612|99613|99614|99615|99616|99617|99618|99619|99620|99621|99622|99623|99624|99626|99627|99628|99629|177006|177453|177669|177670|177671|186840|186841|186842|186843|186844|194354|194886|194887|195292|195624|195932|195933|196225|245365|246241|254316|254317|260004|264564|265726|266505|268764|269745|270522|271600|272018|272430|273390|273738|274277|274816|315065|315066|315071|315072|315073|315075|315078|315079|315087|321891|321896|321897|321900|321903|321905|327941|327942|327946|327948|327949|327951|327952|327956|327963|327965|327970|327973|327984|329055|329056|329066|329068|329072|329073|329077|329078|329086|329090|329091|358065|358066|358067|358068|358069|358070|358071|358072|358073|358074|358075|358076|358077|358078|358079|371677|372666|384408|384409|408465|408466|421885|425943|433097|433098|438709|444884|461667|461979|481360|491417|492188|492787|493274|493276|504008|511941|511942|511943|527046|546305|546307|546315|546316|546320|546322|546324|546328|546329|546339|546343|546347|546357|546365|546367|546375|546379|546541|546545|546548|546550|546556|546558|546565|546567|546572|546580|546581|546586|546593|546678|546679|546680|546682|546683|546685|546706|546714|546717|546719|546953|546957|546958|546970|546972|546977|546979|546981|546984|546987|546990|546992|547001|579746|579753|580025|585825|586046|586149|586195|587912|609813|612484|620418|621366|621367|640438|640439|640440|652592|682818|687823|693110|693111|693112|693113|693114|695541|701965|701966|701967|701968|713125|724695|724696|724697|738262|768741|768742|768745|775783|784170|784172|799659|801702|801703|801704|801705|801706|801707|801708|801709|801710|820413|820414|820415|838974|838975|838976|838977|838978|838979|838980|838981|838982|838983|868738|868739|868740|868741|868742|868743|868744|868745|868746|868747|868748|868749|868750|868751|868752|868753|868754|868755|872134|917094|926381|935772|956656|960013|970537|970538|972111|972112|972113|972114|979139|979140|979141|979142|979143|979144|979145|979146|979147|981754|981755", + "text": "Smith-Lemli-Opitz syndrome" + }, + { + "baseId": "21836|21837|55471|55476|55477|55483|55485|55503|55513|55548|55571|106479|168546|168547|168555|168557|174306|174455|194148|195465|195827|229338|229349|229357|267749|269624|275060|275062|363866|415013|433350|495293|496403|496405|537464|589833|589834|589835", + "text": "Febrile seizures, familial, 4" + }, + { + "baseId": "21845|21846|21847|21848|45788|45789|45790|45791|45792|90045|171817|191224|213000|222254|222255|222256|241565|241566|241567|271562|318107|318110|318113|318115|318116|318117|318122|318126|326104|326106|326119|326120|326121|326123|326124|326134|326135|326136|326141|332266|332269|332270|332273|332277|333824|333831|333832|333843|333845|333846|333855|375383|399029|424371|504582|622416|641315|688034|870210|870211|870212|870213|870214|870215|870216|870217|870218|870219|870220|870221|870222|870223|870224|872274|872275|872276|872277|872278|872279|872280|962052|962981", + "text": "Hereditary spastic paraplegia 10" + }, + { + "baseId": "21849|21850|21851|21852|21853|21854|21855|21856|21857|21858|21859|51184|135816|135817|142940|142942|142943|142944|142945|142946|142947|142948|142949|142951|142952|142953|142954|142955|142956|186292|195942|208318|211737|211739|211741|211742|211747|211749|211751|211755|211756|211761|211763|211764|211768|211769|211772|211774|211775|213227|213228|213229|213641|213915|213916|213917|213918|213919|222537|222538|222539|222540|242529|242530|248513|255958|255959|269605|326812|326821|326826|336676|336690|336696|336697|336700|336701|336703|336704|336707|342919|342921|342925|342929|342935|344561|344562|344563|344565|344572|344574|344576|344577|374766|377952|401362|401365|401370|401888|401895|402128|402129|402131|429892|441936|445680|445681|466101|466106|466843|466845|466849|466893|466894|467161|486615|497082|505670|513462|530390|530394|530501|530508|530706|530925|530928|567555|568462|568464|569409|570615|570617|570618|570622|570623|570627|570640|574210|574212|608910|612180|620566|645143|645144|645145|645146|645147|645148|645149|645150|645151|645152|653174|653317|684633|684635|688681|690151|690154|695710|785444|791658|798709|820914|820915|844498|844499|844500|844501|844502|844503|844504|844505|844506|851691|852135|860324|860325|876179|876180|876181|876182|876183|876184|876185|876186|876187|876188|876189|876190|876191|876192|876193|876194|876195|876196|876197|876198|876199|876200|876201|876202|876203|876736|876737|920366|928010|937663|937664|941153|949638|949639|949640|949641|957925|960185|964325|964463|969131|969132|971059", + "text": "Hereditary spastic paraplegia 7" + }, + { + "baseId": "21855|540454|540462", + "text": "Proximal spinal muscular atrophy" + }, + { + "baseId": "21860|49102|49103|49105|49107|49108|142807|142808|142810|142812|142813|174881|179140|179141|179142|179144|179148|221939|240748|309510|309511|309513|309515|314301|314305|314306|314307|314309|314312|314313|314315|314317|320243|320262|320263|320265|320266|320267|320712|320713|320724|320726|320730|320731|320732|320733|320740|320741|320742|320743|371571|487399|865432|865433|865434|865435|865436|865437|865438|865439|865440|865441|865442|865443|865444|868444|962146|964339", + "text": "Noonan syndrome-like disorder with loose anagen hair 1" + }, + { + "baseId": "21860|23313|27621|27625|27626|27627|27628|27634|27635|27636|27641|27643|27645|27651|27652|27908|27909|27910|27911|27912|28363|28364|28365|28366|28367|28368|28369|28370|28372|28373|28374|28375|28376|28379|28380|28381|28382|28383|28384|28387|28388|28390|28391|28846|28849|28850|28941|28996|28997|28998|28999|29003|29004|29011|29012|29013|29014|29015|29016|29017|29018|34194|38760|38762|38763|39126|45369|45370|48708|48802|48803|48804|48805|48807|48808|48812|48816|48817|48818|48820|48822|48830|48832|48833|48834|48836|48837|48840|48843|48850|48857|48858|48859|48860|48861|48863|48866|48869|48870|48874|48876|48877|48882|48885|48888|48889|48890|48891|48892|48893|48894|48895|48896|48897|48898|48901|48907|48910|48911|48912|48916|48918|48921|48922|48924|48931|48934|48935|48942|48946|48952|48953|48954|48955|48956|48957|48958|48959|48960|48962|48963|48965|48966|48968|48969|48972|48973|48974|48976|48977|48978|48979|48981|48982|48983|48985|48986|48988|48989|48990|48991|48992|48993|48995|48998|49000|49003|49004|49005|49006|49007|49008|49009|49011|49012|49014|49016|49017|49019|49020|49022|49023|49024|49025|49027|49028|49029|49031|49032|49033|49036|49037|49040|49043|49045|49046|49052|49053|49054|49055|49056|49058|49062|49064|49067|49069|49070|49071|49072|49073|49074|49075|49076|49077|49078|49079|49080|49081|49082|49083|49084|49088|49090|49091|49092|49093|49096|49097|49098|49104|49105|49107|49110|49111|49113|49116|49118|49119|49121|49124|49125|49126|49130|49132|49134|49135|49136|49139|49140|49141|49142|49143|49148|49150|49151|49152|49153|49154|49156|49157|49158|49162|49166|49167|49168|49169|49171|49172|49176|49178|49183|49184|49185|49186|49192|49196|49198|49199|49202|49203|49204|49207|49209|49215|49218|49224|49226|49228|49230|49231|49232|49234|49235|49239|49240|49242|49248|49249|49251|49252|49256|49257|49260|49263|49272|49278|49281|49282|49283|49286|49288|49294|49295|49296|49297|49299|49301|49302|49303|49304|49309|49310|49312|49313|49314|49316|49317|49883|49885|49886|49887|53742|53753|53756|53757|53758|53759|53764|53765|53766|53769|53770|53774|53775|53779|53781|53782|53790|53796|53797|53798|53800|53955|53987|53988|53992|53993|53994|53996|53999|54000|54001|54282|54285|54286|54295|54296|54364|54365|54367|54368|54369|54370|54375|54376|54378|54471|54472|54510|54511|54512|54515|54517|54518|54520|54524|54527|54529|54530|54531|54533|54534|54535|54541|54545|55387|55391|55392|55393|55395|55397|55400|55402|55404|55405|55407|55408|55703|65596|65599|70451|70452|70455|75096|76574|83949|99984|106799|125840|137459|137550|137552|138851|140235|140236|140366|140368|141763|141764|141858|141859|141861|141862|141864|142241|142546|142807|142811|142812|142813|142928|142929|142931|142939|172137|172138|172330|172331|172332|172472|173525|173530|173667|173668|173743|173883|173884|174040|174042|174043|174046|174176|174180|174882|175064|175065|175067|175068|175069|175345|175346|175395|175398|175539|175540|175541|175716|175718|176000|176028|176031|176032|176033|176143|176144|176171|177213|177413|178881|178882|178911|179017|179019|179022|179023|179029|179032|179035|179038|179043|179046|179049|179051|179052|179053|179054|179094|179102|179140|179141|179142|179144|179149|179150|179151|179154|179156|179160|179161|179164|179166|179420|179443|179446|179454|179457|179458|179460|179789|179790|179818|179820|179825|179829|179831|179915|179916|179917|179923|181507|181511|194908|194939|195648|195668|205685|212149|212566|212919|213138|221364|221939|222205|223774|224260|229010|229012|229015|229019|230599|230602|236790|238770|238771|238772|239094|239095|239987|240748|241061|241062|241063|241064|248492|250738|253694|254209|257127|258290|264097|264100|264106|264113|264307|264459|264577|264603|264667|264670|264875|265075|266828|269358|269675|272068|273294|274362|274364|286291|286297|289332|302003|324737|324740|325446|325477|330590|359384|359385|359444|359445|359479|359482|359520|359643|359799|359986|359995|360062|360063|360078|360103|360219|360220|360426|361724|362825|362860|363073|363393|366393|366912|367161|367166|367171|367173|370855|371273|371284|372859|374265|374586|377687|377711|390770|392654|392656|392693|392819|392821|392824|393286|393296|393363|393495|393710|395440|395821|395830|396086|397154|397712|398069|398071|398080|398083|398416|398440|398501|398512|398514|398518|398831|403729|403730|404885|424904|425523|429179|429364|432423|437668|442511|442512|442513|442514|442515|442516|442517|442518|442519|442520|442521|442522|442523|442524|442525|442528|442529|442530|442531|442532|442533|442534|442535|442536|442537|442538|442539|442540|442541|442542|444914|447067|447107|447126|447145|448398|450892|450901|451011|451017|451196|451219|451230|451825|452141|452147|452149|452154|452255|452257|452258|456113|456726|456991|456994|456998|457437|457442|457444|459887|460130|460615|460916|460917|460919|460920|460922|460950|460951|460955|460958|460964|460966|460973|460979|461252|461274|461276|461290|461618|461622|461631|461731|461737|461741|461744|461746|461748|462420|462423|462928|464426|465048|468821|470250|470924|481136|494957|494959|494960|494967|494977|496277|496336|496489|496963|500027|501861|503114|503898|503901|506831|509558|509561|515053|518215|518220|518222|518226|518227|518329|518331|518339|518800|518856|518858|519053|519055|519061|522338|522592|522598|522603|525196|525485|525961|525968|525981|526027|526029|526037|526105|526110|526113|526124|526127|526444|526451|526459|526461|526466|526467|526475|526476|527064|527291|529402|529579|529581|533045|533051|533110|533115|533117|533121|533539|533550|533554|538420|551761|552488|552492|552515|552522|552523|552526|552540|552552|552639|552648|552652|552668|552866|558066|558091|558093|558095|558460|558462|559331|559333|559335|560633|560635|561180|561186|561383|561533|561543|561545|561546|561558|563581|563583|564135|564459|564467|564474|564485|564488|564490|565389|565536|565546|565552|565553|566172|566174|566338|566487|566496|567073|567078|567080|567082|567674|569559|569565|570376|570378|570380|570803|570804|571258|571274|574978|574979|574980|590777|611993|612015|619941|621717|626659|626660|626661|629994|629995|629996|629997|629998|629999|630000|630001|630002|630877|630878|630879|630880|630881|630882|630883|630884|630885|630886|630887|630888|630889|630890|630891|630892|635792|638738|638739|639800|639801|639802|639803|639804|639805|639806|639807|639808|639809|639810|639811|639812|640639|640640|643475|643476|648136|648137|648138|650816|651035|651584|651992|652113|652174|652267|652408|652619|652622|653050|653578|672277|679127|684236|684287|684819|685282|686211|686322|687714|687716|687881|689062|689718|690000|691159|692162|692945|692946|692948|693145|693722|694426|695494|695823|701609|747951|747952|754631|768257|770292|781541|813143|818439|818440|818441|819317|819318|819827|820444|820726|821256|822576|826468|826469|826470|826471|826472|826473|826474|826475|826476|826477|826478|826479|827450|827451|827452|827453|827454|827455|827456|827457|827458|827459|827460|827461|827462|827463|827464|827465|827466|827467|827468|827469|827470|827471|833217|833218|833219|833220|833221|833222|833223|833224|833225|836646|836647|836648|836649|838066|838067|838068|838069|838070|838071|838072|838073|838074|838075|838076|838077|839322|839323|839324|839325|839326|842602|842603|842604|847718|847719|847720|847721|847722|847723|847724|850723|850861|851019|851824|905997|917229|917325|922765|922766|922767|922768|922769|923027|923028|923029|923030|924713|924714|924715|925749|925750|925751|926146|926147|926148|926149|926467|926468|927398|928974|931403|931404|931405|931406|931407|931408|931737|931738|931739|933717|934963|934964|935415|935416|935417|935418|935419|935420|935421|935422|935920|935921|935922|935923|935924|936078|939893|940206|940244|940736|940737|940871|942918|943298|943299|943300|943301|943302|943303|945488|945489|947341|947342|947343|947344|947789|947790|948980|950799|950800|950801|950802|953091|953092|953322|953323|953324|955990|956419|956748|958644", + "text": "Rasopathy" + }, + { + "baseId": "21860|24486|27625|27626|27626|27627|27628|27628|27629|27633|27635|27645|27908|27909|27910|27911|27912|28363|28364|28365|28366|28367|28368|28368|28369|28369|28370|28371|28371|28372|28373|28374|28375|28379|28382|28383|28388|28941|28996|28996|28997|28999|28999|29003|29004|29004|29008|29014|29016|34194|38760|45368|45369|45370|48708|48807|48821|48843|48845|48857|48858|48907|48922|48924|48935|48937|48940|48948|48950|48952|48954|48955|48956|48957|48958|48959|48960|48963|48965|48968|48969|48970|48972|48973|48976|48977|48982|48983|48983|48984|48986|48987|48988|48990|48992|48993|48995|48996|48998|49000|49001|49002|49003|49005|49006|49019|49020|49021|49022|49023|49024|49025|49026|49027|49028|49028|49029|49029|49032|49036|49039|49040|49043|49056|49062|49064|49069|49070|49071|49073|49074|49075|49076|49077|49078|49080|49083|49087|49088|49107|49113|49118|49119|49121|49126|49130|49132|49135|49139|49142|49143|49148|49149|49150|49152|49153|49154|49166|49169|49172|49176|49186|49193|49198|49235|49251|49283|49296|49298|49309|49313|49884|49886|49887|53753|53770|53771|53772|53774|53776|53780|53781|53782|53792|53798|53799|53800|53801|53971|53985|53987|53988|53996|53997|53998|53999|54282|54285|54293|54294|54363|54364|54510|54511|54512|54515|54518|54525|54528|54529|54540|54546|70449|75093|75096|99984|125840|125844|142545|142930|142938|165581|172330|172332|173667|173750|173884|173887|174043|174043|174175|174175|174178|175344|175345|175394|175539|175540|175541|175711|175714|175716|175718|175855|176031|177413|178344|178345|178346|178347|178348|178349|178350|178351|178352|178353|178354|178355|178356|178357|178358|178359|178360|178636|178911|179034|179051|179055|179102|179145|179156|179446|179449|179456|179459|181505|181506|181507|181508|181509|181510|181511|181512|181513|181514|181515|194939|199919|205688|207000|207001|224553|228269|229012|230307|230599|249186|258290|259750|264081|264131|265075|275943|276113|276131|276144|276173|276174|276287|276288|276371|276414|286250|286253|286271|286286|286288|286291|287026|289310|289328|289337|289342|289349|289674|289678|289679|289683|289702|292323|301998|302001|309875|310013|316045|316054|316684|316688|316694|316695|316697|316700|316701|316702|316706|316707|316713|316714|316716|316719|316720|316721|316725|316726|316728|323126|323128|323301|323302|323303|324159|324166|324167|324168|324169|324181|324182|324186|324191|324195|324199|324206|324208|324210|324211|324217|324220|324221|329407|330198|330205|330208|330209|330210|330211|330214|330219|330228|330231|330232|330245|330251|330256|330259|330260|330264|330268|330274|330605|330607|331599|331605|331606|331607|331617|331618|331620|331623|331624|331627|331629|331631|331632|331633|331635|331642|331657|331660|331661|332754|332756|360023|362860|364005|403729|406985|429463|442518|451196|463275|463796|468963|468964|468971|469932|469937|469940|469944|471085|490865|496759|513319|518329|533122|533126|533206|533211|533214|533225|533226|533227|533228|533652|536637|551682|551705|552492|552506|552566|552580|552682|552852|561533|566487|570923|570929|570935|572608|572610|573231|573233|573234|573235|575006|575007|576166|611992|611993|612010|612014|612015|612026|612027|612030|615263|615264|615265|615266|640152|642478|648251|648252|648253|648254|653973|653976|653978|653979|653980|653981|653982|653985|654285|672276|672277|679440|694475|694477|694478|695833|705168|799666|800975|827468|838559|841525|847721|847853|847854|847855|847856|847857|847858|847859|851823|924714|934963|938777|948853|958690|960924|961495|962888|963208|966979|969620|969621|969622|969625|969626|969627|969628|969629|969630|969631|969632|969633|969634|969635|969636|969637|969638|969639|969640|969641|969642|969643|969644|969645|969646|969647|969648|969649|969650|969651|969652|969653|969654|969655|969657|969658|969659|969660|969661|969662|969663|969664|969665|969666|969667|969668|969670|969671|969672|969673|969674|969675|969676|969677|969678|969679|969680|969681|969682|969683|969684|969685|969686|969687|969689|969690|969691|969692|969693|969694|969695|969696|969697|969698", + "text": "Noonan syndrome" + }, + { + "baseId": "21860", + "text": "Noonan syndrome-like disorder with loose anagen hair" + }, + { + "baseId": "21861|21864|21864|40236|133658|133658|133659|133659|133660|133661|133662|133662|133663|133664|133664|133666|133666|133667|133667|133668|133668|133669|136450|136469|139867|139868|139868|139869|139870|139871|139872|139873|139874|139875|142570|142572|142573|150513|150551|150563|150563|150627|150654|150809|150889|150919|151038|151038|151067|151246|151246|151377|151482|151482|151537|151537|151549|151713|151800|151807|151868|151906|151959|152103|152130|152143|152167|152167|152216|152224|152248|152299|152471|152476|152522|152554|152554|152633|152633|180901|180902|180903|180903|180904|180905|180906|180907|180908|180909|180909|180910|180911|180912|180912|180913|180916|180917|180917|180918|180919|180920|180922|185133|185134|185135|185136|185137|185138|185139|185140|185141|185143|185144|185145|185146|185147|185148|185149|185150|185151|185152|185154|185155|185156|185157|185159|185160|185160|185161|185162|185163|185164|185165|185166|185167|185168|185168|185169|185172|185173|185175|185177|185178|185179|185180|185181|185182|185182|185184|186264|186265|213341|213341|213342|213343|213344|213348|213349|213350|213350|213351|213352|213353|213354|213355|213510|222550|222551|222552|222553|222554|222688|222689|222690|222691|222692|222692|222693|222694|222695|222696|222697|236187|236188|236190|236191|236193|236195|236196|236198|236200|236202|236203|236206|236207|236208|236212|236214|236216|236217|236221|236222|236223|236224|236225|236226|236227|236228|236229|236232|236233|236234|236235|236236|236237|236238|236240|236240|236243|236245|236246|236250|236251|236252|242580|242826|242827|242828|242829|242830|242832|242833|242834|242835|242836|242837|242838|242839|242840|245060|245061|245062|245064|245065|358950|358951|358952|358953|360465|376262|376262|376385|376386|376387|376389|378546|378550|401514|401988|402136|402139|402150|402151|402153|402158|402163|402164|402167|402170|402172|402176|402179|402180|402182|402187|402188|402189|402190|402193|402198|402199|402203|402205|402602|402612|402613|402613|402615|402622|402623|402623|402637|402642|402643|402761|402765|402767|402768|402770|402777|402778|410091|410095|410097|410098|410100|410102|410103|410105|410106|410106|410107|410108|410112|432929|432930|445839|445840|466274|467050|467053|467060|467064|467065|467068|467075|467076|467076|467078|467082|467088|467090|467151|467164|467979|467980|467985|467987|467994|468000|468006|468025|468032|468034|468035|468038|468039|468044|468249|468252|468255|468261|468264|468265|468270|468272|468276|468288|468290|468291|468482|468484|468490|468495|468500|468504|468510|468513|468519|468528|468540|468541|468543|478831|478835|478846|478850|478854|478859|478866|478882|478899|478902|478912|478929|478930|478949|478963|478991|478998|479001|479002|479010|479019|479022|479027|479029|479035|479039|479046|479618|479625|479627|479632|479654|479665|479669|479684|479686|479689|479691|479693|479696|479713|479714|479718|479720|483002|483005|483010|483011|483012|483016|483019|484991|485133|485136|485137|485163|485185|485189|485192|485223|485421|485425|485427|485443|487758|487899|487902|488003|530662|530665|530667|531030|531039|531273|531288|531291|531295|531298|531301|531303|531307|531315|531316|531445|531454|531455|531461|531463|531464|531469|531471|531473|531475|531535|531544|531547|531553|531556|531558|531560|531754|531759|531761|531772|531774|531785|531787|531790|531791|531792|539369|539370|539371|568645|569315|569317|569324|569330|569336|569340|569343|569348|569351|569353|570710|570712|571314|571317|571323|571328|571329|571331|571339|571341|571343|571348|571356|571357|571730|571732|571736|571743|571754|571769|571776|574275|574535|574536|574537|574538|574539|574540|574541|574542|574543|575612|576009|576011|618713|618715|618717|618718|618721|618722|618726|618728|618729|618731|618736|619734|621590|621861|646238|646239|646240|646241|646242|646243|646244|646245|646246|646247|646248|646249|646250|646251|646252|646253|646254|646255|646256|646257|646258|646259|646260|646261|646262|646263|646264|646265|646266|646267|652669|652671|652673|652843|652847|653007|653152|653153|653155|653300|653483|771669|771670|771679|771680|785653|788253|791795|791796|791797|791798|791799|791800|814089|814093|814097|814099|814105|814106|814112|814113|814125|814126|814135|814137|815695|821110|821111|821112|821113|821114|821115|821116|821117|821118|821119|821120|821121|821122|821123|821124|821125|821126|821127|845684|845685|845686|845687|845688|845689|845690|845691|845692|845693|845694|845695|845696|845697|845698|845699|845700|845701|845702|845703|845704|845705|845706|845707|845708|845709|845710|845711|845712|845713|845714|845715|845716|851739|851741|851743|851745|852763|852764|852893|852895|877959|914017|919752|928391|928392|928393|928394|928395|928396|928397|928398|928399|938052|938053|938054|938055|938056|938057|938058|938059|938060|940422|940423|941187|950068|950069|950070|950071|950072|950073|950074|950075|950076|950077|950078|950079|950080|950081|950082|950083|958206|958207|958208|958209|958210|958211|958212", + "text": "Fanconi anemia, complementation group O" + }, + { + "baseId": "21863|21864|21864|40236|40237|133658|133658|133659|133659|133660|133662|133663|133664|133666|133666|133667|133667|133668|133668|136450|136469|139868|139868|139869|139874|142570|142572|142573|150513|150563|150627|150654|150919|151038|151246|151482|151482|151537|151800|151868|152167|152248|152476|152554|152554|152633|180903|180903|180908|180909|180912|180917|180917|185137|185139|185140|185147|185149|185150|185157|185160|185166|185168|185173|185182|186265|213341|213350|213352|213353|222692|236229|236233|236240|242836|242838|358950|358951|358952|358953|376262|376387|378546|402613|402623|410106|410106|418813|467076|479002|485192|485425|487902|539369|539370|539371|877959|962062|964691|970154|971086", + "text": "Breast-ovarian cancer, familial 3" + }, + { + "baseId": "21865|21866|361961", + "text": "46,XY sex reversal, type 5" + }, + { + "baseId": "21867|21868|21869|21870|21871|21872|21873|21874|49800|49801|49802|49803|257118|257120|257121|257122|257124|257125|257126|269520|271078|273929|343596|343598|343599|348886|348887|348888|348892|348894|348895|349840|349841|349842|377459|377467|446129|489138|490564|493096|506734|550639|584444|716437|728175|757014|772687|800134|800135|800136|800137|800138|800139|882012|882013|882014|882015|882016|882017|882018|882019|882020|882021|882022|882023|882024|882025|882026|882027|882028|882029|882030|882031|882032|882033|882034|882035|882036|882037|882886|882887|882888|982183|982184|982185", + "text": "Spondylocostal dysostosis 1, autosomal recessive" + }, + { + "baseId": "21867|49802|513006|626275|971133", + "text": "Leukodystrophy and acquired microcephaly with or without dystonia" + }, + { + "baseId": "21871|620639|620640", + "text": "DLL3-Related Disorders" + }, + { + "baseId": "21875|102652|108186|626217", + "text": "Ectodermal dysplasia, 'pure' hair-nail type" + }, + { + "baseId": "21876|22540|22541|22648|22649|22650|22651|22652|22653|77443|317734|317735|317737|317739|317743|317751|317752|317759|317761|317769|317770|317773|317774|317779|325606|325607|325615|325618|325628|325645|325658|325660|325663|325664|325665|325671|325672|325673|325677|325680|325681|331857|331858|331860|331865|331866|331867|331869|331874|331881|331883|331886|331892|331900|331903|333345|333358|333362|333363|333364|333366|333367|333368|333373|333383|333391|333400|333406|333411|333422|333426|439458|552164|870085|870086|870087|870088|870089|870090|870091|870092|870093|870094|870095|870096|870097|870098|870099|870100|870101", + "text": "Beaded hair" + }, + { + "baseId": "21877|21878|21879", + "text": "Fibrosis of extraocular muscles, congenital, 2" + }, + { + "baseId": "21880|21881|21882|21883|21884|44134|44135|44136|44137|206769|206770|249766|249767|249768|249769|279455|279456|279459|279460|279463|279465|279474|279476|279480|279484|279486|279487|279492|279732|279735|279737|279738|279739|279748|279749|279758|279760|281000|281012|281013|281024|281025|281026|281033|281034|281035|281059|281066|281161|281162|281163|281170|281173|498296|498407|498463|578380|654202|679852|718785|732261|863860|863861|863862|863863|863864|863865|863866|863867|863868|863869|863870|863871|863872|863873|863874|865135|981312", + "text": "Rhizomelic chondrodysplasia punctata type 2" + }, + { + "baseId": "21885|21886|21887|21888|21889|21892|21893|21894|21895|45357|45358|54849|54851|54852|54853|54854|54857|54862|54864|54867|54871|54874|54875|54876|54878|54882|54882|54886|54888|54892|54898|174047|179122|179133|224349|229564|252655|302196|302212|302215|302216|302224|305396|305405|305406|305426|305434|305440|305443|305444|305445|305447|310221|310227|310228|310229|310234|310323|310325|310327|310328|310329|310346|310347|310357|369358|432490|456504|456900|457592|509882|511090|622378|897682|897683|897684|897685|897686|897687|897688|897689|897690|897691|897692|897693|897694|897695|897696|897697|897698|897699|897700", + "text": "Familial hypertrophic cardiomyopathy 6" + }, + { + "baseId": "21885|21891|21892|21893|21895|45357|45358|45359|54851|54852|54853|54857|54858|54859|54861|54862|54864|54865|54866|54867|54868|54869|54870|54871|54874|54875|54876|54877|54878|54879|54880|54881|54882|54882|54883|54886|54887|54889|54890|54891|54892|54894|54895|54898|54903|87691|174048|174049|174051|174052|174053|174182|174186|177380|179111|179116|179120|179124|179129|179134|179135|179136|179137|181278|224348|229561|229564|229567|240006|240007|240008|240010|240011|240012|240013|252651|302201|302204|302207|302210|302214|302217|302218|302225|305395|305441|305443|305444|305446|305448|305449|305452|310209|310230|310322|310359|360891|369063|369070|369358|369637|371031|395502|395719|395728|395880|395890|395892|395895|396204|456500|456501|456504|456897|456900|457130|457132|457134|457592|487213|501965|502008|509882|511089|511090|521882|522489|522496|522498|522501|522717|522724|522727|522730|522733|522737|522805|522808|522810|523150|523155|523157|523159|561412|561419|561742|561755|564175|564178|566596|566597|566602|566603|566617|617362|635933|635934|635935|635936|635937|635938|635939|635940|635941|635942|635943|651596|651674|651713|655790|683864|683865|687004|687005|687006|687007|759526|775369|782824|819767|819768|833365|833366|833367|833368|833369|833370|833371|833372|833373|833374|833375|833376|851634|897698|910831|910880|924766|924767|924768|933787|933788|933789|933790|933791|933792|933793|933794|940874|945532|945533|945534|945535|955099", + "text": "Glycogen storage disease of heart, lethal congenital" + }, + { + "baseId": "21890", + "text": "Wolff-Parkinson-White syndrome, childhood-onset" + }, + { + "baseId": "21896", + "text": "ALDH9A1*2 POLYMORPHISM" + }, + { + "baseId": "21897|21898|139993|139994|239192|239193|251100|251101|251102|251104|290147|290148|290149|290153|290155|290156|290157|290160|290168|290173|290176|290184|290185|290186|290193|290197|290198|290200|290201|290203|290208|290212|290215|290217|290225|290228|290233|290928|290931|290932|290933|290940|290943|290945|290948|290949|290957|290959|290960|290961|290963|290967|290970|290974|290975|290976|290985|290997|290998|290999|291000|291005|291006|291007|291009|291012|291015|291020|291023|294026|294027|294028|294029|294040|294046|294052|294053|294060|294066|294088|294089|294100|294104|294110|294168|294169|294170|294199|294201|294205|294215|294217|294235|294237|294239|294246|294248|294255|294258|294274|294276|294282|294284|294292|294555|294559|294563|294567|294573|294574|294575|294586|294587|294588|294597|294625|294626|294661|294662|294665|294670|294671|294672|294675|294676|294677|294681|294684|294690|294692|294694|294698|393944|452690|536043|536044|559455|561442|561446|631268|631269|631270|683572|763849|819397|827981|851043|888751|888752|888753|888754|888755|888756|888757|888758|888759|888760|888761|888762|888763|888764|888765|888766|888767|888768|888769|888770|888771|888772|888773|888774|888775|888776|888777|888778|888779|888780|888781|888782|888783|888784|888785|888786|888787|888788|888789|888790|888791|888792|888793|888794|888795|888796|888797|888798|888799|888800|888801|888802|888803|888804|888805|888806|888807|888808|888809|888810|888811|888812|888813|888814|888815|888816|888817|888818|888819|888820|888821|888822|888823|888824|888825|888826|888827|888828|888829|888830|888831|888832|888833|888834|888835|888836|891638|923158", + "text": "Heterotaxy, visceral, 4, autosomal" + }, + { + "baseId": "21899|21900|21901|21902|21904|71503|76542|76543|481239|536017|536182|576355|614411|798694|815881", + "text": "Autosomal recessive osteopetrosis 4" + }, + { + "baseId": "21902|21903|71503|432314|614411|857325", + "text": "Autosomal dominant osteopetrosis 2" + }, + { + "baseId": "21911|71095|71146|178740|178742|178744|178745|195679|227404|256857|256860|256861|256864|256865|256867|256868|256869|256870|256871|256872|256873|256874|256875|256878|256879|256880|256882|256883|256885|266609|274359|274817|333154|333158|333161|333167|333168|333170|333178|333184|333186|333189|343255|343256|343261|343265|343267|343271|343274|343277|343280|343281|343291|343294|343299|348596|348601|348603|348604|348605|348612|348614|348618|348619|348620|349673|349675|349676|349677|349680|349682|349684|349685|349689|349691|349694|376402|442195|549351|728133|728134|728136|728137|731272|731273|741813|741816|741820|756935|772603|772613|772617|786153|801193|801251|880314|880315|880316|880317|880318|880319|880320|880321|880322|880323|880324|880325|880326|880327|880328|880329|880330|880331|880332|880333|880334|880335|880336|880337|880338|880339|880340|880341|880342|880343|880344|880345|880346|880347|880348|880349|880350|880351|880352|880353|880730|880731|880732|880733", + "text": "Congenital nephrotic syndrome" + }, + { + "baseId": "21915|21916|21917|21918|187665|193527|253107|253108|305231|305236|305237|305240|305241|305242|305246|309032|309051|309052|309053|309054|314239|314242|314244|314247|314248|314251|314252|314253|314254|314259|314269|314277|314278|369941|700586|736643|751132|834750|834753|834754|899513|899514|899515|899516|899517|899518|899519|899520|899521|899522|899523|899524|899525|899526|899527|899528|899529|899530|899531|899532|899533|899534|900488|900489|900490|900491|900492|903555", + "text": "Cone-rod dystrophy 9" + }, + { + "baseId": "21919|21921|21922|21923|21924|21925|39232|99638|99640|99642|99647|99648|137774|137778|137779|137780|137782|137785|137788|137795|137796|137804|141323|169822|169823|169824|169825|169826|169826|169829|169830|169831|169832|169834|169834|169835|169836|181577|191007|191199|192635|193836|193839|195293|205026|208797|208799|208800|208801|226604|227707|236858|245212|247753|247754|247755|247756|247757|247757|259242|265631|271024|271309|338245|338250|338256|338271|338276|347905|347913|347927|347955|351664|351674|351691|351692|352602|352602|360506|362398|379858|379858|380144|384415|431927|431928|431929|431929|432225|434511|434513|470316|470318|492538|493637|493638|534326|534478|534841|550374|550646|552232|572013|572016|572017|572022|573419|574141|574142|574143|649528|649529|649530|653288|653900|654141|677319|677464|705951|705953|705956|717474|729208|729209|729218|731426|731427|742927|742935|742936|773567|773568|773569|778625|800410|805121|815824|815825|815826|815827|815828|815829|815830|815831|815832|815833|815834|815835|821465|821466|849375|849376|849377|849378|904252|929496|941282|959101|960349|963188|964555|966019|966047|971162|971163|971164|975872|975873|983307", + "text": "Rubinstein-Taybi syndrome 2" + }, + { + "baseId": "21931|21932|21932|21933|21934|21934|21935|21935|21935|21936|21936|21937|21937|21938|21939|21939|21940|21940|21941|21942|21942|21943|21944|21945|21945|21946|21947|21947|21948|21948|21949|21950|21951|21951|21952|21952|21953|21954|21956|21957|50216|53817|138935|138936|138937|138938|151782|165952|165953|171127|183477|183479|183481|207813|215422|215422|234436|234438|234440|234441|240898|241038|241039|241041|241042|241043|241044|241045|241046|241047|241049|241049|241050|241051|241052|241053|264583|318274|318276|324403|371258|398005|398008|398009|398013|398014|398017|398019|398027|398031|398033|398034|398040|398045|398062|398065|398066|398068|398070|398388|398389|398391|398394|398395|398505|398506|398507|408270|408271|413896|420756|425903|432045|432047|432050|432051|460872|460874|460875|460876|460880|460881|460883|460886|460894|461175|461177|461179|461180|461185|461190|461193|461195|461204|461206|461657|461661|461662|461664|461670|461672|461675|461679|461681|475955|475956|475993|475995|476243|476249|476426|476431|476436|476439|476439|525849|525882|525883|525887|525890|525898|525978|526071|526072|526074|526398|526400|526408|526411|537875|537876|564091|564393|564396|564402|564409|564411|564417|564418|564427|564429|565003|565487|565489|565490|565492|565493|565494|565505|565505|566722|567041|567048|567049|569941|570295|570304|589823|609782|639692|639693|639694|639695|639696|639697|639698|639699|639700|639701|639702|639703|639704|639705|639706|639707|639708|639709|639710|639711|639712|639713|652097|652154|652305|652483|684224|768201|768204|810758|810761|810765|820331|820332|820333|820334|820335|820426|837948|837949|837950|837951|837952|837953|837954|837955|837956|837957|837958|837959|837960|851421|852603|867045|868604|926117|926118|926119|926120|926121|926122|926123|926124|935377|935378|935379|935380|935381|940203|947302|947303|947304|947305|947306|956377|956378|956379|959974|960744", + "text": "Paragangliomas 1" + }, + { + "baseId": "21932|21934|21934|21935|21935|21936|21937|21939|21940|21942|21943|21945|21947|21948|21948|21950|21951|21952|21954|21956|21956|21957|22283|27817|27829|27830|27831|38851|50216|53808|53811|53817|138931|138932|138935|138936|138937|138938|151782|152351|152478|165952|165953|171127|172492|181623|181623|181624|181627|181628|183477|183479|183481|207813|215422|221085|232175|234436|234438|234440|234441|238164|238181|238187|238190|241038|241039|241041|241042|241043|241044|241045|241046|241047|241049|241049|241050|241051|241052|241053|249531|264583|277358|277363|277365|277555|277557|278406|278420|278421|278427|278435|318274|318276|324403|358701|371258|390894|390899|390914|390919|398005|398008|398009|398013|398014|398017|398019|398027|398033|398040|398045|398062|398065|398066|398068|398070|398388|398389|398391|398394|398395|398505|398506|398507|408270|408271|420756|425903|432045|432047|432050|432051|447529|460872|460874|460875|460876|460880|460881|460883|460886|460894|461175|461177|461179|461180|461185|461190|461193|461195|461204|461206|461657|461661|461662|461664|461670|461672|461675|461679|461681|472339|475955|475956|475993|475995|476243|476249|476426|476431|476436|476439|525849|525882|525883|525887|525890|525898|525978|526071|526072|526074|526398|526400|526408|526411|564091|564393|564396|564402|564409|564411|564417|564418|564427|564429|565003|565487|565489|565490|565492|565493|565494|565505|565505|566722|567041|567048|567049|569941|570295|570304|609782|639692|639693|639694|639695|639696|639697|639698|639699|639700|639701|639702|639703|639704|639705|639706|639707|639708|639709|639710|639711|639712|639713|652097|652154|652305|652483|684224|768201|768204|810758|810761|810765|820331|820332|820333|820334|820335|820426|837948|837949|837950|837951|837952|837953|837954|837955|837956|837957|837958|837959|837960|851421|852603|865032|867045|868604|926117|926118|926119|926120|926121|926122|926123|926124|935377|935378|935379|935380|935381|940203|947302|947303|947304|947305|947306|956377|956378|956379|959974|960744", + "text": "Carney-Stratakis syndrome" + }, + { + "baseId": "21932|21934|21934|21935|21936|21937|21940|21942|21943|21945|21947|21948|21951|21952|21954|21956|21957|53817|138935|138936|138937|151782|165952|165953|171127|183477|183479|183481|207813|215422|234436|234438|234441|241039|241044|241046|241047|241049|241051|241052|241053|324403|371258|398005|398008|398009|398013|398014|398019|398027|398033|398040|398045|398062|398065|398066|398070|398388|398389|398391|398394|398395|398505|398506|398507|408270|408271|420756|425903|432045|432047|432050|460872|460874|460875|460876|460880|460881|460886|460894|461175|461177|461179|461190|461193|461195|461204|461206|461657|461661|461662|461670|461675|461679|461681|475955|475956|475993|475995|476243|476249|476426|476431|476436|476439|525849|525882|525887|525898|526071|526072|526074|526400|526408|564091|564393|564396|564402|564409|564411|564417|564427|564429|565003|565487|565489|565490|565492|565494|565505|566722|567041|567048|567049|569941|570295|570304|639692|639694|639696|639698|639700|639701|639702|639703|639704|639705|639706|639707|639708|639709|639710|639712|639713|652097|652154|652305|652483|684224|768201|768204|810765|820331|820332|820333|820334|820335|820426|837948|837949|837950|837951|837952|837953|837954|837955|837956|837957|837958|837959|837960|851421|852603", + "text": "Cowden syndrome 3" + }, + { + "baseId": "21935|21943", + "text": "Paragangliomas 1 with sensorineural hearing loss" + }, + { + "baseId": "21935|23781|23781|23782|23782|23783|23783|23784|23784|39088|48183|48184|48184|48185|48185|135720|135721|135721|135722|135722|135723|135724|135725|135726|135727|135728|135729|135730|142792|142793|150956|150956|151115|151129|151481|151538|151538|151589|151589|151590|152315|152315|165952|170202|170202|188049|205718|209317|209318|221617|221617|221618|221618|221619|224306|224306|226816|226816|226817|226817|226818|226818|226820|226821|226821|226822|226822|226823|226823|226824|226824|226825|226825|226826|226826|233448|233449|233452|233453|233454|233454|233456|233457|233458|233461|233462|233463|233464|233464|233464|239514|239796|239797|239798|239799|239799|239800|239801|239802|239803|239804|239805|239805|239806|239806|239807|239808|239809|239810|239811|239812|239813|239814|239815|239816|239817|239817|239818|239819|239820|239820|239821|239822|239823|239824|239825|239826|239827|239828|239829|239830|239830|239831|239832|239833|239835|239836|239837|239838|239839|239840|239841|239842|239843|239843|239844|239845|239846|239847|239848|239848|241049|247305|247306|247306|247307|247307|247308|247308|247309|247309|247310|247310|247311|247311|247312|247313|247314|247314|248488|251937|251940|251942|251943|297296|297296|297298|297301|299304|299305|303496|303497|303497|303503|303504|303688|303695|303695|303696|303703|333219|333220|343309|343311|349699|358787|358787|358789|358793|358794|358794|358794|358795|358797|358799|368147|368428|368432|368620|368622|369831|369833|394857|394870|394876|394877|394879|394884|394887|394889|394889|394892|394893|394897|394900|394903|394906|394910|394917|394918|394919|394923|394924|394925|394926|394926|394938|394939|394942|394984|394987|394988|394989|394994|394995|395002|395004|395011|395018|395022|395029|395035|395036|395037|395037|395039|395040|395045|395046|395047|395048|395056|395067|395069|395074|395078|395088|395097|395102|395106|395107|395116|395157|395159|395160|395162|395164|395166|395181|395181|395183|395185|395191|395198|395198|395200|395203|395208|395218|395232|395234|395236|395241|395257|395261|395262|395272|395273|395276|395279|395281|395291|395291|395303|395307|395310|395315|395462|395462|395463|395476|395478|395483|395484|395488|395494|395496|395503|395504|395506|395509|395510|395510|395513|395515|395517|395522|395524|395525|395527|395527|395531|395533|395538|395550|395554|406737|406739|406740|415003|434601|443782|443783|454876|454877|454894|454895|454899|454905|454909|454910|454915|454917|454918|454919|454920|454928|454931|454932|454934|454935|454938|454945|454948|454955|454967|454969|454974|454979|454980|454987|455031|455036|455038|455044|455045|455048|455053|455055|455057|455061|455064|455065|455071|455072|455076|455077|455080|455082|455091|455095|455097|455099|455102|455117|455118|455120|455125|455127|455128|455129|455133|455138|455139|455147|455152|455154|455156|455165|455493|455506|455508|455513|455515|455516|455517|455519|455520|455526|455531|455533|455535|455537|455540|455543|455544|455548|455549|455549|455550|455552|455555|455556|455560|455564|455565|455566|455575|455577|455582|455583|455598|455601|455611|455614|455726|455730|455732|455734|455735|455741|455744|455753|455760|455763|455765|455768|455768|455770|455784|455786|455786|455790|455792|455793|455795|455805|455806|455815|455817|455824|455830|455832|455842|455846|455847|455855|455859|455867|455869|455870|455871|455874|474336|474349|474354|474368|474370|474373|474374|474376|474377|474378|474379|474379|474381|474382|474383|474385|474386|474386|474387|474389|474390|474391|474392|474394|474395|474401|474403|474406|474408|474410|474418|474421|474432|474456|474458|474464|474480|474486|474490|474491|474499|474504|500872|521100|521102|521105|521108|521112|521115|521123|521124|521127|521130|521132|521140|521149|521150|521158|521170|521356|521358|521360|521363|521364|521369|521369|521370|521376|521379|521381|521384|521389|521392|521395|521399|521400|521402|521412|521414|521418|521423|521428|521432|521436|521480|521487|521500|521503|521509|521510|521513|521516|521523|521525|521527|521528|521533|521651|521654|521663|521665|521671|521677|521679|521684|521686|521701|521705|521716|521718|521720|521726|521728|521732|521734|521736|521741|521743|521749|521751|521753|521759|521761|521769|521772|536309|539255|539256|539259|560291|560293|560295|560297|560299|560301|560303|560305|560307|560309|560311|560313|560412|560414|560416|560418|560420|560422|560424|560426|560428|560430|560432|560434|560436|560438|560440|560442|560444|560446|563090|563092|563094|563103|563105|563107|563109|563113|563117|563118|563121|563125|563125|563128|563129|563131|563133|563138|563146|563149|563149|563150|563153|565075|565076|565078|565083|565084|565088|565090|565091|565101|565105|565106|565107|565110|565114|565121|565505|633848|633849|633850|633851|633852|633853|633854|633855|633856|633857|633858|633859|633860|633861|633862|633863|633864|633865|633866|633867|633868|633869|633870|633871|633872|633873|633874|633875|633876|633877|633878|633879|633880|633881|633882|633883|633884|633885|633886|633887|633888|633889|633890|633891|633892|633893|633894|633895|633896|633897|633898|633899|633900|633901|633902|633903|633904|633905|633906|633907|633908|633909|633910|633911|633912|633913|633914|633915|633916|633917|633918|633919|633920|633921|633922|633923|633924|633925|633926|633927|633928|633929|633930|633931|651337|651343|651425|651431|679335|679825|682219|682219|686738|686739|686740|686741|686743|686744|686745|689795|691844|691845|691846|691847|691849|691850|691851|695290|699057|699058|709864|721426|721426|730355|730356|744236|749458|749460|749461|749462|749463|749464|749465|759470|765082|765088|765089|765092|775065|777455|777549|777549|782270|782271|782273|782274|782276|782278|787324|787438|790549|790550|795689|795691|808581|808584|808585|808589|808593|808600|808603|808607|808610|808613|808614|808617|808623|808623|808633|808634|808635|808640|808647|815348|830773|830774|830775|830776|830777|830778|830779|830780|830781|830782|830783|830784|830785|830786|830787|830788|830789|830790|830791|830792|830793|830794|830795|830796|830797|830798|830799|830799|830800|830801|830802|830803|830804|830805|830806|830807|830808|830809|830810|830811|830812|830813|830814|830815|830816|830817|830818|830819|830820|830821|830822|830823|830824|830825|830826|830827|830828|830829|830830|830831|830832|830833|851030|851032|851284|851286|851288|851976|851980|851982|851984|852202|852203|852204|852209|859422|880358|880359|880360|880361|880362|880363|880364|880365|880366|894085|894085|894086|894087|894088|894089|896089|924027|924028|924029|924030|924031|924032|924033|924034|924035|924036|924037|924038|924039|924040|924041|924042|924043|924044|924045|924046|924047|924048|924049|924050|924051|924052|924053|924054|924055|924056|924057|924058|924059|924060|924061|932880|932881|932882|932883|932884|932885|932886|932887|932888|932889|932890|932891|932892|932893|932894|932895|932896|932897|932898|932899|932900|932901|932902|940001|940002|940003|944585|944586|944587|944588|944589|944590|944591|944592|944593|944594|944595|944596|944597|944598|944599|944600|944601|944602|944603|944604|944605|944606|944607|944608|944609|944610|944611|944612|944613|944614|944615|954151|954152|954153|954154|954155|954156|954157|954158|954159|954160|954161|954162|954163|954164|954165|954166|954167|954168|954169|954170|959764|959765|959766|960567", + "text": "Mitochondrial complex II deficiency" + }, + { + "baseId": "21939|21950|21957|22852|22872|27830|27831|48303|48304|50210|50216|54635|138931|138938|173901|183028|183032|183046|213941|213942|221370|226336|226337|226338|226339|226340|226341|226796|226797|234440|238181|241041|241042|241050|245214|245285|245286|245287|245288|245290|245291|245292|245293|245294|251011|264583|318274|318276|358701|362928|363358|363377|371872|390876|390893|390925|393133|393361|393365|393404|393410|393411|393412|393414|393415|393418|393426|393584|393599|393600|393601|393605|393610|393612|393621|393623|393782|393787|393793|393797|393799|393800|393804|398017|398068|406150|432051|451950|451951|451956|451958|451966|452150|452151|452153|452157|452165|452170|452177|452178|452184|452298|452303|452305|452307|452415|452418|452420|452429|460380|460883|461180|461185|461664|461672|513940|518955|518958|518965|518968|518971|518975|518989|518990|519149|519151|519162|519163|519166|519167|519169|519172|519173|519176|519178|519187|525883|525890|525978|526398|526411|537441|558244|558842|558844|558846|558848|559383|559385|561265|561270|561271|561273|562571|562573|562582|562583|564418|565493|575654|575655|609782|612152|631047|631048|631049|631050|631051|631052|631053|631054|631055|631056|631057|631058|631059|631060|631061|631062|639693|639695|639697|639699|639711|650976|651077|651079|651155|683566|683567|686365|686366|686367|686368|689737|697937|697940|697941|748114|810758|810761|819353|819354|827717|827718|827719|827720|827721|827722|827723|827724|827725|827726|827727|827728|827729|850920|867045|868604|905924|917058|917060|923098|923099|923100|923101|926117|926118|926119|926120|926121|926122|926123|926124|931839|931840|931841|931842|931843|935377|935378|935379|935380|935381|940203|943420|943421|943422|943423|943424|943425|943426|947302|947303|947304|947305|947306|953398|953399|956377|956378|956379|959974|960744|975937|975938|975939", + "text": "Cowden syndrome" + }, + { + "baseId": "21948", + "text": "Carcinoid tumor of intestine" + }, + { + "baseId": "21950", + "text": "Carotid body paraganglioma" + }, + { + "baseId": "21958", + "text": "Lymphoma, somatic" + }, + { + "baseId": "21960|21961|21962|21963|21964|21965|21967|21968|21969|21970|21971|21972|21973|21974|21975|34150|79171|79172|79176|79177|79179|79181|79182|79183|79184|142890|142891|142894|142895|142896|142897|186806|186807|186808|186809|186810|196221|211488|211489|211490|211491|211492|211493|211495|211495|211496|266301|270315|272281|324615|324617|371263|371268|372010|372210|372217|425908|432303|444736|460908|460910|460946|461241|481469|488373|504094|504102|526098|526433|545436|545438|545440|545441|545443|545448|545451|545453|545458|545460|545466|545468|545469|545479|545481|545485|545487|545490|545493|545500|545513|545515|545518|545520|545525|545526|545528|545530|545532|545533|545543|545545|545556|545560|545561|545562|545565|545570|545572|545574|545580|545589|545591|545593|545597|545613|545614|545620|545622|545625|545637|545641|545642|545662|545668|545676|545678|545691|545692|545694|545699|545701|545717|545722|545736|545737|545739|545741|545744|545747|545749|545754|545756|545759|545771|545776|545778|545781|545782|545783|545784|545786|545787|545788|545790|545791|545793|545794|545798|545800|545802|545805|545807|545810|545812|545816|545822|545823|545825|545833|545838|545842|545844|545845|545846|545847|545848|545849|545851|545853|545854|545857|545862|545864|545865|545866|545869|545870|545872|545875|545876|545877|545878|545881|545882|545884|545887|545890|545892|545894|545896|545897|545898|545900|545902|545903|545905|545906|545910|545911|545914|545916|545917|545918|545919|545920|545921|545925|545928|545930|545933|545936|545938|545940|545941|545943|545945|545950|545951|545954|545955|545959|545965|545969|545972|545974|545976|545977|545978|545979|545981|545983|545984|545985|545988|545990|545992|545993|545995|545997|545999|546001|546002|546005|546006|546008|546010|546012|546013|546014|546015|546017|546021|546023|546025|546026|546027|546028|546030|546033|546037|546041|546043|546045|546047|546048|546049|546050|546051|546052|546053|546055|546056|546060|546061|546063|546065|546067|546068|546074|546075|546076|546077|546082|546084|546085|546088|546091|546094|546096|546097|546098|546099|546100|546101|546102|546103|546105|546106|546107|546108|546112|546113|546114|546119|546121|546124|546126|546129|546131|546132|546133|546137|546139|546142|546148|546151|546153|546157|546159|546164|546169|546171|546174|546175|546177|546180|546181|546192|546195|546202|546204|546206|546214|546219|546223|546226|546227|546229|546231|546235|546236|546237|546243|546246|546248|546249|546250|546260|546262|546264|546271|546274|546281|546283|546286|546292|546294|546295|546299|546304|546308|546318|546323|546325|546331|546333|546335|546337|546346|546351|546353|546355|546358|546368|546372|546378|546381|546389|546391|546393|546397|546398|546419|546420|546433|564453|564454|565529|567063|567070|570342|570362|570364|570368|584271|584323|612291|621345|621805|621806|639757|639758|639759|639760|639761|639762|639763|639764|639765|639766|639767|639768|639769|639770|639771|639772|652102|652156|652307|652375|652496|712638|724233|724234|724235|737792|752471|768240|768241|768242|768243|768244|768245|768247|779515|783887|783888|787902|788846|816318|820339|820429|820430|838043|838044|838045|838046|838047|838048|838049|838050|838051|838052|838053|905925|906021|917079|926139|926140|935407|935408|947337|951976|956403|956404|956405|956406|956407|956408|956409|956410|956411|956412|956413|956414|956415|956416|956417|959978|960745|961865|969164|975803|978864|978865|980943", + "text": "Glucose-6-phosphate transport defect" + }, + { + "baseId": "21964|21965|21966|21967|21968|21973|211495|788846|816318", + "text": "Phosphate transport defect" + }, + { + "baseId": "21967|79181|142889|142890|142898|211496|269769|312550|312552|312554|312555|312556|318519|318535|318538|318539|318540|318543|318547|324615|324617|324620|324631|324632|324638|324642|324643|325352|325353|325367|325369|325384|325389|325405|325408|328602|338546|344627|346020|346037|371269|425908|570368|867110|867111|867112|867113|867114|867115|867116|867117|867118|867119|868609", + "text": "Glycogen storage disease, type I" + }, + { + "baseId": "21976", + "text": "ANTERIOR SEGMENT DYSGENESIS 1, MULTIPLE SUBTYPES" + }, + { + "baseId": "21976|21978", + "text": "Cataract 11, posterior polar" + }, + { + "baseId": "21977|459553|459568|459812|564449|638655", + "text": "Cataract 11" + }, + { + "baseId": "21978", + "text": "Cataract 11, posterior polar, with microphthalmia and neurodevelopmental abnormalities" + }, + { + "baseId": "21979|21981|21982|21984|21985|21986|21987|21988|88349|132520|132522|132522|132523|132527|132527|132530|133309|133309|133310|133311|133312|133313|133314|133315|133316|133317|133318|133319|133320|133320|133321|133322|133322|133323|133324|133325|133326|133328|133328|133329|133329|133330|133330|133331|133331|133332|133333|133335|133336|133337|133338|136434|136438|136449|136482|136492|136503|136514|138611|138612|138613|138614|138615|138616|138617|139746|139747|139748|139749|139750|139751|139752|139753|139754|139755|139756|139757|139758|139759|139760|142128|142129|142130|142131|150481|150519|150542|150573|150583|150632|150648|150694|150860|150860|150863|150883|150885|150895|150983|150987|150989|151094|151112|151154|151313|151331|151345|151403|151441|151445|151530|151602|151629|151660|151693|151728|151799|151866|151899|151907|151917|151941|151956|152076|152079|152081|152088|152211|152235|152273|152273|152418|152573|171455|180277|180277|180278|180279|180279|180280|180281|180282|180284|180286|180289|180290|180292|180293|180294|180295|180296|180297|180298|180298|180299|180300|180301|180303|180304|180305|180306|180307|180308|180309|181211|182826|182827|182828|182830|182831|182832|182835|182837|182838|182839|182840|182841|182842|182843|182845|182846|182847|182848|182850|182851|182852|182853|182854|182855|182856|182857|182858|182859|182860|182861|182862|182863|182864|182868|182869|182870|182871|182873|182874|182874|182875|182876|182878|182879|182880|182881|182883|182884|182885|182886|182887|182889|182890|182891|182893|182894|182895|182896|182897|182897|182900|182901|182903|182904|182905|182906|182907|186092|186093|188057|188057|188058|207572|212624|212625|212640|212641|212642|212643|212644|212645|212646|212647|212648|212649|212650|221769|221770|221771|221772|221773|221774|221775|221776|221777|221778|221779|221781|221782|221783|221784|221785|221786|221787|221788|221789|221790|221791|221792|221794|221794|221795|221796|221797|221798|221799|226830|231701|231702|231706|231707|231708|231709|231714|233618|233619|233622|233624|233625|233626|233631|233632|233633|233634|233635|233636|233637|233638|233639|233640|233641|233642|233645|233646|233648|233649|233650|233651|233652|233653|233654|233655|233656|233657|233659|233660|233661|233662|233665|233666|233667|233669|233670|233673|233674|233677|233678|233680|233682|233683|233684|233687|233689|233690|233691|233692|233693|233694|233695|233699|233701|233702|233702|233704|233706|233707|233709|233710|233717|233718|233720|233722|233726|233727|240403|240405|240406|240408|240409|240410|240411|240412|240413|240414|240415|240416|240417|240418|240419|240420|240421|240422|240423|240424|240425|240426|240427|240428|240429|240430|240431|240432|253192|253193|305988|305991|305999|306002|306003|310029|310030|310032|310035|315335|315345|315346|315356|315367|315368|315369|315473|315476|315495|315499|315505|315507|315509|315514|357656|357657|357658|357659|357660|357661|357662|357663|357664|357665|357666|357667|357668|357669|357670|357671|357672|357673|357674|362414|362415|362416|362418|369603|369604|370048|370050|370055|370070|370071|370351|370376|371970|371978|371979|396292|396293|396295|396297|396298|396301|396307|396309|396313|396315|396316|396317|396326|396328|396339|396344|396350|396352|396512|396518|396555|396557|396559|396567|396575|396578|396587|396606|396609|396627|396632|396635|396637|396694|396697|396701|396705|396708|396713|396715|396717|396720|396721|396725|396731|396732|396736|396738|396741|396933|396936|396941|396948|396952|396955|396956|396962|396967|396969|396970|396977|396981|396988|396992|396994|396999|407463|407464|407465|407466|407470|407471|407474|407475|407477|407478|407479|407485|407486|407487|407489|407491|407492|407493|407496|407498|407499|432651|432652|432653|432654|444308|457702|457994|458000|458003|458010|458011|458015|458019|458027|458029|458031|458035|458037|458045|458048|458050|458056|458057|458059|458061|458066|458070|458074|458076|458078|458082|458087|458092|458093|458095|458120|458544|458547|458554|458557|458559|458564|458566|458578|458579|458582|458584|458588|458589|458590|458592|458599|458607|458608|458614|458616|458617|458619|458620|458623|458623|458627|458628|458629|458633|458634|458636|458637|458641|458648|458655|458658|458660|458663|458666|458668|458671|458673|458675|458685|458687|458691|458694|458695|458698|458700|458702|458706|458714|458714|459049|459053|459055|459057|459058|459062|459065|459067|459071|459076|459078|459081|459082|459085|459087|459089|459090|459091|459100|459101|459104|459109|459112|459115|474694|474704|474707|474721|474722|474724|474728|474734|474736|474737|474740|474741|474742|474744|474749|474756|474757|474759|474763|474764|474768|474773|474776|474780|474786|474790|474792|474794|474798|474801|474802|474803|474804|474808|474809|474810|474812|474815|474820|474822|474825|474828|474831|474832|474837|474839|474847|474856|474859|474861|474862|474866|474867|474871|474876|474891|474892|474903|474906|474908|474926|474935|474938|474940|474941|474945|474946|474953|474956|474963|474972|474974|474976|474980|474987|474990|474991|474996|475002|475010|475012|475016|481827|482670|482671|482673|482675|482677|482694|482712|482716|482726|482727|482734|483981|483990|484006|484007|484010|484024|484086|484179|484197|484199|484215|484232|484234|484266|487242|487333|487345|488134|502062|502063|502529|502792|522954|523177|523178|523527|523712|523715|523719|523722|523727|523728|523731|523734|523736|523740|523746|523749|523753|523754|523757|523770|524027|524032|524036|524037|524039|524044|524049|524051|524057|524059|524063|524070|524071|524073|524286|524290|524295|524297|524306|524309|524311|524316|524317|524318|524320|524321|524323|524325|524328|524329|524330|524332|524335|524337|524340|524341|524342|524347|524351|524354|524356|524358|524364|524365|524368|524370|524376|524380|524384|524389|524395|536345|536346|544484|544487|544497|544499|544501|544502|544777|544784|544786|544806|544810|544811|544819|544824|544878|544882|544883|544886|544892|561852|561863|562326|562331|562503|562506|562508|562510|562512|562514|562516|562518|562524|562525|562533|562535|562540|562542|562544|562547|563096|563102|563111|563114|563119|563122|563126|563127|563130|563132|563137|563139|563147|563156|563157|563159|563170|564551|565229|565232|565234|565236|565237|565239|565244|565245|565247|565253|565254|565259|565264|565265|565267|565269|565271|565273|567305|568113|568117|568123|568124|568128|568141|568148|568149|568154|568156|568157|568165|568166|568168|568174|568177|568183|568199|568215|568227|568233|568239|568246|575784|575785|575786|614326|614326|617432|617445|617447|617453|617454|617457|617459|617464|617465|617469|617470|617472|617474|617476|617479|617480|617482|617484|617486|617491|617494|617498|617499|617500|617506|619282|619296|619307|620307|620308|637409|637410|637411|637412|637413|637414|637415|637416|637417|637418|637419|637420|637421|637422|637423|637424|637425|637426|637427|637428|637429|637430|637431|637432|637433|637434|637435|637436|637437|637438|637439|637440|637441|637442|637443|637444|637445|637446|637447|637448|637449|637450|637451|637452|637453|637454|637455|637456|637457|637458|637459|637460|637461|637462|637463|637464|637465|637466|637467|637468|637469|637470|637471|637472|637473|637474|637475|637476|637477|637478|637479|637480|637481|637482|637483|637484|637485|637486|651800|651801|651810|651811|651814|651874|651909|651916|651917|652001|652005|652006|652008|652010|692524|692525|695397|695399|751257|751259|759756|766920|766924|766925|766926|775356|783166|783168|783170|783171|783172|783173|789484|789485|789486|789487|789676|790817|790818|790819|790820|790821|790822|801661|801662|809198|809202|809208|809224|809227|809231|809233|809243|809246|809251|809254|809258|809260|809266|809267|809291|809292|809296|815395|819990|819991|819992|819993|819994|819995|819996|819997|819998|819999|820000|820001|835090|835091|835092|835093|835094|835095|835096|835097|835098|835099|835100|835101|835102|835103|835104|835105|835106|835107|835108|835109|835110|835111|835112|835113|835114|835115|835116|835117|835118|835119|835120|835121|835122|835123|835124|835125|835126|835127|835128|835129|835130|835131|835132|835133|835134|835135|835136|835137|835138|835139|835140|835141|835142|835143|835144|835145|835146|835147|835148|851710|851712|852158|852446|900129|900130|900131|900132|900133|900134|900135|900136|900137|900138|900139|900140|900141|900142|900143|900144|900145|900146|900147|900148|900149|900517|910999|911034|911035|911042|915034|925264|925265|925266|925267|925268|925269|925270|925271|925272|925273|925274|925275|925276|925277|925278|925279|925280|934426|934427|934428|934429|934430|934431|934432|934433|934434|934435|934436|934437|934438|934439|934440|934441|934442|934443|940115|940116|940914|946195|946196|946197|946198|946199|946200|946201|946202|946203|946204|946205|946206|946207|946208|946209|946210|946211|946212|946213|946214|946215|946216|946217|946218|946219|946220|946221|946222|946223|946224|955517|955518|955519|955520|955521|955522|955523|955524|955525|959902|959903|960659|960660|960661|975798|978483|978484", + "text": "Microcephaly, normal intelligence and immunodeficiency" + }, + { + "baseId": "21979|24361|24381|24386|32699|32700|32700|32701|32702|32704|32705|32706|32708|32709|32710|32711|32712|32713|32714|32714|32714|32715|32716|32718|32720|32721|32722|32723|32724|32729|32732|32732|32733|32734|45942|45943|45944|45945|45946|45947|45948|45949|45950|45951|45952|45953|45954|45955|45956|45957|45958|45959|45960|45961|45962|45964|45965|45966|45967|45968|45969|45970|45971|45972|45973|45974|45975|45976|45977|45978|45979|45980|45981|45982|45982|45983|45984|45985|45986|45987|45988|45989|45990|45991|45992|45994|45995|45996|45997|45998|45999|46000|46001|46002|46002|46003|46004|46005|46006|46007|46008|46009|46010|46011|46012|46013|46015|46016|46017|46018|46019|46020|46021|46022|46023|46024|46025|46026|46027|46028|46029|46030|46031|46032|46033|46034|46035|46036|46037|46038|46039|46040|46041|46042|46043|46044|46045|46046|46047|46048|46049|46050|46051|46055|46056|46057|46058|46059|46060|46061|46062|46063|46065|46066|46067|46068|46069|46071|46072|46073|46077|46078|46079|46080|46081|46082|46083|46084|46085|46086|46087|46088|46089|46090|46091|46092|46093|46094|46095|46096|46097|46098|46099|46100|46101|46102|46103|46104|46105|46106|46109|46110|46111|46112|46113|46114|46115|46116|46117|46118|46119|46120|46121|46122|46122|46123|46124|46125|46126|46127|46128|46129|46130|46131|46132|46134|46135|46136|46137|46138|46139|46140|46141|46142|46143|46144|46145|46146|46147|46148|46149|46150|46150|46151|46152|46153|46154|46154|46155|46156|46157|46158|46159|46160|46161|46162|46163|46164|46165|46166|46167|46168|46169|46170|46171|46172|46174|46175|46176|46177|46179|46180|46181|46182|46183|46184|46184|46185|46186|46187|46188|46189|46190|46191|46192|46193|46194|46195|46196|46197|46198|46199|46200|46201|46202|46203|46204|46205|46206|46207|46210|46210|46211|46212|46213|46214|46215|46216|46217|46218|46219|46220|46222|46223|46224|46225|46226|46227|46228|46229|46230|46231|46232|46233|46234|46235|46236|46237|46238|46239|46240|46241|46242|46242|46245|46246|46247|46248|46249|46251|46252|46253|46254|46255|46256|46257|46258|46259|46261|46262|46263|46264|46265|46266|46267|46268|46269|46495|46705|46764|46785|46796|50242|50243|50244|50245|50246|50247|50248|50249|50250|50251|50253|50254|50254|50255|50256|50257|50260|50262|50264|50265|50266|50267|50268|50269|50270|50271|50274|66443|67021|67139|67431|68766|68767|68768|68769|68770|68771|68772|68773|68774|68775|68776|68777|68778|68779|68780|68781|68782|68783|68784|68787|68788|68789|68790|68791|68792|68793|68794|68795|68796|68797|68798|68798|68799|68800|68801|68802|68803|68804|68805|68806|68807|68808|68809|68810|68811|68812|68813|68814|68815|68816|68817|68818|68819|68820|68821|68822|68823|68824|68825|68826|68827|68828|68829|68830|68831|68832|68833|68834|68835|68836|68837|68838|68839|68840|68841|68842|68843|68844|68845|68846|68848|68849|68850|68851|68852|68853|68854|68855|68856|68857|68858|68859|68860|68861|68862|68863|68864|68865|68866|68867|68867|68868|68869|68870|68871|68872|68873|68874|68875|68876|68877|68878|68879|68880|68881|68882|68883|68884|68885|68886|68887|68889|68890|68891|68892|68893|68894|68894|68895|68896|68897|68898|68899|68900|68901|68903|68904|68905|68907|68908|68909|68910|68911|68912|68913|68914|68915|68916|68917|68918|68919|68920|68921|68922|68923|68924|68925|68927|68928|68929|68930|68931|68932|68933|68934|68935|68937|68938|68940|68941|68942|68943|68944|68945|68946|68947|68948|68949|68950|68951|68952|68953|68954|68956|68958|68959|68960|68963|68964|68965|68966|68967|68968|68969|68970|68971|68972|68973|68974|68975|68976|68977|68978|68979|68980|68982|68983|68984|68985|68987|68989|68990|68991|68992|68994|68995|68996|68997|68998|68999|69000|69001|69002|69003|69004|69005|69006|69008|69009|69010|69011|69012|69013|69014|69015|69016|69017|69018|69019|69020|69021|69022|69023|69024|69025|69026|69027|69028|69029|69031|69032|69033|69034|69035|69036|69037|69038|69039|69041|69042|69043|69044|69045|69046|69047|69048|69049|69050|69051|69052|69053|69054|69055|69056|69057|69058|69059|69060|69061|69062|69063|69064|69065|69066|69067|69068|69069|69071|69072|69073|69074|69075|69076|69077|69078|69079|69080|69081|69083|69084|69085|69086|69087|69088|69090|69091|69092|69094|69095|69096|69097|69098|69099|69100|69101|69102|69103|69104|69105|69106|69107|69108|69109|69110|69111|69112|69113|69114|69115|69116|69117|69118|69119|69120|69121|69122|69123|69124|69125|69126|69127|69128|69129|69130|69131|69132|69133|69134|69135|69136|69137|69138|69139|69140|69141|69142|69143|69144|69145|69146|69147|69148|69149|69150|69151|69152|69153|69154|69155|69156|69157|69158|69159|69160|69161|69162|69163|69164|69165|69166|69167|69168|69169|69170|69171|69172|69173|69174|69175|69176|69177|69178|69179|69180|69181|69182|69183|69184|69185|69186|69187|69188|69189|69190|69191|69192|69193|69194|69195|69196|69197|69199|69200|69201|69203|69204|69205|69206|69207|69208|69209|69210|69211|69212|69213|69214|69215|69216|69217|69218|69219|69220|69221|69222|69223|69224|69225|69226|69227|69228|69230|69231|69232|69232|69233|69234|69235|69236|69237|69239|69240|69241|69242|69243|69244|69245|69246|69247|69248|69249|69250|69251|69252|69253|69254|69255|69256|69257|69258|69259|69260|69261|69262|69263|69264|69265|69266|69267|69268|69269|69271|69272|69273|69274|69275|69276|69277|69278|69279|69280|69281|69283|69284|69285|69286|69287|69288|69289|69290|69291|69292|69293|69294|69295|69296|69297|69298|69299|69300|69301|69302|69303|69304|69306|69307|69308|69309|69310|69311|69312|69313|69314|69316|69317|69318|69319|69320|69321|69322|69323|69324|69324|69325|69326|69327|69328|69329|69330|69331|69332|69333|69334|69335|69336|69337|69339|69340|69341|69342|69343|69344|69345|69346|69347|69348|69349|69350|69351|69352|69353|69354|69355|69356|69357|69358|69359|69360|69361|69362|69363|69364|69365|69366|69367|69368|69369|69370|69371|69372|69373|69374|69376|69377|69378|69379|69380|69381|69382|69383|69384|69385|69386|69387|69388|69389|69390|69391|69392|69393|69394|69395|69396|69397|69398|69399|69400|69402|69403|69404|69405|69406|69407|69409|69410|69411|69412|69413|69414|69415|69416|69417|69418|69419|69420|69421|69422|69423|69424|69425|69426|69427|69428|69429|69430|69431|69434|69435|69436|69436|69437|69438|69439|69440|69441|69443|69444|69445|69446|69447|69449|69450|69451|69452|69453|69454|69455|69456|69457|69458|69459|69460|69461|69462|69463|69464|69465|69466|69467|69468|69469|69471|69472|69473|69474|69475|69476|69477|69478|69479|69480|69481|69482|69483|69484|69485|69486|69487|69488|69489|69490|69491|69493|69494|69495|69496|69497|69498|69499|69500|69501|69502|69503|69504|69505|69506|69507|69508|69509|69510|69511|69512|69513|69514|69515|69516|69517|69518|69519|69520|69521|69522|69523|69524|69525|69526|69527|69528|69529|69530|69531|69532|69533|69534|69535|69536|69538|69539|69540|69541|69542|69543|69544|69545|69545|69546|69547|69548|69549|69550|69551|69552|69553|69554|69555|69556|69557|69558|69559|69561|69562|69563|69564|69565|69566|69568|69569|69570|69571|69572|69573|69574|69575|69576|69577|69578|69579|69580|69581|69582|69583|69584|69585|69587|69588|69589|69590|69591|69592|69593|69594|69595|69596|69596|69597|69598|69599|69600|69601|69602|69603|69605|69606|69607|69608|69609|69610|69611|69613|69614|69615|69616|69617|69618|69620|69620|69621|69622|69623|69624|69625|69626|69627|69628|69629|69630|69631|69632|69633|69634|69635|69636|69637|69638|69639|69640|69641|69642|69643|69644|69645|69646|69648|69649|69650|69651|69652|69653|69654|69655|69656|69658|69659|69660|69661|69662|69663|69664|69666|69667|69668|69669|69670|69671|69672|69673|69674|69675|69676|69677|69678|69679|69680|69681|69682|69683|69684|69687|69688|69689|69690|69691|69692|69693|69694|69695|69696|69697|69698|69699|69700|69701|69702|69703|69704|69705|69706|69706|69707|69708|69710|69711|69712|69713|69714|69715|69716|69717|69718|69719|69720|69721|69722|69723|69724|69726|69727|69728|69729|69730|69731|69732|69733|69734|69735|69736|69737|69738|69739|69739|69740|69741|69742|69743|69744|69746|69748|69749|69750|69751|69752|69753|69754|69755|69756|69757|69758|69759|69760|69761|69762|69764|69765|69766|69767|69768|69769|69770|69771|69772|69773|69774|69775|69776|69777|69778|69779|69780|69781|69782|69783|69784|69785|69786|69787|69788|69789|69791|69792|69794|69795|69798|69799|69800|69802|69803|69804|69805|69806|69807|69808|69809|69810|69811|69812|69813|69814|69815|69816|69818|69820|69821|69822|69823|69824|69826|69827|69828|69829|69830|69831|69832|69833|69834|69835|69836|69837|69838|69839|69840|69841|69843|69844|69845|69846|69847|69849|69850|69851|69853|69854|69855|69856|69858|69859|69860|69861|69862|69864|69865|69866|69867|69868|69869|69870|69871|69872|69873|69875|69876|69877|69878|69880|69880|69880|69881|69882|69883|69884|69885|69886|69887|69888|69888|69889|69890|69891|69892|69893|69894|69895|69896|69897|69898|69899|69900|69901|69902|69903|69904|69905|69906|69907|69908|69909|69910|69911|69912|69913|69914|69915|69916|69917|69918|69919|69920|69921|69922|69923|69923|69924|69925|69926|69927|69928|69929|69930|69931|69932|69933|69934|69935|69936|69937|69938|69939|69941|69942|69943|69945|69946|69947|69948|69949|69950|69951|69952|69954|69955|69957|69958|69959|69960|69961|69962|69963|69964|69965|69966|69967|69968|69969|69970|69971|69972|69973|69974|69975|69976|69977|69978|69979|69980|69981|69982|69983|69984|69985|69986|69987|69988|69989|69990|69991|69992|69993|69994|69995|69996|69997|69998|70000|70001|70004|70005|70006|70007|70008|70008|70009|70010|70011|70012|70013|70014|70015|70016|70017|70018|70019|70020|70021|70022|70023|70024|70025|70026|70027|70028|70029|70030|70031|70032|70033|70034|70035|70036|70037|70037|70038|70039|70040|70041|70042|70043|70044|70045|70046|70047|70048|70049|70050|70051|70053|70054|70055|70056|70057|70058|70059|70060|70061|70062|70063|70064|70065|70066|70067|70068|70069|70070|70071|70072|70073|70074|70075|70076|70077|70078|70079|70080|70081|70082|70083|70084|70085|70086|70087|70088|70089|70090|70091|70092|70093|70094|70095|70096|70097|70098|70099|70100|70101|70102|70103|70104|70105|70106|70107|70108|70109|70110|70111|70112|70113|70114|70115|70116|70117|70118|70118|70118|70119|70120|70121|70122|70123|70124|70125|70126|70127|70128|70129|70130|70131|70132|70133|70134|70135|70136|70137|70138|70139|70140|70141|70142|70143|70144|70145|70146|70147|70147|70148|70149|70150|70151|70152|70153|70154|70155|70156|70157|70159|70161|70163|70164|70165|70166|70167|70168|70169|70170|70172|70173|70174|70175|70177|70178|70179|70180|70181|70182|70183|70184|70185|70186|70187|70188|70189|70190|70191|70192|70193|70194|70195|70197|70199|70200|70201|70202|70203|70204|70205|70206|70207|70208|70209|70210|70211|70212|70213|70214|70215|70216|70217|70218|70219|70220|70221|70222|70223|70224|70225|70226|70227|70228|70229|70230|70231|70232|70233|70234|70235|70236|70237|70238|70239|70240|70241|70242|70243|70244|70245|70246|70247|70247|70248|70249|70250|70251|70252|70253|70254|70255|70256|70257|70258|70259|70260|70261|70263|70264|70265|70266|70268|70269|70270|70271|70272|70273|70274|70275|70276|70277|70278|70279|70280|70281|70282|70283|70285|70286|70287|70288|70289|70290|70291|70292|70293|70294|70295|70296|70297|70298|70299|70300|70301|70302|70303|70304|70305|70306|70307|70308|70309|70310|70312|70313|70315|70316|70318|70319|70320|70322|70323|70324|70326|70329|70330|70332|70333|70334|70335|70336|70337|70338|70339|70340|70341|70342|70343|70344|70345|70346|70347|70348|70349|70350|70351|70353|70354|70355|70356|70357|70358|70360|70363|70364|70365|70369|70372|70373|70374|70375|70376|70377|70380|70381|70382|70383|70384|70385|70386|70387|70388|70389|70390|70391|70392|70393|70394|70396|70397|70398|70399|70400|70402|70403|70404|70405|70406|70406|70407|70408|70409|70410|70411|70412|70413|70414|70416|70417|70418|70419|70420|70421|70422|70423|70424|70425|70426|70427|70428|70429|70430|70431|70432|70433|70434|70435|70436|70437|70438|70439|70440|70441|70442|70443|70444|94598|94599|94602|94602|94604|94606|94607|94609|94610|94612|97015|97016|97017|97018|97019|97020|97021|97022|97023|97024|97025|97026|97027|97028|97029|97030|97031|97032|97033|97034|97035|97036|97037|97038|97039|97040|97041|97042|97043|97044|97045|97046|97047|97048|97049|97050|97051|97052|97053|97054|97055|97057|97058|97059|97060|97061|97062|97063|97064|97065|97066|97067|97068|97069|97070|97071|97072|97073|97074|97075|97076|97077|97078|97079|97080|97081|97082|97083|97084|97086|97087|97088|97089|97091|97092|97093|97094|97095|97096|97097|97097|97098|97099|97100|97101|97102|97103|97104|97105|97106|97107|97108|97109|97110|97111|97112|97113|97114|97115|97116|97117|97118|97119|97120|97121|97122|97123|97124|97125|97126|97127|97128|97129|97130|97131|97132|97133|97134|97135|97136|97137|97138|97139|97140|97141|97142|97143|97144|97145|97146|97183|97184|97185|97186|97187|97188|97189|97190|97191|97192|97193|97194|97195|97196|97197|97198|97199|97200|97201|97202|97203|97204|97205|102767|102794|102795|102796|102797|102798|102799|102800|102801|102802|102803|102805|102806|102807|102808|102810|102811|102812|102813|102814|102815|102816|102817|102818|102819|102820|102821|102822|102823|102824|102825|102826|102827|102828|102830|102831|102832|102833|102834|102836|102837|102838|102839|102841|102843|102844|102845|102846|102847|102849|102850|102851|102852|102853|102854|102855|102856|102857|102858|102860|102871|102872|102873|102874|102875|102876|130989|130990|130991|130992|130993|130994|130995|130996|130997|130998|130999|131000|131001|131002|131003|131004|131005|131006|131008|131009|131010|131011|131012|131015|131016|131018|131019|131022|131023|131024|131026|131029|131030|131033|131035|131037|131038|131039|131041|131042|131044|131045|131046|131049|131050|131051|131053|131054|131055|131056|131057|131058|131059|131061|131062|131063|131064|131066|131070|131072|131073|131074|131076|131077|131079|131080|131084|131085|131086|131088|131090|131091|131092|131092|131093|131094|131095|131097|131098|131100|131101|131103|131104|131105|131106|131107|131108|131109|131113|131117|131119|131127|131128|131131|131132|131133|131135|131139|131141|131145|131146|131147|131148|131150|131151|131152|131153|131154|131155|131156|131158|131160|131162|131163|131167|131168|131169|131170|131172|131173|131174|131175|131177|131180|131182|131184|131187|131188|131189|131191|131193|131195|131196|131197|131198|131199|131201|131202|131203|131204|131205|131206|131207|131208|131209|131210|131211|131212|131213|131214|131215|131216|131217|131218|131219|131220|131221|131223|131224|131227|131229|131230|131233|131235|131236|131238|131239|131241|131244|131245|131246|131247|131248|131250|131251|131252|131253|131255|131256|131258|131259|131260|131261|131262|131263|131264|131265|131266|131267|131268|131269|131270|131271|131275|131276|131277|131278|131279|131280|131281|131282|131283|131284|131286|131287|131288|131289|131290|131293|131294|131297|131298|131299|131301|131303|131305|131306|131310|131312|131314|131315|131316|131317|131319|131320|131321|131324|131326|131327|131329|131331|131332|131336|131337|131338|131339|131341|131342|131344|131345|131347|131348|131349|131350|131351|131353|131354|131355|131356|131358|131360|131362|131363|131364|131365|131366|131368|131369|131370|131371|131375|131377|131380|131381|131382|131383|131384|131385|131386|131388|131389|131390|131391|131392|131393|131394|131394|131395|131396|131397|131398|131399|131400|131401|131402|131403|131404|131405|131407|131408|131409|131410|131411|131412|131413|131415|131417|131418|131419|131420|131421|131422|131423|131425|131427|131429|131430|131432|131433|131434|131435|131436|131437|131438|131439|131440|131441|131443|131444|131445|131446|131448|131450|131452|131453|131456|131457|131458|132628|132629|132630|136452|136525|136526|137460|139791|139792|139794|139795|139796|139797|139798|139799|139800|139801|139803|139804|139805|140240|140241|140242|140243|140244|140245|140246|140247|140248|140249|140250|140251|140252|140253|140254|140254|140255|150134|150707|150712|150785|150790|150791|150805|150807|150908|150974|150997|151000|151017|151071|151172|151179|151181|151223|151250|151372|151455|151510|151518|151518|151674|151716|151718|151742|151823|151836|151970|152011|152026|152048|152109|152138|152325|152342|152353|152356|152380|152407|152430|152490|152548|152550|152569|152579|152652|152664|152702|152710|152719|165981|165982|165983|165984|165985|165986|165987|165988|165989|165990|165991|165992|165993|165995|165996|166251|166252|166253|172180|178861|178862|180811|180812|180813|180814|180815|180816|180817|180818|180819|180820|180821|180822|180823|180824|180825|180830|180839|180840|180842|180843|180845|180846|180847|180848|180849|180851|180853|180857|180861|180866|180868|180870|180871|180873|180878|180880|180880|180883|180884|180888|180890|180891|180892|180893|180894|180895|180896|181313|181314|181315|181316|181317|184861|184862|184863|184864|184866|184867|184868|184869|184870|184871|184872|184873|184874|184875|184876|184877|184878|184879|184880|184881|184882|184883|184884|184885|184886|184887|184888|184889|184890|184890|184891|184892|184893|184894|184895|184896|184899|184900|184902|184904|184906|184907|184908|184909|184913|184914|184917|184918|184919|184922|184923|184924|184926|184928|184930|184931|184932|184933|184936|184938|184939|184941|184942|184943|184948|184953|184954|184955|184956|184957|184958|184960|184961|184962|184963|184964|184965|184967|184969|184972|184973|184975|184976|184979|184980|184982|184985|184987|184988|184989|184990|184992|184995|184996|184997|184998|184999|185001|185002|185003|185004|185007|185008|185010|185012|185015|185018|185019|185020|185021|185023|185024|185025|185028|185030|185031|185033|185037|185038|185039|185041|185043|185044|185045|185046|185047|185049|185050|185051|185052|185052|185053|185054|185056|185059|185060|185061|185062|185063|185064|185065|185066|185067|185068|185071|185072|185073|185074|185075|185076|185078|185081|185082|185085|185086|185088|185089|185090|185092|185093|185096|185097|185099|185101|185103|185104|185105|185106|185109|185110|185111|185114|185115|185116|185119|185120|185121|185122|185123|185125|185126|185127|185128|185129|185130|185131|185131|185132|186238|186239|186257|186260|186261|186535|186536|186537|186538|186539|186540|186541|186542|186545|186546|186548|186549|186550|186551|186980|190858|190859|191244|191406|195361|205705|206177|206178|206179|206180|206181|206182|206183|206184|206185|206186|206187|206188|206189|206190|206191|206192|206193|206194|206195|206196|206197|206198|206199|206200|206201|206202|206203|206204|206205|206206|206207|206208|206209|206210|206211|206212|206213|206214|206215|206216|206217|206218|206219|206220|206221|206222|206223|206224|206225|206226|206227|206228|206229|206230|206231|206232|206233|206234|206235|206236|206237|206238|206239|206240|206241|206242|206243|206244|206245|206246|206247|206248|206249|206250|206251|206252|206253|206254|206255|206256|206257|206258|206259|206260|206261|206262|206263|206264|206265|206266|206267|206268|206269|206270|206271|206272|206273|206274|206275|206276|206277|206278|206279|206280|206281|206282|206283|206284|206285|206286|206287|206288|206289|206290|206291|206292|206293|206294|206295|206296|206297|206298|206299|206300|206301|206302|206303|206304|206305|206306|206307|206308|206309|206310|206311|206312|206313|206314|206315|206316|206317|206318|206319|206320|206321|206322|206323|206324|206325|206326|206327|206328|206329|206330|206331|206332|206333|206334|206335|206336|206337|206338|206339|206340|206341|206342|206343|206344|206345|206346|206347|206348|206349|206350|206351|206352|206353|206354|206355|206356|206357|206358|206359|206360|206361|206362|206363|206364|206365|206366|206367|206368|206369|206370|206371|206372|206373|206374|206375|206376|206377|206378|206379|206380|206381|206382|206383|206384|206385|206386|206387|206388|206389|206390|206391|206392|206393|206394|206395|206396|206397|206398|206399|206400|206402|206403|206404|206406|206407|206408|206409|206410|206411|206412|206413|206414|206415|206416|206417|206418|206419|206420|206421|206422|206423|206424|206425|206426|206428|206429|206430|206431|206432|206433|206434|206435|206436|206437|206438|206439|206440|206441|206442|206443|206444|206445|206446|206447|206448|206449|206450|206451|206452|206453|206454|206455|206456|206457|206458|206459|206460|206461|206462|206463|206464|206465|206466|206467|206468|206469|206470|206471|206472|206473|206474|206475|206476|206477|206478|206479|206480|206481|206482|206483|206484|206485|206486|206487|206488|206489|206490|206491|206492|206493|206494|206495|206496|206497|206498|206499|206500|206501|206502|206503|206504|206505|206506|206507|206508|206509|206510|206511|206512|206513|206514|206515|206516|206517|206518|206519|206520|206521|206522|206523|206524|206525|206526|206527|206528|206529|206530|206531|206532|206533|206534|206535|206536|206537|206538|206539|206540|206541|206542|206543|206544|206545|206546|206547|206548|206549|206550|206551|206552|206553|206554|206555|213234|213235|213237|213239|213303|213304|213305|213306|213307|213311|213312|213316|213318|213320|213321|213323|213325|213327|213328|213331|213332|213334|213335|213336|213337|213339|213340|222547|222644|222645|222646|222647|222648|222650|222651|222652|222653|222655|222657|222658|222661|222662|222665|222666|222668|222669|222670|222672|222674|222676|222678|222681|222683|222684|224600|226193|226195|226198|226200|226202|226206|226207|226208|226209|226210|226211|226212|226352|226353|226364|226810|227390|227557|227558|227559|227560|227561|227562|227563|227564|227565|227566|227567|227568|227569|227570|227571|227577|235923|235924|235925|235926|235927|235928|235929|235930|235931|235932|235933|235934|235935|235936|235937|235938|235939|235940|235941|235942|235943|235944|235945|235946|235947|235948|235949|235950|235951|235952|235954|235955|235958|235959|235960|235964|235966|235972|235974|235976|235980|235981|235985|235987|235991|235996|235997|235998|236000|236001|236005|236006|236007|236013|236015|236019|236020|236021|236022|236024|236026|236030|236038|236043|236045|236050|236053|236054|236055|236056|236057|236058|236059|236061|236062|236063|236064|236065|236066|236067|236068|236069|236070|236071|236075|236077|236078|236079|236081|236082|236083|236085|236095|236096|236100|236103|236108|236110|236112|236114|236115|236116|236120|236121|236124|236125|236126|236133|236135|236137|236138|236139|236140|236141|236143|236145|236147|236149|236151|236156|236159|236161|236164|236166|236172|236174|236176|236177|236178|236179|236180|236181|236182|236183|236184|236185|237827|237828|237829|237830|237831|237832|237833|237834|237835|237836|237837|237838|237839|242755|242756|242757|242758|242759|242760|242761|242762|242763|242764|242765|242766|242767|242768|242769|242770|242771|242772|242773|242774|242775|242780|242782|242785|242790|242793|242794|242795|242796|242797|242798|242800|242801|242805|242813|242817|245018|245019|245020|245021|245022|245023|245024|245025|245028|245029|245036|245041|245042|245043|245046|245047|245053|245055|245056|245057|245058|246808|246809|246810|246811|246812|246813|246815|246816|246817|246818|246819|246820|246821|246823|246824|246825|246826|246827|246828|246829|246830|246831|246832|246846|246847|246848|246849|246850|246851|246852|246853|246854|247263|247264|247265|247266|247267|247268|247269|247270|247271|247272|247273|247274|247275|247276|247277|247278|247279|247280|247281|247282|247283|247284|247285|247286|247287|247288|247289|247290|247291|247292|247293|247294|247297|247298|248522|248523|248524|248529|248530|248534|249072|249073|249074|249075|249076|249077|249078|249079|249080|249081|249082|249083|249084|249085|249086|249087|249088|249089|249090|249091|249092|249093|249094|249095|249096|249097|249098|249099|249100|249102|249103|249104|249105|249106|249107|249108|249109|249110|249111|249112|249113|249114|249115|249116|249117|249118|249119|249120|249121|249122|249123|249124|249125|249126|249127|249128|249129|249130|249131|249132|249133|249134|249135|249136|249137|249138|249139|249140|249141|249142|249143|249144|249145|249146|249147|249148|249149|249150|249151|249152|249153|249154|249155|249156|249157|249158|249159|249160|249161|249162|249163|249164|249165|249166|249167|249168|249169|249170|249171|249172|249173|249174|249175|249176|249177|249180|249181|249182|249183|249184|249185|259533|259534|259535|259536|259537|259538|259539|259540|259541|259542|259543|259544|259545|259546|259547|259548|259549|259550|259551|259552|259553|259554|259555|259556|259557|259558|259559|259560|259561|259562|259563|259564|259565|259566|259567|259568|259569|259570|259571|259572|259573|259574|259575|259576|259577|259578|259579|259580|259581|259582|259583|259584|259585|259586|259587|259588|259589|259590|259591|259592|259593|259594|259595|259596|259597|259598|259599|259600|259601|259602|259603|259604|259605|259606|259607|259608|259609|259610|259611|259612|259613|259614|259615|259616|259617|259618|259619|260170|260171|260174|261562|261563|261564|261565|261566|261567|261568|261569|261570|261571|261572|261573|261574|261575|261576|261577|261578|261579|261580|261581|261582|261583|261584|261585|261586|261587|261588|261589|261590|261591|261592|261593|261594|261595|261596|261597|261598|261599|261600|261601|261602|261603|261604|261605|261606|261607|261608|261609|261610|261611|261612|261613|261614|261615|261616|261617|261618|261619|261620|261621|261622|261623|261624|261625|261626|261627|261628|261629|261630|261631|261632|261633|261634|261635|261636|261637|261638|261639|261640|261641|261642|261643|261644|261645|261646|261647|261648|261649|261650|261651|261652|261653|261654|261655|261656|261657|261658|261659|261660|261661|261662|261663|261664|261665|261666|261667|261668|261669|261670|261671|261672|261673|261674|261675|261676|261677|261678|261679|261680|261681|261682|261683|261684|261685|261686|261687|261688|261689|261690|261691|261692|261693|261694|261695|261696|261697|261698|261699|261700|261701|261702|261703|261704|261705|261706|261707|261708|261709|261710|261711|261712|261713|261714|261715|261716|261717|261718|261719|261720|261721|261722|261723|261724|261725|261726|261727|261728|261729|261730|261731|261732|261733|261734|261735|261736|261737|261738|261739|261740|261741|261742|261743|261744|261745|261746|261747|261748|261749|261750|261751|261752|261753|261754|261755|261756|261757|261758|261759|261760|261761|261762|261763|261764|261765|261766|261767|261768|261769|261770|261771|261772|261773|261774|261775|261776|261777|261778|261779|261780|261781|261782|261783|261784|261785|261786|261787|261788|261789|261790|261791|261792|261793|261794|261795|261796|261797|261798|261799|261800|261801|261802|261803|261804|261805|261806|261807|261808|261809|261810|261811|261812|261813|261814|261815|261816|261817|261818|261819|261820|261821|261822|261823|261824|261825|261826|261827|261828|261829|261830|261831|261832|261833|261834|261835|261836|261837|261838|261839|261840|261841|261842|261843|261844|261845|261846|261847|261848|261849|261850|261851|261852|261853|261854|261855|261856|261857|261858|261859|261860|261861|261862|261863|261864|261865|261866|261867|261868|261869|261870|261871|261872|261873|261874|261875|261876|261877|261878|261879|261880|261881|261882|261883|261884|261885|261886|261887|261888|261889|261890|261891|261892|261893|261894|261895|261896|261897|261898|261899|261900|261901|261902|261903|261904|261905|261906|261907|261908|261909|261910|261911|261912|261913|261914|261915|261916|261917|261918|261919|261920|261921|261922|261923|261924|261925|261926|261927|261928|261929|261930|261931|261932|261933|261934|261935|261936|261937|261938|261939|261940|261941|261942|261943|261944|261945|261946|261947|261948|261949|261950|261951|261952|261953|261954|261955|261956|261957|261958|261959|261960|261961|261962|261963|261964|261965|261965|261966|261967|261968|261969|261970|261971|261972|261973|261974|261975|261976|261977|261978|261979|261980|261981|261982|261983|261984|261985|261986|261987|261988|261989|261990|261991|261992|261993|261994|261995|261996|261997|261998|261999|262000|262001|262002|262003|262004|262005|262006|262007|262008|262009|262010|262011|262012|262013|262014|262015|262016|262017|262018|262019|262020|262021|262022|262023|262024|262025|262026|262027|262028|262029|262030|262031|262032|262033|262099|262100|262101|262105|262864|262865|262866|262867|262868|262869|262870|262871|262872|262873|262874|262875|262876|262877|262878|262880|262881|262882|262883|262884|262885|262886|262887|262888|262889|262890|262891|262892|262893|262894|262895|262896|262897|262898|262899|262900|262901|262902|262903|262904|262905|262906|262907|262908|262909|262910|262911|262912|262913|262914|262915|262916|262917|262918|262919|262920|262921|262922|262923|262924|262926|262927|262928|262931|262932|262933|262934|262935|262936|262937|262938|262939|262940|262941|262942|262943|262944|262945|262946|262947|262948|262949|262950|262951|262952|262953|262954|262955|262956|262957|262958|262959|262960|262961|262962|262963|262964|262965|262966|262967|262968|262969|262970|262971|262972|262973|262974|262975|262976|262977|262978|262979|262980|262981|262982|262983|262984|262985|262986|262987|262988|262989|262990|262991|262992|262993|262994|262995|262996|262997|262999|263000|263001|264769|328615|328618|328620|338571|338575|344643|344644|344646|346058|346059|346067|358925|358926|358927|358928|358929|358930|358931|358932|358933|358934|358935|358936|358937|358938|358939|358940|358941|358942|358943|358944|358945|358946|358947|358948|358949|360716|360718|360720|360721|360722|360723|360724|360725|360726|360727|360728|360729|360730|360731|360732|360733|360734|360735|360736|360737|360738|360739|360740|360741|360742|360743|360744|360745|360746|360749|360750|360751|360752|360753|360755|360756|360757|360758|360759|360760|360761|360762|360763|360764|360765|360766|360767|360768|360769|360770|360771|360772|360773|360774|360775|360776|360778|361882|362215|362216|362357|375034|375041|375045|375046|375057|375071|375080|375081|375090|375101|375106|375112|375960|375961|375965|375967|375974|375977|376012|376017|376045|376075|376082|376083|376085|376089|376090|376095|376097|376102|376139|378220|378223|378226|378230|378236|378261|378263|378301|378304|390694|390695|401958|401963|401972|401980|401983|401986|402018|402020|402023|402027|402037|402042|402044|402053|402056|402067|402089|402100|402102|402109|402110|402112|402143|402149|402154|402155|402459|402463|402467|402476|402479|402480|402483|402512|402520|402543|402553|402561|402567|402573|402577|402619|402621|402626|402640|402648|402700|402719|402732|402741|402742|402744|404709|404710|404711|404712|404713|404714|404715|404716|404717|404718|404719|404720|404721|409939|409940|409941|409942|409944|409946|409947|409948|409949|409950|409951|409952|409953|409954|409955|409956|409959|409964|409966|409968|409970|409979|409983|409985|409990|409991|409994|410000|410004|410017|410021|410032|410033|410034|410036|413881|415562|416228|416229|416420|416421|416422|416423|416424|416425|416426|416427|416428|416429|416430|416431|416432|416433|416434|416435|416436|416437|416438|416439|416440|416441|416442|416443|416444|416445|416446|416447|416448|416449|416450|416451|416452|416453|416454|416455|416456|416457|416458|416459|416460|416461|416462|416463|416464|416465|416466|416467|416468|416469|416470|416471|416472|416473|416474|416475|416476|416477|416478|416479|416480|416481|416482|416483|416484|416485|416486|416487|416488|416489|416490|416491|416492|416493|416494|416495|416496|416497|416498|416499|416500|416501|416502|416503|416504|416505|416506|416507|416508|416509|416510|416511|416512|416513|416514|416515|416516|416517|416518|416519|416520|416521|416522|416523|416524|416525|416526|416527|416528|416529|416530|416531|416532|416533|416534|416535|416536|416537|416538|423252|424711|424782|424786|424791|424792|424799|424802|424806|424807|424809|424810|424811|424813|424814|424815|424816|424818|424821|424823|424824|424825|424828|424837|424839|424840|424841|424843|424845|424850|424856|424858|424859|424860|424861|424862|424864|424867|424868|424883|424884|424885|426756|427518|427519|427523|427524|427525|427527|427528|427529|427530|427536|427539|427541|427542|427553|427559|427560|427561|427564|427571|427572|427573|427574|427576|429971|432385|432386|432892|432893|432894|432895|432896|432897|432898|432905|432906|432908|432914|432919|432920|432926|432927|433270|433273|434069|434071|434072|434073|434074|434075|434076|434085|435102|435103|435104|435105|435106|435108|435124|435129|435131|435139|435143|435144|435150|435154|435158|435168|435172|435173|435175|435176|435177|435178|435179|435180|435181|435182|435183|435184|445776|466816|466825|466827|466886|467674|467675|467676|467784|467875|467884|467890|467946|468048|468071|468113|468250|468251|468263|473361|478503|478509|478512|478519|478522|478523|478546|478549|478553|478556|478561|478562|478563|478566|478569|478571|478586|478636|478640|478642|478643|478648|478659|478661|478664|478729|478822|478848|478849|478851|478888|478892|478892|479231|479253|479256|479259|479263|479275|479282|479293|479324|479549|479551|479553|479565|480482|480483|480484|480485|482415|482925|482930|482932|482983|482986|483001|483006|483008|484816|484820|484890|484893|484898|484900|484909|484974|484976|485045|485054|485062|485083|485085|485129|485180|485320|485369|485408|485412|486720|487709|487843|487851|487861|487931|487936|487943|487998|505944|506060|506098|506102|506373|506840|506844|512870|513369|522594|531019|531029|531037|531048|531056|531064|531064|531071|531130|531135|531162|531181|531276|531284|531292|531333|531340|531347|531351|531354|531384|531388|531398|531401|531537|531540|531541|531542|531543|531550|531552|531557|531638|535750|536491|538758|538759|538760|538761|538762|538763|538764|538765|538766|538767|538768|538769|538770|538771|538772|538773|538774|538775|538776|538777|538778|538779|538780|538781|538782|538784|538785|538786|538787|538788|538789|538790|538791|538792|538793|538794|538795|538796|538797|538798|538799|538800|538801|538802|538803|538804|538805|538806|538807|538808|538809|538810|538811|538813|538814|538815|538816|538817|538818|538819|538820|538821|538822|538823|538824|538825|538826|538827|538828|538829|538830|538831|538832|538833|538834|538835|538836|538837|538838|538839|538840|538841|538842|538843|538844|538845|538846|538847|538848|538849|538850|538851|538852|538853|538854|538855|538856|538857|538858|538859|538860|538861|538862|538863|538864|538865|538866|538867|538868|538869|538870|538871|538872|538874|538875|538876|538877|538878|538879|538880|538881|538882|538883|538884|538885|538889|538890|538891|538892|538893|538894|538895|538896|538897|538898|538899|538900|538901|538902|538903|538904|538905|538906|538907|538908|538909|538910|538911|538912|538913|538914|538915|538916|538917|538918|538919|538920|538921|538922|538923|539357|539358|539359|539360|539361|539362|539363|539364|539365|539366|539367|539368|550852|551932|569065|569072|569074|569075|569079|569080|569182|569193|569197|569198|571137|571375|571378|571399|574463|574464|574466|574468|575609|575994|575995|575996|575998|575999|576000|576001|576002|590562|590564|608842|609138|609177|611333|613520|618548|618549|618550|618551|618552|618553|618554|618555|618556|618557|618558|618559|618560|618561|618562|618563|618564|618565|618566|618567|618568|618570|618571|618572|618573|618574|618575|618626|618700|618701|618702|618703|618705|619559|619562|619568|619591|619628|619648|619658|619677|619678|619680|619683|619687|619692|619710|619724|619729|619904|621043|621051|621569|621859|622039|645919|645920|645921|645922|645923|645924|645925|645926|645927|645928|645929|645930|645931|645933|645934|645935|646059|646060|646061|646062|646063|646064|646065|646066|646067|652794|652800|652805|652958|652960|653275|667991|688772|690176|755873|755874|755878|760569|771529|771555|771556|771557|771558|776304|776323|776348|776491|776677|785584|785603|788129|788130|788245|789610|789611|789612|789613|789614|789615|789626|789633|789634|789635|789636|791753|791754|791755|791756|791757|791758|791759|791760|791761|791762|791763|791764|791765|791766|791767|791768|791769|791770|791771|791772|791773|791774|791775|791776|791777|791778|794278|797544|800791|800792|813639|813640|813641|813642|813643|813644|813645|813646|813647|813649|813650|813651|813652|813653|813654|813656|813658|813660|813661|813662|813663|813664|813665|813667|813668|813669|813670|813672|813673|813674|813906|813907|813908|813910|813911|813912|813913|813914|813915|813916|813917|813918|813921|813922|813923|813924|813925|815683|815684|815688|845359|845360|845361|845362|845363|845364|845365|845366|845367|845369|845370|845477|845478|845480|852210|852744|853070|853071|853072|853073|853074|853075|853076|853077|853078|853079|853080|853081|853082|853083|853084|853085|853086|853087|853088|853089|853090|853091|853092|853093|853094|853095|853096|853097|853098|853099|853100|853101|853102|853103|853104|853105|853106|853107|853108|853109|853110|853111|853112|853113|853114|853115|853116|853117|853118|853119|853120|853121|853122|853123|853124|853125|853126|853127|853128|853129|853130|853131|853132|853133|853134|853135|853136|853137|853138|853139|853140|853141|853142|853143|853144|853145|853146|853147|853148|853149|853150|853151|853152|853153|853154|853155|853156|853157|853158|853159|853160|853161|853162|853163|853164|853165|853166|853167|853168|853169|853170|853171|853172|853173|853174|853175|853176|853177|853178|853179|853180|853181|853182|853183|853184|853185|853186|853187|853188|853189|853190|853191|853192|853193|853194|853195|853196|853197|853198|853199|853200|853201|853202|853203|853204|853205|853206|853207|853208|853209|853210|853211|853212|853213|853214|853215|853216|853217|853218|853219|853220|853221|853222|853223|853224|853225|853226|853227|853228|853229|853230|853231|853232|853233|853234|853235|853236|853237|853238|853239|853240|853241|853242|853243|853244|853245|853246|853247|853248|853249|853250|853251|853252|853253|853254|853255|853256|853257|853258|853259|853260|853261|853262|853263|853264|853265|853266|853267|853268|853269|853270|853271|853272|853273|853274|853275|853276|853277|853278|853279|853280|853281|853282|853283|853284|853285|853286|853287|853288|853289|853290|853291|853292|853293|853294|853295|853296|853297|853298|853299|853300|853301|853302|853303|853304|853305|853306|853307|853308|853309|853310|853311|853312|853313|853314|853315|853316|853317|853318|853319|853320|853321|853322|853323|853324|853325|853326|853327|853328|853329|853330|853331|853332|853333|853334|853335|853336|853337|853338|853339|853340|853341|853342|853343|853344|853345|853346|853347|853348|853349|853350|853351|853352|853353|853354|853355|853356|853357|853358|853359|853360|853361|853362|853363|853364|853365|853366|853367|853368|853369|853370|853371|853372|853373|853374|853375|853376|853377|853378|853379|853380|853381|853382|853383|853384|853385|853386|853387|853388|853389|853390|853391|853392|853393|853394|853395|853396|853397|853398|853399|853400|853401|853402|853403|853404|853405|853406|853407|853408|853409|853410|853411|853412|853413|853414|853415|853416|853417|853418|853419|853420|853421|853422|853423|853424|853425|853426|853427|853428|853429|853430|853431|853432|853433|853434|853435|853436|853437|853438|853439|853440|853441|853442|853443|853444|853445|853446|853447|853448|853449|853450|853451|853452|853453|853454|853455|853456|853457|853458|853459|853460|853461|853462|853463|853464|853465|853466|853467|853468|853469|853470|853471|853472|853473|853474|853475|853476|853477|853478|853479|853480|853481|853482|853483|853484|853485|853486|853487|853488|853489|853490|853491|853492|853493|853494|853495|853496|853497|853498|853499|853500|853501|853502|853503|853504|853505|853506|853507|853508|853509|853510|853511|853512|853513|853514|853515|853516|853517|853518|853519|853520|853521|853522|853523|853524|853525|853526|853527|853528|853529|853530|853531|853532|853533|853534|853535|853536|853537|853538|853539|853540|853541|853542|853543|853544|853545|853546|853547|853548|853549|853550|853551|853552|853553|853554|853555|853556|853557|853558|853559|853560|853561|853562|853563|853564|853565|853566|853567|853568|853569|853570|853571|853572|853573|853574|853575|853576|853577|853578|853579|853580|853581|853582|853583|853584|853585|853586|853587|853588|853589|853590|853591|853592|853593|853594|853595|853596|853597|853598|853599|853600|853601|853602|853603|853604|853605|853606|853607|853608|853609|853610|853611|853612|853613|853614|853615|853616|853617|853618|853619|853620|853621|853622|853623|853624|853625|853626|853627|853628|853629|853630|853631|853632|853633|853634|853635|853636|853637|853638|853639|853640|853641|853642|853643|853644|853645|853646|853647|853648|853649|853650|853651|853652|853653|853654|853655|853656|853657|853658|853659|853660|853661|853662|853663|853664|853665|853666|853667|853668|853669|853670|853671|853672|853673|853674|853675|853676|853677|853678|853679|853680|853681|853682|853683|853684|853685|853686|853687|853688|853689|853690|853691|853692|853693|853694|853695|853696|853697|853698|853699|853700|853701|853702|853703|853704|853705|853706|853707|853708|853709|853710|853711|853712|853713|853714|853715|853716|853717|853718|853719|853720|853721|853722|853723|853724|853725|853726|853727|853728|853729|853730|853731|853732|853733|853734|853735|853736|853737|853738|853739|853740|853741|853742|853743|853744|853745|853746|853747|853748|853749|853750|853751|853752|853753|853754|853755|853756|853757|853758|853759|853760|853761|853762|853763|853764|853765|853766|853767|853768|853769|853770|853771|853772|853773|853774|853775|853776|853777|853778|853779|853780|853781|853782|853783|853784|853785|853786|853787|853788|853789|853790|853791|853792|853793|853794|853795|853796|853797|853798|853799|853800|853801|853802|853803|853804|853805|853806|853807|853808|853809|853810|853811|853812|853813|853814|853815|853816|853817|853818|853819|853820|853821|853822|853823|853824|853825|853826|853827|853828|853829|853830|853831|853832|853833|853834|853835|853836|853837|853838|853839|853840|853841|853842|853843|853844|853845|853846|853847|853848|853849|853850|853851|853852|853853|853854|853855|853856|853857|853858|853859|853860|853861|853862|853863|853864|853865|853866|853867|853868|853869|853870|853871|853872|853873|853874|853875|853876|853877|853878|853879|853880|853881|853882|853883|853884|853885|853886|853887|853888|853889|853890|853891|853892|853893|853894|853895|853896|853897|853898|853899|853900|853901|853902|853903|853904|853905|853906|853907|853908|853909|853910|853911|853912|853913|853914|853915|853916|853917|853918|853919|853920|853921|853922|853923|853924|853925|853926|853927|853928|853929|853930|853931|853932|853933|853934|853935|853936|853937|853938|853939|853940|853941|853942|853943|853944|853945|853946|853947|853948|853949|853950|853951|853952|853953|853954|853955|853956|853957|853958|853959|853960|853961|853962|853963|853964|853965|853966|853967|853968|853969|853970|853971|853972|853973|853974|853975|853976|853977|853978|853979|853980|853981|853982|853983|853984|853985|853986|853987|853988|853989|853990|853991|853992|853993|853994|853995|853996|853997|853998|853999|854000|854001|854002|854003|854004|854005|854006|854007|854008|854009|854010|854011|854012|854013|854014|854015|854016|854017|854018|854019|854020|854021|854022|854023|854024|854025|854026|854027|854028|854029|854030|854031|854032|854033|854034|854035|854036|854037|854038|854039|854040|854041|854042|854043|854044|854045|854046|854047|854048|854049|854050|854051|854052|854053|854054|854055|854056|854057|854058|854059|854060|854061|854062|854063|854064|854065|854066|854067|854068|854069|854070|854071|854072|854073|854074|854075|854076|854077|854078|854079|854080|854081|854082|854083|854084|854085|854086|854087|854088|854089|854090|854091|854092|854093|854094|854095|854096|854097|854098|854099|854100|854101|854102|854103|854104|854105|854106|854107|854108|854109|854110|854111|854112|854113|854114|854115|854116|854117|854118|854119|854120|854121|854122|854123|854124|854125|854126|854127|854128|854129|854130|854131|854132|854133|854134|854135|854136|854137|854138|854139|854140|854141|854142|854143|854144|854145|854146|854147|854148|854149|854150|854151|854152|854153|854154|854155|854156|854157|854158|854159|854160|854161|854162|854163|854164|854165|854166|854167|854168|854169|854170|854171|854172|854173|854174|854175|854176|854177|854178|854179|854180|854181|854182|854183|854184|854185|854186|854187|854188|854189|854190|854191|854192|854193|854194|854195|854196|854197|854198|854199|854200|854201|854202|854203|854204|854205|854206|854207|854208|854209|854210|854211|854212|854213|854214|854215|854216|854217|854218|854219|854220|854221|854222|854223|854224|854225|854226|854227|854228|854229|854230|854231|854232|854233|854234|854235|854236|854237|854238|854239|854240|854241|854242|854243|854244|854245|854246|854247|854248|854249|854250|854251|854252|854253|854254|854255|854256|854257|854258|854259|854260|854261|854262|854263|854264|854265|854266|854267|854268|854269|854270|854271|854272|854273|854274|854275|854276|854277|854278|854279|854280|854281|854282|854283|854284|854285|854286|854287|854288|854289|854290|854291|854292|854293|854294|854295|854296|854297|854298|854299|854300|854301|854302|854303|854304|854305|854306|854307|854308|854309|854310|854311|854312|854313|854314|854315|854316|854317|854318|854319|854320|854321|854322|854323|854324|854325|854326|854327|854328|854329|854330|854331|854332|854333|854334|854335|854336|854337|854338|854339|854340|854341|854342|854343|854344|854345|854346|854347|854348|854349|854350|854351|854352|854353|854354|854355|854356|854357|854358|854359|854360|854361|854362|854363|854364|854365|854366|854367|854368|854369|854370|854371|854372|854373|854374|854375|854376|854377|854378|854379|854380|854381|854382|854383|854384|854385|854386|854387|854388|854389|854390|854391|854392|854393|854394|854395|854396|854397|854398|854399|854400|854401|854402|854403|854404|854405|854406|854407|854408|854409|854410|854411|854412|854413|854414|854415|854416|854417|854418|854419|854420|854421|854422|854423|854424|854425|854426|854427|854428|854429|854430|854431|854432|854433|854434|854435|854436|854437|854438|854439|854440|854441|854442|854443|854444|854445|854446|854447|854448|854449|854450|854451|854452|854453|854454|854455|854456|854457|854458|854459|854460|854461|854462|854463|854464|854465|854466|854467|854468|854469|854470|854471|854472|854473|854474|854475|854476|854477|854478|854479|854480|854481|854482|854483|854484|854485|854486|854487|854488|854489|854490|854491|854492|854493|854494|854495|854496|854497|854498|854499|854500|854501|854502|854503|854504|854505|854506|854507|854508|854509|854510|854511|854512|854513|854514|854515|854516|854517|854518|854519|854520|854521|854522|854523|854524|854525|854526|854527|854528|854529|854530|854531|854532|854533|854534|854535|854536|854537|854538|854539|854540|854541|854542|854543|854544|854545|854546|854547|854548|854549|854550|854551|854552|854553|854554|854555|854556|854557|854558|854559|854560|854561|854562|854563|854564|854565|854566|854567|854568|854569|854570|854571|854572|854573|854574|854575|854576|854577|854578|854579|854580|854581|854582|854583|854584|854585|854586|854587|854588|854589|854590|854591|854592|854593|854594|854595|854596|854597|854598|854599|854600|854601|854602|854603|854604|854605|854606|854607|854608|854609|854610|854611|854612|854613|854614|854615|854616|854617|854618|854619|854620|854621|854622|854623|854624|854625|854626|854627|854628|854629|854630|854631|854632|854633|854634|854635|854636|854637|854638|854639|854640|854641|854642|854643|854644|854645|854646|854647|854648|854649|854650|854651|854652|854653|854654|854655|854656|854657|854658|854659|854660|854661|854662|854663|854664|854665|854666|854667|854668|854669|854670|854671|854672|854673|854674|854675|854676|854677|854678|854679|854680|854681|854682|854683|854684|854685|854686|854687|854688|854689|854690|854691|854692|854693|854694|854695|854696|854697|854698|854699|854700|854701|854702|854703|854704|854705|854706|854707|854708|854709|854710|854711|854712|854713|854714|854715|854716|854717|854718|854719|854720|854721|854722|854723|854724|854725|854726|854727|854728|854729|854730|854731|854732|854733|854734|854735|854736|854737|854738|854739|854740|854741|854742|854743|854744|854745|854746|854747|854748|854749|854750|854751|854752|854753|854754|854755|854756|854757|854758|854759|854760|854761|854762|854763|854764|854765|854766|854767|854768|854769|854770|854771|854772|854773|854774|854775|854776|854777|854778|854779|854780|854781|854782|854783|854784|854785|854786|854787|854788|854789|854790|854791|854792|854793|854794|854795|854796|854797|854798|854799|854800|854801|854802|854803|854804|854805|854806|854807|854808|854809|854810|854811|854812|854813|854814|854815|854816|854817|854818|854819|854820|854821|854822|854823|854824|854825|854826|854827|854828|854829|854830|854831|854832|854833|854834|854835|854836|854837|854838|854839|854840|854841|854842|854843|854844|854845|854846|854847|854848|854849|854850|854851|854852|854853|854854|854855|854856|854857|854858|854859|854860|854861|854862|854863|854864|854865|854866|854867|854868|854869|854870|854871|854872|854873|854874|854875|854876|854877|854878|854879|854880|854881|854882|854883|854884|854885|854886|854887|854888|854889|854890|854891|854892|854893|854894|854895|854896|854897|854898|854899|854900|854901|854902|854903|854904|854905|854906|854907|854908|854909|854910|854911|854912|854913|854914|854915|854916|854917|854918|854919|854920|854921|854922|854923|854924|854925|854926|854927|854928|854929|854930|854931|854932|854933|854934|854935|854936|854937|854938|854939|854940|854941|854942|854943|854944|854945|854946|854947|854948|854949|854950|854951|854952|854953|854954|854955|854956|854957|854958|854959|854960|854961|854962|854963|854964|854965|854966|854967|854968|854969|854970|854971|854972|854973|854974|854975|854976|854977|854978|854979|854980|854981|854982|854983|854984|854985|854986|854987|854988|854989|854990|854991|854992|854993|854994|854995|854996|854997|854998|854999|855000|855001|855002|855003|855004|855005|855006|855007|855008|855009|855010|855011|855012|855013|855014|855015|855016|855017|855018|855019|855020|855021|855022|855023|855024|855025|855026|855027|855028|855029|855030|855031|855032|855033|855034|855035|855036|855037|855038|855039|855040|855041|855042|855043|855044|855045|855046|855047|855048|855049|855050|855051|855052|855053|855054|855055|855056|855057|855058|855059|855060|855061|855062|855063|855064|855065|855066|855067|855068|855069|855070|855071|855072|855121|855122|855123|855124|855125|855126|855127|855128|855129|855130|855131|855132|855133|855134|855135|855136|855137|855138|855139|855140|855141|855142|855143|855144|855145|855146|855147|855148|855149|855150|855151|855152|855153|855154|855155|855156|855157|855158|855159|855160|855161|855162|855163|855164|855165|855166|855167|855168|855169|855170|855171|855172|855173|855174|855175|855176|855177|855178|855179|855180|855181|855182|855183|855184|855185|855186|855187|855188|855189|855190|855191|855192|855193|855194|855195|855196|855197|855198|855199|855200|855201|855202|855203|855204|855205|855206|855207|855208|855209|855210|855211|855212|855213|855214|855215|855216|855217|855218|855219|855220|855221|855222|855223|855224|855225|855226|855227|855228|855229|855230|855231|855232|855233|855234|855235|855236|855237|855238|855239|855240|855241|855242|855243|855244|855245|855246|855247|855248|855249|855250|855251|855252|855253|855254|855255|855256|855257|855258|855259|855260|855261|855262|855263|855264|855265|855266|855267|855268|855269|855270|855271|855272|855273|855274|855275|855276|855277|855278|855279|855280|855281|855282|855283|855284|855285|855286|855287|855288|855289|855290|855291|855292|855293|855294|855295|855296|855297|855298|855299|855300|855301|855302|855303|855304|855305|855306|855307|855308|855309|855310|855311|855312|855313|855314|855315|855316|855317|855318|855319|855320|855321|855322|855323|855324|855325|855326|855327|855328|855329|855330|855331|855332|855333|855334|855335|855336|855337|855338|855339|855340|855341|855342|855343|855344|855345|855346|855347|855348|855349|855350|855351|855352|855353|855354|855355|855356|855357|855358|855359|855360|855361|855362|855363|855364|855365|855366|855367|855368|855369|855370|855371|855372|855373|855374|855375|855376|855377|855378|855379|855380|855381|855382|855383|855384|855385|855386|855387|855388|855389|855390|855391|855392|855393|855394|855395|855396|855397|855398|855399|855400|855401|855402|855403|855404|855405|855406|855407|855408|855409|855410|855411|855412|855413|855414|855415|855416|855417|855418|855419|855420|855421|855422|855423|855424|855425|855426|855427|855428|855429|855430|855431|855432|855433|855434|855435|855436|855437|855438|855439|855440|855441|855442|855443|855444|855445|855446|855447|855448|855449|855450|855451|855452|855453|855454|855455|855456|855457|855458|855459|855460|855461|855462|855463|855464|855465|855466|855467|855468|855469|855470|855471|855472|855473|855474|855475|855476|855477|855478|855479|855480|855481|855482|855483|855484|855485|855486|855487|855488|855489|855490|855491|855492|855493|855494|855495|855496|855497|855498|855499|855500|855501|855502|855503|855504|855505|855506|855507|855508|855509|855510|855511|855512|855513|855514|855515|855516|855517|855518|855519|855520|855521|855522|855523|855524|855525|855526|855527|855528|855529|855530|855531|855532|855533|855534|855535|855536|855537|855538|855539|855540|855541|855542|855543|855544|855545|855546|855547|855548|855549|855550|855551|855552|855553|855554|855555|855556|855557|855558|855559|855560|855561|855562|855563|855564|855565|855566|855567|855568|855569|855570|855571|855572|855573|855574|855575|855576|855577|855578|855579|855580|855581|855582|855583|855584|855585|855586|855587|855588|855589|855590|855591|855592|855593|855594|855595|855596|855597|855598|855599|855600|855601|855602|855603|855604|855605|855606|855607|855608|855609|855610|855611|855612|855613|855614|855615|855616|855617|855618|855619|855620|855621|855622|855623|855624|855625|855626|855627|855628|855629|855630|855631|855632|855633|855634|855635|855636|855637|855638|855639|855640|855641|855642|855643|855644|855645|855646|855647|855648|855649|855650|855651|855652|855653|855654|855655|855656|855657|855658|855659|855660|855661|855662|855663|855664|855665|855666|855667|855668|855669|855670|855671|855672|855673|855674|855675|855676|855677|855678|855679|855680|855681|855682|855683|855684|855685|855686|855687|855688|855689|855690|855691|855692|855693|855694|855695|855696|855697|855698|855699|855700|855701|855702|855703|855704|855705|855706|855707|855708|855709|855710|855711|855712|855713|855714|855715|855716|855717|855718|855719|855720|855721|855722|855723|855724|855725|855726|855727|855728|855729|855730|855731|855732|855733|855734|855735|855736|855737|855738|855739|855740|855741|855742|855743|855744|855745|855746|855747|855748|855749|855750|855751|855752|855753|855754|855755|855756|855757|855758|855759|855760|855761|855762|855763|855764|855765|855766|855767|855768|855769|855770|855771|855772|855773|855774|855775|855776|855777|855778|855779|855780|855781|855782|855783|855784|855785|855786|855787|855788|855789|855790|855791|855792|855793|855794|855795|855796|855797|855798|855799|855800|855801|855802|855803|855804|855805|855806|855807|855808|855809|855810|855811|855812|855813|855814|855815|855816|855817|855818|855819|855820|855821|855822|855823|855824|855825|855826|855827|855828|855829|855830|855831|855832|855833|855834|855835|855836|855837|855838|855839|855840|855841|855842|855843|855844|855845|855846|855847|855848|858797|858809|858811|860950|861036|877636|877637|877638|877639|877640|877641|877642|877643|877644|880525|880526|903619|903620|964481|969598|971077|971078|971628|972480|972481|972482|972483|972484|976701|977410", + "text": "Breast-ovarian cancer, familial 1" + }, + { + "baseId": "21979|181404|205017|429431|432212|514176|514178|577997", + "text": "Lissencephaly" + }, + { + "baseId": "21985|29927", + "text": "Leukemia, acute lymphoblastic, susceptibility to" + }, + { + "baseId": "21985|31311|31315|31317|132522|132527|133309|133320|133322|133328|133329|133330|133331|150860|152273|180277|180279|180298|182874|182897|188057|188069|188070|214777|221794|226498|226502|233702|357674|458623|458714|474812|578477|613429|614326", + "text": "Acute lymphoid leukemia" + }, + { + "baseId": "21989|21990|21991|21992|21993|21994|21995|21996|21997|21998|21999|22000|22001|54906|54907|54908|54909|54910|54911|54912|54913|54915|54916|54917|54918|54919|54920|54923|54924|54925|54926|54927|54928|54929|54931|54932|54933|54934|54937|54938|54939|54940|54941|54942|175791|175792|175796|175797|175798|175932|175933|175936|176462|176466|176468|176471|176472|176475|176476|176480|176484|176597|176598|176599|176600|176601|176602|176605|176611|176616|176618|176622|176625|176627|192472|192473|192474|192476|193866|194652|196040|199805|199806|199807|215531|230680|230682|230683|230688|230689|230690|230691|230693|230695|230696|230698|230699|230701|230702|230703|230704|230706|230707|230708|230715|230716|230717|230718|230722|230729|230730|230737|230740|230742|230743|230744|230751|230754|230756|230759|237620|237621|237622|237623|237627|243882|243883|243884|243885|243886|243887|243888|243889|243890|256094|266315|270870|270906|271404|271671|271672|272122|273474|273537|273936|327520|327521|327526|327534|327536|327540|327547|327549|327553|327568|327569|327573|327577|327584|327585|327589|327595|327598|327603|327607|327609|327616|327617|327620|327624|327625|327629|327632|327635|337362|337369|337371|337372|337379|337384|337389|337390|337392|337393|337394|337400|337401|337421|337422|337428|337433|337436|337440|337444|337447|337451|337454|343643|343644|343645|343647|343651|343653|343654|343659|343660|343661|343663|343670|343671|343675|343677|343678|343682|343685|343687|343695|343696|343698|343702|343705|345134|345135|345138|345139|345142|345145|345150|345152|345155|345168|345169|345172|345173|362512|362514|362515|362516|362517|362518|362519|374869|389248|389249|389250|404827|404828|404829|404830|409848|429949|432332|433740|433746|445715|486171|490078|491485|491616|495663|497267|497482|497483|497486|497557|497559|497697|497701|497706|505999|506711|511041|513367|513642|550628|551793|553270|553271|585861|590324|610066|610067|612316|612317|614515|615819|615820|615821|615822|615823|615824|615825|615826|615843|615844|615845|620573|620574|620575|654813|654820|654829|679025|682318|727034|755678|771299|788906|788907|791683|791684|791685|791686|800008|802078|857687|857688|857689|857690|857691|857695|876921|876922|876923|876924|876925|876926|876927|876928|876929|876930|876931|876932|876933|876934|876935|876936|876937|876938|876939|876940|876941|876942|876943|876944|876945|876946|876947|876948|876949|876950|876951|876952|876953|876954|876955|876956|876957|876958|876959|876960|876961|876962|876963|876964|876965|876966|876967|876968|876969|876970|876971|876972|876973|876974|876975|876976|876977|876978|876979|876980|876981|876982|876983|876984|876985|876986|876987|876988|876989|876990|880480|880481|880482|880483|880484|880485|880486|903700|919714|961220|961804|972888|972889|972890|972891", + "text": "Deafness, autosomal recessive 3" + }, + { + "baseId": "21995", + "text": "Deafness, with smith-magenis syndrome" + }, + { + "baseId": "22002|22003|22004|22005|22006|169307|169309|217278|217279|217280|217281|226603|609009", + "text": "Fibrosis of extraocular muscles, congenital, 3a, with or without extraocular involvement" + }, + { + "baseId": "22006|39228|39230|39231|169306|169307|169309|169309|169310|169311|169312|237806|260145|263006|361225|377988|432220|626163|919692|963822", + "text": "Cortical dysplasia, complex, with other brain malformations 1" + }, + { + "baseId": "22006", + "text": "TUBB3-Releated Disorders" + }, + { + "baseId": "22007|22008|22009|22010|22011|193510|194906|205369|205370|253027|253028|253029|253030|265664|269519|304088|304092|304093|304097|304099|304106|307666|307668|307673|307678|307679|307680|307683|307700|312720|312721|312722|312723|312847|312848|312849|312854|312855|312861|700368|722816|766526|782986|790777|804849|898787|898788|898789|898790|898791|898792|898793|898794|898795|898796|898797|898798|898799|898800|898801|898802|898803|898804|898805", + "text": "Hyperphosphatasemia with bone disease" + }, + { + "baseId": "22012|22013|22014|190419|190420|190421|192363|272169|319880|319885|319888|319889|319890|319892|319894|328402|328403|328404|328405|328409|328415|328417|328418|328419|334847|334852|334853|334862|334865|334866|334868|336653|336655|336660|336665|336667|336673|336678|336679|489921|493082|725493|871352|871353|871354|871355|871356|871357|871358|871359|871360|871361|871362|871363|871364|871365|871366|871367|871368|871369|872337|872338", + "text": "Autosomal recessive osteopetrosis 2" + }, + { + "baseId": "22016", + "text": "Rhabdomyosarcoma, somatic" + }, + { + "baseId": "22018|22019|22020|22021|22022|22023|76404|76412|76415|256653|256655|256656|256657|256658|331219|341498|346976|348241|532725|536083|653071|688913|694269|846827|879169|879170|879171|958460", + "text": "Holoprosencephaly 4" + }, + { + "baseId": "22024", + "text": "Major depressive disorder, increased recurrence of depressive episodes in, susceptibility to" + }, + { + "baseId": "22024", + "text": "Antidepressant drug treatment, accelerated response to" + }, + { + "baseId": "22025|22026|100996|100997|100998|204978|429030|512836|512915", + "text": "Bamforth-Lazarus syndrome" + }, + { + "baseId": "22027", + "text": "Hypothyroidism, thyroidal, with spiky hair and cleft palate" + }, + { + "baseId": "22028|22029|22030|22031|39226|99964|215480|320623|320625|320628|320629|320630|320634|329377|329381|329384|329387|329403|329405|335962|335964|335969|335971|335973|335975|335986|335994|335995|337946|337947|337948|337962|373093|373845|463235|528644|566447|568070|609060|609061|609062|609066|622903|622904|642457|642458|642459|693494|871869|871870|871871|871872|871873|871874|871875|871876|871877|871878|871879|871880|871881|871882|871883|871884|871885|871886|871887|871888|871889|871890|871891|871892|957222", + "text": "Congenital disorder of glycosylation, type IIa" + }, + { + "baseId": "22035|76355|76356", + "text": "Myocardial infarction 1" + }, + { + "baseId": "22036|22037", + "text": "Hypotrichosis 2" + }, + { + "baseId": "22038|252773|252774|270302|456628|456641|489129|610534|610535|636050|636051|710940|722463|736085|736086|736088|744380|782840|833499|924817|955129|970855", + "text": "Spondylocostal dysostosis 3, autosomal recessive" + }, + { + "baseId": "22039|22040|22041|22042|22043|22044|22045|22046|22047|22048|22049|22050|22051|204428|253286|253288|253289|253293|253294|253295|253297|259911|306673|306675|306682|306684|306685|306686|306691|306693|306697|306699|306708|306710|306713|306724|306725|306731|306733|306737|306738|306740|306741|306743|306744|306748|306751|306763|306764|306769|306774|306776|306780|306786|306787|306790|306791|306795|306798|306799|310851|310853|310860|310865|310867|310869|310871|310875|310879|310880|310881|310882|310883|310889|310891|310893|310910|310911|310917|310920|310921|310922|310926|310940|316376|316385|316386|316387|316388|316392|316396|316397|316399|316400|316407|316410|316411|316426|316431|316434|316439|316442|316462|316483|316484|316485|316487|316496|316499|316502|316503|316504|316530|316610|316617|316618|316627|316630|316638|316643|316646|316649|316652|316653|316657|316659|316670|316682|316691|316698|316705|316708|316709|316712|316717|316722|316723|316729|316735|316736|316737|316740|316743|316753|316761|316763|316767|316768|316769|354169|417436|417439|432300|481835|490222|513077|578652|590733|623300|653877|682510|683220|730605|798608|798609|798610|815850|815851|815852|815853|815854|815855|818264|900996|900997|900998|900999|901000|901001|901002|901003|901004|901005|901006|901007|901008|901009|901010|901011|901012|901013|901014|901015|901016|901017|901018|901019|901020|901021|901022|901023|901024|901025|901026|901027|901028|901029|901030|901031|901032|901033|901034|901035|901036|901037|901038|901039|901040|901041|901042|901043|901044|901045|901046|901047|901048|901049|901050|901051|901052|903310|903311|903312|962164|964304|964837|970890|971377|983463", + "text": "Nail-patella syndrome" + }, + { + "baseId": "22053|22055|22056|22059|22060|22061|22062|22063|54481|54482|54484|54486|54489|54490|54491|54492|54496|54497|54498|54499|54501|54502|54503|54505|54506|54507|54508|54509|89105|175072|175073|175074|175075|175076|175081|175082|175082|175083|175085|175086|175090|175091|175348|175351|175352|175354|175359|175361|175366|227342|229977|229980|229983|229990|229993|229994|229999|230001|230004|237609|237610|237611|273542|312810|312811|312812|312818|312829|312830|312835|312839|312841|312846|312851|312852|312853|312857|318828|318835|318836|318859|318870|318882|318883|318889|318898|324933|324943|324948|324959|324960|324961|324966|324969|324970|324971|324978|324982|324992|325005|325006|325011|325783|325803|325813|325818|325819|325820|325823|325828|325856|325862|325864|325867|325869|325870|325874|325878|389963|404795|421833|489962|493527|536807|620387|654629|654630|654637|677281|677282|752490|857678|857679|859843|867348|867349|867350|867351|867352|867353|867354|867355|867356|867357|867358|867359|867360|867361|867362|867363|867364|867365|867366|867367|867368|867369|867370|867371|867372|867373|867374|867375|867376|867377|867378|867379|919328|919329|919330", + "text": "Deafness, autosomal dominant 12" + }, + { + "baseId": "22054|22057|22058", + "text": "Deafness, neurosensory autosomal recessive 21" + }, + { + "baseId": "22064|22065|29046|29049|29050|294660|519673|632527|651126|691638|698680|698681", + "text": "Lewy body dementia" + }, + { + "baseId": "22066|22067|22068|22069|22070|22071|22072|141994|141996|141997|141999|142000|142002|142003|142004|142005|142007|142008|142009|191659|200103|200104|200105|259828|298105|298109|298186|304681|304722|304723|304976|304981|304985|304986|368255|368260|368532|368547|368548|368554|368556|368719|369939|369945|369947|433709|455965|501261|513279|521604|538989|560494|565201|620784|634031|634034|634035|634036|651340|651355|655683|686764|691880|695303|699175|721540|735205|735206|735209|735213|744075|744253|749601|749602|749603|749604|749605|749606|759387|765216|765217|775052|775085|775195|782340|782343|782347|795723|819608|819609|819610|830965|830969|851038|851990|924115|932956|932957|932958|932959|932960|940012|944660|944661|944662|954198|954200|954201|954202|954203|959772|959773|978206|978207|978208|978210|978211|978213|978216", + "text": "Homocystinuria-Megaloblastic anemia due to defect in cobalamin metabolism, cblE complementation type" + }, + { + "baseId": "22068|28672|141992", + "text": "Neural tube defects, folate-sensitive, susceptibility to" + }, + { + "baseId": "22068", + "text": "Down syndrome, susceptibility to" + }, + { + "baseId": "22068|227763|362505", + "text": "methotrexate response - Toxicity/ADR" + }, + { + "baseId": "22073|22074|22075|22076|22077|22079|22080|22081|22082|22083|22084|22085|22086|22087|22089|22089|22090|22091|22092|22093|22094|49644|49645|49646|49647|59479|215779|239896|265741|267741|273419|299552|299558|299566|299567|299575|299576|299579|299582|299583|299589|299590|302087|302094|302095|302100|302101|302102|302104|302107|302111|302116|302128|302129|306507|306523|306524|306528|306531|306532|306546|306771|306772|306775|306783|306784|306785|306792|306808|306809|306811|306812|394996|394998|395072|395079|395080|395171|395226|395227|395228|395420|395426|395641|406849|413736|438347|455116|455265|455271|455272|455430|455450|455455|455534|455998|456260|456269|456276|521494|521887|550844|560399|560501|560506|560508|560654|560656|560658|560660|563258|563260|563480|563481|565508|565509|565522|634764|634766|634768|634771|634773|651540|651583|683770|683771|686815|798915|799032|819680|859497|895621|895622|895623|895624|895625|895626|895627|895628|895629|895630|895631|895632|895633|895634|895635|895636|895637|895638|895639|895640|895641|895642|895643|895644|895645|895646|895647|895648|895649|895650|895651|895652|895653|895654|895655|895656|895657|895658|895659|895660|895661|895662|895663|895664|896213|964910", + "text": "Parkinson disease 2" + }, + { + "baseId": "22088|23582|23584|27386|27388|27393|27394|27395|27397|27398|27403|27404|27405|27407|27408|27409|27422|27617|27641|27642|27645|27646|27650|27652|28691|28692|28694|28695|28698|28914|28915|28916|28939|28996|29000|29005|29006|29007|29009|29010|29011|29013|29022|30972|30973|31371|31648|31650|31967|31968|32616|32618|32619|32621|32622|32623|32625|32626|32627|32628|36171|36173|40609|44227|48304|48857|49030|50071|53970|53980|53985|54284|54289|54392|54406|70450|83949|133271|133272|133274|133276|139098|150515|150535|150855|151476|151595|151897|151955|152428|166215|171613|171614|174177|174254|176503|179419|180995|181000|181001|181005|185345|185350|185366|185367|185371|185375|185384|185394|186283|206650|213392|213398|213402|213943|214512|214513|224866|232035|236459|236461|236462|236463|236468|236469|236471|236477|236479|236481|239564|242978|242980|245074|260191|260192|263939|359197|360335|361709|362753|362759|362760|362761|362768|362770|362771|362772|362773|362774|362775|362822|362826|362859|362894|362895|362896|362904|362905|362912|362929|362952|362954|363011|363012|363013|363014|363015|363016|363017|363018|363036|363053|363067|363068|363110|363112|363113|363114|363121|363123|363165|363174|363179|363186|363194|363197|363201|363202|363210|363245|363246|363247|363248|363249|363250|363251|363253|363254|363255|363256|363257|363258|363259|363260|363264|363269|363270|363271|363272|363273|363293|363294|363295|363296|363297|363312|363321|363322|363323|363324|363325|363326|363327|363337|363338|363340|363341|363342|363343|363344|363345|363346|363347|363349|363350|363351|363352|363353|363354|363355|363356|363357|363360|363361|363362|363363|363367|363368|363369|363384|363385|363386|363393|363396|363397|363416|363417|363418|363419|363420|363421|363438|363439|363440|363441|363442|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363473|363474|363475|363476|363477|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363496|363497|363498|363499|363500|363501|363502|363503|363504|363505|363506|363507|363508|363512|363513|363514|363515|363516|363517|363518|363519|363520|363521|363522|363523|363524|363525|363526|363527|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363538|363539|363540|363541|363542|363543|363544|363545|363546|363547|363548|363549|363550|363551|363552|363553|363554|363555|363556|363557|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363572|363573|363580|363587|424553|424554|424557|488234|550726|550727|550728", + "text": "Lung adenocarcinoma" + }, + { + "baseId": "22089", + "text": "Leprosy 2" + }, + { + "baseId": "22095|22096|22097|22098|22099|22100|22101|106635|106636|106637|106638|135507|135509|135510|135511|135512|135513|135514|135516|135517|135518|188929|206842|206843|281823|281824|281827|281834|282466|282467|282468|282472|282484|282486|284089|284095|284096|284100|284101|284102|284126|284127|284128|284131|284133|284134|284311|284313|284316|284317|284321|284335|284347|284348|284349|363693|365536|405294|427879|427880|440522|513246|535674|535675|535676|552048|552049|612346|612347|623129|697026|788741|789110|881040|881041|881042|881043|881044|881045|881046|881047|881048|881049|881050|881051|881052|881053|881054|881055|881056|881057|881058|881059|881060|881061|881062|881063|881064|881065|882796", + "text": "Warburg micro syndrome 1" + }, + { + "baseId": "22102|22103|22104|22105|22106|281251|281253|281869|281870|283115|283116|283121|283315|283316|283317|283318|283319|440521|448380|516087|556503|557376|557378|558597|628270|628271|650547|658097|690677|792720|794726|824426|864818|864819|864820|864821|864822|864823|865210|942104", + "text": "Parkinson disease 7" + }, + { + "baseId": "22109|22110|22111|22112|22113|22114|22115|22116|39224|45320|105689|168980|168981|168982|168983|168985|168986|168988|168989|168990|168992|168993|168994|168995|168996|168997|169004|169005|169007|169008|205017|205772|207972|207973|207976|213622|271629|359970|360041|360041|408686|425993|429430|429432|429435|432218|481496|553386|576155|581957|611416|611417|613819|621031|677055|788867|791253|855109|855110|855111|855112|861574|861575|964389|965453|965987|966890", + "text": "Lissencephaly 3" + }, + { + "baseId": "22109|22110|22111|22112|22113|22114|22115|22116|39224|168980|168981|168982|168983|168985|168986|168988|168990|168992|168994|168996|168997|169004|169005|169007|188844|205017|205772|207972|207973|207976|213622|260021|260022|271629|359970|360041|372337|373114|373308|375180|408686|408687|408688|408689|408690|408691|415338|415339|415340|421929|421930|421931|425988|425989|425990|425992|425993|429430|429432|429435|431921|432218|445034|445035|445036|445037|481496|512020|512021|512022|512023|613776|613777|613778|613779|613780|613781|613782|613783|613784|613786|613787|613788|613789|613790|613792|613793|613795|613796|613797|613798|613801|613802|613803|613804|613807|613808|613809|613810|613811|613812|613813|613814|613815|613816|613817|613819|613820|613821|613822|613825", + "text": "Tubulinopathies" + }, + { + "baseId": "22117|22118|22119|53746|53750|102599|107268|174271|174406|174407|229297|295774|297585|301477|301691|301693|301711|301716|301720|360866|537472|609580|861622|893196|893197|893198|893199|893200|893201|893202|961807|961808|961809|961810", + "text": "Deafness, autosomal dominant 15" + }, + { + "baseId": "22120", + "text": "Low density lipoprotein cholesterol level quantitative trait locus 6" + }, + { + "baseId": "22121|22122", + "text": "Colorectal cancer with chromosomal instability, somatic" + }, + { + "baseId": "22123|22124", + "text": "PARAOXONASE 2 POLYMORPHISM" + }, + { + "baseId": "22125|22126|22127|22128|22129|237081|289457|289465|289466|289473|289474|289479|290230|290236|290239|290240|290245|293317|293320|293329|293333|293334|293346|293348|293349|293751|293757|293763|293767|353642|353645|451904|451912|451918|451921|452123|452280|452283|452287|452290|452360|452364|452366|452378|518953|518962|519126|519129|519136|519139|558832|559367|561241|561243|561245|562537|562541|576721|631025|631026|631027|631028|631029|651074|763724|781608|819347|819349|827656|827657|827658|827659|827660|827661|851546|888361|888362|888363|888364|888365|891617|891618|923081|923082|923083|923084|923085|923086|943396|943397|943398|953380|953381|964216", + "text": "Encephalopathy, familial, with neuroserpin inclusion bodies" + }, + { + "baseId": "22130", + "text": "Tuberculosis, susceptibility to" + }, + { + "baseId": "22130|25399|25402|25406|25407|25411|25425|25428|404771|404772|404773|578461|816347", + "text": "Susceptibility to malaria" + }, + { + "baseId": "22130", + "text": "Bacteremia, susceptibility to, 2" + }, + { + "baseId": "22131|22132|22133|22134|255854|326089|326093|326094|326095|326097|335767|335771|335776|335777|335779|335782|335783|342106|342115|342117|342122|342127|342131|342133|342136|342142|342143|343633|343634|343638|343641|343649|343656|343658|343664|466544|466793|466795|466799|513361|570319|570321|570347|574099|576173|620880|875770|875771|875772|875773|875774|875775|875776|875777|875778|875779|875780|875781|875782|875783|875784|875785|875786|875787|875788|875789|876704|919671|937527", + "text": "Cataract 5 multiple types" + }, + { + "baseId": "22135|22136|22137|22137|22138|101917|253708|253709|253710|260885|320645|321211|321213|321224|460629|525242|564400|564407|569552|569554|638772|638773|652314|692805|692807|692808|737406|820193|820194|820195|836694|851766|852234|934978|934979|946839|956006", + "text": "Glaucoma 1, open angle, e" + }, + { + "baseId": "22137|22137|22138|22139|22140|22141|101916|101917|101917|195007|253708|253708|253709|253709|253710|260885|309724|309725|309726|309727|309732|309734|309739|309743|314575|314577|314579|314580|314581|314594|314622|314630|320644|320645|320645|320651|320654|320655|320656|320657|320658|320662|321180|321188|321189|321201|321211|321211|321213|321213|321216|321224|321224|321225|321235|321239|441368|460629|525242|564400|564407|569552|569554|620347|638772|638773|652314|692805|692805|692807|692808|737406|820193|820194|820195|836694|851766|852234|861365|861366|861367|861368|865595|865596|865597|865598|865599|865600|865601|865602|865603|865604|865605|865606|865607|865608|868457|934978|934979|946839|956006|980496", + "text": "Amyotrophic lateral sclerosis type 12" + }, + { + "baseId": "22137|22137|22138|22783|22988|101916|101917|101917|132463|132467|132468|132469|132470|132471|195007|226781|226782|226783|226784|226785|243828|251608|253708|253708|253709|253709|253710|260885|294835|294873|296586|296605|296614|296677|300278|300279|300299|300349|300353|300385|300410|309724|309725|309726|309727|309732|309734|309739|309743|314575|314577|314579|314580|314581|314594|314616|314619|314621|314622|314630|320644|320645|320645|320651|320654|320655|320656|320657|320658|320662|321180|321188|321189|321201|321211|321211|321213|321213|321216|321224|321224|321225|321235|321239|353123|353124|353675|441368|460629|525242|564400|564407|569552|569554|620347|638772|638773|652314|692805|692805|692807|692808|737406|790945|820193|820194|820195|836694|851766|852234|865595|865596|865597|865598|865599|865600|865601|865602|865603|865604|865605|865606|865607|865608|868457|919261|920282|934978|934979|946839|956006", + "text": "Primary open angle glaucoma" + }, + { + "baseId": "22138|294184", + "text": "Glaucoma, normal tension, susceptibility to" + }, + { + "baseId": "22142|22143|226080|226081|226082|227265|291567|291568|291570|291575|291577|291581|291583|291591|291594|291597|291600|291604|291605|291609|291611|291615|291617|291621|291623|291625|291626|291629|291635|291640|291641|291646|291647|291648|291652|291653|292842|292843|292853|292854|292860|292861|292871|292894|292900|292908|292909|292918|292923|292930|292931|292934|292935|292936|292938|292940|292943|292945|292954|292956|292957|292958|292961|292977|296178|296180|296182|296200|296201|296202|296203|296205|296206|296208|296209|296210|296212|296215|296217|296218|296220|296221|296222|296225|296226|296229|296230|296238|296240|296242|296244|296249|296250|296251|296252|296254|296256|296257|296259|296268|296271|296272|296282|296283|296284|296295|296296|296297|508789|508790|889654|889655|889656|889657|889658|889659|889660|889661|889662|889663|889664|889665|889666|889667|889668|889669|889670|889671|889672|889673|889674|889675|889676|889677|889678|889679|889680|889681|889682|889683|889684|889685|889686|889687|889688|889689|889690|889691|889692|889693|889694|889695|889696|889697|889698|889699|889700|889701|889702|889703|918859", + "text": "Vesicoureteral reflux 2" + }, + { + "baseId": "22142|22143|23410|23410|190824|216789|226070|226071|226072|226079|226081|226082|226085|226087|226092|226093|226094|237224|291575|299774|353877|491288|539162|553567|622098|622100|623434|672234|672235|672263|672264|692527|889672|983661|983662|983665|983666|983667|983668|983669|983670|983671|983736|983737|983744|983804|983805|983806", + "text": "Congenital anomalies of kidney and urinary tract" + }, + { + "baseId": "22144|205614", + "text": "Bronchiectasis with or without elevated sweat chloride 1, modifier of" + }, + { + "baseId": "22144|22148|22150|22154|22154|22157|22159|22159|22161|22168|22170|22178|22183|22194|22203|22205|22229|22233|22237|23217|23219|26915|26916|26916|26917|26918|26919|26920|26921|26922|26923|26924|28799|28800|28801|28803|28804|28805|33858|38878|44485|44490|44497|44499|44501|44503|44506|44529|44540|44549|44557|45365|45366|45367|45439|45440|45441|45442|46925|46928|47058|47062|47333|47335|52745|57842|57850|57854|67842|67908|67925|68006|68128|68169|68229|68274|68413|68465|68552|68579|68674|68685|68703|77006|99060|136364|136364|136365|136366|136367|136368|136370|136371|136372|136374|136464|171710|171711|171712|171713|171714|171715|238139|238140|238141|238142|238143|238144|239767|239768|239769|239770|239771|239772|239773|239988|239989|249402|249403|249404|251795|251796|251797|252638|252639|252641|252642|262405|265410|276506|276507|276729|276735|276737|277288|277302|277306|277307|277314|277377|277378|277383|277389|295901|301628|301637|301696|301812|353064|389795|390793|390798|390806|390810|390817|394831|394832|395245|395425|395442|395446|395647|395650|395831|395909|396065|396091|396092|396101|421170|432973|432976|432977|432978|432979|432980|432981|432982|432983|432984|432985|433010|433013|433016|433046|433048|442477|447225|454062|455518|455523|456419|456421|456732|456732|456736|457002|457003|457446|487129|487199|487259|489825|489830|508821|508822|514864|515144|520159|521091|521300|522343|522608|522612|522615|523064|523078|537681|537775|556485|556653|556655|556657|556935|556937|556939|558116|558118|558120|558122|559831|561559|561562|561564|561570|561582|562906|562907|563843|564137|564140|564141|564881|566053|566504|566508|609347|609348|609351|609352|609581|609658|612280|621737|626854|626855|626856|626857|626858|626859|626860|626861|626862|626863|626864|626865|633552|635794|635795|635796|635797|635798|635799|635800|635801|635802|635803|635804|635805|650522|650529|650622|650665|651225|651606|651703|685565|685566|689857|690361|745711|766136|799107|799108|799109|799110|799111|799112|799113|799114|799115|799116|799117|799118|806444|806447|806449|808571|808976|808978|815210|818814|818815|819563|819828|819829|819830|819832|822755|822756|822757|822758|822759|822760|830426|830427|833226|833227|833228|833229|833230|833231|852341|862353|862354|862355|862356|862357|862358|864982|864983|893271|893272|893273|893274|923917|924717|924718|930044|930045|930046|930047|933718|933719|933720|933721|933722|941461|941462|941463|945490|945491|955074|959840|959841|961849|961851|981219|981220|981221|981222|981223|981224|981225|981226|981227|981228|981229|981592|981593", + "text": "Hereditary pancreatitis" + }, + { + "baseId": "22144|22147|22148|22150|22155|22157|22159|22181|22198|22203|22221|22229|22237|22256|44529|44530|44531|44545|47338|57854|67993|68032|68093|68243|68269|68339|68353|68356|68382|68465|68673|193438|538601", + "text": "ivacaftor response - Efficacy" + }, + { + "baseId": "22144", + "text": "ivacaftor / lumacaftor response - Efficacy" + }, + { + "baseId": "22144", + "text": "Duodenal stenosis" + }, + { + "baseId": "22144|46925", + "text": "Recurrent pancreatitis" + }, + { + "baseId": "22144|22145|22146|22147|22148|22148|22148|22149|22150|22150|22151|22152|22153|22154|22154|22155|22157|22157|22158|22159|22159|22161|22161|22162|22163|22166|22167|22168|22168|22173|22175|22176|22178|22178|22180|22182|22183|22183|22189|22194|22194|22197|22199|22201|22203|22204|22205|22207|22210|22211|22221|22224|22225|22226|22229|22229|22233|22233|22237|22237|22242|22247|22262|22270|22271|22279|33858|33858|44485|44485|44486|44487|44488|44495|44497|44497|44499|44500|44501|44502|44506|44510|44513|44514|44518|44521|44525|44528|44529|44530|44531|44532|44539|44554|44557|46824|47057|47058|47058|47059|47062|47062|47331|47333|47333|47335|47335|47338|47340|48115|57834|57842|57842|57843|57846|57847|57850|57850|57854|57854|57866|57870|67830|67835|67858|67864|67886|67897|67901|67905|67910|67913|67943|67985|67993|68006|68006|68020|68033|68042|68052|68071|68072|68085|68093|68108|68109|68128|68139|68148|68151|68155|68160|68171|68197|68220|68229|68243|68248|68269|68270|68272|68274|68274|68282|68295|68308|68320|68340|68348|68352|68353|68356|68358|68379|68465|68465|68472|68479|68508|68512|68513|68550|68579|68597|68614|68616|68629|68638|68641|68658|68674|68677|68679|68681|68685|68685|68693|68703|68703|68708|68722|68725|68736|68756|68764|77003|174036|186747|205614|247420|247421|247422|270918|357574|357574|357575|357582|396065|432617|432629|480439|485739|487199|487214|487243|487259|544223|544495|544513|544518|544530|587967|610320|610342|610349|679347|679348|679349|679350|679351|679352|789477|801646|801647|801648|801649", + "text": "Congenital bilateral aplasia of vas deferens from CFTR mutation" + }, + { + "baseId": "22147|22148|22151|22153|22158|22165|22169|22174|22203|22204|22205|22207|22220|22221|22221|22225|22229|22232|22233|22235|22244|22250|22268|22276|22277|33858|44483|44484|44485|44488|44489|44490|44491|44494|44497|44499|44500|44503|44506|44508|44514|44516|44517|44524|44525|44528|44529|44530|44531|44533|44534|44536|44557|44558|47058|47062|47340|47455|52745|52746|57846|57850|67827|67838|67842|67858|67862|67874|67879|67897|67899|67912|67916|67929|67948|67983|67985|67993|68006|68012|68015|68023|68033|68056|68059|68063|68066|68071|68098|68116|68124|68128|68132|68133|68177|68183|68189|68197|68204|68211|68214|68216|68218|68237|68243|68243|68248|68260|68269|68271|68272|68278|68299|68306|68352|68353|68360|68376|68382|68386|68388|68405|68415|68417|68418|68425|68447|68449|68457|68469|68494|68500|68513|68563|68579|68595|68604|68614|68620|68638|68650|68677|68683|68688|68689|68698|68702|68708|68722|68742|68749|68761|87501|99055|99060|99061|99062|99063|99064|99066|174035|174036|186744|190755|190756|190757|192084|192625|195898|205614|212565|221666|239981|239986|252569|252571|273837|301669|301688|301692|301694|301695|301700|301705|304907|304908|304911|309497|309514|309534|309633|309636|309643|357585|395813|432604|432631|432635|456650|486425|487199|487264|487294|491495|522085|522450|544451|621226|635553|692112|699773|799473|799489|806296|806297|806305|806311|806312|806321|806323|806330|806333|806343|806352|806356|816411|816429|897315|897316|897317|897318|897319|897320|897321|897322|897323|897324|897325|897326|897327|897328|897329|897330|897331|897332|897333|897334|897335|897336|897337|897338|897339|897340|900306|900307|900308|961815", + "text": "CFTR-related disorders" + }, + { + "baseId": "22148|22150|22154|22157|22159|22161|22168|22178|22183|22194|22205|22229|22233|22237|23871|23877|23878|23879|23880|23881|23882|23883|33858|44485|44497|44499|44501|44506|44557|47058|47062|47333|47335|57842|57850|57854|68006|68229|68274|68465|68579|68674|68685|68703|176011|176012|176013|176014|176154|176156|176157|230632|230633|255672|324718|324720|324721|324723|324726|324727|324730|324735|334300|334301|334307|334317|334318|334319|334320|340948|340950|340954|340958|340959|340960|340968|340972|342413|342420|342424|342427|342429|342436|396065|487199|487259|874936|874937|874938|874939|874940|874941|874942|874943|874944|874945|874946|874947|874948|874949|874950|874951|874952|874953|874954|874955|876643|876644", + "text": "Bronchiectasis with or without elevated sweat chloride 1" + }, + { + "baseId": "22154|22168|362498", + "text": "ataluren response - Efficacy" + }, + { + "baseId": "22204|44499", + "text": "Chronic sinusitis" + }, + { + "baseId": "22204|44499|44503|68754", + "text": "Lung disease, non-specific" + }, + { + "baseId": "22231", + "text": "Ivacaftor response" + }, + { + "baseId": "22262", + "text": "Sweat chloride elevation without cystic fibrosis" + }, + { + "baseId": "22268", + "text": "Pancreatitis, idiopathic, susceptibility to" + }, + { + "baseId": "22268", + "text": "Hypertrypsinemia, neonatal, susceptibility to" + }, + { + "baseId": "22268|52745", + "text": "Pancreatitis" + }, + { + "baseId": "22280|22280|22281|22281|22282|22283|50212|50214|50215|50215|138933|138934|151597|152618|171051|172491|181595|181596|181598|181599|181600|181600|181603|187698|195315|221084|232167|232168|238107|238158|238159|238160|238161|238162|238162|238163|238164|238164|238165|238166|238167|238168|238169|238169|277948|353066|358695|358695|358696|358697|358697|359203|390713|390714|390719|390847|390853|390856|390861|390863|390864|390864|390865|390866|390867|390868|390869|390871|390872|390873|390874|390874|390875|390879|390881|390883|390884|390885|390886|390887|390888|390889|390902|420733|420734|420736|432491|446908|446909|446921|446924|447261|447263|447265|447326|447330|447331|447335|447336|447378|447380|447384|447384|447388|447403|447405|447444|447448|447449|447454|447455|447458|472267|472269|472270|472275|514871|515238|515247|515248|515249|515251|515254|515255|515256|515266|515269|515271|515272|515275|515277|515343|515347|550200|556668|556670|556672|556672|556674|556676|556678|556680|556727|556729|556731|556863|556869|556870|557016|557018|557020|557022|557024|557026|557028|558204|558206|558208|558210|558212|558214|558216|627029|627030|627031|627032|627033|627034|627035|627036|627037|627038|627040|627041|627042|627043|627044|627045|627046|627047|627048|627049|627050|627051|627052|627053|627054|650532|650551|650557|650563|650642|683293|690403|690404|690405|690406|777040|780365|780366|787026|806455|806457|815211|818848|818851|818852|818853|818854|818855|818856|818857|818858|818859|818860|822945|822946|822947|822948|822949|822950|822951|822952|822953|822954|822955|822956|822957|822958|822959|822960|822961|822962|850742|851192|921722|921723|921724|921725|921726|930124|930125|930126|930127|930128|930129|930130|930131|939780|941549|941550|941551|941552|952126|952127|952128|952129|952130|952131|959527|959528|960411|966354", + "text": "Paragangliomas 3" + }, + { + "baseId": "22283|152315|181616|187697|187698|187699", + "text": "Carney triad" + }, + { + "baseId": "22284|22285|22286|94533|240848|311240|311253|316666|322670|322671|322682|322683|322688|322695|322696|323397|323403|540530|685276|866348|866349|866350|866351|866352|868512|868513|961957", + "text": "Diamond-Blackfan anemia 3" + }, + { + "baseId": "22287", + "text": "BLEOMYCIN HYDROLASE POLYMORPHISM" + }, + { + "baseId": "22288|22289|22290|22291|22292|22293|22294|22295|22296|22298|22299|22300|538459|590466|590467|590468|590469|612133|679796|904912|975870|983466", + "text": "Distichiasis-lymphedema syndrome" + }, + { + "baseId": "22297", + "text": "Lymphedema-distichiasis syndrome with renal disease and diabetes mellitus" + }, + { + "baseId": "22301|22302|22303|22304|22305|22306|22308|22310|22312|22313|28736|131915|131916|192408|192844|193434|195693|214536|214537|217180|217181|217182|256685|256686|256687|256688|256689|256690|256691|256692|256693|256694|256695|256696|256698|256699|265376|266813|271041|271122|272947|273423|273794|275208|275489|331906|331907|331910|331916|331917|331921|331922|331924|331925|331935|331936|331944|331945|331946|331948|331949|342146|342149|342150|342152|342157|342161|342163|342165|342167|347495|347497|347498|347499|347508|347511|347515|347520|347524|347525|347533|347535|347538|347539|348880|348881|348883|348885|348889|348890|348896|348897|348899|348902|348912|348914|348915|348918|348919|369991|376934|376934|377123|379090|379097|489849|490899|492019|492177|584224|584239|585559|585567|586303|586666|586682|587741|620625|620900|620901|682855|790753|790754|790755|790756|790757|790758|791876|791877|791878|792813|792813|879471|879472|879473|879474|879475|879476|879477|879478|879479|879480|879481|879482|879483|879484|879485|879486|879487|879488|879489|879490|879491|879492|879493|879494|879495|879496|879497|879498|879499|879500|879501|879502|879503|879504|879505|879506|879507|879508|879509|879510|879511|879512|879513|879514|879515|879516|880667|880668|880669", + "text": "Cholestasis, progressive familial intrahepatic 1" + }, + { + "baseId": "22306|22307|22309|22310|376934|489849", + "text": "Cholestasis, benign recurrent intrahepatic 1" + }, + { + "baseId": "22310|22311|376934|489849|792813", + "text": "Cholestasis of pregnancy" + }, + { + "baseId": "22313|961887", + "text": "Familial intrahepatic cholestasis type 1" + }, + { + "baseId": "22314|141562|141563|141565|211711|211713|211715|211717|324910|324911|324922|324925|324929|324931|334519|334522|334524|334530|334534|334538|334559|341082|341084|341086|341093|341100|341101|341108|341112|342622|342623|342627|342629|342631|342632|359087|359088|375042|413437|481497|505551|875059|875060|875061|875062|875063|875064|875065|875066|875067|875068|875069|875070|875071|875072|876649", + "text": "Combined oxidative phosphorylation deficiency 4" + }, + { + "baseId": "22315|22318|22319|22320|22321|22324|22326|137717|137718|137719|137720|140833|140834|169456|169457|169458|169459|169461|169464|169468|169470|169471|169472|192264|213426|213427|215729|222761|232067|232069|243082|245107|245108|245112|245114|245115|245116|245120|245121|256745|256746|256747|272211|332387|332392|332399|332401|332403|332406|332407|332409|332411|332413|332414|332418|332419|332430|342541|342541|342542|342549|342568|342570|342577|347936|347937|347944|347947|347949|347950|347954|347961|347964|347965|349249|349250|349252|349254|349257|349258|349262|349264|349266|349268|349273|349274|349276|361497|376113|377055|377223|377232|379186|402871|403339|403340|403343|403344|403369|410418|442037|442038|442040|442041|446021|468210|468215|468223|468225|468230|469096|469097|469101|469506|469513|469953|469962|469966|469970|469976|490018|506425|506445|506453|506454|506647|507078|507472|532411|532417|532426|532427|532428|532433|532435|532476|532477|532480|532486|532533|532542|532543|532546|532897|532902|553398|570345|570350|570353|570354|570359|570365|570366|570372|572055|572058|572059|572063|572064|572066|572072|572694|572746|572748|572750|572751|574808|574810|574812|574814|574816|574818|574820|577700|647450|647451|647452|647453|647454|647455|647456|647457|647458|647459|647460|647461|647462|647463|647464|647465|647466|647467|647468|647469|647470|647471|647472|647473|647474|647475|647476|647477|647478|647479|647480|647481|647482|652980|653100|653130|684769|684770|684771|688943|688944|688946|688947|688948|690198|690199|694300|694301|694302|694304|694305|695799|704729|756632|760733|772302|776819|778483|785998|793721|804747|821205|821206|821207|821208|821209|847066|847067|847068|847069|847070|847071|847072|847073|847074|847075|847076|847077|847078|847079|847080|847081|847082|847083|847084|847085|847086|847087|847088|847089|847090|847091|851783|851785|852830|852832|852944|879803|879804|879805|879806|879807|879808|879809|879810|879811|879812|879813|879814|879815|879816|879817|879818|879819|879820|879821|879822|879823|880687|919815|928786|928787|928788|928789|928790|928791|928792|928793|928794|938512|938513|938514|938515|938516|938517|938518|938519|938520|938521|938522|940462|950604|950605|950606|950607|950608|950609|950610|950611|950612|950613|958510|958511|960274", + "text": "Charcot-Marie-Tooth disease, dominant intermediate B" + }, + { + "baseId": "22316|22317", + "text": "Charcot-Marie-Tooth disease, dominant intermediate b, with neutropenia" + }, + { + "baseId": "22318|22319|22320|22321|22324|29192|137717|137718|140833|140834|169456|169457|169459|169461|169464|169468|169470|169471|169472|192264|222761|243082|245114|245115|256745|256746|256747|332387|332392|332399|332401|332403|332406|332407|332409|332411|332413|332414|332418|332419|332430|342541|342541|342542|342549|342568|342570|342577|347936|347937|347944|347947|347949|347950|347954|347961|347964|347965|349249|349250|349252|349254|349257|349258|349262|349264|349266|349268|349273|349274|349276|403344|462747|532411|532480|552214|553398|610683|619849|622489|647454|647469|682853|690199|694300|778483|795486|858791|879803|879804|879805|879806|879807|879808|879809|879810|879811|879812|879813|879814|879815|879816|879817|879818|879819|879820|879821|879822|879823|880687|918863|918864|919815|919816|920393", + "text": "Myopathy, centronuclear, 1" + }, + { + "baseId": "22318|22319|22320|22321|22324|169457|169458|169460|169461|169465|169466|169467|169469", + "text": "Myopathy, centronuclear" + }, + { + "baseId": "22322|22323|22326", + "text": "Charcot-Marie-Tooth disease, type 2M" + }, + { + "baseId": "22324|22325|26092|26093|26094|26095|26096|26097|26098|26099|26100|26101|98576|98584|98585|169954|169955|169956|169957|169959|169960|169961|169962|169963|169964|169966|169967|169968|169969|169970|169971|169972|169973|169974|169975|169976|169977|169978|169979|169980|169981|169982|169983|169984|169985|169986|169987|169988|169989|169990|169991|169992|169993|169994|169995|169996|169998|169999|170000|170001|170002|170003|170004|170005|170006|170007|170008|170010|170011|170012|170013|170014|170015|170016|170018|170019|170020|170021|170022|170023|170024|170025|170026|170027|170028|170029|170030|170031|170032|170033|170034|170035|170036|170037|170039|170040|170041|170042|170043|170044|170045|170046|170047|170048|170049|170050|170051|170052|170053|170054|170055|170056|170057|170058|170059|170060|170061|170062|170063|170064|170065|170066|170067|170069|170070|170071|170072|170073|170074|208896|208897|208899|208900|208901|208902|208903|208904|208905|208906|208907|208908|208909|208910|208911|208912|269331|353913|378938|430678|430679|430680|430681|470529|470530|471343|472074|472075|492309|507778|508352|534574|534575|534643|534847|535060|535062|572060|573616|573617|573626|574333|575276|575345|621917|621918|621919|621920|649746|649747|649748|649749|649750|649751|653281|653346|653728|653776|689370|694805|706131|717675|729453|743176|743178|743179|758325|758327|773833|773834|778700|786723|786726|786728|788367|792134|792135|821481|821482|821483|821484|849709|849710|849711|849712|849713|849714|849715|849716|851940|919980|920438|929591|929592|929593|929594|939462|951633|959180|959181|959182|960975|964700|972397|972398|972399|972400|972401|972402|972403|972404|980089", + "text": "Severe X-linked myotubular myopathy" + }, + { + "baseId": "22327|31962|32992|980456", + "text": "Hepatitis b virus, susceptibility to" + }, + { + "baseId": "22328|22328|22329|22330|22331|22332|22335|22336|22336|22337|22338|22340|150118|150119|150119|150120|195631|254361|254363|254364|315448|315452|315457|315458|315458|315459|315460|315464|315465|315469|322293|322293|322295|322295|322314|322316|322327|322329|328430|328430|328442|328446|328450|328450|328460|328461|329760|329761|329762|329771|329771|390098|461487|461487|461489|461499|462344|526561|526565|526573|539185|564930|567569|571047|612294|640490|640491|640492|640493|640494|640494|640495|640496|640497|640498|640499|640500|640500|640501|640502|640503|652353|678052|724785|753012|768826|768827|775763|820420|839153|839154|839155|839156|839157|839158|839159|839160|839161|868924|868925|868926|868927|868927|868928|868929|868930|868931|868932|868933|868934|868935|868936|872150|872151|926413|935848|935849|935850|935851|947729", + "text": "Papillon-Lef\u00e8vre syndrome" + }, + { + "baseId": "22328|22336|22339|22340|150119|150120|315458|322293|322295|328430|328450|329771|390098|461487|461489|461499|462344|526561|526565|526573|539042|539185|564930|567569|571047|640490|640491|640492|640493|640494|640495|640496|640497|640498|640499|640500|640501|640502|640503|652353|724785|753012|768826|768827|775763|820420|839153|839154|839155|839156|839157|839158|839159|839160|839161|868927|926413|935848|935849|935850|935851|947729", + "text": "Periodontitis, aggressive, 1" + }, + { + "baseId": "22328|22333|22336|150119|195631|254361|254363|254364|315448|315452|315457|315458|315458|315459|315460|315464|315465|315469|322293|322293|322295|322295|322314|322316|322327|322329|328430|328430|328442|328446|328450|328450|328460|328461|329760|329761|329762|329771|329771|390098|461487|461487|461489|461499|462344|526561|526565|526573|539185|564930|567569|571047|640490|640491|640492|640493|640494|640494|640495|640496|640497|640498|640499|640500|640500|640501|640502|640503|652353|724785|753012|768826|768827|775763|820420|839153|839154|839155|839156|839157|839158|839159|839160|839161|868924|868925|868926|868927|868927|868928|868929|868930|868931|868932|868933|868934|868936|872150|872151|926413|935848|935849|935850|935851|947729", + "text": "Haim-Munk syndrome" + }, + { + "baseId": "22341|34151|70560|70561|70563|134583|134584|141152|141153|141154|141155|141157|195295|202849|202852|202853|202854|202858|202859|202860|202861|202863|227722|227725|227728|227729|322635|322636|332157|332160|332161|332163|332168|339114|339115|339119|339120|340648|340649|340653|340654|340655|340656|374091|376452|464297|464299|464823|464832|464833|490059|504786|528901|529253|529255|529261|539059|567092|567094|568572|568859|569422|573319|573320|580005|614395|643282|643283|643284|643285|643286|643287|652567|688439|690106|820707|842414|842415|842416|842417|842418|842419|842420|842421|842422|842423|842424|842425|842426|852041|873656|873657|873658|873659|873660|873661|873662|873663|873664|873665|873666|873667|927342|936954|936955|941090|948908|948909|948910", + "text": "Arginine:glycine amidinotransferase deficiency" + }, + { + "baseId": "22342", + "text": "Narcolepsy 1" + }, + { + "baseId": "22343|22344|22345|22350|22351|22355|22356|168798|168799|168800|168801|168802|168803|168805|168806|168807|168808|168809|168810|168811|168812|190451|193554|195336|195337|196255|196256|265666|265732|266997|268846|268870|271564|271928|272374|273661|273667|274924|308858|308859|308866|308867|308871|308873|308874|308875|308887|308888|308892|308893|308898|313523|313540|313545|313549|313550|313553|313554|313555|313565|313566|313571|313573|319299|319314|319319|319327|319343|319346|319349|319350|319351|319353|319357|319358|319359|319924|319932|319934|319938|319939|319956|319958|491333|737233|902466|902467|902468|902469|902470|902471|902472|902473|902474|902475|902476|902477|902478|902479|902480|902481|902482|902483|902484|902485|902486|902487|902488|902489|902490|902491|902492|902493|902494|902495|902496|902497|902498|902499|902500|902501|902502|902503|903443", + "text": "Brachydactyly type B1" + }, + { + "baseId": "22346|22347|22348|22349|22352|22353|22354|22357|168798|168799|168800|168801|168802|168803|168805|168806|168807|168808|168809|168810|168811|168812|190451|193554|195336|195337|196255|196256|196257|265666|265732|266997|268846|268870|271564|271928|272374|273661|273667|274924|308858|308859|308866|308867|308871|308873|308874|308875|308887|308888|308892|308893|308898|313523|313540|313545|313549|313550|313553|313554|313555|313565|313566|313571|313573|319299|319314|319319|319327|319343|319346|319349|319350|319351|319353|319357|319358|319359|319924|319932|319934|319938|319939|319956|319958|491333|615893|615894|737233|902466|902467|902468|902469|902470|902471|902472|902473|902474|902475|902476|902477|902478|902479|902480|902481|902482|902483|902484|902485|902486|902487|902488|902489|902490|902491|902492|902493|902494|902495|902496|902497|902498|902499|902500|902501|902502|902503|903443|973109", + "text": "Robinow syndrome, autosomal recessive" + }, + { + "baseId": "22350", + "text": "Robinow syndrome, autosomal recessive, with aplasia/hypoplasia of phalanges and metacarpals/metatarsals" + }, + { + "baseId": "22357", + "text": "Robinow syndrome, autosomal recessive, with brachy-syn-polydactyly" + }, + { + "baseId": "22361|22362|22363|22364|22365|22366|22367|45610|45611|439823|439824|439825|439826|610682|971576", + "text": "Pulmonary fibrosis and/or bone marrow failure, telomere-related, 2" + }, + { + "baseId": "22366|27768|27769|27770|27772|27772|27775|27775|27776|27777|28238|28239|28248|38854|38855|38856|45601|45602|45603|45604|45605|45608|47705|47707|47713|47714|47717|47717|47718|47724|47727|47728|47728|47729|47730|47730|47731|47733|51186|51188|173541|173543|173678|173679|173681|174394|174395|174533|174534|207165|207165|213930|213931|213932|214163|214164|214165|214166|227321|227598|229234|229235|229237|229238|229239|229240|239624|239625|239626|239627|239628|239629|239630|239631|239633|239634|239635|239638|239639|239640|239641|239643|239643|239644|239645|239647|239663|239664|239665|239666|239667|239668|239669|239669|239670|239671|239672|239673|239674|239675|239676|239677|251613|251614|251639|251640|251666|259808|263518|273563|295110|295271|296915|300507|300508|300731|300775|300921|304867|304873|304874|304876|304877|304883|304888|304889|308589|308593|308599|308600|308601|313748|313749|313768|313769|313772|313774|313788|313801|313802|313803|313804|313805|313806|313861|313864|313868|313869|313878|353833|394497|394503|394506|394522|394531|394536|394537|394544|394546|394554|394556|394557|394560|394582|394584|394587|394588|394589|394591|394595|394599|394629|394631|394635|394638|394641|394651|394654|394657|394720|394731|394739|394742|394746|394755|394757|394761|394762|394764|394767|394768|394799|394802|394807|394808|394810|394815|394817|394824|394841|394848|394851|395006|395007|395038|395042|395044|395058|395060|395064|395070|395130|395132|395135|395138|395143|395145|395152|395153|395173|395184|406619|428333|428334|428336|428339|428340|428341|428347|439828|439829|439830|454152|454153|454156|454158|454179|454181|454186|454187|454195|454222|454224|454226|454234|454238|454241|454244|454245|454295|454303|454305|454306|454309|454310|454311|454312|454314|454320|454321|454323|454324|454328|454330|454333|454369|454370|454376|454378|454384|454388|454390|454392|454393|454396|454397|454401|454445|454447|454456|454457|454459|454460|454467|454472|454632|454634|454636|454638|454645|454666|454668|454669|454671|454710|454717|454718|454721|454722|454726|454728|454737|454793|454813|454816|454818|454834|454837|454946|454952|454960|454963|454966|454984|455002|455003|455010|455015|455016|455025|455035|455105|455106|455106|455107|455111|455112|496352|520429|520430|520431|520433|520439|520443|520449|520477|520478|520483|520494|520500|520506|520565|520571|520574|520579|520580|520596|520599|520600|520602|520602|520605|520606|520608|520625|520627|520654|520656|520659|520660|520663|520666|520672|520674|520676|520677|520678|520702|520712|520713|520715|520720|520726|520733|520738|520824|520826|520828|520832|520833|520842|520845|520848|520850|520851|520852|520853|520855|520856|520859|520862|520868|520877|520882|520886|520888|520889|520891|520894|520895|520915|520917|520920|520925|520945|520952|520953|520979|520980|520983|520985|520986|520987|520989|520990|520991|520994|520995|520996|520997|520999|521000|521003|521005|521057|521060|521062|521064|521065|521078|521079|521081|536677|537458|550254|550255|550256|550257|550258|550259|550260|550261|550262|550263|559956|559973|559981|559983|560001|560003|560005|560007|560027|560029|560031|560033|560035|560037|560039|560041|560043|560045|560047|560049|560051|560053|560086|560088|560098|560108|560110|560112|560136|560138|560140|560142|560144|560146|560148|560150|562291|562567|562569|562570|562572|562581|562585|562590|562599|562601|562603|562605|562607|562646|562647|562649|562655|562658|562663|562665|562667|564432|564438|564439|564457|564491|564492|564494|564498|564508|564514|610609|632876|632877|632878|632879|632880|632881|632882|632883|632884|632885|632886|632887|632888|632889|632890|632891|632892|632893|632908|632909|632910|632911|632912|632944|632945|632946|632947|632948|632949|632950|632951|632952|632953|632954|632955|632956|632957|632958|632959|632960|632961|632962|632963|632964|632965|632966|632967|633006|633007|633008|633009|633010|633011|633012|633013|633014|633015|633016|633017|633018|633019|633020|633021|633022|633023|633024|633025|633026|633027|633028|633029|633030|633031|633032|633033|633034|633035|633036|633037|633038|633039|633040|633041|633042|633043|633044|633045|633046|633047|633048|651189|651191|651192|651194|651204|651217|651245|651255|651264|651306|651307|651341|683654|683655|683659|683660|683661|683662|685165|685168|685169|686573|686574|686575|686576|686577|686579|686580|686581|686582|686583|686584|686585|686586|686587|686588|686590|686603|686604|686606|686607|686609|686610|686612|689766|689767|689771|691658|691660|691662|691663|691670|691672|691673|691678|691679|691681|695251|695256|698755|698756|698759|698760|698762|709605|709606|721197|721199|734826|734831|749186|749187|749196|759350|764765|764767|764772|764782|764783|764786|764788|764790|764807|764808|764814|774992|782109|782115|782117|782118|787239|787297|790794|804862|819525|819526|819527|819528|819529|819586|819587|819588|829847|829848|829849|829850|829851|829852|829853|829854|829855|829856|829888|829889|829890|829891|829892|829893|829894|829895|829931|829932|829933|829934|829935|829936|829937|829938|829939|829940|829941|829942|829943|829944|829945|829946|829947|829951|829953|829993|829994|829995|829996|829997|829998|829999|830000|830001|830002|830003|830004|830005|830006|830007|830008|830009|830010|830011|830012|830013|830014|830015|830016|830017|830018|830019|830020|830021|830022|830023|830024|830025|830026|830027|830028|830029|830030|830031|830032|830033|830034|830035|830036|830037|830038|830039|830040|830041|830042|830043|830044|830045|830046|830047|830048|830049|830050|830051|851004|851239|851846|851882|851884|899330|899331|899332|899333|899334|899335|899336|904070|904071|923727|923728|923729|923730|923731|923737|923738|923739|923748|923771|923772|923773|923774|923775|923776|923777|923778|923779|923780|923781|923782|923783|923784|923785|923786|923787|923788|923789|923790|923791|932582|932583|932584|932585|932586|932587|932588|932589|932596|932597|932605|932606|932607|932608|932609|932610|932626|932627|932628|932629|932630|932631|932632|932633|932634|932635|932636|932637|939977|939979|940792|940794|944256|944257|944258|944259|944267|944268|944269|944270|944271|944272|944282|944283|944284|944292|944293|944294|944295|944296|944297|944298|944299|944300|944301|944302|944303|944304|944305|944306|944307|944308|944309|944310|944311|944312|944313|944314|953928|953929|953936|953937|953938|953939|953940|953941|953943|953953|953954|953955|953956|953957|953958|953959|953960|959742|959744|960548", + "text": "Idiopathic Pulmonary Fibrosis" + }, + { + "baseId": "22368", + "text": "Obesity, late-onset" + }, + { + "baseId": "22368", + "text": "Leanness, inherited" + }, + { + "baseId": "22369|22370|22371|22379|304795|304803|304805|304809|304810|304812|304815|304816|304822|304825|304829|304834|304835|304836|304837|304842|304850|304851|304853|304854|304856|304862|308527|308530|308544|308548|308554|308555|308556|308557|308559|308564|308565|308568|308572|308573|308575|308585|308586|308587|313692|313694|313695|313696|313697|313698|313710|313711|313713|313714|313715|313716|313718|313719|313724|313726|313731|313732|313733|313734|313735|313737|313739|313740|313741|313743|313744|313745|313746|313747|313750|313751|313754|313759|313778|313780|313781|313783|313784|313792|313796|313797|313798|313836|313837|313850|313860|612353|700520|700521|736582|899264|899265|899266|899267|899268|899269|899270|899271|899272|899273|899274|899275|899276|899277|899278|899279|899280|899281|899282|899283|899284|899285|899286|899287|899288|899289|899290|899291|899292|899293|899294|899295|899296|899297|899298|899299|899300|899301|899302|899303|899304|899305|899306|899307|899308|899309|899310|899311|899312|899313|899314|899315|899316|899317|899318|899319|899320|899321|899322|899323|899324|899325|899326|899327|899328|899329|900465|900466|900467|900468", + "text": "Alopecia universalis congenita" + }, + { + "baseId": "22369|22372|22373|22374|22375|22376|22377|22378|304795|304803|304805|304809|304810|304812|304815|304816|304822|304825|304829|304834|304835|304836|304837|304842|304850|304851|304853|304854|304856|304862|304863|308527|308530|308544|308548|308554|308555|308556|308557|308559|308564|308565|308568|308572|308573|308575|308585|308586|308587|313665|313692|313694|313695|313696|313697|313698|313710|313711|313713|313714|313715|313716|313718|313719|313724|313726|313731|313732|313733|313734|313735|313737|313739|313740|313741|313743|313744|313745|313746|313747|313750|313751|313754|313759|313778|313780|313781|313783|313784|313792|313796|313797|313798|313836|313837|313850|313860|654506|700520|700521|736582|899264|899265|899266|899267|899268|899269|899270|899271|899272|899273|899274|899275|899276|899277|899278|899279|899280|899281|899282|899283|899284|899285|899286|899287|899288|899289|899290|899291|899292|899293|899294|899295|899296|899297|899298|899299|899300|899301|899302|899303|899304|899305|899306|899307|899308|899309|899310|899311|899312|899313|899314|899315|899316|899317|899318|899319|899320|899321|899322|899323|899324|899325|899326|899327|899328|899329|900465|900466|900467|900468", + "text": "Atrichia with papular lesions" + }, + { + "baseId": "22380|22381|22382|22383|818633", + "text": "Hypotrichosis 4" + }, + { + "baseId": "22384|22385|22386|22387|142565|142566|244408|269524|288615|288616|288620|288624|288628|288634|288637|288644|288645|288656|288658|288662|289365|289370|289371|289372|289373|289375|289386|289388|289391|292394|292396|292397|292403|292511|292525|292532|292548|292549|292550|367198|452185|452187|452188|518897|518922|518926|558820|650966|691299|787237|819321|827518|827519|827520|827521|851532|887874|887875|887876|887877|887878|887879|887880|887881|887882|887883|887884|887885|887886|887887|887888|887889|887890|887891|887892|887893|891559|931756|931757|943318", + "text": "Charcot-Marie-Tooth disease type 2B" + }, + { + "baseId": "22388|39220|133852|133853|181423|206566|207426|207428|207430|207434|207436|215351|264224|363707|369109|369110|369361|395251|428635|428641|444025|444026|456170|456174|456179|456182|456491|456862|513289|513571|522659|522660|552110|552111|561109|561163|561165|566164|635330|635331|635332|635333|683822|683823|683825|683826|683827|686920|686924|686925|722187|787488|792762|832621|832622|832623|924526|933545|954941|961608|970220", + "text": "Spastic paraplegia 50, autosomal recessive" + }, + { + "baseId": "22389|22391|22392|101394|101395|101396|106460|192441|192442|253281|267710|272609|273091|273579|306568|306569|306571|306588|306590|306595|310775|310776|310777|310785|310786|310787|310798|310799|316171|316186|316187|316188|316191|316195|316510|316511|316514|316521|316523|316524|316525|370178|444336|444336|524469|622890|790832|802167|835419|900918|900919|900920|900921|900922|900923|900924|900925|900926|900927|900928|900929|900930|900931|900932|900933|900934|900935|900936|900937|900938|900939|900940|900941|900942", + "text": "Sarcotubular myopathy" + }, + { + "baseId": "22389|22390|22391|101394|101395|101396|106460|192441|192442|253281|267710|272609|273579|306568|306569|306571|306588|306590|306595|310775|310776|310777|310785|310786|310787|310798|310799|316171|316186|316187|316188|316191|316195|316510|316511|316514|316521|316523|316524|316525|370178|444336|444336|524469|835419|900918|900919|900920|900921|900922|900923|900924|900925|900926|900927|900928|900929|900930|900931|900932|900933|900934|900935|900936|900937|900938|900939|900940|900941|900942", + "text": "Bardet-Biedl syndrome 11" + }, + { + "baseId": "22393|22394|22395|312859|312860|312862|312863|312876|312878|312879|312881|312882|312883|312887|312888|312896|312898|312902|312903|312907|312912|312913|312922|312926|312927|312937|318900|318902|318904|318905|318907|318908|318917|318919|318922|318933|318935|318947|318948|318954|318958|318959|318962|325013|325034|325035|325037|325040|325041|325042|325046|325071|325074|325076|325079|325080|325081|325083|325086|325087|325089|325090|325882|325886|325887|325890|325894|325895|325897|325906|325909|325910|325929|325936|325943|325948|325949|325950|325953|325960|626203|665819|737820|799637|867380|867381|867382|867383|867384|867385|867386|867387|867388|867389|867390|867391|867392|867393|867394|867395|867396|867397|867398|867399|867400|867401|867402|867403|867404|867405|867406|867407|867408|867409|867410|867411|867412|867413|867414|867415|867416|867417|867418|867419|867420|867421|867422|867423|867424|867425|867426|867427|868612|904265|904266", + "text": "Lathosterolosis" + }, + { + "baseId": "22396|22397|22398|22399|22400|22401|22402|22403|22404|105554|816462|920518", + "text": "Retinitis pigmentosa 14" + }, + { + "baseId": "22399|39216|39217|39218|39219|100027|100028|105550|105553|105554|105560|105564|193520|271102|271577|299937|299938|299942|302589|302593|302609|302611|302612|302613|302615|306990|306991|307242|307249|307250|307256|699561|710472|777634|816462|818245|831882|831890|856426|856434|895866|895867|895868|895869|895870|895871|895872|895873|895874|895875|895876|895877|896235|896236|919026|919027|919028|920229|966095|966096|966097|966098|966099|966100", + "text": "Leber congenital amaurosis 15" + }, + { + "baseId": "22406|22407|101056|495560|791393|966544", + "text": "Oculopharyngeal muscular dystrophy" + }, + { + "baseId": "22408|106448", + "text": "Retinitis pigmentosa 48" + }, + { + "baseId": "22409|22410|22411|22411|22412|22413|22414|99446|99447|99448|99449|99450|143105|143106|143107|143108|143109|143110|143112|143114|143115|143116|143118|169438|169439|169440|169441|169442|169443|169444|169445|169446|169447|169449|169451|169452|169453|177163|177295|177427|178096|178394|200996|203502|203505|203508|203518|205021|205790|208455|208456|208457|208458|208460|209339|213650|225863|237502|237503|266254|331713|331715|331717|331719|331720|331724|331725|331731|331737|331742|331747|331754|331759|331760|331761|331763|331766|341962|341963|341965|341971|341975|341976|341979|341983|341989|341993|341995|341998|342000|342002|342004|342009|342011|342016|342018|342020|342022|342024|342031|342036|342039|342041|342043|342047|342049|342054|342056|347351|347352|347355|347356|347359|347366|347367|347368|347375|347377|347382|347393|347397|347400|347401|347404|347410|347412|347413|347417|347424|347425|347428|348685|348686|348689|348690|348691|348692|348693|348697|348698|348699|348711|348714|348720|348728|348729|348734|348735|348739|348744|348747|348753|348754|348761|348764|361036|361037|362183|362449|377104|377112|379073|422225|424667|425225|426274|430066|430067|430070|430073|445989|468073|468078|468082|468083|468996|468997|469003|469004|469006|469009|469412|469413|469578|469825|469826|469828|469831|469840|482178|506356|506369|506983|506992|532342|532346|532777|532783|536070|538249|538250|538251|539083|551328|551794|552210|552211|552212|553397|570240|570243|571970|571976|571980|571982|572665|572666|572668|572671|574764|574765|574766|574767|574768|580316|580319|580542|611428|614614|647325|647326|647327|647328|647329|647330|647331|647332|647333|647334|652892|653096|653375|653895|653987|678075|683147|688917|688918|695794|704625|741408|772214|791868|791869|791870|791871|791872|798737|816346|816367|821192|821193|822142|822143|822144|822278|846929|846930|846931|846932|846933|846934|846935|846936|846937|846938|846939|846940|846941|851775|851777|852279|852936|879416|879417|879418|879419|879420|879421|879422|879423|879424|879425|879426|879427|879428|879429|879430|879431|879432|879433|879434|879435|879436|879437|879438|879439|879440|879441|879442|879443|879444|879445|879446|879447|879448|879449|879450|879451|879452|879453|879454|879455|879456|879457|879458|879459|879460|879461|879462|879463|879464|879465|879466|879467|879468|879469|879470|906145|919801|919802|920392|928734|928735|938465|938466|938467|938468|938469|950553|950554|950555|950556|950557|950558|950559|950560|950561|960271|964055|964733|966168|971104|971105", + "text": "Pitt-Hopkins syndrome" + }, + { + "baseId": "22409|202822|264918|354023|361128|361131|361133|361138|361143|361144|361151|361154", + "text": "Severe intellectual deficiency" + }, + { + "baseId": "22411|200754|539083|551329|553397|611428|816346", + "text": "Corneal dystrophy, Fuchs endothelial, 3" + }, + { + "baseId": "22415|22416|22417|22418|39213|39214|39215|193573|201786|201793|201794|201795|263762|263763|263764|263765|263766|263767|263768|263769|263770|263771|263772|263773|406463|443637|446885|798547|980915", + "text": "Epilepsy, progressive myoclonic 4, with or without renal failure" + }, + { + "baseId": "22419", + "text": "Nephropathy with pretibial epidermolysis bullosa and deafness" + }, + { + "baseId": "22420|22421|22423|22424|22425|22426|22427|22429|22430|34607|34608|34609|34610|34611|34612|34613|34614|34615|34616|34618|34619|34620|34621|34622|34623|34624|34625|34626|34627|34628|34630|34631|34632|34633|34634|34635|34636|34638|34639|34639|34640|34641|34643|34644|34645|34646|34647|34648|34649|34650|34651|34652|34653|34654|34655|34656|34657|34660|34662|34663|34664|34666|34667|34668|47702|48359|48361|51284|125784|134783|134788|134789|191609|191609|203703|203724|203728|203729|203736|203783|203792|203794|203801|203802|208704|217258|217261|217263|227922|264761|266263|267975|353967|353968|353969|353970|353972|353973|353975|353980|353982|353985|353987|353989|353990|353991|353992|353993|353995|353997|353998|353999|354003|354018|354019|354024|354027|354028|354030|354032|354033|354034|354035|354036|354037|354038|354040|354043|361690|361908|410821|415696|424618|426351|446292|470987|481405|511018|533610|551748|614476|679939|791995|791996|791997|791998|791999|792000|792001|802031|802032|802034|802035|802037|806441|917741|964536|964537|964543|965428|965444|966804|983655", + "text": "Benign familial neonatal seizures 1" + }, + { + "baseId": "22425|22430", + "text": "Seizures, benign familial neonatal, 1, and/or myokymia" + }, + { + "baseId": "22427|22428|22431|34261|34262|34263|34264|34265|34266|34267|34269|34659|134793|134794|134795|134796|141743|141752|141753|141754|141755|191041|191676|202143|202149|202151|202156|202158|202160|202165|202168|202170|202171|202173|202174|202181|207503|240232|304135|304149|304150|304163|304164|304178|304180|304181|304182|304186|304187|304188|304189|304194|304200|304205|304206|304211|304217|304218|304222|304226|304229|304230|304235|304242|304243|304244|304260|304261|304263|304264|304265|307750|307761|307788|307793|307795|307810|307824|307837|307838|307839|307852|307853|307854|307861|307862|307863|307864|307867|307871|307883|307884|307886|307887|307891|307898|307919|312763|312782|312806|312807|312809|312817|312819|312820|312821|312827|312837|312838|312850|312856|312870|312880|312889|312890|312891|312894|312895|312906|312908|312909|312910|312911|312914|312915|312918|312919|312920|312921|312923|312925|312928|312929|312935|312939|312940|312942|312944|312945|312946|312947|312948|312949|312952|312957|312958|312960|312974|312975|312978|312979|312980|312981|312984|312990|312998|313007|313009|313012|313013|313026|313027|313028|313040|359883|371534|407314|421658|444213|486747|564635|564638|614317|636596|636600|692350|722848|898823|898824|898825|898826|898827|898828|898829|898830|898831|898832|898833|898834|898835|898836|898837|898838|898839|898840|898841|898842|898843|898844|898845|898846|898847|898848|898849|898850|898851|898852|898853|898854|898855|898856|898857|898858|898859|898860|898861|898862|898863|898864|898865|898866|898867|898868|898869|898870|898871|898872|898873|898874|898875|898876|898877|898878|898879|898880|898881|898882|898883|898884|898885|898886|898887|898888|898889|898890|898891|898892|898893|898894|898895|898896|898897|898898|898899|898900|900439|900440|900441|919140|964298", + "text": "Benign familial neonatal seizures 2" + }, + { + "baseId": "22427|22428|22429|22430|22430|34611|34639|34644|34647|34661|48359|48359|48360|48361|125784|125784|134777|134789|141729|177432|191609|195052|195445|198642|203703|203721|203722|203723|203724|203724|203725|203726|203727|203728|203736|203759|203764|203771|203772|203788|203792|203794|203795|203798|208704|208705|213659|217256|217257|217258|217258|217259|217260|217262|260235|264902|265110|267975|271459|350374|353971|353976|353977|353978|353981|353983|353984|353986|353988|353994|353996|354000|354001|354002|354004|354005|354006|354007|354008|354009|354010|354011|354012|354013|354014|354015|354016|354017|354020|354021|354022|354023|354025|354026|354029|354031|361066|361235|361236|404202|422344|424618|424618|426351|426752|431924|446292|470987|481406|486771|486772|486773|486774|511019|533610|553187|571338|572967|608865|614476|624870|679811|788941|791995|798003|800409|802033|802036|802038|806441|858357|858380|919924|919925|919926|929248|964538|964539|964540|964541|964542|964695|964696|965428|966804|970531|971152", + "text": "Early infantile epileptic encephalopathy 7" + }, + { + "baseId": "22432|22433|22434|22435|22440|22441|22443|22447|137040|231232|411012|495884|508964|535274|538261|538262|538263|538264|538265|538266|538267|538268|538269|538269|538270|538271|538272|538273|792588|805120|860727|919953|971160", + "text": "Waardenburg syndrome type 4C" + }, + { + "baseId": "22436|22444|22445|22446|39210|39211|76394", + "text": "Waardenburg syndrome type 2E, without neurologic involvement" + }, + { + "baseId": "22437|22438|22439|22442|22450|22451|137039|231226|231227|231228|231231|231235|347741|347742|347749|351585|351588|351589|351593|351594|351597|351600|351602|352543|352544|352545|352546|352547|352548|446415|508172|538269|694737|742898|805120|861057|891282|891283|891284|891285|891286|891287|891288|891289|891290|891291|891292|891293|891294|891295|903682|903690|964553|974884", + "text": "Peripheral demyelinating neuropathy, central dysmyelination, Waardenburg syndrome, and Hirschsprung disease" + }, + { + "baseId": "22441|22448|22449", + "text": "Waardenburg syndrome type 2E, with neurologic involvement" + }, + { + "baseId": "22452|23717", + "text": "sulfonamides, urea derivatives response - Efficacy" + }, + { + "baseId": "22455|22456|22457|22460|22460|22461|22464|105481|105486|105486|105489|105493|105493|105494|105494|105496|105497|105497|105502|105506|105506|105507|105510|105513|188197|215730|238089|270141|271292|333928|333931|333934|333935|333938|333939|333943|333946|333950|333952|333970|333971|333974|333976|333986|333988|333989|333990|333994|333995|333998|334000|343880|343880|343881|343881|343884|343893|343895|343896|343898|343903|343904|343907|343908|343912|343917|343918|343925|343926|343928|343929|343931|343933|349187|349190|349193|349195|349199|349202|349205|349207|349208|349210|349211|349212|349215|349218|349221|349222|349224|349225|349226|350102|350103|350106|350108|350110|350114|350116|350118|350119|350123|350124|350126|350127|350130|350133|350138|350143|350146|350147|350150|350155|350160|350165|350166|350168|359518|410641|413526|626259|705132|742013|776742|791942|818340|821268|821269|821270|821271|821272|847784|847785|847786|847787|847788|847789|852339|860591|882225|882226|882227|882228|882229|882230|882231|882232|882232|882233|882234|882235|882236|882237|882238|882239|882240|882241|882242|882243|882244|882245|882246|882247|882248|882249|882250|882251|882252|882253|882254|882255|882256|882257|882258|882259|929002|929003|929004|938740|938741|938742|938743|938744|938745|950831|950832|950833|958671|958672|960295|960923|965936", + "text": "Cone-rod dystrophy 2" + }, + { + "baseId": "22458|22459|22460|22461|22461|76522|105481|105486|105486|105489|105493|105493|105494|105494|105496|105497|105497|105500|105502|105506|105506|105510|105513|189101|213655|215730|238089|270141|271292|333928|333931|333934|333935|333938|333939|333943|333946|333950|333952|333970|333971|333974|333976|333986|333988|333989|333990|333994|333995|333998|334000|343880|343880|343881|343881|343884|343893|343895|343896|343898|343903|343904|343907|343908|343912|343917|343918|343925|343926|343928|343929|343931|343933|349187|349190|349193|349195|349199|349202|349205|349207|349208|349210|349211|349212|349215|349218|349221|349222|349224|349225|349226|350102|350103|350106|350108|350110|350114|350116|350118|350119|350123|350124|350126|350127|350130|350133|350138|350143|350146|350147|350150|350155|350160|350165|350166|350168|410641|413526|590333|705132|742013|776742|791942|821268|821269|821270|821271|821272|847784|847785|847786|847787|847788|847789|852339|860591|882225|882226|882227|882228|882229|882230|882231|882232|882232|882233|882234|882235|882236|882237|882238|882239|882240|882241|882242|882243|882244|882245|882246|882247|882248|882249|882250|882251|882252|882253|882254|882255|882256|882257|882258|882259|904208|929002|929003|929004|938740|938741|938742|938743|938744|938745|950831|950832|950833|958671|958672|960295|960923|962229|962230|962231|962232|962233|962234|962235|962236|962237|962238", + "text": "Leber congenital amaurosis 7" + }, + { + "baseId": "22465|22466|22467|22468|22469|22470|22472|22473|22474|22475|22476|192348|204430|215517|216957|226088|226089|255786|255790|255796|255798|272359|325616|335246|335255|335258|335283|341726|341737|341772|343237|414718|513634|681810|703733|798700|818326|818327|818328|818329|919661|961625|962178|970546|971544", + "text": "Townes-Brocks syndrome 1" + }, + { + "baseId": "22467|22473|192351|215517|215518|216957|237343|255791|255792|255793|255795|255796|255798|255800|255801|255802|266326|271828|272359|325638|335268|335283|343247|409645|415497|465770|466492|466495|529570|530025|530030|530032|530183|530347|574086|644745|644746|644747|693890|693892|843963|843964|927848|937484|937485", + "text": "Townes syndrome" + }, + { + "baseId": "22471|22473", + "text": "Townes-Brocks-branchiootorenal-like syndrome" + }, + { + "baseId": "22477|22478|22479|22480|22481|22482|22483|22484|22485|22486|22488|22490|22492|22497|22498|22499|22500|99004|99006|133154|133155|133156|133157|133158|133160|133161|133162|133163|133164|133165|133166|133167|133168|139016|139017|139626|139627|139628|139629|139630|139631|139632|139633|139634|139635|139636|139637|139638|139639|139640|139641|139642|139643|143033|143034|143035|143036|143037|143038|143039|143040|143041|143042|143043|143044|150700|150718|150732|150787|150803|150842|150842|150870|150906|150912|150982|151001|151008|151068|151068|151222|151438|151511|151529|151563|151565|151566|151600|151616|151636|151668|151676|151705|151748|151766|151829|151862|151900|151912|151912|151937|151997|152003|152006|152018|152031|152033|152091|152096|152098|152108|152118|152124|152157|152197|152251|152355|152410|152427|152457|152512|152585|152605|152653|152707|166279|181044|181047|181048|181049|181051|181052|181055|181057|181060|181061|181062|181063|181064|181065|181065|181066|181068|181068|181069|181071|181073|181075|181076|181077|181078|181079|181080|181081|181082|181083|181084|185460|185461|185462|185463|185464|185467|185471|185472|185474|185475|185476|185477|185478|185481|185482|185485|185487|185488|185489|185490|185492|185493|185494|185495|185496|185497|185498|185501|185503|185504|185505|185506|185509|185510|185511|185512|185513|185515|185516|185517|185518|185520|185522|185524|185525|185526|185527|185529|185530|185531|185532|185533|185534|185535|185537|185538|185539|185540|185541|185543|185544|185546|185547|185548|185549|185550|185551|185552|185553|185557|185558|185560|185561|185562|185563|186283|190028|190029|190030|195893|213428|213429|213430|213431|213432|213433|213434|213435|213436|213437|213438|213440|213441|213442|213443|213444|213445|213446|213447|213448|222781|222782|222783|222784|222785|222786|222787|222788|222789|222790|222792|222793|222794|222795|222796|222797|222798|222799|222800|222800|222801|232070|232074|232075|232077|232080|232082|232083|232084|232085|232088|236551|236553|236555|236556|236560|236561|236563|236565|236566|236571|236572|236575|236576|236577|236581|236582|236583|237751|243080|243286|243287|243288|243289|243290|243291|243293|243294|243295|243296|243297|243298|243299|243300|243301|243302|243303|243305|243306|243307|243308|243309|243310|245122|248540|248740|249194|256773|256774|260207|262411|264827|332542|332545|332546|332555|332558|332561|332567|332569|332571|332574|332582|332583|332586|332587|332588|332590|332591|332594|332596|332603|332604|332606|332609|342770|342776|342777|342780|342781|342782|342783|342786|342788|342797|342803|342811|342812|348114|348118|348120|348124|348126|349367|349368|349371|349372|349375|358970|358971|358972|358973|358974|358975|358976|358977|358978|360512|362212|363213|363216|363587|363620|363622|363623|363624|376148|376156|376162|377091|377097|377140|377154|377158|377277|377286|377287|377313|379206|379207|379215|379222|379229|379238|402826|402833|403156|403157|403158|403165|403169|403172|403173|403175|403178|403179|403181|403182|403183|403186|403187|403188|403190|403192|403193|403194|403196|403198|403207|403218|403220|403223|403225|403225|403229|403231|403243|403244|403365|403613|403621|403622|403627|403630|403631|403632|403634|403640|403641|403644|403645|403648|403649|403651|403655|403656|403657|403658|403659|403660|403675|403677|403687|410439|410440|410441|410443|410447|410448|410454|410457|410458|410460|410461|410462|410463|410466|410468|420685|420690|420691|420695|420699|420706|420710|420711|420719|420720|420726|420728|432946|432948|432949|432950|432951|432952|434508|439636|468443|468449|468455|468456|468458|468464|468466|468468|468477|468479|468481|468486|468488|468491|469084|469315|469333|469340|469345|469346|469350|469353|469354|469357|469362|469366|469376|469377|469384|469386|469392|469393|469396|469455|469748|469751|469756|469762|469765|469767|469776|469778|469780|469788|469789|469794|469805|469808|470369|470371|470382|470383|470386|470387|470394|470396|470399|470405|470411|470415|470419|470421|470426|470429|470432|479736|479738|479740|479760|479764|479776|479778|479799|479801|479802|479809|479810|479816|479834|479836|479840|479870|479879|480283|480284|480288|480291|480296|480298|483063|483074|483082|483098|483100|485262|485277|485292|485426|485458|485462|485481|485557|488038|495509|506719|532356|532388|532660|532661|532662|532665|532669|532673|532674|532675|532677|532680|532682|532683|532684|532685|532686|532687|532688|532689|532690|532692|532693|532695|532697|532698|532699|532701|532703|532704|532706|532709|532712|532713|532714|532720|532726|532735|532736|532738|533090|533092|533098|533102|533112|533113|533118|533123|533125|539385|539386|539387|539388|539389|539390|539391|570478|570482|570484|570486|570488|570489|570490|570493|570499|570500|570505|570507|572181|572183|572185|572188|572190|572194|572197|572198|572206|572207|572209|572211|572213|572215|572702|572703|572704|572710|572891|572892|572895|572902|572903|572905|572906|572907|572908|572909|573453|574864|574865|574866|574867|574872|574873|575072|575073|576036|576037|576038|576039|576040|576041|611263|611264|618974|618984|618986|618988|618991|619002|619902|621627|621628|647652|647653|647654|647655|647656|647657|647658|647659|647660|647661|647662|647663|647664|647665|647666|647667|647668|647669|647670|647671|647672|647673|647674|647675|647676|647677|647678|647679|647680|647681|647682|647683|647684|647685|647686|647687|647688|647689|647690|647691|647692|647693|647694|647695|653010|653144|653447|653488|653565|653566|653569|653571|677385|684780|694329|694330|756706|760751|772382|772386|772394|776535|776832|786045|786047|786048|786051|788247|791888|791889|791890|791891|791892|791893|814839|814840|814852|814869|814889|814898|814901|814914|814918|821232|821233|821234|821235|821236|821237|821238|821302|821303|847235|847236|847237|847238|847239|847240|847241|847242|847243|847244|847245|847246|847247|847248|847249|847250|847251|847252|847253|847254|847255|847256|847257|847258|847259|847260|847261|847262|847263|847264|847265|847266|847267|847268|847269|847270|847271|847272|847273|847274|847275|847276|847277|847278|851840|852846|852850|852852|852897|852949|852956|852958|879907|879908|879909|879910|879911|879912|879913|879914|879915|879916|879917|879918|879919|879920|879921|879922|879923|879924|879925|879926|879927|879928|879929|879930|879931|879932|879933|879934|879935|879936|879937|879938|879939|879940|879941|879942|879943|879944|879945|914829|914836|914837|914850|928827|928828|928829|928830|928831|928832|928833|928834|928835|928836|928837|928838|928839|928840|938565|938566|938567|938568|938569|938570|938571|938572|938573|938574|938575|940468|940469|941224|950662|950663|950664|950665|950666|950667|950668|950669|958529|958530|958531|958532|960281|960282|960913|967214|967215|970099|972604|983468", + "text": "Peutz-Jeghers syndrome" + }, + { + "baseId": "22487|39318|150842|151068|151912|181065|181068|222800|239444|239474|239498|394098|394101|394222|394336|394339|403225|453508|453809|453899|563999", + "text": "Malignant tumor of testis" + }, + { + "baseId": "22489|22494|22495|22496", + "text": "Cutaneous malignant melanoma 1" + }, + { + "baseId": "22489|22875|22876|22877|24448|24451|27639|28695|28895|28899|28902|28904|28905|28938|28939|28940|29000|29005|29007|29008|29009|29011|29013|29346|31968|32617|32621|32625|32627|32628|38747|48247|48837|48858|48859|48938|48939|48940|48941|49070|49214|49216|49251|53979|53980|53982|53983|83949|85317|85318|87578|88528|97376|172332|174042|174177|174179|179094|198628|216786|224866|263939|359197|359643|362750|362751|362752|362753|362754|362755|362756|362773|362774|362783|362784|362785|362786|362787|362788|362789|362790|362791|362792|362793|362794|362795|362796|362797|362798|362800|362801|362802|362803|362806|362807|362809|362810|362811|362812|362818|362819|362820|362821|362822|362823|362824|362825|362826|362827|362834|362835|362836|362856|362857|362858|362859|362860|362861|362862|362863|362880|362881|362906|362907|362933|362936|362948|362949|362950|362951|362952|362953|363047|363048|363049|363050|363051|363052|363053|363054|363055|363056|363057|363058|363059|363060|363061|363062|363063|363064|363065|363099|363102|363103|363104|363105|363106|363108|363119|363135|363162|363163|363164|363165|363166|363167|363168|363169|363174|363236|363237|363241|407660|514029", + "text": "Melanoma" + }, + { + "baseId": "22501|22502|22503|22504|22505|22506|22507|22509|39207|39208|39209|49907|134762|134763|134764|141684|141685|192326|192326|201048|201049|201049|201051|201052|201053|201054|201055|201055|201057|201057|201058|201060|201061|201062|206727|238152|238153|266314|271776|276764|276765|276766|276771|276772|276775|276777|276778|276779|276780|276787|276788|277031|277033|277034|277037|277043|277044|277057|277064|277070|277071|277073|277614|277615|277617|277626|277643|277669|277676|277681|277683|277684|277687|277768|277769|277772|277774|277775|277778|277779|277782|364480|364538|364563|364622|390841|390845|390846|390848|427657|442645|447211|447215|447318|447394|498080|515169|515169|515172|515212|556707|556709|556711|558176|626984|626985|626986|626987|626988|626989|822879|822880|822881|822882|822883|822884|822885|822886|822887|862502|862503|862504|862505|862506|862507|862508|862509|862510|862511|862512|862513|862514|862515|862516|862517|862518|862519|862520|862521|862522|862523|862524|862525|862526|862527|862528|862529|862530|862531|862532|862533|862534|862535|921691|921692|921693|921694|921695|930099|930100|941518|941519|941520|941521|941522|952115|964133", + "text": "EAST syndrome" + }, + { + "baseId": "22501|263305|440711|980561", + "text": "Spastic diplegia" + }, + { + "baseId": "22501|32043|32043|178258|263276|361233|362233|514116|622035|678050|966399|971381", + "text": "Bilateral sensorineural hearing impairment" + }, + { + "baseId": "22501", + "text": "Renal tubular dysfunction" + }, + { + "baseId": "22509|206727", + "text": "KCNJ10-Related Disorders" + }, + { + "baseId": "22510|22511|22512|22514|22515|22516|224659|224660|224661|224662|224663|224664|578361|918554", + "text": "Lipid proteinosis" + }, + { + "baseId": "22517|22518|22519|22521|22522|22523|167391|190380|212614|212614|213813|213814|221739|240172|240173|244506|252932|252933|252934|303433|303434|306832|306834|311679|311681|369273|369610|369611|369980|371362|396034|396139|396419|396422|407258|425764|433611|441143|441144|441146|444162|456919|456922|456923|456925|457448|457451|457455|457590|457593|457917|457918|457923|495216|502159|513581|522263|522820|522826|522828|522834|523065|523269|523374|561763|562170|562179|564415|566151|566153|609669|636336|636337|636338|636339|636340|636341|636342|636343|655804|683935|687114|689885|722659|766403|775277|782931|819916|819917|833835|833836|833837|833838|833839|833840|833841|833842|833843|833844|833845|833846|851658|898405|898406|898407|898408|898409|898410|898411|898412|900402|904502|924904|924905|924906|924907|924908|933993|933994|933995|933996|933997|933998|933999|945758|945759|945760|945761|945762|955216|962980", + "text": "Charcot-Marie-Tooth disease axonal type 2F" + }, + { + "baseId": "22517|22518|22519|22520|22522|22523|22524|190380|212614|212614|240172|252932|252933|252934|303433|303434|306832|306834|311679|311681|369610|371362|407258|441143|441144|522820|522828|540450|551460|551461|551462|655804|687114|898405|898406|898407|898408|898409|898410|898411|898412|900402|945761", + "text": "Distal hereditary motor neuronopathy type 2B" + }, + { + "baseId": "22525", + "text": "Age-related macular degeneration 7" + }, + { + "baseId": "22525", + "text": "Susceptibility to neovascular type of age-related macular degeneration" + }, + { + "baseId": "22526|22527|22528|22529|34176|34177|34178|39200|165895|165896|165897|165898|165899|320969|550880|858653", + "text": "CARASIL" + }, + { + "baseId": "22526", + "text": "HTRA1-related cerebral small vessel disease" + }, + { + "baseId": "22527|263239|514161|514195|514201|789341|789342|789343|802096|806288|904354", + "text": "Cognitive impairment" + }, + { + "baseId": "22527", + "text": "Personality changes" + }, + { + "baseId": "22527", + "text": "Small vessel cerebrovascular disease" + }, + { + "baseId": "22527|222926|222927|222928|222929|514223|514224|514225|514226|514227|514228|514229|964340|965880", + "text": "Cerebral arteriopathy, autosomal dominant, with subcortical infarcts and leukoencephalopathy, type 2" + }, + { + "baseId": "22530|22531|22532|513210", + "text": "Spondylo-megaepiphyseal-metaphyseal dysplasia" + }, + { + "baseId": "22534|22535|45735|138608|138610|236946|452155|452531|519195|519196|519197|519333|519341|519344|559451|559453|631265|631266|631267|720421|730212|748220|827979|827980|918162|943503|943504|943505", + "text": "Myd88 deficiency" + }, + { + "baseId": "22536|39199|136176|136177|136178|194374|205776|205777|208144|215733|265482|270785|321956|321958|331256|338053|338054|373322|445266|463934|513639|528556|528946|528947|528950|610618|620501|626234|652631|789128|873027|873028|873029|873030|873031|873032|873033|873034|876469|876470|983844", + "text": "Pontocerebellar hypoplasia type 1A" + }, + { + "baseId": "22536|48180|360506|621025|622148", + "text": "Multiple congenital anomalies" + }, + { + "baseId": "22536|39199|136176|136178|191026|194374|205777|208144|215733|265482|268654|270785|321956|331256|338053|373322|409180|445264|445265|445266|464502|512107|528555|528952|566825|566833|566842|566850|566852|567774|568542|568545|569167|569178|569181|569183|573104|573106|610618|642970|642971|642972|642973|642974|642975|642976|642977|642978|642979|642980|642981|642982|652369|652569|652631|652900|693634|695634|714299|754258|820662|820663|842067|842068|842069|842070|842071|842072|842073|842074|842075|842076|842077|852025|852027|927247|927248|927249|927250|927251|936828|940320|941078|948775|948776|948777|948778|957361|957362|957363|957364|957365|960101|960816|979553|979554|979555|979556|979557|979558", + "text": "Pontocerebellar hypoplasia type 1" + }, + { + "baseId": "22536|70511|136139|136140|171752|194356|315006|440896|454067|487068|487069|521591|563203|564114|576821|576823|621743|621744|621745|622790|625212|633999|651260|788956|819603|861397|904360|916957|917447|974495", + "text": "Spinal muscular atrophy" + }, + { + "baseId": "22537|22538|22539|54162|54163|54164|54165|54166|54168|54169|175943|175944|175945|175946|175948|176086|176089|176092|190836|227360|230541|321447|321453|321456|321458|321464|330711|330712|330713|330714|330716|330717|330723|330724|330725|337342|337344|337351|337352|337356|337357|337377|339371|339379|339386|339389|339391|339392|339398|339399|339401|339407|389245|389246|625876|857685|860125|872698|872699|872700|872701|872702|872703|872704|872705|872706|872707|872708|872709|872710|872711|872712|872713|872714|872715|876453", + "text": "Deafness, autosomal recessive 35" + }, + { + "baseId": "22542", + "text": "Waardenburg syndrome type 2D" + }, + { + "baseId": "22543|28882|28883|28884|28886|28887|28888|28889|28890|28900|28903|50038|50039|50040|50043|50045|138360|138368|171097|171098|221464|221466|221467|221469|221471|221472|221473|221474|227193|239444|239444|239458|239464|239467|239471|239474|239477|239482|239488|239491|239495|239497|239498|251500|251502|251504|251505|293581|293582|293587|293588|293595|293596|293612|295032|295038|295039|295040|298678|298679|298680|298681|298683|298688|298703|298704|298711|305476|305477|305481|309352|309358|309359|309361|314683|314684|314685|314686|314691|314692|314693|314697|314698|314703|380482|394068|394077|394098|394105|394222|394334|394336|394339|394469|394518|394541|453445|453508|453809|453899|520120|520401|562207|563999|723133|829329|890761|890762|890763|890764|890765|890766|890767|890768|890769|890770|890771|890772|890773|890774|890775|890776|890777|890778|890779|890780|890781|890782|890783|891800|899736|899737|899738|899739|899740|899741|899742|899743|899744|899745|899746|899747|899748|899749", + "text": "Partial albinism" + }, + { + "baseId": "22544|28028|39430|45846|255586|514055|918921|966695|966696|971020", + "text": "Clubfoot" + }, + { + "baseId": "22545|22546|22547|22548|22549|33483|187106|249570|249571|249572|277487|277488|277490|277495|277502|277503|277679|277680|277690|277697|277699|278575|278576|278580|278584|278585|278594|278598|278605|278612|278613|278625|278626|278627|278631|278659|278662|434564|789888|789889|789890|862853|862854|862855|862856|862857|862858|862859|862860|862861|862862|862863|862864|862865|862866|862867|862868|918581|964136", + "text": "Short stature-pituitary and cerebellar defects-small sella turcica syndrome" + }, + { + "baseId": "22550|22551|22552|22553|48432|48433|48434|439278|905865", + "text": "Mitochondrial complex 1 deficiency, nuclear type 2" + }, + { + "baseId": "22554|211110|211112|966197", + "text": "Mitochondrial complex 1 deficiency, nuclear type 13" + }, + { + "baseId": "22555|22555|22555|22556|22556|22557|22558|22558|22558|22559|99009|99009|99011|99012|99013|99015|99016|99018|99019|101774|135328|135331|177929|177930|177936|186748|186748|186749|186750|186751|186751|186752|186753|186754|186754|186755|186755|186756|186757|186758|186758|186759|186760|191498|191766|191767|192238|194834|194835|194836|199789|199789|214067|214069|214069|226052|226052|237007|247025|252970|252971|252973|252974|252975|252976|252977|259881|259881|266955|267046|267626|268098|268900|269237|269239|270884|271229|271283|271739|272009|272261|272493|272694|272943|272958|275143|275486|275498|275801|276002|276868|276869|277804|277840|280468|281942|286884|286896|286909|289994|290437|299206|299218|299221|300174|300188|300204|301634|301635|303571|303581|303582|303594|303595|303600|303601|303608|303609|305891|305934|305935|307015|307021|307023|307030|307033|307057|307061|307062|307381|307383|307395|307601|307606|307616|309980|311933|311935|311936|311940|311960|311966|311973|311974|311975|311977|314174|315287|315317|315361|315362|315363|318465|318486|320714|320718|320719|326608|326788|326801|327733|327741|327742|332767|332829|332847|334420|334443|334498|334528|337502|337524|337540|344170|344173|344182|345578|345586|347084|347093|351119|351141|351148|353065|353190|353191|357586|357587|357588|357589|357590|357591|357592|357593|357593|357594|357595|357596|357597|357597|357598|357599|357600|357601|357602|357603|357604|357605|357606|357607|357608|357609|357610|357611|357612|357613|357614|357615|357616|357617|357618|357619|357620|357621|357622|357622|357623|357624|357625|357626|357627|357628|415115|434621|434621|481440|481442|486419|487227|489369|489389|489456|489595|489836|491365|492065|493742|494170|522268|538396|544081|544294|544295|544297|544298|544300|544307|544320|544331|544333|544341|544342|544344|544347|544355|544596|544603|544605|544608|544610|544611|544614|544617|544617|544619|544620|544621|544623|544626|544627|544628|544637|544642|544643|544644|544649|544656|544662|544664|544667|544669|544671|544675|544679|544682|544684|544691|544697|544699|544706|544711|544713|544715|544717|544723|544725|552119|564500|578463|582759|582791|585438|585607|585811|587108|587439|588430|589104|619942|619943|620279|621279|636446|636447|636448|636449|636450|636451|636452|651707|683139|711181|711182|722721|722723|736326|736327|736328|736329|750830|759661|766445|766446|766447|766448|766450|766453|766454|766455|766456|766457|766458|766459|766461|766462|766463|775279|775422|782946|782949|787566|791139|791274|791275|798917|798917|801650|801651|801652|801653|801654|801655|801656|818389|818403|819923|819924|833930|833931|833932|833933|833934|833935|833936|833937|833938|833939|833940|833941|833942|833943|833944|833945|852383|852388|852389|898497|898498|898499|898500|898501|898502|898503|898504|898505|898506|898507|898508|898509|898510|898511|898512|898513|898514|898515|898516|898517|898518|900413|900414|900415|900416|900417|900418|955250", + "text": "Peroxisome biogenesis disorder 1A (Zellweger)" + }, + { + "baseId": "22555|22555|22555|22556|22558|22558|22558|99009|186748|186751|186754|186755|186758|194834|199789|199789|214069|226052|259881|266955|271033|271283|272958|357586|357587|357588|357589|357590|357591|357593|357593|357594|357595|357596|357597|357597|357598|357599|357600|357601|357602|357603|357604|357605|357606|357607|357608|357609|357610|357611|357612|357613|357614|357615|357616|357617|357618|357619|357620|357621|357622|357622|357623|357624|357625|357626|357627|357628|434621|486419|487227|489836|493742|538396|544617|578463|582791|626312|798917|801650|801651|801652|801653|801654|801655|801656|955250", + "text": "Peroxisome biogenesis disorder 1B" + }, + { + "baseId": "22555|22555|22556|22558|22558|194834|199789|214067|214068|214069|214070|226052|226053|266955|272958|307030|357592|487227|489836|493742|538396|578463|955250", + "text": "Deafness enamel hypoplasia nail defects" + }, + { + "baseId": "22555", + "text": "Peroxisomal disorder" + }, + { + "baseId": "22555|22558|226047|281791|485898|623144|623176", + "text": "Peroxisome biogenesis disorders" + }, + { + "baseId": "22560", + "text": "Celiac disease 4" + }, + { + "baseId": "22561|22562|22563|22564|22565|22566", + "text": "Mitochondrial complex 4 deficiency, nuclear type 3" + }, + { + "baseId": "22567|54379|54381|54382|54382|54383|54383|81088|173573|173574|173577|173578|173709|173709|173711|173712|173713|173714|173714|173715|173718|173718|191802|191802|229284|229286|229286|229290|229292|229293|229294|229294|229295|270330|270875|270875|295658|295659|295668|295669|295676|295677|295682|295686|295686|295690|295693|295694|295702|295703|295708|295709|297462|297463|297469|297484|297495|297501|297502|297502|297513|297513|297515|297516|297527|297528|297529|297549|301341|301351|301368|301377|301380|301395|301522|301523|301527|301528|301536|301538|301539|301540|301542|301547|301552|301553|301553|301554|301554|301561|301561|301564|301577|301578|301578|301580|301596|413208|438303|443695|454665|454670|454670|454672|454746|454761|454764|455210|455215|455217|455226|455233|455477|455489|455498|455512|496385|496801|520821|520821|520822|520827|520836|520836|521067|521070|521087|521216|521222|521223|521223|521225|521229|521231|521233|521233|521269|521271|521279|521285|538984|560175|560177|560177|560284|560286|560286|560288|560290|560292|562894|562898|562901|564862|564863|564864|564865|564870|584463|590277|620188|633524|633525|633526|633527|633528|633529|633530|633531|633532|633533|633534|633535|633536|633537|633538|633539|633540|633541|633542|633543|677278|698878|709681|721262|749277|749278|764930|764931|775018|777433|779083|782190|782193|790520|790521|801810|816453|819562|830402|830403|830404|830405|830406|830407|830408|830409|830410|830411|830412|830413|830414|830415|830416|830417|830418|830419|830420|830421|893113|893114|893115|893116|893117|893118|893119|893120|893121|893122|893123|893124|893125|893126|893127|893128|893129|893130|893131|893131|893132|893133|893134|893135|893136|893137|893138|893139|893140|893141|896047|896048|896049|896050|896051|896052|918925|918926|918927|923904|923905|923906|923907|923908|923909|923910|923911|923912|923913|923914|923915|932748|932749|932750|932751|932752|944433|944434|944435|944436|944437|944439|944440|954062|954063|954064|954065|954066|954067", + "text": "Deafness, autosomal dominant 1" + }, + { + "baseId": "22568|22569|22572|22573|22574|190447|273149|297678|297679|297687|299869|304055|304057|304410|353705|894419|894420", + "text": "Congenital absence of salivary gland" + }, + { + "baseId": "22570|22571|22572|22573|28335|28336|28337|31393|304410|309577|314378|314379|320877|320916|320937|353705|535686|537787|537788|537789|537790|537791|537792|537793|537868|537869|576111|798979|918969", + "text": "Levy-Hollister syndrome" + }, + { + "baseId": "22575|22576|22577|22578|100035|100036|100042|100045|100047|100050|100051|100058|100065|100067|100068|100074|100076|100080|100085|100091|100093|100096|100097|100103|100106|100116|100126|100132|100138|100139|100140|100142|100147|100148|100150|100153|100154|100157|100160|138340|138400|138411|138412|138424|138428|138432|138436|138439|138445|138450|138456|138465|138469|138470|139347|168898|168899|168900|168901|168902|168903|168904|168905|168906|168907|168908|168909|168910|168911|168912|168913|168914|168916|168917|168918|168919|168920|168921|168922|168924|168925|168926|168927|168928|168929|168930|168933|168934|168935|168936|168939|168940|168941|168942|168943|168944|168945|168946|168947|168948|168952|168953|168954|168955|168956|168957|168958|168959|168961|168962|168963|168964|168965|168966|168970|168974|168975|168976|168977|168979|177009|177023|177139|177140|177403|181473|181474|181475|181476|181477|181478|181479|181480|191028|193850|193851|194116|195126|205016|207951|207952|207955|207956|207957|207958|207959|207962|207963|207965|207968|207970|213621|246995|260946|262270|263871|264679|264683|264689|265730|265890|270086|271071|271113|271508|273932|317313|325165|325169|331348|335228|353905|354172|359952|361205|361970|362384|362446|384441|390698|404699|408674|408678|408681|408682|411510|424353|424354|424355|424356|424357|424358|424359|424360|424361|424362|424363|424364|424365|426746|426747|429418|429423|429425|429427|432470|438659|439157|441546|445018|445025|463112|481318|481408|481409|488971|490976|493725|495537|495553|512004|512009|512013|513611|514313|514316|527191|527445|527447|527741|537900|537901|537902|537903|537904|537905|537906|537907|537908|537909|537910|537911|537912|537913|537914|537915|537916|537917|537918|537919|537920|537921|537922|537923|537924|537925|537926|537927|537928|537929|537930|537931|537933|537934|537935|537936|537938|537939|537940|537941|537942|537943|537944|537945|537946|537947|537948|537949|537950|537951|537952|537953|537954|537955|537956|537957|537958|537959|537960|537961|537962|537964|537965|537966|537967|537968|537969|537970|537971|537972|537973|537974|537975|537976|537977|537978|537979|537980|537981|537982|537983|537984|537985|537986|537987|537988|537989|537990|537991|537992|537993|537994|537995|537996|537997|537998|537999|538000|538001|538002|538003|538004|538005|538006|538007|538008|538009|538010|538011|538012|538013|538014|538015|538016|538017|538312|538313|550365|552162|552163|553182|556481|565506|568084|589842|610610|611412|611413|611415|613608|614371|614372|614373|614374|614375|614376|614377|619846|622208|622413|622692|623031|623310|623311|624859|624876|626214|626215|641162|641169|677438|679787|679788|679789|682821|682822|682823|682824|725118|791244|791245|791246|791247|791248|791249|791250|791251|791252|798656|799685|799686|799687|799688|799689|801550|805749|816323|818144|858567|858641|861641|903593|906200|919439|919440|919441|919442|919443|919444|919445|919446|919447|936142|961305|961653|962049|962166|962167|963759|963761|963762|963764|964384|964385|964386|964387|964388|964676|964851|964852|965285|965286|965915|969750|969751|969752|969753|969754|969755|969756|969757|969758|969792|969793|969794|969795|969796|969797|969798|969799|969800|969801|969802|969803|969804|969805|969806|969807|969808|969809|969810|969811|969812|969813|969814|969815|969816|969817|969818|969819|969820|969821|969822|969823|969824|969825|969826|969827|969828|969829|969830|969831|969832|969833|969834|969835|969836|969837|969838|969839|969840|969841|969842|969843|969844|969845|969846|969847|969848|969849|969850|969851|969852|969853|969854|969855|969856|969857|969858|969859|969860|969861|970141|970541|970962|970963|970964|970965|970966|971375|971550|973032|973856|975863|975864|975865|975866|976662|977252|977253|977254|977255|980468|980469", + "text": "Kabuki syndrome 1" + }, + { + "baseId": "22575|100034|100035|100036|100038|100045|100049|100052|100053|100054|100060|100062|100065|100067|100068|100072|100074|100076|100078|100080|100089|100094|100096|100097|100098|100102|100103|100107|100109|100114|100116|100117|100120|100122|100126|100127|100131|100133|100136|100137|100138|100139|100140|100142|100144|100147|100150|100156|100157|100160|138400|138403|138406|138412|138434|138436|138445|138446|138450|138456|138469|138470|138473|168899|168912|168920|168922|168925|168931|168940|168943|168944|168950|168972|168973|177403|177799|190821|191028|193121|193335|193844|193850|193943|194116|194750|195126|207954|207966|237418|254590|254592|264679|264683|264689|265730|266250|267420|268048|269630|270518|271071|273203|274276|317309|317314|317348|317349|317364|317372|317379|325115|325132|325134|325169|325170|331232|331262|331298|331304|331309|331311|331335|331343|331403|332790|359967|362446|429417|438975|462191|462194|462197|462204|462205|462207|462216|462237|462243|462482|462484|462486|462494|462498|462998|463000|463002|463004|463112|463113|463129|463130|491870|503943|512009|527175|527177|527181|527188|527189|527191|527194|527196|527197|527199|527445|527447|527735|527741|527747|527750|537909|537936|537941|537959|537990|565488|565501|565506|565511|565515|565518|565521|565526|565530|566845|566849|566858|568060|568064|568065|568067|568071|568073|568075|568084|568085|568087|571873|571878|588416|641150|641151|641152|641153|641154|641155|641156|641157|641158|641159|641160|641161|641162|641163|641164|641165|641166|641167|641168|641169|641170|641171|641172|641173|641174|641175|641176|641177|641178|641179|641180|652249|652493|652711|688000|693211|693212|693213|693215|693218|693220|702321|702322|702328|702331|702332|702336|725119|738667|738668|738675|738676|753418|769148|776063|822069|822070|822071|822072|822073|822074|839970|839971|839972|839973|839974|839975|839976|839977|839978|839979|839980|839981|839982|839983|839984|839985|839986|839987|839988|839989|839990|839991|839992|851509|852479|926642|926643|926644|926645|926646|926647|926648|926649|926650|926651|936139|936140|936141|936142|936143|936144|948047|948048|948049|948050|956891|956892|956893|960788", + "text": "Kabuki syndrome" + }, + { + "baseId": "22579|22580|22581|22582|22584|22585|76572|192330|192331|193502|195309|250474|250476|250477|267839|268065|272108|283834|284473|284474|284483|284484|284485|284487|284488|286485|490869|550897|584163|620047|719512|730097|747159|790149|883179|883180|883181|883182|883183|883184|883185|883186|883187|883188|883189|883190|883191|883192|883193|883194|883195|883196|883197|883198|883199|883200|883201|883202|883203|883204|883205|883206|887233", + "text": "Multiple epiphyseal dysplasia type 5" + }, + { + "baseId": "22581|918728|918729", + "text": "Osteoarthritis of distal interphalangeal joint" + }, + { + "baseId": "22583", + "text": "Spondyloepimetaphyseal dysplasia Matrilin-3 related" + }, + { + "baseId": "22584|250474|283829|284474|300941|308567|308577|308607|336275|345986|350356|350371|353490|353554", + "text": "Multiple Epiphyseal Dysplasia, Dominant" + }, + { + "baseId": "22586|22587|22588|22589|22590|22591|22592|251435|251436|251437|251438|251439|251440|264193|293271|293272|293273|293274|293280|293282|293283|293287|293288|293292|293296|293298|293308|293310|293311|293313|293314|293315|293330|293331|293335|293336|293337|293342|293344|293345|293347|293351|293353|293354|293355|293356|293362|293368|293374|293375|293378|293379|293382|293386|294607|294610|294612|294613|294614|294616|294617|294618|294619|294632|294638|294642|294654|294656|294663|294664|294685|294686|294687|294688|294689|294693|294697|294704|294705|294706|294709|294711|294712|294720|294721|294726|294734|294740|294743|294744|294745|294750|298154|298170|298175|298176|298177|298178|298179|298183|298184|298191|298192|298197|298200|298201|298202|298226|298236|298241|298248|298253|298254|298259|298260|298261|298262|298263|298264|298267|298268|298270|298271|298272|298273|298276|298277|298278|298280|298281|298282|298289|298296|298301|298307|298308|298312|298313|298314|298315|298316|298317|298320|298326|298327|298329|298332|298333|298334|298337|298338|298341|298342|298343|298344|298345|298346|298347|298352|298361|298364|298369|298370|298371|298372|298373|298374|298375|298386|298387|298391|298392|298393|298409|298410|298416|453124|453384|453386|453874|453878|512815|519869|519876|519879|519886|520116|520119|520128|520158|520160|520162|520163|559653|559655|559657|559816|559818|559820|561985|561989|561992|563644|563654|563660|614277|632141|632142|632143|632144|632145|632146|632147|632148|632149|632150|632151|632152|632153|632154|632155|632156|632157|632158|651156|651175|698492|709327|720943|720944|720946|734619|748916|748918|748922|764443|764446|764447|764449|774947|781947|781948|787204|819475|819478|829062|829063|829064|829065|829066|829067|829068|829069|829070|829071|829072|829073|890626|890627|890628|890629|890630|890631|891789|923488|923489|923490|923491|923492|932289|932290|932291|932292|932293|932294|932295|932296|943956|943957|943958|943959|943960|953756|953757|953758|953759|953760|953761|961940|969623|969656", + "text": "Fibrous dysplasia of jaw" + }, + { + "baseId": "22593|22594|22595|22596|22598|132462|132464|132467|132472|136585|255056|255057|255058|255059|255060|268435|321304|321305|321309|321311|321312|321313|321317|321319|321321|321323|321324|321327|321329|321332|321333|321334|321339|321340|321344|321346|330514|330515|330516|330526|330527|330533|330536|330537|330540|330541|330543|330544|330546|330558|330570|330573|330576|330579|330580|337092|337108|337127|337136|337139|337140|337149|337151|337157|337160|337165|337174|337176|337179|337190|337191|337197|337198|337201|337204|337205|337207|337212|339033|339035|339039|339052|339056|339059|339068|339072|339074|339075|339083|339089|339095|339099|339101|339108|339118|339121|339122|339133|480525|480526|586928|702982|702983|702985|702986|702988|714235|714236|714237|714238|714238|725801|725802|725805|725807|739312|739313|739319|739320|739328|744825|754151|760114|784787|816325|816325|872545|872546|872547|872548|872549|872550|872551|872552|872553|872554|872555|872556|872557|872558|872559|872560|872561|872562|872563|872564|872565|872566|872567|872568|872569|872570|872571|872572|872573|872574|872575|872576|872577|872578|872579|872580|872581|872582|872583|872584|872585|872586|872587|872588|872589|872590|872591|872592|872593|872594|872595|872596|872597|872598|872599|872600|872601|872602|872603|872604|872605|872606|872607|872608|872609|872610|872611|872612|872613|872614|872615|872616|872617|872618|872619|872620|872621|872622|876444|876445|876446|876447|876448", + "text": "Glaucoma 3, primary congenital, d" + }, + { + "baseId": "22593|22597|40306|40307|40308|40309|480525|714238|816325|976016", + "text": "Microspherophakia" + }, + { + "baseId": "22600|200879|200880|200881|200882|200883|200884|237349|461336|461338|461340|461501|461856|462213|514285|514286|526393|526430|526685|526921|539036|564846|566044|566046|566047|570819|640321|640322|640323|640324|687811|687812|693084|693085|693086|693087|693089|695534|701884|752806|752808|777956|838755|838756|851449|851897|926342|935687|935688|956587|960004", + "text": "Dental anomalies and short stature" + }, + { + "baseId": "22601|172300|205196|315159|315163|315211|315212|315213|315214|315218|321981|322027|322030|322032|322033|328076|328136|328148|328154|328155|329321|329332|329343|329394|329396|329408|329409|329411|329413|353203|372716|408474|614168|672084|738296|752966|788858|800955|868782|868798|868799|868800|868801|868802|872136|961788|963068", + "text": "Deficiency of transaldolase" + }, + { + "baseId": "22602|22604", + "text": "Conotruncal anomaly face syndrome/velocardiofacial syndrome" + }, + { + "baseId": "22603|259105|259112|377376|379812|426368|469894|469895|470834|471340|481486|507476|510868|510870|510871|510873|510873|510874|510875|510876|510877|510878|534029|534065|534066|534153|551749|571661|571699|571700|573262|573917|573944|573946|577904|613890|613924|613925|613929|613983|613988|614043|614485|624092|624093|624094|624095|624096|649180|649181|649182|649183|649184|649185|649186|649187|649188|653267|653592|654002|684910|684911|684912|684913|684914|684915|685470|694669|694670|694671|694672|694673|694674|694675|694676|695865|717309|757953|786552|792018|793858|794079|801255|821386|821388|821389|821399|822206|822207|849036|849037|849038|849039|849040|849041|849042|849043|849044|849045|849046|849047|849048|849049|849050|849051|852420|904191|929397|929398|929399|929400|929401|929402|929403|929404|939194|939195|939196|939197|939198|940522|951330|951331|951332|951333|951334|951335|951336|951337|951338|951339|951340|951341|959024|959025|960958|961635|980490", + "text": "DiGeorge sequence" + }, + { + "baseId": "22605|22606|510873|614485|624092|624093|624094|624095|624096|654002|961635|980490", + "text": "Shprintzen syndrome" + }, + { + "baseId": "22614|377479|426375|471580|534298|571992|626321|649493|649494|649495|649496|653721|742891|773545|792061|792062|849338|849339|939314|951473|959095|961990", + "text": "Neutrophil immunodeficiency syndrome" + }, + { + "baseId": "22615", + "text": "UCP3 POLYMORPHISM G/A" + }, + { + "baseId": "22615|22616|22618", + "text": "Obesity, severe, and type II diabetes" + }, + { + "baseId": "22617", + "text": "UCP3 POLYMORPHISM, EXON 6 SPLICE DONOR JUNCTION" + }, + { + "baseId": "22617|23169", + "text": "Morbid obesity" + }, + { + "baseId": "22619|22620|22622|22623|22624|22625|22626|22627", + "text": "Refsum disease, adult, 1" + }, + { + "baseId": "22619|22620|22621|22819|22826|22827|47476|101248|135337|177946|195353|195700|205162|252145|299171|299175|301593|301608|306284|309744|309747|309749|309753|309754|309772|314631|314632|314634|314641|314642|314643|320665|320666|320677|320694|320696|320699|321240|321243|321244|321247|321254|321262|321286|321296|421782|437850|489565|492277|545047|545386|545665|620348|865609|865610|865611|865612|865613|865614|865615|865616|865617|865618|868458", + "text": "Phytanic acid storage disease" + }, + { + "baseId": "22628|22629|538942|576424|578367|626095|718309", + "text": "Bartter syndrome, type 4b" + }, + { + "baseId": "22630|22631|22632|22633|22634|22635|22636|213516|354158|440397|496605|513894|513895|576426|578367|626096|626097|789866|789867|789868|789869|789870|789871|792834|904205|918575|918576|918577|962664|962848|980299", + "text": "Bartter syndrome type 3" + }, + { + "baseId": "22637|22640", + "text": "BARTTER SYNDROME, TYPE 4B, WITH SENSORINEURAL DEAFNESS" + }, + { + "baseId": "22638|22639", + "text": "Bartter syndrome, type 3, with hypocalciuria" + }, + { + "baseId": "22641|29966|29987|215789", + "text": "Clear cell carcinoma of kidney" + }, + { + "baseId": "22642|22643|22644|54043|54045|54130|140875|173997|174135|229489|245264|249662|249663|258459|278403|278404|278407|278408|278409|278415|278417|278418|278419|278425|278428|278431|278432|278434|278440|278442|278448|278450|278452|278475|278477|278481|278483|278484|278485|278487|278489|278497|278500|278501|278502|278505|278506|278507|278508|278509|278519|278520|278521|278522|278544|278554|278555|278558|278560|278563|279623|279624|279626|279628|279630|279631|279632|279633|279634|279641|279643|279663|279664|279667|279679|279681|279682|279691|279694|279697|279699|279700|279701|279712|279713|279722|279723|279725|279726|279729|279742|279745|279747|279750|279752|279759|279773|279785|279786|279788|279789|279790|279792|279793|279794|279802|279808|279819|279820|279825|279827|279828|301040|301063|301069|301070|304010|304029|304032|304033|304034|304045|308731|308785|308786|308822|308823|308824|353797|486661|620711|706988|800816|800817|800818|863266|863267|863268|863269|863270|863271|863272|863273|863274|863275|863276|863277|863278|863279|863280|863281|863282|863283|863284|863285|863286|863287|863288|863289|863290|863291|863292|863293|863294|863295|863296|863297|863298|863299|863300|863301|863302|863303|863304|863305|863306|865090", + "text": "Epidermolysis bullosa simplex due to plakophilin deficiency" + }, + { + "baseId": "22645|28764|28765|28766|28767|28770|28771|363959|389668|389738|389769|455495|455502|455503|455505|455510|455521|455522|455524|455529|455593|455594|455596|455597|455599|455621|455623|455626|455627|455636|455637|455641|455650|455652|456099|456101|456111|456116|456117|456119|456329|456331|456333|456345|456354|456357|456358|456369|456370|521541|521544|521551|521552|521562|521563|521565|521566|521568|521837|521838|521842|521854|521856|521859|521897|521902|521903|521905|521907|521912|521913|521918|521923|521926|521929|521931|522223|522224|522225|522240|522242|522257|522259|522267|522273|522278|522280|560680|560684|560686|560688|560758|560779|560781|560790|563506|563507|563514|563518|565544|565548|565555|565557|565558|565559|565562|565566|565579|565581|565584|565585|614305|614306|614523|624311|634806|634807|634808|634809|634810|634811|634812|634813|634814|634823|634824|634825|634826|634827|634828|634829|634830|634831|634832|634833|634834|634835|634836|634837|634838|651548|651551|651603|651648|651650|699539|699540|699541|699542|699551|710433|710434|710436|710437|710438|710449|721971|721972|721974|721975|721976|721986|721987|721988|735604|735605|735607|735608|735609|735617|750026|750028|750031|750032|750033|750038|750040|765633|765636|765644|765650|777715|777721|782512|782513|782521|816314|819683|831788|831789|831790|831791|831792|831793|831794|831795|831796|831797|831798|831799|831800|831801|831802|831803|831804|831805|831806|831807|831817|831818|831819|831820|831821|831822|831823|831824|831825|831826|831827|831828|831829|831830|831831|831832|831833|831834|831835|831836|831837|831838|831839|831840|831841|831842|831843|924319|924320|924321|924322|924323|924324|924325|924326|924328|924329|924330|924331|924332|933270|933271|933272|933273|933278|933279|933280|933281|933282|933283|933284|933285|933286|933287|933288|933289|933290|940035|940842|944963|944964|944973|944974|944975|944976|944977|944978|944979|954416|954417|954418|954419|954420|954421|954422|954423|954424", + "text": "Bare lymphocyte syndrome type 1" + }, + { + "baseId": "22646", + "text": "Epilepsy, juvenile myoclonic 6" + }, + { + "baseId": "22647|190285|190285|201269|361167|440540", + "text": "Epilepsy, idiopathic generalized 9" + }, + { + "baseId": "22647|134010|134011|134012|140354|140358|140359|190285|190285|191506|201269|201269|201270|282202|282203|282204|282210|282211|282215|282225|282228|282238|282249|282262|282263|282264|282275|282285|282287|282292|282867|282873|282889|282890|282897|282908|282909|282910|282911|282912|282915|282916|282937|282940|282941|282942|282946|282954|282983|282986|282988|282989|284475|284478|284479|284480|284481|284482|284492|284493|284498|284519|284520|284799|284801|284803|284815|284818|284819|284822|284851|284852|284875|284876|284882|284883|284884|284885|284889|284893|284898|284904|284921|284923|284924|284925|284934|440540|440542|559292|824976|881201|881202|881203|881204|881205|881206|881207|881208|881209|881210|881211|881212|881213|881214|881215|881216|881217|881218|881219|881220|881221|881222|881223|881224|881225|881226|881227|881228|881229|881230|881231|881232|881233|881234|881235|881236|881237|882814|882815|882816", + "text": "Episodic ataxia, type 5" + }, + { + "baseId": "22654|22655|22656|22657|22658|22659|22659|22660|22662|22663|22664|22667|51644|51647|51649|51650|51653|152780|176733|177784|194284|210301|210309|210310|210319|210324|210325|210328|210330|210333|210334|210347|232095|232096|232100|232102|232102|232113|243574|245166|257314|257318|257324|259048|259057|260802|269659|271031|271482|271491|271733|272587|273271|273422|273424|273773|273836|274369|274616|275499|334804|334808|344693|344701|349662|349672|350661|350668|350671|354182|378180|378183|403597|403600|403647|403650|403653|403654|404136|404142|404145|404160|410730|410730|424902|469325|469327|469328|470292|470295|470846|470851|470854|471364|471365|489021|489156|489782|491402|491416|491752|491938|492111|492576|492962|493267|510818|513380|513664|533433|533434|533475|533475|533476|533490|533492|533514|533515|533517|534001|534002|534004|534012|534015|571131|571147|571149|571156|572850|572851|572857|573463|575076|575505|581951|584331|585450|585460|585521|587275|588302|589491|610482|613920|648573|648574|648575|648576|648577|648578|648579|648580|648581|648582|648583|648584|648585|653189|684865|689181|689184|694526|791970|791971|804908|804909|804910|818579|848209|848210|848211|848212|848213|848214|848215|848216|848217|848218|848219|848220|848221|848222|848223|848224|848225|848226|848227|848228|848229|848230|848231|851842|852367|885805|929141|929142|929143|929144|929145|929146|938908|938909|938910|938911|938912|938913|938914|941250|950986|950987|950988|950989|950990|950991|950992|950993|950994|950995|950996|950997|950998|950999|951000|951001|958779|958780|958781|958782|958783|958784|958785|958786|958787|958788|958789|960310|960933|960934|960935|962804|963076|964528|975665|980583|983469", + "text": "Alagille syndrome 1" + }, + { + "baseId": "22659|22665|232102|410730|533475", + "text": "Deafness, congenital heart defects, and posterior embryotoxon" + }, + { + "baseId": "22668|283984|283986|284744|284747|284753|287112|550211|550212|550213|550214|550215|550216|550217|550218|550219|550220|883349|883350|883351|883352|883353|883354|883355|887241", + "text": "Orofacial cleft 10" + }, + { + "baseId": "22669|39193|513099|535382|590508|612296|622516|622517|622518|622519|625985", + "text": "Split-hand/foot malformation 6" + }, + { + "baseId": "22670", + "text": "Bone mineral density quantitative trait locus 12" + }, + { + "baseId": "22671|22672|22673|23676|251009|251010|289515|289517|289521|289522|289523|289532|289533|289535|289536|289537|290294|290297|290300|290308|290310|290311|293366|293369|293370|293372|293373|293376|293385|293388|293390|293393|293808|293825|481678|686362|686364|763730|888385|888386|888387|888388|888389|888390|888391|888392|888393|888394|888395|888396|888397|888398|888399|888400|888401|888402|888403|888404|888405|888406|888407|888408|888409|888410|888411|888412|888413|888414|888415|970760", + "text": "Short stature due to growth hormone secretagogue receptor deficiency" + }, + { + "baseId": "22674|22675|22676|22677|256700|256701|331951|331960|331963|331964|331970|331977|331978|331980|342169|342171|342190|342192|342194|342200|342201|342204|342206|347540|347545|347560|347561|347562|347563|347565|348920|348921|348923|348931|348934|348935|348937|348938|469854|488356|647366|694288|694289|695796|704638|704640|727759|778464|879517|879518|879519|879520|879521|879522|879523|879524|879525|879526|879527|879528|879529|879530|879531|879532|879533|879534|879535|879536|879537|879538|879539|879540|879541|879542|879543|879544|879545|879546|879547|879548|879549|879550|879551|879552|879553|879554|879555|938477|950572", + "text": "Microphthalmia, isolated 3" + }, + { + "baseId": "22678|22679|141810|141811|141812|141813|141814|238213|249742|249743|249745|279376|279381|279383|279599|279600|279614|279622|280868|280885|280889|280893|280894|281008|281009|281022|281023|281029|390969|391062|391077|391082|447503|447651|515557|515561|515562|515590|627389|683303|683304|683305|685630|690500|780577|780578|818931|818932|823491|863788|863789|863790|863791|863792|863793|863794|863795|863796|863797|863798|865133|930331|930332|941771", + "text": "Left-right axis malformations" + }, + { + "baseId": "22680|22681|22682|49862|250976|250977|265475|289049|289050|289051|289052|289056|289057|289059|289065|289067|289785|289787|289788|289789|289790|289796|289797|292868|292869|292873|292877|292878|293106|293108|293114|293116|293123|293127|293131|293134|486339|536189|620112|708621|720232|720233|720235|720237|720238|763675|798523|888113|888114|888115|888116|888117|888118|888119|888120|888121|888122|888123|888124|888125|888126|888127|888128|888129|888130|888131|888132|888133|888134|888135|888136|888137|888138|888139|888140|888141|891586|918805|969603|969604", + "text": "Bruck syndrome 2" + }, + { + "baseId": "22683|22684|22685|22686", + "text": "Bare lymphocyte syndrome, type II, complementation group c" + }, + { + "baseId": "22687", + "text": "Bare lymphocyte syndrome type 2, complementation group E" + }, + { + "baseId": "22688|22689|22690|22691", + "text": "Bare Lymphocyte Syndrome, Type II, Complementation Group D" + }, + { + "baseId": "22692|22693|22694|22694|22695|22695|22695|22696|22697|22698|141319|141320|141321|191869|191869|191869|192620|192620|195240|196178|196178|214785|227274|229214|229214|229216|229217|229218|229218|229219|229219|229219|229220|229220|229221|229221|229224|229225|229225|229226|229227|229227|229228|229228|229230|229230|229231|229231|229232|246970|246970|268006|268006|270865|294951|294952|294957|294959|294959|294966|294973|294975|294988|294989|296729|296732|296733|296734|300435|300436|300436|300448|300449|300475|300476|300476|300477|300478|357363|357364|357365|357366|357367|357368|357368|357369|357370|357371|357372|357373|357374|357375|357376|357377|357377|357378|357378|357379|357380|421509|433610|487165|487165|487165|491621|492308|492401|492856|495228|495228|496413|496414|496799|513551|543268|543271|543277|543279|543281|543288|543289|543554|543557|543559|543572|543576|543637|543638|543639|543643|543645|543647|543649|543651|543657|543663|543666|543666|543676|543727|543732|543734|543747|543748|543755|543759|543761|543762|543767|543770|543772|543776|549590|560084|585192|585192|585516|585516|585799|586552|586552|588063|612688|612688|621193|621735|621735|632868|632869|632869|632870|632870|660631|709582|721174|721175|721175|721176|749151|749151|749152|749153|764750|764750|774991|774991|775001|782099|782100|782101|782101|787397|790510|793067|801564|819524|829838|829839|829840|829841|851877|892646|892647|892648|892649|892650|892651|892652|892653|892654|892655|892656|892657|892658|896014|923724|923725|932577|932578|940791|953925|953926|963078|965427|978117|978118|978119", + "text": "Bifunctional peroxisomal enzyme deficiency" + }, + { + "baseId": "22694|22695|70522|188976|191869|192620|196178|229214|229218|229219|229220|229221|229225|229227|229228|229230|229231|246970|268006|270865|294959|294989|296734|300436|300476|357368|357377|357378|433610|487165|491621|492308|492401|492856|543666|560084|585192|585516|586552|612688|621735|632868|632869|632870|709582|721174|721175|721176|749151|749152|749153|764750|774991|775001|782099|782100|782101|787397|819524|829838|829839|829840|829841|851877|923724|923725|932577|932578|940791|953925|953926", + "text": "Perrault syndrome" + }, + { + "baseId": "22694", + "text": "HSD17B4-Related Disorders" + }, + { + "baseId": "22694|22695|39184|141319|141320|141321|141322|191869|191869|192620|195240|196178|227274|229214|229217|229218|229219|229219|229220|229221|229224|229225|229226|229227|229228|229230|229231|229232|246970|268006|294951|294952|294957|294959|294966|294973|294975|294988|296729|296732|296733|300435|300436|300448|300449|300475|300476|300477|300478|487165|495228|513551|549590|585799|586552|588063|612688|626016|632870|660631|892646|892647|892648|892649|892650|892651|892652|892653|892654|892655|892656|892657|892658|896014", + "text": "Perrault syndrome 1" + }, + { + "baseId": "22699|22700|22701|22702|75560|75564|328525|328526|328537|328538|328549|328551|328566|328570|328573|338482|338490|338491|338493|338494|338495|338502|338507|338509|338511|338514|344552|344554|344558|344560|344564|344566|344567|344570|344571|344582|344589|344593|344595|344596|344603|344605|345959|345961|345962|345966|345970|345974|345975|345978|345980|345981|345983|345984|345994|362585|362586|362587|362588|485863|681811|740778|877565|877566|877567|877568|877569|877570|877571|877572|877573|877574|877575|877576|877577|877578|877579|877580|877581|877582|877583|877584|877585|877586|877587|877588|877589|877590|877591|877592|877593|877594|877595|877596|877597|877598|877599|877600|877601|877602|877603|877604|880520|880521|880522", + "text": "Pseudohypoaldosteronism type 2B" + }, + { + "baseId": "22703|22704|22705|22706|22707|22708|22709|22710|256829|256830|256833|256834|332833|332855|332859|343022|343023|343024|343026|343028|343029|343040|343047|343052|348360|348363|348364|348365|348368|348370|348372|348378|348393|348396|348397|349535|349536|349539|349541|349543|349544|349545|349546|349547|349548|349552|349555|349556|349559|704852|704853|756829|778507|791915|880126|880127|880128|880129|880130|880131|880132|880133|880134|880135|880136|880137|880138|880139|880140|880141|880142|880143|880144|880145|880146|880147|880148|880149|880150|880151|880152|880153|880154|880155|880156|880157|880158|880159|880160|880714|880715|880716|880717|880718|880719|880720|906179|971345|971346", + "text": "Thyroid dyshormonogenesis 1" + }, + { + "baseId": "22709|27730|27734|27745|187125|227362|249367|260069|264574|281632|282017|282053|284546|299299|301730|301834|301850|306209|306237|306293|306495|306599|313103|321634|321636|322630|332093|332137|339642|360201|578009|578010|578011|620519|672073|722860|816512|873649|976570|976571|976572|976573|976574|976575|976576|976577|976578|976579|976580|976581|976582", + "text": "Congenital hypothyroidism" + }, + { + "baseId": "22711|22712|22712|22713|22714|22715|22716|22717|134928|208008|208009|208010|208012|208013|227174|264505|318850|318855|318858|318860|318861|318862|318866|318867|318871|318873|318877|318878|318879|318886|318887|327235|327243|327246|327249|327251|327256|327261|327265|327267|327268|333353|333354|333361|333369|333370|333378|333382|333384|333385|333386|333387|333388|333388|333389|333398|333403|333405|333409|333416|333417|333418|333419|335099|335103|335107|335108|335112|335113|335116|335127|335129|335130|353262|359989|384422|408785|426723|426724|429475|429476|429478|445109|463453|497022|512045|527458|527480|527483|527484|527493|528006|565859|567102|567161|567173|567180|568249|568252|568254|568256|572195|572195|572200|572204|614386|641538|641539|641540|641541|641542|641543|641544|641545|641546|641547|641548|641549|641550|641551|641552|641553|641554|641555|641556|652508|681829|684381|684382|688098|688099|688100|693323|769391|784519|816324|840515|840516|840517|840518|840519|840520|840521|840522|840523|840524|840525|840526|840527|840528|840529|840530|840531|840532|840533|840534|840535|840536|840537|840538|840539|870669|870670|870671|870672|870673|870674|870675|870676|870677|870678|870679|870680|870681|870682|870683|870684|926796|926797|926798|926799|926800|926801|926802|936330|936331|936332|936333|936334|948251|948252|948253|948254|948255|948256|948257|948258|957015|957016|957017|957018|957019|957020|961964|965988|966798", + "text": "Lig4 syndrome" + }, + { + "baseId": "22712|27386|27395|27397|27405|27408|27409|27641|27642|27645|27646|27650|27652|28375|28377|28378|28938|28939|28940|29000|29006|29007|29009|29010|29011|29013|29755|31370|31371|31382|31967|31968|44227|45735|48247|48857|48938|48939|48940|49030|53970|53980|54283|54284|54289|70450|83949|87578|150515|150855|166215|172332|174177|179419|180995|181000|181025|185350|213392|213398|216786|236459|236461|236462|236469|236479|242980|263939|333388|359197|359952|362753|362755|362768|362770|362771|362772|362822|362826|362842|362844|362867|362868|362912|362952|363174|363201|363247|363248|363249|363250|363251|363253|363254|363255|363256|363257|363321|363322|363323|363361|363362|363363|363443|363444|363445|363446|363447|363453|363454|363455|363456|363461|363462|363463|363464|363465|363466|363467|363468|363496|363497|363498|363499|363503|363504|363505|363506|363507|363508|363518|363519|363520|363521|363522|363523|363524|363525|363531|363534|363535|363552|363560|363561|363562|363563|363564|363565|572195|788676|788677|788678|788679|788680|788681|788682|788683|788684|788685|788686|788687|788688|788689|788690|788691|788692|788693|788694|788695|788696|788697|788698|788699|788700|788701|788702|788703|788704|788705|788706|788707|788708|788709|788710|788711|788712|788713|788714|788715|788716|788717|788718|788719|788720|788721", + "text": "Multiple myeloma" + }, + { + "baseId": "22715|22716", + "text": "Multiple myeloma, resistance to" + }, + { + "baseId": "22720|22721|22722|677068", + "text": "Mitochondrial complex 1 deficiency, nuclear type 3" + }, + { + "baseId": "22723|312425|312426|312428|312431|312432|318307|318310|318316|318319|324451|325187|325188|325189|325192|724209|737748|867065|867066|867067", + "text": "Renal hypomagnesemia 2" + }, + { + "baseId": "22724|22725|22726|22727|22728|22729", + "text": "Lactase persistence" + }, + { + "baseId": "22730|22732|22733|22735|194383|194383|263003|267212|267212|291300|292374|295765|295766|295767|295779|354270|485730|485731|485732|485733|519880|588816|709001|790413|889472|889474|905052", + "text": "Septo-optic dysplasia sequence" + }, + { + "baseId": "22731", + "text": "Septooptic dysplasia, mild" + }, + { + "baseId": "22732|22738|194383|267212|519880|588816", + "text": "Growth hormone deficiency with pituitary anomalies" + }, + { + "baseId": "22734|22736|22737|22739", + "text": "Pituitary hormone deficiency, combined 5" + }, + { + "baseId": "22740|22741|101044|101045|101046|177934|177935|194925|195676|249330|249350|249354|249355|249357|270290|270940|275796|275797|275798|275800|275819|275820|275821|275822|275964|275965|275967|275969|275997|275999|276004|276009|493290|589315|706529|761035|780254|822471|861848|861849|861850|861851|861852|861853|861854|861855|861856|861857|861858|861859|861860|861861|864953|864954", + "text": "Peroxisome biogenesis disorder 13A" + }, + { + "baseId": "22742|39182|39183|190400|192335|193512|193513|193513|250754|273429|274056|275187|286887|286891|286893|286895|286900|286905|286908|287627|287628|287643|287648|287650|287662|287663|287679|287680|287681|287682|287687|287688|287691|287692|287693|287694|287695|287696|287698|289998|290025|290026|290029|290033|290051|290055|290059|290081|290083|290088|290089|290419|290420|290432|290433|290436|489973|490950|492063|492063|492294|492782|493270|493457|513256|558251|558624|560891|560892|561861|561873|584232|584336|585899|587774|588990|759275|826863|826864|826865|826866|826867|826868|826869|826870|858718|885252|885253|885254|885255|885256|885257|885258|885259|885260|885261|885262|885263|885264|885265|885266|885267|885268|885269|885270|885271|885272|885273|885274|885275|885276|885277|885278|885279|885280|885281|885282|885283|885284|885285|885286|885287|885288|885289|922890|931537|931538|943056|943057|943058|943059|943060|943061|943062|953155|953156|953157", + "text": "Peroxisome biogenesis disorder 11A" + }, + { + "baseId": "22743|193513|362041|492063", + "text": "Peroxisome biogenesis disorder 11B" + }, + { + "baseId": "22744|76595|76596|283668|283669|283670|283671|283677|283678|284309|284310|284318|284320|284322|284341|284343|284350|284351|284353|286303|286328|286329|286330|286336|286345|286347|286619|286650|286651|286659|286674|286678|286683|286701|883073|883074|883075|883076|883077|883078|883079|883080|883081|883082|883083|883084|883085|883086|883087|883088|883089|887225", + "text": "Myostatin-related muscle hypertrophy" + }, + { + "baseId": "22745|22746|22747|22748|22749|22750|22751|22752|22753|22755|22756|22757|22758|22759|22760|22761|22762|22764|22765|22766|33995|33996|33997|39181|98707|98709|98710|98711|98714|135422|186951|186952|186953|186954|190245|194819|194820|195874|195875|227382|255943|260132|265315|269607|270096|270549|273389|274802|275109|326612|326617|326759|326761|326762|326769|326771|326773|326776|326777|326778|326779|336422|336552|336555|336558|336559|336574|336575|336582|336585|336588|336591|336592|336598|336603|336607|342659|342661|342662|342845|342846|342849|342851|342853|342856|342858|342862|342864|342866|344271|344479|344480|344482|344485|344487|344488|344489|344490|344491|344492|344493|344494|344497|344499|344501|344505|344509|358377|358378|358379|358380|358381|358382|358383|358384|358385|358386|358387|358388|404826|409752|413427|422115|439326|486815|487801|495633|512230|529859|530674|536476|547799|547801|547803|547808|547809|547811|547819|547828|547841|547844|547847|548087|548089|548091|548093|548098|548101|548105|548110|548120|548121|548543|548549|548557|548573|548584|548586|548588|548591|548594|548597|548601|548605|620565|621550|621551|621847|621848|645097|645098|645099|645100|645101|645102|645103|652487|652882|653070|653167|653169|653316|677326|682106|693952|740440|744878|755472|771135|771136|771137|776389|776393|788090|788092|788213|791648|806409|820892|820896|820897|820898|820901|820902|820903|820904|820905|820906|844457|844458|844459|844460|844461|844462|844463|876116|876117|876118|876119|876120|876121|876122|876123|876124|876125|876126|876127|876128|876129|876130|876131|876132|876133|876134|876135|876136|876137|876138|876139|876731|876732|876733|917222|917543|919680|927996|927997|927998|957907|957908|957909|960856|960857|972601|979810", + "text": "Congenital disorder of glycosylation, type Ia" + }, + { + "baseId": "22767|22768|22769|22769|22770|22771|22772|22773|22774|22776|22776|22777|22778|22778|22779|22781|22782|22783|39179|39180|79358|79359|98344|98345|98346|102590|102591|102592|132472|176950|177657|177659|177660|177661|193369|227243|227244|266801|286180|286182|286193|286194|286198|286203|286222|286225|286936|286937|286940|286946|286948|286949|286950|286952|286953|286959|286962|286972|286981|286985|289251|289253|289257|289263|289265|289268|289275|289276|289286|289289|289290|289291|289624|289631|289634|289639|289655|289656|289660|289672|404760|451009|451194|451210|492426|514468|620087|691154|691155|691156|781326|788753|801602|801603|801604|884813|884814|884815|884816|884817|884818|884819|884820|884821|884822|884823|884824|884825|884826|884827|884828|884829|884830|884831|884832|884833|884834|884835|884836|884837|884838|884839|884840|884841|884842|884843|884844|884845|884846|884847|884848|884849|884850|884851|884852|884853|884854|884855|884856|884857|884858|884859|884860|884861|884862|884863|884864|962065|962068|964200", + "text": "Glaucoma 3, primary congenital, A" + }, + { + "baseId": "22769|22775|22776|22776", + "text": "Anterior segment dysgenesis 6" + }, + { + "baseId": "22769|22776|337201|919543", + "text": "Glaucoma 3, primary infantile, b" + }, + { + "baseId": "22769|22774|22776|22778|22783|98344|177659|259737|266801|451010|492426|514468|691154|691155|691156|697565|697566|781326|826466|826467|953089|953090|960477", + "text": "Congenital glaucoma" + }, + { + "baseId": "22774|79358|79360|177660|263296|629993|654756|962067", + "text": "Glaucoma of childhood" + }, + { + "baseId": "22776|22778|79360|620747", + "text": "CYP1B1-Related Disorders" + }, + { + "baseId": "22776|23128|23133|23487|79358|79361|237249|237580|249980|267189|270847|272086|273530|362087|365343|414803|418809|448226|489784|492837|563473|609191|622992|628136|628137|628138|628141|690635|690636|690637|696788|746547|780725|824218|824219|824220|824221|824222|824223|824224|824225|824226|824227|824228|824229|826466|920589|920590|920591|920592|920593|920594|920595|920596|920597|922113|922114|930589|930590|930591|930592|930593|930594|930595|942025|942026|942027|942028|952463", + "text": "Anterior segment dysgenesis" + }, + { + "baseId": "22778", + "text": "Glaucoma, early-onset, digenic" + }, + { + "baseId": "22778|153828|153829|153830|153831|153832|184524|361481|626126|697345|788749|802132|802133|804988|804989|918741|918742", + "text": "Myopathy, centronuclear, 5" + }, + { + "baseId": "22781|22782|39180", + "text": "Glaucoma, primary open angle, juvenile-onset" + }, + { + "baseId": "22784|22785|22786|22787|22788|22789|22790|22791|22792|22793|22794|22795|22796|22797|22798|195700|259277|259278|317168|317177|317179|317180|317189|317192|317195|317197|317205|317210|317215|317216|317217|317231|317241|317242|317243|317246|317247|317248|317249|317253|317255|324900|324907|324918|324923|324924|324928|324940|324954|324955|324965|324974|331033|331037|331040|331058|331061|331062|331065|331070|331075|331077|331082|331088|331092|332564|332565|332570|332572|332573|332585|332589|332592|332593|332598|332599|332600|332607|332608|332613|332615|332617|332621|332626|332634|332654|622899|702318|713543|725107|738651|738652|769128|784390|839936|869846|869847|869848|869849|869850|869851|869852|869853|869854|869855|869856|869857|869858|869859|869860|869861|869862|869863|869864|869865|869866|869867|869868|869869|869870|869871|869872|869873|869874|869875|869876|869877|869878|869879|869880|869881|869882|869883|869884|869885|869886|869887|869888|869889|869890|872243|980347", + "text": "Vitamin D-dependent rickets, type 2" + }, + { + "baseId": "22799|22801|283918|283932|283934|283937|283939|283943|283944|284609|284610|284615|284618|284619|284623|284624|284626|284632|284637|284638|284641|286548|286549|286550|286551|286974|286980|286982|286983|287008|287011|287012|450412|517602|517606|517629|517633|517785|559037|559039|560532|614239|620048|629285|629286|629287|629288|629289|629290|650720|650909|707942|733071|762785|781107|790152|790153|819098|825566|825567|825568|825569|825570|883239|883240|883241|883242|883243|883244|883245|883246|883247|883248|883249|883250|883251|883252|883253|883254|883255|883256|883257|883258|883259|883260|887236|922511|922512|922513|931074|942553|942554|942555|942556|942557|952879|952880|952881|961929|961930|961931|961932", + "text": "Autoimmune lymphoproliferative syndrome type 2B" + }, + { + "baseId": "22801", + "text": "Breast cancer, protection against" + }, + { + "baseId": "22802|32009", + "text": "Lung cancer, protection against" + }, + { + "baseId": "22803|22803|22808|34579|34579|34580|34580|283838|283842|283847|283853|283853|283858|283859|283866|283866|283867|283868|283868|283887|283888|283893|283895|283896|283900|283902|283909|283913|284489|284490|284499|284505|284505|284516|284516|284517|284517|284518|284521|284524|284525|284549|284550|284552|284561|284570|284571|284573|284574|284589|284601|284602|284607|286493|286493|286495|286499|286500|286500|286508|286510|286514|286517|286520|286522|286523|286534|286535|286544|286546|286547|286885|286885|286907|286907|286910|286918|286919|286922|286925|286926|286932|286934|286951|286954|286956|286965|286967|450370|450376|450409|517511|517593|517598|517601|517619|517622|517775|517780|517783|557861|557863|559033|559035|560509|560518|560518|560525|560527|560529|583046|614238|629276|629277|629278|629279|629279|629280|629281|629282|629283|629284|650714|707941|707941|719517|733068|733069|733069|733070|762782|774649|774654|790150|790151|819096|819097|825556|825557|825558|825559|825560|825561|825562|825563|825564|825565|851386|883207|883208|883208|883209|883210|883211|883212|883213|883214|883215|883216|883217|883218|883219|883220|883221|883222|883223|883224|883225|883226|883227|883228|883229|883230|883231|883232|883233|883234|883235|883236|883237|883238|887234|887235|922508|922509|922510|931071|931072|931073|940684|942546|942547|942548|942549|942550|942551|942552|952876|952877|952878|959620", + "text": "Autoimmune lymphoproliferative syndrome, type 2A" + }, + { + "baseId": "22803|34579|34580|283853|283866|283868|284505|284516|284517|286493|286500|286885|286907|450370|450376|450409|517511|517593|517598|517601|517619|517622|517775|517780|517783|557861|557863|559033|559035|560509|560518|560525|560527|560529|583046|629276|629277|629278|629279|629280|629281|629282|629283|629284|650714|707941|733068|733069|733070|762782|774649|774654|790151|819096|819097|825556|825557|825558|825559|825560|825561|825562|825563|825564|825565|851386|883208|922508|922509|922510|931071|931072|931073|940684|942546|942547|942548|942549|942550|942551|942552|952876|952877|952878|959620", + "text": "Autoimmune lymphoproliferative syndrome type 2" + }, + { + "baseId": "22807|31540|31542|31544|34064|34064|138110|138111|138112|138113|165620|165900|207798|253905|277420|277421|277424|277426|277426|277429|277431|277436|277449|277640|277641|277642|277647|277649|277654|277658|278496|278510|278512|278518|278523|278524|278525|278528|278530|278533|278535|278536|278537|278538|278539|278540|278567|278572|283863|283907|284569|286494|286518|286531|286533|286537|311582|311586|311592|311593|311595|311599|311600|311607|311609|311613|311618|311621|317170|317171|317172|317173|317183|317184|323201|323202|323203|323204|323211|323213|323777|323778|323779|323780|323784|323797|323799|323807|323808|447425|512842|512921|514003|515325|515332|515376|515377|515384|517780|525600|525604|525945|538943|558252|564039|564045|564911|564912|566611|569888|589803|627121|627122|627123|629283|639300|639301|639302|639303|652045|652155|652158|652160|652344|679773|724109|745848|752324|761337|774405|789879|789880|789881|789882|790150|790151|791011|791012|791013|791014|816317|818871|818872|820274|820276|823012|823013|823014|823015|823016|837459|837460|837461|837462|837463|837464|837465|837466|837467|837468|837469|837470|837471|837472|862823|862824|862825|862826|865037|866517|866518|866519|866520|866521|866522|866523|866524|866525|866526|866527|866528|866529|866530|866531|868529|868530|868531|868532|921757|925974|930169|930170|930171|935229|935230|941581|947129|947130", + "text": "Autoimmune lymphoproliferative syndrome" + }, + { + "baseId": "22809|22810|22811|22812|22813|22813|22814|22818|98680|98681|98682|98683|98684|177933|188880|188880|267626|269779|271584|328126|328138|328140|328141|328143|337985|337986|337990|337995|337999|338002|338007|338010|338014|338015|344172|344181|344184|344193|344194|344197|345581|345583|345587|345587|345588|345589|345592|345593|358425|358426|358427|362280|364154|430999|430999|445758|489029|493070|493070|494107|539070|539070|548051|548053|548056|548057|548058|548072|548074|548075|548075|548076|548079|548080|548080|548081|548082|548083|548088|548090|548092|548097|548108|548337|548337|548344|548348|548348|548350|548356|548359|548361|548807|548808|548810|548818|548819|548819|548821|585659|652809|704097|715384|740692|755787|755788|771443|785540|845235|845236|845237|845238|845239|845240|845241|845242|845243|877261|877262|877263|877264|877265|877266|877267|877268|877269|877270|877271|877272|877273|877274|906153|928236|928237|937894|937895|937896|937897|937898|937899|958087|958088|958089|958090|958091", + "text": "Peroxisome biogenesis disorder 3A" + }, + { + "baseId": "22813|22814|22815|22816|22817|22818", + "text": "Peroxisomal biogenesis disorder 3b" + }, + { + "baseId": "22813|22818|98680|98683|98684|177933|188880|267626|345587|358425|358426|358427|364154|364154|430999|445758|493070|494107|539070|548051|548053|548056|548057|548058|548072|548074|548075|548076|548079|548080|548081|548082|548083|548088|548090|548092|548097|548108|548337|548344|548348|548350|548356|548359|548361|548807|548808|548810|548818|548819|548821|919725", + "text": "Infantile Refsum's disease" + }, + { + "baseId": "22819|22819|22819|22820|22821|22822|22823|22824|22825|22826|22827|22827|22829|47477|186699|186700|186701|186702|195227|227291|227291|252144|252145|252145|275145|275439|299176|299180|299188|299189|299194|301586|301589|301590|301591|301592|301612|305982|305983|305994|305997|306285|306298|306301|306302|306304|306305|306306|357420|357421|357422|357423|357424|357425|357426|357427|357428|357429|357430|357431|357432|357433|357434|428524|428525|428526|489565|492277|492277|501556|543621|543622|543623|543627|543934|543938|543940|543941|543942|543944|543946|543948|543950|543954|544035|544056|544060|544063|544069|544073|544074|584563|651523|777665|787464|790592|801609|801610|801611|801612|801613|801614|801615|806370|831609|895450|895451|895452|895453|895454|895455|895456|895457|895458|978217|978218", + "text": "Rhizomelic chondrodysplasia punctata type 1" + }, + { + "baseId": "22819|22824|22827", + "text": "PEX7-Related Disorders" + }, + { + "baseId": "22819|22819|22819|22820|22821|22822|22823|22824|22825|22826|22827|22827|22829|186699|186700|195227|227291|227291|252144|252145|252145|275145|299176|299180|299188|299189|299194|301586|301589|301590|301591|301592|301612|305982|305983|305994|305997|306285|306298|306301|306302|306304|306305|306306|357420|357432|488872|489565|489565|492277|492277|543938|584563|588589|651523|651639|765504|765506|775204|782455|787313|787464|801613|819666|831608|831609|852012|895450|895451|895452|895453|895454|895455|895456|895457|895458|933190|944900|954381|959800|983862", + "text": "Peroxisome biogenesis disorder 9B" + }, + { + "baseId": "22824|167559|167560|167561|188236|249769|252144|281169|281171|283053|283057|283059|283061|283073|283074|283075|283855|283856|283862|283864|283871|283877|285509|285536|285554|285555|285556|285580|285589|285927|285935|285947|285954|285955|285957|285995|299171|299175|301593|301608|305982|306284|489565|543938|707864|707865|719427|816407|816427|881660|977642|977643|977644|977645|977646|977647|977648|977649|977650|977651|977652|977653|977654|977655|977656", + "text": "Rhizomelic chondrodysplasia punctata" + }, + { + "baseId": "22843|22844|22845|22846|281255|281256|281258|281259|281266|281267|281268|281871|281873|281875|281879|281880|281893|283124|283128|283131|283132|283136|283143|283159|283160|283163|283324|283325|283326|283330|283331|283333|283339|283340|353109|513903|550583|620016|654219|654220|789999|799226|799227|864824|864825|864826|864827|864828|864829|864830|864831|864832|865211|904066|918660", + "text": "Glomuvenous malformations" + }, + { + "baseId": "22847|22848|39176|39177|39178|790561", + "text": "Primary localized cutaneous amyloidosis 1" + }, + { + "baseId": "22849|22850|538962|552289|626124|653851|653852|790193|790194", + "text": "AICAR transformylase/IMP cyclohydrolase deficiency" + }, + { + "baseId": "22851|22852|22854|22855|22856|22857|22858|22859|22860|22861|22862|22863|22864|22865|22866|22867|22868|22872|22872|22873|22874|22875|22878|22882|22883|22884|22885|22886|22891|28692|50121|82009|98715|98723|98724|98736|133117|133119|133129|133133|133148|133149|133150|133152|133153|139623|139624|142541|150491|150497|151199|151485|151926|151983|152111|152137|152558|152734|166276|166277|181623|183009|183021|183043|183060|183066|185731|187326|187336|187338|187342|187363|187379|187388|187390|190026|212820|213602|222001|231786|231792|240889|245285|248610|253901|311528|358836|358837|358838|358839|358840|371552|397685|398057|398063|408007|416934|416937|416967|416968|416969|416970|416971|416972|416973|416974|416975|416976|416978|416979|416980|416981|416982|416983|416984|416985|419758|419770|429137|475185|484088|484318|519162|537441|537873|537874|539290|539291|539293|539294|539295|539296|539297|539298|539299|539300|569855|613896|619903|686367|689736|790361|790362|790363|790364|790365|790366|790367|810097|861455|861456|861457|961521|964349|964844", + "text": "Cowden syndrome 1" + }, + { + "baseId": "22851|22852|22853|22854|22855|22856|22857|22858|22859|22860|22861|22862|22863|22864|22865|22866|22867|22868|22869|22870|22872|22873|22875|22876|22878|22879|22880|22882|22883|22884|22887|22888|22889|22891|48267|48268|50121|82009|98715|98717|98720|98723|98724|98725|98727|98728|98729|98733|98734|98735|98736|98738|98743|133117|133118|133119|133120|133124|133129|133131|133138|133141|133142|133144|133145|133148|133149|133150|133152|133153|139621|139622|139623|139624|139625|142538|142539|142540|142541|143197|143198|150491|150521|150871|151199|151368|151485|151663|151732|151741|151802|151926|151934|151973|151975|151977|151983|152001|152111|152137|152354|152395|152592|152626|152734|166276|172161|172162|181214|182995|183008|183009|183013|183016|183017|183018|183019|183020|183021|183022|183023|183024|183025|183026|183028|183029|183030|183031|183033|183035|183036|183037|183040|183042|183043|183044|183045|183047|183049|183051|183052|183053|183054|183055|183056|183057|183060|183061|183063|183064|183065|183066|185731|187281|187293|187301|187302|187310|187323|187326|187328|187334|187335|187336|187337|187338|187339|187342|187344|187345|187346|187351|187352|187353|187355|187357|187358|187359|187361|187363|187364|187366|187368|187369|187370|187371|187372|187374|187379|187385|187386|187387|187389|187390|194823|205265|207797|212813|212814|212816|212817|212818|212819|212820|212825|212826|222000|222001|222002|222004|222005|222006|224868|226337|226339|226803|231768|231779|231781|231786|231787|231789|231792|233839|233842|233846|233847|233848|233849|233850|233851|233855|233856|233858|233859|233862|233863|233864|233865|233867|233868|233869|233870|233871|233872|233873|233875|233876|233878|233879|233880|233881|240869|240870|240872|240873|240874|240875|240876|240878|240879|240880|240881|240882|240883|240884|240885|240886|240887|240888|240889|240890|248506|253902|262409|264437|264490|275419|311513|311514|311519|311521|311523|311525|311528|311529|311530|311532|311533|311535|311536|311537|311541|311553|311554|311557|311558|311560|311561|311562|311568|311569|311571|317094|317095|317104|317105|317107|317109|317110|317116|317123|317124|317135|317136|317146|317149|317150|317151|317153|317160|317162|317164|323093|323101|323108|323109|323111|323112|323113|323114|323118|323131|323135|323136|323162|323163|323165|323168|323173|323174|323177|323179|323181|323187|323191|323192|323701|323704|323705|323706|323708|323710|323711|323713|323716|323724|323725|323729|323730|323731|323732|323733|323739|323740|323742|323743|323746|323747|323750|323753|323761|323767|323768|323769|323773|358839|359852|359885|362837|362838|362911|363389|364254|370954|370966|371552|371556|371558|371574|371587|371872|373570|397489|397492|397518|397519|397520|397522|397524|397677|397679|397682|397685|397688|397689|397691|397693|397704|397714|397716|397720|397721|397912|397927|397932|397933|397934|397935|397937|397946|397948|397951|397954|397955|397959|398044|398047|398048|398050|398053|398057|398061|398063|398072|398076|398078|398079|398084|407979|407982|407985|407990|407991|407993|407994|407996|408001|408002|408003|408005|408007|408009|408010|408011|416933|416934|416935|416936|416937|416938|416939|416940|416941|416942|416943|416944|416945|416946|416947|416948|416949|416950|416951|416952|416953|416954|416955|416968|416969|416971|416972|416973|416974|416978|416981|416982|416984|416985|419690|419696|419711|419716|419717|419720|419722|419724|419726|419731|419734|419737|419741|419743|419755|419759|419763|419767|419769|419772|421809|425896|429136|433074|439931|444672|444673|444678|444679|460053|460055|460268|460273|460275|460281|460287|460288|460290|460294|460296|460298|460300|460302|460303|460305|460313|460357|460360|460365|460367|460370|460371|460376|460378|460380|460381|460384|460601|460607|460609|460621|460623|460627|460633|460635|460639|460642|460646|460649|460655|460670|461075|461082|461084|461093|461094|461098|461101|461103|461107|461110|461116|461122|461124|461125|461130|461132|461134|461141|461146|461148|475204|475236|475246|475251|475252|475256|475282|475301|475363|475397|475399|475427|475440|475452|475471|475494|475497|475535|475544|475554|475556|475569|482708|482754|482771|482772|484085|484105|484191|484350|484362|485645|487380|488394|497173|525427|525493|525502|525504|525507|525509|525520|525578|525582|525589|525590|525742|525744|525748|525754|525755|525756|525767|525772|525788|525790|525800|525811|525891|525897|525903|525911|525912|525922|525923|525928|525933|536371|537874|563492|563493|564002|564004|564006|564007|564010|564015|564017|564019|564021|564027|564030|564032|564441|564444|564853|564856|564858|564860|564883|564885|566115|566558|566560|566564|566567|566569|566576|566578|566580|566586|566589|566591|566598|566600|569810|569813|569826|569829|569845|569855|569857|569858|569863|569864|575557|575806|575807|575808|575810|575811|579697|585202|611089|617590|617600|617608|623200|639262|639263|639264|639265|639266|639267|639268|639269|639270|639271|639272|639273|639274|639275|639276|639277|639278|639279|639280|639281|639282|639283|639284|639285|639286|639287|639288|639289|639290|639291|639292|639293|639294|651979|651986|652153|652289|652300|654622|677041|724105|744654|752320|760005|768039|768041|768042|768045|783768|787705|790995|790996|790997|790998|790999|791000|791001|791002|791003|791004|791005|791006|791007|791008|791009|810082|810095|810096|810103|810120|810133|815456|820258|820259|820260|820261|820262|820263|820266|820267|820268|820269|820270|820271|820272|820273|837410|837411|837412|837413|837414|837415|837416|837417|837418|837419|837420|837421|837422|837423|837424|837425|837426|837427|837428|837429|837430|837431|837432|837433|837434|837435|837436|837437|837438|837439|837440|837441|837442|837443|837444|837445|837446|837447|837448|837449|837450|837451|837452|837453|851395|852275|852280|858440|866490|866491|866492|866493|866494|866495|866496|866497|866498|866499|866500|866501|866502|866503|866504|866505|866506|866507|866508|866509|866510|925960|925961|925962|925963|925964|925965|925966|925967|925968|925969|925970|925971|925972|935217|935218|935219|935220|935221|935222|935223|935224|935225|935226|940182|940183|940185|940972|947117|947118|947119|947120|947121|947122|947123|947124|947125|947126|947127|956264|956265|956266|956267|956268|956269|960733", + "text": "PTEN hamartoma tumor syndrome" + }, + { + "baseId": "22852|22868|27386|27388|27393|27394|27395|27398|27403|27404|27405|27422|27641|27642|27652|28691|28692|28693|28694|28695|28696|28698|28939|29000|31650|40609|48304|48857|54392|54633|83949|100947|133272|133274|133276|133277|139098|150535|150855|151595|151732|151955|166215|166218|166563|171614|173901|176503|180995|181000|181005|185394|187953|213392|213398|213402|213943|222738|226760|236461|236463|236468|236469|236477|236479|242978|242980|245074|260191|263939|268527|359197|360335|361700|362753|362768|362770|362771|362772|362775|362777|362778|362822|362837|362894|362928|362929|362944|362954|363008|363088|363089|363123|363240|363253|363254|363265|363266|363267|363274|363275|363276|363277|363278|363279|363298|363299|363300|363301|363306|363307|363313|363332|363333|363336|363339|363349|363350|363351|363352|363353|363354|363357|363360|363361|363362|363363|363364|363365|363366|363367|363368|363369|363370|363371|363372|363373|363374|363375|363376|363377|363378|363382|363388|363389|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363464|363465|363466|363467|363468|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363494|363495|363496|363497|363498|363499|363500|363501|363502|363503|363504|363505|363506|363507|363508|363509|363510|363511|363512|363513|363514|363528|363529|363530|363531|363532|363533|363534|363535|363538|363542|363543|363544|363545|363546|363549|363550|363551|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|432404|432408|545734|581781|622947", + "text": "Glioblastoma" + }, + { + "baseId": "22852|27617|27618|27619|27621|27622|27623|27632|28691|28692|28694|28914|28939|29000|29005|29006|29008|29010|29011|29022|29760|31648|31650|31651|31652|40609|48247|48304|48834|48905|48938|48939|49251|53968|53969|53970|53980|53982|53983|53984|54152|54153|54155|54156|54157|54159|54160|54282|54283|54284|54289|54290|54291|54292|54387|54391|54392|54400|54404|54406|54411|54415|54418|54419|54420|54424|54425|54427|54429|54430|54446|54450|54632|54634|83949|132039|137844|172332|173901|174177|174179|174235|174248|174254|175713|175715|175854|175855|175857|176493|176631|176758|214513|216786|224866|227763|263939|267231|362750|362753|362757|362775|362798|362841|362846|362847|362857|362917|362954|362955|362956|362957|362958|362960|362961|362962|363011|363012|363013|363014|363015|363016|363019|363021|363022|363023|363123|363154|363155|363156|363159|363160|363161|363215|363219|363221|363224|363225|363234|625984", + "text": "Non-small cell lung cancer" + }, + { + "baseId": "22852|22858|22866|22872|22872|22887|22888|22889|22890|48267|48268|48269|50121|185731|187363|205765|207797|213602|224868|380154|408007|416944|419766|551779|677041|963155|971537", + "text": "Macrocephaly/autism syndrome" + }, + { + "baseId": "22853|22871", + "text": "Lhermitte-Duclos disease" + }, + { + "baseId": "22858|22872|27386|27388|27394|27395|27398|27403|27404|27405|27407|27408|27409|27422|28691|28692|28693|28694|28695|28696|28698|28939|29000|29011|33122|33123|33124|40609|48304|49881|53980|54633|59119|83949|133271|133272|133274|133276|139098|150515|150535|151476|151897|152428|166215|166218|171613|171614|173901|175540|176503|181000|181001|181005|185345|185366|185367|185371|185375|185394|187363|213392|213398|213402|213943|232035|236459|236461|236463|236468|236469|236477|236479|236481|242978|242980|245074|260191|263939|359197|360335|362753|362768|362770|362771|362772|362775|362777|362778|362826|362865|362866|362895|362896|362911|362944|363086|363087|363088|363089|363110|363120|363123|363140|363274|363275|363276|363277|363278|363279|363313|363317|363318|363349|363350|363351|363352|363353|363354|363360|363361|363362|363363|363364|363365|363366|363370|363390|363438|363439|363440|363441|363442|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363453|363454|363455|363456|363461|363462|363463|363469|363470|363471|363472|363473|363474|363475|363476|363477|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363496|363497|363498|363499|363500|363501|363502|363503|363504|363505|363506|363507|363508|363512|363513|363514|363515|363518|363519|363520|363521|363522|363523|363524|363525|363528|363529|363530|363531|363534|363535|363536|363537|363538|363542|363543|363544|363545|363546|363547|363548|363549|363550|363551|363553|363554|363555|363556|363557|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363572|363573|973051", + "text": "Neoplasm of brain" + }, + { + "baseId": "22868|23584|27386|27388|27394|27395|27403|27404|27405|27422|27641|27642|27652|28691|28692|28693|28694|28695|28696|28698|29005|29007|29009|29010|29013|29022|32616|32617|32618|32619|32620|32622|32625|32626|32627|32628|40609|40610|48304|53970|53985|54633|87578|133276|133277|139098|150515|150535|151476|151595|151732|151897|151955|166215|166218|171600|171601|185366|185367|185371|213943|222738|236461|236469|236471|236477|236481|242978|242980|245074|260191|362768|362770|362771|362772|362773|362774|362775|362777|362778|362837|362894|362912|362928|362929|362933|363053|363107|363108|363109|363110|363113|363114|363121|363123|363165|363197|363223|363264|363270|363271|363272|363273|363327|363330|363331|363348|363352|363353|363354|363360|363367|363368|363369|363370|363384|363385|363386|363388|363389|363405|363406|363416|363417|363418|363419|363422|363423|363424|363425|363426|363427|363428|363429|363430|363431|363432|363433|363434|363438|363439|363440|363441|363442|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363482|363483|363491|363492|363493|363516|363517|363528|363529|363530|363531|363532|363533|363534|363535|363538|363553|363554|363555|363556|363557|363566|363567|363568|363569|363570|363571|363572|363573|363574|363575|363576", + "text": "Adenocarcinoma of prostate" + }, + { + "baseId": "22868|23312|23582|23584|27284|27386|27388|27393|27394|27395|27397|27403|27404|27405|27407|27408|27409|27422|27641|27642|27645|27646|27650|27652|28311|28691|28692|28693|28694|28695|28696|28698|28905|28916|28918|28938|28939|28940|28996|29005|29022|30972|30973|32616|32617|32618|32620|32621|32622|32623|32625|36171|36173|40609|40610|44227|48247|48304|48938|48939|48940|49030|50071|53985|54158|54284|54633|80852|83949|100947|133272|133276|133277|139098|150535|150855|151476|151595|151732|151897|151955|152428|166218|171613|172332|173901|179419|180995|181000|181001|185345|185350|185366|185367|185371|185384|185394|206650|213398|213402|213526|213943|216786|222738|226759|232035|233761|236461|236462|236469|236471|236477|236479|236481|242978|242980|245074|260191|260192|263939|359197|360335|362753|362755|362773|362775|362777|362778|362837|362844|362870|362871|362873|362894|362895|362896|362912|362914|362928|362929|362933|363053|363067|363068|363107|363108|363109|363110|363112|363113|363114|363123|363165|363186|363195|363201|363222|363223|363243|363247|363248|363249|363250|363251|363258|363259|363260|363263|363264|363265|363266|363267|363269|363270|363271|363272|363282|363283|363285|363286|363287|363288|363289|363290|363293|363294|363295|363296|363297|363298|363299|363300|363301|363302|363303|363304|363305|363308|363309|363310|363311|363319|363321|363322|363323|363324|363325|363326|363327|363328|363330|363331|363334|363335|363348|363349|363350|363351|363352|363353|363354|363360|363361|363362|363363|363364|363365|363366|363367|363368|363369|363370|363371|363372|363373|363374|363375|363382|363384|363385|363386|363388|363389|363393|363396|363397|363398|363399|363400|363401|363402|363403|363405|363406|363416|363417|363418|363419|363420|363438|363439|363440|363441|363442|363448|363449|363450|363451|363452|363453|363454|363455|363456|363457|363458|363459|363460|363464|363465|363466|363467|363468|363469|363470|363471|363472|363473|363474|363475|363476|363477|363478|363479|363480|363481|363482|363483|363485|363486|363487|363488|363489|363490|363491|363492|363493|363494|363495|363496|363497|363498|363499|363503|363504|363505|363506|363507|363508|363509|363510|363511|363515|363516|363517|363518|363519|363520|363526|363527|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363538|363539|363540|363541|363545|363546|363547|363548|363552|363553|363554|363555|363556|363557|363566|363567|363568|363569|363570|363571|363572|363573", + "text": "Adenocarcinoma of stomach" + }, + { + "baseId": "22868|23582|27407|27641|27642|27645|27646|27650|27652|28691|28692|28693|28694|28695|28696|28698|29022|30972|30973|32617|32618|32620|32625|36171|36173|40609|44227|48304|54633|80852|100947|133274|151732|166218|166563|171613|179419|181000|206650|213943|362773|362775|362777|362778|362837|362870|362871|362904|362905|362933|363008|363067|363068|363107|363108|363109|363113|363114|363123|363265|363266|363267|363280|363281|363282|363289|363290|363293|363294|363295|363296|363297|363298|363299|363300|363301|363302|363303|363304|363305|363306|363321|363322|363329|363336|363340|363341|363342|363343|363344|363345|363346|363347|363352|363353|363354|363355|363356|363357|363358|363359|363360|363361|363362|363363|363370|363371|363372|363373|363374|363375|363376|363377|363378|363388|363389|363420|363453|363454|363455|363456|363503|363504|363505|363506|363507|363508|363512|363513|363514|363536|363537", + "text": "Neoplasm of uterine cervix" + }, + { + "baseId": "22868|27386|27388|27393|27394|27395|27398|27404|27405|27407|27408|27409|27422|27641|27642|27652|28311|28691|28692|28693|28694|28695|28696|28698|48304|54633|80852|133271|133272|133276|139098|150855|151595|151732|151955|171613|171614|176503|180995|181000|181005|185366|185367|185375|188142|213398|213943|236461|236463|236469|236471|236477|236481|242980|245074|260191|360335|362775|362777|362778|362837|362873|362894|362904|362905|362928|362929|362944|363286|363287|363288|363289|363290|363293|363294|363295|363296|363297|363298|363299|363300|363301|363302|363303|363304|363305|363306|363358|363359|363360|363367|363368|363369|363370|363379|363380|363381|363383|363384|363385|363386|363388|363389|363453|363454|363455|363456|363457|363458|363459|363460|363464|363465|363466|363467|363468|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363496|363497|363498|363499|363503|363504|363505|363506|363507|363508|363516|363517|363518|363519|363520|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363542|363543|363544|363549|363550|363551|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568", + "text": "Uterine Carcinosarcoma" + }, + { + "baseId": "22868|27386|27395|27397|27398|27403|27405|27408|27409|27422|27641|27642|27645|27652|28311|28691|28692|28693|28694|28695|28696|28698|28916|28939|29005|32616|32617|32618|32619|32620|32621|32622|32623|32625|32626|32627|32628|40609|40610|44227|48247|48304|48938|48939|48940|49213|49214|53985|54284|54633|80852|83949|133272|133276|139098|150515|150535|150855|151595|151732|151955|152428|166218|166563|171614|172332|173901|176503|179419|180995|181000|181001|185350|185366|185367|185384|188142|213943|216786|232035|236459|236461|236462|236463|236469|236471|236477|236481|242978|242980|245074|263939|359197|360335|361709|362753|362773|362774|362775|362777|362778|362837|362860|362873|362894|362895|362896|362904|362905|362912|362914|362928|362929|362933|363008|363036|363107|363108|363109|363110|363112|363113|363114|363121|363123|363140|363165|363194|363195|363201|363222|363223|363241|363269|363270|363271|363272|363273|363283|363286|363287|363288|363289|363290|363293|363294|363295|363296|363297|363298|363299|363300|363301|363302|363303|363304|363305|363306|363310|363311|363312|363322|363323|363334|363335|363336|363339|363340|363341|363342|363343|363348|363349|363350|363351|363352|363353|363354|363357|363358|363359|363360|363361|363362|363363|363364|363365|363366|363367|363368|363369|363370|363371|363372|363373|363374|363375|363376|363377|363378|363379|363380|363381|363382|363383|363384|363385|363386|363388|363389|363391|363392|363394|363395|363421|363428|363429|363430|363431|363443|363444|363445|363446|363447|363453|363454|363455|363456|363464|363465|363466|363467|363468|363478|363479|363480|363481|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363515|363516|363517|363518|363519|363520|363521|363522|363523|363524|363525|363526|363527|363528|363529|363530|363531|363532|363533|363534|363535|363538|363542|363543|363544|363547|363548|363552|363560|363561|363562|363563|363564|363565|363566|363567|363568|363574|363575|363576", + "text": "Malignant neoplasm of body of uterus" + }, + { + "baseId": "22868|27386|27388|27393|27394|27395|27403|27404|27405|27407|27408|27409|27422|27618|27645|28320|28375|28377|28378|28691|28692|28694|28695|28698|29006|29009|29010|29013|29022|31371|31378|40609|40610|44227|48304|48901|49030|49254|53970|54284|54403|54418|54438|54454|80852|88528|99004|100947|133271|133272|133276|133277|137211|137213|137215|139098|150515|150535|150855|151476|151595|151732|151775|151897|151955|152428|166218|171613|171614|174254|179419|180995|181001|181005|185366|185367|185371|185375|185394|213398|213402|213943|222738|233761|236459|236461|236463|236469|236477|236479|236481|242978|242980|245074|249482|249492|249493|249495|250715|250716|251495|256770|256771|260191|267231|289376|360335|362775|362837|362894|362912|362952|362954|363019|363020|363021|363022|363023|363024|363025|363026|363123|363174|363197|363201|363202|363247|363248|363249|363250|363251|363261|363262|363263|363264|363265|363266|363267|363280|363281|363293|363294|363295|363296|363297|363298|363299|363300|363301|363302|363303|363304|363305|363323|363330|363331|363340|363341|363342|363343|363344|363345|363346|363347|363348|363349|363350|363351|363352|363353|363354|363355|363356|363358|363359|363360|363371|363372|363373|363374|363375|363387|363388|363438|363439|363440|363441|363442|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363457|363458|363459|363460|363464|363465|363466|363467|363468|363473|363474|363475|363476|363477|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363494|363495|363496|363497|363498|363499|363503|363504|363505|363506|363507|363508|363509|363510|363511|363515|363518|363519|363520|363521|363522|363523|363524|363525|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363538|363545|363546|363549|363550|363551|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|363572|363573|363588|363589|363590|363621|407654|550726|809416|861286|861287|861288|861289|861290|861291|861292|861293|861294|861295|861296|861297|861298|861299|861300|861301|861302|861303|861304|861305|861306|861307|861308|861309|861310|861311|861312|861313|861314|861315|861316|861317|861318|861319|861320|861321|861322|861323", + "text": "Squamous cell lung carcinoma" + }, + { + "baseId": "22868|27386|27395|27405|27407|27422|28117|28126|28694|28695|28698|29022|40609|132342|133271|133272|133276|133277|151595|151732|151955|171613|171614|185345|185366|185367|185375|185394|213402|213943|222738|232035|236461|236463|236469|236479|236481|242980|260192|360335|362775|362837|362894|362895|362896|363123|363209|363247|363248|363249|363250|363251|363352|363353|363354|363388|363469|363470|363471|363472|363478|363479|363480|363481|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363531|363532|363533|363534|363535|363536|363537|363539|363540|363541|363545|363546|363547|363548|363553|363554|363555|363556|363557|363558|363559|363566|363567|363568|363569|363570|363571|462915|463279|463892|480540|568568", + "text": "Small cell lung carcinoma" + }, + { + "baseId": "22872|22882", + "text": "Proteus-like syndrome" + }, + { + "baseId": "22872|612150|612151|654622", + "text": "PTEN-related disorder" + }, + { + "baseId": "22879", + "text": "Glioma susceptibility 2" + }, + { + "baseId": "22880", + "text": "Vater association with macrocephaly and ventriculomegaly" + }, + { + "baseId": "22893|135209|214793|250439|283467|283472|283474|284153|284155|284156|284159|286058|286064|286079|286087|286090|286434|286437|286438|286440|286441|286442|539990|623251|883011|883012|883013|883014|883015|883016|883017|883018|883019|883020|883021|883022|883023|883024|883025|883026|883027|883028|883029|883030|883031|883032|883033|883034|883035|883036|883037|883038", + "text": "Maturity-onset diabetes of the young type 6" + }, + { + "baseId": "22894|22895|22896|256296|256297|256298|263862|329217|329218|329221|329223|329227|329228|329229|329230|339409|339413|339415|339417|339421|339422|339423|339424|339426|339430|339433|339434|339436|339437|339444|339446|339454|339456|339459|345222|345224|345229|345235|345241|345242|345244|345245|345251|345259|346630|346632|346633|346634|346635|346641|346642|346643|346648|346649|622042|625980|727329|788913|789310|789311|789312|794273|798719|801178|877992|877993|877994|877995|877996|877997|877998|877999|878000|878001|878002|878003|878004|878005|878006|880559|964488|970530", + "text": "Coxopodopatellar syndrome" + }, + { + "baseId": "22897|22898|22899|22900|22901|22902|39175|190855|191404|191688|257266|257267|257269|257270|257272|257273|257276|257277|257279|257282|257286|257287|257288|257293|270316|270572|272092|334731|334733|334735|334740|334741|344541|344546|344547|344548|344553|349574|349575|349578|349580|349582|349584|349585|350587|350590|350591|350594|404841|430277|470265|471339|471341|533421|533424|533450|533452|533455|533459|533460|533482|533489|533495|533499|533501|533961|533963|570291|572831|572832|572834|573435|575067|575068|578571|584124|584527|586257|648526|648527|648528|648529|648530|648531|648532|648533|648534|648535|648536|648537|648538|648539|648540|648541|648542|648543|648544|648545|716771|728488|728489|728490|728491|728492|742211|742212|742213|742214|742215|757340|757341|757344|757346|757347|760841|772975|772978|772980|772982|776642|776649|786315|786317|788229|821301|848158|848159|848160|848161|848162|848163|848164|848165|848166|848167|848168|848169|848170|848171|848172|848173|848174|848175|848176|848177|848178|848179|848180|848181|851838|852361|882729|882730|882731|882732|882733|882734|882735|882971|882972|882973|882974|882975|929130|929131|929132|929133|938895|940495|941249|950964|950965|950966|950967|958764|958765|958766|958767|958768|960307|960930|960931|960932|961984", + "text": "Hemophagocytic lymphohistiocytosis, familial, 5" + }, + { + "baseId": "22903|217245|576126|919089", + "text": "Essential hypertension" + }, + { + "baseId": "22904|429318", + "text": "Body mass index quantitative trait locus 4" + }, + { + "baseId": "22905|22912|227277", + "text": "Groenouw corneal dystrophy type I" + }, + { + "baseId": "22906|578556|578557|972509", + "text": "Thiel-Behnke corneal dystrophy" + }, + { + "baseId": "22907", + "text": "Lattice corneal dystrophy Type I" + }, + { + "baseId": "22908|22911", + "text": "Avellino corneal dystrophy" + }, + { + "baseId": "22909|22911|22915", + "text": "Reis-Bucklers' corneal dystrophy" + }, + { + "baseId": "22910|22914|227277", + "text": "Corneal dystrophy, lattice type 3A" + }, + { + "baseId": "22910|22917|47865|47870|47873|177662|177663|177664|177666|191114|227277|251427|251428|251670|251671|251672|251673|257339|257341|257342|257343|257344|257345|257346|257347|257348|292967|292968|292978|292980|292981|292982|292993|292995|292996|293003|293009|293018|293022|293032|293034|293040|294398|294407|294411|294415|294416|294417|294418|294421|294424|294425|294432|294433|294435|294439|294448|295350|295354|295362|295366|295368|295369|295370|297122|297128|297130|297131|297133|297139|297141|297143|297147|297155|297156|297157|297824|297840|297854|297855|297856|297857|297883|297885|297889|297890|297891|297892|297894|297898|297899|297903|297908|297909|297913|297916|297920|297929|297941|297956|297973|297990|300887|300896|300898|300899|300905|300906|300907|300909|300910|300911|300914|300916|300978|300979|300980|300989|300999|335146|335150|335155|335157|335160|335162|335165|335168|335169|344931|344934|344936|344938|344949|344951|344952|344954|344973|349799|349800|349803|350817|350819|350822|350823|350826|350828|350829|350833|350834|350835|350836|350841|429065|482318|482319|482320|486367|488711|620182|620183|620184|705429|705430|709273|709631|716900|716901|721224|728589|742316|742317|742319|742323|749220|749221|749222|757418|757421|757422|760946|773041|773042|773045|779126|780043|782145|786350|793835|793836|885955|885956|885957|885958|885959|885960|885961|885962|885963|885964|885965|885966|885967|885968|885969|885970|885971|885972|885973|885974|885975|885976|885977|885978|885979|885980|885981|887443|887444|887445|887446|887447|887448|887449|890529|890530|890531|890532|890533|890534|890535|890536|890537|890538|890539|890540|890541|890542|890543|890544|890545|890546|890547|890548|890549|890550|890551|890552|890553|890554|890555|890557|890558|890559|890560|890561|890562|890563|890564|890565|890566|890567|890568|890569|890570|890571|890572|890573|890574|890575|890576|891778|891779|891780|892904|892905|892906|892907|892908|892909|892910|892911|892912|892913|892914|892915|892916|892917|892918|892919|892920|892921|892922|892923|892924|892925|892926|892927|892928|896029", + "text": "Corneal dystrophy" + }, + { + "baseId": "22916|22917", + "text": "Corneal epithelial dystrophy" + }, + { + "baseId": "22918|22921|22921|22927|22927|22933|22933|22937|22937|22941|22942|22943|22944|22946|22948|22949|22950|98777|98777|104923|104959|104959|104972|104973|104997|105113|105173|105181|105183|105199|105200|105279|105292|105317|105320|105327|105394|152795|209342|237637|237682|259682|260778|260779|267810|361623|431632|513015|513016|513244|537088|578345|590238|623246|623247|623248|677405|677405|802124|818176|856058|905048", + "text": "Cone-rod dystrophy 3" + }, + { + "baseId": "22918|29068|29068|105002|137717|166347|172489|179185|196456|202392|244140|244158|244161|244165|250213|273116|354284|365691|384512|384515|384516|384522|384523|384524|384526|461251|461253|461443|461765|461772|461773|461779|461780|461782|462085|462090|462095|462097|462098|462104|526315|526316|526318|526350|526352|526354|526560|526568|526569|526834|526835|539127|551409|564792|565942|567386|567387|567392|567403|570761|570765|640231|640232|640233|640234|640235|693071|693072|693075|693076|804736|838673|838674|838675|838676|838677|838678|920542|926309|926310|935649|947549|947550|947551|956567", + "text": "Peripheral neuropathy" + }, + { + "baseId": "22918|22921|22927|22933|22933|22937|22940|22943|22946|24628|98774|98777|98777|104923|104959|104972|104997|105002|105003|105042|105100|105102|105113|105113|105154|105162|105172|105173|105199|105218|105236|105240|105262|105279|105287|105292|105302|105308|105317|105317|105320|105394|237637|237639|237652|237674|237680|237699|259682|283423|360815|360816|360817|361623|488481|623954|918661|918662|918663|918664|918665", + "text": "Age-related macular degeneration 2" + }, + { + "baseId": "22919|22923|22924|22942|22952|104927|104930|104931|104938|104954|104974|104990|105042|105058|105068|105082|105135|105147|105160|105200|105279|105285|105296|105297|105302|105329|105330|105332|105333|105337|105343|105380|105381|105383|105387|139937|139938|139942|139944|152793|177450|190742|191153|191957|191958|195765|237686|237695|237696|237704|250031|250033|253109|253876|253877|253878|253879|253881|253882|253883|253884|253886|267624|277559|281326|281328|281329|281332|281340|281341|281342|281346|281351|281359|281361|281367|281368|281373|281375|281378|281381|281972|281973|281986|281988|281995|281996|282000|282001|282006|283241|283246|283260|283261|283265|283266|283281|283282|283286|283290|283291|283298|283299|283386|283388|283391|283392|283399|283400|283402|283415|283422|283423|283434|283438|283441|283442|310098|310128|311355|311393|311413|311414|311416|311434|314246|314257|314263|316890|316938|316939|316940|316942|316946|316962|316991|322846|322929|322941|322943|322948|322950|322971|322982|322987|323329|323479|323481|323535|323560|323563|323569|323570|328900|353063", + "text": "Cone-Rod Dystrophy, Recessive" + }, + { + "baseId": "22919|22923|22924|22927|22931|22933|22942|22943|22951|22952|104923|104927|104930|104931|104942|104954|104959|104960|104974|104976|104990|104991|105001|105037|105042|105043|105044|105058|105067|105068|105082|105106|105128|105135|105147|105160|105163|105167|105169|105177|105190|105197|105199|105200|105230|105279|105285|105287|105292|105296|105297|105302|105323|105329|105330|105332|105333|105337|105343|105371|105380|105381|105383|105386|105387|105405|139937|139938|139941|139942|139943|139944|152791|152793|177451|191153|192960|195880|226523|231499|237641|237663|237671|237684|237686|237695|237696|237704|250033|250039|267624|271072|271852|273555|281326|281328|281329|281332|281340|281341|281342|281346|281351|281361|281365|281367|281368|281373|281972|281973|281986|281988|281995|281996|282000|282001|283241|283246|283260|283261|283265|283266|283281|283282|283286|283290|283291|283298|283299|283386|283388|283391|283392|283399|283400|283402|283415|283422|283423|283434|283437|283441|283442|365227|365257|365433|365528|405257|413236|421260|488481|493406|498851|620017|620018|620019|620729|622315|719137|732655|732656|824455|856028|857169|864838|864839|864840|864841|864842|864843|864844|864845|864846|864847|864848|864849|864850|864851|864852|864853|864854|864855|864856|864857|864858|864859|864860|864861|864862|864863|864864|864865|864866|864867|864868|864869|864870|864871|864872|864873|864874|864875|864876|864877|864878|864879|864880|865216|865217|865218|865219|865220|865221|865222|865223", + "text": "ABCA4-Related Disorders" + }, + { + "baseId": "22921|22927|22928|22933|22937|22943|22946|98777|104923|104959|104959|104972|104973|104995|104997|105113|105173|105181|105183|105192|105199|105292|105317|105320|105394|105394|237637|259682|267810|361623|677405", + "text": "Retinitis pigmentosa 19" + }, + { + "baseId": "22924|22927|22943|22952", + "text": "MACULAR DEGENERATION, AGE-RELATED, 2, SUSCEPTIBILITY TO" + }, + { + "baseId": "22931|105317|176969|177101|177232|178143|178144|178145|178146|195331|195671|195955|195956|195957|195958|195959|195960|195961|195962|195963|252020|252021|252022|252023|252024|252025|252026|252027|252028|252029|252030|252031|252032|252033|252034|252035|252036|252037|252038|298213|298214|298218|298219|298229|298230|298232|298238|298239|298243|298244|298249|298250|298251|298252|298256|298258|298265|298266|298274|298275|298279|298284|298285|298290|298291|298294|298298|298299|298302|298303|298304|298305|298306|298310|300523|300528|300534|300536|300537|300546|300553|300555|300557|300559|300560|300564|300565|300570|300571|300584|300585|300587|300588|300596|300597|300618|300619|300620|300622|300623|300624|304783|304785|304787|304788|304790|304792|304793|304794|304796|304797|304798|304799|304800|304801|304808|304823|304824|304828|304838|304839|304844|304848|304858|304859|304861|304864|304865|304875|304881|304882|304885|304886|304893|304899|304902|304905|305051|305066|305070|305071|305072|305073|305077|305078|305083|305089|305094|305107|305109|305110|305115|305116|305117|305119|305120|305122|305123|489874|513968|536136|551408|623988|623990|735244|831182|831183|831184|831214|831225|831229|894774|894775|894776|894777|894778|894779|894780|894781|894782|894783|894784|894785|894786|894787|894788|894789|894790|894791|894792|894793|894794|894795|894796|894797|894798|894799|894800|894801|894802|894803|894804|894805|894806|894807|894808|894809|894810|894811|894812|894813|894814|894815|894816|894817|894818|894819|894820|894821|894822|894823|894824|894825|894826|894827|894828|894829|894830|894831|894832|894833|894834|896140|896141|896142", + "text": "Vitreoretinopathy" + }, + { + "baseId": "22943", + "text": "Mandibulofacial dysostosis with mental deficiency" + }, + { + "baseId": "22945|22946|209346|966073|966083|966086", + "text": "Retinal dystrophy, early-onset severe" + }, + { + "baseId": "22953|227300|481156|539002", + "text": "Platelet-activating factor acetylhydrolase deficiency" + }, + { + "baseId": "22954|22955", + "text": "Asthma and atopy, susceptibility to" + }, + { + "baseId": "22956", + "text": "Cranioosteoarthropathy" + }, + { + "baseId": "22956|22957|22958|165835|165836|273624|292827|292832|292839|292840|292845|292849|292850|292856|292857|292865|292866|292870|292872|292876|292879|294230|294231|294232|294236|294243|294244|294245|294252|297628|297629|297630|297631|297632|297633|297647|297648|297652|297660|297664|297684|297685|297686|297706|297759|297760|297761|297764|297768|297769|297770|297792|353669|590273|698435|734522|781901|890456|890457|890458|890459|890460|890461|890462|890463|890464|890465|890466|890467|890468|890469|890470|890471|962033|962034", + "text": "Hypertrophic osteoarthropathy, primary, autosomal recessive, 1" + }, + { + "baseId": "22958|22959|273624|292827|292832|292839|292840|292845|292849|292850|292856|292857|292865|292866|292870|292872|292876|292879|294230|294231|294232|294236|294243|294244|294245|294252|297628|297629|297630|297631|297632|297633|297647|297648|297652|297660|297664|297684|297685|297686|297706|297759|297760|297761|297764|297768|297769|297770|297792|353669|698435|734522|781901|890456|890457|890458|890459|890460|890461|890462|890463|890464|890465|890466|890467|890468|890469|890470|890471", + "text": "Digital clubbing, isolated congenital" + }, + { + "baseId": "22960|22961|22962|22963|22964|22965|22966|249262", + "text": "Meesmann corneal dystrophy 1" + }, + { + "baseId": "22967|48345|48346|176954|192847|194604|291235|291343|623829|697706|799307|799308|802147|918784|918785|918786|918787", + "text": "Retinitis pigmentosa 33" + }, + { + "baseId": "22968|22969|22972|22973|22974|22977|22978|22979|22980|22982|22984|23347|23347|57270|76604|76605|76606|174402|174539|191976|227325|227326|244016|305811|309843|309847|315085|315202|404778|421688|457953|457954|457957|458600|458603|513072|523521|524023|524284|524294|524296|551558|562319|562492|565208|568091|637384|637385|637386|687317|711627|783152|798604|800834|818258|818259|819982|819983|819984|835026|835027|835028|835029|851209|851702|851704|925258|934416|940912|946175|946176|962717|963360", + "text": "Branchiootorenal Syndrome 1" + }, + { + "baseId": "22970|22971|22977|22982|22983|57264|57265|57269|57270|57271|57272|57273|174400|174402|174537|174538|174539|174540|191976|227326|229622|229623|305789|305793|305795|305799|305809|305811|305812|305813|305817|305820|305824|309803|309808|309827|309829|309835|309836|309837|309841|309843|309847|309855|309857|309858|309866|309868|309870|309884|309886|315036|315040|315043|315067|315069|315081|315083|315084|315085|315100|315101|315102|315105|315114|315194|315199|315201|315202|315204|315205|315206|315215|404778|493047|654755|677035|798603|899976|899977|899978|899979|899980|899981|899982|899983|899984|899985|899986|899987|899988|899989|899990|899991|899992|899993|899994|899995|899996|899997|899998|899999|900000|900513|900514|900515", + "text": "Branchiootic syndrome" + }, + { + "baseId": "22975", + "text": "Anterior segment anomalies and cataract" + }, + { + "baseId": "22976", + "text": "Anterior segment anomalies" + }, + { + "baseId": "22977", + "text": "Branchiootorenal syndrome with cataract" + }, + { + "baseId": "22977|22981|57264|57265|57269|57270|57271|57272|57273|174400|174537|174538|174539|174540|191976|227326|229622|229623|305789|305793|305795|305799|305809|305811|305812|305813|305817|305820|305824|305825|305826|305827|309803|309808|309827|309829|309830|309831|309833|309835|309836|309837|309841|309843|309847|309855|309857|309858|309866|309868|309870|309884|309886|309891|309902|309906|315036|315040|315043|315067|315068|315069|315070|315081|315083|315084|315085|315100|315101|315102|315105|315114|315185|315187|315194|315199|315201|315202|315204|315205|315206|315215|353843|404778|493047|654522|899976|899977|899978|899979|899980|899981|899982|899983|899984|899985|899986|899987|899988|899989|899990|899991|899992|899993|899994|899995|899996|899997|899998|899999|900000|900513|900514|900515|919173|919174", + "text": "Otofaciocervical syndrome 1" + }, + { + "baseId": "22985|22986|22987|22988|22989|22990|22991|22992|22993|22994|22995|22997|22998|22999|23000|39161|190231|190232|193402|277404|277405|277408|277409|277410|277411|277612|277613|277616|277619|277620|277621|277632|277639|278472|278478|278479|278480|278492|278493|278495|278503|278517|614159|731877|862803|862804|862806|862807|862808|862809|862810|862811|862812|862813|862814|862815|862816|862817|862818|862819|862820|862821|862822", + "text": "Glaucoma 1, open angle, A" + }, + { + "baseId": "22994", + "text": "Glaucoma 1, open angle, a, autosomal recessive" + }, + { + "baseId": "22994|190231|193402|247362|277404|277405|277408|277409|277410|277411|277612|277613|277616|277619|277620|277621|277632|277639|278472|278478|278479|278480|278492|278493|278495|278503|278517|360918|360999|389344|731877|862803|862804|862805|862806|862807|862808|862809|862811|862812|862813|862814|862815|862816|862817|862818|862819|862820|862821|862822", + "text": "Glaucoma" + }, + { + "baseId": "22996", + "text": "Glaucoma 1, open angle, a, digenic" + }, + { + "baseId": "22997", + "text": "Glaucoma 3, primary congenital, a, digenic" + }, + { + "baseId": "22997|619971|619972|619973", + "text": "MYOC-Related Disorders" + }, + { + "baseId": "23001", + "text": "Spinal muscular atrophy, modifier of" + }, + { + "baseId": "23001|24203|24204|24207|24208|24209|24211|24212|24215|24217|48111|48112|48113|424702|622775|622789|626372|858314", + "text": "Kugelberg-Welander disease" + }, + { + "baseId": "23002|23003|23004|23005|23006|23007|23008|23009|23010|23011|26848|26850|26857|26863|26872|39160|102150|102152|102153|102154|102156|102157|102158|102159|139891|139892|139893|139894|139895|139896|139897|139898|139899|139900|139901|139902|139903|139904|139905|139906|139907|139908|139909|139910|139911|139912|141585|141586|141587|141588|141589|141590|153060|153104|153122|153258|153570|165745|165746|165747|165748|165749|165750|165751|165752|165753|165754|165755|165756|165757|165758|165759|165760|165761|165762|165763|165764|165765|165766|165767|165768|165769|165770|165771|165772|165773|165774|165775|165776|165777|165778|165779|165780|165781|165782|165783|165784|165785|165786|165787|165788|165789|165790|165791|165792|165793|165794|165795|165796|165797|165798|165799|165800|165801|165802|165919|165920|165921|165922|165923|165924|165925|165926|165927|165928|165929|165930|165931|165932|165933|165934|165935|165936|165937|165938|165939|165940|165941|165942|165943|165944|165945|165946|165947|165948|166474|166478|166533|169077|169078|169079|169083|169084|169085|169086|169087|169088|169089|169090|169091|169092|169093|169094|169095|169096|169097|169098|169099|169100|169101|169102|169103|169104|169105|187486|193733|196435|196438|196439|205805|208160|208161|208162|208163|208164|208165|208169|213632|215013|215015|242023|264716|360214|361963|373993|400542|400846|404014|409190|409191|409195|429625|429627|429628|439324|463959|464538|464761|464765|464796|464802|491540|492278|512117|528617|528969|528974|528982|529041|550660|566886|568553|568557|568563|568615|568620|569188|569191|569216|569219|569220|569224|573133|573137|573140|573142|580004|614015|614017|614020|614021|614136|642994|642995|642996|642997|642998|642999|643000|643001|643002|680053|688393|693648|754325|770057|778228|788886|791432|791433|791434|791435|791436|802004|820665|820666|820669|842080|842081|842082|842083|842084|842085|842086|842087|842088|842089|842090|842091|842092|858691|906351|927258|927259|927260|936829|936830|936831|936832|940321|941079|948780|948781|948782|948783|948784|962873|962874|962875|969569|972727|973104|983697", + "text": "Angelman syndrome" + }, + { + "baseId": "23012|23013|23014|23015|23016|23016|23017|23018|23019|23021|23023|28324|31379|138125|138127|138129|138131|139286|193378|193379|236942|236942|252665|253699|253700|253704|253706|268579|268591|309577|309579|309582|309583|309584|309585|309587|309588|309600|309606|309607|309608|314366|314367|314377|314378|314379|314389|314395|314396|314414|314416|314418|314419|314420|314421|314431|320436|320439|320440|320447|320448|320459|320461|320462|320467|320469|320470|320865|320874|320875|320877|320883|320884|320908|320909|320916|320920|320934|320936|320937|320942|320947|415094|415094|431983|456538|456820|456935|456940|457165|457597|457599|503156|522519|522755|522762|522825|522829|522830|523183|561759|561768|566649|566651|566659|566662|569547|635970|635971|635972|635973|635974|635975|635976|679249|682491|692201|692202|699993|701223|737381|790715|815986|833416|833417|865489|865490|865491|865492|865493|865494|865495|865496|865497|865498|865499|865500|865501|865502|865503|865504|865505|865506|865507|865508|865509|865510|865511|865512|865513|865514|868451|868452|868453|919097|924782|933812|933813|955106|955107|962161|969280|969281|969289", + "text": "Saethre-Chotzen syndrome" + }, + { + "baseId": "23016|23023|23024|23025|70565|70566|70567|236942|236942|252665|361136|415094|456538|456820|456935|456940|457597|457599|468850|469875|469877|470296|470299|470963|522519|522755|522762|522825|522829|522830|523183|533064|533066|533147|533175|561759|561768|566649|566651|566659|566662|570836|574986|635970|635971|635972|635973|635974|635975|635976|689088|689089|692201|692202|694439|694442|695828|699993|705042|741931|786211|790715|833416|833417|847754|924782|928988|928989|933812|933813|938718|938719|950815|955106|955107|958651|962161", + "text": "Craniosynostosis 1" + }, + { + "baseId": "23020|23023|236942", + "text": "Robinow-Sorauf syndrome" + }, + { + "baseId": "23022", + "text": "Saethre-Chotzen syndrome with eyelid anomalies" + }, + { + "baseId": "23026|23027|23028|23029|40565|195350|254425|254427|266615|273010|316116|316117|316121|316123|316124|316126|316128|316129|316142|316145|316146|316147|316152|316154|316155|316157|316158|316160|316161|323363|323366|323367|323370|323374|323375|323377|323391|323392|323394|323395|323412|323416|323417|323428|323440|323441|323443|323444|329568|329569|329575|329587|329588|329594|329595|329596|329599|329601|329613|329616|329617|329631|329632|329633|329640|329644|329646|329647|329649|329658|330721|330728|330730|330731|330735|330740|330744|330752|330755|330757|330759|330761|330765|330768|330769|330770|330771|330777|330783|330793|330794|330798|330802|330806|330830|404621|490883|566344|581960|584835|702145|702146|724903|852437|869345|869346|869347|869348|869349|869350|869351|869352|869353|869354|869355|869356|869357|869358|869359|869360|869361|869362|869363|869364|869365|869366|869367|869368|869369|869370|919412|926470|960775", + "text": "Ulnar-mammary syndrome" + }, + { + "baseId": "23030|23031|23032|23033|23034|23035|23036|23037|23038|45761|143119|165589|178439|192196|194372|195854|209426|209429|209430|209431|209432|209434|209436|209439|209440|209441|209442|209444|210203|210214|210215|210216|224188|226714|237520|238210|249731|254419|254420|254421|257940|258718|260009|264579|273935|279092|280529|316066|316067|316071|316075|316077|316078|316080|316081|316107|316108|316113|316115|323314|323321|323332|323333|323334|323336|323338|323352|323354|323360|329524|329530|329531|329534|329536|329539|329540|329542|329548|329549|329556|329557|329564|329565|329567|330635|330639|330642|330645|330646|330652|330658|330659|330664|330671|330672|330673|330674|330675|330681|330690|330696|330698|330700|330704|330706|353903|361158|361746|364644|364755|364782|364894|390968|390985|391030|391044|391046|391063|391064|434565|442719|444920|447488|447491|447497|447499|447623|447624|447625|447630|447783|447790|447794|461851|481488|486712|498297|509132|510351|510353|510354|514885|515538|515541|515548|515571|515585|552355|556784|556786|556788|556856|557147|557149|557151|558345|566343|571281|614044|622152|622153|622154|622155|622156|622157|622158|622159|622160|622161|622162|622163|622164|622165|622166|622167|622168|622169|622170|622171|622172|622173|622174|622175|622176|622177|622178|622179|622180|622181|622182|622183|622184|622185|622186|622187|622188|622189|622190|622191|622192|622193|622194|622195|622196|622197|622198|622199|622200|622201|622202|622203|622204|622205|622206|627369|627370|627371|627372|627373|627374|627375|627376|627377|650543|650569|690019|791198|794581|818752|818926|818927|818928|818929|818930|823471|823472|823473|823474|823475|823476|823477|858254|869318|869319|869320|869321|869322|869323|869324|869325|869326|869327|869328|869329|869330|869331|869332|869333|869334|869335|869336|869337|869338|869339|869340|869341|869342|869343|869344|872192|917104|921845|921846|921847|930326|930327|941763|941764|941765|941766|941767|952300|952301|952302|960024", + "text": "Holt-Oram syndrome" + }, + { + "baseId": "23032|23034|45781|45782|192196|195854|210203|210214|210215|210216|241240|242093|242094|242095|242096|242097|242098|242100|242101|254420|258715|258718|264579|329557|363991|398451|398833|398835|398842|398963|398968|400288|400289|400291|400294|400304|400307|400314|400316|400450|400453|400795|400797|400802|401078|404705|429714|444920|461633|461851|462123|462188|462426|462429|464428|464444|465055|465060|465062|465069|465070|465242|465246|465312|465323|465332|487554|487573|490889|510348|510353|510354|526687|526920|527252|528990|528992|529089|529584|565055|565056|566342|566343|567675|569043|571275|571277|571281|581908|622175|623399|640641|640642|640643|643477|643478|643479|643480|643481|643482|643483|643484|643485|643486|643487|643488|643489|643490|643491|643492|643493|643494|652165|652207|652365|687885|688465|688466|688470|693726|695550|703296|820445|839327|839328|839329|839330|839331|839332|839333|839334|839335|839336|842605|842606|842607|842608|842609|842610|842611|842612|842613|842614|842615|842616|842617|851476|852434|852608|926469|927399|927400|937024|937025|937026|937027|937028|947791|948981|948982|956749|956750|956751|957474|957475|957476|957477|960024", + "text": "Aortic valve disease 2" + }, + { + "baseId": "23039|23040|171809", + "text": "Hypotrichosis-lymphedema-telangiectasia syndrome" + }, + { + "baseId": "23041|427113", + "text": "Hypotrichosis-lymphedema-telangiectasia-renal defect syndrome" + }, + { + "baseId": "23042|23043|23044|23045|23046|23047|23048|23049|205171", + "text": "Fundus albipunctatus, autosomal recessive" + }, + { + "baseId": "23042|23044|23045|28052|28059|28084|28136|98753|98754|104543|104548|104554|104561|104573|104592|104611|142607|142608|142609|142611|177987|194294|205171|252356|254632|254633|254634|264695|265976|268054|270098|300152|300154|300156|300157|300161|300164|300166|300167|300169|300173|302873|302878|302879|302880|302885|302916|302918|302926|302934|302935|302948|302949|302951|302953|302954|302960|302962|302963|307343|307353|307354|307355|307361|307363|307369|307552|307564|307565|307570|307575|307578|307579|307586|318026|318030|318034|318036|318037|323448|323451|323456|323458|323459|323460|323461|323472|323473|325932|325933|332162|332164|332165|332166|332169|333147|333149|333151|333153|333160|333162|333163|333663|339985|339987|339991|339993|339996|339999|341371|341373|341378|341381|341382|341384|341387|372463|373168|413340|489877|513938|585498|612436|622998|623998|699595|726328|800576|800577|800578|800597|818312|831963|870170|870171|870172|870173|870174|870175|870176|870177|870178|872268|874211|874212|874213|874214|874215|874216|874217|874218|874219|874220|874221|874222|874223|874224|876583|876584|876585|896283|896284|896285|896286|896287|896288|896289|896290|896291|896292|896293|896294|896295|896296|896297|896298|896299|896300|896301|896302|896303|896304|918798|919029|919030|919456", + "text": "Pigmentary retinal dystrophy" + }, + { + "baseId": "23050|23051|23052|23053|23054|23055|23056|94358|176002|176003|176005|176010|176145|176146|176147|176150|176152|176153|199803|230624|230625|230627|230628|230629|324640|324641|324644|324647|324648|324650|324651|324653|324655|324656|324659|324660|324661|324665|324666|324677|324679|324712|324715|324747|324750|324751|334180|334182|334184|334187|334190|334194|334196|334197|334202|334203|334207|334209|334215|334217|334226|334237|334240|334244|334245|334286|334287|334289|334292|334293|334294|334341|334342|334346|340870|340871|340873|340874|340875|340882|340883|340886|340890|340896|340897|340901|340903|340905|340906|340909|340911|340912|340929|340930|340933|340934|340937|340938|340941|340945|340974|342285|342290|342291|342295|342300|342303|342306|342321|342323|342328|342335|342339|342341|342342|342344|342347|342355|342390|342393|342394|342396|342398|342400|342405|342411|342453|342464|342467|439886|442562|497075|497474|497691|513355|588018|610685|623382|623383|623384|623385|654797|677037|677057|682734|714808|726505|755018|800405|804865|804866|804867|804884|858572|874851|874852|874853|874854|874855|874856|874857|874858|874859|874860|874861|874862|874863|874864|874865|874866|874867|874868|874869|874870|874871|874872|874873|874874|874875|874876|874877|874878|874879|874880|874881|874882|874883|874884|874885|874886|874887|874888|874889|874890|874891|874892|874893|874894|874895|874896|874897|874898|874899|874900|874901|874902|874903|874904|874908|874909|874910|874912|874927|874928|874929|874930|874931|874932|874933|874934|874935|876638|876639|876640|876641|876642|903609|921218|921219|921220|921223|961017|962172|962173|962174|962175|965231|965928|966782|969612|973040|975949|975950|980956|983798", + "text": "Surfactant metabolism dysfunction, pulmonary, 3" + }, + { + "baseId": "23057|23058|207093|207094|207095|207095|209349|251310|291890|291891|291896|291898|291902|291906|293293|293297|293299|293300|293301|293306|296572|296582|296591|296595|296611|296612|296615|296621|296622|380212|380212|380213|452829|539993|539993|631856|631857|631858|631859|691490|691491|790429|790430|828651|828652|889845|889846|889847|889848|889849|889850|889851|889852|889853|889854|889855|889856|889857|889858|889859|889860|889861|891725|891726|891727|943736", + "text": "Deficiency of 3-hydroxyacyl-CoA dehydrogenase" + }, + { + "baseId": "23059|23060|48081|48082|48083|207093|207094|207095|207095|251310|291891|291896|291898|291902|293293|293297|293299|293301|293306|296572|296591|296595|296611|296612|296615|296621|296622|380212|380212|539993|539993|631858|889845|889846|889847|889848|889849|889850|889851|889852|889853|889854|889855|889856|889857|889858|889859|889860|889861|891725|891726|891727", + "text": "Hyperinsulinemic hypoglycemia, familial, 4" + }, + { + "baseId": "23061|23062", + "text": "Malignant rhabdoid tumor, somatic" + }, + { + "baseId": "23063|23064|23069|131900|138996|195650|243638|243639|243651|243652|337610|337611|337626|347199|347201|347202|351195|351197|351200|351201|351204|352216|352217|352219|379825|403784|403820|403825|403839|404300|404323|404331|469839|469843|469939|469954|469958|469960|469961|469974|469984|470849|470916|471303|471397|471803|534031|534083|534095|534169|534170|534182|534195|534615|571721|571724|571725|571744|571748|573289|573290|573292|573294|573966|573969|573971|575217|575218|683150|890931|890932|890933|890934|890935|890936|890937|890938|890939|891811", + "text": "Rhabdoid tumor predisposition syndrome 1" + }, + { + "baseId": "23066", + "text": "Schwannomatosis 1, somatic" + }, + { + "baseId": "23071|23072|23073|23074|23075|23076|23077|165691|236909|332860|332863|332864|332868|332869|332872|332886|332888|332889|332892|343055|343059|343064|343071|343072|343074|343076|348401|348402|348404|348405|348411|348413|348415|348416|348418|348419|349560|349563|349564|349565|349569|349570|349573|413501|469489|469490|469492|469928|470532|470534|512878|532761|532765|532784|532853|532855|532857|533216|533218|533224|570604|570608|570609|572287|572289|572978|572982|572983|572988|572990|572992|574911|574916|574917|647820|647821|647822|647823|647824|647825|647826|647827|647828|647829|647830|647831|647832|647833|647834|647835|647836|647837|647838|647839|647840|647841|647842|653610|704854|716291|716293|716294|728036|741712|741713|741714|741715|741717|741718|745385|791916|821244|847436|847437|847438|847439|847440|847441|847442|847443|847444|847445|851803|851805|852322|852966|880161|880162|880163|880164|880165|880166|880167|880168|880169|880170|880171|880172|880173|880174|880175|880176|880177|880178|880179|880180|880181|880182|880721|928896|928897|928898|928899|938616|938617|938618|938619|938620|940477|941227|941228|941229|950714|950715|950716|950717|950718|950719|950720|958572|958573|958574|958575|958576|958577", + "text": "Immunodeficiency 30" + }, + { + "baseId": "23078|23079|23080|23081|23082|23083|34210|34211|34212|34213|300562|300569|300572|300577|300586|303402|303421|303428|303454|303517|308010|308011|308016|308094|308097|353795|360879|590168|590459", + "text": "Char syndrome" + }, + { + "baseId": "23085|33384|33386|33387|33388|33389|33392|33394|33396|33397|33398|33399|33401|134200|134201|134202|134203|187128|194325|196197|207598|207599|244115|244116|256400|256405|266273|268552|329773|329776|329779|329781|329782|329784|340069|340071|340073|340075|340079|340083|345775|345776|345778|345779|345783|345788|346460|347169|347170|347173|347175|347178|347179|347186|468837|469078|481350|513646|532150|572244|574612|589390|612320|620605|694200|694201|741011|801686|801687|801691|878369|878370|878371|878372|878373|878374|878375|878376|878377|878378|878379|878380|878381|878382|878383|878384|880575|880576", + "text": "Congenital myasthenic syndrome 4C" + }, + { + "baseId": "23085|23085|23086|23087|23088|23089|23090|23090|23091|23092|23093|23094|23094|23095|23095|23096|135535|135536|135537|135538|188076|236991|236991|254190|254191|254191|254193|254194|254194|254196|254196|254197|254199|254199|259249|269662|272237|272237|314298|314302|314302|314303|314304|314310|314311|320894|320895|326952|326961|326961|326964|326964|326966|326966|326967|326967|326969|327989|327990|327992|327993|328006|328006|328008|328008|328017|328017|429242|441429|461171|461173|461192|461192|461196|461377|461384|461384|461702|461704|461705|462027|462028|503668|525851|526258|526259|526260|526291|526292|526294|526479|538423|546445|564725|564727|564728|564734|564737|565864|567327|567332|570703|620404|640135|640136|640137|640138|640139|640140|640141|640142|640143|640144|640145|640146|640147|640148|640149|677435|677436|677436|693055|693056|693057|693058|701788|701788|738012|738013|738014|738015|738016|738017|752698|768481|784019|784022|784023|791143|820380|820381|838547|838548|838549|838550|838551|838552|838553|838554|838555|851439|868105|868106|868107|868108|868109|868110|868111|868112|868659|868660|868660|926266|926267|926268|926269|935592|941000|947496|947497|947498|956525|956526|956527|956528|956529|956530", + "text": "Myasthenic syndrome, congenital, 11, associated with acetylcholine receptor deficiency" + }, + { + "baseId": "23096|23097|23098", + "text": "Fetal akinesia deformation sequence 2" + }, + { + "baseId": "23099|44208|48633|48778|247414", + "text": "Schinzel phocomelia syndrome" + }, + { + "baseId": "23100", + "text": "Fuhrmann syndrome" + }, + { + "baseId": "23109", + "text": "Pancreatitis, chronic, protection against" + }, + { + "baseId": "23110|207396|215332|512819|512820|512905|919019|919020", + "text": "Spinocerebellar ataxia type 1" + }, + { + "baseId": "23111", + "text": "Malattia leventinese" + }, + { + "baseId": "23111|99387|104603|177692|189104|191177|250749|268069|286823|286824|286827|286833|286834|286838|286839|286840|286844|286848|286853|286860|286861|286871|287571|287574|287576|287578|287584|287585|287594|287595|287598|287606|287616|287618|289961|289962|289965|289966|289970|289978|289979|289980|289983|289985|289990|289992|290381|290391|290392|290399|290401|290402|826845|885225|885226|885227|885228|885229|885230|885231|885232|885233", + "text": "Doyne honeycomb retinal dystrophy" + }, + { + "baseId": "23112|23113|23114|23116|23117|23118|23120|23121|34027|34028|34029|34032|34033|34034|51341|51342|169332|169333|169334|169335|169336|169337|169338|169339|169340|169341|169342|169343|169344|169345|169346|169347|169348|169349|169351|169352|169353|169354|169355|169356|169357|169358|169360|169361|169362|169363|169364|169365|169366|169367|169368|169369|169370|169372|169373|169374|169375|169376|169377|169378|169379|169380|169381|169383|169384|169385|169386|169387|169388|169389|169390|169391|169392|169393|169394|169395|169396|169397|169398|169399|198639|205783|208372|208373|208374|208375|208377|208378|208379|208380|208381|208382|208383|208384|208385|208386|208387|208388|208389|374902|422153|429954|429955|429958|429959|486766|486767|536018|550371|552200|800675|919715|919716|920368|971073|971074", + "text": "Lissencephaly due to LIS1 mutation" + }, + { + "baseId": "23115|23119|23120", + "text": "Subcortical band heterotopia" + }, + { + "baseId": "23122|23123|23124|23125|23126|23127|23131|23132|39153|177947|177947|181382|193745|195045|195045|223009|251311|251311|267620|267620|292026|292033|293465|296770|296774|296776|296778|296779|296782|296783|296786|362187|362188|362189|362190|362191|362192|362193|362194|362211|453264|453604|453633|550314|631860|631861|631862|651151|683185|819438|828670|828671|828672|889930|889931|889932|889933|889934|889935|889936|889937|889938|889939|889940|889941|889942|889943|889944|889945|889946|889947|889948|889949|889950|889951|889952|889953|889954|889955|889956|889957|889958|889959|889960|889961|889962|889963|889964|889965|889966|889967|889968|889969|889970|891736|891737|923382|932116", + "text": "Axenfeld-Rieger syndrome type 1" + }, + { + "baseId": "23128|23129|177947|193745|195045|195045|251311|267620|292026|292032|292033|293465|296771|296774|296776|296778|296779|296783|453264|453604|453633|550314|631860|631861|631862|651151|819438|828670|828671|828672|889930|889931|889932|889933|889934|889935|889936|889937|889938|889939|889940|889941|889942|889943|889944|889945|889946|889947|889948|889949|889950|889951|889952|889953|889954|889955|889956|889957|889958|889959|889960|889961|889962|889963|889964|889965|889966|889967|889968|889969|889970|891736|891737|923382|932116|976009", + "text": "Anterior segment dysgenesis 4" + }, + { + "baseId": "23130", + "text": "ANTERIOR SEGMENT DYSGENESIS 4, PETERS ANOMALY SUBTYPE" + }, + { + "baseId": "23133|177947|181382|193745|195045|251311|267620|292026|292032|292033|293465|296770|296771|296774|296776|296778|296779|296782|296783|296786|550314|889930|889931|889932|889933|889934|889935|889936|889937|889938|889939|889940|889941|889942|889943|889944|889945|889946|889947|889948|889949|889950|889951|889952|889953|889954|889955|889956|889957|889958|889959|889960|889961|889962|889963|889964|889965|889966|889967|889968|889969|889970|891736|891737", + "text": "Ring dermoid of cornea" + }, + { + "baseId": "23134|23135|23136|23137|23139|23140|23141|23142|23143|23144|23145|23146|45360|171274|186696|186697|186698|190499|193593|193594|193595|270520|271138|271752|272474|297136|297140|299071|299077|299078|299079|299084|303311|303312|303456|303457|303459|303460|303477|357412|357413|357414|357415|357416|357417|411512|543400|543402|543405|543680|543682|543684|543687|543692|543743|543744|543851|543852|543858|620782|735033|735034|735035|749439|759395|765044|765047|880753|894006|894007|894008|894009|894010|894011|894012|978160|978161|978162|978163", + "text": "Pituitary hormone deficiency, combined 2" + }, + { + "baseId": "23137|45355|45360|45362|45363|190536|264501|264513|307574|317872|655931|700889|723452|737004|751543|751546|767274|767277|775535|783348|783349|783350|901515", + "text": "Pituitary hormone deficiency, combined" + }, + { + "baseId": "23147|23147|23148|23149|198651|198653|247436|251872|251873|251874|251875|251876|251877|251878|297248|297251|297252|297253|297254|297255|297258|297268|297271|297272|297273|297284|297289|299232|299241|299249|299252|299253|299254|299262|299267|299269|299303|303455|303458|303461|303472|303473|303667|303668|303669|303673|303676|303679|440880|440881|455009|455013|455485|455488|521095|521355|560408|563088|633839|633842|633843|691838|830771|830772|894059|894060|894061|894062|894063|894064|894065|894066|894067|894068|894069|894070|894071|894072|894073|894074|894075|894076|894077|894078|894079|894080|894081|896087|896088", + "text": "Paget disease of bone 3" + }, + { + "baseId": "23147|23147|198652|198654|247436|964252|964254", + "text": "Frontotemporal dementia and/or amyotrophic lateral sclerosis 3" + }, + { + "baseId": "23147", + "text": "Spastic paraplegia-Paget disease of bone syndrome" + }, + { + "baseId": "23147|23149|40108|181180|181181|198653|198654|247436|251872|251874|251876|251877|251878|260472|297254|297255|299249|303455|308075|308076|308078|308079|308104|312434|312437|312449|312464|312466|312470|312471|312472|318222|318223|318224|318227|318229|318239|318250|318251|318258|318312|318318|318327|318331|318747|318759|318761|318764|318767|318774|318781|318790|368605|368616|406734|440879|440880|440881|454867|454870|454871|454874|455001|455004|455006|455009|455013|455014|455474|455485|455486|455488|455490|455492|455723|495500|521095|521353|521355|521466|521476|521644|521649|560406|560408|560410|563086|563088|576805|633830|633831|633832|633833|633834|633835|633836|633837|633838|633839|633840|633841|633842|633843|633844|633845|633846|633847|651328|691836|691837|691838|691839|691840|699040|699043|699044|709848|721414|721415|744221|749450|765071|777447|777539|777547|782265|819585|830757|830758|830759|830760|830761|830762|830763|830764|830765|830766|830767|830768|830769|830770|830771|830772|851907|894062|901850|901851|901852|901853|901854|901855|901856|901857|901858|901859|901860|901861|901862|901863|901864|901865|901866|901867|901868|901869|901870|901871|901872|901873|901874|901875|901876|901877|901878|901879|901880|903384|924020|924021|924022|924023|924024|924025|924026|944580|944581|944582|944583|944584|954148|954149|954150|959763", + "text": "Amyotrophic lateral sclerosis and/or frontotemporal dementia 1" + }, + { + "baseId": "23150|271706|815862", + "text": "Frontonasal dysplasia 3" + }, + { + "baseId": "23151", + "text": "Asthma-related traits, susceptibility to, 7" + }, + { + "baseId": "23153", + "text": "Amyotrophic lateral sclerosis 13" + }, + { + "baseId": "23154|23155|318792|318794|318802|318810|327161|327170|327172|327177|327180|327181|327182|333285|333287|333291|333297|333304|333306|333307|333308|333313|335002|335013|335016|335017|335024|335038|335049|335050|335054|335055|441569|482339|550774|713807|861577|870628|870629|870630|870631|870632|870633|870634|870635|870636|870637|870638|870639|870640|870641|919477|919478|964913", + "text": "Spinocerebellar ataxia type 27" + }, + { + "baseId": "23158|23159|23160|23161|23162|23163|98685|98687|98689|98690|98691|98692|98693|98694|98695|98696|98698|177104|190241|190969|191328|195870|195870|195870|214063|214065|226048|226049|237362|252357|252358|252359|252360|252362|269776|272293|274317|300179|300182|300186|300189|300197|300199|300199|300203|302969|302972|307370|307373|307376|307590|307592|307593|307594|307602|307602|490533|491040|493841|494209|535310|543630|543632|543634|543634|543636|543641|543641|543648|543652|543654|543654|543656|543658|543661|543664|543665|543951|543955|543957|543958|543959|543960|543962|543964|543980|543982|543984|544076|544081|544083|544089|544091|544092|544093|544098|544100|544108|544114|544118|544120|544123|586251|587246|610615|620229|620230|765689|782548|790631|896305|896306|896307|896308|896309|896310|896311|896312|896313|896314|896315|896316|896317|896318|896319|900229|900230|906150|906150|919031|919032|961774|962189", + "text": "Peroxisome biogenesis disorder 4a (zellweger)" + }, + { + "baseId": "23164|23165|39151|191328|191328|195870|195870|214063|214063|214065|226048|226049|252358|272293|300199|307602|485898|487200|490137|490533|535310|543630|543632|543634|543636|543641|543648|543652|543654|543656|543658|543661|543664|543665|543951|543955|543957|543958|543959|543960|543962|543964|543980|543982|543984|544076|544081|544083|544089|544091|544092|544093|544098|544100|544108|544114|544118|544120|544123|906150|961774", + "text": "Peroxisome biogenesis disorder 4B" + }, + { + "baseId": "23166|23167|23168|324541|324550|324553|324558|324559|324568|334066|334073|334079|334085|334086|334091|334093|334095|334110|334111|334114|334119|334125|334126|334128|334129|334136|334137|334138|340798|340801|340804|340806|340809|340811|340812|340816|340817|340818|340819|340820|340822|340828|340829|342197|342202|342209|342212|342213|342214|342215|342216|342219|703533|714777|726471|754964|791529|874807|874808|874809|874810|874811|874812|874813|874814|874815|874816|874817|874818|874819|874820|874821|874822|874823|874824|964443", + "text": "Acid-labile subunit deficiency" + }, + { + "baseId": "23170", + "text": "Diabetes mellitus, noninsulin-dependent, modifier of" + }, + { + "baseId": "23170", + "text": "Obesity, modifier of" + }, + { + "baseId": "23170", + "text": "Body mass index, modifier of" + }, + { + "baseId": "23170", + "text": "Intimal medial thickness of internal carotid artery, modifier of" + }, + { + "baseId": "23175|23176|23178|23180|23181|23182|23183|135465|288404|288413|288431|288432|289177|292190|292296|292303|292305|292306|292310|354171|428113|428114|428116|428117|428118|428120|428124|428125|887759|887767|887768|887769|887770|964214|964215|970750", + "text": "Familial partial lipodystrophy 3" + }, + { + "baseId": "23175|23178|23179|135465|288404|288413|288431|288432|289177|292190|292296|292303|292305|292306|292310|428113|887759|887767|887768|887769|887770", + "text": "Diabetes Mellitus, Noninsulin-Dependent, with Acanthosis Nigricans and Hypertension" + }, + { + "baseId": "23175|77785|77849|172489", + "text": "Lipodystrophy (disease)" + }, + { + "baseId": "23177", + "text": "PEROXISOME PROLIFERATOR-ACTIVATED RECEPTOR-GAMMA POLYMORPHISM" + }, + { + "baseId": "23178|28917|48019", + "text": "Glioma susceptibility 1" + }, + { + "baseId": "23179|23746", + "text": "Diabetes mellitus, type II, digenic" + }, + { + "baseId": "23184", + "text": "Spermatogenic failure, susceptibility to" + }, + { + "baseId": "23185|23186|23187|23188|23189|23190|175740|228209|228210|228211|228212", + "text": "Deafness, autosomal dominant 48" + }, + { + "baseId": "23199|75129|134162|192530|254938|320449|320455|320460|329222|329224|329226|329233|329236|329237|335822|335824|335835|335844|335849|337732|337734|337752|337753|337759|374238|463731|566411|567771|572600|642350|642351|642352|652860|754026|760301|769791|788881|820619|841362|871819|871820|871821|871822|871823|871824|871825|871826|871827|871828|871829|871830|871831|871832|871833|871834|871835|927026|948534|948535|957201|960088", + "text": "Nemaline myopathy 7" + }, + { + "baseId": "23200|23201|40611|40612|44204|44205|44290|44291|44292|44293|44294|44295|44296|44297|44298|44299|44300|54547|54551|54552|54553|54555|54556|54557|54558|54559|54560|54562|54564|54565|54566|54567|54568|54569|54570|54572|54574|54576|54577|54578|54579|54582|54583|54586|54587|54589|54590|54591|175401|175402|175403|175404|175405|175406|175545|175547|175551|175552|175705|175710|175845|175846|175850|188840|189894|189898|189903|189905|198377|198378|198380|224439|230292|230293|230294|230295|230297|230300|230301|241531|241532|241533|241534|241535|241536|241537|266600|316674|316679|316681|324150|324151|324154|324155|324156|330171|330176|330194|331585|331595|360036|372903|372917|373130|373141|374951|398885|398886|398898|398902|399039|399048|399054|399057|399058|399060|399352|399356|399359|399360|399595|399600|399603|408617|415329|444960|444961|462067|462071|462073|462320|462324|462325|462332|462333|462335|462337|462803|462807|462914|462919|482272|503771|503790|503799|504060|504334|504349|504791|504818|510360|510363|511109|527033|527035|527037|527038|527040|527042|527047|527048|527051|527055|527257|527258|527264|527269|527271|527279|527281|527286|527558|536836|538429|565384|565386|566748|567949|567951|567954|571740|571745|571751|621375|641019|641020|641021|641022|641023|641024|641025|641026|641027|641028|641029|641030|652233|652235|652316|652472|652479|652696|684317|687955|687958|693175|693176|695557|713479|738595|744844|769047|778082|784360|784363|787771|788058|796733|820485|820486|820487|839777|839778|839779|839780|839781|839782|839783|839784|839785|839786|839787|839788|839789|839790|839791|839792|839793|839794|839795|839796|839797|839798|839799|839800|839801|839802|839803|839804|839805|839806|839807|839808|839809|851939|851941|852685|869669|869670|869671|869672|869673|869674|869675|872228|926588|926589|926590|926591|926592|926593|936074|936075|936076|936077|940261|940262|947959|947960|947961|947962|947963|947964|947965|947966|947967|947968|947969|947970|947971|947972|956844|956845|956846|956847|956848|960037|960038", + "text": "Dilated cardiomyopathy 1O" + }, + { + "baseId": "23202|23203|23204|23205|23206|23207|49933|98909|98910|98911|98913|98915|177098|177902|297614|297615|297617|297622|297639|297640|297642|297643|297644|299814|299815|299816|299822|299829|299831|299833|299844|303939|303940|303946|303955|303962|303966|303977|303979|304348|304352|304353|304361|304365|304372|304373|353704|560347|619845|651322|651352|709926|709927|721466|735119|749516|775026|779318|788779|790562|816455|830866|830867|851988|894370|894371|894372|894373|894374|894375|894376|894377|894378|894379|894380|894381|894382|894383|894384|894385|894386|896111|932919|932920|944631|944632|961771|961846", + "text": "Succinyl-CoA acetoacetate transferase deficiency" + }, + { + "baseId": "23208|23209|215519|433648|512866", + "text": "Charcot-Marie-Tooth disease, recessive intermediate B" + }, + { + "baseId": "23210|23211|23211|23212|23213|23215|23216|45432|45433|52526|52526|52528|57279|57280|57281|57283|57284|57285|57285|57286|57287|142802|171101|174272|174274|174277|174278|174279|174279|174280|174411|174412|174413|174414|174415|174417|174417|189785|189787|193416|193417|193417|198172|198174|198175|198177|198178|229299|269009|269538|269702|270421|271690|272645|273483|302804|394836|394838|394838|395095|395434|395435|443734|454782|454829|454841|454842|455331|455635|455642|455645|520950|520955|521391|521394|521445|521448|521449|543365|543368|543370|543379|543397|543626|543653|543668|543670|543670|543672|543673|543731|543736|543737|543741|543815|543826|543827|543843|543845|559835|560231|560233|560235|560237|560346|560348|563005|564977|585031|588537|633666|633667|633668|633669|633670|633671|633672|651316|672402|683727|686712|819568|819640|830561|830562|830563|830564|923960|923961|923962|940811|944505|954099", + "text": "Autosomal recessive limb-girdle muscular dystrophy type 2F" + }, + { + "baseId": "23211|23214|23215|52526|57283|57285|57287|174272|174274|174277|174278|174279|174280|174411|174412|174413|174414|174415|174417|189785|189787|193417|229299|271690|394838|521445|543365|543368|543370|543379|543397|543626|543653|543668|543670|543672|543673|543731|543736|543737|543741|543815|543826|543827|543843|543845", + "text": "Dilated cardiomyopathy 1L" + }, + { + "baseId": "23215", + "text": "MUSCULAR DYSTROPHY, LIMB-GIRDLE, AUTOSOMAL RECESSIVE 6, DIGENIC" + }, + { + "baseId": "23217|23218|23219|28799", + "text": "Pancreatitis, chronic, susceptibility to" + }, + { + "baseId": "23222|39133|101330|101331|136138|304661|444257|486702|538399|550854|579538|651813|834521|851193|934228|955376|962048", + "text": "Mental retardation, autosomal recessive 7" + }, + { + "baseId": "23223|980452", + "text": "West nile virus, susceptibility to" + }, + { + "baseId": "23223", + "text": "Resistance to hepatitis C virus" + }, + { + "baseId": "23223|24290", + "text": "Multiple sclerosis modifier of disease progression" + }, + { + "baseId": "23224", + "text": "CCR5 POLYMORPHISM, ORIENTAL 1" + }, + { + "baseId": "23225", + "text": "CCR5 POLYMORPHISM, ORIENTAL 2" + }, + { + "baseId": "23226", + "text": "CCR5 POLYMORPHISM, AFRICAN-AMERICAN" + }, + { + "baseId": "23228", + "text": "Acquired immunodeficiency syndrome, delayed progression to" + }, + { + "baseId": "23228", + "text": "CCR5 PROMOTER POLYMORPHISM" + }, + { + "baseId": "23229", + "text": "Human immunodeficiency virus type 1, increased perinatal transmission of" + }, + { + "baseId": "23232|23233|101257|101259|132607|190500|194437|214379|215262|237303|265737|287287|287288|290651|290915|290920|290922|290934|366794|366797|367943|451462|451464|451699|451703|451823|451906|451910|451914|451922|451926|500353|500355|518634|518636|518638|518640|518722|518820|518821|518823|518831|558301|558680|558682|558684|559186|559187|562070|562075|562078|562087|614252|630566|630567|630568|630569|630570|630571|630572|630573|630574|630575|630576|630577|630578|630579|630580|630581|630582|630583|630584|630585|630586|630587|630588|630589|630590|630591|630592|630593|747785|763441|798513|798514|819276|827053|827054|827055|827056|827057|827058|827059|827060|827061|827062|827063|827064|827065|827066|827067|827068|827069|827070|827071|827072|827073|922932|922933|922934|922935|931598|931599|931600|931601|931602|931603|931604|931605|939915|943135|943136|943137|953236|953237|953238|953239|953240|953241|953242|953243|953244|953245|963129", + "text": "Congenital disorder of glycosylation type 2B" + }, + { + "baseId": "23234|23235|23236|23237|23238|23239|23240|23241|23242|23243|23244|23245|23246|23247|23248|23249|172077|172078|172079|172093|181387|181388|181389|181390|190113|204343|204401|227373|255505|255507|255509|255510|255511|255512|255513|255514|255515|255516|255517|255518|255519|255523|255524|255525|255526|255529|255531|255532|255533|255535|255536|255537|255538|255539|255541|255544|255545|255546|255547|255548|255549|255550|255552|255553|255554|255555|255556|255557|255558|255560|255562|255563|255566|255567|255568|255569|255573|255575|255576|255577|255578|255579|255580|255582|255584|255585|255587|255589|255590|255591|255592|255594|255596|255597|255600|255602|255603|255604|255605|255606|255607|255608|255609|255611|255613|255614|255615|255616|255617|255618|255619|255620|255621|255622|255623|255624|255625|255628|255630|255631|255632|255634|255635|255636|255637|255639|255640|255642|255645|255646|255647|255648|255649|255652|255653|255655|255656|255657|255658|255660|255662|255664|255668|262268|353909|354173|354174|354175|360987|360989|374872|377311|384492|384493|384494|384495|384496|384497|384498|384499|384500|409504|415480|417437|417438|417442|417443|426160|427114|427122|427441|427448|427450|427451|427465|427476|427478|427479|427482|427486|427492|427503|427511|427512|432316|432317|432318|432319|432320|432321|432322|432323|432324|432325|432326|432327|432328|433156|433157|433167|433168|433170|433175|433181|433186|433187|433188|433189|433191|433192|433193|433200|433210|433211|433214|433217|433221|433223|433224|434771|434903|439885|441802|441805|441806|441814|441823|441826|441852|441853|441859|441862|441865|441868|441873|441880|442558|442559|442560|442561|445532|480428|481143|481144|481173|481259|481260|481261|481262|488123|511034|512181|513107|513108|513109|513110|513111|513112|513113|513114|513115|513116|513117|513118|513119|513120|513121|513122|513123|513124|513125|513126|513127|513128|514690|536900|540477|553420|553426|553446|553468|553471|553472|553486|553496|553507|553510|575501|577477|577492|577496|577513|577519|577522|590311|590312|590313|590314|590315|590316|590317|590318|590319|590320|590321|608920|609952|609962|609968|609977|609979|609985|609986|609988|609989|609996|610004|610005|610018|612308|614163|619856|619857|623324|623325|623326|623327|623328|623329|623330|623331|623332|623333|623334|623335|623336|623337|623338|624545|624552|624562|624568|624570|624571|624604|624810|625817|625818|625819|625820|625821|672098|788895|788896|789090|791543|791544|791545|791546|791547|791548|791549|791550|791551|791552|791553|791554|791555|791556|791557|791558|793578|793581|793582|793583|793591|793596|793604|793606|793611|793617|794058|798697|799861|799862|799863|799864|799865|799866|799867|799868|799869|799870|799871|799872|799873|799874|799875|799876|799877|799878|799879|799880|799881|799882|799883|799884|799885|799886|799887|799888|799889|799890|799891|799892|799893|799894|799895|799896|799897|799898|799899|799900|799901|799902|799903|799904|799905|799906|799907|799908|799909|799910|799911|799912|799913|799914|799915|799916|799917|799918|799919|799920|799921|799922|799923|799924|799925|799926|799927|799928|799929|799930|799931|799932|799933|799934|799935|799936|799937|799938|799939|799940|799941|799942|799943|799944|799945|799946|799947|799948|799949|799950|801569|801570|804850|816483|818314|818315|818316|818317|818318|818319|818320|818321|818322|818323|818324|818433|818434|818435|857657|858759|860227|860228|861468|861469|861470|861471|861472|861473|861474|861475|861476|861477|861478|861479|861480|861481|861482|861483|861484|861485|861486|861487|861488|861489|861490|861491|861492|861493|861494|861495|861496|861497|861498|861499|861500|861501|861502|861503|861504|861505|861506|861507|861508|861509|861510|861511|861512|861513|861514|861515|861516|861517|861518|861519|861520|861521|861522|861523|861524|861525|861526|861528|861529|861530|861531|861532|861533|861534|905871|905872|905873|905874|906185|906266|919619|919620|919621|919622|919623|919624|919625|919626|919627|919628|919629|919630|919631|919632|919633|919634|920356|920357|961010|961011|961012|961013|961014|961015|961016|961019|962170|962171|962703|962743|962744|962745|962746|962747|962748|962749|962750|962751|962752|962753|962754|962755|962756|962757|962758|962759|962760|962761|962762|962763|962764|962765|962766|962767|962768|962769|962770|962771|962772|962773|962774|962775|962776|962777|962778|962779|962780|962781|962782|962783|962784|962785|962786|962787|962788|962835|962836|962837|962838|962856|963367|963368|963369|963370|963371|963372|963373|963374|963394|964445|964446|964447|965229|965230|965651|965652|965921|969610|969611|971041|971042|973113|974498|980356|980357|980358|980359|980360|980361|980362|980363|980364|980365|980366|980367|980368|980369|980370|980371|980954|980955|981954|981955|981956|981957|981958|981959|981960|981961|981962|981963|981964|981965|981966|981967|981968|981969|981970|981971|981972|981973|981974|981975|981976|981977|981978|981979|981980|981981|981982|981983|981984|981985|981986|981987|981988|981989|981990|981991|981992|981993|981994|981995|981996|981997|981998|981999|982000|982001|982002", + "text": "Polycystic kidney disease, adult type" + }, + { + "baseId": "23245|247541|553486|611980|612161|612179|799086|965650", + "text": "Polycystic kidney disease 3" + }, + { + "baseId": "23260|23261|23262|23263|23264|50093|50095|50099|50100|50102|50103|50105|50106|98605|136447|136448|136467|136471|136474|136479|136501|136501|138834|138839|138840|138844|138849|139586|139589|139590|139591|139594|139595|139598|139602|139603|139606|139607|139608|139610|139616|139619|139620|142537|186099|186108|186110|186111|186113|186113|212692|212694|212695|212698|212709|212716|212719|212720|212726|212741|221873|221881|221884|221889|221898|221899|221902|221909|221913|221916|221918|221919|240651|240654|240674|240679|240702|253602|253606|253609|253611|253612|253613|308953|308958|308959|308963|308970|308971|308972|308973|308996|308997|309001|309003|313687|313688|313689|313728|313729|313730|313742|313752|313756|313757|313758|313762|313764|313765|313766|319438|319452|319454|319455|319456|319483|319485|319486|319488|319506|319510|319512|319564|319578|320059|320060|320065|320070|320096|320097|320120|320121|320126|320137|320140|320156|320159|371070|371081|397026|397035|397394|397411|397440|397448|397495|397495|397503|397507|424186|474973|474983|475013|475154|475187|524729|525117|525191|525213|525296|525316|525367|551302|563347|564225|564311|612004|684122|809565|809603|902559|902560|902561|902562|902563|902564|902565|902566|902567|902568|902569|902570|902571|902572|902573|902574|902575|902576|902577|902578|902579|902580|902581|902582|902583|902584|902585|902586|902587|902588|902589|902590|902591|902592|902593|902594|903446|917885", + "text": "Holoprosencephaly 7" + }, + { + "baseId": "23263|100285|101778|101779|101780|141097|141098|141099|141100|193529|193531|212632|221756|236847|236848|236853|236854|236855|240235|253080|253082|253804|253805|256652|256653|256654|256655|256656|256657|256658|265382|281753|281754|281755|281756|282393|282394|282395|283917|283919|283920|283921|284122|284136|284139|284173|284175|304634|304635|304637|304641|308369|308372|308375|308386|308387|308388|308984|308986|310609|313136|313147|313149|313151|313155|313156|313158|313159|313410|313412|313417|313420|313422|313424|313443|313548|313551|313552|313560|313562|313700|313707|313727|315791|315795|315796|315800|315827|315828|315829|315831|315841|315843|315844|315845|319213|319216|319217|319218|319219|319229|319231|319235|319238|319251|319269|319286|319328|319336|319338|319501|319525|320067|320074|320128|321858|321859|321864|321867|321868|321872|321873|321874|322523|322549|322551|322555|322565|322566|322578|322581|325361|325363|325365|325370|325372|325374|325382|325383|325409|325410|326264|326266|326269|326271|326300|326303|326306|326321|326338|326386|331226|341507|346977|346978|346981|353171|353172|384630|395916|395920|396291|396585|457435|508756|514312|523238|523504|523721|535677|535716|535717|535718|535719|535720|535721|535722|535723|536021|562093|562096|562517|567535|611004|620295|623671|636804|683980|683982|687202|687205|687666|783048|819952|819953|834317|834318|834319|866072|866073|866074|866075|866076|866077|866078|866079|866080|866081|866082|866083|866084|899117|899118|899119|899120|899121|899122|899123|899124|899125|899126|899127|899128|899129|899130|899131|899132|899133|899134|899135|899136|899137|899138|899139|899140|899141|899142|945927|945928|966733|966734|966735", + "text": "Holoprosencephaly sequence" + }, + { + "baseId": "23268|23269|23270|23271|23272|23273|23274|23275|23579|23580|23581|23582|23583|34298|36136|36138|36140|36141|36142|36143|36144|36145|36146|36147|36148|36149|36150|36151|36152|36154|36155|36157|36158|36159|36160|36161|36162|36163|36165|36166|36167|36170|36171|36173|36173|36175|36179|36180|36184|36185|36186|36188|36190|36191|36192|36193|36194|36195|36196|36197|36198|36199|36200|36201|36202|36203|36204|36206|36207|36208|36209|36214|36218|39106|39106|39106|46838|47343|47344|50218|50219|50219|50220|50221|50227|50228|79680|94253|133356|133357|133359|133359|133360|133407|136439|136441|136487|136493|136515|137456|137457|138983|138984|139761|139762|139763|139764|139765|139766|139783|139785|139786|139787|139788|139789|140227|140228|140229|140230|142921|142922|142923|150582|150736|150736|150774|150827|150852|150893|150949|150991|151335|151388|151424|151454|151612|151656|151738|151781|151812|151879|151879|151962|151967|151967|152065|152093|152198|152200|152313|152313|152449|152538|152557|166250|166278|180365|180366|180370|180371|180372|180373|180374|181035|181036|181036|181037|181038|181040|181042|182959|182961|182962|182963|182966|182969|182970|182972|182973|182974|182975|182976|182978|182979|182981|182982|182983|182984|182985|182985|182986|182987|185427|185427|185428|185429|185431|185433|185434|185436|185438|185438|185440|185441|185443|185444|185446|185447|185448|185450|185452|185453|185454|186120|186121|186122|186123|186279|186280|186281|186282|212799|212800|212801|212802|212803|212805|212807|212808|212809|212810|212811|213418|213419|213420|213421|213422|213423|213424|213425|213508|221988|221989|221990|221991|221992|221993|221995|221996|221998|221999|222751|222753|222754|222755|222756|222757|222758|222759|222760|233797|233799|233801|233802|233806|233807|233810|233812|233814|233815|233817|233818|233819|233822|233825|233826|233828|233829|233832|233833|233834|233836|233837|236523|236524|236529|236530|236534|236539|236540|236541|236543|236546|236550|240720|240852|240853|240854|240855|240856|240857|240858|240859|240860|240861|240862|240863|240864|240865|240866|240867|240868|243061|243062|243063|243064|243065|243067|243068|243069|243070|243071|243072|243073|243074|243075|243076|243077|244562|244563|244565|244566|244567|244568|245095|248497|253895|253896|311450|311468|311470|311474|311484|311486|311490|317044|317045|317046|317054|317058|317059|323025|323027|323032|323033|323039|323042|323045|323057|323640|323644|323652|323653|323654|331636|331637|331639|331641|331643|331644|331645|331648|331650|331653|331656|331664|331698|331707|331711|341892|341894|341895|341897|341898|341903|341904|341916|341919|341922|341923|341928|341929|341937|341940|341949|341956|341957|341959|341961|347245|347248|347262|347263|347266|347267|347274|347278|347279|347284|347285|347288|347289|347292|347293|347295|347297|347313|347315|347320|347323|347325|347333|347337|347339|347340|348573|348574|348576|348581|348598|348600|348602|348609|348610|348611|348621|348622|348626|348628|348632|348633|348642|348644|348645|348652|348669|348680|358833|358834|358835|358969|361883|370943|370950|370951|371514|371522|371533|371539|371540|371853|371855|373540|373543|375950|375958|376896|376902|376908|376910|377033|377037|377048|377090|377096|379022|379024|379036|379044|379051|379055|397328|397436|397438|397439|397441|397464|397467|397471|397482|397483|397486|397487|397488|397613|397616|397617|397619|397629|397648|397650|397653|397655|397660|397663|397672|397843|397850|397851|397853|397860|397862|397876|397880|397892|397901|397903|397909|397980|397981|397983|397986|397991|397992|397996|397998|398016|398026|398029|398036|398042|402685|402746|402747|402752|402758|402759|402766|402772|402773|402774|402775|402788|402807|402813|402827|402828|402831|402838|403153|403288|403296|403303|403305|403307|403310|403312|403313|403315|403318|403321|403323|403328|403329|403331|403335|403337|403342|407926|407927|407929|407932|407935|407938|407940|407941|407944|407945|407949|410379|410379|410380|410382|410384|410390|410393|410394|410395|414427|421050|421060|432655|432656|432657|432659|444667|459803|460046|460048|460205|460210|460212|460220|460222|460227|460233|460234|460240|460243|460253|460255|460264|460310|460314|460319|460327|460329|460332|460335|460336|460347|460349|460351|460355|460563|460565|460568|460571|460574|460580|460591|460592|461002|461005|461006|461012|461019|461024|461026|461031|461035|461040|461044|461047|461050|461051|461053|461064|461073|467889|468003|468004|468007|468008|468010|468013|468014|468016|468023|468029|468033|468043|468050|468054|468057|468062|468063|468065|468069|468942|468948|468948|468949|468953|468957|468959|468966|468973|468977|468982|468984|468989|468989|468990|468992|468994|469225|469380|469381|469383|469387|469389|469394|469398|469408|469409|469792|469796|469798|469799|469800|469810|469811|469815|469818|469821|475121|475127|475131|475135|475146|475151|475155|475158|475170|475177|475196|475213|475214|475225|475300|475313|475314|475317|475319|475328|475354|475356|475364|475374|475422|479305|479320|479322|479326|479334|479336|479337|479340|479365|479385|479388|479390|479396|479399|479402|479403|479407|479409|479421|479430|479439|480125|480127|480143|480160|480161|482693|482705|482725|482736|482740|482745|482751|482757|482760|482765|483052|484048|484052|484057|484060|484081|484166|484169|484171|484280|484304|484307|484308|485188|485222|485231|485244|485364|485372|485376|485381|485387|485438|485536|485542|485544|487985|487986|487988|496549|506968|510792|510796|513785|525457|525467|525468|525470|525477|525480|525484|525532|525535|525538|525540|525544|525546|525547|525549|525551|525554|525556|525560|525563|525564|525568|525570|525685|525687|525692|525699|525701|525705|525706|525709|525716|525720|525725|525732|525734|525823|525825|525832|525841|525843|525844|525845|525870|525876|525878|525879|532306|532307|532309|532313|532315|532319|532320|532327|532332|532333|532335|532337|532339|532340|532442|532444|532445|532453|532457|532460|532463|532465|532468|532470|532473|532760|532764|532768|532772|532775|536184|536521|539082|539288|539289|539383|539384|540532|550183|563510|563978|563983|563984|563990|563992|563994|564001|564401|564424|564425|564783|564787|564789|564798|564801|564806|564810|564812|564821|564823|564827|564844|564848|566112|566534|566536|566538|566539|566541|566542|566546|569424|569784|569786|569790|569798|569806|569807|570044|570194|570200|570206|570211|570216|570223|570226|570228|570230|570232|570239|571957|571960|571962|571964|572648|572649|572651|572652|572654|572655|572662|574708|574760|574761|574762|574763|609169|611084|611261|617555|617561|617564|617565|617567|617573|617581|618891|618896|618900|618902|618905|618906|618909|618911|618913|618916|620370|639208|639209|639210|639211|639212|639213|639214|639215|639216|639217|639218|639219|639220|639221|639222|639223|639224|639225|639226|639227|639228|639229|639230|639231|639232|639233|639234|639235|639236|639237|639238|639239|639240|639241|639242|639243|639244|639245|639246|639247|639248|639249|639250|639251|639252|639253|639254|639255|639256|639257|647288|647289|647290|647291|647292|647293|647294|647295|647296|647297|647298|647299|647300|647301|647302|647303|647304|647305|647306|647307|647308|647309|647310|647311|647312|647313|647314|647315|647316|647317|647318|647319|647320|647321|647322|647323|647324|651972|651982|652011|652019|652020|652043|652118|652261|652282|652285|652341|652342|652879|653075|653548|653555|653556|656496|692895|694281|712495|737626|744572|756483|760527|760640|760703|768019|768020|772201|772205|772206|775681|775692|776455|776798|783755|783757|783759|785943|785946|785949|785950|788226|788230|790994|809983|810005|810017|810024|810025|810031|810032|814542|814543|814552|814554|814562|815426|815716|820247|820248|820249|820250|820251|820252|820253|820255|820256|820257|821189|821190|821191|837375|837376|837377|837378|837379|837380|837381|837382|837383|837384|837385|837386|837387|837388|837389|837390|837391|837392|837393|837394|837395|837396|837397|837398|837399|837400|837401|837402|837403|837404|837405|837406|846900|846901|846902|846903|846904|846905|846906|846907|846908|846909|846910|846911|846912|846913|846914|846915|846916|846917|846918|846919|846920|846921|846922|846923|846924|846925|846926|846927|846928|851391|851393|851790|852274|852816|852818|866464|866465|866466|866467|866468|866469|866470|866471|866472|866473|866474|866475|866476|879352|879353|879354|879355|879356|879357|879358|879359|879360|879361|879362|879363|879364|879365|879366|879367|879368|879369|879370|879371|879372|879373|879374|879375|879376|879377|879378|879379|879380|879381|879382|879383|879384|879385|879386|879387|879388|879389|879390|879391|879392|879393|879394|879395|879396|879397|879398|879399|879400|879401|879402|879403|879404|879405|879406|879407|879408|879409|879410|879411|879412|879413|879414|879415|880666|911150|911167|911181|914634|921490|925948|925949|925950|925951|925952|925953|925954|925955|925956|925957|925958|925959|928722|928723|928724|928725|928726|928727|928728|928729|928730|928731|928732|928733|935206|935207|935208|935209|935210|935211|935212|935213|935214|935215|935216|938453|938454|938455|938456|938457|938458|938459|938460|938461|938462|938463|938464|940179|940180|940181|940459|940461|940970|940971|941212|941213|947105|947106|947107|947108|947109|947110|947111|947112|947113|947114|947115|950540|950541|950542|950543|950544|950545|950546|950547|950548|950549|950550|950551|950552|956258|956259|956260|958475|958476|959950|960269|960270|966752|967152|970073|975837", + "text": "Generalized juvenile polyposis/juvenile polyposis coli" + }, + { + "baseId": "23276|50219|133359|150736|152313|182985|360921", + "text": "Hereditary mixed polyposis syndrome 2" + }, + { + "baseId": "23277", + "text": "Juvenile polyposis of infancy" + }, + { + "baseId": "23278|23278|23279|39131|75104|75105|135076|135077|135077|135078|135078|135079|135079|135080|135080|135081|135082|135083|194417|194417|194418|194418|194419|194419|196271|196271|207598|207599|215099|215100|253268|253268|253271|253271|253273|253273|253276|253276|253279|253279|253280|253280|265645|265645|270310|270310|273473|273473|306482|306485|306486|306487|306494|310665|310665|310666|310670|310670|316033|316033|316039|316042|316043|316043|316056|316056|316060|316060|316061|316061|316356|316362|316362|316370|316370|316371|316372|316372|316375|316382|316383|359884|425810|425811|425812|428892|458118|458200|458202|458724|458728|458728|458730|458731|458813|458815|458818|458820|458820|458821|458823|458823|458824|459228|459231|459231|459233|459237|459241|459247|523905|524180|524180|524182|524185|524187|524190|524190|524464|524496|524500|524505|524513|524514|524519|562680|562686|563372|565317|565322|565420|565422|568401|568408|637618|637619|637619|637620|637621|637622|637622|637623|637624|637625|637626|637627|637628|637629|637630|637631|637631|637632|637633|637634|651963|651973|651974|652084|692561|692562|692563|692563|692566|695410|695411|711692|751303|767000|767001|767004|783220|835370|835371|835372|835373|835374|835375|835376|835377|835378|835379|835380|835381|835382|835383|835383|835384|835385|835386|835386|859691|900840|900841|900842|900843|900844|900845|900846|900847|900848|900849|900849|900850|900851|900851|903295|903296|903297|925333|925334|925335|925336|934506|934507|934508|934509|946307|946308|946309|946310|946311|946312|946313|946314|955653|955654|955655", + "text": "Myasthenic syndrome, congenital, 9, associated with acetylcholine receptor deficiency" + }, + { + "baseId": "23281|491667|493298", + "text": "Bile acid malabsorption, primary" + }, + { + "baseId": "23282|23283|23285|23286|23287|23288|23289|23290|23291|23292|23293|23295|23296|139995|139996|166129|166130|171152|171153|171155|194254|210221|210222|210224|210225|210226|210227|210228|210230|210231|210232|210233|210236|210238|222253|241561|241562|241563|254610|254611|254613|254614|254615|254616|269746|317691|317693|317694|317698|317700|317701|317709|317710|317715|317721|317725|317726|317729|317733|325567|325568|325592|325593|325594|325596|325605|331815|331817|331822|331823|331824|331825|331832|331843|331845|331851|331852|331856|333260|333261|333264|333270|333281|333295|333296|333298|333299|333309|333310|333318|333323|333330|333333|333343|333344|360045|360048|398802|399002|399003|399020|399157|399166|399167|399503|399504|399510|399512|399519|399520|399768|399769|399770|399779|399781|399783|399785|399787|408712|414382|414383|414384|414393|414394|414395|414399|414401|414406|414407|414411|421939|433105|433106|433107|433109|433111|433114|433115|433347|437741|461786|462305|462317|462319|462321|462326|462572|462575|462576|462580|462583|463035|463051|463054|463059|463060|463064|463183|463186|463189|486613|504330|514646|526620|526621|526622|526625|527243|527245|527247|527250|527253|527256|527259|527268|527479|527482|527486|527496|527498|527504|527505|527781|527783|538606|565580|565582|565591|565599|565601|565603|566902|566903|566914|566915|568116|568118|571902|571903|571907|571909|576353|585337|590609|609067|609837|609840|609847|614379|641235|641236|641237|641238|641239|641240|641241|641242|641243|641244|641245|641246|641247|641248|641249|641250|641251|641252|641253|641254|641255|641256|641257|652182|652332|652385|666850|683145|684334|684335|684336|688025|688026|688027|688028|688029|713572|738703|769204|791258|799690|799691|799692|799693|799694|799695|799696|799697|799698|799699|799700|799701|799702|799703|799704|799705|799706|799707|799708|799709|799710|801134|820506|820507|840053|840054|840055|840056|840057|840058|840059|840060|840061|840062|840063|840064|840065|840066|840067|840068|840069|840070|840071|840072|840073|840074|840075|840076|840077|840078|851513|851515|851953|852485|870060|870061|870062|870063|870064|870065|870066|870067|870068|870069|870070|870071|870072|870073|870074|870075|870076|870077|870078|870079|870080|870081|870082|870083|870084|872258|919454|919455|926668|926669|926670|926671|926672|926673|926674|926675|926676|936170|936171|936172|936173|936174|936175|936176|936177|936178|940269|948084|948085|948086|948087|948088|956900|956901|960789|970614|970615|970616|970617|970618|970619|970620|970621|970622|970623|970624|970625|970626|970627|970628|970629|970630|970631|981807|981808|981809|981810|981811|981812|981813|981814|981815|981816|981817|981818|981819|981820|981821", + "text": "Telangiectasia, hereditary hemorrhagic, type 2" + }, + { + "baseId": "23282|23288|23289|23290|23291|23292|23293|23294|210238|360048|399783|414375|414376|414377|414378|414379|414380|414381|414382|414385|414386|414387|414388|414394|414395|414397|414398|414400|414401|414402|414403|414404|414409|414410|414411|414433", + "text": "Pulmonary arterial hypertension related to hereditary hemorrhagic telangiectasia" + }, + { + "baseId": "23291|23835|23836|23840|23841|23844|23845|23847|23849|23851|96795|199803|209585|209588|210238|210238|224249|259914|264058|392288|392462|414075|414080|414084|414090|414096|414107|414110|414113|414117|414135|414136|414158|414159|414161|414165|414170|414182|414199|414206|414209|414221|414226|414229|414233|414234|414259|414263|414267|414295|414303|414306|414328|414366|414408|445123|590074|590075|590077|590078|641249|800996|800997|800998|800999|801000|801001|801002|801003|801004|801005|801006|801007|801008|801009|801010|801011|801012|801013|801014|801015|801016|801017|801018|801019|801020|801021|801022|801023|801024|801025|801026|801027|801028|801029|801030|801031|801032|801033|801034|801035|801036|801037|801038|801039|801040|801041|801042|801043|801044|801045|801046|801047|801048|801049|801050|801051|801052|801053|801054|801055|801056|801057|801058|801059|801060|801061|801065|801111|801112|801131|801132|801133|801134|801156|801172|801173|801174|801175|801176|801177|801178|801179|801233|801234|801235|801236|801237|801238|801239|801240|801241|801242|801243|801258|801259|801260|801261|801507|801508|801509|801510|801515", + "text": "Pulmonary arterial hypertension" + }, + { + "baseId": "23297|23298|23299|23300|39128|39129|39130|81688|88117|98921|98922|98923|98924|98926|98928|98933|98934|98935|98936|98938|98939|98941|98943|98944|98946|98949|98950|98952|98955|98960|98961|98962|98965|98966|98967|98968|98969|98970|98972|98973|98976|98977|98981|98982|98983|98984|98986|98988|98992|98993|98995|98997|98998|135364|135365|135366|135367|135368|135370|135371|135372|135373|135375|135376|135377|135378|135379|135381|135382|135383|135385|135386|135387|135388|135389|135390|135391|135392|135394|135396|135397|135398|135399|135400|135401|135402|135404|135405|135406|135407|135408|135409|135409|176989|177121|177252|177383|177959|177961|177962|177965|177966|191156|191157|191638|192163|192815|192816|192817|192962|192963|193017|193018|193076|193091|193265|193266|193267|193309|193435|193772|193823|193877|193878|193881|193882|193883|193893|193894|193895|193896|193897|193899|193902|193903|193904|193905|193906|193907|193908|193909|193910|193911|193912|193913|193914|193915|193917|193918|193919|193920|193921|193922|193923|193925|193926|193928|193969|193971|193973|193974|193975|193977|193978|193980|193983|193984|193985|193986|193987|193989|193990|193994|193998|194000|194001|194002|194003|194004|194005|194008|194009|194010|194012|194013|194014|194015|194019|194020|195245|195795|207532|207533|231311|231370|231429|231430|253066|253067|265349|265461|265465|265501|265502|265508|265512|265516|265517|265518|265519|265524|265531|265554|265593|265628|265629|265639|265718|265827|265831|265905|265922|265930|265931|265932|265938|266070|266073|266086|266092|266179|266185|266228|266229|266248|266334|266335|266357|266370|266405|266422|266425|266440|266481|266507|266522|266524|266534|266545|266546|266550|266554|266563|266629|266630|266642|266656|266658|266659|266687|266692|266703|266723|266730|266736|266746|266756|266775|266779|266819|266876|266961|266991|267017|267018|267058|267063|267069|267090|267102|267121|267126|267133|267262|267271|267292|267309|267337|267338|267339|267439|267460|267461|267478|267481|267484|267491|267513|267523|267541|267568|267574|267631|267638|267641|267671|267700|267701|267707|267786|267867|267875|267877|267881|267882|267885|267899|267912|267924|267932|267981|268004|268114|268184|268195|268205|268206|268207|268212|268338|268339|268485|268486|268520|268521|268624|268704|268731|268747|268802|268812|268818|268819|268820|268835|268837|269027|269036|269247|269248|269316|269468|269573|269579|269645|269915|269970|269980|270225|270253|270274|270275|270360|270506|270550|270555|270825|270961|271365|271460|271624|271858|271947|272140|272170|272415|273236|273701|274532|274542|274576|274586|274590|274687|274701|274703|274704|274872|274876|274884|274886|274888|274895|274900|274934|274949|274965|274966|275304|361453|369376|369377|369380|369386|369388|369394|369396|369411|369412|369424|369428|369734|369742|369758|369763|369767|369769|369773|369791|369802|369809|369814|369825|369839|369841|369846|370091|370093|370095|370097|370102|370108|370111|370122|370128|370132|370138|370139|370149|370155|371589|371592|371593|371594|371618|371629|371631|371646|371656|371659|371661|371665|371667|371679|371681|390580|404777|407323|407324|407325|407326|407327|407328|407332|407334|407335|415126|421663|421664|421665|425783|425784|425786|428802|428803|428804|428805|428806|428807|428808|428810|434623|438403|438405|441183|441184|441186|441188|441189|441190|441191|441193|441197|441199|441200|441201|441203|441204|441205|441206|441210|441211|441222|441223|441224|444223|444224|444226|444228|444230|444235|444240|444241|444245|444247|444250|444251|457234|457236|457238|457240|457245|457248|457249|457255|457258|457272|457273|457277|457282|457286|457294|457296|457298|457300|457302|457305|457307|457310|457312|457316|457323|457324|457328|457336|457337|457347|457348|457351|457359|457362|457363|457366|457371|457385|457390|457391|457393|457397|457399|457401|457405|457406|457411|457422|457424|457426|457428|457817|457837|457838|457839|457843|457847|457849|457851|457856|457857|457860|457862|457865|457866|457867|457869|457870|457872|457876|457878|457880|457882|457883|457884|457886|457887|457888|457894|457896|457900|457901|457902|457904|457907|457908|457912|457914|457919|457920|457921|457922|457924|457925|457927|457928|457931|457932|457935|457936|457937|457938|457946|457949|457956|457958|457960|457962|457963|457967|457972|457977|457980|457981|457982|457983|457985|457988|457990|457996|457998|457999|458001|458002|458004|458006|458007|458008|458013|458014|458017|458020|458022|458023|458025|458028|458030|458032|458033|458034|458039|458040|458041|458043|458046|458047|458051|458054|458062|458064|458067|458068|458071|458072|458077|458079|458088|458241|458243|458248|458252|458256|458266|458268|458272|458273|458277|458279|458283|458286|458292|458296|458298|458301|458302|458305|458310|458311|458316|458318|458323|458327|458334|458337|458341|458343|458346|458347|458350|458352|458355|458363|458368|458370|458376|458379|458383|458386|486449|488410|488423|488425|488427|488429|488430|488437|488440|488453|488464|488466|488469|488474|488476|488477|488479|488488|488496|488505|488507|488509|488512|488519|488520|488538|488539|488562|488589|488617|488790|488793|488811|488922|489011|489080|489083|489246|489276|489281|489377|489481|489688|490087|490389|490392|490417|490506|490642|490644|490646|490714|491028|491054|491060|491066|491108|491112|491126|491242|491388|491529|491648|491734|491814|491816|491970|491980|492104|492115|492230|492337|492338|492462|492609|492868|492901|493049|493050|493061|493063|493156|493220|493225|493253|493351|493496|493504|493568|493569|493573|493622|493662|493665|493825|493873|493874|493982|494015|494082|494092|494093|501926|501929|501931|501936|501946|501964|502236|502239|502244|502255|502262|502276|502278|502299|502313|502355|502361|502603|502604|502619|502623|502626|502632|502637|511746|511748|511749|523032|523042|523045|523051|523054|523057|523059|523063|523086|523088|523095|523101|523103|523109|523118|523126|523132|523133|523134|523138|523139|523142|523148|523151|523156|523158|523171|523173|523174|523176|523179|523182|523202|523205|523207|523208|523211|523214|523215|523311|523321|523323|523336|523339|523341|523345|523348|523353|523355|523358|523361|523371|523375|523380|523387|523388|523390|523392|523399|523401|523405|523412|523413|523415|523417|523420|523423|523432|523436|523441|523442|523448|523451|523461|523466|523467|523474|523481|523531|523537|523542|523544|523547|523549|523552|523553|523555|523556|523563|523570|523572|523576|523584|523586|523594|523596|523601|523603|523606|523608|523610|523616|523618|523622|523624|523636|523639|523644|523647|523652|523654|523655|523656|523658|523662|523663|523665|523667|523669|523671|523675|523676|523678|523683|523685|523689|523690|523692|523693|523694|523695|523698|523700|523702|523706|523714|523716|523718|523726|523730|523735|536744|561957|561960|561963|561965|561974|561980|561981|561993|561996|562000|562002|562011|562014|562018|562020|562021|562026|562029|562032|562034|562036|562038|562040|562047|562050|562054|562057|562059|562380|562396|562397|562400|562401|562411|562423|562425|562432|562433|562436|562437|562443|562448|562459|562475|562476|562479|562487|562496|562497|562500|562501|562504|562511|564676|564679|564681|564683|564690|564699|564701|564704|564708|564710|564718|564719|564722|564724|564726|564731|564732|564736|564741|564751|564759|564765|564767|564771|564774|564776|564778|564780|564785|564788|564790|564794|564796|564800|564802|564809|567397|567399|567400|567401|567406|567409|567414|567418|567419|567420|567421|567423|567427|567428|567430|567434|567443|567448|567466|567471|567484|567487|567493|567494|567495|567496|567497|567502|577038|577042|577048|577050|583214|583818|583832|583842|583852|583863|583873|583888|583928|583989|584023|584100|584299|584656|584658|584660|585030|585144|585680|585726|585814|585970|586401|586783|586809|586971|587049|587287|587469|588315|588317|588432|588452|588464|588491|588509|588536|588609|588612|588626|588632|588860|588861|588863|589251|589263|589547|589607|589776|612808|623147|636629|636630|636631|636632|636633|636634|636635|636636|636637|636638|636639|636640|636641|636642|636643|636644|636645|636646|636647|636648|636649|636650|636651|636652|636653|636654|636655|636656|636657|636658|636659|636660|636661|636662|636663|636664|636665|636666|636667|636668|636669|636670|636671|636672|636673|636674|636675|636676|636677|636678|636679|636680|636681|636682|636683|636684|636685|636686|636687|636688|636689|636690|636691|636692|636693|636694|636695|636696|636697|636698|636699|636700|636701|636702|636703|636704|636705|636706|636707|636708|636709|636710|636711|636712|636713|636714|636715|636716|636717|636718|636719|636720|636721|636722|636723|636724|636725|636726|636727|636728|636729|636730|636731|636732|636733|636734|636735|636736|636737|636738|636739|636740|636741|636742|636743|636744|636745|636746|636747|636748|636749|636750|636751|636752|636753|636754|636755|636756|636757|636758|636759|636760|636761|636762|636763|636764|636765|636766|636767|636768|636769|636770|636771|636772|636773|636774|636775|636776|636777|636778|636779|636780|636781|651751|651754|651758|651760|651770|651773|655836|655845|655849|662710|687201|692371|692372|692373|692375|692376|692378|692379|692380|692381|692385|692386|692387|692389|692391|692392|692393|692394|692395|692396|692397|692402|692403|692404|692406|692409|692411|692412|692413|692414|692418|692419|692420|692423|692424|692426|692430|692431|692432|692433|692434|692435|692436|692438|692440|695384|700445|700447|700450|700451|700455|700457|700458|700461|700463|700464|700467|711370|711371|711372|711374|711376|711381|711382|711385|711390|711391|711392|722917|722921|722922|736504|736505|736506|736507|736508|736510|736512|736513|736514|736521|736523|750972|750975|750976|750978|750979|750980|750985|750987|750989|750992|750995|766578|766583|766584|766586|766587|766599|766623|766628|775210|777720|783022|783024|783026|783029|783031|783035|793265|793267|793268|796133|796137|834168|834169|834170|834171|834172|834173|834174|834175|834176|834177|834178|834179|834180|834181|834182|834183|834184|834185|834186|834187|834188|834189|834190|834191|834192|834193|834194|834195|834196|834197|834198|834199|834200|834201|834202|834203|834204|834205|834206|834207|834208|834209|834210|834211|834212|834213|834214|834215|834216|834217|834218|834219|834220|834221|834222|834223|834224|834225|834226|834227|834228|834229|834230|834231|834232|834233|834234|834235|834236|834237|834238|834239|834240|834241|834242|834243|834244|834245|834246|834247|834248|834249|834250|834251|834252|834253|834254|834255|834256|834257|834258|834259|834260|834261|834262|834263|834264|834265|834266|834267|834268|834269|834270|834271|834272|834273|834274|834275|834276|834277|834278|834279|834280|834281|834282|834283|834284|834285|834286|834287|834288|834289|834290|834291|834292|834293|852118|925028|925029|925030|925031|925032|925033|925034|925035|925036|925037|925038|925039|925040|925041|925042|925043|925044|925045|925046|925047|925048|925049|925050|925051|925052|925053|925054|925055|925056|925057|925058|925059|925060|925061|925062|925063|925064|925065|925066|925067|925068|934109|934110|934111|934112|934113|934114|934115|934116|934117|934118|934119|934120|934121|934122|934123|934124|934125|934126|934127|934128|934129|934130|934131|934132|934133|934134|934135|934136|934137|934138|934139|934140|934141|934142|934143|934144|934145|934146|934147|934148|934149|934150|934151|934152|934153|934154|934155|934156|934157|934158|934159|934160|934161|940891|945859|945860|945861|945862|945863|945864|945865|945866|945867|945868|945869|945870|945871|945872|945873|945874|945875|945876|945877|945878|945879|945880|945881|945882|945883|945884|945885|945886|945887|945888|945889|945890|945891|945892|945893|945894|945895|945896|945897|945898|945899|945900|945901|945902|945903|945904|945905|945906|945907|945908|945909|945910|945911|945912|955305|955306|955307|955308|955309|955310|955311|955312|955313|955314|955315|955316|955317|955318|955319|955320|955321|955322|955323|955324|955325|955326|955327|955328|955329|955330|955331|955332|955333|955334|955335|955336|955337|955338|955339|955340|959878|970877|970878", + "text": "Epidermolysis bullosa simplex with muscular dystrophy" + }, + { + "baseId": "23301|81688|88117|98921|98922|98923|98924|98926|98928|98933|98934|98935|98936|98938|98939|98941|98943|98944|98946|98949|98950|98952|98955|98960|98961|98962|98965|98966|98967|98968|98969|98970|98972|98973|98976|98977|98981|98982|98983|98984|98986|98988|98992|98993|98995|98997|98998|135364|135365|135366|135367|135368|135370|135371|135372|135373|135375|135376|135377|135378|135379|135381|135382|135383|135385|135386|135387|135388|135389|135390|135391|135392|135394|135396|135397|135398|135399|135400|135401|135402|135404|135405|135406|135407|135408|135409|135409|176989|177121|177252|177383|177959|177961|177962|177965|177966|191156|191157|191638|192163|192815|192816|192817|192962|192963|193017|193018|193076|193091|193265|193266|193267|193309|193435|193772|193823|193877|193878|193881|193882|193883|193893|193894|193895|193896|193897|193899|193902|193903|193904|193905|193906|193907|193908|193909|193910|193911|193912|193913|193914|193915|193917|193918|193919|193920|193921|193922|193923|193925|193926|193928|193969|193971|193973|193974|193975|193977|193978|193980|193983|193984|193985|193986|193987|193989|193990|193994|193998|194000|194001|194002|194003|194004|194005|194008|194009|194010|194012|194013|194014|194015|194019|194020|195245|195795|207532|207533|231311|231370|231429|231430|253066|253067|265349|265461|265465|265501|265502|265508|265512|265516|265517|265518|265519|265524|265531|265554|265593|265628|265629|265639|265718|265827|265831|265905|265922|265930|265931|265932|265938|266070|266073|266086|266092|266179|266185|266228|266229|266248|266334|266335|266357|266370|266405|266422|266425|266440|266481|266507|266522|266524|266534|266545|266546|266550|266554|266563|266629|266630|266642|266656|266658|266659|266687|266692|266703|266723|266730|266736|266746|266756|266775|266779|266819|266876|266961|266991|267017|267018|267058|267063|267069|267090|267102|267121|267126|267133|267262|267271|267292|267309|267337|267338|267339|267439|267460|267461|267478|267481|267484|267491|267513|267523|267541|267568|267574|267631|267638|267641|267671|267700|267701|267707|267786|267867|267875|267877|267881|267882|267885|267899|267912|267924|267932|267981|268004|268114|268184|268195|268205|268206|268207|268212|268338|268339|268485|268486|268520|268521|268624|268704|268731|268747|268802|268812|268818|268819|268820|268835|268837|269027|269036|269247|269248|269316|269468|269573|269579|269645|269915|269970|269980|270225|270253|270274|270275|270360|270506|270550|270555|270825|270961|271365|271460|271624|271858|271947|272140|272170|272415|273236|273701|274532|274542|274576|274586|274590|274687|274701|274703|274704|274872|274876|274884|274886|274888|274895|274900|274934|274949|274965|274966|275304|361453|369376|369377|369380|369386|369388|369394|369396|369411|369412|369424|369428|369734|369742|369758|369763|369767|369769|369773|369791|369802|369809|369814|369825|369839|369841|369846|370091|370093|370095|370097|370102|370108|370111|370122|370128|370132|370138|370139|370149|370155|371589|371592|371593|371594|371618|371629|371631|371646|371656|371659|371661|371665|371667|371679|371681|390580|404777|407323|407324|407325|407326|407327|407328|407332|407334|407335|415126|421663|421664|421665|425783|425784|425786|428802|428803|428804|428805|428806|428807|428808|428810|434623|438403|438405|441183|441184|441186|441188|441189|441190|441191|441193|441197|441199|441200|441201|441203|441204|441205|441206|441210|441211|441222|441223|441224|444223|444224|444226|444228|444230|444235|444240|444241|444245|444247|444250|444251|457234|457236|457238|457240|457245|457248|457249|457255|457258|457272|457273|457277|457282|457286|457294|457296|457298|457300|457302|457305|457307|457310|457312|457316|457323|457324|457328|457336|457337|457347|457348|457351|457359|457362|457363|457366|457371|457385|457390|457391|457393|457397|457399|457401|457405|457406|457411|457422|457424|457426|457428|457817|457837|457838|457839|457843|457847|457849|457851|457856|457857|457860|457862|457865|457866|457867|457869|457870|457872|457876|457878|457880|457882|457883|457884|457886|457887|457888|457894|457896|457900|457901|457902|457904|457907|457908|457912|457914|457919|457920|457921|457922|457924|457925|457927|457928|457931|457932|457935|457936|457937|457938|457946|457949|457956|457958|457960|457962|457963|457967|457972|457977|457980|457981|457982|457983|457985|457988|457990|457996|457998|457999|458001|458002|458004|458006|458007|458008|458013|458014|458017|458020|458022|458023|458025|458028|458030|458032|458033|458034|458039|458040|458041|458043|458046|458047|458051|458054|458062|458064|458067|458068|458071|458072|458077|458079|458088|458241|458243|458248|458252|458256|458266|458268|458268|458272|458273|458277|458279|458283|458286|458292|458296|458298|458301|458302|458305|458310|458311|458316|458318|458323|458327|458334|458337|458341|458343|458346|458347|458350|458352|458355|458363|458368|458370|458376|458379|458383|458386|486449|488410|488423|488425|488427|488429|488430|488437|488440|488453|488464|488466|488469|488474|488476|488477|488479|488488|488496|488505|488507|488509|488512|488519|488520|488538|488539|488562|488589|488617|488790|488793|488811|488922|489011|489080|489083|489246|489276|489281|489377|489481|489688|490087|490389|490392|490417|490506|490642|490644|490646|490714|491028|491054|491060|491066|491108|491112|491126|491242|491388|491529|491648|491734|491814|491816|491970|491980|492104|492115|492230|492337|492338|492462|492609|492868|492901|493049|493050|493061|493063|493156|493220|493225|493253|493351|493496|493504|493568|493569|493573|493622|493662|493665|493825|493873|493874|493982|494015|494082|494092|494093|501926|501929|501931|501936|501946|501964|502236|502239|502244|502255|502262|502276|502278|502299|502313|502355|502361|502603|502604|502619|502623|502626|502632|502637|511746|511748|511749|523032|523042|523045|523051|523054|523057|523059|523063|523086|523088|523095|523101|523103|523109|523118|523126|523132|523133|523134|523138|523139|523142|523148|523151|523156|523158|523171|523173|523174|523176|523179|523182|523202|523205|523207|523208|523211|523214|523215|523311|523321|523323|523336|523339|523341|523345|523348|523353|523355|523358|523361|523371|523375|523380|523387|523388|523390|523392|523399|523401|523405|523412|523413|523415|523417|523420|523423|523432|523436|523441|523442|523448|523451|523461|523466|523467|523474|523481|523531|523537|523542|523544|523547|523549|523552|523553|523555|523556|523563|523570|523572|523576|523584|523586|523594|523596|523601|523603|523606|523608|523610|523616|523618|523622|523624|523636|523639|523644|523647|523652|523654|523655|523656|523658|523662|523663|523665|523667|523669|523671|523675|523676|523678|523683|523685|523689|523690|523692|523693|523694|523695|523698|523700|523702|523706|523714|523716|523718|523726|523730|523735|536744|539009|561957|561960|561963|561965|561974|561980|561981|561993|561996|562000|562002|562011|562014|562018|562020|562021|562026|562029|562032|562034|562036|562038|562040|562047|562050|562054|562057|562059|562380|562396|562397|562400|562401|562411|562423|562425|562432|562433|562436|562437|562443|562448|562459|562475|562476|562479|562487|562496|562497|562500|562501|562504|562511|564676|564679|564681|564683|564690|564699|564701|564704|564708|564710|564718|564719|564722|564724|564726|564731|564732|564736|564741|564751|564759|564765|564767|564771|564774|564776|564778|564780|564785|564788|564790|564794|564796|564800|564802|564809|567397|567399|567400|567401|567406|567409|567414|567418|567419|567420|567421|567423|567427|567428|567430|567434|567443|567448|567466|567471|567484|567487|567493|567494|567495|567496|567497|567502|577038|577042|577048|577050|583214|583818|583832|583842|583852|583863|583873|583888|583928|583989|584023|584100|584299|584656|584658|584660|585030|585144|585680|585726|585814|585970|586401|586783|586809|586971|587049|587287|587469|588315|588317|588432|588452|588464|588491|588509|588536|588609|588612|588626|588632|588860|588861|588863|589251|589263|589547|589607|589776|612808|623147|636629|636630|636631|636632|636633|636634|636635|636636|636637|636638|636639|636640|636641|636642|636643|636644|636645|636646|636647|636648|636649|636650|636651|636652|636653|636654|636655|636656|636657|636658|636659|636660|636661|636662|636663|636664|636665|636666|636667|636668|636669|636670|636671|636672|636673|636674|636675|636676|636677|636678|636679|636680|636681|636682|636683|636684|636685|636686|636687|636688|636689|636690|636691|636692|636693|636694|636695|636696|636697|636698|636699|636700|636701|636702|636703|636704|636705|636706|636707|636708|636709|636710|636711|636712|636713|636714|636715|636716|636717|636718|636719|636720|636721|636722|636723|636724|636725|636726|636727|636728|636729|636730|636731|636732|636733|636734|636735|636736|636737|636738|636739|636740|636741|636742|636743|636744|636745|636746|636747|636748|636749|636750|636751|636752|636753|636754|636755|636756|636757|636758|636759|636760|636761|636762|636763|636764|636765|636766|636767|636768|636769|636770|636771|636772|636773|636774|636775|636776|636777|636778|636779|636780|636781|651751|651754|651758|651760|651770|651773|655836|655845|655849|662710|687201|692371|692372|692373|692375|692376|692378|692379|692380|692381|692385|692386|692387|692389|692391|692392|692393|692394|692395|692396|692397|692402|692403|692404|692406|692409|692411|692412|692413|692414|692418|692419|692420|692423|692424|692426|692430|692431|692432|692433|692434|692435|692436|692438|692440|695384|700445|700447|700450|700451|700455|700457|700458|700461|700463|700464|700467|711370|711371|711372|711374|711376|711381|711382|711385|711390|711391|711392|722917|722921|722922|736504|736505|736506|736507|736508|736510|736512|736513|736514|736521|736523|750972|750975|750976|750978|750979|750980|750985|750987|750989|750992|750995|766578|766583|766584|766586|766587|766599|766623|766628|775210|777720|783022|783024|783026|783029|783031|783035|793265|793267|793268|796133|796137|834168|834169|834170|834171|834172|834173|834174|834175|834176|834177|834178|834179|834180|834181|834182|834183|834184|834185|834186|834187|834188|834189|834190|834191|834192|834193|834194|834195|834196|834197|834198|834199|834200|834201|834202|834203|834204|834205|834206|834207|834208|834209|834210|834211|834212|834213|834214|834215|834216|834217|834218|834219|834220|834221|834222|834223|834224|834225|834226|834227|834228|834229|834230|834231|834232|834233|834234|834235|834236|834237|834238|834239|834240|834241|834242|834243|834244|834245|834246|834247|834248|834249|834250|834251|834252|834253|834254|834255|834256|834257|834258|834259|834260|834261|834262|834263|834264|834265|834266|834267|834268|834269|834270|834271|834272|834273|834274|834275|834276|834277|834278|834279|834280|834281|834282|834283|834284|834285|834286|834287|834288|834289|834290|834291|834292|834293|852118|925028|925029|925030|925031|925032|925033|925034|925035|925036|925037|925038|925039|925040|925041|925042|925043|925044|925045|925046|925047|925048|925049|925050|925051|925052|925053|925054|925055|925056|925057|925058|925059|925060|925061|925062|925063|925064|925065|925066|925067|925068|934109|934110|934111|934112|934113|934114|934115|934116|934117|934118|934119|934120|934121|934122|934123|934124|934125|934126|934127|934128|934129|934130|934131|934132|934133|934134|934135|934136|934137|934138|934139|934140|934141|934142|934143|934144|934145|934146|934147|934148|934149|934150|934151|934152|934153|934154|934155|934156|934157|934158|934159|934160|934161|940891|945859|945860|945861|945862|945863|945864|945865|945866|945867|945868|945869|945870|945871|945872|945873|945874|945875|945876|945877|945878|945879|945880|945881|945882|945883|945884|945885|945886|945887|945888|945889|945890|945891|945892|945893|945894|945895|945896|945897|945898|945899|945900|945901|945902|945903|945904|945905|945906|945907|945908|945909|945910|945911|945912|955305|955306|955307|955308|955309|955310|955311|955312|955313|955314|955315|955316|955317|955318|955319|955320|955321|955322|955323|955324|955325|955326|955327|955328|955329|955330|955331|955332|955333|955334|955335|955336|955337|955338|955339|955340|959878", + "text": "Epidermolysis bullosa simplex, Ogna type" + }, + { + "baseId": "23302|23303|23304|23305|81688|88117|98921|98922|98923|98924|98926|98928|98933|98934|98935|98936|98938|98939|98941|98943|98944|98946|98949|98950|98952|98955|98960|98961|98962|98965|98966|98967|98968|98969|98970|98972|98973|98976|98977|98981|98982|98983|98984|98986|98988|98992|98993|98995|98997|98998|135364|135365|135366|135367|135368|135370|135371|135372|135373|135375|135376|135377|135378|135379|135381|135382|135383|135385|135386|135387|135388|135389|135390|135391|135392|135394|135396|135397|135398|135399|135400|135401|135402|135404|135405|135406|135407|135408|135409|176989|177121|177252|177383|177959|177961|177962|177965|177966|191156|191157|191638|192163|192815|192816|192817|192962|192963|193017|193018|193076|193091|193265|193266|193267|193309|193435|193772|193823|193877|193878|193881|193882|193883|193893|193894|193895|193896|193897|193899|193902|193903|193904|193905|193906|193907|193908|193909|193910|193911|193912|193913|193914|193915|193917|193918|193919|193920|193921|193922|193923|193925|193926|193928|193969|193971|193973|193974|193975|193977|193978|193980|193983|193984|193985|193986|193987|193989|193990|193994|193998|194000|194001|194002|194003|194004|194005|194008|194009|194010|194012|194013|194014|194015|194019|194020|195245|195795|207532|207533|231311|231370|231429|231430|253066|253067|265349|265461|265465|265501|265502|265508|265512|265516|265517|265518|265519|265524|265531|265554|265593|265628|265629|265639|265718|265827|265831|265905|265922|265930|265931|265932|265938|266070|266073|266086|266092|266179|266185|266228|266229|266248|266334|266335|266357|266370|266405|266422|266425|266440|266481|266507|266522|266524|266534|266545|266546|266550|266554|266563|266629|266630|266642|266656|266658|266659|266687|266692|266703|266723|266730|266736|266746|266756|266775|266779|266819|266876|266961|266991|267017|267018|267058|267063|267069|267090|267102|267121|267126|267133|267262|267271|267292|267309|267337|267338|267339|267439|267460|267461|267478|267481|267484|267491|267513|267523|267541|267568|267574|267631|267638|267641|267671|267700|267701|267707|267786|267867|267875|267877|267881|267882|267885|267899|267912|267924|267932|267981|268004|268114|268184|268195|268205|268206|268207|268212|268338|268339|268485|268486|268520|268521|268624|268704|268731|268747|268802|268812|268818|268819|268820|268835|268837|269027|269036|269247|269248|269316|269468|269573|269579|269645|269915|269970|269980|270225|270253|270274|270275|270360|270506|270550|270555|270825|270961|271365|271460|271624|271858|271947|272140|272170|272415|273236|273701|274532|274542|274576|274586|274590|274687|274701|274703|274704|274872|274876|274884|274886|274888|274895|274900|274934|274949|274965|274966|275304|361453|369376|369377|369380|369386|369388|369394|369396|369411|369412|369424|369428|369734|369742|369758|369763|369767|369769|369773|369791|369802|369809|369814|369825|369839|369841|369846|370091|370093|370095|370097|370102|370108|370111|370122|370128|370132|370138|370139|370149|370155|371589|371592|371593|371594|371618|371629|371631|371646|371656|371659|371661|371665|371667|371679|371681|390580|404777|407323|407324|407325|407326|407327|407328|407332|407334|407335|415126|421663|421664|421665|425783|425784|425786|428802|428803|428804|428805|428806|428807|428808|428810|434623|438403|438405|441183|441184|441186|441188|441189|441190|441191|441193|441197|441199|441200|441201|441203|441204|441205|441206|441210|441211|441222|441223|441224|444223|444224|444226|444228|444230|444235|444240|444241|444245|444247|444250|444251|457234|457236|457238|457240|457245|457248|457249|457255|457258|457272|457273|457277|457282|457286|457294|457296|457298|457300|457302|457305|457307|457310|457312|457316|457323|457324|457328|457336|457337|457347|457348|457351|457359|457362|457363|457366|457371|457385|457390|457391|457393|457397|457399|457401|457405|457406|457411|457422|457424|457426|457428|457817|457837|457838|457839|457843|457847|457849|457851|457856|457857|457860|457862|457865|457866|457867|457869|457870|457872|457876|457878|457880|457882|457883|457884|457886|457887|457888|457894|457896|457900|457901|457902|457904|457907|457908|457912|457914|457919|457920|457921|457922|457924|457925|457927|457928|457931|457932|457935|457936|457937|457938|457946|457949|457956|457958|457960|457962|457963|457967|457972|457977|457980|457981|457982|457983|457985|457988|457990|457996|457998|457999|458001|458002|458004|458006|458007|458008|458013|458014|458017|458020|458022|458023|458025|458028|458030|458032|458033|458034|458039|458040|458041|458043|458046|458047|458051|458054|458062|458064|458067|458068|458071|458072|458077|458079|458088|458241|458243|458248|458252|458256|458266|458268|458272|458273|458277|458279|458283|458286|458292|458296|458298|458301|458302|458305|458310|458311|458316|458318|458323|458327|458334|458337|458341|458343|458346|458347|458350|458352|458355|458363|458368|458370|458376|458379|458383|458386|486449|488410|488423|488425|488427|488429|488430|488437|488440|488453|488464|488466|488469|488474|488476|488477|488479|488488|488496|488505|488507|488509|488512|488519|488520|488538|488539|488562|488589|488617|488790|488793|488811|488922|489011|489080|489083|489246|489276|489281|489377|489481|489688|490087|490389|490392|490417|490506|490642|490644|490646|490714|491028|491054|491060|491066|491108|491112|491126|491242|491388|491529|491648|491734|491814|491816|491970|491980|492104|492115|492230|492337|492338|492462|492609|492868|492901|493049|493050|493061|493063|493156|493220|493225|493253|493351|493496|493504|493568|493569|493573|493622|493662|493665|493825|493873|493874|493982|494015|494082|494092|494093|501926|501929|501931|501936|501946|501964|502236|502239|502244|502255|502262|502276|502278|502299|502313|502355|502361|502603|502604|502619|502623|502626|502632|502637|511746|511748|511749|523032|523042|523045|523051|523054|523057|523059|523063|523086|523088|523095|523101|523103|523109|523118|523126|523132|523133|523134|523138|523139|523142|523148|523151|523156|523158|523171|523173|523174|523176|523179|523182|523202|523205|523207|523208|523211|523214|523215|523311|523321|523323|523336|523339|523341|523345|523348|523353|523355|523358|523361|523371|523375|523380|523387|523388|523390|523392|523399|523401|523405|523412|523413|523415|523417|523420|523423|523432|523436|523441|523442|523448|523451|523461|523466|523467|523474|523481|523531|523537|523542|523544|523547|523549|523552|523553|523555|523556|523563|523570|523572|523576|523584|523586|523594|523596|523601|523603|523606|523608|523610|523616|523618|523622|523624|523636|523639|523644|523647|523652|523654|523655|523656|523658|523662|523663|523665|523667|523669|523671|523675|523676|523678|523683|523685|523689|523690|523692|523693|523694|523695|523698|523700|523702|523706|523714|523716|523718|523726|523730|523735|536744|561957|561960|561963|561965|561974|561980|561981|561993|561996|562000|562002|562011|562014|562018|562020|562021|562026|562029|562032|562034|562036|562038|562040|562047|562050|562054|562057|562059|562380|562396|562397|562400|562401|562411|562423|562425|562432|562433|562436|562437|562443|562448|562459|562475|562476|562479|562487|562496|562497|562500|562501|562504|562511|564676|564679|564681|564683|564690|564699|564701|564704|564708|564710|564718|564719|564722|564724|564726|564731|564732|564736|564741|564751|564759|564765|564767|564771|564774|564776|564778|564780|564785|564788|564790|564794|564796|564800|564802|564809|567397|567399|567400|567401|567406|567409|567414|567418|567419|567420|567421|567423|567427|567428|567430|567434|567443|567448|567466|567471|567484|567487|567493|567494|567495|567496|567497|567502|577038|577042|577048|577050|583214|583818|583832|583842|583852|583863|583873|583888|583928|583989|584023|584100|584299|584656|584658|584660|585030|585144|585680|585726|585814|585970|586401|586783|586809|586971|587049|587287|587469|588315|588317|588432|588452|588464|588491|588509|588536|588609|588612|588626|588632|588860|588861|588863|589251|589263|589547|589607|589776|612808|623147|636629|636630|636631|636632|636633|636634|636635|636636|636637|636638|636639|636640|636641|636642|636643|636644|636645|636646|636647|636648|636649|636650|636651|636652|636653|636654|636655|636656|636657|636658|636659|636660|636661|636662|636663|636664|636665|636666|636667|636668|636669|636670|636671|636672|636673|636674|636675|636676|636677|636678|636679|636680|636681|636682|636683|636684|636685|636686|636687|636688|636689|636690|636691|636692|636693|636694|636695|636696|636697|636698|636699|636700|636701|636702|636703|636704|636705|636706|636707|636708|636709|636710|636711|636712|636713|636714|636715|636716|636717|636718|636719|636720|636721|636722|636723|636724|636725|636726|636727|636728|636729|636730|636731|636732|636733|636734|636735|636736|636737|636738|636739|636740|636741|636742|636743|636744|636745|636746|636747|636748|636749|636750|636751|636752|636753|636754|636755|636756|636757|636758|636759|636760|636761|636762|636763|636764|636765|636766|636767|636768|636769|636770|636771|636772|636773|636774|636775|636776|636777|636778|636779|636780|636781|651751|651754|651758|651760|651770|651773|655836|655845|655849|662710|687201|692371|692372|692373|692375|692376|692378|692379|692380|692381|692385|692386|692387|692389|692391|692392|692393|692394|692395|692396|692397|692402|692403|692404|692406|692409|692411|692412|692413|692414|692418|692419|692420|692423|692424|692426|692430|692431|692432|692433|692434|692435|692436|692438|692440|695384|700445|700447|700450|700451|700455|700457|700458|700461|700463|700464|700467|711370|711371|711372|711374|711376|711381|711382|711385|711390|711391|711392|722917|722921|722922|736504|736505|736506|736507|736508|736510|736512|736513|736514|736521|736523|750972|750975|750976|750978|750979|750980|750985|750987|750989|750992|750995|766578|766583|766584|766586|766587|766599|766623|766628|775210|777720|783022|783024|783026|783029|783031|783035|793265|793267|793268|796133|796137|834168|834169|834170|834171|834172|834173|834174|834175|834176|834177|834178|834179|834180|834181|834182|834183|834184|834185|834186|834187|834188|834189|834190|834191|834192|834193|834194|834195|834196|834197|834198|834199|834200|834201|834202|834203|834204|834205|834206|834207|834208|834209|834210|834211|834212|834213|834214|834215|834216|834217|834218|834219|834220|834221|834222|834223|834224|834225|834226|834227|834228|834229|834230|834231|834232|834233|834234|834235|834236|834237|834238|834239|834240|834241|834242|834243|834244|834245|834246|834247|834248|834249|834250|834251|834252|834253|834254|834255|834256|834257|834258|834259|834260|834261|834262|834263|834264|834265|834266|834267|834268|834269|834270|834271|834272|834273|834274|834275|834276|834277|834278|834279|834280|834281|834282|834283|834284|834285|834286|834287|834288|834289|834290|834291|834292|834293|852118|925028|925029|925030|925031|925032|925033|925034|925035|925036|925037|925038|925039|925040|925041|925042|925043|925044|925045|925046|925047|925048|925049|925050|925051|925052|925053|925054|925055|925056|925057|925058|925059|925060|925061|925062|925063|925064|925065|925066|925067|925068|934109|934110|934111|934112|934113|934114|934115|934116|934117|934118|934119|934120|934121|934122|934123|934124|934125|934126|934127|934128|934129|934130|934131|934132|934133|934134|934135|934136|934137|934138|934139|934140|934141|934142|934143|934144|934145|934146|934147|934148|934149|934150|934151|934152|934153|934154|934155|934156|934157|934158|934159|934160|934161|940891|945859|945860|945861|945862|945863|945864|945865|945866|945867|945868|945869|945870|945871|945872|945873|945874|945875|945876|945877|945878|945879|945880|945881|945882|945883|945884|945885|945886|945887|945888|945889|945890|945891|945892|945893|945894|945895|945896|945897|945898|945899|945900|945901|945902|945903|945904|945905|945906|945907|945908|945909|945910|945911|945912|955305|955306|955307|955308|955309|955310|955311|955312|955313|955314|955315|955316|955317|955318|955319|955320|955321|955322|955323|955324|955325|955326|955327|955328|955329|955330|955331|955332|955333|955334|955335|955336|955337|955338|955339|955340|959878", + "text": "Epidermolysis bullosa simplex with pyloric atresia" + }, + { + "baseId": "23307|23308|23309|101778|101779|101780|240839|253804|253805|253806|310609|315791|315795|315796|315827|315828|315829|315831|315841|315843|315844|315845|321858|321859|321864|321867|321868|321872|321873|321874|322523|322549|322551|322555|322565|322566|322578|322581|397795|460101|536045|536046|536047|563898|564709|569410|639101|639102|684194|684195|687666|687668|692886|837161|837162|837163|837164|866072|866073|866074|866075|866076|866077|866078|866079|866080|866081|866082|866083|866084|925901|974490", + "text": "Visceral heterotaxy 5, autosomal" + }, + { + "baseId": "23308|407891", + "text": "heterotaxia syndrome" + }, + { + "baseId": "23311|23312|23313|23314|39126|49240|49259|49263|49278|49286|49294|49297|49305|55402|264952|265075|269358|363055|424697|919868", + "text": "Cardiofaciocutaneous syndrome 4" + }, + { + "baseId": "23311|23312|23313|23314|27625|27625|27626|27628|27629|28389|28390|28391|29000|29003|29003|29004|29004|29008|29012|29013|29014|29014|29016|29017|29018|29019|38762|48816|48817|48818|48821|48835|48836|48839|48840|48844|48850|48853|48854|48857|48857|48859|48860|49214|49217|49249|49251|49251|49283|49283|49884|53753|53754|53755|53972|53973|53974|53977|53978|53985|53987|53988|53997|53998|99984|174042|174043|174043|174175|174176|174178|175711|175716|175855|176031|176031|179450|224864|224865|224866|230308|301998|302001|309875|310013|316688|316706|316713|316714|316716|323126|323128|324168|324186|330211|330214|330268|331617|331620|331623|331632|331661|332754|332756|359643|362823|362825|363055|653970|653971|653972|653977|653983|653984|799020|969624", + "text": "Cardio-facio-cutaneous syndrome" + }, + { + "baseId": "23315|23316|23317|23318|23318|23319|23320|23321|23322|23323|23324|23325|23329|40376|40390|272349|918860|961601", + "text": "Rippling muscle disease 2" + }, + { + "baseId": "23317|40366|40367|40369|40374|40376|40377|40378|40380|40399|44468|101340|135129|135130|177852|179082|195708|195709|229569|252658|265307|267980|270697|272684|273196|291730|291733|293055|293056|293071|293074|293079|295480|295481|295485|295486|295488|296327|296330|296331|296333|296349|296387|296388|296389|296390|297261|297264|297267|297276|301110|301111|301112|301113|301114|301267|301277|302296|302299|302312|302320|305526|305535|305543|305551|305553|305555|310342|310348|310446|310468|310470|310481", + "text": "Limb-Girdle Muscular Dystrophy, Dominant" + }, + { + "baseId": "23317|23318|23327|23332|40366|40367|40369|40371|40374|40376|40377|40378|40380|40399|44468|55699|55701|102134|140362|179082|179092|291730|291733|293055|293056|293071|293074|293079|296327|296330|296331|296333|296349|296387|296388|296389|296390|367735|889740|889741|889742|889743|889744|889745|889746|889747|889748|889749|889750|889751|889752|889753", + "text": "Caveolinopathy" + }, + { + "baseId": "23318|23322|23328|40376|272349|961601", + "text": "Distal myopathy, Tateyama type" + }, + { + "baseId": "23318|23330|23332|23333|23334|23335|272349|625794|857645|961601", + "text": "Long QT syndrome 9" + }, + { + "baseId": "23324", + "text": "Rippling muscle disease 2, autosomal recessive" + }, + { + "baseId": "23331", + "text": "Long QT syndrome 9, acquired, susceptibility to" + }, + { + "baseId": "23332|29482", + "text": "Long QT syndrome 2/9, digenic" + }, + { + "baseId": "23336|23337|23338|23339|167854|167855|167856|167857|167858|167860|167861|167862|167863|167864|167865|167866|167867|167868|167869|167870|167871|167872|191039|191444|206839|250143|250147|250149|250150|250152|268256|270551|270786|272294|272612|275116|281761|281768|281777|281779|281781|281782|281784|281789|282397|282398|282400|282403|282407|282410|282411|283952|283964|283965|283967|283977|283988|283989|284009|284017|284028|284030|284039|284183|284197|284199|284200|284201|284206|284207|284217|284220|353537|365344|365351|365352|365505|365509|365531|405289|405290|448561|448638|448644|448651|448653|448669|448671|448675|448677|448678|448683|448689|448691|448766|448768|498617|498644|516300|516308|516310|516312|516318|516321|516322|516325|516334|516363|516369|516371|516402|516403|516405|557494|557496|557498|557500|557502|557543|557545|557547|558629|558709|559196|559198|609084|609085|628424|628425|628426|628427|628428|628429|628430|628431|628432|650706|650861|690732|690736|690737|695071|697003|697004|707707|762168|762170|787187|819046|824725|824726|824727|824728|824729|824730|824731|824732|824733|824734|851331|880993|880994|880995|880996|880997|880998|880999|881000|881001|881002|881003|881004|881005|881006|881007|881008|882792|882793|882794|922231|922232|922233|930791|930792|930793|939843|942219|942220|942221|942222|942223|942224|942225|942226|952625|952626|952627|952628|952629", + "text": "Autosomal recessive centronuclear myopathy" + }, + { + "baseId": "23340|23341|23342|23343|23344|33917|33918|33919|33920|134576|141136|141137|141138|141139|141140|142197|177428|192184|200993|203522|203525|203526|203529|203532|203533|203537|203540|203544|203548|203555|203558|227402|243311|273200|332705|342879|342881|342883|348219|348220|348222|348225|348226|349425|349427|349428|349431|379492|426291|439202|446066|470496|488043|506577|532739|532752|532755|533179|572273|614454|647775|647777|653605|683148|688968|798921|806381|851799|880005|880006|880007|880008|880009|880010|880011|880012|971120|979972", + "text": "Deficiency of guanidinoacetate methyltransferase" + }, + { + "baseId": "23341|23342|33917|141136|141137|141138|141139|177428|192184|203522|203523|203525|203526|203527|203528|203529|203530|203531|203532|203533|203537|203540|203543|203544|203546|203548|203555|203558|227402|243311|271551|273200|332705|342881|348220|348225|349431|377332|377532|377539|379492|403199|426289|426291|446063|446066|468531|469470|470496|470500|470507|470508|506560|507634|532739|532741|532745|532749|532750|532752|532755|532762|532812|532818|532821|532823|533179|570566|570570|570573|572273|572279|572281|572283|572965|574895|574896|574898|574900|580386|580509|647775|647776|647777|647778|647779|647780|647781|647782|647783|653016|653019|653491|653605|684781|688966|688968|694336|741614|776561|786085|821300|847388|847389|847390|847391|847392|847393|847394|847395|847396|847397|847398|847399|851799|852854|852856|852964|852965|928888|928889|938602|938603|938604|938605|940473|950700|958557|958558|958559|958560|958561|958562|958563|960286", + "text": "Cerebral creatine deficiency syndrome" + }, + { + "baseId": "23345|44691|44692|44693|55575|55576|55577|55578|55579|55582|55583|55588|55589|55590|55591|55592|55593|55594|55595|55596|55597|176682|178732|189996|189999|190000|190004|198510|198512|198513|198515|224544|243060|258757|346985|361035|378985|402449|402739|402743|403273|403275|403278|403287|403302|415602|415603|463041|467983|469326|469753|469754|469758|469759|497295|508905|513598|515690|531246|532277|532379|563886|570152|570153|571926|571931|572634|612055|647207|647208|647209|647210|647211|647212|647213|684756|772126|776599|800088|846828|846829|928699|928700|938426|938427|938428|940455|940456|941209|950514|958461|966428|966451", + "text": "Left ventricular noncompaction 1" + }, + { + "baseId": "23346|34518|39740|50340|99571|99572|140173|140174|166307|166308|167809|167810|167811|167812|167813|167815|167816|167817|167818|167819|167820|167821|167822|167824|167827|167827|167828|167830|167831|167832|167834|167836|167839|167841|167842|167843|167846|167847|167848|167849|167850|167851|167852|167853|207056|207057|207058|237440|289010|289012|289013|289030|289032|289036|289038|289042|289043|289749|289751|289752|289768|289771|289772|289773|289780|292779|292782|292803|292805|292807|292831|292833|292836|292847|292851|292852|292855|292864|293037|293039|293041|293043|293044|293070|293073|293077|293093|293095|293102|368244|413648|428149|428150|428151|428152|500600|500601|550265|550266|620111|620754|683551|683560|781576|790341|790342|794342|888084|888085|888086|888087|888088|888089|888090|888091|888092|888093|888094|888095|888096|888097|888098|888099|888100|888101|888102|888103|888104|888105|888106|888107|888108|888109|888110|888111|888112|891582|891583|891584|891585|918802|918803|918804|965959|977196", + "text": "Seckel syndrome 1" + }, + { + "baseId": "23347|23347|23348|23349|23350|187103|230534|230534|320763|320764|320765|320773|320777|320778|320779|320784|329651|329653|329656|329657|336219|336226|336236|336241|338134|338136|338141|338160|338163|338171|338172|338173|338177|338177|404817|437971|463856|464211|488884|622113|871983|871984|871985|871986|871987|871988|871989|871990|871991|871992|871993|871994|871995|871996|962987|970996", + "text": "Branchiootic syndrome 3" + }, + { + "baseId": "23347|23347|23349|204589|230534|230534|320763|320764|320765|320773|320777|320778|320779|320784|329651|329653|329656|329657|336219|336226|336236|336241|338134|338136|338141|338160|338163|338171|338172|338173|338177|338177|404817|437971|463856|464211|488884|622113|677283|871983|871984|871985|871986|871987|871988|871989|871990|871991|871992|871993|871994|871995|871996", + "text": "Deafness, autosomal dominant 23" + }, + { + "baseId": "23351|23352|23352|23353|23355|23369|23370|23371|23371|23372|23373|23374|23379|23380|23381|23388|23391|23392|23394|23395|23396|44440|44454|44461|44464|75243|190256|193423|195231|195232|198615|239058|239060|239063|239064|239066|239067|239068|239071|239076|250863|264143|269518|288297|288298|288300|288305|288307|288311|288319|288320|289063|289064|289066|289101|289102|292030|292031|292035|292036|292042|292046|292048|292049|292050|292139|292147|292154|292170|292172|292175|292176|292177|366891|384477|393203|393205|393209|393210|393213|393217|393221|393250|393273|393278|393281|393383|393389|393413|393592|393639|393641|406099|418975|424993|425518|451684|451693|451706|451714|451732|451746|451957|451968|451987|451997|451999|452003|452007|452019|452021|452034|452045|452049|452053|452059|452065|452069|452176|452181|452186|452189|452198|452214|452220|452222|518737|518748|518761|518765|518770|518771|518778|518782|518789|518815|518824|518828|518829|518838|518937|518943|518947|518961|518967|518984|518985|518994|518995|518998|519001|519008|519009|519010|519015|519028|519032|519035|558750|558752|558754|558758|558760|558768|558770|558772|559281|559287|559291|559295|559299|559303|559309|561110|561117|561119|561133|561135|562263|562269|562280|562289|562302|562328|562340|562342|562348|562353|562356|630758|630819|672027|747922|789725|790319|818221|827396|887729|887730|887731|887732|887733|887734", + "text": "Hypocalciuric hypercalcemia, familial, type 1" + }, + { + "baseId": "23351|23353|23354|23357|23370|23372|23379|23384|23391|23398|44437|44438|44439|44440|44440|44441|44442|44442|44443|44444|44445|44446|44447|44448|44450|44451|44452|44452|44455|44456|44457|44459|44459|44460|44461|44462|44463|44465|44466|44467|75392|75394|75396|75398|75403|75405|80605|171351|190255|190256|193423|195231|195233|195234|239059|239060|239061|239061|239062|239063|239064|239065|239066|239067|239068|239069|239070|239071|239072|239073|239074|239075|250860|250861|250863|264107|264120|265683|268428|269518|288297|288300|288305|288307|289063|292035|292154|292170|292174|353611|359376|366891|367125|367131|384477|393209|393213|393220|393227|393228|393230|393238|393243|393254|393256|393272|393274|393275|393277|393282|393288|393291|393293|393294|393304|393380|393401|393406|393416|393439|393573|393591|393597|393604|393606|393613|393617|393620|393622|393629|393630|393632|393641|393647|393653|393658|406092|406096|406103|414905|425519|440748|440754|440756|443343|451656|451660|451680|451688|451689|451701|451704|451708|451712|451719|451720|451722|451724|451739|451744|451748|451931|451932|451936|451939|451952|451959|451964|451969|451970|451977|451979|451981|451984|451988|451992|451993|451994|451998|452021|452029|452033|452035|452043|452047|452071|452162|452171|452191|452193|452212|452217|492632|494103|518736|518740|518751|518753|518756|518764|518766|518773|518776|518781|518784|518792|518797|518802|518804|518806|518817|518822|518840|518935|518941|518942|518951|518957|518959|518973|518974|518986|518988|518992|519002|519003|519004|519009|519011|519012|519014|519017|519019|519020|519021|519030|519035|558750|558756|558762|558764|558766|559283|559285|559289|559293|559297|559301|559305|559307|559311|561106|561112|561125|561126|561129|561130|562277|562312|562321|562322|562329|562353|576711|576713|576717|576718|576719|588185|621905|630758|630759|630760|630761|630762|630763|630764|630765|630766|630767|630768|630769|630770|630771|630772|630773|630774|630775|630776|630777|630778|630779|630780|630781|630782|630783|630784|630785|630786|630787|630788|630789|630790|630791|630792|630793|630794|630795|630796|630797|630798|630799|630800|630801|630802|630803|630804|630805|630806|630807|630808|630809|630810|630811|630812|630813|630814|630815|630816|630817|630818|630819|630820|630821|630822|630823|630824|630825|630826|630827|630828|630829|630830|630831|630832|630833|630834|630835|630836|630837|630838|630839|630840|630841|630842|630843|651066|651152|683528|683529|683530|683531|686285|686286|686287|686288|686289|686290|686293|686294|686295|686296|686297|691253|691254|691255|691257|691258|691259|691260|691262|691263|691265|691266|691267|695169|697772|697773|697774|697775|708503|720108|720109|733717|733718|733719|733720|733721|747922|747923|747924|747928|747929|747930|759211|763544|763546|763547|763548|763555|763558|763559|763563|763565|777323|781523|781524|781525|781527|781528|792996|807501|807502|807510|818221|819314|819315|827330|827331|827332|827333|827334|827335|827336|827337|827338|827339|827340|827341|827342|827343|827344|827345|827346|827347|827348|827349|827350|827351|827352|827353|827354|827355|827356|827357|827358|827359|827360|827361|827362|827363|827364|827365|827366|827367|827368|827369|827370|827371|827372|827373|827374|827375|827376|827377|827378|827379|827380|827381|827382|827383|827384|827385|827386|827387|827388|827389|827390|827391|827392|827393|827394|827395|827396|827397|827398|827399|827400|827401|827402|827403|827404|827405|827406|827407|827408|827409|827410|827411|827412|827413|827414|850905|851267|858439|922991|922992|922993|922994|922995|922996|922997|922998|922999|923000|923001|923002|923003|923004|923005|923006|923007|923008|923009|923010|923011|923012|923013|923014|923015|923016|923017|931696|931697|931698|931699|931700|931701|931702|931703|931704|931705|931706|931707|931708|931709|931710|931711|931712|931713|931714|931715|931716|931717|931718|931719|931720|931721|931722|931723|939927|939928|940735|943268|943269|943270|943271|943272|943273|943274|943275|943276|943277|943278|943279|943280|943281|943282|943283|943284|943285|943286|943287|943288|953304|953305|953306|953307|953308|953309|953310|953311|953312|953313|953314|959676", + "text": "Familial hypocalciuric hypercalcemia" + }, + { + "baseId": "23351|23351|23352|23353|23354|23354|23357|23359|23360|23361|23362|23363|23364|23365|23366|23367|23370|23371|23372|23375|23376|23377|23378|23379|23382|23384|23385|23386|23387|23388|23389|23391|23393|23398|44438|44440|44440|44442|44451|44452|44454|44459|44461|44464|75242|75392|75394|75396|75398|75403|75405|80605|171351|190255|190256|190256|193423|193423|195231|195231|195232|195233|195234|198615|239058|239059|239060|239060|239061|239062|239063|239063|239064|239064|239065|239066|239066|239067|239067|239068|239068|239069|239070|239071|239071|239072|239073|239074|239075|239076|250860|250861|250863|250863|264107|264120|264143|265683|268428|269518|269518|288297|288297|288298|288300|288300|288305|288305|288307|288307|288311|288319|288320|289063|289063|289064|289066|289101|289102|292030|292031|292035|292035|292036|292042|292046|292048|292049|292050|292139|292147|292154|292154|292170|292170|292172|292175|292176|292177|359376|366891|367125|367131|384477|393203|393205|393209|393209|393210|393213|393217|393220|393221|393227|393228|393230|393238|393243|393250|393254|393256|393272|393273|393274|393275|393277|393278|393281|393282|393288|393291|393293|393294|393304|393380|393383|393389|393401|393406|393413|393416|393439|393573|393591|393592|393597|393604|393606|393613|393617|393620|393622|393629|393630|393632|393639|393641|393641|393647|393653|393658|406092|406096|406099|406103|414905|425518|425519|440748|440754|440756|443343|443345|451656|451660|451680|451684|451688|451689|451693|451701|451704|451706|451708|451712|451714|451719|451720|451722|451724|451732|451739|451744|451746|451748|451931|451932|451936|451939|451952|451957|451959|451964|451968|451969|451970|451977|451979|451981|451984|451987|451988|451992|451993|451994|451997|451998|451999|452003|452007|452019|452021|452021|452029|452033|452034|452035|452043|452045|452047|452049|452053|452059|452065|452069|452071|452162|452171|452176|452181|452186|452189|452191|452193|452198|452212|452214|452217|452220|452222|492632|494103|518736|518737|518740|518748|518751|518753|518756|518761|518764|518765|518766|518770|518771|518773|518776|518778|518781|518782|518784|518789|518792|518797|518802|518804|518806|518815|518817|518822|518824|518828|518829|518838|518840|518935|518937|518941|518942|518943|518947|518951|518957|518959|518961|518967|518973|518974|518984|518985|518986|518988|518992|518994|518995|518998|519001|519002|519003|519004|519008|519009|519009|519010|519011|519012|519014|519015|519017|519019|519020|519021|519028|519030|519032|519035|519035|552069|558750|558752|558754|558756|558758|558760|558762|558764|558766|558768|558770|558772|559281|559283|559285|559287|559289|559291|559293|559295|559297|559299|559301|559303|559305|559307|559309|559311|561106|561110|561112|561117|561119|561125|561126|561129|561130|561133|561135|562263|562269|562277|562280|562289|562302|562312|562321|562322|562328|562329|562340|562342|562348|562353|562356|576711|576713|576717|576718|576719|588185|621905|630758|630758|630759|630760|630761|630762|630763|630764|630765|630766|630767|630768|630769|630770|630771|630772|630773|630774|630775|630776|630777|630778|630779|630780|630781|630782|630783|630784|630785|630786|630787|630788|630789|630790|630791|630792|630793|630794|630795|630796|630797|630798|630799|630800|630801|630802|630803|630804|630805|630806|630807|630808|630809|630810|630811|630812|630813|630814|630815|630816|630817|630818|630819|630820|630821|630822|630823|630824|630825|630826|630827|630828|630829|630830|630831|630832|630833|630834|630835|630836|630837|630838|630839|630840|630841|630842|630843|651066|651152|683528|683529|683530|683531|686285|686286|686287|686288|686289|686290|686293|686294|686295|686296|686297|691253|691254|691255|691257|691258|691259|691260|691262|691263|691265|691266|691267|695169|697772|697773|697774|697775|708503|720108|720109|733717|733718|733719|733720|733721|747922|747922|747923|747924|747928|747929|747930|759211|763544|763546|763547|763548|763555|763558|763559|763563|763565|777323|781523|781524|781525|781527|781528|792996|807501|807502|807510|818221|819314|819315|827330|827331|827332|827333|827334|827335|827336|827337|827338|827339|827340|827341|827342|827343|827344|827345|827346|827347|827348|827349|827350|827351|827352|827353|827354|827355|827356|827357|827358|827359|827360|827361|827362|827363|827364|827365|827366|827367|827368|827369|827370|827371|827372|827373|827374|827375|827376|827377|827378|827379|827380|827381|827382|827383|827384|827385|827386|827387|827388|827389|827390|827391|827392|827393|827394|827395|827396|827396|827397|827398|827399|827399|827400|827401|827402|827403|827404|827405|827406|827407|827408|827409|827410|827411|827412|827413|827414|850905|851267|858439|887729|887730|887731|887732|887733|887734|920186|922991|922992|922993|922994|922995|922996|922997|922998|922999|923000|923001|923002|923003|923004|923005|923006|923007|923008|923009|923010|923011|923012|923013|923014|923015|923016|923017|931696|931697|931698|931699|931700|931701|931702|931703|931704|931705|931706|931707|931708|931709|931710|931711|931712|931713|931714|931715|931716|931717|931718|931719|931720|931721|931722|931723|939927|939928|940735|943268|943269|943270|943271|943272|943273|943274|943275|943276|943277|943278|943279|943280|943281|943282|943283|943284|943285|943286|943287|943288|953304|953305|953306|953307|953308|953309|953310|953311|953312|953313|953314|959676|964212|965934|966153|980318", + "text": "Hypocalcemia, autosomal dominant 1" + }, + { + "baseId": "23352|23353|23355|23356|23357|23358|23368|23380|23384|23388|23390|44440|44451|190256|193423|195231|195232|239060|239061|239063|239064|239066|239067|239068|239071|250863|269518|288297|288298|288300|288305|288307|288311|288319|288320|289063|289064|289066|289101|289102|292030|292031|292035|292036|292042|292046|292048|292049|292050|292139|292147|292154|292170|292172|292174|292175|292176|292177|353611|393209|393641|425518|452021|519009|519035|621905|630758|747922|827396|887729|887730|887731|887732|887733|887734", + "text": "Neonatal severe hyperparathyroidism" + }, + { + "baseId": "23382|23383|23385|75244", + "text": "Hypocalcemia, autosomal dominant 1, with bartter syndrome" + }, + { + "baseId": "23388", + "text": "Serum calcium level" + }, + { + "baseId": "23388|28796|44440|44449|44458|190256|193423|195231|195232|239060|239061|239063|239064|239066|239067|239068|239071|250863|254060|254061|269518|288297|288298|288300|288305|288307|288311|288319|288320|289063|289064|289066|289101|289102|292030|292031|292035|292036|292042|292046|292048|292049|292050|292139|292147|292154|292170|292172|292174|292175|292176|292177|298696|298697|298698|298705|298706|298713|298715|298719|298720|298723|301135|301146|301148|301159|301160|301164|301172|301181|301198|305548|305552|305554|305556|305663|305666|305667|305673|305674|305678|305685|313368|313370|325603|325604|325608|326630|326641|353611|353741|393209|393641|425518|426716|519009|519035|630758|721633|721634|721635|735325|735326|747922|827396|867597|867598|867599|867600|887729|887730|887731|887732|887733|887734|895179|895180|895181|895182|895183|895184|895185|895186|895187|895188|895189|895190|895191|895192|896175|896176", + "text": "Familial isolated hypoparathyroidism" + }, + { + "baseId": "23398|452021", + "text": "Epilepsy, idiopathic generalized 8" + }, + { + "baseId": "23399", + "text": "Leprosy, protection against" + }, + { + "baseId": "23400", + "text": "Leprosy 5" + }, + { + "baseId": "23401|45838|316422|316423|316425|316427|316433|316435|323909|323924|329953|329961|331327|869558|869559|869560|869561", + "text": "Retinal cone dystrophy 3A" + }, + { + "baseId": "23402|23403|23404|364176|364199|365310|365319|365321|365325|365329|365338|365462|365468|365488|365491|365495|365503|365506|365508|365514|365518|365579|365593|365612|365618|365632|365643|365653|365654|365667|365671|380420|404751|414815|414816|425205|425206|425391|438913|439119|439284|448462|448474|448476|448477|448478|448479|448480|448488|448489|448492|448494|448495|448499|448500|448508|448510|448511|448513|448516|448517|448518|448530|448598|448599|448601|448603|448606|448609|448611|448612|448613|448615|448617|448618|448619|448620|448622|448623|448624|448626|448627|448628|448629|448631|448632|448633|448639|448640|448641|448642|448645|448646|448670|448674|448680|448684|448697|448698|448700|448701|448709|448715|448719|448720|448723|448724|448727|448733|448737|448742|448749|498826|508772|508773|516254|516260|516263|516265|516266|516270|516271|516272|516273|516274|516275|516276|516277|516278|516279|516283|516285|516286|516289|516290|516291|516293|516295|516297|516299|516301|516304|516307|516365|516366|516375|516377|516379|516381|516385|557467|557472|557474|557476|557480|557482|557484|557527|557529|557531|557533|557535|557537|558681|558683|558685|558687|558689|558691|558693|558695|559174|559176|559178|559180|628369|628370|628371|628372|628373|628374|628375|628376|628377|628378|628379|628380|628381|628382|628383|628384|628385|628386|628387|628388|628389|628390|628391|628392|628393|628394|628395|628396|628397|628398|628399|628400|628401|628402|628403|628404|690699|690700|696950|696951|696953|696955|696956|696957|696958|696960|707648|707649|707650|707651|707653|719183|719184|732701|732702|732706|746723|746725|762144|762146|762147|777165|780804|780806|780807|787033|787077|794755|819026|819027|824630|824631|824632|824633|824634|824635|824636|824637|824638|824639|824640|824641|824642|824643|824644|824645|824646|824647|824648|824649|824650|824651|824652|824653|824654|824655|824656|824657|824658|824659|824660|824661|824662|824663|824664|824665|824666|824667|824668|824669|850789|850830|918667|922211|922212|922213|922214|922215|922216|922217|922218|922219|922220|922221|922222|922223|930749|930750|930751|930752|930753|930754|930755|930756|930757|930758|930759|930760|930761|930762|930763|930764|930765|930766|939838|942179|942180|942181|942182|942183|942184|942185|942186|942187|942188|942189|942190|942191|942192|942193|942194|952604|952605|952606|952607|972510", + "text": "Encephalopathy, acute, infection-induced, 3, suceptibility to" + }, + { + "baseId": "23408|23409|48508|247078|408628|576151|576152|613396|626314|791225|791226|791227|903590|980345|980346", + "text": "Warsaw breakage syndrome" + }, + { + "baseId": "23410|23410|23411|23412|23412|23413|47804|253214|253214|253218|253218|270642|306085|306088|306098|306101|306102|306104|306111|306112|306118|306119|306119|310130|310138|310146|310149|310151|310157|310158|310158|310160|310160|310171|310176|310176|315453|315463|315466|315467|315488|315502|315503|315504|315638|315639|315644|315645|315656|315660|315664|315665|315666|315668|458107|692527|692527|692528|692528|700686|835158|835159|835160|835161|835162|835163|835164|835165|835166|900578|900579|900580|900581|900582|900583|900584|900585|900586|900587|900588|900589|900590|900591|900592|900593|900594|900595|900596|900597|900598|900599|900600|900601|900602|900603|900604|900605|900606|900607|900608|900609|900610|900611|900611|900612|900613|903278|934450|934451|946230|946231|946232|946233|946234|946235|955528|955529|955530", + "text": "Klippel-Feil syndrome 1, autosomal dominant" + }, + { + "baseId": "23410|23414|23415|253214|253218|270642|306119|310158|310160|310176|458107|692527|692528|700686|835158|835159|835160|835161|835162|835163|835164|835165|835166|900611|934450|934451|946230|946231|946232|946233|946234|946235|955528|955529|955530", + "text": "Microphthalmia, isolated 4" + }, + { + "baseId": "23410|39115|75114|75115|253214|253218|270642|306119|310158|310160|310176|458107|692527|692528|700686|835158|835159|835160|835161|835162|835163|835164|835165|835166|900611|934450|934451|946230|946231|946232|946233|946234|946235|955528|955529|955530", + "text": "Leber congenital amaurosis 17" + }, + { + "baseId": "23410|23412|306108|310135|310152|310156|315489|315496|315648|315649|315657|353847|578582|622481", + "text": "Klippel Feil syndrome" + }, + { + "baseId": "23416|23429|190284|257355|257356|257358|268853|335334|335335|335336|345188|345191|345196|345197|349911|349916|349919|349924|349929|350933|350934|350935|350936|350937|350938|586217|805112|886045|886046|886047|886048|886049|886050|886051|886052|886053|886054|886055|886056|886057|887456", + "text": "Acromesomelic dysplasia, Hunter-Thompson type" + }, + { + "baseId": "23417|23421|23423|23424|23430|260804", + "text": "Brachydactyly type C" + }, + { + "baseId": "23418|23419|23429|190284|257355|257356|257358|268853|335334|335335|335336|345188|345191|345196|345197|349911|349916|349919|349924|349929|350933|350934|350935|350936|350937|350938|586217|612333|816493|886045|886046|886047|886048|886049|886050|886051|886052|886053|886054|886055|886056|886057|887456", + "text": "Grebe syndrome" + }, + { + "baseId": "23420|23426|23429|23432|23433|190284|257355|257356|257358|268853|335334|335335|335336|345188|345191|345196|345197|349911|349916|349919|349924|349927|349929|350933|350934|350935|350936|350937|350938|424259|439689|586217|886045|886046|886047|886048|886049|886050|886051|886052|886053|886054|886055|886056|886057|887456", + "text": "Fibular hypoplasia and complex brachydactyly" + }, + { + "baseId": "23425|23428|23431", + "text": "Symphalangism, proximal, 1B" + }, + { + "baseId": "23425|23427|23429|190284|257355|257356|257358|268853|335334|335335|335336|345188|345191|345196|345197|349911|349916|349919|349924|349929|350933|350934|350935|350936|350937|350938|586217|886045|886046|886047|886048|886049|886050|886051|886052|886053|886054|886055|886056|886057|887456", + "text": "Multiple synostoses syndrome 2" + }, + { + "baseId": "23429", + "text": "Osteoarthritis of hip" + }, + { + "baseId": "23429|39217|190284|215305|257355|257356|257358|264298|268853|272112|284777|294668|294669|294673|294674|294679|294682|294683|294691|294695|294696|294702|294703|294708|294710|294714|294730|294732|294733|294735|296213|296214|296223|296224|296231|296234|296235|296236|296245|296260|296262|296265|296266|296267|296273|296274|296278|296290|296291|299980|299981|299982|299987|300002|300003|300004|300006|300008|300011|300012|300020|300021|300022|300023|300024|300025|300026|300027|300028|300030|300035|300037|300039|300040|300043|300045|300046|300047|300049|300052|300055|300074|300075|300092|313508|319315|335334|335335|335336|345188|345191|345196|345197|349911|349916|349919|349924|349927|349929|350933|350934|350935|350936|350937|350938|353559|359571|360870|360897|520289|550229|586217|625969|691640|886045|886046|886047|886048|886049|886050|886051|886052|886053|886054|886055|886056|886057|887456|892537|892538|892539|892540|892541|892542|892543|892544|892545|892546|892547|892548|892549|892550|892551|892552|892553|892554|892555|892556|892557|892558|892559|892560|892561|892562|892563|892564|892565|892566|892567|892568|892569|892570|892571|892572|892573|892574|892575|892576|892577|892578|892579|896008|896009", + "text": "Brachydactyly" + }, + { + "baseId": "23434|23435|23436|23437|23438|23439|70595|70596|70597|70598|70599|70600|134306|140740|171260|171261|171262|171263|192177|203827|336905|336910|346610|346615|350776|350777|350782|350783|350786|351823|351826|351829|377303|425232|507584|573834|886890|886891|886892|886893|886894|886895|886896", + "text": "Unverricht-Lundborg syndrome" + }, + { + "baseId": "23434", + "text": "Epilepsy, progressive myoclonic 1A (Unverricht and Lundborg)" + }, + { + "baseId": "23434|263323|409653|801158|801161|921260", + "text": "Dyskinesia" + }, + { + "baseId": "23434|169841|214799|214800|214801|214802|384443|409653|535682|590047|590048|590085|801161|904239|904355", + "text": "Chorea" + }, + { + "baseId": "23434", + "text": "Cerebral dysmyelination" + }, + { + "baseId": "23434|217214|217215|217216|263352|263361|480624|481174|481175|623724|965446|971487", + "text": "Encephalopathy" + }, + { + "baseId": "23435|75270|79480|79508|94304|99578|101111|134635|135473|135564|135573|135707|140512|168758|178089|191900|192525|192753|194022|195130|196078|201357|201786|201798|201883|202050|202080|202085|202093|202151|202160|207655|243706|243712|259332|259344|259367|259368|259370|265480|265506|313525|313526|363657|375648|380289|401964|402113|404385|408656|413413|426647|426648|426649|426650|426651|426652|426653|426654|426655|426656|426657|426658|426659|426660|426661|426662|426663|426664|426665|426666|426667|426668|426669|426670|426671|426672|426673|426674|426675|426676|426677|426678|426679|426680|426681|426682|426683|426684|426685|426686|426687|426688|426689|426690|426691|426692|426693|426694|426695|426696|426697|426698|426699|426700|426701|426702|426703|426704|426705|426706|551739", + "text": "Rolandic epilepsy" + }, + { + "baseId": "23440|23440|23441|23441|23443|23443|23444|192115|193289|250804|250805|250805|250807|250807|250808|250808|250809|250809|250810|250810|250811|250811|250813|259259|266844|269227|269227|273688|273688|287260|287261|287266|287266|287267|287270|287277|287278|287278|287281|287282|287953|287954|287955|287956|287971|287985|287985|287988|287988|288004|288004|288005|288005|288008|288008|288009|288010|290566|290566|290567|290567|290599|290599|290601|290609|290609|290613|290614|290614|290630|290649|290649|290854|290854|290855|290863|290863|290865|290865|290868|290887|290888|290889|290892|290892|290909|366791|366791|367942|406038|413540|440732|440733|440734|440735|440736|443314|443314|451441|451443|451446|451449|451452|451459|451461|451669|451672|451674|451674|451681|451681|451695|451804|451804|451808|451810|451812|451818|451820|451822|451879|451880|451884|451886|451888|451888|451898|451902|486244|518600|518601|518602|518602|518603|518604|518607|518609|518611|518614|518617|518620|518624|518625|518626|518627|518629|518631|518632|518633|518639|518669|518672|518678|518684|518691|518719|518720|518720|518775|518775|518777|518779|518786|518801|518803|518809|518811|518816|558287|558289|558291|558293|558295|558297|558299|558662|558664|558666|558668|558670|558672|558674|558676|558678|560968|560970|560972|560972|560977|562030|562039|562041|562042|562043|562055|562060|562063|562064|562065|576700|576701|576702|576702|630524|630525|630526|630527|630528|630528|630529|630530|630531|630532|630533|630534|630535|630536|630537|630538|630539|630540|630541|630542|630543|630544|630545|630546|630547|630548|630549|630550|630551|630552|630553|630554|630555|630556|630557|630558|630559|630560|630561|630562|630563|630564|630565|650953|651009|651012|651092|651093|691215|691217|691219|691219|691220|691221|691223|691223|695160|695161|695162|695163|695165|697663|697665|697666|697666|697668|719971|733575|733575|747776|747778|747781|747782|763436|774786|781470|781473|787338|795285|827029|827030|827031|827032|827033|827034|827035|827036|827037|827038|827039|827040|827041|827042|827043|827044|827045|827046|827047|827048|827049|827050|827051|827052|850887|851212|859197|861339|885461|885462|885463|885464|885465|885466|885467|885468|885469|885470|885471|885471|885472|885473|887399|887400|905847|922921|922922|922923|922924|922925|922926|922927|922928|922929|922930|922931|931586|931587|931588|931589|931590|931591|931592|931593|931594|931595|931596|931597|939914|940724|943127|943128|943129|943130|943131|943132|943133|943134|953228|953229|953230|953231|953232|953233|953234|953235", + "text": "Distal hereditary motor neuronopathy type 7B" + }, + { + "baseId": "23440|23441|23441|23443|23443|23444|29791|29792|29793|29794|29795|29796|29797|29798|29799|29800|29801|29802|29803|29804|29805|29807|29808|29809|29810|29811|29812|29813|29814|29815|29816|29817|29818|29819|29820|29821|29823|29824|29825|77626|77630|77635|77637|77638|77640|192115|193289|194306|250804|250805|250807|250808|250809|250810|250811|257449|259259|266844|269227|273688|287266|287278|287985|287988|288004|288005|288008|290566|290567|290599|290609|290614|290649|290854|290863|290865|290892|336570|336571|346279|346282|350534|350535|350537|351578|351579|351580|351583|366791|367942|406038|413540|433935|440732|440733|440734|440735|440736|443314|451441|451443|451446|451449|451452|451459|451461|451669|451672|451674|451681|451695|451804|451808|451810|451812|451818|451820|451822|451879|451880|451884|451886|451888|451898|451902|471562|486244|507475|512884|512965|512966|512967|518600|518601|518602|518603|518604|518607|518609|518611|518614|518617|518620|518624|518625|518626|518627|518629|518631|518632|518633|518639|518669|518672|518678|518684|518691|518719|518720|518775|518777|518779|518786|518801|518803|518809|518811|518816|533771|534335|540470|558287|558289|558291|558293|558295|558297|558299|558662|558664|558666|558668|558670|558672|558674|558676|558678|560968|560970|560972|560977|562030|562039|562041|562042|562043|562055|562060|562063|562064|562065|571472|573020|573721|575146|576700|576701|576702|577887|630524|630525|630526|630527|630528|630529|630530|630531|630532|630533|630534|630535|630536|630537|630538|630539|630540|630541|630542|630543|630544|630545|630546|630547|630548|630549|630550|630551|630552|630553|630554|630555|630556|630557|630558|630559|630560|630561|630562|630563|630564|630565|648885|648886|648887|650953|651009|651012|651092|651093|679942|691215|691217|691219|691220|691221|691223|694620|695160|695161|695162|695163|695165|695856|697663|697665|697666|697668|719971|728852|733575|747776|747778|747781|747782|763436|774786|781470|781473|787338|790296|795285|798017|798767|827029|827030|827031|827032|827033|827034|827035|827036|827037|827038|827039|827040|827041|827042|827043|827044|827045|827046|827047|827048|827049|827050|827051|827052|848662|848663|848664|850887|851212|859197|861339|861427|861428|861429|861430|861431|861432|861433|861434|861435|861436|861437|861438|885471|886669|886670|886671|886672|886673|886674|886675|886676|886677|886678|918783|922921|922922|922923|922924|922925|922926|922927|922928|922929|922930|922931|929280|931586|931587|931588|931589|931590|931591|931592|931593|931594|931595|931596|931597|939068|939914|940724|943127|943128|943129|943130|943131|943132|943133|943134|953228|953229|953230|953231|953232|953233|953234|953235|961894|964552|977296", + "text": "Amyotrophic lateral sclerosis type 1" + }, + { + "baseId": "23440|23441|23441|23443|23443|23444|23445|23446|34242|34243|34244|192115|193289|250804|250805|250805|250807|250807|250808|250808|250809|250809|250810|250810|250811|250811|250813|259257|259258|259259|259259|259260|266844|269227|269227|273688|273688|287260|287261|287266|287266|287267|287270|287277|287278|287278|287281|287282|287953|287954|287955|287956|287971|287985|287985|287988|287988|288004|288004|288005|288005|288008|288008|288009|288010|290566|290566|290567|290567|290599|290599|290601|290609|290609|290613|290614|290614|290630|290633|290649|290649|290854|290854|290855|290863|290863|290865|290865|290868|290887|290888|290889|290892|290892|290908|290909|366791|366791|367942|406038|413540|440732|440733|440734|440735|440736|443314|443314|451441|451443|451446|451449|451452|451459|451461|451669|451672|451674|451674|451681|451681|451695|451804|451804|451808|451810|451812|451818|451820|451822|451879|451880|451884|451886|451888|451888|451898|451902|486244|518600|518601|518602|518602|518603|518604|518607|518609|518611|518614|518617|518620|518624|518625|518626|518627|518629|518631|518632|518633|518639|518669|518672|518678|518684|518691|518719|518720|518720|518775|518775|518777|518779|518786|518801|518803|518809|518811|518816|558287|558289|558291|558293|558295|558297|558299|558662|558664|558666|558668|558670|558672|558674|558676|558678|560968|560970|560972|560972|560977|562030|562039|562041|562042|562043|562055|562060|562063|562064|562065|576700|576701|576702|576702|630524|630525|630526|630527|630528|630528|630529|630530|630531|630532|630533|630534|630535|630536|630537|630538|630539|630540|630541|630542|630543|630544|630545|630546|630547|630548|630549|630550|630551|630552|630553|630554|630555|630556|630557|630558|630559|630560|630561|630562|630563|630564|630565|650953|651009|651012|651092|651093|691215|691217|691219|691219|691220|691221|691223|691223|695160|695161|695162|695163|695165|697663|697665|697666|697666|697668|719971|733575|733575|747776|747778|747781|747782|763436|774786|781470|781473|787338|795285|827029|827030|827031|827032|827033|827034|827035|827036|827037|827038|827039|827040|827041|827042|827043|827044|827045|827046|827047|827048|827049|827050|827051|827052|850887|851212|859197|861339|885461|885462|885463|885464|885465|885466|885467|885468|885469|885470|885471|885471|885472|885473|887399|887400|922921|922922|922923|922924|922925|922926|922927|922928|922929|922930|922931|931586|931587|931588|931589|931590|931591|931592|931593|931594|931595|931596|931597|939914|940724|943127|943128|943129|943130|943131|943132|943133|943134|953228|953229|953230|953231|953232|953233|953234|953235|964207", + "text": "Perry syndrome" + }, + { + "baseId": "23441|23442|23443|23444|28745|28746|29074", + "text": "Amyotrophic lateral sclerosis, susceptibility to" + }, + { + "baseId": "23447", + "text": "Tolbutamide response" + }, + { + "baseId": "23447|23448", + "text": "Phenytoin response" + }, + { + "baseId": "23447", + "text": "Glipizide response" + }, + { + "baseId": "23447", + "text": "diclofenac response - Toxicity/ADR" + }, + { + "baseId": "23447", + "text": "celecoxib response - Dosage" + }, + { + "baseId": "23447", + "text": "Antiinflammatory agents, non-steroids response - Toxicity/ADR" + }, + { + "baseId": "23447", + "text": "celecoxib response - Toxicity/ADR" + }, + { + "baseId": "23447", + "text": "acenocoumarol response - Dosage, Toxicity/ADR" + }, + { + "baseId": "23447|227781", + "text": "acenocoumarol response - Toxicity/ADR" + }, + { + "baseId": "23447|227781", + "text": "warfarin response - Toxicity/ADR" + }, + { + "baseId": "23447|23448|227771|227774|269838|354244", + "text": "Flurbiprofen response" + }, + { + "baseId": "23447|23448|227771|227774|269838|354244", + "text": "Lesinurad response" + }, + { + "baseId": "23447|23448|227771|227774|269838|354244", + "text": "Piroxicam response" + }, + { + "baseId": "23448", + "text": "warfarin response - Efficacy, Toxicity/ADR" + }, + { + "baseId": "23450", + "text": "DRUG METABOLISM, ALTERED, CYP2C8-RELATED" + }, + { + "baseId": "23451|23453|23454|23455|23456|23457|23458|40287|48399|188820|190974|192890|193012|193262|193890|193891|195580|205166|215780|253969|253970|266564|266565|266566|266567|266568|267199|268053|270664|271583|271732|272331|273786|274222|274319|275099|311990|311992|311993|311997|311999|312003|312005|312010|312012|312013|312014|312018|312020|312021|317653|317656|317657|317662|317663|317664|317666|317671|317672|317673|317681|323615|323617|323626|323627|323628|323631|323635|323638|323639|324330|324331|324332|324337|324340|324341|324343|324350|324359|324360|324361|324366|324367|324373|488508|489466|490036|490813|491586|492189|492380|493488|583351|584281|585309|586885|587157|588153|589458|620373|620374|620827|679774|701512|701513|712547|724152|730721|737687|737688|752372|791021|866740|866741|866742|866743|866744|866745|866746|866747|866748|866749|866750|866751|866752|866753|866754|866755|866756|866757|866758|866759|866760|866761|866762|866763|866764|866765|868568|868569|868570|868571|868572|868573|868574|868575|868576|919311", + "text": "Dubin-Johnson syndrome" + }, + { + "baseId": "23459|23460|23461|23462|23463|23464|23465|267313|276389|276390|276391|276616|276619|276620|277128|277136|277137|277234|277235|277236|356980|356981|356982|356983|356984|356985|356986|356987|356988|356989|356990|356991|356992|356993|356994|356995|356996|540638|540640|540642|540644|540645|540646|540647|540651|540656|540657|540660|540661|540673|540674|540676|540678|612342|612343|626804|718194|729917|761188|789840|862253|862254|862255|862256|862257|862258|965348|970194|970195|977442", + "text": "Pyknodysostosis" + }, + { + "baseId": "23466|23467|23468|23470|23476|23484|39114|132606|213835|213837|589820|614028|614030|614032|965414", + "text": "Charcot-Marie-Tooth disease, type IA" + }, + { + "baseId": "23466|23473|29225|29233|53814|135065|141945|213835|238157|244249|276934|276937|276938|276943|276944|277211|277215|277216|277906|277907|277912|277913|277914|278013|278014|278015|278016|278027|353066|360806|361005|515330|625074|862595|862596|862597|862598|862599|862600|862601|862602|862603|862604|918578|918579", + "text": "Roussy-L\u00e9vy syndrome" + }, + { + "baseId": "23467|23470|23472|23473|23475|23476|23478|23483|29205|29206|29208|29212|29213|29214|29215|29216|29219|29220|29222|29223|29224|29225|29226|29227|29230|29233|29239|31789|31791|31792|38402|49430|49436|49439|49442|49443|49444|49446|53814|77593|135065|141945|142213|185951|185952|186243|186244|191366|192233|192234|204407|204408|204409|212075|212076|213241|213453|213517|213794|213795|213835|213837|214923|214924|221083|221981|221982|222558|222559|231450|237458|238156|238157|242575|242576|244249|244253|244254|244557|244559|244560|245013|245139|253796|270003|276943|277216|277906|278016|278027|304957|304958|304973|304974|304975|304979|304980|304991|304992|305003|305004|305005|308674|308688|310595|313936|313937|315762|315780|315781|321847|321857|324035|324057|324065|324082|327314|327315|330287|333669|333690|337130|337131|337134|337137|337141|337142|337143|337144|340454|341835|343368|343369|343372|343373|343376|343377|343380|344947|344960|344962|344963|344969|353066|359218|371720|375769|375772|375773|375775|378084|378091|390835|390836|390840|390842|390844|390849|390850|390852|390858|390859|390862|397323|397504|397512|397736|397737|401543|402264|404969|407875|407876|421187|421794|433525|437825|440400|440401|440403|440404|440405|440408|441377|441940|442659|444624|447245|447248|447257|447324|447367|447368|447420|447429|447431|447434|447442|459945|459960|460099|460366|460790|460793|466342|467061|467108|467286|467288|491084|503371|515225|515228|515230|515232|515234|515239|515240|515241|515242|515243|515246|515252|515253|515259|515261|515263|515330|515335|515337|520902|525199|525200|525382|525491|525673|525677|525680|525681|527026|530579|530589|530625|530750|530827|530868|531082|531096|531099|531103|540438|556660|556662|556664|556666|556719|556721|556723|556725|557009|557010|557012|557014|558196|558198|558200|558202|562971|563802|564625|564627|566353|566357|566367|569691|569693|569697|570742|570764|570773|570776|570790|570862|574244|574305|574306|574308|574310|577154|588854|613532|619958|621911|621912|621913|621914|621915|625018|625026|625050|625053|625076|625083|625084|625085|625202|625368|625377|625393|625402|627021|627022|627023|627024|627025|627026|627027|627028|638985|638986|638987|638988|638989|638990|638991|638992|638993|645317|645318|645319|645320|645321|648104|650641|650671|650673|652616|652786|652789|653330|682957|682962|682969|682986|682988|682989|682991|683000|683011|683014|683016|683017|683021|683040|683043|683050|683051|683053|683068|683070|683072|683075|683098|683099|683103|683105|683107|683108|683111|683114|684183|684186|692868|694045|694046|695012|745799|799140|800386|815847|818849|818850|820981|820982|822931|822932|822933|822934|822935|822936|822937|822938|822939|822940|822941|822942|822943|822944|836991|836992|836993|836994|836995|836996|836997|836998|836999|837000|837001|837002|837003|844718|844719|844720|851157|876804|876805|876806|876807|876808|876809|876810|876811|876812|876813|876814|876815|876816|876817|876818|876819|876820|905111|905277|921717|921718|921719|921720|921721|925841|925842|925843|925844|925845|925846|928065|930122|930123|935081|935082|935083|935084|935085|935086|937726|937727|939778|939779|941546|941547|941548|946954|946955|946956|946957|946958|946959|946960|949706|949707|952125|956114|956115|956116|957987|957988|960410", + "text": "Charcot-Marie-Tooth disease, type I" + }, + { + "baseId": "23469|23470|23474|23476|23482|23484|23485|77741|249644|327314|327315|337130|337131|337134|337137|337141|337142|337143|337144|343368|343369|343372|343373|343376|343377|343380|344947|344960|344962|344963|344969|378084|401543|613851|613982|614029|614031|614033|625366|625370|625371|791676|876804|876805|876806|876807|876808|876809|876810|876811|876812|876813|876814|876815|876816|876817|876818|876819|876820|906321", + "text": "Hereditary liability to pressure palsies" + }, + { + "baseId": "23469", + "text": "Polyneuropathy, inflammatory demyelinating" + }, + { + "baseId": "23470", + "text": "Charcot-Marie-Tooth disease, type 1a, autosomal recessive" + }, + { + "baseId": "23471|23472|23473|23477|23478|29208|29209", + "text": "Dejerine-Sottas syndrome, autosomal dominant" + }, + { + "baseId": "23475|23479|23480|23483|39114|204478|426772", + "text": "Charcot-Marie-Tooth disease and deafness" + }, + { + "baseId": "23476|29067|29068|29069|29072|49659|49660|49660|77568|77570|77573|77574|77576|77578|77583|77585|77586|77589|77591|77592|77593|77595|165492|165493|190114|212633|221757|221757|221758|221759|231697|231697|240337|244521|271257|313846|354198|359731|369456|369891|371764|371768|371773|396414|396416|396498|396501|396504|396510|396514|396771|396772|396778|438381|441226|441227|441228|457720|458304|458307|458312|458315|458357|458365|458664|501992|523409|523411|523414|523419|523725|523974|523976|523978|523981|523983|523988|523991|562265|562270|562272|562273|562276|562795|564967|564969|564971|564976|567732|567738|567747|637022|637023|637024|637025|637026|637027|637028|637029|637030|637031|637032|637033|637034|637035|637036|637037|637038|637039|637040|637041|651712|651836|683998|766741|783078|834550|834551|834552|834553|834554|834555|834556|834557|834558|834559|834560|834561|834562|834563|834564|834565|834566|851682|899369|925144|925145|925146|934233|934234|934235|946000|946001|946002|946003|946004|946005|946006|955385|955386|964301", + "text": "Charcot-Marie-Tooth disease type 2E" + }, + { + "baseId": "23481", + "text": "Charcot-Marie-Tooth disease, type 1a, with focally folded myelin sheaths" + }, + { + "baseId": "23483", + "text": "PMP22-Related Disorders" + }, + { + "baseId": "23486|23487|39113|249980|267189|270847|272086|273530|359074|365343|414803|418809|418809|418810|448226|489784|492837|609191|628136|628137|628138|628138|628139|628140|628141|628142|654212|690635|690636|690637|696788|746547|780725|824218|824219|824220|824221|824222|824223|824224|824225|824226|824227|824228|824229|918642|922113|922114|930589|930590|930591|930592|930593|930594|930595|942025|942026|942027|942028|952463|971542", + "text": "Congenital primary aphakia" + }, + { + "baseId": "23490|23491|23492|23495|23496|23498|39112|181384|456064|486790|962066|962069|980581", + "text": "Anterior segment dysgenesis 3" + }, + { + "baseId": "23493|23494|23497|23499|23500|39112|106553|177717|177719|190372|259842|270898|362195|362196|362197|362198|362199|362200|362201|362202|362203|362204|362205|362206|362207|362208|362209|362210|415036|424244|455426|455532|455761|456064|456064|456254|456255|486789|521484|521490|521491|521792|521798|521801|521807|550782|560652|563468|563473|582906|634761|634762|634763|654128|691969|691970|721868|765582|831733|831734|831735|831736|831737|831738|831739|831740|831741|904270|919016|919017|933242|933243|980581", + "text": "Axenfeld-Rieger syndrome type 3" + }, + { + "baseId": "23501|23502|23503|23504|230673|326503|326532|336303|336309|336327|336349|336352|342536|342543|342561|344160|344180|361003|551792|677038|677058|679795|740408|788963|788964|788965|788966|788967|788968|788969|788970|788971|788972|788973|788974|788975|788976|801561|805106|857705|857706|857707|857708|857709|904753|904754|962047|963335|963336|963337|963338|965232|965233|965626", + "text": "Persistent fetal circulation syndrome" + }, + { + "baseId": "23505|39111|165487|165488|165489|192098|194890|213217|213220|213221|222532|222533|242494|244988|244990|244999|267234|272210|326182|326184|326192|326194|326195|326197|326198|335862|335871|335876|335878|335882|335885|335888|335889|335893|335895|335897|335900|342247|342248|342252|342254|342256|342262|343797|343802|343808|343812|343816|343818|343825|343833|343834|343836|343842|343847|343848|343849|375578|377737|377740|445605|466646|505726|530520|540466|570422|620560|656385|677307|688633|688639|693916|799083|875884|875885|875886|875887|875888|875889|875890|875891|875892|875893|875894|875895|875896", + "text": "Charcot-Marie-Tooth disease, type 2N" + }, + { + "baseId": "23506|205252|205702", + "text": "Lipodystrophy, congenital generalized, type 3" + }, + { + "baseId": "23507|23508|23509|23510|23511|23512|23513|191808|191919|213592|213592|214539|215001|253525|253526|253527|253532|264328|264531|267452|268539|268541|308235|308243|308244|308246|308247|308255|312609|312619|312628|312631|312632|312633|318524|318528|318529|318534|318546|319032|319044|319050|319056|444478|459539|459541|459547|524550|524557|524945|525101|525102|525108|563943|563947|565887|569010|584135|638217|638218|638219|638221|692665|861363|901964|901965|901966|901967|901968|901969|901970|901971|901972|901973|901974|901975|903395|903396|903397|903398|903399|903400|919228|964331", + "text": "Inclusion body myopathy with early-onset Paget disease with or without frontotemporal dementia 1" + }, + { + "baseId": "23507|23508|23512|23513|191808|191919|253525|253530|264531|267452|268539|271637|318534|319032|319044|459155|459541|460014|460015|492903|524547|524552|524559|525095|563957|585434|586972|588557|638220|692665|700987|723557|737120|759748|767391|779588|836083|836084|836085|836086|836087|851337|901972|925568|925569|934747|934748|934749|934750|946600|946601|946602|955811|955812", + "text": "Inclusion body myopathy with early-onset Paget disease and frontotemporal dementia" + }, + { + "baseId": "23507|23507|23508|23508|23512|23512|23513|39108|39109|191808|191808|191919|191919|213592|214539|215001|253525|253525|253526|253527|253530|253532|264328|264328|264531|267452|267452|268539|268539|268541|271637|308235|308243|308244|308246|308247|308255|312609|312619|312628|312631|312632|312633|318524|318528|318529|318534|318534|318546|319032|319032|319044|319044|319050|319056|384436|444478|459155|459539|459541|459541|459547|460014|460015|492903|524547|524550|524552|524557|524559|524945|525095|525101|525102|525108|563943|563947|563957|565887|569010|584135|585434|586972|588557|638217|638218|638219|638220|638221|692665|692665|700987|723557|737120|759748|767391|779588|836083|836084|836085|836086|836087|851337|861362|901964|901965|901966|901967|901968|901969|901970|901971|901972|901972|901973|901974|901975|903395|903396|903397|903398|903399|903400|925568|925569|934747|934748|934749|934750|946600|946601|946602|955811|955812", + "text": "Amyotrophic lateral sclerosis 14, with or without frontotemporal dementia" + }, + { + "baseId": "23515|142925|142927|186287|188710|188716|188722|188723|188726|188733|188734|188743|188744|189373|189376|189377|199810|213468|222853|243578|259046|259049|259050|259052|259054|259059|259063|335276|335279|335290|345097|345102|345105|345107|345111|345112|345116|349881|349882|349884|349885|350900|350901|350904|350907|350909|350911|350913|350918|376975|379690|424903|551796|609299|656631|800173|800174|886010|886011|886012|886013|886014|886015|886016|886017|886018|886019|886020|886021|886022|886023|887454", + "text": "Long QT syndrome 12" + }, + { + "baseId": "23516|23517|23518|23519|23521|23522|23524|23525|34307|34308|34309|34310|34311|106599|136651|181440|194949|244008|266785|274813|330513|339018|363908|547270|547276|547284|547290|547357|547359|547365|547849|547851|547867|642685|652325|714233|725798|820646|841724|841725|872544|903598|972198|972199|972200|972201|972202|979527|979528|979529|979530|979531", + "text": "Niemann-Pick disease, type C2" + }, + { + "baseId": "23526|23527|23528|23529|23536|23538|23542|23543|23544|23546|23549|23552|23559|79314|79317|79320|79324|79326|79327|79330|99466|134003|134004|134005|134009|193096|193096|208540|248801|256789|264732|376191|376243|376246|377390|410491|410492|422242|426285|430969|442048|442070|446057|446061|552215|577721|672109|919827|919828|919829|919830|919831|920400|920401|964508|980555|983696", + "text": "Familial hemiplegic migraine type 1" + }, + { + "baseId": "23527", + "text": "Migraine, sporadic hemiplegic, with progressive cerebellar ataxia" + }, + { + "baseId": "23527|23527|23530|23531|23534|23535|23537|23539|23540|23541|23543|23545|23546|23546|23547|23549|23549|23550|23551|23553|23554|23555|23556|23557|23558|79309|79310|79311|79311|79312|79313|79315|79316|79316|79317|79321|79322|79323|79323|79325|79325|79328|79329|79331|79331|79332|79333|79333|79334|91842|99465|99466|99466|99467|133993|133994|133996|133997|133998|133999|134001|134003|134003|134004|134004|134005|134005|134006|134007|134008|134009|177164|177532|185732|185733|185733|185734|191883|192090|192631|192632|192633|192734|192735|193096|193096|193096|194021|194189|194675|208539|208540|213651|213651|248801|256787|256788|256789|256789|260210|264734|266969|266972|267411|267413|267747|267751|268395|268604|269763|270514|270928|270971|271647|271779|271799|273020|273117|273653|274636|360387|360395|360398|360515|361043|361322|361323|361324|363833|364143|376191|376198|376199|376234|376238|376243|376243|376261|376272|376273|376274|376287|376288|376310|376311|376321|376326|377218|377233|377235|377235|377237|377242|377256|377257|377259|377266|377276|377284|377297|377306|377312|377369|377389|377390|377390|377403|377416|377421|377461|377469|377470|377475|377488|377501|377505|377507|377515|379318|379318|379328|379340|379361|379363|379381|379394|379395|379400|379406|379423|379430|379440|379453|379478|410478|410481|410482|410484|410485|410489|410490|410491|410491|410492|410499|410504|410512|410515|410516|410519|410520|410521|410527|410528|410530|410534|410540|413495|415626|415628|415630|415631|415633|422239|422242|422242|422243|426283|426285|426288|430128|430130|430133|442048|442051|442052|442054|442058|442059|442062|442063|442068|442070|442071|442076|442079|442080|442082|442083|442085|442086|442087|442088|442565|446042|446045|446046|446054|446055|446057|446057|446059|446061|468502|468507|468509|468511|468512|468515|468517|468520|468525|468529|468530|469406|469410|469414|469418|469427|469430|469435|469437|469439|469456|469463|469816|469827|469830|469833|469834|469846|469850|469857|469858|469861|469868|469874|469876|469896|470453|470470|470475|491610|491801|492026|492275|494058|506779|506786|507172|507176|507198|507524|507552|507580|532711|532721|532722|532728|532729|532730|532732|532734|532737|532743|532757|532767|532769|532773|532785|532786|532805|532808|532811|533145|533146|533150|533152|533157|533158|533167|533168|533172|533177|536091|536183|536183|536978|538484|551795|553275|553399|570517|570532|570535|570542|570543|570548|570549|570552|570554|570563|572233|572238|572239|572247|572248|572255|572256|572258|572260|572264|572265|572934|572936|572939|572944|572945|572946|572947|572949|572950|572951|572953|572954|572956|572960|572962|572964|574784|574880|574882|574884|574886|574887|574888|574889|574890|574891|574892|574893|574894|576271|577709|577712|577718|577725|577735|578564|580333|580341|580401|580440|580480|580489|580491|588767|590086|609152|613115|613615|621916|625824|647723|647724|647725|647726|647727|647728|647729|647730|647731|647732|647733|647734|647735|647736|647737|647738|647739|647740|647741|647742|647743|647744|647745|647746|647747|647748|647749|647750|647751|647752|647753|647754|647755|647756|647757|647758|647759|647760|647761|647762|647763|647764|647765|647766|647767|647768|647769|647770|647771|647772|647773|647774|652944|653011|653151|653154|653604|654868|670091|672109|679806|704766|704768|704769|704770|704771|704772|727919|727920|727921|741605|741606|756734|756736|756740|760688|760759|760809|760813|772443|772444|772446|772450|772454|772456|772464|772465|776559|776566|778499|786076|786079|786081|786082|788040|788260|791901|791902|791903|791904|791905|791905|791906|791907|793735|797733|797737|797743|797745|798741|821240|821241|821242|847326|847327|847328|847329|847330|847331|847332|847333|847334|847335|847336|847337|847338|847339|847340|847341|847342|847343|847344|847345|847346|847347|847348|847349|847350|847351|847352|847353|847354|847355|847356|847357|847358|847358|847359|847360|847361|847362|847363|847364|847365|847366|847367|847368|847369|847370|847371|847372|847373|847374|847375|847376|847377|847378|847379|847380|847381|847382|847383|847384|847385|847386|847387|851795|851797|852310|852313|852962|928861|928862|928863|928864|928865|928866|928867|928868|928869|928870|928871|928872|928873|928874|928875|928876|928877|928878|928879|928880|928881|928882|928883|928884|928885|928886|928887|938582|938583|938584|938585|938586|938587|938588|938589|938590|938591|938592|938593|938594|938595|938596|938597|938598|938599|938600|938601|940472|941226|950683|950684|950685|950686|950687|950688|950689|950690|950691|950692|950693|950694|950695|950696|950697|950698|950699|958546|958547|958548|958549|958550|958551|958552|958553|958554|958555|958556|960284|960285|960308|962871|962917|964511|967216|969614|969710", + "text": "Episodic ataxia type 2" + }, + { + "baseId": "23527|23546|23549|79311|79316|79323|79325|79331|79333|91842|99465|99466|99467|133993|133994|133996|133997|133998|133999|134001|134003|134004|134005|134006|134007|134008|177164|177532|185733|191883|192090|192090|192631|192632|192633|192734|192735|192735|193096|193096|194021|194189|194675|208539|208540|213651|248800|248801|248801|248802|256787|256788|256789|260210|264734|266969|266972|267411|267413|267747|267751|268395|268604|269763|270514|270928|270971|271647|271779|271799|273020|273117|273653|274636|360387|360395|360398|360515|361043|361322|361323|361324|363833|364143|376191|376198|376199|376234|376238|376243|376243|376243|376261|376272|376273|376273|376274|376287|376288|376310|376311|376321|376326|377218|377233|377235|377237|377242|377256|377257|377259|377266|377276|377284|377297|377306|377312|377369|377389|377390|377390|377403|377416|377421|377461|377469|377470|377475|377488|377501|377505|377507|377515|379318|379328|379361|379363|379381|379394|379395|379400|379406|379423|379430|379440|379453|379478|410478|410481|410482|410484|410485|410489|410490|410491|410491|410492|410499|410503|410504|410506|410515|410516|410519|410520|410521|410527|410527|410528|410530|410534|410540|413495|413495|415626|415628|415630|415631|415633|422239|422242|422242|422243|426283|426285|426288|430133|442048|442051|442052|442054|442058|442059|442062|442063|442068|442070|442071|442076|442078|442079|442080|442082|442083|442085|442086|442087|442088|446042|446045|446046|446054|446055|446057|446057|446059|446061|468502|468507|468509|468511|468512|468515|468517|468520|468525|468529|468530|469406|469410|469414|469418|469427|469430|469435|469437|469439|469456|469463|469816|469827|469830|469833|469834|469846|469850|469857|469858|469861|469868|469874|469876|469896|470453|470470|470475|481343|491610|491801|492026|492275|494058|506779|506786|507172|507176|507198|507524|507552|507580|511017|532711|532721|532722|532728|532729|532730|532732|532734|532737|532743|532757|532767|532769|532773|532785|532786|532805|532808|532811|533145|533146|533150|533152|533157|533158|533167|533168|533172|533177|536183|536978|551795|570517|570532|570535|570542|570543|570548|570549|570552|570554|570554|570563|572233|572238|572239|572247|572248|572255|572256|572258|572260|572264|572265|572934|572936|572939|572944|572945|572946|572947|572949|572950|572951|572953|572954|572956|572956|572960|572962|572964|574784|574880|574882|574884|574886|574887|574888|574889|574890|574891|574892|574893|574894|577709|577712|577718|577721|577725|577735|580333|580341|580401|580440|580480|580489|580491|588767|613115|621916|625825|647723|647724|647725|647726|647727|647728|647729|647730|647731|647732|647733|647734|647735|647736|647737|647738|647739|647740|647741|647742|647743|647744|647745|647746|647747|647748|647749|647750|647751|647752|647753|647754|647755|647756|647757|647758|647759|647760|647761|647762|647763|647764|647764|647765|647766|647767|647768|647769|647770|647771|647772|647773|647774|647774|652944|653011|653151|653154|653604|670091|704766|704768|704769|704770|704771|704772|727919|727920|727921|741605|741606|756734|756736|756740|760688|760759|760809|760813|772443|772444|772446|772450|772454|772456|772464|772465|776559|776566|778499|786076|786079|786081|786082|788040|788260|791905|793735|797733|797737|797745|802024|821240|821241|821242|847326|847327|847328|847329|847330|847331|847332|847333|847334|847335|847336|847337|847338|847339|847340|847341|847342|847343|847344|847345|847346|847347|847348|847349|847350|847351|847352|847353|847354|847355|847356|847357|847358|847359|847360|847361|847362|847363|847364|847365|847366|847367|847368|847369|847370|847371|847372|847373|847374|847375|847376|847377|847378|847379|847380|847381|847382|847383|847384|847385|847386|847387|851795|851797|852310|852313|852962|858580|903632|906207|928861|928862|928863|928864|928865|928866|928867|928868|928869|928870|928871|928872|928873|928874|928875|928876|928877|928878|928879|928880|928881|928882|928883|928884|928885|928886|928887|938582|938583|938584|938585|938586|938587|938588|938589|938590|938591|938592|938593|938594|938595|938596|938597|938598|938599|938600|938601|940472|941226|950683|950684|950685|950686|950687|950688|950689|950690|950691|950692|950693|950694|950695|950696|950697|950698|950699|958546|958547|958548|958549|958550|958551|958552|958553|958554|958555|958556|960284|960285|960308|963181|964161|964505|964507|964509|964510|964512|964887|971115|971116|971117|971118|983567", + "text": "Epileptic encephalopathy, early infantile, 42" + }, + { + "baseId": "23527|23535|23544|23546|23549|79323|193096|208540|213651|248801|376191|376243|376243|377390|410491|410492|422242|426285|442048|442070|446057|446061|553275|578564|609334|626271|672109|964506", + "text": "Spinocerebellar ataxia type 6" + }, + { + "baseId": "23544", + "text": "Migraine, sporadic hemiplegic" + }, + { + "baseId": "23548", + "text": "Episodic ataxia, type 2, and epilepsy" + }, + { + "baseId": "23560|23562|23563", + "text": "LEPTIN RECEPTOR POLYMORPHISM" + }, + { + "baseId": "23560|23562|23563|45129|206996|281113|281114|281120|281121|281124|281133|281139|281140|281144|281740|281741|281742|281750|281751|281752|281759|281762|281763|282919|282920|282921|282944|282947|282950|283218|283224|283238|283242|283245|288641|298389|298390|298394|298395|298401|298402|298403|298407|298408|298415|298417|298418|300698|300699|300709|300710|300711|300726|300728|300729|300730|300733|300735|300740|300741|300742|300750|300756|301785|301796|301797|301798|301799|301801|301802|301808|301809|301813|301816|301817|301818|301824|301825|304949|304950|304951|304954|304956|304970|304978|305090|305097|305100|305102|305104|305111|305113|305114|305127|305129|305130|305136|305138|305139|305140|305239|305243|305244|305251|305252|305253|305264|305265|309593|309599|309601|309602|309603|309604|309629|309630|309638|309639|309640|309645|309654|309657|309658|309780|309781|309784|309785|309786|309790", + "text": "Monogenic Non-Syndromic Obesity" + }, + { + "baseId": "23560|23561|23562|23563|45129|281113|281114|281120|281121|281124|281133|281139|281140|281144|281740|281741|281742|281750|281751|281752|281759|281762|281763|282919|282920|282921|282944|282947|282950|283218|283224|283238|283242|283245|380185|446902|480430|611351|654157|696844|707497|732564|732565|794002|864739|864740|864741|864742|864743|864744|864745|864746|864747|864748|864749|864750|864751|864752|864753|864754|864755|864756|864757|864758|864759|864760|864761|864762|864763|864764|864765|864766|864767|864768|864769|864770|865202|865203|865204|918645", + "text": "Leptin receptor deficiency" + }, + { + "baseId": "23564|23565|23566|23567|23568|23569|23570|335314|335316|335318|335324|335327|335328|335331|345149|345160|345161|345164|345165|345167|345171|345184|345187|349905|349907|349909|350928|350931|350932|378007|469355|488009|507307|620657|648641|648642|689197|786361|848318|852373|886033|886034|886035|886036|886037|886038|886039|886040|886041|886042|886043|886044|929165|929166|938947|951046|958813", + "text": "Gluthathione synthetase deficiency" + }, + { + "baseId": "23570", + "text": "Glutathione synthetase deficiency of erythrocytes, hemolytic anemia due to" + }, + { + "baseId": "23571|23572|23573|23574", + "text": "Prostate cancer/brain cancer susceptibility" + }, + { + "baseId": "23581", + "text": "Juvenile polyposis of stomach" + }, + { + "baseId": "23581|23582|23584|23586|23587|36139|36140|36152|36168|36169|36173|36174|36176|36178|36181|36191|36210|36211|36212|36213|36215|36216|36217|36219|36220|39106|39106|47345|50227|133407|136441|136493|139786|142921|142922|142923|151879|151967|151967|181036|181036|185427|185427|185428|185438|185443|236534|243064|243077|331636|331637|331639|331641|331643|331644|331645|331648|331650|331653|331656|331664|331698|331707|331711|341892|341894|341895|341897|341898|341903|341904|341916|341919|341922|341923|341928|341929|341937|341940|341949|341956|341957|341959|341961|347245|347248|347262|347263|347266|347267|347274|347278|347279|347284|347285|347288|347289|347292|347293|347295|347297|347313|347315|347320|347323|347325|347333|347337|347339|347340|348573|348574|348576|348581|348598|348600|348602|348609|348610|348611|348621|348622|348626|348628|348632|348633|348642|348644|348645|348652|348669|348680|361883|377048|377096|379055|403342|410379|468069|468948|468989|479334|479365|485542|539082|588885|618917|879352|879353|879354|879355|879356|879357|879358|879359|879360|879361|879362|879363|879364|879365|879366|879367|879368|879369|879370|879371|879372|879373|879374|879375|879376|879377|879378|879379|879380|879381|879382|879383|879384|879385|879386|879387|879388|879389|879390|879391|879392|879393|879394|879395|879396|879397|879398|879399|879400|879401|879402|879403|879404|879405|879406|879407|879408|879409|879410|879411|879412|879413|879414|879415|880666|970632", + "text": "Juvenile polyposis/hereditary hemorrhagic telangiectasia syndrome" + }, + { + "baseId": "23582", + "text": "JP, JP/HHT, and HHT" + }, + { + "baseId": "23582|23584|27386|27388|27393|27394|27395|27398|27403|27404|27405|27407|27408|27409|27641|27642|27652|28691|28692|28694|28695|28698|32616|32618|32622|32625|36171|36173|40609|48304|54418|66133|80852|133271|133272|133277|139098|150535|151476|151595|151955|152428|171613|171614|176503|181000|181001|181005|185345|185366|185367|185371|185375|185394|213392|213398|213402|213943|222738|232035|236459|236461|236463|236468|236469|236477|236479|236481|242978|242980|245074|260191|260192|360335|362773|362775|362844|362870|362871|362894|362895|362896|363110|363113|363114|363123|363179|363195|363264|363270|363271|363272|363280|363281|363282|363293|363294|363295|363296|363297|363302|363303|363304|363305|363310|363311|363337|363338|363352|363353|363354|363360|363398|363399|363400|363416|363417|363418|363419|363420|363438|363439|363440|363441|363442|363448|363449|363450|363451|363452|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363469|363470|363471|363472|363473|363474|363475|363476|363477|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363494|363495|363496|363497|363498|363499|363500|363501|363502|363503|363504|363505|363506|363507|363508|363509|363510|363511|363515|363518|363519|363520|363521|363522|363523|363524|363525|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363538|363539|363540|363541|363542|363543|363544|363545|363546|363547|363548|363549|363550|363551|363558|363559|363560|363561|363562|363563|363564|363565|363569|363570|363571", + "text": "Carcinoma of esophagus" + }, + { + "baseId": "23584|36164|36168|36171|36173|36177", + "text": "JP and JP/HHT" + }, + { + "baseId": "23588|23589|23590|23591|153864", + "text": "Ehlers-Danlos syndrome, classic-like, 1" + }, + { + "baseId": "23592|23593|23594|23595|23597|23598|23599|23600|23601|23602|23603|23604|23605|23606|23607|23608|23609|23610|23611|250580|250581|250582|251335|251336|251337|251338|251701|251704|251708|284888|284890|284891|284895|284896|284900|284901|284908|284917|284918|284919|284927|284928|284929|284931|284932|284933|284937|284944|284950|285544|285558|285564|285572|285574|285576|285577|285578|285579|285590|285593|285595|285596|285597|285598|285604|285612|287888|287890|287893|287895|287908|287920|287924|287926|287927|287928|287930|287931|287932|287933|287934|288133|288135|288136|288137|288146|288149|288151|288168|288169|288183|288184|288186|288198|288199|288200|288204|288206|292377|292379|292380|292400|292401|292411|292417|292419|292423|292425|292426|292433|292434|292435|292436|292442|292444|292445|292447|292448|292451|292452|292458|292460|292464|292465|292466|293818|293819|293821|293822|293851|293854|293855|293856|293857|293859|293863|293873|293874|293880|293882|293893|293895|293901|295398|295409|295423|295425|295426|295429|295430|295435|295438|295443|295445|295446|295447|295453|295456|295461|295469|295470|297127|297137|297138|297142|297149|297150|297153|297162|297166|297167|297168|297171|297175|297186|297192|297195|297198|297203|297204|297205|297206|297207|297208|297209|297211|297212|297214|297218|297226|297227|297228|297231|297234|297235|297236|297237|297240|297242|297243|297244|297246|297249|297250|297257|297259|297260|297262|297263|297265|297266|297270|297274|297275|297277|301006|301017|301019|301021|301034|301035|301046|301060|301067|301079|301082|301087|301091|301094|301097|301099|301103|301104|301107|301109|301124|301132|301133|301144|301145|301149|301158|301161|301170|301171|301173|301183|301185|301186|301187|301197|301211|301215|301216|301218|301226|301253|301264|336077|336082|336092|345793|345811|345812|350275|351296|353666|513049|550280|612144|612440|709185|720781|890188|890189|890190|890191|890192|890193|890194|890195|890196|890197|890198|890199|890200|890201|890202|890203|890204|890205|890206|890207|890208|890209|890210|890211|890212|890213|890214|890215|890216|890217|890218|890219|890220|890221|890222|890223|890224|890225|890226|890227|890228|890229|890230|891752|921209|977206", + "text": "Autosomal dominant pseudohypoaldosteronism type 1" + }, + { + "baseId": "23596", + "text": "Hypertension, early-onset, autosomal dominant, with exacerbation in pregnancy" + }, + { + "baseId": "23612|23613|23614|23615|195332|267197|272449|275013|294535|294536|294541|294545|294546|294548|294550|294551|294553|294557|296087|296090|296091|296092|296097|296101|296104|299760|299761|299765|299766|299770|299771|299780|299783|299784|299789|299853|299857|299863|299865|299866|299871|299873|491339|734757|892447|892448|892449|892450|892451|892452|892453|892454|892455|892456|892457|892458|892459|892460|892461|892462|892463|892464|892465|892466|892467|892468", + "text": "Autosomal recessive hypophosphatemic vitamin D refractory rickets" + }, + { + "baseId": "23616|23619|23621|23622|54297|54298|54299|54300|54301|54303|54305|54307|54311|54318|54320|54321|54322|54325|54326|54327|54330|54331|54333|174003|174004|174012|174013|174014|174017|174141|174147|174149|229508|237602|252537|252538|301048|301058|301062|301064|301072|301077|301081|301083|301088|301089|301092|301100|301102|301106|304036|304046|304047|304050|304053|304054|304065|304068|304086|304096|304100|304103|304104|304105|304111|304112|304113|304114|308739|308766|308771|308776|308797|308798|308799|308809|308810|308815|308816|308832|308833|308835|308837|308838|308839|308840|308841|308844|308845|308850|308853|308854|308860|308862|308864|308868|308870|308877|308879|308880|308897|308899|308900|308903|308907|384404|389225|535237|788806|802074|896856|896857|896859|896860|896861|896863|896865|896866|896867|896868|896876|896877|896878|896879|896880|896881|896882|896883|896884|896885|896886|896887|896888|896889|896890|896891|896892|896893|896894|896895|896896|896897|896898|896899|896900|896901|896902|896903|896904|896905|896906|896907|896908|896909|896910|896911|896912|896913|896914|896915|896916|896917|896918|896919|896920|896921|896922|896923|896924|896925|896926|896927|896928|896929|896930|896931|896932|896933|900270|900272|900273|905843|966150", + "text": "Deafness, autosomal dominant 22" + }, + { + "baseId": "23617|23618|23619|54297|54298|54299|54300|54301|54303|54305|54307|54311|54318|54320|54321|54322|54325|54326|54327|54330|54331|54333|174004|174012|174013|174017|174141|174147|174149|229508|252537|252538|301048|301058|301062|301064|301072|301077|301081|301083|301088|301089|301092|301100|301102|301106|304036|304046|304047|304050|304053|304054|304065|304068|304086|304096|304100|304103|304104|304105|304111|304112|304113|304114|308739|308766|308771|308776|308797|308798|308799|308809|308810|308815|308816|308832|308833|308835|308837|308838|308839|308840|308841|308844|308845|308850|308853|308854|308860|308862|308864|308868|308870|308877|308879|308880|308897|308899|308900|308903|308907|896856|896857|896859|896860|896861|896863|896865|896866|896867|896868|896876|896877|896878|896879|896880|896881|896882|896883|896884|896885|896886|896887|896888|896889|896890|896891|896892|896893|896894|896895|896896|896897|896898|896899|896900|896901|896902|896903|896904|896905|896906|896907|896908|896909|896910|896911|896912|896913|896914|896915|896916|896917|896918|896919|896920|896921|896922|896923|896924|896925|896926|896927|896928|896929|896930|896931|896932|896933|900270|900272|900273|919062", + "text": "Deafness, autosomal recessive 37" + }, + { + "baseId": "23620", + "text": "Sensorineural deafness with hypertrophic cardiomyopathy" + }, + { + "baseId": "23623|23624|23625|23626|23627|23628|23629|23630|23631|23632|23633|23634|23636|75381|75382|107257|205181|205781|227375|227376|227377|227378|255829|255830|255831|255833|255834|255835|255836|255837|255838|255839|255840|255841|255842|255843|255845|260484|263861|325847|325851|325852|325857|325858|325863|325865|325866|325868|325872|325877|325883|325884|325885|325892|325898|325899|325902|325911|325912|325913|325915|325919|335481|335482|335487|335490|335491|335494|335496|335498|335499|335501|335502|335503|335514|335515|335518|335520|335522|335532|335535|341925|341930|341933|341936|341943|341947|341951|341952|341955|341960|341966|341969|341972|341977|341981|341982|341986|341987|341988|341990|343451|343454|343455|343458|343461|343462|343464|343467|343468|343470|343477|343480|343481|343482|343483|343484|343485|343486|343487|343489|343492|343493|360256|375217|384423|390201|390646|404824|404825|430987|431547|431548|439088|441908|441909|441911|441912|441913|441915|441916|442544|480535|481463|490237|497693|497694|513133|513134|539066|553531|553632|577552|577557|608917|620550|620551|620552|620553|620554|620555|623340|623341|644767|644770|644771|644774|644775|652576|653041|703747|714981|714982|714983|714984|714985|726695|726696|726697|731074|731075|740265|740267|740268|740269|740270|744861|744964|744966|755260|755261|755265|755266|755267|770978|778315|780047|785313|785323|788039|788195|788202|791627|793637|793640|793642|802213|802214|818332|844026|844027|875531|875532|875533|875534|875535|875536|875537|875538|875539|875540|875541|875542|875543|875544|875545|875546|875547|875548|875549|875550|875551|875552|875553|875554|875555|875556|875557|875558|875559|875560|875561|875562|875563|875564|875565|875566|875567|875568|875569|875570|875571|875572|875573|875574|875575|875576|875577|875578|875579|875580|875581|875582|875583|876682|876683|876684|876685|962789|963375|964687|979805|979806|979807|980378|980379", + "text": "Familial hypokalemia-hypomagnesemia" + }, + { + "baseId": "23637|23638|23639|23640|226091|257151|818339", + "text": "Branchiootorenal syndrome 2" + }, + { + "baseId": "23647|23654|45263|45264|45266|45266|45269|45272|45275|45276|51669|51676|51694|51706|51716|51719|51732|51735|51736|51737|51742|51746|51747|51747|51755|51769|51777|51778|51788|51796|51797|51808|51815|51817|51822|51823|51826|51828|51833|51841|51852|51857|51870|51873|51875|51876|51879|51881|51889|51906|51910|51914|51928|51930|51931|51937|51938|51942|51945|51949|51950|51956|51959|51962|51963|51974|51977|51980|51983|75576|75578|142020|165560|171136|171136|171139|171141|171142|171143|171144|171145|174731|174756|174776|174778|175139|175143|175168|175197|179171|179223|179232|179351|179373|186345|314276|320888|326913|326929|326930|326931|326940|326949|327964|327976|327977|371466|372203|372209|374122|404802|415274|419284|461980|462012|504238|526245|609787|617882|623594|623595|676914|676915|676916|868092|868093|868094|868095|868096|868097|868098|868099|868100|868101|868102|868103|868104|868656|868657|868658|947492|964365|966806|970937", + "text": "Left ventricular noncompaction 10" + }, + { + "baseId": "23659", + "text": "Cardiomyopathy, familial hypertrophic, 4, susceptibility to" + }, + { + "baseId": "23661|23662|23663|23664", + "text": "Persistent mullerian duct syndrome, type I" + }, + { + "baseId": "23665|23666|23667|23668", + "text": "Persistent mullerian duct syndrome, type II" + }, + { + "baseId": "23669|416849", + "text": "Sleep-wake schedule disorder, delayed phase type" + }, + { + "baseId": "23670|23671|23672|23673|23674|23676|23676|23676|23678|23679|23680|23681|23682|23684|23687|23691|23692|23693|23694|23695|23696|23697|23698|23699|23701|23702|195212|195559|251969|251970|251971|265332|265333|265893|297646|297650|297653|297654|297655|297656|297663|297666|297670|297676|297677|299846|299851|299858|299860|299861|299864|299867|303980|303992|303993|303994|303996|304005|304007|304011|304012|304016|304017|304018|304027|304038|304048|304049|304376|304381|304382|304383|304390|304391|304397|304398|304400|304404|304407|384481|485736|485737|485738|585165|691861|721467|749517|798561|857407|894387|894388|894389|894390|894391|894392|894393|894394|894395|894396|894397|894398|894399|894400|894401|894402|894403|894404|894405|894406|894407|894408|894409|894410|894411|894412|894413|894414|894415|894416|894417|894418|896112|896113", + "text": "Laron-type isolated somatotropin defect" + }, + { + "baseId": "23675|23676|23676|23676|23677|23685|23691|195559|227287|248683|265893|290296|293367|293823|353646|918966|918967", + "text": "Short stature, idiopathic, autosomal" + }, + { + "baseId": "23683|23689", + "text": "Laron syndrome with elevated serum GH-binding protein" + }, + { + "baseId": "23686|23688|23690", + "text": "Laron syndrome with undetectable serum GH-binding protein" + }, + { + "baseId": "23700", + "text": "Increased responsiveness to growth hormone" + }, + { + "baseId": "23703|32152|32153|192304|791023", + "text": "Preterm premature rupture of membranes" + }, + { + "baseId": "23704|23712|23713|23714|23716|23717|23722|23722|23723|23725|23725|45093|168861|168862|168863|168866|168867|168870|168871|168875|168876|207828|207829|207832|207833|207834|207835|207839|207840|207840|244019|254062|269280|272064|313371|313372|313374|313375|313377|313379|313383|313385|313386|313387|319461|319463|319464|319466|319467|319469|319470|319474|319475|319487|319489|319490|319491|325610|325613|325623|325624|325625|325626|326645|326649|326650|326654|326655|326656|326657|326666|429186|429187|429189|545817|545820|545824|545826|545832|545841|546115|546116|546118|546118|546120|546120|546122|546127|546130|546134|546170|546173|546178|546187|546188|546193|546194|546201|546452|546454|546456|546458|546460|682320|783918|867601|867602|867603|867604|867605|867606|867607|867608|867609|867610|867611|867612|867613|976872", + "text": "Islet cell hyperplasia" + }, + { + "baseId": "23705|23706|23707|23708|23709|23710|23711|23715|23717|23718|23719|23722|23724|23725|24127|24141|24142|24143|24144|24146|24147|24148|24150|28426|28427|28428|31180|33927|33928|33929|33930|33966|33967|33969|33970|33972|33974|33975|33976|34017|34018|34019|34020|34021|34022|34045|34046|34047|34048|34049|34050|34051|34052|34053|34054|34055|34056|34057|39080|44267|44269|44273|44274|44278|44282|44288|44864|44866|44870|44872|44877|44886|44899|44906|44907|76489|76495|76496|79618|79621|79622|79623|79624|79625|134590|134593|135501|167529|167530|167532|167533|167534|167535|167536|167537|167539|167540|167543|167545|167546|167547|167550|167551|167553|167554|167555|168861|168863|168866|168867|168870|168870|168871|168875|168875|186812|186816|186819|190275|192808|207485|207828|207839|207840|207840|207850|207852|207853|207853|207854|207862|227344|252883|252884|254064|254068|254069|259865|269280|272064|303069|303070|303071|303072|303073|303074|306341|306342|306345|306346|306347|306348|310058|311169|311170|311172|311173|311302|311303|311306|311310|311312|313377|313386|313388|313389|313393|313399|313403|313405|313413|313414|313416|313419|313421|315653|315654|319492|319496|319498|319499|319504|319505|319511|319514|319516|319517|319521|319522|319523|319524|319528|321111|325626|325627|325629|325632|325633|325634|325635|325636|325642|325643|325644|325650|325651|326665|326666|326668|326673|326677|326678|326698|326700|326703|353177|380248|380249|424956|424957|424958|424959|424960|428730|428735|428737|428738|429186|429199|429201|429203|429208|429208|441126|441408|487507|545817|545820|545824|545826|545832|545841|545867|546115|546116|546118|546118|546120|546120|546122|546127|546130|546134|546170|546173|546178|546187|546188|546193|546194|546201|546326|546452|546454|546456|546458|546460|546501|576978|577180|614519|620396|692972|737885|752574|759683|768328|783918|783925|783933|867614|867615|867616|867617|867618|867619|867620|867621|867622|867623|867624|867625|867626|867627|867628|867629|867630|867631|867632|867633|867634|867635|868624|868625|868626|868627|868628|868629|898116|898117|898118|898119|898120|898121|898122|898123|898124|898125|898126|898127|898128|898129|898130|898131|898132|898133|898134|900365|900366|900367|900368|920296|961285|978877|978878|978879|978880|978881|978882|978883|978884|978885|978886|978887|978888|978889|978890|978891", + "text": "Permanent neonatal diabetes mellitus" + }, + { + "baseId": "23705|23715|23717|23720|23721|23722|23722|23725|45093|168861|168862|168863|168866|168867|168870|168871|168875|207828|207829|207832|207835|207839|207840|254062|269280|272064|313371|313372|313374|313375|313377|313379|313383|313385|313386|313387|319461|319463|319464|319466|319467|319469|319470|319474|319475|319487|319489|319490|319491|325610|325613|325623|325624|325625|325626|326645|326649|326650|326654|326655|326656|326657|326666|429186|545817|545820|545824|545826|545832|545841|546115|546116|546118|546120|546120|546122|546127|546130|546134|546170|546173|546178|546187|546188|546193|546194|546201|546452|546454|546456|546458|546460|783918|867601|867602|867603|867604|867605|867606|867607|867608|867609|867610|867611|867612|867613", + "text": "Transient neonatal diabetes mellitus 3" + }, + { + "baseId": "23705|23706|34056|168872|168873|168879", + "text": "Neonatal insulin-dependent diabetes mellitus" + }, + { + "baseId": "23705|23706|23707|23708|23709|23710|23711|23718|23719|23724|39091", + "text": "Permanent neonatal diabetes mellitus 2" + }, + { + "baseId": "23715|23717|23722|23725|45093|168861|168862|168863|168866|168867|168869|168871|207829|207835|207839|254062|313371|313372|313374|313375|313377|313379|313383|313385|313386|313387|319461|319463|319464|319466|319467|319469|319470|319474|319475|319487|319489|319490|319491|325610|325613|325623|325624|325625|325626|326645|326649|326650|326654|326655|326656|326657|326666|429186|472261|546118|546120|609051|783918|867601|867602|867603|867604|867605|867606|867607|867608|867609|867610|867611|867612|867613", + "text": "Maturity-onset diabetes of the young, type 13" + }, + { + "baseId": "23717", + "text": "Exercise stress response, impaired, association with" + }, + { + "baseId": "23717|167530|167546|167547|167553|167554|207839|313386|315653|315654|319521|325611|325626|326665|326666|353177", + "text": "Transient Neonatal Diabetes, Dominant" + }, + { + "baseId": "23717|167530|167546|167547|167553|167554|207839|291890|291906|293300|296582|313386|315653|315654|319521|325611|325626|326665|326666|353177", + "text": "Hyperinsulinism, Dominant/Recessive" + }, + { + "baseId": "23717|23898|28830|44907|44922|45013|45024|45028|45062|134685|134725|135320|135321|135322|135323|135324|167553|167554|207839|254105|254106|254108|260011|281440|281448|281466|281475|283468|283470|283487|283606|284160|284163|284164|284170|286078|286435|286436|301722|301723|301731|301737|301739|301740|301741|301753|301755|301757|301762|301763|301764|301774|301783|303948|303950|303951|303954|304936|304937|304938|304942|304943|306342|306348|307485|307487|307497|307498|307499|307637|309560|309561|309562|309563|309570|309571|309580|309581|309590|309591|309592|309685|309687|309705|309707|309738|309742|309746|309748|309758|309759|312503|312521|312557|312598|313386|313632|319828|325611|325626|325998|326005|326665|326666|326978|326979|326982|326983|329687|335448|335486|335509|335512|335513|335524|345258|345295|345298|349979|349993|350002|350003|350004|351012|351014|351015|351017|351019|351023|353805|425758|429380|444135|513905|613078|623485|623492|623543|790136|791984|800974|917106|961106|961107|961108|975843", + "text": "Maturity onset diabetes mellitus in young" + }, + { + "baseId": "23717", + "text": "glibenclamide response - Efficacy" + }, + { + "baseId": "23717", + "text": "gliclazide response - Efficacy" + }, + { + "baseId": "23717", + "text": "glimepiride response - Efficacy" + }, + { + "baseId": "23717", + "text": "glipizide response - Efficacy" + }, + { + "baseId": "23717", + "text": "gliquidone response - Efficacy" + }, + { + "baseId": "23726|337705|347271|347273|347275|351269|351271|351274|352326|352327|352328|352329|352330|352331|410924|417542|417543|470923|471814|571755|575223|620685|649231|786566|891024|891025|891026|891027|891028|891029|891030|891031|891032|891033|891816|891817", + "text": "Cataract, congenital nuclear, autosomal recessive 3" + }, + { + "baseId": "23730|211701|211704|414710|550030|653889|653917|919613", + "text": "Myopathy, mitochondrial progressive, with congenital cataract, hearing loss, and developmental delay" + }, + { + "baseId": "23731|23732|23733|23734|23735|23736|23738|23739|23743|187104|276880|276887|276890|277167|277169|277170|277173|277832|277833|277834|277835|277852|277854|277855|277862|277865|277866|277867|277892|277893|277895|277908|277910|277917|550200|612175|862578|862579|862580|862581|862582|862583|862584|862585|903502|964734", + "text": "Variegate porphyria" + }, + { + "baseId": "23737|23740|23741|23742|23743", + "text": "Variegate porphyria, homozygous" + }, + { + "baseId": "23744|319152|319157|319162|319163|319165|319175|319176|319187|319191|319192|319196|319197|319199|319200|319206|319207|319208|319211|327614|327626|327645|327652|327654|327658|327667|327668|327686|327701|327703|327705|327706|327707|327709|333889|333908|333914|333915|333955|333958|333963|333968|333977|333997|334003|334007|335581|335583|335588|335593|335609|335612|335615|335617|335618|438515|870860|870861|870862|870863|870864|870865|870866|870867|870868|870869|870870|870871|870872|870873|870874|870875|870876|870877|870878|870879|870880|870881|870882|870883|870884|870885|870886|870887|872319", + "text": "Multiple synostoses syndrome 3" + }, + { + "baseId": "23745|28354|28628|29976|38716", + "text": "Insulin resistance, susceptibility to" + }, + { + "baseId": "23746", + "text": "Insulin resistance, severe, digenic" + }, + { + "baseId": "23747", + "text": "Glycemia variation" + }, + { + "baseId": "23748|23749|23750|138069|138070|138072|138073|138075|138077|138079|138080|138081|138082|138083|138084|207415|207416|221630|223359|239903|239904|252337|252339|299918|299920|299921|299922|299926|299928|299933|302569|302571|302575|302588|306947|306958|306960|306962|306963|306982|306986|306987|307217|307223|307226|307227|395115|395252|395253|395255|395259|395263|395267|395457|395461|395715|395729|395735|428630|455563|455569|455571|455576|455709|455719|455725|455731|455737|456143|456146|456154|456386|456388|456396|456398|456401|496868|521628|521629|521930|521934|521936|521975|521977|521991|522303|522305|522307|560702|560704|560706|560808|563545|563547|634870|634871|634872|634873|634874|634875|634876|634877|651552|685194|686837|790621|831869|831870|831871|831872|831873|831874|831875|831876|831877|831878|831879|895853|895854|895855|895856|895857|895858|895859|895860|895861|895862|895863|895864|895865|896232|896233|896234|904102|917888|917889|917892|917893|917897|917898|917900|924344|924345|924346|924347|933306|933307|933308|944992|944993|944994|944995|944996|944997|944998|960581", + "text": "Fanconi anemia, complementation group E" + }, + { + "baseId": "23751|23752|23753|23754|23755|23756|23757|23758|23759|51200|98566|98567|98568|98569|190229|251489|266358|266485|266486|267097|267280|267694|268373|268725|268739|269058|269397|269417|269986|270198|272142|272512|272523|273339|298590|298630|357354|357355|357356|357357|357358|357359|357360|406439|443616|452824|453224|453592|453595|453954|453958|453960|453976|453980|453986|489686|490406|490617|493575|500997|514497|519667|519948|519960|520213|520214|520217|543118|543120|543124|543126|543413|543418|543419|543421|543422|543424|543426|543428|543430|543432|543502|543508|559701|562028|563343|563741|563760|563765|587456|588486|632236|632237|632238|632239|632240|632241|632242|651157|651176|698542|698543|734657|748960|781965|787255|790476|790477|799361|802152|819484|829201|829202|829203|829204|829205|829206|829207|850988|932363|932364|932365|978098", + "text": "Autosomal recessive limb-girdle muscular dystrophy type 2E" + }, + { + "baseId": "23760|23761|23762|23763|23764|23765|23766|79357|213977|213979|249384|276318|276319|276546|276547|277014|277022|277025|277112|277113|277114|277115|277116|277117|277120|353059|353060|417647|439651|447089|447177|556590|558106|558108|626786|626787|626788|626789|690358|696060|761170|818813|822676|822677|822678|822679|822680|822681|862183|862184|862185|862186|862187|862188|862189|862190|862191|862192|862193|862194|862195|864973|921624|930022|964127", + "text": "Cataract 1" + }, + { + "baseId": "23767|23767|23768|23769|23770|23770|23771|23775|23775|23776|23776|98501|98502|98503|98503|98504|141234|186664|186665|186665|186666|186666|186667|186668|186668|190727|190727|191487|192079|194803|199996|199996|199998|199998|199999|200000|200001|200004|237465|237465|285635|285639|285645|285645|285653|286343|286349|286352|286363|286363|286381|286381|288651|288661|288665|288666|288666|288674|288677|288678|289054|289055|289069|289070|289070|289074|289076|289076|289078|289078|289082|289090|289090|357249|357250|357251|357251|357252|357253|357254|357255|357256|357257|357258|357259|357259|357260|357261|357262|357262|357263|357264|367169|367169|421377|421379|443223|443224|443225|443226|450763|486890|486934|486963|493318|495154|499642|499645|499872|499872|500072|500072|518053|518137|541952|541955|541958|541961|541963|541963|541965|541969|541971|541973|541976|541977|541979|541980|542055|542057|542059|542061|542063|542069|542070|542084|542086|542088|542088|542089|542093|542101|542213|542227|542232|542232|542236|542237|542248|557986|557986|558338|561248|629757|629758|629759|629760|629761|629762|629763|629763|650766|650949|676958|691112|691112|691113|691114|695138|733384|733384|733386|733387|733388|733389|747518|747519|747520|763133|763137|763139|763142|763142|774695|774725|774733|781274|781275|781279|781280|781282|819149|821879|826117|826118|826119|826120|826121|851170|851414|858432|884467|884468|884469|884470|884471|884472|884473|884474|884475|884476|884477|884478|884479|884480|884481|884482|887336|922678|922679|922680|931264|940704|942747|942748|953023|953024|960469|971793|971794|971795|971796|971797|971798|971799|971800|971801|971802|971803|971804|972546", + "text": "Long-chain 3-hydroxyacyl-CoA dehydrogenase deficiency" + }, + { + "baseId": "23767|285637|286351|286383|288678|288679|288705|289060|289091", + "text": "LCHAD Deficiency" + }, + { + "baseId": "23767|23767|23768|23769|23770|23770|23771|23771|23772|23773|23774|23775|23775|23776|23776|29883|29884|29885|29886|29887|29888|98501|98503|98503|98504|98505|98507|98508|141234|141235|141236|186664|186665|186666|186668|188207|190727|191487|199996|199996|199998|199998|200001|200006|200007|200008|200009|227239|227240|237024|237465|237465|247460|285635|285637|285639|285645|285645|285653|285654|285655|285656|285661|285667|285685|285695|285696|286343|286349|286351|286352|286363|286363|286381|286381|286382|286383|286384|286385|286388|286389|288651|288661|288665|288666|288666|288674|288677|288678|288679|288705|288706|288713|288720|289054|289055|289060|289069|289070|289070|289074|289076|289076|289078|289078|289082|289090|289090|289091|289093|289111|289112|289113|289114|289128|289137|357251|357259|357262|367169|367169|405702|421380|425486|443224|443225|443227|443228|450665|450763|450766|486890|493318|499642|499645|499872|499872|499884|500072|500072|500095|500112|513524|518006|518053|518057|518137|538967|541963|542088|542232|557986|557986|558338|558340|560555|561248|561250|578402|590269|620078|629757|629758|629759|629760|629761|629762|629763|629763|629764|650766|650949|650999|676958|691112|691112|691113|691114|691116|691117|695138|719794|733384|733384|733386|733387|733388|733389|743934|747518|747519|747520|763133|763137|763139|763142|763142|774695|774725|774733|781274|781275|781279|781280|781282|790224|790225|790226|804738|819149|821879|826117|826118|826119|826120|826121|826122|826123|851170|851414|851416|858432|884467|884468|884469|884470|884471|884472|884473|884474|884475|884476|884477|884478|884479|884480|884482|884483|884484|884485|884486|884487|884488|884489|884490|887336|887337|887338|904870|904947|922678|922679|922680|922681|931264|940704|940705|942747|942748|953023|953024|960469|961233|961234|961235|966348|971793|971794|971795|971796|971797|971798|971799|971800|971801|971802|971803|971804", + "text": "Mitochondrial trifunctional protein deficiency" + }, + { + "baseId": "23767|186668|620077", + "text": "HADHA-Related Disorders" + }, + { + "baseId": "23767|23770|98503|98504|186666|186667|186668|199996|199998|200001|237465|280428|289070|289076|366520|442783|443224|558338|609478|627626|629763|650949|691112|691114|695138|733384|733386|733389|747519|761784|761791|763133|763141|774733|781274|781282|821879|977710|977711", + "text": "Deficiency of long-chain 3-hydroxyacyl-coenzyme A dehydrogenase" + }, + { + "baseId": "23767", + "text": "Lchad deficiency with maternal acute fatty liver of pregnancy" + }, + { + "baseId": "23777|247771|247772|247773|576119|699196|710050|790565", + "text": "Familial adenomatous polyposis 4" + }, + { + "baseId": "23778|23779|250019|250021|250022|250023|250024|250026|281292|281300|281927|281937|283195|283196|283214|283368|427867|448253|448256|448376|516131|516242|557380|557427|628276|628277|628278|628279|732642|732643|732644|743773|762094|777112|778922|787070|790000|790001|824431|824432|824433|824434|922165|922166|922167|922168|922169|930668|942107|952528|952529", + "text": "Severe congenital neutropenia 2, autosomal dominant" + }, + { + "baseId": "23779", + "text": "Neutropenia, nonimmune chronic idiopathic, of adults" + }, + { + "baseId": "23780|59460", + "text": "Advanced sleep phase syndrome, familial, 2" + }, + { + "baseId": "23781|23782|23783|23784|39088|39088|48184|48185|135721|135722|150956|151115|151115|151129|151481|151481|151538|151589|151590|152315|152315|152315|170202|170202|170202|188049|205718|205718|209316|209317|209317|209318|221617|221618|221618|221618|221619|224306|224306|226816|226816|226817|226818|226820|226820|226821|226821|226822|226823|226824|226825|226826|233448|233449|233452|233453|233454|233454|233454|233456|233457|233458|233461|233462|233463|233464|233464|239514|239796|239796|239797|239798|239799|239799|239799|239800|239800|239801|239802|239803|239803|239804|239805|239806|239807|239808|239809|239809|239810|239811|239811|239812|239813|239814|239815|239815|239816|239817|239817|239818|239819|239820|239821|239822|239823|239824|239825|239826|239827|239827|239828|239829|239830|239831|239831|239832|239833|239835|239835|239836|239837|239838|239838|239839|239840|239841|239842|239843|239843|239844|239845|239846|239846|239847|239848|239848|247305|247306|247307|247308|247308|247309|247310|247310|247310|247311|247312|247313|247314|247314|248488|251942|297296|303497|303695|358787|358787|358788|358789|358789|358790|358791|358792|358793|358793|358794|358794|358794|358795|358795|358796|358797|358797|358798|358799|358799|358800|358818|368147|368428|368432|368620|368620|368622|369831|369833|394857|394857|394870|394876|394877|394879|394884|394887|394889|394889|394892|394893|394897|394900|394903|394906|394906|394910|394917|394917|394918|394919|394923|394924|394925|394926|394938|394939|394942|394984|394987|394988|394989|394994|394995|395002|395004|395011|395018|395022|395029|395035|395036|395037|395039|395040|395045|395046|395047|395048|395056|395067|395069|395074|395078|395078|395088|395097|395102|395106|395107|395107|395116|395157|395159|395160|395162|395164|395166|395181|395181|395183|395185|395191|395198|395198|395200|395203|395208|395218|395232|395234|395236|395241|395257|395261|395262|395272|395273|395276|395279|395281|395281|395291|395303|395307|395310|395315|395462|395463|395476|395478|395483|395484|395488|395494|395496|395503|395504|395506|395509|395510|395510|395513|395515|395517|395522|395524|395525|395527|395531|395533|395538|395550|395554|406737|406739|406740|415003|434601|443782|443783|454876|454877|454894|454895|454899|454905|454909|454910|454915|454917|454917|454918|454919|454920|454928|454931|454932|454934|454935|454938|454945|454948|454955|454967|454969|454974|454979|454980|454987|455031|455036|455038|455044|455045|455048|455053|455055|455055|455057|455061|455064|455065|455071|455072|455076|455077|455080|455082|455091|455095|455097|455099|455102|455117|455118|455120|455125|455127|455128|455129|455133|455138|455139|455147|455152|455154|455156|455165|455493|455506|455508|455513|455515|455516|455517|455519|455520|455526|455531|455533|455535|455537|455540|455543|455544|455548|455549|455549|455550|455552|455555|455556|455560|455564|455565|455566|455575|455577|455582|455583|455598|455601|455611|455614|455726|455730|455732|455734|455735|455741|455744|455753|455760|455763|455765|455768|455768|455770|455784|455786|455790|455792|455793|455795|455805|455806|455815|455817|455824|455830|455832|455842|455846|455847|455855|455859|455867|455869|455870|455871|455874|474349|474354|474368|474370|474373|474374|474376|474377|474378|474379|474379|474381|474382|474383|474385|474386|474386|474387|474389|474390|474391|474392|474394|474395|474401|474403|474406|474408|474410|474418|474421|474432|474456|474458|474464|474480|474486|474490|474491|474499|474504|480467|500872|521100|521102|521105|521108|521112|521115|521115|521123|521124|521127|521130|521132|521140|521149|521150|521158|521170|521356|521358|521360|521363|521364|521369|521370|521376|521379|521381|521384|521389|521392|521395|521399|521400|521402|521412|521414|521418|521423|521428|521432|521436|521480|521487|521500|521503|521509|521510|521513|521516|521523|521525|521527|521528|521533|521651|521654|521663|521665|521671|521677|521679|521684|521686|521701|521705|521716|521718|521720|521726|521728|521732|521734|521736|521741|521743|521749|521751|521753|521759|521761|521769|521772|536214|536309|539254|539255|539255|539256|539256|539257|539258|539259|539259|539260|560291|560293|560295|560297|560299|560301|560303|560305|560307|560309|560311|560313|560412|560414|560416|560418|560420|560422|560424|560426|560428|560430|560432|560434|560436|560438|560440|560442|560444|560446|563090|563092|563094|563103|563105|563107|563109|563113|563117|563118|563121|563125|563125|563128|563129|563131|563133|563138|563146|563149|563150|563153|565075|565076|565078|565083|565084|565088|565090|565091|565101|565105|565106|565107|565110|565114|565121|633848|633849|633850|633851|633852|633853|633854|633855|633856|633857|633858|633859|633860|633861|633862|633863|633864|633865|633866|633867|633868|633869|633870|633871|633872|633873|633874|633875|633876|633877|633878|633879|633880|633881|633882|633883|633884|633885|633886|633887|633888|633889|633890|633891|633892|633893|633894|633895|633896|633897|633898|633899|633900|633901|633902|633903|633904|633905|633906|633907|633908|633909|633910|633911|633912|633913|633914|633915|633916|633917|633918|633919|633920|633921|633922|633923|633924|633925|633926|633927|633928|633929|633930|633931|651337|651343|651425|651431|682219|686738|686739|686740|686741|686743|686744|686745|689795|691844|691845|691846|691847|691849|691850|691851|695290|699057|699058|709864|721426|730355|730356|744236|749458|749460|749461|749462|749463|749464|749465|759470|765082|765088|765089|765092|775065|777455|777549|782270|782271|782273|782274|782276|782278|787324|787438|795689|795691|808581|808584|808585|808589|808593|808600|808603|808607|808610|808613|808614|808617|808623|808633|808634|808635|808640|808647|815348|830773|830774|830775|830776|830777|830778|830779|830780|830781|830782|830783|830784|830785|830786|830787|830788|830789|830790|830791|830792|830793|830794|830795|830796|830797|830798|830799|830800|830801|830802|830803|830804|830805|830806|830807|830808|830809|830810|830811|830812|830813|830814|830815|830816|830817|830818|830819|830820|830821|830822|830823|830824|830825|830826|830827|830828|830829|830830|830831|830832|830833|851030|851032|851284|851286|851288|851976|851980|851982|851984|852202|852203|852204|852209|859422|894085|924027|924028|924029|924030|924031|924032|924033|924034|924035|924036|924037|924038|924039|924040|924041|924042|924043|924044|924045|924046|924047|924048|924049|924050|924051|924052|924053|924054|924055|924056|924057|924058|924059|924060|924061|932880|932881|932882|932883|932884|932885|932886|932887|932888|932889|932890|932891|932892|932893|932894|932895|932896|932897|932898|932899|932900|932901|932902|940001|940002|940003|944585|944586|944587|944588|944589|944590|944591|944592|944593|944594|944595|944596|944597|944598|944599|944600|944601|944602|944603|944604|944605|944606|944607|944608|944609|944610|944611|944612|944613|944614|944615|954151|954152|954153|954154|954155|954156|954157|954158|954159|954160|954161|954162|954163|954164|954165|954166|954167|954168|954169|954170|959764|959765|959766|960567", + "text": "Paragangliomas 5" + }, + { + "baseId": "23784|152315|170202|221618|226826|233454|233464|239799|239817|247308|247310|247314|358794|395181|395198|395510|434601|455549|455768|474379|474386|563125", + "text": "Dilated cardiomyopathy 1GG" + }, + { + "baseId": "23789|24120|24121|24122|538927", + "text": "Platelet-type bleeding disorder 8" + }, + { + "baseId": "23790|227241|227242", + "text": "Fasting plasma glucose level quantitative trait locus 5" + }, + { + "baseId": "23791|23792|23793|23794|23795|75371|213636|255250|255252|260798|260799|322699|322700|322703|322705|322715|322717|322721|332190|332194|332196|332200|332203|332204|332211|332212|332214|332215|332218|332219|332223|332226|332230|339166|339175|339176|339178|339180|339185|339186|339191|339194|339199|339202|339213|340664|340667|340668|340671|340674|340675|340677|340678|340681|340682|340688|340689|380138|380139|380140|380141|380142|438763|513630|577394|577397|612178|703235|714471|714472|726113|739654|770195|873668|873669|873670|873671|873672|873673|873674|873675|873676|873677|873678|873679|873680|873681|873682|873683|873684|873685|873686|873687|873688|873689|873690|873691|873692|873693|873694|873695|873696|873697|873698|873699|873700|873701|876528|876529|876530|876531|876532|919571|964421", + "text": "Bartter syndrome, type 1, antenatal" + }, + { + "baseId": "23796|327848|327851|327854|327857|327861|327864|337667|337669|337670|337678|337683|337686|337689|337692|337693|337694|337696|337699|343882|343886|343887|343889|343892|343897|343905|343910|343911|343915|343919|345342|345346|345349|345350|345351|345352|345355|345362|345363|374905|375811|375829|409857|409858|433583|466389|467375|467488|467494|467497|467499|530637|530641|530647|530809|530810|530900|530908|531172|568759|570821|570823|570825|570912|570913|574340|574341|584763|614433|614434|645402|645403|645404|645405|645406|645407|645408|645409|645410|645411|645412|645413|645414|645415|645416|645417|645418|645419|645420|645421|645422|645423|645424|645425|645426|645427|645428|704048|715320|740660|740661|771331|771332|815776|815777|815778|815779|820993|844803|844804|844805|844806|844807|844808|844809|844810|844811|844812|844813|844814|844815|844816|844817|844818|844819|844820|844821|844822|844823|844824|844825|844826|844827|844828|844829|857632|877066|877067|877068|877069|877070|877071|877072|877073|877074|877075|877076|877077|877078|877079|877080|877081|877082|877083|880488|880489|880490|928089|928090|937751|937752|937753|937754|949738|949739|949740|949741|949742|949743|949744|949745|949746|949747|958010|958011", + "text": "T-cell immunodeficiency, congenital alopecia, and nail dystrophy" + }, + { + "baseId": "23796|409854|409857|645411|645419|815782", + "text": "T-cell lymphopenia, infantile, with or without nail dystrophy, autosomal dominant" + }, + { + "baseId": "23797|23798|23799|23800|174418|193441|297487|297489|297490|297492|297496|297498|297499|297504|297509|297511|297512|297517|299630|299632|299644|299645|299646|299648|299650|299651|299654|299660|299667|299669|299670|299671|303756|303764|303769|303770|304145|304146|304148|304151|304152|304153|304160|304161|304162|304170|304172|304173|304174|304175|304177|304198|654382|894265|894266|894267|894268|894269|894270|894271|894272|894273|894274|894275|894276|894277|894278|894279|894280|894281|894282|894283|894284|894285|894286|894287|894288|894289|894290|894291|894292|896107|918964|918965", + "text": "Hirschsprung disease 3" + }, + { + "baseId": "23797", + "text": "Pheochromocytoma, modifier of" + }, + { + "baseId": "23802|101244|101245|101246|177925|191918|194429|213603|253915|253916|253917|253919|253920|253921|253922|253923|253924|269507|311682|311689|311693|311696|311707|311708|311713|317261|317262|317267|317268|317273|317276|317288|317289|317290|323308|323311|323312|323313|323317|323318|323319|323326|323327|323330|323331|323335|323880|323890|323892|323893|323894|323911|323919|512922|512923|590299|791016|818284|818285|866560|866561|866562|866563|866564|866565|866566|866567|866568|866569|866570|866571|866572|866573|866574|866575|866576|866577|866578|866579|866580|868535|868536|868537", + "text": "Cone dystrophy 4" + }, + { + "baseId": "23802|23803|23804|23805|23806|23807|23808|23809|23810|23811|23812|23813|23814|480776", + "text": "Achromatopsia 5" + }, + { + "baseId": "23815|23815|23817|23819|23819|23820|44630|53854|53855|53859|53861|53862|53863|53864|53868|140738|175694|175695|175696|175833|198355|198362|212924|214487|222136|224418|230188|241067|241068|241069|241070|313522|313528|372325|372330|374012|398120|398435|398524|398528|408316|415260|444770|460954|460959|461038|461041|461045|461046|461356|461756|497391|503561|510265|510268|511104|526013|526090|526092|526159|526162|526163|526516|526520|564529|564531|564533|564534|564536|567118|567119|639852|639853|639854|639855|639856|687728|752612|768382|820346|838174|838175|838176|838177|838178|838179|838180|838181|838182|838183|838184|838185|852335|926167|926168|935455|947381|947382|947383|947384|947385|956440", + "text": "Dilated cardiomyopathy 1M" + }, + { + "baseId": "23815|23815|23816|23817|23817|23819|23820|23820|44630|53854|53855|53855|53859|53859|53861|53861|53862|53862|53863|53863|53864|53868|140738|140738|140739|175694|175695|175696|175833|175833|175836|187656|198355|198360|198362|212924|214487|222136|224418|230188|241067|241068|241069|241070|313522|313522|313524|313528|313528|313532|319728|319730|319741|319744|319748|325855|325859|325860|325861|325891|326871|372325|372330|374012|398120|398435|398524|398528|408316|415260|444770|460954|460959|461038|461041|461045|461046|461356|461756|497391|503561|510265|510268|511104|526013|526090|526092|526159|526162|526163|526516|526520|564529|564531|564533|564534|564536|567118|567119|639852|639853|639854|639855|639856|687728|752612|768382|820346|838174|838175|838176|838177|838178|838179|838180|838181|838182|838183|838184|838185|852335|867722|867723|867724|867725|867726|867727|868636|920297|926167|926168|935455|947381|947382|947383|947384|947385|956440", + "text": "Familial hypertrophic cardiomyopathy 12" + }, + { + "baseId": "23815|25777|28516|29534|45092|52938|54084|57454|78832|171118|172475|174916|175600|186429|189951|197176|397203|398923|404169|509824|564702|679866|798993|799007|799013|799015|858255|965296|965301|965305|965309", + "text": "Sudden unexplained death" + }, + { + "baseId": "23821|23822|23823|23824|23825|75216|132531|132532|132536|132543|132544|133426|133427|133432|133433|133436|133437|133440|133444|135068|135069|150490|150523|150560|150643|150655|150660|150667|150739|150771|151063|151206|151247|151258|151556|151709|151867|152047|152139|152141|152190|152192|152225|152237|152256|152303|178875|180539|180540|180541|180542|180544|180545|180546|180547|183486|183500|183503|183511|183516|183518|183519|183522|183523|183526|183529|183530|183539|183544|183549|183551|183557|183559|183564|183578|183585|191047|212961|222170|222173|222174|222176|222191|225571|234448|234449|234464|234478|234496|234505|234513|234521|234531|234547|234566|241208|315480|315481|315484|315485|315491|315493|315494|315498|315500|315501|322335|322336|322348|322349|322357|322374|322375|322381|322382|322385|322391|322397|322400|322401|322402|322407|322408|328471|328477|328484|328489|328495|328516|328517|328527|328528|328534|328535|328536|328539|329791|329792|329797|329800|329808|329809|329812|329816|329817|329838|329839|329840|329842|358842|398386|398472|460748|461510|461512|461515|461522|461530|461695|461701|461707|462029|462033|462346|476038|476044|476068|476069|476127|476133|476518|476534|476648|476652|476675|476737|525682|526514|526517|526526|526527|526575|526581|526583|526798|526801|527078|527087|527092|527094|539305|564932|564934|566208|566211|566733|567572|567573|614367|626385|788861|798647|798648|868948|868949|868950|868951|868952|868953|868954|868955|868956|868957|868958|868959|868960|868961|868962|868963|868964|868965|868966|868967|868968|868969|868970|868971|868972|868973|872152|872153|961301|964908", + "text": "Ataxia-telangiectasia-like disorder 1" + }, + { + "baseId": "23821|23822|23823|75224|132543|132544|133424|133426|133427|133429|133431|133432|133433|133434|133436|133437|133438|133440|133444|133446|135068|135069|150489|150523|150560|150655|150660|150667|150739|150744|150939|151021|151128|151206|151258|151321|151553|151608|151709|151759|151777|151864|151867|151904|151931|152058|152139|152163|152190|152192|152225|152226|152256|152433|152532|152551|180539|180541|180542|180544|180545|180546|183483|183485|183486|183487|183488|183489|183496|183500|183501|183503|183504|183505|183506|183509|183511|183513|183516|183518|183519|183522|183525|183526|183528|183531|183532|183533|183535|183541|183544|183546|183547|183549|183557|183560|183561|183562|183564|183566|183568|183570|183571|183572|183573|183575|183576|183578|183582|183583|183592|183593|183594|183595|212958|212961|212962|212963|212964|212967|212968|212969|212970|222167|222170|222174|222177|222180|222182|222185|234451|234461|234468|234469|234476|234480|234483|234486|234487|234488|234499|234508|234510|234512|234513|234515|234516|234518|234524|234527|234531|234533|234536|234537|234538|234551|234553|234564|234565|234567|241209|241211|241213|315500|322400|398384|398461|398473|398475|398774|398776|398781|398912|461503|461515|461526|461544|461700|462347|476028|476032|476037|476051|476058|476062|476065|476098|476104|476109|476156|476188|476192|476218|476229|476414|476459|476468|476647|476663|526797|527080|566218|640505|640506|640507|640508|640509|640510|640511|640512|640513|640514|640515|640516|640517|640518|640519|640520|640521|640522|640523|640524|652144|652147|652206|652242|652246|695543|798647|798648|810945|810948|810951|810979|811009|811017|811028|811051|811060|811066|811078|811118|820423|820424|839166|839167|839168|839169|839170|839171|839172|851466|852410|926414|926415|926416|926417|935854|935855|935856|935857|935858|935859|935860|935861|940238|941016|947730|947731|947732|947733|947734|956714|956715|956716|956717|956718", + "text": "Ataxia-telangiectasia-like disorder" + }, + { + "baseId": "23826|23827|23828|23829|137700|314256|314264|314265|314270|314272|314273|314275|320885|326895|326899|326904|326905|326907|326909|326910|326912|327896|327903|327904|685286|701782|868081|868082|868083|868084|868085|868086|868087|868088|868089|868090|868091|868655", + "text": "Xeroderma pigmentosum, group E" + }, + { + "baseId": "23830|23831|29578|29578|29580|29580|29583|29584|29585|29587|29588|29589|29593|29594|29595|29596|29597|33855|33984|34116|51215|79935|84423|186608|186609|186610|186611|186612|186613|186614|187032|256610|256611|256612|256613|256614|256615|256617|263970|263971|268010|269481|274819|277781|277793|278689|278706|279975|280028|280033|280143|330878|330881|330882|330892|330907|330910|330913|330915|330916|330917|330921|330923|330927|330928|330930|330931|330936|341171|341173|341180|341182|341183|341185|341192|341197|341198|341200|341201|341206|341207|341209|341211|341213|341215|346709|346712|346713|346716|346721|346727|346728|346734|346735|346737|346738|346747|346749|346750|346752|347984|347985|347986|347990|347995|347999|348001|348014|348017|348019|348020|348028|348030|348036|348040|357008|357009|357010|357011|357012|357013|357014|357015|357016|357017|357018|357019|357020|357021|357022|357023|357024|357025|357026|357027|357028|357029|357030|357031|357032|357033|357034|357035|357036|357037|357038|357039|357040|357041|357042|357043|357044|357045|357046|357047|357048|357049|357050|357051|357052|358547|358548|358549|358550|358551|358552|358553|358554|358555|358556|358557|358558|358559|358560|358561|358562|358563|358564|358565|359226|359293|415597|445947|445947|481579|513503|540600|540601|540602|540603|540604|540605|540606|540668|540670|540671|540672|540675|540681|540685|540686|540692|540693|540700|540702|540705|540706|540707|540712|540718|540726|540728|540729|540730|540731|540734|540736|540737|540738|540740|540741|540742|540743|540744|540746|540747|540748|540749|540750|540752|540753|540754|540755|540756|540757|540759|540760|540762|540764|540767|540768|540769|540770|540771|540776|540777|540778|540778|540779|540781|540782|540784|540786|540792|540793|540794|540796|540798|540803|548554|548555|548556|548560|548562|548564|548569|548574|548575|548578|548580|548582|548587|548589|548590|548592|548593|548595|548596|548598|548599|548600|548602|548603|548604|548606|548607|548611|548612|548614|548619|548621|548623|548626|548630|548632|548635|548639|548640|548647|548649|548650|548651|548653|548655|548656|548658|548659|548663|548665|548666|548668|548671|548676|548937|548938|548943|548944|548946|548949|548950|548954|548956|548958|548960|548963|548964|548969|548971|548986|548987|548993|548995|548998|549007|549010|549013|549026|549029|549031|549034|549272|549274|549279|549280|549281|549284|549288|549289|549291|549292|549295|549297|549299|549300|549303|549304|549305|549306|549309|549311|549312|549313|549316|549317|549319|549320|549321|578560|583128|611497|621067|715911|727663|727664|727665|741319|741321|741323|741324|756407|785857|801588|878995|878996|878997|878998|878999|879000|879001|879002|879003|879004|879005|879006|879007|879008|879009|879010|879011|879012|879013|879014|879015|879016|879017|879018|879019|879020|879021|879022|879023|879024|879025|879026|879027|879028|880639|880640|880641|906063|906377|916809|916810|965345|971637|971638|971639|971640|971641|971642|971643|971644|971645|971646|971647|971648|971649|971650|971651|971652|971653|971654|971655|971656|971657|971658|971659|971660|971661|971662|971663|971664|971665|971666|971667|971668", + "text": "Junctional epidermolysis bullosa gravis of Herlitz" + }, + { + "baseId": "23832|29578|29578|29580|29580|29581|29582|29586|29588|29589|29590|29591|29592|29598|29599|29600|29779|32684|32685|32686|32687|32688|32691|32692|32693|32694|32695|32696|32697|186611|205161|227334|227396|253671|253672|253673|253675|253676|253677|253679|253680|253681|253682|253683|253684|309379|309380|309383|309384|309386|309387|309392|309401|309402|309405|309407|309410|309411|309419|309427|309428|309434|309435|309437|309438|309443|309445|309447|314065|314066|314076|314080|314082|314083|314084|314086|314088|314091|314107|314109|314110|314112|314122|314124|314126|314129|314130|314131|314144|314154|314162|319982|319983|319997|319998|320008|320011|320012|320019|320020|320037|320039|320040|320041|320048|320051|320052|320053|320499|320531|320548|320552|320554|320558|320560|320564|320567|320572|320575|320577|320581|320583|320602|320609|320610|320615|320616|320617|359226|359293|407810|415214|442704|445947|445947|486607|488235|540778|576350|578559|583106|611497|612132|612402|620343|620816|620817|701157|712137|712138|723744|723745|744496|744591|751945|778032|792673|865344|865345|865346|865347|865348|865349|865350|865351|865352|865353|865354|865355|865356|865357|865358|865359|865360|865361|865362|865363|865364|865365|865366|865367|865368|865369|865370|865371|865372|865373|865374|865375|865376|865377|865378|865379|865380|865381|865382|865383|865384|865385|865386|865387|865388|868431|868432|868433|868434|868435|868436|868437|868438|868439|906377", + "text": "Junctional epidermolysis bullosa, non-Herlitz type" + }, + { + "baseId": "23835|23835|23836|23838|23839|23840|23841|23842|23843|23844|23845|23846|23847|23848|23849|23850|23851|23853|23855|23856|23857|23858|75073|75074|79680|140231|140232|171112|173629|189348|209584|209585|209586|209588|209589|209590|210228|224249|224250|227232|228911|238597|240451|259243|259244|259245|259246|259247|259248|259717|263862|264058|264060|283987|283993|284000|284001|284004|284005|284007|284011|284014|284015|284022|284029|284031|284038|284040|284041|284049|284050|284054|284059|284071|284077|284078|284083|284093|284094|284097|284756|284758|284761|284773|284776|284780|284783|284784|284788|284798|284800|284804|284805|284806|284814|284816|284817|284824|284828|284829|284830|284832|284840|284844|284853|284856|284857|284858|284861|284862|284863|284877|286645|286646|286647|286649|286657|286658|286662|286663|286664|286666|286684|286688|286695|286698|286709|286710|286720|286722|286736|286737|286743|286744|286745|286746|286747|286753|286762|286763|286764|286771|286782|286792|286796|286798|286799|287129|287145|287146|287147|287150|287152|287153|287154|287156|287159|287160|287163|287174|287175|287181|287182|287186|287187|287189|287192|287193|287194|319518|319519|319520|319539|319556|319565|319575|319597|328053|328099|328105|328106|328110|334372|334373|334377|334398|334433|334456|334467|334505|336095|336133|336134|336192|336232|336234|391465|392288|392288|392291|392462|392465|392468|414036|414037|414038|414039|414040|414041|414042|414043|414044|414045|414046|414047|414048|414049|414050|414051|414052|414053|414054|414055|414056|414057|414058|414059|414060|414061|414062|414063|414064|414065|414066|414067|414068|414069|414070|414071|414072|414073|414074|414075|414076|414077|414078|414079|414080|414081|414082|414083|414084|414085|414086|414087|414088|414089|414090|414091|414092|414093|414096|414097|414098|414099|414100|414101|414102|414103|414104|414105|414106|414107|414108|414109|414110|414111|414112|414113|414115|414116|414117|414118|414119|414120|414121|414122|414123|414124|414125|414126|414127|414128|414129|414130|414131|414132|414133|414134|414135|414136|414137|414138|414139|414140|414143|414144|414145|414146|414147|414148|414149|414150|414151|414152|414153|414154|414155|414156|414157|414158|414159|414160|414161|414162|414163|414164|414165|414166|414167|414168|414169|414170|414171|414172|414173|414174|414175|414176|414177|414178|414179|414181|414182|414183|414184|414185|414186|414187|414188|414189|414190|414191|414192|414193|414194|414195|414196|414197|414198|414199|414200|414201|414202|414203|414204|414205|414206|414207|414208|414209|414210|414211|414212|414213|414214|414215|414216|414217|414218|414219|414220|414221|414222|414223|414224|414225|414226|414227|414228|414229|414230|414231|414232|414233|414234|414235|414236|414237|414238|414239|414240|414241|414242|414243|414245|414246|414247|414248|414249|414250|414251|414252|414253|414254|414255|414256|414257|414258|414259|414260|414261|414262|414263|414264|414265|414266|414267|414268|414269|414270|414271|414272|414273|414274|414275|414276|414277|414278|414279|414280|414281|414282|414283|414284|414285|414286|414287|414288|414289|414290|414291|414292|414293|414294|414295|414296|414297|414298|414299|414300|414301|414302|414303|414304|414305|414306|414307|414308|414310|414311|414312|414313|414314|414315|414316|414317|414318|414319|414320|414321|414322|414323|414324|414325|414326|414327|414328|414329|414330|414331|414332|414333|414334|414335|414336|414337|414338|414339|414340|414341|414342|414343|414344|414345|414346|414347|414348|414349|414350|414351|414352|414353|414354|414355|414356|414357|414358|414359|414360|414361|414362|414363|414364|414365|414366|414367|414368|414369|414370|414371|414372|414374|414383|414384|414389|414390|414391|414392|414393|414396|414399|414405|414406|414407|414408|414427|414428|414429|414430|414431|414432|448566|450259|450264|450267|450397|450514|450525|517635|517648|517786|557816|558078|629306|629307|629308|650726|650783|683472|683473|686119|686120|686121|691014|747172|781110|799279|819099|819100|819101|819102|819103|825601|825602|825603|825604|883356|883357|883358|883359|883360|883361|883362|883363|883364|883365|883366|883367|883368|883369|883370|883371|883372|883373|883374|883375|883376|883377|883378|883379|883380|883381|883382|883383|883384|883385|883386|883387|883388|883389|883390|883391|883392|883393|883394|883395|883396|883397|883398|883399|883400|883401|883402|883403|883404|883405|883406|883407|883408|883409|883410|883411|883412|883413|883414|883415|883416|883417|883418|883419|883420|883421|883422|883423|883424|883425|883426|887242|931079|952888", + "text": "Pulmonary Hypertension, Primary, 1" + }, + { + "baseId": "23835|392288|414244|414318|654767", + "text": "Pulmonary venoocclusive disease 1, autosomal dominant" + }, + { + "baseId": "23851|414114|414309", + "text": "Pulmonary hypertension, primary, dexfenfluramine-associated" + }, + { + "baseId": "23852", + "text": "Pulmonary hypertension, primary, fenfluramine-associated" + }, + { + "baseId": "23853|23854|23855|48021|48022", + "text": "Pulmonary venoocclusive disease 1" + }, + { + "baseId": "23858", + "text": "Pulmonary hypertension, primary, 1, with hereditary hemorrhagic telangiectasia" + }, + { + "baseId": "23859|23860", + "text": "DIABETES, TYPE II, SUSCEPTIBILITY TO" + }, + { + "baseId": "23862|28948|28955|28956|28957|28958|28968|28970|28972|28975|28990|36242|36249|47217|47233|181495|181497|181498|181499|213770|213771|213772|241250|241251|241252|241253|241254|241255|241256|241257|241258|241259|254453|316315|316322|316323|316325|316326|316329|316331|316332|316333|316337|316338|316343|316345|316347|316351|316352|316358|323748|323749|323751|323752|323757|323772|323781|329860|329865|329868|329874|329875|329876|331108|331114|331118|331119|331123|331127|331128|331135|331138|331142|331144|331155|398494|398500|398504|398508|398513|398516|398519|398542|398547|398548|398550|398551|398554|398555|398560|398561|398563|398570|398574|398863|398866|398873|398879|398888|398979|398983|398987|398996|399004|399005|399007|461653|461656|461659|461665|461666|461676|461677|461868|461872|461874|461877|461891|462228|462229|462232|462241|462244|462245|462251|462255|462261|462263|462265|462267|462269|462277|462279|462485|462490|462493|462495|462496|462500|462502|476247|476248|476251|476276|476487|476495|476758|486074|526717|526718|526720|526723|526724|526730|526737|526741|526745|526749|526958|526961|526963|526967|526969|526970|526974|527275|527282|565102|565111|565112|566407|566408|566414|567696|567700|571143|571302|571304|571312|571318|613900|640671|640672|640673|640674|640675|640676|640677|640678|640679|640680|640681|640682|640683|640684|640685|640686|640687|640688|640689|640690|640691|640692|640693|640694|640695|640696|640697|640698|640699|676949|687921|687922|687923|690023|693156|693157|693158|693159|693160|693161|693162|702218|702219|702220|702221|713432|724983|753199|768941|784299|784301|788864|791202|811122|811123|811124|811130|811135|811137|811143|811146|811150|811151|811153|811162|820454|820455|839382|839383|839384|839385|839386|839387|839388|839389|839390|839391|839392|839393|839394|839395|839396|839397|839398|839399|839400|839401|839402|839403|839404|839405|869525|869526|869527|869528|869529|869530|869531|869532|869533|869534|869535|869536|869537|926484|926485|926486|926487|926488|926489|926490|926491|935938|935939|935940|935941|935942|935943|935944|935945|935946|935947|935948|935949|935950|935951|947810|947811|947812|947813|947814|947815|947816|947817|947818|947819|947820|956766|956767|956768|956769|956770", + "text": "Multiple endocrine neoplasia, type 4" + }, + { + "baseId": "23863|23867|23868|176006|176007|176008|176009|176148|176149|176151|270922|324670|324671|324672|324673|324680|324681|324689|324692|324700|324701|324705|334228|334229|334235|334246|334251|334264|334265|334266|334267|334268|334269|334280|340914|340917|340920|340928|342356|342369|342370|342372|342375|342379|342381|342382|342383|342389|445537|552269|556460|556461|792799|797285|874905|874906|874907|874911|874913|874914|874915|874916|874917|874918|874919|874920|874921|874922|874923|874924|874925|874926", + "text": "Liddle syndrome 2" + }, + { + "baseId": "23864|23865|23866|23867|23868|23871|23883|24302|24303|24304|24305|24306|24308|175749|175889|176006|176007|176008|176009|176011|176012|176013|176014|176148|176149|176151|176154|176156|176157|191353|193465|193466|230335|230337|230338|230632|230633|255672|270922|318243|318246|318248|318249|318254|318256|318260|318268|318271|318273|318280|318282|318283|318284|318285|318287|324670|324671|324672|324673|324680|324681|324689|324692|324693|324700|324701|324705|324718|324720|324721|324723|324726|324727|324730|324735|326232|326237|326241|326243|326249|326253|326259|326263|332506|332508|332511|332523|332532|332536|332540|332543|332548|332550|332551|334108|334117|334121|334122|334123|334124|334131|334139|334143|334146|334150|334151|334153|334155|334228|334229|334235|334246|334251|334264|334265|334266|334267|334268|334269|334280|334300|334301|334307|334317|334318|334319|334320|340914|340917|340920|340928|340948|340950|340954|340958|340959|340960|340968|340972|342356|342369|342370|342372|342375|342379|342381|342382|342383|342387|342389|342413|342420|342424|342427|342429|342436|445537|481263|578502|578503|582711|620454|713693|725223|753541|753543|791270|791271|791559|792799|797285|804853|870271|870272|870273|870274|870275|870276|870277|870278|870279|870280|870281|870282|870283|870284|870285|870286|870287|870288|870289|872282|872283|874905|874906|874907|874911|874913|874914|874915|874916|874917|874918|874919|874920|874921|874922|874923|874924|874925|874926|874936|874937|874938|874939|874940|874941|874942|874943|874944|874945|874946|874947|874948|874949|874950|874951|874952|874953|874954|874955|876643|876644|980348", + "text": "Autosomal recessive pseudohypoaldosteronism type 1" + }, + { + "baseId": "23867|23868|324680|445537|792799", + "text": "Bronchiectasis with or without elevated sweat chloride 3" + }, + { + "baseId": "23869|23870|23871|23872|23873|23874|23875|23876|23883|176011|176012|176013|176014|176154|176156|176157|230632|230633|255672|324693|324718|324720|324721|324723|324726|324727|324730|324735|334300|334301|334307|334317|334318|334319|334320|340948|340950|340954|340958|340959|340960|340968|340972|342387|342413|342420|342424|342427|342429|342436|623386|874936|874937|874938|874939|874940|874941|874942|874943|874944|874945|874946|874947|874948|874949|874950|874951|874952|874953|874954|874955|876643|876644|962176|977274", + "text": "Liddle syndrome 1" + }, + { + "baseId": "23884|23885|23886|23887|23888|23889|23890|23891|23892|32903|32909|46863|46864|103887|178440|189388|189390|249746|249747|249748|249749|249750|249751|249752|249753|279384|279385|279389|279393|279394|279399|279627|279635|279636|279637|279638|279639|279642|280901|280903|280906|280914|280915|280916|281046|281047|281053|281056|281057|281058|281061|440487|447749|514880|515466|515563|515564|515594|556792|558349|627390|627391|627392|683306|683307|690502|690506|696513|718702|746190|823492|863799|863800|863801|863802|863803|863804|863805|863806|863807|863808|863809|863810|863811|863812|863813|921853|952304", + "text": "Alzheimer disease, type 4" + }, + { + "baseId": "23891|103887|178440|189388|189390|249746|249747|249748|249749|249750|249751|249752|249753|279384|279385|279389|279393|279394|279399|279627|279635|279636|279637|279638|279639|279642|280901|280903|280906|280914|280915|280916|281046|281047|281053|281056|281057|281058|281061|440487|515466|515563|690502|690506|718702|746190|863799|863800|863801|863802|863803|863804|863805|863806|863807|863808|863809|863810|863811|863812|863813", + "text": "Dilated cardiomyopathy 1V" + }, + { + "baseId": "23893|23894|353955|353956|353957|463878|463881|527985|528042|528500|567867|572744|642196|642197|642199|642200|642202|642203|642204|970991", + "text": "Specific granule deficiency 1" + }, + { + "baseId": "23895|551781|857650", + "text": "Long QT syndrome 13" + }, + { + "baseId": "23895|23957|23958|23958|23959|23960|23961|23962|23962|23962|23963|23964|23965|23967|39075|39076|39077|39077|39081|45097|45097|78456|78461|78462|78463|78464|78464|78465|78465|78470|78471|78477|78479|78481|78481|78484|78487|78487|78490|141686|141687|141689|141690|141691|141691|171189|171189|188650|188656|188659|188661|188662|188662|188664|188665|188666|188666|188667|204359|204360|222732|224521|224521|224522|259015|259021|259021|265838|269767|329615|329619|329620|329624|329625|329625|329628|329635|329636|329637|329638|329639|329641|329643|329645|329648|329650|329654|329655|329660|329663|329664|329666|329669|329672|329675|329677|339907|339908|339911|339911|339912|339916|339921|339922|339923|339925|339927|339929|339930|339933|339934|339941|345630|345631|345634|345635|345638|345640|345641|345645|345648|345649|345652|345653|345659|345662|345663|345667|345669|345672|345676|345677|345679|345681|345682|346986|346987|346989|346993|347000|347010|347015|347017|347021|347026|347038|347042|347043|375673|376609|376617|376617|376618|378738|402503|402505|402975|403114|403117|403123|439887|442013|445876|467401|467407|467416|468303|468306|468769|468771|468771|468772|469005|469008|507126|510757|510758|532098|569686|569694|571569|625822|625823|625823|626260|646634|646635|646636|646637|646638|646639|646640|646641|646642|646643|672444|672444|677457|688820|688821|688822|694171|694172|694173|694173|694175|740993|771784|846135|846136|846137|846138|846139|878290|878291|878292|878292|878293|878294|878295|878296|878297|878298|878299|878300|878301|878302|878303|878304|878305|878306|878307|878308|878309|878310|878311|878312|878313|878314|878315|878316|878317|878318|878319|878320|878321|878322|878323|878324|878325|919766|928519|928520|928521|938204|938205|941158|950259|950260|958288|958289|967210|969522", + "text": "Andersen Tawil syndrome" + }, + { + "baseId": "23895|39081|97393|139391|139392|139393|141693|141694|141695|141696|141697|141698|186151|212923|313268|313294|313298|313299|313300|313301|313305|313306|313309|313312|313313|313314|319394|319399|319400|319401|319402|319417|319418|319435|319441|319442|319443|325531|325539|325545|325549|325562|325570|325578|325579|326523|326529|326535|326539|326540|326541|326545|326565|326566|326575|326583|326584|326586|684239|867560|867561|867562|867563|867564|867565|867566|867567|867568|867569|867570|867571|867572|867573|867574|867575|867576|867577|867578|867579|919340", + "text": "Familial hyperaldosteronism type 3" + }, + { + "baseId": "23896|23903|23904|33976|39080|39080|429487", + "text": "Pancreatic agenesis 1" + }, + { + "baseId": "23896|23898|23902|33976|33976|39080|45065|45066|45067|45069|45070|45071|45072|45074|45075|45076|45077|135327|429487", + "text": "Maturity-onset diabetes of the young type 4" + }, + { + "baseId": "23905|23906|23907|23908|23911|23912|23913|23914|23915|265457|269321|271728|271980|284771|284778|284789|284790|285429|285440|285441|285452|285463|287653|287655|287670|287672|287684|287685|287686|287907|287921|287922|287941|287943|287949|287963|287965|733174|747307|822332|822333|822336|857347|883778|883779|883780|883781|883782|883783|883784|883785|883786|883787|883788|883789|883790|883791|883792|883793|883794|883795|883796|883797|883798|883799|883800|883801|887276|918030|918739", + "text": "Type A1 brachydactyly" + }, + { + "baseId": "23909|23910|788747|788748", + "text": "Acrocapitofemoral dysplasia" + }, + { + "baseId": "23916|23917|23918|23919|23920|23921|23922|23923|23924|23925|23926|23927|23928|23930|23932|23934|23935|76732|76754|76757|76761|76762|76768|76780|76784|76785|76787|76791|76792|76795|76800|76812|76819|76820|193391|361187|424484|456902|457594|486746|522502|536077|536078|536079|536081|635957|651714|677292|699961|699962|699963|710892|710893|710894|736042|750536|945539|964288|964832|970853|970854|977228", + "text": "Holoprosencephaly 3" + }, + { + "baseId": "23925|23926|24558|24559|24560|24561|39337|39338|39339|490057|918773|919095", + "text": "SCHIZENCEPHALY" + }, + { + "baseId": "23925|23931|653874", + "text": "Microphthalmia, isolated, with coloboma 5" + }, + { + "baseId": "23925|23929|23933|23934|39338|536080", + "text": "Solitary median maxillary central incisor syndrome" + }, + { + "baseId": "23936|23937|99599|99601|177611|191655|193026|206565|237094|255853|325986|326000|326048|335697|335733|335736|342070|343570|354176|431798|486149|799959|799960|799961|905053|905056|919667|919668|971052", + "text": "Retinitis pigmentosa 45" + }, + { + "baseId": "23938|23939|23940|23941|23942|23943|23944|23945|23946|23947|70781|70782|70783|70813|70814|70815|70816|70817|70818|70819|70820|70821|70822|70823|70824|70825|70826|70827|70828|70829|70830|70831|70832|70833|70834|70835|70836|70837|70838|70839|70840|70841|70842|70843|70844|70845|70846|70847|70848|70849|70850|70851|70852|70853|70854|70855|70856|70857|70858|70859|135467|135468|135469|142496|142499|186623|193410|195574|196169|200995|201106|201107|201109|201110|201111|201112|201113|201114|201115|201116|201117|201119|201123|227214|237963|237964|237965|237966|238280|264002|280434|280436|280445|280449|280451|280455|280458|280459|280460|280472|280801|280811|280814|280829|280844|280857|280858|282205|282206|282207|282209|282212|282213|282219|282220|282221|282222|282345|282366|282371|282374|282405|282406|282423|282430|357075|357076|357077|357078|357079|357080|357081|357082|357083|357084|365267|391214|391215|391343|391344|442835|447887|447890|448107|448110|448113|448114|448174|448186|448188|485997|498657|498671|514895|515852|515855|515856|515881|515899|515905|515906|515977|541042|541052|541054|541058|541144|541145|541150|541155|541181|541184|541186|541191|541194|541196|541198|541205|557051|557313|557315|558501|558503|558505|558507|558509|578791|622862|627826|627827|627828|627829|627830|627831|650666|653849|653988|683327|685730|746470|759011|761911|774499|780684|818966|823950|823951|823952|823953|823954|823955|823956|823957|823958|823959|850711|850780|864332|864333|864334|864335|864336|864337|864338|864339|864340|864341|864342|864343|864344|864345|864346|922011|922012|922013|922014|930483|930484|940633|941935|941936|941937|941938|952409|952410|952411|965935|977535|977536|977537|977538", + "text": "Neuronal ceroid lipofuscinosis 1" + }, + { + "baseId": "23943|140827|193688|194825|202608|203812|203814|203815|203817|203818|280429|280430|280812|280826|282370|282413|292242|292244|296979|314712|314713|321380|321392|321432|321436|323238|323239|327543|327555|328606|328626|332905|336299|336301|336304|336307|336310|336312|336318|336320|336322|336324|336325|336328|336329|336335|336336|336345|336348|336351|336357|336358|336368|336369|336371|336372|336378|336379|336383|339799|341232|341236|341237|346019|346022|346023|346027|346031|346032|346034|346035|346039|346045|346049|346051|346057|346063|346066|346068|346083|346085|346091|346092|346093|346098|346102|346115|350380|350381|350384|350385|350388|350389|350392|350393|350396|350397|350400|350401|350404|350405|350407|350408|350413|350414|350419|350420|350423|350424|350427|350428|350430|350431|350434|351417|351418|351421|351424|351425|351427|351430|351431|351434|351435|351438|351439|351442|351443|351446|351447|351450|351451|351454|351455|351457|351460|351461|351464|351465|351467|351470|353327|353328", + "text": "Neuronal Ceroid-Lipofuscinosis, Recessive" + }, + { + "baseId": "23948|23949", + "text": "Diabetes mellitus, insulin-dependent, susceptibility to" + }, + { + "baseId": "23948|31960|31961", + "text": "Hashimoto thyroiditis, susceptibility to" + }, + { + "baseId": "23948", + "text": "Addison disease, susceptibility to" + }, + { + "baseId": "23948|31961", + "text": "chronic fatigue syndrome with infection-triggered onset" + }, + { + "baseId": "23951|139369|192849|202713|274242|372394|408707|429438|571890|614378|677439|677440|798657|857655|861576|983305", + "text": "Cognitive impairment with or without cerebellar ataxia" + }, + { + "baseId": "23952|40534|421846|619826", + "text": "Arthrogryposis, distal, type 2b2" + }, + { + "baseId": "23952|40534", + "text": "Arthyrgryposis, distal, type 2B" + }, + { + "baseId": "23953|23954", + "text": "Erythrocyte lactate transporter defect" + }, + { + "baseId": "23955|23956|135762|170214|249364|249365|275923|275925|275928|275929|275930|275931|275933|276014|276017|276033|276034|276048|276049|276062|276065|276067|276090|276094|276106|276121|276122|276125|276135|276167|276171|276172|276182|276191|276200|276274|276277|276278|276279|276291|276292|276293|276294|276295|276296|276297|276333|276334|276338|427621|731588|789822|815975|861961|861962|861963|861964|861965|861966|861967|861968|861969|861970|861971|861972|861973|861974|861975|861976|861977|861978|861979", + "text": "Exercise-induced hyperinsulinism" + }, + { + "baseId": "23958|23962|23962|23966|39077|39077|45097|45097|78456|78461|78462|78464|78465|78470|78471|78481|78487|78490|141686|141687|141689|141690|141691|141691|171189|188650|188656|188659|188661|188662|188664|188665|188666|188666|188667|224521|224522|259015|259021|265838|269767|329615|329619|329624|329625|329625|329628|329635|329637|329638|329639|329641|329645|329648|329655|329664|329666|329669|329677|339907|339911|339911|339912|339916|339922|339923|339925|339933|339934|339941|345630|345631|345634|345635|345638|345640|345641|345645|345648|345649|345652|345659|345662|345663|345667|345669|345679|345681|345682|346986|346987|346989|346993|347010|347015|347017|347038|347042|347043|375673|376609|376617|376617|376618|378738|402503|402505|402975|403114|403117|442013|445876|467401|467407|467416|468306|468769|468771|468771|468772|469005|469008|507126|510757|510758|532098|569686|569694|571569|625823|646634|646635|646636|646637|646638|646639|646640|646641|646642|646643|672444|677457|688820|688821|688822|694171|694172|694173|694173|694175|740993|771784|846135|846136|846137|846138|846139|878290|878291|878292|878292|878293|878294|878295|878296|878297|878298|878299|878300|878301|878302|878303|878304|878305|878306|878307|878308|878309|878310|878311|878312|878313|878314|878315|878316|878317|878318|878319|878320|878321|878322|878323|878324|878325|928519|928520|928521|938204|938205|941158|950259|950260|958288|958289", + "text": "Short QT syndrome 3" + }, + { + "baseId": "23962|39077|45097|141691|188666|329615|329619|329624|329625|329628|329635|329637|329638|329639|329641|329645|329648|329655|329664|329666|329669|329677|339907|339911|339912|339916|339922|339923|339925|339933|339934|339941|345630|345631|345634|345635|345638|345640|345641|345645|345648|345649|345652|345659|345662|345663|345667|345669|345679|345681|345682|346986|346987|346989|346993|347010|347015|347017|347038|347042|347043|375673|376617|468771|677457|694173|878290|878291|878292|878293|878294|878295|878296|878297|878298|878299|878300|878301|878302|878303|878304|878305|878306|878307|878308|878309|878310|878311|878312|878313|878314|878315|878316|878317|878318|878319|878320|878321|878322|878323|878324|878325", + "text": "Atrial fibrillation, familial, 9" + }, + { + "baseId": "23968|23969|23970|23971|23972|23975|23976|45243|45244|45245|45246|45247|45249|45251|45255|45256|45257|45258|45259|45261|50027|50029|50030|50032|50032|50033|50035|51637|51638|51640|51641|51642|94625|94629|94638|94639|94642|94648|94650|94654|94663|94666|94668|94672|94674|94682|94685|94690|94691|94692|94698|94705|94707|94713|94719|94723|94725|94730|94731|94733|94738|94743|94753|94754|94755|94760|94762|94763|94763|94765|94779|94786|94786|94788|94804|94805|94807|94808|94812|94815|94816|94816|94820|94826|94826|94831|94833|94834|94836|94838|94842|94843|94843|94844|94858|94863|94865|94874|94876|94878|94883|94889|94890|94891|94892|94898|94898|94902|94917|94919|94931|94935|94938|94946|94947|94948|94949|94950|94951|94953|94958|94962|94964|94968|94970|94971|94973|94974|94976|94980|94981|94982|94983|94985|94996|95000|95001|95004|95008|95014|95025|95026|95034|95036|95036|95038|95046|95047|133011|133019|133020|133021|133022|133023|133026|133027|133027|133028|133029|133031|133032|133033|133039|133042|133043|133045|133046|133048|133050|133050|133051|133052|133061|138590|138590|138591|138592|138594|138595|139541|139542|139544|139547|139551|139553|139555|141959|141961|141965|150493|150494|150550|150580|150606|150675|150772|150799|150836|150902|150964|150979|151010|151013|151013|151041|151042|151060|151078|151189|151239|151465|151599|151895|151946|152019|152140|152204|152209|152210|152222|152239|152277|152377|152386|152389|152487|152611|152675|166272|180038|180039|180040|180045|180051|180053|180054|180056|180062|180066|180067|180069|180074|180076|180077|180078|180079|180080|180081|180082|180084|180085|180088|180092|180096|180098|180100|180101|180103|180104|181201|181202|181998|181998|182008|182018|182020|182022|182025|182045|182055|182066|182075|182079|182080|182082|182084|182088|182095|182099|182101|182104|182109|182115|182124|182126|182129|182130|182130|182133|182134|182135|182138|182142|182143|182144|182147|182152|182159|182162|182163|182177|182178|182183|182192|182194|185989|185997|186000|186005|198614|212211|212212|212214|212220|212221|212222|212225|212239|212242|212245|212264|212265|215258|221251|221251|221252|221252|221253|221254|221255|221256|221257|221259|221260|221264|221269|221277|221282|221286|221295|221297|221298|221302|221304|221306|221307|221314|226304|226308|231527|231547|231549|231582|231594|232657|232667|232679|232683|232698|232700|232732|232804|232818|232837|232857|238882|238889|238893|238901|238907|238914|238938|238939|238942|238944|286680|286681|287402|289831|290190|290191|290207|358718|358719|358720|358721|358722|358723|358724|358725|358726|358727|358728|366518|366559|366695|392813|392820|392893|392937|392964|392976|393001|393009|393148|393184|393290|393318|393336|393386|405875|405879|405879|405897|405897|405900|405927|405966|405967|419483|419524|432523|451404|451445|451503|451609|451676|473109|473228|473386|480462|480463|483414|483472|488078|518537|518546|518578|537734|539213|539214|539215|539216|539217|539218|539219|539220|539221|539222|539224|539225|539226|539227|539228|539229|558231|575677|575678|575684|616731|630279|630283|682672|763303|790265|790266|790267|790268|790269|790270|790271|790272|790273|790274|790275|790276|790277|790278|790279|790280|790281|807331|885121|885122|885123|885124|922859|967147|970057|970745|974938", + "text": "Hereditary nonpolyposis colorectal cancer type 5" + }, + { + "baseId": "23970|95014", + "text": "Colorectal / endometrial cancer" + }, + { + "baseId": "23983", + "text": "Cutaneous malignant melanoma 6" + }, + { + "baseId": "23985|799597", + "text": "Cocoon syndrome" + }, + { + "baseId": "23986|48699|48700|48701|48702|99963|141906|168540|168541|168543|194368|195642|201906|201910|201919|205746|207288|215010|225866|300680|368274|368590|425650|432211|454426|455075|455087|455740|455745|455748|455995|455997|481413|521266|560500|560502|563254|563256|589802|611389|634465|634466|634467|672063|672064|686769|749644|782384|815982|819631|819632|821924|831248|831249|831250|920214|924189|924190|924191|924192|924193|924194|933063|933064|933065|940828|944769|962879|964118|964262|964263|970815|970816", + "text": "Mental retardation, stereotypic movements, epilepsy, and/or cerebral malformations" + }, + { + "baseId": "23987", + "text": "Coronary artery disease, autosomal dominant, 1" + }, + { + "baseId": "23988|23989|23990", + "text": "Coronary artery disease/myocardial infarction" + }, + { + "baseId": "23991|23992|23992|23992|23993|23993|23994|23995|23996|23997|23997|23997|23998|24003|24007|24007|39073|98339|98342|98342|136314|140731|177194|177327|186625|186626|186627|186627|199958|199958|199960|357113|357114|357115|357116|357117|357118|357119|357120|357121|357122|357123|357123|357124|357125|357126|357127|359268|361851|361852|363677|363677|440518|440518|448103|448103|486906|516115|516120|516124|541187|541188|541190|541192|541199|541201|541203|541204|541207|541211|541213|541214|541215|541217|541220|541223|541226|541231|541233|541302|541304|541306|541308|541309|541310|541311|541313|541315|541316|541317|541318|541319|541320|541321|541322|541323|541332|612257|621084|788739|906231", + "text": "Carnitine palmitoyltransferase II deficiency, infantile" + }, + { + "baseId": "23991|23992|23993|23995|23996|23997|23998|23999|24003|24007|39073|39074|98339|98341|98342|136310|136311|136312|136313|136314|136315|136316|136317|140731|177194|177327|186627|194265|194269|199957|199958|199960|199962|199963|199964|199965|199966|271720|272043|274820|280790|280792|280802|280803|280806|280807|280808|280815|281312|281317|281319|282577|282578|282587|282588|282868|282870|282871|282877|282878|282879|353104|353105|357116|357121|359268|361851|363677|365299|365415|421251|421253|440515|440517|440518|442867|446933|448098|448100|448103|448108|448194|448196|448203|448207|448210|448239|448240|448241|448361|448371|486906|498519|498522|498730|498734|513901|515979|516005|516010|516021|516024|516042|516043|516045|516115|516117|516120|516124|516129|516132|541199|541321|541323|557099|557101|557103|557105|557320|557322|557324|557326|557375|557377|557379|557381|557383|558553|558555|558557|621084|626111|628143|628144|628145|628146|628147|628148|628149|628150|628151|628152|628153|628154|628155|628156|628157|628158|628159|628160|628161|655113|690641|690642|690643|690644|690645|696792|696793|696795|696796|707453|719013|732504|732505|732506|732507|746556|746559|746560|746561|762008|762012|780731|818982|818983|818984|821842|824231|824232|824233|824234|824235|824236|824237|824238|824239|824240|824241|824242|824243|824244|824245|824246|824247|824248|824249|824250|824251|850804|851315|858398|864582|864583|864584|864585|864586|864587|864588|864589|864590|864591|865194|922115|922116|922117|922118|930596|930597|930598|930599|930600|930601|930602|930603|942029|942030|942031|942032|942033|942034|942035|942036|952464|952465|952466|952467|952468|952469|952470|952471|952472|960433|977549", + "text": "Carnitine palmitoyltransferase II deficiency" + }, + { + "baseId": "23991|23992|23992|23993|23993|23994|23995|23997|23997|23998|24005|24006|24007|24007|186627|199958|357113|357114|357115|357116|357117|357118|357119|357120|357121|357122|357123|357123|357124|357125|357126|357127|363677|440518|448103|516115|516120|516124|541207|608939", + "text": "Carnitine palmitoyltransferase II deficiency, myopathic, stress-induced" + }, + { + "baseId": "23992|23992|23992|23993|23997|23997|23997|23998|24000|24001|24002|24003|24004|24007|24007|39073|98342|186627|199958|199958|357113|357114|357115|357116|357117|357118|357119|357120|357121|357122|357123|357123|357124|357125|357126|357127|363677|440518|448103|513901|516115|516120|516124|621084|818384|818385|906342|962668|962669", + "text": "Carnitine palmitoyltransferase II deficiency, lethal neonatal" + }, + { + "baseId": "23992|23993|23997|24007|186627|357123|363677|440518|448103|516115|516120|516124|964158", + "text": "Encephalopathy, acute, infection-induced, 4, susceptibility to" + }, + { + "baseId": "23997|45840|263356|801166", + "text": "Abnormality of the nervous system" + }, + { + "baseId": "24008|24009|24010|215426|712647|724249|724251|724252|724253|737806|744596|752482|752483|752484|760038|768262|787624|791116|867219|867220|867221|867222|867223|867224|867225|867226|867227|867228|867229|867230|867231|867232|867233|867234|867235|867236|867237|867238|867239|867240|867241|867242|867243|867244|867245|867246|867247|867248|867249|867250|867251|867252|867253|867254|867255|867256|867257|867258|867259|867260|867261|867262|867263|867264|867265|867266|867267|867268|867269|867270|867271|867272|867273|867274|867275|867276|867277|867278|867279|867280|867281|867282|867283|867284|867285|867286|867287|867288|867289|867290|867291|867292|867293|867294|867295|867296|867297|867298|867299|867300|867301|867302|867303|867304|867305|867306|867307|867308|867309|867310|867311|867312|867313|867314|867315|867316|867317|867318|867319|867320|867321|867322|867323|867324|867325|867326|867327|867328|867329|867330|867331|867332|867333|867334|867335|867336|867337|867338|867339|867340|867341|867342|867343|867344|867345|867346|867347", + "text": "Cleft lip/palate-ectodermal dysplasia syndrome" + }, + { + "baseId": "24008", + "text": "Orofacial cleft 7" + }, + { + "baseId": "24011|24012|24013|24014|24017|24018|24019|204977|320483|320485|320487|320501|320502|320505|320509|320510|320514|329261|329267|329270|329287|329288|329289|329293|335865|335867|335868|335869|335875|337793|337796|337814|337820|337824|337827|486614|623390|677446|684482|798675|871845|871846|871847|871848|871849|871850|973054", + "text": "Benign hereditary chorea" + }, + { + "baseId": "24015|24016|24017|24018|24020|24021|204977|214542|320483|320485|320487|320501|320502|320505|320509|320510|320514|329261|329267|329270|329287|329288|329289|329293|335865|335867|335868|335869|335875|337793|337796|337814|337820|337824|337827|429557|552175|623380|623381|623390|625814|677056|677446|684480|684482|791400|791401|791402|791403|871845|871846|871847|871848|871849|871850|921217|980949", + "text": "Choreoathetosis, hypothyroidism, and neonatal respiratory distress" + }, + { + "baseId": "24023|24024|27386|27395|27405|27407|27619|27621|27622|27624|27629|27641|27642|27645|27646|27650|27652|28891|28899|28938|28939|28940|29037|29038|29039|29040|29701|29702|29755|31310|31311|31312|31313|31315|31316|32605|32606|32607|32608|32609|32610|32611|34248|34249|34250|34251|34253|34254|34255|34256|38664|38666|40042|44227|46608|48247|48930|48938|48939|48940|49881|52763|54284|83949|102731|133272|133276|137624|150515|151595|152686|166215|168180|168243|171613|171928|172332|175540|175854|179419|185345|185366|185367|185371|185394|191835|204470|204470|204572|207154|207165|207209|208566|213398|213402|216786|216787|236461|236469|236481|239104|239444|239474|239498|242980|243319|243320|243321|243322|243323|243324|243325|243326|243327|243328|243329|243608|256853|260192|263939|359197|362750|362753|362755|362758|362759|362760|362761|362762|362763|362768|362769|362770|362771|362772|362805|362810|362811|362848|362849|362850|362851|362852|362864|362865|362866|362867|362868|362883|362884|362885|362886|362887|362888|362889|362890|362891|362892|362893|362894|362895|362896|362897|362898|362899|362900|362901|362902|362903|362904|362905|362909|362912|362919|362920|362921|362922|362923|362924|362925|362981|362982|362983|362984|362985|362986|362987|362988|362989|362990|362991|363201|363205|363207|363317|363318|363321|363322|363323|363390|363412|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363469|363470|363471|363472|363485|363486|363487|363488|363489|363490|363491|363492|363493|363496|363497|363498|363499|363531|363534|363535|363536|363537|363539|363540|363541|363545|363546|363594|363595|363596|363597|363598|363599|363600|363601|363602|363603|363617|363627|393498|393500|393746|394098|394222|394336|394339|403216|403224|403232|403234|403235|403240|403262|403263|403264|403269|403272|403280|403283|403668|403674|403676|403679|403680|403681|403690|403708|403711|403715|403717|403720|403731|428133|430172|430173|430175|430176|430381|430419|450922|452262|453508|453809|453899|454710|455687|468607|468608|468613|468614|468616|468623|468629|468630|469539|469543|469546|469553|469556|469572|469582|469599|469601|469603|469613|469615|469616|470006|470010|470014|470016|470020|470026|470029|470031|470036|470037|470039|470041|470043|470596|470601|470603|470605|470607|470611|470617|471620|473438|521082|521439|521559|532833|532837|532838|532839|532841|532842|532851|532854|532856|532863|532872|532874|532876|532881|532882|532884|532886|532888|532890|532905|532907|532912|532915|532916|533260|533261|533274|533276|533286|533291|563999|570642|570643|570654|570659|570666|572325|572326|572330|572342|572345|573004|573007|573010|573014|573021|573022|573028|573030|573031|574929|574930|574931|574932|574933|574934|574935|574936|576133|576159|611383|611384|611388|611999|612003|612004|612025|613514|614370|614458|620938|647896|647897|647898|647899|647900|647901|647902|647903|647904|647905|647906|647907|647908|647909|647910|647911|647912|647913|647914|647915|647916|647917|647918|647919|647920|647921|647922|647923|647924|647925|647926|647927|647928|647929|647930|647931|647932|647933|647934|652948|688982|688983|688985|688986|688987|688988|688989|688991|688994|694367|694368|694369|694370|694371|694372|694373|694374|704908|704909|704910|716362|741769|756896|756897|756900|772572|772573|772576|786130|801064|847492|847493|847494|847495|847496|847497|847498|847499|847500|847501|847502|847503|847504|847505|847506|847507|847508|847509|847510|847511|847512|847513|847514|847515|847516|847517|847518|847519|847520|847521|847522|847523|847524|847525|847526|847527|847528|847529|847530|847531|905008|919670|928913|928914|928915|928916|928917|928918|928919|928920|928921|928922|928923|928924|928925|928926|928927|938631|938632|938633|938634|938635|938636|938637|938638|938639|938640|938641|938642|938643|950740|950741|950742|950743|950744|950745|950746|950747|950748|953331|958593|958594|958595|958596|962185|966328|966330|966335|983837", + "text": "Acute myeloid leukemia" + }, + { + "baseId": "24026|24027|24028|24029|24030|24031|24032|24034|24035|24036|44226|45443|305147|305163|305171|305173|305174|305176|305178|305179|305181|305189|305191|308906|308937|308947|308948|314123|314140|314147|314150|314153|314155|314156|314157|314167|314171|357632|441232|544411|544413|544414|544416|544418|544420|544709|544714|544721|544722|544724|544739|544761|544762|544764|544771|544778|544780|544803|544805|544809|544814|577060|620299|637195|700584|723078|723079|736640|744360|766798|766799|899435|899436|899437|899438|899439|899440|899441|899442|899443|899444|899445|899446|899447|899448|899449|899450|899451|899452|899453|899454|899455|899456|899457|900482|900483|900484|978470", + "text": "Cholesterol monooxygenase (side-chain cleaving) deficiency" + }, + { + "baseId": "24038|24039|24040|24041|33486|48576|48577|48578|71504|71505|106658|106659|247752|509056|791895|919821", + "text": "BLOOD GROUP--LUTHERAN INHIBITOR" + }, + { + "baseId": "24042", + "text": "HEREDITARY PERSISTENCE OF FETAL HEMOGLOBIN, KLF1-RELATED" + }, + { + "baseId": "24043|24044|24045|24047|24048|24050|24051|24052|24053|24054|24055|24056|24057|39067|39068|39070|45318|45319|45320|142228|165957|165958|165959|165960|168105|168106|188421|188423|188426|188427|188428|207174|239513|239785|239786|244012|248630|251845|267964|368552|369770|394846|395125|395128|395137|395449|395449|454836|454838|454839|454950|455433|455674|455675|455681|509755|509756|509758|509759|509760|509762|511588|513956|521075|521307|521309|521311|521315|521319|521427|521431|521550|521558|559837|560382|560384|563059|563061|565017|565019|633754|633755|633756|633757|633758|633759|651419|679965|749426|765029|765030|765031|819573|819574|830659|830660|830661|830662|830663|830664|830665|830666|830667|830668|830669|830670|830671|924000|924001|932848|932849|932850|932851|932852|932853|932854|932855|944543", + "text": "Atrial septal defect 7 with or without atrioventricular conduction defects" + }, + { + "baseId": "24047|24057|24058", + "text": "Hypothyroidism, congenital, nongoitrous, 5" + }, + { + "baseId": "24047", + "text": "Interrupted aortic arch" + }, + { + "baseId": "24047", + "text": "Truncus arteriosus" + }, + { + "baseId": "24047", + "text": "Hypoplastic left heart syndrome 2" + }, + { + "baseId": "24047|24048|143220|143221|171115|217183|217184|217185|217186|217187|217188|217247|217248|217249|217250|217251|217252|217253|217254|361695|361696|426523|426524|426525|426526|426527|426528|426529|426530|426531|426532|426533|426534", + "text": "Congenital heart disease" + }, + { + "baseId": "24053|24059", + "text": "Atrioventricular septal defect, somatic" + }, + { + "baseId": "24060|24061|24062|24063|24064|24065|24066|24067|24068|190536|195372|264501|264513|266822|307559|307562|307571|307572|307573|307574|307576|307577|311792|311793|311796|311798|311805|311809|311810|311823|311824|311832|311835|317388|317389|317393|317394|317396|317408|317860|317862|317863|317872|317873|444422|502756|502885|583104|723452|767274|767276|775535|901490|901491|901492|901493|901494|901495|901496|901497|901498|901499|901500|901501|901502|901503|901504|901505|901506|901507|901508|901509|901510|901511|901512|901513|901514|901515|901516", + "text": "Non-acquired combined pituitary hormone deficiency with spine abnormalities" + }, + { + "baseId": "24069|24070|24071|24072|24073|39053|39058|39063|39064|53503|457788|536163|858639|920249", + "text": "Atrial septal defect 2" + }, + { + "baseId": "24073|360984", + "text": "Tricuspid regurgitation" + }, + { + "baseId": "24073|48909|49142|181461|188524|485762|980660", + "text": "Pulmonic stenosis (disease)" + }, + { + "baseId": "24073", + "text": "Pulmonary valve atresia" + }, + { + "baseId": "24073|39054|39055|39058|39058|39063|53500|53502|53503|174532|221750|240222|240223|240224|240225|240226|240227|240228|258522|364058|395870|395874|395879|395882|395885|396124|396130|396131|396134|396261|396266|396273|396274|396275|396548|421649|457121|457150|457160|457163|457170|457746|457748|457753|457776|457777|457784|457787|457788|457788|457791|457794|457797|458150|458158|458160|458163|458165|509989|509991|522966|523164|523221|523224|523236|523251|523434|523445|523446|523588|523593|536163|561900|561904|561906|562338|564580|564582|564584|564591|567329|636544|636545|636546|636547|636548|636549|636550|636551|636552|636553|636554|636555|636556|636557|636558|636559|651839|683967|683970|683971|687170|687171|689898|689899|692341|700360|722808|819936|819937|819938|834044|834045|834046|834047|834048|834049|834050|834051|834052|834053|834054|834055|834056|834057|834058|834059|834060|834061|834062|834063|834064|834065|834066|852110|924983|924984|924985|924986|924987|934066|934067|934068|934069|934070|945824|945825|945826|955275|955276|955277|955278|955279|955280", + "text": "Atrioventricular septal defect 4" + }, + { + "baseId": "24074|24077", + "text": "Epilepsy, juvenile myoclonic 8" + }, + { + "baseId": "24074|24075|24076|24077|24077|24078|106501|106502|106503|106504|214419|214420|214421|214422|214423|214424|214425|214426|214427|214428|214429|214430|214431|214432|214433|214434|214435|214436|214437|214438|214439|214440|214441|214442|214443|214444|214445|214446|214447|214448|801547", + "text": "Leukoencephalopathy with ataxia" + }, + { + "baseId": "24075|24077|24077|24078|214448|589827", + "text": "Epilepsy with grand mal seizures on awakening" + }, + { + "baseId": "24076", + "text": "Epilepsy, juvenile absence 2" + }, + { + "baseId": "24077|414926|434792|434793|434794|434795|434796|550235|550239", + "text": "Hyperaldosteronism, familial, type II" + }, + { + "baseId": "24079|24080|39051|39052|99488|99489|99491|99491|99492|99493|99494|99495|99496|99496|99497|99499|99501|99503|99503|99504|99506|99507|135263|135264|135265|135266|135267|135268|135269|135270|135271|135273|142243|142245|142247|142248|142249|142250|142251|142252|142253|142256|142258|142259|142260|176951|177082|177214|177214|177345|190784|190785|190787|191000|191001|191649|192289|192291|192291|195620|201644|201646|201649|201649|201650|201652|201653|201655|201655|201657|201659|201660|201662|201663|201664|201669|201671|201674|201675|201675|201677|201678|201678|201686|201686|201687|201688|201689|201691|201691|201692|201695|201698|201703|201704|201706|201707|201708|201709|201710|201711|201712|201713|201715|201716|201717|201719|201720|201720|201721|201722|207002|207003|207007|207008|207009|225829|238960|238961|266829|266974|267244|271901|286721|286733|286749|286760|286773|286774|286775|286780|286789|286790|286791|286795|286797|286802|286804|286806|286812|287440|287443|287454|287458|287459|287470|287479|287481|287499|287526|287528|287534|287540|287541|287542|287544|287545|287546|287548|287551|287552|287568|289871|289873|289876|289883|289885|289887|289890|289896|289906|289907|289908|289920|289921|289922|289930|289932|289933|289947|289954|290260|290264|290274|290277|290280|290303|290306|290320|290336|290337|290340|290349|290353|290354|290355|290357|290359|290360|290362|290363|290372|359453|366594|366625|366626|366819|366841|366852|366856|366857|366867|366915|367595|367660|367674|367715|367722|393023|393025|393028|393061|393063|393218|393408|393417|405989|414890|421398|425497|425498|425499|428074|440720|443271|443278|448593|451360|451366|451367|451520|451521|451525|451530|451533|451687|451691|451692|451694|451700|451705|451707|451709|451710|451713|451715|495430|495430|499832|500075|500084|500205|500221|500291|511023|513413|516220|516232|516243|516247|516248|518484|518486|518489|518493|518494|518496|518497|518499|518499|518500|518501|518503|518551|518554|518557|518561|518618|518619|518622|518628|538351|550862|552066|557454|557511|558239|558241|558243|558612|558614|558616|558618|558620|559158|559160|560842|560844|560846|560858|560859|560865|560866|560867|561829|561833|561834|561841|561846|579038|579047|579075|586566|614247|630370|630371|630372|630373|630374|630375|630376|630377|630378|630379|630380|630381|630382|630383|630384|630385|630386|630387|630388|630389|630390|630391|630392|630393|630394|630395|630396|630397|650806|650814|650875|650941|651000|659199|683504|686220|686224|686225|691184|695148|708306|719902|719903|747692|747695|759142|763349|763351|763352|763356|781397|781398|781403|790282|819257|819258|819259|819260|819261|819262|826798|826799|826800|826801|826802|826803|826804|826805|826806|826807|826808|826809|826810|826811|826812|826813|826814|826815|826816|826817|826818|826819|826820|826821|826822|826823|826824|826825|826826|826827|826828|826829|826830|826831|826832|826833|826834|826835|826836|826837|826838|826839|826840|851196|851198|851200|851202|885171|885172|885173|885174|885175|885176|885177|885178|885179|885180|885181|885182|885183|885184|885185|885186|885187|885188|885189|885190|885191|885192|885193|885194|885195|885196|885197|885198|885199|885200|885201|885202|885203|885204|885205|885206|885207|885208|885209|885210|885211|885212|885213|885214|885215|885216|885217|885218|885219|885220|885221|885222|885223|885224|918775|918776|918777|922870|922871|922872|922873|922874|922875|922876|922877|922878|922879|922880|922881|922882|922883|922884|931519|931520|931521|931522|931523|931524|931525|931526|931527|931528|931529|943036|943037|943038|943039|943040|943041|943042|943043|943044|953142|953143|953144|953145|953146|953147|953148|953149|964647", + "text": "Pitt-Hopkins-like syndrome 2" + }, + { + "baseId": "24082|24085|24086|39038|39039|39040|153737|165689|165690|170197|246906|246906|283683|283685|283690|283692|283696|283702|283703|283703|283706|283706|283707|283707|283708|283708|284355|284356|284358|284361|284370|284378|284378|284382|284382|284383|284385|284386|286348|286350|286354|286356|286358|286359|286359|286360|286362|286366|286368|286368|286371|286372|286372|286373|286373|286374|286374|286378|286379|286380|286703|286705|286708|286711|286712|286714|286714|286717|286717|286719|286719|286724|286729|286729|286732|286732|286734|286734|286741|286742|286750|286751|286752|405526|414861|450165|450165|450340|450469|517473|517475|517560|517561|517596|517597|517597|517751|517762|557800|557802|559021|559510|559512|620045|629241|629242|629243|629244|629245|629246|629247|629248|629249|629250|629251|650934|650935|719485|743858|743869|762743|778989|781101|815887|819094|825519|825520|825521|825522|825523|825524|825525|825526|825527|825528|825529|825530|825531|825532|825533|825534|850870|883090|883091|883092|883093|883094|883095|883096|883097|883098|883099|883100|883101|883102|883103|883104|883105|883106|883107|883108|883109|883110|883111|883112|883113|883114|883115|883116|883117|883118|883119|883120|887226|887227|922499|922500|922501|931065|942534|942535|942536|952869|952870|952871|952872|952873|959617|960460", + "text": "Immunodeficiency 31a" + }, + { + "baseId": "24083|24084|24087|39037|39038|39039|39040|153737|170197|246906|269730|283703|283706|283707|283708|284378|284382|286359|286368|286372|286372|286373|286374|286714|286717|286719|286729|286732|286734|405526|414861|414861|450165|450340|450469|517473|517475|517560|517561|517596|517597|517751|517762|557800|557802|559021|559510|559512|629241|629242|629243|629244|629245|629246|629247|629248|629249|629250|629251|650934|650935|743858|743869|762743|778989|781101|790141|815887|819094|825519|825520|825521|825522|825523|825524|825525|825526|825527|825528|825529|825530|825531|825532|825533|825534|850870|918724|922499|922500|922501|931065|942534|942535|942536|952869|952870|952871|952872|952873|959617|960460", + "text": "Mycobacterial and viral infections, susceptibility to, autosomal recessive" + }, + { + "baseId": "24088|24089|24090|99934|99935|99936|99938|99940|99941|99942|99943|99944|99949|134737|134738|134739|134740|134741|134742|134743|172245|190387|190801|191207|191208|191209|191368|191894|194900|195308|195639|196234|207981|207982|226475|247082|254625|254627|254629|254630|254631|268241|270576|271650|271654|272143|317998|318002|318003|318016|325918|325926|332158|333611|333612|333649|333652|360105|372450|373162|373384|375337|408717|426004|426006|429442|429443|445055|461788|462329|462334|462339|462586|462591|462597|462599|462604|462605|462612|462613|462617|463070|463073|463075|463192|463197|463201|463204|463206|490984|504972|513579|527260|527270|527272|527274|527276|527280|527284|527285|527289|527290|527515|527517|527521|527523|527526|527527|527531|527537|527548|527549|527550|527793|527797|527807|527809|527811|527812|527815|565607|565608|565614|565619|565620|565624|565626|566917|566931|566932|566948|566950|566951|566956|566959|566960|568122|568126|568129|568131|568133|571910|571920|571924|571930|571933|578501|620447|626218|641258|641259|641260|641261|641262|641263|641264|641265|641266|641267|641268|641269|641270|641271|641272|641273|641274|641275|641276|641277|641278|652252|652713|672088|688031|693240|693241|693244|693245|695573|695575|713630|760023|769218|776071|778026|778223|784430|784431|820508|840080|840081|840082|840083|840084|840085|840086|840087|840088|840089|840090|840091|840092|840093|840094|840095|840096|840097|840098|840099|840100|840101|840102|840103|840104|840105|852493|926678|926679|926680|926681|936179|936180|936181|936182|936183|936184|936185|936186|936187|936188|940270|940271|940272|948089|948090|948091|948092|948093|948094|948095|948096|948097|948098|948099|956902|956903|956904|960047|960048|961306", + "text": "Muscular dystrophy, congenital, due to integrin alpha-7 deficiency" + }, + { + "baseId": "24093|24598|24610|24618|33220", + "text": "Parkinson disease, mitochondrial" + }, + { + "baseId": "24093|135149|264825|608862", + "text": "Mitochondrial complex 1 deficiency, nuclear type 7" + }, + { + "baseId": "24095|24096|24097|24098|24099|24628|39034|39035|39036|133969|140175|140176|140177|204412|211400|211402|211404|211406|211407|211408|253581|308856|313494|313499|319282|319291|319293|319298|319923|373084|438413|503456|524673|524908|525195|525198|538409|538410|611362|638393|652055|767501|767502|820168|836280|836281|836282|902461|902462|902463|902464|902465|903441|903442|925634|934826|934827|940157|946680|955899|961798", + "text": "3-Methylglutaconic aciduria type 1" + }, + { + "baseId": "24100|24101|24102|24103|24104|24105|24106|24107|24108|24109|24110|76436|76547|76548|76549|76550|76551|76552|76553|76554|76555|76556|76557|76559|76560|76561|76562|76563|76564|76565|76566|76567|76569|76570|99873|99874|99880|140730|186839|191998|200218|200219|200220|200221|267167|268011|271352|271750|358051|358052|358053|358054|358055|358056|358057|358058|358059|358060|358061|358062|358063|358064|371654|372369|372371|372374|372375|372388|372616|374261|374262|374266|433458|461435|461592|461594|461935|462260|503413|503748|503753|503987|504343|504352|504358|526994|526997|546287|546289|546297|546298|546300|546302|546534|546536|546538|546671|546672|546676|546929|546933|546942|546945|546947|546949|564873|564875|566120|609810|623178|640392|640393|640394|640395|640396|693102|693103|693104|693105|693106|695540|701949|701951|713110|738244|738246|738247|752925|752926|752927|768709|768711|768712|768714|768715|768716|768717|768718|768720|784161|784162|791166|838923|838924|838925|838926|838927|838928|838929|838930|838931|838932|851913|919388|919389|919390|935757|935758|935759|940235|941013|947640|947641|956640|956641|956642|956643|956644|956645|956646|956647|956648|956649", + "text": "Carnitine palmitoyltransferase 1A deficiency" + }, + { + "baseId": "24111|24112|423255|423257|788912", + "text": "Tricho-dento-osseous syndrome" + }, + { + "baseId": "24112|190465|193568|256264|256265|274094|274987|329075|329080|329082|329084|329085|329087|329089|329093|329097|339182|339188|339190|339197|339200|339203|339205|339209|339212|339220|339227|339229|345103|345108|345121|345123|345124|346471|346474|346477|346485|346487|346489|346494|361021|423255|423257|877887|877888|877889|877890|877891|877892|877893|877894|877895|877896|877897|877898|877899|877900|877901|877902|877903|877904|877905|877906|877907|877908|877909|877910|880546", + "text": "Amelogenesis imperfecta, type IV" + }, + { + "baseId": "24113|24114|24115|24116|24117|317568|317569|317570|317578|317582|317585|317588|317589|317590|317600|317602|325394|325395|325396|325400|325401|325404|325407|325414|325415|325416|325426|325437|325438|325439|325445|325455|325456|331638|331654|331663|331667|331670|331671|331673|331678|331680|331681|331682|331691|333137|333138|333144|333148|333150|333156|333157|333164|333165|333169|333172|333175|333177|353247|353248|626216|769181|788868|870035|870036|870037|870038|870039|870040|870041|870042|870043|870044|870045|870046|870047|870048|870049|870050|870051|870052|870053|870054|870055|870056|870057|870058|870059|872253|872254|872255|872256|872257", + "text": "Anemia, hypochromic microcytic, with iron overload 1" + }, + { + "baseId": "24118|24119|613440|613441|798461", + "text": "Cytosolic phospholipase-A2 alpha deficiency associated bleeding disorder" + }, + { + "baseId": "24123|24124|101109|101110|101111|101111|101111|101112|101112|101113|101113|101115|101115|101116|101116|101117|101117|101118|101118|101119|101119|101120|101120|101121|101121|101122|101122|101123|101123|101123|101124|101125|101125|101126|101126|101126|101127|101128|101128|101129|101129|101130|101131|101133|101133|101134|101136|101136|101138|101140|101140|135556|135557|135558|135559|135560|135560|135561|135562|135562|135563|135564|135564|135565|135566|135567|135567|135568|135568|135569|135569|135570|135570|135571|135571|135572|135572|135573|135573|135574|135574|135575|135575|135576|135576|135577|135577|135578|135579|135579|135580|135580|135581|135581|135585|135585|135586|135587|135587|135588|135589|135590|135590|135591|135591|135592|135592|135593|135593|135594|135594|142613|176982|176982|177113|177114|177244|177245|177245|177245|177246|177246|177376|177376|177377|177377|178007|178007|178008|190463|190840|190841|191225|191382|191382|191681|191681|191908|192016|192016|192763|192763|192843|192843|192843|192918|192918|193188|193188|193790|194028|194062|194064|194118|194119|194600|194600|194601|194627|194627|194627|194646|194646|195087|195130|195130|195130|195143|195143|195165|195165|195166|195173|195515|195515|195687|195687|205000|205000|205000|207437|207439|207440|207440|207441|207442|207443|207443|207445|207449|207451|207451|207452|207453|207454|207454|207455|207455|207456|207457|207458|207458|227451|237211|237211|237211|265480|265480|265779|265779|265869|265869|266388|269138|269492|269758|271076|271328|271328|271362|271384|271384|271384|271639|272072|272222|273754|275081|275081|301324|301325|301330|301330|301339|301339|301340|301346|301346|301352|301353|301353|301355|301355|301360|301360|301362|301362|301364|301364|301369|301372|301374|304504|304512|304513|304513|304513|304514|304524|304524|304532|304534|304534|304540|309106|309109|309111|309111|309114|309115|309115|309116|309116|309118|309118|309119|309119|309143|309144|309144|309150|309150|309156|309164|309165|309166|309177|309177|309269|309275|309276|309277|309278|309278|309288|309292|309293|309293|309300|309303|309303|309307|309315|309315|309316|309325|309325|309354|309403|368815|368816|368816|368818|368819|368819|368820|368820|369398|369399|426667|426667|428647|428648|428649|428651|441027|441029|441030|441031|444034|444034|444034|455889|455890|455893|455897|455905|455911|455913|455914|455919|455922|455928|455932|455935|455941|455941|455949|455949|455949|455950|455956|455960|455963|455968|456191|456193|456195|456198|456200|456206|456207|456209|456210|456210|456213|456215|456509|456516|456518|456520|456522|456523|456527|456868|456874|456877|456879|456881|456885|456888|456890|456892|456904|456908|456910|456912|456912|456913|456914|456915|456931|488628|488628|488848|489416|489507|489661|489661|489735|489914|492799|492833|492833|493077|493423|501502|501834|501852|501856|502130|508820|521909|521914|521917|521919|521922|521924|521932|521935|521938|521940|521942|521942|521942|521944|522270|522276|522276|522285|522287|522290|522293|522295|522297|522300|522320|522321|522323|522324|522327|522332|522335|522337|522342|522346|522349|522352|522352|522356|522356|522677|522679|522685|522689|522692|522694|522698|522698|522698|522701|522706|522708|536722|537514|537514|538390|561124|561131|561137|561145|561147|561148|561149|561152|561153|561161|561172|561173|561177|561179|561182|563906|563911|563912|563914|563917|563918|563921|563925|563928|566188|566198|566200|566214|566216|566216|566228|566231|566237|566250|566254|566255|576123|576929|576930|584429|585958|587188|612768|635340|635341|635342|635343|635344|635345|635346|635347|635348|635349|635350|635351|635352|635353|635354|635355|635356|635357|635358|635359|635359|635360|635361|635362|635363|635364|635364|635365|635366|635367|635368|635369|635370|635371|635372|635373|635374|635375|635376|635377|635378|635379|635380|635380|635381|635381|635382|635383|635384|635385|635386|635387|635388|651624|692085|692086|692087|699719|699721|710674|710676|710678|722217|722218|722219|722220|722220|722221|735851|735852|750312|750313|750314|750315|759617|759689|765937|765940|765944|765945|765948|765949|765959|775233|775240|775245|777569|777600|777667|777668|777669|779295|782699|782701|782702|782705|782707|782709|787605|788810|793194|795944|795944|819771|832631|832632|832633|832634|832635|832636|832637|832638|832639|832640|832641|832642|832642|832643|832644|832645|832646|832647|832648|832649|832650|832651|832652|832653|832654|832655|832656|832657|832658|832659|832660|832661|832662|832663|832664|832665|832666|832667|832668|832669|832670|832671|832672|832673|832674|832675|832676|832677|832677|832678|832679|832680|832681|832682|832683|832684|832685|832686|832687|832688|832689|832690|832691|832692|832693|832694|832695|832696|832697|832698|832699|832700|832701|832702|832703|832704|832705|832706|832707|832708|832709|832710|832711|832712|832712|832713|832714|832715|832716|832717|832718|832719|832720|832721|832722|832723|832724|832725|832726|832727|832728|832729|832730|832731|832732|832733|832734|832735|832736|832737|832738|832739|832740|852048|852312|897085|897086|897087|897088|897089|897090|897091|897092|897093|897094|897095|897096|897097|897097|897098|897099|897100|897101|897102|897103|897104|897105|897106|897107|897108|897109|897110|897111|897112|897113|897114|897115|897116|897117|897118|897119|897120|897121|897122|897123|897124|897125|897126|897127|897128|897129|897130|897131|897132|900288|900289|900290|900291|900292|900293|919065|924530|924531|924532|924533|924534|924535|924536|924537|924538|924539|924540|924541|924542|924543|924544|924545|924546|924547|924548|924549|924550|924550|924551|924552|924553|924554|924555|924556|924557|924558|924559|933548|933549|933550|933551|933552|933553|933554|933555|933556|933557|933558|933559|933560|933561|933562|933563|933564|933565|933566|933567|933568|933569|933570|933571|933572|933573|933574|933575|933576|933577|933578|940054|940863|940864|940865|945268|945269|945270|945271|945272|945273|945274|945275|945276|945277|945278|945279|945280|945281|945282|945283|945284|945285|945286|945287|945288|945289|945290|945291|945292|945293|945294|954946|954947|954948|954949|954950|954951|954952|954953|954954|954955|954956|954957|954958|954959|954960|954961|954962|954963|954964|954965|954966|954967|954968|954969|954970|959822|960616", + "text": "Norman-Roberts syndrome" + }, + { + "baseId": "24125|24127|24129|24130|24133|24134|24135|24136|24138|24139|24140|33488|44267|44269|44273|44278|44279|44281|44282|44282|44285|44288|44289|48069|48070|48071|167529|167530|167532|167533|167534|167535|167536|167537|167539|167540|167543|167544|167545|167546|167550|167551|167553|167554|167555|167557|186811|186812|186813|186814|186815|186816|186816|186817|186818|186819|186820|192808|194041|207841|207844|207848|207849|207850|207851|207852|207853|207853|207854|207857|207858|207859|214504|227344|237314|254064|254068|254069|260796|264418|264506|313388|313389|313393|313399|313403|313405|313413|313414|313416|313419|313421|319492|319496|319498|319499|319504|319505|319511|319514|319516|319517|319522|319523|319524|319528|325627|325629|325632|325633|325634|325635|325636|325642|325643|325644|325650|325651|326668|326673|326677|326678|326698|326700|326703|357931|357932|357933|357934|357935|357936|357937|357938|357939|357940|357941|357942|357943|357944|357945|357946|357947|357948|357949|357950|357951|357952|357953|357954|357955|357956|357957|357958|357959|357960|380248|380249|429197|429198|429199|429199|429200|429202|429204|429205|429207|429208|429208|429209|429210|429211|429214|441404|441408|441414|441417|487472|487507|487507|538421|545843|545852|545855|545859|545860|545867|545874|545879|545886|545888|545899|545907|545908|545922|545924|545926|545932|545934|545935|545937|545939|545942|546145|546147|546152|546155|546156|546158|546162|546163|546166|546168|546172|546182|546183|546185|546190|546191|546196|546197|546198|546200|546203|546205|546207|546208|546209|546211|546212|546213|546215|546216|546218|546221|546230|546232|546245|546251|546259|546272|546275|546276|546279|546285|546288|546291|546293|546296|546301|546306|546309|546311|546313|546319|546326|546326|546330|546341|546345|546348|546350|546464|546465|546468|546471|546473|546477|546482|546485|546488|546493|546495|546497|546499|546501|546503|546505|546507|546511|546517|546522|546524|546528|577180|577181|577184|612091|620396|621346|621349|692972|768328|783925|783933|791118|791119|791120|791121|798639|818721|867614|867615|867616|867617|867618|867619|867620|867621|867622|867623|867624|867625|867626|867627|867628|867629|867630|867631|867632|867633|867634|867635|868624|868625|868626|868627|868628|868629|961866|966053|969253|970930", + "text": "Hyperinsulinemic hypoglycemia, familial, 1" + }, + { + "baseId": "24125|24127|44268|44281|45007|45009|45011|45014|45015|45016|45017|45021|45022|45023|134684|134686|167531|167544|186812|186814|194041|208662|208663|214504|237314|335452|335454|335461|335462|335465|335467|335470|335479|335495|335497|335506|335507|335519|335521|335523|345257|345263|345264|345266|345268|345270|345275|345281|345285|345287|345289|345293|345301|345302|345305|345307|349981|349986|349987|349989|349990|349992|349994|349995|349999|350000|350006|350009|350985|350987|350988|350991|350992|350995|350998|350999|351002|351003|351004|351007|351010|351021|351024|357938|357940|357944|486284|487472|487507|507169|507770|546191|546251|578489|578490|620658|621346|621347|621349|621807|760954|886111|886112|886113|886114|886115|886116|886117|886118|886119|886120|886121|886122|886123|886124|886125|886126|886127|886128|886129|886130|886131|886132|886133|886134|886135|886136|886137|886138|886139|886140|886141|886142|886143|886144|886145|886146|887460|959982|983968", + "text": "Familial hyperinsulinism" + }, + { + "baseId": "24127|24144|24145|44267|44269|44273|44276|44278|44282|167529|167532|167533|167534|167535|167536|167537|167539|167540|167543|167545|167550|167551|167553|167554|167555|186812|186816|186819|192808|207846|207850|207852|207853|207853|207854|227344|254064|254068|254069|313388|313389|313393|313399|313403|313405|313413|313414|313416|313419|313421|319492|319496|319498|319499|319504|319505|319511|319514|319516|319517|319522|319523|319524|319528|325627|325629|325632|325633|325634|325635|325636|325642|325643|325644|325650|325651|326668|326673|326677|326678|326698|326700|326703|380248|380249|429199|429208|429208|441402|441408|487507|545867|546326|546501|577180|620396|692972|768328|783925|783933|867614|867615|867616|867617|867618|867619|867620|867621|867622|867623|867624|867625|867626|867627|867628|867629|867630|867631|867632|867633|867634|867635|868624|868625|868626|868627|868628|868629", + "text": "Transient neonatal diabetes mellitus 2" + }, + { + "baseId": "24127|44273|44277|44281|44284|44289|167532|167533|167534|167535|167536|167537|167539|167544|167545|167546|167547|167550|167554|186812|186816|186819|192808|194041|207847|207849|207850|207852|207853|227344|254064|254068|269612|319498|319522|325635|325650|326700|357942|357951|372093|380248|429204|429208|441404|441409|441413|441415|441417|621346|621348|621807|692971|692972|695500|701679|701680|737887|752576|752577|752585|752586|768323|768325|768326|768329|768330|768342|768343|768346|783929|787726|793383|867618|867625|868625|978892|978893|978894|978895|978896|978897|978898|978899|978900|978901|978902|978903|978904|978905|978906|978907|978908|978909|978910|978911|978912|978913|978914|978915|978916|978917|978918|978919|978920|978921|978922|978923|978924|978925|978926|978927|978928|978929|978930|978931|978932|978933|978934|978935|978936|978937|978938|978939|978940|978941|978942|978943|978944|978945|978947|978948|978949", + "text": "Hereditary hyperinsulinism" + }, + { + "baseId": "24137|44278|44282|186816|207853|429199|429208|487507|546326|964358", + "text": "Leucine-induced hypoglycemia" + }, + { + "baseId": "24141|24142|24143|24146|24147|24148|24149|24150|44281", + "text": "Permanent neonatal diabetes mellitus 3" + }, + { + "baseId": "24151|24151|24152|24153|24153|24154|24155|24156|24157|24157|24158|24159|89550|141271|141271|171902|171902|171903|171903|191017|191367|191367|191531|191532|191533|191657|191657|191658|191658|192323|195304|195305|195306|195306|195307|195938|195938|200699|214088|214088|214089|214089|214090|214090|215437|215437|230227|231804|231804|231805|231806|231806|231807|231807|231808|231809|231811|231811|237047|237047|237453|244162|244163|244671|244674|244675|244676|244678|244679|244680|244681|244681|244684|244684|244686|244687|244688|244689|244689|244690|244690|244691|244691|244692|244694|244694|244695|244696|244696|254287|254288|254290|254290|254291|254291|254292|254293|254294|254297|254297|254298|254300|254300|254301|254301|254302|254302|254303|254304|254306|254307|254307|254308|254308|254309|254309|254310|254310|254311|268601|268601|268886|268886|270553|272214|272215|272216|272216|273263|273263|314998|315002|315007|315009|315009|315010|315010|315020|315023|315027|315030|315037|321790|321790|321791|321791|321792|321792|321796|321807|321807|321808|321808|321812|321812|321813|321813|321814|321822|321824|321826|321827|327853|327853|327855|327855|327856|327856|327865|327867|327868|327868|327871|327874|327874|327875|327875|327878|327881|327884|328930|328933|328933|328934|328937|328938|328938|328939|328961|328961|328963|328972|328976|328978|328978|328983|328984|328985|328989|328995|329016|329017|359908|359908|360933|360933|372404|372408|372412|372412|372633|372636|372637|372643|372650|372653|374281|374289|374289|413321|415301|425942|426718|426719|433633|433636|433636|441485|441485|441486|441486|444880|444881|461439|461442|461444|461449|461601|461606|461614|461617|461617|461619|461628|461629|461638|461646|461654|461936|461941|461945|461948|461948|461950|461952|462264|462272|462274|462275|462278|462282|462289|480537|482001|482002|488174|488175|488181|488769|492298|503421|503427|503767|503767|503996|504001|504005|504390|511936|511937|512853|514295|526437|526458|526464|526465|526468|526469|526470|526472|526473|526473|526478|526488|526490|526492|526507|526509|526511|526753|526755|526761|526764|526767|527003|527007|527013|527019|527026|527031|527032|527034|527039|527039|527041|552154|552154|564877|564879|564887|564892|564895|564897|564899|564901|566123|566127|566131|566138|566141|566141|566142|566147|566156|566157|566158|567491|567492|567498|567501|567508|567510|567511|567511|567514|567516|569959|570922|570926|570936|570939|570947|570964|570972|570974|570976|570977|608961|611754|625209|625212|625226|625231|625232|625232|625251|625254|625255|625257|640397|640398|640399|640400|640401|640402|640403|640404|640405|640406|640407|640408|640409|640410|640411|640412|640413|640414|640415|640416|640417|640418|640419|640420|640421|640422|640423|640424|640425|640426|640427|640428|640429|640430|640431|640432|640433|640434|640434|654687|683036|693108|693109|693109|701953|730799|744748|768722|768723|768724|768727|784164|784165|815846|838933|838934|838935|838936|838937|838938|838939|838940|838941|838942|838943|838944|838945|838946|838947|838948|838949|838950|838950|838951|838952|838953|838954|838955|838956|838957|838958|838959|838960|838961|838962|838963|838964|838965|838966|838967|838968|838969|838970|838971|838972|852398|868714|868715|868716|868717|868718|868719|868720|868721|868722|868723|868724|868725|868726|868727|868728|868729|868730|868731|868732|868733|868734|868735|868736|868737|905286|926370|926371|926372|926373|926374|926375|926376|926377|926378|926379|935760|935761|935762|935763|935764|935765|935766|935767|935768|935769|941014|947642|947643|947644|947645|947646|947647|947648|947649|947650|956650|956651|956652|956653|956654|956655|960012|960762|970148", + "text": "Spinal muscular atrophy, distal, autosomal recessive, 1" + }, + { + "baseId": "24151|24152|24153|24157|89550|141271|171902|171902|171903|171903|171904|171905|171906|191017|191367|191532|191533|191657|191658|192323|195304|195305|195306|195307|195938|200698|200699|214088|214089|214089|214090|214090|215437|230227|231804|231805|231806|231807|231807|231808|231809|231811|237047|237453|244674|244675|244676|244678|244679|244680|244681|244684|244686|244687|244688|244689|244690|244691|244692|244694|244695|244696|254290|254291|254292|254297|254300|254301|254302|254307|254308|254309|254310|268601|268886|270553|272214|272215|272216|273263|315009|315010|321790|321791|321792|321807|321808|321812|321813|327853|327855|327856|327868|327874|327875|328933|328938|328961|328978|359908|360933|372404|372408|372412|372633|372636|372637|372643|372650|374281|374289|413321|415301|425942|426718|426719|426719|433633|433636|441485|441486|444880|444881|461439|461442|461444|461449|461601|461606|461614|461617|461619|461628|461629|461638|461646|461654|461936|461941|461945|461948|461950|461952|462264|462272|462274|462275|462278|462282|462289|482001|482002|488769|492298|503421|503427|503767|503996|504001|504005|504390|511936|513440|513441|526437|526458|526464|526465|526468|526469|526470|526472|526473|526478|526488|526490|526492|526507|526509|526511|526753|526755|526761|526764|526767|527003|527007|527013|527019|527026|527031|527032|527034|527039|527041|552154|564877|564879|564887|564892|564895|564895|564897|564899|564901|566123|566127|566131|566138|566141|566142|566147|566156|566157|566158|567491|567492|567498|567501|567508|567510|567511|567514|567516|569959|570922|570926|570936|570939|570947|570964|570972|570974|570976|570977|611754|614605|625209|625226|625231|625232|625254|625257|640397|640398|640399|640400|640401|640402|640403|640404|640405|640406|640407|640408|640409|640410|640411|640412|640413|640414|640415|640416|640417|640418|640419|640420|640421|640422|640423|640424|640425|640426|640427|640428|640429|640430|640431|640432|640433|640434|683036|693108|693109|701953|730799|744748|768722|768723|768724|768727|784164|784165|815846|838933|838934|838935|838936|838937|838938|838939|838940|838941|838942|838943|838944|838945|838946|838947|838948|838949|838950|838951|838952|838953|838954|838955|838956|838957|838958|838959|838960|838961|838962|838963|838964|838965|838966|838967|838968|838969|838970|838971|838972|852398|905286|926370|926371|926372|926373|926374|926375|926376|926377|926378|926379|935760|935761|935762|935763|935764|935765|935766|935767|935768|935769|941014|947642|947643|947644|947645|947646|947647|947648|947649|947650|956650|956651|956652|956653|956654|956655|960012|960762", + "text": "Charcot-Marie-Tooth disease, axonal, type 2S" + }, + { + "baseId": "24160|24161|24162|24163|24164|24165|150303|150304|215409|236854|429031|590112|970917", + "text": "Hypogonadotropic hypogonadism 6 with or without anosmia" + }, + { + "baseId": "24165|40253|40254|250134|254031|676956|790036|790934", + "text": "Holoprosencephaly 1" + }, + { + "baseId": "24166|415882|480767|970912", + "text": "Obesity, hyperphagia, and developmental delay" + }, + { + "baseId": "24167|24168|24169|227289|252041|298465|305182|305325|305328|455122|455762|563277|565260|689803|819646|819647|831350", + "text": "Cataract 13 with adult i phenotype" + }, + { + "baseId": "24170|24171", + "text": "ADULT i BLOOD GROUP PHENOTYPE" + }, + { + "baseId": "24172|904212", + "text": "Hirschsprung disease, cardiac defects, and autonomic dysfunction" + }, + { + "baseId": "24173|24174|31043|33104|33107|33108", + "text": "Hypertension, essential, susceptibility to" + }, + { + "baseId": "24175|24178|24179|24180|24181|186762", + "text": "Ataxia, Friedreich-like, with isolated vitamin E deficiency" + }, + { + "baseId": "24175|24176|24178|24179|24180|76497|76498|76499|76500|76503|76504|76505|76506|98779|186762|186763|205158|262263|262264|273731|305702|305704|305711|305713|305723|309719|309722|309723|309728|309729|309730|309733|314935|314938|314944|314946|314949|314950|314953|314955|314956|314963|314964|314968|315033|315035|315041|315076|315077|315080|357633|357634|357635|357636|357637|357638|361111|441239|441241|544455|544457|544461|544746|544751|544756|544798|544799|544852|544853|577065|621284|736729|736732|766871|766873|790813|793287|899902|899903|899904|899905|899906|899907|899908|899909|899910|899911|899912|899913|899914|899915|899916|899917|899918|899919|899920|899921|899922|899923|900510|978472|978473|978474|978475|978476", + "text": "Familial isolated deficiency of vitamin E" + }, + { + "baseId": "24176", + "text": "Ataxia and retinitis pigmentosa with isolated vitamin E deficiency" + }, + { + "baseId": "24182|99484|177941|177942|191518|191777|191777|237062|237123|254715|265975|268050|271271|273778|274070|318444|318456|318472|326590|326599|326608|334477|439240|445085|489752|489752|490942|492197|492198|492687|568171|572034|584575|584615|585129|588040|588243|588871|589317|611777|702506|713741|713742|738864|738865|738866|753604|753608|760252|778118|820436|840260|840261|840262|840263|840264|840265|840266|840267|840268|840269|870428|936258|936259|936260|936261|940274|948153|948154|948155|948156|948157|948158|956935|956936|956937|956938|956939|960058|961789", + "text": "Neonatal adrenoleucodystrophy" + }, + { + "baseId": "24182|24183|191518|191777|191777|237062|237123|254715|254716|254718|268050|271271|273778|274070|318412|318414|318420|318421|318422|318440|318444|318456|318468|318472|318474|318475|318480|318483|326572|326590|326590|326599|326605|326609|326622|326623|326624|326626|326628|332771|332777|332778|332789|332831|332839|332840|332844|332845|332853|332856|332861|332865|332866|334419|334421|334425|334446|334466|334477|334479|334485|334489|334493|334513|334516|334526|334535|334536|445085|489752|490774|568171|588243|702506|713741|738865|870408|870409|870410|870411|870412|870413|870414|870415|870419|870420|870428|870429|870430|870431|870432|870433|870434|870435|870436|870437|870438|870439|870440|870441|870442|870443|870444|872289|872292|872293|961789", + "text": "Peroxisome biogenesis disorder 2A (Zellweger)" + }, + { + "baseId": "24184|24185|24186|24187|34586|34587|90780|152879|190635|190636|193731|194525|214078|238076|255346|255348|255356|323310|323320|323323|323325|323328|323337|323339|323346|332989|332991|332995|339852|339853|339855|339856|339859|339861|341271|341275|341278|341280|384491|400478|429716|620528|622428|672023|690116|788890|842667|874074|874075|874076|874077|874078|874079|874080|874081|874082|874083|874084|874085|874086|874087|874088|874089|874090|876565|919594", + "text": "Bardet-Biedl syndrome 4" + }, + { + "baseId": "24188|142851|211657|318776|318777|318779|318780|318782|318783|327125|327126|327128|327137|333233|333244|333255|333257|333258|333259|334960|334965|334966|334967|504138|870601|870602|870603|870604|870605|870606|870607|870608|870609|870610|870611|919474|965592|965594", + "text": "Mitochondrial phosphate carrier deficiency" + }, + { + "baseId": "24189|24190|24191|152880|177235|177758|193428|195239|227146|227147|252354|254464|300123|300125|302849|302851|302852|302854|302855|302858|307228|307229|307231|307237|307238|307241|307470|307471|307480|316421|316461|323958|323963|324015|329992|330003|331332|331346|331361|331368|353771|353775|446828|612638|790627|818246|831944|856439|895972|895973|895974|896255|896256|896257|896258|896259|896260|896261|896262|896263|896264|896265|900228|945027|963226|963227|963228|963229|963230|963231|963232|963233|963234|963235", + "text": "Cone dystrophy 3" + }, + { + "baseId": "24192|24193|24194|24195|24196|24197|24198|24199|24200|24201|75357|227343|313239|313244|313252|313253|313256|319364|319377|319381|319382|319387|325500|325501|325502|325506|326449|326462|326469|326470|326471|360797|441396|441397|514623|620393|620394|682321|752538|838116|858565|858566|859846|867547|867548|867549|867550|867551|867552|867553|867554|867555|867556|867557|867558|867559|969607|976530", + "text": "Bartter syndrome, type 2, antenatal" + }, + { + "baseId": "24202|24205|24206|24210|24216|24218|24219|424702|576822|576823|621743|622775|622776|679853|917787|917788|961847|971379|971380", + "text": "Werdnig-Hoffmann disease" + }, + { + "baseId": "24203|24207|24208|24212|24214|24216|424702|622772|622775|622780", + "text": "Spinal muscular atrophy, type II" + }, + { + "baseId": "24220|24221|178015|919298", + "text": "Retinitis pigmentosa 44" + }, + { + "baseId": "24222|24223|24224|24225|24227|24230|24231|24232|24233|24234|24235|44146|49409|49410|49412|49413|49414|49415|49416|49417|49418|49419|194788|256835|256836|256840|256841|256842|332896|332899|332902|332903|332904|332908|332910|332913|332926|332927|332933|343078|343080|343082|343086|348422|348423|348428|348435|348438|348440|348444|349576|349577|349579|349581|349583|353490|423253|432471|489146|704863|704864|741733|791918|791919|791920|791921|798742|806428|806429|806430|806431|806432|880184|880186|880187|880188|880189|880190|880191|880193|880194|880195|880196|880197|880198|880199|880200|880201|880202|880203|880204|880722|880723|880724|880725", + "text": "Pseudoachondroplastic spondyloepiphyseal dysplasia syndrome" + }, + { + "baseId": "24226|24229", + "text": "Epiphyseal dysplasia, multiple, 1, severe" + }, + { + "baseId": "24228|24232|24236|24237|49409|49416|49417|76461|76462|76463|76464|76465|194788|256835|256836|256840|256841|256842|332896|332899|332902|332903|332904|332908|332910|332913|332926|332927|332933|343078|343080|343082|343086|348422|348423|348428|348435|348438|348440|348444|349576|349577|349579|349581|349583|423253|432471|489146|612108|623352|679807|679808|679809|704863|704864|741733|798743|880184|880186|880187|880188|880189|880190|880191|880193|880194|880195|880196|880197|880198|880199|880200|880201|880202|880203|880204|880722|880723|880724|880725|977292|980388", + "text": "Multiple epiphyseal dysplasia 1" + }, + { + "baseId": "24233", + "text": "Pseudoachondroplasia, severe" + }, + { + "baseId": "24237|983299", + "text": "CARPAL TUNNEL SYNDROME 2" + }, + { + "baseId": "24238|24239|24241|24242|199792|265414|309641|309642|309644|309646|309647|309649|309653|309655|309656|309659|309661|309665|309669|309670|309671|309677|309678|309682|309686|309689|309691|314449|314454|314462|314472|314474|314481|314482|314485|314486|314487|314488|314489|314492|314493|314494|314495|314502|314514|314520|314526|314529|314530|314534|314538|314545|314546|320498|320504|320513|320516|320517|320520|320526|320527|320530|320532|320535|320536|320545|320547|320555|320556|320557|320559|320561|320565|320582|320589|320590|320600|320601|320603|320605|320612|321002|321010|321011|321012|321014|321017|321019|321025|321052|321057|321058|321061|321065|321066|321074|321076|321077|321083|321084|321085|321087|321092|321101|321106|321114|321118|353122|364182|444567|459709|460622|525010|525215|563608|566105|566199|569551|620346|620818|638762|638763|638764|638765|638766|638767|638768|638769|692795|692796|723825|737390|790943|836687|836688|836689|836690|861586|865534|865535|865536|865537|865538|865539|865540|865541|865542|865543|865544|865545|865546|865547|865548|865549|865550|865551|865552|865553|865554|865555|865556|865557|865558|865559|865560|865561|865562|865563|865564|865565|865566|865567|865568|865569|868455|925761", + "text": "Deficiency of 2-methylbutyryl-CoA dehydrogenase" + }, + { + "baseId": "24243|24245|24247|24248|141142|141142|141143|141144|141145|141146|141147|141147|186076|191530|205754|212578|213574|221697|221699|244499|245262|252786|252786|252788|252790|252795|252795|302780|302781|302785|302795|302796|302798|306103|306109|306110|306131|306135|306149|306154|310897|310901|310902|310903|310904|310905|310906|310908|310909|311055|311072|311080|311081|311082|311085|311086|311087|311089|311090|395627|395871|407124|425751|434618|457340|636133|683004|800399|833570|897972|897973|897974|897975|897976|897977|897978|897979|897980|897981|897982|897983|900352|973006", + "text": "Charcot-Marie-Tooth disease type 2D" + }, + { + "baseId": "24249|24250|24251|24253|24254|24255|45006|45007|45008|45009|45009|45010|45011|45012|45014|45015|45016|45017|45018|45019|45020|45021|45022|45023|45024|45025|45026|45027|45028|45030|134684|134686|165951|165951|208662|208663|335452|335454|335461|335462|335465|335467|335470|335479|335495|335497|335506|335507|335519|335521|335523|345257|345263|345264|345266|345268|345270|345275|345281|345285|345287|345289|345293|345301|345302|345305|345307|349981|349986|349987|349989|349990|349992|349994|349995|349999|350000|350006|350009|350985|350987|350988|350991|350992|350995|350998|350999|351002|351003|351004|351007|351010|351021|351024|384504|424389|430313|430314|431538|486284|507169|507770|577852|577863|578356|609055|609056|609057|620658|622122|654702|760954|793843|886111|886112|886113|886114|886115|886116|886117|886118|886119|886120|886121|886122|886123|886124|886125|886126|886127|886128|886129|886130|886131|886132|886133|886134|886135|886136|886137|886138|886139|886140|886141|886142|886143|886144|886145|886146|887460|961137|961138|961139", + "text": "Maturity-onset diabetes of the young, type 1" + }, + { + "baseId": "24256|39017|249475|265897|266270|268287|272011|272608|275265|276854|276855|276856|276857|276858|276861|276863|276877|276878|277144|277145|277150|277152|277156|277157|277161|277163|277711|277712|277714|277725|277726|277728|277760|277762|277763|277801|277803|277805|277826|277829|277830|277831|277837|277841|277842|277843|277844|277848|277864|277874|277876|277886|489566|490681|490821|491361|492180|556715|586959|587020|588362|620706|822906|822907|822908|822909|862560|862561|862562|862563|862564|862565|862566|862567|862568|862569|862570|862571|862572|862573|862574|862575|862576|862577|865019|930109|941532|941533|941534", + "text": "Peroxisome biogenesis disorder 12A" + }, + { + "baseId": "24257|24258|24259|24260|24261|24262|24263|24264|24265|24266|24267|106815|106815|205022|213652|214545|256790|256791|256792|256793|256794|256795|256796|256797|256798|256799|256800|256801|256803|256804|256805|256806|256808|256810|256811|256812|256813|256814|256816|256817|256819|256820|256821|256822|256823|256824|256825|256826|332706|332715|332717|332719|332721|332724|332725|332726|332731|332741|332746|332748|332751|332763|332764|332766|342885|342887|342889|342890|342893|342898|342900|342902|342904|342914|342916|342918|342922|342924|342926|342928|348234|348239|348243|348244|348248|348249|348253|348256|348257|348261|348262|348266|348268|348270|349434|349437|349438|349439|349441|349442|349445|349448|349453|349455|349456|349458|349460|349462|349463|349465|349466|349468|349469|349472|361523|413498|442090|442091|442092|442096|442109|442110|442116|442131|442136|442138|442147|442152|442156|442159|442166|442168|442168|442171|442177|442180|442184|442186|442187|513142|513143|536981|536981|537323|577758|620630|677047|694339|694345|694347|716233|716234|727962|727968|741654|786098|791908|791909|791910|791911|793750|793758|793763|793764|793769|797760|797761|799024|799025|799026|799027|799028|858383|861655|880013|880014|880015|880016|880017|880018|880019|880020|880021|880022|880023|880024|880025|880026|880027|880028|880029|880030|880031|880032|880033|880034|880035|880036|880037|880038|880039|880040|880041|880042|880043|880044|880045|880046|880047|880048|880049|880050|880051|880052|880053|880054|880055|880056|880057|880058|880059|880060|880061|880062|880063|880064|880065|880066|880067|880704|880705|880706|880707|880708|919834|919835|919836|919837|919838|919839|920402|920403|961018|964513|964514|964515|964516|971121", + "text": "Cerebral autosomal dominant arteriopathy with subcortical infarcts and leukoencephalopathy type 1" + }, + { + "baseId": "24258", + "text": "Migraine without aura" + }, + { + "baseId": "24264", + "text": "Recurrent subcortical infarcts" + }, + { + "baseId": "24268|24269|138704|275435|590450|623235|672207|672208|800389|818155|818156|918548|977167", + "text": "Alagille syndrome 2" + }, + { + "baseId": "24270", + "text": "Hypotrichosis and recurrent skin vesicles" + }, + { + "baseId": "24271", + "text": "Mycobacterium tuberculosis, susceptibility to infection by" + }, + { + "baseId": "24272", + "text": "Buruli ulcer, susceptibility to" + }, + { + "baseId": "24273|24274|24276|24283|24284|24288|96770|96771|96791|96805|96813|190109", + "text": "MISMATCH REPAIR CANCER SYNDROME 4" + }, + { + "baseId": "24273|24276|24279|24281|24282|24283|24284|24284|45346|45348|45349|45350|45350|45351|45352|45353|45354|50140|50141|50142|50143|50144|50145|50146|50147|50148|50148|50152|50153|50153|50154|50155|50156|50157|50160|50161|96752|96754|96766|96773|96774|96779|96781|96786|96790|96792|96793|96796|96798|96799|96802|96804|96805|96806|96808|96809|96812|96815|96818|96825|96830|96836|96841|96841|96843|96850|96851|96852|96857|96857|99143|133208|133209|133218|133219|133220|133227|133227|133230|133234|133237|133237|133243|133245|133248|133248|133249|133249|133250|133251|133252|133252|133253|133253|133255|133255|133259|136478|138804|138805|138808|138809|139651|139651|139653|139655|142401|142403|142404|142406|142409|150545|150594|150877|151108|151237|151369|151374|151378|151397|151546|151780|151971|152135|152275|152290|152291|152291|152349|152385|152385|152479|152589|152673|152674|180259|180263|180265|180267|180268|180273|180273|182687|182691|182697|182710|182723|182725|182727|182738|182738|182748|182751|182761|182763|182764|182770|182771|182772|182774|182777|182782|182786|182793|182795|182798|182807|182807|182808|182811|182812|182817|182820|182823|182824|186085|190025|195590|212589|212598|212599|212609|212611|212612|215365|215366|221705|221705|221713|221713|221723|221725|221733|221735|221736|231655|231678|231688|231692|231698|233490|233494|233515|233525|233527|233528|233547|233549|233550|233555|233555|233557|233568|233589|233597|240109|240126|240130|240145|240146|240147|303242|306557|311471|311622|311623|358801|358802|358803|395732|395935|395978|396076|396106|396349|396360|407182|407204|409030|432648|432650|456778|456783|457251|457842|457889|474555|474569|474600|474639|482711|483958|483975|484009|484132|484145|523007|523324|539261|539262|539263|539264|539265|539266|539267|539268|539269|539270|539271|561683|575783|576260|623314|636292|790739|790740|790741|790742|790743|790744|790745|790746|790747|790748|898280|898281|900383|900384|967150|967186|970862", + "text": "Hereditary nonpolyposis colorectal cancer type 4" + }, + { + "baseId": "24284|46484", + "text": "Pituitary carcinoma" + }, + { + "baseId": "24290", + "text": "Systemic lupus erythematosus, association wit 2" + }, + { + "baseId": "24291|24291|24292|27922|27923|27924|27925|27926|27930|27931|75309|79394|79406|79454|79474|79478|79482|79484|79517|79520|79534|79540|79545|79552|79556|79557|79558|99386|135657|142693|142696|142698|142705|178737|188676|188677|188682|188684|188693|188702|256855|256856|333128|333131|343244|348589|349668|349669|507247|572346|574937|587697|611431|614064|626118|682721|802062|805109|880288|880289|880290|880291|880292|880293|880294|880295|880296|880297|880298|880299|880300|880301|880302|880303|880304|880305|880306|880307|880729|904067|964521", + "text": "Generalized epilepsy with febrile seizures plus, type 1" + }, + { + "baseId": "24291|45413|45414|178058|191370|273736|282565|282594|283206|283227|283258|283267|283293|283322|284810|285355|285356|296799|298652|302896|906365|906366|906367|906368|906369|906370|906371|906372", + "text": "Generalized epilepsy with febrile seizures plus" + }, + { + "baseId": "24291|24291|75309|75309|75310|188677|188682|188693|574937|611431", + "text": "Atrial fibrillation, familial, 13" + }, + { + "baseId": "24291|24291|24293|45417|75309|75309|99386|135657|142693|142695|142696|142698|142699|142700|142701|142702|142703|142705|142708|178737|178738|188675|188676|188677|188677|188681|188682|188682|188683|188684|188685|188686|188688|188689|188690|188692|188693|188694|188695|188696|188697|188702|188703|188704|188707|188708|243330|243331|256855|256856|266971|268778|333128|333131|343244|348589|349668|349669|377372|377574|377579|377590|403241|403285|403289|403290|403733|403735|403741|403752|430178|442194|468632|468634|468637|468638|469629|469632|469636|469644|469647|469648|470044|470620|482189|495524|507247|532844|532849|532926|532928|533298|572346|572712|573032|574937|574937|574938|587697|611431|611431|624878|647936|647937|647938|647939|647940|647941|684785|694375|694376|695818|741775|805109|847532|847533|847534|847535|847536|847537|847538|847539|847540|847541|847542|847543|851809|852862|880288|880289|880290|880291|880292|880293|880294|880295|880296|880297|880298|880299|880300|880301|880302|880303|880304|880305|880306|880307|880729|928928|938644|938645|938646|938647|938648|938649|938650|940480|950749|950750|958597|958598|971125", + "text": "Brugada syndrome 5" + }, + { + "baseId": "24291|75309|188677|188682|188693|362555|362556|574937|611431|682721|682722", + "text": "Epileptic encephalopathy, early infantile, 52" + }, + { + "baseId": "24294|24295|24425|24434|24437|78668|78824|78831|78924|78928|224179|224386|224557", + "text": "Cardiac conduction defect, nonspecific" + }, + { + "baseId": "24296|24297|24298|24299|24300|24301|199940|199941|199942|276193|276194|276207|276208|276210|276211|276213|276455|276465|276469|276471|276472|276840|276843|276847|276859|276923|276926|276928|276932|276933|276942|276948|353052|364392|414725|442601|447166|481400|481401|556607|556895|558008|581744|587944|609346|626728|626729|626730|626731|626732|626733|650519|650617|718145|815883|818844|822619|822620|822621|822622|822623|850710|858543|858544|862111|862112|862113|862114|862115|862116|862118|862121|862122|862123|862124|862125|862126|864968|864969|903500|921610|940599|941407|941408|941409|941410|941411|952038", + "text": "mitochondrial 3-hydroxy-3-methylglutaryl-CoA synthase deficiency" + }, + { + "baseId": "24307|24308|24309|175749|175889|191353|193465|193466|230335|230338|318246|318248|318254|318256|318260|318268|318271|318273|318280|318282|318283|318284|318285|326232|326237|326241|326243|326249|326253|326259|326263|332508|332511|332523|332532|332536|332540|332543|332548|332550|334121|334122|334123|334124|334131|334139|334143|334146|334150|334151|334153|578502|578503|582711|620454|713693|725223|753541|753543|870271|870272|870273|870274|870275|870276|870277|870278|870279|870280|870281|870282|870283|870284|870285|870286|870287|870288|870289|872282|872283", + "text": "Bronchiectasis with or without elevated sweat chloride 2" + }, + { + "baseId": "24310|24311|24312|24313|24314|24315|24316|24317|24318|24321|24322|24322|24323|24324|24327|24328|24330|171166|171167|171167|254991|254992|260057|260057|320705|320709|320715|320716|320717|320722|320723|320723|320725|320725|320735|320736|329510|329511|329514|329519|329520|329523|329532|329537|329538|329538|329541|329558|329560|336147|336154|336160|336161|336166|336167|336168|336182|336185|338039|338042|338045|338046|338050|338051|338056|338061|338066|338067|338071|338071|338072|338096|373875|437970|463824|463831|463831|463836|463966|464163|464169|464175|464177|464321|482050|513447|527839|528216|528574|528680|528685|566501|568125|568138|568944|568946|568949|572820|572826|577351|612989|642511|642512|642513|642514|642515|642516|642517|642518|642519|652312|652318|652355|688314|702900|702900|801551|820629|820630|841559|841560|851561|852001|852747|871942|871943|871944|871945|871946|871947|871948|871949|871950|871951|871952|871953|871954|871955|871956|871957|871958|871959|927103|927104|936638|936639|936640|948589|957238|957239|983819", + "text": "Dystonia 5" + }, + { + "baseId": "24319|24320|24321|24322|24325|24331|27363|27364|27365|27366|27367|27368|27369|27370|27371|27372|27373|34718|45062|186821|205167|241071|241073|241074|241076|254105|254106|254108|254109|254110|254114|254115|254116|313632|313633|313637|313638|313640|313641|313643|313646|313647|313649|313653|319828|319830|319843|319846|319847|319849|325998|325999|326005|326006|326007|326010|326011|326018|326978|326982|326983|326984|326992|326993|357963|357964|357965|357966|357967|357968|357969|357970|357971|361307|361308|361618|372119|398449|398531|398540|413302|415263|437882|441420|444773|461058|461767|489308|526025|526532|545991|545996|545998|546000|546003|546011|546016|546019|546020|546022|546031|546032|546268|546270|546273|546278|546303|546310|546312|546314|546411|546412|546415|546418|546421|546422|546424|546429|546430|546432|546443|546444|546627|546630|546631|546638|546639|546643|546644|546646|546650|546652|546653|565602|567130|567131|570432|570440|577191|581766|639861|639862|639864|639865|639866|639869|639870|639873|639874|639875|652173|652528|684240|684241|684242|684243|684244|684245|684246|685283|687729|687730|687731|687734|687735|687736|687738|687742|701704|701705|712765|724363|724364|724366|737917|737919|768392|791123|791124|796550|798640|838186|838187|838192|838196|838199|838200|867735|867736|867737|867738|867739|867740|867741|867742|867743|867744|867745|867746|867747|867748|919350|956446|978968|978969|978970|978971|978972|978973|978974|978975|978976|978977|978978|978979|978980|978981|978982|978983|978984", + "text": "Autosomal recessive DOPA responsive dystonia" + }, + { + "baseId": "24321|24322|24322|24326|24329|171166|171167|171167|254991|254992|260057|320705|320709|320711|320715|320716|320717|320722|320723|320723|320725|320725|320735|320736|329510|329511|329513|329514|329519|329520|329523|329532|329537|329538|329538|329541|329558|329560|329573|336147|336154|336160|336161|336164|336166|336167|336168|336174|336182|336185|338039|338040|338042|338045|338046|338050|338051|338056|338061|338066|338067|338071|338071|338072|338096|353302|373875|437970|463824|463831|463831|463836|463966|464163|464169|464321|482050|527839|528216|528574|528680|528685|566501|568125|568138|568944|568946|568949|572820|572826|577351|612989|622846|642511|642512|642513|642514|642515|642516|642517|642518|642519|652312|652318|652355|688314|702900|702900|791413|791414|820629|820630|841559|841560|851561|852001|852747|871942|871943|871944|871945|871946|871947|871948|871949|871950|871951|871952|871953|871954|871955|871956|871957|871958|871959|927103|927104|936638|936639|936640|948589|957238|957239", + "text": "GTP cyclohydrolase I deficiency" + }, + { + "baseId": "24332|24333|39008|39009|308007|308036|308037|308039|308041|308045|308046|308060|308061|312343|312346|312365|312372|312374|312376|312387|312388|312389|312391|312392|312396|312397|312398|312402|312404|312405|312409|312411|312412|312420|318050|318070|318104|318120|318124|318140|318148|318153|318154|318166|318176|318179|318195|318198|318202|318207|318220|318221|318622|318623|318624|318647|318652|318654|318658|318666|318667|318671|318674|318681|318684|318685|318689|318695|318696|318697|318715|318716|318727|318732|508837|552141|609731|620328|723540|901795|901796|901797|901798|901799|901816|901819|901824|901831|901833|901834|901835|901836|901837|901838|901839|901840|901841|901842|901843|901844|903378|903379|903381|903382|905822", + "text": "Multiple cutaneous and mucosal venous malformations" + }, + { + "baseId": "24334|24335|24337|24338|24341|24342|24343|24344|24345|24346|76533|76534|193462|204425|252379|300384|300386|300387|300389|300390|300392|300396|300397|300402|300404|300405|300411|300413|300424|300426|300430|300438|300440|303224|303245|303246|303250|303256|303257|303258|303262|303263|303270|303272|303281|303283|303289|303291|303296|307741|307742|307744|307745|307747|307755|307756|307758|307759|307760|307762|307769|307779|307781|307782|307783|307786|307907|307922|307932|307935|307937|307938|307941|307944|307946|307947|307959|307969|307971|368950|431555|538998|538999|539000|622371|682807|790635|816464|818248|896498|896499|896500|896501|896502|896503|896504|896505|896506|896507|896508|896509|896510|896511|896512|896513|896514|896515|896516|896517|896518|896519|896520|896521|896522|896523|896524|896525|896526|896527|896528|896529|896530|896531|896532|905032|905033|905034|905035|905036|905037|905038|905039|916966|964280|966619", + "text": "Cleidocranial dysostosis" + }, + { + "baseId": "24336", + "text": "Cleidocranial dysplasia, forme fruste, with brachydactyly" + }, + { + "baseId": "24339", + "text": "Cleidocranial dysplasia, forme fruste" + }, + { + "baseId": "24340", + "text": "Cleidocranial dysplasia, severe, with osteoporosis and scoliosis" + }, + { + "baseId": "24343", + "text": "Cleidocranial dysplasia, forme fruste, dental anomalies only" + }, + { + "baseId": "24347", + "text": "Skin/hair/eye pigmentation, variation in, 9" + }, + { + "baseId": "24348|24349|24350|24351|24352|24353|24354|24355|317818|317822|317827|317831|317836|317842|317844|317848|317850|317854|317855|317857|317861|325701|325702|325703|325704|325711|325716|325717|325722|325732|325738|331929|331930|331932|331933|331939|331940|331950|331953|331955|331956|331965|331969|331972|331979|331984|331987|331988|331989|333461|333462|333473|333478|333484|333485|333489|333491|353250|713592|725164|870119|870120|870121|870122|870123|870124|870125|870126|870127|870128|870129|870130|870131|870132|870133|870134|870135|872260|872261", + "text": "Ichthyosis bullosa of Siemens" + }, + { + "baseId": "24349", + "text": "Ichthyosis exfoliativa" + }, + { + "baseId": "24356|24357|24358|24359|24361|24363|24364|24365|24367|24368|24379|24381|24382|24383|24384|24385|24386|24387|24388|46255|46270|46271|46272|46273|46274|46275|46276|46277|46278|46279|46280|46281|46282|46283|46284|46285|46286|46287|46288|46289|46290|46291|46292|46293|46294|46295|46296|46297|46298|46299|46300|46301|46302|46303|46304|46305|46306|46307|46309|46310|46311|46312|46313|46314|46315|46316|46318|46319|46320|46321|46322|46323|46324|46325|46326|46327|46328|46329|46330|46331|46332|46333|46334|46335|46336|46337|46339|46340|46341|46342|46343|46344|46345|46346|46347|46349|46350|46351|46352|46353|46354|46355|46356|46357|46359|46360|46361|46362|46363|46364|46365|46366|46367|46368|46369|46370|46371|46372|46373|46374|46375|46376|46377|46378|46379|46380|46381|46382|46383|46384|46385|46386|46388|46389|46390|46391|46392|46393|46394|46395|46396|46397|46398|46399|46400|46401|46402|46403|46404|46405|46406|46407|46408|46409|46410|46411|46412|46413|46414|46415|46416|46417|46418|46419|46421|46422|46423|46424|46425|46426|46427|46428|46429|46430|46431|46432|46433|46434|46436|46437|46438|46439|46440|46441|46442|46443|46444|46445|46446|46447|46448|46449|46450|46451|46452|46453|46454|46455|46456|46457|46458|46460|46461|46462|46464|46465|46466|46467|46468|46469|46470|46471|46472|46473|46474|46475|46476|46477|46478|46479|46480|46481|46482|46483|46484|46485|46486|46487|46488|46489|46491|46492|46492|46493|46494|46495|46496|46497|46498|46499|46500|46501|46502|46504|46505|46506|46507|46508|46509|46510|46511|46512|46513|46514|46515|46516|46517|46519|46520|46521|46523|46524|46525|46526|46527|46528|46529|46530|46531|46532|46533|46534|46535|46536|46537|46538|46539|46540|46541|46542|46543|46544|46545|46546|46547|46548|46549|46550|46551|46552|46553|46554|46555|46556|46557|46558|46559|46560|46561|46562|46563|46564|46565|46566|46567|46568|46569|46570|46571|46572|46574|46575|46576|46577|46578|46579|46580|46581|46582|46583|46584|46585|46586|46588|46589|46590|46591|46592|46593|46594|46595|46596|46597|46598|46599|46600|46601|46602|46603|46604|46605|46606|46607|46608|46609|46610|46614|46615|46616|46617|46618|46619|46620|46621|46622|46623|46624|46625|46626|46627|46628|46629|46630|46631|46632|46633|46634|46635|46636|46637|46638|46639|46640|46641|46642|46643|46644|46645|46646|46647|46648|46649|46650|46651|46652|46653|46654|46655|46656|46657|46658|46659|46660|46661|46662|46663|46664|46665|46666|46666|46667|46668|46669|46670|46671|46672|46673|46674|46675|46676|46677|46678|46679|46680|46681|46682|46683|46684|46685|46686|46687|46687|46688|46689|46690|46691|46692|46693|46694|46695|46696|46697|46698|46699|46700|46701|46702|46703|46704|46705|46706|46707|46708|46709|46710|46711|46711|46712|46713|46714|46715|46716|46717|46718|46719|46720|46721|46722|46723|46724|46725|46726|46727|46728|46729|46730|46731|46732|46733|46734|46735|46736|46737|46738|46739|46740|46741|46742|46743|46744|46745|46746|46747|46748|46749|46750|46751|46752|46753|46754|46755|46756|46757|46758|46759|46760|46761|46762|46763|46764|46765|46766|46767|46768|46769|46770|46771|46771|46772|46773|46774|46775|46776|46777|46778|46779|46780|46781|46782|46783|46784|46785|46786|46787|46788|46789|46790|46791|46792|46793|46794|46795|46796|46797|46798|46799|46800|46801|46802|46803|46804|46805|46806|46807|46808|46809|46810|46811|46812|46813|46814|46815|46816|46817|46818|46819|46820|46821|46822|46823|49978|49979|49980|49981|49982|49983|49984|49985|49987|49988|49990|49992|49995|49997|49998|49999|50000|50001|50002|50003|50004|50006|50007|50008|50009|50011|65703|65704|65706|65707|65708|65709|65710|65711|65712|65713|65714|65715|65716|65717|65718|65719|65720|65721|65722|65723|65724|65725|65726|65727|65728|65729|65730|65731|65732|65733|65734|65735|65736|65737|65738|65739|65740|65741|65742|65743|65744|65745|65746|65747|65748|65749|65750|65751|65752|65753|65754|65755|65756|65757|65758|65759|65760|65761|65762|65763|65764|65765|65766|65767|65768|65769|65770|65771|65772|65773|65774|65775|65776|65777|65778|65779|65780|65781|65782|65784|65785|65786|65787|65788|65789|65790|65791|65792|65793|65794|65795|65796|65797|65798|65799|65800|65802|65803|65804|65805|65806|65807|65808|65809|65810|65811|65812|65813|65814|65817|65818|65819|65820|65821|65822|65823|65824|65825|65826|65827|65828|65829|65830|65831|65832|65833|65834|65835|65836|65837|65838|65839|65840|65841|65842|65843|65844|65845|65846|65847|65848|65849|65850|65851|65852|65853|65854|65855|65856|65857|65858|65859|65860|65861|65862|65863|65864|65865|65866|65867|65868|65869|65872|65873|65874|65875|65876|65877|65878|65879|65880|65881|65882|65883|65884|65885|65886|65887|65888|65889|65890|65891|65893|65894|65895|65897|65898|65899|65900|65901|65902|65903|65904|65905|65906|65907|65908|65910|65911|65912|65913|65914|65915|65916|65917|65918|65919|65920|65921|65923|65924|65925|65926|65927|65928|65929|65930|65932|65933|65934|65935|65936|65937|65938|65939|65940|65941|65942|65943|65944|65945|65946|65947|65949|65950|65951|65952|65953|65954|65955|65956|65957|65958|65959|65960|65961|65962|65963|65964|65965|65966|65967|65968|65969|65970|65971|65972|65973|65974|65975|65976|65978|65979|65980|65981|65982|65983|65983|65984|65985|65986|65987|65988|65989|65990|65991|65992|65993|65994|65995|65996|65997|65998|65999|66000|66001|66002|66003|66004|66005|66006|66007|66008|66009|66010|66011|66012|66013|66014|66015|66016|66017|66018|66019|66020|66021|66022|66023|66024|66025|66026|66027|66028|66029|66030|66031|66032|66033|66034|66035|66036|66037|66038|66039|66040|66041|66042|66043|66044|66045|66046|66047|66048|66049|66050|66051|66052|66053|66054|66055|66056|66057|66058|66059|66060|66061|66062|66063|66064|66065|66066|66067|66068|66069|66070|66071|66072|66073|66074|66075|66076|66077|66078|66079|66080|66081|66082|66083|66084|66085|66086|66087|66088|66089|66090|66091|66092|66093|66094|66095|66096|66097|66098|66099|66100|66101|66102|66103|66104|66106|66107|66108|66109|66110|66111|66112|66114|66115|66116|66117|66118|66119|66120|66121|66122|66123|66124|66125|66126|66127|66128|66129|66130|66131|66132|66133|66135|66136|66137|66138|66139|66140|66141|66142|66143|66144|66145|66146|66147|66148|66149|66150|66152|66153|66154|66155|66156|66157|66158|66159|66160|66161|66162|66163|66165|66166|66167|66168|66169|66170|66171|66172|66173|66174|66175|66176|66177|66178|66179|66180|66181|66182|66183|66184|66185|66186|66187|66188|66189|66190|66191|66192|66193|66194|66195|66196|66197|66198|66199|66200|66201|66202|66203|66204|66205|66206|66207|66208|66209|66210|66211|66212|66213|66214|66215|66216|66217|66218|66219|66220|66221|66223|66224|66226|66227|66228|66229|66230|66231|66232|66233|66234|66235|66236|66237|66238|66239|66241|66242|66243|66244|66245|66246|66247|66248|66249|66250|66251|66252|66253|66254|66255|66256|66257|66258|66259|66260|66261|66262|66263|66264|66265|66266|66267|66268|66269|66270|66271|66272|66273|66274|66275|66276|66277|66278|66279|66280|66281|66282|66283|66284|66285|66286|66287|66288|66289|66290|66291|66292|66295|66297|66298|66299|66300|66301|66302|66303|66304|66305|66306|66307|66308|66309|66310|66311|66312|66313|66314|66315|66316|66317|66318|66319|66320|66321|66322|66323|66324|66325|66326|66327|66328|66329|66330|66331|66332|66333|66334|66335|66336|66337|66338|66339|66340|66341|66342|66344|66345|66346|66348|66349|66350|66351|66352|66354|66355|66356|66357|66358|66359|66360|66362|66363|66364|66365|66366|66367|66369|66370|66372|66373|66374|66375|66376|66377|66378|66379|66380|66381|66382|66383|66384|66385|66386|66387|66388|66389|66390|66391|66392|66393|66394|66395|66396|66397|66398|66399|66400|66401|66402|66403|66404|66405|66406|66407|66408|66409|66410|66411|66412|66413|66414|66415|66416|66417|66418|66419|66420|66421|66422|66423|66424|66425|66426|66427|66428|66429|66430|66432|66433|66434|66435|66436|66437|66438|66439|66440|66441|66442|66443|66445|66446|66447|66448|66449|66450|66451|66452|66453|66454|66455|66457|66458|66459|66460|66461|66462|66463|66465|66466|66467|66468|66469|66469|66470|66471|66472|66473|66474|66475|66476|66478|66479|66480|66481|66482|66483|66484|66485|66486|66487|66488|66489|66490|66491|66492|66493|66494|66496|66497|66498|66499|66500|66501|66502|66503|66504|66505|66506|66507|66508|66509|66510|66511|66512|66514|66515|66516|66517|66518|66519|66520|66521|66523|66524|66525|66526|66527|66528|66529|66530|66531|66532|66533|66534|66535|66536|66537|66539|66540|66541|66542|66543|66544|66545|66546|66547|66548|66549|66550|66551|66552|66553|66554|66555|66556|66557|66558|66559|66560|66561|66562|66563|66564|66565|66566|66567|66568|66569|66570|66571|66572|66573|66574|66575|66578|66579|66580|66581|66582|66584|66585|66586|66587|66589|66590|66591|66592|66593|66594|66595|66596|66597|66598|66599|66600|66601|66602|66603|66604|66605|66606|66607|66608|66609|66610|66611|66612|66613|66614|66615|66616|66617|66618|66619|66620|66621|66622|66623|66624|66625|66626|66627|66629|66630|66631|66632|66633|66634|66635|66636|66637|66638|66639|66640|66641|66642|66643|66644|66645|66646|66647|66648|66649|66650|66651|66652|66653|66654|66655|66658|66659|66661|66662|66663|66664|66665|66666|66667|66668|66669|66670|66671|66672|66673|66674|66675|66676|66677|66678|66679|66680|66681|66682|66683|66684|66685|66686|66687|66688|66689|66690|66691|66692|66693|66695|66696|66697|66698|66699|66700|66701|66702|66703|66704|66705|66707|66708|66709|66710|66711|66712|66713|66714|66715|66716|66717|66718|66719|66720|66722|66723|66724|66725|66726|66727|66728|66729|66731|66732|66733|66734|66735|66737|66739|66740|66741|66742|66743|66745|66747|66748|66749|66750|66751|66752|66753|66754|66755|66756|66757|66758|66759|66760|66762|66763|66764|66765|66766|66768|66769|66770|66771|66772|66773|66774|66775|66776|66777|66778|66779|66780|66781|66782|66783|66784|66785|66786|66787|66788|66789|66790|66791|66792|66793|66794|66795|66796|66797|66798|66799|66800|66801|66802|66803|66804|66805|66806|66807|66808|66809|66810|66811|66813|66814|66816|66817|66818|66819|66820|66821|66822|66823|66824|66825|66826|66827|66828|66829|66830|66831|66832|66833|66834|66835|66836|66838|66839|66840|66841|66842|66843|66844|66845|66846|66847|66848|66849|66850|66851|66852|66853|66855|66856|66858|66859|66860|66861|66862|66863|66864|66865|66866|66867|66868|66869|66870|66871|66872|66873|66874|66875|66876|66877|66878|66879|66880|66881|66882|66883|66884|66885|66886|66887|66888|66889|66890|66891|66892|66893|66894|66895|66896|66897|66899|66900|66901|66902|66903|66905|66905|66907|66907|66908|66909|66909|66910|66911|66912|66913|66914|66915|66916|66917|66918|66919|66920|66921|66922|66923|66924|66925|66926|66927|66928|66929|66930|66931|66932|66933|66934|66935|66936|66938|66939|66940|66941|66942|66943|66944|66945|66946|66947|66948|66949|66950|66951|66952|66953|66954|66955|66956|66957|66958|66959|66960|66961|66962|66963|66964|66965|66966|66967|66968|66969|66970|66972|66973|66974|66975|66976|66977|66978|66979|66980|66982|66983|66984|66985|66986|66987|66988|66989|66990|66991|66992|66993|66994|66995|66996|66997|66998|66999|67000|67001|67002|67003|67004|67005|67006|67007|67008|67009|67010|67011|67012|67013|67014|67015|67017|67018|67019|67020|67021|67022|67023|67024|67025|67026|67027|67028|67029|67030|67031|67032|67033|67034|67038|67039|67040|67042|67043|67044|67045|67046|67047|67049|67050|67051|67052|67053|67054|67055|67056|67057|67058|67059|67060|67062|67063|67064|67065|67066|67067|67068|67069|67070|67071|67072|67073|67074|67075|67076|67077|67078|67079|67080|67081|67082|67083|67084|67085|67086|67087|67088|67089|67090|67091|67092|67093|67094|67095|67096|67097|67098|67099|67100|67101|67102|67103|67104|67105|67106|67107|67108|67109|67110|67111|67112|67113|67114|67115|67116|67117|67118|67119|67120|67121|67122|67123|67124|67126|67127|67128|67129|67130|67131|67131|67132|67133|67134|67135|67136|67137|67138|67139|67139|67140|67141|67142|67143|67144|67145|67146|67147|67148|67149|67150|67151|67152|67153|67154|67155|67157|67158|67159|67160|67161|67162|67163|67164|67165|67166|67167|67168|67169|67170|67171|67172|67173|67174|67175|67176|67177|67178|67179|67180|67181|67183|67184|67185|67186|67187|67188|67189|67190|67191|67192|67193|67194|67195|67196|67197|67199|67200|67201|67202|67203|67204|67205|67206|67208|67209|67210|67211|67212|67214|67215|67216|67217|67218|67219|67220|67222|67223|67224|67225|67226|67227|67228|67229|67230|67231|67232|67233|67234|67235|67236|67237|67238|67239|67240|67241|67242|67244|67245|67247|67248|67249|67250|67251|67252|67253|67254|67255|67257|67258|67259|67260|67261|67262|67263|67264|67265|67266|67267|67268|67269|67270|67271|67272|67273|67274|67275|67276|67277|67278|67279|67280|67281|67282|67283|67284|67285|67286|67287|67288|67289|67290|67291|67292|67293|67294|67295|67297|67298|67299|67300|67301|67302|67303|67304|67305|67306|67307|67309|67310|67311|67312|67313|67314|67316|67317|67319|67320|67321|67322|67323|67324|67325|67326|67327|67328|67329|67330|67331|67332|67333|67335|67336|67337|67338|67339|67340|67341|67342|67343|67344|67345|67346|67348|67349|67350|67351|67352|67353|67354|67355|67356|67357|67358|67359|67360|67361|67362|67363|67364|67365|67366|67367|67368|67369|67370|67371|67372|67373|67374|67375|67376|67377|67379|67380|67381|67382|67383|67384|67385|67386|67387|67388|67389|67390|67391|67392|67393|67394|67395|67396|67397|67398|67399|67400|67401|67402|67403|67404|67405|67406|67407|67408|67409|67410|67411|67412|67413|67415|67416|67417|67418|67419|67420|67421|67422|67423|67425|67426|67427|67428|67429|67430|67431|67432|67433|67434|67435|67436|67437|67438|67439|67440|67441|67442|67443|67444|67445|67446|67447|67448|67449|67450|67451|67452|67453|67455|67456|67457|67458|67459|67461|67462|67463|67464|67465|67466|67467|67468|67469|67470|67471|67472|67473|67474|67475|67476|67477|67478|67479|67480|67481|67482|67484|67485|67486|67487|67488|67489|67490|67491|67492|67493|67494|67495|67496|67497|67498|67499|67500|67501|67502|67504|67505|67506|67507|67508|67509|67510|67511|67512|67513|67514|67515|67516|67517|67518|67519|67520|67521|67522|67523|67524|67526|67527|67528|67529|67530|67531|67532|67533|67534|67535|67536|67537|67538|67539|67540|67541|67542|67543|67544|67545|67546|67547|67548|67549|67550|67551|67552|67553|67554|67555|67556|67557|67558|67559|67561|67562|67563|67564|67565|67566|67567|67568|67569|67570|67571|67572|67573|67574|67575|67576|67577|67578|67579|67580|67581|67582|67583|67584|67585|67586|67587|67588|67589|67590|67591|67592|67593|67594|70445|70446|70447|70448|70574|94582|94583|94587|94589|94590|94591|94592|94596|96886|96887|96888|96889|96890|96891|96892|96893|96894|96895|96896|96897|96898|96899|96900|96901|96902|96903|96904|96905|96906|96907|96908|96909|96910|96911|96912|96914|96915|96916|96917|96918|96919|96920|96921|96922|96923|96924|96925|96926|96927|96928|96929|96930|96931|96932|96933|96934|96935|96936|96937|96938|96939|96940|96942|96943|96944|96945|96946|96947|96948|96949|96950|96951|96952|96953|96954|96955|96956|96957|96958|96959|96960|96961|96962|96963|96964|96965|96966|96967|96968|96969|96970|96971|96972|96973|96974|96975|96976|96977|96978|96979|96980|96981|96982|96983|96984|96985|96986|96987|96988|96989|96990|96991|96992|96993|96994|96995|96996|96997|96998|96999|97000|97001|97002|97003|97004|97006|97007|97008|97009|97010|97011|97012|97013|97014|97147|97148|97149|97150|97151|97152|97153|97154|97155|97156|97157|97158|97159|97160|97161|97162|97163|97164|97165|97166|97167|97168|97169|97170|97171|97172|97173|97174|97175|97176|97177|97178|97179|97180|97181|97182|97207|97208|97209|97210|97211|97212|97213|97214|97215|97216|97217|97218|97219|97220|97221|97222|97223|97224|97225|97226|97227|97228|97229|97230|97231|97232|97233|97234|97235|97236|97237|97238|97239|97241|97242|97243|97244|97245|97246|97247|97248|97249|97250|97251|97252|97253|97254|97255|97256|97257|97258|97259|97260|97261|97262|97264|97265|97266|97267|97268|97270|97271|97272|97273|97274|97275|97276|97277|97278|97279|97280|97281|97282|97283|97284|97285|97286|97287|97288|97289|97290|97291|97292|97293|97294|97295|97296|97297|97298|97299|97301|97302|97303|97304|97305|97306|97307|97308|97309|97310|97311|97312|97314|97315|97316|102661|102662|102663|102664|102665|102666|102667|102668|102669|102670|102671|102672|102673|102674|102675|102676|102677|102678|102679|102680|102681|102682|102683|102684|102685|102686|102687|102688|102689|102690|102691|102692|102693|102694|102695|102696|102697|102698|102700|102701|102703|102704|102705|102706|102707|102708|102709|102710|102711|102712|102713|102714|102715|102716|102717|102718|102719|102720|102721|102722|102723|102724|102725|102726|102727|102728|102729|102730|102731|102732|102733|102734|102735|102736|102737|102738|102739|102740|102741|102742|102743|102744|102745|102746|102747|102748|102749|102750|102751|102752|102753|102754|102755|102756|102757|102758|102760|102761|102762|102763|102764|102765|102766|102767|102768|102769|102770|102771|102772|102773|102774|102775|102776|102777|102778|102779|102780|102781|102782|102783|102784|102785|102786|102787|102788|102789|102790|102791|102792|102793|102861|102862|102863|102864|102865|102866|102867|102868|102869|102870|131459|131460|131462|131463|131464|131465|131466|131468|131469|131470|131471|131472|131473|131474|131475|131480|131481|131482|131483|131484|131485|131486|131487|131488|131489|131490|131491|131492|131493|131494|131495|131496|131500|131503|131504|131505|131508|131510|131511|131512|131513|131514|131515|131516|131517|131518|131519|131520|131522|131523|131526|131527|131528|131529|131530|131531|131533|131534|131535|131536|131537|131538|131539|131541|131542|131543|131545|131546|131547|131548|131549|131550|131552|131554|131556|131557|131558|131560|131561|131562|131565|131566|131567|131568|131569|131570|131571|131572|131573|131574|131575|131577|131579|131583|131584|131586|131587|131588|131589|131591|131593|131594|131595|131597|131600|131601|131602|131603|131604|131605|131607|131610|131611|131612|131614|131615|131617|131618|131620|131624|131625|131626|131627|131629|131630|131631|131633|131634|131635|131636|131637|131638|131640|131643|131644|131645|131646|131647|131648|131651|131652|131654|131655|131656|131658|131660|131661|131662|131663|131664|131666|131667|131668|131670|131671|131672|131673|131674|131675|131676|131677|131678|131679|131680|131681|131682|131683|131684|131685|131686|131687|131688|131689|131690|131691|131692|131693|131694|131695|131696|131697|131698|131700|131701|131702|131704|131705|131706|131707|131708|131711|131712|131713|131715|131716|131717|131718|131719|131721|131723|131725|131726|131727|131728|131729|131730|131731|131732|131733|131735|131736|131737|131738|131739|131740|131741|131742|131743|131744|131745|131747|131748|131749|131750|131751|131752|131753|131754|131755|132698|136435|136512|136518|136527|136528|136529|136530|137467|137468|137475|137477|137481|139502|139503|139505|139506|139507|139508|139509|139514|139515|139517|139518|139520|139521|139522|139524|139525|139526|139529|139532|140256|140257|140258|140259|140260|140261|140262|140263|140264|140265|140268|140269|140270|140271|140272|140273|140274|140275|140276|150722|150729|150752|150782|150784|150796|150798|150802|150818|150832|150843|150867|150869|150876|150909|150913|150927|150933|150948|150997|151048|151049|151059|151077|151113|151163|151183|151192|151220|151223|151224|151253|151286|151287|151340|151343|151344|151371|151411|151443|151494|151496|151501|151502|151507|151512|151513|151521|151525|151567|151581|151586|151615|151620|151675|151700|151701|151703|151737|151740|151744|151750|151768|151809|151929|152002|152021|152023|152027|152030|152105|152112|152136|152158|152234|152241|152302|152322|152331|152343|152352|152360|152362|152401|152431|152436|152485|152496|152497|152501|152509|152511|152543|152545|152547|152562|152575|152580|152582|152588|152603|152632|152637|152677|152711|152738|165476|165962|165963|165964|165965|165966|165967|165968|165969|165970|165971|165972|165973|165974|165975|165976|165977|165978|165979|165980|165998|165999|166254|166255|166256|166257|166258|171818|171819|171820|171822|180552|180554|180555|180557|180558|180563|180567|180568|180571|180572|180573|180576|180578|180579|180581|180584|180588|180596|180597|180600|180601|180604|180606|180608|180611|180613|180615|180622|180628|180630|180632|180636|180637|180642|180645|180651|180653|180657|180660|180661|180665|180666|180669|180670|180671|180680|180690|180691|180693|180695|180696|180697|180702|181310|181311|181312|183612|183614|183616|183617|183619|183620|183621|183622|183624|183625|183626|183627|183629|183632|183635|183638|183641|183642|183644|183645|183646|183647|183648|183649|183650|183651|183655|183657|183659|183660|183661|183662|183664|183667|183668|183670|183671|183674|183675|183680|183681|183682|183683|183684|183686|183688|183693|183695|183699|183701|183702|183704|183705|183706|183707|183708|183709|183711|183713|183714|183715|183716|183717|183718|183720|183722|183723|183724|183725|183728|183731|183733|183737|183738|183739|183740|183742|183744|183745|183747|183748|183750|183751|183752|183754|183756|183757|183758|183759|183763|183764|183765|183766|183769|183770|183771|183774|183776|183777|183778|183779|183782|183783|183784|183786|183787|183790|183791|183792|183793|183795|183796|183797|183798|183799|183800|183801|183802|183804|183805|183806|183807|183809|183810|183812|183813|183815|183816|183817|183819|183820|183821|183822|183823|183824|183826|183829|183830|183831|183832|183833|183835|183837|183841|183845|183847|183849|183850|183854|183855|183856|183857|183860|183861|183863|183864|183865|183866|183868|183870|183871|183872|183874|183875|183876|183877|183879|183881|183883|183884|183885|183886|183887|183888|183889|183890|183891|183892|183893|183894|183897|183898|183900|183902|183904|183905|183907|183908|183909|183911|183912|183914|183916|183917|183918|183919|183922|183923|183925|183926|183927|183928|183931|183934|183936|183937|183938|183939|183940|183941|183943|183944|183945|183946|183947|183948|183950|183951|183952|183954|183958|183959|183960|183961|183963|183965|183970|183971|183973|183974|183976|183979|183980|183981|183982|183984|183985|183986|183987|183989|183991|183993|184000|184001|184002|184003|184004|184006|184008|184009|184010|184011|184012|184013|184014|184016|184018|184021|184024|184025|184027|184028|184030|184031|184034|184037|184038|184039|184041|184042|184043|184044|184045|184046|184047|184048|184049|184050|184051|184052|184053|184054|184055|184056|184057|184058|184060|184066|184067|184068|184069|184070|184071|184072|184073|184074|184076|184080|184081|184082|184083|184084|184087|184089|184090|184092|184093|184095|184097|184098|184100|184102|184104|184105|186170|186175|186176|186437|186440|186441|186442|186443|186446|186450|186451|186452|186453|186454|186455|186456|186872|190027|190952|194260|204644|205807|205808|205809|205810|205811|205812|205813|205814|205815|205816|205817|205818|205819|205820|205821|205822|205823|205824|205825|205826|205827|205828|205829|205830|205831|205832|205833|205834|205835|205836|205837|205838|205839|205840|205841|205842|205843|205844|205845|205846|205847|205848|205849|205850|205851|205852|205853|205854|205855|205856|205857|205858|205859|205860|205861|205862|205863|205864|205865|205866|205867|205868|205869|205870|205871|205872|205873|205874|205875|205876|205877|205878|205879|205880|205881|205882|205883|205884|205885|205886|205887|205888|205889|205890|205891|205892|205893|205894|205895|205896|205897|205898|205899|205900|205901|205902|205903|205904|205905|205906|205907|205908|205909|205910|205912|205913|205914|205915|205916|205917|205918|205919|205920|205921|205922|205923|205924|205925|205926|205927|205928|205929|205930|205931|205932|205933|205934|205935|205936|205937|205938|205940|205941|205942|205943|205944|205945|205946|205947|205948|205949|205950|205951|205952|205953|205954|205955|205956|205957|205958|205959|205960|205961|205962|205963|205964|205965|205966|205967|205968|205969|205970|205972|205973|205974|205975|205976|205977|205978|205979|205980|205981|205982|205983|205984|205985|205986|205987|205988|205989|205990|205991|205992|205993|205994|205995|205996|205997|205998|205999|206000|206001|206002|206003|206004|206005|206006|206007|206008|206009|206010|206011|206012|206013|206014|206015|206016|206017|206018|206019|206021|206022|206023|206024|206025|206026|206027|206028|206029|206030|206031|206032|206033|206034|206035|206036|206037|206038|206039|206040|206041|206042|206043|206044|206045|206046|206047|206048|206049|206050|206051|206052|206053|206054|206055|206056|206057|206058|206059|206060|206061|206062|206063|206064|206066|206067|206068|206069|206070|206071|206072|206073|206074|206075|206076|206077|206078|206079|206080|206081|206082|206083|206084|206085|206086|206087|206088|206089|206090|206091|206092|206093|206094|206095|206096|206097|206098|206099|206100|206101|206102|206103|206104|206105|206106|206107|206108|206109|206110|206111|206112|206113|206114|206115|206116|206117|206118|206119|206120|206121|206122|206123|206124|206125|206126|206127|206128|206129|206130|206131|206132|206133|206134|206135|206136|206137|206138|206139|206140|206141|206142|206143|206144|206145|206146|206147|206148|206149|206150|206151|206152|206153|206154|206155|206156|206157|206158|206159|206160|206161|206162|206163|206164|206165|206167|206168|206169|206170|206171|206172|206173|206174|206175|206176|213020|213023|213028|213029|213030|213031|213038|213039|213042|213043|213045|213046|213047|213051|213056|213058|213060|213066|213067|213070|213072|213073|213074|213075|213076|213077|213078|213079|213080|213081|213082|213083|213084|213088|213095|213096|213098|222271|222274|222280|222281|222283|222284|222287|222288|222292|222295|222297|222298|222299|222302|222303|222307|222311|222314|222315|222317|222322|222325|222326|222327|222329|222330|222331|222333|222335|222336|222337|222341|222342|222343|222344|222345|222347|222350|222352|223361|225311|226152|226154|226155|226159|226164|226169|226171|226173|226178|226180|226181|226186|226189|226190|226191|226352|226353|227195|227519|227520|227521|227522|227523|227524|227525|227526|227527|227528|227529|227530|227531|227532|227533|227534|227535|227536|227537|227538|227539|227540|227541|227542|227543|227544|227545|227546|227547|227548|227549|227550|227551|227552|227553|227554|227555|227556|227572|230442|230443|231855|231864|231866|231871|231872|231875|231880|231882|231884|231890|231893|231894|231895|231902|231905|231906|231907|231908|231912|234590|234594|234595|234596|234597|234606|234607|234608|234609|234611|234615|234617|234618|234622|234624|234628|234629|234630|234634|234635|234639|234641|234643|234645|234647|234651|234658|234659|234660|234663|234665|234666|234667|234675|234676|234678|234679|234681|234682|234687|234688|234689|234692|234693|234697|234700|234703|234704|234705|234707|234708|234710|234711|234714|234715|234716|234718|234719|234721|234724|234730|234735|234738|234739|234740|234741|234746|234747|234748|234749|234751|234752|234753|234754|234755|234757|234758|234759|234760|234763|234766|234771|234773|234776|234777|234780|234782|234783|234786|234787|234793|234795|234796|234797|234799|234800|234802|234804|234806|234808|234809|234810|234812|234818|234821|234822|234823|234824|234830|234831|234833|234836|234838|234839|234840|234843|234844|234846|234848|234852|234855|234857|234859|234860|234861|234862|234863|234866|234868|234871|234872|234875|234878|234880|234881|234882|234884|234887|234888|234896|234899|234900|234903|234906|234907|234909|234911|234912|234914|234917|234919|234923|234924|234926|234929|234931|234933|234934|234938|234939|234942|234943|234945|234949|234951|234955|234965|234967|234973|234979|234980|234983|234983|234985|234986|234989|234998|235000|235003|235010|235015|235016|235019|235020|235022|235024|235026|235027|235028|235031|235032|235035|235036|235038|235041|235044|235045|235048|235050|235052|235054|235055|235059|235069|235073|235077|237817|237818|237819|237820|237821|237822|237823|237824|237825|237826|241632|241633|241634|241636|241638|241640|241643|241646|241649|241650|241651|241654|241655|241656|241661|241662|241663|241666|241667|241668|241670|241672|241675|241676|241677|241682|241683|241688|241690|241696|241697|241699|241703|241706|241710|241714|241715|241716|241719|241721|241725|241726|241733|241734|244842|244843|244849|244852|244854|246784|246785|246786|246787|246788|246789|246790|246791|246792|246793|246794|246795|246796|246797|246798|246799|246800|246801|246802|246803|246804|246805|246806|246807|246833|246834|246836|246837|246838|246839|246840|246841|246842|246843|246844|246845|247212|247213|247214|247215|247216|247217|247218|247219|247220|247221|247222|247223|247224|247225|247226|247227|247228|247229|247230|247231|247232|247233|247234|247235|247236|247237|247238|247239|247240|247241|247242|247243|247244|247245|247246|247247|247248|247249|247250|247251|247252|247253|247254|247255|247256|247257|247258|247259|247260|247261|247262|247295|247296|247439|248505|248906|248907|248908|248909|248910|248911|248912|248913|248914|248915|248916|248917|248918|248919|248920|248921|248922|248923|248924|248925|248926|248927|248928|248929|248930|248931|248932|248933|248934|248935|248936|248937|248938|248939|248940|248941|248942|248943|248944|248945|248946|248947|248948|248949|248950|248951|248952|248953|248954|248955|248956|248957|248958|248959|248960|248961|248962|248963|248964|248965|248966|248967|248968|248969|248970|248971|248972|248973|248974|248975|248976|248977|248978|248979|248980|248981|248982|248983|248984|248985|248986|248987|248988|248989|248990|248991|248992|248993|248994|248995|248996|248997|248998|248999|249000|249001|249002|249003|249004|249005|249006|249007|249008|249009|249010|249011|249012|249013|249014|249015|249016|249017|249018|249019|249020|249021|249022|249023|249024|249025|249026|249027|249028|249029|249030|249031|249032|249033|249034|249035|249036|249037|249038|249039|249040|249041|249042|249043|249044|249045|249046|249047|249048|249049|249050|249051|249052|249053|249054|249055|249056|249057|249058|249059|249060|249061|249062|249063|249064|249065|249066|249067|249068|249069|249070|249071|249178|249179|254846|254847|259407|259408|259409|259410|259411|259412|259413|259414|259415|259416|259417|259418|259419|259420|259421|259422|259423|259424|259425|259426|259427|259428|259429|259430|259431|259432|259433|259434|259435|259436|259437|259438|259439|259440|259441|259442|259443|259444|259445|259446|259447|259448|259449|259450|259451|259452|259453|259454|259455|259456|259457|259458|259459|259460|259461|259462|259463|259464|259465|259466|259467|259468|259469|259470|259471|259472|259473|259474|259475|259476|259477|259478|259479|259480|259481|259482|259483|259484|259485|259486|259487|259488|259489|259490|259491|259492|259493|259494|259495|259496|259497|259498|259499|259500|259501|259502|259503|259504|259505|259506|259507|259508|259509|259510|259511|259512|259513|259514|259515|259516|259517|259518|259519|259520|259521|259522|259523|259524|259525|259526|259527|259528|259529|259530|259531|259532|260040|260041|260046|260047|260048|260049|260984|260985|260986|260987|260988|260989|260990|260991|260992|260993|260994|260995|260996|260997|260998|260999|261000|261001|261002|261003|261004|261005|261006|261007|261008|261009|261010|261011|261012|261013|261014|261015|261016|261017|261018|261019|261020|261021|261022|261023|261024|261025|261026|261027|261028|261029|261030|261031|261032|261033|261034|261035|261036|261037|261038|261039|261040|261041|261042|261043|261044|261045|261046|261047|261048|261049|261050|261051|261052|261053|261054|261055|261056|261057|261058|261059|261060|261061|261062|261063|261064|261065|261066|261067|261068|261069|261070|261071|261072|261073|261074|261075|261076|261077|261078|261079|261080|261081|261082|261083|261084|261085|261086|261087|261088|261089|261090|261091|261092|261093|261094|261095|261096|261097|261098|261099|261100|261101|261102|261103|261104|261105|261106|261107|261108|261109|261110|261111|261112|261113|261114|261115|261116|261117|261118|261119|261120|261121|261122|261123|261124|261125|261126|261127|261128|261129|261130|261131|261132|261133|261134|261135|261136|261137|261138|261139|261140|261141|261142|261143|261144|261145|261146|261147|261148|261149|261150|261151|261152|261153|261154|261155|261156|261157|261158|261159|261160|261161|261162|261163|261164|261165|261166|261167|261168|261169|261170|261171|261172|261173|261174|261175|261176|261177|261178|261179|261180|261181|261182|261183|261184|261185|261186|261187|261188|261189|261190|261191|261192|261193|261194|261195|261196|261197|261198|261199|261200|261201|261202|261203|261204|261205|261206|261207|261208|261209|261210|261211|261212|261213|261214|261215|261216|261217|261218|261219|261220|261221|261222|261223|261224|261225|261226|261227|261228|261229|261230|261231|261232|261233|261234|261235|261236|261237|261238|261239|261240|261241|261242|261243|261244|261245|261246|261247|261248|261249|261250|261251|261252|261253|261254|261255|261256|261257|261258|261259|261260|261261|261262|261263|261264|261265|261266|261267|261268|261269|261270|261271|261272|261273|261274|261275|261276|261277|261278|261279|261280|261281|261282|261283|261284|261285|261286|261287|261288|261289|261290|261291|261292|261293|261294|261295|261296|261297|261298|261299|261300|261301|261302|261303|261304|261305|261306|261307|261308|261309|261310|261311|261312|261313|261314|261315|261316|261317|261318|261319|261320|261321|261322|261323|261324|261325|261326|261327|261328|261329|261330|261331|261332|261333|261334|261335|261336|261337|261338|261339|261340|261341|261342|261343|261344|261345|261346|261347|261348|261349|261350|261351|261352|261353|261354|261355|261356|261357|261358|261359|261360|261361|261362|261363|261364|261365|261366|261367|261368|261369|261370|261371|261372|261373|261374|261375|261376|261377|261378|261379|261380|261381|261382|261383|261384|261385|261386|261387|261388|261389|261390|261391|261392|261393|261394|261395|261396|261397|261398|261399|261400|261401|261402|261403|261404|261405|261406|261407|261408|261409|261410|261411|261412|261413|261414|261415|261416|261417|261418|261419|261420|261421|261422|261423|261424|261425|261426|261427|261428|261429|261430|261431|261432|261433|261434|261435|261436|261437|261438|261439|261440|261441|261442|261443|261444|261445|261446|261447|261448|261449|261450|261451|261452|261453|261454|261455|261456|261457|261458|261459|261460|261461|261462|261463|261464|261465|261466|261467|261468|261469|261470|261471|261472|261473|261474|261475|261476|261477|261478|261479|261480|261481|261482|261483|261484|261485|261486|261487|261488|261489|261490|261491|261492|261493|261494|261495|261496|261497|261498|261499|261500|261501|261502|261503|261504|261505|261506|261507|261508|261509|261510|261511|261512|261513|261514|261515|261516|261517|261518|261519|261520|261521|261522|261523|261524|261525|261526|261527|261528|261529|261530|261531|261532|261533|261534|261535|261536|261537|261538|261539|261540|261541|261542|261543|261544|261545|261546|261547|261548|261549|261550|261551|261552|261553|261554|261555|261556|261557|261558|261559|261560|261561|262097|262766|262767|262768|262769|262770|262771|262772|262773|262774|262775|262776|262777|262778|262779|262780|262781|262782|262783|262784|262785|262786|262787|262788|262789|262790|262791|262792|262793|262794|262795|262796|262797|262798|262799|262800|262801|262802|262803|262804|262805|262806|262807|262808|262809|262810|262811|262812|262813|262814|262815|262816|262817|262818|262819|262820|262821|262822|262823|262824|262825|262826|262827|262828|262829|262830|262831|262832|262833|262834|262835|262836|262837|262838|262839|262840|262841|262842|262843|262844|262845|262846|262847|262848|262849|262850|262851|262852|262853|262854|262855|262856|262857|262858|262859|262860|262861|262862|262863|263868|264668|319365|319367|319371|327917|327920|327924|334200|334204|334205|334218|335892|335896|335906|335918|335956|358888|358889|358890|358891|358892|358893|358894|358895|358896|358897|358898|360060|360712|360713|360714|360715|360719|360747|360748|360777|361610|362356|372685|372710|372717|372763|373401|373418|373436|373497|373654|373676|373679|373689|373703|373771|373777|373782|375573|390674|399162|399181|399183|399199|399207|399215|399216|399219|399221|399287|399292|399302|399320|399329|399334|399351|399363|399382|399385|399391|399393|399396|399409|399437|399445|399449|399458|399460|399607|399646|399656|399659|399677|399686|399699|399702|399714|399745|399759|399780|399804|399837|399854|399870|399878|399886|399894|399914|399936|399939|399952|399961|399979|399986|399992|400023|400038|400049|400063|400085|400122|400150|404598|404602|404604|408824|408829|408830|408832|408833|408835|408845|408847|408849|408851|408856|408857|408860|408861|408864|408866|408871|408874|408875|408890|408892|408893|408897|408902|408904|408910|408911|408914|408915|408918|408920|408925|408927|408929|408930|408943|408947|408948|408954|408958|408964|408968|408972|408976|408981|408986|408987|408996|408998|409004|409005|409009|409019|413880|416223|416225|416226|416227|416231|416232|416233|416234|416235|416236|416237|416238|416239|416240|416241|416242|416243|416244|416245|416246|416247|416248|416249|416250|416251|416252|416253|416254|416255|416256|416257|416258|416259|416260|416261|416262|416263|416264|416265|416266|416267|416268|416269|416270|416271|416272|416273|416274|416275|416276|416277|416278|416279|416280|416281|416282|416283|416284|416285|416286|416287|416288|416289|416290|416291|416292|416293|416294|416295|416296|416297|416298|416299|416300|416301|416302|416303|416304|416305|416306|416307|416308|416309|416310|416311|416312|416313|416314|416315|416316|416317|416318|416319|416320|416321|416322|416323|416324|416325|416326|416327|416328|416329|416330|416331|416332|416333|416334|416335|416336|416337|416338|416339|416340|416341|416342|416343|416344|416345|416346|416347|416348|416349|416350|416351|416352|416353|416354|416355|416356|416357|416358|416359|416360|416361|416362|416363|416364|416365|416366|416367|416368|416369|416370|416371|416372|416373|416374|416375|416376|416377|416378|416379|416380|416381|416382|416383|416384|416385|416386|416387|416388|416389|416390|416391|416392|416393|416394|416395|416396|416397|416398|416399|416400|416401|416402|416403|416404|416405|416406|416407|416408|416409|416410|416411|416412|416413|416414|416415|416416|416417|416418|416419|423245|423246|423247|423248|423249|424497|424722|424725|424727|424729|424730|424734|424736|424737|424738|424740|424752|424758|424762|424763|424765|424768|424769|424770|424772|424778|424780|426757|427338|427341|427345|427351|427358|427362|427369|427371|427372|427373|427375|427398|427411|427429|427430|429493|429494|429497|432007|432370|432383|432761|432762|432777|432784|432789|432793|432795|432796|432798|432799|432803|432810|432811|434051|434052|434053|434054|434055|434056|434057|434058|434059|434060|434061|434062|434063|434064|434065|434066|434067|434081|434082|434084|434944|434950|434951|434954|434955|434958|434965|434967|434972|434977|434980|434988|434993|434995|434998|435007|435010|435013|435016|435020|435021|435026|435027|435029|435030|435031|435034|435041|435047|435051|435063|435074|435078|435082|435090|462850|463133|463171|463485|463496|463547|463599|468155|476615|476660|476720|476836|476852|476911|476915|476967|476976|477132|480468|480469|480470|480471|480472|480473|480474|480475|480476|484611|484636|484755|484791|484850|484941|486647|487405|508878|508879|508880|508881|512860|512862|512863|512864|512865|512939|512940|513333|513334|513336|513337|513338|513369|527578|527796|527927|528073|528114|536423|538638|538639|538640|538641|538642|538643|538645|538646|538647|538648|538649|538650|538651|538652|538653|538654|538655|538656|538657|538658|538659|538660|538661|538662|538663|538664|538665|538666|538667|538668|538669|538670|538671|538672|538673|538674|538675|538676|538677|538678|538679|538680|538681|538682|538683|538684|538685|538686|538687|538688|538689|538690|538691|538692|538693|538694|538695|538696|538697|538698|538699|538700|538701|538702|538703|538704|538705|538706|538707|538708|538709|538710|538711|538712|538713|538714|538715|538716|538717|538718|538720|538721|538722|538723|538724|538725|538726|538727|538728|538729|538730|538731|538733|538734|538735|538736|538737|538738|538739|538740|538741|538742|538743|538744|538746|538747|538748|538749|538750|538751|538752|538753|538754|538755|538756|538757|539331|539332|539333|539334|539335|539336|539337|539338|539339|539340|550198|568308|575894|575896|575897|575899|575900|575901|575902|575903|575904|575905|575907|575908|575909|575911|575912|575913|575914|575915|575917|575919|575920|575922|576266|581823|609297|618039|618083|619905|625975|626441|641694|641915|645950|672000|672001|682731|753815|784568|789565|791298|791299|791300|791301|791302|791303|791304|791305|791306|791307|791308|791309|791310|791311|791312|791313|791314|791315|791316|791317|791318|791319|791320|791321|791322|791323|791324|791325|791326|791327|791328|791329|791330|791331|791332|791333|791334|791335|791336|791337|791338|791339|791340|791341|799100|800790|800793|800794|800795|800796|811340|840638|858807|858808|861539|861552|871070|871071|871072|871073|871074|871075|871076|871077|872326|919496|919497|964678|965615|966853|967199|972455|972476|972479|974563|974939|977409", + "text": "Breast-ovarian cancer, familial 2" + }, + { + "baseId": "24364", + "text": "Pancreatic cancer 2" + }, + { + "baseId": "24364|24368|24378|24381|24382|24383|24384|24386|24387|24388|46290|46297|46314|46324|46334|46357|46363|46419|46466|46483|46492|46492|46497|46506|46514|46531|46553|46577|46593|46608|46633|46637|46642|46658|46690|46698|46720|46724|46761|46768|46776|46797|46799|46804|46808|46814|46822|49979|49980|49981|49982|49983|49984|49985|49987|49995|49998|49999|50000|50001|50003|50004|50006|50008|50009|50011|65711|65716|65759|65761|65860|65861|65902|65946|65970|65973|65982|66011|66017|66023|66034|66038|66047|66049|66098|66103|66149|66199|66257|66260|66284|66312|66328|66345|66350|66470|66481|66526|66533|66558|66563|66564|66580|66595|66627|66650|66680|66725|66755|66833|66834|66851|66855|66867|66888|66909|66917|66928|66995|67005|67119|67197|67262|67266|67274|67360|67365|67447|67524|67537|67566|67578|67585|96914|96929|96932|97234|102665|102683|102691|131465|131481|131503|131514|131517|131548|131560|131671|131696|131755|136527|136528|136529|139502|139515|140259|140264|140270|140272|150752|151220|151521|151581|152234|152302|152511|183702|183725|183754|183765|183766|184083|205809|205810|206171|206172|206174|206175|206176|213029|231895|234645|234751|234836|235000|241633|249039|259530|259531|319365|319367|319371|327917|327920|327924|334200|334204|334205|334218|335892|335906|335918|335956|416354|432761|435021|476615|484868|550313|568308|612193|618083|641763|811340|871070|871071|871072|871073|871074|871075|871076|871077|872326", + "text": "Fanconi anemia, complementation group D1" + }, + { + "baseId": "24364|24379|46287|46310|46796|66620", + "text": "BRCA2-Related Disorders" + }, + { + "baseId": "24381|24385", + "text": "Glioma susceptibility 3" + }, + { + "baseId": "24394|24394|24396|24396|24398|38391|104431|104432|104433|104433|104436|104440|104441|104447|104448|104456|104456|104471|104480|104492|152779|152779|191486|191862|192077|192078|192193|194278|194279|194279|195216|195217|256531|256534|267852|267852|361027|374152|410300|438037|468444|469027|469027|469226|489189|489189|493639|551585|569886|569892|570726|578553|584376|610116|623351|626263|646841|646842|646914|694210|694219|704421|704423|704424|704425|704426|704427|704428|715777|715781|731182|756205|756208|756209|771892|771893|771894|771918|778416|785781|791837|791839|791839|791840|791840|791841|791842|846355|846356|846357|846358|846359|846360|846365|846366|846367|846369|846370|846435|846436|846437|846438|846439|846440|846441|846442|846443|846444|846445|846446|846447|846448|846449|851759|903674|938267|938268|938269|938270|938271|938272|938273|938274|938277|938278|938279|938297|938298|938299|938300|938301|938302|938303|938304|950343|950344|950345|950348|950349|950350|950351|950368|950369|950370|950371|950372|950373|950374|950375|958342|958343|958344|958346|958347|958348|958373|958374|958375|958376|958377|960253|962029", + "text": "Cone-rod dystrophy 6" + }, + { + "baseId": "24394|104456|104471|267852|361027|438038|578553|609333|626263|919774|919781|920383", + "text": "Choroidal dystrophy, central areolar 1" + }, + { + "baseId": "24396|28222|57649|57709|105317|331368|431634|431838|438037|576244|623968|623984|623986", + "text": "Progressive cone dystrophy (without rod involvement)" + }, + { + "baseId": "24399|24400|24401|24402|24403|24404|24405|45080|45081|45082|45085|91911|138304|138305|138308|138310|138311|138312|138314|138318|138319|138323|141299|141300|141302|141303|141304|188906|247160|332795|332803|332805|332806|332810|332811|332813|332817|332826|332828|332830|332832|342963|342964|342967|342968|342975|342976|342979|342984|342988|343000|343008|343009|343016|343018|343021|348311|348314|348315|348316|348320|348322|348324|348327|348329|348333|348338|348339|348343|348352|348358|348359|349510|349511|349513|349515|349516|349517|349520|349521|349524|349525|349527|349528|349531|349532|349533|349534|360407|362993|376383|377343|377347|379510|410548|410549|468562|469484|469485|470525|470527|532753|532778|532779|532780|532782|532843|532848|532852|533187|533209|570590|570592|570597|570599|572974|572977|574906|574907|574908|574909|574910|614457|624654|647796|647797|647798|647799|647800|647801|647802|647803|647804|647805|647806|647807|647808|647809|647810|647811|647812|647813|647814|647815|647816|647817|647818|647819|656521|694358|694359|695815|704851|741704|741707|741708|760833|772521|776569|778504|779992|791912|791913|791914|847413|847414|847415|847416|847417|847418|847419|847420|847421|847422|847423|847424|847425|847426|847427|847428|847429|847430|847431|847432|847433|847434|847435|852319|880087|880088|880089|880090|880091|880092|880093|880094|880095|880096|880097|880098|880099|880100|880101|880102|880103|880104|880105|880106|880107|880108|880109|880110|880111|880112|880113|880114|880115|880116|880117|880118|880119|880120|880121|880122|880123|880124|880125|880710|880711|880712|880713|928892|928893|928894|928895|938613|938614|938615|950712|950713|958568|958569|958570|958571|964517", + "text": "Severe combined immunodeficiency, autosomal recessive, T cell-negative, B cell-positive, NK cell-negative" + }, + { + "baseId": "24406", + "text": "GIL BLOOD GROUP" + }, + { + "baseId": "24408|24409|24413|24414|24415|24416|24421|24423|24426|24427|24428|24431|24432|24435|24438|24439|24440|24445|38447|45419|45421|45422|45423|45424|45426|45427|45428|48043|57443|57444|57446|57448|57448|57448|57450|57450|57450|57451|57453|57455|57456|57457|57458|57459|57460|57461|57464|57467|57470|57474|57476|57478|57478|57479|57481|78547|78555|78567|78578|78586|78588|78607|78607|78627|78629|78664|78665|78666|78667|78683|78697|78729|78731|78750|78797|78825|78826|78829|78831|78842|78870|78872|78877|78902|78906|78912|78914|78916|78917|78919|78924|78926|78945|142746|142747|142750|142754|142755|142756|142757|142764|142769|173784|173789|173792|173917|173920|173921|173926|173928|196826|196826|196863|196864|196868|196890|196904|196928|196929|196995|196998|204196|229045|239196|239203|246944|258319|290247|290248|290251|290261|290262|290267|290268|290269|290272|290275|290282|291024|291043|291051|291052|291054|291055|291056|291061|291079|291083|291086|291098|291099|291100|294304|294321|294323|294324|294336|294340|294343|294369|294382|294387|294400|294414|294719|294723|294725|294748|294749|367203|367473|367482|367499|367523|393593|404765|439876|452218|452452|452553|500768|509585|509600|511073|519397|551763|551765|551766|551767|558918|559467|559471|578417|616892|616902|616906|625791|625792|680043|680044|691385|818225|858552|888837|888838|888839|888840|888841|888842|888843|888844|888845|888846|888847|888848|888849|888850|888851|888852|888853|888854|888855|888856|888857|888858|888859|888860|888861|888862|888863|888864|888865|888866|888867|888868|888869|888870|888871|888872|891639|960995|966792|967149|967180", + "text": "Long QT syndrome 3" + }, + { + "baseId": "24410|24411|24412|24416|24419|24420|24421|24422|24426|24429|24430|24431|24432|24434|24436|24437|24438|24439|24441|24442|24445|24446|38446|38447|38448|39001|45419|45421|45422|45423|45424|45426|45427|45428|57443|57444|57446|57448|57448|57450|57450|57451|57453|57454|57455|57456|57457|57459|57460|57461|57464|57467|57470|57472|57473|57474|57476|57478|57478|57479|57481|78522|78528|78534|78552|78555|78559|78563|78567|78571|78577|78578|78579|78581|78587|78596|78605|78607|78607|78616|78627|78629|78643|78656|78658|78664|78665|78667|78670|78677|78683|78685|78696|78697|78702|78705|78714|78715|78727|78729|78750|78779|78805|78820|78831|78842|78859|78870|78877|78880|78888|78895|78897|78902|78906|78907|78912|78914|78916|78917|78925|78926|78934|78938|78939|78944|101304|142746|142747|142750|142754|142755|142756|142757|142764|142769|173781|173784|173788|173789|173792|173917|173920|173921|173926|173928|178526|188434|189217|189357|196826|196826|196863|196889|196890|196891|196896|196910|196913|196928|196929|196995|197003|197194|229045|229058|239196|239203|239222|248628|248629|251110|258311|258319|258926|290247|290248|290251|290261|290262|290267|290268|290269|290272|290275|290282|291024|291043|291051|291052|291054|291055|291056|291061|291079|291083|291086|291098|291099|291100|294304|294321|294323|294324|294336|294340|294343|294369|294382|294387|294400|294414|294719|294723|294725|294748|294749|367203|367473|367482|367499|367523|393560|393593|393828|393998|406291|424891|424899|439143|442549|452218|452553|452767|452775|500768|509585|509600|511073|519397|551764|558918|559467|559471|562851|578417|589828|589829|616892|616902|616906|625793|631281|631317|677131|679711|679712|691385|691397|790391|790392|858552|888837|888838|888839|888840|888841|888842|888843|888844|888845|888846|888847|888848|888849|888850|888851|888852|888853|888854|888855|888856|888857|888858|888859|888860|888861|888862|888863|888864|888865|888866|888867|888868|888869|888870|888871|888872|891639|909521|953454|960995|960996|960997|964222|966429|967149|967180|967264|967265|970532|983502", + "text": "Brugada syndrome 1" + }, + { + "baseId": "24413|24426|24431|24432|24433|24434|24435|24438|38447|45419|45421|45422|45423|45424|45426|45427|45428|57443|57444|57446|57448|57450|57451|57453|57456|57457|57459|57460|57461|57464|57467|57470|57474|57476|57478|57479|57481|78552|78555|78578|78607|78626|78664|78665|78666|78667|78683|78697|78714|78729|78750|78817|78842|78857|78870|78877|78880|78902|78906|78912|78914|78916|78917|78926|142746|142747|142750|142754|142755|142756|142757|142764|142769|173784|173789|173792|173917|173920|173921|173926|173928|196826|196849|196863|196890|196928|196929|196995|229045|239196|239203|258319|290247|290248|290251|290261|290262|290267|290268|290269|290272|290275|290282|291024|291043|291051|291052|291054|291055|291056|291061|291079|291083|291086|291098|291099|291100|294304|294321|294323|294324|294336|294340|294343|294369|294382|294387|294400|294414|294719|294723|294725|294748|294749|367203|367473|367499|367523|393593|452218|452553|500768|509585|509600|511073|513944|519397|558918|559471|616892|616902|616906|631317|691385|858552|888837|888838|888839|888840|888841|888842|888843|888844|888845|888846|888847|888848|888849|888850|888851|888852|888853|888854|888855|888856|888857|888858|888859|888860|888861|888862|888863|888864|888865|888866|888867|888868|888869|888870|888871|888872|891639|915654|918829", + "text": "Sick sinus syndrome 1, autosomal recessive" + }, + { + "baseId": "24416|173788|189359", + "text": "Sinus node disease" + }, + { + "baseId": "24417|24424|24426|24431|24432|24438|38447|44159|44160|45419|45421|45422|45423|45424|45426|45427|45428|57443|57444|57446|57448|57450|57451|57453|57456|57457|57459|57460|57461|57464|57467|57470|57474|57476|57478|57479|57481|78552|78555|78578|78607|78664|78665|78666|78667|78683|78697|78714|78750|78842|78870|78877|78880|78902|78906|78912|78914|78916|78917|78926|142746|142747|142750|142754|142755|142756|142757|142764|142769|173784|173789|173792|173917|173920|173921|173926|173928|196826|196863|196890|196928|196929|196995|229045|239196|239203|258319|290247|290248|290251|290261|290262|290267|290268|290269|290272|290275|290282|291024|291043|291051|291052|291054|291055|291056|291061|291079|291083|291086|291098|291099|291100|294304|294321|294323|294324|294336|294340|294343|294369|294382|294387|294400|294414|294719|294723|294725|294748|294749|367203|367473|367499|367523|393593|452218|452553|500768|509585|509600|511073|519397|558918|559471|616892|616902|616906|691385|858552|888837|888838|888839|888840|888841|888842|888843|888844|888845|888846|888847|888848|888849|888850|888851|888852|888853|888854|888855|888856|888857|888858|888859|888860|888861|888862|888863|888864|888865|888866|888867|888868|888869|888870|888871|888872|891639", + "text": "Progressive familial heart block, type 1A" + }, + { + "baseId": "24418", + "text": "Heart block, nonprogressive" + }, + { + "baseId": "24422|24426|24431|24432|24438|38447|45400|45419|45421|45422|45423|45424|45426|45427|45428|52126|53160|56054|57443|57444|57446|57448|57450|57451|57453|57456|57457|57459|57460|57461|57464|57467|57470|57474|57476|57478|57479|57481|78552|78555|78578|78607|78664|78665|78666|78667|78683|78697|78714|78750|78842|78870|78877|78880|78902|78906|78912|78914|78916|78917|78926|142746|142747|142750|142754|142755|142756|142757|142764|142769|165527|165553|173784|173789|173792|173917|173920|173921|173926|173928|176814|178465|178571|178579|178607|178629|178655|178718|178754|196826|196863|196890|196928|196929|196995|229045|239196|239203|258319|290247|290248|290251|290261|290262|290267|290268|290269|290272|290275|290282|291024|291043|291051|291052|291054|291055|291056|291061|291079|291083|291086|291098|291099|291100|294304|294321|294323|294324|294336|294340|294343|294369|294382|294387|294400|294414|294719|294723|294725|294748|294749|367203|367473|367499|367523|393593|452218|452553|500768|509585|509600|511073|519397|558918|559471|578456|616892|616902|616906|691385|858552|888837|888838|888839|888840|888841|888842|888843|888844|888845|888846|888847|888848|888849|888850|888851|888852|888853|888854|888855|888856|888857|888858|888859|888860|888861|888862|888863|888864|888865|888866|888867|888868|888869|888870|888871|888872|891639", + "text": "Paroxysmal familial ventricular fibrillation 1" + }, + { + "baseId": "24424|24426", + "text": "Atrioventricular block" + }, + { + "baseId": "24425", + "text": "Cardiac conduction defect, nonprogressive" + }, + { + "baseId": "24426|29188|45778|45780|54093|241801|514099", + "text": "Hemiplegia" + }, + { + "baseId": "24426|29188|54093|193096|241801|359762|513896|514011|514092|970990", + "text": "Migraine" + }, + { + "baseId": "24426|24431|24432|24435|24440|24445|38447|45419|45421|45422|45423|45424|45426|45427|45428|48043|48044|57443|57444|57446|57448|57450|57451|57453|57456|57457|57459|57460|57461|57464|57467|57470|57474|57476|57478|57479|57481|78552|78555|78578|78607|78626|78664|78665|78666|78667|78683|78697|78714|78750|78842|78870|78877|78880|78902|78906|78912|78914|78916|78917|78925|78926|142746|142747|142750|142754|142755|142756|142757|142764|142769|173784|173789|173792|173917|173920|173921|173926|173928|196826|196863|196890|196928|196929|196943|196995|229045|239196|239203|258319|290247|290248|290251|290261|290262|290267|290268|290269|290272|290275|290282|291024|291043|291051|291052|291054|291055|291056|291061|291079|291083|291086|291098|291099|291100|294304|294321|294323|294324|294336|294340|294343|294369|294382|294387|294400|294414|294719|294723|294725|294748|294749|367203|367473|367499|367523|393593|452218|452553|500768|509585|509600|511073|519397|558918|559471|578417|616892|616902|616906|691385|827994|858552|888837|888838|888839|888840|888841|888842|888843|888844|888845|888846|888847|888848|888849|888850|888851|888852|888853|888854|888855|888856|888857|888858|888859|888860|888861|888862|888863|888864|888865|888866|888867|888868|888869|888870|888871|888872|891639", + "text": "Dilated cardiomyopathy 1E" + }, + { + "baseId": "24431|24432", + "text": "Long qt syndrome 3, acquired, susceptibility to" + }, + { + "baseId": "24432|28518|38447|40366|40367|40369|40376|40377|40378|40380|40399|44468|45099|45101|45419|45423|51655|51656|51658|51659|51660|51661|57444|57446|57453|57459|57460|57463|57467|57470|57474|57481|67638|67715|67718|77916|77926|78267|136399|140033|140036|140038|140041|140043|140044|140045|140046|140047|140048|140052|140053|141693|141694|141695|141696|141697|141698|141707|141708|141709|141712|141715|142740|142741|142747|142754|142757|142764|142925|173790|173917|173920|173931|175840|176358|178523|178587|178589|179082|186151|187117|187213|188430|188434|188440|188441|188458|188463|188716|188726|188744|188750|189264|189266|189267|189272|189273|189276|189277|189285|189286|189288|189297|189299|189300|189302|189303|189305|189306|189309|189322|196890|196928|196995|197424|212621|212923|221743|221747|222853|224269|229045|236772|238773|238774|239196|239203|240190|240193|240201|240203|243350|243351|243352|243578|258490|258516|259046|259054|290242|290243|290244|290247|290248|290251|290254|290261|290262|290267|290268|290269|290271|290272|290275|290276|290282|291024|291029|291030|291039|291040|291043|291049|291051|291052|291054|291055|291056|291061|291066|291078|291079|291083|291086|291087|291088|291095|291098|291099|291100|291730|291733|293055|293056|293071|293074|293079|294304|294310|294320|294321|294323|294324|294336|294337|294340|294342|294343|294369|294382|294384|294386|294387|294391|294399|294400|294413|294414|294701|294707|294717|294718|294719|294722|294723|294725|294738|294748|294749|296327|296330|296331|296333|296349|296387|296388|296389|296390|303490|303491|303492|303493|303498|303500|303501|303502|303507|303514|303515|303516|303524|303547|303549|306910|306912|306921|306928|306931|306932|306933|306939|306940|306943|306944|306950|306951|306952|306956|306967|306975|311818|311819|311820|311829|311831|311836|311837|311838|311839|311842|311844|311851|311852|311855|311856|311857|311858|311859|311865|311866|311867|311889|311890|312473|312475|312476|312477|312481|312483|312485|312486|312489|312493|312495|312502|312505|312506|312507|312509|312510|312511|312512|313257|313258|313262|313263|313264|313265|313267|313268|313284|313288|313292|313293|313294|313298|313299|313300|313301|313305|313306|313309|313312|313313|313314|313320|313322|313786|313787|313790|313794|313799|313800|313812|313816|313817|313822|313826|313828|313829|313831|313834|318378|318379|318384|318395|318396|318397|318408|318411|318415|318416|318418|318429|318430|318441|318442|318452|318454|318464|318466|318469|318470|318471|319388|319394|319395|319396|319397|319399|319400|319401|319402|319417|319418|319433|319434|319435|319441|319442|319443|319444|319980|319984|319986|319987|319988|319993|319999|320013|320015|320017|320018|320021|320022|320025|320026|320030|320032|324519|324524|324528|324529|324534|324535|324537|324542|324543|324544|324580|324581|324582|324583|324587|324588|324590|324591|325242|325244|325245|325252|325254|325257|325258|325259|325269|325270|325277|325278|325289|325291|325300|325306|325510|325511|325512|325513|325514|325524|325525|325528|325531|325532|325537|325538|325539|325545|325549|325560|325562|325570|325578|325579|326163|326169|326170|326178|326190|326191|326206|326209|326210|326211|326212|326214|326218|326474|326475|326478|326479|326489|326511|326517|326519|326520|326521|326523|326529|326533|326534|326535|326536|326539|326540|326545|326565|326566|326575|326583|326584|326586|327103|327120|327127|327130|327131|327132|327133|327139|327142|327143|327152|327157|327158|335276|335279|335288|335290|336609|336611|336618|336619|336622|336624|336627|336628|336632|336636|336638|336641|336647|336648|336656|336659|336663|336668|336670|336674|345097|345102|345105|345107|345111|345112|345116|346324|346325|346327|346329|346330|346335|346336|346337|346339|346340|346343|346344|346347|346349|346350|346351|346352|346354|346356|349881|349882|349884|349885|350563|350564|350566|350568|350569|350571|350572|350574|350575|350577|350578|350579|350583|350586|350589|350592|350593|350595|350597|350900|350901|350904|350907|350909|350911|350913|350916|350918|351605|351606|351609|351612|351613|351616|351619|351620|351623|351628|351633|351636|351637|351639|351640|351642|351644|351645|351647|351648|351650|353590|392694|403266|403267|403311|403778|450940|451057|469915|469916|471027|630071|630072|630073|648179|648180|648181|774764|786236|800961|826547|852874|940712|942952|942953|953105|960922", + "text": "Romano-Ward syndrome" + }, + { + "baseId": "24432|29166|45135|51881|51992|52111|52138|53649|54357|57209|136674|141245|172435|174890|175138|175197|175452|175457|175645|175998|176098|178182|178256|179675|189962|205199|205200|205201|205202|205203|205204|205205|390140|398720|439513|463912|464185|467858|481117|499142|511101|624835|635277|672427|672440", + "text": "Left ventricular noncompaction" + }, + { + "baseId": "24433|57463|142741|173790|173931|178523|188736|224269|224275|290242|290243|290244|290254|290271|290276|291029|291030|291039|291040|291049|291066|291078|291087|291088|291095|294310|294320|294337|294342|294384|294386|294391|294399|294413|294701|294707|294717|294718|294722|294738", + "text": "Sick sinus syndrome" + }, + { + "baseId": "24435|178658", + "text": "AV junctional rhythm" + }, + { + "baseId": "24435|24438|78524|78817|196833|578417", + "text": "SCN5A-Related Disorders" + }, + { + "baseId": "24439|24440|39000|39001|39002|39003|39004|578417", + "text": "Atrial fibrillation, familial, 10" + }, + { + "baseId": "24440|78922", + "text": "Atrial standstill 1, digenic" + }, + { + "baseId": "24441|29481", + "text": "Long QT syndrome 2/3, digenic" + }, + { + "baseId": "24446|38448", + "text": "Brugada syndrome, lidocaine-induced" + }, + { + "baseId": "24447|24448|24449|24450|24451|24452|24453|24454|24454|24456|24459|24460|24461|24462|24463|24464|24465|38998|38999|50012|132983|139539|150825|180312|180325|212668|240597|397415|459102|459956|474923|475124|575787|575788|575789|575791", + "text": "Cutaneous malignant melanoma 2" + }, + { + "baseId": "24448|27386|27390|27395|27398|27413|27640|27641|27651|28691|40609|44227|50038|133269|139098|151478|151858|152480|179419|181011|232035|236455|237595|247391|247392|362912|362970|362976|363182|363352|363553|363555|403675|420985|423861|424253|424257|424258|424558|467518|479357|610691|610692|965896|965897|965898|965899|965900", + "text": "Lip and oral cavity carcinoma" + }, + { + "baseId": "24449|24451|24454|24454|24459|24462|45669|50012|50016|50017|50018|50019|132979|132980|132981|132983|133657|137619|137620|137621|137623|139538|140420|150825|150959|151314|180312|180315|180325|180325|180326|182929|212661|212662|212668|221816|221819|221820|221826|233746|233753|244545|244548|244550|244553|259924|358804|358805|358806|358807|358808|358809|358810|358811|358812|358813|358814|358815|358816|358817|371197|397415|397433|459097|459102|459420|459452|475122|539273|539274|539275|539276|575787|575789|790887|790888|790889|790890|790891|790892|790893|790894|790895|790896|790897|790898|790899|790900", + "text": "Melanoma-pancreatic cancer syndrome" + }, + { + "baseId": "24451|24453|24454|24457|24459|24462|24464|24465|31967|50012|50016|50017|50018|50019|88528|98338|132977|132979|132980|132981|132982|132983|133657|137612|137613|137614|137615|137616|137617|137618|137621|137622|139534|139535|139536|139537|139538|139539|140420|150825|151119|151133|151314|151316|151596|151775|151805|152439|152596|152601|180311|180312|180313|180314|180315|180316|180317|180320|180322|180325|180548|180549|180550|182928|182929|182930|182931|182933|182936|182937|182938|182940|182941|182943|183598|183600|183602|183603|183604|183605|183606|183608|183609|186094|186095|186166|186167|212659|212660|212661|212662|212663|212664|212665|212666|212667|212668|213001|213002|213003|213005|213006|213007|213008|221816|221817|221818|221819|221821|221822|221823|221824|221825|221826|222257|222258|222259|222260|222261|222264|222265|222266|233744|233745|233746|233748|233750|233751|233752|233753|233754|233757|233759|233761|233764|233766|233768|233769|233770|233771|234570|234571|234572|234573|234574|234576|234579|234581|234585|234586|234587|240434|240593|240594|240595|240596|240597|240598|240599|240600|240601|240602|240603|240604|240605|240606|241571|241572|241573|241574|241576|244545|244547|244548|244552|244553|244831|244832|259924|264403|318150|358806|358814|358816|363184|363185|363186|363189|371183|371193|372933|373213|373216|375393|396850|396856|396863|396864|396868|396869|397006|397055|397064|397065|397067|397075|397078|397082|397084|397085|397238|397246|397251|397259|397268|397270|397276|397409|397412|397415|397433|397437|399043|399044|399045|399046|399047|399179|399182|399194|399197|399198|399537|399542|399546|399552|399554|399803|399814|407649|407650|407651|407652|407655|407656|407658|407659|407661|407664|407666|407673|407674|407675|408723|408724|408725|408726|421038|421039|421040|421749|432735|432737|444464|458131|459088|459092|459094|459097|459098|459102|459103|459105|459116|459121|459123|459165|459398|459403|459405|459408|459415|459420|459423|459449|459450|459452|459453|459469|459470|459471|459480|459482|459483|459486|459501|459938|459940|459943|459947|459948|459954|459956|459959|459961|459969|459970|462415|462416|462659|462665|462668|462670|462675|462677|462679|462681|463152|463157|463168|463261|463262|463265|463283|463284|474893|474894|474895|474900|474905|474912|474916|474919|474923|475067|475068|475072|475086|475088|475095|475097|475098|475102|475104|475113|475116|475124|475128|476458|476470|476474|476480|476484|476491|476492|476499|476502|476503|476506|476757|476760|476761|476774|476777|476781|477059|477061|477074|477085|477094|482683|482710|482739|484020|484027|484030|484114|484118|484125|484131|484134|484143|484273|484276|487257|487369|487493|523829|524406|524483|524490|524492|524494|524501|524504|524506|524772|524775|524781|524783|524786|524788|524799|524800|524909|524912|524913|524916|524917|525050|525052|525057|525065|525068|525070|525072|525077|527312|527330|527621|527629|527852|527855|562602|563142|563144|563145|563148|563151|563154|563155|563158|563165|563171|563175|563176|563178|563873|563879|563881|563882|563883|563887|563900|563902|563904|563905|565021|565026|565027|565357|565668|565670|565672|565831|565834|565838|565840|565843|565845|565847|565848|566983|566985|566990|566995|568158|568159|568161|568932|568934|568951|568959|568960|568961|568975|568976|568982|575791|611081|617516|617517|617521|617524|617528|617529|617530|617533|617542|617543|621825|638147|638148|638149|638150|638151|638152|638153|638154|638155|638156|638157|638158|638159|638160|638161|638162|638163|638164|638165|638166|638167|638168|638169|638170|638171|638172|638173|638174|638175|638176|638177|638178|638179|638180|638181|641326|641327|641328|641329|641330|641331|641332|641333|641334|641335|641336|641337|641338|641339|641340|641341|641342|641343|641344|641345|641346|651846|651900|695436|738802|738803|753528|775915|784447|784449|809403|809412|809423|809424|809426|809429|809430|809434|811247|811256|811263|811264|811273|811276|811278|815403|820121|820122|820123|820510|820511|822022|822023|822024|822025|822026|822027|822028|822029|822272|835990|835991|835992|835993|835994|835995|835996|835997|835998|835999|836000|836001|836002|836003|836004|836005|840157|840158|840159|840160|840161|840162|840163|840164|840165|840166|840167|840168|840169|840170|840171|840172|840173|840174|840175|840176|840177|840178|840179|840180|840181|840182|840183|852496|911082|925546|925547|925548|925549|925550|925551|925552|926698|926699|926700|926701|926702|926703|926704|926705|926706|934705|934706|934707|934708|934709|934710|934711|934712|934713|936214|936215|936216|936217|936218|936219|936220|936221|936222|941040|946556|946557|946558|946559|946560|948119|948120|948121|948122|948123|948124|948125|948126|948127|948128|948129|955783|955784|955785|955786|955787|955788|955789|955790|955791|955792|956913|956914|956915|960682|960683", + "text": "Hereditary melanoma" + }, + { + "baseId": "24454|24458|150825|180312|180325", + "text": "Melanoma and neural system tumor syndrome" + }, + { + "baseId": "24466|134765|134766|134767|134769|134770|134771|134772|134773|134774|134775|177785|190388|190389|190390|190393|190395|191534|192748|207792|213600|247045|259940|267358|268258|268416|271282|271354|271795|272266|273737|273840|311137|311139|311140|311141|311147|311151|311153|311154|311155|311159|311161|311166|311171|316451|316455|316457|316458|316464|316466|316467|316468|316470|316475|316477|316478|316481|316488|322527|322531|322534|322538|322540|322541|322542|322544|322546|322547|322548|322552|322557|322558|322559|322561|322562|323207|323209|323210|323223|323224|323264|323268|323271|323272|323275|323276|323278|323279|323291|323295|323297|323299|359868|431491|437866|441382|444658|460156|460161|460165|460169|460171|460276|460280|460284|460292|460297|460535|460539|460542|460967|488565|489501|490853|492638|492638|493641|493671|493717|525400|525406|525412|525413|525419|525424|525426|525510|525511|525512|525599|525621|525646|525653|525654|525792|525796|552146|563952|563955|563961|566505|566510|569771|576383|577156|612886|614352|639162|639163|639164|639165|639166|639167|639168|639169|639170|639171|639172|639173|639174|639175|639176|639177|639178|639179|652335|652337|701432|701433|701434|701435|701436|712475|724069|724070|724071|737601|737602|737604|737606|744649|752265|752266|752267|752268|752269|767986|767988|767990|767996|775579|783742|783743|783745|783746|787701|787870|796468|796472|837312|837313|837314|837315|837316|837317|837318|837319|837320|837321|837322|837323|837324|837325|837326|837327|837328|837329|837330|837331|837332|837333|866284|866285|866286|866287|866288|866289|866290|866291|866292|866293|866294|866295|866296|866297|866298|866299|866300|866301|866302|866303|866304|868503|868504|868505|868506|919288|919289|919290|919291|925929|925930|925931|925932|925933|925934|925935|925936|925937|925938|925939|925940|925941|925942|935177|935178|935179|935180|935181|935182|935183|935184|935185|935186|935187|935188|940968|940969|947074|947075|947076|947077|947078|956210|956211|956212|956213|956214|956215|960729|964346|964347|964348", + "text": "Paroxysmal nonkinesigenic dyskinesia, 3, with or without generalized epilepsy" + }, + { + "baseId": "24467|24468|24469|24470|24471|24472|24473|38997|99648|100923|100932|100935|100936|100937|100946|100947|100956|137774|137778|169207|169208|169210|169211|169212|169213|169215|169216|169218|169219|169220|169221|169223|169226|169227|169228|169229|169230|169231|169233|169234|169235|169236|169237|169238|169239|169240|169242|169243|169244|169245|169246|169247|169248|169250|169251|169252|169253|169254|169255|169256|169258|169259|169260|169261|169263|169264|169265|169266|169267|169268|169269|169270|169271|169272|177285|191888|192379|193041|205026|205780|208240|208259|208260|208261|208262|208263|208264|208265|208267|208268|208269|208270|208271|208272|208273|208276|208277|208278|208279|208281|225888|263005|263759|264634|338281|338285|338289|338298|338300|338310|338323|338324|347913|347924|347930|347960|347966|347967|351703|351706|351710|351711|351714|351718|352602|352603|352608|352613|352614|360999|361586|362447|424990|429809|429810|431385|465732|465735|465745|465750|466446|466450|466463|466468|481223|511035|513131|513132|529241|529568|529980|529982|530098|530105|530307|530519|530522|530525|530527|536101|536103|536106|536108|536109|537256|539065|539104|550625|551791|567500|567504|568136|568137|570193|573660|574058|574060|574066|576341|578530|578531|583125|610645|611421|653890|677299|682825|682826|682835|682865|682866|682867|682868|682869|682870|682871|682872|682873|682874|682875|682876|682877|682878|682879|682880|682881|682882|682883|682884|682885|682886|682887|682888|682889|682890|682891|682892|682893|682894|682895|682896|682897|682898|682899|682900|682901|682902|682903|682904|682905|682906|682907|682908|682909|682910|682911|682912|682913|682914|682915|682916|682917|682918|682919|682920|682921|682922|682923|682924|682925|682926|682927|682928|682929|682930|682931|682932|682933|682934|682935|682936|682937|682938|682939|682940|682941|682942|682943|682944|682945|682946|682947|682948|682949|791615|791616|791617|791618|791619|792072|792074|792075|792076|792077|792078|792079|816004|857658|919648|919649|919650|919651|919652|919653|919654|919655|919656|961535|961536|961623|961624|963804|964049|964454|964455|964755|966029|966030|966031|969862|969880|971048|973041|975670|977275|977276", + "text": "Rubinstein-Taybi syndrome 1" + }, + { + "baseId": "24474|24475|24476|24477|24478|24479|45812|98212|135740|135741|168982|177027|177421|178065|186981|186982|194255|194256|194779|195192|195193|195194|213838|256270|265385|265523|265625|266096|266691|266748|267101|267355|267685|268237|268922|268945|269182|270055|270168|270250|270286|272832|273682|274010|274031|274128|274525|274759|274862|274955|329109|329113|358446|358447|358448|358449|358450|358451|358452|358453|358454|358455|358456|360257|378444|410065|410066|429989|445804|445806|466980|466985|467925|468175|468180|468374|468380|468383|468385|488497|488527|488615|488807|489091|489266|489699|491369|491436|491596|495843|531233|531400|531482|537290|548203|548208|548219|548227|548233|548240|548242|548244|548249|548534|548541|548542|548544|548545|548546|548552|548962|548966|548974|548975|548976|548977|548979|548985|569247|571259|571260|571626|574512|574513|574514|585149|587065|588618|608911|610086|646177|646178|646179|646180|646181|646182|646183|646184|652816|653480|681858|694115|694117|694118|695756|704210|740858|755933|776354|785638|788135|800046|802221|845601|845602|845603|845604|845605|845606|845607|845608|852760|852881|919740|928365|928366|928367|928368|938023|950026|958180|958181|958182|958183|958184|958185|958186|966167|966351", + "text": "Autosomal recessive limb-girdle muscular dystrophy type 2D" + }, + { + "baseId": "24476|24478|98214|98559|98560|98561|98562|98564|135740|135741|135742|177027|177421|194779|195193|195194|254830|256270|266748|267685|268922|269182|269367|270070|270168|272508|272665|274010|274946|275451|319224|327710|327711|327722|327724|329101|329103|329104|329108|329109|329114|334008|334010|334017|334022|335624|335632|339230|345125|345126|345131|345132|346500|346505|346506|346510|504463|539048|652816|679459|693327|760608|870888|870889|870890|870891|870892|870893|870894|870895|870896|870897|870898|870899|870900|870901|870902|877911|877912|877913|877914|877915", + "text": "Sarcoglycanopathy" + }, + { + "baseId": "24478|71221|265264|858952", + "text": "Limb-girdle muscular dystrophy, autosomal recessive" + }, + { + "baseId": "24480|24481|135773|192372|244074|297370|297382|297394|297395|297405|297409|297413|297415|297421|299377|299379|299389|299398|299411|299419|299422|299423|299424|299428|299434|299438|299455|299471|299477|299478|299479|299484|303592|303602|303604|303606|303630|303631|303637|303641|303642|303910|303913|303915|303916|303922|303924|303929|303932|303936|303941|303942|415004|709902|749482|749485|793085|795697|795698|894180|894181|894182|894183|894184|894185|894186|894187|894188|894189|894190|894191|894192|894193|894194|894195|894196|894197|894198|894199|894200|896095|896096", + "text": "Episodic ataxia, type 6" + }, + { + "baseId": "24482|193507|312076|312081|312083|312085|312088|317728|317747|317748|317749|317755|323771|323789|323792|323793|323795|323796|323804|323809|323818|323831|323837|323843|324482|324490|324493|324496|324502|324525|324539|324545|324546|324547|551955|724175|866823|866824|866825|866826|866827|866828|866829|866830|866831|866832|866833|866834|866835|866836|868581|868582|964351", + "text": "Spondyloepimetaphyseal dysplasia, Missouri type" + }, + { + "baseId": "24483|24484", + "text": "Metaphyseal anadysplasia 1, autosomal dominant" + }, + { + "baseId": "24485|181586|181587|324493|324539|539031|919313", + "text": "Metaphyseal chondrodysplasia, Spahr type" + }, + { + "baseId": "24486|615263|615264", + "text": "Noonan syndrome 12" + }, + { + "baseId": "24489|24490|24491|24492|24493|24494|24495|24496|34270|34271|34272|34273|48493|48494|85113|134936|134937|134938|134939|134940|134941|134942|134943|134944|134945|134946|134947|134948|134949|134950|134951|134952|134953|134954|134955|134956|134957|134958|134961|134962|134964|134965|134966|134967|134968|134969|134970|134971|134972|134973|134974|134975|134976|134977|134978|134979|134980|134981|134982|134985|134986|134987|134988|134989|134991|134992|206889|206890|206891|206892|206893|206894|206898|206899|206901|206902|206904|227222|227302|236930|250373|250374|250375|250379|250381|250383|274476|282637|282638|282639|282641|282642|282644|282648|282649|282655|282658|282660|282662|282666|282669|282670|282672|282673|282674|282678|282681|282686|282687|282689|282702|282704|282709|282714|282715|282716|282717|282721|282723|282725|282726|282735|282736|282738|282743|282744|282751|282753|282758|282759|282763|283409|283412|283413|283414|283416|283419|283431|283433|283450|283453|283455|283458|283460|283461|283462|283464|283471|283473|283475|283476|283477|283478|283484|283485|283488|283489|283498|283501|283503|283506|283507|283508|283510|283513|283514|283519|283521|283528|283533|283538|283563|283569|283575|283577|283578|283580|283582|283583|283591|284920|284939|284940|284941|284942|284946|284949|284951|284965|284966|284967|284970|284971|284981|284983|284984|284985|284987|284990|284997|284999|285007|285009|285017|285045|285049|285056|285059|285068|285078|285081|285082|285083|285093|285096|285101|285104|285105|285106|285108|285109|285114|285445|285446|285447|285448|285450|285454|285455|285456|285459|285467|285489|285490|285505|285510|285511|285514|285515|285517|285518|285519|285537|285542|285545|285547|285548|285551|285562|285566|285571|285573|285599|285601|285605|285609|285615|285616|285618|363856|366196|499026|508774|536617|550350|552056|614161|614162|622317|672033|672034|672035|697149|697150|707841|719389|719390|719393|719394|719395|719396|719398|719399|719402|719404|732911|732917|732920|732921|732923|732926|732927|732932|743847|746917|746930|746932|746936|746937|746938|762404|762413|780950|800666|881431|881432|881433|881434|881435|881436|881437|881438|881439|881440|881441|881442|881443|881444|881445|881446|881447|881448|881449|881450|881451|881452|881453|881454|881455|881456|881457|881458|881459|881460|881461|881462|881463|881464|881465|881466|881467|881468|881469|881470|881471|881472|881473|881474|881475|881476|881477|881478|881479|881480|881481|881482|881483|881484|881485|881486|881487|881488|881489|881490|881491|881492|881493|881494|881495|881496|881497|881498|881499|881500|881501|881502|881503|881504|881505|881506|881507|881508|881509|881510|881511|881512|881513|881514|881515|881516|881517|881518|881519|881520|881521|881522|881523|881524|881525|881526|881527|881528|881529|882831|882832|882833|882834|882835|882836|882837|882838|882839|882840|882841|882842|975855|983790", + "text": "Donnai-Barrow syndrome" + }, + { + "baseId": "24497|24498|24499|24500|24501|24502|24503|24504|24505|24506|24508|24509|24510|24511|106628|336911|350787|350794", + "text": "Leukocyte adhesion deficiency" + }, + { + "baseId": "24497|24502|24508|24510|79106|79107|106609|106610|106611|106612|106613|106614|106615|106616|106617|106618|106619|106620|106621|106622|106623|106624|106625|106626|106627|106628|106629|106630|336913|336915|336919|336922|336925|336929|336932|336941|336943|346618|346621|346623|346628|346637|346638|346639|346640|346645|346646|346647|346650|346651|346657|346661|346662|346667|346668|346678|350790|350791|350795|350798|350799|350802|350803|350806|350807|350810|350811|350814|350815|350818|350820|350821|351833|351836|351837|351839|351841|351842|351845|351848|351850|351852|351854|351856|351858|351859|351861|351863|351865|379792|438819|469701|470747|470762|470763|471244|471712|471713|533940|533946|533955|533958|533960|533965|533968|533970|533995|533996|533998|534008|534009|534018|534479|534481|534484|534490|534505|571609|571611|573166|573167|573851|575184|575185|575186|575187|612110|614151|614483|620673|624694|649045|649046|649047|649048|649049|649050|649051|649052|649053|649054|649055|649056|649057|649058|649059|649060|649061|649062|649063|649064|649065|649066|649067|649068|653672|705738|705739|717255|717256|717257|717258|728959|728963|731384|742692|742693|742695|742696|742697|742698|742699|745350|757875|757876|757878|757880|757881|757882|760970|773388|773391|773392|773393|773396|776756|780013|786528|786529|786530|786531|792011|848882|848883|848884|848885|848886|848887|848888|848889|848890|848891|848892|848893|848894|848895|848896|848897|848898|848899|848900|848901|848902|848903|848904|848905|848906|848907|848908|848909|848910|886897|886898|886899|886900|886901|886902|886903|886904|886905|886906|886907|886908|886909|886910|886911|886912|886913|886914|886915|886916|886917|886918|886919|886920|886921|886922|886923|886924|887517|887518|887519|887520|887521|919938|929351|929352|929353|929354|929355|929356|929357|929358|929359|939142|939143|939144|939145|939146|939147|939148|939149|939150|939151|939152|940519|951271|951272|951273|951274|951275|951276|951277|951278|951279|951280|951281|958993|958994|958995|958996|958997|958998|960328", + "text": "Leukocyte adhesion deficiency 1" + }, + { + "baseId": "24512|24513|24514|24515|24516|24517|24518|24519|24520|24521|85648|166115|195931|205138|238008|250820|250822|268269|268388|269508|272579|273132|275245|287781|287782|287783|287785|287787|287792|287794|287797|288447|288449|288463|288467|288469|288471|288481|288483|291338|291346|291347|291355|291360|291361|291364|291365|291376|291392|291402|291414|291490|291504|291511|291512|291513|291514|291515|291522|291524|361607|363947|413546|488680|490192|551526|589204|590440|677413|720023|733648|747843|788757|788758|788759|800351|800482|818219|818220|827188|827202|856226|885756|885757|885758|885759|885760|885761|885762|885763|885764|885765|885766|885767|885768|885769|885770|885771|885772|885773|885774|885775|885776|885777|885778|885779|885780|885781|885782|887421|887422|887423|976714|976715|976716|976717|977194", + "text": "Achromatopsia 2" + }, + { + "baseId": "24513|24517", + "text": "Monochromacy" + }, + { + "baseId": "24520", + "text": "Photophobia" + }, + { + "baseId": "24520|188865|513965|514039", + "text": "Abnormality of color vision" + }, + { + "baseId": "24522|24523|24524|24526|24527|24528|24529|24531|24532|24533|24534|24535|24537|24538|24542|24544|24545|32963|227328|306295|306296|306303|306308|306310|306318|306320|306321|306326|306329|306343|306344|306353|306354|306357|306358|306363|306364|306367|306368|306369|306373|306375|306376|306383|306386|306387|306388|306398|306400|306401|306402|310412|310418|310419|310421|310423|310425|310427|310430|310433|310442|310443|310444|310448|310453|310454|310462|310465|310471|310472|310475|310477|310490|310491|310492|310493|310494|310510|310512|310525|310526|310527|310528|310532|310533|310534|310537|310542|310543|310546|310555|315754|315756|315758|315759|315760|315767|315768|315769|315770|315772|315773|315787|315802|315803|315810|315817|315818|315819|315830|315832|315834|315839|315840|315846|315847|315848|315849|315864|315865|315868|315869|315870|315871|315879|315880|315883|315884|315885|315886|315889|315897|315910|315911|315912|315914|315918|315919|315922|315933|315940|315945|315952|315958|315959|315961|315962|315964|315965|315966|315970|315973|315974|315985|315994|315996|315997|315998|316002|316005|316008|316013|316020|316024|316037|316038|316083|316087|316091|316093|316106|316109|316110|316122|316130|316131|316134|316137|316138|316139|316140|316141|316143|353848|361192|487348|487351|487359|539017|620314|900690|900691|900692|900693|900694|900695|900696|900697|900698|900699|900700|900701|900702|900703|900704|900705|900706|900707|900708|900709|900710|900711|900712|900713|900714|900715|900716|900717|900718|900719|900720|900721|900722|900723|900724|900725|900726|900727|900728|900729|900730|900731|900732|900733|900734|900735|900736|900737|900738|900739|900740|900741|900742|900743|900744|900745|900746|900747|900748|900749|900750|900751|900752|900753|900754|900755|900756|900757|900758|900759|900760|900761|900762|903280|903281|903282|903283|903284|903285|903286|903287", + "text": "Tangier disease" + }, + { + "baseId": "24525|24540|24541|24542|24543|24545|227328|306296|306303|306308|306310|306318|306320|306321|306329|306343|306344|306353|306357|306358|306363|306367|306368|306373|306375|306376|306383|306386|306387|306388|306398|306400|306401|306402|310412|310419|310421|310423|310425|310427|310430|310433|310443|310444|310453|310454|310462|310471|310472|310475|310477|310490|310491|310492|310493|310494|310510|310512|310525|310526|310527|310528|310532|310533|310534|310537|310542|310543|310546|312407|312417|312421|312422|312424|315754|315756|315758|315759|315760|315767|315769|315770|315772|315773|315787|315802|315810|315817|315818|315819|315830|315832|315834|315839|315840|315846|315847|315848|315849|315864|315865|315868|315869|315870|315871|315879|315880|315883|315884|315885|315886|315889|315897|315910|315911|315912|315914|315918|315919|315933|315940|315945|315952|315958|315959|315961|315962|315964|315966|315970|315973|315974|315985|315994|315996|315997|315998|316002|316005|316008|316013|316020|316024|316037|316038|316083|316087|316091|316093|316106|316110|316122|316130|316131|316134|316137|316139|316140|316141|318297|318298|324450|325163|325164|325168|325178|487348|487351|487359|495696|620314|621343|867058|867059|867060|867061|867062|867063|867064|900690|900691|900692|900693|900694|900695|900696|900697|900698|900699|900700|900701|900702|900703|900704|900705|900706|900707|900708|900709|900710|900711|900712|900713|900714|900715|900716|900717|900718|900719|900720|900721|900722|900723|900724|900725|900726|900727|900728|900729|900730|900731|900732|900733|900734|900735|900736|900737|900738|900739|900740|900741|900742|900743|900744|900745|900746|900747|900748|900749|900750|900751|900752|900753|900754|900755|900756|900757|900758|900759|900760|900761|900762|903280|903281|903282|903283|903284|903285|903286|903287", + "text": "Familial hypoalphalipoproteinemia" + }, + { + "baseId": "24529|310464|620315", + "text": "ABCA1-Related Disorders" + }, + { + "baseId": "24539", + "text": "Tangier disease, variant" + }, + { + "baseId": "24545", + "text": "Coronary heart disease in familial hypercholesterolemia, protection against" + }, + { + "baseId": "24546", + "text": "ABCA1 polymorphism" + }, + { + "baseId": "24547|24548|24549|29201|29202|39402|102915|138566|138574|138577|138578|139303|194832|204470|204470|206802|238283|238284|249937|249938|251049|251050|271109|280611|280612|280613|280618|280620|280621|280626|280633|281072|281085|281098|281111|281129|281130|281131|281132|281134|281135|281136|281137|281138|282362|282363|282382|282383|282387|282391|282396|282399|282408|282416|282417|282418|282610|282612|282613|282614|282636|282657|282661|282675|282676|289675|290421|290423|290426|290431|290438|290439|293516|293520|293523|294064|294090|294091|391248|448099|448140|448238|489136|493110|515914|516009|557065|557282|558519|611368|620123|733942|763773|788762|861070|888486|888487|888488|888489|888490|888491|888492|888493|888494|888495|888496|891629|918818|964106", + "text": "Thrombocythemia 1" + }, + { + "baseId": "24554|24555|24556|24557|38979|38980|38981|38982|38983|188073|188074|188075|273103|273131|329582|329583|329584|329585|329586|336193|336206|336207|338097|338104|338106|491931|535705|552178|654138|791415|800363|871960|871961|871962|871963|871964|871965|871966|871970", + "text": "Syndromic microphthalmia type 5" + }, + { + "baseId": "24562|24563|24564|24565|84382|278463|278465|278473|278474|278476|278482|278488|278490|278491|278494|278498|278499|278504|278511|278571|278573|278581|278582|278583|278596|278597|278599|278602|278603|278604|278606|278608|278628|278637|279755|279756|279757|279766|279768|279776|279777|279843|279861|279870|279895|279904|279905|279919|279923|279924|279927|279932|279933|279934|279940|279941|447437|447562|549510|549513|549514|549515|549517|619984|620712|620713|696400|707004|707005|718544|718546|718547|863312|863313|863314|863315|863316|863317|863318|863319|863320|863321|863322|863323|863324|863325|863326|863327|863328|863329|863330|865095|865096|952217", + "text": "Chitotriosidase deficiency" + }, + { + "baseId": "24566|24567|24568|24569|24570|24571|106762|106764|353887|414768|920138", + "text": "Pelger-Hu\u00ebt anomaly" + }, + { + "baseId": "24566|414768|536125|536126|536127|536128", + "text": "Regressive spondylometaphyseal dysplasia" + }, + { + "baseId": "24568|24572|106762|106763|106764|106765|215191|226718|226719|237384|249738|249740|249741|279344|279348|279353|279356|279357|279363|279368|279371|279372|279375|279551|279553|279559|279560|279561|279576|279578|279583|279584|279585|279587|279588|279589|279591|279594|279595|279596|280852|280853|280856|280859|280861|280862|280864|280865|280867|280959|280960|280994|280995|280996|281003|281007|414768|576522|718690|718691|732185|732188|743720|746178|758868|758871|758875|863760|863761|863762|863763|863764|863765|863766|863767|863768|863769|863770|863771|863772|863773|863774|863775|863776|863777|863778|863779|863780|863781|863782|863783|863784|863785|863786|863787|865131|865132", + "text": "Greenberg dysplasia" + }, + { + "baseId": "24572|414768", + "text": "Reynolds syndrome" + }, + { + "baseId": "24576", + "text": "Neurofibrosarcoma" + }, + { + "baseId": "24577", + "text": "Opioid dependence 1" + }, + { + "baseId": "24577", + "text": "naloxone response - Efficacy" + }, + { + "baseId": "24577", + "text": "alfentanil response - Dosage, Efficacy, Metabolism/PK" + }, + { + "baseId": "24577", + "text": "buprenorphine response - Dosage, Efficacy, Metabolism/PK" + }, + { + "baseId": "24577", + "text": "Drugs used in opioid dependence response - Dosage, Efficacy, Metabolism/PK" + }, + { + "baseId": "24577", + "text": "fentanyl response - Dosage, Efficacy, Metabolism/PK" + }, + { + "baseId": "24577", + "text": "heroin response - Dosage, Efficacy, Metabolism/PK" + }, + { + "baseId": "24577", + "text": "morphine response - Dosage, Efficacy, Metabolism/PK" + }, + { + "baseId": "24577", + "text": "opioids response - Dosage, Efficacy, Metabolism/PK" + }, + { + "baseId": "24577", + "text": "tramadol response - Dosage, Efficacy, Metabolism/PK" + }, + { + "baseId": "24577|31928|31932|32630|32631|47984|47996|176988|191350|227763|246999|257574|257575|389705|507605|508193|508196|656702|663108|698605|721047|736310|816535|816536|816537|816538|816539|816540|816541|816542|816543|816544|816545|816546|816547|816548|816549|816550|816551|816552|816553|816554|816555|816556|816557|816558|816559|816560|816561|816562|816563|816564|816565|816566|816567|816568|816569|816570|816571|816572|816573|816574|816575|816576|816577|816578|816579|816580|816581|816582|816583|816584|816585|816586|816587|816588|816589|816590|816591|816592|816593|816594|816595|816596|816597|816598|816599|816600|816601|816602|816603|816604|816605|816606|816607|816608|816609|816610|816611|816612|816613|816614|816615|816616|816617|816618|816619|816620|816621|816622|816623|816624|816625|816626|816627|816628|816629|816630|816631|816632|816633|816634|816635|816636|816637|816638|816639|816640|816641|816642|816643|816644|816645|816646|816647|816648|816649|816650|816651|816652|816653|816654|816655|816656|816657|816658|816659|816660|816661|816662|816663|816664|816665|816666|816667|816668|816669|816670|816671|816672|816673|816674|816675|816676|816677|816678|816679|816680|816681|816682|816683|816684|816685|816686|816687|816688|816689|816690|816691|816692|816693|816694|816695|816696|816697|816698|816699|816700|816701|816702|816703|816704|816705|816706|816707|816708|816709|816710|816711|816712|816713|816714|816715|816716|816717|816718|816719|816720|816721|816722|816723|816724|816725|816726|816727|816728|816729|816730|816731|816732|816733|816734|816735|816736|816737|816738|816739|816740|816741|816742|816743|816744|816745|816746|816747|816748|816749|816750|816751|816752|816753|816754|816755|816756|816757|816758|816759|816760|816761|816762|816763|816764|816765|816766|816767|816768|816769|816770|816771|816772|816773|816774|816775|816776|816777|816778|816779|816780|816781|816782|816783|816784|816785|816786|816787|816788|816789|816790|816791|816792|816793|816794|816795|816796|816797|816798|816799|816800|816801|816802|816803|816804|816805|816806|816807|816808|816809|816810|816811|816812|816813|816814|816815|816816|816817|816818|816819|816820|816821|816822|816823|816824|816825|816826|816827|816828|816829|816830|816831|816832|816833|816834|816835|816836|816837|816838|816839|816840|816841|816842|816843|816844|816845|816846|816847|816848|816849|816850|816851|816852|816853|816854|816855|816856|816857|816858|816859|816860|816861|816862|816863|816864|816865|816866|816867|816868|816869|816870|816871|816872|816873|816874|816875|816876|816877|816878|816879|816880|816881|816882|816883|816884|816885|816886|816887|816888|816889|816890|816891|816892|816893|816894|816895|816896|816897|816898|816899|816900|816901|816902|816903|816904|816905|816906|816907|816908|816909|816910|816911|816912|816913|816914|816915|816916|816917|816918|816919|816920|816921|816922|816923|816924|816925|816926|816927|816928|816929|816930|816931|816932|816933|816934|816935|816936|816937|816938|816939|816940|816941|816942|816943|816944|816945|816946|816947|816948|816949|816950|816951|816952|816953|816954|816955|816956|816957|816958|816959|816960|816961|816962|816963|816964|816965|816966|816967|816968|816969|816970|816971|816972|816973|816974|816975|816976|816977|816978|816979|816980|816981|816982|816983|816984|816985|816986|816987|816988|816989|816990|816991|816992|816993|816994|816995|816996|816997|816998|816999|817000|817001|817002|817003|817004|817005|817006|817007|817008|817009|817010|817011|817012|817013|817014|817015|817016|817017|817018|817019|817020|817021|817022|817023|817024|817025|817026|817027|817028|817029|817030|817031|817032|817033|817034|817035|817036|817037|817038|817039|817040|817041|817042|817043|817044|817045|817046|817047|817048|817049|817050|817051|817052|817053|817054|817055|817056|817057|817058|817059|817060|817061|817062|817063|817064|817065|817066|817067|817068|817069|817070|817071|817072|817073|817074|817075|817076|817077|817078|817079|817080|817081|817082|817083|817084|817085|817086|817087|817088|817089|817090|817091|817092|817093|817094|817095|817096|817097|817098|817099|817100|817101|817102|817103|817104|817105|817106|817107|817108|817109|817110|817111|817112|817113|817114|817115|817116|817117|817118|817119|817120|817121|817122|817123|817124|817125|817126|817127|817128|817129|817130|817131|817132|817133|817134|817135|817136|817137|817138|817139|817140|817141|817142|817143|817144|817145|817146|817147|817148|817149|817150|817151|817152|817153|817154|817155|817156|817157|817158|817159|817160|817161|817162|817163|817164|817165|817166|817167|817168|817169|817170|817171|817172|817173|817174|817175|817176|817177|817178|817179|817180|817181|817182|817183|817184|817185|817186|817187|817188|817189|817190|817191|817192|817193|817194|817195|817196|817197|817198|817199|817200|817201|817202|817203|817204|817205|817206|817207|817208|817209|817210|817211|817212|817213|817214|817215|817216|817217|817218|817219|817220|817221|817222|817223|817224|817225|817226|817227|817228|817229|817230|817231|817232|817233|817234|817235|817236|817237|817238|817239|817240|817241|817242|817243|817244|817245|817246|817247|817248|817249|817250|817251|817252|817253|817254|817255|817256|817257|817258|817259|817260|817261|817262|817263|817264|817265|817266|817267|817268|817269|817270|817271|817272|817273|817274|817275|817276|817277|817278|817279|817280|817281|817282|817283|817284|817285|817286|817287|817288|817289|817290|817291|817292|817293|817294|817295|817296|817297|817298|817299|817300|817301|817302|817303|817304|817305|817306|817307|817308|817309|817310|817311|817312|817313|817314|817315|817316|817317|817318|817319|817320|817321|817322|817323|817324|817325|817326|817327|817328|817329|817330|817331|817332|817333|817334|817335|817336|817337|817338|817339|817340|817341|817342|817343|817344|817345|817346|817347|817348|817349|817350|817351|817352|817353|817354|817355|817356|817357|817358|817359|817360|817361|817362|817363|817364|817365|817366|817367|817368|817369|817370|817371|817372|817373|817374|817375|817376|817377|817378|817379|817380|817381|817382|817383|817384|817385|817386|817387|817388|817389|817390|817391|817392|817393|817394|817395|817396|817397|817398|817399|817400|817401|817402|817403|817404|817405|817406|817407|817408|817409|817410|817411|817412|817413|817414|817415|817416|817417|817418|817419|817420|817421|817422|817423|817424|817425|817426|817427|817428|817429|817430|817431|817432|817433|817434|817435|817436|817437|817438|817439|817440|817441|817442|817443|817444|817445|817446|817447|817448|817449|817450|817451|817452|817453|817454|817455|817456|817457|817458|817459|817460|817461|817462|817463|817464|817465|817466|817467|817468|817469|817470|817471|817472|817473|817474|817475|817476|817477|817478|817479|817480|817481|817482|817483|817484|817485|817486|817487|817488|817489|817490|817491|817492|817493|817494|817495|817496|817497|817498|817499|817500|817501|817502|817503|817504|817505|817506|817507|817508|817509|817510|817511|817512|817513|817514|817515|817516|817517|817518|817519|817520|817521|817522|817523|817524|817525|817526|817527|817528|817529|817530|817531|817532|817533|817534|817535|817536|817537|817538|817539|817540|817541|817542|817543|817544|817545|817546|817547|817548|817549|817550|817551|817552|817553|817554|817555|817556|817557|817558|817559|817560|817561|817562|817563|817564|817565|817566|817567|817568|817569|817570|817571|817572|817573|817574|817575|817576|817577|817578|817579|817580|817581|817582|817583|817584|817585|817586|817587|817588|817589|817590|817591|817592|817593|817594|817595|817596|817597|817598|817599|817600|817601|817602|817603|817604|817605|817606|817607|817608|817609|817610|817611|817612|817613|817614|817615|817616|817617|817618|817619|817620|817621|817622|817623|817624|817625|817626|817627|817628|817629|817630|817631|817632|817633|817634|817635|817636|817637|817638|817639|817640|817641|817642|817643|817644|817645|817646|817647|817648|817649|817650|817651|817652|817653|817654|817655|817656|817657|817658|817659|817660|817661|817662|817663|817664|817665|817666|817667|817668|817669|817670|817671|817672|817673|817674|817675|817676|817677|817678|817679|817680|817681|817682|817683|817684|817685|817686|817687|817688|817689|817690|817691|817692|817693|817694|817695|817696|817697|817698|817699|817700|817701|817702|817703|817704|817705|817706|817707|817708|817709|817710|817711|817712|817713|817714|817715|817716|817717|817718|817719|817720|817721|817722|817723|817724|817725|817726|817727|817728|817729|817730|817731|817732|817733|817734|817735|817736|817737|817738|817739|817740|817741|817742|817743|817744|817745|817746|817747|817748|817749|817750|817751|817752|817753|817754|817755|817756|817757|817758|817759|817760|817761|817762|817763|817764|817765|817766|817767|817768|817769|817770|817771|817772|817773|817774|817775|817776|817777|817778|817779|817780|817781|817782|817783|817784|817785|817786|817787|817788|817789|817790|817791|817792|817793|817794|817795|817796|817797|817798|817799|817800|817801|817802|817803|817804|817805|817806|817807|817808|817809|817810|817811|817812|817813|817814|817815|817816|817817|817818|817819|817820|817821|817822|817823|817824|817825|817826|817827|817828|817829|817830|817831|817832|817833|817834|817835|817836|817837|817838|817839|817840|817841|817842|817843|817844|817845|817846|817847|817848|817849|817850|817851|817852|817853|817854|817855|817856|817857|817858|817859|817860|817861|817862|817863|817864|817865|817866|817867|817868|817869|817870|817871|817872|817873|817874|817875|817876|817877|817878|817879|817880|817881|817882|817883|817884|817885|817886|817887|817888|817889|817890|817891|817892|817893|817894|817895|817896|817897|817898|817899|817900|817901|817902|817903|817904|817905|817906|817907|817908|817909|817910|817911|817912|817913|817914|817915|817916|817917|817918|817919|817920|817921|817922|817923|817924|817925|817926|817927|817928|817929|817930|817931|817932|817933|817934|817935|817936|817937|817938|817939|817940|817941|817942|817943|817944|817945|817946|817947|817948|817949|817950|817951|817952|817953|817954|817955|817956|817957|817958|817959|817960|817961|817962|817963|817964|817965|817966|817967|817968|817969|817970|817971|817972|817973|817974|817975|817976|817977|817978|817979|817980|817981|817982|817983|817984|817985|817986|817987|817988|817989|817990|817991|817992|817993|817994|817995|817996|817997|817998|817999|818000|818001|818002|818003|818004|818005|818006|818007|818008|818009|818010|818011|818012|818013|818014|818015|818016|818017|818018|818019|818020|818021|818022|818023|818024|818025|818026|818027|818028|818029|818030|818031|818032|818033|818034|818035|818036|818037|818038|818039|818040|818041|818042|818043|818044|818045|818046|818047|818048|818049|818050|818051|818052|818053|818054|818055|818056|818057|818058|818059|818060|818061|818062|818063|818064|818065|818066|818067|818068|818069|818070|818071|818072|818073|818074|818075|818076|818077|818078|818079|818080|818081|818082|818083|818084|818085|818086|818087|818088|818089|818090|818091|818092|818093|818094|818095|818096|818097|818098|818099|818100|818101|818102|818103|818104|818105|818106|818107|818108|818109|818110|818111|818112|818113|818114|818115|818116|818117|818118|818119|818120|818121|818122", + "text": "Tramadol response" + }, + { + "baseId": "24578|134241|134242|134243|134244|134245|134246|207948|254503|254506|254508|254511|254513|254514|372263|372283|408647|408648|408650|415333|429414|429415|441540|444994|462151|462152|462156|462158|462401|462439|462444|462940|462946|463053|463061|463065|463072|463079|463081|463086|504415|527138|527144|527146|527167|527415|527628|527630|527634|527655|527657|565447|565457|565463|566829|566830|566832|568041|571844|571850|641112|641113|641114|641115|641116|641117|641118|641119|641120|641121|641122|641123|641124|641125|641126|652247|652709|693204|693205|693206|693207|693208|693209|695568|702306|702308|702310|738634|738635|753355|769113|784384|791233|820503|839887|839888|839889|839890|839891|839892|839893|839894|839895|839896|839897|839898|839899|839900|839901|839902|839903|926616|926617|926618|926619|926620|926621|926622|936112|948005|948006|948007|948008|948009|948010|948011|948012|956863|956864|956865|956866|956867", + "text": "Myopathy, congenital, compton-north" + }, + { + "baseId": "24579|24580|24581|24582|24583|24584", + "text": "Bare lymphocyte syndrome type 2, complementation group A" + }, + { + "baseId": "24586|140349|140350|140351|140352|166021|171118|171119|171120|171121|171122|171123|178613|178614|188478|188483|188484|188485|188486|188487|188488|188489|188490|188492|189313|189314|189317|189319|195796|212762|212763|221941|224385|240754|240755|240757|240758|253715|253716|253717|258637|258639|258640|309994|315000|315012|315013|321050|321601|321602|321615|362738|389940|397186|397187|397192|397410|397576|397579|397589|397744|397748|397751|404786|407836|407843|425869|459742|459744|459745|459920|460191|460631|460636|510159|512837|512838|512839|525047|525049|525055|525237|525244|525245|525248|525251|525253|525256|525258|525353|525366|525368|525374|525548|525550|525552|525553|551709|563648|563650|563655|564535|566221|566224|566235|569585|569593|638822|638823|638824|638825|638826|638827|653950|684166|687612|687613|687614|689977|689978|692821|767689|783579|820200|836745|836746|836747|836748|836749|836750|836751|836752|836753|836754|836755|852239|925779|925780|935003|935004|940953|946850|946851|946852|946853|956025|956026|956027|956028|956029|961005", + "text": "Brugada syndrome 4" + }, + { + "baseId": "24587", + "text": "Ataxia, progressive seizures, mental deterioration, and hearing loss" + }, + { + "baseId": "24587|24588|24592|24595|24598|24601|24602|24605|24608|24610|24611|24612|24615|24618|24619|24620|24623|24625|24627|24628|24628|24629|24629|24630|24631|24632|24633|24634|24635|24636|24637|24639|24640|24642|24643|24644|24647|24649|24652|24654|24655|24656|24657|24661|24664|24731|24738|24739|24740|24741|24742|24748|24772|24773|24774|38956|38959|38960|51394|51395|51396|51397|51398|51399|51400|153627|153628|153630|165629|165633|188274|189167|224979|231301|236823|236830|236832|236833|236834|237048|237121|237180|237206|354290|354298|354302|363842|363861|433992|434696|434780|497359|610271|672123|677483|677484|677485|677486|677487|677488|677489|677490|677491|677492|677493|677494|677495|677496|677497|677498|677499|677500|677501|677502|677503|677504|677505|677506|677507|677508|677509|677510|677511|677512|677513|677514|677515|677516|677517|677518|677519|677520|677521|677522|677523|677524|677525|677526|677527|677528|677529|677530|677531|677532|677533|677534|677535|677536|677537|677538|677539|677540|677541|677542|677543|677544|677545|677546|677547|677548|677549|677550|677551|677552|677553|677554|677555|677556|677557|677558|677559|677560|677561|677562|677563|677564|677565|677566|677567|677568|677569|677570|677571|677572|677573|677574|677575|677576|677577|677578|677579|677580|677581|677582|677583|677584|677585|677586|677587|677588|677589|677590|677591|677592|677593|677594|677595|677596|677597|677598|677599|677600|677601|677602|677603|677604|677605|677606|677607|677608|677609|677610|677611|677612|677613|677614|677615|677616|677617|677618|677619|677620|677621|677622|677623|677624|677625|677626|677627|677628|677629|677630|677631|677632|677633|677634|677635|677636|677637|677638|677639|677640|677641|677642|677643|677644|677645|677646|677647|677648|677649|677650|677651|677652|677653|677654|677655|677656|677657|677658|677659|677660|677661|677662|677663|677664|677665|677666|677667|677668|677669|677670|677671|677672|677673|677674|677675|677676|677677|677678|677679|677680|677681|677682|677683|677684|677685|677686|677687|677688|677689|677690|677691|677692|677693|677694|677695|677696|677697|677698|677699|677700|677701|677702|677703|677704|677705|677706|677707|677708|677709|677710|677711|677712|677713|677714|677715|677716|677717|677718|677719|677720|677721|677722|677723|677724|677725|677726|677727|677728|677729|677730|677731|677732|677733|677734|677735|677736|677737|677738|677739|677740|677741|677742|677743|677744|677745|677746|677747|677748|677749|677750|677751|677752|677753|677754|677755|677756|677757|677758|677759|677760|677761|677762|677763|677764|677765|677766|677767|677768|677769|677770|677771|677772|677773|677774|677775|677776|677777|677778|677779|677780|677781|677782|677783|677784|677785|677786|677787|677788|677789|677790|677791|677792|677793|677794|677795|677796|677797|677798|677799|677800|677801|677802|677803|677804|677805|677806|677807|677808|677809|677810|677811|677812|677813|677814|677815|677816|677817|677818|677819|677820|677821|677822|677823|677824|677825|677826|677827|677828|677829|677830|677831|677832|677833|677834|677835|677836|677837|677838|677839|677840|677841|677842|677843|677844|677845|677846|677847|677848|677849|677850|677851|677852|677853|677854|677855|677856|677857|677858|677859|677860|677861|677862|677863|677864|677865|677866|677867|677868|677869|677870|677871|677872|677873|677874|677875|677876|677877|677878|677879|677880|677881|677882|677883|677884|677885|677886|677887|677888|677889|677890|677891|677892|677893|677894|677895|677896|677897|677898|677899|677900|677901|677902|677903|677904|677905|677906|677907|677908|677909|677910|677911|677912|677913|677914|677915|677916|677917|677918|677919|677920|677921|677922|677923|677924|677925|677926|677927|677928|677929|677930|677931|677932|677933|677934|677935|677936|677937|677938|677939|677940|677941|677942|677943|677944|677945|677946|677947|677948|677949|677950|677951|677952|677953|677954|677955|680402|680406|680616|680882|680963", + "text": "Juvenile myopathy, encephalopathy, lactic acidosis AND stroke" + }, + { + "baseId": "24588|45818|181416|181420|181426|181450|679707|679709", + "text": "Neonatal death" + }, + { + "baseId": "24589", + "text": "Exercise intolerance and complex III deficiency, somatic" + }, + { + "baseId": "24590|24591|24638|424215", + "text": "Kearns Sayre syndrome" + }, + { + "baseId": "24592", + "text": "Focal segmental glomerulosclerosis and dilated cardiomyopathy" + }, + { + "baseId": "24593|24594|38960|354305|550203|550204|980879", + "text": "Mitochondrial encephalopathy" + }, + { + "baseId": "24595|24617|24626|24656|24664|33288|142556|142557|142560|142561|142562|152778|172075|172076|211588|217217|229075|354293|503924|612469|679205|738547", + "text": "Mitochondrial myopathy" + }, + { + "baseId": "24596", + "text": "Neurogastrointestinal syndrome, mitochondrial" + }, + { + "baseId": "24597", + "text": "Encephalocardiomyopathy, mitochondrial" + }, + { + "baseId": "24599", + "text": "Cerebellar ataxia, cataract, and diabetes mellitus" + }, + { + "baseId": "24599|54805|54812|54826|54839|54842|55037|55056|55057|55078|55102|55120|55143|55167|55193|55205|55236|55237|55245|55653|55658|172769|174544|175230|175287|175289|247044|253830|278929|278958|279100|280392|280397|280424|289918|293005|293389|293396|293404|293405|295655|310529|310535|310662|310741|310742|310745|315636|315674|315906|315931|315967|315972|316006|316010|316044|316047|316048|316100|316153|321656|322088|322101|322102|322105|322106|322108|322109|322395|322646|322651|322653|322702|322713|322714|322725|322726|325652|328178|329416|329796|336966|340100|340101|347193|353204|353205|353453|790978|790979", + "text": "Retinitis pigmentosa-deafness syndrome" + }, + { + "baseId": "24600|24601|24619|24628|24649", + "text": "MERRF/MELAS overlap syndrome" + }, + { + "baseId": "24601|51396", + "text": "Mitochondrial cytochrome c oxidase deficiency" + }, + { + "baseId": "24602|32054|32066|32076|243935|487604", + "text": "Palmoplantar keratoderma-deafness syndrome" + }, + { + "baseId": "24602|24604|24605|24607|24642|24667|24667|24669|24670|24671|24672|24673|24702|38953|38959|48657|49378|51396|143262|619823|619824", + "text": "Deafness, nonsyndromic sensorineural, mitochondrial" + }, + { + "baseId": "24608", + "text": "Exercise intolerance, muscle pain, and lactic acidemia" + }, + { + "baseId": "24611", + "text": "MERFF syndrome" + }, + { + "baseId": "24613|24618|24619|24620|24624|24628|24629|24630|24742", + "text": "MERRF syndrome" + }, + { + "baseId": "24614", + "text": "Myopathy, mitochondrial, late-onset" + }, + { + "baseId": "24615|24616", + "text": "Epilepsy, mitochondrial" + }, + { + "baseId": "24620", + "text": "Cardiomyopathy and Deafness" + }, + { + "baseId": "24621", + "text": "Progressive external ophthalmoplegia with myoclonus" + }, + { + "baseId": "24622|28542|28544|31692|31693|31694|31695|31696|31697|31698|31699|31700|31701|31702|31703|31704|31705|136139|136140|141573|141574|141575|141576|141579|141581|141582|141583|142784|142785|142787|142788|142789|142791|203044|211973|211976|211980|211983|211984|211989|211990|211991|224729|224731|224732|224733|224736|224738|224739|224740|224742|224743|224744|224745|224746|224747|224748|224749|224750|224751|224754|224755|224756|224757|224758|224761|224763|224764|224765|224766|224768|224769|224771|224773|224774|224775|224776|224777|224778|224779|224780|224781|224782|224783|224787|224788|224789|224790|224792|224793|224794|224795|224796|224797|224798|224799|224800|224801|224802|224803|224804|224805|224806|224808|224810|224811|224812|224813|257713|338584|338585|338593|338597|338599|338601|338602|348160|348167|348174|348175|348177|351827|351828|351830|351831|351832|351834|351835|351838|351840|352680|352681|352682|352683|352684|352685|434129|434130|508218|549170|549172|620930|682368|816497|891503|891504|891505|891506|891507|891508|891509", + "text": "Mitochondrial DNA depletion syndrome 1 (MNGIE type)" + }, + { + "baseId": "24623|24628|24656|262350", + "text": "Diabetes-deafness syndrome maternally transmitted" + }, + { + "baseId": "24625|24633|24662|24719|38955|38962|48423|48430|76995", + "text": "Mitochondrial encephalomyopathy" + }, + { + "baseId": "24627|550141|550142|550143|550144|550145|550146|550147", + "text": "Cardiomyopathy, mitochondrial" + }, + { + "baseId": "24628", + "text": "Muscle stiffness, painful" + }, + { + "baseId": "24628", + "text": "Cyclical vomiting syndrome" + }, + { + "baseId": "24628|32059|176723|186432|236877|263185|263248|354294|359177|359178|360876|361080|437859|508754|508758|513902|513971|550163|551445|578007|581736|612033|614154|623104|623105|623106|623107|623607|679341|682750|682755|682761|682863|857409|857412|857413|857415|859391|961221|961433|965405", + "text": "Sensorineural hearing loss" + }, + { + "baseId": "24628", + "text": "Glucose intolerance" + }, + { + "baseId": "24630", + "text": "Diabetes mellitus, noninsulin-dependent, maternally transmitted" + }, + { + "baseId": "24631|24635", + "text": "Cardiomyopathy with or without skeletal myopathy" + }, + { + "baseId": "24632", + "text": "Skeletal myopathy, responsive to riboflavin" + }, + { + "baseId": "24634", + "text": "Progressive external ophthalmoplegia, proximal myopathy, and sudden death" + }, + { + "baseId": "24637", + "text": "Neuropsychiatric disorder and early-onset cataract" + }, + { + "baseId": "24639|27386|27395|27641|27642|27652|28938|28940|29755|38666|38677|39943|48247|48938|48939|48940|166215|172332|205216|216786|216787|236469|239104|242980|362755|362759|362760|362761|362768|362770|362771|362772|362866|362867|362868|362903|362904|362905|363412|363531|393498|393500|393746|428133|452262|539096|539097|578573|919910|964095|976556", + "text": "Myelodysplastic syndrome" + }, + { + "baseId": "24640", + "text": "Cardiomyopathy, fatal infantile" + }, + { + "baseId": "24641", + "text": "Cardiomyopathy, fatal" + }, + { + "baseId": "24643|24722", + "text": "Multisystem disorder" + }, + { + "baseId": "24644", + "text": "Encephalopathy, familial progressive necrotizing" + }, + { + "baseId": "24645|45304|51954|179175|963070|963071", + "text": "Asymmetric septal hypertrophy" + }, + { + "baseId": "24646", + "text": "Hypertension, hypercholesterolemia, and hypomagnesemia, mitochondrial" + }, + { + "baseId": "24647", + "text": "Cardiomyopathy, idiopathic dilated, mitochondrial" + }, + { + "baseId": "24647", + "text": "Cardiomyopathy, hypertrophic, mitochondrial" + }, + { + "baseId": "24648", + "text": "Pigmentary retinopathy and sensorineural deafness" + }, + { + "baseId": "24651|24717|24718|24720|24721", + "text": "Exercise intolerance" + }, + { + "baseId": "24652|259847|354290|515677", + "text": "Sudden death" + }, + { + "baseId": "24654", + "text": "Sensorineural deafness and migraine" + }, + { + "baseId": "24656", + "text": "Myopathy, mitochondrial, with diabetes mellitus" + }, + { + "baseId": "24657|24696|24717|24718|24720|24722|38958|680328|680382|680897|680908|681121|681160|681253|681497", + "text": "Mitochondrial myopathy, infantile, transient" + }, + { + "baseId": "24658", + "text": "Mitochondrial myopathy, isolated" + }, + { + "baseId": "24659|24660", + "text": "Ophthalmoplegia, isolated" + }, + { + "baseId": "24661", + "text": "MITOCHONDRIAL COMPLEX I DEFICIENCY, MITOCHONDRIAL TYPE 2" + }, + { + "baseId": "24663", + "text": "Myotonic dystrophy-like myopathy" + }, + { + "baseId": "24665|24666", + "text": "Chloramphenicol resistance" + }, + { + "baseId": "24667|24667|24668|24670|24671|24673|24702", + "text": "Aminoglycoside-induced deafness" + }, + { + "baseId": "24667|27463|27463|27465|44675|44676|52080|52190|53659|54077|54949|99318|100371|172503|175451|175624|175645|176070|176073|176208|176214|178557|178683|178685|178749|258510|403833|438509|457357|535269|540432|540433|609028|679387|679431|679432|679472|828189", + "text": "Restrictive cardiomyopathy" + }, + { + "baseId": "24667|24670|24671", + "text": "aminoglycoside antibacterials response - Toxicity/ADR" + }, + { + "baseId": "24667|24670|24671", + "text": "amikacin response - Toxicity/ADR" + }, + { + "baseId": "24667|24670|24671", + "text": "gentamicin response - Toxicity/ADR" + }, + { + "baseId": "24667|24670|24671", + "text": "kanamycin response - Toxicity/ADR" + }, + { + "baseId": "24667|24670|24671", + "text": "neomycin response - Toxicity/ADR" + }, + { + "baseId": "24667|24670|24671", + "text": "streptomycin response - Toxicity/ADR" + }, + { + "baseId": "24667|24670|24671", + "text": "tobramycin response - Toxicity/ADR" + }, + { + "baseId": "24667|24671|24673", + "text": "Gentamicin response" + }, + { + "baseId": "24670", + "text": "Auditory neuropathy" + }, + { + "baseId": "24677", + "text": "Brain pseudoatrophy, reversible, valproate-induced, susceptibility to" + }, + { + "baseId": "24678", + "text": "Cardiomyopathy, apical hypertrophic, and neuropathy" + }, + { + "baseId": "24679", + "text": "Cardiomyopathy, infantile hypertrophic" + }, + { + "baseId": "24679|24723|188131|248609", + "text": "Histiocytoid cardiomyopathy" + }, + { + "baseId": "24680|24681|24687|576199|681583", + "text": "NARP syndrome" + }, + { + "baseId": "24680|24681|24683|24686|24689", + "text": "Mitochondrial complex v (atp synthase) deficiency, mitochondrial type 1" + }, + { + "baseId": "24681", + "text": "Ataxia and polyneuropathy, adult-onset" + }, + { + "baseId": "24682|24690|24691|24702|24713|24714|24727|24728|24729|24730|24732|24735|24736|24739|24742|24743|24746|24747|24749|24750|24755|24756|24757|24761|24762|24763|24764|24766|24771|24772|24775|38954|76416|76417|76418|76419|76420|76421|76422|76423|76424|76425|76426|76427|76428|76829|237206|354298|424207|513236|514149|576199|677958|980887|983838", + "text": "Leber's optic atrophy" + }, + { + "baseId": "24683|24684", + "text": "Striatonigral degeneration, infantile, mitochondrial" + }, + { + "baseId": "24685", + "text": "Seizures and lactic acidosis" + }, + { + "baseId": "24693", + "text": "Mitochondrial complex IV deficiency with recurrent myoglobinuria" + }, + { + "baseId": "24703|24704", + "text": "Sideroblastic anemia, acquired idiopathic" + }, + { + "baseId": "24708", + "text": "Myoglobinuria, recurrent" + }, + { + "baseId": "24709|24710", + "text": "Cytochrome c oxidase i deficiency" + }, + { + "baseId": "24724", + "text": "Exercise intolerance, cardiomyopathy, and septooptic dysplasia" + }, + { + "baseId": "24725", + "text": "Parkinsonism/MELAS overlap syndrome" + }, + { + "baseId": "24728|24729|24749|24754|24772", + "text": "Leber optic atrophy and dystonia" + }, + { + "baseId": "24728|24733|24737|24739|24740|24741|24742|24760", + "text": "Leigh syndrome due to mitochondrial complex I deficiency" + }, + { + "baseId": "24733", + "text": "Striatal necrosis, bilateral, with dystonia" + }, + { + "baseId": "24751|24753|24754", + "text": "Mitochondrial complex 1 deficiency, mitochondrial type 1" + }, + { + "baseId": "24752", + "text": "Parkinson disease, resistance to" + }, + { + "baseId": "24761|24770", + "text": "MITOCHONDRIAL COMPLEX I DEFICIENCY, MITOCHONDRIAL TYPE 3" + }, + { + "baseId": "24769", + "text": "Dystonia, adult-onset" + }, + { + "baseId": "24776|24777|24778|24779|24780|24781|24782|24783|24784|24785|24786|24787|24788|24789|24790|24791|24792|24793|24794|24795|380292|430955|472023|472025|485860|485861|535003|535213|650304|650305|694972|774283|929847", + "text": "46,XY sex reversal, type 1" + }, + { + "baseId": "24780", + "text": "46,XY true hermaphroditism, SRY-related" + }, + { + "baseId": "24796", + "text": "Spermatogenic failure, Y-linked 2" + }, + { + "baseId": "24797", + "text": "Hypospermatogenesis, nonobstructive, Y-linked" + }, + { + "baseId": "24798", + "text": "Mental retardation, X-linked 45" + }, + { + "baseId": "24801|24802|136291|136294|136295|209310|339622|339624|339626|339627|339629|349116|349119|352460|352461|352462|352463|352970|352971|352972|352973|352974|352975|404662|404663|446797|486665|513696|583141|903255|903256|903257|903258|903259|903260|903261|903262|920073|964637", + "text": "ZNF711-Related X-linked Mental Retardation" + }, + { + "baseId": "24803|24804|24805|24806|24807|24808|24809|24810", + "text": "McLeod neuroacanthocytosis syndrome" + }, + { + "baseId": "24811|24812|24813|24814|24815|24816|24817|38951|38952|134820|209093|248653|361245|362394|384427|424348|424677|446693|511020|513397|550656|583139|611453|611454|611455|622946|626322|653905|653906|678951|802237|804852|857381|861663|961360|961638|969302|971215|971216", + "text": "Mental retardation, syndromic, Claes-Jensen type, X-linked" + }, + { + "baseId": "24818", + "text": "X inactivation, familial skewed, 1" + }, + { + "baseId": "24819|24820|24821|339239|339251|339252|339255|339257|348762|348763|348766|348768|348774|348775|348776|348779|348780|352251|352252|352253|352254|352255|352256|352868|352869|352870|353866|470830|471559|471561|471884|471885|471889|472156|472157|492757|508273|508286|508580|508582|508674|508675|534820|534870|534883|534971|534973|534980|534981|534990|534998|535171|535172|535173|535174|535175|539114|572497|572500|574734|574736|575416|575417|650059|650060|650061|650062|650063|650064|650065|650066|650067|650068|650069|650070|650071|650072|650073|650074|653457|656779|689512|694888|694889|694890|694891|694893|694895|694897|706239|717794|743340|758506|758508|758510|760866|774062|774064|774065|774067|778703|786839|822225|850070|850071|850072|850073|850074|850075|850076|850077|850078|850079|852518|903063|903064|903065|903066|903067|903068|903475|903476|903477|920028|920029|929736|929737|929738|929739|929740|939601|939602|939603|939604|939605|951808|951809|959307|959308", + "text": "Spinal muscular atrophy, X-linked 2" + }, + { + "baseId": "24822|24827|24828|24830|24832|24833|24834|24835|24836|24837|24838|24839|24840", + "text": "Thyroxine-binding globulin quantitative trait locus" + }, + { + "baseId": "24823", + "text": "Thyroxine-binding globulin, variant A" + }, + { + "baseId": "24823", + "text": "Thyroxine-binding globulin deficiency" + }, + { + "baseId": "24824", + "text": "Thyroxine-binding globulin, variant P" + }, + { + "baseId": "24825", + "text": "Thyroxine-binding globulin, slow" + }, + { + "baseId": "24826|24829", + "text": "Thyroxine-binding globulin deficiency, partial" + }, + { + "baseId": "24831", + "text": "Thyroxine-binding globulin, Chicago" + }, + { + "baseId": "24841|24842|24843|24843|24844|24845|24845|24846|24846|24847|24850|24852|24853|24854|24855|24858|24859|24862|24862|24864|24865|24866|24868|24868|24869|24869|24871|24876|24877|24878|24881|24887|24889|24889|24891|24892|24893|24895|24896|24897|24898|165510|165511|165512|165513|209141|213671|257865|260337|263527|265111|265114|265116|265118|265118|361102|390492|411438|411442|430877|430878|430883|430886|430887|442482|470430|470905|470914|470914|471654|471664|471928|471931|471937|471938|471939|471940|471942|471946|471947|471953|471954|471955|472174|472177|472178|472179|472181|472182|472183|472184|472185|485828|485829|485830|485831|485832|485833|485834|485835|485836|485837|485838|485839|485840|485841|485842|485843|485844|485845|485846|485847|485848|485849|485850|485850|485851|485852|485853|485854|485854|485855|485856|485857|485858|513400|534907|535186|535187|535188|538629|573952|573957|573960|574823|574825|575439|578598|578599|626300|650144|650145|650146|650147|650148|650149|650150|650151|650152|650153|650154|650155|650156|650157|653466|792488|792489|792592|850210|850211|850212|850213|850214|850215|850216|850217|850218|903655|929792|929793|929794|929795|939658|939659|939660|951861|951862|951863|959331|963207|967241|971226|975668|977309", + "text": "Androgen resistance syndrome" + }, + { + "baseId": "24843|24845|24846|24852|24857|24859|24862|24868|24869|24889|209141|260337|265114|265118|390492|404864|404865|404866|404867|411438|411442|430877|430878|430883|470430|470905|470914|471654|471664|471928|471937|471938|471939|471940|471942|471947|471953|471954|471955|472174|472178|472179|472181|472184|472185|485850|485854|534907|535186|535187|535188|573952|573957|573960|574823|574825|575439|650144|650145|650146|650147|650148|650149|650150|650151|650152|650153|650154|650155|650156|650157|653466|850210|850211|850212|850213|850214|850215|850216|850217|850218|929792|929793|929794|929795|939658|939659|939660|951861|951862|951863|959331", + "text": "Kennedy disease" + }, + { + "baseId": "24845|24863|24879|213671|390492|578598", + "text": "Hypospadias 1, X-linked" + }, + { + "baseId": "24845|24849|24852|24859|24861|24862|24868|24869|24880|24883|24884|24885|24886|24890|24896|24899|24900|213671|265055|390492|442482", + "text": "Partial androgen insensitivity syndrome" + }, + { + "baseId": "24867|578598", + "text": "Androgen insensitivity, partial, with breast cancer" + }, + { + "baseId": "24888|133488", + "text": "Prostate cancer susceptibility" + }, + { + "baseId": "24900|430423|653825|653826|653827|653828|653829", + "text": "TAFRO syndrome" + }, + { + "baseId": "24901|33863|404853", + "text": "X-linked dystonia-parkinsonism" + }, + { + "baseId": "24902|24903|24904|24905|971210", + "text": "Mental retardation, X-linked 96" + }, + { + "baseId": "24906|50325|50326|50327|102257|135832|135833|143086|143087|191103|191292|196342|204011|204012|204013|204016|204020|204022|204027|204029|204031|209054|209058|247196|415788|470837|470838|470840|470844|470848|470858|471566|471570|471574|471578|471595|471598|471600|471602|471891|472158|472159|486787|488164|490839|534439|534823|534889|534938|534999|572502|573885|574220|575418|575419|575420|650075|650076|650077|685013|689513|689514|758516|758517|774073|800411|816013|850080|850081|850082|850083|850084|850085|850086|850087|850088|851972|920030|920452|920453|921222|929741|929742|929743|929744|929745|939606|939607|939608|940563|951810|951811|951812|959309|960384|960385|960987|963980", + "text": "Epilepsy, X-linked, with variable learning disabilities and behavior disorders" + }, + { + "baseId": "24907", + "text": "Mental retardation, X-linked, with isolated growth hormone deficiency" + }, + { + "baseId": "24908|24909|919979", + "text": "Panhypopituitarism, X-linked" + }, + { + "baseId": "24911|45434|45435|45436|45437|76989|99002|189164|189165|189166|260556|260557|260558|260559|260560|260809|361265|384509|488077|623372|792518|921525|971233|980406|980407", + "text": "Short stature, idiopathic, X-linked" + }, + { + "baseId": "24912|24913|24914|24915|24916|24917|24918|24921|24922|24923|38949|38950|76989|550853", + "text": "Leri-Weill dyschondrosteosis" + }, + { + "baseId": "24913|24918|24919|24920|24923|38949", + "text": "Langer mesomelic dysplasia syndrome" + }, + { + "baseId": "24924", + "text": "SEROTONIN 5-HT-2C RECEPTOR POLYMORPHISM" + }, + { + "baseId": "24925|24926|24927|24928|24929|24930|24931|24932|24933|24934|24935|78963|104800|104813|104850|104869|104880|104887|104896|358692|358693|360557|537556|717750|729532|758416|758417|758418|773945|776904|786770|801469|851952|919998|919999|980974", + "text": "Juvenile retinoschisis" + }, + { + "baseId": "24934|104827|104828|104846|104849|104872|104884|800628", + "text": "Retinoschisis" + }, + { + "baseId": "24936|24937|24938|24939|24940|24941|24942|24943|24944|24945|24946|24947|24948|24949|24950|24959|24960|96865|104699|181395|192431|213666|265159|339211|339226|348750|348755|348757|352861|352864|418830|431819|431821|513165|551593|551595|551597|551599|551600|611982|611983|614094|792434|792457|792458|792459|800629|800631|800639|801477|802234|816012|856981|856982|856984|856985|856986|856987|856988|856989|856990|856991|856992|856993|856994|856995|856996|856997|856998|856999|857000|857001|857003|857004|857005|857006|857007|857008|857009|857010|857011|857012|857013|857014|857015|857016|857017|857018|857019|857021|857022|857023|857024|857025|857026|857027|857028|857029|857030|857031|857032|857033|857034|857035|857036|857037|857038|857061|860850|860857|920014|920015|920016|920450|920606|963400|963401|963402|963403|963404|963405|963406|963407|963408|963409|963410|963411|963412|963413|963414|963415|963416|963417|963418|963419|963420|963421|963422|963423|963424|963425|963426|963427|963428|963429|963430|963431|963432|963433|963434|964704|977317|977318|977319", + "text": "Retinitis pigmentosa 15" + }, + { + "baseId": "24949|24950|24953|24956|24957|104677|213666", + "text": "Cone-rod dystrophy, X-linked 1" + }, + { + "baseId": "24951", + "text": "Retinitis pigmentosa, X-linked, and sinorespiratory infections, with or without deafness" + }, + { + "baseId": "24952|213666", + "text": "Macular degeneration, X-linked atrophic" + }, + { + "baseId": "24954|24955|24958", + "text": "Retinitis pigmentosa, X-linked, and sinorespiratory infections, with deafness" + }, + { + "baseId": "24961|38947|38948|430634|550375|580755|614102|792115|903701|903702|903703|903704|903705|964916", + "text": "Syndromic mental retardation, Nascimento type, X-linked" + }, + { + "baseId": "24962|24963|24964|24965|24966|257876|257880|339534|339538|339539|339541|349016|349017|349020|349021|349022|352423|352424|352427|352428|352429|352430|352431|352432|352441|352444|352445|352944|380120|426491|471723|508649|508697|573998|575448|614096|622498|650199|650200|650201|653543|821798|850258|850259|903177|903178|903179|903180|903181|903182|903183|903184|903185|903186|903187|903188|903189|903190|903191|903192|903193|903194|903195|903196|903197|903198|903199|903200|903201|903202|903203|903482|903656|920064|920065|929809|939677|951877|966352|971229", + "text": "Glycogen storage disease IXd" + }, + { + "baseId": "24967|24968|24969|24970|24971|24972|34175|99985|176313|338683|348278|348281|351934|351935|351938|351939|351942|351943|352709|352710|352711|439510|689320|792106|798778|902688|902689|902690|902691|902692|902693|902694|902695|902696", + "text": "Phosphoribosylpyrophosphate synthetase superactivity" + }, + { + "baseId": "24973|24974|106633|150246|150247|224828", + "text": "Charcot-Marie-Tooth disease, X-linked recessive, type 5" + }, + { + "baseId": "24974|25470|25471|25472|25474|25476|25477|25480|25481|25489|33933|33934|33936|33938|33939|34175|99985|140023|140025|140026|140027|140028|140029|165478|165480|167382|172155|176313|186290|186291|192187|211999|212000|212001|213497|213498|213499|213500|213501|213502|213890|213891|213892|213893|213894|222886|222887|231240|232146|232157|232161|243728|243739|243822|244166|245177|245178|245179|245180|245182|245184|245185|245187|245188|245189|338837|351935|352058|352942|360628|361105|377677|378903|379916|380117|404289|404290|404292|404296|404304|404306|404309|404439|404484|404594|404595|411470|411471|411472|411473|422511|433590|438582|442441|442442|442443|442446|442447|442450|442453|442454|442455|470975|470976|470989|470992|470996|470998|471000|471001|471256|471693|471708|471721|472031|472053|472198|472199|472200|472201|472202|507839|508250|508492|512743|534492|534507|534509|534600|534929|534951|534952|534953|534954|534956|534994|535064|535067|535069|535192|535193|535194|535195|537587|572564|572565|572569|572570|572572|572574|572576|572580|573989|573997|574881|574883|574885|575282|575325|575444|575445|575446|577977|585859|625455|625457|625474|625484|625488|625498|625499|625500|625501|625522|625531|625541|625542|625584|625598|625611|625648|625654|625681|625685|625704|649625|649669|649670|649671|649672|649673|649674|649675|649676|649677|649678|649679|649680|650193|650194|650195|650196|650197|653679|653735|653773|654959|656797|684944|685031|685032|689320|689321|689335|689550|690250|694766|694767|694768|717644|758294|760818|774195|774196|793893|800412|849543|849544|849603|849604|849605|849606|849607|849608|849609|849610|849611|849612|850241|850242|850243|850244|850245|850246|850247|850248|850249|850250|850251|850252|850253|850254|850255|850256|850257|902774|905514|929561|929562|929563|929802|929803|929804|929805|929806|929807|929808|939395|939423|939424|939425|939426|939672|939673|939674|939675|951590|951591|951592|951876|959163|959164|959165|959342|959343|959344", + "text": "Charcot-Marie-Tooth Neuropathy X" + }, + { + "baseId": "24975|24976|34173|34175|38944|99985|176313|224827|338683|348278|348281|351934|351935|351938|351939|351942|351943|352709|352710|352711|689320|789136|902688|902689|902690|902691|902692|902693|902694|902695|902696", + "text": "Arts syndrome" + }, + { + "baseId": "24977|24978|24979|24980|34175|99985|150245|150246|176313|224827|338683|348278|348281|351935|351938|351939|351942|352709|352710|352711|689320|902688|902689|902690|902691|902692|902693|902694|902695|902696", + "text": "Deafness, X-linked 1" + }, + { + "baseId": "24981|24982|24983|24985|24986|24987|24988|24989|24990|24991|24992|24993|24994|24995|446789|486498|538518|792510|800322|961795", + "text": "Phosphoglycerate kinase 1 deficiency" + }, + { + "baseId": "24984", + "text": "Phosphoglycerate kinase electrophoretic variant PGK II" + }, + { + "baseId": "24996|24997|24998|24999|25000|25001|25002|25003|25004|25005|49824|426413|471783|539098|961636", + "text": "Paroxysmal nocturnal hemoglobinuria 1" + }, + { + "baseId": "25006|143124|195862|204578|204579|424619|430793|572493|573876|650053|650054|731470|743324|743325|743327|778524", + "text": "Brunner syndrome" + }, + { + "baseId": "25007", + "text": "Antisocial behavior, susceptibility to" + }, + { + "baseId": "25007|361149", + "text": "Autism, severe" + }, + { + "baseId": "25008|25009|25010|25011|38942|99925|134550|181487|181492|208890|244025|438466|612431|792128|792129|961583|961584|961585", + "text": "Fragile X syndrome" + }, + { + "baseId": "25011|612430", + "text": "Fragile X tremor/ataxia syndrome" + }, + { + "baseId": "25011|166439|166440|166441|178175|612430", + "text": "Premature ovarian failure 1" + }, + { + "baseId": "25012|25013|25014|25015|25016|25017|25018|25019|25020|25021|25021|25022|25023|45103|45103|45104|53124|53582|53583|53590|53593|53594|53596|53597|53599|53600|53601|53603|53604|53605|53606|53609|53612|54739|141774|141775|176316|176318|176318|176319|176320|176322|176439|176440|176441|176443|176444|176734|178207|178762|179882|179884|179892|179893|179894|179894|179895|179899|179901|179906|179907|179911|231237|231245|231248|231249|243737|243738|259133|259136|259142|262413|338700|338709|338710|338713|338717|338721|338722|338724|338727|338736|338740|338742|338749|338751|348302|348304|348317|348321|348323|348325|348331|348332|348334|348335|348337|348341|348348|348349|348351|348353|348354|351976|351981|351982|351990|351991|351992|351993|351994|351995|351996|351997|352000|352001|352003|352005|352018|352019|352021|352717|352718|352719|352720|352721|352722|352723|352724|378857|378866|378957|379903|379904|404054|404057|404062|404085|404088|404092|404435|404436|404437|422409|446481|446483|446484|470451|470454|472048|472049|507816|510894|534395|534453|534456|534495|534515|535005|552241|572178|572180|573523|573527|574250|574251|574262|574264|574266|575322|623111|649649|649650|649651|649652|649653|649654|649655|649656|649657|653487|690249|695888|773724|773727|786689|821548|821549|849577|849578|849579|849580|849581|849582|849583|852459|852462|902707|902708|902709|902710|902711|902712|902713|902714|902715|902716|902717|902718|902719|902720|902721|902722|902723|902724|902725|902726|902727|902728|902729|902730|902731|902732|920434|929549|929550|929551|929552|929553|939410|939411|939412|939413|939414|939415|951580|951581|951582|959156|959157|959158|960358|960359", + "text": "Danon disease" + }, + { + "baseId": "25024|25025|25026|25029|25030|25032|25034|25040|38941|195889|208929|227923|263869|411165|426418|553161|677467|792151|792152|792153|792154|792155|792156|816043|964901|970135|976680", + "text": "X-linked hydrocephalus syndrome" + }, + { + "baseId": "25027|25028|25031|25032|25033|25034|538504|677467|969591|971188|976680|984267", + "text": "MASA syndrome" + }, + { + "baseId": "25029|170086|170088|208928|208929|430694", + "text": "Hydrocephalus due to aqueductal stenosis" + }, + { + "baseId": "25032|26446|70633|169564|421861|553412|578035|622834|964259|966700|966709|966710|966711|966720|966726|966727|966728|966729|966730|966731|966732|966736|976826", + "text": "Hydrops fetalis" + }, + { + "baseId": "25035|25037|25038", + "text": "Hydrocephalus, X-linked, with hirschsprung disease" + }, + { + "baseId": "25039", + "text": "Hydrocephalus, X-linked, with congenital idiopathic intestinal pseudoobstruction" + }, + { + "baseId": "25040|208929|432227|677467|976680", + "text": "Corpus callosum, partial agenesis of, X-linked" + }, + { + "baseId": "25041|25042|25043|25044|25045|25046|25047|25048|25049|25050|25051|25052|25053|25054|94235|150305|181584|226096|226097|227424|260344|362185|378676|380293|380294|417445|424680|430951|432348|471204|471776|471782|471784|472020|482267|508265|508443|508670|535108|550801|612201|653482|653796|678083|679937|679938|694953|694958|694960|694969|821801|821802|964638|964639", + "text": "Hypogonadotropic hypogonadism 1 with or without anosmia (Kallmann syndrome 1)" + }, + { + "baseId": "25055|25056|25057|25058|25059|25060|25061|25062|25063|25064|25065|25067|45047|45048|45049|45050|45051|45052|227109|227110|227110|227111|244011|260341|264921|339520|349013|352389|352390|352409|352937|352938|352939|360655|379370|379505|411458|446742|470931|470934|470940|471671|471672|471963|471964|472030|472189|495906|534940|534946|535057|535189|535190|574877|574879|575442|575443|610408|613425|621696|621697|650166|650167|650168|650169|650170|650171|650172|653470|729694|731485|743454|743455|758630|758631|758632|774184|774186|774187|774188|774189|786893|786894|786895|786897|786898|786899|788377|792494|806254|822234|850225|850226|850227|850228|850229|903169|929797|929798|939662|939663|939664|939665|939666|941315|951867|951868|951869|951870|951871|959334|959335|959336|959337|960989|969202|980110|980492", + "text": "X-linked severe combined immunodeficiency" + }, + { + "baseId": "25062|25066|227110|227110|227111|379505|411458|980492", + "text": "Combined immunodeficiency, X-linked" + }, + { + "baseId": "25068|25069|25070|25077|25080|25081|25085|25086|25098|25099|25103|25112|25113|25114|25115|25118|25120|25123|38940|38940|177770|266922|534373|534530|574292|649709|649710|649711|653299|653438|653634|821558|849663|849664|851938|853027|951616", + "text": "Partial hypoxanthine-guanine phosphoribosyltransferase deficiency" + }, + { + "baseId": "25068", + "text": "HPRT ANN ARBOR" + }, + { + "baseId": "25069", + "text": "HPRT ARLINGTON" + }, + { + "baseId": "25070", + "text": "HPRT ASHVILLE" + }, + { + "baseId": "25071|25072|25073|25074|25075|25076|25078|25079|25082|25083|25084|25085|25085|25086|25086|25087|25088|25089|25090|25091|25092|25093|25094|25095|25096|25097|25099|25099|25101|25102|25104|25105|25106|25107|25108|25109|25110|25111|25116|25117|25119|25121|25122|38940|177770|177770|192197|266922|424675|534373|534530|551342|574292|649709|649710|649711|653299|653438|653634|792123|821558|849663|849664|851938|853027|951616", + "text": "Lesch-Nyhan syndrome" + }, + { + "baseId": "25071", + "text": "HPRT CHICAGO" + }, + { + "baseId": "25072", + "text": "HPRT CONNERSVILLE" + }, + { + "baseId": "25073", + "text": "HPRT DETROIT" + }, + { + "baseId": "25074", + "text": "HPRT EVANSVILLE" + }, + { + "baseId": "25075", + "text": "HPRT FLINT" + }, + { + "baseId": "25077", + "text": "HPRT LONDON" + }, + { + "baseId": "25078", + "text": "HPRT MICHIGAN" + }, + { + "baseId": "25079", + "text": "HPRT MIDLAND" + }, + { + "baseId": "25080", + "text": "HPRT MILWAUKEE" + }, + { + "baseId": "25081", + "text": "HPRT MUNICH" + }, + { + "baseId": "25082", + "text": "HPRT NEW BRITON" + }, + { + "baseId": "25083", + "text": "HPRT NEW HAVEN" + }, + { + "baseId": "25084", + "text": "HPRT YALE" + }, + { + "baseId": "25098", + "text": "HPRT TORONTO" + }, + { + "baseId": "25099", + "text": "HPRT FUJIMI" + }, + { + "baseId": "25100|38940", + "text": "Lesch-nyhan syndrome, neurologic variant" + }, + { + "baseId": "25100", + "text": "HPRT MONTREAL" + }, + { + "baseId": "25113", + "text": "HPRT URANGAN" + }, + { + "baseId": "25114", + "text": "HPRT TOOWONG" + }, + { + "baseId": "25115", + "text": "HPRT SWAN" + }, + { + "baseId": "25116", + "text": "HPRT CHERMSIDE" + }, + { + "baseId": "25117", + "text": "HPRT COORPAROO" + }, + { + "baseId": "25118", + "text": "HPRT EDINBURGH" + }, + { + "baseId": "25119", + "text": "HPRT TOKYO" + }, + { + "baseId": "25120", + "text": "HPRT MOOSE JAW" + }, + { + "baseId": "25121", + "text": "HPRT PARIS" + }, + { + "baseId": "25124|25125|25126|25127|25128|25129|25130|25131|25132|25133|25134|25135|25136|25137|25138|25139|25140|25141|25142|25144|25145|25146|25147|25148|25149|25150|25151|25152|25153|25154|25155|25156|25157|25158|25160|25161|25162|25163|25164|25165|25166|25167|25168|25169|25170|25171|25172|25173|25174|25175|25176|25177|25178|25179|25180|25181|25182|25183|25184|25185|25186|25187|25188|25189|25190|25191|25192|25193|25194|25195|25196|25197|25198|25199|25200|25201|25202|25203|25204|25205|25206|25207|25208|25209|25210|25211|25212|25213|25214|25215|25216|25217|25218|25219|25220|25221|25222|25223|25224|25225|25226|25227|25228|25229|25230|25231|25232|25233|25234|25235|25236|25237|25238|25239|25240|25241|25242|25243|25244|25245|25246|25247|25248|25249|25250|25251|25252|25253|25254|25255|25256|25257|25258|25259|25260|25261|25262|25263|25264|25265|25266|25267|25268|25269|25270|25271|25272|25273|25274|25275|25276|25277|25278|25279|25280|25281|25282|25283|25284|25285|25286|25287|25288|25289|25290|25291|25292|25293|25294|25295|25296|25297|25298|25299|25300|25301|25302|25303|25304|25305|25306|25307|25308|25309|25310|25311|25312|25313|25314|25315|25316|25317|25318|25319|25320|25321|25322|25323|25324|25325|25326|25327|25328|25329|25330|25331|25332|25333|25334|25335|25336|25337|25338|25339|25340|25341|25342|25343|25344|25345|25346|25347|25348|25349|25350|25351|25352|25353|25354|25355|25356|25357|25358|25359|25360|25361|25362|25363|25364|25365|25366|25367|25368|25369|25370|25371|25372|25373|25374|25375|25376|25377|25378|25379|25380|25381|25382|25383|25384|25385|25386|25387|25388|25389|25390|25391|25392|25612|25624|25641|25646|25650|25652|49420|49421|49422|49423|93036|213664|227420|257788|260943|339078|339079|339081|339082|339084|339085|348615|348617|348625|348627|352165|352166|352167|352168|352169|352803|352804|352805|352806|352807|352808|353915|353916|389210|433316|433317|433321|433322|433324|438478|481379|583136|610215|610226|610234|615663|615665|615667|615668|615669|615670|615672|615673|615674|615682|615699|615756|615757|615758|615759|615851|654965|689446|689448|788955|792174|792175|792176|792177|792178|792179|792180|792181|792182|800268|800269|800270|800271|800272|800273|800274|800275|800276|800277|800278|800279|800280|800281|800282|800283|800284|800285|800286|800287|800288|800289|800290|800291|800292|800293|800294|800295|800296|800297|800298|800299|800300|800301|800302|801223|860815|861047|902903|902904|902905|902906|902907|902908|902909|902910|902911|902912|902913|902914|902915|902916|902917|902918|902919|902920|902921|902922|902923|902924|902925|902926|902927|902928|902929|902930|902931|902932|902933|902934|918476|919994|962090|962091|962092|962093|962094|962095|962096|962097|962098|962099|962100|962101|962102|962103|962104|962105|962106|962109|962110|962111|967240|982302|982303|982304|982305|982306|982307|982308|982309|982310|982311|982312|982313|982314|982315|982316|982317|982318|982319|982320|982321|982322|982323|982324|982325|982326|982327|982328|982329|982330|982331|982332|982333|982334", + "text": "Hereditary factor VIII deficiency disease" + }, + { + "baseId": "25137|25150|25165|25216|25235|25256|25261|25271|25275|25284|25285|25292|25320|25354|25358|25366|25371|25603|25604|25605|25606|25607|25608|25609|25610|25611|25611|25612|25613|25614|25615|25616|25617|25618|25618|25619|25620|25621|25622|25623|25624|25625|25626|25626|25627|25628|25629|25631|25632|25634|25635|25636|25637|25638|25639|25639|25640|25641|25641|25642|25643|25644|25645|25646|25646|25647|25648|25649|25650|25651|25652|25653|25654|25654|25655|25656|25657|25658|25659|25660|25661|25662|25663|25664|25665|25666|25667|25668|25669|25670|25671|25672|25673|25674|25675|25676|25677|25678|25679|25680|25680|25681|25682|25686|25687|25688|25689|25690|25691|25693|25694|25695|25696|25697|25699|25701|25702|25703|25704|25705|25706|25707|97615|97615|213664|227419|227419|272487|272487|338968|338968|338973|338973|338978|338978|338980|338982|348532|348532|348533|348533|348544|348544|348545|348546|348547|348550|352093|352093|352094|352095|352777|352778|362218|362219|362220|433314|471322|471759|534874|573610|575339|610215|610226|615676|615677|615679|615681|615682|615683|615684|615685|615686|615687|615688|615690|615691|615692|615693|615694|615695|615696|615697|615698|615699|615700|615701|615702|615703|615704|615705|615706|615707|615708|615709|615710|615711|615712|615713|615762|615858|615859|649734|649735|653304|653623|653690|684952|684953|684955|684956|684957|684957|685484|689350|689351|689351|689353|689354|689356|689356|689357|694795|773781|773782|773783|786710|786712|792126|800214|800220|801219|801220|821564|849692|849693|849694|849695|852471|902830|902831|902832|902833|902834|939457|951629|962083|962084|962085|962086|962087|962088|962089|962108|980084|980085|980086|980087", + "text": "Hereditary factor IX deficiency disease" + }, + { + "baseId": "25143|25159", + "text": "FACTOR VIII POLYMORPHISM" + }, + { + "baseId": "25150", + "text": "FACTOR VIII (OKAYAMA)" + }, + { + "baseId": "25153", + "text": "FACTOR VIII (EAST HARTFORD)" + }, + { + "baseId": "25393|25394|176763|178250|178251|178254|190850|231306|231307|231342|231343|472233|472235|535216|535217|535219|535220|535221|535222|575464|575467|575469|575470|575471|575472|575475|623389|650287|650288|650289|650290|650291|650292|650293|650294|650295|650296|650297|650298|650299|650300|650301|650302|650303|717883|729745|729746|729747|743507|761007|774281|776976|780238|850350|850351|850352|850353|850354|850355|850356|850357|850358|850359|853066|853067|929842|929843|929844|929845|929846|939704|939705|939706|939707|939708|939709|951915|951916|951917|951918|951919|951920|959380|959381|959382|960992", + "text": "Surfactant metabolism dysfunction, pulmonary, 4" + }, + { + "baseId": "25395|25396|25397|25398|132679|195912|215613|225821|225850|377731|415737|424674|552242|552243|552244|626290|788948|792118|971175", + "text": "Mental retardation, X-linked, syndromic, wu type" + }, + { + "baseId": "25399", + "text": "G6PD A+" + }, + { + "baseId": "25399|25399|25399|25400|25400|25402|25402|25403|25406|25406|25407|25407|25409|25410|25411|25411|25419|25420|25421|25422|25425|25425|25427|25428|25428|25429|25430|25432|25433|25435|25436|25437|25438|25439|25440|25441|25442|25443|25444|25445|25446|25449|25450|25451|25453|25455|25456|25458|25461|26571|26572|26573|26573|26574|26575|99398|99400|99401|99404|190992|352163|352802|425278|430790|471838|472107|535115|572365|649893|649894|653781|694844|694845|729516|729517|773925|780232|786758|792172|792173|800262|849841|849842|849843|929633|951688|959209", + "text": "Anemia, nonspherocytic hemolytic, due to G6PD deficiency" + }, + { + "baseId": "25399|25399|25400|25400|25401|25404|25405|25407|25411|25413|25419|25425|25426|25427|25428|25434|25461|99394|99398|99399|99401|99404|190992|339060|339062|339069|339073|352161|352162|352163|352798|352799|352800|352801|352802|786758|902892|902893|902894|902895|902896|902897|902898|902899|902900|902901|902902|903463|903464|903465|903466", + "text": "Glucose 6 phosphate dehydrogenase deficiency" + }, + { + "baseId": "25399|94283|94284|94285|205806|424966|614100|792114|964897", + "text": "Bone mineral density quantitative trait locus 18" + }, + { + "baseId": "25400", + "text": "G6PD ASAHI" + }, + { + "baseId": "25400", + "text": "chlorproguanil and dapsone response - Toxicity/ADR" + }, + { + "baseId": "25400|94337|204007", + "text": "Parkinsonism with spasticity, X-linked" + }, + { + "baseId": "25402", + "text": "G6PD CHATHAM" + }, + { + "baseId": "25403", + "text": "G6PD ILESHA" + }, + { + "baseId": "25406", + "text": "G6PD MAHIDOL" + }, + { + "baseId": "25407", + "text": "G6PD MEDITERRANEAN" + }, + { + "baseId": "25407", + "text": "G6PD SASSARI" + }, + { + "baseId": "25407", + "text": "G6PD CAGLIARI" + }, + { + "baseId": "25407|26606", + "text": "Angioedema induced by ACE inhibitors, susceptibility to" + }, + { + "baseId": "25407|25425", + "text": "G6PD deficient hemolytic anemia" + }, + { + "baseId": "25407", + "text": "Hemolytic anemia, G6PD deficient (favism)" + }, + { + "baseId": "25408", + "text": "G6PD METAPONTO" + }, + { + "baseId": "25409", + "text": "G6PD PORTICI" + }, + { + "baseId": "25409", + "text": "G6PD NASHVILLE" + }, + { + "baseId": "25409", + "text": "G6PD ANAHEIM" + }, + { + "baseId": "25410", + "text": "G6PD SANTIAGO DE CUBA" + }, + { + "baseId": "25411", + "text": "G6PD SEATTLE-LIKE" + }, + { + "baseId": "25411", + "text": "G6PD MODENA" + }, + { + "baseId": "25412", + "text": "G6PD HARILAOU" + }, + { + "baseId": "25414", + "text": "G6PD IOWA" + }, + { + "baseId": "25414", + "text": "G6PD IOWA CITY" + }, + { + "baseId": "25414", + "text": "G6PD SPRINGFIELD" + }, + { + "baseId": "25414", + "text": "G6PD WALTER REED" + }, + { + "baseId": "25415", + "text": "G6PD BEVERLY HILLS" + }, + { + "baseId": "25416", + "text": "G6PD TOMAH" + }, + { + "baseId": "25417", + "text": "G6PD RIVERSIDE" + }, + { + "baseId": "25418", + "text": "G6PD ANDALUS" + }, + { + "baseId": "25419", + "text": "G6PD CANTON" + }, + { + "baseId": "25419", + "text": "G6PD GIFU" + }, + { + "baseId": "25419", + "text": "G6PD AGRIGENTO" + }, + { + "baseId": "25419", + "text": "G6PD TAIWAN-HAKKA" + }, + { + "baseId": "25420", + "text": "G6PD PUERTO LIMON" + }, + { + "baseId": "25421", + "text": "G6PD MALAGA" + }, + { + "baseId": "25422", + "text": "G6PD GASTONIA" + }, + { + "baseId": "25422", + "text": "G6PD MARION" + }, + { + "baseId": "25422", + "text": "G6PD MINNESOTA" + }, + { + "baseId": "25424", + "text": "G6PD IERAPETRA" + }, + { + "baseId": "25425", + "text": "G6PD VIANGCHAN" + }, + { + "baseId": "25425", + "text": "G6PD JAMMU" + }, + { + "baseId": "25428", + "text": "G6PD KAIPING" + }, + { + "baseId": "25428", + "text": "G6PD ANANT" + }, + { + "baseId": "25428", + "text": "G6PD DHON" + }, + { + "baseId": "25428", + "text": "G6PD PETRICH-LIKE" + }, + { + "baseId": "25428", + "text": "G6PD SAPPORO-LIKE" + }, + { + "baseId": "25429", + "text": "G6PD LOMA LINDA" + }, + { + "baseId": "25430", + "text": "G6PD COIMBRA" + }, + { + "baseId": "25432", + "text": "G6PD TAIWAN-HAKKA 2" + }, + { + "baseId": "25433", + "text": "G6PD SANTIAGO" + }, + { + "baseId": "25434", + "text": "G6PD MEXICO CITY" + }, + { + "baseId": "25435", + "text": "G6PD GUADALAJARA" + }, + { + "baseId": "25436", + "text": "G6PD ALHAMBRA" + }, + { + "baseId": "25437", + "text": "G6PD JAPAN" + }, + { + "baseId": "25438", + "text": "G6PD PAWNEE" + }, + { + "baseId": "25439", + "text": "G6PD SUNDERLAND" + }, + { + "baseId": "25440", + "text": "G6PD KERALA-KALYAN" + }, + { + "baseId": "25440", + "text": "G6PD KERALA" + }, + { + "baseId": "25440", + "text": "G6PD KALYAN" + }, + { + "baseId": "25441", + "text": "G6PD AURES" + }, + { + "baseId": "25442", + "text": "G6PD GAOHE" + }, + { + "baseId": "25443", + "text": "G6PD QUING YUAN" + }, + { + "baseId": "25444", + "text": "G6PD MAHIDOL-LIKE" + }, + { + "baseId": "25445", + "text": "G6PD ORISSA" + }, + { + "baseId": "25446", + "text": "G6PD NANKANG" + }, + { + "baseId": "25448", + "text": "G6PD NEAPOLIS" + }, + { + "baseId": "25449", + "text": "G6PD SERRES" + }, + { + "baseId": "25451", + "text": "G6PD AVEIRO" + }, + { + "baseId": "25453", + "text": "G6PD REHOVOT" + }, + { + "baseId": "25454", + "text": "G6PD SPLIT" + }, + { + "baseId": "25455", + "text": "G6PD NAMORU" + }, + { + "baseId": "25456", + "text": "G6PD NILGIRI" + }, + { + "baseId": "25459", + "text": "G6PD ZURICH" + }, + { + "baseId": "25460", + "text": "G6PD VARNSDORF" + }, + { + "baseId": "25461", + "text": "G6PD COSENZA" + }, + { + "baseId": "25462|25466", + "text": "Dyserythropoietic anemia with thrombocytopenia" + }, + { + "baseId": "25462|25463|25464|25466|40607|166050|166051|166053|166054|166055|404581|471606|471610|472161|535011|535177|535178|575425|575426", + "text": "GATA-1-related thrombocytopenia with dyserythropoiesis" + }, + { + "baseId": "25463|25464", + "text": "Thrombocytopenia, X-linked, without dyserythropoietic anemia" + }, + { + "baseId": "25465", + "text": "Leukemia, megakaryoblastic, of Down syndrome" + }, + { + "baseId": "25467|40608|471610", + "text": "Thrombocytopenia, platelet dysfunction, hemolysis, and imbalanced globin synthesis" + }, + { + "baseId": "25468|138312|138319|183028|215048|215049|215050|215051|215052|215053|215054|215055|362916|362992|362993|362994|362995|581224|611996", + "text": "Acute megakaryoblastic leukemia" + }, + { + "baseId": "25470|25471|25472|25473|25474|25475|25476|25477|25478|25479|25480|25481|25482|25483|25484|25485|25486|25487|25488|25489|25490|33931|33932|33933|33934|33935|33936|33937|33938|33939|102962|165478|165479|165480|165481|186291|192187|213498|213502|213890|213891|213892|213893|213894|222886|244167|245177|339521|339522|352410|352422|352940|352941|352942|361106|404289|442441|470992|512742|534929|573997|609158|609184|625477|625569|625656|679697|792497|798821|903170|903171|903172|903173|903174|903175|903176|961022|964631", + "text": "Charcot-Marie-Tooth Neuropathy X Type 1" + }, + { + "baseId": "25492|25493|25494|25495|25496|25497|25499|25501|25502|25504|25505|25506|29396|35546|35549|35550|35551|35552|35553|35554|35555|35556|35557|35559|35561|35563|35567|35569|35570|35571|35572|35573|35574|35575|35578|35579|35580|35582|35583|35584|35585|35586|35587|35589|35590|35591|35592|35593|35594|35596|35597|35598|35599|35601|35602|35604|35605|35606|35607|35608|35609|35610|35611|35612|35616|35617|35618|35619|35620|35621|35623|35625|35626|35627|35628|35629|35630|35632|35633|35634|35635|35636|35637|35638|35639|35641|35642|35643|35644|35645|35647|35648|35649|35650|35651|35652|35653|35654|35655|35657|35658|35660|35661|35662|35663|35664|35665|35666|35668|35669|35670|35671|35674|35675|35676|35677|35678|35679|35680|35681|35682|35683|35684|35685|35686|35687|35689|35690|35691|35692|35693|35694|35695|35696|35697|35698|35699|35700|35701|35702|35704|35705|35706|35707|35708|35709|35710|35711|35712|35713|35714|35715|35716|35717|35718|35719|35720|35721|35722|35724|35725|35726|35727|35728|35729|35731|35733|35734|35736|35738|35739|35740|35742|35744|35745|35746|35747|35748|35749|35750|35751|35753|35754|35755|35756|35757|35758|35759|35760|35761|35762|35763|35765|35766|35767|35768|35769|35770|35771|35772|35773|35774|35775|35776|35777|35778|35779|35780|35781|35782|35783|35784|35785|35786|35787|35788|35789|35790|35791|35792|35793|35794|35795|35796|35797|35798|35799|35800|35801|35802|35803|35804|35805|35807|35808|35809|35810|35811|35812|35813|35814|35815|35816|35818|35819|35820|35821|35822|35823|35824|35825|35826|35827|35828|35829|35830|35831|35832|35833|35834|35835|35836|35837|35838|35839|35840|35841|35842|35843|35844|35845|35846|35847|35848|35850|35851|35852|35853|35854|35855|35856|35858|35859|35860|35861|35862|35866|35867|35868|35870|35871|35872|35875|35876|35877|35878|35879|35882|35884|35885|35886|35888|35889|35890|35891|35893|35895|35896|35897|35898|35899|35900|35902|35903|35904|35905|35906|35908|35909|35911|35914|35915|35916|35917|35920|35921|35923|35924|35925|35926|35928|35929|35931|35932|35933|35934|35935|35936|35937|35939|35940|35941|35942|35943|35944|35945|35946|35947|35948|35949|35951|35953|35954|35955|35956|35957|35958|35959|35962|35963|35964|35965|35967|35968|35969|35971|35973|35974|35975|35977|35978|35979|35981|35983|35984|35986|35987|35988|35989|35990|35991|35992|35993|35995|35996|35997|35998|35999|36000|36002|36003|36004|36006|36007|36008|36009|36010|36011|36012|36013|36014|36017|36018|36019|36020|36022|36023|36024|36025|36026|36030|36031|36032|36033|36034|36035|36037|36038|36039|36040|36041|36042|36043|36044|36047|36048|36049|36050|36052|36053|36054|36055|36057|36058|36059|36060|36061|36062|36063|36064|36065|36066|36067|36068|36070|36072|36073|36074|36075|36080|36081|36083|36084|36086|36089|36090|36091|36092|36093|36094|36095|36096|36097|36098|36099|36101|36102|36103|36104|36106|36107|36108|36109|36110|36111|36112|36113|36114|36115|36116|36117|36118|36120|36121|36123|36124|36126|36127|36129|36130|36132|36133|36134|47346|47347|47348|47351|47352|47353|47354|47356|47357|47359|47360|47361|47362|47363|47364|47365|47366|47367|47368|47369|47370|47371|47372|47373|47374|47375|47376|47377|47378|47379|47381|47382|47384|47387|47388|47389|47390|47391|47393|47394|189115|193020|205798|223755|223756|223757|223758|223759|223760|243893|257736|257739|260805|260806|260807|260808|354184|354185|384505|384506|384507|418976|422402|424442|426396|426397|426753|432344|432345|432346|433302|438462|439581|440657|446461|446463|513150|513151|513152|513153|513154|513155|513156|513157|513158|513159|513160|513161|513162|551799|553587|553601|553604|577917|577924|578004|578036|578037|578038|578039|578040|578041|578042|578043|578045|578046|578047|578048|578049|578050|578051|578052|578053|578054|578055|578056|578057|578058|578059|578060|578061|578062|578063|578064|578065|578066|578067|578068|578069|578070|578071|578072|578073|578074|578075|578076|578078|578079|578080|578081|578082|578083|578084|578085|578086|578087|578088|578089|578090|578091|578092|578093|578095|578096|578097|578098|578099|578100|578101|578102|578103|578104|578105|578106|578107|578108|578109|578110|578111|578112|578113|578114|578115|578116|578117|578118|578119|578120|578121|578122|578123|578124|578125|578126|578127|578128|578129|578130|578131|578132|578133|578134|578135|578136|578137|578138|578139|578140|578141|578142|578143|578144|578145|578146|578147|578148|578150|578151|578152|578154|578156|578157|578158|578159|578160|578161|578162|578163|578164|578165|578166|578167|578168|578169|578171|578172|578173|578174|578175|578176|578177|578178|578179|578180|578181|578182|578183|578184|578185|578186|578187|578188|578189|578190|578191|578192|578193|578194|578195|578196|578197|578198|578199|578200|578201|578202|578205|578206|578207|578208|578209|578210|578212|578213|578214|578215|578216|578217|578218|578219|578220|578221|578222|578223|578224|578225|578226|578227|578228|578229|578230|578231|578232|578233|578234|578235|578236|578237|578238|578239|578240|578243|578244|578245|578246|578247|578248|578249|578250|578251|578253|578254|578255|578256|578257|578258|578259|578260|578261|578262|578263|578264|578265|578266|578267|578268|578269|578270|578271|578272|578273|578274|578275|578276|578277|578278|578279|578280|578281|578282|578283|578284|578285|578286|578287|578288|578289|578290|578291|578292|578293|578294|578295|578296|578297|578298|578299|578300|578301|578302|578303|590341|590342|590343|590344|590345|590346|590347|590348|590349|590350|590351|590352|590353|590354|590355|590461|590474|611357|612112|612448|614099|622267|622927|623358|623359|623360|623361|623362|623363|623364|623365|624871|626419|654151|679522|680060|680061|695887|717593|792107|792108|792109|792110|792111|792112|792113|794269|798779|798780|798781|798782|798783|798784|798785|798786|798787|798788|798789|798790|798791|798792|798793|798794|798795|798796|798797|798798|798799|798800|800208|800209|800414|801558|818349|818350|818351|818352|818353|818354|818355|818356|818357|818358|818359|818360|818361|818362|818363|818364|818365|818366|818367|849552|857395|857659|858532|858533|858534|858535|858536|858537|858538|918475|919968|919969|919970|920433|961038|962805|962806|962807|962808|962809|962810|962811|962812|962813|962814|962815|962816|962817|962842|962843|962844|962845|962846|962847|962850|963379|963380|963381|963382|963383|963384|963385|963386|964565|971171|972373|972374|972375|972376|972377|972378|972379|972380|972381|972382|972383|972384|972385|972386|972387|972388|972389|972390|972391|972392|972393|972394|972395|972396|980079|980080|980081|980082|980083|980400|980401|982270|982271|982272|984011", + "text": "Alport syndrome 1, X-linked recessive" + }, + { + "baseId": "25505|32448|32523|32531|189115|190092|215249|227237|250583|250584|250586|250587|250588|250589|250590|250591|250592|250594|250595|250596|250597|250599|250600|250601|250602|250603|250605|250606|250607|250608|250609|250610|250611|250613|250614|250616|250617|250618|250619|250620|250621|250622|250624|250625|250626|250627|250628|250629|250631|250632|250635|250636|250637|250638|250639|250640|250641|250642|250643|250644|250646|250647|250648|250649|250650|250651|250652|250654|272152|284955|284956|284962|284964|284980|284986|284991|284993|284998|285000|285004|285008|285010|285015|285018|285019|285021|285027|285030|285031|285033|285034|285035|285037|285051|285052|285057|285058|285060|285061|285063|285064|285070|285071|285076|285079|285080|285088|285089|285094|285097|285102|285103|285112|285115|285116|285124|285125|285126|285135|285136|285613|285614|285619|285620|285623|285634|285636|285665|285669|285670|285671|285672|285680|285681|285682|285686|285687|285688|285690|285694|285697|285698|285700|285710|285711|285713|285717|285718|285719|285721|285726|285727|285728|285730|285731|285743|285744|285745|285749|285750|285751|285763|285764|285772|285775|287958|287960|287961|287962|287966|287968|287969|287970|287975|287982|287994|287995|287996|287999|288001|288002|288003|288024|288025|288027|288028|288029|288036|288037|288041|288043|288048|288050|288056|288057|288058|288062|288064|288066|288072|288077|288078|288083|288084|288093|288102|288110|288112|288207|288223|288225|288226|288227|288239|288240|288241|288243|288244|288267|288268|288280|288281|288296|288299|288301|288304|288308|288309|288352|288365|288374|288375|288386|288403|288408|288409|288410|288411|288412|288414|288415|288420|288421|288424|288426|288446|288450|288457|288459|288460|288461|288464|288474|288475|288476|288479|288480|288484|288488|288490|288491|405643|405646|424890|440657|440670|440671|440673|440678|443176|443177|443179|443181|486961|490915|491213|491479|493402|493610|496225|496718|499552|499554|499804|499806|499956|536626|541884|541903|541925|541970|542004|542014|542034|553611|553629|576647|578248|584708|584926|586060|590241|622521|622948|654245|654246|654248|654249|654253|654259|654261|655429|658694|658695|697370|697371|719679|719682|719683|733227|733228|733229|733230|733233|733234|733237|733239|743891|743897|743902|747383|747385|747387|759153|762981|762990|762995|762996|762998|763001|763005|763011|763012|763014|774686|774710|774711|774745|774761|781196|781198|781199|781203|781204|781206|781207|781211|781218|781221|787098|787195|792967|795183|804846|818208|818211|821877|825794|825797|825810|883942|883943|883944|883945|883946|883947|883948|883949|883950|883951|883952|883953|883954|883955|883956|883957|883958|883959|883960|883961|883962|883963|883964|883965|883966|883967|883968|883969|883970|883971|883972|883973|883974|883975|883976|883977|883978|883979|883980|883981|883982|883983|883984|883985|883986|883987|883988|883989|883990|883991|883992|883993|883994|883995|883996|883997|883998|883999|884000|884001|884002|884003|884004|884005|884006|884007|884008|884009|884010|884011|884012|884013|884014|884015|884016|884017|884018|884019|884020|884021|884022|884023|884024|884025|884026|884027|884028|884029|884030|884031|884032|884033|884034|884035|884036|884037|884038|884039|884040|884041|884042|884043|884044|884045|884046|884047|884048|884049|884050|884051|884052|884053|884054|884055|884056|887284|887285|887286|887287|887288|887289|887290|887291|887292|887293|887294|887295|887296|887297|887298|887299|887300|887301|887302|887303|887304|887305|918504|918505|918509|918518|918519|918520|977688|977689|977690|977691|977692|977693|977694|977695|977696|977697|977698|977699|977700|977701|977702|977703|977704|977705", + "text": "Alport syndrome" + }, + { + "baseId": "25507|25508|25509|25510|25514|25515|25516|25517|25518|25519|25520|25523|25524|49400|140054|140056|140057|140061|212022|212025|212026|212027|212028|212030|290283|290284|290285|291116|291118|291128|291136|291141|294419|294428|294431|294437|294438|294758|294768|294793|294827|294831|339502|339508|348990|348992|348994|348996|348999|349002|352379|352929|352930|352931|353648|434515|508348|903153|903154|903155|903156|903157|903158|903481", + "text": "Anemia, sideroblastic, 1" + }, + { + "baseId": "25511|25512", + "text": "Sideroblastic anemia 1, late-onset" + }, + { + "baseId": "25513", + "text": "Anemia, hereditary sideroblastic 1, pyridoxine refractory" + }, + { + "baseId": "25521|25522|49400|75248|75249", + "text": "Protoporphyria, erythropoietic, X-linked" + }, + { + "baseId": "25525|25526|25527|25528|25529|25530|25531|25532|25533|25534|25535|25536|25537|25540|98525|98526|98527|98530|192198|193394|195566|196156|222898|222900|222901|222902|222903|222904|222905|222906|222907|222908|222909|222910|222911|222912|222913|222914|222915|222916|222917|222918|222919|222920|222921|223658|223659|223660|223661|223662|223663|223664|223665|223666|223667|269097|271132|378928|413848|431004|431005|470358|470524|471335|471342|472073|513390|534493|534568|534573|534641|574329|574331|575344|580665|580668|580802|580807|580814|580816|580959|586929|613229|621679|621680|621681|625891|625892|625893|625894|625895|625896|625897|625898|625899|649743|649744|649745|653344|653624|653625|653691|689368|689369|694802|694804|706122|706123|706125|706126|706127|717673|717674|729447|729448|729449|743169|743170|743171|743172|758319|758320|758321|773826|773827|773830|773831|776857|778647|778699|792131|792132|800627|805047|821480|849703|849704|849705|849706|849707|849708|853030|857696|857697|929587|929588|929589|929590|939461|951632|959176|959177|959178|959179|965355|980088", + "text": "Mucopolysaccharidosis, MPS-II" + }, + { + "baseId": "25536|25538", + "text": "Mucopolysaccharidosis, type II, mild form" + }, + { + "baseId": "25537|25539", + "text": "Mucopolysaccharidosis, type II, severe form" + }, + { + "baseId": "25542|25544|25546|25547|442545", + "text": "Cone monochromatism" + }, + { + "baseId": "25543", + "text": "RED CONE POLYMORPHISM" + }, + { + "baseId": "25545", + "text": "Protan defect" + }, + { + "baseId": "25547|25548|25549|25551|919984", + "text": "Deuteranopia" + }, + { + "baseId": "25552", + "text": "Cone dystrophy 5, X-linked" + }, + { + "baseId": "25553|25554|25555|25556|25557|25558|25559|25560|25562|38939|104522|171764|904074", + "text": "Ocular albinism, type I" + }, + { + "baseId": "25561|25563|25564|611358|920075", + "text": "Nystagmus 6, congenital, X-linked" + }, + { + "baseId": "25565|33006|38938|99929|133732|191365|217196|265456|426411|614105|792130|920437|963397|971183", + "text": "FRAXE" + }, + { + "baseId": "25566|25567|25568|25569|25570|25571|25572|25573|25574|25577|195873|205027|205339|205340|257794|257797|257798|257800|257801|257803|257804|257805|378058|378078|378089|379165|380013|439241|481444|492427|492524|508130|508133|508501|513163|513392|534696|534769|534775|534785|535123|573764|573768|574442|575285|575377|575378|575379|575380|584146|622490|626294|649913|649914|649915|649916|649917|649918|649919|649920|649921|649922|682741|682742|682743|682744|682745|682746|706185|729536|758422|792195|792196|792197|792198|792199|792200|798810|821579|849876|849877|849878|849879|851954|852486|852489|860822|920001|920002|929641|929642|929643|939518|939519|939520|940549|940550|951702|960979|961550|964703", + "text": "Glycogen storage disease type IXa1" + }, + { + "baseId": "25572|25574|25575|25576|25577|25578|25579|25580", + "text": "Glycogen storage disease IXa2" + }, + { + "baseId": "25581|25582|192587|339086|339092|339097|339100|339103|348636|348637|348640|348643|348646|348654|352172|352177|352178|352179|352809|352810|352812|430743|902935|902936|902937|902938|902939|902940|902941|919995|919996", + "text": "Mental retardation, X-linked 72" + }, + { + "baseId": "25583|25584|25585|25586|25587|25588|25589|25590|193605|578350|623367|800318|850066", + "text": "Retinitis pigmentosa 2" + }, + { + "baseId": "25591|25592|25593|25594|25595|25596|185939|185940|185941|185942|613946|613986|613987|614160|626302|920460", + "text": "X-linked ichthyosis with steryl-sulfatase deficiency" + }, + { + "baseId": "25597|25598|25599|25600|25683|25684|25685", + "text": "Hemophilia B Leyden" + }, + { + "baseId": "25601|25602|25680", + "text": "FACTOR IX POLYMORPHISM" + }, + { + "baseId": "25611|25618|25626|25639|25641|25646|25654|25680|25707|97615|227419|272487|338968|338973|338978|348532|348533|348544|352093|471759|534874|573610|575339|649734|649735|653304|653623|653690|684952|684953|684955|684956|684957|685484|689350|689351|689353|689354|689356|689357|773781|773782|773783|786710|786712|816498|821564|849692|849693|849694|849695|852471|939457|951629", + "text": "Thrombophilia, X-linked, due to factor IX defect" + }, + { + "baseId": "25627", + "text": "Deep venous thrombosis, protection against" + }, + { + "baseId": "25630|25633", + "text": "Hemophilia b(m)" + }, + { + "baseId": "25639", + "text": "FACTOR IX, DNA POLYMORPHISM" + }, + { + "baseId": "25692", + "text": "Hemophilia B Brandenburg" + }, + { + "baseId": "25698|25700", + "text": "Warfarin sensitivity, x-linked" + }, + { + "baseId": "25710|25711|25712|25713|25714", + "text": "Syndactyly-telecanthus-anogenital and renal malformations syndrome" + }, + { + "baseId": "25715|25716|25717|102098|213670|227423|265043|361247|362599|362600|362601|362602|362603|362604|362605|362606|362607|362608|362609|362610|362611|362612|362613|362614|362615|379463|411426|512712|538515|552263|608875|615772|622496|678078|792480|798819|800321|816503|850200|858586|964625|964626|971218|971219|971220|971221", + "text": "Syndromic X-linked intellectual disability Turner type" + }, + { + "baseId": "25718|25719|25720|25721|25722|25724|25725|25726|25728|25729|25731|25732|25735|25736|25737|25738|177444|226404|237630|361098|800649", + "text": "Atrophia bulborum hereditaria" + }, + { + "baseId": "25723|25727|25733|25734|513687", + "text": "Familial exudative vitreoretinopathy, X-linked" + }, + { + "baseId": "25730", + "text": "Exudative vitreoretinopathy, X-linked" + }, + { + "baseId": "25739|25740|25741|25742|244003|361152|480818|480819|679815|682677|802236|816511|972737|975661|983863", + "text": "Focal dermal hypoplasia" + }, + { + "baseId": "25743|25744|25745|25746|25747|38934|45731|45732|137226|137240|432372|624063|717839|729670|792486|920049|963239|963240|963241|964073|964074", + "text": "Osteopathia striata with cranial sclerosis" + }, + { + "baseId": "25748|25749|25750|25751|193633|225835|421144|470473|471250|471251|471686|471687|471688|471689|472051|472052|534472|534482|534485|534504|534598|535014|572196|574270|574272|574274|611441|649668|758284|758285|821475|822214|822215|849602|861156|919974|919975|929560|939421|939422|951589|959160|959161|959162|960362", + "text": "Mental retardation, X-linked, syndromic, Raymond type" + }, + { + "baseId": "25752|25753|25754|25755|25756|25757|25758|25759|25761|25762|25763|25764|25765|25766|25767|25768|25769|25769|25770|25771|25772|25773|25774|25775|25776|25777|25778|25779|25780|25781|25782|25783|25784|25785|25786|25787|25788|25789|25791|25792|25793|25794|25795|25797|25798|25799|25800|25801|25804|25805|25806|25807|25807|25808|25809|25810|25813|38452|44944|51619|51621|51622|51623|51624|51625|51626|51627|51628|51629|51630|51634|51635|51636|98447|98450|98469|98472|98474|98477|98478|98482|165573|176805|176806|176808|177041|177172|177304|177748|178194|178194|178269|178286|178294|178306|179863|179865|179867|179868|179870|179872|179881|190221|192190|193387|194799|194800|195214|195560|195561|195562|195563|214012|214013|214014|214015|214016|214017|214018|214019|214020|214021|214022|214023|214024|214025|214026|214027|214028|214029|214030|214031|214032|214033|214034|214035|214036|214037|214038|214039|214040|214041|214042|214043|214044|214045|214046|214047|214048|214049|214050|214051|214052|214053|214054|215608|223790|223792|223795|223802|223804|223819|223822|223829|223834|223839|223842|223845|223862|223885|223886|223889|223894|223896|223898|223900|223927|223932|223935|223936|223938|223939|223944|223945|223952|223955|223998|224000|224036|224049|224054|224055|224083|224087|224089|224096|224099|224102|224112|224114|224119|224122|224123|224124|224135|224143|224147|224163|224164|224578|224579|236819|243726|243727|245172|245173|264797|265210|265915|268722|269807|271086|272545|274105|351933|358691|360625|377660|377668|378802|404055|404423|404424|404463|404465|439341|446453|446454|446455|471217|471218|471220|471225|471668|471670|472044|487981|488021|488025|488028|488029|488068|488069|488070|507744|508242|513676|514788|534430|534433|534463|534466|534984|534985|537031|549816|553425|572155|572157|573516|574245|575315|576191|576192|585239|587645|588605|619046|621661|621662|621663|621664|621665|621666|621667|621668|621669|621670|621671|621672|649616|649617|649618|649619|649620|653373|685475|694760|758203|792103|821542|849521|849522|849523|849524|849525|849526|849527|852957|858448|860761|905969|906113|906114|914974|914975|914976|914977|914978|914979|914980|914981|914982|914983|914984|914985|914986|914987|914988|914989|914990|914991|914992|914993|914994|914995|914996|914997|914998|914999|915000|915001|915002|916114|916694|916696|917335|917337|917338|917339|917340|917341|917342|917343|917344|917345|917346|917348|917351|917352|917353|917354|917571|921498|929531|929532|929533|929534|939389|939390|939391|941283|951562|951563|959148|963115|965870|969199|969200|970124|970127|972612|975850|977362|980204|980205|980206|980207|980398|980399|984009", + "text": "Fabry disease" + }, + { + "baseId": "25754|25756|25760|25802|25803|25807", + "text": "Fabry disease, cardiac variant" + }, + { + "baseId": "25814|25815|101499|101500|135821|143026|143029|195723|196018|196290|203959|203960|203962|203965|203969|203973|203975|203977|208824|268445|377656|378782|404051|404052|404398|404420|470439|470442|471659|471663|472040|472041|534427|534567|534577|573507|575313|575314|580710|580733|583134|649589|649590|684925|776871|792098|821539|849506|849507|849508|903648|929526|929527|939381|939382|939383|959146", + "text": "Rolandic epilepsy with mental retardation and speech dyspraxia, X-linked" + }, + { + "baseId": "25816|25817|25818|25819|25820|150141|384444|430637|430748|917754|961021|976520", + "text": "Pettigrew syndrome" + }, + { + "baseId": "25821|25822|25823|25824|25825|25826|25827|25828|25829|38931|38932|38933|190088|257750|257751|257752|257753|257754|338847|338848|338853|338863|338868|338876|338878|338882|348463|348466|348468|352061|352062|352063|352751|352752|352753|614104|729410|729411|745459|902778|902779|902780|902781|902782|902783|902784|902785|902786|902787|902788|902789|902790|903457|903458|964698", + "text": "Infantile nystagmus, X-linked" + }, + { + "baseId": "25830|25831|25832|48172|48173|470465|649659|717622|849585|861669|939416|939417", + "text": "Polyagglutinable erythrocyte syndrome" + }, + { + "baseId": "25833|339629|339630|339631|339632|339634|349119|349120|349122|349124|349126|349130|349131|349133|349137|352464|352465|352466|352467|352468|352469|352470|352471|352472|352473|352975|352976|352977|352978|352979|352980|352981|352982|352983|352984|352985|352986|352987|620700|729725|745198|745426|903263|903264|903265|903266|903267|903268|903269|903270|903271|903272|903273|903274|903275", + "text": "Premature ovarian failure 2b" + }, + { + "baseId": "25833|76339|133458|151128|152554|233445|238964|360884|360884|452897|486603|486604|486605|610437|610438|610439|610440|610441|610442|610443|610444|610445|610446|610447|610448|610449|610450|610451|610452|610453|610454|610455|610456|610457|610458|610459|610460|610461|610462|610463|610464|610465|610466|610467|610468|610469|610470|610471|610472|610473|610474|610475|610476|614158|798951|857360|857412|857413|857415|966618|969329", + "text": "Premature ovarian insufficiency" + }, + { + "baseId": "25834|194486|404640|413833|508962|578596|622494|623368|626299|920039|971214|980404", + "text": "X-linked intellectual disability, Stocco dos Santos type" + }, + { + "baseId": "25836|25837|25838|25839|209132|361248|434695|539115|653919|920045|920046|972739", + "text": "Syndromic X-linked intellectual disability Siderius type" + }, + { + "baseId": "25840|101210|133935|133936|140166|140168|196272|204005|204006|204007|204007|204008|362040|380057|470799|470803|471558|534508|534816|774031|821791|850047|850048|850049|850050|857586|951790|959297", + "text": "Mental retardation, X-linked, syndromic, Hedera type" + }, + { + "baseId": "25841|25842|25843|102412|133980|192585|196081|209301|209307|213673|247209|339571|339572|339575|339580|339584|339591|339593|339599|339600|339601|339603|339611|349050|349051|349056|349057|349059|349062|349065|349067|349071|349072|349075|349082|349093|349101|349104|352448|352449|352450|352451|352452|352453|352454|352455|352456|352952|352953|352955|352956|352957|352958|352959|352960|352961|352962|352963|361256|553163|612340|614613|789392|792512|792513|805062|903216|903217|903218|903219|903220|903221|903222|903223|903224|903225|903226|903227|903228|903229|903230|903231|903232|903233|903234|903235|903236|903237|903238|903239|903240|903241|903242|903243|903244|903245|903246|903247|903248|903249|903487|903488|903489|903490|903491|903492|971232|976691", + "text": "Mental retardation, X-linked 93" + }, + { + "baseId": "25844|25845|25846|25847|25848|25849|25850|25851|38930|98783|98785|512558|513679|514789|538275|538276|538277|538278|538279|538280|538281|538282|538283|609027|677320|861662|961548|969760|977298", + "text": "Opitz GBBB syndrome, type I" + }, + { + "baseId": "25852|25853|25854|25855|25856|25858|25859|25860|25861|25862|45334|45335|45336|45337|45338|45339|45340|192813|227421|227925|257806|264847|264860|264878|264990|264997|264998|265002|265078|265081|265088|265148|265152|265153|266010|271082|339116|339117|339123|339126|339127|348663|348667|348668|348671|352181|352182|352183|352184|352185|352186|352187|352813|352814|352815|352816|352817|352818|352819|352820|352821|352822|360620|378102|379204|411267|415766|422451|426451|426452|432106|432107|432108|432109|432110|432111|432112|432113|432114|432115|432116|432117|432118|432119|432120|432121|432122|432123|432124|432125|432126|432127|432128|432129|432130|432131|432132|432133|432134|432135|432136|432137|432138|432139|432140|432141|432142|432143|432144|432145|432146|432147|432148|432149|432150|432151|432152|432153|432154|432155|432156|432157|432158|432159|432160|432161|432162|432163|432164|432165|432166|432167|432168|432169|432170|432171|432172|432173|432174|432175|432176|432177|432179|432180|432181|432182|432183|432184|432185|432186|432187|432188|432189|432190|432191|432192|432193|432194|432195|432196|432197|432198|432199|442408|446613|490880|513164|576345|612170|612171|677468|731464|758434|786784|792205|792206|792207|792208|792209|792210|792211|792212|792213|792214|792215|792216|792217|792218|792219|792220|792221|792222|792223|792224|792225|792226|792227|792228|792229|792230|792231|792232|792233|792234|792235|792236|792237|792238|792239|792240|792241|792242|792243|792244|792245|792246|792247|792248|792249|818370|818371|818372|818373|818374|902986|902987|902988|902989|902990|902991|902992|902993|903468|903469|929646|965438|977390", + "text": "Familial X-linked hypophosphatemic vitamin D refractory rickets" + }, + { + "baseId": "25863|25864|25865|25866|25867|25869|25870|25871|25872|25873|38929|100992|193550|226436|361249|481077|538315|538316|538317|538319|538320|538321|538516|682837|682838|792481|792482|792483|792484|798361|857660|920047|920456|971222", + "text": "Aarskog syndrome" + }, + { + "baseId": "25867", + "text": "Syndromic X-linked mental retardation 16" + }, + { + "baseId": "25874|25875|25876|25877|25878|25879|25880|25881|25882|25883|25884|25885|25886|25887|25888|25889|25890|25891|25892|200712|257777|257778|257778|257779|257780|257781|257782|262272|263865|339043|339048|348595|348597|348599|348606|348607|352130|352132|352133|352146|352147|352792|352793|352794|361239|411518|432347|434690|438979|512609|729494|743213|743214|743215|743219|773877|792157|792158|792159|902871|902872|902873|902874|902875|902876|902877|902878|902879|902880|902881|902882|902883|902884|962818|963387|963388|969619|983816", + "text": "Nephrogenic diabetes insipidus, X-linked" + }, + { + "baseId": "25877|25892|32867|32869|32871|44358|44359|44360|44361|44401|44402|44403|44404|44405|44406|44407|44408|44409|44410|44411|44412|44413|254604|317493|331609|333087|441560|738689|738690|738691|753440|769168|769174|775850|979288", + "text": "Nephrogenic diabetes insipidus" + }, + { + "baseId": "25893|25894|257778|434690", + "text": "Nephrogenic syndrome of inappropriate antidiuresis" + }, + { + "baseId": "25895|25896|25897|25898|25900|79587|79589|79590|79591|79592|79593|79594|79595|79596|79597|79598|79599|79600|79601|79602|79603|79605|79606|79607|79608|79609|79610|79611|79612|79613|79614|79615|79616|79617|98632|135296|135297|204258|204259|204260|204261|204262|204264|204278|204281|208866|265010|354269|470469|472050|492129|512586|534591|572191|572192|574268|575324|580763|585211|649663|649664|649665|649666|649667|653492|653687|653733|654142|677064|677065|717637|743141|773748|792121|818368|849600|849601|853026|861601|904883|929559|960361|972775", + "text": "Lowe syndrome" + }, + { + "baseId": "25899|25900|38926|38927|38928|79588|79604|204279|204280|265010|539123|539165|649667|921248|963313|971177|971178", + "text": "Dent disease type 2" + }, + { + "baseId": "25901|25903|25904|99463|131947|131948|131949|133666|134726|134728|134730|190332|191645|194880|205419|209101|209108|227679|264909|264918|273833|378441|378451|378452|378457|378466|378477|379317|379321|379449|379456|380077|380078|380082|380083|380084|380086|380087|384428|389192|411409|411411|411421|430836|430837|446696|446697|446698|446701|470880|471625|471626|471629|471633|471634|471637|471900|471903|471905|471908|471910|471913|472164|472165|495828|508598|508683|512701|513689|534387|534851|534852|534855|534856|534872|534881|534904|534905|534910|534911|534915|535032|535034|535036|535038|535040|535045|535046|535181|535182|535713|573913|573915|573921|573922|573923|574751|574803|574805|575431|575432|590809|590810|590811|611456|611471|611472|612123|650110|650111|650112|650113|650114|650115|650116|650117|650118|650119|650120|650121|650122|653790|677312|677473|694906|694907|706274|706275|717833|743393|745395|758559|758560|774111|774112|774113|774120|778527|786869|786873|792472|792473|792474|798346|800320|805131|805132|822229|822230|850168|850169|850170|850171|850172|850173|850174|850175|850176|850177|850178|850179|850180|850181|850182|850183|850184|850185|850186|850187|903653|904734|920040|920041|920042|929774|929775|929776|929777|929778|929779|929780|929781|939640|939641|939642|939643|939644|939645|939646|951852|951853|951854|959323|959324|959325|959326|959327|960390|963986|963987|964621|964622|967284|971217|972738|983656", + "text": "Mental retardation, X-linked 1" + }, + { + "baseId": "25902", + "text": "Mental retardation, X-linked 18" + }, + { + "baseId": "25905|25906|25907|25908|25909|45729|45730|99372|194866|195603|245218|245222|257770|338984|338985|338987|338992|338998|339001|339005|348561|348562|348579|352098|352099|352102|352780|352781|352782|352783|352784|352785|352786|404139|404461|470515|471328|534596|553573|575340|678981|678982|678983|678985|678988|678989|678990|678991|678992|678993|678994|678996|678997|678998|678999|679000|679002|684959|902835|902836|902837|902838|902839|902840|902841|902842|902843|902844|902845|971182", + "text": "Fanconi anemia, complementation group B" + }, + { + "baseId": "25910|25911|25912|25913|25914|25915|25916|25917|25918|25919|25920|25921|25922|25923|25924|25925|25926|25927|25928|25929|25930|25932|98677|98678|98679|142349|142367|198647|205341|208994|212003|212004|212009|212010|212014|212015|212016|212019|212020|269240|361087|361241|361266|363794|379176|379177|379181|379278|411240|411241|424351|426447|439032|481436|481437|481438|481439|508137|508510|508511|508641|534786|535124|552254|552255|552256|552257|574444|581767|581779|581780|590462|624873|649923|649924|649925|649926|649927|649928|677311|729539|743274|745466|773951|773953|773954|773956|776966|786776|786777|786778|792201|792202|798811|805128|816501|821496|849880|849881|849882|849883|858658|902942|902943|902944|902945|902946|902947|902948|902949|902950|902951|902952|902953|902954|902955|902956|902957|902958|902959|902960|902961|902962|902963|902964|902965|902966|902967|902968|902969|902970|902971|902972|902973|902974|902975|902976|902977|902978|902979|902980|902981|902982|903467|920003|920443|920444|939521|951703|964591|971198|973048|975876|980752", + "text": "Pyruvate dehydrogenase E1-alpha deficiency" + }, + { + "baseId": "25924|98679|140795|140797|140798|140799|140800|140801|140803|140804|140805|140806|142351|200131|200139|200140|211018|212002|292521|292526|295908|295924|295936|301480|301484|301488|301489|301493|301494|301500|301501|301503|301504|304711|304712|304731|304734|304735|304737|304738|304739|304740|304742|304743|304744|304760|309367|309368|309370|309371|309499|309501|309502|309504|309505|320296|327354|353651|353804|368842|488040|501526|514795|566277|615914|649923|734259|743274|743962|765983|786778|849883|897233|897234|897235|897236|897237|897238|897239|897240|897241|897242|897243|897244|897245|897246|897247|897248|897249|897250|897251|897252|897253|897254|897255|953582|977983|977984|977985|977986|977987|977988|977989|977990|977991|977992|980097|980098|980099", + "text": "Pyruvate dehydrogenase complex deficiency" + }, + { + "baseId": "25933|25934|25935|25936|424906|963981", + "text": "Mental retardation 9, X-linked" + }, + { + "baseId": "25937|25938|25939|25940|25941|25942|25943|25944|25945|25946|25947|25948|25949|76322|271618|338825|338827|338831|338832|348436|348446|348451|348452|348453|352051|352052|352053|352055|352056|352057|352744|352745|352746|352747|352748|534501|538284|538285|538286|539418|574193|575284|760829|849599|852961|902766|902767|902768|902769|902770|902771|902772|902773|929556|929557|929558|951587|951588|960972", + "text": "Lymphoproliferative syndrome 1, X-linked" + }, + { + "baseId": "25937|621676", + "text": "X-Linked Lymphoproliferative Syndrome" + }, + { + "baseId": "25950|25951|25952|25953|25954|25956|25957|25958|101661|101662|101663|101664|101665|101669|133972|137418|137424|137425|137430|137432|137433|137434|177520|177521|178422|178423|178424|191264|196044|209036|209037|209040|213667|243725|243815|257836|269266|271259|364216|404451|404579|411329|430780|431933|446645|470789|470791|471551|471556|471877|471878|471880|472148|472149|472150|472151|493731|513396|534811|534861|534863|534864|534866|534968|572483|572490|573860|574728|575411|575412|582122|612138|650040|650041|650042|650043|650044|650045|650046|650047|650048|653421|684995|684999|685000|685001|685003|685008|685009|685012|689497|689500|689501|689507|689509|717788|729582|786823|786824|786825|816502|821790|850039|850040|850041|850042|850043|850044|850045|850046|920018|920019|920020|929726|939592|951785|951786|951787|951788|951789|959296|964607|964608", + "text": "Oculofaciocardiodental syndrome" + }, + { + "baseId": "25959|25960|25963|25964|25965|25971|25975", + "text": "Granulomatous disease, chronic, X-linked, variant" + }, + { + "baseId": "25961|25962|25965|25966|25967|25968|25969|25970|25972|25973|25976|25977|25978|25979|44631|44632|44633|44634|44635|44636|44637|44638|44639|44640|79259|79263|79276|79277|79282|79303|79306|205028|260316|265008|360631|413820|470778|488042|534791|534794|534858|534859|534950|535161|535162|572471|573846|573852|574724|574726|612122|614507|614507|621692|650029|650030|650031|650032|650033|650034|650035|653677|653784|717787|729577|729578|743305|743306|743307|758475|771138|774012|774013|774015|774016|774018|774019|774020|786818|788371|792433|818401|821779|821780|821781|821782|821783|850017|850018|850019|850020|850021|850022|850023|850024|850025|850026|850027|851968|852515|917368|929719|929720|929721|929722|939584|939585|939586|951773|951774|951775|951776|951777|951778|951779|959284|959285|959286|959287|959288", + "text": "Chronic granulomatous disease, X-linked" + }, + { + "baseId": "25980|25981|25982|25983|25984|25985|25986|25987", + "text": "Deficiency of glycerol kinase" + }, + { + "baseId": "25988|25989|25990|25991|25992|25993|25994|25995|25996|25997|25998|25999|26000|26002|26003|26004|26005|26006|26007|26008|26009|26010|26011|26012|26013|26014|26015|26016|45325|45326|70525|227422|227422|247501|390700|422461|422461|437712|437713|437714|437715|437716|437717|437718|437719|437720|437721|437722|437723|437724|437725|437726|437727|437728|437729|437730|437731|437732|437733|437734|471455|471847|472119|485815|485816|485817|485818|485818|485819|485820|485821|485822|485823|573780|578591|581824|581824|612339|694856|706207|821614|849921|849922|849923|951734|966573|969543|976813", + "text": "Congenital adrenal hypoplasia, X-linked" + }, + { + "baseId": "26001|227422|422461|471455|471847|472119|485818|573780|581824|694856|706207|821614|849921|849922|849923|951734", + "text": "46,XY sex reversal, type 2" + }, + { + "baseId": "26017", + "text": "Mineralocorticoid deficiency, isolated" + }, + { + "baseId": "26018|26019|26020|26021|26022|26023|26024|101208|101209|339343|339345|348882|535359|538314|552259|798816|805049|903069|903070|903071|903072|903478|920032|920033|965889|966028|971208|976688", + "text": "Renpenning syndrome 1" + }, + { + "baseId": "26019|79446|137063|137063|137064|137064|137065|137065|153138|165849|166182|166183|166184|166185|166186|166187|166188|166189|166190|166191|166192|178411|178412|178415|248477|263202|263224|263249|263280|263289|263363|263393|263410|264749|322495|360857|360877|360939|360957|362170|426751|439633|439634|439635|513964|514016|514079|514090|514099|514170|514173|514201|514214|536013|536014|550129|550226|610430|610540|610541|610542|623596|623599|623600|623601|623602|678050|679483|801216|802096|805068|858271|861048|861284|965459|984026|984027|984028|984029|984030|984031|984032|984033|984034|984035", + "text": "Delayed speech and language development" + }, + { + "baseId": "26019|263289|360889|360996", + "text": "Hyperactivity" + }, + { + "baseId": "26025|26026|26027|26028|26029|26030|26031|26032|26033|26035|26037|26038|26039|26040|26041|26042|26045|26046|26047|26048|26049|26050|26051|26052|26053|99127|99130|102992|102996|102999|103004|103006|103009|103010|103014|103028|103044|103050|103051|103054|103066|103067|103082|103084|103088|103090|103108|103119|103120|103129|103144|103147|103159|103162|103166|103167|103176|103191|103194|103205|103225|103229|103242|103257|103258|103263|103264|135313|171249|200389|213950|237753|257833|257835|339172|339179|348725|348727|352221|352224|352226|352227|379267|424256|446640|446643|480410|480413|480414|480415|480416|480536|488051|508255|508256|512654|514136|534860|534957|534965|535165|572127|572472|572475|573855|575304|580777|612172|650039|670077|694876|743309|743310|758478|774025|788361|792446|792447|792448|792449|821501|821787|821788|821789|850033|850034|850035|850036|850037|850038|853041|858480|858481|858482|858483|858487|858488|858489|858490|858491|858492|858493|858494|858495|858496|858497|858498|858772|903034|903035|903036|903474|903697|903698|903699|917369|920017|921447|921529|929724|929725|939587|939588|939589|939590|939591|951781|951782|951783|951784|959292|959293|959294|959295", + "text": "Ornithine carbamoyltransferase deficiency" + }, + { + "baseId": "26033", + "text": "ORNITHINE TRANSCARBAMYLASE POLYMORPHISM" + }, + { + "baseId": "26055|26056|26057|26058|26059|26060|26061|99573|99574|99575|99576|99577|99578|99579|99581|99582|99583|142293|142294|142296|142299|142300|142301|142303|142304|169839|169840|169841|169842|169843|169844|169845|169846|169847|177303|190356|190361|190362|195290|203869|203872|203874|203875|203876|203879|203880|203886|203887|203891|203892|203897|203902|203905|203907|203911|203912|203913|203915|203917|203919|203921|203922|203923|203925|203926|203932|203939|203950|208821|208822|213663|271364|271785|361419|377638|377640|377645|378778|378882|404007|404010|404011|404037|404042|404418|404419|404452|404458|411060|413846|415727|438970|439889|442357|442358|446438|446440|446441|446447|470389|470436|470437|471206|471207|471208|471210|471655|471657|472032|472033|472034|472035|472036|472037|472038|472039|495779|507637|507726|508457|534371|534405|534410|534414|534418|534422|534441|534444|534450|534451|534560|534561|534565|534955|534960|534963|538624|552236|552237|572128|572130|572133|572135|572137|572148|572149|573488|573492|573497|573500|574221|574230|574231|575306|575307|575308|575309|575310|575311|575312|580592|580706|580711|580724|580730|580852|580855|610524|611437|614495|614496|623168|625826|649562|649563|649564|649565|649566|649567|649568|649569|649570|649571|649572|649573|649574|649575|649576|649577|649578|649578|649579|649580|649581|649582|649583|649584|649585|649586|649587|649588|653428|653429|653485|653632|653734|653771|680059|684924|689296|689300|689301|694757|694759|758195|773651|773655|789135|792085|792086|792087|792088|792089|792090|792091|792092|792093|792094|792095|792096|792097|794343|794344|794345|794346|794348|794349|794351|794352|802039|802040|802041|806145|821534|821535|821536|821537|821538|849469|849470|849471|849472|849473|849474|849475|849476|849477|849478|849479|849480|849481|849482|849483|849484|849485|849486|849487|849488|849489|849490|849491|849492|849493|849494|849495|849496|849497|849498|849499|849500|849501|849502|849503|849504|849505|852951|852952|852953|858358|858359|858360|858361|858362|858363|858364|858365|858515|917737|919963|919964|929514|929515|929516|929517|929518|929519|929520|929521|929522|929523|929524|929525|939369|939370|939371|939372|939373|939374|939375|939376|939377|939378|939379|939380|951538|951539|951540|951541|951542|951543|951544|951545|951546|951547|951548|951549|951550|951551|951552|951553|951554|951555|951556|951557|959138|959139|959140|959141|959142|959143|959144|959145|962866|963942|964559|964560|964561|964562|964563|965747|969568|971167", + "text": "Early infantile epileptic encephalopathy 9" + }, + { + "baseId": "26062|26063|26064|26065|26066|26067|102525|102527|102528|102531|102532|102533|102538|135215|135219|135220|135221|135223|177176|177308|188072|193759|195450|195455|208983|208987|227708|362596|430751|430753|470640|470642|470647|471426|471608|472111|534359|534679|534771|572367|573752|575279|575375|580756|580885|611936|649895|706184|729529|743266|758409|792183|821571|849847|849848|849849|849850|959215", + "text": "Nance-Horan syndrome" + }, + { + "baseId": "26068|26069|177308|208983|919997", + "text": "Cataract 40" + }, + { + "baseId": "26070|26070|26071|26072|26073|26074|26074|26075|26076|26077|26078|26079|26080|26081|26082|26085|26086|26087|40564|48190|53352|53354|53355|53357|53358|53359|53360|53361|53362|53363|53364|53365|53366|53367|53369|53370|53371|53372|53376|53377|53378|53380|53382|53383|176310|176311|176312|176324|176325|176327|176328|176330|176432|176433|176434|176435|176445|176446|176447|176448|176450|176451|176452|231286|231287|231289|231291|231292|231292|231293|231294|231296|247465|247466|247467|257866|260338|260340|379504|380105|411448|422942|446737|470380|470433|470922|470927|471201|471669|471956|471957|471958|471959|471960|472186|472187|534391|534513|534909|534912|534933|534936|534942|535048|535053|535054|535055|573965|573970|574827|574868|574869|574870|574871|574874|574875|575440|575441|610258|612124|650159|650160|650161|650162|650163|650164|650165|653369|653372|653469|653539|653678|653718|653770|679215|689535|689536|694917|706295|706296|706297|706298|758620|774175|774177|792491|792492|798820|821794|821795|850219|850220|850221|850222|850223|853044|853045|929796|939661|941314|951864|951865|951866|959333|980108|980109", + "text": "Hypohidrotic X-linked ectodermal dysplasia" + }, + { + "baseId": "26070|26074|26083|26084|26087|132579|231292|247464|247465|247466|613835", + "text": "Tooth agenesis, selective, X-linked, 1" + }, + { + "baseId": "26088|38923|133899|133900|226995|269241|271358|378527|379337|379342|379350|379477|379488|424678|426483|430872|446726|470882|470894|471649|471651|471652|472168|472169|472170|486788|492992|508686|534887|534888|534890|534924|535714|572553|573940|573941|573945|574815|574817|575435|575436|575437|581020|581102|650132|650133|650134|650135|650136|650137|650138|650139|650140|653792|653907|689533|690277|743428|743429|792485|792611|802053|802067|822232|822233|850202|850203|850204|850205|850206|850207|920048|929788|929789|929790|939654|939655|940567|941313|959329|963193|964628|976689|980510", + "text": "Early infantile epileptic encephalopathy 8" + }, + { + "baseId": "26089|268952", + "text": "Asperger syndrome X-linked 2" + }, + { + "baseId": "26089|26090|26091|101876|268952|361250|552264|818377|964627", + "text": "Autism, susceptibility to, X-linked 2" + }, + { + "baseId": "26090|26091|166020|208879|338922|339091|339605|339609|339610|339629|348476|348494|348655|348674|348817|348863|349099|349107|349108|349119|349120|351947|352171|352188|352269|352272|352278|352459|352464|352714|352758|352761|352762|352811|352823|352824|352856|352881|352954|352964|352967|352968|352969|352975|352976|352978|352979|353861|353865|353868|430619|486700|970102|972842|973005", + "text": "Non-syndromic X-linked intellectual disability" + }, + { + "baseId": "26102|26103|26104|26105|26106|26107|26108|26109|26110|26111|102115|135332|135333|138770|143192|215102|244000|361966|431931|481264|481443|585634|612169|792589|849662|920436|951615|964699|971180", + "text": "Borjeson-Forssman-Lehmann syndrome" + }, + { + "baseId": "26112|26113|26114|26115|26116|26117|26118|26119|26120|26121|26125|26132|26133|26135|26138|205797|208829|222879|384416|404041|425233|488162|495615|535711|538274|552238|552239|552240|612344|614612|623125|792104|792105|804833|804911|804912|804913|919966|919967", + "text": "Pelizaeus-Merzbacher disease" + }, + { + "baseId": "26122|26130", + "text": "Pelizaeus-Merzbacher disease, connatal" + }, + { + "baseId": "26123|26124|26128|26129|26131|26137|99139|99142|135421|222879|222880|262412|274662|404041|404041|404425|404473|424601|471675|471677|481448|534374|534434|534442|552238|552240|572164|573518|649623|649624|653272|653727|653772|679570|679572|806147|821474|849542|929538|939393|939394|941284|960354", + "text": "Hereditary spastic paraplegia 2" + }, + { + "baseId": "26126|26127", + "text": "Pelizaeus-Merzbacher disease, mild" + }, + { + "baseId": "26129|26136", + "text": "Pelizaeus-Merzbacher disease, atypical" + }, + { + "baseId": "26139|26140|26141|26142|26143|26144|26145|26146|26147|26148|26149|26150|26151|44181|45455|51424|51425|51426|51427|51429|51431|51434|51435|51440|143091|143093|176309|176911|178190|178191|178197|178206|198557|198559|198560|198561|222884|224586|232152|243780|243781|243782|339057|348271|352158|352159|352160|352795|352796|352797|404498|404531|411200|415753|424452|424569|427120|446585|470627|471415|472106|481484|508958|508959|534659|534750|534757|534759|551752|573735|574373|575372|575373|649883|649884|649885|649886|649887|649888|649889|649890|649891|649892|653360|653450|653507|653703|679552|684977|689437|694843|798809|849833|849834|849835|849836|849837|849838|849839|849840|852477|852480|852971|853033|902885|902886|902887|902888|902889|902890|902891|903462|929630|929631|929632|941290|951686|951687|960370|980973", + "text": "3-Methylglutaconic aciduria type 2" + }, + { + "baseId": "26152|26153|26154|26154|26158|26159|26160|26162|26163|26167|26168|26169|26170|26171|26171|26172|26173|26174|38922|45569|45570|45571|45572|45572|45573|45574|139149|139150|139152|139153|139153|193420|209070|257843|257844|260329|272093|360647|360647|380065|380066|411388|411388|438442|446680|471605|487893|487984|488052|488054|488054|534824|534891|535002|535004|535176|539188|572504|572507|572514|573887|573889|574738|574741|575421|575422|575423|575424|621694|626360|626361|626362|626363|650078|650079|650080|650081|650082|650083|650084|650085|650086|650087|653787|653788|653789|685015|685016|689515|689516|689517|689518|743358|786849|821506|821507|821509|822226|822334|822335|850091|850092|850093|850094|850095|850096|850097|850098|850099|850100|850101|850102|850103|850104|858661|917576|929746|929747|929748|929749|929750|929751|929752|939609|939610|939611|951813|951814|951815|959310|959311|965873", + "text": "Wiskott-Aldrich syndrome" + }, + { + "baseId": "26154|26162|26164|26171|38921|38922|38922|45569|45570|45572|45573|139149|139150|139152|139152|139153|193420|209070|231093|257843|257844|260329|272093|360647|380066|411388|438442|446680|446681|471605|488054|534824|534891|535002|535004|535176|572504|572507|572514|573887|573889|574738|574741|575421|575422|575423|575424|650078|650079|650080|650081|650082|650083|650084|650085|650086|650087|653787|653788|653789|685015|685016|689515|689516|689517|689518|743358|786849|792462|792463|821506|821507|821509|822226|850091|850092|850093|850094|850095|850096|850097|850098|850099|850100|850101|850102|850103|850104|929746|929747|929748|929749|929750|929751|929752|939609|939610|939611|951813|951814|951815|959310|959311|971207|980208", + "text": "X-linked severe congenital neutropenia" + }, + { + "baseId": "26154|26155|26156|26157|26162|26162|26168|26171|38922|45569|45570|45572|45573|45573|139149|139150|139152|139153|193420|209070|257843|257844|260329|260329|272093|360647|380066|411388|438442|446680|471605|487890|488054|488054|534824|534891|535002|535004|535176|572504|572507|572514|573887|573889|574738|574741|575421|575422|575423|575424|650078|650079|650080|650081|650082|650083|650084|650085|650086|650087|653787|653788|653789|685015|685016|689515|689516|689517|689518|743358|786849|818375|821506|821507|821509|822226|850091|850092|850093|850094|850095|850096|850097|850098|850099|850100|850101|850102|850103|850104|929746|929747|929748|929749|929750|929751|929752|939609|939610|939611|951813|951814|951815|959310|959311", + "text": "X-linked thrombocytopenia with normal platelets" + }, + { + "baseId": "26161", + "text": "Wiskott-Aldrich syndrome, attenuated" + }, + { + "baseId": "26165|26166", + "text": "Thrombocytopenia, X-linked, intermittent" + }, + { + "baseId": "26175|26176|26177|26178|26179|26180|26181|26182|26183|26184|26185", + "text": "Amelogenesis imperfecta, type 1E" + }, + { + "baseId": "26186", + "text": "Choroideremia, Salla type" + }, + { + "baseId": "26187|26188|26189|26190|26191|26192|26193|26195|48408|70863|104603|152796|187074|195885|265129|269993|274635|354188|358694|380133|434442|446803|623370|623371|623779|689584|689585|694963|694964|694966|694968|695913|695914|717876|786939|792514|792515|792516|792517|800325|800661|800662|800663|800709|801497|801498|801499|801500|801501|850345|920074|959378|980122|980123|980124|980125", + "text": "Choroideremia" + }, + { + "baseId": "26196|26198|26199|26200|26201|26202|26203|26204|26205|26206|26207|26208|26209|44475|44476|44477|44478|271617|378901|424451|433402|472066|508948|508949|534547|534636|534871|535049|573597|574313|574314|574317|574319|621678|621878|624712|649724|649725|649726|649727|649728|653301|653378|653494|729427|743160|758303|758305|773777|786708|818400|821561|849675|849676|849677|849678|849679|849680|849681|849682|849683|939451|939452|939453|951623|951624|951625|964569|972613", + "text": "Hyper-IgM syndrome type 1" + }, + { + "baseId": "26210|26211|26212|26213|26214|26215|26216|26217|26218|26219|44694|51441|51442|51443|51444|51446|51448|98350|176796|178262|178291|195204|198541|198543|198545|198546|198549|198550|198551|224585|231344|231345|236821|236822|243723|243778|243779|264819|265324|269284|269369|270689|273723|274394|274742|274863|377994|379996|404179|404492|411198|415752|426729|426731|426732|426734|426737|438475|442404|471411|471836|472104|472105|489682|490413|492103|534655|534658|534737|534740|534763|535110|535112|535113|573442|573733|574371|575278|608976|609159|621689|649878|649879|649880|649881|649882|653353|653729|653731|656755|684976|689435|689436|694842|758387|758388|773911|773913|773914|786753|786754|792171|821488|821493|849825|849826|849827|849828|849829|849830|849831|849832|852474|853032|929628|929629|939502|939503|939504|951684|951685|959205|959206|959207|959208|963192", + "text": "Emery-Dreifuss muscular dystrophy 1, X-linked" + }, + { + "baseId": "26220|26222|26223|961991", + "text": "Properdin deficiency, X-linked" + }, + { + "baseId": "26221", + "text": "Properdin deficiency, type II" + }, + { + "baseId": "26224", + "text": "Properdin deficiency, type III" + }, + { + "baseId": "26225|26229|26231|26232|26233|26234|26236|26244|102349|167588|167589|167592|167594|167596|167604|167607|167613|209010|209011|209012|209013|209014|209017|209018|209022|209024|209026|209312|232150|271260|430771|573774|676972|983472", + "text": "Lissencephaly 2, X-linked" + }, + { + "baseId": "26225|26226|26226|26233|26237|26238|26238|102345|102347|102348|102348|102349|102350|140124|166526|167591|167601|167602|167603|167606|167608|167610|192561|192562|192564|194533|209009|209021|209024|209028|225842|232150|237434|243787|272619|364009|378138|379290|379292|404176|404510|404513|404534|404534|404535|411306|430770|470657|470658|471843|471844|472116|472117|472118|508145|508522|512648|534398|534701|534706|534707|534789|534792|534801|534806|535127|535128|572392|572394|573773|573774|573774|573776|574494|574525|575383|575384|580902|580943|586384|609301|614670|649936|649937|649938|649939|649940|649941|649942|649943|649944|649945|649946|653385|653637|689455|689457|689459|690269|773967|806383|806383|822223|849914|849915|849916|849917|849918|860837|917753|929675|929676|929677|929678|929679|929680|929681|939544|939545|939546|951723|951724|951725|951726|951727|951728|951729|951730|951731|951732|951733|959236|959237|977301", + "text": "Mental retardation, with or without seizures, ARX-related, X-linked" + }, + { + "baseId": "26226|232150|573774|806383", + "text": "Partington syndrome" + }, + { + "baseId": "26239|232150|573774|806383", + "text": "Corpus callosum agenesis-abnormal genitalia syndrome" + }, + { + "baseId": "26240|430769", + "text": "Hydranencephaly with abnormal genitalia" + }, + { + "baseId": "26246|26248|26249|26250|26251|26252|26253|26254|26255|26256|26257|26258|26259|26260|26261|26262|26263|26264|26267|26268|26271|26272|26273|26276|26278|26279|26281|26282|26283|26284|26286|26288|26289|26290|26291|26292|26293|26294|26295|26296|26297|26298|26299|26300|26301|26302|26303|26304|26305|26306|26307|26308|26309|26310|26311|26312|26314|26317|26321|26322|26323|26325|26327|26327|26329|38917|93070|100321|100328|100328|100333|100340|100344|100346|100347|100349|100350|100353|100354|100357|100361|100362|100364|100369|100370|100371|100372|100373|100375|100376|100376|100378|100380|100381|100382|100386|100387|100394|100398|100400|100403|100404|100409|100410|100411|100412|100413|100416|100418|100423|100424|100426|100430|100431|100432|100434|100437|100439|100441|100445|100448|100450|100451|100454|100476|100476|100479|100484|100487|100488|100489|100490|100497|100498|100500|100503|100504|100508|100511|100513|100515|100516|100518|100519|100522|100523|100527|100530|100532|100537|100538|100542|100544|100546|100548|100550|100554|100555|100556|100557|100558|100559|100569|100574|100575|100577|100579|100581|100583|100584|100587|100590|100597|100602|100603|100605|100641|100641|100642|100647|100649|100654|100655|100656|100657|100663|100664|100665|100668|100671|100672|100673|100676|100676|100678|100683|100684|100685|100697|100703|100705|100706|100707|100709|100710|100716|100717|100719|100737|100739|100741|100744|100749|100756|100761|100761|100763|100765|133080|140808|140808|140809|140809|140820|140820|165533|171246|171247|171248|172184|175867|177047|177179|177179|177310|177442|177478|177498|177527|177586|177591|177592|178764|189047|190428|190826|191547|191904|192007|192113|192114|192653|192654|192655|192760|192912|192913|192979|193039|193288|193535|194057|194238|194575|194683|194706|194771|195073|195097|195112|195129|195140|195142|195153|195172|195463|195480|195522|195663|195799|195948|198564|198566|198568|198570|198571|198572|198573|198573|198575|198576|198577|198578|198582|198583|198585|198586|198589|198591|198593|198594|198595|209031|213665|213840|213841|213842|213843|213844|213845|213846|213847|213848|213849|213850|213851|213852|213853|213854|213855|213856|213857|213858|213859|213860|213861|213862|213863|213864|213865|213866|213867|213868|213869|213870|213871|213872|213873|213874|213875|213876|213877|213878|213880|213881|213882|213883|213884|213885|213886|213887|213888|224592|226492|226493|227452|231252|231256|231259|231260|231261|231263|231264|231268|231269|231270|231271|231273|231274|231275|231276|231280|243788|243789|243790|243790|243791|243792|243793|243794|243796|243797|243798|243799|243800|243801|243802|243803|243804|243805|243806|243807|248539|248541|248542|248543|257810|257811|257812|257813|257814|259052|259175|259176|259177|259180|259182|259183|259185|259186|259188|259190|259192|259198|260861|262414|265495|265659|265672|265724|265957|266063|266198|266208|266547|266626|266724|266735|266735|266769|266835|267078|267117|267510|267583|267962|268182|268193|268525|268690|268694|268880|268949|268954|268969|269184|269215|269255|269364|269378|269432|269452|269456|269530|269576|269587|269589|269952|270203|270216|270394|270419|270481|270685|270822|270951|271065|271146|271162|271164|271222|271262|271461|272052|272154|272683|272743|272863|272962|273029|273059|273096|273160|273165|273352|273367|273471|273758|273824|273825|273828|273828|273829|273990|274377|274381|274397|274420|274437|274443|274544|274569|274682|274793|274841|274851|274866|275146|275162|275277|275354|275358|275407|275410|339159|339160|339167|348715|352209|360607|360687|361092|361092|361094|361242|361267|361273|361339|361890|361891|378221|378245|378251|378257|378276|378281|379228|379234|379237|379243|379247|379249|379258|379346|379352|379358|379360|379373|380035|380040|380041|380042|380046|380047|380049|380052|403991|403992|403993|403995|403997|404000|404023|404029|404033|404035|404183|404184|404189|404193|404195|404197|404198|404200|404207|404209|404214|404218|404222|404223|404224|404225|404228|404229|404231|404232|404233|404237|404239|404240|404245|404247|404248|404250|404256|404261|404273|404274|404277|404281|404291|404293|404399|404401|404404|404406|404408|404411|404413|404414|404415|404416|404426|404428|404430|404433|404438|404440|404446|404449|404450|404521|404522|404523|404525|404530|404532|404533|404536|404538|404539|404541|404542|404543|404544|404545|404546|404547|404548|404548|404549|404550|404552|404553|404554|404555|404557|404558|404559|404560|404561|404562|404563|404564|404565|404566|404567|404568|404569|404570|404571|404572|404574|404576|411313|411320|415775|415776|415778|422462|422463|422467|424372|433327|433328|434711|438436|442414|442415|442418|442426|442428|442429|442481|446623|446625|446628|446631|470397|470398|470400|470406|470409|470410|470414|470420|470424|470662|470669|470679|470684|470690|470693|470701|470719|470723|470727|470737|470740|470740|470743|470744|470748|470752|470754|470759|470761|470765|470768|470769|470771|470774|470776|471160|471161|471163|471169|471172|471174|471180|471181|471182|471183|471190|471191|471196|471457|471458|471464|471466|471470|471474|471479|471482|471483|471487|471491|471492|471494|471503|471508|471510|471512|471514|471519|471520|471521|471524|471525|471529|471533|471534|471536|471537|471540|471544|471611|471613|471615|471619|471621|471622|471624|471641|471642|471647|471848|471849|471851|471852|471853|471854|471855|471856|471857|471858|471862|471863|471865|471866|471867|471868|471869|471870|471871|471872|471992|471995|471996|472003|472004|472005|472008|472010|472014|472021|472022|472024|472026|472027|472028|472029|472120|472121|472122|472123|472124|472125|472126|472127|472128|472129|472130|472131|472132|472133|472134|472135|472136|472137|472138|472139|472140|472141|472142|472143|472144|485824|485825|485826|485827|486474|486668|488102|488571|488590|488596|488598|488725|488912|488925|488942|488979|489090|489643|489759|489761|489776|489778|489989|490012|490612|490721|490725|491095|491292|491392|491398|491725|492088|492233|492519|492642|492762|493022|493182|493196|493228|493245|493572|493865|508080|508197|508224|508533|508538|508548|508650|508658|508665|510933|510938|510939|510940|510943|510944|510945|510946|510949|510950|510952|510955|510957|510958|510959|510960|511143|511143|513225|513394|534376|534378|534381|534383|534386|534389|534392|534399|534400|534401|534404|534407|534415|534417|534423|534426|534435|534437|534538|534545|534549|534551|534553|534555|534557|534558|534720|534721|534735|534738|534742|534753|534755|534758|534760|534761|534762|534768|534774|534776|534779|534780|534781|534788|534790|534795|534797|534800|534802|534803|534804|534805|534808|534813|534814|534815|534817|534819|534821|534825|534827|534828|534830|534832|534833|534838|534840|534842|534843|534845|534846|534848|534853|534865|534867|534873|534875|534877|534878|534879|534880|534884|534885|534893|534895|534896|534898|534900|534903|534906|534908|534914|534916|534919|534920|534922|534926|534928|534930|534934|534941|534943|535129|535130|535131|535132|535133|535135|535136|535137|535138|535139|535140|535141|535142|535143|535144|535145|535146|535148|535149|535150|535151|535152|535153|535154|535155|535156|535157|535158|535159|535160|537049|550778|572086|572091|572098|572101|572102|572107|572108|572111|572118|572124|572125|572398|572399|572407|572414|572417|572419|572421|572426|572432|572433|572436|572437|572440|572441|572443|572445|572451|572454|572464|573446|573449|573450|573451|573460|573464|573465|573468|573469|573471|573475|573476|573479|573486|573781|573784|573785|573789|573791|573792|573796|573797|573799|573800|573804|573805|573807|573816|573818|573823|573825|573826|573828|573829|573832|573833|573837|574195|574197|574199|574201|574203|574205|574207|574208|574211|574213|574218|574219|574527|574529|574531|574623|574625|574627|574628|574630|574632|574634|574636|574638|574640|574640|574643|574644|574714|574716|574719|574721|575286|575287|575288|575289|575291|575292|575293|575294|575295|575296|575297|575298|575299|575300|575301|575302|575303|575385|575386|575387|575388|575389|575390|575391|575392|575393|575394|575395|575396|575397|575398|575399|575400|575401|575402|575403|575404|575405|575406|575407|575408|575409|575410|577960|577963|578592|581847|583665|584095|584295|584391|584545|584786|585203|585311|585312|585686|586147|586214|586215|586583|586584|586615|586970|587754|587906|588113|588159|588212|588224|589170|589254|589440|589742|608932|610238|610246|611449|611943|613948|614092|614093|626382|649948|649949|649950|649951|649952|649953|649954|649954|649955|649956|649957|649958|649959|649960|649961|649962|649963|649964|649965|649966|649967|649968|649969|649970|649971|649972|649973|649974|649975|649976|649977|649978|649979|649980|649981|649982|649983|649984|649985|649986|649987|649988|649989|649990|649991|649992|649993|649994|649995|649996|649997|649998|649999|650000|650001|650002|650003|650004|650005|650006|650007|650008|650009|650010|650011|650012|650013|650014|650015|650016|650017|650018|650019|650020|650021|650022|650023|650024|650025|650026|650027|650028|653315|653320|653321|653324|653328|653329|653334|653337|653339|653342|653349|653350|653355|653357|653359|653366|653368|653370|653383|653387|653390|653392|653393|653394|653396|653399|653404|653405|653407|653409|653411|653412|653413|653415|653419|653420|653426|653436|653437|653439|653440|653443|653446|653448|653452|653454|653456|653459|653512|653514|653519|653520|653523|653641|653642|653648|653649|653651|653652|653656|653658|653659|653663|653664|653665|653668|653670|653673|653675|653704|653706|653710|653712|653713|653714|653716|653739|653740|653741|653742|653743|653744|653745|653746|653747|653748|653749|653750|653751|653752|653753|653754|653755|653756|653757|653758|653759|653760|653761|653762|653763|653764|653765|653766|653767|653768|653783|654968|656766|656772|684983|684985|684986|684987|684988|684989|689460|689461|689462|689463|689464|689465|689466|689468|689469|689472|689474|689476|689477|689478|689479|689482|689483|689484|689485|689488|690271|690272|690273|690275|694861|694862|694865|694866|694867|694868|694869|694870|694871|694872|694874|706210|706211|717779|729566|731466|743296|743298|743300|743300|743301|758454|758455|758458|758460|758461|758462|758463|758464|758465|758467|758468|760857|760858|760863|760881|773976|773977|773979|773980|773988|773994|773995|774002|774005|774006|774007|776797|776970|776971|786794|786798|786799|786802|786805|786807|786809|786810|786811|786814|792254|792255|792256|792257|792258|792259|792260|792261|792262|792263|792264|792265|792266|792267|792268|792269|792270|792271|792272|792273|792274|792275|792276|792277|792278|792279|792280|792281|792282|792283|792284|792285|792286|792287|792288|792289|792290|792291|792292|792293|792294|792295|792296|792297|792298|792299|792300|792301|792302|792303|792304|792305|792306|792307|792308|792309|792310|792311|792312|792313|792314|792315|792316|792317|792318|792319|792320|792321|792322|792323|792324|792325|792326|792327|792328|792329|792329|792330|792331|792332|792333|792334|792335|792336|792336|792337|792338|792339|792340|792341|792342|792343|792344|792345|792346|792347|792348|792349|792350|792351|792352|792353|792354|792355|792356|792357|792358|792359|792360|792361|792362|792363|792364|792365|792366|792367|792368|792369|792370|792371|792372|792373|792374|792375|792376|792377|792378|792379|792380|792381|792382|792383|792384|792385|792386|792387|792388|792389|792390|792391|792392|792393|792394|792395|792396|792397|792398|792399|792400|792401|792402|792403|792404|792405|792406|792407|792408|792409|792410|792411|792412|792413|792414|792415|792416|792417|792418|792419|792420|792421|792422|792423|792424|792425|792426|792427|792428|792429|792430|792431|792432|792688|793884|794087|800307|800308|801745|801746|801747|801748|802242|806200|816418|816418|816419|816419|816420|816432|821615|821616|821617|821618|821619|821620|821621|821622|821623|821624|821625|821626|821627|821628|821629|821630|821631|821632|821633|821634|821635|821636|821637|821638|821639|821641|821642|821643|821644|821645|821646|821647|821648|821649|821650|821651|821652|821653|821654|821655|821656|821657|821658|821659|821660|821661|821662|821663|821664|821665|821666|821667|821668|821669|821670|821671|821672|821673|821674|821675|821676|821677|821678|821679|821680|821681|821682|821683|821684|821685|821686|821687|821688|821689|821690|821691|821692|821693|821694|821695|821696|821697|821698|821699|821700|821701|821702|821703|821704|821705|821706|821707|821708|821709|821710|821711|821712|821713|821714|821715|821716|821717|821718|821719|821720|821721|821722|821723|821724|821725|821726|821727|821728|821729|821730|821731|821732|821733|821734|821735|821736|821737|821738|821739|821740|821741|821742|821743|821744|821745|821747|821748|821749|821750|821751|821752|821753|821754|821755|821756|821757|821758|821759|821760|821761|821762|821763|821764|821765|821766|821767|821768|821769|821770|821771|821772|821773|821775|821776|821777|821778|849924|849925|849926|849927|849928|849929|849930|849931|849932|849933|849934|849935|849936|849937|849938|849939|849940|849941|849942|849943|849944|849945|849946|849947|849948|849949|849950|849951|849952|849953|849954|849955|849956|849957|849958|849959|849960|849961|849962|849963|849964|849965|849966|849967|849968|849969|849970|849971|849972|849973|849974|849975|849976|849977|849978|849979|849980|849981|849982|849983|849984|849985|849986|849987|849988|849989|849990|849991|849992|849993|849994|849995|849996|849997|849998|849999|850000|850001|850002|850003|850004|850005|850006|850007|850008|850009|850010|850011|850012|850013|850014|850015|850016|851958|851960|851962|851964|851966|852495|852497|852500|852503|852507|852509|852513|852976|852978|853038|853039|853040|858450|858756|903018|903023|905736|905810|905811|929682|929683|929684|929685|929686|929687|929688|929689|929690|929691|929692|929693|929694|929695|929696|929697|929698|929699|929700|929701|929702|929703|929704|929705|929706|929707|929708|929709|929710|929711|929712|929713|929714|929715|929716|929717|929718|939547|939548|939549|939550|939551|939552|939553|939554|939555|939556|939557|939558|939559|939560|939561|939562|939563|939564|939565|939566|939567|939568|939569|939570|939571|939572|939573|939574|939575|939576|939577|939578|939579|939579|939580|939581|939582|939583|940559|940560|941304|941305|941306|941307|941308|941309|941310|951735|951736|951737|951738|951739|951740|951741|951742|951743|951744|951745|951746|951747|951748|951749|951750|951751|951752|951753|951754|951755|951756|951757|951758|951759|951760|951761|951762|951763|951764|951765|951766|951767|951768|951769|951770|951771|951772|959238|959239|959240|959241|959242|959243|959244|959245|959246|959247|959248|959249|959250|959251|959252|959253|959254|959255|959256|959257|959258|959259|959260|959261|959262|959263|959264|959265|959266|959267|959268|959269|959270|959271|959272|959273|959274|959275|959276|959277|959278|959279|959280|959281|959282|960379|960380|960381|960382|960982|960983|960984|960985|960986|961398|961902|963398|964605|964606|970147|970409|971203|971204|972405|972406|972407|972408|972409|972410|972411|972412|972413|972414|972415|972416|972417|972418|972419|972420|972421|972422|972423|972424|972425|972426|972427|972428|972429|972430|972431|972432|972433|972434|972435|972436|972437|972438|972511|972512|972523|972524|972525|972526|972762|972763|972764|972765|972766|972767|972768|974567|977315", + "text": "Duchenne muscular dystrophy" + }, + { + "baseId": "26247|26330|488359", + "text": "Becker muscular dystrophy, atypical" + }, + { + "baseId": "26252|26265|26266|26269|26276|26280|26287|26308|26315|26316|26319|26322|26325|26327|38917|100328|100376|100476|100484|100641|100657|100663|100676|100683|100705|100761|100763|140808|140808|140809|140820|171247|171248|172184|175867|177179|190826|192114|193039|198573|227452|243790|259052|266735|268525|273828|361092|361267|361273|361890|361891|404548|434711|470740|470754|471519|485824|485825|485826|485827|488725|492088|511143|513395|535156|550770|550778|574640|588159|611449|613947|649954|743300|792329|792336|801559|816418|816419|816420|816432|939579|961398|964604|972405|972406|972407|972408|972409|972410|972411|972412|972413|972414|972415|972416|972417|972418|972419|972420|972421|972422|972423|972424|972425|972426|972427|972428|972429|972430|972431|972432|972433|972434|972435|972436|972437|972438", + "text": "Becker muscular dystrophy" + }, + { + "baseId": "26270|26306|26307|26308|26318|26320|26321|26324|26327|38917|100296|100319|100322|100328|100333|100336|100346|100353|100361|100367|100371|100373|100376|100382|100387|100394|100395|100410|100413|100416|100424|100428|100439|100448|100454|100476|100487|100500|100503|100504|100515|100516|100517|100518|100532|100537|100542|100548|100556|100557|100558|100574|100575|100579|100583|100602|100603|100641|100642|100647|100656|100657|100657|100665|100667|100671|100676|100683|100684|100705|100709|100716|100744|100754|171247|172184|175867|177179|177586|189047|190826|191904|192008|192114|192653|193039|193288|195522|198564|198572|198573|198582|198589|198591|198593|227852|231251|243790|243791|243795|243801|257810|259052|259180|266198|266626|266724|266740|268949|268969|269184|269255|269456|269576|269952|270216|273824|273828|274569|274769|339148|339149|339150|339152|339153|339159|339160|339164|339167|348271|348676|348677|348683|348684|348687|348688|348694|348695|348701|348702|348704|348706|348708|348709|348710|348715|348716|348717|348718|348724|352198|352199|352200|352201|352202|352203|352204|352205|352206|352207|352209|352218|352220|352831|352832|352833|352834|352835|352836|352837|352838|352839|352840|352841|352842|352843|352844|352845|361092|361095|361096|361890|361891|378257|378274|404223|404247|404548|470740|470754|471508|471854|508085|508551|510939|510940|511143|514135|534733|534880|538509|550778|572451|574640|611449|649974|649978|677126|689472|689476|689483|694861|694871|706211|758468|902999|903000|903001|903002|903003|903004|903005|903006|903007|903008|903009|903010|903011|903012|903013|903014|903015|903016|903017|903018|903019|903020|903021|903022|903023|903024|903025|903026|903027|903028|903029|903030|903031|903032|903033|903472|903473|920009|920010|920011|920012|920013|920448|920449", + "text": "Dilated cardiomyopathy 3B" + }, + { + "baseId": "26275", + "text": "Duchenne muscular dystrophy, mental retardation, and absence of erg b-wave" + }, + { + "baseId": "26277|26285|26313", + "text": "Intermediate muscular dystrophy" + }, + { + "baseId": "26312", + "text": "X-linked DMD-related dystrophinopathy" + }, + { + "baseId": "26331|26332|26333|26335|26336|26337|26338|26339|26340|26341|26342|26343|26344|26345|26346|26347|26348|26349|26351|26352|26353|26354|26355|26356|44302|44303|44304|44305|44306|44307|44308|98224|98225|98226|98227|98228|98231|98232|98234|171860|177044|177307|177455|177456|190198|190199|194257|195849|215175|215617|215618|215619|215620|265573|266490|273515|275414|339010|339017|339024|339026|339030|339036|339037|339041|348580|348582|348583|348584|348587|348588|348591|348593|352105|352107|352108|352113|352114|352117|352118|352123|352124|352787|352788|352789|352790|352791|353864|353952|360538|363912|377878|378997|379086|379953|379954|379955|411157|415746|422426|422427|422428|430689|438468|438469|442393|470545|470547|470556|470564|470573|470574|470576|471350|471351|471354|471356|471792|471798|471802|471808|472082|472083|472084|472085|472086|472087|472260|481244|507926|508957|513481|513683|514125|534499|534587|534588|534597|534599|534629|534632|534649|534657|534667|534673|534675|534678|534682|534687|534689|535077|535079|535081|537590|549826|553405|572269|572278|572284|572292|572295|572300|573651|573654|573655|573666|574336|574337|574338|574345|574347|575354|575355|575356|575357|575358|576356|576357|576358|577937|577938|577940|580678|580835|580978|581916|610687|610689|612113|612114|612115|612116|612117|612118|612119|612120|614106|620698|623388|649771|649772|649773|649774|649775|649776|649777|649778|649779|649780|649781|649782|649783|649784|649785|649786|649787|649788|649789|649790|649791|649792|649793|649794|649795|649796|653308|653310|653348|653627|653695|653738|656741|677040|677042|677061|677063|679725|679726|679727|681814|682736|694817|694818|694819|694820|694821|694823|694824|695900|706146|706147|717705|729480|729481|729482|729484|743206|773862|773864|773865|773866|773867|773868|780091|786738|786741|792142|792143|792144|792145|792146|792147|792148|792149|792150|821487|821568|821569|821570|849731|849732|849733|849734|849735|849736|849737|849738|849739|849740|849741|849742|849743|849744|849745|849746|849747|849748|849749|849750|849751|849752|849753|849754|849755|849756|849757|849758|849759|849760|849761|849762|849763|849764|849765|851942|858542|858694|858716|860801|861087|861088|861126|902846|902847|902848|902849|902850|902851|902852|902853|902854|902855|902856|902857|902858|902859|902860|902861|902862|902863|902864|902865|902866|902867|902868|902869|902870|903461|919981|920440|929600|929601|929602|929603|929604|929605|929606|929607|929608|939471|939472|939473|939474|939475|939476|941287|951641|951642|951643|951644|951645|951646|951647|951648|951649|951650|951651|951652|959188|959189|960365|961415|962187|962912|964573|964574|964575|964576|964577|964578|969328|971586|980091|980092|980093|980094|983471|983568|983803", + "text": "Adrenoleukodystrophy" + }, + { + "baseId": "26349|26350", + "text": "Addison's disease" + }, + { + "baseId": "26357|26358|26359|26360|26361|26362|26363|26364|26365|34245|34246|792099|918496", + "text": "Deafness dystonia syndrome" + }, + { + "baseId": "26366", + "text": "Asperger syndrome X-linked 1" + }, + { + "baseId": "26366|920459", + "text": "Autism, susceptibility to, X-linked 1" + }, + { + "baseId": "26367|26368|26369|26370|26371|26372|26373|26374|26375", + "text": "Cleft palate with ankyloglossia" + }, + { + "baseId": "26376|339549|339550|339552|339558|339559|339561|349035|349041|349045|349047|352446|352447|352947|352948|352949|352950|352951|439183|717870|729719|743485|792511|903209|903210|903211|903212|903213|903214|903215|903484|903485|903486", + "text": "Cleft palate with or without ankyloglossia, X-linked" + }, + { + "baseId": "26377|26378|26379|191793|205357|205358|362397|411119|415736|439626|470456|470461|471241|495790|508486|514278|535007|535008|615948|649658|653901|729380|792117|849584|858584|951583|964567|976677", + "text": "Syndromic X-linked mental retardation, Cabezas type" + }, + { + "baseId": "26378|39226|49024|178380|181426|181431|181448|181453|203766|226235|226236|263192|263224|263257|263264|263284|263332|263344|263346|263360|263364|263405|263996|264749|360870|360912|361101|408757|513978|514048|514112|514124|514176|514199|514211|551271|551272|576328|590545|609036|609079|610516|610519|622034|622207|622834|623603|678949|905852|905853|905854|961035|971289|971411", + "text": "Abnormal facial shape" + }, + { + "baseId": "26381|26382|26383|26384|26385|26387|26388|26390|26391|26392|26393|26394|26395|26396|26397|26398|26399|26400|26401|26402|26403|26404|26405|26405|26406|26407|26408|26409|26411|26412|26413|26414|26415|26416|26417|26418|26419|26421|26422|26423|26424|26425|26426|26427|26428|26429|26430|26431|26432|26433|26434|26435|26436|44421|44422|44423|44424|44425|44426|44427|44428|44429|44430|192073|237392|237392|257719|265134|270564|338671|338673|338675|338677|348274|348276|351929|351930|351932|352708|485806|485808|487874|488019|488067|553416|610420|621657|621658|621659|621660|621875|649592|758201|792100|792101|792102|902683|902684|902685|902686|902687|917331|917332|917333|961900", + "text": "X-linked agammaglobulinemia" + }, + { + "baseId": "26381|26387|26402|26416|26422|29848|29849|29851|29852|166058|416155|433631|433632|485798|485799|485800|485801|485802|485803|485804|485805|485806|485807|485808|485809|485810|578566|799759|799760|961903", + "text": "Autosomal recessive agammaglobulinemia 1" + }, + { + "baseId": "26381|26386|26387|26397|26402|26405|26410|26415|26416|26417|26420|26422|44425|44426|192073|237392|237392|257719|265134|270564|338671|338673|338675|338677|348276|351929|351930|351932|352708|363082|363083|378894|446452|470443|470445|472042|472043|485801|485806|534429|534455|534459|534978|572151|573508|573515|574234|574235|574236|574241|574243|621657|621660|621875|624703|649591|649592|649593|649594|649595|649596|649597|649598|649599|649600|649601|649602|649603|649604|649605|649606|649607|649608|649609|649610|649611|649612|649613|649614|649615|653432|653680|729328|743061|743062|758201|821540|821541|849509|849510|849511|849512|849513|849514|849515|849516|849517|849518|849519|849520|852450|852533|852954|852955|902683|902684|902685|902686|902687|917333|920432|929528|929529|929530|939384|939385|939386|939387|939388|940538|940539|940540|940541|951558|951559|951560|951561|959147|960353|960970", + "text": "X-linked agammaglobulinemia with growth hormone deficiency" + }, + { + "baseId": "26384|28188|29043|33344|39043|45898|76319|94255|125897|153737|205148|226599|359705|409927|424449|472216|549127|557045|570568|620059|621659|624766|650944|791014|799281|801876|815884|815885|815886|815887|815888|815889|815890|815891|815892|815893|815894|815895|815898|815901|815903|815904|815905|815906|815907|815908|815909|815910|815911|815912|815913|815914|815915|815916|815917|815919|815921|815922|815923|815924|815928|815929|815930|815931|815932|815933|815934|815935|815936|815937|815938|815939|815940|815941|815942|815944|815945|815947|815948|815949|815950|815951|815952|815953|815954", + "text": "Inherited Immunodeficiency Diseases" + }, + { + "baseId": "26389", + "text": "Hypogammaglobulinemia, X-linked" + }, + { + "baseId": "26438|26439|26440|195769|208853|208854|411112|481502|538503|575321|689331|792116|798802|905860|976676", + "text": "Mental retardation, syndromic 14, X-linked" + }, + { + "baseId": "26441|26442|26443|26444|26445|132417|513685|581217|920006|920007|920547|920548|920549", + "text": "IFAP syndrome with or without BRESHECK syndrome" + }, + { + "baseId": "26446|26447|26448|26449|26450|26451|26452|26453|26454|26455|26456|26457|26458|134557|209083|209084|430820|430821|430822|470878|534837|534899|535026|540039|572527|572529|573903|573904|574750|614509|650102|650103|650104|650105|650106|654154|679834|706261|717811|717812|729636|743383|786860|822228|850160|850161|850162|850163|850164|850165|851974|929764|929765|929766|929767|929768|929769|929770|939637|939638|941312|951848|951849|951850|951851|980491", + "text": "Insulin-dependent diabetes mellitus secretory diarrhea syndrome" + }, + { + "baseId": "26459|26460|26461|26462|26463|26464|192535|339181|339183|339192|339195|339198|339204|348731|352228|352230|352846|352847|352848|352849|352850|352851|587381|774037|903037|903038|903039|903040|903041|903042|903043|903044|903045|903046|903047|920026", + "text": "Congenital stationary night blindness, type 1A" + }, + { + "baseId": "26465|26466|26467|26468|26469|26470|34117|34119|170077|170078|170079|170081|170082|170085|208917|788950|792136", + "text": "Child syndrome" + }, + { + "baseId": "26471|133896|208881|446508", + "text": "Mental retardation 46, X-linked" + }, + { + "baseId": "26472|26473|26475|26476|26477|26478|26479|26480|141661|141662|187961|213507|243722|257760|263864|338963|338964|348520|348522|348525|348530|348531|352091|352092|352774|352775|352776|404133|471742|471745|535052|535056|536053|536054|536055|536056|536057|572245|573607|573609|574323|649730|649731|805125|849690|849691|902817|902818|902819|902820|902821|902822|902823|902824|902825|902826|902827|902828|902829|929580|939455|951626|951627", + "text": "Heterotaxy, visceral, 1, X-linked" + }, + { + "baseId": "26474|26478", + "text": "Congenital heart defects, multiple types, 1, X-linked" + }, + { + "baseId": "26478|38910|99372|187961|194866|195603|205672|245218|245222|257770|338963|338964|338984|338985|338987|338992|338998|339001|339005|348520|348522|348525|348530|348531|348561|348562|348579|352091|352092|352098|352099|352102|352774|352775|352776|352780|352781|352782|352783|352784|352785|352786|404139|404461|470515|471328|534596|575340|684959|902817|902818|902819|902820|902821|902822|902823|902824|902825|902826|902827|902828|902829|902835|902836|902837|902838|902839|902840|902841|902842|902843|902844|902845", + "text": "VACTERL association, X-linked, with or without hydrocephalus" + }, + { + "baseId": "26478|187961|338963|338964|348520|348522|348525|348530|348531|352091|352092|352774|352775|352776", + "text": "Congenital heart defects 1, nonsyndromic, 1" + }, + { + "baseId": "26481|26482|26483|26484|26485|101001|153772|199813|248741|265040|430846|578597|801552|961794|964624", + "text": "HSD10 disease" + }, + { + "baseId": "26486|26487|26488|26489|26490|26491|26496|26497|360602|446591|610414|614505|905011|905015|919992|963310", + "text": "Incontinentia pigmenti syndrome" + }, + { + "baseId": "26489|26496|446591|905011|905015", + "text": "ECTODERMAL DYSPLASIA AND IMMUNODEFICIENCY 1, MALE-RESTRICTED" + }, + { + "baseId": "26492|26493|26495|26498|26499|26500|26501|26502|26505|45041|45042|45043|45044|45045|45046|79130|360602|424453|614505", + "text": "Ectodermal dysplasia and immunodeficiency 1" + }, + { + "baseId": "26503|614505", + "text": "Immunodeficiency without anhidrotic ectodermal dysplasia" + }, + { + "baseId": "26504|26506|26507|26508|79125|79126|614505|905009|905010|905014", + "text": "Familial atypical mycobacteriosis, type 1, X-linked" + }, + { + "baseId": "26509|26510|26511|26513|140225|140226|257851|257853|257854|257855|339425|352342|352343|352916|620699|903111|903112|903113|903114|961490|961491|961492", + "text": "Ovarian dysgenesis 2" + }, + { + "baseId": "26510|26511|26512|26513", + "text": "Premature ovarian failure 4" + }, + { + "baseId": "26515|26516|26517|26518|38904|97547|101275|142903|142904|142906|142907|142909|142910|142911|142912|142913|142914|169937|169938|169939|169940|169941|169942|203981|203985|203986|203988|245213|362395|377787|404120|404453|411132|426407|471285|471288|471722|471733|471736|472064|472065|508507|534533|572224|573553|575333|580775|613522|615978|649712|649713|649714|649715|649716|758301|773769|792124|792125|794082|798807|802043|821559|849665|849666|929573|929574|929575|929576|939442|939443|939444|951617|951618|951619|960973|976678|976679", + "text": "Christianson syndrome" + }, + { + "baseId": "26519|26520|26521|38899|209030|265258|339130|339135|339137|339138|339141|348672|352192|352194|352196|352825|352826|352827|352828|352829|352830|583205|611448|611470|792253|801566|902994|902995|902996|902997|902998|903470|903471|964603|971202", + "text": "Intellectual disability, X-linked 21" + }, + { + "baseId": "26522|26523|26524|26525|26526|26527|26528|26529|26530|26531|170113|170114|170115|170116|170117|170118|170119|170120|170121|170122|170123|170124|170125|170126|170127|170128|170129|170130|170131|170132|170133|170134|170135|170136|209064|209065|209066|209067|209068|209069|792460|792461|798815|977305", + "text": "Chondrodysplasia punctata 2 X-linked dominant" + }, + { + "baseId": "26532|170113|205599|205600", + "text": "MEND syndrome" + }, + { + "baseId": "26533|26534|26535|26536|26539|26540|26541|26541|26542|26543|26544|26544|33489|33489|100006|100007|100008|100009|100010|100011|100011|100012|100012|100013|100013|100015|140412|140414|140415|140416|140417|140419|153499|153500|153501|153502|153503|153504|153505|153507|153509|153510|153511|153511|153512|153512|153513|153513|153515|153516|153516|153517|153518|153518|153520|153522|153523|153524|153525|153527|153528|153531|153532|153533|153534|153536|153537|153538|153539|153540|153541|153541|153542|153543|153544|153550|153551|153552|153553|153554|153555|153555|153556|153557|153558|153559|153559|153560|153562|153562|153563|153564|153565|153567|153568|153569|153570|153571|153572|165869|165869|165876|165877|165883|165886|165889|165891|165893|166453|166460|166514|166538|166539|166540|166544|166545|166547|166547|166548|170096|170097|170098|170099|170100|170101|170102|170104|170106|170107|170108|187436|187438|187439|187440|187441|187443|187444|187445|187446|187447|187448|187449|187451|187452|187453|187577|187580|187584|187586|187587|187591|187593|187595|187597|187598|187600|187605|187608|187618|187620|187621|187622|187624|187624|187625|187627|187632|191662|208989|208990|208993|214546|214547|227924|228220|243784|257790|257791|272497|360565|360605|362354|363972|378006|378025|379152|379159|379266|403990|404159|404163|404186|404509|411214|411215|411218|411223|411227|411231|426443|430758|430759|430760|430761|430972|435196|446600|470650|471428|471431|471434|471435|471436|471841|472112|472113|472114|480623|481345|481346|482246|482247|486783|486784|486785|488163|507990|508000|508099|508483|508488|508960|534520|534680|534683|534686|534690|534694|534765|534772|534773|534778|535117|535118|535119|535120|535121|535122|539111|539112|552251|552252|552253|552253|572370|572373|572376|572379|573755|573760|574188|574377|574380|574438|574440|575376|580760|580887|580917|611442|614506|649896|649897|649898|649899|649900|649901|649902|649903|649904|649905|649906|649907|649907|649908|649909|649910|649911|649912|653384|653782|656757|689451|689452|690267|758415|758415|786768|792184|792185|792186|792187|792188|792189|792190|792191|792192|792193|792194|798249|802047|802048|802065|802066|821495|821572|821573|821574|821575|821576|821577|822221|822222|849851|849852|849853|849854|849855|849856|849857|849858|849859|849860|849861|849862|849863|849864|849865|849870|849874|851950|852483|852972|852972|858367|858368|858369|858370|858371|858372|858373|858374|858375|858376|858377|858381|858382|858516|904944|904945|904946|906351|917738|917738|920000|920000|920442|929637|929638|929639|929640|939507|939508|939509|939510|939515|939516|939517|940548|941292|941293|951692|951693|951694|951695|951696|951697|951698|959216|959217|959218|959219|960372|960977|960978|964586|964587|964588|964589|964590|964702|969243|971195|971196|971197|976825", + "text": "Early infantile epileptic encephalopathy 2" + }, + { + "baseId": "26535|26536|26539|26541|26871|26872|153502|153506|153511|153512|153513|153514|153515|153517|153519|153526|153529|153533|153541|153544|153549|153550|153555|153561|153566|165870|165873|165878|165884|166445|187437|187438|187442|187444|187450|187574|187576|187587|187589|187596|187599|187601|187603|187604|187606|187610|187612|187613|187614|187615|187617|187619|187620|187628|187629", + "text": "Atypical Rett syndrome" + }, + { + "baseId": "26541|26544|33489|100006|100007|100010|100011|100012|100013|100015|140414|140415|140416|140417|140419|153505|153507|153510|153511|153512|153513|153516|153518|153533|153541|153543|153544|153550|153555|153559|153562|165869|166453|166538|166539|166540|166544|166547|166548|187620|187624|187627|208989|208990|243784|257790|257791|272497|360565|360605|362354|363972|378006|378025|379152|379159|379266|403990|404159|404163|404186|404509|411214|411215|411218|411223|411227|411231|426443|430759|430760|446600|470650|471428|471431|471434|471435|471436|471841|472112|472113|472114|482246|507990|508000|508099|508483|508488|514525|534520|534680|534683|534686|534690|534694|534765|534772|534773|534778|535117|535118|535119|535120|535121|535122|552253|572370|572373|572376|572379|573755|573760|574188|574377|574380|574438|574440|575376|580760|580887|580917|613504|649896|649897|649898|649899|649900|649901|649902|649903|649904|649905|649906|649907|649908|649909|649910|649911|649912|653384|653782|656757|689451|689452|690267|758415|786768|798249|821495|821572|821573|821574|821575|821576|821577|822221|822222|849851|849852|849853|849854|849855|849856|849857|849858|849859|849860|849861|849862|849863|849864|849865|849870|849874|851950|852483|852972|917738|920000|929637|929638|929639|929640|939507|939508|939509|939510|939515|939516|939517|940548|941292|941293|951692|951693|951694|951695|951696|951697|951698|959216|959217|959218|959219|960372|960977|960978", + "text": "Angelman syndrome-like" + }, + { + "baseId": "26542|26848|26849|26850|26850|26851|26852|26853|26854|26854|26855|26856|26857|26858|26858|26860|26862|26862|26863|26865|26867|26868|26868|26872|26873|26874|26875|26880|26882|26883|26883|26884|26885|45151|45154|45155|45156|45157|45158|101082|101084|101086|101087|101091|101096|101099|101100|101101|101102|101102|141890|141891|152982|153026|153029|153031|153032|153033|153035|153036|153038|153039|153041|153042|153044|153052|153054|153055|153056|153058|153060|153060|153061|153063|153066|153069|153072|153076|153077|153079|153081|153082|153083|153084|153085|153086|153087|153088|153089|153091|153092|153093|153094|153095|153096|153097|153098|153101|153103|153104|153105|153106|153107|153108|153109|153111|153114|153116|153117|153118|153119|153120|153124|153125|153129|153130|153132|153133|153134|153136|153137|153138|153138|153139|153140|153141|153143|153144|153145|153146|153152|153153|153154|153157|153160|153161|153164|153165|153166|153168|153170|153173|153174|153175|153179|153183|153185|153189|153191|153198|153199|153201|153203|153204|153205|153213|153214|153216|153217|153218|153221|153223|153224|153229|153230|153231|153232|153234|153235|153236|153239|153240|153242|153243|153244|153245|153247|153249|153250|153251|153252|153253|153255|153256|153257|153258|153259|153260|153261|153262|153263|153264|153265|153266|153267|153268|153269|153270|153272|153274|153275|153276|153278|153281|153282|153283|153284|153285|153286|153287|153288|153290|153291|153292|153293|153294|153295|153296|153297|153298|153299|153300|153301|153303|153304|153305|153308|153309|153310|153311|153312|153313|153314|153315|153317|153319|153320|153321|153322|153324|153326|153327|153328|153329|153330|153331|153332|153333|153335|153336|153337|153340|153340|153341|153346|153347|153349|153351|153352|153353|153354|153355|153356|153359|153361|153363|153364|153365|153367|153368|153371|153372|153373|153374|153375|153377|153379|153380|153381|153384|153385|153386|153387|153390|153394|153395|153396|153398|153402|153403|153404|153405|153406|153407|153408|153409|153410|153414|153416|153419|153420|153421|153422|153423|153424|153426|153427|153428|153429|153431|153432|153434|153435|153436|153437|153438|153440|153442|153446|153448|153450|153451|153452|153453|153454|153455|153457|153458|153459|153460|153461|153462|153463|153465|153466|153467|153468|153469|153470|153472|153473|153474|153476|153477|153478|153480|153481|153484|153485|153486|153488|153492|153495|153523|165841|165842|165844|165845|165846|165848|165849|165853|165854|165858|165859|165861|165862|165863|165864|166119|166468|166469|166486|166488|166490|166515|166521|178396|186595|187416|187417|187418|187419|187420|187421|187422|187423|187424|187425|187426|187427|187428|187429|187430|187431|187432|187433|187434|187435|187454|187455|187456|187457|187458|187460|187461|187462|187463|187465|187466|187467|187469|187471|187472|187474|187475|187476|187477|187479|187480|187481|187482|187483|187484|187485|187487|187488|187489|187490|187491|187492|187493|187495|187495|187496|187497|187498|187499|187500|187501|187502|187504|187505|187506|187507|187508|187509|187510|187511|187512|187513|187514|187515|187516|187518|187519|187520|187521|187522|187523|187524|187525|187526|187527|187528|187529|187530|187531|187532|187533|187534|187535|187537|187538|187539|187540|187541|187542|187543|187544|187545|187546|187547|187549|187551|187556|187558|187559|187560|187561|187562|187563|187565|187566|187567|187568|187569|187571|187633|187634|187635|187636|187637|187638|187639|187640|187641|187642|187643|187644|187645|187646|190082|190083|190084|190085|190086|190087|208946|208951|208954|208958|208962|208963|209313|237855|237856|237857|237858|361240|361299|361300|380318|380320|380321|380322|380323|380324|380325|380327|404014|411178|413218|425235|430712|430713|438474|439573|486748|486781|488032|513391|538288|538289|538290|538506|538611|539190|550653|575515|614500|621687|623641|623642|623643|625827|792162|792163|792164|792165|792166|792167|792168|792169|792170|792646|802045|802046|805126|806171|904250|962867|962868|962919|963191|964579|964580|964582|970101", + "text": "Rett syndrome" + }, + { + "baseId": "26546|26547|26548|26549|26551|26552|26553|26554|26555|26556|132622|209358|338927|338931|338945|338956|338958|338959|338962|348509|348514|348518|352071|352076|352077|352078|352087|352089|352765|352766|352767|352768|352770|352771|352772|352773|612433|612434|682673|792690|902791|902792|902793|902794|902795|902796|902797|902798|902799|902800|902801|902802|902803|902804|902805|902806|902807|902808|902809|902810|902811|902812|902813|902814|902815|902816|903459|903460|919978", + "text": "Spondyloepiphyseal dysplasia tarda" + }, + { + "baseId": "26557|26558|38897|38898|132677|132678|193667|217197|225825|259238|920055", + "text": "X-Linked mental retardation 90" + }, + { + "baseId": "26559|26559|76591|101147|101153|101154|101155|101156|135035|135036|135039|138375|138376|138377|177599|177600|177601|177829|177830|177831|193566|194170|194628|194649|209154|209160|209161|209163|210545|210547|210548|210550|210550|210551|210555|210556|210565|210566|210567|210573|210576|210578|222885|227160|243820|243821|247364|247365|247366|247367|259189|259197|259200|378579|378595|378596|378607|379377|379378|379380|379508|379520|379521|380112|404002|404270|404284|404288|404584|404586|404587|404588|404590|404591|404593|411464|411468|411469|415814|424621|430907|438808|470946|470954|470967|470969|471683|471690|471692|471698|471699|471705|471966|471967|471969|471970|471972|471973|472190|472191|472192|472193|472194|472195|472196|472197|485859|490092|490095|508629|508644|508647|510970|510978|510979|534913|534917|534927|534948|535059|535061|535191|551347|572556|572558|572560|573972|573974|573980|573985|581033|610411|611457|611458|650173|650174|650175|650176|650177|650178|650179|650180|650181|650182|650183|650184|650185|650186|650187|650188|650189|650190|650191|650192|653474|653476|653793|653908|656792|685026|685029|689538|689544|689546|694918|694920|694921|694923|694924|694926|788314|792495|792496|821796|821797|850230|850231|850232|850233|850234|850235|850236|850237|850238|850239|850240|852526|906118|929799|929800|929801|939667|939668|939669|939670|939671|951872|951873|951874|951875|959338|959339|959340|959341|960990|961640", + "text": "FG syndrome 1" + }, + { + "baseId": "26559|26560|135035|210548|210550|210555|210565|210573|424621|551347|611457|611458|920056|920057|920458|961640|964630|971227|971228", + "text": "X-linked mental retardation with marfanoid habitus syndrome" + }, + { + "baseId": "26559|59420|59421|59422|210548|210550|210555|210573|415813|424621|510982|513401|513692|551347|611457|611458|961640|963999|964000", + "text": "Ohdo syndrome, X-linked" + }, + { + "baseId": "26561|26562|26563|26564|26565|26566|26567|26568|33883|33884|33885|167577|167580|167582|167585|237173|471446|508531|508961|513393|538508|649947|653313|694852|694853|695903|706197|706199|706201|778660|800303|800304|805129|821613|849919|849920|964602", + "text": "X-linked chondrodysplasia punctata 1" + }, + { + "baseId": "26569|26570|26573|26575|38892|38894|38895|38896|167912|167913|167914|167916|167917|167918|167921|167924|167929|167932|167935|167937|167938|178395|192361|209041|209042|209046|213668|248723|361732|411363|424699|426464|427111|430786|430788|430790|430790|439692|439693|439694|495820|514314|575414|583138|610525|621037|621040|621041|626295|677470|792453|792454|792455|792456|802050|802235|816533|964613|964614|966026|966027|966048", + "text": "Mental retardation and microcephaly with pontine and cerebellar hypoplasia" + }, + { + "baseId": "26571|26572|26573|26573|26574|26575|38892|38893|430790|610525|677470|798307|920027|920451|964612", + "text": "FG syndrome 4" + }, + { + "baseId": "26575|100274|100275|100277|100278|167915|167920|177311|177550|191214|191797|192004|209045|209047|226991|265958|266612|266797|268085|271800|272071|363745|379413|411370|430787|439692|470809|470810|470816|470820|471881|472152|472153|508575|534818|534868|534869|534970|535166|535167|535169|572491|573865|573868|573870|574730|574732|575413|575414|580907|587633|650051|650052|653422|706228|729593|758495|786830|821792|821793|822224|822286|850060|850061|850062|929729|929730|929731|929732|929733|939597|940561|940562|951799|951800|951801|959301|959302", + "text": "Mental retardation, CASK-related, X-linked" + }, + { + "baseId": "26576|26577|26579|26580|26582|44158|49472|49473|49474|49475|49476|49477|49478|49479|49480|49481|49482|49483|49484|49485|49486|49487|49488|49489|49490|49491|49492|49494|49495|49496|49497|49498|49499|49500|49501|49502|49503|49504|49505|49506|49507|49508|49510|49510|49511|49512|49513|49515|49516|49517|49518|49519|49520|49521|49522|49523|49524|49525|49525|49526|49529|49530|49531|49533|49534|49535|49536|49537|49538|49539|49539|49539|49540|49541|49542|49544|49545|49546|49547|49548|49549|49550|49551|49552|49553|49554|49555|49556|49557|49558|49559|49560|49562|49563|49564|49564|49565|49566|49567|49568|49570|49571|49572|49573|49574|49575|49576|49577|49578|49579|169943|169944|169945|169946|169948|169949|169950|169951|169953|186289|186295|190824|191794|191795|205331|208884|208885|213495|222882|243721|243764|260733|260734|260735|260736|260737|260738|260739|260740|260741|260742|260743|260745|260746|363655|404091|404096|404098|404102|404456|404459|404499|470391|470506|470513|471310|471312|471748|471751|471755|471990|472067|472068|472069|472070|508343|508512|511036|534556|534569|534570|535050|535051|535051|539966|550647|550648|550650|550651|550652|552268|572243|572252|573606|574322|574322|575335|575336|575337|575338|649729|649732|649733|653635|670734|677466|694789|694790|788949|816011|818369|821563|849684|849685|849686|849687|849688|849689|904072|929581|939454|939456|951628|959173|959174", + "text": "Orofaciodigital syndrome I" + }, + { + "baseId": "26582|49539|535051|574322|677466|917752|980854", + "text": "Simpson-Golabi-Behmel syndrome, type 2" + }, + { + "baseId": "26583|26584|44158|49539|49539|214374|214375|214376|535051|574322|677466|964709|966185|971181", + "text": "Joubert syndrome 10" + }, + { + "baseId": "26585|140023|140025|140026|140027|140028|140029|211999|212000|338837|338838|348454|348459|348460|352058|352059|352060|352749|352750|354190|379916|438582|534492|745478|745479|745483|849610|902774|902775|902776|902777|903454|903455|903456|971179", + "text": "Combined oxidative phosphorylation deficiency 6" + }, + { + "baseId": "26586|26588|195627|677465|805046", + "text": "Scapuloperoneal myopathy, X-linked dominant" + }, + { + "baseId": "26587|26588|26598|26599|195626|195627|195628|224581|224582|243720|243755|243756|243757|243758|243759|243761|243762|268750|269311|270721|270731|272418|272737|273324|377803|377815|378900|379010|404090|404128|404494|470504|471295|471304|471740|489247|491519|508330|508339|534531|534536|534539|534542|534544|534552|534554|534634|535037|535039|535041|535042|535044|537037|538956|539109|572226|572242|573554|573556|573564|573572|573578|573584|573588|573593|574293|574307|574309|574312|575334|589441|649717|649718|649719|649720|649721|649722|649723|653737|653775|671033|677465|689346|773773|798172|821560|849667|849668|849669|849670|849671|849672|849673|849674|852468|853028|853029|929577|929578|929579|939445|939446|939447|939448|939449|939450|951620|951621|951622|960974", + "text": "Myopathy with postural muscle atrophy, X-linked" + }, + { + "baseId": "26589|26590|26593|26600|26601|677465", + "text": "Myopathy, reducing body, X-linked, early-onset, severe" + }, + { + "baseId": "26591|26592|26594|26602|677465", + "text": "Myopathy, reducing body, X-linked, childhood-onset" + }, + { + "baseId": "26595|26596|26597", + "text": "Emery-Dreifuss muscular dystrophy 6" + }, + { + "baseId": "26603|26604|26605|512562|919971|963943|971172", + "text": "Mental retardation 63, X-linked" + }, + { + "baseId": "26607|26608|26609|26610|26611|135319|208840|348285|351945|351946|351948|352712|352713|425237|430622|431930|513387|622037|677288|677310|773704|902697|902698|902699|902700|902701|902702|902703|902704|902705|902706|969136", + "text": "Mental retardation 30, X-linked" + }, + { + "baseId": "26612", + "text": "Corpus callosum, agenesis of, with mental retardation, ocular coloboma, and micrognathia" + }, + { + "baseId": "26613|26614|26615|131981|139946|139947|349025|352945|352946|360664|802239|903204|903205|903206|903207|903208|903483|964707", + "text": "X-linked sideroblastic anemia with ataxia" + }, + { + "baseId": "26616|26617|26618|26619|26620|38889|170165|170169|170171|170172|209144|225828|431006|431007|624064|792490|800679|964629|980975|983698|983699", + "text": "Mental retardation X-linked with cerebellar hypoplasia and distinctive facial appearance" + }, + { + "baseId": "26621|26622|26623|26624|26625|26626|26627|26629|26630|26631|26632|26633|26634|26635|47534|47535|47536|47537|47538|47539|47540|47541|47542|47543|47544|47545|47546|47547|47548|47549|47550|47551|47552|47553|47554|47555|47556|47557|47558|47559|47560|47561|47562|79307|79308|177673|208981|243783|379257|418962|430742|439831|904964|919993", + "text": "Dyskeratosis congenita, X-linked" + }, + { + "baseId": "26631|26632|447064|447144|514982|514986|515020|515026|515027|515047|515052|556556|556558|556589|556591|556851|556984|556986|626651|626652|626653|626654|626655|626656|706589|822564|822565|822566|822567|822568|822569|822570|822571|822572|822573|822574|921591|921592|921593|921594|921595|921596|921597|929978|929979|929980|929981|929982|941394|941395|952024|952025", + "text": "Hoyeraal-Hreidarsson syndrome" + }, + { + "baseId": "26636|26637|26638|26640|26641|26642|26648|26649|169852|169882|430630|430631|432226|486779|611440|789137|800677|962872", + "text": "Lissencephaly, X-linked" + }, + { + "baseId": "26636|26637|26638|26639|26640|26641|26642|26643|26645|26646|26647|26648|26649|430629|430630|430632", + "text": "Subcortical laminar heterotopia, X-linked" + }, + { + "baseId": "26637|26648|92943|169848|169849|169850|169851|169852|169853|169854|169855|169856|169857|169858|169859|169860|169861|169862|169863|169864|169865|169866|169867|169868|169869|169870|169871|169872|169873|169875|169876|169877|169878|169879|169880|169881|169882|169883|169884|169885|169886|169887|169888|169889|169890|169891|169892|169893|169894|169895|169896|169897|169898|169899|169900|169901|169902|169903|169905|169906|169907|169908|169909|169910|169911|169912|169913|169914|169915|169916|169917|169918|169919|169920|169921|169922|169923|169924|169925|169926|169927|169928|169929|169930|169931|169932|169933|169934|169935|169936|513940|514033", + "text": "Heterotopia" + }, + { + "baseId": "26650|26651|26652|424963|792133|971184", + "text": "Hypospadias 2, X-linked" + }, + { + "baseId": "26653|26654|26655|26656|26657|34295|257849|260333|267625|361099|390505|424183|578351|578595|800656|857093|920035|920036|971211|976724|976725|976726|976727|976728|976729", + "text": "Congenital stationary night blindness, type 2A" + }, + { + "baseId": "26658", + "text": "Congenital stationary night blindness, type 2A, severe" + }, + { + "baseId": "26659|214083|214084|354187|424183|578595", + "text": "X-linked cone-rod dystrophy 3" + }, + { + "baseId": "26660|192398|260333|413831|578595|589379|623878|624016", + "text": "Ocular albinism, type II" + }, + { + "baseId": "26661|717879", + "text": "Premature ovarian failure 2a" + }, + { + "baseId": "26662|26663|26664|76584|76585|76587|94346|190838|615269|788951|804834|815959|903651|904253|920008|961816", + "text": "Syndromic X-linked intellectual disability Snyder type" + }, + { + "baseId": "26665|26666|26667|38888|411202|963955|964584|964585", + "text": "X-Linked Mental Retardation 41" + }, + { + "baseId": "26668|26669|26670", + "text": "Mental retardation 58, X-linked" + }, + { + "baseId": "26671|26672|26673|26674|26675|26676|26677|26678|26679|26680|26681|34312|34313|34314|34315|51276|170179|170180|170181|170182|170183|170184|209177|209178|209179|209181|209182|430913|430916|488315|513694|550658|626303|653909|682858|792500|792501|802238|903657|917761|971230", + "text": "Allan-Herndon-Dudley syndrome" + }, + { + "baseId": "26682|26683|141316|426736|430797|614095|677471|964615|965591|974506", + "text": "TARP syndrome" + }, + { + "baseId": "26684|26685|26686|45837|227418|257745|271618|271618|338753|338757|338764|338766|338769|338771|338779|338780|338787|338791|338798|338805|338806|338809|338823|348369|348371|348376|348377|348379|348381|348383|348387|348389|348395|348406|348407|348410|348412|348417|348424|348432|348434|352022|352023|352025|352026|352028|352029|352030|352032|352033|352036|352037|352038|352039|352725|352726|352727|352728|352729|352730|352731|352732|352733|352734|352735|352736|352741|440026|440027|440028|471245|471246|471249|495793|514119|534457|534461|534464|534496|534498|535009|535013|572186|573530|574191|575283|575323|613424|614103|649661|649662|653434|653683|717625|758260|786695|792119|792120|821550|821551|821552|821553|821554|849586|849587|849588|849589|849590|849591|849592|849593|849594|849595|849596|849597|849598|902733|902734|902735|902736|902737|902738|902739|902740|902741|902742|902743|902744|902745|902746|902747|902748|902749|902750|902751|902752|902753|902754|902755|902756|902757|902758|902759|902760|902761|902762|902763|902764|902765|929555|939418|939419|939420|941286|951584|951585|951586|959159", + "text": "Lymphoproliferative syndrome 2, X-linked" + }, + { + "baseId": "26687|26688|45630|969255", + "text": "Mitochondrial complex 1 deficiency, nuclear type 12" + }, + { + "baseId": "26689|26690|26691|26692|26693|26694|26695|26696|26697|26699|26700|26701|26702|26703|26704|26705|26706|26707|101050|135609|188130|208995|208996|208999|227426|227426|361088|415762|431932|471437|481327|493724|513482|538304|538305|538306|538307|538308|538309|538310|538311|538507|550654|572389|573769|574446|574448|575381|611444|623170|624874|649929|649930|706190|792203|792204|821580|849884|853034|941294|959223|962244|963311|963960", + "text": "Coffin-Lowry syndrome" + }, + { + "baseId": "26698|38886|38887|135609|208995|208996|208997|208999|227426|471437|493724|538304|538507|572389|573769|574446|574448|575381|611444|649929|649930|706190|821580|849884|853034|920445|920446|941294|959223|964592", + "text": "Mental retardation, X-linked 19" + }, + { + "baseId": "26708|26709|26710|34296|188131|513680|626296|975875", + "text": "Linear skin defects with multiple congenital anomalies 1" + }, + { + "baseId": "26711|26712|26713|26714|38884|38885|101264|101265|101266|170138|170139|170140|170141|170142|170143|170145|170146|170147|170148|170149|170150|170151|170152|170153|170154|170155|170156|170157|170158|170159|170160|170161|170162|170163|170164|178084|178384|178385|190501|196000|205197|205198|205800|209110|209112|209113|209114|268274|339427|339429|339440|339445|339448|339455|339463|339469|339474|339475|339483|339484|339490|339492|339497|348970|348972|348976|348980|348982|348985|348989|352349|352355|352369|352375|352378|352917|352918|352920|352921|352922|352923|352924|352925|352926|352927|352928|361246|362235|362430|378478|424492|430841|430843|430973|442434|471644|471914|471917|472166|472167|512703|513833|513834|513835|513836|513837|513838|513839|513840|534882|534886|534918|534921|535047|535183|535184|538514|572540|572552|573925|573930|573933|573938|574189|574807|574809|574811|574813|575280|575433|575434|610425|650123|650124|650125|650126|650127|650128|650129|650130|653294|653465|653537|758566|774126|774127|774130|774132|774133|776891|788302|792475|792476|792477|792478|792479|798817|798818|800678|821511|821512|821513|822231|850188|850189|850190|850191|850192|850193|850194|850195|850196|850197|850198|850199|852523|903115|903116|903117|903118|903119|903120|903121|903122|903123|903124|903125|903126|903127|903128|903129|903130|903131|903132|903133|903134|903135|903136|903137|903138|903139|903140|903141|903142|903143|903144|903145|903146|903147|903148|903149|903150|903151|903152|903480|903654|917774|920043|920044|929782|929783|929784|929785|939647|939648|939649|939650|939651|951855|951856|960988|961639|964623|964921|966358|973112|977306|977307|977308", + "text": "Congenital muscular hypertrophy-cerebral syndrome" + }, + { + "baseId": "26724|26725|26726|26727|26728|26731|26732|26733|26734|226397|260942|534603|553160|609300|611457|614104", + "text": "Simpson-Golabi-Behmel syndrome type 1" + }, + { + "baseId": "26735|26736|26737|26738|26739|26740|26741|26742|26743|34300|76600|76601|135802|208919|208921|208923|208924|208925|208926|215616|237230|243765|260285|271846|377852|377853|377855|377857|377859|377861|378959|378961|378963|378965|378966|378980|378981|378991|378994|379047|379048|379056|379061|379071|379075|379945|379948|379949|379951|379952|404104|404106|404114|404152|404156|404157|404162|404164|404462|404464|404502|404503|404504|404505|430685|430686|430687|430688|442390|446526|470536|470538|471348|471788|471789|471790|472078|472079|472080|472081|507792|507813|507914|508369|508529|508532|508537|508539|534583|534584|534586|534616|534662|535072|535074|552247|572253|572259|572263|572268|573645|573650|574334|574335|575351|575352|575353|580962|621994|623366|649762|649763|649764|649765|649766|649767|649768|649769|649770|654143|654152|656740|678963|684960|684961|684962|684964|689377|689378|689380|689381|689382|689383|690256|694814|695897|695898|706144|729478|758350|773852|773854|773855|773857|786734|792139|792140|799022|806382|806415|815874|821485|821567|822218|849725|849726|849727|849728|849729|849730|920439|929598|929599|939466|939467|939468|939469|939470|951639|951640|959184|959185|959186|959187|960364|960976|962880|963189|964571|964712|964713|971185|971599|972804|976710|976711", + "text": "Creatine transporter deficiency" + }, + { + "baseId": "26745|26746|26747|26748|26749|26750|26751|26752|26753|26754|106499|106500|361727|361728|361729|361730|361731|430892|430893|430894|430895|550657|622497|679254|800957|906117|917775|969276|969287|969288", + "text": "Craniofrontonasal syndrome" + }, + { + "baseId": "26755", + "text": "X-Linked Mental Retardation 88" + }, + { + "baseId": "26760|26761|26762|26763|26764|26765|26766|26767|26768|26769|26770|26772|26773|26773|26774|26774|26775|26778|26781|99039|99041|99043|99044|99045|99047|99048|99049|99052|133940|133941|133944|133945|133946|137383|137388|137389|137390|137391|137392|137393|137394|137395|137396|137398|137399|166106|177185|177500|191160|193323|196185|196186|196189|209197|209198|209199|209204|243824|265761|265767|266207|269258|274176|274280|360681|361255|379543|380125|380126|380127|384429|390648|411489|411489|411493|424620|424679|426493|430936|430938|430940|430942|442458|442459|446776|471025|471046|471048|471050|471050|471057|471058|471737|471741|471746|471747|471753|471997|471998|471999|472000|472006|472007|472009|472207|472208|472209|472210|472211|472212|472213|472214|472215|491357|512762|512762|512763|512767|512768|512770|534939|534944|534945|534947|534958|534959|534966|534974|534975|534977|534982|535076|535078|535080|535086|535201|535202|535203|535204|535205|535206|535207|535208|535209|535210|535211|538322|538323|551801|552266|572595|572596|572599|572601|572603|574016|574018|574019|574020|574022|574914|574915|574915|574989|574990|575281|575454|575455|575456|575457|575458|575459|578600|581078|581081|581084|581197|622128|650231|650232|650233|650234|650235|650236|650237|650238|650239|650240|650241|650242|650243|650244|650245|650246|650247|650248|650249|650250|650251|650252|650253|650254|653545|653630|671182|677476|677477|679816|682845|685048|685049|685050|685051|685052|685053|685054|685497|685498|689563|689565|689566|689567|689568|689569|689570|689571|689572|689573|689574|689576|689577|689578|689579|689581|690281|690282|694937|694938|706320|706321|706322|729708|729709|729711|743478|758663|774222|774224|774226|774230|774231|774232|774233|774237|786907|786908|786910|786911|786912|786913|786917|786920|786923|788323|792503|792504|792505|798406|821515|822238|850296|850297|850298|850299|850300|850301|850302|850303|850304|850305|850306|850307|850308|850309|850310|850311|850312|850313|850314|850315|850316|850317|850318|850319|850320|850321|850322|850323|850324|853046|920068|920069|929824|929825|929826|929827|929828|929829|929830|929831|929832|939689|939690|939691|939692|951892|951893|951894|951895|951896|951897|951898|951899|959352|959353|959354|959355|959356|959357|959358|959359|959360|959361|959362|960391|964633|965874|971231|976690|980111|980112|980113|980114|980115|980116|980117|980118|980119", + "text": "Alpha thalassemia-X-linked intellectual disability syndrome" + }, + { + "baseId": "26763|27404|558396|612017", + "text": "Atypical teratoid/rhabdoid tumor" + }, + { + "baseId": "26763|27403|27404", + "text": "Astrocytoma, anaplastic" + }, + { + "baseId": "26767|48495|48495|59193|181453|202291|214480|223771|263192|263996|514043|613536|613537|653986|676955|676971|794110|800332|904877|921253|965616|983725|983747", + "text": "Intellectual disability, severe" + }, + { + "baseId": "26767|263244|434101|805085|969548", + "text": "Ambiguous genitalia" + }, + { + "baseId": "26770|26771|26776|26781|26782|26783|26784|26785", + "text": "Mental retardation-hypotonic facies syndrome, X-linked" + }, + { + "baseId": "26770|26773|26774|26774|26781|99048|225841|263756|390648|411489|434706|471050|512762|512763|574915|583140|622930|622931|677476|677477|964003|964632|964634|964917|969733|976690", + "text": "X-linked intellectual disability-hypotonic face syndrome" + }, + { + "baseId": "26774|26779|26780|411489|471050|512762|512763|574915|976690", + "text": "Acquired hemoglobin H disease" + }, + { + "baseId": "26774", + "text": "Renier-Gabreels-Jasper syndrome" + }, + { + "baseId": "26786|26787|26788|26789|26790|26791|26792|26793|26800|26802|26803|26804|26806|26809|26811|26813|26814|38883|99651|99653|99653|99654|99656|99657|99660|99662|99664|99666|99668|99670|99673|99674|99675|99679|99680|134505|134506|134507|134508|134509|134511|134512|134513|134514|134515|134516|134517|134518|134519|134520|134521|134522|134523|141089|177439|177710|177714|188014|188015|188016|188017|188018|188019|188021|188022|188023|188023|188024|188025|188026|188027|188028|188030|188031|188031|188032|188032|188033|188034|188035|188036|188037|188038|188039|188040|188041|191008|191008|191359|191890|192831|192900|193109|193272|194223|194569|194589|194660|194679|194703|194889|195294|195629|205515|205799|208964|208964|208967|208968|208971|208973|208974|208977|208978|210456|210457|210460|210461|210462|210463|210464|210471|210472|210473|210476|210477|210478|210483|210484|210485|210486|210493|210496|210497|210504|210505|210506|210507|210508|210509|210512|210514|210515|210516|210518|210519|210521|210522|210523|210525|210526|210527|210528|210529|210531|210532|210533|210540|222883|232151|237396|243767|243768|243772|243773|243775|243776|243777|257784|257785|259150|259152|259154|259155|259158|259161|259163|259166|266603|267750|267764|270944|271084|271829|272989|273519|273844|273846|354186|377906|377915|377916|377927|377939|377943|377962|377974|377982|379072|379082|379088|379111|379167|379168|379192|379193|379195|379208|379209|379211|379978|379984|379985|379988|404020|404119|404121|404124|404127|404129|404131|404140|404146|404150|404166|404469|404470|404472|404474|404475|404476|404477|404479|404481|404490|404515|404516|404517|404519|404526|404527|404529|411193|411196|426433|426564|430717|430718|430720|430721|430722|430724|430725|430725|430726|430731|432228|433576|442400|442401|446563|446570|470586|470587|470594|470599|470602|470604|470610|470615|470621|470624|470626|471359|471360|471368|471371|471375|471381|471385|471391|471392|471395|471398|471401|471402|471404|471406|471811|471812|471813|471815|471817|471818|471819|471820|471823|471827|471830|471832|471833|471834|471835|472093|472094|472095|472096|472097|472098|472099|472100|472101|472102|481079|481080|481081|481081|481082|485812|489115|490318|494079|507880|507902|508014|508046|508061|508070|508073|508438|508441|508450|508451|508458|508460|508471|508574|508583|508591|508595|510901|510904|510905|510907|510909|510910|510912|510913|510916|510917|510920|510921|510927|512622|534625|534626|534630|534633|534635|534648|534653|534665|534671|534674|534677|534684|534685|534695|534700|534703|534704|534710|534713|534717|534724|534726|534728|534729|534731|534732|534734|534741|534744|534747|534749|534756|534850|535089|535090|535092|535094|535096|535097|535098|535103|535105|535107|538297|539110|552472|552473|553162|572083|572339|572344|572347|572349|572355|572356|572358|572359|572361|572364|573679|573686|573691|573697|573701|573704|573705|573708|573714|573718|573723|573726|573727|574180|574351|574353|574355|574357|574359|574361|574363|574365|574367|574369|575363|575364|575365|575366|575367|575368|575369|575370|575371|580857|580869|580889|580890|581025|582011|586385|609038|613239|614545|626293|649823|649824|649825|649826|649827|649828|649829|649830|649831|649832|649833|649834|649835|649836|649837|649838|649839|649840|649841|649842|649843|649844|649845|649846|649847|649848|649849|649850|649851|649852|649853|649854|649855|649856|649857|649858|649859|649860|649861|649862|649863|649864|649865|649866|649867|649868|649869|649870|649871|649872|649873|649874|649875|649876|649877|653289|653291|653293|653441|653779|653780|684973|684974|685486|689411|689412|689413|689414|689416|689418|689419|689420|689421|689422|689425|689426|689430|689433|689434|690260|690261|690262|694831|694834|694840|729507|758385|760994|773897|773901|773903|773910|776965|786748|786749|786751|798220|798808|821491|821492|849794|849795|849796|849797|849798|849799|849800|849801|849802|849803|849804|849805|849806|849807|849808|849809|849810|849811|849812|849813|849814|849815|849816|849817|849818|849819|849820|849821|849822|849823|849824|851948|852969|852970|853031|919986|929616|929617|929618|929619|929620|929621|929622|929623|929624|929625|929626|929627|939487|939488|939489|939490|939491|939492|939493|939494|939495|939496|939497|939498|939499|939500|939501|940546|941288|941289|951664|951665|951666|951667|951668|951669|951670|951671|951672|951673|951674|951675|951676|951677|951678|951679|951680|951681|951682|951683|959200|959201|959202|959203|959204|960369|964583|976681", + "text": "Periventricular nodular heterotopia 1" + }, + { + "baseId": "26794|26805|26811|481224|976681", + "text": "Oto-palato-digital syndrome, type I" + }, + { + "baseId": "26794|264749", + "text": "Conductive hearing impairment" + }, + { + "baseId": "26795|26798|26800|26811|26811|26812|26813|26814|99651|99653|99654|99656|99657|99660|99662|99666|99668|99670|99673|99674|99675|99679|99680|134505|134506|134507|134508|134509|134511|134512|134513|134514|134515|134516|134517|134518|134519|134520|134521|134522|134523|141089|177439|177710|177714|188021|188023|188031|188032|191008|191359|191890|192831|192900|193109|193272|194223|194569|194589|194660|194679|194703|194889|195294|195629|205515|205799|208964|208967|208968|208971|208973|208974|208977|208978|210456|210460|210461|210462|210463|210464|210471|210472|210473|210476|210477|210478|210483|210484|210485|210486|210493|210496|210497|210504|210505|210506|210507|210508|210509|210512|210514|210516|210518|210519|210521|210522|210523|210525|210526|210527|210528|210531|210532|210533|210540|222883|232151|237396|243767|243768|243772|243773|243775|243776|243777|257784|257785|259150|259152|259154|259155|259158|259161|259163|259166|266603|267750|267764|270944|271084|271829|272989|273519|273844|273846|377906|377915|377916|377927|377939|377943|377962|377974|377982|379072|379082|379088|379111|379167|379168|379192|379193|379195|379208|379209|379211|379978|379984|379985|379988|404119|404121|404124|404127|404129|404131|404140|404146|404150|404166|404469|404470|404474|404475|404476|404477|404479|404481|404490|404515|404516|404519|404526|404527|404529|411193|411196|426433|426564|430717|430718|430720|430721|430722|430724|430725|430726|430731|433576|442400|442401|446563|446570|470586|470587|470594|470599|470602|470604|470610|470615|470621|470624|470626|471359|471360|471368|471371|471375|471381|471385|471391|471392|471395|471398|471401|471402|471404|471406|471811|471812|471813|471815|471817|471818|471819|471820|471823|471827|471830|471832|471833|471834|471835|472093|472094|472095|472096|472097|472098|472099|472100|472101|472102|481081|485812|489115|490318|494079|507880|507902|508014|508046|508061|508070|508073|508438|508441|508450|508451|508458|508460|508471|508574|508583|508591|508595|510901|510904|510905|510907|510909|510910|510912|510913|510916|510917|510920|510921|510927|512622|534625|534626|534630|534633|534635|534648|534653|534665|534671|534674|534677|534684|534685|534695|534700|534703|534704|534710|534713|534717|534724|534726|534728|534729|534731|534732|534734|534741|534744|534747|534749|534756|534850|535089|535090|535092|535094|535096|535097|535098|535103|535105|535107|538297|552472|552473|572083|572339|572344|572347|572349|572355|572356|572358|572359|572361|572364|573679|573686|573691|573697|573701|573704|573705|573708|573714|573718|573723|573726|573727|574180|574351|574353|574355|574357|574359|574361|574363|574365|574367|574369|575363|575364|575365|575366|575367|575368|575369|575370|575371|580857|580869|580889|580890|581025|582011|586385|609038|613239|626293|649823|649824|649825|649826|649827|649828|649829|649830|649831|649832|649833|649834|649835|649836|649837|649838|649839|649840|649841|649842|649843|649844|649845|649846|649847|649848|649849|649850|649851|649852|649853|649854|649855|649856|649857|649858|649859|649860|649861|649862|649863|649864|649865|649866|649867|649868|649869|649870|649871|649872|649873|649874|649875|649876|649877|653289|653291|653293|653441|653779|653780|684973|684974|685486|689411|689412|689413|689414|689416|689418|689419|689420|689421|689422|689425|689426|689430|689433|689434|690260|690261|690262|694831|694834|694840|729507|758385|760994|773897|773901|773903|773910|776965|786748|786749|786751|798220|821491|821492|849794|849795|849796|849797|849798|849799|849800|849801|849802|849803|849804|849805|849806|849807|849808|849809|849810|849811|849812|849813|849814|849815|849816|849817|849818|849819|849820|849821|849822|849823|849824|851948|852969|852970|853031|919986|929616|929617|929618|929619|929620|929621|929622|929623|929624|929625|929626|929627|939487|939488|939489|939490|939491|939492|939493|939494|939495|939496|939497|939498|939499|939500|939501|940546|941288|941289|951664|951665|951666|951667|951668|951669|951670|951671|951672|951673|951674|951675|951676|951677|951678|951679|951680|951681|951682|951683|959200|959201|959202|959203|959204|960369|976681", + "text": "Oto-palato-digital syndrome, type II" + }, + { + "baseId": "26796|26800|26800|99662|188032|194589|208971|208977|210456|210508|210523|210526|210527|210528|222883|243767|243768|377916|404119|404124|404129|404166|404469|404474|404479|404490|404515|404516|404519|404526|404527|404529|411193|411196|426564|430720|430722|430731|442400|470586|470594|470599|470602|470604|470610|470621|470624|471359|471360|471368|471371|471375|471392|471398|471402|471406|471813|471820|471823|471830|471832|471833|471834|471835|472094|472101|472102|481081|508438|508460|510910|510916|534625|534626|534633|534648|534665|534674|534677|534685|534695|534703|534704|534710|534713|534724|534728|534732|534741|534747|534749|534756|534850|535090|535097|535098|535103|535105|535107|539110|572083|572339|572344|572347|572349|572355|572358|572359|572361|572364|573679|573686|573691|573697|573701|573704|573705|573708|573718|573723|573726|573727|574180|574351|574353|574357|574361|574363|574365|574367|574369|575363|575365|575366|575367|575368|575369|575370|575371|578589|649825|649826|649827|649828|649832|649834|649835|649836|649837|649838|649839|649840|649841|649842|649843|649844|649845|649846|649848|649849|649850|649851|649852|649854|649856|649857|649858|649861|649863|649864|649866|649867|649869|649870|649872|649873|649874|649875|649876|649877|653289|653293|653441", + "text": "Frontometaphyseal dysplasia 1" + }, + { + "baseId": "26797|26798|26800|26811|26813|26814|34114|99651|99653|99654|99656|99657|99660|99662|99666|99668|99670|99673|99674|99675|99679|99680|134505|134506|134507|134508|134509|134511|134512|134513|134514|134515|134516|134517|134518|134519|134520|134521|134522|134523|141089|177439|177710|177714|188021|188023|188031|188032|191008|191359|191890|192831|192900|193109|193272|194223|194569|194589|194660|194679|194703|194889|195294|195629|205515|205799|208964|208967|208968|208971|208973|208974|208977|208978|210456|210460|210461|210462|210463|210464|210471|210472|210473|210476|210477|210478|210483|210484|210485|210486|210493|210496|210497|210504|210505|210506|210507|210508|210509|210512|210514|210516|210518|210519|210521|210522|210523|210525|210526|210526|210527|210528|210531|210532|210533|210540|222883|232151|237396|243767|243768|243772|243773|243775|243776|243777|257784|257785|259150|259152|259154|259155|259158|259161|259163|259166|266603|267750|267764|270944|271084|271829|272989|273519|273844|273846|377906|377915|377916|377927|377939|377943|377962|377974|377982|379072|379082|379088|379111|379167|379168|379192|379193|379195|379208|379209|379211|379978|379984|379985|379988|404119|404121|404124|404127|404129|404131|404140|404146|404150|404166|404469|404470|404474|404475|404476|404477|404479|404481|404490|404515|404516|404519|404526|404527|404529|411193|411196|426433|426564|430717|430718|430720|430721|430722|430724|430725|430726|430731|433576|442400|442401|446563|446570|470586|470587|470594|470599|470602|470604|470610|470615|470621|470624|470626|471359|471360|471368|471371|471375|471381|471385|471391|471392|471395|471398|471401|471402|471404|471406|471811|471812|471813|471815|471817|471818|471819|471820|471823|471827|471830|471832|471833|471834|471835|472093|472094|472095|472096|472097|472098|472099|472100|472101|472102|481081|485812|489115|490318|494079|507880|507902|508014|508046|508061|508070|508073|508438|508441|508450|508451|508458|508460|508471|508574|508583|508591|508595|510901|510904|510905|510907|510909|510910|510912|510913|510916|510917|510920|510921|510927|512622|534625|534626|534630|534633|534635|534648|534653|534665|534671|534674|534677|534684|534685|534695|534700|534703|534704|534710|534713|534717|534724|534726|534728|534729|534731|534732|534734|534741|534744|534747|534749|534756|534850|535089|535090|535092|535094|535096|535097|535098|535103|535105|535107|538297|539110|552472|552473|572083|572339|572344|572347|572349|572355|572356|572358|572359|572361|572364|573679|573686|573691|573697|573701|573704|573705|573708|573714|573718|573723|573726|573727|574180|574351|574353|574355|574357|574359|574361|574363|574365|574367|574369|575363|575364|575365|575366|575367|575368|575369|575370|575371|580857|580869|580889|580890|581025|582011|586385|609038|613239|626293|649823|649824|649825|649826|649827|649828|649829|649830|649831|649832|649833|649834|649835|649836|649837|649838|649839|649840|649841|649842|649843|649844|649845|649846|649847|649848|649849|649850|649851|649852|649853|649854|649855|649856|649857|649858|649859|649860|649861|649862|649863|649864|649865|649866|649867|649868|649869|649870|649871|649872|649873|649874|649875|649876|649877|653289|653291|653293|653441|653779|653780|684973|684974|685486|689411|689412|689413|689414|689416|689418|689419|689420|689421|689422|689425|689426|689430|689433|689434|690260|690261|690262|694831|694834|694840|729507|758385|760994|773897|773901|773903|773910|776965|786748|786749|786751|798220|821491|821492|849794|849795|849796|849797|849798|849799|849800|849801|849802|849803|849804|849805|849806|849807|849808|849809|849810|849811|849812|849813|849814|849815|849816|849817|849818|849819|849820|849821|849822|849823|849824|851948|852969|852970|853031|919986|929616|929617|929618|929619|929620|929621|929622|929623|929624|929625|929626|929627|939487|939488|939489|939490|939491|939492|939493|939494|939495|939496|939497|939498|939499|939500|939501|940546|941288|941289|951664|951665|951666|951667|951668|951669|951670|951671|951672|951673|951674|951675|951676|951677|951678|951679|951680|951681|951682|951683|959200|959201|959202|959203|959204|960369|970552|971191|971192|976681", + "text": "Melnick-Needles syndrome" + }, + { + "baseId": "26799", + "text": "Heterotopia, periventricular, with frontometaphyseal dysplasia" + }, + { + "baseId": "26801|26807", + "text": "Otopalatodigital spectrum disorder" + }, + { + "baseId": "26809|26815|26816|26817|26818|205799|430731|539110|623788|623789|860809|919985|919986|919987|919988|919989|920441", + "text": "Cardiac valvular dysplasia, X-linked" + }, + { + "baseId": "26810|481079|481083", + "text": "Intestinal pseudoobstruction, neuronal, chronic idiopathic, X-linked" + }, + { + "baseId": "26811|26813|26814|99651|99653|99654|99656|99657|99660|99666|99668|99670|99673|99674|99675|99679|99680|134505|134506|134507|134508|134509|134511|134512|134513|134514|134515|134516|134517|134518|134519|134520|134521|134522|134523|141089|177439|177710|177714|188021|188023|188031|191008|191359|191890|192831|192900|193109|193272|194223|194569|194660|194679|194703|194889|195294|195629|205515|205799|208964|208967|208968|208973|208974|208978|210460|210461|210462|210463|210464|210471|210472|210473|210476|210477|210478|210483|210484|210485|210486|210493|210496|210497|210504|210505|210506|210507|210509|210512|210514|210516|210518|210519|210521|210522|210525|210531|210532|210533|210540|232151|237396|243772|243773|243775|243776|243777|257784|257785|259150|259152|259154|259155|259158|259161|259163|259166|266603|267750|267764|270944|271084|271829|272989|273519|273844|273846|377906|377915|377927|377939|377943|377962|377974|377982|379072|379082|379088|379111|379167|379168|379192|379193|379195|379208|379209|379211|379978|379984|379985|379988|404121|404127|404131|404140|404146|404150|404470|404475|404476|404477|404481|426433|430717|430718|430721|430724|430725|430726|433576|442401|446563|446570|470587|470615|470626|471381|471385|471391|471395|471401|471404|471811|471812|471815|471817|471818|471819|471827|472093|472095|472096|472097|472098|472099|472100|485812|489115|490318|494079|507880|507902|508014|508046|508061|508070|508073|508441|508450|508451|508458|508471|508574|508583|508591|508595|510901|510904|510905|510907|510909|510912|510913|510917|510920|510921|510927|512622|534630|534635|534653|534671|534684|534700|534717|534726|534729|534731|534734|534744|535089|535092|535094|535096|538297|552472|552473|572356|573714|574355|574359|575364|580857|580869|580889|580890|581025|582011|586385|609038|613239|626293|649823|649824|649829|649830|649831|649833|649847|649853|649855|649859|649860|649862|649865|649868|649871|653291|653779|653780|684973|684974|685486|689411|689412|689413|689414|689416|689418|689419|689420|689421|689422|689425|689426|689430|689433|689434|690260|690261|690262|694831|694834|694840|729507|758385|760994|773897|773901|773903|773910|776965|786748|786749|786751|798220|821491|821492|849794|849795|849796|849797|849798|849799|849800|849801|849802|849803|849804|849805|849806|849807|849808|849809|849810|849811|849812|849813|849814|849815|849816|849817|849818|849819|849820|849821|849822|849823|849824|851948|852969|852970|853031|919986|929616|929617|929618|929619|929620|929621|929622|929623|929624|929625|929626|929627|939487|939488|939489|939490|939491|939492|939493|939494|939495|939496|939497|939498|939499|939500|939501|940546|941288|941289|951664|951665|951666|951667|951668|951669|951670|951671|951672|951673|951674|951675|951676|951677|951678|951679|951680|951681|951682|951683|959200|959201|959202|959203|959204|960369", + "text": "Frontometaphyseal dysplasia" + }, + { + "baseId": "26813|471830|539110|578589|805127|966023|966024", + "text": "FG syndrome 2" + }, + { + "baseId": "26814|539110", + "text": "Terminal osseous dysplasia" + }, + { + "baseId": "26819", + "text": "Menkes disease, mild" + }, + { + "baseId": "26820|26821|26822|26826|26831|26832|26834|98292|98293|98296|177054|196147|209207|209208|209218|209220|209222|209229|209241|209250|209253|209261|209264|209277|209291|232158|232163|245190|245194|245197|245199|245200|245201|245202|245203|268459|268461|270367|271496|360693|361659|378665|378675|379450|379450|379452|379459|379462|379470|379546|379550|380130|411498|422518|422519|446780|446782|470384|471061|471063|471064|471066|471070|471073|471757|471758|471765|471766|471769|471771|472011|472012|472013|472015|472016|472017|472019|472217|472218|472219|472220|472221|472222|472223|508243|508247|508254|508701|512772|534393|534979|534983|534986|534987|534988|534989|534991|534992|534993|534995|535001|535091|535093|535095|535100|535101|535102|535104|535106|535212|572609|574032|574035|574038|574043|574994|575082|575083|575460|575461|575462|580995|581008|581157|650261|650262|650263|650264|650265|650266|650267|650268|650269|650270|650271|650272|650273|650274|650275|650276|650277|650278|650279|650280|650281|650282|650283|650284|650285|653477|653720|653795|656804|656805|694940|694943|694944|694945|694946|694947|694948|694949|694950|694951|694952|706324|706325|729712|743480|743481|758669|758670|758671|774241|774242|774243|774247|778708|786927|786928|786929|821518|821519|821520|821521|850326|850327|850328|850329|850330|850331|850332|850333|850334|850335|850336|850337|850338|850339|853048|917785|920071|920072|920461|920462|929833|929834|929835|929836|929837|929838|929839|939694|939695|940569|941316|951903|951904|951905|951906|951907|951908|959366|959367|959368|959369|959370|959371|959372|959373|959374|959375|964907", + "text": "Cutis laxa, X-linked" + }, + { + "baseId": "26821|26823|26825|26827|26829|26830|26831|26832|26832|26834|98292|98293|98293|98295|98296|143211|177054|196147|196147|198649|209207|209207|209208|209209|209210|209211|209213|209214|209216|209217|209218|209218|209219|209220|209220|209221|209224|209225|209226|209227|209228|209229|209229|209230|209231|209232|209233|209234|209235|209236|209239|209240|209241|209241|209242|209243|209244|209245|209246|209247|209248|209249|209250|209250|209251|209252|209253|209254|209255|209256|209257|209258|209259|209260|209261|209261|209262|209263|209264|209264|209265|209266|209267|209268|209269|209270|209271|209272|209273|209274|209275|209276|209277|209278|209279|209281|209283|209284|209285|209286|209287|209288|209289|209290|209291|209292|209293|209294|209295|209296|209297|209298|209299|232158|232163|232163|245190|245194|245197|245199|245199|245200|245201|245201|245202|245203|268459|268461|270367|271496|360693|361659|378665|378675|379450|379450|379452|379459|379462|379470|379546|379550|380130|411496|411498|422518|422519|431024|446780|446782|470384|471061|471063|471064|471066|471070|471073|471757|471758|471765|471766|471769|471771|472011|472012|472013|472015|472016|472017|472019|472217|472218|472219|472220|472221|472222|472223|508243|508247|508254|508701|508731|512772|513695|534393|534979|534983|534986|534987|534988|534989|534991|534992|534993|534995|535001|535091|535093|535095|535100|535101|535102|535104|535106|535212|572609|574032|574035|574038|574043|574994|575082|575083|575460|575461|575462|580995|581006|581008|581157|614097|623171|650261|650262|650263|650264|650265|650266|650267|650268|650269|650270|650271|650272|650273|650274|650275|650276|650277|650278|650279|650280|650281|650282|650283|650284|650285|653477|653720|653795|656804|656805|679706|694940|694940|694943|694944|694944|694945|694946|694947|694948|694948|694949|694950|694951|694952|706324|706324|706325|706325|729712|729712|743480|743481|758669|758670|758671|774241|774241|774242|774243|774247|774252|778708|786927|786928|786928|786929|792506|792507|792508|792509|821518|821519|821520|821521|850326|850327|850328|850329|850330|850330|850331|850332|850333|850334|850335|850336|850337|850338|850339|853048|858594|929833|929834|929835|929836|929837|929838|929839|939694|939695|940569|941316|951903|951904|951905|951906|951907|951908|959366|959367|959368|959369|959370|959371|959372|959373|959374|959375|964636|980120|980121", + "text": "Menkes kinky-hair syndrome" + }, + { + "baseId": "26828", + "text": "Menkes disease, copper-replacement responsive" + }, + { + "baseId": "26832|26833|26834|26834|98292|98293|98296|177054|196147|209207|209208|209218|209220|209229|209241|209250|209253|209261|209264|209277|209291|232158|232163|245190|245194|245197|245199|245200|245201|245202|245203|268459|268461|270367|271496|360693|361659|378665|378675|379450|379452|379459|379462|379470|379546|379550|380130|411498|422518|422519|446780|446782|470384|471061|471063|471064|471066|471070|471073|471757|471758|471765|471766|471769|471771|472011|472012|472013|472015|472016|472017|472019|472217|472218|472219|472220|472222|472223|508243|508247|508254|508701|512772|534393|534979|534983|534986|534987|534988|534989|534991|534992|534993|534995|535001|535091|535093|535095|535100|535101|535102|535104|535106|535212|540473|572609|574032|574035|574038|574043|574994|575082|575083|575460|575461|575462|580995|581008|581157|650261|650262|650263|650264|650265|650266|650267|650268|650269|650270|650271|650272|650273|650274|650275|650276|650277|650278|650279|650280|650281|650282|650283|650284|650285|653477|653720|653795|656804|656805|694940|694943|694944|694945|694946|694947|694948|694949|694950|694951|694952|706324|706325|729712|743480|743481|758669|758670|758671|774241|774242|774243|774247|778708|786927|786928|786929|821518|821519|821520|821521|850326|850327|850328|850329|850330|850331|850332|850333|850334|850335|850336|850337|850338|850339|853048|917785|929833|929834|929835|929836|929837|929838|929839|939694|939695|940569|941316|951903|951904|951905|951906|951907|951908|959366|959367|959368|959369|959370|959371|959372|959373|959374|959375", + "text": "Distal spinal muscular atrophy, X-linked 3" + }, + { + "baseId": "26835|26836|26837|26838|26841|26846|26847|33490|49402|49403|49404|49405|49406|49407|49408|204263|204265|204266|204267|204268|204269|204270|204271|204272|204273|204274|204275|204276|339380|339382|339385|339394|339402|339406|339408|339414|339418|348898|348900|348904|348925|348926|348929|348933|348936|348941|348943|348954|348969|352291|352292|352294|352296|352297|352300|352301|352304|352305|352318|352320|352321|352323|352324|352338|352339|352902|352903|352905|352906|352907|352909|352911|352912|352913|352915|384508|432424|481351|482259|552262|578029|620931|792471|818376|850166|903073|903074|903075|903076|903077|903078|903079|903080|903081|903082|903083|903084|903085|903086|903087|903088|903089|903091|903092|903093|903094|903095|903096|903097|903098|903099|903101|903102|903103|903104|903105|903106|903107|903108|903109|903110|903479|918534|921032|921244|921246|921247|921249|962131|963389|963390|963391|964620|971212|971213|980403", + "text": "Dent disease type 1" + }, + { + "baseId": "26835|26842|26843|26844|962188", + "text": "Proteinuria, low molecular weight, with hypercalciuria and nephrocalcinosis" + }, + { + "baseId": "26839|26840|26845", + "text": "Nephrolithiasis, X-linked recessive" + }, + { + "baseId": "26839|920038", + "text": "X-linked recessive nephrolithiasis with renal failure" + }, + { + "baseId": "26841|204277|576346", + "text": "Hypophosphatemic rickets, X-linked recessive" + }, + { + "baseId": "26848|26859|26861|26883", + "text": "Rett syndrome, zappella variant" + }, + { + "baseId": "26848|26850|26854|26856|26858|26862|26862|26864|26868|26868|26869|26880|26882|26883|26883|45152|45153|45157|45158|101102|101102|141890|153060|153074|153076|153101|153111|153115|153127|153138|153138|153170|153173|153190|153200|153206|153335|153338|153340|153388|153432|153432|153444|153481|165851|165866|166488|166490|166510|166511|186595|187470|187478|187495|187564|187570|187572|187573|187647|362434|404014|534722|614500", + "text": "Mental retardation, X-linked, syndromic 13" + }, + { + "baseId": "26848|26850|26850|26851|26853|26854|26854|26858|26858|26862|26862|26863|26864|26867|26868|26868|26870|26872|26881|26883|26883|26885|45151|45152|45153|45154|45158|99461|101083|101084|101085|101086|101087|101088|101089|101091|101092|101093|101094|101095|101096|101097|101098|101101|101102|101102|101104|101105|141889|141890|141891|141892|141893|141894|141896|141897|141898|141899|141900|153036|153041|153046|153053|153057|153072|153073|153076|153098|153101|153104|153115|153125|153128|153135|153136|153138|153138|153144|153162|153165|153169|153170|153172|153173|153178|153181|153182|153189|153190|153195|153197|153207|153215|153217|153228|153233|153237|153241|153284|153285|153294|153306|153310|153311|153317|153333|153335|153336|153340|153341|153358|153359|153360|153366|153370|153376|153383|153385|153389|153391|153393|153396|153411|153412|153413|153418|153420|153432|153432|153434|153438|153441|153443|153446|153448|153459|153467|153468|153470|153481|153482|153490|153496|165851|165864|165865|166485|166486|166488|166488|166490|166490|166511|166521|166524|170093|186595|187495|187555|187559|187561|187566|187569|187570|190328|208948|208952|208955|237856|264950|265144|377892|377900|379123|404117|404466|404467|404468|404512|404514|413850|422439|426424|426425|470373|471357|472092|486780|507865|508424|508560|513391|534343|534503|534610|534613|534618|534620|534623|534661|534715|534722|534723|535084|535085|535087|538290|538506|572069|572070|572078|572331|572333|572335|572336|572338|573437|573439|573673|573675|574161|574162|574349|575277|575362|614500|649810|649811|649812|649813|649814|649815|649816|649817|649818|649819|649820|649821|649822|653287|653351|653699|653730|653732|689401|689404|689406|689408|717721|729506|773887|776964|800255|821486|821489|821490|822219|822220|849778|849779|849780|849781|849782|849783|849784|849785|849786|849787|849788|849789|849790|849791|849792|849793|851944|851946|929611|929612|929613|929614|929615|939480|939481|939482|939483|939484|939485|939486|940545|951658|951659|951660|951661|951662|951663|959198|959199|960368|964581", + "text": "Severe neonatal-onset encephalopathy with microcephaly" + }, + { + "baseId": "26850|26850|26853|26854|26854|26858|26858|26859|26862|26862|26868|26883|45156|137081|152984|152986|152987|152988|152989|152990|152991|152996|152999|153007|153008|153010|153013|153022|153068|153101|153138|153138|153190|153325|153340|153348|153370|153432|153481|165843|165847|165855|166488|166490|186595|187569|422439|614500|919982|919983", + "text": "Autism, susceptibility to, X-linked 3" + }, + { + "baseId": "26850|26854|26858|26862|26868|26877|26883|101102|153138|153340|153432|166488|166490|186595|187495|243965|243966|613957|614500|614620|963190", + "text": "Syndromic X-linked intellectual disability Lubs type" + }, + { + "baseId": "26854|153171|170092", + "text": "Encephalopathy, neonatal severeMental retardation, X-linked, syndromic 13Rett syndrome" + }, + { + "baseId": "26862|244018|263218|263234|263346|263378|512868|513946|513964|513983|514017|514111|514327|550126|626018|626019|800980|801184|905852|905853|905854|984026|984027|984028|984030|984031|984032|984033|984034|984035", + "text": "Behavioral abnormality" + }, + { + "baseId": "26886|26887|26888|26889|26890|26891|26895|26897|26898|26899|26900|38879|52304|52309|52311|52312|52320|52323|52332|52334|52339|52340|52346|52347|52350|52354|52357|52358|52362|52365|52373|52375|52376|52384|52388|52390|52391|52392|52395|52401|52403|52411|52412|52414|52418|52422|52426|52427|52428|52430|52435|52437|52439|52441|52444|52448|52452|52455|52458|52463|52464|52466|52472|52473|52474|52477|52479|52483|52487|52489|52493|52494|52495|52498|52499|52505|52508|52513|52514|52515|174811|174815|174817|174819|174820|175221|175225|175226|175227|175230|175231|175232|175236|175238|176897|178187|178237|178242|191866|193401|194096|230245|230249|230250|231384|231419|231423|231424|231425|236904|266350|269755|272763|315230|322075|322076|328159|328161|328165|328171|328181|329420|329437|374343|415310|425944|486060|489321|497000|497399|497818|497875|497895|508743|508747|511946|538427|546726|552405|612931|654690|654694|654696|654699|656096|656097|666262|713192|724746|724747|738301|738302|738304|738305|752982|752984|752988|752990|752991|760047|760097|768771|768774|768779|768784|768785|768787|768788|768793|768795|768798|768803|768805|768806|775791|784187|784192|784195|784200|784205|784208|784211|784216|784222|787785|787833|791180|796659|822055|822056|839027|839030|839032|839039|839040|839046|839048|839049|839051|839055|839062|839067|839073|839074|839077|839083|839084|839085|852400|852407|868809|868817|868834|918366|956687|956689|956697|979148|979149|979150|979151|979152|979153|979154|979155|979156|979157|979158|979159|979160|979161|979162|979163|979164|979165|979166|979167|979168|979169|979170|979171|979172|979173|979174|979175|979176|979177|979178|979179|979180|979181|979182|979183|979184|979185|979186|979187|979188|979189|979190|979191|979192|979193|979194|979195|979196|979197|979198|979199|979200|979201|979202|979203|979204|979205|979206|979207|979208|979209|979210", + "text": "Usher syndrome, type 1B" + }, + { + "baseId": "26887|26889|26891|26892|26894|26895|26898|26899|26903|38881|52303|52304|52304|52305|52305|52306|52308|52309|52311|52312|52313|52315|52319|52320|52321|52323|52326|52328|52330|52331|52332|52333|52334|52336|52338|52339|52339|52340|52343|52345|52346|52346|52347|52348|52349|52350|52351|52352|52353|52354|52355|52356|52357|52358|52359|52360|52361|52362|52363|52364|52365|52367|52369|52370|52371|52373|52373|52376|52377|52378|52378|52378|52383|52385|52385|52388|52388|52390|52392|52393|52394|52394|52395|52396|52397|52399|52400|52401|52403|52404|52407|52407|52411|52411|52412|52414|52414|52416|52417|52418|52421|52422|52424|52425|52426|52427|52428|52430|52431|52432|52434|52435|52437|52438|52439|52440|52441|52442|52444|52446|52448|52449|52452|52453|52456|52457|52458|52458|52460|52461|52462|52463|52464|52465|52466|52467|52468|52469|52472|52473|52474|52475|52475|52477|52479|52483|52486|52487|52488|52492|52493|52494|52495|52496|52497|52497|52498|52499|52501|52504|52505|52508|52509|52513|52514|52515|53126|53126|129781|174810|174811|174812|174813|174814|174818|174819|174820|175221|175222|175225|175226|175227|175233|175236|175238|175238|175379|175519|175522|176872|176872|176880|176881|176882|176890|176894|176897|178183|178185|178187|178187|178237|178238|178239|178240|178241|178242|178245|178248|178280|178282|178299|178300|178301|178301|188830|188830|188830|193260|194566|194658|230238|230244|230245|230245|230249|230250|231364|231364|231366|231368|231369|231384|231384|231385|231387|231417|231417|231419|231420|231420|231421|231423|231424|231425|231426|231427|237612|237613|237614|237614|237614|238052|268060|269755|272763|275242|315220|315224|315230|315231|315242|315243|315244|315250|315250|315252|315256|315257|315258|315259|322038|322039|322043|322044|322052|322054|322055|322071|322072|322075|322076|322080|322082|322083|322084|322085|322086|322091|322094|322095|328157|328159|328161|328164|328165|328171|328172|328177|328181|328182|328183|328184|329415|329417|329419|329420|329422|329423|329424|329425|329427|329429|329431|329432|329437|329438|329439|329446|329447|329453|358080|358081|359920|360049|360049|361501|361502|374343|384410|389240|389241|389242|389242|389243|389244|408476|425944|431762|431763|431763|431766|431767|440019|444891|482004|488902|491741|493338|497208|497209|497399|497625|497811|497812|497820|497822|497860|508737|508743|514401|546382|546385|546387|546394|546395|546399|546403|546404|546408|546413|546417|546423|546425|546426|546428|546431|546436|546438|546440|546446|546457|546461|546463|546466|546469|546494|546496|546508|546520|546526|546527|546530|546599|546607|546607|546611|546612|546614|546625|546628|546637|546642|546645|546659|546664|546673|546674|546687|546688|546688|546691|546693|546694|546696|546696|546698|546700|546702|546705|546708|546709|546710|546716|546718|546720|546721|546723|546725|546726|546727|546731|546733|546734|546742|546742|546744|546746|546747|546754|546755|546756|546758|546761|546763|546766|546767|546780|546784|546790|546793|546803|546811|546814|546815|546824|546826|546828|546836|546838|546845|546856|546866|546867|546870|546873|547003|547006|547013|547015|547021|547031|547033|547034|547035|547038|547041|547042|547045|547046|547052|547055|547058|547060|547072|547079|547079|552405|553265|553266|553267|553268|615816|615841|615842|654690|713192|738305|760047|768788|768806|784189|784220|791171|791172|791173|791174|791175|791176|791177|791178|791179|791180|791181|839045|839075|857681|857682|868803|868804|868805|868806|868807|868808|868809|868810|868811|868812|868813|868814|868815|868816|868817|868818|868819|868820|868821|868822|868823|868824|868825|868826|868827|868828|868829|868830|868831|868832|868833|868834|868835|868836|868837|868838|868839|868840|868841|868842|872137|872138|872139|872140|872141|872142|872143|872144", + "text": "Deafness, autosomal recessive 2" + }, + { + "baseId": "26891|26896|26902|38879|38880|52304|52304|52305|52311|52312|52320|52321|52323|52331|52334|52339|52340|52346|52347|52349|52350|52353|52355|52356|52356|52357|52358|52359|52362|52363|52364|52365|52369|52370|52371|52373|52378|52384|52385|52388|52390|52392|52394|52395|52396|52397|52401|52403|52411|52412|52414|52414|52416|52417|52418|52421|52422|52424|52425|52426|52427|52428|52430|52435|52438|52439|52441|52442|52444|52446|52448|52449|52453|52457|52458|52460|52463|52466|52467|52472|52473|52474|52475|52477|52479|52486|52487|52492|52493|52494|52497|52498|52501|52504|52508|52509|52513|52514|53126|174812|174814|174818|174820|175221|175227|175233|175235|175238|175238|175379|175519|176872|176881|176894|178187|178187|178237|178238|178239|178240|178242|178245|178258|178300|178301|188830|188830|230238|230245|231364|231366|231368|231384|231419|231420|231423|231424|231425|237614|268060|269755|272763|275242|315220|315224|315230|315231|315242|315243|315244|315250|315252|315256|315257|315258|315259|322038|322039|322043|322044|322052|322054|322055|322071|322072|322075|322076|322080|322082|322083|322084|322085|322086|322091|322094|322095|328157|328159|328161|328164|328165|328171|328172|328177|328181|328182|328183|328184|329415|329417|329419|329420|329422|329423|329424|329425|329427|329429|329431|329432|329437|329438|329439|329446|329447|329453|360049|361501|361502|425944|488902|497208|497209|497399|497625|497811|497820|497822|497860|508737|508743|513605|538427|546440|546696|546742|547079|552405|625875|713192|738305|760047|768788|768806|784189|784220|788859|839045|839075|861637|868803|868804|868805|868806|868807|868808|868809|868810|868811|868812|868813|868814|868815|868816|868817|868818|868819|868820|868821|868822|868823|868824|868825|868826|868827|868828|868829|868830|868831|868832|868833|868834|868835|868836|868837|868838|868839|868840|868841|868842|872137|872138|872139|872140|872141|872142|872143|872144|918372|918503|919392|919393|920303|964370|970945", + "text": "Deafness, autosomal dominant 11" + }, + { + "baseId": "26904|26905|26906|26907|26908|26909|26910|26911|26912|26913|26914|33906|33908|33909|33910|98353|98354|98355|177701|177702|186942|186943|186944|186945|193377|255375|265241|271735|272580|274348|275085|275312|275338|323422|323425|323426|323436|323438|323439|323442|333122|333127|333130|333132|333134|333136|333145|333146|339949|339956|339957|339962|339973|339976|339980|339984|341363|341364|341366|341367|358325|358326|358327|358328|358329|358330|358331|358332|358333|358334|358335|358336|358337|358338|358339|360304|373697|373702|373707|373710|374352|374355|374358|374364|374757|374758|389205|422048|431016|465199|465319|488353|489448|492386|493494|504988|505409|547593|547595|547598|547599|547601|547606|547607|547611|547615|547616|547617|547619|547631|547861|547864|547869|547873|547874|547876|548265|548268|548270|548275|548278|567290|567293|585874|589134|623379|643564|643565|652760|653068|656310|656311|688494|693747|703366|754708|754709|754711|770367|770368|785039|787965|788173|791486|791487|791488|791489|801725|801726|801727|801728|820739|820758|842736|842737|842738|842739|851631|852784|874200|874201|874202|874203|874204|874205|874206|874207|874208|874209|874210|876579|876580|876581|876582|917211|917537|927430|927431|927432|937082|940331|949030|949031|957518|957519|957520|957521|957522|972223|972224|972225|972226|972227|977272|979681|979682|979683|979684|979685|979686|979687|979688|979689", + "text": "Tyrosinemia type I" + }, + { + "baseId": "26907", + "text": "Fumarylacetoacetase pseudodeficiency" + }, + { + "baseId": "26916|456732|970844", + "text": "Trypsinogen deficiency" + }, + { + "baseId": "26925|26926|26927|26928", + "text": "Ghosal hematodiaphyseal syndrome" + }, + { + "baseId": "26928|425733|490070|614310|614524", + "text": "Ghosal hematodiaphyseal dysplasia" + }, + { + "baseId": "26929|26930|26931|26932|26933|26934|26935|26936|26937|26938|26939|26940|26941|26942|26943|26944|79070|79077|79078|79079|79080|79082|79083|79086|79087|79088|79095|186680|186681|186682|186683|186684|186685|186686|186687|186688|186689|186690|186691|186692|186693|186694|251429|251430|251431|251433|251434|264191|269616|271336|275318|293049|293050|293057|293060|293064|293066|293075|293076|293078|293080|293084|293094|294451|294453|294454|294455|294467|297921|297924|297925|297937|297939|297947|297998|298000|298009|298010|298031|298032|298035|298036|357337|357338|357339|357340|357341|357342|357343|357344|357345|357346|357347|357348|357349|357350|357351|357352|357353|367624|421485|443610|481715|543100|543101|543102|543104|543105|543107|543113|543115|543376|543378|543381|543385|543391|543394|543395|543396|543398|543399|543401|543403|543404|543406|543407|543408|543410|543411|543412|543416|543420|543444|543447|543452|543453|543455|543458|543462|543464|543467|543471|543482|543484|543486|543487|543489|543497|543499|615394|615395|615396|615397|615398|615399|615400|615401|615402|615403|615404|615405|615406|615407|615408|615409|615410|615411|615724|620160|698456|709277|720882|734564|748857|764415|775064|801505|861592|890577|890578|890579|890580|890581|890582|890583|890584|890585|890586|890587|890588|890589|890590|890591|890592|890593|890594|890595|890596|890597|890598|890599|890600|890601|890602|891781|891782|891783|891784|891785|961269", + "text": "Hereditary factor XI deficiency disease" + }, + { + "baseId": "26930|26931|26940|186682|264191|271336|293060|293064|298010|367624|443610|615400|698456|720882|734563|734564|748856|748857|764412|764415|764416|774895|775064|890580|891781|978069|978070|978071|978072|978073|978074|978075|978076|978077|978078|978079|978080|978081|978082|978083|978084", + "text": "Plasma factor XI deficiency" + }, + { + "baseId": "26931", + "text": "Factor XI" + }, + { + "baseId": "26946|106001|106002|106003|106004|106006|250889|250890|288437|288439|288442|288448|288453|288454|288456|288458|288465|288466|288468|288472|288477|288478|288482|288487|288489|288492|288494|288495|288496|288499|288501|288505|288507|288513|288514|288517|288519|288524|288529|288532|288533|289179|289181|289190|289191|289193|289195|289197|289198|289199|289219|289233|289234|289237|289239|289248|289249|289250|289256|289260|289261|289262|289264|289267|289269|289279|289280|289281|289282|292182|292183|292185|292186|292187|292188|292192|292193|292194|292200|292205|292206|292210|292212|292213|292214|292215|292216|292218|292221|292227|292234|292236|292239|292245|292246|292250|292258|292311|292312|292314|292316|292326|292328|292333|292335|292336|292337|292340|292342|292343|292344|292347|292349|292350|292351|292358|292362|292363|292364|292366|292368|292369|292370|292383|292385|292387|292388|292389|292399|292402|513528|620100|708516|708518|733735|887771|887772|887773|887774|887775|887776|887777|887778|887779|887780|887781|887782|887783|887784|887785|887786|887787|887788|887789|887790|887791|887792|887793|887794|887795|887796|887797|887798|887799|887800|887801|887802|887803|887804|887805|887806|887807|887808|887809|887810|887811|887812|887813|887814|887815|887816|887817|887818|887819|891557", + "text": "Orotic aciduria" + }, + { + "baseId": "26947|26947|26948|26948|26949|26949|26950|26951|26953|26954|26955|26956|26958|26960|26961|26962|26963|26964|26966|75541|75543|75545|75551|75552|75555|75556|98541|98544|98546|98547|106588|177221|177778|190226|190227|192200|192201|192202|195857|224714|224715|224716|224717|224718|224719|228213|228214|259780|265213|265242|293215|453630|487045|488258|488285|493667|543006|543008|543013|543015|543021|543023|543037|543039|543164|543167|543174|543176|543177|543179|543180|543182|543197|543201|543203|543205|543212|543213|543216|543218|543221|543232|543234|543237|543239|543240|543244|543246|543251|543252|543253|543255|543259|543263|543265|543267|543269|543270|543272|543275|543276|543278|543280|543282|543283|543284|543285|543286|543292|543293|543294|543295|543296|543297|543303|543305|543306|543309|543310|543312|543314|543316|543318|543319|543320|543321|543323|543325|543328|543329|543331|543332|543335|543340|543343|543344|543345|543347|543349|543352|543364|543531|543538|543540|543542|543545|543546|543549|543552|543606|543609|543610|543618|543620|543625|543629|543671|543677|543695|543696|543698|543699|543700|543709|543713|543720|543722|612085|621165|790426|816406|921443|970781", + "text": "Hurler syndrome" + }, + { + "baseId": "26947|26948|26949|26950|26956|26958|26959|26960|26961|26962|26964|26966|75541|98531|98532|98533|98534|98535|98537|98539|98543|98544|98545|98546|98547|98548|98549|98550|98552|98553|98554|98556|98557|98558|177221|177778|190226|190227|192200|192201|192202|193396|195857|224714|224715|224716|224717|224718|224719|224720|251307|251309|259780|265213|265229|265308|267722|270479|291836|291845|293202|293212|293213|293214|293215|296312|296502|296521|296527|296538|296558|300068|300111|300112|300121|359596|414951|421459|421460|438266|453187|453618|453630|487045|488258|488285|493667|519674|519934|519935|519946|520291|520527|520568|536655|543021|543037|543039|543176|543182|543201|543203|543213|543234|543265|543282|543283|543284|543305|543306|543319|543325|543328|543364|543540|549563|559551|559553|559821|563355|621165|625880|625881|625882|625915|631842|631843|631844|631845|632532|632533|632534|632535|651143|651265|709085|709086|709087|720677|720678|720679|720680|721122|721123|721124|734339|734340|734343|734344|734345|734346|734347|734776|748582|748585|748587|748588|748589|748591|749112|759258|759380|764212|764219|764221|764222|764224|764226|764227|764650|764651|774866|779003|779171|781828|781829|781832|781833|781835|781836|781838|787190|828629|828630|828631|828632|828633|828634|828636|828637|828638|828639|828640|828641|828642|828643|828644|829539|829540|829541|891863|891864|891865|891866|891867|891868|891869|891870|891871|891872|891873|891874|895975|895976|895977|895978|895979|896010|906010|916917|916918|916919|916920|916934|923375|923376|932106|932107|932476|932477|939953|940770|940771|943733|943734|943735|944148|953610|953611|953612|953613|953614|953615|953616|953617|953618|953619|953868|960526|961843|963262|975779|978003|978004|978005|978006|978007|978008|978009|978010|978011|978108|978109", + "text": "Mucopolysaccharidosis type 1" + }, + { + "baseId": "26947|26948|26948|26949|26957|224715|623136", + "text": "Mucopolysaccharidosis, MPS-I-S" + }, + { + "baseId": "26947|26947|26948|26948|26949|26958|26959|26961|26963|26964|26966|543265|828632|918912|971847|971848|971849|971850|971851", + "text": "Mucopolysaccharidosis, MPS-I-H/S" + }, + { + "baseId": "26962", + "text": "IDUA pseudodeficiency" + }, + { + "baseId": "26967|26968|26968|26969|26969|26970|26970|26971|26971|26971|26972|26973|26973|26974|48325|48326|94405|94405|102137|103452|103456|103461|103463|103464|103466|103470|103470|103473|103478|103487|103491|103491|103493|103512|103512|103523|103524|103524|103525|103526|135084|135085|135085|135086|142016|142016|142017|142017|190748|190748|200230|231816|231816|231819|231819|231821|244709|244711|244712|244712|254395|254396|254397|315956|315957|315960|315963|323148|323150|323152|323152|323159|323188|323199|323220|329210|329211|329231|329232|329248|329248|329262|329265|330383|330386|330389|330396|330408|330408|330430|330432|444905|462167|481424|526895|527212|537210|565034|566309|571185|571186|571187|624452|640599|640600|640601|640602|640602|640603|640604|640605|652649|775896|779494|779494|784267|799664|800361|839260|839261|839262|839263|839264|839265|839266|839267|839267|839268|839269|869216|869217|869218|869219|869220|869221|869222|869223|869224|869225|869226|869227|935901|935902|935903|935904|935905|940240|940241|941020|947775|956742|956743|960021|960772", + "text": "Mevalonic aciduria" + }, + { + "baseId": "26968|26968|26968|26969|26969|26970|26970|26971|26971|26971|26972|26972|26973|26973|26974|48324|48325|48326|94405|94405|94406|102137|103450|103451|103452|103452|103453|103454|103455|103456|103456|103457|103458|103459|103460|103461|103461|103462|103463|103463|103464|103464|103465|103466|103466|103468|103469|103470|103470|103471|103472|103473|103473|103474|103475|103476|103477|103478|103478|103479|103481|103483|103484|103485|103486|103487|103487|103488|103489|103490|103491|103491|103492|103493|103493|103494|103495|103496|103497|103498|103499|103500|103501|103502|103503|103504|103505|103507|103508|103509|103510|103511|103512|103512|103513|103514|103515|103516|103517|103518|103519|103520|103521|103522|103523|103523|103524|103524|103525|103526|103526|103527|103528|103529|103530|103531|103532|103533|103785|135084|135085|135085|135086|142016|142016|142017|142017|190748|190748|200230|231816|231816|231819|231819|231821|244709|244711|244712|244712|254395|254396|254397|315956|315957|315960|315963|323148|323150|323152|323152|323159|323188|323199|323220|329210|329211|329231|329232|329248|329248|329262|329265|330383|330386|330389|330396|330408|330408|330430|330432|444905|462167|526895|527212|537210|565034|566309|571185|571186|571187|624452|640599|640600|640601|640602|640602|640603|640604|640605|652649|775896|779494|779494|784267|791192|799664|800362|839260|839261|839262|839263|839264|839265|839266|839267|839267|839268|839269|869216|869217|869218|869219|869220|869221|869222|869223|869224|869225|869226|869227|935901|935902|935903|935904|935905|940240|940241|941020|947775|956742|956743|960021|960772|961963", + "text": "Hyperimmunoglobulin D with periodic fever" + }, + { + "baseId": "26968|103471|323176", + "text": "MVK-Related Disorders" + }, + { + "baseId": "26976|26977|26978|26979|26980|102511", + "text": "MAPLE SYRUP URINE DISEASE, CLASSIC, TYPE IB" + }, + { + "baseId": "26976|76679|102455|102492|102501|102508|102511|102514|186721|207423|308960|357521|369081|487098|699678|710620|710621|765879|765888|782671|832583|916978|978358|978359|978360|978361|978362|978363|978364|978365", + "text": "Maple syrup urine disease type 1B" + }, + { + "baseId": "26981|26984|26989|26990|26992|99919|623123|623124", + "text": "Maple syrup urine disease type 2" + }, + { + "baseId": "26982|26983|26991", + "text": "Maple syrup urine disease, thiamine-responsive, type II" + }, + { + "baseId": "26985|26986|26987|26988", + "text": "Intermediate maple syrup urine disease type 2" + }, + { + "baseId": "26993|26994|26995|26996|26997|40041|98510|176929|192195|280088|280089|280093|280413|280414|280416|280428|280432|281738|281739|281744|281746|281765|281891|281892|281916|281919|353100|364921|365136|365141|365143|425351|442782|442783|498531|498538|511253|511254|513508|515792|540999|541002|541004|541006|541008|541015|541016|541113|541117|541118|541120|541121|541128|541130|541131|541133|541134|541136|541137|541139|541151|541157|557253|619994|627622|627623|627624|627625|627626|627627|690556|690557|690558|696612|746339|746340|758889|761784|761785|761788|761789|761790|761791|780630|789953|818946|823753|823754|850767|850768|864138|864139|864140|864141|864142|864143|864144|864145|864146|920145|921938|921939|921940|930416|930417|941860|952351|952352|952353|960426|971669|971670|971671|971672|971673|977520|977521|977522|977523|977524|977525|977526", + "text": "Deficiency of hydroxymethylglutaryl-CoA lyase" + }, + { + "baseId": "26998|26999|27000|27001|27002|39892|39894|101491|101492|101494|101495|101497|101498|176995|191571|196017|212656|221803|240439|240440|243908|253247|271349|273772|274111|306203|306204|306205|306206|310311|310312|310318|310319|315566|315567|315603|315610|315755|315757|315761|315763|315765|315782|315789|389212|396782|488264|491021|492066|523842|584405|584568|587816|620312|620808|626183|678068|678069|687328|900614|900615|900616|900617|900618|900619|900620|900621|900622|900623|900624|900625|900626|900627|900628|900629|900630|900631|906254|962720", + "text": "Infantile nephronophthisis" + }, + { + "baseId": "27003|27004|27005|27007|27008|27009|27010|27011|48683|48684|48685|140795|140797|140798|140799|140800|140801|140803|140804|140805|140806|200131|200137|200139|200140|200141|200144|252560|301484|301488|301489|301493|301494|301500|301501|301503|301504|304711|304712|304731|304734|304735|304737|304738|304739|304740|304742|304743|304760|309367|309368|309370|309371|309499|309501|309502|309504|309505|357555|357556|357557|357558|357559|357560|357561|368842|370664|370677|406953|406954|406957|501526|501757|544102|544104|544107|544111|544350|544354|544357|544364|544367|544426|544459|544467|544472|544473|544479|544483|563929|566277|635447|635448|635449|655765|710696|735864|735867|744168|750333|750334|750335|759528|765983|765985|775273|779204|782723|782724|782725|782727|787395|789369|819779|832781|832782|832783|832784|897233|897234|897235|897236|897237|897238|897239|897240|897241|897242|897243|897244|897245|897246|897247|897248|897249|897250|897251|897252|897253|897254|897255|919068|945310|954979|954980|960619|971974|971975|971976|971977|971978|971979|971980|978382|978383|978384|978385", + "text": "Maple syrup urine disease, type 3" + }, + { + "baseId": "27005|27010|357558|620248", + "text": "DLD-Related Disorders" + }, + { + "baseId": "27012|27013|27014|27015|27016|27017|27018|27019|27020|27021|27023|27024|27025|27026|27027|27028|27029|27030|70674|70675|70676|70677|70678|70679|70680|70681|70682|70683|70684|70685|70686|70687|70688|70689|70690|70691|70692|70693|70694|70695|70696|70697|70698|70699|70700|70701|70702|70703|70704|70705|70706|70708|70709|70710|70711|70712|70713|70714|70715|70716|70717|70718|70719|70720|70721|70722|70723|70724|70725|70726|70727|70728|70729|70730|70731|70732|70733|70734|70735|70736|70737|70738|70739|70740|70741|70742|70743|70744|70745|70746|70747|70748|70749|70811|70812|70864|70865|70866|70867|70868|70869|70870|70871|70872|70873|70874|70875|70876|70877|70878|70879|70880|71054|203911|205141|213593|227333|237115|237242|237282|237289|237338|248726|251226|251227|253562|253563|253564|253565|253566|253567|253568|253569|264336|291109|291112|291113|291119|291120|292063|292065|292079|292083|292086|292091|295431|295432|295433|295434|295436|295437|295623|295625|295626|295627|295637|308613|308625|308627|308631|308632|308636|308637|308643|308647|313080|313082|313083|313089|313113|313116|313117|313123|313124|313138|313139|313145|313148|313154|313157|313165|313201|313206|313207|313209|318977|318985|318987|318989|318990|318993|318994|318997|319014|319022|319028|319031|319033|319603|319606|319609|319613|319614|319629|319635|319639|319640|319650|353859|357818|363717|367323|389138|424282|431014|446441|452507|452508|452519|452827|452830|458654|458662|458739|459252|459253|459262|459265|459266|459270|459272|459558|459559|459560|459563|459569|459572|459575|459579|459581|459583|459586|459589|459593|459596|459615|459628|459630|459631|459634|459639|459643|459645|459648|459652|459665|459667|460104|460106|460110|460113|460119|460127|460132|460137|460143|460148|460159|460160|466021|466733|466745|466751|466752|466792|467006|467012|467014|487389|500588|508839|511841|519408|519410|519416|519417|519634|519636|519640|519642|523837|524110|524412|524659|524660|524662|524665|524671|524872|524876|524893|524897|524905|524998|525001|525004|525012|525016|525018|525177|525179|525180|525184|530781|530790|542982|542984|542985|542986|542990|542994|542998|543004|543123|543125|543127|543129|543135|543140|543143|543145|543154|543158|543161|543162|543236|543238|543241|543245|543247|543248|543249|543250|543254|543256|543258|543260|543261|543266|544918|544920|544925|544928|544930|544932|544938|544940|544946|544950|544951|544952|544956|544957|544958|544960|545197|545199|545201|545203|545205|545218|545223|545232|545237|545242|545245|545247|545249|545251|545253|545262|545263|545300|545301|545309|545312|545313|545332|545334|545336|545338|545341|545344|545352|545356|545357|545550|545551|545553|545557|545566|545569|545578|545582|545584|545586|545595|545600|545603|545605|545607|545609|545610|545615|545616|545617|545621|545624|545628|559040|559042|563293|563298|563300|563301|564104|564105|564106|565954|565958|565963|568324|569138|569143|569144|569146|569148|569149|569170|570556|570557|577125|583127|612266|612286|612287|622396|623135|623150|623177|631545|631546|631547|631548|631549|631550|631551|631552|631553|631554|631555|638360|638361|638362|638363|638364|638365|638366|638367|638368|638369|638370|638371|638372|638373|638374|638375|638376|638377|638378|638379|638380|638381|638382|638383|638384|638385|645007|645008|649578|651104|651118|651208|651850|651863|651864|651867|651957|652080|652219|652224|688665|691445|692681|692682|692683|692684|692685|692686|695444|695445|695446|695447|698170|698171|698172|701028|701029|701030|701031|701032|701033|701034|701035|711998|723597|723598|723599|723600|723601|723602|723603|737162|737163|737167|737169|737170|737171|748371|751743|751744|751746|751747|759761|759849|764011|767446|767447|767450|767451|767454|767456|767457|767459|767460|774856|775008|775421|775423|777849|779408|779430|781741|783425|783427|783429|783430|783432|783433|783434|788837|790405|790406|790407|790915|793035|794343|794344|794345|794346|794348|794349|794351|794352|798620|801679|801680|819408|819409|820147|820148|820149|820150|820151|820152|820153|820154|820155|820156|820157|820158|820159|820160|820161|820162|820163|820886|822030|828316|828317|828318|828319|828320|828321|828322|828323|828324|828325|836218|836219|836220|836221|836222|836223|836224|836225|836226|836227|836228|836229|836230|836231|836232|836233|836234|844361|844362|844363|844364|844365|844366|844367|851347|851744|852191|852205|852207|852524|852672|861570|861571|889379|889380|889381|889382|889383|889384|889385|889386|889387|889388|889389|889390|891689|902269|902270|902271|902272|902273|902274|902275|902276|902277|902278|902279|902280|902281|902282|902283|902284|902285|902286|902287|902288|902289|903423|903424|903425|919237|923261|923262|925622|925623|925624|925625|925626|925627|925628|927963|927964|932012|932013|934801|934802|934803|934804|934805|934806|934807|934808|934809|937628|940152|940153|940940|943618|943619|943620|946656|946657|946658|946659|946660|946661|946662|946663|946664|946665|949591|949592|949593|949594|953529|953530|953531|953532|953533|953534|953535|953536|953537|953538|953539|955866|955867|955868|955869|955870|955871|955872|955873|955874|955875|955876|955877|955878|955879|955880|955881|955882|955883|957887|960517|960518|960705|966793|972045|972046|972047|972048|972049|972050|972051|972052|972053|972054|972055|972056|972057|972058|972059|972060|972061|972062|972063|972064|972065|972066|972067|972068|973020|977975|977976|977977|977978|978593|978594|978595|978596", + "text": "Non-ketotic hyperglycinemia" + }, + { + "baseId": "27024|48278|79399|79402|79404|79418|203022|384510", + "text": "Generalized epilepsy" + }, + { + "baseId": "27031|27032|27033|27034|27035|34179|34180|34181|34182|34183|34184|34185|34186|34187|34188|34189|34190|34191|38457|187131|190401|190402|190807|191790|191898|254969|254970|254971|254972|254977|254979|254981|254982|254983|254984|254988|254990|320672|320675|320676|320687|320689|320690|329492|329493|329495|329496|329499|336071|336078|336081|336089|337998|338004|338005|490554|513344|528204|539053|566499|568106|568112|568121|572811|572813|620483|620484|620485|642497|642498|642499|642500|642501|642502|642503|652350|652469|714151|714152|725683|744805|754070|779629|779633|791412|816002|820628|841549|841550|851557|852745|871920|871921|871922|871923|871924|871925|871926|871927|871928|871929|871930|872368|872369|872370|872371|920335|927096|927097|936635|936636|948584|948585", + "text": "Glycogen storage disease, type VI" + }, + { + "baseId": "27036|27037|27038|27039|27040|27041|27042|27043|27044|27045|27046|27047|27048|27049|33913|33914|33915|38395|102139|141108|142894|153573|186977|186978|186979|209409|211808|211809|211810|211811|211812|211814|211815|211816|256175|269769|273336|328576|328577|328582|328584|328586|328600|328603|338515|338519|338522|338528|338531|338536|338537|338540|338552|338554|338555|338557|344606|344615|344616|344617|344618|344623|344624|344631|344633|344639|344640|344642|345996|346002|346006|346007|346011|346014|346016|346024|346025|346026|346028|346033|346048|358438|358439|358440|358441|358442|358443|358444|358445|361015|375019|375032|466812|468100|493558|506058|506367|506832|512869|531157|531275|548181|548184|548189|548191|548192|548194|548195|548196|548198|548206|548207|548217|548508|548511|548512|548519|548520|548522|548530|548532|548942|548947|548959|551628|569062|645912|645913|645914|645915|652781|653460|727194|740781|740782|740783|740784|740785|740786|755870|755871|785581|785582|785583|788123|791749|791750|791751|791752|801733|801734|801735|821044|845352|845353|845354|845355|845356|857623|877605|877606|877607|877608|877609|877610|877611|877612|877613|877614|877615|877616|877617|877618|877619|877620|877621|877622|877623|877624|877625|877626|877627|877628|877629|877630|877631|877632|877633|877634|877635|880523|880524|917244|917245|920503|928268|928269|928270|928271|937937|949923|958114|961880|961881|961976|970243|979903|979904|979905", + "text": "Glycogen storage disease due to glucose-6-phosphatase deficiency type IA" + }, + { + "baseId": "27050|27051|27052|27053|27054|27055|27056|27057|27058|27059|27060|27061|27062|27063|27064|47470|47471|47472|47473|47474|47475|47478|47480|47481|47482|47483|47484|47485|47486|47487|47488|98667|98668|98671|98672|99136|99137|136392|177910|190739|191344|191756|192617|192721|193405|193406|195589|195869|195900|200029|200031|200032|200033|200036|200037|200251|200252|200253|200256|214549|214550|214551|214552|214553|214554|214883|214884|214885|214886|214887|214888|214889|214890|214891|214892|214893|214894|214895|214896|214897|214898|214899|214900|227253|237131|237213|248623|254770|254771|254772|259751|264713|273639|273955|273956|288910|288917|288918|288924|288925|288927|288928|289618|289629|289642|289650|289652|289653|289654|289666|289680|292619|292620|292622|292628|292633|292829|292830|292844|292846|292848|292858|292859|292862|292863|292874|318785|318786|318787|318791|327138|327147|327150|327151|333268|333269|333271|333273|333279|334968|334971|334974|334976|334979|334988|334991|366954|367197|367207|367238|372603|373287|373548|373566|373574|375502|421950|433774|438258|445107|451865|452213|452332|462561|463324|463328|463329|463412|463439|463440|487044|500537|504707|505110|513529|513939|519108|519110|542751|542752|542756|542758|542764|542767|542768|542770|542774|542775|542780|542783|542786|542790|542907|542909|542912|542915|542921|542923|542924|542926|542927|542936|542938|542946|542947|542949|542950|542952|542954|542955|542957|542959|542961|542963|542966|542968|542969|542972|542974|542975|542976|542978|542979|542980|542988|542989|546738|546739|546741|546743|546745|546749|546757|546760|546762|546764|546891|546899|546902|546904|546909|546910|546911|546915|547050|547054|547059|547063|547070|547077|547078|547080|547267|547269|547278|547281|547282|547287|547291|547294|561214|562445|562450|562456|562477|567141|567142|568230|568235|572174|609866|610695|610896|610898|612263|612298|620108|620109|620462|620463|621827|622327|623157|623158|625839|625840|625841|625842|625843|625844|625845|625846|625847|625848|625849|625850|625851|625852|625853|625854|625855|625856|625857|625858|625859|625860|625861|625862|625863|625864|625865|625866|630959|630960|630961|630962|630963|630964|641512|641513|641514|641515|641516|641517|641518|641519|651026|652264|652268|652382|652505|652752|655521|655523|655524|656193|691310|691311|691312|691313|691314|693311|693312|693313|695175|697854|702563|708603|713802|713803|720201|738908|738909|738910|744765|744774|748029|748031|748032|753655|753656|753657|753658|760276|763652|769373|769374|769375|769376|769378|769379|774914|781561|784501|784503|784504|784508|784511|788100|790335|790336|790337|791289|801719|818396|818404|819328|820531|820532|820533|820535|820536|820537|820538|827567|827568|827569|827570|827571|827572|840485|840486|840487|840488|840489|840490|840491|840492|852517|852705|858568|870612|870613|870614|870615|870616|870617|870618|870619|870620|870621|870622|870623|870624|870625|870626|870627|872297|872298|888044|888045|888046|888047|888048|888049|888050|888051|891575|917434|918800|923060|923061|931776|931777|931778|931779|931780|936323|936324|940276|941046|943341|943342|943343|953341|953342|953343|953344|953345|957013|959681|960068|960069|966790|970190|977797|979341|979342|979343|979344|979345|979346|979347|979348|979349|979350|979351|979352|979353|979354|979355|979356", + "text": "Propionic acidemia" + }, + { + "baseId": "27065|27066|27067|27068|27069|40255", + "text": "Glutaric acidemia IIC" + }, + { + "baseId": "27070|27071|285755|285760|285761|285766|285768|285779|285785|285791|285792|285799|285800|285813|285815|285821|286464|286465|286466|286468|286501|286505|286506|286507|286515|286527|286538|286539|286540|288764|288766|288773|288774|288778|288785|288789|288790|288791|288794|289173|289183|289185|289186|289187|289188|289194|289203|289210|353569|719800|884536|884537|884538|884539|884540|884541|884542|884543|884544|884545|884546|884547|884548|884549|884550|884551|884552|884553|884554|884555|884556|884557|884558|884559|884560|884561|884562|887344|887345|887346", + "text": "Fructosuria, essential" + }, + { + "baseId": "27072|27073|27074|27075|27076|227267", + "text": "Prekallikrein deficiency" + }, + { + "baseId": "27077|27078|27079|27080|27081|138049|138050|138051|138052|138053|138054|138057|138058|138059|138063|138066|138067|215265|226494|239035|239036|239038|239039|250824|250831|250832|250836|250837|250838|250841|250845|250847|287808|287811|287815|287822|287823|287834|287837|287839|287841|287845|288498|288502|288503|288504|288506|288508|288509|288510|288512|288515|291416|291421|291422|291427|291434|291439|291440|291441|291450|291451|291452|291456|291526|291533|291534|291535|291537|291541|291542|291549|291552|291562|291563|291571|291578|291579|291587|291588|291596|291624|393135|393150|393152|393163|393334|393516|428109|428112|433549|451859|451899|452037|452041|452051|452068|508784|518661|559237|559239|559249|561059|612082|630672|654309|683524|689723|790306|790311|801068|801069|816308|887568|887569|887570|887571|887572|887573|887574|887575|887576|887577|887578|887579|887580|887581|887582|887583|887584|887585|887586|887587|891550|891551|891552|917960|917961|917962|917963|917964|917965|917966|917967|917968|917969|917970|917971|917972|917973|917974|917975|917976|917977|917978|917980|917981|917982|917983|917984|917986|917987|917988|917989|922967", + "text": "Fanconi anemia, complementation group D2" + }, + { + "baseId": "27082|27083|27084|27085|27086|27086|27087|27088|27089|27090|27091|132985|132989|132991|132994|132995|132997|132998|132999|133000|133001|133004|133005|133007|138035|138036|138037|138040|138041|138043|138044|138046|140978|140979|140980|140983|140987|140988|140989|140990|180329|180331|180332|180333|180336|180337|180338|180339|180343|180344|180345|180347|180354|180355|180357|180358|180359|180364|186792|186793|186794|207730|207731|212673|212675|212683|212684|212685|212687|212689|215407|221834|221835|221838|221839|221843|221844|221846|221848|221849|221855|221856|221863|231721|231724|231728|231738|237216|240627|240629|240631|240634|240635|240638|240639|253595|253598|259928|308920|308922|308923|308924|308928|308939|308940|308944|308946|308952|313630|313634|313635|313636|313639|313644|313648|313652|313654|313658|313666|313678|313684|313685|319424|319426|319430|319431|319436|319437|319989|319990|319991|320001|320005|320027|320038|320045|320046|320050|320054|320058|357819|357820|357821|357822|357823|357824|357825|357826|357827|357828|357829|357830|357831|357832|357833|357834|357835|357836|357837|357838|357839|371006|371027|371034|371048|371373|371380|373207|396906|397128|397131|397149|397317|404784|407732|407735|407738|407740|407749|407750|407751|407753|407759|407763|407767|407768|407772|444541|444542|444544|459317|459325|459712|459720|460225|460242|474954|474961|475126|502987|503210|513303|524696|524702|524941|536781|544964|544971|544976|544977|544981|544982|544984|544987|544988|545271|545274|545275|545277|545278|545282|545284|545286|545288|545290|545360|545363|545369|545371|545374|545378|545380|545632|545638|545639|545643|563337|575792|575793|575794|575795|575796|575797|575798|620339|621309|638432|638436|638437|638439|638442|692713|695454|801681|801682|801683|801684|801685|809444|809450|809455|809466|809479|809485|809490|809494|809506|836331|836337|836341|902527|902528|902529|902530|902531|902532|902533|902534|902535|902536|902537|902538|902539|902540|902541|902542|902543|902544|902545|902546|902547|902548|902549|902550|902551|902552|902553|902554|902555|902556|902557|902558|903445|918116|918117|918118|918119|918123|918126|918128|918133|918134|918135|918136|918137|918138|921274|946693|972069|972070|972071|972072|972073|972074|972075|972076|978614", + "text": "Fanconi anemia, complementation group C" + }, + { + "baseId": "27092|27093|27094|27095|27096|27097|27098|27099|27100|27101|27102|27103|27104|27119|40038|254820|319057|319065|319068|319069|319070|319078|319081|327504|327505|327512|327513|327515|327522|327523|327524|327532|333719|333751|333753|333757|333762|335397|335426|335433|335438|335441|611370|615536|615537|615538|615539|615540|615541|615542|615543|615544|615545|615546|615860|620466|725397|725398|730904|870784|870785|870786|870787|870788|870789|870790|870791|870792|870793|870794|872318", + "text": "Factor X deficiency" + }, + { + "baseId": "27105", + "text": "Factor x deficiency, autosomal dominant" + }, + { + "baseId": "27106", + "text": "Factor VII Padua" + }, + { + "baseId": "27107|27108|27109|27110|27111|27112|27113|27114|27115|27116|27117|27119|27120|27121|27122|27123|27124|27125|27126|27127|27128|27129|254815|254816|254818|260038|319040|319051|319052|319057|319059|319064|319065|319066|319068|327482|327483|327484|327490|327496|327499|327501|327502|327504|327505|327509|327510|327511|327512|333696|333697|333714|333715|333716|333719|333723|333737|333743|333748|333749|333751|333753|333756|335367|335370|335376|335380|335381|335390|335397|335403|335410|335412|335426|335428|361209|390088|408803|408804|504461|615520|615521|615522|615523|615524|615525|615527|615528|615530|615531|615533|615535|615739|615740|615741|615742|615743|615744|620857|725395|725396|738970|796911|870757|870758|870759|870760|870761|870762|870763|870764|870765|870766|870767|870768|870769|870770|870771|870772|870773|870774|870775|870776|870777|870778|870779|870780|870781|870782|870783|872317", + "text": "Factor VII deficiency" + }, + { + "baseId": "27118|27119", + "text": "Myocardial infarction, decreased susceptibility to" + }, + { + "baseId": "27130|27131|961561|961562", + "text": "Deficiency of bisphosphoglycerate mutase" + }, + { + "baseId": "27132|27133|27134|27135|27136|27137|27139|27140|27141|40087|40088|40089|45032|432331|441918|612312|612313|788900|962790|962791", + "text": "Apparent mineralocorticoid excess" + }, + { + "baseId": "27138|27139", + "text": "Apparent mineralocorticoid excess, mild" + }, + { + "baseId": "27142|27143|27144|27145|27146|27147|27148|27149|27150|27151|227286|623284|623285", + "text": "Complement component 7 deficiency" + }, + { + "baseId": "27144", + "text": "C7 and C6 deficiency, combined subtotal" + }, + { + "baseId": "27153", + "text": "C6 deficiency, subtotal" + }, + { + "baseId": "27154|27155|27156|32077|38877|44259|205146|496803|788778", + "text": "Complement component 6 deficiency" + }, + { + "baseId": "27157|27158|27159|27163|551236|614273", + "text": "Afibrinogenemia" + }, + { + "baseId": "27160|27161|27162|27164|27165|76488|76922|246959|291907|291908|291909|291914|291916|291922|291924|293307|293312|293318|293319|293323|293324|293325|293326|293327|296608|296616|296620|296626|296631|296632|296633|296634|296635|296637|296641|296642|296643|296644|296645|296649|296651|296654|296656|353663|406381|432292|513048|590272|614273|620139|623277|623278|730254|818228|818229|818230|818231|818232|889862|889863|889864|889865|889866|889867|889868|889869|889870|889871|889872|889873|891728|891729", + "text": "Atypical hemolytic-uremic syndrome 3" + }, + { + "baseId": "27166", + "text": "C2 deficiency, type I" + }, + { + "baseId": "27167|27168", + "text": "C2 deficiency, type II" + }, + { + "baseId": "27169|27170|31114|31116|299764|299775|299776|299781|299782|299786|299793|302370|302371|302372|302382|302387|302388|302389|306761|306762|306777|306778|307086|307087|307088|307092|307093|307097|307101|353749|614299|895757|895758|895759|895760|895761|895762|895763|895764|895765|895766|895767|895768|895769|895770|895771|895772|895773|895774|895775|895776|895777|895778|895779|895780|895781|896217|896218|980457|980458", + "text": "Age-related macular degeneration 14" + }, + { + "baseId": "27169|31114|31115|31116|59668|227292|227293|299764|299768|299775|299776|299781|299782|299786|299793|299798|299801|299802|299810|299817|299818|302370|302371|302372|302382|302387|302388|302389|302401|302405|302413|306761|306762|306777|306778|306818|306825|307086|307087|307088|307092|307093|307097|307101|307117|353749|614299|895757|895758|895759|895760|895761|895762|895763|895764|895765|895766|895767|895768|895769|895770|895771|895772|895773|895774|895775|895776|895777|895778|895779|895780|895781|896217|896218|903543|961950|980457", + "text": "Complement component 2 deficiency" + }, + { + "baseId": "27171|27172|27173|27174|27175|27176|27177|132031|132032|200052|237052|291025|291026|291034|291036|291044|291046|291048|291050|291062|291984|291990|291991|291992|295346|295347|295349|295572|295573|295577|295578|295582|295584|367614|452802|452806|519377|536282|559548|561640|578421|623134|631499|631500|631501|631502|631503|631504|631505|818386|828255|828256|889328|889329|889330|889331|889332|889333|889334|889335|889336|889337|889338|889339|889340|891684|920487|920488|923242|931994|931995|939946|953514|960515", + "text": "Carnitine acylcarnitine translocase deficiency" + }, + { + "baseId": "27178|27181", + "text": "Bombay phenotype" + }, + { + "baseId": "27179|27180|223368", + "text": "Para-Bombay phenotype" + }, + { + "baseId": "27181|27986", + "text": "BOMBAY PHENOTYPE, DIGENIC" + }, + { + "baseId": "27189|27190|27191|27192|27193|27194|27195|27196|27197|27198|27199|27200|27201|27203|27207|27208|27209|27210|27211|27213|27214|27215|27216|27217|27218|27222|33491|76512|76514|76516|76517|76518|76519|186703|187078|187079|187080|187081|187082|187083|187084|187085|190758|193439|227294|227295|252234|260863|424373|439126|442474|442475|442476|576926|587370|612435|612438|612439|788798|789173|789174|789175|789176|789177|789178|789179|789180|789181|789182|789183|789184|789185|789186|789187|789188|789189|789190|789191|789192|789193|789194|789195|789196|789197|789198|789199|789200|789201|789202|789203|789204|789205|789206|789207|789208|789209|789210|789211|789212|789213|789214|789215|789216|789217|789218|789219|789220|789221|789222|789223|789224|789225|789226|789227|789228|789229|789230|789231|789232|789233|789234|789235|790612|790613", + "text": "Classic congenital adrenal hyperplasia due to 21-hydroxylase deficiency" + }, + { + "baseId": "27190", + "text": "Adenoma, cortisol-producing" + }, + { + "baseId": "27190", + "text": "Carcinoma, adrenocortical, androgen-secreting" + }, + { + "baseId": "27193|27201|27202", + "text": "21-HYDROXYLASE POLYMORPHISM" + }, + { + "baseId": "27194", + "text": "Adrenal hyperplasia" + }, + { + "baseId": "27219|27220", + "text": "Hyperandrogenism, nonclassic type, due to 21-hydroxylase deficiency" + }, + { + "baseId": "27223|27224|27226|27227|27228|27229|27230|27231|27232|27233|45033|276147|276149|276150|276152|276153|276154|276411|276412|276419|276741|276743|276745|276748|276750|276751|276754|276756|276801|276802|276803|276808|496564|718138|718139|731629|731631|745607|758839|761115|780288|862092|862093|862094|862095|862096|864964|977422|977423|977424|977425", + "text": "3 beta-Hydroxysteroid dehydrogenase deficiency" + }, + { + "baseId": "27234", + "text": "Major affective disorder 7, susceptibility to" + }, + { + "baseId": "27235|27236|27237|45557|45558|45559|54741|54743|54745|54746|54747|54748|54749|54750|54751|54753|54754|54755|54758|54759|54760|54761|54762|54764|54765|54765|54766|54767|54768|54769|54769|54770|54771|54772|54774|54775|54777|54778|54779|54781|54782|54783|54785|54786|54787|54788|54789|141603|141604|141605|175011|175015|175016|175019|175290|175291|175292|175293|175294|188808|189863|189864|189865|189866|189866|189867|189868|189869|189870|198286|198287|198291|198292|198293|198294|198295|198296|198297|198298|198299|198300|198304|198305|198306|224402|224403|229915|240842|240843|240844|240846|240847|258656|258661|311013|311015|311016|311017|311021|311029|311040|316341|316341|316350|316353|316354|316357|316360|316364|316373|316374|322416|322417|322421|322430|322431|322432|322439|322444|322459|323004|323006|323010|323012|323028|323040|323054|323064|323068|323069|323070|323085|323087|370882|371415|371431|371448|371797|397404|397405|397413|397414|397418|397420|397575|397578|397580|397799|397801|397805|397818|397930|397931|397940|397953|397958|404791|404791|407909|407910|407911|460136|460140|460141|460147|460154|460254|460257|460262|460263|460274|460509|460512|460526|460532|460941|460948|460949|460957|460960|460963|460965|480705|481133|497171|503433|503731|510220|514271|525378|525381|525384|525385|525386|525398|525458|525460|525462|525465|525481|525483|525487|525495|525497|525505|525573|525574|525576|525587|525588|525786|525787|550787|563937|563948|563949|564735|564742|564744|566481|566483|566488|566502|614990|639145|639146|639147|639148|639149|639150|639151|639152|639153|639154|639155|639156|639157|639158|639159|652009|652042|652260|656014|687672|692888|752262|752263|752264|767974|767976|796456|820240|820241|837278|837279|837280|837281|837282|837283|837284|837285|837286|837287|837288|837289|837290|837291|837292|837293|837294|837295|837296|837297|837298|837299|837300|837301|837302|837303|837304|837305|837306|851385|866256|866257|866258|866259|866260|866261|866262|866263|866264|866265|866266|866267|866268|866269|866270|866271|866272|866273|866274|868501|925921|925922|925923|925924|925925|925926|925927|925928|935171|935172|935173|935174|935175|935176|940965|940966|940967|947064|947065|947066|947067|947068|947069|947070|947071|947072|956203|956204|956205|956206|956207|956208|956209|959944|959945", + "text": "Dilated cardiomyopathy 1W" + }, + { + "baseId": "27236|27237|54765|54769|189866|198305|214108|316341|404791|481133|550787", + "text": "Familial hypertrophic cardiomyopathy 15" + }, + { + "baseId": "27238|213984|413946|459741|460188|525347|687609|692818|692819|701274|712294|919263|925778|946848|946849", + "text": "Cataract 30" + }, + { + "baseId": "27239|27240|27241|34233|70506|75338|136147|136149|136150|136151|136152|136153|136154|136155|136156|136158|136159|136160|136161|191375|207711|207713|207714|207717|207719|307964|307970|307975|307981|307987|307989|307990|307992|307993|307997|312309|312311|312323|312326|312327|312337|312339|312342|317994|318001|318007|318020|318033|318035|318559|318563|318566|318574|318586|318591|318598|370356|370860|425841|428998|429004|622893|767370|802170|901760|901761|901762|901763|901764|901765|901766|901767|901768|901769|901770|901771|901772|901773|901774|901775|901776|901777|901778|901779|901780|901781|901782|901783|901784|901785|901786|901787|901788|901789|901790|901791|901792|901793|901794|903375|903376|903377", + "text": "Cerebellar ataxia, mental retardation, and dysequilibrium syndrome 1" + }, + { + "baseId": "27240|27241", + "text": "Cerebellar ataxia and mental retardation with quadrupedal locomotion 1" + }, + { + "baseId": "27243|27244|27245|27246|27247|27248|27249|27250|27251|27252|27253|27254|27255|27256|27257|27259|27260|27261|354183|964529", + "text": "Neurohypophyseal diabetes insipidus" + }, + { + "baseId": "27258", + "text": "Diabetes insipidus, neurohypophyseal, autosomal recessive" + }, + { + "baseId": "27262", + "text": "Microvascular complications of diabetes 1" + }, + { + "baseId": "27263|29485", + "text": "Atherosclerosis, susceptibility to" + }, + { + "baseId": "27264|27265|27266|27267|27268|27269|53387|53388|53389|53390|53392|53393|53394|53395|53396|53397|53398|176751|176754|176755|178235|178236|178267|231305|231334|231335|231336|231337|231338|231395|231400|231401|264108|287114|287115|287121|287124|287125|287136|287137|287846|287851|287852|287867|290346|290347|290365|290382|290383|290389|290395|353575|511434|511435|542147|542315|542317|542319|620091|623271|626131|655472|697633|733544|733545|759186|763384|781427|790289|885396|885397|885398|885399|885400|885401|885402|885403|887388|887389|963356|977739|977740|977741|977742|977743|977744|977745|977746", + "text": "Renal tubular acidosis with progressive nerve deafness" + }, + { + "baseId": "27270|27271|27272|27273|27275|27276|27277|27278|27279|27280|27281|27282|27283|27284|27285|27286|27290|27291|33492|48922|50222|50223|50225|50226|133362|133363|133364|133365|133366|133367|133368|133369|133370|133371|133372|133372|133373|133374|133375|133376|133377|133378|133379|133380|133381|133382|133383|133384|133385|133386|133388|133389|133390|136440|136457|136468|136517|137584|137585|137586|137587|137588|137589|137590|137591|137592|137593|137594|139767|139768|139769|139770|139771|139772|139773|139774|139775|139776|139777|139778|139779|139780|139781|139782|140394|140395|140396|140397|140398|140399|140400|140401|140402|150470|150495|150498|150512|150517|150520|150554|150555|150567|150576|150585|150592|150609|150678|150682|150724|150728|150730|150874|150920|150975|150978|151002|151085|151090|151164|151198|151252|151284|151306|151353|151375|151387|151515|151516|151517|151519|151524|151542|151548|151568|151584|151634|151665|151698|151704|151725|151743|151754|151859|151999|152000|152008|152020|152035|152052|152071|152077|152149|152151|152169|152176|152183|152260|152279|152292|152306|152324|152346|152347|152374|152406|152484|152502|152516|152540|152553|152567|152602|152619|152638|152657|152658|152671|152682|152698|166156|166260|166261|166262|166263|166264|180760|180765|180766|180767|180768|180769|180770|180771|180772|180773|180774|180775|180776|180778|180779|180780|180783|180784|180785|180786|180788|180789|180790|184307|184309|184311|184313|184314|184316|184319|184320|184323|184325|184326|184327|184328|184329|184330|184331|184332|184333|184334|184335|184338|184339|184340|184342|184343|184345|184346|184347|184349|184350|184351|184352|184353|184355|184356|184359|184360|184361|184362|184363|184364|184365|184367|184368|184369|184370|184371|184372|184373|184374|184375|184376|184377|184378|184379|184382|184383|184384|184385|184386|184387|184388|184389|184390|184391|184392|184394|184395|184397|184399|184400|184402|184403|184404|184405|184406|184408|184409|184410|184411|184412|184416|184417|184418|184419|184420|184421|184422|184423|184425|184427|184428|184430|184432|184433|184435|184436|184437|184438|184439|184440|184441|184443|184444|184445|184446|184447|184449|184451|184453|184454|184455|184456|184457|184458|184459|184460|184464|184465|184466|184467|184468|184469|184470|184472|184474|184475|184476|184477|186209|186229|186230|186231|186232|213195|213196|213197|213198|213199|213200|213202|213203|213204|213205|213206|213207|213208|213209|213210|213211|213212|213213|213214|213215|222441|222491|222492|222493|222495|222496|222497|222498|222499|222500|222501|222502|222503|222504|222505|222506|222507|222508|222509|222510|222511|222512|222513|222514|222515|222516|222517|222518|222519|222520|222521|222522|222523|222524|222525|222526|222527|222529|222530|222531|225383|225386|225388|226361|226608|231958|231959|231962|231963|231965|231967|231968|231969|231970|231971|231972|231973|231973|231975|231976|231977|231980|231981|231982|231983|231984|231985|231986|235349|235350|235351|235352|235355|235356|235357|235360|235361|235364|235365|235368|235371|235372|235373|235374|235375|235378|235379|235380|235381|235383|235384|235385|235386|235387|235388|235389|235390|235391|235392|235393|235394|235395|235396|235397|235399|235400|235403|235404|235405|235407|235408|235410|235411|235412|235413|235415|235417|235419|235420|235421|235422|235424|235426|235427|235429|235431|235432|235434|235437|235438|235439|235440|235441|235444|235445|235446|235447|235448|235449|235450|235452|235455|235456|235458|235459|235460|235461|235463|235464|235465|235466|235467|235468|235469|235470|235471|235472|242187|242447|242448|242449|242450|242451|242453|242455|242456|242457|242458|242459|242460|242461|242462|242463|242465|242466|242467|242468|242469|242470|242471|242472|242473|242474|242475|242477|242478|242479|242480|242481|242482|242483|242484|242485|242486|242487|242488|242489|255855|255856|260122|260123|260124|264638|264640|264968|264974|326160|326162|326164|326166|326168|326171|326172|326174|326175|335828|335836|335837|335840|335843|335853|335854|342198|342199|342203|342205|342207|342220|343740|343741|343744|343748|343749|343750|343752|343753|343754|343755|343756|343757|343759|343762|343763|343767|343769|353351|353352|358912|358913|358914|358915|358916|358917|358918|374440|374449|374452|374457|374459|374488|374490|374495|374511|374522|375251|375286|375298|375311|375318|375322|375326|375523|375534|375544|377647|377662|377664|377667|377670|377701|377708|400655|401088|401204|401214|401219|401221|401239|401241|401244|401252|401254|401261|401262|401263|401265|401267|401269|401270|401271|401274|401276|401278|401284|401285|401287|401293|401296|401298|401300|401303|401307|401312|401315|401325|401327|401328|401334|401338|401339|401734|401737|401739|401743|401745|401750|401759|401760|401765|401768|401775|401776|401782|401788|401796|401797|401800|401803|401994|402003|402009|402012|402017|402019|402021|402026|402029|402030|402035|402036|402040|402045|402050|402059|402064|402072|402073|402076|402079|402083|402091|402093|402094|402097|402101|402104|402105|409664|409665|409667|409669|409670|409672|409674|409676|409677|409678|409679|409681|409686|409688|409689|409690|409691|409693|409694|409695|409696|409697|409699|409700|409703|409705|409706|409707|409708|409709|409710|409711|409712|409714|409715|409716|420589|420590|420591|420592|420593|420596|420597|420598|420599|420600|420602|420605|431550|432882|432884|432885|433405|439582|445599|445601|445602|445604|465424|465425|465430|465431|465435|465436|465688|465689|465826|465828|465837|465844|465855|465860|465862|465864|465867|465870|465871|465877|465883|465884|465886|465894|465903|465905|465908|465910|465915|465916|465917|465918|465920|466528|466529|466536|466539|466540|466546|466549|466551|466554|466555|466557|466558|466559|466561|466562|466564|466565|466566|466567|466568|466572|466574|466575|466577|466578|466579|466581|466582|466584|466586|466587|466589|466590|466594|466596|466597|466599|466604|466608|466610|466616|466619|466627|466636|466639|466644|466645|466650|466810|466817|466819|466826|466830|466834|466838|466839|466841|466855|466857|466858|466861|466863|466869|466875|466882|466883|466888|466898|466903|466908|466922|466923|466931|466932|466936|466938|466941|466945|466946|466952|466955|477732|477738|477752|477754|477759|477762|477763|477765|477768|477769|477773|477776|477778|477782|477784|477787|477790|477797|477802|477803|477804|477808|477817|477826|477827|477830|477832|477833|477834|477839|477841|477844|477849|477852|477853|477854|477859|477860|477861|477877|477880|477883|477884|477885|477887|477892|477899|477906|477931|477932|477933|477937|477938|477940|478326|478339|478342|478345|478352|478358|478360|478370|478375|478377|478389|478410|478418|478435|478437|478445|478456|478465|478479|478485|478487|478496|478498|478508|478527|481516|482919|482952|482960|484717|484853|484863|484869|484874|484876|484881|484884|484889|484892|484904|484919|484921|484929|484931|484934|484937|484943|485146|485152|485159|485170|485195|485666|485668|487892|488241|488242|488243|506405|529855|530112|530117|530120|530126|530131|530134|530137|530138|530141|530146|530150|530162|530168|530170|530171|530216|530220|530221|530225|530227|530230|530232|530234|530237|530238|530239|530424|530428|530431|530433|530440|530442|530445|530448|530459|530460|530461|530462|530471|530476|530483|530484|530486|530488|530646|530650|530654|530657|530677|530678|530679|530684|530691|530692|530694|530695|530697|530699|530703|530705|530713|536472|536473|536474|536475|539346|539347|539348|539349|551416|567522|567531|567532|568214|568216|568217|568226|568229|568231|568232|568234|568240|568241|568243|568245|568247|568251|568258|568262|568267|568270|569812|569814|570339|570340|570341|570348|570352|570355|570356|570357|570358|570360|570361|570363|570367|570369|570373|570375|570377|570379|570381|570382|570383|570394|570396|570398|570400|570402|570403|570417|570420|570425|570434|570438|570446|574102|574104|574106|574108|574109|574110|574111|574114|574116|574117|574119|574122|574123|574125|574127|574129|574131|575968|575969|575970|575971|575972|575973|575974|590987|590988|590989|590990|590991|590992|612022|612023|612024|618465|618470|618480|618484|618487|618494|618495|618501|618516|619499|621548|621549|644813|644814|644815|644816|644817|644818|644819|644820|644821|644822|644823|644824|644825|644826|644827|644828|644829|644830|644831|644832|644833|644834|644835|644836|644837|644838|644839|644840|644841|644842|644843|644844|644845|644846|644847|644848|644849|644850|644851|644852|644853|644854|644855|644856|644857|644858|644859|644860|644861|644862|644863|644864|644865|644866|644867|644868|644869|644870|644871|644872|644873|644874|644875|644876|644877|644878|644879|644880|644881|644882|644883|644884|644885|644886|644887|644888|644889|652475|652478|652634|652638|652639|652734|652736|652741|652747|652749|652863|652864|653051|653143|653284|653290|653302|653303|653305|656379|667559|688628|693911|755335|755337|755340|760342|760460|771011|771014|776199|785346|785350|785354|785356|785358|785359|785364|788062|791632|791633|791634|791635|791636|791637|791638|797363|806408|812862|812864|812866|812868|812869|812871|812873|812892|812901|812907|812915|812929|812940|812948|812950|812951|812958|812961|812962|812988|815638|820853|820854|820855|820856|820857|820859|820860|820861|820862|820863|820864|820865|820866|820867|844122|844123|844124|844125|844126|844127|844128|844129|844130|844131|844132|844133|844134|844135|844136|844137|844138|844139|844140|844141|844142|844143|844144|844145|844146|844147|844148|844149|844150|844151|844152|844153|844154|844155|844156|844157|844158|844159|844160|844161|844162|844163|844164|844165|844166|844167|844168|844169|844170|844171|844172|844173|844174|844175|844176|844177|844178|844179|844180|844181|844182|844183|844184|844185|844186|844187|844188|844189|844190|844191|844192|844193|851671|851673|852845|875834|875835|875836|875837|875838|875839|875840|875841|875842|875843|913728|913773|913779|913782|913784|913785|913792|916711|917218|927887|927888|927889|927890|927891|927892|927893|927894|927895|927896|927897|927898|927899|927900|927901|927902|927903|927904|927905|927906|927907|927908|937545|937546|937547|937548|937549|937550|937551|937552|937553|937554|937555|937556|937557|937558|937559|937560|937561|937562|937563|937564|937565|937566|937567|937568|940366|940367|940381|940382|941143|941144|949488|949489|949490|949491|949492|949493|949494|949495|949496|949497|949498|949499|949500|949501|949502|949503|949504|949505|949506|949507|949508|949509|949510|949511|949512|949513|949514|949515|949516|949517|957838|957839|957840|957841|957842|957843|957844|957845|957846|957847|957848|957849|960172|960173|960174|961662|969308", + "text": "Hereditary diffuse gastric cancer" + }, + { + "baseId": "27273|27289|231973", + "text": "Breast cancer, lobular" + }, + { + "baseId": "27287|166264", + "text": "Gastric cancer, familial diffuse, and cleft lip with or without cleft palate" + }, + { + "baseId": "27293|27294|27295|27296|27297|27298|27299|27300|27301|27302|27303|48017|75598|100029|193523|195653|247416|275222|384414|431549|434935|439514|481500|553578|553592|791530|906184|962741|980352|980353|984043|984044", + "text": "Familial juvenile gout" + }, + { + "baseId": "27304|29054", + "text": "Alzheimer disease, late-onset, susceptibility to" + }, + { + "baseId": "27305|27306|27307|27308|27310|27311|27312|27314|27315|27316|27317|27318|27320|27322|168046|206952|206952|260860|271236|489783", + "text": "Crigler-Najjar syndrome type 1" + }, + { + "baseId": "27308|27313|27314|27314|27319|27320|27320|27325|27327|27328|40587|168042|168046|168047|168048|168053|194308|206952|206952|254471|271236|273839|274119|274667|285391|286034|288354|288356|288357|288358|288359|288775|288783|489783|491568|583212|585621|586242|587512|588639|733280|798981|798982|798983|798984|884201|884202|884203|884204|884205|884206|884207|884208|884209|884210|884211|884212|884213|884214|884215|884216|884217", + "text": "Gilbert's syndrome" + }, + { + "baseId": "27309|27313|27314|27314|27319|27320|27320|27323|27324|27325|27326|206952|271236|489463|489783", + "text": "Crigler-Najjar syndrome, type II" + }, + { + "baseId": "27314|27314|27319|27320|27320|27321|168042|168046|168047|168048|168053|194308|206952|271236|273839|274119|274667|285391|286034|288354|288356|288357|288358|288359|288775|288783|489783|491568|585621|586242|587512|588639|733280|884201|884202|884203|884204|884205|884206|884207|884208|884209|884210|884211|884212|884213|884214|884215|884216|884217", + "text": "Lucey-Driscoll syndrome" + }, + { + "baseId": "27314|27314|27319|27320|27328|206952|271236|489783", + "text": "Bilirubin, serum level of, quantitative trait locus 1" + }, + { + "baseId": "27314|27319|540561|540562|540563", + "text": "Irinotecan response" + }, + { + "baseId": "27319", + "text": "irinotecan response - Other" + }, + { + "baseId": "27319|227745|227835", + "text": "SN-38 response - Other" + }, + { + "baseId": "27325|620072", + "text": "UGT1A1-Related Disorders" + }, + { + "baseId": "27327", + "text": "Gilbert syndrome, susceptibility to" + }, + { + "baseId": "27329|27330|27331|27332|45554|45555|45556|315876|315877|315878|323016|323018|323023|323024|323026|323034|323036|323043|323044|329045|329053|329054|329058|329059|329061|329083|329092|329094|329096|329107|329111|330261|330262|330263|330267|330272|330276|330283|330291|330299|434025|461582|461584|462161|526630|526638|565032|571181|571184|640589|640590|640591|640592|640593|652201|652258|713314|724868|753070|768873|768874|820441|839253|869166|869167|869168|869169|869170|869171|869172|869173|869174|869175|869176|869177|869178|869179|872185|926451|926452|926453|926454|926455|947771|947772|947773|947774|956739|960020", + "text": "Hyper-IgM syndrome type 5" + }, + { + "baseId": "27335|27335|45580|48372|48373|76381|76382|76382|76383|99631|99633|177396|177396|214748|312567|312568|312571|312573|312573|312574|318549|318551|324674|324675|324687|324691|324691|324708|324709|324717|324717|325434|325442|353169|371272|371272|372014|372014|372221|372225|373916|373916|460915|461727|461729|504107|511902|525958|525958|526018|526021|526436|538419|565535|567071|570370|570371|622399|639793|639794|639795|639796|639797|639798|639799|652499|652510|692941|692943|701604|737801|737801|737802|744485|768251|788847|791114|791115|798638|820431|838059|838059|838060|838061|838062|838063|838064|838065|851822|867129|867130|867131|867132|867133|867134|926145|935411|935412|935413|935414|940205|947340|956418", + "text": "DPAGT1-CDG" + }, + { + "baseId": "27335|45579|45580|45580|45581|45582|45583|76382|177396|312573|324691|324717|371272|372014|372221|372225|373916|460915|461727|461729|504107|511902|525958|526018|526021|526436|538419|565535|567071|570370|570371|622399|639793|639794|639795|639796|639797|639798|639799|652499|652510|692941|692943|701604|737801|737802|744485|768251|820431|838059|838060|838061|838062|838063|838064|838065|851822|926145|935411|935412|935413|935414|940205|947340|956418", + "text": "Congenital myasthenic syndrome 13" + }, + { + "baseId": "27336|27337|246966|293414|293418|294806|294808|294817|298441|298445|298446|298447|298451|298505|298506|298512|298513|362490|698518|744105|890654|890655|890656|890657|890658|890659|890660|890661|890662|890663|890664|891793|891794", + "text": "Parkinson disease 5" + }, + { + "baseId": "27340|27341|27342|27343|27344|27345|27347|27348|27349|27350|27351|34157|34158|34159|34160|38397|38875|76399|142267|142269|171278|171279|188794|190294|191639|195272|205720|205721|231444|231445|237215|244241|244242|244243|244244|244246|244247|273732|276636|276637|276638|276640|276641|276643|276644|276646|276648|276902|276904|276910|276911|276916|276917|276919|276920|276921|276922|277483|277484|277501|277508|277513|277516|277517|277580|277581|277582|277584|277585|277599|364457|364459|364512|364518|364521|364531|364555|364603|364611|364613|404958|442643|442643|442644|447164|447165|447167|447171|447172|447241|447242|447246|447267|447271|447272|447320|447328|447333|447334|447334|447340|447347|498079|498148|498156|498161|515127|515132|515134|515140|515141|515142|515146|515147|515151|515154|515155|515156|515158|515168|515173|515175|515179|515180|515185|515186|515188|515192|515194|515286|515289|515292|515296|515297|515301|540663|540665|540666|540669|540680|556626|556628|556630|556632|556634|556636|556640|556685|556687|556689|556691|556693|556695|556697|556971|556973|556975|556977|556979|556981|558150|558152|558154|558156|558158|558160|558162|558164|575640|575643|575644|575645|575647|575648|575649|575650|575652|575653|611494|624974|624990|625727|625730|626932|626933|626934|626935|626936|626937|626938|626939|626940|626941|626942|626943|626944|626945|626946|626947|626948|626949|626950|626951|626952|626953|626954|626955|626956|626957|626958|626959|626960|626961|626962|626963|626964|626965|626966|650638|683291|690379|690380|690381|690382|690383|690384|690385|690386|690387|690388|690389|690390|695008|695009|696163|696164|696165|696166|696167|696168|706742|718284|731782|743691|743695|745751|745753|745755|745756|758809|758873|761261|761262|761265|761266|761267|761268|761270|761274|774396|780350|780355|789857|789858|789859|789860|789861|798913|799129|822830|822831|822832|822833|822834|822835|822836|822837|822838|822839|822840|822841|822842|822843|822844|822845|822846|822847|822848|822849|822850|822851|822852|822853|822854|822855|822856|822857|822858|822859|822860|850707|850731|862438|862439|862440|862441|862442|862443|862444|862445|862446|862447|862448|862449|862450|862451|864997|864998|864999|865000|865001|865002|865003|918569|921676|921677|921678|921679|921680|921681|921682|930078|930079|930080|930081|930082|930083|930084|930085|930086|930087|930088|939773|940601|940602|941511|941512|941513|952096|952097|952098|952099|952100|952101|952102|952103|952104|952105|952106|952107|952108|952109|952110|952111|966784|977450|977451|977452|977453|977454|977455|977456|977457|977458|977459|977460|977461|977462|977463|977464|977465|977466", + "text": "Hereditary insensitivity to pain with anhidrosis" + }, + { + "baseId": "27347|28950|28953|28968|28970|28972|28972|28974|28975|28977|28980|28982|28983|28985|28985|28989|28990|36273|36309|38397|47216|231445|244246|244247|276643|276910|277501|442643|447167|447334|575639|575640|575641|575642|575644|575645|575646|575647|575648|575649|575650|575651|575652|575653|575653|966784", + "text": "Familial medullary thyroid carcinoma" + }, + { + "baseId": "27352|27353|27354|27355|75297|194943|195999|249490|249491|249492|249496|277049|277050|277053|277303|277304|277308|278038|278049|278065|278068|278078|278080|278117|278119|278131|278132|493083|578368|578369|619960|619961|619962|718343|731830|743675|799144|862640|862641|862642|862643|862644|862645|862646|862647|862648|862649|862650|862651|862652|862653|862654|862655|862656|865022|865023|865024|865025|904209", + "text": "Spondyloepimetaphyseal dysplasia-short limb-abnormal calcification syndrome" + }, + { + "baseId": "27358|27359|27360|27361|27362|133974|133975|133976|133977|133978|207496|253009|253010|253011|253017|303953|303997|304004|304006|304008|304026|304028|304030|304039|307501|307512|307514|307589|307591|307596|307598|307634|307635|307636|312558|312599|312601|312634|312642|312649|312666|312669|312671|312713|312714|312715|312725|312758|312762|312774|312775|312777|312780|540010|610600|610604|610608|730531|898749|898750|898751|898752|898753|898754|898755|898756|898757|898758|898759|898760|898761|898762|898763|898764|898765|898766|898767|898768|898769|898770|898771|898772|898773|900430|900431|900432|900433|900434", + "text": "Maturity-onset diabetes of the young, type 11" + }, + { + "baseId": "27374|27375|27376|27377|27378|27379|27380|27381|27382|27383|27384|27385|45724|103313|103314|103315|103316|103534|103535|103536|103537|103538|103539|103540|103541|103542|103543|103544|103545|103546|103547|103548|103549|103550|103551|103552|103553|103554|103555|103556|103557|103558|103559|103560|103561|103562|103563|103564|103565|103566|103567|103568|103569|103570|103571|103572|103573|103574|103575|103576|103577|103578|103579|103580|103581|103582|103583|103584|103585|103586|103587|103588|103589|103590|103591|103592|103593|103594|103595|103596|103597|103598|103599|103600|103601|103602|103603|103604|141383|141384|213624|213624|231847|231850|231851|231853|244834|244835|244836|254704|254705|318219|318226|318234|318235|318242|318243|326226|332465|332481|332496|332498|332500|334096|334100|334104|334105|334106|334108|334117|373236|375407|445071|462419|514272|527315|527632|527859|527863|537182|565674|565676|566999|567000|568162|571974|641347|641348|641349|641350|641351|652498|690049|695581|713691|725222|738810|753540|769258|769260|769261|784453|799723|799725|840190|840191|840192|840193|840194|840195|840196|840197|840198|840199|840200|840201|870260|870261|870262|870263|870264|870265|870266|870267|870268|870269|870270|872281|926709|926710|926711|926712|936225|936226|936227|936228|948133|960790", + "text": "TNF receptor-associated periodic fever syndrome (TRAPS)" + }, + { + "baseId": "27386|27387|27388|27389|27390|27394|27395|27396|27397|27400|27403|27404|27405|27412|27413|27414|27415|27416|27417|27418|27420|27421|27422|44228|50162|52757|52759|52760|52763|91599|99232|133261|133262|133263|133265|133267|133272|133273|133275|133278|133280|133281|133282|133283|133284|136456|136502|136721|139098|139100|139660|150500|150547|150657|150725|150816|151073|151197|151311|151677|151717|151987|152034|152038|152371|152480|152560|152568|152577|152630|166280|166281|166282|171191|171616|180989|180990|180991|180992|180993|180996|181004|181005|181014|181024|181026|181027|181029|185331|185334|185352|185374|185389|185394|185398|185400|185402|185403|185409|185412|185424|185426|213405|222734|222739|222744|236438|236444|236504|242978|242984|242987|242994|245067|245069|245072|330238|330239|330253|340457|340458|340461|340463|340465|340467|346157|346170|346177|346183|347481|347484|358960|358961|358962|358963|358964|358965|358966|358967|358968|363458|363505|363540|363563|363565|378811|402529|402994|403047|410276|410285|410927|432338|479321|480490|485143|485305|485507|531807|539380|539381|539382|622038|646787|878640|878641|878642|878643|878644|878645|878646|878647|878648|878649|914180|962183|964494", + "text": "Li-Fraumeni syndrome 1" + }, + { + "baseId": "27386|27393|27395|27405|27645|28939|29003|29005|29011|44227|45735|49881|53980|53985|54284|80852|83949|150855|171614|175540|179419|180995|181000|185366|185367|213392|213398|236461|236463|236468|236469|236481|242980|245074|263939|359197|362753|362826|362887|362912|363083|363092|363093|363094|363165|363201|363293|363294|363295|363296|363297|363302|363303|363304|363305|363322|363323|363390|363409|363410|363411|363412|363413|363414|363415|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363464|363465|363466|363467|363468|363484|363491|363492|363493|363494|363495|363496|363497|363498|363499|363500|363501|363502|363509|363510|363511|363528|363531|363534|363535|363574|363575|363576", + "text": "Chronic lymphocytic leukemia" + }, + { + "baseId": "27386|27388|27394|27395|27398|27404|27405|28691|28692|28694|28695|28698|29000|38549|48304|133271|152428|166215|176503|181001|185366|185367|185375|185394|213402|213526|213943|226759|232035|236461|236469|236481|242980|245074|260191|362768|362770|362771|362772|362775|362865|362866|362895|362896|362928|363089|363242|363243|363278|363279|363308|363309|363313|363314|363315|363316|363317|363318|363355|363356|363360|363482|363483|363491|363492|363493|363515|363528|363531|363534|363535|363542|363543|363544|363545|363546|363547|363548|363558|363559", + "text": "Brainstem glioma" + }, + { + "baseId": "27386|27388|27394|27395|27397|27398|27403|27404|27405|27407|27408|27409|27422|27641|27642|27652|28691|28692|28694|28695|28698|28939|48304|70450|80852|83949|133271|133272|133274|133276|133277|139098|150535|150855|151476|151595|151897|151955|152428|171613|171614|174177|176503|180995|181000|181001|181005|185345|185350|185366|185367|185371|185375|185384|185394|213392|213398|213402|213943|222738|232035|236459|236461|236462|236463|236469|236471|236477|236479|236481|242978|242980|245074|260191|260192|263939|359197|360335|362753|362775|362894|362895|362896|363067|363068|363247|363248|363249|363250|363251|363255|363293|363294|363295|363296|363297|363302|363303|363304|363305|363360|363384|363385|363386|363438|363439|363440|363441|363442|363448|363449|363450|363451|363452|363453|363454|363455|363456|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363473|363474|363475|363476|363477|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363494|363495|363496|363497|363498|363499|363503|363504|363505|363506|363507|363508|363512|363513|363514|363515|363516|363517|363518|363519|363520|363521|363522|363523|363524|363525|363526|363527|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363538|363539|363540|363541|363542|363543|363544|363545|363546|363547|363548|363549|363550|363551|363552|363553|363554|363555|363556|363557|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|363572|363573", + "text": "Ovarian Serous Cystadenocarcinoma" + }, + { + "baseId": "27386|27388|27393|27394|27395|27397|27398|27403|27404|27405|27407|27408|27409|27422|27641|27642|27645|27652|28691|28692|28693|28694|28695|28696|28698|28916|28938|28939|28940|29009|29010|29011|29013|29022|31371|31378|31381|32616|32617|32618|32620|32622|32625|32627|32628|40609|44227|48304|48857|49213|49214|53970|53980|54284|54633|80852|83949|100947|133274|133276|133277|139098|150535|150855|151476|166215|166569|171613|171614|173901|176503|179419|180995|181000|185345|185350|185366|185367|185371|185384|185394|213392|213402|213943|222738|226760|236461|236462|236463|236469|236477|236481|242978|242980|245074|260191|263939|359197|362753|362755|362768|362770|362771|362772|362773|362774|362775|362777|362778|362822|362826|362860|362870|362871|362904|362905|362912|362914|362928|362933|363010|363067|363068|363107|363108|363109|363110|363113|363114|363121|363123|363186|363197|363201|363202|363222|363223|363253|363254|363258|363259|363260|363264|363265|363266|363267|363270|363271|363272|363280|363281|363282|363283|363286|363287|363288|363289|363290|363298|363299|363300|363301|363302|363303|363304|363305|363306|363307|363323|363329|363340|363341|363342|363343|363344|363345|363346|363347|363349|363350|363351|363352|363353|363354|363355|363356|363358|363359|363360|363364|363365|363366|363370|363389|363394|363395|363405|363406|363407|363408|363413|363414|363415|363438|363439|363440|363441|363442|363448|363449|363450|363451|363452|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363482|363483|363484|363491|363492|363493|363494|363495|363503|363504|363505|363506|363507|363508|363512|363513|363514|363518|363519|363520|363526|363527|363528|363529|363530|363531|363534|363535|363536|363537|363538|363542|363543|363544|363545|363546|363552|363566|363567|363568|363569|363570|363571", + "text": "Transitional cell carcinoma of the bladder" + }, + { + "baseId": "27386|27395|27397|27398|27403|27407|27641|27642|27645|27652|29009|29010|29013|44227|53970|87211|88528|133272|139098|150535|150855|151595|151897|151955|171613|171614|176503|179419|180995|181005|185345|185350|185394|213402|233761|236459|236462|236463|236469|236477|236479|242978|242980|362894|362912|363067|363068|363186|363197|363202|363241|363252|363258|363259|363260|363261|363262|363263|363268|363320|363391|363392|363464|363465|363466|363467|363468|363469|363470|363471|363472|363473|363474|363475|363476|363477|363484|363485|363486|363487|363488|363489|363490|363521|363522|363523|363524|363525|363529|363530|363531|363532|363533|363536|363537|363538|363542|363543|363544|363545|363546|363549|363550|363551|363552|363572|363573", + "text": "Squamous cell carcinoma of the skin" + }, + { + "baseId": "27386|27423|432401|432410|432411", + "text": "Choroid plexus carcinoma" + }, + { + "baseId": "27390", + "text": "CODON 72 POLYMORPHISM" + }, + { + "baseId": "27390", + "text": "paclitaxel response - Efficacy, Toxicity/ADR" + }, + { + "baseId": "27390", + "text": "cyclophosphamide response - Efficacy, Toxicity/ADR" + }, + { + "baseId": "27390", + "text": "antineoplastic agents response - Efficacy, Toxicity/ADR" + }, + { + "baseId": "27390", + "text": "fluorouracil response - Efficacy, Toxicity/ADR" + }, + { + "baseId": "27390|227808", + "text": "cisplatin response - Efficacy, Toxicity/ADR" + }, + { + "baseId": "27391|31371|31378|920202", + "text": "Carcinoma of cervix" + }, + { + "baseId": "27393|27402|27403|27404|27411|181025", + "text": "Li-Fraumeni-like syndrome" + }, + { + "baseId": "27395|28694|96094|136706|136707|136708|136715|136717|136719|136720|136722|136723|137021|137022|137023|151642|550724", + "text": "Sarcoma" + }, + { + "baseId": "27395|28372|45735|87659|87660|96841|363096|363097|363098|626059|626060|626061|626062|626063", + "text": "Lymphoma" + }, + { + "baseId": "27398|27422|27641|27642|27652|28694|28695|28698|28916|29000|31378|31381|40609|70450|133276|166563|174177|176503|185366|185367|213943|236481|362775|362914|363008|363016|363123|363222|363245|363246|363255|363264|363283|363298|363299|363300|363301|363336|363352|363353|363354|363394|363395|363491|363492|363493|363542|363543|363544|363566|363567|363568", + "text": "Papillary renal cell carcinoma, sporadic" + }, + { + "baseId": "27398|28694|28695|28698|133272|176503|213943|245074|362775|362873|363289|363290|363485|363486|363487|363488|363489|363490|363528|363542|363543|363544", + "text": "Carcinoma of gallbladder" + }, + { + "baseId": "27403|389215", + "text": "Pleomorphic xanthoastrocytoma" + }, + { + "baseId": "27404", + "text": "Adenocarcinoma" + }, + { + "baseId": "27405", + "text": "Thyroid gland undifferentiated (anaplastic) carcinoma" + }, + { + "baseId": "27407", + "text": "Nasopharyngeal carcinoma" + }, + { + "baseId": "27407|27641|27642|27652|28694|28695|28698|28939|83949|139098|171613|213943|236477|245074|263939|359197|361709|362753|362775|363036|363194|363312|363528|363529|363530|363536|363537", + "text": "Nasopharyngeal Neoplasms" + }, + { + "baseId": "27408|27409|27618|27641|27642|27652|40610|100947|139098|166215|173901|236477|260213|362768|362770|362771|362772|362929|363265|363266|363267|363293|363294|363295|363296|363297|363310|363348|363364|363365|363366|363367|363368|363369|363413|363414|363415|363518|363519|363520|363529|363530|473578|486679|486680|486681|486682|486683|486684|486685|486686|486687|486688|486689|486690|486691|486692|486693|486694", + "text": "Adenoid cystic carcinoma" + }, + { + "baseId": "27413|27542|27558|209594|242512|258306|361860|363496|374588|389564|393403|401340|426686|443412|487074|508886|536912|550710|561355|570483|570491|614429|622642|792801|918826|973093|976548", + "text": "Malignant tumor of esophagus" + }, + { + "baseId": "27418|27423", + "text": "Adrenocortical carcinoma, pediatric" + }, + { + "baseId": "27419", + "text": "Choroid plexus papilloma" + }, + { + "baseId": "27424|27425", + "text": "TNF receptor binding, altered" + }, + { + "baseId": "27426|27427|28575|28576|29700", + "text": "Malaria, cerebral, susceptibility to" + }, + { + "baseId": "27427", + "text": "Septic shock, susceptibility to" + }, + { + "baseId": "27427", + "text": "Human immunodeficiency virus dementia, susceptibility to" + }, + { + "baseId": "27427", + "text": "Migraine without aura, susceptibility to" + }, + { + "baseId": "27428", + "text": "Vascular dementia, susceptibility to" + }, + { + "baseId": "27429|45806", + "text": "Alzheimer disease, protection against" + }, + { + "baseId": "27431|27432|27433|27434|27435|27435|27436|27436|27437|27438|27439|27440|27441|27442|27443|27444|27445|27446|50163|50164|50165|50166|50167|50168|50169|50170|50171|50172|50173|50174|50175|50176|50177|50178|50179|50179|50180|50182|50184|50185|50186|50187|50188|50189|58302|58303|58304|58312|58313|58315|58316|58323|58324|58325|58328|58338|58342|58347|58356|58362|58364|58366|58367|58369|58374|58378|58379|58380|58387|58391|58393|58395|58397|58402|58403|58406|58408|58410|58412|58413|58414|58418|58419|58420|58421|58425|58426|58428|58429|58431|58432|58433|58442|58443|58444|58451|58454|58455|58460|58463|58464|58466|58467|58468|58472|58479|58486|58487|58488|58490|58493|58495|58497|58498|58502|58506|58507|58510|58513|58517|58521|58522|58525|58528|58532|58541|58542|58544|58546|58548|58550|58555|58557|58558|58559|58561|58572|58573|58579|58587|58593|58603|58604|58609|58610|58613|58618|58629|58630|58633|58633|58635|58639|58641|58647|58648|58654|58657|58659|58665|58666|58678|58684|58684|58686|58688|58689|58691|58692|58695|58697|58699|58701|58705|58710|58711|58713|58715|58717|58718|58722|58727|58730|58732|58734|58735|58742|58748|58749|58754|58759|58765|58773|58778|58783|58787|58788|58795|58797|58805|58805|58806|58808|58812|58815|58820|58822|58824|58828|58833|58836|58837|58839|58841|58842|58843|58845|58847|58848|58860|58865|58873|58875|58878|58880|58881|58887|58888|58890|58892|58896|58898|58900|58901|58902|58904|58913|58916|58917|58926|58932|58934|58935|58936|58951|58956|58959|58968|58977|58980|58991|58992|58993|58995|58996|58997|59003|59005|59006|59007|59008|59011|59013|59014|59015|59016|59017|59021|59026|59029|59036|59038|59039|59041|59042|59044|59049|59052|59054|59055|59060|59061|59064|59071|59074|59081|59084|59085|59087|59089|59091|59092|59092|59093|59097|59103|59105|59105|59106|59108|59112|59115|59119|59122|59131|59134|59138|59140|59143|59146|59148|59164|59166|59169|59171|59172|59175|59177|59178|59181|59182|59188|59189|59196|59200|59202|59205|59207|59214|59218|59219|59220|59222|59223|59224|59225|59226|59228|59230|59238|59240|59242|59245|59249|59251|59252|59255|59257|59259|59262|59267|59268|59278|59280|59282|59286|59287|59293|59293|59310|59324|59326|59332|59333|59337|59338|59343|59347|59351|59355|59356|75773|75776|75780|75785|75786|75788|75789|75797|75802|75804|75808|75812|75815|75817|75818|75819|75849|75850|75851|75852|75857|75862|75865|75870|75872|75873|75874|75878|75886|75888|75890|75895|75897|75899|75902|75903|75906|75910|75913|75918|75921|75922|75926|75927|75935|75948|75949|75951|75964|75966|75968|75969|75970|75974|75983|75989|75995|76006|76006|76011|76014|76015|76018|76020|76022|76034|76035|76039|76040|76041|76049|76050|76057|76058|76064|76065|76067|76068|76074|76077|76078|76079|76083|76090|76101|76120|76122|76125|76127|76128|76128|76130|76138|76147|76148|76153|76155|76161|76163|76166|76174|76176|76189|76195|76196|76200|76211|76212|76213|76217|76221|76232|76235|76239|76243|76245|76261|76265|76270|76273|76278|76279|76283|76284|76287|76292|76303|76311|76313|76316|76317|106772|106773|106774|106775|106776|106777|106778|106779|106780|106781|106782|106783|106784|106785|106786|106787|106788|106789|136089|137163|139109|139110|139111|139112|139113|139114|139115|139116|139117|139118|139119|139120|139122|139123|139124|139125|139127|139129|141438|141443|141444|141446|141447|141448|141450|141451|151070|151186|151196|151240|151384|171186|171187|184112|184112|184113|184114|184115|184116|184117|184119|184120|184121|184122|184123|184124|184125|184126|184127|184128|184129|184130|184131|184132|184133|184134|184135|184136|184137|184138|184139|184140|184141|184142|184143|184145|184146|184147|184148|184149|190765|191345|192086|194046|194155|195258|195259|203081|203082|203083|203084|203085|203086|203088|203089|203090|203091|203092|203093|203095|203096|203097|203098|203100|203101|203102|203103|203104|203105|203106|203108|203109|203110|203111|203112|203113|203115|203117|203117|203118|203121|203122|203124|203126|203128|203129|203131|203132|203133|203137|203138|203139|203140|203142|203143|203144|203147|203151|203152|203153|203154|203155|203156|203157|203158|203159|203161|203162|203163|203163|203164|203165|203166|203167|203168|203169|203170|203171|203176|203178|203179|203181|203182|203183|203184|203185|203186|203188|203189|203190|203192|203193|203194|203196|203202|203203|203204|203205|203206|203207|203209|203210|203212|203214|203215|203216|203217|203218|205408|213834|222450|222451|222452|222453|227853|230612|235088|235093|235094|235096|235101|235103|235105|235107|235108|235111|235113|235114|235115|235116|235119|235121|235123|235125|235128|235129|235130|235131|235132|235133|235134|235135|235138|235140|235141|235142|235143|235144|235145|235146|242204|242205|242206|242207|242208|242209|242210|242211|242212|242213|242214|242215|242216|242217|242218|242219|242220|242221|242222|242223|242224|242225|242226|242227|242228|242229|242230|242231|242231|242232|242233|242234|242235|242237|242238|242239|242240|242241|242242|242243|242244|242245|242246|242247|242249|242250|242251|242252|242253|242254|242255|242256|242257|242258|242259|242260|242261|242262|242264|242265|242266|242267|242268|242269|242271|242272|242273|242274|242275|242276|242277|242278|242279|242281|242282|242283|242284|242287|242290|242291|242292|242294|242295|242296|242297|242298|242299|242299|242300|242301|242302|242303|242304|242305|242306|242307|242308|242309|242310|242311|242312|242313|242314|242315|242316|242317|242318|242319|242320|242321|242322|242323|242324|242325|242326|242327|242328|242329|242330|242331|242332|242333|242334|242335|242336|242338|242339|242340|242341|242342|242343|242344|242345|247113|248512|255486|255487|255488|255489|255494|255499|255500|255501|260091|260800|264660|264758|264929|264936|265578|265615|265621|265860|267202|267209|267385|267769|268830|270190|271207|271247|271791|274074|324612|324618|324619|324621|324627|324628|324634|324639|334158|334162|334173|340849|340850|340851|340855|340856|340858|340859|340862|340863|340865|342258|342264|342264|342269|342270|342271|342274|360264|360267|360357|360985|361566|361881|374043|374066|374067|374072|374082|374087|374094|374096|374101|374116|374117|374118|374120|374126|374131|374135|374140|374151|374159|374160|374161|374163|374167|374171|374174|374175|374717|374726|374729|374732|374738|374751|374753|374782|374785|374799|374804|374819|374825|374839|374840|374841|374844|374860|375096|375104|375105|375115|375122|375128|375132|375158|375160|375163|375175|375182|375187|375194|375198|375199|375200|375208|377149|377167|377170|377173|377174|377178|377213|377215|377219|377225|377231|377260|377271|377294|377299|377307|384413|384442|390697|400494|400588|400590|400591|400636|400638|400645|400647|400649|400650|400661|400668|400669|400673|400681|400682|400684|400690|400695|400700|400701|400703|400707|400710|400716|400719|400724|400727|400733|400737|400741|400744|400746|400748|400749|400751|400752|400753|400754|400755|400756|400759|400760|400763|400766|400770|400771|400774|400775|400777|400778|400779|400780|400782|400783|400784|400786|400789|400790|400791|400792|400793|400793|400800|400803|400804|400805|400806|400814|400816|400821|400824|400825|400830|400832|400837|400838|400839|400840|400841|400842|400844|400848|400854|400857|400859|400861|400862|400864|400866|400872|400873|400874|400875|400878|400880|400881|400882|400884|400885|400887|400888|400889|400892|400893|400900|400904|400910|400913|400917|400919|400923|400926|400927|400930|400933|400936|400937|400939|400940|400941|400943|400947|400949|400951|400952|400954|400955|400956|400957|400958|400959|400963|400964|400966|400967|400971|400973|400974|400975|400976|400977|400978|400979|400979|400981|400985|400987|400990|400992|400999|401000|401008|401016|401020|401037|401040|401041|401073|401124|401130|401135|401136|401139|401140|401148|401152|401155|401158|401161|401165|401168|401171|401172|401182|401200|401201|401207|401210|401211|401212|401213|401216|401224|401234|401243|401251|401256|401268|401279|401280|401283|401289|401290|401292|401294|401301|401308|401313|401316|401317|401320|401331|401336|401344|401346|401361|401369|401371|401377|401379|401383|401383|401388|401390|401393|401394|401397|401401|401402|401404|401406|401407|401409|401413|401414|401415|401417|401418|401419|401423|401424|401426|401427|401428|401432|401433|401437|401438|401440|401441|401443|401445|401446|401447|401448|401449|401452|401453|401455|401457|401460|401461|401462|401468|401469|401472|401473|401474|401474|401478|401482|401484|401485|401486|401493|401494|401497|401503|401507|401510|401518|401519|401522|401523|401531|401534|401549|401555|401566|401568|401573|401574|401575|401576|401581|401589|401604|401605|401621|401622|401623|401624|401631|401637|401640|401656|401659|401661|401664|401667|401671|401673|401683|401686|401702|401708|401709|401716|401717|401718|401721|401723|401724|401725|401726|401727|409479|409485|409487|409488|409497|413206|419869|419873|422076|422077|422078|422079|424191|426153|426155|430966|432315|432384|437736|441778|441782|441788|441792|441798|445509|445512|445519|445522|445523|445524|445526|445529|445530|464809|465135|465138|465140|465143|465151|465153|465155|465156|465160|465165|465168|465169|465171|465173|465175|465179|465182|465186|465188|465190|465192|465195|465196|465197|465200|465203|465212|465216|465221|465227|465230|465232|465234|465238|465240|465247|465253|465254|465264|465266|465275|465278|465284|465285|465290|465291|465294|465300|465302|465304|465307|465309|465311|465315|465321|465322|465325|465329|465336|465337|465339|465342|465345|465350|465350|465353|465359|465360|465362|465364|465366|465367|465370|465373|465374|465377|465380|465381|465386|465387|465389|465392|465400|465403|465408|465410|465413|465417|465422|465524|465527|465660|465683|465702|465703|465705|465708|465713|465715|465718|465719|465721|465724|465731|465737|465741|465742|465747|465749|465752|465754|465759|465760|465764|465771|465779|465784|465785|465788|465801|465805|465809|465811|465815|465816|465818|465819|465821|465822|465823|465825|465829|465831|465832|465833|465834|465835|465836|465838|465841|465841|465842|465845|465847|465848|465850|465851|465852|465853|465854|465856|465858|465859|465865|465866|465868|465869|465872|465874|465875|465880|465882|465885|465887|465888|465889|465890|465892|465893|465896|465898|465899|465902|465907|465909|465911|465913|465914|465922|465925|465927|465929|465931|465932|465933|465934|465935|465936|465937|465939|465939|465944|465945|465951|465952|465953|465955|465958|465959|465961|465962|465965|465967|465972|465973|465974|465977|465980|465981|465983|465986|465988|465990|465992|465994|465996|465997|465998|466000|466001|466002|466003|466003|466005|466006|466007|466010|466011|466012|466013|466014|466015|466016|466019|466020|466023|466025|466026|466027|466028|466029|466030|466031|466033|466034|466037|466039|466040|466041|466045|466047|466048|466049|466050|466051|466052|466053|466054|466055|466057|466058|466059|466060|466061|466062|466063|466064|466066|466067|466069|466070|466071|466072|466073|466074|466076|466077|466078|466079|466080|466081|466082|466084|466086|466087|466088|466089|466092|466094|466095|466096|466100|466102|466107|466108|466110|466115|466117|466118|466119|466121|466122|466125|466127|466130|466133|466134|466135|466136|466140|466141|466143|466146|466148|466151|466152|466157|466158|466161|466163|466166|466167|466171|466175|466180|466182|466193|466201|466207|466209|466212|466214|466220|466222|466232|466235|466237|466238|466244|466248|466255|466264|466265|466276|466278|466281|466282|466289|466290|466293|466295|466296|466299|466301|466304|466317|466324|466327|466330|466333|466334|466335|477275|477283|477285|477288|477296|477298|477300|477306|477307|477310|477312|477315|477320|477323|477325|477328|477330|477335|477337|477346|477347|477349|477351|477352|477353|477357|477363|477370|477378|477389|477391|477398|477410|477411|477412|477413|477416|477418|477421|477423|477425|477426|477429|477446|477452|477456|477461|477463|477466|477480|477483|477495|477501|477512|477522|477532|477905|477909|477915|477922|477939|477942|477968|477970|478002|482091|488561|505166|505172|505173|505177|505204|505223|505228|505236|505465|505476|505688|505706|506137|506145|506149|506160|529228|529232|529239|529249|529505|529511|529513|529515|529517|529518|529519|529524|529525|529526|529527|529528|529529|529530|529532|529539|529543|529544|529547|529551|529552|529554|529556|529558|529560|529560|529561|529563|529565|529567|529572|529573|529574|529575|529578|529578|529580|529582|529583|529585|529587|529588|529591|529596|529598|529601|529602|529603|529604|529606|529609|529615|529616|529618|529622|529624|529626|529630|529633|529635|529636|529638|529639|529642|529644|529645|529646|529648|529649|529651|529654|529656|529657|529659|529660|529662|529664|529666|529668|529669|529673|529675|529677|529679|529686|529687|529688|529690|529694|529695|529696|529700|529704|529706|529708|529711|529717|529718|529719|529720|529723|529724|529725|529729|529731|529732|529735|529736|529740|529741|529744|529745|529746|529748|529749|529751|529752|529760|529761|529769|529773|529775|529783|529788|529798|529803|529804|529812|529813|529814|529815|529819|529824|529829|529835|529838|529841|529848|529850|529853|529865|529867|529868|529875|529877|529881|529885|529887|529888|529898|529906|529912|529915|529919|529925|529926|529927|529929|529938|529941|529944|529946|529948|529953|529961|529970|529971|529973|529973|529978|529979|529987|529989|529995|530007|530012|530015|530017|530023|530027|530029|530031|530036|530039|530044|530049|530054|530065|530069|530073|530074|530077|530078|530079|530080|530081|530083|530085|530087|530089|530091|530094|530095|530100|530102|530107|530113|530121|530127|530129|530142|530144|530145|530151|530152|530154|530158|530160|530164|530165|530166|530173|530178|530186|530189|530192|530195|530197|530199|530207|530209|530210|530212|530215|530218|530222|530228|530229|530231|530241|530244|530262|530265|530274|530276|530279|530281|530286|530288|530289|530292|530295|530296|530297|530301|530303|530305|530306|530319|537253|538095|538096|538097|538098|539064|567472|567474|567710|567712|567726|567729|567733|567736|567740|567741|567745|567753|567757|567759|567765|567770|567772|567773|567775|567777|567779|567787|567792|567797|567801|567802|567805|567807|567810|567812|567816|567817|567823|567826|567830|567832|567833|567844|567845|567849|567850|567853|567854|567856|567861|567865|567873|567880|567882|567891|567900|567908|567911|567913|567914|567919|569373|569579|569581|569583|569584|569588|569590|569596|569598|569617|569620|569621|569622|569624|569625|569629|569633|569636|569640|569642|569648|569651|569681|569681|569687|569698|569699|569703|569707|569708|569711|569712|569716|569718|569728|569736|569741|569744|569746|569749|569750|569758|569760|569761|569768|569769|569773|569778|569779|569783|569787|569789|569793|569796|569811|569819|569820|569823|569824|569825|569835|569843|569850|569852|569853|569861|569867|569868|569870|569874|569877|569880|569885|569897|569901|569907|569908|569910|569914|569916|570017|570028|570036|570037|570039|570042|570043|570045|570048|570053|570058|570063|570064|570069|570071|570073|570076|570078|570080|570081|570083|570088|570089|570091|570095|570099|570103|570106|570107|570111|570112|570114|570115|570124|570127|570128|570131|570133|570135|570136|570137|570139|570144|570147|570148|570150|570151|570155|570156|573647|573745|573751|573753|573758|573761|573765|573770|573775|573778|573779|573783|573787|573788|573794|573798|573802|573803|573808|573812|573813|573819|573820|573821|573827|573830|573831|573835|573838|573839|573840|573841|573843|573844|573845|573847|573853|573854|573856|573857|573859|573861|573862|573864|573866|573867|573873|573874|573877|573878|573879|573880|573884|573888|573891|573895|573898|573899|573900|573901|579974|579976|580053|580062|580270|583004|583044|609951|612160|614413|614414|614415|614416|614416|614417|614417|614418|614418|623323|644125|644126|644127|644128|644129|644130|644131|644132|644133|644134|644135|644136|644137|644138|644139|644140|644141|644142|644143|644144|644145|644146|644147|644148|644149|644150|644151|644152|644153|644154|644155|644156|644157|644158|644159|644160|644161|644162|644163|644164|644165|644166|644167|644168|644169|644170|644171|644172|644173|644174|644175|644176|644177|644178|644179|644180|644181|644182|644183|644184|644185|644186|644187|644188|644189|644190|644191|644192|644193|644194|644195|644196|644197|644198|644199|644200|644201|644202|644203|644204|644205|644206|644207|644208|644209|644210|644211|644212|644213|644214|644215|644216|644217|644218|644219|644220|644221|644222|644223|644224|644225|644226|644227|644228|644229|644230|644231|644232|644233|644234|644235|644236|644237|644238|644239|644240|644241|644242|644243|644244|644245|644246|644247|644248|644249|644250|644251|644252|644253|644254|644255|644256|644257|644258|644259|644260|644261|644262|644263|644264|644265|644266|644267|644268|644269|644270|644271|644272|644273|644274|644275|644276|644277|644278|644279|644280|644281|644282|644283|644284|644285|644286|644287|644288|644289|644290|644291|644292|644293|644294|644295|644296|644297|644298|644299|644300|644301|644302|644303|644304|644305|644306|644307|644308|644309|644310|644311|644312|644313|644314|644315|644316|644317|644318|644319|644320|644321|644322|644323|644324|644325|644326|644327|644328|644329|644330|644331|644332|644333|644334|644335|644336|644337|644338|644339|644340|644341|644342|644343|644344|644345|644346|644347|644348|644349|644350|644351|644352|644353|644354|644355|644356|644357|644358|644359|644360|644361|644362|644363|644364|644365|644366|644367|644368|644369|644370|644371|644372|644373|650511|652461|652464|652519|652522|652524|652530|652536|652539|652706|652707|652708|652714|652715|652795|652796|652802|652808|652810|652812|652934|652935|652937|652943|652945|652947|652953|652957|652961|652962|652977|653121|653227|653228|653236|653240|653245|653247|653250|653325|656346|656348|679793|684580|685415|685416|688536|688537|688538|688539|688540|688541|688542|688543|688544|688545|688547|688548|688549|688550|688551|688552|688553|690132|690133|690134|690135|693803|693804|693806|693807|693809|693811|693813|693814|693817|693819|693821|693822|693823|693824|693825|693826|693827|695680|695681|695682|695683|695685|703550|703551|703552|703553|703554|703555|714797|714799|726487|726488|726490|726491|726492|726494|726495|740014|740019|740023|744895|754977|754979|754981|754982|754983|754989|754990|754997|754999|755000|755003|755004|755006|760289|760420|760423|760467|770657|770659|770660|770661|770665|770673|770675|770676|770678|770681|770687|770689|770692|770696|770697|770698|770703|770706|770707|770708|770717|770718|770719|770722|770725|770727|770729|770731|770733|770734|770737|770738|770739|770742|770743|770744|770745|770747|770753|776117|776126|776128|776147|776150|776154|776160|776168|776173|776278|776284|776285|776292|776319|776485|776489|776512|778192|778194|778239|778396|785181|785182|785188|785191|785193|785194|785198|785199|785202|785205|785206|785207|785208|785209|785211|788000|788005|788038|791531|791532|791533|791534|791535|791536|791537|791538|791539|791540|791541|791542|797272|805865|812470|812471|812475|812485|812488|812491|812501|812506|812513|812515|812520|812527|812538|812540|812549|812561|812564|812565|812567|812569|812570|812571|812574|812575|812576|812581|812582|812584|812587|812596|812597|812598|812604|812606|812610|812616|812618|812620|812625|812630|812637|815615|815619|816331|816332|816333|820768|820776|820786|820787|820788|820789|820790|820791|820793|820794|820795|820796|820797|820968|820974|843300|843301|843302|843303|843304|843305|843306|843307|843308|843309|843310|843311|843312|843313|843314|843315|843316|843317|843318|843319|843320|843321|843322|843323|843324|843325|843326|843327|843328|843329|843330|843331|843332|843333|843334|843335|843336|843337|843338|843339|843340|843341|843342|843343|843344|843345|843346|843347|843348|843349|843350|843351|843352|843353|843354|843355|843356|843357|843358|843359|843360|843361|843362|843363|843364|843365|843366|843367|843368|843369|843370|843371|843372|843373|843374|843375|843376|843377|843378|843379|843380|843381|843382|843383|843384|843385|843386|843387|843388|843389|843390|843391|843392|843393|843394|843395|843396|843397|843398|843399|843400|843401|843402|843403|843404|843405|843406|843407|843408|843409|843410|843411|843412|843413|843414|843415|843416|843417|843418|843419|843420|843421|843422|843423|843424|843425|843426|843427|843428|843429|843430|843431|843432|843433|843434|843435|843436|843437|843438|843439|843440|843441|843442|843443|843444|843445|843446|843447|843448|843449|843450|843451|843452|843453|843454|843455|843456|843457|843458|843459|843460|843461|843462|843463|843464|843465|843466|843467|843468|843469|843470|843471|843472|843473|843474|843475|843476|843477|843478|843479|843480|843481|843482|843483|843484|843485|843486|843487|843488|843489|843490|843491|843492|843493|843494|843495|843496|843497|843498|843499|843500|843501|843502|843503|843504|843505|843506|843507|843508|843509|843510|843511|843512|843513|843514|843515|843516|843517|843518|843519|843520|843521|843522|843523|843524|843525|843526|843527|843528|843529|843530|843531|843532|843533|843534|843535|843536|843537|843538|843539|843540|843541|843542|843543|843544|843545|843546|843547|843548|843549|843550|851653|851655|851657|851659|851661|851663|851665|852091|852093|852095|852097|852099|852101|852103|852636|852637|852639|852643|852644|852645|852646|852647|852799|852803|852805|852807|852809|917823|917824|917825|917826|917827|917828|917829|917830|917831|917832|917833|917834|927605|927606|927607|927608|927609|927610|927611|927612|927613|927614|927615|927616|927617|927618|927619|927620|927621|927622|927623|927624|927625|927626|927627|927628|927629|927630|927631|927632|927633|927634|927635|927636|927637|927638|927639|927640|927641|927642|927643|927644|927645|927646|927647|927648|927649|927650|927651|927652|927653|927654|927655|927656|927657|927658|927659|927660|927661|927662|927663|927664|927665|927666|927667|927668|927669|927670|927671|927672|927673|927674|927675|927676|927677|927678|927679|927680|927681|927682|927683|927684|927685|927686|927687|927688|927689|927690|927691|927692|927693|927694|927695|927696|927697|937272|937273|937274|937275|937276|937277|937278|937279|937280|937281|937282|937283|937284|937285|937286|937287|937288|937289|937290|937291|937292|937293|937294|937295|937296|937297|937298|937299|937300|937301|937302|937303|937304|937305|937306|937307|937308|937309|937310|937311|937312|937313|937314|937315|937316|937317|937318|937319|937320|937321|937322|937323|937324|937325|937326|937327|937328|937329|937330|937331|937332|937333|937334|937335|937336|937337|937338|937339|937340|937341|937342|937343|937344|937345|937346|937347|937348|937349|937350|937351|937352|940347|940348|940349|940350|940351|940352|940353|940354|941120|941121|941122|941123|941124|941125|941126|941127|941128|941129|949220|949221|949222|949223|949224|949225|949226|949227|949228|949229|949230|949231|949232|949233|949234|949235|949236|949237|949238|949239|949240|949241|949242|949243|949244|949245|949246|949247|949248|949249|949250|949251|949252|949253|949254|949255|949256|949257|949258|949259|949260|949261|949262|949263|949264|949265|949266|949267|949268|949269|949270|949271|949272|949273|949274|949275|949276|949277|949278|949279|949280|949281|949282|949283|949284|949285|949286|949287|949288|949289|949290|949291|949292|949293|949294|949295|949296|949297|949298|949299|957664|957665|957666|957667|957668|957669|957670|957671|957672|957673|957674|957675|957676|957677|957678|957679|957680|957681|957682|957683|957684|957685|957686|957687|957688|957689|957690|957691|957692|960140|960141|960142|960143|960144|960145|960146|960147|960148|960149|960839|960840|960841|961580|961581|962742|962853|962881|962882|962883|962884|962885|962886|964444|965266|966665|966667|966683|967154|967160|971039|971040|980354|980355|980847", + "text": "Tuberous sclerosis 2" + }, + { + "baseId": "27447|27447|27448|27448|27449|27450|27450|27451|27453|27454|45545|45547|52571|52781|52784|52785|52785|52786|52787|52788|52789|52790|52790|52791|52795|52796|52797|52798|52798|52799|52800|52801|52804|52805|52806|52807|52809|52810|52811|52812|52816|52817|52818|52819|52820|52820|52821|52821|52823|52824|52825|52826|52828|52829|52829|52833|52834|52835|52836|52836|52837|52838|52839|52840|52841|52842|52843|52844|52844|52845|52846|136689|136690|136692|172354|172354|172355|172355|172361|172362|172497|172498|172499|172499|172503|172506|178434|178436|178438|178913|178915|178918|178920|178921|178923|178923|178929|178930|178930|178931|178932|178935|178935|178938|178939|178942|178943|178944|178954|186305|186305|189384|214101|214101|214102|228285|228288|238208|238209|249665|278568|279740|279740|279751|279841|364596|364601|390960|390976|390980|391016|391049|391055|391059|405014|414756|421199|430959|442697|442698|442699|447414|447415|447422|447423|447424|447426|447542|447544|447545|447552|447553|447649|447652|447677|447680|481116|498380|509125|515386|515389|515391|515457|515462|515475|515477|515481|515483|515487|515518|515532|515533|556754|556791|557110|557112|557114|558317|558319|558321|615185|627275|627276|627277|627278|627279|627280|627281|627282|627283|650606|654175|685089|794538|799150|823223|823224|823225|823226|823227|823228|823229|823230|823231|823232|863308|863309|863310|865091|865092|865093|865094|906489|921804|930239|930240|930241|930242|930243|939789|941656|952214|952215|952216|959537|959538", + "text": "Familial hypertrophic cardiomyopathy 2" + }, + { + "baseId": "27447|27447|27448|27450|27450|27451|27453|27453|27454|27454|27455|27456|45545|45547|52571|52781|52784|52785|52785|52786|52787|52787|52788|52789|52790|52791|52795|52796|52797|52798|52798|52800|52801|52804|52805|52806|52807|52809|52811|52812|52816|52817|52818|52819|52820|52821|52823|52824|52825|52826|52828|52828|52829|52833|52834|52835|52836|52836|52837|52838|52839|52840|52841|52842|52843|52844|52844|52845|52846|136689|136690|136692|172354|172355|172355|172361|172362|172362|172497|172498|172499|172503|172506|178434|178436|178438|178913|178918|178920|178921|178923|178929|178930|178930|178931|178932|178935|178935|178938|178939|178942|178943|178944|178944|178954|186305|186305|189384|214101|226594|228281|228285|228285|228288|238208|238209|278568|279740|279740|279751|279841|364596|364601|390960|390976|390980|391016|391049|391055|391059|405014|414756|421199|430959|430959|430960|442697|442698|442699|447414|447415|447422|447423|447424|447426|447542|447544|447545|447552|447553|447649|447652|447677|447680|481116|498380|509125|515386|515389|515391|515457|515462|515475|515477|515481|515483|515487|515518|515532|515533|556754|556791|557110|557112|557114|558317|558319|558321|615185|627275|627276|627277|627278|627279|627280|627281|627282|627283|650606|654175|679713|685089|794538|799150|823223|823224|823225|823226|823227|823228|823229|823230|823231|823232|863309|863310|865091|865092|865093|906489|918589|921804|930239|930240|930241|930242|930243|939789|941656|952214|952215|952216|959537|959538|970671", + "text": "Left ventricular noncompaction 6" + }, + { + "baseId": "27447|27447|27448|27450|27453|27454|27457|45545|45547|52571|52781|52784|52785|52785|52786|52787|52788|52789|52790|52790|52791|52795|52796|52797|52798|52799|52800|52801|52804|52805|52806|52807|52809|52810|52811|52812|52816|52817|52818|52819|52820|52820|52821|52823|52824|52825|52826|52828|52829|52829|52833|52834|52835|52836|52837|52838|52839|52840|52841|52842|52843|52844|52844|52845|52846|136689|136690|136692|172354|172355|172361|172362|172497|172498|172499|172503|172506|178434|178436|178438|178913|178918|178920|178921|178923|178929|178930|178930|178931|178932|178935|178935|178939|178942|178943|178944|178954|186305|186305|189384|214101|228285|228288|238208|238209|278568|279740|279740|279751|279841|364596|364601|390960|390976|390980|391016|391049|391055|391059|405014|414756|421199|430959|442697|442698|442699|447414|447415|447422|447423|447424|447426|447542|447544|447545|447552|447553|447649|447652|447677|447680|481116|498380|509125|515386|515389|515391|515457|515462|515475|515477|515481|515483|515487|515518|515532|515533|556754|556791|557110|557112|557114|558317|558319|558321|615185|627275|627276|627277|627278|627279|627280|627281|627282|627283|650606|685089|794538|799150|823223|823224|823225|823226|823227|823228|823229|823230|823231|823232|863308|863309|863310|865091|865092|865093|865094|906489|921804|930239|930240|930241|930242|930243|939789|941656|952214|952215|952216|959537|959538", + "text": "Familial restrictive cardiomyopathy 3" + }, + { + "baseId": "27450|27639|27641|27642|27643|27644|27645|27646|27648|27649|27650|27651|27652|38866|38867|48901|48905|48907|48909|48910|48911|48912|48915|48916|48917|48918|54465|54467|54468|54469|54470|54471|54472|125817|138253|174801|174803|174804|174805|175214|175215|175217|179411|179412|179413|179414|179416|179417|179418|179419|223774|239987|241153|241154|241156|241157|241158|241159|254209|254210|254211|254212|372233|374139|398125|398222|398226|398227|398316|398318|398657|398664|398678|398679|398682|398759|398760|398766|421862|442535|461199|461203|461389|461391|461709|487566|494969|497621|503676|513316|526264|526298|526306|526310|526481|526483|526484|526759|564738|564743|564745|564747|567334|567338|567341|570706|621820|640150|640151|640152|640153|640154|640155|640156|640157|640158|652098|652212|652331|653969|653975|653976|687787|693059|693060|693061|693062|695528|701802|738027|744533|752702|820384|820386|820387|820388|838558|838559|838560|838561|838562|838563|838564|838565|838566|852362|926270|926271|926272|926273|926274|926275|935593|935594|935595|935596|935597|935598|935599|935600|947499|947500|947501|947502|947503|956531|956532|959992|964672|969688|977406", + "text": "Costello syndrome" + }, + { + "baseId": "27453|576344", + "text": "Familial isolated dilated cardiomyopathy" + }, + { + "baseId": "27458|27459|27460|27461|27462|27471|27472|27473|45542|52532|52533|52534|52536|52537|52541|52542|52547|52548|52554|52558|52559|52561|52565|141388|141390|171245|176074|176215|176339|179836|186575|186585|186586|231083|257237|344272|349397|861652|882545|882546|882547|882548|882937|882938|980392", + "text": "Familial hypertrophic cardiomyopathy 7" + }, + { + "baseId": "27460|40515|40525|45545|52531|52532|52534|52541|52782|52786|52801|52821|52826|52838|75286|99451|99452|99456|99457|99460|133708|136049|141390|178927|197057|198589|206767|249759|257238|257239|257242|257243|257246|257247|257248|257251|257252|257253|278453|278454|278568|279423|279424|279425|279716|279717|280963|280964|280965|281106|281107|281108|281109|322278|322281|322290|322292|322305|322315|322319|322320|322321|331578|331581|331583|331587|331597|331610|331619|331628|331630|331646|334391|334413|338527|338558|338582|338583|338588|338608|338610|338614|338623|340274|340279|340282|340299|340308|340311|340314|340316|340327|340328|340329|340336|340337|344273|350406|350409|353523|353524|353525|447811|624664|649955|679527|679554|679555|679556|690510|746246|863829|863830|863831|863832|863833|863834|863835", + "text": "Familial restrictive cardiomyopathy" + }, + { + "baseId": "27460|40515|40525|45542|52531|52532|52533|52534|52536|52537|52541|52542|52547|52548|52561|54894|54903|136049|141388|141390|176339|179136|186575|186585|186586|231083|257237|257238|257239|257242|257243|257246|257247|257248|257251|257252|257253|302201|302204|302207|302210|302214|302217|302218|302225|305395|305441|305446|305448|305449|305450|305452|310209|310230|310235|310322|310359|334391|334413|344272|344273|349397|350406|350409|353523|353524|353525|882545|882546|882547|882548|882937|882938", + "text": "Familial Hypertrophic Cardiomyopathy with Wolff-Parkinson-White Syndrome" + }, + { + "baseId": "27460|40515|40525|52531|52532|52534|52541|136049|141390|172233|257238|257239|257242|257243|257246|257247|257248|257251|257252|257253|306405|306413|310567|315937|315939|316166|334391|334413|344273|350406|350409|353523|353524|353525|447176|447181|447183|447187|447190|447198|447204|447206|447207|447209|447210|447247|447251|447256|447264|447273|447276|447281|447282|447284|447285|447287|447291|447297|447298|447300|447304|447308|447310|447312|447313|447354|447355|447358|447360|447363|447364|447370|447372|447374|447386|447389|447392|447393|515160|515163|515165|515167|515177|515183|515184|515187|515189|515191|515193|515196|515197|515199|515201|515205|515207|515209|515303|515304|515308|556642|556644|556699|556701|556703|556705|556983|556985|556987|556995|556996|558148|558166|558168|558170|558172|558174|626967|626968|626969|626970|626971|626972|626973|626974|626975|626976|626977|626978|626979|626980|626981|650545|690392|690393|690395|690396|690397|690398|695010|696162|696173|696176|706749|718285|729927|761279|777037|818847|822829|822861|822862|822863|822864|822865|822866|822867|822868|822869|822870|822871|822872|822873|822874|822875|822876|822877|822878|850736|851106|921683|921684|921685|921686|921687|921688|921689|921690|930089|930090|930091|930092|930093|930094|930095|930096|930097|939774|939775|941514|941515|941516|941517|952112|952113", + "text": "Dilated Cardiomyopathy, Recessive" + }, + { + "baseId": "27460|28456|28456|28457|28458|28459|28460|28461|28462|28463|28465|28465|28466|28467|28468|28469|28471|28473|28474|28475|28476|28477|28478|28479|28480|28481|28482|28483|28484|28485|28486|28487|28489|28490|28491|28492|28492|28493|28494|28495|28496|28497|28498|28499|28500|28502|28505|28507|45550|45551|45552|51713|52623|52624|52625|52626|141551|176542|176680|176681|179802|179804|179805|179806|179808|179808|179811|179812|179813|179816|189469|194297|198436|229100|230872|230873|245091|245092|245093|268248|331216|331218|346968|346970|346974|346975|348237|348238|376813|376815|402722|402791|442026|467969|469742|487972|488022|506936|516875|532239|532250|532260|532263|536022|570116|570118|570120|570121|571911|571914|571917|574739|574740|620897|647184|647185|647186|647187|647188|647189|647190|647191|653085|760730|760731|785892|791854|791855|791856|797668|821188|821200|846806|846807|846808|846809|846810|846811|846812|846813|851773|879163|879164|879165|879166|879167|879168|919795|920390|928690|928691|938416|938417|938418|938419|950501|950502|950503|958458", + "text": "Amyloidogenic transthyretin amyloidosis" + }, + { + "baseId": "27460|45542|52532|52533|52534|52536|52537|52541|52542|52547|52548|52554|52559|52561|52567|141388|141390|176218|176339|186575|186585|186586|231083|257237|259051|344272|349397|882545|882546|882547|882548|882937|882938", + "text": "Dilated cardiomyopathy 2A" + }, + { + "baseId": "27460|27462|27463|27464|27465|27467|27468|29101|45542|52532|52533|52534|52536|52537|52541|52542|52547|52548|52554|52559|52561|141388|141390|176073|176215|176339|186575|186585|186586|231083|257237|260536|260545|344272|349397|536005|882545|882546|882547|882548|882937|882938", + "text": "Familial restrictive cardiomyopathy 1" + }, + { + "baseId": "27469|27470|52554|52559|52559|176215|681872", + "text": "Dilated cardiomyopathy 1FF" + }, + { + "baseId": "27474|27475|27478|29184|40531|40532|100020|135094|135095|135096|135097|135098|135099|135100|135101|135102|135103|135104|135105|135106|135107|135108|135109|135110|135111|135112|135113|207861|208344|208345|208349|254091|254100|254104|256047|256051|256054|256055|256056|256057|256058|256059|256060|256061|256062|256063|256064|256069|256070|256075|265977|313520|319735|319756|325800|325923|326878|326880|326881|327185|327186|327187|327192|327199|327200|327201|327202|327209|327210|327215|327216|327221|327228|327231|327245|327248|327252|327253|327254|327255|337030|337031|337032|337035|337043|337049|337053|337054|337057|337065|337071|337078|337082|337084|337085|337086|343251|343263|343264|343268|343270|343275|343278|343279|343283|343284|343289|343290|343292|343295|343302|343304|343305|343306|343310|343312|344858|344860|344863|344864|344865|344866|344867|344869|344872|344873|344875|344876|504193|513366|539022|578537|578665|679765|681917|694024|694026|694027|694031|694032|694033|694038|694041|695727|703943|867709|867728|867729|867730|867731|867733|868633|868635|868639|876409|876410|876411|876412|876413|876414|876415|876416|876417|876418|876419|876420|876421|876422|876423|876424|876425|876426|876427|876428|876429|876430|876431|876752|876753|876754|876755|876756|876757|876758|876759|876760|876761|876762|876763|876764|876765|880462|964359", + "text": "Distal arthrogryposis type 2B" + }, + { + "baseId": "27475|208347|237493|247055|322600|322680|330009|330036|480565|514015|514096|514097|905018|905019|905020|905021|983306", + "text": "Distal arthrogryposis" + }, + { + "baseId": "27475|480565|480566|480567", + "text": "Ulnar deviation of the wrist" + }, + { + "baseId": "27475", + "text": "Calcaneovalgus deformity" + }, + { + "baseId": "27475", + "text": "Congenital finger flexion contractures" + }, + { + "baseId": "27479|40515|40516|40517|40523|40525|103512|136048|136049|191025|257229|257235|334388|334390|344270|349393|349396|350399|350402|376864|376867|377843|430268|469272|469277|470781|470782|470786|471289|471291|488431|507573|532393|533388|533410|533449|533456|533948|533950|570286|571088|573413|575056|575057|575058|613976|648488|648489|648490|648491|648492|648493|648494|648495|653074|653472|653586|653636|694515|772907|778657|792815|848078|848079|848080|848081|851832|851834|858788|858789|882541|882542|882543|882544|882936|929114|929115|929116|938852|938853|938854|938855|941247|950921|950922|950923|950924|958738", + "text": "Nemaline myopathy 5" + }, + { + "baseId": "27480|27481|27482|27484|53844|53844|53845|53846|53846|53848|53849|173801|173802|173943|173943|179069|179071|179073|179075|179077|179079|179080|221423|221424|229105|239289|260530|291189|291190|292148|292151|292151|295592|295721|367337|367338|368738|393757|393762|393766|393961|393963|394176|394179|453086|453105|453108|453121|453436|481126|481126|487102|495462|500616|519612|519615|519623|519872|559122|559124|559126|559128|559130|559132|563270|631741|631742|631743|651121|686457|686457|689745|691475|775027|819413|828508|828509|828510|923323|923324|932067|940762|943686|960524", + "text": "Dilated cardiomyopathy 1Z" + }, + { + "baseId": "27481|27481|27482|27482|27483|27484|27484|48431|53844|53844|53845|53846|53846|53848|53849|173801|173802|173943|173943|179069|179071|179073|179075|179077|179079|179080|221423|221424|229105|239289|260530|291189|291190|292148|292151|292151|295592|295721|367337|367338|368738|393757|393762|393766|393961|393963|394176|394179|453086|453105|453108|453121|453436|481126|481126|487102|495462|500616|519612|519615|519623|519872|559122|559124|559126|559128|559130|559132|563270|631741|631742|631743|651121|686457|686457|689745|691475|775027|819413|828508|828509|828510|923323|923324|932067|940762|943686|960524", + "text": "Familial hypertrophic cardiomyopathy 13" + }, + { + "baseId": "27485|27486|27486|27487|27487|27488|27489|27489|27490|27492|27493|51279|150176|206725|206725|236875|236876|276423|276424|276425|276466|276470|276474|276477|276484|276490|276495|276498|276499|276500|276651|276653|276662|276663|276664|276666|276667|276677|276678|276685|276693|276703|276704|276710|277182|277187|277213|277218|277230|277231|277232|277237|277266|277269|277271|277275|277276|277276|277291|277293|277297|277318|277319|277329|277330|277333|277344|277366|277375|430975|447137|447221|447294|498039|515083|515208|515220|515222|552032|556489|556651|556651|612471|626844|626845|626846|761219|789847|789848|822748|850727|862275|862276|862277|862278|862279|862280|862281|862282|862283|862284|862285|862287|862288|862289|862291|862293|862294|862295|862296|862298|862299|862300|862302|862304|862305|862306|862308|862309|862310|862311|862312|862313|862314|862315|862316|862317|862318|862319|862320|862321|862322|862323|862324|862325|862326|862327|862328|862329|862330|862331|862332|862333|862334|862335|862336|862337|862338|862339|862340|862341|862342|862343|862344|862345|864981|921645|921646|921647|921648|952072|960406|963116|964129", + "text": "Nemaline myopathy 1" + }, + { + "baseId": "27489|27493", + "text": "Cap myopathy 1" + }, + { + "baseId": "27494|27495|27496|40542|40544|40548|40549|52580|52591|52592|52619|141400|175996|176137|179749|323022|332635|332637|332642|339583|340975|340977|340980|340984|340985|615125|693707|802205|802206|873933|873934|873935|873936|873937|873938|873939|873940|876550|966357|971026", + "text": "Familial hypertrophic cardiomyopathy 3" + }, + { + "baseId": "27495|27497|27498|40544|40548|40549|52580|52590|52591|52592|52619|141400|175996|176137|248636|323022|332635|332637|332642|339583|340975|340977|340980|340984|340985|693707|873933|873934|873935|873936|873937|873938|873939|873940|876550|919585|919586|919587|980512", + "text": "Dilated cardiomyopathy 1Y" + }, + { + "baseId": "27499|27501|27503|27504|100021|100022|100024|100025|150164|150174|178104|193519|194912|253550|274163|308279|308282|308294|312682|312683|312684|312692|319124|319129|319130|439464|444491|459224|459526|459528|460065|460073|460075|460082|502950|524620|524852|524985|525138|539022|552203|563259|565912|569071|578536|578537|622438|638296|638297|655964|655965|655966|692670|692671|775415|805017|805018|820139|836143|836144|836145|836146|836147|902009|902010|902011|902012|902013|902014|902015|902016|934772|965429", + "text": "Distal arthrogryposis type 1A" + }, + { + "baseId": "27500|27501|27503|27504|100021|100022|150164|150174|226473|308279|308282|308294|312683|312684|312692|319124|319129|319130|460075|539022|608956|655964|655965|655966|902009|902010|902011|902012|902013|902014|902015|902016|965429", + "text": "Nemaline myopathy 4" + }, + { + "baseId": "27502|619842|619843", + "text": "ARTHROGRYPOSIS, DISTAL, TYPE 2B4" + }, + { + "baseId": "27504|27505|27506", + "text": "Cap myopathy 2" + }, + { + "baseId": "27507|27509|27510|27511|27512|139884|139885|318369|318370|318372|318373|318374|318380|326497|326499|326508|326525|326526|326542|332747|334368|334374|334376|334381|334382|353255|353256|609859|615918|622418|725256|725257|799727|870376|870377|870378|870379|870380|870381|870382|870383|870384|870385|870386|870387|870388|870389|870390|872288|981826", + "text": "Triosephosphate isomerase deficiency" + }, + { + "baseId": "27508", + "text": "Triosephosphate isomerase manchester" + }, + { + "baseId": "27513|27514|44673|45263|51676|53486|136111|171193|177252|186334|189960|193881|193925|193983|196533|196600|199336|227842|331167|398965|399928|522213|568296|622688|622689|624863|629097|966466|966485|966505", + "text": "Arrhythmogenic right ventricular dysplasia, familial 1" + }, + { + "baseId": "27513|45760|45761|45763|143119|153683|165589|189960|189961|189962|199890|209425|209426|209427|209429|209431|209432|209434|209442|224475|226713|226714|226715|226720|226721|228353|241889|241890|241891|241893|241894|241895|241896|241897|279021|279029|279031|279036|279038|279052|279057|279060|279076|279092|279098|279099|279114|279116|279117|279120|279124|279129|279132|279190|279191|279201|279217|279315|279317|279319|279322|279328|279331|279332|280476|280477|280478|280480|280481|280491|280500|280510|280511|280528|280529|280533|280534|280535|280537|280542|280548|280552|280553|280568|280570|280571|280572|280573|280574|280576|280579|280580|280581|280584|280609|280610|280614|280624|280625|280627|280629|330677|337312|339325|339326|361158|361850|364644|364755|364894|373181|374363|376206|376215|376217|391046|399744|399746|399925|399928|399933|399935|399946|399950|400296|400297|400537|400541|400543|400547|400548|405051|415404|445251|463499|463501|463508|463511|464101|464105|464107|464112|464114|464116|464123|464127|464134|464397|464498|464504|464505|464509|464516|464519|464522|480527|486712|504866|510506|510510|510513|510514|510517|512797|528301|528305|528309|528381|528760|528762|528768|528845|536167|537682|556784|566629|566631|566633|568286|568296|568297|569031|569032|569035|569037|572926|572928|572929|609899|611984|642729|642730|642731|642732|642733|642734|642735|642736|642737|642738|652883|652886|655064|684527|688371|784792|797070|799165|820650|841825|841826|841827|841828|841829|841830|841831|841832|841833|841834|851587|852015|863592|863593|863594|863595|863596|863597|863598|863599|863618|863619|863621|863622|863623|863624|863625|863626|863627|863628|863629|863630|863631|863632|863633|863634|863635|863636|863637|863638|863639|865116|865117|865118|927177|927178|927179|927180|936748|941067|948698|948699", + "text": "Loeys-Dietz syndrome 4" + }, + { + "baseId": "27515|27516|138646|138660|138660|165578|178594|178757|213589|221811|223687|223688|224369|258556|258559|258583|258591|258594|258610|265345|270378|270379|270418|272323|361195|363225|370210|370282|370782|370791|396986|396996|397124|397338|397391|444444|459315|459333|459370|459780|465312|480522|510047|510064|510103|524714|563079|568846|581893|581894|581895|581896|581897|581898|581899|581900|581901|581902|581903|581904|581905|581906|581907|581908|581909|581910|614340|623396|672076|919208|919209|961613|964321|965624", + "text": "Aortic valve disorder" + }, + { + "baseId": "27517|27518|27519|27520|27521|27522|27523|27524|27525|27526|27527|27528|27529|27530|27531|27532|27533|27534|27535|27536|27537|27538|27539|47521|48121|48122|48123|48124|48125|48126|48127|48128|48129|48130|48131|48132|48133|48134|48135|48136|213952|227357|237394|244096|254935|254936|260054|260055|264584|264686|264694|264796|320400|320403|320404|320405|320406|320410|329095|329100|329105|329106|329124|329126|329128|329134|329135|335710|335711|335729|335747|335757|335758|335760|337546|337550|337554|337557|337558|337566|337573|337576|337578|360047|360057|360090|360147|360189|360191|360193|409111|414713|445218|445221|547123|547125|547129|547133|547137|547138|547147|547149|547150|547155|547156|547274|547280|547289|547292|547293|547301|547304|547306|547310|547314|547316|547317|547323|547436|547439|547444|547446|547449|547454|547455|547457|547459|547461|547465|547797|547800|547806|547810|547813|547814|547816|547818|547821|547822|547823|622234|622235|622236|622237|622238|622239|622240|622241|622242|622243|622263|622264|682508|702841|714090|714091|714093|725637|725638|725639|725643|725644|725645|730934|739183|739184|739185|739186|739187|744801|744812|754001|754002|754003|754004|754006|754007|754010|754011|760298|769757|769758|769759|769760|769761|769762|769765|769766|769773|769774|769775|775930|776263|778054|784705|802085|841350|871757|871758|871759|871760|871761|871762|871763|871764|871765|871766|871767|871768|871769|871770|871771|871772|871773|872366|979476|979477|979478|979479|979480|979481|979482|979483|979484|979485|979486|979487|979488|979489|979490|979491|979492|979493|979494|979495|979496|979497|979498|979499|979500|979501|979502|979503|979504|979505|979506|979507|979508|979509", + "text": "Autosomal recessive congenital ichthyosis 1" + }, + { + "baseId": "27520|48145|213952|213955|360090|360854|361028|361275|513891|514093|514094|536019|609204|609271|801514", + "text": "Ichthyosis (disease)" + }, + { + "baseId": "27540|27541|27550|27558|53818|209594|258306|361860|389564|393403|443412|561355|614261|614262", + "text": "Hereditary nonpolyposis colorectal cancer type 6" + }, + { + "baseId": "27541|27548|27550|27551|27558|27563|27564|27564|27565|31496|45518|45519|45520|45521|45523|45526|45527|45528|45529|45530|53818|53818|53819|53824|54260|54264|107231|141338|141339|141340|142915|142916|142917|142918|165588|165591|171075|171083|171185|173775|173912|173913|173914|173916|174853|174855|178439|178496|178507|178513|178514|178600|178705|178706|178707|195694|197618|209597|209598|209606|209607|209619|209630|209841|210162|210164|210170|210182|210245|210268|224187|224188|224262|224263|228353|242107|246943|247104|258614|258946|268446|279051|279058|279076|279101|279111|279138|279211|279220|279253|279316|279320|279321|280482|280487|280495|280519|280527|280541|280567|289903|289904|289915|289923|289924|289925|289927|289934|289937|289942|290671|290672|290673|290674|290679|290680|290683|290684|290685|290686|290687|290688|290689|290690|290691|290692|290693|290694|290695|290696|290697|293820|293826|293828|293830|293831|293832|293833|293834|293835|293837|293840|293841|293844|293845|293846|293849|293850|293870|293876|294355|294357|294358|294359|294361|294363|294365|294366|294368|294372|294373|294376|294377|294379|309059|309061|309069|309083|309089|309094|309095|309097|309098|309101|309105|309112|309113|309123|309124|309129|309130|309138|309140|309141|309142|309146|309147|309149|313814|313815|313818|313819|313820|313821|313823|313824|313825|313832|313838|313841|313842|313845|313847|313848|313852|313855|313865|313866|313875|313882|313883|319644|319648|319649|319653|319654|319676|319678|319685|319689|319695|319697|319702|319710|319711|319718|319719|319722|319723|319729|319736|319737|319742|319743|319754|319762|320207|320215|320222|320223|320224|320225|320231|320236|320237|320244|320245|320247|320248|320250|320251|320252|320253|320255|320256|320259|320260|320272|320273|320274|320275|320279|320280|320292|323132|323139|323144|323145|323149|323153|323154|323156|323160|323164|323167|323170|323178|323180|323189|323195|323205|323206|323208|323212|323215|323216|323217|332768|332774|332779|332781|332783|332784|332785|332787|332797|332799|332807|332808|332821|332822|332825|332827|332835|332836|332842|332843|332846|332848|332849|332858|332862|332871|332873|332874|332876|339731|339739|339741|339752|339754|339758|339761|339764|339766|339768|339771|339773|339779|339781|339786|341125|341126|341131|341133|341142|341143|341152|341154|341157|341159|341161|341162|341163|341164|341176|341177|341179|341181|341184|341187|341188|341189|341208|341212|341214|341216|353326|361860|452306|485735|485742|485753|654781", + "text": "Loeys-Dietz syndrome" + }, + { + "baseId": "27541|27563|31461|31462|31463|31464|31465|31466|31467|31468|31468|31469|31469|31470|31470|31471|31472|31475|31476|31476|31478|31478|31479|31479|31481|31482|31483|31484|31484|31487|31488|31488|31489|31490|31490|31490|31491|31491|31494|31495|31496|31496|31499|31500|31500|31501|31502|31503|31505|31505|31506|31507|38654|44696|44697|44698|44698|44699|44700|44701|44702|44704|44705|44705|44706|44706|44707|44707|44708|44708|44709|44710|44711|44712|44713|44714|44715|44717|44718|44719|44720|44721|44722|44723|44724|44724|44725|44726|44726|44727|44728|44728|44729|44729|44730|44731|44731|44732|44733|44735|44735|44736|44736|44737|44738|44738|44739|44739|44740|44740|44741|44742|44742|44743|44744|44745|44745|44746|44746|44747|44748|44748|44749|44749|44750|44750|44751|44753|44754|44756|44756|44757|44757|44758|44759|44760|44761|44761|44762|44763|44764|44765|44766|44767|44767|44768|44768|44769|44770|44771|44771|44772|44772|44773|44774|44775|44775|44776|44777|44778|44778|44779|44779|44780|44781|44782|44782|44783|44784|44785|44787|44788|44789|44790|44790|44791|44792|44792|44794|44795|44796|44796|44797|44797|45520|45528|45530|48266|48266|49841|51450|51451|51452|51453|51454|51454|51455|51455|51456|51457|51457|51458|51459|51461|51462|51463|51464|51464|51465|51465|51466|51466|51467|51468|51468|51469|51470|51470|51471|51472|51473|51474|51475|51476|51477|51477|51479|51480|51480|51481|51481|51482|51484|51485|51487|51488|51489|51489|51490|51490|51491|51491|51492|51494|51495|51495|51496|51497|51497|51499|51500|51500|51501|51502|51503|51504|51504|51505|51505|51506|51507|51507|51508|51510|51511|51512|51513|51513|51514|51515|51516|51517|51520|51521|51521|51523|51524|51524|51525|51525|51526|51526|51527|51528|51529|51530|51531|51533|51533|51534|51534|51535|51535|51536|51536|51537|51537|51538|51539|51540|51541|51542|51543|51543|51544|51545|51546|51546|51547|51548|51549|51550|51551|51551|51552|51552|51553|51553|51554|51555|51556|51558|51559|51560|51561|51562|51562|51563|51564|51564|51565|51566|51567|51568|51570|51571|51571|51572|51572|51573|51574|51575|51576|51577|51577|51578|51578|51580|51581|51582|51582|51583|51583|51584|51588|51589|51590|51591|51591|51592|51592|51593|51595|51595|51596|51597|51598|51599|51599|51603|51603|51604|51604|51606|51607|51608|51609|51609|51611|51613|51613|51614|51615|51616|51617|51618|53818|53819|53825|53828|77989|132461|132465|132473|141002|141002|141003|141004|141005|141005|141007|141007|141008|141009|141009|141012|141013|141014|141014|141016|141016|141017|141017|141339|141340|165543|165543|165544|165544|165545|165546|165547|165580|171082|171083|171171|171172|171172|171173|171173|171174|171176|171176|171177|171177|171178|171178|171179|171179|171180|171180|171181|171181|171182|171182|171763|173774|175772|175953|175978|175979|175979|175980|175982|175982|175983|175984|175986|175987|175987|175988|175988|175990|175990|175991|175991|176121|176122|176122|176123|176123|176124|176125|176127|176128|176129|176130|176130|176131|176132|176133|176134|178494|178495|178514|178690|178691|178692|178694|178694|178696|178697|178698|178699|178699|178700|178700|178701|178702|178703|178713|193009|194183|194769|197570|197570|197573|197574|197576|197579|197580|197581|197581|197582|197585|197585|197587|197588|197589|197590|197591|197592|197594|197596|197600|197600|197601|197602|197602|197603|197604|197604|197605|197610|197613|197615|197615|197617|197617|197618|197619|197619|197620|197620|197624|197625|197626|197631|197631|197632|197632|197634|197637|197640|197641|197641|197643|197645|197645|197646|197647|197649|197650|197650|197655|197655|197657|197658|197660|197661|197665|197665|197669|197672|197672|197674|197674|197675|197676|197677|197677|197678|197681|197685|197685|197686|197688|197690|197690|197698|197701|197703|197705|197705|197710|197710|197715|197715|197717|197717|197719|197721|197723|197723|197726|197731|197734|197735|197736|197739|197742|197742|197743|197743|197745|197746|197746|197749|197750|197753|197755|197755|197756|197756|197757|197757|197762|197763|197764|197765|197765|197771|197773|197774|197774|197776|197777|197777|197786|197787|197788|197789|197789|197793|197793|197795|197799|197802|197803|197806|197806|197808|197808|197811|197811|197815|197817|197817|197820|197823|197823|197824|197827|197829|197890|209570|209597|209607|209619|209630|222428|222429|224247|224299|224366|224368|224479|224480|224481|224481|224482|224483|224484|224485|224485|224486|224487|224488|224489|224489|224490|224491|224492|224492|224493|224494|224495|224496|224497|224497|224498|224499|224500|224500|224501|224502|224503|224504|224504|227370|227370|227463|227463|230585|230588|230590|230592|242025|242058|242058|242059|242059|242061|242062|242063|242064|242065|242066|242066|242067|242068|242069|242070|242071|242072|242072|242073|242074|242075|242076|242077|242079|242080|242080|242081|242081|242082|242082|242083|242084|255255|255255|255268|258264|258815|258815|258816|258816|258817|258818|258819|258821|258823|258823|258824|258825|258827|258829|258830|258836|258836|258842|258842|258845|258845|258847|258847|258851|258855|258859|258873|258874|258883|258885|258886|258887|258887|258890|258899|258906|258907|258909|258909|258910|258914|258917|258919|258925|258929|260073|260073|264731|264737|265846|265919|265919|265950|268313|269190|271960|273504|289903|289904|289914|289923|289924|289925|289934|289937|289942|289944|290671|290672|290673|290679|290680|290683|290684|290685|290686|290687|290688|290689|290691|290692|290693|290694|290695|290696|290697|293820|293826|293827|293828|293829|293830|293831|293832|293834|293835|293837|293839|293840|293841|293842|293843|293844|293845|293846|293849|293850|293870|294355|294356|294357|294358|294359|294361|294362|294363|294364|294365|294366|294367|294368|294372|294379|322730|322731|322733|322734|322736|322737|322739|322740|322742|322743|322749|322752|322760|322762|322767|322768|322769|322769|322772|322773|322781|322782|322787|322788|322792|322793|322793|322794|322796|322796|322805|322805|322810|322811|332233|332236|332237|332238|332243|332247|332248|332249|332251|332252|332254|332259|332260|332261|332263|332264|332265|332267|332267|332268|332271|332272|332272|332278|332279|332280|332283|339214|339217|339221|339222|339223|339224|339232|339237|339240|339241|339243|339245|339250|339263|339264|339265|339266|339275|339276|339277|339280|339280|339281|339285|339285|339286|339286|339287|339295|339295|339296|339297|339297|339304|340691|340694|340697|340712|340714|340715|340716|340718|340719|340720|340723|340726|340728|340728|340729|340732|340732|340736|340738|340743|340743|340744|340744|340745|340746|340748|360077|360080|360164|360164|360166|360174|360178|360178|360975|360976|362067|362069|362231|373447|373448|373456|373487|373504|373539|373539|373552|373562|373562|373568|373568|373571|374169|374188|374202|374217|374541|374541|374549|374555|374570|374574|374585|374601|374601|374614|374616|376479|376481|376492|376507|390131|400127|400129|400131|400138|400140|400143|400144|400145|400146|400157|400160|400162|400165|400165|400172|400174|400176|400177|400182|400189|400192|400194|400196|400206|400206|400214|400216|400225|400229|400243|400246|400246|400257|400259|400292|400302|400306|400313|400315|400318|400318|400324|400326|400333|400348|400358|400366|400368|400371|400383|400390|400391|400392|400395|400396|400397|400407|400410|400416|400423|400427|400620|400626|400627|400630|400633|400634|400640|400644|400646|400648|400656|400656|400658|400660|400664|400670|400674|400677|400683|400687|400688|400691|400692|400694|400696|400698|400702|400705|400711|400712|400714|400715|400725|400732|400742|400743|400747|400858|400932|400934|400934|400946|400950|400960|400961|400962|400968|400970|400970|400972|400982|400984|400991|401002|401006|401013|401013|401015|401015|401022|401026|401030|401031|401033|401035|401044|401046|401053|409254|409254|409256|409260|409260|409261|409261|409279|409287|409287|409288|409292|409294|409297|409298|409299|409300|415425|415425|415427|415429|415436|422019|422020|422024|422026|422026|422037|422039|426105|426107|426109|426109|426112|426115|426115|430986|433135|433136|433137|433139|433143|433145|433148|433148|433556|433557|433558|437979|437982|439468|440009|445341|445341|445342|445343|445344|445345|445345|445346|445347|445348|445350|445356|445362|445369|445370|445375|445376|445376|445378|445379|446890|450151|463946|463948|464306|464309|464311|464311|464313|464320|464320|464324|464334|464335|464338|464340|464342|464346|464348|464352|464353|464356|464359|464375|464377|464379|464381|464383|464384|464388|464390|464394|464521|464528|464532|464780|464782|464836|464837|464853|464856|464856|464858|464861|464872|464872|464876|464879|464882|464883|464887|464892|464901|464901|464904|464904|464906|464906|464909|464910|464910|464912|464912|464918|464927|464934|464935|464936|464937|464940|464940|464941|464945|464947|464955|464960|464961|464962|464967|464971|464974|464978|464984|464986|465086|465086|465092|465096|465099|465101|465105|465105|465106|465107|465108|465112|465115|465116|465116|465117|465121|465123|465123|465124|465124|465126|465136|465139|465146|465146|465147|465148|465149|465150|465152|465154|465158|465161|465161|465163|465166|465170|465170|465176|465177|465184|465185|465187|465189|465191|465194|465198|465201|465206|465206|465210|465219|465220|465226|465235|465244|465248|465251|482071|482071|482072|485756|485757|485757|485758|485759|485760|485761|485761|485812|486121|487543|487543|487544|487548|487563|487572|487575|487575|487581|487591|487591|487628|487628|487629|487639|487656|487707|487707|487719|487723|487775|487775|487784|487788|487788|487809|487844|487849|487858|487865|487876|487884|487886|487886|487888|493078|493902|497066|497067|497682|504789|504826|504832|505022|505643|505654|505700|508721|508723|510530|510532|510543|510544|510546|510546|510549|510553|510553|510554|510554|510555|510565|510567|510572|510573|510575|510578|510581|510585|510590|510591|510592|510594|510599|510601|510612|510617|510620|510622|510624|510631|510635|510635|510641|510646|511123|511124|511125|511125|511128|511129|511130|511131|511131|514674|528563|528881|528891|528892|528892|528893|528894|528897|528899|528900|528902|528907|528908|528909|528910|528912|528915|528916|528918|528919|528921|528927|528933|528935|528943|528944|528948|528956|528957|528962|528963|528964|528967|528972|528976|528978|528981|528983|528983|528991|528993|528995|528999|529000|529011|529016|529016|529018|529020|529026|529265|529273|529273|529275|529280|529291|529291|529294|529295|529300|529300|529307|529312|529313|529328|529331|529337|529338|529345|529345|529346|529348|529359|529359|529363|529364|529367|529367|529368|529419|529422|529425|529427|529429|529433|529435|529437|529438|529438|529441|529446|529452|529454|529456|529459|529469|529474|529481|529483|529485|529488|529493|529504|529507|529507|529514|529516|529520|529534|529538|536887|536889|538029|538030|538031|538032|538033|538034|538035|538036|538037|538038|538039|538040|538041|538042|538043|538043|538044|538045|538046|538047|538048|538049|538050|538051|538052|538053|538053|538054|538054|538055|538055|538056|538057|538058|538059|538060|538061|538061|538062|538063|538064|538065|538066|538067|538068|538069|538070|538071|538073|538074|538075|538076|538077|538078|538079|538079|538080|538081|538084|539060|539478|539479|539481|539482|539483|539483|539484|539485|539486|539487|539488|539489|539489|539490|539492|539493|539494|539495|539496|539497|539498|539499|539499|539500|539502|539503|539504|539505|539506|539506|539507|539508|539508|539509|539510|539510|539511|539512|539513|539514|539516|539517|539518|539519|539520|539521|539522|539523|539524|539525|539526|539527|539528|539529|539530|539531|539531|539532|539533|539534|539535|539536|539537|539537|539538|539538|539539|539540|539541|539541|539542|539543|539544|539545|539546|539547|539548|539549|539550|539551|539553|539554|539555|539555|539556|539557|539558|539560|539561|539562|539563|539564|539565|539566|539567|539568|539569|539570|539570|539571|539572|539573|539574|539575|539576|539577|539578|539579|539580|539581|539582|539583|539584|539585|539585|539586|539588|539589|539590|539591|539592|539593|539594|539595|539596|539597|539598|539599|539600|539601|539602|539602|539603|539604|539605|539606|539607|539608|539609|539610|539611|539613|539614|539615|539616|539617|539618|539619|539620|539621|539622|539623|539624|539625|539626|539627|539628|539629|539630|539631|539632|539633|539634|539635|539635|539636|539637|539638|539639|539640|539641|539642|539643|539644|539645|539646|539647|539648|539649|539650|539651|539652|539653|539654|539654|539655|539656|539657|539658|539659|539660|539661|539662|539663|539664|539665|539666|539667|539668|539669|539670|539670|539671|539671|539673|539674|539675|539676|539677|539678|539679|539680|539681|539682|539683|539684|539685|539686|539687|539688|539689|539690|539691|539692|539693|539694|539694|539695|539696|539697|539697|539698|539699|539700|539701|539702|539703|539704|539705|539706|539707|539708|539708|539709|539710|539711|539711|539712|539713|539714|539715|539715|539716|539717|539718|539719|539720|539721|539722|539723|539723|539724|539725|539726|539727|539727|539728|539729|539730|539731|539732|539733|539734|539735|539736|539737|539738|539739|539740|539741|539741|539742|539743|539744|539745|539746|539747|539748|539749|539750|539751|539752|539753|539754|539755|539756|539757|539758|539759|539760|539761|539762|539763|539763|539764|539765|539766|539767|539767|539768|539769|539770|539771|539772|539773|539774|539775|539776|539777|539778|539779|539780|539781|539782|539782|539783|539783|539784|539785|539786|539787|539788|539789|539789|539790|539791|539792|539793|539794|539795|539796|539797|539798|539800|539801|539802|539802|539803|539804|539804|539805|539806|539807|539808|539809|539809|539810|539811|539812|539814|539815|539816|539817|539818|539819|539820|539820|539821|539822|539823|539824|539825|539826|539827|539828|539829|539829|539830|539831|539832|539833|539834|539836|539836|539837|539838|539839|539840|539841|539842|539843|539844|539845|539846|539847|539848|539849|539850|539851|539852|539853|539853|539854|539855|539856|539857|539858|539859|539860|539861|539862|539863|539864|539865|539865|539866|539867|539868|539868|539869|539870|539871|539872|539873|539873|539874|539875|539876|539877|539878|539880|539880|539881|539882|539883|539884|539884|539885|539886|539887|539887|539888|539889|539889|539890|539891|539891|539892|539893|539894|539895|539896|539896|539897|539899|539900|539901|539902|539903|539904|539905|539906|539907|539908|539908|539909|539910|539911|539912|539913|539914|539914|539915|539915|539916|539917|539918|539919|539919|539920|539920|539921|539922|539923|539924|539925|539926|539927|539928|539928|539929|539930|539931|539932|539933|539934|539935|539936|539937|539938|539939|539940|539941|539942|539943|539944|539945|539945|539946|539947|539948|539949|539950|539951|539952|539953|539954|539955|539956|539957|539958|551267|551267|551268|551394|551395|551396|551397|551398|552461|553418|566875|566878|566880|567105|567107|567110|567115|567117|567121|567124|567133|567134|567137|567138|567140|567146|567147|567149|567151|567153|567157|567159|567163|567165|567172|567176|567178|567188|567189|567191|567191|567192|568573|568861|568873|568887|568893|568899|568905|568912|568914|568915|568918|568920|568926|568933|568937|568942|568943|568947|568953|568962|568964|568967|568973|568978|568987|568988|568994|569206|569208|569428|569429|569434|569436|569438|569442|569443|569449|569459|569460|569469|569471|569473|569476|569481|569482|569485|569486|569490|569491|569493|569496|569497|569499|569509|569510|569515|569516|569518|569519|569521|569523|569525|569531|569532|573113|573120|573121|573321|573321|573323|573324|573328|573329|573336|573340|573341|573343|573345|573349|573354|573358|573363|573365|573368|573368|573369|573370|573372|573375|573381|573387|573391|573394|573395|573402|581791|581870|609012|609339|609924|612100|612451|613463|613465|613466|613467|613468|613469|613470|613471|613472|613473|613474|613478|613478|613479|615099|615112|615118|618247|618267|618271|619580|619595|621487|621494|621494|621499|621501|621516|622211|623112|624502|625978|625979|626020|626021|626021|626025|626345|626346|626347|626350|626416|626443|626444|626451|643295|643296|643297|643298|643298|643299|643300|643301|643302|643303|643304|643305|643306|643307|643308|643309|643310|643311|643312|643313|643314|643315|643316|643317|643318|643319|643320|643321|643322|643323|643324|643325|643326|643327|643328|643329|643330|643331|643332|643333|643334|643335|643336|643337|643338|643339|643340|643341|643342|643343|643344|643345|643346|643347|643348|643349|643350|643351|643352|643353|643354|643355|643356|643357|643358|643359|643360|643361|643362|643363|643364|643365|643366|643367|643368|643369|643370|643371|643372|643373|643374|643375|643376|643377|643378|643379|643380|643381|643382|643383|643384|643385|643386|643387|643388|643389|643390|643391|643392|643393|643394|643395|643396|643397|643398|643399|643400|643401|643402|643403|643403|643404|643405|643406|643407|643408|643409|643410|643411|643412|643413|643414|643415|643416|643417|643417|643418|652390|652392|652394|652418|652419|652523|652568|652668|652674|652748|652750|652753|653005|653008|653012|653038|653045|653049|653057|653989|654111|654777|654778|654779|655012|672158|672159|672160|672161|672162|672163|672164|672164|672166|672167|672168|672169|672170|672171|672172|672173|672174|672175|672176|672177|672178|672179|672180|672181|672182|672183|672184|672185|672186|672187|672188|672189|672190|672191|672192|672193|672194|672195|672196|672197|672198|672199|672200|672322|672356|672359|672360|672361|672368|672369|672370|672370|672441|672442|672443|677071|677128|678117|678118|678172|679355|683146|688441|688442|688446|688447|688448|690107|693691|693692|693693|695648|703237|739656|739658|739660|739662|739663|754494|770200|770208|776012|784948|789089|791455|791456|791457|791458|791459|791460|791461|791462|791463|791464|791465|791466|791467|791468|791469|791470|791470|791471|791472|791473|791473|791474|791475|797158|798958|799801|799807|799811|816479|816508|820708|820709|820710|820711|820712|820713|820714|820715|820716|820717|820718|820719|820720|842430|842431|842432|842433|842434|842435|842436|842437|842438|842439|842440|842441|842442|842443|842444|842445|842446|842447|842447|842448|842449|842450|842451|842452|842453|842454|842455|842456|842457|842458|842459|842460|842461|842462|842463|842464|842465|842466|842467|842468|842469|842470|842471|842472|842473|842474|842475|842476|842477|842478|842479|842480|842481|842482|842483|842484|842485|842486|842487|842488|842489|842490|842491|842492|842493|842494|842495|842496|842497|842498|842499|842500|842501|842502|842503|842504|842505|842506|842507|842508|842509|842510|842511|842512|842513|842514|842515|842516|842517|842518|842519|842520|842521|842522|842523|842524|842525|842526|842527|842528|842529|842530|842531|842532|842533|842534|842535|842536|842537|842538|842539|842540|842541|842542|842543|842544|842545|851619|851621|851623|851625|851627|852043|852045|852047|852049|852051|852053|852055|852057|852059|852061|852592|852596|852598|852599|852767|852768|852769|852771|852775|852777|855103|858309|858386|858412|861646|873702|873703|873704|873705|873706|873707|873708|873709|873710|873711|873712|873713|873714|873715|873716|873717|873718|873719|873720|873721|873722|873723|873724|873725|873726|873727|873727|873728|873729|873730|873731|873732|873733|873734|873735|873736|873737|873738|873739|873740|873741|873742|876533|876534|876535|876536|876537|912674|912754|912768|912772|912788|912821|912838|912899|912906|912942|913011|913041|918184|927345|927346|927347|927348|927349|927350|927351|927352|927353|927354|927355|927356|927357|927358|927359|927360|927361|927362|927363|927364|927365|927366|927367|927368|927369|927370|927371|927372|927373|927374|927375|936956|936957|936958|936959|936960|936961|936962|936963|936964|936965|936966|936967|936968|936969|936970|936971|936972|936973|936974|936975|936976|936977|936978|936979|936980|936981|936982|936983|936984|936985|936986|936987|936988|936989|936990|936991|936992|936993|940327|940328|940329|941091|948913|948914|948915|948916|948917|948918|948919|948920|948921|948922|948923|948924|948925|948926|948927|948928|948929|948930|948931|948932|948933|948934|948935|948936|948937|948938|948939|948940|948941|948942|948943|948944|948945|948946|957440|957441|957442|957443|957444|957445|957446|957447|957448|957449|957450|957451|957452|957453|957454|957455|957456|960113|960114|960115|960116|960117|960823|961533|961874|962169|964422|966403|966476|967200|967201|967202|967203|971018|971019|972478", + "text": "Marfan syndrome" + }, + { + "baseId": "27541|27543|27544|27545|27546|27547|27548|27549|27550|27551|27552|27553|27554|27555|27556|27557|27558|27558|27746|45526|45528|45535|45536|45537|45538|53818|53818|53819|53825|53828|53829|53830|53833|53837|53838|53839|53840|53841|53842|53843|141338|171083|173913|175752|175753|175756|175893|175894|175895|175896|175897|175898|178514|178659|178660|189917|189921|189922|189923|198463|198465|198466|198467|198468|209594|209628|209632|213550|230432|239131|241613|241614|251089|258306|289903|289914|289915|289924|289927|289944|290674|290679|290685|290688|290690|290692|290693|290694|290696|293827|293828|293829|293833|293839|293842|293843|293870|293876|294355|294356|294362|294364|294367|294373|294376|294377|318742|318743|333225|334943|361860|372598|375478|380155|389564|389564|393403|399090|399598|399601|399859|399862|419286|443412|445104|445106|462539|462541|462543|462819|462823|462828|462831|463297|463408|463409|504127|504690|505103|510406|527425|527429|527708|527711|527958|527968|527970|552072|561355|562661|565775|565779|565781|567093|567096|567097|567098|568207|572154|614261|614262|641506|641507|641508|641509|641510|641511|684378|769367|784499|840474|840475|840476|840477|840478|840479|840480|840481|840482|840483|840484|888650|888651|888652|888653|888654|888655|888656|888657|888658|888659|888660|888661|888662|891634|926789|926790|936319|936320|936321|936322|948244|948245|957010|957011|957012|967179", + "text": "Loeys-Dietz syndrome 2" + }, + { + "baseId": "27548|101110|101111|101111|101112|101113|101115|101116|101116|101117|101118|101119|101120|101120|101121|101122|101123|101123|101125|101126|101126|101128|101129|101133|101136|101138|101140|135559|135560|135562|135563|135564|135566|135567|135568|135569|135569|135570|135570|135571|135572|135573|135574|135575|135576|135577|135578|135579|135580|135581|135581|135585|135587|135590|135591|135592|135593|135594|176982|176982|177113|177114|177244|177245|177245|177246|177376|177377|178007|178008|190463|190840|190841|191225|191382|191681|191681|191908|192016|192016|192763|192843|192843|192918|193188|193790|194028|194062|194118|194119|194600|194601|194627|194627|194646|195087|195130|195130|195130|195143|195165|195166|195173|195515|195515|195687|195687|196423|196424|196425|196426|204998|204999|205000|205000|205000|207439|207440|207442|207443|207451|207451|207452|207454|207454|207455|207456|207458|237211|237211|265480|265779|265869|265869|266388|269138|269492|269758|271076|271328|271362|271384|271384|271639|272072|272222|273754|275081|301330|301339|301346|301353|301355|301360|301362|301364|304513|304513|304524|304534|309111|309115|309116|309118|309119|309144|309150|309177|309277|309278|309293|309303|309315|309325|368816|368818|368819|368820|369398|426667|426667|428647|428648|428649|428651|441029|441030|441031|444034|444034|455889|455890|455893|455897|455905|455905|455911|455913|455914|455919|455922|455928|455932|455935|455941|455941|455949|455949|455950|455956|455960|455963|455968|456191|456193|456195|456198|456200|456206|456207|456209|456210|456213|456215|456509|456516|456518|456520|456522|456523|456527|456868|456874|456877|456879|456881|456885|456888|456890|456892|456904|456908|456910|456912|456913|456914|456915|456931|488628|488628|488848|489416|489507|489661|489661|489735|489914|492799|492833|493077|493423|501502|501834|501852|501856|502130|521909|521914|521917|521919|521922|521924|521932|521935|521938|521940|521942|521942|521944|522270|522276|522285|522287|522290|522293|522295|522297|522300|522320|522321|522323|522324|522327|522332|522335|522337|522342|522346|522349|522352|522356|522356|522677|522679|522685|522689|522692|522694|522698|522698|522701|522706|522708|536722|537514|538390|551773|561124|561131|561137|561145|561147|561148|561149|561152|561153|561161|561172|561173|561177|561179|561182|563906|563911|563912|563914|563917|563918|563921|563925|563928|566188|566198|566200|566214|566216|566228|566231|566237|566250|566254|566255|576123|576929|576930|584429|585958|587188|612768|635340|635341|635342|635343|635344|635345|635346|635347|635348|635349|635350|635351|635352|635353|635354|635355|635356|635357|635358|635359|635360|635361|635362|635363|635364|635365|635366|635367|635368|635369|635370|635371|635372|635373|635374|635375|635376|635377|635378|635379|635380|635381|635382|635383|635384|635385|635386|635387|635388|651624|692085|692086|692087|699719|699721|710674|710676|710678|722217|722218|722219|722220|722221|735851|735852|750312|750313|750314|750315|759617|759689|765937|765940|765944|765945|765948|765949|765959|775233|775240|775245|777569|777600|777667|777668|777669|779295|782699|782701|782702|782705|782707|782709|787605|793194|795944|819771|832631|832632|832633|832634|832635|832636|832637|832638|832639|832640|832641|832642|832643|832644|832645|832646|832647|832648|832649|832650|832651|832652|832653|832654|832655|832656|832657|832658|832659|832660|832661|832662|832663|832664|832665|832666|832667|832667|832668|832669|832670|832671|832672|832673|832674|832675|832676|832677|832677|832678|832679|832680|832681|832682|832683|832684|832685|832686|832687|832688|832689|832690|832691|832692|832693|832694|832695|832696|832697|832698|832699|832700|832701|832702|832703|832704|832705|832706|832707|832708|832709|832710|832711|832712|832713|832714|832715|832716|832717|832718|832719|832720|832721|832722|832723|832724|832725|832726|832727|832728|832729|832730|832731|832732|832733|832734|832735|832736|832737|832738|832739|832740|852048|852312|897097|919065|919065|919066|919067|920231|920232|920233|924530|924531|924532|924533|924534|924535|924536|924537|924538|924539|924540|924541|924542|924543|924544|924545|924546|924547|924548|924549|924550|924551|924552|924553|924554|924555|924556|924557|924558|924559|933548|933549|933550|933551|933552|933553|933554|933555|933556|933557|933558|933559|933560|933561|933562|933563|933564|933565|933566|933567|933568|933569|933570|933571|933572|933573|933574|933575|933576|933577|933578|940054|940863|940864|940865|945268|945269|945270|945271|945272|945273|945274|945275|945276|945277|945278|945279|945280|945281|945282|945283|945284|945285|945286|945287|945288|945289|945290|945291|945292|945293|945294|954946|954947|954948|954949|954950|954951|954952|954953|954954|954955|954956|954957|954958|954959|954960|954961|954962|954963|954964|954965|954966|954967|954968|954969|954970|959822|960616|963144|980924", + "text": "Epilepsy, familial temporal lobe, 7" + }, + { + "baseId": "27559|27560|27561|27562|27563|27563|27564|27565|27565|27566|45518|54260|54264|171082|171117|174577|174853|174855|210162|210164|210166|210166|240717|259758|266296|309059|309061|309069|309083|309089|309094|309095|309097|309098|309101|309105|309112|309113|309123|309124|309129|309130|309138|309140|309141|309142|309146|309147|309149|313814|313815|313818|313819|313820|313821|313823|313824|313825|313832|313838|313841|313842|313845|313847|313848|313852|313855|313865|313866|313875|313882|313883|319644|319648|319649|319653|319654|319676|319678|319685|319689|319695|319697|319702|319710|319711|319718|319719|319722|319723|319729|319736|319737|319742|319743|319754|319762|320207|320215|320222|320223|320224|320225|320231|320236|320237|320244|320245|320247|320248|320250|320251|320252|320253|320255|320256|320259|320260|320272|320273|320274|320275|320279|320280|320292|371451|459531|481489|511094|511095|614980|624396|679766|682801|789088|902639|902640|902641|902643|902644|902645|902646|902647|902648|902649|902650|902651|902652|902653|902654|902655|902657|902659|902660|902661|902662|902663|902664|902666|902667|902668|902669|902670|902671|902672|902673|902674|902675|902676|902677|902678|902679|902680|902681|902682|980336", + "text": "Loeys-Dietz syndrome 1" + }, + { + "baseId": "27565|38870|38871|38872|38873|210166", + "text": "Multiple self-healing squamous epithelioma" + }, + { + "baseId": "27567|27568|27569|27570|27571|27572|27573|47494|47495|47500|47501|47503|47504|47505|47506|47908|622462|791931|791932", + "text": "Diaphyseal dysplasia" + }, + { + "baseId": "27573", + "text": "Breast cancer, invasive, susceptibility to" + }, + { + "baseId": "27574|27575|27576|27578|27581|27582|27584|27585|27586|27588|27589|27590|27591|27592|27593|27596|27597|27598|27602|27603|27604|27605|27606|27607|27609|195583|251085|251086|289816|289819|289824|289828|289829|289832|289834|289836|289841|289847|289851|289865|289866|289869|289872|289877|289879|289884|289886|289892|289901|290576|290580|290581|290590|290591|290593|290597|290605|290610|290611|290617|290618|290619|290623|290629|290637|290643|290658|290661|290662|290664|290669|293658|293671|293674|293678|293679|293680|293684|293702|293707|293712|293713|293714|293719|293743|293745|293766|293769|293782|293783|293799|293802|293803|293804|293807|293810|293812|293817|294221|294222|294223|294226|294233|294278|294279|294308|294309|294311|294316|294325|294326|294327|294334|294345|294346|294354|362074|384479|420977|428167|432550|432553|432557|485711|485712|485713|485714|485715|485716|485717|485718|485719|485720|485721|485722|485723|485724|485725|485726|485727|485728|485729|536152|538610|698010|790381|888592|888593|888594|888595|888596|888597|888598|888599|888600|888601|888602|888603|888604|888605|888606|888607|888608|888609|888610|888611|888612|888613|888614|888615|888616|888617|888618|888619|888620|888621|888622|888623|888624|888625|888626|888627|888628|888629|888630|888631|888632|888633|888634|888635|888636|888637|888638|888639|888640|888641|888642|888643|888644|888645|888646|888647|888648|888649|891633", + "text": "Thyroid hormone resistance, generalized, autosomal dominant" + }, + { + "baseId": "27577|27578|485726", + "text": "Thyroid hormone resistance, generalized, autosomal recessive" + }, + { + "baseId": "27579|27580|27583|27587|27599|27600", + "text": "Thyroid hormone resistance, generalized" + }, + { + "baseId": "27593|289842|289852|289859|289870|290582|290583|290584|290596|290598|290604|290639|290642|293687|293688|293689|293690|293691|293692|293815|293816|294247|294249|294330|294332|294344|294352|428167", + "text": "Thyroid hormone resistance syndrome" + }, + { + "baseId": "27594|27595|27597|27601|27608|27610", + "text": "Thyroid hormone resistance, selective pituitary" + }, + { + "baseId": "27611|622415|788869|966797", + "text": "Lethal congenital contracture syndrome 2" + }, + { + "baseId": "27612", + "text": "Colon cancer, advanced" + }, + { + "baseId": "27613|27614|27615|27616|96841", + "text": "Burkitt lymphoma" + }, + { + "baseId": "27617|27618|27619|27621|27622|27623|27632|27639|27641|27642|27645|27652|28957|28958|29005|29022|44227|53985|54282|54283|54284|54291|166218|170209|173901|175715|263939|359197|362753|362840|362841|362845|362847|362912|363165|363197|363201|363323|363364|363365|363366", + "text": "Neoplasm of the thyroid gland" + }, + { + "baseId": "27618|27639|28116|28126|31378|31387|50139|57897|57909|57914|57923|57933|57958|57966|57970|57973|57983|57985|58014|58018|58027|58039|58047|58118|58143|58146|58168|58173|58183|58186|58206|58207|58213|58221|58238|58242|75214|75215|75216|75217|75218|75219|75220|75221|75222|75223|75224|75225|75226|75227|75228|75229|75230|75231|75232|75233|75234|75235|75247|75627|75648|75707|132342|462915|463279|463892|568568", + "text": "Urinary bladder cancer" + }, + { + "baseId": "27619|27621|27629|28940|48930|54290|614370", + "text": "RAS-associated autoimmune leukoproliferative disorder" + }, + { + "baseId": "27619|194404|214479|362841", + "text": "OCULOECTODERMAL SYNDROME, SOMATIC" + }, + { + "baseId": "27620", + "text": "Bladder cancer, transitional cell, somatic" + }, + { + "baseId": "27621|27639|27652|28695|28939|31366|31371|31398|44227|48246|48247|360854|827717", + "text": "Epidermal nevus" + }, + { + "baseId": "27621|27622|27641|27651|27652|44227", + "text": "Nevus sebaceous" + }, + { + "baseId": "27621|28939|44227|170209|363204|614370", + "text": "Epidermal nevus syndrome" + }, + { + "baseId": "27621|27622|29000|178328|452274|513906|513959|514053|535365|535366|535367|535368|535369|535370|535371|535372|535373|535374|535375|535376|677974", + "text": "Cerebral arteriovenous malformation" + }, + { + "baseId": "27621|83949|170209|363202|539145|539146|539147", + "text": "Vascular Tumors Including Pyogenic Granuloma" + }, + { + "baseId": "27621|682729", + "text": "Primary low grade serous adenocarcinoma of ovary" + }, + { + "baseId": "27625|27626|27629|27629|27633|27634|40605|40606|48922|48930|614370", + "text": "Cardiofaciocutaneous syndrome 2" + }, + { + "baseId": "27626|27627|27628|27629|27630|27635|27636|27640|28364|28366|28372|28379|28383|48922|48922|48930|48930|48934|48958|48964|48965|48969|48970|48977|48983|48998|49036|49153|49171|53782|55703|175394|363197|424626|432423|487033|537879|614370|624857|872157|972725|972731", + "text": "Noonan syndrome 3" + }, + { + "baseId": "27638|512968|512969|512970", + "text": "Dermatofibrosarcoma protuberans" + }, + { + "baseId": "27639|27641|27647|27648", + "text": "Myopathy, congenital, with excess of muscle spindles" + }, + { + "baseId": "27640|31370", + "text": "Spermatocytic seminoma" + }, + { + "baseId": "27641", + "text": "Epidermal nevus with urothelial cancer, somatic" + }, + { + "baseId": "27641", + "text": "Nevus, woolly hair" + }, + { + "baseId": "27651", + "text": "Costello syndrome, severe" + }, + { + "baseId": "27652|31372|31378|31381|31387|31398|363127", + "text": "Bladder carcinoma" + }, + { + "baseId": "27653", + "text": "Transferrin variant d1" + }, + { + "baseId": "27654", + "text": "Transferrin variant chi" + }, + { + "baseId": "27654|27655|27656|27658|27659|27660|27661|27662|214927|288854|288855|288865|288885|288893|288895|288903|288905|288909|289608|289609|289610|289611|289616|292594|292595|292596|292598|292600|292601|292608|292612|292613|292615|292618|292812|292813|292818|292822|292823|292824|292825|292828|620107|682854|708585|733806|759351|763639|888029|888030|888031|888032|888033|888034|888035|888036|888037|888038|888039|888040|888041|888042|888043|891573|891574", + "text": "Atransferrinemia" + }, + { + "baseId": "27655", + "text": "Transferrin variant b2" + }, + { + "baseId": "27656", + "text": "Transferrin variant c1/c2" + }, + { + "baseId": "27657", + "text": "Transferrin variant bv" + }, + { + "baseId": "27661", + "text": "Iron deficiency anemia" + }, + { + "baseId": "27663|27664|27665|27666", + "text": "Leukemia, Philadelphia chromosome-positive, resistant to imatinib" + }, + { + "baseId": "27663|27666|138312|138319|226760|226887|362830|362831|362832|362833|362882|362909|362977|362978|363229|363307", + "text": "Lymphoblastic leukemia, acute, with lymphomatous features" + }, + { + "baseId": "27669|512925|791117|801269|972520", + "text": "Sveinsson chorioretinal atrophy" + }, + { + "baseId": "27670|27671", + "text": "Posterior polymorphous corneal dystrophy 3" + }, + { + "baseId": "27672|27673", + "text": "Corneal dystrophy, Fuchs endothelial, 6" + }, + { + "baseId": "27674|27675|27676|27677|27678|27679|27680|27681|27682|27683|27684|27685|27686|27687|45358|45497|45498|45499|45500|45501|45502|45503|45504|45505|45506|45507|45508|45509|45510|45511|45512|45513|45514|45515|45516|45517|190266|190267|226086|226090|256157|264673|264846|270802|272391|272691|275138|328255|328256|328257|328268|328269|328273|328277|328279|328280|328282|328285|328286|338131|338133|338135|338139|338142|338145|344275|344277|344283|345684|345685|345688|345689|345690|345691|345694|353374|360306|375878|376001|376007|409915|439497|441953|448380|491226|492929|505862|513136|540028|553576|577627|577628|577629|577631|586200|586328|586715|589333|589454|611852|623405|623406|623407|623408|623409|623410|623411|623412|623413|623414|623415|623416|623417|623418|623419|623420|623421|623422|623423|623424|623425|623426|623427|623428|623429|623430|623431|623432|623433|623434|623435|623436|623437|623438|623439|623440|623441|623442|623443|623444|623445|623446|623447|623448|623449|623450|623451|623452|623453|623454|623455|623456|623457|623458|623459|623460|623461|623462|623463|623464|623465|623466|623467|623468|623469|623470|623471|623472|623473|623474|623475|623476|623477|623478|623479|623480|623481|623482|623483|623484|623485|623486|623487|623488|623489|623490|623491|623492|623493|623494|623495|623496|623497|623498|623499|623500|623501|623502|623503|623504|623505|623506|623507|623508|623509|623510|623511|623512|623513|623514|623515|623516|623517|623518|623519|623520|623521|623522|623523|623524|623525|623526|623527|623528|623529|623530|623531|623532|623533|623534|623535|623536|623537|623538|623539|623540|623541|623542|623543|623544|623545|623546|623547|623548|623549|623550|623551|623552|623553|623554|623555|623556|623557|623558|623559|623560|623561|623562|623563|623564|623565|623566|623567|623568|623569|623570|623571|623572|623573|679902|802217|861190|877313|877314|877315|877316|877317|877318|877319|877320|877321|877322|877323|880509|962793|962794|962839|962840|962851|962852|963376|963377|963378|964476|967156|967209|970547|983854", + "text": "Renal cysts and diabetes syndrome" + }, + { + "baseId": "27688|56736|56888|102219|172610|173163|198881|199203|199212|199237|199738|227229|266764|360828|481230|587151|818179|818635|970724|970727|970728|980305|983701", + "text": "Familial hypertrophic cardiomyopathy 9" + }, + { + "baseId": "27689|27690|27691|27694|27695|27695|27696|27697|27697|27698|27698|46998|55738|55739|55739|55741|55741|55742|55742|55743|55743|55744|55744|55745|55745|55746|55746|55747|55749|55750|55750|55751|55752|55752|55753|55753|55754|55755|55756|55756|55757|55757|55758|55759|55759|55760|55760|55761|55762|55762|55763|55763|55764|55764|55766|55767|55768|55768|55769|55770|55771|55771|55772|55773|55774|55776|55777|55777|55778|55778|55779|55779|55780|55780|55781|55782|55782|55783|55783|55784|55784|55786|55786|55787|55787|55788|55788|55790|55790|55791|55793|55793|55794|55794|55795|55796|55796|55798|55798|55799|55800|55800|55801|55802|55803|55803|55804|55805|55806|55806|55807|55808|55808|55809|55809|55810|55810|55811|55811|55813|55813|55814|55814|55816|55816|55818|55818|55819|55819|55820|55820|55821|55822|55822|55823|55823|55825|55826|55826|55827|55828|55829|55829|55830|55831|55831|55832|55832|55833|55835|55835|55836|55836|55837|55837|55839|55840|55840|55841|55841|55842|55844|55844|55845|55845|55846|55846|55847|55847|55848|55848|55849|55849|55850|55850|55852|55852|55853|55853|55854|55855|55855|55858|55858|55859|55859|55860|55861|55863|55864|55864|55867|55867|55868|55868|55869|55870|55870|55871|55872|55872|55873|55873|55875|55876|55876|55877|55877|55878|55878|55879|55880|55880|55881|55881|55882|55882|55883|55883|55884|55886|55886|55887|55887|55889|55889|55890|55890|55891|55891|55892|55893|55894|55895|55895|55896|55898|55898|55899|55900|55901|55901|55903|55904|55904|55905|55906|55906|55907|55907|55908|55908|55910|55910|55911|55912|55912|55915|55917|55918|55919|55920|55921|55923|55923|55924|55924|55926|55927|55927|55928|55928|55929|55929|55931|55933|55933|55934|55935|55935|55936|55936|55938|55939|55940|55940|55941|55942|55943|55943|55944|55944|55945|55945|55946|55947|55949|55950|55950|55951|55952|55952|55953|55954|55956|55957|55957|55958|55958|55960|55960|55961|55962|55964|55965|55968|55970|55971|55971|55973|55973|55975|55977|55977|55979|55979|55981|55982|55982|55983|55984|55984|55985|55985|55987|55988|55989|55990|55991|55991|55992|55993|55994|55995|55995|55996|55996|55997|55997|55998|55998|55999|55999|56000|56001|56002|56002|56004|56004|56006|56006|56009|56009|56011|56013|56013|56014|56015|56016|56016|56017|56018|56018|56019|56020|56022|56022|56023|56023|56024|56025|56026|56027|56028|56028|56029|56029|56030|56031|56032|56032|56033|56033|56034|56035|56036|56036|56038|56038|56039|56039|56040|56040|56041|56041|56042|56043|56043|56045|56045|56046|56047|56047|56048|56048|56049|56049|56050|56050|56051|56052|56052|56053|56053|56054|56055|56055|56056|56057|56058|56059|56060|56060|56061|56062|56065|56066|56067|56068|56069|56069|56071|56072|56073|56074|56074|56075|56075|56076|56076|56077|56078|56079|56079|56080|56080|56081|56082|56082|56083|56084|56085|56087|56087|56088|56088|56089|56092|56093|56093|56094|56094|56095|56095|56096|56096|56097|56100|56100|56101|56101|56103|56103|56105|56105|56107|56108|56108|56111|56111|56113|56113|56114|56114|56115|56115|56116|56116|56117|56117|56118|56118|56119|56119|56120|56120|56121|56124|56125|56127|56128|56129|56130|56130|56132|56133|56133|56134|56134|56135|56135|56136|56136|56137|56137|56138|56139|56142|56143|56143|56145|56145|56146|56147|56147|56148|56148|56150|56151|56152|56152|56153|56153|56154|56155|56155|56156|56156|56158|56158|56160|56163|56164|56164|56165|56165|56166|56167|56170|56171|56171|56172|56172|56173|56173|56174|56174|56175|56175|56176|56176|56178|56178|56179|56179|56180|56180|56181|56181|56183|56183|56185|56187|56187|56189|56189|56190|56190|56191|56191|56193|56193|56195|56195|56196|56196|56197|56197|56199|56199|56200|56200|56201|56201|56202|56202|56203|56204|56205|56205|56207|56207|56208|56209|56209|56210|56211|56211|56214|56214|56215|56215|56216|56218|56218|56219|56221|56221|56222|56222|56224|56224|56225|56227|56228|56230|56230|56231|56231|56233|56233|56234|56235|56235|56237|56237|56239|56239|56240|56240|56241|56243|56243|56245|56246|56248|56248|56249|56251|56251|56253|56255|56256|56258|56258|56261|56262|56262|56263|56264|56264|56265|56265|56266|56268|56270|56270|56271|56271|56273|56275|56276|56276|56277|56278|56280|56281|56281|56282|56283|56285|56286|56288|56289|56291|56291|56292|56292|56293|56295|56297|56298|56298|56300|56300|56301|56302|56302|56303|56305|56307|56307|56308|56309|56311|56312|56313|56314|56315|56315|56316|56316|56317|56320|56320|56321|56321|56322|56323|56323|56324|56324|56325|56326|56327|56328|56328|56330|56330|56331|56331|56333|56333|56335|56337|56338|56339|56340|56342|56342|56343|56343|56344|56345|56345|56346|56347|56347|56349|56349|56350|56350|56352|56352|56353|56353|56354|56356|56356|56359|56359|56360|56362|56362|56364|56364|56365|56365|56366|56366|56367|56367|56368|56369|56370|56370|56371|56372|56373|56373|56374|56375|56375|56377|56378|56378|56381|56381|56383|56383|56386|56387|56387|56388|56388|56389|56389|56390|56390|56392|56393|56393|56394|56394|56395|56395|56396|56396|56397|56398|56399|56400|56401|56401|56403|56405|56405|56406|56408|56408|56409|56410|56412|56413|56413|56414|56415|56417|56418|56418|56420|56420|56421|56421|56423|56425|56425|56426|56428|56430|56430|56433|56433|56436|56436|56437|56439|56439|56440|56440|56441|56441|56442|56442|56443|56444|56446|56447|56448|56451|56451|56453|56454|56454|56455|56455|56456|56457|56457|56458|56459|56459|56460|56460|56462|56462|56463|56463|56464|56464|56466|56467|56467|56468|56469|56469|56470|56471|56471|56472|56472|56473|56473|56474|56474|56476|56477|56477|56478|56479|56480|56481|56481|56482|56482|56483|56483|56485|56485|56486|56487|56487|56489|56492|56493|56494|56495|56495|56496|56496|56497|56497|56498|56498|56499|56499|56500|56500|56503|56503|56504|56506|56507|56508|56508|56510|56512|56512|56513|56513|56514|56514|56515|56515|56516|56516|56518|56518|56520|56520|56521|56521|56522|56524|56524|56526|56526|56527|56528|56529|56530|56530|56532|56533|56533|56535|56535|56537|56537|56538|56538|56539|56539|56540|56540|56541|56542|56543|56544|56544|56545|56545|56547|56548|56549|56549|56551|56552|56555|56555|56556|56557|56557|56558|56558|56559|56559|56560|56560|56561|56563|56564|56564|56566|56567|56567|56568|56569|56570|56570|56572|56572|56573|56574|56575|56575|56576|56576|56577|56577|56578|56578|56579|56579|56580|56580|56581|56582|56582|56583|56583|56584|56584|56585|56586|56586|56587|56588|56589|56590|56592|56592|56593|56594|56594|56595|56595|56596|56596|56597|56597|56599|56600|56600|56601|56604|56604|56605|56606|56606|56607|56608|56608|56610|56610|56611|56614|56615|56616|56616|56618|56619|56619|56620|56620|56621|56621|56622|56624|56624|56625|56625|56626|56627|56628|56628|56629|56629|56631|56631|56633|56633|56634|56634|56636|56637|56637|56638|56639|56640|56641|56641|56642|56643|56643|56644|56645|56645|56646|56647|56647|56648|56648|56649|56649|56652|56652|56653|56653|56654|56655|56657|56658|56658|56659|56661|56661|56663|56665|56665|56667|56667|56668|56669|56671|56671|56672|56672|56674|56675|56675|56676|56676|56677|56677|56678|56678|56679|56679|56680|56680|56681|56682|56682|56683|56684|56684|56685|56685|56686|56686|56687|56687|56688|56689|56689|56691|56692|56693|56693|56694|56695|56696|56696|56700|56700|56701|56701|56703|56703|56704|56705|56705|56706|56708|56708|56709|56709|56710|56710|56711|56711|56712|56712|56714|56714|56715|56716|56716|56717|56717|56718|56718|56719|56719|56722|56722|56723|56723|56724|56725|56725|56726|56727|56728|56729|56730|56731|56731|56732|56732|56733|56735|56736|56736|56737|56737|56738|56738|56741|56742|56742|56743|56743|56746|56746|56749|56750|56751|56751|56752|56752|56753|56753|56754|56755|56755|56758|56759|56759|56760|56760|56762|56762|56763|56764|56764|56765|56766|56766|56767|56767|56768|56768|56769|56769|56771|56772|56773|56773|56774|56775|56775|56776|56777|56777|56778|56780|56781|56784|56785|56785|56786|56786|56787|56787|56788|56788|56789|56789|56790|56792|56792|56793|56793|56794|56794|56796|56797|56797|56798|56798|56800|56800|56802|56802|56803|56803|56804|56804|56805|56805|56806|56806|56807|56807|56808|56809|56809|56810|56810|56811|56811|56812|56813|56814|56815|56816|56816|56817|56818|56819|56819|56820|56822|56822|56823|56823|56824|56825|56826|56826|56827|56828|56829|56829|56831|56831|56832|56833|56833|56834|56834|56837|56838|56838|56839|56839|56841|56841|56842|56843|56845|56847|56847|56848|56848|56849|56849|56850|56851|56851|56852|56853|56854|56855|56855|56856|56857|56857|56858|56858|56863|56863|56864|56864|56865|56866|56867|56868|56870|56870|56871|56872|56872|56873|56873|56874|56874|56875|56875|56876|56876|56877|56878|56878|56879|56880|56880|56881|56881|56882|56882|56884|56884|56886|56886|56887|56887|56888|56906|56937|56970|56973|56975|56976|56978|56980|56981|56982|56983|56985|56986|56987|56989|56990|56991|56993|56995|56996|56998|56999|57001|57003|57005|57007|57008|57009|57010|57011|57012|57013|57014|71025|85139|85174|85176|85183|85203|102161|102164|102168|102169|102169|102170|102170|102171|102172|102172|102173|102176|102178|102179|102180|102182|102183|102183|102185|102185|102187|102188|102188|102190|102190|102192|102192|102193|102193|102194|102194|102195|102195|102196|102197|102200|102200|102201|102202|102203|102203|102206|102206|102207|102207|102208|102208|102209|102210|102210|102211|102212|102212|102214|102214|102215|102215|102217|102218|102218|102219|102220|102221|102221|136108|136109|136109|136110|136111|136112|136113|136114|136115|136116|136116|136117|136119|136120|136121|136121|136124|136125|136126|136126|136127|136128|136128|136129|136129|136130|136133|136134|136134|136135|136136|136355|136356|136358|136359|141478|141478|141479|141479|141482|141489|141490|141490|141492|141492|141493|141493|141494|141500|141501|141501|141502|141502|141504|141509|141509|141510|141510|141511|141512|141513|141515|141515|141516|141517|141520|141520|141521|141522|141523|141523|141524|141524|141526|141530|141532|141533|141534|141534|141536|141537|141539|141542|141542|141543|141544|141544|141545|141546|141547|141549|165598|165601|165601|165602|172606|172606|172609|172609|172610|172611|172615|172615|172617|172618|172621|172621|172622|172624|172626|172627|172628|172629|172630|172632|172635|172637|172638|172642|172644|172647|172647|172648|172651|172652|172652|172653|172656|172657|172657|172658|172661|172662|172663|172664|172665|172665|172666|172668|172668|172671|172672|172675|172677|172677|172679|172681|172682|172683|172683|172684|172686|172689|172691|172691|172693|172694|172696|172697|172697|172698|172698|172699|172699|172700|172701|172702|172704|172705|172708|172710|172715|172717|172717|172726|172727|172728|172729|172729|172731|172732|172734|172734|172737|172738|172738|172800|172800|172804|172805|172807|172808|172808|172813|172813|172816|172816|172818|172820|172820|172823|172823|172824|172825|172827|172829|172829|172830|172833|172833|172834|172835|172838|172838|172840|172841|172841|172849|172849|172850|172850|172852|172852|172853|172854|172854|172856|172859|172860|172862|172863|172868|172870|172872|172872|172877|172877|172878|172878|172879|172879|172942|172943|172944|172945|172945|172946|172948|172950|172951|172954|172955|172958|172962|172963|172964|172964|172967|172971|172971|172972|172973|172973|172975|172976|172979|172981|172981|172982|172982|172983|172984|172989|172990|172991|172992|172994|172995|172997|172997|172998|172998|172999|172999|173002|173003|173003|173005|173006|173008|173008|173009|173009|173011|173013|173015|173015|173022|173025|173026|173027|173028|173031|173031|173032|173035|173035|173036|173037|173040|173041|173043|173043|173044|173044|173045|173046|173047|173047|173048|173049|173049|173051|173053|173056|173059|173061|173061|173062|173068|173069|173072|173073|173073|173074|173074|173075|173079|173080|173081|173083|173088|173089|173090|173090|173092|173093|173095|173096|173097|173098|173099|173102|173102|173104|173104|173105|173107|173107|173108|173112|173114|173114|173115|173118|173121|173121|173126|173127|173132|173135|173136|173136|173137|173137|173141|173143|173144|173144|173147|173147|173149|173150|173152|173152|173156|173157|173158|173158|173159|173160|173161|173163|173163|173164|173165|173166|173166|173167|173167|173168|173169|173169|173172|173172|173173|173174|173175|173176|173176|173177|173178|173181|173182|173183|173186|173187|173189|173192|173192|173193|173193|173195|173197|173198|173199|173206|173207|173208|173212|173212|173213|173213|173218|173218|173219|173220|173221|173221|173225|173225|173227|173229|173229|173231|173234|173234|173235|173236|173240|173240|173243|173244|173245|173246|173246|173247|173247|173248|173248|173250|173252|173252|173254|173257|173258|173259|173262|173263|173264|173266|173300|173301|173301|173303|173304|173307|173308|173310|173311|173311|173312|173313|173314|173316|173316|173320|173321|173321|173322|173328|173328|173329|173329|173333|173334|173335|173342|173342|173344|173344|173346|173348|173349|173350|173351|173351|173353|173354|173354|173355|173356|173356|173357|173357|173358|173359|173359|173360|173361|173361|173363|173364|173364|173368|173372|173373|173374|173375|173376|173378|173381|173381|173383|173394|173394|173395|173396|173399|173400|173439|173441|173443|173443|173444|173445|173448|173448|173452|173452|173453|173453|173457|173460|173462|173463|173463|173464|173467|173467|173469|173472|173474|173475|173478|173478|173481|173482|173483|173483|173485|173486|173486|173581|173582|173583|173585|173586|173593|173593|173594|173597|173598|173599|173599|173600|173600|173603|173604|173612|173618|173618|173620|173623|173624|173624|173626|173626|173627|173628|173720|173723|173724|173726|173727|173728|173728|173730|173734|173861|173862|173863|173864|173864|173866|173867|173867|173868|173869|173871|176940|176941|176945|177073|177075|177206|177334|177335|177338|178108|178109|178112|178113|178114|178115|178117|178119|178120|178121|178122|178124|178128|178129|178130|178132|178135|178472|178478|178479|178482|178484|178485|178486|178486|178490|188930|188939|188939|188946|188946|189405|189407|189407|189409|189409|189411|189415|189415|189416|189422|189423|189423|189428|189430|189432|189435|189435|189436|189437|189437|189444|189445|189446|189446|189447|189449|189451|189451|189454|189454|189459|189459|189464|189464|189467|189467|189469|189469|189476|189476|189477|189478|189481|189483|189483|189486|189486|189489|189489|189490|189491|189491|189492|189493|189493|189494|189497|189498|189498|189499|189499|189503|189503|189507|189507|189512|189514|189514|189516|189518|189522|189523|189524|189524|189527|189531|189535|189535|189536|189539|189539|189541|189541|189543|189544|189548|189553|189553|189554|189556|189560|189566|189566|189569|189573|189573|189578|189578|189580|189582|189582|189584|189585|189586|189587|189588|189588|189589|189590|189591|189591|189592|189594|189594|189597|189599|189599|189600|189601|189603|189604|189605|189610|189616|189619|189619|189627|189628|189629|189629|189630|189630|189635|189636|189639|189640|189641|189642|189643|189647|189648|189649|189650|189652|189655|189655|189661|189661|189663|189665|189666|189667|189671|189673|189673|189674|189681|189686|189686|189687|189687|189691|189692|189699|189701|189702|189732|189733|189734|189738|189741|189743|189744|189745|189746|189746|189748|189753|189755|189756|189756|189758|189760|189760|189761|189763|189764|189764|189765|189766|189769|189769|189770|189770|190932|190941|191125|191126|191309|191461|191464|191743|191842|192072|192168|192707|192712|192712|192797|192797|192800|192868|192869|192870|192871|192874|192875|192877|192952|192952|192957|192957|193001|193003|193004|193004|193005|193006|193078|193079|193080|193081|193082|193082|193084|193084|193086|193154|193163|193165|193166|193217|193217|193219|193221|193221|193226|193226|193227|193228|193229|193229|193231|193231|193233|193237|193237|193238|193241|193243|193249|193252|193255|193257|193305|193310|193311|193312|193313|193316|193317|193355|193356|193357|193357|193734|193802|193804|193804|193805|193807|193814|193816|193884|193886|193962|193962|194739|194739|195077|195102|195117|195117|195118|195118|195137|195137|195518|195525|195775|195775|196105|196120|196130|196340|196340|196400|196400|196408|198682|198686|198688|198692|198697|198698|198699|198700|198701|198702|198703|198703|198704|198705|198710|198716|198718|198721|198723|198729|198730|198731|198733|198733|198736|198737|198738|198739|198743|198744|198744|198745|198746|198753|198753|198754|198754|198758|198760|198761|198767|198768|198769|198772|198772|198777|198780|198781|198788|198790|198790|198791|198793|198794|198796|198797|198799|198802|198804|198805|198806|198806|198811|198813|198817|198817|198819|198819|198820|198822|198825|198826|198827|198828|198832|198832|198833|198835|198838|198839|198839|198841|198845|198849|198850|198852|198852|198854|198856|198857|198858|198867|198869|198870|198875|198876|198878|198881|198881|198881|198886|198888|198888|198894|198895|198900|198900|198902|198903|198907|198908|198909|198909|198911|198912|198912|198915|198917|198918|198920|198924|198929|198931|198937|198940|198941|198944|198947|198952|198954|198957|198966|198966|198969|198969|198970|198973|198976|198978|198979|198988|198988|198995|198997|198997|198998|198999|199000|199011|199013|199015|199016|199019|199022|199024|199025|199026|199027|199028|199029|199029|199031|199035|199036|199040|199041|199042|199043|199050|199054|199064|199066|199070|199071|199072|199082|199085|199086|199090|199094|199096|199098|199104|199106|199107|199108|199109|199110|199110|199111|199112|199112|199114|199114|199116|199118|199120|199126|199127|199130|199131|199133|199139|199139|199141|199143|199146|199147|199148|199149|199149|199150|199156|199157|199157|199165|199166|199167|199172|199174|199174|199180|199184|199191|199191|199192|199192|199193|199200|199201|199203|199203|199204|199205|199208|199212|199212|199214|199216|199221|199222|199223|199224|199225|199228|199229|199229|199233|199233|199237|199237|199238|199242|199243|199244|199245|199249|199249|199251|199253|199254|199261|199264|199264|199265|199265|199266|199266|199269|199270|199271|199272|199274|199276|199277|199285|199286|199287|199289|199292|199296|199297|199298|199299|199302|199302|199304|199306|199310|199310|199313|199321|199322|199322|199325|199327|199329|199332|199334|199334|199336|199340|199342|199344|199344|199346|199352|199353|199361|199361|199365|199366|199372|199373|199374|199376|199380|199384|199385|199387|199391|199393|199398|199401|199402|199403|199405|199407|199409|199409|199410|199416|199418|199426|199430|199432|199432|199437|199438|199439|199441|199441|199444|199449|199449|199452|199454|199455|199458|199459|199461|199462|199467|199468|199470|199474|199474|199477|199479|199483|199485|199486|199490|199490|199492|199492|199495|199499|199501|199501|199505|199512|199512|199513|199513|199524|199526|199526|199530|199531|199532|199533|199535|199537|199539|199543|199544|199545|199555|199556|199556|199557|199559|199561|199562|199563|199563|199576|199577|199578|199578|199579|199580|199580|199583|199585|199586|199588|199593|199594|199595|199598|199601|199605|199608|199611|199671|199673|199674|199697|199698|199701|199707|199707|199712|199712|199714|199715|199716|199719|199720|199722|199723|199724|199728|199736|199738|199740|199749|199751|199753|199753|199754|199756|199759|199759|199761|199764|199764|199765|199771|199773|199774|199776|199777|205135|205135|205422|206910|206911|206917|206918|206919|206920|206921|206922|206929|206930|213528|215231|215231|221119|221120|221121|221122|221123|221124|221125|221126|221127|221128|221129|221130|221131|221132|221133|224228|224235|224240|224982|224987|224991|224992|224998|225000|225005|225009|225016|225018|225027|225034|225039|225040|225045|225046|225055|225057|225060|225074|225076|225077|225078|225079|225081|225089|225090|225093|225094|225100|225106|225108|225112|225114|225115|225116|226447|226454|226455|226892|227229|228549|228550|228552|228556|228558|228560|228564|228568|228569|228573|228577|228579|228580|228580|228584|228584|228588|228589|228593|228594|228594|228595|228595|228600|228609|228619|228622|228624|228631|228637|228638|228640|228640|228642|228644|228645|228646|228648|228651|228652|228654|228656|228656|228660|228660|228661|228662|228662|228666|228668|228675|228676|228677|228677|228678|228679|228680|228681|228687|228690|228690|228692|228695|228695|228699|228699|228700|228710|228711|228714|228716|228718|228719|228723|228725|228725|228729|228729|228730|228733|228734|228739|228740|228741|228742|228742|228744|228745|228746|228747|228749|228751|228752|228754|228754|228757|228761|228762|228762|228764|228771|228772|228775|228779|228784|228786|228786|228787|228789|228789|228792|228794|228797|228801|228806|228811|228812|228814|228816|228821|228822|228827|228829|228830|228832|228833|228838|228839|228842|228845|228847|228875|228876|228877|228880|228881|228885|228887|228892|228895|228900|228901|228904|228905|228907|236752|238389|238389|238390|238391|238392|238393|238393|238394|238395|238396|238397|238398|238399|238400|238401|238402|238403|238404|238405|238407|238408|238409|238410|238411|238412|238413|238414|238415|238416|238417|238418|238419|238420|238420|238421|238422|238422|238423|238424|238425|238426|238427|238428|238429|238430|238431|238432|238434|238435|238436|238437|238438|238440|238441|238441|238442|238443|238444|238445|238446|238447|238448|238449|238450|238451|238452|238453|238454|238455|238456|238457|238459|238461|238462|238464|238464|238465|238466|238467|238468|238469|238470|238471|238472|238473|238474|238475|238476|238477|238478|238479|238479|238480|238481|238482|238483|238484|238485|238486|238487|238488|238489|238490|238491|238492|238493|238494|238495|238496|238497|238498|238499|238500|238501|238502|238503|238504|238505|238506|238507|238508|238509|238510|238511|238512|238513|238514|238515|238516|238517|238518|238519|238520|238521|238522|238524|238524|238525|238526|238527|238528|238529|238530|238531|238532|238533|238534|238535|238536|238537|238538|238539|238540|238541|238542|238543|238544|238545|238547|238547|238548|238550|238551|238552|238553|238554|238555|238556|238557|238558|238559|238559|238560|238560|238562|238563|238564|238566|238567|238568|238569|238570|238571|238572|238573|238575|238576|238577|248627|250411|250413|250415|250416|250417|250420|250420|250426|250427|250429|250430|250430|257987|257990|257995|258006|258008|258009|258010|258011|258018|258019|258027|258032|258034|258036|258039|258040|258042|258044|258049|258054|258054|258056|258057|258060|258060|258061|258064|258068|258072|258075|258076|258080|258080|258082|258083|258084|258085|258089|258090|258091|258095|258096|258097|258099|258101|258101|258102|258105|258106|258111|258111|258114|258115|258121|258122|258122|258123|258124|258125|258128|258130|258130|258131|258132|258137|258137|258145|258146|258148|258150|258155|258156|258157|258157|258158|258159|258161|258163|258165|258165|258169|258175|258176|258182|258183|258185|258191|263857|264057|265399|265464|265497|265553|265624|265904|265936|266024|266024|266065|266075|266078|266084|266095|266186|266188|266197|266209|266230|266241|266245|266249|266256|266256|266333|266336|266373|266397|266411|266412|266423|266542|266653|266653|266666|266666|266671|266679|266725|266737|266744|266754|266755|266757|266764|266764|266782|266857|266857|266868|266875|266890|266892|266892|266893|266894|266899|266899|266904|267023|267023|267070|267084|267089|267093|267093|267112|267127|267127|267265|267341|267343|267409|267490|267534|267543|267557|267629|267639|267673|267674|267687|267687|267715|267717|267725|267725|267729|267860|267868|267872|267897|267901|267925|267951|267951|267961|267961|268111|268171|268216|268223|268239|268239|268326|268329|268329|268334|268335|268337|268487|268531|268531|268680|268703|268730|268795|268795|268915|268915|269034|269201|269229|269343|269544|269646|269669|269864|270161|270205|270836|271155|271221|271221|271689|271856|271856|271898|271933|271996|272032|272181|272182|272192|272661|272756|272756|272908|272997|272999|273034|273051|273235|273337|273378|273378|273700|273712|273760|273761|273815|274173|274309|274528|274548|274588|274603|274693|274705|274706|274707|274709|274711|274714|274935|274943|274948|274951|274951|274956|274957|275123|283197|283198|283200|283201|283204|283211|283212|283220|283221|283221|283222|283223|283225|283225|283228|283229|283232|283232|283233|283233|283235|283236|283240|283244|283244|283249|283250|283252|283252|283253|283255|283256|283262|283263|283269|283270|283271|283274|283275|283277|283277|283278|283294|283304|283309|283320|283321|283327|283328|283329|283332|283332|283341|283343|283344|283344|283346|283348|283349|283358|283361|283361|283371|283371|283374|283375|283375|283376|283378|283378|283379|283381|283389|283389|283390|283394|283395|283401|283404|283404|283405|283405|283408|283411|283411|283417|283418|283420|283424|283425|283430|283432|283435|283439|283905|283908|283910|283911|283912|283912|283914|283915|283923|283923|283924|283930|283931|283931|283933|283935|283936|283941|283942|283942|283947|283947|283956|283956|283959|283961|283966|283966|283969|283975|283976|283976|283990|283990|283991|283994|283994|283995|283996|283996|283997|283998|283999|284002|284006|284012|284020|284020|284021|284023|284024|284027|284036|284036|284044|284045|284046|284048|284051|284052|284052|284053|284055|284056|284061|284061|284062|284062|284064|284065|284067|284068|284069|284075|284075|284076|284082|284090|284091|284105|284106|284107|284109|284110|284110|284111|284114|284114|285677|285678|285679|285683|285689|285691|285692|285692|285693|285702|285704|285705|285706|285708|285715|285729|285729|285735|285737|285739|285740|285747|285752|285767|285767|285769|285770|285773|285774|285774|285776|285790|285793|285794|285814|285818|285818|285825|285825|285830|285830|285831|285834|285840|285840|285841|285843|285844|285851|285853|285855|285856|285859|285860|285861|285861|285878|285888|285888|285889|285892|285911|285912|285920|285920|285923|285923|285924|285926|285926|285938|285963|285963|285976|285977|285981|285981|285986|285987|285988|285990|285991|285993|285998|285998|286000|286001|286008|286009|286009|286010|286011|286014|286014|286015|286016|286016|286073|286074|286082|286085|286086|286091|286093|286093|286099|286100|286100|286101|286105|286106|286108|286110|286111|286111|286112|286115|286131|286131|286132|286136|286136|286138|286141|286145|286146|286150|286151|286152|286157|286158|286167|286175|286178|286183|286184|286186|286186|286187|286187|286191|286191|286195|286196|286197|286197|286201|286202|286205|286207|286208|286209|286209|286210|286239|286240|286240|286244|286259|286259|286263|286264|286264|286266|286267|286275|286287|286287|286290|286294|286294|286295|286304|286305|286311|286316|286316|286317|286318|286323|286323|286324|286325|286341|286341|286342|286361|286376|286386|286386|286387|286408|359329|359386|360828|365709|365711|365714|365723|365724|365734|365739|365753|365761|365843|365844|365857|365861|365862|365868|365874|365883|365897|365913|365933|365942|365963|365968|365975|365980|365990|365993|365995|365998|366003|366005|366006|366024|366029|366038|366039|366043|366047|366053|366057|366059|366059|366060|366065|366069|366071|366077|366079|366081|366082|366087|366097|366101|366102|366102|366108|366108|366109|366113|366125|366125|366132|366134|366144|366159|366185|366199|366230|366231|366260|366263|366309|366348|366394|366421|366433|366433|366438|366440|366453|366486|366488|366490|366505|366548|366550|366564|366573|366586|366591|366598|366672|366690|366703|391464|391471|391475|391480|391481|391485|391489|391492|391494|391497|391504|391509|391510|391515|391519|391520|391521|391523|391526|391533|391534|391535|391536|391537|391538|391538|391539|391540|391541|391541|391543|391544|391551|391552|391552|391554|391558|391562|391563|391564|391569|391570|391572|391574|391576|391577|391580|391580|391583|391584|391585|391588|391592|391593|391595|391597|391600|391603|391606|391607|391609|391610|391620|391620|391622|391624|391632|391634|391636|391637|391640|391642|391645|391646|391650|391651|391654|391659|391660|391662|391663|391664|391666|391667|391668|391669|391670|391671|391672|391673|391674|391675|391676|391677|391678|391679|391680|391681|391682|391683|391684|391685|391686|391687|391688|391689|391690|391690|391691|391692|391693|391694|391695|391696|391697|391698|391699|391700|391701|391703|391704|391705|391706|391707|391708|391709|391710|391711|391712|391713|391714|391715|391716|391717|391718|391719|391720|391721|391722|391723|391724|391725|391726|391727|391728|391730|391732|391733|391734|391734|391735|391736|391737|391739|391740|391741|391742|391743|391744|391746|391747|391748|391749|391750|391751|391752|391753|391754|391755|391756|391758|391759|391760|391762|391763|391764|391765|391766|391767|391768|391769|391770|391771|391772|391773|391774|391775|391776|391777|391778|391779|391780|391781|391782|391783|391784|391785|391786|391787|391788|391789|391790|391791|391792|391793|391794|391795|391796|391797|391798|391799|391800|391800|391801|391802|391803|391804|391805|391806|391807|391808|391809|391810|391811|391812|391814|391815|391816|391817|391818|391819|391820|391821|391822|391824|391825|391826|391827|391828|391829|391830|391831|391832|391834|391835|391836|391837|391838|391839|391840|391842|391843|391844|391845|391847|391848|391849|391850|391851|391853|391854|391855|391856|391857|391858|391859|391860|391861|391862|391865|391866|391867|391869|391870|391871|391872|391873|391874|391875|391876|391877|391878|391879|391880|391881|391882|391883|391883|391884|391885|391886|391887|391888|391889|391890|391891|391892|391893|391894|391896|391897|391898|391899|391900|391901|391902|391903|391904|391905|391906|391907|391908|391909|391910|391911|391912|391913|391914|391915|391916|391918|391919|391920|391921|391922|391923|391924|391925|391927|391928|391929|391930|391931|391932|391933|391934|391935|391936|391937|391938|391939|391940|391941|391942|391943|391944|391945|391946|391947|391949|391950|391951|391952|391953|391954|391955|391956|391957|391958|391959|391960|391962|391963|391964|391965|391966|391968|391970|391971|391972|391972|391973|391974|391975|391976|391977|391978|391980|391981|391982|391983|391983|391984|391985|391986|391987|391988|391989|391990|391991|391992|391993|391994|391994|391995|391996|391997|391998|391999|392000|392001|392002|392003|392004|392005|392006|392007|392009|392011|392012|392013|392014|392015|392016|392018|392019|392021|392022|392023|392024|392025|392026|392027|392028|392029|392030|392031|392032|392033|392034|392035|392036|392037|392038|392039|392040|392041|392042|392043|392044|392045|392046|392047|392048|392049|392051|392052|392053|392054|392055|392056|392057|392058|392059|392062|392064|392065|392066|392067|392068|392069|392069|392070|392071|392072|392073|392074|392075|392076|392077|392078|392079|392082|392083|392084|392086|392087|392089|392090|392091|392092|392093|392094|392095|392096|392097|392098|392099|392100|392101|392102|392103|392105|392106|392107|392108|392110|392111|392112|392113|392114|392115|392116|392117|392118|392119|392120|392121|392122|392123|392124|392125|392126|392127|392128|392129|392130|392131|392132|392133|392134|392135|392136|392137|392138|392139|392140|392141|392142|392143|392144|392145|392146|392147|392148|392150|392151|392152|392153|392154|392155|392156|392157|392158|392160|392161|392162|392163|392164|392165|392166|392167|392168|392169|392170|392171|392172|392173|392174|392175|392176|392177|392178|392178|392179|392180|392181|392182|392184|392186|392187|392188|392189|392190|392191|392192|392193|392194|392195|392196|392197|392198|392199|392200|392201|392201|392202|392203|392204|392205|392206|392207|392208|392209|392211|392213|392214|392215|392216|392217|392218|392220|392221|392222|392223|392223|392224|392225|392226|392227|392229|392230|392231|392232|392233|392234|392235|392236|392237|392238|392239|392240|392242|392243|392246|392247|392252|392253|392254|392255|392258|392259|392262|392263|392264|392265|392266|392268|392271|392273|392275|392277|392279|392281|392282|392285|392286|392287|392289|392290|392292|392293|392295|392297|392300|392302|392303|392304|392306|392310|392312|392313|392316|392317|392318|392320|392321|392322|392323|392325|392326|392327|392328|392336|392338|392340|392343|392344|392347|392349|392350|392355|392356|392358|392361|392370|392371|392373|392376|392378|392383|392384|392385|392390|392393|392397|392407|392413|392415|392420|392427|392430|392438|392447|392454|392454|405429|405431|405437|405445|405447|405449|405450|405451|405454|405458|405460|405462|405469|405471|405473|405481|405483|405489|405495|421324|421326|421327|421333|421339|425442|425444|425445|425448|425450|425453|427942|427943|427946|427947|427953|427953|430961|434002|434004|434005|434574|438182|439872|439873|439874|439874|439875|440572|440575|440580|440586|440593|440598|440599|440603|440604|440605|440614|440616|440618|440625|440630|440637|440638|440641|440642|443070|443077|443080|443080|443084|443085|443087|443088|443096|448997|449001|449006|449007|449013|449014|449016|449017|449021|449023|449029|449031|449033|449035|449039|449041|449043|449045|449046|449047|449053|449060|449061|449062|449065|449069|449077|449081|449082|449086|449090|449096|449098|449108|449116|449122|449126|449129|449132|449134|449136|449137|449142|449144|449147|449152|449155|449157|449167|449176|449177|449179|449182|449186|449188|449190|449192|449193|449194|449195|449200|449201|449202|449205|449206|449207|449208|449212|449213|449214|449215|449216|449217|449219|449220|449221|449224|449227|449229|449230|449232|449234|449236|449237|449238|449241|449242|449243|449245|449247|449249|449252|449255|449257|449258|449259|449263|449264|449266|449267|449270|449272|449273|449274|449275|449276|449277|449279|449280|449282|449284|449285|449287|449288|449289|449290|449291|449292|449293|449294|449295|449297|449300|449301|449302|449303|449305|449306|449307|449308|449309|449310|449311|449312|449313|449314|449315|449316|449317|449318|449319|449320|449321|449322|449323|449324|449325|449326|449327|449328|449329|449330|449331|449332|449333|449335|449336|449337|449338|449339|449340|449341|449342|449343|449343|449344|449345|449346|449347|449348|449349|449350|449351|449352|449353|449354|449355|449356|449357|449358|449359|449360|449361|449362|449363|449364|449365|449366|449367|449368|449369|449370|449371|449372|449373|449374|449375|449376|449377|449378|449379|449380|449381|449383|449384|449385|449386|449387|449388|449389|449390|449391|449392|449393|449394|449395|449396|449397|449398|449399|449400|449401|449402|449403|449404|449405|449406|449407|449408|449409|449410|449411|449412|449413|449414|449415|449416|449417|449418|449419|449420|449421|449422|449423|449424|449425|449426|449427|449428|449429|449430|449431|449432|449433|449434|449435|449436|449437|449438|449439|449440|449441|449442|449442|449443|449444|449445|449446|449447|449448|449449|449450|449451|449452|449453|449454|449455|449456|449457|449458|449459|449460|449461|449462|449463|449464|449465|449466|449466|449467|449468|449469|449470|449471|449472|449473|449474|449475|449476|449477|449479|449480|449481|449482|449483|449484|449485|449486|449487|449488|449489|449490|449491|449492|449493|449494|449495|449496|449497|449498|449499|449500|449501|449502|449502|449503|449504|449505|449506|449507|449508|449509|449510|449511|449511|449512|449513|449514|449515|449516|449517|449518|449518|449519|449520|449522|449523|449524|449525|449526|449526|449527|449528|449529|449530|449531|449532|449533|449534|449535|449536|449537|449538|449538|449539|449540|449542|449543|449544|449545|449546|449547|449548|449549|449550|449551|449552|449553|449554|449555|449557|449558|449559|449561|449562|449563|449564|449565|449566|449567|449568|449569|449570|449571|449572|449573|449574|449575|449577|449578|449578|449579|449580|449580|449581|449582|449583|449584|449585|449586|449587|449588|449589|449590|449591|449592|449593|449594|449595|449597|449598|449599|449600|449601|449602|449603|449604|449604|449605|449606|449607|449608|449609|449610|449611|449612|449613|449614|449615|449615|449617|449618|449619|449620|449621|449622|449623|449624|449625|449626|449627|449628|449629|449630|449631|449632|449633|449634|449635|449636|449637|449638|449639|449640|449641|449643|449644|449645|449646|449647|449648|449649|449649|449650|449651|449652|449653|449654|449655|449656|449657|449658|449659|449660|449661|449662|449663|449664|449665|449666|449667|449668|449670|449671|449673|449674|449675|449676|449677|449678|449679|449680|449681|449682|449683|449684|449685|449686|449687|449688|449689|449690|449691|449692|449693|449694|449695|449696|449697|449698|449699|449700|449701|449702|449703|449704|449705|449706|449707|449708|449709|449710|449711|449712|449713|449714|449715|449716|449717|449718|449719|449720|449721|449722|449723|449724|449725|449726|449727|449728|449729|449730|449731|449732|449733|449734|449735|449736|449737|449738|449739|449740|449740|449741|449742|449743|449744|449745|449746|449747|449748|449749|449750|449751|449752|449753|449754|449755|449756|449757|449758|449759|449760|449761|449762|449763|449764|449765|449766|449767|449768|449769|449770|449771|449772|449773|449774|449775|449776|449777|449778|449779|449780|449781|449782|449783|449784|449785|449786|449787|449788|449789|449790|449791|449792|449793|449794|449795|449795|449796|449797|449798|449799|449800|449801|449802|449803|449804|449805|449806|449807|449808|449809|449810|449811|449812|449812|449813|449814|449815|449816|449817|449818|449818|449819|449819|449820|449820|449821|449822|449823|449824|449825|449826|449827|449828|449829|449830|449831|449832|449833|449834|449835|449836|449837|449838|449839|449840|449841|449842|449843|449844|449845|449846|449847|449848|449849|449850|449851|449852|449853|449854|449855|449856|449857|449858|449859|449860|449861|449862|449863|449864|449865|449866|449867|449869|449870|449871|449872|449873|449874|449875|449876|449878|449879|449880|449881|449882|449883|449884|449885|449886|449887|449888|449889|449890|449891|449892|449893|449894|449895|449896|449897|449898|449898|449899|449900|449901|449902|449903|449904|449905|449906|449907|449908|449909|449910|449911|449912|449913|449914|449915|449916|449917|449918|449919|449920|449921|449922|449923|449924|449925|449926|449927|449928|449929|449930|449931|449932|449933|449934|449935|449936|449937|449938|449939|449940|449941|449942|449943|449944|449945|449946|449947|449948|449950|449951|449952|449953|449954|449955|449957|449958|449959|449959|449960|449961|449962|449963|449964|449965|449966|449967|449968|449969|449970|449971|449972|449973|449974|449975|449976|449977|449978|449979|449980|449981|449982|449983|449984|449985|449986|449987|449988|449989|449990|449991|449992|449993|449994|449995|449996|449997|449998|449999|450000|450001|450002|450003|450004|450005|450006|450007|450008|450009|450010|450011|450012|450013|450014|450015|450016|450017|450018|450019|450020|450021|450022|450023|450024|450025|450026|450027|450028|450028|450029|450030|450031|450032|450032|450033|450033|450034|450035|450036|450037|450038|450039|450040|450041|450042|450043|450044|450045|450046|450047|450047|450048|450049|450050|450051|450052|450053|450054|450055|450056|450057|450058|450058|450059|450059|450061|450062|450063|450064|450065|450066|450067|450068|450070|450071|450072|450073|450074|450075|450076|450077|450078|450079|450080|450081|450082|450083|450085|450086|450087|450088|450089|450090|450091|450092|450093|450094|450096|450097|450098|450100|450101|450102|450103|450104|450105|450107|450108|450109|450110|450111|450112|450115|450116|450118|450119|450120|450121|450123|450124|450125|450126|450127|450128|450129|450130|450131|450133|450134|450136|450139|450140|450141|450142|450144|450145|450146|450148|450149|450150|450152|450153|450153|450154|450155|450157|450161|450162|450163|450166|450168|450170|450171|450172|450175|450178|450181|450182|450183|450184|450186|450187|450190|450191|450192|450193|450194|450195|450197|450200|450201|450202|450204|450205|450207|450208|450210|450211|450212|450213|450214|450215|450216|450217|450218|450219|450221|450222|450223|450224|450226|450228|450230|450231|450232|450233|450234|450235|450236|450238|450239|450240|450241|450243|450244|450246|450247|450248|450250|450252|450253|450254|450256|450257|450258|450260|450261|450262|450265|450266|450268|450269|450270|450271|450272|450273|450274|450275|450278|450281|450282|450289|450304|450305|450307|450311|450318|450322|450323|450327|450328|450335|450343|450345|450346|450350|450351|450353|450357|450360|450385|450387|450389|450390|481118|481119|481120|481121|481230|481616|481618|481619|481625|481631|488370|488408|488415|488433|488434|488435|488441|488441|488446|488451|488511|488523|488530|488547|488549|488551|488554|488557|488575|488602|488612|488618|488619|488751|488757|488758|489017|489235|489248|489273|489487|489622|489631|490038|490049|490138|490145|490361|490421|490457|490521|490525|490650|490731|490735|490736|490737|490965|491024|491049|491061|491065|491598|491824|491964|492034|492047|492125|492156|492157|492163|492351|492527|492528|492596|492617|492618|492627|492690|492729|492911|492912|492980|492987|493054|493055|493192|493195|493213|493236|493509|493629|493807|493985|494087|494151|495116|495378|496171|496193|496248|496635|496660|496673|496674|496678|496712|498922|498926|498928|498931|498942|498943|498948|498970|499001|499022|499065|499088|499092|499093|499096|499122|499129|499142|499158|499160|499183|499189|499210|499213|499215|499218|499219|499224|499229|499231|499235|499240|499252|499270|499276|499276|499281|499282|499291|499294|499299|499299|499301|499308|499315|499315|499319|499326|499329|499332|499340|499341|499347|499364|499366|499374|499385|499392|499397|499398|499399|499404|499419|499423|499442|499458|499488|499509|499513|499516|499527|499543|499562|499565|499572|499578|499598|499612|499629|499637|499648|499665|499666|499685|499697|499701|499709|499713|499722|499728|499735|499767|499793|509253|509261|509270|509275|509281|509283|509289|509308|509311|509318|509350|509374|509397|509413|509416|509417|509424|509434|511005|511007|511022|511064|511364|511367|513249|513250|513251|513518|516212|516216|516302|516700|516712|516715|516718|516720|516731|516734|516737|516740|516743|516744|516745|516750|516754|516756|516758|516759|516761|516764|516765|516767|516768|516770|516772|516773|516774|516775|516776|516777|516778|516779|516780|516781|516782|516783|516784|516785|516786|516787|516788|516789|516791|516792|516793|516794|516795|516797|516798|516799|516799|516801|516802|516803|516805|516806|516809|516810|516811|516812|516814|516816|516817|516818|516819|516822|516823|516825|516826|516827|516828|516829|516830|516831|516832|516833|516834|516835|516836|516837|516839|516840|516842|516843|516844|516845|516846|516848|516849|516850|516853|516854|516855|516856|516857|516858|516859|516860|516861|516862|516863|516864|516865|516866|516867|516868|516869|516871|516872|516873|516874|516875|516876|516877|516879|516880|516881|516883|516885|516886|516887|516888|516889|516890|516891|516892|516893|516894|516895|516896|516897|516898|516899|516900|516901|516902|516903|516904|516905|516906|516907|516908|516909|516910|516911|516912|516913|516914|516915|516916|516917|516918|516919|516920|516921|516922|516923|516924|516925|516926|516927|516928|516929|516930|516931|516932|516933|516934|516935|516936|516937|516938|516939|516940|516941|516942|516943|516944|516945|516946|516947|516947|516948|516949|516950|516951|516952|516953|516954|516954|516955|516956|516957|516958|516959|516960|516961|516962|516963|516964|516965|516966|516967|516968|516969|516970|516971|516972|516973|516974|516975|516976|516976|516977|516978|516979|516980|516981|516982|516983|516984|516985|516986|516987|516988|516989|516990|516991|516992|516993|516994|516995|516996|516997|516998|516999|517000|517001|517002|517003|517004|517004|517005|517006|517007|517008|517009|517010|517011|517012|517013|517014|517015|517016|517017|517018|517019|517020|517021|517021|517022|517023|517024|517025|517026|517027|517028|517029|517030|517031|517032|517034|517035|517036|517037|517038|517039|517040|517041|517042|517043|517044|517045|517046|517047|517048|517049|517050|517051|517052|517053|517054|517055|517055|517056|517057|517058|517059|517060|517061|517062|517063|517064|517065|517066|517067|517068|517069|517070|517071|517072|517073|517074|517075|517076|517077|517078|517079|517080|517081|517082|517083|517084|517085|517086|517087|517088|517089|517090|517091|517092|517093|517094|517095|517096|517097|517098|517099|517100|517101|517102|517103|517104|517105|517106|517107|517108|517109|517110|517111|517112|517113|517114|517115|517117|517118|517119|517120|517121|517122|517123|517124|517125|517126|517127|517128|517129|517130|517131|517132|517133|517134|517135|517136|517137|517138|517139|517140|517141|517142|517143|517144|517144|517145|517146|517147|517148|517149|517150|517151|517152|517153|517154|517155|517156|517157|517158|517159|517160|517161|517162|517163|517164|517165|517166|517167|517168|517169|517170|517171|517172|517173|517174|517175|517176|517177|517178|517179|517180|517181|517182|517183|517184|517185|517186|517187|517188|517189|517190|517191|517192|517193|517194|517196|517197|517198|517199|517200|517201|517202|517203|517204|517205|517206|517207|517208|517209|517210|517211|517212|517213|517214|517215|517216|517217|517218|517219|517220|517221|517222|517223|517224|517225|517226|517227|517228|517229|517230|517231|517232|517233|517234|517235|517237|517238|517239|517240|517241|517242|517243|517244|517245|517246|517247|517248|517249|517250|517251|517252|517253|517254|517255|517258|517259|517260|517261|517262|517263|517264|517265|517266|517267|517268|517270|517271|517272|517273|517274|517275|517276|517277|517278|517280|517281|517283|517284|517285|517286|517287|517288|517290|517290|517291|517292|517293|517294|517295|517296|517297|517298|517299|517300|517300|517301|517302|517303|517304|517305|517306|517306|517307|517308|517309|517310|517311|517312|517313|517314|517315|517316|517317|517318|517320|517321|517322|517323|517324|517325|517326|517327|517328|517329|517330|517331|517332|517333|517334|517335|517336|517337|517338|517339|517340|517341|517341|517342|517343|517344|517345|517346|517347|517348|517349|517350|517351|517352|517353|517354|517355|517356|517357|517358|517359|517360|517361|517362|517363|517364|517365|517366|517367|517368|517369|517370|517371|517372|517373|517374|517375|517376|517377|517378|517379|517380|517381|517382|517383|517384|517386|517387|517388|517389|517390|517391|517392|517393|517394|517395|517396|517397|517398|517399|517401|517403|517404|517405|517406|517407|517409|517411|517412|517413|517414|517415|517416|517417|517418|517420|517421|517422|517423|517424|517426|517427|517429|517430|517432|517433|517434|517435|517436|517437|517438|517440|517442|517443|517444|517445|517446|517448|517449|517451|517452|517453|517454|517455|517456|517457|517458|517459|517460|517460|517461|517462|517463|517464|517465|517466|517468|517469|517470|517471|517472|517474|517476|517477|517478|517479|517480|517483|517484|517485|517487|517488|517489|517490|517491|517492|517493|517494|517495|517498|517499|517501|517503|517505|517510|517512|517513|517515|517517|517518|517519|517520|517521|517528|517529|517531|517532|517533|517534|517538|517540|517541|517543|517544|517547|517548|517550|517551|517554|517555|517557|517582|517586|517586|517588|517592|517594|517600|517605|517605|517609|517612|517614|517615|517616|517624|517627|517628|517634|517636|517637|517641|517643|517649|517651|517652|517654|517663|517667|517670|517671|517674|517678|517679|517683|517688|517689|517698|517699|517703|517708|538342|539471|550824|557424|557426|557704|557706|557708|557710|557712|557714|557716|557718|557720|557722|557724|557726|557730|557731|557732|557733|557734|557735|557736|557737|557738|557739|557740|557741|557742|557743|557744|557745|557746|557747|557748|557749|557750|557751|557752|557753|557754|557755|557756|557757|557758|557759|557760|557761|557762|557763|557764|557765|557766|557767|557768|557769|557770|557771|557772|557773|557773|557774|557775|557777|557779|557781|557783|557785|557787|557789|557791|557793|557795|557797|557799|557801|557803|557805|557807|557809|557811|557813|557815|557817|557819|557821|557825|558072|558633|558635|558921|558923|558925|558927|558929|558931|558933|558935|558937|558939|558941|558943|558945|558947|558949|558951|558953|558955|558957|558959|558961|558963|558965|558967|558969|558971|558973|558975|558977|558979|558981|558983|558985|558987|558989|558991|558993|558995|558997|558999|559001|559003|559003|559005|559402|559404|559406|559408|559410|559412|559414|559416|559418|559420|559422|559424|559426|559428|559430|559430|559432|559434|559436|559438|559440|559442|559444|559446|559448|559450|559452|559454|559456|559458|559460|559464|559466|559468|559470|559472|559474|559476|559478|559480|576588|576600|576601|576602|576620|576621|576626|583788|584002|584092|585032|585258|585477|585477|585482|585667|586532|586533|586782|586973|587073|587073|587132|587145|587668|588268|588608|588734|588929|589289|589484|608940|609450|609459|611549|611550|613499|613499|614745|614783|614818|614848|624208|624212|624220|624221|625788|629032|629033|629034|629035|629036|629037|629038|629039|629040|629041|629042|629043|629044|629045|629046|629047|629048|629049|629050|629051|629052|629053|629054|629055|629056|629057|629058|629059|629060|629061|629062|629063|629064|629065|629066|629067|629068|629069|629070|629071|629072|629073|629074|629075|629076|629077|629078|629079|629080|629081|629082|629083|629084|629085|629086|629087|629088|629089|629090|629091|629092|629093|629094|629095|629096|629097|629098|629099|629100|629101|629102|629103|629104|629105|629106|629107|629108|629109|629110|629111|629112|629113|629114|629115|629116|629117|629118|629119|629120|629121|629122|629123|629124|629125|629126|629127|629128|629129|629130|629131|629132|629133|629134|629135|629136|629137|629138|629139|629140|629141|629142|629143|629144|629145|629146|629146|629147|629148|629149|629150|629151|629152|629153|629154|629155|629156|629157|629158|629159|629160|629161|629162|629163|629164|629166|629167|629168|629169|629170|629171|629172|629173|629174|629175|629176|629177|650707|650724|650729|650866|650868|650870|650876|650877|650885|650892|650899|650900|650902|650903|650906|650911|650915|650923|650925|650927|653913|655182|655277|655296|655365|655380|655400|655401|672386|679387|679398|679556|683422|683423|683426|683429|683433|683434|683436|683437|683438|683440|683443|683444|683445|683446|683448|683450|683452|683453|683454|683455|683456|683458|685120|685122|685123|685124|685929|685931|685934|685934|685935|685936|685938|685940|685942|685944|685945|685946|685947|685949|685956|685958|685961|685964|685965|685966|685970|685971|685974|685978|685979|685979|685981|685984|685986|685987|685989|685990|685992|685993|685994|685996|685997|685998|685999|686000|686001|686002|686003|686004|686006|686008|686009|686009|686010|686011|686013|686015|686016|686018|686019|686020|686021|686023|686024|686025|686026|686027|686028|686029|686031|686032|686035|686036|686037|686041|686042|686043|686045|686046|686046|686047|686048|686049|686050|686053|686057|686058|686059|686061|686062|686063|686064|686067|686068|686071|686072|686073|686075|686076|686077|686079|686080|686081|686086|686087|689682|689683|689684|689685|689687|690906|690908|690911|690912|690913|690914|690915|690917|690918|690920|690921|690925|690934|690935|690940|690941|690942|690943|690944|690945|690946|690947|690948|690950|690951|690956|690957|690958|690959|690960|690961|690962|690964|690965|690968|690972|690973|690974|690977|690980|690981|690981|690982|690987|695103|695104|695108|695109|695110|695111|697179|697180|697181|697182|697184|697187|697189|697190|697192|707874|707876|707878|707879|707882|719440|719441|719445|719445|719449|730085|732973|732982|732985|732994|732996|732999|733002|733003|733005|733008|733009|743828|743833|743842|746981|746983|746985|746989|746991|746995|746999|747001|747004|747007|747010|747011|747024|747025|747029|747043|747057|747066|747072|747081|747087|758988|762443|762445|762446|762447|762451|762452|762454|762456|762460|762462|762464|762468|762472|762480|762481|762495|762496|762501|762504|762505|762508|762509|762521|762530|762538|762543|762550|762555|762557|762560|762561|762566|762567|762569|762577|762579|762582|762587|762588|762597|762599|762600|762601|762606|762608|762623|762628|762630|762636|762646|762647|762648|762649|762651|762657|762659|762660|762670|762677|762681|762684|762686|762687|762691|762699|762705|762706|774623|774638|774642|774655|774664|774668|777211|778939|780980|780981|780984|780986|780987|780990|780992|780998|780999|781006|781009|781011|781012|781014|781015|781019|781021|781022|781024|781025|781031|781032|781033|781034|781036|781040|781043|781046|781047|781049|781054|781055|781056|781057|781058|781060|781061|781067|781068|781069|781077|781079|781080|781082|781085|787088|787090|787130|790129|790130|790131|790132|790133|790134|794864|794943|795006|799267|804987|805257|805269|805274|819083|819084|819085|819086|825269|825270|825271|825272|825273|825274|825275|825276|825277|825278|825279|825280|825281|825282|825283|825284|825285|825286|825287|825288|825289|825290|825291|825292|825293|825294|825295|825296|825297|825298|825299|825300|825301|825302|825303|825304|825305|825306|825307|825308|825309|825310|825311|825312|825313|825314|825315|825316|825317|825318|825319|825320|825321|825322|825323|825324|825325|825326|825327|825328|825329|825330|825331|825332|825333|825334|825335|825336|825337|825338|825339|825340|825341|825342|825343|825344|825345|825346|825347|825348|825349|825350|825351|825352|825353|825354|825355|825356|825357|825358|825359|825360|825361|825362|825363|825364|825365|825366|825367|825368|825369|825370|825371|825372|825373|825374|825375|825376|825377|825378|825379|825380|825381|825382|825383|825384|825385|825386|825387|825388|825389|825390|825391|825392|825393|825394|825395|825396|825397|825398|825399|825400|825401|825402|825403|825404|825405|825406|825407|825408|825409|825410|825411|825412|825413|825414|825415|825416|825417|825418|825419|825420|825421|825422|825423|825424|825425|825426|825427|825428|825429|825430|825431|825432|825433|825434|825435|825436|825437|825438|825439|825440|825441|825442|825443|850811|850813|850815|850817|850819|850856|850858|850860|851113|851119|851121|851128|851135|851137|851139|851364|851366|851369|851372|851374|851376|851378|858400|858402|858427|858431|858468|859063|859071|861583|861616|881722|881723|881724|881725|881726|881727|881728|881729|881730|881730|881731|881732|881733|881734|881735|881736|881737|881738|881739|881740|881741|881742|881743|881744|881745|881746|881747|881748|881749|881750|881751|881752|881753|881754|881755|881756|881757|881758|881759|881760|881761|881762|881763|881764|881765|881766|881767|881768|881769|881770|881771|881772|881773|881774|881775|881776|881777|881778|881779|881780|881781|881782|881783|881784|881785|881786|881787|881788|881789|881790|881791|881792|881793|881794|881795|881796|881797|881798|881799|881800|881801|881802|881803|881804|881805|881806|881807|881808|881809|881810|881811|881812|881813|881814|881815|881816|881817|881818|881819|881820|881821|881822|881823|881824|881825|881826|881827|881828|881829|881830|881831|881832|881833|881834|881835|881836|881837|881838|881839|881840|881841|881842|881843|881844|881845|881846|881847|881848|881849|881850|881851|881852|881853|881854|881855|881856|881857|881858|881859|881860|881861|881862|881863|881864|881865|881866|881867|881868|881869|881870|881871|881872|881873|881874|881875|881876|881877|881878|881879|881880|881881|881882|881883|881884|881885|881886|881887|881888|881889|881890|881891|881892|881893|881894|881895|881896|881897|881898|881899|881900|881901|881902|881903|881904|881905|881906|881907|881908|881909|881910|881911|881912|881913|881914|881915|881916|881917|881918|881919|881920|881921|881922|881923|881924|882859|882860|882861|882862|882863|882864|882865|882866|882867|882868|882869|882870|882871|882872|882873|882874|882875|882876|882877|882878|882879|882987|882988|903751|922423|922424|922425|922426|922427|922428|922429|922430|922431|922432|922433|922434|922435|922436|922437|922438|922439|922440|922441|922442|922443|922444|922445|922446|922447|922448|922449|922450|922451|922452|922453|922454|922455|922456|922457|922458|922459|922460|922461|922462|922463|922464|922465|922466|922467|922468|922469|922470|922471|922472|922473|922474|922475|922476|922477|922478|922479|922480|922481|922482|922483|930995|930996|930997|930998|930999|931000|931001|931002|931003|931004|931005|931006|931007|931008|931009|931010|931011|931012|931013|931014|931015|931016|931017|931018|931019|931020|931021|931022|931023|931024|931025|931026|931027|931028|931029|931030|931030|931031|931032|931033|931034|931035|931036|931037|931038|931039|931040|931041|931042|931043|931044|931045|931046|939855|939856|939857|939858|939859|939860|939861|939862|939863|939864|939865|939866|939867|939868|940667|940668|940669|940670|940671|940672|940673|940674|940675|940676|940677|942438|942439|942440|942441|942442|942443|942444|942445|942446|942447|942448|942449|942450|942451|942452|942453|942454|942455|942456|942457|942458|942459|942460|942461|942462|942463|942464|942465|942466|942467|942468|942469|942470|942471|942472|942473|942474|942475|942476|942477|942478|942479|942480|942481|942482|942483|942484|942485|942486|942487|942488|942489|942490|942491|942492|942493|942494|942495|942496|942497|942498|942499|942500|942501|942502|942503|942504|952801|952802|952803|952804|952805|952806|952807|952808|952809|952810|952811|952812|952813|952814|952815|952816|952817|952818|952819|952820|952821|952822|952823|952824|952825|952826|952827|952828|952829|952830|952831|952832|952833|952834|952835|952836|952837|952838|952839|952840|952841|952842|952843|959601|959602|959603|959604|959605|959606|959607|959608|959609|959610|959611|959612|960456|960457|964185|964186|970726|983701", + "text": "Dilated cardiomyopathy 1G" + }, + { + "baseId": "27691|27692|27693|27698|46997|46998|46999|47000|47001|55739|55741|55742|55743|55744|55745|55746|55747|55750|55751|55752|55753|55755|55756|55757|55759|55760|55762|55763|55764|55768|55771|55772|55777|55778|55779|55780|55782|55783|55784|55786|55787|55788|55790|55793|55794|55796|55798|55800|55803|55806|55808|55809|55810|55811|55813|55814|55816|55818|55819|55820|55821|55822|55823|55826|55829|55831|55832|55835|55836|55837|55840|55841|55842|55844|55845|55846|55847|55848|55849|55850|55852|55853|55855|55858|55859|55860|55863|55864|55867|55868|55870|55872|55873|55875|55876|55877|55878|55879|55880|55881|55882|55883|55884|55886|55887|55889|55890|55891|55893|55895|55896|55898|55899|55901|55904|55906|55907|55908|55910|55912|55915|55921|55923|55924|55927|55928|55929|55931|55933|55934|55935|55936|55938|55939|55940|55941|55942|55943|55944|55945|55949|55950|55951|55952|55954|55957|55958|55960|55964|55970|55971|55973|55975|55977|55979|55982|55983|55984|55985|55987|55988|55990|55991|55993|55995|55996|55998|55999|56000|56002|56003|56004|56006|56009|56013|56015|56016|56017|56018|56022|56023|56024|56026|56028|56029|56031|56032|56033|56034|56036|56038|56039|56040|56041|56043|56045|56047|56048|56049|56050|56051|56052|56053|56055|56056|56059|56060|56066|56067|56068|56069|56072|56074|56075|56076|56079|56080|56082|56085|56087|56088|56093|56094|56095|56096|56099|56100|56101|56103|56105|56108|56111|56113|56114|56115|56116|56117|56118|56119|56120|56124|56128|56130|56133|56134|56135|56136|56137|56138|56143|56145|56147|56148|56150|56152|56153|56155|56156|56158|56160|56164|56165|56166|56171|56172|56173|56174|56175|56176|56178|56179|56180|56181|56183|56187|56189|56190|56191|56193|56195|56196|56197|56199|56200|56201|56202|56205|56207|56209|56211|56214|56215|56218|56221|56222|56224|56228|56230|56231|56233|56235|56237|56239|56240|56243|56248|56251|56255|56258|56261|56262|56263|56264|56265|56270|56271|56275|56276|56281|56282|56285|56291|56292|56298|56300|56301|56302|56307|56315|56316|56317|56320|56321|56323|56324|56328|56330|56331|56333|56335|56342|56343|56344|56345|56347|56349|56350|56352|56353|56356|56359|56362|56364|56365|56366|56367|56370|56372|56373|56374|56375|56378|56381|56383|56387|56388|56389|56390|56392|56393|56394|56395|56396|56401|56405|56406|56408|56412|56413|56415|56418|56420|56421|56423|56425|56428|56430|56433|56436|56439|56440|56441|56442|56451|56454|56455|56457|56458|56459|56460|56462|56463|56464|56467|56469|56470|56471|56472|56473|56474|56477|56481|56482|56483|56485|56487|56494|56495|56496|56497|56498|56499|56500|56503|56504|56508|56512|56513|56514|56515|56516|56518|56520|56521|56524|56526|56530|56532|56533|56535|56537|56538|56539|56540|56542|56544|56545|56547|56549|56555|56557|56558|56559|56560|56564|56567|56570|56572|56574|56575|56576|56577|56578|56579|56580|56581|56582|56583|56584|56585|56586|56589|56592|56593|56594|56595|56596|56597|56600|56604|56606|56608|56610|56615|56616|56619|56620|56621|56624|56625|56628|56629|56631|56633|56634|56637|56639|56640|56641|56643|56645|56647|56648|56649|56652|56653|56658|56661|56665|56667|56668|56671|56672|56674|56675|56676|56677|56678|56679|56680|56682|56683|56684|56685|56686|56687|56689|56691|56693|56694|56696|56700|56701|56703|56705|56706|56708|56709|56710|56711|56712|56714|56716|56717|56718|56719|56722|56723|56725|56730|56731|56732|56735|56736|56737|56738|56742|56743|56746|56750|56751|56752|56753|56754|56755|56758|56759|56760|56762|56764|56766|56767|56768|56769|56773|56774|56775|56777|56784|56785|56786|56787|56788|56789|56790|56792|56793|56794|56797|56798|56800|56802|56803|56804|56805|56806|56807|56809|56810|56811|56812|56814|56816|56819|56822|56823|56825|56826|56827|56829|56831|56833|56834|56838|56839|56841|56845|56847|56848|56849|56851|56853|56854|56855|56856|56857|56858|56863|56864|56865|56866|56867|56868|56870|56871|56872|56873|56874|56875|56876|56878|56880|56881|56882|56884|56886|56887|56917|56929|56956|71025|102168|102169|102170|102172|102183|102185|102188|102190|102192|102193|102194|102195|102200|102203|102206|102207|102208|102210|102212|102214|102215|102218|102221|136108|136109|136116|136119|136120|136121|136125|136126|136128|136129|136132|136133|136134|136358|141478|141479|141490|141492|141493|141494|141501|141502|141509|141510|141515|141520|141523|141524|141526|141530|141534|141539|141542|141544|165601|172606|172609|172615|172621|172638|172644|172647|172652|172657|172665|172668|172677|172683|172691|172697|172698|172699|172700|172704|172717|172729|172734|172738|172800|172808|172813|172816|172820|172823|172829|172833|172838|172840|172841|172849|172850|172852|172854|172872|172877|172878|172879|172942|172944|172945|172964|172971|172973|172976|172981|172982|172997|172998|172999|173003|173008|173009|173015|173031|173035|173043|173044|173047|173049|173061|173068|173073|173074|173079|173080|173090|173102|173104|173107|173114|173121|173136|173137|173144|173147|173152|173158|173163|173166|173167|173169|173172|173176|173192|173193|173212|173213|173218|173221|173225|173229|173234|173240|173243|173246|173247|173248|173252|173301|173311|173313|173316|173321|173328|173329|173334|173342|173344|173349|173351|173354|173356|173357|173359|173361|173364|173372|173381|173394|173410|173443|173444|173448|173452|173453|173463|173467|173478|173482|173483|173486|173487|173593|173598|173599|173600|173618|173624|173626|173720|173728|173728|173864|173867|177073|177335|177338|178113|178124|178128|178486|188939|189407|189409|189411|189415|189423|189435|189437|189446|189451|189454|189459|189464|189467|189469|189476|189483|189486|189489|189491|189493|189498|189499|189503|189507|189514|189524|189535|189539|189541|189553|189566|189573|189578|189582|189588|189591|189594|189597|189599|189601|189619|189629|189630|189655|189661|189665|189666|189673|189686|189687|189746|189756|189760|189763|189764|189769|189770|191309|191743|192712|192797|192869|192952|192957|192999|193004|193082|193084|193217|193221|193226|193229|193231|193237|193241|193255|193357|193804|193962|194739|195117|195118|195137|195775|196130|196340|196400|198697|198702|198703|198733|198744|198753|198754|198768|198769|198772|198790|198791|198806|198811|198813|198817|198819|198822|198827|198832|198838|198839|198852|198869|198881|198881|198888|198900|198909|198912|198924|198966|198969|198988|199000|199024|199029|199098|199110|199111|199112|199114|199126|199130|199139|199143|199149|199157|199174|199184|199191|199192|199203|199212|199229|199233|199237|199238|199249|199264|199265|199266|199277|199302|199310|199322|199334|199361|199365|199374|199407|199409|199432|199439|199441|199449|199474|199490|199492|199501|199512|199513|199524|199526|199539|199543|199556|199563|199578|199580|199674|199707|199712|199716|199753|199759|199764|199773|215231|224987|226456|226892|228556|228579|228580|228584|228594|228595|228637|228640|228644|228646|228651|228656|228660|228662|228677|228681|228690|228695|228699|228725|228729|228742|228744|228746|228754|228761|228762|228779|228784|228786|228787|228789|228797|228811|228812|228816|228822|228885|228907|238389|238393|238420|238422|238441|238464|238479|238524|238547|238559|238560|250420|250429|250430|258049|258054|258060|258080|258101|258111|258121|258122|258130|258137|258157|258158|258165|266024|266256|266423|266653|266666|266764|266857|266892|266899|267023|267084|267093|267127|267687|267725|267868|267951|267961|268239|268329|268531|268680|268795|268915|269229|269544|269646|271221|271856|272181|272182|272756|272908|273378|273761|274309|274709|274951|274956|283197|283198|283200|283201|283203|283204|283211|283212|283220|283221|283222|283223|283225|283228|283229|283232|283233|283235|283236|283240|283244|283249|283250|283251|283252|283253|283255|283256|283262|283263|283269|283270|283271|283274|283275|283277|283278|283294|283302|283303|283304|283309|283320|283321|283327|283328|283329|283332|283341|283343|283344|283346|283348|283349|283358|283361|283371|283374|283375|283376|283378|283379|283381|283389|283390|283394|283395|283401|283404|283405|283408|283411|283417|283418|283420|283424|283425|283427|283430|283432|283435|283439|283905|283908|283910|283911|283912|283914|283915|283923|283924|283925|283930|283931|283933|283935|283936|283941|283942|283947|283956|283957|283959|283961|283966|283969|283975|283976|283990|283991|283994|283995|283996|283997|283998|283999|284002|284006|284012|284020|284021|284023|284024|284027|284034|284036|284037|284044|284045|284046|284048|284051|284052|284053|284055|284056|284061|284062|284064|284065|284067|284068|284069|284075|284076|284082|284090|284091|284105|284106|284107|284109|284110|284111|284114|285677|285678|285679|285683|285684|285689|285691|285692|285693|285702|285704|285705|285706|285708|285715|285724|285729|285735|285737|285739|285740|285747|285752|285767|285769|285770|285773|285774|285776|285790|285793|285794|285814|285818|285825|285830|285831|285834|285840|285841|285843|285844|285851|285853|285855|285856|285859|285860|285861|285878|285888|285889|285892|285911|285912|285913|285920|285923|285924|285926|285938|285963|285976|285977|285981|285986|285987|285988|285990|285991|285993|285998|286000|286001|286008|286009|286010|286011|286014|286015|286016|286073|286074|286082|286085|286086|286091|286093|286099|286100|286101|286102|286105|286106|286108|286110|286111|286112|286115|286131|286132|286136|286138|286141|286145|286146|286150|286151|286152|286157|286158|286159|286167|286175|286178|286183|286184|286186|286187|286191|286195|286196|286197|286201|286202|286205|286207|286208|286209|286210|286239|286240|286244|286259|286263|286264|286266|286267|286275|286287|286290|286294|286295|286304|286305|286311|286316|286317|286318|286323|286324|286325|286333|286341|286342|286361|286376|286386|286387|286408|360828|360831|365857|365953|366029|366059|366081|366102|366108|366113|366125|366433|366550|366591|391538|391541|391552|391580|391620|391690|391734|391800|391883|391972|391983|391994|392069|392178|392201|392223|392454|427953|434002|434573|440575|440598|440625|443080|449343|449442|449466|449502|449511|449518|449526|449538|449578|449580|449604|449615|449649|449740|449795|449812|449813|449818|449819|449820|449898|449959|450028|450032|450033|450047|450058|450059|450153|481118|481119|481120|481121|488370|488408|488433|488434|488441|488554|490965|491061|492034|492157|492980|492987|493629|496635|498948|499088|499096|499183|499219|499276|499294|499299|499301|499315|499347|499565|499629|499648|499709|509270|509350|513911|516799|516947|516954|516976|517004|517021|517055|517144|517290|517300|517306|517341|517421|517460|517586|517605|557773|559003|559430|576600|576601|576602|576621|584002|585477|587073|614848|629146|655182|655277|655296|655401|679387|685934|685979|686006|686009|686018|686046|690915|690981|697189|719445|746985|747001|794943|795006|859071|881722|881723|881724|881725|881726|881727|881728|881729|881730|881731|881732|881733|881734|881735|881736|881737|881738|881739|881740|881741|881742|881743|881744|881745|881746|881747|881748|881749|881750|881751|881752|881753|881754|881755|881756|881757|881758|881759|881760|881761|881762|881763|881764|881765|881766|881767|881768|881769|881770|881771|881772|881773|881774|881775|881776|881777|881778|881779|881780|881781|881782|881783|881784|881785|881786|881787|881788|881789|881790|881791|881792|881793|881794|881795|881796|881797|881798|881799|881800|881801|881802|881803|881804|881805|881806|881807|881808|881809|881810|881811|881812|881813|881814|881815|881816|881817|881818|881819|881820|881821|881822|881823|881824|881825|881826|881827|881828|881829|881830|881831|881832|881833|881834|881835|881836|881837|881838|881839|881840|881841|881842|881843|881844|881845|881846|881847|881848|881849|881850|881851|881852|881853|881854|881855|881856|881857|881858|881859|881860|881861|881862|881863|881864|881865|881866|881867|881868|881869|881870|881871|881872|881873|881874|881875|881876|881877|881878|881879|881880|881881|881882|881883|881884|881885|881886|881887|881888|881889|881890|881891|881892|881893|881894|881895|881896|881897|881898|881899|881900|881901|881902|881903|881904|881905|881906|881907|881908|881909|881910|881911|881912|881913|881914|881915|881916|881917|881918|881919|881920|881921|881922|881923|881924|882859|882860|882861|882862|882863|882864|882865|882866|882867|882868|882869|882870|882871|882872|882873|882874|882875|882876|882877|882878|882879|882987|882988|918702|918703|918706|918707|918708|918709|918710|918711|918712|918713|920165|920166|920168|920169", + "text": "Tibial muscular dystrophy" + }, + { + "baseId": "27691|27691|27695|27697|27698|27698|46998|46998|55738|55739|55739|55741|55741|55742|55742|55743|55743|55744|55744|55745|55745|55746|55746|55747|55749|55750|55750|55751|55752|55752|55753|55753|55754|55755|55756|55756|55757|55757|55758|55759|55759|55760|55760|55761|55762|55762|55763|55763|55764|55764|55766|55767|55768|55768|55769|55770|55771|55771|55772|55773|55774|55776|55777|55777|55778|55778|55779|55779|55780|55780|55781|55782|55782|55783|55783|55784|55784|55786|55786|55787|55787|55788|55788|55790|55790|55791|55793|55793|55794|55794|55795|55796|55796|55798|55798|55799|55800|55800|55801|55802|55803|55803|55804|55805|55806|55806|55807|55808|55808|55809|55809|55810|55810|55811|55811|55813|55813|55814|55814|55816|55816|55818|55818|55819|55819|55820|55820|55821|55822|55822|55823|55823|55825|55826|55826|55827|55828|55829|55829|55830|55831|55831|55832|55832|55833|55835|55835|55836|55836|55837|55837|55839|55840|55840|55841|55841|55842|55844|55844|55845|55845|55846|55846|55847|55847|55848|55848|55849|55849|55850|55850|55852|55852|55853|55853|55854|55855|55855|55858|55858|55859|55859|55860|55861|55863|55864|55864|55867|55867|55868|55868|55869|55870|55870|55871|55872|55872|55873|55873|55875|55876|55876|55877|55877|55878|55878|55879|55880|55880|55881|55881|55882|55882|55883|55883|55884|55886|55886|55887|55887|55889|55889|55890|55890|55891|55891|55892|55893|55894|55895|55895|55896|55898|55898|55899|55900|55901|55901|55903|55904|55904|55905|55906|55906|55907|55907|55908|55908|55910|55910|55911|55912|55912|55915|55917|55918|55919|55920|55921|55923|55923|55924|55924|55926|55927|55927|55928|55928|55929|55929|55931|55933|55933|55934|55935|55935|55936|55936|55938|55939|55940|55940|55941|55942|55943|55943|55944|55944|55945|55945|55946|55947|55949|55950|55950|55951|55952|55952|55953|55954|55956|55957|55957|55958|55958|55960|55960|55961|55962|55964|55965|55968|55970|55971|55971|55973|55973|55975|55977|55977|55979|55979|55981|55982|55982|55983|55984|55984|55985|55985|55987|55988|55989|55990|55991|55991|55992|55993|55994|55995|55995|55996|55996|55997|55998|55998|55999|55999|56000|56001|56002|56002|56004|56004|56006|56006|56009|56009|56011|56013|56013|56014|56015|56016|56016|56017|56018|56018|56019|56020|56022|56022|56023|56023|56024|56025|56026|56027|56028|56028|56029|56029|56030|56031|56032|56032|56033|56033|56034|56035|56036|56036|56038|56038|56039|56039|56040|56040|56041|56041|56042|56043|56043|56045|56045|56046|56047|56047|56048|56048|56049|56049|56050|56050|56051|56052|56052|56053|56053|56054|56055|56055|56056|56057|56058|56059|56060|56060|56061|56062|56064|56065|56066|56067|56068|56069|56069|56071|56072|56073|56074|56074|56075|56076|56076|56077|56078|56079|56079|56080|56080|56081|56082|56082|56083|56084|56085|56087|56087|56088|56088|56089|56092|56093|56093|56094|56094|56095|56095|56096|56096|56097|56100|56100|56101|56101|56103|56103|56105|56105|56107|56108|56108|56111|56111|56113|56113|56114|56114|56115|56115|56116|56116|56117|56117|56118|56118|56119|56119|56120|56120|56121|56124|56125|56127|56128|56129|56130|56130|56132|56133|56133|56134|56134|56135|56135|56136|56136|56137|56137|56138|56139|56142|56143|56143|56145|56145|56146|56147|56147|56148|56148|56150|56151|56152|56152|56153|56153|56154|56155|56155|56156|56156|56158|56158|56160|56163|56164|56164|56165|56165|56166|56167|56170|56171|56171|56172|56172|56173|56173|56174|56174|56175|56175|56176|56176|56178|56178|56179|56179|56180|56180|56181|56181|56183|56183|56185|56187|56187|56189|56189|56190|56190|56191|56191|56193|56193|56195|56195|56196|56196|56197|56197|56199|56199|56200|56200|56201|56201|56202|56202|56203|56204|56205|56205|56207|56207|56208|56209|56209|56210|56211|56211|56214|56214|56215|56215|56216|56218|56218|56219|56221|56221|56222|56222|56224|56224|56225|56227|56228|56230|56230|56231|56231|56233|56233|56234|56235|56235|56237|56237|56239|56239|56240|56240|56241|56243|56243|56245|56246|56248|56248|56249|56251|56251|56253|56255|56256|56258|56258|56261|56262|56262|56263|56264|56264|56265|56265|56266|56268|56270|56270|56271|56271|56273|56275|56276|56276|56277|56278|56281|56281|56282|56283|56285|56286|56288|56289|56291|56291|56292|56292|56293|56295|56297|56298|56298|56300|56300|56301|56302|56302|56303|56305|56307|56307|56308|56309|56311|56312|56312|56313|56314|56315|56315|56316|56316|56317|56320|56320|56321|56321|56322|56322|56323|56323|56324|56324|56325|56326|56327|56328|56328|56330|56330|56331|56331|56333|56333|56335|56337|56338|56339|56340|56342|56342|56343|56343|56344|56345|56345|56346|56347|56347|56349|56349|56350|56350|56352|56352|56353|56353|56354|56356|56356|56359|56359|56360|56362|56362|56364|56364|56365|56365|56366|56366|56367|56367|56368|56369|56370|56370|56371|56372|56373|56373|56374|56375|56375|56377|56378|56378|56381|56381|56383|56383|56386|56387|56387|56388|56388|56389|56389|56390|56390|56392|56393|56393|56394|56394|56395|56395|56396|56396|56397|56398|56399|56400|56401|56401|56403|56405|56405|56406|56408|56408|56409|56410|56412|56413|56413|56414|56415|56417|56418|56418|56420|56420|56421|56421|56423|56425|56425|56426|56428|56430|56430|56433|56433|56436|56436|56437|56439|56439|56440|56440|56441|56441|56442|56442|56443|56444|56446|56447|56448|56451|56451|56453|56454|56454|56455|56455|56456|56457|56457|56458|56459|56459|56460|56460|56462|56462|56463|56463|56464|56464|56466|56467|56467|56468|56469|56469|56470|56471|56471|56472|56472|56473|56473|56474|56474|56476|56477|56477|56478|56479|56480|56481|56481|56482|56482|56483|56483|56485|56485|56486|56487|56487|56489|56492|56493|56494|56495|56495|56496|56496|56497|56497|56498|56498|56499|56499|56500|56500|56503|56503|56504|56506|56507|56508|56508|56510|56512|56512|56513|56513|56514|56514|56515|56515|56516|56516|56518|56518|56520|56520|56521|56521|56522|56524|56524|56526|56526|56527|56528|56529|56530|56530|56532|56533|56533|56535|56535|56537|56537|56538|56538|56539|56539|56540|56540|56541|56542|56543|56544|56544|56545|56545|56547|56548|56549|56549|56551|56552|56555|56555|56556|56557|56557|56558|56558|56559|56559|56560|56560|56561|56563|56564|56564|56566|56567|56567|56568|56569|56570|56570|56572|56572|56573|56574|56575|56575|56576|56576|56577|56577|56578|56578|56579|56579|56580|56580|56581|56582|56582|56583|56583|56584|56584|56585|56586|56586|56587|56588|56589|56590|56592|56592|56593|56594|56594|56595|56595|56596|56596|56597|56597|56599|56600|56600|56601|56604|56604|56605|56606|56606|56607|56608|56608|56610|56610|56611|56614|56615|56616|56616|56618|56619|56619|56620|56620|56621|56621|56622|56624|56624|56625|56625|56626|56627|56628|56628|56629|56629|56631|56631|56633|56633|56634|56634|56636|56637|56637|56638|56639|56640|56641|56641|56642|56643|56643|56644|56645|56645|56646|56647|56647|56648|56648|56649|56649|56652|56652|56653|56653|56654|56655|56657|56658|56658|56659|56661|56661|56663|56665|56665|56667|56667|56668|56669|56671|56671|56672|56672|56674|56675|56675|56676|56676|56677|56677|56678|56678|56679|56679|56680|56680|56681|56682|56682|56683|56684|56684|56685|56685|56686|56686|56687|56687|56688|56689|56689|56691|56692|56693|56693|56694|56695|56696|56696|56700|56700|56701|56701|56703|56703|56704|56705|56705|56706|56708|56708|56709|56709|56710|56710|56711|56711|56712|56712|56714|56714|56715|56716|56716|56717|56717|56718|56718|56719|56719|56722|56722|56723|56723|56724|56725|56725|56726|56727|56728|56729|56730|56731|56731|56732|56732|56733|56735|56736|56736|56737|56737|56738|56738|56741|56742|56742|56743|56743|56746|56746|56749|56750|56751|56751|56752|56752|56753|56753|56754|56755|56755|56758|56759|56759|56760|56760|56762|56762|56763|56764|56764|56765|56766|56766|56767|56767|56768|56768|56769|56769|56771|56772|56773|56773|56774|56775|56775|56776|56777|56777|56778|56780|56781|56784|56785|56785|56786|56786|56787|56787|56788|56788|56789|56789|56790|56792|56792|56793|56793|56794|56794|56796|56797|56797|56798|56798|56800|56800|56802|56802|56803|56803|56804|56804|56805|56805|56806|56806|56807|56807|56808|56809|56809|56810|56810|56811|56811|56812|56813|56814|56815|56816|56816|56817|56818|56819|56819|56820|56822|56822|56823|56823|56824|56825|56826|56826|56827|56828|56829|56829|56831|56831|56832|56833|56833|56834|56834|56837|56838|56838|56839|56839|56841|56841|56842|56843|56845|56847|56847|56848|56848|56849|56849|56850|56851|56851|56852|56853|56854|56855|56855|56856|56857|56857|56858|56858|56863|56863|56864|56864|56865|56866|56867|56868|56870|56870|56871|56872|56872|56873|56873|56874|56874|56875|56875|56876|56876|56877|56878|56878|56879|56880|56880|56881|56881|56882|56882|56884|56884|56886|56886|56887|56887|56906|56937|56970|56973|56975|56976|56978|56980|56981|56982|56983|56985|56986|56987|56989|56990|56991|56993|56995|56996|56998|56999|57001|57003|57005|57007|57008|57009|57010|57011|57012|57013|57014|71025|85139|85174|85176|85183|85203|102161|102164|102168|102169|102169|102170|102170|102171|102172|102172|102173|102176|102178|102179|102180|102182|102183|102183|102185|102185|102187|102188|102188|102190|102190|102192|102192|102193|102193|102194|102194|102195|102195|102196|102197|102200|102200|102201|102202|102203|102203|102206|102206|102207|102207|102208|102208|102209|102210|102210|102211|102212|102212|102214|102214|102215|102215|102217|102218|102218|102219|102220|102221|102221|136108|136109|136109|136110|136111|136112|136113|136114|136115|136116|136116|136117|136119|136120|136121|136121|136124|136125|136126|136126|136127|136128|136128|136129|136129|136130|136133|136134|136134|136135|136136|136355|136358|136359|141478|141478|141479|141479|141482|141489|141490|141490|141492|141492|141493|141493|141494|141500|141501|141501|141502|141502|141504|141509|141509|141510|141510|141511|141512|141513|141515|141515|141516|141517|141520|141520|141521|141522|141523|141523|141524|141524|141526|141530|141532|141533|141534|141534|141536|141537|141539|141542|141542|141543|141544|141544|141545|141546|141547|141549|165598|165601|165601|165602|172606|172606|172609|172609|172610|172611|172615|172615|172617|172618|172621|172621|172622|172624|172626|172627|172628|172629|172630|172632|172635|172637|172638|172642|172644|172647|172647|172648|172651|172652|172652|172653|172656|172657|172657|172658|172661|172662|172663|172664|172665|172665|172666|172668|172668|172671|172672|172675|172677|172677|172679|172681|172682|172683|172683|172684|172686|172689|172691|172691|172693|172694|172697|172697|172698|172698|172699|172699|172700|172701|172702|172704|172705|172708|172710|172715|172717|172717|172726|172727|172728|172729|172729|172731|172732|172734|172734|172737|172738|172738|172800|172800|172804|172805|172807|172808|172808|172813|172813|172816|172816|172818|172820|172820|172823|172823|172824|172825|172827|172829|172829|172830|172833|172833|172834|172835|172838|172838|172840|172841|172841|172849|172849|172850|172850|172852|172852|172853|172854|172854|172856|172859|172860|172862|172863|172868|172870|172872|172872|172877|172877|172878|172878|172879|172879|172942|172943|172944|172945|172945|172946|172948|172950|172951|172954|172955|172958|172962|172963|172964|172964|172967|172971|172971|172972|172973|172973|172975|172976|172979|172981|172981|172982|172982|172983|172984|172989|172990|172991|172992|172994|172995|172997|172997|172998|172998|172999|172999|173002|173003|173003|173005|173006|173008|173008|173009|173009|173011|173013|173015|173015|173022|173025|173026|173027|173028|173031|173031|173032|173035|173035|173036|173037|173040|173041|173043|173043|173044|173044|173045|173046|173047|173047|173048|173049|173049|173051|173053|173056|173059|173061|173061|173062|173068|173069|173072|173073|173073|173074|173074|173075|173079|173080|173081|173083|173088|173089|173090|173090|173092|173093|173095|173096|173097|173098|173099|173102|173102|173104|173104|173105|173107|173107|173108|173112|173114|173114|173115|173118|173121|173121|173126|173127|173132|173135|173136|173136|173137|173137|173141|173143|173144|173144|173147|173147|173149|173150|173152|173152|173156|173157|173158|173158|173159|173160|173161|173163|173163|173164|173165|173166|173166|173167|173167|173168|173169|173169|173172|173172|173173|173174|173175|173176|173176|173177|173178|173181|173182|173183|173186|173187|173189|173192|173192|173193|173193|173195|173197|173198|173199|173206|173207|173208|173212|173212|173213|173213|173218|173218|173219|173220|173221|173221|173225|173225|173227|173229|173229|173231|173234|173234|173235|173236|173240|173240|173243|173244|173245|173246|173246|173247|173247|173248|173248|173250|173252|173252|173254|173257|173258|173259|173262|173263|173264|173266|173300|173301|173301|173303|173304|173307|173308|173310|173311|173311|173312|173313|173314|173316|173316|173320|173321|173321|173322|173328|173328|173329|173329|173333|173334|173335|173342|173342|173344|173344|173346|173348|173349|173350|173351|173351|173353|173354|173354|173355|173356|173356|173357|173357|173358|173359|173359|173360|173361|173361|173363|173364|173364|173368|173372|173373|173374|173375|173376|173378|173381|173381|173383|173394|173394|173395|173396|173399|173400|173439|173441|173443|173443|173444|173445|173448|173448|173452|173452|173453|173453|173457|173460|173462|173463|173463|173464|173467|173467|173469|173472|173474|173475|173478|173478|173481|173482|173483|173483|173485|173486|173486|173581|173582|173583|173585|173586|173593|173593|173594|173597|173598|173599|173599|173600|173600|173603|173604|173612|173618|173618|173620|173623|173624|173624|173626|173626|173627|173628|173720|173723|173724|173726|173727|173728|173728|173728|173730|173734|173861|173862|173863|173864|173864|173867|173867|173868|173869|173871|176940|176941|176945|177073|177075|177206|177334|177335|177338|178108|178109|178112|178113|178114|178115|178117|178119|178120|178121|178122|178124|178128|178129|178130|178132|178135|178472|178478|178479|178482|178484|178485|178486|178486|178490|188930|188939|188939|188946|189405|189407|189407|189409|189409|189411|189415|189415|189416|189422|189423|189423|189428|189430|189432|189435|189435|189436|189437|189437|189444|189445|189446|189446|189447|189449|189451|189451|189454|189454|189459|189459|189464|189464|189467|189467|189469|189469|189476|189476|189477|189478|189481|189483|189483|189486|189486|189489|189489|189490|189491|189491|189492|189493|189493|189494|189497|189498|189498|189499|189499|189503|189503|189507|189507|189512|189514|189514|189516|189518|189522|189523|189524|189524|189527|189531|189535|189535|189536|189539|189539|189541|189541|189543|189544|189548|189553|189553|189554|189556|189560|189566|189566|189569|189573|189573|189578|189578|189580|189582|189582|189584|189585|189586|189587|189588|189588|189589|189590|189591|189591|189592|189594|189594|189597|189599|189599|189600|189601|189603|189604|189605|189610|189616|189619|189619|189627|189628|189629|189629|189630|189630|189635|189636|189639|189640|189641|189642|189643|189647|189648|189649|189650|189652|189655|189655|189661|189661|189663|189665|189666|189667|189671|189673|189673|189674|189681|189686|189686|189687|189687|189691|189692|189699|189701|189702|189732|189733|189734|189738|189741|189743|189744|189745|189746|189746|189748|189753|189755|189756|189756|189758|189760|189760|189761|189763|189764|189764|189765|189766|189769|189769|189770|189770|190932|190941|191125|191126|191309|191461|191464|191743|191842|192072|192168|192707|192712|192712|192797|192797|192800|192868|192869|192870|192871|192874|192875|192877|192952|192952|192957|192957|193001|193003|193004|193004|193005|193006|193078|193079|193080|193081|193082|193082|193084|193084|193086|193154|193163|193165|193166|193217|193217|193219|193221|193221|193226|193226|193227|193228|193229|193229|193231|193231|193233|193237|193237|193238|193241|193243|193249|193252|193255|193257|193305|193310|193311|193312|193313|193316|193317|193355|193356|193357|193357|193734|193802|193804|193804|193805|193807|193814|193816|193818|193884|193886|193962|193962|194739|194739|195077|195102|195117|195117|195118|195118|195137|195137|195518|195525|195775|195775|196105|196120|196130|196340|196340|196400|196400|196408|198682|198686|198688|198692|198697|198698|198699|198700|198701|198702|198703|198703|198704|198705|198710|198716|198718|198721|198723|198729|198730|198731|198733|198733|198736|198737|198738|198739|198743|198744|198744|198745|198746|198753|198753|198754|198754|198758|198760|198761|198767|198768|198769|198772|198772|198777|198780|198781|198788|198790|198790|198791|198793|198794|198796|198797|198799|198802|198804|198805|198806|198806|198811|198813|198817|198817|198819|198819|198820|198822|198825|198826|198827|198828|198832|198832|198833|198835|198838|198839|198839|198841|198845|198849|198850|198852|198852|198854|198856|198857|198858|198867|198869|198870|198875|198876|198878|198881|198881|198881|198886|198888|198888|198894|198895|198900|198900|198902|198903|198907|198908|198909|198909|198911|198912|198912|198915|198917|198918|198920|198924|198929|198931|198937|198940|198941|198944|198947|198952|198954|198957|198966|198966|198969|198969|198970|198973|198976|198978|198979|198988|198988|198995|198997|198998|198999|199000|199011|199013|199015|199016|199019|199022|199024|199025|199027|199028|199029|199029|199031|199035|199036|199040|199041|199042|199043|199050|199054|199064|199066|199070|199071|199072|199082|199085|199086|199090|199094|199096|199098|199104|199106|199107|199108|199110|199110|199111|199112|199112|199114|199114|199116|199118|199120|199126|199127|199130|199131|199133|199139|199139|199141|199143|199146|199147|199148|199149|199149|199150|199156|199157|199157|199165|199166|199167|199172|199174|199174|199180|199184|199191|199191|199192|199192|199193|199200|199201|199203|199204|199205|199208|199212|199212|199214|199216|199221|199222|199223|199224|199225|199228|199229|199229|199233|199233|199237|199237|199238|199242|199243|199245|199249|199249|199251|199253|199254|199261|199264|199264|199265|199265|199266|199266|199269|199270|199271|199272|199274|199276|199277|199285|199287|199289|199292|199296|199297|199298|199299|199302|199302|199304|199306|199310|199310|199313|199321|199322|199322|199325|199327|199329|199332|199334|199334|199336|199340|199342|199344|199346|199352|199353|199361|199361|199365|199366|199372|199373|199374|199376|199380|199384|199385|199387|199391|199393|199398|199401|199402|199403|199405|199407|199409|199409|199410|199416|199418|199426|199430|199432|199432|199437|199438|199439|199441|199441|199444|199449|199449|199452|199454|199455|199458|199459|199461|199462|199467|199468|199470|199474|199474|199477|199479|199483|199485|199486|199490|199490|199492|199492|199495|199499|199501|199501|199505|199512|199512|199513|199513|199524|199526|199526|199530|199531|199532|199533|199535|199537|199539|199543|199544|199545|199555|199556|199556|199557|199559|199561|199562|199563|199563|199576|199577|199578|199578|199579|199580|199580|199583|199585|199586|199588|199593|199594|199595|199598|199601|199605|199608|199611|199671|199673|199674|199697|199698|199701|199707|199707|199712|199712|199714|199715|199716|199719|199720|199722|199723|199724|199728|199736|199738|199740|199749|199751|199753|199753|199754|199756|199759|199759|199761|199764|199764|199765|199771|199773|199774|199776|199777|205135|205422|206910|206911|206917|206918|206919|206920|206921|206922|206929|206930|213528|215231|215231|221119|221120|221121|221122|221123|221124|221125|221126|221127|221128|221129|221130|221131|221132|221133|224228|224235|224240|224982|224987|224991|224992|224998|225000|225005|225009|225016|225018|225027|225034|225039|225040|225045|225046|225055|225057|225060|225074|225076|225077|225078|225079|225081|225082|225089|225090|225093|225094|225100|225106|225108|225114|225115|225119|226447|226447|226448|226454|226455|226455|226892|227229|228549|228550|228552|228556|228558|228560|228564|228568|228569|228573|228577|228579|228580|228580|228584|228584|228588|228589|228593|228594|228594|228595|228595|228600|228609|228619|228622|228624|228631|228637|228638|228640|228640|228642|228644|228645|228646|228648|228651|228654|228656|228656|228660|228660|228661|228662|228662|228666|228668|228675|228676|228677|228677|228678|228679|228680|228681|228687|228690|228690|228692|228695|228695|228699|228699|228700|228710|228711|228714|228716|228718|228719|228723|228725|228725|228729|228729|228730|228733|228734|228739|228740|228741|228742|228742|228744|228745|228746|228747|228749|228751|228752|228754|228754|228757|228761|228762|228762|228764|228771|228772|228775|228779|228784|228786|228786|228787|228789|228789|228792|228794|228797|228801|228806|228811|228812|228814|228816|228821|228822|228827|228829|228830|228832|228833|228838|228839|228842|228845|228847|228875|228876|228877|228880|228881|228885|228887|228892|228895|228900|228901|228904|228905|228907|238389|238389|238390|238391|238392|238393|238393|238394|238395|238396|238397|238399|238400|238401|238403|238404|238407|238408|238409|238410|238411|238412|238413|238414|238415|238417|238418|238419|238420|238420|238421|238422|238422|238423|238424|238425|238427|238428|238429|238430|238432|238434|238435|238436|238437|238438|238441|238441|238442|238443|238444|238445|238446|238447|238448|238449|238450|238451|238452|238454|238455|238456|238457|238459|238461|238462|238464|238464|238465|238466|238467|238468|238470|238471|238472|238473|238474|238475|238476|238477|238478|238479|238479|238480|238481|238482|238483|238484|238485|238486|238487|238488|238489|238490|238491|238492|238493|238494|238495|238496|238497|238498|238499|238500|238501|238502|238503|238504|238505|238506|238507|238508|238509|238510|238511|238512|238513|238514|238515|238516|238517|238518|238519|238520|238521|238522|238524|238524|238525|238526|238527|238528|238529|238530|238531|238532|238533|238534|238535|238536|238537|238538|238539|238540|238541|238542|238543|238544|238545|238547|238547|238548|238550|238551|238552|238553|238554|238555|238556|238557|238558|238559|238559|238560|238560|238562|238563|238564|238566|238567|238568|238569|238570|238571|238572|238573|238575|238576|238577|250411|250413|250415|250416|250417|250420|250420|250426|250427|250429|250430|250430|257987|257990|257995|258006|258008|258009|258010|258011|258018|258019|258027|258032|258034|258036|258039|258040|258042|258044|258049|258054|258054|258056|258057|258060|258060|258061|258064|258068|258072|258075|258076|258080|258080|258082|258083|258084|258085|258089|258090|258091|258095|258096|258097|258099|258101|258101|258102|258105|258106|258111|258111|258114|258115|258121|258122|258122|258123|258124|258125|258128|258130|258130|258131|258132|258137|258137|258145|258146|258148|258150|258155|258156|258157|258157|258158|258159|258161|258163|258165|258165|258169|258175|258176|258182|258183|258185|258191|265399|265464|265497|265553|265624|265904|265936|266024|266024|266065|266075|266078|266084|266095|266186|266188|266197|266209|266230|266241|266245|266249|266256|266256|266333|266336|266373|266397|266411|266412|266423|266542|266653|266653|266666|266666|266671|266679|266725|266737|266744|266754|266755|266757|266764|266782|266857|266857|266868|266875|266890|266892|266892|266893|266894|266899|266899|266904|267023|267023|267070|267084|267089|267093|267093|267112|267127|267127|267265|267341|267343|267409|267490|267534|267543|267557|267629|267639|267673|267674|267687|267687|267715|267717|267725|267725|267729|267860|267868|267872|267897|267901|267925|267951|267951|267961|267961|268111|268171|268216|268223|268239|268239|268326|268329|268329|268334|268335|268337|268487|268531|268531|268680|268703|268730|268795|268795|268915|268915|269034|269201|269229|269343|269544|269646|269669|269864|270161|270205|270836|271155|271221|271221|271689|271856|271856|271898|271933|271996|272032|272181|272182|272192|272661|272756|272756|272908|272997|272999|273034|273051|273235|273337|273378|273378|273700|273712|273760|273761|273815|274173|274309|274528|274548|274588|274603|274693|274705|274706|274707|274709|274711|274714|274943|274944|274948|274951|274951|274956|274957|275123|283197|283198|283200|283201|283204|283211|283212|283220|283221|283221|283222|283223|283225|283225|283228|283229|283232|283232|283233|283233|283235|283236|283240|283244|283244|283249|283250|283252|283252|283253|283255|283256|283262|283263|283269|283270|283271|283274|283275|283277|283277|283278|283294|283304|283309|283320|283321|283327|283328|283329|283332|283332|283341|283343|283344|283344|283346|283348|283349|283358|283361|283361|283371|283371|283374|283375|283375|283376|283378|283378|283379|283381|283389|283389|283390|283394|283395|283401|283404|283404|283405|283405|283408|283411|283411|283417|283418|283420|283424|283425|283430|283432|283435|283439|283905|283908|283910|283911|283912|283912|283914|283915|283923|283923|283924|283930|283931|283931|283933|283935|283936|283941|283942|283942|283947|283947|283956|283956|283959|283961|283966|283966|283969|283975|283976|283976|283990|283990|283991|283994|283994|283995|283996|283996|283997|283998|283999|284002|284006|284012|284020|284020|284021|284023|284024|284027|284036|284036|284044|284045|284046|284048|284051|284052|284052|284053|284055|284056|284061|284062|284062|284064|284065|284067|284068|284069|284075|284075|284076|284082|284090|284091|284105|284106|284107|284109|284110|284110|284111|284114|284114|285677|285678|285679|285683|285689|285691|285692|285692|285693|285702|285704|285705|285706|285708|285715|285729|285729|285735|285737|285739|285740|285747|285752|285767|285767|285769|285770|285773|285774|285774|285776|285790|285793|285794|285814|285818|285818|285825|285825|285830|285830|285831|285834|285840|285840|285841|285843|285844|285851|285853|285855|285856|285859|285860|285861|285861|285878|285888|285888|285889|285892|285911|285912|285920|285920|285923|285923|285924|285926|285926|285938|285963|285963|285976|285977|285981|285981|285986|285987|285988|285990|285991|285993|285998|285998|286000|286001|286008|286009|286009|286010|286011|286014|286014|286015|286016|286016|286073|286074|286082|286085|286086|286091|286093|286093|286099|286100|286100|286101|286105|286106|286108|286110|286111|286111|286112|286115|286131|286131|286132|286136|286136|286138|286141|286145|286146|286150|286151|286152|286157|286158|286167|286175|286178|286183|286184|286186|286186|286187|286187|286191|286191|286195|286196|286197|286197|286201|286202|286205|286207|286208|286209|286209|286210|286239|286240|286240|286244|286259|286259|286263|286264|286264|286266|286267|286275|286287|286287|286290|286294|286294|286295|286304|286305|286311|286316|286316|286317|286318|286323|286323|286324|286325|286341|286341|286342|286361|286376|286386|286386|286387|286408|359329|359386|360828|360828|365709|365711|365714|365723|365724|365734|365739|365753|365761|365843|365844|365857|365861|365862|365868|365874|365883|365897|365913|365933|365942|365963|365968|365975|365980|365990|365993|365995|365998|366003|366005|366006|366024|366029|366038|366039|366043|366047|366053|366057|366059|366059|366060|366065|366069|366071|366077|366079|366081|366082|366087|366097|366101|366102|366102|366108|366108|366109|366113|366125|366125|366132|366134|366144|366159|366185|366199|366230|366231|366260|366263|366309|366348|366394|366421|366433|366433|366438|366440|366453|366486|366488|366490|366505|366548|366550|366564|366573|366586|366591|366598|366672|366690|366703|391464|391471|391475|391480|391481|391485|391489|391492|391494|391497|391504|391509|391510|391512|391515|391519|391520|391521|391523|391524|391526|391528|391533|391534|391535|391536|391537|391538|391538|391540|391541|391541|391543|391544|391551|391552|391552|391554|391558|391562|391563|391564|391569|391570|391572|391574|391576|391577|391580|391580|391584|391585|391588|391592|391593|391595|391597|391600|391603|391606|391607|391609|391610|391620|391620|391622|391624|391632|391634|391636|391637|391640|391642|391645|391646|391650|391651|391654|391659|391660|391662|391663|391664|391666|391667|391668|391669|391670|391671|391672|391673|391674|391675|391676|391677|391678|391679|391680|391681|391682|391683|391684|391685|391686|391687|391688|391689|391690|391690|391691|391692|391693|391694|391695|391696|391697|391698|391699|391700|391701|391703|391704|391705|391706|391707|391708|391709|391710|391711|391712|391713|391714|391715|391716|391717|391718|391719|391720|391721|391722|391723|391724|391724|391725|391726|391727|391728|391730|391733|391734|391734|391735|391736|391737|391739|391740|391741|391742|391743|391744|391746|391747|391748|391749|391750|391751|391752|391753|391754|391755|391756|391758|391759|391760|391762|391763|391764|391765|391766|391768|391769|391770|391771|391772|391774|391775|391776|391778|391779|391780|391781|391782|391783|391784|391785|391786|391787|391788|391789|391790|391791|391793|391794|391795|391796|391797|391798|391799|391800|391800|391801|391802|391803|391804|391805|391806|391807|391808|391809|391810|391811|391812|391814|391815|391816|391817|391819|391820|391821|391822|391824|391825|391826|391827|391828|391829|391830|391831|391832|391834|391835|391836|391837|391839|391840|391842|391843|391844|391845|391848|391849|391850|391851|391853|391854|391855|391856|391857|391858|391859|391860|391861|391862|391865|391866|391867|391869|391870|391871|391872|391873|391874|391875|391876|391877|391878|391879|391880|391881|391882|391883|391883|391884|391885|391886|391887|391888|391890|391891|391892|391893|391894|391896|391897|391898|391899|391900|391901|391902|391903|391904|391905|391906|391907|391908|391909|391910|391910|391911|391912|391913|391914|391916|391919|391920|391921|391922|391923|391924|391925|391927|391929|391930|391931|391932|391933|391934|391935|391936|391938|391939|391940|391941|391942|391943|391944|391945|391946|391947|391949|391950|391951|391952|391953|391954|391955|391956|391957|391958|391959|391960|391962|391963|391964|391965|391966|391968|391970|391971|391972|391972|391973|391974|391975|391976|391977|391978|391980|391981|391982|391983|391983|391984|391985|391986|391987|391988|391989|391990|391991|391992|391993|391994|391994|391996|391997|391998|391999|392000|392001|392002|392003|392004|392005|392006|392009|392011|392012|392014|392015|392016|392018|392021|392022|392023|392024|392025|392026|392027|392028|392029|392030|392031|392032|392033|392034|392035|392036|392037|392038|392039|392040|392041|392042|392043|392044|392045|392046|392047|392048|392049|392051|392052|392053|392054|392055|392056|392057|392058|392059|392062|392064|392065|392066|392067|392068|392069|392069|392070|392071|392072|392073|392074|392075|392076|392077|392078|392079|392082|392083|392086|392087|392089|392090|392091|392092|392093|392094|392095|392096|392097|392098|392099|392100|392101|392102|392103|392105|392106|392107|392108|392110|392111|392112|392113|392114|392115|392116|392117|392118|392119|392120|392121|392122|392123|392124|392125|392126|392127|392128|392129|392130|392131|392132|392133|392134|392135|392136|392137|392138|392139|392140|392141|392142|392143|392144|392145|392146|392147|392148|392150|392151|392152|392153|392154|392155|392156|392157|392158|392160|392161|392162|392163|392164|392165|392166|392167|392168|392169|392170|392171|392173|392174|392175|392176|392177|392178|392178|392179|392180|392181|392182|392184|392186|392187|392188|392189|392190|392191|392192|392193|392194|392195|392196|392197|392198|392199|392200|392201|392201|392202|392203|392204|392205|392206|392207|392208|392209|392211|392213|392214|392215|392216|392217|392218|392220|392221|392222|392223|392223|392224|392225|392226|392227|392229|392230|392231|392232|392233|392234|392235|392236|392237|392238|392239|392240|392242|392243|392246|392247|392252|392253|392254|392255|392258|392259|392262|392263|392264|392265|392266|392268|392271|392273|392275|392277|392279|392281|392282|392285|392286|392287|392289|392290|392292|392293|392295|392297|392300|392302|392303|392304|392306|392310|392312|392313|392316|392317|392318|392320|392321|392322|392323|392325|392326|392327|392328|392336|392338|392340|392343|392344|392347|392349|392350|392355|392356|392358|392361|392370|392371|392373|392376|392378|392383|392384|392385|392390|392393|392397|392407|392413|392415|392420|392427|392430|392438|392447|392454|392454|405429|405437|405447|405449|405450|405451|405454|405458|405462|405469|405471|405473|405481|405483|405489|405495|421324|421326|421327|421333|421339|425442|425444|425445|425448|425450|425453|427942|427943|427946|427947|427953|427953|434002|434004|434005|434574|438182|439874|440571|440572|440575|440580|440586|440593|440598|440599|440603|440604|440605|440614|440616|440618|440625|440630|440637|440638|440641|440642|443070|443077|443080|443080|443084|443085|443087|443088|443096|448997|449001|449006|449007|449013|449014|449016|449017|449021|449023|449029|449031|449033|449035|449039|449041|449043|449045|449046|449047|449053|449060|449061|449062|449065|449069|449077|449081|449086|449090|449096|449098|449108|449116|449122|449126|449129|449132|449134|449136|449137|449142|449144|449147|449152|449155|449157|449167|449176|449177|449179|449182|449186|449188|449190|449192|449193|449194|449195|449200|449201|449202|449205|449206|449207|449208|449212|449213|449214|449215|449216|449217|449219|449220|449221|449224|449227|449229|449230|449232|449234|449236|449237|449238|449241|449242|449243|449245|449247|449249|449252|449255|449257|449258|449259|449263|449264|449266|449267|449270|449272|449273|449274|449275|449276|449277|449279|449280|449282|449284|449285|449287|449288|449289|449290|449291|449292|449293|449294|449295|449297|449300|449302|449303|449305|449306|449307|449308|449309|449310|449311|449312|449313|449314|449315|449316|449317|449318|449319|449320|449321|449322|449323|449324|449325|449326|449327|449328|449329|449330|449331|449332|449333|449335|449336|449337|449338|449339|449340|449341|449342|449343|449343|449344|449345|449346|449347|449348|449349|449350|449351|449352|449353|449354|449355|449356|449357|449358|449359|449360|449361|449362|449363|449364|449365|449366|449367|449368|449369|449370|449371|449372|449373|449374|449376|449377|449378|449379|449380|449381|449383|449384|449385|449386|449387|449388|449389|449390|449391|449392|449394|449395|449396|449397|449398|449400|449401|449402|449403|449404|449405|449406|449407|449408|449409|449411|449412|449413|449414|449415|449416|449417|449418|449419|449420|449421|449422|449423|449424|449425|449427|449428|449429|449430|449431|449432|449433|449434|449435|449436|449437|449438|449439|449440|449441|449442|449442|449443|449444|449445|449446|449448|449449|449450|449452|449453|449454|449455|449456|449457|449458|449459|449460|449461|449462|449463|449464|449465|449466|449466|449467|449468|449469|449470|449471|449472|449473|449474|449475|449476|449477|449479|449480|449481|449482|449483|449484|449485|449486|449487|449488|449489|449490|449491|449492|449493|449494|449495|449496|449497|449498|449499|449500|449501|449502|449502|449504|449505|449506|449507|449508|449509|449510|449511|449511|449512|449513|449514|449515|449516|449517|449518|449518|449519|449520|449522|449523|449524|449525|449526|449526|449527|449528|449529|449530|449531|449532|449533|449534|449535|449536|449537|449538|449538|449542|449543|449544|449545|449546|449547|449548|449549|449550|449551|449552|449553|449555|449557|449558|449559|449561|449562|449563|449564|449565|449566|449568|449569|449570|449571|449572|449573|449574|449575|449577|449578|449578|449579|449580|449580|449581|449582|449583|449584|449585|449586|449587|449589|449590|449591|449592|449593|449594|449595|449597|449598|449599|449600|449601|449602|449603|449604|449604|449605|449606|449607|449608|449609|449610|449611|449612|449613|449614|449615|449615|449617|449618|449619|449620|449621|449622|449623|449624|449625|449626|449627|449628|449629|449630|449631|449632|449633|449634|449635|449636|449637|449638|449639|449640|449641|449643|449644|449645|449647|449648|449649|449649|449650|449651|449652|449653|449654|449655|449656|449657|449658|449659|449660|449661|449662|449663|449664|449665|449666|449667|449668|449670|449671|449673|449674|449675|449676|449677|449678|449679|449680|449681|449682|449683|449684|449685|449686|449687|449688|449689|449690|449691|449692|449693|449694|449695|449696|449697|449698|449699|449700|449701|449702|449703|449704|449705|449706|449707|449708|449709|449710|449711|449712|449713|449714|449715|449716|449717|449718|449719|449720|449720|449721|449722|449723|449724|449725|449726|449727|449728|449729|449730|449731|449732|449733|449734|449735|449736|449737|449738|449739|449740|449740|449741|449742|449743|449745|449746|449747|449748|449749|449750|449751|449752|449753|449754|449755|449756|449757|449758|449759|449760|449761|449763|449764|449765|449766|449767|449768|449769|449770|449771|449772|449774|449775|449776|449777|449778|449779|449780|449781|449782|449783|449784|449785|449786|449787|449788|449789|449790|449791|449792|449793|449794|449795|449795|449796|449797|449798|449799|449800|449801|449802|449803|449804|449805|449806|449808|449809|449811|449812|449812|449813|449814|449815|449816|449817|449818|449818|449819|449819|449820|449820|449821|449822|449823|449824|449825|449826|449827|449828|449829|449830|449831|449832|449833|449834|449835|449836|449837|449838|449839|449840|449841|449842|449843|449844|449845|449846|449847|449849|449850|449851|449852|449853|449854|449855|449856|449857|449858|449859|449860|449861|449862|449863|449864|449865|449866|449867|449869|449870|449871|449872|449873|449874|449875|449876|449878|449879|449880|449881|449882|449883|449884|449885|449886|449887|449888|449889|449890|449891|449892|449893|449894|449895|449896|449897|449898|449898|449899|449900|449901|449902|449903|449904|449905|449906|449907|449908|449909|449910|449911|449912|449913|449914|449915|449916|449917|449918|449919|449920|449921|449922|449923|449924|449925|449926|449927|449928|449929|449930|449931|449932|449933|449934|449935|449936|449937|449938|449939|449940|449941|449942|449943|449944|449945|449946|449947|449948|449950|449951|449952|449953|449954|449955|449957|449958|449959|449959|449960|449961|449962|449963|449964|449965|449966|449967|449968|449969|449970|449971|449972|449973|449974|449975|449976|449977|449978|449979|449980|449981|449982|449983|449984|449985|449986|449987|449988|449989|449990|449991|449992|449993|449994|449995|449996|449997|449998|449999|450000|450001|450002|450003|450004|450005|450006|450007|450008|450009|450010|450011|450012|450013|450014|450015|450016|450017|450018|450019|450020|450021|450022|450023|450024|450025|450026|450027|450028|450028|450029|450030|450031|450032|450032|450033|450033|450034|450035|450036|450037|450038|450039|450040|450041|450042|450043|450044|450045|450046|450047|450047|450048|450049|450050|450051|450052|450053|450054|450055|450056|450057|450058|450058|450059|450059|450061|450062|450063|450064|450065|450066|450067|450068|450070|450071|450072|450073|450074|450075|450076|450077|450078|450079|450080|450081|450082|450083|450085|450086|450087|450088|450089|450090|450091|450092|450093|450094|450096|450097|450098|450100|450101|450102|450103|450104|450105|450107|450108|450109|450110|450111|450112|450115|450116|450118|450119|450120|450121|450123|450124|450125|450126|450127|450128|450129|450130|450131|450133|450134|450136|450139|450140|450141|450142|450144|450145|450146|450148|450149|450150|450152|450153|450153|450154|450155|450157|450161|450162|450163|450166|450168|450170|450171|450172|450175|450178|450181|450182|450183|450184|450186|450187|450190|450191|450192|450193|450194|450195|450197|450200|450201|450202|450204|450205|450207|450208|450210|450211|450212|450213|450214|450215|450216|450217|450218|450219|450221|450222|450223|450224|450226|450228|450230|450231|450232|450233|450234|450235|450236|450238|450239|450240|450241|450243|450244|450246|450247|450248|450250|450252|450253|450254|450256|450257|450258|450260|450261|450262|450265|450266|450268|450269|450270|450271|450272|450273|450274|450275|450278|450281|450282|450289|450304|450305|450307|450311|450318|450322|450323|450327|450328|450335|450343|450345|450346|450350|450351|450353|450357|450360|450385|450387|450389|450390|481118|481119|481120|481121|481230|481616|481618|481619|481625|481631|488370|488408|488415|488433|488434|488435|488441|488441|488446|488451|488511|488523|488530|488547|488549|488551|488554|488557|488575|488602|488612|488618|488619|488751|488757|488758|489017|489235|489248|489273|489487|489622|489631|490038|490049|490138|490145|490361|490421|490457|490511|490521|490525|490650|490731|490735|490736|490737|490965|491024|491049|491061|491065|491598|491824|491964|492034|492047|492125|492156|492157|492163|492351|492527|492528|492596|492617|492618|492627|492690|492729|492911|492912|492980|492987|493054|493055|493192|493195|493213|493236|493509|493629|493807|493985|494087|494151|495116|495378|496171|496193|496248|496635|496660|496673|496674|496678|496712|498922|498926|498928|498931|498942|498943|498948|498970|499001|499022|499065|499088|499092|499093|499096|499122|499129|499142|499158|499160|499183|499189|499210|499213|499215|499218|499219|499224|499229|499231|499235|499240|499252|499270|499276|499276|499281|499282|499291|499294|499299|499299|499301|499308|499315|499315|499319|499326|499329|499332|499340|499341|499347|499364|499366|499374|499385|499392|499397|499398|499399|499404|499419|499423|499442|499458|499488|499509|499513|499516|499527|499543|499562|499565|499572|499578|499598|499612|499629|499637|499648|499665|499666|499685|499697|499701|499709|499713|499722|499728|499735|499767|499793|509244|509253|509261|509270|509275|509281|509283|509289|509308|509311|509318|509350|509374|509397|509413|509416|509417|509424|509434|511064|511364|511367|513249|513249|516212|516216|516302|516700|516712|516715|516718|516720|516731|516734|516737|516740|516743|516744|516745|516750|516754|516756|516758|516759|516761|516764|516765|516767|516768|516770|516772|516773|516774|516775|516776|516777|516778|516779|516780|516781|516782|516783|516784|516785|516786|516787|516788|516789|516791|516792|516793|516794|516795|516797|516798|516799|516799|516801|516802|516803|516805|516806|516809|516810|516811|516812|516814|516816|516817|516818|516819|516822|516823|516825|516826|516827|516828|516829|516830|516831|516832|516833|516834|516835|516836|516837|516839|516840|516842|516843|516844|516845|516846|516848|516849|516850|516853|516854|516855|516856|516857|516858|516859|516860|516861|516862|516863|516864|516865|516866|516867|516868|516869|516871|516872|516873|516874|516875|516876|516877|516879|516880|516881|516883|516885|516886|516887|516888|516889|516890|516891|516892|516893|516894|516895|516896|516897|516898|516899|516900|516901|516902|516903|516904|516905|516906|516907|516908|516909|516910|516911|516912|516913|516914|516915|516916|516917|516918|516919|516920|516921|516922|516923|516924|516925|516926|516927|516928|516929|516930|516931|516932|516933|516934|516935|516936|516937|516938|516939|516940|516941|516942|516943|516944|516945|516946|516947|516947|516948|516949|516950|516951|516952|516953|516954|516954|516955|516956|516957|516958|516959|516960|516961|516962|516963|516964|516965|516966|516967|516968|516969|516970|516971|516972|516973|516974|516975|516976|516976|516977|516978|516979|516980|516981|516982|516983|516984|516985|516986|516987|516988|516989|516990|516991|516992|516993|516994|516995|516996|516997|516998|516999|517000|517001|517002|517003|517004|517004|517005|517006|517007|517008|517009|517010|517011|517012|517013|517014|517015|517016|517017|517018|517019|517020|517021|517021|517022|517023|517024|517025|517026|517027|517028|517029|517030|517031|517032|517034|517035|517036|517037|517038|517039|517040|517041|517042|517043|517044|517045|517046|517047|517048|517049|517050|517051|517052|517053|517054|517055|517055|517056|517057|517058|517059|517060|517061|517062|517063|517064|517065|517066|517067|517068|517069|517070|517071|517072|517073|517074|517075|517076|517077|517078|517079|517080|517081|517082|517083|517084|517085|517086|517087|517088|517089|517090|517091|517092|517093|517094|517095|517096|517097|517098|517099|517100|517101|517102|517103|517104|517105|517106|517107|517108|517109|517110|517111|517112|517113|517114|517115|517117|517118|517119|517120|517121|517122|517123|517124|517125|517126|517127|517128|517129|517130|517131|517132|517133|517134|517135|517136|517137|517138|517139|517140|517141|517142|517143|517144|517144|517145|517146|517147|517148|517149|517150|517151|517152|517153|517154|517155|517156|517157|517158|517159|517160|517161|517162|517163|517164|517165|517166|517167|517168|517169|517170|517171|517172|517173|517174|517175|517176|517177|517178|517179|517180|517181|517182|517183|517184|517185|517186|517187|517188|517189|517190|517191|517192|517193|517194|517196|517197|517198|517199|517200|517201|517202|517203|517204|517205|517206|517207|517208|517209|517210|517211|517212|517213|517214|517215|517216|517217|517218|517219|517220|517221|517222|517223|517224|517225|517226|517227|517228|517229|517230|517231|517232|517233|517234|517235|517237|517238|517239|517240|517241|517242|517243|517244|517245|517246|517247|517248|517249|517250|517251|517252|517253|517254|517255|517258|517259|517260|517261|517262|517263|517264|517265|517266|517267|517268|517270|517271|517272|517273|517274|517275|517276|517277|517278|517280|517281|517283|517284|517285|517286|517287|517288|517290|517290|517291|517292|517293|517294|517295|517296|517297|517298|517299|517300|517300|517301|517302|517303|517304|517305|517306|517306|517307|517308|517309|517310|517311|517312|517313|517314|517315|517316|517317|517318|517320|517321|517322|517323|517324|517325|517326|517327|517328|517329|517330|517331|517332|517333|517334|517335|517336|517337|517338|517339|517340|517341|517341|517342|517343|517344|517345|517346|517347|517348|517349|517350|517351|517352|517353|517354|517355|517356|517357|517358|517359|517360|517361|517362|517363|517364|517365|517366|517367|517368|517369|517370|517371|517372|517373|517374|517375|517376|517377|517378|517379|517380|517381|517382|517383|517384|517386|517387|517388|517389|517390|517391|517392|517393|517394|517395|517396|517397|517398|517399|517401|517403|517404|517405|517406|517407|517409|517411|517412|517413|517414|517415|517416|517417|517418|517420|517421|517422|517423|517424|517426|517427|517429|517430|517432|517433|517434|517435|517436|517437|517438|517440|517442|517443|517444|517445|517446|517448|517449|517451|517452|517453|517454|517455|517456|517457|517458|517459|517460|517460|517461|517462|517463|517464|517465|517466|517468|517469|517470|517471|517472|517474|517476|517477|517478|517479|517480|517483|517484|517485|517487|517488|517489|517490|517491|517492|517493|517494|517495|517498|517499|517501|517503|517505|517510|517512|517513|517515|517517|517518|517519|517520|517521|517528|517529|517531|517532|517533|517534|517538|517540|517541|517543|517544|517547|517548|517550|517551|517554|517555|517557|517582|517586|517586|517588|517592|517594|517600|517605|517605|517609|517612|517614|517615|517616|517624|517627|517628|517634|517636|517637|517641|517643|517649|517651|517652|517654|517663|517667|517670|517671|517674|517678|517679|517683|517688|517689|517698|517699|517703|517708|538343|538955|538956|538957|539471|539471|557424|557426|557704|557706|557708|557710|557712|557714|557716|557718|557720|557722|557724|557726|557730|557731|557732|557733|557734|557735|557736|557737|557738|557739|557740|557741|557742|557743|557744|557745|557746|557747|557748|557749|557750|557751|557752|557753|557754|557755|557756|557757|557758|557759|557760|557761|557762|557763|557764|557765|557766|557767|557768|557769|557770|557771|557772|557773|557773|557774|557775|557777|557779|557781|557783|557785|557787|557789|557791|557793|557795|557797|557799|557801|557803|557805|557807|557809|557811|557813|557815|557817|557819|557821|557825|558072|558633|558635|558921|558923|558925|558927|558929|558931|558933|558935|558937|558939|558941|558943|558945|558947|558949|558951|558953|558955|558957|558959|558961|558963|558965|558967|558969|558971|558973|558975|558977|558979|558981|558983|558985|558987|558989|558991|558993|558995|558997|558999|559001|559003|559003|559005|559402|559404|559406|559408|559410|559412|559414|559416|559418|559420|559422|559424|559426|559428|559430|559430|559432|559434|559436|559438|559440|559442|559444|559446|559448|559450|559452|559454|559456|559458|559460|559464|559466|559468|559470|559472|559474|559476|559478|559480|576588|576600|576601|576602|576620|576621|576626|578394|578395|583788|584002|584088|584092|585032|585258|585477|585477|585482|585667|586532|586533|586782|586973|587073|587073|587132|587145|587668|588268|588608|588734|588929|589289|589484|608940|608942|608943|609450|609459|611549|611550|613499|614745|614783|614818|614848|622500|622865|624208|624212|624220|624221|629032|629033|629034|629035|629036|629037|629038|629039|629040|629041|629042|629043|629044|629045|629046|629047|629048|629049|629050|629051|629052|629053|629054|629055|629056|629057|629058|629059|629060|629061|629062|629063|629064|629065|629066|629067|629068|629069|629070|629071|629072|629073|629074|629075|629076|629077|629078|629079|629080|629081|629082|629083|629084|629085|629086|629087|629088|629089|629090|629091|629092|629093|629094|629095|629096|629097|629098|629099|629100|629101|629102|629103|629104|629105|629106|629107|629108|629109|629110|629111|629112|629113|629114|629115|629116|629117|629118|629119|629120|629121|629122|629123|629124|629125|629126|629127|629128|629129|629130|629131|629132|629133|629134|629135|629136|629137|629138|629139|629140|629141|629142|629143|629144|629145|629146|629146|629147|629148|629149|629150|629151|629152|629153|629154|629155|629156|629157|629158|629159|629160|629161|629162|629163|629164|629166|629167|629168|629169|629170|629171|629172|629173|629174|629175|629176|629177|650707|650724|650729|650866|650868|650870|650876|650877|650885|650892|650899|650900|650902|650903|650906|650911|650915|650923|650925|650927|653913|655182|655277|655296|655365|655380|655400|655401|672386|679387|679398|679556|683422|683423|683426|683429|683433|683434|683436|683437|683438|683440|683443|683444|683445|683446|683448|683450|683452|683453|683454|683455|683456|683458|685120|685122|685123|685124|685929|685931|685934|685934|685935|685936|685938|685940|685942|685944|685945|685946|685947|685949|685956|685958|685961|685964|685965|685966|685970|685971|685974|685978|685979|685979|685981|685984|685986|685987|685989|685990|685992|685993|685994|685996|685997|685998|685999|686000|686001|686002|686003|686004|686006|686008|686009|686009|686010|686011|686013|686015|686016|686018|686019|686020|686021|686023|686024|686025|686026|686027|686028|686029|686031|686032|686035|686036|686037|686041|686042|686043|686045|686046|686046|686047|686048|686049|686050|686053|686057|686058|686059|686061|686062|686063|686064|686067|686068|686071|686072|686073|686075|686076|686077|686079|686080|686081|686086|686087|689682|689683|689684|689685|689687|690906|690908|690911|690912|690913|690914|690915|690917|690918|690920|690921|690925|690934|690935|690940|690941|690942|690943|690944|690945|690946|690947|690948|690950|690951|690956|690957|690958|690959|690960|690961|690962|690964|690965|690968|690972|690973|690974|690977|690980|690981|690981|690982|690987|695103|695104|695108|695109|695110|695111|697179|697180|697181|697182|697184|697187|697189|697190|697192|707874|707876|707878|707879|707882|719440|719441|719445|719445|719449|730085|732973|732982|732985|732994|732996|732999|733002|733003|733005|733008|733009|743828|743833|743842|746981|746983|746985|746989|746991|746995|746999|747001|747004|747007|747010|747011|747024|747025|747029|747043|747057|747066|747072|747081|747087|758988|762443|762445|762446|762447|762451|762452|762454|762456|762460|762462|762464|762468|762472|762480|762481|762495|762496|762501|762504|762505|762508|762509|762521|762530|762538|762543|762550|762555|762557|762560|762561|762566|762567|762569|762577|762579|762582|762587|762588|762597|762599|762600|762601|762606|762608|762623|762628|762630|762636|762646|762647|762648|762649|762651|762657|762659|762660|762670|762677|762681|762684|762686|762687|762691|762699|762705|762706|774623|774638|774642|774655|774664|774668|777211|778939|780980|780981|780984|780986|780987|780990|780992|780998|780999|781006|781009|781011|781012|781014|781015|781019|781021|781022|781024|781025|781031|781032|781033|781034|781036|781040|781043|781046|781047|781049|781054|781055|781056|781057|781058|781060|781061|781067|781068|781069|781077|781079|781080|781082|781085|787088|787090|787130|789111|789362|794864|794943|795006|799267|802128|802129|802130|804987|804987|805058|805257|805269|805274|819083|819084|819085|819086|825269|825270|825271|825272|825273|825274|825275|825276|825277|825278|825279|825280|825281|825282|825283|825284|825285|825286|825287|825288|825289|825290|825291|825292|825293|825294|825295|825296|825297|825298|825299|825300|825301|825302|825303|825304|825305|825306|825307|825308|825309|825310|825311|825312|825313|825314|825315|825316|825317|825318|825319|825320|825321|825322|825323|825324|825325|825326|825327|825328|825329|825330|825331|825332|825333|825334|825335|825336|825337|825338|825339|825340|825341|825342|825343|825344|825345|825346|825347|825348|825349|825350|825351|825352|825353|825354|825355|825356|825357|825358|825359|825360|825361|825362|825363|825364|825365|825366|825367|825368|825369|825370|825371|825372|825373|825374|825375|825376|825377|825378|825379|825380|825381|825382|825383|825384|825385|825386|825387|825388|825389|825390|825391|825392|825393|825394|825395|825396|825397|825398|825399|825400|825401|825402|825403|825404|825405|825406|825407|825408|825409|825410|825411|825412|825413|825414|825415|825416|825417|825418|825419|825420|825421|825422|825423|825424|825425|825426|825427|825428|825429|825430|825431|825432|825433|825434|825435|825436|825437|825438|825439|825440|825441|825442|825443|850811|850813|850815|850817|850819|850856|850858|850860|851113|851119|851121|851128|851135|851137|851139|851364|851366|851369|851372|851374|851376|851378|858400|858402|858427|858431|858468|859062|859063|859071|881722|881723|881724|881725|881726|881727|881728|881729|881730|881730|881731|881732|881733|881734|881735|881736|881737|881738|881739|881740|881741|881742|881743|881744|881745|881746|881747|881748|881749|881750|881751|881752|881753|881754|881755|881756|881757|881758|881759|881760|881761|881762|881763|881764|881765|881766|881767|881768|881769|881770|881771|881772|881773|881774|881775|881776|881777|881778|881779|881780|881781|881782|881783|881784|881785|881786|881787|881788|881789|881790|881791|881792|881793|881794|881795|881796|881797|881798|881799|881800|881801|881802|881803|881804|881805|881806|881807|881808|881809|881810|881811|881812|881813|881814|881815|881816|881817|881818|881819|881820|881821|881822|881823|881824|881825|881826|881827|881828|881829|881830|881831|881832|881833|881834|881835|881836|881837|881838|881839|881840|881841|881842|881843|881844|881845|881846|881847|881848|881849|881850|881851|881852|881853|881854|881855|881856|881857|881858|881859|881860|881861|881862|881863|881864|881865|881866|881867|881868|881869|881870|881871|881872|881873|881874|881875|881876|881877|881878|881879|881880|881881|881882|881883|881884|881885|881886|881887|881888|881889|881890|881891|881892|881893|881894|881895|881896|881897|881898|881899|881900|881901|881902|881903|881904|881905|881906|881907|881908|881909|881910|881911|881912|881913|881914|881915|881916|881917|881918|881919|881920|881921|881922|881923|881924|882859|882860|882861|882862|882863|882864|882865|882866|882867|882868|882869|882870|882871|882872|882873|882874|882875|882876|882877|882878|882879|882987|882988|903751|922423|922424|922425|922426|922427|922428|922429|922430|922431|922432|922433|922434|922435|922436|922437|922438|922439|922440|922441|922442|922443|922444|922445|922446|922447|922448|922449|922450|922451|922452|922453|922454|922455|922456|922457|922458|922459|922460|922461|922462|922463|922464|922465|922466|922467|922468|922469|922470|922471|922472|922473|922474|922475|922476|922477|922478|922479|922480|922481|922482|922483|930995|930996|930997|930998|930999|931000|931001|931002|931003|931004|931005|931006|931007|931008|931009|931010|931011|931012|931013|931014|931015|931016|931017|931018|931019|931020|931021|931022|931023|931024|931025|931026|931027|931028|931029|931030|931031|931032|931033|931034|931035|931036|931037|931038|931039|931040|931041|931042|931043|931044|931045|931046|939855|939856|939857|939858|939859|939860|939861|939862|939863|939864|939865|939866|939867|939868|940667|940668|940669|940670|940671|940672|940673|940674|940675|940676|940677|942438|942439|942440|942441|942442|942443|942444|942445|942446|942447|942448|942449|942450|942451|942452|942453|942454|942455|942456|942457|942458|942459|942460|942461|942462|942463|942464|942465|942466|942467|942468|942469|942470|942471|942472|942473|942474|942475|942476|942477|942478|942479|942480|942481|942482|942483|942484|942485|942486|942487|942488|942489|942490|942491|942492|942493|942494|942495|942496|942497|942498|942499|942500|942501|942502|942503|942504|952801|952802|952803|952804|952805|952806|952807|952808|952809|952810|952811|952812|952813|952814|952815|952816|952817|952818|952819|952820|952821|952822|952823|952824|952825|952826|952827|952828|952829|952830|952831|952832|952833|952834|952835|952836|952837|952838|952839|952840|952841|952842|952843|959601|959602|959603|959604|959605|959606|959607|959608|959609|959610|959611|959612|960456|960457|962152|962153|971337", + "text": "Limb-girdle muscular dystrophy, type 2J" + }, + { + "baseId": "27698|46998|55739|55741|55742|55743|55744|55745|55746|55747|55750|55751|55752|55753|55755|55756|55757|55759|55760|55762|55763|55764|55768|55771|55772|55777|55778|55779|55780|55782|55783|55784|55786|55787|55788|55790|55793|55794|55796|55798|55800|55803|55806|55808|55809|55810|55811|55813|55814|55816|55818|55819|55820|55821|55822|55823|55826|55829|55831|55832|55835|55836|55837|55840|55841|55842|55844|55845|55846|55847|55848|55849|55850|55852|55853|55855|55858|55859|55860|55863|55864|55867|55868|55870|55872|55873|55875|55876|55877|55878|55879|55880|55881|55882|55883|55884|55886|55887|55889|55890|55891|55893|55895|55896|55898|55899|55901|55904|55906|55907|55908|55910|55912|55915|55921|55923|55924|55927|55928|55929|55931|55933|55934|55935|55936|55938|55939|55940|55941|55942|55943|55944|55945|55949|55950|55951|55952|55954|55957|55958|55960|55964|55970|55971|55973|55975|55977|55979|55982|55983|55984|55985|55987|55988|55990|55991|55993|55995|55996|55998|55999|56000|56002|56003|56004|56006|56009|56013|56015|56016|56017|56018|56022|56023|56024|56026|56028|56029|56031|56032|56033|56034|56036|56038|56039|56040|56041|56043|56045|56047|56048|56049|56050|56051|56052|56053|56055|56056|56059|56060|56066|56067|56068|56069|56072|56074|56075|56076|56079|56080|56082|56085|56087|56088|56093|56094|56095|56096|56099|56100|56101|56103|56105|56108|56111|56113|56114|56115|56116|56117|56118|56119|56120|56124|56128|56130|56133|56134|56135|56136|56137|56138|56143|56145|56147|56148|56150|56152|56153|56155|56156|56158|56160|56164|56165|56166|56171|56172|56173|56174|56175|56176|56178|56179|56180|56181|56183|56187|56189|56190|56191|56193|56195|56196|56197|56199|56200|56201|56202|56205|56207|56209|56211|56214|56215|56218|56221|56222|56224|56228|56230|56231|56233|56235|56237|56239|56240|56243|56248|56251|56255|56258|56261|56262|56263|56264|56265|56270|56271|56275|56276|56281|56282|56285|56291|56292|56298|56300|56301|56302|56307|56315|56316|56317|56320|56321|56323|56324|56328|56330|56331|56333|56335|56342|56343|56344|56345|56347|56349|56350|56352|56353|56356|56359|56362|56364|56365|56366|56367|56370|56372|56373|56374|56375|56378|56381|56383|56387|56388|56389|56390|56392|56393|56394|56395|56396|56401|56405|56406|56408|56412|56413|56415|56418|56420|56421|56423|56425|56428|56430|56433|56436|56439|56440|56441|56442|56451|56454|56455|56457|56458|56459|56460|56462|56463|56464|56467|56469|56470|56471|56472|56473|56474|56477|56481|56482|56483|56485|56487|56494|56495|56496|56497|56498|56499|56500|56503|56504|56508|56512|56513|56514|56515|56516|56518|56520|56521|56524|56526|56530|56532|56533|56535|56537|56538|56539|56540|56542|56544|56545|56547|56549|56555|56557|56558|56559|56560|56564|56567|56570|56572|56574|56575|56576|56577|56578|56579|56580|56581|56582|56583|56584|56585|56586|56589|56592|56593|56594|56595|56596|56597|56600|56604|56606|56608|56610|56615|56616|56619|56620|56621|56624|56625|56628|56629|56631|56633|56634|56637|56639|56640|56641|56643|56645|56647|56648|56649|56652|56653|56658|56661|56665|56667|56668|56671|56672|56674|56675|56676|56677|56678|56679|56680|56682|56683|56684|56685|56686|56687|56689|56691|56693|56694|56696|56700|56701|56703|56705|56706|56708|56709|56710|56711|56712|56714|56716|56717|56718|56719|56722|56723|56725|56730|56731|56732|56735|56736|56737|56738|56742|56743|56746|56750|56751|56752|56753|56754|56755|56758|56759|56760|56762|56764|56766|56767|56768|56769|56773|56774|56775|56777|56784|56785|56786|56787|56788|56789|56790|56792|56793|56794|56797|56798|56800|56802|56803|56804|56805|56806|56807|56809|56810|56811|56812|56814|56816|56819|56822|56823|56825|56826|56827|56829|56831|56833|56834|56838|56839|56841|56845|56847|56848|56849|56851|56853|56854|56855|56856|56857|56858|56863|56864|56865|56866|56867|56868|56870|56871|56872|56873|56874|56875|56876|56878|56880|56881|56882|56884|56886|56887|56956|102168|102169|102170|102172|102183|102185|102188|102190|102192|102193|102194|102195|102200|102203|102206|102207|102208|102210|102212|102214|102215|102218|102219|102221|136109|136116|136120|136121|136126|136128|136129|136133|136134|136354|136355|136356|136357|136358|136359|136360|141478|141479|141490|141492|141493|141494|141501|141502|141509|141510|141515|141520|141523|141524|141526|141530|141534|141539|141542|141544|165601|172606|172609|172615|172621|172638|172644|172647|172652|172657|172665|172668|172677|172683|172691|172697|172698|172699|172700|172704|172717|172729|172734|172738|172800|172808|172813|172816|172820|172823|172829|172833|172838|172840|172841|172849|172850|172852|172854|172872|172877|172878|172879|172942|172944|172945|172964|172971|172973|172976|172981|172982|172997|172998|172999|173003|173008|173009|173015|173031|173035|173043|173044|173047|173049|173061|173068|173073|173074|173079|173080|173090|173102|173104|173107|173114|173121|173136|173137|173144|173147|173152|173158|173163|173166|173167|173169|173172|173176|173192|173193|173212|173213|173218|173221|173225|173229|173234|173240|173243|173246|173247|173248|173252|173301|173311|173313|173316|173321|173328|173329|173334|173342|173344|173349|173351|173354|173356|173357|173359|173361|173364|173372|173381|173394|173443|173444|173448|173452|173453|173463|173467|173478|173482|173483|173486|173487|173593|173598|173599|173600|173618|173624|173626|173720|173728|173728|173864|173867|177073|177335|177338|178113|178124|178128|178486|188939|189407|189409|189411|189415|189423|189437|189446|189451|189454|189459|189464|189467|189469|189476|189483|189486|189489|189491|189493|189498|189499|189503|189507|189514|189524|189535|189539|189541|189553|189566|189573|189578|189582|189588|189591|189594|189597|189599|189601|189619|189629|189630|189655|189661|189665|189666|189673|189686|189687|189746|189756|189760|189763|189764|189769|189770|191743|192712|192797|192869|192952|192957|193004|193082|193084|193217|193221|193226|193229|193231|193237|193241|193255|193357|193804|193962|194739|195117|195118|195137|195775|196130|196340|196400|198697|198702|198703|198733|198744|198753|198754|198768|198769|198772|198790|198791|198806|198811|198813|198817|198819|198827|198832|198838|198839|198852|198869|198881|198881|198888|198900|198909|198912|198924|198966|198969|198988|199000|199024|199029|199098|199110|199111|199112|199114|199126|199130|199139|199143|199149|199157|199174|199184|199191|199192|199203|199203|199212|199229|199233|199237|199238|199249|199264|199265|199266|199302|199310|199322|199334|199361|199365|199374|199407|199409|199432|199439|199441|199449|199474|199490|199492|199501|199512|199513|199524|199526|199539|199543|199556|199563|199578|199580|199674|199707|199712|199716|199753|199759|199764|199773|215231|224987|226892|228556|228579|228580|228584|228594|228595|228637|228640|228644|228646|228651|228656|228660|228662|228677|228681|228690|228695|228699|228725|228729|228742|228744|228746|228754|228761|228762|228779|228784|228786|228787|228789|228797|228811|228812|228816|228822|228885|228907|238389|238393|238420|238422|238441|238464|238479|238524|238547|238559|250420|258049|258054|258060|258080|258101|258111|258121|258122|258130|258137|258157|258158|258165|266024|266256|266423|266653|266666|266764|266857|266892|266899|267023|267084|267093|267127|267687|267725|267868|267951|267961|268239|268329|268531|268680|268795|268915|269229|269544|269646|271221|271856|272181|272182|272756|272908|273378|273761|274309|274709|274951|274956|283197|283198|283200|283201|283203|283204|283211|283212|283220|283221|283222|283223|283225|283228|283229|283232|283233|283235|283236|283240|283244|283249|283250|283251|283252|283253|283255|283256|283262|283263|283269|283270|283271|283274|283275|283277|283278|283294|283302|283303|283304|283309|283320|283321|283327|283328|283329|283332|283341|283343|283344|283346|283348|283349|283358|283361|283371|283374|283375|283376|283378|283379|283381|283389|283390|283394|283395|283401|283404|283405|283408|283411|283417|283418|283420|283424|283425|283427|283430|283432|283435|283439|283905|283908|283910|283911|283912|283914|283915|283923|283924|283925|283930|283931|283933|283935|283936|283941|283942|283947|283956|283957|283959|283961|283966|283969|283975|283976|283990|283991|283994|283995|283996|283997|283998|283999|284002|284006|284012|284020|284021|284023|284024|284027|284034|284036|284037|284044|284045|284046|284048|284051|284052|284053|284055|284056|284061|284062|284064|284065|284067|284068|284069|284075|284076|284082|284090|284091|284105|284106|284107|284109|284110|284111|284114|285677|285678|285679|285683|285684|285689|285691|285692|285693|285702|285704|285705|285706|285708|285715|285724|285729|285735|285737|285739|285740|285747|285752|285767|285769|285770|285773|285774|285776|285790|285793|285794|285814|285818|285825|285830|285831|285834|285840|285841|285843|285844|285851|285853|285855|285856|285859|285860|285861|285878|285888|285889|285892|285911|285912|285913|285920|285923|285924|285926|285938|285963|285976|285977|285981|285986|285987|285988|285990|285991|285993|285998|286000|286001|286008|286009|286010|286011|286014|286015|286016|286073|286074|286082|286085|286086|286091|286093|286099|286100|286101|286102|286105|286106|286108|286110|286111|286112|286115|286131|286132|286136|286138|286141|286145|286146|286150|286151|286152|286157|286158|286159|286167|286175|286178|286183|286184|286186|286187|286191|286195|286196|286197|286201|286202|286205|286207|286208|286209|286210|286239|286240|286244|286259|286263|286264|286266|286267|286275|286287|286290|286294|286295|286304|286305|286311|286316|286317|286318|286323|286324|286325|286333|286341|286342|286361|286376|286386|286387|286408|365857|366029|366059|366081|366102|366108|366113|366125|366433|366550|366591|391538|391541|391552|391580|391620|391690|391734|391800|391883|391972|391983|391994|392069|392178|392201|392223|392454|427953|434002|440575|440598|440625|443080|449343|449442|449466|449502|449511|449518|449526|449538|449578|449580|449604|449615|449649|449740|449795|449812|449813|449818|449819|449820|449898|449959|450028|450032|450033|450047|450058|450059|450153|481617|488370|488408|488433|488434|488441|488554|490965|491061|492034|492157|492980|492987|493629|496635|498948|499088|499096|499183|499219|499276|499294|499299|499301|499315|499347|499565|499629|499648|499709|509270|509350|516799|516947|516954|516976|517004|517021|517055|517144|517290|517300|517306|517341|517421|517460|517586|517605|557773|559003|559430|576600|576601|576602|576621|584002|585477|587073|608941|608944|614078|614848|629146|655182|655277|655296|655401|679387|685934|685979|686006|686009|686018|686046|690915|690981|697189|719445|746985|747001|794943|795006|859071|881722|881723|881724|881725|881726|881727|881728|881729|881730|881731|881732|881733|881734|881735|881736|881737|881738|881739|881740|881741|881742|881743|881744|881745|881746|881747|881748|881749|881750|881751|881752|881753|881754|881755|881756|881757|881758|881759|881760|881761|881762|881763|881764|881765|881766|881767|881768|881769|881770|881771|881772|881773|881774|881775|881776|881777|881778|881779|881780|881781|881782|881783|881784|881785|881786|881787|881788|881789|881790|881791|881792|881793|881794|881795|881796|881797|881798|881799|881800|881801|881802|881803|881804|881805|881806|881807|881808|881809|881810|881811|881812|881813|881814|881815|881816|881817|881818|881819|881820|881821|881822|881823|881824|881825|881826|881827|881828|881829|881830|881831|881832|881833|881834|881835|881836|881837|881838|881839|881840|881841|881842|881843|881844|881845|881846|881847|881848|881849|881850|881851|881852|881853|881854|881855|881856|881857|881858|881859|881860|881861|881862|881863|881864|881865|881866|881867|881868|881869|881870|881871|881872|881873|881874|881875|881876|881877|881878|881879|881880|881881|881882|881883|881884|881885|881886|881887|881888|881889|881890|881891|881892|881893|881894|881895|881896|881897|881898|881899|881900|881901|881902|881903|881904|881905|881906|881907|881908|881909|881910|881911|881912|881913|881914|881915|881916|881917|881918|881919|881920|881921|881922|881923|881924|882859|882860|882861|882862|882863|882864|882865|882866|882867|882868|882869|882870|882871|882872|882873|882874|882875|882876|882877|882878|882879|882987|882988|963072|970725", + "text": "Myopathy, myofibrillar, 9, with early respiratory failure" + }, + { + "baseId": "27698|27699|27700|55739|55741|55742|55743|55744|55745|55746|55747|55750|55751|55752|55753|55755|55756|55757|55759|55760|55762|55763|55764|55768|55771|55772|55777|55778|55779|55780|55782|55783|55784|55786|55787|55788|55790|55793|55794|55796|55798|55800|55803|55806|55808|55809|55810|55811|55813|55814|55816|55818|55819|55820|55821|55822|55823|55826|55829|55831|55832|55835|55836|55837|55840|55841|55842|55844|55845|55846|55847|55848|55849|55850|55852|55853|55855|55858|55859|55860|55863|55864|55867|55868|55870|55872|55873|55875|55876|55877|55878|55879|55880|55881|55882|55883|55884|55886|55887|55889|55890|55891|55893|55895|55896|55898|55899|55901|55904|55906|55907|55908|55910|55912|55915|55921|55923|55924|55927|55928|55929|55931|55933|55934|55935|55936|55938|55939|55940|55941|55942|55943|55944|55945|55949|55950|55951|55952|55954|55957|55958|55960|55964|55970|55971|55973|55975|55977|55979|55982|55983|55984|55985|55987|55988|55990|55991|55993|55995|55996|55998|55999|56000|56002|56003|56004|56006|56009|56013|56015|56016|56017|56018|56022|56023|56024|56026|56028|56029|56031|56032|56033|56034|56036|56038|56039|56040|56041|56043|56045|56047|56048|56049|56050|56051|56052|56053|56055|56056|56059|56060|56066|56067|56068|56069|56072|56074|56075|56076|56079|56080|56082|56085|56087|56088|56093|56094|56095|56096|56099|56100|56101|56103|56105|56108|56111|56113|56114|56115|56116|56117|56118|56119|56120|56124|56128|56130|56133|56134|56135|56136|56137|56138|56143|56145|56147|56148|56150|56152|56153|56155|56156|56158|56160|56164|56165|56166|56171|56172|56173|56174|56175|56176|56178|56179|56180|56181|56183|56187|56189|56190|56191|56193|56195|56196|56197|56199|56200|56201|56202|56205|56207|56209|56211|56214|56215|56218|56221|56222|56224|56228|56230|56231|56233|56235|56237|56239|56240|56243|56248|56251|56255|56258|56261|56262|56263|56264|56265|56270|56271|56275|56276|56281|56282|56285|56291|56292|56298|56300|56301|56302|56307|56315|56316|56317|56320|56321|56322|56323|56324|56328|56330|56331|56333|56335|56342|56343|56344|56345|56347|56349|56350|56352|56353|56356|56359|56362|56364|56365|56366|56367|56370|56372|56373|56374|56375|56378|56381|56383|56387|56388|56389|56390|56392|56393|56394|56395|56396|56401|56405|56406|56408|56412|56413|56415|56418|56420|56421|56423|56425|56428|56430|56433|56436|56439|56440|56441|56442|56451|56454|56455|56457|56458|56459|56460|56462|56463|56464|56467|56469|56470|56471|56472|56473|56474|56477|56481|56482|56483|56485|56487|56494|56495|56496|56497|56498|56499|56500|56503|56504|56508|56512|56513|56514|56515|56516|56518|56520|56521|56524|56526|56530|56532|56533|56535|56537|56538|56539|56540|56542|56544|56545|56547|56549|56555|56557|56558|56559|56560|56564|56567|56570|56572|56574|56575|56576|56577|56578|56579|56580|56581|56582|56583|56584|56585|56586|56589|56592|56593|56594|56595|56596|56597|56600|56604|56606|56608|56610|56615|56616|56619|56620|56621|56624|56625|56628|56629|56631|56633|56634|56637|56639|56640|56641|56643|56645|56647|56648|56649|56652|56653|56658|56661|56665|56667|56668|56671|56672|56674|56675|56676|56677|56678|56679|56680|56682|56683|56684|56685|56686|56687|56689|56691|56693|56694|56696|56700|56701|56703|56705|56706|56708|56709|56710|56711|56712|56714|56716|56717|56718|56719|56722|56723|56725|56730|56731|56732|56735|56736|56737|56738|56742|56743|56746|56750|56751|56752|56753|56754|56755|56758|56759|56760|56762|56764|56766|56767|56768|56769|56773|56774|56775|56777|56784|56785|56786|56787|56788|56789|56790|56792|56793|56794|56797|56798|56800|56802|56803|56804|56805|56806|56807|56809|56810|56811|56812|56814|56816|56819|56822|56823|56825|56826|56827|56829|56831|56833|56834|56838|56839|56841|56845|56847|56848|56849|56851|56853|56854|56855|56856|56857|56858|56863|56864|56865|56866|56867|56868|56870|56871|56872|56873|56874|56875|56876|56878|56880|56881|56882|56884|56886|56887|56956|102168|102169|102170|102172|102183|102185|102188|102190|102192|102193|102194|102195|102200|102203|102206|102207|102208|102210|102212|102214|102215|102218|102219|102221|136109|136116|136120|136121|136126|136128|136129|136133|136134|136358|141478|141479|141490|141492|141493|141494|141501|141502|141509|141510|141515|141520|141523|141524|141526|141530|141534|141539|141542|141544|165601|172606|172609|172615|172621|172638|172644|172647|172652|172657|172665|172668|172677|172683|172691|172697|172698|172699|172700|172704|172717|172729|172734|172738|172800|172808|172813|172816|172820|172823|172829|172833|172838|172840|172841|172849|172850|172852|172854|172872|172877|172878|172879|172942|172944|172945|172964|172971|172973|172976|172981|172982|172997|172998|172999|173003|173008|173009|173015|173031|173035|173043|173044|173047|173049|173061|173068|173073|173074|173079|173080|173090|173102|173104|173107|173114|173121|173136|173137|173144|173147|173152|173158|173163|173166|173167|173169|173172|173176|173192|173193|173212|173213|173218|173221|173225|173229|173234|173240|173243|173246|173247|173248|173252|173301|173311|173313|173316|173321|173328|173329|173334|173342|173344|173349|173351|173354|173356|173357|173359|173361|173364|173372|173381|173394|173443|173444|173448|173452|173453|173463|173467|173478|173482|173483|173486|173487|173593|173598|173599|173600|173618|173624|173626|173720|173728|173864|173867|177073|177335|177338|178113|178124|178128|178486|188939|189407|189409|189411|189415|189423|189437|189446|189451|189454|189459|189464|189467|189469|189476|189483|189486|189489|189491|189493|189498|189499|189503|189507|189514|189524|189535|189539|189541|189553|189566|189573|189578|189582|189588|189591|189594|189597|189599|189601|189619|189629|189630|189655|189661|189665|189666|189673|189686|189687|189746|189756|189760|189763|189764|189769|189770|191743|192712|192797|192869|192952|192957|193004|193082|193084|193217|193221|193226|193229|193231|193237|193241|193255|193357|193804|193962|194739|195117|195118|195137|195775|196130|196340|196400|198697|198702|198703|198733|198744|198753|198754|198768|198769|198772|198790|198791|198806|198811|198813|198817|198819|198827|198832|198838|198839|198852|198869|198881|198888|198900|198909|198912|198924|198966|198969|198988|199000|199024|199029|199098|199110|199111|199112|199114|199126|199130|199139|199143|199149|199157|199174|199184|199191|199192|199203|199203|199212|199229|199233|199237|199238|199249|199264|199265|199266|199302|199310|199322|199334|199361|199365|199374|199407|199409|199432|199439|199441|199449|199474|199490|199492|199501|199512|199513|199524|199526|199539|199543|199556|199563|199578|199580|199674|199707|199712|199716|199753|199759|199764|199773|215231|226892|228556|228579|228580|228584|228594|228595|228637|228640|228644|228646|228651|228656|228660|228662|228677|228681|228690|228695|228699|228725|228729|228742|228744|228746|228754|228761|228762|228779|228784|228786|228787|228789|228797|228811|228812|228816|228822|228885|228907|238389|238393|238420|238422|238441|238464|238479|238514|238524|238547|238559|250420|258049|258054|258060|258080|258101|258111|258121|258122|258130|258137|258157|258158|258165|266024|266256|266423|266653|266666|266857|266892|266899|267023|267084|267093|267127|267687|267725|267868|267951|267961|268239|268329|268531|268680|268795|268915|269229|269544|269646|271221|271856|272181|272182|272756|272908|273378|273761|274309|274709|274951|274956|283197|283198|283200|283201|283203|283204|283211|283212|283220|283221|283222|283223|283225|283228|283229|283232|283233|283235|283236|283240|283244|283249|283250|283251|283252|283253|283255|283256|283262|283263|283269|283270|283271|283274|283275|283277|283278|283294|283302|283303|283304|283309|283320|283321|283327|283328|283329|283332|283341|283343|283344|283346|283348|283349|283358|283361|283371|283374|283375|283376|283378|283379|283381|283389|283390|283394|283395|283401|283404|283405|283408|283411|283417|283418|283420|283424|283425|283427|283430|283432|283435|283439|283905|283908|283910|283911|283912|283914|283915|283923|283924|283925|283930|283931|283933|283935|283936|283941|283942|283947|283956|283957|283959|283961|283966|283969|283975|283976|283990|283991|283994|283995|283996|283997|283998|283999|284002|284006|284012|284020|284021|284023|284024|284027|284034|284036|284037|284044|284045|284046|284048|284051|284052|284053|284055|284056|284061|284062|284064|284065|284067|284068|284069|284075|284076|284082|284090|284091|284105|284106|284107|284109|284110|284111|284114|285677|285678|285679|285683|285684|285689|285691|285692|285693|285702|285704|285705|285706|285708|285715|285724|285729|285735|285737|285739|285740|285747|285752|285767|285769|285770|285773|285774|285776|285790|285793|285794|285814|285818|285825|285830|285831|285834|285840|285841|285843|285844|285851|285853|285855|285856|285859|285860|285861|285878|285888|285889|285892|285911|285912|285913|285920|285923|285924|285926|285938|285963|285976|285977|285981|285986|285987|285988|285990|285991|285993|285998|286000|286001|286008|286009|286010|286011|286014|286015|286016|286073|286074|286082|286085|286086|286091|286093|286099|286100|286101|286102|286105|286106|286108|286110|286111|286112|286115|286131|286132|286136|286138|286141|286145|286146|286150|286151|286152|286157|286158|286159|286167|286175|286178|286183|286184|286186|286187|286191|286195|286196|286197|286201|286202|286205|286207|286208|286209|286210|286239|286240|286244|286259|286263|286264|286266|286267|286275|286287|286290|286294|286295|286304|286305|286311|286316|286317|286318|286323|286324|286325|286333|286341|286342|286361|286376|286386|286387|286408|365857|366029|366059|366081|366102|366108|366113|366125|366433|366550|366591|391538|391541|391552|391580|391620|391690|391724|391734|391800|391883|391910|391972|391983|391994|392069|392158|392178|392201|392223|392454|425444|427953|434002|440575|440598|440625|443080|449343|449442|449466|449502|449511|449518|449526|449538|449578|449580|449604|449615|449649|449740|449795|449812|449813|449818|449819|449820|449898|449959|450028|450032|450033|450047|450058|450059|450153|488370|488408|488433|488434|488441|488554|490965|491061|492034|492157|492980|492987|493629|496635|498948|499088|499096|499183|499219|499276|499294|499299|499301|499315|499347|499565|499629|499648|499709|509270|509350|513517|513519|516799|516947|516954|516976|517004|517021|517055|517144|517290|517300|517306|517341|517421|517434|517460|517586|517605|557773|559003|559430|576600|576601|576602|576621|578395|584002|585477|587073|610409|610585|614848|629146|653913|653914|655182|655277|655296|655401|679387|685934|685979|686006|686009|686018|686046|690915|690981|697189|719445|746985|747001|794943|795006|859071|881722|881723|881724|881725|881726|881727|881728|881729|881730|881731|881732|881733|881734|881735|881736|881737|881738|881739|881740|881741|881742|881743|881744|881745|881746|881747|881748|881749|881750|881751|881752|881753|881754|881755|881756|881757|881758|881759|881760|881761|881762|881763|881764|881765|881766|881767|881768|881769|881770|881771|881772|881773|881774|881775|881776|881777|881778|881779|881780|881781|881782|881783|881784|881785|881786|881787|881788|881789|881790|881791|881792|881793|881794|881795|881796|881797|881798|881799|881800|881801|881802|881803|881804|881805|881806|881807|881808|881809|881810|881811|881812|881813|881814|881815|881816|881817|881818|881819|881820|881821|881822|881823|881824|881825|881826|881827|881828|881829|881830|881831|881832|881833|881834|881835|881836|881837|881838|881839|881840|881841|881842|881843|881844|881845|881846|881847|881848|881849|881850|881851|881852|881853|881854|881855|881856|881857|881858|881859|881860|881861|881862|881863|881864|881865|881866|881867|881868|881869|881870|881871|881872|881873|881874|881875|881876|881877|881878|881879|881880|881881|881882|881883|881884|881885|881886|881887|881888|881889|881890|881891|881892|881893|881894|881895|881896|881897|881898|881899|881900|881901|881902|881903|881904|881905|881906|881907|881908|881909|881910|881911|881912|881913|881914|881915|881916|881917|881918|881919|881920|881921|881922|881923|881924|882859|882860|882861|882862|882863|882864|882865|882866|882867|882868|882869|882870|882871|882872|882873|882874|882875|882876|882877|882878|882879|882987|882988|974481|974482|980906", + "text": "Myopathy, early-onset, with fatal cardiomyopathy" + }, + { + "baseId": "27701|27702|27703|27705|27706|27707|27708|27711|27713|49466|49469|49804|49805|49806|49807|49808|49809|49810|49811|49812|49813|49814|49815|49816|49817|49818|49819|49820|138831|187680|187681|187682|187683|187684|242957|242958|242959|242960|242961|242962|242963|242964|264800|329600|329602|329604|329606|329607|329614|339838|339843|339850|339862|339878|339888|339896|339905|345603|345607|345611|345612|345613|345614|345615|345621|345622|346931|346932|346943|346949|346958|346959|346973|376529|376530|402488|402491|402496|402497|402498|402500|402957|402959|402963|402969|403062|403066|403072|403073|403084|422190|426726|432415|467356|467358|467360|467365|467370|467378|467381|467391|468296|468298|468302|468736|468737|468748|468750|468752|468753|468758|468759|468766|468979|468983|468985|468995|468998|469000|479188|479267|479276|487763|494047|506162|514732|531712|531713|531719|531720|531722|531728|531731|531775|531776|531777|531779|531783|531786|531830|531832|531835|531838|531841|531845|531848|532076|532080|532082|532084|532085|532094|568661|569677|569679|569682|569685|570839|571564|571565|571567|572175|572187|572193|574279|574607|574608|574609|646603|646604|646605|646606|646607|646608|646609|646610|646611|646612|646613|646614|646615|646616|646617|646618|646619|646620|646621|646622|646623|646624|646625|646626|646627|646628|646629|646630|646631|646632|646633|652836|653018|685437|688817|688819|690184|694169|695768|704328|715649|727379|756084|771778|788140|814419|814420|814424|814425|814433|814435|814439|821151|821152|821153|822139|846119|846120|846121|846122|846123|846124|846125|846126|846127|846128|846129|846130|846131|846132|846133|846134|852789|878266|878267|878268|878269|878270|878271|878272|878273|878274|878275|878276|878277|878278|878279|878280|878281|878282|878283|878284|878285|878286|878287|878288|878289|880569|880570|928508|928509|928510|928511|928512|928513|928514|928515|938198|938199|938200|938201|940434|950252|950253|950254|950255|950256|958285|958286|958287|960239|960240|960895|960896|964493|980849", + "text": "Carney complex, type 1" + }, + { + "baseId": "27704|426726", + "text": "Familial atrial myxoma" + }, + { + "baseId": "27709|27710|27714|426726", + "text": "Pigmented nodular adrenocortical disease, primary, 1" + }, + { + "baseId": "27712|30942|30943", + "text": "Adrenocortical tumor, somatic" + }, + { + "baseId": "27713|27714|49468|49469|49815|176495|329605|339854|339860|339863|339865|339867|339871|339887|339895|339904|345597|346936|346948|346960|346961|346964|353452|376530", + "text": "Carney complex" + }, + { + "baseId": "27715|27716|27717|27718|27719|257609|273658|337914|337916|337917|337918|337923|337924|337927|337930|337934|337939|337943|337945|337955|337956|337957|337958|347527|347532|347536|347541|347543|347544|347548|347549|347552|347554|347570|347577|347581|347585|347589|347590|347595|347596|351429|351432|351433|351436|351437|351440|351441|351444|351445|351448|351449|351452|351453|351458|351459|351462|351463|351468|351469|351472|351473|351476|351480|352436|352437|352438|352439|352440|352442|352443|352474|352475|352478|352479|352480|352481|352482|352483|352484|352485|891149|891150|891151|891152|891153|891154|891155|891156|891157|891158|891159|891160|891161|891162|891163|891164|891165|891166|891167|891168|891169|891170|891171|891172|891173|891174|891175|891176|891177|919950", + "text": "Sorsby fundus dystrophy" + }, + { + "baseId": "27720|27721|676987|676988", + "text": "Hypothyroidism, congenital, nongoitrous, 7" + }, + { + "baseId": "27723|27724|27725|27726|27727|249367|275959|276298|427630|761093|862011|964125", + "text": "Secondary hypothyroidism" + }, + { + "baseId": "27728|27729|27730|27731|27732|27733|27734|27735|27736|27737|27738|27739|27740|27741|27742|27743|27744|27745|205157|214869|227318|253043|253045|253046|253048|253050|253051|253052|253053|253054|253055|253056|253057|253058|253059|270639|304276|304281|304284|304294|304295|304296|304298|304299|304300|304305|304306|304307|304308|304313|304318|304319|304320|304321|304326|304329|304330|304340|304342|304343|304350|304357|304358|307931|307933|307934|307939|307945|307956|307962|307968|307978|307979|307980|307983|307984|307994|307995|308005|308006|308054|308055|308056|308068|308098|308103|308105|308107|308108|313044|313055|313056|313057|313059|313061|313062|313063|313064|313065|313066|313070|313073|313087|313091|313092|313093|313095|313096|313097|313098|313101|313103|313104|313105|313106|313107|313111|313112|313118|313121|313127|313129|313130|313132|313134|313144|313162|313169|313170|313175|313177|313185|313186|313187|313188|363816|428763|428764|428764|428765|428766|428767|536111|620287|620288|620289|620290|620291|620292|620293|700398|700399|700400|700402|700403|700404|700406|700408|700409|700410|711289|711290|711291|711292|711293|711294|711295|711298|722852|722854|722855|722856|722859|722861|736436|736439|736443|736447|736448|736449|736452|736455|736459|736461|744441|744449|750912|750914|750920|750927|766550|775390|779392|790781|790782|790783|796123|898914|898915|898916|898917|898918|898919|898920|898921|898922|898923|898924|898925|898926|898927|898928|898929|898930|898931|898932|898933|898934|898935|898936|898937|898938|898939|898940|898941|898942|898943|898944|898945|898946|898947|898948|898949|898950|898951|898952|898953|898954|898955|898956|898957|898958|898959|898960|898961|898962|898963|898964|898965|898966|898967|898968|898969|898970|898971|898972|898973|898974|898975|898976|898977|898978|898979|898980|898981|898982|898983|898984|898985|898986|898987|898988|898989|900444|900445|900446|900447|900448|900449|900450|900451|903695|906175", + "text": "Iodotyrosyl coupling defect" + }, + { + "baseId": "27729|240392|488076|610456|708658|739193|800373|800374|800375|800376|800379|800381|800385", + "text": "Primary Ovarian Insufficiency" + }, + { + "baseId": "27746|53829|189921|227349|404811|512859", + "text": "Dilated cardiomyopathy 1T" + }, + { + "baseId": "27747|27748|27749|27750|47574|47575|47576|47577|47578|47579|47580|47581|47581|47582|47583|47584|47585|47586|47587|47588|47589|47590|47591|47592|47593|47593|47594|47595|47596|47597|47598|47599|47600|47601|48015|141363|141364|141366|141367|141368|141369|141370|141371|211730|211735|211736|227379|260120|326054|326056|326060|326065|326071|326072|326073|326077|326078|326088|335742|335749|335753|335754|335756|335762|335763|342075|342076|342078|342088|342089|342092|342093|342096|342100|342101|342104|342105|343610|343614|343616|343620|343621|343622|343623|343625|343626|445594|682364|682365|682366|682367|875734|875735|875736|875737|875738|875739|875740|875741|875742|875743|875744|875745|875746|875747|875748|875749|875750|875751|875752|875753|875754|875755|875756|875757|875758|875759|875760|875761|875762|875763|875764|875765|875766|875767|875768|875769|876702|876703|961242|961243|961244", + "text": "Mitochondrial DNA depletion syndrome 2" + }, + { + "baseId": "27751|38860|48189", + "text": "Platelet-type bleeding disorder 13, susceptibility to" + }, + { + "baseId": "27752|32176", + "text": "Lumbar disc herniation, susceptibility to" + }, + { + "baseId": "27753|27754|27755|27756|38858|143163|614472", + "text": "Thrombophilia due to thrombomodulin defect" + }, + { + "baseId": "27753|27757|27758|27759|143163|334888|334892|334895|334897|334901|334904|334910|334913|334918|334922|334925|344760|344762|344763|344766|344773|344778|344780|344782|344783|344784|349720|349723|349724|349725|349726|349727|349730|349733|349734|349737|349739|350715|350718|350719|350722|350723|350727|350729|350732|350734|350736|350738|350740|350741|350743|350745|432342|614472|742296|797961|885868|885869|885870|885871|885872|885873|885874|885875|885876|885877|885878|885879|885880|885881|885882|885883|885884|885885|885886|885887|885888|885889|885890|885891|885892|885893", + "text": "Atypical hemolytic-uremic syndrome 6" + }, + { + "baseId": "27760|27761|27762|27764|27765|27766|299637|302255|306639|306896|306905|306954", + "text": "Thiopurine methyltransferase deficiency" + }, + { + "baseId": "27767", + "text": "Forebrain defects" + }, + { + "baseId": "27768|27769|27770|27771|27772|27775|27776|27777|38854|45601|45602|45605|45606|45607|45608|47713|47725|47727|47731|47732|173541|173543|173678|207165|229237|229238|229239|229240|239625|239629|239631|239634|239640|239641|239643|239645|239663|239675|251613|251614|251640|263518|295008|295009|295015|295110|295271|296781|296915|296945|300499|300506|300507|300508|300575|300731|300771|300775|300921|395064|395070|428346|439827|439829|439830|454179|454310|454390|454710|455105|455107|520445|521005|549224|564457|632878|633019|804862|804863|830021|892690|892691|892692|892693|892694|892695|892732|892816|892865|892866|892867|892868|892869", + "text": "Pulmonary fibrosis and/or bone marrow failure, telomere-related, 1" + }, + { + "baseId": "27768|27768|27769|27769|27770|27772|27774|27775|38854|38855|38856|45603|45604|45605|45608|47713|47713|47714|47717|47718|47724|47725|47727|47727|47728|47730|47731|47731|47732|173541|173541|173543|173543|173678|173678|173679|173681|207153|207165|207165|227598|229234|229235|229237|229237|229238|229238|229239|229239|229240|229240|239624|239625|239625|239626|239627|239628|239629|239629|239630|239631|239631|239633|239634|239634|239635|239638|239639|239640|239640|239641|239641|239642|239643|239643|239644|239645|239645|239647|239663|239663|239664|239665|239666|239667|239668|239669|239670|239671|239672|239673|239674|239675|239675|239676|239677|251613|251613|251614|251614|251639|251640|251640|251666|259808|263518|263518|273563|295008|295009|295015|295110|295110|295271|295271|296781|296915|296915|296945|300499|300506|300507|300507|300508|300508|300575|300731|300731|300771|300775|300775|300921|300921|394497|394503|394506|394522|394531|394536|394537|394544|394546|394554|394556|394557|394560|394582|394584|394587|394588|394589|394591|394595|394599|394629|394631|394635|394638|394641|394651|394654|394657|394720|394731|394739|394742|394746|394755|394757|394761|394762|394764|394767|394768|394799|394802|394807|394808|394810|394815|394817|394824|394841|394848|394851|395006|395007|395038|395042|395044|395058|395060|395064|395064|395070|395070|395130|395132|395135|395138|395143|395145|395152|395153|395173|395184|406619|428333|428334|428336|428339|428340|428341|428347|439828|439828|439829|439830|439830|454152|454153|454156|454158|454179|454179|454181|454186|454187|454195|454222|454224|454226|454234|454238|454241|454244|454245|454295|454303|454305|454306|454309|454310|454310|454311|454312|454314|454320|454321|454323|454324|454328|454330|454333|454369|454370|454376|454378|454384|454388|454390|454390|454392|454393|454396|454397|454401|454445|454447|454456|454457|454459|454460|454467|454472|454472|454632|454634|454636|454638|454645|454666|454668|454669|454671|454710|454710|454717|454718|454721|454722|454726|454728|454737|454793|454813|454816|454818|454834|454837|454946|454952|454960|454963|454966|454984|455002|455003|455010|455015|455016|455025|455035|455105|455105|455106|455107|455107|455111|455112|496352|496352|520429|520430|520431|520433|520439|520443|520445|520449|520477|520478|520483|520494|520500|520506|520565|520571|520574|520579|520580|520596|520599|520600|520602|520605|520606|520608|520625|520627|520654|520656|520659|520660|520663|520666|520672|520674|520676|520677|520678|520702|520712|520713|520715|520720|520726|520733|520738|520824|520826|520828|520832|520833|520842|520845|520848|520850|520851|520852|520853|520855|520856|520859|520862|520868|520877|520882|520886|520888|520889|520891|520894|520895|520915|520917|520920|520925|520945|520952|520953|520979|520980|520983|520985|520986|520987|520989|520990|520991|520994|520995|520996|520997|520999|521000|521003|521005|521005|521057|521060|521062|521064|521065|521078|521079|521081|536677|537458|538371|559956|559973|559981|559983|560001|560003|560005|560007|560027|560029|560031|560033|560035|560037|560039|560041|560043|560045|560047|560049|560051|560053|560086|560088|560098|560108|560110|560112|560136|560138|560140|560142|560144|560146|560148|560150|562291|562567|562569|562570|562572|562581|562585|562590|562599|562601|562603|562605|562607|562646|562647|562649|562655|562658|562663|562665|562667|564432|564438|564439|564457|564457|564491|564492|564494|564498|564508|564514|632876|632877|632878|632878|632879|632880|632881|632882|632883|632884|632885|632886|632887|632888|632889|632890|632891|632892|632893|632908|632909|632910|632911|632912|632944|632945|632946|632947|632948|632948|632949|632950|632951|632952|632953|632954|632955|632956|632957|632958|632959|632960|632961|632962|632963|632964|632965|632966|632967|633006|633007|633008|633009|633010|633011|633012|633013|633014|633015|633016|633017|633018|633019|633019|633020|633021|633022|633023|633024|633025|633026|633027|633028|633029|633030|633031|633032|633033|633034|633035|633036|633037|633038|633039|633040|633041|633042|633043|633044|633045|633046|633047|633048|651189|651191|651192|651194|651204|651217|651245|651255|651264|651306|651307|651341|683654|683655|683659|683660|683661|683662|685165|685168|685169|686573|686574|686575|686576|686577|686579|686580|686581|686582|686583|686584|686585|686586|686587|686588|686590|686603|686604|686606|686607|686609|686610|686612|689766|689767|689771|691658|691660|691662|691663|691670|691672|691673|691678|691679|691681|695251|695256|698755|698756|698759|698760|698762|709605|709606|721197|721199|734826|734831|749186|749187|749196|759350|764765|764767|764772|764782|764783|764786|764788|764790|764807|764808|764814|774992|782109|782115|782117|782118|787239|787297|804862|819525|819526|819527|819528|819529|819586|819587|819588|829847|829848|829849|829850|829851|829852|829853|829854|829855|829856|829888|829889|829890|829891|829892|829893|829894|829895|829931|829932|829933|829934|829935|829936|829937|829938|829939|829940|829941|829942|829943|829944|829945|829946|829947|829951|829953|829993|829994|829995|829996|829997|829998|829999|830000|830001|830002|830003|830004|830005|830006|830007|830008|830009|830010|830011|830012|830013|830014|830015|830016|830017|830018|830019|830020|830021|830021|830022|830023|830024|830025|830026|830027|830028|830029|830030|830031|830032|830033|830034|830035|830036|830037|830038|830039|830040|830041|830042|830043|830044|830045|830046|830047|830048|830049|830050|830051|851004|851239|851846|851882|851884|892690|892691|892692|892693|892694|892695|892732|892816|892865|892866|892867|892868|892869|923727|923728|923729|923730|923731|923737|923738|923739|923748|923771|923772|923773|923774|923775|923776|923777|923778|923779|923780|923781|923782|923783|923784|923785|923786|923787|923788|923789|923790|923791|932582|932583|932584|932585|932586|932587|932588|932589|932596|932597|932605|932606|932607|932608|932609|932610|932626|932627|932628|932629|932630|932631|932632|932633|932634|932635|932636|932637|939977|939979|940792|940794|944256|944257|944258|944259|944267|944268|944269|944270|944271|944272|944282|944283|944284|944292|944293|944294|944295|944296|944297|944298|944299|944300|944301|944302|944303|944304|944305|944306|944307|944308|944309|944310|944311|944312|944313|944314|953928|953929|953936|953937|953938|953939|953940|953941|953943|953953|953954|953955|953956|953957|953958|953959|953960|959742|959744|960548|961941|961942|961943|961944|962155", + "text": "Dyskeratosis congenita, autosomal dominant, 2" + }, + { + "baseId": "27769|38855|38856|47714", + "text": "Dyskeratosis congenita, autosomal recessive, 4" + }, + { + "baseId": "27773|28774|28775|38716", + "text": "Coronary artery disease, susceptibility to" + }, + { + "baseId": "27778", + "text": "Human immunodeficiency virus type 1, delayed disease progression with infection by" + }, + { + "baseId": "27779", + "text": "Human immunodeficiency virus type 1, rapid disease progression with infection by" + }, + { + "baseId": "27780|75336|75337|296627|296628|296629|296636|296639|296640|296650|296652|296653|296655|296657|296662|296664|296669|296672|296679|296680|298492|298493|298494|298495|298496|298498|298499|298500|298507|298515|298517|298519|298534|298535|302632|302643|302648|302649|302661|302668|302671|302919|302920|302921|302928|302929|302942|302955|302964|454785|454786|512816|520959|520963|521396|521452|521465|521467|560239|560350|560352|563007|563009|564978|633673|633674|633675|633676|633677|633678|633679|633680|633681|633682|633683|651405|651435|709784|721351|734985|744211|749393|749394|764991|764994|774995|782234|830565|830566|830567|830568|830569|830570|830571|830572|830573|830574|830575|851272|852194|893710|893711|893712|893713|893714|893715|893716|893717|893718|893719|893720|893721|893722|893723|893724|893725|893726|893727|893728|893729|893730|893731|893732|893733|893734|893735|893736|893737|893738|896068|896069|896070|896071|896072|923963|923964|923965|923966|923967|923968|932807|932808|932809|932810|932811|932812|932813|932814|932815|944506|944507|961945", + "text": "Lymphoproliferative syndrome 1" + }, + { + "baseId": "27781|47516|47517|451480|451483|451749|451829|451833|518649|518743|518846|560995|614254|614255|630609|630610|630611|630612|630613|651010|719997|759157|763453|763454|774789|819280|819281|827095|827096|827097|827098|827099|827100|827101|827102|827103|827104|827105|922943|922944|922945|931614|931615|943144|943145|943146|943147|943148|953250|953251|959659|980448", + "text": "Cd8 deficiency, familial" + }, + { + "baseId": "27782|614354|799641|980466", + "text": "Common variable immunodeficiency 6" + }, + { + "baseId": "27783|27784|44470|44471|140393|312516|312519|318476|318478|318493|324593|324594|324596|325307|325314|325317|325319|325320|460900|487495|526014|526423|564448|570331|639739|639740|639741|639742|759838|759842|768222|783875|838023|838024|838025|838026|838027|838028|838029|838030|851427|867085|867086|867087|867088|867089|867090|867091|867092|867093|867094|867095|867096|867097|868606|868607|926136|956399", + "text": "Immunodeficiency 18" + }, + { + "baseId": "27785", + "text": "Immunodeficiency 18, severe combined immunodeficiency variant" + }, + { + "baseId": "27786|27787|44469|178842|312522|318496|318499|324597|324598|325321|325323|325325|408277|461235|525950|526017|526425|526428|639743|639744|639745|639746|639747|639748|759916|768227|768228|768229|820428|838031|838032|838033|838034|838035|838036|838037|867098|867099|868608|926137|935405|947336|956400", + "text": "Immunodeficiency 19" + }, + { + "baseId": "27788|27789|27790|27791|171727|404974|447345|447352|447361|447362|447366|447408|447464|515270|515300|515305|515349|556735|557030|558218|614188|627056|627057|650689|690407|695014|695015|731840|761311|761312|786983|822974|822975|850935|921729|921730|921731|921732|921733|921734|921735|930143|930144|930145|930146|930147|959530|980438", + "text": "Immunodeficiency due to defect in cd3-zeta" + }, + { + "baseId": "27792|27793|106498|312540|312541|312548|312549|318503|318516|324602|324608|324614|325331|325336|325344|325348|460902|460944|461237|525953|525954|526091|526094|564450|565528|567054|639749|639750|639751|639752|639753|639754|639755|787621|838038|838039|852332|867100|867101|867102|867103|867104|867105|867106|867107|867108|867109|926138|935406|940989|956401", + "text": "Immunodeficiency 17" + }, + { + "baseId": "27794|27795", + "text": "Obesity, association with" + }, + { + "baseId": "27809", + "text": "Leigh syndrome due to mitochondrial complex IV deficiency" + }, + { + "baseId": "27809|211361|211368|214997|214999|539019|539184", + "text": "Charcot-Marie-Tooth disease, type 4k" + }, + { + "baseId": "27809|226957|359794|553143", + "text": "Abnormal pyramidal signs" + }, + { + "baseId": "27809|51184|205801|263335|359794|360846|361043|361060|361061|361062|361062|402131|539978|568036|801183|801191|801192", + "text": "Dysarthria" + }, + { + "baseId": "27809|32660|32660|191616|205181|260246|265299|359794|360807|360821|360837|360838|360892|360956|361025|361025|361047|439927|513930|514049|514063|623675|624121|677222|677251|682759|972894", + "text": "Muscle weakness" + }, + { + "baseId": "27810|27811|27812|27813|48740|139739|167463|167463|167464|221191|238787|238788|289810|481373|789114|790237|790238|790239|790240|790241|790242|790243|790244|961837|961838", + "text": "Diarrhea 5, with tufting enteropathy, congenital" + }, + { + "baseId": "27814|27815|139739|167463|238782|238787|250741|250742|961261", + "text": "Hereditary nonpolyposis colorectal cancer type 8" + }, + { + "baseId": "27816", + "text": "Superoxide dismutase, elevated extracellular" + }, + { + "baseId": "27817|27817|27817|27818|27818|27820|27820|27821|27821|27822|27822|27823|27824|27826|27830|27830|27831|27831|33493|33493|33494|33495|38851|38851|38851|45429|45429|45430|45430|48183|50209|50210|53809|53809|53813|138931|150487|150487|151825|152351|152351|152351|152367|152477|152477|152478|152541|152741|171052|171053|171053|172353|172492|172493|181604|181605|181606|181607|181608|181608|181609|181609|181610|181611|181613|181614|181616|181616|181617|181618|181619|181620|181621|181622|181622|181623|181623|181624|181624|181624|181625|181627|181628|194371|196493|196494|221085|225740|232173|232175|232175|232175|232176|232176|232181|232183|232187|238108|238109|238170|238171|238173|238174|238175|238176|238177|238178|238179|238180|238181|238181|238182|238183|238184|238185|238186|238187|238188|238189|238190|238191|238192|238193|238194|248478|249530|277358|278420|358698|358698|358699|358699|358700|358701|358701|358701|390718|390721|390733|390870|390876|390877|390878|390880|390882|390890|390891|390892|390893|390894|390895|390898|390899|390900|390901|390903|390904|390905|390906|390907|390907|390908|390909|390910|390911|390912|390913|390914|390914|390915|390916|390917|390918|390919|390919|390920|390921|390922|390923|390924|390925|390926|390926|390927|390928|390929|390930|390931|390932|390934|390935|390936|390939|390940|390942|404976|404979|404981|404981|420737|420743|420745|420746|420746|420748|420750|420754|420755|432026|432028|432034|432038|432042|432988|442662|442663|442664|442665|446920|446940|447286|447290|447293|447295|447296|447301|447305|447306|447371|447377|447379|447381|447383|447387|447390|447391|447397|447400|447409|447417|447440|447451|447452|447456|447457|447473|447483|447485|447487|447489|447490|447492|447493|447494|447501|447502|447504|447505|447508|447510|447512|447515|447517|447518|447529|447530|472265|472268|472271|472272|472273|472274|472276|472277|472278|472279|472280|472283|472284|472318|472323|472339|513743|514854|514882|515267|515268|515273|515281|515283|515285|515287|515290|515291|515294|515295|515298|515302|515307|515310|515313|515314|515316|515322|515324|515328|515333|515334|515353|515355|515356|515357|515359|515362|515363|515364|515366|515369|515371|515372|515373|515375|539201|556488|556492|556517|556519|556521|556690|556692|556694|556696|556698|556700|556743|556745|556747|556749|556871|557040|557042|557044|557046|557048|557050|557052|557054|557056|557058|558236|558240|558242|558244|558246|558248|558250|575654|627077|627078|627079|627080|627081|627082|627083|627084|627085|627086|627087|627088|627089|627090|627091|627092|627093|627094|627095|627096|627097|627098|627099|627100|627101|627102|627103|627104|627105|627106|627107|627108|627109|627110|627111|627112|627113|627114|627115|627116|627117|627118|627119|627120|650537|650539|650564|650566|650595|650596|650644|650646|650649|650650|657158|690417|690420|690421|731863|745840|745844|758851|761325|761328|761331|761333|806488|806490|806491|806492|806494|806495|806501|818863|818864|818865|818866|818867|818868|818869|818870|822993|822994|822995|822996|822997|822998|822999|823000|823001|823002|823003|823004|823005|823006|823007|823008|823009|823010|823011|850733|850735|850937|858441|921742|921743|921744|921745|921746|921747|921748|921749|921750|921751|921752|921753|921754|921755|921756|930156|930157|930158|930159|930160|930161|930162|930163|930164|930165|930166|930167|930168|940607|940608|940609|941573|941574|941575|941576|941577|941578|941579|941580|952140|952141|952142|952143|952144|952145|952146|959531|959532", + "text": "Paragangliomas 4" + }, + { + "baseId": "27832", + "text": "Coronary heart disease 6" + }, + { + "baseId": "27834|27835", + "text": "ADRENAL INSUFFICIENCY, NR5A1-RELATED" + }, + { + "baseId": "27835|260482|562691", + "text": "46,XX sex reversal 4" + }, + { + "baseId": "27843|27844|27845|27846|27847", + "text": "Premature ovarian failure 7" + }, + { + "baseId": "27849|481458|576086|789989|965357", + "text": "Leukoencephalopathy with dystonia and motor neuropathy" + }, + { + "baseId": "27850|27851", + "text": "Skin/hair/eye pigmentation, variation in, 7" + }, + { + "baseId": "27852|181300|181301", + "text": "Familial progressive hyperpigmentation with or without hypopigmentation" + }, + { + "baseId": "27853|27854|27855|27856|27857|27858|27859|27860|27861|27862|27863|27866|27867|38845|38846|48403|48404|100004|100005|190415|439068|451536|452328|452484|519025|519193|559399|561296|562611|562617|562619|590520|651042|827756|827757|918813|923105|943434|964117|974903|974904|974905|974906|974907|974908|974909|974910|974911|974912|974913|974914|974915|974916|974917|974918|974919|974920|974921|974922|974923|974924|974925|974926|974927|974928|976006", + "text": "Anophthalmia/microphthalmia-esophageal atresia syndrome" + }, + { + "baseId": "27864|27865", + "text": "Optic nerve hypoplasia and abnormalities of the central nervous system" + }, + { + "baseId": "27870|27871|27872|27873|27875|27876|27879|857684", + "text": "Elliptocytosis 3" + }, + { + "baseId": "27874|27876|27877|27878|27880|27881|27882|27890|187086|227359|511038|535255|535256|535257|535258|535259|535260|788957|799777|858569|970998", + "text": "Spherocytosis type 2" + }, + { + "baseId": "27875|27885|27888|27893|27894|27895|27896|27897|27898|27901|27904|237022|249424|249425|249426|249427|249428|249429|249430|249431|249432|249433|249434|249435|249437|249438|249439|249440|249441|249443|249446|249447|249448|249449|249450|249451|249452|249454|249455|249456|249457|249458|249459|249460|249461|249462|249463|249464|249465|249466|249467|249468|249469|249471|249472|276656|276660|276671|276673|276674|276675|276676|276686|276691|276697|276698|276699|276700|276701|276702|276712|276713|276714|276715|276716|276717|276718|276719|276720|276721|276722|276725|276726|276727|276728|276730|276731|276732|276733|276738|276739|276740|276744|276746|276758|276761|276762|276763|276935|276936|276949|276950|276955|276956|276957|276958|276967|276971|276975|276985|276986|276987|276988|276994|276995|276996|276997|277001|277002|277003|277004|277010|277011|277015|277016|277017|277018|277023|277024|277028|277029|277030|277518|277519|277521|277522|277523|277524|277525|277526|277527|277528|277546|277548|277549|277553|277556|277564|277565|277568|277570|277571|277572|277573|277574|277575|277586|277596|277597|277601|277602|277603|277604|277606|277607|277609|277610|277611|277622|277623|277627|277628|277631|277646|277653|277655|277656|277657|277659|277662|277663|277665|277666|277691|277692|277701|277706|277713|277715|277716|277717|277721|277722|277727|277730|277732|277733|277734|277735|277737|277739|277740|277741|277743|277750|277761|364557|535241|535244|552282|553135|609359|609361|609362|609364|696193|718293|745764|745765|777020|789862|789863|789864|794457|799137|862452|862453|862454|862455|862456|862457|862458|862459|862460|862461|862462|862463|862464|862465|862466|862467|862468|862469|862470|862471|862472|862473|862474|862475|862476|862477|862478|862479|862480|862481|862482|862483|862484|862485|862486|862487|862488|862489|862490|862491|862492|862493|862494|862495|862496|862497|862498|862499|862500|862501|865004|865005|865006|865007|865008|865009|865010|865011|865012|865013|865014", + "text": "Hereditary pyropoikilocytosis" + }, + { + "baseId": "27878", + "text": "ANEMIA, PERINATAL HEMOLYTIC, FATAL OR NEAR-FATAL" + }, + { + "baseId": "27883|27884|27886|27887|27888|27889|27890|27890|27891|27892|27893|27894|27895|27896|27898|27899|27900|237022|249424|249425|249426|249427|249428|249429|249430|249431|249432|249433|249434|249435|249437|249438|249439|249440|249441|249443|249446|249447|249448|249449|249450|249451|249452|249454|249455|249456|249457|249458|249459|249460|249461|249462|249463|249464|249465|249466|249467|249468|249469|249471|249472|276656|276660|276674|276675|276676|276697|276698|276699|276700|276701|276702|276712|276713|276714|276715|276716|276717|276718|276719|276720|276721|276722|276725|276727|276728|276730|276731|276732|276733|276738|276739|276740|276744|276746|276758|276761|276762|276935|276936|276956|276957|276958|276967|276971|276975|276985|276986|276987|276988|276994|276995|276996|276997|277001|277002|277003|277010|277011|277015|277016|277017|277018|277023|277024|277028|277029|277030|277519|277523|277524|277525|277527|277546|277549|277553|277556|277564|277565|277568|277570|277571|277572|277573|277574|277575|277586|277596|277597|277601|277602|277603|277606|277607|277609|277622|277628|277631|277646|277655|277656|277657|277659|277662|277663|277665|277666|277691|277692|277701|277706|277713|277715|277716|277717|277721|277722|277733|277734|277735|277737|277739|277740|277741|277743|364557|535241|535244|609359|609361|609362|609364|696193|718293|745764|745765|777020|794457|799137|816434|862452|862453|862454|862455|862456|862457|862458|862459|862460|862461|862462|862463|862464|862465|862466|862467|862468|862469|862470|862471|862472|862473|862474|862475|862476|862477|862478|862479|862480|862481|862482|862483|862484|862485|862486|862487|862488|862489|862490|862491|862492|862493|862494|862495|862496|862497|862498|862499|862500|862501|865004|865005|865006|865007|865008|865009|865010|865011|865012|865013|865014|964132", + "text": "Elliptocytosis 2" + }, + { + "baseId": "27885", + "text": "Spherocytosis, type 3, autosomal recessive" + }, + { + "baseId": "27885|27898|27902|27903|237022|249424|249425|249426|249427|249428|249429|249430|249431|249432|249433|249434|249435|249437|249438|249439|249440|249441|249443|249446|249447|249448|249449|249450|249451|249452|249454|249455|249456|249457|249458|249459|249460|249461|249462|249463|249464|249465|249466|249467|249468|249469|249471|249472|276656|276660|276674|276675|276676|276697|276698|276699|276700|276701|276702|276712|276713|276714|276715|276716|276717|276718|276719|276720|276721|276722|276725|276727|276728|276730|276731|276732|276733|276738|276739|276740|276744|276746|276758|276761|276762|276935|276936|276956|276957|276958|276967|276971|276975|276985|276986|276987|276988|276994|276995|276996|276997|277001|277002|277003|277010|277011|277015|277016|277017|277018|277023|277024|277028|277029|277030|277519|277523|277524|277525|277527|277546|277549|277553|277556|277564|277565|277568|277570|277571|277572|277573|277574|277575|277586|277596|277597|277601|277602|277603|277606|277607|277609|277622|277628|277631|277646|277655|277656|277657|277659|277662|277663|277665|277666|277691|277692|277701|277706|277713|277715|277716|277717|277721|277722|277733|277734|277735|277737|277739|277740|277741|277743|364557|488176|535241|535243|535244|538329|609359|609361|609362|609364|696193|718293|745764|745765|777020|788728|794457|799137|862452|862453|862454|862455|862456|862457|862458|862459|862460|862461|862462|862463|862464|862465|862466|862467|862468|862469|862470|862471|862472|862473|862474|862475|862476|862477|862478|862479|862480|862481|862482|862483|862484|862485|862486|862487|862488|862489|862490|862491|862492|862493|862494|862495|862496|862497|862498|862499|862500|862501|865004|865005|865006|865007|865008|865009|865010|865011|865012|865013|865014|904187|918570|920128|920129", + "text": "Spherocytosis type 3" + }, + { + "baseId": "27895|623741", + "text": "Prenatal anemia" + }, + { + "baseId": "27900", + "text": "Pyropoikilocytosis" + }, + { + "baseId": "27906|44156|142972|143003|143019|168759|168761|168762|168763|168764|168765|168768|168770|168771|168772|168776|168777|168779|168780|168784|168787|168788|168790|168792|168794|194022|202393|202433|202442|202454|370632|372248|421712|428923|428926|442553|459394|486750|563532|565554|612845|613759|614336|621028|625806|626184|653813|789348|790845|917796|919185|919186|919187|920262|946388|964310|964311|964312|964313|964314|964315|964316|970895|970896|975942|976518|983776", + "text": "Early infantile epileptic encephalopathy 5" + }, + { + "baseId": "27907|27908|27910|27911|49111|49113|49125|49134|49135|49148|49154|49167|49172|49176|49178|49186|49192|54510|54515|54517|54520|54524|54529|54541|54548|142932|142939|173525|173668|173668|179029|179037|179037|179038|228963|228965|265889|286235|286237|286238|286245|286265|286272|286277|286285|286289|286291|286291|286296|286297|286298|286986|286987|286991|286992|286993|286997|286998|286999|287014|287020|287031|287051|289312|289322|289323|289327|289329|289330|289331|289335|289354|289356|289673|289686|289687|289689|289700|289706|289730|289731|289732|289733|289735|392656|417660|417661|417662|442511|442519|450901|451196|494957|518329|552535|620088|624074|884865|884866|884867|884868|884869|884870|884871|884872|884873|884874|884875|884876|884877|884878|884879|884880|884881|884882|884883|884884|884885|884886|884887|884888|884889|884890|884891|884892|884893|884894|884895|884896|884897|884898|884899|884900|884901|884902|884903|884904|884905|884906|884907|884908|884909|884910|884911|884912|884913|884914|884915|884916|884917|884918|887363|918772|920178|920179|980446", + "text": "Gingival fibromatosis 1" + }, + { + "baseId": "27908|27908|27909|27910|27910|27911|27911|27912|49111|49113|49125|49132|49134|49135|49142|49148|49153|49154|49162|49167|49169|49172|49176|49178|49186|49192|49196|49199|54510|54515|54517|54520|54524|54529|54541|54548|125843|142932|142939|173525|173668|173668|179037|179038|228963|228965|264097|265889|286235|286237|286238|286245|286265|286272|286277|286285|286289|286291|286291|286296|286297|286298|286986|286987|286991|286992|286993|286997|286998|286999|287014|287020|287031|287051|289312|289322|289323|289327|289329|289330|289331|289335|289354|289356|289673|289686|289687|289689|289700|289706|289730|289731|289732|289733|289735|392656|437668|442511|442519|451196|518215|518329|552535|583086|624847|818215|884865|884866|884867|884868|884869|884870|884871|884872|884873|884874|884875|884876|884877|884878|884879|884880|884881|884882|884883|884884|884885|884886|884887|884888|884889|884890|884891|884892|884893|884894|884895|884896|884897|884898|884899|884900|884901|884902|884903|884904|884905|884906|884907|884908|884909|884910|884911|884912|884913|884914|884915|884916|884917|884918|887363|921224|964201|975856|980315|980446|983791", + "text": "Noonan syndrome 4" + }, + { + "baseId": "27909|27911|28363|28363|28363|28364|28364|28365|28365|28365|28365|28366|28366|28366|28367|28367|28368|28368|28369|28370|28370|28371|28372|28372|28372|28373|28373|28374|28379|28379|28380|28381|28382|28383|28384|28385|28388|28390|28941|28942|28996|29008|29020|38760|38760|38761|38762|38763|45369|45370|48246|48817|48955|48957|48957|48959|48959|48963|48965|48972|48973|48976|48978|48982|48983|48983|48986|48988|48989|48991|48992|48994|48995|48996|48997|48998|48998|49006|49010|49012|49019|49020|49022|49023|49024|49028|49028|49029|49029|49032|49032|49032|49036|49040|49055|49116|49142|49153|49156|53765|53766|53775|53966|53978|54515|70453|75093|138851|142546|142548|166118|174176|175395|175398|175540|179157|179456|181507|181513|224691|224692|225823|226150|230599|264459|264875|316040|316041|316046|316051|316057|316064|316065|323294|323298|323300|323304|323305|323306|323307|329404|329406|329458|329467|329470|329471|329472|329473|329475|329476|329477|329478|329485|329521|330584|330589|330590|330591|330595|330611|330625|330626|330628|330630|330634|354275|359646|359799|429364|481135|481136|481137|487580|494957|550169|552584|556612|569565|582588|624074|682796|682797|790236|792557|792700|798651|869289|869290|869291|869292|869293|869294|869295|869296|869297|869298|869299|869300|869301|869302|869303|869304|869305|869306|869307|869308|869309|869310|869311|869312|869313|869314|869315|869316|869317|970539|970540|975717|980344", + "text": "Noonan syndrome 1" + }, + { + "baseId": "27911|48817|48818|48819|48955|49054|49134|49151|49154|49203|49288|53997|54540|70449|179102|359443|462420|533045|624073|624074", + "text": "Noonan syndrome and Noonan-related syndrome" + }, + { + "baseId": "27913", + "text": "Somatostatin analog, resistance to" + }, + { + "baseId": "27914|27914|27915|27916|27917|27917|27918|27918|27919|27919|27920|27920|38841|38841|38843|38843|38844|135658|135658|135660|135661|135661|135663|135663|135664|135664|135665|135665|135666|135666|135667|135668|135668|135670|135670|135671|135671|135672|135672|135673|135673|142712|142712|142713|142713|142714|142714|142715|142716|142716|142718|142719|142720|142721|142721|142722|142722|142724|142725|142725|142727|142730|142730|142731|142732|142732|142735|142735|191718|193199|201272|201273|201274|201274|201275|201275|201276|201287|201290|201291|201292|201294|201297|201300|201308|201311|201312|201314|201314|201317|201318|201319|201321|201321|201322|201322|201323|201323|201328|201338|201344|201348|201349|201350|201351|201353|201353|201357|201357|201358|201360|201377|201391|201392|201393|201400|201403|201405|201410|201410|205224|206872|206872|206874|206874|206878|206879|206882|206882|206883|225807|238376|238376|266816|282352|282353|282354|282355|282359|282360|282365|282367|282367|282368|282368|282369|282369|282375|282375|282389|282401|282402|282404|282409|283021|283031|283032|283039|283042|283043|283056|283063|283064|283066|283067|283068|283072|283076|283077|283078|283090|283093|283094|283095|283096|284604|284606|284613|284628|284630|284634|284634|284642|284642|284650|284650|284651|284651|284655|284656|284657|284671|284673|285053|285054|285055|285062|285069|285084|285085|285085|285095|285095|285107|285110|285111|285113|285123|285129|353541|359288|359299|361613|365570|365577|365582|365587|365589|365601|365608|365811|365826|365829|365834|366032|366036|366044|391406|391410|391457|391458|391459|391567|391568|391568|391571|391627|391627|391638|391639|405345|405353|405354|425419|427922|427924|427924|427925|427925|438165|442983|442983|442987|442991|443000|443002|448781|448785|448791|448802|448802|448804|448807|448809|448810|448981|448984|448987|449050|449058|449064|449066|449068|449079|449084|449085|449088|449092|486251|486732|486735|486736|499046|511350|516206|516483|516485|516492|516497|516502|516511|516513|516587|516592|516595|516597|516600|516605|516606|516614|516615|516617|516620|516642|516643|516651|516652|516666|516668|516674|536609|539183|553374|553375|557418|557420|557594|557596|557598|557600|557639|557641|557643|557645|558070|558819|558821|558823|558825|559304|559306|559308|559310|559312|559314|559316|559318|576581|578922|578945|579001|579001|611377|611378|611379|611380|612565|614228|614229|614230|628769|628770|628771|628772|628773|628774|628775|628776|628777|628778|628778|628779|628780|628781|628782|628783|628784|628785|628786|628787|628788|628789|628790|628791|628792|628793|628794|628795|650887|677406|683411|685877|685878|685879|685880|685886|685887|690853|690858|695097|746880|746882|762350|780920|787067|790072|790073|790074|790075|790076|790077|790078|790079|790080|790081|790082|790083|790084|790085|794826|801978|819061|819063|821870|821871|825051|825052|825053|825054|825055|825056|825057|825058|825059|825060|825061|825062|825063|825064|825065|825066|825067|825068|825069|825070|825071|825072|825073|825074|825075|825076|825077|825078|825079|825080|825081|825082|825083|825084|825085|825086|825087|825088|825089|825090|825091|825092|825093|825094|825095|825096|825097|825098|850842|850844|851089|881274|881275|881276|881277|881278|881279|881280|881281|881282|881282|881283|881284|881285|881286|881287|881288|881289|881290|881291|881292|881293|881294|881295|881296|881297|881298|881299|881300|881301|881302|881303|881304|918679|918680|918681|922329|922330|922331|922331|922332|922333|922334|922335|922336|930891|930892|930893|930894|930895|930896|930897|930898|930899|930900|930901|930902|930903|930904|930905|930906|930907|930908|930909|942318|942319|942320|942321|942322|942323|942324|942325|942326|942327|942328|942329|952746|952747|952748|952749|959586|959587|964168|964172|964173|966786|966787|975945|976644|976645|976705|976706", + "text": "Seizures, benign familial infantile, 3" + }, + { + "baseId": "27914|27917|27918|27918|27919|27919|27920|38840|38841|38841|38842|38843|38843|135658|135660|135661|135663|135664|135665|135666|135668|135670|135671|135672|135673|142712|142713|142714|142715|142716|142718|142719|142721|142722|142724|142725|142727|142730|142731|142732|142735|191718|191718|193199|193200|201272|201273|201274|201275|201276|201278|201287|201290|201291|201297|201299|201300|201306|201308|201311|201312|201314|201316|201317|201318|201319|201321|201322|201323|201328|201335|201338|201344|201345|201348|201348|201349|201350|201351|201353|201357|201358|201360|201367|201377|201391|201391|201392|201393|201393|201400|201400|201403|201405|201407|201410|206872|206874|206879|206881|206882|206883|225807|225807|225808|238376|244064|266816|282367|282368|282369|282375|284634|284642|284650|284651|285085|285095|359288|359288|359299|359306|361613|362318|365570|365577|365582|365587|365589|365601|365608|365811|365821|365826|365829|365834|366032|366036|366044|391406|391410|391457|391458|391459|391567|391568|391571|391627|391627|391638|391639|405345|405353|405354|405354|425417|425419|427920|427922|427924|427924|427925|427927|438165|439871|442983|442987|442991|443000|443002|448781|448785|448791|448802|448804|448807|448809|448810|448981|448984|448987|449050|449058|449064|449066|449068|449079|449084|449085|449088|449092|481228|486251|488153|499046|511004|511350|516206|516483|516485|516492|516497|516502|516511|516513|516587|516592|516595|516597|516600|516605|516606|516614|516615|516617|516620|516642|516643|516651|516652|516666|516668|516674|536609|539183|550585|553374|553375|557418|557420|557594|557596|557598|557600|557639|557641|557643|557645|558070|558819|558821|558823|558825|559304|559306|559308|559310|559312|559314|559316|559318|576581|578922|578945|579001|611377|611378|611379|611380|611460|612565|614228|614229|614230|628769|628770|628771|628772|628773|628774|628775|628776|628777|628778|628779|628780|628781|628782|628783|628783|628784|628785|628786|628787|628788|628789|628790|628791|628792|628793|628794|628795|650887|677406|683411|685877|685878|685879|685880|685886|685887|690853|690858|695097|746880|746882|762350|780920|787067|794819|794820|794826|798487|800390|801533|801977|801979|805077|816521|819061|819063|821870|821871|825051|825052|825053|825054|825055|825056|825057|825058|825059|825060|825061|825062|825063|825064|825065|825066|825067|825068|825069|825070|825071|825072|825073|825074|825075|825076|825077|825078|825079|825080|825081|825082|825083|825084|825085|825086|825087|825088|825089|825090|825091|825092|825093|825094|825095|825096|825097|825098|850842|850844|851089|858325|858326|858327|858328|858329|858330|858331|858332|858379|859024|881282|921265|921266|921267|922329|922330|922331|922331|922332|922333|922334|922335|922336|930891|930892|930893|930894|930895|930896|930897|930898|930899|930900|930901|930902|930903|930904|930905|930906|930907|930908|930909|942318|942319|942320|942321|942322|942323|942324|942325|942326|942327|942328|942329|952746|952747|952748|952749|959586|959587|962859|964167|964169|964170|964171|964174|964175|966786|966787|967261|970012|970131|970519|970716|970717|970718|970719|971235|976644|976645|983692", + "text": "Early infantile epileptic encephalopathy 11" + }, + { + "baseId": "27919|38840|38843|49898|75278|135660|135667|171873|191718|193200|200402|201276|201282|201287|201301|201302|201335|201344|201348|201370|201372|201375|201381|201391|201393|201401|202667|202669|202670|205273|205795|206877|215118|225808|226651|226901|231838|244793|259702|260240|264016|264041|264589|266816|270091|359288|359770|360481|361141|365821|365825|372867|391458|395450|405349|405351|405359|408604|408605|410861|410863|410868|410871|413555|415049|415325|421910|422357|426142|428626|430428|430430|434773|442981|442999|443003|443959|481612|482276|486736|488156|511343|511345|511347|511350|511980|512486|512490|514637|514776|516620|521972|536235|539183|552158|552187|567934|586161|611460|611536|612447|628783|628785|790084|791217|794820|794823|859024|904931|961606|969324|972769|972770|972771|972772|972831|972833|972834|972838|972843|972846|972847|972848|972901|972902|972903|972904|972905|972906|972907|972908|972909|972910|972911|972912|972913|972914|972915|972916|972917|972918|972919|972920|972921|972922|972923|972924|972925|972926|972927|972935|972936|972937|972938|972960|972961|972962|972963|972964|972965|972966|972967|972970|972971|973003|977310", + "text": "Complex neurodevelopmental disorder" + }, + { + "baseId": "27921|27922|27923|27924|27925|27926|27928|27930|27931|27933|27934|27935|27937|45412|45412|45413|45414|45415|45415|79412|79415|79426|79443|79445|79450|79466|79470|79481|79496|79508|79523|79552|79563|79567|99530|99537|99539|99546|99547|99547|99550|99559|99561|99564|99565|99568|135655|142674|142676|142680|142688|142689|177070|187701|187795|187817|187828|188046|191002|191522|191884|192095|192292|193103|194348|194348|198608|198609|201417|201432|201440|201478|201481|201506|201519|201533|201534|201541|201560|201587|201597|201599|206886|259708|259710|282505|282517|282522|282523|282527|282530|282532|282536|282541|283171|283180|283181|283182|283183|284767|284774|284775|284779|284782|284785|284786|284787|284795|284796|284797|285215|285228|285235|285238|285246|285252|285253|285256|359321|361170|365852|365882|365919|405410|421309|440563|449111|480426|481455|486914|486914|489670|498967|513514|516639|516662|558853|613610|614231|615767|655172|655173|677407|678116|683415|798489|800664|800665|801980|801981|801982|818718|850506|858753|859026|881348|881349|881350|881351|881352|881353|881354|881355|881356|881357|881358|881359|881360|881361|881362|881363|881364|881365|881366|881367|881368|882824|882825|917728|917729|917730|917731|964177|964178|964180|964181|964182|966052|970720|970721|970722", + "text": "Generalized epilepsy with febrile seizures plus, type 2" + }, + { + "baseId": "27921|27922|27927|27928|27928|27929|27933|27934|27937|27938|27939|27940|38838|38839|45412|45412|45415|45415|79391|79392|79393|79394|79395|79396|79397|79398|79400|79401|79403|79404|79405|79407|79408|79409|79410|79411|79412|79412|79413|79414|79415|79416|79417|79419|79420|79421|79422|79423|79424|79425|79426|79427|79428|79429|79430|79431|79432|79433|79434|79435|79436|79437|79438|79439|79440|79443|79443|79444|79445|79446|79447|79448|79450|79450|79452|79453|79455|79456|79457|79458|79459|79460|79461|79462|79463|79464|79465|79466|79467|79468|79469|79470|79470|79471|79472|79473|79475|79476|79477|79479|79480|79480|79481|79483|79485|79486|79487|79488|79489|79490|79491|79492|79493|79494|79495|79496|79497|79498|79499|79500|79501|79502|79503|79504|79506|79507|79508|79509|79510|79511|79512|79513|79514|79515|79516|79518|79519|79521|79522|79523|79524|79525|79526|79527|79528|79529|79530|79531|79533|79535|79536|79537|79538|79539|79541|79542|79543|79544|79546|79547|79548|79549|79550|79551|79552|79553|79554|79555|79556|79559|79560|79561|79562|79563|79564|79565|79566|79567|79739|80297|99539|99539|99547|99565|135712|135712|177069|177070|178046|178058|178058|187700|187701|187702|187703|187704|187705|187706|187707|187708|187709|187710|187711|187712|187713|187714|187715|187716|187717|187718|187719|187720|187721|187722|187723|187724|187725|187726|187727|187728|187729|187730|187731|187732|187733|187734|187735|187736|187737|187738|187739|187740|187741|187742|187743|187744|187745|187746|187747|187748|187749|187750|187751|187752|187753|187754|187755|187756|187757|187758|187759|187760|187761|187762|187763|187764|187765|187766|187767|187768|187769|187770|187771|187772|187773|187774|187775|187776|187777|187778|187779|187780|187781|187782|187783|187784|187785|187786|187787|187788|187789|187790|187791|187792|187793|187794|187795|187795|187796|187797|187798|187799|187800|187801|187802|187803|187804|187805|187806|187807|187808|187809|187810|187811|187812|187813|187814|187815|187816|187817|187818|187819|187820|187821|187822|187823|187824|187825|187826|187827|187828|187829|187830|187831|187832|187833|187834|187835|187836|187837|187838|187839|187840|187841|187842|187843|187844|187845|187846|187847|187848|187849|187850|187851|187852|187853|187854|187855|187856|187857|187858|187859|187860|187861|187862|187863|187864|187865|187866|187867|187868|187869|187870|187871|187872|187873|187874|187875|187876|187877|187878|187879|187880|187881|187882|187883|187884|187885|187886|187887|187888|187889|191370|191884|192292|194348|194348|198608|198609|201430|201440|201463|201477|201481|201481|201487|201506|201510|201517|201533|201572|201599|201600|201622|201624|213796|213797|213798|213799|213800|213801|213802|213803|213804|213805|225817|225846|259708|259708|259710|263856|264048|267210|273736|282565|282594|283206|283227|283258|283267|283293|283322|284810|285355|285356|298652|302896|361169|361170|362323|362324|362326|362327|391507|391655|440555|440563|443031|447104|447108|447110|447112|447115|447117|447120|447123|447127|447129|447130|447186|447191|447192|447194|447203|447213|447216|447223|447283|447288|449111|449127|480426|481145|481229|486733|486734|486737|486738|486739|486740|486914|486946|489670|515050|515061|515064|515073|515076|515077|515080|515123|515181|515182|515200|515202|516639|516681|552054|556596|556598|556639|556641|556643|556645|556647|556927|556929|556931|557604|557659|557671|558112|614231|614232|615767|626817|626818|626819|626820|626821|626822|626823|626824|626825|626826|626827|626828|626829|626830|628823|650619|677407|682116|682117|718213|743638|758804|758850|761198|761200|761204|790086|790087|790088|790089|790090|790091|790092|790093|790094|790095|790096|790097|790098|790099|790100|790101|790102|790103|790104|790105|790106|790107|790108|790109|790110|790111|790112|790113|790114|790115|790116|790117|790118|790119|790120|790121|790122|790123|798488|800754|801573|816025|818718|822718|822719|822720|822721|822722|822723|822724|822725|822726|822727|822728|822729|822730|822731|822732|822733|822734|822735|850425|850513|850931|858333|858334|858335|858336|858337|858338|858339|858340|858341|858514|858587|858753|861535|861561|861562|903513|917732|917733|917821|921631|921632|921633|921634|921635|921636|921637|921638|921639|921640|930032|930033|930034|930035|930036|941448|941449|941450|941451|941452|952066|952067|952068|960404|960405|961209|962860|964176|964179|964183|964184|964649|964650|966052|966060|966393|969250|969323|970151|980304|983301", + "text": "Severe myoclonic epilepsy in infancy" + }, + { + "baseId": "27921|99543|201449|206884|362597|486877|486898|621100|916835", + "text": "Autosomal dominant epilepsy" + }, + { + "baseId": "27928|27932|27941|27942|45412|45412|45413|45414|45415|45415|79398|79412|79419|79420|79426|79443|79450|79450|79466|79470|79480|79481|79508|79552|79563|79567|99530|99537|99539|99546|99547|99547|99550|99559|99561|99564|99565|99568|142674|142676|142680|142688|142689|177070|187795|191002|191522|191884|192095|192292|193103|194348|201432|201481|201519|201533|201534|201560|201587|201597|206886|213804|259708|259708|259710|282505|282517|282522|282523|282527|282530|282532|282536|282541|283171|283180|283181|283182|283183|284767|284774|284775|284779|284782|284785|284786|284787|284795|284796|284797|285215|285228|285235|285238|285246|285252|285253|285256|365882|365919|421309|440563|449111|480426|486914|489670|498967|516639|516662|558853|614231|655172|655173|677407|683415|881348|881349|881350|881351|881352|881353|881354|881355|881356|881357|881358|881359|881360|881361|881362|881363|881364|881365|881366|881367|881368|882824|882825|918682|918683|918684|918685|918686|918687|918688|918689|918690|920161|920162|920163", + "text": "Familial hemiplegic migraine type 3" + }, + { + "baseId": "27935|27936", + "text": "Febrile seizures, familial, 3a" + }, + { + "baseId": "27936|31643|31644", + "text": "carbamazepine response - Dosage" + }, + { + "baseId": "27936", + "text": "phenytoin response - Dosage" + }, + { + "baseId": "27936", + "text": "carbamazepine response - Efficacy" + }, + { + "baseId": "27936", + "text": "antiepileptics response - Efficacy" + }, + { + "baseId": "27943|27944|27945|38835|38836|38837|247547|325160|325161|325162|325166|325177|325184|325185|325186|325194|325195|325201|325212|334843|334844|334845|334849|334851|334855|334863|341327|341332|341333|341335|341336|342821|342822|342823|342828|342829|342831|342832|342836|409621|432329|513129|513130|513357|620875|626317|703670|714898|792800|818325|875171|875172|875173|875174|875175|875176|875177|875178|875179|875180|875181|875182|875183|875184|875185|875186|875187|875188|875189|875190|875191|875192|876660|876661|876662|876663|964453|980373|980374|980375|980376|980377|980848", + "text": "Familial renal glucosuria" + }, + { + "baseId": "27946|27947|132588|337850|337853|337856|337862|337866|337873|337875|337878|337884|337885|337889|337892|347431|347432|347446|347447|347450|347451|347457|347458|347461|347467|347468|347471|347472|347473|347480|347491|347493|347501|351371|351373|351374|351377|351378|351380|351382|351383|351385|351386|351389|351392|351393|351394|351397|351398|351401|351402|351410|351412|351413|352397|352398|352399|352400|352401|352402|352403|352404|352405|352406|352407|352408|352411|352412|352413|352414|352415|352416|352417|431021|493545|534406|717409|717410|792056|792057|792058|891097|891098|891099|891100|891101|891102|891103|891104|891105|891106|891107|891108|891109|891110|891111|891112|891113|891114|891115|891116|891117|891118|891119|891120|891121|891122|891123|891124|891125|891126|891127|891128|891129|891130|891131|891132|891133|891134|891819|961897|980971", + "text": "Congenital glucose-galactose malabsorption" + }, + { + "baseId": "27948|27949|27950|27951|27952|27953|27954|27954|45777|45777|45778|45778|45779|45780|45780|76667|166024|167771|167772|167773|170965|170971|170972|170973|170977|170978|170985|170987|170989|170990|170992|170996|171000|171001|208601|227128|265087|265739|333688|333691|333694|333698|333701|333703|333705|333706|333707|333709|333710|333720|333722|333725|343686|343688|343690|343692|343697|343699|343701|343703|343704|349037|349038|349040|349042|349044|349046|349048|349049|349922|349923|349925|349926|349928|349930|349931|349933|349934|349935|349938|349939|349942|376590|376593|403265|403306|403753|403758|403759|410623|413523|413523|413524|415659|415661|422283|422287|430221|438113|468843|468845|468847|469862|469865|469867|469870|469871|470266|470268|470276|470277|470294|470937|470939|470942|470943|470945|470947|486226|495867|507425|512420|533058|533063|533124|533130|533132|533133|533140|533141|533142|533144|533149|533154|533160|533163|533165|533173|533556|533561|533563|570811|570827|570829|570835|572531|572533|572534|572536|573153|573157|573165|574982|574983|574984|574985|613141|614461|614462|648146|648147|648148|648149|648150|648151|648152|648153|648154|648155|648156|648157|648158|648159|648160|653054|653618|653621|677461|677461|684823|684825|684826|684827|684828|684829|684830|684831|685462|689072|689073|689074|689075|689076|689077|689079|689080|689081|689082|689083|689084|689085|689086|689087|690218|694434|694436|694437|694438|716473|716474|716476|716477|731283|741925|741926|757056|757057|760614|772719|786208|791934|791935|791936|791937|798754|798755|802026|821260|821261|822157|847739|847740|847741|847742|847743|847744|847745|847746|847747|847748|847749|847750|847751|847752|847753|851819|852336|882099|882100|882101|882102|882103|882104|882105|882106|882107|882899|882900|882901|882902|882903|917793|919869|919870|920409|928981|928982|928983|928984|928985|928986|928987|938707|938708|938709|938710|938711|938712|938713|938714|938715|938716|938717|950809|950810|950811|950812|950813|950814|960920|960921", + "text": "Dystonia 12" + }, + { + "baseId": "27948|27954|27954|45777|45777|45778|45778|45779|45780|45780|143209|166024|167771|167772|167773|170966|170967|170968|170969|170970|170971|170972|170973|170974|170975|170976|170977|170978|170979|170980|170981|170982|170983|170984|170985|170986|170987|170988|170991|170993|170994|170995|170997|170998|170999|171000|171001|208600|265739|333688|333691|333694|333698|333701|333703|333705|333706|333707|333709|333710|333720|333722|333725|343686|343688|343690|343692|343697|343699|343701|343703|343704|349037|349038|349040|349042|349044|349046|349048|349049|349922|349923|349925|349926|349928|349930|349931|349933|349934|349935|349938|353910|360446|376590|403265|413523|413523|430223|438113|469867|470945|486226|614461|614462|648160|677461|684829|689074|802025|802026|802027|802029|882099|882100|882101|882102|882103|882104|882105|882106|882107|882899|882900|882901|882902|882903|917793|969246", + "text": "Alternating hemiplegia of childhood 2" + }, + { + "baseId": "27954|45777|45778|45780|166024|170985|213654|413523|424669|424670|614461|614462|677461|798753|964892", + "text": "Cerebellar ataxia-areflexia-pes cavus-optic atrophy-sensorineural hearing loss syndrome" + }, + { + "baseId": "27956|27957|27958|27959|27961|27962|27963|27964|27966|27967|27968|27969|133926|133928|133929|133930|133932|133933|133934|140153|140155|140160|140161|191346|191876|192087|192627|194323|201067|201071|201072|201074|201078|201085|201089|201091|201097|201102|201103|223777|249473|249474|276790|276792|276798|276804|276805|276806|276809|276810|276811|276812|276819|276821|276823|276833|276842|276851|276852|276853|277075|277087|277088|277094|277095|277097|277099|277103|277104|277106|277119|277121|277122|277123|277133|277141|277143|277688|277689|277694|277695|277698|277703|277704|277708|277710|277783|277790|277796|277797|277798|277799|277800|277806|277807|277810|277813|277815|277817|277823|277825|364561|364566|364581|364583|364609|421183|425316|440368|447338|550200|556646|558184|576423|578796|613617|627003|685579|695011|789865|822890|862536|862537|862538|862539|862540|862541|862542|862543|862544|862545|862546|862547|862548|862549|862550|862551|862552|862553|862554|862555|862556|862557|862558|862559|865015|865016|865017|865018|918572|918573|967146|983845", + "text": "Familial hemiplegic migraine type 2" + }, + { + "baseId": "27960|27967|27968|133926|133928|133929|133930|133932|133933|133934|140153|140155|140160|140161|191346|191876|192087|192627|194323|201067|201071|201072|201078|201085|201089|201091|201102|201103|249473|249474|276790|276792|276798|276804|276805|276806|276809|276810|276811|276812|276819|276821|276823|276833|276842|276851|276852|276853|277075|277087|277088|277094|277095|277097|277099|277103|277104|277106|277119|277121|277122|277123|277133|277141|277143|277688|277689|277694|277695|277698|277703|277704|277708|277710|277783|277790|277796|277797|277798|277799|277800|277806|277807|277810|277813|277815|277817|277823|277825|364561|364566|364581|364583|364609|421183|425316|440368|447338|556646|558184|578796|627003|685579|695011|802026|822890|862536|862537|862538|862539|862540|862541|862542|862543|862544|862545|862546|862547|862548|862549|862550|862551|862552|862553|862554|862555|862556|862557|862558|862559|865015|865016|865017|865018|970663", + "text": "Alternating hemiplegia of childhood 1" + }, + { + "baseId": "27960|27964|27967|27968|27969|79876|99532|133926|133927|133928|133929|133930|133932|133933|133934|140150|140151|140153|140154|177497|191346|192627|192819|194323|195906|201065|201067|201070|201071|201072|201078|201079|201083|201085|201086|201088|201090|201091|201092|201095|201096|201102|201103|238154|238155|259633|276791|276848|276849|276850|277130|277689|277705|277709|277790|277798|277816|282516|282540|282542|284808|285241|285247|285248|359229|364484|364492|364494|364514|364566|364570|364581|364583|364589|364609|364612|364618|364619|364625|364630|364631|364633|364635|364659|364665|364676|364680|390831|390854|390857|390860|404963|421183|425316|437824|440365|440367|442647|446919|447218|447229|447232|447311|447316|447322|447338|447396|447401|447404|447406|447407|498077|498117|498240|511186|515190|515195|515198|515203|515204|515210|515215|515218|515219|515221|515223|515224|515309|515317|556646|556648|556650|556652|556654|556656|556713|558178|558180|558182|558184|558186|578762|578769|578770|578774|578789|578795|578796|578798|586559|626990|626991|626992|626993|626994|626995|626996|626997|626998|626999|627000|627001|627002|627003|627004|650589|685577|685579|685580|685581|689632|689633|761284|761288|761289|780358|792831|822888|822889|822890|822891|822892|822893|822894|822895|822896|822897|822898|822899|822900|822901|822902|822903|822904|822905|850738|851123|862536|921696|921697|921698|921699|921700|921701|921702|921703|921704|921705|921706|930101|930102|930103|930104|930105|930106|930107|930108|939776|940603|941523|941524|941525|941526|941527|941528|941529|941530|941531|952116|952117|952118|960407|960408", + "text": "Familial hemiplegic migraine" + }, + { + "baseId": "27965", + "text": "Migraine, familial basilar" + }, + { + "baseId": "27970|27971|236725|246984|297087|297089|297090|297091|297095|297100|297102|297103|297104|297110|297112|297116|299000|299015|299016|299019|299020|299021|299028|299029|299030|299039|299040|303238|303241|303247|303249|303255|303259|303260|303427|303429|303432|303435|303436|303438|427112|432294|779099|893979|893980|893981|893982|893983|893984|893985|893986|893987|893988|893989|893990|893991|893992|893993|893994|893995|893996|896079", + "text": "Nephrolithiasis/osteoporosis, hypophosphatemic, 1" + }, + { + "baseId": "27972|971577", + "text": "Fanconi renotubular syndrome 2" + }, + { + "baseId": "27973", + "text": "Serotonin transporter activity, increased/decreased" + }, + { + "baseId": "27974|27976", + "text": "Obsessive-compulsive disorder, susceptibility to" + }, + { + "baseId": "27974|327923|327925|327926|327928|327929|327930|327937|327939|327940|327944|327950|327953|337750|337755|337756|337763|337764|337768|337771|337772|337774|337779|337783|337788|337789|337791|337792|337794|337797|343965|343973|343977|343982|343984|343985|343986|343987|343990|343996|343997|343999|344002|344003|344004|344005|345421|345427|345430|345434|345435|715351|727091|877117|877118|877119|877120|877121|877122|877123|877124|877125|877126|877127|877128|877129|877130|877131|877132|877133|877134|877135|877136|877137|877138|877139|877140|877141|877142|877143|877144|877145|877146|877147|877148|877149|877150|877151|877152|877153|877154|877155|877156|877157|877158|877159|877160|877161|877162|877163|877164|877165|877166|877167|877168|877169|877170|877172|877173|877174|877175|880493|880494", + "text": "Behavior disorder" + }, + { + "baseId": "27978|27979|27980|27981|27982|27983|40573|48468|225853|237232|238970|287177|287197|287201|287203|287916|290475|290476|290498|290502|290504|290786|393235|451410|513525|581750|622872|630476|653853|798511|826972|885437|885438|885439|885440|885441|885442|885443|885444|885445|885446|885447|885448|887396|887397|887398|918780|918781", + "text": "Dopa-responsive dystonia due to sepiapterin reductase deficiency" + }, + { + "baseId": "27984", + "text": "SECRETOR/NONSECRETOR POLYMORPHISM" + }, + { + "baseId": "27984|227407", + "text": "Vitamin b12 plasma level quantitative trait locus 1" + }, + { + "baseId": "27985", + "text": "SECRETOR/NONSECRETOR POLYMORPHISM, JAPANESE TYPE" + }, + { + "baseId": "27987|27988|27989|34204|34205|34206|34207|34208|34209|97320|99994|99995|99997|167999|168000|168001|168002|168003|168004|168005|168007|168008|168009|168010|168011|168012|168013|168016|168017|168018|168019|168020|191372|191791|206824|214880|226883|237128|266987|274275|280753|280754|280755|280756|280766|280767|280770|280774|281235|281250|281260|281261|281262|281263|281269|282518|282519|282520|282533|282534|282538|282539|282790|282794|282805|282816|282820|282826|282827|282835|427840|442864|493551|536594|620004|746538|758927|789988|864541|864542|864543|864544|864545|864546|864547|864548|864549|864550|864551|864552|864553|864554|864555|864556|864557|864558|864559|864560|864561|864562|864563|864564|864565|865190|965356|970693", + "text": "Primary autosomal recessive microcephaly 7" + }, + { + "baseId": "27990|50332|50334|50335|108164|152802|177079|178038|178040|190978|191768|191769|285376|285381|285382|285383|285384|285386|285387|286007|286017|286022|288345|288347|288353|288768|288769|288770|288772|550168|626221|697415|708112|708113|719716|719718|719719|790212|799283|799284|825972|825976|884189|884190|884191|884192|884193|884194|884195|884196|884197|884198|884199|884200|887319|887320|977377", + "text": "Oguchi's disease" + }, + { + "baseId": "27990|799284", + "text": "Retinitis pigmentosa 47" + }, + { + "baseId": "27990", + "text": "SAG-Related Disorders" + }, + { + "baseId": "27991|27992|215583|215584|237265|335294|335299|335304|335311|345120|345127|345128|345146|345147|349888|349889|349890|349893|349894|349897|349898|349900|349901|350921|350923|470348|470350|470360|533553|573491|620656|620919|648633|716912|716913|728604|731338|742357|757465|821317|848306|848307|848308|886024|886025|886026|886027|886028|886029|886030|886031|886032|887455|938942|938943|951042", + "text": "Hypermethioninemia with s-adenosylhomocysteine hydrolase deficiency" + }, + { + "baseId": "27993|27994|27995|27996|27999|28000|28001|28002|31857|38834|45390|45393|45394|45396|45397|45398|45399|45400|45404|45406|45407|45408|45409|45410|45411|48356|48357|52867|52868|52870|52871|52880|52884|52885|52886|52887|52888|52892|52894|52897|52898|52899|52900|52901|52902|52903|52909|52911|52914|52915|52919|52920|52921|52922|52924|52927|52929|52931|52932|52933|52934|52935|52937|52938|52939|52941|52947|52951|52956|52959|52960|52961|52963|52964|52969|52974|52976|52979|52982|52985|52986|52987|52988|52989|52990|52996|52997|52999|53002|53003|53004|53005|53006|57199|78491|78870|99382|99385|142639|142640|142648|142655|142657|165585|165587|171059|171060|172338|172403|172406|172409|172410|172417|172420|172421|172425|172428|172435|172477|172540|172543|172545|172549|172559|172564|172565|172568|172575|174796|176137|178445|178452|178456|178458|178461|178466|178521|178545|178580|178641|188417|189190|189203|196507|196513|196533|196540|196542|196560|196566|196574|196577|196581|196587|196595|196596|196602|196604|196635|196638|196661|196664|196682|196711|196713|196723|196736|196751|199780|199780|215196|224177|224199|224202|224203|224324|224552|224558|228391|228392|228398|228406|238238|248624|248625|257961|257968|257975|257976|257978|257979|263854|263855|268132|276522|279942|279943|279949|279956|279964|279982|279984|279985|279988|279989|279990|280003|280005|280009|280010|280015|280025|280027|280039|280055|280279|280281|280282|280284|280286|280289|280291|280302|280316|280322|280328|280330|280341|280348|280388|280389|280401|281590|281591|281604|281616|281617|281622|281624|281626|281627|281630|281640|281641|281643|281647|281679|281681|281690|281693|281694|281711|281713|281721|281749|281757|281758|281766|281771|281774|281788|281790|281799|281802|281813|281815|281816|281819|281833|281835|281839|281840|281848|281857|281876|281881|364881|365058|365075|365085|365104|391029|391045|391053|391166|404744|405117|424559|424560|439870|442781|447620|447655|447671|447793|447895|447993|481117|490599|496161|498515|509172|509207|509218|515591|515619|515708|515716|515795|538332|551757|551758|551758|551759|556831|556837|556910|557249|615193|616048|621073|625786|625787|627580|680039|680040|680041|683315|690545|690550|780621|789950|789951|823654|857639|857640|857641|857642|857643|864086|864087|864088|864089|864090|864091|864092|864093|864094|864095|864096|864097|864098|864099|864100|864101|864102|864103|864104|864105|864106|864107|864108|864109|864110|864111|864112|864113|864114|864115|864116|864117|864118|864119|864120|864121|864122|864123|864124|864125|864126|864127|865154|865155|865156|865157|865158|906666|906850|918618|918619|918620|918621|918622|920144|967163|967164|967165|967166|967167|967258|967259", + "text": "Catecholaminergic polymorphic ventricular tachycardia type 1" + }, + { + "baseId": "27993|27996|27998|28001|44436|45390|45391|45394|45397|45398|45399|45400|45401|45406|45407|45408|45409|45410|48357|49465|52865|52866|52867|52870|52874|52877|52879|52881|52884|52886|52887|52888|52889|52890|52891|52892|52894|52895|52896|52898|52899|52902|52903|52907|52910|52911|52914|52915|52916|52919|52920|52922|52924|52925|52927|52929|52931|52933|52934|52935|52936|52937|52938|52939|52941|52943|52944|52945|52946|52947|52951|52952|52954|52955|52956|52958|52961|52963|52964|52966|52967|52969|52970|52971|52972|52973|52974|52976|52979|52982|52984|52985|52987|52989|52990|52994|52995|52997|52998|53001|53002|53006|53007|53008|53009|53010|53320|53321|53323|53324|53325|53326|53327|53329|53330|53335|53337|76925|76926|99382|99383|99385|140360|142637|142638|142639|142640|142642|142645|142646|142648|142649|142652|142653|142654|142655|142656|142657|142658|165583|165584|171057|171058|171059|171060|171061|172333|172338|172339|172340|172403|172407|172408|172409|172410|172412|172415|172416|172417|172420|172425|172429|172433|172434|172435|172436|172437|172473|172474|172475|172476|172479|172539|172540|172541|172543|172545|172546|172547|172549|172554|172555|172556|172559|172560|172561|172562|172564|172565|172567|172568|172571|172572|172573|178037|178444|178445|178446|178447|178448|178453|178456|178458|178459|179359|188305|188306|188307|188313|188434|188804|188805|189181|189184|189185|189187|189188|189190|189195|189200|189201|189203|189204|189205|193271|194699|195122|196504|196510|196513|196521|196523|196525|196527|196529|196533|196534|196538|196540|196541|196542|196544|196546|196552|196554|196555|196560|196563|196566|196567|196569|196570|196571|196572|196574|196575|196580|196582|196586|196587|196588|196595|196598|196600|196601|196602|196603|196604|196607|196609|196610|196612|196616|196619|196620|196622|196632|196633|196638|196640|196642|196643|196645|196646|196647|196648|196650|196652|196658|196659|196660|196661|196666|196668|196669|196670|196673|196674|196675|196681|196682|196683|196685|196686|196687|196689|196704|196710|196711|196713|196714|196718|196720|196721|196722|196723|196724|196726|196729|196743|196749|196751|196753|204080|204081|204082|221091|224203|224208|224210|227290|228252|228259|228263|228265|228366|228369|228373|228375|228382|228383|228385|228386|228388|228391|228392|228397|228400|228401|228402|228406|229388|229389|229390|229398|229400|229403|229406|229407|229408|229412|229413|229414|229416|229417|229418|236746|236747|238128|238129|238130|238131|238132|238232|238233|238234|238236|238237|238238|238240|238241|238243|238244|238245|238251|238252|239880|239881|239882|239884|239885|239886|246879|246880|246881|257961|257962|257963|257964|257965|257968|257969|257975|257976|257977|258431|258432|258439|266956|268132|268758|268963|271579|274257|276037|276055|276056|276081|276248|276256|276262|276263|276264|276266|276271|276272|276284|276289|276290|276299|276408|276435|276450|276479|276480|276520|276522|276527|276533|276544|276555|276560|276563|276578|276581|276593|276597|279942|279955|279963|279964|279976|280009|280010|280014|280020|280023|280026|280032|280280|280281|280282|280289|280316|280324|280326|280327|280328|280330|280333|280340|280346|280347|280355|280373|280381|280387|280394|280402|281591|281593|281604|281622|281627|281630|281641|281646|281676|281680|281697|281699|281700|281747|281773|281774|281790|281816|281833|281849|281863|281874|298887|298894|298899|298900|301335|301358|301366|305880|305895|305896|305897|359249|359294|359707|359711|362734|364374|364824|364829|364830|364840|364842|364871|364902|364985|365018|365031|365037|365040|365047|365056|365058|365065|365068|365073|365077|365088|365096|365104|365109|365119|365122|368309|390728|390744|390771|390772|390779|390795|391002|391003|391015|391018|391019|391021|391023|391024|391027|391029|391031|391032|391035|391037|391039|391040|391041|391042|391043|391045|391047|391050|391051|391052|391053|391054|391056|391057|391060|391065|391066|391068|391071|391075|391080|391081|391088|391090|391091|391092|391093|391094|391097|391107|391109|391115|391122|391123|391126|391127|391132|391140|391143|391150|391153|391154|391157|391159|391161|391163|391172|391173|391175|391177|391180|391183|391190|391191|391193|391204|391205|391225|391228|395053|395061|395196|395199|395202|395206|395338|395369|395371|395374|395375|395376|395379|395382|395392|395402|395408|395409|395664|395667|395669|395679|395680|405106|405107|405118|406797|415020|419263|433898|442589|442763|442767|442772|442773|442775|442776|443861|443864|443866|446915|446918|446929|446931|446996|447002|447006|447132|447185|447603|447606|447609|447610|447614|447616|447620|447626|447628|447637|447642|447645|447650|447655|447658|447659|447660|447662|447664|447665|447668|447671|447777|447780|447782|447786|447791|447793|447799|447803|447804|447805|447812|447815|447825|447831|447832|447835|447837|447841|447842|447848|447854|447856|447859|447861|447862|447865|447868|447871|447872|447875|447879|447883|447884|447885|447886|447888|447889|447891|447892|447894|447895|447896|447898|447901|447905|447907|447909|447920|447923|447925|447930|447936|447939|447940|447941|447943|447944|447945|447946|447947|447948|447950|447951|447953|447956|447959|447961|447965|447968|447971|447976|447977|447978|447979|447980|447981|447982|447984|447985|447986|447989|447991|447992|447993|447994|447996|447998|448000|448001|448003|448004|455160|455166|455171|455174|455175|455176|455312|455314|455333|455829|455838|455840|455844|455851|456053|456055|456058|456065|480673|486852|486857|486862|486865|486899|490599|496650|496652|496849|498013|498283|498344|498346|498354|498365|498366|498372|498509|498526|498539|501122|501397|509076|509077|509172|509173|509178|509180|509185|509187|509195|509199|509201|509205|509207|509210|509212|509784|509786|509787|509791|509792|511042|511051|511054|512885|514343|514995|515051|515058|515588|515589|515591|515596|515598|515604|515606|515611|515619|515621|515624|515625|515627|515638|515639|515641|515644|515656|515658|515661|515663|515664|515667|515669|515670|515671|515672|515673|515674|515676|515677|515678|515679|515682|515684|515687|515689|515692|515693|515694|515696|515698|515699|515700|515701|515702|515704|515706|515707|515708|515710|515711|515712|515713|515714|515715|515716|515719|515720|515724|515725|515727|515728|515733|515734|515735|515736|515737|515741|515742|515746|515747|515750|515751|515753|515757|515758|515759|515762|515767|515768|515774|515776|515778|515779|515781|515783|515784|515787|515789|515795|515799|515803|515805|515816|515817|521275|521347|521348|521350|521362|521633|521639|521646|521653|521713|521715|521717|521723|521729|521731|521735|521870|521874|521978|521982|521983|521985|551689|556525|556562|556595|556831|556833|556835|556837|556839|556841|556843|556848|556852|556854|556864|556867|556876|556878|556901|556902|556904|556906|556908|556910|556912|556914|556989|556990|556992|556993|557172|557174|557176|557178|557180|557182|557184|557186|557188|557190|557192|557194|557196|557198|557200|557202|557204|557206|557208|557213|557215|557217|557219|557221|557223|557225|557227|557229|557231|557233|557235|557237|557239|557241|557243|557245|557247|557249|558391|558393|558395|558397|558399|558401|558403|558405|558407|558409|558411|558413|558415|558417|558419|558421|558423|558425|558427|558429|560427|560429|560431|560433|560554|560556|560560|560562|560564|560566|560568|563353|563354|563356|563360|563365|565365|565369|565374|610649|614715|615193|616032|616033|616036|616037|616043|616044|616061|616070|621053|621071|621073|621074|621077|626674|626675|626676|626677|626678|626679|627542|627543|627544|627545|627546|627547|627548|627549|627550|627551|627552|627553|627554|627555|627556|627557|627558|627559|627560|627561|627562|627563|627564|627565|627566|627567|627568|627569|627570|627571|627572|627573|627574|627575|627576|627577|627578|627579|627580|627581|627582|627583|627584|627585|627586|627587|627588|627589|627590|627591|627592|627593|627594|627595|627596|627597|627598|627599|627600|627601|627602|627603|627604|627605|627606|627607|627608|627609|627610|627611|627612|627613|627614|627615|634524|634525|634526|634527|634528|634529|634530|634531|634532|634533|634534|634535|634536|634537|634538|634539|650552|650556|650577|650579|650611|650627|650629|650635|650637|650640|650643|650722|650725|651461|651477|651514|651516|655709|683316|685190|685549|685645|685647|685648|685650|685651|685654|685655|685659|685660|685663|685670|685671|689648|689649|689650|689810|689811|690539|690541|690542|690543|690544|690547|690548|690551|690553|690554|695037|696606|718825|729985|732295|745594|746319|746325|746328|746329|746330|746333|746335|749796|758899|758960|758965|761746|761750|761757|761761|761772|761775|761778|774464|774467|774480|774502|780615|780616|780618|780623|782427|787028|787038|787041|787312|789950|794626|799016|818840|818937|818938|818939|818940|818941|818942|818943|818944|818945|819650|819651|819652|822585|822586|822587|822588|822589|823643|823644|823645|823646|823647|823648|823649|823650|823651|823652|823653|823654|823655|823656|823657|823658|823659|823660|823661|823662|823663|823664|823665|823666|823667|823668|823669|823670|823671|823672|823673|823674|823675|823676|823677|823678|823679|823680|823681|823682|823683|823684|823685|823686|823687|823688|823689|823690|823691|823692|823693|823694|823695|823696|823697|823698|823699|823700|823701|823702|823703|823704|823705|823706|823707|823708|823709|823710|823711|823712|823713|823714|823715|823716|823717|823718|823719|823720|823721|823722|823723|823724|823725|823726|823727|823728|823729|823730|823731|823732|823733|823734|823735|823736|823737|823738|823739|823740|823741|823742|823743|823744|823745|823746|823747|831474|831475|831476|831477|831478|831479|831480|831481|831482|831483|831484|831485|831486|831487|831488|831489|831490|831491|850759|850761|850763|850764|850765|850766|850967|851054|851056|852236|857639|858246|858443|864103|864104|903734|906526|906538|906551|906553|906557|906558|906559|906561|906613|906631|906693|906710|906714|906755|906758|906771|906863|906932|906960|906973|906989|906994|906997|907015|907026|907042|907123|907158|907174|915122|915141|915222|915242|915366|916822|921600|921902|921903|921904|921905|921906|921907|921908|921909|921910|921911|921912|921913|921914|921915|921916|921917|921918|921919|921920|921921|921922|921923|921924|921925|921926|921927|921928|921929|921930|921931|921932|921933|921934|921935|921936|924235|924236|924237|924238|924239|929986|929987|929988|929989|929990|930387|930388|930389|930390|930391|930392|930393|930394|930395|930396|930397|930398|930399|930400|930401|930402|930403|930404|930405|930406|930407|930408|930409|930410|930411|930412|930413|930414|930415|933151|933152|933153|933154|933155|939799|939800|939801|939802|940028|940029|940625|940626|941397|941821|941822|941823|941824|941825|941826|941827|941828|941829|941830|941831|941832|941833|941834|941835|941836|941837|941838|941839|941840|941841|941842|941843|941844|941845|941846|941847|941848|941849|941850|941851|941852|941853|941854|941855|941856|941857|941858|944866|944867|944868|944869|944870|952028|952029|952332|952333|952334|952335|952336|952337|952338|952339|952340|952341|952342|952343|952344|952345|952346|952347|952348|952349|952350|954333|959519|959549|959550|959551|959790|959791|960576|960577|977408", + "text": "Catecholaminergic polymorphic ventricular tachycardia" + }, + { + "baseId": "27997|27998|45390|45393|45394|45396|45397|45398|45399|45400|45404|45406|45407|45409|45410|45411|52867|52868|52870|52871|52880|52884|52885|52886|52887|52888|52892|52897|52898|52899|52900|52901|52902|52903|52909|52911|52914|52915|52919|52920|52921|52922|52924|52927|52929|52931|52932|52933|52935|52938|52939|52941|52947|52951|52956|52959|52960|52961|52963|52964|52969|52974|52976|52979|52982|52985|52986|52987|52988|52989|52990|52996|52997|52999|53002|53003|53004|53005|53006|99382|99385|142639|142640|142648|142655|142657|171058|171059|172403|172406|172409|172410|172417|172420|172421|172425|172428|172435|172543|172545|172549|172559|172564|172565|172568|172575|178456|189190|189203|196507|196540|196560|196566|196574|196577|196581|196587|196595|196604|196616|196638|196661|196682|196711|196723|196733|199780|199780|224202|224203|228391|228398|228406|238238|257961|257968|257975|257976|257978|268132|279942|279943|279949|279956|279964|279982|279984|279985|279988|279989|279990|280003|280005|280009|280010|280015|280025|280027|280039|280055|280279|280281|280282|280284|280286|280289|280291|280302|280316|280322|280328|280330|280341|280348|280388|280389|280401|281590|281591|281604|281616|281617|281622|281624|281626|281627|281630|281640|281641|281643|281647|281679|281681|281690|281693|281694|281711|281713|281721|281749|281757|281758|281766|281771|281774|281788|281790|281799|281802|281813|281815|281816|281819|281835|281839|281840|281848|281857|281876|281881|364881|365058|365075|365085|365104|391029|391045|391053|391166|404744|447620|447655|447793|447895|447993|481117|490599|496161|498515|509172|509207|509218|515591|515619|515716|515795|538332|551758|556837|556910|557249|609292|613918|615193|616048|627580|683315|690545|690550|780621|823654|864086|864087|864088|864089|864090|864091|864092|864093|864094|864095|864096|864097|864098|864099|864100|864101|864102|864103|864104|864105|864106|864107|864108|864109|864110|864111|864112|864113|864114|864115|864116|864117|864118|864119|864120|864121|864122|864123|864124|864125|864126|864127|865154|865155|865156|865157|865158|952349|970682|970683", + "text": "Arrhythmogenic right ventricular dysplasia, familial, 2" + }, + { + "baseId": "28003|28004|28006|28008|28009|28010|28011|28012|28013|28014|28014|28015|28016|28017|28018|28021|28023|28032|38459|38832|38833|51078|70540|76888|76892|76904|76904|99145|99146|99147|99148|99149|99150|99153|99154|99156|99157|99158|99159|99160|99161|99162|99165|99166|99167|99168|99169|99170|99171|99172|99174|99175|99176|99177|99178|99180|99181|99183|99184|99185|99186|99188|99190|99191|99192|99194|99195|99196|99197|99199|99200|99201|99202|99203|99204|99205|99206|99207|99208|99209|99213|99215|136736|136739|136739|136745|136747|136758|136759|136761|136762|136767|136769|136769|136770|136774|136780|136782|136791|136794|136797|136800|136801|136823|136845|136845|136846|136848|136850|136858|136861|136867|136869|136870|136871|136881|136891|136896|136899|136915|136919|136920|136922|136922|136927|136929|136930|136934|136937|136938|136940|136941|136949|136951|136956|136979|136989|169542|169543|169546|169547|169548|169550|169553|169554|169559|169559|169561|169563|169564|169565|169568|169570|169571|169572|169575|169576|169577|169578|169579|169581|171056|171227|171228|171229|171230|171234|171236|171237|171238|171240|171241|171241|171242|171243|171244|177297|177429|178027|178029|178033|192085|194218|194319|194770|195107|195121|195121|195251|195489|195490|196101|196371|196376|196388|196401|198021|198022|198027|208580|208586|215566|215568|226098|226099|226100|226101|226102|226103|226104|226105|226106|226107|226108|226109|226110|226111|226112|226113|226114|226115|226116|226117|226118|226119|226120|226121|226122|226123|226124|226125|226126|226127|226127|226128|226129|226130|226131|226132|226133|226134|226135|226136|226137|226138|226138|226139|226140|226141|226142|226143|226144|226145|226146|226147|226974|256902|256903|256923|256927|256935|256941|256943|256946|256953|256957|256962|256967|256968|256974|256978|256980|256985|256993|257011|257031|257040|257046|257050|257052|257096|265716|268109|268402|270094|274154|274354|333289|333292|333303|333315|333324|333326|333328|333336|333337|333340|333348|333349|333356|333365|333372|333377|333379|333394|333395|333396|333397|333402|333415|333424|333430|333438|333457|333458|333459|343397|343402|343409|343410|343412|343414|343416|343417|343419|343421|343424|343428|343429|343433|343436|343439|343452|343457|343465|343469|343478|343490|343494|343495|348681|348682|348696|348700|348703|348705|348707|348712|348719|348721|348722|348723|348726|348730|348732|348733|348743|348745|348746|348748|348752|348756|348760|348767|348771|348772|348773|348784|348785|348788|348790|348799|348800|348804|348805|348809|348810|348816|348818|348820|348826|348828|349736|349740|349745|349746|349748|349750|349752|349754|349759|349760|349762|349765|349767|349770|349773|349774|349776|349777|349780|349783|349786|349789|360414|361049|361346|361886|361887|361888|377439|379547|390354|410578|410591|410596|413513|415649|434672|438105|446116|446123|468667|468667|468669|468693|469680|469738|469791|470195|470698|470790|470832|495721|507303|507315|513662|532913|532927|532933|533033|533050|533355|533390|536983|537327|539090|551330|551331|570695|570770|573075|574949|574950|578565|581435|581465|581526|581543|581570|581575|581642|624867|647965|648051|684786|684802|689022|694407|756962|756965|772648|772655|778371|791923|791924|791925|791926|791927|791928|847574|847620|847623|847635|860559|880414|880415|880416|880417|880418|880419|880420|880421|880422|880423|880424|880425|880426|880427|880428|880429|880430|880431|880432|880433|880434|880435|880436|880437|880438|880439|880440|880441|880442|880443|880444|880445|880446|880447|880448|880449|880450|880451|880452|880453|880454|880455|880456|880457|880458|880743|880744|880745|880746|880747|880748|880749|880750|880751|881925|881926|881927|881928|881929|881930|881931|881932|881933|881934|881935|881936|881937|881938|882880|961347|964571|967161|967217|967218|967219|967220|967221|967222|967223|967224|967225|967226|967227|970559|971127|971128|971129|971132|977293", + "text": "Malignant hyperthermia, susceptibility to, 1" + }, + { + "baseId": "28003|28005|28006|28008|28009|28010|28011|28013|28014|28015|28016|28018|28021|28023|28024|28027|28035|38459|38832|38833|51078|51264|70540|76835|76851|76867|76869|76887|76888|76889|76892|76894|76896|76897|76903|76904|99145|99151|99153|99154|99155|99156|99157|99159|99160|99162|99164|99167|99171|99172|99173|99174|99176|99177|99178|99180|99181|99182|99183|99188|99190|99197|99200|99208|99211|99212|136739|136745|136747|136759|136760|136761|136762|136767|136769|136774|136777|136778|136780|136782|136791|136792|136793|136794|136795|136797|136800|136801|136808|136818|136823|136830|136845|136846|136848|136849|136850|136851|136853|136855|136858|136861|136867|136869|136870|136871|136881|136883|136891|136894|136896|136899|136909|136912|136914|136915|136919|136920|136921|136922|136930|136934|136937|136938|136940|136942|136943|136948|136949|136950|136954|136956|136959|136971|136977|136979|136985|169542|169543|169546|169547|169548|169549|169550|169551|169553|169554|169557|169559|169560|169561|169562|169563|169564|169565|169567|169569|169571|169572|169573|169575|169576|169579|169580|169581|169582|171227|171228|171229|171230|171231|171233|171234|171235|171236|171237|171238|171240|171241|171242|177297|177429|178027|178028|178029|178030|178031|178033|190763|190935|191165|191977|192085|192244|193269|194043|194101|194218|194319|194770|195083|195107|195121|195251|195489|195490|196101|196371|196374|196375|196376|196388|196396|196401|196407|198021|198022|198024|198026|198029|198030|198031|198032|198033|198035|208586|208587|208589|208590|208591|208594|208595|208597|215566|215568|215569|226098|226100|226109|226113|226114|226115|226117|226119|226120|226124|226127|226129|226132|226135|226136|226137|226138|226140|226141|226144|226145|226147|226483|226484|226974|231014|247165|256896|256897|256902|256903|256910|256916|256920|256923|256925|256927|256932|256933|256935|256941|256943|256944|256946|256947|256948|256953|256958|256968|256971|256974|256975|256976|256978|256980|256984|256985|256987|256990|256993|256999|257000|257010|257011|257015|257020|257028|257031|257032|257033|257035|257040|257046|257052|257066|257069|257071|257072|257077|257079|257080|257087|257096|260214|265070|265716|265826|266963|267034|268109|268402|268411|268482|269246|269325|270094|271556|271587|272002|274154|274256|274354|275549|333301|333303|333320|333324|333326|333340|333348|333349|333356|333365|333371|333375|333379|333394|333396|333397|333407|333410|333413|333415|333420|333438|333457|343397|343402|343417|343425|343428|343432|343436|343490|343495|348700|348703|348707|348712|348722|348733|348740|348743|348746|348752|348758|348760|348765|348767|348771|348784|348785|348820|348828|349745|349746|349748|349752|349754|349757|349762|349764|349765|349770|349783|360414|361047|361049|361050|361051|361053|361346|361505|361886|376437|376442|376443|376454|376465|377439|377450|377604|377618|377623|377624|377628|377633|377634|377636|379544|379561|390410|410571|410573|410576|410578|410579|410585|410591|410593|410598|410599|410601|413512|413513|413514|415650|415653|422270|422276|426302|430199|430200|430204|430207|434672|438103|438105|438106|438107|442199|446098|446099|446101|446102|446108|446109|446110|446112|446116|446117|446119|446120|446122|446125|446127|446128|468643|468646|468647|468648|468650|468654|468656|468660|468661|468664|468666|468667|468669|468673|468677|468678|468685|468689|468693|468694|468696|468697|468703|468707|468717|468719|468726|468730|468740|468744|468746|468762|468765|468775|468776|468778|468782|468788|468789|468791|468792|468793|468796|469656|469662|469667|469675|469677|469680|469691|469692|469697|469699|469706|469715|469716|469720|469722|469726|469730|469733|469735|469738|469739|469741|469769|469772|469790|469791|469793|469795|469797|469801|469803|470060|470062|470069|470072|470074|470078|470080|470084|470097|470105|470110|470114|470125|470134|470136|470142|470144|470148|470156|470159|470160|470166|470170|470172|470178|470185|470186|470193|470195|470197|470198|470200|470205|470638|470645|470652|470666|470672|470673|470675|470680|470683|470686|470687|470698|470699|470702|470708|470712|470716|470720|470721|470726|470728|470731|470735|470738|470742|470749|470756|470758|470760|470775|470784|470787|470790|470793|470807|470814|470818|470821|470823|470831|470832|486222|488143|488767|490959|491838|491843|491844|495865|506636|506649|506652|506670|506708|506874|506890|506900|506912|507282|507296|507298|507315|507716|512412|512413|514762|532362|532489|532865|532867|532873|532875|532878|532880|532883|532892|532893|532895|532896|532898|532899|532900|532901|532904|532908|532909|532910|532911|532913|532917|532918|532920|532922|532924|532925|532927|532931|532932|532933|532934|532935|532936|532937|532938|532940|532943|532945|532947|532948|532949|532951|532955|532957|532958|532960|532962|532963|532965|532967|532968|532969|532970|532971|532973|532975|532977|532979|532980|532984|532985|532986|532987|532988|532992|532998|532999|533000|533003|533004|533005|533006|533007|533012|533013|533018|533020|533022|533024|533026|533027|533029|533030|533031|533033|533036|533037|533039|533040|533041|533042|533044|533049|533050|533053|533055|533056|533057|533059|533060|533062|533068|533069|533303|533307|533309|533314|533322|533325|533327|533336|533338|533341|533345|533347|533355|533356|533364|533368|533370|533375|533377|533390|533396|533403|533405|533409|533411|533418|533420|533430|533445|533447|533451|533453|533458|533464|533472|533477|536984|539090|570682|570687|570693|570695|570702|570704|570709|570711|570713|570715|570717|570722|570733|570735|570739|570740|570743|570744|570746|570750|570751|570756|570762|570770|570771|572368|572369|572371|572375|572380|572382|572384|572385|572388|572395|572396|572404|572405|572408|572409|572411|572415|572418|572427|572428|572438|572449|572450|572452|572458|572459|572460|572462|572465|572468|572470|572484|572486|572488|572498|572501|573044|573045|573046|573047|573049|573051|573052|573053|573059|573066|573069|573071|573072|573073|573075|573079|573085|573089|573091|573092|573097|573098|573100|574940|574941|574942|574943|574944|574945|574946|574947|574948|574949|574950|574951|574952|574953|574954|574955|574956|574957|574958|574959|574960|574961|574962|574963|574964|574965|574966|574967|574968|577775|578565|581418|581419|581423|581430|581432|581433|581435|581436|581437|581438|581442|581446|581449|581453|581459|581463|581465|581471|581472|581474|581475|581482|581486|581487|581496|581497|581500|581502|581508|581509|581515|581518|581520|581521|581524|581529|581536|581539|581543|581552|581561|581564|581566|581572|581573|581576|581593|581595|581601|581604|581614|581617|581618|581628|581636|581639|581651|581652|581655|581659|581663|581676|581695|581696|588099|620638|622458|626273|647950|647951|647952|647953|647954|647955|647956|647957|647958|647959|647960|647961|647962|647963|647964|647965|647966|647967|647968|647969|647970|647971|647972|647973|647974|647975|647976|647977|647978|647979|647980|647981|647982|647983|647984|647985|647986|647987|647988|647989|647990|647991|647992|647993|647994|647995|647996|647997|647998|647999|648000|648001|648002|648003|648004|648005|648006|648007|648008|648009|648010|648011|648012|648013|648014|648015|648016|648017|648018|648019|648020|648021|648022|648023|648024|648025|648026|648027|648028|648029|648030|648031|648032|648033|648034|648035|648036|648037|648038|648039|648040|648041|648042|648043|648044|648045|648046|648047|648048|648049|648050|648051|648052|648053|648054|648055|648056|648057|648058|648059|648060|648061|648062|648063|648064|648065|648066|648067|648068|648069|648070|648071|648072|648073|648074|648075|648076|648077|648078|648079|648080|648081|648082|648083|653037|653044|653046|653048|653164|653166|653451|653493|653496|653497|653611|653615|656551|656554|684786|684790|684794|684796|684799|684802|684804|684805|684808|685454|685456|685457|685458|688999|689000|689001|689002|689010|689014|689016|689017|689018|689019|689020|689021|689022|689027|689028|689030|689037|689039|689040|689041|689042|690204|690205|690206|690207|690208|690209|690214|694395|694396|694399|694400|694403|694404|694407|694412|694413|694414|695819|704961|716416|728155|731275|741845|741847|756962|756964|756968|756971|756977|760714|772638|772640|772647|772650|772655|772657|772663|772668|776597|778371|786165|786169|786177|786178|786179|786182|788320|797801|797808|797821|797835|806047|821250|821251|821252|821253|821254|847557|847558|847559|847560|847561|847562|847563|847564|847565|847566|847567|847568|847569|847570|847571|847572|847573|847574|847575|847576|847577|847578|847579|847580|847581|847582|847583|847584|847585|847586|847587|847588|847589|847590|847591|847592|847593|847594|847595|847596|847597|847598|847599|847600|847601|847602|847603|847604|847605|847606|847607|847608|847609|847610|847611|847612|847613|847614|847615|847616|847617|847618|847619|847620|847621|847622|847623|847624|847625|847626|847627|847628|847629|847630|847631|847632|847633|847634|847635|847636|847637|847638|847639|847640|847641|847642|847643|847644|847645|847646|847647|847648|847649|847650|847651|847652|847653|847654|847655|847656|847657|847658|847659|847660|847661|847662|847663|847664|847665|847666|847667|847668|847669|847670|847671|847672|847673|847674|847675|847676|851813|851815|851817|852863|852864|852866|852977|852979|852980|860559|860565|928934|928935|928936|928937|928938|928939|928940|928941|928942|928943|928944|928945|928946|928947|928948|928949|928950|928951|928952|928953|928954|928955|928956|928957|928958|928959|928960|928961|928962|928963|938653|938654|938655|938656|938657|938658|938659|938660|938661|938662|938663|938664|938665|938666|938667|938668|938669|938670|938671|938672|938673|938674|938675|938676|938677|938678|938679|938680|940482|940483|940484|940485|941230|941231|941232|950759|950760|950761|950762|950763|950764|950765|950766|950767|950768|950769|950770|950771|950772|950773|950774|950775|950776|950777|950778|950779|950780|950781|950782|958602|958603|958604|958605|958606|958607|958608|958609|958610|958611|958612|958613|958614|958615|958616|958617|958618|958619|958620|958621|958622|958623|958624|958625|958626|958627|958628|958629|958630|958631|958632|958633|958634|960291|960292|960917|960918", + "text": "RYR1-Related Disorders" + }, + { + "baseId": "28003|28009|28010|28016|99151|99159|99173|99176|99182|99211|99212|136760|136777|136845|136922|136949|169560|169580|171238|196375|196500|198030|208594|227189|227190|249603|249620|249659|256909|256920|256925|256944|256948|256958|256987|257000|257032|257035|271556|278345|278362|278378|278397|278422|278461|279471|279503|279514|279524|279597|279598|279605|279676|279688|333301|333320|333371|333375|333410|333413|333414|333420|333435|333442|333452|333453|343386|343389|343390|343420|343425|343432|343435|343440|343453|343475|343476|343479|348713|348737|348738|348740|348758|348765|348777|349738|349753|349756|349757|349764|349779|353071|917293", + "text": "Malignant hyperthermia susceptibility" + }, + { + "baseId": "28003|28004|28005|28006|28007|28008|28009|28010|28011|28012|28013|28014|28015|28017|28018|28021|28023|28032|76887|76888|136743|136775|136776|136793|136820|136822|136848|136850|136853|136911|136921|136927|136929|136930|136936|136940|136949|136953|136954|136985|275550|557106|623096|623101|623102|623103", + "text": "desflurane response - Toxicity/ADR" + }, + { + "baseId": "28003|28004|28005|28006|28007|28008|28009|28010|28011|28012|28013|28014|28015|28017|28018|28021|28023|28032|76887|76888|136743|136775|136776|136793|136820|136822|136848|136850|136853|136911|136921|136927|136929|136930|136936|136940|136949|136953|136954|136985|275550|557106|623096|623101|623102|623103", + "text": "enflurane response - Toxicity/ADR" + }, + { + "baseId": "28003|28004|28005|28006|28007|28008|28009|28010|28011|28012|28013|28014|28015|28017|28018|28021|28023|28032|76887|76888|136743|136775|136776|136793|136820|136822|136848|136850|136853|136911|136921|136927|136929|136930|136936|136940|136949|136953|136954|136985|275550|557106|623096|623101|623102|623103", + "text": "halothane response - Toxicity/ADR" + }, + { + "baseId": "28003|28004|28005|28006|28007|28008|28009|28010|28011|28012|28013|28014|28015|28017|28018|28021|28023|28032|76887|76888|136743|136775|136776|136793|136820|136822|136848|136850|136853|136911|136921|136927|136929|136930|136936|136940|136949|136953|136954|136985|275550|557106|623096|623101|623102|623103", + "text": "isoflurane response - Toxicity/ADR" + }, + { + "baseId": "28003|28004|28005|28006|28007|28008|28009|28010|28011|28012|28013|28014|28015|28017|28018|28021|28023|28032|76887|76888|136743|136775|136776|136793|136820|136822|136848|136850|136853|136911|136921|136927|136929|136930|136936|136940|136949|136953|136954|136985|275550|557106|623096|623101|623102|623103", + "text": "methoxyflurane response - Toxicity/ADR" + }, + { + "baseId": "28003|28004|28005|28006|28007|28008|28009|28010|28011|28012|28013|28014|28015|28017|28018|28021|28023|28032|76887|76888|136743|136775|136776|136793|136820|136822|136848|136850|136853|136911|136921|136927|136929|136930|136936|136940|136949|136953|136954|136985|275550|557106|623096|623101|623102|623103", + "text": "sevoflurane response - Toxicity/ADR" + }, + { + "baseId": "28003|28004|28005|28006|28007|28008|28009|28010|28011|28012|28013|28014|28015|28017|28018|28021|28023|28032|76887|76888|136743|136775|136776|136793|136820|136822|136848|136850|136853|136911|136921|136927|136929|136930|136936|136940|136949|136953|136954|136985|275550|557106|623096|623101|623102|623103", + "text": "succinylcholine response - Toxicity/ADR" + }, + { + "baseId": "28005|28006|28007|28012|28013|28014|28014|28018|28020|28021|28025|28031|28032|28034|38459|38833|51078|51264|51265|70540|76725|76830|76831|76832|76833|76834|76835|76840|76841|76842|76843|76844|76845|76846|76847|76848|76849|76850|76851|76852|76853|76854|76855|76856|76857|76859|76860|76861|76863|76864|76865|76866|76867|76868|76869|76870|76871|76872|76874|76876|76877|76878|76880|76881|76882|76883|76886|76887|76888|76889|76890|76892|76893|76894|76895|76896|76897|76898|76899|76900|76901|76903|76904|76904|76905|76908|76909|76910|76912|99145|99146|99147|99148|99149|99150|99151|99153|99154|99156|99157|99158|99160|99161|99162|99165|99166|99167|99168|99169|99170|99171|99172|99173|99174|99175|99176|99177|99178|99180|99181|99182|99183|99184|99185|99186|99188|99190|99191|99192|99194|99195|99196|99197|99199|99200|99201|99202|99203|99204|99205|99206|99207|99208|99209|99211|99212|99213|99215|101820|103331|105493|135467|136736|136739|136745|136747|136758|136759|136762|136767|136769|136770|136782|136791|136797|136801|136823|136845|136850|136858|136861|136869|136870|136881|136896|136899|136920|136922|136930|136937|136938|136940|136956|136957|136979|136986|136989|169542|169543|169546|169547|169550|169553|169554|169559|169560|169561|169563|169564|169565|169568|169569|169570|169571|169572|169575|169576|169577|169578|169579|169580|169581|171228|171234|171238|171241|171242|171244|177297|178027|178029|178033|192085|194218|194319|194770|195107|195121|195121|195251|195489|195490|196101|196371|196375|196376|196401|198025|198027|198030|208580|208585|208586|208594|215566|226098|226114|226117|226119|226127|226138|226140|226141|226482|226974|256902|256903|256909|256920|256923|256925|256935|256941|256943|256944|256946|256948|256953|256957|256958|256962|256967|256968|256974|256978|256980|256987|256993|257000|257011|257031|257032|257035|257040|257046|257050|257052|257096|265716|268402|270094|271556|274154|274354|294482|333289|333292|333301|333303|333315|333320|333324|333326|333328|333336|333337|333340|333348|333349|333356|333365|333371|333372|333375|333377|333379|333394|333395|333396|333397|333402|333410|333413|333414|333415|333420|333424|333430|333435|333438|333442|333452|333453|333457|333458|333459|343386|343389|343390|343397|343402|343409|343410|343412|343414|343416|343417|343419|343420|343421|343424|343425|343428|343429|343432|343433|343435|343436|343439|343440|343452|343453|343457|343465|343469|343475|343476|343478|343479|343490|343494|343495|348681|348682|348696|348700|348703|348705|348707|348712|348713|348719|348721|348722|348723|348726|348730|348732|348737|348738|348740|348743|348745|348746|348748|348752|348756|348758|348760|348765|348767|348771|348772|348773|348777|348784|348785|348788|348790|348799|348800|348804|348805|348809|348810|348816|348818|348820|348826|348828|349736|349738|349740|349745|349746|349748|349750|349752|349753|349754|349756|349757|349759|349760|349762|349764|349765|349767|349770|349773|349774|349776|349777|349779|349780|349783|349786|349789|361049|361346|377439|379547|390354|410591|410596|415649|438105|439888|446123|468667|468667|468669|469680|469791|470749|470790|470821|470832|507303|507315|532933|532998|533000|533033|533050|536983|537327|538485|539090|539091|551330|551331|552216|570695|570770|581543|581570|581575|581642|581696|608913|608914|608970|611981|612182|615946|622459|622922|626026|647965|648080|654880|772648|802225|847623|858582|858787|880414|880415|880416|880417|880419|880420|880422|880423|880424|880425|880426|880427|880428|880429|880430|880431|880432|880433|880434|880435|880436|880437|880438|880439|880440|880442|880443|880445|880446|880447|880448|880449|880450|880451|880452|880453|880454|880455|880456|880457|880458|880744|880745|880746|880747|880748|880749|880750|880751|881925|881927|881928|881929|881931|881932|881933|881934|881935|881936|881937|881938|961347|961633|966803|967229|971130|971131|974531", + "text": "Central core myopathy" + }, + { + "baseId": "28014|28015|28023|28026|28027|28028|28029|28030|28033|38459|38833|51078|70540|76892|76904|76904|99145|99146|99147|99148|99149|99150|99153|99154|99156|99157|99158|99160|99161|99162|99165|99166|99167|99168|99169|99170|99171|99172|99174|99175|99176|99177|99178|99180|99181|99183|99184|99185|99186|99188|99190|99191|99192|99194|99195|99196|99197|99199|99200|99201|99202|99203|99204|99205|99206|99207|99208|99209|99213|99215|136736|136739|136747|136758|136759|136762|136767|136769|136770|136782|136791|136797|136800|136801|136823|136845|136846|136858|136861|136867|136869|136870|136881|136896|136899|136920|136922|136927|136930|136930|136937|136938|136940|136956|136979|136989|169542|169543|169546|169547|169550|169553|169554|169559|169561|169563|169564|169565|169568|169570|169571|169572|169575|169576|169577|169578|169579|169581|171228|171229|171234|171236|171241|171242|171244|177297|178027|178029|178033|188764|192085|194218|194319|194770|195107|195121|195121|195251|195489|195490|196101|196371|196376|196388|196401|198021|198022|198027|198030|208580|208585|208586|215566|226098|226114|226117|226119|226126|226127|226129|226138|226140|226141|226974|226974|256902|256903|256923|256927|256935|256941|256943|256946|256953|256957|256962|256967|256968|256974|256978|256980|256985|256993|257011|257031|257040|257046|257050|257052|257096|265716|268109|268402|270094|274154|274354|333289|333292|333303|333315|333324|333326|333328|333336|333337|333340|333348|333349|333356|333365|333372|333377|333379|333394|333395|333396|333397|333402|333415|333424|333430|333438|333457|333458|333459|343397|343402|343409|343410|343412|343414|343416|343417|343419|343421|343424|343428|343429|343433|343436|343439|343452|343457|343465|343469|343478|343490|343494|343495|348681|348682|348696|348700|348703|348705|348707|348712|348719|348721|348722|348723|348726|348730|348732|348743|348745|348746|348748|348752|348756|348760|348767|348771|348772|348773|348784|348785|348788|348790|348799|348800|348804|348805|348809|348810|348816|348818|348820|348826|348828|349736|349740|349745|349746|349748|349750|349752|349754|349759|349760|349762|349765|349767|349770|349773|349774|349776|349777|349780|349783|349786|349789|360414|361049|361346|377439|379547|390354|410578|410591|410596|413513|415649|438105|446123|468667|468667|468669|469680|469738|469791|470195|470698|470790|470832|507303|507315|532913|532927|532933|532998|533033|533050|533355|533390|536983|537327|539090|539091|552217|552218|570695|570770|573075|574949|574950|581435|581465|581543|581570|581575|581642|609148|609151|647965|684786|684802|689022|694407|756962|756965|772648|772655|778371|798752|847574|847620|847623|847635|858779|858782|858783|858784|858786|880414|880415|880416|880417|880418|880419|880420|880421|880422|880423|880424|880425|880426|880427|880428|880429|880430|880431|880432|880433|880434|880435|880436|880437|880438|880439|880440|880441|880442|880443|880444|880445|880446|880447|880448|880449|880450|880451|880452|880453|880454|880455|880456|880457|880458|880743|880744|880745|880746|880747|880748|880749|880750|880751|881925|881926|881927|881928|881929|881930|881931|881932|881933|881934|881935|881936|881937|881938|882880|961347|961633", + "text": "Minicore myopathy with external ophthalmoplegia" + }, + { + "baseId": "28016", + "text": "History of neonatal hypotonia" + }, + { + "baseId": "28016|48983|49142|360837|360838|361092|581713|623603|800785|801079", + "text": "Ptosis" + }, + { + "baseId": "28016", + "text": "Sacral agenesis" + }, + { + "baseId": "28021|28034|28035|38459|38833|51078|99145|99146|99147|99148|99149|99150|99151|99154|99156|99157|99158|99160|99161|99162|99165|99166|99167|99168|99169|99170|99171|99173|99174|99175|99176|99177|99178|99180|99181|99182|99183|99184|99185|99186|99188|99190|99191|99192|99194|99195|99196|99197|99199|99200|99201|99202|99203|99204|99205|99206|99207|99208|99209|99211|99212|99213|99215|136736|136758|136759|136762|136767|136770|136782|136797|136823|136858|136861|136869|136870|136881|136896|136899|136920|136937|136938|136956|136979|136989|169542|169543|169546|169547|169550|169553|169560|169561|169563|169565|169568|169571|169572|169575|169576|169577|169578|169580|169581|171228|171229|171234|171238|171242|178027|178029|178033|192085|194218|194319|194770|195107|195489|195490|196101|196375|196376|196401|198030|208580|208586|208594|215566|226098|226114|226117|226119|226140|226141|256902|256903|256909|256920|256923|256925|256935|256941|256943|256944|256946|256948|256953|256958|256967|256968|256974|256978|256980|256987|257000|257031|257032|257035|257040|257046|257052|257096|265716|268402|270094|271556|274354|333289|333292|333301|333303|333315|333320|333324|333326|333328|333336|333337|333340|333348|333349|333356|333365|333371|333372|333375|333377|333379|333394|333395|333396|333397|333402|333410|333413|333414|333415|333420|333424|333430|333435|333438|333442|333452|333453|333457|333458|333459|343386|343389|343390|343397|343402|343409|343410|343412|343414|343416|343417|343419|343420|343421|343424|343425|343428|343429|343432|343433|343435|343436|343439|343440|343452|343453|343457|343465|343469|343475|343476|343478|343479|343490|343494|343495|348681|348682|348696|348700|348703|348705|348707|348712|348713|348719|348721|348722|348723|348726|348730|348732|348737|348738|348740|348743|348745|348746|348748|348752|348756|348758|348760|348765|348767|348771|348772|348773|348777|348784|348785|348788|348790|348799|348800|348804|348805|348809|348810|348816|348818|348820|348826|348828|349736|349738|349740|349745|349746|349748|349750|349752|349753|349754|349756|349757|349759|349760|349762|349764|349765|349767|349770|349773|349774|349776|349777|349779|349780|349783|349786|349789", + "text": "Neuromuscular disease, congenital, with uniform type 1 fiber" + }, + { + "baseId": "28022|28023|136794|581590", + "text": "Central core disease, autosomal recessive" + }, + { + "baseId": "28023|136775|136776|136985", + "text": "volatile anesthetics response - Toxicity/ADR" + }, + { + "baseId": "28028|39430|99791|360798|360799|360810|360882|513914", + "text": "EMG abnormality" + }, + { + "baseId": "28036|28037|28204", + "text": "Retinitis pigmentosa 7, digenic" + }, + { + "baseId": "28037|28201|28203|28211|28217|28218|28219|28220|104587|192225", + "text": "Retinitis pigmentosa 7" + }, + { + "baseId": "28038|28039|94532|106497", + "text": "Diamond-Blackfan anemia 4" + }, + { + "baseId": "28040|28041|28042|289809|290574|290575|293655|294198|294202|294207|294208|451802|519049|559413|559415|562637|651033|798527|819361|819362|851554|888590|888591|931873", + "text": "Diamond-Blackfan anemia 5" + }, + { + "baseId": "28043|28044|678173|678174|678175|678176|678177|678178|678179|678180|678181|678182|678183|678184|678185|678186|678187|678188|678189|678190|678191|678192|678193|678194|678195|678196|678197|678198|678199|678200|678201|678202|678203|678204|678205|678206|678207|678208|678209|678210|678211|678212|678213|678214|678215|678216|678217|678218|678219|678220|678221|678222|678223|678224|678225|678226|678227|678228|678229|678230|678231|678232|678233|678234|678235|678236|678237|678238|678239|678240|678241|678242|678243|678244|678245|678246|678247|678248|678249|678250|678251|678252|678253|678254|678255|678256|678257|678258|678259|678260|678261|678262|678263|678264|678265|678266|678267|678268|678269|678270|678271|678272|678273|678274|678275|678276|678277|678278|678279|678280|678281|678282|678283|678284|678285|678286|678287|678288|678289|678290|678291|678292|678293|678294|678295|678296|678297|678298|678299|678300|678301|678302|678303|678304|678305|678306|678307|678308|678309|678310|678311|678312|678313|678314|678315|678316|678317|678318|678319|678320|678321|678322|678323|678324|678325|678326|678327|678328|678329|678330|678331|678332|678333|678334|678335|678336|678337|678338|678339|678340|678341|678342|678343|678344|678345|678346|678347|678348|678349|678350|678351|678352|678353|678354|678355|678356|678357|678358|678359|678360|678361|678362|678363|678364|678365|678366|678367|678368|678369|678370|678371|678372|678373|678374|678375|678376|678377|678378|678379|678380|678381|678382|678383|678384|678385|678386|678387|678388|678389|678390|678391|678392|678393|678394|678395|678396|678397|678398|678399|678400|678401|678402|678403|678404|678405|678406|678407|678408|678409|678410|678411|678412|678413|678414|678415|678416|678417|678418|678419|678420|678421|678422|678423|678424|678425|678426|678427|678428|678429|678430|678431|678432|678433|678434|678435|678436|678437|678438|678439|678440|678441|678442|678443|678444|678445|678446|678447|678448|678449|678450|678451|678452|678453|678454|678455|678456|678457|678458|678459|678460|678461|678462|678463|678464|678465|678466|678467|678468|678469|678470|678471|678472|678473|678474|678475|678476|678477|678478|678479|678480|678481|678482|678483|678484|678485|678486|678487|678488|678489|678490|678491|678492|678493|678494|678495|678496|678497|678498|678499|678500|678501|678502|678503|678504|678505|678506|678507|678508|678509|678510|678511|678512|678513|678514|678515|678516|678517|678518|678519|678520|678521|678522|678523|678524|678525|678526|678527|678528|678529|678530|678531|678532|678533|678534|678535|678536|678537|678538|678539|678540|678541|678542|678543|678544|678545|678546|678547|678548|678549|678550|678551|678552|678553|678554|678555|678556|678557|678558|678559|678560|678561|678562|678563|678564|678565|678566|678567|678568|678569|678570|678571|678572|678573|678574|678575|678576|678577|678578|678579|678580|678581|678582|678583|678584|678585|678586|678587|678588|678589|678590|678591|678592|678593|678594|678595|678596|678597|678598|678599|678600|678601|678602|678603|678604|678605|678606|678607|678608|678609|678610|678611|678612|678613|678614|678615|678616|678617|678618|678619|678620|678621|678622|678623|678624|678625|678626|678627|678628|678629|678630|678631|678632|678633|678634|678635|678636|678637|678638|678639|678640|678641|678642|678643|678644|678645|678646|678647|678648|678649|678650|678651|678652|678653|678654|678655|678656|678657|678658|678659|678660|678661|678662|678663|678664|678665|678666|678667|678668|678669|678670|678671|678672|678673|678674|678675|678676|678677|678678|678679|678680|678681|678682|678683|678684|678685|678686|678687|678688|678689|678690|678691|678692|678693|678694|678695|678696|678697|678698|678699|678700|678701|678702|678703|678704|678705|678706|678707|678708|678709|678710|678711|678712|678713|678714|678715|678716|678717|678718|678719|678720|678721|678722|678723|678724|678725|678726|678727|678728|678729|678730|678731|678732|678733|678734|678735|678736|678737|678738|678739|678740|678741|678742|678743|678744|678745|678746|678747|678748|678749|678750|678751|678752|678753|678754|678755|678756|678757|678758|678759|678760|678761|678762|678763|678764|678765|678766|678767|678768|678769|678770|678771|678772|678773|678774|678775|678776|678777|678778|678779|678780|678781|678782|678783|678784|678785|678786|678787|678788|678789|678790|678791|678792|678793|678794|678795|678796|678797|678798|678799|678800|678801|678802|678803|678804|678805|678806|678807|678808|678809|678810|678811|678812|678813|678814|678815|678816|678817|678818|678819|678820|678821|678822|678823|678824|678825|678826|678827|678828|678829|678830|678831|678832|678833|678834|678835|678836|678837|678838|678839|678840|678841|678842|678843|678844|678845|678846|678847|678848|678849|678850|678851|678852|678853|678854|678855|678856|678857|678858|678859|678860|678861|678862|678863|678864|678865|678866|678867|678868|678869|678870|678871|678872|678873|678874|678875|678876|678877|678878|678879|678880|678881|678882|678883|678884|678885|678886|678887|678888|678889|678890|678891|678892|678893|678894|678895|678896|678897|678898|678899|678900|678901|678902|678903|678904|678905|678906|678907|678908|678909|678910|678911|678912|678913|678914|678915|678916|678917|678918|678919|678920|678921|678922|678923|678924|678925|678926|678927|678928|678929|678930|678931|678932|678933|678934", + "text": "Prostate cancer, hereditary, 1" + }, + { + "baseId": "28046|28047|287533|287536|287537|287539|288295|288302|288303|288313|288314|291093|291094|291261|291267|291268|291269|291271|622953|885651|885652|885653|885654|885655|885656|885657|885658|885659|885660|885661|885662|885663|885664|885665|885666|916884|917429|964654", + "text": "Deficiency of ribose-5-phosphate isomerase" + }, + { + "baseId": "28048|28049|28050|28051|50332|512938|623880|858596|858597|858598|858599|858600|858601|858602|858603|858604|858605|858606|858607|858608|858609|858610|858611|972477", + "text": "Oguchi disease 2" + }, + { + "baseId": "28052|28052|28053|28054|28055|28056|28057|28058|28059|28060|28061|28062|28063|28064|28065|28066|28067|28068|28069|28070|28071|28072|28073|28074|28076|28077|28078|28079|28081|28082|28085|28086|28087|28088|28089|28090|28091|28092|28094|28095|152797|193443|404762|431666|486336|585498|613629|613630|613631|613632|613633|613634|613635|613636|613637|613638|622873|623273|623832|790329|790330|790331|790332|790333|799312|799313|800488|815978|827534|827535|851025|856279|856280|856283|856284|856288|856289|856293|943326|970753|970754|972851|972852|972853|972854|972855|972856|972857|972859|972860|972861|972862|972863|972864|972865|972866|972867|972868|972870|972871|972872|972873|972874", + "text": "Retinitis pigmentosa 4" + }, + { + "baseId": "28052|28083|28084|28093|152800|190277|250919|250920|250921|250922|288724|288725|288729|288730|288733|288736|288745|288748|288749|289456|289458|289463|289469|289484|289489|289490|289493|289494|292512|292515|292516|292519|292520|292530|292533|292534|292535|292685|292689|292695|292710|292724|292732|292733|292734|292736|292737|404762|585498|620104|747971|827540|887948|887949|887950|887951|887952|887953|887954|887955|887956|887957|887958|887959|887960|887961|887962|887963|887964|887965|887966|887967|887968|887969|887970|887971|887972|887973|887974|891564|891565|972859|972869", + "text": "Congenital stationary night blindness, autosomal dominant 1" + }, + { + "baseId": "28053|513929|514148|641434", + "text": "Nyctalopia" + }, + { + "baseId": "28053|40114|40115", + "text": "Peripheral visual field loss" + }, + { + "baseId": "28053|104561|513966|513994", + "text": "Blurred vision" + }, + { + "baseId": "28067|28136|28138|28139|28140|189092|623000|800526|800579", + "text": "Retinitis punctata albescens" + }, + { + "baseId": "28075|28085|38830", + "text": "Retinitis pigmentosa 4, autosomal recessive" + }, + { + "baseId": "28096|28097|28099|28100|28101|28103|28104|28105", + "text": "Rh-null, regulator type" + }, + { + "baseId": "28098|28102", + "text": "Rh mod blood group phenotype" + }, + { + "baseId": "28106|28107|49861|919305|920289|964845", + "text": "Retinal dystrophy, iris coloboma, and comedogenic acne syndrome" + }, + { + "baseId": "28108|28109|28110|28111|28112|28113|28114|28115|28116|28119|28120|28121|28122|28123|28124|28125|28126|28126|28127|28128|28129|28130|28131|28132|28133|28134|28135|46756|50122|50123|50124|50178|98746|98749|98750|98751|98752|132294|132295|132296|132297|132298|132299|132300|132301|132302|132303|132304|132305|132306|132307|132308|132309|132310|132311|132312|132313|132314|132315|132316|132317|132319|132320|132321|132322|132323|132324|132325|132326|132328|132329|132330|132331|132332|132333|132334|132335|132336|132337|132338|132339|132340|132341|132342|132342|132343|132344|132345|132346|132347|132348|132349|132350|132351|132352|132353|132354|132355|138846|138854|138857|138858|138859|138860|138861|138862|138863|138864|143199|143200|151639|151676|178002|190247|213176|222613|239609|241741|241742|241743|241744|241746|241747|241748|241749|241750|241751|241752|241753|241754|241755|241756|241757|241759|241760|241761|241762|241855|247090|254855|254856|266488|269797|319912|319913|319914|319918|319919|319921|319922|319926|328435|328436|328437|328444|328447|328448|328449|328451|328452|328453|328455|328469|328470|334886|334891|334893|334899|334900|334919|334926|334933|334934|334935|334938|336777|336780|336789|336792|336793|336799|336802|336803|336804|336813|336818|363208|373551|390037|392722|399102|399427|399429|399431|399433|399434|399436|399441|399451|399454|399468|399469|399471|399474|399479|399482|399483|399486|399505|399508|399509|399513|399523|399524|399528|399529|399538|399539|399541|399547|399549|399551|399553|399556|399557|399559|399574|399611|399978|399984|399999|400002|400007|400010|400013|400015|400017|400027|400034|400042|400190|400193|400204|400209|400210|400212|409032|420503|420504|420513|420514|420522|420523|420527|420530|420532|420534|420535|420542|420546|420553|420560|420575|420582|420585|420586|434948|462855|462908|462915|462915|462916|462917|462918|462920|462922|462924|462925|462929|462933|462938|462942|462944|462945|462953|462955|462958|462959|463274|463279|463279|463298|463301|463304|463310|463317|463325|463326|463336|463343|463344|463349|463351|463361|463363|463366|463437|463632|463639|463654|463655|463656|463657|463669|463672|463675|463680|463684|463685|463691|463693|463694|463700|463704|463855|463858|463864|463870|463871|463875|463879|463882|463886|463892|463892|463896|463897|463899|463901|463903|463905|463907|463913|463922|463924|477005|477013|477018|477274|477279|477622|477624|477627|477637|487737|487738|505190|514031|527442|527719|527722|527738|527746|527748|527752|527753|527758|527764|527766|527770|527772|527773|527776|527778|527780|527782|527785|527786|527787|527788|527790|527792|527798|527800|527803|527806|527808|527813|528083|528085|528090|528097|528099|528102|528105|528109|528113|528115|528121|528123|528126|528129|528138|528146|528148|528275|528282|528292|528296|528298|528302|528303|528304|528307|528310|565827|566124|566125|566130|566132|566135|566139|566144|566146|566148|566149|566160|566161|566163|566165|566167|567580|567583|567587|567592|567595|567596|567612|567613|567615|567621|567638|567640|567655|567660|567665|567666|567670|567673|567679|567688|567692|567706|567709|567714|567718|567721|568222|568225|568551|568552|568554|568556|568558|568559|568561|568562|568568|568568|568575|568576|568581|568583|568586|568587|568589|568596|568598|568600|568602|568604|568610|568611|568613|568614|572492|572494|572496|572499|572506|572510|572516|572525|572526|572532|572537|572538|572539|572548|572549|572550|572551|572555|572567|572573|575924|575925|575926|575927|575928|575929|581783|581784|581785|581786|612001|612005|612006|612018|612019|623315|623316|641945|641946|641947|641948|641949|641950|641951|641952|641953|641954|641955|641956|641957|641958|641959|641960|641961|641962|641963|641964|641965|641966|641967|641968|641969|641970|641971|641972|641973|641974|641975|641976|641977|641978|641979|641980|641981|641982|641983|641984|641985|641986|641987|641988|641989|641990|641991|641992|641993|641994|641995|641996|641997|641998|641999|642000|642001|642002|642003|642004|642005|642006|642007|642008|642009|642010|642011|642012|642013|642014|642015|642016|642017|652281|652293|652295|652364|652374|652396|652401|652402|652514|652533|652538|652540|652793|652797|652830|652838|684419|688171|688172|688173|688174|688175|688176|690067|690068|693383|693385|693386|693388|693389|693390|693392|695600|702703|702704|702705|702706|702708|730922|739062|739063|744985|769575|769581|776223|778150|779608|779678|784605|784607|784608|784609|784610|784611|784613|787857|791346|791347|791348|791349|791350|791351|791352|791353|791354|791355|791356|791357|791358|791359|791360|791361|791362|791363|791364|791365|791366|791367|791368|791369|791370|791371|791372|791373|791374|811827|811834|811836|811838|811840|811841|811848|811852|811864|811866|811870|811873|811882|811891|811900|815581|815582|820569|820570|820571|820572|820573|820574|820575|820576|820577|820578|820579|820580|820581|820582|840894|840895|840896|840897|840898|840899|840900|840901|840902|840903|840904|840905|840906|840907|840908|840909|840910|840911|840912|840913|840914|840915|840916|840917|840918|840919|840920|840921|840922|840923|840924|840925|840926|840927|840928|840929|840930|840931|840932|840933|840934|840935|840936|840937|840938|840939|840940|840941|840942|840943|840944|840945|840946|840947|840948|840949|840950|840951|840952|840953|840954|840955|840956|840957|840958|840959|840960|840961|840962|840963|840964|840965|851531|851533|851535|851537|851973|851975|852541|852542|852718|852719|852721|871383|871384|871385|871386|871387|871388|871389|871390|871391|871392|871393|871394|871395|871396|871397|872343|872344|872345|920323|920324|920325|926921|926922|926923|926924|926925|926926|926927|926928|926929|926930|926931|926932|926933|926934|926935|926936|926937|926938|936447|936448|936449|936450|936451|936452|936453|936454|936455|936456|936457|936458|936459|936460|936461|936462|936463|936464|936465|936466|936467|936468|936469|936470|936471|936472|936473|936474|940286|940287|940288|940289|940290|941052|941053|941054|948372|948373|948374|948375|948376|948377|948378|948379|948380|948381|948382|948383|948384|948385|948386|948387|948388|948389|948390|948391|948392|948393|948394|948395|948396|948397|957108|957109|957110|957111|957112|957113|960072|960073|960798|966602|966603|966604|966605|966606|966607|983560|983561|983562", + "text": "Retinoblastoma" + }, + { + "baseId": "28126|185345", + "text": "Vulvar adenocarcinoma of mammary gland type" + }, + { + "baseId": "28129", + "text": "Retinoblastoma, trilateral" + }, + { + "baseId": "28137|28138|98754|194294|265976|268054|323448|323451|323456|323458|323459|323460|323461|323472|323473|333147|333149|333151|333153|333160|333162|333163|339985|339987|339991|339993|339996|339999|341371|341373|341378|341381|341382|341384|341387|726328|874211|874212|874213|874214|874215|874216|874217|874218|874219|874220|874221|874222|874223|874224|876583|876584|876585", + "text": "Newfoundland rod-cone dystrophy" + }, + { + "baseId": "28139|189092", + "text": "Bothnia retinal dystrophy" + }, + { + "baseId": "28139|28140|495363", + "text": "RLBP1-Related Disorders" + }, + { + "baseId": "28141", + "text": "Retinitis pigmentosa 57" + }, + { + "baseId": "28142|28143|28144|28145|28147|28148|177924|214454|226524|226525|227273|293979|367986|431675|513054|513951|551536|551537|551538|551539|551540|551541|623839|672057|918902|918903|920204|974513|974514", + "text": "Retinitis pigmentosa 40" + }, + { + "baseId": "28146|98674|98675|98676|106440|142341|142342|142343|142347|177922|190238|190239|192618|194288|194815|260350|266047|266049|271310|272984|293969|293970|293971|293978|293979|293980|293981|293985|293986|295264|295265|295273|295274|295279|295342|295348|295374|295375|295378|295379|295380|295386|295392|295395|295399|295400|295401|295404|295406|295407|295408|295416|299055|299091|299092|299102|299103|299104|299112|299115|299117|299125|299139|299140|299141|299144|299145|299151|299152|299153|299156|299164|299172|299173|299186|299187|299192|299193|299198|299199|299202|299205|299208|299210|299231|299233|367986|734694|764606|829437|829458|829459|851826|891998|891999|892000|892001|892002|892003|892004|892005|892051|892052|892053|892054|892055|892056|892057|892058|892059|892060|892061|892062|892063|892064|892065|892066|892067|892068|895986|895987|895988|895989|895990", + "text": "Congenital stationary night blindness, autosomal dominant 2" + }, + { + "baseId": "28149|28150|28151|38829|98917|106433|142336|227005|269281|296300|302411|433782|799401|799402|799403|920207", + "text": "Retinitis pigmentosa 43" + }, + { + "baseId": "28153|28153|28154|28154|28156|28156|28157|28157|28158|28158|28159|28159|38825|38825|38827|38828|38828|98766|98766|98767|98767|104710|104711|104715|104715|104718|104718|104720|104720|104724|104724|104726|104726|104727|104727|104730|104730|104731|104733|104735|104736|104736|104738|104739|104747|104748|104750|104750|104753|104756|104756|104757|104757|104759|104759|104760|104761|104761|104763|104763|104764|104770|104775|104776|104778|104778|104779|104779|104782|104783|104789|104789|104790|104792|104793|104793|104794|104794|193415|195577|281145|281146|281151|281153|281156|281764|281767|281769|282957|282958|282960|282960|282963|282966|283247|283248|283248|359276|360814|361383|418817|431611|448228|448228|448230|448370|513509|541288|541292|550246|550249|550249|551518|558585|587734|587734|612345|628252|628253|628253|628254|696860|696860|696861|696862|696863|696864|696864|707502|707503|707504|707504|719065|719065|719066|719066|719067|732571|732572|732573|746631|746632|746632|758920|758920|759059|759059|761008|762067|762071|762071|777151|777160|780761|780762|780763|789992|789993|789994|789995|789995|799224|818174|818992|824390|824391|824392|824393|824394|824394|824395|824396|824397|824398|824398|824399|824400|824401|824402|824403|856026|858499|858499|858500|858500|858501|858502|858502|858503|864771|864772|864773|864774|864775|864776|864777|864778|864779|864780|864781|864782|864783|864784|864785|864785|864786|864787|864788|864789|864790|864791|864792|864793|864794|865205|865206|865207|922156|930654|930655|930656|930657|939825|939826|939827|940648|940648|942093|942094|942095|942096|942097|942097|952510|952511|952512|952513|952514|952515|952516|952517|952518|952519|952520|952521|959569|962249|962250|962251|962252|962253|962254|962255|962256|962257|962258|962259|962260|962261|962262|962263|962264|962265|962266", + "text": "Leber congenital amaurosis 2" + }, + { + "baseId": "28153|28154|28154|28154|28155|28156|28156|28157|28157|28158|28158|28159|28159|38825|38825|38828|98766|98767|104715|104715|104718|104720|104724|104726|104727|104730|104731|104736|104739|104747|104750|104753|104756|104757|104759|104761|104763|104763|104775|104776|104778|104779|104789|104792|104793|104794|193415|195577|281153|281153|282960|283248|359276|360814|360814|361383|418817|448228|448230|448370|541288|541292|550246|550249|558585|587734|628252|628253|628254|696860|696861|696862|696863|696864|707502|707503|707504|719065|719066|719067|732571|732572|732573|746631|746632|758920|759059|761008|762067|762071|777151|777160|780761|780762|780763|789995|818174|818174|818992|824390|824391|824392|824393|824394|824395|824396|824397|824398|824399|824400|824401|824402|824403|858499|858500|858502|864785|922156|930654|930655|930656|930657|939825|939826|939827|940648|942093|942094|942095|942096|942097|952510|952511|952512|952513|952514|952515|952516|952517|952518|952519|952520|952521|959569", + "text": "Retinitis pigmentosa 20" + }, + { + "baseId": "28154|38825|104753|104763|361383|761008", + "text": "RPE65-Related Disorders" + }, + { + "baseId": "28160|177189|187661|187662|187663|187664|268145|278727|278730|278738|278740|278744|278746|278750|278759|278761|278766|278771|278774|278775|278776|278784|278792|278794|278922|278923|278930|278933|278936|278937|278943|278945|278960|278961|278962|278964|280091|280094|280097|280099|280102|280108|280109|280128|280129|280130|280131|280135|280145|280146|280147|280176|280178|280181|280182|280187|280194|280199|280200|280215|280216|280217|280220|280221|280222|280226|280229|280249|280250|280261|280269|280271|280272|280273|438752|447772|690482|690483|690484|690485|690486|690487|696441|696442|732081|799153|823311|823312|823313|823314|823315|863443|863444|863445|863446|863447|863448|863449|863450|863451|863452|863453|863454|863455|863456|863457|863458|863459|863460|863461|863462|863463|863464|863465|863466|863467|863468|863469|863470|863471|863472|930268|930269|941689", + "text": "Leber congenital amaurosis 12" + }, + { + "baseId": "28161", + "text": "Hyperproreninemia, familial" + }, + { + "baseId": "28162|28163|33102|33103|33104|33105|33106|33107|33109|33110|33111|59366|59367|59368|59369|59370|59371|205185|237023|249673|249765|250978|250979|256303|256304|256305|256306|256308|256309|256310|256311|256312|256313|256314|278513|278514|278515|278516|278526|278527|278638|278639|278640|279426|279427|279430|279431|279435|279437|279438|279439|279450|279720|279727|279728|279730|279780|279784|279795|279944|279945|279946|279952|280966|280968|280970|280971|280974|280975|280980|280981|280982|280986|280989|280990|280999|281110|281112|281115|281116|281117|281119|281126|281128|281150|281157|281158|281159|281160|289068|289071|289072|289073|289075|289798|289807|289814|289833|289837|292880|292889|292891|292892|292893|292896|292898|292901|293137|293152|293156|293158|293167|293168|293169|329278|329282|329283|329284|329291|329294|329295|329304|329306|329311|329312|329313|329318|329319|329322|329323|329325|329326|329330|329331|339518|339519|339523|339525|339532|339535|339536|339540|339542|339546|339547|339548|339554|339555|339556|339557|339568|339570|339574|339581|339588|339596|345299|345300|345304|345306|345308|345311|345314|345315|345320|345321|345322|345323|345327|345334|345337|345338|345343|345344|345345|346688|346691|346692|346694|346696|346697|346700|346702|346705|346706|346707|346710|346714|346715|346718|346720|346722|346725|346726|346729|346730|346736|353097|353635|362071|362152|376493|550631|620598|620599|697877|704275|704276|704278|704279|707192|715613|715614|718781|720245|727337|727338|732254|732255|733866|733867|740930|746264|774432|778382|778409|785682|863331|863332|863333|863334|863335|863336|863337|863338|863339|863340|863836|863837|863838|863839|863840|863841|863842|863843|863844|863845|863846|863847|863848|863849|863850|863851|863852|863853|863854|863855|863856|863857|863858|863859|878041|878042|878043|878044|878045|878046|878047|878048|878049|878050|878051|878052|878053|878054|878055|878056|878057|878058|878059|878060|878061|878062|878063|878064|878065|878066|878067|878068|878069|878070|878071|878072|878073|878074|878075|878076|878077|878078|878079|878080|878081|878082|878083|878084|878085|878086|878087|878088|878089|878090|878091|878092|878093|878094|878095|878096|878097|878098|878099|878100|878101|878102|878103|878104|880561|880562|880563|880564|888142|888143|888144|888145|888146|888147|888148|888149|888150|888151|888152|888153|888154|888155|888156|888157|888158|888159|888160|891587|891588|906230|906270|918592|962795|962796|962797|962798", + "text": "Renal dysplasia" + }, + { + "baseId": "28162|28164|28165|249673|278513|278514|278515|278516|278526|278527|278638|278639|278640|279780|279784|279795|279944|279945|279946|279952|432278|774432|863331|863332|863333|863334|863335|863336|863337|863338|863339|863340|962666", + "text": "Hyperuricemic nephropathy, familial juvenile, 2" + }, + { + "baseId": "28166|38823|38824|185687|185688|472236|791447", + "text": "Mirror movements 2" + }, + { + "baseId": "28167", + "text": "Breast cancer, susceptibility to, in BRCA1 and BRCA2 carriers" + }, + { + "baseId": "28168|28169|28173|28174|28175|28178|28179|28180|28187|28192|28200", + "text": "Severe combined immunodeficiency, B cell-negative" + }, + { + "baseId": "28168|28169|28170|28171|28174|28175|28176|28177|45377|45378|45379|45381|142590|408345|408346|415267|433888|481991|488103|488104|488105|488106|488107|488108|488109|488110|488111|488112|488113|488114|488115|488116|488117|488118|488119", + "text": "Recombinase activating gene 2 deficiency" + }, + { + "baseId": "28168|28169|28170|28171|28174|28175|28176|28177|45377|45378|45379|45381|142590|408345|408346|415267|433888|481991|488103|488104|488105|488106|488107|488108|488109|488110|488111|488112|488113|488114|488115|488116|488117|488118|488119|589847|589848|589849|589850|589851", + "text": "Primary immunodeficiency" + }, + { + "baseId": "28169|28172|28172|28174|28176|28176|28177|28177|28177|28185|28193|28195|28197|28198|28198|28199|28200|38822|45371|45371|45372|45373|45374|45375|45376|45377|45380|45381|79572|79572|79574|79575|79576|79581|79582|142585|142586|142587|142588|142589|142590|142590|254148|254151|269282|313990|313992|320387|320393|320401|326382|326384|326430|326434|326435|326435|327380|327381|327462|327462|327474|327480|359878|359938|359941|371408|408342|415266|425922|433888|433888|444800|461092|461100|461295|461298|461300|461304|461574|461576|461890|461904|461907|481990|488104|488105|488113|488118|488119|491899|526182|526185|526190|526194|526666|526667|526671|526676|526679|526682|564612|564613|567235|567235|567239|567241|567241|567244|567245|567249|570614|570620|570629|612909|614356|614356|614357|624428|640003|640004|640005|640006|640007|640008|640009|640010|640011|640012|640013|640014|640015|640016|640017|640018|640019|640020|640021|640022|640023|640024|640025|640026|640027|640028|687777|687778|693020|693021|701752|712815|737962|768438|768440|768442|783988|783989|783990|791133|791134|820362|838357|838358|838359|838360|838361|838362|838363|838364|838365|838366|838367|838368|838369|838370|838371|838372|838373|838374|838375|838376|838377|838378|838379|838380|838381|838382|838383|838384|838385|838386|838387|838388|838389|838390|838391|838392|838393|838394|838395|838396|838397|838398|838399|838400|838401|838402|926215|926216|926217|926218|926219|926220|926221|926222|926223|926224|926225|935514|935515|935516|935517|935518|935519|935520|935521|947432|947433|947434|947435|947436|947437|947438|947439|947440|947441|947442|947443|947444|947445|956477|956478|956479|956480|956481|956482|956483|956484|956485|956486|956487|956488|956489|956490|956491|956492|956493|964363", + "text": "Combined cellular and humoral immune defects with granulomas" + }, + { + "baseId": "28177|76319|467467|467469|467471|468332|531769|531844|531851|531892|569725|569734|571589|624272|646691|646692|646693|646694|646695|715703|727425|760655|815896|815899|815900|815902|815903|815905|815925|815943|815946|816028|816029|846193|846194|846195|846196|846197|846198|852907", + "text": "Common variable immunodeficiency" + }, + { + "baseId": "28181", + "text": "RECOMBINATION ACTIVATING GENE 1 POLYMORPHISM" + }, + { + "baseId": "28190|28192|28193|28194|79572|567235|567241|614356|614357|964364", + "text": "Alpha/beta T-cell lymphopenia with gamma/delta T-cell expansion, severe cytomegalovirus infection, and autoimmunity" + }, + { + "baseId": "28203|28206|28209|28212|28218|28222|104543|104548|104554|104556|104570|104582|104585|104588|104601|104603|104611|152788|190248|270098|431694|456531|612147|623972|672067|691988|691989|699595|710519|735665|790628|800516|801389|819689|831954|831955|831956|831957|831958|831959|831960|831961|831962|831963|831964|831965|831966|831967|856459|856464|856466|933329|933330|933331|933332|933333|933334|933335|933336|933337|933338|933339|940037|940038|945031|945032|945033|945034|945035|945036|945037|954454|954455|954456|954457|954458|954459|954460|959805|959806|960584", + "text": "PRPH2-Related Disorders" + }, + { + "baseId": "28203|28204|28206|28209|28212|28218|28222|104556|104588|104593|104603|104611|190248|307578|612147|801389|831959|831960|856446|856454|856461|856464|933335|945036|962012|962018|962019|962021", + "text": "Patterned dystrophy of the retinal pigment epithelium" + }, + { + "baseId": "28204|104581", + "text": "Leber congenital amaurosis 18" + }, + { + "baseId": "28204|28208|28210|28213|28217|28218|98753|104543|104548|104554|104556|104580|104581|104592|104611|142607|142608|142609|142611|177987|252356|270098|300152|300154|300156|300157|300161|300164|300166|300167|300169|300173|302873|302878|302879|302880|302885|302916|302918|302926|302934|302935|302948|302949|302951|302953|302954|302960|302962|302963|307343|307353|307354|307355|307361|307363|307369|307552|307564|307565|307570|307575|307578|307579|307586|431694|489877|612147|614544|699595|790628|790629|790630|800517|831963|896283|896284|896285|896286|896287|896288|896289|896290|896291|896292|896293|896294|896295|896296|896297|896298|896299|896300|896301|896302|896303|896304", + "text": "Macular dystrophy, patterned, 1" + }, + { + "baseId": "28205", + "text": "Retinitis punctata albescens, autosomal dominant" + }, + { + "baseId": "28206|28209|28221|28222|98753|104543|104548|104554|104592|104611|142607|142608|142609|142611|177987|252356|270098|300152|300154|300156|300157|300161|300164|300166|300167|300169|302873|302878|302879|302880|302885|302916|302918|302926|302934|302935|302948|302949|302951|302953|302954|302960|302962|302963|307343|307353|307354|307355|307552|307564|307565|307570|307575|307579|307586|489877|699595|831963|896283|896284|896285|896286|896287|896288|896289|896290|896291|896292|896293|896294|896295|896296|896297|896298|896299|896300|896301|896302|896303|896304", + "text": "Choroidal dystrophy, central areolar 2" + }, + { + "baseId": "28207|28212|28214|28215|28216|98753|104543|104548|104554|104556|104592|104607|104611|142607|142608|142609|142611|177987|252356|270098|300152|300154|300156|300157|300161|300164|300166|300167|300169|302873|302878|302879|302880|302885|302916|302918|302926|302934|302935|302948|302949|302951|302953|302954|302960|302962|302963|307343|307353|307354|307355|307552|307564|307565|307570|307575|307579|307586|432296|489877|590281|699595|818247|831963|896283|896284|896285|896286|896287|896288|896289|896290|896291|896292|896293|896294|896295|896296|896297|896298|896299|896300|896301|896302|896303|896304|964279|980328", + "text": "Macular dystrophy, vitelliform, adult-onset" + }, + { + "baseId": "28209|28222|104558|105193|105240|105308|105488|611528|800451|800470|800478|800532|800557|800568|800616", + "text": "maculopathy" + }, + { + "baseId": "28223|28224|28225|28226|53803|53805|175340|312276|312277|312305|312306|312308|312310|318114|318136|318145|318147|318155|318159|318170|318171|318178|318181|318182|318183|318185|318186|318187|324141|324144|324148|324173|324185|324197|324198|324200|324213|324218|324223|324241|324254|324256|324263|324980|324986|324990|324994|324998|493016|620383|620384|625873|866987|866988|866989|866990|866991|866992|866993|866994|866995|866996|866997|866998|866999|867000|867001|867002|867003|867004|867005|867006|867007|867008|867009|867010|867011|867012|867013|867014|867015|867016|867017|867018|868602|868603|970560", + "text": "Deafness, autosomal recessive 24" + }, + { + "baseId": "28227|28228|135326|142351|142352|142353|142355|142356|211018|211020|291384|292522|292523|292524|292526|292528|292540|292541|295904|295906|295916|295924|295925|295935|295938|367370|500371|626138|651138|660046|709006|734258|734259|743962|781793|828531|889544|889545|889546|889547|889548|889549|889550|889551|889552|889553|891701|923335|932075|953582|966668|966669|966670|966671|966672|966673|966675|966676", + "text": "Pyruvate dehydrogenase E1-beta deficiency" + }, + { + "baseId": "28229|28230|28231|28233|28234|28235|28236|266502|445922|481324|481325|682831|682832|682842|788918|816005|961629|963177|964882|983768|983769", + "text": "Autosomal recessive cutis laxa type 2B" + }, + { + "baseId": "28236|28237|38818|38819|38820|266502|961629", + "text": "Autosomal recessive cutis laxa type 3B" + }, + { + "baseId": "28240|28241|28242|28243|28244|173534|173535|173536|173537|173673|173674|173675|196087|228968|228969|287417|287421|287423|287424|287426|287427|287428|287429|288203|288208|288217|288218|288219|290870|290871|290873|290875|290882|290885|290890|291121|291122|291126|291127|291138|291145|291148|291149|291150|291152|291153|578406|578527|584248|588015|610681|620097|708393|719985|719986|774794|885569|885570|885571|885572|885573|885574|885575|885576|885577|885578|885579|885580|885581|885582|885583|885584|885585|885586|887407|887408|961003|965621|966788", + "text": "Surfactant metabolism dysfunction, pulmonary, 1" + }, + { + "baseId": "28245|39082", + "text": "Pulmonary fibrosis, idiopathic, susceptibility to" + }, + { + "baseId": "28246|28247|28248|28249|28250|28251|28252|28253|174394|174395|174533|174534|227321|304867|304873|304874|304876|304877|304883|304888|304889|308589|308599|308600|313748|313749|313769|313772|313774|313788|313801|313802|313803|313804|313805|313806|313861|313864|313868|313869|681808|899330|899331|899332|899333|899334|899335|899336|966598", + "text": "Surfactant metabolism dysfunction, pulmonary, 2" + }, + { + "baseId": "28254|28268|28269", + "text": "Postanesthetic apnea" + }, + { + "baseId": "28254|28255|28257|28258|28259|28264|28265|28266|28267|209042|227254|227255|251000|289421|289427|289428|289430|289431|290196|290199|290202|290204|290205|290206|290219|293286|293294|293295|293302|293720|293723|293724|293725|293729|293732|293733|357302|357303|357304|357305|357306|357307|357308|357309|357310|357311|357312|357313|357314|357315|357316|357317|357318|357319|357320|357321|357322|357323|542900|542901|542903|542910|542913|542916|542918|543063|543066|543067|543072|543078|543084|543088|543089|543134|543149|543151|543153|543155|543159|543163|543166|543171|543172|543183|543189|543191|620118|620119|620120|888340|888341|888342|888343|888344|888345|888346|888347|888348|888349|888350|888351|888352|888353|888354|888355|888356|888357|891615", + "text": "Deficiency of butyrylcholine esterase" + }, + { + "baseId": "28256", + "text": "Bche, h variant" + }, + { + "baseId": "28257", + "text": "BCHE, flouride 1" + }, + { + "baseId": "28258", + "text": "BCHE, fluoride 2" + }, + { + "baseId": "28259", + "text": "Butyrylcholinesterase activity" + }, + { + "baseId": "28260", + "text": "Bche, j variant" + }, + { + "baseId": "28261", + "text": "BCHE Newfoundland" + }, + { + "baseId": "28262", + "text": "BCHE Cynthiana" + }, + { + "baseId": "28263", + "text": "BCHE Johannesburg" + }, + { + "baseId": "28265", + "text": "Butyrylcholinesterase deficiency, fluoride-resistant, japanese type" + }, + { + "baseId": "28270|28271|188064|188065|255889|466018|466721|466723|467002|467005|530361|530563|530778|570496|645006|652665|693934|791647|820885|844360|919679|927962|949589|949590", + "text": "Cataract 21, multiple types" + }, + { + "baseId": "28272|28273|28274|28275|28276|136382|136383|136384|136385|136386|136387|255217|255218|255219|255220|255221|255222|255223|255224|255226|255227|322539|322543|322545|331908|331923|331931|331941|331943|331947|331952|338926|338928|338936|338942|338943|340540|340541|340543|340547|340548|340550|340555|620513|797135|799797|799798|799799|799800|873526|873527|873528|873529|873530|873531|873532|873533|876509|876510|876511", + "text": "Spherocytosis type 5" + }, + { + "baseId": "28277|28278|28279|28280|28281|28282|99979|99980|99981|99983|172094|172095|172096|178062|181391|194447|226998|227011|256760|256762|256763|256764|256765|267798|298565|298577|298596|298597|298614|298615|298622|298628|298633|298636|298637|300894|300937|300956|300960|300967|300990|300997|301001|301005|301009|301016|301025|301027|301033|301036|301038|305288|305322|305349|305358|305398|305401|305404|305437|305479|305500|305509|305549|305550|305584|332518|332520|332524|332526|332527|332534|332541|342734|342735|342737|342738|342739|342741|342746|342750|342752|342754|342757|342759|342762|342764|344622|344626|344630|348088|348092|348094|348099|348100|348101|348104|348105|348109|348110|348113|349359|349360|349363|349364|350622|350625|353740|360973|427500|485920|512818|513954|514058|620904|756701|879886|879887|879888|879889|879890|879891|879892|879893|879894|879895|879896|879897|879898|879899|879900|879901|879902|879903|879904|879905|879906|880691|880692|971112|980385|980386", + "text": "Polycystic liver disease 1" + }, + { + "baseId": "28283|28284|28285|28286|28287|28288|28289|28290|28291|38812|38813|51295|51298|51306|51311|51314|51323|51327|51329|51330|51331|51332|51333|51335|51336|51337|51340|135482|135483|191541|208622|334232|334239|334241|344149|344151|344157|344158|344161|344162|344164|344168|344169|344176|344177|344179|344183|344185|349341|349346|349348|350342|350343|350346|350347|350350|350351|350355|350358|430264|442255|508930|508931|608915|791950|791951|791952|860608|882447|882448|882449|882450|882451|882452|882453|882454|882455|882456|882457|882458|882924|882925|882926|882927|882928|915095|915096|915097|915098|920545|966400", + "text": "Spinocerebellar ataxia type 14" + }, + { + "baseId": "28292|28294|28295|28296|47515|49461|141642|141643|141644|287750|287756|287757|287763|287765|287773|287775|287779|288441|288443|288444|288445|291317|291327|291332|291333|291334|291336|291473|291479|291480|291481|291483|367104|451516|451793|451991|451991|559213|624252|630656|630661|691240|691241|720016|850925|885745|885746|885747|885748|885749|885750|885751|885752|885753|885754|885755|887417|887418|887419|887420", + "text": "Combined immunodeficiency due to ZAP70 deficiency" + }, + { + "baseId": "28297|28298|28299|28300|28301|249476|249477|249478|249479|249481|249482|249483|249484|249485|249486|249487|249488|263955|276914|276927|276930|276931|276947|276959|276960|276963|276964|276966|276968|276974|276979|276980|277020|277027|277032|277196|277202|277204|277205|277208|277209|277210|277223|277226|277228|277229|277287|277289|277290|277298|277300|277900|277903|277905|277915|277927|277945|277946|278002|278003|278004|278005|278009|278011|278012|278019|278031|278032|278033|278035|278037|278052|278055|278102|278104|278110|278111|278114|447339|447343|447375|515257|515278|515288|515344|556733|619959|622306|626100|627020|627039|627055|650555|650685|685583|718330|729934|822930|822963|862589|862590|862591|862592|862593|862594|862605|862606|862607|862608|862609|862610|862611|862612|862613|862614|862615|862631|862632|862633|862634|862635|862636|862637|862638|862639|865020|921727|941553", + "text": "Cataract 6, multiple types" + }, + { + "baseId": "28301", + "text": "Cataract 6, age-related cortical" + }, + { + "baseId": "28301", + "text": "Cortical senile cataract" + }, + { + "baseId": "28302|28303|28304|28305|28306|28307|28308|28309|28310|28314|28315|28321|28322|28323|28328|28329|28334|28338|28338|38808|138125|138127|138129|138131|139286|193378|193379|253699|253700|253704|253706|259933|268579|268591|309577|309579|309582|309583|309584|309585|309587|309588|309600|309606|309607|309608|314366|314367|314377|314378|314379|314389|314395|314396|314414|314416|314418|314419|314420|314421|314431|320436|320439|320440|320447|320448|320459|320461|320462|320467|320469|320470|320865|320874|320875|320877|320883|320884|320908|320909|320916|320920|320934|320936|320937|320942|320947|361709|361711|361713|361714|361715|361717|361718|361719|361721|406667|503156|539974|563601|569547|701223|737381|865489|865490|865491|865492|865493|865494|865495|865496|865497|865498|865499|865500|865501|865502|865503|865504|865505|865506|865507|865508|865509|865510|865511|865512|865513|865514|868451|868452|868453|969285", + "text": "Crouzon syndrome" + }, + { + "baseId": "28302|28305|28306|28313|28315|28320|28325|28327|28329|28330|28331|28332|28333|28338|28338|28339|31318|31318|191949|192053|193672|193673|193674|248739|259933|305216|308951|308989|308993|308994|309577|314200|314213|314217|314378|314379|320877|320916|320937|361706|361707|361712|361716|361720|371850|425793|458465|458466|458898|458901|493549|513216|523562|523565|523567|524155|562414|562416|637202|651969|684009|687290|689920|819961|834738|834739|851694|925198|925199|925200|934303|934304|946062|946063", + "text": "Pfeiffer syndrome" + }, + { + "baseId": "28302|28303|28304|28305|28306|28307|28309|28310|28311|28312|28313|28314|28315|28316|28322|28325|28329|28330|28332|138125|138127|138129|138131|193378|193379|253700|253706|259933|265819|268579|268591|314395|314396|320884|361710|361711|361716|361721|444565|444566|459906|459911|459913|460155|460158|460619|491711|503164|524995|525006|525008|525009|525525|563599|563601|566187|566190|566194|569547|638760|638761|652256|692793|759899|818138|836683|836684|836685|836686|925760|959929", + "text": "FGFR2 related craniosynostosis" + }, + { + "baseId": "28302|28305|28306|28312|28325|919259|919260", + "text": "Antley-Bixler syndrome without genital anomalies or disordered steroidogenesis" + }, + { + "baseId": "28305|28306|28308|28315|31318|309577|314378|314379|320877|320916|320937|361710|361711", + "text": "Jackson-Weiss syndrome" + }, + { + "baseId": "28307", + "text": "Craniosynostosis, nonclassifiable autosomal dominant" + }, + { + "baseId": "28307", + "text": "Scaphocephaly and axenfeld-rieger anomaly" + }, + { + "baseId": "28307|28333|31366|31367|31368|31371|31376|31377|31378|31379|31381|31386|31387|31394|76470|76763|138125|138127|138129|138131|138137|138138|138143|138147|138148|138149|139286|191137|191949|192053|193378|193379|193380|193381|193672|193674|194790|194791|195205|207114|209687|224372|251372|251373|251380|251381|251385|251388|251392|251393|251394|251397|253699|253700|253704|253706|268579|268591|271219|271513|272118|296994|298886|305196|305197|305206|305210|305211|305213|305216|305217|305227|305229|308949|308950|308951|308954|308955|308965|308966|308967|308968|308969|308987|308988|308989|308990|308991|308992|308993|308994|308995|309017|309019|309020|309577|309579|309582|309583|309584|309585|309587|309588|309600|309606|309607|309608|314169|314172|314173|314175|314176|314177|314180|314181|314182|314183|314185|314186|314189|314193|314194|314195|314196|314199|314200|314201|314204|314205|314206|314207|314209|314210|314212|314213|314217|314219|314220|314222|314223|314228|314231|314237|314238|314366|314367|314377|314378|314379|314389|314395|314396|314414|314416|314418|314419|314420|314421|314431|320436|320439|320440|320447|320448|320459|320461|320462|320467|320469|320470|320865|320874|320875|320877|320883|320884|320908|320909|320916|320920|320934|320936|320937|320942|320947|359618|360913|360914|363628|363629|369068|370233|371850|389089|389090|389091|428292|453055|453061|453062|453066|453069|453353|453434|453444|453446|453448|453833|453835|453843|488869|501129|503156|513216|519821|519822|519828|519844|519848|520148|523886|559637|559792|559794|559796|563605|569547|577061|632094|632095|632096|679248|679250|679251|679252|679253|679658|679659|679660|679661|679663|679664|679665|679666|679667|679668|679671|687284|687287|689918|691532|691533|695221|695222|695223|698441|701223|709242|709244|720842|720846|737381|748819|748823|764389|764391|787369|828965|828966|828967|828968|828969|865489|865490|865491|865492|865493|865494|865495|865496|865497|865498|865499|865500|865501|865502|865503|865504|865505|865506|865507|865508|865509|865510|865511|865512|865513|865514|868451|868452|868453|899458|899459|899460|899461|899462|899463|899464|899465|899466|899467|899468|899469|899470|899471|899472|899473|899474|899475|899476|899477|899478|899479|899480|899481|899482|899483|899484|899485|899486|899487|899488|899489|899490|899491|899492|899493|899494|899495|899496|899497|899498|899499|899500|899501|899502|899503|899504|899505|899506|899507|899508|899509|899510|899511|899512|900485|900486|900487|923468|923469|943907", + "text": "Craniosynostosis syndrome" + }, + { + "baseId": "28311|28312|28318|28326|28338|70518|309577|314378|314379|320877|320916|320937|818138", + "text": "Acrocephalosyndactyly type I" + }, + { + "baseId": "28311|29022|361707|361709|363031|363032|363033|363034|363035|363036|363037|363038|363039|363040|363041|363042|363043|363044", + "text": "Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation" + }, + { + "baseId": "28311", + "text": "Acrocephalosyndactyly" + }, + { + "baseId": "28311|28316|28317|32616|363107|363109|363194|363195|363196|363235|363312|363604|363605|363606", + "text": "Endometrial neoplasm" + }, + { + "baseId": "28312|151858|362775|362960|363090|363091", + "text": "Head and Neck Neoplasms" + }, + { + "baseId": "28316|28317|38807|138125|138127|138129|138131|139286|193378|193379|253699|253700|253704|253706|268579|268591|309577|309579|309582|309583|309584|309585|309587|309588|309600|309606|309607|309608|314366|314367|314377|314378|314379|314389|314395|314396|314414|314416|314418|314419|314420|314421|314431|320436|320439|320440|320447|320448|320459|320461|320462|320467|320469|320470|320865|320874|320875|320877|320883|320884|320908|320909|320916|320920|320934|320936|320937|320942|320947|503156|569547|701223|737381|865489|865490|865491|865492|865493|865494|865495|865496|865497|865498|865499|865500|865501|865502|865503|865504|865505|865506|865507|865508|865509|865510|865511|865512|865513|865514|868451|868452|868453", + "text": "Beare-Stevenson cutis gyrata syndrome" + }, + { + "baseId": "28319", + "text": "Pfeiffer syndrome variant" + }, + { + "baseId": "28325", + "text": "Pfeiffer syndrome, type III" + }, + { + "baseId": "28328", + "text": "Craniosynostosis, nonsyndromic unicoronal" + }, + { + "baseId": "28332", + "text": "Craniofacial-skeletal-dermatologic dysplasia" + }, + { + "baseId": "28334", + "text": "Scaphocephaly, maxillary retrusion, and mental retardation" + }, + { + "baseId": "28341", + "text": "PROTHROMBIN TYPE 3" + }, + { + "baseId": "28341|28348|28349|38806|254180|254181|254182|254183|254184|254185|314178|314179|314187|314188|314190|314191|320729|320749|320751|320758|320767|320768|326803|326804|326811|327768|327769|327773|712845|724459|752685|768463|868030|868031|868032|868033|868034|868035|868650|868651|868652", + "text": "Prothrombin deficiency, congenital" + }, + { + "baseId": "28342|28343|28344|28345|28346|28349|28350|28351|28352|28353|327765", + "text": "Hereditary factor II deficiency disease" + }, + { + "baseId": "28347", + "text": "DYSPROTHROMBINEMIA PROTHROMBIN HIMI-II" + }, + { + "baseId": "28349", + "text": "Pregnancy loss, recurrent, susceptibility to, 2" + }, + { + "baseId": "28349", + "text": "Venous thromboembolism" + }, + { + "baseId": "28355", + "text": "Protein S Heerlen" + }, + { + "baseId": "28355|28357|38801|38802|38803|38804|171086|171089|171093|171096|212337|212338|212339|212340|212341|221425|221426|251293|291738|293097|293103|293105|296397|393153|393805|393807|439356|451897|453148|453197|453200|453563|495151|519613|519665|559528|559529|559531|559533|559684|559686|561822|615353|631800|631801|631802|651145|683599|683600|686466|759373|819422|819423|828582|828583|828584|828585|828586|828587|851095|851096|851473|851475|858404|923363|923364|932088|932089|932090|940766|943706|943707|943708|953596|959708", + "text": "Thrombophilia due to protein S deficiency, autosomal recessive" + }, + { + "baseId": "28355|28356|28357|28358|28359|28360|28361|28362|38801|171085|171086|171087|171088|171089|171090|171091|171092|171093|171094|171095|171096|172172|212341|221425|251293|291735|291737|291738|291740|291741|291748|291749|293081|293083|293085|293086|293087|293090|293091|293097|293103|293104|293105|293109|296350|296359|296371|296372|296373|296375|296376|296379|296385|296391|296395|296396|296397|296399|296401|296406|296407|519665|683599|790423|800394|889754|889755|889756|889757|889758|889759|889760|889761|889762|889763|889764|889765|889766|889767|889768|889769|889770|889771|889772|889773|889774|889775|889776|889777|889778|889779|889780|889781|889782|891711|891712|891713|970779", + "text": "Thrombophilia due to protein S deficiency, autosomal dominant" + }, + { + "baseId": "28362|171093|171096|212340|212341|293105|495151|559686|615349|615350|615351|615352|615353|615354|615355|615356|615357|615358|615359|615360|615362|615363|615364|615365|615366|615367|615368|615370|615372|615373|615722|615866|801511", + "text": "Reduced protein S activity" + }, + { + "baseId": "28363|28363|28364|28365|28365|28365|28365|28366|28366|28366|28367|28367|28368|28369|28370|28370|28372|28372|28373|28379|28381|28382|28383|28384|45369|45370|48957|48959|48965|48972|48983|48986|48992|48994|48997|48998|49006|49010|49012|49023|49024|49028|49029|49031|49032|49032|49033|49036|49040|53765|53766|53775|70453|76574|138851|142546|142548|175395|175398|230259|316040|316041|316046|316051|316057|316064|316065|323294|323298|323300|323304|323305|323306|323307|329404|329406|329458|329467|329470|329471|329472|329473|329475|329476|329477|329478|329485|329521|330584|330589|330590|330591|330595|330611|330625|330626|330628|330630|330634|429364|481135|481136|481137|487580|582588|869289|869290|869291|869292|869293|869294|869295|869296|869297|869298|869299|869300|869301|869302|869303|869304|869305|869306|869307|869308|869309|869310|869311|869312|869313|869314|869315|869316|869317|919411|920310|964372", + "text": "LEOPARD syndrome 1" + }, + { + "baseId": "28363|28364|28365|28365|28366|28367|28368|28370|28372|28372|28373|28379|28386|28387|28388|40225|40226|40227|40228|40229|40230|40231|40232|40233|45369|45370|48957|48959|48972|48983|48984|48986|48992|48994|48997|48998|49006|49010|49012|49028|49029|49032|49032|49040|49040|53765|53766|53766|53775|53778|138851|142546|142548|175395|175398|316040|316041|316045|316046|316051|316054|316057|316064|316065|323294|323298|323300|323301|323302|323303|323304|323305|323306|323307|329404|329406|329407|329458|329467|329470|329471|329472|329473|329475|329476|329477|329478|329485|329521|330584|330589|330590|330591|330595|330605|330607|330611|330625|330626|330628|330630|330634|429364|481135|481136|481137|487580|582588|791197|818296|869289|869290|869291|869292|869293|869294|869295|869296|869297|869298|869299|869300|869301|869302|869303|869304|869305|869306|869307|869308|869309|869310|869311|869312|869313|869314|869315|869316|869317|969669", + "text": "Metachondromatosis" + }, + { + "baseId": "28366|48993", + "text": "PTPN11 Related Disorders" + }, + { + "baseId": "28367|28367|28370|28381|28382|28383|28383|28996|28996|28999|28999|34193|34194|38762|48818|48988|48995|49016|49023|49024|49033|49036|49043|49288|53792|53987|53988|173750|179051|289310|292323|301998|302001|309875|310013|316045|316054|323301|323302|323303|329407|330605|330607|497522|653974", + "text": "Noonan syndrome with multiple lentigines" + }, + { + "baseId": "28367|28846|28847|28848|28849|48871|48878|48882|48888|48889|48891|48894|48897|54364|54365|54368|54369|54370|54372|54375|54376|54378|70452|125841|125841|125842|137546|137547|137551|137552|140366|140367|140368|175068|175346|179156|179160|179163|179164|264601|312586|312604|312607|312608|312610|312611|312612|312616|312618|312620|312629|312630|312637|312639|312650|312655|312660|312663|312664|312665|312672|312681|312685|312688|312696|312697|312698|312705|312719|312728|312732|312733|312734|312738|312740|312741|312742|318571|318577|318588|318589|318593|318601|318603|318608|318609|318625|318626|318644|318648|318664|318686|318688|318699|318705|318706|318711|318712|318713|318718|318722|318724|318726|318729|318734|318735|318739|324722|324734|324736|324737|324739|324753|324763|324766|324771|324782|324784|324786|324789|324790|324794|324795|324800|324801|324805|324806|324808|324816|324817|324822|324824|324826|324828|324830|324831|325444|325446|325448|325477|325479|325481|325482|325483|325490|325508|325515|325527|325533|325535|325542|325546|325564|325571|325572|325573|325575|325576|325577|325581|325583|325586|325600|325614|325619|325630|325637|325655|325656|325659|325668|325692|325694|325696|361723|361724|361725|460920|460955|481134|494968|504109|514315|526034|538420|552646|567080|677434|680062|867135|867136|867137|867138|867139|867140|867141|867142|867143|867144|867145|867146|867147|867148|867149|867150|867151|867152|867153|867154|867155|867156|867157|867158|867159|867160|867161|867162|867163|867164|867165|867166|867167|867168|867169|867170|867171|867172|867173|867174|867175|867176|867177|867178|867179|867180|867181|867182|867183|867184|867185|867186|867187|867188|867189|867190|867191|867192|867193|867194|867195|867196|867197|867198|867199|919324|919325|919326|919327|964107", + "text": "Noonan syndrome-like disorder with or without juvenile myelomonocytic leukemia" + }, + { + "baseId": "28370|48992", + "text": "PTPN11-related disorder" + }, + { + "baseId": "28372|152318", + "text": "B lymphoblastic leukemia lymphoma, no ICD-O subtype" + }, + { + "baseId": "28374|204572|204573|204574", + "text": "Early T cell progenitor acute lymphoblastic leukemia" + }, + { + "baseId": "28375|28377|28378|133499|152038|166215|226759|226760|362770|362772|363307|363308|363309|363314|427762|488237|495045|495046|495913|513987", + "text": "Astrocytoma" + }, + { + "baseId": "28375|29000|965412|965413", + "text": "Cancer" + }, + { + "baseId": "28389|28390|28390|28391|49212|49213|49251|188202|230599|264875|264875|362860|569565|624057|822305|857582", + "text": "Cardiofaciocutaneous syndrome 3" + }, + { + "baseId": "28390", + "text": "Melorheostosis" + }, + { + "baseId": "28392|28393|28394|28395|28396|28397|28398|206996|285610|285611|285622|285624|285631|286339|286340|288641|288642|289041|289047|289053|428043|443218|485896|654118|654119|719787|719788|884457|884458|884459|884460|884461|884462|884463|884464|884465|884466", + "text": "Proopiomelanocortin deficiency" + }, + { + "baseId": "28395", + "text": "Obesity, early-onset, susceptibility to" + }, + { + "baseId": "28400|28401|28402|28405|28406|28413|28414|99987|253829|253830|253834|253835|253836|267598|310748|310749|310750|310752|310754|310757|310768|310771|310773|310774|310779|310781|310792|310793|310803|310804|316048|316049|316050|316052|316053|316055|316058|316059|316062|322105|322106|322113|322114|322116|322118|322124|322126|322147|322152|322727|322728|322729|322732|322761|322766|322775|322777|322778|322779|407907|432427|437863|437864|438867|553410|553411|563935|566479|639143|639144|712458|712459|712460|724053|724054|730706|737588|737589|737590|737591|752247|752248|752249|752250|752251|752252|752253|752254|767959|767960|767962|767963|767964|767965|767970|775547|775552|783729|783733|783735|783736|787867|802173|820239|822047|837276|837277|866168|866169|866170|866171|866172|866173|866174|866175|866176|866177|866178|866179|866180|866181|866182|868499|935168|956199|960728", + "text": "Sphingolipid activator protein 1 deficiency" + }, + { + "baseId": "28402|28404|28407|28412|55236|55237|55239|55244|55245|55246|55247|99987|137043|175007|175287|175289|253829|253830|253834|253835|253836|310742|310745|310748|310749|310750|310752|310754|310757|310768|310771|310773|310774|310779|310781|310792|310793|310803|310804|310806|310808|310811|316006|316010|316044|316047|316048|316049|316050|316052|316053|316055|316058|316059|316062|316063|322088|322102|322105|322106|322108|322109|322113|322114|322116|322118|322124|322126|322147|322152|322165|322166|322713|322714|322725|322726|322727|322728|322729|322732|322738|322761|322766|322775|322776|322777|322778|322779|353137|353139|353147|353148|353153|432427|767962|866168|866169|866170|866171|866172|866173|866174|866175|866176|866177|866178|866179|866180|866181|866182|868499", + "text": "Combined saposin deficiency" + }, + { + "baseId": "28403|28404|28409|28410|28411|99987|253829|253830|253834|253835|253836|310748|310749|310750|310752|310754|310757|310768|310771|310773|310774|310779|310781|310792|310793|310803|310804|316048|316049|316050|316052|316053|316055|316058|316059|316062|322105|322106|322113|322114|322116|322118|322124|322126|322147|322152|322727|322728|322729|322732|322761|322766|322775|322777|322778|322779|432427|767962|866168|866169|866170|866171|866172|866173|866174|866175|866176|866177|866178|866179|866180|866181|866182|868499", + "text": "Gaucher disease, atypical, due to saposin C deficiency" + }, + { + "baseId": "28408|99987|253829|253830|253834|253835|253836|310748|310749|310750|310752|310754|310757|310768|310771|310773|310774|310779|310781|310792|310793|310803|310804|316048|316049|316050|316052|316053|316055|316058|316059|316062|322105|322106|322113|322114|322116|322118|322124|322126|322147|322152|322727|322728|322729|322732|322761|322766|322775|322777|322778|322779|432427|767962|866168|866169|866170|866171|866172|866173|866174|866175|866176|866177|866178|866179|866180|866181|866182|868499", + "text": "Krabbe disease, atypical, due to saposin A deficiency" + }, + { + "baseId": "28415", + "text": "Skeletal defects, genital hypoplasia, and mental retardation" + }, + { + "baseId": "28416|28417|28418|28419|28420|28421|28422", + "text": "Hyperproinsulinemia" + }, + { + "baseId": "28426|28427|28428|33966|33969|33974|263780", + "text": "Permanent neonatal diabetes mellitus 4" + }, + { + "baseId": "28429|28430|45062|79619|134725|247779|254105|254106|313620|313624|319803|319804|319810|319823|319825|319828|325998|326977|326978|609052|737916|867734|868641|919349", + "text": "Maturity-onset diabetes of the young, type 10" + }, + { + "baseId": "28431|33974", + "text": "Diabetes mellitus, insulin-dependent, 2" + }, + { + "baseId": "28433|28436|28437|28442|28444|28445|28450|94480", + "text": "Jakob-Creutzfeldt disease" + }, + { + "baseId": "28433|28434|28435|28440|28441|28443|28449|28451|28453|28454|94479|94484", + "text": "Gerstmann-Straussler-Scheinker syndrome" + }, + { + "baseId": "28433|28434|28436|28437|28438|28440|28442|28444|28445|28447|28448|76402|215591|335703|345428|345429|345431|345433|351099|351103|534134|573567|705521|705522|848464", + "text": "Huntington disease-like 1" + }, + { + "baseId": "28433|28434|28435|28436|28437|28438|28440|28441|28442|28443|28444|28445|28446|28447|28448|28450|28451|28452|28454|33999|34000|76402|215591|335689|335690|335703|335704|335706|335707|345414|345418|345420|345422|345428|345429|345431|345433|345446|345448|345450|345451|345453|345455|350066|350068|350069|350070|350073|350074|350075|350076|351099|351103|351107|351108|351109|351110|351113|351114|351116|351117|886222|886223|886224|886225|886226|886227|886228|886229|886230|886231|886232", + "text": "Genetic prion disease" + }, + { + "baseId": "28436", + "text": "Prion disease, susceptibility to" + }, + { + "baseId": "28436", + "text": "Alzheimer disease, early-onset, susceptibility to" + }, + { + "baseId": "28436", + "text": "Aphasia, primary progressive, susceptibility to" + }, + { + "baseId": "28437", + "text": "Fatal familial insomnia" + }, + { + "baseId": "28446|28447|28451|28452|446895|446896", + "text": "Spongiform encephalopathy with neuropsychiatric features" + }, + { + "baseId": "28448", + "text": "Protection against Creutzfeldt-Jakob disease" + }, + { + "baseId": "28455", + "text": "Kuru, protection against" + }, + { + "baseId": "28456|28465|28470|28492|28493|179808", + "text": "Dystransthyretinemic euthyroidal hyperthyroxinemia" + }, + { + "baseId": "28456|28465|28492|179808|245092", + "text": "Carpal tunnel syndrome" + }, + { + "baseId": "28464|28491", + "text": "TRANSTHYRETIN POLYMORPHISM" + }, + { + "baseId": "28465", + "text": "Amyloid Cardiomyopathy, Transthyretin-related" + }, + { + "baseId": "28465|378413|615637", + "text": "Pancytopenia" + }, + { + "baseId": "28465|226418|378413|590067|590098|966329|966331", + "text": "Bone marrow hypocellularity" + }, + { + "baseId": "28465|30100|30200|30372|30694|360899|378413|513937|800975|800982|801226|801230|801247|857396", + "text": "Anemia" + }, + { + "baseId": "28465", + "text": "ATTRV122I amyloidosis" + }, + { + "baseId": "28465", + "text": "Postural tremor" + }, + { + "baseId": "28466|33195|40479|53708|54876|55760|55779|56325|56349|56354|56601|101339|172615|189264|265307|460115|488925|509961|520740|679409", + "text": "Heart failure" + }, + { + "baseId": "28473", + "text": "AMYLOIDOSIS, HEREDITARY, TRANSTHYRETIN-RELATED, MODIFIER OF" + }, + { + "baseId": "28488", + "text": "Carpal tunnel syndrome, familial" + }, + { + "baseId": "28500|28501|28502|28504|28505|28506", + "text": "AMYLOIDOSIS, LEPTOMENINGEAL, TRANSTHYRETIN-RELATED" + }, + { + "baseId": "28508|28509|28510|28511|132634|132635|189345|189346|189348|189349|189350|189351|189352|189353|189354|189356|189357|254607|317548|317549|317551|317552|317562|325380|325381|325387|331616|331621|331622|331625|333126|333129|333133|333135|360948|462262|462270|462276|462280|462286|462292|462511|462519|462525|462528|462538|462540|462542|462545|463008|463016|463140|463145|463149|463153|463156|463158|463166|463167|514020|527200|527207|527208|527210|527211|527216|527217|527454|527456|527460|527461|527756|527767|565534|565541|566861|566866|566871|566872|566879|568088|568090|571881|587516|641186|641187|641188|641189|641190|641191|641192|641193|641194|641195|684330|688004|688005|688006|688007|688011|688012|725141|738695|738696|769179|769180|840004|840005|840006|840007|840008|840009|840010|840011|840012|840013|840014|840015|840016|840017|840018|840019|840020|840021|870021|870022|870023|870024|870025|870026|870027|870028|870029|870030|870031|870032|870033|870034|919448|919449|926657|926658|926659|936148|936149|948059|948060|948061|948062|948063|948064|948065|956896|956897", + "text": "Atrial fibrillation, familial, 7" + }, + { + "baseId": "28512|28513|190461|205316|245205|272412|272421|442245|512879|512880|513379|577817|791944|791945|964525", + "text": "Spinocerebellar ataxia type 13" + }, + { + "baseId": "28514|28515|28516|28518|136399|136421|136425|136427|136431|176235|176358|231116|336618|336619|336622|336628|336632|336636|336638|336641|336648|336656|336659|336663|336668|336670|336674|346327|346329|346330|346335|346336|346337|346339|346340|346343|346344|346347|346349|346350|346351|346352|346354|350566|350568|350569|350571|350572|350574|350575|350577|350578|350583|350586|350589|350592|350593|351609|351612|351613|351616|351619|351620|351623|351628|351636|351637|351639|351640|351644|351645|351647|351648|351650|497529|507490|537651|537652|537653|848735|886695|886696|886697|886698|886699|886700|886701|886702|886703|886704|886705|886706|886707|886708|886709|886710|886711|886712|886713|886714|886715", + "text": "Jervell and Lange-Nielsen syndrome 2" + }, + { + "baseId": "28516|28517|28518|136399|136418|136421|136424|136426|136427|176235|176358|231116|336618|336619|336622|336628|336632|336636|336638|336641|336648|336656|336659|336663|336668|336670|336674|346327|346329|346330|346335|346336|346337|346339|346340|346343|346344|346347|346349|346350|346351|346352|346354|350566|350568|350569|350571|350572|350574|350575|350577|350578|350583|350586|350589|350592|350593|351609|351612|351613|351616|351619|351620|351623|351628|351636|351637|351639|351640|351644|351645|351647|351648|351650|497529|507490|589845|680057|848735|886695|886696|886697|886698|886699|886700|886701|886702|886703|886704|886705|886706|886707|886708|886709|886710|886711|886712|886713|886714|886715", + "text": "Long QT syndrome 5" + }, + { + "baseId": "28516|51661|67638|67718|67740|77926|141708|187117|197424|313787|313794|313799|313800|313812|313813|313817|319980|319984|319986|319987|319988|320021|320022|320025|326169|326170|326178|326190|326206|326214|327120|327127|327130|336624|336627|336647|346356|350579|350595|350597|351633|351642|353590", + "text": "Jervell and Lange-Nielsen syndrome" + }, + { + "baseId": "28518", + "text": "Long QT syndrome 5, acquired, susceptibility to" + }, + { + "baseId": "28518|29479", + "text": "Long QT syndrome 2/5" + }, + { + "baseId": "28519|28520|28521|28522|28523|28524|28525|28526|28527|28530|28531|33979|33980|33982|134759|192204|192205|192206|192207|274919|317386|317387|317395|317398|317401|317404|317407|317412|317415|317416|317418|317428|317433|317435|317451|317452|317456|317458|317463|317465|317470|325231|325232|325236|325238|325240|325255|325260|325265|325267|325271|325273|325279|325285|325287|325288|325294|325295|325296|325316|325326|331460|331461|331463|331468|331474|331475|331487|331488|331489|331495|331500|331501|331511|331539|331540|331542|331561|331563|331564|331565|331579|331582|331598|331600|332852|332867|332877|332887|332891|332895|332906|332918|332919|332921|332922|332923|332925|332931|332944|332947|332950|332955|332959|332969|332977|332979|332986|332996|332998|333005|333012|333013|333026|333027|333033|361311|424900|441551|441552|441553|445033|462249|462252|462258|462259|462503|462504|462507|527204|565532|566859|571880|577273|577277|641181|641182|641183|641184|641185|693223|702340|702342|713555|738681|820504|839993|839994|839995|839996|839997|839998|839999|869931|869932|869933|869934|869935|869936|869937|869938|869939|869940|869941|869942|869943|869944|869945|869946|869947|869948|869949|869950|869951|869952|869953|869954|869955|869956|869957|869958|869959|869960|869961|869962|869963|869964|869965|869966|869967|869968|869969|869970|869971|869972|869973|869974|869975|869976|869977|869978|869979|926653|926654|926655|926656|936146|936147|948051|948052|948053|948054|948055|948056|948057|956894|956895", + "text": "Episodic ataxia type 1" + }, + { + "baseId": "28528|28529|28532", + "text": "Myokymia 1" + }, + { + "baseId": "28533", + "text": "Myokymia 1 with hypomagnesemia" + }, + { + "baseId": "28534|28535|28541|28541|28547|28548|28552|28553|76573|142453|142463|190806|193515|202922|202990|203013|203030|203044|203050|242144|445459|539063|576169|610742|614404|677036|682353|682358", + "text": "Autosomal dominant progressive external ophthalmoplegia with mitochondrial DNA deletions 1" + }, + { + "baseId": "28535|28536|28537|28541|28541|28542|28544|28551|28552|28552|76573|142453|142463|190806|193515|202922|202990|203013|203028|203030|203050|242144|264639|576169|614404|972490", + "text": "Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal recessive 1" + }, + { + "baseId": "28535|28546|28549", + "text": "Myoclonic epilepsy myopathy sensory ataxia" + }, + { + "baseId": "28535|28540|28541|28542|28546|28548|28552|34162|34163|34164|34168|34170|34172|76573|135435|135436|135437|135438|135439|135440|135443|135445|142446|142447|142448|142449|142450|142451|142453|142455|142456|142457|142458|142459|142463|142469|142472|142475|142478|142479|142480|142482|177972|191896|192343|192648|193515|195312|202902|202928|202938|202940|202951|202955|202973|202975|202976|202978|202990|202996|203006|203013|203019|203024|203034|203036|203045|203048|203069|255389|264890|323491|323492|323499|323502|323507|323510|323514|323515|323523|323524|333243|333247|333252|333256|333262|333263|333274|340022|340026|340029|340031|340032|340034|340038|340039|341436|341440|341442|341443|341446|341447|341448|341451|341453|341454|373804|376794|400903|409375|445463|529683|569200|584698|610721|610779|610783|874251|874252|874253|874255|874256|874257|874258|874259|874260|874261|874262|874263|874264|874265|874266|874267", + "text": "POLG-Related Spectrum Disorders" + }, + { + "baseId": "28535", + "text": "POLG- Related Disorders" + }, + { + "baseId": "28535", + "text": "POLG-related condition" + }, + { + "baseId": "28535|193515|202940|376748|426135|441759|610770", + "text": "POLG-related disorders" + }, + { + "baseId": "28541", + "text": "POLG- Related Disorder" + }, + { + "baseId": "28554", + "text": "Abnormality of corpus callosum" + }, + { + "baseId": "28556|28557|28558|28559|28560|28561|28562|28563|28564|48615|48616|98699|98702|98703|98705|190244|221477|221478|221479|221480|239510|251600|251601|251602|251603|251605|263858|264213|271631|273640|294560|294561|294562|294569|294581|294583|294584|294585|294592|294595|294603|294609|294611|294615|294623|294627|296105|296114|296117|296118|296119|296121|296123|296124|296126|296129|296131|296134|299796|299806|299826|299827|299828|299834|299837|299842|299843|299884|299885|299886|299887|299891|299898|299902|299905|299907|360862|384403|384480|390696|394265|424508|424583|427228|432293|432993|432994|432996|432998|440852|440855|440858|443643|453845|454040|513057|513058|513954|514499|520284|520287|520555|520561|550230|553432|553480|590274|590275|590276|609555|609560|613481|622101|623279|623280|623281|624283|624285|624290|625831|672059|683647|790487|793065|799373|799374|799375|799376|799377|799378|799379|799380|799381|799382|799383|799384|799385|799386|799387|815963|815964|818235|818236|861458|861459|861460|861461|861462|861463|861464|861465|861466|861467|892469|892470|892471|892472|892473|892474|892475|892476|892477|892478|892479|892480|892481|892482|892483|892484|892485|892486|892487|892488|892489|892490|892491|892492|892493|892494|892495|892496|892497|892498|892499|892500|892501|892502|892503|892504|892505|892506|918906|918907|918908|918909|918910|918911|960998|960999|962704|962705|962832|963392|980322|980918", + "text": "Polycystic kidney disease 2" + }, + { + "baseId": "28557|28561|98699|98702|98703|98705|190113|190244|221476|221477|221478|221479|221480|226951|239510|251600|251601|251603|251605|255505|255507|255510|255511|255512|255514|255515|255518|255532|255533|255535|255541|255545|255546|255547|255548|255550|255553|255558|255563|255566|255570|255571|255575|255578|255582|255585|255589|255592|255596|255604|255611|255613|255616|255617|255621|255623|255631|255634|255635|255637|255640|255642|255645|255647|255648|255655|255662|255668|271631|273640|294581|294594|294621|296114|296119|299840|299898|299900|299908|360989|394265|424508|427226|427228|427445|427499|427508|427512|432293|432996|433156|433157|433161|433175|433181|433187|433188|433189|433190|433193|433214|433221|433223|440850|440852|440858|441850|441874|441886|453259|453591|453593|453845|453855|454029|454039|454040|495789|520284|520287|520555|520561|550558|553446|553486|553502|559706|559819|562284|564100|581288|581291|581294|610008|610012|610020|622101|624552|632517|632518|632519|632520|632521|632522|632523|632524|632525|632526|683647|683650|686563|764638|793613|793617|799381|819502|829513|829514|829515|829516|829517|829518|829519|860228|892486|932462|932463|944140|944141|953860|953861|953862|961208|964928|964929|964930|964931|964932|964933|964934|964935|964936|964937|964938|964939|964940|964941|964942|964943|964944|964945|964946|964947|964948|964949|964950|964951|964952|964953|964954|964955|964956|964957|964958|964959|964960|964961|964962|964963|964964|964965|964966|964967|964968|964969|964970|964971|964972|964973|964974|964975|964976|966192", + "text": "Autosomal dominant polycystic kidney disease" + }, + { + "baseId": "28565", + "text": "Berger disease" + }, + { + "baseId": "28566|28567", + "text": "SELECTIN P POLYMORPHISM" + }, + { + "baseId": "28568|28569|28570|28571|28572|28573", + "text": "Bernard-Soulier syndrome type C" + }, + { + "baseId": "28568|28572|193388|250908|250909|288697|289405|289406|289407|289408|292421|292427|292440|292610|292611|353614|404833|429986|514274|576180|615646|615649|620752|720140|733766|887910|887911|887912|887913|887914|887915|887916|887917|887918|887919|891562|980909", + "text": "Bernard Soulier syndrome" + }, + { + "baseId": "28574|28575|28576|28577|28578|28579|28580|227310|227311|303443|303446|303448|303452|303453|306836|306837|306842|306843|306844|306845|306846|306850|306857|306869|311683|311685|311691|311697|311698|311699|311701|311703|311717|311718|311757|311759|311770|311772|311784|311791|311794|311795|311801|404771|404771|404772|404773|404773|620270|620271|620272|620273|620274|620275|620799|620800|620801|620802|679757|679758|711137|730513|736286|796071|861594|898413|898414|898415|898416|898417|898418|898419|898420|898421|898422|898423|898424|898425|898426|898427|898428|898429|898430|898431|898432|898433|898434|898435|898436|898437|898438|898439|898440|898441|898442|898443|898444|898445|898446|900403|900404|900405|900406|900407|961852|975889", + "text": "Platelet glycoprotein IV deficiency" + }, + { + "baseId": "28574|404848|615436", + "text": "Inherited bleeding disorder, platelet-type" + }, + { + "baseId": "28577|32792", + "text": "Malaria, cerebral, resistance to" + }, + { + "baseId": "28585|28590|28591|453597|623608|623609", + "text": "Polyps, multiple and recurrent inflammatory fibroid, gastrointestinal" + }, + { + "baseId": "28589", + "text": "Hypereosinophilic syndrome, idiopathic, resistant to imatinib" + }, + { + "baseId": "28596", + "text": "PEN(a)/PEN(b) ALLOANTIGEN POLYMORPHISM" + }, + { + "baseId": "28597", + "text": "PL(A1)/(A2) ALLOANTIGEN POLYMORPHISM" + }, + { + "baseId": "28598", + "text": "Mo ALLOANTIGEN POLYMORPHISM" + }, + { + "baseId": "28600", + "text": "Ca/Tu ALLOANTIGEN POLYMORPHISM" + }, + { + "baseId": "28610|28612|301272|301273|301278|301279|301281|301282|301284|301289|304466|304467|304468|304476|304483|304486|309077|309079|309081|309082|309170|309171|309173|309175|309176|309180|309193|309196|309200|309202|309203|309205|309211|309217|309218|309221|309223|309225|480748|480749|550804|722204|777786|897054|897055|897056|897057|897058|897059|897060|897061|897062|897063|897064|897065|897066|897067|897068|897069|897070|897071|897072|897073|897074|897075|897076|897077|897078|897079|897080|897081|897082|897083|897084|900285|900286|900287", + "text": "Congenital plasminogen activator inhibitor type 1 deficiency" + }, + { + "baseId": "28611", + "text": "Transcription level of plasminogen activator inhibitor 1" + }, + { + "baseId": "28613|28614|28615|28619", + "text": "Dysplasminogenemia" + }, + { + "baseId": "28613|28616|28617|28618|28620|28621|28622|87115|615413|615414|615725|818636|919015", + "text": "Plasminogen deficiency, type I" + }, + { + "baseId": "28622|213961|213962|241599|373488|373500|608923|608924|608925|608926|608927|608929|614671|614672|614673|614674|614675|614676|614677|679943|679944|679945|679946|685389", + "text": "Otitis media, susceptibility to" + }, + { + "baseId": "28624|28625|28626|28627|28628|28629|28630|28631|28633|28636|28637|38797|38798|38799|170937|170938|190498|190851|192018|193046|266324|269091|270014|298997|299002|299009|299010|299013|299017|299018|299023|299027|299032|299033|299034|299038|299056|299057|299062|299065|299068|299072|299076|299085|299088|299089|299090|301411|301415|301416|301417|301432|301433|301438|301440|301441|301456|301459|301460|301463|301464|301465|301466|301467|301468|301469|301470|301476|301486|301487|301490|301491|301492|301502|305802|305803|305804|305805|305806|305807|305808|305814|305815|305821|305829|305832|305834|305835|305841|305843|305844|305848|305850|305853|305854|305856|305863|305868|305871|305872|305873|305875|306028|306031|306033|306046|306048|306054|306055|306059|306068|306070|306071|306074|306076|306080|306081|306089|306091|306092|306096|306100|306105|306106|306107|306113|306114|306115|306116|306117|306122|306125|306128|306129|353743|428520|538382|538383|538383|552092|552093|587222|622833|710176|735417|735419|788792|798568|858556|858557|895327|895328|895329|895330|895331|895332|895333|895334|895335|895336|895337|895338|895339|895340|895341|895342|895343|895344|895345|895346|895347|895348|895349|895350|895351|895352|895353|895354|895355|895356|895357|895358|895359|895360|895361|895362|895363|895364|895365|895366|895367|895368|895369|895370|895371|895372|895373|895374|895375|895376|895377|895378|895379|895380|895381|895382|895383|896186|896187|896188|896189|896190|976532", + "text": "Arterial calcification, generalized, of infancy, 1" + }, + { + "baseId": "28625|28628|28629|28632|28633|28634|28635|38797|170937|170938|190498|190851|192018|193046|269091|270014|299009|299013|299017|299018|299027|299032|299033|299034|299056|299057|299062|299065|299068|299072|299076|299085|299088|299089|299090|301411|301415|301416|301417|301432|301433|301438|301440|301441|301456|301459|301460|301463|301464|301465|301466|301467|301468|301469|301470|301476|301486|301487|301491|301492|301502|305802|305805|305806|305808|305814|305815|305821|305829|305832|305841|305843|305844|305848|305853|305854|305863|305871|305872|305873|305875|306028|306048|306054|306055|306059|306068|306070|306071|306074|306076|306080|306089|306091|306092|306096|306105|306106|306107|306113|306114|306115|306116|306117|306122|306125|306128|306129|428520|437699|538382|538383|538383|587222|710176|735417|735419|895327|895328|895329|895330|895331|895332|895333|895334|895335|895336|895337|895338|895339|895340|895341|895342|895343|895344|895345|895346|895347|895348|895349|895350|895351|895352|895353|895354|895355|895356|895357|895358|895359|895360|895361|895362|895363|895364|895365|895366|895367|895368|895369|895370|895371|895372|895373|895374|895375|895376|895377|895378|895379|895380|895381|895382|895383|896186|896187|896188|896189|896190|920221", + "text": "Hypophosphatemic rickets, autosomal recessive, 2" + }, + { + "baseId": "28630|679748", + "text": "Coronary sclerosis, medial, of infancy" + }, + { + "baseId": "28638|34156|45087|45088|45088|45089|45089|54995|54997|54997|54998|54999|54999|55000|55002|55002|55003|55003|55004|55007|55007|55008|55009|55010|55011|55011|55012|55012|55013|55013|55015|55015|55016|55017|55017|55018|55019|55020|55022|55022|55023|141663|141664|141664|141667|165554|165554|176810|176814|176814|176821|176822|176827|176827|176829|176830|178211|178212|178212|178213|178214|178215|178216|178256|178295|178295|178302|178718|178718|178719|178719|189967|189968|189968|189969|189969|189971|189972|189972|189973|189974|198483|198485|198486|198487|198488|198489|198490|198491|198492|198493|198495|198495|198496|198501|198502|198503|198503|198504|198505|198506|198508|198509|209378|209379|209379|209380|209381|224518|224519|224520|231347|231347|231348|231350|231351|231352|231352|231409|231990|242747|242747|242748|242749|242750|242751|242751|242752|259009|259010|259011|259012|259013|259018|259018|328410|328411|328413|328416|328421|338341|338344|338347|338354|338354|338357|338360|338360|338363|338363|338366|338372|338375|338377|344418|344420|344423|344424|344426|344432|344434|344435|345829|345830|345836|345838|345841|360442|360442|374966|374969|374970|374970|374982|374996|375906|375910|376039|378156|378166|378175|390545|401928|401930|401992|401992|402000|402002|402004|402008|402011|402442|402444|402449|402451|402614|415559|445770|445771|466804|466804|467661|467663|467664|467666|467856|467858|467860|467862|467865|467867|467868|468041|468042|468046|468051|468059|468066|487694|487930|487930|497846|505898|506036|506309|506807|510741|510744|510744|510746|511136|530995|531006|531127|531128|531131|531219|531221|531227|531229|531229|531240|531246|531249|531491|531495|531497|531500|569038|569045|571099|571101|571105|571109|571111|571316|571319|571326|571330|574452|574453|574454|621566|645852|645853|645854|645855|645856|645857|645858|645859|645860|645861|645862|645863|645864|645865|645866|645867|645868|645869|645870|645871|645872|645873|645874|652949|653453|653455|682628|684672|684675|688768|688769|715452|740741|797529|821042|822277|845295|845296|845297|845298|845299|845300|845301|845301|845302|845303|845304|845305|845306|845307|845308|845309|845310|845311|845312|845313|845314|845315|845316|845317|845318|845319|845320|845321|845322|845323|852201|852742|858262|877451|877452|877453|877454|877455|877456|877457|877458|877459|877460|877461|877462|877463|877464|877465|877466|877467|877467|877468|877469|877470|877471|877472|877473|877474|877475|877476|877477|877478|906102|919727|919728|919729|928249|928250|928251|928252|928253|928254|928255|928256|928257|937916|937917|937918|937919|937920|937921|937922|937923|937924|949906|949907|949908|949909|949910|949911|949912|949913|949914|958102|958103|958104|960218", + "text": "Naxos disease" + }, + { + "baseId": "28639|34156|45087|45088|45088|45089|45089|54995|54997|54997|54998|54999|54999|55000|55002|55002|55003|55003|55004|55007|55007|55008|55009|55010|55011|55011|55012|55012|55013|55013|55015|55015|55016|55017|55017|55018|55019|55020|55022|55022|55023|141663|141664|141664|141667|165554|165554|176810|176814|176814|176821|176822|176827|176827|176829|176830|178211|178212|178212|178213|178214|178215|178216|178256|178295|178295|178302|178718|178718|178719|178719|189967|189968|189968|189969|189969|189971|189972|189973|189974|198483|198485|198486|198487|198488|198489|198489|198490|198491|198492|198493|198495|198495|198496|198501|198502|198503|198503|198504|198505|198506|198508|198509|209379|224518|224519|224520|231347|231347|231348|231350|231351|231352|231352|231409|231990|242747|242747|242748|242749|242750|242751|242751|242752|259009|259010|259011|259012|259013|259018|259018|328410|328411|328413|328416|328421|338341|338344|338347|338354|338357|338360|338360|338363|338363|338375|338377|344418|344420|344423|344424|344426|344432|344434|344435|345829|345830|345836|345838|345841|360442|360442|374966|374969|374970|374970|374982|374996|375906|375910|376039|378156|378166|378175|390545|401928|401930|401992|401992|402000|402002|402004|402008|402011|402442|402444|402449|402451|402614|415559|445770|445771|466804|466804|467661|467663|467664|467666|467856|467858|467860|467862|467867|467868|468041|468042|468046|468051|468059|468066|487694|487930|487930|497846|505898|506036|506309|506807|510741|510744|510744|510746|511136|530995|531006|531127|531128|531131|531219|531221|531227|531229|531229|531240|531246|531249|531491|531495|531497|531500|569038|569045|571099|571101|571105|571109|571111|571316|571319|571326|571330|574452|574453|574454|621566|645852|645853|645854|645855|645856|645857|645858|645859|645860|645861|645862|645863|645864|645865|645866|645867|645868|645869|645870|645871|645872|645873|645874|652949|653453|653455|682628|684672|684675|688768|688769|715452|740741|797529|821042|822277|845295|845296|845297|845298|845299|845300|845301|845302|845303|845304|845305|845306|845307|845308|845309|845310|845311|845312|845313|845314|845315|845316|845317|845318|845319|845320|845321|845322|845323|852201|852742|858262|877451|877452|877453|877454|877455|877456|877457|877458|877459|877460|877461|877462|877463|877464|877465|877466|877467|877467|877468|877469|877470|877471|877472|877473|877474|877475|877476|877477|877478|906102|928249|928250|928251|928252|928253|928254|928255|928256|928257|937916|937917|937918|937919|937920|937921|937922|937923|937924|949906|949907|949908|949909|949910|949911|949912|949913|949914|958102|958103|958104|960218", + "text": "Arrhythmogenic right ventricular cardiomyopathy, type 12" + }, + { + "baseId": "28640|496458", + "text": "Deafness, autosomal recessive 91" + }, + { + "baseId": "28641|28642|28643|28644|28645|28646|28647|28648|28649|28650|28651|28652|28653|28654|28655|132061|171270|195230|248654|248655|263003|291712|291719|291720|291722|291725|291729|293048|293052|293053|293054|296315|296322|296380|296386|406365|485692|485693|485730|485731|485732|485733|485743|485744|500971|576108|589049|889738|889739|891710", + "text": "Pituitary hormone deficiency, combined, 1" + }, + { + "baseId": "28656|28657|28658|28659|28661|191630|195228|195229|255746|255747|255748|255749|255750|255753|255754|255755|265364|273730|325429|325430|325431|325447|325449|325450|325453|325454|325459|325460|325461|325465|325470|335076|335083|335093|335095|335106|335109|335110|335111|335119|335120|341526|341527|341530|341533|341534|341538|341539|341542|341544|341546|341548|341558|341559|341565|341568|341570|341571|341574|343041|343043|343044|343045|343046|343049|343051|343053|343054|374380|374384|377569|466456|466709|505400|513358|530118|530311|549733|567507|570300|570305|586789|589208|611824|620543|620544|620877|644688|644689|644690|644691|714925|714926|740203|822294|843875|843876|843877|843878|843879|875319|875320|875321|875322|875323|875324|875325|875326|875327|875328|875329|875330|875331|875332|875333|875334|875335|875336|875337|875338|875339|875340|875341|875342|875343|875344|875345|875346|875347|875348|875349|875350|875351|875352|876672|876673|927820|927821|937455|949405|949406|957766|971050", + "text": "Glycogen storage disease IXb" + }, + { + "baseId": "28662|28663|187135|303227|303228|303230|303235|303239|303240|306521|306522|306526|306527|306530|306533|306534|306535|306537|306549|306550|306556|311386|311402|311403|311407|311415|311425|311426|311427|311430|311441|311549|311550|311552|311555|311556|311564|311567|311570|311583|311584|311585|311587|311594|311605|311610|311611|311612|311616|311620|369167|898258|898259|898260|898261|898262|898263|898264|898265|898266|898267|898268|898269|898270|898271|898272|898273|898274|898275|898276|898277|898278|898279|900382|924878|980926", + "text": "Deficiency of phosphoserine phosphatase" + }, + { + "baseId": "28664|28665|28666|28667|28668|28669|28670|255683|255684|255686|255687|255688|325084|325085|325088|334738|334745|334747|334751|341225|341228|341229|342736|342747|342749|375409|377545|466384|529996|530000|530422|530429|568095|570108|570252|570254|574030|612310|644597|644598|644599|644600|682739|682740|714876|791583|791584|843756|843757|875097|875098|875099|875100|875101|875102|875103|875104|875105|875106|876651|876652|927778|927779|927780|927781|937415|940358|949368|949369|957733", + "text": "Glycogen storage disease IXc" + }, + { + "baseId": "28671", + "text": "Spina bifida, folate-sensitive, susceptibility to" + }, + { + "baseId": "28673", + "text": "High density lipoprotein cholesterol level quantitative trait locus 9" + }, + { + "baseId": "28675|28676|38793|53745|53747|53749|198179|198180|221624|231648|239866|239867|239878|298816|298825|298827|298834|301293|301295|301306|301307|301316|301322|305675|305677|305680|305681|305682|305798|305800|395049|395050|455100|455310|455816|455820|521709|560550|614922|651458|651563|686792|831471|895241|895242|895243|895244|895245|895246|895247|895248|895249|895250|895251|895252|924233|933148", + "text": "Dilated cardiomyopathy 1P" + }, + { + "baseId": "28676|38791|38792|53747|198626", + "text": "Familial hypertrophic cardiomyopathy 18" + }, + { + "baseId": "28676|29190|52833|52938|55985|78119|78291|78555|78664|78844|178515|178537|178589|188540|188633|224352|224388|224414|224445|224464|224533|224556|243380|360883|372261|406276|419266|419289|485934|911626|984272", + "text": "Sudden cardiac death" + }, + { + "baseId": "28676|51881|53163|53484|55325|55985|78578|178463|178534|178550|178554|178582|178585|178592|178613|178614|178665|189989|224197|224265|224279|224285|224288|224292|224293|224322|224335|224353|224356|224362|224387|224402|224437|224510|224527|224538|224555", + "text": "Cardiac arrest" + }, + { + "baseId": "28678|28679|28680|28681|28682|28685|28686|28687|256854|433597|497509|800131|800132|982176|982177|982178|982179", + "text": "Hemolytic anemia, nonspherocytic, due to glucose phosphate isomerase deficiency" + }, + { + "baseId": "28683|28684", + "text": "Hemolytic anemia, nonspherocytic, and neurologic deficits, due to glucose phosphate isomerase deficiency" + }, + { + "baseId": "28689|28690|48370|48371|137025|137026|137027|137028|137029|195644|246889|281017|281018|281027|281028|281030|281032|281038|281039|281042|281614|281615|281618|281621|281628|281633|281634|281638|282807|282808|282821|282823|282824|282825|282828|282829|282860|282862|283126|283134|283135|283139|283146|283147|365168|365345|365446|448401|490997|498786|557354|628208|628209|628210|628211|690657|746615|787021|788740|824351|824352|824353|864702|864703|864704|864706|864707|864708|864710|864711|864712|864714|864715|864717|864718|865199|865200|920152|922146|930643|952500|952501|964159", + "text": "Congenital disorder of glycosylation type 1t" + }, + { + "baseId": "28691|28694|28696", + "text": "OVARIAN CANCER, EPITHELIAL, SOMATIC" + }, + { + "baseId": "28691|28694|31371|31378", + "text": "Seborrheic keratosis" + }, + { + "baseId": "28691|28692|28694|40609|40610|54631", + "text": "Congenital lipomatous overgrowth, vascular malformations, and epidermal nevi" + }, + { + "baseId": "28691|28692|28694|28696|40610|48303|173901|213941|213942|213943|578414|983285|983286|983287", + "text": "PIK3CA related overgrowth spectrum" + }, + { + "baseId": "28691|226759|411524|411525", + "text": "Rosette-forming glioneuronal tumor" + }, + { + "baseId": "28691|576074", + "text": "MACRODACTYLY, SOMATIC" + }, + { + "baseId": "28692", + "text": "Macrodactyly of toe" + }, + { + "baseId": "28692|40609|40610|576074|576075|970762", + "text": "Capillary malformation of the lower lip, lymphatic malformation of face and neck, asymmetry of face and limbs, and partial/generalized overgrowth" + }, + { + "baseId": "28692|28694|48302|48303|48304|48305|48407|48414|214867|363349|827717|855106", + "text": "Megalencephaly-capillary malformation-polymicrogyria syndrome" + }, + { + "baseId": "28699", + "text": "ALKALINE PHOSPHATASE, PLACENTAL, ALLELE-1 POLYMORPHISM" + }, + { + "baseId": "28700", + "text": "ALKALINE PHOSPHATASE, PLACENTAL, ALLELE-3 POLYMORPHISM" + }, + { + "baseId": "28701|28702|28703|28704|28705|28706|28707|28708|28709|28709|28710|28710|28711|28711|28712|28713|28714|28715|28716|28717|28718|28720|28721|28722|28722|28723|186615|186616|186616|186617|186618|186619|186620|186621|186622|249724|357053|357054|357055|357056|357057|357058|357059|357060|357062|357063|357064|357065|357066|357067|357068|357069|357070|357071|357072|364747|421205|439921|486846|495070|508966|511220|535284|540714|540716|540720|540723|540745|540774|540783|540788|540789|540797|540799|540802|540807|540808|540810|540812|540817|540818|540822|540824|540833|540839|540861|540863|540865|540867|540868|540870|540877|540879|540880|540881|540884|540888|540890|540894|540896|540900|540900|540902|540939|540943|540945|540947|540957|540957|540959|540986|540990|541001|541009|541011|612078|623243|941693|952240|966785", + "text": "Infantile hypophosphatasia" + }, + { + "baseId": "28703|28709|28709|28710|28711|28714|28715|28716|28721|28722|28722|28723|186616|540900|540957|621069", + "text": "Childhood hypophosphatasia" + }, + { + "baseId": "28703|28709|28709|28710|28710|28711|28711|28712|28714|28716|28718|28722|186616|186617|540900|540957|621068|621069|818168|918599|918600|918605|920132|941693|964143|964144|964145|964146|964147|964148|964645|980301", + "text": "Adult hypophosphatasia" + }, + { + "baseId": "28703|28706|28709|28710|28711|28712|28713|28714|28716|28718|28722|186619|191159|194838|194840|195584|249721|249722|249723|249727|272484|273374|274268|278888|278891|278892|278895|278903|278904|278909|278910|278914|278915|278918|278919|278920|279040|279041|279048|279050|279053|279054|279055|279066|280337|280339|280343|280349|280352|280353|280354|280356|280362|280378|280385|280390|280393|280395|357053|357058|357070|364857|417652|421205|442712|486846|540880|540890|540957|576481|621068|621069|621070|732099|732100|746101|761575|780524|780528|799156|823326|863513|863514|863515|863516|863517|863518|863519|863520|863521|863522|863523|863524|863525|863526|863527|863528|863529|916813|963248|964143|972538|977477|977478|977488|977491|977493|977494|977495|983942", + "text": "Hypophosphatasia" + }, + { + "baseId": "28709|28716|28719|28721", + "text": "Odontohypophosphatasia" + }, + { + "baseId": "28717|28718", + "text": "Hypophosphatasia, perinatal lethal" + }, + { + "baseId": "28724", + "text": "ACID PHOSPHATASE 1, SOLUBLE, A/B POLYMORPHISM OF" + }, + { + "baseId": "28725|28726|28727|28729|28730|28733|28734|28736|189023|191497|192083|193434|195243|252953|252954|252955|252956|252957|252958|252959|265375|265376|267188|303476|303483|303485|303486|306890|306891|306901|306903|306906|311786|311788|311789|311817|311825|311827|311828|361407|369290|369987|369991|371396|493027|578462|584498|585376|588060|589154|589239|623143|898447|898448|898449|898450|898451|898452|898453|898454|898455|898456|898458|898460|898461|898462|898463|898464|898465|898466|898467|900408|900409|970221", + "text": "Progressive familial intrahepatic cholestasis 3" + }, + { + "baseId": "28726|28729|28730|28731|28732|28736|48440|193434|194305|361407|578462|590360", + "text": "Low phospholipid associated cholelithiasis" + }, + { + "baseId": "28736", + "text": "ABCB4-related disorders" + }, + { + "baseId": "28737", + "text": "Colchicine resistance" + }, + { + "baseId": "28740", + "text": "Hyperapobetalipoproteinemia, susceptibility to" + }, + { + "baseId": "28741|28742", + "text": "Zellweger syndrome 2" + }, + { + "baseId": "28743|98744|98745|98745|135331|143213|143214|177124|253177|266584|271736|272407|272932|275181|275390|305885|305892|305893|305894|305899|305900|305911|305913|305914|305915|305919|305922|305925|305926|305927|305931|309956|309959|309971|309973|309975|309977|309979|309981|309982|309983|315236|315237|315239|315240|315241|315249|315251|315255|315261|315272|315277|315278|315282|315282|315286|315303|315304|315305|315314|315318|315325|315328|315343|315355|315357|315360|357639|487406|489384|492146|492372|494110|544462|544464|544469|544757|544760|544760|544763|544802|544857|544860|544862|544864|544868|544868|563082|584201|586608|587303|587303|589226|637402|637403|637404|637405|637406|711640|723187|751248|766891|766892|766893|766894|783156|835051|835052|835053|835054|835055|900052|900053|900054|900055|900056|900057|900058|900059|900060|900061|900062|900063|900064|900065|900066|900067|900068|900069|900070|900071|900072|900073|900074|900075|900076|900077|900078|900079|900080|900081|900082|900083|900084|900085|900086|934420|934421|946183|955500|955501|955502|955503", + "text": "Peroxisome biogenesis disorder 5a (zellweger)" + }, + { + "baseId": "28743|28744|98745|143215|172169|271736|315282|357639|544462|544464|544469|544757|544760|544763|544802|544857|544860|544862|544864|544868|587303", + "text": "Peroxisome biogenesis disorder 5B" + }, + { + "baseId": "28747|28748|28749|28750|28751|28752|28753|28754|28755|28756|28757|28759|28760|28761|28762|213598|253807|253808|253809|253810|253811|253813|253814|253815|264466|265681|310610|310612|310613|310615|310617|310618|310619|310623|315850|315853|315856|315857|315859|315860|321876|321886|321888|321894|321895|321898|321901|322582|322585|322593|322594|322595|384626|429125|460114|460116|460124|460126|460226|460230|460232|460248|460250|460482|460486|460488|460498|460504|460936|493972|511872|513595|525338|525342|525343|525345|525349|525349|525442|525444|525518|525531|525536|525775|525779|525781|539416|552144|563901|563907|563908|563922|564712|564716|564729|566441|569751|569754|569765|589284|612289|612290|639103|639104|639105|639106|639107|639108|639109|639110|639111|639112|639113|639114|639115|639116|639117|639118|639119|639120|639121|639122|639123|639123|639124|712449|712450|712451|712452|712453|712454|724044|724045|737568|737569|737570|767882|767883|767884|767885|783669|790973|790974|790975|790976|820232|837165|837166|837167|837168|837169|837170|837171|837172|837173|837174|837175|837176|837177|837178|837179|837180|866085|866086|866087|866088|866089|866090|866091|866092|866093|866094|866095|866096|866097|866098|866099|868486|903569|917790|925902|925903|925904|925905|925906|925907|925908|925909|935142|935143|935144|935145|935146|947017|947018|947019|947020|947021|947022|947023|947024|947025|947026|956146|956147|956148|956149|961861|964344", + "text": "Familial hemophagocytic lymphohistiocytosis 2" + }, + { + "baseId": "28757", + "text": "Hemophagocytic lymphohistiocytosis, familial, 2, susceptibility to" + }, + { + "baseId": "28763|28764|28765", + "text": "PEPTIDE TRANSPORTER PSF2 POLYMORPHISM" + }, + { + "baseId": "28768|28769", + "text": "PEPTIDE TRANSPORTER PSF1 POLYMORPHISM" + }, + { + "baseId": "28770", + "text": "TAP1 deficiency, somatic" + }, + { + "baseId": "28772", + "text": "PRB3S(CYS)" + }, + { + "baseId": "28773", + "text": "PRB3M(NULL)" + }, + { + "baseId": "28774", + "text": "Coronary artery spasm 2, susceptibility to" + }, + { + "baseId": "28774|28775|28776", + "text": "Enzyme activity finding" + }, + { + "baseId": "28775", + "text": "Microvascular complications of diabetes 5" + }, + { + "baseId": "28777|28778|28779|28780", + "text": "Brachydactyly type E2" + }, + { + "baseId": "28781|28782|28786|28787|75363|265484|290731|290738|290748|290753|290757|290758|290763|290766|291668|291673|291687|291689|294874|294878|294882|294883|294894|294895|294898|294901|294912|295258|295260|295270|295275|295276|295277|744066|748295|889129|889130|889131|889132|889133|889134|889135|889136|889137|889138|889139|889140|889141|889142|891663|959509", + "text": "Metaphyseal chondrodysplasia, Jansen type" + }, + { + "baseId": "28783|28784|28785|28789|28790|75363|265484|290731|290738|290748|290753|290757|290758|290763|290766|291668|291673|291687|291689|294874|294878|294882|294883|294894|294895|294898|294901|294912|295258|295260|295270|295275|295276|295277|744066|748295|889129|889130|889131|889132|889133|889134|889135|889136|889137|889138|889139|889140|889141|889142|891663", + "text": "Chondrodysplasia Blomstrand type" + }, + { + "baseId": "28788|536213|619847", + "text": "Eiken skeletal dysplasia" + }, + { + "baseId": "28791|28792|28793|513537|583090", + "text": "Failure of tooth eruption, primary" + }, + { + "baseId": "28794", + "text": "VON HIPPEL-LINDAU SYNDROME, MODIFIER OF" + }, + { + "baseId": "28794", + "text": "Multiple myeloma, translocation 11,14 type" + }, + { + "baseId": "28795|28797", + "text": "Hypoparathyroidism, familial isolated 1" + }, + { + "baseId": "28798|50291|213769|213770|213771|213772", + "text": "Primary hyperparathyroidism" + }, + { + "baseId": "28802|45439|136364", + "text": "Tropical calcific pancreatitis" + }, + { + "baseId": "28806|28807|28808|28809|28810|28811|28812|28813|28814|28815|28816|28817|28818|28819|28820|165743|254940|320515|320518|320519|320521|320522|320523|320534|329297|329298|329316|329317|329324|329327|329328|329335|329337|329338|329342|335880|335881|335898|335903|335905|335917|335921|337835|337837|337838|337839|337844|337871|337877|337880|362221|424223|464201|653888|871851|871852|871853|871854|871855|871856|871857|871858|871859|871860|871861|871862|871863|871864|871865|871866|871867|871868|964075", + "text": "Tooth agenesis, selective, 3" + }, + { + "baseId": "28809|28814|53352|231292|320523|329317|335905|528503|568867|642356|642357|642358|754034|841371|927031|948538", + "text": "Partial congenital absence of teeth" + }, + { + "baseId": "28821", + "text": "PAX8 POLYMORPHISM" + }, + { + "baseId": "28821|28822|28823|28824|28825|28826|28827|28828|177196|250091|281649|281651|281655|281656|281664|281665|281670|281672|281677|281678|282303|282304|282305|282306|282309|282310|282324|282325|282326|282328|282329|282330|282332|283714|283718|283719|283723|283725|283726|283729|283730|283731|283927|283928|283929|283945|283946|283955|283968|283973|283974|283980|283981|283983|283992|284003|427874|685834|690708|690709|690710|690712|695070|719196|732722|762164|790032|790033|790034|790035|861076|880884|880885|880886|880887|880888|880889|880890|880891|880892|880893|880894|880895|880896|880897|880898|880899|880900|880901|880902|880903|880904|880905|880906|880907|880908|880909|880910|880911|880912|880913|880914|880915|880916|882786|882787|903693|903694", + "text": "Hypothyroidism, congenital, nongoitrous, 2" + }, + { + "baseId": "28830|28831", + "text": "Diabetes mellitus, ketosis-prone, susceptibility to" + }, + { + "baseId": "28832|28833|432299", + "text": "Maturity-onset diabetes of the young type 9" + }, + { + "baseId": "28834|28836|28837|28838|28839|28840|28841|28842|100286|100287|166076|166077|166077|166080|166081|167527|167528|460453|524875|525106|569426|623301|650386|650387|695464|836511|836512|836512|852537|903495|962724|962725|962726|962727|962833", + "text": "Renal coloboma syndrome" + }, + { + "baseId": "28844", + "text": "Papillorenal syndrome with macular abnormalities" + }, + { + "baseId": "28845", + "text": "Colonic adenoma recurrence, reduced risk of" + }, + { + "baseId": "28850|38776|38777|38778|38779|54363", + "text": "Noonan syndrome-like disorder with juvenile myelomonocytic leukemia" + }, + { + "baseId": "28850|28891|28899|28902|28905|29203|38777|171928|171929|171930|363045|363149|363150|363151|363152|363582|615782|615783", + "text": "Hematologic neoplasm" + }, + { + "baseId": "28851", + "text": "Tetraamelia, autosomal recessive" + }, + { + "baseId": "28852|28860|28860|28861|28863|28865|28865|28867|28867|28869|28870|28870|28871|28872|46890|141188|141189|191624|191624|191625|191625|191626|191626|207479|207480|236899|236899|252842|252844|252845|252845|252846|252847|252847|252848|252848|252849|252849|252850|252850|252854|252854|252855|252856|252856|252858|252860|252860|252864|252864|252866|252866|252868|252872|252873|252874|252875|252876|252876|252880|252881|259861|259861|259864|259864|266255|267367|267367|267807|267829|268321|268762|269149|269149|272005|272221|272371|272807|273308|273308|302938|302939|302940|302941|302943|302944|302947|302952|302961|302966|302968|302970|302973|302977|302978|302982|302983|302990|302992|302994|303006|303006|303007|303011|303011|303020|303020|303022|303022|303024|303026|303029|303029|303033|303034|303040|303041|303046|303046|303047|303048|303049|303049|303053|306259|306260|306264|306265|306266|306267|306268|306269|306271|306272|306273|306274|306275|306275|306276|306287|306290|306290|306294|310985|310988|310989|311012|311032|311033|311042|311058|311061|311068|311070|311071|311099|311107|311108|311109|311112|311114|311133|311135|311142|311143|311146|311148|311149|311149|311156|311157|311157|311164|311245|311246|311248|311252|311257|311259|311260|311261|311262|311264|311265|311266|311267|311268|311269|311272|311274|311277|311278|311279|311279|311280|311280|311282|311283|311284|311285|311286|311286|311287|311288|311288|311289|311290|311295|353817|353818|362226|363692|363692|369448|428713|428715|428717|456714|456720|456727|456728|456731|456734|457358|457360|457364|457781|502039|508730|514283|522675|522678|522680|522683|522925|522929|523100|523102|523306|523316|561052|561611|561615|561618|561623|561953|564313|566860|566863|566874|587106|615920|636154|636155|636156|636157|636158|636159|636160|636161|636162|636163|636164|636165|682808|692237|692238|692239|700063|700067|700070|700071|722524|750640|750642|750647|766287|766289|782863|782867|790721|790722|802088|821941|821942|821943|821944|821945|821946|821947|833602|833603|833604|833605|833606|833607|833608|833609|833610|833611|833612|833613|833614|833615|852088|852090|898063|898064|898065|898066|898067|898068|898069|898070|898071|898072|898073|898074|898075|898076|898077|898078|898079|898080|898081|898082|898083|898084|898085|898086|898087|898088|898089|898090|898091|898092|898093|898094|898094|898095|898096|898097|898098|898099|898100|898101|898102|898103|898104|898105|898106|898107|900361|900362|900363|900364|924851|924852|924853|924854|924855|933889|933890|945636|955159|961002|965968|965969|966059", + "text": "Greig cephalopolysyndactyly syndrome" + }, + { + "baseId": "28853|28854|28857|28859|28860|28860|28862|28865|28867|28868|28870|46866|46867|46868|46869|46870|46871|46872|46873|46874|46875|46876|46877|46878|46879|46880|46881|46882|46883|46884|46885|46886|46887|46888|46889|46890|46890|141188|141189|191624|191624|191625|191625|191626|191626|207479|207480|236899|236899|252842|252844|252845|252845|252846|252847|252847|252848|252848|252849|252849|252850|252850|252854|252854|252855|252856|252856|252858|252860|252860|252864|252864|252866|252866|252868|252872|252873|252874|252875|252876|252876|252880|252881|259861|259861|259864|259864|266255|267367|267367|267807|267829|268321|268762|269149|269149|272005|272221|272371|272807|273308|273308|302938|302939|302940|302941|302943|302944|302947|302952|302961|302966|302968|302970|302973|302977|302978|302982|302983|302990|302992|302994|303006|303006|303007|303011|303011|303020|303020|303022|303022|303024|303026|303029|303029|303033|303034|303040|303041|303046|303046|303047|303048|303049|303049|303053|306259|306260|306264|306265|306266|306267|306268|306269|306271|306272|306273|306274|306275|306275|306276|306287|306290|306290|306294|310985|310988|310989|311012|311032|311033|311042|311058|311061|311068|311070|311071|311099|311107|311108|311109|311112|311114|311133|311135|311142|311143|311146|311148|311149|311149|311156|311157|311157|311164|311245|311246|311248|311252|311257|311259|311260|311261|311262|311264|311265|311266|311267|311268|311269|311272|311274|311277|311278|311279|311279|311280|311280|311282|311283|311284|311285|311286|311286|311287|311288|311288|311289|311290|311295|353817|353818|363692|369448|428713|428715|456714|456720|456727|456728|456731|456734|457358|457360|457364|457781|502039|522675|522678|522680|522683|522925|522929|523100|523102|523306|523316|561052|561611|561615|561618|561623|561953|564313|566860|566863|566874|587106|615920|636154|636155|636156|636157|636158|636159|636160|636161|636162|636163|636164|636165|692237|692238|692239|700063|700067|700070|700071|722524|750640|750642|750647|766287|766289|782863|782867|821941|821942|821943|821944|821945|821946|821947|833602|833603|833604|833605|833606|833607|833608|833609|833610|833611|833612|833613|833614|833615|852088|852090|898070|898076|898079|898083|898085|898087|898089|898094|898099|898102|898103|898104|898106|900362|900363|919105|919106|924851|924852|924853|924854|924855|933889|933890|945636|955159", + "text": "Pallister-Hall syndrome" + }, + { + "baseId": "28856|28865|259861|259864|428715", + "text": "Preaxial polydactyly 4" + }, + { + "baseId": "28858|28859|28860|48110", + "text": "Postaxial polydactyly, type A1/B" + }, + { + "baseId": "28864", + "text": "Greig cephalopolysyndactyly syndrome, severe" + }, + { + "baseId": "28866", + "text": "Postaxial polydactyly B" + }, + { + "baseId": "28873|28874|28875|45756|45756|45757|45758|45759|45759|101169|101170|101171|101172|101173|101173|190474|191228|191228|191383|191383|191385|191386|191386|191387|191387|191388|191390|191390|191391|191391|191392|191392|191393|191393|191394|191394|195689|195690|195977|195977|223606|223606|237012|250110|250111|250117|250117|250118|250119|250120|250120|250130|250130|250131|250131|250132|250133|250133|250135|250138|250138|266450|266450|266537|266537|266975|269631|269632|271804|271804|281725|281730|281733|281734|281736|281743|281745|281748|281760|282376|282377|282377|282378|282379|282380|282381|282381|282384|282384|282385|282386|282388|282390|282392|283816|283817|283817|283821|283821|283827|283837|283844|283844|283857|283860|283861|283872|283873|283873|283880|283883|283892|283894|283916|283938|283940|283949|284074|284081|284081|284084|284087|284088|284088|284092|284116|284117|284118|284120|284123|284132|284138|284143|284174|284176|361163|361164|361165|405286|442913|448555|448555|448667|448763|489506|511313|516361|558707|559192|559194|587219|587220|589597|628420|628420|628421|628422|628423|690714|690715|690717|690718|690719|690722|690724|690725|690728|690728|690729|696993|696994|696995|696997|696997|707697|707699|707702|719215|719216|719218|746754|778849|780822|801784|824722|824723|824724|880961|880962|880963|880964|880965|880966|880967|880968|880969|880970|880971|880972|880973|880974|880975|880976|880977|880978|880979|880980|880981|880982|880983|880984|880985|880986|880987|880988|880989|880990|880991|880992|882791|918668|918669|922230|942218|962151", + "text": "Holoprosencephaly 9" + }, + { + "baseId": "28876|28877|28878|28879|28880|28881|38771|38772|38773|46945|46946|46947|404807|415302|615814", + "text": "Deafness with labyrinthine aplasia microtia and microdontia (LAMM)" + }, + { + "baseId": "28891", + "text": "Mast cell leukemia" + }, + { + "baseId": "28891|28902|45973|432379|432380", + "text": "Dysgerminoma" + }, + { + "baseId": "28891", + "text": "MAST CELL LEUKEMIA, SOMATIC" + }, + { + "baseId": "28891", + "text": "MASTOCYTOSIS WITH ASSOCIATED HEMATOLOGIC DISORDER, SOMATIC" + }, + { + "baseId": "28891|28892", + "text": "MASTOCYTOSIS, SYSTEMIC, SOMATIC" + }, + { + "baseId": "28891|28904|536139|536140", + "text": "Cutaneous mastocytosis" + }, + { + "baseId": "28897", + "text": "Piebaldism with sensorineural deafness" + }, + { + "baseId": "28899", + "text": "MASTOCYTOSIS, CUTANEOUS AND SYSTEMIC, SOMATIC" + }, + { + "baseId": "28901|50038|50039|50040|50043|50045|138360|138368|171098|221466|221467|221469|221471|221472|221473|221474|227193|239444|239444|239458|239464|239467|239471|239474|239477|239482|239488|239491|239495|239497|239498|251500|251502|251504|251505|293581|293582|293587|293588|293595|293596|293612|295032|295038|295039|295040|298678|298679|298680|298681|298683|298688|298703|298704|298711|394068|394077|394098|394105|394222|394301|394334|394336|394339|394469|394518|394541|453445|453508|453809|453899|520120|520401|562207|563999|829329|890761|890762|890763|890764|890765|890766|890767|890768|890769|890770|890771|890772|890773|890774|890775|890776|890777|890778|890779|890780|890781|890782|890783|891800", + "text": "Mastocytosis" + }, + { + "baseId": "28902", + "text": "Germ cell tumor of testis" + }, + { + "baseId": "28904|28905|50043|227193|362792", + "text": "Gastrointestinal stromal tumor, familial" + }, + { + "baseId": "28904|179419|362782|362786|362788|362792|362798|362799|362804|362808", + "text": "Thymoma" + }, + { + "baseId": "28906|28907|28908|28909|28910|28911|38770|101163|101164|101167|101168|141091|141092|141093|141094|141095|169046|169048|169049|169050|169051|169052|169053|169054|169055|169056|169057|169058|169059|169060|169061|169062|177146|177278|177721|187399|187400|187401|187402|187403|187404|187405|187407|187408|187409|187410|187411|187412|187413|187415|190470|190472|202797|202800|202803|202809|202813|202817|202819|202825|202836|202839|202840|202841|202843|208087|225868|247389|265619|353907|354156|360091|360196|364043|373077|373079|373082|374207|374216|376029|376043|409114|413374|414698|414699|414700|429553|429554|431922|445223|446889|462969|463705|463706|463720|463723|463725|463729|464033|464186|464197|486756|486757|486758|504533|505050|528142|528144|528484|528486|528489|538022|538023|552174|566406|567998|568018|568019|568854|568860|572775|611419|642342|642343|642344|642345|642346|642347|642348|693473|693475|784711|784712|784713|791397|791398|798673|798674|820618|822095|822096|822097|822098|841351|841352|841353|841354|841355|841356|841357|841358|841359|841360|860100|861579|904256|917786|919524|919525|927020|927021|927022|927023|927024|927025|936596|936597|948530|948531|948532|948533|957200|961317|961620|964414|965993|965994|967280|971516|976663|983762", + "text": "Rett syndrome, congenital variant" + }, + { + "baseId": "28912|28913", + "text": "ERBB2 POLYMORPHISM" + }, + { + "baseId": "28919", + "text": "Ovarian Adenocarcinoma" + }, + { + "baseId": "28923|28924|31368|31370|31371|31372|31378|31381|50063|182676|192091|363005|363079|363127|363577|363607|363608", + "text": "Carcinoma" + }, + { + "baseId": "28924|28926|192091|362947|363005|363006|363007|363008|363009", + "text": "Kidney Carcinoma" + }, + { + "baseId": "28927|28928|28929", + "text": "Childhood hepatocellular carcinoma" + }, + { + "baseId": "28930", + "text": "Autism 9" + }, + { + "baseId": "28931|28932|28933|28934|28935|28936|28937|426707|426708|426709|426710|426711|426712|536234|683222|683223|805247|818178|963502|965958", + "text": "Feingold syndrome 1" + }, + { + "baseId": "28938|28939|83949", + "text": "Large congenital melanocytic nevus" + }, + { + "baseId": "28939|83949", + "text": "Neurocutaneous melanocytosis" + }, + { + "baseId": "28940|28941|28942|48946|142241|142242|172330|172331|206711|275941|275948|275949|275955|275957|276087|276092|276093|276107|276109|276116|276117|276118|276130|276241|276242|276250|276258|276259|276265|276267|276282|276283|276286|276346|276347|276358|276367|276380|276403|276416|276418|276428|276429|276440|364371|404885|861980|861981|861982|861983|861984|861985|861986|861987|861988|861989|861990|861991|861992|861993|861994|861995|861996|861997|861998|861999|862000|862001|862002|862003|862004|862005|862006|862007|862008|862009|862010|864961", + "text": "Noonan syndrome 6" + }, + { + "baseId": "28943|462454|462456|463311|527341|840232|840233|840234|926723|926724|936243|936244|956924|956925|956926", + "text": "Accelerated tumor formation, susceptibility to" + }, + { + "baseId": "28944|28947|28948|28949|28950|28952|28953|28954|28955|28956|28957|28958|28967|28968|28969|28970|28971|28972|28972|28974|28975|28977|28978|28981|28984|28985|28987|28988|28990|28993|36221|36222|36223|36224|36228|36230|36235|36242|36246|36247|36249|36255|36260|36261|36267|36269|36273|36275|36278|36279|36280|36284|36286|36288|36289|36291|36292|36293|36296|36298|36304|36310|38399|45382|45383|45384|45388|47198|47200|47215|47216|47217|47230|47233|50280|50281|50282|50283|50284|50285|136461|136475|136510|138916|138917|138918|138919|138920|138926|138928|139806|139807|139808|139809|139812|139813|139814|139816|139820|139822|139823|139825|139827|139828|139830|139832|139834|139835|151134|151385|171124|171125|182944|182945|182950|182955|182958|186115|186117|186118|197378|197386|212764|212766|212767|212768|212769|212772|212775|212776|212785|212787|212790|212792|212793|212794|212795|221949|221950|221952|221961|221962|221967|221969|221970|221971|221972|221976|221977|240783|240788|240790|240791|240792|240793|240795|240796|240806|240811|253762|310292|321368|321384|321388|358819|358820|358821|358822|358823|358824|358825|358826|358827|358828|358829|358830|358831|358832|359964|397244|397271|397281|397282|397451|397456|397793|397813|459825|460013|460278|460727|475257|525176|525320|525390|525471|539277|539278|539279|539280|539281|539282|539283|539284|539285|539286|539287|540534|540540|540543|540546|540550|563727|569655|575800|575801|575802|575803|575804|575805|790958|790959|967151", + "text": "Multiple endocrine neoplasia, type 2a" + }, + { + "baseId": "28944|28947|28948|28949|28950|28952|28953|28954|28954|28955|28956|28957|28958|28964|28967|28968|28970|28971|28972|28973|28974|28975|28977|28978|28979|28982|28983|28984|28985|28986|28987|28988|28989|28990|28994|36221|36222|36223|36224|36226|36228|36231|36237|36238|36239|36240|36241|36242|36243|36244|36246|36246|36249|36250|36252|36254|36259|36260|36261|36266|36269|36270|36272|36273|36274|36275|36276|36277|36279|36280|36283|36284|36286|36287|36288|36289|36291|36292|36293|36296|36298|36299|36301|36302|36304|36305|36309|38399|45384|45388|46839|47198|47201|47205|47206|47209|47215|47216|47217|47218|47221|47223|47224|47225|47228|50278|50279|50280|50281|50282|50283|50284|50285|88840|101890|101891|101892|101893|136461|136472|136475|136510|138916|138917|138918|138919|138920|138921|138922|138923|138924|138925|138926|138927|138928|138929|138930|139806|139807|139808|139809|139810|139811|139812|139813|139814|139815|139816|139817|139818|139819|139820|139821|139822|139823|139824|139825|139826|139827|139828|139829|139830|139831|139832|139833|139834|139835|139836|139837|151134|151385|152390|171124|171125|171126|174942|175112|182944|182945|182948|182949|182950|182951|182953|182955|182956|182957|182958|186114|186115|186116|186117|186118|186119|195744|197379|197386|212764|212765|212766|212767|212768|212769|212770|212771|212772|212774|212775|212776|212777|212778|212779|212780|212781|212782|212783|212784|212785|212786|212787|212789|212790|212791|212792|212793|212794|212795|212796|213513|221944|221945|221946|221947|221948|221949|221950|221951|221952|221953|221954|221955|221956|221957|221958|221961|221962|221963|221964|221965|221966|221967|221968|221969|221970|221971|221972|221973|221974|221975|221976|221977|226087|233776|233777|233780|233785|233786|233787|233789|233790|233792|233794|240782|240783|240784|240785|240786|240787|240788|240789|240790|240791|240792|240793|240794|240795|240796|240797|240799|240800|240801|240802|240803|240804|240805|240806|240807|240808|240809|240810|240811|240813|240814|240815|253763|253764|253765|253766|271973|310270|310276|315392|315393|321370|321385|321388|322066|322067|322103|358822|358826|358827|358830|358832|359961|359964|363192|370742|371671|371676|397244|397249|397253|397255|397261|397262|397267|397269|397271|397281|397282|397294|397295|397313|397432|397444|397445|397449|397451|397452|397453|397456|397458|397461|397468|397472|397477|397480|397484|397494|397516|397674|397680|397681|397683|397690|397695|397697|397699|397700|397703|397710|397713|397723|397775|397776|397778|397783|397793|397807|397810|397813|397814|397824|397825|397828|397837|397846|397847|407855|407856|425873|425874|459768|459772|459774|459777|459794|459798|459809|459816|459817|459821|459825|459829|459832|459835|459845|459848|459850|459851|459855|459857|459861|459871|459872|459879|459882|459886|459973|459980|459990|459995|459998|460000|460003|460006|460008|460009|460013|460017|460021|460023|460024|460025|460027|460029|460031|460032|460051|460067|460069|460070|460235|460237|460239|460246|460247|460251|460259|460261|460265|460267|460271|460272|460278|460282|460285|460289|460291|460304|460309|460312|460316|460318|460320|460325|460664|460669|460677|460686|460688|460691|460695|460697|460710|460717|460719|460723|460727|460729|460733|460738|460753|475056|475065|475070|475076|475081|475101|475107|475250|475257|475258|475260|475261|475265|475270|475271|475272|475273|475276|475279|475289|475296|475297|475303|475305|475307|475308|475329|475336|475340|475345|502791|503619|503625|525078|525092|525093|525098|525100|525105|525109|525112|525123|525127|525132|525135|525149|525153|525164|525165|525176|525178|525284|525287|525292|525293|525294|525297|525299|525302|525306|525308|525315|525317|525320|525324|525331|525332|525337|525390|525395|525396|525401|525402|525407|525409|525415|525416|525420|525421|525428|525429|525436|525439|525445|525446|525450|525461|525471|525586|525594|525596|525606|525607|525610|525612|525614|525617|525627|525629|525640|525641|525642|525643|525644|525645|539278|539279|539280|539281|539282|539286|540533|540536|540542|540543|540553|551859|551860|551873|563694|563695|563710|563715|563725|563727|563732|563733|563735|563738|563740|563746|563748|563750|563752|563754|563758|563761|563766|563773|564563|564565|564567|564571|564585|564590|566257|566262|566263|566266|566270|566278|566279|566283|566284|566294|566295|566297|566298|566300|566302|569614|569630|569631|569635|569645|569646|569655|569658|569660|569662|569666|569668|575550|575553|575554|575555|575801|575802|575803|638860|638861|638862|638863|638864|638865|638866|638867|638868|638869|638870|638871|638872|638873|638874|638875|638876|638877|638878|638879|638880|638881|638882|638883|638884|638885|638886|638887|638888|638889|638890|638891|638892|638893|638894|638895|638896|638897|638898|638899|638900|638901|638902|638903|638904|638905|638906|638907|638908|638909|638910|638911|638912|638913|638914|638915|638916|638917|638918|638919|638920|638921|638922|638923|638924|638925|638926|638927|638928|638929|638930|638931|638932|638933|638934|638935|638936|638937|638938|638939|638940|651962|651964|652000|652032|652034|652127|684174|685272|687627|687628|687629|687630|687632|687633|687634|687635|689981|689982|692829|692831|692832|692834|692835|692839|692840|692842|695475|695478|695479|701341|701345|712366|712367|737485|744443|752096|752097|752098|752103|767715|767717|767721|767727|767729|767730|767734|767738|767739|775485|775666|783590|787586|787643|787663|809872|809875|809911|809915|809918|809922|809933|809934|809939|809947|809950|809953|809958|809962|809965|809968|809970|809971|809976|820204|820205|820206|836802|836803|836804|836805|836806|836807|836808|836809|836810|836811|836812|836813|836814|836815|836816|836817|836818|836819|836820|836821|836822|836823|836824|836825|836826|836827|836828|836829|836830|836831|836832|836833|836834|836835|836836|836837|836838|836839|836840|836841|836842|836843|836844|836845|836846|836847|836848|836849|836850|836851|836852|836853|836854|836855|836856|836857|836858|836859|836860|836861|836862|836863|836864|836865|836866|836867|836868|836869|836870|836871|836872|851373|851375|851772|852246|852251|852545|925792|925793|925794|925795|925796|925797|925798|925799|925800|925801|925802|925803|925804|925805|925806|925807|925808|925809|925810|925811|925812|925813|925814|935016|935017|935018|935019|935020|935021|935022|935023|935024|935025|935026|935027|935028|935029|935030|935031|935032|935033|935034|935035|935036|935037|935038|935039|935040|935041|935042|940167|940168|940169|940957|940958|946872|946873|946874|946875|946876|946877|946878|946879|946880|946881|946882|946883|946884|946885|946886|946887|946888|946889|946890|946891|946892|946893|946894|946895|946896|946897|946898|946899|946900|956040|956041|956042|956043|956044|956045|956046|956047|956048|956049|956050|956051|956052|956053|956054|956055|959415", + "text": "Multiple endocrine neoplasia, type 2" + }, + { + "baseId": "28948|28955|28956|28957|28958|28968|28970|28972|28975|28990|31716|31720|31721|31723|31724|31725|31726|31727|31728|31729|31731|31732|31735|31736|31738|31741|31742|31744|31747|31749|36242|36249|45179|45180|45181|45182|45183|45184|45185|45186|45187|45188|45189|45190|45191|45192|45193|45194|45195|45196|45197|45198|45199|45200|47217|47233|48362|50289|50291|50293|50294|102143|102144|102146|102147|136488|138379|138380|139876|139877|139878|139879|139880|139881|139882|139883|171148|171149|177834|181216|181217|186154|186155|186156|186157|186158|186159|195774|197513|197518|197519|197521|197524|197525|197527|197528|197530|197531|197533|197538|197539|197541|197542|197545|197546|197547|197548|197549|197550|197552|197555|197557|197558|197559|197562|197564|197568|212930|212931|212932|212933|212934|212935|212936|212937|212938|212939|212940|212941|212942|212943|212944|212945|212946|212947|212948|212949|212950|212951|222152|222153|222155|222156|222157|222158|222159|222160|222161|222163|222164|222165|222166|241167|241168|241169|241170|241171|241172|241173|241175|241176|241177|241178|241179|241180|241181|241182|241183|241184|241185|241186|241187|241188|241189|241190|241191|241192|241193|241194|241195|241196|241197|241198|241199|241200|241201|241202|241203|241204|254243|254244|259994|259996|259997|259998|259999|260000|260001|260002|264436|264443|314541|314543|314544|314549|314551|321250|321251|327382|327391|327398|327399|328432|328438|328445|328454|328456|328457|358841|371565|371566|372280|372506|390089|397583|398007|398266|398267|398272|398274|398276|398283|398284|398291|398294|398299|398300|398303|398317|398320|398322|398324|398330|398338|398350|398351|398354|398357|398359|398365|398372|398376|398380|398381|398396|398397|398401|398407|398408|398411|398415|398421|398422|398425|398426|398442|398702|398704|398707|398708|398711|398712|398713|398717|398719|398730|398733|398737|398739|398740|398743|398744|398749|398750|398752|398764|398807|398810|398814|398838|398839|398852|398854|398857|398859|398864|398872|398875|398877|398878|398892|398893|398894|408406|408410|415286|419780|419783|419786|419787|419790|419794|419802|419804|419810|419813|419815|419823|419824|419828|419830|419835|419842|419843|419848|419852|419858|419861|419864|419865|421872|433092|434509|444850|444851|444854|444855|461257|461259|461263|461265|461267|461268|461271|461273|461275|461278|461282|461283|461284|461286|461303|461306|461314|461315|461319|461327|461450|461453|461456|461459|461462|461464|461475|461476|461480|461484|461486|461494|461783|461785|461787|461789|461791|461797|461799|461805|461808|461810|461816|461822|461830|461840|461843|461845|461846|461847|461849|461852|461854|462110|462111|462113|462114|462115|462121|462127|462128|462140|462149|462150|462159|462160|462165|462168|462175|462178|462183|462185|462189|462206|475979|475981|475985|475986|476005|476009|476307|476312|476313|476466|476473|476476|476481|514012|525678|526328|526329|526333|526334|526336|526339|526345|526346|526358|526361|526365|526367|526368|526370|526372|526373|526374|526375|526376|526378|526381|526382|526383|526385|526386|526389|526391|526392|526394|526397|526403|526405|526407|526410|526414|526419|526427|526588|526589|526590|526591|526594|526603|526609|526611|526612|526616|526624|526627|526629|526631|526636|526641|526649|526654|526655|526657|526668|526670|526677|526678|526681|526866|526870|526872|526873|526877|526879|526880|526883|526885|526898|526903|526904|526907|526909|526914|526916|526919|537877|537878|539301|539302|539303|539304|564808|564819|564822|564825|564826|564830|564835|564836|564839|564841|564843|564845|565968|565970|565972|565973|565975|565979|565990|565993|565995|566003|566004|566009|566024|566025|566027|566029|566031|566032|566040|567415|567417|567422|567425|567426|567431|567433|567439|567440|567442|567445|567446|567449|570769|570777|570781|570784|570785|570788|570799|570807|575577|575853|575854|575855|575856|575857|612191|640254|640255|640256|640257|640258|640259|640260|640261|640262|640263|640264|640265|640266|640267|640268|640269|640270|640271|640272|640273|640274|640275|640276|640277|640278|640279|640280|640281|640282|640283|640284|640285|640286|640287|640288|640289|640290|640291|640292|640293|640294|640295|640296|640297|640298|640299|640300|640301|640302|640303|640304|640305|640306|640307|640308|640309|640310|640311|640312|640313|640314|640315|640316|640317|640318|640319|640320|652225|652340|652380|652580|652582|652585|652589|652591|687806|687809|693079|693081|724572|738106|752777|752778|752779|752780|752782|759919|768563|768571|768575|768576|768583|784068|784071|784072|784078|791150|791151|791152|799656|799657|799658|810804|810811|810819|810822|810823|810824|810828|810831|810842|810849|815507|820400|820401|820402|820403|838705|838706|838707|838708|838709|838710|838711|838712|838713|838714|838715|838716|838717|838718|838719|838720|838721|838722|838723|838724|838725|838726|838727|838728|838729|838730|838731|838732|838733|838734|838735|838736|838737|838738|838739|838740|838741|838742|838743|838744|838745|838746|838747|838748|838749|838750|838751|838752|838753|838754|851445|851447|851887|851889|851891|851893|851895|852379|852380|852621|868255|868256|868257|868258|868259|868260|868261|868262|868263|905928|906186|919378|926320|926321|926322|926323|926324|926325|926326|926327|926328|926329|926330|926331|926332|926333|926334|926335|926336|926337|926338|926339|926340|926341|935665|935666|935667|935668|935669|935670|935671|935672|935673|935674|935675|935676|935677|935678|935679|935680|935681|935682|935683|935684|935685|935686|940227|941005|947561|947562|947563|947564|947565|947566|947567|947568|947569|947570|947571|947572|947573|947574|947575|947576|947577|947578|947579|947580|956579|956580|956581|956582|956583|956584|956585|956586|960002|960003|964673|970940", + "text": "Multiple endocrine neoplasia, type 1" + }, + { + "baseId": "28948|28949|28955|28956|28957|28958|28967|28968|28970|28972|28975|28977|28986|28987|28990|36221|36224|36228|36242|36249|36261|36280|36284|36293|36296|36298|38399|47198|47215|47217|47233|50281|50282|50283|136461|136475|138916|138917|138919|138920|138926|138928|139806|139808|139809|139812|139822|139823|139828|139830|139832|139834|139835|171124|171125|182944|182945|182950|182955|182958|186115|186117|212766|212775|212787|221950|221952|221961|221967|221970|221972|221977|240788|240791|240795|240811|321368|358819|358820|358821|358822|358823|358824|358825|358826|358827|358828|358829|358830|358831|358832|525640|919267|919268|919269|967151|974878", + "text": "Multiple endocrine neoplasia, type 2b" + }, + { + "baseId": "28948|28955|28956|28957|28958|28968|28970|28972|28975|28990|36222|36224|36242|36249|36257|36272|36284|36301|47217|47233|54283|363191|363192|363193", + "text": "Medullary thyroid carcinoma" + }, + { + "baseId": "28954|28954|28955|28962|28975|28977|28983|28987|28991|36237|36246|36288|45384|50284|54761|101892|101893|133398|138927|171124|171125|171126|231108|514269|551710|590752|590753|590754|590755|590756|590757|590759|590760|590761|590966|590967|590968|590969|590970|590971|610667|672082|679030|679039|679042|679045|679054|679058|679061|679070|679071|679075|679080|679083|679085|679089|679092|679096|679097|679098|679099|679102|679105|679113|679121|679129|679130|679132|679133|679140|679160|679171|679172|679771|682630|683144|858654|858655", + "text": "Hirschsprung disease" + }, + { + "baseId": "28956", + "text": "Thyroid carcinoma" + }, + { + "baseId": "28958", + "text": "Thyroid carcinoma, sporadic medullary" + }, + { + "baseId": "28969", + "text": "MULTIPLE ENDOCRINE NEOPLASIA, TYPE IIA, WITHOUT PHEOCHROMOCYTOMA" + }, + { + "baseId": "28972|28973", + "text": "MULTIPLE ENDOCRINE NEOPLASIA, TYPE IIA, WITH HIRSCHSPRUNG DISEASE" + }, + { + "baseId": "28975|28977|28985|28986|28993|28994|36221|36228|36230|36269|36275|36287|36305|45384|50278|50282|50284|50285|50293|101890|101891|101892|136461|136472|138916|138926|139807|139815|139817|139819|139827|139828|139830|139833|139835|171125|182944|182948|182956|182958|186117|186118|212767|212783|212784|212794|212930|213771|221946|240788|240790|240797|240802|271973|310269|310270|310276|310292|310293|310301|310303|310308|310309|310315|310324|310330|310333|310334|310337|314528|314532|314540|314552|315391|315392|315393|315394|315397|315398|315399|315400|315401|315409|315411|315412|315418|315419|316327|316346|321246|321368|321369|321370|321384|321385|321388|321398|321411|321412|321414|321415|321417|321419|321420|321423|322063|322066|322067|322068|322098|322103|322120|322121|322125|322128|322139|322140|322141|322142|322151|322153|322160|322161|322168|323758|327388|327389|327400|328439|331128|353127|353128|353220|358824|358829|397269|397444|397680|397699|459817|460008|460025|460251|460316|460325|460677|460686|475107|525176|539281|569630|569655|836830|865863|865864|865865|865866|865867|865868|865869|865870|865871|865872|865873|865874|865875|865876|865877|865878|865879|865880|865881|865882|868471|868472", + "text": "Multiple endocrine neoplasia" + }, + { + "baseId": "28984", + "text": "MEN2 phenotype: Unclassified" + }, + { + "baseId": "28987", + "text": "Central hypoventilation syndrome, congenital, with hirschsprung disease" + }, + { + "baseId": "28988", + "text": "MEN2 phenotype: Unknown" + }, + { + "baseId": "28993", + "text": "Hirschsprung disease, protection against" + }, + { + "baseId": "28996|28996|28997|28998|28999|49044|49045|49046|49047|49048|49055|49056|49064|49072|49075|49076|49079|49081|49084|49089|49091|49095|49096|49097|49098|49100|49101|53790|53797|125840|173746|173883|173889|179046|221364|259750|288551|288552|288556|288557|289314|289320|289321|289324|289332|292325|292338|292352|292354|292462|292470|292475|425523|442524|451825|452141|487033|500278|500494|816448|887836|887837|887838|887839|887840|887841|887842|887843|887844|887845|887846|887847|887848|887849|887850|887851|887852|887853|887854|887855|966789", + "text": "Noonan syndrome 5" + }, + { + "baseId": "28996|28996|28999|49044|49045|49046|49047|49048|49055|49056|49075|49079|49081|49083|49091|49095|49096|49097|49098|49100|49101|53790|53797|53800|173746|173883|173889|179046|179055|221364|259750|288551|288552|288556|288557|289314|289320|289321|289324|289332|292325|292338|292352|292354|292462|292470|292475|425523|442524|451825|452141|487033|500278|500494|790324|887836|887837|887838|887839|887840|887841|887842|887843|887844|887845|887846|887847|887848|887849|887850|887851|887852|887853|887854|887855|918797|966789", + "text": "LEOPARD syndrome 2" + }, + { + "baseId": "28996|49075|152010|152012|152013|179044|179046|425523|487033", + "text": "Cardiomyopathy, dilated, 1NN" + }, + { + "baseId": "29000|235242|243608|612016", + "text": "Papillary thyroid carcinoma" + }, + { + "baseId": "29000", + "text": "Astrocytoma, low-grade, somatic" + }, + { + "baseId": "29000", + "text": "Germ cell tumor, nonseminomatous" + }, + { + "baseId": "29000|236444|362948|363046", + "text": "Colonic neoplasm" + }, + { + "baseId": "29000", + "text": "Cystic epithelial invagination containing papillae lined by columnar epithelium" + }, + { + "baseId": "29000|362820", + "text": "Trametinib-Dabrafenib Response" + }, + { + "baseId": "29000|362820", + "text": "Vemurafenib-Cobimetinib Response" + }, + { + "baseId": "29004|29012|29012|29013|29014|29015|29016|29017|29018|29019|29020|29020|38760|38762|38762|38762|48807|48817|48842|48843|48849|48854|48857|49239|53966|53978|53985|174176|175716|198628|264307|359646|359799|363168|537817|552584|790700|790701|790702|790703|790704|790705|919082|919083|919084|920237|964283|965456", + "text": "Cardiofaciocutaneous syndrome 1" + }, + { + "baseId": "29008|29012|29012|29020|38760|38760|38761|38762|38762|38763|48803|48805|48807|48817|48830|48832|48833|48861|48869|49883|49885|53955|53966|53966|53976|53978|53992|53994|137459|140239|174040|301991|302003|309876|310006|310007|359646|359799|395820|494963|496489|501861|552584|578455|654129|897546|897547|897548|897549|897550|897551|897552|897553|897554|897555|897556|897557", + "text": "Noonan syndrome 7" + }, + { + "baseId": "29012|29020|38760|38762|38762|38762|48803|48805|48807|48817|48817|48830|48832|48833|48861|48869|49883|49885|53955|53966|53976|53978|53992|53994|137459|140239|174040|301991|302003|309876|310006|310007|359646|359799|395820|494963|496489|501861|552584|897546|897547|897548|897549|897550|897551|897552|897553|897554|897555|897556|897557", + "text": "LEOPARD syndrome 3" + }, + { + "baseId": "29017", + "text": "Familial cardiofaciocutaneous syndrome" + }, + { + "baseId": "29019|360041|621022|621029|621030", + "text": "Genetic syndrome with a Dandy-Walker malformation as major feature" + }, + { + "baseId": "29019", + "text": "Tethered cord" + }, + { + "baseId": "29019", + "text": "PHACE syndrome" + }, + { + "baseId": "29019|181451|249186|360041|362521|419008|419011|538282|590021|621019|621022|621029|621030|621032|965915|980695|980696", + "text": "Dandy-Walker syndrome" + }, + { + "baseId": "29022|789168", + "text": "Proteus syndrome" + }, + { + "baseId": "29022", + "text": "Meningeal Neoplasms" + }, + { + "baseId": "29022|152509|362957|363226|363232", + "text": "Prostate neoplasm" + }, + { + "baseId": "29022|48662|48663|137193|137194|222360|222361|222362|241781|241782|241783|241784|241785|241786|241787|241788|241789|241790|241791|241792|241793|241794|399550|399555|399560|399561|399660|399666|399671|399672|399674|399676|399678|399680|399685|399688|399692|399701|399703|400089|400091|400268|400269|400272|400276|400279|463114|463116|463565|463568|463569|463574|463575|463578|463863|463866|463869|463872|464062|464068|464070|464078|464079|464083|464090|464091|490094|504954|527961|528007|528011|528012|528018|528020|528027|528028|528352|528354|528357|528366|528368|528467|528469|528474|528480|528481|528488|528490|567840|567841|567852|567855|572691|572696|572705|572715|572717|572718|572722|572735|575930|575931|575932|642178|642179|642180|642181|642182|642183|642184|642185|642186|642187|642188|652581|652901|652902|652907|684465|685394|688245|688246|688247|688248|688249|688252|688253|690076|693447|693449|693450|695612|702779|725583|769700|791384|820598|841139|841140|841141|841142|841143|841144|841145|841146|841147|841148|841149|841150|841151|841152|841153|851985|926975|926976|926977|926978|936535|936536|936537|940298|940299|941056|948453|948454|948455|948456|948457|948458|948459|960078", + "text": "Cowden syndrome 6" + }, + { + "baseId": "29023|29024|29757", + "text": "Diabetes mellitus, type 1, susceptibility to" + }, + { + "baseId": "29025|29026|301785|301796|301797|301798|301799|301801|301802|301808|301809|301813|301816|301817|301818|301824|301825|304949|304950|304951|304954|304956|304970|304978|309593|309599|309601|309602|309603|309604|309629|309630|309638|309639|309640|309645|309654|309657|309658|309780|309781|309784|309785|309786|309790|442478|735933|897356|897357|897358|897359|897360|897361|897363|897365|897367|897368|897369|897370|897371|897372|897373|897374|897376|897377|897379|897380|897382|897384|897387|897388|897389|897391|897392|897394", + "text": "Leptin deficiency or dysfunction" + }, + { + "baseId": "29027|29028|29029|29030|29031|29032|29033|29034|29035|29036|142432|142433|320249|320254|320258|320261|320264|320270|320271|328777|328781|328783|328786|328796|328798|328800|328812|328814|328815|328829|328837|328851|335434|335442|335444|335445|335459|337295|337304|337308|337310|337311|337315|337318|337323|337324|337325|373716|375911|421973|439296|445186|463876|497661|513342|528033|528374|528494|528495|566289|567860|567862|567863|568732|572739|624472|642189|642190|642191|642192|642193|739159|769715|841154|841155|841156|841157|841158|841159|871672|871673|871674|871675|871676|871677|871678|871679|871680|871681|871682|871683|871684|871685|872356|872357|926979|936538|936539|948460", + "text": "Purine-nucleoside phosphorylase deficiency" + }, + { + "baseId": "29031", + "text": "NUCLEOSIDE PHOSPHORYLASE POLYMORPHISM" + }, + { + "baseId": "29037|216786|216787|216788", + "text": "Myelodysplastic syndrome progressed to acute myeloid leukemia" + }, + { + "baseId": "29041|132071|132072|132073|251790|251792|295574|295575|295576|295580|295587|295608|295609|295611|295621|295624|295629|295631|295634|295636|295640|295645|297367|297373|297380|297383|297384|297391|297393|297396|297397|297398|297402|297403|297408|297410|297414|297416|297417|297418|297420|297422|297430|301196|301243|301247|301250|301251|301252|301254|301257|301258|301259|301271|301290|301296|301297|301431|301434|301435|301437|301448|301458|301461|301462|301471|301473|301474|301475|301478|301481|301482|301483|454639|454644|454646|454706|454707|455446|455449|520789|520793|521041|521219|560163|560165|560167|562858|562861|564791|564799|564804|633476|633477|633478|633479|633480|633481|633482|633483|691755|695276|698818|698819|698821|709651|734871|734872|734873|749252|749253|749254|764913|777511|782185|830352|830353|830354|830357|830358|830359|830360|830361|830362|893089|893090|893091|893092|893093|893094|893095|893096|893097|893098|893099|893100|893101|893102|893103|893104|893105|893106|893107|893108|932729|932730|944417|954052|960554", + "text": "Amyotrophic lateral sclerosis 21" + }, + { + "baseId": "29042|29043|29044|320464|320465|320466|320468|320471|320475|320482|329238|329242|329255|329256|329257|329260|335859|335860|335861|335863|335864|337761|337777|337780|337782|337786|463733|464036|528122|528157|528492|528497|528629|568024|568029|568031|568865|572781|581247|581248|581249|581250|581251|581252|642353|642354|642355|652343|702862|739201|754028|754029|754031|784716|784717|841363|841364|841365|841366|841367|841368|841369|841370|871836|871837|871838|871839|871840|871841|871842|871843|871844|927027|927028|927029|927030|936598|936599|948536|957202", + "text": "Ectodermal dysplasia and immunodeficiency 2" + }, + { + "baseId": "29045|325808|325809|325811|325817|325821|335429|335436|341880|341881", + "text": "Orthostatic intolerance" + }, + { + "baseId": "29046|29046|29047|29050|102896|171811|294660|519673|632527|651126|691638|698680|698681", + "text": "Parkinson disease 1" + }, + { + "baseId": "29048", + "text": "Parkinson disease 4" + }, + { + "baseId": "29051", + "text": "Pyloric stenosis, infantile hypertrophic 1" + }, + { + "baseId": "29053|32105", + "text": "Malaria, severe, resistance to" + }, + { + "baseId": "29054|29055", + "text": "Coronary artery spasm 1, susceptibility to" + }, + { + "baseId": "29054", + "text": "Hypertension, pregnancy-induced, susceptibility to" + }, + { + "baseId": "29054", + "text": "Hypertension resistant to conventional therapy" + }, + { + "baseId": "29054", + "text": "Ischemic heart disease, susceptibility to" + }, + { + "baseId": "29056|29057|29058", + "text": "Glaucoma 1, open angle, O" + }, + { + "baseId": "29056|132600|132601|512663|538511|553406|583137|611450|805130|920021|920022|961359|971205|976685", + "text": "Mental retardation, X-linked 99" + }, + { + "baseId": "29059|29060|29061|29062|250163|359373|427881|516338|516339|516353|559204|612558|628443|628444|628445|628446|628447|650782|707732|719261|732771|746776|762184|780829|794771|819047|824755|824756|824757|824758|922238|930799|942229|961927", + "text": "Warts, hypogammaglobulinemia, infections, and myelokathexis" + }, + { + "baseId": "29059", + "text": "Myelokathexis, isolated" + }, + { + "baseId": "29063", + "text": "NEUROPEPTIDE Y POLYMORPHISM" + }, + { + "baseId": "29064|29065|76986|76987|181582|291881|291882|291883|293276|293277|293279|293285|293291|296542|296545|296546|296567|296568|296569|296596|296599|296600|367744|406379|428249|438891|443537|500660|500982|576771|620770|720701|734383|806427|889835|889836|889837|889838|889839|889840|889841|889842|889843|889844", + "text": "Hypogonadotropic hypogonadism 11 with or without anosmia" + }, + { + "baseId": "29066", + "text": "Hypogonadotropic hypogonadism 10 without anosmia" + }, + { + "baseId": "29068", + "text": "Peripheral demyelination" + }, + { + "baseId": "29068|361106", + "text": "Hand muscle atrophy" + }, + { + "baseId": "29068|29215|213789|270687|275542|360799|361080|361106|514010", + "text": "Distal muscle weakness" + }, + { + "baseId": "29068|29215|361106", + "text": "Decreased nerve conduction velocity" + }, + { + "baseId": "29068|29215|360953|361106|361106|969265|972893", + "text": "Pes cavus" + }, + { + "baseId": "29068|39536|360954|361106|513931|677219", + "text": "Distal lower limb muscle weakness" + }, + { + "baseId": "29068|29069|29073|38758|49660|49660|49661|49662|49663|77570|77573|77578|77583|77590|77592|212633|221757|231697|304959|304983|304984|305007|308667|308670|308671|308698|308700|308702|308708|313844|313846|313921|313922|313923|313931|313938|662832|676963|899361|899362|899364|899365|899366|899367|899368|899369|899370|899371|899372|899373|899374|899375|899376|899377|899378|899379|919147|919148", + "text": "Charcot-Marie-Tooth disease, demyelinating, type 1f" + }, + { + "baseId": "29075|29076|29077|29078|29080|298389|298390|298394|298395|298401|298402|298403|298407|298408|298415|298417|298418|300698|300699|300709|300710|300711|300726|300728|300729|300730|300733|300735|300740|300741|300742|300750|300756|305090|305097|305100|305102|305104|305111|305113|305114|305127|305129|305130|305136|305138|305139|305140|305239|305243|305244|305251|305252|305253|305264|305265|425653|428471|721598|790570|798563|798564|894996|894997|894998|894999|895000|895001|895002|895005|895006|895007|895008|895009|895012|895013|895015|895017|895018|895019|895020|895021|895022|895023|895024|895025|895026|895027|895028|895029|895030|895032|896162|896163|983657", + "text": "Proprotein convertase 1/3 deficiency" + }, + { + "baseId": "29079", + "text": "Body mass index quantitative trait locus 12" + }, + { + "baseId": "29081|48109|177889|551571|612304", + "text": "Retinitis pigmentosa 27" + }, + { + "baseId": "29082|29083", + "text": "Retinal degeneration, autosomal recessive, clumped pigment type" + }, + { + "baseId": "29084|38757|244182|244183|244184|275970|275971|276175|276184|276303|276306|276307|276443|276444|276445|364307|364372|446990|446993|447079|447084|447092|447096|447097|447150|447168|447175|447178|447184|514984|514989|514991|514992|514993|515032|515036|515040|515057|556560|556593|556857|556988|624883|626662|626663|626664|626665|626666|626667|626668|626669|626670|626671|626672|626673|690348|761095|761096|761097|780278|792667|822577|822578|822579|822580|822581|822582|822583|822584|862012|862013|862014|921599|929983|929984|929985|941396|952026|952027", + "text": "Congenital sensory neuropathy with selective loss of small myelinated fibers" + }, + { + "baseId": "29085|29086|29087|29088|29089|29090|29091|85027|85029|85031|85032|85033|85036|101002|101003|101004|101006|101007|101008|101009|101010|101011|101012|101013|101014|101015|101017|101018|101019|101020|101021|101023|101024|101025|101026|101027|101028|101029|101031|101032|101033|101034|101035|101036|101037|101038|101039|101041|135150|135151|135152|135153|135154|135155|135156|135158|135159|135160|135161|135162|135163|135164|135165|135166|135167|135168|135169|135170|135171|135172|135173|135174|135175|135176|135177|135178|135179|135180|135181|135182|135183|135184|135185|135186|135187|135188|135189|135190|135191|135192|135193|135194|135195|135196|135197|135198|135199|135200|135201|135202|135203|135204|135205|135206|135207|135208|177067|177199|177331|177332|177855|177856|177858|177860|177862|177863|177864|177865|177866|186648|186649|188272|190944|190946|191042|191043|191124|191304|191305|191307|191454|191455|191458|191460|191471|191475|191615|191616|191741|192842|192983|193043|193133|194026|194059|194060|194061|194168|194169|194685|194707|195163|195164|195469|195482|195523|195528|195530|195536|195807|195840|195970|196119|196126|196127|196381|196382|196383|196402|196409|205133|206863|206864|206865|206866|206867|206868|206869|206870|209343|215219|226443|226889|226891|228528|228529|228530|228535|228536|228537|228540|228541|228542|228543|228544|237087|237127|246899|246901|250181|250182|250187|250191|250192|250193|250196|250200|250205|250206|250210|250211|250237|250238|250239|250242|250243|250244|250246|250247|250248|250249|250252|250253|250256|250257|250258|250259|250260|250261|250262|250263|250264|250265|250266|250268|250269|250270|250272|250273|250274|250277|250278|250282|250283|250286|250288|250290|250291|250294|250302|259696|259697|264035|264046|264067|265361|265362|265595|265596|265599|265600|265627|265715|265722|265980|266610|267787|268017|268543|268544|269326|269327|269338|269667|269861|270582|270615|271659|271660|271859|272039|272042|272138|272611|273470|273703|274150|275112|275115|275121|282085|282086|282091|282092|282096|282097|282099|282101|282107|282109|282113|282115|282122|282124|282129|282131|282138|282142|282143|282144|282149|282151|282153|282155|282160|282162|282165|282166|282170|282172|282173|282175|282180|282183|282185|282194|282196|282200|282750|282764|282766|282768|282772|282773|282775|282788|282789|282791|282792|282795|282797|282806|282809|282812|282813|282814|282815|282817|282819|282822|282832|282837|282839|282842|282845|282847|282848|282849|282850|282852|282853|282854|282856|282857|282858|284340|284344|284363|284365|284371|284381|284387|284393|284394|284395|284405|284406|284410|284411|284422|284423|284425|284427|284433|284441|284443|284449|284469|284470|284472|284586|284591|284592|284593|284595|284597|284616|284620|284621|284622|284631|284633|284643|284660|284661|284663|284668|284669|284689|284691|284692|284694|284697|284702|284704|284707|284711|284712|284713|284716|284719|284720|284721|284734|284735|284736|284738|284748|284749|284759|284760|284768|284772|357225|357226|357227|357228|357229|357230|357231|357232|357233|357234|357235|359297|359394|360820|360821|362171|365442|365458|365467|365494|365497|365501|365507|365513|365526|365533|365535|365650|365657|365658|365660|365661|365682|365690|365691|365702|365704|365707|365720|365721|365725|365735|365738|365742|365743|365747|365748|365749|365750|365751|365752|365755|365855|365888|365891|365893|365907|365950|366001|366010|405310|405312|405313|405314|405320|405323|405327|405329|405330|405331|414822|421280|421281|421285|421287|425402|425403|425407|427909|427910|427911|427913|427914|427915|427916|427917|438159|438160|438161|438162|440526|440527|440529|440532|440533|442935|442936|442940|442941|442942|442943|442946|442947|442948|442949|442950|442951|442954|442955|442956|442957|442958|442959|442960|442962|442963|442964|442965|442966|442968|442969|442970|448546|448586|448588|448589|448590|448591|448595|448607|448608|448621|448625|448630|448634|448637|448643|448648|448650|448652|448655|448657|448662|448664|448666|448668|448673|448676|448679|448681|448686|448692|448696|448702|448704|448707|448711|448716|448721|448722|448725|448728|448729|448730|448734|448736|448738|448739|448743|448744|448746|448747|448758|448760|448761|448767|448769|448772|448773|448777|448779|448780|448783|448784|448787|448788|448793|448794|448795|448796|448798|448799|448800|448801|448803|448805|448811|448812|448814|448816|448818|448820|448821|448822|448823|448827|448828|448829|448831|448832|448834|448835|448836|448837|448840|448841|448843|448844|448845|448846|448847|448848|448849|448850|448852|448853|448854|448855|448856|448857|448859|448860|448861|448862|448863|448864|448867|448868|448869|448871|448872|448873|448875|448877|448881|448883|448884|448885|448886|448887|448888|448891|448892|448893|448894|448895|448896|448898|448899|448900|448901|448904|448905|448906|448907|448908|448909|448910|448911|448912|448914|448915|448916|448917|448918|448919|448920|448921|448923|448924|448925|448926|448929|448930|448931|448932|448933|448934|448935|448936|448937|448939|448940|448941|448942|448943|448944|448945|448946|448947|448948|448949|448950|448954|448956|448958|448959|448960|448962|448963|448964|448966|448967|448968|448969|448970|448971|448972|448973|448975|448977|448979|448982|448983|448992|448993|448994|448995|448999|449000|449002|449003|449004|449005|449008|449009|449010|449011|449012|449019|449022|449024|449025|449028|449030|449037|449042|449044|449048|449049|449051|449052|486874|486887|486889|486907|486940|488866|490201|490476|491243|492829|497909|497912|498711|498718|498723|498727|498735|498737|498750|498758|498762|498765|498796|498799|498801|498807|498810|498813|498815|498830|498950|498960|498978|498994|499014|499015|499025|499028|499035|499036|499049|499051|499073|499075|511326|511327|511329|511330|511332|516364|516368|516370|516372|516376|516378|516380|516382|516387|516388|516390|516394|516395|516397|516399|516400|516404|516406|516407|516408|516409|516410|516412|516414|516416|516417|516419|516422|516424|516425|516427|516429|516431|516433|516435|516438|516440|516442|516443|516444|516445|516448|516449|516450|516451|516452|516458|516459|516460|516465|516471|516473|516477|516479|516481|516486|516487|516488|516489|516491|516493|516494|516495|516496|516498|516499|516500|516501|516503|516504|516505|516506|516507|516508|516509|516510|516512|516514|516515|516516|516517|516518|516519|516521|516523|516524|516526|516527|516528|516529|516530|516531|516532|516533|516534|516535|516536|516537|516539|516540|516541|516542|516543|516544|516546|516547|516548|516549|516550|516551|516553|516554|516555|516556|516557|516558|516560|516561|516562|516563|516564|516568|516569|516570|516571|516573|516574|516577|516578|516585|516588|516589|538338|538950|538951|541387|541389|541390|541397|541400|541402|541404|541407|541412|541414|541416|541420|541425|541426|541429|541436|541437|541438|541446|541447|541448|541450|541454|541455|541456|541458|541459|541460|541461|541463|541465|541466|541470|541471|541472|541476|541477|541478|541479|541480|541482|541483|541485|541489|541490|541491|541492|541493|541494|541495|541496|541497|541498|541499|541500|541501|541502|541503|541504|541505|541506|541507|541508|541509|541510|541511|541512|541513|541514|541515|541516|541517|541518|541519|541520|541521|541522|541523|541524|541525|541526|541527|541528|541529|541530|541531|541532|541533|541534|541535|541536|541537|541538|541539|541540|541541|541542|541543|541544|541545|541546|541547|541548|541549|541550|541551|541552|541553|541554|541555|541556|541557|541558|541559|541560|541561|541562|541563|541564|541565|541566|541567|541568|541569|541570|541571|541572|541573|541574|541575|541576|541577|541578|541579|541580|541581|541582|541583|541584|541585|541586|541587|541588|541589|541590|541591|541592|541593|541594|541595|541596|541597|541598|541599|541600|541601|541602|541603|541604|541605|541606|541607|541608|541609|541610|541611|541612|541613|541614|541615|541616|541617|541618|541619|541620|541621|541622|541623|541624|541625|541626|541627|541628|541629|541630|541631|541632|541633|541634|541635|541636|541637|541638|541639|541640|541641|541642|541643|541644|541645|541646|541647|541648|541649|541650|541651|541652|541653|541654|541655|541656|541657|541658|541659|541660|541661|541662|541663|541664|541665|541666|541667|541669|541671|541673|541675|541677|541679|541680|541682|541683|541685|541687|541688|541689|541690|541692|541694|541695|541696|541697|541699|541701|541703|541706|541707|541708|541709|541710|541711|541714|541715|541717|541718|541719|541720|541721|541722|541723|541726|541727|541729|541732|541733|541736|541737|541738|541739|541740|541742|541743|541749|541750|541751|541753|541754|541755|541757|541761|541768|541771|541774|541775|541777|541778|541781|541782|541786|541789|541790|557534|557536|557538|557540|557542|557544|557546|557548|557550|557552|557554|557556|557558|557560|557562|557564|557566|557568|557570|557572|557574|557576|557577|557578|557579|557583|557585|557587|557589|557591|557593|557595|557597|557599|557601|557603|557605|557607|557609|557611|557613|557615|557617|557619|557621|557623|557625|557627|557629|557631|557633|557635|558631|558745|558747|558749|558751|558753|558755|558757|558759|558761|558763|558765|558767|558769|558771|558773|558777|558779|558781|558783|558785|558787|558791|558793|558795|558797|558799|558801|558803|558805|558807|559232|559234|559236|559238|559240|559242|559244|559246|559248|559250|559252|559254|559256|559258|559260|559262|559264|559266|559268|559270|559272|559274|559276|559278|559280|559282|559284|559286|559288|559290|576565|576568|585238|585702|612348|614596|620034|621094|621095|628491|628492|628493|628494|628495|628496|628497|628498|628499|628500|628501|628502|628503|628504|628505|628506|628507|628508|628509|628510|628511|628512|628513|628514|628515|628516|628517|628518|628519|628520|628521|628522|628523|628524|628525|628526|628527|628528|628529|628530|628531|628532|628533|628534|628535|628536|628537|628538|628539|628540|628541|628542|628543|628544|628545|628546|628547|628548|628549|628550|628551|628552|628553|628554|628555|628556|628557|628558|628559|628560|628561|628562|628563|628564|628565|628566|628567|628568|628569|628570|628571|628572|628573|628574|628575|628576|628577|628578|628579|628580|628581|628582|628583|628584|628585|628586|628587|628588|628589|628590|628591|628592|628593|628594|628595|628596|628597|628598|628599|628600|628601|628602|628603|628604|628605|628606|628607|628608|628609|628610|628611|628612|628613|628614|628615|628616|628617|628618|628619|628620|628621|628622|628623|628624|628625|628626|628627|628628|628629|628630|628631|628632|628633|628634|628635|628636|628637|628638|628639|628640|628641|628642|628643|628644|628645|628646|628647|628648|628649|628650|628651|628652|628653|628654|628655|628656|628657|628658|628659|628660|628661|628662|628663|628664|628665|628666|628667|628668|628669|628670|628671|628672|628673|628674|628675|628676|628677|650711|650713|650770|650785|650829|650831|650837|650839|650846|650849|650853|650855|650864|650865|650873|650874|650878|650893|650895|650896|655150|655151|655160|678059|679739|679740|679820|685851|685852|685853|689669|689670|690750|690751|690752|690753|690754|690755|690756|690757|690758|690759|690760|690761|690762|690763|690764|690765|690767|690768|690769|690770|690771|690772|690774|690775|690776|690777|690778|690779|690780|690781|690782|690783|690784|690785|690786|690787|690788|690789|690791|690792|690793|690795|690796|690797|690798|690799|690800|690802|690804|690805|690806|690807|690809|690810|690812|690813|690814|690815|690816|690817|690818|695072|695073|695074|695075|695076|695077|695078|695079|695080|695081|695082|695083|695084|695086|695087|695088|695089|695090|695091|695092|697049|697050|697052|697053|697054|697055|697056|697057|697058|697059|697060|697061|697062|697063|697065|697066|697067|697068|697070|697071|697072|697073|697074|697075|697076|697077|697078|697079|697080|697082|697084|697085|697086|707755|707756|707758|707759|707760|707761|707763|707764|707765|707766|707768|719286|719287|719288|719289|719290|719291|719292|719293|719295|719296|719297|719298|719300|719301|719302|719303|719304|719305|719306|719307|719310|730056|730057|732802|732803|732804|732805|732806|732807|732808|732809|732811|732813|732814|732815|732818|732819|732820|732821|732822|732823|732826|732828|732829|732830|732831|743792|743806|743809|743811|743816|746797|746799|746800|746801|746802|746806|746810|746812|746813|746814|746815|746816|746817|746819|746821|746822|746823|746825|746826|746827|746828|746829|746830|746831|746833|758947|758987|758989|758992|758996|758997|759023|759124|762218|762219|762223|762226|762230|762231|762233|762235|762236|762238|762239|762241|762242|762246|762250|762253|762261|762263|762264|762267|762269|762276|762278|762279|762280|762282|762285|762286|762288|762289|762290|762296|762299|762301|762303|762304|774567|774573|774575|774577|774578|774580|774581|774582|774592|777169|777175|777206|777210|780842|780846|780854|780855|780858|780859|780865|780868|780869|780872|780873|780875|780876|780878|780882|780883|780886|780887|780891|780892|780895|780896|780898|787036|787040|787044|787087|787215|787217|790055|790056|790057|790058|790059|790060|790061|790062|790063|794792|794796|798484|798485|801567|802125|802126|802127|802245|804985|816022|816023|819053|819054|819055|824816|824817|824818|824819|824820|824821|824822|824823|824824|824825|824826|824827|824828|824829|824830|824831|824832|824833|824834|824835|824836|824837|824838|824839|824840|824841|824842|824843|824844|824845|824846|824847|824848|824849|824850|824851|824852|824853|824854|824855|824856|824857|824858|824859|824860|824861|824862|824863|824864|824865|824866|824867|824868|824869|824870|824871|824872|824873|824874|824875|824876|824877|824878|824879|824880|824881|824882|824883|824884|824885|824886|824887|824888|824889|824890|824891|824892|824893|824894|824895|824896|824897|824898|824899|824900|824901|824902|824903|824904|824905|824906|824907|824908|824909|824910|824911|824912|824913|824914|824915|824916|824917|824918|824919|824920|824921|824922|824923|824924|824925|824926|824927|824928|824929|824930|824931|824932|824933|824934|824935|824936|824937|824938|824939|824940|824941|824942|824943|824944|824945|824946|824947|824948|824949|824950|824951|824952|824953|824954|824955|824956|824957|824958|824959|824960|824961|824962|824963|824964|824965|824966|824967|824968|824969|824970|824971|850793|850795|850797|850834|850836|851079|851081|851083|851085|851087|851334|851338|851340|858399|858776|881128|881129|881130|881131|881132|881133|881134|881135|881136|881137|881138|881139|881140|881141|881142|881143|881144|881145|881146|881147|881148|881149|881150|881151|881152|881153|881154|881155|881156|881157|881158|881159|881160|881161|881162|881163|881164|881165|881166|881167|881168|881169|881170|881171|881172|881173|881174|881175|881176|881177|881178|881179|881180|881181|881182|881183|881184|881185|881186|881187|881188|881192|881193|881195|881196|881197|881198|881199|881200|882808|882809|882810|882811|882812|882813|903509|903510|915016|922256|922257|922258|922259|922260|922261|922262|922263|922264|922265|922266|922267|922268|922269|922270|922271|922272|922273|922274|922275|922276|922277|922278|922279|922280|922281|922282|922283|922284|922285|922286|922287|922288|922289|922290|922291|922292|922293|922294|922295|922296|922297|930821|930822|930823|930824|930825|930826|930827|930828|930829|930830|930831|930832|930833|930834|930835|930836|930837|930838|930839|930840|930841|930842|930843|930844|930845|930846|930847|930848|930849|930850|930851|930852|930853|930854|930855|930856|930857|930858|930859|930860|930861|930862|939844|939845|939846|939847|939848|939849|939850|939851|940655|940656|940657|940658|940659|942252|942253|942254|942255|942256|942257|942258|942259|942260|942261|942262|942263|942264|942265|942266|942267|942268|942269|942270|942271|942272|942273|942274|942275|942276|942277|942278|942279|942280|942281|942282|942283|942284|942285|942286|942287|942288|942289|942290|942291|942292|942293|952640|952641|952642|952643|952644|952645|952646|952647|952648|952649|952650|952651|952652|952653|952654|952655|952656|952657|952658|952659|952660|952661|952662|952663|952664|952665|952666|952667|952668|952669|952670|952671|952672|952673|952674|952675|952676|952677|952678|952679|952680|952681|952682|952683|952684|952685|952686|952687|952688|952689|952690|952691|952692|952693|952694|952695|952696|952697|952698|952699|952700|952701|952702|952703|952704|952705|952706|952707|952708|952709|952710|952711|952712|952713|952714|952715|952716|952717|952718|952719|952720|952721|952722|952723|952724|952725|952726|952727|952728|952729|952730|952731|952732|952733|952734|952735|952736|959580|959581|959582|960445|960446|960447|960448|960449|960450|970146|974479|974480|977179|977180|977578|977579|977580|977581|977582|977583|977584|977585|977586|977587|977588|977589|977590|977591|977592|977593|977594|977595|977596|977597|977598|977599|977600|977601|977602|977603|977604|977605|977606|977607|977608|977609|977610|977611|977612|977613|977614|977615|977616|977617|977618|977619|977620|977621|977622|977623|977624|977625|977626|977627|977628|977629|977630|977631|977632|977633|983843", + "text": "Nemaline myopathy 2" + }, + { + "baseId": "29092|29093|181494|296719|296720|296723|296724|296725|296737|298589|298593|298595|298602|298603|302717|302718|302727|302744|302778|302790|303018|303032|303035|303036|454853|455342|520965|520966|520976|521190|521192|521195|521196|521398|521468|521473|560241|560243|560354|564979|564981|620193|633684|633685|633686|633687|633688|698995|709789|734987|734988|744131|830576|830577|830578|830579|830580|830581|893762|893763|893764|893765|893766|893767|893768|893769|893770|893771|893772|893773|893774|893775|893776|893777|893778|893779|923969|932816|932817|939998|944508|944509|944510|954100", + "text": "Immunodeficiency 29" + }, + { + "baseId": "29094", + "text": "Asthma, severe, susceptibility to" + }, + { + "baseId": "29095|29096|29098|314909|359994|626209|788853|964848", + "text": "Mitochondrial complex 1 deficiency, nuclear type 4" + }, + { + "baseId": "29100|29101|29102|40437|40440|52289|52291|52299|52300|173797|173798|173800|179061|229099|291667|294871|295253|295255|295257|576329|889125|889126|889127|889128", + "text": "Familial hypertrophic cardiomyopathy 8" + }, + { + "baseId": "29103|29104|29105|29106|29107|40426|40428|40431|40432|45305|45307|45308|45309|52627|52628|52630|52633|52634|52636|52638|52639|52640|52641|52642|52643|52644|52645|52646|52647|52648|52650|136725|142102|165570|175387|175390|175392|175532|175537|175538|179423|179424|179425|179426|179427|179430|179432|179433|179436|179437|179438|179439|189892|214121|215442|224436|241238|258711|258712|316034|316035|316036|329386|329400|329402|330565|372551|374583|389976|390072|398419|398437|398525|398830|398957|408523|415321|424565|438508|461609|461616|462181|462187|462412|462414|462418|508870|526673|526675|526680|526684|526918|527233|527238|527248|565053|566320|567664|567667|615035|615039|617889|617890|640634|640635|640636|640637|640638|652398|666512|685303|687879|791194|791195|799665|839314|839315|839316|839317|839318|839319|839320|839321|852655|869283|869284|869285|869286|869287|869288|872191|911909|926465|926466|935918|935919|956747|960774", + "text": "Familial hypertrophic cardiomyopathy 10" + }, + { + "baseId": "29103", + "text": "MYL2-Related Disorders" + }, + { + "baseId": "29104|75310|78586", + "text": "Death in early adulthood" + }, + { + "baseId": "29108|29109|255284|552183|583124|791476", + "text": "Griscelli syndrome type 1" + }, + { + "baseId": "29111|29112|29113|29114|29115|29116|29117|29118|29119|29120|29121|29122|29123|29124|29125|47567|47568|47569|47570|53729|53734|176268|176270|176394|176408|201017|351526|432343|434682|497536|513148|590338|590339|623356|818346|818347|818348|919951|921221", + "text": "Macrothrombocytopenia and granulocyte inclusions with or without nephritis or sensorineural hearing loss" + }, + { + "baseId": "29111|29112|29113|29114|29117|29120|29121|29122|47569|47570|53715|53716|53717|53718|53719|53720|53721|53722|53723|53724|53725|53726|53727|53728|53729|53730|53732|53733|53734|53736|53737|53738|53739|53740|176254|176256|176257|176259|176260|176265|176267|176268|176269|176271|176272|176273|176277|176282|176286|176372|176380|176386|176388|176392|176395|176396|176401|176402|176404|176408|201017|231139|231148|231149|231155|231161|231162|231165|231168|231169|231170|231171|257619|257621|257641|257647|257658|274300|338000|338001|338003|338006|338008|338013|338018|338019|338024|338026|338028|338030|338034|338041|338057|338058|338060|338062|338063|338064|338068|347647|347648|347652|347653|347654|347658|347663|347670|347671|347672|347674|347676|347678|347681|347682|347683|347685|347686|347690|347691|347692|347697|347698|347707|351511|351512|351513|351515|351518|351523|351524|351526|351527|351529|351531|351534|351535|351536|351541|351551|351553|351555|352497|352498|352499|352500|352501|352502|352503|352504|352505|352506|352507|352508|352509|352510|352511|352512|352513|352514|352515|352516|352517|352518|353606|353607|363895|379851|497760|497763|514108|612057|612058|612059|612060|612061|612062|612063|612064|612065|612066|612067|612068|612069|612070|612071|612072|612073|612074|615654|615655|615657|615659|615662|620688|672115|760982|818346|891201|891202|891203|891204|891205|891206|891207|891208|891209|891210|891211|891212|891213|891214|891215|891216|891217|891218|891219|891220|891221|891222|891223|891224|891225|891226|891227|891228|891229|891230|891231|891232|891233|891234|891235|891236|891237|891238|891239|891240|891825|891826|891827|891828|891829|891830", + "text": "MYH9-related disorder" + }, + { + "baseId": "29118|29122|47570|53715|53716|53717|53718|53719|53720|53721|53722|53723|53724|53725|53726|53727|53728|53729|53730|53732|53733|53734|53736|53737|53739|53740|176254|176256|176257|176259|176260|176265|176267|176268|176269|176271|176272|176273|176277|176282|176286|176372|176380|176386|176388|176392|176394|176395|176396|176401|176402|176404|176408|176408|231139|231148|231149|231155|231161|231162|231165|231168|231169|231170|231171|257619|257621|257641|257647|257658|274300|338000|338001|338003|338006|338008|338013|338018|338019|338024|338026|338028|338030|338034|338041|338057|338058|338060|338062|338063|338064|338068|347647|347652|347653|347654|347658|347663|347670|347671|347672|347674|347676|347678|347681|347682|347683|347685|347686|347690|347691|347692|347697|347698|351511|351512|351513|351518|351523|351524|351526|351527|351529|351531|351534|351535|351536|351541|351551|351553|352497|352498|352499|352500|352501|352502|352503|352504|352505|352506|352508|352509|352511|352512|352513|352515|352516|352518|379851|497536|497760|497763|513667|615654|654931|760982|818346|891201|891202|891203|891204|891205|891206|891207|891208|891209|891210|891211|891212|891213|891214|891215|891216|891217|891218|891219|891220|891221|891222|891223|891224|891225|891226|891227|891228|891229|891230|891231|891232|891233|891234|891235|891236|891237|891238|891239|891240|891825|891826|891827|891828|891829|891830", + "text": "Autosomal dominant nonsyndromic deafness 17" + }, + { + "baseId": "29153|29156|29162|45303|45929|51986|51987|51989|51991|51993|51999|52023|52033|52034|52038|52039|52043|52056|52064|52066|52070|52101|52108|52111|52112|52114|52115|52116|52119|52122|52123|52126|52127|52140|52147|52150|52151|52153|52165|52168|52171|52177|52182|52194|52197|52202|52207|52208|52226|52242|52243|52252|52254|52261|52262|52273|52286|52287|142081|142083|142090|142091|142094|175443|175446|175448|175452|175513|175516|175586|175588|175606|178672|179466|179471|179522|179525|179526|179598|179680|179712|186460|186481|189951|213631|224471|254932|258801|258803|258808|320364|320370|320374|320376|320377|320379|320380|328973|328975|328980|328987|328990|328992|328994|328997|329003|335627|335628|335630|335631|335634|335643|335644|335647|335648|335649|337446|337452|337457|337458|337463|337467|337469|337478|337484|337486|353295|400159|463977|504491|528125|528424|624478|656238|688269|841243|841286|851989|871732|871733|871734|871735|871736|871737|871738|871739|872363|872364|872365|964412|964413|974522", + "text": "Myosin storage myopathy" + }, + { + "baseId": "29153|175452|179576|213631", + "text": "MYH7-related late-onset scapuloperoneal muscular dystrophy" + }, + { + "baseId": "29154|29161|45303|45929|51262|51986|51987|51989|51991|51993|51999|52023|52033|52034|52038|52039|52043|52056|52064|52066|52070|52101|52108|52111|52112|52114|52115|52116|52119|52122|52123|52126|52127|52140|52147|52150|52151|52153|52165|52168|52171|52177|52182|52190|52193|52194|52197|52202|52207|52208|52226|52239|52242|52243|52252|52254|52258|52258|52261|52262|52273|52286|52287|142081|142083|142090|142091|142094|152927|152928|152929|152930|152931|152932|152933|152934|152935|152936|152936|152937|171164|175443|175446|175448|175513|175516|175586|175588|175606|175630|178672|179466|179471|179522|179525|179576|179598|179680|179712|186460|186481|188227|188229|188230|188231|188232|188233|188234|188235|189951|213631|224471|254932|258801|258803|258808|320364|320370|320374|320376|320377|320379|320380|328973|328975|328980|328987|328990|328992|328994|328997|329003|335627|335628|335630|335631|335634|335643|335644|335647|335648|335649|337446|337452|337457|337458|337463|337467|337469|337478|337484|337486|353295|400159|463977|504491|528424|553353|624478|656238|688269|802192|841243|841286|851989|871732|871733|871734|871735|871736|871737|871738|871739|872363|872364|872365", + "text": "Myopathy, distal, 1" + }, + { + "baseId": "29159|514040", + "text": "Chest pain" + }, + { + "baseId": "29160|175443|175588|179477|179680", + "text": "Myopathy, myosin storage, autosomal recessive" + }, + { + "baseId": "29162|29165|29166|29167|76983|76984", + "text": "Left ventricular noncompaction 5" + }, + { + "baseId": "29166|45110|45111|45112|45545|45929|51429|51431|51440|51710|51741|51883|51927|51933|51987|51989|51993|51999|52023|52033|52034|52070|52101|52112|52114|52115|52119|52126|52127|52147|52150|52153|52165|52177|52197|52202|52207|52208|52239|52242|52252|52254|52262|52273|52286|52782|52785|52786|52790|52801|52810|52820|52821|52826|52838|53044|53047|53049|54073|55012|55787|56974|78578|100361|136674|141809|142081|142083|142094|153685|165564|165600|172177|173313|173631|174793|174800|174866|175036|175577|175584|175588|175606|178464|178472|178490|178517|178558|178560|178618|178631|178681|178755|178927|178930|179285|179395|179598|179668|179712|179745|186358|186460|186481|189951|197080|197106|198042|198264|224185|224196|224217|224218|224235|224273|224310|224327|224396|224399|224459|224465|224469|224471|224478|224505|224515|224562|224587|229942|278453|278454|278568|279751|279841|311447|311448|311449|314279|314281|314284|314287|314289|314290|317037|317039|317042|320364|320370|320374|320376|320377|320379|320380|320886|320887|320892|320893|322278|322281|322290|322292|322305|322315|322319|322320|322321|323019|323021|323578|323593|323602|323607|323616|326925|326939|326941|326942|326951|327968|327969|327974|327975|328973|328975|328987|328990|328992|328994|328997|329003|331229|331578|331581|331583|331587|331597|331610|331619|331628|331630|331646|335627|335628|335630|335631|335634|335643|335644|335647|335649|337446|337452|337457|337458|337467|337469|337478|337484|337486|338527|338558|338582|338583|338588|338608|338610|338614|338623|339057|340274|340279|340282|340299|340308|340311|340314|340316|340327|340328|340329|340336|340337|346985|347003|347004|347005|348271|352158|352159|352160|352795|352796|352797|353295|400327|445196|510655|514088|557779|610480|627513|630979|648593|677247|679526|679539|679542|679547|679548|679549|679552|679553|679557|679558|858254|957503|965310|980685", + "text": "Cardiomyopathy, left ventricular noncompaction" + }, + { + "baseId": "29170|29171|29174|45278|45279|45280|45281|45282|45283|45284|45286|45287|75290|94510|142030|142031|142032|142033|142034|142035|142036|142037|142038|142040|142041|142042|142043|142044|142045|142046|142047|142048|142049|142050|142051|142052|142053|142054|142056|142057|142058|142059|142060|142061|142062|142063|142065|142066|142067|142068|142069|142070|142071|142072|142073|142074|142075|142076|165568|165569|169194|171183|171184|171185|171185|178710|178711|178712|178713|190107|193180|194229|194230|196238|197832|197834|197835|197836|197837|197838|197841|197842|197845|197846|197848|197849|197851|197852|197853|197854|197856|197859|197860|197866|197869|197870|197871|197875|197876|197877|197878|197879|197880|197881|197882|197883|197884|197886|197887|197888|197889|197890|197891|197892|197893|197894|197895|197896|197899|197900|197902|197905|197907|197908|197909|197910|197912|197914|197917|197920|197921|197922|197923|197926|199802|208248|208249|215506|215507|215508|215509|222446|222447|222448|222449|230609|230610|242193|242194|242195|242196|242197|242198|242199|242200|242202|242203|247111|247112|255472|255476|255477|255480|258959|258961|258962|258964|258965|258969|258971|258972|258973|258974|258975|258978|258979|258984|258991|258992|258993|258994|258995|258996|258997|258998|259000|259002|259003|262410|274177|324398|324399|324400|324401|324406|324408|324411|324412|324414|324420|324423|324455|324464|324474|324475|324487|333924|333927|333944|333947|333948|333949|333951|333954|333956|333957|333965|333980|333983|333993|333996|333999|334002|334004|334006|334014|340690|340692|340695|340696|340703|340704|340706|340709|340721|340724|340727|340730|340731|340734|340740|340741|340756|340758|340765|340773|342111|342116|342118|342123|342125|342129|342130|342151|342156|342174|342175|342176|360225|360230|360341|361878|361879|361880|362741|362742|373943|373948|373967|373971|373987|373992|373996|374634|374637|374638|374650|374652|374658|374675|374682|375018|375020|375050|375055|377068|377071|377077|377079|377083|400488|400536|400538|400544|400545|400546|400567|400569|400576|400577|400580|400672|400680|400686|400689|400697|400708|400709|400718|400731|400736|400739|400740|401057|401069|401103|401104|401110|401112|401116|401117|401363|401374|401376|401381|401386|401389|409453|409461|415469|422072|433719|445497|445502|465066|465067|465078|465079|465082|465084|465087|465089|465090|465110|465111|465118|465119|465128|465522|465523|465669|465678|465679|465682|465684|465690|465691|465696|465697|465738|465743|465746|465751|465758|465765|465783|465792|465794|465797|465798|465803|465804|465807|465946|465948|465956|465963|465964|465968|465975|465982|465984|465987|465989|487769|487900|505389|505410|505411|505586|505621|506082|506094|506101|510693|510694|510698|510699|510703|510706|510712|510715|510723|510729|510730|512947|512948|512949|529471|529473|529477|529478|529479|529480|529482|529489|529490|529492|529494|529495|529497|529501|529521|529522|529794|529795|529796|529797|530055|530059|530060|530062|530063|530064|530066|530068|530070|538085|538087|538088|538093|552465|567464|567682|567684|567690|567693|567699|567702|569553|569560|569561|569562|569567|569568|569994|569996|570000|570004|570005|570013|573719|573720|573722|573724|573730|573732|573734|573741|609937|614412|615137|618296|618300|618303|618308|618320|618327|618336|618341|618342|618344|619519|624533|624535|643937|643938|643939|643940|643941|643942|643943|643944|643945|643946|643947|643948|643949|643950|643951|643952|643953|643954|643955|643956|643957|643958|643959|643960|652605|652606|652690|652691|653110|653116|668126|668296|668331|682300|684578|688529|688532|688534|688535|690131|703511|714757|726451|726452|754940|760409|770566|770570|770571|770574|770579|778178|785147|785149|787919|797248|799832|799833|799834|799835|820769|820770|820771|820772|843158|843159|843160|843161|843162|843163|843164|843165|843166|843167|843168|843169|843170|843171|843172|843173|843174|843175|843176|843177|843178|843179|843180|843181|843182|843183|843184|843185|843186|843187|843188|843189|843190|843195|852627|874761|874762|874763|874764|874765|874766|874767|874768|874769|874770|874771|874772|874773|874782|874789|874790|874791|874792|874793|874794|874802|876627|876628|876629|913190|913229|913230|913273|913356|913393|913439|913450|913467|913557|913563|916368|916656|919608|919609|927571|927572|927573|927574|927575|927576|927577|949193|949194|957641|964442|967204|967205|967206|967207|971037|971038|981935|981936", + "text": "Aortic aneurysm, familial thoracic 4" + }, + { + "baseId": "29175|227384|384618|622438|919699|919700", + "text": "Carney complex variant" + }, + { + "baseId": "29175|135116|135117|135118|135119|135120|135121|135122|135123|135124|135125|135126|135127|208334|208337|208338|227384|256016|256021|256022|327061|327065|327077|327079|327084|327085|327086|327090|327092|327093|327094|327098|327102|336968|336970|336974|336978|336979|336982|336986|336987|336990|336992|336995|343188|343189|343194|343195|343200|343203|343204|343208|343209|343210|343213|343214|343221|344821|344822|344831|344833|344835|384618|438784|620568|620569|620570|620882|622438|703933|703934|715215|715218|715220|726970|755591|755594|876354|876355|876356|876357|876358|876359|876360|876361|876362|876363|876364|876365|876366|876367|876368|876369|876370|876371|876372|876373|876374|876375|876376|876377|876378|876379|876380|876381|876382|876383|876384|876385|876386|876387|876388|876389|876746|876747|876748|971064", + "text": "Hecht syndrome" + }, + { + "baseId": "29176|181560|181561|181562|181563|181564|181565|181566|181567|192137|192677|192678|192853|192930|193058|193059|193196|194581|205184|205299|227385|256024|256025|256027|256029|256032|256034|256036|256038|256039|265906|267454|269075|269222|269609|271544|274167|275404|327105|327107|327109|327112|327113|327136|327144|327148|327149|327153|327168|327169|327171|327178|327184|336998|337000|337004|337016|337018|337022|337024|337027|343223|343229|343231|343233|343238|343240|343250|344841|344844|344849|344852|344853|360216|361226|409821|413457|426200|439223|445692|466308|466310|466313|466314|466318|466320|466331|466337|466340|467066|467071|467080|467081|467085|467087|467182|467185|467204|467208|467212|467220|467232|467251|467256|467258|467264|467270|467272|467384|467388|467396|467398|467402|467403|467408|490598|490957|491238|491762|530559|530560|530566|530567|530568|530681|530686|530693|530709|530716|530725|530727|530738|530740|530862|530864|530865|531052|531057|531069|531070|531075|531077|568683|568686|568687|570728|570729|570731|570752|570753|570755|570846|570848|570851|570854|570856|570857|570861|574246|574283|574285|574287|574289|574294|574295|574296|574297|574298|574299|574300|574301|576177|608967|613495|624069|645272|645273|645274|645275|645276|645277|645278|645279|645280|645281|645282|645283|645284|645285|645286|645287|645288|645289|645290|645291|645292|645293|645294|645295|645296|645297|645298|645299|645300|645301|645302|645303|645304|645305|645306|645307|645308|652683|652697|652877|652880|653185|653200|653204|694008|694010|694011|694012|694014|694015|694016|694017|694018|695724|703937|703938|703939|703940|715224|715225|740550|740552|740554|755597|771242|771244|785464|791672|793655|820979|820980|821179|844669|844670|844671|844672|844673|844674|844675|844676|844677|844678|844679|844680|844681|844682|844683|844684|844685|844686|844687|844688|844689|844690|844691|844692|844693|844694|844695|844696|844697|844698|844699|844700|844701|844702|844703|844704|844705|844706|852157|852159|852849|876390|876391|876392|876396|876397|876398|876400|876401|876402|876403|876404|876405|876406|876407|876408|876749|876751|918408|928050|928051|928052|928053|928054|928055|928056|928057|928058|928059|937712|937713|937714|937715|937716|937717|937718|937719|937720|937721|937722|949690|949691|949692|949693|949694|949695|949696|949697|949698|949699|949700|949701|949702|949703|949704|957978|957979|957980|957981|957982|964468|966356|977281", + "text": "Myopathy, proximal, and ophthalmoplegia" + }, + { + "baseId": "29177|29178|29179|29180|29184|135094|135095|135096|135097|135098|135099|135100|135101|135102|135103|135104|135105|135106|135107|135108|135109|135110|135111|135112|135113|208344|208345|208347|256045|256047|256051|256054|256055|256056|256057|256058|256059|256060|256061|256062|256063|256064|256069|256070|256075|327185|327186|327187|327191|327192|327199|327200|327201|327202|327209|327210|327215|327216|327221|327228|327231|327244|327245|327248|327252|327253|327254|327255|337030|337031|337032|337035|337043|337049|337052|337053|337054|337057|337065|337071|337078|337081|337082|337084|337085|337086|343251|343263|343264|343268|343270|343275|343278|343279|343283|343284|343289|343290|343292|343295|343302|343304|343305|343306|343310|343312|344858|344860|344863|344864|344865|344866|344867|344869|344872|344873|344875|344876|578665|682258|694024|694026|694027|694031|694032|694033|694038|694041|695727|703943|791673|791674|791675|876409|876410|876411|876412|876413|876414|876415|876416|876417|876418|876419|876420|876421|876422|876423|876424|876425|876426|876427|876428|876429|876430|876431|876752|876753|876754|876755|876756|876757|876758|876759|876760|876761|876762|876763|876764|876765|880462|962181", + "text": "Freeman-Sheldon syndrome" + }, + { + "baseId": "29179|29181|29182|29183|29184|327216|578660|619825|682259|682260|816488|919701|919702|919703|962181|971065", + "text": "Arthrogryposis, distal, type 2b3" + }, + { + "baseId": "29184|199883|199884|237491|495655|578537|578659|578660|578660|578661|578664|578665|578665|622708|622709|622710", + "text": "Contractures, pterygia, and variable skeletal fusions syndrome 1A" + }, + { + "baseId": "29185", + "text": "Myosin, cardiac, heavy chain variant" + }, + { + "baseId": "29186|29188|29190|29190|29191|38754|45289|45290|45291|45296|53613|53615|53616|53617|53620|53625|53626|53627|53628|53634|53636|53636|53637|53638|53639|53640|53641|53641|53642|53643|53644|53646|53648|53649|53651|53653|53654|53655|53656|53659|53660|53661|53663|53664|53666|53667|53669|53672|53673|53676|53678|53679|53680|53680|53682|53683|53684|53686|53687|53688|53689|53690|53691|53692|53696|53700|53702|53703|53704|53708|53709|53712|53713|165563|175410|175411|175412|175413|175414|175415|175416|175417|175419|175420|175424|175426|175429|175430|175433|175434|175436|175554|175557|175559|175560|175562|175563|175565|175565|175569|175571|175572|175573|175574|175575|175577|175581|175582|178666|178667|178668|189930|189930|189931|189932|189933|189935|189937|189938|189939|189944|189947|189947|193334|194136|222364|222365|224451|224452|224454|224455|224456|230458|230459|230461|230462|230463|230470|230474|230480|230481|230482|241796|241797|241798|241799|241800|241801|241802|241803|241804|241805|241806|241807|241808|241809|241810|241811|241811|241812|241813|241814|254914|258754|258757|258758|258759|258761|258764|258766|258772|258773|258774|258778|258779|258784|258788|260540|320333|320339|320340|320362|328940|328957|335565|335571|335573|335590|335595|335601|335616|335619|337427|337435|337435|360038|360038|373004|373724|373732|375945|375962|375975|399564|399570|399577|399579|399581|399588|399589|399594|399706|399713|399720|399725|399727|399729|399732|399735|399739|399741|399742|399748|400097|400098|400108|400118|400126|400282|400290|400298|400299|400308|400309|400311|409082|409088|409091|421976|424895|426052|426054|426055|426055|426056|463121|463124|463125|463132|463134|463141|463143|463144|463146|463148|463150|463580|463582|463583|463585|463590|463594|463602|463603|463607|463609|463618|463622|463635|463638|463714|463884|463893|463895|463900|463909|463911|463912|463918|463919|463921|463927|463935|464102|464104|464110|464118|464119|464121|464124|464128|464131|464136|480712|487619|487731|497662|504457|504712|504977|504980|510414|510416|510419|510420|510429|510430|510432|510436|510438|510440|510444|510449|510452|510455|510457|511013|511111|514040|527996|528000|528002|528008|528009|528015|528019|528021|528023|528044|528049|528051|528054|528055|528056|528062|528063|528066|528068|528375|528377|528379|528384|528386|528395|528396|528396|528405|528416|528501|528502|528508|528510|528514|528516|528519|528524|528528|528532|528534|528540|528541|566319|566322|566323|566327|566334|566335|566341|566352|567870|567875|567879|567883|568757|568768|568778|568781|568782|568788|572745|572747|572753|572755|572756|572757|572759|615062|615063|615066|642205|642206|642207|642208|642209|642210|642211|642212|642213|642214|642215|642216|642217|642218|642219|642220|642221|642222|642223|642224|642225|642226|642227|642228|642229|642230|642231|642232|642233|642234|642235|642236|642237|642238|642239|642240|642241|642242|642243|642244|642245|642246|642247|642248|642249|642250|642251|642252|642253|642254|642255|652457|652588|652909|684466|684467|684468|685397|688257|688259|690078|693459|702820|739172|753988|778051|784684|796997|797002|820616|841200|841201|841202|841203|841204|841205|841206|841207|841208|841209|841210|841211|841212|841213|841214|841215|841216|841217|841218|841219|841220|841221|841222|841223|841224|841225|841226|841227|841228|841229|841230|841231|841232|841233|841234|841235|841236|841237|841238|841239|841240|841241|841242|904588|917184|919516|919517|926987|926988|926989|926990|926991|926992|926993|926994|926995|936555|936556|936557|936558|936559|936560|936561|936562|936563|936564|936565|936566|936567|936568|941057|948484|948485|948486|948487|948488|948489|948490|948491|948492|948493|948494|948495|957179|957180|957181|957182|957183|957184|957185|957186|960084|960085|960801", + "text": "Familial hypertrophic cardiomyopathy 14" + }, + { + "baseId": "29187|53636|53640|53641|53680|175414|175565|189930|189947|241811|337435|360038|426055|528384|528396|680051", + "text": "Atrial septal defect 3" + }, + { + "baseId": "29189|29190|29191|53636|53640|53641|53680|175565|189930|189947|241811|258757|337435|360038|426055|528396", + "text": "Dilated cardiomyopathy 1EE" + }, + { + "baseId": "29192|429455|462474|462477|462478|462483|462739|462747|463216|463222|527345|565729|566276|572067|641394|840295|840296|840297|840298|936270|936271|936272", + "text": "Myopathy, centronuclear, 3" + }, + { + "baseId": "29193|29194|29195|29195|29196|29197|29197|29198|29199|29200|29201|29201|29203|138560|138561|138561|138564|138564|138566|138566|138567|138568|138568|138571|138571|138573|138573|138574|138574|138576|138576|138577|138577|138578|138578|139302|139302|139302|139303|139303|206802|206802|238283|238284|249935|249935|249937|249937|249938|249938|259670|259671|259671|280611|280612|280612|280613|280618|280620|280620|280621|280626|280633|281072|281085|281098|281111|281111|281129|281130|281131|281132|281134|281135|281136|281137|281138|282362|282363|282382|282383|282383|282387|282387|282391|282396|282399|282408|282416|282417|282418|282610|282612|282613|282614|282636|282657|282661|282675|282676|357085|357085|359248|391248|391248|427820|427821|427822|448099|448140|448238|515914|515914|516006|516006|516009|557065|557280|557282|558519|620001|621709|621709|627882|627882|627883|627884|627885|627886|650583|650664|683330|683330|683331|683331|685737|685737|685738|685738|685739|685740|685740|685741|685741|690606|696751|732458|761935|800986|800987|823992|823993|823993|823994|823995|823996|850971|861590|864454|864455|864456|864457|864458|864459|864460|864461|864462|864463|864464|864465|864466|864467|864468|864469|864470|864471|864473|864474|864475|906002|922030|922031|922032|922033|930495|941951|941951|971674|971675|971676|971677|971678|971679|971680|971681|971682|971683|971684|971685|977539|977540|977541|977542", + "text": "Congenital amegakaryocytic thrombocytopenia" + }, + { + "baseId": "29195|29197|29201|138561|138564|138566|138567|138568|138571|138573|138574|138576|138577|138578|139302|139303|206802|249935|249937|249938|259670|259671|280612|280620|281111|282383|282387|357085|359248|427820|516006|557280|620001|621709|627882|627883|627884|627885|627886|650583|650664|683330|683331|685737|685738|685739|685740|685741|690606|732458|761935|823992|823993|823994|823995|823996|850971|922030|922031|922032|922033|930495|941951", + "text": "essential thrombocytemia" + }, + { + "baseId": "29201|29202|139302|961925", + "text": "Thrombocytosis, benign familial microcytic" + }, + { + "baseId": "29202|362908|362916|362935", + "text": "Myeloproliferative Neoplasm" + }, + { + "baseId": "29202|29701|29701|39401|102915|139302|204470|227504|493110", + "text": "Myelofibrosis" + }, + { + "baseId": "29203|29204", + "text": "Myelofibrosis with myeloid metaplasia" + }, + { + "baseId": "29203", + "text": "Thrombocythemia 2, somatic" + }, + { + "baseId": "29205|29206|29210|29211|29212|29213|29214|29215|29216|29218|29220|29223|29224|29225|29226|29227|29230|29237|29239|29240|49436|49437|49438|49439|49440|49441|49442|49443|49444|49445|49446|49447|49448|49449|49450|135065|135065|141945|141945|204407|204408|204409|204479|213792|213793|238157|244139|244141|244171|244249|244251|244254|276934|276937|276938|276943|276944|277211|277215|277907|277912|277913|277914|278013|278014|278015|278027|390840|440400|515330|550200|862595|862596|862597|862598|862599|862600|862601|862602|862603|862604", + "text": "Charcot-Marie-Tooth disease, demyelinating, type 1b" + }, + { + "baseId": "29215|213789|360953|514181", + "text": "Distal lower limb amyotrophy" + }, + { + "baseId": "29217|29231|29235|135065|141945|238157|244249|276934|276937|276938|276943|276944|277211|277215|277907|277912|277913|277914|278013|278014|278015|278027|515330|581855|626099|862595|862596|862597|862598|862599|862600|862601|862602|862603|862604", + "text": "Congenital hypomyelinating neuropathy 2" + }, + { + "baseId": "29220|29223|29234|29238|135065|141945|440400", + "text": "Charcot-Marie-Tooth disease type 2J" + }, + { + "baseId": "29220|29222|135065|141945|238157|244249|276934|276937|276938|276943|276944|277211|277215|277907|277912|277913|277914|278013|278014|278015|278027|515330|540438|624045|862595|862596|862597|862598|862599|862600|862601|862602|862603|862604|920598|964134", + "text": "Charcot-Marie-Tooth disease dominant intermediate d" + }, + { + "baseId": "29224|29232|29233|135065|141945|447442", + "text": "Charcot-Marie-Tooth disease type 2I" + }, + { + "baseId": "29227|29228", + "text": "Charcot-Marie-Tooth disease, type 1b, with focally folded myelin sheaths" + }, + { + "baseId": "29243", + "text": "Asthma, protection against" + }, + { + "baseId": "29246", + "text": "Spina bifida, susceptibility to" + }, + { + "baseId": "29246", + "text": "Coronary artery disease, modifier of" + }, + { + "baseId": "29246", + "text": "Coronary artery disease, development of, in hiv" + }, + { + "baseId": "29247|29247|29248|29249|29250|29251|29252|29253|29254|29258|29260|29261|29262|142624|142626|142627|187075|187075|264540|371271|373048|407700|415191|415192|415192|459199|459210|459520|480497|480498|502940|524974|524979|524984|525130|525133|544752|544755|544758|544759|544765|544769|544770|544773|544776|544785|544788|544790|544793|544796|544797|544801|544807|544808|544812|544815|544818|544823|544827|544831|544844|544848|544850|544851|544854|544861|544869|545022|545034|545041|545044|545049|545051|545053|545057|545060|545065|545068|545078|545083|545089|545090|545093|545095|545110|545112|545120|545123|545126|545129|545132|545134|545165|545176|545184|545185|545189|545190|545195|545196|545198|545202|545214|545220|545224|545225|545227|545229|545231|545234|545236|545239|545240|545248|545255|545308|545314|545318|545325|545326|545329|545335|545340|545343|545345|545347|545349|545351|545354|545355|545358|545361|545362|545364|545367|545384|545385|545390|545395|545398|545401|545402|545407|545408|545409|545414|545419|563255|565906|565908|621307|621308|621789|621790|621791|621792|621793|621794|638279|638282|638284|638286|638288|638289|638292|638293|638294|651905|651933|651944|652179|652183|652194|687494|695439|767403|767404|836133|836134|836137|836142|851343|851738|905987|905988|915083|915084|917040|917041|917477|917478|917479|963272|963273|963274|963275|972575|972576|978580|978581|978582|978583|978584", + "text": "Metaphyseal chondrodysplasia, McKusick type" + }, + { + "baseId": "29247|29247|29255|29256|29257|29258|29259|187075|415192", + "text": "Metaphyseal dysplasia without hypotrichosis" + }, + { + "baseId": "29247|29248|29249|29250|29253|29262|142623|142624|187075|264540|371271|373048|373049|373054|415192|433892|459199|459208|459210|459212|459219|459511|459518|459520|459594|459598|460060|460063|480497|480498|502940|524598|524609|524612|524618|524843|524850|524851|524973|524974|524979|524983|524984|525130|525133|525137|544785|544793|544796|544801|544808|544823|544851|545112|545120|545129|545185|545214|545224|545225|545240|545248|545329|545340|545354|545355|545358|545362|545385|545390|545409|563247|563253|563255|563257|564016|564023|564024|564037|565906|565907|565908|565910|569070|621308|621791|621792|621793|638279|638280|638281|638282|638283|638284|638285|638286|638287|638288|638289|638290|638291|638292|638293|638294|638295|651902|651903|651905|651911|651913|651918|651930|651933|651939|651944|651945|652021|652179|652183|652194|652197|652204|687494|689951|689952|695439|695440|695441|711963|767403|767404|820138|836131|836132|836133|836134|836135|836136|836137|836138|836139|836140|836141|836142|851341|851343|851738|852184|852508|852512|852514|852519|852520|905987|917477|925588|925589|925590|925591|925592|934764|934765|934766|934767|934768|934769|934770|934771|940148|940150|940938|940939|946631|946632|946633|946634|946635|955827|955828|955829|955830|955831|955832|955833|955834|955835|955836|955837|955838|955839|955840|955841|955842|955843|955844|955845|955846|955847|960686|960687|960688|960689|960690|960691|960692|960693|960694|960695|960696|960697|960698|960699|960700|960701|960702|960704", + "text": "Anauxetic dysplasia" + }, + { + "baseId": "29247|29264|29265|29266|29267|29268|187075|415192", + "text": "Anauxetic dysplasia 1" + }, + { + "baseId": "29269|29270|29271|29272|40569|65581|65582|65583|142182|142183|210748|265866|421356|425460|619933|620738|679334|788745|788746|861127|905017|918730", + "text": "Mitochondrial complex 1 deficiency, nuclear type 5" + }, + { + "baseId": "29273|29274|29275|29276|29277|29278|29279|29280|29281|29282|135071|135072|135073|135074|135075|194285|194809|267430|268464|269525|273699|294755|294756|294757|294764|294765|294769|294771|294774|294778|294779|294784|294786|294790|294800|294801|294802|296351|296352|296353|296358|296368|296370|296384|296394|296398|296404|296411|296412|300104|300106|300115|300117|300118|300119|300124|300136|300138|300139|300151|300153|300155|300160|300162|300163|300165|300172|300178|300180|300191|300198|300200|300214|300215|300222|300224|300225|413670|428330|487115|492548|508798|512899|543264|615975|615976|621179|651181|721136|721137|734783|734784|764653|764660|764661|764662|764664|782065|787394|829544|829545|829547|829554|829555|829559|890823|890824|890825|890826|890827|890828|890829|890830|890831|890832|890833|890834|890835|890836|890837|890838|890839|890840|890841|890842|890843|890844|890845|890846|890847|890848|891802|891803|891804|944153|971853|971854|971855|971856|971857|971858|971859|971860|971861|971862|971863|971864|971865|971866|971867|971868|971869|978110|978111|978112|978113|978114|978115|978116", + "text": "Abetalipoproteinaemia" + }, + { + "baseId": "29281", + "text": "Metabolic syndrome, protection against" + }, + { + "baseId": "29283", + "text": "Prostate cancer, hereditary, 13" + }, + { + "baseId": "29284|29284|29285|29286|29286|29287|29290|29291|29292|29292|29293|29295|29296|29297|29300|29301|29305|29307|31050|33162|33163|33164|33166|33170|33175|33182|33184|33184|33187|33194|33195|33196|33880|46864|79017|103896|103907|103914|103918|103940|103945|103957|103986|104001|104044|104089|104095|104097|104100|104103|104105|104109|104111|104113|104114|104114|104117|104123|195230|199866|199867|199868|199869|199870|199871|217270|227392|255044|256221|275813|275835|275846|275852|275853|275859|275867|275874|275875|275885|275924|275994|276114|291699|291712|291719|291720|291722|293045|293046|296286|296298|296308|296311|296313|296319|296362|296363|296366|300690|328688|328797|330240|336729|338670|338744|338789|338792|344740|353027|360942|418804|418805|422174|467806|468102|468117|468120|531369|531370|531431|531670|531674|539073|568253|569009|569205|571537|577364|577367|590946|590947|590954|590956|590958|590959|590960|590961|590962|590963|590964|608810|614153|626253|642667|642668|642669|642670|642671|642672|642673|642674|646108|646109|646110|646111|646112|646113|677120|684679|685434|693591|694092|695745|695747|695749|739304|745294|755909|778505|789819|791784|798717|841713|841714|841715|841716|841717|841718|845515|858702|858704|858705|858707|858711|858712|936704|948648|949982|949983|949984|949985|957292|957293|958147|958148|960223|970503", + "text": "Frontotemporal dementia" + }, + { + "baseId": "29284|29284|29286|29292|29302|29306|29308|227392|422174|539073|626253", + "text": "Progressive supranuclear ophthalmoplegia" + }, + { + "baseId": "29284|29286|29292|104135|422174", + "text": "Parkinson-dementia syndrome" + }, + { + "baseId": "29284|29286|29292|29294|29298|29299|29301|33162|33163|33164|33166|33170|33175|33182|33184|33187|33188|33194|33195|33196|33880|46864|103896|103907|103914|103918|103940|103945|103957|103986|104001|227392|255044|330240|336729|338744|422174|539073|568253|569009|577364|577367|626253|642667|642668|642669|642670|642671|642672|642673|642674|693591|739304|841713|841714|841715|841716|841717|841718|936704|948648|957292|957293", + "text": "Pick's disease" + }, + { + "baseId": "29300|104096|104097|104099|104100|104101|104103|104108|256217|256219|328788|328789|328791|328792|328797|328802|328805|328808|328813|328817|328823|328825|328826|328828|328833|328835|328838|328839|328840|328844|328846|328847|328848|328853|328870|328876|328887|328892|328893|338763|338774|338782|338789|338792|338793|338794|338801|338804|338812|338814|338815|338817|338819|338821|338828|338829|338833|338841|338843|338846|338849|338852|338854|338857|338859|338860|338864|338872|338877|338879|338885|338887|344826|344829|344836|344837|344842|344845|344847|344848|344854|344855|344856|344859|344862|344868|344871|344877|344882|344884|344886|344887|344893|344897|344898|344902|344904|344906|344907|344911|344915|344922|344930|344933|346212|346213|346214|346215|346222|346223|346224|346225|346226|346228|346229|346233|346234|346236|346239|346240|346244|346251|346252|346253|346256|346265|346267|346268|346272|413472|531674|577644|646110|877785|877786|877787|877788|877789|877790|877791|877792|877793|877794|877795|877796|877797|877798|877799|877800|877801|877802|877803|877804|877805|877806|877807|877808|877809|877810|877811|877812|877813|877814|877815|877816|877817|877818|877819|877820|877821|880543", + "text": "MAPT-Related Spectrum Disorders" + }, + { + "baseId": "29309|29310|29311|29312|29313|29315|29316|31677|38747|229145|229145|229146|229149|229149|229152|229153|229154|229155|237600|291435|291442|291443|291446|291448|291449|291454|291458|291463|291464|291468|291469|291475|291477|291484|292693|292694|292697|292698|292701|292705|292707|292708|292709|292713|292714|292716|292717|292722|295984|295987|295988|295989|295997|295999|296003|296010|296017|296031|296032|296043|296051|296058|296069|359493|361916|361917|361918|367718|443510|481055|481056|481057|481058|481059|495149|535279|535280|535381|535701|537754|537755|537756|537757|537758|537759|537760|631792|655579|734287|748510|793044|802068|828567|851093|889613|889614|889615|889616|889617|889618|889619|889620|889621|889622|889623|889624|889625|889626|889627|889628|889629|889630|889631|889632|889633|889634|889635|889636|889637|889638|889639|889640|889641|889642|889643|889644|889645|889646|889647|889648|889649|889650|889651|889652|889653|891702|891703|891704|891705|891706|964225|965737|983613|983614|983623|983624|983625|983626|983627|983628|983629", + "text": "Waardenburg syndrome type 2A" + }, + { + "baseId": "29311|29314|38747|229145|229145|229146|229149|229149|229153|229154|229155|291435|291442|291443|291446|291448|291449|291454|291455|291457|291458|291463|291464|291468|291469|291475|291477|291484|292693|292694|292697|292698|292701|292705|292707|292708|292709|292713|292714|292716|292717|292718|292722|295984|295987|295988|295989|295997|295999|296003|296010|296017|296031|296032|296043|296046|296047|296048|296051|296058|296060|296069|443510|535381|535701|631792|655579|734287|748510|790415|793044|828567|851093|889613|889614|889615|889616|889617|889618|889619|889620|889621|889622|889623|889624|889625|889626|889627|889628|889629|889630|889631|889632|889633|889634|889635|889636|889637|889638|889639|889640|889641|889642|889643|889644|889645|889646|889647|889648|889649|889650|889651|889652|889653|891702|891703|891704|891705|891706|918856|918857", + "text": "Tietz syndrome" + }, + { + "baseId": "29311|361916|361917|361918", + "text": "Coloboma, osteopetrosis, microphthalmia, macrocephaly, albinism, and deafness" + }, + { + "baseId": "29311|192593|215772|228526|228928|228929|228930|228931|228932|228936|228937|228938|230449|231226|231227|231228|231231|231235|284872|284880|284881|284886|285534|285535|287842|287843|287860|287879|287881|287886|288118|288125|288126|288127|288130|291455|291457|292718|296046|296047|296048|296060|335064|336129|337038|345839|347741|347742|347749|350281|350282|350287|351585|351588|351589|351593|351594|351597|351600|351602|352543|352544|352545|352546|352547|352548|360856|446415|496263|496265|496686|508172|694737|742898|747372|747374|883882|883883|883884|883885|883886|883887|883888|883889|883890|883891|883892|891282|891283|891284|891285|891286|891287|891288|891289|891290|891291|891292|891293|891294|891295", + "text": "Waardenburg syndrome" + }, + { + "baseId": "29315", + "text": "Poliosis" + }, + { + "baseId": "29315", + "text": "Heterochromia iridis" + }, + { + "baseId": "29315|424972", + "text": "Prelingual sensorineural hearing impairment" + }, + { + "baseId": "29317|29318|29319|29320|29321|29322|29323|29325|29326|29327|141985|196160|199943|279787|279799|279810|279813|280114|280122|280140|281420|281427|281428|281437|281438|281439|281568|281576|281581|281635|364964|364968|425347|498246|498341|514894|515573|515577|515647|515652|515703|557168|558389|558389|627531|627532|627533|627534|627535|627536|627537|627538|627539|627540|650623|650717|707239|729984|746311|774474|789948|789949|823634|823635|823636|823637|823638|823639|823640|850760|864030|920142|920143|921899|921900|921901|930384|941817|941818|941819|952330|952331|960425|961749|961801|961802", + "text": "Methylcobalamin deficiency type cblG" + }, + { + "baseId": "29317|360996|405676", + "text": "Intellectual disability, profound" + }, + { + "baseId": "29317|79480|181418|818745", + "text": "Seizure disorder" + }, + { + "baseId": "29317|800981", + "text": "Decreased methionine synthase activity" + }, + { + "baseId": "29328|29329|29330|29331|29333|29334|29335|29335|29338|29339|29340|29341|29342|46903|46904|46905|81233|98844|98845|98850|98851|98853|98856|98857|98858|98859|98861|98862|98863|98863|98867|98870|98871|98873|98874|98875|98877|98878|98883|98884|98885|98886|98887|98894|98895|98896|98897|98899|134888|134889|134891|172220|172221|172223|172224|172225|172226|172227|172228|172230|172231|176971|177811|177814|178769|187114|188050|189017|192082|193821|194098|194154|194185|194639|207312|207313|207316|225822|237299|237464|252102|252108|252112|252113|259832|259833|260810|260937|264273|267214|268652|269221|271726|271915|272150|272150|298960|301389|305769|305943|306020|359716|363855|370142|406807|406809|421568|425662|425666|425666|425668|428505|428511|428512|428513|430992|430993|434603|434604|440908|440910|440912|440913|440919|443870|443874|443879|455228|455260|455873|455876|455881|456070|456077|456094|456105|456115|492135|495250|511025|513562|513563|513564|513565|521746|521990|521997|536707|538380|538994|543480|543492|543495|543500|543501|543503|543504|543506|543516|543522|543524|543533|543535|543537|543539|543547|543558|543561|543564|543570|543579|543581|543583|543591|543597|543598|543600|543600|543601|543604|543751|543752|543754|543756|543758|543763|543765|543768|543769|543769|543773|543792|543799|543802|543803|543814|543816|543818|543831|543833|543834|543835|543838|543840|543842|543847|543849|543853|543854|543857|543860|543862|543865|543868|543871|543871|543872|543874|543878|543880|543881|543883|543889|543890|543891|543893|543896|543898|543901|543903|543904|543905|543906|543912|543914|543917|543939|543943|543945|543947|543949|543953|543961|543965|543967|543970|543971|543973|543974|543975|543977|543986|543987|543989|543990|543992|543993|543995|543996|543998|551293|563386|565379|576120|608951|612274|620210|622356|622882|634542|634595|634596|677124|788791|790578|790579|790580|790581|790582|790583|790584|795750|969125|971887|971888|971889|971890|971891|971892|971893|971894|971895|971896|971897|971898|971899|971900|971901|971902|971903|971904|971905|971906|971907|971908|971909|971910|971911|971912|971913|971914|971915|971916|971917|971918|971919|971920|971921|971922|971923|971924|971925|971926|971927|971928|971929|971930|971931|971932|971933|971934|971935|971936|971937|971938|971939|971940|971941|971942|971943|971944|971945|971946|971947|971948|971949|971950|971951|971952|972787|975953|984263|984264", + "text": "Merosin deficient congenital muscular dystrophy" + }, + { + "baseId": "29329|29335|29336|29337|29338|29339|29340|46903|46904|81233|98843|98844|98846|98847|98848|98849|98852|98855|98861|98863|98865|98866|98868|98869|98872|98875|98876|98878|98881|98884|98885|98886|98887|98888|98890|98891|98893|98897|98898|98900|98901|134879|134880|134881|134882|134883|134884|134885|134886|134887|134888|134889|134890|134891|134892|134893|172220|172222|172223|172224|172226|172227|172229|172230|172231|176970|176971|177102|177233|177364|177809|177810|177811|177812|177813|188050|188051|189017|190260|191154|191155|191334|191635|191870|192082|192622|192727|193013|193431|193821|194042|194098|194154|194185|194217|194303|194614|194639|194719|195082|195106|195148|195488|207311|207314|213563|215326|225822|237014|237205|237299|237464|252070|252075|252081|252090|252094|252096|252097|252100|252101|252102|252111|252112|259831|259832|259833|259834|264267|264273|267214|267776|268652|269328|269340|270338|272146|272150|274165|275106|298918|298923|298927|298929|298933|298950|298960|298963|298966|298972|298974|298980|301382|301384|301389|305746|305750|305757|305758|305761|305769|305917|305943|305959|305975|305976|305992|305995|306018|306019|306020|359716|361443|368311|368314|368324|368328|368703|368709|368714|368717|368727|368841|370142|370143|370151|406811|406813|415022|415026|421566|421567|421568|421571|425658|425660|425661|425666|425667|425668|428503|428505|428506|428508|428509|428511|428512|428513|428514|434604|440907|440908|440909|440910|440913|440914|440915|440916|440919|440920|440921|443870|443872|443875|443876|443878|443879|443880|443881|455103|455104|455109|455110|455187|455195|455197|455199|455203|455207|455212|455213|455216|455220|455221|455225|455228|455229|455237|455241|455244|455249|455251|455256|455260|455266|455276|455334|455336|455339|455341|455344|455347|455349|455351|455352|455356|455360|455361|455363|455364|455365|455366|455369|455373|455375|455377|455381|455853|455862|455863|455873|455876|455881|455898|455899|455901|455902|455904|455906|455909|455915|455916|455924|455925|455934|455940|455953|455954|455955|455957|455959|456070|456074|456076|456077|456079|456080|456082|456083|456091|456094|456102|456103|456105|456109|456112|456115|456121|456124|456130|456138|488772|489351|490604|493421|501131|501151|501431|501443|501449|501527|501811|514520|521277|521366|521377|521378|521383|521385|521387|521388|521393|521397|521401|521406|521410|521419|521422|521424|521429|521621|521623|521655|521657|521673|521682|521683|521694|521698|521699|521704|521706|521708|521710|521737|521739|521740|521746|521748|521754|521756|521758|521762|521764|521765|521877|521990|521992|521993|521997|521998|522004|522005|522011|522016|522018|522023|538994|543492|543503|543506|543539|543547|543591|543600|543752|543756|543769|543814|543835|543860|543862|543865|543868|543872|543883|543939|543953|543961|543989|543992|551293|560395|560435|560437|560439|560441|560443|560445|560447|560449|560451|560453|560455|560457|560459|560570|560572|560574|560576|560578|560580|560582|560584|560586|560588|560590|560592|560594|560596|563373|563376|563378|563379|563380|563382|563384|563386|565379|565381|565382|565396|565404|565407|565410|565416|565418|565421|565424|576120|576836|611642|612274|620211|622356|634540|634541|634542|634543|634544|634545|634546|634547|634548|634549|634550|634551|634552|634553|634554|634555|634556|634557|634558|634559|634560|634561|634562|634563|634564|634565|634566|634567|634568|634569|634570|634571|634572|634573|634574|634575|634576|634577|634578|634579|634580|634581|634582|634583|634584|634585|634586|634587|634588|634589|634590|634591|634592|634593|634594|634595|634596|634597|634598|634599|634600|634601|634602|634603|634604|634605|634606|634607|634608|634609|634610|634611|634612|634613|634614|634615|634616|651506|651511|651518|651520|651525|651567|651569|651571|651573|651580|651589|651633|686796|686798|691904|691905|691906|691907|691908|691909|691910|691911|691912|691913|691914|691916|691917|691919|691920|691922|691923|691924|691925|691926|691927|691928|691929|691930|691931|691932|691933|691934|691935|691936|691937|691938|695309|695310|695311|695312|699296|699297|699299|699301|699302|699303|699304|699305|699306|699307|699308|699309|710168|710169|710170|710171|721712|721713|721714|721715|721716|735397|735398|735399|735400|735402|735404|735406|735407|735409|749798|749800|749801|749802|749807|749808|749809|759445|765461|765464|765466|765469|765472|765474|765478|765479|765480|765486|765488|775088|775169|775186|775253|777521|777525|777595|777656|779143|779190|782429|782433|782435|782439|782441|782447|782449|787452|787543|790578|793109|805464|819653|819654|819655|819656|819657|819658|819659|819660|819661|819662|831492|831493|831494|831495|831496|831497|831498|831499|831500|831501|831502|831503|831504|831505|831506|831507|831508|831509|831510|831511|831512|831513|831514|831515|831516|831517|831518|831519|831520|831521|831522|831523|831524|831525|831526|831527|831528|831529|831530|831531|831532|831533|831534|831535|831536|831537|831538|831539|831540|831541|831542|831543|831544|831545|831546|831547|831548|831549|831550|831551|831552|831553|851058|851310|851312|852004|852006|852237|852240|895279|895289|895298|895304|895311|895315|924240|924241|924242|924243|924244|924245|924246|924247|924248|924249|924250|924251|924252|924253|924254|924255|924256|924257|924258|924259|933156|933157|933158|933159|933160|933161|933162|933163|933164|933165|933166|933167|933168|933169|933170|933171|933172|933173|933174|933175|933176|933177|933178|933179|940833|940834|940835|940836|940837|940838|940839|944871|944872|944873|944874|944875|944876|944877|944878|944879|944880|944881|944882|944883|944884|944885|954334|954335|954336|954337|954338|954339|954340|954341|954342|954343|954344|954345|954346|954347|954348|954349|954350|954351|954352|954353|954354|954355|954356|954357|954358|954359|954360|954361|954362|954363|954364|954365|954366|954367|954368|959792|959794|959795|959796|959797|960578|960579|961278", + "text": "Laminin alpha 2-related dystrophy" + }, + { + "baseId": "29335|75098|98863|172224|172224|193821|194098|268652|272150|301389|305943|306020|359716|425666|425668|428505|428511|428512|428513|440910|440912|440919|443870|455876|456094|521746|543600|543769|543871|563386|576066|576067|576068|620210|624851|634596|677124|677159|795750|965273|971887|971888|971889|971890|971891|971892|971893|971894|971895|971896|971897|971898|971899|971900|971901|971902|971903|971904|971905|971906|971907|971908|971909|971910|971911|971912|971913|971914|971915|971916|971917|971918|971919|971920|971921|971922|971923|971924|971925|971926|971927|971928|971929|971930|971931|971932|971933|971934|971935|971936|971937|971938|971939|971940|971941|971942|971943|971944|971945|971946|971947|971948|971949|971950|971951|971952", + "text": "Muscular dystrophy, limb-girdle, autosomal recessive 23" + }, + { + "baseId": "29336|29337|29338|29339|98845|98846|98847|98848|98850|98852|98855|98856|98858|98859|98860|98862|98865|98866|98869|98870|98873|98874|98875|98876|98881|98882|98885|98891|98894|98895|98896|98898|134879|134880|134881|134882|134883|134884|134885|134886|134888|134889|134890|134891|134892|134893|172222|172223|172224|172226|172227|172229|172230|172231|176970|177809|177810|177813|188051|191154|191155|192622|193014|193821|194042|194639|194719|195082|195488|207311|237014|237299|252070|252073|252075|252077|252081|252090|252094|252111|252113|252115|267776|268652|271915|298911|298913|298917|298918|298922|298923|298926|298927|298928|298929|298933|298937|298938|298942|298945|298946|298948|298949|298950|298960|298962|298963|298965|298966|298970|298971|298972|298974|298977|298980|298982|301367|301370|301382|301383|301384|301385|301386|301387|301388|301389|301391|301394|301401|305739|305740|305743|305744|305745|305750|305757|305758|305761|305764|305769|305912|305916|305917|305924|305928|305929|305940|305943|305959|305973|305975|305976|305992|305995|306014|306018|306019|306020|359761|361443|368311|368845|370145|370151|406811|415024|421569|421571|428505|428510|428512|428514|438785|440908|440912|440915|440919|443870|443877|455195|455207|455228|455241|455276|455344|455898|455901|456091|456109|456121|501823|513563|521388|521708|521710|538994|560584|563384|576120|584749|620209|620210|620211|620212|622356|634542|634545|634546|634582|634599|634606|691910|691912|691916|691918|691925|691934|699304|699308|710171|777595|895277|895278|895279|895280|895281|895282|895283|895284|895285|895286|895287|895288|895289|895290|895291|895292|895293|895294|895295|895296|895297|895298|895299|895300|895301|895302|895303|895304|895305|895306|895307|895308|895309|895310|895311|895312|895313|895314|895315|895316|895317|895318|895319|895320|895321|896181|896182|896183|896184|896185", + "text": "Congenital muscular dystrophy due to partial LAMA2 deficiency" + }, + { + "baseId": "29343|437665|964427", + "text": "Spondyloepiphyseal dysplasia, kimberley type" + }, + { + "baseId": "29344|610397|610398|788892|816526|816527", + "text": "Spondyloepimetaphyseal dysplasia, aggrecan type" + }, + { + "baseId": "29345|247337|434369|434370|434371|434372|434373|434374|434375|434376|434377|434378|437665|439352|623319|791493|791494|791495|861580|964425|964426|964428|964429|964430", + "text": "Osteochondritis dissecans" + }, + { + "baseId": "29346|29347|29349|29351", + "text": "Skin/hair/eye pigmentation 2, red hair/fair skin" + }, + { + "baseId": "29346|343069|445685|539156|539157|539158", + "text": "Skin and Hair Hypopigmentation" + }, + { + "baseId": "29346|29347|29348|29349|29350|29351|170206|227383|242562|242563|242564|242565|242566|242567|242568|242569|242569|242570|242571|242572|256009|256010|256012|256013|256014|260144|326869|326873|326877|326879|326883|326884|326889|326896|326897|326898|326900|326906|326908|326911|326915|336760|336761|336764|336770|336771|336774|336778|336781|336783|336786|336797|336806|336811|336817|336820|336821|336822|343007|343013|343014|343017|343020|343025|343030|343032|343035|343037|343042|343050|343058|343060|343062|343069|343070|343073|343075|343079|343084|344637|344638|344648|344650|344651|344652|344654|344657|344660|344661|344664|344665|344667|344670|344675|344678|344681|344682|344684|344687|344689|344694|401431|401431|401434|401435|401465|401466|401946|401950|401952|401953|401957|401959|402214|422134|422134|445685|445685|466179|466958|466960|466962|466964|466967|467003|467004|467011|467239|467240|467249|467249|467254|467255|467259|467261|467261|530446|530578|530584|530764|530766|530961|568517|568518|568521|570634|570637|570638|570696|570697|570700|570708|574227|645224|645225|645226|645227|645228|645229|645230|645231|645232|645233|645234|684648|684649|684650|684651|684652|688726|688727|820941|820959|820960|844607|844608|844609|844610|844611|844612|844613|844614|844615|844616|844617|844618|844619|844620|844621|844622|844623|876235|876236|876237|876238|876239|876240|876241|876242|876243|876244|876245|876246|876247|876248|876249|876250|876251|876252|876253|876254|876255|876256|876257|876258|876259|876260|876261|876262|876263|876264|876265|876266|876267|876268|876269|876270|876271|876272|876273|876274|876275|876276|876277|876278|876279|928030|928031|928032|928033|937688|937689|937690|937691|937692|937693|949663|949664|949665|949666|957971|957972|957973|957974", + "text": "Cutaneous malignant melanoma 5" + }, + { + "baseId": "29347|29350", + "text": "Skin/hair/eye pigmentation 2, blond hair/fair skin" + }, + { + "baseId": "29349|29351|242569|401431|422134|445685|467249|467261", + "text": "Increased analgesia from kappa-opioid receptor agonist, female-specific" + }, + { + "baseId": "29349|29351|32633", + "text": "OCULOCUTANEOUS ALBINISM, TYPE II, MODIFIER OF" + }, + { + "baseId": "29352|29353|29354", + "text": "Uv-induced skin damage, susceptibility to" + }, + { + "baseId": "29355|29356|29358|29359|29360|29361|29362|29363|29364|29365|29366|29367|29368|29369|29370|29371|29372|29373|29374|29375|29377|186255|430075|490974|553540|964500|964501", + "text": "BODY MASS INDEX QUANTITATIVE TRAIT LOCUS 20" + }, + { + "baseId": "29357|153362|190849|207488|226431|226432|226433|226434|226435|481029|535227|535398|535399|535401|535403|535404|535405|535406|535407|535408|535409|535410|535411|535412|535413|535414|535415|535416|535419|535422|535425|535426|535428|535430|535431|535432|535433|535434|535435|535436|535439|535440|535441|535442|535444|535446|535447|535448|535450|535451|535452|535453|535454|535455|535456|535458|535460|535461|535464|535466|535467|535468|535469|535470|535471|535472|535473|535475|535476|535477|535478|535479|535484|535488|535489|535491|535494|535495|535498|535501|535504|535505|535506|535507|535510|535511|535512|535513|535514|535515|535516|535517|535518|535519|535520|535521|535522|535523|535524|535525|535526|535527|535531|535532|535533|535534|535536|535537|535538|535539|535541|535543|535544|535545|535547|535548|535553|535554|535555|535556|535558|535559|535560|535561|535562|535564|535565|535566|535570|535571|535573|535574|535575|535576|535577|535578|535581|535582|535583|535584|535586|535588|535589|535590|535591|535592|535593|535594|535595|535596|535597|535598|535600|535601|535602|535603|535604|535608|535610|535611|535613|535615|535616|535617|535618|535619|535620|535621|535622|535623|535626|535627|535629|535630|535632|535633|535634|535635|535637|535639|535640|535641|535642|535644|535645|535646|535648|535649|535653|535654|535655|535656|576146|904233|904234|904237|904238|967239|970337", + "text": "Schizophrenia" + }, + { + "baseId": "29378|29379", + "text": "Body mass index quantitative trait locus 9" + }, + { + "baseId": "29380|29381|29382|29383|190292|265911|268606|270529|316418|316419|323886|323888|323889|323901|323902|323903|323907|323908|329942|329943|329944|329952|331244|331251|331254|331267|331287|331288|331303|331321|331322|738573|869553|869554|869555|869556|869557", + "text": "Keutel syndrome" + }, + { + "baseId": "29384|29385|29386|29387|29388|99967|99968|99969|99970|99971|99972|99973|99974|177841|186941|193509|214749|214750|267163|323389|333058|333059|333061|333064|333065|333067|339899|339900|339903|341308|341310|341315|358317|358318|358319|358320|358321|358322|358323|358324|374745|374746|422045|445420|465180|465426|492216|504950|505805|547571|547575|547577|547581|547586|547589|547592|547603|547609|547835|547840|547843|547850|547854|547855|547856|547858|548259|548262|569151|576168|643546|643547|693741|693742|693743|693744|703338|739777|739778|754675|770342|770343|770344|785015|785016|785017|785018|785019|788159|788165|791484|842706|842707|842708|852071|874169|874170|874171|874172|874173|874174|874175|874176|874177|874178|874179|874180|874181|874182|874183|874184|874185|874186|876573|876574|927425|937075|957511|957512|979661|979662|979663|979664|979665|979666|979667|979668|979669", + "text": "MPI-CDG" + }, + { + "baseId": "29389|29390|29391|310466|310469|310476|310478|310484|310485|310487|310488|310496|310497|310502|310504|315585|315586|315587|315589|315592|315593|315594|315601|315602|315605|315607|315618|315620|315631|321597|321599|321600|321603|321607|321610|321616|321625|321629|321630|321631|321640|321641|322346|322355|322358|322359|322360|322365|322366|322370|322383|322384|353129|389887|620365|752131|865955|865956|865957|865958|865959|865960|865961|865962|865963|865964|865965|865966|865967|865968|865969|865970|865971|865972|865973|865974|865975|865976|865977|865978|865979|865980|865981|865982|865983|865984|868478", + "text": "Mannose-binding protein deficiency" + }, + { + "baseId": "29392", + "text": "Epilepsy, idiopathic generalized, susceptibility to" + }, + { + "baseId": "29393|29394|65630|254635|318061|318063|318068|318077|318080|325987|325989|325990|325992|325994|325995|326001|326004|326021|326027|332239|333739|333742|333744|333746|333750|364277|462367|462368|462635|463083|571950|693248|870195|870196|870197|870198|870199|870200|870201|870202|870203|870204|870205|870206|870207|870208|870209|941036|964396", + "text": "Cataract 15, multiple types" + }, + { + "baseId": "29395|226063|334178|344055|344056|344062|344063|349298|349299|349300|349301|349304|350297|350300|350301|471277|533870|613458|689156|694512|694513|882402|882403|882404|882405|882406|882407|882408|882409|882410|882411|882412|882413|882414|882415|882416|882417|882418|882419|882923", + "text": "Cataract 19, multiple types" + }, + { + "baseId": "29398|29757", + "text": "Rheumatoid arthritis, systemic juvenile, susceptibility to" + }, + { + "baseId": "29399|29400|29401", + "text": "Exfoliation syndrome, susceptibility to" + }, + { + "baseId": "29402", + "text": "LYSYL OXIDASE POLYMORPHISM" + }, + { + "baseId": "29403|29404|29405|29406|29407|29408|29409|29410|29411|29412|193408|215017|249371|249372|249373|249375|249376|257908|257910|257912|257913|257914|257916|257919|257920|257921|257923|257924|257927|257935|259623|269140|272765|276139|276146|276155|276156|276157|276159|276160|276162|276163|276187|276190|276195|276206|276420|276426|276427|276431|276432|276433|276438|276448|276456|276464|276734|276736|276781|276783|276797|276813|276815|276817|276818|276820|276831|276832|276836|276837|276841|276860|276912|276913|276924|276925|276929|276951|359198|364317|364389|364398|364410|364414|364417|414724|425304|433837|433838|433839|433840|433841|442596|442597|446906|446916|447022|447025|447028|447033|447036|447037|447039|447044|447045|447058|447060|447062|447118|447119|447124|447125|447128|447136|447143|447146|447147|447151|447152|447153|447155|447157|447158|447160|447162|447195|447199|447205|447208|447212|447214|447219|447220|447222|447224|490197|497983|497984|498020|498022|498024|509088|509089|509090|509091|509092|509097|509098|513487|514996|514999|515001|515003|515004|515006|515009|515010|515011|515012|515019|515023|515025|515065|515066|515068|515072|515084|515087|515090|515101|515104|536561|538940|538941|552030|552031|556514|556566|556568|556599|556601|556603|556605|556882|556883|556885|556887|556889|556891|556893|557123|557160|558005|614549|619946|619947|622298|626695|626696|626697|626698|626699|626700|626701|626702|626703|626704|626705|626706|626707|626708|626709|626710|626711|626712|626713|626714|626715|626717|626723|626724|626725|626726|626727|650524|650525|650612|690349|695000|745608|745610|774359|776986|777009|789827|794389|799104|799105|799106|818841|822599|822600|822602|822603|822604|822605|822606|822607|822608|822609|822610|822611|822612|822613|822617|822618|850718|862097|862098|862099|862100|862117|862119|862120|864965|918547|921605|921606|921607|921608|921609|929997|929998|929999|930000|930001|939769|940598|941399|941400|941401|941402|941403|941404|941405|941406|952034|952035|959520|980432|981216|981217", + "text": "Ehlers-Danlos syndrome, hydroxylysine-deficient" + }, + { + "baseId": "29413|29414|29415|29416|29417|31447|31448|31449|31452|31459|32962|32966|32967|32972|32973|40563|237254|292513|293931|293932|293933|297256|297269|297293|297303|297304|297305|297307|297313|297314|297315|297334|297337|297349|297350|297353|312407|312417|312419|312421|312422|312424|318297|318298|318381|318383|318385|318387|318391|318400|318407|318409|318410|324450|325163|325164|325168|325178|326549|326552|326557|326561|326562|326563|332752|332753|332755|332758|332761|334385|334393|334397|334400|334403|334405|334407|620458|621343|624419|681806|709203|709204|790442|790443|867058|867059|867060|867061|867062|867063|867064|870391|870392|870393|870394|870395|870396|870397|870398|870399|870400|870401|870402|870403|870404|870405|870406|870407|890261|890262|890263|890264|890265|890266|890267|891754|921210|963004", + "text": "Familial visceral amyloidosis, Ostertag type" + }, + { + "baseId": "29420", + "text": "Leprosy, early-onset, susceptibility to" + }, + { + "baseId": "29423|29423|29424|29428|29429|29433|29436|29441|29445|29446|29447|29451|45131|45132|45133|85537|141819|250744|250745|250746|286691|286693|286694|286696|286697|286699|286700|286702|287404|287405|287406|287407|287408|287411|287412|287413|289835|289853|289854|289855|289856|289857|289858|289860|290209|290210|290213|290214|290216|428064|719898|719900|733508|816019|885125|885126|885127|885128|885129|885130|885131|885132|885133|885134|885135|885136|885137|885138|885139|885140|885141|885142|885143|885144|885145|887378|887379", + "text": "Gonadotropin-independent familial sexual precocity" + }, + { + "baseId": "29423|29433", + "text": "Precocious puberty in males" + }, + { + "baseId": "29423|29426|29427|29430|29431|29437|29438|29444|29448|29449|29450|45132|85537|141819|250744|250745|250746|286691|286693|286694|286696|286697|286699|286700|286702|287404|287405|287406|287407|287408|287411|287412|287413|289835|289853|289854|289855|289856|289857|289858|289860|290209|290210|290213|290214|290216|428064|485708|485710|536161|614511|719898|719900|733508|816019|816020|885125|885126|885127|885128|885129|885130|885131|885132|885133|885134|885135|885136|885137|885138|885139|885140|885141|885142|885143|885144|885145|887378|887379", + "text": "Leydig cell hypoplasia, type 1" + }, + { + "baseId": "29427|29431|29437|29438", + "text": "Luteinizing hormone resistance, female" + }, + { + "baseId": "29432", + "text": "Leydig hypoplasia, type I" + }, + { + "baseId": "29435|29439|29443", + "text": "Leydig cell hypoplasia, type II" + }, + { + "baseId": "29440", + "text": "Luteinizing hormone/choriogonadotropin receptor, lq variant" + }, + { + "baseId": "29442", + "text": "Leydig cell adenoma, somatic, with male-limited precocious puberty" + }, + { + "baseId": "29452|29455|187176|187177|187178|187179|508926|508927|508928|508929|806424", + "text": "Isolated lutropin deficiency" + }, + { + "baseId": "29454|29566|32737|38625|38658|38809|38859|39652|39948|40116|44157|44192|45804|45808|45834|45835|48062|48174|48183|48307|48398|48485|48486|48496|48715|48730|49899|51199|57803|59494|65577|65629|70494|70495|71447|71448|75073|75313|75315|75605|76378|76957|76958|76967|76968|79736", + "text": "Variant of unknown significance" + }, + { + "baseId": "29456|305012|308710|308720|313849|313851|313858|313859|313939|313941|711467|736598|899380|899381|899382|899383|899384|899385", + "text": "Hypogonadotropic hypogonadism 12 with or without anosmia" + }, + { + "baseId": "29457|29458|578364", + "text": "Vohwinkel syndrome, variant form" + }, + { + "baseId": "29469", + "text": "Long QT syndrome, bradycardia-induced" + }, + { + "baseId": "29472", + "text": "Long QT syndrome 2, acquired, susceptibility to" + }, + { + "baseId": "29475|29476|78157|78188|78211|78325|78334|78393|78402|78405|78408|78431|78443|197230|197324|197333|302179|361864|361865|369621|389774|395489|395490|396190|456848|818254|833312|919088", + "text": "Short QT syndrome 1" + }, + { + "baseId": "29484", + "text": "Thalassemia, gamma-delta-beta" + }, + { + "baseId": "29485", + "text": "Asthma, diminished response to antileukotriene treatment in" + }, + { + "baseId": "29486", + "text": "APOLIPOPROTEIN(a), TYPE C POLYMORPHISM" + }, + { + "baseId": "29487", + "text": "APOLIPOPROTEIN(a), TYPE D POLYMORPHISM" + }, + { + "baseId": "29488|29489", + "text": "Lipoprotein(a) deficiency, congenital" + }, + { + "baseId": "29490|29491|38731|323001|323007|323011|323013|323017|323020|332614|332619|332620|332624|332633|339537|339544|339553|339560|339564|339566|339577|339578|339582|340947|340951|340955|340956|340963|340965|340966|340970|620524|714509|754560|873915|873916|873917|873918|873919|873920|873921|873922|873923|873924|873925|873926|873927|873928|873929|873930|873931|873932|876546|876547|876548|876549|919584", + "text": "Hepatic lipase deficiency" + }, + { + "baseId": "29492|29493|29494", + "text": "High density lipoprotein cholesterol level quantitative trait locus 12" + }, + { + "baseId": "29495|29670|70804|70805|70806|70807|70808|70809|77430", + "text": "Susceptibility to hepatitis C virus" + }, + { + "baseId": "29496|29497|29878|29879|29880|29881|29882|45053|45055|45058|75283|138262|138263|138264|138266|138267|138269|138270|138271|138272|138273|138275|138276|138277|138278|138279|141288|141289|141290|142549|142550|142551|142552|142553|188798|205412|226681|226682|259823|297329|297338|297341|297343|297344|297345|297358|297359|297360|297366|297368|299336|299337|299338|299356|299369|299370|299371|299372|299375|303556|303558|303559|303564|303565|303567|303572|303575|303576|303861|303867|303869|303872|303873|303877|303880|303881|303885|303887|303888|303889|303900|364585|364699|364707|364708|364709|364744|364749|364757|364761|368162|368444|368447|406742|433881|433885|438290|442687|447365|447373|447482|447591|447593|447615|454992|454993|455617|498154|498158|498315|508860|515339|515385|515388|515393|515398|515400|515418|515422|515426|515428|515429|515430|515435|515438|515440|515441|515442|515443|515447|515450|515452|515456|520164|521442|521450|521540|521775|521778|556724|556726|556728|556730|556732|556734|556736|556769|556771|557084|557086|558270|558272|558274|558276|558278|558280|558282|558284|560317|560450|560452|563161|563163|563164|563166|563168|565122|565124|613426|614204|620783|623585|624170|624305|624306|627202|627203|627204|627205|627206|627207|627208|627209|627210|627211|627212|627213|627214|627215|627216|627217|627218|627219|627220|627221|627222|627223|627224|627225|627226|627227|627228|627229|633936|633937|633938|633939|633940|633941|633942|633943|650607|650705|650708|651232|651345|690439|690440|690441|691853|691854|696364|696365|699074|721439|721440|729948|735086|745960|761448|780433|780434|780435|787037|787285|818402|821832|823142|823143|823144|823145|823146|823147|823148|823149|823150|823151|823152|823153|823154|823155|823156|823157|823158|823159|823160|823161|823162|823163|823164|823165|823166|823167|823168|830837|830838|830839|830840|830841|830842|830843|830844|830845|850750|851034|851986|894137|894138|894139|894140|894141|894142|894143|894144|894145|894146|894147|894148|894149|894150|894151|894152|894153|894154|894155|894156|894157|894158|894159|894160|894161|894162|894163|894164|894165|894166|894167|894168|894169|894170|894171|894172|894173|894174|894175|894176|894177|894178|894179|896092|896093|896094|904219|921784|921785|921786|921787|921788|924062|924063|924064|924065|924066|924067|924068|930211|930212|930213|930214|930215|930216|930217|930218|932905|932906|932907|932908|939785|939786|940613|941632|941633|941634|941635|941636|941637|941638|941639|941640|941641|941642|941643|941644|941645|944617|944618|944619|944620|952201|952202|954171|959767", + "text": "Severe combined immunodeficiency, autosomal recessive, T cell-negative, B cell-positive, NK cell-positive" + }, + { + "baseId": "29499|29500|29501|187112|191536|191787|192645|213921|237224|265428|265681|267617|297518|297525|297526|297531|297532|297533|297536|297537|297541|297543|297547|297550|297559|297560|297562|297570|297572|297573|297576|297577|297584|297587|297595|297596|297597|297598|297601|297602|297606|297608|297609|299681|299687|299694|299695|299702|299705|299706|299707|299708|299710|299714|299722|299723|299732|299739|299740|299744|299749|299751|299756|299757|299767|299769|299772|299774|299777|299778|299779|299785|299787|299790|299791|299792|299795|299797|299812|299813|303773|303775|303776|303785|303793|303796|303799|303801|303802|303806|303810|303834|303838|303839|303853|303858|303859|303864|303919|303930|303937|303938|304199|304204|304207|304208|304209|304212|304213|304223|304224|304238|304250|304252|304253|304254|304257|304259|304266|304267|304277|304279|304291|304312|304314|304315|304316|304325|304327|304333|304334|304335|304337|304338|304339|353703|433664|438653|493341|496427|552088|552089|578376|609592|609593|609594|609595|620198|623233|625838|735097|735099|735100|765123|765124|765126|765128|765129|765130|765132|765134|765136|775024|782294|782298|782302|799412|799413|799414|799415|799416|799417|799418|799419|805007|805443|822300|894293|894294|894295|894296|894297|894298|894299|894300|894301|894302|894303|894304|894305|894306|894307|894308|894309|894310|894311|894312|894313|894314|894315|894316|894317|894318|894319|894320|894321|894322|894323|894324|894325|894326|894327|894328|894329|894330|894331|894332|894333|894334|894335|894336|894337|894338|894339|894340|894341|894342|894343|894344|894345|894346|894347|894348|894349|894350|894351|894352|894353|894354|894355|894356|894357|894358|894359|894360|894361|894362|894363|894364|894365|894366|894367|894368|894369|896108|896109|896110|978181|978182|978183|978184|983765", + "text": "St\u00fcve-Wiedemann syndrome" + }, + { + "baseId": "29502|29503|29504|29505|29506|29507|29508|29509|29510|208712|208713|243602|243603|243604|243605|243606|243607|243608|243609|243610|243611|243612|243613|243614|243615|243616|243617|243618|243619|243620|243621|248535|257451|257452|257453|257454|257456|257457|257458|336677|336681|336682|336686|336689|336692|336695|336699|336702|336711|336713|336716|336717|336719|336720|336722|336724|336726|336734|336736|336737|336738|336740|336742|336744|336745|346357|346369|346370|346371|346372|346375|346377|346378|346386|346389|346393|346394|346396|346401|346402|346405|346411|346412|346415|350599|350602|350603|350606|350608|350609|350611|350612|350614|350615|350616|350619|350620|350623|350624|350626|350627|350628|350631|350632|350633|350636|350638|350641|351653|351655|351657|351658|351661|351662|351663|351666|351667|351669|351670|351673|351675|351677|351679|351681|351683|351686|351688|351690|351693|351694|351696|362897|362900|362901|379769|403702|403712|403721|403726|403728|403732|403736|403737|403738|403739|403746|403749|404215|404217|404219|404220|404227|404236|404241|404246|404251|404254|404260|404263|404266|404269|404271|404272|404275|404847|404848|422354|430417|430419|430419|430421|430422|430423|469587|469592|469593|469595|469604|469605|469611|470630|470633|470637|470639|470641|470646|470648|470649|470656|471077|471146|471147|471155|471166|471170|471173|471175|471177|471184|471187|471189|471192|471193|471194|471612|471618|471620|471620|471623|471627|471631|471632|471635|471636|471638|533770|533817|533823|533827|533830|533838|533839|533840|533841|533842|533843|533844|533846|533847|533848|533849|533850|533851|533853|533854|533856|533857|533858|533859|533861|533863|533865|533867|533871|533873|533875|533879|534402|534403|534409|534413|534420|536024|552357|552362|552368|552369|552374|552379|552387|571518|571520|571527|571531|571541|571551|571553|573083|573084|573090|573093|573095|573099|573105|573108|573118|573126|573128|573767|573771|573772|573777|573782|575153|575154|575155|575156|575157|575158|575159|575160|575161|575162|575163|610162|615635|648949|648950|648951|648952|648953|648954|648955|648956|648957|648958|648959|648960|648961|648962|648963|648964|648965|648966|648967|648968|648969|648970|648971|648972|648973|648974|648975|648976|648977|648978|648979|648980|648981|648982|648983|653572|653660|653667|653830|653831|684901|684902|684903|689244|689246|689247|689248|694628|694629|695858|695859|705670|705671|745331|757788|757789|773310|773312|773317|776718|776947|821364|821365|821366|821367|821368|821369|848737|848738|848739|848740|848741|848742|848743|848744|848745|848746|848747|848748|848749|848750|848751|848752|848753|848754|848755|848756|848757|848758|848759|848760|848761|848762|848763|848764|848765|848766|848767|848768|848769|848770|848771|848772|848773|848774|848775|848776|848777|848778|848779|848780|848781|848782|848783|848784|848785|852399|852401|853004|853005|853006|857421|857422|857423|857424|886716|886717|886718|886719|886720|886721|886722|886723|886724|886725|886726|886727|886728|886729|886730|886731|886732|886733|886734|886735|886736|886737|886738|886739|886740|886741|886742|886743|886744|886745|886746|886747|886748|886749|886750|887503|919934|929308|929309|929310|929311|929312|929313|929314|929315|929316|929317|929318|939092|939093|939094|939095|939096|939097|939098|939099|939100|939101|939102|939103|939104|939105|939106|939107|939108|939109|939110|939111|939112|940516|940517|941260|951217|951218|951219|951220|951221|951222|951223|951224|951225|951226|951227|951228|951229|951230|951231|951232|951233|958945|958946|958947|958948|958949|958950|958951|958952|958953|958954|958955|960326|966896", + "text": "Familial platelet disorder with associated myeloid malignancy" + }, + { + "baseId": "29508", + "text": "Transient myeloproliferative disorder of Down syndrome" + }, + { + "baseId": "29508", + "text": "Leukemia, acute myeloid, m0 subtype" + }, + { + "baseId": "29513|29514|77643|205534|964520", + "text": "Acquired partial lipodystrophy" + }, + { + "baseId": "29513|29513|77643|205535|430166|430167|430168|468600|469514|469515|469516|469524|469526|469527|469977|469987|469989|469991|469992|469994|470001|470569|470579|470583|470590|532795|532797|532801|532803|532804|532807|532809|532813|532815|532816|532817|532824|532825|532828|532834|532870|532877|532879|533249|533253|533256|570621|570625|570632|572311|572318|572319|572321|572994|572996|572997|572999|574924|574925|574926|574927|574928|647869|647870|647871|647872|647873|647874|647875|647876|647877|647878|647879|647880|647881|647882|647883|647884|647885|647886|647887|647888|647889|647890|647891|647892|704887|704888|704889|704890|704891|716334|728079|728080|728081|745066|745228|756882|756883|756884|756885|756886|772556|772561|772563|776690|786126|793776|821246|847468|847469|847470|847471|847472|847473|847474|847475|847476|847477|847478|847479|847480|847481|847482|847483|928906|928907|928908|928909|928910|938624|938625|950726|950727|950728|950729|950730|950731|958584|958585|958586|958587|958588|958589", + "text": "Epilepsy, progressive myoclonic, 9" + }, + { + "baseId": "29513|77643|430166|430167|430168|468600|469514|469515|469516|469524|469526|469527|469977|469987|469989|469991|469992|469994|470001|470569|470579|470583|470590|532795|532797|532801|532803|532804|532807|532809|532813|532815|532816|532817|532824|532825|532828|532834|532870|532877|532879|533249|533253|533256|570621|570625|570632|572311|572318|572319|572321|572994|572996|572997|572999|574924|574925|574926|574927|574928|647869|647870|647871|647872|647873|647874|647875|647876|647877|647878|647879|647880|647881|647882|647883|647884|647885|647886|647887|647888|647889|647890|647891|647892|704887|704888|704889|704890|704891|716334|728079|728080|728081|745066|745228|756882|756883|756884|756885|756886|772556|772561|772563|776690|786126|793776|821246|847468|847469|847470|847471|847472|847473|847474|847475|847476|847477|847478|847479|847480|847481|847482|847483|928906|928907|928908|928909|928910|938624|938625|950726|950727|950728|950729|950730|950731|958584|958585|958586|958587|958588|958589", + "text": "Lipodystrophy, partial, acquired, susceptibility to" + }, + { + "baseId": "29515|77509|77510|77511|77512|134932|295100|295102|295107|296929|296930|296931|296937|296938|296939|296940|300561|300563|300566|300682|300700|300701|300702|300704|300706|300712|300718|892733|892734|892735|892736|892737|892738|892739|892740|892741|892742|892743|892744|892745|892746|892747|892748|896022|918915", + "text": "Leukodystrophy, adult-onset, autosomal dominant" + }, + { + "baseId": "29516|29517|29520|29521|29529|29530|29531|29534|29547|29550|29553|29563|29564|45141|45142|49658|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|77746|77751|77815|77822|77828|172488|172489|196270|196461|196463|205007|213515|224183|226437|237758|238151|244232|276591|276609|276614|276876|277432|277441|277446|277453|277461|277537|481410|509122|556620|576413|609160|626918|672030|685575|822799|862419|862420|862421|862422|862423|864995", + "text": "Emery-Dreifuss muscular dystrophy 2, autosomal dominant" + }, + { + "baseId": "29517|57238|77759|213515|964644", + "text": "Limb-girdle muscular dystrophy, type 1B" + }, + { + "baseId": "29518|29520|29525|29527|29528|29529|29532|29533|29556|29557|29558|45141|45142|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|57256|77659|77677|77726|77730|77747|77765|77775|77785|172488|172489|196270|196461|196463|224183|226437|238151|244232|276591|276609|276614|276876|277432|277441|277446|277453|277461|277537|509122|556620|576413|626918|685575|862419|862420|862421|862422|862423|864995", + "text": "Familial partial lipodystrophy 2" + }, + { + "baseId": "29525|45135|57241|172880|196467|228276", + "text": "Laminopathy" + }, + { + "baseId": "29525|29531|49658", + "text": "Emery-Dreifuss muscular dystrophy 3, autosomal recessive" + }, + { + "baseId": "29526|29529|29538|29548|29552|29561|45141|45142|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|106555|172488|172489|196270|196461|196463|224183|226437|238151|244232|276591|276609|276614|276876|277432|277441|277446|277453|277461|277537|509122|556620|576413|626918|685575|862419|862420|862421|862422|862423|864995", + "text": "Mandibuloacral dysplasia with type A lipodystrophy" + }, + { + "baseId": "29526|29529|29537|29539|29539|29540|29541|29555|31619|45141|45142|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|77699|77746|77755|77766|77776|137877|137889|172110|172111|172112|172113|172114|172115|172116|172117|172118|172488|172489|189381|196270|196461|196463|205007|224183|226437|238151|244232|276591|276601|276609|276610|276614|276876|277430|277432|277433|277434|277441|277445|277446|277447|277453|277456|277461|277537|353062|509122|552036|556620|576413|613483|626918|672030|685575|789856|862419|862420|862421|862422|862423|864995", + "text": "Hutchinson-Gilford syndrome" + }, + { + "baseId": "29527|29546|181469", + "text": "Hutchinson-Gilford progeria syndrome, childhood-onset" + }, + { + "baseId": "29528|29556|276601|276610|277430|277433|277434|277445|277447|277456|353062", + "text": "Familial partial lipodystrophy" + }, + { + "baseId": "29529|45141|45142|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|172488|172489|196270|196461|196463|224183|226437|238151|244232|276591|276601|276609|276610|276614|276876|277430|277432|277433|277434|277441|277445|277446|277447|277453|277456|277461|277537|353062|509122|556620|576413|626918|685575|862419|862420|862421|862422|862423|864995", + "text": "Lipoatrophy with Diabetes, Hepatic Steatosis, Hypertrophic Cardiomyopathy, and Leukomelanodermic Papules" + }, + { + "baseId": "29529|29537|45141|45142|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|77828|172488|172489|196270|196461|196463|224183|226437|238151|244232|276591|276609|276614|276876|277432|277441|277446|277453|277461|277537|509122|556620|576413|626918|626927|672030|685575|862419|862420|862421|862422|862423|864995", + "text": "Charcot-Marie-Tooth disease type 2B1" + }, + { + "baseId": "29529|45141|45142|57199|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|172488|172489|176795|196270|196365|196461|196463|198545|198549|198550|198551|224183|226437|238151|243779|244232|267991|268805|270420|274788|276591|276601|276609|276610|276614|276876|277430|277432|277433|277434|277441|277445|277446|277447|277453|277456|277461|277537|299476|299490|301862|301890|301973|306312|306339|306415|306416|306417|306601|306602|320791|320814|320833|329859|329936|336359|336412|338232|338388|353062|438475|456964|456966|456973|456974|456977|456987|456993|456995|457015|457016|457018|457504|457509|457510|457619|457622|457623|457630|457631|457633|457635|457950|457952|457955|457959|457961|457965|457968|457970|457971|457973|457974|457975|470275|470278|470282|470287|470289|470290|470291|470298|470301|471128|471134|471136|471137|471140|471144|471584|471586|471587|471588|471590|471593|471968|471971|471974|509122|522860|522864|522868|523073|523074|523302|523305|523308|523312|523313|523395|523407|523410|523416|523424|534299|534301|534306|534314|534322|534323|534329|534334|534337|534462|534469|534475|534810|534812|534822|534829|534831|534834|556620|561765|561773|561776|561779|561781|561783|562214|562223|562230|562234|564423|564426|564428|564436|564440|567168|567170|567174|567187|571998|573409|574138|575270|575271|576413|626918|636356|636371|636372|636373|636374|636375|636376|636377|636378|636379|636380|636381|636382|636383|636384|636385|636386|636387|636388|649501|649502|649503|649504|649505|649506|649507|649508|649509|649510|649511|649512|653723|685575|689436|692311|692312|692313|692315|692316|692318|692319|692321|694741|694742|694743|694744|694746|695880|695881|695882|700262|700263|700266|705937|705940|731420|758090|758091|758093|773911|775370|780049|786754|787416|788091|819920|833873|833874|833875|833876|833877|833878|833879|833880|833881|833882|833883|849347|849348|849349|849350|849351|849352|849353|849354|849355|849356|849357|849358|849359|849360|849361|851926|852104|852377|862419|862420|862421|862422|862423|864995|924916|924917|924918|924919|924920|924921|924922|924923|924924|924925|929489|934004|934005|934006|934007|934008|934009|939318|940084|941281|945773|945774|951475|951476|951477|951478|951479|951480|955222|959096|959097|959098|959099|960638|980095|980096", + "text": "Emery-Dreifuss muscular dystrophy" + }, + { + "baseId": "29529|29549|29562|29563|29564|45137|45141|45142|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|77759|77857|172488|172489|196270|196461|196463|213515|215103|224183|226437|238151|244232|269995|276591|276601|276609|276610|276614|276876|277430|277432|277433|277434|277441|277445|277446|277447|277453|277456|277461|277537|353062|447227|509122|513494|552035|552036|556620|576413|578366|626918|672030|685575|792654|862419|862420|862421|862422|862423|864995", + "text": "Congenital muscular dystrophy, LMNA-related" + }, + { + "baseId": "29537|540444|540463", + "text": "Autosomal recessive axonal hereditary motor and sensory neuropathy" + }, + { + "baseId": "29538|29542|29556|29559", + "text": "Mandibuloacral dysplasia with type A lipodystrophy, atypical" + }, + { + "baseId": "29538|276601|276610|277430|277433|277434|277445|277447|277456|280484|280486|280881|280882|282234|282235|282236|282440|353062", + "text": "Mandibuloacral dysplasia" + }, + { + "baseId": "29541|172113|172117|214091", + "text": "Hutchinson-Gilford progeria syndrome, atypical" + }, + { + "baseId": "29545|33496", + "text": "Dilated cardiomyopathy-hypergonadotropic hypogonadism syndrome" + }, + { + "baseId": "29568|29569|29570|29571|29572|29574|29574|178530|251205|251205|251207|251207|251208|251208|251210|251210|251212|251213|251214|251214|251215|251215|251216|251216|251217|251219|251219|251220|251220|251221|251223|251223|251224|251224|251225|251225|291063|291064|291065|291065|291067|291067|291068|291068|291076|291081|291082|291084|291084|291085|291085|291090|291092|291096|291097|291102|291103|291104|292016|292016|292027|292028|292029|292037|292038|292045|292045|292047|292054|292058|292059|292061|292062|295384|295384|295385|295393|295393|295402|295411|295412|295413|295414|295414|295415|295427|295427|295428|295428|295590|295590|295594|295596|295597|295598|295598|295601|295606|295606|295613|295614|295618|438242|443496|443496|452493|452493|452495|452497|452499|452499|452501|452502|452504|452504|452783|452783|452785|452787|452790|452793|452794|452794|452798|452798|452803|452803|452808|452811|452819|452825|452825|452839|452841|452841|452842|452842|452844|453042|453047|453051|453051|453056|453059|453072|496303|519387|519396|519399|519411|519411|519414|519589|519593|519596|519625|519626|519627|537425|537425|559032|559034|559036|559038|559564|559566|559568|559570|559570|559572|559572|561650|561653|561659|561661|561663|563055|563068|563075|576763|584722|631506|631507|631508|631509|631510|631511|631512|631513|631514|631515|631516|631516|631517|631518|631519|631520|631521|631522|631523|631524|631525|631526|631527|631528|631529|631530|631531|631532|631533|631534|631535|631536|631537|631538|631539|631540|631541|631542|631543|631544|691429|691429|691430|691431|691432|691433|691437|691437|691438|691438|691441|691441|691442|691443|691443|695206|695207|695207|695208|695210|695210|698164|698166|698167|698167|708924|720525|720525|734146|734149|748363|759214|777415|777415|781736|795449|828297|828298|828299|828300|828301|828302|828303|828304|828305|828306|828307|828308|828309|828310|828311|828312|828313|828314|828315|851460|889352|889353|889354|889355|889356|889357|889358|889359|889360|889361|889362|889363|889364|889365|889366|889367|889368|889369|889370|889371|889372|889373|889374|889375|889376|889377|889378|891685|891686|891687|891688|923256|923257|923258|923259|923260|932003|932004|932005|932006|932007|932008|932009|932010|932011|939949|943609|943610|943611|943612|943613|943614|943615|943616|943617|953523|953524|953525|953526|953527|953528|960516|963130|970202", + "text": "Pierson syndrome" + }, + { + "baseId": "29571|29573|29574|29574|29575|29576|29577|38729|251205|251205|251207|251207|251208|251208|251210|251210|251212|251213|251214|251214|251215|251215|251216|251216|251217|251219|251219|251220|251220|251221|251223|251223|251224|251224|251225|251225|291063|291064|291065|291065|291067|291067|291068|291068|291076|291081|291082|291084|291084|291085|291090|291092|291096|291097|291102|292016|292016|292027|292028|292029|292037|292038|292045|292045|292047|292054|292058|292059|292061|295384|295384|295385|295393|295402|295412|295413|295414|295414|295415|295427|295427|295428|295428|295590|295590|295596|295597|295598|295598|295601|295606|295606|295613|295614|438242|443496|443496|452493|452493|452495|452497|452499|452499|452501|452502|452504|452504|452783|452783|452785|452787|452790|452793|452794|452794|452798|452798|452803|452803|452808|452811|452819|452825|452825|452839|452841|452841|452842|452842|452844|453042|453047|453051|453051|453056|453059|453072|519387|519396|519399|519411|519411|519414|519589|519593|519596|519625|519626|519627|537425|537425|559032|559034|559036|559038|559564|559566|559568|559570|559570|559572|559572|561650|561653|561659|561661|561663|563055|563068|563075|576763|584722|612129|622875|623276|631506|631507|631508|631509|631510|631511|631512|631513|631514|631515|631516|631516|631517|631518|631519|631520|631521|631522|631523|631524|631525|631526|631527|631528|631529|631530|631531|631532|631533|631534|631535|631536|631537|631538|631539|631540|631541|631542|631543|631544|691429|691429|691430|691431|691432|691433|691437|691437|691438|691438|691441|691441|691442|691443|691443|695206|695207|695207|695208|695210|695210|698164|698166|698167|698167|708924|720525|720525|734146|734149|748363|759214|777415|777415|781736|795449|818226|818227|828297|828298|828299|828300|828301|828302|828303|828304|828305|828306|828307|828308|828309|828310|828311|828312|828313|828314|828315|851460|889352|889353|889354|889355|889356|889357|889358|889359|889360|889361|889362|889363|889364|889365|889366|889367|889368|889369|889370|889371|889372|889373|889374|889375|889376|889377|889378|891685|891686|891687|891688|923256|923257|923258|923259|923260|932003|932004|932005|932006|932007|932008|932009|932010|932011|939949|943609|943610|943611|943612|943613|943614|943615|943616|943617|953523|953524|953525|953526|953527|953528|960516|967233", + "text": "Nephrotic syndrome, type 5, with or without ocular abnormalities" + }, + { + "baseId": "29578|29580|178844|178845|178846|359226|380444|380445|540778", + "text": "Amelogenesis imperfecta, type IA" + }, + { + "baseId": "29578|29598|33855|192407|192764|249573|249574|249575|249576|249577|249578|249579|249580|249679|249680|249681|249682|249683|249684|249685|249688|249689|249691|249694|249695|259645|267151|267281|271754|274805|274810|274811|274812|277638|277645|277650|277651|277652|277667|277671|277672|277673|277674|277675|277685|277686|277693|277696|277707|277720|277723|277724|277742|277744|277747|277748|277781|277785|277786|277792|277793|277794|277795|277802|277808|277809|277811|277812|277814|277818|277819|277824|277827|277828|277836|277838|277839|278632|278634|278635|278636|278641|278642|278647|278649|278650|278654|278655|278660|278661|278663|278667|278669|278670|278671|278674|278675|278677|278681|278682|278683|278685|278688|278689|278691|278706|278713|278715|278717|278728|278729|278732|278737|278751|278753|278760|278762|278763|278764|278765|278768|278769|278777|278778|278781|278782|278783|278785|278787|278790|278791|278793|278795|278796|278797|278798|278800|278802|278803|278805|278810|278811|278812|278815|278816|278817|278819|278822|278823|278824|278827|278828|278829|278832|278833|278834|278839|278840|278847|278872|278874|278875|278876|278878|278881|279961|279968|279970|279974|279975|279986|279987|279994|279995|280018|280028|280029|280031|280033|280034|280035|280036|280037|280038|280040|280041|280042|280043|280065|280073|280082|280084|280098|280100|280101|280104|280106|280116|280139|280143|280144|280149|280155|280157|280158|309388|314061|320009|320493|320507|330874|330883|346751|353088|353089|357035|357037|357051|405022|497058|540686|540748|540776|620709|621706|654177|696310|696430|707057|707058|718592|731907|731912|732073|745880|745883|746041|746043|746048|761372|761376|761504|761508|761510|761511|761518|761520|761527|780466|862909|862910|862911|862912|862913|862914|862915|862916|862917|862918|862919|862920|862921|862922|862923|862924|862925|862926|862927|862928|862929|862930|862931|862932|862933|862934|862935|862936|862937|862938|862939|862940|862941|862942|862943|863390|863391|863392|863393|863394|863395|863396|863397|863398|863399|863400|863401|863402|863403|863404|863405|863406|863407|863408|863409|863410|863411|863412|863413|863414|863415|863416|863417|863418|863419|863420|863421|865044|865045|865046|865102|865103|865104|865105|961860", + "text": "Junctional epidermolysis bullosa" + }, + { + "baseId": "29601|29602|29603|29604|316663|316669|316672|324147|330140|330141|330143|330146|330147|330150|330161|330162|331552|331554|331555|331566|331567|331580|620439|869660|869661|869662|869663|869664|869665|869666|869667|869668|872226|872227", + "text": "Lactate dehydrogenase B deficiency" + }, + { + "baseId": "29605|29606|313482|313484|313490|313498|313501|313504|313512|313513|313517|319675|319681|319682|319684|319686|319720|319721|319724|325801|325802|325814|325834|325846|325848|325850|326868|326870|372321|374007|374008|461354|526157|549649|620397|851835|867701|867702|867703|867704|867705|867706|867707|867710|867711|867712|867713|867714|867715|867716|867717|867718|867719|867720|867721|868634|935454|964911", + "text": "Glycogen storage disease XI" + }, + { + "baseId": "29607|29608|29609|29610|29611|29612|29613|29614|29615|29615|29616|29617|29618|30946|30947|30948|30952|30953|30954|38719|38720|38721|77056|77518|77520|77556|77561|317865|317866|317877|317878|317884|317886|317888|317890|317901|317902|325742|325744|325757|325760|331990|331994|331999|332000|332003|332006|332018|332032|332034|333500|333506|333512|333518|360854|870136|870137|870138|870139|870140|870141|870142|870143|872262", + "text": "Bullous ichthyosiform erythroderma" + }, + { + "baseId": "29615|29619|30950|30951|977257", + "text": "Ichthyosis, cyclic, with epidermolytic hyperkeratosis" + }, + { + "baseId": "29615|29620|29621|29622|29623|539150", + "text": "Erythroderma, ichthyosiform, congenital reticular" + }, + { + "baseId": "29624|29669|29670", + "text": "Cirrhosis, cryptogenic" + }, + { + "baseId": "29624|29669", + "text": "Cirrhosis, noncryptogenic, susceptibility to" + }, + { + "baseId": "29625|29626|29627|29629|29630|29631|29632|29633|29634|29635|29637|29638|260166|508877", + "text": "Pachyonychia congenita 2" + }, + { + "baseId": "29626", + "text": "Pachyonychia congenita syndrome" + }, + { + "baseId": "29628|29629|29630", + "text": "Steatocystoma multiplex" + }, + { + "baseId": "29639|29640|29641|29641|29642|29643|29644|29645|29646|29647|29648|77505|165833|213644|578544", + "text": "Pachyonychia congenita 1" + }, + { + "baseId": "29640|29641|29641|29649|77863|132049", + "text": "Palmoplantar keratoderma, nonepidermolytic, focal" + }, + { + "baseId": "29650|29656|29678|29680|29682|29685|29691|77110|259239|259240|259241|354282|432310", + "text": "Epidermolysis bullosa simplex, Koebner type" + }, + { + "baseId": "29651|29652|29658|29660|29661|29662|29667|29677|29684|29689|34026|260024", + "text": "Epidermolysis bullosa simplex Dowling-Meara type" + }, + { + "baseId": "29651|77095|77110|77120|77121|77131|77161|77172|77174|77179|77180|236895|254617|254618|254619|254620|317780|317783|317788|317792|317796|317797|317799|317801|317804|317805|317806|317814|317816|317817|325682|325688|325689|325698|331905|331909|331911|331912|331913|331914|331927|331928|333432|333436|333437|333440|333443|333444|333449|333456|333460|612096|713585|870102|870103|870104|870105|870106|870107|870108|870109|870110|870111|870112|870113|870114|870115|870116|870117|870118|872259", + "text": "Epidermolysis bullosa simplex" + }, + { + "baseId": "29653|29655|29659|29696|29697|77234|77266|77278|77282", + "text": "Epidermolysis bullosa simplex, autosomal recessive" + }, + { + "baseId": "29659|29679|29680|29681|29683|29690|29696|29780|34026|77123|77195|77198|227396|329900|919771", + "text": "Localized epidermolysis bullosa simplex" + }, + { + "baseId": "29665", + "text": "Dermatopathia pigmentosa reticularis" + }, + { + "baseId": "29668|77648|328354|328355|328356|328358|328361|328364|328365|328369|328372|328374|328375|338262|338266|338278|338280|338282|338283|338291|338294|338301|338305|338307|338308|344363|344366|344368|344369|344370|344378|344379|344382|345799|345802|345803|345804|345807|345813|345815|345816|877404|877405|877406|877407|877408|877409|877410|877411|877412|877413|877414|877415|877416|877417|877418|877419", + "text": "White sponge nevus 2" + }, + { + "baseId": "29671|77645|77646", + "text": "Meesmann corneal dystrophy 2" + }, + { + "baseId": "29672|791259|804902", + "text": "Pachyonychia congenita 4" + }, + { + "baseId": "29673|29674|29675|29676|77473|77482|77483|77485|77486|77488|165831|816294|920318", + "text": "Pachyonychia congenita 3" + }, + { + "baseId": "29686|77132|970970", + "text": "Dowling-Degos disease 1" + }, + { + "baseId": "29687|34026", + "text": "Epidermolysis bullosa simplex with mottled pigmentation" + }, + { + "baseId": "29692", + "text": "Epidermolysis bullosa simplex, Dowling-Meara type, with severe palmoplantar keratoderma" + }, + { + "baseId": "29693", + "text": "Epidermolysis bullosa simplex, generalized, with severe palmoplantar keratosis" + }, + { + "baseId": "29694", + "text": "Epidermolysis bullosa simplex with migratory circinate erythema" + }, + { + "baseId": "29698", + "text": "Kallikrein, decreased urinary activity of" + }, + { + "baseId": "29699", + "text": "Soluble interleukin-6 receptor, serum level of, quantitative trait locus" + }, + { + "baseId": "29699", + "text": "Interleukin 6, serum level of, quantitative trait locus" + }, + { + "baseId": "29701|362909|576133", + "text": "Polycythemia vera" + }, + { + "baseId": "29701", + "text": "Budd-Chiari syndrome, susceptibility to, somatic" + }, + { + "baseId": "29701|38718|138296|576133", + "text": "Thrombocythemia 3" + }, + { + "baseId": "29701|31634|31635|31636|31637|31638|31639|31640|39403|263756|263757|263758|332494|332495|332497|332499|332503|332504|332505|332510|332512|342718|342720|342721|342723|342728|342731|342732|348066|348067|348074|348076|348085|348086|349347|349349|349350|349351|349352|349355|349356|493110|611368|727892|879869|879870|879871|879872|879873|879874|879875|879876|879877|879878|879879|879880|879881|879882|879883|879884|879885|880689|880690", + "text": "Primary familial polycythemia due to EPO receptor mutation" + }, + { + "baseId": "29701|31381|362830|363045|363095|363584|363585|801063|857631", + "text": "Myeloproliferative disorder" + }, + { + "baseId": "29701", + "text": "Subacute lymphoid leukemia" + }, + { + "baseId": "29701|171079", + "text": "Polycythemia (disease)" + }, + { + "baseId": "29703", + "text": "ERYTHROCYTOSIS, JAK2-RELATED, SOMATIC" + }, + { + "baseId": "29704", + "text": "Atopy, susceptibility to" + }, + { + "baseId": "29705|29706", + "text": "Atopy, resistance to" + }, + { + "baseId": "29705", + "text": "Acquired immunodeficiency syndrome, slow progression to" + }, + { + "baseId": "29707|199915|199916|199917|199918|266233|266237|310549|310556|310559|310573|310579|310580|310592|310594|315708|315709|315710|315719|315720|315721|315722|315725|315726|315731|321766|321771|321772|321786|321793|321794|321801|321805|321806|321809|321815|321817|321820|321821|321833|321834|321841|321842|321846|322449|322461|322463|322466|322467|322468|322475|322478|322479|322480|322483|322497|322499|322503|322504|322505|353130|425881|459939|460364|525187|525193|525376|564622|566349|569683|569689|614349|614349|620822|638977|638978|638979|638980|638981|638982|638983|638984|652140|652142|723992|723997|737543|759979|767836|783648|790969|820224|836986|836987|836988|836989|836990|866011|866012|866013|866014|866015|866016|866017|866018|866019|866020|866021|866022|866023|866024|866025|866026|866027|866028|866029|866030|866031|866032|866033|866034|866035|866036|866037|868481|868482|868483|925838|925839|925840|946952|946953|956112|956113", + "text": "Interleukin 2 receptor, alpha, deficiency of" + }, + { + "baseId": "29708", + "text": "TYPE 1 DIABETES MELLITUS, INSULIN-DEPENDENT, 10" + }, + { + "baseId": "29709|614349", + "text": "Diabetes mellitus, insulin-dependent, 10" + }, + { + "baseId": "29710|29713", + "text": "Gastric cancer susceptibility after h. pylori infection" + }, + { + "baseId": "29712", + "text": "Allergic rhinitis, susceptibility to" + }, + { + "baseId": "29713", + "text": "Microvascular complications of diabetes 4" + }, + { + "baseId": "29714|29715|29716|29717|281612|281619|281620|281623|281625|281629|281631|282290|282294|282295|282296|282300|282302|283641|283643|283652|283653|283658|283664|283679|283680|283681|283682|283695|283700|283709|283712|283874|283875|283884|283906|283922|283926|448759|516305|516313|516317|516358|516359|550254|557490|557492|558703|558705|559188|628416|628417|628418|628419|732721|746742|762163|774568|780809|798957|816305|819044|824720|824721|880876|880877|880878|880879|880880|880881|880882|880883|882784|882785|922228|922229|942214|942215|942216|942217", + "text": "Osteomyelitis, sterile multifocal, with periostitis and pustulosis" + }, + { + "baseId": "29718|29722|29723|29724|29726|29731|29733|29734|29735|29736|29743|29746|29747|190228|190728|191864|191865|192203|195858|208628|208629|208630|208634|208636|208637|208639|208640|266492|270523|273448|334529|334531|334532|334533|334537|334540|334542|334544|334546|334548|334556|334557|334558|334561|334574|334575|334577|334580|334582|334585|334587|334591|334593|334595|334603|334604|334608|334611|334614|334616|334631|334632|334648|334652|334655|334664|334665|334666|344387|344388|344391|344402|344403|344404|344415|344416|344419|344427|344429|344436|344438|344443|344445|344450|344451|344455|344457|344461|344463|344466|344468|344470|344472|344473|344474|344475|344483|344484|344486|344495|344496|344498|344500|344502|344504|344506|349475|349476|349478|349480|349481|349483|349484|349486|349487|349488|349490|349492|349493|349496|349499|349500|349502|349503|349504|349506|349509|349512|349514|349519|349522|349523|349526|349529|349530|349537|349538|349540|350477|350479|350480|350483|350484|350487|350489|350491|350493|350495|350496|350497|350502|350506|350507|350511|350514|350517|350519|350520|350523|350526|350531|350536|350539|350540|350543|350544|350546|350547|350549|350550|353528|353529|430269|430271|430272|430276|493723|540035|540035|583525|619930|716760|745301|757309|757316|757317|757318|786303|791962|791963|791964|882612|882613|882614|882615|882616|882617|882618|882619|882620|882621|882622|882623|882624|882625|882626|882627|882628|882629|882630|882631|882632|882633|882634|882635|882636|882637|882638|882639|882640|882641|882642|882643|882644|882645|882646|882647|882648|882649|882650|882651|882652|882653|882654|882655|882656|882657|882658|882659|882660|882661|882662|882663|882664|882665|882666|882667|882668|882669|882670|882671|882672|882673|882674|882675|882676|882677|882678|882954|882955|964527", + "text": "Insulin-resistant diabetes mellitus AND acanthosis nigricans" + }, + { + "baseId": "29719|29720|29721|29725|29728|29732|29738|29740|29741|29742|29744|29745|29746|29749|29750|29753|190228|190728|191864|191865|192203|195858|208629|208630|208634|208636|208637|208639|208640|266492|273448|334529|334531|334532|334533|334537|334540|334542|334544|334546|334548|334556|334557|334558|334561|334574|334575|334577|334580|334582|334585|334587|334591|334593|334595|334603|334604|334608|334611|334614|334616|334631|334632|334648|334652|334655|334664|334665|334666|344387|344388|344391|344402|344403|344404|344415|344416|344419|344427|344429|344436|344438|344443|344445|344450|344451|344455|344457|344461|344463|344466|344468|344470|344472|344473|344474|344475|344483|344484|344486|344495|344496|344498|344500|344502|344504|344506|349475|349476|349478|349480|349481|349483|349484|349486|349487|349488|349490|349492|349493|349496|349499|349500|349502|349503|349504|349506|349509|349512|349514|349519|349522|349523|349526|349529|349530|349537|349538|349540|350477|350479|350480|350483|350484|350487|350489|350491|350493|350495|350496|350497|350502|350506|350507|350511|350514|350517|350519|350520|350523|350526|350531|350536|350539|350540|350543|350544|350546|350547|350549|350550|353528|353529|430269|430271|430272|430276|493723|495914|495915|540035|540035|583525|584427|619930|619931|716760|745301|757309|757316|757317|757318|786303|882612|882613|882614|882615|882616|882617|882618|882619|882620|882621|882622|882623|882624|882625|882626|882627|882628|882629|882630|882631|882632|882633|882634|882635|882636|882637|882638|882639|882640|882641|882642|882643|882644|882645|882646|882647|882648|882649|882650|882651|882652|882653|882654|882655|882656|882657|882658|882659|882660|882661|882662|882663|882664|882665|882666|882667|882668|882669|882670|882671|882672|882673|882674|882675|882676|882677|882678|882954|882955|904884", + "text": "Leprechaunism syndrome" + }, + { + "baseId": "29726|29748|263347|553407|553409", + "text": "Insulin resistance" + }, + { + "baseId": "29729", + "text": "Insulin-resistant diabetes mellitus" + }, + { + "baseId": "29730|29731|29746|29751|29752|190228|190728|191864|191865|192203|195858|205413|208629|208630|208634|208636|208637|208639|208640|266492|273448|334529|334531|334532|334533|334537|334540|334542|334544|334546|334548|334556|334557|334558|334561|334574|334575|334577|334580|334582|334585|334587|334591|334593|334595|334603|334604|334608|334611|334614|334616|334631|334632|334648|334652|334655|334664|334665|334666|344387|344388|344391|344402|344403|344404|344415|344416|344419|344427|344429|344436|344438|344443|344445|344450|344451|344455|344457|344461|344463|344466|344468|344470|344472|344473|344474|344475|344483|344484|344486|344495|344496|344498|344500|344502|344504|344506|349475|349476|349478|349480|349481|349483|349484|349486|349487|349488|349490|349492|349493|349496|349499|349500|349502|349503|349504|349506|349509|349512|349514|349519|349522|349523|349526|349529|349530|349537|349538|349540|350477|350479|350480|350483|350484|350487|350489|350491|350493|350495|350496|350497|350502|350506|350507|350511|350514|350517|350519|350520|350523|350526|350531|350536|350539|350540|350543|350544|350546|350547|350549|350550|353528|353529|423235|430269|430271|430272|430276|493723|540035|540035|583525|619930|716760|745301|757309|757316|757317|757318|786303|882612|882613|882614|882615|882616|882617|882618|882619|882620|882621|882622|882623|882624|882625|882626|882627|882628|882629|882630|882631|882632|882633|882634|882635|882636|882637|882638|882639|882640|882641|882642|882643|882644|882645|882646|882647|882648|882649|882650|882651|882652|882653|882654|882655|882656|882657|882658|882659|882660|882661|882662|882663|882664|882665|882666|882667|882668|882669|882670|882671|882672|882673|882674|882675|882676|882677|882678|882954|882955", + "text": "Pineal hyperplasia AND diabetes mellitus syndrome" + }, + { + "baseId": "29746|94325|252632|254638|254639|254641|254642|254643|254645|413341|413342|462372|462373|463084|463089|513322|527296|527299|527302|527304|527581|527586|550572|566965|566973|568139|568140|571952|571958|641296|641297|641298|641299|641300|641301|641302|652259|678969|693249|693250|693251|695576|769240|778103|820509|840125|840126|840127|840128|840129|840130|840131|840132|840133|840134|840135|840136|840137|840138|851517|926686|926687|926688|941037|948112|948113|948114|948115|956910", + "text": "Bailey-Bloch congenital myopathy" + }, + { + "baseId": "29747|208635|266492|430269|493723|540035", + "text": "Hyperinsulinemic hypoglycemia familial 5" + }, + { + "baseId": "29755|29756|169178|169179|169181|169182|169184|208230|208231|208232|208233|429747|550029|643629|643630|643631|714686|714687|726342|726343|739875|770416|776102|779729|816480|842801|842802|920348|927460|927461|937116|949058", + "text": "D-2-hydroxyglutaric aciduria 2" + }, + { + "baseId": "29757", + "text": "Kaposi sarcoma, susceptibility to" + }, + { + "baseId": "29757", + "text": "Crohn disease-associated growth failure, susceptibility to" + }, + { + "baseId": "29757", + "text": "Intracranial hemorrhage in brain cerebrovascular malformations, susceptibility to" + }, + { + "baseId": "29758", + "text": "INTERLEUKIN 6 POLYMORPHISM" + }, + { + "baseId": "29761", + "text": "Tsc2 angiomyolipomas, renal, modifier of" + }, + { + "baseId": "29763", + "text": "Acquired immunodeficiency syndrome, rapid progression to" + }, + { + "baseId": "29764", + "text": "Hepatitis C virus infection, response to therapy of" + }, + { + "baseId": "29765|29766|29767|45039|45859|116913|116928|116929|116932|116941|116942|438866|469579|469583|471138|471141|533796|533806|533822|533836|534328|571512|573068|573070|573074|573763|624690|648936|648937|648938|648939|648940|648941|653244|728865|728866|742595|757752|757753|848727|848728|848729|848730|853003|929306|929307|939088|939089|939090|951213|975708|975724", + "text": "Immunodeficiency 28" + }, + { + "baseId": "29768|29769|29770|29771|29772|29773|29774|29775|29776|29777|29778|29781|29782|29783|29784|205186|205421|227223|227396|256412|256413|282905|282907|282917|282918|282924|282925|282930|282931|282934|282938|282948|282953|282955|283691|283693|283694|283697|283698|283699|283701|283704|283705|283735|283739|283740|283741|283742|283745|283746|283747|283755|283763|283766|283767|283769|285237|285262|285264|285266|285271|285272|285274|285275|285278|285279|285280|285283|285315|285316|285317|285334|285342|285343|285344|285353|285354|285366|285371|285372|285374|285389|285786|285795|285796|285797|285798|285801|285802|285803|285804|285805|285807|285809|285812|285816|285817|329836|329856|329864|329866|329867|329869|329872|329873|329877|329878|329882|329885|329886|329887|329894|329896|329900|329901|329904|329905|329907|329908|329921|329922|329925|329928|329929|329930|329940|329941|340158|340160|340162|340163|340165|340171|340174|340176|340179|340181|340187|340197|340198|340201|340203|340205|340210|340212|340214|345853|345857|345865|345868|345869|345870|345871|345873|345876|345877|345880|345885|345886|345888|345889|345890|345891|345895|345902|345903|345905|345906|345909|345910|345914|345917|345918|345923|345929|345931|345935|347222|347223|347230|347231|347232|347235|347238|347241|347242|347243|347250|347251|347253|347254|347256|347258|347259|347264|347265|347272|347276|347277|347280|347282|389207|468839|582781|612187|620036|620037|620889|620890|704376|715705|715707|719409|727435|727437|732940|741024|741028|741029|741031|741033|741034|741036|743848|746949|756128|762422|791827|878434|878435|878436|878437|878438|878439|878440|878441|878442|878443|878444|878445|878446|878447|878448|878449|878450|878451|878452|878453|878454|878455|878456|878457|878458|878459|878460|878461|878462|878463|878464|878465|878466|878467|878468|878469|878470|878471|878472|878473|878474|878475|878476|878477|878478|878479|878480|878481|878482|878483|878484|878485|878486|880579|880580|880581|880582|880583|880584|880585|880586|880587|880588|880589|880590|881587|881588|881589|881590|881591|881592|881593|881594|881595|881596|881597|881598|881599|881600|881601|881602|881603|881604|881605|881606|881607|881608|881609|881610|881611|881612|881613|881614|881615|881616|881617|882848|882849|882850|882851|882852|882853|882854|904220|962182|962192", + "text": "Epidermolysis bullosa junctionalis with pyloric atresia" + }, + { + "baseId": "29785|29786|214743|214744|214745|410739|425229|439174|469334|470313|470321|470322|470329|470331|470868|470871|470873|471377|533431|533473|533474|533479|533519|533521|533526|533528|533529|533530|533531|533537|534039|534043|534046|534056|571173|571174|572870|572874|573477|573482|573484|648602|648603|648604|648605|648606|653090|653207|653540|653644|653645|716897|716898|742314|773029|773031|780041|791974|791975|848278|848279|848280|848281|848282|851845|929152|938930|938931|940500|951030|951031|951032", + "text": "Inosine triphosphatase deficiency" + }, + { + "baseId": "29785|29786", + "text": "peginterferon alfa-2b and ribavirin response - Toxicity/ADR" + }, + { + "baseId": "29785", + "text": "interferon alfa-2b, recombinant and ribavirin response - Dosage, Toxicity/ADR" + }, + { + "baseId": "29786", + "text": "azathioprine response - Toxicity/ADR" + }, + { + "baseId": "29787|29788|29789", + "text": "INSULIN-LIKE GROWTH FACTOR II POLYMORPHISM" + }, + { + "baseId": "29790", + "text": "SUPEROXIDE DISMUTASE 2 POLYMORPHISM" + }, + { + "baseId": "29790", + "text": "Microvascular complications of diabetes 6" + }, + { + "baseId": "29790|339355", + "text": "cyclophosphamide response - Efficacy" + }, + { + "baseId": "29791|29800|29823|34335|194306|196284|260865|260866|260867|260868|260869|260870|260871|260872|260873|260874|260875|260876|260877|260878|260879|260880|260881|260882|260883|260884|260885|260886|260887|260888|260889|260890|260891|260892|260893|260894|260895|540449", + "text": "Motor neuron disease" + }, + { + "baseId": "29805|29806|29822", + "text": "Amyotrophic lateral sclerosis 1, autosomal recessive" + }, + { + "baseId": "29805|101563|138100|138105|138106|138109|253530|253535|257862|275813|275835|275846|275852|275853|275859|275867|275874|275875|275885|275924|275994|276114|301223|307148|308234|311342|312615|312633|316839|316886|317274|318533|318542|319067|325125|325141|334817|335933|335979|336000|339510|339513|339516|341312|342768|342779|342814|342820|345642|345650|345651|345654|345735|345740|345745|345747|349006|349009|349010|350179|350191|350195|350203|350220|351241|351252|351255|351273|351279|352384|352385|352933|352934|352935|352936|353027|353589", + "text": "Amyotrophic Lateral Sclerosis, Dominant" + }, + { + "baseId": "29826|29827|29828|132700|192256|272303|315777|315778|315783|315785|315786|315790|315792|315793|315794|315797|315798|315799|315806|315807|315811|315812|315820|315821|315822|315823|315825|315826|315837|322844|322847|322859|322871|322872|322875|322881|322885|322897|322899|322903|322905|322906|322907|322911|322912|322913|322919|322925|328881|328883|328889|328890|328907|328913|328921|328922|328925|328929|328945|328946|328948|328951|328959|328960|328967|328970|328971|328977|328981|328982|328986|328988|330126|330127|330131|330137|330139|330142|330151|330159|330163|330166|330175|330183|330185|330186|330187|330189|702060|738394|805022|818294|869086|869087|869088|869089|869090|869091|869092|869093|869094|869095|869096|869097|869098|869099|869100|869101|869102|869103|869104|869105|869106|869107|869108|869109|869110|869111|869112|869113|869114|869115|869116|869117|869118|869119|869120|869121|869122|869123|869124|869125|869126|869127|869128|869129|869130|869131|869132|869133|869134|869135|869136|869137|869138|869139", + "text": "Growth delay due to insulin-like growth factor type 1 deficiency" + }, + { + "baseId": "29829|29830|29831|29832|29833|190981|191348|191773|192262|192729|192731|195269|196202|265408|266452|266569|268529|268807|271673|323603|323611|323612|323619|323620|323622|323624|323633|323634|323636|323642|323643|323646|323648|323657|323659|323660|323663|323666|323670|323672|323673|323675|323678|323679|323680|323682|323684|323687|323691|323709|323712|323717|323718|323719|323720|323728|323735|323741|323755|323756|323762|323764|323766|323774|323775|323786|323790|323791|323794|323798|323801|323802|323805|323806|323810|323811|323812|323816|323819|323820|323821|323829|323835|323839|323840|323842|323844|333329|333338|333339|333341|333342|333350|333351|333355|333357|333359|333360|333374|333376|333380|333381|333390|333392|333393|333399|333401|333404|333408|333412|333421|333423|333428|333429|333431|333433|333439|333445|333447|333450|333451|333463|333465|333467|333472|333475|333486|333490|333495|333502|333509|333511|333514|333517|333523|333525|333528|333529|340116|340117|340118|340119|340124|340126|340127|340129|340132|340133|340137|340138|340139|340143|340144|340149|340150|340157|340161|340164|340166|340167|340168|340169|340170|340172|340177|340178|340184|340185|340186|340188|340190|340195|340196|340200|340202|340204|340207|340209|340215|340216|340218|340220|340224|340225|340226|340230|340238|340239|340244|340246|340248|340249|340250|340251|340252|340253|340254|340255|340256|340257|341556|341557|341561|341562|341564|341566|341567|341569|341572|341573|341575|341577|341578|341584|341586|341588|341590|341591|341594|341595|341596|341599|341601|341602|341604|341605|341612|341614|341615|341621|341624|341625|341626|341627|341628|341635|341636|341638|341639|341641|341643|341644|341649|341651|341653|353334|353335|440330|440331|440332|440333|489117|492694|493391|538449|587925|589734|622430|623654|623655|623656|623657|623658|623659|623660|623661|623662|726370|726372|726374|731034|739904|739908|744934|754822|754825|770461|779744|785080|788893|874336|874337|874338|874339|874340|874341|874342|874343|874344|874345|874346|874347|874348|874349|874350|874351|874352|874353|874354|874355|874356|874357|874358|874359|874360|874361|874362|874363|874364|874365|874366|874367|874368|874369|874370|874371|874372|874373|874374|874375|874376|874377|874378|874379|874380|874381|874382|874383|874384|874385|874386|874387|874388|874389|874390|874391|874392|874393|874394|874395|874396|874397|874398|874399|874400|874401|874402|874403|874404|874405|874406|874407|874408|874409|874410|874411|874412|874413|874414|874415|874416|874417|874418|874419|874420|874421|874422|874423|874424|874425|874426|874427|874428|874429|874430|874431|874432|874433|874434|874435|874436|874437|874438|874439|874440|874441|874442|874443|874444|874445|874446|874447|874448|874449|874450|874451|874452|874453|874454|874455|874456|874457|874458|874459|874460|874461|874462|874463|874464|874465|874466|874467|874468|874469|874470|874471|874472|874473|874474|874475|874476|874477|874478|874479|874480|874481|874482|874483|876597|876598|876599|876600|876601|919605|961325|961656|964437|964438|964439|965743", + "text": "Growth delay due to insulin-like growth factor I resistance" + }, + { + "baseId": "29839|29840|225849|259766|440803|508732|511499|550873|793021|970770", + "text": "Spinocerebellar Ataxia Type 15" + }, + { + "baseId": "29841|29842|137577|467196|468149|531447|531451|569477|572001|574566|614442|646384|646385|646386|646387|646388|704283|727343|731174|740938|756022|760470|779824|845847|845848|845849|928438|938117|950134|958237", + "text": "Agammaglobulinemia 6, autosomal recessive" + }, + { + "baseId": "29843", + "text": "IMMUNOGLOBULIN KAPPA LIGHT CHAIN POLYMORPHISM Inv1" + }, + { + "baseId": "29844", + "text": "IMMUNOGLOBULIN KAPPA LIGHT CHAIN POLYMORPHISM Inv2" + }, + { + "baseId": "29845", + "text": "IMMUNOGLOBULIN KAPPA LIGHT CHAIN POLYMORPHISM Inv3" + }, + { + "baseId": "29846", + "text": "Atopic asthma, susceptibility to" + }, + { + "baseId": "29847", + "text": "Immunoglobulin IgG2 deficiency" + }, + { + "baseId": "29853|29854|48029|48031|194358|247051|266227|269232|270570|312436|312438|312439|312443|312453|312454|312455|312459|312460|312461|312465|318321|318324|318325|318326|318338|318353|318356|318357|318358|318359|318360|318366|324452|324454|324456|324465|324468|324471|324473|324476|324477|324478|324483|324484|324491|324507|324509|324511|324512|324516|324517|325206|325207|325208|325209|325211|325215|325216|325226|325227|325241|460898|460899|460914|460933|460942|461229|461716|461720|490830|491185|525919|525921|525924|525995|526003|526004|526079|526083|526086|526417|526420|564442|567052|570306|570308|584147|639722|639723|639724|639725|639726|639727|639728|639729|639730|639731|639732|639733|639734|639735|712626|724210|724211|724212|737750|737751|737752|752446|752447|768220|791102|818393|818394|838005|838006|838007|838008|838009|838010|838011|838012|838013|838014|838015|838016|838017|838018|867068|867069|867070|867071|867072|867073|867074|867075|867076|867077|867078|867079|867080|867081|867082|867083|867084|868605|926131|926132|935401|935402|947330|947331|947332|956394|956395|956396", + "text": "Inflammatory bowel disease 28, autosomal recessive" + }, + { + "baseId": "29856|29857|29858|29859|29860|29861|48057|48057|131928|131928|190331|192273|193473|237026|249407|249408|249409|269259|269259|271648|271648|276509|276510|276511|276512|276530|276531|276532|276534|276535|276538|276541|276542|276543|276543|276551|276554|276558|276558|276562|276562|276571|276572|276742|276747|276749|276757|276759|276760|276768|276770|276773|276774|276782|276784|276785|276793|276794|276794|276800|276807|276807|276814|276816|276824|276825|276825|276829|276830|276830|276834|277325|277335|277338|277339|277340|277342|277345|277348|277350|277354|277355|277361|277364|277369|277373|277373|277374|277374|277381|277381|277382|277382|277384|277413|277415|277417|277418|277419|277437|277438|277439|277440|277442|277442|277448|277450|277450|277451|277457|277464|277464|277465|277465|277470|364461|364502|404940|447149|447303|511176|515098|515130|515133|515148|515152|515236|515244|515245|515250|556606|556608|556610|556661|556663|556665|556667|558134|558136|626873|626873|626874|626875|626876|626877|626878|626879|626880|626881|626882|626883|626884|626885|626886|626887|626888|626889|626890|626891|626892|650630|690363|690364|690367|690369|690371|690372|690374|695001|696128|696131|696132|696133|718251|729922|743713|777034|780340|789849|789850|789851|794432|794433|822768|822769|822770|822771|822772|822773|822774|822775|822776|822777|822778|822779|822780|822781|862359|862360|862361|862362|862363|862364|862365|862366|862367|862368|862369|862370|862371|862372|862373|862374|862375|862376|862377|862378|862379|862380|862381|862382|862383|862384|862385|862386|862387|862388|862389|862390|862391|862392|862393|862394|862395|862396|864984|864985|864986|864987|864988|921660|921661|921662|921663|930055|930056|930057|941473|941474|941475|941476|941477|941478|941479|941480|941481|941482|941483|941484|941485|941486|941487|952084|952085|952086|952087|952088|952089|959522|980436", + "text": "Symmetrical dyschromatosis of extremities" + }, + { + "baseId": "29862", + "text": "Lupus nephritis, susceptibility to" + }, + { + "baseId": "29862", + "text": "Pseudomonas aeruginosa, susceptibility to chronic infection by, in cystic fibrosis" + }, + { + "baseId": "29862", + "text": "Malaria, severe, susceptibility to" + }, + { + "baseId": "29862|227742", + "text": "trastuzumab response - Efficacy" + }, + { + "baseId": "29863|29864|237583|433637|433638|433639|433640|433641|469908|469910|469911|469912|469913|470911|471373|534061|534063|534071|534073|534078|534080|534156|534158|538496|571711|571712|571714|571715|571717|573201|573275|573278|573953|573954|575201|575216|610168|649202|649203|649204|649205|649206|649207|649208|653596|705819|705820|717349|717350|717351|729059|729060|729061|729062|729063|742784|757986|757987|773451|849078|849079|849080|849081|849082|849083|929408|929409|939210|951359|959035|959036|959037", + "text": "Agammaglobulinemia 2, autosomal recessive" + }, + { + "baseId": "29865", + "text": "IGG receptor I, phagocytic, familial deficiency of" + }, + { + "baseId": "29867|614187", + "text": "Immunodeficiency 20" + }, + { + "baseId": "29872", + "text": "Impdh2 enzyme activity, variation in" + }, + { + "baseId": "29873|29874|29875|190982|248646|551553|818253", + "text": "Retinitis pigmentosa 10" + }, + { + "baseId": "29876|29877|190982|190982|191349|191774|194330|301832|301833|301839|301840|301844|301845|304990|304997|305010|305021|305023|309672|309673|309674|309675|309676|309681|309683|309793|309795|309815|309818|309819|309821|309824|309845|360887|444052|551553|623976|692130|699814|699816|722294|735938|777623|777625|801405|832961|832967|897395|897396|897397|897398|897399|897400|897401|897402|897403|897404|897405|897406|897407|897408|897409|897410|897411|897412|897413|897414|897415|897416|897417|897418|897419|897420|897421|900309|900310|900311|900312|919072|919073|919074", + "text": "Leber congenital amaurosis 11" + }, + { + "baseId": "29889|29890|29891|29892|29893|29894|29895|29896|29897|29898|226665|428696", + "text": "Currarino triad" + }, + { + "baseId": "29899|29900", + "text": "Microphthalmia, cataracts, and iris abnormalities" + }, + { + "baseId": "29900|29901|29902|177410|178152|190674|195056|195057|265563|269268|274085|321288|321289|321293|321295|321297|321299|330480|330482|330483|330485|330487|330488|330491|330493|330500|330506|337020|337037|337040|337046|337048|337059|337060|337063|337068|337070|337072|337073|338954|338961|338966|338970|338971|338972|338976|338981|338996|338997|339002|339003|339007|339009|463476|464354|464355|464476|490994|528796|528803|569013|584936|642679|652424|693593|693594|693595|693596|693597|714230|739309|754144|754145|754146|769901|769902|769903|784779|841719|841720|872522|872523|872524|872525|872526|872527|872528|872529|872530|872531|872532|872533|872534|872535|872536|872537|872538|872539|872540|872541|876440|876441|876442|876443|936706|936707|957294|957295", + "text": "Microphthalmia, isolated 2" + }, + { + "baseId": "29901|29903|78970|177410|178152|195056|195057|269268|321288|321289|321293|321295|321297|321299|330480|330482|330483|330485|330487|330488|330491|330493|330500|330506|337020|337037|337040|337046|337048|337059|337060|337063|337068|337070|337072|337073|338954|338961|338966|338970|338971|338972|338976|338981|338996|338997|339002|339003|339007|339009|464355|464476|693593|693594|693595|754144|872522|872523|872524|872525|872526|872527|872528|872529|872530|872531|872532|872533|872534|872535|872536|872537|872538|872539|872540|872541|876440|876441|876442|876443", + "text": "Microphthalmia, isolated, with coloboma 3" + }, + { + "baseId": "29901|171866|177410|190674|263187|265563|321288|330485|337020|338972|424443|424444|464355|528803|625774|693593|693594|693596|754144|754145|754146|769902|769903|822308|957295|979522|979523|979524|979525|979526", + "text": "Microphthalmia" + }, + { + "baseId": "29901|313870|320062|320088|320089|320100|320112|320165|320174|320199|327204|327217|327218|327272|424445|802092|802093|802094", + "text": "Anophthalmia" + }, + { + "baseId": "29904|190108", + "text": "Oculoauricular syndrome" + }, + { + "baseId": "29906|29907|29910|29911|29915|227486|227487|227488|227489|227490|227492|360827|550229|677408|904414|918699", + "text": "Synpolydactyly 1" + }, + { + "baseId": "29908|29909|244065|677408", + "text": "Brachydactyly type E1" + }, + { + "baseId": "29908|29909|677408", + "text": "Brachydactyly type D" + }, + { + "baseId": "29912|29913|677408|818241", + "text": "Syndactyly, type V" + }, + { + "baseId": "29914|360827", + "text": "Brachydactyly-syndactyly syndrome" + }, + { + "baseId": "29916", + "text": "VACTERL association" + }, + { + "baseId": "29917|263231|282990|282991|282999|283000|283005|283006|283014|283836|283839|283840|283841|283843|283845|285472|285473|285477|285499|285504|285506|285507|285866|285875|285876|285877|285881|285883|285884|285885|285886|285887|285895|881651|881652|881653|881654|881655|881656|881657|881658|881659|918700", + "text": "Vertical talus, congenital" + }, + { + "baseId": "29918|29919|29920|29925|29926|132730|227271", + "text": "Selective tooth agenesis 1" + }, + { + "baseId": "29921|227271|453202|453457|453560|453935|453940|453942|453944|520201|559850|563721|632230|691569|698533|781960|781961|790475|829191|829192|918896|923522|970794", + "text": "Hypoplastic enamel-onycholysis-hypohidrosis syndrome" + }, + { + "baseId": "29922|29923|29924|227271", + "text": "Orofacial cleft 5" + }, + { + "baseId": "29928|29929|29930|29931|29933|29934|29935", + "text": "Hand-foot-genital syndrome" + }, + { + "baseId": "29932", + "text": "Guttmacher syndrome" + }, + { + "baseId": "29936", + "text": "Radioulnar synostosis with amegakaryocytic thrombocytopenia 1" + }, + { + "baseId": "29937|29938|29940|302734|302735|302736|302738|302739|302745|302746|302749|302750|302751|302756|302767|306063|306065|306072|306075|306082|306084|306086|306087|306093|310817|310833|310834|310835|310841|310854|310855|310856|311028|311036", + "text": "Bosley-Salih-Alorainy syndrome" + }, + { + "baseId": "29937|29939|302767|306082|306086|306087|310834|579319|897937|897938|897939|897940|897941|897942|897943|897944|897945|897946|897947|897948|897949|897950|897951|897952|897953|897954|897955|897956", + "text": "Human HOXA1 syndromes" + }, + { + "baseId": "29942", + "text": "Low density lipoprotein cholesterol level quantitative trait locus 3" + }, + { + "baseId": "29943", + "text": "Beryllium disease, chronic, susceptibility to" + }, + { + "baseId": "29944", + "text": "Sarcoidosis 1" + }, + { + "baseId": "29945", + "text": "Psoriasis susceptibility 1" + }, + { + "baseId": "29946", + "text": "HIV-1 viremia, susceptibility to" + }, + { + "baseId": "29947", + "text": "Ankylosing spondylitis" + }, + { + "baseId": "29947", + "text": "Synovitis, chronic, susceptibility to" + }, + { + "baseId": "29948|29950|434609", + "text": "Susceptibility to severe cutaneous adverse reaction" + }, + { + "baseId": "29948|29950", + "text": "Erythema multiforme major" + }, + { + "baseId": "29948|29950", + "text": "Toxic epidermal necrolysis" + }, + { + "baseId": "29949", + "text": "Abacavir hypersensitivity" + }, + { + "baseId": "29949", + "text": "Drug-induced liver injury due to flucloxacillin" + }, + { + "baseId": "29950", + "text": "Allopurinol response" + }, + { + "baseId": "29953|361737|434541", + "text": "Thrombophilia, histidine-rich glycoprotein-related" + }, + { + "baseId": "29954|29955|70505|359832", + "text": "Hemolytic anemia due to hexokinase deficiency" + }, + { + "baseId": "29956|29957|29961|29962|29963|29964|29965|190843|191683|191804|192986|193044|193134|194171|194241|194708|194710|195168|195830|195841|196118|196131|196393|204609|205727|237209|237393|260932|267171|267758|268045|268090|268605|268614|268614|268665|268767|269080|269081|269082|269851|269992|271761|271761|272102|273143|273305|273645|274292|274292|275268|275273|275473|278989|278990|278991|278995|278997|278998|278999|279004|279005|279012|279020|279064|279065|279067|279072|279075|279077|279079|279080|279084|279085|279094|279104|279106|279107|279109|279113|279125|279126|279127|279131|279135|279137|279139|279144|279145|279146|279147|279152|279154|279155|279156|279160|279161|279164|279165|279166|279169|279173|279175|279179|279180|279181|279188|279189|279194|279195|279196|279200|279202|279210|279212|279213|279219|279221|279225|279226|279229|279231|279233|279234|279235|279236|279237|279241|279242|279243|279244|279246|279249|279250|279254|279256|279257|279274|279275|279298|279314|279333|279337|279345|279346|279351|279354|279367|279378|279386|279387|279388|279391|279401|279407|279411|279412|279413|279415|279434|279436|279442|279443|279444|279446|279454|279457|279458|279461|279467|279469|280426|280431|280433|280435|280437|280438|280439|280440|280441|280442|280443|280447|280452|280453|280457|280461|280462|280464|280465|280470|280488|280489|280490|280492|280493|280493|280496|280497|280499|280512|280514|280515|280517|280518|280520|280524|280536|280547|280549|280550|280551|280554|280555|280557|280558|280559|280575|280595|280597|280605|280606|280616|280617|280623|280631|280632|280637|280638|280639|280640|280642|280645|280647|280648|280649|280654|280661|280664|280665|280666|280667|280670|280671|280672|280673|280674|280675|280677|280679|280680|280681|280682|280686|280687|280688|280690|280693|280697|280698|280699|280705|280709|280710|280711|280718|280719|280722|280723|280724|280733|280741|280757|280758|280760|280762|280763|280764|280765|280769|280771|280772|280773|280773|280776|280778|280779|280780|280781|280796|280817|280818|280819|363681|433624|433625|439325|440448|440451|440472|440475|440478|440480|440484|489141|490068|490867|491193|513504|538945|553372|553373|576483|576495|576497|576498|576513|578376|584808|585422|587066|609378|609387|609390|612255|696465|696467|696468|696471|707091|707092|707093|707094|707095|707097|732132|732136|732139|732151|743751|746131|746135|746138|746140|746150|746155|746156|761642|774463|787045|789106|789932|789933|792869|794580|799180|823470|863556|863557|863558|863559|863560|863561|863562|863563|863564|863565|863566|863567|863568|863569|863570|863571|863572|863573|863574|863575|863576|863577|863578|863579|863580|863581|863582|863583|863584|863585|863586|863587|863588|863589|863590|863591|863600|863601|863602|863603|863604|863605|863606|863607|863608|863609|863610|863611|863612|863613|863614|863615|863616|863617|863620|863640|863641|863642|863643|863644|863645|863646|863647|863648|863649|863650|863651|863652|863653|863654|863655|863656|863657|863658|863659|863660|863661|863662|863663|863664|863665|863666|863667|863668|863669|863670|863671|863672|863673|863674|863675|863676|863677|863678|863679|863680|863681|863682|863683|863684|863685|863686|863687|863688|863689|863690|863691|863692|863693|863694|863695|863696|863697|863698|863699|863700|863701|865111|865112|865113|865114|865115|865119|865120|865121|865122|865123|865124|865125|865126|903504|903505|961040|970196", + "text": "Schwartz-Jampel syndrome" + }, + { + "baseId": "29958|29959|29960|190843|191683|191804|193044|193134|194171|194241|194708|194710|195168|195830|195841|196118|196131|196393|204609|205727|237209|237393|267171|267758|268045|268090|268605|268614|268614|268665|268767|269080|269081|269082|269851|269992|271761|271761|272102|273143|273305|273645|274292|274292|275268|275273|275473|278989|278990|278991|278995|278997|278998|278999|279004|279005|279012|279020|279064|279065|279067|279072|279075|279077|279079|279080|279084|279085|279094|279104|279106|279107|279109|279113|279125|279126|279127|279131|279135|279137|279139|279144|279145|279146|279147|279152|279154|279155|279156|279160|279161|279164|279165|279166|279169|279173|279175|279179|279180|279181|279188|279189|279194|279195|279196|279200|279202|279210|279212|279213|279219|279221|279225|279226|279229|279231|279233|279234|279235|279236|279237|279241|279242|279243|279244|279246|279249|279250|279254|279256|279257|279274|279275|279298|279314|279333|279337|279345|279346|279351|279354|279367|279378|279386|279387|279388|279391|279401|279407|279411|279412|279413|279415|279434|279436|279442|279443|279444|279446|279454|279457|279458|279461|279467|279469|280426|280431|280433|280435|280437|280438|280439|280440|280441|280442|280443|280447|280452|280453|280457|280461|280462|280464|280465|280470|280488|280489|280490|280492|280493|280493|280496|280497|280499|280512|280514|280515|280517|280518|280520|280524|280536|280547|280549|280550|280551|280554|280555|280557|280558|280559|280575|280595|280597|280605|280606|280616|280617|280623|280631|280632|280637|280638|280639|280640|280642|280645|280647|280648|280649|280654|280661|280664|280665|280666|280667|280670|280671|280672|280673|280674|280675|280677|280679|280680|280681|280682|280686|280687|280688|280690|280693|280697|280698|280699|280705|280709|280710|280711|280718|280719|280722|280723|280724|280733|280741|280757|280758|280760|280762|280763|280764|280765|280769|280771|280772|280773|280773|280776|280778|280779|280780|280781|280796|280817|280818|280819|363681|433624|433625|439325|440448|440451|440472|440475|440478|440480|440484|489141|490068|490867|538945|576495|576497|576498|576513|578376|584808|585422|587066|609378|609387|609390|612254|696465|696467|696468|696471|707091|707092|707093|707094|707095|707097|732132|732136|732139|732151|743751|746131|746135|746138|746140|746150|746155|746156|761642|774463|787045|789360|792869|794580|799180|823470|863556|863557|863558|863559|863560|863561|863562|863563|863564|863565|863566|863567|863568|863569|863570|863571|863572|863573|863574|863575|863576|863577|863578|863579|863580|863581|863582|863583|863584|863585|863586|863587|863588|863589|863590|863591|863600|863601|863602|863603|863604|863605|863606|863607|863608|863609|863610|863611|863612|863613|863614|863615|863616|863617|863620|863640|863641|863642|863643|863644|863645|863646|863647|863648|863649|863650|863651|863652|863653|863654|863655|863656|863657|863658|863659|863660|863661|863662|863663|863664|863665|863666|863667|863668|863669|863670|863671|863672|863673|863674|863675|863676|863677|863678|863679|863680|863681|863682|863683|863684|863685|863686|863687|863688|863689|863690|863691|863692|863693|863694|863695|863696|863697|863698|863699|863700|863701|865111|865112|865113|865114|865115|865119|865120|865121|865122|865123|865124|865125|865126|918610|918611|920135|920136", + "text": "Lethal Kniest-like syndrome" + }, + { + "baseId": "29966|29967|29968|29969|29971|29972|29974|29975|29976|29978|29979|29980|29981|29982|29983|29984|29985|29986|29987|45456|45457|45458|45459|45460|45461|45462|45463|45464|45465|45466|45467|45468|45469|45470|45471|45472|45473|45474|45475|45476|45477|45478|45480|45481|45482|45483|45484|45485|45486|45487|45488|45489|45490|45491|45492|45493|45494|45495|45496|134673|134675|134676|134677|134678|134679|134680|134682|138249|138250|138251|139383|254435|316185|316196|316197|323468|323469|323471|323495|323496|323500|323503|323505|323513|323516|329688|329692|329693|329694|330911|330919|330926|330935|330940|360075|424382|425956|429373|429376|429377|429378|429379|429380|429381|429384|432308|441509|441528|513098|553557|553650|576265|577242|577251|577254|589203|609053|609054|684306|791199|791200|869395|869396|869397|869398|869399|869400|869401|869402|869403|869404|869405|869406|869407|869408|869409|869410|869411|869412|869413|920313|961079|961080|961081|961082|961083|961084|961085|961086|961087|961088|961089|961090|961091|961092|961093|961094|961095|961096|961097|961098|961099|961100|961101|961102|961103|964379|967194|967195", + "text": "Maturity-onset diabetes of the young, type 3" + }, + { + "baseId": "29966", + "text": "Hepatic adenomas, familial" + }, + { + "baseId": "29966|134681|263530|980491", + "text": "Diabetes mellitus type 1" + }, + { + "baseId": "29966|29970|29971|29977|970953", + "text": "Diabetes mellitus, insulin-dependent, 20" + }, + { + "baseId": "29976", + "text": "SERUM HDL CHOLESTEROL LEVEL, MODIFIER OF" + }, + { + "baseId": "29988|29989|29990|52775|52776|174255|174256", + "text": "Deafness, autosomal recessive 39" + }, + { + "baseId": "29991|29992|29993|29994|919943", + "text": "Heparin cofactor II deficiency" + }, + { + "baseId": "29996", + "text": "HEMOGLOBIN F (ALBAICIN)" + }, + { + "baseId": "29997", + "text": "HEMOGLOBIN F (AUCKLAND)" + }, + { + "baseId": "29998", + "text": "HEMOGLOBIN F (CALTECH)" + }, + { + "baseId": "29999", + "text": "HEMOGLOBIN F (CARLTON)" + }, + { + "baseId": "30000", + "text": "HEMOGLOBIN F (CLARKE)" + }, + { + "baseId": "30001", + "text": "HEMOGLOBIN F (COLUMBUS-GA)" + }, + { + "baseId": "30002", + "text": "HEMOGLOBIN F (FUCHU)" + }, + { + "baseId": "30003", + "text": "HEMOGLOBIN F (HEATHER)" + }, + { + "baseId": "30004", + "text": "HEMOGLOBIN F (KENNESTONE)" + }, + { + "baseId": "30005", + "text": "HEMOGLOBIN F (KINGSTON)" + }, + { + "baseId": "30006", + "text": "HEMOGLOBIN F (LA GRANGE)" + }, + { + "baseId": "30007", + "text": "HEMOGLOBIN F (LODZ)" + }, + { + "baseId": "30008", + "text": "HEMOGLOBIN F (MALAYSIA)" + }, + { + "baseId": "30009", + "text": "HEMOGLOBIN F (MALTA)" + }, + { + "baseId": "30010", + "text": "HEMOGLOBIN F (MARIETTA)" + }, + { + "baseId": "30011", + "text": "HEMOGLOBIN F (MEINOHAMA)" + }, + { + "baseId": "30012", + "text": "HEMOGLOBIN F (MELBOURNE)" + }, + { + "baseId": "30013", + "text": "HEMOGLOBIN F (MINOO)" + }, + { + "baseId": "30014", + "text": "HEMOGLOBIN F (OAKLAND)" + }, + { + "baseId": "30015", + "text": "HEMOGLOBIN F (POOLE)" + }, + { + "baseId": "30016", + "text": "HEMOGLOBIN F (PORT ROYAL)" + }, + { + "baseId": "30017", + "text": "HEMOGLOBIN F (SHANGHAI)" + }, + { + "baseId": "30018", + "text": "HEMOGLOBIN F (TOKYO)" + }, + { + "baseId": "30019", + "text": "HEMOGLOBIN F (URUMQI)" + }, + { + "baseId": "30020|30028|30035|38707|38708|789092", + "text": "Cyanosis, transient neonatal" + }, + { + "baseId": "30021|30022|30023|30029|30040|30069|30070|30072|30073|30074|30079|30109|30177|30177|30191|30228|30372|30456|30489|30493|38706|38709|44955|44986|44991|190271|314320|314322|320911|320913|320919|326999|328030|328037|328057|432683|433086|433087|868119|868120|868121|868123|868124|868125|868126|868127|868128", + "text": "Fetal hemoglobin quantitative trait locus 1" + }, + { + "baseId": "30024", + "text": "HEMOGLOBIN F (GRANADA)" + }, + { + "baseId": "30025", + "text": "HEMOGLOBIN F (AUSTELL)" + }, + { + "baseId": "30026", + "text": "HEMOGLOBIN F (BROOKLYN)" + }, + { + "baseId": "30027", + "text": "HEMOGLOBIN F (ONODA)" + }, + { + "baseId": "30030", + "text": "HEMOGLOBIN F (CATALONIA)" + }, + { + "baseId": "30031", + "text": "HEMOGLOBIN F (COSENZA)" + }, + { + "baseId": "30032", + "text": "HEMOGLOBIN F (SACROMONTE)" + }, + { + "baseId": "30033", + "text": "HEMOGLOBIN F (WAYNESBORO)" + }, + { + "baseId": "30033", + "text": "HEMOGLOBIN F (LESVOS)" + }, + { + "baseId": "30034", + "text": "HEMOGLOBIN F (MACEDONIA II)" + }, + { + "baseId": "30036", + "text": "HEMOGLOBIN F (EMIRATES)" + }, + { + "baseId": "30038", + "text": "HEMOGLOBIN F (VELETA)" + }, + { + "baseId": "30041", + "text": "HEMOGLOBIN F (CALABRIA)" + }, + { + "baseId": "30042", + "text": "HEMOGLOBIN F (CLAMART)" + }, + { + "baseId": "30043", + "text": "HEMOGLOBIN F (OULED RABAH)" + }, + { + "baseId": "30044", + "text": "HBG1 POLYMORPHISM" + }, + { + "baseId": "30044", + "text": "HEMOGLOBIN F (SARDINIA)" + }, + { + "baseId": "30045", + "text": "HEMOGLOBIN F (BASKENT)" + }, + { + "baseId": "30046", + "text": "HEMOGLOBIN F (BEECH ISLAND)" + }, + { + "baseId": "30047", + "text": "HEMOGLOBIN F (BONAIRE)" + }, + { + "baseId": "30048", + "text": "HEMOGLOBIN F (CALLUNA)" + }, + { + "baseId": "30049", + "text": "HEMOGLOBIN F (COBB)" + }, + { + "baseId": "30050", + "text": "HEMOGLOBIN F (DAMMAM)" + }, + { + "baseId": "30051", + "text": "HEMOGLOBIN F (DICKINSON)" + }, + { + "baseId": "30052", + "text": "HEMOGLOBIN F (FOREST PARK)" + }, + { + "baseId": "30053", + "text": "HEMOGLOBIN F (FUKUYAMA)" + }, + { + "baseId": "30054", + "text": "HEMOGLOBIN F (IWATA)" + }, + { + "baseId": "30055", + "text": "HEMOGLOBIN F (IZUMI)" + }, + { + "baseId": "30055", + "text": "HEMOGLOBIN F (KOTOBUKI)" + }, + { + "baseId": "30056", + "text": "HEMOGLOBIN F (JAMAICA)" + }, + { + "baseId": "30058", + "text": "HEMOGLOBIN F (KUALA LUMPUR)" + }, + { + "baseId": "30059", + "text": "HEMOGLOBIN F (PENDERGRASS)" + }, + { + "baseId": "30060", + "text": "HEMOGLOBIN F (PORDENONE)" + }, + { + "baseId": "30062", + "text": "HEMOGLOBIN F (SIENA)" + }, + { + "baseId": "30062", + "text": "HEMOGLOBIN F (HULL)" + }, + { + "baseId": "30063", + "text": "HEMOGLOBIN F (TEXAS I)" + }, + { + "baseId": "30064", + "text": "HEMOGLOBIN F (VICTORIA JUBILEE)" + }, + { + "baseId": "30065", + "text": "HEMOGLOBIN F (XINJIANG)" + }, + { + "baseId": "30066", + "text": "HEMOGLOBIN F (XIN-SU)" + }, + { + "baseId": "30067", + "text": "HEMOGLOBIN F (YAMAGUCHI)" + }, + { + "baseId": "30068", + "text": "HEMOGLOBIN KENYA" + }, + { + "baseId": "30069", + "text": "Sardinian HPFH" + }, + { + "baseId": "30069", + "text": "Greek HPFH" + }, + { + "baseId": "30070", + "text": "British HPFH" + }, + { + "baseId": "30071", + "text": "HEMOGLOBIN F (JIANGSU)" + }, + { + "baseId": "30076", + "text": "HEMOGLOBIN F (WOODSTOCK)" + }, + { + "baseId": "30077", + "text": "Fetal hemoglobin, a-gamma type, reduction in" + }, + { + "baseId": "30078", + "text": "HEMOGLOBIN F (MACEDONIA-I)" + }, + { + "baseId": "30081", + "text": "HEMOGLOBIN A(2)-PRIME" + }, + { + "baseId": "30081", + "text": "HEMOGLOBIN B(2)" + }, + { + "baseId": "30082", + "text": "HEMOGLOBIN A(2) ADRIA" + }, + { + "baseId": "30083", + "text": "HEMOGLOBIN A(2) BABINGA" + }, + { + "baseId": "30084", + "text": "HEMOGLOBIN A(2) CANADA" + }, + { + "baseId": "30085", + "text": "HEMOGLOBIN A(2) COBURG" + }, + { + "baseId": "30086", + "text": "HEMOGLOBIN A(2) FITZROY" + }, + { + "baseId": "30087", + "text": "HEMOGLOBIN A(2) FLATBUSH" + }, + { + "baseId": "30087", + "text": "HEMOGLOBIN FLATBUSH (GEORGIA)" + }, + { + "baseId": "30088", + "text": "HEMOGLOBIN A(2) HONAI" + }, + { + "baseId": "30089", + "text": "HEMOGLOBIN A(2) INDONESIA" + }, + { + "baseId": "30090", + "text": "HEMOGLOBIN A(2) MANZANARES" + }, + { + "baseId": "30091", + "text": "HEMOGLOBIN A(2) MELBOURNE" + }, + { + "baseId": "30092", + "text": "HEMOGLOBIN A(2) NYU" + }, + { + "baseId": "30092", + "text": "HEMOGLOBIN NYU" + }, + { + "baseId": "30093", + "text": "HEMOGLOBIN A(2) ROOSEVELT" + }, + { + "baseId": "30094", + "text": "HEMOGLOBIN A(2) SPHAKIA" + }, + { + "baseId": "30095", + "text": "HEMOGLOBIN A(2) VICTORIA" + }, + { + "baseId": "30096", + "text": "HEMOGLOBIN A(2) WRENS" + }, + { + "baseId": "30097", + "text": "HEMOGLOBIN A(2) YOKOSHIMA" + }, + { + "baseId": "30098", + "text": "HEMOGLOBIN A(2) ZAGREB" + }, + { + "baseId": "30099|30100|30102", + "text": "Hemoglobin Lepore trait" + }, + { + "baseId": "30100|30717", + "text": "Abnormal hemoglobin" + }, + { + "baseId": "30100", + "text": "Reduced beta/alpha synthesis ratio" + }, + { + "baseId": "30100", + "text": "Persistence of hemoglobin F" + }, + { + "baseId": "30100|30441|30663|30669|30671|30675|30682|30683|30684|30692|30707|30725|30726|30763|30772|30832|30837|30842|30904|30914|30931|47238|47240|47241|264908|362628|362629|362630|362633|362634|362638|362639|390135|427127|432842|432844|432860|432863|432864|432865|432866|432873|433150|433152|433154|480507|480508|609943|614132|614133|623322|739999|789593|792575|799847|799853|799854|816416|857543|857544|857545|857546|857547|857548|857549|857550|857551|857573|857574|857575|857576|857577|903608|979760|979761|979762|983498|983499|983500", + "text": "alpha Thalassemia" + }, + { + "baseId": "30101", + "text": "HEMOGLOBIN A(2) PELENDRI" + }, + { + "baseId": "30103", + "text": "HEMOGLOBIN PARCHMAN" + }, + { + "baseId": "30104", + "text": "Delta-zero-thalassemia, knossos type" + }, + { + "baseId": "30105", + "text": "HEMOGLOBIN A(2) CORFU" + }, + { + "baseId": "30105", + "text": "HEMOGLOBIN A(2) TROODOS" + }, + { + "baseId": "30106", + "text": "HEMOGLOBIN A(2) PARKVILLE" + }, + { + "baseId": "30107|30109|30110|30111|30112|30113|30123|30124|620405", + "text": "delta Thalassemia" + }, + { + "baseId": "30108", + "text": "HEMOGLOBIN A(2) NIIGATA" + }, + { + "baseId": "30109", + "text": "HEMOGLOBIN A(2) YIALOUSA" + }, + { + "baseId": "30113", + "text": "HEMOGLOBIN A(2) GROVETOWN" + }, + { + "baseId": "30114", + "text": "HEMOGLOBIN A(2) PUGLIA" + }, + { + "baseId": "30115", + "text": "Delta-0-thalassemia" + }, + { + "baseId": "30116", + "text": "HEMOGLOBIN A(2) SANT' ANTIOCO" + }, + { + "baseId": "30117", + "text": "HEMOGLOBIN A(2) AGRINIO" + }, + { + "baseId": "30118", + "text": "HEMOGLOBIN A(2) MONREALE" + }, + { + "baseId": "30119", + "text": "HEMOGLOBIN A(2) METAPONTO" + }, + { + "baseId": "30120", + "text": "HEMOGLOBIN A(2) CAMPANIA" + }, + { + "baseId": "30121", + "text": "HEMOGLOBIN A(2) LUCANIA" + }, + { + "baseId": "30122", + "text": "HEMOGLOBIN A(2) CAPRI" + }, + { + "baseId": "30125", + "text": "HEMOGLOBIN A(2) NINIVE" + }, + { + "baseId": "30126", + "text": "Delta-plus-thalassemia" + }, + { + "baseId": "30128", + "text": "HEMOGLOBIN AALBORG" + }, + { + "baseId": "30129", + "text": "HEMOGLOBIN ABRUZZO" + }, + { + "baseId": "30130", + "text": "HEMOGLOBIN AGENOGI" + }, + { + "baseId": "30131", + "text": "HEMOGLOBIN ALABAMA" + }, + { + "baseId": "30132", + "text": "HEMOGLOBIN ALAMO" + }, + { + "baseId": "30133", + "text": "HEMOGLOBIN ALBERTA" + }, + { + "baseId": "30133|30135|30143|30151|30155|30156|30157|30173|30183|30186|30231|30232|30239|30243|30275|30289|30298|30304|30333|30339|30340|30345|30351|30354|30356|30358|30360|30361|30378|30381|30404|30419|30422|30429|30430|30434|30436|30617|906174", + "text": "Erythrocytosis 6, familial" + }, + { + "baseId": "30134", + "text": "HEMOGLOBIN ALTDORF" + }, + { + "baseId": "30135", + "text": "HEMOGLOBIN ANDREW-MINNEAPOLIS" + }, + { + "baseId": "30136", + "text": "HEMOGLOBIN ANKARA" + }, + { + "baseId": "30138", + "text": "HEMOGLOBIN ATHENS-GEORGIA" + }, + { + "baseId": "30139", + "text": "HEMOGLOBIN ATLANTA" + }, + { + "baseId": "30139", + "text": "HEMOGLOBIN ATLANTA-COVENTRY" + }, + { + "baseId": "30141", + "text": "HEMOGLOBIN AUSTIN" + }, + { + "baseId": "30142", + "text": "HEMOGLOBIN AVICENNA" + }, + { + "baseId": "30143", + "text": "HEMOGLOBIN BARCELONA" + }, + { + "baseId": "30144", + "text": "HEMOGLOBIN BAYLOR" + }, + { + "baseId": "30145", + "text": "HEMOGLOBIN BEIRUT" + }, + { + "baseId": "30146", + "text": "HEMOGLOBIN BELFAST" + }, + { + "baseId": "30147", + "text": "HEMOGLOBIN BORAS" + }, + { + "baseId": "30148", + "text": "HEMOGLOBIN BOUGARDIREY-MALI" + }, + { + "baseId": "30149", + "text": "HEMOGLOBIN BEOGRAD" + }, + { + "baseId": "30149", + "text": "HEMOGLOBIN D (CAMPERDOWN)" + }, + { + "baseId": "30150", + "text": "HEMOGLOBIN BETH ISRAEL" + }, + { + "baseId": "30151", + "text": "HEMOGLOBIN BETHESDA" + }, + { + "baseId": "30152", + "text": "HEMOGLOBIN BICETRE" + }, + { + "baseId": "30153", + "text": "HEMOGLOBIN BOLOGNA" + }, + { + "baseId": "30154", + "text": "HEMOGLOBIN BREST" + }, + { + "baseId": "30155", + "text": "HEMOGLOBIN BRIGHAM" + }, + { + "baseId": "30156", + "text": "HEMOGLOBIN BRISBANE" + }, + { + "baseId": "30156", + "text": "HEMOGLOBIN GREAT LAKES" + }, + { + "baseId": "30157", + "text": "HEMOGLOBIN BRITISH COLUMBIA" + }, + { + "baseId": "30158", + "text": "HEMOGLOBIN BROCKTON" + }, + { + "baseId": "30160|30161|30205|30245|30277|30278|30280|30325|30329|30437|30444|30445|30453|30462|30465|30470|30471|30499|30512|30522|30527|30533|30565|38470|44949|44951|47255|47264|380592|380595|380597|432695|432704|546034|546666|590730|611095|621358|621360|621361|917086|983932", + "text": "Hemoglobinopathy" + }, + { + "baseId": "30160|30229|30246|30280|30400|30407|30694|30867", + "text": "Heinz body anemia" + }, + { + "baseId": "30162", + "text": "HEMOGLOBIN BUNBURY" + }, + { + "baseId": "30163", + "text": "HEMOGLOBIN BURKE" + }, + { + "baseId": "30164", + "text": "HEMOGLOBIN BUSHWICK" + }, + { + "baseId": "30165", + "text": "HEMOGLOBIN C" + }, + { + "baseId": "30165|30177|30177|30191|30200|30228|30241|30273|30278|30284|30331|30372|30391|30440|30441|30442|30443|30445|30452|30456|30457|30461|30470|30471|30473|30475|30476|30477|30486|30489|30493|30496|30497|30498|30509|30510|34043|44945|44951|44955|44972|44986|44991|44996|190271|320911|328030|432683|433086|433087|546448|868119|868120|868121", + "text": "Hb SS disease" + }, + { + "baseId": "30165|30177|30177|30191|30200|30210|30228|30236|30241|30263|30273|30278|30295|30297|30331|30341|30372|30381|30391|30394|30424|30440|30441|30442|30443|30444|30445|30446|30447|30452|30453|30454|30456|30457|30458|30459|30461|30462|30463|30465|30466|30468|30470|30471|30472|30473|30475|30476|30477|30480|30481|30484|30485|30486|30487|30488|30489|30490|30492|30493|30496|30497|30498|30499|30500|30501|30503|30504|30505|30506|30508|30509|30510|30512|30522|30524|30527|30528|30531|30543|30545|30547|30551|30553|30554|30558|30576|30590|30599|30601|30602|34042|34043|44945|44946|44948|44949|44951|44954|44955|44956|44958|44962|44965|44966|44967|44969|44970|44972|44973|44974|44975|44976|44977|44978|44979|44980|44984|44986|44991|44993|44995|44996|44998|45001|45004|45005|47251|47252|47255|47264|47272|47276|47287|47306|47307|75268|186822|190271|254202|254205|254206|260797|320911|328030|380592|380593|380594|380595|380596|380597|380598|380599|432675|432677|432681|432683|432687|432690|432692|432694|432695|432704|432705|433082|433083|433084|433086|433087|433088|487421|487444|487446|487504|487518|487527|487534|487561|487562|546034|546035|546317|546448|546662|546666|581709|581827|581920|611303|611304|611306|621353|621362|621817|621818|685287|690005|787983|789684|789685|818290|838557|857427|857428|857429|857430|857431|857432|857433|857435|857436|857437|857438|857439|857440|857441|857442|857443|857444|857445|857446|857447|857448|857449|857450|857451|857452|857453|857454|857455|857456|857457|857458|857459|857460|857461|857462|857463|857464|857465|857466|857467|857468|857469|857470|857471|857472|857473|857474|857475|857476|857477|857478|857479|857480|857481|857482|857483|857484|857485|857486|857487|857488|857489|857490|857491|857492|857493|857494|857495|857496|857497|857498|857499|857500|857501|857502|857503|857504|857505|857506|857507|857508|857509|857510|857511|857512|857513|857514|857515|857516|857517|857518|857519|857520|857521|857522|857523|857525|857526|857527|857528|857529|857530|857531|857532|857533|857534|857535|857536|857537|857538|857539|857540|857541|857542|857552|857553|857555|857557|857558|857559|857560|857561|857563|857564|857565|857566|857567|857568|857569|857570|857571|857572|868119|868120|868121|970074|972531|979011|979012|983496|983497", + "text": "beta Thalassemia" + }, + { + "baseId": "30168", + "text": "HEMOGLOBIN CAMDEN" + }, + { + "baseId": "30168", + "text": "HEMOGLOBIN MOTOWN" + }, + { + "baseId": "30168", + "text": "HEMOGLOBIN TOKUCHI" + }, + { + "baseId": "30169", + "text": "HEMOGLOBIN CAMPERDOWN" + }, + { + "baseId": "30170", + "text": "HEMOGLOBIN CARIBBEAN" + }, + { + "baseId": "30171", + "text": "HEMOGLOBIN CASTILLA" + }, + { + "baseId": "30172", + "text": "HEMOGLOBIN CHANDIGARH" + }, + { + "baseId": "30173", + "text": "HEMOGLOBIN CHEMILLY" + }, + { + "baseId": "30174", + "text": "HEMOGLOBIN CHEVERLY" + }, + { + "baseId": "30175", + "text": "HEMOGLOBIN CHICO" + }, + { + "baseId": "30176", + "text": "HEMOGLOBIN CHRISTCHURCH" + }, + { + "baseId": "30177", + "text": "HEMOGLOBIN CITY OF HOPE" + }, + { + "baseId": "30177|30443|30648|44966", + "text": "Beta-thalassemia, dominant inclusion body type" + }, + { + "baseId": "30177|30191|30200|30228|30372|30489|44955|44986|44991|190271|320911|328030|432683|433086|433087|868119|868120|868121", + "text": "Hemoglobin E" + }, + { + "baseId": "30178", + "text": "HEMOGLOBIN COCHIN-PORT ROYAL" + }, + { + "baseId": "30179", + "text": "HEMOGLOBIN COCODY" + }, + { + "baseId": "30180", + "text": "HEMOGLOBIN COLLINGWOOD" + }, + { + "baseId": "30181", + "text": "HEMOGLOBIN CONNECTICUT" + }, + { + "baseId": "30182", + "text": "HEMOGLOBIN COVENTRY" + }, + { + "baseId": "30183", + "text": "HEMOGLOBIN COWTOWN" + }, + { + "baseId": "30184", + "text": "HEMOGLOBIN CRANSTON" + }, + { + "baseId": "30185", + "text": "HEMOGLOBIN CRETE" + }, + { + "baseId": "30186", + "text": "HEMOGLOBIN CRETEIL" + }, + { + "baseId": "30187", + "text": "HEMOGLOBIN D (BUSHMAN)" + }, + { + "baseId": "30188", + "text": "HEMOGLOBIN D (GRANADA)" + }, + { + "baseId": "30189", + "text": "HEMOGLOBIN D (IBADAN)" + }, + { + "baseId": "30190", + "text": "HEMOGLOBIN D (IRAN)" + }, + { + "baseId": "30191", + "text": "Hb D-Los Angeles" + }, + { + "baseId": "30191|44972", + "text": "HBB-Related Disorders" + }, + { + "baseId": "30191", + "text": "Hemoglobin D disease" + }, + { + "baseId": "30192", + "text": "HEMOGLOBIN D (OULED RABAH)" + }, + { + "baseId": "30193|30194|30200|30278|30297|30391|30449|30450|30486|30487|30488|30489|30490|30492|30493|30496|30498|30499|30500|30501|30503|30504|30505|30506|30508|30509|30510|30512|30513|30514|30515|30516|30526|30527|30531|30545|30553|30625|30655|44976|44996|45005|380597|857535", + "text": "Beta-plus-thalassemia" + }, + { + "baseId": "30195", + "text": "HEMOGLOBIN DEER LODGE" + }, + { + "baseId": "30196", + "text": "HEMOGLOBIN DETROIT" + }, + { + "baseId": "30197", + "text": "HEMOGLOBIN DJELFA" + }, + { + "baseId": "30198", + "text": "HEMOGLOBIN DOHA" + }, + { + "baseId": "30199", + "text": "HEMOGLOBIN DUARTE" + }, + { + "baseId": "30200", + "text": "Hemoglobin E/beta thalassemia disease" + }, + { + "baseId": "30200", + "text": "Hemoglobin E disease" + }, + { + "baseId": "30201", + "text": "HEMOGLOBIN E (SASKATOON)" + }, + { + "baseId": "30202", + "text": "HEMOGLOBIN EDMONTON" + }, + { + "baseId": "30203", + "text": "HEMOGLOBIN EXTREMADURA" + }, + { + "baseId": "30206", + "text": "HEMOGLOBIN FUKUOKA" + }, + { + "baseId": "30207", + "text": "HEMOGLOBIN FUKUYAMA" + }, + { + "baseId": "30208", + "text": "HEMOGLOBIN G (ACCRA)" + }, + { + "baseId": "30208", + "text": "HEMOGLOBIN YAIZU" + }, + { + "baseId": "30209", + "text": "HEMOGLOBIN G (COPENHAGEN)" + }, + { + "baseId": "30210", + "text": "HEMOGLOBIN G (COUSHATTA)" + }, + { + "baseId": "30210", + "text": "HEMOGLOBIN G (SASKATOON)" + }, + { + "baseId": "30210", + "text": "HEMOGLOBIN G (HSIN-CHU)" + }, + { + "baseId": "30210", + "text": "HEMOGLOBIN G (TAEGU)" + }, + { + "baseId": "30211", + "text": "HEMOGLOBIN G (FERRARA)" + }, + { + "baseId": "30212", + "text": "HEMOGLOBIN G (GALVESTON)" + }, + { + "baseId": "30212", + "text": "HEMOGLOBIN G (PORT ARTHUR)" + }, + { + "baseId": "30212", + "text": "HEMOGLOBIN G (TEXAS)" + }, + { + "baseId": "30213", + "text": "HEMOGLOBIN G (HSI-TSOU)" + }, + { + "baseId": "30214", + "text": "HEMOGLOBIN G (MAKASSAR)" + }, + { + "baseId": "30215", + "text": "HEMOGLOBIN G (SAN JOSE)" + }, + { + "baseId": "30216", + "text": "HEMOGLOBIN G (SZUHU)" + }, + { + "baseId": "30216", + "text": "HEMOGLOBIN GIFU" + }, + { + "baseId": "30217", + "text": "HEMOGLOBIN G (TAIPEI)" + }, + { + "baseId": "30218", + "text": "HEMOGLOBIN G (TAIWAN-AMI)" + }, + { + "baseId": "30219", + "text": "HEMOGLOBIN GAINESVILLE-GA" + }, + { + "baseId": "30220", + "text": "HEMOGLOBIN GAVELLO" + }, + { + "baseId": "30221", + "text": "HEMOGLOBIN GEELONG" + }, + { + "baseId": "30221", + "text": "HEMOGLOBIN JINAN" + }, + { + "baseId": "30222", + "text": "HEMOGLOBIN GENOVA" + }, + { + "baseId": "30222", + "text": "HEMOGLOBIN HYOGO" + }, + { + "baseId": "30223", + "text": "HEMOGLOBIN GRANGE-BLANCHE" + }, + { + "baseId": "30224", + "text": "HEMOGLOBIN GUN HILL" + }, + { + "baseId": "30225", + "text": "HEMOGLOBIN HACETTEPE" + }, + { + "baseId": "30225", + "text": "HEMOGLOBIN COMPLUTENSE" + }, + { + "baseId": "30226", + "text": "HEMOGLOBIN HAFNIA" + }, + { + "baseId": "30227", + "text": "HEMOGLOBIN HAMADAN" + }, + { + "baseId": "30228", + "text": "HEMOGLOBIN HAMILTON" + }, + { + "baseId": "30229", + "text": "HEMOGLOBIN HAMMERSMITH" + }, + { + "baseId": "30229", + "text": "HEMOGLOBIN CHIBA" + }, + { + "baseId": "30230", + "text": "HEMOGLOBIN HAZEBROUCK" + }, + { + "baseId": "30231", + "text": "HEMOGLOBIN HEATHROW" + }, + { + "baseId": "30232", + "text": "HEMOGLOBIN HELSINKI" + }, + { + "baseId": "30233", + "text": "HEMOGLOBIN HENRI MONDOR" + }, + { + "baseId": "30234", + "text": "HEMOGLOBIN HIJIYAMA" + }, + { + "baseId": "30235", + "text": "HEMOGLOBIN HIKARI" + }, + { + "baseId": "30236", + "text": "HEMOGLOBIN HIMEJI" + }, + { + "baseId": "30237", + "text": "HEMOGLOBIN HINSDALE" + }, + { + "baseId": "30238", + "text": "HEMOGLOBIN HIROSE" + }, + { + "baseId": "30239", + "text": "HEMOGLOBIN HIROSHIMA" + }, + { + "baseId": "30240", + "text": "HEMOGLOBIN HOFU" + }, + { + "baseId": "30243", + "text": "HEMOGLOBIN HOTEL-DIEU" + }, + { + "baseId": "30244", + "text": "HEMOGLOBIN I (HIGH WYCOMBE)" + }, + { + "baseId": "30246", + "text": "HEMOGLOBIN INDIANAPOLIS" + }, + { + "baseId": "30247", + "text": "HEMOGLOBIN SAINT ETIENNE" + }, + { + "baseId": "30248", + "text": "HEMOGLOBIN J (ALTGELD GARDENS)" + }, + { + "baseId": "30249", + "text": "HEMOGLOBIN J (AMIENS)" + }, + { + "baseId": "30250", + "text": "HEMOGLOBIN J (ANTAKYA)" + }, + { + "baseId": "30251", + "text": "HEMOGLOBIN J (AUCKLAND)" + }, + { + "baseId": "30252", + "text": "HEMOGLOBIN J (BALTIMORE)" + }, + { + "baseId": "30254", + "text": "HEMOGLOBIN J (CAIRO)" + }, + { + "baseId": "30255", + "text": "HEMOGLOBIN J (CALABRIA)" + }, + { + "baseId": "30255", + "text": "HEMOGLOBIN J (COSENZA)" + }, + { + "baseId": "30255", + "text": "HEMOGLOBIN J (BARI)" + }, + { + "baseId": "30256", + "text": "HEMOGLOBIN J (CHICAGO)" + }, + { + "baseId": "30257", + "text": "HEMOGLOBIN J (CORDOBA)" + }, + { + "baseId": "30258", + "text": "HEMOGLOBIN J (DALOA)" + }, + { + "baseId": "30259", + "text": "HEMOGLOBIN J (GUANTANAMO)" + }, + { + "baseId": "30260", + "text": "HEMOGLOBIN J (IRAN)" + }, + { + "baseId": "30262", + "text": "HEMOGLOBIN J (LENS)" + }, + { + "baseId": "30263", + "text": "HEMOGLOBIN J (LOME)" + }, + { + "baseId": "30264", + "text": "HEMOGLOBIN J (LUHE)" + }, + { + "baseId": "30266", + "text": "HEMOGLOBIN J (SICILIA)" + }, + { + "baseId": "30267", + "text": "HEMOGLOBIN J (TAICHUNG)" + }, + { + "baseId": "30267", + "text": "HEMOGLOBIN K (CAMEROON)" + }, + { + "baseId": "30268", + "text": "HEMOGLOBIN JIANGHUA" + }, + { + "baseId": "30269", + "text": "HEMOGLOBIN JOHNSTOWN" + }, + { + "baseId": "30271", + "text": "HEMOGLOBIN K (IBADAN)" + }, + { + "baseId": "30272", + "text": "HEMOGLOBIN K (WOOLWICH)" + }, + { + "baseId": "30275", + "text": "HEMOGLOBIN KEMPSEY" + }, + { + "baseId": "30276", + "text": "HEMOGLOBIN KENITRA" + }, + { + "baseId": "30277", + "text": "HEMOGLOBIN KHARTOUM" + }, + { + "baseId": "30278", + "text": "HEMOGLOBIN KNOSSOS" + }, + { + "baseId": "30278", + "text": "Beta-knossos-thalassemia" + }, + { + "baseId": "30279", + "text": "HEMOGLOBIN KOFU" + }, + { + "baseId": "30281", + "text": "HEMOGLOBIN KORIYAMA" + }, + { + "baseId": "30282", + "text": "HEMOGLOBIN MACHIDA" + }, + { + "baseId": "30283", + "text": "HEMOGLOBIN KORLE-BU" + }, + { + "baseId": "30284", + "text": "HEMOGLOBIN LA DESIRADE" + }, + { + "baseId": "30285", + "text": "HEMOGLOBIN LAS PALMAS" + }, + { + "baseId": "30286", + "text": "HEMOGLOBIN LEIDEN" + }, + { + "baseId": "30287", + "text": "HEMOGLOBIN LINCOLN PARK" + }, + { + "baseId": "30287|30308|30343|30344", + "text": "HBB/HBD anti-Lepore" + }, + { + "baseId": "30288", + "text": "HEMOGLOBIN LINKOPING" + }, + { + "baseId": "30288", + "text": "HEMOGLOBIN MEILAHTI" + }, + { + "baseId": "30290|30386|32791|32793|32795|32798|32807|32821|32822|75388|249427|249428|249434|256186|256187|256188|256190|256192|256193|256194|256195|256196|256197|256198|328654|328655|328658|328660|328662|328667|328670|328672|328673|328681|328682|328683|338624|338630|338631|338644|338649|338650|338651|338653|338655|338656|338661|338663|338665|344704|344706|344708|344710|344712|344719|344720|344722|344723|344724|344726|344727|344730|344734|346097|346103|346104|346106|346108|346110|346111|346117|346121|346122|346126|346127|346132|361085|514047|727205|727207|740809|740810|755890|800132|800977|800978|800979|845491|877685|877686|877687|877688|877689|877690|877691|877692|877693|877694|877695|877696|877697|877698|877699|877700|877701|877702|877703|877704|877705|877706|877707|877708|877709|877710|877711|877712|877713|877714|877715|877716|877717|877718|877719|877720|877721|877722|877723|877724|877725|877726|877727|877728|877729|877730|877731|877732|877733|877734|880529|880530|880531", + "text": "Hemolytic anemia" + }, + { + "baseId": "30291", + "text": "HEMOGLOBIN LUFKIN" + }, + { + "baseId": "30292", + "text": "HEMOGLOBIN LYON" + }, + { + "baseId": "30293", + "text": "HEMOGLOBIN M (MILWAUKEE 1)" + }, + { + "baseId": "30293|30294|30417", + "text": "Methemoglobinemia, beta-globin type" + }, + { + "baseId": "30294", + "text": "HEMOGLOBIN M (MILWAUKEE 2)" + }, + { + "baseId": "30294", + "text": "HEMOGLOBIN M (HYDE PARK)" + }, + { + "baseId": "30294", + "text": "HEMOGLOBIN M (AKITA)" + }, + { + "baseId": "30295", + "text": "HEMOGLOBIN M (SASKATOON)" + }, + { + "baseId": "30295", + "text": "HEMOGLOBIN M (RADOM) METHEMOGLOBINEMIA, BETA TYPE" + }, + { + "baseId": "30296", + "text": "HEMOGLOBIN MADRID" + }, + { + "baseId": "30297", + "text": "HEMOGLOBIN MALAY" + }, + { + "baseId": "30297", + "text": "Beta-malay-thalassemia" + }, + { + "baseId": "30298", + "text": "HEMOGLOBIN MALMO" + }, + { + "baseId": "30299", + "text": "HEMOGLOBIN MAPUTO" + }, + { + "baseId": "30302", + "text": "HEMOGLOBIN MATERA" + }, + { + "baseId": "30303", + "text": "HEMOGLOBIN MEQUON" + }, + { + "baseId": "30304", + "text": "HEMOGLOBIN MCKEES ROCKS" + }, + { + "baseId": "30305", + "text": "HEMOGLOBIN MINNEAPOLIS-LAOS" + }, + { + "baseId": "30307", + "text": "HEMOGLOBIN MITO" + }, + { + "baseId": "30308", + "text": "HEMOGLOBIN MIYADA" + }, + { + "baseId": "30309", + "text": "HEMOGLOBIN MIYASHIRO" + }, + { + "baseId": "30310", + "text": "HEMOGLOBIN MIZUHO" + }, + { + "baseId": "30311", + "text": "HEMOGLOBIN MIZUNAMI" + }, + { + "baseId": "30312", + "text": "HEMOGLOBIN MOBILE" + }, + { + "baseId": "30313", + "text": "HEMOGLOBIN MORIGUCHI" + }, + { + "baseId": "30314", + "text": "HEMOGLOBIN MOSCVA" + }, + { + "baseId": "30315", + "text": "HEMOGLOBIN MOZHAISK" + }, + { + "baseId": "30316", + "text": "HEMOGLOBIN N, BETA TYPE" + }, + { + "baseId": "30317", + "text": "HEMOGLOBIN N (BALTIMORE)" + }, + { + "baseId": "30317", + "text": "HEMOGLOBIN N (JENKINS)" + }, + { + "baseId": "30317", + "text": "HEMOGLOBIN JENKINS" + }, + { + "baseId": "30317", + "text": "HEMOGLOBIN HOPKINS 1" + }, + { + "baseId": "30317", + "text": "HEMOGLOBIN KENWOOD" + }, + { + "baseId": "30318", + "text": "HEMOGLOBIN N (MEMPHIS)" + }, + { + "baseId": "30319", + "text": "HEMOGLOBIN N (SEATTLE)" + }, + { + "baseId": "30320", + "text": "HEMOGLOBIN N (TIMONE)" + }, + { + "baseId": "30321", + "text": "HEMOGLOBIN NAGASAKI" + }, + { + "baseId": "30322", + "text": "HEMOGLOBIN NAGOYA" + }, + { + "baseId": "30323", + "text": "HEMOGLOBIN NEVERS" + }, + { + "baseId": "30324", + "text": "HEMOGLOBIN NEW MEXICO" + }, + { + "baseId": "30326", + "text": "HEMOGLOBIN NEWCASTLE" + }, + { + "baseId": "30327", + "text": "HEMOGLOBIN NITEROI" + }, + { + "baseId": "30328", + "text": "HEMOGLOBIN NORTH CHICAGO" + }, + { + "baseId": "30330", + "text": "HEMOGLOBIN NOTTINGHAM" + }, + { + "baseId": "30331", + "text": "HEMOGLOBIN O (ARAB)" + }, + { + "baseId": "30331", + "text": "HEMOGLOBIN EGYPT" + }, + { + "baseId": "30331", + "text": "Sickle cell-Hemoglobin O Arab disease" + }, + { + "baseId": "30332", + "text": "HEMOGLOBIN OCHO RIOS" + }, + { + "baseId": "30333", + "text": "HEMOGLOBIN OHIO" + }, + { + "baseId": "30334", + "text": "HEMOGLOBIN OKALOOSA" + }, + { + "baseId": "30335", + "text": "HEMOGLOBIN OKAYAMA" + }, + { + "baseId": "30336", + "text": "HEMOGLOBIN OKAZAKI" + }, + { + "baseId": "30337", + "text": "HEMOGLOBIN OLMSTED" + }, + { + "baseId": "30338", + "text": "HEMOGLOBIN OLOMOUC" + }, + { + "baseId": "30339", + "text": "HEMOGLOBIN OLYMPIA" + }, + { + "baseId": "30340", + "text": "HEMOGLOBIN OSLER" + }, + { + "baseId": "30340", + "text": "HEMOGLOBIN NANCY" + }, + { + "baseId": "30340", + "text": "HEMOGLOBIN FORT GORDON" + }, + { + "baseId": "30342", + "text": "HEMOGLOBIN P" + }, + { + "baseId": "30342", + "text": "HEMOGLOBIN P (GALVESTON)" + }, + { + "baseId": "30343", + "text": "HEMOGLOBIN P (CONGO)" + }, + { + "baseId": "30344", + "text": "HEMOGLOBIN P (NILOTIC)" + }, + { + "baseId": "30345", + "text": "HEMOGLOBIN PALMERSTON NORTH" + }, + { + "baseId": "30346", + "text": "HEMOGLOBIN PASADENA" + }, + { + "baseId": "30347", + "text": "HEMOGLOBIN PERTH" + }, + { + "baseId": "30347", + "text": "HEMOGLOBIN ABRAHAM LINCOLN" + }, + { + "baseId": "30347", + "text": "HEMOGLOBIN KOBE" + }, + { + "baseId": "30348", + "text": "HEMOGLOBIN PETERBOROUGH" + }, + { + "baseId": "30349", + "text": "HEMOGLOBIN PHILLY" + }, + { + "baseId": "30350", + "text": "HEMOGLOBIN PIERRE-BENITE" + }, + { + "baseId": "30351", + "text": "Erythrocytosis" + }, + { + "baseId": "30353", + "text": "HEMOGLOBIN QUIN-HAI" + }, + { + "baseId": "30354", + "text": "HEMOGLOBIN RADCLIFFE" + }, + { + "baseId": "30355", + "text": "HEMOGLOBIN PORTO ALEGRE" + }, + { + "baseId": "30356", + "text": "HEMOGLOBIN POTOMAC" + }, + { + "baseId": "30357", + "text": "HEMOGLOBIN PRESBYTERIAN" + }, + { + "baseId": "30358", + "text": "HEMOGLOBIN PROVIDENCE" + }, + { + "baseId": "30359", + "text": "HEMOGLOBIN PYRGOS" + }, + { + "baseId": "30360", + "text": "HEMOGLOBIN RAHERE" + }, + { + "baseId": "30361", + "text": "HEMOGLOBIN RAINIER" + }, + { + "baseId": "30362", + "text": "HEMOGLOBIN RALEIGH" + }, + { + "baseId": "30363", + "text": "HEMOGLOBIN RANDWICK" + }, + { + "baseId": "30364", + "text": "HEMOGLOBIN REGINA" + }, + { + "baseId": "30365", + "text": "HEMOGLOBIN RICHMOND" + }, + { + "baseId": "30366", + "text": "HEMOGLOBIN RIO GRANDE" + }, + { + "baseId": "30367", + "text": "HEMOGLOBIN RIVERDALE-BRONX" + }, + { + "baseId": "30369", + "text": "HEMOGLOBIN ROSEAU-POINTE A PITRE" + }, + { + "baseId": "30370", + "text": "HEMOGLOBIN ROTHSCHILD" + }, + { + "baseId": "30371", + "text": "HEMOGLOBIN RUSH" + }, + { + "baseId": "30372", + "text": "HEMOGLOBIN S" + }, + { + "baseId": "30372", + "text": "Sickle cell disease and related diseases" + }, + { + "baseId": "30377", + "text": "HEMOGLOBIN SABINE" + }, + { + "baseId": "30378", + "text": "HEMOGLOBIN SAINT JACQUES" + }, + { + "baseId": "30379", + "text": "HEMOGLOBIN SAITAMA" + }, + { + "baseId": "30380", + "text": "HEMOGLOBIN SAKI" + }, + { + "baseId": "30381", + "text": "HEMOGLOBIN SAN DIEGO" + }, + { + "baseId": "30382", + "text": "HEMOGLOBIN SANTA ANA" + }, + { + "baseId": "30383", + "text": "HEMOGLOBIN SAVANNAH" + }, + { + "baseId": "30384", + "text": "HEMOGLOBIN SAVERNE" + }, + { + "baseId": "30385", + "text": "HEMOGLOBIN SEATTLE" + }, + { + "baseId": "30387", + "text": "HEMOGLOBIN SHANGHAI" + }, + { + "baseId": "30388", + "text": "HEMOGLOBIN SHELBY" + }, + { + "baseId": "30388", + "text": "HEMOGLOBIN LESLIE" + }, + { + "baseId": "30388", + "text": "HEMOGLOBIN DEACONESS" + }, + { + "baseId": "30389", + "text": "HEMOGLOBIN SHEPHERDS BUSH" + }, + { + "baseId": "30390", + "text": "HEMOGLOBIN SHERWOOD FOREST" + }, + { + "baseId": "30391", + "text": "HEMOGLOBIN SHOWA-YAKUSHIJI" + }, + { + "baseId": "30391", + "text": "Beta-showa-yakushiji thalassemia" + }, + { + "baseId": "30393", + "text": "HEMOGLOBIN ST. MANDE" + }, + { + "baseId": "30394", + "text": "HEMOGLOBIN SOGN" + }, + { + "baseId": "30395", + "text": "HEMOGLOBIN SOUTHAMPTON" + }, + { + "baseId": "30395", + "text": "HEMOGLOBIN CASPER" + }, + { + "baseId": "30396", + "text": "HEMOGLOBIN STANMORE" + }, + { + "baseId": "30397", + "text": "HEMOGLOBIN STRASBOURG" + }, + { + "baseId": "30398", + "text": "HEMOGLOBIN SOUTH FLORIDA" + }, + { + "baseId": "30399", + "text": "HEMOGLOBIN ST. ANTOINE" + }, + { + "baseId": "30400", + "text": "HEMOGLOBIN ST. LOUIS" + }, + { + "baseId": "30401", + "text": "HEMOGLOBIN SUMMER HILL" + }, + { + "baseId": "30402", + "text": "HEMOGLOBIN SUNNYBROOK" + }, + { + "baseId": "30403", + "text": "HEMOGLOBIN SYDNEY" + }, + { + "baseId": "30404", + "text": "HEMOGLOBIN SYRACUSE" + }, + { + "baseId": "30406", + "text": "HEMOGLOBIN TA-LI" + }, + { + "baseId": "30409", + "text": "HEMOGLOBIN TAKAMATSU" + }, + { + "baseId": "30410", + "text": "HEMOGLOBIN TAMPA" + }, + { + "baseId": "30411", + "text": "HEMOGLOBIN TIANSHUI" + }, + { + "baseId": "30412", + "text": "HEMOGLOBIN TILBURG" + }, + { + "baseId": "30413", + "text": "HEMOGLOBIN TOCHIGI" + }, + { + "baseId": "30414", + "text": "HEMOGLOBIN TOURS" + }, + { + "baseId": "30415", + "text": "HEMOGLOBIN TOYOAKE" + }, + { + "baseId": "30416", + "text": "HEMOGLOBIN WILLAMETTE" + }, + { + "baseId": "30418", + "text": "HEMOGLOBIN TUNIS" + }, + { + "baseId": "30419", + "text": "HEMOGLOBIN TY GARD" + }, + { + "baseId": "30420", + "text": "HEMOGLOBIN VAASA" + }, + { + "baseId": "30421", + "text": "HEMOGLOBIN VANCOUVER" + }, + { + "baseId": "30422", + "text": "HEMOGLOBIN VANDERBILT" + }, + { + "baseId": "30423", + "text": "HEMOGLOBIN VICKSBURG" + }, + { + "baseId": "30424", + "text": "HEMOGLOBIN VILLEJUIF" + }, + { + "baseId": "30425", + "text": "HEMOGLOBIN VOLGA" + }, + { + "baseId": "30425", + "text": "HEMOGLOBIN DRENTHE" + }, + { + "baseId": "30426", + "text": "HEMOGLOBIN WARWICKSHIRE" + }, + { + "baseId": "30427", + "text": "HEMOGLOBIN WIEN" + }, + { + "baseId": "30428", + "text": "HEMOGLOBIN WINDSOR" + }, + { + "baseId": "30429", + "text": "HEMOGLOBIN WOOD" + }, + { + "baseId": "30430", + "text": "HEMOGLOBIN YAKIMA" + }, + { + "baseId": "30431", + "text": "HEMOGLOBIN YAMAGATA" + }, + { + "baseId": "30432", + "text": "HEMOGLOBIN YATSUSHIRO" + }, + { + "baseId": "30433", + "text": "HEMOGLOBIN YOKOHAMA" + }, + { + "baseId": "30434", + "text": "HEMOGLOBIN YORK" + }, + { + "baseId": "30435", + "text": "HEMOGLOBIN YOSHIZUKA" + }, + { + "baseId": "30436", + "text": "HEMOGLOBIN YPSILANTI" + }, + { + "baseId": "30438", + "text": "HEMOGLOBIN YUSA" + }, + { + "baseId": "30439", + "text": "Hemoglobin Zurich" + }, + { + "baseId": "30440|30441|30442|30444|30445|30446|30447|30452|30453|30454|30456|30457|30458|30459|30461|30462|30463|30464|30465|30466|30467|30468|30469|30470|30471|30472|30473|30475|30476|30477|30480|30481|30484|30485|30497|30543|30547|30551|30558|30599|30601|30602|34042|34043|44972|44974|47272|432675|432694|546034|546666|611303|611306|857566", + "text": "beta^0^ Thalassemia" + }, + { + "baseId": "30448", + "text": "Beta-Houston-thalassemia" + }, + { + "baseId": "30448", + "text": "Beta-plus-thalassemia, dominant" + }, + { + "baseId": "30450", + "text": "HEMOGLOBIN CAGLIARI" + }, + { + "baseId": "30487|30493|30497|34042|970126", + "text": "Beta thalassemia major" + }, + { + "baseId": "30490|30501|30503|30505|30522|30552|30553", + "text": "Beta thalassemia intermedia" + }, + { + "baseId": "30517", + "text": "HEMOGLOBIN BIRMINGHAM" + }, + { + "baseId": "30518", + "text": "HEMOGLOBIN GALICIA" + }, + { + "baseId": "30519", + "text": "HEMOGLOBIN SOUTH MILWAUKEE" + }, + { + "baseId": "30521", + "text": "HEMOGLOBIN CALAIS" + }, + { + "baseId": "30523", + "text": "HEMOGLOBIN IOWA" + }, + { + "baseId": "30525", + "text": "HEMOGLOBIN ZENGCHENG" + }, + { + "baseId": "30526", + "text": "HEMOGLOBIN TERRE HAUTE" + }, + { + "baseId": "30528", + "text": "HEMOGLOBIN VALLETTA" + }, + { + "baseId": "30529", + "text": "HEMOGLOBIN JACKSONVILLE" + }, + { + "baseId": "30530", + "text": "HEMOGLOBIN CHESTERFIELD" + }, + { + "baseId": "30534", + "text": "HEMOGLOBIN COIMBRA" + }, + { + "baseId": "30537", + "text": "HEMOGLOBIN KODAIRA" + }, + { + "baseId": "30538", + "text": "HEMOGLOBIN MONTREAL" + }, + { + "baseId": "30539", + "text": "HEMOGLOBIN NIKOSIA" + }, + { + "baseId": "30540", + "text": "HEMOGLOBIN ST. FRANCIS" + }, + { + "baseId": "30541", + "text": "HEMOGLOBIN YAHATA" + }, + { + "baseId": "30542", + "text": "HEMOGLOBIN RANCHO MIRAGE" + }, + { + "baseId": "30548", + "text": "HEMOGLOBIN MUSCAT" + }, + { + "baseId": "30549", + "text": "HEMOGLOBIN BAB-SAADOUN" + }, + { + "baseId": "30550", + "text": "HEMOGLOBIN MANHATTAN" + }, + { + "baseId": "30552", + "text": "HEMOGLOBIN BRESCIA" + }, + { + "baseId": "30552", + "text": "HEMOGLOBIN DURHAM-N.C." + }, + { + "baseId": "30552|30639|857570", + "text": "Beta-thalassemia dominant" + }, + { + "baseId": "30554", + "text": "Beta-thalassemia intermedia, dominant" + }, + { + "baseId": "30556", + "text": "HEMOGLOBIN BADEN" + }, + { + "baseId": "30557", + "text": "HEMOGLOBIN GRAZ" + }, + { + "baseId": "30559", + "text": "HEMOGLOBIN KARLSKOGA" + }, + { + "baseId": "30560", + "text": "HEMOGLOBIN MUSKEGON" + }, + { + "baseId": "30561", + "text": "HEMOGLOBIN TIGRAYE" + }, + { + "baseId": "30562", + "text": "HEMOGLOBIN SARREBOURG" + }, + { + "baseId": "30563", + "text": "HEMOGLOBIN SAINT NAZAIRE" + }, + { + "baseId": "30564", + "text": "Hb camperdown" + }, + { + "baseId": "30566", + "text": "HEMOGLOBIN MANUKAU" + }, + { + "baseId": "30567", + "text": "HEMOGLOBIN VILLAVERDE" + }, + { + "baseId": "30568", + "text": "HEMOGLOBIN HOWICK" + }, + { + "baseId": "30569", + "text": "HEMOGLOBIN DENVER" + }, + { + "baseId": "30570", + "text": "HEMOGLOBIN BECKMAN" + }, + { + "baseId": "30571", + "text": "HEMOGLOBIN KOREA" + }, + { + "baseId": "30573", + "text": "HEMOGLOBIN D (NEATH)" + }, + { + "baseId": "30574", + "text": "HEMOGLOBIN WASHTENAW" + }, + { + "baseId": "30575", + "text": "HEMOGLOBIN BRISTOL" + }, + { + "baseId": "30575", + "text": "HEMOGLOBIN ALESHA" + }, + { + "baseId": "30576", + "text": "HEMOGLOBIN DIEPPE" + }, + { + "baseId": "30577", + "text": "HEMOGLOBIN HIGASHITOCHIGI" + }, + { + "baseId": "30577", + "text": "HEMOGLOBIN HT" + }, + { + "baseId": "30578", + "text": "HEMOGLOBIN TROLLHAETTAN" + }, + { + "baseId": "30579", + "text": "HEMOGLOBIN TYNE" + }, + { + "baseId": "30583", + "text": "HEMOGLOBIN HAKKARI" + }, + { + "baseId": "30584", + "text": "HEMOGLOBIN PUTTELANGE" + }, + { + "baseId": "30585", + "text": "HEMOGLOBIN ARTA" + }, + { + "baseId": "30586", + "text": "HEMOGLOBIN AURORA" + }, + { + "baseId": "30587", + "text": "HEMOGLOBIN NAKANO" + }, + { + "baseId": "30588", + "text": "HEMOGLOBIN HINWIL" + }, + { + "baseId": "30589", + "text": "HEMOGLOBIN DEBROUSSE" + }, + { + "baseId": "30591", + "text": "HEMOGLOBIN TSURUMAI" + }, + { + "baseId": "30592", + "text": "HEMOGLOBIN J (EUROPA)" + }, + { + "baseId": "30593", + "text": "Hb aubenas" + }, + { + "baseId": "30595", + "text": "HEMOGLOBIN COSTA RICA" + }, + { + "baseId": "30596", + "text": "Beta-thalassemia, Ashkenazi Jewish type" + }, + { + "baseId": "30597", + "text": "Hb niigata" + }, + { + "baseId": "30598", + "text": "HEMOGLOBIN HOKUSETSU" + }, + { + "baseId": "30600", + "text": "Hb gambara" + }, + { + "baseId": "30603", + "text": "HEMOGLOBIN SILVER SPRINGS" + }, + { + "baseId": "30605", + "text": "HEMOGLOBIN RIO CLARO" + }, + { + "baseId": "30606", + "text": "HEMOGLOBIN NIJKERK" + }, + { + "baseId": "30607", + "text": "HEMOGLOBIN CHILE" + }, + { + "baseId": "30608", + "text": "HEMOGLOBIN TENDE" + }, + { + "baseId": "30609", + "text": "HEMOGLOBIN LA ROCHE-SUR-YON" + }, + { + "baseId": "30610", + "text": "HEMOGLOBIN IRAQ-HALABJA" + }, + { + "baseId": "30611", + "text": "HEMOGLOBIN LUCKNOW" + }, + { + "baseId": "30612", + "text": "HEMOGLOBIN SAGAMI" + }, + { + "baseId": "30613", + "text": "HEMOGLOBIN HARROW" + }, + { + "baseId": "30614", + "text": "HEMOGLOBIN BRIE COMTE ROBERT" + }, + { + "baseId": "30615", + "text": "HEMOGLOBIN BARBIZON" + }, + { + "baseId": "30616", + "text": "HEMOGLOBIN BOLOGNA-ST. ORSOLA" + }, + { + "baseId": "30617", + "text": "HEMOGLOBIN VILA REAL" + }, + { + "baseId": "30618", + "text": "HEMOGLOBIN SAALE" + }, + { + "baseId": "30619", + "text": "HEMOGLOBIN BUSHEY" + }, + { + "baseId": "30621", + "text": "HEMOGLOBIN TSUKUMI" + }, + { + "baseId": "30622", + "text": "HEMOGLOBIN SITIA" + }, + { + "baseId": "30623", + "text": "HEMOGLOBIN ERNZ" + }, + { + "baseId": "30624", + "text": "HEMOGLOBIN RENERT" + }, + { + "baseId": "30626", + "text": "HEMOGLOBIN WATFORD" + }, + { + "baseId": "30627", + "text": "HEMOGLOBIN YAOUNDE" + }, + { + "baseId": "30628", + "text": "HEMOGLOBIN MONT SAINT-AIGNAN" + }, + { + "baseId": "30629", + "text": "HEMOGLOBIN 'T LANGE LAND" + }, + { + "baseId": "30631", + "text": "HEMOGLOBIN ANTALYA" + }, + { + "baseId": "30632", + "text": "HEMOGLOBIN LIMASSOL" + }, + { + "baseId": "30633", + "text": "Thalassemia intermedia" + }, + { + "baseId": "30634", + "text": "HEMOGLOBIN CANTERBURY" + }, + { + "baseId": "30636", + "text": "HEMOGLOBIN MOLFETTA" + }, + { + "baseId": "30637", + "text": "HEMOGLOBIN ILMENAU" + }, + { + "baseId": "30638", + "text": "HEMOGLOBIN AUBAGNE" + }, + { + "baseId": "30640", + "text": "HEMOGLOBIN KODAIRA II" + }, + { + "baseId": "30641", + "text": "HEMOGLOBIN COLIMA" + }, + { + "baseId": "30642", + "text": "HEMOGLOBIN POCOS DE CALDAS" + }, + { + "baseId": "30643", + "text": "HEMOGLOBIN TRENTO" + }, + { + "baseId": "30644", + "text": "HEMOGLOBIN SANTANDER" + }, + { + "baseId": "30645", + "text": "HEMOGLOBIN BUZEN" + }, + { + "baseId": "30646", + "text": "HEMOGLOBIN SANTA CLARA" + }, + { + "baseId": "30647", + "text": "HEMOGLOBIN SPARTA" + }, + { + "baseId": "30650", + "text": "HEMOGLOBIN CARDARELLI" + }, + { + "baseId": "30652", + "text": "HEMOGLOBIN ROCKFORD" + }, + { + "baseId": "30653", + "text": "HEMOGLOBIN TRIPOLI" + }, + { + "baseId": "30654", + "text": "HEMOGLOBIN TIZI-OUZOU" + }, + { + "baseId": "30657", + "text": "HEMOGLOBIN ZOETERWOUDE" + }, + { + "baseId": "30658", + "text": "HEMOGLOBIN BREM-SUR-MER" + }, + { + "baseId": "30659", + "text": "HEMOGLOBIN GELDROP ST. ANNA" + }, + { + "baseId": "30660", + "text": "HEMOGLOBIN MARINEO" + }, + { + "baseId": "30661", + "text": "HEMOGLOBIN LA CORUNA" + }, + { + "baseId": "30663", + "text": "Hemoglobin constant spring" + }, + { + "baseId": "30663|30665|30684|30686|30690|30691|30695|30707|30731|30888|30914", + "text": "Hemoglobin H disease, nondeletional" + }, + { + "baseId": "30664", + "text": "HEMOGLOBIN SPANISH TOWN" + }, + { + "baseId": "30665", + "text": "HEMOGLOBIN ICARIA" + }, + { + "baseId": "30666", + "text": "HEMOGLOBIN KOYA DORA" + }, + { + "baseId": "30667", + "text": "HEMOGLOBIN COLUMBIA MISSOURI" + }, + { + "baseId": "30667|30672|30678|30685|30750|30791|30812|30815|30822|30831|30846|30860|30861|30883|30895", + "text": "Erythrocytosis, familial, 7" + }, + { + "baseId": "30668", + "text": "HEMOGLOBIN WAYNE" + }, + { + "baseId": "30669", + "text": "Hemoglobin Quong Sze" + }, + { + "baseId": "30670", + "text": "HEMOGLOBIN EVANS" + }, + { + "baseId": "30671", + "text": "HEMOGLOBIN SUAN-DOK" + }, + { + "baseId": "30672", + "text": "HEMOGLOBIN J (BUDA)" + }, + { + "baseId": "30673", + "text": "HEMOGLOBIN J (OXFORD)" + }, + { + "baseId": "30673", + "text": "HEMOGLOBIN I (INTERLAKEN)" + }, + { + "baseId": "30673", + "text": "HEMOGLOBIN N (COSENZA)" + }, + { + "baseId": "30674|30785", + "text": "HEMOGLOBIN I" + }, + { + "baseId": "30674|30785", + "text": "HEMOGLOBIN I (BURLINGTON)" + }, + { + "baseId": "30674|30785", + "text": "HEMOGLOBIN I (PHILADELPHIA)" + }, + { + "baseId": "30674|30785", + "text": "HEMOGLOBIN I (SKAMANIA)" + }, + { + "baseId": "30674|30785", + "text": "HEMOGLOBIN I (TEXAS)" + }, + { + "baseId": "30675", + "text": "HEMOGLOBIN L (FERRARA)" + }, + { + "baseId": "30675", + "text": "HEMOGLOBIN HASHARON" + }, + { + "baseId": "30675", + "text": "HEMOGLOBIN SINAI" + }, + { + "baseId": "30675", + "text": "HEMOGLOBIN SEALY" + }, + { + "baseId": "30676", + "text": "HEMOGLOBIN MONTGOMERY" + }, + { + "baseId": "30676", + "text": "HEMOGLOBIN BIRMINGHAM (USA)" + }, + { + "baseId": "30677", + "text": "HEMOGLOBIN G (BRISTOL)" + }, + { + "baseId": "30677", + "text": "HEMOGLOBIN D (BALTIMORE)" + }, + { + "baseId": "30677", + "text": "HEMOGLOBIN D (ST. LOUIS)" + }, + { + "baseId": "30677", + "text": "HEMOGLOBIN D (WASHINGTON)" + }, + { + "baseId": "30677", + "text": "HEMOGLOBIN G (AZAKUOLI)" + }, + { + "baseId": "30677", + "text": "HEMOGLOBIN G (KNOXVILLE)" + }, + { + "baseId": "30677", + "text": "HEMOGLOBIN G (PHILADELPHIA)" + }, + { + "baseId": "30677", + "text": "HEMOGLOBIN KNOXVILLE-1" + }, + { + "baseId": "30677", + "text": "HEMOGLOBIN STANLEYVILLE-I" + }, + { + "baseId": "30678", + "text": "HEMOGLOBIN INKSTER" + }, + { + "baseId": "30679", + "text": "HEMOGLOBIN SUN PRAIRIE" + }, + { + "baseId": "30680", + "text": "HEMOGLOBIN BOYLE HEIGHTS" + }, + { + "baseId": "30681", + "text": "HEMOGLOBIN DAVENPORT" + }, + { + "baseId": "30685", + "text": "HEMOGLOBIN HANAMAKI" + }, + { + "baseId": "30686", + "text": "Alpha-thalassemia-2, nondeletional" + }, + { + "baseId": "30687", + "text": "HEMOGLOBIN KURDISTAN" + }, + { + "baseId": "30688|30707", + "text": "HEMOGLOBIN CLINICO-MADRID" + }, + { + "baseId": "30689", + "text": "HEMOGLOBIN PARK RIDGE" + }, + { + "baseId": "30690", + "text": "HEMOGLOBIN AGRINIO" + }, + { + "baseId": "30692", + "text": "HEMOGLOBIN SEAL ROCK" + }, + { + "baseId": "30693", + "text": "HEMOGLOBIN ANAMOSA" + }, + { + "baseId": "30695", + "text": "HEMOGLOBIN SALLANCHES" + }, + { + "baseId": "30696", + "text": "Alpha trait thalassemia" + }, + { + "baseId": "30697", + "text": "HEMOGLOBIN NATAL" + }, + { + "baseId": "30698", + "text": "HEMOGLOBIN WATTS" + }, + { + "baseId": "30699", + "text": "HEMOGLOBIN CONAKRY" + }, + { + "baseId": "30700", + "text": "HEMOGLOBIN J (SARDEGNA)" + }, + { + "baseId": "30701", + "text": "HEMOGLOBIN TARRANT" + }, + { + "baseId": "30702", + "text": "HEMOGLOBIN ANTANANARIVO" + }, + { + "baseId": "30703", + "text": "HEMOGLOBIN BOGHE" + }, + { + "baseId": "30704", + "text": "HEMOGLOBIN TOULON" + }, + { + "baseId": "30705", + "text": "HEMOGLOBIN CAMPINAS" + }, + { + "baseId": "30706", + "text": "HEMOGLOBIN NIKAIA" + }, + { + "baseId": "30708", + "text": "HEMOGLOBIN DARTMOUTH" + }, + { + "baseId": "30709", + "text": "HEMOGLOBIN GERLAND" + }, + { + "baseId": "30710", + "text": "HEMOGLOBIN MANITOBA" + }, + { + "baseId": "30711", + "text": "HEMOGLOBIN NORTON" + }, + { + "baseId": "30712", + "text": "HEMOGLOBIN LOMBARD" + }, + { + "baseId": "30713", + "text": "HEMOGLOBIN SAN ANTONIO" + }, + { + "baseId": "30714", + "text": "HEMOGLOBIN RAMPA" + }, + { + "baseId": "30715", + "text": "HEMOGLOBIN MANAWATU" + }, + { + "baseId": "30716", + "text": "HEMOGLOBIN G (HONOLULU)" + }, + { + "baseId": "30716", + "text": "HEMOGLOBIN G (HONG KONG)" + }, + { + "baseId": "30716", + "text": "HEMOGLOBIN G (SINGAPORE)" + }, + { + "baseId": "30716", + "text": "HEMOGLOBIN G (CHINESE)" + }, + { + "baseId": "30718|30726|30727|30918|30919", + "text": "Alpha plus thalassemia" + }, + { + "baseId": "30719", + "text": "Alpha-thalassemia, zf type" + }, + { + "baseId": "30720", + "text": "HEMOGLOBIN CHARTRES" + }, + { + "baseId": "30721", + "text": "HEMOGLOBIN FUKUI" + }, + { + "baseId": "30722", + "text": "HEMOGLOBIN PART-DIEU" + }, + { + "baseId": "30723", + "text": "HEMOGLOBIN DECINES-CHARPIEU" + }, + { + "baseId": "30724", + "text": "Hemoglobin Val de Marne" + }, + { + "baseId": "30727", + "text": "HEMOGLOBIN ZURICH ALBISRIEDEN" + }, + { + "baseId": "30728", + "text": "HEMOGLOBIN PASSY" + }, + { + "baseId": "30729", + "text": "HEMOGLOBIN PLASENCIA" + }, + { + "baseId": "30730", + "text": "HEMOGLOBIN KUROSAKI" + }, + { + "baseId": "30732", + "text": "HEMOGLOBIN AL-HAMMADI RIYADH" + }, + { + "baseId": "30733", + "text": "Alpha-thalassemia, Hmong type" + }, + { + "baseId": "30734", + "text": "HEMOGLOBIN AICHI" + }, + { + "baseId": "30735", + "text": "HEMOGLOBIN ALBANY-GEORGIA" + }, + { + "baseId": "30735", + "text": "HEMOGLOBIN ALBANY-SUMA" + }, + { + "baseId": "30736", + "text": "HEMOGLOBIN ANANTHARAJ" + }, + { + "baseId": "30737", + "text": "HEMOGLOBIN ANN ARBOR" + }, + { + "baseId": "30738", + "text": "HEMOGLOBIN ARYA" + }, + { + "baseId": "30739", + "text": "HEMOGLOBIN ATAGO" + }, + { + "baseId": "30740", + "text": "HEMOGLOBIN ATTLEBORO" + }, + { + "baseId": "30741", + "text": "HEMOGLOBIN AZTEC" + }, + { + "baseId": "30742", + "text": "HEMOGLOBIN BARI" + }, + { + "baseId": "30743", + "text": "HEMOGLOBIN BEIJING" + }, + { + "baseId": "30745", + "text": "HEMOGLOBIN BOURMEDES" + }, + { + "baseId": "30746", + "text": "HEMOGLOBIN BROUSSAIS" + }, + { + "baseId": "30746", + "text": "HEMOGLOBIN J (BROUSSAIS)" + }, + { + "baseId": "30746", + "text": "HEMOGLOBIN TAGAWA I" + }, + { + "baseId": "30747", + "text": "HEMOGLOBIN CATONSVILLE" + }, + { + "baseId": "30748", + "text": "HEMOGLOBIN CHAD" + }, + { + "baseId": "30749", + "text": "HEMOGLOBIN CHAPEL HILL" + }, + { + "baseId": "30750", + "text": "HEMOGLOBIN CHESAPEAKE" + }, + { + "baseId": "30751", + "text": "HEMOGLOBIN CHIAPAS" + }, + { + "baseId": "30752", + "text": "HEMOGLOBIN CHICAGO" + }, + { + "baseId": "30753", + "text": "HEMOGLOBIN CHONGQING" + }, + { + "baseId": "30754", + "text": "HEMOGLOBIN CONTALDO" + }, + { + "baseId": "30755", + "text": "HEMOGLOBIN CORDELE" + }, + { + "baseId": "30756", + "text": "HEMOGLOBIN DAGESTAN" + }, + { + "baseId": "30757", + "text": "HEMOGLOBIN DALLAS" + }, + { + "baseId": "30758", + "text": "HEMOGLOBIN DANESHGAH-TEHRAN" + }, + { + "baseId": "30759", + "text": "HEMOGLOBIN DENMARK HILL" + }, + { + "baseId": "30760", + "text": "HEMOGLOBIN DUAN" + }, + { + "baseId": "30761", + "text": "HEMOGLOBIN DUNN" + }, + { + "baseId": "30762", + "text": "HEMOGLOBIN ETOBICOKE" + }, + { + "baseId": "30764", + "text": "HEMOGLOBIN FERNDOWN" + }, + { + "baseId": "30765", + "text": "HEMOGLOBIN FONTAINEBLEAU" + }, + { + "baseId": "30766", + "text": "HEMOGLOBIN FORT DE FRANCE" + }, + { + "baseId": "30767", + "text": "HEMOGLOBIN G (AUDHALI)" + }, + { + "baseId": "30768", + "text": "HEMOGLOBIN G (FORT WORTH)" + }, + { + "baseId": "30768", + "text": "HEMOGLOBIN FORT WORTH" + }, + { + "baseId": "30769", + "text": "HEMOGLOBIN G (GEORGIA)" + }, + { + "baseId": "30770", + "text": "HEMOGLOBIN G (NORFOLK)" + }, + { + "baseId": "30771", + "text": "HEMOGLOBIN G (PEST)" + }, + { + "baseId": "30772", + "text": "HEMOGLOBIN G (TAICHUNG)" + }, + { + "baseId": "30772", + "text": "HEMOGLOBIN Q" + }, + { + "baseId": "30772", + "text": "HEMOGLOBIN Q (THAILAND)" + }, + { + "baseId": "30772", + "text": "HEMOGLOBIN MAHIDOL" + }, + { + "baseId": "30772", + "text": "HEMOGLOBIN ASABARA" + }, + { + "baseId": "30772", + "text": "HEMOGLOBIN KURASHIKI" + }, + { + "baseId": "30773", + "text": "HEMOGLOBIN G (WAIMANALO)" + }, + { + "baseId": "30773", + "text": "HEMOGLOBIN AIDA" + }, + { + "baseId": "30774", + "text": "HEMOGLOBIN GARDEN STATE" + }, + { + "baseId": "30775", + "text": "HEMOGLOBIN HANDSWORTH" + }, + { + "baseId": "30776", + "text": "HEMOGLOBIN GRADY" + }, + { + "baseId": "30776", + "text": "HEMOGLOBIN DAKAR" + }, + { + "baseId": "30777", + "text": "HEMOGLOBIN GUANGZHOU" + }, + { + "baseId": "30777", + "text": "HEMOGLOBIN HANGZHOU" + }, + { + "baseId": "30778", + "text": "HEMOGLOBIN GUIZHOU" + }, + { + "baseId": "30778", + "text": "HEMOGLOBIN UTSUNOMIYA" + }, + { + "baseId": "30779", + "text": "HEMOGLOBIN HANDA" + }, + { + "baseId": "30779", + "text": "HEMOGLOBIN MUNAKATA" + }, + { + "baseId": "30780", + "text": "HEMOGLOBIN HARBIN" + }, + { + "baseId": "30781", + "text": "HEMOGLOBIN HEKINAN" + }, + { + "baseId": "30782", + "text": "HEMOGLOBIN HIROSAKI" + }, + { + "baseId": "30783", + "text": "HEMOGLOBIN HOBART" + }, + { + "baseId": "30784", + "text": "HEMOGLOBIN HOPKINS 2" + }, + { + "baseId": "30786", + "text": "HEMOGLOBIN IWATA" + }, + { + "baseId": "30787", + "text": "HEMOGLOBIN J (ABIDJAN)" + }, + { + "baseId": "30788", + "text": "HEMOGLOBIN J (ANATOLIA)" + }, + { + "baseId": "30789", + "text": "HEMOGLOBIN J (BIRMINGHAM)" + }, + { + "baseId": "30789", + "text": "HEMOGLOBIN J (MEERUT)" + }, + { + "baseId": "30790", + "text": "HEMOGLOBIN J (CAMAGUEY)" + }, + { + "baseId": "30791", + "text": "HEMOGLOBIN J (CAPE TOWN)" + }, + { + "baseId": "30792", + "text": "HEMOGLOBIN J (CUBUJUQUI)" + }, + { + "baseId": "30793", + "text": "HEMOGLOBIN J (HABANA)" + }, + { + "baseId": "30794", + "text": "HEMOGLOBIN J (KUROSH)" + }, + { + "baseId": "30795", + "text": "HEMOGLOBIN J (MEDELLIN)" + }, + { + "baseId": "30796", + "text": "HEMOGLOBIN J (NYANZA)" + }, + { + "baseId": "30797", + "text": "HEMOGLOBIN J (PARIS 1)" + }, + { + "baseId": "30797", + "text": "HEMOGLOBIN J (ALJEZUR)" + }, + { + "baseId": "30798", + "text": "HEMOGLOBIN J (RAJAPPEN)" + }, + { + "baseId": "30799", + "text": "HEMOGLOBIN J (ROVIGO)" + }, + { + "baseId": "30800", + "text": "HEMOGLOBIN J (SINGA)" + }, + { + "baseId": "30802", + "text": "HEMOGLOBIN J (TASHIKUERGAN)" + }, + { + "baseId": "30803", + "text": "HEMOGLOBIN J (TONGARIKI)" + }, + { + "baseId": "30804", + "text": "HEMOGLOBIN J (TORONTO)" + }, + { + "baseId": "30805", + "text": "HEMOGLOBIN JACKSON" + }, + { + "baseId": "30806", + "text": "HEMOGLOBIN KARACHI" + }, + { + "baseId": "30807", + "text": "HEMOGLOBIN KARIYA" + }, + { + "baseId": "30808", + "text": "HEMOGLOBIN KAWACHI" + }, + { + "baseId": "30809", + "text": "HEMOGLOBIN KOELLIKER" + }, + { + "baseId": "30809", + "text": "HEMOGLOBIN F (KOELLIKER)" + }, + { + "baseId": "30810", + "text": "HEMOGLOBIN KOKURA" + }, + { + "baseId": "30810", + "text": "HEMOGLOBIN BEILINSON" + }, + { + "baseId": "30810", + "text": "HEMOGLOBIN MICHIGAN-I" + }, + { + "baseId": "30810", + "text": "HEMOGLOBIN MICHIGAN-II" + }, + { + "baseId": "30810", + "text": "HEMOGLOBIN L (GASLINI)" + }, + { + "baseId": "30810", + "text": "HEMOGLOBIN TAGAWA II" + }, + { + "baseId": "30810", + "text": "HEMOGLOBIN UMI" + }, + { + "baseId": "30810", + "text": "HEMOGLOBIN MUGINO" + }, + { + "baseId": "30810", + "text": "HEMOGLOBIN YUKUHASHI-2" + }, + { + "baseId": "30811", + "text": "HEMOGLOBIN L (PERSIAN GULF)" + }, + { + "baseId": "30812", + "text": "HEMOGLOBIN LEGNANO" + }, + { + "baseId": "30813", + "text": "HEMOGLOBIN LE LAMENTIN" + }, + { + "baseId": "30814", + "text": "HEMOGLOBIN LILLE" + }, + { + "baseId": "30815", + "text": "HEMOGLOBIN LOIRE" + }, + { + "baseId": "30816", + "text": "HEMOGLOBIN LUXEMBOURG" + }, + { + "baseId": "30817", + "text": "HEMOGLOBIN M (BOSTON)" + }, + { + "baseId": "30817", + "text": "HEMOGLOBIN GOTHENBURG" + }, + { + "baseId": "30817", + "text": "HEMOGLOBIN M (GOTHENBURG)" + }, + { + "baseId": "30817", + "text": "HEMOGLOBIN M (OSAKA)" + }, + { + "baseId": "30817", + "text": "HEMOGLOBIN M (KISKUNHALAS)" + }, + { + "baseId": "30818", + "text": "HEMOGLOBIN M (IWATE)" + }, + { + "baseId": "30818", + "text": "HEMOGLOBIN M (KANKAKEE)" + }, + { + "baseId": "30818", + "text": "HEMOGLOBIN M (OLDENBURG)" + }, + { + "baseId": "30818", + "text": "HEMOGLOBIN M (SENDAI)" + }, + { + "baseId": "30819", + "text": "HEMOGLOBIN MATSUE-OKI" + }, + { + "baseId": "30820", + "text": "HEMOGLOBIN MEMPHIS" + }, + { + "baseId": "30821", + "text": "HEMOGLOBIN MEXICO" + }, + { + "baseId": "30821", + "text": "HEMOGLOBIN J" + }, + { + "baseId": "30821", + "text": "HEMOGLOBIN J (MEXICO)" + }, + { + "baseId": "30821", + "text": "HEMOGLOBIN J (PARIS 2)" + }, + { + "baseId": "30821", + "text": "HEMOGLOBIN UPPSALA" + }, + { + "baseId": "30822", + "text": "HEMOGLOBIN MILLEDGEVILLE" + }, + { + "baseId": "30823", + "text": "HEMOGLOBIN MIYANO" + }, + { + "baseId": "30824", + "text": "HEMOGLOBIN MIZUSHI" + }, + { + "baseId": "30825", + "text": "HEMOGLOBIN MOABIT" + }, + { + "baseId": "30826", + "text": "HEMOGLOBIN NECKER ENFANTS-MALADES" + }, + { + "baseId": "30827", + "text": "HEMOGLOBIN NIGERIA" + }, + { + "baseId": "30828", + "text": "HEMOGLOBIN NOKO" + }, + { + "baseId": "30829", + "text": "HEMOGLOBIN NORFOLK" + }, + { + "baseId": "30829", + "text": "HEMOGLOBIN J (NORFOLK)" + }, + { + "baseId": "30829", + "text": "HEMOGLOBIN KAGOSHIMA" + }, + { + "baseId": "30829", + "text": "HEMOGLOBIN NISHIK" + }, + { + "baseId": "30830", + "text": "HEMOGLOBIN NOUAKCHOTT" + }, + { + "baseId": "30831", + "text": "HEMOGLOBIN NUNOBIKI" + }, + { + "baseId": "30832", + "text": "HEMOGLOBIN O (INDONESIA)" + }, + { + "baseId": "30832", + "text": "HEMOGLOBIN O (BUGINESE-X)" + }, + { + "baseId": "30832", + "text": "HEMOGLOBIN BUGINESE-X" + }, + { + "baseId": "30832", + "text": "HEMOGLOBIN O (OLIVIERE)" + }, + { + "baseId": "30832", + "text": "HEMOGLOBIN OLIVIERE" + }, + { + "baseId": "30833", + "text": "HEMOGLOBIN O (PADOVA)" + }, + { + "baseId": "30834", + "text": "HEMOGLOBIN OGI" + }, + { + "baseId": "30834", + "text": "HEMOGLOBIN QUEENS" + }, + { + "baseId": "30835", + "text": "HEMOGLOBIN OLEANDER" + }, + { + "baseId": "30836", + "text": "HEMOGLOBIN OTTAWA" + }, + { + "baseId": "30836", + "text": "HEMOGLOBIN SIAM" + }, + { + "baseId": "30837", + "text": "HEMOGLOBIN OWARI" + }, + { + "baseId": "30838", + "text": "HEMOGLOBIN PERSPOLIS" + }, + { + "baseId": "30839", + "text": "HEMOGLOBIN PETAH TIKVA" + }, + { + "baseId": "30840", + "text": "HEMOGLOBIN PONTOISE" + }, + { + "baseId": "30840", + "text": "HEMOGLOBIN J (PONTOISE)" + }, + { + "baseId": "30841", + "text": "HEMOGLOBIN PORT PHILLIP" + }, + { + "baseId": "30842", + "text": "HEMOGLOBIN Q (INDIA)" + }, + { + "baseId": "30843", + "text": "HEMOGLOBIN Q (IRAN)" + }, + { + "baseId": "30844", + "text": "HEMOGLOBIN REIMS" + }, + { + "baseId": "30845", + "text": "HEMOGLOBIN RUSS" + }, + { + "baseId": "30846", + "text": "HEMOGLOBIN SASSARI" + }, + { + "baseId": "30847", + "text": "HEMOGLOBIN SAVARIA" + }, + { + "baseId": "30848", + "text": "HEMOGLOBIN SAWARA" + }, + { + "baseId": "30849", + "text": "HEMOGLOBIN SETIF" + }, + { + "baseId": "30850", + "text": "HEMOGLOBIN SHAARE ZEDEK" + }, + { + "baseId": "30851", + "text": "HEMOGLOBIN SHENYANG" + }, + { + "baseId": "30852", + "text": "HEMOGLOBIN SHIMONOSEKI" + }, + { + "baseId": "30852", + "text": "HEMOGLOBIN HIKOSHIMA" + }, + { + "baseId": "30853", + "text": "HEMOGLOBIN SHUANGFENG" + }, + { + "baseId": "30854", + "text": "HEMOGLOBIN SINGAPORE" + }, + { + "baseId": "30855", + "text": "HEMOGLOBIN ST. CLAUDE" + }, + { + "baseId": "30856", + "text": "HEMOGLOBIN ST. LUKE'S" + }, + { + "baseId": "30857", + "text": "HEMOGLOBIN STANLEYVILLE-II" + }, + { + "baseId": "30858", + "text": "HEMOGLOBIN STRUMICA" + }, + { + "baseId": "30858", + "text": "HEMOGLOBIN SERBIA" + }, + { + "baseId": "30859", + "text": "HEMOGLOBIN SUNSHINE SETH" + }, + { + "baseId": "30860", + "text": "HEMOGLOBIN SURESNES" + }, + { + "baseId": "30861", + "text": "HEMOGLOBIN SWAN RIVER" + }, + { + "baseId": "30862", + "text": "HEMOGLOBIN THAILAND" + }, + { + "baseId": "30863", + "text": "HEMOGLOBIN TITUSVILLE" + }, + { + "baseId": "30864", + "text": "HEMOGLOBIN TOKONAME" + }, + { + "baseId": "30865", + "text": "HEMOGLOBIN TORINO" + }, + { + "baseId": "30866", + "text": "HEMOGLOBIN TOTTORI" + }, + { + "baseId": "30867", + "text": "HEMOGLOBIN TOYAMA" + }, + { + "baseId": "30868", + "text": "HEMOGLOBIN TWIN PEAKS" + }, + { + "baseId": "30869", + "text": "HEMOGLOBIN WUMING" + }, + { + "baseId": "30869", + "text": "HEMOGLOBIN J (WENCHANG-WUMING)" + }, + { + "baseId": "30870", + "text": "HEMOGLOBIN UBE-2" + }, + { + "baseId": "30871", + "text": "HEMOGLOBIN UBE-4" + }, + { + "baseId": "30872", + "text": "HEMOGLOBIN WESTMEAD" + }, + { + "baseId": "30873", + "text": "HEMOGLOBIN WINNIPEG" + }, + { + "baseId": "30874", + "text": "HEMOGLOBIN WOODVILLE" + }, + { + "baseId": "30875", + "text": "HEMOGLOBIN ZAMBIA" + }, + { + "baseId": "30876", + "text": "HEMOGLOBIN BELLIARD" + }, + { + "baseId": "30877", + "text": "HEMOGLOBIN TONOSHO" + }, + { + "baseId": "30878", + "text": "HEMOGLOBIN FUKUTOMI" + }, + { + "baseId": "30879", + "text": "HEMOGLOBIN PORT HURON" + }, + { + "baseId": "30880", + "text": "HEMOGLOBIN PAVIE" + }, + { + "baseId": "30881", + "text": "HEMOGLOBIN QUESTEMBERT" + }, + { + "baseId": "30882", + "text": "HEMOGLOBIN THIONVILLE" + }, + { + "baseId": "30883", + "text": "HEMOGLOBIN KANAGAWA" + }, + { + "baseId": "30884", + "text": "HEMOGLOBIN TURRIFF" + }, + { + "baseId": "30885", + "text": "HEMOGLOBIN ZAIRE" + }, + { + "baseId": "30886", + "text": "HEMOGLOBIN LUTON" + }, + { + "baseId": "30887", + "text": "HEMOGLOBIN OZIERI" + }, + { + "baseId": "30888", + "text": "HEMOGLOBIN ADANA" + }, + { + "baseId": "30889", + "text": "HEMOGLOBIN AL-AIN ABU DHABI" + }, + { + "baseId": "30890", + "text": "HEMOGLOBIN POITIERS" + }, + { + "baseId": "30891", + "text": "HEMOGLOBIN CAEN" + }, + { + "baseId": "30892", + "text": "HEMOGLOBIN YUDA" + }, + { + "baseId": "30893", + "text": "HEMOGLOBIN CAPA" + }, + { + "baseId": "30894", + "text": "HEMOGLOBIN MONTEFIORE" + }, + { + "baseId": "30895", + "text": "HEMOGLOBIN ROUEN" + }, + { + "baseId": "30895", + "text": "HEMOGLOBIN ETHIOPIA" + }, + { + "baseId": "30896", + "text": "HEMOGLOBIN MELUSINE" + }, + { + "baseId": "30897", + "text": "HEMOGLOBIN TAYBE" + }, + { + "baseId": "30898", + "text": "HEMOGLOBIN CEMENELUM" + }, + { + "baseId": "30899", + "text": "HEMOGLOBIN RAMONA" + }, + { + "baseId": "30900", + "text": "HEMOGLOBIN TATRAS" + }, + { + "baseId": "30901", + "text": "HEMOGLOBIN LISBON" + }, + { + "baseId": "30902", + "text": "HEMOGLOBIN ROANNE" + }, + { + "baseId": "30903", + "text": "HEMOGLOBIN MALHACEN" + }, + { + "baseId": "30904", + "text": "HEMOGLOBIN TUNIS-BIZERTE" + }, + { + "baseId": "30905", + "text": "HEMOGLOBIN BOIS GUILLAUME" + }, + { + "baseId": "30906", + "text": "HEMOGLOBIN MANTES-LA-JOLIE" + }, + { + "baseId": "30907", + "text": "HEMOGLOBIN MOSELLA" + }, + { + "baseId": "30908", + "text": "HEMOGLOBIN FUCHU-I" + }, + { + "baseId": "30909", + "text": "HEMOGLOBIN FUCHU-II" + }, + { + "baseId": "30910", + "text": "HEMOGLOBIN GOUDA" + }, + { + "baseId": "30911", + "text": "HEMOGLOBIN J (BISKRA)" + }, + { + "baseId": "30912", + "text": "HEMOGLOBIN GODAVARI" + }, + { + "baseId": "30913", + "text": "HEMOGLOBIN OITA" + }, + { + "baseId": "30914", + "text": "HEMOGLOBIN AGHIA SOPHIA" + }, + { + "baseId": "30915", + "text": "HEMOGLOBIN CHAROLLES" + }, + { + "baseId": "30916", + "text": "HEMOGLOBIN ROUBAIX" + }, + { + "baseId": "30917", + "text": "HEMOGLOBIN DOUALA" + }, + { + "baseId": "30920", + "text": "HEMOGLOBIN DELFZICHT" + }, + { + "baseId": "30921", + "text": "HEMOGLOBIN SARATOGA SPRINGS" + }, + { + "baseId": "30922", + "text": "HEMOGLOBIN DIE" + }, + { + "baseId": "30923", + "text": "HEMOGLOBIN BEZIERS" + }, + { + "baseId": "30924", + "text": "HEMOGLOBIN BUFFALO" + }, + { + "baseId": "30925", + "text": "HEMOGLOBIN VILLEURBANNE" + }, + { + "baseId": "30926", + "text": "HEMOGLOBIN TOKYO" + }, + { + "baseId": "30927", + "text": "HEMOGLOBIN TAMANO" + }, + { + "baseId": "30928", + "text": "HEMOGLOBIN RICCARTON" + }, + { + "baseId": "30929", + "text": "HEMOGLOBIN OEGSTGEEST" + }, + { + "baseId": "30930", + "text": "HEMOGLOBIN LAMEN ISLAND" + }, + { + "baseId": "30932", + "text": "HEMOGLOBIN AUCKLAND" + }, + { + "baseId": "30934|30935", + "text": "Heme oxygenase 1 deficiency" + }, + { + "baseId": "30936", + "text": "Pulmonary disease, chronic obstructive, susceptibility to" + }, + { + "baseId": "30937", + "text": "HAPTOGLOBIN, ALPHA-1, FAST-SLOW POLYMORPHISM" + }, + { + "baseId": "30938", + "text": "Haptoglobin, alpha-2" + }, + { + "baseId": "30939|30940|30941|227380", + "text": "Anhaptoglobinemia" + }, + { + "baseId": "30939", + "text": "Hypohaptoglobinemia" + }, + { + "baseId": "30942|30943", + "text": "Granulosa cell tumor of the ovary" + }, + { + "baseId": "30942|30943", + "text": "Thecoma, somatic" + }, + { + "baseId": "30945", + "text": "Ventricular tachycardia, somatic" + }, + { + "baseId": "30949|30955|30956|77518|77520|77561|317865|317866|317877|317878|317884|317886|317888|317890|317901|317902|325742|325744|325757|325760|331990|331994|331999|332000|332003|332006|332018|332032|332034|333500|333506|333512|333518|870136|870137|870138|870139|870140|870141|870142|870143|872262", + "text": "Nonepidermolytic palmoplantar keratoderma" + }, + { + "baseId": "30957", + "text": "Keratosis palmoplantaris striata 3" + }, + { + "baseId": "30958", + "text": "Ichthyosis histrix, curth-macklin type" + }, + { + "baseId": "30960", + "text": "Epidermolytic hyperkeratosis, late-onset" + }, + { + "baseId": "30961|30962|30963|30964|192402|194412|195978|249359|249360|249361|275830|275837|275838|275972|276046|276047|276058|276059|276074|513227|612232|612233|612234|612235|612236|612237|612238|612239|612240|612241|612242|612243|612244|612245|612246|612247|612248|612249|612250|800346|861875|861876|861877|861878|861879|861880|861881|864958|864959|864960", + "text": "Achromatopsia 4" + }, + { + "baseId": "30965|188775|291123|291124|291125|291130|291131|291137|291139|292094|292096|292101|292117|292118|292119|292121|292122|295451|295455|295471|295472|295475|295476|295477|295492|295493|295500|295503|295638|295642|295646|295648|295649|295650|295656|295667|481553|622331|889391|889392|889393|889394|889395|889396|889397|889398|889399|889400|889401|889402|889403|889404|891690", + "text": "Congenital stationary night blindness, autosomal dominant 3" + }, + { + "baseId": "30966|30967|30968|30969|30970|30971|30977|30978|30979|30985|30986|30987|30988|30989|30990|30992|30996|30997|205793|213658|424627|623387|677060|679724|742480|804854|804855|805116|964535|969616", + "text": "Pseudohypoparathyroidism" + }, + { + "baseId": "30967|30968|30977|30979|30980|30981|30982|30986|30987|30989|30992|205793|424627|440007|575506|609150|622923|969617|983470", + "text": "Pseudopseudohypoparathyroidism" + }, + { + "baseId": "30968|30977|30988|30991", + "text": "Progressive osseous heteroplasia" + }, + { + "baseId": "30972|30973|30974|30976|30984|206650|206651|206652|206653|612198|791993|791994", + "text": "McCune-Albright syndrome" + }, + { + "baseId": "30972|30973", + "text": "Sex cord-stromal tumor" + }, + { + "baseId": "30972|30973|30976", + "text": "Cushing's syndrome" + }, + { + "baseId": "30972|30973|30974|30975", + "text": "Pituitary adenoma 3, multiple types" + }, + { + "baseId": "30976", + "text": "PITUITARY TUMOR 3, GROWTH HORMONE-SECRETING, SOMATIC" + }, + { + "baseId": "30976", + "text": "Polyostotic fibrous dysplasia, somatic, mosaic" + }, + { + "baseId": "30983", + "text": "PSEUDOHYPOPARATHYROIDISM, TYPE IA, WITH TESTOTOXICOSIS" + }, + { + "baseId": "30994", + "text": "Prolonged bleeding time, brachydactyly, and mental retardation" + }, + { + "baseId": "30998|38700|38701|38702|213658", + "text": "Pseudohypoparathyroidism type 1C" + }, + { + "baseId": "31000", + "text": "GMP REDUCTASE POLYMORPHISM" + }, + { + "baseId": "31001|31002|31003|31004|132698|132703|132705|132706|153653|273740|346745|426238|971087", + "text": "Ateleiotic dwarfism" + }, + { + "baseId": "31005|31006|31015|44937|44938|44939|44940|71561|94317|171271|171272|171273|195265|195598|268806|271375|273740|302808|302809|306162|306163|306164|306165|310912|310914|310916|310923|310924|311095|311098|311103|311105|311115|346745|588296|614551|620259|620260|744281|750614|897984|897985|897986|897987|897988|897989|897990|897991|897992|897993|897994|897995|897996|897997|897998|897999|898000|898001|898002|900353|900354|900355|900356", + "text": "Isolated growth hormone deficiency type 1B" + }, + { + "baseId": "31007|31009|31010|31011|31012|31014|31016|31017|31018|31019|31021|31022|31023|31024|192241|273740|346745", + "text": "Autosomal dominant isolated somatotropin deficiency" + }, + { + "baseId": "31008|31013|31020|273740|346745", + "text": "Short stature due to growth hormone qualitative anomaly" + }, + { + "baseId": "31025|31026|31027", + "text": "GC1/GC2 POLYMORPHISM" + }, + { + "baseId": "31028|31029|31030|31031|31032|31033|31034", + "text": "Isolated growth hormone deficiency, type 4" + }, + { + "baseId": "31038|31039|31040|31041|31042|209858|209860|209861|239859|239860|239861|239862|239863|239864|239865|298319|298323|298324|298325|298328|298331|298335|298336|298339|298340|298348|298354|300625|300626|300636|300637|300639|300640|304909|304910|304913|304923|304948|304960|304961|304962|304965|304969|304972|304988|304989|305124|305125|305133|305146|305149|305150|305151|305155|305168|305169|305172|305175|305183|305187|395154|395163|395638|395639|453625|455058|455059|455063|455250|455262|455718|455721|455724|455972|455980|455980|455987|455990|455994|514268|521254|521256|521258|521545|521548|521618|521864|521865|521866|560385|560387|560389|560391|560393|560496|560498|563237|563246|563251|565202|565211|634451|634452|634454|634456|634457|634458|634459|634461|634462|634463|634464|651332|651385|651395|651399|651484|651486|683746|683747|894835|894836|894837|894838|894839|894841|894842|894843|894844|894845|894846|894847|894848|894849|894850|894851|894852|894853|896143|961821|961822|975858", + "text": "Capillary malformation-arteriovenous malformation 1" + }, + { + "baseId": "31043", + "text": "GNB3 POLYMORPHISM" + }, + { + "baseId": "31044", + "text": "Hereditary neutrophilia" + }, + { + "baseId": "31045|31046|31047|31048|31049|31050|31051|31052|31053|31053|31058|31059|31060|31061|38697|38697|38698|104011|104012|104012|104015|104015|104017|104018|104022|104023|104026|104027|104027|104029|104036|104036|104037|104042|104042|104044|104049|104051|104051|104055|104057|104057|104061|104069|104070|104070|104072|104072|104073|104073|104074|104076|104081|104081|104083|104138|104138|191016|193498|193498|199868|199869|256200|256200|256201|256201|256202|256202|328684|328690|328691|338668|338672|344735|344739|344741|344743|346134|346138|346138|430968|441960|441962|445782|445783|468266|480432|480432|531144|571526|571530|571532|577633|577634|577635|577635|577636|580331|580331|580334|580336|580372|580515|620591|646081|646082|646083|646084|646084|646085|646086|653280|694088|776327|791780|791781|798712|798713|798714|798715|798716|821098|845492|845493|852752|877735|877736|877737|877737|877738|877739|877740|877741|877742|877743|877744|877745|877746|877747|877748|880532|880533|880534|880535|880536|880537|928337|928338|928339|928340|937984|937985|964880|971080", + "text": "Grn-related frontotemporal lobar degeneration with Tdp43 inclusions" + }, + { + "baseId": "31053|31059|38697|104012|104015|104017|104018|104023|104027|104036|104037|104042|104049|104051|104055|104057|104070|104072|104073|104081|104083|104138|191016|193498|256200|256201|256202|346138|441960|441962|445782|445783|468266|480432|513644|531144|571526|571530|571532|577635|577636|580331|580334|580336|580372|580515|646081|646082|646083|646084|646085|646086|653280|694088|776327|821098|845492|845493|852752|877737|919732|928337|928338|928339|928340|937984|937985", + "text": "Ceroid lipofuscinosis, neuronal, 11" + }, + { + "baseId": "31054|31056|31059|104138", + "text": "Primary progressive aphasia" + }, + { + "baseId": "31062|31063|31064|31065|31066|31067|31068|31069|31070|31071|31072|31073|31075|31321|31338|38410|40123|132059|132060|150301|150302|178326|178329|178331|178333|178334|178335|178336|178337|178338|178341|178342|178343|181427|263181|269442|293990|293993|293994|294007|294008|294016|294023|294024|294025|294039|294055|294056|295417|295419|295420|295422|295424|295441|295462|295468|295484|295487|295504|295507|295508|295509|299209|299211|299215|299216|299217|299227|299229|299236|299238|299242|299243|299245|299247|299248|299255|299257|299258|299261|299264|299265|299273|299275|299278|299279|299280|299281|299283|299284|299286|299287|299288|299291|361060|361062|443633|482006|620173|626007|697013|709414|790043|790044|892069|892070|892071|892072|892073|892074|892075|892076|892077|892078|892079|892080|892081|892082|892083|892084|892085|892086|892087|892088|892089|892090|892091|892092|892093|892094|892095|892096|892097|892098|892099|892100|892101|892102|892103|892104|919116|919258", + "text": "Hypogonadotropic hypogonadism 7 with or without anosmia" + }, + { + "baseId": "31062", + "text": "Isolated congenital hypogonadotropic hypogonadism" + }, + { + "baseId": "31062", + "text": "Gonadotropin deficiency" + }, + { + "baseId": "31070|294004|294014|294021|294042|295463|296541|296564|299213|299239|299240|299263|299268|299274|299282|299297|305011|308722|308723|313876", + "text": "Isolated GnRH Deficiency" + }, + { + "baseId": "31076", + "text": "Autism 1" + }, + { + "baseId": "31077|31078", + "text": "Macrothrombocytopenia, familial, Bernard-Soulier type" + }, + { + "baseId": "31079|31080|169754", + "text": "Bernard-Soulier syndrome, type B" + }, + { + "baseId": "31079|801171", + "text": "Increased mean platelet volume" + }, + { + "baseId": "31081", + "text": "APOH POLYMORPHISM" + }, + { + "baseId": "31082|31083|31084", + "text": "Leanness, susceptibility to" + }, + { + "baseId": "31088|31089|31090|31091|31092|31093|31094|31095|89845|141225|141226|141227|141228|141229|141230|141231|141232|141233|196321|211598|211602|211606|211608|254474|254479|254481|254482|254483|254486|316622|316623|316625|316626|316636|316637|316658|316660|316661|316662|324114|324116|324119|324120|324121|324132|324133|324139|324142|324145|324146|330088|330089|330090|330095|330097|330099|330101|330115|330118|330130|330132|331529|331530|331531|331535|331537|331550|389203|527028|527553|565368|565372|566747|571733|620438|620847|641012|641013|641014|641015|652231|725041|725042|738591|753301|769040|839776|852478|869647|869648|869649|869650|869651|869652|869653|869654|869655|869656|869657|869658|869659|872225|926587|936072|936073|947957|956843", + "text": "Glycogen storage disease due to hepatic glycogen synthase deficiency" + }, + { + "baseId": "31096|133691|166213|193499|334005|334009|334013|334015|334019|334021|334025|334027|334039|334040|334041|334047|334049|343936|343937|343944|343948|343949|343952|343954|343956|343963|343968|343969|343974|343975|349230|349231|349233|349234|349235|349236|349239|349240|349243|349244|350174|350175|350178|350181|350183|350185|350188|350189|350192|350196|350198|350199|353504|353506|353510|353514|353516|377804|377807|379611|422291|446160|489591|507892|507896|533220|572592|572594|572602|575003|576186|648222|648223|648224|648225|648226|648227|648228|648229|648230|648231|648232|656584|742042|742043|742045|742046|757166|797887|821275|821276|821277|847814|847815|847816|847817|847818|847819|847820|847821|847822|847823|847824|847825|847826|847827|847828|851821|852981|882269|882270|882271|882272|882273|882274|882275|882276|882277|882278|882279|882280|882281|882282|882283|882284|882285|882286|882287|882288|882289|882290|882291|882292|882293|882294|882295|882296|882297|882914|882915|929015|929016|929017|929018|929019|929020|929021|929022|929023|938761|938762|938763|938764|938765|938766|938767|938768|938769|940486|940487|941236|950843|950844|950845|950846|958680|958681|958682|958683|958684|958685", + "text": "Glycogen storage disease 0, muscle" + }, + { + "baseId": "31097|31098|40211|292638|292641|292642|292643|292645|292646|292647|292659|292660|292667|292668|292671|294019|294020|294030|294031|294032|294033|294034|294036|294037|294041|294043|294044|294045|297419|297427|297428|297432|297437|297452|297475|297476|297477|297482|297500|297503|297505|297506|297507|519795|519811|520102|559623|563549|563550|632061|632062|632063|651253|698406|709209|720811|734503|748789|764363|790447|828912|828913|890331|890332|890333|890334|890335|890336|890337|890338|890339|890340|890341|890342|890343|890344|890345|890346|890347|890348|890349|891759|891760|923451|953707", + "text": "Hyperekplexia 2" + }, + { + "baseId": "31100", + "text": "Sleep myoclonus" + }, + { + "baseId": "31114|31115", + "text": "Factor B fast/slow polymorphism" + }, + { + "baseId": "31114", + "text": "BF*FA/S" + }, + { + "baseId": "31114|31115|31116|59798|59799|139353|139354|139355|139356|139357|227292|278181|278610|293309|299776|299781|299782|299793|299794|299798|299817|302372|302388|306762|306777|307093|307117|334509|334907|344343|344359|344383|344771|349452|350459|353745|353749|439576|496599", + "text": "Atypical hemolytic uremic syndrome" + }, + { + "baseId": "31114|31115|31116|31118|31119|227292|227293|299798|299800|299801|299802|299808|299809|299810|299817|299818|299823|299824|299825|299832|302401|302405|302413|302414|306782|306810|306818|306821|306823|306824|306825|306828|306830|307103|307110|307117|307120|307123|307132|354166|354167|818242|818243|818244|895776|895782|895783|895784|895785|895786|895787|895788|895789|895790|895791|895792|895793|896219|980458", + "text": "Atypical hemolytic-uremic syndrome 4" + }, + { + "baseId": "31121", + "text": "GLUTATHIONE PEROXIDASE POLYMORPHISM" + }, + { + "baseId": "31122|31123|38689|277506|277509|277514|277529|277538|277542|277543|277545|277558|277563|277566|277583|277587|277589|277593|277594|277595|277605|277624|277625|277629|277630|277633|277634|277635|277636|277637|277700|277702|277718|277719|277729|277731|277736|277738|277745|277746|277755|277756|277764|277765|277766|277767|277770|277771|277776|277777|277780|278609|278611|278615|278617|278618|278619|278620|278621|278623|278633|278646|278648|278651|278652|278653|278664|278665|278666|278668|278673|278686|278687|278695|278698|278699|278708|278709|278711|278712|278720|278721|278722|278734|278735|278739|278741|278742|278743|278745|278747|278748|278749|278773|353070|578371|706912|731905|862869|862870|862871|862872|862873|862874|862875|862876|862877|862878|862879|862880|862881|862882|862883|862884|862885|862886|862887|862888|862889|862890|862891|862892|862893|862894|862895|862896|862897|862898|862899|862900|862901|862902|862903|862904|862905|862906|862907|862908|930178|941592", + "text": "Congenital brain dysgenesis due to glutamine synthetase deficiency" + }, + { + "baseId": "31124|31125|38682|166329|166330|213604|213762|213763|213905|213920|253949|253951|253951|253952|311775|311779|311782|311782|311783|311783|311797|311799|311800|311800|311803|311811|317390|317392|317397|317399|317399|317400|317402|317414|317414|323413|323420|323423|323424|323424|323427|323434|323434|323437|323446|323455|323462|324029|324030|324046|324059|324060|324061|324069|324069|324070|324070|324072|324075|371913|373610|373610|373621|373621|373627|413295|421812|434637|437871|437871|460344|460358|460416|460700|460701|461164|461165|461169|502966|503312|503866|525626|525626|550619|566648|566650|566654|566655|566660|569906|569909|621898|626418|639320|639321|639322|639323|639324|639326|652348|652348|665615|692901|692902|692903|712533|712534|724130|775702|783785|798629|837521|837522|837523|837524|837525|837526|837527|859828|866634|866635|866636|866637|866638|866639|866640|866641|866642|866643|866644|866645|868543|868544|868545", + "text": "Cutis laxa, autosomal recessive IIIA" + }, + { + "baseId": "31126|187134", + "text": "Mental retardation, autosomal recessive 6" + }, + { + "baseId": "31127", + "text": "GLUTAMIC PYRUVATE TRANSAMINASE POLYMORPHISM" + }, + { + "baseId": "31130|31131|31132|31134|31135|31136|31137|31138|31139|31140|31141|31142|31143|135795|135796|135797|135798|196172|251001|251002|251003|251004|251005|251006|289481|289486|289488|289491|289503|289506|289507|289509|289510|290252|290253|290255|290256|290257|290258|290259|290263|290265|290266|290278|290279|290281|293350|293361|293363|293768|293770|293771|293772|293774|293777|293778|293779|293779|293780|293787|293788|293798|414921|414921|418963|438543|451944|493692|500665|513047|513531|513532|518977|519148|519152|539992|558836|558838|559379|561258|620121|631046|748097|779098|827709|851548|888366|888367|888368|888369|888370|888371|888372|888373|888374|888375|888376|888377|888378|888379|888380|888381|888382|888383|888384|891619", + "text": "Fanconi-Bickel syndrome" + }, + { + "baseId": "31144|31145|31146|31149|31150|31152|31153|31157|101305|101306|101310|101311|101312|101313|101315|101316|101317|102597|142857|142858|142862|142864|142869|142870|142871|167987|167988|167989|167990|167991|167993|167994|167995|167996|195706|196002|196003|198605|201142|201142|201149|201150|201157|201160|201163|201165|201169|201170|201174|201177|206798|206799|237523|259669|264004|271180|280556|280569|280577|280578|280583|280585|280596|280599|280600|281019|281020|281021|281036|281037|281040|281041|281050|281051|281052|281063|281065|281070|282308|282314|282331|282346|282347|282558|282560|282561|282562|282566|282567|282568|282579|391203|434754|442473|481468|486609|498499|515910|536593|556476|589826|611376|614219|614220|622863|627870|627878|653850|789966|789967|789968|789969|794674|798473|798474|864437|864438|864439|864440|864441|864442|864443|864444|864445|864446|864447|864448|864449|864450|864451|864452|864453|961587|963494|964156|964157|980580", + "text": "GLUT1 deficiency syndrome 1" + }, + { + "baseId": "31147|31148|31152|31156|31157|31158|31159|45874|45875|101305|101306|101307|101309|101311|101314|101315|101316|101317|102597|102598|142858|142859|142860|142861|142862|142863|142864|142866|142868|142869|142870|142871|167990|167992|167994|194443|195356|195704|195706|196003|201124|201125|201126|201127|201128|201129|201131|201132|201133|201137|201142|201147|201148|201149|201157|201163|201166|201168|201169|201170|206798|206799|238281|238282|264004|271180|280596|360813|365203|365206|365230|365276|365280|365281|365283|365284|365294|391203|391208|391241|391243|427818|434754|437804|440512|442473|447914|448081|448082|448091|448139|448231|448233|485999|486000|498499|498697|511275|511276|514877|515884|515892|515900|515901|515902|515903|515907|515908|515910|515912|515913|515941|515946|515954|516000|516001|516002|536593|556501|557059|557061|557063|557272|557274|557276|557278|557333|557335|557337|557339|557341|558517|578807|627861|627862|627863|627864|627865|627866|627867|627868|627869|627870|627871|627872|627873|627874|627875|627876|627877|627878|627879|627880|627881|650715|683328|685733|685734|690604|690605|696749|746481|800985|818967|818968|818969|823981|823982|823983|823984|823985|823986|823987|823988|823989|823990|823991|850969|851303|922023|922024|922025|922026|922027|922028|922029|930490|930491|930492|930493|930494|939814|941945|941946|941947|941948|941949|941950|952414|952415|952416|952417|959556", + "text": "GLUT1 deficiency syndrome 1, autosomal recessive" + }, + { + "baseId": "31151|31152|31153|31154|31155|31156|31157|31158|38678|102597|196002|196003|201142|201142|201157|201174|206798|225820|225834|280596|391203|426739|434754|611376|614219|614220|800753|816520|858512|961587|965620|977176", + "text": "GLUT1 deficiency syndrome 2" + }, + { + "baseId": "31157|45874|101305|101306|101310|101311|101312|101313|101315|101316|101317|102597|142857|142858|142864|142869|142870|142871|167990|167993|195706|196002|196003|201142|201149|201157|201163|201165|201169|201170|201174|201177|206798|206799|271180|280556|280569|280577|280578|280583|280585|280596|280599|280600|281019|281020|281021|281036|281037|281040|281041|281050|281051|281052|281063|281065|281070|282308|282314|282331|282346|282347|282558|282560|282561|282562|282566|282567|282568|282579|391203|434754|498499|515910|536593|611376|614219|614220|794674|823985|864437|864438|864439|864440|864441|864442|864443|864444|864445|864446|864447|864448|864449|864450|864451|864452|864453|961587", + "text": "Dystonia 9" + }, + { + "baseId": "31157|102597|196002|196003|196003|201142|201157|201174|206798|215041|215042|391203|611376|614219|614220|961587", + "text": "Stomatin-deficient cryohydrocytosis with neurologic defects" + }, + { + "baseId": "31160|31161|31162|31163|31164|31165|31166|31167|31168|134607|134608|134609|134610|207795|227339|227919|253899|311493|311494|311495|311501|311503|317060|317061|317062|317073|317074|317075|317076|317078|317079|323058|323059|323061|323062|323078|323091|323655|323667|323669|323676|323677|323695|323696|323699|407950|525575|525886|539030|577159|639258|639259|744467|768029|783762|837407|837408|866477|866478|866479|866480|866481|866482|866483|866484|866485|866486|866487|866488|866489|868526|868527|919300|956261|956262|970923", + "text": "Hyperinsulinism-hyperammonemia syndrome" + }, + { + "baseId": "31160", + "text": "Familial hyperinsulinemia" + }, + { + "baseId": "31169|31170|40268|40269|40270|40271|189064", + "text": "Cortisone reductase deficiency 1" + }, + { + "baseId": "31171|31173|31174|31175|31176|31177|31178|31180|31184|44827|44828|44829|44830|44831|44832|44834|44835|44836|44837|44838|44839|44840|44841|44842|44843|44844|44845|44846|44847|44848|44849|44850|44851|44852|44853|44854|44855|44856|44857|44858|44859|44860|44861|44862|44863|44864|44864|44865|44866|44867|44868|44869|44870|44871|44872|44873|44874|44875|44876|44877|44878|44879|44880|44881|44882|44884|44886|44887|44888|44889|44890|44891|44892|44893|44894|44895|44896|44898|44899|44900|44901|44902|44903|44904|44905|44906|44907|44907|44908|44909|44910|44911|44912|44913|44914|44915|44916|44917|44918|44919|44920|44921|44922|44923|44924|44925|44926|44927|44928|44929|44930|44931|44932|44933|44934|44935|48358|134590|134590|134593|207484|207485|207486|217193|236860|237582|237750|252883|252884|259865|303069|303070|303071|303072|303073|303074|306341|306345|306346|306347|311169|311170|311172|311173|311302|311303|311306|311310|311312|380268|380270|380271|407147|407150|415104|421632|425758|428721|428722|428724|428725|428726|428727|428729|428730|428730|428732|428733|428734|428735|428737|428738|441126|513065|513066|513067|576978|609049|609050|611361|619858|759683|790723|790724|790725|792671|793237|793240|898116|898117|898118|898119|898120|898121|898122|898123|898124|898125|898126|898127|898128|898129|898130|898131|898132|898133|898134|900365|900366|900367|900368|904271|961068|961069|961070|961071|961072|961073|961074|961075|961076|961077|961078|961285|961569|964289|964290|964291|969738", + "text": "Maturity-onset diabetes of the young, type 2" + }, + { + "baseId": "31173|31180", + "text": "Permanent neonatal diabetes mellitus 1" + }, + { + "baseId": "31179|31182|31183|31185|44864|44866|44870|44872|44877|44886|44899|44906|44907|134590|134593|207485|252883|252884|259865|303069|303070|303071|303072|303073|303074|306341|306345|306346|306347|311169|311170|311172|311173|311302|311303|311306|311310|311312|428720|428723|428730|428735|428737|428738|441126|576978|759683|898116|898117|898118|898119|898120|898121|898122|898123|898124|898125|898126|898127|898128|898129|898130|898131|898132|898133|898134|900365|900366|900367|900368", + "text": "Hyperinsulinism due to glucokinase deficiency" + }, + { + "baseId": "31186|31187|31189|31190|31191|31193|31194|31195|31196|31197|165651|295714|295715|295719|295722|295723|295724|295730|295732|295736|295739|295748|295751|295752|295753|295757|295758|295762|295768|295769|297551|297552|297556|297558|297561|297563|297566|297581|297582|297583|301396|301399|301400|301404|301406|301408|301410|301419|301420|301423|301424|301426|301445|301446|301447|301450|301454|301455|301472|301597|301598|301600|301601|301604|301625|301626|301641|301646|301647|301648|301650|301653|301665|301678|301679|721273|734895|749285|764933|893142|893143|893144|893145|893146|893147|893148|893149|893150|893151|893152|893153|893154|893155|893156|893157|893158|893159|893160|893161|893162|893163|893164|893165|893166|893167|893168|893169|893170|893171|893172|893173|893174|893175|893176|893177|893178|893179|893180|893181|893182|893183|893184|893185|893186|893187|893188|893189|893190|893191|893192|893193|893194|893195|896053|896054", + "text": "Glucocorticoid resistance, generalized" + }, + { + "baseId": "31188", + "text": "Glucocorticoid resistance, cellular" + }, + { + "baseId": "31189", + "text": "GLUCOCORTICOID RECEPTOR POLYMORPHISM" + }, + { + "baseId": "31192", + "text": "Pseudohermaphroditism, female, with hypokalemia, due to glucocorticoid resistance" + }, + { + "baseId": "31193", + "text": "Glucocorticoid resistance, relative" + }, + { + "baseId": "31199|31200|31201|31202|31203|31204|31205|46909|46910|46911|46912|46913|46914|46915|46916|46917|46918|46919|46920|46921|46922|192333|210810|210811|244007|267822|268397|274680|285823|285827|286553|286555|286556|286557|286561|288795|288797|288800|289216|366331|366592|367172|405707|405708|405709|512982|512983|512984|512985|512986|512987|512988|585073|586019|623131|623132|679728|682251|682252|682253|682254|682255|682256|682257|691120|884563|884564|884565|884566|884567|884568|884569|884570|884571|975716", + "text": "Navajo neurohepatopathy" + }, + { + "baseId": "31206|31207|31208|31209|31210|31211|31212|31213|31214|31215|31216|31217|31218|77325|77326|77327|77328|77329|77330|77331|77332|77333|77334|77335|77336|77337|77338|77340|77344|77345|77349|77350|77351|77353|77354|77356|77357|77358|77360|77361|77362|77363|77364|77365|77367|77368|77369|77370|77372|77374|77375|77376|77377|77378|77381|77385|77388|77389|77390|77391|77392|77393|77394|77395|77396|77397|77398|77399|77401|77402|77404|77411|77412|188159|188160|188161|188162|188163|188164|188165|188166|188167|188168|188169|188170|188171|188172|188173|188174|188175|188176|188177|188178|188179|188180|188181|188182|188183|188184|188185|188186|188187|188188|188189|188190|188191|188192|188193|188194|227391|338735|344817|344820|346185|346206|361227|513469|539072|581912|624864|791783|794270|797549|906206|919735|919736", + "text": "Alexander Disease" + }, + { + "baseId": "31219|31220|306647|306648|306655|306657|306659|306660|306664|306665|306668|306669|306671|310827|310837|310838|310839|310843|310845|310849|316265|316276|316285|316287|316291|316292|316295|316301|316316|316334|316335|316348|316349|316363|316367|316575|316581|316582|316583|316585|316592|316609|620317|711742|723308|730604|736859|751372|767080|900971|900972|900973|900974|900975|900976|900977|900978|900979|900980|900981|900982|900983|900984|900985|900986|900987|900988|900989|900990|900991|900992|900993|900994|900995|903307|903308|903309|919183|973055", + "text": "Meretoja syndrome" + }, + { + "baseId": "31221|31222|31223|31224|31225|31226|31227|31228|280953|280954|280955|280967|280969|281497|281502|281504|281507|281508|281509|281510|281525|282697|282703|282705|282706|282707|282724|282727|282728|282729|282734|282741|282978|282980|282981|282982|282992|282993|282995|719034|864652|864653|864654|864655|864656|864657|864658|864659|864660|864661|864662|864663", + "text": "Lattice corneal dystrophy Type III" + }, + { + "baseId": "31229", + "text": "Insomnia" + }, + { + "baseId": "31229|31230|224873|242024|242029|255128|255129|255130|361573|373352|373359|374006|374014|374442|376331|376332|376349|400043|400045|400054|400553|400863|400867|409197|441714|463963|464507|464510|464543|464546|464799|464804|464806|464808|482061|504698|505182|505188|505612|505615|528589|528596|528597|528603|528606|528618|528985|528994|529042|529054|529064|529066|539058|566890|566893|568627|568638|568640|569194|569227|569234|573144|573145|580235|643003|643004|643005|643006|643007|643008|643009|652637|656280|684532|688394|688395|770063|820670|820671|822099|822274|842093|842094|842095|842096|842097|842098|842099|842100|927261|927262|927263|936833|936834|936835|936836|936837|936838|948785|948786|957368|960817", + "text": "Epilepsy, childhood absence 1" + }, + { + "baseId": "31229|31230|31231|31232|205778|242024|242029|255128|255129|255130|361573|373352|373359|374006|374014|374442|376331|376332|376349|400043|400045|400054|400553|400863|400867|409197|429630|441714|463963|464507|464510|464543|464546|464799|464804|464806|464808|482061|504698|505182|505188|505612|505615|528589|528596|528597|528603|528606|528618|528985|528994|529042|529054|529064|529066|529066|566890|566893|568627|568638|568640|568640|569194|569227|569234|573144|573145|580235|643003|643004|643005|643006|643007|643008|643009|652637|656280|684532|688394|688395|770063|820670|820671|822099|822274|842093|842094|842095|842096|842097|842098|842099|842100|927261|927262|927263|936833|936834|936835|936836|936837|936838|948785|948786|957368|960817|963786", + "text": "Epilepsy, childhood absence 5" + }, + { + "baseId": "31233|31234|31236|31237|287336|287337|287342|287344|287348|287350|287355|287360|287362|287368|287370|287371|287378|287379|287382|287383|287385|287387|287388|287390|287395|287397|287409|287415|288088|288089|288090|288091|288092|288095|288099|288100|288103|288128|288145|288153|288159|288160|288162|288164|288167|288170|288171|288175|288189|288191|288192|288193|288201|290754|290762|290773|290804|290816|290817|290820|290821|290822|290836|290837|290841|290842|290844|290845|290846|290847|290848|290858|290860|290861|290862|290866|290867|291017|291018|291027|291028|291031|291032|291038|291041|291042|291057|291058|291060|291069|291071|291072|291073|291089|291091|291108|291110|291111|291114|620096|697687|885487|885488|885489|885490|885491|885492|885493|885494|885495|885496|885497|885498|885499|885500|885501|885502|885503|885504|885505|885506|885507|885508|885509|885510|885511|885512|885513|885514|885515|885516|885517|885518|885519|885520|885521|885522|885523|885524|885525|885526|885527|885528|885529|885530|885531|885532|885533|885534|885535|885536|885537|885538|885539|885540|885541|885542|885543|885544|885545|885546|885547|885548|885549|885550|885551|885552|885553|885554|885555|885556|885557|885558|885559|885560|885561|885562|885563|885564|885565|885566|885567|885568|887404|887405|887406|980316|980317", + "text": "Vitamin K-dependent clotting factors, combined deficiency of, 1" + }, + { + "baseId": "31235|31238|31239|31240|31241|31242|31243|31244|31245|983672|983674", + "text": "Pseudoxanthoma elasticum-like disorder with multiple coagulation factor deficiency" + }, + { + "baseId": "31246|31247|31247|31248|31249|31250|75270|99340|99341|99341|134572|134573|134573|134574|134575|141120|141124|141130|141132|177736|194858|201870|201876|201880|201881|201883|201884|201891|201892|201895|201896|201897|201898|201901|212514|239783|239784|266793|274648|298665|303103|368346|369732|394173|394844|394915|394920|395098|395103|395437|395439|406691|443745|453622|454805|455394|455395|455397|455659|486743|521227|521485|521493|521495|536690|560253|560255|560364|560366|563018|563022|565001|579117|614284|633701|633702|633703|633704|633705|633706|633707|633708|633709|633710|633711|633712|633713|661224|683728|685184|686717|686718|686720|689792|691815|782240|787275|793083|819569|819570|819571|819572|821913|830598|830599|830600|830601|830602|830603|830604|830605|830606|830607|830608|851276|851278|923982|923983|923984|923985|932825|932826|932827|932828|932829|932830|940812|940813|944523|944524|944525|944526|944527|944528|944529|959761", + "text": "Familial febrile seizures 8" + }, + { + "baseId": "31247|31247|31249|75270|99340|99341|99341|134572|134573|134573|134574|134574|134575|134575|141120|141120|141124|141124|141130|141130|141132|177736|194858|201870|201875|201876|201880|201881|201883|201884|201889|201891|201891|201892|201895|201896|201897|201898|201898|201901|212514|239783|239784|266793|274648|296772|296775|296788|296789|296791|296792|296793|296798|298646|298657|298665|298665|298668|298685|298686|298687|298702|298707|302892|302893|302894|302895|302898|302899|302900|302922|302923|302924|302925|302930|302931|302933|303093|303101|303102|303103|303103|303105|303112|303113|303117|303119|303120|303121|368346|368501|369732|394173|394844|394915|394920|395098|395103|395437|395439|406691|443745|453622|454805|455394|455395|455397|455659|521227|521485|521493|521495|536690|560253|560255|560364|560366|563018|563022|563022|565001|579117|579117|614284|633701|633702|633703|633704|633705|633706|633707|633708|633709|633710|633711|633712|633713|661224|683728|685184|686717|686718|686720|689792|691815|782240|787275|790534|793083|819569|819570|819571|819572|821913|830598|830599|830600|830601|830602|830603|830604|830605|830606|830607|830608|851276|851278|893821|893822|893823|893824|893825|893826|893827|893828|893829|893830|893831|893832|893833|893834|893835|893836|893837|893838|923982|923983|923984|923985|932825|932826|932827|932828|932829|932830|940812|940813|944523|944523|944524|944525|944526|944527|944528|944529|959761", + "text": "Epilepsy, childhood absence 2" + }, + { + "baseId": "31251|31252", + "text": "Generalized epilepsy with febrile seizures plus type 5" + }, + { + "baseId": "31252", + "text": "Epilepsy, juvenile myoclonic 7" + }, + { + "baseId": "31252|440430|447685|583078|918590|969599|970672", + "text": "Epilepsy, idiopathic generalized 10" + }, + { + "baseId": "31253|99338|99339|99339|132585|132585|132687|132688|134569|134570|134571|134571|141110|141111|141112|141113|141113|141114|141115|141115|141116|141117|141117|141118|141119|141119|193450|194328|195911|201852|201853|201860|201860|201861|201862|259817|259818|259819|296741|296742|296743|296745|296746|296748|296749|296754|296756|296757|296758|296763|296765|296769|298611|298619|298625|298626|298629|298631|298635|298638|298644|302793|302794|302797|302800|302801|302838|302847|302848|302875|302884|302888|302891|303037|303050|303051|303065|303083|303085|303086|303087|359664|368035|368330|369730|406687|454795|454797|454898|454906|454911|454916|454921|454923|455387|455392|488955|520982|521214|521221|521404|560360|560362|563011|563015|563016|565000|576799|579039|579119|614283|633696|633697|633698|633699|633700|685183|685183|686713|686715|749397|765001|782239|819641|821909|821910|821911|821912|830594|830595|830596|830597|851896|852198|893780|893781|893782|893783|893784|893785|893786|893787|893788|893789|893790|893791|893792|893793|893794|893795|893796|893797|893798|893799|893800|893801|893802|893803|893804|893805|893806|893807|893808|893809|893810|893811|893812|893813|893814|893815|893816|893817|893818|893819|893820|896074|896075|923975|923976|923977|923978|923979|923980|923981|932820|932821|932822|932823|932824|944517|944518|944519|944520|944521|944522|954105|960559", + "text": "Epilepsy, juvenile myoclonic 5" + }, + { + "baseId": "31254|99339|132585|134571|141112|141113|141114|141115|141116|141117|141118|141119|193450|194328|195911|201852|201853|201860|201861|201862|259817|259818|259819|359664|368035|368330|369730|406687|454795|454797|454898|454906|454911|454916|454921|454923|455387|455392|488955|520982|521214|521221|521404|560360|560362|563011|563015|563016|565000|576799|579039|579119|633696|633697|633698|633699|633700|685183|686713|686715|749397|765001|782239|819641|821909|821910|821911|821912|830594|830595|830596|830597|851896|852198|923975|923976|923977|923978|923979|923980|923981|932820|932821|932822|932823|932824|944517|944518|944519|944520|944521|944522|954105|960559", + "text": "Epilepsy, childhood absence 4" + }, + { + "baseId": "31255|31256|171753|171754|171755|171756|191080|191082|191586|237078|237330|265698|266035|267762|326537|326538|326544|326546|326548|326555|326558|326559|326560|326568|326569|326573|326577|326581|326585|326593|326595|326596|326598|326601|326602|326603|326610|336367|336370|336375|336377|336381|336385|336387|336390|336396|336397|336401|336407|336409|336410|336411|336415|336417|342564|342566|342571|342573|342574|342576|342578|342580|342581|342584|342593|342596|342597|342600|342606|342608|342615|342616|342617|342621|342626|342635|342636|342637|342640|342643|342644|342648|342650|342651|342652|342653|342657|344186|344189|344195|344196|344198|344199|344210|344211|344217|344220|344225|344226|344230|344232|344235|344242|344243|344245|344255|344256|344259|344264|344265|344269|375542|432013|432014|432015|432017|434652|466090|466091|466093|466837|466840|466864|466865|466867|466879|467148|467149|492003|530370|530373|530473|530477|530479|530669|530882|530886|530895|530904|530905|530906|568444|568446|570579|570582|570602|570606|570610|574196|577572|585209|623086|623087|623088|623089|645084|645085|645086|645087|645088|645089|645090|645091|645092|645093|645094|645095|645096|652870|652874|715154|726868|740418|740434|776209|820891|820893|820894|820895|844442|844443|844444|844445|844446|844447|844448|844449|844450|844451|852131|876072|876073|876074|876075|876076|876077|876078|876079|876080|876081|876082|876083|876084|876085|876086|876087|876088|876089|876090|876091|876092|876093|876094|876095|876096|876097|876098|876099|876100|876101|876102|876103|876104|876105|876106|876107|876108|876109|876110|876111|876112|876113|876114|876115|876728|876729|876730|927990|927991|927992|927993|927994|937652|940375|941150|949621|957906", + "text": "Gamma-aminobutyric acid transaminase deficiency" + }, + { + "baseId": "31257|31258|31259", + "text": "Alcoholism, susceptibility to" + }, + { + "baseId": "31260", + "text": "Amyotrophic lateral sclerosis 6, autosomal recessive" + }, + { + "baseId": "31261|31261|31262|31263|31264|31265|31266|31267|38662|38663|45745|255698|255699|255699|255700|255700|255702|255705|255705|264787|325119|325121|325121|325125|325126|325127|325127|325133|325136|325144|325145|325147|325148|325149|325153|325154|325158|334778|334784|334786|334787|334788|334816|334820|334827|334828|334834|334836|334839|334841|341258|341258|341259|341263|341264|341268|341269|341272|341273|341274|341284|341286|341289|341292|341293|341301|341306|341311|341316|341318|341320|341321|341324|342763|342765|342767|342769|342775|342778|342789|342790|342791|342793|342794|342799|342804|342805|342809|342810|342813|360997|422093|438008|438008|441901|441901|441904|441905|486142|495622|529932|529932|530247|530247|530252|530252|530443|530443|530447|530449|568102|570256|570258|574045|644615|644616|644617|644618|644619|644620|644621|644622|644623|693845|693847|693848|693848|693849|693850|703659|740157|770875|778292|791586|791587|793636|820825|843771|843772|843773|843774|843775|843775|843776|851669|861409|861410|861411|861412|861452|875120|875121|875122|875123|875124|875125|875126|875126|875127|875127|875128|875129|875130|875131|875132|875133|875134|875135|875136|875137|875138|875139|875140|875141|875142|875143|875144|875145|875146|875147|875148|875149|875150|875151|875152|875153|875154|875155|875156|875157|875158|875159|875160|875161|875162|875163|875164|875165|875166|875167|875168|875169|875170|876654|876655|876656|876657|876658|876659|921528|927785|937417|949376|957738|957739|977364", + "text": "Amyotrophic lateral sclerosis 6, with or without frontotemporal dementia" + }, + { + "baseId": "31261|31266|45745|45745|45746|255699|255700|255705|264787|325121|325125|325127|341258|438008|441901|441904|486142|495622|529932|530247|530252|530443|530447|530449|568102|570256|570258|574045|644615|644616|644617|644618|644619|644620|644621|644622|644623|693845|693847|693848|693849|693850|703659|740157|770875|778292|793636|820825|843771|843772|843773|843774|843775|843776|851669|875126|875127|927785|937417|949376|957738|957739", + "text": "Tremor, hereditary essential, 4" + }, + { + "baseId": "31268|790903", + "text": "B4GALT1-CDG" + }, + { + "baseId": "31269|31270|31271|31274|31275|38660|38661|50021|50022|50023|50024|51260|51261|98356|98360|98361|98362|98364|98365|98366|98367|98367|138152|138154|138155|138156|138157|141073|141074|141075|141076|151069|151752|151776|151789|151789|151791|152368|177192|177706|181629|181630|181631|181633|181634|181636|181637|181638|181639|181640|181641|181642|181643|195206|195552|204603|204604|210648|210650|210651|210652|210654|210657|210658|210663|210669|210670|210671|210673|210674|210676|210678|210680|210681|210682|210685|210687|210693|210694|210695|210696|210697|210699|210700|210701|210704|210706|210708|210709|210710|210711|210712|232189|232190|232194|232195|232197|232199|238253|238254|238255|238256|238257|238258|238259|238260|238261|238262|238263|238263|238264|259660|259661|259662|259663|259664|259665|264011|280141|280156|280159|280161|280165|280166|280167|280504|280508|280509|280521|280522|280523|281814|281817|281818|281821|281822|281825|281943|281944|281945|281954|359309|364940|380447|380450|380451|380452|380453|380454|380455|380458|380462|380463|380464|380469|380471|390724|390727|391074|391084|391095|391096|391098|391099|391101|391103|391104|391105|391106|391108|391110|391111|391113|391116|391117|391119|391121|391128|391130|391134|391136|391137|391139|391141|391146|391147|391156|391158|391162|391164|391171|391174|391181|391185|391198|391200|391202|391231|391254|391257|391266|391269|391279|391287|391296|405120|405122|405123|405126|421002|421003|421005|421006|421007|421009|421010|421011|421016|421019|421021|421023|425354|446926|446934|447673|447678|447679|447684|447693|447700|447702|447706|447707|447708|447713|447716|447718|447900|447913|447916|447919|447922|447926|447928|447932|447938|447942|448005|448006|448014|448015|448017|448018|448021|448023|448026|448029|448031|448032|448033|448034|448035|448036|448046|448052|448055|448056|448056|448059|448061|448063|448064|448066|472286|472289|472291|472292|472293|472296|472301|472304|472305|472308|472311|472313|472314|472316|472319|472321|472349|472375|498358|498548|515717|515718|515721|515722|515723|515726|515729|515731|515732|515738|515739|515743|515748|515754|515756|515761|515763|515766|515771|515773|515798|515801|515807|515808|515810|515812|515824|515826|515829|515831|515835|515837|515841|515843|515844|556499|556527|556529|556918|556920|556922|556924|556926|556928|556930|556932|556934|556936|556938|557210|557212|557214|557216|557218|557220|557222|557224|557226|557228|557230|557257|557259|557261|557263|557265|557267|557269|557271|557273|557275|558433|558435|558437|558439|558441|558443|558445|558447|558449|558451|558453|558455|627628|627629|627630|627631|627632|627633|627634|627635|627636|627637|627638|627639|627640|627641|627642|627643|627644|627645|627646|627647|627648|627649|627650|627651|627652|627653|627654|627655|627656|627657|627658|627659|627660|627661|627662|627663|627664|627665|627666|627667|627668|627669|627670|627671|627672|627673|627674|627675|627676|627677|627678|627679|627680|627681|627682|627683|627684|650559|650573|650578|650645|650704|650709|655085|685092|685673|685674|685675|685677|685678|685679|689651|689652|690561|690563|695041|718841|718842|732317|746358|758902|761811|761813|761815|761819|774484|774492|774506|794642|806531|806533|806534|806539|806541|806549|806550|806554|806555|806558|806565|806567|806568|806570|806579|806583|806585|806587|806589|806593|815218|818818|818819|818820|818949|818950|818951|818952|818953|818954|818955|823767|823768|823769|823770|823771|823772|823773|823774|823775|823776|823777|823778|823779|823780|823781|823782|823783|823784|823785|823786|823787|823788|823789|823790|823791|823792|823793|823794|823795|823796|823797|823798|823799|823800|823801|823802|823803|823804|850770|850772|850774|850776|855105|864177|864178|864179|865167|918624|921943|921944|921945|921946|921947|921948|921949|921950|921951|921952|921953|921954|921955|921956|921957|921958|930421|930422|930423|930424|930425|930426|930427|930428|930429|930430|930431|930432|930433|939803|939804|939805|939806|940627|940628|941867|941868|941869|941870|941871|941872|941873|941874|941875|941876|941877|941878|941879|941880|941881|941882|941883|941884|941885|941886|941887|952359|952360|952361|952362|952363|959552|959553|959554|977531|977532", + "text": "Fumarase deficiency" + }, + { + "baseId": "31271|31273|31274|31275|31276|31277|38660|50021|50024|98356|98357|98360|98361|98364|98365|98367|98367|138152|138154|141073|141074|141075|141076|151752|151789|152368|177061|177192|181638|181639|181641|181642|195206|195552|204603|204604|210649|210651|210663|210670|210671|210673|210677|210685|210696|210701|210706|210707|210711|210712|238253|238255|238258|238262|238263|259659|263987|280141|280156|280159|280161|280165|280166|280167|280504|280508|280509|280521|280522|280523|281814|281817|281818|281821|281822|281825|281943|281944|281945|281954|380447|380448|380449|380450|380451|380452|380453|380454|380455|380456|380457|380458|380459|380460|380461|380462|380463|380464|380465|380466|380467|380468|380469|380470|380471|380472|380473|391106|391171|447679|447916|448056|513996|627663|677031|806555|815966|864177|864178|864179|865167|921452", + "text": "Hereditary leiomyomatosis and renal cell cancer" + }, + { + "baseId": "31278|227409|967235|967236|967237", + "text": "Fucosyltransferase 6 deficiency" + }, + { + "baseId": "31279|31280|31281|187217|254134|313835|313839|313840|313853|313854|320035|320036|326220|327162|327163|327165|327173|327174|327183|327188|327189|362186|867813|867814|867815|867816|867817|867818|867819", + "text": "Hypogonadotropic hypogonadism 24 without anosmia" + }, + { + "baseId": "31282|31283|31284|31285|31286|31287|31290|38659|70669|70670|70671|70672|70673|141106|250748|286704|286713|286715|287414|287431|287432|287433|287434|289861|289862|289864|290218|290222|290227|290234|290235|290241|290250|586941|763346|885146|885147|885148|885149|885150|885151|885152|885153|885154|885155|885156|885157|885158|885159|885160|885161|885162|885163|885164|885165|885166|885167|885168|885169|885170|983728|983729", + "text": "Ovarian dysgenesis 1" + }, + { + "baseId": "31283|31285|31286|31288|31289|31291|31292|31293|141106|250748|286704|286713|286715|286718|287414|287430|287431|287432|287433|287434|289861|289862|289863|289864|290218|290222|290227|290234|290235|290241|290250|353573|586941|763346|885146|885147|885148|885149|885150|885151|885152|885153|885154|885155|885156|885157|885158|885159|885160|885161|885162|885163|885164|885165|885166|885167|885168|885169|885170", + "text": "Ovarian hyperstimulation syndrome" + }, + { + "baseId": "31285", + "text": "Ovarian response to FSH stimulation" + }, + { + "baseId": "31294|31295|31296|45590|101647|141090|177716|192477|193636|193637|194991|194992|202609|202610|202614|202615|202618|315126|315127|321930|328012|329212|329241|372428|372430|372433|372436|372677|408467|421888|444885|461451|461455|461458|461669|461671|461985|503782|526769|566170|567519|567520|567523|579755|640441|640442|640443|640444|640445|640446|640447|768748|768749|820435|838984|838985|838986|838987|852633|868780|868781|917748|926382|926383|935773|935774|935775|935776|947654", + "text": "Cerebral folate transport deficiency" + }, + { + "baseId": "31298|31299|31300|31301|31302|31304|31305|31306|31307|31308|679746|918951|918952|918953", + "text": "Hereditary lymphedema type I" + }, + { + "baseId": "31309", + "text": "Leukemia, acute myeloid, reduced survival in, somatic" + }, + { + "baseId": "31318|31321|31330|31332|31333|31335|31337|31340|31341|31342|136393|136394|136395|136396|178334|181583|191949|191949|192053|192053|193672|193672|193673|193674|193674|236849|305196|305197|305206|305210|305211|305213|305216|305216|305217|305227|305229|308949|308950|308954|308955|308965|308966|308967|308968|308969|308987|308988|308989|308989|308990|308991|308992|308993|308993|308994|308994|308995|309017|309019|309020|314169|314172|314173|314175|314176|314177|314180|314181|314182|314183|314185|314186|314189|314193|314194|314195|314196|314199|314200|314200|314201|314204|314205|314206|314207|314209|314210|314213|314213|314217|314217|314219|314220|314222|314223|314228|314231|314237|314238|370233|371850|371850|384419|425792|425793|425793|428839|458465|458466|458898|458901|472259|493549|513216|513216|523562|523565|523567|523886|524155|539141|539142|562414|562416|577061|637202|651969|679003|679934|679935|684009|687284|687287|687290|689918|689920|819961|834738|834739|851694|899458|899459|899460|899461|899462|899463|899464|899465|899466|899467|899468|899469|899470|899471|899472|899473|899474|899475|899476|899477|899478|899479|899480|899481|899482|899483|899484|899485|899486|899487|899488|899489|899490|899491|899492|899493|899494|899495|899496|899497|899498|899499|899500|899501|899502|899503|899504|899505|899506|899507|899508|899509|899510|899511|899512|900485|900486|900487|925198|925199|925200|934303|934304|946062|946063|962716|963106|963107|963108|963109|963110|963111|963112|963113", + "text": "Hypogonadotropic hypogonadism 2 with or without anosmia" + }, + { + "baseId": "31319|31320|31322|31323|31324|31334|31335|31336|31338|31339|59835|59836|59837|59838", + "text": "Hypogonadotropic hypogonadism 2 with anosmia" + }, + { + "baseId": "31321|31332|59853|178327|178328|178330|178331|178332|178335|178336|178337|178338|178339|178340|178341|178343|263372", + "text": "Delayed puberty" + }, + { + "baseId": "31325|31326|31327|31329|191949|192053|193672|193674|305196|305197|305206|305210|305211|305213|305216|305217|305227|305229|308949|308950|308951|308954|308955|308965|308966|308967|308968|308969|308987|308988|308989|308990|308991|308992|308993|308994|308995|309017|309019|309020|314169|314172|314173|314175|314176|314177|314180|314181|314182|314183|314185|314186|314189|314193|314194|314195|314196|314199|314200|314201|314204|314205|314206|314207|314209|314210|314213|314217|314219|314220|314222|314223|314228|314231|314237|314238|370233|371850|513216|523886|577061|623634|687284|687287|689918|790799|899458|899459|899460|899461|899462|899463|899464|899465|899466|899467|899468|899469|899470|899471|899472|899473|899474|899475|899476|899477|899478|899479|899480|899481|899482|899483|899484|899485|899486|899487|899488|899489|899490|899491|899492|899493|899494|899495|899496|899497|899498|899499|899500|899501|899502|899503|899504|899505|899506|899507|899508|899509|899510|899511|899512|900485|900486|900487", + "text": "Osteoglophonic dysplasia" + }, + { + "baseId": "31328|191949|192053|193672|193674|305196|305197|305206|305210|305211|305213|305216|305217|305227|305229|308949|308950|308954|308955|308965|308966|308967|308968|308969|308987|308988|308989|308990|308991|308992|308993|308994|308995|309017|309019|309020|314169|314172|314173|314175|314176|314177|314180|314181|314182|314183|314185|314186|314189|314193|314194|314195|314196|314199|314200|314201|314204|314205|314206|314207|314209|314210|314213|314217|314219|314220|314222|314223|314228|314231|314237|314238|370233|371850|513216|523886|577061|687284|687287|689918|899458|899459|899460|899461|899462|899463|899464|899465|899466|899467|899468|899469|899470|899471|899472|899473|899474|899475|899476|899477|899478|899479|899480|899481|899482|899483|899484|899485|899486|899487|899488|899489|899490|899491|899492|899493|899494|899495|899496|899497|899498|899499|899500|899501|899502|899503|899504|899505|899506|899507|899508|899509|899510|899511|899512|900485|900486|900487", + "text": "Trigonocephaly 1" + }, + { + "baseId": "31343|31344|31345|31346|31347|31348|31350|31351|31352|31353|31354|31355|31356|31357|34316|38476|227205|227206|249537|249538|249541|249542|249543|249544|249547|277401|277402|277403|277592|277598|277600|277608|278457|278458|278462|278464|278466|278467|278468|278469|278470|278486|553150|553151|619969|619970|718385|862785|862786|862787|862788|862789|862790|862791|862792|862793|862794|862795|862796|862797|862798|862799|862800|862801|862802|865034|865035|865036", + "text": "Trimethylaminuria" + }, + { + "baseId": "31349", + "text": "FMO3 activity, decreased" + }, + { + "baseId": "31358|31358|31358|31359|31359|31360|65592|65594|65594|132362|205128|227198|227199|227200|227201|259625|259629|259630|263950|263963|361156|404743|404918|438932|513891|514416|538328|578363|626093|682425|918558|970659", + "text": "Ichthyosis vulgaris" + }, + { + "baseId": "31358|31359|31360|404918", + "text": "Dermatitis, atopic, 2, susceptibility to" + }, + { + "baseId": "31358|31358|31359|31359|65592|65594|65594|259630|438932|513491|514416|538328", + "text": "Dermatitis, atopic, 2" + }, + { + "baseId": "31358|360928|514093|514094", + "text": "Dermatitis, atopic" + }, + { + "baseId": "31358|31359|263393", + "text": "Eczema" + }, + { + "baseId": "31358|259630|263950", + "text": "FLG-related disorders" + }, + { + "baseId": "31359", + "text": "FLG-Related Disorder" + }, + { + "baseId": "31362|31363|31364|190044|190045|190046|576097|733142|804845|818182|965213|975946", + "text": "Glomerulopathy with fibronectin deposits 2" + }, + { + "baseId": "31365", + "text": "Cancer progression and tumor cell motility" + }, + { + "baseId": "31366|31367|31369|31376|31395|576111|964230", + "text": "Achondroplasia" + }, + { + "baseId": "31367|31376|31377|31379|31383|31384|31385|31386|31387|31388|31395|31396|31397|76434|76435|76731|76734|76737|76763|76788|76808|76809|76823|76824|138143|138148|576111|790461|964231|970790", + "text": "Hypochondroplasia" + }, + { + "baseId": "31368|361702|576111", + "text": "Crouzon syndrome with acanthosis nigricans" + }, + { + "baseId": "31370|966849", + "text": "Thanatophoric dysplasia, type 2" + }, + { + "baseId": "31371|31372|31373|31374|31375|31378|31380|31381|31398|76469|76470|76471|76472|621895|966849", + "text": "Thanatophoric dysplasia type 1" + }, + { + "baseId": "31371", + "text": "Skeletal dysplasia with acanthosis nigricans" + }, + { + "baseId": "31379|964111", + "text": "Muenke syndrome" + }, + { + "baseId": "31380", + "text": "SEVERE ACHONDRODYSPLASIA WITH DEVELOPMENTAL DELAY AND ACANTHOSIS NIGRICANS" + }, + { + "baseId": "31387|363578", + "text": "Acanthosis nigricans" + }, + { + "baseId": "31394|166328|576111|615789", + "text": "Camptodactyly-tall stature-scoliosis-hearing loss syndrome" + }, + { + "baseId": "31400", + "text": "FIBRINOGEN TOKYO 2" + }, + { + "baseId": "31400|31401|31415|31417|31421|31430|31435|31441|31443|31454|496315|615377|615379|615380|615381|615382|615383|615384|615385|615386|615387|615388|615389", + "text": "Hypofibrinogenemia" + }, + { + "baseId": "31401", + "text": "FIBRINOGEN HAIFA 1" + }, + { + "baseId": "31402", + "text": "FIBRINOGEN BALTIMORE 1" + }, + { + "baseId": "31403", + "text": "FIBRINOGEN KYOTO 1" + }, + { + "baseId": "31404", + "text": "FIBRINOGEN BALTIMORE 3" + }, + { + "baseId": "31405", + "text": "FIBRINOGEN ASAHI" + }, + { + "baseId": "31406", + "text": "FIBRINOGEN VLISSINGEN 1" + }, + { + "baseId": "31407", + "text": "FIBRINOGEN NAGOYA 1" + }, + { + "baseId": "31408", + "text": "FIBRINOGEN KYOTO 3" + }, + { + "baseId": "31409", + "text": "FIBRINOGEN MILANO 1" + }, + { + "baseId": "31410", + "text": "FIBRINOGEN PARIS 1" + }, + { + "baseId": "31411", + "text": "FIBRINOGEN OSLO III" + }, + { + "baseId": "31412", + "text": "FIBRINOGEN OSAKA 5" + }, + { + "baseId": "31413", + "text": "FIBRINOGEN MATSUMOTO 1" + }, + { + "baseId": "31414", + "text": "FIBRINOGEN GIESSEN 4" + }, + { + "baseId": "31415|31416|31417|31419|31423|31428|31429|31431|31432|31434|31435|31453|31454|31456|31459|237254|251340|251341|251343|251344|251345|292471|292473|292477|292478|292487|292488|292493|292501|292502|292505|292506|292513|292514|292527|293902|293903|293904|293905|293907|293913|293914|293924|293930|293931|293932|293933|293934|293935|293939|293943|297187|297196|297197|297200|297216|297220|297221|297222|297223|297229|297230|297241|297245|297256|297269|297281|297288|297290|297292|297293|297297|297299|297300|297303|297304|297305|297307|297313|297314|297315|297321|297334|297337|297349|297350|297353|297369|297371|297374|297375|353667|389197|496315|496316|538367|615375|615393|683623|709203|709204|779010|789171|789245|789247|795545|890231|890232|890233|890234|890235|890236|890237|890238|890239|890240|890241|890242|890243|890244|890245|890246|890247|890248|890249|890250|890251|890252|890253|890254|890255|890256|890257|890258|890259|890260|890261|890262|890263|890264|890265|890266|890267|890268|890269|890270|890271|890272|890273|890274|890275|890276|890277|891753|891754", + "text": "Afibrinogenemia, congenital" + }, + { + "baseId": "31417", + "text": "Fibrinogen Milano XII, digenic" + }, + { + "baseId": "31418", + "text": "FIBRINOGEN HILLSBOROUGH" + }, + { + "baseId": "31420", + "text": "FIBRINOGEN NEW YORK 1" + }, + { + "baseId": "31421", + "text": "FIBRINOGEN CHRISTCHURCH 2" + }, + { + "baseId": "31422", + "text": "FIBRINOGEN PONTOISE 2" + }, + { + "baseId": "31423", + "text": "FIBRINOGEN BALTIMORE 2" + }, + { + "baseId": "31424", + "text": "FIBRINOGEN ISE" + }, + { + "baseId": "31425", + "text": "FIBRINOGEN NIJMEGEN" + }, + { + "baseId": "31426", + "text": "FIBRINOGEN NAPLES" + }, + { + "baseId": "31427", + "text": "FIBRINOGEN-BETA POLYMORPHISM" + }, + { + "baseId": "31430", + "text": "FIBRINOGEN LONGMONT" + }, + { + "baseId": "31433", + "text": "FIBRINOGEN, BETA-148 POLYMORPHISM" + }, + { + "baseId": "31436", + "text": "FIBRINOGEN LILLE 1" + }, + { + "baseId": "31437", + "text": "FIBRINOGEN ROUEN 1" + }, + { + "baseId": "31438|31443", + "text": "Dysfibrinogenemia" + }, + { + "baseId": "31439", + "text": "FIBRINOGEN MUNICH 1" + }, + { + "baseId": "31440", + "text": "FIBRINOGEN DETROIT 1" + }, + { + "baseId": "31441", + "text": "FIBRINOGEN AARHUS 1" + }, + { + "baseId": "31442", + "text": "FIBRINOGEN KYOTO 2" + }, + { + "baseId": "31444", + "text": "FIBRINOGEN CARACAS 2" + }, + { + "baseId": "31445", + "text": "FIBRINOGEN LIMA" + }, + { + "baseId": "31446", + "text": "FIBRINOGEN MARBURG" + }, + { + "baseId": "31450", + "text": "FIBRINOGEN DUSART" + }, + { + "baseId": "31451", + "text": "FIBRINOGEN CANTERBURY" + }, + { + "baseId": "31454", + "text": "Hypodysfibrinogenemia, congenital" + }, + { + "baseId": "31455", + "text": "FIBRINOGEN NIEUWEGEIN" + }, + { + "baseId": "31457", + "text": "FIBRINOGEN KEOKUK" + }, + { + "baseId": "31460", + "text": "Marfan syndrome, severe classic" + }, + { + "baseId": "31461", + "text": "Marfan syndrome, mild variable" + }, + { + "baseId": "31473|31490|31490|51537|51554|141005|165544|197665|258816|322740|322743|322762|322768|322772|322773|322810|332236|332237|332249|332259|332260|332264|332268|332271|332279|332280|339214|339221|339222|339224|339237|339240|339263|339264|339285|339295|339296|340691|340697|340712|340719|340723|340726|340746|551267|609340|672165", + "text": "MASS syndrome" + }, + { + "baseId": "31476|31484|31490|31500|44705|44724|44729|44731|44735|44736|44748|44750|44767|44768|44772|44792|44796|44797|48266|51457|51467|51468|51489|51490|51500|51504|51505|51507|51525|51526|51551|51562|51578|51582|51583|51603|51609|132464|141002|141003|141004|141007|141008|141009|141012|141014|141016|141017|171173|171177|171181|175990|175991|197581|197615|197705|197717|197811|230585|242059|242072|242080|242082|255255|258836|258887|258909|265919|322730|322731|322733|322734|322736|322737|322739|322742|322749|322752|322760|322767|322769|322781|322782|322787|322788|322792|322793|322794|322796|322805|322811|332233|332238|332243|332247|332248|332251|332252|332254|332261|332263|332265|332267|332272|332278|332283|339217|339223|339232|339241|339243|339245|339250|339265|339266|339275|339276|339277|339280|339281|339286|339287|339297|339304|340694|340714|340715|340716|340718|340720|340728|340729|340732|340736|340738|340743|340744|340745|340748|374601|464856|464940|465086|465116|487788|505654|529291|538046|539060|573321|621494|643298|842447|873702|873703|873704|873705|873706|873707|873708|873709|873710|873711|873712|873713|873714|873715|873716|873717|873718|873719|873720|873721|873722|873723|873724|873725|873726|873727|873728|873729|873730|873731|873732|873733|873734|873735|873736|873737|873738|873739|873740|873741|873742|876533|876534|876535|876536|876537", + "text": "Ectopia lentis, isolated, autosomal dominant" + }, + { + "baseId": "31476|32289|38552|44582|44594|44705|44724|44767|44768|44772|45279|45281|45284|45520|47468|51468|51508|55721|99654|99656|99662|99670|134506|134509|134511|134512|138649|138650|138658|138660|138671|138674|138676|138681|138690|138698|140557|140588|140590|140595|140601|140612|140640|140645|140646|140649|140653|140660|140664|140666|140668|141017|141018|141019|141021|141022|141024|141028|141030|141036|141041|141042|141044|141057|141058|141061|141062|141063|142038|142047|142051|142052|142060|142065|142076|165529|165530|165548|165580|171073|171075|171083|171181|171185|171281|174368|174497|174500|174506|177627|177628|177632|177710|178594|178596|178706|178711|188023|190915|191359|191890|192900|193008|193272|193589|193768|194227|194230|194638|194657|195081|195150|195180|195521|196760|196761|196770|196815|197695|197832|197837|197847|197869|197879|197893|197910|197914|197926|207158|207161|207163|209426|209434|209493|209500|209517|209518|209541|209562|209628|209718|209741|209754|209778|209786|209793|209799|209809|209826|209962|209971|209978|209992|209995|210001|210006|210051|210070|210078|210088|210100|210264|210462|210463|210478|210483|210490|210493|210530|210531|210540|215539|221811|228990|229466|229471|237388|239091|240519|240544|240554|240555|240563|240564|240578|240818|242203|243770|247081|247111|249283|249302|250440|250459|250865|251662|254528|254556|258257|258260|258274|258401|258567|258573|258578|258584|258594|259150|268275|268446|269195|269223|271988|273965|275701|275709|275721|288371|288372|292143|303634|307066|307071|307100|307211|311998|317169|317277|325004|325018|329145|331136|332776|333993|361858|364283|364310|364321|366013|366221|366257|366717|367154|368142|369128|369301|370197|370258|370271|370735|371102|371111|372534|372808|373447|373591|375313|377081|378450|379193|393266|393441|396673|396794|396810|397018|397316|397325|397329|397392|401009|401033|406105|407274|409453|415046|425770|425839|430726|433866|433867|437853|444183|445497|450099|450316|450429|451787|451801|455041|457591|457725|459312|459372|459786|459836|459868|465968|486698|486699|493909|497937|501643|501953|502344|502460|502469|502484|503639|503845|503882|505389|506513|510052|510101|510913|518850|519034|521044|524413|524747|525666|529291|535107|537668|537669|537670|537671|537672|537673|537674|537675|537676|537677|537678|537680|537685|537699|537704|537707|537708|537709|537738|537739|537740|537741|537742|537743|537744|537745|537746|537747|537748|537749|537762|537763|537764|537765|537766|537767|537769|537772|537773|537774|537804|537805|537806|537807|537808|537809|537810|537811|537812|537813|537814|537815|537816|537818|537819|537821|537822|537823|537824|537825|537826|537827|537828|537844|537845|537847|537848|537849|537850|537851|537852|537853|537855|537856|537857|537858|537859|537860|537861|537862|537863|537870|537871|537872|537880|537882|537885|537888|537889|537891|537895|537896|537897|537898|538018|538036|538072|538074|538082|538083|538086|538088|538089|538090|538091|538092|538093|538094|538240|538241|538242|538244|538245|538246|538247|538248|538291|538292|538293|538294|538295|538296|538297|538298|538299|552410|552411|552412|552413|552414|552415|552416|552417|552418|552419|552420|552421|552422|552423|552424|552425|552426|552427|552428|552429|552430|552431|552432|552433|552434|552435|552436|552437|552438|552439|552440|552441|552442|552443|552444|552445|552446|552447|552448|552449|552450|552451|552452|552454|552455|552456|552457|552458|552459|552460|552462|552463|552464|552465|552466|552467|552468|552469|552470|552471|552472|552473|552474", + "text": "Connective tissue disease" + }, + { + "baseId": "31477|31480|31481|31485|31486|31496|31501|31504", + "text": "Marfan syndrome, neonatal" + }, + { + "baseId": "31479|31492|32289", + "text": "Marfan syndrome, atypical" + }, + { + "baseId": "31479|361136", + "text": "Arachnodactyly" + }, + { + "baseId": "31479|360977", + "text": "Lens subluxation" + }, + { + "baseId": "31479|514051", + "text": "High palate" + }, + { + "baseId": "31482", + "text": "Marfan syndrome, mild" + }, + { + "baseId": "31484|31490|38651|38653|38655|38656|38657|44705|44724|44729|44731|44735|44736|44748|44750|44767|44768|44772|44792|44796|44797|51457|51467|51468|51489|51490|51500|51504|51505|51507|51525|51526|51537|51551|51554|51562|51578|51582|51583|51603|51609|141002|141003|141004|141005|141007|141008|141009|141012|141014|141016|141017|165544|171173|171177|171181|175984|175990|175991|197581|197615|197624|197665|197705|197717|197753|197811|230585|242059|242072|242080|242082|255255|258816|258836|258887|258909|265919|322730|322731|322733|322734|322736|322737|322739|322740|322742|322743|322749|322752|322760|322762|322767|322768|322769|322772|322773|322781|322782|322787|322788|322792|322793|322794|322796|322805|322810|322811|332233|332236|332237|332238|332243|332247|332248|332249|332251|332252|332254|332259|332260|332261|332263|332264|332265|332267|332268|332271|332272|332278|332279|332280|332283|339214|339217|339221|339222|339223|339224|339232|339237|339240|339241|339243|339245|339250|339263|339264|339265|339266|339275|339276|339277|339280|339281|339285|339286|339287|339295|339296|339297|339304|340691|340694|340697|340712|340714|340715|340716|340718|340719|340720|340723|340726|340728|340729|340732|340736|340738|340743|340744|340745|340746|340748|374601|464856|464940|465086|465116|487788|505654|529291|538046|539060|573321|621494|643298|842447|873702|873703|873704|873705|873706|873707|873708|873709|873710|873711|873712|873713|873714|873715|873716|873717|873718|873719|873720|873721|873722|873723|873724|873725|873726|873727|873728|873729|873730|873731|873732|873733|873734|873735|873736|873737|873738|873739|873740|873741|873742|876533|876534|876535|876536|876537", + "text": "Acromicric dysplasia" + }, + { + "baseId": "31484|31490|31490|44705|44724|44729|44731|44735|44736|44748|44750|44767|44772|44792|44796|44797|51457|51467|51468|51489|51490|51500|51504|51505|51507|51525|51526|51537|51551|51554|51562|51578|51582|51583|51603|51609|92363|132462|132464|132467|136585|141002|141003|141004|141005|141007|141008|141009|141012|141014|141016|141017|165544|171173|171177|171181|175984|175985|175990|175991|197581|197615|197665|197705|197717|197753|197811|230585|236903|242059|242072|242080|242082|255056|255057|255058|255059|255060|255255|258816|258836|258887|258909|265919|268435|321304|321305|321309|321311|321312|321313|321317|321319|321321|321323|321324|321327|321329|321332|321333|321334|321339|321340|321344|321346|322730|322731|322733|322734|322736|322737|322739|322740|322742|322743|322749|322752|322760|322762|322767|322768|322769|322772|322773|322781|322782|322787|322788|322792|322793|322794|322796|322805|322810|322811|330514|330515|330516|330526|330527|330533|330536|330537|330539|330540|330541|330543|330544|330546|330558|330570|330573|330576|330579|330580|332233|332236|332237|332238|332243|332247|332248|332249|332251|332252|332254|332259|332260|332261|332263|332264|332265|332267|332268|332271|332272|332278|332279|332280|332283|334742|334743|334749|334750|334752|334753|334754|334756|337092|337108|337117|337127|337136|337139|337140|337149|337151|337157|337160|337165|337174|337176|337179|337190|337191|337197|337198|337201|337204|337205|337207|337212|339033|339035|339038|339039|339052|339056|339058|339059|339068|339072|339074|339075|339083|339089|339095|339099|339101|339108|339118|339121|339122|339133|339214|339217|339221|339222|339223|339224|339232|339237|339240|339241|339243|339245|339250|339263|339264|339265|339266|339275|339276|339277|339280|339281|339285|339286|339287|339295|339296|339297|339304|340691|340694|340697|340712|340714|340715|340716|340718|340719|340720|340723|340726|340728|340729|340732|340736|340738|340743|340744|340745|340746|340748|344555|344557|344568|344569|344573|344575|344583|344584|344587|344588|344591|344592|344594|344599|344600|344601|344604|344609|344611|349588|349590|349593|349594|349596|349601|349602|349605|349606|349609|349610|350596|350598|350600|350601|350604|350605|350607|350610|350613|350617|350618|350621|374601|464856|464940|465086|465116|480526|487788|505654|529291|538046|573321|586928|621494|643298|702982|702983|702985|702986|702988|714235|714236|714237|714238|716803|725801|725802|725805|725807|728530|728531|728533|728534|739312|739313|739319|739320|739328|742244|742247|744825|745291|754151|757366|757369|757371|757375|760114|780113|780206|784787|816325|842447|848194|872545|872546|872547|872548|872549|872550|872551|872552|872553|872554|872555|872556|872557|872558|872559|872560|872561|872562|872563|872564|872565|872566|872567|872568|872569|872570|872571|872572|872573|872574|872575|872576|872577|872578|872579|872580|872581|872582|872583|872584|872585|872586|872587|872588|872589|872590|872591|872592|872593|872594|872595|872596|872597|872598|872599|872601|872602|872603|872604|872605|872606|872607|872608|872609|872610|872611|872612|872613|872614|872615|872616|872617|872618|872619|872620|872621|872622|873702|873703|873704|873705|873706|873707|873708|873709|873710|873711|873712|873713|873714|873715|873716|873717|873718|873719|873720|873721|873722|873723|873724|873725|873726|873727|873728|873729|873730|873731|873732|873733|873734|873735|873736|873737|873738|873739|873740|873741|873742|876444|876445|876446|876447|876448|876533|876534|876535|876536|876537|882736|882737|882738|882739|882740|882741|882742|882743|882744|882745|882746|882747|882748|882749|882750|882751|882752|882753|882754|882755|882756|882757|882758|882759|882760|882761|882762|882763|882764|882765|882766|882767|882768|882769|882770|882771|882772|882773|882774|882775|882976|882977|882978|882979|882980|882981|882982|882983|882984|882985", + "text": "Weill-Marchesani syndrome" + }, + { + "baseId": "31484|31490|44705|44724|44729|44735|44736|44748|44750|44767|44768|44772|44792|44796|44797|51457|51467|51468|51489|51490|51500|51504|51505|51507|51525|51526|51537|51551|51554|51562|51578|51582|51583|51603|51609|141002|141003|141004|141005|141007|141008|141009|141012|141014|141016|141017|165544|171173|171181|175984|175990|175991|197581|197615|197665|197705|197717|197753|197811|230585|242059|242072|242080|242082|258816|258836|258887|258909|265919|307335|307356|311629|317555|322730|322731|322733|322734|322736|322737|322739|322740|322742|322743|322749|322752|322760|322762|322767|322768|322769|322772|322773|322781|322782|322787|322788|322792|322793|322794|322796|322805|322810|322811|332233|332236|332237|332238|332243|332247|332248|332249|332251|332252|332254|332259|332260|332261|332263|332264|332265|332267|332268|332271|332272|332278|332279|332280|332283|339214|339217|339221|339222|339223|339224|339232|339237|339240|339241|339243|339245|339250|339263|339264|339265|339266|339275|339276|339277|339280|339281|339285|339286|339287|339295|339296|339297|339304|340691|340694|340697|340712|340714|340715|340716|340718|340719|340720|340723|340726|340728|340729|340732|340736|340738|340743|340744|340745|340746|340748|374601|422029|464856|464940|465116|487788|505654|529291|873703|873715|873724|873739|873740|876534|876535", + "text": "Geleophysic dysplasia" + }, + { + "baseId": "31484|31490|31508|31509|31510|31511|44705|44724|44729|44731|44735|44736|44748|44750|44767|44772|44792|44796|44797|51457|51467|51468|51489|51490|51500|51504|51505|51507|51525|51526|51537|51541|51551|51554|51562|51578|51582|51583|51603|51609|141002|141003|141004|141005|141007|141008|141009|141012|141014|141016|141017|165544|171173|171177|171181|175984|175990|175991|197581|197615|197665|197705|197717|197753|197811|230585|242059|242072|242080|242082|255255|258816|258836|258887|258909|265919|322730|322731|322733|322734|322736|322737|322739|322740|322742|322743|322749|322752|322760|322762|322767|322768|322769|322772|322773|322781|322782|322787|322788|322792|322793|322794|322796|322805|322810|322811|332233|332236|332237|332238|332243|332247|332248|332249|332251|332252|332254|332259|332260|332261|332263|332264|332265|332267|332268|332271|332272|332278|332279|332280|332283|339214|339217|339221|339222|339223|339224|339232|339237|339240|339241|339243|339245|339250|339263|339264|339265|339266|339275|339276|339277|339280|339281|339285|339286|339287|339295|339296|339297|339304|340691|340694|340697|340712|340714|340715|340716|340718|340719|340720|340723|340726|340728|340729|340732|340736|340738|340743|340744|340745|340746|340748|374601|464856|464940|465086|465116|487788|505654|529291|538046|539060|573321|621494|643298|842447|873702|873703|873704|873705|873706|873707|873708|873709|873710|873711|873712|873713|873714|873715|873716|873717|873718|873719|873720|873721|873722|873723|873724|873725|873726|873727|873728|873729|873730|873731|873732|873733|873734|873735|873736|873737|873738|873739|873740|873741|873742|876533|876534|876535|876536|876537", + "text": "Stiff skin syndrome" + }, + { + "baseId": "31488|31491|31499|44703|44713|44740|44752|44771|44786|48266|51453|51470|51556|51564|51577|51590|51591|51599|175979|175982|176122|178699|197590|197619|197677|197685|197690|197710|197731|197742|197755|197765|197799|197808|197817|258830|258859|258876|260073|360269|400742|409254|409288|433143|485759|487563|487564|487570|487589|487590|487591|487610|487621|487628|487632|487659|487668|487683|487690|487701|487747|487772|487775|487781|487784|487786|487816|487832|487838|487853|487854|487865|487876|487880|487897|510611|529534|567146|568887|568912|573381|609927|621485|621486|621490|621492|621496|621505|621507|621509|621513|682108|842473|904060|917199|917202|917207|917536|920499|921481|921482|965855|969182|980189", + "text": "Marfan Syndrome/Loeys-Dietz Syndrome/Familial Thoracic Aortic Aneurysms and Dissections" + }, + { + "baseId": "31490|178506|224192|224193|224245|224248|224373|224567", + "text": "Marfanoid habitus" + }, + { + "baseId": "31490|48154|51537|51554|141005|165544|175984|197665|258816|276361|276365|276376|276386|277082|322740|322743|322762|322768|322772|322773|322810|332236|332237|332249|332259|332260|332264|332268|332271|332279|332280|339214|339221|339222|339224|339237|339240|339263|339264|339285|339295|339296|340691|340697|340712|340719|340723|340726|340746|353061|360979", + "text": "Ectopia lentis" + }, + { + "baseId": "31490|44740|51466|51525|171178|197619|209598|258283|258907|262311|262312|262313|360231|362492|362493|362741|362742|433137|488133|488138|511551|609191|609192|609193|609194|609197|609198|609199|609200|609231|609232|609233|609234|609235|609236", + "text": "Familial thoracic aortic aneurysm" + }, + { + "baseId": "31498", + "text": "Weill-Marchesani syndrome 2" + }, + { + "baseId": "31505|44782", + "text": "Marfan syndrome, autosomal recessive" + }, + { + "baseId": "31513|31513|31514|31515|31517|31518|31519|31519|31520|31520|31521|31523|31524|48182|102584|166212|166213|169583|334001|334013|334015|334019|334021|343936|343948|343949|343954|349228|349228|349229|349230|349233|349234|350169|350171|350172|350174|350175|350178|353504|353506|353510|353514|413528|533633|575002|648220|648221|653468|852344|882260|882261|882262|882263|882264|882265|882266|882267|882268|882912|882913|929014|938760|950841|950842", + "text": "Hereditary hyperferritinemia with congenital cataracts" + }, + { + "baseId": "31513|31519|31520|31522|31525|31526|31527|31528|166212|166213|169583|334001|334013|334015|334019|334021|343936|343948|343949|343954|349228|349228|349229|349230|349233|349234|350169|350171|350172|350174|350175|350178|353504|353506|353510|353514|413528|533633|575002|648220|648221|653468|852344|882260|882261|882262|882263|882264|882265|882266|882267|882268|882912|882913|929014|938760|950841|950842", + "text": "Neuroferritinopathy" + }, + { + "baseId": "31529|314445|314447|321045|321046|321047|321053|321067|321070|327167|327195|327205|327211|328210|868180|868181|868182|868183|868184", + "text": "Hemochromatosis type 5" + }, + { + "baseId": "31530", + "text": "GLUTATHIONE S-TRANSFERASE PI POLYMORPHISM, TYPE A" + }, + { + "baseId": "31531", + "text": "GLUTATHIONE S-TRANSFERASE PI POLYMORPHISM, TYPE B" + }, + { + "baseId": "31532", + "text": "GLUTATHIONE S-TRANSFERASE PI POLYMORPHISM, TYPE C" + }, + { + "baseId": "31533", + "text": "FATTY ACID-BINDING PROTEIN, INTESTINAL, POLYMORPHISM OF" + }, + { + "baseId": "31534|538943", + "text": "Autoimmune lymphoproliferative syndrome, type 1b" + }, + { + "baseId": "31536|31537|31538|31539|31540|31541|31542|31543|31544|31545|31546|31547|31548|31552|31553|31554|31555", + "text": "Autoimmune lymphoproliferative syndrome, type 1a" + }, + { + "baseId": "31549|31550|31551", + "text": "SQUAMOUS CELL CARCINOMA, BURN SCAR-RELATED, SOMATIC" + }, + { + "baseId": "31557|31558|31559|31560|31561|249586|249587|249588|278236|278241|278242|278244|278247|278248|278249|278254|278257|278258|278259|278265|278266|278272|278273|279281|279282|279283|279294|279297|279299|279326|279327|279445|706968|718479|718480|863151|863152|863153|863154|863155|863156|863157|863158|863159|863160|863161|863162|863163", + "text": "Factor XIII, b subunit, deficiency of" + }, + { + "baseId": "31562|31563|31564|31565|31566|31567|31568|31569|31570|31571|31572|31573|31574|31575|31576|31577|31578|31579|38649|38650|252445|252446|252447|252448|252450|300847|300849|300850|300857|300858|300862|300863|303782|303783|303784|303786|303789|303791|308355|308357|308358|308359|308361|308364|308376|308382|308383|308389|308400|308402|308403|308458|308462|308464|308465|308466|308467|308472|308473|552283|609016|615415|615416|615417|615418|710573|710574|722090|722092|896706|896707|896708|896709|896710|896711|896712|896713|896714|896715|896716|896717|896718|896719|896720|896721|896722|896723|896724|896725|896726|896727|896728|896729|900252|900253", + "text": "Factor XIII subunit A deficiency" + }, + { + "baseId": "31571", + "text": "Myocardial infarction, protection against" + }, + { + "baseId": "31571", + "text": "Venous thrombosis, protection against" + }, + { + "baseId": "31581|31584|31585|31587|31589|31591|31592|31597|31598|31602|33941|33942|34152|34153|224677|260773|273573|278176|278180|278182|278184|278185|278188|278191|278192|278193|278197|278199|278200|278201|278203|278204|278205|278206|278209|278210|278211|278212|278215|278217|278220|278223|278224|279184|279185|279186|279187|279192|279193|279197|279198|279199|279203|279204|279205|279206|279207|279208|279209|279218|279222|279223|279358|279359|279360|279361|279364|279365|279369|279379|279380|279392|420987|432277|442682|513008|589722|590234|614201|614201|614202|623238|623239|623240|623241|800752|800959|818159|818160|818161|818162|818163|863112|863113|863114|863115|863116|863117|863118|863119|863120|863121|863122|863123|863124|863125|863126|863127|863128|865075|865076|865077|865078|965923", + "text": "Atypical hemolytic-uremic syndrome 1" + }, + { + "baseId": "31582|31583|31586|31590|31593|31594|31597|581999|614201|614202", + "text": "Factor H deficiency" + }, + { + "baseId": "31588|31589|31595|31596|31597|167424|273573|278176|278180|278182|278184|278185|278188|278191|278192|278193|278197|278199|278200|278201|278203|278204|278205|278206|278209|278210|278211|278212|278215|278217|278220|278223|278224|279184|279185|279186|279187|279192|279193|279197|279198|279199|279203|279204|279205|279206|279207|279208|279209|279218|279222|279223|279358|279359|279360|279361|279364|279365|279369|279379|279380|279392|442682|589722|614201|614201|614202|863112|863113|863114|863115|863116|863117|863118|863119|863120|863121|863122|863123|863124|863125|863126|863127|863128|865075|865076|865077|865078", + "text": "Age-related macular degeneration 4" + }, + { + "baseId": "31588|31589|31597|31599|31600|31601|273573|278176|278180|278181|278182|278184|278185|278188|278191|278192|278193|278197|278199|278200|278201|278203|278204|278205|278206|278209|278210|278211|278212|278215|278217|278220|278223|278224|279184|279185|279186|279187|279192|279193|279197|279198|279199|279203|279204|279205|279206|279207|279208|279209|279218|279222|279223|279358|279359|279360|279361|279364|279365|279369|279379|279380|279392|442682|589722|614201|614201|614202|863112|863113|863114|863115|863116|863117|863118|863119|863120|863121|863122|863123|863124|863125|863126|863127|863128|865075|865076|865077|865078|920131", + "text": "Basal laminar drusen" + }, + { + "baseId": "31589|31597|45835|79735|263997|273573|278176|278180|278182|278184|278185|278188|278191|278192|278193|278197|278199|278200|278201|278203|278204|278205|278206|278209|278210|278211|278212|278215|278217|278220|278223|278224|278226|278227|278228|278229|278231|278235|278237|278239|278243|278246|278250|278251|278252|278253|279184|279185|279186|279187|279192|279193|279197|279198|279199|279203|279204|279205|279206|279207|279208|279209|279218|279222|279223|279224|279227|279228|279245|279255|279259|279260|279261|279267|279358|279359|279360|279361|279364|279365|279369|279379|279380|279392|279395|279396|279397|279402|279406|279428|279429|279433|279440|364055|389348|442682|513500|589722|590764|614201|619976|619977|619978|696353|706967|718476|718477|718478|774429|863112|863113|863114|863115|863116|863117|863118|863119|863120|863121|863122|863123|863124|863125|863126|863127|863128|863129|863130|863131|863132|863133|863134|863135|863136|863137|863138|863139|863140|863141|863142|863143|863144|863145|863146|863147|863148|863149|863150|865075|865076|865077|865078|865079|865080", + "text": "CFH-Related Dense Deposit Disease / Membranoproliferative Glomerulonephritis Type II" + }, + { + "baseId": "31603|614471", + "text": "Complement factor d deficiency" + }, + { + "baseId": "31605|31606|31612|31613|31614|31615|31616|31617|49931|49932|134455|134456|134457|134458|137898|137899|137899|137901|137904|137905|137908|137910|137911|137913|137914|137915|137917|137918|137919|137920|137921|137922|137924|137931|137932|137934|205172|254790|254791|254792|254793|318811|318814|318816|318819|318821|318824|318825|318830|318832|318833|318834|318840|318841|318847|327190|327193|327194|327196|327198|327208|327213|327219|327225|327226|327226|327234|333317|333319|333321|333325|333331|333332|333334|333335|333346|333347|333352|335057|335058|335071|335081|335082|335088|335091|335092|512935|512936|512937|620464|725347|738923|738925|753682|753685|791291|791292|791293|870642|870643|870644|870645|870646|870647|870648|870649|870650|870651|870652|870653|870654|870655|870656|870657|870658|870659|870660|870661|870662|870663|870664|870665|870666|870667|870668|872299|872300|872301", + "text": "Xeroderma pigmentosum, group G" + }, + { + "baseId": "31607|137899|206564|327226|788874|966040", + "text": "Cerebrooculofacioskeletal syndrome 3" + }, + { + "baseId": "31608|31609|31610|31611", + "text": "Xeroderma pigmentosum group g/Cockayne syndrome" + }, + { + "baseId": "31618|31619|31619|31619|70482|70487|70487|134453|134454|134454|137870|137870|137871|137873|137873|137874|137874|137876|137877|137877|137880|137881|137881|137882|137882|137883|137884|137887|137887|137889|137889|137891|137892|137892|137892|137894|137896|137897|137897|208242|215505|215505|242189|242189|242190|242190|242191|242192|242192|255454|255455|255456|255456|255457|255457|255458|324109|324113|324117|324118|324123|324160|324161|324162|324164|324165|324171|324175|324178|324179|324180|324184|324188|324190|324201|324203|324207|324209|333730|333731|333735|333738|333738|333741|333747|333758|333759|333761|333766|333767|333769|340484|340487|340488|340492|340492|340500|340502|340505|340508|340511|340519|340521|340523|340534|340538|340542|340551|340552|340553|340554|341865|341866|341868|341868|341877|341877|341879|341879|341882|341885|341886|341887|341889|341901|341902|341905|341909|341910|341914|341915|341918|341920|341926|341927|341931|341938|341939|341941|341946|400521|400523|400529|400529|400665|400667|401098|401100|401337|413430|429758|429759|465041|465041|465045|465045|465053|465053|465057|465726|465919|529246|529434|529436|529444|529444|529465|529466|529467|529771|529772|529774|567671|567677|567678|567678|569972|569973|573713|643908|643909|643910|643911|643912|643913|643914|643915|643916|643917|643918|643919|643920|643921|643921|652453|684573|684574|684577|688527|688527|739952|754899|791522|797244|797245|820765|843092|843093|843094|843095|843096|843097|843098|843099|843100|843100|843101|843102|843103|843104|843105|843106|843107|843108|843109|843110|843111|843112|851649|851651|852620|874633|874634|874635|874636|874637|874638|874639|874640|874641|874642|874643|874644|874645|874646|874647|874648|874649|874650|874651|874652|874653|874654|874655|874656|874657|874658|874659|874660|874661|874662|874663|874664|874665|874666|874667|874668|874669|874670|874671|874672|874673|874674|874675|874676|874677|874678|874679|876612|927558|927559|927560|927561|927562|927563|927564|937217|937218|937219|937220|940343|949164|949165|949166|949167|957624|957625|957626|957627|960834", + "text": "Xeroderma pigmentosum, group F" + }, + { + "baseId": "31619|31619|70481|70482|70482|70483|70484|70487|70487|134454|137870|137873|137874|137876|137877|137880|137881|137882|137883|137884|137887|137889|137891|137892|137892|137897|215505|242189|242190|242191|242192|255456|255457|333738|340492|341868|341877|341879|400521|400523|400529|400665|400667|401098|401100|401337|413430|429758|429759|465041|465045|465053|465057|465726|465919|529246|529434|529436|529444|529465|529466|529467|529771|529772|529774|567671|567677|567678|569972|569973|573713|643908|643909|643910|643911|643912|643913|643914|643915|643916|643917|643918|643919|643920|643921|652453|684573|684574|684577|688527|739952|754899|797245|820765|843092|843093|843094|843095|843096|843097|843098|843099|843100|843101|843102|843103|843104|843105|843106|843107|843108|843109|843110|843111|843112|851649|851651|852620|919606|927558|927559|927560|927561|927562|927563|927564|937217|937218|937219|937220|940343|949164|949165|949166|949167|957624|957625|957626|957627|960834", + "text": "Fanconi anemia, complementation group Q" + }, + { + "baseId": "31619|31619|31620|70487|137892|613483", + "text": "XFE progeroid syndrome" + }, + { + "baseId": "31621|31622|31624|31625|31627|31628|137859|137867|137867|137869|259693|281793|281794|281798|281800|282412|282424|282425|282427|282429|284042|284047|284063|284070|284072|284080|284221|284229|284236|284238|284239|284240|284242|284244|284255|284275|284279|284281|284284|615785|620028|620029|620030|685111|707709|719233|774569|790037|790038|790039|790040|790041|790042|881009|881010|881011|881012|881013|881014|881015|881016|881017|881018|881019|881020|881021|881022|881023|881024|881025|881026", + "text": "Xeroderma pigmentosum, complementation group b" + }, + { + "baseId": "31623|137867", + "text": "Trichothiodystrophy 2, photosensitive" + }, + { + "baseId": "31629", + "text": "Estrogen receptor mutant, temperature-sensitive" + }, + { + "baseId": "31630", + "text": "Migraine, susceptibility to" + }, + { + "baseId": "31631|31632|75131|165621|165622|165623|165624|165625|165626|165627|424252|578655|578656", + "text": "Estrogen resistance" + }, + { + "baseId": "31633", + "text": "Hdl cholesterol, augmented response of, to hormone replacement" + }, + { + "baseId": "31641", + "text": "Microvascular complications of diabetes 2" + }, + { + "baseId": "31643|31644", + "text": "EPOXIDE HYDROLASE 1 POLYMORPHISM" + }, + { + "baseId": "31647|31648|31649|31650|31651", + "text": "Nonsmall cell lung cancer, response to tyrosine kinase inhibitor in, somatic" + }, + { + "baseId": "31647|31648|31649|31651|31652|54420|174095|174097|174098|174099|174100|174101|174102|174103|174104|174105|174106|174107|174108|174109|174110|174112|174113|174115|174116|174117|174118|174230|174231|174232|174233|174234|174236|174237|174238|174239|174240|174241|174242|174243|174244|174245|174246|174247|174249|174250|174251|174252|174254|178179|178181|178198|178201", + "text": "Tyrosine kinase inhibitor response" + }, + { + "baseId": "31648", + "text": "Adenocarcinoma of lung, response to tyrosine kinase inhibitor in, somatic" + }, + { + "baseId": "31648", + "text": "carboplatin, docetaxel, erlotinib, gemcitabine, and paclitaxel response - Efficacy" + }, + { + "baseId": "31648|31652|227818", + "text": "gefitinib response - Efficacy" + }, + { + "baseId": "31648|31652", + "text": "erlotinib response - Efficacy" + }, + { + "baseId": "31648", + "text": "Gefitinib response" + }, + { + "baseId": "31648", + "text": "Erlotinib response" + }, + { + "baseId": "31652", + "text": "Nonsmall cell lung cancer, resistance to tyrosine kinase inhibitor in" + }, + { + "baseId": "31652|54393|54416|54442|54443|54449|54462|54463|132039|137759|137761|137763|137764|137765|137766|137768|137769|137770|137771|205383|252902|303207|303209|303210|303216|306481|306483|311366|311367|311466|311467|311469|363091|550726|575762|575763|575765|575771|575775|575777|575778|575779|575780|683914|683915|683916|683917|711069|711070|711071|722589|736193|736194|736195|736196|736197|744422|750695|750696|750697|750698|750699|759690|759691|766312|766313|766315|777863|782880|790728|790729|790733|819877|819878|819879|819880|819881|819882|833644|833645|833646|833647|833648|833649|833650|833651|833652|833653|833654|833655|833656|833657|833658|833659|833660|833661|833662|833663|833664|833665|833666|833667|833668|833669|833670|833671|833672|833673|833674|833675|833676|833677|833678|833679|833680|833681|833682|833683|833684|833685|833686|833687|833688|833689|833690|833691|833692|833693|833694|833695|833696|833697|833698|833699|833700|833701|833702|833703|833704|833705|833706|833707|833708|833709|833710|833711|833712|833713|833714|833715|833716|833717|833718|833719|833720|833721|833722|833723|833724|833725|833726|833727|851154|851156|851644|852092|852371|924866|924867|924868|924869|924870|924871|924872|924873|924874|924875|933898|933899|933900|933901|933902|933903|933904|933905|933906|933907|933908|933909|933910|933911|933912|933913|933914|933915|933916|933917|933918|933919|933920|933921|933922|933923|933924|933925|933926|933927|933928|933929|933930|933931|933932|933933|933934|933935|933936|933937|933938|933939|933940|933941|933942|940077|940078|940079|940080|940081|945645|945646|945647|945648|945649|945650|945651|945652|945653|945654|945655|945656|945657|945658|945659|945660|945661|945662|945663|945664|945665|945666|945667|945668|945669|945670|945671|945672|945673|945674|945675|945676|945677|945678|945679|945680|945681|945682|945683|945684|945685|945686|945687|945688|945689|945690|945691|945692|945693|945694|945695|945696|945697|945698|945699|945700|945701|945702|945703|945704|945705|945706|945707|945708|945709|945710|945711|945712|945713|945714|945715|945716|945717|945718|955163|955164|955165|955166|955167|955168|955169|955170|955171|955172|955173|955174|955175|955176|955177|955178|955179|955180|959859|959860|959861|960633|960634|960635", + "text": "EGFR-related lung cancer" + }, + { + "baseId": "31653|227748|291957|291959|291968|291978|291981|291986|291987|291995|292002|292004|292005|292007|292008|292009|292015|292017|292018|292022|292024|292025|293383|293408|293432|293435|293436|293437|293439|293440|293444|293451|293454|293456|293458|293460|293461|293462|296682|296683|296685|296688|296701|296703|296710|296718|296721|296722|296726|296727|296728|296730|296731|296736|296740|296744|296747|296750|296751|296752|296753|296755|296759|296760|296762|296764|296768|620141|620142|698334|698335|709124|709125|720707|720709|720710|720711|734402|734403|748667|764257|764258|779006|779022|889898|889899|889900|889901|889902|889903|889904|889905|889906|889907|889908|889909|889910|889911|889912|889913|889914|889915|889916|889917|889918|889919|889920|889921|889922|889923|889924|889925|889926|889927|889928|889929|891730|891731|891732|891733|891734|891735|918870", + "text": "Hypomagnesemia 4, renal" + }, + { + "baseId": "31654|31655|204575", + "text": "Eosinophil peroxidase deficiency" + }, + { + "baseId": "31656|31657|329065|329070|329071|329074|339128|339129|339134|339145|339157|339161|339168|339169|339173|339174|345095|345098|345099|346462|346463|346466|375275|375285|378434|434663|467919|506003|506917|569243|571257|574511|587869|646166|646167|646168|646169|797557|845594|845595|845596|845597|845598|877881|877882|877883|877884|877885|877886|880545|904885|919739|958179", + "text": "Glycogen storage disease due to muscle beta-enolase deficiency" + }, + { + "baseId": "31658|31659|31660|31661|31662|31663|31664|31665|31666|31667|31668|31669|38647|38648|138209|138210|237608|253873|253874|253875|311299|311304|311305|311315|311317|311325|311326|311329|311330|311332|311336|311338|311340|311341|311346|311347|316776|316777|316796|316801|316804|316814|316817|316829|316830|316835|316837|316838|316841|316858|316864|322770|322791|322795|322797|322798|322799|322800|322819|322820|322821|322826|322827|322829|322838|323435|323465|323466|323470|323476|323477|323478|576138|590569|682248|790986|790987|857677|858561|866382|866383|866384|866385|866386|866387|866388|866389|866390|866391|866392|866393|866394|866395|866396|866397|866398|866399|866400|866401|868517|868518|919293|963003|963362|965221|965281|983853", + "text": "Hypoparathyroidism-deafness-renal disease syndrome" + }, + { + "baseId": "31670|31671", + "text": "Autism 10" + }, + { + "baseId": "31672|31674|31675|31676|31677|31680|227355|230447|230450|230452|230454|254872|254873|320023|320024|320028|320029|320033|320034|320042|328581|328583|328585|328587|328588|328589|328590|328594|335062|335063|335065|335069|336973|336988|336994|337001|337002|337006|337019|337036|337039|337041|497032|576161|610531|871494|871495|871496|871497|871498|871499|871500|871501|871502|871503|871504|871505|871506|871507|871508|871509|871510|871511|871512|871513|871514|871515|871516|871517|871518|871519|871520|871521|871522|871523|871524|871525|872347", + "text": "Hirschsprung disease 2" + }, + { + "baseId": "31672|31673|31677|31678|31679|227355|535275|535276|538019|538020|538021|538435|576161|581727|612032", + "text": "Waardenburg syndrome type 4A" + }, + { + "baseId": "31677|247444|247445|389334|622878", + "text": "Mitochondrial DNA depletion syndrome 12a (cardiomyopathic type), autosomal dominant" + }, + { + "baseId": "31679|576161", + "text": "ABCD syndrome" + }, + { + "baseId": "31681", + "text": "Migraine, resistance to" + }, + { + "baseId": "31682|31683|31686|31688|31689|31690|231108|336103|536012|538252", + "text": "Waardenburg syndrome type 4B" + }, + { + "baseId": "31685|31686|31687|231106|336098|336099|336103|336107|336110|336111|336112|336114|336118|336123|336124|336126|336132|345832|345834|345850|345851|345854|345856|345858|345862|345863|345867|345872|345874|350280|350283|350286|350289|350290|350293|350294|350295|350298|351312|351313|351314|351315|351316|351318|351320|351321|886443|886444|886445|886446|886447|886448|886449|886450|886451|886452|886453|886454|886455|886456|886457|886458|886459|886460|886461|886462|887479", + "text": "Hirschsprung disease 4" + }, + { + "baseId": "31691", + "text": "High density lipoprotein cholesterol level quantitative trait locus 7" + }, + { + "baseId": "31692|31694|31701|141573|141576|141579|141581|211968|211976|211980|211990|211993|224789|338584|338593|352680|415724|656705|729315|743039|758186|758187|760808|773628|773634|776839|786652|961241|980068|980069|980070|980071|980072|980073|980074|980075", + "text": "Mitochondrial neurogastrointestinal encephalomyopathy" + }, + { + "baseId": "31706", + "text": "IgA nephropathy, susceptibility to" + }, + { + "baseId": "31707|31708|31709|31710|31712|31713|31715|140911|140912|140913|171109|171110|171112|171113|172175|174130|174131|178593|209943|209945|209948|209949|209952|209955|221804|227844|227845|229663|240449|240451|240452|240453|240455|240457|240459|240460|240462|240463|240464|253309|253310|253312|259913|259914|306870|306871|306874|306877|306879|311049|311050|311060|311062|311065|311066|311067|316665|316668|316671|316933|316943|316947|316949|316950|316951|316967|316969|316970|316971|316975|316976|316977|316979|316982|316996|316999|317000|317006|325595|331658|331659|331662|331668|331672|331679|331683|331684|331686|331694|331695|331701|331704|333281|341907|341932|341934|341935|341942|341944|341945|341948|347270|347281|347290|347332|347335|347347|348571|348608|348613|348647|348649|348653|348656|348660|348670|353480|353481|360048|361866|370234|396357|396401|396403|396409|396684|396686|396689|396695|396702|396773|396827|396851|397002|397049|397050|397057|397059|397069|397070|397071|397081|397083|397091|397093|407547|414378|421700|421701|428921|430980|433051|433053|433055|433056|433063|433527|437737|437738|437739|437740|437741|437742|444357|444363|446888|458237|458245|458250|458254|458260|458270|458282|458284|458289|458645|458720|458776|458777|458780|458789|458792|458798|458809|458812|458846|458853|458860|458867|459158|459277|459289|459290|459295|459297|459304|472247|495390|508963|523963|523975|523980|524233|524236|524242|524244|524266|524277|524281|524282|524434|524499|524508|524509|524511|524517|524523|524525|524529|524578|524584|524585|524587|524593|540529|562579|562738|562746|562752|562755|562756|562762|562769|563226|563423|563424|563425|563427|563447|563451|563461|563469|563470|563475|563476|565329|565500|565510|565517|565519|565523|565525|568310|568482|568488|568489|568494|568495|568496|568505|609706|609709|609710|609712|609714|609718|625987|637682|637697|637698|637705|637713|651901|651977|687370|689931|767104|796221|799564|799565|799566|799567|799568|799569|799570|799571|799572|799573|799574|799575|799576|835467|835471|835474|835488|835499|852481|901099|901100|901101|901102|901103|901104|901105|901106|901107|901108|901109|901110|901111|901112|901113|901114|901115|901116|901117|901118|901119|901120|901121|901122|901123|901124|901125|901126|901127|901129|901130|901131|905029|925377|925378|925383|934547|964309|970563|970564|970565|970566|970567|970568|970569|970570|970571|970572|970573|970574|970575|970576|970577|970578|970579|970580|970581|970582|970583|970584|970585|970586|970587|970588|970589|970590|970591|970592|970593|970594|970595|970596|970597|970598|970599|970600|970601|970602|970603|970604|970605|970606|970607|970608|970609|970610|970611|970612|981653|981654|981655|981656|981657|981658|981659|981660|981661|981662", + "text": "Hereditary hemorrhagic telangiectasia type 1" + }, + { + "baseId": "31715|140913|171109|171110|171112|171113|172175|174130|174131|174685|191136|209943|209944|209945|209948|209949|209950|209955|209956|209960|221804|227845|240449|240450|240451|240452|240453|240454|240455|240458|240460|240462|253309|253310|259913|259914|266944|268906|306870|311060|316967|316970|316971|316976|361866|369766|370234|372136|396395|396396|396397|396408|396410|396413|396421|396423|396686|396689|396692|396695|396699|396702|396768|396830|396839|396844|396846|396851|397050|397054|397057|397079|397081|397086|407545|407547|407548|414377|421701|428921|433052|433055|433056|433059|433063|433529|444355|444361|458289|458780|458790|458808|458855|458862|459148|459279|459290|459295|459301|459306|502143|523957|523982|524230|524244|524248|524257|524268|524275|524497|524499|524511|524539|524587|562739|562744|562765|562767|563222|563424|563428|563445|563451|565323|565500|565503|565504|565512|565514|565516|565523|568505|568506|590609|609706|609711|637678|637679|637680|637681|637682|637683|637684|637685|637686|637687|637688|637689|637690|637691|637692|637693|637694|637695|637696|637697|637698|637699|637700|637701|637702|637703|637704|637705|637706|637707|637708|637709|637710|637711|637712|637713|637714|651825|651829|651901|651977|652099|684044|684047|687367|687368|687369|689931|689933|692574|736889|736890|767102|796223|796224|799570|799574|799576|820057|820059|820060|820061|820062|820063|820064|820065|820066|820067|820068|835467|835468|835469|835470|835471|835472|835473|835474|835475|835476|835477|835478|835479|835480|835481|835482|835483|835484|835485|835486|835487|835488|835489|835490|835491|835492|835493|835494|835495|835496|835497|835498|835499|851720|852481|901119|925372|925373|925374|925375|925376|925377|925378|925379|925380|925381|925382|925383|934538|934539|934540|934541|934542|934543|934544|934545|934546|934547|940127|940128|940923|946356|946357|946358|946359|946360|946361|946362|946363|946364|946365|946366|946367|946368|946369|946370|946371|946372|946373|955683|955684|955685|955686|955687|955688|955689|959910|959911", + "text": "Hereditary hemorrhagic telangiectasia" + }, + { + "baseId": "31727|363534|419830|439678|439679|439680|439681|439682|439683|439684|439685|439686", + "text": "Metastatic pancreatic neuroendocrine tumours" + }, + { + "baseId": "31732", + "text": "Lipoma, somatic" + }, + { + "baseId": "31733|31734", + "text": "Angiofibroma, somatic" + }, + { + "baseId": "31737", + "text": "Adenoma of the adrenal gland" + }, + { + "baseId": "31750|31751|31752|31753|31754|576085|609423|792677|799214|799215|799216|799217|799218|981320|981321|981322", + "text": "Elliptocytosis 1" + }, + { + "baseId": "31755|31756|31757", + "text": "Glutaric acidemia IIB" + }, + { + "baseId": "31758|31759|31760|31761|31762|31763|31764|31769|31770|31771|31772|38645|48909|52751|52752|52753|52754|52755|53059|176338|176460|176596|176775|176776|176777|176780|176781|176782|176783|176785|176785|176786|176788|176789|176790|178200|178208|178209|178257|178268|190789|192634|209906|209907|209911|209918|209918|209919|209925|209928|209931|209933|209939|209941|231309|231406|240166|240167|267658|303321|303323|303330|303340|303342|303348|303349|303350|303355|303357|303358|303359|306672|306679|306680|306689|306696|306703|306704|306707|306715|306716|306717|306722|306729|306742|306752|306756|311559|311563|311572|311574|311575|311577|311578|311580|311588|311589|311590|311591|311596|311597|311598|311602|311720|311721|311722|311723|311725|311727|311730|311734|369271|369272|369953|369955|395238|395902|396128|396411|396415|407257|444157|444158|456894|456896|456901|456907|457388|457392|457398|457578|457582|457913|457915|493689|494051|496484|497843|497857|501792|501795|502495|514560|522277|522812|522812|523047|523055|523060|523061|523242|523247|523369|536740|561743|561746|561748|562141|562143|564405|564406|567112|567122|576125|576125|636324|636325|636326|636327|651623|651696|651765|654496|655801|663012|683927|683928|683930|683931|683933|685225|687103|687105|687107|687108|819913|819914|819915|833819|833820|833821|833822|833823|833824|833825|833826|833827|833828|833829|851654|851656|852102|852376|859619|898343|898344|898345|898346|898347|898348|898349|898350|898351|898352|898353|898354|898355|898356|898357|898358|898359|898360|898361|898362|900388|900389|900390|900391|900392|924901|924902|933990|940882|940883|945754|945755|955211|955212|955213|960637|964665|975796|983573", + "text": "Supravalvar aortic stenosis" + }, + { + "baseId": "31765|31766|31767|31773|31774|31775|31776|34304|52752|52753|176785|192634|198648|209911|209918|209918|209919|209939|231309|267658|303321|303323|303330|303348|303349|303350|303355|303357|303358|306672|306679|306680|306696|306703|306704|306707|306715|306716|306722|306742|311563|311574|311578|311580|311588|311589|311590|311591|311597|311598|311602|311720|311721|311722|311723|311725|311727|311734|369271|396128|407257|444157|444158|457915|522812|561746|562141|576125|654496|685225|687103|859619|898343|898344|898345|898346|898347|898348|898349|898350|898351|898352|898353|898354|898355|898356|898357|898358|898359|898360|898361|898362|900388|900389|900390|900391|900392", + "text": "Cutis laxa, autosomal dominant 1" + }, + { + "baseId": "31777|31777|31778|31779|31779|31782|31784|31784|140903|140904|140904|140905|178750|205023|243853|243855|243865|243868|243869|243869|245163|245163|257294|257296|257297|257299|260218|410724|446203|470271|471345|471349|507235|507640|533462|533505|533967|533971|533973|533974|533978|571110|571125|571127|573440|573441|575069|575070|575071|648551|648552|648553|648554|648555|648556|648557|648558|648559|648560|648561|648562|648563|648564|648565|652970|653528|653529|656614|684860|689177|694523|791965|791966|800165|821298|848186|848187|848188|848189|848190|848191|848192|848193|852896|929134|929135|929136|929137|938897|938898|938899|938900|938901|940496|950968|950969|950970|950971|950972|950973|950974|950975|958769|958770", + "text": "Cyclical neutropenia" + }, + { + "baseId": "31777|31779|31782|31782|31783|31784|31784|31785|31787|132671|140903|140904|140905|205024|243853|243855|243865|243868|243869|243869|245163|257294|257296|257297|257299|260218|410724|446203|470271|471345|471349|507235|507640|533462|533505|533967|533971|533973|533974|533978|571110|571125|571127|573440|573441|575069|575070|575071|648551|648552|648553|648554|648555|648556|648557|648558|648559|648560|648561|648562|648563|648564|648565|652970|653528|653529|656614|684860|689177|694523|800165|821298|848186|848187|848188|848189|848190|848191|848192|848193|852896|929134|929135|929136|929137|938897|938898|938899|938900|938901|940496|950968|950969|950970|950971|950972|950973|950974|950975|958769|958770|965629|969615", + "text": "Neutropenia, severe congenital 1, autosomal dominant" + }, + { + "baseId": "31788|31790|38481|53814|135065|141945|244249|276934|276937|276938|276943|276944|277211|277215|277216|277906|277907|277912|277913|277914|278013|278014|278015|278016|278027|353066|361263|539028|946956", + "text": "Congenital hypomyelinating neuropathy 1, autosomal recessive" + }, + { + "baseId": "31789|31791|49429|49430|49431|221981|244557|244559|244560|253796|310600|310603|310604|315774|315775|315776|315779|315780|321852|321857|322507|322508|322510|322513|322519|322521|460793|539028|626198|866038|866039|866040|866041|866042|866043", + "text": "Charcot-Marie-Tooth disease, demyelinating, type 1d" + }, + { + "baseId": "31791|31792", + "text": "Dejerine-sottas neuropathy, autosomal dominant" + }, + { + "baseId": "31793|31794|31795|31796|31798|31799|31800|70601|70602|70603|70604|70605|70606|70607|70608|70609|70610|70611|70612|70613|70614|70615|70616|70617|70618|70619|70620|70621|70622|70623|70624|70625|70626|70627|70628|70629|70630|70631|70632|70633|70634|70635|70636|70637|70638|70639|70640|70641|70642|70643|70644|70645|70646|70647|70648|301442|301443|301444|301449|301451|301452|301453|301479|304686|304694|304699|304700|304702|309309|309310|309313|309321|309330|309331|309333|309335|309345|309346|309353|309357|309467|309470|309474|309476|309477|309482|309485|309486|370663|623296|699735|699736|710694|710695|722231|722232|790671|792765|897214|897215|897216|897217|897218|897219|897220|897221|897222|897223|897224|897225|897226|897227|897228|897229|897230|897231|897232|900299|900300|900301|900302|900303", + "text": "Congenital secretory diarrhea, chloride type" + }, + { + "baseId": "31802|31803|38640|102921|102922|102923|196211|363960|363960|454675|454745|454768|454771|455167|508799|512901|512902|520794|521089|521203|521205|521263|521295|521298|559960|564805|564816|564872|622347|633510|633522|633546|633547|633548|633549|633550|633551|798553|920206|961603|961604", + "text": "Parkinsonism-dystonia, infantile, 1" + }, + { + "baseId": "31804", + "text": "Blepharospasm" + }, + { + "baseId": "31805|31808", + "text": "Attention deficit-hyperactivity disorder, susceptibility to" + }, + { + "baseId": "31806", + "text": "Autonomic nervous system dysfunction" + }, + { + "baseId": "31807", + "text": "DOPAMINE RECEPTOR D4 POLYMORPHISM" + }, + { + "baseId": "31809", + "text": "Essential tremor, susceptibility to" + }, + { + "baseId": "31809|288123|288867|288871|288877|291812|291911|291912|291920|291923|291926|887702|887703", + "text": "Hereditary essential tremor 1" + }, + { + "baseId": "31811", + "text": "Dna topoisomerase II, resistance to inhibition of, by amsacrine" + }, + { + "baseId": "31813", + "text": "DNA topoisomerase I, camptothecin-resistant" + }, + { + "baseId": "31814|31815", + "text": "DNA ligase I deficiency" + }, + { + "baseId": "31816|31817|227406|237162|583130|626277", + "text": "Cerebrooculofacioskeletal syndrome 4" + }, + { + "baseId": "31818|31819|31821|31822|31823|31827|31828|31829|31830|31831|31832|31832|137834|137836|137837|137838|137838|137839|137840|137841|137843|137844|137846|137853|137856|257141|257142|257144|257147|257148|259254|333807|333809|333810|333811|333816|333817|343771|343773|343780|343782|343784|343785|343786|349074|349076|349077|349077|349079|349083|349085|349974|349976|349977|349980|349982|349983|349984|349985|349988|349991|349996|349997|349998|350001|350005|389209|537335|615829|615830|615846|620642|620643|620644|620907|728270|731290|757111|757117|772746|772747|779918|779923|786226|791939|793797|882119|882120|882121|882122|882123|882124|882125|882126|882127|882128|882129|882130|882131|882132|882133|882134|882135|882136|882137|882138|882139|882140|882141|882142|882143|882144|882145|882146|882147|882148|882149|882906|882907|882908", + "text": "Xeroderma pigmentosum, group D" + }, + { + "baseId": "31818|31820|31823|31824|31825|31831|31831|31832|137838|137838|214806|349077|389209", + "text": "Trichothiodystrophy 1, photosensitive" + }, + { + "baseId": "31826|31827|31831|31831|31832|137838|137855|349077|550640|970421", + "text": "Cerebrooculofacioskeletal syndrome 2" + }, + { + "baseId": "31831|622465", + "text": "Trichothiodystrophy" + }, + { + "baseId": "31831", + "text": "ERCC2-related conditions" + }, + { + "baseId": "31833", + "text": "Ventricular fibrillation, paroxysmal familial, 2" + }, + { + "baseId": "31834|31835|31836|31838|97384|97385|178310|310625|321902|321910|321912|321915|322602|322609|322610|420435|525555|737571|790977|866100|925910", + "text": "Hyperphenylalaninemia, BH4-deficient, D" + }, + { + "baseId": "31839|31840|31841|31842|31843|31844|31845|31846|31847|134341|134342|255858|255859|326238|326242|326247|326265|326275|326281|326286|326287|326293|335981|335990|335993|335997|335999|336006|336008|336012|336013|336015|336022|336023|336025|336028|336033|336034|336036|336037|342297|342301|342304|342305|342307|342308|342311|342312|342315|343894|343899|343900|343901|343902|343906|343909|343914|343916|353355|703795|726776|875915|875916|875917|875918|875919|875920|875921|875922|875923|875924|875925|875926|875927|875928|875929|875930|875931|875932|875933|875934|876719|876720", + "text": "Miller syndrome" + }, + { + "baseId": "31848", + "text": "Benzene toxicity, susceptibility to" + }, + { + "baseId": "31848", + "text": "Leukemia, post-chemotherapy, susceptibility to" + }, + { + "baseId": "31848", + "text": "Breast cancer, post-chemotherapy poor survival in" + }, + { + "baseId": "31848", + "text": "Alkylating Agents, anthracyclines and related substances, fluorouracil, and Platinum compounds response - Efficacy" + }, + { + "baseId": "31849|31850|31851|31852|31853|31854|31855|31856|31857|44673|44674|44675|44676|44677|44678|53444|53445|53446|53450|53451|53454|53455|53456|53457|53459|53460|53462|53463|53464|53465|53467|53469|53470|53471|53472|53473|53474|53475|53476|53477|53479|53480|53481|53482|53483|53484|53485|53486|53488|53489|53490|53491|53493|53495|53496|53497|53498|140863|140867|140868|140869|165536|171194|176526|176527|176529|176531|176532|176533|176534|176535|176536|176541|176664|176665|176667|176669|176671|176672|176673|176674|176676|176677|176678|176679|178729|186567|186568|186572|186574|188894|189986|189989|189993|189994|197966|197968|197969|197973|197974|197975|197976|197977|197979|197980|197984|197986|197990|197995|197998|198000|198001|198003|198005|198006|198007|198008|198009|215553|224539|224541|230862|230864|230865|230866|230868|230870|245257|245259|247150|256651|259026|259032|259033|259038|259043|264903|331153|331163|331167|331172|331175|331178|331180|331181|331187|331190|331193|331197|331200|331208|331212|331214|331215|341417|341421|341425|341427|341439|341452|341470|341473|341479|341483|341489|341490|341493|346908|346911|346912|346924|346928|346937|346939|346946|346956|346966|346967|348176|348180|348183|348188|348190|348194|348197|348200|348210|348217|348223|348224|348230|375884|375890|376942|376943|378958|378962|378964|378971|378974|402715|402720|402763|402769|402779|402783|402787|403248|403252|403258|403282|403284|403295|404835|410342|410344|410345|410349|410350|410351|410353|410358|410359|410360|415598|445956|445957|467956|467958|468882|468891|468900|468902|468905|468915|468916|469285|469286|469299|469302|469310|469313|469314|469717|469718|469725|469729|469734|469736|487932|506545|507339|507348|510783|510788|510789|511137|532221|532226|532228|532230|532234|532258|532321|532323|532325|532334|532336|532343|532666|532668|532679|532717|536966|570105|570110|571885|571888|571889|571895|571896|571898|571908|572617|572620|572621|572622|574729|574731|574733|574735|574737|576268|576269|610127|610128|618873|618874|647161|647164|647165|647166|647167|647168|647169|647170|647171|647172|647173|647174|647175|647176|647177|647178|647179|647180|647181|647182|653552|654842|684753|688905|688907|727703|772120|772121|788274|797666|821186|821187|846780|846781|846782|846783|846784|846785|846786|846787|846788|846789|846790|846791|846792|846793|846794|846795|846796|846797|846798|846799|846800|846801|846802|846803|846804|851771|852935|879140|879141|879142|879143|879144|879145|879146|879147|879148|879149|879150|879151|879152|879153|879154|879155|879156|879157|879158|879159|879160|879161|879162|880652|880653|904021|914429|914551|914571|914572|914607|916604|918429|919793|919794|928683|928684|928685|928686|928687|928688|928689|938410|938411|938412|938413|938414|938415|950496|950497|950498|950499|950500|958455|958456|958457|960264|961886|965745", + "text": "Arrhythmogenic right ventricular cardiomyopathy, type 10" + }, + { + "baseId": "31851|198007|572622", + "text": "Arrhythmogenic right ventricular dysplasia/cardiomyopathy, type 10" + }, + { + "baseId": "31857|186568|198007|230865|404835|410357", + "text": "Dilated cardiomyopathy 1BB" + }, + { + "baseId": "31858|94243|94244|94245|94246|94247|94248|486662", + "text": "Palmoplantar keratoderma i, striate, focal, or diffuse" + }, + { + "baseId": "31859|31860|31861|31862|31863|31863|31864|31864|31865|31865|31866|31867|31868|31869|31870|31871|31872|31873|31873|31874|44665|44665|44666|44667|48317|48317|53409|53410|53410|53411|53412|53413|53414|53419|53419|53420|53421|53421|53422|53422|53423|53423|53423|53425|53425|53426|53427|53428|53429|53429|53430|53432|53432|53433|53433|53434|53435|53435|53437|53438|53438|53439|53440|53440|53441|53441|53442|71446|77284|77285|77286|77286|77290|77293|77294|77295|77299|77299|77305|77308|77309|77311|77316|77316|77320|77320|140780|173492|173494|173494|173630|173631|173631|173632|173633|173633|173735|178397|190384|190384|198108|198111|198112|198113|198114|198116|198121|198123|198124|198127|198128|198130|198130|198131|198132|198135|224252|228913|228914|228916|228917|228919|228920|228921|228922|228923|228924|238659|238660|238661|238662|238663|238664|238665|238666|258239|258242|258243|267704|267704|269244|269334|269574|270200|273357|274199|274251|284791|284792|284793|285474|285481|285482|287689|287699|287976|353560|366383|366437|366441|367018|367018|392363|392367|392368|392379|392391|392477|392479|392485|392488|392581|392592|392708|392712|392716|392719|392725|392729|405627|405629|405630|405631|405632|405634|443166|443167|450393|450395|450652|450654|450655|450663|450666|450677|450745|450750|450759|481123|486932|489161|489280|489771|490042|491451|491907|499542|499777|499780|500012|500018|513253|513411|517732|517741|517743|517835|517838|517839|517846|517847|517849|517853|538929|557886|557888|557890|557892|557941|557943|557945|557947|557949|558627|559127|559129|559131|560952|560960|560964|560984|587482|609183|614882|629488|629489|629490|629491|629492|629493|629494|629495|629496|629497|629498|629499|629500|629501|629502|629503|650939|655421|683487|733179|762954|762956|774706|781187|781188|790200|792962|802131|819126|819127|819128|825765|825766|825767|825768|825769|825770|825771|825772|825773|825774|825775|825776|825777|825778|825779|825780|825781|825782|825783|825784|825785|825786|825787|825788|850884|883802|883803|883804|883805|883806|883807|883808|883809|883810|883811|887277|918740|922584|922585|922586|922587|922588|922589|922590|931159|931160|931161|940696|940697|940698|942617|942618|942619|942620|942621|942622|942623|942624|942625|942626|952949|952950|952951", + "text": "Myofibrillar myopathy 1" + }, + { + "baseId": "31859|31863|44665|44666|44667|53409|53410|53411|53412|53419|53421|53422|53423|53423|53425|53429|53430|53432|53433|53438|53439|53440|53441|77320|173494|173631|190384|198108|267704|284791|284792|285474|285481|285482|287689|287699|287976|443167|481123|609294|883802|883803|883804|883805|883806|883807|883808|883809|883810|883811|887277", + "text": "Dilated cardiomyopathy 1I" + }, + { + "baseId": "31863|31864|31865|31873|31874|44665|48317|53410|53411|53413|53414|53419|53420|53421|53422|53423|53423|53425|53426|53428|53429|53432|53433|53434|53435|53437|53438|53440|53441|53442|77284|77286|77290|77294|77295|77299|77305|77309|77311|77316|77320|140780|173492|173494|173630|173631|173633|173735|190384|198111|198112|198113|198114|198116|198121|198123|198124|198127|198128|198130|198131|198132|198135|224252|228913|228914|228916|228917|228919|228920|228921|228922|228923|228924|238659|238660|238661|238662|238663|238664|238665|238666|258239|258242|258243|267704|269244|269334|269574|270200|273357|274199|274251|366383|366437|366441|367018|392363|392367|392368|392379|392391|392479|392485|392488|392581|392592|392708|392712|392716|392719|392725|392729|405627|405629|405630|405631|405632|405634|443166|450393|450395|450652|450654|450655|450663|450666|450677|450745|450750|450759|481123|486932|489161|489280|489771|490042|491451|491907|499542|499777|499780|500012|500018|517732|517741|517743|517835|517838|517839|517846|517847|517849|517853|557886|557888|557890|557892|557941|557943|557945|557947|557949|558627|559127|559129|559131|560952|560960|560964|560984|587482|614882|629488|629489|629490|629491|629492|629493|629494|629495|629496|629497|629498|629499|629500|629501|629502|629503|650939|655421|683487|733179|762954|762956|774706|781187|781188|792962|819126|819127|819128|825765|825766|825767|825768|825769|825770|825771|825772|825773|825774|825775|825776|825777|825778|825779|825780|825781|825782|825783|825784|825785|825786|825787|825788|850884|922584|922585|922586|922587|922588|922589|922590|931159|931160|931161|940696|940697|940698|942617|942618|942619|942620|942621|942622|942623|942624|942625|942626|952949|952950|952951", + "text": "Muscular dystrophy, limb-girdle, type 2R" + }, + { + "baseId": "31863|31874|44665|44666|44667|53409|53410|53412|53419|53421|53422|53423|53423|53425|53429|53430|53432|53433|53438|53439|53441|77320|173494|173631|190384|198108|267704|284791|284792|285474|285481|285482|287689|287699|287976|443167|883802|883803|883804|883805|883806|883807|883808|883809|883810|883811|887277", + "text": "Neurogenic scapuloperoneal syndrome, Kaeser type" + }, + { + "baseId": "31875|31885|54106|173844|197036|444013|679437|919059|919060|919061", + "text": "Keratosis palmoplantaris striata II" + }, + { + "baseId": "31876|31876|31882|31883|31884|31885|44680|44683|44684|44685|44686|44689|44690|54017|54017|54018|54021|54023|54025|54027|54028|54031|54034|54036|54038|54040|54041|54042|54043|54045|54046|54048|54049|54052|54054|54057|54058|54060|54061|54062|54064|54065|54066|54067|54073|54074|54075|54077|54078|54079|54080|54081|54083|54084|54085|54086|54088|54089|54091|54093|54096|54098|54101|54102|54103|54105|54107|54108|54109|54110|54112|54113|54116|54117|54118|54120|54122|54123|54124|54127|54128|54129|54130|54134|54135|54136|54137|54138|54142|54143|54147|54148|54149|75137|140871|140873|140874|140875|140876|153685|165540|167522|171102|171103|171104|171104|171105|172173|173844|173849|173850|173853|173855|173858|173858|173989|173990|173991|173995|173996|173997|173998|174000|174005|174008|174134|174135|174136|174137|174142|174142|174143|174144|174145|174381|174382|174383|174384|174385|174520|174522|178549|178551|178552|178553|178554|178559|178560|178563|178566|178571|186326|186329|186332|186333|186334|186335|186336|186339|186340|189824|189825|189827|189829|189830|189832|189834|195967|197017|197020|197025|197027|197032|197033|197034|197036|197037|197039|197041|197045|197046|197050|197051|197052|197053|197057|197059|197064|197066|197067|197069|197070|197071|197073|197075|197076|197077|197078|197079|197080|197081|197083|197084|197086|197087|197088|197091|197092|197093|197096|197097|197098|197102|197105|197106|197108|197109|197110|197111|197115|197120|197122|197123|197126|215346|215348|215349|224318|224321|224324|224325|224329|224330|224332|224336|224337|229491|229493|229494|229495|229496|229499|229502|229503|229511|229514|229517|229519|229520|236835|245263|245264|245265|245266|245268|245269|245270|245271|245272|245273|245275|245278|245279|245281|245282|245283|252535|258442|258446|258450|258452|258456|258457|258458|258461|259846|259847|259848|260532|266210|301044|301049|301063|304029|304031|304035|308732|308733|308741|308743|308745|308746|308748|308803|359753|359754|368723|368725|368732|368743|368747|368749|368759|369038|369039|369045|369053|369075|369185|369208|369212|369221|369223|369239|369257|369263|370548|370550|370578|370583|395210|395213|395216|395223|395224|395231|395235|395430|395431|395433|395441|395447|395451|395456|395460|395466|395492|395493|395498|395499|395571|395574|395582|395583|395585|395591|395592|395858|395875|395877|395881|395889|395891|395893|395894|406905|406909|406917|406920|406921|406924|406926|406927|406928|415067|419272|421600|425706|425708|425709|444001|444002|444003|444004|444006|444012|444013|455811|455812|455813|455823|455826|455827|455831|455837|455839|455841|455843|455848|455857|455996|456001|456012|456014|456015|456023|456028|456034|456037|456069|456072|456081|456085|456093|456394|456399|456404|456406|456407|456411|456425|456432|456436|456754|456758|456761|456762|456763|456769|456773|456777|456790|456801|456803|481771|481772|487089|487093|487159|487204|487212|487215|487217|496869|501477|501697|509802|509803|509809|509819|509820|509821|509826|509833|509837|509839|511085|511086|521809|521819|521821|521827|521829|521834|521836|521840|521849|521852|521855|521862|522173|522174|522179|522180|522181|522184|522185|522186|522187|522188|522192|522195|522198|522199|522201|522202|522207|522209|522211|522213|522216|522217|522227|522232|522233|522236|522238|522239|522245|522247|522559|522561|522566|522567|522569|522571|522573|522584|522591|522595|522600|522602|522604|522606|522607|522609|522611|522614|536319|560954|560956|560957|560958|560962|560965|560971|560973|560974|560975|560981|560988|560994|560996|560998|561000|561009|561011|561013|561017|561018|561019|561043|561055|561061|561065|561073|561075|561077|561081|561084|561089|561091|561092|561095|561097|561100|561101|561107|561108|561118|561120|563763|563768|563770|563775|563777|563778|563786|563796|563797|563799|563803|563805|563807|563809|563813|563814|563819|563820|565255|565959|565960|565961|565965|565977|565978|565982|565988|565989|565997|565999|566005|566008|566013|566018|566021|566038|566041|609632|614926|614930|614936|614937|614941|614945|614946|617296|617303|617304|617305|617323|617326|617332|635243|635244|635245|635246|635247|635248|635249|635250|635251|635252|635253|635254|635255|635256|635257|635258|635259|635260|635261|635262|635263|635264|635265|635266|635267|635268|635269|635270|635271|635272|635273|635274|635275|635276|635277|635278|635279|635280|635281|635282|635283|635284|635285|635286|635287|635288|635289|635290|635291|635292|635293|635294|635295|635296|635297|635298|635299|635300|635301|635302|635303|635304|635305|635306|635307|651597|651604|651637|679438|679439|686909|686910|686912|686915|686916|686917|689839|692061|692063|695330|699673|722146|735777|750228|750232|759492|759614|765850|765851|765853|765860|782660|782661|782662|790658|795907|805512|819750|832443|832444|832445|832446|832447|832448|832449|832450|832451|832452|832453|832454|832455|832456|832457|832458|832459|832460|832461|832462|832463|832464|832465|832466|832467|832468|832469|832470|832471|832472|832473|832474|832475|832476|832477|832478|832479|832480|832481|832482|832483|832484|832485|832486|832487|832488|832489|832490|832491|832492|832493|832494|832495|832496|832497|832498|832499|832500|832501|832502|832503|832504|832505|832506|832507|832508|832509|832510|832511|832512|832513|832514|832515|832516|832517|832518|832519|832520|832521|832522|832523|832524|832525|832526|832527|852032|852034|852036|852300|910186|910202|910210|910236|910290|910307|910378|910404|910500|910502|910517|910521|910523|910538|910554|910555|910582|910597|910611|910657|915853|916130|916139|924490|924491|924492|924493|924494|924495|924496|924497|924498|924499|924500|924501|924502|924503|924504|924505|924506|924507|924508|924509|924510|924511|924512|933488|933489|933490|933491|933492|933493|933494|933495|933496|933497|933498|933499|933500|933501|933502|933503|933504|933505|940049|940050|940862|945205|945206|945207|945208|945209|945210|945211|945212|945213|945214|945215|945216|945217|945218|945219|945220|945221|945222|945223|945224|945225|945226|945227|945228|945229|945230|954898|954899|954900|954901|954902|954903|954904|954905|954906|954907|954908|959817|960612", + "text": "Dilated cardiomyopathy with woolly hair and keratoderma" + }, + { + "baseId": "31876|31877|31882|31883|31885|31885|31886|44679|44680|44680|44683|44683|44684|44684|44685|44685|44686|44689|44689|44690|44690|54017|54017|54018|54021|54022|54023|54025|54025|54027|54027|54028|54028|54030|54031|54034|54034|54036|54038|54040|54040|54041|54041|54042|54042|54043|54044|54045|54046|54046|54048|54048|54049|54052|54053|54054|54057|54057|54058|54060|54060|54061|54062|54064|54064|54065|54066|54066|54067|54067|54073|54073|54074|54074|54075|54075|54077|54078|54079|54080|54081|54082|54083|54084|54084|54085|54086|54086|54088|54089|54091|54091|54092|54093|54093|54096|54096|54098|54101|54102|54103|54103|54105|54105|54107|54108|54108|54109|54110|54110|54112|54112|54113|54114|54116|54117|54117|54118|54120|54120|54122|54123|54124|54124|54127|54128|54128|54129|54130|54134|54135|54135|54136|54136|54137|54138|54138|54142|54143|54147|54147|54148|54149|54149|140871|140871|140873|140874|140874|140875|140876|140876|153685|165540|171102|171102|171103|171103|171104|171104|172173|173844|173844|173849|173850|173850|173853|173853|173855|173855|173858|173858|173989|173989|173990|173991|173995|173996|173996|173997|173998|174000|174000|174002|174005|174008|174009|174134|174135|174136|174136|174137|174142|174142|174143|174143|174144|174145|174381|174382|174382|174383|174383|174384|174385|174520|174520|174522|178549|178551|178552|178553|178554|178559|178559|178560|178563|178566|178566|178571|186326|186329|186332|186332|186333|186334|186335|186336|186339|186339|186340|186340|189824|189825|189827|189827|189829|189830|189831|189832|189834|189834|197017|197020|197025|197027|197032|197033|197034|197036|197037|197039|197039|197041|197041|197045|197046|197050|197051|197052|197053|197056|197057|197057|197059|197064|197066|197067|197069|197070|197071|197073|197075|197076|197077|197078|197079|197080|197081|197083|197084|197086|197087|197088|197091|197092|197093|197095|197096|197097|197098|197102|197105|197106|197108|197109|197109|197110|197111|197115|197120|197122|197123|197126|199787|215346|215348|215349|224318|224321|224324|224325|224329|224330|224330|224332|224336|224337|229491|229491|229493|229494|229495|229496|229496|229499|229501|229502|229503|229511|229514|229517|229517|229519|229520|236835|245263|245264|245265|245266|245268|245269|245270|245271|245272|245273|245275|245278|245279|245281|245281|245282|245283|252535|258442|258446|258450|258452|258456|258457|258458|258461|259846|259847|259848|260532|266210|301042|301044|301044|301049|301049|301057|301063|301065|301066|304009|304013|304014|304029|304031|304031|304035|304035|304037|304040|304041|304042|304043|308732|308732|308733|308733|308740|308741|308741|308743|308743|308744|308745|308745|308746|308746|308748|308748|308764|308765|308773|308775|308795|308800|308803|308803|308804|308807|308814|308817|308818|308821|359753|359754|361863|368723|368725|368732|368743|368747|368749|368759|369038|369039|369045|369053|369075|369185|369208|369212|369221|369223|369239|369257|369263|370548|370550|370578|370583|395210|395213|395213|395216|395223|395224|395231|395235|395430|395431|395433|395441|395444|395447|395451|395456|395460|395466|395471|395472|395492|395493|395498|395499|395571|395574|395577|395582|395583|395585|395591|395592|395858|395867|395875|395877|395881|395889|395891|395893|395894|406905|406909|406917|406920|406921|406924|406926|406927|406928|415067|419272|421600|425706|425708|425709|425709|439878|444001|444002|444003|444004|444006|444012|444013|444013|455811|455812|455813|455823|455826|455827|455827|455831|455835|455837|455839|455841|455843|455848|455857|455996|456001|456009|456012|456014|456015|456023|456028|456034|456037|456059|456063|456069|456072|456081|456085|456093|456394|456399|456404|456406|456407|456411|456423|456425|456432|456436|456754|456758|456761|456762|456763|456769|456773|456777|456790|456801|456803|481771|481772|487089|487093|487159|487204|487212|487215|487217|496869|501465|501477|501697|509802|509803|509809|509819|509820|509820|509821|509824|509826|509833|509837|509839|511085|511086|521809|521819|521821|521827|521829|521834|521836|521840|521849|521852|521855|521862|522173|522174|522179|522180|522181|522184|522185|522186|522187|522188|522192|522192|522195|522195|522198|522199|522201|522202|522207|522209|522211|522213|522216|522217|522227|522232|522233|522236|522238|522238|522239|522245|522247|522559|522561|522566|522567|522567|522569|522571|522573|522584|522591|522595|522600|522602|522604|522606|522607|522609|522611|522614|536319|560954|560956|560957|560958|560962|560965|560971|560973|560974|560975|560981|560988|560994|560996|560998|561000|561009|561011|561013|561017|561018|561019|561043|561055|561061|561065|561073|561075|561077|561081|561084|561089|561091|561092|561092|561095|561097|561100|561101|561107|561108|561118|561120|563763|563768|563770|563775|563777|563778|563786|563796|563797|563799|563799|563803|563805|563805|563807|563809|563813|563814|563819|563820|565255|565959|565960|565961|565965|565977|565978|565982|565988|565989|565989|565997|565999|566005|566008|566008|566013|566018|566021|566021|566038|566041|609632|614926|614930|614936|614937|614941|614945|614946|614946|617296|617303|617304|617305|617313|617323|617326|617332|617332|635243|635244|635245|635246|635247|635248|635249|635250|635251|635252|635253|635254|635255|635256|635257|635258|635259|635260|635261|635262|635263|635264|635265|635266|635267|635268|635269|635270|635271|635272|635273|635274|635275|635276|635277|635277|635278|635279|635280|635281|635282|635283|635284|635285|635286|635287|635288|635289|635290|635291|635292|635293|635294|635295|635296|635297|635298|635299|635300|635301|635302|635303|635304|635305|635306|635307|651597|651604|651637|679438|679438|679439|679753|686909|686910|686912|686915|686916|686917|689839|692061|692061|692063|695330|699673|722146|735777|750228|750232|759492|759614|765850|765851|765853|765860|782660|782661|782662|795907|805512|819750|832443|832444|832445|832446|832447|832448|832448|832449|832450|832451|832452|832453|832454|832455|832456|832457|832458|832459|832460|832461|832462|832463|832464|832465|832466|832467|832468|832469|832470|832471|832472|832473|832474|832475|832476|832477|832478|832479|832480|832481|832482|832483|832484|832485|832486|832487|832488|832489|832490|832491|832492|832493|832494|832495|832496|832497|832498|832499|832500|832501|832502|832503|832504|832505|832506|832507|832508|832509|832510|832511|832512|832513|832514|832515|832516|832517|832518|832519|832520|832521|832522|832523|832524|832525|832526|832527|852032|852034|852036|852300|896845|896846|896847|896848|896849|896850|896851|896852|896853|896854|896855|896858|896862|896864|896869|896870|896871|896872|896873|896874|896875|900268|900269|900271|910186|910202|910210|910233|910236|910290|910307|910378|910404|910495|910500|910502|910517|910521|910523|910538|910554|910555|910582|910597|910611|910657|915853|916130|916139|924490|924491|924492|924493|924494|924495|924496|924497|924498|924499|924500|924501|924502|924503|924504|924505|924506|924507|924508|924509|924510|924511|924512|933488|933489|933490|933491|933492|933493|933494|933495|933496|933497|933498|933499|933500|933501|933502|933503|933504|933505|940049|940050|940862|945205|945206|945207|945208|945209|945210|945211|945212|945213|945214|945215|945216|945217|945218|945219|945220|945221|945222|945223|945224|945225|945226|945227|945228|945229|945230|954898|954899|954900|954901|954902|954903|954904|954905|954906|954907|954908|959817|960612|967181|967182|969605|970839|973025", + "text": "Arrhythmogenic right ventricular dysplasia 8" + }, + { + "baseId": "31878|31879|31880|31881|31885|38627|44679|44680|44683|44684|44685|44689|44690|54017|54022|54025|54027|54028|54030|54034|54040|54041|54042|54043|54044|54045|54046|54048|54053|54057|54060|54064|54066|54067|54073|54074|54075|54082|54084|54086|54091|54092|54093|54096|54103|54105|54108|54110|54114|54117|54120|54124|54128|54130|54134|54135|54136|54138|54147|54149|140871|140874|140875|140876|171102|171104|173850|173853|173855|173989|173996|173997|174000|174002|174009|174135|174136|174142|174143|174382|174383|174520|178559|178566|186332|186339|186340|189827|189831|189834|197039|197041|197056|197057|197095|197109|224330|229489|229491|229496|229501|229517|245264|245281|258459|301040|301042|301044|301049|301057|301063|301065|301066|301069|301070|304009|304010|304013|304014|304029|304031|304032|304033|304034|304035|304037|304040|304041|304042|304043|304045|308731|308732|308733|308740|308741|308743|308744|308745|308746|308748|308764|308765|308773|308774|308775|308785|308786|308795|308800|308803|308804|308807|308814|308817|308818|308821|308822|308823|308824|353797|395213|444013|455827|501465|509820|522192|522195|522238|561092|563799|565989|614946|617313|617332|679438|692061|896845|896846|896847|896848|896849|896850|896851|896852|896853|896854|896855|896858|896862|896864|896869|896870|896871|896872|896873|896874|896875|900268|900269|900271", + "text": "Skin fragility-woolly hair-palmoplantar keratoderma syndrome" + }, + { + "baseId": "31882|31883|31885|44679|44680|44683|44684|44685|44689|44690|54017|54022|54025|54027|54028|54030|54034|54040|54041|54042|54043|54044|54045|54046|54048|54053|54057|54060|54064|54066|54067|54073|54074|54075|54082|54084|54086|54091|54092|54093|54096|54103|54105|54108|54110|54114|54117|54120|54124|54128|54130|54134|54135|54136|54138|54147|54149|140871|140874|140875|140876|171102|171104|173850|173853|173855|173989|173996|173997|174000|174002|174009|174135|174136|174142|174143|174382|174383|174520|178363|178364|178559|178566|186332|186339|186340|189827|189831|189834|197039|197041|197056|197057|197095|197109|224330|229489|229491|229496|229501|229517|245264|245281|258459|301040|301042|301044|301049|301057|301063|301065|301066|301069|301070|304009|304010|304013|304014|304029|304031|304032|304033|304034|304035|304037|304040|304041|304042|304043|304045|308731|308732|308733|308740|308741|308743|308744|308745|308746|308748|308764|308765|308773|308774|308775|308785|308786|308795|308800|308803|308804|308807|308814|308817|308818|308821|308822|308823|308824|353797|395213|444013|455827|501465|509820|522192|522195|522238|561092|563799|565989|614946|617313|617332|679438|692061|896845|896846|896847|896848|896849|896850|896851|896852|896853|896854|896855|896858|896862|896864|896869|896870|896871|896872|896873|896874|896875|900268|900269|900271", + "text": "Lethal acantholytic epidermolysis bullosa" + }, + { + "baseId": "31885|181469|360831|513967|679865", + "text": "Right ventricular cardiomyopathy" + }, + { + "baseId": "31887|31889|44668|44669|44670|44671|55323|55325|55327|55328|55330|55331|55334|55335|55336|55337|55338|55340|55343|55344|55346|55347|55348|55349|55351|55352|55353|55354|55355|55356|55365|55367|55368|55370|83268|140861|165535|171192|171193|172182|176513|176515|176516|176517|176518|176519|176520|176521|176523|176651|176653|176654|176658|176659|178725|178726|189979|189980|189982|189983|189984|197929|197930|197935|197936|197937|197938|197939|197941|197947|197950|197952|197957|197959|197961|197962|222749|224528|230826|230827|230831|230832|236813|236814|236815|243041|243042|243043|256648|259014|259017|259019|259022|260544|331066|331068|331074|331080|331089|331096|331100|331105|331107|341317|341319|341323|341325|341329|341341|341342|341345|341350|341351|341353|346856|346860|346869|346873|348098|348102|348103|348106|348122|348133|348136|348140|348142|360336|360347|360486|361032|375874|378950|378951|402660|402666|402668|402679|402727|402731|402733|402734|403184|403189|403195|403202|403208|403212|403237|403238|403239|410335|410336|410338|419290|422216|422217|426267|426268|467912|467915|467916|467926|467934|467940|467941|468833|468844|468862|468867|468869|469224|469243|469245|469247|469251|469684|469685|469687|469690|469693|488140|488141|495482|508903|508904|510762|510763|510765|510768|510769|513753|532140|532191|532195|532198|532203|532205|532208|532210|532224|532227|532235|532247|532251|532254|532286|532288|532290|532294|532297|532299|532302|532305|532385|532623|532625|532629|532632|532641|570082|570085|570086|571862|571863|571865|571867|571869|571872|571875|572597|572598|572605|574718|574720|574722|574723|583129|615146|618853|618858|621612|647134|647135|647136|647137|647138|647139|647140|647141|647142|647143|647144|647145|647146|647147|647148|652889|653395|688897|690189|694260|727687|756423|772111|785882|785884|797663|821185|821199|846745|846746|846747|846748|846749|846750|846751|846752|846753|846754|846755|846756|846757|846758|846759|846760|846761|846762|846763|852933|860467|879085|879086|879087|879088|879089|879090|879091|879092|879093|879094|879095|879096|879097|879098|879099|879100|879101|879102|879103|879104|879105|879106|879107|879108|879109|879110|879111|879112|880644|880645|880646|880647|914249|914250|914283|914336|914340|914356|914364|916603|928676|928677|928678|928679|938399|938400|938401|938402|941208|950487|950488|950489|950490|950491|950492|958453|958454|960261|960262|966486|967211", + "text": "Arrhythmogenic right ventricular cardiomyopathy, type 11" + }, + { + "baseId": "31892|31893|31895|31897|31898|31900|918905|983785", + "text": "Dentinogenesis imperfecta - Shield's type II" + }, + { + "baseId": "31894|31895", + "text": "Deafness, autosomal dominant nonsyndromic sensorineural 39, with dentinogenesis imperfecta 1" + }, + { + "baseId": "31895", + "text": "Dentinogenesis imperfecta - Shield's type III" + }, + { + "baseId": "31896|31899|539128|539129", + "text": "Denticles" + }, + { + "baseId": "31901|31902|31903|31904|31905|31907|31908|306496|306497|306498|306504|306511|306513|306514|306516|306525|306536|310673|310675|310677|310681|310686|310694|310698|310702|310705|310706|310707|310721|310723|316070|316076|316079|316084|316085|316086|316088|316089|316092|316095|316096|316097|316098|316384|316401|316402|316405|316406|316414|316417|316424|316444|316447|316450|316453|316459|316463|316465|316469|513073|536755|539433|637635|736820|900852|900853|900854|900855|900856|900857|900858|900859|900860|900861|900862|900863|900864|900865|900866|900867|900868|900869|900870|900871|900872|900873|900874|900875|900876|900877|900878|900879|900880|903298|903299|903300", + "text": "Porphobilinogen synthase deficiency" + }, + { + "baseId": "31903", + "text": "AMINOLEVULINATE DEHYDRATASE, ALAD*1/ALAD*2 POLYMORPHISM" + }, + { + "baseId": "31906", + "text": "Porphyria, acute hepatic, digenic" + }, + { + "baseId": "31909|34154|76571|131908|318693|318694|318698|318701|318702|318703|318707|318708|326991|326994|326998|327004|327006|327008|327024|327027|327028|327029|327035|333108|333109|333113|334826|334854|334856|334859|334860|620460|738897|870550|870551|870552|870553|870554|870555|870556|870557|870558|870559|870560|870561", + "text": "Congenital stromal corneal dystrophy" + }, + { + "baseId": "31910|31911|226396", + "text": "Cromer blood group system" + }, + { + "baseId": "31912", + "text": "Graft-versus-host disease, resistance to" + }, + { + "baseId": "31913", + "text": "Rheumatoid arthritis, progression of" + }, + { + "baseId": "31915|31919|304569|304593|304598|308315|313361|313446|313448|313479|711339|722890|722896|722897|730545|730546|736492|750944|750946|750948|766569|766570|783009|783010|787584|851183|978417|978418|978419|978420|978421|978422|978423|978424|978425|978426|978427|978428|978429|978430|978431|978432|978433|978434|978435|978436|978437|978438|978439|978440|978441|978442|978443|978444", + "text": "Corticosterone methyl oxidase type II deficiency" + }, + { + "baseId": "31916|31917|31918|31919|31921|304547|304548|304552|304553|304554|304555|304569|304570|304571|304572|304573|304577|304580|304581|304583|304593|304594|304596|304598|304602|304605|308289|308296|308310|308312|308315|308316|308321|308322|308323|313344|313345|313346|313347|313348|313349|313350|313355|313361|313362|313407|313411|313418|313425|313428|313433|313445|313446|313448|313449|313454|313455|313456|313457|313462|313464|313467|313479|353825|711339|722896|750943|750948|766574|783007|834166|899064|899065|899066|899067|899068|899069|899070|899071|899072|899073|899074|899075|899076|899077|899078|899079|899080|899081|899082|899083|899084|899085|899086|899087|900454|900455", + "text": "Corticosterone methyloxidase type 1 deficiency" + }, + { + "baseId": "31916|31920|31924|31925|304547|304548|304552|304553|304554|304555|304569|304570|304571|304572|304573|304577|304580|304581|304583|304593|304594|304596|304598|304602|304605|308289|308296|308310|308312|308315|308316|308321|308322|308323|313344|313345|313346|313347|313348|313349|313350|313355|313361|313362|313407|313411|313418|313425|313428|313433|313445|313446|313448|313449|313454|313455|313456|313457|313462|313464|313467|313479|353825|711339|722896|750943|750948|766574|783007|899064|899065|899066|899067|899068|899069|899070|899071|899072|899073|899074|899075|899076|899077|899078|899079|899080|899081|899082|899083|899084|899085|899086|899087|900454|900455", + "text": "Corticosterone methyloxidase type 2 deficiency" + }, + { + "baseId": "31916|38484|711337|711341|722891|722895|730547|750943|766572|766574|783007|783008|783015", + "text": "Corticosterone 18-monooxygenase deficiency" + }, + { + "baseId": "31922|31923", + "text": "Aldosterone to renin ratio, increased" + }, + { + "baseId": "31927", + "text": "CYP2E1*6 ALLELE" + }, + { + "baseId": "31928|31929|31930|31931|31932|31933", + "text": "Debrisoquine, poor metabolism of" + }, + { + "baseId": "31928", + "text": "doxepin response - Dosage, Toxicity/ADR" + }, + { + "baseId": "31928", + "text": "antidepressants response - Dosage, Toxicity/ADR" + }, + { + "baseId": "31928", + "text": "trimipramine response - Dosage, Toxicity/ADR" + }, + { + "baseId": "31928", + "text": "imipramine response - Dosage, Toxicity/ADR" + }, + { + "baseId": "31928", + "text": "clomipramine response - Dosage, Toxicity/ADR" + }, + { + "baseId": "31928", + "text": "tamoxifen response - Efficacy, Toxicity/ADR" + }, + { + "baseId": "31928", + "text": "amitriptyline response - Dosage, Toxicity/ADR" + }, + { + "baseId": "31928", + "text": "nortriptyline response - Dosage, Toxicity/ADR" + }, + { + "baseId": "31928", + "text": "desipramine response - Dosage, Toxicity/ADR" + }, + { + "baseId": "31928|31930|31932|47984", + "text": "Deutetrabenazine response" + }, + { + "baseId": "31928|31929|31930|31932|47984", + "text": "Tamoxifen response" + }, + { + "baseId": "31935", + "text": "Codeine response" + }, + { + "baseId": "31936|31937|31938|31939", + "text": "Mephenytoin, poor metabolism of" + }, + { + "baseId": "31936|31938", + "text": "Proguanil, poor metabolism of" + }, + { + "baseId": "31936", + "text": "Clopidogrel response" + }, + { + "baseId": "31936", + "text": "amitriptyline response - Efficacy" + }, + { + "baseId": "31936|31938", + "text": "clopidogrel response - Efficacy, Toxicity/ADR" + }, + { + "baseId": "31936|227758|227777", + "text": "citalopram response - Efficacy" + }, + { + "baseId": "31936", + "text": "clomipramine response - Efficacy" + }, + { + "baseId": "31937|31938|31939|47946|47948|47949|622287|622289", + "text": "CYP2C19: no function" + }, + { + "baseId": "31939|227812", + "text": "clopidogrel response - Efficacy" + }, + { + "baseId": "31940|31941|31944|31946|31949|31950|31951|31952|31953|31954|306789|306817|311631|679662", + "text": "Antley-Bixler syndrome with genital anomalies and disordered steroidogenesis" + }, + { + "baseId": "31941|31942|31943|31945|31946|31952|31954|142492|142493|207490|252926|252927|252929|252930|268412|303365|303366|303373|303376|303386|303388|303394|303396|303404|303406|303410|303417|303419|306773|306779|306781|306788|306793|306794|306796|306797|306803|306805|306806|306807|306814|306819|306827|311603|311614|311617|311632|311634|311635|311637|311648|311649|311671|311672|311736|311741|311746|311749|311751|311755|428743|428744|433858|433859|444161|457445|501805|561753|561756|562151|562165|587443|609664|609665|609666|620267|620268|692294|692295|692296|700224|700226|711129|736273|750777|750778|777876|898363|898364|898365|898366|898367|898368|898369|898370|898371|898372|898373|898374|898375|898376|898377|898378|898379|898380|898381|898382|898383|898384|898385|898386|898387|898388|898389|898390|898391|898392|898393|898394|898395|898396|898397|898398|898399|898400|898401|898402|898403|898404|900393|900394|900395|900396|900397|900398|900399|900400|900401", + "text": "Disordered steroidogenesis due to cytochrome p450 oxidoreductase deficiency" + }, + { + "baseId": "31955", + "text": "CYP3A4 PROMOTER POLYMORPHISM" + }, + { + "baseId": "31955", + "text": "Cyp3a4-v" + }, + { + "baseId": "31955", + "text": "tacrolimus response - Dosage" + }, + { + "baseId": "31956|178822|252772|590721", + "text": "Thrombocytopenia 4" + }, + { + "baseId": "31957|31958|31959|77413|317903|317904|317908|317909|317913|317915|317916|317917|317921|317923|317928|317929|325761|325764|325766|325779|325788|325792|325793|325795|325796|325805|325807|325810|325815|325822|325825|325826|325827|325837|325840|325844|332042|332043|332051|332062|332063|332065|332066|332069|332073|332076|332077|332079|332085|332088|332089|332091|333519|333521|333531|333532|333533|333541|333548|333549|333550|333551|333553|344375|620849|702382|870144|870145|870146|870147|870148|870149|870150|870151|870152|870153|870154|870155|870156|870157|870158|870159|872263|872264", + "text": "White sponge nevus 1" + }, + { + "baseId": "31960", + "text": "Thyroid-associated orbitopathy, susceptibility to" + }, + { + "baseId": "31960|31961|425459", + "text": "Celiac disease 3" + }, + { + "baseId": "31960", + "text": "TYPE 1 DIABETES MELLITUS 12, SUSCEPTIBILITY TO" + }, + { + "baseId": "31962|31963|50339|336594|336599|336602|336606|336608|346300|346301|346304|346309|346315|346316|350548|350553|350554|350557|351591|351592|351595|351596|351598|351603|469525|533819|533820|533835|534375|534377|534379|573064|573065|573067|573762|575152|620670|648927|648928|648929|648930|648931|648932|648933|648934|648935|728861|742594|757750|757751|773295|773296|792005|821363|848721|848722|848723|848724|848725|848726|852397|886687|886688|886689|887502|920421|929304|929305|939084|939085|939086|939087|951210|951211|951212|958942|958943", + "text": "Inflammatory bowel disease 25, autosomal recessive" + }, + { + "baseId": "31964|31965|31966|40503|40504|40507|40509|49860|323030|323031|323035|323037|323038|332650|332651|339586|339589|339598|339616|340992|340994|341001|341004|620874|656295|799814|799815|873941|873942|873943|873944|873945|873946|873947|873948|873949|873950|873951|873952|873953|873954|876551|876552", + "text": "Osteogenesis imperfecta type 9" + }, + { + "baseId": "31967|31968|132977|137613|137615|137616|139534|139537|151805|180549|183600|183602|183603|183604|183606|183608|183610|222261|234586|244831|318133|318135|318142|318150|318151|318156|318157|332284|332289|332303|332312|332314|333856|333860|333870|333875|333890|333901|333903|372522|373213|408725|408726|462670|462675|462681|463262|476470|476480|539330|575892|575893|791265|791266|791267|870225|870226|870227|870228|870229|870230|870231", + "text": "Cutaneous malignant melanoma 3" + }, + { + "baseId": "31969|31970|31971|31972|152817|195551|206565|227269|227270|539191|799359|799360", + "text": "Retinitis pigmentosa 49" + }, + { + "baseId": "31973|31974|175915", + "text": "Deafness, autosomal dominant 40" + }, + { + "baseId": "31975|452347|519216|608997|608998|691348|827773", + "text": "Cataract 20 multiple types" + }, + { + "baseId": "31976|31977|31978|31979|31980|31981|79354|250511|250512|250513|250514|284256|284260|284264|284266|284988|284992|284994|286973|286976|286977|287346|287347|450404|450430|517680|517797|557824|883537|883538|883539|883540|883541|883542|887246", + "text": "Cataract 4" + }, + { + "baseId": "31976|31979|284994|286973|286976|287347|557871|629319|825618", + "text": "Aculeiform cataract" + }, + { + "baseId": "31979|31987|31988|51095|79349|79352|79367|98632|137432|181456|213975|213976|213977|213978|213979|213980|213981|213982|213983|213984|213985|213986|213987|213988|213989|213990|213991|213992|213993|213994|213995|213996|213999|214000|214003|214004|214005|214006|214007|214008|214009|214010|247345|247346|247347|247348|247349|247350|247351|247352|247353|247354|247355|247356|247357|247358|251155|263198|290603|290607|291502|291503|291509|291603|294724|295105|295123|302005|302006|302022|305180|305202|309011|309887|309889|309923|309925|309926|309936|309970|350766|354065|361002|361925|361933|424444|590734|624881|625774|792692|822308", + "text": "Congenital cataract" + }, + { + "baseId": "31982", + "text": "Cataract 2, Coppock-like" + }, + { + "baseId": "31983|31984|76976|76977|76978|79367|450438|450528|450531|517682", + "text": "Cataract 2, multiple types" + }, + { + "baseId": "31985|31986|214006|257591|416851|469990|469993|573973|649232|649233|694697|694699|742835|778468|788327|849107|929421|939226|951365|951366|959041", + "text": "Cataract 23, multiple types" + }, + { + "baseId": "31987|152956|257577|337644|337645|347214|347216|347219|351223|351224|351227|351228|352237|352239|352242|470919|471407|471805|534092|620925|620926|649230|653230|694696|890960|890961|890962|890963|890964|890965|890966|890967|890968|890969|890970|890971|890972|890973|890974|890975|890976|891813", + "text": "Cataract, congenital nuclear, autosomal recessive 2" + }, + { + "baseId": "31988|31989|214002|257580|264987|470921|471806|471807|571750|656684|849105|849106|919945|919946|919947|929420|939225", + "text": "Cataract 3, multiple types" + }, + { + "baseId": "31991|79364|227387|256110|413461|467213|512267|551584|570831|645432|844840", + "text": "Cataract, congenital zonular, with sutural opacities" + }, + { + "baseId": "31992|31994|31995|38624|47566|51099|53399|53406|178210|312348|324369|565481|792582|798995|867042|867043", + "text": "Alpha-B crystallinopathy" + }, + { + "baseId": "31993|51095|51096|51097|51098|53399|53400|53401|53406|178210|312347|312350|318236|324369|325066|565481|798995|867042|867043|919317", + "text": "Cataract 16, multiple types" + }, + { + "baseId": "31996|31998|31999|79348|79349|79351|79352|79353|257472|257473|257474|336890|336900|336903|346592|346594|346604|346609|350768|350770|350771|350773|351810|351811|351813|351815|351816|351822|469654|533904|848821|886883|886884|886885|886886|886887|886888|886889", + "text": "Cataract, autosomal dominant" + }, + { + "baseId": "31997", + "text": "Cataract 9, autosomal recessive" + }, + { + "baseId": "31999|79351|79352", + "text": "Cataract, autosomal dominant, multiple types, with microcornea" + }, + { + "baseId": "32000|217218|251846|296975|296976|296982|296983|296987|296988|296991|298857|298858|298876|298877|298878|298879|298882|298883|298890|298892|298907|303179|303183|303317|303318|303320|303322|303325|303326|303328|303332|303333|303336|303344|893953|893954|893955|893956|893957|893958|893959|893960|893961|893962|893963|893964|893965|893966|893967|893968|893969|893970|893971|893972|893973|893974|893975|893976|893977|893978|918942|918943", + "text": "Craniosynostosis 2" + }, + { + "baseId": "32000|217218|296994|298886|314073|314117|320588|320659|326637|327546|521433|633760|633761", + "text": "Enlarged parietal foramina" + }, + { + "baseId": "32001|32002|32003|32004|32005|32007|251846|296975|296976|296982|296983|296987|296988|296991|298857|298858|298876|298877|298878|298879|298882|298883|298890|298892|298907|303179|303183|303317|303318|303320|303322|303325|303326|303328|303332|303333|303336|303344|454951|790538|893953|893954|893955|893956|893957|893958|893959|893960|893961|893962|893963|893964|893965|893966|893967|893968|893969|893970|893971|893972|893973|893974|893975|893976|893977|893978", + "text": "Parietal foramina 1" + }, + { + "baseId": "32006", + "text": "Parietal foramina with cleidocranial dysplasia" + }, + { + "baseId": "32008|32011", + "text": "Nicotine, poor metabolism of" + }, + { + "baseId": "32009", + "text": "CYP2A6*4A" + }, + { + "baseId": "32010", + "text": "Tegafur response" + }, + { + "baseId": "32011", + "text": "CYP2A6*3" + }, + { + "baseId": "32011", + "text": "Cyp2a6, v2" + }, + { + "baseId": "32012", + "text": "CYP2A6*12A" + }, + { + "baseId": "32013|32014|32015", + "text": "Corticosteroid-binding globulin deficiency" + }, + { + "baseId": "32017|32018|32019|32020|65604|65605|65606|65607|65608|213992|254821|254822|254823|319082|319083|319084|319085|319091|319093|319095|319097|319100|319109|319114|319116|327535|327537|327538|327539|327541|327542|327545|327561|327563|327570|333774|333778|333782|333783|333784|333787|333793|333801|333802|333804|333808|333812|333814|333818|333827|333828|333833|333840|333842|333847|333850|333852|333853|333857|333859|333861|335450|335451|335457|335463|335464|335471|335475|335493|335500|335505|335510|335511|335528|335530|335533|462598|462606|463378|463414|527510|567190|641577|641578|641579|820547|840576|870795|870796|870797|870798|870799|870800|870801|870802|870803|870804|870805|870806|870807|870808|870809|870810|870811|870812|870813|870814|870815|870816|870817|870818|870819|870820|870821|870822|870823|870824|870825|870826|870827|870828|870829|870830|936353|964402", + "text": "Zonular pulverulent cataract 3" + }, + { + "baseId": "32021|32022|32023|32024|32025|32027|32028|32030|32031|32032|32033|32036|38622|38623|94303|141185|141186|252067|298839|298842|298843|298847|298849|298860|298864|298865|301323|301326|301327|301328|301329|301331|301332|301333|305689|305692|305693|305696|305699|305700|305708|305709|305810|305819|305822|305823|305838|305857|305858|305859|305860|353742|428500|428501|428502|565358|683759|790577|895253|895254|895255|895256|895257|895258|895259|895260|895261|895262|895263|895264|895265|895266|895267|895268|895269|895270|895271|895272|895273|895274|895275|895276", + "text": "Oculodentodigital dysplasia" + }, + { + "baseId": "32024|32029|32030|32034|32035|141185|141186|199879|239879|305810|305822|359706|455825|456046|456047|456052|521345|521976|560552|563349|565358|634522|634523|831472|831473|924234|933149|933150|944864|944865", + "text": "Oculodentodigital dysplasia, autosomal recessive" + }, + { + "baseId": "32026|32030|141185|298839|298842|298843|298847|298849|298860|298864|298865|301323|301326|301327|301332|301333|305689|305692|305693|305696|305699|305709|305810|305819|305822|305823|305838|305857|305858|305859|565358|683759|895253|895254|895255|895256|895257|895258|895259|895260|895261|895262|895263|895264|895265|895266|895267|895268|895269|895270|895271|895272|895273|895274|895275|895276", + "text": "Syndactyly type 3" + }, + { + "baseId": "32029|32030|70500|141185|239781|239782|252067|298839|298842|298843|298847|298849|298860|298864|298865|301323|301326|301327|301328|301329|301331|301332|301333|305689|305692|305693|305696|305699|305700|305708|305709|305810|305819|305822|305823|305838|305857|305858|305859|305860|353742|565358|683759|895253|895254|895255|895256|895257|895258|895259|895260|895261|895262|895263|895264|895265|895266|895267|895268|895269|895270|895271|895272|895273|895274|895275|895276", + "text": "Hypoplastic left heart syndrome 1" + }, + { + "baseId": "32029|32030|360872|918994|918995", + "text": "Atrioventricular septal defect 3" + }, + { + "baseId": "32037|32037|38618|38619|38620|38621|132416|276311|276312|276313|276313|276313|276314|276315|276539|276540|276545|276946|276962|276973|276983|277009|277100|277107|277108|277111|446905|515110|556588|556629|556919|556921|556923|558102|558104|614073|619949|619950|626782|626783|626784|626785|650516|683289|818812|822671|822672|822673|822674|822675|862173|862174|862176|862177|862178|862179|862180|862181|862182|930021|941436|952055|952056", + "text": "Atrial fibrillation, familial, 11" + }, + { + "baseId": "32037|276313|276313|276314|446905|515110|556588|556629|556919|556921|556923|558102|558104|626782|626783|626784|626785|650516|683289|818812|822671|822672|822673|822674|822675|930021|941436|952055|952056", + "text": "Atrial standstill 1" + }, + { + "baseId": "32038", + "text": "Atrial fibrillation, somatic" + }, + { + "baseId": "32039|32041|32046|32049|32055|32059|32062|34237|44941|44942|44943|53882|53883|53884|53887|53888|53891|53899|53906|53910|53912|53916|53921|53922|100288|175762|175909|186432|192367|230437|319120|319122|327572|327575|327578|327579|327582|327583|327586|333862|333863|333864|335541|335544|335547|335548|335549|335550|335552|335553|335557|353285|362175|432245|620467|620469|621385|870831|870832|870833|870834|870835|870836|870837|870838|870839|870840|870841|870842|870843|870844|870845", + "text": "Hystrix-like ichthyosis with deafness" + }, + { + "baseId": "32039|32041|32042|32043|32046|32048|32049|32050|32053|32053|32055|32056|32057|32058|32062|32065|32066|32070|32075|34237|34239|38617|44941|44942|44943|44943|53882|53883|53884|53887|53888|53891|53899|53905|53906|53907|53909|53910|53912|53916|53921|53922|53927|53933|100288|169009|175762|175909|186432|192367|227135|227213|227350|230434|230437|319120|319122|327572|327575|327578|327579|327582|327583|327586|333862|333863|333864|335544|335547|335548|335549|335550|335552|335553|335557|358128|358129|358130|358131|358132|358133|358134|358135|362175|413167|413168|413169|413170|432245|511033|551725|581711|620467|620469|621385|870831|870832|870833|870834|870835|870836|870837|870838|870839|870840|870841|870842|870843|870844|870845", + "text": "Deafness, autosomal dominant 3a" + }, + { + "baseId": "32039|32041|32043|32044|32045|32046|32048|32049|32051|32053|32055|32059|32068|34241|38617|52376|53892|53904|53907|53909|53911|53916|53927|53928|100292|169011|175904|186432|186857|186864|229547|230143|230342|358134|408478|439510|439511|490937|551723|551724|551725|551726|551727|551728|792662|792663|792664|792665|861668|965617", + "text": "Hearing loss" + }, + { + "baseId": "32039|32062|53922|170211|171004|175904|358132|425880|431384|789142", + "text": "Nonsyndromic Deafness" + }, + { + "baseId": "32043|263404|590734", + "text": "Severe sensorineural hearing impairment" + }, + { + "baseId": "32043|550227|553415", + "text": "Bilateral conductive hearing impairment" + }, + { + "baseId": "32043|53210|54304|55057|55236|55237|55245|55291|55653|55658|57034|173796|174423|175230|175287|175289|192865|201048|228257|229964|230920|247044|252536|253830|256660|275808|275954|283145|283148|283152|283174|283899|283901|285701|285753|286066|288746|294822|294829|294859|299954|299983|299990|299995|299997|299999|300000|300001|300013|300016|300183|301071|301090|301098|301101|301314|301439|302642|302646|302652|302653|302654|302655|302656|302659|302669|304063|304629|307001|307019|307024|307037|307038|307039|307044|307270|307274|307282|307283|307300|307302|307303|307305|307306|307307|307312|308684|308796|308849|308861|308865|308869|308876|308933|309466|310068|310529|310535|310662|310741|310742|310745|312290|312292|312293|312294|312295|312297|312299|312300|312314|312318|312816|315094|315098|315636|315674|315906|315931|315967|315972|316006|316010|316044|316047|316048|316100|316153|318118|318119|318125|318137|318146|318158|318168|321120|321125|321177|321656|321707|321728|321749|321928|322088|322101|322102|322105|322106|322108|322109|322395|322646|322651|322653|322702|322713|322714|322725|322726|324177|324183|324187|324189|324196|324240|324947|324981|324985|324991|325652|325804|325849|327554|327557|327562|327600|327999|328005|328178|329099|329131|329139|329165|329173|329192|329209|329416|331390|335541|337361|337363|337368|337407|337410|341667|345140|346521|347050|350742|350746|353204|353205|353285|861642|861643", + "text": "Nonsyndromic Hearing Loss, Recessive" + }, + { + "baseId": "32043|176412|247076|442564|497401|551992|551993|551994|551995|551996|551997|551998|551999|552000|552001|552002|552003|552004|552005|552006|552007|552008|552009|552010|552011|552012|552013|552014|552015|552016|552017|552018|552019|552020|552021|552022|552023|552024|552025|552026|552027|800970|861136", + "text": "Deafness" + }, + { + "baseId": "32049|32051|247546|335541|353285", + "text": "Mutilating keratoderma" + }, + { + "baseId": "32049|53738|54304|57028|57034|174345|174831|175230|175746|229190|229465|229964|252536|266947|282176|282187|282319|293956|293964|295337|295339|299083|299138|299143|301071|301090|301098|301101|301717|304063|305890|306130|306147|307200|308684|308796|308849|308861|308865|308869|308876|308933|312816|313213|313221|313225|315694|315695|315696|318100|319043|319668|320414|320766|320772|322570|322598|324947|325804|325849|328178|328754|328767|329416|329627|329629|329972|329987|332262|333789|334103|335541|335774|337581|338132|338140|338146|338147|338153|344052|344054|347648|347707|349280|350256|350267|351515|351555|352507|352510|352514|352517|353204|353205|353206|353285|353304|353606|353607|353769", + "text": "Nonsyndromic Hearing Loss, Dominant" + }, + { + "baseId": "32049|620468", + "text": "GJB2-Related Disorders" + }, + { + "baseId": "32049|335541|353285", + "text": "Keratitis ichthyosis and deafness syndrome" + }, + { + "baseId": "32050|32066|361033|361034", + "text": "Hereditary palmoplantar keratoderma" + }, + { + "baseId": "32055|48180|918956", + "text": "Horseshoe kidney" + }, + { + "baseId": "32055|805096|974533", + "text": "Congenital omphalocele" + }, + { + "baseId": "32055", + "text": "Short palpebral fissure" + }, + { + "baseId": "32059|32060|32061|32067|32072|590509", + "text": "Keratitis-ichthyosis-deafness syndrome, autosomal dominant" + }, + { + "baseId": "32069|32073", + "text": "Knuckle pads, deafness AND leukonychia syndrome" + }, + { + "baseId": "32075|33288|53912|226237|226666|226667|226668|362484|362485|362486|362487|362488|513982", + "text": "Progressive sensorineural hearing impairment" + }, + { + "baseId": "32077|44257|44258|44259|44260|44261|44262|550315|816303|816304", + "text": "Type II complement component 8 deficiency" + }, + { + "baseId": "32078", + "text": "COMPLEMENT COMPONENT 8, ALPHA SUBUNIT, A/B POLYMORPHISM" + }, + { + "baseId": "32079|32080|32081|32081|32082|38614|188759|389216|512817|818239|961947", + "text": "Complement component 9 deficiency" + }, + { + "baseId": "32081|97546", + "text": "Macular degeneration, age-related, 15" + }, + { + "baseId": "32083|32084|32085|32086|32087|32088|260775|278614|278616|278622|278624|278629|278630|278725|278733|278736|278754|278755|278756|278757|278758|278770|278772|278779|278780|278786|278788|278789|279938|279947|279948|279950|279960|280016|280017|280022|280024|354159|432279|437833|496599|512796|590235|623242|707045|707046|818165|818166|818167|863367|863368|863369|863370|863371|863372|863373|863374|863375|863376|863377|863378|863379|863380|863381|863382|863383|863384|863385|863386|863387|863388|863389|865099|865100|865101", + "text": "Atypical hemolytic-uremic syndrome 2" + }, + { + "baseId": "32089|32090|32091|32092|497052|538404|614334|970889", + "text": "Complement component 5 deficiency" + }, + { + "baseId": "32093", + "text": "Liver fibrosis, susceptibility to" + }, + { + "baseId": "32094", + "text": "C4a deficiency" + }, + { + "baseId": "32095|97565", + "text": "MACULAR DEGENERATION, AGE-RELATED, 9, SUSCEPTIBILITY TO" + }, + { + "baseId": "32095", + "text": "C3S/C3F POLYMORPHISM" + }, + { + "baseId": "32095|32096|97565|97565|334455|334458|334469|334472|334475|334482|334483|334492|334494|334496|334500|334501|334503|334508|334514|334515|334517|334523|334527|344330|344330|344334|344335|344336|344339|344348|344354|344357|344360|344364|344365|344371|344373|344374|344380|344381|349443|349444|349446|349447|349449|349450|349451|349454|349457|349459|349461|349464|349467|349470|349471|349473|350429|350432|350433|350436|350441|350444|350447|350450|350452|350456|350457|350461|350462|350464|350467|350472|350475|376879|614464|622120|716757|731313|742162|742167|772939|776913|860623|882582|882583|882584|882585|882586|882587|882588|882589|882590|882591|882592|882593|882594|882595|882596|882597|882598|882599|882600|882601|882602|882603|882604|882605|882606|882607|882608|882609|882610|882611|882942|882943|882944|882945|882946|882947|882948|882949|882950|882951|882952|882953", + "text": "Age-related macular degeneration 9" + }, + { + "baseId": "32096", + "text": "C3 POLYMORPHISM, HAV 4-1 PLUS/MINUS TYPE" + }, + { + "baseId": "32096|32099|32100|32101|32102|97565|97565|198641|334455|334458|334469|334472|334475|334482|334483|334492|334494|334496|334500|334501|334503|334508|334514|334515|334517|334523|334527|344330|344330|344334|344335|344336|344339|344348|344354|344357|344360|344364|344365|344371|344373|344374|344380|344381|349443|349444|349446|349447|349449|349450|349451|349454|349457|349459|349461|349464|349467|349470|349471|349473|350429|350432|350433|350436|350441|350444|350447|350450|350452|350456|350457|350461|350462|350464|350467|350472|350475|376879|513145|590335|614464|622120|716757|731313|742162|742167|772939|776913|818342|818344|860623|882582|882583|882584|882585|882586|882587|882588|882589|882590|882591|882592|882593|882594|882595|882596|882597|882598|882599|882600|882601|882602|882603|882604|882605|882606|882607|882608|882609|882610|882611|882942|882943|882944|882945|882946|882947|882948|882949|882950|882951|882952|882953|980393", + "text": "Atypical hemolytic-uremic syndrome 5" + }, + { + "baseId": "32096|97565|97565|334455|334458|334469|334472|334475|334482|334483|334492|334494|334496|334500|334501|334503|334508|334514|334515|334517|334523|334527|344330|344330|344334|344335|344336|344339|344348|344354|344357|344360|344364|344365|344371|344373|344374|344380|344381|349443|349444|349446|349447|349449|349450|349451|349454|349457|349459|349461|349464|349467|349470|349471|349473|350429|350432|350433|350436|350441|350444|350447|350450|350452|350456|350457|350461|350462|350464|350467|350472|350475|376879|590336|614464|622120|716757|731313|742162|742167|772939|776913|818343|860623|882582|882583|882584|882585|882586|882587|882588|882589|882590|882591|882592|882593|882594|882595|882596|882597|882598|882599|882600|882601|882602|882603|882604|882605|882606|882607|882608|882609|882610|882611|882942|882943|882944|882945|882946|882947|882948|882949|882950|882951|882952|882953", + "text": "Complement component 3 deficiency, autosomal recessive" + }, + { + "baseId": "32097|32098|32103|334509|344343|344359|344383|349452|350459", + "text": "C3 deficiency" + }, + { + "baseId": "32106|32107|540577|614383|614384|614384|818300|964399|980471", + "text": "Complement component c1s deficiency" + }, + { + "baseId": "32108|32109|32110|32111|32112|434365|434366|434367|434368|512799|512800|614206|614207|624173|963120", + "text": "C1q deficiency" + }, + { + "baseId": "32114", + "text": "Esophageal carcinoma, somatic" + }, + { + "baseId": "32115|32116|185689|185690|185691|185692|185693|185694|185695|185696|185697|185698|185699|185700|185701|362052|362056|362057|550791|791867", + "text": "Mirror movements 1" + }, + { + "baseId": "32119|32126|32133|45202|45212|45234|45242|94671|94826|94837|94838|94924|95087|95218|95322|95360|95362|95460|95466|95473|95540|95665|95724|95734|95761|95792|95793|95830|95832|95854|95913|95979|95984|96029|96065|96080|96202|96238|96255|96258|96279|96367|96378|96420|96492|96564|96578|96584|98485|133027|133208|138591|150473|151109|152161|152481|152684|180033|182160|182245|231655|367409|393356|405792|416964|419364|419478|427193|432520|443423|473466|473514|483508|518396|560749|610947|610987|617377|622528|630084|630261|807302|807597|809178|826693|826706|909306|910956|943003|943028|961696|961697|961698|961699|961700|961701|961702|961703|961704|961705|961706|961707|961708|961709|961710|961711|961712|961713|961714|961715|961716|961717|961718|961719|961720|961721|961722|961723|961724|961725|961726|961727|961728|961729|961730|961731|961732|961733|961734|961735|961736|961737|961738|961739|961740|961741|961742|961743|961744|961745", + "text": "Lynch-like syndrome" + }, + { + "baseId": "32135", + "text": "Colorectal cancer, sporadic, susceptibility to" + }, + { + "baseId": "32137|50226|95904|96145|133417|139704|195467|222826|239530|394483|417649|427217|452681|483849|550664|550666|550683|550730|550738|550739|623763|624831", + "text": "Malignant tumor of colon" + }, + { + "baseId": "32146|195340|266330|267601|268580|269600|335584|335585|335586|335587|335591|335596|345354|345357|345359|350025|350026|350027|350030|351061|351064|351065|351068|351069|351072|351073|351076|620660|620661|620662|620920|705508|717012|728687|728688|728689|742439|886167|886168|886169|886170|886171|886172|886173|886174|886175|886176|886177|886178|886179|886180|887464|887465", + "text": "Metaphyseal anadysplasia 2" + }, + { + "baseId": "32147|32148|32149|32150|32151|191222|195335|267755|325733|325735|325736|325743|325749|325750|325751|325752|325756|325758|325759|325765|325777|335373|335375|335379|335383|335384|335387|335389|335392|335396|335399|335401|335404|341847|341849|341850|341854|341855|341856|341857|341858|341859|341860|341862|341863|343347|343350|343355|343358|343359|343361|343362|343365|343370|361221|489951|490882|614157|678072|714976|726688|726689|740248|740254|755242|875486|875487|875488|875489|875490|875491|875492|875493|875494|875495|875496|875497|875498|875499|875500|875501|875502|875503|875504|875505|875506|875507|875508|875509|875510|875511|875512|875513|875514|875515|875516|875517|875518|876679|903610", + "text": "Multicentric osteolysis, nodulosis and arthropathy" + }, + { + "baseId": "32153", + "text": "Pulmonary disease, chronic obstructive, rate of decline of lung function in" + }, + { + "baseId": "32153", + "text": "Epidermolysis bullosa dystrophica, autosomal recessive, modifier of" + }, + { + "baseId": "32154|32155|32156|32157|32158|38607|38608|39627|76340|76341|237151|257483|257484|257485|257486|257490|257492|257493|257494|257495|257496|257502|257503|257505|257507|257516|336945|336950|336954|336955|336967|336969|336971|336975|336980|336981|336983|336991|336993|336997|336999|337008|337009|337011|337012|337013|337014|337023|337025|337026|337028|337029|337033|337034|337044|337051|337056|337058|337066|346684|346685|346693|346704|346711|346717|346719|346723|346724|346731|346732|346733|346739|346740|346748|346769|346777|346782|346783|346784|346785|346787|346788|346796|346810|346811|346814|350824|350825|350827|350830|350831|350832|350838|350839|350842|350843|350846|350847|350850|350851|350854|350856|350859|350861|350863|350866|350867|350870|350871|350874|350875|350878|350879|350882|351867|351868|351869|351870|351871|351872|351873|351874|351875|351876|351877|351878|351879|351880|351881|351882|351883|351884|351885|351886|351887|351888|351889|351890|351891|351892|351893|390699|418973|442317|442319|442331|442333|442334|442335|508935|508936|508937|512964|539101|539163|539164|578580|583003|612199|612337|620674|654925|672300|705740|705741|788943|792012|792013|792521|800626|861045|861046|886925|886926|886927|886928|886929|886930|886931|886932|886933|886934|886935|886936|886937|886938|886939|886940|886941|886942|886943|886944|886945|886946|886947|886948|886949|886950|886951|886952|886953|886954|886955|886956|886957|886958|886959|886960|886961|886962|886963|886964|886965|886966|886967|886968|886969|886970|886971|886972|886973|886974|886975|886976|886977|886978|886979|886980|886981|887522|887523|887524|887525|887526|887527|887528|887529|887530|887531|887532|903640|903641|964549", + "text": "Knobloch syndrome 1" + }, + { + "baseId": "32159|32161|32162|32166|55719|55720|55721|55722|55723|55724|55725|55726|55727|55729|55730|55731|55732|55733|55734|55735|174359|174360|174361|174362|174365|174366|174367|174368|174370|174371|174374|174376|174497|174500|174501|174502|174506|174506|191960|193796|194635|195091|195498|195517|195770|195770|227296|229440|229442|229444|229445|229447|229448|229452|229455|229456|229461|229462|229465|229466|229470|229475|229479|252330|252334|266947|266947|270329|270741|299883|299889|299892|299895|299897|299899|299901|299904|299906|302506|302507|302508|302511|302512|302513|302522|302532|302534|302535|302536|302537|306913|306914|306916|306917|306918|306919|306922|306923|306924|306925|306926|306934|306935|307189|307191|307199|307200|307201|307202|307207|307208|307211|307213|307214|353769|368659|406861|443954|496460|496461|501733|501959|537810|538385|552434|655743|682806|682819|682820|795841|895822|895823|895824|895825|895826|895827|895828|895829|895830|895831|895832|895833|895834|895835|895836|895837|895838|895839|895840|895841|895842|895843|895844|895845|895846|895847|896225|896226|896227|896228|896229|896230|896231", + "text": "Otospondylomegaepiphyseal dysplasia, autosomal dominant" + }, + { + "baseId": "32160|32165|32167|32169|55719|55720|55721|55722|55723|55724|55725|55726|55727|55729|55730|55731|55732|55733|55734|55735|174359|174360|174361|174362|174365|174366|174367|174368|174370|174371|174374|174376|174497|174500|174501|174502|174506|174506|191960|193796|194635|195091|195498|195517|195770|227296|229440|229442|229444|229445|229447|229448|229452|229455|229456|229461|229462|229465|229466|229470|229475|229479|252330|252334|266947|266947|270329|270741|299883|299889|299892|299895|299897|299899|299901|299904|299906|302506|302507|302508|302511|302512|302513|302522|302532|302534|302535|302536|302537|306913|306914|306916|306917|306918|306919|306922|306923|306924|306925|306926|306934|306935|307189|307191|307199|307200|307201|307202|307207|307208|307211|307213|307214|353769|368659|406861|496460|496461|501733|501959|537810|552161|552434|655743|790614|790615|795841|798574|895822|895823|895824|895825|895826|895827|895828|895829|895830|895831|895832|895833|895834|895835|895836|895837|895838|895839|895840|895841|895842|895843|895844|895845|895846|895847|896225|896226|896227|896228|896229|896230|896231", + "text": "Otospondylomegaepiphyseal dysplasia, autosomal recessive" + }, + { + "baseId": "32163|32164|32166|46196|174365|174502|174506|195770|195770|227296|368659|406861|625799|800396|964275|970831", + "text": "Deafness, autosomal dominant 13" + }, + { + "baseId": "32168|170211|174502|174506|195770|215057|227296|368659|406861|622369|800396|802072|802073", + "text": "Deafness, autosomal recessive 53" + }, + { + "baseId": "32170|32174|32176|99869|99870|99871|177627|177628|192640|193940|195072|195125|195150|195180|195462|195521|195635|195937|237273|249270|249274|249277|249279|249282|249283|249285|249287|249291|249295|249297|249301|249304|268987|273644|273898|275071|275622|275645|275656|275657|275658|275659|275660|275662|275663|275664|275665|275666|275667|275668|275669|275670|275672|275673|275675|275678|275682|275683|275685|275686|275687|275688|275689|275691|275692|275693|275694|275695|275696|275697|275698|275699|275700|275701|275702|275705|275706|275707|275708|275709|275710|275713|275714|275715|275716|275717|275719|275720|275721|275722|275723|275724|275725|275726|275728|275729|275731|275734|275735|275738|275739|275741|275744|275745|275749|275753|361277|364283|364300|497934|497939|497966|537679|552029|611359|612075|612076|624845|655021|655022|731510|743655|745500|792817|861764|861765|861766|861767|861768|861769|861770|861771|861772|861773|861774|861775|861776|861777|861778|861779|861780|861781|861782|861784|861785|861786|861787|861788|861789|861790|861791|861792|861793|861794|861795|861796|861797|861798|861799|864943|864944|864946|864947|864948|864949|864950|917789|961249|961586|977165", + "text": "Stickler syndrome type 2" + }, + { + "baseId": "32172", + "text": "Marshall/Stickler syndrome" + }, + { + "baseId": "32173|32175|48375|177630|194896|194897|195521|275654|275676|275681|275684|275690|275704|275711|275712|275718|275727|275732|275740|364319|490221|917789|918538|918539|918540|918541|920116|920117|961249|961586|964641|970656|970657", + "text": "Marshall syndrome" + }, + { + "baseId": "32176|38601|38602|38603|38604|99869|99870|99871|177627|177628|177630|192640|193940|194896|194897|195072|195125|195150|195180|195462|195521|195635|195937|229456|229465|237273|249270|249274|249277|249279|249282|249283|249285|249287|249291|249295|249297|249301|249304|252334|266947|268987|273644|273898|275071|275622|275645|275654|275656|275657|275658|275659|275660|275662|275663|275664|275665|275666|275667|275668|275669|275670|275672|275673|275675|275676|275678|275681|275682|275683|275684|275685|275686|275687|275688|275689|275690|275691|275692|275693|275694|275695|275696|275697|275698|275699|275700|275701|275702|275704|275705|275706|275707|275708|275709|275710|275711|275712|275713|275714|275715|275716|275717|275718|275719|275720|275721|275722|275723|275724|275725|275726|275727|275728|275729|275731|275732|275734|275735|275738|275739|275740|275741|275744|275745|275749|275753|307200|353769|364283|364300|497934|497939|497966|513484|655021|655022|731509|731510|743655|745500|789814|789815|792817|861764|861765|861766|861767|861768|861769|861770|861771|861772|861773|861774|861775|861776|861777|861778|861779|861780|861781|861782|861784|861785|861786|861787|861788|861789|861790|861791|861792|861793|861794|861795|861796|861797|861798|861799|864943|864944|864946|864947|864948|864949|864950|961249|961586", + "text": "Fibrochondrogenesis 1" + }, + { + "baseId": "32177|32179|190383|193034|361234|377094|378137|481354|513382|513383|578577|620667|620668|677297|920419|971584", + "text": "Epiphyseal dysplasia, multiple, 3" + }, + { + "baseId": "32178|32184", + "text": "Intervertebral disc disease, susceptibility to" + }, + { + "baseId": "32180", + "text": "Epiphyseal dysplasia, multiple, 3, with myopathy" + }, + { + "baseId": "32181|32182|32183|32185|192639|193781|193938|193939|195298|249892|249893|249894|249902|249905|249906|249908|249910|249911|249913|249914|249915|249918|249919|249920|249921|249923|249926|267042|267754|275467|280498|280501|280502|280505|280506|280507|280513|280516|280917|280936|280938|280942|280944|280945|280948|280961|282242|282245|282246|282248|282261|282279|282280|282460|282461|282469|282477|282479|282480|282482|282483|282483|282485|282493|282494|282494|282495|282496|282497|404746|404746|442838|489924|538337|538337|677276|759019|792890|864365|864366|864367|864368|864369|864370|864371|864372|864373|864374|864375|864376|864377|864378|864379|864380|864381|864382|865176|865177|865178|865179|918640|970689", + "text": "Epiphyseal dysplasia, multiple, 2" + }, + { + "baseId": "32186|32187|178168", + "text": "Corneal dystrophy, Fuchs endothelial 1" + }, + { + "baseId": "32186|32187", + "text": "Corneal dystrophy, posterior polymorphous, 2" + }, + { + "baseId": "32188|32192|32193|32194|32198|32202|32203|32203|32205|32206|32207|32208|32209|32210|32211|32212|32213|32215|32219|32221|38594|38596|38597|38598|38599|71511|99705|99706|99707|99710|99711|99712|99714|99716|99721|99725|99726|99727|99730|99730|99732|99739|99741|99742|99745|99745|99746|99746|99747|99748|99750|99751|99753|99754|99755|99761|99762|99763|99764|99764|99765|99766|99767|99768|99768|99769|99770|99771|99773|99774|99784|99785|99796|99797|99804|99806|99809|99813|99817|99822|99827|99829|99829|99831|99835|99836|99837|99840|99843|99844|99845|99848|99849|99851|99853|99854|99855|99856|99858|99861|99862|99863|100801|100802|100803|100804|100806|100807|100808|100809|100810|100811|100812|100813|100814|100815|100816|100817|100819|100820|100822|100824|100825|100826|100827|100828|100829|100832|100834|100835|100837|100838|100838|100840|100841|100842|100843|100845|100847|100851|100852|100854|100856|100857|100858|100862|100867|100867|100868|100869|100870|100875|100876|100877|100877|100878|100878|100883|100884|100885|100885|100886|100888|100888|100889|100890|100891|100894|100895|100896|100897|100899|100901|100902|100907|100910|100911|100915|100916|100917|100921|134261|134262|134262|134263|134264|134265|134266|134267|134268|134269|134270|134270|134271|134271|134272|172209|172213|172214|172217|172217|172218|172219|172257|172258|172260|172262|172263|172265|172271|172273|172274|172275|176948|176949|177038|177080|177169|177211|177301|177342|177343|177635|177636|177637|177638|177639|177642|177644|177645|188959|190060|190061|190062|190063|190797|190835|191040|191040|191202|191204|191217|191218|191363|191529|191784|191785|191892|191893|191907|192311|192311|192312|192313|192638|192906|193113|193113|193116|193117|193131|193274|193275|193276|193277|193278|193279|193280|193281|193283|193284|193490|193491|193492|193541|193841|193937|194109|194110|194114|194115|194138|194139|194141|194143|194193|194194|194195|194240|194363|194394|194396|194576|194577|194578|194596|194597|194598|194644|194645|194892|194893|194922|194923|195327|195328|195329|195634|195669|195953|196229|196248|196249|196250|196251|196252|198611|198644|204973|206953|206955|208723|208724|208726|213661|215253|226467|226468|226490|226491|236989|237190|250675|250681|250684|250686|250687|250688|250689|250690|250692|250693|250695|257519|257521|257524|257529|257533|257534|257541|257547|257549|257554|257560|257571|257572|260246|260247|260862|264078|265291|265356|265401|265496|265526|265546|265548|265851|265852|265902|265978|266057|266079|266085|266087|266171|266183|266196|266201|266343|266353|266419|266420|266421|266432|266444|266447|266472|266476|266506|266528|266535|266654|266661|266667|266682|266700|266712|266712|266720|266721|266728|266762|266763|266766|266770|266780|266882|266889|266891|266897|266911|266917|266920|267011|267026|267049|267128|267131|267245|267251|267257|267268|267276|267284|267286|267296|267310|267415|267476|267479|267492|267494|267516|267525|267530|267531|267552|267562|267567|267573|267643|267646|267678|267680|267697|267880|267895|267919|267926|267929|267933|267949|267990|267994|267999|268128|268179|268186|268235|268236|268294|268301|268333|268346|268358|268360|268361|268363|268366|268377|268379|268382|268617|268618|268713|268716|268732|268733|268756|268790|268791|268792|268793|268794|268804|268821|268823|268836|268930|269005|269011|269015|269026|269028|269030|269033|269038|269046|269052|269063|269068|269070|269071|269072|269114|269179|269203|269213|269287|269295|269297|269315|269324|269374|269384|269386|269430|269470|269485|269521|269550|269590|269595|269598|269648|269684|269687|269690|269698|269701|269706|269717|269718|269808|269811|269815|269822|269831|269866|269869|269871|269873|269876|269917|269933|269947|269948|269955|269963|269967|269985|269985|270047|270064|270066|270196|270202|270221|270224|270234|270235|270254|270259|270264|270266|270268|270278|270283|270376|270383|270387|270397|270416|270444|270445|270457|270458|270471|270684|270688|270699|270702|270716|270717|270720|270816|270819|270824|271059|271061|271149|271165|271370|271420|271680|271953|271955|272025|272029|272031|272054|272128|272171|272172|272175|272190|272248|272318|272325|272352|272515|272542|272622|272624|272627|272629|272635|272650|272651|272656|272656|272659|272678|272680|272682|272685|272741|272753|272804|272823|272823|272839|272848|272850|272866|272876|272880|272923|273057|273073|273079|273081|273082|273100|273109|273112|273114|273161|273162|273166|273181|273210|273211|273281|273313|273334|273351|273354|273358|273368|273376|273383|273384|273393|273479|273586|273594|273707|273804|273810|273817|273832|273883|273921|273991|273992|274006|274018|274030|274148|274174|274174|274322|274395|274396|274398|274427|274432|274438|274468|274486|274487|274493|274574|274578|274580|274595|274699|274713|274717|274721|274727|274728|274732|274761|274766|274846|274870|274899|274908|274958|274959|275119|275164|275174|275316|275343|275446|275448|275452|275453|275463|285405|285411|285434|285444|285453|285457|285458|286068|286069|286080|286081|286088|286094|286109|286114|288387|288438|288451|288455|288470|288806|337093|337097|337114|337116|337124|346827|346846|346849|346852|346855|350886|350894|350922|350925|350926|350929|350930|351920|351926|351927|351928|359353|359381|360458|361356|361656|366249|366256|366262|367099|378488|378583|404758|405667|405668|405669|405672|410895|410896|413593|413594|413595|415706|421372|422367|425475|428004|430435|430437|443186|443191|443192|443194|443196|443197|443198|443201|446334|446336|446341|446342|448490|448585|450522|450524|450529|450535|450537|450539|450541|450545|450547|450565|450567|450569|450575|450578|450582|450583|450586|450588|450595|450596|450598|450602|450604|450646|450648|450649|450658|450661|450669|450670|450671|450674|450676|450682|450692|450697|450701|450703|450818|450822|450825|450826|450835|450839|450840|450844|450849|450851|450854|450857|450862|450865|450866|450869|450872|450873|450876|450877|450878|450879|450881|450883|450888|450899|450899|450904|469705|469708|469714|469719|469721|469723|469724|469731|469737|469740|469745|469747|469749|469750|469752|469755|469757|469760|469763|469777|469779|469784|469787|469802|469806|469807|469813|469820|469832|469835|470773|470777|470780|470783|470795|470796|470800|470802|470805|470806|470808|470812|470815|470817|470822|470824|470826|470827|471254|471255|471257|471258|471261|471265|471269|471270|471272|471273|471284|471287|471290|471293|471297|471298|471298|471300|471716|471724|471726|471728|471729|471730|471734|471735|471738|471739|471743|471744|471749|471750|471752|471754|471756|471762|471763|471764|471772|486291|488277|488468|488585|488649|488651|488662|488764|488797|488799|488808|488809|488929|488944|488992|489009|489222|489263|489275|489492|489550|489605|489613|489614|489698|489748|489749|489764|489992|490005|490189|490333|490357|490423|490467|490469|490523|490649|490733|490756|491115|491299|491310|491522|491637|491732|491784|491788|491789|491963|492079|492094|492098|492328|492467|492607|492608|492620|492879|493247|493258|493510|493510|493564|493581|493651|493795|493821|493970|494002|499573|499595|500007|500061|507426|507596|507602|512497|512498|512499|513523|513666|516319|517919|517921|517925|517963|517968|517972|517975|517977|517980|517981|517982|517983|517985|517990|517992|517993|517995|518002|518005|518037|518040|518042|518046|518047|518049|518052|518058|518065|518071|518072|533957|533962|533964|533969|533972|533976|533981|533983|533988|533989|533993|533997|533999|534003|534005|534006|534007|534013|534019|534020|534021|534024|534026|534032|534035|534045|534053|534068|534075|534077|534084|534090|534093|534094|534101|534511|534512|534517|534522|534523|534525|534526|534532|534534|534537|534540|534541|534543|534546|538966|540471|557940|557942|557944|557946|557948|557950|557952|557954|557956|557958|557960|557962|557964|558001|558003|558006|558009|558012|558014|558019|558302|558303|558304|558307|558310|558312|558641|559184|559523|559527|560507|560510|560512|560514|560516|560517|560519|560520|560522|561096|561103|561104|561114|561115|561116|561121|561127|561134|561143|561157|561159|561164|561170|561171|561176|561184|561192|561193|571462|571615|571616|571617|571619|571621|571623|571629|571636|571637|571641|571645|571646|571653|571654|571655|573015|573019|573169|573174|573175|573180|573184|573187|573188|573190|573194|573195|573858|573863|573869|573871|573872|573875|573881|573883|573886|573890|573893|573894|575145|575188|575189|575190|575191|575192|575193|575194|575195|575196|575197|575198|575199|575200|575508|584304|585204|585926|586012|586030|586458|586627|586781|587050|587051|587139|587458|587608|587612|587759|587835|588490|588533|588610|588704|588749|589034|589257|589360|589482|589552|589606|589778|590090|608945|608973|629626|629627|629628|629629|629630|629631|629632|629633|629634|629635|629636|629637|629638|629639|629640|629641|629642|629643|629644|629645|629646|629647|629648|629649|629650|629651|629652|629653|629654|629655|629656|629657|629658|629659|629660|629661|629662|629663|629664|629665|629666|629667|629668|629669|629670|629671|629672|629673|629674|629675|629676|629677|629678|629679|629680|629681|629682|629683|629684|629685|629686|629687|629688|629689|629690|629691|629692|629693|629694|629695|629696|629697|629698|629699|629700|649069|649070|649071|649072|649073|649074|649075|649076|649077|649078|649079|649080|649081|649082|649083|649084|649085|649086|649087|649088|649089|649090|649091|649092|649093|649094|649095|649096|649097|649098|649099|649100|649101|649102|649103|649104|649105|649106|649107|649108|649109|649110|649111|649112|649113|649114|649115|649116|649117|649118|649119|649120|649121|649122|649123|649124|649125|649126|649127|649128|649129|649130|650922|650959|650962|650990|653149|653176|653180|653184|653258|653260|653580|653582|653589|653591|653661|653674|653676|653681|653684|677217|691064|691068|691072|691074|694641|694645|694648|694650|694655|694657|694658|694661|695128|695864|697434|697435|697437|697438|697440|697443|705749|705751|705752|705753|705754|708127|708128|708129|717264|717266|719727|728971|728972|728973|728974|733286|733295|742702|742707|742708|747422|747431|747433|757887|757891|757892|757896|760921|763071|763075|763077|763079|763083|763087|773404|773411|774717|776710|776835|777259|781247|781250|781252|786533|786534|786535|790213|790214|792014|792015|792016|792017|795194|798328|804995|804996|819146|821380|821381|821382|821383|821384|822205|825988|825989|825990|825991|825992|825993|825994|825995|825996|825997|825998|825999|826000|826001|826002|826003|826004|826005|826006|826007|826008|826009|826010|826011|826012|826013|826014|826015|826016|826017|826018|826019|826020|826021|826022|826023|826024|826025|826026|826027|826028|826029|826030|826031|826032|826033|826034|826035|826036|826037|826038|826039|826040|826041|826042|826043|826044|826045|826046|826047|826048|826049|826050|848911|848912|848913|848914|848915|848916|848917|848918|848919|848920|848921|848922|848923|848924|848925|848926|848927|848928|848929|848930|848931|848932|848933|848934|848935|848936|848937|848938|848939|848940|848941|848942|848943|848944|848945|848946|848947|848948|848949|848950|848951|848952|848953|848954|848955|848956|848957|848958|848959|848960|848961|848962|848963|848964|848965|848966|848967|848968|848969|848970|848971|848972|848973|848974|848975|848976|848977|848978|848979|848980|848981|850847|850849|850894|851863|851865|851867|851869|851871|851873|852405|852408|852411|852414|853009|853010|853011|853012|884222|884260|887008|887009|887010|887021|920679|922639|922640|922641|922642|922643|922644|922645|922646|922647|922648|922649|922650|922651|922652|929360|929361|929362|929363|929364|929365|929366|929367|929368|929369|929370|929371|929372|929373|929374|929375|929376|929377|929378|929379|929380|929381|929382|929383|929384|929385|929386|931211|931212|931213|931214|931215|931216|931217|931218|931219|931220|931221|931222|931223|931224|931225|931226|931227|931228|931229|931230|931231|931232|931233|931234|931235|931236|931237|931238|931239|931240|931241|931242|931243|931244|939153|939154|939155|939156|939157|939158|939159|939160|939161|939162|939163|939164|939165|939166|939167|939168|939169|939170|939171|939172|939880|940520|940521|940703|941264|941265|941266|941267|941268|941269|942690|942691|942692|942693|942694|942695|942696|942697|942698|942699|942700|942701|942702|942703|942704|942705|942706|942707|942708|942709|942710|942711|942712|942713|942714|942715|942716|951282|951283|951284|951285|951286|951287|951288|951289|951290|951291|951292|952997|952998|952999|953000|953001|953002|953003|953004|953005|953006|958999|959000|959001|959002|959003|959004|959005|959006|959007|959008|959009|959010|959011|959632|960329|960330|960331|960332|960333|960334|960335|960336|960467|960954|960955|960956|961354|963186|964198", + "text": "Bethlem myopathy 1" + }, + { + "baseId": "32189|32190|32195|32196|32197|32199|32200|32203|32205|32207|32216|32217|32218|32219|32221|38594|38595|45577|45578|99707|99720|99730|99745|99746|99763|99764|99766|99767|99768|99796|99829|100811|100822|100838|100856|100862|100867|100868|100875|100877|100878|100885|100888|100889|100890|100897|134262|134270|134271|172217|172262|190060|191040|192311|192311|193113|204973|260941|264978|266712|268930|269203|269985|270234|272656|272740|272804|272823|272923|273883|274174|404758|443198|450899|470796|471298|488657|493510|538966|608972|612111|621016|622477|622869|622870|622925|649089|918756|918757|918758|920422|961354|964697", + "text": "Ullrich congenital muscular dystrophy 1" + }, + { + "baseId": "32201|32206|32214|32219|32220|100856", + "text": "Ullrich congenital muscular dystrophy 1, autosomal dominant" + }, + { + "baseId": "32203|99804|99805|99806|99808|99813|99815|99816|99822|99823|99827|99829|99831|99832|99833|99836|99837|99838|99846|99847|99849|99850|99852|99853|99854|99856|99857|99858|99861|99862|99863|134263|134264|172275|177169|177638|190797|191204|191784|191785|191892|193116|193274|193278|193279|193281|193284|193491|193492|257549|257572|260246|265291|265548|266421|266447|266474|266476|266535|266700|266852|267353|267567|268327|268792|269052|269213|269324|269430|269958|270283|270684|271059|272175|272318|272542|274578|274958|274959|275174|337114|337116|337120|337122|337124|337126|337128|337133|337135|337138|346846|346849|346852|346855|346863|346864|346865|346868|346875|346885|346886|350915|350917|350919|350922|350924|350925|350926|350927|350929|350930|350939|350940|350943|350944|350946|351916|351917|351919|351920|351921|351924|351926|351927|351928|351931|351936|351937|351940|351941|353597|353598", + "text": "Myosclerosis" + }, + { + "baseId": "32203|32207|38599|71511|99694|99705|99706|99707|99709|99710|99711|99712|99714|99716|99721|99722|99725|99727|99730|99732|99739|99741|99743|99744|99745|99746|99747|99748|99750|99751|99753|99754|99755|99756|99761|99763|99765|99766|99767|99768|99769|99770|99771|99772|99773|99774|99775|99779|99781|99782|99784|99785|99799|99804|99805|99806|99808|99813|99815|99816|99822|99823|99827|99829|99831|99832|99833|99835|99836|99837|99838|99840|99846|99847|99849|99850|99851|99852|99853|99854|99855|99856|99857|99858|99861|99862|99863|100800|100801|100802|100803|100804|100806|100807|100808|100809|100810|100812|100813|100814|100815|100816|100817|100819|100820|100821|100822|100824|100825|100828|100829|100832|100833|100834|100835|100836|100837|100838|100841|100842|100843|100845|100847|100850|100852|100857|100862|100867|100868|100875|100876|100877|100878|100883|100884|100885|100888|100889|100890|100891|100894|100895|100896|100897|100898|100899|100901|100902|100903|100906|100907|100908|100909|100910|100911|100912|100913|100914|100915|100916|100917|100918|100919|100921|134261|134262|134263|134264|134268|134270|134272|172209|172214|172217|172218|172219|172257|172260|172266|172274|172275|176948|176949|177080|177169|177211|177342|177635|177638|177639|177642|177644|177645|190061|190062|190064|190797|191204|191363|191784|191785|191892|192311|192312|193116|193274|193278|193279|193280|193281|193284|193490|193491|193492|193541|193841|193937|194109|194110|194114|194115|194138|194193|194194|194195|194240|194396|194576|194577|194598|194645|194922|194923|195327|195328|195953|196229|196248|196249|196251|226467|237190|250681|250684|250688|250690|250691|250692|250695|250696|257521|257533|257534|257537|257540|257549|257554|257558|257571|257572|260246|260862|265291|265356|265496|265546|265548|265851|265852|265978|266057|266079|266201|266353|266421|266432|266447|266474|266476|266535|266682|266700|266766|266852|266882|266910|266911|266920|267011|267026|267128|267131|267251|267268|267276|267284|267310|267353|267405|267476|267479|267492|267516|267552|267567|267652|267697|267880|267926|267933|268128|268301|268327|268333|268346|268366|268732|268792|269011|269028|269052|269066|269072|269202|269204|269213|269287|269295|269324|269386|269430|269485|269550|269571|269590|269690|269701|269718|269811|269831|269875|269876|269933|269955|269958|269963|270047|270224|270235|270238|270259|270278|270283|270457|270684|270702|270720|271059|271061|271993|272025|272141|272171|272175|272183|272318|272352|272515|272542|272635|272638|272678|272680|272753|272839|272850|272866|272880|272917|273073|273114|273354|273575|273594|273909|274129|274174|274322|274398|274427|274432|274523|274574|274578|274717|274807|274846|274908|274958|274959|275164|275165|275174|275448|285394|285395|285396|285405|285407|285411|285415|285419|285424|285426|285434|285436|285443|285444|285449|285453|285457|285458|286060|286062|286068|286069|286070|286080|286081|286083|286088|286089|286094|286096|286107|286109|286114|286116|286119|288362|288363|288364|288367|288369|288377|288387|288394|288418|288428|288438|288440|288451|288452|288455|288470|288786|288787|288788|288804|288806|288809|288810|288812|288815|288816|288817|288819|337067|337069|337074|337077|337089|337091|337093|337094|337097|337098|337100|337102|337106|337107|337112|337114|337116|337120|337122|337124|337126|337128|337133|337135|337138|346821|346826|346827|346829|346832|346835|346838|346839|346842|346843|346846|346849|346852|346855|346863|346864|346865|346868|346875|346885|346886|350883|350886|350887|350890|350891|350894|350895|350897|350902|350903|350905|350906|350908|350910|350912|350914|350915|350917|350919|350920|350922|350924|350925|350926|350927|350929|350930|350939|350940|350943|350944|350946|351894|351897|351898|351899|351900|351903|351905|351910|351911|351912|351913|351914|351915|351916|351917|351919|351920|351921|351924|351926|351927|351928|351931|351936|351937|351940|351941|353592|353597|353598|366245|366256|378497|421371|421374|422367|443194|443195|469813|470802|470822|470827|488944|489016|490973|491437|491732|493223|493510|507446|508324|512498|517990|533962|560517|561121|561176|586497|588220|588749|589523|620675|620742|620924|629646|629653|649072|694638|694661|733286|733295|776710|777259|826016|826024|826037|848927|848938|848963|848974|884218|884219|884220|884221|884222|884223|884224|884225|884226|884227|884228|884229|884230|884231|884232|884233|884234|884235|884236|884237|884238|884239|884240|884241|884242|884243|884244|884245|884246|884247|884248|884249|884250|884251|884252|884253|884254|884255|884256|884257|884258|884259|884260|884261|884262|884263|886982|886983|886984|886985|886986|886987|886988|886989|886990|886991|886992|886993|886994|886995|886996|886997|886998|886999|887000|887001|887002|887003|887004|887005|887006|887007|887008|887009|887010|887011|887012|887013|887014|887015|887016|887017|887018|887019|887020|887021|887022|887023|887024|887025|887026|887027|887321|887322|887323|887324|887533|887534|887535|887536|887537|887538|887539|887540|887541|887542|887543|887544|887545|887546|887547|887548|887549|961546", + "text": "Collagen VI-related myopathy" + }, + { + "baseId": "32204|32207|172274|257554|266712|268930|272823|350920|469813|493510|493510|608973|608974|887013|919941", + "text": "Myosclerosis, autosomal recessive" + }, + { + "baseId": "32204|38598|38599", + "text": "BETHLEM MYOPATHY 1, AUTOSOMAL RECESSIVE" + }, + { + "baseId": "32222|32223|32224|32225|32226|32227|32228|32229|32230|32231|32232|38593|524745|537853|637947|946472|967188|967189|967190|983673", + "text": "Ehlers-Danlos syndrome, classic type I" + }, + { + "baseId": "32224|32227|32235|32236|32237|32272|32289|32309|32382|38593|44597|44598|44600|44604|44605|44609|44612|44621|44624|47468|85246|87923|140562|140563|140566|140567|140568|140570|140571|140572|140574|140575|140577|140578|140579|140582|140583|140585|140586|140587|140588|140590|140591|140592|140593|140595|140596|140597|140598|140599|140600|140601|140602|140604|140605|140606|140607|140608|140609|140610|140611|140612|140613|140614|140615|140616|140617|140618|140620|140621|140622|140623|140624|140627|140628|140629|140630|140631|140632|140633|140635|140636|140637|140638|140640|140641|140642|140643|140644|140646|140647|140648|140649|140651|140652|140654|140655|140658|140660|140661|140662|140664|140665|140666|140667|140668|140671|165529|165530|178495|178497|178498|178594|178596|191856|192176|192811|193889|193892|194097|194215|194565|194613|194698|195202|196151|205008|205759|209493|209494|209495|209497|209498|209499|209500|209501|209502|209505|209507|209508|209512|209516|209517|209518|209519|209520|209521|209522|209523|209525|209527|209528|209529|209533|209534|209535|209538|209539|209540|209541|209542|209548|209555|209556|209557|209560|209562|209563|209569|209570|209572|209575|209576|209578|209579|209580|209581|209962|209964|209966|209967|209968|209970|209971|209972|209973|209974|209975|209978|209979|209982|209985|209986|209987|209988|209989|209990|209993|209994|209995|209996|209997|209998|210000|210001|210003|210005|210006|210008|210011|210014|210015|210016|210017|210018|210022|210023|210024|210024|210026|210028|210029|210031|210032|210035|210036|210037|210041|210042|210043|210044|210046|210047|210048|210051|210052|210053|210054|210055|210059|210062|210063|210064|210065|210066|210067|210068|210069|210070|210071|210072|210076|210078|210079|210083|210084|210087|210088|210089|210090|210091|210093|210094|210096|210100|210102|210106|210108|210109|210113|210114|210115|210117|210118|210119|210120|210122|210124|210125|210128|210130|210131|210134|210135|210136|210137|210138|210142|210144|210148|213575|213576|217340|217341|217343|221806|224247|224365|238580|238581|238582|238583|238584|238585|240512|240514|240515|240516|240517|240518|240519|240520|240522|240524|250467|252982|253410|253412|253420|253424|253434|253455|258231|258233|258234|258526|258530|258532|258533|258537|258542|258544|258545|258548|258549|258558|259715|259882|264322|265335|265723|266139|267364|267387|267390|269223|270042|270149|273679|283559|283566|283568|286226|286241|286243|286575|286579|303626|303634|303636|307100|307468|307488|307490|307495|307496|307502|307509|307524|307547|311704|311705|311706|311710|311711|311726|311732|311733|311987|311991|311998|312000|312001|312006|312019|317251|317263|317291|317298|317305|317318|317327|317367|317369|317660|317667|317688|317696|317714|317716|317731|317754|317766|317768|317798|317820|317828|317839|359684|359685|359796|359798|359913|361194|362443|365961|366205|366218|366219|366224|366226|366244|366270|366764|366790|369301|369302|369317|369676|370003|370022|370028|370056|370077|370539|370540|370812|370818|370835|370837|371437|372439|372466|372488|372533|372549|392269|392270|392364|392365|392366|392369|392372|392426|392428|392431|392444|392452|392478|392483|392492|392494|392507|392515|392516|396638|396642|396645|396647|396649|396655|396660|396673|396681|396687|396698|396700|396777|396780|396843|396845|396858|396859|396867|396885|396888|396891|396896|396959|396961|396964|396972|396980|396982|396983|396985|396995|396998|397004|397011|397018|397019|397273|397280|397288|397289|405513|405514|405516|405522|407274|407278|407590|407591|407595|407596|407598|407599|407601|413586|413953|413955|413955|413961|413963|415167|415170|415172|421350|421721|421722|421723|425770|432281|433414|433429|433430|433431|433432|433433|433436|433439|433442|433443|434575|441152|441154|441155|443112|443119|444179|444394|444396|444397|444398|444403|444408|448364|450138|450143|450147|450151|450156|450160|450164|450315|450316|450319|450329|450332|450334|450338|450348|450356|450361|450363|450364|450365|450366|450368|450369|450433|450436|450441|450443|450454|450457|450458|450462|450467|456859|457069|457072|457073|457076|457077|457081|457082|457084|457089|457090|457093|457096|457591|457602|457606|457615|457621|457645|457647|457662|457664|457676|457692|457699|457703|457707|457708|457712|457717|457721|457725|457727|457734|458044|458049|458052|458055|458058|458060|458063|458075|458084|458086|458091|458097|458647|458650|458767|458769|458774|458778|458782|458783|458791|458793|458796|458800|458803|458806|458807|458822|458841|458844|458850|459162|459164|459166|459175|459176|459178|459182|459190|459193|459194|459196|459197|459198|459200|459202|459203|459204|459206|459207|459209|459211|459213|459214|459215|459216|459218|459221|459223|459227|459230|459232|459240|459248|459256|459623|459626|459633|459636|459646|459653|459654|459656|459659|459661|459664|459669|459674|459683|480512|480515|480516|480520|480521|485740|485742|485763|485794|485814|485859|488362|492431|495362|499426|499841|502341|502350|502366|502372|502561|502562|502666|502696|502700|502767|502788|502801|502803|503064|503074|503096|509017|509018|509019|509020|509466|509470|509471|509475|509485|509488|509489|510002|510004|510009|510012|510018|510020|510023|510025|510028|510030|510038|510039|511732|513917|517447|517450|517525|517536|517537|517545|517575|517577|517580|517584|517585|517589|517744|517745|517749|522310|522932|522933|522934|523111|523112|523117|523119|523125|523128|523147|523149|523153|523379|523382|523479|523480|523483|523484|523488|523493|523495|523498|523827|524269|524270|524276|524287|524293|524299|524300|524301|524302|524303|524305|524310|524319|524391|524435|524439|524521|524522|524524|524530|524533|524537|524541|524549|524553|524560|524562|524564|524573|524575|524580|524582|524723|524726|524728|524740|524744|524745|524747|524753|524754|524883|524885|524892|524898|524900|524902|524910|524911|524914|524915|537546|537706|537822|537846|537852|537853|537854|538344|552419|552439|557428|557792|557794|557796|557841|557843|557845|557847|557849|557851|559013|559015|559017|559019|559496|559498|559500|559502|559504|559506|559508|561817|561825|561827|561831|561832|561836|562266|562267|562274|562275|562282|562292|562304|562596|562950|562951|562954|562956|562961|562963|562973|562974|562976|562977|562982|562984|562985|562986|563233|563699|563702|563703|563708|563714|563719|563720|563726|563728|563729|563730|563888|564501|564509|564520|564522|564524|565707|565709|565711|565719|565720|565721|565723|565727|565731|567221|567227|567236|567247|567250|567251|567262|567269|568750|568755|568756|568761|568764|568772|568775|568779|568780|568784|568785|568793|568804|568809|609467|609678|609723|609725|611363|612850|612851|613461|613859|614236|614237|614338|619932|624232|629211|629212|629213|629214|629215|629216|629217|629218|629219|629220|629221|629222|629223|629224|629225|629226|629227|629228|629229|629230|629231|629232|629233|629234|629235|629236|636453|636454|636455|636456|636457|636458|636459|636460|636461|636462|636463|636464|636465|636466|636467|636468|636469|636470|636471|636472|637939|637940|637941|637942|637943|637944|637945|637946|637947|637948|637949|637950|637951|637952|637953|637954|637955|637956|637957|637958|637959|637960|637961|637962|637963|637964|637965|637966|637967|637968|637969|637970|637971|637972|637973|637974|637975|637976|637977|637978|637979|637980|637981|637982|637983|637984|637985|637986|637987|637988|637989|637990|637991|637992|637993|637994|637995|637996|637997|637998|650904|650905|651710|651711|651732|651774|651837|651891|651915|651920|651922|651990|652016|652041|652139|652141|652145|655813|672350|683462|684059|684060|687396|687397|687399|687400|687401|687402|687408|687412|689695|689696|689697|689939|692630|692631|692633|695373|695428|700294|700295|700298|700299|700300|700882|711847|711848|722744|722746|730524|736995|744381|744459|750851|751529|759734|762734|766477|766480|767246|767248|767253|767256|775200|777731|779252|781098|782955|782959|789375|790759|790760|790761|790762|790763|790859|801113|816315|819093|819925|820091|820093|820094|820095|825493|825494|825495|825496|825497|825498|825499|825500|825501|825502|825503|825504|825505|825506|825507|825508|825509|825510|825511|825512|825513|825514|825515|825516|833946|833947|833948|833949|833950|833951|833952|833953|833954|833955|833956|833957|833958|833959|833960|833961|833962|833963|833964|833965|833966|833967|833968|833969|833970|833971|833972|833973|833974|833975|833976|833977|833978|833979|833980|835744|835745|835746|835747|835748|835749|835750|835751|835752|835753|835754|835755|835756|835757|835758|835759|835760|835761|835762|835763|835764|835765|835766|835767|835768|835769|835770|835771|835772|835773|835774|835775|835776|835777|835778|835779|835780|835781|835782|835783|835784|835785|835786|835787|835788|835789|835790|835791|835792|835793|835794|835795|835796|850823|850866|850868|851141|851165|851167|851247|851728|852168|852170|852394|852499|901480|901482|901483|901484|901485|901486|901487|901488|901489|903350|917035|922495|922496|922497|924935|924936|924937|924938|924939|924940|924941|924942|924943|924944|924945|924946|924947|924948|924949|924950|924951|925466|925467|925468|925469|925470|925471|925472|925473|925474|931060|931061|931062|934034|934035|934036|934037|934038|934039|934040|934041|934042|934043|934044|934628|934629|934630|934631|934632|934633|934634|934635|934636|934637|934638|934639|934640|939869|940139|940140|940683|940884|940885|940930|940931|940932|942522|942523|942524|942525|942526|942527|942528|942529|942530|942531|942532|945795|945796|945797|945798|945799|945800|945801|945802|946472|946473|946474|946475|946476|946477|946478|946479|946480|946481|952864|952865|952866|952867|955255|955256|955257|955258|955259|955260|955261|955739|955740|955741|955742|955743|955744|955745|955746|955747|955748|955749|955750|955751|955752|959614|959615|959616|960459|960675|960676|960677|960678|960679|961291|961335|966611|970900|970901|976739|980443|980463", + "text": "Ehlers-Danlos syndrome, classic type" + }, + { + "baseId": "32233|192100|252474|267220|361186|443983|491272", + "text": "Multiple epiphyseal dysplasia 6" + }, + { + "baseId": "32234|171284|267220|443983|491272|919045|919046", + "text": "Stickler syndrome, type 4" + }, + { + "baseId": "32238|32239|32240|32241|32242|32243|32244|32245|32246|32247|32248|32249|32250|32251|32252|32253|32254|32255|32256|32257|32258|32259|32261|32262|32263|32264|32265|32266|32267|32268|32270|44625|44627|44628|85239|106846|106847|106848|106849|106850|106851|106852|106853|106854|106855|106856|106857|106858|106859|106860|106861|106862|106863|106864|106865|106866|106867|106868|106869|106870|106871|106872|106873|106874|106876|106877|106878|106879|106880|106881|106882|106883|106884|106885|106886|106887|106888|106889|106890|106891|106892|106893|106894|106895|106896|106897|106898|106899|106900|106901|106902|106903|106904|106905|106906|106907|106908|106909|106910|106911|106912|106913|106914|106915|106916|106917|106918|106919|106920|106921|106922|106923|106924|106925|106926|106927|106928|106929|106930|106931|106932|106933|106934|106935|106936|106937|106938|106939|106940|106941|106942|106943|106944|106945|106946|106947|106948|106949|106950|106951|106952|106953|106954|106955|106956|106957|106958|106959|106960|106961|106962|106963|106964|106965|106966|106967|106968|106969|106970|106971|106972|106973|106974|106976|106977|106978|106979|106980|106981|106982|106983|106984|106985|106986|106987|106988|106989|106990|106991|106992|106993|106994|106995|106996|106997|106998|106999|107000|107001|107002|107003|107004|107005|107006|107007|107008|107009|107010|107011|107012|107013|107014|107015|107016|107017|107018|107019|107020|107021|107022|107023|107024|107025|107026|107027|107028|107029|107030|107031|107032|107033|107034|107035|107036|107037|107038|107039|107040|107041|107042|107043|107044|107045|107046|107047|107048|107049|107050|107051|107052|107053|107054|107055|107056|107057|107058|107059|107060|107061|107062|107063|107064|107065|107066|107067|107068|107069|107070|107071|107072|107073|107074|107075|107076|107077|107078|107079|107080|107081|107082|107083|107084|107085|107086|107087|107088|107089|107090|107091|107092|107093|107094|107095|107096|107097|107098|107099|107100|107101|107102|107103|107104|107105|107106|107107|107108|107109|107110|107111|107112|107113|107114|107115|107116|107117|107118|107119|107120|107121|107122|107123|107124|107125|107126|107127|107128|107129|107130|107131|107132|107133|107134|107135|107136|107137|107138|107139|107140|107141|107142|107143|107144|107145|107146|107147|107148|107149|107150|107151|107152|107153|107156|107157|107158|107159|107160|107161|107162|107163|107164|107165|107166|107167|107168|107169|107170|107171|107172|107173|107174|107175|107176|107177|107178|107179|107180|107181|107182|107183|107184|107185|107186|107187|107188|107189|107190|107191|107192|107193|107194|107195|107196|107197|107198|107199|107200|107201|107202|107203|107204|107205|107206|107207|107208|107209|107210|107211|107212|107213|107214|107215|107216|107217|107218|107219|107220|107221|107222|107223|107224|107225|107226|107227|107228|107229|107230|107231|107232|107233|107234|107235|107236|107237|107238|107239|107240|107241|107242|107243|140544|140545|140546|140547|140548|140550|140551|140552|140553|140554|140556|140557|140559|140560|140561|171072|171073|171074|171075|178493|178494|192615|193008|194126|194638|196759|196760|196761|196763|196764|196767|196770|196771|196772|196775|196776|196779|196780|196782|196786|196789|196790|196791|196792|196794|196799|196800|196801|196804|196805|196806|196808|196809|196810|196812|196816|196817|196817|196819|196821|205423|213532|215235|224303|227191|228909|228910|231509|238578|238579|250445|258189|258192|258193|258194|258195|258196|258198|258199|258202|258204|258208|258212|258213|258215|258216|258223|258225|258226|283480|283481|283495|283496|283497|283504|283505|283511|283518|283523|283526|283527|283539|283540|284171|284172|284177|284178|284179|284186|284189|284190|284191|284192|284194|284195|286092|286095|286123|286124|286126|286128|286129|286443|286459|286460|286477|286479|286480|286488|286490|286496|286498|286502|286512|286516|286521|286524|286525|359399|359451|361853|365926|365940|365943|365954|366184|366187|366192|366201|366204|366214|391381|392210|392228|392241|392244|392245|392250|392256|392257|392261|392330|392332|392334|392351|392352|392354|392359|392392|392396|392399|392400|392401|392403|392409|392410|392416|392422|392457|392464|392472|392473|392475|405508|414857|414858|421346|421349|424967|425455|433424|433427|443099|443101|443106|443108|450095|450099|450106|450113|450114|450122|450132|450135|450137|450263|450284|450286|450288|450294|450295|450297|450298|450299|450300|450301|450303|450306|450309|450310|450312|450314|450325|450326|450331|450394|450408|450411|450416|450417|450419|450420|450423|450425|450429|450431|486908|486910|486911|496222|496260|499796|509436|509437|509442|509446|509449|509455|509459|511070|516167|517400|517402|517410|517419|517425|517428|517431|517439|517441|517496|517504|517506|517508|517514|517516|517522|517523|517559|517567|517569|517571|517572|517715|517716|517720|517722|517724|517731|517733|517738|537696|537697|537698|537700|537701|537702|537703|537704|537705|552284|557776|557778|557780|557782|557784|557786|557788|557790|557827|557829|557831|557833|557835|557837|557839|558637|559007|559009|559011|559482|559484|559486|559488|559490|559492|559494|610625|613459|614234|614235|614875|616206|616207|616214|621106|624228|629181|629182|629183|629184|629185|629186|629187|629188|629189|629190|629191|629192|629193|629194|629195|629196|629197|629198|629199|629200|629201|629202|629203|629204|629205|629206|629207|629208|629209|629210|650889|650890|650901|650921|650928|650929|650933|654237|677410|683459|683460|685127|686088|686089|689689|689692|689693|690989|759176|762722|762729|774685|778911|790137|790138|794279|795094|799270|816306|816307|819092|825468|825469|825470|825471|825472|825473|825474|825475|825476|825477|825478|825479|825480|825481|825482|825483|825484|825485|825486|825487|825488|825489|825490|825491|825492|850862|850864|851382|851384|883039|883040|883041|883042|883043|883044|883045|883046|883047|883048|883049|883050|883051|883052|883053|887219|887220|887221|887222|887223|907561|907629|907659|907660|907670|907687|907702|907715|922488|922489|922490|922491|922492|922493|922494|931054|931055|931056|931057|931058|931059|940679|940680|940681|940682|942513|942514|942515|942516|942517|942518|942519|942520|942521|952859|952860|952861|952862|952863|961257|961591|964714|965445|967168|967169|975769|983458", + "text": "Ehlers-Danlos syndrome, type 4" + }, + { + "baseId": "32244", + "text": "COLLAGEN TYPE III POLYMORPHISM" + }, + { + "baseId": "32260", + "text": "EHLERS-DANLOS SYNDROME, NONVASCULAR VARIANT" + }, + { + "baseId": "32271|32272|32289|32290|32295|32309|44596|44598|44599|44600|44604|44609|44612|44624|193366|193367|252978|252979|252980|252981|252982|252983|252984|265335|266139|267364|269223|272375|303611|303618|303621|303624|303625|303626|303634|303636|303638|303639|303647|303648|303656|307066|307071|307080|307081|307082|307099|307100|307102|307104|311941|311959|311968|311978|311983|311985|311986|311987|311988|311991|311998|312000|312001|312006|312007|312009|312011|312019|312022|312024|312025|312030|312033|359685|369301|369302|370028|414024|425770|457591|457676|457725|457734|502172|523379|623145|626173|636458|692332|722743|898519|898520|898521|898522|898523|898524|898525|898526|898527|898528|898529|898530|898531|898532|898533|898534|898535|898536|898537|898538|898539|898540|898541|898542|898543|898544|898545|898546|898547|898548|898549|898550|898551|898552|898553|898554|898555|900419|900420", + "text": "Ehlers-danlos syndrome, arthrochalasia type, 2" + }, + { + "baseId": "32272|32289|32309|32324|32330|32346|32348|32351|32361|32363|32367|32369|32373|32376|32382|32385|32386|44561|44562|44564|44566|44568|44570|44576|44578|44579|44580|44582|44584|44586|44589|44590|44592|44594|44595|44597|44598|44598|44600|44604|44605|44609|44612|44621|44624|87923|171603|191856|192612|193168|193768|194124|194611|194637|194657|194718|205787|213575|213576|215539|227394|237223|237388|237811|256278|259882|259882|260184|260185|260186|260801|265335|265559|266015|266139|266253|267364|267390|267843|268765|268771|269223|269476|270586|271557|272218|273413|303626|303634|303636|307100|311987|311991|311998|312000|312001|312006|312019|329145|339256|339270|339284|339288|339290|345157|345158|345159|346556|346557|359684|359685|360259|369301|369302|369317|369676|370003|370028|371437|375315|375317|376207|376210|376307|376313|378450|378455|378467|407274|407278|410071|410074|413474|413949|413950|413952|413953|413955|413955|413958|413961|413961|413963|413963|413968|413969|413970|413972|413974|413975|413976|413977|413979|413980|413981|413982|413983|413985|413986|413987|413988|413989|413990|413991|413992|413993|413994|413995|413996|413997|414000|414001|414003|414004|414005|414006|414007|414008|414009|414010|414011|414013|414014|414015|414017|414018|414019|414020|414021|414022|414023|414024|414025|414026|414027|414028|414029|414030|414035|415570|424019|424020|424567|424901|425770|426231|432336|432337|433414|438049|441152|441154|441155|441974|441976|441977|441978|444179|445808|445818|445819|445823|445824|456859|457069|457072|457073|457076|457077|457081|457082|457084|457089|457090|457093|457096|457591|457602|457606|457615|457621|457645|457647|457662|457664|457676|457692|457699|457703|457707|457708|457712|457717|457721|457725|457727|457734|458044|458049|458052|458055|458058|458060|458063|458075|458084|458086|458091|458097|466988|466991|466997|466999|467001|467007|467008|467015|467017|467023|467026|467027|467030|467032|467034|467036|467037|467039|467040|467045|467048|467049|467054|467142|467145|467928|467932|467935|467937|467938|467943|467945|467948|467951|467953|467957|467959|467961|467962|467965|467966|468188|468189|468196|468197|468206|468209|468211|468219|468221|468224|468229|468237|468238|468242|468386|468388|468394|468395|468403|468404|468411|468419|468422|468424|468426|468430|468432|468435|468438|468441|468451|468454|468461|468463|468469|468470|468471|468476|472258|480512|482137|482140|488774|489343|489950|490876|490881|492431|495362|495846|502561|502562|506041|506226|506513|511732|514720|514721|522310|522932|522933|522934|523111|523111|523112|523117|523119|523125|523128|523147|523149|523153|523379|523382|523479|523480|523483|523484|523488|523493|523495|523498|530489|530490|530491|531238|531242|531243|531244|531250|531251|531253|531254|531258|531259|531261|531402|531409|531411|531412|531414|531418|531485|531493|531507|531517|531520|531523|531524|531526|531530|531726|531729|531730|531733|531734|531736|531743|531745|531747|531748|536944|537820|537822|538240|538242|538243|552439|552469|552470|561817|561825|561827|561831|561832|561836|562266|562267|562274|562275|562282|562292|562304|563888|564501|564509|564520|564522|564524|567221|567227|567236|567247|567250|567251|567262|567269|569252|569262|569263|569267|569277|569278|569279|569285|569286|569297|569308|569309|569311|571262|571263|571264|571268|571279|571284|571286|571292|571294|571296|571297|571631|571634|571642|571643|571644|571647|571649|571650|571651|571663|571664|571672|571678|571684|571692|571701|574515|574516|574517|574518|574519|574520|574521|574522|574523|574524|574526|574528|574530|574532|577651|586605|590457|609678|612446|614678|623347|623348|624865|636453|636454|636455|636456|636457|636458|636459|636460|636461|636462|636463|636464|636465|636466|636467|636468|636469|636470|636471|636472|646185|646186|646187|646188|646189|646190|646191|646192|646193|646194|646195|646196|646197|646198|646199|646200|646201|646202|646203|646204|646205|646206|646207|646208|646209|646210|646211|646212|646213|646214|646215|646216|646217|646218|646219|646220|646221|646222|651710|651711|651732|651774|652817|652818|652822|652986|652989|652991|652993|652996|652997|652999|653292|653295|653296|655813|672350|688794|690179|694121|694122|695373|695759|700294|700295|700298|700299|700300|704212|704215|704217|715541|715543|722744|722746|730524|744381|750851|766477|766480|775200|778266|779252|782955|782959|788160|788167|789086|789087|791787|791788|791789|791790|791791|791792|791793|792675|798718|804851|819925|821106|821107|821108|833946|833947|833948|833949|833950|833951|833952|833953|833954|833955|833956|833957|833958|833959|833960|833961|833962|833963|833964|833965|833966|833967|833968|833969|833970|833971|833972|833973|833974|833975|833976|833977|833978|833979|833980|845609|845610|845611|845612|845613|845614|845615|845616|845617|845618|845619|845620|845621|845622|845623|845624|845625|845626|845627|845628|845629|845630|845631|845632|845633|845634|845635|845636|845637|845638|845639|845640|845641|845642|845643|845644|851165|851167|851731|851733|851735|851737|852221|852223|852226|852394|852762|852882|852883|852885|852889|852891|858311|858312|858313|877936|906202|924935|924936|924937|924938|924939|924940|924941|924942|924943|924944|924945|924946|924947|924948|924949|924950|924951|928369|928370|928371|928372|928373|928374|928375|928376|928377|928378|928379|928380|928381|928382|928383|928384|934034|934035|934036|934037|934038|934039|934040|934041|934042|934043|934044|938024|938025|938026|938027|938028|938029|938030|938031|938032|938033|938034|940884|940885|941185|941186|945795|945796|945797|945798|945799|945800|945801|945802|950027|950028|950029|950030|950031|950032|950033|950034|950035|950036|950037|950038|950039|950040|950041|950042|950043|955255|955256|955257|955258|955259|955260|955261|958187|958188|958189|958190|958191|958192|960224|960225|960226|960227|961335|964485|964486|964690|971084", + "text": "Osteogenesis imperfecta type I" + }, + { + "baseId": "32274|32282|32283|32292|32302|32303|32307|32317|32325|32327|32334|32351|32370|32380|32382|32384|32385|213575|213576|213576|271557|361022|413951|413953|413955|413957|413960|413963|413967|413971|413972|413973|413974|413978|413995|413998|414012|414016|424604|457703|624865|626173|636458|798592|861042|861043|919124|919125|919126|919127|919741|919742|919743|919744|919745|920246|920375|920376|920377|961029|964295|970242", + "text": "Osteogenesis imperfecta with normal sclerae, dominant form" + }, + { + "baseId": "32275|32286|32292|32298|32300|32304|32306|32311|32321|32322|32327|32335|32342|32351|32363|32369|32370|32371|32375|32388|213575|213576|413954|413955|413955|413956|413959|413962|413964|413965|413966|413983|413984|413991|413999|414000|414002|414031|414034|424568|511010|552120|625805|626173|636458|672333|672334|672335|672336|672337|672338|672339|672340|672341|672342|672343|672344|672345|672346|672347|672348|672349|672350|672351|970242", + "text": "Osteogenesis imperfecta type III" + }, + { + "baseId": "32276", + "text": "Osteogenesis imperfecta, mild" + }, + { + "baseId": "32277|32278|32279|32280|32281|32284|32285|32287|32288|32291|32293|32296|32301|32320|32323|32326|32328|32329|32330|32331|32332|32333|32336|32337|32338|32339|32340|32341|32345|32347|32349|32352|32353|32357|32358|32360|32362|32364|32365|32366|32368|32377|32383|49905|49906|213575|213576|213576|266139|353896|360337|417441|457721|488774|590285|636458|677285|677286|800833|971583|980381", + "text": "Osteogenesis imperfecta, recessive perinatal lethal" + }, + { + "baseId": "32289|32351|32355|32376|44560|44561|44562|44563|44564|44565|44566|44567|44568|44569|44570|44571|44572|44573|44574|44575|44576|44577|44578|44579|44580|44581|44582|44583|44584|44585|44586|44587|44588|44589|44590|44591|44592|44593|44594|44595|44596|44597|44599|44600|44601|44602|44603|44604|44605|44606|44607|44608|44609|44610|44611|44612|44613|44614|44615|44616|44617|44618|44619|44620|44621|44622|44623|44624|192612|193168|193366|193367|193768|194657|195079|213576|215539|227394|237223|252978|252979|252980|252981|252982|252983|252984|256273|256274|256275|256278|260184|260939|265335|265559|266015|266139|267364|267843|268771|269223|269476|270586|271303|272375|273413|303611|303618|303621|303624|303625|303626|303634|303636|303638|303639|303647|303648|303656|307066|307071|307080|307081|307082|307099|307100|307102|307104|311941|311959|311968|311978|311983|311985|311986|311987|311988|311991|311998|312000|312001|312006|312007|312009|312011|312019|312022|312024|312025|312030|312033|329125|329132|329142|329144|329145|329146|329147|329148|329152|339233|339234|339244|339247|339253|339256|339258|339269|339270|339272|339284|339288|339290|339292|339298|345133|345136|345137|345141|345144|345151|345154|345156|345157|345158|345159|345162|345163|345166|345170|346514|346519|346527|346528|346530|346547|346548|346549|346556|346557|346561|346565|346566|359685|369301|369302|370028|376210|376306|378450|407275|410074|413980|425770|437662|441977|441985|457591|457725|457734|468197|468432|468451|468461|486181|487364|487944|495845|506041|506210|506546|506952|523379|531261|538242|550207|574522|577015|581944|581945|581946|581947|581948|581949|581950|615942|615943|623126|623163|623348|626173|652993|679004|679005|679006|679007|679008|679009|679010|679011|679012|679013|679014|679015|679016|679017|679018|679019|679020|679021|679022|679023|679024|679941|692332|694122|694124|695759|704212|704214|715541|722743|789166|845630|858273|858274|858275|858276|858279|858280|858281|858282|858283|858284|858285|858286|858287|858289|858290|858292|858293|858294|877916|877917|877918|877919|877920|877921|877922|877923|877924|877925|877926|877927|877928|877929|877930|877931|877932|877933|877934|877935|877936|877937|877938|877939|877940|877941|877942|877943|877944|877945|880547|880548|880549|880550|898519|898520|898521|898522|898523|898524|898525|898526|898527|898528|898529|898530|898531|898532|898533|898534|898535|898536|898537|898538|898539|898540|898541|898542|898543|898544|898545|898546|898547|898548|898549|898550|898551|898552|898553|898554|898555|900419|900420", + "text": "Osteogenesis imperfecta" + }, + { + "baseId": "32294", + "text": "Osteogenesis imperfecta, atypical, with joint hypermobility" + }, + { + "baseId": "32297|45143|45144|612445", + "text": "Postmenopausal osteoporosis" + }, + { + "baseId": "32308|32310|32316|413949|976554", + "text": "COMBINED OSTEOGENESIS IMPERFECTA AND EHLERS-DANLOS SYNDROME 2" + }, + { + "baseId": "32312|32313|32314|32315|32318|32319|44598|266139|636458", + "text": "Ehlers-Danlos syndrome, cardiac valvular type" + }, + { + "baseId": "32350|32378|32389|33224|44561|44568|44579|44582|44586|44594|192612|193168|193768|194657|195079|215539|227394|237223|256273|256274|256275|256278|265559|266015|266139|267843|268771|269476|270586|271303|273413|303612|303655|307094|329125|329132|329142|329144|329145|329146|329147|329148|329152|339233|339234|339244|339247|339253|339256|339258|339269|339270|339272|339284|339288|339290|339292|339298|345133|345136|345137|345141|345144|345151|345154|345156|345157|345158|345159|345162|345163|345166|345170|346514|346519|346527|346528|346530|346547|346548|346549|346556|346557|346561|346565|346566|376210|376306|378450|410074|441977|441985|468197|468451|506041|506210|506546|506952|531261|538242|574522|623348|694122|694124|695759|704212|704214|715541|845630|877916|877917|877918|877919|877920|877921|877922|877923|877924|877925|877926|877927|877928|877929|877930|877931|877932|877933|877934|877935|877936|877937|877938|877939|877940|877941|877942|877943|877944|877945|880547|880548|880549|880550|961335|961515", + "text": "Ehlers-Danlos syndrome, procollagen proteinase deficient" + }, + { + "baseId": "32354", + "text": "Osteogenesis imperfecta, type III/IV" + }, + { + "baseId": "32356", + "text": "OSTEOGENESIS IMPERFECTA, TYPE IIC" + }, + { + "baseId": "32359|32373", + "text": "Osteogenesis imperfecta type 1, mild" + }, + { + "baseId": "32365|263418", + "text": "27 conditions" + }, + { + "baseId": "32372|32379|32381", + "text": "Bone mineral density variation quantitative trait locus" + }, + { + "baseId": "32374", + "text": "Osteogenesis imperfecta type 2, thin-bone" + }, + { + "baseId": "32382", + "text": "Fragile skin" + }, + { + "baseId": "32382|263274|264319|360939|360978|513917|513990|514027|514084", + "text": "Joint hypermobility" + }, + { + "baseId": "32382", + "text": "Bruising susceptibility" + }, + { + "baseId": "32386|44561|44568|44579|44582|44586|44594|48035|192612|193168|193768|194657|195079|215539|227394|237223|256273|256274|256275|256278|265559|266015|267843|268771|269476|270586|271303|273413|311991|329115|329116|329117|329118|329119|329120|329121|329125|329132|329133|329136|329137|329142|329144|329145|329146|329147|329148|329152|339233|339234|339236|339242|339244|339247|339248|339253|339256|339258|339269|339270|339272|339284|339288|339290|339292|339298|345133|345136|345137|345141|345143|345144|345151|345153|345154|345156|345157|345158|345159|345162|345163|345166|345170|346514|346516|346519|346527|346528|346530|346533|346537|346539|346540|346545|346547|346548|346549|346556|346557|346561|346565|346566|346569|376210|376306|378450|410074|414011|441977|441985|468197|468451|506041|506210|506546|506952|531261|538242|623348|694122|694124|695759|704212|704214|715541|845630|877916|877917|877918|877919|877920|877921|877922|877923|877924|877925|877926|877927|877928|877929|877930|877931|877932|877933|877934|877935|877936|877937|877938|877939|877940|877941|877942|877943|877944|877945|880547|880548|880549|880550|961335|971083", + "text": "Infantile cortical hyperostosis" + }, + { + "baseId": "32387|360337|410071|414026", + "text": "COMBINED OSTEOGENESIS IMPERFECTA AND EHLERS-DANLOS SYNDROME 1" + }, + { + "baseId": "32390|32393|32400|32405|32420|32424|193539|204429|267835|268588|270886|270894|310812|310813|310820|310829|310830|310831|310832|310842|310844|310848|310850|310852|310858|310859|310862|310864|310866|310868|310870|310878|310884|310887|310890|310892|310895|310899|310907|310918|310919|310928|310929|310930|310931|316068|316069|316072|316073|316074|316082|316090|316094|316099|316103|316111|316112|316114|316120|316133|316144|316148|316149|316156|316162|316169|316174|316175|316176|316177|316180|316181|316189|316190|316200|316201|316204|316205|316210|316220|316221|316223|316226|322169|322170|322172|322183|322185|322190|322191|322192|322196|322197|322199|322200|322212|322213|322218|322231|322232|322233|322236|322239|322240|322241|322242|322245|322246|322254|322260|322261|322266|322267|322274|322275|322276|322780|322783|322784|322785|322786|322789|322790|322801|322802|322803|322804|322806|322807|322808|322815|322816|322822|322831|322832|322845|322849|322876|322879|322880|322882|322887|322888|322890|322891|322892|322893|322894|322896|322900|338924|338933|348502|348504|348506|348515|352075|352090|352769|445013|537893|588569|615941|963164|966624", + "text": "Spondyloepiphyseal dysplasia congenita" + }, + { + "baseId": "32391|32396|32398", + "text": "Hypochondrogenesis" + }, + { + "baseId": "32392", + "text": "Namaqualand hip dysplasia" + }, + { + "baseId": "32394|32397|32399|32404|32407|32412|32413|32421|32422|32423|32434|32437|99689|99690|99691|99692|177632|192310|194050|194592|194664|195109|195632|247081|254527|254529|254530|254531|254533|254534|254535|254540|254542|254543|254545|254548|254552|254554|254555|254556|254558|254559|254562|254563|254566|267804|267844|268275|269225|270512|271988|317256|317257|317259|317260|317264|317265|317266|317270|317272|317277|317278|324975|324976|324977|324987|324995|325000|325001|325004|325007|325014|325016|325017|325018|325020|325021|325022|325023|331093|331121|331130|331131|331132|331136|331137|331156|331162|331166|331169|331171|332678|332679|332683|332685|332690|332693|373063|390689|408664|421923|445007|503887|504176|504204|504206|504216|504453|504905|511011|537881|537882|537883|537884|537886|537887|537890|537892|537894|537897|537899|584158|585420|587799|589804|612192|623309|677295|679785|769129|791237|791238|791239|791240|791241|791242|791243|798655|839947|869891|869892|869893|869894|869895|869896|869897|869898|869899|869900|869901|869902|869903|869904|869905|869906|872244|872245|872246|872247|872248|872249|956878|976030", + "text": "Stickler syndrome type 1" + }, + { + "baseId": "32401|32408|32409|32414|32415|433418|590305|612355", + "text": "Kniest dysplasia" + }, + { + "baseId": "32402|32406|32416|32417|32436|329273|353209|405614|411544|411545|411546|411547|411548|411549|443163|445013|540474|540475|540476|790195", + "text": "Spondylometaphyseal dysplasia" + }, + { + "baseId": "32403|32423|32425|32438|32439|32440|32441|624858", + "text": "Stickler syndrome, type I, nonsyndromic ocular" + }, + { + "baseId": "32405|32419|32424|32428|32430|32431|192903|818297", + "text": "Spondyloperipheral dysplasia-short ulna syndrome" + }, + { + "baseId": "32407", + "text": "Czech dysplasia, metatarsal type" + }, + { + "baseId": "32410|32411|32422|32427|32442|360944|360945|432309|433421|481353|621380|621823|672024|919435|919436|919437|920316|920317", + "text": "Achondrogenesis type II" + }, + { + "baseId": "32418", + "text": "Epiphyseal dysplasia, multiple, with myopia and conductive deafness" + }, + { + "baseId": "32422|861640", + "text": "COL2A1-related disorders" + }, + { + "baseId": "32426", + "text": "Vitreoretinopathy with phalangeal epiphyseal dysplasia" + }, + { + "baseId": "32428|32429|152979", + "text": "Platyspondylic dysplasia, Torrance type" + }, + { + "baseId": "32432|32433|38591", + "text": "Avascular necrosis of the head of femur" + }, + { + "baseId": "32432|47638|263185", + "text": "Coxa plana" + }, + { + "baseId": "32434|32435", + "text": "Rhegmatogenous retinal detachment, autosomal dominant" + }, + { + "baseId": "32443|32444|32445|32446|32447|32448|32522|32523|32523|32524|32527|32529|32531|189115|190092|215249|223747|223748|227237|227238|250592|250601|250602|250603|250620|250623|250625|250629|250632|250635|250636|250639|260782|260782|260783|272152|285700|285718|288037|288064|288464|354160|357246|357247|360796|384400|384400|384476|405642|417659|432282|432283|432284|432285|432286|434902|438587|440658|440665|440666|440667|440669|440670|440679|440682|440687|443176|443177|443180|443181|486961|491213|491213|492678|513025|513026|513039|513039|513923|541801|541802|541804|541808|541809|541810|541811|541812|541813|541819|541821|541826|541837|541839|541842|541843|541845|541846|541850|541858|541859|541860|541861|541864|541865|541867|541869|541870|541872|541878|541880|541881|541882|541884|541886|541889|541891|541893|541895|541897|541898|541901|541902|541903|541904|541906|541907|541908|541909|541911|541913|541914|541916|541918|541919|541920|541921|541922|541923|541925|541928|541929|541930|541931|541932|541933|541934|541935|541936|541938|541939|541944|541946|541948|541951|541953|541954|541956|541957|541962|541964|541966|541967|541968|541970|541972|541974|541975|541978|541981|541982|541983|541984|541985|541987|541988|541990|541991|541992|541994|541996|541997|541999|542000|542001|542002|542003|542004|542005|542007|542008|542009|542010|542010|542011|542014|542016|542017|542018|542019|542020|542021|542022|542023|542025|542028|542030|542032|542034|542036|542038|542039|542040|542043|542046|542051|542052|542054|542056|542058|542060|542062|542064|542065|542068|542071|542073|542079|542083|542094|542095|542099|542103|542106|542111|542121|542123|542125|542126|542131|542133|542135|542136|542140|542142|542157|542159|542161|542164|542166|542168|542170|542172|542177|542180|553637|576666|590250|590262|609307|611565|612080|612081|622521|622522|623263|623264|625789|790203|790204|794007|798499|798500|798501|798502|798503|798504|798505|798506|800391|801546|801556|801557|804846|825808|858522|858523|858527|858530|858540|904076|920534|922592|962671|962672|962673|962674|962675|962676|962677|962678|962679|962680|962681|962682|962683|962685|962687|962691|962825|962826|962827|962828|962829|963124|964811|970736|970737|971743|971744|971745|971746|971747|971748|971749|971750|971751|971752|971753|971754|971755|971756|971757|971758|971759|971760|971761|971762|971763|971764|971765|971766|971767|971768|971769|971770|971771|971772|971773|971774|971775|971776|971777|971778|971779|971780|971781|971782|971783|971784|971785|971786|980308|980309|980311|980560", + "text": "Alport syndrome, autosomal recessive" + }, + { + "baseId": "32445|32446|32449|32450|32523|32528|32529|223746|223749|223751|223752|223753|227238|250602|260782|354160|384400|440679|443177|491213|492678|513039|513040|541826|541837|541843|542010|553512|615935|622856|625789|825808|858524|858525|858526|858528|858529|858531|858539|918744|920171|952958|960993|960994|962684|963348|963349|963350|963351|963352|963353|964810|974566|980312", + "text": "Benign familial hematuria" + }, + { + "baseId": "32446|32523|32528|32530|32531|223748|226605|226606|226607|227238|250602|250620|250629|250632|250635|250636|250639|260782|260782|260783|260784|272152|285064|285080|285088|285089|285094|285700|285728|288002|288050|288064|288414|288415|288421|288464|354161|354162|354163|354164|354165|384400|384473|384475|384476|405643|432287|432288|432289|440679|440681|443177|443181|491213|492678|492678|513027|513028|513029|513030|513031|513032|513033|513034|513035|513037|513038|513039|513039|513040|513040|513041|513042|513043|541801|541808|541826|541850|541860|541884|541903|541913|541999|542001|542004|542010|542014|542038|542039|542043|542065|542099|553611|586060|590240|590241|590242|590243|590244|590245|590246|590247|590248|590249|590250|590251|590252|590254|590255|590256|590257|590258|590259|590260|590261|590262|590263|590264|590265|590266|590267|590268|590452|614513|623181|623253|623254|623255|623256|623257|623258|623259|623260|623261|623262|623263|623264|623265|623266|623267|623268|623269|654252|654260|654261|655430|672019|679514|733239|763019|763022|781219|790204|798504|800832|804846|818183|818184|818185|818186|818187|818188|818189|818190|818191|818192|818193|818194|818195|818196|818197|818198|818199|818200|818201|818202|818203|818204|818205|818206|818207|818208|818209|818210|818211|818212|825808|858524|858525|858526|858528|858529|858531|858539|918745|918746|918747|962686|962688|962689|962690|962692|962827|963354|980307|980310|980313|980314", + "text": "Alport syndrome 3, autosomal dominant" + }, + { + "baseId": "32451|32452|32453|32454|32455|32456|32460|32461|136540|171276|171277|171696|171697|171698|171699|190381|192972|193029|193111|193488|193489|194108|194680|194681|194704|195633|205773|254794|254795|254797|254798|254799|254800|254801|254802|254803|254805|254806|254808|254809|254810|254811|254813|254814|273865|318892|318893|318894|318895|318899|318906|318910|318911|318913|318916|318920|318921|318923|327278|327279|327289|327290|327292|327293|327294|327295|327297|327301|327304|327306|327307|327319|327322|327323|327327|327333|327334|327335|327336|333425|333434|333441|333446|333448|333454|333455|333471|333474|333481|333482|333483|333493|333499|333503|333505|333510|333515|333526|333527|333536|333537|333538|335132|335137|335147|335149|335152|335163|335173|335180|335181|335182|335183|335186|335193|335196|335197|335211|335212|335213|335223|335226|335229|335231|335235|335237|373299|408786|429479|434400|441572|552166|576156|577296|587357|693326|725365|725369|725370|738938|760068|769398|769400|784524|798665|815998|855113|870685|870686|870687|870688|870689|870690|870691|870692|870693|870694|870695|870696|870697|870698|870699|870700|870701|870702|870703|870704|870705|870706|870707|870708|870709|870710|870711|870712|870713|870714|870715|870716|872302|872303|872304|872305|919479|919480|919481|919482|919483|964856|965288|966163|970527|970543|971517|980947", + "text": "Brain small vessel disease 1 with or without ocular anomalies" + }, + { + "baseId": "32457|32458|32459|33501|33502|33503|48462|171696|190381|192972|193029|193111|193488|193489|194108|194680|194681|194704|195633|254794|254795|254797|254798|254799|254800|254801|254802|254803|254805|254806|254808|254809|254810|254811|254812|254813|254814|318892|318893|318894|318895|318899|318906|318910|318911|318913|318916|318920|318921|318923|327277|327278|327279|327289|327290|327292|327293|327294|327295|327297|327301|327304|327305|327306|327307|327319|327322|327323|327327|327333|327334|327335|327336|327337|327338|333425|333427|333434|333441|333446|333448|333454|333455|333471|333474|333481|333482|333483|333493|333496|333499|333503|333505|333510|333515|333526|333527|333536|333537|333538|333543|333546|333555|335132|335137|335147|335149|335152|335163|335173|335180|335181|335182|335183|335186|335193|335196|335197|335211|335212|335213|335223|335226|335229|335230|335231|335235|335237|335248|353263|373299|408786|441572|513327|576156|577296|587357|615944|693326|725365|725369|725370|738938|760068|769398|769400|784524|791294|798666|801890|870685|870686|870687|870688|870689|870690|870691|870692|870693|870694|870695|870696|870697|870698|870699|870700|870701|870702|870703|870704|870705|870706|870707|870708|870709|870710|870711|870712|870713|870714|870715|870716|872302|872303|872304|872305|962732|962733|962734|962735|963364", + "text": "Angiopathy, hereditary, with nephropathy, aneurysms, and muscle cramps" + }, + { + "baseId": "32460|47565|139371|190381|193111|193488|193489|194680|194681|194704|195633|205773|254794|254795|254797|254798|254800|254801|254802|254803|254806|254808|254809|254810|254811|254812|254813|318892|318913|318916|327277|327279|327293|327294|327297|327304|327305|327306|327307|327322|327323|327327|327333|327335|327336|327337|327338|333425|333427|333441|333446|333448|333454|333455|333474|333481|333493|333496|333499|333503|333505|333526|333527|333543|333546|333555|335137|335147|335182|335183|335186|335193|335211|335223|335226|335229|335230|335231|335237|335248|353263|361208|576156|624862|693325|861060|977263", + "text": "Brain small vessel disease with hemorrhage" + }, + { + "baseId": "32462|32464|32465|32466|32467|32474|32482|32484|32485|32486|32488|32495|32497|32498|32499|32501|38590|166069|178859|178860|209348|217190|227262|227263|227264|251197|251203|264139|264158|264183|359454|359487|359560|359567|360853|411519|411520|411521|411522|411523|481232|481696|513263|581699|611590|612128|612188|612265|622742|677289|790400|790401|792701|792739|794091|970171|970200|970201", + "text": "Recessive dystrophic epidermolysis bullosa" + }, + { + "baseId": "32463|32477|32486|32487|32488|32489|32492|32496|32502|227262|227263|227264|295467|361178|720511|720516|720518|734129|763958|763968|763971|763975|774826|774881|781715|792739", + "text": "Generalized dominant dystrophic epidermolysis bullosa" + }, + { + "baseId": "32468|32477|792701|794091", + "text": "Pretibial epidermolysis bullosa" + }, + { + "baseId": "32469|166069", + "text": "Dominant dystrophic epidermolysis bullosa with absence of skin" + }, + { + "baseId": "32470|32471|32472|32473", + "text": "Epidermolysis bullosa dystrophica, autosomal recessive, localisata variant" + }, + { + "baseId": "32470|32472|32479|32480|32493", + "text": "Epidermolysis bullosa pruriginosa, autosomal recessive" + }, + { + "baseId": "32475|32476|32500|38589|359584", + "text": "Transient bullous dermolysis of the newborn" + }, + { + "baseId": "32475|32482|32486|166069", + "text": "Nail disorder, nonsyndromic congenital, 8" + }, + { + "baseId": "32475|32478|32481|32494", + "text": "Epidermolysis bullosa pruriginosa, autosomal dominant" + }, + { + "baseId": "32484|32490|32491", + "text": "Epidermolysis bullosa, pretibial, autosomal recessive" + }, + { + "baseId": "32493|32501|32502|38587|38588|38590|86021|209348|227264|259767|259771|291947|295198|295238|295241|295310|295332|295334|295482|295565|359480|359486|359487|359566|359567|359584|421449|425565|443474|443477|481696|481697|494081|495459|651076|698155|708910|708911|708912|708914|708916|720512|720517|734131|734132|734133|734135|734137|734138|734139|734140|744071|748331|748333|748338|748341|748347|748349|748354|759312|759322|759329|759440|763957|763959|763963|763966|763967|763974|763976|763977|763978|763980|763987|763990|763994|774836|774838|774842|778985|779152|781697|781701|781721|787326|794091|795445|889266|889267|889269|889271|889279|889289|889297|889323|889326|903527|977844|977845|977846|977847|977848|977849|977850|977851|977852|977853|977854|977855|977856|977857|977858|977859|977860|977861|977862|977863|977864|977865|977866|977867|977868|977869|977870|977871|977872|977873|977874|977875|977876|977877|977878|977879|977880|977881|977882|977883|977884|977885|977886|977887|977888|977889|977890|977891|977892|977893|977894|977895|977896|977897|977898|977899|977900|977901|977902|977903|977904|977905|977906|977907|977908|977909|977910|977911|977912|977913|977914|977915|977916|977917|977918|977919|977920|977921|977922|977923|977924|977925|977926|977927|977928|977929|977930|977931|977932|977933|977934|977935|977936|977937|977938|977939|977940|977941|977942|977943|977944|977945|977946|977947|977948|977949|977950|977951|977952|977953|977954|977955|977956|977957|977958|977959|977960|977961|977962|977963|977964|977965|977966|977967|977968|977969|977970|977971|977972|977973|977974", + "text": "Epidermolysis bullosa dystrophica inversa, autosomal recessive" + }, + { + "baseId": "32502|360805|360853|513896|513947", + "text": "Abnormal blistering of the skin" + }, + { + "baseId": "32502|38590|251195|360852|360853|792701|794091|918837|918838|918839|918841|920196", + "text": "Epidermolysis bullosa pruriginosa" + }, + { + "baseId": "32503|32504|32505|32506|32507|32508|32509|32510|32511|32512|32513|32514|32515|32516|32517|32518|32519|32520|32521|38586|192239|252058|252059|252060|252061|265673|298776|298782|298783|298784|298786|298787|298795|298796|298811|301232|301233|301234|301240|301241|301244|301245|301246|301260|301263|305602|305603|305606|305611|305619|305630|305635|305636|305639|305640|305645|305655|305707|305710|305712|305718|305719|305720|305722|305724|305730|305731|305771|537498|538993|735369|735370|749764|788790|790575|831458|895199|895200|895201|895202|895203|895204|895205|895206|895207|895208|895209|895210|895211|895212|895213|895214|895215|895216|895217|895218|895219|895220|895221|895222|895223|918993|964266", + "text": "Metaphyseal chondrodysplasia, Schmid type" + }, + { + "baseId": "32532", + "text": "CILIARY NEUROTROPHIC FACTOR POLYMORPHISM" + }, + { + "baseId": "32533|34257|34258|34259|34260|50315|50316|50317|176969|177101|177232|178143|178144|178145|178146|195331|195671|195955|195956|195957|195958|195959|195960|195961|195962|195963|216061|216062|216063|252020|252021|252022|252023|252024|252025|252026|252027|252028|252029|252030|252031|252032|252033|252034|252035|252036|252037|252038|298213|298214|298218|298219|298229|298230|298232|298238|298239|298243|298244|298249|298250|298251|298252|298256|298258|298265|298266|298274|298275|298279|298284|298285|298290|298291|298294|298298|298299|298302|298303|298304|298305|298306|298310|300523|300528|300534|300536|300537|300546|300553|300555|300557|300559|300560|300564|300565|300570|300571|300584|300585|300587|300588|300596|300597|300618|300619|300620|300622|300623|300624|304783|304785|304787|304788|304790|304792|304793|304794|304796|304797|304798|304799|304800|304801|304808|304823|304824|304828|304838|304839|304844|304848|304858|304859|304861|304864|304865|304875|304881|304882|304885|304886|304893|304899|304902|304905|305051|305066|305070|305071|305072|305073|305077|305078|305083|305089|305094|305107|305109|305110|305115|305116|305117|305119|305120|305122|305123|489874|735244|801381|831182|831183|831184|831214|831225|831229|894774|894775|894776|894777|894778|894779|894780|894781|894782|894783|894784|894785|894786|894787|894788|894789|894790|894791|894792|894793|894794|894795|894796|894797|894798|894799|894800|894801|894802|894803|894804|894805|894806|894807|894808|894809|894810|894811|894812|894813|894814|894815|894816|894817|894818|894819|894820|894821|894822|894823|894824|894825|894826|894827|894828|894829|894830|894831|894832|894833|894834|896140|896141|896142|918981|918982", + "text": "Wagner syndrome" + }, + { + "baseId": "32534|32535|49454|49455|49456|49457|49458|140473|167983|167985|201029|201030|201034|404938|421172", + "text": "Epilepsy, nocturnal frontal lobe, type 3" + }, + { + "baseId": "32535|32537|32539|47403|49451|49459|83715|92655|99333|104193|104195|104197|104198|104199|104204|104205|104207|104208|104210|104211|104212|104213|104214|104215|104216|104217|104218|104219|104222|104227|104231|104233|134185|134186|134190|134191|134192|134193|134194|134197|140453|140456|140459|140460|140461|140462|140463|140464|140465|140468|140469|140470|140472|140473|140475|140476|140477|167982|167983|167985|177603|181175|189154|194850|194851|194853|194856|201024|201027|201029|201030|201031|201033|201039|201043|201044|202220|202222|202224|202228|202235|202240|202241|202243|202249|202252|202262|202265|202266|202268|202269|202271|203628|203631|203633|203634|203635|203636|203637|203638|203639|203640|203641|203642|203643|203645|203646|203647|203648|203649|203650|203651|203652|203653|203654|203655|203656|203658|203662|203664|203665|203670|203676|203677|203679|203683|203684|243587|249406|268660|271758|273514|275226|305036|305042|308761|359225|362228|363988|364441|364486|364505|364530|369465|369468|369896|369917|369918|369926|371793|371816|377105|377111|377129|377133|378148|378150|378158|378342|378345|379735|379736|379740|379742|390800|390805|390811|390814|390825|396147|396508|396517|396537|403671|403673|403678|403682|403683|403685|403686|404929|404930|404933|404937|407361|407362|407363|407369|410790|410791|410792|410793|410794|410795|410796|410799|410803|410804|410805|410811|421171|421172|426349|442306|442307|446280|447140|447142|447148|447228|447299|447302|457723|457736|458319|458320|458366|458369|458372|458373|458667|458676|458684|458686|458692|469429|469431|469434|470474|470477|470478|470968|470970|470974|470977|471353|471461|498051|502011|507276|507394|507395|507843|507847|508251|508253|513195|515095|515108|515109|515119|515126|515145|515226|515235|523421|523425|523428|523430|523732|523733|523987|523989|523993|523994|523995|523996|523997|533590|533595|533606|533653|533656|533659|533662|533663|533664|533666|533667|533669|533680|534172|534176|534193|536335|537008|556602|556604|556941|556943|556945|556947|556949|556951|558124|558126|558128|558130|562279|562281|562797|562808|564985|564987|564988|567749|567752|571322|571327|571332|571333|571335|571336|572952|572955|572957|573454|573583|573585|573586|573592|573594|573596|575122|575123|575124|575126|575127|575128|575129|578781|580593|580599|580658|614319|626866|626867|626868|626869|626870|626871|626872|637042|637043|637044|637045|637046|637047|637048|637049|637050|637051|637052|637053|637054|637055|637056|637057|637058|637059|637060|648782|648783|648784|648785|648786|648787|648788|648789|648790|648791|648792|648793|648794|648795|655040|655861|684000|684891|684892|685567|685568|687263|687264|689215|689217|689630|690234|694578|694579|700549|728798|751085|751086|761226|761231|761232|773194|776662|780339|783080|783082|786424|788826|821306|821307|821310|821312|821337|821338|821831|822173|822761|822762|822763|822764|822765|822766|822767|834567|834568|834569|834570|834571|834572|834573|834574|834575|834576|834577|834578|834579|834580|834581|834582|834583|834584|834585|834586|834587|848487|848488|848489|848490|848491|848492|848493|848494|848495|848496|848497|848498|848499|848500|848501|848502|848503|848504|848505|848506|848507|851195|851684|861537|921651|921652|921653|921654|921655|921656|921657|921658|921659|925147|925148|925149|925150|925151|929227|929228|929229|929230|929231|929232|929233|929234|929235|929236|930048|930049|930050|930051|930052|930053|930054|934236|934237|934238|934239|934240|939013|939014|939015|939016|939017|939018|939019|939772|941464|941465|941466|941467|941468|941469|941470|941471|941472|946007|946008|946009|946010|951132|951133|951134|951135|951137|951138|951139|951140|951141|951142|952081|952082|952083|955387|958859|958860|958861|958862|958863|958864|960321|960649", + "text": "Autosomal dominant nocturnal frontal lobe epilepsy" + }, + { + "baseId": "32536|32542", + "text": "Lung cancer susceptibility 2" + }, + { + "baseId": "32536|32542", + "text": "Smoking as a quantitative trait locus 3" + }, + { + "baseId": "32536|32542", + "text": "nicotine response - Toxicity/ADR" + }, + { + "baseId": "32537|32538|32539|49451|49452|49453|99331|99332|99336|99337|104200|104211|104230|134196|203648|203649|203656|203676|203677|203679|203679|410787|446280|446280|507271|622472|973008", + "text": "Epilepsy, nocturnal frontal lobe, type 1" + }, + { + "baseId": "32543|134185|134186|134187|134188|134189|134190|134191|140451|140452|140453|140454|140456|140457|202222|202233|202234|202235|202240|202262|202264|202266|202268|266386|273514|305017|305018|305024|305025|305026|305027|305031|305032|305035|305036|305040|305042|305044|305046|308734|308736|308738|308754|308756|308757|308758|308761|308777|308778|308780|313911|313912|313924|313926|313929|313930|313942|313945|313948|313951|313954|313955|313959|313961|313964|313971|313972|313977|313978|313982|313991|313997|313998|314001|314010|314020|314027|513196|523987|579376|614319|615938|637044|788826|899386|899387|899388|899389|899390|899391|899392|899393|899394|899395|899396|899397|899398|899399|899400|899401|899402|899403|899404|899405|899406|899407|899408|900475|919149|919150", + "text": "Epilepsy, nocturnal frontal lobe, type 4" + }, + { + "baseId": "32555|32556|32557|32558|32559|32560|32561|32562|38579|265180|323385|323386|323388|333049|333050|333056|339885|339886|339890|339897|339898|341298|341302|360206|390702|429719|620529|714598|739775|739776|754667|760362|874161|874162|874163|874164|874165|874166|874167|874168|876572|918401", + "text": "Adrenal insufficiency, congenital, with 46,XY sex reversal, partial or complete" + }, + { + "baseId": "32563|32564|32566|32567|91067|325921|325925|325927|325928|325937|325938|325942|335539|335540|335542|335543|341992|341996|341999|342001|342003|342006|342008|342010|342014|342015|343500|343502|343503|343506|343508|343510|343511|343517|343522|343526|353344|353345|620556|620557|740272|875584|875585|875586|875587|875588|875589|875590|875591|875592|875593|875594|875595|875596|876686|876687", + "text": "Hyperalphalipoproteinemia 1" + }, + { + "baseId": "32564|32565", + "text": "High density lipoprotein cholesterol level quantitative trait locus 10" + }, + { + "baseId": "32568|32569", + "text": "CHOLECYSTOKININ A RECEPTOR POLYMORPHISM" + }, + { + "baseId": "32570|32570|32571|32572|32572|32573|32574|32574|32576|32577|32578|32578|32579|32580|32580|32581|32581|32582|32583|32584|32584|32585|32586|32588|33889|33892|33893|33897|33898|33899|33901|33902|33904|33904|48726|196430|198629|204362|204363|205752|205752|205753|205753|247017|247017|247018|247018|259852|264231|264308|264312|264314|264346|273241|273242|274204|274204|302027|302032|302034|302035|302037|302038|302041|302048|302056|302060|302068|305219|305220|305224|305232|305233|309984|310026|310053|310054|310060|310061|310062|310078|310079|360888|360888|368970|369251|369518|369526|369529|406988|406990|406991|406992|406993|406994|406996|406997|413762|413762|421623|425736|441037|441039|441040|441042|441044|441046|441048|441049|441050|441051|441054|441054|441056|441058|441060|441061|441063|441064|441065|441066|441067|441071|444074|444076|444077|456426|456427|456431|456431|456434|456438|456741|456745|456746|457009|457013|457447|457450|457453|457464|457465|457468|457470|457473|457474|481778|501956|502245|522350|522357|522358|522359|522367|522380|522620|522622|522627|522629|522637|522639|522719|522720|522722|522726|523080|523082|523082|523084|523094|536725|536725|561385|561387|561389|561391|561583|561584|561588|561590|561594|561610|561612|561613|561614|564144|564146|566054|566511|566513|566518|566521|566522|566523|566529|566544|576947|611675|612281|622377|624118|635806|635807|635808|635809|635810|635811|635812|635813|635814|635815|635816|635817|635818|635819|635820|635821|635822|635823|635824|635825|635826|635827|635828|635829|635830|635831|635832|635833|635834|635835|635836|635837|635838|635839|651643|651668|686977|686978|692168|692169|692170|692171|692172|692173|692174|695353|695354|699908|766138|782810|790706|790707|790707|793199|793200|793207|805525|805526|819833|833232|833233|833234|833235|833236|833237|833238|833239|833240|833241|833242|833243|833244|833245|833246|833247|833248|833249|833250|833251|833252|833253|833254|833255|833256|833257|833258|833259|833260|852070|897580|919085|920238|920239|924719|924720|924721|924722|924723|924724|924725|924726|933723|933724|933725|933726|933727|933728|933729|933730|933731|933732|933733|933734|933735|940067|940068|940069|940872|940873|945492|945493|945494|945495|945496|945497|945498|955075|955076|955077|955078|955079", + "text": "Congenital myotonia, autosomal recessive form" + }, + { + "baseId": "32570|32570|32571|32571|32572|32574|32576|32576|32577|32577|32578|32578|32580|32581|32581|32584|32584|32585|32585|32587|32588|33889|33892|33893|33897|33898|33899|33901|33902|33904|196430|198629|198629|204362|204363|205752|205752|205753|247017|247018|259852|264231|264231|264308|264312|264314|264314|264346|273241|273242|274204|302027|302032|302034|302035|302037|302038|302041|302048|302056|302060|302068|305219|305220|305224|305232|305233|309984|310026|310053|310054|310060|310061|310062|310078|310079|360888|368970|369251|369518|369526|369529|406988|406990|406991|406992|406993|406994|406996|406997|413762|421623|425736|441037|441039|441040|441042|441044|441046|441048|441049|441050|441051|441054|441056|441058|441060|441061|441063|441064|441065|441066|441067|441071|444076|444077|456426|456427|456431|456434|456438|456741|456745|456746|457009|457013|457450|457453|457464|457468|457470|457474|481778|501956|502245|513577|522350|522357|522358|522359|522367|522380|522620|522622|522627|522629|522637|522639|522719|522720|522722|522726|523080|523082|523082|523084|523094|523094|536725|561385|561387|561389|561391|561583|561584|561588|561590|561594|561610|561612|561613|561614|564144|564146|566054|566511|566513|566518|566521|566522|566523|566529|566544|576947|611675|622377|624118|635806|635807|635808|635809|635810|635811|635812|635813|635814|635815|635816|635817|635818|635819|635820|635821|635822|635823|635824|635825|635826|635827|635828|635829|635830|635831|635832|635833|635834|635835|635836|635837|635838|635839|651643|651668|686977|686978|692168|692169|692170|692171|692172|692173|692174|695353|695354|699908|766138|782810|790707|793199|793207|800398|805525|805526|819833|833232|833233|833234|833235|833236|833237|833238|833239|833240|833241|833242|833243|833244|833245|833246|833247|833248|833249|833250|833251|833252|833253|833254|833255|833256|833257|833258|833259|833260|852070|861052|924719|924720|924721|924722|924723|924724|924725|924726|933723|933724|933725|933726|933727|933728|933729|933730|933731|933732|933733|933734|933735|940067|940068|940069|940872|940873|945492|945493|945494|945495|945496|945497|945498|955075|955076|955077|955078|955079|964284|970845", + "text": "Congenital myotonia, autosomal dominant form" + }, + { + "baseId": "32571|32572|32576|32577|32578|32581|32584|32585|33889|33890|33891|33892|33893|33894|33895|33896|33897|33898|33899|33900|33901|33902|33903|33904|196430|204362|204363|205752|247017|247018|259852|264231|264314|273242|302023|302026|302027|302032|302034|302035|302037|302038|302041|302042|302045|302046|302048|302056|302060|302064|302068|305218|305219|305220|305224|305228|305230|305232|305233|305234|305245|309974|309984|309989|309993|310026|310027|310053|310054|310060|310061|310062|310073|310078|310079|310080|310082|310083|361025|368970|369251|441066|444077|456426|501892|501956|522627|564146|576937|620254|620798|635835|766139|897580|897581|897582|897583|897584|897585|897586|897587|897588|897589|897590|897591|897592|900322|900323|900324|900325|900326", + "text": "Myotonia congenita" + }, + { + "baseId": "32577", + "text": "Myotonia levior" + }, + { + "baseId": "32578|205752|360888|361024|361025|361047|513943|513969|513970|624118", + "text": "Myotonia" + }, + { + "baseId": "32584|32660|99159|360798|360803|360810|360873|361054|361094|513930", + "text": "EMG: myopathic abnormalities" + }, + { + "baseId": "32589|32590|32591|32592|32593|32594|32595|38577|38578|226408|226409|226410|226411|282965|282979|283809|283811|283815|283828|283831|283832|283835|285451|285464|285466|285468|285469|285846|285848|285849|285850|285865|550557|719420|732960|732961|762435|881631|881632|881633|881634|881635|881636|881637|881638|881639|881640|881641|881642|881643|881644|881645|881646|881647|881648|881649|881650|882855|882856|882857|918698|974510", + "text": "Duane retraction syndrome 2" + }, + { + "baseId": "32596|134687|134688|134689|141263|141264|141265|141266|141268|141269|141270|185964|210721|213533|221135|238588|283713|283721|283722|284392|284397|284398|286390|286391|286392|286761|286767|286769|286770|366829|552299|619900|883121|883122|883123|883124|883125|883126|883127|883128|883129|883130|887228", + "text": "Hereditary spastic paraplegia 13" + }, + { + "baseId": "32597|581913|781103|804829|964188", + "text": "Leukodystrophy, hypomyelinating, 4" + }, + { + "baseId": "32598|32599|32600|32601|32602|51213|51216|51217|51218|51219|51220|51221|51222|51223|51228|51285|51286|51287|51288|51289|51290|51291|51292|51294|51296|51297|51299|51301|51305|51307|51309|51310|51313|51316|51317|51318|51319|51320|51321|51322|51334|51338|134285|134286|134287|134288|134289|134290|134291|191314|191752|207060|207061|214522|269100|289089|289092|289095|289099|289100|289104|289106|289107|289116|289117|289121|289123|289124|289130|289846|289868|289880|289881|289882|289888|289889|289900|289902|289911|289912|289913|292937|292952|292959|292963|292965|292974|292976|292983|292984|292985|292987|292989|292992|292994|292997|292998|292999|293000|293001|293231|293232|293233|293236|293253|293255|293256|293265|293270|293281|293284|293289|293290|293303|293304|293321|367283|411511|424635|424636|451890|452346|452350|481112|481113|481114|481115|511462|518805|518917|518919|518923|536640|558826|559221|559357|562494|562499|620755|630990|630991|630992|630993|630994|630995|630996|630997|630998|651037|691327|695180|697883|697884|697886|781593|819338|827617|827618|827619|827620|827621|827622|827623|827624|888187|888188|888189|888190|888191|888192|888193|888194|888195|888196|888197|888198|888199|888200|888201|888202|888203|888204|888205|888206|888207|891591|891592|891593|923071|923072|931799|931800|943371|943372|943373|943374|953364", + "text": "Deficiency of ferroxidase" + }, + { + "baseId": "32598|32600|32602", + "text": "Hemosiderosis, systemic, due to aceruloplasminemia" + }, + { + "baseId": "32599", + "text": "Ceruloplasmin belfast" + }, + { + "baseId": "32601", + "text": "Hypoceruloplasminemia" + }, + { + "baseId": "32603", + "text": "Myotonic dystrophy type 2" + }, + { + "baseId": "32604", + "text": "CIP1/WAF1 TUMOR-ASSOCIATED POLYMORPHISM 1" + }, + { + "baseId": "32612|32613|32614|106597|106598|134318|134320|134321|134322|134323|134324|134325|140743|140744|140745|140746|140749|140753|140758|140762|140763|140765|202527|202532|202549|202553|202554|205409|205410|254079|266966|271803|313434|313436|313437|313438|313451|313453|313463|313465|319532|319538|319540|319554|319559|319561|319567|319568|325715|325718|325726|325730|325731|325740|325741|325746|325747|326749|326764|362445|408313|564507|867649|867650|867651|867652|867653|867654|867655|867657|867658|867659|867660|867661|867662|867663|867664|867665|867668|867669|867670", + "text": "Neuronal ceroid lipofuscinosis 10" + }, + { + "baseId": "32620|32621|46196|75719|75964|94472|139116|182970|212758|222763|240729|363111|363112|397224|401519|466629|611995|612007|612028", + "text": "Craniopharyngioma" + }, + { + "baseId": "32622", + "text": "ADRENAL CORTICAL NEOPLASM" + }, + { + "baseId": "32627|32628|363120|363121", + "text": "Disease" + }, + { + "baseId": "32630", + "text": "CATECHOL-O-METHYLTRANSFERASE POLYMORPHISM" + }, + { + "baseId": "32630", + "text": "nicotine response - Efficacy" + }, + { + "baseId": "32630|227763", + "text": "tramadol response - Dosage, Efficacy" + }, + { + "baseId": "32630|227763", + "text": "methadone response - Dosage, Efficacy" + }, + { + "baseId": "32630|227763", + "text": "morphine response - Dosage, Efficacy" + }, + { + "baseId": "32630|227763", + "text": "opioids response - Dosage, Efficacy" + }, + { + "baseId": "32630|227763", + "text": "oxycodone response - Dosage, Efficacy" + }, + { + "baseId": "32630", + "text": "remifentanil response - Dosage, Efficacy" + }, + { + "baseId": "32630", + "text": "sufentanil response - Dosage, Efficacy" + }, + { + "baseId": "32632|32633|32634|32635|32636|32637|88451|192253|194322|195903|195904|207611|207612|253298|253301|253302|253303|306801|306802|306804|306820|310942|310944|310945|310966|310967|316538|316550|316553|316554|316555|316560|316562|316569|316788|316810|316811|316824|316825|316826|316831|316832|316843|316849|369697|428911|428912|428913|744514|751398|901053|901054|901055|901056|901057|901058|901059|901060|901061|901062|901063|901064|901065|901066|901067|901068|901069|901070|901071|901072|901073|901074|901075|901076|901077|901078|901079|901080|901081|901082|903313", + "text": "Oculocutaneous albinism type 3" + }, + { + "baseId": "32638|38575", + "text": "Acatalasemia, japanese type" + }, + { + "baseId": "32639|44479|134140|275130|578474|816469|816470|920266", + "text": "Maturity-onset diabetes of the young type 8" + }, + { + "baseId": "32641|32642", + "text": "DRUG METABOLISM, ALTERED, CES1-RELATED" + }, + { + "baseId": "32643|38574|513213|551618|919162", + "text": "Cerebellar ataxia, mental retardation, and dysequilibrium syndrome 3" + }, + { + "baseId": "32644", + "text": "Carbonic anhydrase I, Guam" + }, + { + "baseId": "32645", + "text": "Carbonic anhydrase I deficiency" + }, + { + "baseId": "32646|32647|32648|439256", + "text": "Retinitis pigmentosa 17" + }, + { + "baseId": "32649|32650|32651|44436|49464|49465|53320|53321|53325|53326|53327|53328|53329|53330|53331|53332|53333|53334|140361|172338|172338|172339|172473|172475|172476|172477|172477|188306|188317|189181|189184|189185|228262|228263|228265|238131|249369|260553|276056|276057|276063|276080|276083|276271|276272|276276|276280|276284|276300|276521|276522|276522|276523|276565|276566|276579|276581|276585|276587|276598|353050|419260|419261|419265|447185|509076|512792|512793|512794|512795|512885|789825|799103|862078|862079|862080|862081|862082|862083|862084|862085|862086|862087|862088|862089|862090|862091|864962|864963", + "text": "Ventricular tachycardia, catecholaminergic polymorphic, 2" + }, + { + "baseId": "32652|32653|32654|32655|32656|32657|32658|32659|32660|32661|33888|98315|98316|98318|98319|98321|98322|98324|98325|98327|98328|98329|98330|98331|98333|134016|134017|134018|134019|134020|134021|134022|134023|134024|177149|177281|177281|177544|177545|177546|177547|177548|177549|188862|190202|190203|190955|191312|191854|192074|192173|192611|192713|192715|192802|194262|194264|194785|204177|208194|208195|208196|213633|213634|213634|213819|213819|213820|213821|213822|213823|213824|213825|213826|213827|213828|213829|213830|213831|213832|213833|226480|255175|255176|255185|255187|255188|255189|255192|255193|255194|255195|260066|264570|264572|264718|265248|265272|265299|265318|265323|265325|265421|265491|265594|265597|265742|265926|266354|266410|266648|266731|266731|266749|266773|266860|266883|266914|266918|267020|267021|267064|267104|267110|267336|267344|267416|267488|267496|267915|267928|268228|268305|268359|268370|268392|268622|268702|268705|268752|268755|268815|268876|269020|269044|269050|269183|269375|269382|269462|269548|269577|269707|269721|269809|269817|269888|270054|270201|270285|270432|270440|270455|270714|270828|270829|270831|270852|271050|271058|271662|271686|272127|272630|272641|272663|273208|273319|273329|273484|273609|273609|273881|273911|273912|273988|273989|274501|274502|274504|274571|274572|274585|274756|274910|275363|275464|322464|331826|331827|331833|331836|331840|338820|338830|340416|340419|340420|340422|340428|340430|340431|340432|340433|340434|373432|374514|409221|409222|409226|415418|422011|422012|434904|441715|441717|463945|464214|464219|464220|464513|464764|464768|464769|465009|465010|465012|465015|465022|465025|465031|465033|465038|488339|488426|488605|488605|488606|488661|488804|489220|489257|489629|489639|489691|489691|490360|490460|490626|490627|491815|491973|492116|492147|492475|492864|493178|493352|493576|493582|494013|495326|504997|505241|505634|528778|528781|528783|528787|528794|528798|528822|529164|529168|529170|529180|529301|529309|529311|538622|538623|547418|547422|547423|547425|547434|547438|547441|547442|547443|547450|547451|547453|547473|547476|547479|547481|547486|547487|547488|547489|547490|547491|547492|547493|547495|547500|547506|547509|547694|547696|547698|547704|547705|547707|547708|547710|547712|547714|547715|547718|547721|547723|547728|547730|548021|548028|548030|548035|548036|548047|548048|548060|548061|548063|548064|548067|548068|548069|548071|548073|548078|548096|548099|548100|548102|548104|548106|548107|548109|548113|548118|548130|548136|548142|548144|551617|567015|567017|567018|568762|568766|568773|568774|568777|568795|569352|573226|573230|584266|586029|586282|586368|587991|608965|611794|620509|620867|643161|643162|643163|643164|643165|643166|643167|643168|643169|643170|643171|643172|643173|643174|643175|643176|643177|643178|643179|643180|643181|643182|643183|643184|643185|643186|643187|652388|652409|652503|652515|652643|652661|652729|652733|656289|693671|693672|693673|693674|693675|703189|703190|703192|703193|726056|726057|730990|754430|754433|754434|770147|770149|784920|784921|784922|784923|784924|784925|801724|802195|802196|802197|802198|802199|802200|802201|820695|820696|820697|820698|842293|842294|842295|842296|842297|842298|842299|842300|842301|842302|842303|842304|842305|842306|842307|842308|842309|842310|842311|842312|842313|842314|851613|873429|873430|873431|873432|873433|873434|873435|873436|873437|873438|873439|873440|873441|873442|873443|873444|873445|873446|873447|876498|927310|927311|936917|936918|936919|936920|941086|948872|948873|948874|948875|948876|948877|948878|957410|957411|957412|957413|957414|957415|957416|957417|957418|957419|957420|957421|960108|960109|960110|961322|961555|966350|972203|972204|972205|972206|972207|972208|972209|979601|979602|979603|979604|979605|979606|979607|979608|979609|979610|979611|979612|979613|979614|979615|979616|979617|980351|980837|983766", + "text": "Limb-girdle muscular dystrophy, type 2A" + }, + { + "baseId": "32653|32660|177281|213634|213819|213824|226480|266731|267496|270829|270837|270838|271368|273609|488605|489691|919569", + "text": "Muscular dystrophy, limb-girdle, autosomal dominant 4" + }, + { + "baseId": "32657", + "text": "Myositis, eosinophilic" + }, + { + "baseId": "32660|45141|45142|45433|52528|55954|56003|56066|56075|56099|56160|56406|56684|56784|56790|56956|57201|57207|57208|57212|57235|57250|57252|57274|57275|57278|57280|57281|57284|57289|71232|77677|98315|98328|98330|98331|98333|98559|98560|98561|98562|98564|98568|100165|100168|100175|100181|100182|100183|100185|100189|100190|100199|100201|100207|100212|100214|100216|100218|100222|100223|100225|100228|100229|100243|100245|100248|100253|100254|100261|100264|100269|101352|102168|102570|102574|102577|102580|133838|134016|134017|134022|134023|134392|150222|150223|172253|173313|173487|174409|174410|177548|177549|177684|178124|178128|192759|192909|193183|193611|194264|195128|196270|198172|198791|198838|199000|199203|199524|208195|228646|250783|250787|251489|254126|254830|255194|255195|265545|265920|266446|266936|267002|267104|267280|267681|267696|268176|268214|268739|268748|268817|269020|269053|269058|269367|269375|269711|269978|270059|270070|270455|270711|270831|272050|272648|272649|272665|272867|273335|273377|273720|273827|273912|274494|274907|274982|275299|275308|276591|276601|276609|276610|276614|276876|277430|277432|277433|277434|277441|277445|277446|277447|277453|277456|277461|277537|283203|283251|283302|283303|283427|283925|283957|284034|284037|284061|284064|285684|285724|285913|285986|286010|286102|286159|286333|287144|287148|287149|287157|287158|287164|287169|287171|287172|287173|287877|287896|287898|287899|287900|287903|287904|287906|287911|287912|290424|290428|290429|290430|290443|290454|290461|290463|290470|290471|290719|290721|290727|290728|290729|290742|290745|290746|290750|290759|290760|290761|290765|290767|293475|293476|293478|293479|293480|293486|293491|293493|293494|293499|293507|293508|294872|294875|294888|294889|294890|294899|294900|294902|296515|296516|296528|296529|296535|296537|296543|296544|296547|296549|296550|296551|296552|296559|296560|296561|296562|296565|296566|296570|296571|296573|296574|296576|296581|296584|296585|296589|296597|296598|296602|296603|296607|296618|296619|296624|298425|298426|298435|298442|298448|298449|298456|298457|298459|298460|298461|298462|298471|298472|298473|298477|298479|298480|298481|298482|298483|298487|298488|298489|298490|298547|298552|298560|298561|298564|298568|298569|298571|298572|298573|298574|298581|298585|298586|298590|298594|298599|298600|298618|298620|298621|298630|302528|302530|302531|302540|302541|302542|302543|302562|302564|302565|302566|302582|302583|302596|302597|302598|302599|302602|302603|302604|302605|302606|302607|302625|302802|302803|302804|302806|302807|302814|302815|302816|302817|302820|302821|302822|302823|302824|302825|302826|302827|302828|302829|302830|302831|302832|302833|302834|302836|302839|302876|302882|302886|302887|302903|302904|302905|302906|302909|302910|302911|302912|302913|302914|306582|307095|313659|313661|313662|313663|313667|313669|313673|313674|313675|313679|313680|313681|313682|313686|313691|313693|313701|313702|313704|313705|313706|313708|313709|313712|313717|313720|313725|316198|317235|317269|319224|319226|319863|319873|319874|319881|319882|319884|319886|319893|319898|319903|319906|319907|319915|319916|319925|319928|319930|319943|321513|322464|326019|326020|326023|326024|326025|326029|326031|326041|326051|326053|326059|326076|326101|326107|326108|326111|326137|326138|326139|326145|326995|326997|327003|327005|327012|327013|327018|327021|327039|327040|327044|327045|327047|327048|327050|327051|327052|327053|327710|327711|327722|327724|327754|327763|330729|330762|330775|331826|331827|331833|331836|331840|334008|334010|334017|334022|335624|335632|335639|335640|338820|338830|339410|340416|340419|340420|340428|340430|340431|340432|340433|340434|353062|353291", + "text": "Limb-Girdle Muscular Dystrophy, Recessive" + }, + { + "baseId": "32660|32660|32660|360873|361094|969271", + "text": "Shoulder girdle muscle weakness" + }, + { + "baseId": "32660|271861|514133", + "text": "Calf muscle hypertrophy" + }, + { + "baseId": "32660|265299", + "text": "Elbow flexion contracture" + }, + { + "baseId": "32660|265299", + "text": "Contractures of the joints of the lower limbs" + }, + { + "baseId": "32660|99159|101352|171050|172242|172253|191616|264319|360804|360821|361045|361046|361054|551426|676967", + "text": "Congenital muscular dystrophy" + }, + { + "baseId": "32660|99791|198685|361040|361070", + "text": "Limb-girdle muscle weakness" + }, + { + "baseId": "32660|514049", + "text": "Absent Achilles reflex" + }, + { + "baseId": "32662|32663|32664|32665|32669|33887|79970|171056|196498|196500|227189|227190|249594|249595|249599|249603|249607|249608|249609|249610|249611|249613|249615|249618|249621|249623|249624|249628|249629|249633|249635|249636|249638|249639|249640|249641|249642|249643|249644|249646|249647|249648|249649|249651|249652|249653|249655|249657|249658|249659|249660|259644|263994|263994|278356|278357|278359|278361|278362|278363|278372|278376|278379|278384|278405|278422|278423|278424|278446|278451|279473|279475|279514|279515|279518|279523|279555|279562|279563|279579|279581|279590|279605|279606|279607|279608|279611|279619|279621|279640|279646|279649|279658|279659|279661|279665|279671|279672|279675|279685|279687|279688|279689|359213|361847|361848|361849|364590|364595|364712|364714|364719|364720|364723|364732|364739|364746|364764|364767|364770|364797|364801|389351|389357|405008|405009|405010|405011|405012|413260|414755|421195|425328|438575|440422|440423|440424|440426|442691|442692|442693|442695|447385|447395|447398|447399|447402|447413|447495|447496|447498|447507|447513|447514|447516|447523|447524|447524|447528|447531|447539|447540|447594|447601|447604|447611|447612|447618|447619|447622|447627|447629|447632|447633|447635|447636|447638|447639|447640|447641|447646|447648|447654|447657|447666|447675|447676|447676|495100|498170|498172|498183|498193|498195|498205|498209|498233|498327|498361|515342|515348|515358|515360|515365|515412|515417|515420|515423|515425|515427|515431|515432|515444|515445|515449|515458|515459|515464|515465|515467|515469|515470|515471|515472|515473|515474|515476|515482|515485|515486|515491|515492|515506|515507|556738|556740|556742|556744|556746|556748|556750|556752|556752|556773|556775|556777|556779|556781|556783|556785|556787|556789|557088|557090|557092|557094|557096|557098|557100|557102|557104|557106|557108|558286|558288|558290|558292|558294|558296|558298|558300|558309|558311|558313|558315|576456|576456|582270|627230|627231|627232|627233|627234|627235|627236|627237|627238|627239|627240|627241|627242|627243|627244|627245|627246|627247|627248|627249|627250|627251|627252|627253|627254|627255|627256|627257|627258|627259|627260|627261|627262|627263|627264|627265|627266|627267|627268|627269|627270|627271|627272|627273|627274|650600|650605|650615|650716|683297|683298|683299|683300|683301|683302|685603|685604|685605|685606|685610|685613|685614|685614|685615|685617|685619|685620|685623|685624|689636|689637|689639|690442|690443|690444|690448|690450|718509|731994|745976|745982|761465|774431|780437|780438|780444|787022|794524|794532|794534|823174|823175|823176|823177|823178|823179|823180|823181|823182|823183|823184|823185|823186|823187|823188|823189|823190|823191|823192|823193|823194|823195|823196|823197|823198|823199|823200|823201|823202|823203|823204|823205|823206|823207|823208|823209|823210|823211|823212|823213|823214|823215|823216|823217|823218|823219|823220|823221|823222|851263|863247|921790|921791|921792|921793|921794|921795|921796|921797|921798|921799|921800|921801|921802|921803|930220|930221|930222|930223|930224|930225|930226|930227|930228|930229|930230|930231|930232|930233|930234|930235|930236|930237|930238|939787|939788|940614|941649|941650|941651|941652|941653|941654|941655|952205|952206|952207|952208|952209|952210|952211|952212|952213|960417|967162", + "text": "Malignant hyperthermia, susceptibility to, 5" + }, + { + "baseId": "32671|32672|32673|78452|78453|99298|99329|140315|165528|178652|188519|188526|188530|188541|188542|188551|188574|188601|188608|188610|189343|189343|194127|194567|212999|236794|236794|258742|316516|316781|316790|324234|324278|330195|330349|331685|331818|373160|398923|462107|462982|527320|551787|565361|571766|625812|625813|641055|680050|791223|791224|919425|920315|961618|980501", + "text": "Timothy syndrome" + }, + { + "baseId": "32671", + "text": "CACNA1C-Related Disorders" + }, + { + "baseId": "32673|32674|78452|188519|188526|188610|189343|236794|462107|462982|527320|565361|571766|961618|980501", + "text": "Brugada syndrome 3" + }, + { + "baseId": "32676", + "text": "Calcitonin polymorphism" + }, + { + "baseId": "32677|32678|653832|653833|788901", + "text": "Congenital hypotrichosis with juvenile macular dystrophy" + }, + { + "baseId": "32677|800604|800605", + "text": "Hypotrichosis with juvenile macular dystrophy" + }, + { + "baseId": "32679|32680|99686|106447|191010|191011|265679|267814|269265|271578|326115|326116|326117|326118|326122|326126|326127|326130|326131|326133|326153|326154|335791|335798|335800|335801|335802|335807|335815|335823|335825|335827|342153|342154|342162|342166|342170|342172|342173|342177|342178|342182|342183|342184|342185|342186|342187|342188|342191|342193|342195|343674|343676|343681|343689|343691|343693|343694|343700|343707|343709|343710|343718|343720|343723|343724|343725|343727|343730|343731|343735|343736|438013|490886|490892|513362|588790|726753|740310|755332|771010|844118|875805|875806|875807|875808|875809|875810|875811|875812|875813|875814|875815|875816|875817|875818|875819|875820|875821|875822|875823|875824|875825|875826|875827|875828|875829|875830|875831|875832|875833|876706|876707|876708|876709|919673", + "text": "EEM syndrome" + }, + { + "baseId": "32681|32682|32683|429882|791652|791653|791654|804885", + "text": "Mental retardation, autosomal dominant 3" + }, + { + "baseId": "32684|32689", + "text": "Epidermolysis bullosa, junctional, localisata variant" + }, + { + "baseId": "32698", + "text": "UCP1 POLYMORPHISM" + }, + { + "baseId": "32700|32701|32714|32714|32732|45982|46122|46150|50254|68798|68867|68894|69114|69232|69324|69436|69545|69596|69620|69706|69739|69880|69888|69923|70037|70118|70147|70247|70406|94602|97097|131092|151179|151518|180880|185052|185131|236066|242785|261965|402741|427542|478892|487936|531064|531347", + "text": "Pancreatic cancer 4" + }, + { + "baseId": "32700|32714|32732|45982|46027|46122|46150|46204|50254|68798|68801|68854|68867|68894|69114|69232|69324|69436|69545|69596|69620|69706|69739|69880|69888|69923|70037|70063|70118|70147|70247|70406|94602|97097|131092|151179|151518|185052|185131|205705|236066|242785|261965|402741|427542|478892|486720|487936|531064|531347", + "text": "Fanconi anemia, complementation group S" + }, + { + "baseId": "32710|45982|46102|46454|46545|67015|68797|69084|69166|69289|69528|70063|70235|70377|94834|102683|102720|133066|171076|171077|227553|246854|463554|550688|550695|550698|550707|550717|623687|969735", + "text": "Ovarian cancer" + }, + { + "baseId": "32716", + "text": "Pancreatic cancer, susceptibility to" + }, + { + "baseId": "32716", + "text": "Punctate palmoplantar keratoderma type 2" + }, + { + "baseId": "32736", + "text": "Memory impairment, susceptibility to" + }, + { + "baseId": "32739|32740|32742|32743|32743|38569|38570|38571|38572|38572|194351|227358|320698|329500|329506|329508|336135|463821|463821|488913|528205|693513|693513|702899|702899|725691|739238|739239|754073|871932|871933|871935|871936|871938|871939|957236|957237", + "text": "Microphthalmia with brain and digit anomalies" + }, + { + "baseId": "32741|32742|32743|32743|38570|38572|38572|194351|320698|320704|329500|329506|329507|329508|329509|336094|336096|336109|336119|336131|336135|338038|463821|463821|488913|528205|693513|702899|702899|725691|739238|739239|754073|871931|871932|871933|871934|871936|871937|871938|871939|871940|871941|957236|957237", + "text": "Orofacial cleft 11" + }, + { + "baseId": "32744|609798|614360|799655", + "text": "Common variable immunodeficiency 5" + }, + { + "baseId": "32745|32746|137571|137573|137574|137576|433403|446138|468842|470263|570810|572530|573150|573151|648144|648145|741924|772716|847730|847731|847732|847733|847734|847735|847736|847737|847738|938705|938706|950808", + "text": "Agammaglobulinemia 3, autosomal recessive" + }, + { + "baseId": "32747", + "text": "RH E/e POLYMORPHISM" + }, + { + "baseId": "32749|514288|514289|514290", + "text": "RH-NULL, AMORPH TYPE" + }, + { + "baseId": "32750", + "text": "RHD-NEGATIVE POLYMORPHISM" + }, + { + "baseId": "32751", + "text": "RhD category D-VII" + }, + { + "baseId": "32752", + "text": "Rhd, weak d, type I" + }, + { + "baseId": "32753", + "text": "BLOOD GROUP ERIK" + }, + { + "baseId": "32754|40056|791933", + "text": "Landsteiner-Wiener phenotype" + }, + { + "baseId": "32756", + "text": "KIDD BLOOD POLYMORPHISM Jk(a)/Jk(b)" + }, + { + "baseId": "32757|32758|32760", + "text": "Jk-null variant" + }, + { + "baseId": "32759", + "text": "Jk-null variant, finnish type" + }, + { + "baseId": "32761", + "text": "KELL K/k BLOOD GROUP POLYMORPHISM" + }, + { + "baseId": "32762", + "text": "KELL-NULL PHENOTYPE" + }, + { + "baseId": "32763|32765|32766", + "text": "Blood group, Gerbich system" + }, + { + "baseId": "32764", + "text": "Glycophorin c, gerbich variant" + }, + { + "baseId": "32767", + "text": "DUFFY BLOOD GROUP SYSTEM, FYA/FYB POLYMORPHISM" + }, + { + "baseId": "32769|32770|32771|32772|32773", + "text": "Blood group, Dombrock system" + }, + { + "baseId": "32774|32775|32776|32778", + "text": "ABO blood group system" + }, + { + "baseId": "32779|214524|529416|726090|842413", + "text": "Hypoproteinemia, hypercatabolic" + }, + { + "baseId": "32781", + "text": "Asthma, nocturnal, susceptibility to" + }, + { + "baseId": "32782", + "text": "ADRB2 POLYMORPHISM" + }, + { + "baseId": "32783|32784", + "text": "Beta-2-adrenoreceptor agonist, reduced response to" + }, + { + "baseId": "32785|33199", + "text": "Congestive heart failure and beta-blocker response, modifier of" + }, + { + "baseId": "32786", + "text": "Resting heart rate" + }, + { + "baseId": "32787|32788|32789|38565|335600|335602|335605|335607|335608|335613|335614|345366|345367|350034|350035|350038|350040|350044|350047|351080|351081|378249|487845|610160|620663|728697|757571|886181|886182|886183|886184|886185|886186|886187|887466|887467|887468|982221", + "text": "Hyper-IgM syndrome type 3" + }, + { + "baseId": "32790", + "text": "BLOOD GROUP--OK" + }, + { + "baseId": "32791", + "text": "Band 3 memphis" + }, + { + "baseId": "32791|32793|32795|32798|32802|32803|32804|32805|32807|32808|32810|32816|32821|32822|75388|256186|256187|256188|256190|256192|256193|256194|256195|256196|256196|256197|256198|328654|328655|328658|328667|328670|328681|328682|328683|338630|338644|338650|338651|338653|338656|338661|338663|338665|344706|344708|344710|344712|344719|344720|344722|344723|344724|344726|344727|344730|344734|346097|346103|346104|346106|346108|346110|346111|346117|346121|346122|346126|346127|346132|432335|727205|727207|740809|740810|755890|818334|845491|877685|877686|877687|877688|877689|877690|877691|877692|877693|877694|877695|877696|877697|877698|877699|877700|877701|877702|877703|877704|877705|877706|877707|877708|877709|877710|877711|877712|877713|877714|877715|877716|877717|877718|877719|877720|877721|877722|877723|877724|877725|877726|877727|877728|877729|877730|877731|877732|877733|877734|880529|880530|880531", + "text": "Autosomal dominant distal renal tubular acidosis" + }, + { + "baseId": "32791|32793|32794|32795|32797|32798|32799|32800|32801|32807|32808|32809|32812|32814|32815|32819|32821|32822|75388|256186|256187|256188|256190|256192|256193|256194|256195|256196|256196|256197|256198|328654|328655|328658|328667|328670|328681|328682|328683|338630|338644|338650|338651|338653|338656|338661|338663|338665|344706|344708|344710|344712|344719|344720|344722|344723|344724|344726|344727|344730|344734|346097|346103|346104|346106|346108|346110|346111|346117|346121|346122|346126|346127|346132|511039|535262|535263|535264|535265|535266|727205|727207|740809|740810|755890|791779|845491|877685|877686|877687|877688|877689|877690|877691|877692|877693|877694|877695|877696|877697|877698|877699|877700|877701|877702|877703|877704|877705|877706|877707|877708|877709|877710|877711|877712|877713|877714|877715|877716|877717|877718|877719|877720|877721|877722|877723|877724|877725|877726|877727|877728|877729|877730|877731|877732|877733|877734|880529|880530|880531", + "text": "Spherocytosis type 4" + }, + { + "baseId": "32792", + "text": "Ovalocytosis, southeast Asian" + }, + { + "baseId": "32795|214835|214836|214837|919731", + "text": "Hereditary cryohydrocytosis with normal stomatin" + }, + { + "baseId": "32796", + "text": "BLOOD GROUP--WALDNER TYPE" + }, + { + "baseId": "32798", + "text": "BLOOD GROUP--WRIGHT ANTIGEN" + }, + { + "baseId": "32806|32810|32811|32812|32818|256196|513221|513222|513223", + "text": "Renal tubular acidosis, distal, with hemolytic anemia" + }, + { + "baseId": "32807", + "text": "DIEGO BLOOD GROUP ANTIGEN" + }, + { + "baseId": "32813|32821", + "text": "SWANN BLOOD GROUP ANTIGEN" + }, + { + "baseId": "32817", + "text": "Renal tubular acidosis, distal, with normal red cell morphology" + }, + { + "baseId": "32820", + "text": "BLOOD GROUP--FROESE" + }, + { + "baseId": "32822", + "text": "Acanthocytosis due to band 3 ht" + }, + { + "baseId": "32822", + "text": "Acanthocytosis" + }, + { + "baseId": "32823|32824|32825|32826|190426|190426|204583|204587|267323|272459|308303|308305|308307|312693|312703|312707|312716|312717|318592|318595|318595|318597|318600|319133|319133|319141|319143|319144|319145|319145|362062|362063|362064|362065|362066|438816|459243|459543|460088|490866|511840|511840|524861|524864|524865|524865|524989|524989|563262|563263|620811|622395|638314|638315|682631|695443|700994|700995|700996|700997|700998|700998|700999|701000|737129|751704|777818|777820|777820|790910|836153|836154|836155|836156|836157|858773|858774|861211|861212|861257|861258|861259|861260|861261|861262|861263|861264|861276|861277|861278|861279|861280|902017|902018|902019|902020|902021|902022|902023|902024|902025|902026|902027|902028|902029|903402|903403|903404|903405|903406|919233|925595|925596|925597|925598|925599|955850|961023|961295|964909", + "text": "Acromesomelic dysplasia, Maroteaux type" + }, + { + "baseId": "32827|132361|238133|238133|238134|238135|390780|390781|390808|390812|447018|447106|447114|447188|447193|514998|515054|515067|556861|556881|557006|557121|626689|626690|626691|626692|818836|822595|822596|822597|822598|921601|921602|929993|929994|952032", + "text": "Atrial fibrillation, familial, 6" + }, + { + "baseId": "32828|32829|32830|32833|32834|32835|32839|315992|315993|315995|315999|316000|316001|316003|316004|316007|316009|316014|316015|316016|316023|323249|323252|323253|323254|323269|323273|323280|323281|323282|323285|323286|323288|329296|329299|329300|329303|329305|329307|329308|329314|329315|329329|329339|329341|329364|329366|330502|330503|330504|330508|330512|330517|330518|330528|330529|330534|330542|330545|330551|330554|408521|702109|791193|794041|798650|869246|869247|869248|869249|869250|869251|869252|869253|869254|869255|869256|869257|869258|869259|869260|869261|869262|869263|869264|869265|869266|869267|869268|869269|869270|869271|872187|872188|872189|872190", + "text": "Keratosis follicularis" + }, + { + "baseId": "32831|32832", + "text": "Darier disease, acral hemorrhagic type" + }, + { + "baseId": "32836|32837", + "text": "Darier disease, segmental" + }, + { + "baseId": "32838|38564|919408|920309", + "text": "Acrokeratosis verruciformis of Hopf" + }, + { + "baseId": "32840", + "text": "Deafness, autosomal recessive 12, modifier of" + }, + { + "baseId": "32841|32842|32843|32844|32845|102433|102434|102435|102436|102437|102438|102439|324938|324939|324941|324942|324944|324945|324946|324950|324951|324963|334586|334597|334609|334610|334612|334615|334617|334618|334622|334627|334630|341114|341116|341117|341118|342633|342634|342641|342645|342646|342655|374322|374323|374324|374327|374336|375056|375065|375355|375360|375361|375368|377489|409605|409608|415488|426167|426169|441893|441895|441898|445557|464825|465537|465598|465599|465612|465628|465630|466321|466323|466325|466328|466332|466343|466347|466350|466352|466353|466354|466356|466603|466605|466607|466609|466611|466621|466624|529892|529894|529896|529900|529975|529981|530214|530217|530399|530408|567489|568063|568066|568072|568074|568076|568077|570087|570092|570227|570229|570233|574013|574017|574024|577540|577541|644543|644544|644545|644546|644547|644548|644549|644550|644551|644552|644553|644554|644555|644556|644557|644558|644559|644560|644561|644562|644563|644564|644565|644566|644567|644568|644569|644570|644571|644572|644573|644574|652559|654800|693837|693838|693839|693842|693843|695686|695688|695689|714847|726557|726558|770839|785250|820820|820821|820822|843705|843706|843707|843708|843709|843710|843711|843712|843713|843714|843715|843716|843717|843718|843719|843720|843721|843722|843723|843724|843725|843726|843727|843728|851667|858305|858414|875073|875074|875075|875076|875077|875078|875079|875080|875081|875082|875083|875084|876650|927761|927762|927763|927764|927765|927766|937400|937401|937402|937403|949351|949352|949353|949354|949355|949356|957725|957726|957727|957728|957729|960153", + "text": "Brody myopathy" + }, + { + "baseId": "32847", + "text": "NAT1*17 ALLELE" + }, + { + "baseId": "32848|32849|32850|32851|32852|32853|38563|194327|198631|236936|236993|237084|303182|303185|303190|303192|306444|306452|306457|306460|306464|306465|306466|306468|306469|311343|311344|311345|311349|311350|311353|311354|311356|311457|311458|311461|311462|371156|407159|481234|508826|508827|550205|561990|561991|561994|620266|624052|636200|700133|711042|711043|736171|766308|782875|789120|789371|790726|852366|898242|898243|898244|898245|898246|898247|898248|898249|898250|898251|898252|898253|898254|898255|898256|898257|900376|900377|900378|900379|900380|900381|920242|924865|933896|933897|959858|961779|961780|965588", + "text": "Deficiency of aromatic-L-amino-acid decarboxylase" + }, + { + "baseId": "32854|32855|32856|32857|32858|32859|32860|32861|32862|32865|140767|322823|322828|322830|322833|322834|322835|322839|322848|322850|322851|322853|322854|322856|322857|322858|322860|332349|332350|332356|332357|332358|332360|332365|332369|332371|332372|332373|332376|339339|339346|339347|339351|339352|339353|339354|339355|339362|339366|339374|340785|340786|340790|340793|340803|505323|505751|620872|739675|754517|754518|754520|760347|760348|770224|770225|770227|784954|784955|784956|873769|873770|873771|873772|873773|873774|873775|873776|873777|873778|873779|873780|873781|873782|873783|873784|873785|873786|873787|873788|873789|873790|873791|873792|873793|873794|873795|873796|873797|873798|873799|873800|873801|873802|873803|873804|873805|920346|979618|979619|979620|979621|979622|979623|979624|979625|979626|979627|979628|979629|979630|979631|979632|979633|979634|979635", + "text": "Aromatase deficiency" + }, + { + "baseId": "32863|32864|32866", + "text": "Aromatase excess syndrome" + }, + { + "baseId": "32867|32868|32869|32870|32871|32872|32873|32874|32876|32877|32878|32881|32882|32883|32884", + "text": "Diabetes insipidus, nephrogenic, autosomal recessive" + }, + { + "baseId": "32875|32879|32880", + "text": "Diabetes insipidus, nephrogenic, autosomal dominant" + }, + { + "baseId": "32885", + "text": "COLTON BLOOD GROUP POLYMORPHISM" + }, + { + "baseId": "32886", + "text": "Colton-null phenotype" + }, + { + "baseId": "32887|32889|32890|32891|32892|32896|32897|32900|32901|32904|906167|961224|961225", + "text": "Familial type 3 hyperlipoproteinemia" + }, + { + "baseId": "32887|227759|538603", + "text": "atorvastatin response - Efficacy" + }, + { + "baseId": "32887|32895|215242|246297|287155|362735|434210|682121", + "text": "Hypercholesterolemia" + }, + { + "baseId": "32888", + "text": "HYPERLIPOPROTEINEMIA, TYPE III, AND ATHEROSCLEROSIS ASSOCIATED WITH APOE5" + }, + { + "baseId": "32898", + "text": "APOE2-DUNEDIN" + }, + { + "baseId": "32899", + "text": "APOE5 VARIANT" + }, + { + "baseId": "32901", + "text": "HYPERLIPOPROTEINEMIA, TYPE III, ASSOCIATED WITH APOE3(WASHINGTON)" + }, + { + "baseId": "32903", + "text": "Alzheimer disease 2" + }, + { + "baseId": "32903|33133", + "text": "Primary degenerative dementia of the Alzheimer type, presenile onset" + }, + { + "baseId": "32903|32918|32919", + "text": "Lipoprotein glomerulopathy" + }, + { + "baseId": "32910", + "text": "APOE3(-)-FREIBURG" + }, + { + "baseId": "32913", + "text": "APOE2 VARIANT" + }, + { + "baseId": "32914", + "text": "APOE4 VARIANT" + }, + { + "baseId": "32915", + "text": "APOE4(+)" + }, + { + "baseId": "32920|32921|32922|32923|32924|32925|32926|32927|32928|32929|32931|32933|32934|32935|32937|32938|38562|133873|238613|260642|280907|280912|280921|280922|280927|280928|280943|280947|281413|281414|281421|281423|281462|281464|281482|281488|281491|281492|282654|282656|282659|282664|282680|282691|282692|282936|282952|282971|282972|282974|282976|282977|284416|284421|284513|285074|285091|285100|285117|285119|285145|285188|287248|287258|287262|287263|287276|287316|287496|287500|287501|287521|287529|287554|287575|287586|287591|434172|434174|434175|434176|434177", + "text": "Familial hypobetalipoproteinemia" + }, + { + "baseId": "32920|32929|32929|32936|32936|48709|48709|80399|80401|80402|85303|85303|85305|85310|133865|133866|133867|133868|133868|133869|133870|133870|133871|133872|133872|133873|133874|133875|178500|178500|178501|178503|178503|187184|187185|187185|187189|187189|187190|187191|196823|196823|196824|215238|215238|215239|215239|215240|215240|215242|215242|215243|215243|215244|215245|215246|215246|215247|215247|215248|215248|236950|238598|238599|238599|238600|238600|238601|238602|238603|238603|238604|238604|238605|238605|238607|238608|238608|238609|238609|238610|238610|238611|238612|238612|238613|238614|238615|238615|238616|238616|238617|238619|246909|246910|246910|246911|246914|246915|250516|250516|250517|250517|250518|250518|250519|250519|250520|250520|250521|250522|250522|250523|250523|250524|250525|250525|250526|250526|250527|250527|250528|250528|250529|250529|250530|250530|250531|250531|250532|250533|250533|260627|260627|260630|260630|260631|260633|260633|260634|260635|260636|260636|260637|260637|260643|260646|260652|265379|265379|284377|284390|284396|284400|284403|284408|284408|284413|284416|284417|284418|284418|284420|284424|284424|284426|284426|284429|284434|284434|284442|284445|284447|284450|284451|284451|284454|284454|284455|284456|284456|284465|284466|284507|284507|284513|284515|284515|284527|284527|284529|284529|284530|284530|285065|285066|285067|285067|285072|285073|285075|285075|285077|285086|285087|285090|285090|285091|285092|285092|285098|285098|285099|285119|285120|285120|285121|285122|285153|285153|285167|285193|285193|285196|285196|285207|285207|285211|285214|285218|285219|285221|287123|287134|287134|287140|287141|287142|287151|287155|287170|287185|287185|287196|287202|287206|287206|287207|287208|287208|287213|287217|287224|287224|287234|287234|287242|287245|287246|287250|287259|287262|287263|287264|287264|287276|287316|287333|287334|287334|287361|287361|287372|287372|287374|287498|287521|287522|287524|287525|287529|287532|287535|287538|287543|287559|287561|287563|287566|287572|287572|287582|287583|287586|287589|287589|287591|287592|287592|287593|287593|287601|287601|287608|287609|287610|354070|354071|354072|359413|359413|362735|362735|366106|366335|366335|366341|366341|366937|389476|389476|389479|389484|389492|389492|389497|389499|389499|389506|389506|392294|392299|392301|392377|392380|392382|392387|392470|392476|392480|392486|392487|392489|392497|392541|392541|392544|392547|392547|392555|392557|392562|414865|425004|425004|425007|425009|425011|425011|425012|425012|425464|425464|425465|427986|431948|434167|434168|434170|437671|443149|443150|443151|443152|443153|450283|450285|450290|450290|450291|450292|450296|450308|450405|450405|450421|450426|450435|450435|450437|450437|450439|450442|450442|450444|450444|450445|450445|450446|450447|450450|450456|450464|450471|450471|450478|450488|450495|450495|450498|450540|450546|450549|450551|450558|450562|450563|450570|450571|450571|450573|450573|450579|450579|450581|450581|450585|481122|483177|483188|483200|483200|483208|483210|483211|483213|483223|483225|483249|483249|483253|486938|499500|499717|499894|516314|517546|517552|517556|517558|517564|517565|517566|517568|517570|517578|517579|517587|517590|517595|517603|517608|517646|517646|517647|517658|517660|517662|517664|517666|517681|517684|517686|517687|517690|517691|517692|517694|517695|517696|517701|517701|517705|517706|517714|517721|517725|517728|517729|517730|517730|517803|517803|517805|517808|517818|517821|517828|517829|517842|517845|517848|517854|517856|517856|517858|517861|517865|517867|517869|538529|538530|538530|538531|538533|538534|538538|538552|538558|538561|538562|538562|538563|557826|557828|557830|557832|557873|557875|557877|557879|557881|557883|557885|557887|559053|559055|559057|559059|559061|559063|559065|559067|560757|560759|560768|560773|560775|560777|560798|560800|560803|585794|588441|611282|611282|616235|616235|616237|616237|616241|616247|616247|616259|616268|616268|616273|616275|616276|616277|616279|616282|616289|616294|616295|616307|616325|616330|616334|616349|616355|616355|616360|616367|616368|616373|616379|616383|616398|616399|616401|616402|616403|616404|616411|616420|616424|616425|616436|616438|616440|616456|616459|616460|616461|616464|616464|616469|616472|616473|616481|616481|616494|616514|619103|619120|629321|629322|629323|629324|629325|629326|629327|629328|629329|629330|629331|629332|629333|629334|629335|629336|629337|629338|629339|629340|629341|629342|629343|629344|629345|629346|629347|629348|629348|629349|629350|629351|655411|672392|672394|672394|683475|683475|683477|683482|683482|683483|683484|686124|686125|686126|686131|686132|686134|686135|686138|689706|691018|691019|691020|691021|707993|719572|719574|730103|747229|762836|762837|781123|781124|781124|781126|781128|795134|825619|825620|825621|825622|825623|825623|825624|825625|825626|825626|825627|825628|825629|825630|825631|825632|825633|825634|825635|825636|825637|825638|825639|825640|825641|825642|825643|850829|883593|883594|883595|883596|883597|883598|883599|883600|883601|883602|883603|883604|883605|883606|883607|883608|883609|883610|883611|883612|883613|883614|883616|883617|883618|883619|883620|883621|883622|883623|883624|883625|883626|883627|883628|883629|883630|883631|883632|883633|883634|883635|883635|883636|883637|883638|883639|883640|907794|907820|907858|907887|907942|907991|908028|908059|908162|908311|922528|922529|922530|922531|922532|922533|922534|922535|922536|922537|922538|922539|922539|922540|931085|931086|931087|931088|931089|931090|931091|931092|931093|931094|931095|931096|931097|931098|931099|931100|931101|931102|939872|940688|942571|942572|942573|942574|942575|952892|952893|952894|952895|964191|964809|970733|970734|970735", + "text": "Familial hypercholesterolemia 2" + }, + { + "baseId": "32920|32929|32929|32934|32936|48709|80399|80401|80402|85303|85303|85305|85310|133865|133866|133867|133868|133869|133870|133870|133871|133872|133873|133874|133875|178500|178503|187184|187185|187185|187189|187189|187190|187191|196823|196823|196824|215238|215239|215239|215240|215240|215242|215242|215243|215244|215245|215246|215246|215247|215247|215248|215248|228912|236950|238598|238599|238599|238600|238600|238601|238602|238603|238603|238604|238604|238605|238606|238607|238608|238608|238609|238609|238610|238610|238611|238612|238612|238613|238614|238615|238616|238616|238617|238618|238619|246909|246910|246910|246911|246914|246915|250516|250516|250517|250517|250518|250519|250519|250520|250520|250521|250522|250522|250523|250524|250525|250525|250526|250527|250527|250528|250528|250529|250529|250530|250530|250531|250531|250532|250533|250533|260627|260630|260630|260631|260633|260633|260634|260635|260636|260637|260637|260643|260646|265379|265379|284377|284390|284396|284400|284403|284408|284408|284413|284416|284417|284418|284418|284420|284424|284424|284426|284426|284429|284434|284434|284442|284445|284447|284450|284451|284451|284454|284454|284455|284456|284456|284465|284466|284507|284507|284513|284515|284515|284527|284527|284529|284529|284530|284530|285065|285066|285067|285067|285072|285073|285075|285075|285077|285086|285087|285090|285090|285091|285092|285092|285098|285098|285099|285119|285120|285120|285121|285122|285153|285153|285167|285193|285193|285196|285196|285207|285207|285211|285214|285218|285219|285221|287123|287134|287134|287140|287141|287142|287151|287155|287170|287185|287185|287196|287202|287206|287206|287207|287208|287208|287213|287217|287224|287224|287234|287234|287242|287245|287246|287250|287259|287262|287263|287264|287264|287276|287316|287333|287334|287334|287361|287361|287372|287372|287374|287498|287521|287522|287524|287525|287529|287532|287535|287538|287543|287559|287561|287563|287566|287572|287572|287582|287583|287586|287589|287589|287591|287592|287592|287593|287593|287601|287601|287608|287609|287610|354070|354071|354072|359413|359413|361171|362735|362735|366106|366335|366341|366341|366937|389476|389484|389492|389492|389497|389499|389499|389506|392294|392299|392301|392301|392377|392380|392382|392387|392470|392476|392480|392486|392487|392489|392497|392541|392541|392544|392547|392547|392554|392555|392557|392562|414865|425004|425004|425007|425009|425009|425011|425011|425012|425012|425464|425465|427986|427986|431948|434167|434168|434170|443149|443150|443151|443152|443153|450283|450285|450290|450290|450291|450292|450296|450308|450405|450405|450421|450426|450435|450435|450437|450437|450439|450442|450442|450444|450444|450445|450445|450446|450447|450450|450456|450464|450471|450471|450478|450483|450488|450492|450495|450495|450498|450540|450546|450549|450551|450558|450562|450563|450570|450571|450571|450573|450573|450579|450579|450581|450581|450585|481122|483177|483188|483200|483200|483208|483210|483211|483213|483223|483225|483249|483249|483253|486938|499500|499717|499894|516314|517546|517552|517556|517558|517564|517565|517566|517568|517570|517578|517579|517587|517590|517595|517603|517608|517646|517646|517647|517658|517660|517662|517664|517666|517681|517684|517686|517687|517690|517691|517692|517694|517695|517696|517701|517701|517705|517705|517706|517714|517721|517725|517728|517729|517730|517730|517803|517803|517805|517808|517818|517821|517828|517829|517842|517845|517848|517854|517856|517856|517858|517861|517865|517867|517869|538529|538530|538530|538531|538533|538534|538538|538552|538558|538561|538562|538562|538563|557826|557828|557830|557832|557873|557875|557877|557879|557881|557883|557885|557887|559053|559055|559057|559059|559061|559063|559065|559067|560757|560759|560768|560773|560775|560777|560798|560800|560803|585794|588441|611282|611282|616235|616235|616237|616237|616241|616247|616247|616259|616268|616268|616273|616275|616276|616276|616277|616279|616282|616289|616294|616295|616307|616325|616330|616334|616346|616349|616355|616355|616360|616367|616368|616373|616379|616383|616398|616399|616401|616402|616403|616404|616411|616420|616424|616425|616436|616438|616456|616460|616461|616463|616464|616464|616469|616472|616473|616481|616481|616494|616514|619103|619120|619120|629321|629322|629323|629324|629325|629326|629327|629328|629329|629330|629331|629332|629333|629334|629335|629336|629337|629338|629339|629340|629341|629342|629343|629344|629345|629346|629347|629348|629348|629349|629350|629351|655411|672392|672394|683475|683475|683477|683482|683482|683483|683484|686124|686125|686126|686131|686132|686134|686135|686138|689706|691018|691019|691020|691021|707993|719572|719574|730103|747229|762836|762837|781123|781124|781124|781126|781128|795134|815841|815842|815843|825619|825620|825621|825622|825623|825623|825624|825625|825626|825626|825627|825628|825629|825630|825631|825632|825633|825634|825635|825636|825637|825638|825639|825640|825641|825642|825643|850829|883593|883594|883595|883596|883597|883598|883599|883600|883601|883602|883603|883604|883605|883606|883607|883608|883609|883610|883611|883612|883613|883616|883617|883618|883619|883620|883621|883622|883623|883624|883625|883626|883627|883628|883629|883630|883631|883632|883633|883634|883635|883635|883636|883637|883638|883639|883640|906165|907794|907858|907887|907942|907991|908059|908162|908214|908311|918731|918732|922528|922529|922530|922531|922532|922533|922534|922535|922536|922537|922538|922539|922540|931085|931086|931087|931088|931089|931090|931091|931092|931093|931094|931095|931096|931097|931098|931099|931100|931101|931102|939872|940688|942571|942572|942573|942574|942575|952892|952893|952894|952895", + "text": "Hypobetalipoproteinemia, familial, 1" + }, + { + "baseId": "32930", + "text": "APOB POLYMORPHISM IN SIGNAL PEPTIDE" + }, + { + "baseId": "32932|32939|32940", + "text": "Hypobetalipoproteinemia, normotriglyceridemic" + }, + { + "baseId": "32941", + "text": "Apolipoprotein c-iii, nonglycosylated" + }, + { + "baseId": "32942|32943|143193|143194|143195|508859", + "text": "Hyperalphalipoproteinemia 2" + }, + { + "baseId": "32944", + "text": "APOLIPOPROTEIN A-IV POLYMORPHISM, APOA4*1/APOA4*2" + }, + { + "baseId": "32945", + "text": "APOLIPOPROTEIN A-IV RARE VARIANT, APOA4*0" + }, + { + "baseId": "32946", + "text": "APOLIPOPROTEIN A-IV RARE VARIANT, APOA4*3" + }, + { + "baseId": "32947", + "text": "APOLIPOPROTEIN A-IV RARE VARIANT, APOA4*5" + }, + { + "baseId": "32948", + "text": "APOLIPOPROTEIN A-I (MILANO)" + }, + { + "baseId": "32949", + "text": "APOLIPOPROTEIN A-I (GIESSEN)" + }, + { + "baseId": "32950", + "text": "APOLIPOPROTEIN A-I (MARBURG)" + }, + { + "baseId": "32951", + "text": "APOLIPOPROTEIN A-I (MUNSTER4)" + }, + { + "baseId": "32952", + "text": "APOLIPOPROTEIN A-I (NORWAY)" + }, + { + "baseId": "32953", + "text": "APOLIPOPROTEIN A-I (MUNSTER3C)" + }, + { + "baseId": "32954", + "text": "APOLIPOPROTEIN A-I (MUNSTER3B)" + }, + { + "baseId": "32955|32958|32960|32961|32965|32968", + "text": "Apolipoprotein A-I deficiency" + }, + { + "baseId": "32956", + "text": "Familial amyloid polyneuropathy, Iowa type" + }, + { + "baseId": "32957", + "text": "Apolipoproteins a-i and c-iii, combined deficiency of" + }, + { + "baseId": "32957", + "text": "High density lipoprotein deficiency, Detroit type" + }, + { + "baseId": "32959", + "text": "APOLIPOPROTEIN A-I (BALTIMORE)" + }, + { + "baseId": "32969", + "text": "Hypoalphalipoproteinemia, primary, 2" + }, + { + "baseId": "32970|32971", + "text": "Amyloidosis, cardiac and cutaneous" + }, + { + "baseId": "32974", + "text": "APOLIPOPROTEIN A-II DEFICIENCY, FAMILIAL, DUE TO APOA-II (HIROSHIMA)" + }, + { + "baseId": "32976|32977|32978|32979|32980|33504|33505|190138|190139|511616|513960|537794|537795|537796|537797|537798|537799|537800|537801|537802|537803|550600|790571|798565|818137|918988|961513|969748|970818", + "text": "Branchiooculofacial syndrome" + }, + { + "baseId": "32981|32982|32983|32984|32985|32986|32987|32988|32989|32990|38561|45034|45037|45038|116887|116889|116890|116891|116895|116928|205148|299195|299200|299201|299203|299204|301613|301614|301617|301624|301627|301629|301632|301633|305998|306000|306006|306024|306029|306030|306032|306314|332889|343076|348405|455399|455403|487189|512878|512881|521447|521454|521455|521730|521790|521799|522040|522044|560471|560606|560608|565449|614297|614297|620217|621747|634643|634644|634645|634646|634647|634648|634649|634649|634650|634651|634652|634653|634654|634655|651529|710193|721734|721735|721736|735434|735435|749834|765507|782458|782459|790593|790594|790595|818387|818388|819643|831610|831611|831612|831613|831614|831615|831616|831617|852014|895459|895460|895461|895462|895463|895464|895465|895466|895467|895468|895469|895470|895471|895472|895473|895474|895475|895476|895477|895478|924266|924267|924268|924269|924270|924271|924272|944901|944902|944903|954382|954383|954384|954385|980456", + "text": "Disseminated atypical mycobacterial infection" + }, + { + "baseId": "32986|32991|32993|205148|614297|634649|980456", + "text": "Immunodeficiency 27b" + }, + { + "baseId": "32986", + "text": "IFN-gamma receptor 1 deficiency" + }, + { + "baseId": "32992|980456", + "text": "Helicobacter pylori infection, susceptibility to" + }, + { + "baseId": "32994|32995", + "text": "PI M1-ALA213" + }, + { + "baseId": "32994", + "text": "PI, M1A" + }, + { + "baseId": "32994|32996|32997|33000|33001|33002|33003|33004|33005|33006|33006|33008|33008|33009|33010|33010|33011|33013|33014|33015|33016|33018|33019|33021|33022|33024|33025|33026|33031|33032|175951|176094|176095|186924|186925|186926|186927|194290|214472|221042|221043|221044|221045|221046|221047|221048|221049|221050|221051|221052|221053|221054|221055|221056|221057|221058|221059|221060|255114|255115|270546|272333|272693|273372|273566|275216|321835|321837|321838|321840|321844|321853|321854|321855|321856|321860|321861|321865|331140|331143|331146|331148|331149|331150|331152|331154|331157|331158|331161|331164|331168|331170|331174|337935|337949|337952|337959|337963|337965|337970|337989|337992|337993|339920|339924|339926|339931|339935|339939|339940|339943|339945|339948|339952|353313|354274|358271|358272|358273|358274|358275|358276|415410|434114|434115|434116|434117|434118|434119|434120|434121|434122|434123|434124|434126|434127|437676|437677|437678|437679|437680|437681|437682|437683|437684|437685|437686|464171|464192|490674|492173|492765|493455|547383|547456|547458|547460|547945|584517|585153|585525|586517|614632|614633|614634|614635|614636|614637|614638|614639|614640|620499|620500|679858|679859|679860|688374|688375|688377|688378|690092|690093|693619|841913|872966|872967|872968|872969|872970|872971|872972|872973|872974|872975|872976|872977|872978|872979|872980|872981|872982|872983|872984|872985|872986|872987|872988|872989", + "text": "Alpha-1-antitrypsin deficiency" + }, + { + "baseId": "32995", + "text": "PI, M1V" + }, + { + "baseId": "32996", + "text": "PI M2" + }, + { + "baseId": "32996", + "text": "PI M4" + }, + { + "baseId": "32997", + "text": "PI M3" + }, + { + "baseId": "32999", + "text": "PI B(ALHAMBRA)" + }, + { + "baseId": "33000", + "text": "PI F" + }, + { + "baseId": "33001", + "text": "PI P(ST. ALBANS)" + }, + { + "baseId": "33002", + "text": "PI X" + }, + { + "baseId": "33003", + "text": "PI CHRISTCHURCH" + }, + { + "baseId": "33004", + "text": "PI M(HEERLEN)" + }, + { + "baseId": "33005", + "text": "PI M(MINERAL SPRINGS)" + }, + { + "baseId": "33006", + "text": "PI Z" + }, + { + "baseId": "33006", + "text": "PI Z(AUGSBURG)" + }, + { + "baseId": "33006", + "text": "PI Z(TUN)" + }, + { + "baseId": "33006|33006|33008|33010|682501|682502|682503|682504|682505|682506|682507|858301|858302|858303", + "text": "Chronic obstructive pulmonary disease" + }, + { + "baseId": "33008", + "text": "PI S" + }, + { + "baseId": "33009", + "text": "PI Z(WREXHAM)" + }, + { + "baseId": "33010", + "text": "PI M(PROCIDA)" + }, + { + "baseId": "33012", + "text": "PI NULL(HONG KONG 2)" + }, + { + "baseId": "33013", + "text": "PI I" + }, + { + "baseId": "33014", + "text": "PI P(LOWELL)" + }, + { + "baseId": "33014", + "text": "PI NULL(CARDIFF)" + }, + { + "baseId": "33014", + "text": "PI Q0(CARDIFF)" + }, + { + "baseId": "33014", + "text": "PI P(DUARTE)" + }, + { + "baseId": "33015", + "text": "PI Q0(GRANITE FALLS)" + }, + { + "baseId": "33016", + "text": "PI NULL(BELLINGHAM)" + }, + { + "baseId": "33016", + "text": "PI Q0(BELLINGHAM)" + }, + { + "baseId": "33017", + "text": "PI NULL(MATTAWA)" + }, + { + "baseId": "33018", + "text": "PI NULL(PROCIDA)" + }, + { + "baseId": "33019", + "text": "PI NULL(HONG KONG 1)" + }, + { + "baseId": "33019", + "text": "PI Q0(HONG KONG 1)" + }, + { + "baseId": "33020", + "text": "PI NULL(BOLTON)" + }, + { + "baseId": "33020", + "text": "PI Q0(BOLTON)" + }, + { + "baseId": "33021", + "text": "Hemorrhagic disease due to alpha-1-antitrypsin Pittsburgh mutation" + }, + { + "baseId": "33022", + "text": "PI V(MUNICH)" + }, + { + "baseId": "33024", + "text": "PI W(BETHESDA)" + }, + { + "baseId": "33025", + "text": "PI NULL(DEVON)" + }, + { + "baseId": "33025", + "text": "PI Q0(DEVON)" + }, + { + "baseId": "33025", + "text": "PI NULL(NEWPORT)" + }, + { + "baseId": "33025", + "text": "PI Q0(NEWPORT)" + }, + { + "baseId": "33026", + "text": "PI NULL(LUDWIGSHAFEN)" + }, + { + "baseId": "33026", + "text": "PI Q0(LUDWIGSHAFEN)" + }, + { + "baseId": "33027", + "text": "PI NULL(RIEDENBURG)" + }, + { + "baseId": "33031", + "text": "PI S(IIYAMA)" + }, + { + "baseId": "33032", + "text": "PI Z(BRISTOL)" + }, + { + "baseId": "33033|33034|33035|33036|33037|33038|33039|33040|33041|133794|133795|133796|133797|133798|135660|140071|140073|140076|140078|140079|140081|140082|191988|194882|195288|201802|201803|201805|201808|201809|201816|201818|201819|201820|201821|201822|201823|201824|201827|201829|201830|201832|201833|201836|201837|201840|201842|201843|201846|201847|207150|207151|207152|221553|221554|221555|239636|251612|259803|259805|259807|264223|268025|271298|273031|295016|295023|295025|295026|295027|295033|295034|295042|295043|295044|295045|295051|295062|295064|295071|295075|295076|295079|295080|295085|296784|296785|296790|296815|296834|296844|296854|296855|296862|296863|296864|296868|296870|296877|296898|296902|296903|296904|300521|300526|300529|300530|300533|300535|300538|300539|300544|300545|300549|300551|300576|300578|300583|300589|300591|300593|300594|300595|300599|300601|300604|300605|300606|300607|300608|300627|300629|300635|300644|300649|300659|300660|300661|300663|359534|359635|360865|367843|368094|368095|368097|368112|368201|369423|369437|369462|394498|394570|394576|394748|394752|395013|395016|395021|406607|406608|414979|421513|443656|443657|454167|454169|454172|454178|454326|454327|454651|454656|454658|454968|454970|454973|454977|454981|500624|500625|520437|520667|520671|520943|551696|551736|551744|559827|559975|559977|559979|560090|560092|560094|560096|562574|562577|562580|564434|564435|564437|579014|579107|612270|614278|620178|620179|632894|632895|632896|632897|632898|632899|632900|632901|632902|632903|632904|632905|632906|632907|651290|651336|651338|683657|683658|685166|685167|695255|782112|790511|790512|819530|819531|829857|829858|829859|829860|829861|829862|829863|829864|829865|829866|829867|829868|829869|829870|829871|829872|829873|829874|829875|829876|829877|829878|829879|829880|829881|829882|829883|829884|829885|829886|829887|851242|851833|892696|892697|892698|892699|892700|892701|892702|892703|892704|892705|892706|892707|892708|892709|892710|892711|892712|892713|892714|892715|892716|892717|892718|892719|892720|892721|892722|892723|892724|892725|892726|892727|892728|892729|892730|892731|896020|896021|923732|923733|923734|923735|923736|932590|932591|932592|932593|932594|932595|940793|944260|944261|944262|944263|944264|944265|944266|953930|953931|953932|959743", + "text": "Pyridoxine-dependent epilepsy" + }, + { + "baseId": "33034|171000|263288|263304|360865|434101|434634|514142|535230|621022|621038", + "text": "Ventriculomegaly" + }, + { + "baseId": "33042|33043|33044|33045|33046|33047|33048|33049|33050|33051|33052|33053|33054|33055|33056|33058|33059|33060|33061|33062|33063|33064|33065|33066|33067|33068|33069|33070|33071|33072|33073|33074|33075|33076|33077|33078|33079|33080|33081|33082|33083|33084|33085|171055|185953|212078|221086|221087|238195|238196|238197|238198|249550|249551|277476|277479|277664|277668|278553|278556|354054|390735|390945|390949|447428|515311|515312|515340|515378|515387|557060|588364|615292|615293|615295|615296|615297|615298|615299|615300|615301|615302|615303|615304|615305|615306|615308|615855|615856|615857|615862|623052|627124|627125|627126|627127|627128|627129|650597|682730|685586|818873|823017|823018|823019|823020|858875|862838|862839|862840|862841|862842|862843|865041|930172|930173|930174|941582|941583|952147|952148|952149", + "text": "Antithrombin III deficiency" + }, + { + "baseId": "33050|33053|33062|33069|33077|171055", + "text": "Antithrombin deficiency" + }, + { + "baseId": "33086", + "text": "ANTICHYMOTRYPSIN ISEHARA 1" + }, + { + "baseId": "33086", + "text": "Peripheral arterial occlusive disease 1" + }, + { + "baseId": "33087", + "text": "ANTICHYMOTRYPSIN ISEHARA 2" + }, + { + "baseId": "33088", + "text": "ANTICHYMOTRYPSIN BOCHUM 1" + }, + { + "baseId": "33089", + "text": "ANTICHYMOTRYPSIN BONN 1" + }, + { + "baseId": "33090", + "text": "ANTICHYMOTRYPSIN SIGNAL PEPTIDE POLYMORPHISM" + }, + { + "baseId": "33091|75619|106632|513315|622400", + "text": "CD59-mediated hemolytic anemia with or without immune-mediated polyneuropathy" + }, + { + "baseId": "33093|33094|237208|248709|248710|248711|248712|324964|324967|324968|324973|324979|324983|334633|334634|334636|334637|334639|334654|341120|341121|341123|341124|341129|342656|342663|342665|342668|342669|342670|342672|342673|620537|626244|740096|799951|816335|875085|875086|875087|875088|875089|875090|875091|875092|875093|875094|875095|875096|961968|961969|982005", + "text": "Common variable immunodeficiency 3" + }, + { + "baseId": "33095|33098", + "text": "Long QT syndrome 4" + }, + { + "baseId": "33095|33096|33097|33098|33099|44351|44354|44355|78492|78493|78495|78499|78500|78502|140083|140087|140089|140090|140093|140094|140097|140100|140101|140103|178533|178534|178536|178537|186018|188336|188337|188338|188344|188353|188374|188375|188379|188391|188392|188395|188401|188402|188405|188407|188408|189229|189235|189236|189238|189240|189243|189244|189245|189247|189248|189249|189250|189251|194641|212344|212346|221429|221431|221432|224288|224294|224296|236765|239301|239302|239303|239306|239309|239310|239311|239312|239316|239317|239318|239321|239324|239325|239326|239329|244014|251312|251313|251314|251315|258327|258329|258338|258339|258341|258353|273618|292034|292040|292041|292043|292053|292056|292060|292064|292066|292067|292069|292075|292076|292088|292089|292098|292103|293481|293482|293483|293484|293487|293492|293501|293502|293511|293513|293515|293527|293529|293540|293541|296777|296787|296794|296795|296796|296797|296801|296806|296807|296808|296809|296810|296812|296816|296817|296818|296821|296822|296824|296827|296828|296829|296831|296832|296833|296836|296840|296850|296858|296859|367497|367765|367776|367781|367784|367787|367801|367802|367811|367820|368850|393789|393813|393819|393846|393855|393874|394224|394286|425591|452857|453232|453286|500388|500695|501013|509640|509656|509658|509677|512812|519702|519718|536659|536660|551771|613402|620771|631885|683611|686483|686486|686487|730256|795505|795507|828685|889971|889972|889973|889974|889975|889976|889977|889978|889979|889980|889981|889982|889983|889984|889985|889986|889987|889988|889989|889990|889991|889992|889993|889994|889995|889996|889997|889998|889999|890000|890001|890002|890003|890004|890005|890006|890007|890008|890009|890010|890011|890012|890013|890014|890015|890016|890017|890018|890019|890020|890021|890022|891738|891739|891740|891741|891742|918871|918872|961268", + "text": "Cardiac arrhythmia, ankyrin B-related" + }, + { + "baseId": "33100", + "text": "ANGIOTENSIN I-CONVERTING ENZYME INSERTION/DELETION POLYMORPHISM" + }, + { + "baseId": "33100", + "text": "Microvascular complications of diabetes 3" + }, + { + "baseId": "33100", + "text": "Stroke, hemorrhagic, susceptibility to" + }, + { + "baseId": "33100", + "text": "Severe acute respiratory syndrome, progression of" + }, + { + "baseId": "33100|33107", + "text": "Susceptibility to progression to renal failure in IgA nephropathy" + }, + { + "baseId": "33101", + "text": "Angiotensin i-converting enzyme, benign serum increase" + }, + { + "baseId": "33107", + "text": "Preeclampsia, susceptibility to" + }, + { + "baseId": "33108", + "text": "Crohn disease, association with" + }, + { + "baseId": "33112|33113|33114|33115|33116|33117|33118|33119|33120|33121|254908|320276|320277|320278|320290|328854|328855|328869|328872|328873|328874|328877|335460|335468|335469|335472|335474|335476|337328|337329|337360|796983|871686|871687|871688|871689|871690|871691|871692|871693|871694|872358", + "text": "Amyotrophic lateral sclerosis type 9" + }, + { + "baseId": "33122|33123|33124|33125|34247|34719|76578|76579|80472|137196|137197|137198|137199|137200|137201|137202|137203|137204|137205|137206|137207|137208|137209|137210|137211|137212|137213|137214|137215|137216|137217|137218|137219|137220|137221|137222|137223|137224|214506|214507|214508|214509|214510|214511|214512|214513|214514|214515|215257|238704|238705|238706|238707|238708|238709|238710|238711|238712|238713|238714|238715|238716|238717|238718|238719|238720|238721|238722|238723|238724|238725|238726|238727|238728|238729|238730|238731|238732|238733|238734|238735|238736|238737|238738|238739|238740|238741|238742|238743|238744|238745|238746|238747|238748|238749|238750|238751|238752|238753|238754|238755|238756|238757|238758|238759|238760|238761|238762|238763|238764|250715|250716|250717|250718|250719|250720|250721|250722|250723|250724|285946|285952|285953|285967|285968|285971|285972|285982|285985|285989|285994|285999|286002|286018|286019|286731|286738|286740|286754|286756|286757|286758|286759|286765|286766|288958|288976|288984|288986|288988|288992|288993|288996|288997|288998|289004|289005|289006|289007|289015|289021|289022|289028|289079|289362|289366|289376|289378|289379|289385|289402|289420|289422|289425|366357|366537|366611|392510|392530|392534|392535|392539|392540|392550|392551|392553|392559|392560|392563|392565|392572|392576|392579|392583|392585|392588|392590|392593|392594|392595|392601|392603|392606|392607|392609|392610|392611|392612|392614|392620|392622|392623|392625|392626|392629|392630|392631|392633|392636|392638|392641|392643|392644|392646|392648|392652|392655|392657|392659|392662|392663|392668|392673|392676|392677|392680|392682|392688|392695|392696|392700|392702|392709|392711|392714|392715|392720|392722|392732|392734|392737|392740|392741|392745|392748|392751|392753|392756|392757|392760|392769|392772|392773|392778|392781|392782|392783|392785|392788|392797|392802|392865|392871|392872|392875|392891|392899|392901|392912|392913|392915|392917|392935|392938|392940|392953|392955|392959|392960|392961|392970|392972|392974|392987|392996|393006|405716|448538|448539|450698|450700|450708|450709|450714|450720|450721|450723|450729|450731|450733|450740|450741|450743|450746|450749|450752|450760|450767|450770|450775|450782|450783|450784|450791|450792|450796|450803|450806|450809|450810|450811|450812|450813|450814|450815|450817|450819|450820|450823|450824|450827|450830|450831|450833|450837|450842|450845|450846|450847|450855|450858|450860|450874|450875|450882|450890|450893|450894|450895|450896|450903|450905|450907|450912|450921|450922|450924|450926|450929|450931|450934|450935|450945|450946|450950|450953|450963|450966|450969|450970|450973|450974|450975|450978|450979|450983|450989|450995|451001|451005|451006|451008|451013|451015|451016|451021|451023|451024|451025|451026|451028|451029|451030|451034|451035|451038|451043|451044|451046|451048|451049|451050|451051|451052|451053|451054|451055|451056|451058|451059|451060|451061|451064|451065|451068|451069|451071|451072|451074|451076|451078|451079|451080|451081|451083|451091|451094|451095|451098|451099|451100|451101|451104|451106|451107|451110|451112|451113|451115|451117|451118|451122|451124|451125|451126|451127|451128|451135|451136|451139|451140|451144|451146|451147|451148|451152|451153|451154|451157|451160|451162|451169|451171|472683|472684|472686|472731|472732|472764|472769|472776|472777|472784|499664|499916|500154|516186|518022|518027|518038|518039|518051|518055|518059|518060|518064|518066|518068|518069|518070|518073|518078|518080|518081|518082|518083|518084|518085|518086|518087|518088|518089|518090|518092|518095|518096|518098|518100|518101|518105|518106|518107|518108|518109|518110|518113|518114|518115|518116|518119|518120|518121|518122|518123|518124|518127|518129|518130|518131|518132|518133|518134|518135|518138|518139|518140|518142|518143|518144|518145|518146|518147|518149|518150|518151|518152|518153|518155|518156|518158|518159|518160|518161|518162|518163|518164|518165|518166|518167|518168|518169|518170|518171|518172|518173|518174|518176|518177|518179|518180|518181|518182|518184|518187|518189|518190|518194|518196|518200|518202|518204|518210|518211|518212|518214|518216|518217|518221|518223|518224|518225|518230|518232|518233|518234|518235|518236|518238|518248|518250|518252|518261|518263|518271|518272|518276|518280|518283|518284|518286|518292|518296|518298|557994|557996|557998|558000|558002|558017|558021|558023|558025|558027|558029|558031|558033|558035|558037|558039|558041|558043|558045|558047|558049|558051|558053|558055|558057|558059|558061|558063|558065|558344|558346|558348|558350|558352|558354|558356|558358|558360|558362|558364|558366|558368|558370|558372|558374|558376|558378|558380|558382|558384|558386|558388|558390|558392|558394|558396|558398|558400|558402|558404|558406|558408|558410|558412|558414|558416|558418|558420|558422|558424|558426|560573|560575|560577|560579|560581|560583|560585|560587|560589|560591|560593|560595|560597|560599|560601|560603|560605|560607|560609|560611|560613|560615|561274|561275|561279|561283|561289|561295|561297|561305|561311|561317|561320|561321|561323|561324|561335|561337|561338|561339|561348|561356|561359|561360|561363|561365|561366|561368|561371|561392|561401|561405|561410|561414|561416|561421|561423|561426|561430|561443|561454|612029|629793|629794|629795|629796|629797|629798|629799|629800|629801|629802|629803|629804|629805|629806|629807|629808|629809|629810|629811|629812|629813|629814|629815|629816|629817|629818|629819|629820|629821|629822|629823|629824|629825|629826|629827|629828|629829|629830|629831|629832|629833|629834|629835|629836|629837|629838|629839|629840|629841|629842|629843|629844|629845|629846|629847|629848|629849|629850|629851|629852|629853|629854|629855|629856|629857|629858|629859|629860|629861|629862|629863|629864|629865|629866|629867|629868|629869|629870|629871|629872|629873|629874|629875|629876|629877|629878|629879|629880|629881|629882|629883|629884|629885|629886|629887|629888|629889|629890|629891|629892|629893|629894|629895|629896|629897|629898|629899|629900|629901|629902|629903|629904|629905|629906|629907|629908|629909|629910|629911|629912|629913|629914|629915|629916|629917|629918|629919|629920|629921|629922|629923|629924|629925|629926|629927|629928|629929|629930|629931|629932|629933|629934|629935|629936|629937|629938|629939|629940|629941|629942|629943|650750|650757|650827|650828|650924|650931|650951|650952|650983|650987|651016|651021|651031|651038|655442|683495|683496|683497|683498|683499|683500|686176|686177|686178|686179|686180|686181|686182|686183|686184|686185|686186|686188|686189|686191|686192|686194|686195|686196|686197|689713|689714|689715|689716|691123|691124|691125|691127|691128|691129|691134|691135|691136|691138|691141|691142|691144|691145|691146|691148|695143|697542|697544|697545|697546|697547|697548|708229|719841|719842|733444|733445|733446|733447|747580|747582|747585|747587|747588|763168|763170|763171|763173|763175|763177|763180|763182|763191|774821|777269|777309|778981|781300|781301|781306|781307|781308|806891|806897|806904|806906|806917|819151|819152|819153|819154|819155|826268|826269|826270|826271|826272|826273|826274|826275|826276|826277|826278|826279|826280|826281|826282|826283|826284|826285|826286|826287|826288|826289|826290|826291|826292|826293|826294|826295|826296|826297|826298|826299|826300|826301|826302|826303|826304|826305|826306|826307|826308|826309|826310|826311|826312|826313|826314|826315|826316|826317|826318|826319|826320|826321|826322|826323|826324|826325|826326|826327|826328|826329|826330|826331|826332|826333|826334|826335|826336|826337|826338|826339|826340|826341|826342|826343|826344|826345|826346|826347|826348|826349|826350|826351|826352|826353|826354|826355|826356|826357|826358|826359|826360|826361|826362|826363|826364|826365|826366|826367|826368|826369|826370|826371|826372|826373|826374|826375|826376|826377|826378|826379|826380|826381|826382|826383|826384|826385|826386|826387|826388|826389|826390|826391|826392|826393|826394|826395|826396|826397|826398|826399|826400|826401|826402|826403|826404|826405|826406|826407|826408|826409|826410|826411|826412|826413|850853|850855|850857|850859|850900|850902|851172|851174|851176|851420|851422|851424|851426|851428|884675|884676|884677|884678|884679|884680|884681|884682|884683|884684|884685|884686|884687|884688|884689|884690|884691|884692|884693|884694|884695|884696|884697|884698|884699|884700|884701|884702|916863|922693|922694|922695|922696|922697|922698|922699|922700|922701|922702|922703|922704|922705|922706|922707|922708|922709|922710|922711|922712|922713|922714|922715|922716|922717|922718|922719|922720|922721|922722|922723|922724|922725|922726|922727|922728|922729|922730|922731|922732|922733|922734|922735|922736|922737|922738|922739|922740|922741|922742|922743|922744|922745|922746|922747|922748|931335|931336|931337|931338|931339|931340|931341|931342|931343|931344|931345|931346|931347|931348|931349|931350|931351|931352|931353|931354|931355|931356|931357|931358|931359|931360|931361|931362|931363|931364|931365|931366|931367|931368|931369|931370|931371|931372|931373|931374|931375|931376|931377|931378|931379|939886|939887|939888|939889|939890|940706|942839|942840|942841|942842|942843|942844|942845|942846|942847|942848|942849|942850|942851|942852|942853|942854|942855|942856|942857|942858|942859|942860|942861|942862|942863|942864|942865|942866|942867|942868|942869|942870|942871|942872|942873|942874|942875|942876|942877|942878|942879|942880|942881|942882|942883|942884|942885|942886|942887|942888|942889|942890|953056|953057|953058|953059|953060|953061|953062|953063|953064|953065|953066|953067|953068|953069|953070|953071|953072|953073|953074|953075|953076|953077|953078|953079|953080|953081|959636|959637|959638|959639|959640|960473|960474", + "text": "Neuroblastoma 3" + }, + { + "baseId": "33126", + "text": "ABeta amyloidosis, Dutch type" + }, + { + "baseId": "33127|33128|33129|33130|33132|33133|33134|33135|33136|33137|33139|33141|33144", + "text": "Alzheimer disease, type 1" + }, + { + "baseId": "33130", + "text": "ABetaA21G amyloidosis" + }, + { + "baseId": "33137", + "text": "ABeta amyloidosis, Arctic type" + }, + { + "baseId": "33138", + "text": "ABeta amyloidosis, Italian type" + }, + { + "baseId": "33140", + "text": "ABeta amyloidosis, Iowa type" + }, + { + "baseId": "33142", + "text": "CEREBRAL AMYLOID ANGIOPATHY, APP-RELATED, PIEDMONT VARIANT" + }, + { + "baseId": "33143", + "text": "Alzheimer disease, early-onset, with cerebral amyloid angiopathy" + }, + { + "baseId": "33146|33147", + "text": "Serum amyloid a variant" + }, + { + "baseId": "33148|33149|33150|33151|33152|33153|171740|538360|720546|720547|788766|961766", + "text": "Aminoacylase 1 deficiency" + }, + { + "baseId": "33162|33162|33163|33163|33164|33164|33165|33166|33166|33167|33168|33169|33170|33170|33171|33172|33173|33174|33175|33175|33176|33177|33179|33180|33181|33182|33182|33184|33184|33185|33186|33187|33187|33188|33189|33191|33194|33194|33195|33196|33196|33197|33878|33879|33880|33880|33881|46864|103896|103896|103907|103907|103914|103915|103918|103940|103945|103957|103973|103986|103986|103993|104001|125778|255044|255044|321078|321082|321094|321095|321099|321113|321115|321116|321117|321121|321122|321123|321124|330240|330240|330241|330246|330247|330249|330252|330254|330266|330269|330275|330278|330285|330286|330289|330296|330302|330308|330316|330317|330321|330326|336728|336729|336729|336730|336732|336733|336754|336762|336763|336767|336768|336779|336790|336808|336809|338737|338739|338744|338744|338747|338748|338752|338754|338755|338758|338759|338765|338767|338772|338773|338776|338777|338781|568253|569009|577364|577367|614153|622845|626017|642667|642668|642669|642670|642671|642672|642673|642673|642674|677120|680052|693590|693591|739304|739304|798677|841713|841714|841715|841716|841717|841718|872417|872418|872419|872420|872421|872422|872423|872424|872425|872426|872427|872428|872429|872430|872431|872432|872433|872434|872435|872436|872437|872438|872439|872440|872441|872442|872443|872444|872445|872446|872447|872448|872449|872450|872451|872452|872453|872454|872455|872456|872457|872458|872459|872460|872461|872462|872463|872464|936704|948648|957292|957293|980493", + "text": "Alzheimer disease, type 3" + }, + { + "baseId": "33162|33163|33164|33166|33170|33175|33182|33184|33187|33194|33195|33196|33880|38560|46864|103896|103907|103914|103918|103940|103945|103957|103986|104001|255044|330240|336729|338744|568253|569009|577364|577367|642667|642668|642669|642670|642671|642672|642673|642674|693591|739304|841713|841714|841715|841716|841717|841718|936704|948648|957292|957293", + "text": "Acne inversa, familial, 3" + }, + { + "baseId": "33171|33173|33178", + "text": "Alzheimer disease, familial, with spastic paraparesis and unusual plaques" + }, + { + "baseId": "33175|33195|103896|103957|103986|255044|321078|321082|321094|321095|321099|321113|321115|321116|321117|321121|321122|321123|321124|330240|330241|330246|330247|330249|330252|330254|330266|330269|330275|330278|330285|330286|330289|330296|330302|330308|330316|330317|330321|330326|336728|336729|336730|336732|336733|336754|336762|336763|336767|336768|336779|336790|336808|336809|338737|338739|338744|338747|338748|338752|338754|338755|338758|338759|338765|338767|338772|338773|338776|338777|338781|642673|693590|739304|872417|872418|872419|872420|872421|872422|872423|872424|872425|872426|872427|872428|872429|872430|872431|872432|872433|872434|872435|872436|872437|872438|872439|872440|872441|872442|872443|872444|872445|872446|872447|872448|872449|872450|872451|872452|872453|872454|872455|872456|872457|872458|872459|872460|872461|872462|872463|872464", + "text": "Cardiomyopathy, dilated, 1u" + }, + { + "baseId": "33183|33192", + "text": "Alzheimer disease, familial, 3, with spastic paraparesis and apraxia" + }, + { + "baseId": "33187|33198", + "text": "Alzheimer disease, familial, 3, with unusual plaques" + }, + { + "baseId": "33190|33193", + "text": "Alzheimer disease, familial, 3, with spastic paraparesis and unusual plaques" + }, + { + "baseId": "33201|33201|33204|193403|195223|209357|338339|338345|338346|338348|347988|347989|347992|347993|347994|347997|347998|348003|348005|348006|351725|351726|351728|351729|351731|351735|351736|351737|351738|351740|351741|351742|351744|352616|352617|352618|352619|352620|352621|352621|352622|352623|352624|574145|575274|575275|649535|649536|649537|717487|729224|742946|742947|742948|742949|745348|758120|849391|891370|891371|891372|891373|891374|891375|891376|891377|891378|891379|891380|891381|891382|891383|891384|891385|891386|891387|891388|929500", + "text": "Alpha-N-acetylgalactosaminidase deficiency type 1" + }, + { + "baseId": "33201", + "text": "Alpha-N-acetylgalactosaminidase deficiency" + }, + { + "baseId": "33201|33201|33202|33203|33204|33205|193403|195223|338339|338345|338346|338348|347988|347989|347992|347993|347994|347997|347998|348003|348005|348006|351725|351726|351728|351729|351731|351735|351736|351737|351738|351740|351741|351742|351744|352616|352617|352618|352619|352620|352621|352621|352622|352623|352624|717487|729224|758120|891370|891371|891372|891373|891374|891375|891376|891377|891378|891379|891380|891381|891382|891383|891384|891385|891386|891387|891388|920430", + "text": "Alpha-N-acetylgalactosaminidase deficiency type 2" + }, + { + "baseId": "33204", + "text": "Schindler disease, type 3" + }, + { + "baseId": "33205|620691", + "text": "NAGA-Related Disorders" + }, + { + "baseId": "33207|205354", + "text": "Alpha-fetoprotein, hereditary persistence of" + }, + { + "baseId": "33208|33209", + "text": "Alpha-fetoprotein deficiency" + }, + { + "baseId": "33210|33211|33212|33213|390084", + "text": "ALPHA-2-MACROGLOBULIN POLYMORPHISM" + }, + { + "baseId": "33216|33217|324993|324996|324997|325002|334656|334661|334670|334679|334682|334685|334686|334687|341138|341139|341140|342677|342680|342681|342683|342686|342687|342688|374354|375130|377510|377519|445566|495606|567499", + "text": "HNSHA due to aldolase A deficiency" + }, + { + "baseId": "33218|33219|33221|33222|33429", + "text": "Alcohol dependence" + }, + { + "baseId": "33221", + "text": "Aerodigestive tract cancer, squamous cell, alcohol-related, protection against" + }, + { + "baseId": "33223", + "text": "PROALBUMIN LILLE" + }, + { + "baseId": "33225", + "text": "PROALBUMIN TAKEFU" + }, + { + "baseId": "33226", + "text": "ALBUMIN BLENHEIM" + }, + { + "baseId": "33227", + "text": "ALBUMIN NAGASAKI 3" + }, + { + "baseId": "33228", + "text": "ALBUMIN YANOMAMA 2" + }, + { + "baseId": "33229", + "text": "ALBUMIN NAGOYA" + }, + { + "baseId": "33231", + "text": "ALBUMIN TAGLIACOZZO" + }, + { + "baseId": "33231|33252|33258|33259|33264|33266|33277|33278|294150|294151|294156|294159|294171|294172|295662|295666|295684|295692|295696|295697|295698|299435|299436|299437|299439|299444|299451|299454|299457|299459|299464|299465|299466|299470|299473|779052|892201|892202|892203|892204|892205|892206|892207|892208|892209|892210|892211|892212|892213|892214|892215|892216|892217|892218|892219|895995", + "text": "Hyperthyroxinemia, familial dysalbuminemic" + }, + { + "baseId": "33232", + "text": "ALBUMIN REDHILL" + }, + { + "baseId": "33233", + "text": "ALBUMIN ROMA" + }, + { + "baseId": "33234", + "text": "ALBUMIN HIROSHIMA 1" + }, + { + "baseId": "33235", + "text": "ALBUMIN COARI I" + }, + { + "baseId": "33236", + "text": "ALBUMIN PARKLANDS" + }, + { + "baseId": "33237", + "text": "ALBUMIN NASKAPI" + }, + { + "baseId": "33238", + "text": "ALBUMIN NAGASAKI 2" + }, + { + "baseId": "33239", + "text": "ALBUMIN TOCHIGI" + }, + { + "baseId": "33240", + "text": "ALBUMIN HIROSHIMA 2" + }, + { + "baseId": "33241", + "text": "ALBUMIN VANCOUVER" + }, + { + "baseId": "33243", + "text": "ALBUMIN MEXICO 2" + }, + { + "baseId": "33244", + "text": "ALBUMIN FUKUOKA 1" + }, + { + "baseId": "33245", + "text": "ALBUMIN OSAKA 1" + }, + { + "baseId": "33246", + "text": "ALBUMIN B" + }, + { + "baseId": "33248", + "text": "ALBUMIN VANVES" + }, + { + "baseId": "33249|33263|166089|166091|166092|166093|166094|166099|166100|166102|166103|166104|624071", + "text": "Analbuminemia" + }, + { + "baseId": "33250", + "text": "ALBUMIN VENEZIA" + }, + { + "baseId": "33251", + "text": "ALBUMIN CASTEL DI SANGRO" + }, + { + "baseId": "33252", + "text": "PROALBUMIN MALMO" + }, + { + "baseId": "33253", + "text": "PROALBUMIN JAFFNA" + }, + { + "baseId": "33254", + "text": "ALBUMIN HAWKES BAY" + }, + { + "baseId": "33256", + "text": "ALBUMIN TORINO" + }, + { + "baseId": "33257", + "text": "ALBUMIN VIBO VALENTIA" + }, + { + "baseId": "33258", + "text": "ALBUMIN CASEBROOK" + }, + { + "baseId": "33259", + "text": "ALBUMIN IOWA CITY 1" + }, + { + "baseId": "33260", + "text": "ALBUMIN KOMAGOME 2" + }, + { + "baseId": "33261", + "text": "ALBUMIN RUGBY PARK" + }, + { + "baseId": "33262", + "text": "ALBUMIN HERBORN" + }, + { + "baseId": "33265", + "text": "ALBUMIN LARINO" + }, + { + "baseId": "33266", + "text": "ALBUMIN TRADATE 2" + }, + { + "baseId": "33267", + "text": "ALBUMIN CASERTA" + }, + { + "baseId": "33268", + "text": "ALBUMIN BAZZANO" + }, + { + "baseId": "33269", + "text": "ALBUMIN ASOLA" + }, + { + "baseId": "33270", + "text": "ALBUMIN MALMO-95" + }, + { + "baseId": "33271", + "text": "ALBUMIN MALMO-10" + }, + { + "baseId": "33272", + "text": "ALBUMIN MALMO-47" + }, + { + "baseId": "33273", + "text": "ALBUMIN SONDRIA" + }, + { + "baseId": "33274", + "text": "ALBUMIN MALMO-5" + }, + { + "baseId": "33275", + "text": "ALBUMIN DUBLIN" + }, + { + "baseId": "33276", + "text": "ALBUMIN ORTONOVO" + }, + { + "baseId": "33279", + "text": "Analbuminemia baghdad" + }, + { + "baseId": "33280|132068|132069|133740|133742|133743|133744|133745|133747|133748|133749|133752|133753|133754|133755|133757|133758|133760|133761|133762|133763|133765|133767|133769|188780|206690|206692|206694|206696|237251|244114|246856|249305|249306|249307|249308|249311|249312|249313|249315|249316|249318|249319|249322|249325|249326|249327|249328|249332|249333|249335|249339|249343|249344|249345|249347|249349|266945|364282|364295|364314|364318|364322|364331|364332|364336|364341|384432|404872|421151|421152|427605|427606|427607|427608|427609|440337|442574|446941|446942|446944|446946|446948|446955|446960|446962|446965|446967|446970|446971|446973|446974|446975|446978|446994|446995|446997|447000|447003|447005|447008|447009|447011|447012|447013|447015|447016|447017|447019|447020|447021|447023|447024|447026|447027|447029|447030|447031|447038|447042|447043|447046|447048|447050|447053|447054|447056|447059|447061|447063|447066|447069|447070|447074|447075|447076|447077|447078|447080|447081|447082|447085|447087|447099|447103|447109|447111|447113|492915|492917|497951|497985|514861|514872|514874|514879|514887|514889|514898|514900|514901|514905|514907|514912|514915|514916|514918|514919|514922|514923|514924|514925|514927|514929|514931|514932|514934|514935|514936|514937|514938|514939|514940|514941|514942|514943|514944|514945|514946|514947|514948|514949|514950|514951|514952|514953|514954|514956|514957|514958|514959|514960|514961|514962|514963|514965|514966|514967|514968|514969|514970|514971|514972|514973|514975|514978|514979|514990|514994|515000|538325|556511|556516|556524|556526|556528|556530|556532|556534|556536|556538|556540|556541|556542|556549|556551|556553|556555|556557|556559|556561|556563|556565|556567|556569|556571|556573|556575|556577|556810|556812|556814|556816|556818|556820|556822|556824|556826|556828|556830|556832|556892|556894|556896|556898|556950|556952|556954|556956|556958|556960|556962|556964|556966|556968|556970|576385|584751|608899|623584|626088|626478|626479|626480|626481|626482|626483|626496|626498|626499|626500|626501|626502|626503|626504|626505|626506|626507|626508|626509|626510|626511|626512|626513|626514|626515|626516|626517|626518|626519|626520|626521|626522|626523|626524|626525|626526|626527|626528|626529|626530|626531|626532|626533|626534|626535|626536|626537|626538|626539|626540|626541|626542|626543|626544|626545|626546|626547|626548|626549|626550|626551|626552|626553|626554|626555|626556|626557|626558|626559|626560|626561|626562|626563|626564|626565|650554|650560|650608|650620|685509|690287|690290|690293|690296|690297|690298|690299|690300|690301|690302|690303|690304|690306|690307|690308|690310|690311|690313|690315|690316|690317|690318|690320|694991|694992|694994|694995|694996|695921|695926|695927|695929|695930|695931|695935|695936|695937|695940|695941|718044|718050|731512|731516|731517|731518|731523|731527|745508|745515|745516|758802|761017|761018|761027|774350|774364|776987|776988|778711|780250|780251|780252|789818|792818|818822|818832|818834|818835|822359|822360|822378|822388|822389|822390|822391|822392|822393|822394|822395|822396|822397|822398|822399|822400|822401|822402|822403|822404|822405|822406|822407|822408|822409|822410|822411|822412|822413|822414|822415|822416|822417|822418|822419|822420|822421|822422|822423|822424|822425|822426|822427|822428|822429|822430|822431|822432|822433|822434|822435|822436|822437|822438|822439|822440|822441|822442|822443|822444|822445|822446|822447|822448|822449|822450|822451|822452|822453|822454|822455|822456|822457|822458|822459|822460|822461|822462|822463|822464|822465|850703|850705|850708|850712|850714|920118|921541|921542|921543|921544|921545|921546|921547|921548|921549|921550|921551|921552|921553|921554|921555|921556|921557|921558|921559|929902|929903|929904|929905|929906|929907|929908|929909|929910|929911|929912|929913|929914|929915|929916|929917|929918|929919|929920|929921|929922|929923|929924|929925|929926|929927|929928|929929|929930|929931|940594|940595|941324|941336|941337|941338|941339|941340|941341|941342|941343|941344|941345|941346|941347|941348|951981|951988|951989|951990|951991|951992|951993|951994|951995|951996|951997|951998|951999|952000|959515|960398", + "text": "Myasthenic syndrome, congenital, 8" + }, + { + "baseId": "33282|33283|172167|172168", + "text": "Wilms tumor 2" + }, + { + "baseId": "33284|33285|33286|33287|33288|142855|142856|211025|292924|292925|292939|292946|292948|292953|292962|292964|292966|294301|294302|294306|294314|294317|294328|294329|294335|294338|294347|294350|294351|294353|297754|297773|297775|297786|297794|297800|297803|297804|297860|297861|297862|297872|297875|297877|297887|297888|679431|890501|890502|890503|890504|890505|890506|890507|890508|890509|890510|890511|890512|890513|890514|890515|890516|890517|890518|890519|890520|890521|890522|890523|890524|890525|890526|890527|890528", + "text": "Autosomal dominant progressive external ophthalmoplegia with mitochondrial DNA deletions 2" + }, + { + "baseId": "33288|76919|263776|263777|553379", + "text": "Mitochondrial DNA depletion syndrome 12b (cardiomyopathic type), autosomal recessive" + }, + { + "baseId": "33288|201345|513982", + "text": "Vertigo" + }, + { + "baseId": "33288|51905|171147|177203|189973|198075|198264|198952|240006|259847|400327|488530|551741|551746|621903|621904", + "text": "Left ventricular hypertrophy" + }, + { + "baseId": "33288", + "text": "Abnormality of mitochondrial metabolism" + }, + { + "baseId": "33288", + "text": "Mitochondrial respiratory chain defects" + }, + { + "baseId": "33289|33290|33291|33292|33293|33294|33295|33297|33298|33299|33300|33301|140030|188786|439807|447822|448089|448120|498579|515822|515847|515860|515909|515911|515915|556504|557031|557033|558483|558485|627767|627768|627769|627770|627771|627772|627773|627774|627775|627776|627777|627778|627779|627780|627781|650655|690584|690585|732392|732393|743745|746431|746432|823894|823895|823896|823897|823898|921995|921996|921997|921998|930472|952392", + "text": "Reticular dysgenesis" + }, + { + "baseId": "33302|33303|33304|33305|33306|33307|33308|389880|433354|609719|799577|799578|799579", + "text": "Adenylate kinase deficiency, hemolytic anemia due to" + }, + { + "baseId": "33309|99376|177486|190776|191176|195606|195919|312171|312172|312184|312186|312188|312190|312193|312194|312202|312203|312209|312213|312216|312217|312219|317937|317943|317955|317957|317958|317959|317964|317966|317975|317977|317978|323998|324002|324003|324004|324006|324007|324011|324018|324026|324027|324028|324732|324733|324754|324756|324768|324770|324773|324776|324785|324810|324812|324813|324814|324832|324834|324844|324845|324852|324866|701541|701542|866894|866895|866896|866897|866898|866899|866900|866901|866902|866903|866904|866905|866906|866907|866908|866909|866910|866911|866912|866913|866914|866915|866916|866917|866918|866919|866920|866921|866922|866923|866924|866925|866926|866927|866928|866929|866930|866931|866932|866933|866934|866935|868593|868594|868595|868596", + "text": "Erythrocyte AMP deaminase deficiency" + }, + { + "baseId": "33310|33311|33312|97347|98241|98243|98244|98245|98246|98249|177319|177482|177483|177484|177485|194781|270892|275938|276232|276344|515028|538326|549851|556855|626657|626658|650518|706593|758825|822575|920123|921598", + "text": "Muscle AMP deaminase deficiency" + }, + { + "baseId": "33313", + "text": "furosemide and spironolactone response - Efficacy" + }, + { + "baseId": "33314|611397|961609", + "text": "Developmental malformations-deafness-dystonia syndrome" + }, + { + "baseId": "33314|38553|38554|38555|38556|76956|132659|132660|132661|132662|132663|132664|132665|132666|132667|132668|132669|132670|133711|133712|133713|199788|214776|259236|259867|264344|275077|275078|369485|369492|369760|369768|371162|371165|371180|424622|431916|431917|439880|457795|457806|457809|457811|481330|486791|486792|486793|501752|501754|502395|511009|522949|522960|522967|523318|561639|561995|564314|611397|636203|683918|683919|683921|683922|687076|687077|687078|687079|687080|687081|687083|689881|689883|798586|816466|833728|906195|919107|924876|924877|945719|955181|961609|964293|964834|970524|970860", + "text": "Baraitser-Winter syndrome 1" + }, + { + "baseId": "33315|33316|33317|38552|38552|45281|53385|53386|76366|76367|139981|175327|197388|197393|197394|197396|197398|197402|197403|197832|227843|240891|240893|258662|258664|258665|258666|258668|258670|258672|258674|258675|259943|311573|311576|311579|317167|317169|323194|323198|350049|370978|370981|371600|371895|373591|373592|397529|397530|397973|398092|408018|460315|460317|460386|461149|461151|487766|502942|503845|510243|510244|525523|525527|525592|525595|525597|525598|525813|525937|525940|564034|564036|564038|564382|564889|566604|566606|569873|569887|582201|617616|624412|624413|639295|639296|639297|639298|639299|687678|768050|791010|820275|837454|837455|837456|837457|837458|852281|866511|866512|866513|866514|866515|866516|868528|911279|925973|935227|935228|947128|956270|956271|966481|967191", + "text": "Aortic aneurysm, familial thoracic 6" + }, + { + "baseId": "33315|210379|259161|485695|485735|485756", + "text": "Aortic aneurysm, familial thoracic 2" + }, + { + "baseId": "33316|33317|38552|38552|919302", + "text": "Moyamoya disease 5" + }, + { + "baseId": "33318|33319|33321|33322|33323|33324|33325|33328|33331|51272|51273|59459|99451|99452|99453|99454|99457|99460|132672|133708|193472|206767|206768|226438|228356|249757|249759|259655|279423|279424|279425|279717|280964|281106|281108|281109|361844|364872|364883|364928|364928|405080|414773|447511|447519|447520|447521|447522|447525|447527|447656|447661|447667|447669|447753|447757|447769|447775|447776|447779|447784|447811|447816|447818|447820|447824|447826|447828|447829|511241|515493|515569|515576|515612|515613|515614|552039|552040|556798|556800|556866|556868|556872|556877|556994|556999|557167|557169|558353|558355|608937|608938|627407|627408|627409|627410|627411|627412|627413|627414|627415|627416|627417|627418|627419|679734|679735|690509|690510|690511|696563|746245|746246|780594|789940|789941|789942|798465|805212|818933|823501|823502|823503|823504|823505|823506|823507|823508|823509|823510|823511|823512|850963|851287|858775|863829|863830|863831|863832|863833|863834|863835|921855|921856|921857|921858|921859|921860|921861|930338|941772|941773|941774|963224|963225", + "text": "Congenital myopathy with excess of thin filaments" + }, + { + "baseId": "33320", + "text": "Myopathy, actin, congenital, with excess of thin myofilaments" + }, + { + "baseId": "33322", + "text": "ACTA1-related myopathies" + }, + { + "baseId": "33326|33327", + "text": "Myopathy, actin, congenital, with cores" + }, + { + "baseId": "33333|33334|33335|33336|33337|33338|33339|33340|33341|49434|199814|255948|326781|326785|326786|336613|336616|336623|336625|336637|336644|342867|342871|342872|342882|344511|344518|344520|344521|344525|344528|344533|353363|876140|876141|876142|876143|876144|876145|876146|876154|876734|975954|975955|975956|975957|975958|975959|975960|975961|975962|975963|975964|975965|975966|975967|975968|975969|975970|975971|975972|975973|975974|975975|975976|975977|975978|975979|975980|975981|975982|975983|975984|975985|975986|975987|975988|975989|975990|975991|975992|975993|975994|975995|975996|975997|975998|975999|976000|976001|976002|976003|976004", + "text": "Adenine phosphoribosyltransferase deficiency" + }, + { + "baseId": "33335", + "text": "APRT deficiency, Japanese type" + }, + { + "baseId": "33342|33343|33343|33344|33344|33345|33346|33347|33347|45444|45444|45445|45446|45447|45448|45449|45450|45451|45451|45452|45453|45454|45454|75618|143031|143031|226683|226690|260167|328431|328433|328434|328440|328441|328443|328467|328468|328472|328474|328478|328480|338408|338409|338415|338417|338417|338424|338424|338425|338428|344456|344459|344462|344464|344467|344476|344477|344478|344481|344503|344508|344508|345883|345884|345892|345896|345898|345904|345907|345907|345908|345911|345915|360444|378188|378191|409927|422166|424450|445773|467668|486616|487705|505911|505914|505914|506816|506816|531014|531513|531516|531519|531531|569047|571120|571120|571121|571136|571358|571370|574457|574458|574459|574460|621567|621568|645887|645888|645889|645890|645891|645892|645893|645894|645895|645896|645897|645898|645899|645900|653270|727181|740752|740753|740754|740754|745289|755847|755848|755849|755850|771497|771498|771499|771500|788119|788121|791744|845333|845334|845335|845336|845337|845338|845339|845340|845341|877505|877506|877507|877508|877509|877510|877511|877512|877513|877514|877515|877516|877517|877518|877518|877519|877520|877521|877522|877523|877524|877525|880518|880519|928261|928262|928263|928264|928265|928266|928267|937929|937930|937931|940412|941181|949918|949919|949920|958106|960885|960886|965877", + "text": "Hyper-IgE recurrent infection syndrome 1, autosomal dominant" + }, + { + "baseId": "33343|33344|33347|45444|45451|45454|143031|226683|226690|260167|338417|338424|344508|345907|360444|378188|378191|409927|422166|445773|467668|487705|505911|505914|506816|531014|531513|531516|531519|531531|569047|571120|571121|571136|571358|571370|574457|574458|574459|574460|621567|621568|645887|645888|645889|645890|645891|645892|645893|645894|645895|645896|645897|645898|645899|645900|653270|727181|740752|740753|740754|745289|755847|755848|755849|755850|771497|771498|771499|771500|788119|788121|845333|845334|845335|845336|845337|845338|845339|845340|845341|877518|928261|928262|928263|928264|928265|928266|928267|937929|937930|937931|940412|941181|949918|949919|949920|958106|960885|960886", + "text": "STAT3 gain of function" + }, + { + "baseId": "33347|137057|137058|166237|174690|176632|260167|308206|308440|308499|308512|318386|319408|328429|328479|338410|344453|344510|345882|345900|345901|353855|621568", + "text": "Hyper-IgE syndrome" + }, + { + "baseId": "33348|33349|33350|38547|38548|38549|38550|38551|205405|213526|250303|250304|250305|282323|282333|282334|282339|282340|282348|282350|282351|283009|283010|283012|283013|283020|284579|284580|284581|284582|284583|284590|284594|284599|284600|284603|284982|284989|285001|285002|285006|285025|285029|285041|285044|759036|881263|881264|881265|881266|881267|881268|881269|881270|881271|881272|881273|882818|882819|961502|965346", + "text": "Progressive myositis ossificans" + }, + { + "baseId": "33351", + "text": "ACTININ, ALPHA-3 POLYMORPHISM" + }, + { + "baseId": "33351", + "text": "ACTN3 deficiency" + }, + { + "baseId": "33351", + "text": "Sprinting performance" + }, + { + "baseId": "33352|33352|44314|44315|44315|53062|53063|53066|53066|53068|53071|53071|53072|53072|53073|53073|53074|53075|53077|53077|53078|53078|53079|53080|53083|53084|53084|53085|53086|53086|53087|53088|53089|53089|53090|53090|53091|53092|53092|53093|53095|53096|53097|53098|53100|53100|53101|53102|53102|53103|53103|53104|53105|53106|53107|53109|53109|53111|53112|53112|53116|53117|53117|53118|53119|53119|53120|53120|53121|139985|139986|139987|139989|139990|139991|172391|172391|172392|172394|172394|172396|172397|172397|172400|172530|172533|172535|172537|172537|172538|172786|172787|172788|172928|172928|172929|187396|189393|189394|189395|189396|189396|189397|189402|189403|189403|198041|198042|198043|198044|198045|198048|198049|198050|198051|198054|198055|198056|198058|198058|198059|198059|198060|198061|198062|198067|198071|212080|212081|212084|212084|212085|214103|221090|221090|224194|228359|228362|228364|228365|238222|238222|238223|238224|238225|238227|238229|238230|257950|257951|257954|257955|257957|279741|279743|279744|279744|279746|279746|279753|279753|279754|279754|279767|279769|279774|280066|280075|280076|280076|280079|280085|280092|281356|281356|281358|281358|281360|281360|281364|281370|281372|281379|281380|281383|281385|281546|281547|281548|281555|281557|281557|281558|359244|359287|364787|364936|364942|364946|364967|364989|364991|364994|390978|390990|390991|390991|390994|391004|391005|391009|391009|391013|391017|391017|391026|391028|391033|391034|391079|391114|391131|391142|391145|391149|391151|421224|421225|421226|421226|433341|446925|446951|447588|447589|447590|447592|447595|447595|447597|447602|447602|447756|447760|447767|447774|447819|447821|447836|447840|447843|447845|447847|447849|447850|447866|447870|447873|447874|447877|447877|447881|447893|447897|447902|447906|447908|447918|508768|508768|509163|509164|509166|511047|515547|515549|515553|515572|515633|515637|515637|515645|515649|515651|515653|515654|515659|515662|515688|515690|515691|515695|515697|556523|556823|556825|556827|556829|557154|557156|557157|557161|557164|557166|557201|557203|557205|557207|557209|557211|558375|558377|558379|558381|558383|558385|558387|589825|614705|627509|627510|627511|627512|627513|627514|627515|627516|627517|627518|627519|627520|627521|627522|627523|627524|627525|627526|627527|627528|627529|627530|650621|650621|650626|650634|650693|685639|685639|685640|690535|690536|695036|732293|761741|794618|798985|818170|823612|823613|823614|823615|823616|823617|823618|823619|823620|823621|823622|823623|823624|823625|823626|823627|823628|823629|823630|823631|823632|823633|850702|863989|863989|863990|863991|863992|863993|863994|863995|863996|863997|863998|863999|864000|864001|864002|864003|864004|864005|864006|864007|864008|864009|864010|864011|864012|865149|921889|921890|921891|921892|921893|921894|921895|921896|921897|921898|930379|930380|930381|930382|930383|940624|941808|941809|941810|941811|941812|941813|941814|941815|941816|952324|952325|952326|952327|952328|952329|959546|959547|959548|960424", + "text": "Dilated cardiomyopathy 1AA" + }, + { + "baseId": "33353|33353|33506|81479|134525|134528|134529|134531|134532|134533|134538|134539|134541|134544|134546|134547|190794|190795|191009|191201|191360|191361|192306|192637|192744|192901|192902|193110|193176|193328|193778|193935|194049|194161|194190|194225|194622|194623|194663|194663|194724|207465|229551|229553|247538|252582|252585|252587|252591|252592|252593|252595|252596|252598|252599|252602|252605|252605|260441|266992|269526|269543|269666|270578|271452|271589|272236|273311|274147|274245|274249|274474|274633|275110|275294|275305|361442|361510|361643|361646|368889|368901|368907|368913|368914|368920|368921|369193|369195|369203|369209|369217|369450|369457|369461|369474|369475|369476|369478|369478|369479|369493|370763|370766|370768|370770|370774|370776|370783|370786|370790|370798|370810|406963|406963|406964|406965|406966|406967|406968|406969|406970|406971|406972|406973|406974|406976|413759|413761|419002|419002|419002|421617|425723|425724|425726|425727|425728|425730|428675|434759|434759|434759|439242|441034|441035|444055|444056|444058|444060|444060|444061|444062|456218|456220|456223|456224|456234|456236|456242|456249|456251|456253|456256|456257|456261|456262|456266|456270|456272|456279|456280|456286|456287|456289|456290|456291|456293|456295|456297|456303|456303|456303|456304|456306|456310|456320|456321|456327|456328|456330|456339|456343|456347|456349|456350|456356|456360|456362|456371|456377|456378|456381|456385|456390|456391|456395|456456|456483|456486|456488|456495|456502|456506|456510|456528|456536|456545|456547|456549|456551|456553|456554|456556|456565|456567|456569|456570|456575|456578|456588|456600|456604|456607|456608|456610|456614|456616|456618|456620|456621|456622|456630|456631|456633|456637|456640|456643|456644|456646|456652|456655|456656|456658|456659|456664|456666|456674|456676|456678|456680|456682|456686|456690|456692|456694|456759|456766|456776|456779|456780|456785|456788|456791|456793|456795|456796|456797|456800|456809|456812|456813|456814|456818|456819|456821|456823|456832|456842|456844|456847|456849|456849|456850|456851|456857|456869|456871|456872|456875|456875|456882|456895|456898|456899|456905|456911|456917|456924|456928|456930|456932|456937|456939|456941|456942|456943|456945|456947|456953|456965|456972|457159|457161|457162|457183|457185|457189|457191|457194|457196|457198|457199|457205|457211|457212|457215|457217|457224|457226|457233|457237|457239|457241|457246|457250|457252|457259|457261|457264|457267|457268|457271|457278|457279|457283|457284|457288|457289|457291|457297|457308|457311|457313|457317|457319|457321|457322|457327|457331|457333|457341|457352|457353|457355|457357|457361|457367|457368|457369|457374|457376|457378|457380|457383|457386|457389|457394|457400|457404|457407|457409|457412|480694|481130|486428|492692|496884|501557|501570|501809|501881|501908|501922|501935|502196|522156|522161|522165|522167|522171|522175|522177|522183|522191|522194|522203|522204|522206|522208|522214|522219|522222|522230|522234|522241|522244|522246|522250|522252|522254|522256|522260|522262|522265|522266|522269|522271|522274|522275|522281|522294|522308|522309|522311|522394|522401|522402|522405|522409|522420|522421|522424|522427|522429|522432|522436|522441|522443|522444|522452|522461|522462|522465|522470|522473|522483|522484|522485|522486|522488|522494|522495|522500|522503|522504|522505|522509|522510|522511|522513|522514|522516|522517|522520|522521|522522|522524|522526|522527|522529|522531|522532|522538|522541|522544|522546|522547|522551|522553|522556|522557|522558|522560|522565|522570|522575|522576|522577|522578|522579|522580|522581|522582|522583|522585|522588|522589|522593|522596|522597|522599|522601|522610|522613|522616|522623|522625|522631|522643|522647|522648|522650|522654|522657|522668|522671|522674|522676|522681|522682|522703|522704|522707|522711|522861|522862|522866|522870|522871|522876|522877|522881|522883|522888|522890|522893|522897|522901|522908|522913|522915|522917|522924|522926|522937|522939|522942|522945|522957|522959|522961|522964|522970|522971|522973|522974|522978|522981|522990|522993|522999|523001|523002|523014|523015|523017|523023|523026|523030|523031|523034|523036|523037|523040|540432|561284|561287|561288|561291|561293|561294|561298|561299|561303|561304|561309|561310|561313|561315|561316|561318|561325|561327|561330|561332|561334|561336|561341|561343|561344|561347|561350|561351|561357|561358|561362|561364|561369|561374|561375|561376|561377|561378|561378|561382|561388|561394|561408|561424|561431|561433|561435|561437|561438|561439|561445|561447|561448|561452|561456|561468|561469|561473|561474|561475|561476|561478|561479|561484|561484|561486|561487|561488|561490|561492|561508|561511|561512|561515|561516|561518|561523|561524|561531|564018|564020|564022|564025|564026|564028|564031|564033|564035|564042|564043|564046|564047|564049|564051|564053|564058|564062|564064|564073|564075|564077|564080|564081|564107|564109|564110|564112|564117|564120|564121|564126|564128|564130|566048|566394|566402|566410|566412|566415|566423|566424|566433|566436|566443|566444|566445|566446|566452|566453|566456|566456|566457|566460|566462|566465|566466|566467|566468|566472|566478|566486|566491|566493|566494|576933|576934|578453|578453|578454|585342|586604|588095|611672|611673|624343|624346|635627|635628|635629|635630|635631|635632|635633|635634|635635|635636|635637|635638|635639|635640|635641|635642|635643|635644|635645|635646|635647|635648|635649|635650|635651|635652|635653|635654|635655|635656|635657|635658|635659|635660|635661|635662|635663|635664|635665|635666|635667|635668|635669|635670|635671|635672|635673|635674|635675|635676|635677|635678|635679|635680|635681|635682|635683|635684|635685|635686|635687|635688|635689|635690|635691|635692|635693|635694|635695|635696|635697|635698|635699|635700|635701|635702|635703|635704|635705|635706|635707|635708|635709|635710|635711|635712|635713|635714|635715|635716|635717|635718|635719|635720|635721|635722|635723|635724|635725|635726|635727|635728|635729|635730|635731|635732|635733|635734|635735|635736|635737|635738|635739|635740|635741|635742|635743|635744|635745|635746|635747|635748|635749|635750|635751|635752|635753|635754|635755|635756|635757|635758|635759|635760|635761|635762|635763|635764|635765|635766|635767|635768|635769|635770|635771|635772|635773|635774|635775|635776|635777|635778|635779|651575|651581|651660|651667|651755|651766|655774|655776|682327|682327|689855|692132|692133|692134|692135|692136|692137|692138|692141|692142|692143|692144|692146|692147|692148|692149|692150|692151|692152|692154|692156|695348|695349|695350|699820|699821|699822|699824|699825|699826|699827|699829|699830|699831|699832|699833|699834|699837|699838|699840|710761|710762|710763|722301|722304|722305|722306|722308|735944|735948|735949|735950|735951|744303|744308|750400|750403|750404|750407|750408|750409|750410|750411|750413|750415|759624|759633|759735|759742|766055|766056|766058|766069|766072|766074|766077|766078|766079|766084|766085|766087|766090|766096|766097|766098|766104|775135|775294|775327|775343|777626|777677|777824|777828|777829|779304|782772|782775|782777|782780|782784|782785|782788|782790|787498|790693|790694|795960|795962|795966|819822|819823|819824|819825|819826|832981|832982|832983|832984|832985|832986|832987|832988|832989|832990|832991|832992|832993|832994|832995|832996|832997|832998|832999|833000|833001|833002|833003|833004|833005|833006|833007|833008|833009|833010|833011|833012|833013|833014|833015|833016|833017|833018|833019|833020|833021|833022|833023|833024|833025|833026|833027|833028|833029|833030|833031|833032|833033|833034|833035|833036|833037|833038|833039|833040|833041|833042|833043|833044|833045|833046|833047|833048|833049|833050|833051|833052|833053|833054|833055|833056|833057|833058|833059|833060|833061|833062|833063|833064|833065|833066|833067|833068|833069|833070|833071|833072|833073|833074|833075|833076|833077|833078|833079|833080|833081|833082|833083|833084|833085|833086|833087|833088|833089|833090|833091|833092|833093|833094|833095|833096|833097|833098|833099|833100|833101|833102|833103|833104|833105|833106|833107|833108|833109|833110|833111|833112|833113|833114|833115|833116|833117|833118|833119|833120|833121|833122|833123|833124|833125|833126|833127|833128|833129|851134|851136|851138|851140|851626|851628|851630|852058|852060|852062|852064|852337|852338|924654|924655|924656|924657|924658|924659|924660|924661|924662|924663|924664|924665|924666|924667|924668|924669|924670|924671|924672|924673|924674|924675|924676|924677|924678|924679|924680|924681|924682|924683|924684|924685|924686|924687|924688|924689|924690|924691|924692|924693|924694|924695|924696|924697|924698|924699|924700|933640|933641|933642|933643|933644|933645|933646|933647|933648|933649|933650|933651|933652|933653|933654|933655|933656|933657|933658|933659|933660|933661|933662|933663|933664|933665|933666|933667|933668|933669|933670|933671|933672|933673|933674|933675|933676|933677|933678|933679|933680|933681|933682|933683|933684|933685|933686|940062|940063|940064|940065|940870|945378|945379|945380|945381|945382|945383|945384|945385|945386|945387|945388|945389|945390|945391|945392|945393|945394|945395|945396|945397|945398|945399|945400|945401|945402|945403|945404|945405|945406|945407|945408|945409|945410|945411|945412|945413|945414|945415|945416|945417|945418|945419|945420|945421|945422|945423|945424|955016|955017|955018|955019|955020|955021|955022|955023|955024|955025|955026|955027|955028|955029|955030|955031|955032|955033|955034|955035|955036|955037|955038|955039|955040|955041|955042|955043|955044|955045|955046|955047|955048|955049|955050|959832|959833|959834|959835|960624|960625|960626|960627", + "text": "Myofibrillar myopathy, filamin C-related" + }, + { + "baseId": "33353|38545|38546|81479|134525|134528|134529|134531|134532|134533|134538|134539|134541|134544|134546|134547|190794|190795|191009|191201|191360|191361|192306|192637|192744|192901|192902|193110|193176|193328|193778|193935|194049|194161|194190|194225|194622|194623|194663|194663|194724|207465|229551|229553|247538|252582|252585|252587|252591|252592|252593|252595|252596|252598|252599|252602|252605|252605|260441|266992|269526|269543|269666|270578|271452|271589|272236|273311|274147|274245|274249|274474|274633|275110|275294|275305|361442|361510|361643|361646|368889|368901|368907|368913|368914|368920|368921|369193|369195|369203|369209|369217|369450|369457|369461|369474|369475|369476|369478|369478|369479|369493|370763|370766|370768|370770|370774|370776|370783|370786|370790|370798|370810|406963|406963|406963|406964|406965|406966|406967|406968|406969|406970|406971|406972|406973|406974|406976|413759|413761|419002|419002|421617|425723|425724|425726|425727|425728|425730|428675|434759|434759|439242|441034|441035|444055|444056|444058|444060|444060|444061|444062|456218|456220|456223|456224|456234|456236|456242|456249|456251|456253|456256|456257|456261|456262|456266|456270|456272|456279|456280|456286|456287|456289|456290|456291|456293|456295|456297|456303|456303|456303|456304|456306|456310|456320|456321|456327|456328|456330|456339|456343|456347|456349|456350|456356|456360|456362|456371|456377|456378|456381|456385|456390|456391|456395|456456|456483|456486|456488|456495|456502|456506|456510|456528|456536|456545|456547|456549|456551|456553|456554|456556|456565|456567|456569|456570|456575|456578|456588|456600|456604|456607|456608|456610|456614|456616|456618|456620|456621|456622|456630|456631|456633|456637|456640|456643|456644|456646|456652|456655|456656|456658|456659|456664|456666|456674|456676|456678|456680|456682|456686|456690|456692|456694|456759|456766|456776|456779|456780|456785|456788|456791|456793|456795|456796|456797|456800|456809|456812|456813|456814|456818|456819|456821|456823|456832|456842|456844|456847|456849|456849|456850|456851|456857|456869|456871|456872|456875|456875|456882|456895|456898|456899|456905|456911|456917|456924|456928|456930|456932|456937|456939|456941|456942|456943|456945|456947|456953|456965|456972|457159|457161|457162|457183|457185|457189|457191|457194|457196|457198|457199|457205|457211|457212|457215|457217|457224|457226|457233|457237|457239|457241|457246|457250|457252|457259|457261|457264|457267|457268|457271|457278|457279|457283|457284|457288|457289|457291|457297|457308|457311|457313|457317|457319|457321|457322|457327|457331|457333|457341|457352|457353|457355|457357|457361|457367|457368|457369|457374|457376|457378|457380|457383|457386|457389|457394|457400|457404|457407|457409|457412|480694|481130|486428|492692|496884|501557|501570|501809|501881|501908|501922|501935|502196|522156|522161|522165|522167|522171|522175|522177|522183|522191|522194|522203|522204|522206|522208|522214|522219|522222|522230|522234|522241|522244|522246|522250|522252|522254|522256|522260|522262|522265|522266|522269|522271|522274|522275|522281|522294|522308|522309|522311|522394|522401|522402|522405|522409|522420|522421|522424|522427|522429|522432|522436|522441|522443|522444|522452|522461|522462|522465|522470|522473|522483|522484|522485|522486|522488|522494|522495|522500|522503|522504|522505|522509|522510|522511|522513|522514|522516|522517|522520|522521|522522|522524|522526|522527|522529|522531|522532|522538|522541|522544|522546|522547|522551|522553|522556|522557|522558|522560|522565|522570|522575|522576|522577|522578|522579|522580|522581|522582|522583|522585|522588|522589|522593|522596|522597|522599|522601|522610|522613|522616|522623|522625|522631|522643|522647|522648|522650|522654|522657|522668|522671|522674|522676|522681|522682|522703|522704|522707|522711|522861|522862|522866|522870|522871|522876|522877|522881|522883|522888|522890|522893|522897|522901|522908|522913|522915|522917|522924|522926|522937|522939|522942|522945|522957|522959|522961|522964|522970|522971|522973|522974|522978|522981|522990|522993|522999|523001|523002|523014|523015|523017|523023|523026|523030|523031|523034|523036|523037|523040|540432|561284|561287|561288|561291|561293|561294|561298|561299|561303|561304|561309|561310|561313|561315|561316|561318|561325|561327|561330|561332|561334|561336|561341|561343|561344|561347|561350|561351|561357|561358|561362|561364|561369|561374|561375|561376|561377|561378|561378|561382|561388|561394|561408|561424|561431|561433|561435|561437|561438|561439|561445|561447|561448|561452|561456|561468|561469|561473|561474|561475|561476|561478|561479|561484|561484|561486|561487|561488|561490|561492|561508|561511|561512|561515|561516|561518|561523|561524|561531|564018|564020|564022|564025|564026|564028|564031|564033|564035|564042|564043|564046|564047|564049|564051|564053|564058|564062|564064|564073|564075|564077|564080|564081|564107|564109|564110|564112|564117|564120|564121|564126|564128|564130|566048|566394|566402|566410|566412|566415|566423|566424|566433|566436|566443|566444|566445|566446|566452|566453|566456|566456|566457|566460|566462|566465|566466|566467|566468|566472|566478|566486|566491|566493|566494|576933|576934|578408|578444|578453|578453|578454|585342|586604|588095|611672|611673|624343|624346|635627|635628|635629|635630|635631|635632|635633|635634|635635|635636|635637|635638|635639|635640|635641|635642|635643|635644|635645|635646|635647|635648|635649|635650|635651|635652|635653|635654|635655|635656|635657|635658|635659|635660|635661|635662|635663|635664|635665|635666|635667|635668|635669|635670|635671|635672|635673|635674|635675|635676|635677|635678|635679|635680|635681|635682|635683|635684|635685|635686|635687|635688|635689|635690|635691|635692|635693|635694|635695|635696|635697|635698|635699|635700|635701|635702|635703|635704|635705|635706|635707|635708|635709|635710|635711|635712|635713|635714|635715|635716|635717|635718|635719|635720|635721|635722|635723|635724|635725|635726|635727|635728|635729|635730|635731|635732|635733|635734|635735|635736|635737|635738|635739|635740|635741|635742|635743|635744|635745|635746|635747|635748|635749|635750|635751|635752|635753|635754|635755|635756|635757|635758|635759|635760|635761|635762|635763|635764|635765|635766|635767|635768|635769|635770|635771|635772|635773|635774|635775|635776|635777|635778|635779|651575|651581|651660|651667|651755|651766|655774|655776|682327|689855|692132|692133|692134|692135|692136|692137|692138|692141|692142|692143|692144|692146|692147|692148|692149|692150|692151|692152|692154|692156|695348|695349|695350|699820|699821|699822|699824|699825|699826|699827|699829|699830|699831|699832|699833|699834|699837|699838|699840|710761|710762|710763|722301|722304|722305|722306|722308|735944|735948|735949|735950|735951|744303|744308|750400|750403|750404|750407|750408|750409|750410|750411|750413|750415|759624|759633|759735|759742|766055|766056|766058|766069|766072|766074|766077|766078|766079|766084|766085|766087|766090|766096|766097|766098|766104|775135|775294|775327|775343|777626|777677|777824|777828|777829|779304|782772|782775|782777|782780|782784|782785|782788|782790|787498|795960|795962|795966|819822|819823|819824|819825|819826|832981|832982|832983|832984|832985|832986|832987|832988|832989|832990|832991|832992|832993|832994|832995|832996|832997|832998|832999|833000|833001|833002|833003|833004|833005|833006|833007|833008|833009|833010|833011|833012|833013|833014|833015|833016|833017|833018|833019|833020|833021|833022|833023|833024|833025|833026|833027|833028|833029|833030|833031|833032|833033|833034|833035|833036|833037|833038|833039|833040|833041|833042|833043|833044|833045|833046|833047|833048|833049|833050|833051|833052|833053|833054|833055|833056|833057|833058|833059|833060|833061|833062|833063|833064|833065|833066|833067|833068|833069|833070|833071|833072|833073|833074|833075|833076|833077|833078|833079|833080|833081|833082|833083|833084|833085|833086|833087|833088|833089|833090|833091|833092|833093|833094|833095|833096|833097|833098|833099|833100|833101|833102|833103|833104|833105|833106|833107|833108|833109|833110|833111|833112|833113|833114|833115|833116|833117|833118|833119|833120|833121|833122|833123|833124|833125|833126|833127|833128|833129|851134|851136|851138|851140|851626|851628|851630|852058|852060|852062|852064|852337|852338|924654|924655|924656|924657|924658|924659|924660|924661|924662|924663|924664|924665|924666|924667|924668|924669|924670|924671|924672|924673|924674|924675|924676|924677|924678|924679|924680|924681|924682|924683|924684|924685|924686|924687|924688|924689|924690|924691|924692|924693|924694|924695|924696|924697|924698|924699|924700|933640|933641|933642|933643|933644|933645|933646|933647|933648|933649|933650|933651|933652|933653|933654|933655|933656|933657|933658|933659|933660|933661|933662|933663|933664|933665|933666|933667|933668|933669|933670|933671|933672|933673|933674|933675|933676|933677|933678|933679|933680|933681|933682|933683|933684|933685|933686|940062|940063|940064|940065|940870|945378|945379|945380|945381|945382|945383|945384|945385|945386|945387|945388|945389|945390|945391|945392|945393|945394|945395|945396|945397|945398|945399|945400|945401|945402|945403|945404|945405|945406|945407|945408|945409|945410|945411|945412|945413|945414|945415|945416|945417|945418|945419|945420|945421|945422|945423|945424|955016|955017|955018|955019|955020|955021|955022|955023|955024|955025|955026|955027|955028|955029|955030|955031|955032|955033|955034|955035|955036|955037|955038|955039|955040|955041|955042|955043|955044|955045|955046|955047|955048|955049|955050|959832|959833|959834|959835|960624|960625|960626|960627", + "text": "Myopathy, distal, 4" + }, + { + "baseId": "33353|44291|45110|45111|45112|45290|45545|51710|51741|51883|51927|51986|51989|51991|51999|52023|52033|52034|52038|52039|52043|52066|52101|52108|52111|52114|52115|52119|52126|52127|52147|52150|52153|52165|52177|52197|52202|52207|52208|52226|52242|52254|52262|52286|52782|52786|52790|52801|52810|52820|52821|52826|52838|53047|53048|53049|53138|53146|53339|53341|53344|53345|53349|53440|53666|53952|54552|54696|54796|55954|56003|56066|56099|56160|56406|56684|56784|56790|56956|57463|77677|81479|102168|134525|134528|134529|134531|134532|134533|134538|134539|134541|134544|134546|134547|142083|142091|142094|142741|173313|173487|173790|173931|174345|174800|175036|175328|175563|176016|176016|176526|178124|178128|178523|178927|178930|179395|179466|179471|179598|179712|186460|186481|189951|190794|190795|191009|191201|191360|191361|192306|192637|192744|192901|192902|193110|193176|193328|193778|193935|194049|194161|194190|194225|194622|194623|194663|194724|198236|198340|198348|198349|198791|198838|199000|199203|199524|207465|224269|224471|228646|229551|229553|229555|229556|229557|229558|229559|229560|229942|230864|240840|247538|252582|252585|252587|252591|252592|252593|252595|252596|252598|252599|252602|252605|254932|260441|266992|269526|269543|269666|270578|271452|271589|272236|273311|274147|274245|274249|274474|274633|275110|275294|275305|276601|276610|277430|277433|277434|277445|277447|277456|278453|278454|278568|279740|280068|280071|281045|281230|281382|281553|281853|281856|283203|283251|283295|283301|283302|283303|283427|283925|283957|284034|284037|284061|284064|284793|285684|285724|285913|285986|286010|286102|286159|286333|290242|290243|290244|290254|290271|290276|291029|291030|291039|291040|291049|291066|291078|291087|291088|291095|294310|294320|294337|294342|294384|294386|294391|294399|294413|294701|294707|294717|294718|294722|294738|296581|296619|298461|298480|298481|298832|299138|301280|301294|301302|302530|302543|302582|302607|302820|302831|302903|302906|302909|305890|306130|306147|309484|309488|309496|311022|311031|311038|311448|311449|313530|313531|314279|314281|314284|314287|314289|314290|314358|314360|314364|316355|316365|316673|316678|317037|317040|317041|317233|319738|319747|320233|320355|320364|320370|320374|320376|320377|320379|320380|320397|320409|320886|320887|320892|320893|321108|321109|322278|322281|322290|322292|322305|322315|322319|322320|322321|322440|322456|322458|322460|322469|323071|323073|323261|323262|323578|323593|323602|323616|323849|323862|323864|323866|323868|324153|325103|325110|325907|326925|326939|326941|326942|326951|327968|327969|327974|327975|328966|328973|328975|328980|328987|328990|328992|328994|329003|330167|330174|330235|330237|330257|330288|331159|331163|331173|331210|331578|331581|331583|331587|331597|331610|331619|331628|331630|331646|332639|333209|334762|335616|335619|335627|335628|335631|335634|335648|335649|337435|337457|337463|337467|337484|337486|338527|338558|338581|338582|338583|338588|338608|338610|338614|338623|338733|339585|340274|340279|340282|340299|340308|340311|340314|340316|340327|340328|340329|340336|340337|340978|341241|341419|341423|341449|341457|341476|341494|341496|346920|346921|346938|346947|346950|346952|346965|348190|348208|348211|348227|348229|348231|353062|353095|353178|353295|353305|353322|353560|361442|361510|361643|361646|368889|368901|368907|368913|368914|368920|368921|369193|369195|369203|369209|369217|369450|369457|369461|369474|369475|369476|369478|369479|369493|370763|370766|370768|370770|370774|370776|370783|370786|370790|370798|370810|406963|406964|406965|406966|406967|406968|406969|406970|406971|406972|406973|406974|406976|406981|413759|413761|419002|421617|425723|425724|425726|425727|425728|425730|428675|434759|439242|441034|441035|444055|444056|444058|444060|444061|444062|456218|456220|456223|456224|456234|456236|456242|456244|456249|456251|456253|456256|456257|456261|456262|456266|456270|456272|456279|456280|456286|456287|456289|456290|456291|456293|456295|456297|456303|456304|456306|456310|456320|456321|456327|456328|456330|456339|456343|456347|456349|456350|456356|456360|456362|456371|456377|456378|456381|456385|456390|456391|456395|456456|456483|456486|456488|456495|456502|456506|456510|456528|456536|456545|456547|456549|456551|456553|456554|456556|456565|456567|456569|456570|456575|456578|456588|456600|456604|456606|456607|456608|456610|456614|456616|456618|456620|456621|456622|456630|456631|456633|456637|456640|456643|456644|456646|456652|456655|456656|456658|456659|456664|456666|456674|456676|456678|456680|456682|456686|456690|456692|456694|456718|456722|456759|456766|456775|456776|456779|456780|456782|456785|456788|456791|456793|456795|456796|456797|456800|456809|456812|456813|456814|456818|456819|456821|456823|456832|456842|456844|456847|456849|456850|456851|456857|456869|456871|456872|456875|456882|456895|456898|456899|456905|456911|456917|456924|456928|456930|456932|456937|456939|456941|456942|456943|456945|456947|456953|456965|456972|456984|456986|456988|457159|457161|457162|457183|457185|457189|457191|457194|457196|457198|457199|457205|457211|457212|457215|457217|457224|457226|457233|457237|457239|457241|457246|457250|457252|457259|457261|457264|457267|457268|457271|457278|457279|457283|457284|457288|457289|457291|457297|457308|457311|457313|457317|457319|457321|457322|457327|457331|457333|457341|457352|457353|457355|457357|457361|457367|457368|457369|457374|457376|457378|457380|457383|457386|457389|457394|457400|457404|457407|457409|457412|457436|462462|462464|462704|462705|462706|462708|462717|463194|463203|463205|463208|463327|463331|465647|465649|466630|466632|480694|486428|492692|496884|501557|501570|501809|501857|501881|501908|501922|501935|502196|522156|522161|522165|522167|522171|522175|522177|522183|522191|522194|522203|522204|522206|522208|522214|522219|522222|522230|522234|522241|522244|522246|522250|522252|522254|522256|522260|522262|522265|522266|522269|522271|522274|522275|522281|522294|522308|522309|522311|522394|522401|522402|522405|522409|522420|522421|522424|522427|522429|522432|522436|522441|522443|522444|522452|522461|522462|522465|522470|522473|522483|522484|522485|522486|522488|522494|522495|522500|522503|522504|522505|522509|522510|522511|522513|522514|522516|522517|522520|522521|522522|522524|522526|522527|522529|522531|522532|522538|522541|522544|522546|522547|522551|522553|522556|522557|522558|522560|522565|522570|522575|522576|522577|522578|522579|522580|522581|522582|522583|522585|522588|522589|522593|522596|522597|522599|522601|522610|522613|522616|522623|522625|522631|522643|522647|522648|522650|522654|522657|522668|522671|522674|522676|522681|522682|522703|522704|522707|522711|522861|522862|522866|522870|522871|522876|522877|522881|522883|522888|522890|522893|522897|522901|522908|522913|522915|522917|522924|522926|522937|522939|522942|522945|522957|522959|522961|522964|522970|522971|522973|522974|522978|522981|522990|522993|522999|523001|523002|523014|523015|523017|523023|523026|523030|523031|523034|523036|523037|523040|527649|527873|527878|527880|529922|530002|540432|561284|561287|561288|561291|561293|561294|561298|561299|561303|561304|561309|561310|561313|561315|561316|561318|561325|561327|561330|561332|561334|561336|561341|561343|561344|561347|561350|561351|561357|561358|561362|561364|561369|561374|561375|561376|561377|561378|561381|561382|561388|561394|561408|561424|561431|561433|561435|561437|561438|561439|561445|561447|561448|561452|561456|561468|561469|561473|561474|561475|561476|561478|561479|561484|561486|561487|561488|561490|561492|561508|561511|561512|561515|561516|561518|561523|561524|561531|564018|564020|564022|564025|564026|564028|564031|564033|564035|564042|564043|564046|564047|564049|564051|564053|564058|564062|564064|564073|564075|564077|564080|564081|564107|564109|564110|564112|564117|564120|564121|564126|564128|564130|564132|565724|566048|566291|566394|566402|566410|566412|566415|566423|566424|566433|566436|566443|566444|566445|566446|566452|566453|566456|566457|566460|566462|566465|566466|566467|566468|566472|566478|566486|566491|566493|566494|568097|568099|572009|572010|572018|572019|572028|574034|574037|576933|576934|578453|585342|586604|588095|611672|611673|624343|624346|635627|635628|635629|635630|635631|635632|635633|635634|635635|635636|635637|635638|635639|635640|635641|635642|635643|635644|635645|635646|635647|635648|635649|635650|635651|635652|635653|635654|635655|635656|635657|635658|635659|635660|635661|635662|635663|635664|635665|635666|635667|635668|635669|635670|635671|635672|635673|635674|635675|635676|635677|635678|635679|635680|635681|635682|635683|635684|635685|635686|635687|635688|635689|635690|635691|635692|635693|635694|635695|635696|635697|635698|635699|635700|635701|635702|635703|635704|635705|635706|635707|635708|635709|635710|635711|635712|635713|635714|635715|635716|635717|635718|635719|635720|635721|635722|635723|635724|635725|635726|635727|635728|635729|635730|635731|635732|635733|635734|635735|635736|635737|635738|635739|635740|635741|635742|635743|635744|635745|635746|635747|635748|635749|635750|635751|635752|635753|635754|635755|635756|635757|635758|635759|635760|635761|635762|635763|635764|635765|635766|635767|635768|635769|635770|635771|635772|635773|635774|635775|635776|635777|635778|635779|635787|635788|635789|635790|635791|641381|641382|641383|641384|641385|644601|644602|644603|644604|651575|651581|651660|651667|651755|651766|653259|655774|655776|682327|688567|689855|692132|692133|692134|692135|692136|692137|692138|692141|692142|692143|692144|692146|692147|692148|692149|692150|692151|692152|692154|692156|692160|693281|693282|695348|695349|695350|699820|699821|699822|699824|699825|699826|699827|699829|699830|699831|699832|699833|699834|699837|699838|699840|710761|710762|710763|710800|722301|722304|722305|722306|722308|735944|735948|735949|735950|735951|744303|744308|750400|750403|750404|750407|750408|750409|750410|750411|750413|750415|753595|759624|759633|759735|759742|766055|766056|766058|766069|766072|766074|766077|766078|766079|766084|766085|766087|766090|766096|766097|766098|766104|766124|775135|775294|775327|775343|777626|777677|777824|777828|777829|779304|782772|782775|782777|782780|782784|782785|782788|782790|787498|795960|795962|795966|819822|819823|819824|819825|819826|832981|832982|832983|832984|832985|832986|832987|832988|832989|832990|832991|832992|832993|832994|832995|832996|832997|832998|832999|833000|833001|833002|833003|833004|833005|833006|833007|833008|833009|833010|833011|833012|833013|833014|833015|833016|833017|833018|833019|833020|833021|833022|833023|833024|833025|833026|833027|833028|833029|833030|833031|833032|833033|833034|833035|833036|833037|833038|833039|833040|833041|833042|833043|833044|833045|833046|833047|833048|833049|833050|833051|833052|833053|833054|833055|833056|833057|833058|833059|833060|833061|833062|833063|833064|833065|833066|833067|833068|833069|833070|833071|833072|833073|833074|833075|833076|833077|833078|833079|833080|833081|833082|833083|833084|833085|833086|833087|833088|833089|833090|833091|833092|833093|833094|833095|833096|833097|833098|833099|833100|833101|833102|833103|833104|833105|833106|833107|833108|833109|833110|833111|833112|833113|833114|833115|833116|833117|833118|833119|833120|833121|833122|833123|833124|833125|833126|833127|833128|833129|833149|833150|833151|833152|833153|840255|840256|840257|840258|840259|843758|843759|851134|851136|851138|851140|851626|851628|851630|852058|852060|852062|852064|852337|852338|924654|924655|924656|924657|924658|924659|924660|924661|924662|924663|924664|924665|924666|924667|924668|924669|924670|924671|924672|924673|924674|924675|924676|924677|924678|924679|924680|924681|924682|924683|924684|924685|924686|924687|924688|924689|924690|924691|924692|924693|924694|924695|924696|924697|924698|924699|924700|924706|926729|926730|933640|933641|933642|933643|933644|933645|933646|933647|933648|933649|933650|933651|933652|933653|933654|933655|933656|933657|933658|933659|933660|933661|933662|933663|933664|933665|933666|933667|933668|933669|933670|933671|933672|933673|933674|933675|933676|933677|933678|933679|933680|933681|933682|933683|933684|933685|933686|933694|936255|936256|936257|940062|940063|940064|940065|940870|945378|945379|945380|945381|945382|945383|945384|945385|945386|945387|945388|945389|945390|945391|945392|945393|945394|945395|945396|945397|945398|945399|945400|945401|945402|945403|945404|945405|945406|945407|945408|945409|945410|945411|945412|945413|945414|945415|945416|945417|945418|945419|945420|945421|945422|945423|945424|945440|945441|948151|948152|949370|955016|955017|955018|955019|955020|955021|955022|955023|955024|955025|955026|955027|955028|955029|955030|955031|955032|955033|955034|955035|955036|955037|955038|955039|955040|955041|955042|955043|955044|955045|955046|955047|955048|955049|955050|955062|956933|956934|957734|959832|959833|959834|959835|960624|960625|960626|960627", + "text": "Dilated Cardiomyopathy, Dominant" + }, + { + "baseId": "33353|81479|134525|134528|134529|134531|134532|134533|134538|134539|134541|134544|134546|134547|190794|190795|191009|191201|191360|191361|192306|192637|192744|192901|192902|193110|193176|193328|193778|193935|194049|194161|194190|194225|194622|194623|194663|194663|194724|207465|229551|229553|247535|247536|247537|247538|252582|252585|252587|252591|252592|252593|252595|252596|252598|252599|252602|252605|252605|260441|266992|269526|269543|269666|270578|271452|271589|272236|273311|274147|274245|274249|274474|274633|275110|275294|275305|361442|361510|361643|361646|368889|368901|368907|368913|368914|368920|368921|369193|369195|369203|369209|369217|369450|369457|369461|369474|369475|369476|369478|369478|369479|369493|370763|370766|370768|370770|370774|370776|370783|370786|370790|370798|370810|406963|406963|406964|406965|406966|406967|406968|406969|406970|406971|406972|406973|406974|406976|413759|413761|419002|419002|419002|421617|424271|425723|425724|425726|425727|425728|425728|425730|428675|432202|434759|434759|439242|441034|441035|444055|444056|444058|444060|444061|444062|456218|456220|456223|456224|456234|456236|456242|456249|456251|456253|456256|456257|456261|456262|456266|456270|456272|456279|456280|456286|456287|456289|456290|456291|456293|456295|456297|456303|456303|456304|456306|456310|456320|456321|456327|456328|456330|456339|456343|456347|456349|456350|456356|456360|456362|456371|456377|456378|456381|456385|456390|456391|456395|456456|456483|456486|456488|456495|456502|456506|456510|456528|456536|456545|456547|456549|456551|456553|456554|456556|456565|456567|456569|456570|456575|456578|456588|456600|456604|456607|456608|456610|456614|456616|456618|456620|456621|456622|456630|456631|456633|456637|456640|456643|456644|456646|456652|456655|456656|456658|456659|456664|456666|456674|456676|456678|456680|456682|456686|456690|456692|456694|456759|456766|456776|456779|456780|456785|456788|456791|456793|456795|456796|456797|456800|456809|456812|456813|456814|456818|456819|456821|456823|456832|456832|456842|456844|456847|456849|456850|456851|456857|456869|456871|456872|456875|456875|456882|456895|456898|456899|456905|456911|456917|456924|456928|456930|456932|456937|456939|456941|456942|456943|456945|456947|456953|456965|456972|457159|457161|457162|457183|457185|457189|457191|457194|457196|457198|457199|457205|457211|457212|457215|457217|457224|457226|457233|457237|457239|457241|457246|457250|457252|457259|457261|457264|457267|457268|457271|457278|457279|457283|457284|457288|457289|457291|457297|457308|457311|457313|457317|457319|457321|457322|457327|457331|457333|457341|457352|457353|457355|457357|457361|457367|457368|457369|457374|457376|457378|457380|457383|457386|457389|457394|457400|457404|457407|457409|457412|480694|481130|486428|492692|496884|501557|501570|501809|501881|501908|501922|501935|502196|522156|522161|522165|522167|522171|522175|522177|522183|522191|522194|522203|522204|522206|522208|522214|522219|522222|522230|522234|522241|522244|522246|522250|522252|522254|522256|522260|522262|522265|522266|522269|522271|522274|522275|522281|522294|522308|522309|522311|522394|522401|522402|522405|522409|522420|522421|522424|522427|522429|522432|522436|522441|522443|522444|522452|522461|522462|522465|522470|522473|522483|522484|522485|522486|522488|522494|522495|522500|522503|522504|522505|522509|522510|522511|522513|522514|522516|522517|522520|522521|522522|522524|522526|522527|522529|522531|522532|522538|522541|522544|522546|522547|522551|522553|522556|522557|522558|522560|522565|522570|522575|522576|522577|522578|522579|522580|522581|522582|522583|522585|522585|522588|522589|522593|522596|522597|522599|522601|522610|522613|522616|522623|522625|522631|522643|522647|522648|522650|522654|522657|522668|522671|522674|522676|522681|522682|522703|522704|522707|522711|522861|522862|522866|522870|522871|522876|522877|522881|522883|522888|522890|522893|522897|522901|522908|522913|522915|522917|522924|522926|522937|522939|522942|522945|522957|522959|522961|522964|522970|522971|522973|522974|522978|522981|522990|522993|522999|523001|523002|523014|523015|523017|523023|523026|523030|523031|523034|523036|523037|523040|540432|561284|561287|561288|561291|561293|561294|561298|561299|561303|561304|561309|561310|561313|561315|561316|561318|561325|561327|561330|561332|561334|561336|561341|561343|561344|561347|561350|561351|561357|561358|561362|561364|561369|561374|561375|561376|561377|561378|561378|561382|561388|561394|561408|561424|561431|561433|561435|561437|561438|561439|561445|561447|561448|561452|561456|561468|561469|561473|561474|561475|561476|561478|561479|561484|561484|561486|561487|561488|561490|561492|561508|561511|561512|561515|561516|561518|561523|561524|561531|564018|564020|564022|564025|564026|564028|564031|564033|564035|564042|564043|564046|564047|564049|564051|564053|564058|564062|564064|564073|564075|564077|564080|564081|564107|564109|564110|564112|564117|564120|564121|564126|564128|564130|566048|566394|566402|566410|566412|566415|566423|566424|566433|566436|566443|566444|566445|566446|566452|566453|566456|566456|566457|566460|566462|566465|566466|566467|566468|566472|566478|566486|566491|566493|566494|576933|576934|578453|585342|586604|588095|611672|611673|623588|624343|624346|635627|635628|635629|635630|635631|635632|635633|635634|635635|635636|635637|635638|635639|635640|635641|635642|635643|635644|635645|635646|635647|635648|635649|635650|635651|635652|635653|635654|635655|635656|635657|635658|635659|635660|635661|635662|635663|635664|635665|635666|635667|635668|635669|635670|635671|635672|635673|635674|635675|635676|635677|635678|635679|635680|635681|635682|635683|635684|635685|635686|635687|635688|635689|635690|635691|635692|635693|635694|635695|635696|635697|635698|635699|635700|635701|635702|635703|635704|635705|635706|635707|635708|635709|635710|635711|635712|635713|635714|635715|635716|635717|635718|635719|635720|635721|635722|635723|635724|635725|635726|635727|635728|635729|635730|635731|635732|635733|635734|635735|635736|635737|635738|635739|635740|635741|635742|635743|635744|635745|635746|635747|635748|635749|635750|635751|635752|635753|635754|635755|635756|635757|635758|635759|635760|635761|635762|635763|635764|635765|635766|635767|635768|635769|635770|635771|635772|635773|635774|635775|635776|635777|635778|635779|651575|651581|651660|651667|651755|651766|655774|655776|682327|689855|692132|692133|692134|692135|692136|692137|692138|692141|692142|692143|692144|692146|692147|692148|692149|692150|692151|692152|692154|692156|695348|695349|695350|699820|699821|699822|699824|699825|699826|699827|699829|699830|699831|699832|699833|699834|699837|699838|699840|710761|710762|710763|722301|722304|722305|722306|722306|722308|735944|735948|735949|735950|735951|744303|744308|750400|750403|750404|750407|750408|750409|750410|750411|750413|750415|759624|759633|759735|759742|766055|766056|766058|766069|766072|766074|766077|766078|766079|766084|766085|766087|766090|766096|766097|766098|766104|775135|775294|775327|775343|777626|777677|777824|777828|777829|779304|782772|782775|782777|782780|782784|782785|782788|782790|787498|795960|795962|795966|802163|819822|819823|819824|819825|819826|832981|832982|832983|832984|832985|832986|832987|832988|832989|832990|832991|832992|832993|832994|832995|832996|832997|832998|832999|833000|833001|833002|833003|833004|833005|833006|833007|833008|833009|833010|833011|833012|833013|833014|833015|833016|833017|833018|833019|833020|833021|833022|833023|833024|833025|833026|833027|833028|833029|833030|833031|833032|833033|833034|833035|833036|833037|833038|833039|833040|833041|833042|833043|833044|833045|833046|833047|833048|833049|833050|833051|833052|833053|833054|833055|833056|833057|833058|833059|833060|833061|833062|833063|833064|833065|833066|833067|833068|833069|833070|833071|833072|833073|833074|833075|833076|833077|833078|833079|833080|833081|833082|833083|833084|833085|833086|833087|833088|833089|833090|833091|833092|833093|833094|833095|833096|833097|833098|833099|833100|833101|833102|833103|833104|833105|833106|833107|833108|833109|833110|833111|833112|833113|833114|833115|833116|833117|833118|833119|833120|833121|833122|833123|833124|833125|833126|833127|833128|833129|851134|851136|851138|851140|851626|851628|851630|852058|852060|852062|852064|852337|852338|919075|919076|919078|919079|919080|919081|920235|920236|924654|924655|924656|924657|924658|924659|924660|924661|924662|924663|924664|924665|924666|924667|924668|924669|924670|924671|924672|924673|924674|924675|924676|924677|924678|924679|924680|924681|924682|924683|924684|924685|924686|924687|924688|924689|924690|924691|924692|924693|924694|924695|924696|924697|924698|924699|924700|933640|933641|933642|933643|933644|933645|933646|933647|933648|933649|933650|933651|933652|933653|933654|933655|933656|933657|933658|933659|933660|933661|933662|933663|933664|933665|933666|933667|933668|933669|933670|933671|933672|933673|933674|933675|933676|933677|933678|933679|933680|933681|933682|933683|933684|933685|933686|940062|940063|940064|940065|940870|945378|945379|945380|945381|945382|945383|945384|945385|945386|945387|945388|945389|945390|945391|945392|945393|945394|945395|945396|945397|945398|945399|945400|945401|945402|945403|945404|945405|945406|945407|945408|945409|945410|945411|945412|945413|945414|945415|945416|945417|945418|945419|945420|945421|945422|945423|945424|955016|955017|955018|955019|955020|955021|955022|955023|955024|955025|955026|955027|955028|955029|955030|955031|955032|955033|955034|955035|955036|955037|955038|955039|955040|955041|955042|955043|955044|955045|955046|955047|955048|955049|955050|959832|959833|959834|959835|960624|960625|960626|960627|970843", + "text": "Cardiomyopathy, familial hypertrophic, 26" + }, + { + "baseId": "33354|33355|33356|33357|33358|33359|33360|33361|38544|53316|53317|133720|176739|176746|178232|178233|178277|178309|208421|231325|231329|231330|269772|272126|376793|376801|378844|378858|378864|378867|433340|467703|490935|492667|497861|497892|506476|506802|507230|532015|532090|532383|553005|553006|646969|694220|694221|694223|695783|704457|704458|704462|791845|798726|966363", + "text": "Deafness, autosomal dominant 20" + }, + { + "baseId": "33362|33362|33363|33365|33368|33370|54338|54339|54342|54345|54346|54348|54353|54358|54359|54361|54361|65597|65597|65598|139983|139983|139984|175955|175958|176101|179718|179721|179723|179724|179729|179733|179735|179737|179741|179743|193567|214543|222416|242032|322265|322269|322277|322280|322282|322283|322294|322300|322301|322304|322310|322312|322312|331584|331588|331590|331592|331593|331602|331634|331640|331647|338516|338517|338520|338523|338524|338564|338580|338586|338595|338606|340276|340281|340298|340305|340306|340312|340332|340332|340333|376392|376394|400055|400228|400230|400236|400868|400869|400871|400877|464140|464140|464144|464146|464148|464149|464958|464959|464980|504726|505620|505620|511121|528723|528755|528764|528954|529101|529231|529233|529234|529247|529248|566975|566976|568705|615097|618240|643102|643103|643104|643105|643106|643107|643108|643109|643110|643111|653034|667999|684533|695637|820687|842232|842233|842234|842235|842236|842237|873259|873260|873261|873262|873263|873264|873265|873266|873267|873268|873269|873270|873271|873272|873273|873274|873275|873276|873277|873278|873279|873280|873281|873282|873283|873284|873285|873286|873287|873288|873289|873290|873291|916260|927298|927299|936898|948847|948848|948849|957395", + "text": "Dilated cardiomyopathy 1R" + }, + { + "baseId": "33362|33365|33366|33367|33368|33370|54338|54339|54342|54345|54346|54348|54353|54358|54359|54361|65597|65598|139983|175955|175958|176101|179718|179721|179723|179724|179729|179733|179735|179737|179741|179743|193567|222416|242032|322312|340332|376392|376394|400055|400228|400230|400236|400868|400869|400871|400877|464140|464144|464146|464148|464149|464958|464959|464980|504726|505620|511121|528723|528755|528764|528954|529101|529231|529233|529234|529247|529248|566975|566976|568705|615097|618240|643102|643103|643104|643105|643106|643107|643108|643109|643110|643111|653034|667999|684533|695637|820687|842232|842233|842234|842235|842236|842237|916260|927298|927299|936898|948847|948848|948849|957395", + "text": "Atrial septal defect 5" + }, + { + "baseId": "33362|33364|33365|33365|33368|33368|33369|33370|33370|54338|54339|54342|54345|54346|54348|54353|54358|54359|54361|54361|65597|65597|65598|139983|139983|139984|175955|175958|176101|179718|179721|179723|179724|179729|179733|179735|179737|179741|179743|193567|214137|214543|222416|242032|322265|322269|322277|322280|322282|322283|322294|322300|322301|322304|322310|322312|322312|331584|331588|331590|331592|331593|331602|331634|331640|331647|338516|338517|338520|338523|338524|338564|338580|338586|338595|338606|340276|340281|340298|340305|340306|340312|340332|340332|340333|376392|376394|400055|400228|400230|400236|400868|400869|400871|400877|464140|464140|464144|464146|464148|464149|464958|464959|464980|504726|505620|505620|511121|528723|528755|528764|528954|529101|529231|529233|529234|529247|529248|566975|566976|568705|615097|618240|643102|643103|643104|643105|643106|643107|643108|643109|643110|643111|653034|667999|684533|695637|820687|842232|842233|842234|842235|842236|842237|873259|873260|873261|873262|873263|873264|873265|873266|873267|873268|873269|873270|873271|873272|873273|873274|873275|873276|873277|873278|873279|873280|873281|873282|873283|873284|873285|873286|873287|873288|873289|873290|873291|916260|927298|927299|936898|948847|948848|948849|957395", + "text": "Familial hypertrophic cardiomyopathy 11" + }, + { + "baseId": "33370", + "text": "Left ventricular noncompaction 4" + }, + { + "baseId": "33374", + "text": "YT BLOOD GROUP POLYMORPHISM" + }, + { + "baseId": "33375|33376|33377|33378|33379|33380|33381|38537|191227|195343|195688|196264|214403|236956|236956|237286|250402|250667|250668|250669|250670|266272|269668|274055|282964|283798|285276|285284|285298|285299|285306|285311|285312|285318|285319|285324|285836|285922|285941|285949|285958|285959|285960|285961|285962|285964|285966|285969|285970|288248|288264|288265|288266|288274|288276|288284|288306|288310|288685|288689|288690|288707|288716|288731|288732|288738|363715|384512|405661|405662|426713|443183|489164|538346|788751|790211|804994|884130|884140|884141|884142|884143|884144|884145|884146|884147|884148|884149|884150|884151|884152|884153|884154|884155|884156|884157|884158|884159|884160|884161|884162|884163|884164|884165|884166|884167|887317|887318|918753", + "text": "Autosomal recessive multiple pterygium syndrome" + }, + { + "baseId": "33375|538346|724728|966718|966719|966721", + "text": "Ankle contracture" + }, + { + "baseId": "33375|39548|49024|136760|185948|263200|263296|360998|361017|361048|485813|514187|514310|514311|538346|626373|682328|682329|682330|682331|682332|682333|682334|682335|682336|682337|682338|682339|920586", + "text": "Scoliosis" + }, + { + "baseId": "33375|538346", + "text": "Arthrogryposis-like hand anomaly" + }, + { + "baseId": "33376|33379|33381|33402|33407|33408|33409|33416|33418|33427|33428|38536|38537|134182|134183|134184|134204|134205|134206|134207|139373|190288|190766|191169|191227|192261|195200|195343|195550|195688|195909|196198|196264|206906|206949|236956|236956|237286|250660|250661|250667|250668|250670|265660|265660|266272|267375|267375|269668|270135|270617|270618|272295|274055|274172|282956|282959|283772|283773|283774|283775|283797|283803|283808|285265|285276|285277|285281|285284|285294|285296|285298|285299|285306|285311|285318|285319|285324|285404|285409|285413|285430|285431|285435|285437|285438|285819|285820|285822|285832|285833|285838|285906|285917|285922|285932|285940|285941|285943|285949|285950|285951|285956|285958|285959|285960|285961|285962|285964|288234|288235|288236|288242|288262|288264|288265|288266|288274|288276|288284|288657|288667|288668|288669|288670|288680|288681|288686|288688|288689|288690|288707|288716|288731|288732|288738|359351|363715|365698|367085|389195|405656|405661|413590|426713|443058|448551|448988|448991|448996|449165|449171|449173|449174|449262|449269|449296|449298|450493|450494|450497|450509|450517|450638|450640|450643|450808|450816|450856|480725|486265|489164|514462|516221|516697|516738|516741|516742|516746|516748|517902|517908|517910|517914|517949|517961|517962|517965|518029|518034|538346|557696|557698|557700|557702|557729|557938|557999|558915|558917|558919|559177|559179|559181|559183|559400|561093|576669|576670|578401|629016|629017|629018|629019|629020|629021|629022|629023|629024|629025|629026|629027|629028|629029|629619|629620|629621|629622|629623|629624|629625|650723|650884|650919|650946|650989|690894|690895|690897|690899|691051|691053|691054|691055|691056|691057|695126|697406|697407|697409|719712|733268|759068|762431|763056|763057|763060|780971|781240|781241|790209|790210|825247|825248|825249|825250|825251|825252|825253|825254|825255|825951|825952|825953|825954|825955|825956|825957|825958|825959|825960|825961|825962|825963|850854|851362|881618|881619|881620|881621|881622|881623|881624|881625|881626|881627|881628|881629|881630|884121|884122|884123|884124|884125|884126|884127|884128|884129|884131|884132|884133|884134|884135|884136|884137|884138|884139|884140|884141|884142|884143|884144|884145|884146|884147|884148|884149|884150|884151|884152|884153|884154|884155|884156|884157|884158|884159|884160|884161|884162|884163|884164|884165|884166|884167|887315|887316|887317|887318|922418|922419|922420|922637|922638|930984|930985|930986|930987|931201|931202|931203|931204|942421|942422|942423|942424|942425|942426|942675|942676|942677|942678|952795|952984|952985|959600", + "text": "Lethal multiple pterygium syndrome" + }, + { + "baseId": "33381|443183|620069|620070|620071", + "text": "CHRNG-Related Disorders" + }, + { + "baseId": "33382|33383|33384|33385|33386|33387|33391|33396|33398|33399|48713|48714|134209|134213|134215|134216|134217|139374|244115|244116|244117|256235|256236|256240|256245|256249|256250|266273|268552|268552|270101|272149|272153|329052|329060|329063|339094|339096|339109|339111|339112|339125|345085|345087|345092|346448|346453|346457|346460|360460|378427|410057|410058|410059|413452|429984|441969|445796|466961|466968|466972|467864|467866|467869|467870|467878|467880|467895|467898|467902|467914|468162|468358|468359|468361|468362|468369|491632|506455|531216|531220|531224|531225|531393|531397|531399|531452|531459|531705|531707|531716|569230|569232|569233|569237|569241|571248|571251|571256|571592|571593|571596|574507|574508|574509|574510|577648|620886|646144|646145|646146|646147|646148|646149|646150|646151|646152|646153|646154|646155|646156|646157|646158|646159|646160|646161|646162|646163|652667|652811|652839|652978|653467|688793|694100|694101|694102|694103|694104|694105|694106|715521|740839|740840|740841|740842|740844|744977|745019|755920|755922|755924|771609|771611|771612|771613|771614|771616|771617|771619|776355|776695|776706|785629|785633|791786|821103|821105|845580|845581|845582|845583|845584|845585|845586|845587|845588|845589|845590|845591|845592|845593|852218|852753|852754|906392|928362|928363|928364|938019|938020|938021|938022|940419|940420|950019|950020|950021|950022|950023|950024|958165|958166|958167|958168|958169|958170|958171|958172|958173|958174|958175|958176|958177|958178|960889", + "text": "Myasthenic syndrome, congenital, 4a, slow-channel" + }, + { + "baseId": "33385|33396|33398|33399|33400|48688|244116|268552|346460|919737|919738|920374|961882", + "text": "Myasthenic syndrome, congenital, 4b, fast-channel" + }, + { + "baseId": "33402|190766|265660|267375|270617|538964", + "text": "Myasthenic syndrome, congenital, 3a, slow-channel" + }, + { + "baseId": "33403|33404|33405|33406|33410|265660|267375|270617|538964", + "text": "Congenital myasthenic syndrome 3B" + }, + { + "baseId": "33411|33412|134200|134202|134203|194325|196197|256398|256400|329773|329782|347173|347175|347178|445892|468825|468826|468830|468834|468837|469078|469079|495852|513646|531827|531831|531839|531843|531882|531883|531890|532150|568669|569715|569722|571586|571588|572244|572246|574611|574612|574613|574614|589390|646677|646678|646679|646680|646681|646682|646683|646684|646685|646686|646687|646688|646689|646690|652678|652867|653511|694193|694194|694195|694196|694199|694201|695775|704353|741011|741013|756111|760656|771810|778400|846174|846175|846176|846177|846178|846179|846180|852791|878369|878373|919768|919769|928525|928526|928527|938216|938217|941196|950271|950272|950273|950274|960243|960244", + "text": "Myasthenic syndrome, congenital, 2a, slow-channel" + }, + { + "baseId": "33413|33414", + "text": "Myasthenic syndrome, congenital, 2c, associated with acetylcholine receptor deficiency" + }, + { + "baseId": "33415|33416|33417|33418|33419|33420|33426|918697", + "text": "Congenital myasthenic syndrome 1A" + }, + { + "baseId": "33421|33422|33423|33424|33425|38535|38536|139374", + "text": "Congenital myasthenic syndrome 1B, fast-channel" + }, + { + "baseId": "33429|578497", + "text": "Acute alcohol sensitivity" + }, + { + "baseId": "33429", + "text": "Susceptibility to hangover" + }, + { + "baseId": "33429", + "text": "Sublingual nitroglycerin, susceptibility to poor response to" + }, + { + "baseId": "33429", + "text": "Esophageal cancer, alcohol-related, susceptibility to" + }, + { + "baseId": "33429|983526|983527|983528", + "text": "AMED SYNDROME, DIGENIC" + }, + { + "baseId": "33430|135070|141984|361200|441374", + "text": "Ataxia, spastic, 4, autosomal recessive" + }, + { + "baseId": "33431|207300|428492", + "text": "Mental retardation, anterior maxillary protrusion, and strabismus" + }, + { + "baseId": "33432|40320|40321|40322|40323|40324|192263|193452|193453|237063|237194|319992|319994|319995|319996|320000|320002|320003|320004|328552|328564|328565|335047|335052|336938|336949|336951|336956|336964|373873|409039|409041|463943|504817|527810|568228|572579|642054|642055|871457|871458|871459|871460|871461|871462|871463|871464|871465|871466|871467|871468|871469|871470|871471|871472|871473|871474|871475|926948|948417", + "text": "Congenital disorder of glycosylation type 1P" + }, + { + "baseId": "33434|33436", + "text": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE" + }, + { + "baseId": "33434", + "text": "Plasmodium vivax, resistance to" + }, + { + "baseId": "33434", + "text": "White blood cell count quantitative trait locus 1" + }, + { + "baseId": "33435", + "text": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE" + }, + { + "baseId": "33437|227335", + "text": "Migraine, with or without aura 13" + }, + { + "baseId": "33439|33440|135733|135734|135735|135736|135737|187972|264173|293244|293247|293252|293254|293258|293261|293262|293263|294579|294589|294591|294593|294598|294601|294604|298052|298058|298059|298072|298073|298088|298090|298091|298095|298097|298099|298138|298143|298180|298185|298187|298193|298195|298196|298205|298216|298233|298235|360859|513418|611612|620161|626143|683630|683631|683632|685160|685161|734612|764440|775069|787252|789115|798914|890603|890604|890605|890606|890607|890608|890609|890610|890611|890612|890613|890614|890615|890616|890617|890618|890619|890620|890621|890622|890623|890624|890625|891786|891787|891788|906151|971339|978085|978086|978087|978088|978089|978090|978091|978092|978093|978094|978095|978096|978097", + "text": "Pontocerebellar hypoplasia type 2D" + }, + { + "baseId": "33443|33444|33445|33446|33447|102019|190619|190620|194512|207120|293613|293618|293620|293625|293640|293641|293649|293650|293651|293652|293660|293661|293667|293677|295046|295047|295048|295053|295055|295057|295059|295060|295063|295070|295072|295074|295077|298689|298692|298694|298695|298712|298714|298721|298730|298734|298738|298741|298746|298750|298752|298753|298754|369137|562235|620168|623137|632437|632438|691594|792750|829402|890784|890785|890786|890787|890788|890789|890790|890791|890792|890793|890794|890795|890796|890797|890798|890799|890800|890801|890802|890803|890804|890805|890806|890807|890808|890809|890810|890811|891875|891876", + "text": "Congenital disorder of glycosylation type 1Q" + }, + { + "baseId": "33452|33453|33454", + "text": "Vesicoureteral reflux 3" + }, + { + "baseId": "33455|190639|191956|195765|247047|269267|270345|311348|311357|311364|311365|311372|311373|311381|311388|311389|311393|311395|311397|311399|311400|311401|311406|311410|311411|311417|311419|311420|311421|311423|311424|311429|311431|311432|311433|316875|316876|316888|316901|316903|316920|316935|316936|316963|316964|316968|316972|316973|316974|322840|322852|322855|322862|322865|322869|322870|322873|322877|322908|322930|322944|322956|322969|322972|322973|322985|322990|322991|323005|323480|323481|323483|323484|323493|323494|323497|323508|323520|323521|323525|323526|323527|323531|323532|323541|323542|323543|323551|323558|578346|790988|790989|790990|790991|866402|866403|866404|866405|866406|866407|866408|866409|866410|866412|866413|866414|866415|866416|866417|866418|866419|866420|866421|866422|866423|866424|866425|866426|866427|866429|866430|866431|866432|866433|866434|866435|866436|866437|866438|866439|866440|866441|866442|868519|868520|868521|868522|919294|919295|919296|919297", + "text": "Cone-rod dystrophy 15" + }, + { + "baseId": "33456|34511|34512|34513|34515|34516|34518|39740|101805|140421|169015|169015|169020|169021|169022|169023|169024|169027|169028|169031|169032|169032|169034|169038|169038|169039|169040|169041|169044|169045|191939|194480|208024|208026|208029|208030|208031|208033|208034|208036|208037|208038|208040|254844|319318|319320|319324|319331|319335|319339|319340|319344|327833|327837|327838|327860|327863|327872|327873|327877|327879|327880|327888|327890|327892|327893|334132|334133|334135|334148|334152|334165|334170|335735|335772|335797|335804|335810|335820|335829|335830|335833|335838|335845|335846|404812|426039|429484|437953|437953|490846|587191|870972|870973|870974|870975|870976|870977|870978|870979|870980|870981|870982|870983|870984|870985|870986|870987|870988|870989|870990|870991|870992|870993|870994|870995|870996|870997|870998|870999|872321|872322", + "text": "Seckel syndrome 4" + }, + { + "baseId": "33466|33467|165949|166311|166312|192059|207083|207085|207089|207089|213912|213913|213914|367721|406361|424647|426741|428216|431906|490210|511508|538978|550596|551770|552076|552077|611462|611463|614601|621730|677419|678956|678957|790416|790417|790418|790419|790420|798537|800393|861564|915025|918858|961600|963131|964226|964227|964228|964229|970778|972714|972928|972929|972930|972931|975857", + "text": "Mental retardation with language impairment and with or without autistic features" + }, + { + "baseId": "33477", + "text": "Dystonia 1, torsion, late-onset" + }, + { + "baseId": "33478|33479|97340|97341|97342|97343|97344", + "text": "Hypobetalipoproteinemia, familial, 2" + }, + { + "baseId": "33480|135041|135042|135043|135044|135046|135047|135051|135052|207924|207925|508868|508869|513318|702034|738355|738356|753025|768836|768838|768839|768841|768842|775955|784242|919401|966978|979211|979212|979213|979214|979215|979216|979217|979218|979219|979220|979221|979222|979223|979224|979225|979226|979227|979228|979229|979230", + "text": "Microcephaly, postnatal progressive, with seizures and brain atrophy" + }, + { + "baseId": "33481|215094|215095|215096|552408|726177|962242", + "text": "Hyperchlorhidrosis, isolated" + }, + { + "baseId": "33486|71504|71505|256779|332664|332667|332670|332672|332673|332674|332675|342847|342848|342850|348199|348201|348202|348203|348204|348207|348212|349404|349407|349408|349411|349412|349415|879976|879977|879978|879979|879980|879981|879982|879983|879984|879985", + "text": "Congenital dyserythropoietic anemia, type IV" + }, + { + "baseId": "33497|33498|33499|33500|188054|208642|334842|334848|334850|334857|334867|334872|334873|334875|344718|344725|344728|344729|344733|344736|344742|344744|344746|344751|349705|349706|349710|349713|349714|350693|350695|350696|350697|350698|350702|350705|350706|350709|350710|350712|577833|620654|620917|742277|860632|885843|885844|885845|885846|885847|885848|885849|885850|885851|885852|885853|885854|885855|885856|885857|885858|885859|885860|885861|885862|885863|885864|885865|885866|885867", + "text": "Spinocerebellar ataxia type 23" + }, + { + "baseId": "33502", + "text": "Retinal arteries, tortuosity of" + }, + { + "baseId": "33861|434712", + "text": "Chromosome 15q13.3 microdeletion syndrome" + }, + { + "baseId": "33887|249603|249620|249659|278345|278362|278378|278397|278399|278401|278422|278461|278471|279471|279503|279514|279524|279597|279598|279605|279612|279613|279676|279688|329365|339623|345381|346754|346763|353071", + "text": "Hypokalemic periodic paralysis" + }, + { + "baseId": "33966|33974|34018|44267|44269|44270|44271|44272|44274|44275|44276|44278|44280|44283|44284|44286|44287|44288|44883|45062|45063|45064|45068|45075|45093|45094|45095|45096", + "text": "Neonatal diabetes mellitus" + }, + { + "baseId": "33980|134759|192205|192207|317386|317391|317395|317415|317418|317429|317433|317451|317452|317456|317463|317465|317466|317470|325232|325233|325235|325236|325255|325260|325261|325262|325265|325274|325286|325287|325288|325296|331461|331464|331468|331495|331540|331564|331579|331600|332877|332891|332921|332923|332925|332937|332947|332950|332959|332969|332986|332996|333033", + "text": "Myokymia" + }, + { + "baseId": "33982|201345|282265|282273|282291|282884|282949|282984|282985|282987|282994|284486|284491|284501|284503|284781|284892|284930|284935|297404|297412|299450|299456|303577|303616|303901|303925|317387|317391|317398|317401|317404|317407|317412|317416|317428|317429|317435|317458|317466|325231|325233|325235|325238|325240|325261|325262|325267|325271|325273|325274|325279|325285|325286|325294|325295|325316|325326|331460|331463|331464|331474|331475|331487|331488|331489|331500|331501|331511|331539|331542|331561|331563|331565|331582|331598|332852|332867|332887|332895|332906|332918|332919|332922|332931|332937|332944|332955|332977|332979|332998|333005|333012|333013|333026|333027|353540|551424|801216|970990", + "text": "Episodic ataxia" + }, + { + "baseId": "33999|34000|94483|94485", + "text": "CEREBRAL AMYLOID ANGIOPATHY, PRNP-RELATED" + }, + { + "baseId": "34038", + "text": "Metachromatic leukodystrophy, late-onset" + }, + { + "baseId": "34118|34120|361083", + "text": "CK syndrome" + }, + { + "baseId": "34125|360935", + "text": "Elevated 7-dehydrocholesterol" + }, + { + "baseId": "34125|217210|217211|217212|217213|264781|360935|495314|514043|514138", + "text": "Congenital microcephaly" + }, + { + "baseId": "34125|360935", + "text": "2-3 toe syndactyly" + }, + { + "baseId": "34125|166581|166586|166598|166599|166601|166604|166605|166609|166613|166620|166623|166626|166633|166642|166666|166667|166672|166674|166675|166686|166700|166702|166712|166715|166727|166739|166742|166746|166752|166755|166769|166773|166778|166783|166789|166793|166797|166802|166811|166815|166826|166840|166850|166851|166852|166856|166864|166868|166884|166886|166889|166913|166915|166926|166932|166939|166947|166966|166974|166977|166984|166985|166998|167001|167004|167005|167007|167013|167019|167027|167040|167044|167053|167054|167069|167070|167081|167083|167088|167101|167106|167111|167112|167119|167123|167135|167137|167151|167163|167170|167172|167173|167177|167179|167180|167188|167202|167204|167212|167220|167223|167247|167260|167264|167267|167273|167278|167283|167290|167293|167296|167307|167323|167329|167336|223422|263355|263368|360935", + "text": "Small for gestational age" + }, + { + "baseId": "34164", + "text": "Association with valproate-induced liver toxicity" + }, + { + "baseId": "34211|244100|244101", + "text": "Patent ductus arteriosus 2" + }, + { + "baseId": "34220|186058|212530|221642|221645|239956|252546|271323|301262|304461|304463|309043|309071|395264|395624|456499|561169|635337|683828|683829|683831|683833|683835|683837|685200|685202|685205|686929|686931|689846|692081|765927|978371|978372|978373|978374|978375|978376|978377", + "text": "Hereditary hemochromatosis type 3" + }, + { + "baseId": "34221", + "text": "Hereditary hemochromatosis type 4" + }, + { + "baseId": "34261|34262|34263|34264|34269|34637|81680|134792|134793|134794|134795|134796|141743|141749|141751|141752|141753|141754|141755|191041|191676|202143|202144|202145|202146|202149|202150|202151|202153|202154|202155|202156|202157|202158|202160|202162|202163|202170|202171|202172|202173|202174|202175|202179|202181|202181|202182|202187|202189|202190|202192|207503|207504|240232|264363|272269|304135|304150|304163|304164|304181|304186|304187|304189|304193|304194|304197|304205|304211|304217|304222|304229|304230|304232|304242|304244|304245|304249|304251|304263|304269|304271|304274|307750|307761|307788|307793|307795|307801|307810|307824|307839|307852|307853|307860|307862|307867|307871|307873|307883|307889|307890|307898|307900|307908|312806|312809|312819|312820|312827|312850|312870|312880|312889|312891|312901|312906|312908|312909|312911|312914|312916|312919|312921|312929|312935|312940|312942|312945|312947|312949|312953|312956|312957|312974|312975|312978|312980|312983|312984|312998|312999|313005|313008|313010|313013|313017|313018|313026|313028|313038|313042|359883|369338|369344|369703|370079|371511|371534|395898|395900|395912|396148|396288|396563|396571|396572|407314|421657|426672|444211|457184|457187|457193|457202|457204|457796|457798|457816|457819|457820|458184|458186|458196|489649|502590|522991|522997|522998|523000|523257|523268|523270|523476|523477|523492|523494|523620|523623|523625|523626|523627|561944|561947|561949|561951|561955|562352|562362|562365|562367|564632|564635|564636|564638|564639|564641|567365|567370|636584|636585|636586|636587|636588|636589|636590|636591|636592|636593|636594|636595|636596|636597|636598|636599|636600|636601|636602|636603|655830|687185|687187|689903|692350|695377|700394|722848|736429|750907|766531|819945|819946|834114|834115|834116|834117|834118|834119|834120|834121|834122|834123|834124|834125|834126|834127|834128|834129|834130|834131|834132|834133|834134|834135|834136|834137|834138|834139|834140|834141|851179|852112|925012|925013|925014|925015|925016|925017|925018|925019|934089|934090|934091|934092|934093|934094|934095|934096|934097|945850|945851|945852|945853|945854|945855|955288|955289|955290", + "text": "Benign familial neonatal seizures" + }, + { + "baseId": "34261|34263|34264|141754|202158|240232|304149|304178|304180|304182|304188|304193|304197|304200|304206|304218|304226|304232|304235|304243|304249|304251|304260|304261|304264|304265|304269|304271|304274|307801|307837|307838|307854|307860|307861|307863|307864|307873|307884|307886|307887|307889|307890|307891|307900|307908|307919|312763|312782|312807|312817|312821|312837|312838|312856|312890|312894|312895|312901|312910|312915|312916|312918|312920|312923|312925|312928|312939|312944|312946|312948|312952|312953|312956|312958|312960|312979|312981|312983|312990|312999|313005|313007|313008|313009|313010|313012|313013|313017|313018|313027|313038|313040|313042", + "text": "Benign Neonatal Epilepsy" + }, + { + "baseId": "34304|215086|404820|677447|919551|920339|971005", + "text": "Cutis laxa, autosomal dominant 2" + }, + { + "baseId": "34351|331050|331071|374645|444943|970955", + "text": "Wrinkly skin syndrome" + }, + { + "baseId": "34359|34359|251291|291692|293023|293025|296355|559682|691486|695217|709053|720645|828574|859301|923359", + "text": "Amyotrophic lateral sclerosis 17" + }, + { + "baseId": "34374|513942", + "text": "CNS demyelination" + }, + { + "baseId": "34374|48413|181438|187273|187274|187330|202625|263198|263255|263351|263363|322495|354286|354287|354295|360849|361119|361148|362226|407647|481485|512868|513983|514002|514076|514090|514111|514142|514192|514193|514215|535696|550740|550741|550742|550743|550744|550745|550746|553299|590061|608934|614512|682850|858734|904214|904239|904355|905854", + "text": "Macrocephalus" + }, + { + "baseId": "34498|34503|34509|101791|101792|134035|134037|134038|134039|134040|134042|134044|134045|134047|134049|134052|134056|140408|140409|140410|140411|167689|168709|168710|168712|168718|168743|168749|169016|169039|190891|207601|208178|278308|278324|279339|279421|279500|280768|281229|281264|306597|306631|310814|310815|310825|314971|315139|316264|316544|316574|319325|319332|322446|327852|327862|333242|333266|334164|334169|335745|335746|335794|335803|335834|338745|340383|340388|340391|340750|340754|343342", + "text": "Primary Microcephaly, Recessive" + }, + { + "baseId": "34639|125784|203772|511019|535384|961353|973046", + "text": "KCNQ2-Related Disorders" + }, + { + "baseId": "34722|39421|39422|39423|39424|49397|427631|427632|514860|576286|613845|679963|682674|777022|850717|850909|855118|855119|855120", + "text": "Radial aplasia-thrombocytopenia syndrome" + }, + { + "baseId": "35747|432287|514115|514117", + "text": "Microscopic hematuria" + }, + { + "baseId": "35747|223747|384401|513894|513895|513923|513924|514113|514114|514118", + "text": "Hematuria" + }, + { + "baseId": "35796|514115", + "text": "Mild proteinuria" + }, + { + "baseId": "35796|384401", + "text": "Glomerulopathy" + }, + { + "baseId": "36140|36173|39105|39106|39106|39106|39107|50227|94253|133407|136441|136493|139786|142921|142922|142923|151879|151967|181036|181036|185427|185427|185428|185438|185443|236534|243064|243077|331636|331637|331639|331641|331643|331644|331645|331648|331650|331653|331656|331658|331659|331662|331664|331668|331672|331679|331683|331684|331686|331694|331695|331698|331701|331704|331707|331711|341892|341894|341895|341897|341898|341903|341904|341907|341916|341919|341922|341923|341928|341929|341932|341934|341935|341937|341940|341942|341944|341945|341948|341949|341956|341957|341959|341961|347245|347248|347262|347263|347266|347267|347270|347274|347278|347279|347281|347284|347285|347288|347289|347290|347292|347293|347295|347297|347313|347315|347320|347323|347325|347332|347333|347335|347337|347339|347340|347347|348571|348573|348574|348576|348581|348598|348600|348602|348608|348609|348610|348611|348613|348621|348622|348626|348628|348632|348633|348642|348644|348645|348647|348649|348652|348653|348656|348660|348669|348670|348680|353480|353481|377048|377096|379055|403342|410379|432469|468069|468948|468989|479334|479365|485542|539082|879352|879353|879354|879355|879356|879357|879358|879359|879360|879361|879362|879363|879364|879365|879366|879367|879368|879369|879370|879371|879372|879373|879374|879375|879376|879377|879378|879379|879380|879381|879382|879383|879384|879385|879386|879387|879388|879389|879390|879391|879392|879393|879394|879395|879396|879397|879398|879399|879400|879401|879402|879403|879404|879405|879406|879407|879408|879409|879410|879411|879412|879413|879414|879415|880666", + "text": "Myhre syndrome" + }, + { + "baseId": "36230|139835|186118|231108|297514|303754|304144|304196|310292|310301|310308|310324|310337|315398|315399|315400|315401|315409|321368|321414|322063|322067|322068|322098|322121|322125|322128|322139|322140|322141|322151|322153|336093|336129|345839|350281|350282|350287|351309|351310|353127|353128|353702", + "text": "Hirschsprung Disease, Dominant" + }, + { + "baseId": "36269", + "text": "Elevated basal serum calcitonin" + }, + { + "baseId": "36278|212794|983518", + "text": "Appendicitis" + }, + { + "baseId": "36301|802092", + "text": "Renal hypoplasia/aplasia" + }, + { + "baseId": "36445", + "text": "Classical galactosemia, homozygous Duarte-type" + }, + { + "baseId": "36672", + "text": "Inflammatory bowel disease 5" + }, + { + "baseId": "37785", + "text": "fluorouracil and oxaliplatin response - Efficacy" + }, + { + "baseId": "37785", + "text": "cyclophosphamide and epirubicin response - Efficacy, Toxicity/ADR" + }, + { + "baseId": "37785|227807|227832", + "text": "Platinum compounds response - Toxicity/ADR" + }, + { + "baseId": "37785|187973|227807|538599", + "text": "cisplatin response - Toxicity/ADR" + }, + { + "baseId": "38302|227781|227783|227800", + "text": "acenocoumarol response - Dosage" + }, + { + "baseId": "38302|227781|227783|227800", + "text": "phenprocoumon response - Dosage" + }, + { + "baseId": "38302|287330|287354|287389|287403|287410|288101|288131|290764|290782|290805|290806|290826|290827|290869|291016|291037|291053|291059|291075|291077|325114|334774|353339", + "text": "Vitamin K-Dependent Clotting Factors" + }, + { + "baseId": "38414|166084|253402|800868|800869|800870|800871|800872|800873|800874|800875|800876|800877|800878|800879|800880|800881|800882|800883|800884|800885|800886|800887|800888|800889|800890|800891|800892|800893|800894|800895|800896|800897|800898", + "text": "Three Vessel Coronary Disease" + }, + { + "baseId": "38432|40114|40115|165819|360806|513906|513959|514053|568036|681597|971422", + "text": "Tremor" + }, + { + "baseId": "38432|486013", + "text": "Cogwheel rigidity" + }, + { + "baseId": "38459|136747|136896|169549|169560|171242|198030|215566|215567|215568|215569|226117|247164|247165", + "text": "Malignant hypothermia" + }, + { + "baseId": "38538|187198|187198|187200|187201|187202|211934|211940|215011|215012|243998|411026|513671|553402|553403|578585|583133|792080|792081|805122|966178|966179|966181|971165", + "text": "Infantile cerebellar-retinal degeneration" + }, + { + "baseId": "38539|38540|38541|38542|38543|38544|53316|53317|133715|133720|176739|176746|178232|178233|178277|178309|208421|231325|231329|231330|269772|272126|361230|376793|376801|378844|378858|378864|378867|430028|430029|433340|445921|467703|490935|492667|497861|497892|506476|506802|507230|532015|532090|532383|553005|646969|677308|694220|694221|694223|695783|704457|704458|704462|798725|855114", + "text": "Baraitser-Winter Syndrome 2" + }, + { + "baseId": "38552|38552|139981|258664|258672|259943|311573|311576|311579|311581|311582|311586|311592|311593|317166|317167|317169|317170|323194|323197|323198|323201|323202|323203|323776|353158|373592|866511|866512|866513|866514|866515|866516|868528|900535|974940|974941", + "text": "Multisystemic smooth muscle dysfunction syndrome" + }, + { + "baseId": "38552", + "text": "alterations of great arteries and veins" + }, + { + "baseId": "38557|38558|38559|311041|311043|311044|311047|311051|311052|311056|311057|316378|316389|316390|322470|323094|323096|323097|323104|323107|323110|323116|724065|788842|790980|790981|866275|866276|866277|866278|866279|866280|866281|866282|866283|868502|903573", + "text": "Hypermethioninemia due to adenosine kinase deficiency" + }, + { + "baseId": "38566|38567", + "text": "Hyperbiliverdinemia" + }, + { + "baseId": "38576|777951", + "text": "Acatalasia" + }, + { + "baseId": "38580|677115|677117|677119|789169|789170|789398|963093", + "text": "Prune belly syndrome" + }, + { + "baseId": "38581|38582|38583|38584|38585|205279|237364|260036|318925|318927|318930|318932|318936|318937|318943|318944|318952|318960|318961|318976|318979|318982|318986|318988|318999|319001|319002|319003|319004|319015|319018|319023|319025|319026|319027|319029|319030|319035|319037|319038|327337|327338|327339|327341|327342|327343|327348|327368|327370|327371|327372|327383|327386|327387|327393|327394|327395|327397|327401|327402|327404|327405|327419|327423|327437|327439|327447|327453|327458|327459|327460|327471|327472|327475|333543|333546|333555|333562|333565|333568|333569|333572|333573|333580|333585|333592|333594|333595|333604|333615|333616|333619|333629|333633|333634|333639|333642|333651|333658|333659|333660|333666|333672|333673|333675|333677|333692|335248|335254|335259|335265|335266|335269|335270|335277|335284|335286|335295|335296|335301|335312|335315|335317|335343|335345|335346|335349|335350|335356|335362|335366|372618|375515|408801|552167|620855|620856|622419|677182|730897|738945|753711|753712|769406|784530|798667|816477|855117|870717|870718|870719|870720|870721|870722|870723|870724|870725|870726|870727|870728|870729|870730|870731|870732|870733|870734|870735|870736|870737|870738|870739|870740|870741|870742|870743|870744|870745|870746|870747|870748|870749|870750|870751|870752|870753|870754|870755|870756|872306|872307|872308|872309|872310|872311|872312|872313|872314|872315|872316|919484|919485|919486|919487|919488|961654|965226|970978", + "text": "Porencephaly 2" + }, + { + "baseId": "38583|38584|38585|48462|48463", + "text": "Hemorrhage, intracerebral, susceptibility to" + }, + { + "baseId": "38590|360853", + "text": "Nail dystrophy" + }, + { + "baseId": "38590|360853|514024", + "text": "Abnormality of the skin" + }, + { + "baseId": "38590|360853", + "text": "Skin erosion" + }, + { + "baseId": "38590|86021|86023|195809|209348|227262|227263|227264|251193|251196|251197|251198|251199|251201|251202|251203|264167|290937|290938|290956|290958|290964|290965|290966|290972|290973|290978|290979|290986|290987|290988|290989|290995|290996|291002|291003|291004|291010|291013|291021|291022|291878|291880|291892|291893|291894|291900|291901|291913|291929|291933|291942|291947|291948|291950|291953|291954|291955|291963|291964|291976|291979|291980|291982|291983|295187|295198|295199|295200|295203|295205|295206|295207|295222|295224|295234|295235|295236|295237|295238|295241|295252|295266|295284|295285|295286|295287|295295|295299|295301|295302|295310|295311|295315|295323|295330|295332|295334|295335|295336|295345|295464|295465|295466|295467|295478|295479|295482|295483|295496|295497|295498|295505|295510|295521|295525|295544|295547|295548|295559|295564|295565|295566|359454|359480|359543|359583|425565|443477|494081|513263|578420|620128|620129|620130|620131|620132|620133|677418|698155|708910|708913|708916|720512|720513|720514|720515|720516|720518|720519|734130|734131|734132|734139|734140|734141|744020|748332|748333|748334|748336|748338|748340|748342|748343|748344|748346|748349|748351|759205|759207|759433|759442|763956|763959|763961|763967|763969|763977|763979|763985|763996|774826|774828|774835|774838|774840|774843|774881|774889|781703|781718|781724|787197|889253|889254|889255|889256|889257|889258|889259|889260|889261|889262|889263|889264|889265|889266|889267|889268|889269|889270|889271|889272|889273|889274|889275|889276|889277|889278|889279|889280|889281|889282|889283|889284|889285|889286|889287|889288|889289|889290|889291|889292|889293|889294|889295|889296|889297|889298|889299|889300|889301|889302|889303|889304|889305|889306|889307|889308|889309|889310|889311|889312|889313|889314|889315|889316|889317|889318|889319|889320|889321|889322|889323|889324|889325|889326|889327|891674|891675|891676|891677|891678|891679|891680|891681|891682|891683|917439|961266", + "text": "Dystrophic epidermolysis bullosa" + }, + { + "baseId": "38590|187110|496362", + "text": "Epidermolysis bullosa dystrophica, AD, Epidermolysis bullosa dystrophica, AR" + }, + { + "baseId": "38592|106940|106974|106975|610623|610624|610625|907566|918715|918716|918717", + "text": "Polymicrogyria with or without vascular-type ehlers-danlos syndrome" + }, + { + "baseId": "38600|267754|282483|282494|404746|538337|619998|677276", + "text": "Stickler syndrome, type 5" + }, + { + "baseId": "38605|38606|55719|55720|55721|55722|55723|55724|55725|55726|55727|55729|55730|55731|55732|55733|55734|55735|174359|174360|174361|174362|174365|174366|174367|174368|174370|174371|174374|174376|174497|174500|174501|174502|174506|174506|191960|193796|194635|195091|195498|195517|195770|227296|229440|229442|229444|229445|229447|229448|229452|229455|229461|229462|229466|229470|229475|229479|252330|266947|270329|270741|299883|299889|299892|299895|299897|299899|299901|299904|299906|302506|302507|302508|302511|302512|302513|302522|302532|302534|302535|302536|302537|306913|306914|306916|306917|306918|306919|306922|306923|306924|306925|306926|306934|306935|307189|307191|307199|307201|307202|307207|307208|307211|307213|307214|368659|406861|496460|496461|501733|501959|537810|552434|655743|795841|798574|895822|895823|895824|895825|895826|895827|895828|895829|895830|895831|895832|895833|895834|895835|895836|895837|895838|895839|895840|895841|895842|895843|895844|895845|895846|895847|896225|896226|896227|896228|896229|896230|896231", + "text": "Fibrochondrogenesis 2" + }, + { + "baseId": "38615|38616|614221", + "text": "Type I complement component 8 deficiency" + }, + { + "baseId": "38626|125779|125780|125781|125782|125783|153633|153634|153635", + "text": "Efavirenz response" + }, + { + "baseId": "38626|227805", + "text": "nevirapine response - Other" + }, + { + "baseId": "38626", + "text": "efavirenz response - Dosage" + }, + { + "baseId": "38626", + "text": "methadone response - Dosage" + }, + { + "baseId": "38626", + "text": "efavirenz response - Toxicity/ADR" + }, + { + "baseId": "38628|38629|389689|389696|699194|699196|710044|721568", + "text": "Megaloblastic anemia due to dihydrofolate reductase deficiency" + }, + { + "baseId": "38630|38631|38632|38633|38634|38635|38636|205191|270131|335821|335826|335832|335839|335841|335842|335851|335852|335855|335858|335866|335873|335874|335879|335883|335884|345530|345533|345542|345549|345552|345553|345555|345557|345560|345561|345568|345582|345585|345590|345591|350134|350135|350136|350139|350140|350141|350142|350144|350145|350148|350149|350151|350152|350153|350154|350156|351186|351189|351190|351194|351196|351198|351199|351202|351207|351209|351210|620664|620665|622785|682487|689211|689212|694571|742471|886299|886300|886301|886302|886303|886304|886305|886306|886307|886308|886309|886310|886311|886312|886313|886314|886315|886316|886317|886318|886319|886320|886321|886322|919921|951130", + "text": "Hypercalcemia, infantile, 1" + }, + { + "baseId": "38634", + "text": "Muscle cramps" + }, + { + "baseId": "38637|38638|140835|140836|140837|171896|190998|193476|193775|194159|232060|232065|232066|245096|245098|245099|245100|245103|245104|245105|245106|256729|256730|256731|256732|256733|256735|256736|256737|266369|270033|270038|270739|273947|332307|332309|332315|332316|332324|332339|332340|332346|342461|342466|342468|342474|342483|342485|342487|342489|342497|342499|342506|347871|347874|347877|347881|347886|347887|347890|347893|347901|347904|347906|347908|347910|349204|349206|349213|349214|349216|349217|349219|349220|349223|349227|349232|349237|349238|349241|353483|360363|360364|361039|363769|376068|376078|376984|376986|376990|376993|377000|379110|379133|379135|379144|379145|379148|415611|432019|446014|468177|468184|468185|468190|468192|468193|469466|469472|469473|469477|469483|469491|469500|469927|469929|469936|469941|469942|469945|489958|492299|506637|507436|532373|532378|532380|532387|532395|532396|532402|532403|532407|532416|532420|532425|532432|532434|532439|532451|532493|532496|532501|532507|532509|532513|532514|532518|532522|532835|532836|532840|532845|532846|532847|536972|538482|570293|570294|570299|570301|572027|572029|572033|572035|572038|572039|572042|572048|572049|572720|572723|572724|572725|572728|572731|572732|574789|574790|574791|574792|574793|574794|574795|574796|584032|584381|610131|622449|647397|647398|647399|647400|647401|647402|647403|647404|647405|647406|647407|647408|647409|647410|647411|647412|647413|647414|647415|647416|647417|652973|653587|653588|694292|694293|694294|694297|694298|695797|704705|704706|704709|704710|704711|727836|727837|727838|727839|756606|760547|772280|772281|772290|776514|776518|778601|785987|797711|800095|847015|847016|847017|847018|847019|847020|847021|847022|847023|847024|847025|847026|847027|847028|847029|847030|847031|847032|847033|847034|847035|847036|847037|847038|847039|847040|847041|847042|847043|847044|851779|852297|852298|852828|852943|879744|879745|879746|879747|879748|879749|879750|879751|879752|879753|879754|879755|879756|879757|879758|879759|879760|879761|880680|880681|928768|928769|928770|928771|928772|928773|928774|928775|928776|928777|928778|928779|928780|928781|928782|928783|938493|938494|938495|938496|938497|938498|938499|938500|938501|950581|950582|950583|950584|950585|950586|950587|950588|950589|950590|950591|950592|950593|950594|958493|958494|958495|958496|958497|958498|958499|958500|960273|960909", + "text": "Hereditary sensory neuropathy type IE" + }, + { + "baseId": "38642|38643|38644", + "text": "Calcification of joints and arteries" + }, + { + "baseId": "38646|672204", + "text": "Pregnancy loss, recurrent, susceptibility to, 3" + }, + { + "baseId": "38651|38652|38653|38654|539060|581917", + "text": "Geleophysic dysplasia 2" + }, + { + "baseId": "38660|50024|138152|138154|141073|141074|141075|141076|151752|181639|181641|181642|210711|210712|238255|238258|280141|280156|280159|280161|280165|280166|280167|280504|280508|280509|280521|280522|280523|281814|281817|281818|281821|281822|281825|281943|281944|281945|281954", + "text": "Multiple Cutaneous and Uterine Leiomyomas" + }, + { + "baseId": "38664|38665|38666|38666|38667|38668|38669|38670|38671|38674|48186|138203|138204|138205|138207|213546|227183|227183|239097|239099|239101|239102|239103|239104|239104|239105|239106|239106|239107|250899|250902|250903|250904|250905|288577|288595|288596|289352|289358|393297|393298|393299|393303|393309|393311|393315|393317|393319|393322|393324|393326|393368|393371|393379|393384|393392|393394|393396|393498|393498|393500|393500|393503|393504|393508|393518|393520|393523|393538|393545|393557|393713|393716|393730|393732|393733|393735|393743|393746|393746|393749|393750|424448|428133|428133|451830|451837|451842|451850|451852|451853|451854|452031|452032|452040|452042|452044|452054|452056|452058|452064|452066|452073|452074|452078|452082|452092|452094|452158|452161|452163|452164|452167|452168|452169|452172|452174|452262|452262|452263|452265|452269|452289|452291|452293|452293|452294|518871|518873|518878|518881|518883|518887|518888|518890|518893|518894|518902|518904|518904|518907|518909|518915|519065|519066|519071|519073|519077|519089|519091|519096|558796|558798|558800|558802|558804|558806|558808|558810|558812|558814|558816|558818|559337|559339|559341|559343|559345|561187|561189|561191|561194|561198|562180|562373|562381|562384|562387|562407|562408|624050|630893|630894|630895|630896|630897|630898|630899|630900|630901|630902|630903|630904|630905|630906|630907|630908|630909|630910|630911|630912|630913|630914|630915|630916|630917|630918|630919|630920|630921|630922|630923|630924|630925|630926|630927|630928|630929|630930|630931|630932|630933|630934|630935|630936|630937|630938|630939|630940|630941|630942|630943|630944|630945|630946|630947|651029|651106|683539|686323|686324|686325|686326|686327|686328|686330|689728|689729|689730|689731|691290|691291|691292|691293|691295|691296|691297|695173|697818|697819|697820|697821|708543|733761|747961|759191|763596|763597|763604|777347|781548|789281|819319|819320|827472|827473|827474|827475|827476|827477|827478|827479|827480|827481|827482|827483|827484|827485|827486|827487|827488|827489|827490|827491|827492|827493|827494|827495|827496|827497|827498|827499|827500|827501|827502|827503|827504|827505|827506|827507|827508|827509|827510|827511|827512|827513|827514|827515|827516|827517|851021|851023|851530|923031|923032|923033|923034|923035|923036|923037|923038|923039|923040|923041|923042|923043|923044|923045|931740|931741|931742|931743|931744|931745|931745|931746|931747|931748|931749|931750|931751|931752|931753|931754|931755|943304|943305|943306|943307|943308|943309|943310|943311|943312|943313|943314|943315|943316|943317|953325|953326|953327|953328|953329|953330|953331|953332|953333|953334", + "text": "Dendritic cell, monocyte, B lymphocyte, and natural killer lymphocyte deficiency" + }, + { + "baseId": "38664|38666|47727|207040|207041|428130|428131", + "text": "Leukemia, acute myeloid, susceptibility to" + }, + { + "baseId": "38666|38672|38673|38674|38674|38675|38676|138203|138204|138204|138205|138205|138206|138207|213545|213546|227183|239097|239097|239099|239101|239102|239102|239103|239104|239104|239105|239106|239107|239107|250899|250899|250902|250902|250903|250904|250904|250905|250905|250906|288558|288559|288562|288566|288567|288569|288577|288577|288595|288595|288596|288596|288605|288614|289333|289338|289350|289351|289352|289352|289358|289358|289361|292356|292357|292359|292371|292373|292382|292386|292390|292391|292392|292482|292483|292484|292486|292489|292490|292491|292497|292499|292503|292504|292508|393131|393297|393298|393299|393299|393303|393309|393311|393315|393317|393319|393322|393324|393326|393368|393371|393379|393384|393392|393394|393396|393498|393498|393500|393500|393500|393503|393504|393508|393518|393520|393523|393538|393538|393545|393557|393557|393713|393713|393716|393730|393732|393733|393735|393743|393746|393746|393749|393750|428130|428133|428133|451830|451837|451842|451850|451852|451853|451854|452031|452032|452040|452042|452044|452054|452056|452058|452064|452066|452073|452074|452078|452082|452092|452094|452158|452161|452163|452164|452167|452168|452169|452172|452174|452262|452262|452263|452265|452265|452269|452289|452291|452293|452294|518871|518871|518873|518878|518881|518883|518887|518888|518890|518893|518894|518902|518904|518907|518909|518915|519065|519066|519071|519073|519077|519089|519091|519096|558796|558798|558800|558802|558804|558806|558808|558810|558812|558814|558816|558818|559337|559339|559341|559343|559345|561187|561189|561191|561194|561194|561198|562180|562373|562381|562384|562387|562407|562408|612083|630893|630894|630895|630896|630897|630898|630899|630900|630901|630902|630903|630904|630905|630906|630907|630908|630909|630910|630911|630912|630913|630914|630915|630916|630917|630918|630919|630920|630921|630922|630923|630924|630925|630926|630927|630928|630929|630930|630931|630932|630933|630934|630935|630936|630937|630938|630939|630940|630941|630942|630943|630944|630945|630946|630947|651029|651106|683539|686323|686324|686325|686326|686327|686328|686330|689728|689729|689730|689731|691290|691291|691292|691293|691295|691296|691297|695173|697818|697819|697820|697821|708543|733761|747961|759191|763596|763597|763602|763604|777347|781548|789281|790325|790326|790327|819319|819320|827472|827473|827474|827475|827476|827477|827478|827479|827480|827481|827482|827483|827484|827485|827486|827487|827488|827489|827490|827491|827492|827493|827494|827495|827496|827497|827498|827499|827500|827501|827502|827503|827504|827505|827506|827507|827508|827509|827510|827511|827512|827513|827514|827515|827516|827517|851021|851023|851530|887856|887857|887858|887859|887860|887861|887862|887863|887864|887865|887866|887867|887868|887869|887870|887871|887872|887873|923031|923032|923033|923034|923035|923036|923037|923038|923039|923040|923041|923042|923043|923044|923045|931740|931741|931742|931743|931744|931745|931746|931747|931748|931749|931750|931751|931752|931753|931754|931755|943304|943305|943306|943307|943308|943309|943310|943311|943312|943313|943314|943315|943316|943317|953325|953326|953327|953328|953329|953330|953331|953332|953333|953334|970752", + "text": "Lymphedema, primary, with myelodysplasia" + }, + { + "baseId": "38679", + "text": "Aspartate aminotransferase, serum level of, quantitative trait locus 1" + }, + { + "baseId": "38680|38681|104297|104298|134626|134627|205760|207676|207677|207679|226648|226648|240590|240591|240592|259921|361450|370290|370291|370301|370307|370318|370336|370807|370815|370817|371129|371144|372890|372907|384406|397053|397219|397223|397237|397395|397398|397407|413805|428970|459041|459048|459052|459054|459362|459363|459365|459903|459904|459908|459909|480551|480552|480553|480554|480555|480559|502869|503054|511823|511828|511828|513298|524440|524444|524446|524727|524733|524739|524884|525019|525024|525026|550363|552138|553173|563097|563099|565812|565815|568864|568866|568868|590061|614342|614343|638106|638107|638108|638109|638110|638111|638112|651895|651897|652151|655951|678940|687468|687469|687470|687472|687473|687476|687477|759791|767315|783367|790874|798617|798618|802169|816364|820032|820104|820105|821995|821996|821997|821998|821999|822000|822001|822002|822268|822269|835935|835936|835937|835938|835939|835940|835941|851258|852176|906193|906194|925521|925522|925523|925524|934683|940935|946534|946535|946536|946537|946538|946539|955773|955774|955775|961294|964322|964323|970903|975662", + "text": "Neurodevelopmental disorder with or without hyperkinetic movements and seizures, autosomal dominant" + }, + { + "baseId": "38683|38684|38685|38686|48257|48258|48259|48260|82378|104323|104324|104326|104328|104329|104333|104334|134646|134649|134649|134652|134653|134654|141218|141218|141221|141222|141223|141224|152907|171801|171802|171803|202652|202654|202655|202656|202658|202661|202663|202664|202666|202667|202668|202669|202669|202670|202671|202672|202675|202676|202677|202678|202680|202681|205273|205273|205274|207945|207945|215446|225816|226651|231830|231831|231831|231833|231834|231836|231837|231838|231839|231840|231841|231842|231844|241528|241529|244773|244777|244778|244780|244782|244785|244787|244791|244793|244793|244794|244795|244797|244800|244803|244810|244814|244815|263825|264518|264589|264589|323830|323834|323848|329924|331237|360033|360082|360939|361140|361141|361203|363682|372139|372862|372867|372872|373105|374861|398860|398865|398867|398874|398876|399031|399032|399034|399332|399340|399343|399345|399346|399587|408604|421912|421913|424660|429407|429408|462048|462052|462055|462057|462059|462310|462312|462315|482276|482276|495730|503713|504002|504011|504018|504233|504235|504242|504700|527011|527015|527017|527018|527021|527029|527224|527229|527234|527237|527240|527242|527244|527544|527546|551720|552155|552157|552160|553385|565352|565355|566731|566732|566738|566744|566746|567923|567926|567928|567929|567934|567934|567941|571707|571713|571720|571731|579767|579773|579777|611410|614369|640993|640994|640995|640996|640997|640998|640999|641000|641001|641002|641003|641004|641005|641006|641007|641008|652460|652688|684314|684316|687937|687938|687939|687940|687942|687946|693171|753264|769021|769025|784347|788865|791215|791216|791217|791218|791219|791220|815997|820452|820453|822058|822059|822060|822061|822062|822063|822064|822065|822066|822067|822068|839694|839695|839696|839697|839698|839699|839700|839700|839701|839702|839703|839704|839705|839706|839707|839708|839709|839710|839711|839712|839713|839714|839715|839716|839717|839718|852467|855108|859953|904304|904916|904917|904918|904919|904920|904921|904922|904923|904924|904925|904926|904927|904928|904929|904930|904931|904932|904933|904934|904935|904936|904937|904938|904939|904940|917108|917108|919420|919421|920314|926574|926575|926576|926577|926578|926579|926580|936038|936039|936040|936041|936042|941028|947919|947920|947921|947922|947923|956820|956821|956822|956823|956824|963749|964381|967250|967276|969373|976661|980945|983304", + "text": "Mental retardation, autosomal dominant 6" + }, + { + "baseId": "38687|38688|48261|48262|94304|94305|94306|94307|94308|94309|94310|94311|104342|104346|104348|104352|104353|104354|104360|104362|104367|134632|134635|134636|134637|134638|134639|134640|134641|134642|134645|141207|141208|141209|141211|141212|141213|141214|141216|192825|203073|203074|203075|203076|203318|203319|203321|203322|203323|203324|203328|203330|203333|203334|203341|203342|203344|203345|203349|203350|203351|203353|203355|203356|203358|203359|203369|203371|203372|203374|205020|208329|208331|225838|242573|242574|247126|259310|260147|268933|268934|270005|271783|271883|326917|326918|326922|326924|326926|326927|326928|326933|326935|326936|326938|326945|326946|326950|326953|326955|326957|326963|326965|326968|326972|326974|326976|326985|326987|326996|327000|327007|327009|327011|327015|327016|327017|327025|327026|327030|327031|327034|327041|327042|327049|327059|336823|336827|336832|336842|336844|336845|336846|336850|336851|336853|336856|336862|336866|336867|336877|336882|336883|336888|336889|336893|336895|336896|336902|336907|336908|336909|336916|336918|336920|336926|336928|336930|336935|336937|336939|336940|336942|336952|336953|336957|336960|336962|341766|341768|343088|343089|343093|343095|343099|343101|343105|343106|343111|343112|343113|343114|343116|343119|343122|343123|343127|343128|343130|343131|343132|343133|343134|343135|343137|343139|343141|343146|343148|343149|343154|343157|343160|343161|343165|343166|343167|343171|343172|343173|343174|343178|343181|343182|343183|343184|343186|343187|344697|344700|344714|344716|344717|344721|344731|344732|344737|344738|344749|344750|344753|344756|344757|344759|344761|344764|344765|344769|344770|344775|344781|344787|344794|344799|344801|344802|344804|344807|344813|344815|344816|344818|361317|362338|362345|362346|374816|374818|374822|374830|375693|375698|375866|375872|375880|375897|375920|375922|376976|378002|378008|378010|378011|378015|378017|378028|378030|378038|378046|401444|401454|401459|401471|401477|401489|401490|401492|402223|402225|402229|409809|409815|409818|422139|426196|426197|426688|429917|429918|438002|441937|445689|465388|465466|465704|466195|466197|466978|466981|467042|467051|467052|467056|467296|467297|467303|467311|467312|481392|486724|505713|505723|505910|505912|506119|506674|512255|513255|513463|529254|529287|529586|529861|530452|530456|530467|530472|530598|530611|530612|530624|530791|530803|530812|530816|530997|530998|530999|536925|538462|539069|550846|551739|552198|567460|568529|568538|568560|569433|569437|570647|570648|570650|570657|570725|570732|574229|574233|574237|574238|574239|574240|580175|580272|588073|611423|611424|611425|613614|643760|643761|643762|643763|643764|645244|645245|645246|645247|645248|645249|645250|645251|645252|645253|645254|645255|645257|645258|645259|645260|645261|645262|645263|645264|645265|645266|645267|645268|645269|645270|645271|652604|656332|684654|684655|688733|688734|695722|695723|731123|740542|770467|771219|771220|771227|785457|785460|789383|791520|791665|791666|791667|791668|791669|791670|791671|800674|802015|802016|802017|802018|802019|802060|802061|820963|820964|820965|820966|820967|822113|822114|822115|822124|822125|822126|842947|844646|844647|844648|844649|844650|844651|844652|844653|844654|844655|844656|844657|844658|844660|844661|844662|844663|844664|844665|844666|844667|844668|852149|852151|852688|852844|858574|874561|874562|876280|876281|876282|876283|876284|876285|876286|876287|876288|876289|876290|876291|876292|876293|876294|876295|876296|876297|876298|876299|876300|876301|876302|876303|876304|876305|876306|876307|876308|876309|876310|876311|876312|876313|876314|876315|876316|876317|876318|876319|876320|876321|876322|876323|876324|876325|876326|876327|876328|876329|876330|876331|876332|876333|876334|876335|876336|876337|876338|876339|876340|876341|876342|876343|876344|876345|876346|876347|876348|876349|876350|876351|876352|876353|876744|876745|904245|906190|906191|906192|917225|919693|919694|919695|919696|927518|928036|928037|928038|928039|928040|928041|928042|928043|928044|928045|928046|928047|928048|928049|937161|937698|937699|937700|937701|937702|937703|937704|937707|937708|937709|937710|937711|940379|949122|949123|949675|949676|949677|949678|949679|949680|949681|949682|949684|949685|949686|949687|949688|949689|957975|957976|957977|961332|963823|964440|964464|964465|964466|964467|969124|971061|971062|977280|983689", + "text": "Epilepsy, focal, with speech disorder and with or without mental retardation" + }, + { + "baseId": "38690|38691|38692|38693|38694|38695|134597|134598|134599|205137|250763|250764|286995|287002|287004|287017|287018|287019|287027|287028|287042|287043|287045|287047|287048|287050|287054|287057|287059|287061|287063|287064|287068|287081|287082|287086|287758|287759|287760|287777|287789|287790|287799|287802|287803|287806|287810|287812|287813|287817|287818|287819|287820|287821|287824|287825|287826|287828|287829|287830|290135|290139|290140|290143|290146|290150|290159|290161|290166|290174|290179|290180|290192|290194|290224|290226|290237|290238|290523|290527|290544|290545|290546|290547|290551|290553|290554|290555|290558|290560|290564|290568|290577|290585|290587|290589|290592|290600|290620|290621|290622|290624|290626|290646|290647|290648|428086|428089|451373|451374|451376|451378|451539|451540|451730|451734|451736|451738|451740|451741|451742|451751|451754|451761|451768|518510|518516|518590|518592|558253|558255|558626|558628|561878|608900|608901|619840|619841|630408|630409|630410|630411|630412|695150|695151|733541|747743|774721|777304|781425|792747|819265|826902|826903|826904|826905|826906|826907|826908|826909|826910|826911|885326|885327|885328|885329|885330|885331|885332|885333|885334|885335|885336|885337|885338|885339|885340|885341|885342|885343|885344|885345|885346|885347|885348|885349|885350|885351|885352|885353|885354|885355|885356|885357|885358|885359|885360|885361|885362|885363|885364|885365|885366|885367|885368|885369|885370|885371|885372|885373|885374|885375|885376|885377|885378|885379|885380|922896|922897|922898|931549|931550|931551|939907|943083|943084|953173|953174|953175|953176|953177|959652", + "text": "Congenital myasthenic syndrome 12" + }, + { + "baseId": "38696|167405|792788", + "text": "Hypertriglyceridemia, transient infantile" + }, + { + "baseId": "38697", + "text": "FRONTOTEMPORAL LOBAR DEGENERATION WITH UBIQUITIN-POSITIVE INCLUSIONS, SUSCEPTIBILITY TO" + }, + { + "baseId": "38697|205022|361109|361110|539435|558220|965228", + "text": "Ischemic stroke" + }, + { + "baseId": "38699|171700|610688|677039|682735", + "text": "Surfactant metabolism dysfunction, pulmonary, 5" + }, + { + "baseId": "38703|38704|38705", + "text": "HEMOGLOBIN H HYDROPS FETALIS SYNDROME" + }, + { + "baseId": "38706", + "text": "Delta-beta thalassemia" + }, + { + "baseId": "38710", + "text": "Carbamazepine hypersensitivity" + }, + { + "baseId": "38711|48573|195638|196233|229272|229273|229274|301312|301514|439703|439705|443694|454655|454657|454659|454661|454732|455190|455196|455462|455471|501015|520798|520800|520802|520815|520818|521053|521056|521059|521194|521197|521199|521250|521252|521260|537471|537471|559962|560171|560173|560278|560280|560282|562883|562885|562891|564834|564842|564861|609578|633511|633512|633513|633514|633515|633516|633517|633518|633519|633520|633521|651369|691758|691760|698854|698855|698856|721252|749269|782188|792641|819561|830381|830382|830383|830384|830385|830386|830387|830388|830389|830390|830391|830392|830393|830394|830395|830396|830397|830398|830399|852225|923898|923899|923900|923901|923902|923903|932741|932742|932743|932744|932745|932746|932747|944426|944427|944428|944429|944430|944431|944432|954060|954061|960556", + "text": "Usher syndrome, type 3B" + }, + { + "baseId": "38712", + "text": "Multiple sclerosis susceptibility 1" + }, + { + "baseId": "38713|38714", + "text": "Immunoglobulin kappa light chain deficiency" + }, + { + "baseId": "38723|38724|38725|38726|38727|38728|181167|181168|190093|190094|207799|207800|207801|253912|354170|408021|429138|429140|429142|429144|429146|429148|429150|444684|446859|481972|486751|583108|654135|681828|791015|798628|798919|800359|818283|919304|920288|965977|965978|965979|965980|965981|965982|966038|966039|970497|980940", + "text": "Microcephaly with or without chorioretinopathy, lymphedema, or mental retardation" + }, + { + "baseId": "38734|39805|40086", + "text": "Barrett esophagus/esophageal adenocarcinoma" + }, + { + "baseId": "38735|38736|38737|38738|38739|191525", + "text": "Retinitis pigmentosa 62" + }, + { + "baseId": "38745|38746|307905|307909|307912|307914|307918|307920|307921|307923|307924|307926|307930|307936|307948|307949|307950|307951|312199|312201|312204|312205|312206|312208|312210|312211|312212|312215|312218|312223|312229|312230|312231|312237|312238|312242|312248|312257|312264|312265|312275|312278|312279|312280|312281|312282|317907|317911|317920|317922|317926|317927|317930|317935|317938|317939|317945|317947|317948|317950|317951|317962|317963|317969|317973|317974|318403|318405|318406|318424|318425|318426|318428|318437|318439|318448|318450|318451|318460|318467|318473|318481|318489|318512|353856|626188|901705|901706|901707|901708|901709|901710|901712|901713|901714|901715|901716|901717|901718|901719|901720|901721|901722|901723|901724|901725|901726|901727|901728|901729|901730|901731|901732|901733|901734|901735|901736|901737|901738|901739|901740|901741|901742|901743|901744", + "text": "Diaphyseal medullary stenosis-bone malignancy syndrome" + }, + { + "baseId": "38748|38749|38750|38751|38752|86122|86124|237596|264277|269079|270630|305332|305333|305336|305337|305339|305340|305342|305350|305352|305361|305364|305369|305374|305376|305380|305383|305384|305386|309168|309169|309174|309182|309184|309187|309189|309191|309192|314427|314428|314429|314430|314434|314438|314442|314443|314444|314446|314448|314450|314453|314455|314456|314457|314460|314461|314465|314469|314475|314477|314478|314479|314480|314483|314509|513426|513427|575491|622729|622730|622731|622732|622733|622734|622735|622736|622737|624067|679656|736677|899607|899608|899609|899610|899611|899612|899613|899614|899615|899616|899617|899618|899619|899620|899621|899622|899623|899624|899625|899626|899627|899628|899629|899630|899631|900500|900501|919154|919155", + "text": "Idiopathic basal ganglia calcification 1" + }, + { + "baseId": "38753|920227", + "text": "Narcolepsy 7" + }, + { + "baseId": "38754|53636|53641|53680|175565|189930|189947|241811|337435|360038|426055|528396", + "text": "Sick sinus syndrome 3, susceptibility to" + }, + { + "baseId": "38755|38756|135087|135088|135089|135090|135091|135092|135093|207928|207929|207930|254377|254379|254380|254383|315700|315702|315703|315705|315706|315712|315713|322599|322637|322641|322655|322661|322664|322666|322672|322676|322677|322691|322692|328778|328780|328793|328794|328795|328803|328820|328821|328830|330006|330008|330012|330015|330021|330029|330035|583113|869038|869039|869040|869041|869042|869043|869044|869045|869046|869047|869048|869049|869050|869051|872168|872169|872170|872171", + "text": "Distal arthrogryposis type 1B" + }, + { + "baseId": "38759|208598|430214|430215|430216|430217|469804|470212|694415|695821|704986|716446|728184|847677|847678|847679|950783|958635", + "text": "Hypoglycemia, neonatal, simulating foetopathia diabetica" + }, + { + "baseId": "38765|38766|38767|38768|38769|46934|46935|46936|46937|46938|46939|46940|46941|46942|46943|46944|76592|76593|76594|125917|125918|125919|171824|171825|171826|171827|171828|171829|171830|171831|171832|171833|171834|171835|171836|171837|171838|171839|171840|171841|171842|171843|171844|171845|227280|296361|296367|296369|296374|296377|296378|296381|296382|296383|296393|296400|296402|296403|296413|298190|298204|298208|298210|298211|298212|298215|298217|298220|298221|298222|298223|298224|298227|298228|298231|298234|298242|298245|298246|298247|302301|302304|302305|302306|302307|302309|302310|302316|302317|302319|302321|302322|302324|302326|302327|302336|302337|302340|302347|302348|302354|302358|302376|302379|302380|302381|302519|302521|302526|302527|302552|302554|302555|302563|302570|302577|302578|302581|302585|302587|302590|302591|302592|302618|302619|302620|302622|302628|302633|302650|302651|302657|302658|302660|438307|486382|540579|721299|790526|893576|893577|893578|893579|893580|893581|893582|893583|893584|893585|893586|893587|893588|893589|893590|893591|893592|893593|893594|893595|893596|893597|893598|893599|893600|893601|893602|893603|893604|893605|893606|893607|893608|893609|896062|896063|896064|961273|961510|964244|964245|964246|966615|970150", + "text": "Hereditary diffuse leukoencephalopathy with spheroids" + }, + { + "baseId": "38774|38775|168098|168100|168101|168102|168103|168104|168799|172288|172289|172291|217240|217241|217242|217243|217244|291260|291272|291275|291279|291299|292293|292300|295681|295683|295701|295716|295816|295827|295829|295836|313508|319315|481065|481066|682840|718173|918550|918551|965215|977201", + "text": "Robinow syndrome, autosomal dominant 1" + }, + { + "baseId": "38780|38781|59533|59534|578370|970515", + "text": "Agnathia-otocephaly complex" + }, + { + "baseId": "38782|38783|622429|964431|983645", + "text": "Familial partial lipodystrophy 4" + }, + { + "baseId": "38784|38785|38786|38787|38788|38789|38790|195282|195616|227493|227494|227495|468442|469323|469728|469744|469746|470364|470366|532691|532694|533089|570471|570476|572179|572888|574862|574863|584837|647638|647639|647640|647641|647642|647643|647644|647645|647646|647647|647648|647649|647650|647651|716156|716157|716158|727896|741576|756702|756703|772380|772381|791887|821230|847225|847226|847227|847228|847229|847230|847231|847232|847233|847234|928823|928824|928825|928826|938562|938563|938564|950657|950658|950659|950660|950661|958527|958528|960280", + "text": "Spondyloenchondrodysplasia with immune dysregulation" + }, + { + "baseId": "38795|40511|40513|50329|50330|50331|215529|226723|263845|273903|275469|327476|327497|327498|337334|337339|337341|337345|337346|337348|343600|343601|343604|343606|343608|345115|345118|345119|612449|620572|667832|668752|668893|671983|671984|671985|671986|671987|671988|671999|740627|876892|876893|876894|876895|876896|876897|876898|876899|876900|876901|876902|876903|876904|876905|876906|876907|880478", + "text": "Osteogenesis imperfecta, type VI" + }, + { + "baseId": "38805", + "text": "Protein Z deficiency" + }, + { + "baseId": "38810|38811", + "text": "Bent bone dysplasia syndrome" + }, + { + "baseId": "38815|38816|38817|299872|299876|299879|299880|302492|302497|302501|302502|302505|306907|306908|306909|307182|307185|307186|455509|455616|456335|456344|521554|521555|522226|522229|539436|539440|560682|560760|560762|560765|560767|560776|563511|634815|634816|634817|634818|634819|634820|634821|634822|735606|831808|831809|831810|831811|831812|831813|831814|831815|831816|851070|858662|858663|895817|895818|895819|895820|895821|924327|933274|933275|933276|933277|944965|944966|944967|944968|944969|944970|944971|944972", + "text": "Proteasome-associated autoinflammatory syndrome 1" + }, + { + "baseId": "38832", + "text": "Congenital myopathy with cores" + }, + { + "baseId": "38843|135661|201395|201407|391627|859024|922331|976644|976645", + "text": "Episodic ataxia type 9" + }, + { + "baseId": "38843", + "text": "SCN2A-related condition" + }, + { + "baseId": "38847|38848|204993|204994", + "text": "Peeling skin syndrome 4" + }, + { + "baseId": "38849|38850", + "text": "Spermatogenic failure 8" + }, + { + "baseId": "38853|614381", + "text": "Okt4 epitope deficiency" + }, + { + "baseId": "38862|38863|38864|38865|49466|242958|242961|329600|329602|329604|329606|329607|329614|339838|339843|339850|339862|339878|339888|339896|339905|345603|345607|345611|345612|345613|345614|345615|345621|345622|346931|346932|346943|346949|346958|346959|346973|376529|402488|403073|426726|426726|468759|574607|626463|822139|878266|878267|878268|878269|878270|878271|878272|878273|878274|878275|878276|878277|878278|878279|878280|878281|878282|878283|878284|878285|878286|878287|878288|878289|880569|880570", + "text": "Acrodysostosis 1 with or without hormone resistance" + }, + { + "baseId": "38868|38869|190071|190072|190073|227389|552202|791743|980553", + "text": "Hypothyroidism, congenital, nongoitrous, 6" + }, + { + "baseId": "38876|188095|310969|310971|310973|310986|310987|310991|310993|311004|311007|311008|311009|316280|316281|316284|316300|316302|316305|316310|316311|316317|316318|316324|316328|316336|316339|316340|322373|322376|322377|322378|322379|322380|322387|322388|322390|322392|322403|322410|322961|322965|322966|322977|322983|322986|322998|322999|323003|866241|866242|866243|866244|866245|866246|866247|866248|866249|866250|866251|866252|866253|866254|866255|868500", + "text": "Quebec platelet disorder" + }, + { + "baseId": "38882|143263|143264|205334|214759|237814|237815|264811|362166|425234|481426|511146|552248|624872|792160|792161|858270|917760|961637|971189", + "text": "N-terminal acetyltransferase deficiency" + }, + { + "baseId": "38890|48505|48506|48507|96880|138333|138335|170111|181481|181482|181483|181484|188071|190610|209050|209052|209053|213669|257839|257840|260327|268639|380059|384426|424676|470828|472154|472155|481225|512682|535170|535357|535358|550379|550655|552258|573882|575415|611451|624875|650055|650056|650057|650058|653785|653786|677330|679813|679814|694884|695906|706232|706233|800316|800317|850063|858796|951803|960383|963977|964903|964904|967283|969761|969762|969763|969764|969765|969766|969767|969882|969883|969884|969885|969886|971206|973107|976687|976703", + "text": "Kabuki syndrome 2" + }, + { + "baseId": "38900|38901|38902|38903|48574|339104|339107|348657|348662|352180|404851|902983|902984|902985|964595", + "text": "Deafness, X-linked 4" + }, + { + "baseId": "38905|38906|38907|38908|38909|167455|257862|339510|349006|349009|349010|352384|352385|352933|352934|352935|352936|534923|650131|858692|861439|903159|903160|903161|903162|903163|903164|903165|903166|903167|903168|939652|939653|951859", + "text": "Amyotrophic lateral sclerosis 15, with or without frontotemporal dementia" + }, + { + "baseId": "38911", + "text": "Keratosis follicularis spinulosa decalvans, X-linked" + }, + { + "baseId": "38912|38913|38914|38915|38916|214810|263296|353912", + "text": "Megalocornea" + }, + { + "baseId": "38917|100523|100737|213850|213851|213864|404245|411320|584392|849945|917367|917575|920526|921514|969201|970103|970104|970105|970106|970107|970108|970109|970110|970111|970112|970113|970114|970115|970116|970117|970118|970119|970120|970121|970122|970123|972534|975759|977302|980134|980135|980137|983935|983936|983937|984015|984017", + "text": "Dystrophinopathies" + }, + { + "baseId": "38917|100520|100526|100534|100584|100683|100748|100761|101999|135741|171248|193535|198575|213848|265659|266626|266735|272508|272743|273101|275358|275412|313563|313602|339160|404291|404553|415778|433498|442428|446624|446630|470744|471494|492088|508553|510948|510954|534738|574529|574628|575403|589742|649978|649979|650006|650012|654968|656768|669966|670892|743300|773985|773998|786798|816418|816418|816419|816420|816432|849929|849949|849954|849975|850006|850016|980100", + "text": "Dystrophin deficiency" + }, + { + "baseId": "38924|38925|614507", + "text": "Atypical mycobacteriosis, familial, X-linked 2" + }, + { + "baseId": "38936|38937|102107|102108|135014|411494|439097|472216|534862|534976|535088|574029|574993|614142|650255|650256|650257|650258|650259|650260|653794|677000|677001|677002|706323|758664|758665|758666|758667|758668|821516|821517|850325|853047|920070|939693|940568|951900|951901|951902|959363|959364|959365|964635", + "text": "Immunodeficiency, X-Linked, with magnesium defect, Epstein-Barr virus infection, and neoplasia" + }, + { + "baseId": "38943|136563|136564|136565|136566|136567|136568|208918|379031|379034|379035|379928|380442|384425|422422|426413|446520|470535|471783|471783|471787|472077|481445|507782|507783|534580|534581|534644|534646|534652|534656|535068|552245|573636|573640|575348|575349|575350|580675|612338|614499|649753|649754|649755|649756|649757|649758|649759|649760|653501|653777|717696|789085|792137|792138|802044|816499|821566|822217|849717|849718|849719|849720|849721|849722|849723|849724|929595|929596|929597|939464|939465|940543|951636|951637|951638|959183|961636|972803|977299", + "text": "Multiple congenital anomalies-hypotonia-seizures syndrome 2" + }, + { + "baseId": "38945|38946", + "text": "Autism, susceptibility to, X-linked 5" + }, + { + "baseId": "38957", + "text": "Dystonia, mitochondrial" + }, + { + "baseId": "38961", + "text": "Interstitial nephritis" + }, + { + "baseId": "38963|38964|38965|38966|38967|38968|38969|38970|38971|38972|38973|38974|38975|40347|79652|79656|79657|131873|131874|131875|131876|131877|131878|131879|131880|131881|131883|131884|131885|131886|207700|207701|207703|213590|213591|262269|307876|307885|307888|307897|307899|307904|307911|307915|307917|307955|307957|307958|307960|307961|307963|312169|312176|312178|312182|312187|312189|312191|312284|312286|312303|312307|317849|317853|317858|317859|317870|317871|317874|317875|317882|317895|317910|317925|317981|317984|317985|317989|317990|318354|318355|318361|318363|318371|318375|318376|318377|318382|318401|318513|318522|318525|318541|318544|318545|318550|318556|318557|353884|384434|428990|428991|428992|444460|513587|552140|579643|579683|611443|612284|682813|790884|790885|790886|818146|901678|901679|901680|901681|901682|901683|901684|901685|901686|901687|901688|901689|901690|901691|901692|901693|901694|901695|901696|901697|901698|901699|901700|901701|901702|901703|901704|901711|901745|901746|901747|901748|901749|901750|901751|901752|901753|901754|901755|901756|901757|901758|901759|903370|903371|903372|903373|903374|919221|964327|964328|964329|964330|969544|969787|969788|970907|970908|970909|970910|973027|976657|980934", + "text": "Nicolaides-Baraitser syndrome" + }, + { + "baseId": "38972|181453|263192|511891|805140|969777|969881|969887", + "text": "Hirsutism" + }, + { + "baseId": "38976", + "text": "Split-hand/foot malformation 1 with sensorineural hearing loss" + }, + { + "baseId": "38978|273103|273131|320738|329581|329582|329583|329584|329585|329586|336193|336203|336206|336207|338097|338103|338104|338106|769832|791415|871960|871961|871962|871963|871964|871965|871966|871967|871968|871969|871970", + "text": "Pituitary hormone deficiency, combined 6" + }, + { + "baseId": "38984|70509|134370|134371|134372|134374|134375|134376|134377|134378|134379|134380|134381|134382|134383|134384|134385|134386|134387|134388|134389|134390|134391|143271|143271|192741|192971|194356|194619|195162|195513|208055|208056|208057|208058|208059|208060|208060|208062|208063|208065|208067|208069|208070|208073|208076|208077|208079|208080|208083|208084|222357|241764|241766|241767|241768|241769|241770|241771|241772|241773|241774|241775|241776|241777|244859|244862|244866|244868|244872|244875|244876|244877|244881|244885|244888|244889|244890|244892|244895|244898|244901|244902|244904|244906|265503|266360|267185|269783|270759|271447|320125|320127|320129|320133|320136|320139|320141|320151|320152|320153|320169|320170|320171|320175|320177|320179|320180|320185|320188|320192|320194|328711|328719|328720|328722|328723|328724|328725|328727|328728|328729|328730|328733|328735|328743|328745|335329|335332|335333|335337|335339|335340|335347|335351|335352|335353|335354|335355|337184|337203|337208|337210|337211|337213|337220|337222|337241|337247|337249|360017|360026|360953|360956|360957|372877|372900|372921|372942|372947|372953|372954|373589|373596|373599|373600|373616|373660|373912|373913|373918|373963|373968|373972|373973|373990|375719|375745|375792|375800|375808|375812|375814|375821|375832|375840|375842|399489|399501|399506|399507|399521|399527|399533|399599|399606|399610|399613|399616|399628|399630|399631|399632|400056|400072|400221|400222|400227|400232|400237|400247|400255|404814|409062|415379|415380|421967|421968|429514|429518|429519|429523|429527|429529|429530|429536|429538|429541|429548|441640|445167|462975|462977|462985|462991|462995|463003|463013|463015|463017|463023|463032|463037|463393|463395|463396|463403|463420|463431|463434|463455|463468|463475|463480|463482|463484|463495|463509|463518|463519|463528|463732|463745|463755|463759|463764|463765|463767|463768|463774|463781|463784|463797|463798|463800|463805|463811|463967|463968|463971|463973|463975|463979|463990|463993|463993|463995|463999|464002|464008|464010|464013|504329|504329|504331|504331|504338|504355|504375|504376|504380|504608|504609|504611|504858|504884|504899|504900|504903|504913|505270|505297|505314|527840|527842|527844|527851|527854|527856|527857|527858|527860|527861|527862|527871|527872|527875|527877|527879|527882|527883|527888|527890|527892|527895|527897|527899|527901|527905|527906|527908|527911|527918|527919|527921|527922|527924|527926|527930|528176|528178|528180|528181|528184|528191|528192|528197|528199|528200|528206|528208|528209|528211|528215|528223|528224|528235|528238|528241|528249|528251|528251|528252|528267|528267|528346|528347|528349|528356|528365|528369|528378|528383|528391|528394|528399|528404|528406|528409|536869|566192|566195|566197|566201|566209|566210|566212|566215|566217|566222|566225|566227|566229|567778|567782|567783|567785|567786|567790|567795|567795|567796|567803|567806|568642|568646|568652|568656|568662|568663|568665|568675|568678|568684|568693|572624|572626|572627|572631|572632|572635|572636|572638|572646|572650|572658|577341|577343|577345|577347|579818|579829|579833|579843|579852|579860|579867|579872|580120|609881|613519|614387|614387|614388|614389|614390|614391|614392|642067|642068|642069|642070|642071|642072|642073|642074|642075|642076|642077|642078|642079|642080|642081|642082|642083|642084|642085|642086|642087|642088|642089|642090|642091|642092|642093|642094|642095|642096|642097|642098|642099|642100|642101|642102|642103|642104|642105|642106|642107|642108|642109|642110|642111|652328|652436|652440|652443|652447|652571|652574|652577|652579|653886|656218|656219|656223|667162|683051|683052|683062|684421|684422|684424|684425|684426|684427|684428|684429|684431|684432|685390|688186|688187|688188|688189|688191|688192|688194|688195|688198|688202|688203|688204|688205|690069|693404|693405|693408|693416|693417|702757|702761|702762|702763|702766|714002|714003|725560|725561|725564|739119|739121|769647|769648|769649|769653|769658|769660|769666|769670|776244|778043|791378|791379|791380|791381|791382|791383|820593|822093|822094|841015|841016|841017|841018|841019|841020|841021|841022|841023|841024|841025|841026|841027|841028|841029|841030|841031|841032|841033|841034|841035|841036|841037|841038|841039|841040|841041|841042|841043|841044|841045|841046|841047|841048|841049|841050|841051|841052|841053|841054|841055|841056|841057|841058|841059|841060|841061|841062|841063|841064|841065|841066|841067|841068|851543|851983|852548|852550|852551|852552|871609|871610|871611|871612|871613|871614|871615|871616|871617|871618|871619|871620|871621|871622|871623|871624|871625|871626|871627|871628|871629|871630|871631|871632|871633|871634|871635|871636|871637|871638|871639|871640|871641|871642|871643|871644|872350|872351|872352|906346|919505|919506|919507|919508|920328|920329|926954|926955|926956|926957|926958|926959|926960|926961|926962|926963|926964|936492|936493|936494|936495|936496|936497|936498|936499|936500|936501|936502|936503|936504|936505|936506|936507|936508|936509|936510|936511|936512|936513|936514|936515|936516|940294|940295|940296|948424|948425|948426|948427|948428|948429|948430|948431|948432|948433|948434|948435|948436|948437|957143|957144|957145|957146|957147|960075|960076|961823|962985|962986|970987|970988|976531", + "text": "Charcot-Marie-Tooth disease, axonal, type 2O" + }, + { + "baseId": "38984|38987|38988|38989|143271|143271|178391|208060|208069|360017|360026|404814|463993|504329|504331|528251|528267|536869|552169|567795|614387|614388|614389|614390|614391|614392|625287|861578|906346|976531", + "text": "Spinal muscular atrophy, lower extremity predominant 1, autosomal dominant" + }, + { + "baseId": "38985|38986|70507|70508|70509|143271|178391|205703|205704|208060|208062|208069|208078|213627|225860|360026|404814|409059|429525|429533|432219|463993|481362|488159|504329|504331|528251|528267|536869|552168|552170|567795|614387|614388|614389|614390|614391|614392|642069|642109|788878|789143|861578|906346|963773|964405|964406|964407|964408|964409|964410|964411|965741|965990|965991|965992|970985|970986|976531", + "text": "Mental retardation, autosomal dominant 13" + }, + { + "baseId": "38990|38991|38992|38993|38994|38995|38996|48575|106816|106817|297832|297834|297841|297844|297848|297849|297851|297852|297858|297859|297864|297873|297884|297895|297896|297901|300009|300010|300014|300017|300032|300034|300041|300058|300069|300073|300081|300082|300083|300085|304246|304256|304258|304268|304270|304280|304283|304285|304287|304290|304292|304293|304302|304310|304322|304563|304568|304574|304575|304576|304578|304579|304582|304604|304616|304619|304630|304636|304638|304639|304642|304645|304648|304650|304651|304654|304657|304665|304666|304667|304670|304673|304676|304688|428440|550850|578437|735144|894526|894527|894528|894529|894530|894531|894532|894533|894534|894535|894536|894537|894538|894539|894540|894541|894542|894543|894544|894545|894546|894547|894548|894549|894550|894551|894552|894553|894554|894555|894556|894557|894558|894559|894560|894561|894562|894563|894564|894565|894566|894567|894568|894569|894570|894571|894572|894573|894574|894575|894576|896118|896119|896120|896121|918974|970811|977215|977216", + "text": "Acrodysostosis 2, with or without hormone resistance" + }, + { + "baseId": "38997|100923|100926|100934|100935|100936|100937|100939|100940|100942|100944|100949|100952|100954|100956|100957|100958|100959|100962|100963|100964|100965|100966|100967|100970|137671|137672|169206|169216|169217|169241|169249|169257|177650|177653|191800|192013|192117|192379|192980|193132|193186|193789|265764|272980|465740|490287|530101|530304|567503|570296|576341|580079|580124|622484|644676|644677|644678|644679|644680|644681|644682|644683|644684|644685|652563|652630|652851|682919|693866|695695|695696|726633|770904|776345|778419|820828|820829|820831|820832|820833|820834|820835|822118|843862|843863|843864|843865|843866|843867|843868|843869|843870|843871|852820|918471|927815|927816|927817|927818|937453|937454|941136|949400|949401|949402|957762|957763|957764|957765|961547", + "text": "Rubinstein-Taybi syndrome" + }, + { + "baseId": "39005|39006|39007|426184|433824|433825|433826|433829|433830|433831|433832|438794|466042|466043|466044|466046|466779|466781|466782|466797|466806|466807|466807|466809|466811|466813|466814|466815|467072|467074|467077|467079|467086|467093|467096|467098|530317|530318|530320|530325|530328|530331|530334|530337|530338|530403|530407|530412|530420|530427|530583|530586|530588|530591|530593|530600|530797|530801|530804|530808|530811|530814|530821|530825|530830|530836|530838|530841|530843|567548|568406|568407|568411|568412|568416|568420|568423|570515|570519|570523|570524|570526|570530|570531|570533|570574|570576|570577|570578|570578|574181|574182|574183|574184|574185|574186|574187|610028|610028|610030|610031|610033|613046|614430|614430|624613|645030|645031|645032|645033|645034|645035|645036|645037|645038|645039|645040|645041|645042|645043|645044|645045|645046|645047|645048|645049|645050|645051|645052|645053|645054|645055|645056|645057|645058|645059|645060|645061|652759|652761|652765|652769|703844|703845|715100|715101|715102|715103|726809|726810|726811|726812|726813|726814|726815|726816|726817|726818|731098|740374|740375|740377|740379|740381|755409|755412|755417|755418|755419|755420|755422|755426|760529|760531|771089|771093|771096|771103|776379|776383|779850|785393|785394|785396|785398|816340|822121|844388|844389|844390|844391|844392|844393|844394|844395|844396|844397|844398|844399|844400|844401|844402|844403|844404|844405|844406|844407|844408|844409|844410|844411|844412|852833|927968|927969|927970|927971|927972|927973|927974|927975|927976|937633|937634|937635|937636|937637|937638|937639|937640|937641|937642|941148|949602|949603|949604|949605|949606|949607|949608|949609|949610|949611|949612|957895|957896|957897|957898|957899|957900|957901|960180|960181", + "text": "Familial cold autoinflammatory syndrome 3" + }, + { + "baseId": "39010|39011|39012|39013|39014|39015|39016|138702|138703|138704|138706|138707|138710|138711|138713|138714|138716|138717|138722|138724|138726|193068|193148|193953|194086|224678|249378|249379|249380|249381|268080|270663|270783|270855|270887|273621|274044|275095|275203|275435|447065|447071|447161|447170|447179|447244|447249|488855|489054|491424|494205|509039|509040|513232|515029|515031|515128|515139|536068|556572|556609|556899|584340|585705|608918|612470|612495|626736|626737|626739|650571|731635|789832|789833|789836|789837|789838|822624|822625|921612|921613|921614|921615|921617|930005|941412|941413|941414|952040|962054|964126", + "text": "Hajdu-Cheney syndrome" + }, + { + "baseId": "39018|133411|133417|133422|141632|180244|180245|240014|240015|240018|244492|244497|407093|407096|575755|575756|575760", + "text": "Fanconi anemia, complementation group U" + }, + { + "baseId": "39018|132703|205033|205034|205035|205036|205037|205038|205039|205040|654386|678062|678063", + "text": "Short stature, microcephaly, and endocrine dysfunction" + }, + { + "baseId": "39019|39020|39021|39022|39023|429069", + "text": "46,XY sex reversal 8" + }, + { + "baseId": "39024|39025|39026|237408|299836|299838|299839|299841|299845|299847|299850|299852|299854|299855|299862|299870|302423|302444|302461|302463|302468|302475|302478|302482|302483|302485|302490|306854|306855|306864|306865|306866|306875|306881|306887|306888|306889|306893|306904|307139|307145|307147|307149|307151|307155|307157|307160|307169|307170|307177|307178|307180|364046|552104|620226|620227|677032|699530|788797|816461|857618|857619|895794|895795|895796|895797|895798|895799|895800|895801|895802|895803|895804|895805|895806|895807|895808|895809|895810|895811|895812|895813|895814|895815|895816|896220|896221|896222|896223|896224|917794|917795", + "text": "Trichohepatoenteric syndrome 2" + }, + { + "baseId": "39027|39028|508785|508786|508787", + "text": "Parkinson disease 18" + }, + { + "baseId": "39029|39030|39031|39032|39033|227258|268102|269243|269771|270877|270999|274304|452231|452234|452359|491384|518796|519048|519204|558866|586117|614259|631111|651110|686381|686382|691350|691351|691353|691357|695191|697980|697981|720347|798525|799319|816309|819292|827774|827775|827776|827777|918819|918820|920191|969769|980449", + "text": "3MC syndrome 1" + }, + { + "baseId": "39038|39038|39039|39039|39040|39040|39041|39042|39043|39044|39045|39046|39047|39048|39049|153735|153736|153737|153737|170197|170197|204402|204403|246906|283703|283706|283707|283708|284378|284382|286359|286368|286372|286373|286374|286714|286717|286719|286729|286732|286734|405526|414861|450165|450340|450469|517473|517475|517560|517561|517596|517597|517751|517762|557800|557802|559021|559510|559512|629241|629242|629243|629244|629245|629246|629246|629247|629248|629248|629249|629250|629251|650934|650935|743858|743869|762743|778989|781101|792652|815887|819094|825519|825520|825521|825522|825523|825524|825525|825526|825527|825528|825529|825530|825531|825532|825533|825534|850870|922499|922500|922501|931065|942534|942535|942536|952869|952870|952871|952872|952873|959617|960460|964448", + "text": "Immunodeficiency 31C" + }, + { + "baseId": "39039", + "text": "Chronic mucocutaneous candidiasis" + }, + { + "baseId": "39050|99491|99496|99503|177214|192291|201649|201653|201655|201657|201675|201678|201686|201691|201720|201721|405989|495430|518499|550773|614247", + "text": "Schizophrenia 17" + }, + { + "baseId": "39054|39056|39057|39058|39058|39061|39062|53503|457788", + "text": "Ventricular septal defect 1" + }, + { + "baseId": "39065|39066", + "text": "Nephrotic syndrome, type 6" + }, + { + "baseId": "39070|39071|39072|395449", + "text": "Ventricular septal defect 3" + }, + { + "baseId": "39075", + "text": "Familial periodic paralysis" + }, + { + "baseId": "39079|75271|135691|135695|135696|135699|139369|139369|142775|165903|165904|165905|171736|190110|190111|192849|202713|202741|202742|202756|202761|205018|205018|214541|225856|247710|247711|247712|247713|247714|247715|247716|247717|247718|247719|247720|247721|247722|247723|247724|247725|247726|247727|247728|247729|247730|247731|247732|274242|361206|361207|375261|408704|408707|424662|429437|429438|442469|481456|486752|512030|513321|538432|571890|614378|622135|641224|677439|677440|682181|791254|791255|791256|791257|802002|802003|802055|816524|857654|858349|858350|858351|858352|858353|919451|919452|919453|961526|963766|964390|964391|964392|964393|964394|970968|970969|977256", + "text": "Early infantile epileptic encephalopathy 13" + }, + { + "baseId": "39081|97393", + "text": "Aldosterone-producing adrenal adenoma, somatic" + }, + { + "baseId": "39082|199803|230626|496794", + "text": "Diffuse interstitial pulmonary fibrosis" + }, + { + "baseId": "39087|48221|48222|92733|171866|171868|171873|171874|200400|200401|200402|200403|200404|200405|200406|200407|200408|200409|205794|205795|208716|208717|208718|208721|208722|215106|225882|271849|353886|360481|362432|362451|377240|377244|377246|377248|377261|377262|378397|378412|378421|378435|379772|379777|379779|379780|410857|410861|410863|422355|422362|430426|430427|430428|430430|430970|431925|446321|446324|446325|469618|469619|469620|469621|469624|470570|470660|470664|470665|470667|471076|471195|471199|471643|471646|497342|507355|507358|508310|533860|533872|533876|533877|533882|533884|533886|533888|533890|533896|533908|533916|533920|533930|550373|571556|573129|573716|573793|575165|577893|580584|580703|586014|589813|611436|611918|614482|615979|648990|648991|648992|648993|648994|648995|648996|648997|648998|648999|649000|653898|654150|656660|680058|705690|728910|757799|773337|773338|773340|773343|773344|786491|786493|798768|821353|821373|822176|822177|822178|822179|822180|822181|822182|822183|822184|822185|822186|822282|822283|822284|848794|848795|848796|848797|848798|848799|848800|848801|848802|848803|848804|904257|919935|919936|929321|929322|929323|929324|939113|939114|939115|939116|951236|951237|951238|951239|951240|958963|958964|963924|964546|964547|964548|964736|966014|966044|966045|971155|972801", + "text": "Mental retardation, autosomal dominant 7" + }, + { + "baseId": "39089|39090|190914|190915|191731|192064|192065|193303|195766|195767|213544|221361|221362|227192|227843|228983|228984|228985|228986|228987|228988|228989|228990|228991|228992|228993|228995|228996|228997|228998|228999|229000|229001|229002|229003|229004|229005|229006|229007|239077|239078|239079|239080|239081|239082|239083|239084|239085|239086|239087|239088|239089|239090|239091|239092|239093|246930|246931|246933|250865|250866|250867|250868|250870|250872|250873|250874|250875|250876|250878|250879|250881|250885|250886|250888|258246|258247|258248|258250|258253|258254|258255|258256|258257|258258|258259|258260|258261|258262|258264|258265|258266|258268|258270|258273|258274|258276|258277|258281|258283|258284|263818|263819|268990|288324|288331|288338|288346|288349|288350|288355|288360|288361|288366|288368|288370|288371|288372|288380|288388|288390|288396|288397|288402|288416|288419|288425|289110|289115|289122|289125|289126|289127|289132|289144|289145|289155|289156|289163|289164|289165|289172|289175|292057|292070|292072|292077|292078|292084|292105|292113|292114|292130|292143|292144|292159|292163|292169|292179|292195|292196|292199|292241|292243|292251|292261|292277|292278|292288|292292|292294|292298|359474|361858|362736|366893|366894|366895|367151|367154|367156|367157|367158|367160|367163|368173|389561|393233|393240|393248|393249|393255|393260|393262|393264|393266|393267|393271|393276|393279|393285|393312|393320|393321|393325|393327|393332|393335|393341|393342|393353|393354|393359|393441|393454|393461|393463|393466|393467|393469|393477|393479|393481|393483|393489|393491|393661|393662|393664|393668|393669|393673|393678|393682|393684|393691|393693|393695|393702|393709|406107|413642|417440|433732|433734|443356|451756|451757|451759|451763|451770|451772|451774|451777|451778|451779|451780|451787|451794|451801|451806|451815|451819|451821|452008|452012|452013|452015|452016|452023|452026|452028|452083|452085|452104|452107|452109|452113|452114|452128|452130|452131|452225|452230|452237|452239|452242|452246|452248|452251|452253|480517|481425|486334|495133|500000|500261|500426|500428|500430|500452|509500|509501|509506|509511|509512|509516|509520|509522|509523|509526|509528|509533|509534|509535|509536|509538|509543|509547|518787|518791|518793|518795|518798|518807|518808|518810|518819|518827|518833|518837|518842|518847|518849|518850|518853|518863|518868|518872|518875|518879|518880|518882|519023|519033|519034|519037|519039|519040|519042|519043|519045|519046|519047|519051|519052|519056|519058|519060|519070|519075|537739|537741|537746|537748|552424|552428|558774|558776|558778|558780|558782|558784|558786|558788|558790|558792|558794|559219|559313|559315|559317|559319|559321|559323|559325|559327|559329|561140|561144|561150|561155|561166|561168|561174|561175|561178|562358|562359|562360|562364|562368|609295|609493|609496|612631|612635|614256|614257|614887|614890|630844|630845|630846|630847|630848|630849|630850|630851|630852|630853|630854|630855|630856|630857|630858|630859|630860|630861|630862|630863|630864|630865|630866|630867|630868|630869|630870|630871|630872|630873|630874|651015|651020|651025|655502|679743|682238|683532|683533|683534|683536|683537|686304|686307|686308|686311|686314|686315|686317|691282|691284|697786|759172|759184|763576|763578|779019|787148|799310|799311|819316|827415|827416|827417|827418|827419|827420|827421|827422|827423|827424|827425|827426|827427|827428|827429|827430|827431|827432|827433|827434|827435|827436|827437|827438|827439|827440|827441|827442|827443|827444|827445|827446|827447|850906|887735|887736|887737|887738|887739|887740|887741|887742|887743|887744|887745|887746|887747|887748|887749|887750|887751|887752|887753|887754|887755|887756|887757|887758|887760|887761|887762|887763|887764|887765|887766|918795|923018|923019|923020|923021|923022|923023|923024|923025|931724|931725|931726|931727|931728|931729|931730|931731|931732|931733|931734|931735|943289|943290|943291|943292|943293|943294|943295|943296|953315|953316|953317|953318|953319|953320|953321|959677|959678|967145|967176|967177", + "text": "Aortic aneurysm, familial thoracic 7" + }, + { + "baseId": "39092|39093|39094|39095|39096|513301|969283|969284", + "text": "Craniosynostosis and dental anomalies" + }, + { + "baseId": "39097|192301|192302|192304|192304|193485|194352|260581|271395|275012|315166|315168|315170|315171|315175|315181|315182|315189|315190|315195|315196|315200|315203|321989|322012|322013|322017|322020|322026|328077|328092|328113|328117|328123|328124|328131|328132|329346|329356|329359|329368|329370|329372|329391|433909|536181|590441|590442|620420|724739|738291|868783|868784|868785|868786|868787|868788|868789|868790|868791|868792|868793|868794|868795|868796|868797", + "text": "Osteogenesis imperfecta type 10" + }, + { + "baseId": "39100|39101|39102|39103|213561|246988|263526|424269|424270|428439|455034|455051|455218|455223|455227|455231|455680|455682|455689|508801|508802|508803|508804|508805|508806|521517|521577|521581|521844|563184|563196|633987|633988|633989|633990|633991|691871|691872|691873|691874|699120|699121|699122|699123|699124|699128|709954|777608|821921|821922|830904|918973|944639|970810", + "text": "46,XY sex reversal, type 6" + }, + { + "baseId": "39110|48337|48338|247502", + "text": "High density lipoprotein cholesterol level quantitative trait locus 6" + }, + { + "baseId": "39115|39548|39551|79366|253214|253218|270642|306119|310158|310160|310176|458107|692527|692528|700686|835158|835159|835160|835161|835162|835163|835164|835165|835166|900611|934450|934451|946230|946231|946232|946233|946234|946235|955528|955529|955530", + "text": "Microphthalmia, isolated, with coloboma 6" + }, + { + "baseId": "39116|39117|39118|39119|39120|512886", + "text": "Fleck retina, familial benign" + }, + { + "baseId": "39121|167827|413648", + "text": "Cutaneous telangiectasia and cancer syndrome, familial" + }, + { + "baseId": "39122|39125|45670|76767|134830|134830|134831|134831|134832|134832|134833|134833|134834|134834|134835|134836|134836|134837|134838|134838|134839|134839|134840|134840|134841|134841|134842|134843|134843|134844|134844|141761|171771|171772|171780|185949|185949|188961|193290|193290|204421|205231|205730|206957|206957|206959|206959|206960|206961|206963|206963|206964|206965|206966|206967|206967|206968|206968|206969|206969|206970|206970|206972|206973|206973|206975|206976|206976|206977|206977|206978|206980|215254|231515|231515|231518|231518|231518|231524|244343|244344|244344|244346|244347|244348|244351|244353|244353|244356|244356|244362|264094|266623|266623|268250|268250|285493|285494|285516|285520|285521|285523|285525|285532|285538|285539|285540|285541|285546|285549|285549|285550|285550|285553|285553|285557|285557|285560|285565|285565|285567|285567|285568|285568|286211|286212|286213|286214|286215|286216|286217|286218|286220|286221|286229|286230|286232|286232|286233|286236|286236|286246|286247|286247|286248|286249|286249|286252|286252|286256|286261|288526|288527|288528|288530|288531|288545|288546|288547|288554|288554|288555|288555|288560|288560|288561|288563|288563|288575|288575|288581|288583|288583|288588|288589|288907|288923|288929|288930|288931|288942|288943|288949|288950|288965|288966|288968|288968|288969|288969|288970|288970|288971|288972|288973|288973|288980|359461|360839|363878|363878|364120|366280|366289|366292|366292|366300|366300|366308|366308|366482|366487|366496|366507|366508|366508|366511|366513|366522|366522|366524|366524|366525|405680|405682|405684|405686|405686|411554|411554|413596|413597|414880|414880|414882|420290|425478|425480|428009|428010|428011|428015|428017|428018|428019|428024|428027|438199|438201|438202|440688|440688|440692|440692|440692|440695|443210|443211|443212|443214|443214|443216|448393|448493|450608|450612|450614|450617|450622|450624|450626|450628|450636|450639|450642|450642|450704|450704|450710|450711|450718|450719|450725|450727|450728|450730|450732|450732|450734|450742|450742|450747|450880|450884|450884|450885|450885|450887|450897|450898|450900|450900|450906|450906|450910|450911|450913|450914|450914|450915|450916|450917|450918|450919|450920|450936|450939|450951|450958|450961|450964|450965|486277|490314|499602|499604|499610|499868|500051|500058|511410|511410|517932|517935|517942|517944|517950|517952|517955|517957|517964|517969|517970|517974|517976|517984|517987|517991|517997|517999|518004|518007|518008|518009|518010|518010|518013|518015|518017|518018|518024|518026|518028|518030|518031|518033|518035|518036|518043|518045|518048|518050|518074|518075|518076|518076|518076|518077|518079|518091|518093|518093|518094|518097|518099|518103|518104|518111|518112|518112|518117|518118|518125|518126|518128|537380|557436|557966|557968|557968|557970|557972|557974|557976|557978|557980|558314|558316|558318|558320|558322|558324|558326|558328|558330|558332|558334|560526|560526|560531|560533|560534|560549|561197|561205|561215|561217|561220|561230|561231|561233|561238|578976|578981|578981|578985|579005|579012|579013|579016|579036|579037|612606|629701|629702|629703|629704|629705|629706|629707|629708|629709|629710|629711|629712|629713|629714|629715|629716|629717|629718|629719|629720|629721|629722|629723|629723|629724|629725|629726|629727|629728|629729|629730|629731|629732|629733|629734|629735|629736|629737|629738|629739|629740|629741|629742|629743|629744|629744|650738|650753|650797|650947|650969|650972|650974|650975|650977|650978|650981|689711|691092|691093|691094|691095|691096|691098|691099|691100|691101|691104|691105|691106|691106|691107|691107|691108|691109|695132|695133|695135|695136|697474|697476|697478|697480|697481|708154|708156|708157|708158|719754|719756|733332|733339|733342|733343|747461|747465|759155|763102|763103|763107|763108|763110|774690|774731|777277|778917|790216|790217|790218|790219|790220|798507|819147|826068|826069|826070|826071|826072|826073|826074|826075|826076|826077|826078|826079|826080|826081|826082|826083|826084|826085|826086|826087|826088|826089|826090|826091|826092|826092|826093|826094|826095|826096|826097|826097|826098|826099|826100|826101|826102|826103|826104|826105|826106|826107|850898|851168|857365|857366|884347|884348|884349|884350|884351|884352|884353|884354|884355|884356|884357|884358|884359|884360|884361|884362|884363|884364|884365|884366|884367|884368|884369|884370|884371|884372|884373|884374|884375|884376|884377|884378|884379|884380|884381|884382|884383|884384|884385|884386|884387|884388|884389|884390|884391|884392|884393|884394|884395|884395|884396|884397|884398|884399|884400|884401|884402|884403|884404|884405|884406|887327|887328|887329|922658|922659|922660|922661|922662|922663|922664|922665|922666|922667|922668|922669|922670|922671|922672|922673|931252|931253|931254|931255|931256|931257|931258|931259|931260|939882|939883|939884|942731|942732|942733|942734|942735|942736|942737|942738|942739|942740|942741|942742|953013|953014|953015|953016|953017|953018|961259|963209|963210|963211|963212|963214|963216|963217|963219|963220|963221|963222|965947|967262", + "text": "Spastic paraplegia 30, autosomal recessive" + }, + { + "baseId": "39125|39125|76767|134830|134831|134832|134833|134834|134836|134838|134839|134840|134841|134843|134844|171771|171771|171772|171772|171773|171774|171775|171776|171777|171778|171779|171780|185949|188961|188961|193290|204420|204421|205231|205730|206957|206959|206959|206959|206960|206961|206963|206963|206964|206965|206966|206967|206968|206969|206970|206972|206973|206975|206976|206977|206978|206978|206980|215254|225885|231515|231515|231518|231524|244343|244344|244344|244346|244347|244347|244348|244351|244353|244356|244362|244362|264094|264094|266623|268250|285549|285550|285553|285557|285565|285567|285568|286232|286236|286247|286249|286252|288554|288555|288560|288563|288575|288583|288968|288969|288970|288973|359461|363878|363878|364120|366280|366289|366292|366300|366308|366487|366496|366507|366508|366511|366513|366522|366524|366525|405680|405682|405684|405684|405686|411554|413596|413596|413597|414880|414880|414882|414882|420290|420290|424260|425478|425480|428009|428010|428011|428015|428017|428018|428019|428021|428023|428024|428027|438199|438201|438202|440688|440688|440692|440692|440695|443210|443211|443212|443214|443214|443215|443216|448393|448493|450608|450612|450614|450617|450622|450624|450626|450628|450636|450639|450642|450704|450710|450711|450718|450719|450725|450727|450728|450730|450732|450734|450742|450747|450880|450884|450885|450887|450897|450898|450900|450900|450906|450910|450911|450913|450914|450915|450916|450917|450918|450919|450920|450936|450939|450951|450958|450961|450964|450965|486277|490314|499602|499604|499610|499868|500051|500058|511410|513254|517932|517935|517942|517944|517950|517952|517955|517957|517964|517969|517970|517974|517976|517984|517987|517991|517997|517999|518004|518007|518008|518009|518010|518013|518015|518017|518018|518024|518026|518028|518030|518031|518033|518035|518036|518043|518045|518048|518050|518074|518075|518076|518076|518077|518079|518091|518093|518094|518097|518099|518103|518104|518111|518112|518112|518117|518118|518125|518126|518128|537380|557436|557966|557968|557970|557972|557974|557976|557978|557980|558314|558316|558318|558320|558322|558324|558326|558328|558330|558332|558334|560526|560531|560533|560534|560534|560549|561197|561205|561215|561217|561220|561230|561231|561233|561238|578976|578981|578985|579005|579012|579013|579016|579036|579037|612606|629701|629702|629703|629704|629705|629706|629707|629708|629709|629710|629711|629712|629713|629714|629715|629716|629717|629718|629719|629720|629721|629722|629723|629724|629725|629726|629727|629728|629729|629730|629731|629732|629733|629734|629735|629736|629737|629738|629739|629740|629741|629742|629743|629744|650738|650753|650797|650947|650969|650972|650974|650975|650977|650978|650981|653809|680042|689711|691092|691093|691094|691095|691096|691098|691099|691100|691101|691104|691105|691106|691107|691108|691109|695132|695133|695135|695136|697474|697476|697478|697480|697481|708154|708156|708157|708158|719754|719756|733332|733339|733342|733343|747461|747465|759155|763102|763103|763107|763108|763110|774690|774731|777277|778917|818213|819147|826068|826069|826070|826071|826072|826073|826074|826075|826076|826077|826078|826079|826080|826081|826082|826083|826084|826085|826086|826087|826088|826089|826090|826091|826092|826093|826094|826095|826096|826097|826098|826099|826100|826101|826102|826103|826104|826105|826106|826107|850898|851168|857367|858299|884395|903517|922658|922659|922660|922661|922662|922663|922664|922665|922666|922667|922668|922669|922670|922671|922672|922673|931252|931253|931254|931255|931256|931257|931258|931259|931260|939882|939883|939884|942731|942732|942733|942734|942735|942736|942737|942738|942739|942740|942741|942742|953013|953014|953015|953016|953017|953018|961259|963125|963213|963215|963218|963521|970739|972713", + "text": "Intellectual disability, autosomal dominant 9" + }, + { + "baseId": "39125|204420|204421|417248|806368", + "text": "PEHO syndrome" + }, + { + "baseId": "39125|76767|76767|76783|134830|134831|134832|134833|134834|134836|134838|134839|134840|134841|134843|134844|171771|171772|185949|188961|193290|205231|205730|206957|206959|206959|206960|206961|206963|206964|206965|206966|206967|206968|206969|206970|206972|206973|206975|206976|206977|206978|206980|215254|231515|231515|231518|231518|231524|244343|244344|244344|244346|244347|244348|244351|244353|244356|244362|264094|266623|268250|285549|285550|285553|285557|285565|285567|285568|286232|286236|286247|286249|286252|288554|288555|288560|288563|288575|288583|288968|288969|288970|288973|359461|363878|363878|364120|366280|366289|366292|366300|366308|366487|366496|366507|366508|366511|366513|366522|366524|366525|405680|405682|405684|405686|411554|413596|413597|414880|414880|414882|420290|425478|425480|428009|428010|428011|428015|428017|428018|428019|428024|428027|438199|438201|438202|440688|440688|440692|440692|440695|443210|443211|443212|443214|443214|443216|448393|448493|450608|450612|450614|450617|450622|450624|450626|450628|450636|450639|450642|450704|450710|450711|450718|450719|450725|450727|450728|450730|450732|450734|450742|450747|450880|450884|450885|450887|450897|450898|450900|450900|450906|450910|450911|450913|450914|450915|450916|450917|450918|450919|450920|450936|450939|450951|450958|450961|450964|450965|486277|490314|499602|499604|499610|499868|500051|500058|511410|517932|517935|517942|517944|517950|517952|517955|517957|517964|517969|517970|517974|517976|517984|517987|517991|517997|517999|518004|518007|518008|518009|518010|518013|518015|518017|518018|518024|518026|518028|518030|518031|518033|518035|518036|518043|518045|518048|518050|518074|518075|518076|518076|518077|518079|518091|518093|518094|518097|518099|518103|518104|518111|518112|518112|518117|518118|518125|518126|518128|537380|557436|557966|557968|557970|557972|557974|557976|557978|557980|558314|558316|558318|558320|558322|558324|558326|558328|558330|558332|558334|560526|560531|560533|560534|560549|561197|561205|561215|561217|561220|561230|561231|561233|561238|578976|578981|578985|579005|579012|579013|579016|579036|579037|612606|629701|629702|629703|629704|629705|629706|629707|629708|629709|629710|629711|629712|629713|629714|629715|629716|629717|629718|629719|629720|629721|629722|629723|629724|629725|629726|629727|629728|629729|629730|629731|629732|629733|629734|629735|629736|629737|629738|629739|629740|629741|629742|629743|629744|650738|650753|650797|650947|650969|650972|650974|650975|650977|650978|650981|689711|691092|691093|691094|691095|691096|691098|691099|691100|691101|691104|691105|691106|691107|691108|691109|695132|695133|695135|695136|697474|697476|697478|697480|697481|708154|708156|708157|708158|719754|719756|733332|733339|733342|733343|747461|747465|759155|763102|763103|763107|763108|763110|774690|774731|777277|778917|819147|826068|826069|826070|826071|826072|826073|826074|826075|826076|826077|826078|826079|826080|826081|826082|826083|826084|826085|826086|826087|826088|826089|826090|826091|826092|826093|826094|826095|826096|826097|826098|826099|826100|826101|826102|826103|826104|826105|826106|826107|850898|851168|884395|922658|922659|922660|922661|922662|922663|922664|922665|922666|922667|922668|922669|922670|922671|922672|922673|931252|931253|931254|931255|931256|931257|931258|931259|931260|939882|939883|939884|942731|942732|942733|942734|942735|942736|942737|942738|942739|942740|942741|942742|953013|953014|953015|953016|953017|953018|961259", + "text": "Hereditary sensory and autonomic neuropathy type IIC" + }, + { + "baseId": "39127|81688|88117|98921|98922|98923|98924|98926|98928|98933|98934|98935|98936|98938|98939|98941|98943|98944|98946|98949|98950|98952|98955|98960|98961|98962|98965|98966|98967|98968|98969|98970|98972|98973|98976|98977|98981|98982|98983|98984|98986|98988|98992|98993|98995|98997|98998|135364|135365|135366|135367|135368|135370|135371|135372|135373|135375|135376|135377|135378|135379|135381|135382|135383|135385|135386|135387|135388|135389|135390|135391|135392|135394|135396|135397|135398|135399|135400|135401|135402|135404|135405|135406|135407|135408|135409|176989|177121|177252|177383|177959|177961|177962|177965|177966|191156|191157|191638|192163|192815|192816|192817|192962|192963|193017|193018|193076|193091|193265|193266|193267|193309|193435|193772|193823|193877|193878|193881|193882|193883|193893|193894|193895|193896|193897|193897|193899|193902|193903|193904|193905|193906|193907|193908|193909|193910|193911|193912|193913|193914|193915|193917|193918|193919|193920|193921|193922|193923|193925|193926|193928|193969|193971|193973|193974|193975|193977|193978|193980|193983|193984|193985|193986|193987|193989|193990|193994|193998|194000|194001|194002|194003|194004|194005|194008|194009|194010|194012|194013|194014|194015|194015|194019|194020|195245|195795|207532|207533|231311|231370|231429|231430|253066|253067|260855|260856|265349|265461|265465|265501|265502|265508|265512|265516|265517|265518|265519|265524|265531|265554|265593|265628|265629|265639|265718|265827|265831|265905|265922|265930|265931|265932|265938|266070|266073|266086|266092|266179|266185|266228|266229|266248|266334|266335|266357|266370|266405|266422|266425|266440|266481|266507|266522|266524|266534|266545|266545|266546|266550|266554|266563|266629|266630|266642|266656|266658|266659|266687|266692|266703|266723|266730|266736|266746|266756|266775|266779|266819|266876|266961|266991|267017|267018|267058|267063|267069|267090|267102|267121|267126|267133|267262|267271|267292|267309|267337|267338|267339|267439|267460|267461|267478|267481|267484|267491|267513|267523|267541|267568|267574|267631|267638|267641|267671|267700|267701|267707|267786|267867|267875|267877|267881|267882|267885|267899|267912|267924|267932|267981|268004|268114|268184|268195|268205|268206|268207|268212|268338|268339|268485|268486|268520|268521|268624|268704|268731|268747|268802|268812|268818|268819|268820|268835|268837|269027|269036|269247|269248|269316|269468|269573|269579|269645|269915|269970|269980|270225|270253|270274|270275|270360|270360|270506|270550|270555|270825|270961|271365|271460|271624|271858|271947|272140|272170|272415|272613|273236|273701|274532|274542|274576|274586|274590|274687|274701|274703|274704|274872|274876|274884|274886|274888|274895|274900|274934|274949|274965|274966|275304|361453|369376|369377|369380|369386|369388|369394|369396|369411|369412|369424|369428|369734|369742|369758|369763|369767|369769|369773|369791|369802|369809|369814|369825|369839|369841|369846|370091|370093|370095|370097|370102|370108|370111|370122|370128|370132|370138|370139|370149|370155|371589|371592|371593|371594|371618|371629|371631|371646|371656|371659|371661|371665|371667|371679|371681|390580|404777|407323|407324|407325|407326|407327|407328|407332|407334|407335|415126|421663|421664|421665|425783|425784|425786|428802|428803|428804|428805|428806|428807|428808|428810|434623|434623|438403|438405|441183|441184|441186|441188|441189|441190|441191|441193|441197|441199|441200|441201|441203|441204|441205|441206|441210|441211|441222|441223|441223|441224|444223|444224|444226|444228|444230|444235|444240|444241|444245|444247|444250|444251|457234|457236|457238|457240|457245|457248|457249|457255|457258|457272|457273|457277|457282|457286|457294|457296|457298|457300|457302|457305|457307|457310|457312|457316|457323|457324|457328|457336|457337|457347|457348|457351|457359|457362|457363|457366|457371|457385|457390|457391|457393|457397|457399|457401|457405|457406|457411|457422|457424|457426|457428|457817|457837|457838|457839|457843|457847|457849|457851|457856|457857|457860|457862|457865|457866|457867|457869|457870|457872|457876|457878|457880|457882|457883|457884|457886|457887|457888|457894|457896|457900|457901|457902|457904|457907|457908|457912|457914|457919|457920|457921|457922|457924|457925|457927|457928|457931|457932|457935|457936|457937|457938|457946|457949|457956|457958|457960|457962|457963|457967|457972|457977|457980|457981|457982|457983|457985|457988|457990|457996|457998|457999|458001|458002|458004|458006|458007|458008|458013|458014|458017|458020|458022|458023|458025|458028|458030|458032|458033|458034|458039|458040|458041|458043|458046|458047|458051|458054|458062|458064|458067|458068|458071|458072|458077|458079|458088|458241|458243|458248|458252|458256|458266|458268|458272|458273|458277|458279|458283|458286|458292|458296|458298|458301|458302|458305|458310|458311|458316|458318|458323|458327|458334|458337|458341|458343|458346|458347|458350|458352|458355|458363|458368|458370|458376|458379|458383|458386|486449|488410|488423|488425|488427|488429|488430|488437|488440|488453|488464|488466|488469|488474|488476|488477|488479|488488|488496|488505|488507|488509|488512|488519|488520|488538|488539|488562|488589|488617|488790|488793|488811|488922|489011|489080|489083|489246|489276|489281|489377|489481|489688|490087|490389|490392|490417|490506|490642|490644|490646|490714|491028|491054|491060|491066|491108|491112|491126|491242|491388|491529|491648|491734|491814|491816|491970|491980|492104|492115|492230|492337|492338|492462|492609|492868|492901|493049|493050|493061|493063|493156|493220|493225|493253|493351|493496|493504|493568|493569|493573|493622|493662|493665|493825|493873|493874|493982|494015|494082|494092|494093|501926|501929|501931|501936|501946|501964|502236|502239|502244|502255|502262|502276|502278|502299|502313|502355|502361|502603|502604|502619|502623|502626|502632|502637|511746|511748|511749|523032|523042|523045|523051|523054|523057|523059|523063|523086|523088|523095|523101|523103|523109|523118|523126|523132|523133|523134|523138|523139|523142|523148|523151|523156|523158|523171|523173|523174|523176|523179|523182|523202|523205|523207|523208|523211|523214|523215|523311|523321|523323|523336|523339|523341|523345|523348|523353|523355|523358|523361|523371|523375|523380|523387|523388|523390|523392|523399|523401|523405|523412|523413|523415|523417|523420|523423|523432|523436|523441|523442|523448|523451|523461|523466|523467|523474|523481|523531|523537|523542|523544|523547|523549|523552|523553|523555|523556|523563|523570|523572|523576|523584|523586|523594|523596|523601|523603|523606|523608|523610|523616|523618|523622|523624|523636|523639|523644|523647|523652|523654|523655|523656|523658|523662|523663|523665|523667|523669|523671|523675|523676|523678|523683|523685|523689|523690|523692|523693|523694|523695|523698|523700|523702|523706|523714|523716|523718|523726|523730|523735|536744|561957|561960|561963|561965|561974|561980|561981|561993|561996|562000|562002|562011|562014|562018|562020|562021|562026|562029|562032|562034|562036|562038|562040|562047|562050|562054|562057|562059|562380|562396|562397|562400|562401|562411|562423|562425|562432|562433|562436|562437|562443|562448|562459|562475|562476|562479|562487|562496|562497|562500|562501|562504|562511|564676|564679|564681|564683|564690|564699|564701|564704|564708|564710|564718|564719|564722|564724|564726|564731|564732|564736|564741|564751|564759|564765|564767|564771|564774|564776|564778|564780|564785|564788|564790|564794|564796|564800|564802|564809|567397|567399|567400|567401|567406|567409|567414|567418|567419|567420|567421|567423|567427|567428|567430|567434|567443|567448|567466|567471|567484|567487|567493|567494|567495|567496|567497|567502|577038|577042|577048|577050|583214|583818|583832|583842|583852|583863|583873|583888|583928|583989|584023|584100|584299|584656|584658|584660|585030|585144|585680|585726|585814|585970|586401|586783|586809|586971|587049|587287|587469|588315|588317|588432|588452|588464|588491|588509|588536|588609|588612|588626|588632|588860|588861|588863|589251|589263|589547|589607|589776|612808|623146|623147|623147|636629|636630|636631|636632|636633|636634|636635|636636|636637|636638|636639|636640|636641|636642|636643|636644|636645|636646|636647|636648|636649|636650|636651|636652|636653|636654|636655|636656|636657|636658|636659|636660|636661|636662|636663|636664|636665|636666|636667|636668|636669|636670|636671|636672|636673|636674|636675|636676|636677|636678|636679|636680|636681|636682|636683|636684|636685|636686|636687|636688|636689|636690|636691|636692|636693|636694|636695|636696|636697|636698|636699|636700|636701|636702|636703|636704|636705|636706|636707|636708|636709|636710|636711|636712|636713|636714|636715|636716|636717|636718|636719|636720|636721|636722|636723|636724|636725|636726|636727|636728|636729|636730|636731|636732|636733|636734|636735|636736|636737|636738|636739|636740|636741|636742|636743|636744|636745|636746|636747|636748|636749|636750|636751|636752|636753|636754|636755|636756|636757|636758|636759|636760|636761|636762|636763|636764|636765|636766|636767|636768|636769|636770|636771|636772|636773|636774|636775|636776|636777|636778|636779|636780|636781|651751|651754|651758|651760|651770|651773|655836|655845|655849|662710|687201|692371|692372|692373|692375|692376|692378|692379|692380|692381|692385|692385|692386|692387|692389|692391|692392|692393|692394|692395|692396|692397|692402|692403|692404|692406|692409|692411|692412|692413|692414|692418|692419|692420|692423|692424|692426|692430|692431|692432|692433|692434|692435|692436|692438|692440|695384|700445|700447|700450|700451|700455|700457|700458|700461|700463|700464|700467|711370|711371|711372|711374|711376|711381|711382|711385|711390|711391|711392|722917|722921|722922|736504|736505|736506|736507|736508|736510|736512|736513|736514|736521|736523|750972|750975|750976|750978|750979|750980|750985|750987|750989|750992|750995|766578|766583|766584|766586|766587|766599|766623|766628|775210|777720|783022|783024|783026|783029|783031|783035|793265|793267|793268|796133|796137|805011|834168|834169|834170|834171|834172|834173|834174|834175|834176|834177|834178|834179|834180|834181|834182|834183|834184|834185|834186|834187|834188|834189|834190|834191|834192|834193|834194|834195|834196|834197|834198|834199|834200|834201|834202|834203|834204|834205|834206|834207|834208|834209|834210|834211|834212|834213|834214|834215|834216|834217|834218|834219|834220|834221|834222|834223|834224|834225|834226|834227|834228|834229|834230|834231|834232|834233|834234|834235|834236|834237|834238|834239|834240|834241|834242|834243|834244|834245|834246|834247|834248|834249|834250|834251|834252|834253|834254|834255|834256|834257|834258|834259|834260|834261|834262|834263|834264|834265|834266|834267|834268|834269|834270|834271|834272|834273|834274|834275|834276|834277|834278|834279|834280|834281|834282|834283|834284|834285|834286|834287|834288|834289|834290|834291|834292|834293|852118|919142|920253|925028|925029|925030|925031|925032|925033|925034|925035|925036|925037|925038|925039|925040|925041|925042|925043|925044|925045|925046|925047|925048|925049|925050|925051|925052|925053|925054|925055|925056|925057|925058|925059|925060|925061|925062|925063|925064|925065|925066|925067|925068|934109|934110|934111|934112|934113|934114|934115|934116|934117|934118|934119|934120|934121|934122|934123|934124|934125|934126|934127|934128|934129|934130|934131|934132|934133|934134|934135|934136|934137|934138|934139|934140|934141|934142|934143|934144|934145|934146|934147|934148|934149|934150|934151|934152|934153|934154|934155|934156|934157|934158|934159|934160|934161|940891|945859|945860|945861|945862|945863|945864|945865|945866|945867|945868|945869|945870|945871|945872|945873|945874|945875|945876|945877|945878|945879|945880|945881|945882|945883|945884|945885|945886|945887|945888|945889|945890|945891|945892|945893|945894|945895|945896|945897|945898|945899|945900|945901|945902|945903|945904|945905|945906|945907|945908|945909|945910|945911|945912|955305|955306|955307|955308|955309|955310|955311|955312|955313|955314|955315|955316|955317|955318|955319|955320|955321|955322|955323|955324|955325|955326|955327|955328|955329|955330|955331|955332|955333|955334|955335|955336|955337|955338|955339|955340|959878|980333", + "text": "Limb-girdle muscular dystrophy, type 2Q" + }, + { + "baseId": "39132|858656|858657|919422|966063", + "text": "Diarrhea 6" + }, + { + "baseId": "39134|39135|39136|39137|39138|39139|39140|48041|48042|214738|214739|590544|612173|679819|965954|965955", + "text": "Osteodysplastic primordial dwarfism, type 1" + }, + { + "baseId": "39134|214736|214737|214738|214739|214740|214741|624198|800990|858738", + "text": "Roifman syndrome" + }, + { + "baseId": "39134|39137|624198|679818|679819|920651|965912|965913", + "text": "Lowry-Wood syndrome" + }, + { + "baseId": "39141|175845|189894|482272|536836", + "text": "Atrial fibrillation, familial, 12" + }, + { + "baseId": "39142|39143|39144|45807|45809|45810|45811|227249|227250|227251|432290|697847|818222|818223|918799|966064|966065|966066|966067", + "text": "Primary hypertrophic osteoarthropathy, autosomal recessive 2" + }, + { + "baseId": "39147|39148|798687|962739|962834|971023", + "text": "Focal segmental glomerulosclerosis 6" + }, + { + "baseId": "39149|39150|257662|257666|271893|273139|338070|338078|347715|347716|351557|352519|352521|352522|413615|415113|470272|492261|534287|534315|534318|534445|534783|534784|534793|534796|571989|571990|573407|573408|574130|574132|575207|575268|649472|649473|649474|649475|649476|649477|649478|649479|649480|649481|649482|649483|649484|649485|649486|717431|729168|742882|742883|758079|758080|758081|773542|776817|792059|792060|849322|849323|849324|849325|849326|849327|849328|849329|849330|849331|849332|849333|849334|849335|852443|852938|920610|920611|929485|929486|929487|929488|939313|951470|951471|951472|959093|959094", + "text": "Granulomatous disease, chronic, autosomal recessive, cytochrome b-positive, type III" + }, + { + "baseId": "39152|325360|325362|325366|325368|335042|335043|335061|341495|341497|341503|341506|341511|342987|342989|342990|343010|343011|466454|466476|466705|480750|480751|480752|480753|480754|480755|480756|480757|480758|480759|480760|480761|530114|570197|570298|644687|693878|693881|843873|843874|875290|875291|875292|875293|875294|875295|875296|875297|875298|875299|875300|875301|875302|875303|875304|875305|876670|876671|927819|949404|960159", + "text": "Parkinson disease 17" + }, + { + "baseId": "39154|39155|39156|76582|76583|137961|137965|139277|168166|168191|168571|168573|168574|168575|168576|168577|168578|168579|195012|195333|204364|204426|207471|207472|239991|297027|297047|297083|298909|298925|298999|302177|303194|303203|303206|303222|303407|303412|303413|303415|303426|305359|305365|310161|310164|310165|310167|310287|310297|353807|370962|395470|395474|395480|395665|395847|396125|407046|424390|444096|444097|456781|456784|456786|457503|457508|522435|522437|522761|561400|561402|561681|566555|581883|624153|635876|635877|635878|635879|635880|635881|635882|651706|651779|683854|683855|683856|685209|686986|686987|686988|686992|686993|686994|686995|689859|692176|692177|692178|819849|821940|833308|833309|833310|924746|924747|924748|924749|933760|933761|945514|955088|955089|959842|964285|964286|977225", + "text": "Weaver syndrome" + }, + { + "baseId": "39157|39159|94452|208780|360483|431926|550644|552228", + "text": "Mental retardation, autosomal dominant 15" + }, + { + "baseId": "39164|39165|39166|134580|134581|208435|243031|243032|243033|243034|243035|402636|402639|402691|402695|402698|402702|403170|403171|403233|467893|467900|468783|468785|468786|469228|469232|469235|469588|532147|532147|532149|532159|532159|532160|532163|532165|532245|532246|532249|532519|532520|532525|532535|536962|571840|572542|572545|574709|574710|574711|647082|647083|647084|647085|647086|647087|647088|647089|647090|647091|647092|647093|684742|684743|684745|684747|685441|688882|688885|688886|688887|688890|694251|741307|821180|846679|846680|846681|846682|846683|846684|846685|846686|846687|846688|846689|846690|846691|928659|938380|938381|938382|938383|950455|950456|950457|950458|958435|958436|958437", + "text": "Atrioventricular septal defect 5" + }, + { + "baseId": "39166|532147|532159", + "text": "Atrial septal defect 9" + }, + { + "baseId": "39167|39168|39169|39170|39171|39172|48443|165814|165815|208434|532147|532159", + "text": "Pancreatic agenesis and congenital heart disease" + }, + { + "baseId": "39169|50063|53432|165814|165815|195509|215772|215773|215774|263329|334576|354191|354192|354193|354194|354195|354196|805118|805119|980498|980499", + "text": "Congenital diaphragmatic hernia" + }, + { + "baseId": "39186|39187|39188|39189|39190|39191|39192|135300|135302|135303|135305|135306|135309|135310|206827|206828|206832|249981|280777|280784|280785|280786|281284|281288|281302|281305|281311|282556|282564|282574|282575|282576|282836|282840|427846|427848|438966|620005|626110|690638|690639|732501|732502|864566|864567|864568|864569|864570|864571|864572|864573|864574|864575|864576|864577|864578|864579|864580|864581|865191|865192|865193", + "text": "Meier-Gorlin syndrome 1" + }, + { + "baseId": "39188|39455|200397|200398|200399|255744|255745|282855|325397|325398|325421|325423|328352|335066|335068|335070|338247|341513|341519|343011|343036|343038|345786|345796", + "text": "Meier-Gorlin syndrome" + }, + { + "baseId": "39194|204389|205762|205762|424598|424599|441330|459438|459443|459444|459535|459999|460001|524527|524830|524937|524939|525087|525090|563212|563214|563216|563927|563941|565878|565882|565883|569005|569006|638210|638211|638212|638213|638214|638215|692663|700985|836071|836072|836073|836074|836075|861360|861361|925566|925567|934741|934742|934743|934744|934745|946597|946598", + "text": "Amyotrophic lateral sclerosis 16, juvenile" + }, + { + "baseId": "39195|39196|39197|39198", + "text": "Leukonychia totalis" + }, + { + "baseId": "39201|39202|101161|176926|278587|278600|278702|279897|279915|279928|280001|364608|364610|498201|498279|513502|515415|556500|556770|576081|576082|627318|780459|823274|921815|939793", + "text": "Congenital disorder of glycosylation type Ir" + }, + { + "baseId": "39203|39204|39205|39206|106634|135505|310211|310212|310213|310222|310224|310226|310231|310232|310233|310239|310240|310244|310246|310247|310249|310252|310254|310255|310263|310268|315308|315311|315326|315329|315339|315340|315341|315347|315351|315353|315354|315370|315371|315389|321307|321318|321320|321331|321345|321347|321348|321349|321351|321353|321356|321359|321360|321367|321976|321977|321985|321986|321992|321997|322007|322008|322009|322014|322015|322023|322024|322025|322028|322045|322053|322062|865825|865826|865827|865828|865829|865830|865831|865832|865833|865834|865835|865836|865837|865838|865839|865840|865841|865842|865843|865844|865845|865846|865847|865848|865849|865850|865851|865852|865853|865854|865855|865856|865857|865858|865859|865860|865861|865862", + "text": "Warburg micro syndrome 3" + }, + { + "baseId": "39212", + "text": "Systemic lupus erythematosus 16" + }, + { + "baseId": "39217|49801|49802|49803|252067|257118|257121|257122|257125|257126|269520|271078|273929|301328|301329|301331|305700|305708|305860|343596|343598|343599|348872|348886|348887|348888|348892|348894|348895|349840|349841|349842|353742|377467|446129|489138|490564|493096|506734|584444|625969|716437|728175|757014|772687|800135|882012|882013|882014|882015|882016|882017|882018|882019|882020|882021|882022|882023|882024|882025|882026|882027|882028|882029|882030|882031|882032|882033|882034|882035|882036|882037|882886|882887|882888", + "text": "Non-syndromic syndactyly" + }, + { + "baseId": "39217|78958|78961|152875|177134|177265|177836|177837|191437|193722|193723|194518|195432|195757|254019|254020|272280|312754|312755|312766|312770|312778|312779|312783|312784|312788|312789|312795|312796|312801|312802|312808|318744|318758|318775|318784|318788|318798|318815|318817|318818|318820|318822|318823|324842|324846|324848|324853|324854|324870|324871|324872|324877|324894|324897|324912|324913|324914|324926|324932|325705|325706|325708|325719|325734|325737|325745|325753|325754|325763|325768|325769|325770|325774|325780|325782|360814|625969|858508|858509", + "text": "Retinal degeneration" + }, + { + "baseId": "39222|246905|389450|389462|448986|449163|449256|449283|449286|516692|516730|516732|516736|516838|516847|516851|559396|559398|629012|629013|629014|629015|650788|707859|732950|732951|732954|732955|746956|746958|762429|762430|780964|780965|780969|825238|825239|825240|825241|825242|825243|825244|825245|825246|922415|922416|922417|942415|942416|942417|942418|942419|942420|952789|952790|952791|952792|952793|952794|961928|964756", + "text": "Wiskott-Aldrich syndrome 2" + }, + { + "baseId": "39223", + "text": "Infections, recurrent, associated with encephalopathy, hepatic dysfunction, and cardiovascular malformations" + }, + { + "baseId": "39225|167425|167426|167427|167432|332001|790610|790611|791448", + "text": "Peeling skin syndrome 1" + }, + { + "baseId": "39226", + "text": "Abnormal glycosylation (CDG IIa)" + }, + { + "baseId": "39227|134084|134085|134087|134088|208392|208394|328337|328340|328345|328348|338249|338257|338258|344355|344358|345780|345784|345791|345792|345798|429965|620587|877396|877397|877398|877399|877400|877401|877402|877403|880511|880512|880513", + "text": "Meier-Gorlin syndrome 5" + }, + { + "baseId": "39233|39941", + "text": "Usher syndrome type 2c, GPR98/PDZD digenic" + }, + { + "baseId": "39236", + "text": "Retinal arterial macroaneurysm with supravascular pulmonic stenosis" + }, + { + "baseId": "39237|552223|919912", + "text": "Mental retardation, autosomal dominant 11" + }, + { + "baseId": "39238|920098", + "text": "Mental retardation, autosomal dominant 10" + }, + { + "baseId": "39239|39240|39241|39242|39244|133339|133340|133341|133342|133343|133345|133346|133347|133348|133349|133350|133351|133352|133353|133354|133355|142574|142575|142576|142577|142578|142579|142580|142581|142582|142583|150857|151014|151057|151166|151167|151233|151292|151323|151326|151421|151557|151659|151683|151816|151839|151873|152468|152525|152669|180791|180792|180793|180795|180796|180797|180798|180799|180800|180801|180802|180803|180804|180805|180806|180807|180809|181162|184798|184799|184800|184801|184803|184804|184805|184806|184807|184808|184809|184810|184811|184812|184813|184814|184815|184816|184817|184818|184819|184821|184823|184824|184825|184826|184827|184828|184829|184830|184831|184832|184833|184834|184835|184836|184837|184838|184839|184840|184841|184842|184843|184844|184845|184847|184848|184850|184851|184853|184854|184855|184857|184858|184859|184860|190808|235856|235858|235859|235860|235861|235862|235863|235864|235865|235866|235867|235869|235871|235872|235876|235877|235878|235880|235881|235883|235884|235885|235889|235890|235891|235892|235894|235895|235896|235898|235900|235901|235902|235904|235905|235906|235907|235908|235909|235910|235911|235912|235913|235915|235916|235921|242579|242720|242721|242722|242724|242725|242726|242728|242729|242730|242731|242732|245014|344110|358919|358920|358921|358922|358923|358924|374918|374928|374931|375864|375978|375987|375997|378131|401488|401851|401855|401857|401865|401872|401873|401875|401882|401884|401892|401926|401929|401932|401935|401937|402394|402396|402397|402400|402403|402410|402418|402422|402559|402560|402564|402570|402572|402578|402582|402588|402590|402595|402596|402605|402606|402609|409890|409891|409893|409896|409899|409900|409902|409906|409907|409908|409909|409910|409911|409913|413462|445755|466218|466221|466732|466735|466738|466739|466741|466748|466754|466755|466759|466765|467342|467586|467592|467593|467607|467611|467612|467618|467619|467620|467621|467624|467636|467638|467642|467644|467647|467797|467801|467805|467808|467809|467922|467929|467931|467936|467942|467944|467950|467952|467955|467963|467975|467977|467978|467984|467986|467989|467991|478420|478425|478431|478436|478439|478441|478443|478450|478453|478461|478463|478468|478475|478481|478482|478483|478488|478491|478492|478495|478513|478590|478591|478592|478594|478596|478600|478624|478627|479134|479153|479165|479169|479171|479191|479194|479205|479207|479213|479216|482978|482980|482981|482996|484764|484781|484789|484959|484977|484983|484995|485007|485016|485224|506270|506279|506776|530956|530958|530964|530965|530972|531087|531089|531090|531091|531094|531100|531150|531151|531152|531161|531166|531168|531171|531446|531448|531450|531453|531457|531460|539350|539351|539352|539353|539354|539355|539356|568582|568996|568998|569003|569008|569017|570674|570680|571079|571082|571083|571090|571091|571265|571267|571271|571272|571280|571287|571288|571289|571298|571299|571308|574255|574256|574437|574439|574441|575608|575986|575991|575993|618524|618535|618540|618542|618545|645793|645794|645795|645796|645797|645798|645799|645800|645801|645802|645803|645804|645805|645806|645807|645808|645809|645810|645811|645812|645813|645814|645815|645816|645817|645818|645819|645820|645821|645822|645823|652640|652806|653354|653433|653444|755776|755777|760405|771430|771432|778376|785538|789609|791734|791735|791736|791737|791738|791739|791740|791741|813540|813554|813566|813570|813571|813577|813584|815681|821035|821036|821037|821038|821039|845206|845207|845208|845209|845210|845211|845212|845213|845214|845215|845216|845217|845218|845219|845220|845221|845222|845223|845224|845225|845226|845227|845228|845229|845230|845231|845232|845233|845234|851713|851715|852195|852196|913820|913833|916485|928221|928222|928223|928224|928225|928226|928227|928228|928229|928230|928231|928232|928233|928234|928235|937885|937886|937887|937888|937889|937890|937891|937892|937893|940408|941179|949873|949874|949875|949876|949877|949878|949879|949880|949881|949882|949883|949884|949885|949886|949887|949888|958084|958085|958086|960213|960214", + "text": "Breast-ovarian cancer, familial 4" + }, + { + "baseId": "39248|39249|39250|206790|206793|227656|227657|227658|237025|257105|313744|427777|427778|427787|427794|442805|508769|513899|550581|552043|552044|612472|622861|677404|789958|789959|789960|800921|805073|906201|906379|918629|961500|964153|964154|964646|964993|970685|973016|974477|976642|977173|977174|980904", + "text": "Mental retardation, autosomal dominant 14" + }, + { + "baseId": "39250|40165|40166|40167|40168|40169|40170|40171|40172|40173|40174|207343|207352|207363|207365|207373|207375|207380|207381|207382|207384|207385|207388|225865|225886|262265|264206|264289|275248|360874|361185|361264|415033|424483|424649|428558|428560|428563|428569|428570|428571|428577|431909|431910|431911|431912|431913|432263|443919|443928|444460|481337|481338|481755|495270|511635|511636|514851|552097|552098|552099|552100|552101|552102|552103|552396|575513|576349|579236|583100|611392|611465|612443|613853|614090|620936|622884|623652|623653|624152|625798|653872|653873|654127|677422|677423|678939|682803|682804|788794|788795|790602|790603|790604|790605|798571|816018|816458|906344|919006|919007|919008|919009|919010|919011|919012|919013|919014|920224|920225|961223|962916|963195|964267|964268|964269|964717|964825|969749|969779|970011|970826|970827|970828|972718|976652|980584|980921", + "text": "Coffin-Siris syndrome 1" + }, + { + "baseId": "39251|39252|39253|168038|168039|206853|227220", + "text": "Meier-Gorlin syndrome 2" + }, + { + "baseId": "39255|39256|39257|39258|39259|39260|39261|66213|66558|70526|70527|70528|131463|137400|137402|137403|137404|137405|137406|150659|150714|152122|152305|152492|184563|221420|221421|221422|222989|226316|239258|239259|239260|239261|239262|239263|239264|239265|239266|239267|239268|239269|239270|239271|239272|239273|239274|239275|239276|239277|239278|239279|239280|239281|239282|239283|239284|239285|239286|239287|251242|274513|291178|291179|291182|291187|292129|292131|292134|292135|292136|292137|292138|292145|292146|295531|295532|295536|295537|295561|295571|295685|295687|295688|295699|295700|295707|367689|367708|368721|393665|393674|393675|393676|393680|393688|393690|393694|393696|393697|393698|393699|393700|393701|393703|393704|393707|393708|393712|393714|393715|393718|393719|393720|393721|393722|393723|393724|393725|393726|393727|393728|393729|393734|393737|393738|393739|393745|393755|393756|393887|393893|393895|393901|393902|393905|393907|393908|393910|393918|393920|393923|393926|393928|393931|393934|393946|393950|394099|394104|394107|394108|394111|394114|394120|394126|394129|394137|394138|394143|394144|394159|394163|394165|394171|394175|406342|406345|428209|433376|438244|451811|451814|452693|452699|452700|452710|452712|452715|452717|452719|452721|452724|452730|452731|452732|452733|453011|453013|453015|453017|453021|453028|453029|453035|453039|453044|453046|453048|453049|453050|453052|453054|453057|453058|453060|453063|453064|453065|453067|453068|453074|453076|453077|453081|453083|453090|453091|453095|453096|453098|453104|453341|453360|453362|453366|453369|453377|453382|453385|453388|453393|453399|453422|453423|453429|453432|473457|473462|473463|473464|473467|473472|473483|473484|473490|473494|473499|473504|473509|473511|473521|473522|473524|473537|473538|473539|473542|473547|473548|473555|473561|473565|473566|473570|473571|473582|473583|473588|473687|473704|473711|473717|473718|473723|473738|473745|473752|482484|482492|482508|482510|482512|482515|482524|482527|482529|482535|482538|482541|482554|482555|482562|482567|482569|482583|482595|482602|482604|482605|483580|483583|483590|483602|483604|483609|483617|483628|483629|483630|483636|483640|483641|483642|483649|483651|483654|483655|483663|483666|483670|483680|483686|483688|483695|483698|483703|483705|483706|483707|483708|483709|483713|483720|483723|483728|483750|483778|500610|518708|519523|519525|519543|519544|519557|519562|519564|519569|519571|519577|519581|519588|519599|519601|519604|519605|519610|519778|519784|519790|519794|519803|519805|519807|519809|519812|519813|519815|519816|519817|519818|519819|519820|519823|519824|519825|519826|519829|519835|519836|519837|519839|519840|519846|519851|519854|519868|559098|559100|559102|559104|559106|559108|559110|559112|559114|559116|559118|559120|559638|559640|559642|559644|559646|559648|559650|559652|559654|559656|559658|561754|561760|561762|561767|561769|561774|561782|561785|561788|561789|563207|563209|563210|563211|563224|563242|563250|563261|563266|575708|575709|575710|575711|611994|612658|616935|616936|616939|616954|616961|616966|616968|616971|616981|616985|616992|616995|616996|616998|617002|617004|617006|617007|617009|617010|617011|617013|617014|617017|617022|619219|620766|631698|631699|631700|631701|631702|631703|631704|631705|631706|631707|631708|631709|631710|631711|631712|631713|631714|631715|631716|631717|631718|631719|631720|631721|631722|631723|631724|631725|631726|631727|631728|631729|631730|631731|631732|631733|631734|631735|631736|631737|631738|631739|631740|651047|651086|651089|651112|651113|651122|651129|651218|651235|683592|686456|691473|691474|695214|698225|748434|764082|774869|774871|774903|781773|781775|790408|807654|807660|807674|807698|807699|819411|819412|828454|828455|828456|828457|828458|828459|828460|828461|828462|828463|828464|828465|828466|828467|828468|828469|828470|828471|828472|828473|828474|828475|828476|828477|828478|828479|828480|828481|828482|828483|828484|828485|828486|828487|828488|828489|828490|828491|828492|828493|828494|828495|828496|828497|828498|828499|828500|828501|828502|828503|828504|828505|828506|828507|850958|851092|851471|851576|889417|889418|889419|889420|889421|889422|889423|889424|889425|889426|889427|889428|889429|889430|889431|889432|889433|891691|891692|909704|909727|909733|909736|909739|909753|909761|909789|923303|923304|923305|923306|923307|923308|923309|923310|923311|923312|923313|923314|923315|923316|923317|923318|923319|923320|923321|923322|932054|932055|932056|932057|932058|932059|932060|932061|932062|932063|932064|932065|932066|939951|939952|940761|943668|943669|943670|943671|943672|943673|943674|943675|943676|943677|943678|943679|943680|943681|943682|943683|943684|943685|953569|953570|953571|953572|953573|953574|953575|953576|959705|959706|959707|970776|970777", + "text": "Tumor susceptibility linked to germline BAP1 mutations" + }, + { + "baseId": "39262|39263|39264|39265|39266|39267|39268|39269|39270|39271|142915|142916|142917|142918|142919|142920|178706|210262|210266|258935|258940|258946|258947|263525|323138|323151|323155|323166|323169|323180|323196|323200|332772|332774|332776|332781|332783|332785|332802|332835|332843|332846|332854|332858|332862|339727|339728|339738|339754|339760|339761|339769|339773|339777|341127|341137|341150|341159|341161|341164|341172|341196|360980|400464|401092|401108|415444|437987|464430|464449|465054|465074|465080|465241|465249|465256|465312|465324|465348|529004|529009|529404|529589|529590|529593|567222|567226|567229|567230|569054|569061|569566|569569|569570|569582|573480|573481|573487|573490|614165|682307|682308|682309|682310|682311|682312|688474|688477|791479|799816|822307|874018|874019|874021|874024|874025|874026|874027|874028|874029|874031|874032|874033|874034|874038|919592|964424|971027|981927", + "text": "Loeys-Dietz syndrome 3" + }, + { + "baseId": "39272|227659|402429|550629|653822", + "text": "Coffin-Siris syndrome 5" + }, + { + "baseId": "39272|45820|70490|70491|70492|70493|139022|139024|208396|233842|242736|242737|242738|242739|242740|242741|242742|242743|242744|242745|242746|359974|397335|401901|401903|401904|401906|401908|401914|401956|401961|401970|401971|401977|401981|401982|401985|401990|402423|402428|402429|402429|402433|402437|402438|402611|407985|460522|466771|466773|466776|466777|466780|466784|466786|466787|466796|466800|466803|467649|467650|467655|467658|467826|467830|467834|467840|467850|468011|468015|468017|468018|468021|468024|468027|468030|468036|470130|475248|478501|478514|478520|478533|478631|512279|525742|530977|530978|530979|530983|530984|530986|530987|530990|530992|531106|531109|531111|531114|531117|531120|531190|531199|531202|531206|531207|531209|531470|531477|531478|531489|534181|534181|569025|569026|569028|569030|569034|571095|571098|574062|574080|574451|575807|626284|639262|645834|645835|645836|645837|645838|645839|645840|645841|645842|645843|645844|645845|645846|645847|645848|645849|645850|645851|652942|653109|653269|688762|688764|694081|694082|694083|694084|695742|704123|715429|727153|755821|760425|771474|799619|813598|813602|813604|813606|813608|813609|813610|813612|813613|813616|813624|813629|813633|813635|821041|845270|845271|845272|845273|845274|845275|845276|845277|845278|845279|845280|845281|845282|845283|845284|845285|845286|845287|845288|845289|845290|845291|845292|845293|845294|852740|919252|919726|919954|920425|920426|928242|928243|928244|928245|928246|928247|928248|937905|937906|937907|937908|937909|937910|937911|937912|937913|937914|937915|940410|940411|949897|949898|949899|949900|949901|949902|949903|949904|949905|958098|958099|958100|958101|960216|960217", + "text": "Meningioma, familial" + }, + { + "baseId": "39279|106392|106393|106394|106395|106396|106397|250580|250581|250582|284888|284890|284891|284895|284901|284908|284917|284918|284919|284927|284929|284931|284932|284933|284937|284944|284950|285544|285564|285572|285574|285576|285577|285578|285579|285590|285593|285595|285598|285604|285612|287888|287890|287895|287908|287920|287924|287926|287927|287930|287931|287932|287934|288135|288136|288137|288146|288149|288151|288169|288184|288186|288198|288199|288204|288206|883893|883894|883895|883896|883897|883898|883899|883900|883901|883902|883903|883904|883905|883906|883907|883908|883909|883910|883911|883912|883913|883914|883915|883916|883917|883918|883919|883920|883921|883922|883923|883924|883925|883926|883927|883928|883929|883930|883931|883932|883933|883934|883935|883936|883937|883938|883939|883940|883941|887282|887283|963123|964195", + "text": "Pseudohypoaldosteronism type 2E" + }, + { + "baseId": "39279|39473|39474|39475|39476|39477|39478|39479|39480|106392|106393|106394|106395|106396|106397|106398|106399|106400|106401|106402|106403|106404|106405|106406|106407|106408|106409|106410|106411|106413|106414|106415|106416|106417|106418|106421|106422|106425|106427|192995|260864|318655|318659|318675|318687|326790|326934|328531|328556|332884|332972|333031|333048|333051|333068|333083|333105|334543|334549|334732|334798|334799|334803|334807|334811|334818|334825", + "text": "Pseudohypoaldosteronism type 2A" + }, + { + "baseId": "39280|39281|39282|343796|343800|343804|349089|350013|350016|380145|539093|621872|648173|882150|882151|882152|882153|882154|882909|882910|882911", + "text": "Hereditary spastic paraplegia 12" + }, + { + "baseId": "39287|39288|188958|213535|226702|285325|285340|285341|285358|285360|285368|285369|285973|285974|285978|285992|285996|285997|286004|286005|286006|288312|288315|288317|288318|288339|288340|288342|288343|288739|288740|288741|288759|288767|884168|884169|884170|884171|884172|884173|884174|884175|884176|884177|884178|884179|884180|884181|884182|884183|884184|884185|884186|884187|884188|905049|966579|966580|966581", + "text": "Leber congenital amaurosis 16" + }, + { + "baseId": "39289|39290|39291|39292|538452|791580|791581|980372", + "text": "Spondyloepimetaphyseal dysplasia with joint laxity, type 2" + }, + { + "baseId": "39298|39299|39300|39301|39302|39303|131893|208522|208522|208527|208529|243129|243191|243228|243251|390651|402865|402923|403125|403126|403448|410423|410427|430124|446024|468417|469136|469558|469573|469702|479479|479496|479504|533038|572136|611429|613500|647559|647574|647611|677460|798740|970550", + "text": "Mental retardation, autosomal dominant 16" + }, + { + "baseId": "39305|492928", + "text": "Hypogonadotropic hypogonadism 13 with or without anosmia" + }, + { + "baseId": "39307|39308|39309|195974|205769|320695|490260|492179|552151|896571", + "text": "Peroxisome biogenesis disorder 8B" + }, + { + "baseId": "39311|39312|491077|790769|815955|815957|980928", + "text": "Nail disorder, nonsyndromic congenital, 1" + }, + { + "baseId": "39311|39312", + "text": "Nail disease" + }, + { + "baseId": "39313|39314|39316|99992|135702|135704|135705|135706|135707|135709|135711|135714|135716|142779|167457|167458|178055|178058|178059|191022|191370|192649|231501|250347|272066|273736|282546|282559|282565|282569|282570|282573|282582|282586|282594|282598|282599|282600|282604|283199|283202|283206|283209|283226|283227|283243|283257|283258|283259|283267|283293|283307|283310|283311|283322|283323|283334|283354|283355|283356|283357|284810|284812|284826|284836|284837|284838|284841|284842|284849|284866|284868|284873|284879|284887|285259|285268|285269|285288|285292|285295|285305|285321|285322|285329|285332|285355|285356|285357|285359|285361|285362|285364|285365|285367|285388|285390|285402|285406", + "text": "Small fiber neuropathy" + }, + { + "baseId": "39317|359095|359096|359097", + "text": "Mental retardation, autosomal recessive 34" + }, + { + "baseId": "39329|172080|244154|576110|581710", + "text": "Hypomyelinating leukodystrophy 3" + }, + { + "baseId": "39330|192389|192390|195682|195683|255331|255332|255333|268403|270751|271809|323079|323080|323081|323086|323088|323089|323090|323100|323102|323105|332704|332707|332711|332716|332718|332720|332723|332728|332735|332745|332750|339695|339696|339698|339699|339700|339701|339702|339703|339709|339711|341070|341072|341074|341076|341078|341079|341080|341081|341083|341087|341088|341089|341090|341094|341095|341096|341097|482298|482299|482300|482301|551579|620525|726210|873980|873981|873982|873983|873984|873985|873986|873987|873988|873989|873990|873991|873992|873993|873994|873995|873996|873997|873998|873999|874000|874001|874002|874003|874004|874005|874006|874007|874008|874009|874010|874011|874012|874013|874014|874015|874016|874017|876553|876554|876555|876556|876557|876558|876559", + "text": "Congenital stationary night blindness, type 1D" + }, + { + "baseId": "39331|451486|451491|451492|451497|451499|451752|451836|451945|451946|518652|518677|518750|518758|518759|518848|518851|518857|558692|559203|560997|560999|561001|561002|562100|562118|624249|630614|630615|630616|630617|630618|630619|630620|630621|630622|630623|630624|630625|630626|630627|630628|651011|651017|651097|708410|708411|708412|708413|720005|720008|733625|733626|733627|743971|743980|747813|759288|759293|763456|763458|763461|819282|819283|827106|827107|827108|827109|827110|827111|827112|827113|827114|827115|827116|827117|827118|827119|827120|827121|827122|827123|827124|827125|827126|851442|851444|922946|922947|922948|922949|922950|931616|931617|931618|943149|943150|943151|943152|943153|943154|960492", + "text": "Inflammatory skin and bowel disease, neonatal 1" + }, + { + "baseId": "39332|39333|39335|39336|672352|672353|672354|672355", + "text": "Congenital cataracts, hearing loss, and neurodegeneration" + }, + { + "baseId": "39340|39341|39342|39343|39344|39345|39346", + "text": "Blood group, Junior system" + }, + { + "baseId": "39342|39343|39346", + "text": "Uric acid concentration, serum, quantitative trait locus 1" + }, + { + "baseId": "39346", + "text": "rosuvastatin response - Efficacy" + }, + { + "baseId": "39346", + "text": "allopurinol response - Dosage, Efficacy" + }, + { + "baseId": "39346|135788|678115", + "text": "Gemcitabine response" + }, + { + "baseId": "39347|314624|314628|314629|314633|314635|314640|314647|314650|314653|314658|321328|321330|321335|321336|321341|327481|327485|327486|328520|328523|328529|713049|868286|868287|868288|868289|868672", + "text": "Nestor-Guillermo progeria syndrome" + }, + { + "baseId": "39348|211645|578641|791236|905867", + "text": "Mitochondrial complex 1 deficiency, nuclear type 26" + }, + { + "baseId": "39349|39350|359099|359100|620073", + "text": "Mitochondrial complex 1 deficiency, nuclear type 22" + }, + { + "baseId": "39357|39358|39359|39360|39361|40319|48561|48562|134419|134420|134421|199808|208399|208400|213646|375142|415565|424666|429977|481240|513468|552204|677984|682841|791782|800835|917750|919733|919734|920373|961642|966002|966003|966004|966043|971081|971082|973043", + "text": "Mandibulofacial dysostosis-microcephaly syndrome" + }, + { + "baseId": "39363|141192|190439|205537|208401|344974|346298|685435", + "text": "Epilepsy, progressive myoclonic 6" + }, + { + "baseId": "39365|132702|135547", + "text": "Seckel syndrome 2" + }, + { + "baseId": "39366|330837|347942|919789", + "text": "Microcephaly with mental retardation and digital anomalies" + }, + { + "baseId": "39367|39367|39368|187689|191369|191537|194164|194191|196235|207865|265791|266013|267194|270150|270796|270975|272453|272457|274999|314218|314221|314230|314232|314240|314249|320780|320783|320790|320821|320837|320852|320855|326846|326853|326855|326859|326875|326887|326891|327795|327798|327800|327817|327830|327858|327869|360043|371427|429241|444807|461121|461131|461137|461332|461333|461623|461624|461625|461626|461627|461630|461932|461939|461943|461953|488690|488691|488694|526218|526223|526224|526226|526227|526228|526409|526415|526429|526434|526706|526708|526713|526719|564646|564647|564651|564654|564655|564662|564669|564671|565803|565805|567275|567276|567280|567282|570669|570670|570671|570673|640069|640070|640071|640072|640073|640074|640075|640076|640077|640078|640079|640080|640081|640082|640083|640084|640085|640086|640087|640088|640089|640090|652547|693032|693033|693034|693037|693039|693040|693042|693043|693044|693045|695516|695518|701776|701777|701778|701780|712847|712848|712849|724460|724462|724464|752689|768468|784012|796596|838472|838473|838474|838475|838476|838477|838478|838479|838480|838481|838482|838483|838484|838485|838486|852613|926251|926252|926253|926254|926255|935567|935568|935569|935570|935571|935572|935573|935574|935575|935576|940214|940998|947480|947481|947482|947483|956513|956514|956515|959990", + "text": "Sclerosteosis 2" + }, + { + "baseId": "39367|187688|187689|187689|191369|191537|194164|194191|196235|207865|265791|266013|267194|270150|270796|270975|272453|272457|274999|314218|314221|314230|314232|314240|314249|320780|320783|320790|320821|320837|320852|320855|326846|326853|326855|326859|326875|326887|326891|327795|327798|327800|327817|327830|327858|327869|360043|371427|429241|444807|461121|461131|461137|461332|461333|461623|461624|461625|461626|461627|461630|461932|461939|461943|461953|488690|488691|488694|526218|526223|526224|526226|526227|526228|526409|526415|526429|526434|526706|526708|526713|526719|564646|564647|564651|564654|564655|564662|564669|564671|565803|565805|567275|567276|567280|567282|570669|570670|570671|570673|626206|640069|640070|640071|640072|640073|640074|640075|640076|640077|640078|640079|640080|640081|640082|640083|640084|640085|640086|640087|640088|640089|640090|652547|693032|693033|693034|693037|693039|693040|693042|693043|693044|693045|695516|695518|701776|701777|701778|701780|712847|712848|712849|724460|724462|724464|752689|768468|784012|796596|838472|838473|838474|838475|838476|838477|838478|838479|838480|838481|838482|838483|838484|838485|838486|852613|926251|926252|926253|926254|926255|935567|935568|935569|935570|935571|935572|935573|935574|935575|935576|940214|940998|947480|947481|947482|947483|956513|956514|956515|959990", + "text": "Myasthenic syndrome, congenital, 17" + }, + { + "baseId": "39369|322652|429675|512944|567103|569423|643288|643289|643290|643291|643292|643293|643294|726111|754490|815879|815880|842427|842428|927343|927344|948911|960822", + "text": "Hermansky-Pudlak syndrome 9" + }, + { + "baseId": "39370|39371|39372|135015|135016|135017|135018|135019|135020|135021|135022|135023|135024|135025|135026|135027|199791|207661|207663|207664|207665|207666|207667|207669|207671|207672|207673|307698|307706|307708|307709|307711|307712|311945|311956|311958|311961|311962|311963|311964|311967|311970|317545|317547|317558|317563|317565|317566|317573|317576|317577|317579|317593|317599|317604|317611|317615|318053|318069|318071|318073|318074|318075|318079|318081|318082|318085|318087|318089|318092|318096|318098|428958|428961|428964|428966|428967|438578|438957|459360|486814|511822|524425|524429|524721|524724|565808|579585|579630|579631|579646|579647|579652|579661|579817|579821|586585|620326|638105|711892|730625|751586|751589|777813|779313|783365|783366|790873|805616|835933|835934|901572|901573|901574|901575|901576|901577|901578|901579|901580|901581|901582|901583|901584|901585|901586|901587|901588|901589|901590|901591|901592|901593|901594|901595|903356|903357|903358|934682|946533|955772|971358|971361|971362|971363|971365|971366", + "text": "Mental retardation, autosomal recessive 15" + }, + { + "baseId": "39372", + "text": "MAN1B1-Related Disorders" + }, + { + "baseId": "39373|39374|39375|39376|134895|134897|134900|134901|134902|134906|134911|134913|134914|134916|134920|134923|191237|192120|192121|207620|264389|407563|421717|508834|538405|552132|552133|578473|796244|919192", + "text": "Cortical malformations, occipital" + }, + { + "baseId": "39384|172197|211841|211847|361845|537303|539078|961427|961428|961436", + "text": "Spastic ataxia 5, autosomal recessive" + }, + { + "baseId": "39391|39392|39393|361118", + "text": "Progressive external ophthalmoplegia" + }, + { + "baseId": "39394|39396|39444|39445|40587|247077|254467|254468|254469|254470|254471|254472|254473|316517|316522|316528|316532|316533|316535|316536|316537|316539|316545|316546|316566|316567|316577|316578|316587|316588|316593|316594|316599|316600|316604|316615|316616|316620|324045|324048|324053|324054|324055|324062|324066|324067|324068|324074|324078|324079|324080|324083|324092|324095|324098|324099|324100|324102|324104|324112|330011|330023|330039|330043|330044|330045|330050|330051|330055|330059|330061|330068|330070|330077|330084|330086|331377|331393|331394|331406|331407|331411|331423|331433|331438|331441|331442|331452|331454|331455|331457|331458|331465|331466|331467|331470|331471|331490|331506|331508|331512|331517|331518|331524|331528|433929|433930|609824|620432|620433|620434|620435|620436|620437|620842|620843|620844|620845|620846|725038|725039|738584|738585|738586|753295|799669|799674|869593|869594|869595|869596|869597|869598|869599|869600|869601|869602|869603|869604|869605|869606|869607|869608|869609|869610|869611|869612|869613|869614|869615|869616|869617|869618|869619|869620|869621|869622|869623|869624|869625|869626|869627|869628|869629|869630|869631|869632|869633|869634|869635|869636|869637|869638|869639|869640|869641|869642|869643|869644|869645|869646|872218|872219|872220|872221|872222|872223|872224|904186|965895|981776|981777|981778|981779|981780|981781|981782|981783|981784|981785|981786", + "text": "Rotor syndrome" + }, + { + "baseId": "39399|140122|152910|152911|425669|430994|434605|538381|550601|611643|790588", + "text": "Mental retardation, autosomal recessive 18" + }, + { + "baseId": "39402|576070|970948", + "text": "Developmental and epileptic encephalopathy, 67" + }, + { + "baseId": "39404|39405", + "text": "Radiohumeral fusions with other skeletal and craniofacial anomalies" + }, + { + "baseId": "39406", + "text": "Deafness, autosomal dominant 64" + }, + { + "baseId": "39407|39408|227268|799358", + "text": "Preeclampsia/eclampsia 5" + }, + { + "baseId": "39409|39410|39411|227203|439996|550576", + "text": "Familial acne inversa 1" + }, + { + "baseId": "39412|39413|39414|39415|101850|141305|141306|141307|141309|141310|141311|141312|141313|141314|186288|194483|198533|198536|198538|222854|259064|259066|410754|422320|446245|470900|497751|508934|512963|818345", + "text": "Familial hypertrophic cardiomyopathy 17" + }, + { + "baseId": "39422|240900|360879|361092|454614|462979|514048|514112|576328", + "text": "Clinodactyly of the 5th finger" + }, + { + "baseId": "39434|39435|39436|39437|39438|214528|247410|247411", + "text": "Langereis blood group" + }, + { + "baseId": "39439|39440|79365|904247", + "text": "Microphthalmia, isolated, with coloboma 7" + }, + { + "baseId": "39443|337275|337277|337278|337291|337294|337296|337298|337299|337314|337322|337333|337335|337336|337340|337349|337354|337373|337381|337402|337403|337405|337413|337430|337431|337434|337441|346962|346963|346969|346971|346972|346979|346980|346983|346984|346988|346990|346991|346995|346997|347007|347009|347016|347023|347028|347034|347056|347057|351006|351008|351011|351013|351016|351018|351020|351026|351028|351033|351037|351039|351046|351054|351055|351058|351059|351062|351063|351066|351067|351071|351089|351092|351097|351100|351101|351102|352008|352009|352011|352012|352013|352015|352016|352017|352020|352040|352041|352044|352047|352048|352049|352072|352073|352074|352079|352083|352088|352106|352110|352111|352115|352121|352125|352127|352129|352134|359109|359110|359111|359112|359113|469873|469878|469880|470892|470896|470898|471314|471315|471316|471791|471793|534025|534027|534033|534038|534041|534126|534132|534135|534144|534566|534571|534572|534576|534579|534585|534592|571675|571679|571680|571682|571683|571685|573236|573239|573241|573242|573942|575209|575210|575211|614484|649137|649138|649139|649140|649141|649142|649143|649144|649145|649146|649147|649148|649149|649150|649151|649152|649153|649154|649155|649156|649157|649158|649159|649160|649161|649162|717276|717277|717278|728991|728992|728993|728994|728995|728996|728997|742729|757909|757911|757912|760973|773417|776717|786540|821397|848984|848985|848986|848987|848988|848989|848990|848991|848992|848993|848994|848995|848996|848997|848998|848999|849000|849001|849002|849003|849004|849005|849006|849007|852918|887129|887130|887131|887132|887133|887134|887135|887136|887137|887138|887139|887140|887141|887142|887143|887144|887146|887147|887148|887149|887150|887152|887153|887154|887155|887156|887157|887158|887160|887161|887162|887163|887164|887165|887166|887167|887169|887170|887171|887172|887173|887174|887175|887176|887177|887178|887179|887180|887181|887182|887183|887184|887185|887186|887187|887188|887189|887190|887191|887192|887193|887194|887195|887196|887197|887198|887199|887200|887201|887202|887203|887204|887205|887206|887207|887208|887209|887210|887211|887212|929388|929389|929390|929391|929392|939173|939174|939175|939176|939177|939178|939179|951296|951297|951298|951299|951300|951301|951302|951303|951304|951305|951306|951307|951308|951309|959013|959014|959015|960337", + "text": "Immunodeficiency 51" + }, + { + "baseId": "39446|39447|39448|48518|48519|48520|84944|170217|170218|281597|281598|281600|281606|281607|281611|282255|282256|282258|282259|282260|282269|282270|282272|282274|282289|283590|283603|283604|283611|283612|283620|283621|283623|283631|283638|283639|283788|283791|283792|283793|283794|283795|283800|283804|283807|283819|283822|283825|283826|283851|353536|486247|516296|516298|516311|516323|516324|516327|516398|559182|612557|620734|628413|628414|628415|732719|743807|762160|762161|819043|824716|824717|824718|824719|850832|880862|880863|880864|880865|880866|880867|880868|880869|880870|880871|880872|880873|880874|880875|882783|930789|930790", + "text": "Pustular psoriasis, generalized" + }, + { + "baseId": "39451|39452|309029|426755|552107|552108", + "text": "Ichthyosis, spastic quadriplegia, and mental retardation" + }, + { + "baseId": "39455|39456|39457|39458|39459|134113|134129|134132|208308|429860|429864|434653|715196", + "text": "Meier-Gorlin syndrome 4" + }, + { + "baseId": "39460|39461|39463|679353", + "text": "Platelet-type bleeding disorder 11" + }, + { + "baseId": "39465|39466|40446|40447|40448|54943|54945|54949|54952|142112|142113|209638|227266|229156|292142|508791|550864", + "text": "Familial hypertrophic cardiomyopathy 16" + }, + { + "baseId": "39468|39469|39470|39471|188968|237238|257465|257466|257467|257468|257469|257470|336829|336830|336833|336835|336838|336839|336840|346486|346496|346497|346498|346499|346502|346503|346507|346509|346511|346520|350694|350699|350700|350703|350704|350707|350708|350711|350713|350716|350717|350720|350721|350724|350725|350726|350728|351762|351763|351765|351768|351770|351773|351774|351776|351777|351778|351779|351780|351782|351786|351789|351791|351795|552226|576315|717217|728918|731374|742648|742649|757824|757830|757832|757833|773354|805042|886798|886799|886800|886801|886802|886803|886804|886805|886806|886807|886808|886809|886810|886811|886812|886813|886814|886815|886816|886817|886818|886819|886820|886821|886822|886823|886824|886825|886826|886827|886828|886829|886830|886831|886832|886833|886834|886835|886836|886837|886838|886839|886840|886841|886842|887510|887511", + "text": "Bartsocas-Papas syndrome" + }, + { + "baseId": "39472|39473|39474|39475|39476|39477|39478|39479|39480|40222|40223|40224|214534|251701|251704|251708|295398|295409|295425|295426|295429|295430|295435|295438|295443|295445|295446|295453|295456|295461|295469|295470|297203|297204|297211|297212|297218|297231|297234|297235|297236|297242|297243|297244|297246|297249|297250|297257|297259|297260|301006|301017|301019|301021|301034|301035|301060|301067|301079|301082|301087|301091|301094|301097|301099|301103|301104|301107|301109|301124|301132|301158|301161|301170|301171|301173|301183|301185|301186|301187|301197|301215|301216|301226|301253|301264|622346|892965|892966|892967|892968|892969|892970|892971|892972|892973|892974|892975|892976|892977|892978|892979|892980|892981|892982|892983|892984|892985|892986|892987|892988|892989|892990|892991|892992|892994|892995|892996|892997|893001|893002|893005|893006|893011|893012|893013|896033|896034", + "text": "Pseudohypoaldosteronism type 2D" + }, + { + "baseId": "39482|39483|39484|39485|47604|47604|47605|59481|59482|213599|253844|264349|311064|322495|323175|353900|431920|481403|514612|550617|550618|552633|583107|614350|614351|624855|677431|798626|798627|816515|818392|919286|919287|920285|964345|965204|967124|976660", + "text": "Blepharophimosis - intellectual disability syndrome, SBBYS type" + }, + { + "baseId": "39487|39489|39490|47604|47604|150148|150150|150152|207791|253844|253845|253846|253847|253849|253851|253852|322482|322517|495257|514612|552145|552633|563951|566503|614350|614351|639160|639161|677431|692889|775720|790982|790983|790984|837307|837308|837309|837310|837311|947073|967124|976660", + "text": "Genitopatellar syndrome" + }, + { + "baseId": "39492|66321|133499|222576|363242", + "text": "Diffuse intrinsic pontine glioma" + }, + { + "baseId": "39501|39502|39503|39504|169314|169315|169316|169317|169318|169319|169320|169321|169322|169323|169324|169325|169326|169327|169328|169329|169330|169331|327361|327365|343427|343430|343431|343441|343443|345028|345029|345030|361006|620883|626251|876845|876846|876847|876848|876849|876850|880467|919704", + "text": "CHIME syndrome" + }, + { + "baseId": "39501|169319|169322|169325|327361|327365|343427|343430|343431|343441|343443|345028|345029|345030", + "text": "Coloboma, Congenital Heart Disease, Ichthyosiform Dermatosis, Intellectual Disability, and Ear Anomalies (CHIME) Syndrome" + }, + { + "baseId": "39506|106812|106813|215560|259227|259228|259229|259230|259231|259232|259233|259234|376028|376041|389175|390374|390379|410404|415607|415608|439466|439467|442036|445996|445999|446000|446001|446002|468085|468089|468107|468108|468112|468122|468127|468131|468133|469021|469022|469029|469032|469039|469046|469049|469052|469059|469060|469424|469426|469432|469443|469444|469446|469866|469869|469872|469890|469892|469898|469900|469903|469904|481446|508906|513652|513653|532326|532328|532330|532338|532341|532347|532360|532365|532367|532369|532370|532374|532377|532475|532481|532483|532792|532794|532800|532806|532810|532814|532819|570244|570246|570248|570250|571985|571991|571993|571999|572003|572006|572535|572679|572682|572689|572692|574775|574776|574777|574778|574779|574780|574781|574782|577692|577695|577696|577697|580321|580383|580391|580425|580544|589286|626270|647367|647368|647369|647370|647371|647372|647373|647374|647375|647376|647377|647378|647379|647380|647381|647382|647383|647384|647385|647386|647387|647388|647389|647390|647391|647392|647393|647394|647395|647396|652884|652904|652910|652911|653081|653377|653410|653414|682107|694290|704642|704643|704644|704645|704646|704647|716020|716021|731222|741420|741422|745032|756501|756502|756505|756506|756509|756510|756513|778590|785966|791880|798738|821197|846984|846985|846986|846987|846988|846989|846990|846991|846992|846993|846994|846995|846996|846997|846998|846999|847000|847001|847002|847003|847004|847005|847006|847007|847008|847009|847010|847011|847012|847013|847014|852285|852288|852291|852294|852826|852937|852939|857693|860492|928752|928753|928754|928755|928756|928757|928758|928759|928760|928761|928762|928763|928764|928765|928766|928767|938478|938479|938480|938481|938482|938483|938484|938485|938486|938487|938488|938489|938490|938491|940460|941215|941216|950573|950574|950575|950576|950577|950578|950579|950580|958488|958489|958490|958491|958492|960272|960906|960907|960908|970549", + "text": "Multiple congenital anomalies-hypotonia-seizures syndrome 1" + }, + { + "baseId": "39508", + "text": "Nuclearly-encoded mitochondrial complex V (ATP synthase) deficiency 3" + }, + { + "baseId": "39517|39518|247192|384424|976673|976674", + "text": "Schizophrenia 15" + }, + { + "baseId": "39519|39520|39521|39522|39523|137712|331230|399906|399958|400191|464570|464635|477067|528380|566698|573026|917735", + "text": "Goiter, multinodular 1, with or without Sertoli-Leydig cell tumors" + }, + { + "baseId": "39525|39526|39527|39528|39529|141396|141397|211314|211315|211318|259853|370907|406999|432357|432358|456749|457017|481493|501893|522381|522383|523096|523098|561622|561634|566067|635840|635841|635842|635843|635844|635845|635846|635847|635848|651585|651608|651645|651776|710849|750474|750478|766143|766145|787505|819834|819835|819836|819837|819838|819839|819840|833261|833262|833263|833264|833265|833266|833267|833268|833269|833270|833271|924727|924728|924729|933736|933737|933738|945500|945501|961236|961237", + "text": "Thiamine metabolism dysfunction syndrome 5 (episodic encephalopathy type)" + }, + { + "baseId": "39530|227735", + "text": "MULTIPLE JOINT DISLOCATIONS, SHORT STATURE, AND CRANIOFACIAL DYSMORPHISM WITH CONGENITAL HEART DEFECTS" + }, + { + "baseId": "39531|39532", + "text": "Retinitis pigmentosa 61" + }, + { + "baseId": "39536", + "text": "Osteomyelitis leading to amputation due to slow healing fractures" + }, + { + "baseId": "39536", + "text": "Penetrating foot ulcers" + }, + { + "baseId": "39536|361025", + "text": "Distal sensory impairment" + }, + { + "baseId": "39544|39545|135824|195354|391252|427838|794110", + "text": "Mental retardation, autosomal recessive 12" + }, + { + "baseId": "39546|227301|300695|300697|300705|303620|303622|303623|308159|308161|308169|308220|308229|308230|456243|521692|560746|563629|563632|634979|634980|634981|765741|819698|832032|832033|832034|832035|832036|896665|896666|896667|900248|900249|924377|924378|924379|933356|945061|945062|945063|945064|954498|954499", + "text": "Candidiasis, familial, 6" + }, + { + "baseId": "39547|195408|430007|432359|432360|432361|432362|481466", + "text": "Striatal necrosis, bilateral, and progressive polyneuropathy" + }, + { + "baseId": "39548|462737|527886|641392|641393|702512|702513|725280|926738", + "text": "Klippel-Feil syndrome 3, autosomal dominant" + }, + { + "baseId": "39548", + "text": "Missing ribs" + }, + { + "baseId": "39548", + "text": "Supernumerary ribs" + }, + { + "baseId": "39548|377641|966697|966704", + "text": "Hemivertebrae" + }, + { + "baseId": "39549|39550", + "text": "Microphthalmia, isolated 7" + }, + { + "baseId": "39555|140023|140025|140026|140027|140028|140029|172155|211999|212000|212001|243739|244166|288934|290052|292635|292640|293546|293586|300336|300339|300340|300368|303215|307681|307845|307865|307869|310954|310959|316234|322354|322361|322363|322914|322916|322918|322934|323545|324778|324927|324935|326185|329724|330971|334395|334560|334562|334578|338837|340989|342504|342509|342515|342525|352058|360628|379916|404439|404484|438582|471256|471693|472053|500638|507839|508492|534492|534507|534509|534600|537587|575325|585859|649669|649670|649671|649672|649673|649674|649675|649676|649677|649678|649679|649680|653773|684944|689335|690250|717644|758294|849603|849604|849605|849606|849607|849608|849609|849610|849611|849612|902774|905514|929561|929562|929563|939423|939424|939425|939426|951590|951591|951592|959163|959164|959165", + "text": "Combined oxidative phosphorylation deficiency" + }, + { + "baseId": "39556|39557|39558|39559|190553|193642|195734|202871|445413|569589|972210|972211|972212", + "text": "Adult neuronal ceroid lipofuscinosis" + }, + { + "baseId": "39562|335338|335358|335359|335360|335361|335369|335371|335374|335378|345199|345200|345203|345205|349932|349936|349937|349940|349941|349943|349944|350941|350942|350945|350947|350950|350951|350954|350955|350958|575091|575091|757496|886058|886059|886060|886061|886062|886063|886064|886065|886066|886067|886068|886069|886070|886071|887457|887458", + "text": "Chilblain lupus 2" + }, + { + "baseId": "39564|50319|50320|50321|508863|508864|815993|919341", + "text": "Hemorrhagic destruction of the brain, subependymal calcification, and cataracts" + }, + { + "baseId": "39579|39580|39581|39582|142157", + "text": "Mitochondrial complex 1 deficiency, nuclear type 11" + }, + { + "baseId": "39585|101888|101888|177144|177144|181437|190600|190601|237188|237188|319769|319770|319770|319781|319782|319790|319802|319805|319806|319808|319809|328296|328297|328299|328301|328301|328304|328304|328309|328310|328314|328325|328344|334768|334769|334775|334776|334779|334782|334782|334793|334795|336504|336505|336510|336512|336513|336519|372822|372827|373841|426044|463273|480625|480626|485963|485964|485965|485966|504270|527728|527728|527763|566119|567579|576160|578508|641939|641940|688170|688170|695598|695598|702685|730919|730919|769560|769561|784600|791344|805024|818397|840886|840887|840888|840889|840890|871286|871287|871288|871289|871290|871291|871292|871293|871294|871295|871296|871297|871298|871299|871300|871301|871302|871303|871304|871305|871306|871307|871308|871309|871310|871311|871312|871313|871314|872335|872336", + "text": "Congenital disorder of glycosylation type 2L" + }, + { + "baseId": "39586|141821|141822|201765|201767|201769|201770|201771|201772|201773|201774|201775|201778|226379|226380|367956|367959|368012|453153|453154|453157|453421|453427|453531|453533|453616|514496|519903|519907|519921|519925|519929|519930|519931|519939|520152|520183|520185|559673|559675|559677|559679|559681|559702|559834|559836|559838|562003|562004|562007|562008|562012|562013|563690|563700|563701|576782|586275|632198|632199|632200|632201|632202|632203|651190|695235|764460|764461|829143|829144|829145|829146|829147|829148|829149|829150|850986|905866|918893|918894|923507|923508|923509|923510|923511|923512|923513|932329|932330|932331|932332|932333|932334|932335|932336|932337|939967|943993|943994|943995|943996|943997|943998|966794|966795", + "text": "Pyruvate dehydrogenase lipoic acid synthetase deficiency" + }, + { + "baseId": "39587", + "text": "Psoriasis susceptibility 13" + }, + { + "baseId": "39588|39590|39591|39592|49863|49909|190898|204645|432334|619859|971076", + "text": "Bruck syndrome 1" + }, + { + "baseId": "39593|39594|39595|190053|227388|328051|328056|328072|328078|328080|328104|337890|337902|337922|337928|337932|344128|344152|345491|345524|345529|345544|791742", + "text": "Palmoplantar keratoderma, mutilating, with periorificial keratotic plaques" + }, + { + "baseId": "39600|434582|677003", + "text": "Combined oxidative phosphorylation deficiency 9" + }, + { + "baseId": "39602|39603|39604|39605|39606|39607|251148|251149|251150|251151|251152|251154|251156|251157|251158|251159|251160|251161|251162|251163|251164|251165|251166|251167|251168|290588|290594|290595|290602|290606|290608|290612|290615|290616|290625|290627|290628|290632|290635|290636|290638|290640|290641|290644|290645|290652|290653|290663|290666|290670|290675|291470|291471|291472|291474|291476|291482|291488|291501|291505|291508|291510|291516|291517|291519|291521|291527|291543|291545|291548|291554|291555|291564|291565|291572|291589|291592|291606|291607|291608|294727|294728|294729|294731|294746|294747|294751|294752|294753|294763|294766|294767|294770|294772|294775|294776|294777|294780|294781|294782|294785|294787|295094|295095|295099|295106|295113|295114|295130|295131|295137|295144|295147|295148|295160|295162|295166|295167|295168|295170|295177|295181|295183|295189|295190|424503|424504|452427|452434|452436|452648|452656|452660|452662|452741|452742|452983|452985|452987|519310|519353|519554|631453|631454|631455|631456|631457|681803|686429|691422|691423|691424|695204|828187|828188|859272|889037|889038|889039|889040|889041|889042|889043|889044|889045|889046|889047|889048|889049|889050|889051|889052|889053|889054|889055|889056|889057|889058|889059|889060|889061|889062|889063|889064|889065|889066|889067|889068|889069|889070|889071|889072|889073|889074|889075|889076|889077|889078|889079|889080|889081|889082|889083|889084|889085|889086|889087|889088|889089|889090|889091|889092|889093|889094|889095|891650|891651|891652|891653|923218|931962|931963|943571|970768|970769", + "text": "Cataract 18" + }, + { + "baseId": "39612|39613|135311|135312|247698|247699|247700|255744|255745|325373|325377|325378|325386|325388|325390|325391|325393|325399|341512|343012|343015|343019|343027|343031|343039|429811|429813|620542|620876|875306|875307|875308|875309|875310|875311|875312|875313|875314|875315|875316|875317|875318|966042", + "text": "Meier-Gorlin syndrome 3" + }, + { + "baseId": "39614|227500", + "text": "Dentin dysplasia, type I, with extreme microdontia and misshapen teeth" + }, + { + "baseId": "39615|133856|208092|236721|236722|404816", + "text": "Spastic paraplegia 52, autosomal recessive" + }, + { + "baseId": "39616|39617|39618|133849|133850|133851|373594|465261|622907", + "text": "Spastic paraplegia 51, autosomal recessive" + }, + { + "baseId": "39619|39620|166193|167564|167565|167566|167567|167568|167569|167570|167572|167574|167575|206568|206709|215180|221075|238125|238126|238127|364370|390789|390791|404883|427625|427626|427629|446986|447057|447094|447100|447102|447141|515015|515043|515044|556842|556847|556980|556982|578704|578715|626641|626642|626643|626644|626645|626646|626647|626648|626649|626650|683272|683275|685548|816519|818839|822560|822561|822562|822563|920121|920122|921589|921590|929977|941393|964124|964642", + "text": "Spastic paraplegia 47, autosomal recessive" + }, + { + "baseId": "39635|39636|48439", + "text": "Focal facial dermal dysplasia 3, Setleis type" + }, + { + "baseId": "39638|39639|439997|439998|439999|440000|440001|508923", + "text": "Acne inversa, familial, 2" + }, + { + "baseId": "39640|39641|309343|309344|309348|309349|309355|309356|309360|309363|309365|309366|309373|309374|314031|314038|314049|314051|314056|314057|314058|319931|319940|319942|319953|319954|319962|319964|319966|319968|319972|319976|320458|320477|320478|320481|320484|320488|320492|751932|767613|865326|865327|865328|865329|865330|865331|865332|865333|865334|865335|865336|865337|865338|865339|865340|865341|865342|865343|919253|920277", + "text": "Hypomagnesemia 6, renal" + }, + { + "baseId": "39647|39648|39649|241215|241216|241217|398390|398393|398398|398481|398483|398786|398928|398929|398932|461722|461724|461730|462036|462037|462352|462355|462356|526528|526529|526539|526546|526550|526585|526587|526806|526808|527096|527100|527102|527108|564940|564947|564949|566223|566226|566234|566236|567575|571048|571050|626211|640525|640526|640527|640528|640529|640530|640531|640532|640533|652248|684269|685295|685296|687832|687833|687835|687836|687837|687838|693120|791184|839173|839174|839175|839176|839177|839178|839179|839180|839181|839182|839183|839184|839185|839186|839187|839188|839189|851468|852648|926418|926419|926420|926421|926422|926423|926424|926425|926426|935862|935863|935864|935865|935866|935867|935868|935869|935870|935871|935872|935873|935874|947735|947736|947737|947738|947739|947740|947741|947742|947743|947744|947745|947746|947747|956719|956720|956721|965927", + "text": "Mosaic variegated aneuploidy syndrome 2" + }, + { + "baseId": "39650|39651", + "text": "Stuttering, familial persistent 2" + }, + { + "baseId": "39653|39654|39655|96881|106505|185944|185946|185947|185948|244133|244134|244135|246742|590322|682339|815882|919641|919642", + "text": "Spondylocostal dysostosis 5" + }, + { + "baseId": "39653|550633", + "text": "Spondylocostal dysostosis 4, autosomal recessive" + }, + { + "baseId": "39656|39657|142217|142218|142219|142220|142221|210890|287089|287090|287092|287098|287831|287833|287835|290246|290270|290289|290292|290650|290654|290655|290656|290659|406004|481431|481432|518651|650821|792731|885381|885382|885383|885384|885385|885386|885387|922899", + "text": "Multiple mitochondrial dysfunctions syndrome 1" + }, + { + "baseId": "39660|39661|177355|246965|251473|251474|251475|251476|251477|251478|251479|251480|251484|271921|293387|293391|293392|293399|293401|293402|293403|293407|293411|293413|294760|294761|294762|294789|294794|294795|294796|294799|298350|298351|298360|298363|298384|298399|298413|298420|298421|298423|298424|298427|298430|298431|298432|298433|298434|298437|298475|406435|428297|453405|453413|609539|698513|709360|781951|795582|799353|890632|890633|890634|890635|890636|890637|890638|890639|890640|890641|890642|890643|890644|890645|890646|890647|890648|890649|890650|890651|890652|890653|891790|891791|891792|918892|920203", + "text": "Cranioectodermal dysplasia 4" + }, + { + "baseId": "39660|39660|132652|132653|132655|132656|132656|132656|132657|132657|177355|187261|187262|192783|246965|251476|251477|251478|251479|251480|251482|251484|260901|264179|270911|270914|270916|271921|293387|293399|294789|294794|294797|298351|298359|298399|298421|298427|298431|298432|406435|428297|434039|440088|440088|440089|453405|453413|453414|453420|453529|519919|520178|549469|553585|559832|609538|609541|620163|632194|632195|632196|632197|679660|698513|698514|698515|698516|709360|730288|730289|734629|748938|759518|764459|775076|777509|781951|795582|799353|829124|829125|829126|829127|829128|829129|829130|829131|829132|829133|829134|829135|829136|829137|829138|829139|829140|829141|829142|851122|851502|851604|890634|890635|890649|891790|923506|932317|932318|932319|932320|932321|932322|932323|932324|932325|932326|932327|932328|939966|943978|943979|943980|943981|943982|943983|943984|943985|943986|943987|943988|943989|943990|943991|943992|953769|953770|953771|953772|953773|953774|953775|959725|960538|962702", + "text": "Senior-Loken syndrome 8" + }, + { + "baseId": "39660|39660|39662|132656|132657|177355|177355|192783|246965|246965|251473|251474|251475|251476|251476|251477|251477|251478|251478|251479|251479|251480|251480|251482|251484|251484|264179|270911|270914|270916|271921|271921|293387|293387|293391|293392|293399|293399|293401|293402|293403|293407|293411|293413|294760|294761|294762|294789|294789|294794|294794|294795|294796|294797|294799|298350|298351|298351|298359|298360|298363|298384|298399|298399|298413|298420|298421|298421|298423|298424|298427|298427|298430|298431|298431|298432|298432|298433|298434|298437|298475|406435|406435|428297|428297|434039|440088|440089|453405|453405|453413|453413|453414|453420|453529|519919|520178|549469|553585|559832|609538|609539|609541|632194|632195|632196|632197|679660|698513|698513|698514|698515|698516|709360|709360|730288|730289|734629|748938|759518|764459|775076|777509|781951|781951|790470|790471|790472|795582|795582|799353|799353|829124|829125|829126|829127|829128|829129|829130|829131|829132|829133|829134|829135|829136|829137|829138|829139|829140|829141|829142|851122|851502|851604|890632|890633|890634|890634|890635|890635|890636|890637|890638|890639|890640|890641|890642|890643|890644|890645|890646|890647|890648|890649|890649|890650|890651|890652|890653|891790|891790|891791|891792|923506|932317|932318|932319|932320|932321|932322|932323|932324|932325|932326|932327|932328|939966|943978|943979|943980|943981|943982|943983|943984|943985|943986|943987|943988|943989|943990|943991|943992|953769|953770|953771|953772|953773|953774|953775|959725|960538", + "text": "Asphyxiating thoracic dystrophy 5" + }, + { + "baseId": "39663|39664|132653|132654|132655|132656|440088|613995|906240|962700|962701", + "text": "Nephronophthisis 13" + }, + { + "baseId": "39665|190173|190174|590649|590650", + "text": "46,XX sex reversal 2" + }, + { + "baseId": "39666|39666|195021|268151|280332|282024|447763|491179|515893|557285|557287|627740|627741|732350|732351|746394|746395|761844|761845|761847|761848|761849|780663|780665|788736|823865|823866|823867|823868|864265|918628|930460|930461|930462|940630|941910|941911|952383|952384|952385|952386|977534", + "text": "Retinitis pigmentosa 59" + }, + { + "baseId": "39666|442804|481158|798469", + "text": "Developmental delay and seizures with or without movement abnormalities" + }, + { + "baseId": "39667|39668|39669|39670|39671|39672|190540|265794|266619|267431|268766|272464|464536|464788|464792|464793|512114|528584|539056|585538|588796|642984|642985|642986|642987|714311|714312|714313|714314|714315|714316|714317|927252|927253|927254|948779|957366|957367", + "text": "Temtamy preaxial brachydactyly syndrome" + }, + { + "baseId": "39673", + "text": "Inflammatory bowel disease 19" + }, + { + "baseId": "39674", + "text": "Psychomotor retardation, epilepsy, and craniofacial dysmorphism" + }, + { + "baseId": "39676", + "text": "Hypotrichosis 3" + }, + { + "baseId": "39677|134297|134298|134299|134300|140727|194135|199988|199990|199993|206940|237339|250535|250541|265568|284537|284542|284559|285223|285225|285239|285240|287384|287386|287393|287394|287416|287418|287420|287646|450317|450597|541822|541824|541833|541877|557834|560817|655413|655415|686141|691025|691026|707996|719576|719577|743846|743850|747240|759194|762852|762855|762856|781139|825645|825650|977662|977663|977664|977665|977666|977667|977668|977669|977670|977671|977672|977673|977674|977675", + "text": "Carbamoyl-phosphate synthase I deficiency" + }, + { + "baseId": "39683|39684|39685|418799|553307|553308|553309|553310|553311|590445", + "text": "Microphthalmia with limb anomalies" + }, + { + "baseId": "39689|134611|790599", + "text": "Progressive myoclonic epilepsy, X-linked" + }, + { + "baseId": "39689|39690|135477|135478|135584|195065|195792|196090|196091|205736|266036|271784|292676|426664|440828|440830|440831|452753|452754|452757|453115|453116|453118|453130|453456|453465|453483|519654|519656|519657|519661|519858|519859|519861|519882|559134|559666|559668|559670|561795|561799|563290|563297|631768|631769|631770|631771|631772|631773|631774|631775|631776|631777|631778|691479|709013|720621|734268|734269|748500|764140|764143|777390|781795|793041|828532|828533|828534|828535|828536|828537|828538|828539|828540|828541|828542|828543|828544|828545|828546|828547|889600|923336|923337|923338|923339|923340|923341|923342|923343|932076|932077|932078|932079|932080|943692|943693|943694|943695|943696|943697|943698|953583|953584|953585|953586", + "text": "Epilepsy, progressive myoclonic 5" + }, + { + "baseId": "39696|344030|344036|578569|622469|805033|805034|882364|919885|919886|919887|919888|919889|919890|919891|961349", + "text": "Peripheral neuropathy, myopathy, hoarseness, and hearing loss" + }, + { + "baseId": "39697", + "text": "SCOTT SYNDROME" + }, + { + "baseId": "39698|362439|789787|800380", + "text": "Ovarian dysgenesis 3" + }, + { + "baseId": "39699|39700|39701|39702|39703|302860|302862|302866|302868|302872|302874|302877|302881|302883|302889|302890|302897|302901|302902|302907|302908|302915|302917|302927|302932|302936|302937|306199|306200|306201|306202|306210|306219|306221|306224|306225|306226|306230|306232|306233|306235|306236|306242|306243|306244|306249|310938|310939|310948|310953|310956|310968|310970|310972|310974|310977|310980|310982|310984|311186|311187|311188|311190|311194|311195|311197|311198|311199|311200|311214|311215|311216|311236|311238|311241|311242|369441|389799|550165|578458|620262|700040|710978|898028|898029|898030|898031|898032|898033|898034|898035|898036|898037|898038|898039|898040|898041|898042|898043|898044|898045|898046|898047|898048|898049|898050|898051|898052|898053|898054|898055|898056|898057|898058|898059|898060|898061|898062|900359|900360", + "text": "Diaphanospondylodysostosis" + }, + { + "baseId": "39704|39705|39706|39707|101649|101650|190887|254031|254032|254033|254034|254035|254036|254037|254039|254043|254044|254045|254046|254047|254049|254052|254053|254056|313128|313133|313135|313137|313141|313143|313146|313150|313160|313163|313164|313167|313168|313172|313178|313179|313182|313183|313184|313193|313194|313195|319179|319184|319185|319186|319188|319189|319198|319205|319212|319214|319243|319253|319259|319262|319263|319265|319266|319271|319272|319273|319279|319280|319288|319289|319294|319313|319316|319317|319321|319322|319329|319330|319333|319334|325328|325329|325340|325350|325356|325359|325385|325392|325402|325403|325406|325411|325417|325418|325420|325422|325435|325436|325440|325441|325451|325452|325458|325462|325463|325471|325472|325476|326193|326213|326221|326230|326231|326234|326239|326240|326250|326254|326260|326261|326262|326330|326332|326336|326337|326342|326343|326353|326367|326371|326385|326393|326397|326398|326400|326402|326403|326404|326409|326411|408301|525984|526130|526482|620392|639817|687719|692953|692955|692956|692958|692960|695498|701650|701651|737844|752525|783907|801875|838106|838107|838108|867477|867478|867479|867480|867481|867482|867483|867484|867485|867486|867487|867488|867489|867490|867491|867492|867493|867494|867495|867496|867497|867498|867499|867500|867501|867502|867503|867504|867505|867506|867507|867508|867509|867510|867511|867512|867513|867514|867515|867516|867517|867518|867519|867520|867521|867522|867523|867524|867525|867526|867527|867528|867529|867530|867531|867532|867533|867534|867535|868616|868617|868618|919335|919336|919337|919338|926152|956425", + "text": "Holoprosencephaly 11" + }, + { + "baseId": "39710|39711|39712|39713|39714|39715|176585|497313|609025|615828", + "text": "Deafness, autosomal recessive 15" + }, + { + "baseId": "39719|39720|39721|39722|39724|191603|191843|192154|193798|195033|215396|215773|253486|253487|253488|253489|253490|253491|253492|253493|253494|253495|253496|253497|253498|265787|269506|270661|270789|273529|273864|307776|307777|307778|307780|307784|307785|307789|307791|307792|307794|307796|307797|307802|307803|307804|307811|307813|307815|307816|307817|307818|307822|307825|307828|307829|307831|307833|307834|307835|307836|307840|307841|307846|307856|307857|307859|307866|307868|307872|307875|312015|312016|312017|312028|312029|312034|312050|312051|312052|312062|312064|312071|312073|312100|312105|312106|312107|312108|312109|312122|312123|312141|312142|312147|312148|312154|312163|312164|312165|317697|317702|317705|317706|317717|317719|317723|317732|317736|317738|317740|317741|317742|317746|317750|317760|317771|317772|317775|317777|317781|317782|317784|317785|317786|317787|317789|317790|317800|317812|317813|317815|317824|317825|317830|317834|317838|317841|317843|317845|317846|317847|318175|318188|318193|318196|318200|318203|318205|318209|318225|318228|318253|318255|318265|318266|318270|318272|318275|318279|318281|318290|318291|318292|318293|318299|318302|318303|318313|318317|318323|318337|318345|318348|318350|318352|413788|489126|619923|700935|711907|723507|723509|723512|737074|737075|737079|737082|744368|751630|783387|783389|901596|901597|901598|901599|901600|901601|901602|901603|901604|901605|901606|901607|901608|901609|901610|901611|901612|901613|901614|901615|901616|901617|901618|901619|901620|901621|901622|901623|901624|901625|901626|901627|901628|901629|901630|901631|901632|901633|901634|901635|901636|901637|901638|901639|901640|901641|901642|901643|901644|901645|901646|901647|901648|901649|901650|901651|901652|901653|901654|901655|901656|901657|901658|901659|901660|901661|901662|901663|901664|901665|901666|901667|901668|901669|901670|901671|901672|901673|901674|901675|901676|901677|903359|903360|903361|903362|903363|903364|903365|903366|903367|903368|903369", + "text": "Oculotrichoanal syndrome" + }, + { + "baseId": "39723|39724|413788|539021|624854", + "text": "Trigonocephaly 2" + }, + { + "baseId": "39724|136471|136486|223621|223643|223651|263398|485734", + "text": "Rieger syndrome" + }, + { + "baseId": "39725|39726|39727|39728|39729|39730|335393|335394|335400|335405|335406|335408|335416|335418|335423|335431|335435|335446|345219|345221|345223|345225|345230|345231|345232|345233|345234|345236|345237|345240|345246|345247|345248|345249|345252|345253|345255|349954|349955|349960|349961|349963|349964|349967|349970|349973|349975|349978|350969|350970|350972|350974|350976|350979|350980|350984|791983|798765|802231|886087|886088|886089|886090|886091|886092|886093|886094|886095|886096|886097|886098|886099|886100|886101|886102|886103|886104|886105|886106|886107|886108|886109|886110", + "text": "Multicentric carpo-tarsal osteolysis with or without nephropathy" + }, + { + "baseId": "39731", + "text": "Body mass index quantitative trait locus 10" + }, + { + "baseId": "39739|106652|106653|106654|106655|135519|135520|135521|135521|135523|135523|135524|135524|135525|135526|205130|206757|206757|206758|206758|206761|206762|206762|237363|237363|270346|271432|271432|271433|279279|279280|279285|279300|279308|279309|279310|279311|279318|279318|279324|279324|279325|279329|279329|279330|279490|279496|279497|279498|279502|279506|279507|279508|279508|279512|279512|279536|279545|279545|279549|280797|280798|280805|280809|280810|280822|280823|280825|280825|280830|280835|280837|280839|280846|280847|280850|280851|280855|280863|280872|280876|280877|280887|280887|280897|280909|280913|280924|280924|280939|280940|280956|280957|364904|364905|425336|427709|427712|447500|447631|447634|447736|447738|447738|447743|447746|498243|515542|515555|556790|557153|558347|558347|627378|627379|627380|650679|690489|690489|690490|696474|696475|696475|696477|777096|780569|801776|823482|823483|823484|863719|863720|863721|863722|863723|863724|863725|863726|863727|863728|863729|863730|863731|863732|863733|863734|863735|863736|863737|863738|863739|863740|863741|863742|863743|863744|863745|863746|863747|863748|863749|863750|863751|863752|863753|863754|863755|863756|863757|863758|863759|865128|865129|865130|921848|930328|930329|940619|941768|941769|941770", + "text": "Warburg micro syndrome 2" + }, + { + "baseId": "39742|39743|204984|208454|430064|469373|469783|532238|532440|574759|647284|647285|715990|776619|846896|846897|846898|846899|928719|928720|928721|938451|938452|940458|950534|950535|958472|958473", + "text": "Microcephaly, epilepsy, and diabetes syndrome" + }, + { + "baseId": "39744|39745|39746|45283|45287|142040|142041|142043|142044|142045|142050|142056|142057|142059|142063|142133|142134|142135|169185|169187|169188|169191|169192|169192|169194|190107|197845|197869|197871|197875|197877|197879|208245|208245|255476|267763|271568|271568|272268|324357|324358|324368|324372|324381|324385|324391|324429|324435|324455|324464|333894|333896|333906|333918|333920|333921|333964|333965|333966|333969|333978|333980|333982|333983|333984|333987|340665|340672|340673|340679|340680|340683|340685|340687|340692|340721|340724|340727|340730|340731|342053|342059|342063|342072|342073|342074|342081|342085|342098|342107|342108|342116|342135|342137|342138|342139|342140|342151|342155|342156|342159|342160|342164|342168|373941|429772|429774|429774|614127|620536|788894|874751|874752|874753|874754|874755|874757|874758|874759|874760|874771|874773|874774|874775|874776|874777|874778|874779|874780|874781|874782|874783|874784|874785|874786|874787|874788|874789|876626", + "text": "Lissencephaly 4" + }, + { + "baseId": "39747", + "text": "Amyloidosis, primary localized cutaneous, 2" + }, + { + "baseId": "39748|191078|194482|265506|268417|270851|305785|309776|309787|315028|315031|315179|315180|380289|407449|426674|428861|438397|438397|457948|457951|458520|458526|458595|458993|458997|523697|524006|524009|524009|524015|524280|524288|563056|568068|568083|568086|588769|637372|637373|637374|637375|637376|637377|637378|637379|637380|637381|637382|637383|700637|723173|766887|819978|819979|819980|819981|835022|835023|835024|835025|851700|852154|925254|925255|925256|925257|934412|934413|934414|934415|946172|946173|946174|955495|955496|955497|955498|959901", + "text": "Febrile seizures, familial, 11" + }, + { + "baseId": "39748|88281|134293|134294|134295|189029|194482|265506|268417|270851|305779|305785|305787|309773|309775|309776|309787|309796|309797|309802|315026|315028|315031|315032|315156|315169|315179|315180|315183|315184|380289|380290|430963|438397|438397|458595|524009|524280|637382|700636|899964|899965|899966|899967|899968|899969|899970|899971|899972|899973|899974|899975|900512", + "text": "Epilepsy, familial temporal lobe, 5" + }, + { + "baseId": "39753|39754|39755|496287|496724|553254|553255|615788|683136", + "text": "Deafness, autosomal recessive 42" + }, + { + "baseId": "39760|99438|168891|168893|168894|168895|168897|181433|194340|195924|207936|223671|254410|316026|316027|316028|316032|323289|323290|323292|323293|329378|330555|330564|359929|461608|620428|622897|622898|656105|684285|818295|869272|869273|869274|869275|869276|869277|869278|869279|869280|869281|869282", + "text": "Joubert syndrome 13" + }, + { + "baseId": "39764|153815|153816|153817|237630", + "text": "Persistent hyperplastic primary vitreous, autosomal recessive" + }, + { + "baseId": "39766|172105|172106|172107|172108|172109|208802|430568|430587|486777|508942|508943|508944|508945|512971|512972|622485|681833|681834|792083|799021|939350|966020|966021|966022|980972", + "text": "Microcephaly and chorioretinopathy, autosomal recessive, 1" + }, + { + "baseId": "39767", + "text": "Mental retardation, autosomal recessive 14" + }, + { + "baseId": "39768|39769|39770|39771|39772|200982|227298|300242|300247|300248|302996|302997|302998|302999|303004|303005|307453|307456|307459|307682|362145|538997|622977|622979|622982|622986|735682|765702|896359|896360|896361|896362|896363|896364|896365|896366|896367|896368|896369|896370", + "text": "Treacher Collins syndrome 3" + }, + { + "baseId": "39768|39772|200977|200978|200979|200980|200981|200982|207417|227298|264263|264293|269895|307675|362145|362145|362146|513282|538997|622974|622975|622976|622977|622978|622979|622980|622981|622982|622982|622983|622984|622985|622986|622987|622988", + "text": "Leukodystrophy, hypomyelinating, 11" + }, + { + "baseId": "39773|176085|222386|230536|241874|241875|255045|330332|399596|399716|400252|400253|463472|464471|528712|566608|642675|642676|642677|642678|652421|652875|730950|936705|940312", + "text": "Ciliary dyskinesia, primary, 16" + }, + { + "baseId": "39779|172136|227466|538358|623274", + "text": "Myopia, high, with cataract and vitreoretinal degeneration" + }, + { + "baseId": "39780|39781|39782|39784|39785|39786|39787|39788|140021|140022|205750|205751|211298|211299|211299|211306|211307|211307|211309|211313|211313|302005|302006|302009|302013|302014|302016|302021|302022|305180|305185|305194|305195|305198|305202|305203|305204|309887|309889|309890|309893|309893|309896|309896|309901|309916|309916|309917|309918|309923|309924|309925|309926|309929|309931|309936|309948|309964|309970|310017|310025|368952|369244|369512|456416|457000|481332|481333|501886|514551|522605|608809|635793|692166|692166|695352|722363|788812|792767|861593|897558|897559|897560|897561|897562|897563|897564|897565|897566|897567|897568|897569|897570|897571|897572|897573|897574|897575|897576|897577|897578|897579|900320|900321|924716|975666|975667", + "text": "Sengers syndrome" + }, + { + "baseId": "39792|39793|39794|98153|98154|246951|513539|513540|918847|918848|961767", + "text": "D-Glyceric aciduria" + }, + { + "baseId": "39795|39796|39797|39799|39801|134154|237292|252622|269511|301846|301867|301869|301878|301888|301889|301891|301900|301903|301908|301912|301913|301919|301922|301926|301927|301928|301933|301934|301935|301936|301944|305030|305033|305034|305037|305038|305049|305053|305054|305055|309684|309692|309694|309695|309696|309699|309700|309701|309708|309711|309720|309721|309731|309740|309846|309850|309851|309852|309856|309859|309860|309861|309862|309863|309864|309865|309871|368934|370844|425732|456415|502216|523062|566495|582788|620250|620251|635786|679755|692159|750428|779424|782794|833143|833144|833145|833146|833147|833148|852068|897422|897423|897424|897425|897426|897427|897428|897429|897430|897431|897432|897433|897434|897435|897436|897437|897438|897439|897440|897441|897442|897443|897444|897445|897446|897447|897448|897449|897450|897451|897452|897453|897454|897455|897456|897457|897458|897459|897460|897461|897462|897463|897464|897465|897466|897467|897468|897469|897470|897471|897472|897473|897474|897475|897476|897477|897478|900313|924704|924705|933690|933691|933692|933693|945431|945432|945433|945434|945435|945436|945437|945438|945439|955061|959836|959837", + "text": "Joubert syndrome 15" + }, + { + "baseId": "39798|39858", + "text": "Joubert syndrome 12/15, digenic" + }, + { + "baseId": "39799|237292|301935|301936|970299|970300|970301|970302", + "text": "Familial Autism Spectrum Disorder" + }, + { + "baseId": "39806", + "text": "N-acetylaspartate deficiency" + }, + { + "baseId": "39814|39815|195743|490784|514230|626133|918792", + "text": "Adams-Oliver syndrome 1" + }, + { + "baseId": "39816|39817|49853|165508|200697|205258|231715|231716|231717|231719|240443|240444|240445|240446|244017|244538|244539|244541|244542|244543|263456|272799|306822|306826|306829|306833|306840|310978|310981|310983|310994|310995|310996|311000|311002|311003|311005|311010|316571|316589|316590|316591|316598|316601|316602|316603|316608|316611|316612|316613|316614|316621|316624|316850|316861|316870|316871|316894|316898|369704|369710|369722|370196|370463|372107|372108|396391|396393|396675|396677|396678|396760|396797|396801|396811|396813|397024|397029|407530|444345|444346|458208|458210|458214|458215|458216|458217|458747|458750|458756|458757|458760|458829|458831|458836|458838|459250|459254|459260|459264|502116|502592|502875|511782|523906|523911|523921|523927|523936|523937|524209|524214|524219|524220|524226|524473|524474|524476|524479|524481|524532|524534|524535|524538|524542|524544|524548|524551|524556|524558|524561|562703|562705|562706|562708|562710|562712|562717|563390|563394|563404|565440|565445|565446|565448|565453|565454|565459|565467|565473|565478|565480|565484|568433|568447|568450|568461|568465|576252|590030|637647|637648|637649|637650|637651|637652|637653|637654|637655|637656|637657|637658|637659|637660|637661|637662|637663|637664|637665|637666|637667|637668|637669|637670|637671|637672|651817|651893|651898|652096|655882|683023|684039|684040|684041|687354|687355|687357|687359|687360|687361|692572|695412|711763|767096|767098|767099|775473|783264|783265|783266|787775|790833|796215|799563|820047|820048|820049|835436|835437|835438|835439|835440|835441|835442|835443|835444|835445|835446|835447|835448|835449|835450|835451|835452|835453|835454|835455|835456|852469|852470|852475|901083|901084|901085|901086|901087|901088|901089|901090|901091|901092|901093|901094|901095|901096|901097|901098|903314|903315|903316|919184|920261|925349|925350|925351|925352|925353|925354|925355|925356|925357|925358|925359|925360|925361|934529|934530|934531|934532|934533|940922|946341|946342|946343|946344|946345|946346|946347|955676|955677|959908", + "text": "Charcot-Marie-Tooth disease type 2P" + }, + { + "baseId": "39818|135979|206755", + "text": "Spinocerebellar ataxia, autosomal recessive 11" + }, + { + "baseId": "39836|44147|44148|44149|44150|44151|143267|143268|143269|578552|861163", + "text": "Amelogenesis imperfecta type 1G" + }, + { + "baseId": "39842|39843|39844|39845|39846|46862|46965|46966|46967|46968|46969|279258|279262|279263|279268|279270|279277|279477|279483|279485|280782|280783|280787|280788|280789|280791|280793|280794|280820|280821|280831|280832|280833|280834|280838|280841|280843|362420|362421|362422|362423|863702|863703|863704|863705|863706|863707|863708|863709|863710|863711|863712|863713|863714|863715|863716|863717|863718|865127", + "text": "Hypermanganesemia with dystonia 1" + }, + { + "baseId": "39847|39848|39849|205298|205782|208317|214453|214544|225887|243899|244063|245211|260139|260140|260852|264747|264749|264823|264834|264988|361224|362386|362427|362428|363822|363862|374759|375638|409796|409797|415528|422128|424663|424664|429885|429886|429890|434655|434772|438585|439224|439351|441931|441932|441933|445668|466885|466891|481321|482111|482112|492706|512246|512868|514705|530704|535707|536193|536480|536920|538460|538461|550370|550627|552191|552192|552193|552194|552196|552197|567551|568458|568459|569821|574206|574209|577580|577582|577583|577585|577586|577589|577595|577598|577599|577601|580058|580076|580078|580086|580112|580113|580133|580150|580155|580159|580165|580171|580174|580193|580197|580219|580220|580225|580232|580252|580259|580398|580400|580410|580421|580457|611404|611422|613052|621983|622437|645134|645135|645136|645137|645138|645139|645140|645141|645142|653892|654139|677454|678946|682827|682828|682829|682830|688676|688677|690150|693953|693955|693956|693958|693959|693960|693961|693962|693964|693965|693966|693968|693969|695708|695709|703898|703900|703901|703904|703905|703907|703909|703910|703914|703915|703917|703920|726943|731122|740510|740521|755550|755556|776216|785437|785439|798706|798707|798708|800673|805107|805904|805909|805916|816487|822122|822123|844491|844492|844493|844494|844495|844496|844497|858573|860317|919684|919685|919686|919687|919688|919689|919690|919691|928006|928007|928008|928009|937661|937662|949631|949632|949633|949634|949635|949636|949637|957922|957923|957924|960859|961626|961627|963812|963821|964458|964459|964460|964461|964462|967281|969771|969773|969863|969864|969865|969866|969867|969868|969869|969870|969871|969872|969873|969874|969876|969879|971058|972972|976668|980957", + "text": "KBG syndrome" + }, + { + "baseId": "39850|39851|140827|193688|203812|203814|203815|203817|203818|203819|336301|336304|336307|336310|336312|336318|336320|336322|336324|336325|336328|336329|336335|336336|336345|336348|336351|336357|336369|336371|336372|336378|336379|336383|346019|346027|346031|346032|346034|346035|346039|346045|346049|346051|346057|346063|346066|346068|346083|346085|346091|346092|346093|346098|346102|350384|350385|350388|350389|350392|350393|350396|350397|350400|350401|350404|350405|350407|350408|350413|350419|350420|350423|350424|350427|350428|350430|350431|351417|351418|351424|351425|351427|351430|351431|351434|351435|351438|351439|351442|351443|351446|351447|351450|351451|351454|351455|351457|351460|351461|351464|351465|351466|351467|351470|677069|886508|886509|886510|886511|886512|886513|886514|886515|886516|886517|886518|886519|886520|886521|886522|886523|886524|886525|886526|886527|886528|886529|886530|886531|886532|886533|886534|886535|886536|886537|886538|886539|886540|886541|886542|886543|886544|886545|886546|887483|887484|887485", + "text": "Neuronal ceroid lipofuscinosis 4B" + }, + { + "baseId": "39852|134861|267315|268160|270798|373810|445468|513354|513354|919601|919602", + "text": "Hydrolethalus syndrome 2" + }, + { + "baseId": "39852|39853|39854|39855|39856|102542|102544|102545|102546|102548|102549|102550|134850|134851|134852|134853|134854|134855|134856|134857|134858|134859|134860|134861|134862|134863|134864|141762|191111|191735|192158|192159|192160|192162|193763|195060|195061|205178|214348|214349|247107|255392|255399|255402|255403|255405|255406|255410|266613|267315|268160|268160|268262|268897|270531|270798|270798|271178|271632|271873|323529|323530|323534|323539|323540|323547|323548|323550|323552|323555|323559|323561|323566|333276|333280|333286|333288|333290|333293|340040|340042|340044|340049|340052|340053|340055|340058|340059|340062|341458|341460|341461|341463|341464|341467|341468|341471|341485|341488|341492|341500|341501|341502|360982|373810|417073|417074|418968|418969|418970|445468|464622|465404|465405|490888|505304|505511|513354|529134|529136|529144|529152|529156|529460|567339|567340|567345|569211|573582|578521|587931|587933|587935|620532|643620|643621|643622|643623|643624|643625|643626|643627|726331|785055|842797|842798|874268|874269|874270|874271|874272|874273|874274|874275|874276|874277|874278|874279|874280|874281|874282|874283|874284|874285|874286|874287|874288|874289|874290|874291|874292|874293|874294|874295|874296|874297|874298|874299|874300|874301|874302|874303|874304|874305|874306|874307|874308|876589|876590|876591|906265|927457|927458|937114|937115|949057|957538|957539|957540|971031", + "text": "Acrocallosal syndrome" + }, + { + "baseId": "39857|39858", + "text": "Joubert syndrome 12" + }, + { + "baseId": "39860|253624|253627|253628|253629|253630|253631|253632|309015|309024|309026|309027|309034|309035|309039|309041|313773|313775|313776|313777|313789|313791|313793|319587|319589|319598|319599|319601|319602|320178|320182|320183|320184|320186|320190|320191|414474|418978|418979|459962|459963|460369|524827|525060|701100|788838|836460|859771|902603|902604|902605|902606|902607|902608|902609|902610|902611|902612|902613|902614|902615|902616|902617|902618|902619|902620|902621|902622|902623|902624|902625|902626|902627|902628|902629|903450|903451|903452|903453|946740|946741|946742", + "text": "Cataract, autosomal recessive congenital 4" + }, + { + "baseId": "39861|39862|40202|40203|40204|227089|227090|227091|227092|229569|252658|252660|265509|266184|266559|266777|266778|267640|267980|269065|270280|270502|270682|270697|272428|272684|273113|273215|274406|274760|302296|302297|302299|302314|302318|302320|302323|302325|302328|302331|302334|305507|305508|305522|305526|305543|305551|305553|305555|310338|310339|310342|310348|310367|310369|310440|310446|310467|310468|310470|310473|310479|310480|310481|369415|371078|456511|456903|489480|491727|522506|522739|523163|523166|561425|561429|561432|566632|584394|585772|622886|635958|635959|635960|635961|635962|635963|635964|692189|692191|710895|736043|766198|790714|793208|818720|833385|833386|833387|833388|852343|897736|897737|897738|897739|897740|897742|897743|897744|897745|897746|897747|897748|897749|897750|897751|897752|897753|897754|897755|919096|924775|933799|933800|945540|945541|959844", + "text": "Limb-girdle muscular dystrophy, type 1E" + }, + { + "baseId": "39864|190006|190007|190008|222802|222803|243312|243314|243315|243316|403200|403206|403211|403250|403253|403661|403688|403694|403700|468536|468544|468546|468548|469089|469905|469907|469922|469924|470510|470521|487993|487994|487995|488044|508917|508918|510797|532763|532774|532830|532831|570278|570580|570583|570589|572286|572966|574902|574904|647785|647786|647787|647788|647789|647790|647791|647792|647793|647794|653156|653608|688973|688974|688977|694349|821243|847410|847411|847412|928891|938610|938611|938612|940476|950709|950710|950711|958566|958567", + "text": "Familial hypertrophic cardiomyopathy 19" + }, + { + "baseId": "39865|39866|39867|48498|153784|169195|169201|194444|227374|255679|255681|325059|325070|334737|341193|342699|342729|553393|609008|622910|677449|791582|919643|971045|971046|976664", + "text": "Floating-Harbor syndrome" + }, + { + "baseId": "39870|97545|428830", + "text": "Hereditary spastic paraplegia 18" + }, + { + "baseId": "39871|39872|39873|39874|39875|39876|39878|373928|426773|429180|626204|919331", + "text": "Megalencephalic leukoencephalopathy with subcortical cysts 2a" + }, + { + "baseId": "39876|39878|426773|429180|513438|626204", + "text": "Megalencephalic leukoencephalopathy with subcortical cysts 2b, remitting, with or without mental retardation" + }, + { + "baseId": "39877", + "text": "Megalencephalic leukoencephalopathy with subcortical cysts 2b, remitting, with mental retardation" + }, + { + "baseId": "39883|39884|39885|167471|205154", + "text": "Hydatidiform mole, recurrent, 2" + }, + { + "baseId": "39886|792750", + "text": "Kahrizi syndrome" + }, + { + "baseId": "39888|257138|672017|800408", + "text": "Meckel syndrome, type 10" + }, + { + "baseId": "39892|39892|39893|39894|102031|102032|136094|136095|136096|136097|136098|136099|136100|136101|136102|136103|136104|136105|136106|136107|191595|191595|192692|192938|195418|212121|221116|221117|238377|250324|250329|250331|250336|250337|265473|282446|282447|282453|282454|282464|282465|282470|282471|282473|282474|282491|282492|283108|283111|283114|283117|283127|283133|283141|283158|283161|283162|284705|284706|284708|284714|284715|284722|284724|284726|284730|284731|284733|284745|284746|284755|284762|284765|284766|285173|285174|285177|285178|285180|285181|285182|285186|285187|285191|285192|365832|440055|449094|486832|498877|499070|516603|628800|683414|685891|685895|685896|690860|881322|881323|881324|881325|881326|881327|881328|881329|881330|881331|881332|881333|881334|881335|881336|881337|881338|881339|881340|881341|881342|881343|881344|881345|881346|881347|882822|882823|906279|980839", + "text": "Nephronophthisis 12" + }, + { + "baseId": "39892|39895|39896|102031|102032|136094|136095|136096|136097|136098|136099|136100|136101|136102|136103|136104|136105|136106|136107|191595|191595|192692|192938|195418|212121|221116|221117|238377|250324|250329|250331|250336|250337|265473|282446|282447|282453|282454|282464|282465|282470|282471|282473|282474|282491|282492|283108|283111|283114|283117|283127|283133|283141|283158|283161|283162|284705|284706|284708|284714|284715|284722|284724|284726|284730|284731|284733|284745|284746|284755|284762|284765|284766|285173|285174|285177|285178|285180|285181|285182|285186|285187|285191|285192|365832|440054|440055|449094|498877|499070|516603|536039|628800|683414|685891|685895|685896|690860|881322|881323|881324|881325|881326|881327|881328|881329|881330|881331|881332|881333|881334|881335|881336|881337|881338|881339|881340|881341|881342|881343|881344|881345|881346|881347|882822|882823", + "text": "Asphyxiating thoracic dystrophy 4" + }, + { + "baseId": "39897|39898|139916|139917|139918|139919|139920|139921|139923|139925|139927|139928|139931|139932|139933|139934|139935|152754|152756|199785|211222|211225|211227|211228|211232|211233|211238|211239|211242|236962|266174|300333|300334|300337|300352|300354|300361|300364|300368|300369|300380|300383|303153|303154|303155|303157|303161|303162|303163|303164|303176|303177|303180|303181|303217|307653|307665|307670|307684|307686|307688|307693|307695|307697|307699|307704|307710|307720|307725|307731|307732|307734|307823|307830|307832|307847|307848|307855|307858|307870|307877|307881|307882|307892|307896|307903|307906|370455|481329|502003|612277|620233|620790|620791|744284|798575|861605|896464|896465|896466|896467|896468|896469|896470|896471|896472|896473|896474|896475|896476|896477|896478|896479|896480|896481|896482|896483|896484|896485|896486|896487|896488|896489|896490|896491|896492|896493|896494|896495|896496|896497|900235|900236|919033|919034", + "text": "Combined oxidative phosphorylation deficiency 8" + }, + { + "baseId": "39897|152754", + "text": "Pulmonary hypoplasia" + }, + { + "baseId": "39909|39910|39911|39912|39913|134177|134178|134179|257714|257716|338604|338607|338609|338612|338617|338620|348178|348181|348182|348184|351843|351844|351846|351847|351849|351851|351853|351855|352686|352687|352688|352689|352690|377616|378767|378861|379872|379875|411043|411044|411046|442355|446429|470345|470346|470354|471601|471604|471986|534370|534844|538502|552235|572031|572036|572040|572044|573420|573424|574153|574156|574157|620697|622486|622487|626288|626289|649547|649548|649549|649550|649551|649552|649553|649554|653607|677067|694752|695884|695886|706020|773639|773641|821473|849452|849453|849454|849455|849456|849457|849458|849459|849460|852447|891510|891511|891512|891513|891857|891858|891859|891860|919960|929511|939365|951532|951533|959129|959130|959131|959132", + "text": "Megaconial type congenital muscular dystrophy" + }, + { + "baseId": "39917|39918|39919|39920|39921|39922|246971|251616|251618|251619|251621|251622|251623|251624|251625|251626|251627|251628|251629|251630|251631|251632|251634|251635|251636|251637|251638|295112|295116|295119|295124|295126|295127|295138|295140|295141|295142|295149|295150|295154|295155|295156|295161|295163|295164|295165|295172|295173|295180|295182|295192|295193|295196|295202|295204|296949|296950|296951|296952|296953|296963|296964|296965|296966|296967|296973|296986|296989|296990|296992|296999|297002|297003|297005|297006|300567|300568|300580|300611|300612|300615|300632|300633|300648|300654|300656|300657|300658|300667|300671|300673|300732|300736|300744|300745|300749|300753|300754|300755|300770|300772|300784|300785|300794|300796|300797|300798|300827|300831|300832|300833|300835|300836|300837|300839|300852|300853|300855|300856|361182|367859|367867|368122|368209|368210|368212|368229|368231|369509|369514|406612|406615|406617|421517|454199|454201|454205|454336|454340|454342|454351|454367|454686|454687|454690|454692|454694|454701|454986|454990|455000|501112|501116|501118|501255|501265|513275|520451|520452|520460|520468|520472|520475|520685|520688|520697|520699|520700|520873|520875|520876|520968|520969|520971|559985|559987|559989|559991|559993|559995|559997|559999|560100|560102|560104|560106|562591|564447|564451|564455|564456|632913|632914|632915|632916|632917|632918|632919|632920|632921|632922|632923|632924|632925|632926|632927|632928|632929|632930|632931|632932|632933|632934|632935|632936|632937|632938|632939|632940|632941|632942|632943|651272|691668|691669|698758|709604|721191|734825|749180|749183|759434|764780|775129|782116|795614|829896|829897|829898|829899|829900|829901|829902|829903|829904|829905|829906|829907|829908|829909|829910|829911|829912|829913|829914|829915|829916|829917|829918|829919|829920|829921|829922|829923|829924|829925|829926|829927|829928|829929|829930|892749|892750|892751|892752|892753|892754|892755|892756|892757|892758|892759|892760|892761|892762|892763|892764|892765|892766|892767|892768|892769|892770|892771|892772|892773|892774|892775|892776|892777|892778|892779|892780|892781|892782|892783|892784|892785|892786|892787|892788|892789|892790|892791|892792|892793|892794|892795|892796|892797|892798|892799|892800|892801|892802|892803|892804|892805|892806|892807|892808|892809|892810|892811|892812|892813|892814|892815|896023|896024|896025|923740|923741|923742|923743|923744|923745|923746|923747|932598|932599|932600|932601|932602|932603|932604|944273|944274|944275|944276|944277|944278|944279|944280|944281|953933|953934|953935|960546|960547", + "text": "Myopathy, areflexia, respiratory distress, and dysphagia, early-onset" + }, + { + "baseId": "39922|39923|39924", + "text": "Myopathy, areflexia, respiratory distress, and dysphagia, early-onset, mild variant" + }, + { + "baseId": "39932|39933|49675|49676|227399|256465|256466|256467|256469|256470|256472|330255|330258|330265|330270|340470|346186|346187|346188|346191|346192|346193|347496|347502|347503|347504|347505|347506|353464|353465|610686|614445|620610|626262|741061|756161|756165|878650|878651|878652|878653|878654|878655|878656|878657|878658|878659|880607|880608|880609|961978|961979", + "text": "Dyskeratosis congenita, autosomal recessive, 3" + }, + { + "baseId": "39938|185674|185675|185676|964237", + "text": "Adermatoglyphia" + }, + { + "baseId": "39938|185677", + "text": "Basan syndrome" + }, + { + "baseId": "39939|142661|142663|142664|211878|211880|211881|211882|211884|211885|243995|333468|333469|333470|333476|333477|333479|343501|343507|343512|343513|343520|348832|348833|348834|348836|348837|348838|348839|349792|349794|349796|349801|349802|349805|349812|426310|506729|550087|656559|881939|881940|881941|881942|881943|881944|881945|881946|881947|881948|881949|881950|881951|881952|881953|881954|881955|881956|881957|881958|881959|881960|882881|966903", + "text": "Hyperuricemia, pulmonary hypertension, renal failure, and alkalosis" + }, + { + "baseId": "39940|53289|195622|535663|535664|535665|535666|535667|535668|535670|535671|857673|857674|904068|919249|946767|980585", + "text": "Deafness, autosomal recessive 57" + }, + { + "baseId": "39942|39943|39944|39945|39946|48067|48068|272982|344968|345036|349823|349827|349831|350853|415680|425230|481326|481339|539097|552222|578573|589812|621639|621640|653897|679354|682834|791976|791977|798762|858750|964530|971142", + "text": "Bohring-Opitz syndrome" + }, + { + "baseId": "39943", + "text": "dystrophia" + }, + { + "baseId": "39952|39953|39954|39955|39956|39957|39958|39959|39960|39961|39962|48734|48735|208426|403099|403203|430041|469210|469548|469555|469574|532116|532462|553396|571808|619927|647035|647048|791846|791847|961980|980850|980851|980852", + "text": "Cerebroretinal microangiopathy with calcifications and cysts 1" + }, + { + "baseId": "39957|48734|430035", + "text": "Cerebroretinal microangiopathy with calcifications and cysts" + }, + { + "baseId": "39964", + "text": "EDICT syndrome" + }, + { + "baseId": "39975|434881|539076", + "text": "Epiphyseal dysplasia, multiple, 7" + }, + { + "baseId": "39977|210904|226292|287256|287947|287948|287950|290538|290556|290565|366784|804904|805142|885458|885459|885460", + "text": "Multiple mitochondrial dysfunctions syndrome 2" + }, + { + "baseId": "39978|39979|39980|39981|39982|39983|186225|208254|208255|208257|213187|213188|213191|236954|236960|242400|242402|242403|242405|242406|242407|242408|242409|242410|242411|242415|242417|242418|242420|242421|242422|242424|242426|242427|242430|242432|242433|242435|242436|255707|255708|255709|255711|255712|255713|255714|255715|255716|255717|255718|255719|255722|255724|255725|255727|255728|255729|255730|255731|255732|255733|255734|255735|255736|325256|325266|325275|325280|325281|325283|325299|325301|325303|325312|325313|325315|325330|325332|334909|334911|334912|334914|334915|334916|334920|334921|334928|334930|334937|334940|334947|334950|334951|334957|334959|341359|341361|341362|341365|341370|341380|341389|341391|341392|341398|341400|341410|341415|341416|341418|341426|341428|341429|341430|341432|341433|341438|341444|341445|341450|342868|342874|342875|342876|342877|342888|342891|342896|342897|342899|342906|342910|342917|342920|342923|342927|342931|342932|342934|342939|342940|342944|342945|342946|342947|342950|401138|401151|401159|401170|401173|401176|401177|401199|401203|401240|401632|401652|401654|401676|401679|401894|401905|401911|409623|429791|429792|429793|429794|465680|465686|465722|465727|466381|466421|466427|466442|466462|466652|466653|466698|466702|529942|529977|530056|530072|530076|530266|530517|552189|568130|570280|612163|614424|614425|620540|620541|682684|688571|690140|693865|797319|816338|843808|843830|843838|843844|843846|843849|843855|843859|875217|875218|875219|875220|875221|875222|875223|875224|875225|875226|875227|875228|875229|875230|875231|875232|875233|875234|875235|875236|875237|875238|875239|875240|875241|875242|875243|875244|875245|875246|875247|875248|875249|875250|875251|875252|875253|875254|875255|875256|875257|875258|876664|876665|876666|876667|917931|917934|917938|919647|921524", + "text": "Fanconi anemia, complementation group P" + }, + { + "baseId": "39994", + "text": "Primary microcephaly type 2" + }, + { + "baseId": "40000|40001|40002|76527|99368|99368|177078|178154|178155|178155|192629|192629|192964|192964|195918|195918|206935|206935|206937|250472|265346|265346|268034|268034|270910|271977|272560|272806|272806|273025|283724|283727|283728|283734|283736|283737|283738|283749|283751|283752|283757|283759|283764|283770|283771|283776|283778|283779|283780|283785|283796|283796|283799|283799|283805|283805|283810|283820|283823|283824|283829|283830|284401|284404|284407|284414|284419|284430|284431|284432|284437|284437|284438|284448|284457|284458|284459|284461|284463|284463|284471|284471|286403|286415|286416|286421|286422|286439|286446|286447|286448|286450|286451|286452|286470|286472|286472|286474|286475|286476|286478|286481|286484|286484|286777|286778|286779|286781|286786|286793|286794|286810|286816|286828|286841|286842|286855|286857|286857|286858|286865|286866|286876|286878|286881|286881|427983|427983|434042|434042|434044|434045|440064|450229|450242|450242|450249|450362|450490|481531|488635|488637|490556|517497|557806|557810|557857|559023|559522|559525|609305|609306|629268|629274|629274|629275|697232|697236|719510|730096|747156|762776|825542|825545|825548|825553|883131|883132|883133|883134|883135|883136|883137|883138|883139|883140|883141|883142|883143|883144|883145|883146|883147|883148|883149|883150|883151|883152|883153|883154|883155|883156|883157|883158|883159|883160|883161|883162|883163|883164|883165|883166|883167|883168|883169|883170|883171|883172|883173|883174|883175|883176|883177|883178|887229|887230|887231|887232|922506|931069|952874|959619", + "text": "Short rib polydactyly syndrome 5" + }, + { + "baseId": "40003|40004|153785|153786|188068|508939|508940|512883|792020|980970", + "text": "Van den Ende-Gupta syndrome" + }, + { + "baseId": "40006|40007|40008|40009|40010|40011|166231", + "text": "Treacher Collins syndrome 2" + }, + { + "baseId": "40012|40013|553269", + "text": "Deafness, autosomal recessive 74" + }, + { + "baseId": "40014|40015|40016|40017|133835|133836|133837|171737|171738|171739|207076|207077|251139|290298|290299|290309|290315|290317|290321|290324|290328|290343|290367|291143|291144|291170|291180|291181|291183|291184|291185|291194|291241|294449|294450|294457|294459|294460|294463|294470|294492|294832|294833|294850|294862|294866|294868|294876|294877|294884|294886|294937|294940|428190|428192|440792|653860|734068|748270|798534|888890|888891|888892|888893|888894|888895|888896|888897|888898|888899|888900|888901|888902|888903|888904|888905|888906|888907|888908|888929|891642|891643|891644|918831|964816", + "text": "Spinocerebellar ataxia, autosomal recessive 10" + }, + { + "baseId": "40018|40019|40020|134751|134752|134753|134754|134755|134756|134757|134758|255321|255322|255323|255324|255325|255329|255330|323055|323056|323063|323065|323066|323067|323072|323076|323077|332658|332661|332665|332666|332668|332669|332684|332687|332689|332692|339671|339674|339675|339680|339685|339692|341029|341034|341041|341042|341051|341054|341055|341058|341061|341062|341063|341064|341065|341068|341069|374263|374659|374672|409320|429713|445402|464417|464418|464425|465024|465026|465036|465040|465047|465215|465218|465222|465224|465225|465237|465239|465287|465289|465298|465303|465308|465310|491142|504911|505119|505331|513348|528961|528965|528979|528986|528988|529078|529084|529086|529088|529394|529396|529400|529557|529559|529566|529569|550779|567218|567220|569039|569040|569545|569546|569548|569549|569556|569557|573459|573461|573466|573470|573473|573474|573478|643459|643460|643461|643462|643463|643464|643465|643466|643467|643468|643469|643470|643471|643472|643473|643474|693712|693713|693717|693718|693719|703293|726207|739746|754629|770289|784985|784987|822100|842577|842578|842579|842580|842581|842582|842583|842584|842585|842586|842587|842588|873965|873966|873967|873968|873969|873970|873971|873972|873973|873974|873975|873976|873977|873978|873979|905864|919589|919590|927391|927392|927393|927394|927395|927396|937004|937005|937006|937007|937008|948959|948960|948961|948962|948963|948964|957466|957467|957468", + "text": "Nemaline myopathy 6" + }, + { + "baseId": "40021|48299|48300|206591|206592|206593|206594|206595|206596|206597|206598|206599|206600|404722|404723|404724|404725|404726|404727|404728|404729|404730|404731|404732|404733|404734|404735|404736|404737|404738|404739|404740|404741|404742|576249|576250|615848|624866|791843|800076|858575", + "text": "Moyamoya disease 2" + }, + { + "baseId": "40024|40025|76858|76902|76906|173761|173762|173763|173764|173902|173903|173904|177350|192069|221373|221374|221375|229033|229034|229037|229038|239119|239121|239122|239125|251017|251018|251022|251028|251031|251032|251035|289566|289567|289570|289571|289577|289579|289591|289593|289595|289596|290329|290332|290335|290338|290339|290342|290345|290348|293431|293441|293442|293445|293446|293867|293869|293871|293872|293875|293885|293890|293894|293896|293906|293921|293923|293927|293937|293954|293958|393446|406156|451975|451978|452209|452465|519198|519209|620122|654318|683569|686375|851283|857587|857602|888432|888433|888434|888435|888436|888437|888438|888439|888440|888441|888442|888443|888444|888445|888446|888447|888448|888449|888450|888451|888452|891622|891623|891624|943428|966791|983459", + "text": "Ciliary dyskinesia, primary, 14" + }, + { + "baseId": "40026|40027|40028|40029|76838|101777|150295|176025|176505|176506|176507|176508|176509|176510|176511|176512|176642|176643|176644|176645|176646|176647|176648|176649|177031|192684|194478|213408|213410|213412|213414|213415|213416|222746|230794|230796|230797|230798|230799|230800|230801|230802|230803|243000|243002|243003|243006|243009|243010|243014|256479|256485|256487|256497|256498|256499|256502|256504|256505|256509|256510|256513|272779|330388|330391|330392|330393|330399|330401|330403|330404|330406|330407|330412|330416|330417|330419|330420|330427|330429|330436|330437|340601|340602|340604|340612|340613|340614|340617|340622|340624|340627|340630|340632|346299|346303|347637|347638|347641|347645|347646|347650|347657|347661|347664|402584|402587|402628|403197|467613|468452|531891|531942|569832|572372|574658|620612|646846|646850|684722|791838|846361|878720|878721|878722|878723|878724|878725|878726|878727|878728|878729|878730|878731|878732|878733|878734|878735|878736|878737|878738|878739|878740|878741|878742|878743|880612|880613|880614|919775|919776|919777|919778|919779|980960", + "text": "Ciliary dyskinesia, primary, 15" + }, + { + "baseId": "40030|40031|108179|108180|108181|108182|141469|141470|141475|141476|211793|211794|211795|211798|327330|327345|327347|327351|327355|337150|337153|337164|337175|337188|343391|343393|343394|343395|343399|343400|343405|343408|343418|343422|344977|344980|344982|344989|344994|344995|344996|344998|345001|345002|345006|345011|345014|429927|430988|505786|505800|538464|861665|876821|876822|876823|876824|876825|876826|876827|876828|876829|876830|876831|876832|876833|876834|876835|876836|876837|876838|876839|876840|876841|876842|876843|876844|880465|880466|970416|970417", + "text": "Mitochondrial complex III deficiency, nuclear type 2" + }, + { + "baseId": "40033|131814|131815|131817|131818|131819|131820|131821|131823|131824|131826|131827|195422|195423|195754|207939|207940|207940|207941|214317|254446|254450|316256|316266|316267|316270|316272|316273|316274|323604|323608|323609|323618|323621|323623|323629|329742|329750|329751|329753|329759|329767|329768|329769|331021|331022|331024|331025|331028|331039|353213|684311|869457|869458|869459|869460|869461|869462|869463|869464|869465|869466|869467|869468|869469|869470|869471|869472|869473|869474|869475|869476|869477|869478|869479|872201|872202|872203|872204|906259|919418", + "text": "Meckel syndrome type 8" + }, + { + "baseId": "40033|620840", + "text": "TCTN2-Related Disorders" + }, + { + "baseId": "40034|40035|40036|40037|78958|152875|177134|177837|181302|181303|181304|181305|181306|181307|195757|254019|312776|312788|312808|318775|318789|318827|321281|321298|324884|324913|324926|324932|325706|325720|325762|325768|325780|330507|337017|450807|517958|695124|695125|697405|825950|903677|918752|931200", + "text": "Microphthalmia, isolated 6" + }, + { + "baseId": "40034|551565", + "text": "Nanophthalmos" + }, + { + "baseId": "40039", + "text": "Kel6 antigen" + }, + { + "baseId": "40040|107250|107251|107252|107253|107254|107255", + "text": "Spermatogenic failure 9" + }, + { + "baseId": "40042|40043|51191|136030|136031|188077|188078|226978|334927|334929|334941|334945|334949|334952|334958|334961|334962|334964|334970|334975|334983|344785|344788|344789|344790|344791|344797|344798|344800|349741|349742|349743|349744|349747|349749|349751|349755|349758|349761|349763|350747|350750|350751|350754|350755|350758|350759|350761|350763|350765|350767|350769|442270|442277|442278|486279|514103|626281|716885|716889|728576|757405|791973|793821|885894|885895|885896|885897|885898|885899|885900|885901|885902|885903|885904|885905|885906|885907|885908|885909|885910|885911|887429|887430|887431|887432|887433|887434", + "text": "Spinocerebellar ataxia 35" + }, + { + "baseId": "40044", + "text": "Cardioencephalomyopathy, fatal infantile, due to cytochrome c oxidase deficiency 3" + }, + { + "baseId": "40045", + "text": "Autosomal recessive congenital ichthyosis 8" + }, + { + "baseId": "40046|792004|919927|919928|919929|920420|964544", + "text": "Retinitis pigmentosa 60" + }, + { + "baseId": "40047|40048|40049|172127|305524|305527|305532|305536|305538|305539|305540|305545|305559|305572|305573|305581|305586|305593|305599|305610|305614|305617|309408|309417|309420|309422|309433|309436|309441|309454|309461|309469|309473|309475|309481|309487|309490|309491|309500|309509|309518|309519|309520|309522|309524|314730|314733|314734|314753|314755|314763|314771|314774|314776|314787|314788|314792|314794|314800|314802|314806|314809|314811|314815|314817|314818|314824|314826|314829|314830|314834|314835|314838|314842|314843|314847|314852|314853|314857|314858|314871|314877|314880|314883|314884|314888|314893|314903|620806|899782|899783|899784|899785|899786|899787|899788|899789|899790|899791|899792|899793|899794|899795|899796|899797|899798|899799|899800|899801|899802|899803|899804|899805|899806|899807|899808|899809|899810|899811|899812|899813|899814|899815|899816|899817|899818|899819|899820|899821|899822|899823|899824|899825|899826|899827|899828|899829|899830|899831|899832|899833|899834|899835|899836|899837|899838|899839|899840|899841|899842|899843|899844|899845|899846|899847|899848|899849|899850|899851|899852|899853|899854", + "text": "Chondrodysplasia with joint dislocations, GPAPP type" + }, + { + "baseId": "40050|40052|40053|40054|48678|246995|455135|455137|455141|455278|455764|456004|521278|521280|521287|521288|521289|521290|521560|521571|521645|521652|521656|521658|521898|521910|560401|560515|560521|563279|563285|563289|563296|565261|589602|634468|634469|634470|634471|634472|634473|634474|634475|699245|699246|710113|710115|710116|710117|721641|721642|721643|735331|735332|749736|749737|765422|765424|765425|787310|799433|831370|831371|831372|831373|831374|831375|831376|831377|831378|831379|831380|831381|831382|924206|924207|924208|924209|924210|924211|933114|933115|933116|933117|933118|940023|944841|944842|944843|944844|944845|954317|954318|954319|980455|981513", + "text": "Immunodeficiency-centromeric instability-facial anomalies syndrome 2" + }, + { + "baseId": "40055|620862", + "text": "Cranioectodermal dysplasia 3" + }, + { + "baseId": "40058", + "text": "Oculomaxillofacial dysostosis" + }, + { + "baseId": "40059|40060|256098|256099|256100|256103|327647|337455|337456|343708|343713|345174|375803|684664|876991|876992|876993|876994|876995", + "text": "Meckel syndrome, type 9" + }, + { + "baseId": "40059|214358|249229|249231|645399", + "text": "Joubert syndrome 27" + }, + { + "baseId": "40061|40062|919877|919878|980966", + "text": "Three M syndrome 3" + }, + { + "baseId": "40063|131983|131984", + "text": "Spinocerebellar ataxia 36" + }, + { + "baseId": "40064|40065|40066|918658|918659", + "text": "Myopia 21, autosomal dominant" + }, + { + "baseId": "40067|40068|40069|40070|40071|40072|192504|292157|293603|293604|293607|293611|296910|296913|296918|406392|500449|500455|891719|891720|891721|918873|969116|969117|969118", + "text": "Brittle cornea syndrome 2" + }, + { + "baseId": "40073|40074|40075|40076|40077|40078|40079|251174|251175|251176|251177|251179|251180|251181|251182|251183|251184|251188|251189|271697|290778|290787|290792|290794|290798|290799|290801|290803|290812|290813|290814|290815|290818|290819|290824|290830|290831|290834|290839|290840|290843|290849|291691|291693|291694|291695|291696|291698|291701|291702|291706|291710|291717|291718|291721|291734|291736|291746|291762|291764|291767|291768|291769|291773|291775|291794|291795|291796|291798|291799|294914|294915|294916|294917|294918|294921|294925|294926|294931|294936|294953|294954|294955|294956|294958|294961|294962|294964|294965|294982|294983|295288|295290|295291|295294|295303|295305|295309|295312|295316|295318|295322|295324|295340|295341|295353|295355|295357|295358|295359|404766|428194|428195|428196|428197|428198|615339|615340|615341|615342|615343|615344|615345|615347|615348|698125|698126|708881|708886|708887|720475|720480|734089|744063|748301|777411|792738|801075|801076|801077|889145|889146|889147|889148|889149|889150|889151|889152|889153|889154|889155|889156|889157|889158|889159|889160|889161|889162|889163|889164|889165|889166|889167|889168|889169|889170|889171|889172|889173|889174|889175|889176|889178|889179|889180|889181|889182|889183|889184|889185|889186|889187|889188|889189|889190|889191|889192|889193|889194|889195|889196|889197|889198|889199|889200|889201|889202|889203|889204|889205|889206|889207|889208|889209|889210|889211|889212|889213|889214|889215|889216|889217|889218|889219|889220|889221|889222|891664|891665|891666|891667|891668|891669|891670|891671|891672|970385|970386|970387|970388|970389|970390|970391|970392|970393|970394|970395|970396|970397|970398|970399|970400|970401|970402|970403|970404|970405|970406", + "text": "Gray platelet syndrome" + }, + { + "baseId": "40080|40081|40082|40083|238667|238668|238669|238670|238671|238672|238673|238674|238675|238676|238677|238678|238679|238680|238681|238682|238683|238684|238685|238686|238687|238688|238689|238690|238691|238692|238693|238694|248479|250655|250656|250657|285216|285217|285220|285224|285226|285230|285244|285249|285251|285261|285896|285899|285900|285901|285902|285904|285905|288181|288182|288194|288196|288210|288212|288213|288214|288215|288216|288221|288232|288612|288613|288618|288621|288622|288625|288627|288632|288649|288650|288653|288654|288655|391466|391549|392394|392398|392402|392408|392412|392417|392421|392423|392425|392429|392432|392436|392439|392445|392446|392450|392459|392469|392471|392490|392496|392501|392502|392512|392513|392523|392525|392528|392532|392533|392537|392542|392545|392549|392552|392558|392561|392568|392570|392573|392596|392598|392600|392602|392605|392615|392616|392618|392628|392632|392634|392637|392639|392640|392647|392649|392651|392660|392746|392750|392754|392758|392761|392766|392770|392776|392786|392787|392789|392798|392799|392801|392803|392806|392812|392816|392818|392822|405655|448392|450406|450410|450413|450415|450418|450424|450427|450432|450448|450449|450451|450453|450455|450460|450465|450466|450468|450472|450475|450555|450556|450559|450560|450564|450566|450568|450572|450574|450576|450577|450580|450587|450589|450590|450592|450593|450600|450611|450616|450618|450627|450632|450634|450637|450685|450687|450690|450716|450722|450726|450736|450738|450739|450748|450753|450754|450756|450757|450765|450768|450771|450773|450774|450776|450777|450779|450780|450781|450787|450790|450793|450795|450797|450798|450799|450800|450801|450804|450805|450821|450828|450829|450832|450834|450836|450838|450841|450843|450848|450850|450853|516316|517760|517765|517771|517779|517782|517784|517787|517788|517789|517791|517804|517811|517813|517816|517819|517825|517837|517844|517850|517851|517855|517860|517862|517863|517864|517866|517868|517870|517871|517872|517873|517875|517877|517878|517881|517882|517884|517885|517888|517889|517891|517893|517896|517897|517898|517900|517903|517904|517905|517906|517909|517912|517917|517918|517920|517922|517923|517927|517929|517930|517931|517934|517937|517941|517943|517951|517959|517960|517966|517967|517971|517973|517979|517986|517988|517994|517996|518003|518014|518016|518020|518023|518025|557487|557904|557906|557908|557910|557912|557914|557916|557918|557920|557922|557924|557926|557928|557930|557932|557934|557936|557957|557959|557961|557963|557965|557967|557969|557971|557973|557975|557977|557979|557981|557983|557985|557987|557989|557991|557993|557995|557997|558082|558305|558639|559135|559139|559141|559143|559145|559147|559149|559151|559153|559155|559157|559159|559161|559163|559165|559167|559169|559171|559173|559175|561045|561046|561053|561056|561058|561060|561067|561071|561072|561078|561080|561085|578509|629539|629540|629541|629542|629543|629544|629545|629546|629547|629548|629549|629550|629551|629552|629553|629554|629555|629556|629557|629558|629559|629560|629561|629562|629563|629564|629565|629566|629567|629568|629569|629570|629571|629572|629573|629574|629575|629576|629577|629578|629579|629580|629581|629582|629583|629584|629585|629586|629587|629588|629589|629590|629591|629592|629593|629594|629595|629596|629597|629598|629599|629600|629601|629603|629604|629605|629606|629607|629608|629609|629610|629611|629612|629613|629614|629615|629616|629617|629618|650733|650734|650752|650801|650809|650815|650943|650957|650968|650980|650982|650985|683489|683490|686150|686151|686152|686154|686155|686156|686157|686158|686159|686161|686162|689708|689709|689710|691036|691037|691040|691041|691042|691043|691044|691046|691048|691049|691050|695119|695120|695123|697387|697389|708104|719701|719702|733255|747405|763040|763051|777260|781236|781237|781238|819136|819137|819138|819139|819140|819141|819142|825844|825845|825846|825847|825848|825849|825850|825851|825852|825853|825854|825855|825856|825857|825858|825859|825860|825861|825862|825863|825864|825865|825866|825867|825868|825869|825870|825871|825872|825873|825874|825875|825876|825877|825878|825879|825880|825881|825882|825883|825884|825885|825886|825887|825888|825889|825890|825891|825892|825893|825894|825895|825896|825897|825898|825899|825900|825901|825902|825903|825904|825905|825906|825907|825908|825909|825910|825911|825912|825913|825914|825915|825916|825917|825918|825919|825920|825921|825922|825923|825924|825925|825926|825927|825928|825929|825930|825931|825932|825933|825934|825935|825936|825937|825938|825939|825940|825941|825942|825943|825944|825945|825946|825947|825948|825949|850843|850890|850892|851160|851162|851408|884099|884100|884101|884102|884103|884104|884105|884106|884107|884108|884109|884110|884111|884112|884113|884114|884115|884116|884117|884118|884119|884120|887311|887312|887313|887314|922604|922605|922606|922607|922608|922609|922610|922611|922612|922613|922614|922615|922616|922617|922618|922619|922620|922621|922622|922623|922624|922625|922626|922627|922628|922629|922630|922631|922632|922633|922634|922635|922636|931176|931177|931178|931179|931180|931181|931182|931183|931184|931185|931186|931187|931188|931189|931190|931191|931192|931193|931194|931195|931196|931197|931198|931199|939879|940702|942643|942644|942645|942646|942647|942648|942649|942650|942651|942652|942653|942654|942655|942656|942657|942658|942659|942660|942661|942662|942663|942664|942665|942666|942667|942668|942669|942670|942671|942672|942673|942674|952966|952967|952968|952969|952970|952971|952972|952973|952974|952975|952976|952977|952978|952979|952980|952981|952982|952983|960466|970354", + "text": "Perlman syndrome" + }, + { + "baseId": "40085|70470|70471|181457|198640|247457|247458|247459|256756|256758|256759|490706|508908|508909|508910|508911|508912|508913|508914|508915|508916|512962|513656|514257|514258|576183|971111", + "text": "Adams-Oliver syndrome 2" + }, + { + "baseId": "40086|226420|610419|789716|789717|789718|789719", + "text": "Spinal muscular atrophy with congenital bone fractures 2" + }, + { + "baseId": "40090|48234|48235|523487|562062|562513|564811|564813|578468|622387|636782|636783|636784|636785|636786|700470|700471|700472|700473|700474|711396|711397|711399|711400|722927|730551|751000|777694|777917|779288|779491|834294|834295|834296|834297|834298|852419|925069|945913|945914|945915|955341|955342", + "text": "5-Oxoprolinase deficiency" + }, + { + "baseId": "40091|40092|40093|40094|40095|40096|40097|40098|40099|200311|374719|374728|374736|375617|375620|375624|375625|375764|375770|375783|375793|375794|375801|377904|377918|409782|433338|433339|505665|505666|505854|506592|506600|506607|530701|568454|568456|570613|574204|589790|645124|645125|645126|645127|645128|645129|645130|645131|645132|645133|656394|656396|715199|715200|715201|715202|726924|726925|726927|726928|726929|726930|726931|726932|726933|731119|740502|744896|744945|745259|755536|755538|755540|755541|755542|771183|771184|771185|771186|771187|771188|771189|771190|771191|771192|771193|771194|771195|771196|771198|776412|776598|779853|785430|785431|785432|785433|787943|788103|820913|844482|844483|844484|844485|844486|844487|844488|844489|844490|852133|919683|928004|928005|937658|937659|937660|949627|949628|949629|949630|957914|957915|957916|957917|957918|957919|957920|957921|965208", + "text": "Combined malonic and methylmalonic aciduria" + }, + { + "baseId": "40100|40101|40102|40103|40104|40105|40106|40123|49664|49665|49666|49667|49668|49669|49670|49671|49672|49673|135446|199793|207793|207794|269442|311174|311179|311180|311183|311184|311185|311189|311192|311202|311204|311205|311206|311221|311222|311226|311227|311232|311233|311239|316493|316494|316495|316518|316519|316520|316527|316529|316531|316534|316547|316548|316549|316551|316552|316564|316565|316572|316576|316579|316580|316619|316628|316629|316631|316632|316633|316639|316640|316641|316647|316650|316651|316654|316655|316656|322564|322567|322574|322575|322576|322588|322596|322597|322601|322603|322606|322611|322613|322617|322619|322626|322627|322631|322634|322657|322660|322662|322663|322665|322667|322669|323315|323316|323322|323342|323357|323359|323361|323362|323364|323365|323371|323372|323373|323378|323380|323381|323384|323390|353154|364113|421801|429128|439194|444659|482006|578488|624053|626348|672363|672364|672365|672366|701442|712482|724081|730712|737611|737614|752285|777881|779482|805020|866305|866306|866307|866308|866309|866310|866311|866312|866313|866314|866315|866316|866317|866318|866319|866320|866321|866322|866323|866324|866325|866326|866327|866328|866329|866330|866331|866332|866333|866334|866335|866336|866337|866338|866339|866340|866341|866342|866343|866344|866345|866346|866347|868507|868508|868509|868510|868511|904249|964258|964843", + "text": "Hypomyelinating leukodystrophy 7" + }, + { + "baseId": "40101|40103|237149|425890|439194|444659|540040|540041|540042|540043|540044|540045|540046|540047|540048|540050|540051|540052|609288|609290|609291|610434|610435|610436|919292|920286", + "text": "Neonatal pseudo-hydrocephalic progeroid syndrome" + }, + { + "baseId": "40107|107259|107260|107261|107262|107263|447720|447952|448067|448069|685680|685681|685682|685683|690567|690568|707256|707258|920146", + "text": "Van der Woude syndrome 2" + }, + { + "baseId": "40109", + "text": "Glucocorticoid therapy, response to" + }, + { + "baseId": "40110|40111|818282|962165|980337|980842", + "text": "Renal dysplasia, cystic, susceptibility to" + }, + { + "baseId": "40112|40113|40114|40115|40115|40304|94434|94435|133985|133987|208565|227688|243317|243318|270629|332963|332964|332966|332967|332970|332984|332992|332997|333000|333006|333014|333023|333024|333025|333030|333034|333036|333038|333040|333042|333043|343108|343109|343110|343124|343125|343138|343147|343152|343155|343156|343163|348467|348469|348470|348473|348475|348481|348485|348486|348489|348492|348493|348495|348498|348500|348501|348505|348507|348508|348510|348512|348513|348516|348517|348526|348527|348534|348536|348537|348541|348542|349591|349592|349595|349597|349598|349599|349600|349603|349604|349607|349608|349611|349612|349615|349618|349619|349620|349621|349622|349623|349624|349627|349628|349629|349631|353491|377370|377571|389176|413502|430169|430170|507240|608843|608844|608864|622455|624086|624087|861656|880212|880213|880214|880215|880216|880217|880218|880219|880220|880221|880222|880223|880224|880225|880226|880227|880228|880229|880230|880231|880232|880233|880234|880235|880236|880237|880238|880239|880240|880241|880242|880243|880244|880245|880246|880247|880248|880249|880250|880251|880252|880253|970136", + "text": "Neurodegeneration with brain iron accumulation 4" + }, + { + "baseId": "40112|40114|40115|40115|94434|133987|181460|243317|243318|270629|349629|377370|377371|468606|469533|470004|470592|506829|532827|573001|608843|647893|653158|688979|821247|847484|847485|847486|928911|958590", + "text": "Spastic paraplegia 43, autosomal recessive" + }, + { + "baseId": "40113", + "text": "Abnormality of iron homeostasis" + }, + { + "baseId": "40114|40115|103972|104114|360907|360961|861284", + "text": "Mental deterioration" + }, + { + "baseId": "40114|40115|513915", + "text": "Adult-onset night blindness" + }, + { + "baseId": "40117|40118|40119|40120|40121|40122|40123|40123|40124|135447|135448|135449|207933|207934|269442|269442|315851|315852|315855|315858|315861|315862|315863|315872|315873|315874|322947|322949|322953|322954|322962|322964|322967|322968|322974|322976|322980|322992|322994|323000|323002|329011|329012|329023|329024|329027|329028|329038|329039|330222|330223|330224|330226|330233|330236|330243|330244|362748|408505|482006|611987|620839|738412|858693|869149|869150|869151|869152|869153|869154|869155|869156|869157|869158|869159|869160|869161|869162|869163|869164|869165|872178|872179|872180|872181|872182|872183|872184|919403|961616", + "text": "Hypomyelinating leukodystrophy 8, with or without oligodontia and/or hypogonadotropic hypogonadism" + }, + { + "baseId": "40123|361949", + "text": "Cerebellar hypoplasia with endosteal sclerosis" + }, + { + "baseId": "40123|311191|311239|316543|316644|322577|322625|322671|322683|322935|323324|323393|330216|861638", + "text": "Pol III-related leukodystrophy" + }, + { + "baseId": "40123|977249|977250", + "text": "POLR3-related leukodystrophy" + }, + { + "baseId": "40126|40127|40128|40133|40134|48351|48355|76664|76665|76666|76666|135484|142516|203303|268829|401080|401127|434539|445560|466359|466360|513169|529903|529907|529988|529990|529993|530240|551738|568080|570100|574025|614422|802010", + "text": "Episodic kinesigenic dyskinesia 1" + }, + { + "baseId": "40128|40129|40131|40132|40133|48352|76666|76666|268829|360996|401127|486761|574025|612309|614422|919638|919639|919640|964450|964451", + "text": "Infantile convulsions and choreoathetosis" + }, + { + "baseId": "40129|40131|48351|76665|76666|102388|135484|135485|142516|142517|142518|177990|192568|194540|203296|203298|203301|203302|203306|203309|203310|203311|203316|242399|264624|265740|268829|360175|360388|375084|375094|401127|401160|401889|409613|409614|441899|445558|445564|445565|464834|465541|465631|466357|466363|466366|466367|466626|491156|505578|529913|529985|530235|530236|530411|568082|568093|569809|570234|570237|570249|574025|574027|579992|621910|644575|644576|644577|644578|644579|644580|644581|644582|644583|644584|644585|644586|644587|644588|652624|652628|653013|688562|688564|693844|785253|822116|822117|843731|843732|843733|843734|843735|843736|843737|843738|843739|843740|843741|843742|843743|843744|843745|843746|843747|852107|852109|860252|860254|927767|927768|927769|927770|927771|927772|927773|937404|937405|937406|937407|937408|937409|937410|937411|949357|949358|949359|949360|949361|949362|949363|949364|949365|949366|957730|957731", + "text": "Paroxysmal kinesigenic dyskinesia" + }, + { + "baseId": "40130|48351|48353|48354|48355|76666|76666|181171|268829|401127|434539|491156|574025|614422|802011|802059|959507|964449", + "text": "Seizures, benign familial infantile, 2" + }, + { + "baseId": "40135|40136|330145|330154|330155|330157|330158|330160|330164|330168|330169|330170|330177|330179|330182|330184|330188|330190|330193|340348|340350|340352|340356|340359|340361|340375|340377|340386|340395|340396|340403|340404|340407|340408|340410|340412|346084|346088|346089|346094|346095|346096|346099|346100|346101|346105|346107|346109|346112|346113|346114|346119|346120|346124|346125|346128|346129|346130|347386|347387|347388|347389|347390|347394|347399|347402|347403|347406|347407|347411|347419|347420|347429|347433|347434|347437|347438|353458|353459|353460|620609|878589|878590|878591|878592|878593|878594|878595|878596|878597|878598|878599|878600|878601|878602|878603|878604|878605|878606|878607|878608|878609|878610|878611|878612|878613|878614|878615|878616|878617|878618|878619|878620|880603|880604|880605|961339", + "text": "Palmoplantar keratoderma-esophageal carcinoma syndrome" + }, + { + "baseId": "40137|40138|40139|40140|40141|136038|136039|136040|190780|193468|194337|195277|206938|227230|250478|250480|250487|250491|270773|271183|283948|283950|283951|283953|283954|283958|284644|284649|284652|284654|284670|284678|284679|284680|284682|284683|284684|286558|286564|286573|286578|286602|286611|286615|286617|286621|286622|286626|287013|287016|287021|287033|287034|287035|287036|287037|287038|287039|359341|366304|366861|517638|557477|622866|622867|629291|629292|650936|679821|691006|697247|697248|707944|707945|719518|733073|774661|825571|825572|825573|825574|825575|825576|825577|825578|825579|825580|825581|825582|825583|825584|850872|851143|883261|883262|883263|883264|883265|883266|883267|883268|883269|883270|883271|883272|883273|883274|883275|883276|883277|883278|883279|883280|883281|883282|883283|883284|883285|883286|883287|883288|883289|883290|883291|883292|883293|883294|883295|883296|883297|883298|883299|883300|883301|883302|883303|883304|883305|883306|883307|883308|883309|887237|922514|922515|939870|942558|942559|942560|942561|952882|952883|952884|959621", + "text": "Joubert syndrome 14" + }, + { + "baseId": "40142|40143|332156|332159|332189|332192|332295|342362|342364|342373|347768|347784|347860|349152|349156|349157|349164|349168|349189|919808", + "text": "Aural atresia, congenital" + }, + { + "baseId": "40144|40145|40146|40147|40148|136032|254215|272201|314355|314362|314363|314369|320972|320989|320990|327038|327043|327054|327055|328129|328130|328139|328142|429245|461210|565866|567346|640172|701827|838574|838575|868150|868151|868152|868153|868154|868155|868156|868157|868158|906286", + "text": "Joubert syndrome 16" + }, + { + "baseId": "40149|40152|404688|404689", + "text": "Retinitis pigmentosa 64" + }, + { + "baseId": "40150|40151|267667|275072|306077|306078|306079|306083|310085|310087|310088|310091|310095|310120|310121|315427|315432|315433|315434|315437|315438|315622|315623|315628|315629|315630|315633|315634|404691|512914|779562|790825|900550|900551|900552|900553|900554|900555|900556|900557|900558|900559|900560|900561|900562|900563|900564|900565|900566|900567|900568|900569|900570|900571|900572|900573|900574|900575|900576|900577|919179", + "text": "Cone-rod dystrophy 16" + }, + { + "baseId": "40151|404690|424182|672021|672022", + "text": "Bardet-Biedl syndrome 21" + }, + { + "baseId": "40153", + "text": "Mitochondrial complex 4 deficiency, nuclear type 10" + }, + { + "baseId": "40155|171290|264319|361337|369134|369715|371086|415099|425749|425750|457147|457151|457332|457335|457749|457750|502005|511708|523071|561565|561571|590729|625974|636123|636124|636125|636126|636127|655793|692224|700030|782853|789119|798585|819870|833557|833558|833559|833560|833561|833562|924839|924840|924841|933867|933868|940876|960632", + "text": "Ehlers-Danlos syndrome with progressive kyphoscoliosis, myopathy, and hearing loss" + }, + { + "baseId": "40156|178317|178318|178319|178320|198630|236952|259858|264325|359788|363971|364240|415096|421631|428700|428701|428702|438349|438745|438779|439021|439158|441074|441075|441076|441076|441077|444115|444116|456461|456645|456647|456649|456651|456653|456661|456663|456665|456668|456669|456670|456671|456673|456675|457046|457049|457051|457053|457055|457058|457062|457064|457070|457071|457083|457085|457087|457094|457095|457106|457109|457111|457244|457247|457253|457254|457254|457257|457263|457265|457265|457274|457280|457281|457287|457290|457299|457672|457679|457681|457687|457689|457691|457694|457696|457697|457698|457701|457705|457715|457716|457722|457724|522563|522564|522568|522572|522574|522587|522590|522594|522619|522621|522852|522852|522854|522863|522869|522872|522873|522874|522878|522935|522938|522947|522948|522951|522956|522962|522975|522983|522985|522987|522996|523003|523004|523006|523009|523013|523016|523232|523239|523240|523243|523248|523250|523253|523256|536732|536733|550154|561485|561501|561504|561510|561514|561521|561529|561532|561534|561536|561538|561541|561542|561869|561871|561875|561888|561889|561891|561893|564226|564238|564242|564244|564249|564253|564258|564264|564270|566742|566750|566755|566761|566763|566767|566777|566786|566790|566792|566793|566797|566798|566800|576967|576968|576971|578457|589838|636052|636053|636054|636055|636056|636057|636058|636059|636060|636061|636062|636063|636064|636065|636066|636067|636068|636069|636070|636071|636072|636073|636074|636075|636076|636077|636078|636079|636080|636081|636082|636083|636084|636085|636086|636087|636088|636089|636090|636091|636092|636093|651613|651673|651675|651690|651699|651717|692217|700016|700017|700018|722464|722465|722466|736089|750577|750578|750581|750585|750586|750587|750589|759541|766217|766218|766219|766220|766222|766224|766226|766228|766229|766230|766233|766234|766235|766236|766238|766239|775257|777682|779329|782841|782843|787657|805540|819863|819864|819865|833500|833501|833502|833503|833504|833505|833506|833507|833508|833509|833510|833511|833512|833513|833514|833515|833516|833517|833518|833519|833520|833521|833522|833523|833524|833525|833526|833527|833528|833529|833530|833531|833532|833533|833534|833535|833536|833537|833538|851148|851150|851640|852082|861065|924818|924819|924820|924821|924822|924823|924824|924825|924826|924827|924828|924829|924830|924831|924832|924833|933839|933840|933841|933842|933843|933844|933845|933846|933847|933848|933849|933850|933851|933852|933853|933854|933855|933856|940074|945589|945590|945591|945592|945593|945594|945595|945596|945597|945598|945599|945600|945601|945602|945603|945604|955130|955131|955132|955133|955134|955135|959851|959852|959853|960631", + "text": "Rigidity and multifocal seizure syndrome, lethal neonatal" + }, + { + "baseId": "40156|226904|259858|264325|415096|441076|444115|457254|457265|522852|590703|965277", + "text": "Neurodevelopmental disorder with cerebellar atrophy and with or without seizures" + }, + { + "baseId": "40157|40158|40159|40160|40161|40162|40163|190984|190986|190987|190988|190989|193454|193455|194331|195602|266811|267422|328288|328292|328298|328302|328303|328305|328306|328313|328315|328316|328318|328319|328320|328324|328327|328336|338148|338154|338157|338168|338169|338178|338185|338186|338188|338194|338195|338197|338198|338200|338202|338206|338208|338213|338217|338228|338229|338237|338241|344285|344286|344291|344293|344294|344297|344298|344299|344302|344303|344306|344307|344308|344314|344318|344319|344327|344328|344329|344331|344341|345700|345708|345711|345713|345715|345721|345722|345727|345728|345738|345739|345744|345748|345750|345751|345752|345753|345754|345755|345760|345761|345764|345765|345766|345768|345771|374952|488915|512954|512955|512956|512957|512958|590325|612106|620583|620584|620585|620586|877324|877325|877326|877327|877328|877329|877330|877331|877332|877333|877334|877335|877336|877337|877338|877339|877340|877341|877342|877343|877344|877345|877346|877347|877348|877349|877350|877351|877352|877353|877354|877355|877356|877357|877358|877359|877360|877361|877362|877363|877364|877365|877366|877367|877368|877369|877370|877371|877372|877373|877374|877375|877376|877377|877378|877379|877380|877381|877382|877383|877384|877385|877386|877387|877388|877389|877390|880510", + "text": "Congenital stationary night blindness, type 1E" + }, + { + "baseId": "40164|788871|791288", + "text": "Mitochondrial complex 1 deficiency, nuclear type 23" + }, + { + "baseId": "40175|227354|445157|504312|504579|513617|903597|972614|977266", + "text": "Auditory neuropathy, autosomal dominant, 1" + }, + { + "baseId": "40177|40180|167373|167374|167374|167375|167376|167377|167873|167874|167875|167877|167880|167882|167883|167884|167885|167886|167888|167889|167892|167894|167898|167899|167902|167903|167905|167906|167907|192147|192857|193872|194083|194692|207263|214197|214204|214208|214208|214213|214224|214224|226694|251954|251957|251958|251959|251962|251963|259826|264270|297473|299544|299627|303719|303744|303745|303747|304067|304127|304138|368170|368486|368487|368653|369882|455193|455194|455631|455640|455653|455878|455885|501209|501355|521204|521461|521469|521796|521797|560329|560331|560333|560335|560337|560339|560341|560343|560345|560458|560460|560462|560464|563172|563173|565134|565136|565141|565142|565154|565158|633955|633957|655663|677420|677421|691858|691859|699082|699084|709906|721448|777461|932913", + "text": "Orofaciodigital syndrome type 6" + }, + { + "baseId": "40182|40183|40184|40185|40186|49901|49902|49903|135607|242440|242441|255756|255757|255758|325474|325478|325480|325489|325491|325492|335122|335125|335126|335128|335133|335139|335142|341576|341579|341580|341582|341585|341589|341597|341598|341600|341603|341608|343063|343065|343066|343067|343068|361310|401185|401188|401245|401247|401248|401249|401694|401703|401713|401947|401948|401954|401955|446891|465753|465755|466457|466461|466464|466465|466478|466481|466715|466719|466722|466724|466726|466728|495621|513359|529983|529991|530119|530122|530124|530130|530136|530140|530143|530316|530327|530332|530530|530533|567509|568143|568152|568160|568167|570198|570205|570215|570220|570231|570307|570309|570310|570313|570314|574067|574068|574069|574070|574072|574074|574076|574078|614426|644692|644693|644694|644695|644696|644697|644698|644699|644700|644701|644702|644703|644704|644705|644706|644707|652564|652727|652730|652856|653024|653026|684596|688605|693883|703697|703698|703699|726648|740204|755197|778308|820830|843880|843881|843882|843883|843884|843885|843886|843887|843888|843889|843890|843891|843892|852662|875353|875354|875355|875356|875357|875358|875359|875360|875361|875362|875363|875364|875365|876674|876675|919657|919658|920362|927822|927823|927824|927825|927826|927827|937456|937457|937458|941137|941138|949407|949408|957767|957768|960160|960161|960845|977277", + "text": "Kohlschutter's syndrome" + }, + { + "baseId": "40188|40189|40190|40191|40192|40193|40194|193296|205750|237436|421561|552090|614292|614293|614294|614295|677324|677325|686770|735285|788788|792754|799432|805082|920216", + "text": "Trichohepatoenteric syndrome 1" + }, + { + "baseId": "40195|236870|497644|654888|654889", + "text": "Deafness, autosomal dominant 4b" + }, + { + "baseId": "40200", + "text": "Influenza" + }, + { + "baseId": "40205|40206|40207|257238|257242|257246|257247|257248|334402|486617|571106|620648", + "text": "Ciliary dyskinesia, primary, 2" + }, + { + "baseId": "40241|40241|40242|40243|40244|40244|40245|40246|40247|40248|48208|48209|48210|48211|48212|134731|134732|134733|134734|134735|190323|195615|195925|195926|207476|229571|252664|264316|266194|266398|266415|266881|269121|269303|270263|270439|271687|272178|272417|273054|273084|273583|273914|273915|274335|274913|275461|302410|310676|310678|359660|369708|421628|441073|455864|456460|456524|456525|456530|456532|456533|456537|456921|456927|488656|488991|488993|501707|502340|511027|521886|522255|522512|522515|522753|522824|552116|552117|561049|561051|561440|561757|561758|564183|566071|566072|566643|585148|587299|635966|635967|635968|635969|651599|651612|651663|651664|651666|651686|722433|777643|833389|833390|833391|833392|833393|833394|833395|833396|833397|924777|924778|924779|924780|933801|933802|933803|933804|945545|945546|945547|945548|945549|945550|955102|959845", + "text": "Congenital muscular dystrophy-dystroglycanopathy with brain and eye anomalies, type A7" + }, + { + "baseId": "40241|40244|134731|134732|134733|134735|166226|166227|190323|195615|195925|195926|207476|252664|264316|266194|266398|266415|266881|269121|269303|270263|270439|271687|272178|272417|273054|273084|273583|273914|273915|274335|274913|275461|302410|310676|310678|359660|369708|421628|441073|455864|456460|456524|456525|456530|456532|456533|456537|456921|456927|488656|488991|488993|501707|502340|521886|522255|522512|522515|522753|522824|561049|561051|561440|561757|561758|564183|566071|566072|566643|585148|587299|635966|635967|635968|635969|651599|651612|651663|651664|651666|651686|722433|777643|788813|833389|833390|833391|833392|833393|833394|833395|833396|833397|924777|924778|924779|924780|933801|933802|933803|933804|945545|945546|945547|945548|945549|945550|955102|959845", + "text": "Muscular dystrophy-dystroglycanopathy (limb-girdle), type c, 7" + }, + { + "baseId": "40249|40250|40251|790438", + "text": "UV-sensitive syndrome 3" + }, + { + "baseId": "40272|40273|76328", + "text": "Cortisone reductase deficiency 2" + }, + { + "baseId": "40274|135605|205015|512913|626177|919157", + "text": "Ataxia, sensory, autosomal dominant" + }, + { + "baseId": "40277|40278", + "text": "Craniodiaphyseal dysplasia, autosomal dominant" + }, + { + "baseId": "40280|40283|140689|362105|362106|362107|362108|362109|429590|513622|798678|798679|798680|818307|971000|980428|980430", + "text": "Coenzyme Q10 deficiency, primary, 6" + }, + { + "baseId": "40285|40286", + "text": "Glutaric acidemia iic, late-onset" + }, + { + "baseId": "40286", + "text": "Acyl-CoA dehydrogenase deficiency, glutaric acidemia type II" + }, + { + "baseId": "40288|40289|171002|171003|725024|791221|791222|858656|858657|965206", + "text": "Meconium ileus" + }, + { + "baseId": "40290|40291|40292|40294|79667|79668|79669|79670|79671|79672|79673|79675|79677|410301|438057|467673|467685|467691|467695|467701|468580|468584|468585|468588|468597|469031|469034|469041|469042|469045|469053|469055|469057|469061|469337|469338|469341|469344|469347|469349|469351|469368|469371|531963|531969|531977|531981|531984|531988|531990|531991|531993|531995|531999|532001|532003|532005|532007|532013|532061|532070|532072|532074|532077|532087|532351|532359|532364|532366|532372|532382|569895|569900|569903|569904|569905|569923|569924|571737|571738|571739|571741|571742|571746|572413|572416|572420|572425|574676|574677|574678|574679|574680|574681|574682|646915|646916|646917|646918|646919|646920|646921|646922|646923|646924|646925|646926|646927|646928|646929|646930|646931|646932|646933|646934|646935|646936|646937|646938|646939|646940|646941|646942|646943|646944|646945|646946|646947|646948|646949|646950|646951|646952|646953|646954|646955|646956|646957|646958|646959|652865|652869|715783|727500|727501|727502|727503|727504|741113|741114|741115|741116|741117|741118|741119|745351|756210|756211|756212|756213|771921|771922|771923|771929|771931|771932|776563|779985|785795|785796|797620|846450|846451|846452|846453|846454|846455|846456|846457|846458|846459|846460|846461|846462|846463|846464|846465|846466|846467|846468|846469|846470|846471|846472|846473|846474|846475|846476|846477|846478|846479|846480|846481|846482|846483|846484|846485|846486|852802|928600|928601|928602|928603|928604|928605|928606|928607|928608|928609|938305|938306|938307|938308|938309|938310|938311|938312|938313|938314|938315|940445|950376|950377|950378|950379|950380|950381|950382|950383|950384|958378|958379|958380|958381|958382|958383|960254", + "text": "Psoriasis susceptibility 2" + }, + { + "baseId": "40290|44240|588258|646922|672278|672279|672280|672281|672306", + "text": "Papulosquamous eruptions" + }, + { + "baseId": "40293", + "text": "Psoriasis 2, pustular" + }, + { + "baseId": "40295|136187|136188|226676|237371|538465|622440|672100|727020|755656|797496|965999|966000|971067|971068|972796", + "text": "Cerebellar ataxia, mental retardation, and dysequilibrium syndrome 2" + }, + { + "baseId": "40296|76920|266842|300757|300758|300765|300777|300777|300778|300779|300779|300781|300781|300782|300789|300789|300790|300795|300795|300799|300799|300800|300806|300806|300808|300808|300810|300810|300811|300811|300812|300812|300817|300819|300830|300830|303682|303683|303684|303689|303691|303692|303692|303694|303694|303700|303701|303701|303702|303704|303707|303708|303709|303713|303713|303720|303720|303724|303724|303725|303731|303731|303734|308248|308257|308259|308260|308260|308271|308271|308272|308273|308274|308274|308275|308275|308276|308278|308278|308286|308287|308288|308288|308290|308290|308291|308291|308292|308292|308293|308295|308297|308297|308298|308298|308299|308299|308300|308301|308301|308302|308304|308304|308308|308308|308309|308309|308313|308313|308314|308324|308324|308326|308326|308330|308330|308331|308333|308333|308335|308335|308337|308338|308338|308339|308367|308367|308370|308370|308371|308371|308377|308377|308378|308378|308379|308381|308381|308399|308399|308407|308408|308408|308409|308409|308410|308410|308416|308416|308420|308420|308424|353796|369003|369005|413715|413716|443976|455661|455667|455668|455673|455676|455679|455684|455686|455688|455693|455695|455698|455705|455717|455727|455729|455736|455738|455858|455861|455865|455880|455883|455884|455886|455887|455891|455892|456277|456278|456281|456284|456292|456296|456307|456308|456591|456593|456594|456602|456603|456619|456623|456624|456629|456634|456639|456648|456657|481764|481765|508816|508817|508818|508819|512907|512907|512908|512908|512909|512910|512910|512911|513570|521711|521712|521719|521721|521722|521724|521738|521745|521750|521752|521755|522054|522055|522056|522057|522067|522075|522078|522081|522086|522088|522089|522096|522097|522098|522101|522102|522104|522107|522110|522111|522112|522113|522114|522115|522121|522123|522125|522127|522133|522135|522138|522141|522414|522423|522425|522428|522430|522434|522438|522453|522455|522457|522459|522464|522469|522475|550380|550381|560771|560772|560774|560783|560785|560787|560788|560793|560795|560804|560806|560910|560911|560914|560918|560920|560924|560925|560927|560931|560933|560934|560935|560937|560942|560948|560949|563633|563635|563638|563642|563646|563649|563652|563653|563657|563659|563661|563665|563669|565760|565762|565767|565773|565786|565789|565790|565793|565796|565797|565801|565802|565809|565811|565820|565833|608953|608954|635013|635014|635015|635016|635017|635018|635019|635020|635021|635022|635023|635024|635025|635026|635027|635028|635029|635030|635031|635032|635033|635034|635035|635036|635037|635038|635039|635040|635041|635042|635043|635044|635045|635046|635047|635048|635049|635050|635051|635052|635053|635054|635055|635056|635057|635058|635059|635060|635061|635062|635063|635064|635065|635066|635067|635068|635069|635070|635071|635072|635073|635074|635075|635076|635077|635078|635079|635080|635081|635082|635083|635084|635085|635086|635087|635088|635089|635090|635091|635092|635093|635094|635095|635096|635097|635098|635099|635100|635101|635102|635103|635104|635105|635106|635107|635108|635109|635110|635111|635112|635113|635114|635115|635116|651572|651588|651620|651622|651628|686904|692014|692015|692017|692018|692019|692020|692021|692022|692023|692024|692025|692026|692027|692030|692033|692034|692035|695322|695323|695324|695326|699630|699632|699633|699634|699635|710569|710570|710571|722083|722085|722086|765747|765753|782588|782592|787322|787325|787329|787341|787342|787346|787349|787351|787366|787415|787417|787421|787422|787425|787426|787428|787431|787433|787437|787441|787443|787446|787448|787474|787476|787478|787480|787483|787486|787489|787494|787496|787497|787499|787504|787506|787557|787559|787560|787565|787567|787574|787577|787579|787592|787594|787596|787597|795881|795883|795884|819702|832079|832080|832081|832082|832083|832084|832085|832086|832087|832088|832089|832090|832091|832092|832093|832094|832095|832096|832097|832098|832099|832100|832101|832102|832103|832104|832105|832106|832107|832108|832109|832110|832111|832112|832113|832114|832115|832116|832117|832118|832119|832120|832121|832122|832123|832124|832125|832126|832127|832128|832129|832130|832131|832132|832133|832134|832135|832136|832137|832138|832139|832140|832141|832142|832143|832144|832145|832146|832147|832148|832149|832150|832151|832152|832153|851328|851330|851368|924390|924391|924392|924393|924394|924395|924396|924397|924398|924399|924400|924401|924402|924403|924404|924405|924406|924407|924408|924409|924410|924411|924412|924413|924414|933372|933373|933374|933375|933376|933377|933378|933379|933380|933381|933382|933383|933384|933385|933386|933387|933388|933389|933390|945078|945079|945080|945081|945082|945083|945084|945085|945086|945087|945088|945089|945090|945091|945092|945093|945094|945095|945096|945097|945098|945099|945100|945101|945102|945103|945104|945105|954505|954506|954507|954508|954509|954510|954511|954512|954513|954514|954515|954516|954517|954518|954519|954520|954521|954522|954523|954524|954525|954526|954527|954528|954529|954530|954531|954532|954533|954534|954535|954536|954537|954538|954539|954540|954541|954542|954543|954544|954545|954546|954547|954548|954549|954550|954551|954552|954553|954554|954555|954556|954557|954558|954559|954560|954561|954562|954563|954564|954565|954566|954567|954568|954569|954570|954571|954572|954573|954574|954575|954576|954577|954578|954579|954580|954581|954582|954583|954584|954585|954586|954587|954588|954589|954590|954591|954592|954593|954594|954595|954596|954597|954598|954599|954600|954601|954602|954603|954604|954605|954606|954607|954608|954609|954610|954611|954612|954613|954614|954615|954616|954617|954618|954619|954620|954621|954622|954623|954624|954625|954626|954627|954628|954629|954630|954631|954632|954633|954634|954635|954636|954637|954638|954639|954640|954641|954642|954643|954644|954645|954646|954647|954648|954649|954650|954651|954652|954653|954654|954655|954656|954657|954658|954659|954660|954661|954662|954663|954664|954665|954666|954667|954668|954669|954670|954671|954672|954673|954674|954675|954676|954677|954678|954679|954680|954681|954682|954683|954684|954685|954686|954687|954688|954689|954690|954691|954692|954693|954694|954695|954696|954697|954698|954699|954700|954701|954702|954703|954704|954705|954706|954707|954708|954709|954710|954711|954712|954713|954714|954715|954716|954717|954718|954719|954720|954721|954722|954723|954724|954725|954726|954727|954728|954729|954730|954731|954732|954733|954734|954735|954736|954737|954738|954739|954740|954741|954742|954743|954744|954745|954746|954747|954748|954749|954750|954751|954752|954753|954754|954755|954756|954757|954758|954759|954760|954761|954762|954763|954764|954765|954766|954767|954768|954769|954770|954771|954772|954773|954774|954775|954776|954777|954778|954779|954780|954781|954782|954783|954784|954785|954786|954787|954788|954789|954790|954791|954792|954793|954794|954795|959809|960589|960590|960591|960592|960593|960594|960595|960596|960597|960598|960599|960600|960601|960602", + "text": "Neuropathy, hereditary sensory and autonomic, type VI" + }, + { + "baseId": "40299", + "text": "Skin/hair/eye pigmentation, variation in, 11" + }, + { + "baseId": "40312", + "text": "Arrhythmogenic right ventricular dysplasia, familial, 11, with mild palmoplantar keratoderma and woolly hair" + }, + { + "baseId": "40313|40314|40316|40317|40318|75620|205719|538936|977166", + "text": "Auriculocondylar syndrome 1" + }, + { + "baseId": "40314|40315|40316|40317|40318|75621|75622|75623|75624|75625|336466|336467|336469|336472|336474|336475|336485|336490|336492|336495|336501|336514|336517|336518|336524|336525|346175|346180|346182|346184|346189|346190|346194|346195|346197|346202|346205|346208|346210|346217|346235|346237|350485|350486|350488|350490|350492|350494|350498|350499|350500|350501|350503|350504|350509|350510|350512|350513|351540|351542|351543|351544|351545|351546|351547|351548|351549|351550|351552|351554|351556|620669|622924|886605|886606|886607|886608|886609|886610|886611|886612|886613|886614|886615|886616|886617|886618|886619|886620|886621|886622|886623|886624|886625|886626|886627|886628|886629|886630|886631|886632|886633|886634|886635|886636|886637|886638|887496|887497|887498|887499|887500|919930", + "text": "Auriculocondylar syndrome 2" + }, + { + "baseId": "40316|336506|336511|350505|350508|350515|351559", + "text": "Auriculocondylar syndrome" + }, + { + "baseId": "40326|40327|40328|40329|76338|205389|205390|205391|205392|205393|205395|205396|205397|205398|205399|205400|205401|205402|205403|206712|206715|206717|206718|277041", + "text": "Nager syndrome" + }, + { + "baseId": "40332|54990|54991|54993|54994|141150|141151|174125|174258|229606|229607|229608|258517|359869|395822|457066|509986|523373|523376|561808|561809|562259|562260|564493|636443|636444|636445|692331|833925|833926|833927|833928|833929|924933|934026|934027|945786|945787|955242", + "text": "Cardiomyopathy, dilated, 2b" + }, + { + "baseId": "40333", + "text": "Periodic fever, menstrual cycle-dependent" + }, + { + "baseId": "40334|40335|207136|293761|293764|293765|293775|293776|293781|293784|293785|293786|295122|295125|295128|295129|295132|295135|295136|295139|295143|295151|295152|295153|295157|295158|295159|295169|295171|298800|298801|298805|298806|298809|298813|298817|298818|298821|298822|298823|298824|298831|298836|298837|298844|298845|298846|298862|298871|298872|298873|298888|298889|298896|298897|364015|891896|891897|891898|891899|891900|891901|891902|891903|891904|891905|891906|891907|891908|891909|891910|891911|895980", + "text": "Bone marrow failure syndrome 1" + }, + { + "baseId": "40336|195424|404686|426744|508795|681824|681825|721015|965961|965962|966034|970210", + "text": "Primary autosomal recessive microcephaly 8" + }, + { + "baseId": "40337|40338|40339|40340|45671|135284|135285|135286|135287|135288|135289|135290|135291|207265|207266|207268|207274|297951|297953|297954|297964|297966|297967|297968|300109|300133|300135|300140|300142|300144|300147|300149|300171|300175|304370|304371|304375|304380|304701|304707|304708|304709|304710|424377|428449|428454|551291|551292|579087|579099|579168|735155|789117|792753|816456|894598|894599|894600|894601|894602|894603|894604|894605|894606|894607|894608|894609|894610|894611|894612|894613|894614|894615|896123|896124|896125|961277", + "text": "Mental retardation, autosomal recessive 5" + }, + { + "baseId": "40341|40342|40343|40344|40345|40345|40346|102954|102955|102955|102956|134703|134704|134705|134706|134707|134708|191060|191700|192671|192851|193053|193339|193340|227372|260921|264652|265684|266012|267172|267605|268582|272104|272285|272286|272308|324291|324299|324301|324309|324317|324319|324322|324325|324326|324328|324333|324334|324338|324339|324342|324344|324345|324346|324352|324353|324375|324376|324386|324488|324497|324498|324514|324520|324521|324523|324527|324530|324532|324536|324540|333834|333837|333844|333849|333851|333858|333873|333877|333879|333882|333887|333891|333892|333905|334016|334020|334029|334032|334050|334053|334056|334060|334063|340631|340633|340635|340640|340641|340650|340651|340652|340657|340659|340663|340698|340699|340766|340774|340776|340778|340779|340783|340787|340791|340794|340797|341985|341991|341994|341997|342005|342007|342012|342013|342023|342025|342026|342029|342037|342042|342044|342048|342050|342082|342179|342180|342181|342189|342196|360153|374632|431788|439014|439757|440216|445505|465063|465065|465130|465701|465733|465734|465928|482086|489139|491139|493895|505581|505627|512946|513803|513805|513805|513805|513806|513807|513808|513809|513810|513811|529470|529802|530053|567704|569543|570016|573743|584448|586596|588174|588786|589209|611810|613978|620535|623321|643936|693790|693791|693792|693793|693794|693799|703500|703501|703502|703503|703504|703505|703506|703508|703509|703510|714753|714755|714756|726443|726444|726446|739978|754944|760279|770562|778175|785154|791525|801565|802208|820767|843125|843126|843127|843128|843129|843130|843131|843132|843133|843134|843135|843136|843137|843138|843139|843140|843141|843142|843143|843144|843145|843146|843147|843148|843149|843150|843151|843152|843153|843154|843155|843156|843157|843191|843192|843193|843194|843196|843197|843198|843199|843200|843201|843202|843203|843204|843205|843206|852626|857280|874725|874726|874727|874728|874729|874730|874731|874732|874733|874734|874735|874736|874737|874738|874739|874740|874741|874742|874743|874744|874745|874746|874747|874748|874749|874750|874756|874795|874796|874797|874798|874799|874800|874801|874803|874804|874805|874806|876622|876623|876624|876625|876630|876631|876632|919610|927569|927570|927578|927579|937227|937228|937229|937230|937231|937232|937233|937234|937235|937236|937237|937238|937239|937240|937241|937242|937243|937244|937245|937246|937247|937248|937249|937250|937251|940344|940345|941113|941114|949176|949177|949178|949179|949180|949181|949182|949183|949184|949185|949186|949187|949188|949189|949190|949191|949192|949195|949196|949197|949198|949199|949200|949201|949202|949203|949204|949205|949206|949207|949208|957629|957630|957631|957632|957633|957634|957635|957636|957637|957638|957639|957640|957642|957643|957644|957645|957646|957647|957648|960134|960135|960136|960835|960836|960837|962700|962702|962740|962855|963175", + "text": "Saldino-Mainzer syndrome" + }, + { + "baseId": "40341|40342|40345|439752|439753|439754|439755|439756|623320|623321", + "text": "Retinitis pigmentosa 80" + }, + { + "baseId": "40345|513804", + "text": "Retinal ciliopathy due to mutation in the retinitis pigmentosa-1 gene" + }, + { + "baseId": "40348|40349|40350|40351|40352|134469|134470|134471|134472|181189|207721|207722|207723|264333|308353|308354|308356|308360|308362|312805|312826|318660|318661|319245|319246|319257|319258|370434|370435|370940|371289|481858|503167|536776|564079|613400|638336|638337|692679|751718|751719|836167|836168|902078|902079|902080|902081|902082|902083|902084|902085|902086|902087|902088|902089|902090|903408|903409|934787|955859", + "text": "Pontocerebellar hypoplasia, type 1b" + }, + { + "baseId": "40353|40354|40355|40356|47532|47533|49396|141668|141669|141671|141672|141673|141674|141677|203376|203378|203381|203384|203385|203386|203387|203390|203391|203394|203396|203397|203399|203402|203406|203407|203408|203411|203413|203415|203416|203418|203421|203422|203423|203427|203428|203429|203431|203432|203433|203434|203435|203436|203438|203439|203440|203441|203443|203446|203447|203451|205784|242822|242823|328897|328914|344946|346272|346273|346281|346284|361228|363792|375147|375156|375165|375191|375202|376077|376080|376086|376088|376103|376118|376119|376128|376138|376147|376153|376177|376181|376201|376216|376229|376239|376250|376253|378317|378333|378337|378347|378367|378372|378382|378390|378415|402114|402598|402754|410051|441967|466940|467810|467813|467815|467820|467821|467827|467837|467839|467841|468121|468123|468124|468130|468132|468134|468295|468297|468299|468301|468304|468305|468308|480418|505967|506128|506134|506143|506429|506439|506896|512295|512297|531176|531177|531178|531179|531192|531193|531371|531373|531383|531387|531389|531391|531435|531440|531442|531680|531681|531685|531687|531691|531692|535708|538467|539074|552205|568641|569226|571237|571239|571240|571242|571542|571544|571546|571548|571552|571555|574273|574501|574502|574503|611426|611427|614437|626254|646114|646115|646116|646117|646118|646119|646120|646121|646122|646123|646124|646125|646126|646127|646128|653462|653893|654001|656441|677455|688781|771591|771592|771593|771594|771597|771599|771600|791785|821099|822127|822128|822129|822130|822131|822132|822133|822134|822135|822136|822137|822138|845516|845517|845518|845519|845520|845521|845522|845523|845524|845525|845526|845527|845528|845529|845530|845531|845532|845533|845534|845535|845536|845537|845538|845539|845540|845541|852879|928350|928351|928352|928353|928354|928355|928356|937995|937996|937997|937998|937999|940416|940417|941183|941184|949986|949987|949988|949989|949990|958149|958150|958151|964483|964720|966174|969247|969550|980958", + "text": "Koolen-de Vries syndrome" + }, + { + "baseId": "40357|40358|242820|256213|256216|328726|328732|328734|328737|328752|328755|328756|338712|344774|344776|344777|344779|344786|344792|344793|346162|346163|346168|346176|688776|877774|877775|877776|877777|877778|877779|877780|877781|877782|877783|877784", + "text": "Ciliary dyskinesia, primary, 17" + }, + { + "baseId": "40412|40415|40416|40422|40422|134331|192381|192382|193542|193544|193545|193548|193549|205057|205058|205058|205059|229102|229103|251228|251229|251230|251231|266062|266362|266367|266544|266651|267013|267099|267266|267485|267553|268353|268535|269002|269594|269699|270827|270843|270953|271161|271547|273077|273811|274325|274429|275445|360855|367671|367673|421451|425572|428207|440827|452520|452833|452847|452849|452855|453073|453078|453085|488604|488986|490429|490672|493824|500592|519415|519423|519425|519427|519600|519606|519608|519618|519620|519650|519652|519658|519660|519666|519668|519671|519677|559044|559046|559574|559576|559578|561665|561667|561670|561676|561679|563084|563093|563095|584270|586994|588747|588928|631556|631557|631558|631559|631560|631561|631562|631563|631564|631565|631566|631567|631568|631569|631570|631571|631572|631573|631574|655559|691446|691448|691449|708929|764015|764018|781742|819407|819410|828326|828327|828328|828329|828330|828331|828332|828333|828334|828335|828336|828337|828338|828339|828340|851057|851464|923263|923264|923265|923266|923267|932014|932015|932016|932017|932018|943621|943622|943623|953540|953541|953542|960519", + "text": "Limb-girdle muscular dystrophy-dystroglycanopathy, type C9" + }, + { + "baseId": "40412|40416|40422|134331|192381|192381|192382|193542|193544|193545|193548|193549|205058|205059|205059|205060|229103|251228|251229|251230|251231|266062|266362|266367|266544|266651|267013|267099|267266|267485|267553|268353|268535|269002|269594|269699|270827|270843|270953|271161|271547|273077|273811|274325|274429|275445|360855|367671|367673|421451|425572|428207|440827|452520|452833|452847|452849|452855|453073|453078|453085|488604|488986|490429|490672|493824|500592|519415|519423|519425|519427|519600|519606|519608|519618|519620|519650|519652|519658|519660|519666|519668|519671|519677|559044|559046|559574|559576|559578|561665|561667|561670|561676|561679|563084|563093|563095|584270|586994|588747|588928|631556|631557|631558|631559|631560|631561|631562|631563|631564|631565|631566|631567|631568|631569|631570|631571|631572|631573|631574|655559|691446|691448|691449|708929|764015|764018|781742|819407|819410|828326|828327|828328|828329|828330|828331|828332|828332|828333|828334|828335|828336|828337|828338|828339|828340|851057|851464|918842|923263|923264|923265|923266|923267|932014|932015|932016|932017|932018|943621|943622|943623|953540|953541|953542|960519", + "text": "Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type a, 9" + }, + { + "baseId": "40426|178686", + "text": "Ventricular extrasystoles" + }, + { + "baseId": "40438|52111|52844", + "text": "Increased left ventricular wall thickness" + }, + { + "baseId": "40450|40451|40452|40453|40454|40455|40456|40457|40458|40459|40460|40461|40462|40463|40464|40465|40466|40467|40468|40469|40470|40471|40472|40473|40474|40475|40477|40479|40480|40481|40482|40483|40484|40485|40486|40487|40491|40496|59549|142116|142117|142118|142119|142120|142121|142122|142124|142125|142126|142127|165576|178627|178628|189843|189844|189845|189846|189847|189849|189850|189852|189853|189854|189855|189858|189860|189861|189862|191955|195434|198256|198259|198261|198262|198264|198265|198266|198267|198268|198269|198271|198272|198274|198275|198279|198282|198283|221986|221987|224399|229825|229826|229827|229828|229829|229830|229832|229833|229834|229835|229836|229838|229839|229840|229841|229843|229844|240833|240834|240835|240836|240837|240838|258645|258648|258649|258650|258651|258659|362377|370816|370822|370841|371365|371375|371377|371382|371385|371746|371751|371758|373451|397377|397379|397389|397565|397573|397904|397911|397917|404789|407877|425882|425883|425883|444625|460054|460057|460061|460061|460062|460064|460068|460077|460081|460085|460087|460092|460094|460096|460183|460189|460198|460199|460202|460203|460208|460211|460214|460216|460467|460469|460477|460926|460929|460930|460932|460934|481132|497142|497142|502848|503260|503389|508853|508854|510193|510194|510196|510201|510204|510205|510207|510211|510212|510214|510217|512840|512841|512918|512919|525281|525301|525304|525309|525314|525325|525336|525399|525404|525414|525417|525422|525425|525431|525517|525731|525733|525739|525740|525753|525757|525759|525764|525765|525768|525770|536795|563509|563872|563874|563876|563876|563886|563890|563892|563895|563896|564682|564689|564692|564694|564696|564702|564703|566393|566396|566404|566409|566422|566429|566435|566438|566439|569735|569737|569738|569739|576333|639063|639064|639065|639066|639067|639068|639069|639070|639071|639072|639073|639074|639075|639076|639077|639078|639079|639080|639081|639082|639083|639084|639085|639086|639087|639088|639089|639090|639091|639092|639093|639094|639095|639096|639097|639098|639099|639100|652018|679446|687661|687663|689985|692877|692879|692881|692883|695484|737555|752185|767869|783661|787651|796436|820231|837098|837099|837100|837101|837102|837103|837104|837105|837106|837107|837108|837109|837110|837111|837112|837113|837114|837115|837116|837117|837118|837119|837120|837121|837122|837123|837124|837125|837126|837127|837128|837129|837130|837131|837132|837133|837134|837135|837136|837137|837138|837139|837140|837141|837142|837143|837144|837145|851377|851784|859804|920284|925888|925889|925890|925891|925892|925893|925894|925895|925896|925897|925898|935127|935128|935129|935130|935131|935132|935133|940174|940175|940963|946996|946997|946998|946999|947000|947001|947002|947003|947004|947005|947006|956137|956138|959940", + "text": "Dilated cardiomyopathy 1KK" + }, + { + "baseId": "40451|40471", + "text": "Familial hypertrophic cardiomyopathy 22" + }, + { + "baseId": "40476", + "text": "Cardiomyopathy, familial restrictive, 4" + }, + { + "baseId": "40515|45542|101012|101032|136049|196119|282776|282777|282793|284391|284405|284470|284584|284625|284664|320441|320444|329225|335831|335850|349393|350403", + "text": "Nemaline Myopathy, Recessive" + }, + { + "baseId": "40530|40531|40532|254103|271555|313489|313519|313534|313535|313536|313543|313546|319683|319725|319726|319733|319734|319735|319749|319750|319756|325831|325853|325854|325896|325916|325917|325922|326878", + "text": "Arthrogryposis multiplex congenita distal" + }, + { + "baseId": "40542|40561|52584|52590", + "text": "Left ventricular noncompaction 9" + }, + { + "baseId": "40564|496632", + "text": "Ectodermal dysplasia" + }, + { + "baseId": "40566|40567|361219|361220", + "text": "Hamamy syndrome" + }, + { + "baseId": "40587", + "text": "rosuvastatin response - Other" + }, + { + "baseId": "40587", + "text": "pravastatin response - Metabolism/PK" + }, + { + "baseId": "40587|227779|227780", + "text": "simvastatin response - Toxicity/ADR" + }, + { + "baseId": "40587", + "text": "cerivastatin response - Toxicity/ADR" + }, + { + "baseId": "40587", + "text": "hmg coa reductase inhibitors response - Toxicity/ADR, Metabolism/PK" + }, + { + "baseId": "40587", + "text": "simvastatin acid response - Metabolism/PK" + }, + { + "baseId": "40594", + "text": "Systemic lupus erythematosus 11" + }, + { + "baseId": "40602|227142|227143|227144|227145|446596|816500|971194", + "text": "Autism, susceptibility to, X-linked 6" + }, + { + "baseId": "40607|166050|166051|471610", + "text": "Anemia without thromobocytopenia, X-linked" + }, + { + "baseId": "40611|40612|40613|40614|44204|44205|44206|44207|44290|44291|44293|44295|44296|44297|44298|44300|54551|54552|54553|54555|54557|54558|54559|54564|54566|54569|54570|54572|54574|54576|54577|54579|54586|175402|175404|175406|175551|175845|189894|189903|198377|241532|316673|316674|316678|316679|316681|324150|324151|324153|324154|324155|324156|330167|330171|330174|330176|330194|331585|331595|353904|398886|503771|503799|504818|510363|527279|535704|536836|653882|839791|869669|869670|869671|869672|869673|869674|869675|872228|961525|961868", + "text": "Hypertrichotic osteochondrodysplasia Cantu type" + }, + { + "baseId": "40611|263191|263207|263209|263227|263233|263268|263298|263312|514064|514065|514174|514200|615872|672319", + "text": "15 conditions" + }, + { + "baseId": "44117", + "text": "OBESITY (BMIQ17), SUSCEPTIBILITY TO" + }, + { + "baseId": "44118|44119|246872|389359|433459|433460|433461|433462|442703|447475|447477|447478|447585|447599|447605|447607|447727|447761|515419|515424|515433|515434|515436|515437|515439|515451|515453|515454|515519|515523|515526|515528|515531|515534|515537|537111|556772|556774|556776|556776|556778|556780|556845|556846|556850|557133|557135|557137|557139|557141|557143|558335|558337|558339|558341|614205|626103|627320|627321|627322|627323|627324|627325|627326|627327|627328|627329|627330|627331|627332|627333|627334|627335|627336|627336|627337|627338|627339|627340|627341|627342|627343|627344|627345|707036|707037|707040|707042|707044|718578|718579|732055|732056|732057|732058|732059|746027|746028|746029|746030|746031|746032|761493|761496|774433|774441|777083|778804|780462|780463|787023|794552|799151|823276|823277|823278|823279|823280|823281|823282|823283|823284|823285|823286|823287|823288|823289|823290|823291|823292|823293|823294|823295|823296|823297|823298|823299|823300|850739|851269|921208|921818|921819|921820|921821|921822|921823|921824|921825|921826|921827|921828|930254|930255|930256|930257|930258|930259|930260|930261|930262|930263|930264|930265|930266|940615|941670|941671|941672|941673|941674|941675|941676|941677|941678|941679|941680|941681|941682|952223|952224|952225|952226|952227|952228|952229|952230|960418|980442", + "text": "Common variable immunodeficiency 7" + }, + { + "baseId": "44120|44121|44122|44123|172320|172321|194445|194603|194711|195707|215300|215301|266238|267279|268892|268984|271387|271616|271971|273534|273619|359490|367907|389659|389664|413674|413675|428287|433671|433673|433674|433675|438814|452972|452979|452981|452989|452992|452995|452998|453234|453278|453280|453282|453283|453285|453364|453367|453371|453374|453376|453383|453387|453744|453753|453754|453767|453783|453788|488828|490238|490290|494128|494129|512813|512814|519735|519741|519742|519745|519751|519753|519754|519756|519758|519761|519763|519765|519767|519768|519771|519772|519774|519776|519779|519785|519788|519789|519792|520025|520028|520032|520033|520034|520035|520039|520043|520044|520046|520048|520053|520066|520067|520069|520071|520084|520088|520090|520092|520094|538366|559549|559593|559595|559597|559599|559601|559603|559605|559607|559609|559611|559613|559615|559698|559742|559744|559746|559748|559750|559752|559754|559756|559758|559760|559762|559764|559766|559768|559770|561844|561917|561919|561921|561923|561925|561928|561930|561932|561933|563479|563487|563495|563497|563502|563516|563523|563525|563536|584325|585641|585642|609526|609529|609530|614275|614276|614522|624278|624279|631956|631957|631958|631959|631960|631961|631962|631963|631964|631965|631966|631967|631968|631969|631970|631971|631972|631973|631974|631975|631976|631977|631978|631979|631980|631981|631982|631983|631984|631985|631986|631987|631988|631989|631990|631991|631992|631993|631994|631995|631996|631997|631998|631999|632000|632001|632002|632003|632004|632005|632006|632007|632008|632009|632010|632011|632012|632013|632014|632015|632016|632017|632018|632019|632020|632021|632022|632023|632024|632025|632026|632027|632028|632029|632030|632031|632032|651095|651134|651140|651141|651154|651163|651179|651269|709186|709187|709188|709190|709191|709192|709193|709194|709195|720782|720783|720784|720785|720786|720787|720788|720790|730266|730267|734482|734483|734484|734486|734487|734488|734490|748760|748761|748762|748765|748766|748769|748770|759399|764334|764335|764345|764346|764349|774892|777419|777453|781882|790439|790440|790441|792745|792746|795536|795537|799344|816311|816452|819452|819453|819454|819455|819456|828816|828817|828818|828819|828820|828821|828822|828823|828824|828825|828826|828827|828828|828829|828830|828831|828832|828833|828834|828835|828836|828837|828838|828839|828840|828841|828842|828843|828844|828845|828846|828847|828848|828849|828850|828851|828852|828853|828854|828855|828856|828857|828858|828859|828860|828861|828862|828863|828864|828865|828866|828867|828868|828869|828870|828871|828872|828873|828874|828875|828876|828877|828878|828879|828880|828881|828882|828883|851111|851485|851487|851489|851592|904222|904223|923429|923430|923431|923432|923433|923434|923435|923436|923437|923438|923439|923440|923441|923442|932181|932182|932183|932184|932185|932186|932187|932188|932189|932190|932191|932192|932193|932194|932195|932196|932197|932198|932199|932200|932201|932202|932203|932204|932205|932206|932207|932208|932209|932210|932211|939958|939959|940773|940774|940775|943816|943817|943818|943819|943820|943821|943822|943823|943824|943825|943826|943827|943828|943829|943830|943831|943832|943833|943834|943835|943836|943837|943838|943839|943840|943841|943842|943843|943844|943845|943846|943847|953682|953683|953684|953685|953686|953687|953688|953689|953690|953691|959713|960528|961936|961937|961938|961939|980913|981447", + "text": "Common variable immunodeficiency 8, with autoimmunity" + }, + { + "baseId": "44124|44125|168580|168581|207499|207500|207502|213578|253018|359708|421648|428756|444199|457137|457148|457770|458145|458147|512830|513820|513821|523218|535385|550662|579320|579324|611689|692340|700358|750884|779458|790773|790774|798596|798597|805086|819935|834042|834043|855082|855083|855084|945823|961517|964297|969523|970871|980602", + "text": "Cornelia de Lange syndrome 4" + }, + { + "baseId": "44139|48175|48176|48717|48718|102593|102594|185943|206603|206604|206605|206606|206607|206608|206609|207534|244515|244516|244518|253078|359894|369436|369440|369860|369863|369865|370181|370184|370186|371716|407346|457430|457431|458042|458053|458094|458096|458099|458101|458390|458391|458393|458407|502305|502669|508749|509042|523217|523227|523228|523233|523234|523237|523489|523490|523496|523704|523705|523707|523710|523711|523720|523742|523747|539010|540451|540452|562067|562069|562071|562077|562080|562085|562086|562088|562092|562515|564815|564818|564824|564829|564831|564837|567513|567515|567518|567525|567530|567533|636787|636788|636789|636790|636791|636792|636793|636794|636795|636796|636797|636798|636799|636800|636801|636802|636803|651785|692444|692445|692447|692448|700478|700480|700481|722938|722940|766634|783038|819950|819951|834299|834300|834301|834302|834303|834304|834305|834306|834307|834308|834309|834310|834311|834312|834313|834314|834315|851185|918139|925070|925071|925072|925073|925074|925075|925076|925077|934162|934163|934164|934165|945916|945917|945918|945919|945920|945921|945922|955343|955344|967121", + "text": "Brown-Vialetto-Van Laere syndrome 2" + }, + { + "baseId": "44165|275828|496561", + "text": "GPSM2-Related Disorders" + }, + { + "baseId": "44168|44169|81402|94578|94579|141978|141979|141980|141981|239947|239948|239949|239950|239951|239952|395197|395204|395422|395424|395561|395566|395844|395848|395856|438739|455895|456309|456318|481128|481129|481418|481419|481420|481421|522145|522480|538389|560951|560955|560961|560963|560967|565836|626167|626310|635130|635131|635132|635133|635134|635135|635136|635137|651504|651594|686906|692036|798579|819746|832337|832338|832339|832340|832341|832342|832343|832344|832345|832346|852030|852296|919054|924441|924442|924443|933452|933453|933454|945170|945171|954877|954878|983820|983821", + "text": "Combined oxidative phosphorylation deficiency 10" + }, + { + "baseId": "44169|171703|496850|497470|497668", + "text": "Mitochondrial oxidative phosphorylation disorder" + }, + { + "baseId": "44177", + "text": "Piebaldism, progressive" + }, + { + "baseId": "44188|44189|44190|132010", + "text": "Digital arthropathy-brachydactyly, familial" + }, + { + "baseId": "44191|134566|540456|792623", + "text": "Friedreich ataxia 1" + }, + { + "baseId": "44194|207048|227252|363976|966033", + "text": "Seckel syndrome 6" + }, + { + "baseId": "44195|44196|44197|44198|293686|295081|295101|298722|298726|298727|367643|453965|691595|891877|891878|891879|891880|891881|891882|891883|891887|891888|891889|953826", + "text": "Congenital disorder of glycosylation type 2k" + }, + { + "baseId": "44199|44200|44201|44202|44203|136352|190151|241125|248650|398572|461806|977247", + "text": "Intrauterine growth retardation, metaphyseal dysplasia, adrenal hypoplasia congenita, and genital anomalies" + }, + { + "baseId": "44209|44210|44211|44212|44213|44214|215092|260546|260549|260550|260551|691863|788780|918968|920211", + "text": "Glucocorticoid deficiency 4 with or without mineralocorticoid deficiency" + }, + { + "baseId": "44215|44216|178804|178805|313526|362358|552122|552123|651777|800721|800727|800730|800740|800741|800744|861672", + "text": "Spinal muscular atrophy-progressive myoclonic epilepsy syndrome" + }, + { + "baseId": "44215", + "text": "ASAH1-related disorders" + }, + { + "baseId": "44227", + "text": "NEVUS SPILUS, SOMATIC" + }, + { + "baseId": "44227", + "text": "SPITZ NEVUS, SOMATIC" + }, + { + "baseId": "44228", + "text": "Basal cell carcinoma, susceptibility to, 7" + }, + { + "baseId": "44229|44231|44232|125792|142794|142800|205195|211206|211211|211213|211216|211217|368488|368796|368996|368997|370267|370285|423256|423258|439862|481460|501650|501894|522153|560640|563459|578651|578657|584196|612352|634748|634749|634750|677424|710285|721839|735501|765571|792756|831727|831728|831729|831730|831731|831732|852020|852254|857617|904230|933241|944948|954404|970214", + "text": "3-methylglutaconic aciduria with deafness, encephalopathy, and Leigh-like syndrome" + }, + { + "baseId": "44234|44235|481415", + "text": "Mitochondrial pyruvate carrier deficiency" + }, + { + "baseId": "44236|486704|486705|622916", + "text": "Hereditary congenital facial paresis 3" + }, + { + "baseId": "44237|44238|44239|204980|205785|205786|508887|983457", + "text": "Interstitial lung disease, nephrotic syndrome, and epidermolysis bullosa, congenital" + }, + { + "baseId": "44240|44241|44242|79667|79668|79668|79669|79670|79671|79672|79673|79675|79677|410301|438057|467673|467685|467691|467695|467701|468580|468584|468585|468588|468597|469031|469034|469041|469042|469045|469053|469055|469057|469061|469337|469338|469341|469344|469347|469349|469351|469368|469371|531963|531969|531977|531981|531984|531988|531990|531991|531993|531995|531999|532001|532003|532005|532007|532013|532061|532070|532070|532072|532074|532077|532087|532351|532359|532364|532366|532372|532382|569895|569900|569903|569904|569905|569923|569924|571737|571738|571739|571741|571742|571746|572413|572416|572420|572425|574676|574677|574678|574679|574680|574681|574682|646915|646916|646917|646918|646919|646920|646921|646922|646923|646924|646925|646926|646927|646928|646929|646930|646931|646932|646933|646934|646935|646936|646937|646938|646939|646940|646941|646942|646943|646944|646945|646946|646947|646948|646949|646950|646951|646952|646953|646954|646955|646956|646957|646958|646959|652865|652869|715783|727500|727501|727502|727503|727504|741113|741114|741115|741116|741117|741118|741119|745351|756210|756211|756212|756213|771921|771922|771923|771929|771931|771932|776563|779985|785795|785796|797620|846450|846451|846452|846453|846454|846455|846456|846457|846458|846459|846460|846461|846462|846463|846464|846465|846466|846467|846468|846469|846470|846471|846472|846473|846474|846475|846476|846477|846478|846479|846480|846481|846482|846483|846484|846485|846486|852802|928600|928601|928602|928603|928604|928605|928606|928607|928608|928609|938305|938306|938307|938308|938309|938310|938311|938312|938313|938314|938315|940445|950376|950377|950378|950379|950380|950381|950382|950383|950384|958378|958379|958380|958381|958382|958383|960254", + "text": "Pityriasis rubra pilaris" + }, + { + "baseId": "44243|44244|44245|44246|44247|626010|626011", + "text": "John Milton Hagen blood group system" + }, + { + "baseId": "44263", + "text": "Distal hereditary motor neuronopathy type 5B" + }, + { + "baseId": "44264|44265|44266|195762|195763|215400|253539|253540|253541|253542|253543|253545|253546|270363|308277|312667|312668|312675|312676|312677|312679|318573|318576|318582|318584|318590|319104|319106|319107|319110|319113|359934|359936|370379|370393|370401|370405|370411|370414|370423|370893|370911|370920|371240|371248|371251|371267|372984|373011|373013|373014|373031|407693|407694|407697|407698|421755|421757|425847|434630|444480|444481|444482|444483|444485|458117|459163|459171|459172|459185|459187|459189|459489|459494|459497|459498|459503|459506|459507|459564|459565|459566|459567|459571|459576|459578|459588|460044|460045|460047|460049|460050|460056|460059|502932|503122|503145|503394|524572|524574|524579|524592|524596|524832|524836|524838|524958|524962|524965|525118|525120|525122|536775|563234|563235|563239|563243|563244|563248|563249|563252|563975|563981|563996|563997|564005|564008|564013|564014|565891|565899|565900|565902|568290|569036|569042|569044|569048|569049|569050|569056|569059|569060|569068|576132|611719|614344|614345|620330|638235|638236|638237|638238|638239|638240|638241|638242|638243|638244|638245|638246|638247|638248|638249|638250|638251|638252|638253|638254|638255|638256|638257|638258|638259|638260|638261|638262|638263|638264|638265|638266|638267|638268|638269|638270|638271|638272|638273|638274|638275|638276|638277|638278|677978|682630|711956|723560|737123|737124|751693|751695|767399|836101|836102|836103|836104|836105|836106|836107|836108|836109|836110|836111|836112|836113|836114|836115|836116|836117|836118|836119|836120|836121|836122|836123|836124|836125|836126|836127|836128|836129|836130|901993|901994|901995|901996|901997|901998|901999|902000|902001|902002|902003|902004|902005|902006|902007|902008|919229|925573|925574|925575|925576|925577|925578|925579|925580|925581|925582|925583|925584|925585|925586|925587|934754|934755|934756|934757|934758|934759|934760|934761|934762|934763|946606|946607|946608|946609|946610|946611|946612|946613|946614|946615|946616|946617|946618|946619|946620|946621|946622|946623|946624|946625|946626|946627|946628|946629|946630|955818|955819|955820|955821|955822|955823|955824|955825|955826|972723|972724|977239|977240", + "text": "Hyperphosphatasia with mental retardation syndrome 2" + }, + { + "baseId": "44274|45135|136967|244232|263179|263213|263236|263381|263385|263413|377390|514008|514009|514060|590042|590043|590090|801222|962913", + "text": "12 conditions" + }, + { + "baseId": "44309|44625|44626|44627|44628|44629|45278|45279|45281|45282|45283|45285|45287|45288|107214|197402|197785|209442|210277|259943|397515|414860|539730|611797|621103|621523|621713|906046", + "text": "Familial aortopathy" + }, + { + "baseId": "44359|254603|254604|254605|254606|317483|317493|317494|317499|317501|317502|317504|317508|317510|317511|317513|317514|317515|317520|317522|317523|317525|317526|317534|317540|317541|317543|325345|325347|325349|325364|325371|325375|325376|325379|331604|331608|331612|331613|331615|333072|333076|333080|333081|333084|333088|333101|333111|333114|422801|434768|620444|725136|725138|738689|753440|769168|769169|816507|869980|869981|869982|869983|869984|869985|869986|869987|869988|869989|869990|869991|869992|869993|869994|869995|869996|869997|869998|869999|870000|870001|870002|870003|870004|870005|870006|870007|870008|870009|870010|870011|870012|870013|870014|870015|870016|870017|870018|870019|870020|872251|872252|962731", + "text": "Nephrogenic diabetes insipidus, autosomal" + }, + { + "baseId": "44478|917573", + "text": "Hyperimmunoglobulin M syndrome" + }, + { + "baseId": "44503", + "text": "Abnormality of the pancreas" + }, + { + "baseId": "44531|54320|212669|221599|256485|263269|263407|314659|314694|327517|328543|457637|481525|800839|800971|800972|800973|857358|858674|858675|858676|858677|858680|858681|858682|858683|858684|858687|858688|858689|858690|966128|966129|966130|966131|966132|966133|966134|966135|966136|966137|966138|966139|984045", + "text": "Male infertility" + }, + { + "baseId": "44665|44666|44667|45110|45111|45112|51095|53044|53047|53048|53049|53400|53401|53409|53410|53412|53419|53422|53425|53429|53430|53432|53438|53439|53440|53952|54696|101340|141809|173494|173631|175036|177852|195708|195709|198108|198236|229942|265307|265509|267704|267980|273196|284791|284792|284793|285474|285481|285482|287689|287699|287976|295481|295485|295486|295488|297261|297264|297267|297276|301110|301111|301112|301113|301277|302297|302312|302314|302318|302323|302325|302328|302331|302334|305507|305508|305522|305535|310338|310339|310367|310369|310440|310446|310467|310473|310479|310480|311447|311448|311449|312347|312348|312350|314358|314360|314364|317037|317039|317040|317041|317042|318236|320397|320409|323019|323021|323578|323593|323602|323607|323616|325066|353560", + "text": "Myofibrillar Myopathy, Dominant" + }, + { + "baseId": "44674|54130|54804|55576|56375", + "text": "Systolic heart failure" + }, + { + "baseId": "44729", + "text": "FNB1 POLYMORPHISM" + }, + { + "baseId": "44740|51466|51525|171178|197619|258907|262311|262312|262313|362492|362493|433137|511551|609191|609192|609193|609194|609197|609198|609199|609200|609231|609232|609233|609234|609235|609236", + "text": "Acute aortic dissection" + }, + { + "baseId": "44866|44870|44872|44877|44886|44899|44906|134593|207485|252883|252884|302335|303069|303070|303071|303072|303073|303074|306341|306342|306345|306346|306347|306348|311169|311170|311172|311173|311302|311303|311306|311310|311312|428735|428737|428738|441126|759683|898116|898117|898118|898119|898120|898121|898122|898123|898124|898125|898126|898127|898128|898129|898130|898131|898132|898133|898134|900365|900366|900367|900368", + "text": "Transient Neonatal Diabetes, Recessive" + }, + { + "baseId": "44922|134586|134590|134591|134592", + "text": "Gestational diabetes" + }, + { + "baseId": "44937|44938|44939|44940", + "text": "Idiopathic growth hormone deficiency" + }, + { + "baseId": "44974", + "text": "Beta-thalassemia, lermontov type" + }, + { + "baseId": "45009|165951|165951|165951|577852|677318|791984|816509|919914", + "text": "Fanconi renotubular syndrome 4 with maturity-onset diabetes of the young" + }, + { + "baseId": "45028|165951|360928", + "text": "Hyperinsulinemia" + }, + { + "baseId": "45034|45036|45037|45038|45039|45040", + "text": "Interferon gamma receptor deficiency" + }, + { + "baseId": "45062|134725|254105|254106|254108|313620|313624|313632|319803|319804|319810|319823|319825|319828|325998|326005|326977|326978|326979|326982|326983|737916|867734|868641", + "text": "Transient Neonatal Diabetes, Dominant/Recessive" + }, + { + "baseId": "45092|77991|78500|78501|78942", + "text": "Torsades de pointes" + }, + { + "baseId": "45132|141819|250744|250745|250746|286691|286693|286694|286696|286697|286699|286700|286702|287404|287405|287406|287407|287408|287411|287412|287413|289835|289853|289854|289855|289856|289857|289858|289860|290209|290210|290213|290214|290216|802093", + "text": "Hypergonadotropic hypogonadism" + }, + { + "baseId": "45135|77752", + "text": "Heart-hand syndrome, Slovenian type" + }, + { + "baseId": "45181|45186|50293|50294|102143|102146|102147|139878|139881|171148|171149|186157|186158|197521|212930|212936|212945|241193|254243|314528|314532|314540|314541|314543|314544|314549|314551|314552|321246|321250|321251|327382|327388|327389|327391|327398|327399|327400|328432|328438|328439|328445|328454|328456|328457|398322|398877|476473|806433|868255|868256|868257|868258|868259|868260|868261|868262|868263", + "text": "Hyperparathyroidism" + }, + { + "baseId": "45234|394626", + "text": "Malignant tumor of ascending colon" + }, + { + "baseId": "45287|101110|135555|142037|142040|142041|142042|142043|142045|142046|142050|142053|142060|194229|194230|197842|197852|197854|197875|197877|197879|255472|258971|265689|301318|301348|301371|304551|304556|304557|304558|309178|309179|309186|309190|309265|309277|309305|324371|324392|324398|324399|324400|324401|324406|324408|324411|324412|324414|324420|324429|324430|324437|324455|324464|324466|324467|333924|333925|333941|333944|333947|333948|333949|333951|333954|333965|333966|333972|333975|333980|333982|333983|333984|333987|340666|340676|340690|340695|340696|340703|340704|340706|340709|340721|340722|340727|340730|340731|342066|342077|342109|342111|342118|342121|342125|342130|342138|342139|342141|342151|342155|342156|342160|342168", + "text": "Lissencephaly, Recessive" + }, + { + "baseId": "45290|45320|53666|175563|178504|263260|320355|322278|322281|322290|322292|322305|322315|322319|322320|322321|328966|331578|331581|331583|331587|331597|331610|331619|331628|331630|331646|335616|335619|335627|335628|337435|338527|338558|338582|338583|338588|338608|338610|338614|338623|340274|340279|340282|340299|340308|340311|340314|340316|340327|340328|340329|340336|340337|389561|513956|513978|514135|805068|805119", + "text": "Atrial septal defect" + }, + { + "baseId": "45321", + "text": "Atrial septal defect-atrioventricular conduction defects syndrome" + }, + { + "baseId": "45358", + "text": "PRKAG2 cardiac syndrome" + }, + { + "baseId": "45375|269282|620400", + "text": "RAG1-Related Disorders" + }, + { + "baseId": "45377|45379|408345|488105|488117", + "text": "Atypical severe combined immunodeficiency due to complete RAG1/2 deficiency" + }, + { + "baseId": "45426|178601", + "text": "Pulmonary valve stenosis (rare)" + }, + { + "baseId": "45429|239836", + "text": "Paraganglioma" + }, + { + "baseId": "45432|45433|52528|57274|57275|57276|57277|57278|57279|57280|57281|57284|57289|174409|174410|174412|193416|198172|296515|296516|296528|296529|296535|296537|296543|296544|296547|296549|296550|296551|296552|296559|296560|296561|296562|296565|296566|296570|296571|296573|296574|296576|296581|296584|296585|296589|296597|296598|296602|296603|296607|296618|296619|296624|298425|298426|298435|298442|298448|298449|298456|298457|298459|298460|298461|298462|298471|298472|298473|298477|298479|298480|298481|298482|298483|298487|298488|298489|298490|302528|302530|302531|302540|302541|302542|302543|302562|302564|302565|302566|302582|302583|302596|302597|302598|302599|302602|302603|302604|302605|302606|302607|302625|302802|302803|302804|302806|302807|302814|302815|302816|302817|302820|302821|302822|302823|302824|302825|302826|302827|302828|302829|302830|302831|302832|302833|302834|302836|302839|302876|302882|302886|302887|302903|302904|302905|302906|302909|302910|302911|302912|302913|302914|368457|454842|501223|893644|893645|893646|893647|893648|893649|893650|893651|893652|893653|893654|893655|893656|893657|893658|893659|893660|893661|893662|893663|893664|893665|893666|893667|893668|893669|893670|893671|893672|893673|893674|893675|893676|893677|893678|893679|893680|893681|893682|893683|893684|893685|893686|893687|893688|893689|893690|893691|893692|893693|893694|893695|893696|893697|893698|893699|893700|893701|893702|893703|893704|893705|893706|893707|893708|893709|896067", + "text": "Qualitative or quantitative defects of delta-sarcoglycan" + }, + { + "baseId": "45445|153769|153770|153771|226683|226684|226685|226686|226687|226688|226689|226690|505914|537283|920371|961975|964480|965234", + "text": "Autoimmune disease, multisystem, infantile-onset, 1" + }, + { + "baseId": "45523|360895|360980|467795|514126|536138|536151|536160|536186|536187|678119", + "text": "Dilatation" + }, + { + "baseId": "45523|360895|551447|551448|551449|551450|551451|551452|551453|551454|551455|551456|551457|551458", + "text": "Dilatation of ascending aorta" + }, + { + "baseId": "45589", + "text": "Epilepsy, progressive myoclonic, 3, with intracellular inclusions" + }, + { + "baseId": "45612|267428|459890|459893|692773|692774|701198|701199|751971|836650", + "text": "Microphthalmia, syndromic 11" + }, + { + "baseId": "45613|45623|45624|97522|195940|205311|205791|379288|424668|446035|469909|488161|533138|550636|572021|572231|572931|611430|647719|647720|647721|647722|653449|694334|694335|704762|704763|716186|821239|822156|847322|847323|847324|917291|917553|941225|958545|964504|964886|971113", + "text": "Sotos syndrome 2" + }, + { + "baseId": "45613|45614|45615|45616|45617|45618|45619|45620|45621|45622|195940|205311|205311|208537|208538|379288|430127|469909|480574|533138|572021|572231|572931|611430|612165|647719|647720|647721|647722|653449|679805|679863|694334|694335|704762|704763|716186|791898|791899|791900|821239|822156|847322|847323|847324|855085|855086|855087|919823|919824|919825|941225|958545", + "text": "Marshall-Smith syndrome" + }, + { + "baseId": "45627|45628|192146|196059|230343|240659|254710|254711|254712|254713|254714|257184|260034|267190|318341|318346|318347|318351|326407|326412|326414|326431|326433|326437|326441|326442|326445|326457|326463|326465|326468|326472|332708|332712|332713|332714|332722|332730|332734|334311|334327|334331|334333|334334|334336|334340|334345|334347|334348|373254|389156|488858|769292|776114|788076|870341|870342|870343|870344|870345|870346|870347|870348|870349|870350|870351|870352|870353|870354|870355|870356|870357|870358|870359|870360|870361|870362|870363|870364|870365|870366|870367|870368|870369|872285|872286|919467|962989|962990|962991|962992|962993|962994|962995|962996|962997|962998|962999|963000|963001|963002", + "text": "Fraser syndrome 3" + }, + { + "baseId": "45631|45632", + "text": "Uric acid concentration, serum, quantitative trait locus 4" + }, + { + "baseId": "45672|45673|45674|213522|247397|424639|550582|551280|590570|590571|590572|590573|590574|590575|590576|622314|678058|707518|789998|918649|918650|918651|918652|920153|920154|961253|961588|964804|969701|970518|972710|976643", + "text": "Cerebellar ataxia, nonprogressive, with mental retardation" + }, + { + "baseId": "45680|205070|256668|256669|256671|256672|256675|256678|256679|256680|469786|532291|532304|647286|647287|704617|704618|704619|950536|950537|950538|950539|958474", + "text": "Heterotaxy, visceral, 6, autosomal" + }, + { + "baseId": "45690|508946|508947", + "text": "Mental retardation, X-linked, syndromic, martin-probst type" + }, + { + "baseId": "45707|47507|47508|207990|578658|581209", + "text": "Dentatorubral-pallidoluysian atrophy" + }, + { + "baseId": "45720|45721|45722|45723", + "text": "Amyotrophic lateral sclerosis 18" + }, + { + "baseId": "45724|213624", + "text": "Multiple sclerosis, susceptibility to, 5" + }, + { + "baseId": "45726|48099|181401|181460|202291|205386|361063|361064|361073|361074|361075|361076|801217", + "text": "Neurodegeneration" + }, + { + "baseId": "45728|200974|259235|424188|424189|425207|425208|513512|613401|861670|963435|964991", + "text": "Short stature, optic nerve atrophy, and Pelger-Huet anomaly" + }, + { + "baseId": "45733|45734|514235|514236|514237", + "text": "Adams-Oliver syndrome 3" + }, + { + "baseId": "45735", + "text": "Macroglobulinemia, waldenstrom, somatic" + }, + { + "baseId": "45736|45737|45738|45739|45740|136024|136025|205165|207805|207806|214308|253957|253958|371008|371651|373633|460703|491337|502973|502978|502979|503869|525534|525632|525633|639327|639328|639329|724132|804670|919309|925987|935259", + "text": "Orofacial-digital syndrome IV" + }, + { + "baseId": "45741|136024|136025|207805|207806|214308|214308|253957|253958|371008|371651|373633|460703|491337|502973|502978|502979|503869|525534|525632|525633|639327|639328|639329|724132|925987|935259", + "text": "Joubert syndrome 18" + }, + { + "baseId": "45742|45743|578423|612267|653861|984049|984050", + "text": "Short stature, onychodysplasia, facial dysmorphism, and hypotrichosis" + }, + { + "baseId": "45742", + "text": "Primordial dwarfism" + }, + { + "baseId": "45747|45748|45749|45750|45751|168851|168852|168854|168858|168859|178382|178384|178386|189077|205767|207816|207817|213605|213606|213607|213608|264585|359911|361201|362433|362437|362438|362442|364273|408285|421828|424353|424489|424701|425906|429172|429173|429174|434105|439883|444733|481237|495699|513312|513437|513719|513720|514622|552149|553178|553179|611405|653878|653879|677432|678941|682816|791103|791104|791105|791106|791107|791108|791109|791110|791111|791112|791113|798636|798637|805092|805093|805094|815992|816523|861636|903575|919320|919321|919322|963156|963718|963721|964355|969778|969783|969790|970928|970929|977245|983850", + "text": "Wiedemann-Steiner syndrome" + }, + { + "baseId": "45756|45759|101173|143120|143121|143122|143123|190474|191228|191383|191385|191386|191387|191390|191391|191392|191393|191394|195689|195690|195977|223606|237012|250117|250119|250120|250130|250131|250133|250135|250138|266450|266537|266975|271804|271885|282377|282381|282384|283817|283821|283844|283873|284081|284088|437660|448555|448667|448763|511313|513019|516361|558707|559192|559194|587219|587220|628420|628421|628422|628423|690714|690715|690718|690719|690724|690725|690728|696993|696994|696997|707697|707699|719215|719216|719218|746754|805075|824722|824723|824724|922230|942218|962151|964162|964163|969600|970706|970707", + "text": "Culler-Jones syndrome" + }, + { + "baseId": "45764|45764|106771|166216|231596|244402|367075|367077|367117|367118|368056|368060|451581|451583|451592|451831|451844|451847|451907|452000|452055|452067|518716|518852|518860|518870|518884|518886|518895|518896|518898|558720|559241|559243|559245|561066|561068|562204|562205|562209|630682|630683|630684|630685|630686|630687|630688|630689|630690|630691|630692|630693|672045|691246|691248|691249|695166|708436|720041|747851|747852|747853|747854|763489|781497|827219|827220|827221|827223|827224|827225|827226|827227|827229|827231|827232|827233|827234|922968|922969|922971|931658|931659|931660|943209|943210|943211|943212", + "text": "Hereditary motor and sensory neuropathy, Okinawa type" + }, + { + "baseId": "45764|106771|106771|231596|244402|367075|367077|367117|367118|368056|368060|451581|451583|451592|451831|451844|451847|451907|452000|452055|452067|518716|518852|518860|518870|518884|518886|518895|518896|518898|558720|559241|559243|559245|561066|561068|562204|562205|562209|630682|630683|630684|630685|630686|630687|630688|630689|630690|630691|630692|630693|672045|691246|691248|691249|695166|708436|720041|747851|747852|747853|747854|763489|781497|827219|827220|827221|827223|827224|827225|827226|827227|827229|827231|827232|827233|827234|922968|922969|922971|931658|931659|931660|943209|943210|943211|943212", + "text": "Spastic paraplegia 57, autosomal recessive" + }, + { + "baseId": "45764", + "text": "Amyotrophic Lateral Sclerosis with Sensory Neuropathy" + }, + { + "baseId": "45766|134078|134079|134081|134082|134083|255861|255865|260126|409731|429842|429843|441920|441921|441922|441923|441925|441926|465942|465943|465947|465949|465950|465954|465960|465966|466677|466682|466683|466687|466688|466691|466716|466731|466737|466740|466744|466756|466976|466979|466982|466983|466989|495804|530223|530224|530226|530290|530294|530300|530308|530524|530526|530528|530529|530746|530747|530749|568298|568299|568303|568304|570428|570429|570433|570437|570439|570441|570445|570448|570451|570520|570521|570522|570525|570528|574151|574154|574155|574158|574160|574163|622511|644952|644953|644954|644955|644956|644957|644958|644959|644960|644961|644962|644963|644964|644965|644966|644967|653306|693925|693926|693927|693928|693930|695706|703802|755380|771057|785380|788902|793646|797376|820871|844273|844274|844275|844276|844277|844278|844279|844280|844281|851677|927931|927932|927933|927934|927935|927936|927937|927938|927939|927940|937593|937594|937595|949550|949551|957867|957868|957869", + "text": "Myopathy, centronuclear, 4" + }, + { + "baseId": "45768|132462|330533|330576|480523|480524|480525|480525|480526|714238|816325|961655", + "text": "Weill-Marchesani syndrome 3" + }, + { + "baseId": "45769|45770|45771|45772|45774|45775|45776|360222|430984|430985|611371|961966|963365", + "text": "Interstitial nephritis, karyomegalic" + }, + { + "baseId": "45777", + "text": "Tetraparesis" + }, + { + "baseId": "45777|45778|514099", + "text": "Oculogyric crisis" + }, + { + "baseId": "45777", + "text": "ATP1A3-Related Disorders" + }, + { + "baseId": "45783|45784|45785", + "text": "Spermatogenic failure 10" + }, + { + "baseId": "45790|222256|359092|359093|359094|919461|970971", + "text": "Myoclonus, intractable, neonatal" + }, + { + "baseId": "45793|45794|45795|45796|45797|45799|45800|45801|188783|192536|259687|446968|448403|448406|512890|623249|690681|780786|780787|799233|819007|819008|824565|824566|856129|858981|922181|922182|930717|942154|942155|952563|952564|952565|966364|966365|966366|966367|966368|966369|966370|966371|966372|966373|966374|966375|966376|966377|966378|966379|966380|966381|966382|966383|966384|966385|966386|966387|966388", + "text": "Leber congenital amaurosis 9" + }, + { + "baseId": "45805|181576|190296|275014|677158", + "text": "Osteogenesis imperfecta type 5" + }, + { + "baseId": "45816|79738|430082", + "text": "MICROCEPHALY, SHORT STATURE, AND POLYMICROGYRIA WITH SEIZURES" + }, + { + "baseId": "45817|45818|45819|134660|166227|207075|251131|251132|251134|251135|251136|251137|364234|367236|367239|367242|367555|367581|368606|406306|425561|428182|428183|428185|428186|428187|443458|452416|452423|452426|452614|452617|452634|452637|452723|452734|452736|452954|452958|452968|452980|490206|500267|500744|518705|519296|519299|519301|519303|519304|519345|519351|519494|519497|519500|519548|519550|519552|535700|559000|559002|559004|559515|559517|559519|561573|561575|561586|561587|561593|561596|561598|562965|562967|631425|631426|631427|631428|631429|631430|631431|631432|631433|631434|631435|631436|631437|631438|631439|631440|631441|631442|631443|631444|631445|631446|631447|691415|691417|691418|691419|691420|698094|698095|708859|720445|734065|748265|748266|790395|828163|828164|828165|828166|828167|828168|828169|828170|828171|828172|828173|828174|828175|828176|828177|828178|828179|923210|923211|923212|923213|923214|923215|923216|931955|931956|931957|931958|931959|931960|943563|943564|943565|943566|953485|953486|953487|953488|953489|953490", + "text": "Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type a, 8" + }, + { + "baseId": "45821|45822|45823|45824|45825", + "text": "Amelogenesis imperfecta, hypomaturation type IIA4" + }, + { + "baseId": "45829|305423|305427|305429|305430|305431|305435|305436|305442|305451|305457|305464|305466|305467|305469|305470|305471|305474|305475|309317|309318|309319|309320|309322|309323|309324|309326|309327|309332|309334|309336|309337|309340|309347|309350|309351|314561|314562|314563|314574|314578|314588|314593|314600|314607|314609|314613|314626|314627|314636|314637|314638|314639|314644|314645|314646|314648|314649|314651|314652|314657|314661|314662|314666|314669|314670|314680|314682|512834|614322|614323|620300|700601|723131|730581|730582|766857|899697|899698|899699|899700|899701|899702|899703|899704|899705|899706|899707|899708|899709|899710|899711|899712|899713|899714|899715|899716|899717|899718|899719|899720|899721|899722|899723|899724|899725|899726|899727|899728|899729|899730|899731|899732|899733|899734|899735|900504|900505|900506|900507|919159|980462", + "text": "Natural killer cell and glucocorticoid deficiency with DNA repair defect" + }, + { + "baseId": "45831|227915|278238|390510|513500|970669", + "text": "CFHR5 deficiency" + }, + { + "baseId": "45838", + "text": "Achromatopsia 6" + }, + { + "baseId": "45838", + "text": "PDE6H-Related Disorders" + }, + { + "baseId": "45845|48309|48310|48311|48312|48313|97521|170174|170176|170177|170178|205706|209171|209172|209173|209174|213672|225805|265124|353914|361252|423089|426754|439701|472203|513841|513842|513843|513844|534365|535678|551800|575447|575511|612125|677475|694933|786903|788953|792498|792499|852985|857661|917373|920062|920063|964002|975723", + "text": "Cornelia de Lange syndrome 5" + }, + { + "baseId": "45854|247093|463047|463533|464015|464019|527838|527962|528419|528425|528428|566240|566244|568711|568713|568714|572680|642123|642124|642125|642126|642127|652449|652850|714005|714006|725569|739130|760293|769679|769680|775973|779701|841078|841079|841080|841081|841082|841083|841084|841085|841086|841087|841088|841089|841090|852727|926967|936519|936520|936521|936522|936523|936524|957156", + "text": "Herpes simplex encephalitis, susceptibility to, 3" + }, + { + "baseId": "45855|45856|468928|468929|469923|470355|470359|471047|486803|533088|533094|533095|533181|533185|533190|533195|533197|533200|533205|533208|533614|533617|533618|570875|570877|570881|570886|572559|572561|572563|572566|572568|573193|573198|573202|573205|573206|574998|648198|648199|648200|648201|648202|648203|648204|648205|648206|648207|648208|705136|716570|716571|716572|728307|728308|728309|742018|742020|757144|757145|757146|757148|772771|772772|772774|772778|786238|786239|847790|847791|847792|847793|847794|847795|847796|847797|847798|847799|847800|847801|847802|847803|847804|847805|847806|847807|847808|929005|929006|929007|938746|938747|938748|938749|938750|938751|938752|938753|950834|950835|950836|958673|958674", + "text": "Herpes simplex encephalitis, susceptibility to, 4" + }, + { + "baseId": "45860|194977|194978|194979|194981|194982|194983|194984|194986|255759|255761|255762|255763|255764|255765|255767|255768|255769|255770|255771|255772|255773|255775|255778|268033|270923|389167|415495|445583|465756|465757|465761|465763|466466|466483|466487|466734|466736|466742|466743|512950|530147|530155|530156|530157|530336|530539|568169|570238|570245|570316|584314|644708|644709|644710|644711|644712|644713|644714|644715|644716|644717|644718|644719|652565|677450|693884|693885|693886|703718|703719|703720|703722|703723|703724|703725|703726|714950|726667|726668|726671|731072|740220|740221|740224|755206|755207|770916|770924|770926|778269|785284|788898|843893|843894|843895|843896|843897|843898|843899|843900|843901|843902|843903|843904|843905|843906|843907|843908|843909|843910|843911|843912|843913|843914|843915|843916|843917|843918|843919|843920|843921|843922|843923|843924|843925|843926|843927|852115|927828|927829|927830|927831|927832|927833|927834|927835|937459|937460|937461|937462|937463|937464|937465|937466|937467|937468|937469|937470|937471|937472|937473|937474|937475|949409|949410|949411|949412|949413|949414|949415|949416|949417|949418|949419|957769|957770|957771|957772|957773|957774|957775|957776|971547", + "text": "Nephronophthisis 14" + }, + { + "baseId": "45861|45862", + "text": "Joubert syndrome 19" + }, + { + "baseId": "45863|45864|135244|192046|208116|265344|714148|792792|919531|919532|920334", + "text": "Seckel syndrome 7" + }, + { + "baseId": "45865|431741", + "text": "Retinitis pigmentosa 65" + }, + { + "baseId": "45867|45868|45869|45870|45871|191414|191573|237318|253997|254000|254001|254002|254007|254008|254009|254010|265400|269350|408273|408274|421822|460890|460895|460897|460904|460911|461224|461703|461710|461712|493315|525907|525982|564431|564433|565520|565524|567050|583109|622398|639720|639721|692932|692933|692934|692935|692936|692937|701575|701576|701578|701579|701580|701581|701582|701583|701584|701585|701586|701587|724203|724205|730727|737745|737746|752442|777901|779507|820338|837964|837965|837966|837967|837968|837969|837970|837971|837972|837973|837974|837975|837976|837977|837978|837979|837980|837981|837982|837983|837984|837985|837986|837987|837988|837989|837990|837991|837992|837993|837994|837995|837996|837997|837998|837999|838000|838001|838002|838003|838004|851423|851425|852327|852604|919319|926125|926126|926127|926128|926129|926130|935384|935385|935386|935387|935388|935389|935390|935391|935392|935393|935394|935395|935396|935397|935398|935399|935400|940204|947307|947308|947309|947310|947311|947312|947313|947314|947315|947316|947317|947318|947319|947320|947321|947322|947323|947324|947325|947326|947327|947328|947329|956381|956382|956383|956384|956385|956386|956387|956388|956389|956390|956391|956392|956393|959975|959976|959977|980338|980339|980941", + "text": "Nephronophthisis 15" + }, + { + "baseId": "45875|48301|102597|102597|102598|196002|196003|196004|201157|201174|206798|360811|391203|434754|515912|611376|614219|614220", + "text": "Epilepsy, idiopathic generalized, susceptibility to, 12" + }, + { + "baseId": "45881|45882|188060|188061|188062|188063|304896|304903|304914|304916|304921|304922|304924|304925|304927|304934|304935|304944|304945|304946|304955|308601|308620|308621|308622|308649|308652|308653|308654|308665|313807|313808|313809|313827|313830|313833|313843|313879|313880|313881|313890|313894|313899|313907|313909|313910|489925|502433|620804|722994|722995|751066|766727|783075|783076|899337|899338|899339|899340|899341|899342|899343|899344|899345|899346|899347|899348|899349|899350|899351|899352|899353|899354|899355|899356|899357|899358|899359|899360|900469|900470|900471|900472|900473|900474", + "text": "Osteogenesis imperfecta, type xiii" + }, + { + "baseId": "45883|45884|79733|917045", + "text": "Hypogonadotropic hypogonadism 14 with or without anosmia" + }, + { + "baseId": "45885", + "text": "Hypogonadotropic hypogonadism 14 with anosmia" + }, + { + "baseId": "45886|231438|672114", + "text": "Deafness, autosomal recessive 98" + }, + { + "baseId": "45886|581214", + "text": "ECTODERMAL DYSPLASIA 14, HAIR/TOOTH TYPE WITH HYPOHIDROSIS" + }, + { + "baseId": "45887|45888|45889|45890|45891|45892|45893|244461|443680|454334|454474|454843|520582|521013|536156|536157|560055|560057|564516|625110|633049|633050|633051|651206|651247|651274|691685|799396|799397|830052|830053|830054|830055|923792|923793|923794|932638|932639|944315|944316|944317|953961|966346", + "text": "Autosomal recessive axonal neuropathy with neuromyotonia" + }, + { + "baseId": "45894|45895|45897|255053|264602|360112|363793|373153|373161|373897|373900|374295|374338|376136|376152|376157|376186|409149|409150|504596|504605|505516|505518|566610|568255|569014|569015|569016|578515|642680|642681|642682|642683|642684|656261|656262|739311|744709|744821|769909|841721|841722|841723|927157|927158|936708|936709|936710|940313|941066|948649|948650|948651|957296|957297|957298|961790|964860|964861", + "text": "Methylmalonic acidemia with homocystinuria, type cblJ" + }, + { + "baseId": "45898|45899|45900|275441|469367|470401|470403|533545|533577|533579|533626|533630|533632|571250|571252|573522|573525|648707|648708|648709|648710|648711|648712|648713|648714|648715|648716|728675|742424|745437|757547|773118|848425|848426|848427|848428|853000|929198|929199|929200|938986|951106|951107|951108|958849|958850", + "text": "T-cell immunodeficiency, recurrent infections, and autoimmunity with or without cardiac malformations" + }, + { + "baseId": "45973|66594|132250|133046|196493|243095|422134", + "text": "bilateral breast cancer" + }, + { + "baseId": "45976|46561|183836|408995|454262|494965|561356", + "text": "B lymphoblastic leukemia lymphoma with hyperdiploidy" + }, + { + "baseId": "45994|65919|67015|69561|235341|432821|535741|550711|550712|550715|550716", + "text": "Infiltrating duct carcinoma of breast" + }, + { + "baseId": "46090|550709", + "text": "Ovarian Serous Surface Papillary Adenocarcinoma" + }, + { + "baseId": "46149|46401|46599|49999|65717|66312|66327|66754|67015|70387|102669|131163|139844|213034|226153|409019|550699|550701|550714|550736", + "text": "Cancer of the pancreas" + }, + { + "baseId": "46422|150752|392715", + "text": "Anaplastic/large cell medulloblastoma" + }, + { + "baseId": "46454", + "text": "Invasive Lobular Breast Carcinoma" + }, + { + "baseId": "46540|983702", + "text": "Metastatic Prostate Small Cell Carcinoma" + }, + { + "baseId": "46816|66317|150689|615890", + "text": "Genetic non-acquired premature ovarian failure" + }, + { + "baseId": "46911|584407", + "text": "MPV17-related mitochondrial DNA maintenance defect" + }, + { + "baseId": "46918", + "text": "MPV17-Related Disorders" + }, + { + "baseId": "46918|584407|614556|971338", + "text": "Charcot-marie-tooth disease, axonal, type 2ee" + }, + { + "baseId": "46918", + "text": "Mitochondrial DNA depletion syndrome type 6" + }, + { + "baseId": "47241", + "text": "Alpha-thalassemia and related diseases" + }, + { + "baseId": "47407", + "text": "Hereditary mixed polyposis syndrome 1" + }, + { + "baseId": "47468|140563|140564|140566|140572|140573|140574|140578|140579|140580|140583|140590|140592|140593|140594|140595|140596|140597|140600|140601|140602|140603|140604|140605|140607|140611|140612|140614|140615|140617|140620|140621|140622|140623|140624|140625|140627|140628|140629|140630|140631|140632|140633|140634|140635|140636|140637|140638|140639|140642|140643|140644|140646|140647|140648|140649|140652|140655|140656|140657|140660|140661|140662|140663|140664|140666|140668|140669|140670|140673|140674|165530|178495|192176|194215|194613|195202|196151|209414|209502|209505|209518|209522|209531|209533|209541|209560|209562|209563|209576|209578|209580|209962|209966|209971|209973|209979|209991|209992|209995|209996|209998|210006|210018|210032|210035|210036|210062|210067|210072|210088|210114|210144|240514|250459|250467|253424|258233|270149|283541|283542|283547|283548|283559|283566|283567|283568|283571|284203|284208|284211|284212|284213|284215|284216|284222|284223|284225|284226|284228|284232|284233|284234|284247|286133|286134|286163|286165|286172|286199|286200|286204|286206|286223|286224|286226|286227|286228|286241|286242|286243|286251|286254|286255|286526|286528|286530|286541|286542|286543|286545|286560|286568|286569|286572|286575|286577|286579|286587|307452|307465|307467|307468|307469|307473|307475|307488|307490|307491|307495|307496|307502|307503|307505|307509|307513|307524|307525|307530|307531|307541|307542|307547|307548|307553|307554|307555|311695|311700|311702|311704|311705|311706|311709|311710|311711|311726|311732|311733|311738|311762|311763|311764|311767|311774|311778|311780|311781|311785|311787|311790|317251|317263|317291|317297|317298|317305|317318|317320|317322|317325|317327|317332|317337|317341|317354|317367|317369|317375|317385|317660|317665|317667|317679|317688|317695|317696|317714|317716|317730|317731|317753|317754|317766|317767|317768|317776|317778|317795|317798|317809|317819|317820|317828|317829|317833|317835|317839|317840|329115|329116|329117|329118|329119|329120|329121|329133|329136|329137|339236|339242|339248|345143|345153|346516|346533|346537|346539|346540|346545|346569", + "text": "Ehlers-Danlos syndrome, type 7A" + }, + { + "baseId": "47563|47564", + "text": "FLNB-Related Disorders" + }, + { + "baseId": "47566|51094|51095|53399|53400|53402|53406|176761|178210|224412|260536|265743|372156|372162|398060|460867|460870|460873|461166|461170|461650|503133|525872|526384|526387|564379|564392|565479|565481|565481|565483|567039|639687|639688|639689|639690|639691|652091|684223|701557|820330|837939|837940|837941|837942|837943|837944|858562|919317|926112|926113|926114|926115|926116|935375|935376|947295|947296|947297|947298|947299", + "text": "Dilated cardiomyopathy 1II" + }, + { + "baseId": "47581|47593|47595|47596", + "text": "Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal recessive 3" + }, + { + "baseId": "47593|76993|140787|143071|143072|192333|200016|200025|200027|203034|203048|264339|286556|286557|287233|287252|287253|287255|287320|287322|287323|287327|287329|288040|288052|288067|288073|288079|288085|288797|290524|290733|290734|290735|290736|290751|290752|290971|290990|290991|290992|290993|290994|291008|303732|303737|303738|307196|307236|309188|309201|309206|312159|312174|319813|320336|326063|326064|326069|328425|334869|335751|336685|336708|342086|342087|343618|400552|654473", + "text": "Mitochondrial DNA depletion syndrome" + }, + { + "baseId": "47638", + "text": "Juvenile osteochondrosis of spine" + }, + { + "baseId": "47804|679696", + "text": "Early onset Alzheimer disease with behavioral disturbance" + }, + { + "baseId": "47804|202949", + "text": "Spinocerebellar atrophy" + }, + { + "baseId": "47877|293008|293012|293015|294375|294393|294426|294429|294445|297815|297842|297866|297867|297868|297869|297870|297871|297882|297942|297955|297961|297962|297969|297970|344942", + "text": "Corneal Dystrophy, Recessive" + }, + { + "baseId": "47950|47951|166409|166410|622295|622296", + "text": "CYP2C19: decreased function" + }, + { + "baseId": "47956", + "text": "CYP2C19: increased function" + }, + { + "baseId": "48023|48024|48025", + "text": "Hypocalciuric hypercalcemia, familial, type III" + }, + { + "baseId": "48032|75606|75607|75608|75609|75610|75611|75612|614263", + "text": "Asplenia, isolated congenital" + }, + { + "baseId": "48037|48038|48039|48040|192597|194556|291931|291937|291945|291952|293332|293338|293339|293340|293343|293359|293364|293365|293377|296658|296659|296663|296665|296666|296668|296673|296678|296700|489319|512897|620140|672054|748664|748665|828662|828663|889874|889875|889876|889877|889878|889879|889880|889881|889882|889883|889884|889885|889886|889887|889888|889889|889890|889891|889892|889893|889894|889895|889896|889897", + "text": "Congenital stationary night blindness, type 1F" + }, + { + "baseId": "48045|48046|134365|134366|134367|134368|306884|306892|306894|306895|306897|311069|311074|311076|311077|316675|316676|316677|316680|317008|317016|317021|369771|523990|524289|524595|562775|565527|620318|637715|637716|651812|851722|901132|901133|901134|901135|901136|901137|901138|901139|901140|901141|903317|940129|946374|972574", + "text": "Congenital disorder of glycosylation type 1u" + }, + { + "baseId": "48047|48048|48049|48050", + "text": "Sarcosine dehydrogenase deficiency" + }, + { + "baseId": "48054|48055|48056|48057|48057|48058|48059|48060|48061|131928|131928|132070|193473|237026|269259|271648|276543|276558|276562|276794|276807|276825|276830|277373|277374|277381|277382|277442|277450|277464|277465|364461|364502|404940|447149|447303|481331|511176|515098|515130|515133|515148|515152|515244|515245|515250|556606|556608|556610|556661|556663|556665|556667|558134|558136|626873|626874|626875|626876|626877|626878|626879|626880|626881|626882|626883|626884|626885|626886|626887|626888|626889|626890|626891|626892|650630|678121|690363|690364|690367|690369|690371|690372|690374|695001|696128|696131|696132|696133|718251|729922|743713|777034|780340|794432|794433|822768|822769|822770|822771|822772|822773|822774|822775|822776|822777|822778|822779|822780|822781|903676|918562|918563|921660|921661|921662|921663|930055|930056|930057|941473|941474|941475|941476|941477|941478|941479|941480|941481|941482|941483|941484|941485|941486|941487|952084|952085|952086|952087|952088|952089|959522|980436", + "text": "Aicardi-Goutieres syndrome 6" + }, + { + "baseId": "48066", + "text": "Epidermolysis bullosa, nonspecific, autosomal recessive" + }, + { + "baseId": "48072|48073|48074|48075|48076|48077|48078|48079|48080|237480|237482|424585|481067|581869|920302", + "text": "Opsismodysplasia" + }, + { + "baseId": "48087|48088|48089|48090|48091|48092|106522|106523|106524|171286|188955|206947|237474|237475|237476|361175|427991|427993|427995|427996|481363|581866|590119|804990|804991|804992|804993|805059", + "text": "Distal arthrogryposis type 5D" + }, + { + "baseId": "48093|920258", + "text": "Osteogenesis imperfecta, type xiv" + }, + { + "baseId": "48094|260407|260408|433926|442901|448453|448461|448524|448576|448587|448594|448660|448665|516236|516237|516239|516244|516249|516250|516252|516255|516256|516262|516268|516343|516348|516354|516356|540442|557416|557456|557458|557460|557462|557464|557466|557468|557470|557519|557521|557523|557525|558667|558669|558671|558673|558675|558677|558679|559170|559172|609441|650390|650391|650394|650395|650396|650397|650398|650400|650401|650402|650403|690688|690690|690691|690692|690693|690694|690695|690696|690697|690698|695065|695066|695067|719178|719179|732694|762136|778868|780802|819023|819024|819025|824615|824616|824617|824618|824619|824620|824621|824622|824623|824624|824625|824626|824627|824628|824629|922205|922206|922207|922208|922209|922210|930746|930747|930748|942177|942178|952600|952601|952602|952603|964648", + "text": "Neuronopathy, distal hereditary motor, type viia" + }, + { + "baseId": "48095|48096|48097|48098|241088|565641|639919|798641|919354", + "text": "Dystonia 24" + }, + { + "baseId": "48099|48100|48101|48102|48103|421466|426742|426743|553413|622877|792741|963133", + "text": "Spastic paraplegia 56, autosomal recessive" + }, + { + "baseId": "48104|48105", + "text": "Hypotrichosis 11" + }, + { + "baseId": "48106|48107|171847|215009", + "text": "Klippel-Feil syndrome 2, autosomal recessive" + }, + { + "baseId": "48114", + "text": "Brachydactyly, type a1, c" + }, + { + "baseId": "48144", + "text": "Congenital nonbullous ichthyosiform erythroderma" + }, + { + "baseId": "48144|285303|287455|287457|287669|287716|296690|296692|298558|298559|298575|298587|302679|302683|302685|302719|307050|307386|330559|332788|340757|340761|340769|346392|347722|347734|347764|348283|349495|361957|361959|443963|613741|672241|672242|672243|672244|672245|672246|672247|672248|672249|672250|672251|672252", + "text": "Congenital ichthyosiform erythroderma" + }, + { + "baseId": "48151|48152", + "text": "Zinc deficiency, transient neonatal" + }, + { + "baseId": "48154|48155|48156|48158|249390|249391|276592|614182|614183|614184|614185|614186|816300|980433", + "text": "Ectopia lentis et pupillae" + }, + { + "baseId": "48160|48161|252342|252343|252344|252345|252346|300019|300029|300031|300036|300038|300042|300044|300048|302702|302703|302704|302705|302706|302709|302720|302721|307051|307054|307055|307056|307333|307334|307337|307366|307367|307368|307379|307380|307392|361956|361957|361958|361959|361960|389753|431011|438322|443963|609204|613741|622227|622228|622229|622230|622231|622262|710481|710482|722017|722019|895904|895905|895906|895907|895908|895909|895910|895911|895912|895913|895914|895915|895916|895917|895918|895919|895920|895921|896237|896238|896239", + "text": "Autosomal recessive congenital ichthyosis 10" + }, + { + "baseId": "48162|48163|48164|361490|407824|439114|459707|539027|563592|563593|563597|564510|569524|569541|576135|578482|609740|626196|638758|638759|652089|701216|701217|701219|701220|701221|712196|712197|712198|712199|712200|712201|723801|723802|723803|723805|723807|723808|723810|744552|759933|767653|779459|779461|790942|820192|836678|836679|836680|836681|836682|920281|925759|934976|960714|961783|961784", + "text": "2-aminoadipic 2-oxoadipic aciduria" + }, + { + "baseId": "48165|213597|446857|539027|576135|608957|903493", + "text": "Charcot-Marie-Tooth disease, axonal, type 2Q" + }, + { + "baseId": "48168|48169", + "text": "Phosphohydroxylysinuria" + }, + { + "baseId": "48170|48171|134744|205242|213552|244153|247430|259766|259766|290723|291634|291659|440803|443460|494945|494946|494947|494948|494949|494950|511499|576106|612473|790396|790397|963540|966847|969704", + "text": "Spinocerebellar ataxia type 29" + }, + { + "baseId": "48177|48178|48179|139356|139357|384501|384502|411517|513138|513139|623349|623350|818335", + "text": "Nephrotic syndrome, type 7" + }, + { + "baseId": "48180|135314|135316|429275|461567|461898|462239|579720|579721|579732|579738|579760|579953|579968|672082|695536|701900|738162|768632|777983|778160|787698|941009", + "text": "Schuurs-hoeijmakers syndrome" + }, + { + "baseId": "48180|198826|514050|514051", + "text": "Mitral valve prolapse" + }, + { + "baseId": "48180", + "text": "Optic disc pallor" + }, + { + "baseId": "48180|360984|459248", + "text": "Aortic root dilatation" + }, + { + "baseId": "48180|550131|590736", + "text": "Hypotelorism" + }, + { + "baseId": "48180", + "text": "PACS1-related syndrome" + }, + { + "baseId": "48187|48188|70502|70502|139368|251822|270125|270626|363941|363941|454742|454749|454815|454817|455307|455595|455600|455602|455604|513955|520924|520926|520927|521357|559833|560213|560334|562990|562995|562996|633635|633636|633637|691784|691785|691786|691787|691788|691789|691790|695283|698920|698921|698922|698924|698927|698928|698929|698930|698932|698933|698934|698935|698937|698938|698939|709731|709732|721300|721301|721302|721305|734934|749343|749349|830537|830538|918933|918934|923948|923949|944491|944492|944493|954093", + "text": "Basal ganglia calcification, idiopathic, 4" + }, + { + "baseId": "48191|135824|195354|391252|427838|983535", + "text": "Early infantile epileptic encephalopathy 15" + }, + { + "baseId": "48192|48192|48193|48193|48194|48194|48195|48196|48197|48198|48198|97568|97568|131953|131953|134797|134800|134801|134802|134804|134804|134805|134806|134807|134808|134809|134810|134811|134812|134813|134814|190603|190604|191084|191085|191086|191275|191587|191944|192044|192045|192142|192143|192145|192779|192780|193143|193664|193793|194489|207650|207651|207652|207653|207654|207655|225839|225839|225840|225840|237102|240525|240527|240528|240529|240531|240532|259918|264399|264434|264494|265856|270947|270947|272505|273018|273452|273511|274244|274653|359914|361531|361532|361631|362336|370113|370123|370129|370135|370137|370147|370148|370157|370159|370162|370188|370555|370557|370592|370602|370609|370616|370625|370626|370633|370648|370673|370697|370701|370704|370708|370719|370725|370729|370730|370895|370902|370905|370929|370930|370937|370942|370972|370977|370982|370985|370988|370998|371009|371015|371017|371025|371033|371045|371052|371058|371073|372572|372631|372640|372655|372656|372693|372698|372700|372707|372719|372754|372755|372761|396706|396707|396710|396722|396723|396724|396728|396729|396730|396733|396900|396915|396917|396923|396924|396944|396946|396949|396953|397020|397025|397039|397045|397047|397299|397300|397305|397306|407610|407611|407614|407619|413802|413803|421727|425833|441324|441325|441326|444411|444414|444418|444419|444421|458856|458863|458864|458873|458875|458877|458887|458896|458904|458905|459229|459235|459238|459244|459246|459249|459251|459255|459258|459267|459275|459280|459281|459283|459285|459288|459294|459311|459313|459686|459691|459697|459700|459703|459705|459708|459710|459716|459718|459721|459724|459733|488158|489409|491623|492800|494056|502387|502408|502410|502412|502717|502720|502722|503119|503147|503172|524324|524326|524327|524336|524338|524344|524594|524597|524599|524600|524606|524608|524610|524615|524621|524625|524632|524636|524759|524760|524763|524764|524782|524785|524787|524791|524797|524803|524807|524922|524927|524934|524936|524940|524942|524944|524949|536766|539020|539020|552136|552137|562987|562991|563002|563004|563006|563012|563019|563021|563025|563236|563736|563742|563744|563756|563756|563757|563759|563764|563767|563769|563780|565734|565735|565740|565743|565745|565746|565748|568323|568810|568814|568817|568818|568825|579550|579555|579560|579567|579621|579632|584641|586592|586592|614339|637999|638000|638001|638002|638003|638004|638005|638006|638007|638008|638009|638010|638010|638011|638012|638013|638014|638015|638016|638017|638018|638019|638020|638021|638022|638023|638024|638025|638026|638027|638028|638029|638030|638031|651838|651929|651991|652146|655924|655926|684064|684065|685248|687420|687421|687422|687424|687426|687427|687432|687433|689943|692634|692635|695429|695430|736998|737001|751536|759890|767261|767269|767270|767272|790860|790861|790862|790863|790864|790865|793336|793338|801996|801997|801998|802000|820096|820097|821984|821985|821986|821987|821988|821989|821990|821991|821992|821993|821994|822267|835797|835798|835799|835800|835801|835802|835803|835804|835805|835806|835807|835808|835809|835810|835811|835812|835813|835814|835815|835816|835817|835818|835819|835820|835821|835822|835823|835824|835825|835826|835827|835828|851250|851253|851256|851730|852172|852174|858348|859740|859741|917734|919204|925475|925476|925477|925478|925479|925480|925481|925482|925483|925484|925485|925486|925487|925488|925489|925490|925491|925492|934641|934642|934643|934644|934645|934646|934647|946482|946483|946484|946485|946486|946487|946488|946489|946490|946491|946492|946493|946494|946495|946496|955753|955754|959916", + "text": "Early infantile epileptic encephalopathy 14" + }, + { + "baseId": "48192|48192|48193|48194|48194|48196|48196|48197|48197|48198|48198|94262|94263|94264|97568|131953|131953|134797|134800|134801|134802|134804|134805|134806|134807|134808|134809|134810|134810|134811|134812|134813|134814|181176|190603|190604|191084|191085|191086|191275|191587|191944|192044|192045|192142|192143|192145|192779|192780|193143|193664|193793|194489|207650|207651|207652|207653|207654|207655|225839|225840|237102|240525|240527|240528|240529|240531|240532|259918|264399|264494|265856|270947|272505|273018|273452|273511|274244|274653|359914|361531|361532|361631|362336|370113|370123|370129|370135|370137|370147|370148|370157|370159|370162|370188|370555|370557|370592|370602|370609|370616|370625|370626|370633|370648|370673|370697|370701|370704|370708|370719|370725|370729|370730|370895|370902|370905|370929|370930|370937|370942|370972|370977|370982|370985|370988|370998|371009|371015|371017|371025|371033|371045|371052|371058|371073|372572|372631|372640|372655|372656|372693|372698|372700|372707|372719|372754|372755|372761|396706|396707|396710|396722|396723|396724|396728|396729|396730|396733|396900|396915|396917|396923|396924|396944|396946|396949|396953|397020|397025|397039|397045|397047|397299|397300|397305|397306|407610|407611|407614|407619|413802|413803|421727|425833|441324|441325|441326|444411|444414|444418|444419|444421|458856|458863|458864|458873|458875|458877|458887|458896|458904|458905|459229|459235|459238|459244|459246|459249|459251|459255|459258|459267|459275|459280|459281|459283|459285|459288|459294|459311|459313|459686|459691|459697|459700|459703|459705|459708|459710|459716|459718|459721|459724|459733|489409|491623|492800|494056|502387|502408|502410|502412|502717|502720|502722|503119|503147|503172|524324|524326|524327|524336|524338|524344|524594|524597|524599|524600|524606|524608|524610|524615|524621|524625|524632|524636|524759|524760|524763|524764|524782|524785|524787|524791|524797|524803|524807|524922|524927|524934|524936|524940|524942|524944|524949|536766|539020|539020|562987|562991|563002|563004|563006|563012|563019|563021|563025|563236|563736|563742|563744|563756|563757|563759|563764|563767|563769|563780|565734|565735|565740|565743|565745|565746|565748|568323|568810|568814|568817|568818|568818|568825|579550|579555|579560|579567|579621|579632|584641|586592|614339|637999|638000|638001|638002|638003|638004|638005|638006|638007|638008|638009|638010|638011|638012|638013|638014|638015|638016|638017|638018|638019|638020|638021|638022|638023|638024|638025|638026|638027|638028|638029|638030|638031|651838|651929|651991|652146|655924|655926|684064|684065|685248|687420|687421|687422|687424|687426|687427|687432|687433|689943|692634|692635|695429|695430|736998|737001|751536|759890|767261|767269|767270|767272|793336|793338|801995|801999|820096|820097|821984|821985|821986|821987|821988|821989|821990|821991|821992|821993|821994|821994|822267|835797|835798|835799|835800|835801|835802|835803|835804|835805|835806|835807|835808|835809|835810|835811|835812|835813|835814|835815|835816|835817|835818|835819|835820|835821|835822|835823|835824|835825|835826|835827|835828|851250|851253|851256|851730|852172|852174|859740|859741|919204|919204|919205|920269|920270|925475|925476|925477|925478|925479|925480|925481|925482|925483|925484|925485|925486|925487|925488|925489|925490|925491|925492|934641|934642|934643|934644|934645|934646|934647|946482|946483|946484|946485|946486|946487|946488|946489|946490|946491|946492|946493|946494|946495|946496|955753|955754|959916|964320|970902|977237", + "text": "Epilepsy, nocturnal frontal lobe, 5" + }, + { + "baseId": "48200|244166|361080|438582|745480|745482", + "text": "Cowchock syndrome" + }, + { + "baseId": "48201|677303|919175", + "text": "Familial episodic pain syndrome 1" + }, + { + "baseId": "48202|48203|48204|48205|48206|59640|59641|254707|267778|421948|462421|462427|462428|462435|462441|462686|504374|527322|527324|527636|527865|565685|567002|567010|567019|567030|568164|571166|571977|571983|622835|641352|641353|641355|693270|702462", + "text": "Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type a, 10" + }, + { + "baseId": "48207|206636|363982|481207|531433|531532|571709|574533|646229|646230|646231|646232|715547|715549|727264|740861|778274|785644|797564|845648|845649|845650|845651|845652|928385|950044|950045|958195", + "text": "Maternal riboflavin deficiency" + }, + { + "baseId": "48214|49912|207092|361804|361805|495159|513266|514291|583091|653865|653916|790431|792742", + "text": "Alazami syndrome" + }, + { + "baseId": "48215|48216|48217|512805", + "text": "Cleft palate, isolated" + }, + { + "baseId": "48219|48220|204531|211115|211116|211118|227279|622070|622071|622072|970486", + "text": "Perrault syndrome 2" + }, + { + "baseId": "48225|48226|48227|48228|48229|48230|48231|48232|48233|213629|213630|273614|361211|361212|362440|362441|409073|421974|424700|430983|481349|511012|551314|551315|552171|623318|653887|798671|799764|816021|857656|919512|919513|919514|919515|961529|964097|964680|969708", + "text": "Autism, susceptibility to, 18" + }, + { + "baseId": "48236|48237|48238|48239|48240|533213|679723", + "text": "Ciliary dyskinesia, primary, 20" + }, + { + "baseId": "48253|48254|48255|137052|213551|227078|247398|259764|259765|264142|264159|406301|421442|424246|428176|443452|495185|550355|550356|551769|552074|552075|553377|589801|589831|623275|653859|798531|798532|805344|903521|918237|964223|967266|969251", + "text": "Mental retardation, autosomal dominant 19" + }, + { + "baseId": "48264|48265|76353|206722|259631|263969|361157|362431|364424|404923|423707|423708|425312|427639|427641|442546|535694|550761|575485|611374|614074|625784|626365|653912|789845|789846|804861|904242|918559|918560|920126|965735|969549|970369|970370|970514|970661|976640", + "text": "Mental retardation, autosomal dominant 18" + }, + { + "baseId": "48270|48271|48272|48273|222375|241849|241850|241851|241852|373109|373113|373868|376092|376094|399679|399681|399687|400219|400417|409131|463305|463814|464159|464308|464312|528668|528669|528672|528674|566500|568941|572814|572815|572818|642504|642505|642506|642507|642508|642509|642510|652952|684498|684499|685399|688307|688308|714161|788882|841551|841552|841553|841554|841555|841556|841557|841558|851559|927098|927099|927100|927101|927102|936637|948586|948587|948588|957233|957234|957235|960805", + "text": "Spastic paraplegia 28, autosomal recessive" + }, + { + "baseId": "48274|222358|222359|241778|241779|241780|360152|361210|372956|372957|372958|372959|373686|373687|373699|374019|375849|375852|399487|399535|399540|399544|399548|399644|399645|399647|399652|399653|400073|400076|400080|400261|400265|445179|445180|445181|463046|463530|463813|463816|463818|504405|504654|504943|505327|527928|527932|527935|527937|527952|528270|528411|528412|528414|539052|547272|547431|566230|566232|566233|567813|567824|568694|568698|568699|568710|572669|572673|572676|572677|572678|642112|642113|642114|642115|642116|642117|642118|642119|642120|642121|642122|684433|684434|684435|684436|684437|684438|684439|684440|684441|684442|684443|684444|684445|684446|684447|684448|684449|684450|684451|684452|684453|685391|688209|688210|688211|688212|688214|688215|688216|688217|688218|688219|688220|688221|688222|688223|688224|688225|688226|688227|688228|688229|688230|688231|688232|688233|688234|688235|688236|688238|688239|688240|690071|690072|690073|693418|693419|693420|693422|695607|695608|702767|702768|702769|725567|725568|739124|739125|739126|739127|739128|769673|769675|769676|769677|775970|784648|784649|784656|820594|820595|820596|841069|841070|841071|841072|841073|841074|841075|841076|841077|926965|926966|936517|936518|948438|948439|948440|948441|957148|957149|957150|957151|957152|957153|957154|957155|961032|961034|961222|961312|961313|961811|962132|965618|966617|979423|979424|979425|979426|979427|979428|979429|979430|979431|979432|979433|979434|979435|979436|979437|979438|979439|979440|979441|979442|979443|979444|979445|979446|979447|979448|979449|979450|979451|979452|979453|979454|979455|979456|979457|979458|979459|979460|979461|979462|979463|979464|979465|979466|979467|983706|983707|983708", + "text": "Spastic paraplegia 49, autosomal recessive" + }, + { + "baseId": "48275|48276|48277|48278|48279|48280|96876|106844|207544|207546|370223|370224|371848|421672|428832|428833|428836|444273|457829|457833|457836|457840|457846|458891|458897|502017|502019|523554|523557|523882|524143|524154|562947|565113|565117|622389|622390|626175|637196|637197|637198|637199|637200|637201|651724|651967|655863|684005|684006|684007|687279|736641|744421|766801|796170|834736|834737|925197|934301|934302|940103|955406|955407", + "text": "Spastic paraplegia 54, autosomal recessive" + }, + { + "baseId": "48283|240162|396135|396417|523259|677206", + "text": "Ciliary dyskinesia, primary, 18" + }, + { + "baseId": "48284|48285|48286|490904|609316", + "text": "Deafness, autosomal recessive 48" + }, + { + "baseId": "48287", + "text": "Usher syndrome, type 1J" + }, + { + "baseId": "48288", + "text": "HYPOGONADOTROPIC HYPOGONADISM 15 WITH OR WITHOUT ANOSMIA, SUSCEPTIBILITY TO" + }, + { + "baseId": "48289|48290|48291|48292", + "text": "Hypogonadotropic hypogonadism 15 with anosmia" + }, + { + "baseId": "48293|48294|77869|77870|77871|134667|191229|191682|208938|208940|225851|237535|363640|363654|364204|377886|379012|379014|379020|379114|379118|379963|379964|379966|379969|380161|413849|430711|433601|439210|495892|507840|507934|507939|507963|508547|508552|534608|538505|572329|573671|649804|649805|649806|649807|649808|649809|729498|729499|729500|729501|743223|743224|743230|758367|758368|758370|758373|773878|773879|773884|773885|786745|786746|849772|849773|849774|849775|849776|849777|929610|939479|951654|951655|951656|951657|959195|959196|959197|960367|971190", + "text": "Mental retardation 3, X-linked" + }, + { + "baseId": "48295|438794|466807|570578|610028|614430|816340|920365|971056", + "text": "Autoinflammation, antibody deficiency, and immune dysregulation, plcg2-associated" + }, + { + "baseId": "48296|181182|181183|214533|231511|231521|244152|244340|244341|245298|248727|274228|366203|366375|421363|433504|448534|450538|450735|450737|450744|499536|499934|517820|517823|517826|517841|517843|557884|557935|557937|557939|559123|559125|560944|560946|560950|612349|629480|629481|629482|629483|629484|629485|629486|629487|650942|695116|695117|697338|743878|825755|825756|825757|825758|825759|825760|825761|825762|825763|825764|851151|851400|861336|922580|922581|922582|922583|931157|931158|940695|942614|942615|942616|952945|952946|952947|952948", + "text": "Spinal muscular atrophy, distal, autosomal recessive, 5" + }, + { + "baseId": "48297|48298|76384|390115|536051|536052|538453|679722|857599|858651|919676", + "text": "Ciliary dyskinesia, primary, 5" + }, + { + "baseId": "48304|362837|362932", + "text": "Malignant tumor of floor of mouth" + }, + { + "baseId": "48306|134026|134028|134031|134032|134033|134041|134042|134048|134053|134055|188860|208179|208186|208189|208191|208192|214161|322442|322445|322451|322454|331758|331762|331774|331775|331781|331782|331787|331791|331796|331799|331806|338741|338743|338746|338760|338762|338768|338770|338775|338778|338786|338795|338802|338807|340387|340392|340399|340401|361348|409214|409217|429654|429657|438764|486759|486760|739584|739586|739587|745083|754409|754410|754411|797117|873383|873384|873385|873386|873387|873388|873389|873390|873391|873392|873393|873394|873395|873396|873397|873398|873399|873400|873401|873402|873403|873404|873405|873406|873407|873408|873409|873410|873411|873412|873413|873414|873415|873416|873418|876494|876495|876496|876497|980952", + "text": "Primary autosomal recessive microcephaly 4" + }, + { + "baseId": "48308|229112|229117|389221|404767|496365|508788|622332|622333|790409|790410|790411|790412", + "text": "Sinoatrial node dysfunction and deafness" + }, + { + "baseId": "48314|48315|48316|79722|79724|79726|79727|613937", + "text": "Hypogonadotropic hypogonadism 16 with or without anosmia" + }, + { + "baseId": "48322|446880|446881", + "text": "Peroxisome biogenesis disorder 14B" + }, + { + "baseId": "48331|48332|48333|48334|48335|48336|791480", + "text": "Keratosis palmoplantaris papulosa" + }, + { + "baseId": "48339", + "text": "Diamond-Blackfan anemia 11" + }, + { + "baseId": "48340|268394|369870|457690|458281|458285|502423|513201|523684|523687|562252|562253|562777|562781|567730|637007|637008|637009|637010|651772|683993|683996|736559|777760|834522|834523|834524|834525|834526|940897|945995|955377", + "text": "Spastic paraplegia 53, autosomal recessive" + }, + { + "baseId": "48341", + "text": "Microphthalmia, isolated, with coloboma 8" + }, + { + "baseId": "48342|48343|48344|133971|190847|190848|191230|194423|274071|429787|493682|589815|644614|653268|714885|714886|731066|770873|779766|843770|927784|949374|949375|957737", + "text": "Branched-chain keto acid dehydrogenase kinase deficiency" + }, + { + "baseId": "48356|48357|48357|171781|373940|374397|464413|464415|464421|464422|528327|528408|528802|642780|642781|841903|927193|927194|948723", + "text": "Ventricular tachycardia, catecholaminergic polymorphic, 4" + }, + { + "baseId": "48357|171781|181363|181364|181365|373940|374397|464413|464415|464421|464422|528327|528408|528802|642780|642781|841903|927193|927194|948723|962908|962909", + "text": "Long QT syndrome 14" + }, + { + "baseId": "48363|48364|152761|171703|171704|361812|434606|653811|653812|788793|790600|792755|904229|970058", + "text": "Combined oxidative phosphorylation deficiency 11" + }, + { + "baseId": "48365|805021", + "text": "Lethal congenital contracture syndrome 4" + }, + { + "baseId": "48366|48367|48368|626304", + "text": "Linear skin defects with multiple congenital anomalies 2" + }, + { + "baseId": "48369|131913|131914|513536|816449", + "text": "Bardet-Biedl syndrome 17" + }, + { + "baseId": "48374|76988|193095|215609|243730|243731|243732|243733|243734|243735|243736|270733|360560|377682|377690|377692|377694|377700|378831|378838|378845|378850|378855|378940|378941|378944|378947|378949|379895|379897|404048|404049|404070|404072|404074|404432|404434|404478|411101|411104|411105|411107|422404|426400|442385|470449|470450|471230|471680|471684|471685|472046|488365|507682|507786|507790|507797|507804|508260|508285|508292|508467|508472|508477|508478|534443|534446|534449|534483|534486|534488|534582|534589|534590|534996|534997|572176|573521|574248|575316|575317|575318|575319|575320|577925|577926|580629|614498|649629|649630|649631|649632|649633|649634|649635|649636|649637|649638|649639|649640|649641|649642|649643|649644|649645|649646|649647|649648|656727|684940|689323|689326|689328|689329|689330|706077|706078|706079|729367|729368|743106|773707|773708|773711|773712|802042|821547|822209|822210|822211|822212|822213|849558|849559|849560|849561|849562|849563|849564|849565|849566|849567|849568|849569|849570|849571|849572|849573|849574|849575|849576|858366|929540|929541|929542|929543|929544|929545|929546|929547|929548|939402|939403|939404|939405|939406|939407|939408|939409|951575|951576|951577|951578|951579|959155|960357|964566|971174", + "text": "Epileptic encephalopathy, early infantile, 36" + }, + { + "baseId": "48376", + "text": "Acampomelic campomelic dysplasia with autosomal sex reversal" + }, + { + "baseId": "48377|48378|48379|486664|495308|497435|497650|512934|623313|672142|961373", + "text": "Deafness, autosomal recessive 84b" + }, + { + "baseId": "48380|48381|59678", + "text": "Ectodermal dysplasia 9, hair/nail type" + }, + { + "baseId": "48386|48387|48388|48389|48390|48391|48392|140886|140887|140888|140889|140890|140893|140894|260092|260347|260348|275196|324769|324772|324777|324779|324783|324787|324788|324791|334370|334378|334380|334386|334387|334389|334396|334399|334401|334404|340988|340991|340995|340996|340998|340999|341005|341006|342490|342491|342493|342495|342498|342500|342503|342511|342519|342521|342522|342528|342532|374227|375245|413435|434650|445541|513356|550035|740039|791560|791561|858723|874968|874969|874970|874971|874972|874973|874974|874975|874976|874977|874978|874979|874980|874981|874982|874983|874984|874985|874986|874987|874988|874989|874990|876647|961327|961566|961567", + "text": "Combined oxidative phosphorylation deficiency 12" + }, + { + "baseId": "48393|48394|48395|48396|48397|76938|205560|253032|253033|253034|253036|253039|253040|253041|253042|304275|307929|313041|313043|313045|313046|457209|457801|457810|457830|458207|458212|458224|458227|523011|523012|523019|523271|523276|523278|523502|523507|523632|562371|564643|564653|564657|567375|567382|636604|636605|636606|636607|636608|636609|651921|651925|651932|700397|722850|722851|736434|750909|766536|777899|834142|834143|834144|834145|834146|851181|898901|898902|898903|898904|898905|898906|898907|898908|898909|898910|898911|898912|898913|900442|900443|925020|925021|934098|955291|955292|955293", + "text": "Ciliary dyskinesia, primary, 19" + }, + { + "baseId": "48400|205731|205732|205732|210875|210875|210883|214827|247641|247642|539469|578332|578333|578334|578335|790283|857612|983739", + "text": "Combined oxidative phosphorylation deficiency 13" + }, + { + "baseId": "48401|205732|210875|210883|857612|961218|961219", + "text": "Deafness, autosomal recessive 70" + }, + { + "baseId": "48402", + "text": "Myoclonus, familial 1" + }, + { + "baseId": "48405|48406|264453|512928|857387", + "text": "Vitreoretinopathy, neovascular inflammatory" + }, + { + "baseId": "48407|153720|237463|468564|468572|468574|468583|468586|468590|469934|469938|469943|470537|470540|470551|508919|508920|532766|532787|587942|613616|647843|647844|647845|672110|694361|694362|716298|728042|745056|772528|772530|791917|821245|847446|847447|847448|847449|847450|919843|919844|920404|958578|964518|964888|983288", + "text": "Megalencephaly-polymicrogyria-polydactyly-hydrocephalus syndrome 1" + }, + { + "baseId": "48413|48414|48415|244143|263837|447955|448037|448041|481588|515818|798467|850670|920096|951950|951951|951952|983284", + "text": "Megalencephaly-polymicrogyria-polydactyly-hydrocephalus syndrome 2" + }, + { + "baseId": "48413|805108", + "text": "Capillary hemangiomas" + }, + { + "baseId": "48413|98875|305750|360822|360912|360923|360955|429431|432203|432204|432223|432224|540525|540526|801078|965430", + "text": "Polymicrogyria" + }, + { + "baseId": "48416|48417|48418|199795|230054|230063|404796|404797|404798|404799|404800|404801|444762|481984|488236|511040|612153|857680|859852|965209|967272|975898", + "text": "Deafness, autosomal recessive 18b" + }, + { + "baseId": "48420|48421|48421|136033|136034|136035|136036|208303|255873|255874|268656|269848|270909|271936|375420|375626|375630|429844|464841|465438|465556|466760|492696|505498|505756|506486|530534|530537|530768|568327|570534|644975|644976|644977|644978|644979|656386|693932|703818|715077|715078|755385|791642|844290|844291|937600|937601|937602|960855", + "text": "Joubert syndrome 20" + }, + { + "baseId": "48421|75583|75584|136034|136035|136036|208303|237177|255874|268656|269848|270909|271936|375420|375626|375630|429844|429844|429845|464841|465438|465556|466760|492696|505498|505756|506486|530534|530537|530768|568327|570534|583126|622913|644975|644976|644977|644978|644979|656386|693932|703818|715077|715078|755385|844290|844291|937600|937601|937602|960855", + "text": "Meckel syndrome, type 11" + }, + { + "baseId": "48422", + "text": "Mental retardation, X-linked, syndromic 32" + }, + { + "baseId": "48423|48424|48425|140991|140992|140993|140994|140995|211247|211248|211249|211250|211252|211253|211254|211255|211257|211258|211259|211260|211262|247570|252444|363986|368681|368988|369007|369157|370501|421595|455121|455655|455657|455850|455852|455854|455856|455894|456258|456263|456585|456590|481208|481383|481384|501381|501674|501770|511685|521641|521702|521895|522053|522082|522083|522411|522412|560763|560904|563265|563273|563679|565749|565755|578604|578605|578606|578607|578608|578609|578610|578611|578612|578613|578614|578615|578616|578617|578618|578619|578620|578621|578622|578623|578624|578625|578626|578627|578629|578630|578631|578632|578633|578634|578635|635003|635004|635005|635006|635007|635008|635009|635010|635011|635012|692013|699637|699638|710563|722073|787413|801560|819701|832064|832065|832066|832067|832068|832069|832070|832071|832072|832073|832074|832075|832076|832077|832078|832155|919043|924382|924383|924384|924385|924386|924387|924388|924389|924415|933365|933366|933367|933368|933369|933370|933371|945071|945072|945073|945074|945075|945076|945077|954504|954796|959808|962036|962037|962038", + "text": "Combined oxidative phosphorylation deficiency 14" + }, + { + "baseId": "48426|48427|48428|48429|125903|137060|137061|137062|141967|213637|429712|434648|481417|538446", + "text": "Combined oxidative phosphorylation deficiency 15" + }, + { + "baseId": "48426|48429", + "text": "Mitochondrial complex 1 deficiency, nuclear type 27" + }, + { + "baseId": "48430|247690|247691|247692|536071|622320|983735", + "text": "Encephalopathy due to defective mitochondrial and peroxisomal fission 2" + }, + { + "baseId": "48435|246907", + "text": "Mitochondrial complex 1 deficiency, nuclear type 25" + }, + { + "baseId": "48436|48437", + "text": "Pontocerebellar hypoplasia type 8" + }, + { + "baseId": "48438|508950|508951|508952|508953|508954|508955|508956|552246|626291", + "text": "Spinocerebellar ataxia, X-linked 1" + }, + { + "baseId": "48442", + "text": "Focal facial dermal dysplasia 4" + }, + { + "baseId": "48444|48445|48446|48447|215573|237201|430235|438904|468854|468859|468860|468865|468878|468880|468884|469881|469883|469885|469886|469888|469893|469899|470300|470303|470305|470307|470310|470314|470315|470978|470979|470981|470982|470985|470988|470999|471002|471004|533071|533081|533148|533153|533156|533176|533178|533183|533572|533573|533594|537331|551332|551333|552219|552220|552221|570840|570842|573170|573171|573172|573176|573177|573178|574785|574987|574988|574991|574992|648161|648162|648163|648164|648165|648166|648167|648168|648169|648170|689090|689091|689093|689094|689096|690219|694444|694445|694447|694450|694454|694462|694463|695829|705046|705047|705048|705049|705054|716489|728220|728223|731285|741943|760729|760814|847755|847756|847757|847758|847759|847760|847761|847762|847763|920411|928990|928991|928992|928993|928994|938720|938721|938722|938723|938724|938725|941233|950816|950817|950818|958652|983501", + "text": "Carpenter syndrome 2" + }, + { + "baseId": "48448|48449|48450|48451|48452|99372|257747|257748|257749|352786|677332|677333|678986|678987|678995|679001|798806|918120|918121|918122", + "text": "Hypothyroidism, central, and testicular enlargement" + }, + { + "baseId": "48453|495299|792763|792764", + "text": "Mental retardation, enteropathy, deafness, peripheral neuropathy, ichthyosis, and keratoderma" + }, + { + "baseId": "48454|48455|48456|48457|48458|94288|193194|247147|256619|256620|256621|256622|256623|256624|256626|256627|256630|256633|256635|256637|256644|264720|265513|266331|266895|266900|267475|267986|267997|268729|268800|269069|269118|269363|269413|269419|269529|269976|270197|270429|271263|271422|273366|273875|273918|274265|362645|362646|442023|467908|468787|468797|468798|468799|468806|469610|469614|488928|489611|489627|489628|489772|490356|492081|492910|532161|532170|532172|532179|532183|532266|532547|532551|532553|570055|570059|571839|572693|574713|584398|585589|586462|587284|588633|647099|647100|647101|647102|647103|647104|647105|647106|647107|647108|647109|647110|694256|694258|715915|785879|787997|846711|846712|846713|846714|846715|846716|846717|846718|846719|852808|852929|928665|928666|928667|928668|938388|938389|938390|938391|938392|950466|950467|950468|950469|950470|950471|950472|950473|950474|950475|958444|958445|958446|958447|958448|960259|960260", + "text": "Facioscapulohumeral muscular dystrophy 2" + }, + { + "baseId": "48459|48460|48461|165628|361148|363858|437976|441703|441707|508883|612444|622425|906375|906378|919550", + "text": "Congenital hydrocephalus 1" + }, + { + "baseId": "48487|48488|48489|48490|48491|48492|614663|614664|614665|791850", + "text": "Dystonia 25" + }, + { + "baseId": "48495|223024|227149|227467|354299|360849|360877|360940|360941|361091|362152|362157|362165|415601|434101|496932|513979|514091|514107|514163|514168|514186|514193|514199|581713|590047|590048|590736|620168|623231|678055|679509|679510|679511|679512|679513|801079|801225", + "text": "Generalized hypotonia" + }, + { + "baseId": "48499|243872|243880|415068|421603|514544|514546|535659|535661|535662|615878|615879|615880|615881|615882|615883|615884|622372|626381|805515|815985|816363|858814|919063|963617|964282|964708|969090|970840|973101", + "text": "Developmental delay, intellectual disability, obesity, and dysmorphic features" + }, + { + "baseId": "48500|48501|48502|48503|48504|190121|213972|215556|226969|226970|236965|237105|262714|354181|362072|376850|376852|390441|390442|417344|417345|438072|445975|467990|467993|467995|467997|467999|468925|468926|468927|468931|468933|468934|468936|468937|469329|469331|469339|469348|469359|469361|469363|469365|469369|469370|469764|469766|469768|469770|469771|469773|469775|469782|481374|481375|486199|492925|497296|512356|532257|532262|532274|532276|532283|532287|532289|532293|532295|532296|532298|532303|532381|532397|532400|532419|532422|532431|532438|532731|532733|532740|532742|532746|532748|532751|532754|532758|539081|570157|570159|570166|570172|570174|570180|570181|570187|570190|571946|571947|571951|571956|572640|572641|572643|572644|572645|572647|574752|574753|574754|574755|574756|574757|574758|590802|612326|612327|614451|614528|614529|614530|614531|614532|614533|614534|614535|614536|614537|614538|614539|614540|647223|647224|647225|647226|647227|647228|647229|647230|647231|647232|647233|647234|647235|647236|647237|647238|647239|647240|647241|647242|647243|647244|647245|647246|647247|647248|647249|647250|647251|647252|647253|647254|647255|647256|647257|647258|647259|647260|647261|647262|647263|647264|647265|647266|647267|647268|647269|647270|647271|647272|647273|647274|647275|647276|647277|653400|653554|656490|715980|715981|715982|715983|715984|715985|715986|727721|727723|727725|727726|727727|727729|727731|727732|727733|727734|741366|741368|741369|741373|741374|741377|741379|741380|741381|756446|756448|756449|756450|756451|756453|756457|756462|760702|772139|772141|772143|772150|776604|776796|778356|778357|780025|785900|785904|785905|791862|791863|791864|792812|801924|816344|816345|816490|821201|846833|846834|846835|846836|846837|846838|846839|846840|846841|846842|846843|846844|846845|846846|846847|846848|846849|846850|846851|846852|846853|846854|846855|846856|846857|846858|846859|846860|846861|846862|846863|846864|846865|846866|846867|846868|846869|846870|846871|846872|846873|846874|846875|846876|846877|846878|846879|846880|846881|846882|846883|852812|857624|857629|858726|928705|928706|928707|928708|928709|928710|928711|928712|928713|928714|928715|928716|928717|938431|938432|938433|938434|938435|938436|938437|938438|938439|938440|938441|938442|938443|938444|938445|938446|938447|938448|950517|950518|950519|950520|950521|950522|950523|950524|950525|950526|950527|950528|950529|950530|950531|958462|958463|958464|958465|958466|958467|958468|958469|958470|973045|974502|980487", + "text": "Vici syndrome" + }, + { + "baseId": "48521|48522|48523|983856", + "text": "Spermatogenic failure 11" + }, + { + "baseId": "48524|48525", + "text": "C3HEX, ability to smell" + }, + { + "baseId": "48558|48559|75314|153734|215576|222819|222820|222821|222822|222823|222824|222825|222826|222827|222828|222828|222829|222830|222831|222832|222833|222834|222834|222835|222836|222837|222838|222839|222840|222841|222842|222843|222844|222845|222846|222847|222848|222849|222850|222852|227197|227197|227854|243385|243386|243387|243388|243389|243390|243390|243391|243392|243393|243394|243394|243395|243397|243398|243398|243399|243400|243401|243402|243403|243404|243405|243406|243407|243408|243409|243410|243411|243412|243413|243414|243415|243416|243417|243418|243419|243420|243421|243422|243423|243424|243424|243425|243426|243427|243428|243429|243430|243431|243432|243433|243434|243435|243436|243437|243438|243439|243440|243440|243441|243442|243443|243444|243445|243446|243446|243447|243448|243449|243451|243452|243453|243454|243455|243456|243457|243458|243459|243460|243461|243462|243463|243465|243466|243467|243468|243469|243472|243473|243474|243475|243476|243477|243478|243479|243480|243481|243482|243483|243484|243485|243486|243487|243488|243489|243490|243490|243491|243492|243493|243494|243495|243496|243497|243498|243499|243500|243501|243502|243503|243504|243505|243506|243507|243508|243509|243510|243511|243512|243514|243515|243516|243517|243518|243519|243520|243520|243521|243522|243523|243524|243525|243526|243527|243528|243529|243530|243531|243532|243533|243534|243535|243536|243537|243538|243539|243540|243541|243542|243543|243544|243545|243546|243547|245145|245146|245146|245147|245148|245149|245150|245151|245152|245153|245154|245155|245156|245157|245158|245159|245160|257196|358979|358980|358981|358982|358983|358984|358985|358986|358987|358988|358989|358990|358991|358992|358993|358994|358995|358996|358997|358998|358999|359000|359002|359003|362745|376725|376737|376745|376747|376757|376766|376774|376782|376786|376790|376791|376796|376799|376808|376818|376831|376834|376836|376844|376845|376847|376851|376860|377685|377706|377715|377719|377720|377724|377730|377734|377739|377747|377753|377755|377759|377760|377763|377769|377772|377775|377776|377780|377784|377794|377809|377811|377813|377830|377839|377903|377905|377909|377920|377929|377935|377936|377940|377942|377945|377947|377955|377960|377967|377968|377975|377980|377992|377998|378013|378019|378021|378031|378032|378037|378039|378040|378042|378045|378050|378053|378061|378063|378071|378085|379622|379623|379624|379626|379627|379628|379629|379630|379631|379634|379637|379638|379640|379642|379644|379647|379649|379651|379652|379653|379654|379655|379657|379658|379659|379660|402834|403363|403363|403372|403374|403377|403378|403379|403380|403381|403385|403387|403388|403391|403394|403396|403397|403398|403402|403405|403406|403407|403409|403410|403411|403412|403413|403414|403415|403417|403420|403421|403425|403426|403427|403431|403432|403433|403434|403435|403436|403437|403439|403443|403444|403447|403449|403450|403454|403455|403456|403466|403468|403468|403470|403476|403477|403484|403488|403489|403490|403491|403493|403496|403498|403501|403502|403503|403503|403504|403505|403506|403507|403509|403511|403513|403515|403518|403519|403525|403526|403527|403530|403531|403533|403533|403534|403535|403537|403540|403543|403544|403550|403553|403554|403557|403560|403561|403566|403567|403568|403570|403571|403586|403589|403596|403606|403609|403609|403611|403794|403797|403800|403801|403803|403803|403822|403828|403830|403830|403835|403841|403844|403844|403847|403849|403851|403854|403858|403859|403861|403862|403863|403865|403866|403868|403870|403871|403873|403874|403875|403876|403879|403881|403882|403887|403888|403892|403894|403896|403897|403898|403904|403905|403909|403912|403915|403915|403916|403917|403920|403923|403924|403926|403929|403930|403934|403935|403936|403937|403940|403941|403942|403943|403944|403948|403950|403951|403954|403955|403959|403961|403963|403964|403966|403967|403971|403973|403974|403975|403976|403977|403979|403986|403988|403989|403994|403996|403998|403999|404001|404003|404005|404005|404006|404009|404012|404013|404015|404018|404022|404024|404026|404028|404030|404031|404032|404034|404036|404038|404039|404043|404044|404045|404046|404047|404050|404053|404058|404060|404063|404065|404066|404067|404068|404069|404075|404076|404078|404079|404080|404081|404082|404087|404094|404097|404100|404103|404108|410670|410672|410673|410675|410677|410680|410681|410683|410684|410685|410686|410687|410688|410691|410692|410693|410694|410696|410697|410698|410701|410705|410706|410706|410707|410709|430263|432954|432955|432956|432957|432962|432963|432964|432965|432967|446179|446180|468165|469019|469020|469023|469024|469026|469028|469037|469038|469040|469044|469047|469051|469056|469058|469062|469064|469066|469069|469071|469074|469083|469087|469091|469105|469108|469111|469112|469114|469114|469120|469121|469131|469135|469139|469140|469143|469146|469147|469149|469153|469154|469157|469165|469167|469169|469173|469180|469186|469189|469196|469199|469199|469200|469201|469203|469206|469211|469217|469229|469250|469253|469459|469973|469975|469979|469981|469983|469986|469988|469996|469999|470007|470022|470030|470032|470035|470047|470049|470050|470051|470054|470058|470063|470065|470066|470073|470075|470081|470083|470085|470087|470089|470090|470091|470095|470098|470099|470106|470107|470108|470116|470117|470119|470122|470128|470132|470140|470143|470145|470151|470153|470154|470155|470161|470165|470168|470171|470175|470180|470187|470188|470190|470201|470203|470208|470218|470497|470514|470517|470522|470526|470528|470539|470543|470548|470553|470555|470558|470561|470565|470571|470575|470581|470582|470588|470614|470618|470622|470623|470625|470634|470635|470636|470643|470644|470651|470655|470659|470661|470663|470668|470670|470671|470677|470678|470681|470685|470689|470692|470694|470695|470700|470704|470706|470709|470710|470711|470713|470717|470718|470725|470730|470734|470736|470745|470750|470751|470753|470755|471132|471139|471143|471145|471149|471150|471153|471154|471156|471159|471162|471164|471165|471167|471168|471176|471178|471179|471185|471186|471188|471197|471198|471200|471203|471209|471211|471212|471212|471213|471216|471222|471224|471227|471229|471234|471236|471237|471239|471242|471243|471247|471248|471252|471253|471259|471262|471274|479827|479832|479841|479845|479848|479851|479852|479855|479859|479862|479865|479867|479869|479873|479878|479880|479883|479888|479901|479903|479905|479908|479908|479911|479914|479917|479920|479924|479930|479933|479937|479939|479941|479943|479944|479947|479957|479967|479969|479969|479972|479976|479979|479980|479985|479987|479990|479992|480002|480027|480301|480302|480303|480304|480305|480306|480308|480310|480311|480314|480317|480318|480319|480321|480322|480325|480327|480330|480336|480337|488148|497329|497747|497748|497785|506985|507001|507015|507142|507558|507946|507953|507968|507970|507976|532371|532392|532826|533155|533162|533169|533171|533180|533184|533189|533202|533203|533207|533210|533219|533222|533232|533233|533241|533243|533245|533252|533254|533262|533263|533265|533267|533268|533269|533270|533271|533272|533273|533279|533280|533281|533283|533288|533289|533290|533292|533293|533294|533295|533296|533297|533301|533302|533304|533305|533306|533310|533311|533313|533315|533316|533317|533318|533319|533321|533323|533324|533326|533328|533329|533330|533331|533333|533335|533337|533339|533340|533342|533343|533344|533346|533348|533349|533350|533351|533352|533353|533354|533357|533360|533362|533363|533366|533369|533371|533372|533373|533379|533380|533382|533383|533384|533389|533392|533397|533400|533407|533423|533425|533426|533427|533436|533727|533728|533729|533737|533743|533745|533748|533750|533753|533756|533763|533766|533767|533772|533773|533783|533790|533793|533797|533803|533807|533808|533810|533821|533826|533831|533832|533833|533834|533845|533852|533855|533862|533864|533866|533868|536530|539392|539395|539396|539397|539398|539399|539400|539401|539402|539403|539404|539405|539406|539407|551947|570955|570958|570969|570979|570983|570984|570987|570989|570991|570993|570995|571003|571017|571018|571020|571022|571026|571030|571032|571039|571040|571042|571054|571055|571062|571064|571067|572023|572633|572642|572653|572656|572657|572659|572660|572661|572663|572664|572667|572670|572672|572675|572681|572686|572690|572699|572706|572707|572708|572709|572711|572713|572716|572719|572721|572726|572727|572729|572730|572733|572736|572738|572742|572749|572754|572762|572764|572766|573277|573282|573285|573286|573293|573296|573299|573301|573305|573307|573308|573309|573312|573314|573315|573316|573327|573331|573332|573333|573339|573348|573352|573352|573355|573356|573359|573360|573371|573374|573376|573378|573379|573380|573386|573390|573393|573396|573398|574786|574787|575021|575022|575023|575024|575025|575025|575026|575027|575028|575029|575030|575031|575032|575033|575034|575035|575036|575037|575038|575039|575040|575041|575042|575043|575044|575045|575046|575047|576042|611267|611272|648308|648309|648310|648311|648312|648313|648314|648315|648316|648317|648318|648319|648320|648321|648322|648323|648324|648325|648326|648327|648328|648329|648330|648331|648332|648333|648334|648335|648336|648337|648338|648339|648340|648341|648342|648343|648344|648345|648346|648347|648348|648349|648350|648351|648352|648353|648354|648355|648356|648357|648358|648359|648360|648361|648362|648363|648364|648365|648366|648367|648368|648369|648370|648371|648372|648373|648374|648375|648376|648377|648378|648379|648380|648381|648382|648383|648384|648385|648386|648387|648388|648389|648390|648391|648392|648393|648394|648395|648396|648397|648398|648399|648400|648401|648402|648403|648404|648405|648406|648407|648408|648409|648410|648411|648412|648413|648414|648415|648416|648417|648418|648419|648420|648421|648422|648423|648424|648425|648426|648427|648428|648429|648430|648431|648432|648433|648434|648435|648436|653058|653067|653069|653072|653125|653171|653173|653175|653179|653181|653510|653513|653515|653517|653522|653525|653581|653583|653584|653628|653629|653631|653633|689152|689153|690226|690227|690228|694503|694504|694505|694506|694507|694508|694509|695837|695839|705187|705188|705191|716619|728365|728366|728367|742087|745264|757211|757213|757217|757218|757223|757225|760627|760746|760922|772833|772834|772838|772839|772840|772841|772843|772844|772846|772847|772849|772851|772855|772856|772858|772860|772865|772866|772867|772869|772871|772872|772875|772876|776623|778650|780089|786267|786268|786272|786273|786274|786277|786279|786280|788065|788326|788332|789699|791946|791947|791948|797907|814929|814939|814940|814954|814965|814984|815742|815743|815747|815749|815752|815753|821283|821284|821285|847908|847909|847910|847911|847912|847913|847914|847915|847916|847917|847918|847919|847920|847921|847922|847923|847924|847925|847926|847927|847928|847929|847930|847931|847932|847933|847934|847935|847936|847937|847938|847939|847940|847941|847942|847943|847944|847945|847946|847947|847948|847949|847950|847951|847952|847953|847954|847955|847956|847957|847958|847959|847960|847961|847962|847963|847964|847965|847966|847967|847968|847969|847970|847971|847972|847973|847974|847975|847976|847977|847978|847979|847980|847981|847982|847983|847984|847985|847986|847987|847988|847989|847990|847991|847992|847993|847994|847995|847996|847997|847998|847999|848000|848001|848002|848003|848004|848005|848006|848007|848008|848009|848010|848011|848012|848013|848014|848015|848016|848017|848018|848019|848020|848021|848022|848023|848024|848025|848026|848027|851825|851828|851830|852349|852351|852887|852888|852988|852989|852990|852991|929053|929054|929055|929056|929057|929058|929059|929060|929061|929062|929063|929064|929065|929066|929067|929068|929069|929070|929071|929072|929073|929074|929075|929076|929077|929078|929079|929080|929081|929082|929083|929084|929085|929086|929087|929088|929089|929090|929091|929092|929093|929094|929095|929096|929097|929098|929099|938799|938800|938801|938802|938803|938804|938805|938806|938807|938808|938809|938810|938811|938812|938813|938814|938815|938816|938817|938818|938819|938820|938821|938822|938823|938824|938825|938826|938827|938828|938829|938830|938831|938832|938833|938834|938835|938836|938837|938838|938839|938840|940490|940491|940492|940493|940494|941241|941242|941243|941244|941245|950874|950875|950876|950877|950878|950879|950880|950881|950882|950883|950884|950885|950886|950887|950888|950889|950890|950891|950892|950893|950894|950895|950896|950897|950898|950899|950900|950901|950902|950903|950904|950905|950906|958704|958705|958706|958707|958708|958709|958710|958711|958712|958713|958714|958715|958716|958717|958718|958719|958720|958721|958722|958723|958724|960300|960301", + "text": "Colorectal cancer 10" + }, + { + "baseId": "48560|48560|49852|215445|222206|222207|222208|222209|222210|222211|222212|222213|222214|222215|222216|222217|222218|222219|222220|222221|222222|222223|222224|222225|222226|222227|222228|222229|222230|222231|222232|222233|222233|222234|222235|222236|222237|222238|222239|222240|222241|222242|222243|222244|222245|226348|226349|226350|226351|227849|237521|241260|241261|241262|241263|241264|241265|241266|241266|241267|241268|241269|241269|241270|241271|241272|241273|241274|241275|241276|241277|241278|241279|241280|241281|241283|241284|241285|241285|241287|241288|241289|241290|241291|241292|241293|241294|241295|241296|241297|241297|241298|241299|241300|241301|241302|241303|241304|241305|241306|241307|241308|241309|241310|241311|241312|241313|241314|241315|241316|241316|241317|241318|241319|241320|241321|241322|241323|241324|241325|241326|241326|241327|241328|241329|241330|241331|241332|241333|241334|241335|241336|241337|241338|241339|241340|241341|241341|241343|241344|241345|241346|241347|241347|241348|241349|241350|241351|241352|241353|241354|241355|241355|241357|241358|241359|241360|241361|241362|241363|241364|241366|241367|241368|241369|241370|241371|241372|241373|241374|241375|241376|241377|241378|241379|241380|241381|241382|241383|241384|241385|241386|241387|241389|241391|241392|241393|241394|241395|241396|241397|241398|241399|241400|241403|241404|241405|241406|241407|241408|241410|241411|241412|241413|241414|241415|241416|241417|241418|241419|241420|241420|241422|241423|241424|241425|241426|241427|241428|241429|241429|241430|241431|241431|241432|241433|241434|241435|241436|241437|241438|241439|241440|241441|241442|241443|241444|241445|241446|241447|241448|241449|241450|241451|241452|241453|241454|241455|241456|241457|241458|241459|241460|241461|241462|241463|241464|241465|241466|241467|241468|241469|241470|241471|241472|241473|241474|241475|241476|241477|241478|241479|241480|241481|241482|241482|241483|241484|241485|241486|241487|241489|241490|241491|241492|241493|241494|241495|241496|241497|241498|241499|241500|241501|241502|241503|241504|241505|241506|241507|241508|241509|241510|241511|241512|241513|241513|241514|241515|241516|241517|241517|241518|241519|241520|241521|241522|241523|241525|241526|241527|244734|244735|244737|244738|244739|244740|244741|244742|244743|244745|244746|244748|244749|244749|244750|244751|244752|244752|244753|244754|244755|244756|244759|244760|244762|244763|244764|244765|244766|244767|244768|244769|244770|247073|247074|248517|260013|260013|358843|358844|358845|358846|358847|358848|358849|358850|358851|358852|358853|358854|358855|358856|358857|358858|358859|358860|358861|358862|358863|358864|358865|358866|358867|358868|358869|358870|358871|358872|358873|358874|358875|358876|358877|358878|358879|358880|358881|358882|358883|358884|358885|358886|358887|361869|361870|361871|361872|361873|363379|371891|371892|371893|371896|371900|371920|371923|371934|371936|371939|371944|371945|371947|371962|371964|371965|371971|371983|371984|371988|371991|371996|372011|372020|372027|372036|372046|372051|372057|372060|372066|372072|372074|372080|372081|372083|372086|372100|372111|372112|372120|372634|372649|372662|372667|372672|372673|372681|372683|372727|372731|372736|372740|372741|372750|372756|372759|372784|372785|372786|372788|372790|372791|372794|372796|372818|372820|372823|372826|372828|372836|372922|372923|372926|372935|372936|372939|372946|372950|372952|372960|372970|372978|372980|372999|373003|373008|373012|373016|373020|373028|373036|373039|373046|373062|373065|373070|373073|373081|374667|374680|374681|374685|374696|374706|374708|374710|374725|374737|374748|374762|374777|374783|374784|374786|374792|374805|374809|374815|374826|374828|374834|374835|374851|390014|390014|390085|390137|398423|398530|398533|398537|398538|398539|398541|398544|398544|398556|398559|398568|398573|398576|398578|398579|398581|398582|398584|398588|398594|398595|398598|398600|398603|398604|398605|398606|398607|398610|398613|398615|398616|398617|398618|398621|398624|398627|398629|398630|398633|398641|398641|398643|398645|398648|398649|398650|398653|398653|398655|398658|398660|398661|398662|398663|398665|398666|398667|398669|398670|398670|398671|398671|398672|398673|398674|398675|398676|398677|398681|398684|398686|398689|398694|398695|398697|398698|398701|398703|398705|398709|398710|398714|398715|398716|398718|398721|398722|398723|398725|398726|398728|398729|398731|398734|398735|398738|398742|398745|398747|398748|398753|398756|398758|398761|398762|398763|398767|398767|398770|398771|398772|398777|398783|398784|398785|398787|398788|398792|398793|398794|398795|398796|398798|398799|398800|398805|398808|398809|398811|398812|398813|398815|398817|398818|398819|398820|398820|398822|398823|398824|398825|398827|398828|398829|398832|398834|398836|398837|398840|398841|398843|398846|398848|398849|398850|398851|398855|398856|398858|398861|398869|398870|398882|398887|398889|398890|398891|398895|398897|398899|398903|398904|398906|398907|398916|398917|398918|398919|398920|398922|398924|398925|398926|398930|398934|398935|398939|398940|398941|398942|398943|398945|398950|398952|398954|398956|398959|398964|398967|398969|398972|398973|398974|398975|398976|398977|398981|398982|398984|398988|398989|398990|398991|398993|398994|398998|399006|399008|399009|399010|399011|399012|399013|399014|399015|399016|399017|399019|399021|399022|399023|399024|399025|399027|399028|399030|399037|399041|399042|399050|399051|399051|399052|399053|399056|399061|399062|399065|399067|399068|399071|399072|399075|399076|399077|399078|399079|399082|399086|399091|399093|399093|399095|399096|399100|399103|399105|399107|399108|399109|399112|399115|399116|399117|399118|399122|399123|399128|399130|399133|399134|399136|399137|399139|399140|399145|399149|399150|399153|399154|399156|399159|399160|399163|399164|399165|399169|399171|399175|399177|399180|399184|399186|399188|399189|399192|399193|399195|399196|399200|399202|399204|399205|399206|399210|399212|399214|399217|399222|399223|399224|399226|399228|399231|399232|399233|399235|399237|399238|399239|399244|399246|399247|399252|399254|399255|399255|399256|399259|399261|399264|399270|399272|399273|399274|399276|399277|399278|399282|399283|399285|399286|399289|399290|399291|399294|399295|399297|399300|399301|399303|399304|399305|399306|399307|399310|399313|399314|399315|399316|399317|399319|399321|399323|399325|399326|399328|399330|399335|399344|399354|399357|399358|399362|399380|399388|399399|399399|399401|399403|399414|399417|399419|399432|399435|399443|399444|399455|399462|399466|399467|399472|399473|399492|399495|399496|399499|399500|399516|399517|399526|399530|399530|399531|399536|399543|399543|399545|399563|399565|399569|399571|399572|399573|399582|399583|408549|408550|408552|408554|408555|408556|408559|408560|408561|408562|408563|408564|408565|408566|408567|408569|408574|408575|408577|408578|408579|408581|408582|408584|408585|408585|408588|408590|408591|408592|408595|413356|432711|432712|432713|432714|432715|432717|432718|432721|432722|432726|432729|432730|432732|461558|461566|461573|461690|461697|461706|461708|461711|461714|461719|461726|461728|461735|461742|461743|461745|461747|461768|461769|461777|461794|461796|461801|461809|461811|461812|461815|461817|461819|461820|461823|461824|461827|461828|461832|461833|461837|461839|461850|461859|461862|461864|461871|461876|461878|461879|461882|461884|461888|461889|461892|461895|461897|461899|461900|461902|461903|461905|461906|461908|461910|461912|461918|461919|461925|461926|461928|461929|461933|461934|461937|461938|461940|461942|461946|461947|461949|461951|461954|461956|461958|461959|461961|461962|461963|461964|461965|461966|461967|461968|461969|461970|461971|461972|461973|461974|461975|461978|461981|461982|461987|461988|461989|461993|461997|461998|461999|462004|462005|462006|462007|462011|462013|462014|462018|462020|462021|462022|462024|462025|462026|462030|462031|462034|462035|462039|462040|462042|462043|462046|462051|462056|462058|462062|462069|462070|462072|462074|462079|462094|462100|462102|462109|462117|462119|462122|462124|462131|462132|462134|462142|462144|462145|462153|462154|462163|462166|462169|462173|462176|462179|462182|462184|462186|462192|462196|462200|462202|462208|462209|462212|462222|462223|462227|462231|462233|462235|462248|462250|462254|462257|462266|462268|462271|462273|462281|462283|462284|462285|462287|462288|462291|462295|462298|462304|462306|462308|462314|462323|462330|462336|462338|462350|462351|462354|462358|462371|462374|462376|462383|462390|462392|462393|462395|462405|462411|462413|462422|462431|462436|462438|462443|462451|462453|462463|462463|462465|462469|462471|462476|462480|462480|462481|462487|462488|462489|462505|462508|462509|462510|462512|462514|462517|462518|462520|462522|462523|462524|462529|462530|462531|462533|462535|462547|462548|462549|462556|462557|462558|462559|462560|462565|462566|462567|462569|462571|462577|462579|462581|462582|462584|462585|462587|462588|462589|462590|462594|462595|462600|462601|462602|462603|462607|462608|462609|462611|462614|462616|462620|462621|462623|462624|462625|462626|462627|462629|462630|462632|462634|462637|462638|462639|462640|462643|462645|462646|462648|462649|462650|462651|462652|462653|462654|462656|462657|462658|462661|462662|462664|462666|462669|462671|462674|462676|462678|462680|462683|462684|462687|462688|462689|462690|462692|462698|462699|462701|462703|462707|462709|462710|462711|462712|462713|462714|462715|462716|462718|462719|462721|462722|462723|462724|462725|462728|462731|462734|462742|462744|462745|462749|462751|462753|462756|462758|462760|462762|462763|462766|462767|462770|462772|462776|462777|462779|462780|462784|462787|462789|462793|462793|462796|462796|462800|462800|462802|462808|462809|462810|462821|462827|462833|462835|462838|462841|462844|462845|462848|462851|462853|462860|462863|462866|462871|462876|462878|462886|462889|462890|462893|462895|462898|462904|476254|476261|476262|476269|476280|476286|476288|476294|476296|476298|476305|476308|476317|476322|476327|476330|476331|476333|476336|476338|476340|476343|476348|476349|476350|476352|476360|476360|476362|476367|476372|476374|476382|476388|476389|476393|476400|476410|476413|476415|476421|476422|476425|476428|476432|476444|476448|476452|476457|476504|476507|476519|476522|476541|476546|476551|476557|476565|476603|476605|476606|476625|476653|476662|476668|476676|476678|476681|476684|476701|476707|476747|476770|476773|476796|476799|476802|476808|476814|476815|476829|476841|476850|476869|476872|476879|476886|476888|476905|476912|476918|476924|476925|476933|476938|476946|476956|476956|476982|476988|477027|477028|477043|497005|497006|497216|497217|497411|497414|497415|497634|497635|503620|503645|503662|503669|503684|503692|503927|503934|503941|503949|503952|503961|503974|503983|503990|504181|504205|504220|504610|504635|504648|504651|504660|504676|526610|526727|526729|526734|526738|526740|526743|526750|526751|526756|526757|526758|526760|526762|526763|526765|526766|526768|526771|526774|526775|526776|526777|526781|526782|526784|526786|526787|526789|526792|526793|526794|526795|526800|526802|526804|526809|526811|526815|526816|526817|526819|526820|526822|526823|526824|526825|526826|526828|526829|526830|526831|526832|526837|526839|526841|526843|526844|526846|526850|526851|526854|526855|526856|526857|526858|526860|526861|526862|526863|526864|526865|526868|526869|526871|526874|526875|526882|526884|526886|526887|526888|526889|526890|526891|526892|526893|526897|526900|526902|526905|526908|526910|526911|526915|526922|526924|526927|526928|526929|526930|526935|526935|526936|526940|526942|526943|526944|526946|526948|526952|526953|526954|526959|526962|526964|526966|526968|526971|526973|526976|526977|526981|526982|526983|526985|526987|526988|526990|526991|526992|526995|526996|526998|526999|527000|527001|527002|527004|527005|527006|527008|527009|527010|527012|527014|527016|527020|527022|527023|527024|527025|527027|527036|527044|527045|527049|527053|527058|527060|527069|527071|527079|527081|527083|527089|527093|527095|527097|527101|527103|527119|527125|527127|527128|527129|527133|527136|527136|527139|527142|527145|527149|527151|527153|527158|527159|527160|527168|527173|527174|527180|527183|527185|527193|527193|527195|527201|527205|527209|527220|527283|527288|527298|527303|527309|527310|527313|527317|527329|527333|527336|527337|527344|527346|527353|527354|527359|527361|527363|527367|527370|527374|527377|527378|527380|527383|527388|527395|527397|527401|527403|527408|527421|527423|527432|527433|527440|527441|527446|527448|527451|527455|527457|527459|527462|527465|527468|527468|527470|527481|527485|527487|527488|527491|527494|527497|527502|527503|527506|527507|527508|527509|527513|527516|527519|527520|527529|527534|527536|527538|536406|536408|539044|539306|539307|539308|539309|539310|539311|539312|539313|539314|539315|539316|539317|539318|539319|539320|539321|539322|539323|539325|539326|539327|539328|539329|540488|540489|551900|551902|551905|551906|551907|564996|565119|565137|565138|565140|565144|565146|565148|565149|565151|565152|565159|565162|565163|565171|565176|565181|565184|565186|565188|565195|565197|565199|565204|565205|565207|565209|565216|565219|565220|565222|565226|565228|565231|565233|565235|565241|565243|565249|565250|565252|565256|565263|565266|565268|565270|565272|565274|565277|565279|565287|565288|565289|565292|565300|565304|565306|565311|565314|565319|565320|565324|565325|565326|565327|565331|565333|565335|565337|565338|565341|565343|565347|565348|565349|565351|566282|566285|566417|566419|566420|566421|566426|566427|566428|566430|566431|566434|566440|566448|566455|566459|566473|566476|566477|566484|566485|566497|566498|566506|566514|566528|566543|566562|566563|566565|566573|566574|566575|566577|566579|566584|566590|566592|566593|566594|566599|566605|566609|566614|566619|566621|566623|566624|566626|566627|566630|566636|566637|566638|566645|566647|566652|566656|566676|566678|566684|566685|566688|566694|566699|566700|566701|566708|566709|566710|566713|566715|566717|566725|566730|567701|567703|567708|567711|567715|567716|567717|567719|567720|567727|567728|567734|567735|567737|567739|567744|567748|567751|567754|567755|567760|567761|567764|567766|567768|567769|567776|567781|567784|567791|567798|567800|567804|567808|567809|567811|567814|567819|567821|567822|567827|567834|567836|567842|567843|567846|567847|567851|567857|567868|567871|567872|567874|567877|567881|567884|567888|567894|567896|567898|567901|567902|567904|567907|567910|567912|567916|567917|567920|567921|571148|571150|571321|571324|571325|571334|571337|571340|571345|571346|571350|571353|571354|571359|571361|571364|571365|571366|571372|571376|571382|571383|571385|571388|571394|571403|571407|571408|571415|571423|571424|571435|571446|571451|571452|571457|571458|571460|571463|571464|571467|571468|571469|571471|571478|571487|571493|571494|571504|571519|571524|571545|571549|571550|571554|571557|571558|571559|571563|571572|571573|571576|571577|571590|571604|571612|571614|571618|571622|571628|571632|571635|571638|571639|571640|571648|571652|571657|571659|571665|571668|571674|571689|571694|571705|575858|575859|575861|575866|578307|611105|611111|611112|611117|611310|621373|640700|640701|640702|640703|640704|640705|640706|640707|640708|640709|640710|640711|640712|640713|640714|640715|640716|640717|640718|640719|640720|640721|640722|640723|640724|640725|640726|640727|640728|640729|640730|640731|640732|640733|640734|640735|640736|640737|640738|640739|640740|640741|640742|640743|640744|640745|640746|640747|640748|640749|640750|640751|640752|640753|640754|640755|640756|640757|640758|640759|640760|640761|640762|640763|640764|640765|640766|640767|640768|640769|640770|640771|640772|640773|640774|640775|640776|640777|640778|640779|640780|640781|640782|640783|640784|640785|640786|640787|640788|640789|640790|640791|640792|640793|640794|640795|640796|640797|640798|640799|640800|640801|640802|640803|640804|640805|640806|640807|640808|640809|640810|640811|640812|640813|640814|640815|640816|640817|640818|640819|640820|640821|640822|640823|640824|640825|640826|640827|640828|640829|640830|640831|640832|640833|640834|640835|640836|640837|640838|640839|640840|640841|640842|640843|640844|640845|640846|640847|640848|640849|640850|640851|640852|640853|640854|640855|640856|640857|640858|640859|640860|640861|640862|640863|640864|640865|640866|640867|640868|640869|640870|640871|640872|640873|640874|640875|640876|640877|640878|640879|640880|640881|640882|640883|640884|640885|640886|640887|640888|640889|640890|640891|640892|640893|640894|640895|640896|640897|640898|640899|640900|640901|640902|640903|640904|640905|640906|640907|640908|640909|640910|640911|640912|640913|640914|640915|640916|640917|640918|640919|640920|640921|640922|640923|640924|640925|640926|640927|640928|640929|640930|640931|640932|640933|640934|640935|640936|640937|640938|640939|640940|640941|640942|640943|640944|640945|640946|640947|640948|640949|640950|640951|640952|640953|640954|640955|640956|640957|640958|640959|640960|640961|640962|640963|640964|640965|640966|640967|640968|640969|640970|640971|640972|640973|640974|640975|640976|640977|640978|640979|640980|640981|640982|640983|640984|640985|640986|640987|640988|640989|640990|640991|640992|652166|652213|652216|652221|652223|652227|652263|652265|652266|652288|652292|652297|652298|652301|652309|652311|652313|652367|652368|652414|652417|652420|652425|652428|652434|652435|652437|652445|652446|652454|652629|652652|652653|652654|652656|652660|652664|652670|652672|652684|656118|656119|666198|685310|685311|687924|687925|687926|687927|687929|687931|687932|687933|687935|687936|690024|690026|690027|690028|690029|693165|693166|693167|693169|693170|695555|695556|702251|713448|725004|730854|738554|738555|738556|738557|744684|744815|753224|753230|753233|753234|753235|753239|753240|753241|753243|753245|759989|759996|760133|760135|760138|760154|760163|768965|768970|768972|768973|768974|768983|768987|768989|768999|769003|769009|769011|775798|775845|775976|778062|784311|784317|784318|784319|784322|784329|784331|784333|784336|784344|784345|787758|788048|788052|789506|789511|789512|789514|789516|789686|791203|791204|791205|791206|791207|791208|791209|791210|791211|791212|791213|796719|811164|811171|811173|811175|811184|811190|811194|811195|811201|811209|811216|811228|815531|815533|815536|815538|815540|815542|815545|815551|815554|815555|820457|820458|820459|820460|820461|820462|820463|820464|820465|820466|820467|820468|820469|820470|820471|820472|820473|820474|820475|820476|820478|820479|820480|839411|839412|839413|839414|839415|839416|839417|839418|839419|839420|839421|839422|839423|839424|839425|839426|839427|839428|839429|839430|839431|839432|839433|839434|839435|839436|839437|839438|839439|839440|839441|839442|839443|839444|839445|839446|839447|839448|839449|839450|839451|839452|839453|839454|839455|839456|839457|839458|839459|839460|839461|839462|839463|839464|839465|839466|839467|839468|839469|839470|839471|839472|839473|839474|839475|839476|839477|839478|839479|839480|839481|839482|839483|839484|839485|839486|839487|839488|839489|839490|839491|839492|839493|839494|839495|839496|839497|839498|839499|839500|839501|839502|839503|839504|839505|839506|839507|839508|839509|839510|839511|839512|839513|839514|839515|839516|839517|839518|839519|839520|839521|839522|839523|839524|839525|839526|839527|839528|839529|839530|839531|839532|839533|839534|839535|839536|839537|839538|839539|839540|839541|839542|839543|839544|839545|839546|839547|839548|839549|839550|839551|839552|839553|839554|839555|839556|839557|839558|839559|839560|839561|839562|839563|839564|839565|839566|839567|839568|839569|839570|839571|839572|839573|839574|839575|839576|839577|839578|839579|839580|839581|839582|839583|839584|839585|839586|839587|839588|839589|839590|839591|839592|839593|839594|839595|839596|839597|839598|839599|839600|839601|839602|839603|839604|839605|839606|839607|839608|839609|839610|839611|839612|839613|839614|839615|839616|839617|839618|839619|839620|839621|839622|839623|839624|839625|839626|839627|839628|839629|839630|839631|839632|839633|839634|839635|839636|839637|839638|839639|839640|839641|839642|839643|839644|839645|839646|839647|839648|839649|839650|839651|839652|839653|839654|839655|839656|839657|839658|839659|839660|839661|839662|839663|839664|839665|839666|839667|839668|839669|839670|839671|839672|839673|839674|839675|839676|839677|839678|839679|839680|839681|839682|839683|839684|839685|839686|839687|839688|839689|839690|839691|839692|839693|851478|851480|851482|851484|851486|851488|851490|851492|851933|851935|851937|852448|852449|852454|852455|852460|852461|852466|852661|852663|852664|852665|852667|852671|852674|852675|852676|926492|926493|926494|926495|926496|926497|926498|926499|926500|926501|926502|926503|926504|926505|926506|926507|926508|926509|926510|926511|926512|926513|926514|926515|926516|926517|926518|926519|926520|926521|926522|926523|926524|926525|926526|926527|926528|926529|926530|926531|926532|926533|926534|926535|926536|926537|926538|926539|926540|926541|926542|926543|926544|926545|926546|926547|926548|926549|926550|926551|926552|926553|926554|926555|926556|926557|926558|926559|926560|926561|926562|926563|926564|926565|926566|926567|926568|926569|926570|926571|926572|926573|935952|935953|935954|935955|935956|935957|935958|935959|935960|935961|935962|935963|935964|935965|935966|935967|935968|935969|935970|935971|935972|935973|935974|935975|935976|935977|935978|935979|935980|935981|935982|935983|935984|935985|935986|935987|935988|935989|935990|935991|935992|935993|935994|935995|935996|935997|935998|935999|936000|936001|936002|936003|936004|936005|936006|936007|936008|936009|936010|936011|936012|936013|936014|936015|936016|936017|936018|936019|936020|936021|936022|936023|936024|936025|936026|936027|936028|936029|936030|936031|936032|936033|936034|936035|936036|936037|940246|940247|940248|940249|940250|940251|940252|940253|940254|940255|940256|940257|941024|941025|941026|941027|947822|947823|947824|947825|947826|947827|947828|947829|947830|947831|947832|947833|947834|947835|947836|947837|947838|947839|947840|947841|947842|947843|947844|947845|947846|947847|947848|947849|947850|947851|947852|947853|947854|947855|947856|947857|947858|947859|947860|947861|947862|947863|947864|947865|947866|947867|947868|947869|947870|947871|947872|947873|947874|947875|947876|947877|947878|947879|947880|947881|947882|947883|947884|947885|947886|947887|947888|947889|947890|947891|947892|947893|947894|947895|947896|947897|947898|947899|947900|947901|947902|947903|947904|947905|947906|947907|947908|947909|947910|947911|947912|947913|947914|947915|947916|947917|947918|956772|956773|956774|956775|956776|956777|956778|956779|956780|956781|956782|956783|956784|956785|956786|956787|956788|956789|956790|956791|956792|956793|956794|956795|956796|956797|956798|956799|956800|956801|956802|956803|956804|956805|956806|956807|956808|956809|956810|956811|956812|956813|956814|956815|956816|956817|956818|956819|960025|960026|960027|960028|960029|960777|960778|960779|960780|960781|962064", + "text": "Colorectal cancer, susceptibility to, 12" + }, + { + "baseId": "48560|49852|222233|241266|241269|241285|241297|241316|241326|241341|241347|241355|241362|241420|241429|241431|241482|241513|241517|244749|244752|260013|390014|398544|398641|398653|398670|398671|398767|398820|399051|399093|399255|399399|399530|399543|408585|432713|462463|462480|462793|462796|462800|476360|476956|503662|526787|526935|527136|527193|527468|537658|611105", + "text": "Facial dysmorphism, immunodeficiency, livedo, and short stature" + }, + { + "baseId": "48564|143196|792770", + "text": "Osteopetrosis, autosomal recessive 8" + }, + { + "baseId": "48565|48566|237109|420146|438876|972799", + "text": "Mitochondrial DNA depletion syndrome 11" + }, + { + "baseId": "48573|214145|214146|214147|214148|439703|439704|439705|537471|538605", + "text": "Charcot-Marie-Tooth disease, axonal, type 2w" + }, + { + "baseId": "48592", + "text": "STRA6-Related Disorder" + }, + { + "baseId": "48595", + "text": "Autism, susceptibility to, 19" + }, + { + "baseId": "48597|48598|375834|376706|378927|378931|445938|506849|506866|508895|508896|508897|508898|512871|512872|512961", + "text": "Left ventricular noncompaction 7" + }, + { + "baseId": "48599", + "text": "Focal T2 hyperintense basal ganglia lesion" + }, + { + "baseId": "48617|208670|208672|362163|362164|446252|552224|610404|610405|626282|788938|805113|805114|971144", + "text": "Primary autosomal recessive microcephaly 10" + }, + { + "baseId": "48664", + "text": "Cowden syndrome 4" + }, + { + "baseId": "48689|538999|539000|622371|679584", + "text": "Metaphyseal dysplasia with maxillary hypoplasia and brachydactyly" + }, + { + "baseId": "48690|48691|48692|237373|463957|464786|642983|652495|693635|693636|693637|703061|703063|703066|703067|730972|739453", + "text": "Microphthalmia, isolated 8" + }, + { + "baseId": "48693|48694|48695|48696|538937|538938|654147", + "text": "Urofacial syndrome 2" + }, + { + "baseId": "48698|204592|359832|578487|790972", + "text": "Neuropathy, hereditary motor and sensory, Russe type" + }, + { + "baseId": "48727|48728|48729|51571|197755|197764|227462|227463|360976|426112|433140|445379|464936|514051|539060|573381|609338|618252|916563|919572|919574|919575|919576|919577|919578|920345", + "text": "Marfan lipodystrophy syndrome" + }, + { + "baseId": "48870|54366|312577|312600|312622|312651|312653|312687|312749|318564|318579|318580|318581|318594|318704|324719|324725|324740|324752|324767|324809|324825|325443|325467|325552|325565|325687|325690|325697|353170|480738|977246", + "text": "Noonan-like syndrome" + }, + { + "baseId": "48930", + "text": "KRAS-related RASopathy" + }, + { + "baseId": "48983|360978|361092|581713|792733", + "text": "Pectus excavatum" + }, + { + "baseId": "48983|514137|590047|590048", + "text": "Brachycephaly" + }, + { + "baseId": "49024|186247|361010|361013|514076|514078|514080|590084|645561|801197", + "text": "Cafe-au-lait spot" + }, + { + "baseId": "49024|203232|263246|263251|263289|263307|263367|263421|362234|514184|801159|801191|905852|905853|905854|966299|971562", + "text": "Specific learning disability" + }, + { + "baseId": "49024|79397|205031|205755|205756|263388|263393|538627|550125|550227|553415|553417|581714|581715|610481|623598|679483|918185|918956|921254|921258|921260|965459|965500|970283|971286", + "text": "Intellectual disability, mild" + }, + { + "baseId": "49030|185546", + "text": "Embryonal rhabdomyosarcoma" + }, + { + "baseId": "49142", + "text": "Abnormality of the sternum" + }, + { + "baseId": "49152", + "text": "Abnormality of the aortic valve" + }, + { + "baseId": "49211", + "text": "MAP2K1-Related Disorder" + }, + { + "baseId": "49251", + "text": "MAP2K1-related RASopathy" + }, + { + "baseId": "49356|49357|451882", + "text": "Emery-Dreifuss muscular dystrophy 7, autosomal dominant" + }, + { + "baseId": "49379|75599|167370|375408|409617|465411|466365|466368|466369|466375|466382|505381|529271|529916|530415|530416|530418|574028|644589|644590|644591|644592|644593|644594|644595|644596|652840|653133|703634|714862|714863|714864|726585|726587|726588|740128|744831|755104|770851|770855|776157|776338|779764|785259|816336|843748|843749|843750|843751|843752|843753|843754|927774|927775|927776|927777|937412|937413|937414|949367|957732|961844|961845", + "text": "Immunodeficiency 8" + }, + { + "baseId": "49381|49382|463172|463174|463182|463309|527328|527331|527339|527867|565687|567033|567053|624462|641357|641358|641359|641360|641366|641367|641368|641369|641370|744912|769274|815927|840208|840209|840210|840215|840216|840217|840218|851521|926716|926717|926718|926719|936233|948135|948136|948137|956917|956920|961901", + "text": "Lymphoproliferative syndrome 2" + }, + { + "baseId": "49388|49389", + "text": "Amelogenesis imperfecta, type 1E, with snow-capped teeth" + }, + { + "baseId": "49468|49469|237348|297853|297865|297880|297886|297893|300033|300064|300065|300077|300079|300080|304247|304262|304278|304286|304297|304301|304309|304323|304597|304640|304652|304675|329605|339854|339860|339863|339865|339867|339871|339887|339895|339904|345597|346936|346948|346960|346961|346964|353452", + "text": "Acrodysostosis" + }, + { + "baseId": "49660|49660|77568|221757|231697", + "text": "Charcot-Marie-Tooth disease, dominant intermediate G" + }, + { + "baseId": "49759|861645", + "text": "SPG11-related spastic paraplegia" + }, + { + "baseId": "49826|497248|589819|654985", + "text": "Deafness-infertility syndrome" + }, + { + "baseId": "49829|613906|613909|613910|613954|613992|653998|653999|800683|962876", + "text": "16p11.2 deletion syndrome" + }, + { + "baseId": "49842|207165|454710", + "text": "Cutaneous malignant melanoma 9" + }, + { + "baseId": "49859|480538|480539|625868", + "text": "Microphthalmia, isolated, with coloboma 9" + }, + { + "baseId": "49877|453594|454044|454373|562287|651224|651281|698678|709506|744179|819503|829520|829521|829522|923621|932464", + "text": "Maple syrup urine disease, mild variant" + }, + { + "baseId": "49900|49922|152909|187250|237034|254152|254155|254157|254159|254160|254161|254163|361518|372380|444801|461106|461109|461112|461113|461115|461308|461310|461317|461322|461323|461326|461583|461587|461589|461600|461913|461915|526191|526199|526201|526207|526379|526380|526683|526697|564621|564624|565752|565764|567255|567258|567260|570639|570656|570662|640030|640031|640033|640040|640044|640045|640046|640048|640049|693022|693023|693024|693025|693026|693027|693028|693031|695512|695513|701756|701757|701761|724427|752667|778132|796572|820363|820364|820365|820366|838403|838404|838405|838406|838407|838408|838409|838410|838411|838412|838413|838414|838415|838416|838417|838418|838419|838420|838421|851839|852346|926226|926227|926228|926229|926230|926231|926232|926233|926234|926235|926236|926237|926238|935522|935523|935524|935525|935526|935527|935528|935529|935530|935531|935532|940995|940996|947446|947447|947448|947449|947450|947451|947452|947453|959987", + "text": "Myopathy with tubular aggregates" + }, + { + "baseId": "49900|49922|136636|136636|136636|152909|152909|187250|237034|237034|254152|254155|254157|254159|254160|254161|254163|361518|372380|444801|461105|461106|461109|461112|461113|461115|461115|461118|461120|461308|461310|461317|461322|461323|461326|461583|461587|461589|461591|461600|461610|461911|461913|461913|461915|526191|526197|526199|526201|526203|526207|526379|526380|526388|526683|526697|564617|564621|564624|564624|565728|565732|565739|565742|565752|565753|565754|565758|565764|567255|567256|567258|567260|567272|570635|570636|570639|570652|570656|570662|614358|640029|640030|640031|640032|640033|640034|640035|640036|640037|640038|640039|640040|640041|640042|640043|640044|640045|640046|640047|640048|640049|640050|652094|652546|693022|693023|693024|693025|693026|693027|693028|693031|695512|695513|701756|701757|701761|724427|752667|778132|796572|820363|820364|820365|820366|838403|838404|838405|838406|838407|838408|838409|838410|838411|838412|838413|838414|838415|838416|838417|838418|838419|838420|838421|851839|852346|926226|926227|926228|926229|926230|926231|926232|926233|926234|926235|926236|926237|926238|935522|935523|935524|935525|935526|935527|935528|935529|935530|935531|935532|940995|940996|947446|947447|947448|947449|947450|947451|947452|947453|959987|980467", + "text": "Stormorken syndrome" + }, + { + "baseId": "49916|49917|49918|513594|798625", + "text": "Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal dominant 6" + }, + { + "baseId": "49919|250766|250767|440722|451384|451388|451542|451557|451743|451745|451747|451783|518508|518512|518657|560898|560900|560909|561884|630413|630414|651007|651084|691191|691192|695152|747745|819266|826912|826913|826914|826915|826916|826917|826918|826919|922900|931552|931553|931554|931555|960489", + "text": "Welander distal myopathy" + }, + { + "baseId": "49920|49921|49922|49923|136636|152909|187250|237034|461105|461115|461118|461120|461591|461610|461911|526197|526203|526388|564617|564624|565728|565732|565739|565742|565753|565754|565758|567256|567272|570635|570636|570652|614358|640029|640032|640034|640035|640036|640037|640038|640039|640041|640042|640043|640047|640050|652094|652546|980467", + "text": "Myopathy, tubular aggregate, 1" + }, + { + "baseId": "49924|49925|49927|49928|49929|97569|434631|626075|626076|626189|980172|980173", + "text": "Spastic paraplegia 46, autosomal recessive" + }, + { + "baseId": "49942|49975|132751|132752|137249|137269|139428|139436|150553|150761|151642|171099|171100", + "text": "Colorectal adenoma" + }, + { + "baseId": "49960|136497|137276|394289|482603|482654|550666|550669|550671|550676", + "text": "Neoplasm of the liver" + }, + { + "baseId": "50035|50077|50084|50085|50090|51666|94666|95079|95170|95380|95490|95574|95856|96135|96447|96518|96572|96587|96718|96735|96857|171168|171169|171170", + "text": "Colorectal cancer, non-polyposis" + }, + { + "baseId": "50129", + "text": "Primitive neuroectodermal tumor" + }, + { + "baseId": "50187", + "text": "Tuberous sclerosis and lymphangiomyomatosis" + }, + { + "baseId": "50218|50227", + "text": "Gastrointestinal polyposis" + }, + { + "baseId": "50229|50231|50232|50233|50236|50237|50239|50240|50241|138765|138767|215302|215302|221459|221463|239368|239372|239375|239390|239407|239412|239417|239420|239431|239433|239437|239439|239442|251491|251492|251493|251495|251496|251497|251499|293512|293521|293522|293526|293533|293538|293539|293544|293554|293556|293562|293567|293568|293572|293573|293576|293580|294903|294904|294927|294932|294935|294941|294942|294943|294946|294948|294963|294970|294972|294981|294984|294985|294986|294995|294997|295030|298604|298605|298606|298612|298613|298632|298634|298642|298643|298647|298650|298651|298654|298658|298659|298660|298661|298662|298663|298670|298671|298672|298673|298674|298675|298691|298699|298700|353670|393992|394406|394415|394441|394452|394454|520014|520342|691579|807745|890731|890732|890733|890734|890735|890736|890737|890738|890739|890740|890741|890742|890743|890744|890745|890746|890747|890748|890749|890750|890751|890752|890753|890754|890755|890756|890757|890758|890759|890760|891799|918897", + "text": "Idiopathic hypereosinophilic syndrome" + }, + { + "baseId": "50278|180168|239803", + "text": "B Lymphoblastic Leukemia/Lymphoma with Hypodiploidy" + }, + { + "baseId": "50295", + "text": "Birt-Hogg-Dub syndrome" + }, + { + "baseId": "50318|983770", + "text": "Mitochondrial complex III deficiency, nuclear type 5" + }, + { + "baseId": "51080|51081|51082|51083|51084|209072|209073|209075|209076|209077|215663|225806|227711|243898|260331|265026|265165|267206|275125|362749|378376|411396|422489|425236|446686|471614|471616|471898|471899|472163|481507|481508|486482|508588|514280|534835|534894|535015|535016|535022|535025|535360|536192|572515|572522|572523|573896|574745|574746|574749|578594|611452|611949|614508|622945|623593|650096|650097|650098|650099|650100|650101|653458|653464|653526|653535|653717|654153|672119|677472|706254|729629|774092|786856|786857|789702|792467|792468|792469|792470|802052|821510|822227|850117|850118|850119|850120|850121|850122|852521|860890|920034|929758|929759|929760|939617|939618|939619|940564|941311|951817|951818|951819|951820|963983|964616|964617|964618|964905|971209", + "text": "Neurodegeneration with brain iron accumulation 5" + }, + { + "baseId": "51085|51086|206561|253860", + "text": "Albinism, oculocutaneous, type VII" + }, + { + "baseId": "51095|53399|53400|53401|53406|178210|312347|312350|318236|324369|325066|565481|798995|867042|867043", + "text": "Fatal infantile hypertonic myofibrillar myopathy" + }, + { + "baseId": "51095|56353|56430|56605|141530|177535|179133|188393|189935|196672|296809|301509|400363|497171|679364|679412", + "text": "Congestive heart failure" + }, + { + "baseId": "51100|51101|51102|51103|51104|51105|136728|136730|206771|249771|249772|364758|364760|364766|364776|364944|364947|364956|364958|364970|364979|405086|425344|442743|442744|447555|447569|447571|447717|447719|447725|447729|447800|447802|447806|447813|447814|447858|498413|498480|511249|514886|515512|515513|515568|515581|515583|515634|552041|556490|557122|557125|557128|557130|557179|557181|558361|558363|622859|627436|627437|627438|627439|627440|627441|627442|627443|627444|627445|627446|650515|650625|690516|758888|774473|789943|789944|818817|818934|823533|823534|823535|823536|823537|823538|823539|823540|823541|823542|823543|823544|823545|823546|823547|850753|921868|921869|930349|930350|930351|930352|930353|930354|930355|941782|952308|959545|960422", + "text": "Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type a, 11" + }, + { + "baseId": "51106|51107|221371|239118|393372|393433|393435|393436|393625|393809|451799|452192|452196|452204|452206|452308|452430|481390|518978|518991|519175|519180|519191|558850|558852|559387|559389|559391|561276|561278|561280|562587|562589|608986|631063|631064|631065|631066|631067|631068|631069|683568|686370|686371|686372|819355|827730|827731|827732|827733|827734|827735|827736|827737|827738|827739|827740|827741|827742|827743|923102|931844|931845|931846|940742|940743|943427", + "text": "Charcot-Marie-Tooth disease, dominant intermediate F" + }, + { + "baseId": "51108|51109|165610|207992|207994|207996|243991|429447|462458|463188|463312|463319|527347|527349|527362|527868|527870|564991|565710|565712|565713|565715|565717|567055|567056|572005|611776|641372|641373|641374|641375|641376|641377|641378|641379|641380|652162|652338|702493|702494|725258|738853|769299|784465|791273|820437|840235|840236|840237|840238|840239|840240|840241|840242|840243|840244|840245|926725|926726|926727|936245|936246|936247|936248|936249|936250|936251|948144|948145|956927|956928|956929", + "text": "Temtamy syndrome" + }, + { + "baseId": "51108|432205|432206|432209|432210", + "text": "Abnormality of the corpus callosum" + }, + { + "baseId": "51108", + "text": "Colobomatous microphthalmia" + }, + { + "baseId": "51151|51152|450279|450280|450440|560756", + "text": "Cataract 39, multiple types" + }, + { + "baseId": "51182|51183|227502|227503|513290|552112|552113|919069|919070|961650|965967", + "text": "Lissencephaly 5" + }, + { + "baseId": "51184|167412|205231|211767|243561|265656|265814|285543|288937|288967|288979|303125|303165|303174|309751|309760|311435|315004|315130|321064|322568|326827|332008|332014|332017|332035|336688|336694|338642|338986|340575|342933|344540|350562|350570|350576", + "text": "Spastic Paraplegia, Recessive" + }, + { + "baseId": "51184|402131", + "text": "Cerebral cortical atrophy" + }, + { + "baseId": "51184|59852|193488|327447|333616|488122|488126|488170|488177|488178|488179|488180|512780|800923|800924", + "text": "Optic nerve hypoplasia" + }, + { + "baseId": "51184|360920|551420|577714|613539", + "text": "Spastic ataxia" + }, + { + "baseId": "51185|51186|51186|51187|51187|51188|51188|51189|51189|51190|76342|76343|76344|76345|76346|76347|76347|188292|208708|208710|213932|390461|410840|410840|430376|430377|430378|430379|430380|430382|430383|430385|430386|430387|430388|430389|430389|430390|430391|430392|430392|430393|430395|430396|430400|430401|430403|430404|430405|430406|430410|430411|430412|430413|446303|469462|469467|469468|469469|469475|469476|469480|470503|470505|470509|470512|470520|470531|470533|471015|471019|471026|471031|471031|471034|471036|471038|471480|471484|471486|471490|471496|471499|471500|533655|533657|533661|533672|533675|533678|533684|533686|533689|533691|533696|533701|533702|533703|533703|533704|533705|533706|533707|533708|533710|533711|533712|533714|533715|533716|533717|533718|533719|533725|533731|533986|534219|534222|534230|534242|534246|534250|534252|534255|534259|534261|534264|534266|537009|548917|548919|548923|548928|548929|548929|548931|548933|548948|548948|548951|548957|548978|548980|548981|548981|548982|548983|548984|548988|548990|548991|548994|548996|548997|549003|549006|549011|549011|549015|549023|549027|549035|549040|549047|549054|549057|549059|549061|549066|549085|549086|549088|549213|549216|549217|549218|549220|549220|549222|549223|549223|549224|549229|549233|549236|549238|549239|549240|549242|549243|549244|549246|549247|549392|549393|549394|549395|549396|549397|549398|549399|549400|549401|549402|549403|549404|549405|549405|549406|549407|549408|549409|549409|549410|549411|549412|549413|549414|549415|571396|571397|571400|571404|572973|572975|572979|572980|573629|573630|573633|573634|573638|573644|573646|573648|573656|573663|573664|575134|575135|575136|575137|575138|614478|614479|614480|624688|648802|648803|648804|648805|648806|648807|648808|648809|648810|648811|648811|648812|648813|648814|648815|648816|648817|648817|648818|648819|648820|648821|648822|648823|648824|648825|648826|648827|648828|648829|648830|648831|648832|648833|648834|648835|648836|648837|648838|648839|648840|648841|648842|648843|648844|648845|648846|653131|653142|653224|653229|653563|653654|653655|705618|705619|717141|717143|717144|717145|728804|728806|728807|728809|728810|728811|728812|728813|728814|728815|731367|731368|731369|742532|742533|742534|742535|742536|742537|742538|742539|742540|742541|742542|742543|742544|742545|742546|742547|742548|745129|745321|745442|745443|757671|757672|757673|757674|757675|757676|757677|757678|757680|757681|757682|757683|757684|757685|757686|757687|757688|757689|757690|760697|760788|760964|760966|760969|773209|773211|773212|773213|773214|773215|773216|773217|773218|773220|773221|773222|773226|773227|773230|773231|773232|773235|773236|773238|773239|773240|773242|773243|773244|773247|773248|773249|773251|776668|776678|776704|776785|776789|776805|786432|786433|786436|786438|786439|786442|786443|786444|786445|786446|786447|786448|786452|786455|786456|786457|786459|786460|786461|786462|786463|788303|788345|788347|792003|821345|822281|848555|848556|848557|848558|848559|848560|848561|848562|848563|848564|848565|848566|848567|848568|848569|848570|848571|848572|848573|848574|848575|848576|848577|848578|848579|848580|848581|848582|848583|848584|848585|848586|848587|848588|848589|848590|848591|848592|848593|848594|848595|852912|906374|906380|929256|929257|929258|929259|929260|929261|929262|929263|939043|939044|939045|939046|939047|939048|939049|939050|939051|939052|939053|940513|940514|941255|951156|951157|951158|951159|951160|951161|951162|951163|951164|951165|951166|951167|951168|951169|951170|958874|958875|958876|958877|958878|958879|958880|958881|958882|958883|958884|958885|958886|958887|958888|958889|958890|958891|958892|958893|958894|958895|958896|958897|958897|958898|958899|958900|958901|958902|958903|958904|958905|958906|958907|958908|958909|958910|958911|958912|958913|958914|958915|958916|958917|960322|960323|960944|960945|960946|961985", + "text": "Dyskeratosis congenita, autosomal recessive, 5" + }, + { + "baseId": "51186|51186|51187|51188|51189|76347|188291|188292|188294|208708|213930|213931|213932|247417|410840|430376|430377|430378|430379|430380|430382|430383|430385|430386|430387|430388|430389|430390|430391|430392|430393|430395|430396|430400|430401|430403|430404|430405|430406|430410|430411|430412|430413|469462|469467|469468|469469|469475|469476|469480|470503|470505|470509|470512|470520|470531|470533|471015|471019|471026|471031|471031|471034|471036|471038|471480|471484|471486|471490|471496|471499|471500|533655|533657|533661|533672|533675|533678|533684|533686|533689|533691|533696|533701|533702|533703|533704|533705|533706|533707|533708|533710|533711|533712|533714|533715|533716|533717|533718|533719|533725|533731|533986|534219|534222|534230|534242|534246|534250|534252|534255|534259|534261|534264|534266|537009|548929|548948|548981|549011|549220|549223|549405|549409|571396|571397|571400|571404|572973|572975|572979|572980|573629|573630|573633|573634|573638|573644|573646|573648|573656|573663|573664|575134|575135|575136|575137|575138|614478|614479|614480|624688|648802|648803|648804|648805|648806|648807|648808|648809|648810|648811|648812|648813|648814|648815|648816|648817|648818|648819|648819|648820|648821|648822|648823|648824|648825|648826|648827|648828|648829|648830|648831|648832|648833|648834|648835|648836|648837|648838|648839|648840|648841|648842|648843|648844|648845|648846|653131|653142|653224|653229|653563|653654|653655|705618|705619|717141|717143|717144|717145|728804|728806|728807|728809|728810|728811|728812|728813|728814|728815|731367|731368|731369|742532|742533|742534|742535|742536|742537|742538|742539|742540|742541|742542|742543|742544|742545|742546|742547|742548|745129|745321|745442|745443|757671|757672|757673|757674|757675|757676|757677|757678|757680|757681|757682|757683|757684|757685|757686|757687|757688|757689|757690|760697|760788|760964|760966|760969|773209|773211|773212|773213|773214|773215|773216|773217|773218|773220|773221|773222|773226|773227|773230|773231|773232|773235|773236|773238|773239|773240|773242|773243|773244|773247|773248|773249|773251|776668|776678|776704|776785|776789|776805|786432|786433|786436|786438|786439|786442|786443|786444|786445|786446|786447|786448|786452|786455|786456|786457|786459|786460|786461|786462|786463|788303|788345|788347|804868|821345|822281|848555|848556|848557|848558|848559|848560|848561|848562|848563|848564|848565|848566|848567|848568|848569|848570|848571|848572|848573|848574|848575|848576|848577|848578|848579|848580|848581|848582|848582|848583|848584|848585|848586|848587|848588|848589|848590|848591|848592|848593|848594|848595|852912|929256|929257|929258|929259|929260|929261|929262|929263|939043|939044|939045|939046|939047|939048|939049|939050|939051|939052|939053|940513|940514|941255|951156|951157|951158|951159|951160|951161|951162|951163|951164|951165|951166|951167|951168|951169|951170|958874|958875|958876|958877|958878|958879|958880|958881|958882|958883|958884|958885|958886|958887|958888|958889|958890|958891|958892|958893|958894|958895|958896|958897|958898|958899|958900|958901|958902|958903|958904|958905|958906|958907|958908|958909|958910|958911|958912|958913|958914|958915|958916|958917|960322|960323|960944|960945|960946|962184|965238|969618|971585", + "text": "Pulmonary fibrosis and/or bone marrow failure, telomere-related, 3" + }, + { + "baseId": "51193|51194|51195|51196|51197|51198|508727|615559|654100|654103|654104|654105|654106|654107|654108|654109|654110", + "text": "Platelet-type bleeding disorder 15" + }, + { + "baseId": "51200|98568|251489|266485|267097|267280|268739|269058|269397|270198|272523|293475|293476|293478|293479|293480|293486|293491|293493|293494|293499|293507|293508|294872|294875|294888|294889|294890|294899|294900|294902|298547|298552|298560|298561|298564|298568|298569|298571|298572|298573|298574|298581|298585|298586|298590|298594|298599|298600|298618|298620|298621|298630|369115|490406|500997|563765|698542|748960|890699|890700|890701|890702|890703|890704|890705|890706|890707|890708|890709|890710|890711|890712|890713|890714|890715|890716|890717|890718|890719|890720|890721|890722|890723|890724|890725|890726|890727|890728|890729|890730", + "text": "Qualitative or quantitative defects of beta-sarcoglycan" + }, + { + "baseId": "51215|256610|256611|256612|256613|256614|256615|256617|268010|269481|274819|330874|330878|330881|330882|330883|330892|330907|330910|330913|330915|330916|330917|330921|330923|330927|330928|330930|330931|330936|341171|341173|341180|341182|341183|341185|341192|341197|341198|341200|341201|341206|341207|341209|341211|341213|341215|346709|346712|346713|346716|346721|346727|346728|346734|346735|346737|346738|346747|346749|346750|346751|346752|347984|347985|347986|347990|347995|347999|348001|348014|348017|348019|348020|348028|348030|348036|348040|445947|548665|715911|727663|727664|727665|741319|741321|741323|741324|756407|785857|878995|878996|878997|878998|878999|879000|879001|879002|879003|879004|879005|879006|879007|879008|879009|879010|879011|879012|879013|879014|879015|879016|879017|879018|879019|879020|879021|879022|879023|879024|879025|879026|879027|879028|880639|880640|880641", + "text": "Laryngo-onycho-cutaneous syndrome" + }, + { + "baseId": "51273|226148|540439|918616|920140", + "text": "Myopathy, scapulohumeroperoneal" + }, + { + "baseId": "51363|51364|51365|51366|51367|51368|677322", + "text": "Combined d-2- and l-2-hydroxyglutaric aciduria" + }, + { + "baseId": "51369|51370|226952|226953|226953|247115|390111|465591|466309|466311|466580|466583|529863|529864|529866|529869|529878|529882|529960|529962|529966|529967|530202|530397|568040|570050|570062|570067|614421|625911|644513|644514|644515|644516|644517|644518|644519|644520|644521|644522|644523|644524|644525|644526|644527|644528|644529|714820|726521|740048|740049|740050|740051|755049|770804|770806|770807|770813|785237|785238|785239|788045|843671|843672|843673|843674|843675|843676|843677|843678|843679|843680|843681|843682|843683|843684|843685|843686|843687|843688|843689|843690|927750|927751|927752|927753|927754|927755|927756|937393|937394|937395|937396|949336|949337|949338|949339|949340|949341|949342|949343|949344|957716|961967|964448", + "text": "IL21R immunodeficiency" + }, + { + "baseId": "51396", + "text": "Deafness, sensorineural, with neurologic features" + }, + { + "baseId": "51429|51431|51440|143093|339057|348271|352158|352159|352160|352795|352796|352797|446585|902885|902886|902887|902888|902889|902890|902891|903462", + "text": "Endocardial fibroelastosis" + }, + { + "baseId": "51515|193009|672095", + "text": "FBN1-Related Disorders" + }, + { + "baseId": "51634|177172|178306|214012|214013|214014|214015|214016|214017|214018|214019|214020|214021|214022|214023|214024|214025|214026|214027|214028|214029|214030|214031|214032|214033|214034|214035|214036|214037|214038|214039|214040|214041|214042|214043|214044|214045|214046|214047|214048|214049|214050|214051|214052|214053|214054", + "text": "Deoxygalactonojirimycin response" + }, + { + "baseId": "51643|51644|51645|51646|51647|51648|51650|51651|51652|51653|141298|152780|152781|210309|210310|210324|210334|210341|257314|257316|257324|259048|269659|271031|271733|273271|273422|273773|334790|334791|334796|334797|334800|334804|334808|334812|334813|334815|334819|334821|334822|344656|344669|344671|344672|344673|344674|344677|344685|344686|344688|344690|344692|344693|344701|344702|349635|349640|349645|349648|349651|349654|349655|349657|349658|349662|349667|349670|349672|349674|349678|349679|349681|350650|350651|350653|350654|350657|350659|350661|350663|350665|350668|350669|350671|350673|350674|350676|350677|350678|350680|350683|353581|491938|492576|493267|508047|533476|585063|585130|586838|587022|587857|589584|589729|684863|684864|689184|885797|885798|885799|885800|885801|885802|885803|885804|885805|885806|885807|885808|885809|885810|885811|885812|885813|885814|885815|885816|885817|885818|885819|885820|885821|885822|885823|885824|885825|885826|885827|885828|887424|887425|887426|887427", + "text": "Isolated Nonsyndromic Congenital Heart Disease" + }, + { + "baseId": "51661|54552|67638|77926|141708|225795|259021|276309|276310|276314|276317|276536|276945|276976|277085|313787|313794|313799|313800|313812|313813|313817|316673|316678|319980|319984|319986|319987|319988|320021|320022|320025|324153|326169|326170|326178|326190|326206|326214|327120|327127|327130|329620|329636|329643|329650|329654|329660|329663|329672|329675|330167|330174|339908|339921|339927|339929|339930|345653|345672|345676|345677|347000|347021|347026|350563|353057|353058|353249|481127", + "text": "Familial atrial fibrillation" + }, + { + "baseId": "51710|51755|171133|174776|179192", + "text": "MYBPC3-Related Disorders" + }, + { + "baseId": "51720|54894|54903|172501|179136|302201|302204|302207|302210|302214|302217|302218|302225|305395|305441|305446|305448|305449|305450|305452|310209|310230|310235|310322|310359|442590", + "text": "Wolff-Parkinson-White syndrome" + }, + { + "baseId": "51796|51841|224525|858248", + "text": "Paroxysmal atrial fibrillation" + }, + { + "baseId": "51983|53540|54200|56467|56533|57079|240750|552686|679394", + "text": "Premature ventricular contraction" + }, + { + "baseId": "52056|52082|136656|136657|136658|136659|136660|136661|136662|136663|136664|136665|136666|136667|136668|136669|136670|136671|136672|136673|136674|136675|136676|136677|136678|136679|136680|136681|136682|136683|136684|136685|136686|136687|171746|171747|198165", + "text": "Familial cardiomyopathy" + }, + { + "baseId": "52101|52119|179712|186460|189951|224471|320364|320376|320380|328973|328987|328990|335627|335628|335649|337484|353295", + "text": "Scapuloperoneal myopathy" + }, + { + "baseId": "52138|550125", + "text": "Ebstein anomaly of the tricuspid valve" + }, + { + "baseId": "52162|52199|175456|179576|328979|464003|622423|622424|626226", + "text": "MYH7-Related Disorders" + }, + { + "baseId": "52388|52400|52458|52469|52470|52499|175522|176880|178187|231427|546607|620421|620422|620837", + "text": "MYO7A-Related Disorders" + }, + { + "baseId": "52751|52754|53059|176596|209906|209931|209933|209941|303340|303342|303359|306689|306717|306729|306752|306756|311559|311572|311575|311577|311596|311730", + "text": "Cutis laxa, autosomal dominant" + }, + { + "baseId": "52776|52778|52780|174084|174266|229605|276776|276786|276789|277042|277056|277061|277062|277074|277618|277644|277648|277682|277773|295695|296825|297461|301338|301342|301378|301380|301529|302594|302601|302624|302626|302958|303467|303469|303470|305956|305958|306872|306885|306886|310679|310696|311719|311744|311745|311765|311776|311777|311802|311804|311807|311808|353811|353820", + "text": "Nonsyndromic Hearing Loss, Mixed" + }, + { + "baseId": "52836", + "text": "TNNT2-Related Cardiomyopathy" + }, + { + "baseId": "52844|55764|56038|56684|56803|56978|78464|173316|173342|188401|189319|198532", + "text": "Supraventricular tachycardia" + }, + { + "baseId": "52998|54768", + "text": "Dilated cardiomyopathy with left ventricular noncompaction" + }, + { + "baseId": "53080|172928|187391|187393|187394", + "text": "Familial hypertrophic cardiomyopathy 23" + }, + { + "baseId": "53186|56440|78495", + "text": "Familial dilated cardiomyopathy and peripheral neuropathy" + }, + { + "baseId": "53320|53321|53325|53327|176924|178142|181536|185765|248693|248694|248695|248696|248697|248698|248699|275973|275974|275979|275984|275985|275990|275991|275992|275993|276005|276006|276011|276018|276019|276020|276023|276024|276029|276030|276031|276037|276052|276053|276056|276186|276188|276189|276198|276199|276201|276202|276204|276205|276221|276222|276230|276231|276234|276235|276236|276237|276244|276246|276247|276248|276249|276251|276252|276254|276255|276256|276257|276261|276262|276263|276264|276266|276271|276272|276308|276316|276323|276330|276331|276335|276336|276337|276339|276345|276364|276379|276383|276384|276385|276388|276393|276394|276395|276396|276397|276398|276406|276408|276409|276410|276434|276435|276437|276446|276447|276450|276453|276454|276457|276458|276459|276460|276461|276462|276463|276478|276479|276480|276483|276489|276491|276492|276493|276494|276503|276508|276513|276517|276524|276525|276526|276527|276533|276537|276549|276563|276564|276578|353050|438861|439303|509057|509058|509059|509060|614554|682205|682206|682207|682208|682324|682325|682326|682345|696006|706602|718118|731600|731602|789823|789824|857416|857417|857418|857419|857420|862015|862016|862017|862018|862019|862020|862021|862022|862023|862024|862025|862026|862027|862028|862029|862030|862031|862032|862033|862034|862035|862036|862037|862038|862039|862040|862041|862042|862043|862044|862045|862046|862047|862048|862049|862050|862051|862052|862053|862054|862055|862056|862057|862058|862059|862060|862061|862062|862063|862064|862065|862066|862067|862068|862069|862070|862071|862072|862073|862074|862075|862076|862077", + "text": "Neural tube defect" + }, + { + "baseId": "53320|53321|53325|53327|275991|276029|276056|276188|276237|276249|276254|276255|276264|276266|276271|276272|276308|276330|276345|276410|276434|276459|276513|276524|276578|353050", + "text": "Caudal dysgenesis syndrome" + }, + { + "baseId": "53386", + "text": "ACTA2-Related Disorders" + }, + { + "baseId": "53440|284793|353560", + "text": "Scapuloperoneal weakness" + }, + { + "baseId": "53506|53508|53509|53510|53513|53514|53515|53516|53517|53521|53523|53524|53527|53528|53532|53533|53534|53535|53537|53538|53540|53541|53542|53543|53544|53545|53546|53547|53548|53549|53550|53551|53552|53553|53554|53556|53560|53562|53563|53564|53565|53566|53567|53568|53569|53570|53571|53572|53573|53574|53575|53577|53578|53579|53580|59492|59493|141769|176848|176849|176853|176856|176858|178202|178203|178204|178217|178219|178221|178222|178223|178224|178225|178226|178227|178228|178229|178259|178545|178547|189788|189790|189798|189801|189805|191535|194052|209864|209865|209867|209870|209873|209878|209879|209882|209884|209886|209890|209891|209896|209898|209900|209903|224309|224311|226789|231310|231354|231358|231362|231363|231410|231411|231414|231415|239871|239873|239874|258424|258435|368291|368657|370076|395019|395020|395023|395024|395027|395187|395193|395358|395360|395364|395645|395648|395649|395651|406791|415018|425655|425656|443846|443850|443852|455155|455157|455291|455298|455781|455798|455799|456035|456038|456039|456042|481127|497905|501079|501082|501338|508810|508811|508812|508813|508814|508815|509765|509767|509771|509774|509776|509778|521306|521313|521317|521320|521328|521334|521607|521609|521613|521615|521687|521689|521691|521693|521696|521945|521947|521950|521951|521954|521955|521957|560538|560540|560542|560544|563321|563323|565321|565328|565336|565340|609612|623083|626154|634496|634497|634498|634499|634500|634501|634502|634503|634504|634505|634506|634507|634508|634509|634510|634511|651576|683754|686782|686784|691899|765438|765440|799434|819642|831421|831422|831423|831424|831425|831426|831427|831428|831429|831430|831431|831432|831433|831434|831435|831436|831437|831438|831439|831440|831441|831442|831443|831444|831445|831446|831447|831448|831449|831450|831451|831452|831453|920219|920220|924223|924224|924225|924226|924227|933128|933129|933130|933131|933132|933133|933134|933135|933136|933137|933138|933139|933140|940026|940027|940831|940832|944854|944855|944856|944857|944858|944859|944860|954326|954327|954328|954329|954330|981514", + "text": "Dilated cardiomyopathy 1JJ" + }, + { + "baseId": "53814|244523|268997|272211|277216|277906|278016|280737|282123|282137|282192|305882|309947|315140|315160|315209|315217|315221|315300|342546|342554|353066", + "text": "Charcot-Marie-Tooth, Intermediate" + }, + { + "baseId": "53818|171083|171185|540614|540615", + "text": "Congenital aneurysm of ascending aorta" + }, + { + "baseId": "53818", + "text": "Dilatation of the thoracic aorta" + }, + { + "baseId": "53818", + "text": "Thoracic aortic dissection" + }, + { + "baseId": "54023", + "text": "DSP-related arrhythmogenic cardiomyopathy" + }, + { + "baseId": "54098|77203|171102|360852|360853|513891|513948", + "text": "Palmoplantar blistering" + }, + { + "baseId": "54098|77203|171102|513948", + "text": "Skin fragility with non-scarring blistering" + }, + { + "baseId": "54106|189307|189921|306649|310846|310847|316366|316595|316596|316597|316605|316606|316607|567976", + "text": "Amyloidosis" + }, + { + "baseId": "54134|167520|167521|167522|173858|359032|359033|359034", + "text": "Cardiomyopathy, dilated, with woolly hair, keratoderma, and tooth agenesis" + }, + { + "baseId": "54202|679379", + "text": "Family history of cardiomyopathy" + }, + { + "baseId": "54291", + "text": "cetuximab response - Dosage" + }, + { + "baseId": "54291", + "text": "panitumumab response - Dosage" + }, + { + "baseId": "54381|54382|54383|81088|173573|173574|173578|173709|173712|173714|173715|173718|181418|191802|214405|214406|229286|229290|229293|229294|229295|270875|295686|297502|297513|301380|301553|301554|301561|301578|438303|443695|454665|454670|454672|454746|454761|454764|455210|455215|455217|455226|455233|455477|455489|455498|455512|496385|496801|513276|520821|520822|520827|520836|521067|521070|521087|521216|521222|521223|521225|521229|521231|521233|521269|521271|521279|521285|538984|560175|560177|560284|560286|560288|560290|560292|562894|562898|562901|564862|564863|564864|564865|564870|584463|614130|633524|633525|633526|633527|633528|633529|633530|633531|633532|633533|633534|633535|633536|633537|633538|633539|633540|633541|633542|633543|698878|709681|721262|749277|749278|764930|764931|775018|777433|779083|782193|789116|801810|819562|830402|830403|830404|830405|830406|830407|830408|830409|830410|830411|830412|830413|830414|830415|830416|830417|830418|830419|830420|830421|893131|923904|923905|923906|923907|923908|923909|923910|923911|923912|923913|923914|923915|932748|932749|932750|932751|932752|944433|944434|944435|944436|944437|944439|944440|954062|954063|954064|954065|954066|954067", + "text": "Seizures, cortical blindness, and microcephaly syndrome" + }, + { + "baseId": "54481|54482|54484|54486|54489|54490|54491|54492|54496|54497|54498|54499|54501|54502|54503|54505|54506|54507|54508|54509|89105|175072|175073|175074|175075|175076|175081|175082|175082|175083|175086|175090|175091|175348|175351|175352|175354|175359|175361|175366|229977|229980|229983|229990|229993|229994|229999|230001|230004|237610|273542|312810|312811|312812|312818|312829|312830|312835|312839|312841|312846|312851|312852|312853|312857|318828|318835|318836|318859|318870|318882|318883|318889|318898|324933|324943|324948|324959|324960|324961|324966|324969|324970|324971|324978|324982|324992|325005|325006|325011|325783|325803|325813|325818|325819|325820|325823|325828|325856|325862|325864|325867|325869|325870|325874|325878|389239|389963|404795|421833|489962|493527|553262|553263|553264|610568|615812|654629|654630|654637|752490|802076|805095|859843|867348|867349|867350|867351|867352|867353|867354|867355|867356|867357|867358|867359|867360|867361|867362|867363|867364|867365|867366|867367|867368|867369|867370|867371|867372|867373|867374|867375|867376|867377|867378|867379", + "text": "Deafness, autosomal recessive 21" + }, + { + "baseId": "54790|54796|54797|54801|54804|140104|140107|175330|198349|198350|323868|503859|508855|512843|512845", + "text": "Congenital total pulmonary venous return anomaly" + }, + { + "baseId": "54790|54792|54793|54795|54796|54798|54800|54804|175049|175051|175330|189882|189885|196016|198335|198339|198345|198346|198347|198348|198351|198352|229953|258679|317236|397731|460328|460388|460682|460685|461152|495460|510249|511101|525611|525613|525816|525819|525949|525952|564054|564918|564921|566613|566615|566620|639305|639306|639307|639308|639309|639310|652346|837474|837475|837476|837477|837478|837479|851399|925976|935234|940187|940973|947132|956272|956273|960734", + "text": "ANKRD1-related dilated cardiomyopathy" + }, + { + "baseId": "54890", + "text": "PRKAG2-Related Disorders" + }, + { + "baseId": "55056|535235|535236", + "text": "Non-Syndromic Hereditary Hearing Impairment" + }, + { + "baseId": "55205|204061|205216|205458|247331|260847|265019|360151|420147|427753|428945|495885|511271|512539|521026|535230|540496|581716|590972|590973|590974|590975|590976|590977|590978|590979|590980|590981|590982|590983|676961|714860|740123|805074|805220|971479|972619|972620|972621|972622|972623|972624|972625|972626|972627|972628|972629|972630|972631|972632|972633|972634|972635|972636|972637|972638|972639|972640|972641|972642|972643|972644|972645|972646|972647|972648|972649|972650|972651|972652|972653|972654|972655|972656|972657|972658|972659|972660|972661|972662|972663|972664|972665|972666|972667|972668|972669|972670|972671|972672|972673|972674|972675|972676|972677|972678|972679|972680|972681|972682|972683|972684|972685|972686|972687|972688|972689|972690|972691|972692|972693|972694|972695|972696|972697|972698|972699|972700|972701|972702|972703|972704|972705|972706|972707|972708", + "text": "Neurodevelopmental abnormality" + }, + { + "baseId": "55236|55237|55239|55244|55245|55246|55247|99987|137043|175007|175287|175289|253830|310742|310745|310771|310806|310808|310811|316006|316010|316044|316047|316063|322088|322102|322108|322109|322165|322166|322713|322714|322725|322726|322738|322776|353137|353139|353147|353148|353153", + "text": "Atypical Gaucher Disease" + }, + { + "baseId": "55321|78664|173755|173788|199000|199104|199701|442773|621161|631896|914872|965300|965303", + "text": "Sudden cardiac arrest" + }, + { + "baseId": "55719|55720|55721|55722|55723|55724|55725|55726|55727|55729|55730|55731|55732|55733|55734|55735|174359|174360|174361|174362|174365|174367|174368|174371|174374|174376|174497|174500|174501|177630|193796|194635|194896|194897|195091|195498|227296|229440|229442|229444|229445|229447|229448|229452|229455|229456|229462|229465|229466|229470|229475|229479|252334|266947|270741|275654|275676|275681|275684|275690|275704|275711|275712|275718|275727|275732|275740|299883|299889|299892|299895|299897|299899|299901|299904|299906|302506|302507|302508|302511|302512|302513|302522|302532|302534|302535|302536|302537|306913|306914|306916|306917|306918|306919|306922|306923|306924|306925|306926|306934|306935|307189|307191|307199|307200|307201|307202|307207|307208|307211|307213|307214|331094|331165|353246|353769", + "text": "Stickler Syndrome, Dominant" + }, + { + "baseId": "55808|55947|172698|173473|198685|199454|224987|225089|225112|268495|269201|273235|285948|443093|489806|511068|513516|538958|608943|620038|620039|620040|620041|620736|626120|788744|961256", + "text": "TTN-Related Disorders" + }, + { + "baseId": "56032|56625|168985|173089|198566|205422|205423|205424|205425|205426|205427|205428|205429|205430|205431|205432|205433|205434|205437|205438|205439|205440|205441|205442|205445|205446|205447|205448|205449|205450|205451|205452|205453|205456|205457|205461|205462|205463|205464|205465|205466|205467|205468|205469|205470|205473|205474|205475|205476|205477|205478|205479|205482|205483|205484|205485|205486|205487|205488|205489|205490|205493|205494|205495|205496|205497|205498|205499|205500|205501|205502|205503|205504|205505|205506|205507|205508|205509|205510|205511|205512|205513|205514|205515|205516|205517|205518|205519|205520|205521|205522|205523|205524|205525|205526|205527|205528|205529|205530|205531|215664|553412|578035|679574|679575|679576|679577", + "text": "Abnormality of neuronal migration" + }, + { + "baseId": "57216", + "text": "Insulin resistance syndrome, type A" + }, + { + "baseId": "57463|142741|171118|173790|173931|178523|214482|214485|224269|290242|290243|290244|290254|290271|290276|291029|291030|291039|291040|291049|291066|291078|291087|291088|291095|294310|294320|294337|294342|294384|294386|294391|294399|294413|294701|294707|294717|294718|294722|294738", + "text": "Paroxysmal familial ventricular fibrillation" + }, + { + "baseId": "57463|142741|173790|173931|178523|224269|290242|290243|290244|290254|290271|290276|291029|291030|291039|291040|291049|291066|291078|291087|291088|291095|294310|294320|294337|294342|294384|294386|294391|294399|294413|294701|294707|294717|294718|294722|294738|334065|343988|350201|353517|424552", + "text": "Progressive familial heart block" + }, + { + "baseId": "57808|75301|165812|165813|168532|168534|168535|359705|363137|428463|433821|455054|455232|455235|455691|455694|455697|455946|521519|521583|521589|521590|521845|560361|560363|560365|563199|565168|576118|612709|614289|633995|633996|633997|633998|651333|721506|735163|749563|749564|759604|765179|765180|765182|765185|779323|782328|815949|830918|830919|830920|830921|830922|830923|830924|830925|830926|830927|830928|830929|830930|830931|830932|830933|830934|852216|924094|924095|924096|932938|932939|932940|940007|944643|954185|954186|954187|959770", + "text": "Agammaglobulinemia 7, autosomal recessive" + }, + { + "baseId": "57809|57810|57810|81549|137523|137524|137525|137526|137527|137528|137530|137531|137532|137538|137539|137540|137541|137542|137543|137545|181280|199872|415098|428708|456684|456695|457131|457131|457133|457138|457139|457303|457306|457315|457320|457326|457729|457730|457732|457747|522626|522630|522886|522887|522889|522894|522896|522899|522902|523022|523025|523044|523046|523048|523052|523067|523266|523274|523280|523282|523285|553384|561544|561557|561563|561896|561899|561899|561901|561902|561903|561910|564278|564286|564288|566808|566815|566817|566819|566821|614312|614313|636095|636096|636097|636098|636099|636100|636101|636102|636103|636104|636105|636106|636107|636108|636109|636110|636111|636112|636113|636114|636115|636116|636117|636118|636119|636120|636121|636122|651671|651708|651805|700026|700027|710961|710962|710963|710964|710965|710966|710967|710968|722486|722487|722488|722489|736108|750604|750606|750610|759666|766250|766251|766253|766256|779229|787509|796030|819867|819868|819869|833539|833540|833541|833542|833543|833544|833545|833546|833547|833548|833549|833550|833551|833552|833553|833554|833555|833556|851642|852086|852360|859603|924835|924836|924837|924838|933858|933859|933860|933861|933862|933863|933864|933865|933866|945605|945606|945607|945608|945609|945610|945611|945612|945613|945614|945615|955137|955138|955139|955140|955141|955142|955143|955144|961953|970856", + "text": "B-cell expansion with NFKB and T-cell anergy" + }, + { + "baseId": "57810|57811|57812|81549|137523|137524|137525|137526|137527|137528|137530|137531|137532|137538|137539|137540|137541|137542|137543|137545|415098|428708|456684|456695|457131|457131|457133|457138|457139|457303|457306|457315|457320|457326|457729|457730|457732|457747|522626|522630|522886|522887|522889|522894|522896|522899|522902|523022|523025|523044|523046|523048|523052|523067|523266|523274|523280|523282|523285|553384|561544|561557|561563|561896|561899|561899|561901|561902|561903|561910|564278|564286|564288|566808|566815|566817|566819|566821|614312|614313|624739|636095|636096|636097|636098|636099|636100|636101|636102|636103|636104|636105|636106|636107|636108|636109|636110|636111|636112|636113|636114|636115|636116|636117|636118|636119|636120|636121|636122|651671|651708|651805|700026|700027|710961|710962|710963|710964|710965|710966|710967|710968|722486|722487|722488|722489|736108|750604|750606|750610|759666|766250|766251|766253|766256|779229|787509|790718|796030|819867|819868|819869|833539|833540|833541|833542|833543|833544|833545|833546|833547|833548|833549|833550|833551|833552|833553|833554|833555|833556|851642|852086|852360|859603|924835|924836|924837|924838|933858|933859|933860|933861|933862|933863|933864|933865|933866|945605|945606|945607|945608|945609|945610|945611|945612|945613|945614|945615|955137|955138|955139|955140|955141|955142|955143|955144", + "text": "Immunodeficiency 11" + }, + { + "baseId": "57813", + "text": "Ataxia-oculomotor apraxia 3" + }, + { + "baseId": "58105", + "text": "Cardiac rhabdomyoma" + }, + { + "baseId": "58105|360986", + "text": "Hamartoma" + }, + { + "baseId": "58133|360989|513953|514057|679672|679678", + "text": "Multiple renal cysts" + }, + { + "baseId": "58133|360908|360985|567807", + "text": "Cortical tubers" + }, + { + "baseId": "58297", + "text": "Renal cortical cysts" + }, + { + "baseId": "58297|181426", + "text": "Cortical dysplasia" + }, + { + "baseId": "58496|76175", + "text": "Everolimus response" + }, + { + "baseId": "58541|152569|215257", + "text": "Ganglioneuroblastoma" + }, + { + "baseId": "59193|243988|263247|459805|460363|460379|460383|460385|460387|460391|460393|460398|460399|460403|460427|460428|460715|460716|460722|460724|460726|460731|461183|461186|461188|461191|461194|461201|514032|525561|525565|525569|525572|525637|525639|525647|525651|525655|525827|525828|525830|525971|525974|525980|525986|551695|551753|564069|564072|564074|564076|564083|564954|564955|566664|566665|566671|566677|566681|569917|569918|569922|590093|639339|639340|639341|639342|639343|639344|639345|639346|639347|639348|652171|679509|679510|679511|679512|679513|692910|692911|701497|701498|712541|737665|737666|737667|768088|801130|822298|837544|837545|837546|837547|837548|837549|837550|837551|837552|837553|837554|837555|837556|837557|837558|837559|837560|837561|837562|837563|852287|861283|925991|925992|925993|925994|925995|935260|935261|947163|947164|947165|947166|947167|947168|956293|956294|956295|960738", + "text": "Infantile spasms" + }, + { + "baseId": "59373|199976|205159|207647|513296|538631|538632|538633|538634|626185|626313|736960|792778|818265|818266|917769|917777|963152|970223|980933", + "text": "Hydrocephalus, congenital, 2, with or without brain or eye anomalies" + }, + { + "baseId": "59374|59375|59376|59377|59458|205774|623182|626227|626228|904123|917820|919527", + "text": "Mitochondrial complex 1 deficiency, nuclear type 21" + }, + { + "baseId": "59381|59382|59383|59386|59387|227393|361018|361019|404831|404832", + "text": "Platelet-type bleeding disorder 16" + }, + { + "baseId": "59384|59385|292267|292268|292269|292273|292279|292281|292286|292290|292297|292299|292304|292307|293718|293726|293727|293728|293730|293731|293735|293738|293740|293741|293742|297014|297018|297019|297020|297021|297029|297058|297062|297070|297071|297076|297079|413915|413916|413917|413918|590521|748750|890116|890117|890118|890119|890120|890121|890122|890123|890124|890125|890126|890127|890128|890129|890130|890131|890132|890133|890134|890135|890136|890137|890138|890139|890140|890141|890142|890143", + "text": "Smith-McCort dysplasia 2" + }, + { + "baseId": "59388|59389|59390|59391|205272|226931|481499|653880|791191|818141|818142|858308|919404|972791|972792", + "text": "Kaufman oculocerebrofacial syndrome" + }, + { + "baseId": "59404|59405|59406|59407|59408|59409|178389|481176|583117|861573", + "text": "Osteogenesis imperfecta, type xv" + }, + { + "baseId": "59404|59410|65585", + "text": "Bone mineral density quantitative trait locus 16" + }, + { + "baseId": "59409|132441|335022|535387|535388|535389|535390|535391|535392|535393|535394|535395|535396|535397", + "text": "Keratoconus" + }, + { + "baseId": "59435", + "text": "Postaxial polydactyly type A6" + }, + { + "baseId": "59456", + "text": "Abruzzo-Erickson syndrome" + }, + { + "baseId": "59457|227395|362180|362181|380163|791794", + "text": "Palmoplantar carcinoma, multiple self-healing" + }, + { + "baseId": "59478", + "text": "Mitochondrial complex v (atp synthase) deficiency, nuclear type 4" + }, + { + "baseId": "59487|611402", + "text": "Schizophrenia 18" + }, + { + "baseId": "59488|59489|59490|139386|139387|139388|226657|243816|243817|361244|378363|379305|379431|379432|404303|404397|404580|404583|446897|470863|470870|471896|472162|508136|508287|534385|534826|534857|535012|535179|535180|573892|575427|578006|581116|581117|622952|626297|650091|650092|650093|650094|650095|685020|685022|689525|774088|786855|792464|792465|792466|798316|798317|802051|850109|850110|850111|850112|850113|850114|850115|850116|852984|929757|939613|939614|939615|939616|951816|973049|983308", + "text": "SLC35A2-CDG" + }, + { + "baseId": "59491|99989|177261|190406|190408|190409|192345|204535|204536|204537|204538|204539|204540|204541|204542|204543|204544|204545|204546|204547|204548|204549|204550|204551|204552|204553|204554|204555|204556|204557|204558|204559|204560|204561|204562|204563|204564|204565|204566|857383", + "text": "Retinitis pigmentosa 66" + }, + { + "baseId": "59495", + "text": "Hypochromic microcytic anemia with iron overload 2" + }, + { + "baseId": "59505|59506|59507|59508|225799", + "text": "Intestinal pseudo-obstruction" + }, + { + "baseId": "59522", + "text": "Familial partial lipodystrophy 5" + }, + { + "baseId": "59540|150285|150286", + "text": "Nephrotic syndrome, type 8" + }, + { + "baseId": "59541|59542|59543|59544|59545|682817|791135|791136|791137|791138|815994|815995|919360", + "text": "Hyperphosphatasia with mental retardation syndrome 3" + }, + { + "baseId": "59642|59643|150258|150259|150260|150261|150262|188215|188216|188217|188218|188219|188220|188221|188222|188223|268384|268385|353890|367334|434519|434520|438765|438903|450927|450932|451033|451037|451039|451041|451045|451047|451225|451226|451238|451239|451241|451245|512810|518244|518245|518249|518254|518255|518257|518258|518259|518260|518266|518279|518287|518289|518290|518356|518361|518362|518364|518366|518375|518377|558107|558109|558111|558113|558115|558474|558476|558478|558480|560643|560645|560647|560649|560651|561549|614244|614245|614246|630034|630035|630036|630037|630038|630039|630040|630041|630042|630043|630044|630045|630046|630047|630048|630049|630050|630051|630052|630053|630054|630055|630056|630057|630058|630059|630060|630061|630062|630063|630064|630065|630066|630067|630068|630069|630070|651055|708298|708299|708300|708301|708302|719889|719890|719892|719893|719894|730143|733498|733500|733502|747662|747665|747666|763257|763258|763265|774739|778919|787140|816353|819174|826513|826514|826515|826516|826517|826518|826519|826520|826521|826522|826523|826524|826525|826526|826527|826528|826529|826530|826531|826532|826533|826534|826535|826536|826537|826538|826539|826540|826541|826542|826543|826544|826545|826546|850863|851180|851430|920180|922783|922784|922785|922786|922787|922788|922789|922790|922791|922792|931418|931419|931420|931421|931422|931423|931424|931425|939895|939896|939897|939898|940710|940711|942942|942943|942944|942945|942946|942947|942948|942949|942950|942951|953097|953098|953099|953100|953101|953102|953103|953104|959643|959644|960478|980447", + "text": "Multiple gastrointestinal atresias" + }, + { + "baseId": "59644|59645|59645|137085|170191|170192|170192|253145|369966|371867|371870|425795|428841|428842|428843|457700|457868|457873|457874|457875|458471|458474|458515|458516|458519|458922|458936|458937|458942|523581|524184|524186|524188|524189|524197|562424|562953|562957|637220|637221|637222|651819|651820|651858|692499|692501|692503|723109|736684|736685|744495|783113|805578|834771|834772|834773|834774|834775|834776|834777|834778|834779|834780|925205|925206|925207|925208|934317|940908|946076|955416|955417|955418|955419|955420|955421", + "text": "Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type a, 12" + }, + { + "baseId": "59645|137085|170192|253145|369966|371867|371870|425795|428841|428842|428843|457700|457868|457873|457874|457875|458471|458474|458515|458516|458519|458922|458936|458937|458942|523581|524184|524186|524188|524189|524197|562424|562953|562957|637220|637221|637222|651819|651820|651858|692499|692501|692503|723109|736684|736685|744495|783113|802164|802165|805578|834771|834772|834773|834774|834775|834776|834777|834778|834779|834780|925205|925206|925207|925208|934317|940908|946076|955416|955417|955418|955419|955420|955421", + "text": "Muscular dystrophy-dystroglycanopathy (limb-girdle), type c, 12" + }, + { + "baseId": "59797|59798|59799|139355|139357", + "text": "Hemolytic uremic syndrome, atypical, susceptibility to, 7" + }, + { + "baseId": "59800|59801|59802|59803|59804|59805|59806|168075|168079|168080|207026|428099|485890|801983", + "text": "Microcephaly-capillary malformation syndrome" + }, + { + "baseId": "59809|59810|59811|59812|59813|59814|59815|143125|143126|178806|178807|181177|181178|188295|208787|243704|243706|243711|243712|259327|259328|259329|259330|259331|259332|259333|259334|259335|259336|259337|259338|259339|259340|259341|259342|259343|259344|259345|259346|259347|259348|259349|259350|259351|259352|259353|259354|259355|259356|259357|259358|259359|259360|259361|259362|259363|259364|259365|259366|259367|259368|259369|259370|259371|259372|259373|259374|259375|259376|259377|259378|259379|379847|403956|403972|403980|403982|404370|404373|404380|404388|404402|404405|404409|404412|410990|410996|442348|442350|446402|470204|470215|470225|470229|470230|470252|470254|470889|471094|471110|471111|471535|471538|471545|471929|471932|471941|471948|471950|486776|512517|534226|534238|534248|534256|534284|534290|534302|534308|534384|534390|534394|534397|534563|534736|534739|534743|534745|534746|534752|534754|534766|534767|538498|551798|571938|571940|571941|571943|571945|571953|571963|571965|571967|571971|571973|571975|573228|573382|573384|573389|573392|574103|574107|574112|574120|574121|575261|575264|575265|575266|575267|580786|581846|589846|614608|649410|649412|649415|649416|649418|649419|649425|649427|649429|649430|649433|649435|649436|649437|649441|649443|649447|649450|649451|653209|653215|653257|653286|653326|653899|792054|792055|798087|802063|802064|905031|919948|919949|920427|963187|963347|966017|966018|971159|971598", + "text": "Epilepsy, familial focal, with variable foci 1" + }, + { + "baseId": "59809|59810|143125|178807|188295|208787|243705|243706|243707|243708|243709|243710|243712|243713|243714|257601|257602|257603|257605|257607|259330|259332|259338|259339|259345|259346|259352|259354|259357|259363|259365|259366|259367|259369|259372|360528|361622|378785|403947|403952|403953|403957|403958|403960|403962|403965|403968|403969|403970|403978|403981|403982|403983|403984|404004|404369|404374|404375|404376|404383|404385|404386|404390|404392|404395|404396|404400|404405|404407|404417|404421|404422|410986|410991|410996|411006|426705|438223|438224|442349|469863|470214|470217|470229|470238|470246|470259|470261|470887|471089|471090|471095|471098|471101|471103|471105|471109|471112|471526|471528|471531|471539|471543|471545|471547|471930|471933|471934|471935|471936|471943|471944|471945|471949|486303|507685|534014|534036|534231|534234|534239|534247|534251|534256|534267|534272|534276|534278|534281|534285|534294|534311|534361|534363|534366|534382|534388|534390|534748|534770|537407|571949|571954|571969|573377|573383|573385|573388|573397|574105|574113|574115|574118|575260|575262|575263|580494|580497|580623|580639|580655|580657|580659|580766|580780|580785|649408|649409|649411|649412|649413|649414|649417|649420|649421|649422|649423|649424|649426|649428|649431|649432|649434|649438|649439|649440|649442|649444|649445|649446|649448|649449|649452|649453|653261|653335|684918|684920|684921|685472|689277|689278|689279|689280|689281|689282|689283|689284|689286|705895|705897|729148|742861|758048|773522|821450|821451|821452|821453|821454|821455|821456|821457|821458|849252|849253|849254|849255|849256|849257|849258|849259|849260|849261|849262|849263|849264|849265|849266|849267|849268|849269|849270|849271|849272|849273|849274|849275|849276|849277|849278|849279|849280|849281|849282|849283|849284|849285|849286|849287|849288|849289|849290|849291|849292|849293|849294|849295|849296|849297|851922|851924|852436|852439|852931|852932|852934|929471|929472|929473|929474|929475|929476|929477|929478|929479|929480|929481|939276|939277|939278|939279|939280|939281|939282|939283|939284|939285|939286|939287|939288|939289|939290|939291|939292|939293|939294|939295|939296|939297|939298|939299|940531|940532|940533|941280|951436|951437|951438|951439|951440|951441|951442|951443|951444|951445|951446|951447|951448|951449|951450|951451|951452|951453|951454|951455|951456|951457|959074|959075|959076|959077|959078|959079|959080|959081|959082|959083|959084|960347", + "text": "Familial focal epilepsy with variable foci" + }, + { + "baseId": "59816", + "text": "Vel blood group system" + }, + { + "baseId": "59839|59839", + "text": "Sturge-Weber syndrome" + }, + { + "baseId": "59839|59839", + "text": "Capillary malformation" + }, + { + "baseId": "59840|59841|59842|59843|791287", + "text": "Hypogonadotropic hypogonadism 19 with or without anosmia" + }, + { + "baseId": "59844|59846", + "text": "Hypogonadotropic hypogonadism 20 with or without anosmia" + }, + { + "baseId": "59845", + "text": "Hypogonadotropic hypogonadism 20 without anosmia" + }, + { + "baseId": "59847", + "text": "Hypogonadotropic hypogonadism 8 with or without anosmia" + }, + { + "baseId": "59848|59849|59850", + "text": "HYPOGONADOTROPIC HYPOGONADISM 21 WITH ANOSMIA, SUSCEPTIBILITY TO" + }, + { + "baseId": "59851", + "text": "Hypogonadotropic hypogonadism 21 with or without anosmia" + }, + { + "baseId": "59853|59856|59857", + "text": "Hypogonadotropic hypogonadism 18 with anosmia" + }, + { + "baseId": "59854|59855", + "text": "HYPOGONADOTROPIC HYPOGONADISM 18 WITH ANOSMIA, SUSCEPTIBILITY TO" + }, + { + "baseId": "59858|59859|59860|59861", + "text": "Hypogonadotropic hypogonadism 17 with or without anosmia" + }, + { + "baseId": "65568|65569|65570|226691|226692|226693|918779", + "text": "GAPO syndrome" + }, + { + "baseId": "65571|65572|65573", + "text": "Spermatogenic failure 3" + }, + { + "baseId": "65574|65575|65576|196432|196433|196434|578460|788818|790738|801572", + "text": "Gordon Holmes syndrome" + }, + { + "baseId": "65578|65579|65580|538482|622449|798739|919811|919812|964885", + "text": "Cerebellar ataxia, deafness, and narcolepsy, autosomal dominant" + }, + { + "baseId": "65609|425223|512063|513332|538433|539049|788875|788876|789127|791297|800327|800328|800330|919494|920322|964857|981830", + "text": "Cerebellar ataxia, mental retardation, and dysequilibrium syndrome 4" + }, + { + "baseId": "65610|65611|65612|199811|199812|205325|225889|247192|264790|360623|362396|362436|384424|430597|513149|537412|613834|613932|613967|614041|614076|789134|792084|798978|816531|861660|861661|919961|919962|961657|961695|963940|963941|964556|964557|964558|964994|964995|964996|964997|964998|964999|965000|965001|965002|965003|965004|965005|965006|965007|965008|965009|967017|976673|976674|983557|983802", + "text": "22q13.3 deletion syndrome" + }, + { + "baseId": "65618|65619|65620|65621|105833|105834|105835|105836|105837|105838|105839|105840|105841|105842|105843|105844|105845|105846|105847|105848|105849|105850|105851|105852|105853|105854|105855|105856|105857|105858|105859|105860|105861|105862|105863|105864|105865|105866|105867|105868|105869|105870|105871|105872|105873|105874|105875|105876|105877|105878|105879", + "text": "Glaucoma 1, open angle, F" + }, + { + "baseId": "65631|65632|131954|131955|131956|215281|223308|223309|223310|223311|223312|223313|223314|223315|223316|359521|367310|367313|404763|452009|452011|452014|452017|452020|452025|452235|452236|452241|452243|452247|452250|452271|452272|452277|452282|452284|452285|452288|452300|452302|452365|452367|452368|452370|452506|452510|452513|452514|481686|500683|519054|519057|519059|519062|519067|519069|519205|519206|519223|519225|519227|519229|519231|519235|539127|558868|558870|558872|558874|559417|559419|559421|561331|561340|561346|562643|562648|562650|562652|562654|631121|631122|631123|631124|631125|631126|631127|631128|631129|631130|631131|631132|631133|631134|631135|650984|651050|653858|691365|691366|698016|698017|720386|720387|720388|734005|743932|748183|763805|792735|798528|798529|805338|815810|815811|819364|827833|827834|827835|827836|827837|827838|827839|827840|827841|827842|827843|827844|827845|827846|827847|827848|827849|827850|827851|827852|827853|827854|827855|851037|851039|923115|923116|923117|923118|923119|923120|923121|923122|923123|923124|923125|923126|923127|923128|931875|931876|931877|931878|931879|931880|931881|940746|943456|943457|943458|943459|943460|943461|953417|953418|953419|953420|953421|953422|953423|960510|970764|976892|976893|976894", + "text": "Congenital disorder of deglycosylation" + }, + { + "baseId": "65651|65652|65653|65654|380135|380136|380137|422499|426484|481509|513399|538517|576197|589822|677298|822347|920050|920051|920052|920053|965295|965890|971224|974537", + "text": "Intellectual disability-developmental delay-contractures syndrome" + }, + { + "baseId": "65655|65656|97543|139376|208626|243558|263149|334439|334441|334442|334445|334448|334451|344317|344322|344323|344324|344325|344326|349423|349426|349429|349430|349432|349433|349435|349436|349440|350426|378154|677462|679893|684854|882570|882571|882572|882573|882574|882575|882576|882577|882578|882579|882580|882581|882941", + "text": "Autosomal dominant torsion dystonia 4" + }, + { + "baseId": "65655|65656|65656|139376|139376|139377|143144|143145|190170|205792|208626|213656|243558|260216|263148|263149|263149|263150|263151|263152|263153|263154|263155|263156|263157|263158|263159|263160|263161|263162|263163|263164|263165|263166|263167|263168|263169|263170|334439|334441|334442|334445|334448|334451|344317|344322|344323|344324|344325|344326|349423|349426|349429|349430|349432|349433|349435|349436|349440|350426|353527|378154|410718|446894|507188|533469|533480|573423|575063|613156|648514|648515|648516|677462|684854|689160|694516|786298|791961|798758|798759|848096|848097|882570|882571|882572|882573|882574|882575|882576|882577|882578|882579|882580|882581|882941|919899|919900|919901|938867", + "text": "Leukodystrophy, hypomyelinating, 6" + }, + { + "baseId": "65657|65658|65659|65660|65661|65662|152908|481226|481227|513247|970708", + "text": "Hypomyelination with brainstem and spinal cord involvement and leg spasticity" + }, + { + "baseId": "65666|165821|395001|406786|626307|965964", + "text": "Polymicrogyria, bilateral temporooccipital" + }, + { + "baseId": "65676|65677|171812|237111|361361|361557|361558|433901|433903|433905|513386|513674|610177|613200|613202|626287|706009|706012|717547|717548|717555|729300|729304|729306|729309|743016|743022|743028|758172|780073|798774|800193|800194|800195|800196|800197|800198|800199|800200|982258|982259|982260|982261|982262|982263|982264|982265|982266|982267", + "text": "Charcot-Marie-Tooth disease, type 4B3" + }, + { + "baseId": "65837", + "text": "Carcinoma of male breast" + }, + { + "baseId": "67271|213656|243827|801185|805069|971289", + "text": "Cerebral palsy" + }, + { + "baseId": "67593|550737", + "text": "Neuroendocrine tumor of pancreas" + }, + { + "baseId": "70063", + "text": "Breast and colorectal cancer" + }, + { + "baseId": "70461|70462|70463|70464|70467|409773|539068|540049|818151|919681|966800|966801|971057|971376|975894|977278", + "text": "Xerocytosis" + }, + { + "baseId": "70472|70473|70474|363796|438567|438613|453120|514231|514232|514233|514234|559136|631779|698279|709026|709027|709029|709030|734283|734284|748507|828548|923344|923345", + "text": "Adams-Oliver syndrome 4" + }, + { + "baseId": "70473|181457|200762|200763|200764|200765|200766|200767|200768|200769|200770|288886|288933|291887|291946|292011|497310", + "text": "Adams-Oliver syndrome" + }, + { + "baseId": "70475|224853|224854|224855|224856|224857|224858|224859|433790|433795|445659|539068|590357|590358|626249|626250|818145|904913|962247|962248|966800|966801|975894", + "text": "Lymphedema, hereditary, III" + }, + { + "baseId": "70481|133578|259981|415549|857631", + "text": "Pre-B-cell acute lymphoblastic leukemia" + }, + { + "baseId": "70485|70486|70487", + "text": "Xeroderma pigmentosum, type F/Cockayne syndrome" + }, + { + "baseId": "70488|962821", + "text": "Medullary cystic kidney disease 1" + }, + { + "baseId": "70489|70540|136848", + "text": "King Denborough syndrome" + }, + { + "baseId": "70496|75585|622244|788884|792794", + "text": "Autosomal recessive congenital ichthyosis 9" + }, + { + "baseId": "70497|70498|450990|518021", + "text": "Ciliary dyskinesia, primary, 21" + }, + { + "baseId": "70500", + "text": "Mitral atresia disorder" + }, + { + "baseId": "70500", + "text": "Aortic valve atresia (disease)" + }, + { + "baseId": "70500", + "text": "Single Ventricle Defect" + }, + { + "baseId": "70500", + "text": "Pulmonary atresia with ventricular septal defect" + }, + { + "baseId": "70500|303321|362061|677996|789091", + "text": "Atrioventricular septal defect" + }, + { + "baseId": "70502|70503|70504|215769|361944|362521|520924|559833|560334|562990|562995|562996|691784", + "text": "Infantile myofibromatosis 1" + }, + { + "baseId": "70502|70502|215769|251822|270125|270626|362365|362366|362367|362520|362521|363941|454742|454749|454815|454817|455307|455595|455600|455602|455604|520926|520927|521357|560213|633635|633636|633637|691784|691785|691786|691787|691788|691789|691790|695283|698920|698921|698922|698924|698927|698928|698929|698930|698932|698933|698934|698935|698937|698938|698939|709731|709732|721300|721301|721302|721305|734934|749343|749349|830537|830538|923948|923949|944491|944492|944493|954093|961572|961573|961574|961575|961576|961577", + "text": "Infantile myofibromatosis" + }, + { + "baseId": "70502|213767|251822|270125|270626|363941|454742|454749|454815|454817|455307|455595|455600|455602|455604|520924|520926|520927|521357|559833|560213|560334|562990|562995|562996|633635|633636|633637|691784|691785|691786|691787|691788|691789|691790|695283|698920|698921|698922|698924|698927|698928|698929|698930|698932|698933|698934|698935|698937|698938|698939|709731|709732|721300|721301|721302|721305|734934|749343|749349|830537|830538|923948|923949|944491|944492|944493|954093", + "text": "Kosaki overgrowth syndrome" + }, + { + "baseId": "70502|213768|251822|270125|270626|363941|454742|454749|454815|454817|455307|455595|455600|455602|455604|520924|520926|520927|521357|559833|560213|560334|562990|562995|562996|633635|633636|633637|691784|691785|691786|691787|691788|691789|691790|695283|698920|698921|698922|698924|698927|698928|698929|698930|698932|698933|698934|698935|698937|698938|698939|709731|709732|721300|721301|721302|721305|734934|749343|749349|830537|830538|923948|923949|944491|944492|944493|954093", + "text": "Premature aging syndrome, Penttinen type" + }, + { + "baseId": "70504|106815|361523|442109|442138|442159|442168|536981", + "text": "Infantile myofibromatosis 2" + }, + { + "baseId": "70510|211189|227133|227134|434403|434404", + "text": "Combined oxidative phosphorylation deficiency 39" + }, + { + "baseId": "70511|70512|70513|70514|70515|70516|165482|165483|207729|236923|370452|370472|370964|370969|370970|370984|370987|371349|373178|407723|407724|407725|411572|425853|425854|433377|433378|433379|438414|441358|444534|444535|444536|459284|459291|459293|459296|459298|459302|459308|459310|459603|459607|459610|459681|459682|459688|459689|459692|459696|459698|459702|460175|460184|460186|460190|460192|460196|460197|460204|460206|502675|502680|502683|524688|524689|524930|524932|524933|525034|525037|525054|525056|525059|525214|525217|525230|525239|525241|552142|563317|563319|563322|563325|563327|564150|564152|564154|564158|564159|564164|564169|565987|565992|565994|569176|569180|569184|569186|577142|578480|578481|625198|626191|638401|638402|638403|638404|638405|638406|638407|638408|638409|638410|638411|638412|638413|638414|638415|638416|638417|638418|638419|638420|638421|638422|638423|638424|638425|638426|638427|638428|687548|687549|692704|692706|692707|692709|692711|695452|701091|712071|712072|723664|723665|737241|751838|767513|767517|790919|798622|836300|836301|836302|836303|836304|836305|836306|836307|836308|836309|836310|836311|836312|836313|836314|836315|836316|836317|836318|836319|836320|836321|836322|836323|836324|836325|836326|836327|851355|851357|904251|925637|925638|925639|925640|925641|925642|925643|925644|925645|925646|934829|934830|934831|934832|940943|946685|946686|946687|946688|955901|955902|955903|955904|955905|955906|970913", + "text": "Spinal muscular atrophy, lower extremity-predominant, 2A, autosomal dominant" + }, + { + "baseId": "70519|70520|70521|491715|536008|802080|857414", + "text": "Perrault syndrome 3" + }, + { + "baseId": "70521", + "text": "Autosomal recessive hearing impairment with normal menstrual cycles" + }, + { + "baseId": "70522|70523|70524|200390|200391|229076|424645|424646|496733|612084|677416|677417|679207|679208|679210|857410|970767|980889|980890", + "text": "Perrault syndrome 4" + }, + { + "baseId": "70522|188976|245209|496733|679206|679208|679209|679211|980894", + "text": "Hydrops, lactic acidosis, and sideroblastic anemia" + }, + { + "baseId": "70529|70530|70531|70532|70533|70534|70535|70536|237498|237499", + "text": "Scalp-ear-nipple syndrome" + }, + { + "baseId": "70537", + "text": "Mitochondrial complex 4 deficiency, nuclear type 11" + }, + { + "baseId": "70549|70550|249386|427633|447090|447182|447269|447275|515049|515063|515115|515116|515120|515164|515174|556592|614181|626790|626791|626792|626793|626794|626795|626796|626797|626798|626799|626800|626801|650584|650585|706668|706669|718187|718188|731691|731693|731694|745658|745659|761174|761176|761177|761179|761180|774368|774388|780313|780316|780317|780318|786976|786995|822682|822683|822684|822685|822686|822687|822688|822689|822690|822691|822692|822693|822694|921625|921626|930023|941437|952057|952058|952059|952060|952061|952062|952063|961922|977430|977431|977432|977433|977434|977435|977436|977437|977438|977439|977440|977441", + "text": "Severe congenital neutropenia 5, autosomal recessive" + }, + { + "baseId": "70553|70554|70555|70556|70557|70558|70559|132726|132727|132728|132729|237372|361215|361216|429708|482074|680054|860172|919583|971022|973037|975868", + "text": "Craniosynostosis 3" + }, + { + "baseId": "70564", + "text": "Bone mineral density quantitative trait locus 17" + }, + { + "baseId": "70565|70565|70566|70567|70568|70569|215790|215791|410626|533147|623355|965237", + "text": "Craniosynostosis 4" + }, + { + "baseId": "70565|262701", + "text": "Chitayat syndrome" + }, + { + "baseId": "70572", + "text": "Borrone di Rocco Crovato syndrome" + }, + { + "baseId": "70633|263633|361146|481389|966710|966711|966718|966719|966725|966727|966729", + "text": "Polyhydramnios" + }, + { + "baseId": "70633|966711", + "text": "Intestinal obstruction" + }, + { + "baseId": "70810", + "text": "Essential tremor" + }, + { + "baseId": "70810|720180", + "text": "Parkinson disease 21" + }, + { + "baseId": "70939|177557|207112|214177|214194|239335|239336|251350|251352|251361|251362|266978|267183|292529|292604|292623|292624|292625|292627|292629|293984|294001|297363|297381|297387|297399|297424|297439|297441|297442|297443|297444|297458|297459|620155|620156|620773|975780", + "text": "CC2D2A-Related Disorders" + }, + { + "baseId": "71217|71221|71232|620003|620723|626109", + "text": "POMGNT1-Related Disorders" + }, + { + "baseId": "71221|429593", + "text": "Congenital muscular alpha-dystroglycanopathy with brain and eye anomalies" + }, + { + "baseId": "71256|620596|620887", + "text": "MKS1-Related Disorders" + }, + { + "baseId": "71377|105746|265487|270185|514649|620459", + "text": "CEP290-Related Disorders" + }, + { + "baseId": "71435|71436|469336|470875|533484|571182|573483|705426|705427|728587|728588|938932", + "text": "Dowling-Degos disease 2" + }, + { + "baseId": "71437|71437|71439", + "text": "Kenny-Caffey syndrome type 2" + }, + { + "baseId": "71437|71437|71438|71440|71441|71442|919369|970536", + "text": "Osteocraniostenosis" + }, + { + "baseId": "71452|364869|364882|447509|498222|513506|515479|515489|515595|515609|536141|536142|536143|536144|536145|536146|536147|536148|536149|536150|549875|549876|549877|556796|557165|558351|627402|627403|627404|627405|627406|690507|690508|695027|823498|823499|823500|930337|940621|961246", + "text": "Multiple mitochondrial dysfunctions syndrome 3" + }, + { + "baseId": "71460|409749|466083|466085|466835|466836|466846|467134|467136|467136|467143|486158|530355|530451|530453|530458|530463|530465|530468|530648|530649|530652|530656|530658|530663|530878|535755|535755|568436|568442|570568|570591|570593|613047|645078|645079|645080|645081|645082|652593|726854|726855|726856|740403|740404|740405|740406|755443|755444|776207|844429|844430|844431|844432|844433|844434|844435|844436|844437|852673|927986|927987|927988|927989|937649|937650|937651|940374|949617|949618|949619|949620|957905", + "text": "Immunodeficiency 32b" + }, + { + "baseId": "71461|409749|466083|466085|466835|466836|466846|467134|467136|467143|486158|530355|530451|530453|530458|530463|530465|530468|530648|530649|530652|530656|530658|530663|530878|535755|568436|568442|570568|570591|570593|613047|645078|645079|645080|645081|645082|652593|726854|726855|726856|740403|740404|740405|740406|755443|755444|776207|844429|844430|844431|844432|844433|844434|844435|844436|844437|852673|927986|927987|927988|927989|937649|937650|937651|940374|949617|949618|949619|949620|957905", + "text": "Immunodeficiency 32a" + }, + { + "baseId": "71463|71464|71465|96871|203228|203230|203241|203242|203250|614419", + "text": "Early infantile epileptic encephalopathy 16" + }, + { + "baseId": "71504|71505", + "text": "Fetal hemoglobin quantitative trait locus 6" + }, + { + "baseId": "71507|71508|71509|71510|431967|613480", + "text": "Precocious puberty, central, 2" + }, + { + "baseId": "71562|71563|134058|134059|205252|433389|455981|513274|522709|561181|635450|683843|683845|683846|686951|686952|686953|686954|722262|765995|782734|924580", + "text": "Primary pulmonary hypertension 3" + }, + { + "baseId": "75074|75075|75076|75077|75078|414373|450686|450694|450696|450786|450788|450789|450959|518067|518148|538347|557992|558342|560559|560561|560563|560565|583085|629782|629783|629784|629785|651013|691118|691119|781290|799296|799297|826135|826136|922684|922685|922686|922687|931271|942756", + "text": "Primary pulmonary hypertension 4" + }, + { + "baseId": "75079|75080|75081|75082|75083|75084|414727|421163|442611|513007|515106|556915|556917|650523|974508", + "text": "Spondyloepimetaphyseal dysplasia with joint laxity, type 1, with or without fractures" + }, + { + "baseId": "75085|75086|75087|75088|75089|190642|267606|359211|364354|364355|414726|421163|421163|442610|442611|513007|515106|556627|556915|556917|613455|626776|650523|655030|780306|818831|822665|822665|941428|941429|975853|983771|983772", + "text": "Ehlers-Danlos syndrome, progeroid type, 2" + }, + { + "baseId": "75090|75091|75092|513007", + "text": "Spondyloepimetaphyseal dysplasia with joint laxity, type 1, with fractures" + }, + { + "baseId": "75093|75096|125844|178911|181505|181508|181510|181511|181513|181514|181515|188134|194951|225852|228269|259632|263951|263954|354275|390822|446917|447226|498091|498105|551682|552492|556612|556953|626898|626899|626900|689631|761244|822785|822786|822787|850933|930058|964130", + "text": "Noonan syndrome 8" + }, + { + "baseId": "75097|75098|251410|251411|251413|251414|251420|251422|251423|251425|263497|263498|362142|369076|428293|440839|440840|440842|440843|440845|440846|440847|443602|453071|453075|453079|453080|453082|453084|453089|453093|453102|453107|453109|453355|453357|453359|453363|453365|453458|453464|453467|453471|453473|453475|453477|453481|453848|453851|453857|453860|453863|453864|513545|519830|519832|519834|519841|519843|519845|519849|519856|519860|519862|519870|520081|520082|520086|520087|520097|520099|520150|520151|538981|559639|559641|559643|559645|559798|559800|559802|559804|561977|561978|561982|563610|563614|563623|563634|563636|608949|632097|632098|632099|632100|632101|632102|632103|632104|632105|632106|632107|632108|632109|632110|632111|632112|632113|632114|632115|632116|651168|686514|691538|691539|691540|691541|691543|695225|695226|695228|698450|698451|698452|698453|720861|720863|734543|734544|734545|734547|734550|748838|748842|764403|777486|781911|788771|789365|819466|828970|828971|828972|828973|828974|828975|828976|828977|828978|828979|828980|828981|828982|828983|828984|828985|828986|828987|828988|828989|828990|850976|850978|850980|851116|851118|923470|923471|923472|923473|923474|923475|923476|923477|923478|932252|932253|932254|932255|932256|932257|932258|932259|940777|940778|940779|943908|943909|943910|943911|943912|953726|953727|953728|953729|953730|953731|953732|953733|959719", + "text": "Limb-girdle muscular dystrophy, type 2S" + }, + { + "baseId": "75099|75100|75101|75102|75103|251123|251124|251125|251126|251127|251128|251129|251130|264149|367548|367551|367577|367580|368592|406303|406304|440783|440784|452403|452406|452412|452414|452602|452604|452605|452610|452707|452708|452716|452911|452921|452922|452928|452936|452940|452949|519284|519290|519295|519335|519338|519475|519489|519492|519541|519545|519547|536648|558990|558992|558994|558996|558998|559503|559505|559507|559509|559511|559513|561567|561569|561572|562936|562943|562948|562955|562959|622329|631403|631404|631405|631406|631407|631408|631409|631410|631411|631412|631413|631414|631415|631416|631417|631418|631419|631420|631421|631422|631423|631424|651070|655550|677314|691414|695203|698089|698091|720440|748264|792737|798533|828145|828146|828147|828148|828149|828150|828151|828152|828153|828154|828155|828156|828157|828158|828159|828160|828161|828162|923199|923200|923201|923202|923203|923204|923205|923206|923207|923208|923209|931953|931954|943555|943556|943557|943558|943559|943560|943561|943562|953482|953483|953484", + "text": "Nemaline myopathy 8" + }, + { + "baseId": "75106|75107|75108|75109|75110|241570", + "text": "Hereditary spastic paraplegia 26" + }, + { + "baseId": "75117|75118|75119|75120|626253", + "text": "Multiple system atrophy" + }, + { + "baseId": "75121|75121|75122|75124|75125|75126|75127|75128|227736|251232|251234|251235|272983|367329|367681|367682|367706|443498|452534|452535|452838|452840|452856|452860|453088|453092|519429|519431|519621|519624|519628|519631|519678|519680|559048|559050|559052|559054|559056|559058|559580|559582|559584|561685|561686|563098|563100|563104|626413|631575|631576|631577|631578|631579|631580|631581|631582|631583|631584|631585|631586|651209|655561|691451|720531|730224|744023|774861|777418|781744|828341|828342|828343|828344|828345|828346|828347|828348|828349|828350|828351|851059|923268|923269|923270|923271|932019|932020|932021|932022|943624|943625|953543|953544|960520", + "text": "Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type a, 14" + }, + { + "baseId": "75121|75121|75123|75124|75124|75125|75125|75126|75126|75127|75127|75128|75128|227736|227736|227737|227738|251232|251234|251235|272983|367329|367681|367682|367706|443498|452534|452535|452838|452840|452856|452860|453088|453092|519429|519431|519621|519624|519628|519631|519678|519680|559048|559050|559052|559054|559056|559058|559580|559582|559584|561685|561686|563098|563100|563104|626413|626413|631575|631576|631577|631578|631579|631580|631581|631582|631583|631584|631585|631586|651209|655561|691451|720531|730224|744023|774861|777418|781744|828341|828342|828343|828344|828345|828346|828347|828348|828349|828350|828351|851059|918843|923268|923269|923270|923271|932019|932020|932021|932022|943624|943625|953543|953544|960520", + "text": "Muscular dystrophy-dystroglycanopathy (limb-girdle), type c, 14" + }, + { + "baseId": "75121|75124|75124|75125|75125|75126|75126|75127|75128|227736|251232|251234|251235|272983|367329|367681|367682|367706|443498|452534|452535|452838|452840|452856|452860|453088|453092|519429|519431|519621|519624|519628|519631|519678|519680|559048|559050|559052|559054|559056|559058|559580|559582|559584|561685|561686|563098|563100|563104|626413|631575|631576|631577|631578|631579|631580|631581|631582|631583|631584|631585|631586|651209|655561|691451|720531|730224|744023|774861|777418|781744|828341|828342|828343|828344|828345|828346|828347|828348|828349|828350|828351|851059|923268|923269|923270|923271|932019|932020|932021|932022|943624|943625|953543|953544|960520", + "text": "Muscular dystrophy-dystroglycanopathy (congenital with mental retardation), type b, 14" + }, + { + "baseId": "75130", + "text": "Autosomal recessive syndrome of syndactyly, undescended testes and central nervous system defects" + }, + { + "baseId": "75133|75134|429677|434110|434111", + "text": "Albinism, oculocutaneous, type VI" + }, + { + "baseId": "75236|75237|683217", + "text": "Hypocalciuric hypercalcemia, familial, type II" + }, + { + "baseId": "75238|75239|75240|75241|165722", + "text": "Hypocalcemia, autosomal dominant 2" + }, + { + "baseId": "75250|75251|75252|75253|75254|205406|254263|254264|254266|254267|254269|254270|254271|260003|363854|413317|429281|566100|579733|579750|579984|640365|701925|738190|798644|935712", + "text": "Ceroid lipofuscinosis, neuronal, 13" + }, + { + "baseId": "75256|378125|413818|470653|470654|471439|471440|472115|534396|534535|534697|534782|534787|535125|572390|573445|574449|574450|575382|649932|649933|649934|649935|689454|690268|798262|920447|929673|929674|939541|939542|939543|951721|951722", + "text": "Charcot-Marie-Tooth disease, X-linked dominant, 6" + }, + { + "baseId": "75262|342541|553398", + "text": "Lethal congenital contracture syndrome 5" + }, + { + "baseId": "75270", + "text": "Generalized epilepsy with febrile seizures plus 3" + }, + { + "baseId": "75270|201880|201889|201889|918941|964661", + "text": "Developmental and epileptic encephalopathy, 74" + }, + { + "baseId": "75272|75273|75274|75275|75276|75277|97526|97527|97528|205288|208237|208238|215118|215119|215122|215123|225869|225877|242175|242176|242177|242178|242179|242180|242181|242182|247110|255441|255444|255448|255449|264750|360144|360145|361633|373822|373831|373836|373838|373846|373848|373849|373867|373870|373880|373894|374539|374547|374560|374563|374576|374577|374897|374899|374907|374908|374911|374920|374930|374935|374939|374940|374947|374963|376853|376858|376859|376883|376895|376897|376901|376919|376922|376935|376951|376953|376954|376965|376966|376967|400481|400484|400629|400639|400642|401039|401047|401309|401311|409398|409412|409415|409416|409419|409423|409425|409429|409431|409434|413410|413411|413413|422064|422065|426142|445475|463954|464755|464759|464763|464771|464779|464785|464798|465358|465375|465382|465502|465506|465507|465511|465512|465517|465518|465618|465619|465623|465627|465629|465633|465634|465636|465640|465644|482084|505322|505371|505536|505540|505564|505567|505934|505996|506016|506024|506025|512163|512164|512165|512167|514683|529208|529211|529224|529229|529237|529238|529243|529537|529540|529541|529817|529821|529822|529828|538447|552185|552186|552187|567444|567450|567452|567456|569356|569357|569360|569363|569367|569371|569743|569745|569762|573127|573641|573642|573643|577415|578523|580044|580060|580257|611420|614406|614407|625815|643731|643732|643733|643734|643735|643736|643737|643738|643739|643740|643741|643742|643743|643744|643745|643746|643747|643748|643749|643750|643751|643752|643753|643754|643755|652599|652601|652788|652790|652792|656325|682862|684569|684570|688514|688516|688517|693779|695671|754797|760429|788007|791516|791517|791518|791519|797225|798693|800671|800672|802006|802007|802008|802009|804864|818313|820752|820753|820754|820755|820756|822101|822102|822103|822104|822105|822106|822107|822108|822109|822110|822111|822112|842909|842910|842911|842912|842913|842914|842915|842916|842917|842918|842919|842920|842921|842922|842923|842924|842925|842926|842927|842928|842929|842930|842931|842932|842933|842934|842935|842936|842937|842938|842939|842940|842941|842942|852083|919603|919604|920349|920350|927498|927499|927500|927501|927502|927503|927504|927505|927506|927507|927508|927509|927510|927511|927512|927513|937144|937145|937146|937147|937148|937149|937150|937151|937152|937153|937154|937155|937156|937157|937158|937159|937160|940336|941104|949108|949109|949110|949111|949112|949113|949114|949115|949116|949117|949118|949119|957570|957571|957572|957573|960127|961621|962865|962870|964432|964433|964434|964435|964436|964682|970506|971032|971033|971034|971035|971036|972830", + "text": "Epileptic encephalopathy, childhood-onset" + }, + { + "baseId": "75284|75285|75286|75287|75288|215209|221095|221096|228413|228414|228415|228416|228418|228420|228422|228426|228427|228428|228429|228430|228431|228432|228433|228434|228435|228436|228437|228438|228439|228444|228445|228446|228447|228448|228450|228451|228452|228453|228454|228455|228457|228459|228461|228462|228465|228466|228467|236958|238267|238269|238270|238271|238272|238273|238274|238275|238276|238278|238279|359261|359349|359356|365033|365036|365129|365226|365233|365235|365238|391167|391170|391176|391182|391187|391189|391192|391195|391196|391197|391199|391207|391209|391230|391232|391233|391237|391240|391323|391327|391328|391330|391333|391334|391340|391341|405162|405163|414795|414796|421241|425363|425366|442829|442831|446930|447765|447766|447768|447770|447823|447830|447834|447838|447839|447846|447851|447857|447863|447867|447997|447999|448002|448008|448009|448011|448012|448016|448019|448074|448076|448093|448096|448102|448124|448125|448135|448137|448142|448146|448154|448156|448159|448160|448162|480675|480677|496162|498401|498402|498414|498417|498435|498442|498453|498471|498478|498624|498631|498653|515772|515825|515827|515830|515834|515836|515838|515854|515861|515863|515864|515865|515866|515867|515868|515873|515875|515876|515921|515922|515933|515948|515950|515952|515958|536589|556875|557035|557037|557039|557041|557043|557256|557258|557260|557289|557291|557303|557305|557307|557309|558473|558487|558489|558491|558493|627744|627745|627746|627747|627748|627754|627782|627783|627784|627785|627786|627787|627788|627789|627790|627791|627792|627793|627794|627795|627796|627797|627798|627799|627800|627801|627802|627803|627804|627805|627806|627807|650599|650647|683321|683324|683325|683326|685711|685712|685718|685719|685720|685725|685726|685727|685729|690588|690589|690590|695048|746437|758999|761881|761889|777106|780674|818823|818960|818961|818962|818965|823879|823880|823899|823900|823901|823902|823903|823904|823905|823906|823907|823908|823909|823910|823911|823912|823913|823914|823915|823916|823917|823918|823919|823920|823921|823922|823923|823924|823925|850771|851299|918632|918633|921988|921999|922000|922001|922002|922003|922004|930463|930473|930474|930475|930476|930477|930478|930479|930480|940631|941912|941913|941914|941918|941919|941920|941921|941922|941923|941924|941925|941926|952387|952388|952393|952394|952395|952396|952397|952398|952399", + "text": "Left ventricular noncompaction 8" + }, + { + "baseId": "75287|75288|75289", + "text": "Dilated cardiomyopathy 1LL" + }, + { + "baseId": "75292|75293|226957|230649|344048|431553|682863|682863", + "text": "Deafness, autosomal recessive 89" + }, + { + "baseId": "75294|75295|227691|227692|612143", + "text": "Cone-rod dystrophy 18" + }, + { + "baseId": "75299|75300|75301|75301|75302|75303|131985|131986|131987|165812|165813|168532|168533|168534|168535|205745|359705|359705|363137|428463|433821|455054|455232|455235|455691|455694|455697|455946|521519|521583|521589|521590|521845|538987|560361|560363|560365|563199|565168|576118|612709|614289|633995|633996|633997|633998|651333|721506|735163|749563|749564|759604|765179|765180|765182|765185|779323|782328|815949|830918|830919|830920|830921|830922|830923|830924|830925|830926|830927|830928|830929|830930|830931|830932|830933|830934|852216|917444|924094|924095|924096|932938|932939|932940|940007|944643|954185|954186|954187|959770|964660", + "text": "SHORT syndrome" + }, + { + "baseId": "75301|75301|165812|165812|165813|165813|168532|168534|168535|359705|359705|363137|428463|433821|440012|440013|440014|440015|455054|455232|455235|455691|455694|455697|455946|521519|521583|521589|521590|521845|560361|560363|560365|563199|565168|576118|612709|614289|633995|633996|633997|633998|651333|721506|735163|749563|749564|759604|765179|765180|765182|765185|779323|782328|815949|830918|830919|830920|830921|830922|830923|830924|830925|830926|830927|830928|830929|830930|830931|830932|830933|830934|852216|918977|924094|924095|924096|932938|932939|932940|940007|944643|954185|954186|954187|959770|970813", + "text": "Immunodeficiency 36" + }, + { + "baseId": "75311|75312|75315|189324|189325|227341|241059|241060|398046|398052|398075|398414|398510|408276|461231|461723|503158|503729|504078|525941|570312|639738|687711|838022|926135|935404|947335|956398", + "text": "Atrial fibrillation, familial, 14" + }, + { + "baseId": "75314|222828|222834|227197|243390|243394|243398|243403|243424|243440|243446|243490|243520|245146|403363|403468|403503|403533|403609|403803|403830|403844|403915|404005|410706|432965|469114|469199|471212|479908|479969|573352|575025|919892|920412|983654", + "text": "Mandibular hypoplasia, deafness, progeroid features, and lipodystrophy syndrome" + }, + { + "baseId": "75316|75317|75318|75319|75319|84781|191716|191832|191940|192139|192687|192688|192689|193660|195741|196054|196056|231497|231498|236918|244278|244279|244281|244282|244283|244284|244285|244287|244288|244289|244290|244291|244292|244293|244294|265896|265963|266960|268743|268885|271724|271725|272148|274250|275506|281060|281068|281079|281083|281093|281101|281668|281687|281689|281698|281708|281723|282874|282883|282886|282891|282892|282894|282896|282899|282904|282906|282913|282914|283176|283208|283210|283213|359270|365178|365179|365185|365189|365195|365197|365199|365201|365363|365380|365385|365448|365460|365461|365464|405228|414805|414807|421254|442882|448208|448212|448214|448215|448219|448277|448288|448303|448308|448309|448314|448319|448323|448325|448334|448338|448343|448344|448346|448347|448354|448402|448404|448405|448409|448411|448413|448417|448426|481599|485980|498817|516031|516037|516051|516053|516057|516060|516067|516068|516069|516072|516073|516074|516082|516084|516092|516097|516099|516194|516202|516205|516209|516213|516218|516223|516226|536598|557356|557358|557360|557362|557364|557366|557368|557405|557407|557409|557411|557413|557415|557417|557419|557421|558024|558026|558028|558030|558032|558034|558036|558038|558040|558573|558575|558577|558579|558581|558583|612539|628212|628213|628214|628215|628216|628217|628218|628219|628220|628221|628222|628223|628224|628225|628226|628227|628228|628229|628230|628231|628232|628233|628234|628235|628236|628237|628238|628239|628240|628241|628242|628243|628244|628245|650769|690658|690659|690660|690661|695061|696837|696840|696841|746620|746623|762057|778838|780758|787165|818989|818990|824354|824355|824356|824357|824358|824359|824360|824361|824362|824363|824364|824365|824366|824367|824368|824369|824370|824371|824372|824373|824374|824375|824376|824377|824378|824379|824380|824381|824382|824383|850783|922147|922148|922149|922150|922151|922152|922153|922154|922155|930644|930645|930646|930647|930648|930649|930650|930651|930652|939824|940647|942083|942084|942085|942086|942087|942088|942089|942090|942091|952502|952503|952504|952505|952506", + "text": "Charcot-Marie-Tooth disease, recessive intermediate c" + }, + { + "baseId": "75321|75322|75323|75324|75325|253634|253636|253638|253639|253640|253641|253642|253647|253650|253651|253652|253653|253654|371440|459508|459512|459514|459517|459752|459754|459770|459779|459984|459985|460401|460407|460415|460418|524842|525073|525218|525224|525225|525226|525380|563458|564377|564381|566089|569347|569359|569366|569375|638607|638608|638609|638610|638611|652232|692747|701116|701117|701118|701119|701121|701122|701123|701124|723693|723695|737271|737272|751873|836482|836483|836484|836485|925704|934884|934885|940162|946753|946754|946755|946756|955948|955949|983823|983824", + "text": "Nephronophthisis 16" + }, + { + "baseId": "75332|75334|192432|314761|314779|314781|314801|314805|321476|321487|321489|321501|327622|327637|327642|327651|328668|328736|328739|429283|493811|576143|576144|611367|868688|868689|868690|868691", + "text": "Spinocerebellar ataxia, autosomal recessive 14" + }, + { + "baseId": "75335", + "text": "T-cell receptor alpha/beta deficiency" + }, + { + "baseId": "75582|405018|405020|439204|447445|447446|447447|447453|447460|447462|447467|447468|447470|447563|447567|447570|447573|447574|447576|447584|447686|447689|447691|447694|447695|447696|447698|447701|447703|447704|447705|447709|447733|447735|447737|447739|447741|447744|447748|447758|447759|513239|515407|515494|515496|515501|515503|515505|515508|515509|515510|515511|515520|515559|515560|556760|556762|556764|556766|556799|556801|556803|556805|556844|557118|557126|557127|557129|557131|558329|558331|558333|627293|627294|627295|627296|627297|627298|627299|627300|627301|627302|627303|627304|627305|627306|627307|627308|627309|627310|627311|627312|650610|650675|690469|696411|696412|696413|696414|707018|707019|707020|729955|732035|732036|732038|732042|746014|746016|746017|758887|761484|761485|789914|794548|823251|823252|823253|823254|823255|823256|823257|823258|823259|823260|823261|823262|823263|823264|823265|823266|823267|823268|823269|823270|823271|850957|921810|921811|921812|921813|921814|930248|930249|930250|930251|939790|939791|941664|941665|941666|941667|941668|952218|952219|952220", + "text": "Epilepsy, familial adult myoclonic, 5" + }, + { + "baseId": "75586", + "text": "Craniometaphyseal dysplasia, autosomal recessive" + }, + { + "baseId": "75588|576098", + "text": "Combined oxidative phosphorylation deficiency 16" + }, + { + "baseId": "75589|75590|790172|861331", + "text": "Amyotrophic lateral sclerosis 19" + }, + { + "baseId": "75600|75601|75602|204484", + "text": "Dyschromatosis universalis hereditaria 3" + }, + { + "baseId": "75603|152912|152913|227449|247178|247179|364044|404842|404842|434678|446250|471394|495875|533546|537659|538491|539098|573531|573549|575107|575108|611353|648717|648718|648719|717002|717003|717004|717005|728680|728681|757548|757549|848429|971143", + "text": "Multiple congenital anomalies-hypotonia-seizures syndrome 3" + }, + { + "baseId": "75604|404842|538491|539414|590510|966062", + "text": "Paroxysmal nocturnal hemoglobinuria 2" + }, + { + "baseId": "75616|512191|512192|512193|512194|512195|552313|552314|552315|622126|622127|816486|861581|964873|970374|970375", + "text": "Beaulieu-Boycott-Innes syndrome" + }, + { + "baseId": "75617", + "text": "Susceptibility to leprosy and multibacillary leprosy" + }, + { + "baseId": "76319|76320|165517|165518|165519|389926|459570|459585|459587|459814|459818|459819|459822|459823|459826|459828|460456|460466|460468|503239|525107|525111|525113|525116|525243|525249|525430|525432|525433|525434|525435|563512|563515|566098|566116|566121|569430|569440|638656|638657|638658|638659|638660|638661|638662|638663|638664|638665|638666|638667|638668|638669|638670|638671|638672|652303|712128|723733|723734|737301|737303|737305|737307|744575|751912|751914|751915|767589|767590|767591|767593|777802|790935|836549|836550|836551|836552|836553|836554|836555|836556|836557|836558|836559|836560|836561|836562|836563|859779|925723|934923|934924|934925|940948|940949|946784|946785|946786|946787|946788|946789|946790|946791|955965|955966|955967|960710|966159|970918|981680", + "text": "Common variable immunodeficiency 10" + }, + { + "baseId": "76321|920031", + "text": "Chondrodysplasia with platyspondyly, distinctive brachydactyly, hydrocephaly, and microphthalmia" + }, + { + "baseId": "76324|76325", + "text": "Spermatogenic failure 12" + }, + { + "baseId": "76330|76331|76332|802219|966001", + "text": "Cortical dysplasia, complex, with other brain malformations 4" + }, + { + "baseId": "76333|76334|428443|514284|575489|788782|918976", + "text": "Cortical dysplasia, complex, with other brain malformations 3" + }, + { + "baseId": "76335|150453|626023|626024|626115|920159|965957", + "text": "Cortical dysplasia, complex, with other brain malformations 2" + }, + { + "baseId": "76337|208006", + "text": "Primary autosomal recessive microcephaly 11" + }, + { + "baseId": "76337|181398|181404|181422|181442|181443|181462|181468", + "text": "Primary microcephaly" + }, + { + "baseId": "76339|188878|195791|483111|483112|483113|483114|483115|483116|483117|483118|626252|962792", + "text": "Renal-hepatic-pancreatic dysplasia 2" + }, + { + "baseId": "76340|361068|861044|861045|861046|919939|919940", + "text": "Glaucoma, primary closed-angle" + }, + { + "baseId": "76347|76348", + "text": "Dyskeratosis congenita, autosomal dominant, 4" + }, + { + "baseId": "76352|94266|94267|482036|512042|513325|513326|513615|672265|672266|672267|672268|672269|672270|672271|672272|672273|672274|672275|672304|672305|713805|788872|788873|802182|858748|903596|903672|919475|919476|961309", + "text": "Hypotonia, infantile, with psychomotor retardation and characteristic facies 1" + }, + { + "baseId": "76354", + "text": "Myopia 22, autosomal dominant" + }, + { + "baseId": "76368|624860", + "text": "Inclusion body myopathy with early-onset paget disease with or without frontotemporal dementia 3" + }, + { + "baseId": "76369|76370", + "text": "Amyotrophic lateral sclerosis 20" + }, + { + "baseId": "76371|252783|252784|252785|456681|457114|457125|457301|522884|522885|523021|523261|523264|564276|636094|651725|651731|692218|692219|692220|692222|695362|700021|744331|766244|796027|819866|852084|955136", + "text": "Inclusion body myopathy with early-onset Paget disease with or without frontotemporal dementia 2" + }, + { + "baseId": "76372|790778|790779", + "text": "Mitochondrial complex 1 deficiency, nuclear type 24" + }, + { + "baseId": "76376|76377|188059", + "text": "Myopia 23, autosomal recessive" + }, + { + "baseId": "76379|227356|791391|791392", + "text": "Winchester syndrome" + }, + { + "baseId": "76380", + "text": "Deafness, autosomal recessive 88" + }, + { + "baseId": "76385|76386|550225", + "text": "Retinitis pigmentosa 82 with or without situs inversus" + }, + { + "baseId": "76387|141780|425624|552085", + "text": "Infantile liver failure syndrome 1" + }, + { + "baseId": "76388|88878|206601|206602|221980|224392|240817|240818|240819|240820|258642|258643|258644|258652|370756|371303|373392|373398|397316|397496|397497|397499|397726|397728|397857|397858|433866|433867|437854|444610|444613|459922|459927|459930|459931|460035|460090|460093|460356|460359|460361|460784|460786|486035|503354|503627|510171|510172|510174|510180|510181|510190|525358|525364|525370|525478|525482|525488|525665|525666|525667|563798|563800|564615|564619|566111|566346|566347|569680|638968|638969|638970|638971|651968|652108|687652|687655|687656|692867|695481|752129|767785|783616|820207|820208|836941|836942|836943|836944|836945|836946|925830|925831|925832|925833|946935|956079|960720|981697", + "text": "Aortic aneurysm, familial thoracic 8" + }, + { + "baseId": "76389|76390|76391|76392|76393", + "text": "Palmoplantar keratoderma, Bothnian type" + }, + { + "baseId": "76427|226957|354303|354304|514150|553143", + "text": "Optic neuropathy" + }, + { + "baseId": "76427|267852|360814|360901|361027", + "text": "Abnormal electroretinogram" + }, + { + "baseId": "76427|105349|360918|360926", + "text": "Visual loss" + }, + { + "baseId": "76527|620046|620737|622318", + "text": "WDR35-Related Disorders" + }, + { + "baseId": "76527|76649|132656|188988|192063|192782|250474|250911|250915|250917|260901|283786|283829|284409|284412|284415|284460|284474|286856|288710|289412|289426|292461|292469|294773|294797|298349|298359|298422|298440|321444|339360|513805|513809|549471", + "text": "Cranioectodermal dysplasia" + }, + { + "baseId": "76542|187118|190368|190422|190423|190790|237346|255459|255461|255462|255464|255465|255466|255467|255469|255470|256719|256722|256723|271607|298645|298648|298649|301051|301053|301059|305472|305495|321722|321729|321732|321767|324214|324216|324224|324226|324227|324228|324235|324237|324244|324250|324251|324255|324257|324261|324264|324265|324266|324274|324275|324279|324286|324287|328909|333770|333771|333780|333788|333790|333791|333792|333796|333798|333803|333813|333819|333820|333822|333826|333830|336680|340566|340577|340578|340585|340586|340590|340595|340598|340599|340600|340606|340610|340611|340615|340616|340620|340623|340625|340626|340628|340629|341950|341953|341954|341958|341964|341967|341968|341970|341973|341974|341978|341980|341984|342322|342336|342348|342352|347747|347762|349112|349132|349138|349140|349145|349147|494062|546277|546889|620534|714741|726433|726434|731039|731041|739964|754906|754909|754915|760398|785138|874680|874681|874682|874683|874684|874685|874686|874687|874688|874689|874690|874691|874692|874693|874694|874695|874696|874697|874698|874699|874700|874701|874702|874703|874704|874705|874706|874707|874708|874709|874710|874711|874712|874713|874714|874715|874716|874717|874718|874719|874720|874721|874722|874723|874724|876613|876614|876615|876616|876617|876618|876619|876620|876621|963283", + "text": "Osteopetrosis" + }, + { + "baseId": "76552", + "text": "CARNITINE PALMITOYLTRANSFERASE IA POLYMORPHISM" + }, + { + "baseId": "76552", + "text": "CPT1A ARCTIC VARIANT" + }, + { + "baseId": "76552|76563|99879|99880|191998|200218|200219|200220|200221|271352|358057|361583|372374|372616|461594|504343|564873|609808|609810|640393|640394|640396|693104|693105|693106|695540|701949|713110|738243|738244|738247|768709|768719|768720|775736|838927|838928|919389|956640|956646|979114|979115|979116|979117|979118|979119|979120|979121|979122|979123|979124|979125|979126|979127|979128|979129|979130|979131|979132|979133|979134|979135|979136|979137|979138", + "text": "Carnitine palmitoyltransferase type I deficiency" + }, + { + "baseId": "76573|136331|175587", + "text": "Idiopathic camptocormia" + }, + { + "baseId": "76576|133956|133957|133958|512973|512974|512975|512976|512977|512978|791196|918177|918178|919409|919410", + "text": "Spinocerebellar ataxia type 2" + }, + { + "baseId": "76666", + "text": "PRRT2 insufficiency" + }, + { + "baseId": "76763", + "text": "FGFR3-related disorder" + }, + { + "baseId": "76805|135054|135055|135056|135057|141924|141930|172081|172082|190927|193743|195779|195780|201728|201736|201737|201743|292252|425599|443586|496375|561913|563464|631943|686501|709167|764322|828805|828811|978016|978017", + "text": "Late-infantile neuronal ceroid lipofuscinosis" + }, + { + "baseId": "76920|76920|76921|266842|300777|300779|300781|300789|300795|300799|300806|300808|300810|300811|300812|300830|303692|303694|303701|303713|303720|303724|303731|308260|308271|308274|308275|308278|308288|308290|308291|308292|308297|308298|308299|308301|308304|308308|308309|308313|308324|308326|308330|308333|308335|308338|308367|308370|308371|308377|308378|308381|308399|308408|308409|308410|308416|308420|369003|369005|413715|413716|443976|455661|455667|455668|455673|455676|455679|455684|455686|455688|455693|455695|455698|455705|455717|455727|455729|455736|455738|455858|455861|455865|455880|455883|455884|455886|455887|455891|455892|456277|456278|456281|456284|456292|456296|456307|456308|456591|456593|456594|456602|456603|456619|456623|456624|456629|456634|456639|456648|456657|481764|481765|512907|512908|512910|521711|521712|521719|521721|521722|521724|521738|521745|521750|521752|521755|522054|522055|522056|522057|522067|522075|522078|522081|522086|522088|522089|522096|522097|522098|522101|522102|522104|522107|522110|522111|522112|522113|522114|522115|522121|522123|522125|522127|522133|522135|522138|522141|522414|522423|522425|522428|522430|522434|522438|522453|522455|522457|522459|522464|522469|522475|560771|560772|560774|560783|560785|560787|560788|560793|560795|560804|560806|560910|560911|560914|560918|560920|560924|560925|560927|560931|560933|560934|560935|560937|560942|560948|560949|563633|563635|563638|563642|563646|563649|563652|563653|563657|563659|563661|563665|563669|565760|565762|565767|565773|565786|565789|565790|565793|565796|565797|565801|565802|565809|565811|565820|565833|578451|635013|635014|635015|635016|635017|635018|635019|635020|635021|635022|635023|635024|635025|635026|635027|635028|635029|635030|635031|635032|635033|635034|635035|635036|635037|635038|635039|635040|635041|635042|635043|635044|635045|635046|635047|635048|635049|635050|635051|635052|635053|635054|635055|635056|635057|635058|635059|635060|635061|635062|635063|635064|635065|635066|635067|635068|635069|635070|635071|635072|635073|635074|635075|635076|635077|635078|635079|635080|635081|635082|635083|635084|635085|635086|635087|635088|635089|635090|635091|635092|635093|635094|635095|635096|635097|635098|635099|635100|635101|635102|635103|635104|635105|635106|635107|635108|635109|635110|635111|635112|635113|635114|635115|635116|651572|651588|651620|651622|651628|686904|692014|692015|692017|692018|692019|692020|692021|692022|692023|692024|692025|692026|692027|692030|692033|692034|692035|695322|695323|695324|695326|699630|699632|699633|699634|699635|710569|710570|710571|722083|722085|722086|765747|765753|782588|782592|787322|787325|787329|787341|787342|787346|787349|787351|787366|787415|787417|787421|787422|787425|787426|787428|787431|787433|787437|787441|787443|787446|787448|787474|787476|787478|787480|787483|787486|787489|787494|787496|787497|787499|787504|787506|787557|787559|787560|787565|787567|787574|787577|787579|787592|787594|787596|787597|795881|795883|795884|819702|832079|832080|832081|832082|832083|832084|832085|832086|832087|832088|832089|832090|832091|832092|832093|832094|832095|832096|832097|832098|832099|832100|832101|832102|832103|832104|832105|832106|832107|832108|832109|832110|832111|832112|832113|832114|832115|832116|832117|832118|832119|832120|832121|832122|832123|832124|832125|832126|832127|832128|832129|832130|832131|832132|832133|832134|832135|832136|832137|832138|832139|832140|832141|832142|832143|832144|832145|832146|832147|832148|832149|832150|832151|832152|832153|851328|851330|851368|919044|924390|924391|924392|924393|924394|924395|924396|924397|924398|924399|924400|924401|924402|924403|924404|924405|924406|924407|924408|924409|924410|924411|924412|924413|924414|933372|933373|933374|933375|933376|933377|933378|933379|933380|933381|933382|933383|933384|933385|933386|933387|933388|933389|933390|945078|945079|945080|945081|945082|945083|945084|945085|945086|945087|945088|945089|945090|945091|945092|945093|945094|945095|945096|945097|945098|945099|945100|945101|945102|945103|945104|945105|954505|954506|954507|954508|954509|954510|954511|954512|954513|954514|954515|954516|954517|954518|954519|954520|954521|954522|954523|954524|954525|954526|954527|954528|954529|954530|954531|954532|954533|954534|954535|954536|954537|954538|954539|954540|954541|954542|954543|954544|954545|954546|954547|954548|954549|954550|954551|954552|954553|954554|954555|954556|954557|954558|954559|954560|954561|954562|954563|954564|954565|954566|954567|954568|954569|954570|954571|954572|954573|954574|954575|954576|954577|954578|954579|954580|954581|954582|954583|954584|954585|954586|954587|954588|954589|954590|954591|954592|954593|954594|954595|954596|954597|954598|954599|954600|954601|954602|954603|954604|954605|954606|954607|954608|954609|954610|954611|954612|954613|954614|954615|954616|954617|954618|954619|954620|954621|954622|954623|954624|954625|954626|954627|954628|954629|954630|954631|954632|954633|954634|954635|954636|954637|954638|954639|954640|954641|954642|954643|954644|954645|954646|954647|954648|954649|954650|954651|954652|954653|954654|954655|954656|954657|954658|954659|954660|954661|954662|954663|954664|954665|954666|954667|954668|954669|954670|954671|954672|954673|954674|954675|954676|954677|954678|954679|954680|954681|954682|954683|954684|954685|954686|954687|954688|954689|954690|954691|954692|954693|954694|954695|954696|954697|954698|954699|954700|954701|954702|954703|954704|954705|954706|954707|954708|954709|954710|954711|954712|954713|954714|954715|954716|954717|954718|954719|954720|954721|954722|954723|954724|954725|954726|954727|954728|954729|954730|954731|954732|954733|954734|954735|954736|954737|954738|954739|954740|954741|954742|954743|954744|954745|954746|954747|954748|954749|954750|954751|954752|954753|954754|954755|954756|954757|954758|954759|954760|954761|954762|954763|954764|954765|954766|954767|954768|954769|954770|954771|954772|954773|954774|954775|954776|954777|954778|954779|954780|954781|954782|954783|954784|954785|954786|954787|954788|954789|954790|954791|954792|954793|954794|954795|959809|960589|960590|960591|960592|960593|960594|960595|960596|960597|960598|960599|960600|960601|960602", + "text": "Epidermolysis bullosa simplex, autosomal recessive 2" + }, + { + "baseId": "76922|214518", + "text": "MACULAR DEGENERATION, AGE-RELATED, 13, SUSCEPTIBILITY TO" + }, + { + "baseId": "76925|76926|76927|227290|229390|229393|229399|229400|229406|229407|229412|229414|415020|496429|552091|799435|903669|981516", + "text": "Ventricular tachycardia, catecholaminergic polymorphic, 5, with or without muscle weakness" + }, + { + "baseId": "76929|76930|858728", + "text": "Mitochondrial complex III deficiency, nuclear type 6" + }, + { + "baseId": "76931|76932|76933|76934|76935|76936|393851", + "text": "Ciliary dyskinesia, primary, 22" + }, + { + "baseId": "76939", + "text": "Body mass index quantitative trait locus 18" + }, + { + "baseId": "76945|76946|76947|76948|791643", + "text": "Microcornea, myopic chorioretinal atrophy, and telecanthus" + }, + { + "baseId": "76950|76951|76952|76953|106835|205561|221943|240768|240769|240770|240771|240772|240773|240774|240775|240776|240777|240778|240779|240780|240781|243961|243962|243963|243964|397221|397225|397228|397229|397231|397233|397234|397235|397241|397425|397427|397430|397622|397625|397633|397634|397635|397638|397641|397647|397652|397657|397667|397668|397760|397762|397765|397768|397773|459761|459763|459767|459944|459946|459949|459951|459958|459966|459968|459971|460223|460229|460231|460640|460643|460651|460653|460658|460659|460661|460662|525062|525064|525069|525074|525076|525264|525272|525276|525282|525387|525389|525581|552288|563685|563688|563692|564554|564555|564556|564560|566252|569612|638843|638844|638845|638846|638847|638848|638849|638850|638851|638852|638853|638854|638855|638856|638857|651961|652319|684170|687619|687620|687622|687625|752069|787580|820203|836793|836794|836795|836796|836797|836798|836799|836800|836801|925789|925790|925791|935014|935015|946871|956037|956038|956039|960718|960719", + "text": "Primary ciliary dyskinesia 23" + }, + { + "baseId": "76963|76964|170188", + "text": "Metacarpal 4-5 fusion" + }, + { + "baseId": "76965|76966|190050|190052|206701|224176|238121|238122|257907|257911|359196|362133|364334|364337|364365|364367|390765|390767|390769|390773|390778|440340|446985|447051|447055|447091|447093|447138|481127|497975|497998|509061|509066|514977|514983|514985|515008|515013|515041|556587|556840|556978|576393|576401|614648|614649|614650|614651|626610|626611|626612|677121|683253|685527|685528|792823|815974|822537|822538|929962|929963|929964|941381|941382|941383|952015|964123", + "text": "Spinocerebellar ataxia type 19/22" + }, + { + "baseId": "76974|76975|622332|622333|918850", + "text": "Primary aldosteronism, seizures, and neurologic abnormalities" + }, + { + "baseId": "76979|434673", + "text": "Spinocerebellar ataxia type 26" + }, + { + "baseId": "76980|76981|76982|136395|224975|224976|224977|224978|236851|444275|488207|508757|513166|513170|513216|576331|621027|970880", + "text": "Hartsfield syndrome" + }, + { + "baseId": "76985", + "text": "Hypogonadotropic hypogonadism 10 with or without anosmia" + }, + { + "baseId": "76988|77012|204060|205782|214480|260139|264340|264749|264789|408687|440937|444927|511891|512237|614601|655263|712015|795046|806228|848468|954352|966506|966507|966508|966509|966510|966511|966512|966513|966514|966515|966516|966517|966518|966519|966520|966521|966522|966523|966524|966525|966526|966527|966528|966529|966530|966531|966532|966533|966534|966535|966536|966537|966538|966539|966540|966541", + "text": "Rare genetic intellectual disability" + }, + { + "baseId": "76991|132637|439184|469018|469423|469841|469848|469852|532324|532350|532352|532357|532790|538478|571984|572674|574769|574770|574771|574772|574773|574774|624646|624647|624648|647354|647355|647356|647357|647358|647359|647360|647361|647362|647363|647364|647365|653557|716016|716017|727758|741414|741415|780036|800091|821194|821195|821196|846971|846972|846973|846974|846975|846976|846977|846978|846979|846980|846981|846982|846983|928749|928750|938474|938475|938476|958484|958485|958486|958487", + "text": "Immunodeficiency 12" + }, + { + "baseId": "76992|76993|76994|76995|76996|205749|226780|237457|252543|252544|252545|259849|264218|359607|362147|368798|368803|369102|369106|369341|370629|370634|421607|431025|431026|431027|431028|431029|431030|431031|431032|431033|431034|431035|431036|431037|431038|431039|431040|431041|431042|431043|431044|431045|431046|431047|431048|431049|431050|431051|431052|431053|431054|431055|431056|431057|431058|431059|431060|431061|431062|431063|431064|431065|431066|431067|431068|431069|431070|431071|431072|431073|431074|431075|431076|431077|431078|431079|431080|431081|431082|431083|431084|431085|431086|431087|431088|431089|431090|431091|431092|431093|431094|431095|431096|431097|431098|431099|431100|431101|431102|431103|431104|431105|431106|431107|431108|431109|431110|431111|431112|431113|431114|431115|431116|431117|431118|431119|431120|431121|431122|431123|431124|431125|431126|431127|431128|431129|431130|431131|431132|431133|431134|431135|431136|431137|431138|431139|431140|431141|431142|431143|431144|431145|431146|431147|431148|431149|431150|431151|431152|431153|431154|431155|431156|431157|431158|431159|431160|431161|431162|431163|431164|431165|431166|431167|431168|431169|431170|431171|431172|431173|431174|431175|431176|431177|431178|431179|431180|431181|431182|431183|431184|431185|431186|431187|431188|431189|431190|431191|431192|431193|431194|431195|431196|431197|431198|431199|431200|431201|431202|431203|431204|431205|431206|431207|431208|431209|431210|431211|431212|431213|431214|431215|431216|431217|431218|431219|431220|431221|431222|431223|431224|431225|431226|431227|431228|431229|431230|431231|431232|431233|431234|431235|431236|431237|431238|431239|431240|431241|431242|431243|431244|431245|431246|431247|431248|431249|431250|431251|431252|431253|431254|431255|431256|431257|431258|431259|431260|431261|431262|431263|431264|431265|431266|431267|431268|431269|431270|431271|431273|431274|431275|431276|431277|431278|431279|431280|431281|431282|431283|431284|431285|431286|431287|431288|431289|431290|431291|431292|431293|431294|431295|431296|431297|431298|431299|431300|431301|431302|431303|431304|431305|431306|431307|431308|431309|431310|431311|431312|431313|431314|431315|431316|431317|431318|431319|431320|431321|431322|431323|431324|431325|431326|431327|431328|431329|431330|431331|431332|431333|431334|431335|431336|431337|431338|431339|431340|431341|431342|431343|431344|431345|431346|431347|431348|431349|431350|431351|431352|431353|431354|431355|431356|431357|431358|431359|431360|431361|431362|431363|431364|431365|431366|431367|431368|431369|431370|431371|431372|431373|431374|431375|431376|431377|431378|431379|431380|431381|431382|431383|682346|790668|790669|792761|904216|905862|964831", + "text": "Mitochondrial DNA depletion syndrome 13 (encephalomyopathic type)" + }, + { + "baseId": "76997|76998|137712|227699|331230|399906|399958|400191|464570|464635|477067|528380|566698|573026", + "text": "Rhabdomyosarcoma, embryonal, 2" + }, + { + "baseId": "77009|77010|77011|77012|77012|208289|208289|361222|409653|425224|429815|486765|488166|513460|653891|677451|791623|791624|791625|802013|858355|919665|963810|964456", + "text": "Early infantile epileptic encephalopathy 17" + }, + { + "baseId": "77012|205293|205294|208289|260118|409653|417339|417343|513460|536092|578532|677451", + "text": "Neurodevelopmental disorder with involuntary movements" + }, + { + "baseId": "77226|77230", + "text": "Naegeli-Franceschetti-Jadassohn syndrome" + }, + { + "baseId": "77430|324506|350559|350560|351599|351601|447726|515517|515521|627319|732050|743657|746024|761491|761492|823275|921816|921817|930253|941669|952222", + "text": "Inflammatory bowel disease" + }, + { + "baseId": "77689|165538|178581|178686", + "text": "Collapse (finding)" + }, + { + "baseId": "77689", + "text": "History of Sudden Cardiac Death" + }, + { + "baseId": "77770|361929", + "text": "Metabolic disease" + }, + { + "baseId": "77872|77873|77874|77875|77876|153742|469628|539100", + "text": "Primary ciliary dyskinesia 24" + }, + { + "baseId": "77879|77880|174516|174517|212521|221631|239937|252377|303151|307630|307640|307814|307821|456535|896457|896458|896459|896460|896461|896462|896463|900234", + "text": "Ciliary dyskinesia, primary, 12" + }, + { + "baseId": "77881|77882|77883|238290|359267|391227|391261|391263|391277|391357|391397|405179|421247|426650|427825|434567|434684|442854|480627|550253|578383|583081|590037|627914|802122|858545|858546|920150", + "text": "Early infantile epileptic encephalopathy 18" + }, + { + "baseId": "78058|78261|78277|78516|78717|78885", + "text": "Acquired long QT syndrome" + }, + { + "baseId": "78511|78586|78587", + "text": "Long QT syndrome, drug-associated" + }, + { + "baseId": "78605", + "text": "SCN5A-Related Arrhythmias" + }, + { + "baseId": "78735|196833", + "text": "SCN5A-related disorder" + }, + { + "baseId": "78963", + "text": "Macular schisis" + }, + { + "baseId": "78963", + "text": "Peripheral schisis" + }, + { + "baseId": "79064|615309|615444", + "text": "Coagulation factor deficiency syndrome" + }, + { + "baseId": "79214|151696|210313|210342|242691|433256|653401|672282|672294|672295|672296", + "text": "Midaortic syndrome" + }, + { + "baseId": "79323", + "text": "Chronic and progressive ataxia" + }, + { + "baseId": "79323", + "text": "Enlarged cisterna magna" + }, + { + "baseId": "79323", + "text": "Ataxia _ Neurologic (child onset)" + }, + { + "baseId": "79323", + "text": "Non-progressive congenital cerebellar ataxia" + }, + { + "baseId": "79335|79336|79337|361238|411155|481342|614106|792141|964572|976710|976711|976712", + "text": "Chromosome Xq28 deletion syndrome" + }, + { + "baseId": "79338|79339|79340|79341|792797|857598", + "text": "Primary ciliary dyskinesia 25" + }, + { + "baseId": "79342|79343|79345|208445|215555|225864|237537|264817|264905|265045|362232|404836|410363|415600|415601|422219|430056|434666|434667|445961|445962|445963|445964|495485|495692|512349|512351|512781|512784|513473|514740|538476|551327|589844|611883|622447|622920|626389|788922|791857|791858|798733|798734|798735|806011|806013|806014|903629|919796|920391|961342|963180|963852|964497|964498|969286|969560|969702|971101|972839|972973|972974|972975|972976|972977|972978|972979|972980|972981|972982|972983|972984|972985|972986", + "text": "Bainbridge-Ropers syndrome" + }, + { + "baseId": "79355|79356|165834|187251|187252|187254|361552|372476|373172|373174|373177|373192|373201|373407|373409|375357|375367|375382|408721|421946|437937|437938|445059|462380|462381|462391|462396|462397|462641|462647|463092|463108|463120|463122|463126|463131|463227|463228|463237|463239|463243|463248|463250|463256|480513|480514|488120|504010|504025|504562|527308|527314|527316|527319|527590|527601|527606|527610|527831|527833|527835|540458|565643|565645|566974|566977|566979|566980|568144|568145|568150|571959|609852|609853|641303|641304|641305|641306|641307|641308|641309|641310|652336|693254|693255|693256|702453|738798|778106|791263|791264|840139|840140|840141|840142|840143|840144|840145|905365|926689|926690|926691|936203|940273|941038|956911|960049|965224", + "text": "Interstitial lung and liver disease" + }, + { + "baseId": "79355|445062", + "text": "MARS-Related Disorder" + }, + { + "baseId": "79441", + "text": "Myoclonic encephalopathy" + }, + { + "baseId": "79442|79445|79451|134806|135699|181402|202439|203324|205317|362316|362344|362351|362353", + "text": "Focal epilepsy" + }, + { + "baseId": "79508|178411|513910", + "text": "Absence seizures" + }, + { + "baseId": "79508|143011|201223|226495|514004|551721|551751|679898|679899|861283|861284", + "text": "Generalized tonic-clonic seizures" + }, + { + "baseId": "79563|100010|100016|165893|538300|538301|538302|538303", + "text": "West syndrome" + }, + { + "baseId": "79644|536698|543869", + "text": "UV-sensitive syndrome 2" + }, + { + "baseId": "79656|131887|131888|131889|131890|131891|131894|131895|131896|131897|131898|131899|138990|208505|208506|208507|208509|208513|208514|208515|208516|208518|208519|208524|208530|208531|222763|222765|222771|222772|222774|222777|243090|243097|243100|243110|243131|243132|243134|243145|243150|243153|243165|243170|243180|243185|243190|243194|243197|243204|243213|243221|243238|243244|243257|332432|332433|332438|332439|332443|332444|332449|337612|337623|342585|342586|342591|342599|342601|342603|342605|342610|342611|342614|342618|342619|342624|347191|347975|347980|347982|347987|347991|347996|348000|349277|349279|349281|349283|349284|349286|349288|361125|361126|377075|402931|403060|403500|425361|578442|622450|879824|918273|961514|963483|963484|974524|974525|975848", + "text": "Coffin-Siris syndrome" + }, + { + "baseId": "79696|550300|550301|550311", + "text": "Thrombotic thrombocytopenic purpura" + }, + { + "baseId": "80741|80741|94567|167460|167460|167461|406294|413626|413627|443449|452329|452334|452338|452342|452344|452349|452355|452362|452363|452372|452377|452379|452386|452388|452399|452505|452509|452511|452512|452516|452523|452542|452546|452550|452552|452554|452556|452558|452565|452569|452570|452571|452573|452581|452582|452588|452595|452596|452623|452624|452628|452629|452635|452650|452652|452654|452658|452668|452669|452670|452674|452678|452685|452688|452705|452706|452814|452817|452820|452821|452823|452854|452859|452865|452867|452877|452893|452895|452899|452900|452902|452904|452905|452909|481692|519218|519220|519222|519226|519228|519230|519232|519241|519243|519253|519258|519259|519261|519265|519271|519272|519273|519277|519279|519281|519283|519292|519297|519302|519305|519306|519307|519308|519312|519316|519319|519325|519326|519329|519334|519433|519436|519438|519441|519446|519447|519449|519451|519459|519460|519462|519464|519468|519471|519474|519483|519502|519507|519510|519513|519515|519518|519524|519526|519532|519536|519538|558972|558974|558976|558978|558980|558982|558984|558986|558988|559491|559493|559495|559497|559499|559501|561530|561535|561537|561540|561547|561548|561552|561553|561554|561556|561560|561566|562870|562871|562873|562874|562876|562877|562882|562884|562886|562887|562888|562910|562919|625107|631357|631358|631359|631360|631361|631362|631363|631364|631365|631366|631367|631368|631369|631370|631371|631372|631373|631374|631375|631376|631377|631378|631379|631380|631381|631382|631383|631384|631385|631386|631387|631388|631389|631390|631391|631392|631393|631394|631395|631396|631397|631398|631399|631400|631401|631402|651049|651069|651088|651196|679892|686427|686428|691399|691401|691402|691403|691404|691407|691408|691411|695202|698067|720424|720426|734044|734048|744019|748241|763876|763878|763879|763882|763885|778988|781669|781671|787306|795426|795427|821889|821890|828101|828102|828103|828104|828105|828106|828107|828108|828109|828110|828111|828112|828113|828114|828115|828116|828117|828118|828119|828120|828121|828122|828123|828124|828125|828126|828127|828128|828129|828130|828131|828132|828133|828134|828135|828136|828137|828138|828139|828140|828141|828142|828143|828144|850940|850942|851387|851390|923187|923188|923189|923190|923191|923192|923193|923194|923195|923196|923197|923198|931946|931947|931948|931949|931950|931951|931952|939939|939940|940750|940751|943533|943534|943535|943536|943537|943538|943539|943540|943541|943542|943543|943544|943545|943546|943547|943548|943549|943550|943551|943552|943553|953471|953472|953473|953474|953475|953476|953477|953478|953479|953480|953481|961264", + "text": "Episodic pain syndrome, familial, 3" + }, + { + "baseId": "80741|94565|167460|406294|413626|413627|414717|443449|452329|452334|452338|452342|452344|452349|452355|452362|452363|452372|452377|452379|452386|452388|452399|452505|452509|452511|452512|452516|452523|452542|452546|452550|452552|452554|452556|452558|452565|452569|452570|452571|452573|452581|452582|452588|452595|452596|452623|452624|452628|452629|452635|452650|452652|452654|452658|452668|452669|452670|452674|452678|452685|452688|452705|452706|452814|452817|452820|452821|452823|452854|452859|452865|452867|452877|452893|452895|452899|452900|452902|452904|452905|452909|481692|496112|519218|519220|519222|519226|519228|519230|519232|519241|519243|519253|519258|519259|519261|519265|519271|519272|519273|519277|519279|519281|519283|519292|519297|519302|519305|519306|519307|519308|519312|519316|519319|519325|519326|519329|519334|519433|519436|519438|519441|519446|519447|519449|519451|519459|519460|519462|519464|519468|519471|519474|519483|519502|519507|519510|519513|519515|519518|519524|519526|519532|519536|519538|558972|558974|558976|558978|558980|558982|558984|558986|558988|559491|559493|559495|559497|559499|559501|561530|561535|561537|561540|561547|561548|561552|561553|561554|561556|561560|561566|562870|562871|562873|562874|562876|562877|562882|562884|562886|562887|562888|562910|562919|578418|625107|631357|631358|631359|631360|631361|631362|631363|631364|631365|631366|631367|631368|631369|631370|631371|631372|631373|631374|631375|631376|631377|631378|631379|631380|631381|631382|631383|631384|631385|631386|631387|631388|631389|631390|631391|631392|631393|631394|631395|631396|631397|631398|631399|631400|631401|631402|651049|651069|651088|651196|686427|686428|691399|691401|691402|691403|691404|691407|691408|691411|695202|698067|720424|720426|734044|734048|744019|748241|763876|763878|763879|763882|763885|778988|781669|781671|787306|795426|795427|821889|821890|828101|828102|828103|828104|828105|828106|828107|828108|828109|828110|828111|828112|828113|828114|828115|828116|828117|828118|828119|828120|828121|828122|828123|828124|828125|828126|828127|828128|828129|828130|828131|828132|828133|828134|828135|828136|828137|828138|828139|828140|828141|828142|828143|828144|850940|850942|851387|851390|923187|923188|923189|923190|923191|923192|923193|923194|923195|923196|923197|923198|931946|931947|931948|931949|931950|931951|931952|939939|939940|940750|940751|943533|943534|943535|943536|943537|943538|943539|943540|943541|943542|943543|943544|943545|943546|943547|943548|943549|943550|943551|943552|943553|953471|953472|953473|953474|953475|953476|953477|953478|953479|953480|953481|961263|961264|969707", + "text": "Neuropathy, hereditary sensory and autonomic, type VII" + }, + { + "baseId": "81031|611474|611475|611476|611477|611478|611479|679873|679874|679875|679876|679877|679878|798549|798550", + "text": "Neurodevelopmental disorder and language delay with or without structural brain abnormalities" + }, + { + "baseId": "81688|88117|98921|98922|98923|98924|98926|98928|98933|98934|98935|98936|98938|98939|98941|98943|98944|98946|98949|98950|98952|98955|98960|98961|98962|98965|98966|98967|98968|98969|98970|98972|98973|98976|98977|98981|98982|98983|98984|98986|98988|98992|98993|98995|98997|98998|135364|135365|135366|135367|135368|135370|135371|135372|135373|135375|135376|135377|135378|135379|135381|135382|135383|135385|135386|135387|135388|135389|135390|135391|135392|135394|135396|135397|135398|135399|135400|135401|135402|135404|135405|135406|135407|135408|135409|176989|177121|177252|177383|177959|177961|177962|177965|177966|191156|191157|191638|192163|192815|192816|192817|192962|192963|193017|193018|193076|193091|193265|193266|193267|193309|193435|193772|193823|193877|193878|193881|193882|193883|193893|193894|193895|193896|193897|193899|193902|193903|193904|193905|193906|193907|193908|193909|193910|193911|193912|193913|193914|193915|193917|193918|193919|193920|193921|193922|193923|193925|193926|193928|193969|193971|193973|193974|193975|193977|193978|193980|193983|193984|193985|193986|193987|193989|193990|193994|193998|194000|194001|194002|194003|194004|194005|194008|194009|194010|194012|194013|194014|194015|194019|194020|195245|195795|200792|207532|207533|231311|231370|231429|231430|253066|253067|265349|265461|265465|265501|265502|265512|265516|265517|265518|265519|265524|265531|265554|265593|265628|265629|265639|265718|265827|265831|265905|265922|265930|265931|265932|265938|266070|266073|266086|266092|266179|266185|266228|266229|266248|266334|266335|266357|266370|266405|266422|266425|266440|266481|266507|266522|266524|266534|266545|266546|266550|266554|266563|266629|266630|266642|266656|266658|266659|266687|266692|266703|266723|266730|266736|266746|266756|266775|266779|266819|266876|266961|266991|267017|267018|267058|267063|267069|267090|267102|267121|267126|267133|267262|267271|267292|267309|267337|267338|267339|267439|267460|267461|267478|267481|267484|267491|267513|267523|267541|267568|267574|267631|267638|267641|267671|267700|267701|267707|267786|267867|267875|267877|267881|267882|267885|267899|267912|267924|267932|267981|268004|268114|268184|268195|268205|268206|268207|268212|268338|268339|268485|268486|268520|268521|268624|268704|268731|268747|268802|268812|268818|268819|268820|268835|268837|269027|269036|269247|269248|269316|269468|269573|269579|269645|269915|269970|269980|270225|270253|270274|270275|270360|270506|270550|270555|270825|270961|271365|271460|271624|271858|271947|272140|272170|272415|273236|273701|274532|274542|274576|274586|274590|274687|274701|274703|274704|274872|274876|274884|274886|274888|274895|274900|274934|274949|274965|274966|275304|336380|361453|369376|369377|369380|369386|369388|369394|369396|369411|369412|369424|369428|369734|369742|369758|369763|369767|369769|369773|369791|369802|369809|369814|369825|369839|369841|369846|370091|370093|370095|370097|370102|370108|370111|370122|370128|370132|370138|370139|370149|370155|371589|371592|371593|371594|371618|371629|371631|371646|371656|371659|371661|371665|371667|371679|371681|390580|404777|407323|407324|407325|407326|407327|407328|407332|407334|407335|415126|421663|421664|421665|425783|425784|425786|428802|428803|428804|428805|428806|428807|428808|428810|434623|438403|438405|441183|441184|441186|441188|441189|441190|441191|441193|441197|441199|441200|441201|441203|441204|441205|441206|441210|441211|441222|441223|441224|444223|444224|444226|444228|444230|444235|444240|444241|444245|444247|444250|444251|457234|457236|457238|457240|457245|457248|457249|457255|457258|457272|457273|457277|457282|457286|457294|457296|457298|457300|457302|457305|457307|457310|457312|457316|457323|457324|457328|457336|457337|457347|457348|457351|457359|457362|457363|457366|457371|457385|457390|457391|457393|457397|457399|457401|457405|457406|457411|457422|457424|457426|457428|457817|457837|457838|457839|457843|457847|457849|457851|457856|457857|457860|457862|457865|457866|457867|457869|457870|457872|457876|457878|457880|457882|457883|457884|457886|457887|457888|457894|457896|457900|457901|457902|457904|457907|457908|457912|457914|457919|457920|457921|457922|457924|457925|457927|457928|457931|457932|457935|457936|457937|457938|457946|457949|457956|457958|457960|457962|457963|457967|457972|457977|457980|457981|457982|457983|457985|457988|457990|457996|457998|457999|458001|458002|458004|458006|458007|458008|458013|458014|458017|458020|458022|458023|458025|458028|458030|458032|458033|458034|458039|458040|458041|458043|458046|458047|458051|458054|458062|458064|458067|458068|458071|458072|458077|458079|458088|458241|458243|458248|458252|458256|458266|458268|458272|458273|458277|458279|458283|458286|458292|458296|458298|458301|458302|458305|458310|458311|458316|458318|458323|458327|458334|458337|458341|458343|458346|458347|458350|458352|458355|458363|458368|458370|458376|458379|458383|458386|486449|488410|488423|488425|488427|488429|488430|488437|488440|488453|488464|488466|488469|488474|488476|488477|488479|488488|488496|488505|488507|488509|488512|488519|488520|488538|488539|488562|488589|488617|488790|488793|488811|488922|489011|489080|489083|489246|489276|489281|489377|489481|489688|490087|490389|490392|490417|490506|490642|490644|490646|490714|491028|491054|491060|491066|491108|491112|491126|491242|491388|491529|491648|491734|491814|491816|491970|491980|492104|492115|492230|492337|492338|492462|492609|492868|492901|493049|493050|493061|493063|493156|493220|493225|493253|493351|493496|493504|493568|493569|493573|493622|493662|493665|493825|493873|493874|493982|494015|494082|494092|494093|501926|501929|501931|501936|501946|501964|502236|502239|502244|502255|502262|502276|502278|502299|502313|502355|502361|502603|502604|502619|502623|502626|502632|502637|511746|511748|511749|523032|523042|523045|523051|523054|523057|523059|523063|523086|523088|523095|523101|523103|523109|523118|523126|523132|523133|523134|523138|523139|523142|523148|523151|523156|523158|523171|523173|523174|523176|523179|523182|523202|523205|523207|523208|523211|523214|523215|523311|523321|523323|523336|523339|523341|523345|523348|523353|523355|523358|523361|523371|523375|523380|523387|523388|523390|523392|523399|523401|523405|523412|523413|523415|523417|523420|523423|523432|523436|523441|523442|523448|523451|523461|523466|523467|523474|523481|523531|523537|523542|523544|523547|523549|523552|523553|523555|523556|523563|523570|523572|523576|523584|523586|523594|523596|523601|523603|523606|523608|523610|523616|523618|523622|523624|523636|523639|523644|523647|523652|523654|523655|523656|523658|523662|523663|523665|523667|523669|523671|523675|523676|523678|523683|523685|523689|523690|523692|523693|523694|523695|523698|523700|523702|523706|523714|523716|523718|523726|523730|523735|536744|561957|561960|561963|561965|561974|561980|561981|561993|561996|562000|562002|562011|562014|562018|562020|562021|562026|562029|562032|562034|562036|562038|562040|562047|562050|562054|562057|562059|562380|562396|562397|562400|562401|562411|562423|562425|562432|562433|562436|562437|562443|562448|562459|562475|562476|562479|562487|562496|562497|562500|562501|562504|562511|564676|564679|564681|564683|564690|564699|564701|564704|564708|564710|564718|564719|564722|564724|564726|564731|564732|564736|564741|564751|564759|564765|564767|564771|564774|564776|564778|564780|564785|564788|564790|564794|564796|564800|564802|564809|567397|567399|567400|567401|567406|567409|567414|567418|567419|567420|567421|567423|567427|567428|567430|567434|567443|567448|567466|567471|567484|567487|567493|567494|567495|567496|567497|567502|577038|577042|577048|577050|583214|583818|583832|583842|583852|583863|583873|583888|583928|583989|584023|584100|584299|584656|584658|584660|585030|585144|585680|585726|585814|585970|586401|586783|586809|586971|587049|587287|587469|588315|588317|588432|588452|588464|588491|588509|588536|588609|588612|588626|588632|588860|588861|588863|589251|589263|589547|589607|589776|612808|623147|636629|636630|636631|636632|636633|636634|636635|636636|636637|636638|636639|636640|636641|636642|636643|636644|636645|636646|636647|636648|636649|636650|636651|636652|636653|636654|636655|636656|636657|636658|636659|636660|636661|636662|636663|636664|636665|636666|636667|636668|636669|636670|636671|636672|636673|636674|636675|636676|636677|636678|636679|636680|636681|636682|636683|636684|636685|636686|636687|636688|636689|636690|636691|636692|636693|636694|636695|636696|636697|636698|636699|636700|636701|636702|636703|636704|636705|636706|636707|636708|636709|636710|636711|636712|636713|636714|636715|636716|636717|636718|636719|636720|636721|636722|636723|636724|636725|636726|636727|636728|636729|636730|636731|636732|636733|636734|636735|636736|636737|636738|636739|636740|636741|636742|636743|636744|636745|636746|636747|636748|636749|636750|636751|636752|636753|636754|636755|636756|636757|636758|636759|636760|636761|636762|636763|636764|636765|636766|636767|636768|636769|636770|636771|636772|636773|636774|636775|636776|636777|636778|636779|636780|636781|651751|651754|651758|651760|651770|651773|655836|655845|655849|662710|687201|692371|692372|692373|692375|692376|692378|692379|692380|692381|692385|692386|692387|692389|692391|692392|692393|692394|692395|692396|692397|692402|692403|692404|692406|692409|692411|692412|692413|692414|692418|692419|692420|692423|692424|692426|692430|692431|692432|692433|692434|692435|692436|692438|692440|695384|700445|700447|700450|700451|700455|700457|700458|700461|700463|700464|700467|711370|711371|711372|711374|711376|711381|711382|711385|711390|711391|711392|722917|722921|722922|736504|736505|736506|736507|736508|736510|736512|736513|736514|736521|736523|750972|750975|750976|750978|750979|750980|750985|750987|750989|750992|750995|766578|766583|766584|766586|766587|766599|766623|766628|775210|777720|783022|783024|783026|783029|783031|783035|793265|793267|793268|796133|796137|818743|834168|834169|834170|834171|834172|834173|834174|834175|834176|834177|834178|834179|834180|834181|834182|834183|834184|834185|834186|834187|834188|834189|834190|834191|834192|834193|834194|834195|834196|834197|834198|834199|834200|834201|834202|834203|834204|834205|834206|834207|834208|834209|834210|834211|834212|834213|834214|834215|834216|834217|834218|834219|834220|834221|834222|834223|834224|834225|834226|834227|834228|834229|834230|834231|834232|834233|834234|834235|834236|834237|834238|834239|834240|834241|834242|834243|834244|834245|834246|834247|834248|834249|834250|834251|834252|834253|834254|834255|834256|834257|834258|834259|834260|834261|834262|834263|834264|834265|834266|834267|834268|834269|834270|834271|834272|834273|834274|834275|834276|834277|834278|834279|834280|834281|834282|834283|834284|834285|834286|834287|834288|834289|834290|834291|834292|834293|852118|858315|858316|858317|858318|858319|858320|858324|858421|925028|925029|925030|925031|925032|925033|925034|925035|925036|925037|925038|925039|925040|925041|925042|925043|925044|925045|925046|925047|925048|925049|925050|925051|925052|925053|925054|925055|925056|925057|925058|925059|925060|925061|925062|925063|925064|925065|925066|925067|925068|934109|934110|934111|934112|934113|934114|934115|934116|934117|934118|934119|934120|934121|934122|934123|934124|934125|934126|934127|934128|934129|934130|934131|934132|934133|934134|934135|934136|934137|934138|934139|934140|934141|934142|934143|934144|934145|934146|934147|934148|934149|934150|934151|934152|934153|934154|934155|934156|934157|934158|934159|934160|934161|940891|945859|945860|945861|945862|945863|945864|945865|945866|945867|945868|945869|945870|945871|945872|945873|945874|945875|945876|945877|945878|945879|945880|945881|945882|945883|945884|945885|945886|945887|945888|945889|945890|945891|945892|945893|945894|945895|945896|945897|945898|945899|945900|945901|945902|945903|945904|945905|945906|945907|945908|945909|945910|945911|945912|955305|955306|955307|955308|955309|955310|955311|955312|955313|955314|955315|955316|955317|955318|955319|955320|955321|955322|955323|955324|955325|955326|955327|955328|955329|955330|955331|955332|955333|955334|955335|955336|955337|955338|955339|955340|959878", + "text": "Epidermolysis bullosa simplex with nail dystrophy" + }, + { + "baseId": "82378|104323|104324|104326|104328|104329|104333|104334|134649|134652|134653|134654|141218|141221|141222|141223|141224|171801|171802|202652|202654|202655|202656|202658|202661|202663|202664|202669|202671|202672|202676|202677|202678|202680|202681|205273|207945|225816|225816|226651|231830|231831|231834|231844|241528|241529|244773|244777|244778|244780|244782|244785|244787|244791|244793|244794|244797|244800|244803|244810|244814|244815|264589|323830|323834|323848|329924|331237|360033|360082|360939|360939|363682|372139|372862|372872|373105|374861|384421|398860|398865|398867|398874|398876|399031|399032|399034|399332|399340|399343|399345|399346|399587|421912|424660|429407|429408|462048|462052|462055|462057|462059|462310|462312|462315|482276|503713|504002|504011|504018|504233|504235|504242|504700|527011|527015|527017|527018|527021|527029|527224|527229|527234|527237|527240|527242|527244|527544|527546|536833|551720|551720|551786|552156|552158|553385|565352|565355|565355|566731|566732|566738|566744|566746|567923|567926|567928|567929|567934|567941|571707|571713|571720|571731|579767|579773|579777|611410|614369|640993|640994|640995|640996|640997|640998|640999|641000|641001|641002|641003|641004|641005|641006|641007|641008|652460|652688|684314|684316|687937|687938|687939|687940|687942|687946|693171|753264|769021|769025|784347|788865|815997|816474|820452|820453|822058|822059|822060|822061|822062|822063|822064|822065|822066|822067|822068|839694|839695|839696|839697|839698|839699|839700|839701|839702|839703|839704|839705|839706|839707|839708|839709|839710|839711|839712|839713|839714|839715|839716|839717|839718|852467|859953|904918|906189|917108|926574|926575|926576|926577|926578|926579|926580|936038|936039|936040|936041|936042|941028|947919|947920|947921|947922|947923|956820|956821|956822|956823|956824|969373|970957|976661", + "text": "Epileptic encephalopathy, early infantile, 27" + }, + { + "baseId": "82560|165899|430131|577876|614385|793759|861077|861078|861079|861080|861081|861082|861083|861084|861085", + "text": "Vascular dementia" + }, + { + "baseId": "82699|254996|254998|254999|255000|255001|255002|255003|255004|255005|255006|255008|255009|255010|255011|255012|255013|255014|255015|255017|255018|255019|255020|255023|255024|255025|255026|255027|255028|255029|255030|255032|255034|255035|276671|276673|276686|276691|276726|276763|276949|276950|276955|277004|277518|277521|277522|277526|277528|277548|277604|277610|277611|277623|277627|277653|277727|277730|277732|277750|277761|320929|320932|320938|320939|320943|320944|320945|320946|320948|320950|320951|320952|320960|320961|320965|320968|320974|320978|320979|320984|320986|329977|329979|329981|329982|329989|330005|330010|330013|330016|330018|330019|330020|330025|330030|330031|330033|330037|330038|330046|330048|330056|330057|330058|330064|330065|330069|330072|336523|336537|336538|336543|336550|336556|336557|336560|336564|336566|336569|336572|336573|336577|336578|336581|336587|336593|338442|338445|338446|338453|338456|338460|338461|338471|338472|338474|338477|338478|338485|338486|338499|338500|338501|338518|338521|338529|338532|338533|338535|338538|338539|338543|338544|338547", + "text": "Elliptocytosis" + }, + { + "baseId": "82699|254996|254998|254999|255000|255001|255002|255003|255004|255005|255006|255008|255009|255010|255011|255012|255013|255014|255015|255017|255018|255019|255020|255023|255024|255025|255026|255027|255028|255029|255030|255032|255034|255035|305268|305280|305289|305321|309074|314297|314308|314318|314321|314333|314404|314408|320929|320932|320938|320939|320943|320944|320945|320946|320948|320950|320951|320952|320960|320961|320965|320968|320974|320978|320979|320984|320986|328660|328662|328672|328673|329977|329979|329981|329982|329989|330005|330010|330013|330016|330018|330019|330020|330025|330030|330031|330033|330037|330038|330046|330048|330056|330057|330058|330064|330065|330069|330072|336523|336537|336538|336543|336550|336556|336557|336560|336564|336566|336569|336572|336573|336577|336578|336581|336587|336593|338442|338445|338446|338453|338456|338460|338461|338471|338472|338474|338477|338478|338485|338486|338499|338500|338501|338518|338521|338529|338532|338533|338535|338538|338539|338543|338544|338547|338624|338631|338649|338655|344704", + "text": "Spherocytosis, Dominant" + }, + { + "baseId": "82961|185748|249203|249204|512212|971605|971606|971607|971609|971610|976665", + "text": "Mental retardation, autosomal recessive 49" + }, + { + "baseId": "83715|104193|104194|104195|104196|104197|104198|104199|104200|104201|104202|104203|104204|104205|104206|104207|104208|104209|104210|104211|104212|104213|104214|104215|104216|104217|104218|104219|104220|104221|104222|104223|104224|104225|104226|104227|104228|104229|104230|104231|104232|104233|104234", + "text": "Tobacco use disorder" + }, + { + "baseId": "83803|166569|214480|363332|404624|511151|575484|798076|800806|800807|800809|800811|800812|921576|966338|966339|969259|969260|969261|969262|972733", + "text": "CEBALID syndrome" + }, + { + "baseId": "83803|798076|800806|800807|800809|805119|966338|967136|967137|967138", + "text": "MN1 C-terminal truncation (MCTT) syndrome" + }, + { + "baseId": "83949", + "text": "RAS Inhibitor response" + }, + { + "baseId": "84057|188136|188137|214794|214795|214796|214797|214798|226505|226506|226507|226508|226509|362381|424491|424637|427635|442619|511167|513490|550574|550575|578747|611372|611373|653845|653911|654148|788724|789842|789843|789844|805076|805084|918555|918556|961027|964011|964128|964710|970658|971564|975854", + "text": "White-sutton syndrome" + }, + { + "baseId": "85522|380153|389514|428056|428058|448600|450908|450909|450925|451019|451022|451032|451212|451214|451216|451217|451222|451224|451231|451236|511424|514470|518228|518229|518231|518237|518241|518242|518268|518273|518278|538968|539197|539198|539199|539200|557442|558097|558099|558101|558103|558105|558464|558466|558468|558470|558643|560639|589084|589085|630010|630011|630012|630013|630014|630015|630016|630017|630018|630019|630020|630021|630022|630023|630024|630025|630026|630027|630028|630029|630030|630031|630032|650961|679597|686212|691163|691164|691165|691167|691168|691169|691170|691171|691172|691173|691174|691175|695145|697573|697575|697578|697581|743877|747652|747654|763250|777278|799301|819171|819172|819173|826490|826491|826492|826493|826494|826495|826496|826497|826498|826499|826500|826501|826502|826503|826504|826505|826506|826507|826508|826509|826510|826511|904185|904425|922777|922778|922779|922780|922781|922782|931410|931411|931412|931413|931414|931415|931416|931417|942927|942928|942929|942930|942931|942932|942933|942934|942935|942936|942937|942938|942939|942940|942941|953095|953096|963126", + "text": "Myasthenic syndrome, congenital, 22" + }, + { + "baseId": "86128|86130|86132|86134|86136|964554", + "text": "Idiopathic basal ganglia calcification 5" + }, + { + "baseId": "86177|199922|199923|199925|199927|199928|199929|199930|199931|199932|199936|200703|204039|204062|359478|414962|428275|440835|443568|452956|452957|452959|452960|452961|452962|453265|453268|453269|453337|453338|453340|453345|453347|453348|453350|453352|453354|453718|453719|453722|453724|453726|453727|481475|481476|481478|519721|519726|519728|519739|519743|519747|519750|519752|519936|519991|519993|519996|519997|520010|520012|520015|536661|538979|559545|559581|559583|559728|559730|559732|559734|559736|561885|561887|561892|561895|563434|563440|563453|563457|575512|576330|631914|631915|631916|631917|631918|631919|631920|631921|631922|631923|631924|631925|631926|631927|631928|631929|631930|631931|631932|631933|631934|631935|631936|631937|631938|631939|631940|631941|654124|698364|698366|698367|720744|720745|720746|730261|748714|748715|759319|764295|764296|764299|764303|764306|774880|781865|781866|781867|818233|819441|819442|828745|828746|828747|828748|828749|828750|828751|828752|828753|828754|828755|828756|828757|828758|828759|828760|828761|828762|828763|828764|828765|828766|828767|828768|828769|828770|828771|828772|828773|828774|828775|828776|828777|828778|828779|828780|828781|828782|828783|828784|851479|851586|903532|923405|923406|923407|923408|923409|923410|923411|923412|923413|923414|923415|923416|923417|923418|923419|923420|923421|923422|932152|932153|932154|932155|932156|932157|932158|932159|932160|932161|932162|932163|932164|932165|943789|943790|943791|943792|943793|953661|953662|953663|953664|953665|953666|970784|970785|970786|972784|980912", + "text": "Epilepsy, hearing loss, and mental retardation syndrome" + }, + { + "baseId": "91475|106831|106832|106833|106834|205788|205789|260578|375291|375299|375330|376197|376230|376232|376338|378494|378500|410063|411591|411592|411593|413453|426232|429990|438649|466977|467055|467921|467970|467972|467973|468169|468172|468245|468372|468478|531228|531421|531425|531432|531476|531724|569245|569314|571300|571305|571602|571624|571703|646170|646171|646172|646173|646174|646175|646176|646223|646224|646225|646226|646227|646228|653471|653475|653479|694110|694112|694113|694129|694130|694132|694134|694135|695753|695754|695755|695760|704208|727253|755932|776346|797559|802220|821104|845599|845600|845645|845646|845647|851727|851729|852756|860400|904649|938035|950025|958193|958194", + "text": "Ataxia, spastic, 2, autosomal recessive" + }, + { + "baseId": "91819|141566|141567|141568|141569|141571|141572|165726|226730|226731|226732|226733|227400|247156|256738|256739|256740|256741|256742|271335|332348|332352|332355|332359|332361|332366|332368|332375|332377|332381|332382|342508|342513|342514|342517|342518|342520|342526|342527|342530|342531|342533|342535|342538|342540|347911|347912|347914|347915|347919|347920|347921|347922|347926|347929|347932|349242|349245|349246|360352|377025|377042|377212|377222|379171|379173|422232|434354|434355|446017|446019|468200|469092|469949|506423|507450|532391|532401|532406|532410|532456|532471|532472|532526|532528|532532|532859|532861|532871|532889|532894|570322|570323|570324|570327|570332|570336|572051|572053|572734|572737|572740|574797|574798|574799|574800|574801|574802|574804|574806|614453|624649|647418|647419|647420|647421|647422|647423|647424|647425|647426|647427|647428|647429|647430|647431|647432|647433|647434|647435|647436|647437|647438|647439|647440|647441|647442|647443|647444|647445|647446|647447|647448|647449|652975|653590|716119|716120|716121|727848|727849|727850|731232|741499|741501|756611|756613|756615|756617|756619|760552|760664|772294|772295|788231|821202|821203|821204|847045|847046|847047|847048|847049|847050|847051|847052|847053|847054|847055|847056|847057|847058|847059|847060|847061|847062|847063|847064|847065|851781|852829|879762|879763|879764|879765|879766|879767|879768|879769|879770|879771|879772|879773|879774|879775|879776|879777|879778|879779|879780|879781|879782|879783|879784|879785|879786|879787|879788|879789|879790|879791|879792|879793|879794|879795|879796|879797|879798|879799|879800|879801|879802|880682|880683|880684|880685|880686|928784|928785|938502|938503|938504|938505|938506|938507|938508|938509|938510|938511|950595|950596|950597|950598|950599|950600|950601|950602|950603|958501|958502|958503|958504|958505|958506|958507|958508|958509", + "text": "Tyrosine kinase 2 deficiency" + }, + { + "baseId": "92620|335886|335890|335894|335899|335901|335902|335904|335907|335909|335911|335914|335915|345594|345596|345598|345601|345602|345606|345617|350157|350158|350159|350161|350162|350163|350164|350167|350173|351214|351217|351218|351221|351222|351225|351226|351229|351230|351237|351238|434496|434497|620666|705566|717065|717066|717068|717070|728738|728739|757620|798766|886323|886324|886325|886326|886327|886328|886329|886330|886331|886332|886333|886334|886335|886336|886337|886338|886339|886340|886341|886342|886343|886344|886345|887474|887475|887476|920418", + "text": "Phosphoenolpyruvate carboxykinase deficiency, cytosolic" + }, + { + "baseId": "92718|94413|380176|439199|469550|469552|469557|469561|469562|469563|469565|469567|469569|469576|470593|470595|470597|470598|470600|470606|470608|470609|470612|470613|471083|471088|471092|471096|471100|471102|471106|471107|471114|471120|471125|471126|471129|471133|471135|471567|471569|471571|471573|471577|471579|471582|471582|471585|471589|471591|471594|471599|533751|533758|533759|533768|533775|533777|533778|533779|533780|533781|533782|533784|533786|533787|533788|533789|533791|533792|533794|533795|533798|533799|533800|533801|533802|533804|533805|533809|533811|533814|533815|533816|533818|533825|534347|534349|534351|534354|534356|534364|534367|534368|534372|539985|571475|571476|571479|571485|571486|571490|571492|571498|571499|571503|571505|573029|573034|573036|573038|573042|573050|573055|573058|573060|573062|573063|573717|573729|573731|573736|573738|573739|573740|573746|573748|573749|573750|573754|573756|573757|573759|575147|575148|575149|575150|575151|622474|648889|648890|648891|648892|648893|648894|648895|648896|648897|648898|648899|648900|648901|648902|648903|648904|648905|648906|648907|648908|648909|648910|648911|648912|648913|648914|648915|648916|648917|648918|648919|648920|648921|648922|648923|648924|648925|648926|653575|653662|653666|694623|705654|705656|705657|717181|728858|728859|728860|742586|742588|742589|745133|757736|757737|757738|757740|757741|757743|757744|757747|773284|773286|773293|776944|776945|776946|780000|786481|786483|786484|788255|788353|798019|798022|821352|821361|821362|848670|848671|848672|848673|848674|848675|848676|848677|848678|848679|848680|848681|848682|848683|848684|848685|848686|848687|848688|848689|848690|848691|848692|848693|848694|848695|848696|848697|848698|848699|848700|848701|848702|848703|848704|848705|848706|848707|848708|848709|848710|848711|848712|848713|848714|848715|848716|848717|848718|848719|848720|851857|852396|852914|929282|929283|929284|929285|929286|929287|929288|929289|929290|929291|929292|929293|929294|929295|929296|929297|929298|929299|929300|929301|929302|929303|939069|939070|939071|939072|939073|939074|939075|939076|939077|939078|939079|939080|939081|939082|939083|941257|941258|951192|951193|951194|951195|951196|951197|951198|951199|951200|951201|951202|951203|951204|951205|951206|951207|951208|951209|958932|958933|958934|958935|958936|958937|958938|958939|958940|958941|960325|960950|980855|980856", + "text": "Parkinson disease 20, early-onset" + }, + { + "baseId": "92718|380177|380178|380179|380180|439199|469550|469552|469557|469561|469562|469563|469565|469567|469569|469576|470593|470595|470597|470598|470600|470606|470608|470609|470612|470613|471083|471088|471092|471096|471100|471102|471106|471107|471114|471120|471125|471126|471129|471133|471135|471567|471569|471571|471573|471577|471579|471582|471582|471585|471589|471591|471594|471599|533751|533758|533759|533768|533775|533777|533778|533779|533780|533781|533782|533784|533786|533787|533788|533789|533791|533792|533794|533795|533798|533799|533800|533801|533802|533804|533805|533809|533811|533814|533815|533816|533818|533825|534347|534349|534351|534354|534356|534364|534367|534368|534372|571475|571476|571479|571485|571486|571490|571492|571498|571498|571499|571503|571505|573029|573034|573036|573038|573042|573050|573055|573058|573060|573062|573063|573717|573729|573731|573736|573738|573739|573740|573746|573748|573749|573750|573754|573756|573757|573759|575147|575148|575149|575150|575151|622474|648889|648890|648891|648892|648893|648894|648895|648896|648897|648898|648899|648900|648901|648902|648903|648904|648905|648906|648907|648908|648909|648910|648911|648912|648913|648914|648915|648916|648917|648918|648919|648920|648921|648922|648923|648924|648925|648926|653575|653662|653666|694623|705654|705656|705657|717181|728858|728859|728860|742586|742588|742589|745133|757736|757737|757738|757740|757741|757743|757744|757747|773284|773286|773293|776944|776945|776946|780000|786481|786483|786484|788255|788353|798019|798019|798022|798924|821352|821361|821362|848670|848671|848672|848673|848674|848675|848676|848677|848678|848679|848680|848681|848682|848683|848684|848685|848686|848687|848688|848689|848690|848691|848692|848693|848694|848695|848696|848697|848698|848699|848700|848701|848702|848703|848704|848705|848706|848707|848708|848709|848710|848711|848712|848713|848714|848715|848716|848717|848718|848719|848720|851857|852396|852914|919932|929282|929283|929284|929285|929286|929287|929288|929289|929290|929291|929292|929293|929294|929295|929296|929297|929298|929299|929300|929301|929302|929303|939069|939070|939071|939072|939073|939074|939075|939076|939077|939078|939079|939080|939081|939082|939083|941257|941258|951192|951193|951194|951195|951196|951197|951198|951199|951200|951201|951202|951203|951204|951205|951206|951207|951208|951209|958932|958933|958934|958935|958936|958937|958938|958939|958940|958941|960325|960950|966776", + "text": "Epileptic encephalopathy, early infantile, 53" + }, + { + "baseId": "93526|453713", + "text": "B Lymphoblastic Leukemia/Lymphoma with t(v" + }, + { + "baseId": "93526|453713|612012", + "text": "11q23.3)" + }, + { + "baseId": "93526|453713|612012", + "text": " KMT2A Rearranged" + }, + { + "baseId": "94194|94195|244155|438283|438284|453001|453003|453014|453020|453292|453301|453305|453307|453308|453389|453392|453400|453403|453404|453606|453791|453798|519773|519780|519782|519786|519798|519802|519806|520049|520051|520056|520100|559617|559772|559774|559776|559778|559780|561935|561940|561950|563538|609531|632033|632034|632035|632036|632037|632038|632039|632040|632041|632042|632043|632044|632045|632046|632047|632048|632049|632050|632051|632052|632053|691513|691514|691517|691519|691520|691521|695218|698396|720795|748774|764352|764354|764357|764358|787414|828884|828885|828886|828887|828888|828889|828890|828891|828892|828893|828894|851491|923443|923444|923445|923446|932212|932213|932214|932215|932216|932217|932218|943848|943849|943850|943851|943852|943853|953692|953693", + "text": "Charcot-Marie-Tooth disease, axonal, type 2R" + }, + { + "baseId": "94224|362490|362491|513218", + "text": "Spastic paraplegia 79, autosomal recessive" + }, + { + "baseId": "94225|94226|94227|208297|422102|553394|585918|613830|791631|798701|799962|964875|971053|973042", + "text": "Mental retardation, autosomal dominant 21" + }, + { + "baseId": "94228|94229", + "text": "Major depressive disorder" + }, + { + "baseId": "94232|94233|94234|428697|456514|456515|456517|456519|456521|456906|456909|456920|457142|457144|457145|457595|502324|522507|522745|522749|522822|523180|561038|564180|566634|635965|651672|692192|692194|692195|692197|692198|692199|692200|699973|699975|699978|699979|699980|699981|699982|710913|710914|710915|736057|736058|759656|851146|906251|906252|924776|945542|945543|945544|955101|960628", + "text": "Short-rib thoracic dysplasia 8 with or without polydactyly" + }, + { + "baseId": "94236|171810|207747|207753|207758|207768|207769|207781|247043|373416|407873|429080|429084|429095|429098|429099|538414|578486|790966|790967|790968|906324|919279|919280|919281|919282|920283", + "text": "Mental retardation, autosomal recessive 37" + }, + { + "baseId": "94238|94239|94240|361491|371686|371690|421789|459888|459897|460072|460326|460441|460756|502795|525348|525652|525657|563779|564593|638941|638942|638943|638944|638945|638946|638947|655993|684175|684176|684177|684179|687636|687637|687639|687641|687643|692844|820189|836873|925815|925816|925817|956056|970613|981693|981694|981695", + "text": "Telangiectasia, hereditary hemorrhagic, type 5" + }, + { + "baseId": "94241|94242|624846|788733|789911", + "text": "Orofaciodigital syndrome V" + }, + { + "baseId": "94249|94250", + "text": "Erythroderma, congenital, with palmoplantar keratoderma, hypotrichosis, and hyper-ige" + }, + { + "baseId": "94253|206596|404733|431173|954586|970260|970261|970262|970263|970264|970265|970266|970268|970272|970303|970310|970311|970312|970313|970314|970315|970316|970317|970319|970322|970329|970330|970331|970332|970333|970345|970346|970349|970350|970352|970353", + "text": "Moyamoya angiopathy" + }, + { + "baseId": "94255|136555|136556|136557|359280|405271|405272|433818|433819|433820|448257|448261|448268|448270|448272|448274|448280|448389|448396|448464|448465|448466|448467|448471|516096|516098|516102|516106|516116|516138|516143|516145|516147|516152|516246|516251|557388|557431|558044|558046|558601|558603|558605|609440|624193|628289|628290|628291|628292|628293|628294|628295|628296|628297|628298|628299|628300|628301|628302|628303|650692|650694|650702|650778|696925|707607|707608|707609|707610|719147|719148|719149|732670|732671|732673|732674|732675|732677|746693|746695|746696|746697|746698|746699|758953|759087|762107|762116|774556|774558|778843|780782|780784|780785|790020|794748|799231|799232|818824|819006|824551|824552|824553|824554|824555|824556|824557|824558|824559|824560|824561|824562|824563|824564|920155|922176|922177|922178|922179|922180|930711|930712|930713|930714|930715|930716|939833|940649|940650|942149|942150|942151|942152|942153|952558|952559|952560|952561|952562|960436|961926|970704", + "text": "Immunodeficiency 14" + }, + { + "baseId": "94260|94261|94263|94264|221749|240211|240212|240213|240214|240215|240216|240217|240218|389829|395838|395839|395845|395854|395857|396112|396113|396116|396234|396242|396243|396245|396255|396522|396523|396524|396526|396527|396529|396531|396533|396541|439015|457123|457126|457709|457710|457718|457719|457726|457728|457731|457733|457741|457757|457759|457760|457761|457763|458123|458130|458136|458139|458141|458143|522958|522963|523184|523186|523194|523197|523422|523426|523543|561867|561872|561876|561879|561880|561881|561883|564574|564575|567313|567315|567317|636523|636524|636525|636526|636527|636528|636529|636530|636531|636532|651756|651882|683959|687156|689896|692339|819933|834020|834021|834022|834023|834024|834025|834026|834027|834028|834029|924976|924977|924978|934057|934058|934059|934060|934061|945814|945815|945816|945817|945818|945819|945820|955270|955271|955272", + "text": "Ciliary dyskinesia, primary, 28" + }, + { + "baseId": "94265|222252|241554|241555|241556|254588|254589|398992|398995|398997|399146|399147|399459|399461|399463|399475|399476|399718|399722|462190|462470|462473|462479|462976|462979|462988|462994|463102|463105|463107|527444|527733|565486|568052|568057|641145|641146|641147|641148|641149|684328|685381|687994|687995|687996|687997|839968|839969|851951|926638|926639|926640|926641|936137|936138|948046|956887|956888|956889|956890|960045", + "text": "Ciliary dyskinesia, primary, 27" + }, + { + "baseId": "94269|94270|205563|533776|857601", + "text": "Ciliary dyskinesia, primary, 26" + }, + { + "baseId": "94271|94272|94273|94274|94275|271315|366397|366398|366399|366452|367034|367039|439637|450680|499936|560992|708066|708067|747352|747353|762966|781193|825789|825790|942627|952952", + "text": "Alacrima, achalasia, and mental retardation syndrome" + }, + { + "baseId": "94274|263260", + "text": "Gastroesophageal reflux" + }, + { + "baseId": "94314|256107|345378", + "text": "Immunodeficiency 13" + }, + { + "baseId": "94315|243992|374023|513626|513627|538439|553390|626235|626236|626237|626238|791438|791439|792795|801563|858761|971011|971012", + "text": "Mental retardation, autosomal recessive 38" + }, + { + "baseId": "94316|187105|215660|259635|404973|590035|861559", + "text": "Craniofacial dysmorphism, skeletal anomalies, and mental retardation syndrome" + }, + { + "baseId": "94331|94332|94333|970819", + "text": "Cole disease" + }, + { + "baseId": "94334|94335|94336|177793|188055|209190|225836|243875|265066|265173|265174|361253|361254|384417|430926|432099|432100|432101|471006|471007|471013|471017|471018|471979|471980|471993|472204|488165|534935|534937|534962|534964|534967|534969|534972|535075|535197|535198|535199|551349|552265|572589|574006|574009|574010|574011|574015|574897|574899|574901|574903|574912|574913|575451|575452|583209|611459|614510|650205|650209|650213|650214|650215|650217|650225|650226|672120|706317|743476|774210|792502|906198|915069|929812|929813|929818|939683|959506|963194|964906|969322|971502", + "text": "Mental retardation, X-linked 98" + }, + { + "baseId": "94338|94339|919600", + "text": "Corneal dystrophy, Fuchs endothelial, 8" + }, + { + "baseId": "94341|94342|94343|94344|215046|215047|452503|481684|519050|550592|562641|631120|691363|695194|698011|698012|698013|748179|763801|779050|788763|819363|827831|827832|858551|931874|976007", + "text": "Microphthalmia, syndromic 12" + }, + { + "baseId": "94347|455150|455288|456026|456031|521302|521304|521681|521685|521933|521937|521939|560413|560415|560417|560530|560535|560536|563315|563318|563320|565307|565308|565313|614296|634489|634490|634491|634492|634493|634494|634495|699257|699258|699259|721669|721673|721674|735363|749763|782412|819649|831412|831413|831414|831415|831416|831417|831418|831419|831420|924220|924221|924222|933126|933127|944851|944852|954324|954325|959789", + "text": "Candidiasis, familial, 8" + }, + { + "baseId": "94407|457788", + "text": "Testicular anomalies with or without congenital heart disease" + }, + { + "baseId": "94408|94409|94410|94411|94412", + "text": "Reticulate acropigmentation of Kitamura" + }, + { + "baseId": "94414", + "text": "Microtia with or without hearing impairment" + }, + { + "baseId": "94415|94416", + "text": "Craniosynostosis 5, susceptibility to" + }, + { + "baseId": "94417|368674|368822|439518|455159|455801|501087|501096|501777|521626|583098|634512|634513|655701|655706|699265|749775|831459", + "text": "Ehlers-Danlos syndrome, musculocontractural type 2" + }, + { + "baseId": "94418", + "text": "Autosomal recessive infantile epilepsy" + }, + { + "baseId": "94418|181458", + "text": "Infantile epilepsy" + }, + { + "baseId": "94423|94424|220990|260693|439003|448222|448345|448350|448369|448427|516077|516227|516230|557423|612540|628246|628247|628248|650698|690662|690664|690665|690667|690668|690669|690670|690671|690672|690673|818991|824384|824385|824386|824387|930653|942092|952507|964803", + "text": "Parkinson disease 19a, juvenile-onset" + }, + { + "baseId": "94423|172297|421965", + "text": "Ataxia, combined cerebellar and peripheral, with hearing loss and diabetes mellitus" + }, + { + "baseId": "94425|205220|225855|227705|227734|384399|404642|424614|434502|536094|538333|550579|608800|654114|677403|789954|798468|802120|861560|963479|963480|964151|976641|980551", + "text": "Mental retardation, autosomal dominant 22" + }, + { + "baseId": "94429|94430|94431|583121", + "text": "Deafness and myopia" + }, + { + "baseId": "94436|94437|801840", + "text": "Mental retardation, autosomal recessive 39" + }, + { + "baseId": "94438|903540|965965", + "text": "Periventricular nodular heterotopia 6" + }, + { + "baseId": "94439", + "text": "Deafness, autosomal recessive 76" + }, + { + "baseId": "94450|108170|404780|431977|431978", + "text": "Platelet-type bleeding disorder 17" + }, + { + "baseId": "94451|508729|790912", + "text": "Leukemia, acute lymphoblastic, susceptibility to, 3" + }, + { + "baseId": "94454|439604|439605|439606|439607|550136|623298|626383|682737|682737|790710|798583|903552|919091|919092|919093|921214|963622|970847|970848|970849|970850|970851", + "text": "Kleefstra syndrome 2" + }, + { + "baseId": "94530|105990|106004|623100", + "text": "fluorouracil response - Toxicity/ADR" + }, + { + "baseId": "94530", + "text": "Pyrimidine analogues response - Toxicity/ADR" + }, + { + "baseId": "94530|106004|623100", + "text": "capecitabine response - Toxicity/ADR" + }, + { + "baseId": "94530|106004", + "text": "tegafur response - Toxicity/ADR" + }, + { + "baseId": "94536|614260|858550", + "text": "Diamond-Blackfan anemia 12" + }, + { + "baseId": "94550", + "text": "Multiple fibroadenomas of the breast" + }, + { + "baseId": "94551|94552|94553|225826|225827|431551|578492|965985|965986", + "text": "Van Maldergem syndrome 1" + }, + { + "baseId": "94554|94555|94556|94557|187954|190563|190579|205286|205286|225862|298419|300776|305161|305266|390647|413396|422002|434101|434102|434104|539166|539167|590731|679792|791431|805104|858668|961320|961531|963169|971008", + "text": "Schaaf-Yang syndrome" + }, + { + "baseId": "94558|94559|94560|94561|94562|94563|367890|367898|406400|513269|513417|578427|612350|790433|802149|802150", + "text": "Van Maldergem syndrome 2" + }, + { + "baseId": "94560|165908|165909|165910|165911|363766|918878|918879", + "text": "Hennekam lymphangiectasia-lymphedema syndrome 2" + }, + { + "baseId": "94568|94569|227259|239219|239222|363675|393828|394016|406288|424892|443446|452323|452496|452800|519252|559489|918830|920192|920193", + "text": "Episodic pain syndrome, familial, 2" + }, + { + "baseId": "94572|513220|789154|816492", + "text": "Otofaciocervical syndrome 2" + }, + { + "baseId": "94573|590590|590591", + "text": "Hyperprolactinemia" + }, + { + "baseId": "94575|94576|446969|446972|448523|448545|514863|514883|514888|514890|514891|514899|514906|516200|516201|516208|516288|556505|556507|556535|556849|556886|557414|626464|626465|628362|690686|695915|706511|706512|706513|707621|718029|729896|731499|731500|745484|801580|822351|822352|822353|822354|824610|824611|918536|921530|921531|922203|930742|930743|930744|939767|941321|942174|960394|977419|977420|977574", + "text": "Arthrogryposis, mental retardation, and seizures" + }, + { + "baseId": "94577|153773", + "text": "Macrocephaly/megalencephaly syndrome, autosomal recessive" + }, + { + "baseId": "94618|167523|167524|433862|452735|452745|453087|453097|453099|453101|453103|453442|519584|519632|519637|519641|519852|519873|519875|559662|561791|563274|563281|563282|609516|614269|631745|631746|631747|631748|631749|631750|631751|631752|631753|631754|631755|631756|631757|631758|631759|631760|631761|651124|651236|708989|708990|708991|720580|720582|730232|734212|734214|734215|744103|748444|748445|748446|759448|764100|764102|764103|764107|774857|779166|781779|781782|781783|787398|828511|828512|828513|828514|828515|828516|828517|828518|828519|828520|828521|828522|828523|828524|828525|828526|828527|828528|828529|859292|923325|923326|923327|923328|923329|923330|932068|932069|932070|932071|932072|940763|943687|943688|943689|953577|953578|953579|961934|981433", + "text": "Autoimmune lymphoproliferative syndrome, type III" + }, + { + "baseId": "94805|94837|94853", + "text": "MISMATCH REPAIR CANCER SYNDROME 3" + }, + { + "baseId": "94964", + "text": "Colorectal cancer, early onset" + }, + { + "baseId": "94992|96714|550665", + "text": "Malignant tumor of sigmoid colon" + }, + { + "baseId": "95421|169841|263323|485951|514022|590085|801162", + "text": "Choreoathetosis" + }, + { + "baseId": "95421|485951", + "text": "Aqueductal stenosis" + }, + { + "baseId": "96064|133250|233596|590605|590607|590608", + "text": "Colon polyps" + }, + { + "baseId": "96098", + "text": "Neoplasm of the rectum" + }, + { + "baseId": "96795|188286|199803|360903|361045|361046", + "text": "Respiratory insufficiency" + }, + { + "baseId": "96795|199803", + "text": "Pulmonary insufficiency" + }, + { + "baseId": "96867", + "text": "Retinitis pigmentosa 67" + }, + { + "baseId": "96871|96872|96873|96874|96875|181288|181289|181290|181291|181293|203228|203228|203241|203242|614419|971044", + "text": "DOORS syndrome" + }, + { + "baseId": "97251|180234", + "text": "T Lymphoblastic Leukemia/Lymphoma" + }, + { + "baseId": "97317|97318|97319|205458|207494|207495|363880|369679|428751|438705|444193|513292|535733|535734|612282|622383|622888|623784|623785|623787|655822|700307|722761|736369|736371|744273|750864|782974|788821|788822|789122|790766|790767|834006|858590|965970|965971|973026|978409|978410|980927", + "text": "Asparagine synthetase deficiency" + }, + { + "baseId": "97322|97323|97324|97325|97326|97327|97328|362110|362111|362112|362113|962801|962802|962803|962841|976827", + "text": "Nephrotic syndrome, type 9" + }, + { + "baseId": "97331|454705|454709|454780|454783|454787|455242|455248|455252|455255|455546|455554|455558|455567|455568|455570|520846|520866|520881|520885|520890|520892|521120|521122|521135|521139|521143|521145|521261|521264|521267|521270|521273|521274|521276|521312|521314|521316|521322|521323|521325|521326|521327|521329|521335|521337|537473|540446|560183|560185|560187|560189|560191|560300|560302|560304|560306|560308|562921|562923|562925|562927|562931|562939|564905|564914|564923|564929|626149|633579|633580|633581|633582|633583|633584|633585|633586|633587|633588|633589|633590|633591|633592|633593|633594|633595|633596|633597|633598|633599|633600|691765|691766|691767|691768|691769|691771|695280|698895|698897|698899|698900|698901|698902|730340|734921|782208|816505|819565|830451|830452|830453|830454|830455|830456|830457|830458|830459|830460|830461|830462|830463|830464|830465|830466|830467|830468|830469|830470|830471|830472|851266|918929|923927|923928|923929|923930|923931|923932|923933|923934|932765|932766|932767|932768|932769|932770|932771|944453|944454|944455|944456|944457|944458|954076|954077|954078", + "text": "Distal hereditary motor neuronopathy 2D" + }, + { + "baseId": "97338|166235|214792|536084", + "text": "Split-hand/foot malformation 1" + }, + { + "baseId": "97339|153683|199889|199890|199891|199892|241893|399928|434940|480527|568296|919544|919545", + "text": "Loeys-Dietz syndrome 5" + }, + { + "baseId": "97423|172145", + "text": "Pigmented nodular adrenocortical disease, primary, 4" + }, + { + "baseId": "97439|214085|214086|214087|447131|447134|447201|515074|515075|515079|515081|515082|515129|515206|556649|626831|626832|626833|626834|626835|626836|626837|626838|626839|626840|626841|626842|626843|696095|718215|718216|731729|745688|745689|745693|758816|761206|761207|761208|822736|822737|822738|822739|822740|822741|822742|822743|822744|822745|822746|822747|850724|918557|921641|921642|921643|921644|930037|930038|930039|930040|930041|941453|952069|952070|952071", + "text": "Immunodeficiency 42" + }, + { + "baseId": "97523", + "text": "Worster-Drought syndrome" + }, + { + "baseId": "97529|97530|97531|481461|626195|677429", + "text": "Combined oxidative phosphorylation deficiency 18" + }, + { + "baseId": "97544|361261|413924|413927|424347|481211|511028|536072|576127|590426|590427|590428|590429|590430|613856|654131|788824|790785|917020|920252|961610|963647|963648|963649|964919|970876|974538", + "text": "Verheij syndrome" + }, + { + "baseId": "97548|378876|625990|625992|905861|983849", + "text": "Shukla-Vernon syndrome" + }, + { + "baseId": "97549|553224|553225|553226|553227|553228|553229|553230|974517|974534", + "text": "Peripheral neuropathy, autosomal recessive, with or without impaired intellectual development" + }, + { + "baseId": "97566|97567", + "text": "Alzheimer disease 18" + }, + { + "baseId": "97587|97588|97589|97590|97591|97592|97593|97594|97595|97596|97597|97598|97599|97600|97601|97602|97603|97604|97605|97606|97607|97608|97609|97610|97611|97612|97613|97614|380469|513996|789378", + "text": "Uterine leiomyoma" + }, + { + "baseId": "97607|214479|362913", + "text": "Angiosarcoma" + }, + { + "baseId": "98157|98158|227292|227293|961951|980458", + "text": "Complement factor B deficiency" + }, + { + "baseId": "98160|98161|98162|653875", + "text": "Mental retardation, autosomal recessive 40" + }, + { + "baseId": "98163|173819|173835|173968|195351|195994|211038|211039|211046|211053|211055|211058|229181|361179|434047|496327|583094", + "text": "Cataract 41" + }, + { + "baseId": "98174", + "text": "MCAD deficiency, modifier of" + }, + { + "baseId": "98234|513942", + "text": "Spastic gait" + }, + { + "baseId": "98258", + "text": "Desmoid tumor" + }, + { + "baseId": "98304|267722|303599|763016|869989|978946", + "text": "Hereditary Disorder" + }, + { + "baseId": "98438|205029|205030|332697", + "text": "Glutaric acidemia" + }, + { + "baseId": "98707|138351|151532|152299|166742|166842|223370|223371|223372|223373|223374|223375|223376|223377|223378|223379|223380|223381|223382|223383|223384|223385|223386|223387|223389|223390|223391|223392|223393|223394|223396|223397|223398|223399|223400|223401|223402|223403|223404|223405|223406|223407|223408|223409|223410|223411|223412|223413|223414|223415|223416|223417|223418|223419|223420|223421|223422|223423|223424|223425|223426|223427|223428|223429|223430|223431|223432|223433|223434|223435|223436|223437|223438|223439|223440|223441|223442|223443|223444|223445|223446|223447|223448|223449|223450|223451|223452|223453|223454|223455|223456|223457|223458|223459|223460|223461|223462|223463|223464|223465|223466|223467|223468|223469|223470|223471|223472|223473|223474|223475|223476|223477|223478|223479|223480|223481|223482|223483|223484|223485|223486|223487|223488|223489|223490|223491|223492|223493|223494|223495|223496|223497|223498|223499|223500|223501|223502|223503|223504|223505|223506|223507|223508|223509|223510|223511|223512|223513|223514|223515|223516|223517|223518|223519|223520|223521|223522|223523|223524|223525|223526|223527|223528|223529|223530|223531|223532|223533|223534|223535|223536|223537|223538|223539|223540|223541|223542|223543|223544|223545|223546|223547|223548|223549|223550|223551|223552|223553|223554|223555|223556|223557|223558|223559|223560|223561|223562|223563|223564|223565|223566|223567|223568|223569|223570|223571|223572|223573|223574|223575|223576|223577|223578|223579|223580|223581|223582|223583|223584|223585|223586|223587|223588|223589|287838|362513|389509|464005|515301|524536|623760|623766|841761|873799|918052|918053|918054|918055|918056|918057|918058|918059|918060|918061|918062|918063|918064|918065|918066|918067|918068|918069|918070|918071|918072|918073|918074|918075|918076|918077|918078|918079|918080|918081|918082|918083|918084|918085|918086|918087|918088|918089|918090|918091|918092|918093|918094|918095|918096|918097|918098|918099|918100|918101|918102|918103|918104|918105|918106|967238", + "text": "Premature ovarian failure" + }, + { + "baseId": "98777|105003|215730|215731|215732", + "text": "Bull's eye maculopathy" + }, + { + "baseId": "98778|360817|513966|514150", + "text": "Central scotoma" + }, + { + "baseId": "98778|360817", + "text": "Retinal atrophy" + }, + { + "baseId": "98872|298910|298986|298989|301373|301403|305742|305746|305974|626155", + "text": "Congenital Muscular Dystrophy, LAMA2-related" + }, + { + "baseId": "98887|226138|360414|501808|514095", + "text": "Exercise-induced myalgia" + }, + { + "baseId": "98887|205181|226138|360414|501808|513930|514063|514095", + "text": "Myalgia" + }, + { + "baseId": "99151|99173|99182|99211|99212|169560|169580|171226|171231|171238|196375|208594|256909|256920|256925|256944|256948|256958|256987|257000|257032|257035|271556|274528|333301|333320|333371|333375|333410|333413|333414|333420|333435|333442|333452|333453|343386|343389|343390|343420|343425|343432|343435|343440|343453|343475|343476|343479|348713|348737|348738|348740|348758|348765|348777|349738|349753|349756|349757|349764|349779|434672|470144|539091|816391|858777", + "text": "Multiminicore Disease" + }, + { + "baseId": "99156|99159|136823|136845|171234|196498|198035|227850|246870|249594|275549|275550|279688|361053|488128|488129|488130|488143|488144|488145", + "text": "Malignant hyperthermia" + }, + { + "baseId": "99159", + "text": "Myopathy, progressive axial with cataracts" + }, + { + "baseId": "99159|260246|361054", + "text": "Developmental dysplasia of the hip" + }, + { + "baseId": "99159|361054", + "text": "Generalized muscle weakness" + }, + { + "baseId": "99334|99335", + "text": "Nicotine addiction, protection against" + }, + { + "baseId": "99373|338995|352104", + "text": "Fanconi Anemia, X-Linked" + }, + { + "baseId": "99373|187363|338995|352104|622117", + "text": "VACTERL association with hydrocephalus" + }, + { + "baseId": "99410|101295|101297|134224|134225|134226|134227|134228|134229|134230|134231|134232|140496|202767|202775|202777|202784|203262|203276|203280|203281|203288|320006|320007|320010|320014|320016|324885|324886|324887|324893|324895|324896|324903|324904|326766|328567|328568|328571|328572|328578|334497|334502|334506|334507|334510|334518|335053|335056|335059|336965|336972|341059|341060|341073|341075|342609|342612|342613|342620|353338", + "text": "Neuronal Ceroid-Lipofuscinosis, Dominant/Recessive" + }, + { + "baseId": "99456|249397|276421|276422|276430|276436|276449|276467|276468|276481|276654|276661|276692|277165|277200|277212|277217|277239|277292|277301|277315|277324|277327|277334|277341|277346|279716|280963|280965|281107|434672|858780", + "text": "Congenital fiber-type disproportion" + }, + { + "baseId": "99456|101004|181376|186649|188272|237087|249397|259696|271659|276421|276422|276430|276436|276449|276467|276468|276481|276654|276661|276692|277165|277200|277212|277217|277239|277292|277301|277315|277324|277327|277334|277341|277346|279716|280963|280965|281107|357230|434571|442935|442968|448783|486874|486887|486889|486940|511331|516394|516477|541416|541466|541518|541562|541648|541687|541733|541761|559236|559286|621094|621095|621096|621097|621099|621711|905884|915016|916831|916832|963250", + "text": "Nemaline myopathy" + }, + { + "baseId": "99689|99690|99691|99692|177632|192310|194050|194592|195109|195632|247081|254527|254529|254530|254531|254533|254534|254535|254540|254542|254543|254545|254548|254554|254555|254556|254558|254559|254562|254563|254566|267804|267844|268275|269225|271988|317256|317257|317259|317260|317264|317265|317266|317270|317272|317277|317278|324975|324976|324977|324987|324995|325000|325001|325004|325007|325014|325016|325017|325018|325020|325021|325022|325023|331093|331094|331121|331130|331131|331132|331136|331137|331156|331162|331165|331166|331169|331171|332678|332679|332683|332685|332690|332693|353246|373063|408664|503887|504176|504204|504206|504216|504453|504905|537882|537897|584158|585420|587799|769129|839947|869891|869892|869893|869894|869895|869896|869897|869898|869899|869900|869901|869902|869903|869904|869905|869906|872244|872245|872246|872247|872248|872249", + "text": "Type II Collagenopathies" + }, + { + "baseId": "99791|263249|263250|263276|263280|271861|360939|360955|439633|439634|439635|513964|514016|514074|514211|587369|679897|805140|970520", + "text": "Motor delay" + }, + { + "baseId": "99931|99932|190386|254709|267600|334234|713708|744914|769278|769279|840220|840221|851957|979290|979291|979292|979293", + "text": "Sanfilippo disease" + }, + { + "baseId": "100016|181451|196242|207089|367600|434634|490210|496932|513979|621017|621021|621023|621027|621031|621034|621035|621036", + "text": "Cerebellar vermis hypoplasia" + }, + { + "baseId": "100024|255320|312682|319125|323074|323075|332671|339678|341028|341056|353325", + "text": "Nemaline Myopathy, Dominant" + }, + { + "baseId": "100029|193523|243897|275222|798696|919614|963366", + "text": "Autosomal dominant medullary cystic kidney disease with hyperuricemia" + }, + { + "baseId": "100030|100031|100032|193523|195653|255481|275222|324592|334141|334154|340833|340835|340844|342226|342233|342239|342241|342244|354268", + "text": "Uromodulin-associated kidney disease" + }, + { + "baseId": "100165|100168|100175|100181|100182|100183|100185|100189|100190|100199|100201|100207|100212|100214|100216|100218|100222|100223|100225|100228|100229|100243|100245|100248|100253|100254|100261|100264|100269|102570|102574|102577|102580|133838|134392|150222|150223|177684|192759|192909|193183|195128|250783|250787|254126|265545|265920|266446|266936|267002|267681|267696|268176|268214|268748|268817|269053|269711|269978|270059|270711|272050|272648|272649|272867|273335|273377|273720|274494|274907|274982|275299|275308|287144|287148|287149|287157|287158|287164|287169|287171|287172|287173|287877|287896|287898|287899|287900|287903|287904|287906|287911|287912|290424|290428|290429|290430|290443|290454|290461|290463|290470|290471|290719|290721|290727|290728|290729|290742|290745|290746|290750|290759|290760|290761|290765|290767|313659|313661|313662|313663|313667|313669|313673|313674|313675|313679|313680|313681|313682|313686|313691|313693|313701|313702|313704|313705|313706|313708|313709|313712|313717|313720|313725|319863|319873|319874|319881|319882|319884|319886|319893|319898|319903|319906|319907|319915|319916|319925|319928|319930|319943|326019|326020|326023|326024|326025|326029|326031|326041|326051|326053|326059|326076|326101|326107|326108|326111|326137|326138|326139|326145|326995|326997|327003|327005|327012|327013|327018|327021|327039|327040|327044|327045|327047|327048|327050|327051|327052|327053", + "text": "Miyoshi myopathy" + }, + { + "baseId": "100286|165724|165725|166077|166077|166081|460453|524875|525106|569426|590287|623302|650386|650387|695464|798624|818274|818275|836511|836512|836512|852537|903495|964337", + "text": "Focal segmental glomerulosclerosis 7" + }, + { + "baseId": "100811|134271|172217|190060|190061|190062|190063|190064|191040|269203|272656|272923|273883|274174|404758|443198|450899|538966", + "text": "Dystonia 27" + }, + { + "baseId": "101043|101044|101046|177186|194925|195676|249330|249354|249356|249357|270290|270940|272601|275429|275796|275797|275819|275820|275821|275964|275965|275967|489050|489534|489575|492777|549497|556544|584868|586522|586745|587044|626566|626567|706529|718051|745517|745519|761036|778712|780254|822466|822467|822468|822469|822470|822471|822472|850704|921560|929932|929933|929934|929935|941349|941350|941351|941352|941353|941354|952001|959516", + "text": "Peroxisome biogenesis disorder, complementation group K" + }, + { + "baseId": "101181|191188|193572|266783|268688|270409|308311|308317|308318|308319|308320|308328|308329|308332|308334|312724|312726|312735|312736|312737|312743|312744|312747|312748|312751|312752|312765|312768|312769|312771|312787|312793|312794|318605|318606|318613|318614|318616|318617|318619|318620|318627|318628|318635|318636|318637|318638|318640|318641|319156|319158|319161|319171|319172|319173|319182|319195|319201|319202|319203|319204", + "text": "Inclusion Body Myopathy, Recessive" + }, + { + "baseId": "101204|263210|263217|360963|360964|590035|590040|590044|590055|612447|905820", + "text": "19 conditions" + }, + { + "baseId": "101204|437667|792127", + "text": "Mental retardation with panhypopituitarism, X-linked" + }, + { + "baseId": "101232|292712|297538|297540|297567|300173|300992|301008|303928|303952|303985|307361|307363|307369|307578|308615|308639|308641|308646|308648|308651|308668|329461|329474|329481|329484|329497|329498|329516|333272|333926|333959|339755|339757|339759|339770|339774|339778|339780|339785|339795|343356|343374|343375|343885|343913|345498|345511|345513|345518|345519|345527|345535|345536|345545|345573|346830|346833|346837|346840|346841|346847|346878|348650|349196|349200|349209|350128|353493", + "text": "Cone-Rod Dystrophy, Dominant" + }, + { + "baseId": "101232|292712|297538|297540|297567", + "text": "Retinal Macular Dystrophy" + }, + { + "baseId": "101232|292712|297538|297540|297567|301143|308921|308926|308942|308943|308956|309014|309044", + "text": "Stargardt Disease, Dominant" + }, + { + "baseId": "101263|101264|102224|168817|168819|170137|207262|297423|297429|297448|297455|297457|299525|303646|303998|309448|314216|314227|320076|339452|339473|339498|348988|352348|352358|352359|352368|352374|352919|353110|353111|615936|683141|683142|792685|961512", + "text": "De Lange syndrome" + }, + { + "baseId": "101291|301212|308978|456454|481266|481267|481268|502112|561128|635323|695332|750270|765900|832596", + "text": "Congenital disorder of glycosylation type 2F" + }, + { + "baseId": "101414|131818|192025|311812|311814|314617|314618|314620|316267|316270|316274|316275|316277|316303|317377|317378|317417|317421|321290|323463|323625|323707|324085|329769|329777|329787|329793|329835|330592|331039|331041|331097|340848|340854|353213", + "text": "Cutis laxa, recessive" + }, + { + "baseId": "101454|101455|101457|101459|101460|101464|101471|101472|101474|101475|134251|134252|134254|134256|140519|140520|140521|140527|140540|140542|176985|177621|191693|195720|202039|202060|202064|202065|202105|252644|286725|286739|286748|286755|286772|286807|286813|286817|286819|287439|287493|287553|287555|287556|287564|287565|289874|289875|289957|289960|290273|290286|290287|290288|290302|290304|290307|290313|290336|290361|290379|290380|302099|302105|302106|302110|302112|302118|302119|302122|302123|302124|302130|302131|302133|302136|302144|302146|302147|302148|302152|302154|302155|302156|302168|302169|302173|305257|305261|305271|305274|305278|305281|305282|305283|305285|305290|305292|305293|305303|305305|305306|305307|305311|305313|305314|305315|305317|305319|305326|305334|305335|305338|305341|305343|305344|305345|305348|305356|305357|310046|310047|310048|310049|310051|310056|310069|310070|310071|310076|310077|310081|310100|310101|310103|310110|310111|310112|310114|310116|310117|310118|310119|310122|310123|310126|310127|310129|310131|310132|310133|310134|310142|310143|310147|310148|310155|310159|310170|310177|310180|310183|310184|310185|310186|310187|310189|310196|310198|310200|310204|310205|310206|310207|310219|310237|310251|310257|310261|310265", + "text": "Pitt-Hopkins-like syndrome" + }, + { + "baseId": "101563|140118|195446|211373|211380|307148|308143|308151|308164|308165|311342|316839|316886|317274|318388|318389|318392|318394|318402|318863|318872", + "text": "Ataxia with Oculomotor Apraxia" + }, + { + "baseId": "101665|108165|209037|608807|608811|608812|961637", + "text": "Lenz microphthalmia syndrome" + }, + { + "baseId": "101673|305618|305623|305633|305676|308951|309529|309530|309550|309551|309564|309627|309713|314854|314860|314906|314911|314912|314916|314924|314940|314978|315029|353841|623774|626008|860727", + "text": "Hypogonadism with anosmia" + }, + { + "baseId": "101888|177144|181437|237188|319770|328301|328304|334782|336519|372822|372827|373841|426044|463273|485964|504270|527728|527763|566119|567579|641939|641940|688170|695598|702685|730919|769560|769561|784600|840886|840887|840888|840889|840890", + "text": "Shaheen syndrome" + }, + { + "baseId": "102029|172295", + "text": "Gillessen-Kaesbach-Nishimura syndrome" + }, + { + "baseId": "102281|177954|186714|193213|395418|634949|919037|919038|919039|983840", + "text": "Polycystic kidney disease 4" + }, + { + "baseId": "102570|102573|102574|102580|133838|133839|133840|150222|150223|150224|192166|192704|192867|194564|195068|230189|254117|254126|265545|266733|266734|267681|268176|269711|269789|270711|273335|313659|313661|313662|313663|313667|313673|313679|313680|313681|313682|313686|313691|313693|313701|313704|313705|313706|313708|313709|313712|313717|313720|313725|319873|319874|319881|319882|319884|319886|319893|319898|319903|319906|319907|319925|319928|319930|319943|326019|326020|326023|326024|326025|326029|326031|326041|326051|326059|326076|326101|326107|326108|326111|326137|326138|326139|326995|326997|327003|327005|327012|327021|327039|327040|327044|327045|327047|327048|327050|327051|327053|488826|490435|492080|493833|677235|867749|867750|867751|867752|867753|867754|867755|867756|867757|867758|867759|867760|867761|867762|867763|867764|867765|867766|867767|867768|867769|867770|867771|867772|867773|867774|867775|867776|867777|867778|867779|867780", + "text": "ANO5-Related Muscle Diseases" + }, + { + "baseId": "102582", + "text": "L-ferritin deficiency" + }, + { + "baseId": "102583", + "text": "L-ferritin deficiency, autosomal recessive" + }, + { + "baseId": "102585|447083|447197|447259|447260|447262|515055|515056|515105|556623|556625|556911|556913|558100|626766|626767|626768|626769|626770|626771|626772|626773|626774|626775|650580|706628|718155|718156|718157|731639|731640|731641|731643|745623|745624|761144|822654|822655|822656|822657|822658|822659|822660|822661|822662|822663|921619|921620|921621|930014|930015|930016|930017|939770|941426|941427|952044|952045|952046|960403", + "text": "Immunodeficiency 16" + }, + { + "baseId": "102595|141332|141334|141335|141336|141337|237492|237493|237494|237495|237496|237497|430044|962243|963178", + "text": "Arthrogryposis- oculomotor limitation-electroretinal anomalies syndrome" + }, + { + "baseId": "102600|492383|965960", + "text": "Fanconi renotubular syndrome 3" + }, + { + "baseId": "102607|102608|102609|102610|102611|181366|442548|481344|800961", + "text": "Long QT syndrome 15" + }, + { + "baseId": "102652", + "text": "Ectodermal dysplasia 7, hair/nail type" + }, + { + "baseId": "102879|102880|102881|102882|102883|102884", + "text": "X-linked amelogenesis imperfecta hypoplastic/hypomaturation 2" + }, + { + "baseId": "102898", + "text": "Spastic paraplegia 72, autosomal dominant" + }, + { + "baseId": "102899|102900|454575|691722|698800|749234|792752|830230|830231|830232|830233", + "text": "Spastic paraplegia 72, autosomal recessive" + }, + { + "baseId": "102917|102918|513982|550863|624853|677280|793297|920259", + "text": "Deafness, autosomal dominant 56" + }, + { + "baseId": "102927|102927|102929|102936|102937|205136|246920|359473|366339|366340|366531|366534|366536|366600|366603|366606|366608|367176|367190|405713|440069|443233|443235|443236|450794|450802|450997|451000|499897|500106|500142|511418|518154|518157|560567|560569|560571|561269|629787|629788|629789|629790|629791|629792|655441|691121|691122|695141|695142|697522|697523|697524|697525|697526|697527|697528|697529|697530|719823|719824|733424|733426|747563|747565|777266|779036|795220|805306|819150|826184|826185|826186|826187|826188|826189|826190|826191|826192|826193|826194|826195|826196|826197|826198|826199|826200|826201|826202|826203|826204|826205|826206|826207|826208|826209|826210|826211|826212|826213|826214|826215|826216|826217|826218|826219|826220|826221|826222|826223|826224|826225|826226|826227|851418|856168|905051|922689|922690|922691|931288|931289|931290|931291|931292|931293|931294|931295|931296|931297|931298|931299|931300|931301|931302|931303|931304|931305|931306|931307|931308|931309|931310|931311|931312|931313|931314|931315|931316|931317|931318|942792|942793|942794|942795|942796|942797|942798|942799|942800|942801|942802|942803|942804|942805|942806|942807|942808|942809|942810|942811|942812|953034|953035|953036|953037|953038|953039|953040|953041|953042|953043|953044|953045|959635|960470|960471|960472|963355|983852", + "text": "Short-rib thoracic dysplasia 10 with or without polydactyly" + }, + { + "baseId": "102927|102937|189171|189172|189173|189174|189175|246920|359473|366339|366340|366531|366534|366536|366600|366603|366606|366608|367176|367190|405713|440069|443233|443235|443236|450794|450802|450997|451000|499897|500106|500142|511418|518154|518157|560567|560569|560571|561269|629787|629788|629789|629790|629791|629792|655441|691121|691122|695141|695142|697522|697523|697524|697525|697526|697527|697528|697529|697530|719823|719824|733424|733426|747563|747565|777266|779036|795220|805306|819150|826184|826185|826186|826187|826188|826189|826190|826191|826192|826193|826194|826195|826196|826197|826198|826199|826200|826201|826202|826203|826204|826205|826206|826207|826208|826209|826210|826211|826212|826213|826214|826215|826216|826217|826218|826219|826220|826221|826222|826223|826224|826225|826226|826227|851418|856168|905051|905051|922689|922690|922691|931288|931289|931290|931291|931292|931293|931294|931295|931296|931297|931298|931299|931300|931301|931302|931303|931304|931305|931306|931307|931308|931309|931310|931311|931312|931313|931314|931315|931316|931317|931318|942792|942793|942794|942795|942796|942797|942798|942799|942800|942801|942802|942803|942804|942805|942806|942807|942808|942809|942810|942811|942812|953034|953035|953036|953037|953038|953039|953040|953041|953042|953043|953044|953045|959635|960470|960471|960472", + "text": "Retinitis pigmentosa 71" + }, + { + "baseId": "102928|102930|102931|102932|102933|102935|102937", + "text": "Short-rib thoracic dysplasia 10 without polydactyly" + }, + { + "baseId": "102934|102938", + "text": "Short-rib thoracic dysplasia 10 with polydactyly" + }, + { + "baseId": "102939|102940|102941|421690|788831|790826|919180", + "text": "Lenz-Majewski hyperostosis syndrome" + }, + { + "baseId": "102942|102943|102944|102945|102946|102947|102948|102949|102950|458405|458859|458868|458909|458911|458913|459395|459404|502690|524062|562828|563533|565332|565334|637768|692585|692586|695418|700812|700813|700814|711773|744351|751422|835550|835551|835552|835553|857649|934563|934564|955701|955702", + "text": "Short-rib thoracic dysplasia 11 with or without polydactyly" + }, + { + "baseId": "102955|513805|513806|513807", + "text": "Joubert syndrome with Jeune asphyxiating thoracic dystrophy" + }, + { + "baseId": "102956|102957", + "text": "Short-rib thoracic dysplasia without polydactyly" + }, + { + "baseId": "102959|102960|679888|679889|679890|679891", + "text": "Congenital dyserythropoietic anemia type type 1B" + }, + { + "baseId": "102963|102964|102965|102966|102967|102968|107270|107271|107272|107273|264568|373396|373397|373402|374053|374061|374064|374073|374483|374484|374485|376395|414412|414413|414414|414415|414416|414417|414418|414419|414420|414421|414422|414423|414424|414425|414426|433134|504732|504962|504974|505221|505227|505623|726022|799789|799790|799791|799792|799793|799794|799795|799796|801141|801142|801143|801144|801145|801146|801147|801148|801149|801150|801151|801152|801153|801154|801155|801248|801249|981893|981894|981895|981896|981897|981898|981899|981900|981901", + "text": "Pulmonary venoocclusive disease 2, autosomal recessive" + }, + { + "baseId": "102969|371518|372272|461218|461234|461236|461242|461430|461436|461440|461754|461757|461759|461762|462078|526286|526290|526297|526299|526331|526344|526347|526521|526523|526525|526530|526533|526535|526813|526818|526821|526827|564781|565926|565933|565934|567378|567379|567381|570734|570736|570741|570747|570748|570754|570760|640211|640212|640213|640214|640215|640216|640217|640218|640219|640220|640221|640222|640223|640224|652130|652333|652551|687805|693068|695530|695532|768521|768522|777921|796614|820392|820393|820394|838651|838652|838653|838654|838655|838656|838657|838658|838659|838660|838661|838662|838663|838664|838665|838666|838667|851443|921269|926301|926302|926303|926304|926305|926306|935644|935645|935646|935647|941003|947544|947545|947546|947547|956556|956557|956558|959998|959999|960000", + "text": "Hereditary sensory neuropathy type IF" + }, + { + "baseId": "103067|288925|446643|513939|514136|801217", + "text": "Hyperammonemia" + }, + { + "baseId": "103595|431539|514022|514142|590061", + "text": "Febrile seizures" + }, + { + "baseId": "103595", + "text": "Hepatosplenomegaly" + }, + { + "baseId": "103705", + "text": "Psoriasis" + }, + { + "baseId": "103972|104114|133431|360961|476220|679898|679899", + "text": "Dementia" + }, + { + "baseId": "104114|402131|514220", + "text": "Memory impairment" + }, + { + "baseId": "104456|676974|676975|676976|676977", + "text": "Night blindness, congenital stationary, type1i" + }, + { + "baseId": "104561|513994", + "text": "Abnormality of retinal pigmentation" + }, + { + "baseId": "104580", + "text": "Adult onset vitelliform dystrophy" + }, + { + "baseId": "105002|105199|438619", + "text": "Abnormal retinal morphology" + }, + { + "baseId": "105494|188910|188921|189101|406115|431799|967074", + "text": "Autosomal dominant retinitis pigmentosa" + }, + { + "baseId": "105565|105569|105571|105573|105575|190829|190830|314405|314406|314422|314440|314451|321046|321067|321070|327164|327176|327212|328209", + "text": "Iron Overload" + }, + { + "baseId": "105615", + "text": "BEST1-Related Disorders" + }, + { + "baseId": "106004", + "text": "leucovorin response - Toxicity/ADR" + }, + { + "baseId": "106207|361018|361019", + "text": "Prolonged bleeding time" + }, + { + "baseId": "106520|106521|125920|181448|208304|215521|227381|236971|237029|242507|242508|242509|242510|242511|242512|242512|242513|242514|242515|242516|242517|255881|255883|255884|255886|360300|361223|361223|361276|364067|374568|374571|374572|374578|374588|375442|375450|375456|375463|375464|375467|375477|375648|375652|375655|375669|375670|377779|377788|377798|377808|377812|384519|401330|401332|401340|401340|401341|401342|401343|401345|401349|401356|401358|401860|401861|401867|401868|401874|402122|402123|402125|409741|409744|415510|426181|426686|426686|426687|429847|429848|438018|445615|445617|445617|445618|445621|445622|445625|464847|465441|465453|465985|465991|465995|465999|466004|466008|466009|466017|466707|466711|466712|466714|466717|466718|466767|466770|466774|466783|466791|466996|466998|467000|505506|505767|505947|506504|529274|529276|530254|530256|530260|530270|530277|530280|530283|530291|530298|530356|530359|530552|530555|530561|530562|530770|530772|530773|536912|536912|536913|536914|567542|567543|567547|568339|568342|568346|568356|568358|568368|568371|569397|569399|569815|569817|570467|570470|570474|570477|570480|570481|570483|570483|570485|570491|570491|570544|570546|570551|570553|570555|574167|574168|574169|574170|574171|574172|574173|574174|577571|614429|644985|644986|644987|644988|644989|644990|644991|644992|644993|644994|644995|644996|644997|644998|644999|645000|645001|645002|645003|645004|645005|652481|652662|653150|653314|672099|677452|684627|684628|688658|688659|688661|690149|715087|771070|771071|776375|788071|792801|820877|820878|820879|820880|820881|820882|820883|820884|844334|844335|844336|844337|844338|844339|844340|844341|844342|844343|844344|844345|844346|844347|844348|844349|844350|844351|844352|844353|844354|844355|844356|844357|844358|844359|851681|852129|860286|927954|927955|927956|927957|927958|927959|927960|927961|937622|937623|937624|937625|937626|937627|949575|949576|949577|949578|949579|949580|949581|949582|949583|949584|949585|949586|949587|949588|957881|957882|957883|957884|957885|957886|960179", + "text": "Spinocerebellar ataxia, autosomal recessive 12" + }, + { + "baseId": "106528|106529|165532|178621|178622|221983|221984|221985|224395|227338|240821|240823|240824|240825|240826|240827|240828|240829|240830|240831|240832|397324|397334|397345|397346|397352|397353|397354|397363|397368|397373|397536|397545|397546|397551|397553|397554|397556|397559|397757|397759|397761|397763|397777|397779|397780|397790|397794|397868|397881|397888|397902|459540|459797|459799|460028|460030|460033|460036|460037|460040|460041|460052|460166|460168|460172|460176|460178|460180|460449|460451|460452|460458|460459|460461|460463|460913|460924|525103|525252|525255|525265|525266|525277|525418|525514|525515|525516|525727|525729|563503|563850|563856|563858|563863|563866|563868|563870|564422|564667|564674|564680|566392|569405|569732|569733|639051|639052|639053|639054|639055|639056|639057|639058|639059|639060|639061|639062|651970|651999|652003|652004|652115|652257|652320|652324|684187|684188|684189|684190|684191|684192|684193|687659|689984|724009|724010|775683|783659|790970|820226|820227|820228|820229|820230|837075|837076|837077|837078|837079|837080|837081|837082|837083|837084|837085|837086|837087|837088|837089|837090|837091|837092|837093|837094|837095|837096|837097|852263|858454|925884|925885|925886|925887|935123|935124|935125|935126|940962|946988|946989|946990|946991|946992|946993|946994|946995|956133|956134|956135|956136|959938|959939", + "text": "Arrhythmogenic right ventricular dysplasia, familial, 13" + }, + { + "baseId": "106531|106532|106533|626122|626123", + "text": "Ataxia, spastic, 3, autosomal recessive" + }, + { + "baseId": "106534|106535|375921|375926|376057|378200|409937|434661|468094|506320|506339|506351|506352|531269|569055|590637|645906|645907|645908|645909|645910|645911|652779|678073|678082|694086|704147|704148|715463|821043|845348|845349|845350|845351|937936|958113", + "text": "Neurodegeneration with brain iron accumulation 6" + }, + { + "baseId": "106538|106539|106540|106541|106542|106543|106544|106545|106546|106547|106548|214260|214261|214262|214263|214264|214265|214266|214267|214268|214269|359715|369545|369549|369551|370000|370018|370019|370327|370329|371952|407442|428857|428858|428859|432214|432215|439323|444301|457944|457945|458518|502504|502770|523686|523696|524001|524279|562486|562489|563043|564549|568053|568054|568055|568062|637369|637370|637371|655865|655866|655867|692520|692521|692522|700630|700631|711607|736742|751235|766880|777954|792679|801849|819974|819975|819976|819977|834985|834986|834987|834988|834989|834990|834991|834992|834993|834994|834995|834996|834997|834998|834999|835000|835001|835002|835003|835004|835005|835006|835007|835008|835009|835010|835011|835012|835013|835014|835015|835016|835017|835018|835019|835020|835021|852148|852150|852152|906393|925253|934400|934401|934402|934403|934404|934405|934406|934407|934408|934409|934410|934411|940112|946159|946160|946161|946162|946163|946164|946165|946166|946167|946168|946169|946170|946171|955488|955489|955490|955491|955492|955493|955494|959900|960657|970886", + "text": "Joubert syndrome 21" + }, + { + "baseId": "106549|106550|135986|136991|203228|203241|203242|237618|578528|614419|615945|965354", + "text": "Deafness, autosomal recessive 86" + }, + { + "baseId": "106551|106552|247172|264742|430244|430248|430250|430252|438117|468914|470351|470353|471044|491078|491080|496111|533174|574996|574997|611905|623589|626279|716561|728297|728298|757142|776893|778641|791940|847783|852876|929000|929001|938738|938739|950830|960294", + "text": "Mental retardation, autosomal recessive 41" + }, + { + "baseId": "106639|439358|517758|581741|695118|697385|906232", + "text": "Joubert syndrome 22" + }, + { + "baseId": "106640|106641|106642|106643|106644|964531", + "text": "Warburg micro syndrome 4" + }, + { + "baseId": "106646|247524|247525|247526|247527|247528|486778|581227|614497|798777|816009|964564|964737|971169|971603|976675|976702", + "text": "Mental retardation 49, X-linked" + }, + { + "baseId": "106647|190048|190049|247183|260237|264765|264912|377153|377155|377157|377169|377171|377179|377181|378228|378254|378258|378260|378267|378279|378297|378298|378309|378316|378321|378325|378439|378442|379758|379762|410838|410839|446299|446299|446300|469447|469452|470502|471008|471009|471473|471475|471477|507316|507320|507897|508279|508281|533641|533649|533694|533699|533984|534214|534216|571380|571387|571391|571393|572971|573625|573627|580570|580686|611435|614477|648796|648797|648798|648799|648800|648801|694596|705614|705615|705616|773200|773203|773205|788252|792002|818438|821344|848550|848551|848552|848553|848554|851853|858304|929254|929255|939038|939039|939040|939041|939042|951152|951153|951154|951155|958871|958872|958873|963920|971153", + "text": "Epileptic encephalopathy, early infantile, 33" + }, + { + "baseId": "106647|190049|264912|360502|446299|533694|818436|818437|818438", + "text": "EEF1A2-related developmental and degenerative epileptic-dyskinetic encephalopathy" + }, + { + "baseId": "106650|519725|624843|624844", + "text": "Cerebellar atrophy with seizures and variable developmental delay" + }, + { + "baseId": "106766|106767|106768|106769|106770|362382|460530|460534|460541|524923|525139|525288|525463|564486|566137|566140|566145|569470|638709|638710|638711|638712|652245|692769|712134|737322|798918|836600|836601|836602|836603|925735|925736|934943|946808", + "text": "Spastic paraplegia 45, autosomal recessive" + }, + { + "baseId": "106799|106800|106801|106802|106803|153652|205685|205686|274206|360505|553100|553104|622695|622696|622697|906039|919944|920424", + "text": "Schwannomatosis 2" + }, + { + "baseId": "106803|195650|243638|243639|274206|337612|337623|347191|351203|403784|404300|404323|404331|905964", + "text": "Schwannomatosis" + }, + { + "baseId": "106804|106805|106806|106807|153654|166309|166310|243566|538490", + "text": "Ataxia-hypogonadism-choroidal dystrophy syndrome" + }, + { + "baseId": "106810|106811|259938|424657|424658|904756", + "text": "Myopathy with extrapyramidal signs" + }, + { + "baseId": "106815|204348|226724|226725|226726|226727|238106|361523|442109|442138|442159|442168|536981|682833", + "text": "Lateral meningocele syndrome" + }, + { + "baseId": "106818|106819", + "text": "Essential pentosuria" + }, + { + "baseId": "106822|106823|106824|106825|106826|106827|106828|106829|106830", + "text": "Spondylometaphyseal dysplasia-cone-rod dystrophy syndrome" + }, + { + "baseId": "106836|206698|206699|427611|446977|446979|447032|447035|447040|514964|514980|556546|556579|556972|626568|626569|626570|690323|690324|690328|690329|690331|690332|690333|694998|731561|822491|822492|921562|921563|929947|929948|941364|941365|952008", + "text": "Spastic paraplegia 63, autosomal recessive" + }, + { + "baseId": "106837|106838|360923|461176|461178|525820|525822|525970|538416|552356|626199|639330|639331|692904|692905|692906|692907|791018|791019|837528|837529|837530|837531|947161|956291", + "text": "Spastic paraplegia 64, autosomal recessive" + }, + { + "baseId": "106840|465134|465810|530071|567469|569576|652512|693800|693801|703534|820775|927581|937254", + "text": "Spastic paraplegia 61, autosomal recessive" + }, + { + "baseId": "106842|136319|224698|224699|224700|224701|224702|427971|427973|427974|427977|427978|427980|450174|450176|450349|450371|450374|450375|482304|495391|517481|517599|517766|538959|557804|559514|559516|629252|629253|629254|629255|677412|690995|690996|690998|690999|691000|691001|691002|695113|695114|695115|697227|759083|762757|790145|790146|825535|825536|825537|903514|922502|922503|970731|970732", + "text": "Mental retardation, autosomal recessive 42" + }, + { + "baseId": "107055|514019", + "text": "Connective tissue nevi" + }, + { + "baseId": "107137", + "text": "COL3A1-Related Disorder" + }, + { + "baseId": "107245|514122|535051|574322", + "text": "Retinitis pigmentosa 23" + }, + { + "baseId": "107246|107247|107248|107249", + "text": "Richieri Costa-Pereira syndrome" + }, + { + "baseId": "108167|971170", + "text": "Deafness, X-linked 6" + }, + { + "baseId": "108185", + "text": "Congenital disorder of glycosylation type 1w" + }, + { + "baseId": "108187|167509|457850|458503|458505|458506|458914|458915|523888|523894|524145|524152|524157|524164|524168|524170|524171|524183|538400|538401|562418|565120|565125|565127|565133|567925|622392|637203|637204|637205|637206|637207|637208|637209|637210|637211|637212|637213|637214|637215|637216|651787|651799|651896|700592|711537|711539|723106|730576|736671|736673|736674|744493|751163|751164|751165|751166|751167|751168|783110|790802|834757|834758|834759|834760|834761|834762|834763|834764|834765|834766|852138|925202|925203|934311|934312|934313|934314|934315|934316|946069|946070|946071|946072|946073|946074|955413|955414|959893|959894", + "text": "Immunodeficiency 15" + }, + { + "baseId": "108188|108189|108190|167428", + "text": "Palmoplantar keratoderma, nagashima type" + }, + { + "baseId": "108191|367105|367355|367367|367369|500186|500433|500436|513534|576105|631167|631168|691371|720400|734020|744058|827894|953430", + "text": "Congenital disorder of glycosylation type 1x" + }, + { + "baseId": "108192|538388", + "text": "Combined oxidative phosphorylation deficiency 19" + }, + { + "baseId": "108807|108810|108820|171256|171256|389522|405724|450891|451002|451185|451188|518198|518199|518201|518203|518205|518206|518208|518213|518218|518256|518323|518327|518328|538349|558083|558085|558087|558089|558452|558454|558456|560629|561506|561507|561520|561522|561525|561526|561528|629967|629968|629969|629970|629971|629972|629973|629974|629975|629976|629977|629978|629979|629980|629981|629982|629983|629984|629985|629986|629987|629988|629989|629990|629991|629992|708244|708245|719852|719853|719854|719855|733451|733453|743937|747604|747605|747607|747608|763200|763202|763203|763205|763207|774839|781316|781319|819018|819168|826439|826440|826441|826442|826443|826444|826445|826446|826447|826448|826449|826450|826451|826452|826453|826454|826455|826456|826457|826458|826459|826460|826461|826462|826463|826464|922759|922760|922761|922762|922763|922764|931395|931396|931397|931398|931399|931400|931401|942907|942908|942909|942910|942911|942912|942913|942914|942915|953087|953088", + "text": "Familial cold autoinflammatory syndrome 4" + }, + { + "baseId": "108807|108810|108820|152952|166229|171256|361176|389522|405724|450891|451002|451185|451188|518198|518199|518201|518203|518205|518206|518208|518213|518218|518256|518323|518327|518328|538349|558083|558085|558087|558089|558452|558454|558456|560629|561506|561507|561520|561522|561525|561526|561528|629967|629968|629969|629970|629971|629972|629973|629974|629975|629976|629977|629978|629979|629980|629981|629982|629983|629984|629985|629986|629987|629988|629989|629990|629991|629992|708244|708245|719852|719853|719854|719855|733451|733453|743937|747604|747605|747607|747608|763200|763202|763203|763205|763207|774839|781316|781319|819018|819168|826439|826440|826441|826442|826443|826444|826445|826446|826447|826448|826449|826450|826451|826452|826453|826454|826455|826456|826457|826458|826459|826460|826461|826462|826463|826464|922759|922760|922761|922762|922763|922764|931395|931396|931397|931398|931399|931400|931401|942907|942908|942909|942910|942911|942912|942913|942914|942915|953087|953088|977190", + "text": "Autoinflammation with infantile enterocolitis" + }, + { + "baseId": "125776", + "text": "Coronary heart disease 2" + }, + { + "baseId": "125778", + "text": "Alzheimer disease familial 3, with spastic paraparesis" + }, + { + "baseId": "125779|227803|227805|362510", + "text": "efavirenz response - Metabolism/PK" + }, + { + "baseId": "125790|125791|264545|361846|788885|903601|972794", + "text": "Mental retardation, autosomal recessive 27" + }, + { + "baseId": "125797|214840|247162|411594|411595|411596|446084|469650|470046|470056|470631|481411|532887|533299|533300|539088|570679|572352|572354|572360|573033|573039|574939|647943|647944|647945|647946|647947|647948|653159|694378|694379|694382|694383|694385|694390|694391|694392|704920|704922|704924|728109|772587|786138|797786|958599|964889|964890", + "text": "Spastic paraplegia 75, autosomal recessive" + }, + { + "baseId": "125798", + "text": "Morbid obesity and spermatogenic failure" + }, + { + "baseId": "125809|125810", + "text": "Auriculocondylar syndrome 3" + }, + { + "baseId": "125811|125812|583099", + "text": "Question mark ears, isolated" + }, + { + "baseId": "125813|243979|243980|538976", + "text": "Spinocerebellar ataxia, autosomal recessive 15" + }, + { + "baseId": "125814|125815|125816|260667|260668|260669", + "text": "Poikiloderma, hereditary fibrosing, with tendon contractures, myopathy, and pulmonary fibrosis" + }, + { + "baseId": "125818", + "text": "Alzheimer disease 19" + }, + { + "baseId": "125820|125821|125822|125823|125824|125825|125826|125827|125828|125829|125830|125831|125832|125833|125834|125835|125836|125837|125838|125839|136532|136533|136534|136535|136536|136537|136538|136539", + "text": "Hypotension" + }, + { + "baseId": "125893|125894|125895|125896|125897|125898|125899|125900|125901|187231|361950|361951|361952|410908|424224|469882|470901|470902|471318|471794|513147|534040|534044|534047|534048|534049|534050|534051|534052|534054|534145|534147|534148|534594|534601|534602|571688|571696|573197|573247|573248|573253|573258|573261|573261|573916|573943|578008|613422|649163|649164|649165|649166|649167|649168|649169|649170|649171|649172|649173|649174|649175|649176|649177|653187|653220|717282|717283|728999|729000|729001|742730|786543|789391|849008|849009|849010|849011|849012|849013|849014|849015|849016|849017|849018|849019|849020|849021|849022|853013|929393|929394|929395|939180|939181|939182|939183|939184|939185|939186|941270|941271|951310|951311|951312|951313|951314|951315|951316|951317|951318|951319|951320|951321|961988|961989", + "text": "Polyarteritis nodosa, childhoood-onset" + }, + { + "baseId": "125920|178425|178426|178427|178428|178429|178430|181448|242512|265448|361000|361001|401340|426686|445617|486154|486667|536912|570483|570491|613979|613980|614124|614429|622914|677452|792801|801578|802014|860287|904200|919677|919678|920363|964457|966172", + "text": "Epileptic encephalopathy, early infantile, 28" + }, + { + "baseId": "125922|791022|919312|970927|976011", + "text": "Coloboma, ocular, with or without hearing impairment, cleft lip/palate, and/or mental retardation" + }, + { + "baseId": "130975|130977|130978|226421|226422|226423|226424|226425|226426|226427|226428|226429|488160|513209|513643|538466|590083|788909|970529", + "text": "Hyperphosphatasia with mental retardation syndrome 4" + }, + { + "baseId": "130979|133699", + "text": "Mitochondrial complex 4 deficiency, nuclear type 12" + }, + { + "baseId": "130980|130984|354177|360301|375541|679693|976730|976731|976732|976733", + "text": "Foveal hypoplasia 2" + }, + { + "baseId": "130980|679693|800923|800924|800925", + "text": "Foveal hypoplasia" + }, + { + "baseId": "130981|130982", + "text": "FOVEAL HYPOPLASIA 2 WITH OPTIC NERVE MISROUTING AND ANTERIOR SEGMENT DYSGENESIS" + }, + { + "baseId": "130983", + "text": "FOVEAL HYPOPLASIA 2 WITH OPTIC NERVE MISROUTING" + }, + { + "baseId": "130985|130986", + "text": "Foveal hypoplasia 2 and optic nerve misrouting with or without anterior segment dysgenesis" + }, + { + "baseId": "130987|130988|407794|790933|802171", + "text": "Bone marrow failure syndrome 2" + }, + { + "baseId": "131565", + "text": "Microprolactinoma" + }, + { + "baseId": "131815|131817|131818|131819|131820|131821|131823|131824|131826|131827|195422|195423|195754|207940|207940|207941|214315|214317|214753|214754|254446|254450|316256|316266|316267|316270|316272|316273|316274|323604|323608|323609|323618|323621|323623|323629|329742|329750|329751|329753|329759|329767|329768|329769|331021|331022|331024|331025|331028|331039|353213|684311|869457|869458|869459|869460|869461|869462|869463|869464|869465|869466|869467|869468|869469|869470|869471|869472|869473|869474|869475|869476|869477|869478|869479|872201|872202|872203|872204", + "text": "Joubert syndrome 24" + }, + { + "baseId": "131847|131854|131863|131864|131882|131884", + "text": "Coffin Siris/Intellectual Disability" + }, + { + "baseId": "131912|539026|906285", + "text": "Bardet-Biedl syndrome 18" + }, + { + "baseId": "131927|440822|519372|563013|563020", + "text": "Chilblain lupus erythematosus" + }, + { + "baseId": "131928", + "text": "ADAR-Related Disorders" + }, + { + "baseId": "131960|226766|360884|423236|679896|857382", + "text": "Premature ovarian failure 8" + }, + { + "baseId": "131961|131962|131963|131964|552292|983926", + "text": "Premature ovarian failure 9" + }, + { + "baseId": "131974|131975|131976|131977|578413", + "text": "Retinitis pigmentosa 68" + }, + { + "baseId": "131982", + "text": "Sea-blue histiocyte syndrome" + }, + { + "baseId": "132016", + "text": "repeat number of microsatellite" + }, + { + "baseId": "132017|132018|132019|132020|213562|215770|215771|362143|404770|432229|432230|443836|511613|535702|550358|550359|612714|653870|653871|788787|801989|815960|815984|916962|918983|918984|920215|964264|964265|964823|973096|976651", + "text": "Bosch-Boonstra-Schaaf optic atrophy syndrome" + }, + { + "baseId": "132026|790790", + "text": "Renal hypodysplasia/aplasia 2" + }, + { + "baseId": "132046|132047|132048", + "text": "Short stature, auditory canal atresia, mandibular hypoplasia, and skeletal abnormalities" + }, + { + "baseId": "132051", + "text": "Palmoplantar keratoderma, nonepidermolytic, focal or diffuse" + }, + { + "baseId": "132052|132053|132054|132055|132056", + "text": "Dowling-degos disease 4" + }, + { + "baseId": "132074", + "text": "Sacral agenesis with vertebral anomalies" + }, + { + "baseId": "132091|133192|137764|137766|137769|152479|183392|260102|337250|360833|361023|430996|434681|575761|575762|575764|575765|575766|575767|575768|575769|575770|575771|575772|575773|575774|575775|575776|575777|575778|575779|575780", + "text": "Hereditary cancer" + }, + { + "baseId": "132103|132104|132133|132167|132191|132191|132204|132225|132237|132239|132250|132251|132267|133574|133576|133581|133585|133593|133601|133601|150777|151423|151688|152122|153698|180742|180754|184239|186220|186222|213153|235267|235276|242362|389266|389282|389283|401785|409517|409519|466178|477493|477581|478191|569950|967155|967208", + "text": "Pancreatic cancer 3" + }, + { + "baseId": "132236|243618|432417|622843", + "text": "Anaplastic ependymoma" + }, + { + "baseId": "132360|238133", + "text": "Atrial standstill 2" + }, + { + "baseId": "132377|132378|132379|132380|132381|132382|132383|132384|132385|132386|132387|132388|132389|132390|132391|132392|132393|132394|132395|132396|132397|132398|132399|132400|132401|132402|243921|243922", + "text": "Calcium oxalate urolithiasis" + }, + { + "baseId": "132418", + "text": "Palmoplantar keratoderma, mutilating, with periorificial keratotic plaques, X-linked" + }, + { + "baseId": "132462|132466|136585|136586", + "text": "Pseudoexfoliation glaucoma" + }, + { + "baseId": "132580|360047|445221", + "text": "Lamellar ichthyosis" + }, + { + "baseId": "132582|132583", + "text": "Eculizumab, poor response to" + }, + { + "baseId": "132584|132585|132585|132586|201860|201865|214535|225873|243934|259818|389307|406687|614283|788774|798557|801988|858342|858517|918940|970132|980888", + "text": "Epileptic encephalopathy, early infantile, 19" + }, + { + "baseId": "132590|169294|360182|577560|976666", + "text": "Polymicrogyria, bilateral perisylvian, autosomal recessive" + }, + { + "baseId": "132597|132598|132599|375543|375557|375561|550055|550057|567550|568448|570611|715160|726873|801554|820899|820900|844452|844453|844454|844455|844456|927995|960182|961877", + "text": "Carbonic anhydrase VA deficiency, hyperammonemia due to" + }, + { + "baseId": "132603|132604|132605|550317|550318|550319|550320|970788", + "text": "Moyamoya disease 6 with achalasia" + }, + { + "baseId": "132609|132610|207399|213570|359747|369087|406855|511651|623289|788796|802162|964271|967268", + "text": "Cortical dysplasia, complex, with other brain malformations 5" + }, + { + "baseId": "132611|132612|132613|132614|132615|217224|217225|380441|424628|428233|431907|431908|443526|481310|511024|611386|611464|611599|653862|653863|653864|788768|798538|798539|800395|806434|806435|905858|918862|961602|963548|963549|963550|963551|963552|964742|980321|983861", + "text": "Mental retardation, autosomal dominant 23" + }, + { + "baseId": "132623|132624|132625|132626|239239|239241|361614|361615|367282|367651|393595|393614|393635|393638|393642|393643|393651|393652|393841|393847|393848|394043|394047|406334|414945|414946|440823|443487|443492|452488|452740|452744|452747|452750|452771|452773|452774|452776|452807|452810|452813|452815|452834|452837|453027|453040|519373|519378|519382|519384|519385|519386|519388|519390|519400|519403|519565|519567|519570|519575|519586|519607|519609|519611|519622|536649|559020|559022|559024|559026|559028|559030|559550|559552|559554|559556|559558|559560|559562|561642|561644|561646|561648|563026|563041|563046|563048|563053|563054|614266|622501|801799|816450|828257|828258|828259|828260|828261|828262|828263|828264|828265|828266|828267|828268|828269|828270|828271|828272|828273|828274|828275|828276|828277|828278|828279|828280|828281|828282|828283|828284|828285|828286|828287|828288|828289|828290|828291|828292|828293|828294|828295|828296|850948|850950|851394|923243|923244|923245|923246|923247|923248|923249|923250|923251|923252|923253|923254|923255|931996|931997|931998|931999|932000|932001|932002|939947|939948|940758|943599|943600|943601|943602|943603|943604|943605|943606|943607|943608|953516|953517|953518|953519|953520|953521|953522|965441|973019", + "text": "Microcephaly, progressive, with seizures and cerebral and cerebellar atrophy" + }, + { + "baseId": "132633|447773|447781|447972|448104|515775|515788|515896|515897|557023|557252|557293|558475|627749|627750|627751|627752|627753|707348|718916|732390|761871|761872|761874|780671|787145|792716|823870|823871|823872|823873|823874|823875|823876|823877|823878|851297|930464|930465", + "text": "Immunodeficiency 22" + }, + { + "baseId": "132638", + "text": "Common variable immunodeficiency 11" + }, + { + "baseId": "132640|858770", + "text": "Atrial fibrillation, familial, 15" + }, + { + "baseId": "132641|132642|132643|132644|132645|132646|132647|132648|171813|208300|429838|429839|429840|512989|612194", + "text": "Spinocerebellar ataxia, autosomal recessive 16" + }, + { + "baseId": "132663|552604|636201|636202|636204", + "text": "Baraitser-Winter syndrome" + }, + { + "baseId": "132671", + "text": "Congenital neutropenia" + }, + { + "baseId": "132673|132674|132675|237527|432213|790608|798573|964827|965966", + "text": "Cortical dysplasia, complex, with other brain malformations 6" + }, + { + "baseId": "132683|676996|676997|676998|800944", + "text": "Oocyte maturation defect 1" + }, + { + "baseId": "132690|132691|132692|132693|132694|132695|415474|569572|610576|610577|610578|610579|965349", + "text": "Desbuquois dysplasia 2" + }, + { + "baseId": "132705|132706|223356|223357|613847|964812", + "text": "Short stature with microcephaly and distinctive facies" + }, + { + "baseId": "132722", + "text": "Fetal hemoglobin quantitative trait locus 5" + }, + { + "baseId": "132722|247743|247744|247745|247747|247748|414892|495129|511432|550587|614250|621020|621021|822304|961508|964204|964205|976647|980412", + "text": "Intellectual developmental disorder with persistence of fetal hemoglobin" + }, + { + "baseId": "132725|346275|626283|886665", + "text": "Cerebral amyloid angiopathy, APP-related" + }, + { + "baseId": "132920", + "text": "Malignant Glioma" + }, + { + "baseId": "132977|184734|453098|678053|678054|778476", + "text": "Ewing's sarcoma" + }, + { + "baseId": "132980|587562", + "text": "Osteoblastic osteosarcoma" + }, + { + "baseId": "133154|133499|399557|557265|611997|612009", + "text": "B Lymphoblastic Leukemia/Lymphoma, Not Otherwise Specified" + }, + { + "baseId": "133167|151083|235612", + "text": "Acute monoblastic leukemia" + }, + { + "baseId": "133167|151083|235612", + "text": "Acute monocytic leukemia" + }, + { + "baseId": "133177|140203|151416|179958|181812", + "text": "Triple-Negative Breast Cancer Finding" + }, + { + "baseId": "133389|138836|138849|177907|193750|195485|215434|223603|223605|223606|223607|223608|223609|223610|223611|223612|223613|223614|223615|223616|223617|223618|223619|223620|223622|223623|223624|223625|223626|223628|223630|223631|223632|223634|223635|223636|223638|223640|223641|223642|223644|223645|223646|223647|223648|223649|223650|223652|223654|223655|223656|223657|254136|254993|273131|274286|313856|313857|313862|313863|313867|313872|313873|313874|313877|313885|313886|313888|313889|320061|320069|320071|320080|320084|320087|320102|320108|320111|320114|320134|320135|320138|320142|320143|320145|320146|320147|320163|320166|320167|320197|320198|320746|320750|320757|320760|320761|326222|326244|326245|326246|326248|326251|326252|326255|326256|326257|326258|326270|326272|326273|326276|326277|327197|327203|327206|327207|327214|327222|327223|327224|327241|327242|327259|327263|327273|327276|327282|327283|329585|329589|329597|329598|329623|329626|331967|336213|336214|336218|338110|338117|338126|347551|347555|347559|348927|431507|439068|464179|512941|568146|612908|642521|642522|652322|652873|693514|714179|791415|841561|841562|841563|841564|841565|867820|867821|867822|867823|867824|867825|867826|867827|867828|867829|867830|867831|867832|867833|867834|867835|867836|867837|867838|867839|867840|867841|867842|867843|867844|867845|867846|867847|867848|867849|867850|867851|867852|867853|867854|867855|867856|867857|867858|867859|871971|871972|871973|871974|871975|871976|871977|871978|871979|871980|871981|871982|927105|936641|936642|948590|948591|957240", + "text": "Anophthalmia-microphthalmia syndrome" + }, + { + "baseId": "133390|227046|227047|227048|227051|227052|227054|227055|227058|320697|329500|329501|329502|336096|336097|336106|336109|336135|338009|338016|338023|970271|970321", + "text": "Orofacial cleft" + }, + { + "baseId": "133391|133400|590610|609036|609079|677241|974932", + "text": "Oligodontia" + }, + { + "baseId": "133431|476220|801188", + "text": "Depressivity" + }, + { + "baseId": "133488|133495|478800|478922|478937", + "text": "Prostate cancer, hereditary, 9" + }, + { + "baseId": "133499", + "text": "Leiomyosarcoma" + }, + { + "baseId": "133499|470586|590073", + "text": "Inflammation of the large intestine" + }, + { + "baseId": "133499|470586|590073", + "text": "Hematochezia" + }, + { + "baseId": "133499|470586|590073|977163|977164|977313|977314|977316", + "text": "Colitis" + }, + { + "baseId": "133593|214804|214805", + "text": "Triple-negative breast cancer" + }, + { + "baseId": "133658|152476|467801", + "text": "Hereditary site-specific ovarian cancer syndrome" + }, + { + "baseId": "133667|150563", + "text": "RAD51C-Related Disorders" + }, + { + "baseId": "133687|133688|133689|133690|242183|242184|264906|401052|439469|465383|538448|538612|589805|643756|688520|754812|816481|842943|842944|842945|904258|927514|949120|957574", + "text": "Congenital heart defects, multiple types, 4" + }, + { + "baseId": "133696|133697|133698|801541", + "text": "Retinitis pigmentosa 69" + }, + { + "baseId": "133699|801126|801127", + "text": "Congenital lactic acidosis" + }, + { + "baseId": "133709|133710|427722", + "text": "Nemaline myopathy 3, autosomal dominant or recessive" + }, + { + "baseId": "133722|133724|140000|140002|140008|140290|140291|140292|140293|140296|140297|171737|171767|210625|210635|211434|211440|211441|211443|264339|264446|265652|279404|279416|279417|279418|279653|279654|279673|279677|279683|279702|279707|280918|280926|280931|280932|280933|280934|281064|281074|281076|281088|281089|281092|281094|281095|281105|290322|290351|294447|294852|294944|309183|309185|309188|309197|309201|309206|309208|309210|309213|309215|309219|309222|309226|309227|313903|313906|313908|313916|314804|319783|319784|319785|319786|319787|319794|319796|319797|319807|319812|319813|319819|319821|319822|320320|320327|320331|320332|320334|320336|321710|327636|328699|328731|330959|330996|337760|353096|371494|415211|502732|620340|620415|654425|865239|865240|865241|865242|865243|865244|865245|865246|865247|865248|865249|865250|865251|865252|865253|865254|865255|865256|865257|865258", + "text": "Autosomal recessive cerebellar ataxia" + }, + { + "baseId": "133723|139997|140001|140005|210635|210646|279405|279408|279409|279410|279414|279653|279657|279714|279715|280919|280920|280930|280933|280934|280935|280949|280950|280952|281067|281075|281087|281094|281096|281105|353096", + "text": "Coenzyme Q10 deficiency, Spinocerebellar Ataxia Type" + }, + { + "baseId": "133851|465261|539061|919581|919582", + "text": "Stuttering, familial persistent 1" + }, + { + "baseId": "133912|133913|133916|133918|133918|133921|133923|133925|191276|206728|206730|249528|249529|277309|277326|277331|277511|277512|277520|277530|277544|277547|277550|277554|278381|278382|278390|278392|278393|278410|278413|278414|361791|361792|361793|361794|361795|364534|437799|447270|447277|447278|447279|447369|447410|447418|447421|447430|447466|447469|447471|447476|447484|492028|515262|515264|515265|515274|515276|515306|515315|515351|515352|515354|536569|537080|549502|556682|556684|556686|556688|556737|556739|556741|557034|557036|557038|558222|558224|558226|558228|558230|558232|558234|576078|576438|576441|578778|578784|578790|578793|578794|578803|578804|578811|584195|614196|614197|614198|614199|614200|627059|627060|627061|627062|627063|627064|627065|627066|627067|627068|627069|627070|627071|627072|627073|627074|627075|627076|650536|650592|690409|690412|690415|695016|695017|695019|696253|696254|696256|718381|729937|731862|794490|822980|822981|822982|822983|822984|822985|822986|822987|822988|822989|822990|822991|822992|851237|858872|861588|861603|862772|921739|921740|921741|930152|930153|930154|930155|941568|941569|941570|941571|941572|952138|952139|970664", + "text": "Spastic paraplegia 78, autosomal recessive" + }, + { + "baseId": "134067|153138|214797|248716|248717|248718|248720|248721|248722|248723|248725|248726", + "text": "Smith-Magenis Syndrome-like" + }, + { + "baseId": "134329|247629|247631|481312|481313|788839|802172|964839|964840|969252|973028", + "text": "Spinocerebellar ataxia, autosomal recessive 17" + }, + { + "baseId": "134370|134371|134374|134375|134376|134377|134378|134379|134380|134382|134383|134384|134385|134386|134387|134388|134389|134390|134391|134744|134745|134746|134747|134748|134749|134750|135818|135819|191403|191807|192104|192643|192971|194228|194619|195513|208055|208056|208057|208058|208060|208062|208063|208065|208080|208083|211852|241764|241769|241770|241772|241773|241774|241775|241776|244872|244875|244877|244885|269783|270736|271447|273633|273697|290468|290473|290676|290677|290678|290681|290682|290705|290713|290716|290717|290722|290723|290724|290730|290769|290777|290850|290852|290853|290857|290859|290864|290874|290876|290881|290883|290884|290898|290921|290929|290930|290935|291359|291366|291368|291370|291610|291612|291613|291614|291616|291631|291634|291637|291638|291659|291690|291804|291819|291822|291824|291825|291826|291829|291831|291842|291843|291844|291860|291861|291867|291869|294596|294788|294791|294792|294798|294804|294809|294834|294841|294849|294851|294858|294870|294881|294913|294987|294990|294996|294998|295004|295006|295010|295014|295017|295018|295019|295031|295035|295090|295092|295133|295134|295145|295146|295184|295194|295195|295201|295212|295213|295214|295216|295219|295220|295221|295244|295247|295250|295278|295360|295364|295365|295367|295387|295390|295391|295403|295440|295442|295444|295448|295449|295450|295452|295454|295458|295460|314745|314758|314765|314766|314768|314769|314773|314777|314784|314785|314786|314790|314793|314796|314797|314801|314803|314804|314810|314812|314814|318796|318797|318808|320125|320127|320129|320133|320136|320139|320141|320150|320151|320152|320153|320157|320169|320170|320171|320175|320177|320179|320180|320185|320188|320192|320194|321466|321471|321474|321475|321487|321496|321497|321499|321503|321514|321516|321517|321519|321524|321528|321543|321546|322533|327154|327155|327156|327175|327601|327602|327604|327605|327608|327615|327618|327627|327628|327630|327631|327633|327634|327636|327638|327641|327643|327644|327646|327648|327650|328661|328671|328674|328678|328687|328689|328693|328694|328698|328701|328702|328706|328711|328715|328719|328720|328722|328723|328724|328725|328727|328728|328729|328730|328731|328733|328735|328738|328742|328743|328745|331889|333294|333300|333302|334858|334880|334982|335003|335012|335014|335029|335329|335332|335333|335337|335339|335340|335347|335351|335352|335353|335354|335355|337184|337203|337208|337210|337211|337213|337220|337222|337241|337247|337249|340964|340967|344752|344754|347879|349344|349709|349717|349719|350354|350701|350714|353320|353476|353477|360956|372921|372953|373589|373596|373963|373973|375800|375814|375821|399527|440800|440809|440811|440812|440820|441640|463468|463518|463781|463784|494949|504329|504375|504609|504899|504900|504903|527926|528406|572635|576738|576742|576760|577345|656218|656223|667162|684426|688189|708880|720472|720473|734086|739119|748286|763917|776244|793015|793016|793021|822094|841049|871609|871610|871611|871612|871613|871614|871615|871616|871617|871618|871619|871620|871621|871622|871623|871624|871625|871626|871627|871628|871629|871630|871631|871632|871633|871634|871635|871636|871637|871638|871639|871640|871641|871642|871643|871644|872350|872351|872352|888973|888974|888975|888976|889096|889097|889098|889099|889100|889101|889117|889118|889119|889120|889121|889122|889123|889124|889143|889144|889177|889223|889224|889225|889226|889227|889228|889229|889230|889231|889232|889233|889234|889235|889236|889242|889243|889244|889245|889246|889247|889248|889249|889250|889251|889252|891654|891655|891656|891657|891658|891659|891660|891661|891662|891673", + "text": "Autosomal dominant cerebellar ataxia" + }, + { + "baseId": "134459|134460|134461|134462|134463|134464|134465|134466|187995|188003|188007|191753|193374|237323|247041|271456|310384|310391|310392|310405|310413|310414|310463|315483|315490|315526|315555|321491|321510|321549|321588|322273|322279|322288|322302|322309|322331", + "text": "COFS syndrome" + }, + { + "baseId": "134655|134656|134657|134658|134659|440927|614542|806437|973086", + "text": "Spinocerebellar ataxia, autosomal recessive 13" + }, + { + "baseId": "134685|206704|253897|276016|276066|276120|276123|276126|276148|276158|276161|276168|276342|276343|306342|306348|317077|317092|323092|323668|323700|335448|335486|335509|335512|335513|335524|345258|345295|345298|349979|349993|350002|350003|350004|351012|351014|351015|351017|351019|351023", + "text": "Hyperinsulinism, Dominant" + }, + { + "baseId": "134822|134823|186088|192927|212626|221753|273689|304117|304124|307707|307719|307730|307735|307738|312746|312877|312886|361439|369691|371499|395886|396284|425775|457807|457808|486611|489373|522984|567360|636578|683972|683974|683975|683976|685233|685234|685236|687181|687182|692345|722840|782989|796116|819944|834108|834109|834110|834111|834112|834113|925008|925009|925010|925011|934087|934088|945849|955287", + "text": "Ritscher-Schinzel syndrome" + }, + { + "baseId": "134861|417075|417076|417077", + "text": "Scoliosis, isolated, susceptibility to, 1" + }, + { + "baseId": "135260|204050|204058|204060|205063|205064|205065|205066|225830|225859|227709|227710|265017|361243|362167|362168|362169|411341|411343|422478|431935|431936|446655|495899|512673|513483|535712|538512|550376|550377|611947|621036|622493|625834|653902|653903|653904|654144|677469|682836|792450|792451|792452|798813|798814|861019|861021|861022|861023|920023|920024|920025|963971|963972|963973|964609|964610|964611|964902|966025|975877|976686|977374|980557", + "text": "Mental retardation, X-linked 102" + }, + { + "baseId": "135345|135347|135348|135349|135350|135354|135355|135356|135358|135360|135363|257446|315309|315310|322157|322158|329503|329528|329543|329552|336425|336432|336446|336457|336462|346145|346164|346165|346167|346171|346174|350463|350466|350478|350481|351516|351519|351522|351533|351538|351539|353587", + "text": "Early Infantile Epileptic Encephalopathy, Autosomal Recessive" + }, + { + "baseId": "135440|236995|237246", + "text": "EEG abnormality" + }, + { + "baseId": "135489|135493|136058|136059|136060|136061|136063|136067|136068|136070|136071|136075|136076|136077|136078|136080|136081|136082|136084|136085|136086|136088|207507|207520|207521|207522|207524|207526|292124|292126|296847|296865|296883|297972|297982|300127|300148|300176|300177|300181|304384|304385|304392|304393|304421|304427|304431|304440|304444|304452|304454|304455|304715|304717|304719|308148|308150|308153|308154|308162|308168|308175|308181|308192|308202|308207|308208|311944|313174|313176|313180|313181|313204|313212|313230|313231|313259|313260|313266|313273|313274|313275|313276|313287|313289|313290|313310|313318|313319|313321|313324|317624|318067|353664|353853", + "text": "Intellectual Disability, Recessive" + }, + { + "baseId": "135500|788841", + "text": "Pancreatic agenesis 2" + }, + { + "baseId": "135506|135513|279278|279286|279295|279301|279343|279491|279493|279494|279509|279534|279535|280795|280799|280804|280813|280845|280860|280873|280874|280875|280878|280923|280958|281836|281837|281838|284108|284129|284307|310250|315334|315350|315390|321364|321996|322000|322047|322051|353539", + "text": "Warburg micro syndrome" + }, + { + "baseId": "135641|217210|217211|217212|217213|552213|553352|919805|919806|966005", + "text": "Microcephaly, short stature, and polymicrogyria with or without seizures" + }, + { + "baseId": "135699|139369|202181|202713|205018|247612|274242|408707|429438|538432|571890|614378|677439|677440", + "text": "Seizures, benign familial infantile, 5" + }, + { + "baseId": "135764|135765|135766|265447|277092|277098|277101|277102|277109|277129|277131|277132|277134|277142|277367|277368|277371|277386|277388|277391|277392|277399|277400|277407|277414|278152|278186|278187|278202|278207|278216|278218|278225|278230|278232|278233|278234|278245|278255|434561", + "text": "Thiamine-responsive megaloblastic anemia" + }, + { + "baseId": "135802|377861|422425|649762|649770|684964|778515|849730|980090", + "text": "Creatine deficiency syndrome 1" + }, + { + "baseId": "136004|512821|553248|622363", + "text": "Spinocerebellar ataxia type 17" + }, + { + "baseId": "136063|963646", + "text": "Intellectual disability-obesity-brain malformations-facial dysmorphism syndrome" + }, + { + "baseId": "136139|136140|141576|141581|141582|141583|142784|142785|142787|142788|142789|142790|142791|211976|338584|348160|348167|348169|351827|351828|351830|351831|351832|352680|352681", + "text": "Fatal Infantile Cardioencephalomyopathy" + }, + { + "baseId": "136364|513893", + "text": "Chronic pancreatitis" + }, + { + "baseId": "136391", + "text": "Mitochondrial complex 1 deficiency, nuclear type 28" + }, + { + "baseId": "136399", + "text": "Hearing loss, noise-induced, susceptibility to" + }, + { + "baseId": "136450|139869|339313|345189|345477|345487|345517", + "text": "Breast and Ovarian Cancer Susceptibility" + }, + { + "baseId": "136501|138844|186099|186108|186113|209861|212720|221873|221902|240679|240690|397026|397440|397495|397507|448122|448169|455980|474983|475013|515929|524729|525191|525316|558529|563347|564225|564311|564323|809550|918641|919242|919243|919244|919245|919246|920213|970914", + "text": "BCC1" + }, + { + "baseId": "136541|136542|488150", + "text": "Abdominal obesity-metabolic syndrome 3" + }, + { + "baseId": "136546|136547|136548|136549|136550|136551|136552|136554|166181|166358|178786|215005|215006|215007|215008|259620|259621|353891|418808|431535|486696|486697|608840|653854|682114|682115|682211|790294|798512|806410|806411|861037|961422|961423|961424|961425|980840", + "text": "Visceral myopathy" + }, + { + "baseId": "136546|136551|136552|136552|205237|214167|616000", + "text": "Chronic intestinal pseudoobstruction" + }, + { + "baseId": "136551|136552", + "text": "Visceral neuropathy, familial, autosomal dominant" + }, + { + "baseId": "136552|205237", + "text": "Megacystis" + }, + { + "baseId": "136558|136559|136560|136561|136562|206698|206699|227578|427611|446977|446979|447032|447035|447040|481335|514964|514980|556546|556579|556972|626091|626568|626569|626570|690323|690324|690328|690329|690331|690332|690333|694998|731561|798911|802116|822491|822492|921562|921563|929947|929948|941364|941365|952008|963345|963346", + "text": "Pontocerebellar hypoplasia, type 9" + }, + { + "baseId": "136583", + "text": "Atrophoderma vermiculatum" + }, + { + "baseId": "136583|918498", + "text": "Keratosis pilaris" + }, + { + "baseId": "136587", + "text": "Pyloric stenosis, infantile hypertrophic, 5" + }, + { + "baseId": "136739", + "text": "Multiminicore/minicore/multicore disease" + }, + { + "baseId": "136760|353882|360892|361048|677243|980754", + "text": "Proximal muscle weakness" + }, + { + "baseId": "136760|361048|625198", + "text": "Pelvic girdle muscle weakness" + }, + { + "baseId": "137030|137031|137032|137033|262391|362364|408455|424898|430956|430957|430958|577194|583112|791163|791167|791168|904173|904174|904175|904176|964121|964367|964369|970944", + "text": "Mental retardation, autosomal dominant 24" + }, + { + "baseId": "137034", + "text": "Mitochondrial complex III deficiency, nuclear type 7" + }, + { + "baseId": "137035|683215|683216", + "text": "Mental retardation, autosomal recessive 43" + }, + { + "baseId": "137053|137054|137055|137056|137057|137058|150445|150447|150448|226663|226664|247006|406937|438747|456104|456106|456440|456445|456452|456806|496877|521872|521875|522237|522243|522248|522272|561022|561123|563827|614307|614308|614309|635314|635315|635316|635317|635318|635319|635320|635321|635322|651683|651685|722155|730437|735788|735789|744153|744157|744290|750248|765889|765890|765891|782676|832590|832591|832592|832593|832594|832595|852042|852311|924522|933531|933532|933533|933534|933535|933536|933537|940052|945253|945254|954931|954932|954933|954934|959821", + "text": "Immunodeficiency 23" + }, + { + "baseId": "137063|137064|137065|260851|424625|424889|431902|481334|488151|536229|536230|538335|538946|550347|550348|576253|578382|621017|626107|654115|696668|788737|789961|789962|789963|798470|802121|805074|815977|918630|963487|964110|969277|969278|970165|975935|977175", + "text": "Xia-Gibbs syndrome" + }, + { + "baseId": "137063|137063|137064|137064|137065|137065", + "text": "Sleep apnea" + }, + { + "baseId": "137063|137064|137065|166182|166183|166184|166185|166186|166187|166188|166189|166190|166191|166192|360874|514192|514215|682760", + "text": "Neonatal hypotonia" + }, + { + "baseId": "137078|462491|462492|462754|463223|463233|527350|527373|527376|527379|527889|567066|641395|641396|641397|702520|713761|738881|769319|820521|840299|840300|917818|936273|936274|956950|956951|956952|956953|964400", + "text": "Early infantile epileptic encephalopathy 21" + }, + { + "baseId": "137082|137083|217219|217220|225875|360894|364064|413748|413749|481792|536739|538395|550181|550361|550790|575490|611414|621025|654130|687091|790751|798589|798590|815988|858740|919110|919111|919112|919113|969327|970863|970864|970865|976654|983796", + "text": "Mental retardation, autosomal dominant 26" + }, + { + "baseId": "137084|407359|457693|457704|457711|458294|458299|458353|458354|458661|510873|523717|523723|523961|523979|532147|532159|562257|567731|614485|637021|683997|687259|834547|834548|834549|955384|980490", + "text": "Conotruncal heart malformations" + }, + { + "baseId": "137086", + "text": "Deafness, autosomal recessive 101" + }, + { + "baseId": "137087|918574", + "text": "Giant axonal neuropathy 2, autosomal dominant" + }, + { + "baseId": "137210|286735|286740|286758|288960|288992|289357", + "text": "Neuroblastoma Susceptibility" + }, + { + "baseId": "137276|473782|550678", + "text": "Intrahepatic cholangiocarcinoma" + }, + { + "baseId": "137297|204041|204042|204043|204044|442508|442509|442510|536197|791234|791235|798654|800919|903591|919434|964850|973030", + "text": "Coffin-Siris syndrome 6" + }, + { + "baseId": "137721|137722|137725|143238|143239|143240|143241|143242|260854|269141|362760|362761|366311|366533|405690|428047|428050|428051|431903|450751|450755|450758|450968|490941|517998|518001|518041|518136|537347|550164|550351|550586|557489|557984|558336|560553|576102|608837|611383|611384|619907|629751|629752|629753|629754|629755|629756|650755|650948|672129|691110|691111|697499|697500|697502|733373|747496|747501|763124|763125|777287|781268|816445|826112|826113|826114|826115|826116|851412|922677|942746|953021|953022|961392|967263|970740|970852", + "text": "Tatton-Brown-rahman syndrome" + }, + { + "baseId": "137834|513900|514100", + "text": "Metachromatic leukodystrophy variant" + }, + { + "baseId": "137841", + "text": "Mixed Phenotype Acute Leukemia, T/Myeloid, Not Otherwise Specified" + }, + { + "baseId": "137841|137849|333821|343775|349081|622466", + "text": "ERCC2-Related Disorders" + }, + { + "baseId": "137939|263045|304087|407292", + "text": "Langer-Giedion syndrome" + }, + { + "baseId": "138100|138105|138106|138109|253530|253535|256038|308234|312615|312633|318533|318542|319067|327107|327109|327113|327134|327136|327140|327141|327148|327149|327153|327168|327169|327171|327178|327179|336998|337004|337010|337016|337018|337021|337022|337024|337027|343231|343246|344838|344841|344844|344849|344850|344853|344857", + "text": "Inclusion Body Myopathy, Dominant" + }, + { + "baseId": "138125|138127|138129|138131|139286|193378|193379|253699|253700|253704|253706|268579|268591|309577|309579|309582|309583|309584|309585|309587|309588|309600|309606|309607|309608|314366|314367|314377|314378|314379|314389|314395|314396|314414|314416|314418|314419|314420|314421|314431|320436|320439|320440|320447|320448|320459|320461|320462|320467|320469|320470|320865|320874|320875|320877|320883|320884|320908|320909|320916|320920|320934|320936|320937|320942|320947|503156|569547|701223|737381|865489|865490|865491|865492|865493|865494|865495|865496|865497|865498|865499|865500|865501|865502|865503|865504|865505|865506|865507|865508|865509|865510|865511|865512|865513|865514|868451|868452|868453", + "text": "Isolated coronal synostosis" + }, + { + "baseId": "138162|235483|247653|327448|402038|422146|467353|488185|530769", + "text": "Potocki-Lupski syndrome" + }, + { + "baseId": "138201|257848|404264|430809|471610|535006|574743|650088|650089|650090|685017|685018|685019|685490|689519|689521|689522|695909|706246|821508|850105|850106|850107|850108|929753|929754|929755|929756|959312|960386", + "text": "gene sequencing" + }, + { + "baseId": "138388|361137", + "text": "Lymphedema" + }, + { + "baseId": "138512|425204|425209|425211|425219|425220|425227|425228", + "text": "atypical cerebral palsy" + }, + { + "baseId": "138646|138646|138649|138650|138651|138653|138657|138658|138659|138660|138660|138662|138665|138666|138667|138668|138669|138670|138671|138672|138673|138674|138676|138677|138678|138679|138680|138681|138683|138684|138688|138689|138690|138691|138692|138693|138694|138695|138696|138697|138698|138699|165580|165811|166009|166010|166011|171045|178597|192031|193301|194075|194471|195730|221062|221063|221064|221065|221066|221067|221068|221069|221070|221071|221807|221808|221809|221810|221811|221812|221813|221814|221815|224367|224368|240533|240534|240535|240536|240537|240538|240539|240540|240541|240542|240543|240544|240546|240547|240548|240549|240550|240551|240552|240553|240554|240555|240556|240557|240558|240559|240560|240561|240563|240564|240565|240566|240567|240568|240569|240570|240571|240572|240573|240574|240575|240576|240577|240578|240579|240580|240582|240583|240584|240585|240586|240587|240588|240589|258550|258553|258554|258556|258556|258559|258559|258561|258563|258564|258566|258567|258568|258569|258570|258572|258573|258575|258576|258577|258578|258581|258583|258583|258584|258586|258587|258588|258591|258592|258593|258594|258595|258597|258600|258602|258610|258610|269796|271889|273957|274161|274162|359915|359922|363225|363772|370197|370211|370217|370222|370271|370274|370278|370279|370735|370746|370751|370754|370775|370792|370795|371076|371092|371102|371111|371116|372772|372774|372778|372779|372782|396754|396755|396756|396763|396770|396774|396786|396787|396791|396794|396800|396803|396806|396809|396810|396819|396823|396824|396836|396842|396848|396849|396966|396975|396978|396986|396986|396993|396996|396996|396997|397001|397005|397007|397008|397021|397027|397032|397046|397068|397076|397080|397087|397088|397102|397105|397110|397113|397115|397119|397121|397124|397124|397129|397133|397138|397140|397142|397147|397148|397151|397156|397157|397160|397165|397166|397177|397184|397190|397195|397199|397214|397215|397318|397325|397329|397330|397331|397336|397338|397338|397339|397347|397355|397357|397362|397367|397384|397386|397391|397391|397392|407622|407624|415182|421733|421735|421736|425839|434941|444426|444427|444428|444429|444435|444436|444437|444438|444441|444442|458729|458924|458926|458928|458931|458932|458943|458954|458955|458957|458958|458966|458969|458972|458978|458983|458986|458991|458995|459000|459003|459015|459021|459033|459034|459039|459261|459263|459269|459273|459276|459278|459282|459286|459287|459292|459299|459300|459303|459305|459307|459312|459315|459315|459318|459322|459327|459333|459333|459336|459337|459338|459339|459341|459343|459344|459350|459351|459353|459355|459357|459359|459364|459366|459368|459370|459370|459372|459374|459376|459392|459397|459400|459402|459409|459411|459413|459416|459419|459751|459762|459764|459769|459771|459776|459778|459780|459780|459783|459786|459787|459791|459793|459807|459808|459811|459813|459815|459827|459836|459837|459841|459849|459867|459878|459889|459892|459900|480522|489967|491346|502437|502448|502449|502510|502514|502780|502782|502813|502827|502922|502941|502958|502964|503028|503196|503199|503292|510042|510045|510047|510050|510053|510060|510061|510062|510063|510066|510069|510070|510072|510074|510079|510084|510085|510087|510089|510091|510093|510095|510096|510098|510102|510103|510103|510110|510115|510119|514238|514239|514240|514241|514242|514243|514244|514245|514246|514247|514248|514249|514250|524367|524374|524383|524385|524396|524397|524404|524405|524409|524413|524418|524679|524682|524684|524691|524693|524698|524704|524708|524710|524714|524714|524718|524826|524833|524839|524841|524844|524846|524847|524853|524855|524858|524870|524873|524877|524879|524882|524961|524964|524968|524972|524976|524978|524992|524999|525002|525003|525011|525014|525017|536769|537857|551707|552444|552445|552446|563050|563052|563058|563060|563062|563064|563066|563078|563079|563079|563083|563085|563087|563089|563091|563783|563785|563791|563794|563795|563808|563815|563825|563828|563833|563842|563849|563851|565776|565777|565778|565780|565782|565783|565787|565788|565792|565794|565795|565800|568831|568834|568835|568839|568840|568843|568846|568846|568847|568848|568852|587013|614340|614961|614962|614967|614972|615211|624387|638047|638048|638049|638050|638051|638052|638053|638054|638055|638056|638057|638058|638059|638060|638061|638062|638063|638064|638065|638066|638067|638068|638069|638070|638071|638072|638073|638074|638075|638076|638077|638078|638079|638080|638081|638082|638083|638084|638085|638086|638087|638088|638089|638090|638091|638092|638093|638094|638095|638096|638097|638098|638099|638100|638101|638102|638103|638104|651818|651924|651928|651931|652012|655948|672076|672076|684074|684076|684077|684081|684082|684083|684085|687443|687446|687447|687449|687450|687452|687453|687456|687458|687459|687460|687462|689946|692641|692642|692650|692653|692654|692655|700895|700896|700897|723462|723467|723468|737024|737027|759782|759896|767294|767306|775536|787619|790866|790867|790868|790869|790870|790871|790872|796278|805615|820101|820102|820103|835873|835874|835875|835876|835877|835878|835879|835880|835881|835882|835883|835884|835885|835886|835887|835888|835889|835890|835891|835892|835893|835894|835895|835896|835897|835898|835899|835900|835901|835902|835903|835904|835905|835906|835907|835908|835909|835910|835911|835912|835913|835914|835915|835916|835917|835918|835919|835920|835921|835922|835923|835924|835925|835926|835927|835928|835929|835930|835931|835932|851732|925504|925505|925506|925507|925508|925509|925510|925511|925512|925513|925514|925515|925516|925517|925518|925519|925520|934666|934667|934668|934669|934670|934671|934672|934673|934674|934675|934676|934677|934678|934679|934680|934681|940934|946519|946520|946521|946522|946523|946524|946525|946526|946527|946528|946529|946530|946531|946532|955764|955765|955766|955767|955768|955769|955770|955771|961613", + "text": "Adams-Oliver syndrome 5" + }, + { + "baseId": "138657|210368|359762|360883|361033|400546|429714|510064|551447|551448|551449|551450|551451|551452|551453|551454|551455|551456|551457|551458|581210|581844|614653|971467", + "text": "Bicuspid aortic valve" + }, + { + "baseId": "138674|513183|552173", + "text": "Congenital heart defects" + }, + { + "baseId": "138812|188141|188142|214099|363384|363385|512433|791949|904322|964526", + "text": "Mental retardation, autosomal dominant 36" + }, + { + "baseId": "138939|138942|138943|138944|138946|138948|138949|138950|138953|138954|138956|138958|138959|138960|138961|138963|138966|138967|138969|138970|138972|138976|138978|224672|224673|224674|224675|359475|367600|367600|443465|452450|452455|452459|452463|452464|452466|452467|452472|452476|452480|452487|452666|452673|452677|452692|452698|452701|452703|452704|452711|452718|452720|452725|452727|452728|452737|452748|452749|452752|452755|452759|452762|452777|452779|452781|452789|452791|452991|452993|452999|453000|453002|453005|453009|453012|453019|453024|511494|511497|511498|519321|519332|519343|519347|519348|519350|519354|519355|519356|519361|519362|519368|519503|519514|519516|519528|519530|519533|519539|519540|519542|519549|519556|519558|519566|519572|519574|519576|519578|519590|519597|559008|559010|559012|559014|559526|559530|559532|559534|559536|559538|559540|559542|559544|559546|561605|561606|561609|561616|561617|561619|561624|561627|561629|561636|561638|562975|562997|563008|576752|621022|622330|631462|631463|631464|631465|631466|631467|631468|631469|631470|631471|631472|631473|631474|631475|631476|631477|631478|631479|631480|631481|631482|631483|631484|631485|631486|631487|631488|631489|691426|691427|691428|698127|698128|698129|698130|698132|698133|698135|698136|698137|708888|708890|720485|720486|720487|720488|720493|734093|734094|734096|734100|734101|734102|734104|748304|748305|748310|763923|763924|763926|763927|763928|763934|763936|763941|774833|774986|781688|781689|781691|781692|781693|793025|821891|821892|821893|821894|821895|821896|821897|821898|821899|821900|821901|821902|828191|828192|828193|828194|828195|828196|828197|828198|828199|828200|828201|828202|828203|828204|828205|828206|828207|828208|828209|828210|828211|828212|828213|828214|828215|828216|828217|828218|828219|828220|828221|828222|828223|828224|828225|828226|828227|828228|828229|828230|918833|920195|923224|923225|923226|923227|923228|923229|923230|923231|923232|923233|923234|923235|931966|931967|931968|931969|931970|931971|931972|931973|931974|931975|931976|931977|931978|931979|931980|931981|943572|943573|943574|943575|943576|943577|943578|943579|943580|943581|943582|943583|943584|943585|943586|943587|943588|943589|953500|953501|953502|953503|953504|953505|953506|953507|959699|959700|964224|964817|965619", + "text": "Luscan-lumish syndrome" + }, + { + "baseId": "139002|245206", + "text": "Curry-Jones syndrome" + }, + { + "baseId": "139020|236839|236840|236841|236842|236843|236844|236845|236850", + "text": "Microform holoprosencephaly" + }, + { + "baseId": "139022|139024|240730|397335|439503|439504|460505|460522|475248|626194", + "text": "Joubert syndrome 32" + }, + { + "baseId": "139069|139073|139075|139084|216910|216911|216912|216913|216914|216915|682261|699337|721738|777535|799439|961949|981520|981521|981522|981523|981524", + "text": "Autoinflammatory syndrome, familial, Behcet-like" + }, + { + "baseId": "139098|363522|364267|364268|364269|410258|513784|513786|513787|513788|513789|513790|513791|513792|513794|513795|513797|513802", + "text": "PARP Inhibitor response" + }, + { + "baseId": "139302|357085|620001|620002|620722", + "text": "MPL-Related Disorders" + }, + { + "baseId": "139316|139317|139323|139325|139336|139337|139340", + "text": "Relapsing remitting multiple sclerosis" + }, + { + "baseId": "139318|139319|139320|139321|139322|139324|139326|139327|139328|139329|139330|139331|139332|139333|139334|139335|139338|139339|139341", + "text": "Chronic progressive multiple sclerosis" + }, + { + "baseId": "139361|139362|139363|139364|139365|139366|139367", + "text": "Structural brain abnormalities" + }, + { + "baseId": "139361|139362|139363|139364|139365|139366|139367", + "text": "Neurological deficit" + }, + { + "baseId": "139371|181422|536138|536151|536160|536186|536187", + "text": "Cerebral calcification" + }, + { + "baseId": "139371", + "text": "Intracranial hemorrhage" + }, + { + "baseId": "139372|139373|425210|682118", + "text": "Myasthenic syndrome, slow-channel congenital" + }, + { + "baseId": "139375", + "text": "Spermatogenic failure 13" + }, + { + "baseId": "139378|139379|192126|252609|252613|259850|266683|266867|267345|267684|267728|268921|269124|269567|270377|270709|273597|273995|274386|274540|274549|274757|274829|275443|368925|368928|370821|456400|456410|456412|456413|456979|456983|457423|457427|457429|457433|489254|493199|522317|522319|522322|522326|522715|523049|523050|523053|523056|523058|561380|561539|581956|586225|635780|635781|635782|635783|635784|635785|692157|692158|730465|735954|750418|766108|790695|833130|833131|833132|833133|833134|833135|924701|924702|924703|933687|933688|933689|940066|945425|945426|945427|945428|955051|955052|955053|955054|955055", + "text": "Limb-girdle muscular dystrophy, type 1F" + }, + { + "baseId": "139381|800839", + "text": "Spermatogenic failure 14" + }, + { + "baseId": "139382|224860|224861|224862|224863|626147|858731", + "text": "Mitochondrial complex III deficiency, nuclear type 8" + }, + { + "baseId": "139774", + "text": "B Lymphoblastic Leukemia/Lymphoma" + }, + { + "baseId": "139827|185970", + "text": "Ewing sarcoma of soft tissue" + }, + { + "baseId": "139945|139947|139948|139949|212052|212054|349026|349033|352932", + "text": "Sideroblastic Anemia and Ataxia" + }, + { + "baseId": "140021|140022|205751|211299|211299|211306|211307|211307|211309|211313|211313|302009|302013|302014|302016|302021|305185|305194|305195|305198|305203|305204|309890|309893|309893|309896|309896|309901|309916|309916|309917|309918|309924|309929|309931|309948|309964|310017|310025|368952|369244|369512|456416|501886|514551|522605|635793|692166|692166|695352|722363|897558|897559|897560|897561|897562|897563|897564|897565|897566|897567|897568|897569|897570|897571|897572|897573|897574|897575|897576|897577|897578|897579|900320|900321|924716", + "text": "Cataract, autosomal recessive congenital 5" + }, + { + "baseId": "140035", + "text": "unspecified heart condition" + }, + { + "baseId": "140119|195446|211373|265577|308151|308152|308156|318388|318390|318392|318393|318856|318864|318874", + "text": "Coenzyme Q10 deficiency, Oculomotor Apraxia Type" + }, + { + "baseId": "140347|188490", + "text": "Short QT Syndrome 5" + }, + { + "baseId": "140562|140563|140566|140567|140568|140570|140571|140572|140574|140575|140577|140578|140579|140582|140583|140585|140586|140587|140588|140590|140591|140592|140593|140595|140595|140596|140597|140598|140599|140600|140601|140602|140604|140605|140606|140607|140608|140609|140610|140611|140612|140613|140614|140615|140616|140617|140618|140620|140621|140622|140623|140624|140627|140628|140629|140630|140631|140632|140633|140635|140635|140636|140636|140637|140637|140638|140638|140639|140640|140640|140641|140642|140642|140643|140643|140644|140644|140646|140646|140647|140647|140648|140648|140649|140649|140651|140651|140652|140652|140654|140655|140655|140656|140657|140658|140659|140660|140660|140661|140661|140662|140662|140663|140664|140664|140665|140665|140666|140666|140667|140668|140668|140669|140670|140671|140671|140673|140674|165529|165530|165530|178495|178495|178497|178498|178594|178596|192176|192811|193889|193892|194097|194215|194565|194613|194613|194698|195202|196151|205008|205759|209493|209493|209494|209495|209497|209498|209499|209499|209500|209500|209501|209502|209502|209505|209505|209507|209508|209512|209516|209517|209518|209518|209519|209520|209521|209522|209522|209523|209525|209527|209528|209529|209533|209533|209534|209534|209535|209538|209539|209539|209540|209541|209541|209542|209548|209555|209555|209556|209557|209559|209560|209560|209562|209562|209563|209569|209570|209572|209575|209576|209576|209578|209578|209579|209580|209580|209581|209962|209964|209966|209967|209968|209970|209971|209972|209973|209974|209975|209978|209979|209982|209985|209986|209987|209988|209989|209989|209990|209993|209994|209995|209996|209997|209998|210000|210001|210003|210005|210006|210008|210011|210014|210015|210016|210017|210018|210022|210023|210024|210024|210026|210028|210029|210031|210032|210035|210036|210037|210041|210042|210043|210044|210046|210047|210048|210051|210052|210053|210054|210055|210059|210062|210063|210064|210065|210066|210067|210068|210069|210070|210071|210072|210076|210078|210079|210083|210084|210087|210088|210089|210090|210091|210093|210094|210096|210100|210102|210106|210108|210109|210113|210114|210115|210117|210118|210119|210122|210124|210125|210128|210130|210131|210134|210135|210136|210137|210138|210142|210144|210148|217340|217341|217343|221806|224247|224247|224365|250467|252982|253410|253412|253420|253424|253434|253455|258231|258233|258233|258234|258526|258530|258532|258533|258537|258542|258544|258545|258548|258549|258558|259715|264322|265723|267387|283541|283547|283548|283559|283566|283568|283571|284203|284215|284216|284223|284226|284233|286134|286163|286165|286172|286200|286206|286224|286226|286241|286241|286243|286526|286528|286541|286542|286543|286545|286560|286569|286575|286575|286579|286579|286587|307468|307488|307490|307495|307496|307502|307509|307524|307547|311704|311705|311706|311710|311711|311726|311732|311733|317251|317263|317291|317298|317305|317318|317327|317367|317369|317660|317667|317688|317696|317714|317716|317731|317754|317766|317768|317798|317820|317828|317839|359796|359798|359913|361194|362443|365961|366013|366205|366218|366219|366223|366224|366226|366226|366233|366244|366270|366764|366764|366790|370022|370056|370077|370539|370540|370812|370818|370835|370837|372439|372466|372488|372533|372549|392269|392270|392364|392365|392366|392369|392426|392428|392431|392444|392452|392478|392483|392492|392494|392507|392515|392515|396638|396642|396645|396647|396649|396655|396660|396673|396681|396687|396698|396700|396843|396845|396858|396859|396867|396885|396888|396891|396896|396959|396964|396972|396980|396982|396983|396985|396995|396998|397004|397011|397018|397019|397273|397280|397288|397289|433444|433445|499416|499437|499448|510006|629211|629212|629212|629213|629213|629215|629216|629217|629218|629219|629220|629221|629222|629223|629224|629225|629225|629227|629229|629230|629231|629233|629234|629234|629235|629236|637939|637940|637941|637942|637943|637944|637945|637946|637947|637948|637949|637950|637953|637954|637955|637957|637958|637959|637960|637961|637962|637963|637964|637965|637966|637967|637968|637969|637970|637971|637972|637973|637974|637975|637976|637978|637980|637981|637982|637983|637984|637985|637986|637987|637988|637989|637990|637991|637992|637993|637994|637995|637996|637998|650904|650905|651837|651891|651915|651920|651922|651990|652041|652139|652145|683462|684059|684059|684060|687396|687397|687399|687400|687401|687402|687408|687412|689695|689696|689697|689939|692630|692631|692633|695428|700882|711847|711848|736995|744459|751529|759734|762734|767246|767248|767253|767256|777731|781098|781098|789375|799271|799272|825493|825494|825495|825497|825498|825499|825500|825502|825503|825504|825505|825507|825508|825509|825510|825510|825511|825513|825514|825516|835744|835745|835746|835747|835748|835749|835750|835752|835753|835755|835756|835757|835759|835760|835761|835763|835764|835765|835766|835767|835768|835769|835771|835772|835773|835774|835775|835776|835777|835778|835780|835781|835782|835784|835785|835786|835787|835788|835790|835791|835794|835795|835796|850823|850866|850868|851141|851247|851728|852168|852170|852499|858310|883054|883055|883056|883057|883058|883059|883060|918718|918719|918720|918721|918722|919199|919200|919201|919202|919203|920267|920268|964652|965875|981378|981379|981380|981381", + "text": "Ehlers-Danlos syndrome classic type 2" + }, + { + "baseId": "140785|210896|210897|210898|247473|247477|247479|247480|626132", + "text": "Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal recessive 4" + }, + { + "baseId": "141047|171281|171282|209762|209778|209807|258390|258402|258408|273965|297049|368157|443671|454415|520509|614279|614280|622345|799393|816312|918917|918918|918919|918920", + "text": "Macular degeneration, early-onset" + }, + { + "baseId": "141317|141318|612467", + "text": "Facial dysmorphism, lens dislocation, anterior segment abnormalities, and spontaneous filtering blebs" + }, + { + "baseId": "141324|141325|141325|141326|141327|141328|141329|150464|150465|187227|187227|250309|275325|363749|363926|363926|363975|413549|414825|427919|438163|438702|442980|448752|448756|448764|448770|448771|448974|448976|449036|449054|449056|449070|449071|516211|516475|516478|516480|516567|516572|516575|516581|516583|516586|516591|516593|516596|516598|516599|516601|516602|516612|516619|516625|516629|516633|516637|516638|538339|538952|538952|557584|557586|557588|557590|558813|558815|558817|559296|559298|559300|559302|578389|578390|578391|612450|614222|614223|614224|614225|614226|614227|614597|624756|626117|626117|628684|628685|628686|628687|628688|628689|628690|628691|628692|628693|628694|628695|628696|628697|628698|628699|628700|628701|628702|628703|650851|650886|678120|690822|690823|690824|690825|690827|690828|690829|690830|690831|690832|690833|690834|690835|690837|690838|690839|690840|690841|695093|695094|695095|697109|697112|697113|697114|707805|707806|730067|732867|762319|762322|762323|777146|778889|790069|800764|800765|800766|800767|800768|800769|800770|800771|800772|800773|800774|800775|800776|800777|800778|800779|800780|800781|800782|824978|824979|824980|824981|824982|824983|824984|824985|824986|824987|824988|824989|824990|824991|824992|824993|824994|824995|824996|824997|824998|824999|825000|825001|825002|825003|825004|825005|825006|825007|825008|825009|850838|851342|918678|922300|922301|922302|922303|922304|930867|930868|930869|930870|930871|930872|930873|930874|930875|939852|940660|942295|942296|942297|942298|942299|942300|942301|942302|952737|952738|952739|952740|959583|959584|961254|961645|964165|970713|975892|975893", + "text": "Aicardi-Goutieres syndrome 7" + }, + { + "baseId": "141325|187227|187227|250307|250309|275325|363749|363926|363926|363975|413549|414825|427919|438163|438702|448752|448756|448764|448770|448771|448974|448976|449036|449054|449056|449070|449071|516211|516475|516478|516480|516567|516572|516575|516581|516583|516586|516591|516593|516596|516598|516599|516601|516602|516612|516619|516625|516629|516633|516637|516638|538339|538952|538952|557584|557586|557588|557590|558813|558815|558817|558817|559296|559298|559300|559302|578389|578391|614222|614223|614224|614225|614226|614227|624756|626117|626117|628684|628685|628686|628687|628688|628689|628690|628691|628692|628693|628694|628695|628695|628696|628697|628698|628699|628700|628701|628702|628703|650851|650886|690822|690823|690824|690825|690827|690828|690829|690830|690831|690832|690833|690834|690835|690837|690838|690839|690840|690840|690841|695093|695094|695095|697109|697112|697113|697114|707805|707806|730067|732867|762319|762322|762323|777146|778889|790069|790069|824978|824979|824980|824981|824982|824983|824984|824985|824986|824987|824988|824989|824990|824991|824992|824993|824994|824995|824996|824997|824998|824999|825000|825001|825002|825003|825004|825005|825006|825007|825008|825009|850838|851342|918677|918678|918678|920160|922300|922301|922302|922303|922304|930867|930868|930869|930870|930871|930872|930873|930874|930875|939852|940660|942295|942296|942297|942298|942299|942300|942301|942302|952737|952738|952739|952740|959583|959584|961254|975892|975893", + "text": "Singleton-Merten syndrome 1" + }, + { + "baseId": "141331|141332|237493|430044|539077|619911|964495", + "text": "Gordon's syndrome" + }, + { + "baseId": "141333|430044|539077|626266|626319", + "text": "Marden-Walker syndrome" + }, + { + "baseId": "141637|141638|141640|211639|316885|316889|316904|316907|316909|316910|316912|316913|316916|324499|324508|324510|324522|330637|330661|330689|330692|330694|330705|330707|332004|332011|332012|332022|332036|332039|332072|332081|332087|332103|332105|332107|332108", + "text": "Hereditary Sideroblastic Anemia with Myopathy and Lactic Acidosis" + }, + { + "baseId": "142240|187894|253284|359757|424259|439630|458740|502861|523825|562690|562691|622044|622045|622046|637644|637645|637646|687353|692569|820046|835434|835435|934528|940126|946339|946340", + "text": "Oligosynaptic infertility" + }, + { + "baseId": "142556|142557|142560|142561|142562|211588|503924|738547", + "text": "Sideroblastic anemia" + }, + { + "baseId": "142930|207000|207001|286250|286253|286271|286286|286288|287026|289328|289337|289342|289349|289674|289678|289679|289683|289702|858733", + "text": "Gingival fibromatosis" + }, + { + "baseId": "143128|143129|143130|143138|143139|143140|143141|143142|215267|362137|610373|626433|626434|626435|626436|626437|626438|626439|672048|697765|790316|917745|963532", + "text": "Intellectual disability-cataracts-calcified pinnae-myopathy syndrome" + }, + { + "baseId": "143136|143137|548213|548583|548989|806440", + "text": "Pontocerebellar hypoplasia, type 2e" + }, + { + "baseId": "143150", + "text": "isolated follicle-stimulating hormone deficiency" + }, + { + "baseId": "143157|214100|538398|672025|672026|790788|790789|805087|961781", + "text": "Diarrhea 7" + }, + { + "baseId": "143158|143159|143160|143161|143162|513102|513103|841787", + "text": "Cone-rod dystrophy 19" + }, + { + "baseId": "143164|143165|143166|143167|143168|143169|143170|143171|205690|205692|368885|406962|428667|428669|428671|428672|444050|456118|456127|456128|456131|456132|456134|456134|456136|456137|456144|456147|456149|456151|456153|456161|456168|456171|456176|456187|456188|456194|456205|456211|456387|456389|456393|456397|456403|456405|456409|456414|456418|456420|456422|456424|456433|456442|456446|456449|456457|456467|456474|456475|456685|456687|456689|456691|456696|456700|456701|456703|456705|456708|456710|456711|456712|456715|456719|456723|456725|456733|456735|456740|456742|456750|456752|456755|456756|456815|457035|457037|457039|457041|457043|457047|457048|457050|457067|457068|457074|457079|457086|457088|457091|457099|457101|457104|457108|457110|457112|457118|457119|457120|457122|457127|457128|457135|457143|457146|457149|457152|457155|457157|474473|474477|474483|474484|474485|474487|474488|474492|474496|474502|474505|474507|474508|474596|474603|474604|474608|474613|474614|501793|501874|502187|522092|522095|522105|522106|522116|522118|522122|522124|522126|522131|522132|522148|522149|522154|522362|522364|522368|522371|522372|522376|522378|522387|522389|522390|522391|522458|522460|522463|522466|522468|522471|522472|522476|522478|522490|522493|522497|522499|522814|522818|522823|522827|522832|522835|522847|522848|522851|522853|522856|522858|536322|561029|561249|561251|561253|561255|561260|561262|561264|561266|561268|561272|561277|561282|561328|561329|561333|561342|561345|561352|561353|561361|561370|561373|563841|563986|563988|563989|563991|563993|563995|563998|564000|564003|564011|564012|566345|566348|566351|566358|566360|566371|566373|566374|566379|566386|566387|635574|635575|635576|635577|635578|635579|635580|635581|635582|635583|635584|635585|635586|635587|635588|635589|635590|635591|635592|635593|635594|635595|635596|635597|635598|635599|635600|635601|635602|635603|635604|635605|635606|635607|635608|635609|635610|635611|635612|635613|635614|635615|635616|635617|635618|635619|635620|635621|635622|635623|635624|635625|635626|651638|651651|651653|651655|651657|651658|651704|692124|692125|692126|692127|692128|692129|695343|695344|699793|699794|699795|699796|699797|699798|699799|722282|722284|735921|759542|766040|766045|766046|782763|782765|808880|808885|808888|808889|808891|808906|808908|808909|808913|808914|808915|808926|808939|815370|815372|819810|819811|819812|819813|819814|819815|819816|819817|819818|819819|819820|832913|832914|832915|832916|832917|832918|832919|832920|832921|832922|832923|832924|832925|832926|832927|832928|832929|832930|832931|832932|832933|832934|832935|832936|832937|832938|832939|832940|832941|832942|832943|832944|832945|832946|832947|832948|832949|832950|832951|832952|832953|832954|851618|851620|851622|851624|852052|852054|852323|852324|852329|858446|924625|924626|924627|924628|924629|924630|924631|924632|924633|924634|924635|924636|924637|924638|924639|924640|924641|924642|924643|924644|924645|924646|924647|924648|924649|924650|924651|924652|924653|933614|933615|933616|933617|933618|933619|933620|933621|933622|933623|933624|933625|933626|933627|933628|933629|933630|933631|933632|940058|940059|940060|940061|940868|940869|945358|945359|945360|945361|945362|945363|945364|945365|945366|945367|945368|945369|945370|945371|945372|945373|955003|955004|955005|955006|955007|955008|955009|955010|955011|955012|959829|959830|960622|960623|983503", + "text": "Melanoma, cutaneous malignant, susceptibility to, 10" + }, + { + "baseId": "143173|143174|361177|589817|611385|654122|790284|798510|858549|963127", + "text": "Mental retardation, autosomal dominant 27" + }, + { + "baseId": "143175|143176|143177", + "text": "Nephrotic syndrome, type 10" + }, + { + "baseId": "143180|143181|143182|143183|215212|363846|364008|427855|438773|438974|439236|440519|440520|448109|448138|448141|448152|448153|448155|448161|448170|448173|448175|448176|448181|448183|448192|448198|448202|448221|448223|448234|448248|448251|448254|448258|448259|448262|448264|448269|448271|448273|448275|448276|448279|448281|448290|448291|448293|448294|448298|448300|448301|448302|448305|448310|448311|448313|448317|448322|448385|448388|448390|448391|448394|448397|515999|516003|516012|516014|516020|516023|516025|516026|516033|516035|516038|516039|516044|516046|516050|516056|516058|516061|516063|516065|516066|516158|516165|516171|516175|516182|516184|516188|516193|557111|557113|557115|557117|557119|557120|557124|557158|557159|557330|557332|557334|557336|557338|557340|557342|557344|557346|557348|557350|557352|557387|557389|557391|557393|557395|557397|557399|558004|558010|558013|558015|558016|558018|558020|558022|558561|558563|558565|558567|558569|558571|576551|628171|628172|628173|628174|628175|628176|628177|628178|628179|628180|628181|628182|628183|628184|628185|628186|628187|628188|628189|628190|628191|628192|628193|628194|628195|628196|628197|628198|628199|628200|628201|628202|628203|628204|650594|650684|650686|650691|650739|650743|650744|695059|696822|696824|696825|696826|707486|707488|707489|707492|730018|732540|732541|732543|732546|732547|746603|746605|746607|758935|762028|762030|762032|762035|762036|762037|762039|762047|774532|774541|774559|777095|777142|780748|780750|780752|789990|789991|792719|794708|824291|824292|824293|824294|824295|824296|824297|824298|824299|824300|824301|824302|824303|824304|824305|824306|824307|824308|824309|824310|824311|824312|824313|824314|824315|824316|824317|824318|824319|824320|824321|824322|824323|824324|824325|824326|824327|824328|824329|824330|824331|824332|824333|824334|824335|824336|824337|824338|824339|824340|824341|824342|824343|824344|824345|850779|850781|850810|851001|851317|851319|922127|922128|922129|922130|922131|922132|922133|922134|922135|922136|922137|922138|922139|922140|922141|922142|922143|922144|922145|930620|930621|930622|930623|930624|930625|930626|930627|930628|930629|930630|930631|930632|930633|930634|930635|930636|930637|930638|930639|939823|940646|942057|942058|942059|942060|942061|942062|942063|942064|942065|942066|942067|942068|942069|942070|942071|942072|942073|942074|942075|942076|942077|942078|942079|942080|952488|952489|952490|952491|952492|952493|952494|952495|952496|959567|970699", + "text": "Epileptic encephalopathy, early infantile, 23" + }, + { + "baseId": "143184|143185|143186|143187|143188|143189|143190|372595|375471|462537|462813|462818|463290|463296|527419|527707|527956|527957|568206|572146|641504|641505|695588|702548|702549|784496|840454|840455|840456|840457|840458|840459|840460|840461|840462|840463|840464|840465|840466|840467|840468|840469|840470|840471|840472|840473|851961|926785|926786|926787|926788|936316|936317|936318|948237|948238|948239|948240|948241|948242|948243|957004|957005|957006|957007|957008|957009|960795", + "text": "Nephronophthisis 18" + }, + { + "baseId": "143201|143202|143203|143204|143205|190605|362328|362329|488155|560357|560468|578433|614288|830876|970809", + "text": "Epileptic encephalopathy, early infantile, 24" + }, + { + "baseId": "143212", + "text": "Deafness, autosomal recessive 44" + }, + { + "baseId": "143224|143225|143226|143227|143228|143235|395336|788781|800940", + "text": "Ciliary dyskinesia, primary, 29" + }, + { + "baseId": "143229|971089", + "text": "Gingival fibromatosis-hypertrichosis syndrome" + }, + { + "baseId": "143243|143244|143245|143246|418200|917884|918884|964113|976010", + "text": "Microphthalmia/coloboma and skeletal dysplasia syndrome" + }, + { + "baseId": "143250|143251|143252|143253|174555|174828|214139|217221|217222|217223|264337|319672|361198|384405|384407|432381|481859|620335|682120|794155|794156|794157|794158|794159|794160|794161|794162|794163|794164|794165|961858|961859", + "text": "Progressive familial intrahepatic cholestasis 4" + }, + { + "baseId": "143254|143255|143256|143257|143258|188112|188113|227137|263863|264958|265101|265107|351150|360425|361112|378331|424673|430367|430370|431923|446267|512461|512464|537005|580560|580649|611432|611433|611434|682588|788940|791989|791990|805139|816495|919917|919918|919919|961352|963914|964533|964534|971149|972996|972997|972998|972999|973000|973001|973002", + "text": "Helsmoortel-Van der Aa Syndrome" + }, + { + "baseId": "143259", + "text": "Hypotrichosis 12" + }, + { + "baseId": "143261|187138|187139|190633|371851|372605|372869|374641|421908|434505|461651|461865|503563|526694|526695|526698|526712|526941|527267|565087|565089|640658|640659|640660|640661|640662|640663|640664|713388|713389|724948|738502|753162|779751|784291|839359|839360|839362|839363|839364|839365|839366|839367|839368|839369|850699|851931|926479|926480|926481|935931|935932|935933|947800|947801|947802|947803|947804|947805|947806|956762", + "text": "Myopathy, tubular aggregate, 2" + }, + { + "baseId": "143266|404804|404805|615449|801124|801125", + "text": "Platelet-type bleeding disorder 18" + }, + { + "baseId": "143271|210598|276217|276243|276475|276476|276486|276496|276497|276514|276860|276909|276951|276972|302044|633625", + "text": "Hereditary motor and sensory neuropathy" + }, + { + "baseId": "150121|150122|150123|677129", + "text": "Amelogenesis imperfecta, hypomaturation type IIA5" + }, + { + "baseId": "150138|448044|515859|515862|515887|515888|515916|515917|515920|515986|557053|557055|557317|627833|627834|627835|627836|627837|627838|627839|627840|627841|627842|707408|718963|718964|732450|732451|759022|761922|761925|777078|823960|823961|823962|823963|823964|922016|922017|930485|930486|939812|940635|941939", + "text": "Immunodeficiency 24" + }, + { + "baseId": "150140", + "text": "Microphthalmia, syndromic 13" + }, + { + "baseId": "150142|181445|445590|445592|512217|983549", + "text": "Developmental and epileptic encephalopathy, 77" + }, + { + "baseId": "150144|792729", + "text": "Hypotrichosis 13" + }, + { + "baseId": "150146|980397", + "text": "Bardet-Biedl syndrome 19" + }, + { + "baseId": "150287|583166", + "text": "Retinitis pigmentosa 84" + }, + { + "baseId": "150292|150293", + "text": "Atrial fibrillation, familial, 17" + }, + { + "baseId": "150294", + "text": "Fibrous Sheath Dysplasia" + }, + { + "baseId": "150295", + "text": "axonemas with defects on microtubules" + }, + { + "baseId": "150295", + "text": "sperm axonema without dynein arms and nexin bridges" + }, + { + "baseId": "150299|150300|230045|230052|230107|230111|230120|230135|230156|230180|230181|804844", + "text": "M\u00e9ni\u00e8re's disease" + }, + { + "baseId": "150320|150321|150322", + "text": "Spondylometaphyseal dysplasia, Sedaghatian type" + }, + { + "baseId": "150326|150327|150328|150329|150330|150331|150332|150333|424441|426335|446236|469358|469360|470370|470374|470376|470888|533508|533510|533555|533560|533600|534091|571234|571235|572889|572893|572897|573501|573502|575100|575101|575102|614474|648670|648671|648672|648673|648674|648675|648676|648677|648678|648679|648680|648681|648682|648683|648684|648685|648686|648687|648688|648689|653211|653533|653553|716983|728658|742403|757522|757528|773104|779977|792583|821325|848388|848389|848390|848391|848392|848393|848394|848395|848396|848397|848398|848399|848400|920416|929184|929185|929186|929187|929188|929189|929190|938976|938977|938978|938979|951091|951092|951093|951094|951095|958835|958836|958837|958838|958839|958840|961965|980968", + "text": "Polyglucosan body myopathy 1 with or without immunodeficiency" + }, + { + "baseId": "150443|621038|792493", + "text": "Mental retardation, X-linked 100" + }, + { + "baseId": "150449|150450|981454|981455", + "text": "Lymphedema, hereditary, ID" + }, + { + "baseId": "150451|150452|802193", + "text": "Diamond-Blackfan anemia 13" + }, + { + "baseId": "150454|150455|150456|150457|213981|250311|250312|250316|250317|250320|250322|448978|449040|449075|449076|449223|449225|449239|449240|449271|516640|557592|557654|557656|558827|628976|682302|682303|682304|682305|682306|690843|690844|690845|690846|690848|690874|690885|690886|690887|690888|690893|695096|695101|697116|697118|697119|697120|697122|697123|697124|697135|697138|697142|697143|697145|697154|707831|732871|732905|746891|780914|825237|930876|930969|965212|973098|976005", + "text": "Anterior segment dysgenesis 7" + }, + { + "baseId": "150458|178407|178407|200688|200688|200689|200689|469914|469920|469926|469931|469933|470842|470915|471374|471379|471382|471799|508104|534074|534081|534085|534165|534606|571718|573279|573283|573287|573956|573958|573964|649209|649210|649211|649212|649213|649214|649215|649216|653271|653686|694692|705821|776953|786560|821403|849084|849085|849086|849087|849088|929410|939211|939212|939213|960960", + "text": "Frontotemporal dementia and/or amyotrophic lateral sclerosis 2" + }, + { + "baseId": "150458|178407|200688|200689|469914|469920|469926|469931|469933|470842|470915|471374|471379|471382|471799|508104|534074|534081|534085|534165|534606|571718|573279|573283|573287|573956|573958|573964|649209|649210|649211|649212|649213|649214|649215|649216|653271|653686|694692|705821|776953|786560|821403|849084|849085|849086|849087|849088|929410|939211|939212|939213|960960", + "text": "Myopathy, isolated mitochondrial, autosomal dominant" + }, + { + "baseId": "150466|150467|150468|214822|214823|214824|214825|214826|264863|360315|362160|375599|375603|375605|375644|375661|376488|376494|376508|376514|376523|376570|376571|376584|376589|376591|376600|376603|378691|378710|378716|378721|378726|410222|422189|445867|445871|445872|467346|467351|467355|468279|468283|468286|468287|468292|468294|468722|468728|468729|468967|468969|468976|495441|507103|507105|531695|531698|531701|531710|531765|531825|531828|532064|532066|532069|532071|532075|536955|569672|569676|570745|571543|571547|571562|572165|572168|580266|580279|580353|646580|646581|646582|646583|646584|646585|646586|646587|646588|646589|646590|646591|646592|646593|646594|646595|646596|646597|646598|646599|646600|646601|646602|653361|715638|727366|727367|731176|756078|771773|771774|776516|780134|788262|791817|791818|791819|791820|821149|821150|846087|846088|846089|846090|846091|846092|846093|846094|846095|846096|846097|846098|846099|846100|846101|846102|846103|851751|928499|928500|928501|928502|928503|928504|928505|928506|928507|938185|938186|938187|938188|938189|938190|938191|940431|950226|950227|950228|950229|950230|950231|950232|950233|950234|950235|958279|958280|958281|964692", + "text": "Epileptic encephalopathy, early infantile, 25" + }, + { + "baseId": "150467|168792|486728|486729|486762|486763", + "text": "Undetermined early-onset epileptic encephalopathy" + }, + { + "baseId": "150775|233048|550677|550679", + "text": "Rectal Adenocarcinoma" + }, + { + "baseId": "150897", + "text": "Bilateral breast carcinoma" + }, + { + "baseId": "151124|151125|151127", + "text": "Trichomegaly" + }, + { + "baseId": "151138|151140|151141|359597|368886|369077|370328|481504|481505|481506|513420|513421|626161|626162|790609|795814|903542|939762|939763|939764|939765|939766", + "text": "Combined oxidative phosphorylation deficiency 20" + }, + { + "baseId": "151642|496224|496686|677186", + "text": "Alveolar rhabdomyosarcoma (disease)" + }, + { + "baseId": "151773|182669|212544|227140|227141|309444|395996|396013|455993|522734|522773|566301", + "text": "Osteofibrous dysplasia" + }, + { + "baseId": "151773|181585|182669|212544|309444|395996|396013|455993|522734|522773|566301", + "text": "Deafness, autosomal recessive 97" + }, + { + "baseId": "152171", + "text": "Myeloid Leukemia Associated with Down Syndrome" + }, + { + "baseId": "152753|791991", + "text": "Ataxia-telangiectasia-like disorder 2" + }, + { + "baseId": "152755|152756|152757|152758|970835", + "text": "Leukoencephalopathy, progressive, with ovarian failure" + }, + { + "baseId": "152759|152760|612252", + "text": "Combined oxidative phosphorylation deficiency 21" + }, + { + "baseId": "152772|152773|152774|190426|190426|318595|319133|319145|438816|459243|459543|460088|511840|524861|524864|524865|524989|563262|563263|638314|638315|700994|700995|700996|700997|700998|700999|701000|737129|751704|777818|777820|836153|836154|836155|836156|836157|925595|925596|925597|925598|925599|955850|964332|964334", + "text": "Epiphyseal chondrodysplasia, miura type" + }, + { + "baseId": "152775|309029|422800|428632", + "text": "Spinocerebellar ataxia type 34" + }, + { + "baseId": "152776|152777", + "text": "Retinitis pigmentosa 70" + }, + { + "baseId": "152952", + "text": "Syndrome of entercolitis and autoinflmmation caused by mutation of NLRC4 (SCAN4)" + }, + { + "baseId": "152977|538403|550115|550116|550234|679962|798606|798607|816402|858614", + "text": "Steel syndrome" + }, + { + "baseId": "153138", + "text": "Loss of ability to walk" + }, + { + "baseId": "153190|181434|181465|187513|243987|248477|263251|263269|263347|362144|362151|404617|514175|514196|550130|581716|677986|677997|677998|678003|678021|679836|921237|921238|965572", + "text": "Attention deficit hyperactivity disorder" + }, + { + "baseId": "153385|203726|263305|263309|360878|415601|513945|514007|514130|550127", + "text": "Absent speech" + }, + { + "baseId": "153385", + "text": "Irregular respiration" + }, + { + "baseId": "153574|965613|965614", + "text": "Deafness, autosomal recessive 99" + }, + { + "baseId": "153582|225833|539108|788947|806421|976685", + "text": "Mental retardation, X-linked 101" + }, + { + "baseId": "153586|153587|153588|389615|454652|454654|454711|454712|454714|454716|455169|521042|521045|521173|521182|521224|521226|560264|560266|560268|564807|564814|612695|633485|633486|633487|633488|633489|633490|633491|633492|633493|633494|633495|633496|633497|633498|721243|721244|721245|721246|734875|749257|749259|749260|764915|764916|782186|819559|830363|830364|830365|830366|830367|830368|830369|830370|830371|830372|851917|923890|923891|923892|923893|932731|932732|932733|932734|944418|944419|944420|944421|954053|954054|960555", + "text": "Sting-associated vasculopathy, infantile-onset" + }, + { + "baseId": "153636", + "text": "Azathioprine response" + }, + { + "baseId": "153638|153639|172306", + "text": "Ruijs-Aalfs syndrome" + }, + { + "baseId": "153653", + "text": "Seckel syndrome 8" + }, + { + "baseId": "153655", + "text": "Pontocerebellar hypoplasia, type 10" + }, + { + "baseId": "153684", + "text": "Ocular coloboma, autosomal recessive" + }, + { + "baseId": "153711|153712|153713|153714|153715|153716|263838|654137", + "text": "Megalencephaly-polymicrogyria-polydactyly-hydrocephalus syndrome 3" + }, + { + "baseId": "153719|262391|360932|408455|408456|577194|904168|904169|904177|904178|904181|919380|963162", + "text": "Dyskinesia, seizures, and intellectual developmental disorder" + }, + { + "baseId": "153721|153722", + "text": "Myopia 24, autosomal dominant" + }, + { + "baseId": "153744|153745|153746|153747|153748|153749|153750|153751|153752|153753|906166|964299", + "text": "Hyperlipoproteinemia, type ID" + }, + { + "baseId": "153754|153755|153756|800958", + "text": "Mental retardation, autosomal recessive 44" + }, + { + "baseId": "153775|153776|201016", + "text": "Cardioencephalomyopathy, fatal infantile, due to cytochrome c oxidase deficiency 4" + }, + { + "baseId": "153777|153778|153779|539040|590788|613493|613494|788856|788857|791170|816354|816355|919391", + "text": "Orofaciodigital syndrome xiv" + }, + { + "baseId": "153787|153788|153789|153790|153791|153792|153793|654801", + "text": "Acth-independent macronodular adrenal hyperplasia 2" + }, + { + "baseId": "153824|153825|453571|453572|453573|453575|453577|453579|453587|453588|453834|453837|453840|453982|454007|454008|454011|454365|454368|454371|513548|520139|520140|520149|520275|520282|520523|520545|520547|520549|520554|559948|562271|562278|632474|632475|632476|632477|632478|632479|632480|632481|632482|632483|632484|632485|651174|651280|691625|691629|691630|698652|698653|782045|829493|829494|829495|829496|829497|923617|932456|944132|944133", + "text": "Limb-girdle muscular dystrophy, type 1G" + }, + { + "baseId": "153826|153827|207421|678968|919041|972773", + "text": "Spinocerebellar ataxia 38" + }, + { + "baseId": "153859|153860|153861|153862|153863|206575|206576|206577|206578|206579|206580|434669|497507|513474|513475|513654|513655|575504|578562|672150|791881|791882|791883|905870|919804|919807|971601|971602", + "text": "Poretti-Boltshauser syndrome" + }, + { + "baseId": "153865|153866|226083|226084|252303|415044|614300|614301|614302|614303|614304|816313|980459|980460", + "text": "Vesicoureteral reflux 8" + }, + { + "baseId": "164076", + "text": "Immunodeficiency 26 without neurologic abnormalities" + }, + { + "baseId": "164077|164078|363870|363992|369480|369483|369486|369491|369498|369976|369977|369979|370260|370264|370265|370268|370270|370272|370276|370277|371875|371906|371915|371919|371922|407395|421681|433863|433864|433865|438392|457879|457885|457890|457892|457895|457898|457906|458476|458477|458479|458481|458523|458532|458534|458536|458545|458549|458551|458560|458944|458945|458947|458949|458961|458962|458963|458970|489679|502026|502336|523587|523589|523591|523592|523600|523604|523607|523609|523614|523621|523629|523633|523634|523922|523926|523928|523929|523931|523938|523943|523944|523946|523947|523953|523955|523959|523962|523965|524191|524194|524195|524196|524198|524199|524201|524203|524206|524207|524208|524211|524213|524215|524218|524221|524223|524231|524235|524243|524249|524250|539013|562431|562434|562439|562442|562444|562447|562452|562454|562457|562461|562463|562465|562467|562469|562962|562964|562966|562968|562970|562978|562981|562983|565145|565147|565150|565153|565155|565157|565160|565161|565164|565166|565172|565175|565177|567935|567943|567944|567956|567962|567966|567971|567974|567981|567986|567987|567991|567993|614320|614321|624373|637228|637229|637230|637231|637232|637233|637234|637235|637236|637237|637238|637239|637240|637241|637242|637243|637244|637245|637246|637247|637248|637249|637250|637251|637252|637253|637254|637255|637256|637257|637258|637259|637260|637261|637262|637263|637264|637265|637266|637267|637268|637269|637270|637271|637272|637273|637274|637275|637276|637277|637278|637279|637280|637281|637282|637283|637284|637285|637286|637287|637288|637289|637290|637291|637292|637293|637294|637295|637296|637297|637298|637299|637300|651753|651788|651790|651802|651804|651808|651904|651980|700597|700598|700599|711553|711554|711555|711556|711558|711559|711560|711561|723118|723119|723121|723124|723125|723126|723128|723129|723130|730580|736690|736691|736692|736696|736697|736698|736699|736700|751183|751185|751187|751188|751191|766837|766840|766849|766852|766853|777710|779290|783121|783128|783129|787609|819968|819969|819970|834796|834797|834798|834799|834800|834801|834802|834803|834804|834805|834806|834807|834808|834809|834810|834811|834812|834813|834814|834815|834816|834817|834818|834819|834820|834821|834822|834823|834824|834825|834826|834827|834828|834829|834830|834831|834832|834833|834834|834835|834836|834837|834838|834839|834840|834841|834842|834843|834844|834845|834846|834847|834848|834849|834850|834851|834852|834853|834854|834855|834856|834857|834858|834859|834860|834861|834862|834863|834864|834865|834866|851203|852140|852444|925210|925211|925212|925213|925214|925215|925216|925217|925218|925219|925220|925221|925222|925223|925224|925225|925226|925227|925228|925229|925230|925231|925232|934324|934325|934326|934327|934328|934329|934330|934331|934332|934333|934334|934335|934336|934337|934338|934339|934340|934341|934342|934343|934344|934345|934346|934347|934348|940107|940108|946087|946088|946089|946090|946091|946092|946093|946094|946095|946096|946097|946098|946099|946100|946101|946102|955431|955432|955433|955434|955435|955436|955437|955438|955439|955440|955441|955442|955443|955444|955445|955446|955447|955448|959895|959896|980461", + "text": "Immunodeficiency 26 with or without neurologic abnormalities" + }, + { + "baseId": "165475|226067|226068|969135", + "text": "Nanophthalmos 4" + }, + { + "baseId": "165513", + "text": "Kennedy disease)" + }, + { + "baseId": "165514|497221", + "text": "Deafness, autosomal recessive 102" + }, + { + "baseId": "165515|165516|919419", + "text": "Deafness, autosomal dominant 41" + }, + { + "baseId": "165521|165522|165523|980297|980349", + "text": "Cone-rod dystrophy 20" + }, + { + "baseId": "165524|538986|576117|918975", + "text": "Acromelic frontonasal dysostosis" + }, + { + "baseId": "165530|165571|486608|514051", + "text": "Disproportionate tall stature" + }, + { + "baseId": "165608|165609|308505|308514|308515|308519|308520|308522|308526|308533|308534|308535|308537|308538|308540|308546|308558|308560|308569|308570|312950|312951|312962|312963|312964|312965|312967|312970|312976|312977|312987|312988|312989|312991|312994|313000|318848|318849|318857|318865|318868|318869|318880|318881|318884|318888|318890|318891|318896|318897|318901|318903|319481|319482|319484|319500|319503|319507|319508|319509|319513|319533|319536|319537|319542|319546|611402|620813|711985|723587|737153|737154|902210|902214|902215|902216|902217|902218|902219|902220|902221|902222|902223|902224|902225|902226|902227|902228|902229|902230|902231|902232|902233|902234|902235|902236|902237|902238|902239|902240|902241|902242|902243|902244|902245|902246|902247|902248|902249|902250|902251|902252|902253|902254|902255|903417|903420|903421|903422|920274", + "text": "Dicarboxylic aminoaciduria" + }, + { + "baseId": "165628|363858|437976|441703|441707|578517|966897|971004", + "text": "Spinocerebellar ataxia 40" + }, + { + "baseId": "165645|166212|166213", + "text": "sporadic abdominal aortic aneurysm" + }, + { + "baseId": "165646|178808|513208|622025|622026|622027", + "text": "Familial partial lipodystrophy 6" + }, + { + "baseId": "165650", + "text": "Mental retardation, autosomal recessive 45" + }, + { + "baseId": "165692|789970", + "text": "Breasts and/or nipples, aplasia or hypoplasia of, 2" + }, + { + "baseId": "165720", + "text": "Aplasia cutis congenita (disease)" + }, + { + "baseId": "165834|185749|187252|361552|372476|373172|373174|373177|373192|373201|373407|373409|375357|375367|375382|408721|421946|437937|437938|445059|462380|462381|462391|462396|462397|462641|462647|463092|463108|463120|463122|463126|463131|463227|463228|463237|463239|463243|463248|463250|463256|504010|504025|504562|527308|527314|527316|527319|527590|527601|527606|527610|527831|527833|527835|540458|565643|565645|566974|566977|566979|566980|568144|568145|568150|571959|609852|623312|641303|641304|641305|641306|641307|641308|641309|641310|652336|682112|693254|693255|693256|702453|738798|778106|840139|840140|840141|840142|840143|840144|840145|905365|926689|926690|926691|936203|940273|941038|956911|960049", + "text": "Charcot-Marie-Tooth disease, axonal, type 2u" + }, + { + "baseId": "165836", + "text": "HPGD-Related Disorders" + }, + { + "baseId": "165849", + "text": "Bruxism" + }, + { + "baseId": "165849|360877|446889|514155", + "text": "Stereotypy" + }, + { + "baseId": "165902", + "text": "Hypodysfibrinogenemia" + }, + { + "baseId": "165903|203240|446446|551711", + "text": "developmental delay with seizures" + }, + { + "baseId": "165912|165913|165914|165915|165916|438236|453150|453156|453158|453159|453203|453569|453576|519616|519669|559233|559537|631812|631813|631814|631815|709073|720670|748574|828603|828604|828605|828606|828607|828608|923368|923369|932097|953603", + "text": "Severe congenital neutropenia 6, autosomal recessive" + }, + { + "baseId": "165912|165913|165914|165915|165916|171707|188298|188299|188300|276501|281295|281299|281300|281937|283195|283196|283207|283353|283368|344680|346087|794204|794205|794206|794207|794208|794209|799087|799088|800983|801231", + "text": "Severe congenital neutropenia" + }, + { + "baseId": "165951|430312|430316", + "text": "Hyperinsulinism due to HNF4A deficiency" + }, + { + "baseId": "165952|165953|178768", + "text": "MITOCHONDRIAL COMPLEX II DEFICIENCY, NUCLEAR TYPE 3" + }, + { + "baseId": "165955|165956|363948|364179|467814|486796|568564|570661|570782|574443|574445|645824|704103|715398|715399|727122|727123|755801|755802|845244|845245|949889", + "text": "Hyperphosphatasia with mental retardation syndrome 5" + }, + { + "baseId": "165960", + "text": "Single ventricle" + }, + { + "baseId": "165960", + "text": "small Atrial septal defect" + }, + { + "baseId": "165961", + "text": "ungueal dystrophy" + }, + { + "baseId": "165961", + "text": "spino-cellular carcinoma" + }, + { + "baseId": "165961|514155", + "text": "Alopecia" + }, + { + "baseId": "165961", + "text": "dyschromatosis" + }, + { + "baseId": "165961", + "text": "CANCER, ALOPECIA, PIGMENT DYSCRASIA, ONYCHODYSTROPHY, AND KERATODERMA" + }, + { + "baseId": "166013|166014", + "text": "Ectodermal dysplasia/short stature syndrome" + }, + { + "baseId": "166016|166017", + "text": "Hypogonadotropic hypogonadism 22 with anosmia" + }, + { + "baseId": "166018|166019|260788|590284|623299|681807|818255|965925", + "text": "Focal segmental glomerulosclerosis 8" + }, + { + "baseId": "166020|247498|247499|247500|576292|576293|576294|590027|623369", + "text": "Mental retardation, X-linked 61" + }, + { + "baseId": "166022|166023|428328|963135|972785", + "text": "Microcephaly, short stature, and impaired glucose metabolism 1" + }, + { + "baseId": "166025|368464|369854|369861|446886|501559|521783|524398|565128|626180|633944|633945|633946|709901|721442|749478|782281|818631|830846|830847|924069|932909|944621|954172", + "text": "2,4-Dienoyl-CoA reductase deficiency" + }, + { + "baseId": "166084", + "text": "PLATELET-ENDOTHELIAL CELL ADHESION MOLECULE 1 POLYMORPHISM" + }, + { + "baseId": "166086|166087|166088|166090|166093|166095|166096|166097|166098|166101", + "text": "Alloalbuminemia" + }, + { + "baseId": "166112|166113|408753|576352|656185|791278|961806", + "text": "Deafness, autosomal recessive 84" + }, + { + "baseId": "166142|166143|166144|308847|319276|319887|359755|525186|525188|565966|565974|638391|638392|712032|712033|723631|737203|767483|836277|836278|836279|902443|934825|955897|955898|964743|964744", + "text": "Neu-laxova syndrome 2" + }, + { + "baseId": "166145|166146|222780|230983|243280|243281|243282|243283|243284|243285|403138|403142|403143|403146|403150|403152|403159|403160|403167|403599|403602|403608|403620|403625|403626|403628|469319|469320|469727|470340|470352|470356|470357|470361|532653|532670|532671|532678|532681|533087|572879|572883|574860|574861|647629|647630|647631|647632|647633|647634|647635|647636|647637|653004|684779|694328|821299|847221|847222|847223|847224|852307|852948|928822|938560|938561|941223|950655|950656|960912", + "text": "Ciliary dyskinesia, primary, 30" + }, + { + "baseId": "166147|166148|918591|964141", + "text": "Myasthenic syndrome, congenital, 7, presynaptic" + }, + { + "baseId": "166149", + "text": "Charcot-Marie-Tooth disease, recessive intermediate d" + }, + { + "baseId": "166182|166183|166184|166185|166186|166192|187205|187206|187207|190125|190129|260850|414991|425622|428353|428354|428356|428357|443692|454720|454730|455177|455180|455183|455188|455453|481311|481451|481452|481725|488154|521049|521184|521236|521249|535289|550598|551772|560169|560270|560272|560274|560276|562863|562867|562878|562881|564817|564820|564828|564832|564833|579028|579115|612146|623231|633499|633500|633501|633502|633503|633504|633505|633506|633507|633508|633509|653866|678061|698824|698825|698826|698827|698828|698829|698830|698831|698832|698833|698834|698835|698836|698837|698838|698839|698840|698841|698842|698843|698844|698845|698846|698847|698848|709660|749262|749263|782187|790518|790519|798551|800667|815979|819560|830373|830374|830375|830376|830377|830378|830379|918923|923894|923895|923896|923897|932735|932736|932737|932738|944422|944423|954055|954056|954057|954058|963137|963571|964069|964718|964821|972716", + "text": "Mental retardation, autosomal dominant 31" + }, + { + "baseId": "166195|166196|166197|166198", + "text": "Mitochondrial complex 4 deficiency, nuclear type 17" + }, + { + "baseId": "166199", + "text": "Combined oxidative phosphorylation deficiency 22" + }, + { + "baseId": "166206|166207|185751|185752|215649|215650|353899|359810|364135|370650|384437|384438|407832|421784|444573|481236|481364|481365|481366|481367|481368|677430|678970|679768|679769|790946|790947|790948|790949|790950|790951|790952|858592|961042|961045|961785|969130|974519|974520", + "text": "Mitochondrial short-chain enoyl-coa hydratase 1 deficiency" + }, + { + "baseId": "166215|623005|623006|623013", + "text": "Glioblastoma multiforme, somatic" + }, + { + "baseId": "166215|623008|623014", + "text": "Oligodendroglioma" + }, + { + "baseId": "166215", + "text": "Metaphyseal enchondromatosis with d-2-hydroxyglutaric aciduria" + }, + { + "baseId": "166218|166219|166220|166221|166222|166224|363377", + "text": "Cowden syndrome 5" + }, + { + "baseId": "166303|167510|215090", + "text": "Early-onset parkinsonism-intellectual disability syndrome" + }, + { + "baseId": "166304|166305|166306|260231|360423|377076|377084|378076|378077|378082|378083|378110|378112|378114|378124|378277|378280|378293|378294|378312|378323|378326|379712|379713|379714|379715|379718|379719|379720|379721|404843|404844|410766|413604|422321|422322|446262|446266|469403|469411|470452|470457|470459|470460|470941|470948|470956|470958|471425|471427|507204|508206|508220|533568|533574|533622|533646|534143|534159|534161|535710|550642|571276|571278|571285|571290|571291|571295|571303|572927|572937|573569|573574|575114|575115|575116|614475|622051|622058|622063|648754|648755|648756|648757|648758|648759|648760|648761|648762|648763|648764|648765|648766|705541|728714|773153|773154|788939|791987|791988|816494|821333|821334|822159|822160|822161|822162|822163|822164|822165|822166|822167|822168|822169|822170|822171|822172|848466|848467|848468|848469|848470|848471|848472|848473|848474|848475|848476|848477|848478|858356|904943|929217|929218|929219|929220|929221|929222|938999|939000|939001|939002|939003|939004|939005|939006|939007|951120|951121|951122|951123|951124|951125|951126|951127|958856|958857|971146|971147|971148", + "text": "Epileptic encephalopathy, early infantile, 26" + }, + { + "baseId": "166346|166347|578377|626355|626356|626357|626358|626359|789934", + "text": "Cataracts, growth hormone deficiency, sensory neuropathy, sensorineural hearing loss, and skeletal dysplasia" + }, + { + "baseId": "166347|177103|177947|181382|193745|195045|251311|263244|267620|268631|284995|286978|288841|292026|292032|292033|293465|296770|296771|296774|296776|296778|296779|296782|296783|296786|318059|318060|318062|325979|325984|325996|332232|333745|343631|343665|343666|361067|361069|513949|513961|514013|550314|613458|801079|889930|889931|889932|889933|889934|889935|889936|889937|889938|889939|889940|889941|889942|889943|889944|889945|889946|889947|889948|889949|889950|889951|889952|889953|889954|889955|889956|889957|889958|889959|889960|889961|889962|889963|889964|889965|889966|889967|889968|889969|889970|891736|891737|983725|983747", + "text": "Cataract (disease)" + }, + { + "baseId": "166347", + "text": "growth hormone deficiency with short stature" + }, + { + "baseId": "166347", + "text": "partial sensorineural deafness" + }, + { + "baseId": "166361|166362|166363|188140|225871|264472|361193|363965|369776|369794|370245|370250|370251|370252|370256|370261|370275|370280|370297|370565|370587|370589|370591|370605|372170|413797|421706|444365|458308|458321|458326|458819|458830|458869|458870|458872|458879|458883|459330|459332|486455|486749|502157|502170|502171|502909|502920|511029|511794|511796|523999|524004|524292|524307|524308|524312|524540|524543|524546|524602|524604|562789|562794|562796|562801|562810|563485|565533|565540|578355|579520|579762|614335|637726|637727|637728|637729|637730|637731|637732|637733|637734|637735|637736|651823|651871|751406|767107|767109|767110|767111|767113|767114|767115|775479|777974|783272|783274|783275|790842|815989|820069|820070|821959|821960|821961|821962|821963|821964|822262|822263|835504|835505|835506|835507|835508|835509|835510|835511|835512|835513|835514|835515|835516|852162|925386|925387|925388|934550|934551|946376|946377|946378|946379|946380|946381|946382|955691|955692|970892|970893|970894", + "text": "Epileptic encephalopathy, early infantile, 31" + }, + { + "baseId": "166366|166369", + "text": "Hypogonadotropic hypogonadism 3 without anosmia" + }, + { + "baseId": "166402|166403|578578", + "text": "Porokeratosis 8, disseminated superficial actinic type" + }, + { + "baseId": "166440|166441|404862|800377", + "text": "Ovarian dysgenesis 4" + }, + { + "baseId": "166525", + "text": "Severe underweight in infancy childhood and adolescence" + }, + { + "baseId": "166525|624117", + "text": "Psychomotor retardation" + }, + { + "baseId": "166581|166583|166588|166594|166597|166600|166605|166608|166615|166619|166624|166631|166643|166647|166651|166652|166653|166657|166661|166676|166679|166682|166688|166691|166709|166712|166718|166726|166746|166756|166760|166786|166787|166800|166802|166818|166819|166825|166835|166840|166842|166847|166848|166849|166853|166856|166858|166862|166863|166881|166883|166909|166919|166941|166942|166945|166947|166961|166965|166981|166986|166992|166993|166995|167007|167015|167017|167023|167035|167045|167058|167069|167084|167091|167092|167096|167099|167107|167127|167128|167139|167145|167153|167156|167158|167160|167162|167163|167165|167168|167171|167187|167190|167194|167208|167210|167219|167222|167226|167238|167240|167245|167246|167247|167248|167256|167261|167262|167265|167269|167271|167279|167280|167283|167295|167303|167317|167327|167333|167334|167336|223422|514002|514192|514215", + "text": "Large for gestational age" + }, + { + "baseId": "166584|166589|166590|166591|166596|166602|166605|166608|166615|166621|166626|166628|166633|166637|166640|166646|166647|166657|166660|166663|166670|166673|166676|166679|166681|166689|166691|166695|166696|166699|166701|166702|166706|166709|166714|166715|166716|166718|166729|166730|166734|166740|166743|166745|166746|166751|166753|166754|166756|166761|166762|166763|166766|166767|166768|166774|166775|166777|166778|166781|166782|166792|166794|166796|166801|166802|166815|166819|166823|166829|166830|166832|166835|166839|166840|166845|166846|166855|166860|166866|166869|166870|166871|166872|166873|166874|166875|166876|166877|166881|166885|166887|166890|166893|166895|166896|166898|166901|166905|166907|166909|166918|166920|166921|166922|166924|166925|166926|166929|166931|166932|166940|166943|166944|166947|166954|166959|166961|166963|166965|166966|166967|166982|166983|166989|166990|166991|166998|167006|167007|167011|167012|167014|167021|167025|167034|167035|167038|167039|167043|167045|167047|167048|167049|167050|167051|167056|167058|167062|167066|167074|167076|167078|167079|167092|167098|167105|167113|167114|167116|167117|167120|167121|167124|167129|167130|167132|167137|167142|167143|167148|167152|167157|167159|167161|167167|167169|167178|167180|167185|167186|167190|167196|167197|167200|167203|167206|167214|167216|167218|167228|167229|167231|167232|167234|167236|167240|167247|167248|167256|167259|167268|167270|167274|167280|167283|167290|167296|167301|167306|167308|167309|167311|167315|167316|167320|167321|167328|167331|167332|167336|167340|167341|223411|223422|223430", + "text": "Normal pregnancy" + }, + { + "baseId": "166585|166591|166593|166612|166615|166618|166622|166625|166629|166630|166632|166636|166639|166641|166645|166647|166656|166664|166668|166670|166678|166683|166686|166689|166694|166697|166698|166704|166706|166715|166716|166718|166728|166729|166734|166736|166737|166743|166746|166764|166765|166769|166771|166772|166778|166785|166790|166791|166795|166797|166799|166802|166806|166808|166809|166810|166814|166819|166826|166830|166832|166834|166835|166838|166840|166865|166877|166892|166894|166897|166899|166901|166903|166906|166909|166923|166932|166935|166937|166947|166952|166954|166956|166958|166967|166973|166974|166976|166979|166980|166987|166994|166997|167002|167003|167015|167020|167026|167029|167032|167035|167042|167057|167060|167061|167068|167069|167074|167082|167085|167086|167087|167088|167090|167092|167102|167103|167107|167118|167126|167131|167134|167137|167147|167148|167154|167155|167172|167176|167180|167184|167192|167194|167199|167200|167209|167225|167227|167230|167235|167237|167243|167244|167248|167254|167263|167275|167276|167289|167294|167296|167300|167302|167303|167313|167318|167324|167335", + "text": "Gestational diabetes mellitus uncontrolled" + }, + { + "baseId": "166587|166594|166603|166611|166613|166635|166638|166644|166647|166653|166655|166657|166661|166665|166669|166684|166685|166691|166705|166706|166709|166715|166716|166719|166728|166729|166737|166741|166746|166756|166759|166776|166784|166788|166806|166812|166813|166817|166819|166823|166826|166854|166859|166860|166867|166877|166878|166888|166891|166900|166903|166908|166909|166914|166916|166917|166928|166930|166932|166938|166946|166949|166950|166956|166960|166963|166966|166972|166977|166996|166998|167007|167018|167021|167023|167028|167040|167051|167055|167063|167064|167065|167067|167069|167077|167080|167092|167097|167104|167108|167110|167115|167124|167132|167135|167137|167144|167146|167150|167166|167172|167180|167189|167193|167198|167205|167206|167211|167213|167215|167217|167221|167224|167233|167239|167240|167248|167254|167256|167265|167272|167277|167280|167283|167287|167288|167290|167296|167303|167307|167312|167314|167319|167322|167325|167326|167330|167336|223543", + "text": "Preeclampsia" + }, + { + "baseId": "167355|167356|920198", + "text": "Primary autosomal recessive microcephaly 13" + }, + { + "baseId": "167357", + "text": "Inflammatory skin and bowel disease, neonatal, 2" + }, + { + "baseId": "167358", + "text": "Mirror movements 3" + }, + { + "baseId": "167369", + "text": "Primary autosomal recessive microcephaly 12" + }, + { + "baseId": "167379|167380|167381", + "text": "Neuroendocrine neoplasm" + }, + { + "baseId": "167389|263250|361005|440711|622268|861283|969269", + "text": "Spasticity" + }, + { + "baseId": "167409|167410|167411", + "text": "Laurin-Sandrow syndrome" + }, + { + "baseId": "167413|167414|167415|167416|167417|205263|227161|360917|380443|424615|424656|919265|961651|964341", + "text": "Mental retardation, autosomal dominant 30" + }, + { + "baseId": "167459", + "text": "NEUROPATHY, HEREDITARY SENSORY AND AUTONOMIC, TYPE IID" + }, + { + "baseId": "167465|440249|622491|920004|920005|964593|964594", + "text": "Intellectual disability, X-linked, syndromic, Houge type" + }, + { + "baseId": "167466", + "text": "Retinal dystrophy with inner retinal dysfunction and ganglion cell abnormalities" + }, + { + "baseId": "167468|167469|539050|791343|802184|802185", + "text": "Pontocerebellar hypoplasia, type 1c" + }, + { + "baseId": "167472", + "text": "TYPE 2 DIABETES MELLITUS 5, SUSCEPTIBILITY TO" + }, + { + "baseId": "167473|167474|167475|167475|167476|167477|167478|236731|367083|367089|367090|368385|389592|406178|452052|452316|482270|500170|500178|500184|519236|519250|519251|519254|561367|631147|631148|631149|631150|631151|631152|631153|631154|631155|631156|631157|631158|631159|631160|631161|631162|631163|631164|631165|631166|651053|651169|679744|698029|698030|698031|698032|708785|720394|730207|816310|819365|827870|827871|827872|827873|827874|827875|827876|827877|827878|827879|827880|827881|827882|827883|827884|827885|827886|827887|827888|827889|827890|827891|827892|827893|850924|918827|923132|923133|923134|923135|923136|923137|923138|931884|931885|931886|931887|943464|943465|943466|943467|943468|943469|943470|943471|943472|943472|943473|953424|953425|953426|953427|953428|953429", + "text": "Sideroblastic anemia with B-cell immunodeficiency, periodic fevers, and developmental delay" + }, + { + "baseId": "167475|236729|236730|236731|236732|816310|943472", + "text": "Retinitis pigmentosa and erythrocytic microcytosis" + }, + { + "baseId": "167501|167502|178316|372621|372623|372638|372644|372648|373314|373319|373320|373327|373597|373602|375517|375518|408802|445120|462570|462573|462574|462578|462592|462593|462862|462870|462875|462877|462879|462883|463337|463339|463341|463352|463357|463364|463369|463377|463457|463459|463461|463463|463464|463467|463470|463479|504710|512056|512057|512058|527464|527467|527471|527495|527499|527501|527737|527739|527743|565861|565863|565865|565868|567181|567184|567186|568257|568260|568261|568263|568266|572205|576157|626220|641558|641559|641560|641561|641562|641563|641564|641565|641566|641567|641568|641569|641570|641571|641572|641573|641574|641575|641576|656195|702599|702600|713832|713833|725375|730898|738952|744759|753719|760285|769408|769411|787808|820544|820545|820546|840541|840542|840543|840544|840545|840546|840547|840548|840549|840550|840551|840552|840553|840554|840555|840556|840557|840558|840559|840560|840561|840562|840563|840564|840565|840566|840567|840568|840569|840570|840571|840572|840573|840574|851963|851965|852706|852708|926803|926804|926805|926806|926807|926808|926809|926810|926811|926812|936335|936336|936337|936338|936339|936340|936341|936342|936343|936344|936345|936346|936347|936348|936349|936350|936351|936352|940277|941047|948260|948261|948262|948263|948264|948265|948266|948267|948268|948269|948270|948271|957021|957022|957023|957024|957025|957026|960071|961240", + "text": "Combined oxidative phosphorylation deficiency 27" + }, + { + "baseId": "167590|167593|167595|167597|167601|167605|167608|167609|167612|167614", + "text": "epileptic encephalopathy, early infanitle, 1" + }, + { + "baseId": "167927|170213|170214", + "text": "Monocarboxylate transporter 1 deficiency, autosomal recessive" + }, + { + "baseId": "167930|167933|167936|170215|170216", + "text": "Monocarboxylate transporter 1 deficiency, autosomal dominant" + }, + { + "baseId": "167939", + "text": "Palmoplantar keratoderma and woolly hair" + }, + { + "baseId": "168042|168046|168047|168048|168053|194308|271236|273839|274119|274667|285391|286034|288354|288356|288357|288358|288359|288775|288783|427998|428000|428001|428002|430990|491568|538965|585621|586242|587512|588639|733280|884201|884202|884203|884204|884205|884206|884207|884208|884209|884210|884211|884212|884213|884214|884215|884216|884217", + "text": "Crigler-Najjar syndrome" + }, + { + "baseId": "168060|206986|206992|285585|286315", + "text": "D-2-hydroxyglutaric aciduria" + }, + { + "baseId": "168105|168107", + "text": "Malformation of the heart and great vessels" + }, + { + "baseId": "168166|168191|195012|297027|297047|297083|298909|298925|298999|303194|303203|303206|303222|303407|303412|303413|303415|303426|964105", + "text": "Sotos syndrome" + }, + { + "baseId": "168168|263193|263281|590070", + "text": "18 conditions" + }, + { + "baseId": "168552|513559|538953|578439", + "text": "Febrile seizures, familial, 1" + }, + { + "baseId": "168576", + "text": "EZH2-related disorder" + }, + { + "baseId": "168624|205031|243985|263296|263364|361003|361041|485953|513907|626445|626446|626447|742154|805068|805101|805102|861055|861056|905848", + "text": "Ventricular septal defect" + }, + { + "baseId": "168800|168804", + "text": "Brachydactyly, type B1Robinow syndrome, autosomal recessive" + }, + { + "baseId": "168841|168842|168843|168844|168845|168846|168847|168848|168849|207789|315788|429121|430995|495467|679093|679094|679095|679188|752193|866044|866045|866046|866047|866048|866049|866050|866051|866052|866053|866054|866055|866056|866057|866058|866059|866060|866061|866062|866063|866064|866065|866066|866067|866068|866069|866070|866071|868484|868485|963073", + "text": "Goldberg-Shprintzen megacolon syndrome" + }, + { + "baseId": "169007|801184", + "text": "Decreased head circumference" + }, + { + "baseId": "169016|169039|190891|192899|289000|289757|289779|289781|292804|292808|292867|293072|319325|319332|327852|327862|334164|334169|335745|335746|335794|335803|335834|340750|340754|347942|497068|578412", + "text": "Seckel syndrome" + }, + { + "baseId": "169192|208245|226386|271568|429774", + "text": "NDE1-related microhydranencephaly" + }, + { + "baseId": "169548|169570|171228|171230|171233|171241|171242|171244|179700|676957|676970|682183|974511|974512", + "text": "Congenital myopathy" + }, + { + "baseId": "169564", + "text": "Multi-minicore disease and atypical periodic paralysis" + }, + { + "baseId": "169692|351957|351958|351959|351988|352002|352006|352007", + "text": "Microcephalic osteodysplastic primordial dwarfism" + }, + { + "baseId": "169841|590085|801184|965474", + "text": "Sleep disturbance" + }, + { + "baseId": "169841|590085", + "text": "Paroxysmal choreoathetosis" + }, + { + "baseId": "170183", + "text": "Decreased activity of the pyruvate dehydrogenase complex" + }, + { + "baseId": "170189", + "text": "Skin/hair/eye pigmentation, variation in, 8" + }, + { + "baseId": "170190|448249|448384|448386|448440|516093|558599|628272|628273|628274|762092|774561|780772|787062|824427|824428|824429|850814|922163|922164|930665|930666|930667|942105|942106", + "text": "Immunodeficiency 37" + }, + { + "baseId": "170198", + "text": "Hydroxykynureninuria" + }, + { + "baseId": "170210|501748|539001", + "text": "Deafness, autosomal recessive 103" + }, + { + "baseId": "170213|788722", + "text": "Monocarboxylate transporter 1 deficiency" + }, + { + "baseId": "170219|170220", + "text": "Psoriasis 15, pustular, susceptibility to" + }, + { + "baseId": "170953|170954|170955|170956|170957|170958|424446|424447|425459|425459|450276|450400|450403|450428|450526|486606|517539|517642|517650|517656|517659|517793|557818|557820|557822|557867|557869|559049|560545|560547|612437|629309|629310|629311|629312|629313|629314|629315|629316|733077|747175|781114|799281|819104|819105|825605|825606|825607|825608|825609|825610|825611|825612|825613|850827|851388|922522|922523|922524|922525|931080|940687|942566|942567|942568|942569|952889|959623|960461|961933|961992", + "text": "Autoimmune lymphoproliferatiVe syndrome, type V" + }, + { + "baseId": "170959|170960", + "text": "Retinal dystrophy, juvenile cataracts, and short stature syndrome" + }, + { + "baseId": "170964", + "text": "Mitochondrial complex III deficiency, nuclear type 9" + }, + { + "baseId": "171000|203766|263200", + "text": "Epicanthus" + }, + { + "baseId": "171000|263200", + "text": "Abnormality of earlobe" + }, + { + "baseId": "171000", + "text": "Depressed nasal bridge" + }, + { + "baseId": "171004|404670|455456|455458|455557|456066|456283|456294|456302|493774|501577|560523|560668|584282|585186|585191|586446|586503|634783|634784|699477|790606|792758|831759|831760|831761|933255", + "text": "Deafness, autosomal recessive 66" + }, + { + "baseId": "171038|205371|205372|800382|800383|800384", + "text": "Premature ovarian failure 10" + }, + { + "baseId": "171039|171040|171041|171042|171043|215675|215676|215677|215678|513493|679589", + "text": "Spinocerebellar ataxia type 21" + }, + { + "baseId": "171057|171058|171061|172475|189194", + "text": "Polymorphic ventricular tachycardia" + }, + { + "baseId": "171072|171183|209432", + "text": "Aortic aneurysm" + }, + { + "baseId": "171075|415173|613502|614549|961028|962031", + "text": "Ehlers-Danlos syndrome" + }, + { + "baseId": "171109|171110|171111|171112|171113|172175", + "text": "Haemorrhagic telangiectasia 1" + }, + { + "baseId": "171120", + "text": "Early repolarization associated with ventricular fibrillation" + }, + { + "baseId": "171152|171153|171154|171155", + "text": "Haemorrhagic telangiectasia 2" + }, + { + "baseId": "171166|287195|287915|320711|329513|329573|336164|336174|338040|353302", + "text": "Dystonia, dopa-responsive" + }, + { + "baseId": "171167", + "text": "Hyperphenylalaninemia due to tetrahydrobiopterin deficiency" + }, + { + "baseId": "171175", + "text": "Marfan syndrome, incomplete" + }, + { + "baseId": "171185", + "text": "Altered myosin contractile function" + }, + { + "baseId": "171227|171235|208586|626272", + "text": "Myopathy, RYR1-associated" + }, + { + "baseId": "171229|171236", + "text": "Malignant hyperthermia and exertional rhabdomyolosis" + }, + { + "baseId": "171232", + "text": "Malignant hyperthermia equivocal with halotane" + }, + { + "baseId": "171236|361886|410595", + "text": "RYR1-Related Disorder" + }, + { + "baseId": "171238|171239", + "text": "Axial myopathy, late-onset" + }, + { + "baseId": "171240", + "text": "Muscular dystrophy and arthrogryposis" + }, + { + "baseId": "171247", + "text": "Exertional myalgia, muscle stiffness and myoglobinuria" + }, + { + "baseId": "171252|171253|171254|171255|227282|428365|438309|443730|538373|538374", + "text": "Mental retardation, autosomal recessive 46" + }, + { + "baseId": "171257", + "text": "Polyendocrine-polyneuropathy syndrome" + }, + { + "baseId": "171266|171267|171268|171269", + "text": "cerebellar-facial-dental syndrome" + }, + { + "baseId": "171266|171267|171268|171269|677444|677445", + "text": "Cerebellofaciodental syndrome" + }, + { + "baseId": "171280|259816|414996|480762|480763|480764|480765|821907|918939|961274|961275|961605|964249|970801|972809", + "text": "Epileptic encephalopathy, infantile or early childhood 2" + }, + { + "baseId": "171283|581245|581246|614541|918648", + "text": "Cardiac conduction disease with or without dilated cardiomyopathy" + }, + { + "baseId": "171288|171289|181485|446936|446939|446981|446987|514865|514896|514926|556509|556512|626468|626469|626470|626471|626472|626473|626474|626475|626476|626477|745491|745492|818829|818830|822358|903498|921534|929889|929890|941322|941323|951980|960396", + "text": "Immunodeficiency 38 with basal ganglia calcification" + }, + { + "baseId": "171705|171706|171707|204572|206797|243939|249882|249883|249884|249887|249888|249889|249890|249891|425368|425369|427800|427801|427804|427805|427809|427810|427811|447869|448028|448165|515840|515842|515848|515870|515877|515878|515880|515962|556531|557045|557047|557049|557262|557264|558495|558497|558499|614217|614218|627808|627809|627810|627811|627812|627813|627814|627815|627816|627817|627818|627819|627820|627821|627822|627823|650658|707388|707389|718949|730001|732417|732418|732419|746455|746456|746457|761898|761899|761900|800983|823927|823928|823929|823930|823931|823932|823933|823934|823935|823936|823937|823938|823939|823940|823941|823942|823943|823944|823945|918635|922005|922006|922007|922008|922009|930481|930482|941927|941928|941929|941930|941931|941932|941933|952400|952401|952402|952403|952404", + "text": "Neutropenia, severe congenital, 7, autosomal recessive" + }, + { + "baseId": "171728|171729|171730|171731|171732", + "text": "Paternal uniparental disomy of chromosome 14" + }, + { + "baseId": "171761|171762|359201|612617|622991|654719", + "text": "Stickler syndrome" + }, + { + "baseId": "171767|171768|171769|171770|211429|481146|682322", + "text": "Perrault syndrome 5" + }, + { + "baseId": "171783|171784|171785", + "text": "Mesoaxial synostotic syndactyly with phalangeal reduction" + }, + { + "baseId": "171796|171797|171798|171799|171800|260554|354262|368072|368366|966051", + "text": "Leukodystrophy, hypomyelinating, 9" + }, + { + "baseId": "171806|171807|171808|205009|215062|215063|367150|368164|578409|790320|790321|790322|790323|798518|798519|798520|903519|906376|918793", + "text": "Dyskinesia, familial, with facial myokymia" + }, + { + "baseId": "171811|255744|255745|293417|294628|294630|294633|294634|294636|294637|294640|294641|294645|294649|294651|294655|294658|294660|294666|294667|296136|296144|296145|296153|296179|296195|296211|299848|299856|299859|299868|299878|299881|299888|299890|299903|299912|299913|299916|299919|299923|299924|299930|299932|299935|299943|299944|299952|299953|299956|299958|299959|299963|299964|299966|299973|299975|299976|299977|299978|325355|325357|325358|332363|335034|335036|335039|341491|341499|341504|342991|342992|342995|342996|342998|343001|343005|343006|353674|620776|691637|691638|892507|892508|892509|892510|892511|892512|892513|892514|892515|892516|892517|892518|892519|892520|892521|892522|892523|892524|892525|892526|892527|892528|892529|892530|892531|892532|892533|892534|892535|892536|896006|896007", + "text": "Parkinson Disease, Dominant" + }, + { + "baseId": "171848|171849|171850|171851", + "text": "Macular dystrophy, vitelliform, 4" + }, + { + "baseId": "171866|171867|171874", + "text": "Absent or delayed speech development" + }, + { + "baseId": "171866|171867|243985|263200|263355|361071|679509|679510|679511|679512|679513", + "text": "Feeding difficulties" + }, + { + "baseId": "171866|189154|263234|859391", + "text": "Generalized seizures" + }, + { + "baseId": "171894|172292|178417|178418|178847|260442|264380|353897|438896|481817|514570|539011|550362|550607|550608|579357|589839|608878|611467|615239|622391|626176|679827|790801|798598|798599|806379|816467|964302|964923|970881|972721|973102|976655|976656", + "text": "Mental retardation, autosomal dominant 32" + }, + { + "baseId": "171907|171908", + "text": "Aortic aneurysm, familial thoracic 9" + }, + { + "baseId": "171911|171912|171913|171914|171915|171916|188238|188239|188240|188241|247600|247601|247602|247606", + "text": "Burn-McKeown syndrome" + }, + { + "baseId": "171920|171921|171922|724328|788848|961786", + "text": "Peroxisomal fatty acyl-coa reductase 1 disorder" + }, + { + "baseId": "171923|171924|171925|171926|171927|215293|361384|361385|425577|428210|428211|451561|452760|452763|452764|452765|452766|452768|452772|452782|452784|452786|453123|453128|453136|453139|453140|453141|453143|453145|453152|453162|453166|453169|453171|453180|453182|453184|453493|453494|453505|453507|453511|453516|453520|453522|453525|453538|453539|453547|453550|453552|453556|519592|519594|519595|519663|519863|519883|519884|519885|519889|519894|519898|519899|559185|559672|559674|559676|561803|561813|563302|563308|563311|563312|631780|631781|631782|631783|631784|631785|631786|631787|631788|631789|631790|631791|651130|679952|679953|686463|691481|691483|691484|698280|698282|734286|781800|828549|828550|828551|828552|828553|828554|828555|828556|828557|828558|828559|828560|828561|828562|828563|828564|828565|828566|923346|923347|923348|923349|923350|923351|923352|923353|932081|932082|932083|932084|932085|943699|943700|943701|943702|943703|953587|953588|953589|953590|953591", + "text": "Nemaline myopathy 10" + }, + { + "baseId": "171928|171929|171930|188138|429367|980846", + "text": "Thrombocytopenia 5" + }, + { + "baseId": "172081|172082|172083|172085|201742|201746|201752|614274", + "text": "Macular dystrophy with central cone involvement" + }, + { + "baseId": "172087|172088|172089|172090|172091|172092|792721|972780", + "text": "Filippi syndrome" + }, + { + "baseId": "172094|172095|181391|921215|935743|980342", + "text": "Polycystic liver disease 4 with or without kidney cysts" + }, + { + "baseId": "172096", + "text": "POLYCYSTIC LIVER DISEASE 4 WITH KIDNEY CYSTS" + }, + { + "baseId": "172097", + "text": "Platelet-type bleeding disorder 19" + }, + { + "baseId": "172098|172099|172100|172101|172102|260112|364006|464840|465651|466371|466390|466396|466397|466401|466637|529923|529924|529931|530005|530010|530011|530432|530436|530441|570119|570129|574041|577544|613033|644605|644606|644607|644608|644609|644610|644611|644612|644613|652846|653017|653020|653263|703654|726607|726608|755138|755139|770872|791585|798698|798699|802012|843760|843761|843762|843763|843764|843765|843766|843767|843768|843769|852111|852656|852658|852819|920361|927782|927783|937416|949371|949372|949373|957735|957736|960154|960155|960156", + "text": "Generalized epilepsy with febrile seizures plus, type 9" + }, + { + "baseId": "172103|172104", + "text": "Microcephaly and chorioretinopathy, autosomal recessive, 2" + }, + { + "baseId": "172121", + "text": "Leptin dysfunction" + }, + { + "baseId": "172130|172131|172132|172133|172134|172135|966395|966396|966397|966398", + "text": "Catel Manzke syndrome" + }, + { + "baseId": "172139|172140|172141|172142|172143|172144", + "text": "Aldosterone-producing adrenal cortex adenoma" + }, + { + "baseId": "172146|172147|172148|172149|172150|172151|172152|172153|172154|172155|172156|172157|172158|172159|172160|214763|214765|352059|438582|792122", + "text": "Deafness, X-linked 5" + }, + { + "baseId": "172164|792613", + "text": "Retinal dystrophy and obesity" + }, + { + "baseId": "172170", + "text": "Lacrimal duct defect" + }, + { + "baseId": "172185|172186|172187|172188|172189|172190|172191|255889|466018|466721|466723|467002|467005|530361|530563|530778|570496|645006|652665|693934|820885|844360|927962|949589|949590", + "text": "Ayme-gripp syndrome" + }, + { + "baseId": "172192|215431|441418|460935|460938|460939|460945|461027|461032|461034|461316|461321|461324|461328|461345|461346|461751|461752|481404|526007|526059|526065|526066|526067|526076|526077|526141|526143|526144|526150|526153|526506|526508|526512|526515|564515|564518|564523|564525|564527|565569|565572|565574|565577|567099|567100|567101|567113|567114|567116|570411|570413|570421|579718|639845|639846|639847|639848|639849|639850|639851|679776|712747|724341|724342|737904|752601|752603|768368|768369|768370|768373|802001|820345|838159|838160|838161|838162|838163|838164|838165|838166|838167|838168|838169|838170|838171|838172|838173|917083|919344|919345|919346|919347|926164|926165|926166|935449|935450|935451|935452|935453|947377|947378|947379|947380|970931", + "text": "Epilepsy, progressive myoclonic 7" + }, + { + "baseId": "172193|172193|172194|172195|172196|263996|578375|676935", + "text": "Temple-Baraitser syndrome" + }, + { + "baseId": "172193|172193|181517|181518|181519|181520|181521|181522|263996|578375|918595|918596", + "text": "Zimmermann-Laband syndrome 1" + }, + { + "baseId": "172283|172284|421230|626105|679039", + "text": "Mental retardation, autosomal recessive 47" + }, + { + "baseId": "172292|178380|178847|328813|328823|328826|328846|328848|328852|328853|328862|328871|328876|328886|328887|328892|328893|338815|338817|338819|338821|338828|338833|338843|338846|338852|338857|338860|338861|338864|338872|338877|338883|338885|338887|338915|338918|344859|344868|344882|344884|344898|344906|344907|344927|344930|346223|346226|346251|346252|346253|346256|346265|346267|346272|353443|353444|420148|424651|622210|858617|965287|965292", + "text": "Syndromic intellectual disability" + }, + { + "baseId": "172295", + "text": "Gillessen-Kaesbach-Nishimura dysplasia" + }, + { + "baseId": "172305", + "text": "Chronic atrial and intestinal dysrhythmia" + }, + { + "baseId": "172315|172315|172316|172317|172317|172318|172319|366990|366994|368248|500572|518913|519128|538972|562485|562493|630982|630983|630984|654315|827613|827614|918806|931798|943367|953362", + "text": "Polyglucosan body myopathy 2" + }, + { + "baseId": "172322|172323|221321|518637|677995", + "text": "Congenital heart defects, hamartomas of tongue, and polysyndactyly" + }, + { + "baseId": "172323|209332|677995|906242|906289", + "text": "Orofaciodigital syndrome" + }, + { + "baseId": "172604|228525", + "text": "Autosomal dominant hypohidrotic ectodermal dysplasia" + }, + { + "baseId": "172928", + "text": "ACTN2-related disorders" + }, + { + "baseId": "174350", + "text": "EYA4-Related Disorders" + }, + { + "baseId": "174363", + "text": "COL11A2- Related Disorder" + }, + { + "baseId": "174394|174395|174533|174534|304873|308593|308600|308601|313748|313768|313769|313803|313804|313861|313869|313878|353833", + "text": "Pulmonary Surfactant Metabolism Dysfunction, Dominant" + }, + { + "baseId": "174394|174395|174533|174534|191720|290057|290068|290121|290793|290900|294466|294471|294510|294514|294538|308600|308601|313748|313803|313804|313806|313869|313871|313878|317967|317979|327468|327473|328093|328424|329345|329393|332645|332647|332648|337343|338383|340987|343611|344449|345113|345864|345866|353323|353324|353833|365080|365083|365084|365092|365094|365167|365174|365182|365254|365272|414799|421243|433772|447899|447903|447904|447911|448057|448071|448116|448118|448227|488684|515872|515927|515997|619999|620000|627850|864414|864415|864416|864417|864419|864421|864422|864424|864425|864427|864430|864431|864433|864434|864435|864436|865180|865181|865182|865183|865184", + "text": "Osteogenesis Imperfecta, Recessive" + }, + { + "baseId": "175345|528518", + "text": "Malignant germ cell tumor of ovary" + }, + { + "baseId": "175405|258727", + "text": "ABCC9-Related Disorders" + }, + { + "baseId": "175458|360837|360838|362134", + "text": "Dyspnea" + }, + { + "baseId": "175969|237629", + "text": "Deafness, autosomal dominant 16" + }, + { + "baseId": "176408", + "text": "Vitelliform macular dystrophy 1" + }, + { + "baseId": "176639", + "text": "USH1G-Related Disorders" + }, + { + "baseId": "176733|344674|349635|349640|349645|349648|349657|349678|350651|350661|350674|350678|353581|514276|612109", + "text": "Arteriohepatic dysplasia" + }, + { + "baseId": "176758", + "text": "Childhood ganglioglioma" + }, + { + "baseId": "176785|513989", + "text": "Dural ectasia" + }, + { + "baseId": "176785|513903|513989", + "text": "Venous malformation" + }, + { + "baseId": "176785|513989", + "text": "Abnormality of digit" + }, + { + "baseId": "176924|178142|181536|275973|275974|275979|275984|275985|275990|275992|275993|276005|276006|276011|276018|276019|276020|276023|276024|276030|276031|276037|276052|276053|276186|276189|276198|276199|276201|276202|276204|276205|276221|276222|276230|276231|276234|276235|276236|276244|276246|276247|276248|276251|276252|276256|276257|276261|276262|276263|276316|276323|276331|276335|276336|276337|276339|276364|276379|276383|276384|276385|276388|276393|276394|276395|276396|276397|276398|276406|276408|276409|276410|276434|276435|276437|276446|276447|276450|276453|276454|276457|276458|276460|276461|276462|276463|276478|276479|276480|276483|276489|276491|276492|276493|276494|276503|276508|276517|276525|276526|276527|276533|276537|276549|276563|276564|438861|439303|696006|706602|718118|731600|731602|862015|862016|862017|862018|862019|862020|862021|862022|862023|862024|862025|862026|862027|862028|862029|862030|862031|862032|862033|862034|862035|862036|862037|862038|862039|862040|862041|862042|862043|862044|862045|862046|862047|862048|862049|862050|862051|862052|862053|862054|862055|862056|862057|862058|862059|862060|862061|862062|862063|862064|862065|862066|862067|862068|862069|862070|862071|862072|862073|862074|862075|862076|862077", + "text": "Caudal regression sequence" + }, + { + "baseId": "176988", + "text": "Inflammatory bowel disease 13" + }, + { + "baseId": "176988|227763", + "text": "ondansetron response - Efficacy" + }, + { + "baseId": "176988|227752|538603", + "text": "simvastatin response - Efficacy" + }, + { + "baseId": "177220|181445|354301|360916|361783|361784|361786|361787|361788|375817|442819|514150|514159|514160|537303|556459|800989|961430|961431|961432|961433|961434|961435", + "text": "Optic atrophy" + }, + { + "baseId": "177240|186055", + "text": "Abnormality of the intrahepatic bile duct" + }, + { + "baseId": "177312", + "text": "X-linked intellectual disability" + }, + { + "baseId": "177428", + "text": "Guanidinoacetate methyltransferase (GAMT) deficiency" + }, + { + "baseId": "177497|276791|276848|276849|276850|277130|277705|277709|277816|349939|349942|654885|967146", + "text": "Alternating hemiplegia of childhood" + }, + { + "baseId": "177728|205682|205683|205684|209003|404852|424905|430767|538287|611447|964596|976682|976683|976684", + "text": "Autism, susceptibility to, X-linked 4" + }, + { + "baseId": "177897", + "text": "Ocular impairment" + }, + { + "baseId": "177923|289467|289492|292684|292690|295405|299220|353650", + "text": "Congenital Stationary Night Blindness, Dominant" + }, + { + "baseId": "177947|181382|193745|195045|251311|267620|292026|292033|293465|296770|296774|296776|296778|296779|296782|296783|296786|550314|889930|889931|889932|889933|889934|889935|889936|889937|889938|889939|889940|889941|889942|889943|889944|889945|889946|889947|889948|889949|889950|889951|889952|889953|889954|889955|889956|889957|889958|889959|889960|889961|889962|889963|889964|889965|889966|889967|889968|889969|889970|891736|891737", + "text": "Hypoplasia of the iris" + }, + { + "baseId": "177947|181382|251311|267620|292032|296770|296771|296782|296786|359074|459553|459568|459812|492837|564449|628138|628139|628140|628142|638655", + "text": "Anterior segment dysgenesis 1" + }, + { + "baseId": "177947|181382|193745|195045|251311|267620|292026|292032|292033|293465|296770|296771|296774|296776|296778|296779|296782|296783|296786|550314|889930|889931|889932|889933|889934|889935|889936|889937|889938|889939|889940|889941|889942|889943|889944|889945|889946|889947|889948|889949|889950|889951|889952|889953|889954|889955|889956|889957|889958|889959|889960|889961|889962|889963|889964|889965|889966|889967|889968|889969|889970|891736|891737", + "text": "PITX2-Related Eye Abnormalities" + }, + { + "baseId": "178047", + "text": "Autosomal dominant SCN1A-related disorder" + }, + { + "baseId": "178055|178058|191370|273736|282565|282582|282594|283206|283227|283258|283259|283267|283293|283322|284810|284837|285292|285305|285321|285329|285355|285356|285364|285367", + "text": "Congenital Indifference to Pain" + }, + { + "baseId": "178058|191370|273736|282565|282594|283206|283227|283258|283267|283293|283322|284810|285355|285356", + "text": "Familial febrile seizures" + }, + { + "baseId": "178171|190059", + "text": "Pituitary adenoma, growth hormone-secreting, 2" + }, + { + "baseId": "178312|178313|178314|178315|244005|418553|481391|788772|918521", + "text": "Spinocerebellar ataxia, autosomal recessive 18" + }, + { + "baseId": "178326|918670", + "text": "Hypogonadotropic hypogonadism 15 with or without anosmia" + }, + { + "baseId": "178365|178366|178367|178369|178370", + "text": "Amyotrophic lateral sclerosis 22 with or without frontotemporal dementia" + }, + { + "baseId": "178368", + "text": "Amyotrophic lateral sclerosis 22 with frontotemporal dementia" + }, + { + "baseId": "178380|178381", + "text": "Alazami-Yuan syndrome" + }, + { + "baseId": "178407|178408|200688|200688|200689|200689|378642|469914|469920|469926|469931|469933|470842|470915|471374|471379|471382|471799|508104|534074|534081|534085|534165|534606|571718|573279|573283|573287|573956|573958|573964|649209|649210|649211|649212|649213|649214|649215|649216|653271|653686|694692|705821|776953|786560|821403|849084|849085|849086|849087|849088|929410|939211|939212|939213|960960", + "text": "Spinal muscular atrophy, jokela type" + }, + { + "baseId": "178411|190570|202181|203766|211086|215118|225802|225802|225802|225802|263190|263260|263262|263282|263307|263324|263325|263326|263327|263328|263330|263331|263357|263375|263388|361081|430979|514017|514162|514320|514321|514322|514323|514325|514326|514328|514329|514330|514331|514333|514334|514335|514336|539432|550127|576328|581716|590061|619844|626018|626019|802091|805066|822302|921237|921238|921239|921241|921242|921243|921253|921255|921257|921258|921259|921448|965493|965570|965574|965578|966049|971452|971454|976699|980514|980662|980684|980687|980698", + "text": "Autistic behavior" + }, + { + "baseId": "178412|178416|362591|362592|362593|362594|431934|861144|970520", + "text": "Dysmorphic features" + }, + { + "baseId": "178413", + "text": "generalized epilepsy with atypical absence seizures" + }, + { + "baseId": "178413|178414|178415", + "text": "tremors" + }, + { + "baseId": "178414", + "text": "generalized epilepsy with atypical absence and tonic/myoclonic seizures" + }, + { + "baseId": "178417|178418|816467|963652|963653|963655", + "text": "KAT6A syndrome" + }, + { + "baseId": "178441|178493|178598|178708|178758|224301", + "text": "Arterial dissection" + }, + { + "baseId": "178449|178483", + "text": "Diastolic dysfunction" + }, + { + "baseId": "178505", + "text": "Familial abdominal aortic aneurysm 1" + }, + { + "baseId": "178532", + "text": "Channelopathy" + }, + { + "baseId": "178551", + "text": "Subvalvular aortic stenosis" + }, + { + "baseId": "178663", + "text": "AV Block Third Degree Adverse Event" + }, + { + "baseId": "178708", + "text": "Cutaneous polyarteritis nodosa" + }, + { + "baseId": "178762", + "text": "Trifascicular block on electrocardiogram" + }, + { + "baseId": "178768", + "text": "Fatal infantile mitochondrial cardiomyopathy" + }, + { + "baseId": "178780|178781|178782|178783|178784|178785|481393|481394|481395|481396|681812|681813|788923|919840|919841|961346", + "text": "Combined oxidative phosphorylation deficiency 23" + }, + { + "baseId": "178798|178799|178800|178801|178802|178803", + "text": "Lissencephaly 6, with microcephaly" + }, + { + "baseId": "178813|638465|918014|962617|966641|966642|966643|966644|966645|966646|966647|966648|966649|966650|966651|966652|966653|966654|966655|966656|966657|966660|966661|966662|966663|983679", + "text": "Pituitary stalk interruption syndrome" + }, + { + "baseId": "178823|178824|178825|178826|538488|788932|802227|802228|816006|816007|919896|919897|920413", + "text": "CODAS syndrome" + }, + { + "baseId": "178827|178828|178829|178830|188289|216922|216923|377022|429761|429762|429763|429764|429765|429766|429767|429768|429769|429771|465728|465921|465924|529468|529789|529789|530043|530047|567680|569539|569975|569989|573715|619853|643922|643923|643924|643925|643926|643927|643928|643929|643930|643931|643932|643933|643934|643935|652689|653219|714737|714738|714739|714740|726435|726436|739961|739962|744886|754902|754908|754912|760259|779752|791523|791524|791524|818786|820766|843113|843114|843115|843116|843117|843118|843119|843120|843121|843122|843123|843124|852625|927565|927566|927567|927568|937221|937222|937223|937224|937225|937226|941111|941112|949168|949169|949170|949171|949172|949173|949174|949175|957628|960132|960133|961622", + "text": "Dyskeratosis congenita, autosomal recessive 6" + }, + { + "baseId": "178841|802251|802252|802253|802254|802255|980948", + "text": "Juvenile arthritis due to defect in LACC1" + }, + { + "baseId": "178848|178849|178850|178851", + "text": "Amelogenesis imperfecta, type IH" + }, + { + "baseId": "178852|178853|178854|513568|792758|906246", + "text": "Nephronophthisis 19" + }, + { + "baseId": "178852|178853|404667|404668|404669|404670|404670|455456|455458|455557|456066|456283|456294|456302|493774|501577|560523|560668|584282|585186|585191|586446|586503|634783|634784|699477|792758|831759|831760|831761|933255|961848", + "text": "Sclerosing cholangitis, neonatal" + }, + { + "baseId": "178855|178856|178857", + "text": "Fibrosis of extraocular muscles, congenital, 5" + }, + { + "baseId": "178858", + "text": "Premature coronary artery disease" + }, + { + "baseId": "178864|178865|178866|178867|178868|513074|513075|513076|818261|818262|818263|962721|962722", + "text": "Focal segmental glomerulosclerosis 9" + }, + { + "baseId": "178869|178871|178872|536756", + "text": "Ventriculomegaly with cystic kidney disease" + }, + { + "baseId": "178886|178887|178888|178889", + "text": "Cataplexy and narcolepsy" + }, + { + "baseId": "178906|205536", + "text": "Cavitary optic disc anomalies" + }, + { + "baseId": "180112|682317", + "text": "Cerebellar hemangioblastoma" + }, + { + "baseId": "180112", + "text": "Spinal hemangioblastoma" + }, + { + "baseId": "180112", + "text": "Retinal capillary hemangioma" + }, + { + "baseId": "180112|360844|360988|514057", + "text": "Pancreatic cysts" + }, + { + "baseId": "181116", + "text": "Congenital heart defects, multiple types, 3" + }, + { + "baseId": "181165|181166|271566|363718|365258|365262|365560|448378|448387|448399|448456|448459|516094|516095|516133|516135|628286|628287|628288|650765|650776|690680|696917|824547|824548|824549|824550|918666|930709|930710|942146|942147|942148", + "text": "Myasthenic syndrome, congenital, 15" + }, + { + "baseId": "181172|513496|538330|967251", + "text": "Myopathy, vacuolar, with casq1 aggregates" + }, + { + "baseId": "181222|434816|921468", + "text": "Early-onset coronary artery disease" + }, + { + "baseId": "181284|181285|425378|621000|621001|621002|621004|970694|970695", + "text": "Developmental and epileptic encephalopathy, 75" + }, + { + "baseId": "181286|181287|372457|408483|408484|434641|535321|621005|621006|621007|621011|621012|621014|791182|861035|959510", + "text": "Combined oxidative phosphorylation deficiency 24" + }, + { + "baseId": "181294", + "text": "decreased blood alpha-hydroxyisovalerate levels" + }, + { + "baseId": "181308|791385", + "text": "Lethal congenital contracture syndrome 6" + }, + { + "baseId": "181374|181375|181376|181377|181378|250390|250391|250392|250393|250394|250395|448961|448965|448980|448985|449150|449156|449246|449248|449250|449251|449253|449254|449278|449281|516726|516727|516728|516820|516821|516824|557692|558909|559392|628981|628982|628983|628984|628985|628986|628987|683134|683135|690890|697156|762416|819081|825201|825202|825203|825204|825205|825206|825207|922406|922407|922408|922409|930973|930974|930975|942402|942403|942404|942405|942406|952785", + "text": "Nemaline myopathy 9" + }, + { + "baseId": "181397", + "text": "Brain malformation" + }, + { + "baseId": "181398|244080|244081", + "text": "Pontocerebellar hypoplasia, type 2f" + }, + { + "baseId": "181401|226233|511244|970679|970680", + "text": "Epileptic encephalopathy, early infantile, 38" + }, + { + "baseId": "181402|452274|918571", + "text": "Hemiparesis" + }, + { + "baseId": "181402|181451|181452|181464|362521|444411|578517|578518|621026|621038", + "text": "Hydrocephalus" + }, + { + "baseId": "181406", + "text": "Regression of motor development with severe dystonia and corresponding basal ganglia lesions" + }, + { + "baseId": "181407|198685|360828", + "text": "Waddling gait" + }, + { + "baseId": "181407", + "text": "Marked Hypotonia" + }, + { + "baseId": "181408", + "text": "Classical primary microcephaly" + }, + { + "baseId": "181409|181423|181424|181440|181448|243981|243987|360942|361073|361074|361075|361076|624127|624128|624129|624130|624131|624132|624133|624134|624135|624136|624137|624138", + "text": "Brain atrophy" + }, + { + "baseId": "181409|624131|624133|624134|624137|624138|708891|904111|904112|904113|904114|904115", + "text": "Neurodevelopmental disorder and structural brain anomalies with or without seizures and spasticity" + }, + { + "baseId": "181410|227149|227150|227151|227152|227153|227154|227155|359599|425213|575514|578425|624065|626141|626380|626386|790428|792740|798540|798541|799338|903530|904199|920199|963132|964731|965658|965887|965888|966170|972783", + "text": "Hypotonia, infantile, with psychomotor retardation and characteristic facies 3" + }, + { + "baseId": "181412|480596|480597|480598|480599|480600|513542|788770|792744|918154|918875|918876|970533|970534", + "text": "Alkuraya-Kucinskas syndrome" + }, + { + "baseId": "181415|181418|247328|247329|247330|247331|247332|263257|263275|263348|263353|263355|263380|361695|361696|406053|514128|535693|581713|801072|857396|966614|966618|969329", + "text": "Failure to thrive" + }, + { + "baseId": "181416", + "text": "Cerebral ischemia" + }, + { + "baseId": "181419", + "text": "Neurodegenerative illness progressing to crippling dystonia and death with relentless cerebral atrophy" + }, + { + "baseId": "181420", + "text": "Severe primary microcephaly" + }, + { + "baseId": "181423|243981|243987|263279|362134|514032|789341|789342|789343|805096", + "text": "Hypoplasia of the corpus callosum" + }, + { + "baseId": "181423|514159|514160", + "text": "CNS hypomyelination" + }, + { + "baseId": "181424|181445|201836|259817", + "text": "Intractable seizure" + }, + { + "baseId": "181426|181450", + "text": "Severe brain malformation" + }, + { + "baseId": "181430", + "text": "Severe microlissencephaly" + }, + { + "baseId": "181430|613456|613457", + "text": "Exaggerated startle response" + }, + { + "baseId": "181432|237126|408431|408432|408433|408434|408437|408439|415294|461386|461397|461398|461901|461909|462240|503719|503722|526447|526721|526955|526960|526965|564854|564857|564859|566094|567473|567476|570890|570891|570896|640359|640360|640361|640362|693093|693094|838805|838806|838807|926353|926354|935706|956598|956599", + "text": "Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type a, 13" + }, + { + "baseId": "181434|583169|583170|919433|965222|965223", + "text": "Mental retardation, autosomal recessive 66" + }, + { + "baseId": "181435", + "text": "Early onset focal segmental glomerulosclerosis" + }, + { + "baseId": "181435", + "text": "Light complexion" + }, + { + "baseId": "181435|611342", + "text": "Galloway-Mowat syndrome 7" + }, + { + "baseId": "181437", + "text": "Hypohidrosis" + }, + { + "baseId": "181437", + "text": "COG6-related disorder" + }, + { + "baseId": "181438|904214", + "text": "Mild obesity" + }, + { + "baseId": "181438|514187|514192|514215|553301|904214", + "text": "Dolichocephaly" + }, + { + "baseId": "181441|514262|536033|626232", + "text": "Multiple mitochondrial dysfunctions syndrome 4" + }, + { + "baseId": "181441|287096|290249|362182", + "text": "Multiple mitochondrial dysfunctions syndrome" + }, + { + "baseId": "181444", + "text": "Autistic spectrum disorder with isolated skills" + }, + { + "baseId": "181447", + "text": "Iron deposition in globus pallidus" + }, + { + "baseId": "181450", + "text": "Severe cerebellar hypoplasia" + }, + { + "baseId": "181450", + "text": "Hydranencephaly" + }, + { + "baseId": "181450|189094|237371|919709", + "text": "Hydrocephalus, congenital, 3, with brain anomalies" + }, + { + "baseId": "181451|215783|512266|971072", + "text": "Developmental delay with short stature, dysmorphic features, and sparse hair" + }, + { + "baseId": "181452|181462|203232|361061|361062|362161|679520|679521|681597|682737|801079|801159|801164|815958", + "text": "Cerebellar atrophy" + }, + { + "baseId": "181452", + "text": "Bilateral squint" + }, + { + "baseId": "181453|263181|966614", + "text": "Abnormality of the skeletal system" + }, + { + "baseId": "181454|181534|683214", + "text": "Neurologic, endocrine, and pancreatic disease, multisystem, infantile-onset" + }, + { + "baseId": "181456", + "text": "Severe dystonia" + }, + { + "baseId": "181456|626261|971090", + "text": "Neurodevelopmental disorder with microcephaly, cataracts, and renal abnormalities" + }, + { + "baseId": "181458", + "text": "Severe cystic degeneration of the brain" + }, + { + "baseId": "181459|540564|971124", + "text": "Mental retardation, autosomal recessive 36" + }, + { + "baseId": "181460", + "text": "Brain iron accummulation" + }, + { + "baseId": "181461", + "text": "Noonan-like facies" + }, + { + "baseId": "181466|260331|494918|494927|537080", + "text": "Neurodegeneration with brain iron accumulation" + }, + { + "baseId": "181500|181501|414753|414754|980902", + "text": "Meckel syndrome 12" + }, + { + "baseId": "181502|181503|181504", + "text": "Multiple congenital anomalies/dysmorphic syndrome-intellectual disability" + }, + { + "baseId": "181522|424617|622759|919146", + "text": "Zimmermann-Laband syndrome 2" + }, + { + "baseId": "181523|181524|181525|364000|467981|469321|532255|532723|647204|653547|694266|694267|694268|704578|704581|704582|741341|846820|938422", + "text": "Tenorio syndrome" + }, + { + "baseId": "181537|181538|181539|181540|181541", + "text": "Cerebro-costo-mandibular syndrome" + }, + { + "baseId": "181559", + "text": "Peeling skin syndrome 3" + }, + { + "baseId": "181571|181572|550645|816008|971157", + "text": "Opitz GBBB syndrome, type II" + }, + { + "baseId": "181571|439220|552475|552476|552477|552478|552479|576361|576362|590719|705833|729070|792021|792022|816008|920109", + "text": "Hypertelorism, Teebi type" + }, + { + "baseId": "181578|181579|181580|181581", + "text": "Inactive tuberculosis" + }, + { + "baseId": "181585", + "text": "Nonsyndromic Hearing Loss and Deafness, Autosomal Recessive" + }, + { + "baseId": "181588|359076|709437", + "text": "Amelogenesis imperfecta, type IF" + }, + { + "baseId": "181613|181624|420752", + "text": "SDHB-Related Disorders" + }, + { + "baseId": "182469|204463", + "text": "Granular cell cancer" + }, + { + "baseId": "182469", + "text": "Neuroepithelial neoplasm" + }, + { + "baseId": "182679", + "text": "Renal cell carcinoma" + }, + { + "baseId": "183028|215048|215049|215050|215051|215052|215053|215054|215055", + "text": "Mediastinal germ cell tumor" + }, + { + "baseId": "184244", + "text": "Generalized hypopigmentation" + }, + { + "baseId": "184244|362817|551429", + "text": "Basal cell carcinoma" + }, + { + "baseId": "184747", + "text": "Lisch nodules" + }, + { + "baseId": "184747|222607|361014", + "text": "Subcutaneous neurofibromas" + }, + { + "baseId": "185491|363066|363579|363581|363586|613530|613531", + "text": "Pancreatic Neoplasms" + }, + { + "baseId": "185643|466188|677335|677981|822297", + "text": "Hereditary breast cancer" + }, + { + "baseId": "185667|185668", + "text": "Mental retardation, autosomal recessive 48" + }, + { + "baseId": "185669|185670|185671|185672|185673|185938|237483|237484|237485|237486|237487|237488|237489|237490|249193|254780|353906|362155|362156|414716|511032|512042|578506|609032|609033|624861|672273|679790|791290|805103|961309|961870|970976|970977", + "text": "Congenital contractures of the limbs and face, hypotonia, and developmental delay" + }, + { + "baseId": "185675|612049|612050", + "text": "Keratoderma with scleroatrophy of the extremities" + }, + { + "baseId": "185678|185679|185680|185681|185682|185683|185684|185685|185686|190178|236906|263872|263873|263874|263875|263876|263877|263878|263879|263880|263881|371695|371699|371707|371711|372684|374301|374310|374314|461460|461463|461674|461678|462296|503785|504431|526471|526474|526524|526531|527059|527061|564908|566171|566182|566193|567524|567527|567529|567534|567536|567538|567541|570985|570997|570999|640448|640449|640450|640451|640452|640453|640454|640455|640456|640457|640458|640459|640460|640461|640462|640463|652132|652395|656089|713150|713151|724708|724709|724710|724712|738272|738273|738274|738276|738277|744665|744769|752947|752948|752949|752950|768757|775948|784178|784179|784180|791169|820416|838991|838992|838993|838994|838995|838996|838997|838998|838999|839000|839001|839002|839003|839004|839005|839006|857622|903584|926384|926385|926386|926387|926388|935777|935778|935779|935780|935781|935782|935783|947655|947656|947657|947658|947659|947660|956657|956658|956659|956660|956661|956662|956663|956664|960014", + "text": "3-methylglutaconic aciduria with cataracts, neurologic involvement, and neutropenia" + }, + { + "baseId": "185692|205017|360041|360874|362052|362053|362054|362055|362056|362057|362058|367600|513940|514033|514048|514109|514112|514137|621021|621025|621026|621031|621035|621038|758701|792610|794093|794094|794095|794096|794097|794098|794099|794100|794100", + "text": "Corpus callosum, agenesis of" + }, + { + "baseId": "185715|576172|624089", + "text": "Spondylometaphyseal dysplasia, megarbane-dagher-melki type" + }, + { + "baseId": "185723", + "text": "appendicular lean mass relative to body height" + }, + { + "baseId": "185737", + "text": "Bile acid synthesis defect, congenital, 5" + }, + { + "baseId": "185738", + "text": "Diamond-Blackfan anemia 14 with mandibulofacial dysostosis" + }, + { + "baseId": "185738|185739|185740|185741", + "text": "Diamond-Blackfan anemia 15 with mandibulofacial dysostosis" + }, + { + "baseId": "185742", + "text": "Cataract 43" + }, + { + "baseId": "185937|205420", + "text": "Megalencephaly with thick corpus callosum, cerebellar atrophy, and intellectual disability" + }, + { + "baseId": "185937|205420|244091|244092|364116|538445|792787|919588|973050", + "text": "Macrocephaly, dysmorphic facies, and psychomotor retardation" + }, + { + "baseId": "185938", + "text": "Intellectual disability with episodic ataxia and congenital arthrogryposis" + }, + { + "baseId": "186053|295960|295964|295986|295990|296025|296062|296065|296070|296089|296111|296171|296228|297782|297787|297812|297863|297876|297904|297905|297912|297914|297945|297952|297971|298007|298013|298024|298040|301689|301698|301702|301726|301859|301872|301874|301875|301921|301947|301978|301993|301995|302004|302043|302047|302062|302092|302093|302125|302157|302158|302171|302259|302260|302266|302267", + "text": "Mononeuropathy of the Median Nerve" + }, + { + "baseId": "186358|964259|976826|983572", + "text": "Concentric hypertrophic cardiomyopathy" + }, + { + "baseId": "186713|360880", + "text": "Ventricular hypertrophy" + }, + { + "baseId": "186749|357627", + "text": "Peroxisome biogenesis disorder type 1A" + }, + { + "baseId": "186926", + "text": "PI NULL(WEST)" + }, + { + "baseId": "187056", + "text": "Hyperhomocysteinemia" + }, + { + "baseId": "187087|513299|626187|783385", + "text": "Dystonia 23" + }, + { + "baseId": "187089|468972|468975|468978|469946|469950|469956|470404|470408|471091|471093|533127|533230|533234|533240|533654|533658|573238|648255|648256|648257|648258|694481|694482|694483|694484|694486|694487|694489|694491|694492|694493|705175|745428|778555|847860|847861|847862|847863|852880|903638|929030|950859|958691|966355", + "text": "Spastic paraplegia 73, autosomal dominant" + }, + { + "baseId": "187090|187091|187092|187093|187094|187095|262448|262449|369797|370322|370324|370610|370612|370619|372184|458330|458335|458339|458344|458351|458360|458832|458834|458885|458892|459342|459347|481355|481356|524007|524314|524605|562811|562816|563229|563496|563499|563501|563505|563508|565547|565549|568514|568519|622394|626414|637737|637738|637739|637740|637741|637742|637743|637744|637745|651872|723337|736896|779297|783276|903557", + "text": "Coenzyme Q10 deficiency, primary, 7" + }, + { + "baseId": "187125|227368", + "text": "Familial thyroid dyshormonogenesis" + }, + { + "baseId": "187125|227368|332084|609269|609270", + "text": "Nongoitrous Euthyroid Hyperthyrotropinemia" + }, + { + "baseId": "187136|187137|425231|576188", + "text": "Keppen-Lubinsky syndrome" + }, + { + "baseId": "187145|244164|919438|983539|983540|983541", + "text": "Lethal congenital contracture syndrome 8" + }, + { + "baseId": "187146|187147|200707|248652|260940|513467|679798|972515", + "text": "Lethal congenital contracture syndrome 7" + }, + { + "baseId": "187198|187198|187199|211934|211934|211940|361073|361074|919956", + "text": "Optic atrophy 9" + }, + { + "baseId": "187203|626106|966204", + "text": "Lichtenstein-knorr syndrome" + }, + { + "baseId": "187204", + "text": "Anhidrosis, isolated, with normal sweat glands" + }, + { + "baseId": "187223|187224|187225", + "text": "Peeling skin with leukonychia, acral punctate keratoses, cheilitis, and knuckle pads" + }, + { + "baseId": "187226|919783", + "text": "Cole-Carpenter syndrome 1" + }, + { + "baseId": "187228|187229|187230|626000|626001|626002|626003|626004|626005|626006|790432", + "text": "Cole-Carpenter syndrome 2" + }, + { + "baseId": "187231|187232|573261", + "text": "Idiopathic livedo reticularis with systemic involvement" + }, + { + "baseId": "187233|187234|790901|919224|919225|919226", + "text": "Singleton-Merten syndrome 2" + }, + { + "baseId": "187235|187236|187237|187238|187239|187240|187241|187242|360795|361293", + "text": "Exstrophy-epispadias complex" + }, + { + "baseId": "187243|248750|789377", + "text": "Thauvin-Robinet-Faivre syndrome" + }, + { + "baseId": "187254", + "text": "Pulmonary alveolar proteinosis" + }, + { + "baseId": "187258|406603|406604|439489|439490|439492|454148|454149|454297|454298|454300|454301|454628|454944|520428|520647|520914|562566|564416|564419|564430|612476|612477|632871|632872|632873|632874|632875|691655|691656|721187|730324|829842|829843|829844|829845|829846|923726|932579|932580|932581|944255|953927", + "text": "Short-rib thoracic dysplasia 13 with or without polydactyly" + }, + { + "baseId": "187269|187270|513578|790711|790712|790713|919094", + "text": "Mental retardation, autosomal dominant 33" + }, + { + "baseId": "187358|398057|419703", + "text": "PTEN hamartoma tumor syndromes" + }, + { + "baseId": "187648", + "text": "Primary hyperaldosteronism" + }, + { + "baseId": "187685|187686|265660|267375|270617|538964", + "text": "Myasthenic syndrome, congenital, 3c, associated with acetylcholine receptor deficiency" + }, + { + "baseId": "187694|187695|187696|270108|427130|961761", + "text": "Lipoyltransferase 1 deficiency" + }, + { + "baseId": "187894|513881|513882|513883", + "text": "Spermatogenic failure 25" + }, + { + "baseId": "187937|187938|244984|244988|245001|445605|445605|540465|798702", + "text": "Epileptic encephalopathy, early infantile, 29" + }, + { + "baseId": "187940|187941|187942|187943|187944|363759|363952|364017|438217|442312|469657|469658|469661|469663|469665|469670|469674|469678|469679|470691|470696|470697|470703|470705|470707|470714|470715|470722|470724|470729|470733|470739|470741|471080|471231|471232|471233|471235|471238|471674|471676|471679|471681|471691|471695|471696|471700|471702|471703|533905|533906|533907|533909|533910|533912|533913|533915|533917|533921|533922|533924|533925|533926|533927|533928|533929|533931|533932|533937|533938|533951|533953|533966|533975|533977|534452|534454|534458|534460|571580|571583|571585|571587|571591|573143|573815|573817|573822|573824|575174|575175|575176|577896|580477|580486|580586|580589|580597|580633|580638|580642|580644|580648|580726|580734|580736|650484|650485|650487|650488|650489|650491|650493|650494|650495|650496|650499|650501|650502|650503|650504|650505|650506|650507|650508|650509|653231|653570|694637|695862|705718|705720|705721|705722|717229|717231|717232|728928|728929|728930|728931|728932|742662|742664|742665|742668|745339|745349|757841|757842|757847|757850|773365|773369|773370|776736|776818|778597|786504|786509|788305|798030|821355|821376|822187|822188|822189|822190|822191|822192|822193|822194|822195|822196|822197|822198|822199|822200|822201|822202|822203|822204|848822|848823|848824|848825|848826|848827|848828|848829|848830|848831|848832|848833|848834|848835|848836|848837|848838|848839|848840|848841|848842|848843|848844|848845|848846|848847|848848|848849|848850|848851|848852|848853|848854|848855|848856|853007|919937|929332|929333|929334|929335|929336|929337|929338|929339|929340|929341|929342|929343|939124|939125|939126|939127|939128|939129|939130|939131|939132|939133|939134|939135|951243|951244|951245|951246|951247|951248|951249|951250|951251|951252|951253|951254|951255|958967|958968|958969|958970|960327", + "text": "Epileptic encephalopathy, early infantile, 30" + }, + { + "baseId": "187945|187946|965946", + "text": "Deafness, autosomal dominant 67" + }, + { + "baseId": "187949", + "text": "Lissencephaly 7 with cerebellar hypoplasia" + }, + { + "baseId": "187950|187951|187952", + "text": "Torsion dystonia 2" + }, + { + "baseId": "187953|214480|225813|225818|225878|243900|263826|363334|364356|390746|578358|626640|906341|961250", + "text": "Smith-Kingsmore syndrome" + }, + { + "baseId": "187955|187956|187957|187958|791449|971017", + "text": "Microcephaly and chorioretinopathy, autosomal recessive, 3" + }, + { + "baseId": "187955", + "text": "Autosomal recessive chorioretinopathy-microcephaly syndrome" + }, + { + "baseId": "187959|187960|622374|792766|858558", + "text": "Mitochondrial myopathy-lactic acidosis-deafness syndrome" + }, + { + "baseId": "187962|205671|380421|380422|380423|380424|380425|380426|380427|380428|380429|380430|380431|380432|380433|380434|380435|380436|380437|380438|380439|380440|587772", + "text": "VATER association" + }, + { + "baseId": "188023|197886|360883|360973|485741|920586", + "text": "Aortic dilatation" + }, + { + "baseId": "188044", + "text": "Oculocutaneous albinism type 1" + }, + { + "baseId": "188056", + "text": "Colon Serrated Polyposis" + }, + { + "baseId": "188056|248607", + "text": "Sessile serrated polyposis cancer syndrome" + }, + { + "baseId": "188066|188067|461411|461715|461717|526312|526313|526323|526325|526487|526493|526494|526495|526504|526773|564756|564757|564768|565871|565889|567352|567354|567363|570727|570730|640162|640163|640164|640165|640166|640167|640168|640169|640170|640171|640173|640174|640175|640176|640177|640181|640194|640195|640196|640197|640198|652200|701829|712918|712919|712921|724515|752721|768497|768503|779550|820434|838570|838571|838572|838573|838576|838577|838581|838582|838596|838597|838598|838599|838600|851441|852363|852368|852615|926280|926281|926288|935603|935604|935605|935614|940221|940222|947505|947506|947508|947509|947512|947517|947518|947519|947520|956535|956539|956540|956541|956542|959994", + "text": "Immunodeficiency 39" + }, + { + "baseId": "188114|188115|214096|214097|214098|214562|214565|264294|406872|421592|511680|790632|790633|970496|972939|972940|972941|972942|972943|972944", + "text": "Mental retardation, autosomal dominant 35" + }, + { + "baseId": "188131|188131|188132", + "text": "Linear skin defects with multiple congenital anomalies 3" + }, + { + "baseId": "188142", + "text": "PPP2R1A-related neurodevelopmental disorders" + }, + { + "baseId": "188143|188144|188145|188146|188147|188148|188149|263760|361117|362361|513288|539004|622885|788807|788808|790664|919064", + "text": "Spinocerebellar ataxia, autosomal recessive 20" + }, + { + "baseId": "188150|188151", + "text": "Mandibulofacial dysostosis with alopecia" + }, + { + "baseId": "188152|188153|188154|188155|263933|404878|404879|413244|437817|440338|442578|446984|447041|447047|447049|447086|447088|447116|447121|447122|486730|514981|514987|514988|515005|515007|515017|515018|515024|515037|550344|556550|556552|556554|556581|556583|556585|556834|556836|556838|556974|556976|576391|612492|626572|626573|626574|626575|626576|626577|626578|653844|690335|718084|718085|731569|731570|731571|745562|761051|761052|761053|818837|821810|822493|822494|822495|822496|822497|822498|822499|822500|822501|858825|921564|921565|921566|921567|929952|929953|941367|941368|941369|952009|952010|962858|964109|964122", + "text": "Epileptic encephalopathy, early infantile, 32" + }, + { + "baseId": "188156|188157|188158|513555|521116|691693|691694|691695|691697|691698|691699|698776|698779|698781|698782|698785|709621|721215|734841|782142|790514|790515|830176", + "text": "Chops syndrome" + }, + { + "baseId": "188198|188199|188200|188201|205150|205747|205748|252244|252289|252303|415044|511656|614300|614301|614302|614303|614304|622366|622367|677033|789400|816313|977220|977221|977222|980459|980460|983810", + "text": "Ehlers-Danlos syndrome due to tenascin-X deficiency" + }, + { + "baseId": "188212|188213|188214|226239|226240|226241|552291|610533|612183|612184|677957|818723|918597|918598", + "text": "Stromme syndrome" + }, + { + "baseId": "188236|191777|326590|489752", + "text": "Rhizomelic chondrodysplasia punctata type 5" + }, + { + "baseId": "188286|244018|360903", + "text": "Bilateral ptosis" + }, + { + "baseId": "188286|360903", + "text": "Stridor" + }, + { + "baseId": "188287|188288|188289|188289|188290|377022|429761|429762|429763|429764|429766|429767|429768|429769|465728|465921|465924|529468|529789|530043|530047|567680|569539|569975|569989|573715|643922|643923|643924|643925|643926|643927|643928|643929|643929|643930|643931|643932|643933|643934|643935|652689|653219|714737|714738|714739|714740|726435|726436|739961|739962|744886|754902|754908|754912|760259|779752|791524|818786|820766|843113|843114|843115|843116|843117|843118|843119|843120|843121|843122|843123|843124|852625|858660|927565|927566|927567|927568|937221|937222|937223|937223|937224|937225|937226|941111|941112|949168|949169|949170|949171|949172|949173|949174|949175|957628|960132|960133|961420|962894|965625|969609|975948", + "text": "Pulmonary fibrosis and/or bone marrow failure, telomere-related, 4" + }, + { + "baseId": "188572|224443|622075|622077|622079|622080|967278|980501", + "text": "Long QT syndrome 8" + }, + { + "baseId": "188597|513443", + "text": "CACNA1C-related condition" + }, + { + "baseId": "188776|481553|622331|918844|918845", + "text": "Night blindness, congenital stationary, type 1g" + }, + { + "baseId": "188778", + "text": "Telomere length, mean leukocyte" + }, + { + "baseId": "188779|189041|202279|260857", + "text": "Early onset epileptic encephalopathy" + }, + { + "baseId": "188883|190898|190898|192531|193669|196060|223011|256170|256171|270858|328422|328428|338380|338381|338382|338387|338390|338398|338401|338404|338407|344439|344440|344447|344448|344452|345842|345847|345848|345852|345855|345859|345860|345861|432334|610082|610083|610084|619859|671989|671990|671991|671992|671993|671994|671995|671996|671997|671998|682343|727174|740744|800032|877479|877480|877481|877482|877483|877484|877485|877486|877487|877488|877489|877490|877491|877492|877493|877494|877495|877496|877497|877498|877499|877500|877501|877502|877503|877504|880515|880516|880517|977283", + "text": "Osteogenesis imperfecta, type XI" + }, + { + "baseId": "188893|514319", + "text": "Neurodevelopmental disorder with spastic quadriplegia and brain abnormalities with or without seizures" + }, + { + "baseId": "189049|431836", + "text": "X-linked retinitis pigmentosa" + }, + { + "baseId": "189079|408742|480548|480549|581865|970972|970973", + "text": "Congenital hypotonia, epilepsy, developmental delay, and digital anomalies" + }, + { + "baseId": "189103|247572|247573|247574|247575|286038|286040|286047|286061|286065|286072|286801|286803|286808|286825|286851|289094|289096|289097|289468|289470|289472|289475|289476|496231|518175|532282|558067|558069|558428|560617|561464|561465|561466|561471|571932|571935|571936|572637|572639|574748|629944|629945|629946|629947|629948|629949|629950|629951|629952|647214|647215|647216|647217|647218|647219|647220|647221|647222|704593|704594|708234|708235|708236|708237|708238|708239|708240|708241|708242|708243|715964|715965|715966|715967|715968|715969|715970|715971|715972|719844|719845|719846|719847|719848|719850|719851|727710|727711|730138|731216|733449|741352|741354|756436|756438|763194|774824|781312|781313|790228|819156|826414|826415|826416|826417|826418|846830|846831|846832|850904|884732|884767|922749|922750|922751|922752|928701|928702|928703|928704|931380|931381|931382|931383|931384|931385|938429|942891|942892|942893|942894|942895|950515|950516|953082|953083|953084|960265|960475|960476", + "text": "Xanthinuria type II" + }, + { + "baseId": "189152|189153", + "text": "all trans retinoic acid (ATRA) response" + }, + { + "baseId": "189167", + "text": "Myopathy, lactic acidosis, and sideroblastic anemia 3" + }, + { + "baseId": "189176|227684|227685|227686|424606|511467|535699|550354|614258|615905|653810|653815|798524|964218|964815", + "text": "Mental retardation, autosomal dominant 41" + }, + { + "baseId": "189177|471576|534292|534448|574134|575269|649487|649488|649489|649490|649491|649492|653336|682340|694731|695875|849336|849337", + "text": "Dystonia 26, myoclonic" + }, + { + "baseId": "189353", + "text": "altered potassium channel function" + }, + { + "baseId": "189551|360830", + "text": "Bilateral talipes equinovarus" + }, + { + "baseId": "189551|360830", + "text": "Restrictive ventilatory defect" + }, + { + "baseId": "189551|360830", + "text": "Spinal rigidity" + }, + { + "baseId": "189551|360830", + "text": "Areflexia of lower limbs" + }, + { + "baseId": "189551|360830", + "text": "Thoracic kyphoscoliosis" + }, + { + "baseId": "189940|224203|360948|360976", + "text": "Heart disease" + }, + { + "baseId": "190032|965904|965905", + "text": "Primary autosomal recessive microcephaly 14" + }, + { + "baseId": "190033|190034|190036|190037|190039|354157", + "text": "Cone-rod dystrophy 21" + }, + { + "baseId": "190048|190049|410839|446299|611435|614477", + "text": "Mental retardation, autosomal dominant 38" + }, + { + "baseId": "190050|190051|190052|425302|481127|509061", + "text": "Brugada syndrome 9" + }, + { + "baseId": "190053|190054|328024|328031|328032|328033|328034|328038|328040|328041|328042|328046|328047|328055|328066|328068|328071|328079|328081|328085|328087|328091|328095|328100|328101|328103|328112|328114|328115|328120|328122|328144|328145|337842|337843|337848|337849|337855|337860|337863|337865|337867|337870|337876|337879|337883|337886|337888|337891|337900|337904|337912|337920|337926|337933|337940|337941|337942|337944|337950|337951|337953|337961|337966|337967|337971|337972|337980|338017|338021|338022|338025|338027|344101|344104|344105|344108|344111|344112|344114|344115|344118|344120|344121|344125|344129|344132|344135|344136|344140|344145|344147|344150|344153|344155|344156|344159|344165|344166|344191|344200|344201|345493|345494|345500|345504|345505|345507|345528|345531|345532|345538|345539|345540|345543|345547|345550|345551|345556|345558|345562|345563|345565|345567|345570|345572|345577|345595|715382|755784|755785|771438|778470|877209|877210|877211|877212|877213|877214|877215|877216|877217|877218|877219|877220|877221|877222|877223|877224|877225|877226|877227|877228|877229|877230|877231|877232|877233|877234|877235|877236|877237|877238|877239|877240|877241|877242|877243|877244|877245|877246|877247|877248|877249|877250|877251|877252|877253|877254|877255|877256|877257|877258|877259|877260|877275|880500|880501|880502|880503|880504|880505|880506|880507", + "text": "Palmoplantar keratoderma, nonepidermolytic, focal 2" + }, + { + "baseId": "190074", + "text": "Spinocerebellar ataxia 41" + }, + { + "baseId": "190094", + "text": "Microcephaly with or without chorioretinopathy, lymphedema or intellectual disability (MCLID)" + }, + { + "baseId": "190096|190097|190098|190099|622307|970666", + "text": "Basal ganglia calcification, idiopathic, 6" + }, + { + "baseId": "190112|214746|490569|578308|578309|653223|778392", + "text": "Familial adenomatous polyposis 3" + }, + { + "baseId": "190115|190116|190117|790939|983751|983752|983753|983754|983755|983756|983757|983758|983759|983760|983761", + "text": "Hypomagnesemia, seizures, and mental retardation 1" + }, + { + "baseId": "190135|190136|190137|790596|790597", + "text": "Lethal congenital contracture syndrome 9" + }, + { + "baseId": "190151|247440|247441|247442|247443|247619|247733|613863|965450|969295", + "text": "Russell-Silver syndrome" + }, + { + "baseId": "190153|622967|682371", + "text": "Epilepsy, familial adult myoclonic 2" + }, + { + "baseId": "190155|190156|190157|190158|190159|225837|264105|363943|366879|406078|406079|406081|406084|425516|451618|451621|451625|451631|451632|451644|451649|451896|451908|451911|451913|451915|451916|451917|451927|451953|451954|451955|451962|451967|451972|451980|451982|452126|452129|452132|452136|452138|452145|452160|518697|518702|518704|518707|518711|518714|518717|518752|518760|518762|518767|518924|518925|518927|518963|518970|518972|518980|518982|553165|558738|558740|558742|558744|558746|558748|559271|559273|559275|559277|561094|561098|561102|561105|562249|562255|562261|576710|578994|579056|579086|625790|630732|630733|630734|630735|630736|630737|630738|630739|630740|630741|630742|630743|630744|630745|630746|630747|630748|630749|630750|651057|653856|653915|677414|697744|697745|697746|708461|743896|747870|747872|763511|763513|763514|781503|781505|781506|790314|790315|795307|798516|801984|801985|801986|802056|819311|821881|821882|821883|821884|821885|821886|827300|827301|827302|827303|827304|827305|827306|827307|827308|827309|827310|827311|827312|827313|827314|827315|827316|827317|851260|851264|859210|922985|922986|922987|922988|931681|931682|931683|931684|931685|931686|931687|931688|931689|931690|939926|940734|943250|943251|943252|943253|943254|943255|953295|953296|953297|959674|963531|964210|964211|969700|970749|977195", + "text": "Myoclonic-atonic epilepsy" + }, + { + "baseId": "190163|190164|917886", + "text": "Microphthalmia, isolated, with coloboma 10" + }, + { + "baseId": "190165|190166|190167|190168", + "text": "Spermatogenic failure, X-linked, 2" + }, + { + "baseId": "190169|805124|861029", + "text": "Trichothiodystrophy 5, nonphotosensitive" + }, + { + "baseId": "190175|190176|190177", + "text": "46,XY sex reversal 10" + }, + { + "baseId": "190179|190180|248761|248762|248763|248764|421212|427716|788735|861040|861041|918481", + "text": "Leukodystrophy, hypomyelinating, 10" + }, + { + "baseId": "190181|190182|190183|190184|190185|190186|678051|964119", + "text": "Brachydactyly-arterial hypertension syndrome" + }, + { + "baseId": "190187|789121", + "text": "Pontocerebellar hypoplasia type 3" + }, + { + "baseId": "190188|190189", + "text": "Combined oxidative phosphorylation deficiency 25" + }, + { + "baseId": "190381|192972|193029|193111|193489|194681|254797|254798|254799|254805|254808|254812|254813|254814|318893|318894|318895|318899|318906|318910|318911|318916|318920|318921|318923|319016|327277|327278|327289|327290|327292|327295|327301|327305|327319|327327|327334|327336|327337|327338|327349|327452|333427|333434|333471|333482|333483|333496|333510|333515|333536|333537|333538|333543|333546|333555|335132|335149|335152|335163|335173|335180|335181|335196|335197|335212|335213|335230|335235|335237|335248|335297|335357|335365|353263", + "text": "Acquired porencephaly" + }, + { + "baseId": "190422|190423|256719|256722|256723|271607|297283|299226|303465|303468|342322|342336|342348|342352|347747|347762|349112|349132|349138|349140|349145|349147", + "text": "Paget disease of bone" + }, + { + "baseId": "190426|204583|204584|204585|204586|204587|204588|362062|919233|964333", + "text": "Short stature with nonspecific skeletal abnormalities" + }, + { + "baseId": "190563|205286|362184|374023|413396|429621|539057|614015|614017|614020|614021|614022|919554|919555|919556|919557|919558|919559|919560|919561|919562|919563|920342", + "text": "Prader-Willi syndrome" + }, + { + "baseId": "190611|190612|190613|266005|309229|309233|309235|309249|309250|309263|309266|313917|313919|313920|313925|319831|319832|319834|319835|320337|320343|320344|320349|320350|320356|320365|320372|320375|613962|865259|865260|865261|865262|865263|865264|865265|865266|865267|865268|865269|868428", + "text": "Split hand-foot malformation 3" + }, + { + "baseId": "190642|267606|359211|364354|364355|414726|421163|442610|556627|626776|655030|780306|818831|822665|941428|941429", + "text": "Spondyloepimetaphyseal dysplasia with joint laxity" + }, + { + "baseId": "190659|190660|243346|283711|284399|286121|286148|286149|286164|286776|286862|286863|286867|286869|287482|287485|287486|288269|288271|289167|289171|289180|289511|289554|289565|289594|290953|290954|290962|290968|290981|291188|291192|291217|291225|293496|304108|304131|307702|312729|317489|318129|322018|322037|322041|322064|322093|329480|331296|331312|331333|331349|333815|333854|338138|338203|338215|340050|340054|340078|340097|343799|343803|349090|350017", + "text": "Spastic paraplegia, autosomal dominant" + }, + { + "baseId": "190793|192097|192636|193028|194107|194661|215290|215291|246954|251245|251246|251248|251249|251250|251251|251255|251256|251257|251258|251259|251262|251263|251264|251265|251267|251268|251269|265669|266002|268088|268281|269737|272107|272439|272446|272805|273142|273662|291301|291305|291312|291314|291315|291320|291321|291326|291328|291329|291337|291339|291348|291349|291357|291362|291363|291367|291371|291375|291377|291378|291379|292375|292376|292378|292381|292384|292398|292404|292422|292424|292429|292430|292431|292449|292450|292453|292456|292459|292463|292472|292474|292476|292479|292480|292481|292485|292495|292500|292507|292509|292517|292518|295787|295788|295793|295799|295802|295803|295809|295812|295815|295832|295833|295834|295840|295841|295842|295843|295844|295850|295860|295862|295863|295864|295865|295866|295867|295868|295870|295874|295878|295879|295881|295882|295884|295888|295895|295896|295897|295902|295903|295905|295913|295914|295915|295917|295920|295921|295923|295926|295928|295932|295934|367354|367365|367714|367717|368789|368795|368806|368807|406356|433581|443505|488686|489919|491191|500348|500628|500630|500635|500817|500826|500840|500962|584829|612660|620135|620136|655570|659955|709003|720602|720605|734246|734248|748471|748479|764132|795463|799329|799330|889475|889476|889477|889478|889479|889480|889481|889482|889483|889484|889485|889486|889487|889488|889489|889490|889491|889492|889493|889494|889495|889496|889497|889498|889499|889500|889501|889502|889503|889504|889505|889506|889507|889508|889509|889510|889511|889512|889513|889514|889515|889516|889517|889518|889519|889520|889521|889522|889523|889524|889525|889526|889527|889528|889529|889530|889531|889532|889533|889534|889535|889536|889537|889538|889539|889540|889541|889542|889543|891694|891695|891696|891697|891698|891699|891700|977202", + "text": "FLNB-Related Spectrum Disorders" + }, + { + "baseId": "190802|227346", + "text": "Bone mineral density quantitative trait locus 1" + }, + { + "baseId": "191253|224877|263252|360913|360914|425203|496110", + "text": "Growth delay" + }, + { + "baseId": "191263|268075|268448|292256|292257|292263|292264|292285|297000|297001|297011|297012|297043|297046|297056|331416|331417|331418|331420|331425|331426|331428|331429|331434|341735|341736|341740|341742|341748|341749|347094|347098|347099|347100|347101|347104|347110|347113|347115|347116|348420|348425|348426|348429|348430|348431|348433|348439", + "text": "Smith-McCort dysplasia" + }, + { + "baseId": "191328|195870|195870|214063|214064|214065|226046|226047|226048|226049|226050|226051|272293|307590|544093|613501|792760", + "text": "Heimler syndrome 2" + }, + { + "baseId": "191401|192021|238372|360822|366028|511336|628711|790070|790071|970714|970715", + "text": "Early infantile epileptic encephalopathy 62" + }, + { + "baseId": "191401|192021|238372|360822|513175|513176|513177|513178|816441|964166", + "text": "Epilepsy, familial focal, with variable foci 4" + }, + { + "baseId": "191565|550367", + "text": "SCN8A-related disorder" + }, + { + "baseId": "191884", + "text": "SCN1A-Related Disorders" + }, + { + "baseId": "191890", + "text": "FLNA-related disorder" + }, + { + "baseId": "192240|192241|194311|194312|268964|273740|329344|329348|329350|329353|329358|345360|345364|345365|345368|346743|346744|346745|550125|586653|589676|688805|694141|861144|878111|878112|878113|878114|878115|878116|878117|878118|878119|878120|878121|878122|878123|878124|878125|878126|878127|878128|878129|878130|880565|880566", + "text": "Growth hormone deficiency" + }, + { + "baseId": "192598|192599|192600|194555|194558|194559|254272|291930|291932|291938|291943|291951|293328|293357|293358|293360|296667|296670|296671|296674|296675|296681|296691|296699|314845|314861|314862|314865|314867|314872|314873|314879|321649|321650|321653|322134|322145|323103|327685|327736|327743|327744|327745|327748|327749|328816|328819|328827|331427|338167|338170|338210|338239|339697|340151|344312", + "text": "Congenital Stationary Night Blindness, Recessive" + }, + { + "baseId": "192662|322465|331847|331854|334830|334832|334837|338871|344705|344707|349683|349686|349687|349688|349692|350684|350687|654899", + "text": "Congenital dyserythropoietic anemia" + }, + { + "baseId": "192995|205231|285543|288937|288967|288979|296803|298736|298743|302946|303128|318655|318659|318675|318687|326790|326934|332972|333048|333051|333068|333083|333105|334543|334549|334732|334798|334799|334803|334807|334818|334825", + "text": "Hereditary sensory and autonomic neuropathy type II" + }, + { + "baseId": "193191|202453|282352|282353|282354|282355|282359|282360|282369|283031|283039|283042|283043|283093|283094|284604|284606|284613|284630|285054|285055|285062|285069|311035|311128|311129|317606|317661|317686|331773|331794|331804|333249|333251|353541", + "text": "Early Infantile Epileptic Encephalopathy, Autosomal Dominant" + }, + { + "baseId": "193483|378472|485873|485874|485875|485876|805117|816357", + "text": "Short stature, facial dysmorphism, and skeletal anomalies with or without cardiac anomalies" + }, + { + "baseId": "193507|312076|312079|312081|312083|312085|312088|317728|317744|317745|317747|317748|317749|317755|323771|323789|323792|323793|323795|323796|323804|323809|323818|323831|323837|323843|324482|324490|324493|324496|324502|324525|324539|324545|324546|324547|724175|866823|866824|866825|866826|866827|866828|866829|866830|866831|866832|866833|866834|866835|866836|868581|868582", + "text": "Metaphyseal anadysplasia" + }, + { + "baseId": "193524|324572|324574|324585|324589|324595|334144|334147|334149|340832|340838|340839|340842|342222|342224|703545|770594|874825|874827|874828|874829|874830|874831|874832|874833|874834|874835|874836|874837|874838|874839|874840|874841|876633", + "text": "UMOD-Associated Kidney Disease" + }, + { + "baseId": "193961", + "text": "Classic multiminicore myopathy" + }, + { + "baseId": "194348|207867|264645|965582", + "text": "Focal seizures with impairment of consciousness or awareness" + }, + { + "baseId": "194351|278697|278726|278912|278917|280044|280090|280169|280171|283985|289693|289714|290450|290472|290485|290486|293545|293548|294144|320697|320698|320704|329501|329502|329506|329507|329508|329509|336094|336097|336106|336119|336131|338009|338016|338023|338038|353093|353647", + "text": "Cleft Lip +/- Cleft Palate, Autosomal Dominant" + }, + { + "baseId": "194410|250761|286996|287001|287003|287024|287070|287788|287814|289162|289967|289968|289969|289972|289975|289986|290138|290549|290561|290631|290634|293058|293472|306486|314291|316039|320896|328007|328018|328020|329365|339623|345381|346754|346763|353640|353641", + "text": "Congenital Myasthenic Syndrome, Recessive" + }, + { + "baseId": "195230|291713|291719|291720|291722|291724|291725|291726|293046|293047|293051|293052|293054|296315|296319|296366|297144|311806|311813", + "text": "Combined Pituitary Hormone Deficiency, Recessive" + }, + { + "baseId": "195354|203840|203843|961746|976516", + "text": "Generalized myoclonic seizures" + }, + { + "baseId": "195700|437850|609208|609209|609210|609219|609220|609221|609222|609223|609240", + "text": "Nonsyndromic cleft lip palate" + }, + { + "baseId": "195704|196002|280582|280601|280607|280608|281071|282349|282361|282581|282591|282593|282602|282605|427819|481594|615934", + "text": "GLUT1 deficiency syndrome" + }, + { + "baseId": "195870|973023", + "text": "PEX6-Related Disorders" + }, + { + "baseId": "196051|201228|390660|390661|390662|390663|390664|390665|390666|404707|404708", + "text": "MBD5 associated neurodevelopmental disorder" + }, + { + "baseId": "196215|208567|208570|343319", + "text": "Primary Microcephaly 2 With or Without Cortical Malformations" + }, + { + "baseId": "196307|551719", + "text": "developmental delay with intractable seizures" + }, + { + "baseId": "196335", + "text": "Neurologic Disorders/Seipinopathy" + }, + { + "baseId": "196335|253485|307677|311934|318023|318040", + "text": "Congenital generalized lipodystrophy (disease)" + }, + { + "baseId": "196414|196415|196416|215775|447233|447323|447346|447348|447350|447351|447359|447411|447412|447419|515211|515213|515214|515217|515229|515231|515233|515237|515318|515329|556658|556717|557007|558188|558190|558192|558194|624162|627005|627006|627007|627008|627009|627010|627011|650591|650668|706787|718310|718312|731807|745783|761295|761297|761299|774401|780360|780362|822910|822911|822912|822913|822914|822915|822916|822917|822918|822919|822920|822921|822922|822923|822924|822925|822926|822927|921708|921709|921710|921711|921712|921713|921714|921715|921716|930110|930111|930112|930113|930114|930115|930116|930117|930118|939777|940604|940605|941535|941536|941537|941538|941539|941540|941541|941542|941543|952119|952120|952121|952122|952123|952124|959526|960409|966610", + "text": "Autoimmune interstitial lung, joint, and kidney disease" + }, + { + "baseId": "196418|196419|196420|196421|196422|443750|454810|454814|454823|454826|454828|454832|454835|454929|454933|454939|454940|454947|455405|455406|455416|455418|455420|455427|455432|455666|455669|521016|521019|521022|521025|521029|521031|521048|521051|521058|521072|521251|521257|521259|521265|521268|521272|521282|521284|521286|521291|521293|521294|521299|521415|521417|521420|521421|521425|521515|521518|521524|521529|521534|521539|521546|560263|560265|560267|560269|560372|560374|560376|560378|560380|563036|563039|563040|563042|563044|563045|563047|563051|563057|565011|565012|624303|633731|633732|633733|633734|633735|633736|633737|633738|633739|633740|633741|633742|633743|633744|633745|633746|633747|633748|633749|633750|633751|633752|633753|651317|651320|651386|651414|709813|709815|709816|709817|709818|709819|709820|709821|709822|721374|721375|721376|721377|734996|734997|734999|735000|744036|744222|744225|749407|749408|749409|749411|749412|749415|749417|765011|765018|765019|779087|779091|790535|790536|790537|830628|830629|830630|830631|830632|830633|830634|830635|830636|830637|830638|830639|830640|830641|830642|830643|830644|830645|830646|830647|830648|830649|830650|830651|830652|830653|830654|830655|830656|830657|830658|851028|852199|923990|923991|923992|923993|923994|923995|923996|923997|923998|923999|932838|932839|932840|932841|932842|932843|932844|932845|932846|932847|939999|944534|944535|944536|944537|944538|944539|944540|944541|944542|954108|954109|954110|960560|960561", + "text": "Immunodeficiency 40" + }, + { + "baseId": "196427|196428|917947|917948|917949", + "text": "Fanconi anemia, complementation group T" + }, + { + "baseId": "196817|213532|213571|224371|405508|434610", + "text": "Ehlers-Danlos syndrome, type 3" + }, + { + "baseId": "197521|226957|389102|514123|553143|590049|801187|801217", + "text": "Abnormality of the cerebral white matter" + }, + { + "baseId": "197660|971395", + "text": "Progressive congenital scoliosis" + }, + { + "baseId": "198601", + "text": "Hemolytic disease of fetus OR newborn due to RhD isoimmunization" + }, + { + "baseId": "198601", + "text": "Anti-D isoimmunization affecting pregnancy" + }, + { + "baseId": "198618", + "text": "GLB1-Related Disorders" + }, + { + "baseId": "198685|360828", + "text": "Proximal lower limb amyotrophy" + }, + { + "baseId": "198685|360828", + "text": "Decreased patellar reflex" + }, + { + "baseId": "198685", + "text": "Rimmed vacuoles" + }, + { + "baseId": "198685", + "text": "Limb-girdle muscle atrophy" + }, + { + "baseId": "199051|208908|434672|443088|485811|858778|858781|858785|858790", + "text": "Centronuclear myopathy" + }, + { + "baseId": "199781|424262|961619", + "text": "Intellectual disability and seizures" + }, + { + "baseId": "199794|620825", + "text": "LIPA-Related Disorders" + }, + { + "baseId": "199803|230626|230630|654796", + "text": "Primary interstitial lung disease specific to childhood due to pulmonary surfactant protein anomalies" + }, + { + "baseId": "199848|199849|199850|199851|199852|199853|199854|247083|413346|437940|462450|462694|462696|463181|463294|463295|463299|463300|463303|463308|505020|527327|527335|527637|527640|527641|527646|527866|565695|565696|565701|567036|567047|571988|571995|641361|641362|641363|641364|641365|652731|693274|693276|693277|693278|695582|695583|713707|798660|798661|798662|798663|798664|801575|840211|840212|840213|840214|861392|861393|936231|936232|956918|956919|960055|964397", + "text": "Frontotemporal dementia and/or amyotrophic lateral sclerosis 4" + }, + { + "baseId": "199855", + "text": "Deafness, congenital, with onychodystrophy, autosomal dominant" + }, + { + "baseId": "199862|364869|364882|447509|498222|515479|515489|515595|515609|549875|549876|549877|556796|557165|558351|627402|627403|627404|627405|627406|690507|690508|695027|823498|823499|823500|930337|940621", + "text": "Spastic paraplegia 74, autosomal recessive" + }, + { + "baseId": "199874|199875|583088|614600|697690|708404|970748", + "text": "Acrofacial dysostosis, Cincinnati type" + }, + { + "baseId": "199876|199877|361734|361735|361736|405706|708211|790227|918766|977188|977189", + "text": "Epileptic encephalopathy, early infantile, 50" + }, + { + "baseId": "199878", + "text": "Alopecia congenita keratosis palmoplantaris" + }, + { + "baseId": "199879|199880", + "text": "Erythrokeratodermia variabilis et progressiva 3" + }, + { + "baseId": "199952", + "text": "Methylmalonic aciduria" + }, + { + "baseId": "199983|199984|199985|215216|270084|282051|282712|284556|284557|284564|628488|690749|719280|762214|794787|977575|977576|977577", + "text": "Methylmalonic aciduria with homocystinuria cblD type" + }, + { + "baseId": "200092|299102|360826|361067|361069|361097|522940|564803|612361|612362|612363|612364|612365|612366|612367|612368|612369|612370|612371|612372|612373|612374|612375|612376|612377|612378|612379|612380|612381|612382|612383|612384|612385|612386|612387|612388|612389|612390|612391|612392|612393|612394|612395|612396|612397|612398|612399|612400|612401|612402|612403|612404|612405|612406|612407|612408|612409|612410|612411|612412|612413|612414|612415|612416|612417|612418|612419|612420|612421|612422|612423|612424|612425|612426|612427|612428|612429|801103|801104", + "text": "Severe Myopia" + }, + { + "baseId": "200167", + "text": "Mitochondrial proton-transporting ATP synthase complex deficiency" + }, + { + "baseId": "200359|376912|377930|572837|573438|648546|648547|648548|648549|648550|705358|757361|786319|821297|848182|848183|848184|848185|938896", + "text": "Methylmalonic aciduria due to transcobalamin receptor defect" + }, + { + "baseId": "200397|200398|200399", + "text": "Meier-gorlin syndrome 6" + }, + { + "baseId": "200691|200692|200692|200694|252491|252492|252492|252493|252498|252499|252500|252502|252503|252504|252505|252507|252509|252510|252515|252516|252517|252520|252521|252522|252523|252524|252527|252528|252529|361649|369176|370533|370534|406901|406901|413722|415064|415065|443987|443989|443990|443992|443993|443994|443999|455749|455750|455757|455769|455774|455778|455782|455783|455787|455800|455803|455903|455907|455910|455917|455918|455921|455923|455931|455936|455938|455939|455943|455945|455948|455952|455961|455969|455971|455975|455976|455979|455986|456323|456325|456326|456332|456336|456337|456338|456340|456342|456346|456348|456352|456359|456363|456364|456367|456392|456672|456677|456679|456683|456688|456693|456699|456706|456707|456713|456716|456717|456721|456729|456730|456747|456748|513286|513286|521757|521760|521771|521773|521780|521785|521786|521789|521791|521793|521800|521802|521805|522128|522129|522130|522134|522136|522137|522139|522142|522144|522146|522151|522152|522155|522158|522159|522164|522166|522168|522170|522176|522491|522492|522508|522518|522534|522540|522543|522549|522552|522555|539003|560826|560835|560848|560851|560853|560854|560855|560862|560864|560868|560876|560877|560886|560889|560893|560899|560901|560902|560905|560906|560907|560908|560917|560929|560969|560976|560978|560980|560982|560986|560989|560993|561004|561006|561008|561012|561015|561016|561025|561028|561030|561032|561034|561041|563691|563705|563706|563709|563712|563713|563718|563722|563723|563731|563734|563737|563739|563743|563745|563747|563749|563751|563753|563755|563762|565842|565846|565852|565853|565854|565858|565874|565877|565881|565888|565892|565895|565898|565903|565905|565920|565924|565936|565953|565957|635139|635140|635141|635142|635143|635144|635145|635146|635147|635148|635149|635150|635151|635152|635153|635154|635155|635156|635157|635158|635159|635160|635161|635162|635163|635164|635165|635166|635167|635168|635169|635170|635171|635172|635173|635174|635175|635176|635177|635178|635179|635180|635181|635182|635183|635184|635185|635186|635187|635188|635189|635190|635191|635192|635193|635194|635195|635196|635197|635198|635199|635200|635201|635202|635203|635204|635205|635206|635207|635208|635209|635210|635211|635212|635213|635214|635215|635216|635217|635218|635219|635220|635221|635222|635223|635224|635225|635226|635227|635228|635229|635230|635231|635232|635233|635234|635235|635236|635237|635238|635239|635240|635241|635242|651549|651578|651582|651591|651670|679752|692037|692038|692039|692040|692041|692043|692044|692045|692046|692047|692049|692053|692054|692055|692057|692058|692059|692060|695327|695328|699658|699662|699663|699666|699668|699669|710601|710602|710603|710604|710605|710608|710609|710610|710611|722136|722137|730436|735769|735771|735774|750218|750220|750224|759605|765824|765827|765829|765843|777648|777653|777774|779270|782646|782651|782652|782654|787468|788805|805008|819749|832350|832351|832352|832353|832354|832355|832356|832357|832358|832359|832360|832361|832362|832363|832364|832365|832366|832367|832368|832369|832370|832371|832372|832373|832374|832375|832376|832377|832378|832379|832380|832381|832382|832383|832384|832385|832386|832387|832388|832389|832390|832391|832392|832393|832394|832395|832396|832397|832398|832399|832400|832401|832402|832403|832404|832405|832406|832407|832408|832409|832410|832411|832412|832413|832414|832415|832416|832417|832418|832419|832420|832421|832422|832423|832424|832425|832426|832427|832428|832429|832430|832431|832432|832433|832434|832435|832436|832437|832438|832439|832440|832441|832442|851098|851100|851462|851465|851469|917765|917766|924444|924445|924446|924447|924448|924449|924450|924451|924452|924453|924454|924455|924456|924457|924458|924459|924460|924461|924462|924463|924464|924465|924466|924467|924468|924469|924470|924471|924472|924473|924474|924475|924476|924477|924478|924479|924480|924481|924482|924483|924484|924485|924486|924487|924488|924489|933456|933457|933458|933459|933460|933461|933462|933463|933464|933465|933466|933467|933468|933469|933470|933471|933472|933473|933474|933475|933476|933477|933478|933479|933480|933481|933482|933483|933484|933485|933486|933487|940048|940856|940857|940858|940859|940860|940861|945174|945175|945176|945177|945178|945179|945180|945181|945182|945183|945184|945185|945186|945187|945188|945189|945190|945191|945192|945193|945194|945195|945196|945197|945198|945199|945200|945201|945202|945203|945204|954880|954881|954882|954883|954884|954885|954886|954887|954888|954889|954890|954891|954892|954893|954894|954895|954896|954897|959815|959816", + "text": "Ullrich congenital muscular dystrophy 2" + }, + { + "baseId": "200692|200692|200693|200694|200694|252491|252492|252493|252498|252499|252500|252502|252503|252504|252505|252507|252509|252510|252515|252516|252517|252520|252521|252522|252523|252524|252527|252528|252529|361649|369176|370533|370534|406901|413722|415064|415065|443987|443989|443990|443992|443993|443994|443999|455749|455750|455757|455769|455774|455778|455782|455783|455787|455800|455803|455903|455907|455910|455917|455918|455921|455923|455931|455936|455938|455939|455943|455945|455948|455952|455961|455969|455971|455975|455976|455979|455986|456323|456325|456326|456332|456336|456337|456338|456340|456342|456346|456348|456352|456359|456363|456364|456367|456392|456672|456677|456679|456683|456688|456693|456699|456706|456707|456713|456716|456717|456721|456729|456730|456747|456748|513286|521757|521760|521771|521773|521780|521785|521786|521789|521791|521793|521800|521802|521805|522128|522129|522130|522134|522136|522137|522139|522142|522144|522146|522151|522152|522155|522158|522159|522164|522166|522168|522170|522176|522491|522492|522508|522518|522534|522540|522543|522549|522552|522555|539003|539003|560826|560835|560848|560851|560853|560854|560855|560862|560864|560868|560876|560877|560886|560889|560893|560899|560901|560902|560905|560906|560907|560908|560917|560929|560969|560976|560978|560980|560982|560986|560989|560993|561004|561006|561008|561012|561015|561016|561025|561028|561030|561032|561034|561041|563691|563705|563706|563709|563712|563713|563718|563722|563723|563731|563734|563737|563739|563743|563745|563747|563749|563751|563753|563755|563762|565842|565846|565852|565853|565854|565858|565874|565877|565881|565888|565892|565895|565898|565903|565905|565920|565924|565936|565953|565957|626168|635139|635140|635141|635142|635143|635144|635145|635146|635147|635148|635149|635150|635151|635152|635153|635154|635155|635156|635157|635158|635159|635160|635161|635162|635163|635164|635165|635166|635167|635168|635169|635170|635171|635172|635173|635174|635175|635176|635177|635178|635179|635180|635181|635182|635183|635184|635185|635186|635187|635188|635189|635190|635191|635192|635193|635194|635195|635196|635197|635198|635199|635200|635201|635202|635203|635204|635205|635206|635207|635208|635209|635210|635211|635212|635213|635214|635215|635216|635217|635218|635219|635220|635221|635222|635223|635224|635225|635226|635227|635228|635229|635230|635231|635232|635233|635234|635235|635236|635237|635238|635239|635240|635241|635242|651549|651578|651582|651591|651670|692037|692038|692039|692040|692041|692043|692044|692045|692046|692047|692049|692053|692054|692055|692057|692058|692059|692060|695327|695328|699658|699662|699663|699666|699668|699669|710601|710602|710603|710604|710605|710608|710609|710610|710611|722136|722137|730436|735769|735771|735774|750218|750220|750224|759605|765824|765827|765829|765843|777648|777653|777774|779270|782646|782651|782652|782654|787468|819749|832350|832351|832352|832353|832354|832355|832356|832357|832358|832359|832360|832361|832362|832363|832364|832365|832366|832367|832368|832369|832370|832371|832372|832373|832374|832375|832376|832377|832378|832379|832380|832381|832382|832383|832384|832385|832386|832387|832388|832389|832390|832391|832392|832393|832394|832395|832396|832397|832398|832399|832400|832401|832402|832403|832404|832405|832406|832407|832408|832409|832410|832411|832412|832413|832414|832415|832416|832417|832418|832419|832420|832421|832422|832423|832424|832425|832426|832427|832428|832429|832430|832431|832432|832433|832434|832435|832436|832437|832438|832439|832440|832441|832442|851098|851100|851462|851465|851469|919055|919056|919057|919058|924444|924445|924446|924447|924448|924449|924450|924451|924452|924453|924454|924455|924456|924457|924458|924459|924460|924461|924462|924463|924464|924465|924466|924467|924468|924469|924470|924471|924472|924473|924474|924475|924476|924477|924478|924479|924480|924481|924482|924483|924484|924485|924486|924487|924488|924489|933456|933457|933458|933459|933460|933461|933462|933463|933464|933465|933466|933467|933468|933469|933470|933471|933472|933473|933474|933475|933476|933477|933478|933479|933480|933481|933482|933483|933484|933485|933486|933487|940048|940856|940857|940858|940859|940860|940861|945174|945175|945176|945177|945178|945179|945180|945181|945182|945183|945184|945185|945186|945187|945188|945189|945190|945191|945192|945193|945194|945195|945196|945197|945198|945199|945200|945201|945202|945203|945204|954880|954881|954882|954883|954884|954885|954886|954887|954888|954889|954890|954891|954892|954893|954894|954895|954896|954897|959815|959816|970837|970838", + "text": "Bethlem myopathy 2" + }, + { + "baseId": "200708|200709|919365", + "text": "Exudative vitreoretinopathy 6" + }, + { + "baseId": "200710|200711", + "text": "Retinitis pigmentosa 72" + }, + { + "baseId": "200718|205252|205702", + "text": "Partial lipodystrophy, congenital cataracts, and neurodegeneration syndrome" + }, + { + "baseId": "200762|200763|200765|200766|200767|200769|200770|514251|514252|514253|514254|514255|514256|788887|917779", + "text": "Adams-Oliver syndrome 6" + }, + { + "baseId": "200878|905829|905830|905831|905832|964360|964361", + "text": "Growth restriction, severe, with distinctive facies" + }, + { + "baseId": "200885|200887|200888|200889|205558|455396|455414|455415|455424|455500|455504|455507|455514|455525|455528|456230|456238|456240|521483|521777|521781|521787|521788|521873|521878|521879|522157|522162|522163|560642|560644|560646|560648|560650|563460|563463|563465|563466|565499|565502|565507|634751|634752|634753|634754|634755|634756|634757|634758|634759|634760|651532|744106|850690|850691|850693|850694|850695|850696|850697|929876|929877|929878|929879|951953|951954|959417|959418|959419|959420", + "text": "Ciliary dyskinesia, primary, 32" + }, + { + "baseId": "200970|200971|200972|200973|200974|215173|259235|411605|411606|609275|609276|732842|790064|790065|790067|857610|857627|861670|963435|964991", + "text": "Infantile liver failure syndrome 2" + }, + { + "baseId": "200983|200983|200984|200984|200985|200986|200987|214344|214345|214346|214347|214347|260917|353908|364136|409140|426072|429581|429582|438769|463307|463315|463316|463321|463323|463330|463335|463844|463845|463854|464181|464184|464187|464189|464196|464210|464326|464331|464332|514662|528218|528219|528220|528222|528576|528586|528587|528691|566189|566507|568950|568952|611786|642523|642524|642525|652956|693515|693515|693516|693518|693519|702911|702912|702913|702914|702915|702916|702917|702918|702920|702921|702922|725711|778191|778288|784734|791416|820631|841566|841567|841568|919533|927106|927107|927108|936643|936644|936645|940305|940306|948592|948593|972793", + "text": "Joubert syndrome 23" + }, + { + "baseId": "200983|200983|200984|205373|205374|214347|364136|409140|429581|438769|463307|463315|463316|463321|463323|463330|463335|463844|463845|463854|464181|464184|464187|464189|464196|464210|464326|464331|464332|514662|528218|528219|528220|528222|528576|528586|528587|528691|566189|566507|568950|568950|568952|611786|642523|642524|642525|652956|693515|693516|693518|693519|702911|702912|702913|702914|702915|702916|702917|702918|702920|702921|702922|725711|778191|778288|784734|820631|841566|841567|841568|927106|927107|927108|936643|936644|936645|940305|940306|948592|948593", + "text": "Short-rib thoracic dysplasia 14 with polydactyly" + }, + { + "baseId": "200983|260900|260907|260908|260914|260917|260923|260924|362277", + "text": "Joubert syndrome and related disorders" + }, + { + "baseId": "201007|431489", + "text": "Beukes hip dysplasia" + }, + { + "baseId": "201142|231839|264585|332444|359214|361120|361121|361122|361124|361127|361130|361140|361141|361142|361146|361147|361149|361150|361155|608933|608934", + "text": "intellectual deficiency" + }, + { + "baseId": "201179|201194|205231|264065|282640|282677|284326|284539|285543|288937|288967|288979|316394|316408|320150|320157|323800|323825|323870|331227", + "text": "Intellectual Disability, Dominant" + }, + { + "baseId": "201452", + "text": "SCN1A Seizure Disorders" + }, + { + "baseId": "201881|202181|203013|516418|551735", + "text": "Lennox-Gastaut syndrome" + }, + { + "baseId": "202181|653823", + "text": "Severe neurodevelopmental delay" + }, + { + "baseId": "202254|305050|305052|308787|308789|308790|313900|313966|313968|313970|314028|314029|314034|353837|353838|464434|464437|464567|528332|528333|528814|528857|568338|568345|569082|577379|581792|642789|642790|642791|703027|703028|760358|787889|841908|841909|841910|841911|841912|927197|936766|936767|936768|948726|957341|957342", + "text": "Nocturnal frontal lobe epilepsy" + }, + { + "baseId": "202264|551694", + "text": "myoclonic epilepsy" + }, + { + "baseId": "202291", + "text": "Photosensitive tonic-clonic seizures" + }, + { + "baseId": "202332", + "text": "STXBP1-associated neurodevelopmental disorder" + }, + { + "baseId": "202626", + "text": "Epileptic encephalopathy, early infantile, 3" + }, + { + "baseId": "202926|861053", + "text": "Childhood myocerebrohepatopathy spectrum" + }, + { + "baseId": "203048|400552", + "text": "Primary progressive multiple sclerosis" + }, + { + "baseId": "203699|243873", + "text": "Continuous spike and waves during slow-wave sleep syndrome" + }, + { + "baseId": "203726|623231|801183", + "text": "Limb dystonia" + }, + { + "baseId": "203840|203843", + "text": "Progressive neurologic deterioration" + }, + { + "baseId": "203840|203843", + "text": "Difficulty standing" + }, + { + "baseId": "203897|203912", + "text": "sporadic NAFE" + }, + { + "baseId": "203912|203950", + "text": "Neurodevelopmental disorder with epilepsy" + }, + { + "baseId": "203913", + "text": "Familial GGE" + }, + { + "baseId": "204032|263371", + "text": "Speech apraxia" + }, + { + "baseId": "204306|204307|204308|204309|204310|204311|204312|204313|217239|481060|481061|481062|481063|481064|481069|481070|481072|609006|679835|745640|798456|963077|973108", + "text": "Robinow syndrome, autosomal dominant 2" + }, + { + "baseId": "204353|204354", + "text": "Maturity-onset diabetes of the young, type 14" + }, + { + "baseId": "204355|204357|204358", + "text": "Barber-Say syndrome" + }, + { + "baseId": "204356", + "text": "Ablepharon macrostomia syndrome" + }, + { + "baseId": "204390|205762|441330|459438|459443|459444|459535|459999|460001|524527|524830|524937|524939|525087|525090|563212|563214|563216|563927|563941|565878|565882|565883|569005|569006|577120|612285|638210|638211|638212|638213|638214|638215|692663|700985|836071|836072|836073|836074|836075|925566|925567|934741|934742|934743|934744|934745|946597|946598", + "text": "Distal spinal muscular atrophy, autosomal recessive 2" + }, + { + "baseId": "204406", + "text": "Deafness, autosomal recessive 104" + }, + { + "baseId": "204433|204434|204438|205693|205694|205695|205696|205697|205698|213956|583077|788729|789872|789873|789874|789875|789876|966069|966070|966071", + "text": "Achromatopsia 7" + }, + { + "baseId": "204458|439706|439707|439708|439709|439710|439711|439712|439713", + "text": "Combined immunodeficiency and megaloblastic anemia with or without hyperhomocysteinemia" + }, + { + "baseId": "204462", + "text": "Pazopanib response" + }, + { + "baseId": "204521|204522|204523|204524|204525|204526|204527|204528|204529|204530", + "text": "Glycogen content in skeletal muscle, increased" + }, + { + "baseId": "204609|204610|204611|204612|204613|204614|204615|204616|204617|204618|204619|204620|204621|204622|204623|204624|204625|204626|204627|204628|204629", + "text": "Childhood-Onset Schizophrenia" + }, + { + "baseId": "204637|204638|204639|204640", + "text": "intellectual disability with severe speech impairment" + }, + { + "baseId": "204637|204638|204639|204640|206661|206662|583119|815999|919489|919490", + "text": "Mental retardation, autosomal dominant 40" + }, + { + "baseId": "204642|275535", + "text": "Developmental dyslexia" + }, + { + "baseId": "204646|204647|237152|362360|383518|481309|583083|608802|608860|626121|654116|790142|918714|961592|961593|963515|964187|964651|965454|970729|972711", + "text": "Mental retardation, autosomal dominant 39" + }, + { + "baseId": "204975|204976|805052|805053|858583", + "text": "Polymicrogyria, perisylvian, with cerebellar hypoplasia and arthrogryposis" + }, + { + "baseId": "204977|227320|920331", + "text": "Nonmedullary thyroid carcinoma 1" + }, + { + "baseId": "204978", + "text": "Thyroid cancer, nonmedullary, 4" + }, + { + "baseId": "204979|486801", + "text": "Herpes simplex encephalitis, susceptibility to, 7" + }, + { + "baseId": "205022|514092", + "text": "Transient ischemic attack" + }, + { + "baseId": "205031", + "text": "Aplasia/Hypoplasia of the thumb" + }, + { + "baseId": "205031", + "text": "Multiple skeletal anomalies" + }, + { + "baseId": "205041|205042|205043|205044|297332|481298|481299|481300|481301|481302|481303|481304|481305|481306|481307|512580|583135|792693|792694|792695|792696|792697|792698|792699|798803|919972|961658|972734", + "text": "Mental retardation, X-linked 12" + }, + { + "baseId": "205045|205046|205047|790663", + "text": "Congenital anomalies of kidney and urinary tract type 2" + }, + { + "baseId": "205051|205052|205053|205054|205055|205056", + "text": "Spinocerebellar ataxia, X-linked" + }, + { + "baseId": "205144|205144|260877|486672|486673|486674|561972|799347|799348|980914", + "text": "Amyotrophic lateral sclerosis, susceptibility to, 24" + }, + { + "baseId": "205181|514063|682738", + "text": "Hypokalemia" + }, + { + "baseId": "205181|514063", + "text": "Hypermagnesemia" + }, + { + "baseId": "205197|205198|855088|855091|855092|855093|855094|855095|855096|962246", + "text": "Developmental and epileptic encephalopathy, 85, with or without midline brain defects" + }, + { + "baseId": "205199|205200|205201|205202|205203|205204|575497|575498|575510|575516|578507|622420|918387|919493|974497", + "text": "Combined oxidative phosphorylation deficiency 31" + }, + { + "baseId": "205199|205200|205201|205202|205203|205204|205205|226502|426751|514079|550131", + "text": "Infantile muscular hypotonia" + }, + { + "baseId": "205208|320553|320594|329361|337894|399643|400207|400211|445230|464041|464044|528518|550273|550277|566413", + "text": "Spermatogenic failure 28" + }, + { + "baseId": "205216|226496|226497|226498|226499|226502|424605|511195|609017|621936|626101|800980|964137|964797|983663|983664", + "text": "Mental retardation, autosomal dominant 42" + }, + { + "baseId": "205216|226495|226496|226497|226498|226499|226500|226501|226502", + "text": "Neurodevelopmental Disability" + }, + { + "baseId": "205216|226495|226496|226497|226498|226499|226500|226501|226502|792733|918499", + "text": "hypotonia" + }, + { + "baseId": "205216", + "text": "LEUKEMIA, CHRONIC LYMPHOCYTIC, SOMATIC" + }, + { + "baseId": "205216|210875|225802|225854|227575|362296|362313|424629|512101|513423|576122|623669|623670|623672|623674|623677|623678|623679|623680|623682|623683|623684|623686|623688|623689|623690|623691|623692|623693|623694|623697|623698|623699|623701|623702|623703|623704|623706|623707|623708|623709|623710|623711|623712|623713|623714|623715|623716|623718|623719|623720|623722|623723|623725|623727|623729|623730|623732|623738|623739|623740|623742|623743|623744|623745|623746|623747|623748|623749|623750|623751|623752|623753|623754|623755|623756|623757|623759|623761|623762|623764|623767|623768|623769|623771|623772|623773|677427|679241|679242|679243|679244|679245|679246|679247|679791|743180|788958|788959|788960|788961|788962|789343|792776|857334|857335|857336|857337|857338|857339|857340|857341|857342|857343|857344|861271|861569|904877|916784|916786|916789|917227|918245|918283|918302|921257|969483|969485|969486|969487|969488|970259|970273|970274|970275|970276|970277|970278|970279|970280|970281|970282|970283|970284|970285|970286|970287|970288|970289|970290|970291|970292|970293|970294|970295|970296|970297|970298|970338|970342|970673|970678|970684|970690|970698|970703|970757|970771|970774|970802|970867|970916|970921|970975|971003|971015|971021|971047|971049|971071|971075|971106|971107|971108|971109|971123|971140|971141|971154|971158|971168|971173|971186|971193|971199|971223|973044|974486", + "text": "Neurodevelopmental disorder" + }, + { + "baseId": "205218|215784|405057|425337|480736|480738|654113|970676", + "text": "Takenouchi-Kosaki syndrome" + }, + { + "baseId": "205253|522909|625144|969586", + "text": "Spinal muscular atrophy, infantile, James type" + }, + { + "baseId": "205277|214788|214789|390060|390109|462348|462357|462364|462631|463076|463220|463221|463226|526878|527278|527292|527294|527295|527297|527557|527822|527828|527829|565016|565634|565636|565640|566961|566963|568135|571942|571944|614380|624459|624461|641283|641284|641285|641286|641287|641288|641289|641290|641291|641292|641293|641294|641295|652186|652494|702426|702427|713645|738759|769230|769231|769233|787883|840112|840113|840114|840115|840116|840117|840118|840119|840120|840121|840122|840123|840124|926684|926685|936196|936197|936198|936199|936200|936201|936202|948110|948111|956908|956909|964926|965347", + "text": "Immunodeficiency 44" + }, + { + "baseId": "205306|481272|481273|481274|481275|481276|551303|551321|677329|791801|797583|800057|805961|919753|962055|965892|972730|976669", + "text": "Intellectual disability, autosomal dominant 56" + }, + { + "baseId": "205317", + "text": "Tonic-clonic epilepsy" + }, + { + "baseId": "205317", + "text": "Unilateral Hypotonia" + }, + { + "baseId": "205317|230984", + "text": "Mental Retardation, Psychosocial" + }, + { + "baseId": "205332|205359|205360|205362|205363|205364|205365|205366|205367|379026|471347|472076|535063|535065|535066|573631|575346|575347|649752|694806|939463|951634", + "text": "X-linked myopathy with excessive autophagy" + }, + { + "baseId": "205352|420004|420005|420006|626301|677474|679332|792638|792639|792640|920061", + "text": "Intellectual disability, X-linked 106" + }, + { + "baseId": "205385|205386|226589|226591", + "text": "Acute rhabdomyolysis" + }, + { + "baseId": "205385|205386|226589|226591", + "text": "Episodic flaccid weakness" + }, + { + "baseId": "205385|205386|226589|226591|226592|226593|378630|608879|792019|802233|904183|904184|972732", + "text": "METABOLIC CRISES, RECURRENT, WITH RHABDOMYOLYSIS, CARDIAC ARRHYTHMIAS, AND NEURODEGENERATION" + }, + { + "baseId": "205404|226149|538497|578583|578584|581233|581234|622481|758004|788945|798769|805043|805044", + "text": "Klippel-feil syndrome 4, autosomal recessive, with nemaline myopathy and facial dysmorphism" + }, + { + "baseId": "205532|205533|919254|919255|919256|920278", + "text": "Epithelial recurrent erosion dystrophy" + }, + { + "baseId": "205538|205539|426175|429831|429833|429836|429837|465817|465820|466516|466519|466553|466801|530099|530103|530106|530110|530208|530423|530644|530645|568210|568212|570330|570334|570338|570349|570351|574101|644805|644806|644807|644808|644809|644810|644811|644812|653283|726738|731088|731089|771003|776191|844090|844091|844092|844093|844094|844095|844096|844097|844098|844099|844100|844101|844102|844103|844104|844105|844106|850420|850421|927883|927884|927885|929859|937529|937530|937531|937532|937533|937534|939724|949476|949477|951929|951930|957831|957832|959406|959407|962179", + "text": "Dyskeratosis congenita, autosomal dominant 6" + }, + { + "baseId": "205538|205539", + "text": "Dyskeratosis congenita, autosomal recessive 7" + }, + { + "baseId": "205551|274984|424401|452592|452593|452598|452600|452601|452607|452608|452621|452626|452631|452633|452636|452638|452644|452651|452653|452655|452657|452659|452663|452664|452667|452675|452679|452680|452682|452683|452686|452687|452689|452691|452875|452878|452880|452881|452884|452888|452891|452892|452894|452896|452897|452901|452903|452907|452908|452913|452915|452916|452917|452920|452923|452924|452925|452926|452927|452929|452930|452932|452933|452934|452935|452937|452938|452939|452941|452944|452945|452946|452947|452948|452951|452953|452955|452963|452964|452966|452969|452970|452971|452973|452974|452975|452976|452977|452978|452982|452984|452986|452988|452994|452996|452997|453006|453007|453008|453016|453018|453026|453030|453032|453033|453144|453146|453151|453155|453160|453163|453170|453176|453188|453190|453191|453194|453195|453207|453210|453212|453214|453220|453221|453222|453238|453247|453251|453253|453256|453258|453261|453270|453281|453289|453296|453314|453316|453319|453320|453325|453328|519458|519463|519467|519476|519480|519482|519484|519485|519486|519487|519488|519490|519491|519493|519495|519496|519499|519504|519505|519506|519508|519509|519511|519512|519517|519519|519520|519521|519522|519527|519529|519531|519534|519535|519537|519546|519553|519555|519559|519560|519563|519568|519573|519579|519583|519653|519655|519662|519664|519675|519679|519683|519696|519698|519704|519709|519711|519713|519715|519716|519720|519722|519724|519727|519744|519746|519749|519755|519757|519762|519764|519766|519769|519770|519775|519777|519781|519783|519787|519791|519793|519797|519799|519801|559076|559078|559080|559082|559084|559086|559088|559090|559092|559094|559096|559606|559608|559610|559612|559614|559616|559618|559620|559622|559624|559626|559628|559630|559632|559634|559636|561704|561709|561710|561712|561717|561722|561723|561726|561730|561744|561745|561750|563162|563167|563169|563174|563177|563186|563192|563193|563197|563204|631628|631629|631630|631631|631632|631633|631634|631635|631636|631637|631638|631639|631640|631641|631642|631643|631644|631645|631646|631647|631648|631649|631650|631651|631652|631653|631654|631655|631656|631657|631658|631659|631660|631661|631662|631663|631664|631665|631666|631667|631668|631669|631670|631671|631672|631673|631674|631675|631676|631677|631678|631679|631680|631681|631682|631683|631684|631685|631686|631687|631688|631689|631690|631691|631692|631693|631694|631695|631696|631697|691457|691458|691459|691460|691461|691462|691463|691464|691465|691466|691467|691468|695212|695213|698199|698202|698203|698204|698205|698206|698207|698209|698210|698212|698213|698215|698217|698219|698220|698221|698222|698223|708960|708961|708964|708965|708968|708970|708971|720554|720555|720556|720557|720558|720560|720562|720563|720565|720566|734192|734196|734198|734200|734203|743942|744030|748413|748418|748419|748421|748426|759217|759227|764056|764059|764060|764066|764067|764071|764077|774864|777264|777267|777383|779070|781759|781761|781767|781771|828408|828409|828410|828411|828412|828413|828414|828415|828416|828417|828418|828419|828420|828421|828422|828423|828424|828425|828426|828427|828428|828429|828430|828431|828432|828433|828434|828435|828436|828437|828438|828439|828440|828441|828442|828443|828444|828445|828446|828447|828448|828449|828450|828451|828452|828453|850956|851067|851572|851574|857588|857589|923285|923286|923287|923288|923289|923290|923291|923292|923293|923294|923295|923296|923297|923298|923299|923300|923301|923302|932040|932041|932042|932043|932044|932045|932046|932047|932048|932049|932050|932051|932052|932053|940760|943650|943651|943652|943653|943654|943655|943656|943657|943658|943659|943660|943661|943662|943663|943664|943665|943666|943667|953562|953563|953564|953565|953566|953567|953568|959704", + "text": "Ciliary dyskinesia, primary, 37" + }, + { + "baseId": "205553|205554|205555|788391", + "text": "Ciliary dyskinesia, primary, 42" + }, + { + "baseId": "205598", + "text": "Chondrodysplasia punctata 2, X-linked dominant, atypical" + }, + { + "baseId": "205664", + "text": "HETEROTOPIA, PERIVENTRICULAR NODULAR, X-LINKED DOMINANT, WITH MELNICK-NEEDLES SYNDROME" + }, + { + "baseId": "205685|205685|205686|205686|205687|274206|360505|424904|427124|442566|550231|553084|622739|622740|788944|966805|972527", + "text": "Noonan syndrome 10" + }, + { + "baseId": "205688|205689|264699|360061|360159|363735|364005|373101|373104|373107|373852|373856|376070|409125|409127|438761|439007|439099|442557|463255|463257|463275|463276|463280|463286|463287|463289|463782|463785|463787|463795|463796|464103|464108|464120|464125|464126|464275|464277|464279|464281|464283|464285|464289|481139|486105|487787|504561|504784|505464|511014|528171|528183|528188|528190|528193|528196|528198|528522|528536|528537|528545|528650|528661|528664|528667|552775|566480|566482|566487|568917|568922|568928|568929|568931|572804|572805|572806|642470|642471|642472|642473|642474|642475|642476|642477|642478|642479|642480|642481|642482|652556|672277|693500|693504|693505|693507|693508|693509|695619|695620|702890|702891|725675|799765|820623|841525|841526|841527|841528|841529|841530|841531|841532|841533|841534|841535|841536|852741|927082|927083|927084|927085|927086|927087|927088|927089|927090|927091|936629|936630|936631|940303|940304|941061|948575|948576|948577|948578|957224|957225|957226|957227|957228|962887|962888|964415", + "text": "Noonan syndrome 9" + }, + { + "baseId": "205690|205691|205692|456134", + "text": "Glioma susceptibility 9" + }, + { + "baseId": "205707|359048|359049|359050|359051|964900|972456|974877|975715", + "text": "Congenital disorder of glycosylation type 1y" + }, + { + "baseId": "205708|205709|205710|205711|205712|205713|205714|205715|226778|226779|226786|422400", + "text": "CLCN4-related disorder" + }, + { + "baseId": "205729|243941|243942|243943|243944|243945|260375|260376|390649|390650|414917|425531|608947|608948|800392|827639|961026|970758", + "text": "Charcot-Marie-Tooth disease, axonal, type 2T" + }, + { + "baseId": "205735|207496|253010|361357|425459|446888|513538|610599|610600|610601|610602|610603|610604|610605|610606|610607|610608|798956|918835|918836|961970|965341|965343", + "text": "Systemic lupus erythematosus" + }, + { + "baseId": "205751", + "text": "Autosomal recessive AGK-related phenotype" + }, + { + "baseId": "205780|260116|422096|512202|582444|610488|610492", + "text": "Menke-Hennekam syndrome 1" + }, + { + "baseId": "205802|361919|613993", + "text": "Chromosome 17q12 deletion syndrome" + }, + { + "baseId": "205803|205804", + "text": "Macrocytic dyserythropoietic anemia" + }, + { + "baseId": "206613|788942|848626", + "text": "Progressive bulbar palsy of childhood" + }, + { + "baseId": "206661|206662|214566|214568|214571|264510|495565|514653|796914|815999|972844|972968|972969", + "text": "CHAMP1-related syndrome" + }, + { + "baseId": "206679|206680|206681|424449|438672|612142|612176|698319|720688|815903|961982|961983|964657|970782|971539|981441", + "text": "Immunodeficiency, common variable, 12" + }, + { + "baseId": "206712", + "text": "Stenosis of the external auditory canal" + }, + { + "baseId": "206712|263421", + "text": "Malar flattening" + }, + { + "baseId": "206712|263270", + "text": "Midface retrusion" + }, + { + "baseId": "206712|263322|361071|408757|514005|514187|682749|805096|920517", + "text": "Micrognathia" + }, + { + "baseId": "206820", + "text": "Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A3" + }, + { + "baseId": "206864|360820|361025|361047|513943", + "text": "Limb pain" + }, + { + "baseId": "207153|226418|538607|966332|966334", + "text": "Myelodysplasia" + }, + { + "baseId": "207165|256466|297145|322262|330265|330616|330632|331573|331577|340236|340237|340242|340467|340885|340921|346183|346464|346475|346542|347494|347500|347830|347842|353319|353463|353474|353475", + "text": "Dyskeratosis Congenita, Recessive" + }, + { + "baseId": "207209|226415|226416|226417|226418|226419|428396|428398|428400|428401|965623", + "text": "Myeloproliferative/lymphoproliferative neoplasms, familial (multiple types), susceptibility to" + }, + { + "baseId": "207705|207707", + "text": "Cerebellar hypoplasia and mental retardation with or without quadrupedal locomotion 1" + }, + { + "baseId": "207729", + "text": "Spinal muscular atrophy, lower extremity-predominant, 2, AD" + }, + { + "baseId": "207729|407722|608895", + "text": "Spinal muscular atrophy, lower extremity-predominant, 2b, prenatal onset, autosomal dominant" + }, + { + "baseId": "208267|425950", + "text": "Kabuki-like syndrome" + }, + { + "baseId": "208463|430075|430076|430078", + "text": "Obesity, autosomal dominant" + }, + { + "baseId": "208704|353974", + "text": "Benign Rolandic epilepsy" + }, + { + "baseId": "208713|243606|243619|243620|257452|336677|336686|336699|336711|336717|336736|336740|336742|346357|346369|346386|350599|350602|350609|350615|350616|350619|350623|350626|351666|351667|351675|351677|351679|351686|362898|362899|362900|362901|403736|404243|404263|430418|469592|469595|470630|470637|470649|471193|471194|471618|471631|533846|533849|533863|533873|533875|552358|552360|552361|552363|552366|552367|552378|552380|552382|552390|552391|552392|571520|571527|573128|648982|653667|653831|984020", + "text": "Hereditary thrombocytopenia and hematologic cancer predisposition syndrome" + }, + { + "baseId": "208809|208816", + "text": "Microcephaly and chorioretinopathy with or without mental retardation" + }, + { + "baseId": "208841|208843|208844|208846|208847|208848|208849|208850|208851|208852", + "text": "Abnormal cortical gyration" + }, + { + "baseId": "209077|215663|552261", + "text": "Cerebral-cerebellar-coloboma syndrome, X-linked" + }, + { + "baseId": "209199", + "text": "Alpha-thalassemia/mental retardation syndrome" + }, + { + "baseId": "209332", + "text": "JOUBERT SYNDROME 29" + }, + { + "baseId": "209332|424234", + "text": "Orofaciodigital syndrome 16" + }, + { + "baseId": "209338", + "text": "Intellectual disability (severe)" + }, + { + "baseId": "209387|209388|209389|209390|209391|247637|247638|509029|509030|509031|509032|719875", + "text": "Short-rib thoracic dysplasia 15 with polydactyly" + }, + { + "baseId": "209387|209388|209389|209390|209391|260921|538980|622504", + "text": "Short-rib thoracic dysplasia 1 with or without polydactyly" + }, + { + "baseId": "209407|209408|222923|264416|444519|444522|495041|495042|495043|495044|513434|612480|613506|654134|677304|792606|794090|806407|920276", + "text": "AU-KLINE SYNDROME" + }, + { + "baseId": "209809", + "text": "Brain Aneurysm" + }, + { + "baseId": "209858|209860|239862|298319|298323|298324|298325|298328|298331|298335|298336|298339|298340|298348|298354|300625|300626|300636|300637|300639|300640|304909|304910|304913|304923|304948|304960|304961|304962|304965|304969|304972|304988|304989|305124|305125|305133|305146|305149|305150|305151|305155|305168|305169|305172|305175|305183|305187", + "text": "Parkes Weber syndrome" + }, + { + "baseId": "209858|239859|239862|264245|268905|298323|298331|300626|300636|300637|304910|304948|304960|304962|305146|305149|394972|394975|394981|395146|395158|433889|455253|455715|455728|455733|455972|455985|455988|495239|521262|521542|521553|521608|521869|609600|609603|609604|634453|634455|634460|651267|683742|683743|683744|683745|683746|683747|686767|686768|689800|699206|765368|779142|831235|831236|831237|831238|831239|831240|831241|831242|831243|831244|831245|831246|831247|851048|851050|852224|924180|924181|924182|924183|924184|924185|924186|924187|924188|933051|933052|933053|933054|933055|933056|933057|933058|933059|933060|933061|933062|940019|940827|944762|944763|944764|944765|944766|944767|944768|954263|954264|954265|954266|954267|959781", + "text": "Capillary malformation-arteriovenous malformation" + }, + { + "baseId": "209918|311722|407257|522812|613855|613933|613934|613935|613936|818713|919114|919115|920245|966542", + "text": "Williams syndrome" + }, + { + "baseId": "210238", + "text": "Epistaxis" + }, + { + "baseId": "210644|364851", + "text": "ADCK3-Related Disorders" + }, + { + "baseId": "210790|285147|285164|285783|285810|288120|353561", + "text": "Thiamine Metabolism Dysfunction Syndrome" + }, + { + "baseId": "210897|247473", + "text": "Portal hypertension, noncirrhotic" + }, + { + "baseId": "210898", + "text": "Mitochondrial DNA depletion syndrome, hepatocerebral form due to DGUOK deficiency" + }, + { + "baseId": "211110|211112", + "text": "Cystic Leukoencephalopathy" + }, + { + "baseId": "211259|211261|247571|481197|481208|481210|536153|578614", + "text": "Spastic paraplegia 77, autosomal recessive" + }, + { + "baseId": "211320", + "text": "Severe lactic acidosis" + }, + { + "baseId": "211570|315359|329611", + "text": "Optic Atrophy, Recessive" + }, + { + "baseId": "211614|211619|439516|439517|610426|677437", + "text": "Optic atrophy 5" + }, + { + "baseId": "211827|256339|264339|292955|294312|294313|297750|297774|297785|297790|297874|303732|303737|303738|307196|307236|309188|309201|309206|312159|312174|319813|320336|345482", + "text": "Progressive external ophthalmoplegia with mitochondrial DNA deletions" + }, + { + "baseId": "212720|242329", + "text": "B-Lymphoblastic Leukemia/Lymphoma with Intrachromosomal Amplification of Chromosome 21" + }, + { + "baseId": "212828|961297", + "text": "DYNC2H1-Related Disorder" + }, + { + "baseId": "212829|265359|393351|440054|440058|440073|440085|440086|440093|440097|440100", + "text": "Type IV short rib polydactyly syndrome" + }, + { + "baseId": "213290|611994", + "text": "Ganglioglioma" + }, + { + "baseId": "213453|683051|683119", + "text": "Charcot-Marie-Tooth disease type 5" + }, + { + "baseId": "213453|439659|625417|791929|791930|971134", + "text": "Spinocerebellar ataxia 46" + }, + { + "baseId": "213602|551712", + "text": "Bannayan-Riley-Ruvalcaba syndrome" + }, + { + "baseId": "213674", + "text": "Bleeding disorder platelet type macrothrombocytopenia" + }, + { + "baseId": "213674|411533|411534|411535|411536|411537|974492|975947", + "text": "Bleeding disorder, platelet-type, 21" + }, + { + "baseId": "213760|213765|213766|413295|434637", + "text": "Spastic paraplegia 9b, autosomal recessive" + }, + { + "baseId": "213760|213762|213763|213903|213904|213905|253951|311782|311783|311800|317399|317414|323424|323434|324069|324070|373610|373621|413295|415242|434637|437871|444691|460344|460358|460416|460700|461164|461165|461169|503312|513599|525626|564063|564950|566648|566650|566654|566655|566660|569906|569909|639320|639321|639322|639323|639324|639325|639326|652348|665615|692902|692903|712533|712534|724130|775702|783785|837521|837522|837523|837524|837525|837526|837527|919307|919308|920290|925986|935257|935258|947157|947158|947159|947160|956289|956290", + "text": "Cutis laxa, autosomal dominant 3" + }, + { + "baseId": "213761|213762|213762|213763|213763|213764|253951|311782|311783|311800|317399|317414|323424|323434|324069|324070|373610|373621|413295|415242|434637|437871|444691|460344|460358|460416|460700|461164|461165|461169|503312|508733|513599|525626|564063|564950|566648|566650|566654|566655|566660|569906|569909|639320|639321|639322|639323|639324|639325|639326|652348|665615|692902|692903|712533|712534|724130|775702|783785|837521|837522|837523|837524|837525|837526|837527|859828|925986|935257|935258|947157|947158|947159|947160|956289|956290", + "text": "Hereditary spastic paraplegia 9A" + }, + { + "baseId": "213762", + "text": "ALDH18A1 deficiency" + }, + { + "baseId": "213776|481265|536058|536061|536062|536063|536064|965283", + "text": "Dextrocardia" + }, + { + "baseId": "213786", + "text": "6q21-6q22.1 deletion" + }, + { + "baseId": "213951", + "text": "Adolescent alopeciam dentogingival abnormalitites and intellectual disability" + }, + { + "baseId": "213953|244036|792729", + "text": "Autosomal recessive woolly hair 3" + }, + { + "baseId": "213957|213958|213959|213960|213961|213962|213963|213964|213965", + "text": "Nonsyndromic otitis media" + }, + { + "baseId": "213979|249384|276318|276319|276546|276547|277014|277022|277025|277112|277113|277114|277115|277116|277117|277120|319105|327533|333805|335443|335480|335534|335538|353059|353060|353284", + "text": "Zonular Pulverulent Cataract" + }, + { + "baseId": "214327|214330|420427|514026", + "text": "Occipital encephalocele" + }, + { + "baseId": "214327|514026|514058|971020", + "text": "Cystic renal dysplasia" + }, + { + "baseId": "214342|439558|439560|590021|590021|590163|621032|798668|798669|970039|983797", + "text": "Joubert syndrome 33" + }, + { + "baseId": "214358", + "text": "B9D1-Related Disorders" + }, + { + "baseId": "214364", + "text": "Rotary nystagmus" + }, + { + "baseId": "214364|360913|360914", + "text": "Limb undergrowth" + }, + { + "baseId": "214392|214393|214394", + "text": "Porokeratosis 9, multiple types" + }, + { + "baseId": "214481", + "text": "OBESITY (BMIQ14), SUSCEPTIBILITY TO" + }, + { + "baseId": "214513", + "text": "Benign Soft Tissue Neoplasm of Uncertain Differentiation" + }, + { + "baseId": "214521|453543|453545|453555|453558|453562|453566|453567|453781|453785|453787|453793|453799|453800|453810|453812|453822|453830|453969|453970|453975|453979|454356|454363|454364|520133|520135|520263|520273|520507|520508|520510|520515|520518|520538|520539|520543|559811|559813|559815|559817|559946|562250|562254|562262|562264|562268|564071|564082|564089|564092|564098|632462|632463|632464|632465|632466|632467|632468|632469|632470|632471|632472|632473|698641|698642|698643|698644|698645|709478|721083|721085|721086|734740|764626|764627|782042|829470|829471|829472|829473|829474|829475|829476|829477|829478|829479|829480|829481|829482|829483|829484|829485|829486|829487|829488|829489|829490|829491|829492|923610|923611|923612|923613|923614|923615|923616|932442|932443|932444|932445|932446|932447|932448|932449|932450|932451|932452|932453|932454|932455|944126|944127|944128|944129|944130|944131|953851|953852|953853|953854|953855", + "text": "Epilepsy, progressive myoclonic, 10" + }, + { + "baseId": "214526|214527|970942", + "text": "Mitral valve prolapse 2" + }, + { + "baseId": "214539", + "text": "INCLUSION BODY MYOPATHY WITHOUT EARLY-ONSET PAGET DISEASE AND FRONTOTEMPORAL DEMENTIA 1" + }, + { + "baseId": "214544|577601|580398|610495|791655|791656|791657|920543", + "text": "Encephalopathy, progressive, early-onset, with episodic rhabdomyolysis" + }, + { + "baseId": "214548|624110|624111|624112", + "text": "APC-mutation negative familial colorectal cancer" + }, + { + "baseId": "214559|214560|214561|215104|438599|438992|446253|469375|469378|469385|469388|469388|470412|470416|470417|470428|470435|470904|470909|470913|470920|470928|470929|470930|470932|470932|471396|471399|471408|471417|471418|471420|471422|486770|533547|533547|533549|533558|533584|533586|533587|533589|533591|533592|533597|533597|533634|533635|533638|533639|534121|534122|534127|571261|571266|571269|572916|572917|572920|572921|573557|573559|573560|573561|575109|575110|575111|612454|612455|612456|612457|612458|612459|612460|612461|648721|648722|648723|648724|648725|648726|648727|648728|648729|648730|648731|648732|648733|648734|648735|648736|648737|648738|648739|648740|648741|648742|648743|653562|653647|653650|677463|705509|705510|705511|705512|705514|705515|705516|705517|717013|717014|717016|728694|728695|728696|742440|742441|757563|757566|757568|757569|760903|760960|773127|773129|773132|773138|776660|778683|786392|786393|786394|821330|821331|848433|848434|848435|848436|848437|848438|848439|848440|848441|848442|848443|848444|848445|848446|848447|848448|848449|848450|848451|848452|848453|848454|848455|848456|848457|852378|852910|920417|929203|929204|929205|929206|929207|929208|929209|929210|929211|929212|929213|938988|938989|938990|938991|938992|938993|938994|938995|938996|940509|941252|941253|951110|951111|951112|951113|951114|951115|951116|951117|951118|958852|958853|958854|960319|960320", + "text": "Early infantile epileptic encephalopathy 34" + }, + { + "baseId": "214739|861615", + "text": "RNU4ATAC-related spliceosomopathies" + }, + { + "baseId": "214742|214743|214744|214745|425229|792645|798761|919909|961890", + "text": "Epileptic encephalopathy, early infantile, 35" + }, + { + "baseId": "214760|214761|626298|860895|964619|964706|983695", + "text": "Ritscher-schinzel syndrome 2" + }, + { + "baseId": "214792|226768", + "text": "Split-foot malformation with mesoaxial polydactyly" + }, + { + "baseId": "214799|214800|214801|214802|458194|458195|458710|458712|458713|458722|458810|459217|459220|459222|459225|459226|523891|523893|523902|523903|524174|524176|524179|524438|524443|524445|524452|524455|524461|524463|524491|563352|563358|563362|563366|563369|565400|565408|565409|565413|565419|568380|568381|568386|568388|568390|568397|637602|637603|637604|637605|637606|637607|637608|637609|637610|637611|637612|637613|637614|637615|637616|637617|692559|692560|700725|700726|723244|744445|766997|783218|783219|820040|820041|835353|835354|835355|835356|835357|835358|835359|835360|835361|835362|835363|835364|835365|835366|835367|835368|835369|925325|925326|925327|925328|925329|925330|925331|925332|934500|934501|934502|934503|934504|934505|940122|946299|946300|946301|946302|946303|946304|946305|946306|955652|972790", + "text": "Epileptic encephalopathy, early infantile, 37" + }, + { + "baseId": "214799|214800|214801|214802|800989", + "text": "Progressive encephalopathy" + }, + { + "baseId": "214807", + "text": "Immunodeficiency 45" + }, + { + "baseId": "214809|224665|224666|249216|260858|260859|553351|815897|815918|815920|815926|815927", + "text": "Combined T and B cell immunodeficiency" + }, + { + "baseId": "214809|578416", + "text": "Immunodeficiency 46" + }, + { + "baseId": "214831|214832|214833", + "text": "Pseudohyperkalemia, familial, 2, due to red cell leak" + }, + { + "baseId": "214841", + "text": "CHARCOT-MARIE-TOOTH DISEASE, AXONAL, AUTOSOMAL DOMINANT, TYPE 2K, MODIFIER OF" + }, + { + "baseId": "214881|214882|539045|551310|623028|791214|966599", + "text": "Microcephaly 16, primary, autosomal recessive" + }, + { + "baseId": "214932|214933|432275|432276", + "text": "Overhydrated hereditary stomatocytosis" + }, + { + "baseId": "215001|215002", + "text": "Charcot-Marie-Tooth disease, axonal, type 2y" + }, + { + "baseId": "215003|215004|248765|410985|426373|470149|470150|470163|470167|470174|470176|470179|470182|470183|470189|471069|471072|471086|471087|471498|471501|471506|471509|471511|471515|471517|471522|471523|471912|471915|471916|471918|471919|471920|471922|471924|471926|512515|534204|534206|534207|534210|534211|534217|534218|534221|534232|534236|534241|534245|534254|534258|534265|534338|534341|534348|534350|534357|534358|534716|534718|534719|534725|534727|534730|535283|537403|537404|540472|571916|571922|571925|571927|571937|573361|573362|573364|573366|573367|573373|574091|574092|574094|574096|574098|574100|575252|575253|575254|575255|575256|575257|575258|575259|649376|649377|649378|649379|649380|649381|649382|649383|649384|649385|649386|649387|649388|649389|649390|649391|649392|649393|649394|649395|649396|649397|649398|649399|649400|649401|649402|649403|649404|649405|649406|649407|653322|653715|653719|683110|683112|683213|694707|694710|694711|705881|705882|705884|729145|742854|742856|742857|742858|745154|745344|758037|758041|773515|773517|773518|778636|792053|849234|849235|849236|849237|849238|849239|849240|849241|849242|849243|849244|849245|849246|849247|849248|849249|849250|849251|851920|852930|929463|929464|929465|929466|929467|929468|929469|929470|939273|939274|939275|951425|951426|951427|951428|951429|951430|951431|951432|951433|951434|951435|959071|959072|959073|960345|960346|982248|982249", + "text": "Charcot-Marie-Tooth disease, axonal, type 2z" + }, + { + "baseId": "215037", + "text": "MELANOCORTIN 4 RECEPTOR POLYMORPHISM" + }, + { + "baseId": "215037", + "text": "OBESITY, RESISTANCE TO" + }, + { + "baseId": "215059|916783", + "text": "Deafness, autosomal dominant 68" + }, + { + "baseId": "215089|215090|215091", + "text": "X-linked dominant Parkinson's disease" + }, + { + "baseId": "215093|368095|513941|514022|608934|801518|801519|806406", + "text": "Leukoencephalopathy" + }, + { + "baseId": "215093|622895|964356", + "text": "Leukodystrophy, hypomyelinating, 12" + }, + { + "baseId": "215097|514119|517762|970834", + "text": "Recurrent infections" + }, + { + "baseId": "215104|215105|469388|470932|533547|533597|619848|622471|677463", + "text": "Epilepsy, idiopathic generalized, susceptibility to, 14" + }, + { + "baseId": "215118", + "text": "CHD2-Related Disorder" + }, + { + "baseId": "215312|424455|424456|424459|424460|424461|550887|550889|654125|963573|976649", + "text": "Intellectual disability, autosomal dominant 53" + }, + { + "baseId": "215434|254136|274286|313856|313857|313862|313863|313867|313872|313873|313874|313877|313885|313886|313888|313889|320061|320069|320071|320080|320084|320087|320102|320108|320111|320114|320134|320135|320138|320142|320143|320145|320146|320147|320163|320166|320167|320197|320198|326222|326244|326245|326246|326248|326251|326252|326255|326256|326257|326258|326270|326272|326273|326276|326277|327197|327203|327206|327207|327214|327222|327223|327224|327241|327242|327259|327263|327273|327276|327282|327283|612908|867820|867821|867822|867823|867824|867825|867826|867827|867828|867829|867830|867831|867832|867833|867834|867835|867836|867837|867838|867839|867840|867841|867842|867843|867844|867845|867846|867847|867848|867849|867850|867851|867852|867853|867854|867855|867856|867857|867858|867859", + "text": "carboxymethyl-dextran-A2-gadolinium-DOTA" + }, + { + "baseId": "215434|223627|223637|262041|262042|262043|262044|262045|262046|262047|262048|262049|262050|262051|313857|313862|313870|313872|313873|313874|313885|313888|320061|320062|320071|320080|320087|320088|320089|320100|320102|320108|320111|320112|320114|320138|320142|320143|320145|320146|320147|320163|320165|320167|320174|320198|320199|326222|326244|326245|326251|326252|326255|326257|326270|326273|326277|327197|327204|327214|327217|327218|327223|327224|327241|327263|327272|327273|327282|327283|551625|576140|800694|858615", + "text": "Congenital aniridia" + }, + { + "baseId": "215434|254136|274286|313856|313857|313862|313863|313867|313870|313872|313873|313874|313877|313885|313886|313888|313889|320061|320062|320069|320071|320080|320084|320087|320088|320089|320100|320102|320108|320111|320112|320114|320134|320135|320138|320142|320143|320145|320146|320147|320163|320165|320166|320167|320174|320197|320198|320199|326222|326244|326245|326246|326248|326251|326252|326255|326256|326257|326258|326270|326272|326273|326276|326277|327197|327203|327204|327206|327207|327214|327217|327218|327222|327223|327224|327241|327242|327259|327263|327272|327273|327276|327282|327283|612908|867820|867821|867822|867823|867824|867825|867826|867827|867828|867829|867830|867831|867832|867833|867834|867835|867836|867837|867838|867839|867840|867841|867842|867843|867844|867845|867846|867847|867848|867849|867850|867851|867852|867853|867854|867855|867856|867857|867858|867859", + "text": "Keratitis, hereditary" + }, + { + "baseId": "215571|361955|550268|550270|550271|550272|789387|975719|975720|975721|976519", + "text": "Myopathy, congenital, with neuropathy and deafness" + }, + { + "baseId": "215635|215636|215637|805099", + "text": "Tooth agenesis, selective, 7" + }, + { + "baseId": "215638", + "text": "Retinal dystrophy and iris coloboma with or without congenital cataract" + }, + { + "baseId": "215639|215640|215641", + "text": "Parkinson disease 22, autosomal dominant" + }, + { + "baseId": "215642|215643", + "text": "Spondyloepimetaphyseal dysplasia, Faden-Alkuraya type" + }, + { + "baseId": "215646|215647", + "text": "Deafness, autosomal dominant 69" + }, + { + "baseId": "215651|215652|260899|439090|800608", + "text": "Ciliopathy" + }, + { + "baseId": "215655|215656|215657|622876|788769|857616", + "text": "SLC39A8-CDG" + }, + { + "baseId": "215661|215662", + "text": "Nonsyndromic hypergonadotropic hypogonadism" + }, + { + "baseId": "215661|215662", + "text": "Ovarian dysgenesis 5" + }, + { + "baseId": "215673|215674|481352|539029|964343|965278|965279|970225", + "text": "Myasthenic syndrome, congenital, 19" + }, + { + "baseId": "215723|215724|215725|536073|918617|980302", + "text": "Cleft palate, psychomotor retardation, and distinctive facial features" + }, + { + "baseId": "215751|215752", + "text": "Symmetric circumferential skin creases, congenital, 1" + }, + { + "baseId": "215753|215754|215755|215756|621619|622028", + "text": "Skin creases, congenital symmetric circumferential, 2" + }, + { + "baseId": "215758|215759|798566", + "text": "Optic atrophy 10 with or without ataxia, mental retardation, and seizures" + }, + { + "baseId": "215782|482291|816484|816485|906277", + "text": "Joubert syndrome 26" + }, + { + "baseId": "215785|215786|215787", + "text": "Radioulnar synostosis with amegakaryocytic thrombocytopenia 2" + }, + { + "baseId": "216009|216019", + "text": "CCDC115-CDG" + }, + { + "baseId": "216009|216010|216017|216019", + "text": "Congenital disorders of glycosylation type II" + }, + { + "baseId": "216010|216017|224173|224174", + "text": "TMEM199-CDG" + }, + { + "baseId": "216789|216790|216791|216792|789892|789893", + "text": "Cerebellar atrophy, visual impairment, and psychomotor retardation" + }, + { + "baseId": "216792|611498", + "text": "EMC1-Related Disorder" + }, + { + "baseId": "216916|216917|216918|216919|216920|360676|411476|411477|422515|512747|535715|590565|622929|625879|682085|682086|682087|682088|682089|682090|682091|682092|682093|682094|682095|682096|682097|682098|682099|682100|682101|682102|682103|682104|682105|920058|920059|920060|964925|980405|983690", + "text": "Mental retardation, X-linked, syndromic 33" + }, + { + "baseId": "216921|578525|578526|917791|917792", + "text": "Coenzyme Q10 deficiency, primary, 8" + }, + { + "baseId": "216924|216925|216926|465565|466181|466183|466185|466191|466192|466971|466975|467013|467018|467265|467266|467268|467283|467291|467292|467294|530450|530585|530592|530594|530595|530775|530777|530963|530969|530970|530974|568524|568526|569828|570641|570644|570646|574228|645236|645237|645238|645239|645240|645241|694004|703926|703927|703928|703929|726960|726961|726963|755578|760499|785456|792802|820961|820962|844624|844625|844626|844627|844628|844629|844630|844631|844632|844633|844634|844635|844636|844637|844638|928034|928035|937694|937695|949667|949668|949669|949670|949671", + "text": "Ciliary dyskinesia, primary, 33" + }, + { + "baseId": "216927|216928", + "text": "Mental retardation, autosomal recessive 51" + }, + { + "baseId": "216929|216930|216931|216932|581263", + "text": "Nephrotic syndrome, type 11" + }, + { + "baseId": "216939|216940|216941|919395|919396", + "text": "Tremor, hereditary essential, 5" + }, + { + "baseId": "216945|216946|216947|216948|216949|216950|424616|431919|488205|488206|513592|575493|622010|799603|906196", + "text": "Desanto-shinawi syndrome" + }, + { + "baseId": "217180|217181|247551|792786", + "text": "Cholestasis, progressive familial intrahepatic, 5" + }, + { + "baseId": "217214|217215|217216|223700|223701|223702|223703|223707|226893|263823|263824|424643|424644|443148|446882|481501|538961|672218|672219|672220|672221|672301|672302|719566|730100|790161|790162|790163|818152|818153|961506|961507|964190|970199|980907", + "text": "Hypotonia, infantile, with psychomotor retardation and characteristic facies 2" + }, + { + "baseId": "217217|615912", + "text": "Metabolic crises, recurrent, with variable encephalomyopathic features and neurologic regression" + }, + { + "baseId": "217217", + "text": "SLC25A42-related mitochondrial disorder" + }, + { + "baseId": "217240|217241|217242|217243|217244|481071|677415|789363|918816|918817", + "text": "Robinow syndrome, autosomal dominant 3" + }, + { + "baseId": "217264|217265|217266|217267", + "text": "nonsyndromic cleft palate" + }, + { + "baseId": "217271|217338", + "text": "Deafness, autosomal recessive 68" + }, + { + "baseId": "217280|977279", + "text": "TUBB3-related tubulinopathy" + }, + { + "baseId": "221136|238590|238592|238595|238596|250493|250494|250497|250501|250502|250503|250505|250506|250507|266843|283960|283962|283963|283970|283971|283972|283978|283979|283982|284685|284693|284695|284696|284698|284699|284725|284727|284739|284742|284743|286627|286630|286631|286635|286636|286639|286642|286644|287049|287060|287065|287069|287071|287072|287073|287088|287102|287103|287104|392274|450379|450392|450513|517524|517610|517618|517632|620049|629294|683468|683470|686110|686116|686117|689703|747169|759187|883310|883311|883312|883313|883314|883315|883316|883317|883318|883319|883320|883321|883322|883323|883324|883325|883326|883327|883328|883329|883330|883331|883332|883333|883334|883335|883336|883337|883338|883339|883340|883341|883342|883343|883344|883345|883346|883347|883348|887238|887239|887240", + "text": "ALS2-Related Disorders" + }, + { + "baseId": "221698", + "text": "GARS-Associated Axonal Neuropathy" + }, + { + "baseId": "222607|514007", + "text": "Thoracic scoliosis" + }, + { + "baseId": "222922", + "text": "Schizoaffective disorder, depressive type" + }, + { + "baseId": "222924|222925|590592|590593", + "text": "Cataract 44" + }, + { + "baseId": "222930|222931|578422", + "text": "Seckel syndrome 9" + }, + { + "baseId": "222973|222974|222975|224869|224870|224871|224872|380148|380149|380150|672357|794277|965787|965788|965789|965790|965791|965792|965793|965794|965795|965796|965797|965798|965799|965800|965801|965802|965803|965804|965805|965806|965807|965808|965809|965810|965811|965812|965813|965814|965815|983927", + "text": "Oocyte maturation defect 2" + }, + { + "baseId": "222982|222983", + "text": "Spondylocostal dysostosis 6, autosomal recessive" + }, + { + "baseId": "222985|222986|222987|222988|427813|447876|447878|447880|447882|448030|448039|448097|448105|448168|515850|515879|515886|515891|515969|557311|627824|627825|650546|650748|690594|690595|690596|690597|696719|696720|696722|718956|761908|789109|823946|823947|823948|823949|922010|940632|941934|952405|952406|952407|952408", + "text": "Joubert syndrome 25" + }, + { + "baseId": "222989", + "text": "BAP1 Cancer Syndrome" + }, + { + "baseId": "222995|247394|248601|248602|248603|248606|551309|583114|583115|624054|624055|788863|805023", + "text": "Microcephaly 17, primary, autosomal recessive" + }, + { + "baseId": "222997|285823|285827|286553|286555|286561|288795|288800|289216|366592|614556|977712", + "text": "Mitochondrial DNA depletion syndrome, hepatocerebral form" + }, + { + "baseId": "222997", + "text": "Mitochondrial DNA depletion syndrome 15 (hepatocerebral type)" + }, + { + "baseId": "223017", + "text": "Orofacial cleft 15" + }, + { + "baseId": "223018|223019|223020|223021|223022|223023|223024|223025|538991|790572|972786", + "text": "Spastic paraplegia and psychomotor retardation with or without seizures" + }, + { + "baseId": "223026", + "text": "Hereditary elliptocytosis" + }, + { + "baseId": "223282|223293|223294|223295|362149|362150", + "text": "Spinocerebellar ataxia, autosomal recessive 2" + }, + { + "baseId": "223283", + "text": "LIM DOMAIN ONLY-1 POLYMORPHISM" + }, + { + "baseId": "223284|223285|223286|223287|223288|223289|223290|223291|225845|225881|247070|361202|362425|362426|408530|408531|418971|418972|421902|421904|424623|424631|424659|425221|425222|425950|426745|434766|444923|462433|481412|482012|511031|511971|511972|536069|550620|550621|550622|611408|611409|613867|614045|614607|626212|653881|798652|805724|815996|903586|917105|919413|919414|919415|919416|920311|961617|963747|964373|964374|964375|964376|964377|964378|964674|964675|967275|970949|970950|970951|970952|972837|972840|972841|972954|972955|972956|972957|972958|972959|983786|983788", + "text": "Mental retardation and distinctive facial features with or without cardiac defects" + }, + { + "baseId": "223645|321281|321298|330507|337017", + "text": "VSX2-related Microphthalmia" + }, + { + "baseId": "223669|223669|539075|578548|578549|622444|622445|626256|961336|963176|965235", + "text": "Spinocerebellar ataxia 42" + }, + { + "baseId": "223669", + "text": "CACNA1G-related disorders" + }, + { + "baseId": "223669|265019|415572|550304|626256|626257|778363|860412|919746|919747|919748|919749|971085", + "text": "Spinocerebellar ataxia 42, early-onset, severe, with neurodevelopmental deficits" + }, + { + "baseId": "223692|223693|223694", + "text": "Wilms tumor 6" + }, + { + "baseId": "223695", + "text": "Vibratory urticaria" + }, + { + "baseId": "223696|223697|223698|223699", + "text": "Combined oxidative phosphorylation deficiency 28" + }, + { + "baseId": "223709|223710|223711|223712|223713|360941|424661|444967|495732|511984|536093|583116|611411|622410|653995|683188|683189|683190|683191|683192|683193|683194|683195|683196|683197|683198|683200|683202|683203|683204|683205|683206|683207|683208|683209|798653|861572|961652|962056|964382|967277|970958|970959", + "text": "Lamb-shaffer syndrome" + }, + { + "baseId": "223714", + "text": "Combined oxidative phosphorylation deficiency 29" + }, + { + "baseId": "223715|223716", + "text": "Hyperphosphatasia with mental retardation syndrome 6" + }, + { + "baseId": "223717|446855|800948", + "text": "Preimplantation embryonic lethality 1" + }, + { + "baseId": "223737", + "text": "Spastic paraplegia, optic atrophy, and neuropathy" + }, + { + "baseId": "223738|578374", + "text": "Microcephaly, short stature, and impaired glucose metabolism 2" + }, + { + "baseId": "223741", + "text": "IgA nephropathy, susceptibility to, 3" + }, + { + "baseId": "223742|612717|614645|614646|614647", + "text": "Muscular dystrophy, limb-girdle, type 2X" + }, + { + "baseId": "223744|919262", + "text": "Corpus callosum, agenesis of, with facial anomalies and cerebellar ataxia" + }, + { + "baseId": "223761|223762|223763|223764", + "text": "Inherited bone marrow failure syndrome" + }, + { + "baseId": "223761|223762|223763|223764|247583|609003|609004|790553|798560|802154", + "text": "Bone marrow failure syndrome 3" + }, + { + "baseId": "223765|223766|223767|223768|226382|538444|590310|971025", + "text": "Parkinson disease 23, autosomal recessive early-onset" + }, + { + "baseId": "223771", + "text": "Cachexia" + }, + { + "baseId": "223771", + "text": "Abnormal pattern of respiration" + }, + { + "baseId": "223771|360857|360941|361041|446889|514016|514091|610430|800985|905848", + "text": "Strabismus" + }, + { + "baseId": "223779", + "text": "Hypotonia, infantile, with psychomotor retardation" + }, + { + "baseId": "223780|223781|223782|236862|417867|679342|798822|800680|822287|861587", + "text": "Mental retardation, X-linked, syndromic 34" + }, + { + "baseId": "224306|224450|244161", + "text": "Skeletal myopathy" + }, + { + "baseId": "224411|291085|291103|291104|292062|295393|295411|295594|295618|311739|317301|672229|672230|672231|672232|672233|672297|672298|672299|858554|918512|918513|918515|918516|918517|965294", + "text": "Nephrotic syndrome" + }, + { + "baseId": "224461", + "text": "First degree atrioventricular block" + }, + { + "baseId": "224616|250156|250159|250161|250162|448463|448564|448565|448569|448571|448685|448688|448690|448693|448778|448786|516332|516335|516347|516350|516374|516401|516421|516430|516432|516434|557506|557508|557510|557512|557555|557557|558715|558717|559200|559202|628435|628436|628437|628438|628439|628440|628441|628442|650767|650833|650835|690739|777196|824742|824743|824744|824745|824746|824747|824748|824749|824750|824751|824752|824753|824754|851332|922236|922237|930796|930797|930798|942228|952631", + "text": "Muscular dystrophy, limb-girdle, type 2W" + }, + { + "baseId": "224617", + "text": "MUSCULAR DYSTROPHY, AUTOSOMAL RECESSIVE, WITH CARDIOMYOPATHY AND TRIANGULAR TONGUE" + }, + { + "baseId": "224665|224666|451991", + "text": "Autoimmune disease, multisystem, infantile-onset, 2" + }, + { + "baseId": "224678|224679|224680|224681|224682|224683|224684|224685|224686|224687|224688|224689|224690", + "text": "Monoclonal B-Cell Lymphocytosis" + }, + { + "baseId": "224695|224696|224697", + "text": "Microcephaly, congenital cataract, and psoriasiform dermatitis" + }, + { + "baseId": "224700|224701|226639|226640|226641|226642|226643|226644|226645|226646|226647|226649|226650|226652|226653|226654|226655|226656", + "text": "Cerebral visual impairment and intellectual disability" + }, + { + "baseId": "224706|224707|226069|919424", + "text": "Toriello-Lacassie-Droste syndrome" + }, + { + "baseId": "224708|224709|789841|965210", + "text": "Paget disease of bone 6" + }, + { + "baseId": "224814|224816|244175", + "text": "Short stature, developmental delay, and congenital heart defects" + }, + { + "baseId": "224821|224822|224823|224824|224825|481245|481503|512663|538510|539113|611450|917773|964705|972735|972736", + "text": "Mental retardation, X-linked 99, syndromic, female-restricted" + }, + { + "baseId": "224832|224833", + "text": "Exercise intolerance, riboflavin-responsive" + }, + { + "baseId": "224866|362857|363052", + "text": "MELORHEOSTOSIS, ISOLATED, SOMATIC MOSAIC" + }, + { + "baseId": "224882|224883|439689", + "text": "Brachydactyly, type a1, d" + }, + { + "baseId": "224967|613916|613955|613984|614036", + "text": "Chromosome 17q12 duplication syndrome" + }, + { + "baseId": "224974|919852|919853", + "text": "Cataract 45" + }, + { + "baseId": "225795|466943|466947|466949|467848|467853|467855|467861|468150|468153|468161|468337|468349|531195|531200|531205|531208|574505|646140|652807|652976|694093|694094|694095|695750|704187|740832|845542|845543|845544|845545|845546|845547|845548|845549|928357|928358|938000|938001|938002|940418|949991|949992|949993|949994", + "text": "Atrial fibrillation, familial, 18" + }, + { + "baseId": "225797|225798", + "text": "Anemia, sideroblastic, 4" + }, + { + "baseId": "225802|384424|426751|514320|514322|514324|514325|514326|514327|514327|514328|514329|514330|514336|550126|576328|608922|677043|921237|921238|921243|975943", + "text": "Moderate global developmental delay" + }, + { + "baseId": "225802|590225|590226|590227|590228|590229|590230|790068|798486|918676", + "text": "Autism 5" + }, + { + "baseId": "225802|225802|225802|679897|921238|921240", + "text": "Delayed fine motor development" + }, + { + "baseId": "225802|513910", + "text": "Abnormal brainstem MRI signal intensity" + }, + { + "baseId": "225802|263332", + "text": "Hypoplasia of the frontal lobes" + }, + { + "baseId": "225802", + "text": "Focal cortical dysplasia" + }, + { + "baseId": "225815|263782|263783|361701|362304|362305|362307|362310|362311|362312|362313|407829|481314|535703|551777|672078|679767|790944|816373|816471|963695|964842|980937", + "text": "Hypotonia, ataxia, and delayed development syndrome" + }, + { + "baseId": "225852|514188", + "text": "Edema of the lower limbs" + }, + { + "baseId": "225852|514114|514188", + "text": "Downslanted palpebral fissures" + }, + { + "baseId": "225870|263011|380286|380287|380288|391129|391133|391178|391211|391216|424638|439845|439847|439848|439850|439851|439855|439856|439857|439858|439859|439860|481589|486731|515820|550580|552397|558459|611375|614214|789955|789956|903506|918626|918627|921967|964152|964798|965272", + "text": "Epileptic encephalopathy, early infantile, 54" + }, + { + "baseId": "226044|226045", + "text": "Combined oxidative phosphorylation deficiency 30" + }, + { + "baseId": "226064|226065|226066", + "text": "Even-plus syndrome" + }, + { + "baseId": "226233", + "text": "ARV1-related condition" + }, + { + "baseId": "226235|226236", + "text": "Brainstem dysplasia" + }, + { + "baseId": "226235|226236", + "text": "Heart and brain malformation syndrome" + }, + { + "baseId": "226290|226291", + "text": "Spasticity, childhood-onset, with hyperglycinemia" + }, + { + "baseId": "226331", + "text": "Adenomatous polyposis coli, attenuated" + }, + { + "baseId": "226373|226374|226375|226376|226377|226378|538378|583096|614152|974452", + "text": "Diarrhea 8, secretory sodium, congenital" + }, + { + "baseId": "226400", + "text": "Autosomal dominant familial hypercholesterolemia" + }, + { + "baseId": "226403|226404|226405|226406|226407|610516", + "text": "Exudative retinopathy" + }, + { + "baseId": "226408|226410|226411", + "text": "Duane syndrome type 3" + }, + { + "baseId": "226408|226409|226410|226411|576094", + "text": "Duane syndrome type 1" + }, + { + "baseId": "226409", + "text": "Duane retraction syndrome 3 with or without deafness" + }, + { + "baseId": "226412|226413|426117", + "text": "Spinal muscular atrophy with congenital bone fractures 1" + }, + { + "baseId": "226439", + "text": "Congenital muscular dystrophy with rigid spine" + }, + { + "baseId": "226499", + "text": "GNB1-Related Disorder" + }, + { + "baseId": "226504|434654|513461|906211|906214|976667", + "text": "Chromosome 16p13.2 deletion syndrome" + }, + { + "baseId": "226511|226514|226515|226516|226517|226518", + "text": "Lipid storage myopathy due to flavin adenine dinucleotide synthetase deficiency" + }, + { + "baseId": "226593", + "text": "Metabolic crises with rhabdomyolysis, cardiac arrhythmias, and neurodegeneration" + }, + { + "baseId": "226595", + "text": "Oxyphilic adenoma" + }, + { + "baseId": "226596|226597|226598|226599|226600|226601|420430|539189|539419|679855|799512|965220", + "text": "Immunodeficiency, common variable, 13" + }, + { + "baseId": "226609|226610|226611|226612|226613|226614|237778|237780|406822|511628|514525|611391|611646|611647|918996|918997|918998|918999|919000|970822|970823|972832|972932|972933|972934", + "text": "Mental retardation, autosomal dominant 43" + }, + { + "baseId": "226614", + "text": "HIVEP2-Related Disorder" + }, + { + "baseId": "226615|226616|226617|226618|226619|264757|360579|410763|410768|426344|550643|610412|610413|806079|962194|963910|964532|964895|972845|972994|972995", + "text": "Okur-chung neurodevelopmental syndrome" + }, + { + "baseId": "226644|237016|237784|237785|237787|359325|405245|442892|513409|536089|553144|553145|553146|553147|553148|553149|578385|626113|802123|918653|918654|918655|918656|918657|964160|970702|974565", + "text": "Neurodevelopmental disorder with or without anomalies of the brain, eye, or heart" + }, + { + "baseId": "226648|480556", + "text": "NEURODEVELOPMENTAL DISORDER WITH HYPERKINETIC MOVEMENTS WITHOUT SEIZURES, AUTOSOMAL RECESSIVE" + }, + { + "baseId": "226648|444451|480557|511828|919210|920272|961294", + "text": "Neurodevelopmental disorder with or without hyperkinetic movements and seizures, autosomal recessive" + }, + { + "baseId": "226654|677382|677383|677399|802109|802110|976670", + "text": "Intellectual developmental disorder 62" + }, + { + "baseId": "226658|226659|226660|226661|226662", + "text": "Chromosome 17p13.1 deletion syndrome" + }, + { + "baseId": "226711|244146|361295|361296|361297|361298", + "text": "Chromosome Xq26.3 duplication syndrome" + }, + { + "baseId": "226718|226719", + "text": "Anadysplasia-like, spontaneously remitting spondylometaphyseal dysplasia" + }, + { + "baseId": "226722|371648|439515|653883|677328|818143|970961", + "text": "Spondyloepiphyseal dysplasia, stanescu type" + }, + { + "baseId": "226734|226735", + "text": "Advanced sleep phase syndrome, familial, 3" + }, + { + "baseId": "226736", + "text": "Mental retardation, autosomal recessive 52" + }, + { + "baseId": "226737", + "text": "Leukodystrophy, hypomyelinating, 13" + }, + { + "baseId": "226759|226760|919151|919152|920254", + "text": "Encephalocraniocutaneous lipomatosis" + }, + { + "baseId": "226775|226776|677968", + "text": "Osteochondrodysplasia, complex lethal, symoens-barnes-gistelinck type" + }, + { + "baseId": "226816|291968|488239|488240", + "text": "Hereditary renal cell carcinoma" + }, + { + "baseId": "226843|415883|415884|528769|528776|529250|550369|573216|643112|693661|739570|791440|842238|842239|963787", + "text": "Cleft palate, cardiac defects, and mental retardation" + }, + { + "baseId": "226843", + "text": "MEIS2-related disorder" + }, + { + "baseId": "226845|226846|226847|226848|226849|590323|623339|802211|802212|818330|818331", + "text": "Nephrotic syndrome, type 12" + }, + { + "baseId": "226850|798582", + "text": "Nephrotic syndrome, type 13" + }, + { + "baseId": "226861|513686|578590", + "text": "Pigmentary disorder, reticulate, with systemic manifestations, X-linked" + }, + { + "baseId": "226870|259636|364651|511197|608799|677970|788731|792595|918582|918583|964138|970667|970668|977171", + "text": "Developmental and epileptic encephalopathy, 69" + }, + { + "baseId": "226887|965590", + "text": "Autoinflammation, immune dysregulation, and eosinophilia" + }, + { + "baseId": "226916|226917|612037|612040|678081|798621|969737", + "text": "Epilepsy, idiopathic generalized, susceptibility to, 15" + }, + { + "baseId": "226957|553143|677959", + "text": "Progressive cerebellar ataxia" + }, + { + "baseId": "226957", + "text": "KARS-related disorders" + }, + { + "baseId": "226967|226968|361816|361817|858578|858579", + "text": "Mental retardation, autosomal recessive 58" + }, + { + "baseId": "226967|426271", + "text": "ELP2-Related Disorders" + }, + { + "baseId": "227010|294184", + "text": "Mitochondrial DNA depletion syndrome 14 (cardioencephalomyopathic type)" + }, + { + "baseId": "227013|227014|227015|431678", + "text": "Macular dystrophy, patterned, 2" + }, + { + "baseId": "227046|227047|227048|227049|227050|227053|227056|227057|227059|553354|553355|623685", + "text": "Tooth agenesis" + }, + { + "baseId": "227079|227080|511483", + "text": "Exudative vitreoretinopathy 7" + }, + { + "baseId": "227105|227106|227107|227108", + "text": "Periventricular nodular heterotopia with syndactyly, cleft palate and developmental delay" + }, + { + "baseId": "227105|227106|227107|227108|539084|583207|626269|800676|802022|855115|919803|961632", + "text": "Periventricular nodular heterotopia 7" + }, + { + "baseId": "227129|227130|227131|227132", + "text": "Thiopurines, poor metabolism of, 2" + }, + { + "baseId": "227129", + "text": "mercaptopurine response - Dosage, Toxicity/ADR" + }, + { + "baseId": "227129", + "text": "azathioprine response - Dosage, Toxicity/ADR" + }, + { + "baseId": "227149|227150|227151", + "text": "Syndromic Infantile Encephalopathy" + }, + { + "baseId": "227242|371260|514566|622024|622025|622026|622027", + "text": "Hypertriglyceridemia" + }, + { + "baseId": "227256", + "text": "Hereditary hypotrichosis simplex" + }, + { + "baseId": "227261|620127|620765", + "text": "TREX1-Related Disorders" + }, + { + "baseId": "227289|252040|252042|298450|298452|298458|298464|298465|298469|298470|298474|298484|298485|298486|298491|298508|298509|300787|300801|300803|300805|300807|300809|300813|300814|300815|300820|300821|305166|305182|305184|305199|305205|305207|305301|305320|305324|305325|305328|305331|305351|305353|305354|305355|305360|305362|305368|305371|620202|620203|620204|895065|895066|895067|895068|895069|895070|895071|895072|895073|895074|895075|895076|895077|895078|895079|895080|895081|895082|895083|895084|895085|895086|895087|895088|895089|895090|895091|895092|895093|895094|895095|895096|895097|895098|895099|895100|895101|896170|896171", + "text": "I blood group system" + }, + { + "baseId": "227347|271424|622847|903583|919386|919387|920300", + "text": "Exudative vitreoretinopathy 4" + }, + { + "baseId": "227427|613840|613841|613842|614122|653993", + "text": "Chromosome 1q21.1 duplication syndrome" + }, + { + "baseId": "227430|227431|227432|227433|227434|227435|724120|799625", + "text": "Immunodeficiency-centromeric instability-facial anomalies syndrome 4" + }, + { + "baseId": "227436|227437|227438|227439", + "text": "Immunodeficiency-centromeric instability-facial anomalies syndrome 3" + }, + { + "baseId": "227440|227441|227442|227443", + "text": "Platelet-type bleeding disorder 20" + }, + { + "baseId": "227444|404643|404644|404646", + "text": "Lopes-Maciel-Rodan syndrome" + }, + { + "baseId": "227447|227448|919813|919814", + "text": "Alzheimer disease, type 9" + }, + { + "baseId": "227447|648879|858701|858704|858705|858707|858708|858711|858712|858715", + "text": "Early-onset Alzheimer's disease" + }, + { + "baseId": "227464|227465", + "text": "Charcot-Marie-Tooth disease, axonal, type 2CC" + }, + { + "baseId": "227467|227468|513219|792757|798572", + "text": "Dyskinesia, limb and orofacial, infantile-onset" + }, + { + "baseId": "227469|227470|513219|792757", + "text": "Striatal degeneration, autosomal dominant 2" + }, + { + "baseId": "227471|227472|227473|363789|363802|406440|438600|438947|439027|453204|453211|453213|453215|453219|453223|453225|453227|453229|453231|453233|453237|453241|453242|453461|453462|453468|453479|453480|453485|453489|453490|453495|453499|453504|453510|453513|453515|453517|453568|453584|453585|453589|453603|453607|453611|453613|453615|453947|453950|453991|453992|453994|454002|454009|454010|519659|519924|519947|519949|519955|519957|519961|519963|519964|519967|519969|519978|519980|519984|520207|520212|520219|520221|520223|520226|520227|520228|520229|520232|520235|520238|520241|520243|520245|520247|520248|520249|559695|559697|559699|559703|559705|559707|559709|559852|559854|559856|559858|559860|559862|561837|562027|562031|562033|562035|563330|563724|563771|563772|563776|563784|563788|563793|589832|590166|632231|632232|632233|632234|632235|632243|632244|632245|632246|632247|632248|632249|632250|632251|632252|632253|632254|632255|632256|632257|632258|632259|632260|691572|698538|698540|698541|698545|698548|709385|709387|709388|709390|720993|744149|748958|748959|764482|764488|764490|764491|764492|779105|781962|781964|781966|781970|787207|798542|798543|829193|829194|829195|829196|829197|829198|829199|829200|829208|829209|829210|829211|829212|829213|829214|829215|829216|829217|829218|829219|829220|829221|829222|829223|851125|851606|923523|923524|923525|923526|923527|923528|923529|923530|923531|923532|923533|932358|932359|932360|932361|932362|932366|932367|932368|932369|932370|932371|932372|940780|944019|944020|944021|944022|944023|944024|944025|944026|944027|944028|944029|953786|953787|953788|953789|953790|953791|960539", + "text": "Mental retardation, autosomal recessive 53" + }, + { + "baseId": "227491", + "text": "Brachydactyly-syndactyly-oligodactyly syndrome" + }, + { + "baseId": "227504", + "text": "Thrombocytopenia 6" + }, + { + "baseId": "227504|361047|513943", + "text": "Osteoporosis" + }, + { + "baseId": "227511|227512|425308|513492|578362|583076|903501|964912|977169|980500", + "text": "Harel-Yoon syndrome" + }, + { + "baseId": "227573|918877", + "text": "Hypotonia, ataxia, developmental delay, and tooth enamel defect syndrome" + }, + { + "baseId": "227574|227575|227576|512552|798776|816513|973004", + "text": "Mental retardation, X-linked, syndromic, Bain type" + }, + { + "baseId": "227579|611750|969587", + "text": "MULTIPLE JOINT DISLOCATIONS, SHORT STATURE, AND CRANIOFACIAL DYSMORPHISM WITHOUT CONGENITAL HEART DEFECTS" + }, + { + "baseId": "227580|227581|227582|227583|481999|575494|608845|791153|791154|963160|974893|974894|974895|974896|974897|974898|974899|974900|974901", + "text": "Spastic paraplegia 76, autosomal recessive" + }, + { + "baseId": "227598|362286|362287|362288|362289|362290|362291|362292", + "text": "Chronic osteomyelitis" + }, + { + "baseId": "227654|227655", + "text": "Trichothiodystrophy 6, nonphotosensitive" + }, + { + "baseId": "227660", + "text": "Chorea, childhood-onset, with psychomotor retardation" + }, + { + "baseId": "227683|614455|614456|704839|704840|716247|727998|728000|741675|741680|800124|800125|800126|961981|971122|982173|982174", + "text": "Agammaglobulinemia 8, autosomal dominant" + }, + { + "baseId": "227687|406145|439048|451947|451948|452144|452292|452295|452408|511467|511468|518979|519155|519159|535699|558840|559381|562565|614258|614258|615905|650404|650405|650406|650407|650971|651022|651099|697936|743913|744025|781614|790357|790358|790359|790360|827710|827711|827712|827713|827714|827715|827716|906205|923096|923097|931837|931838|943418|943419|953397|964217|970761", + "text": "Pierpont syndrome" + }, + { + "baseId": "227693|227694|227695", + "text": "Increased histidine" + }, + { + "baseId": "227696|227697|227698|227699|227700|227701", + "text": "Pineoblastoma" + }, + { + "baseId": "227702|513442|623048|677011", + "text": "Myopathy, congenital, with tremor" + }, + { + "baseId": "227715|227716", + "text": "Premature ovarian failure 11" + }, + { + "baseId": "227741", + "text": "Bisphosphonates response - Efficacy" + }, + { + "baseId": "227742", + "text": "rituximab response - Efficacy" + }, + { + "baseId": "227743", + "text": "hormonal contraceptives for systemic use response - Toxicity/ADR" + }, + { + "baseId": "227744", + "text": "latanoprost response - Efficacy" + }, + { + "baseId": "227746", + "text": "lamotrigine response - Other" + }, + { + "baseId": "227747", + "text": "atazanavir response - Other" + }, + { + "baseId": "227748", + "text": "cetuximab response - Efficacy" + }, + { + "baseId": "227750", + "text": "oxazepam response - Other" + }, + { + "baseId": "227750", + "text": "lorazepam response - Other" + }, + { + "baseId": "227751", + "text": "nicotine response - Metabolism/PK" + }, + { + "baseId": "227752|227759|227775", + "text": "pravastatin response - Efficacy" + }, + { + "baseId": "227752|227788", + "text": "HMG CoA reductase inhibitors response - Efficacy" + }, + { + "baseId": "227753|227761|227766", + "text": "salbutamol response - Efficacy" + }, + { + "baseId": "227753", + "text": "salmeterol response - Efficacy" + }, + { + "baseId": "227754", + "text": "aspirin response - Toxicity/ADR" + }, + { + "baseId": "227756", + "text": "hmg coa reductase inhibitors response - Efficacy, Toxicity/ADR" + }, + { + "baseId": "227756|963322|963323|963324", + "text": "LIPOPROTEIN(a) POLYMORPHISM" + }, + { + "baseId": "227757", + "text": "etanercept response - Efficacy" + }, + { + "baseId": "227757", + "text": "infliximab response - Efficacy" + }, + { + "baseId": "227757", + "text": "Tumor necrosis factor alpha (TNF-alpha) inhibitors response - Efficacy" + }, + { + "baseId": "227757", + "text": "adalimumab response - Efficacy" + }, + { + "baseId": "227758", + "text": "fluoxetine response - Efficacy" + }, + { + "baseId": "227758|227777|227810", + "text": "Selective serotonin reuptake inhibitors response - Efficacy" + }, + { + "baseId": "227758", + "text": "mirtazapine response - Efficacy" + }, + { + "baseId": "227758|227777|227821", + "text": "antidepressants response - Efficacy" + }, + { + "baseId": "227758", + "text": "venlafaxine response - Efficacy" + }, + { + "baseId": "227758|362497", + "text": "paroxetine response - Efficacy" + }, + { + "baseId": "227761", + "text": "selective beta-2-adrenoreceptor agonists response - Efficacy" + }, + { + "baseId": "227762|227767|227835", + "text": "irinotecan response - Toxicity/ADR" + }, + { + "baseId": "227763", + "text": "MDR1 POLYMORPHISM" + }, + { + "baseId": "227763|227805|227833", + "text": "nevirapine response - Toxicity/ADR" + }, + { + "baseId": "227763", + "text": "digoxin response - Other" + }, + { + "baseId": "227763", + "text": "fentanyl response - Dosage, Efficacy" + }, + { + "baseId": "227764", + "text": "sirolimus response - Dosage" + }, + { + "baseId": "227764", + "text": "cyclosporine response - Dosage, Metabolism/PK" + }, + { + "baseId": "227764", + "text": "tacrolimus response (donor genotype) - Dosage, Metabolism/PK" + }, + { + "baseId": "227764", + "text": "tacrolimus response - Efficacy" + }, + { + "baseId": "227764", + "text": "tacrolimus response (recipient genotype) - Dosage, Metabolism/PK" + }, + { + "baseId": "227764", + "text": "sirolimus response - Metabolism/PK" + }, + { + "baseId": "227768|227792", + "text": "aspirin response - Efficacy" + }, + { + "baseId": "227770", + "text": "clopidogrel response - Dosage, Efficacy, Toxicity/ADR" + }, + { + "baseId": "227770", + "text": "citalopram response - Metabolism/PK" + }, + { + "baseId": "227770", + "text": "escitalopram response - Metabolism/PK" + }, + { + "baseId": "227771", + "text": "warfarin response - Dosage, Toxicity/ADR" + }, + { + "baseId": "227776|227794|227795", + "text": "hydrochlorothiazide response - Efficacy" + }, + { + "baseId": "227777", + "text": "Major depressive disorder, response to citalopram therapy in" + }, + { + "baseId": "227778", + "text": "tenofovir response - Metabolism/PK" + }, + { + "baseId": "227779|227780|227830", + "text": "hmg coa reductase inhibitors response - Toxicity/ADR" + }, + { + "baseId": "227781", + "text": "warfarin response - Efficacy" + }, + { + "baseId": "227789|227809|362500|362501", + "text": "anthracyclines and related substances response - Toxicity/ADR" + }, + { + "baseId": "227791", + "text": "triamcinolone response - Efficacy" + }, + { + "baseId": "227791", + "text": "corticosteroids response - Efficacy" + }, + { + "baseId": "227791", + "text": "fluticasone propionate response - Efficacy" + }, + { + "baseId": "227791", + "text": "fluticasone/salmeterol response - Efficacy" + }, + { + "baseId": "227791", + "text": "budesonide response - Efficacy" + }, + { + "baseId": "227795", + "text": "diuretics response - Efficacy" + }, + { + "baseId": "227797", + "text": "ziprasidone response - Toxicity/ADR" + }, + { + "baseId": "227797", + "text": "paliperidone response - Toxicity/ADR" + }, + { + "baseId": "227797", + "text": "haloperidol response - Toxicity/ADR" + }, + { + "baseId": "227797", + "text": "amisulpride response - Toxicity/ADR" + }, + { + "baseId": "227797", + "text": "quetiapine response - Toxicity/ADR" + }, + { + "baseId": "227797", + "text": "aripiprazole response - Toxicity/ADR" + }, + { + "baseId": "227798", + "text": "boceprevir, peginterferon alfa-2a, peginterferon alfa-2b, ribavirin, simeprevir, and telaprevir response - Efficacy" + }, + { + "baseId": "227800", + "text": "warfarin response - Other" + }, + { + "baseId": "227801|227802", + "text": "peginterferon alfa-2a, peginterferon alfa-2b, ribavirin, and telaprevir response - Efficacy" + }, + { + "baseId": "227801", + "text": "peginterferon alfa-2a, peginterferon alfa-2b, and ribavirin response - Efficacy" + }, + { + "baseId": "227801|362509", + "text": "peginterferon alfa-2b response - Efficacy" + }, + { + "baseId": "227801|362509", + "text": "ribavirin response - Efficacy" + }, + { + "baseId": "227801", + "text": "boceprevir response - Efficacy" + }, + { + "baseId": "227802", + "text": "interferons, peginterferon alfa-2a, peginterferon alfa-2b, and ribavirin response - Efficacy" + }, + { + "baseId": "227806", + "text": "cisplatin response - Efficacy" + }, + { + "baseId": "227806", + "text": "oxaliplatin response - Efficacy" + }, + { + "baseId": "227806", + "text": "platinum response - Efficacy" + }, + { + "baseId": "227806", + "text": "Platinum compounds response - Efficacy" + }, + { + "baseId": "227807", + "text": "platinum response - Toxicity/ADR" + }, + { + "baseId": "227808", + "text": "platinum response - Efficacy, Toxicity/ADR" + }, + { + "baseId": "227808", + "text": "carboplatin response - Efficacy, Toxicity/ADR" + }, + { + "baseId": "227808", + "text": "Platinum compounds response - Efficacy, Toxicity/ADR" + }, + { + "baseId": "227808", + "text": "oxaliplatin response - Efficacy, Toxicity/ADR" + }, + { + "baseId": "227811", + "text": "caffeine response - Toxicity/ADR" + }, + { + "baseId": "227813", + "text": "sildenafil response - Efficacy" + }, + { + "baseId": "227816|227822|227823|227824|227831|227834", + "text": "radiotherapy response - Toxicity/ADR" + }, + { + "baseId": "227817", + "text": "metformin response - Efficacy" + }, + { + "baseId": "227819", + "text": "gemcitabine response - Other" + }, + { + "baseId": "227820", + "text": "risperidone response - Efficacy" + }, + { + "baseId": "227828", + "text": "meperidine response - Dosage" + }, + { + "baseId": "227828", + "text": "pentazocine response - Dosage" + }, + { + "baseId": "227828", + "text": "morphine response - Dosage" + }, + { + "baseId": "227828", + "text": "buprenorphine response - Dosage" + }, + { + "baseId": "227828", + "text": "fentanyl response - Dosage" + }, + { + "baseId": "227828", + "text": "opioids response - Dosage" + }, + { + "baseId": "227829", + "text": "methotrexate response - Efficacy" + }, + { + "baseId": "227830", + "text": "rosuvastatin response - Toxicity/ADR" + }, + { + "baseId": "227830", + "text": "atorvastatin response - Toxicity/ADR" + }, + { + "baseId": "227832", + "text": "etoposide response - Toxicity/ADR" + }, + { + "baseId": "227835", + "text": "atazanavir and ritonavir response - Toxicity/ADR" + }, + { + "baseId": "227836|227837|227838|227839|227840", + "text": "Bartter syndrome, type 5, antenatal, transient" + }, + { + "baseId": "227925", + "text": "Familial Hypophosphatemic Rickets" + }, + { + "baseId": "227927", + "text": "Premature ovarian failure 12" + }, + { + "baseId": "227929", + "text": "CAP-congenital myopathy with arthrogryposis multiplex congenita without heart involvement" + }, + { + "baseId": "227930|227931|227932|227933|264323|264323|310950|423857|480565|790716|790717|792629|805009", + "text": "PERCHING syndrome" + }, + { + "baseId": "227934|227935|227936|227937|227938|227939|227940|227941|227942|227943|227944|227945|227946|227947|227948|227949|227950|227951|227952|227953|227954|227955|227956|227957|227958|227959|227960|227961|227962|227963|227964|227965|227966|227967|227968|227969|227970|227971|227972|227973|227974|227975|227976|227977|227978|227979|227980|227981|227982|227983|227984|227985|227986|227987|227988|227989|227990|227991|227992|227993|227994|227995|227996|227997|227998|227999|228000|228001|228002|228003|228004|228005|228006|228007|228008|228009|228010|228011|228012|228013|228014|228015|228016|228017|228018|228019|228020|228021|228022|228023|228024|228025|228026|228027|228028|228029|228030|228031|228032|228033|228034|228035|228036|228037|228038|228039|228040|228041|228042|228043|228044|228045|228046|228047|228048|228049|228050|228051|228052|228053|228054|228055|228056|228057|228058|228059|228060|228061|228062|228063|228064|228065|228066|228067|228068|228069|228070|228071|228072|228073|228074|228075|228076|228077|228078|228079|228080|228081|228082|228083|228084|228085|228086|228087|228088|228089|228090|228091|228092|228093|228094|228095|228096|228097|228098", + "text": "Abnormality of esophagus morphology" + }, + { + "baseId": "228099", + "text": "Multiple sclerosis" + }, + { + "baseId": "228221", + "text": "Spermatogenic failure 15" + }, + { + "baseId": "228225|228226", + "text": "Spinocerebellar ataxia, autosomal recessive 23" + }, + { + "baseId": "228227|228228|459810|587355|638653|638654|651994|692759|692760|836510|925719", + "text": "Spastic paraplegia 62, autosomal recessive" + }, + { + "baseId": "228229", + "text": "Spinocerebellar ataxia, autosomal recessive 22" + }, + { + "baseId": "228501|551614", + "text": "Usher syndrome, type 1M" + }, + { + "baseId": "229233|262311|262312|262313|438857|709587|920205|961271|963136|980454", + "text": "Aortic aneurysm, familial thoracic 10" + }, + { + "baseId": "230438|230439|918492", + "text": "Autosomal recessive spastic ataxia" + }, + { + "baseId": "230449|335064|337038", + "text": "Hirschsprung Disease, Recessive" + }, + { + "baseId": "230608|496630", + "text": "Idiopathic and/or familial pulmonary arterial hypertension" + }, + { + "baseId": "231319|581215", + "text": "Ectodermal dysplasia 14, hair/tooth type with or without hypohidrosis" + }, + { + "baseId": "231647|965275", + "text": "Cerebral hypomyelination" + }, + { + "baseId": "231839|263782|263783|354284|354294|361039|361140", + "text": "Ataxia" + }, + { + "baseId": "231850|262392|262393|262394|262395|263761|265178|265179|333093|361950|361951|361952|361953|361954|373236|424224|424254|904878|904879|904880", + "text": "Behcet's syndrome" + }, + { + "baseId": "232770|233072", + "text": "B Lymphoblastic Leukemia/Lymphoma with t(9" + }, + { + "baseId": "232770|233072", + "text": "22)(q34.1" + }, + { + "baseId": "232770|233072", + "text": "q11.2)" + }, + { + "baseId": "232770|233072", + "text": " BCR-ABL1" + }, + { + "baseId": "233048|550674", + "text": "Duodenal adenocarcinoma" + }, + { + "baseId": "233829|306874|316668|316671|316967|316969|323029|331658|331659|331662|331668|331672|331679|331683|331684|331686|331694|331695|331701|331704|341907|341932|341934|341935|341942|341944|341945|341948|347270|347281|347290|347332|347335|347347|348571|348608|348613|348647|348649|348653|348656|348660|348670|353480|353481", + "text": "Juvenile Polyposis" + }, + { + "baseId": "234717", + "text": "Invasive Breast Carcinoma" + }, + { + "baseId": "236444|263275|639685", + "text": "Colorectal polyposis" + }, + { + "baseId": "236524|236534|550879", + "text": "Heritable Thoracic Aortic Disease" + }, + { + "baseId": "236524|236534", + "text": "Early age onset of sporadic thoracic aortic dissections" + }, + { + "baseId": "236721", + "text": "AP4S1-related disorder" + }, + { + "baseId": "236722", + "text": "APS41-Related disorder" + }, + { + "baseId": "236723|236724|236725|236726|236727|236728|299020|432294|432295|623283|963357", + "text": "Hypercalcemia, infantile, 2" + }, + { + "baseId": "236724", + "text": "SLC34A1-Related Disorders" + }, + { + "baseId": "236767", + "text": "Atrioventricular block, idiopathic second-degree" + }, + { + "baseId": "236794", + "text": "Short QT Syndrome 4" + }, + { + "baseId": "236837|236838|236852", + "text": "Lobar holoprosencephaly" + }, + { + "baseId": "236846", + "text": "Alobar holoprosencephaly" + }, + { + "baseId": "236849|236855|236856", + "text": "Semilobar holoprosencephaly" + }, + { + "baseId": "236861", + "text": "Serum level of adiponectin 1" + }, + { + "baseId": "236863|513257", + "text": "Deafness, autosomal dominant 70" + }, + { + "baseId": "236864", + "text": "Deafness, autosomal dominant 66" + }, + { + "baseId": "236877|236878|550159|550160|550161|550162|550163|626071|626072", + "text": "Deafness, autosomal recessive 32" + }, + { + "baseId": "236880|682580|682582|682583|682584", + "text": "Developmental and epileptic encephalopathy, 81" + }, + { + "baseId": "236882|236883|236884|236885|236886|236887|236888|236889", + "text": "Spondyloepimetaphyseal dysplasia, Genevieve type" + }, + { + "baseId": "236890", + "text": "Cataract Hutterite type" + }, + { + "baseId": "236891|236892|466937|532135|532142|570041|571837|574705|574706|574707|622849|647076|647077|694242|694243|694244|694245|694246|694247|694248|695788|704528|715875|785834|846674|846675|846676|938379|950454|958433", + "text": "Situs inversus totalis" + }, + { + "baseId": "236891|236892|700109|730496|861285|920240|920241", + "text": "Heterotaxy, visceral, 8, autosomal" + }, + { + "baseId": "236924|313219|313220|313223|313240|319379|325499|326446|326455|326461", + "text": "Antenatal Bartter Syndrome" + }, + { + "baseId": "236942|438516|438517|859599|919097|919098", + "text": "Sweeney-Cox syndrome" + }, + { + "baseId": "237072|289545|293412|293416|322708|330040|334414|350417|551991|967232", + "text": "Spermatogenic Failure" + }, + { + "baseId": "237250|253111|253112|253114|253115|253117|253118|253119|253120|253121|253124|253125|253126|253127|253128|253129|253130|253132|253133|253134|253135|253136|253137|253139|253140|253141|253142|253143|305249|305258|305260|305267|305272|305279|305291|305295|305302|305304|305308|305309|305310|305312|305318|305323|305327|305330|309065|309068|309070|309073|309075|309076|309078|309084|309087|309091|309110|309117|309121|309136|309152|309153|309154|309159|309161|309162|309163|309167|314271|314274|314286|314288|314292|314293|314299|314300|314328|314329|314330|314332|314339|314341|314346|314351|314359|314368|314371|314372|314374|314375|314376|314383|314384|314385|314386|314387|314388|314391|314392|314398|314399|314400|314402|314407|314409|314410|314411|314412|314413|314415|314417|314423|314424|314425|314426|609694|609698|711527|723086|723087|736649|736650|736654|751140|751148|751154|751155|766806|799547|799548|899535|899536|899537|899538|899539|899540|899541|899542|899543|899544|899545|899546|899547|899548|899549|899550|899551|899552|899553|899554|899555|899556|899557|899559|899560|899562|899563|899564|899566|899567|899568|899569|899570|899571|899572|899573|899574|899575|899576|899577|899578|899579|899580|899581|899582|899583|899584|899585|899586|899587|899588|899590|899591|899592|899593|899594|899595|899597|899600|899601|899602|899603|899604|899605|899606|900493|900494|900495|900496|900497|900498|900499", + "text": "Spherocytosis" + }, + { + "baseId": "237327|268471|776419", + "text": "Glutaric acidemia type 2A" + }, + { + "baseId": "237378", + "text": "Mitochondrial-DNA disorder" + }, + { + "baseId": "237520|354280", + "text": "Atrial septal defect 1" + }, + { + "baseId": "237522|362622|362623|362624|407131|407132|481277|481278|495323|511710|513425|536188|613829|677426|788816|815987|919104|920587|920588|961284|964833", + "text": "Congenital heart defects, dysmorphic facial features, and intellectual developmental disorder" + }, + { + "baseId": "237539", + "text": "ARRHYTHMOGENIC RIGHT VENTRICULAR DYSPLASIA, FAMILIAL, 11, WITH OR WITHOUT MILD PALMOPLANTAR KERATODERMA" + }, + { + "baseId": "237573|237574|237575|237576|237577|237578|237579|237580|237581|259766|259766|431536|432459|440803|511499|513174|576106|609019|918832|920194|965886|966847|976008", + "text": "Gillespie syndrome" + }, + { + "baseId": "237603|237628|802084", + "text": "Deafness, autosomal dominant 51" + }, + { + "baseId": "237711|237712|237713|237714|237715|237716|237717|237718|237719|237720|237721|237722|237723|237724|237725|237726|237727|237728|237729|237730|237731|237732|237733|237734|237735|237736|237737|237738|237739|237740|237741|237742|237743|237744|237745|237746|237747|237748|237749", + "text": "Prednisolone response" + }, + { + "baseId": "237756|237757|513467|552203|581856|581857|581858|581862|791748", + "text": "Congenital hypomyelinating neuropathy 3" + }, + { + "baseId": "237763|237764|247578|247579", + "text": "Mitochondrial complex 1 deficiency, nuclear type 29" + }, + { + "baseId": "237793|237794|237795|237796|237797|409448|424493", + "text": "You-Hoover-Fong syndrome" + }, + { + "baseId": "237802|237803|237804|237805|431541|792590|904108|919991|962144", + "text": "Immunodeficiency 47" + }, + { + "baseId": "237816|371356|614013|614014|614016|614018|614019|614049|614050|614137|654159", + "text": "Chromosome 15q11-q13 duplication syndrome" + }, + { + "baseId": "237854", + "text": "KCNT2-related condition" + }, + { + "baseId": "237854|683210|683211|789896|794511|975909", + "text": "Developmental and epileptic encephalopathy, 57" + }, + { + "baseId": "238102|238103|238104", + "text": "Monosomy 21" + }, + { + "baseId": "238265|359237|391124|391125|391129|391165|391168|391184|391213|391218|391222|391300|391301|391308|405137|439845|439846|439847|439848|439849|439850|439851|439852|439853|439854|439855|439857|439858|439859|439860|439861|515740|515744|515745|515749|515780|515782|515785|515786|515793|515794|515800|515820|515823|515833|515839|515849|515851|515871|556502|556942|556944|556946|556948|556991|556997|556998|557232|557234|558457|558459|558461|558465|578806|627690|627691|627692|627693|627694|627695|627696|627697|627698|627699|627700|627701|627702|627703|650581|650590|650731|683317|683318|685093|685094|685684|685687|685689|685691|685692|685695|689653|690571|696631|746371|746372|761826|778817|780642|780643|821839|821840|821841|823824|823825|823826|823827|823828|823829|823830|823831|823832|823833|921963|921964|921965|921966|921967|921968|930436|930437|930438|930439|940629|941894|941895|941896|941897|952371|952372|952373|952374", + "text": "heterogeneous nuclear ribonucleoprotein G, human" + }, + { + "baseId": "238719", + "text": "Low grade fibromyxoid sarcoma" + }, + { + "baseId": "239061|292174|353611", + "text": "Hypocalcemia" + }, + { + "baseId": "239296|537417", + "text": "CRELD1-related condition" + }, + { + "baseId": "239498|434459", + "text": "Regorafenib response" + }, + { + "baseId": "239674", + "text": "TERT-associated disorder" + }, + { + "baseId": "240451|311450|392291|414094|414095|414141|414142|414180|414278|538468|539168|539169|539170|539171|539172|539173|539174|539175|539176|539177|539178|539179|539180|539181|539413", + "text": "Pulmonary arterial hypertension associated with congenital heart disease" + }, + { + "baseId": "240683|654531|672222|672223|672224|672225|672226|672227|672228|672239|672240|672255|672256|672311|672312|672313|672317", + "text": "Congenital hydrocephalus" + }, + { + "baseId": "240900|454614|462979", + "text": "Anomalous origin of coronary artery from the pulmonary artery" + }, + { + "baseId": "240900|260878|454614|462979|590054", + "text": "Cough" + }, + { + "baseId": "241527|398855|461811|571612|610483|970956", + "text": "Intrauterine growth retardation, metaphyseal dysplasia, adrenal hypoplasia congenita, genital anomalies, and immunodeficiency" + }, + { + "baseId": "241578", + "text": "Ataxia, spastic, 1, autosomal dominant" + }, + { + "baseId": "241599|373488|399258|608923|608924|608925|608926|608927|608929|614671|614672|614673|614674|614675|614676|614677", + "text": "Otitis media" + }, + { + "baseId": "242569|401431|422134|445685|467249|467261", + "text": "Skin/hair/eye pigmentation, variation in, 2" + }, + { + "baseId": "243321", + "text": "Autosomal dominant familial acute myeloid leukemia" + }, + { + "baseId": "243381", + "text": "TRPM4-Related Disorders" + }, + { + "baseId": "243654", + "text": "Schwannoma" + }, + { + "baseId": "243654", + "text": "Peripheral Schwannoma" + }, + { + "baseId": "243827", + "text": "Cerebral palsy, spastic quadriplegic, 3" + }, + { + "baseId": "243871|243874|243876|243879|513521|551282|578396|623252|654146|679243|679246|790143|790144|798490|798491|816442|858588|964010|970730|973099|973100", + "text": "Neurodevelopmental disorder with hypotonia, seizures, and absent language" + }, + { + "baseId": "243891|243892|243894|613609|679951", + "text": "Nonsyndromic cleft lip with or without cleft palate" + }, + { + "baseId": "243919|243920|440047|440048|679720|802244|804848|919123|962162|964108|970868", + "text": "Ataxia-pancytopenia syndrome" + }, + { + "baseId": "243919|440047|976561|976562", + "text": "Monosomy 7 of bone marrow" + }, + { + "baseId": "243981|243982|243983|961058|961059|961060|961061", + "text": "Neurodevelopmental disorder with seizures, hypotonia, and brain imaging abnormalities" + }, + { + "baseId": "243985", + "text": "Laryngeal hypoplasia" + }, + { + "baseId": "243993", + "text": "Cerebellar cortical atrophy" + }, + { + "baseId": "244016|679678", + "text": "Renal hypoplasia (disease)" + }, + { + "baseId": "244018|360846|971562", + "text": "Language impairment" + }, + { + "baseId": "244020", + "text": "Effort-induced polymorphic ventricular tachycardias" + }, + { + "baseId": "244026|244027|244028|244029|244030|440224|440225|440226", + "text": "Hypermanganesemia with dystonia 2" + }, + { + "baseId": "244031|818308|971001", + "text": "Lethal congenital contracture syndrome 10" + }, + { + "baseId": "244032", + "text": "Arthrogryposis, perthes disease, and upward gaze palsy" + }, + { + "baseId": "244034|244035|905050", + "text": "Retinitis pigmentosa 75" + }, + { + "baseId": "244036", + "text": "Autosomal Recessive Hypotrichosis with Woolly Hair" + }, + { + "baseId": "244066|244067|244068", + "text": "Night blindness, congenital stationary, type 1h" + }, + { + "baseId": "244070|244082", + "text": "Nevus comedonicus" + }, + { + "baseId": "244071|858395|904201", + "text": "Retinal dystrophy with leukodystrophy" + }, + { + "baseId": "244075|244076|244077|977391|977392", + "text": "Pyle metaphyseal dysplasia" + }, + { + "baseId": "244104", + "text": "Mental retardation, autosomal recessive 54" + }, + { + "baseId": "244107|244108|622422|971621|971622", + "text": "Myopathy, distal, 5" + }, + { + "baseId": "244130|244131|244132", + "text": "Patent ductus arteriosus 3" + }, + { + "baseId": "244144|614081", + "text": "Specific language impairment 5" + }, + { + "baseId": "244158|590743|590744", + "text": "PMP2-related Charcot-Marie-Tooth disease type 1" + }, + { + "baseId": "244173|244174", + "text": "X-linked spondyloepimetaphyseal dysplasia" + }, + { + "baseId": "244179", + "text": "Dystonia, intellectual disability and language impairment" + }, + { + "baseId": "244523|305882|309947|315140|315160|315209|315217|315221|315300", + "text": "Charcot-Marie-Tooth with Vocal Cord Paresis" + }, + { + "baseId": "244873|841022|961527|961528|977267", + "text": "DYNC1H1-related neurodevelopmental disorders" + }, + { + "baseId": "245163|263366|800976|920542", + "text": "Neutropenia" + }, + { + "baseId": "246859|535693", + "text": "Diarrhea 9" + }, + { + "baseId": "246941", + "text": "TBL1XR1-related neurodevelopmental disorders, including Pierpont syndrome" + }, + { + "baseId": "246962", + "text": "Pseudohypoaldosteronism" + }, + { + "baseId": "246979|263334|394904|394905|431889|520947|521375|551742|551749|633665|683726|792587|963088", + "text": "Hypoplastic left heart syndrome" + }, + { + "baseId": "247012|961777|961778", + "text": "Saccharopinuria" + }, + { + "baseId": "247055|263254|263285|263783|550227|553415|969759", + "text": "Robin sequence" + }, + { + "baseId": "247084", + "text": "CEP290-related ciliopathies" + }, + { + "baseId": "247168|424691|424692|424693|424694|431511|624868|626276|626405|791938|903636|919871|919872|919873|919874|919875|919876|920410|961544|971136|971137|971138", + "text": "Intellectual disability, autosomal dominant 45" + }, + { + "baseId": "247170|359090|359091", + "text": "Dehydrated hereditary stomatocytosis 2" + }, + { + "baseId": "247173", + "text": "Inflammatory bowel disease 30" + }, + { + "baseId": "247328|247329|247330|247331|247332|260464|260465|260466|410844|434679|446312|538493|609241|609242|609243|609244|609245|609246|609247|609248|609249|609250|619906|622475|792006|815961|857694|861659|919933|961643|964545|975941|980395", + "text": "ZTTK syndrome" + }, + { + "baseId": "247359", + "text": "Acute hepatic failure" + }, + { + "baseId": "247359|971088", + "text": "Mitochondrial DNA depletion syndrome 16 (hepatic type)" + }, + { + "baseId": "247400|247401", + "text": "Ossifying fibroma of the jaw" + }, + { + "baseId": "247420|247421|247422", + "text": "Vas deferens, congenital bilateral aplasia of, X-linked" + }, + { + "baseId": "247424|247428", + "text": "Retinal dystrophy with or without extraocular anomalies" + }, + { + "baseId": "247426|247427", + "text": "RETINAL DYSTROPHY WITH EXTRAOCULAR ANOMALIES" + }, + { + "baseId": "247432", + "text": "Blood group antigen abnormality" + }, + { + "baseId": "247437|469318|470285|470288|533432|533513|533992|571140|573458|573462|648566|648567|648568|694988|706478|778566|788297|791967|805111|848195|848196|929138|929139|938902|938903|950976|960309|974505", + "text": "Myasthenic syndrome, congenital, 18" + }, + { + "baseId": "247440|247619", + "text": "Silver-russell syndrome 4" + }, + { + "baseId": "247441|247442|905833|905836", + "text": "Silver-Russell syndrome 5" + }, + { + "baseId": "247450|247451|626248", + "text": "Porokeratosis 7, multiple types" + }, + { + "baseId": "247452|247453", + "text": "Porokeratosis of Mibelli" + }, + { + "baseId": "247468|247469|622518", + "text": "Tooth agenesis, selective, 8" + }, + { + "baseId": "247470|249563|249564|447309|447314|447319|447321|447433|447435|447436|447438|447526|447534|447535|447536|447537|447546|447550|513406|515319|515320|515341|515381|515390|515397|556494|556702|556704|556706|556708|556751|556753|556755|556757|557062|557064|627130|627131|627132|627133|627134|627135|627136|627137|627138|627139|627140|627141|627142|627143|650652|650654|650660|650670|650696|690426|690427|696297|706901|745860|745861|780384|792713|823022|823023|823024|823025|823026|823027|823028|823029|823030|823031|823032|823033|823034|823035|823036|823037|823038|823039|823040|850744|851243|921758|921759|921760|921761|921762|921763|930176|930177|939782|940610|940611|941584|941585|941586|941587|941588|941589|941590|941591|952151|952152|952153|952154|952155|952156|952157|960413", + "text": "Muscular dystrophy, limb-girdle, type 2y" + }, + { + "baseId": "247472", + "text": "Mauriac syndrome" + }, + { + "baseId": "247473|247474", + "text": "MITOCHONDRIAL DNA DEPLETION SYNDROME 3" + }, + { + "baseId": "247481|247482|247483|247484|247485|424624|550857|551435|791485|919597", + "text": "Witteveen-kolk syndrome" + }, + { + "baseId": "247491|247492|247493|247494|247495|247496|247497|353885|443697|511569|535302|611387|623282|626148|654149|798552|818628|818630|861565|861621|964025|964239|964240|964241|964242|964659|964920|967267|969562|970799|977209|977210|977211|977212", + "text": "Mental retardation, autosomal dominant 44" + }, + { + "baseId": "247497|443697|818626|818627|918924|918928|966336|966337", + "text": "Intellectual developmental disorder, autosomal dominant 63, with macrocephaly" + }, + { + "baseId": "247503", + "text": "ECTODERMAL DYSPLASIA 11B, HYPOHIDROTIC/HAIR/TOOTH TYPE, AUTOSOMAL DOMINANT" + }, + { + "baseId": "247505|247506", + "text": "Parkinson disease 19b, early-onset" + }, + { + "baseId": "247507", + "text": "Epileptic encephalopathy, early infantile, 40" + }, + { + "baseId": "247508|247509|247510|247511|247512|247513|247514|247515|247516|609335|609336|609337|611347|623232", + "text": "Meier-gorlin syndrome 7" + }, + { + "baseId": "247517|361251|470897|471921|471923|472171|472172|472173|534897|534901|534902|534932|572554|574819|574821|575438|650141|650142|653814|694912|850209|939657|959330", + "text": "Wilson-Turner X-linked mental retardation syndrome" + }, + { + "baseId": "247529|965289", + "text": "Muscular dystrophy, congenital, davignon-chauveau type" + }, + { + "baseId": "247530|247531|247532|247533|247534|458427|458428|458434|458441|458445|458447|458452|458899|458902|458906|458940|458950|458951|459422|459431|524371|524372|524378|524641|562847|563569|563574|565588|568320|568565|568567|568574|568577|637790|637791|677157|692598|820078|835580|835581|835582|835583|904228|925410|925411|934575|934576|946398|946399", + "text": "Neuropathy, hereditary sensory and autonomic, type VIII" + }, + { + "baseId": "247538|247539", + "text": "Cardiomyopathy, familial restrictive, 5" + }, + { + "baseId": "247538", + "text": "FLNC-Related Disorders" + }, + { + "baseId": "247540|247543|247544|247545|485919", + "text": "POLYCYSTIC KIDNEY DISEASE 3 WITH POLYCYSTIC LIVER DISEASE" + }, + { + "baseId": "247542", + "text": "POLYCYSTIC KIDNEY DISEASE 3 WITHOUT POLYCYSTIC LIVER DISEASE" + }, + { + "baseId": "247552|247553|247554|247555|626013", + "text": "Striatonigral degeneration, childhood-onset" + }, + { + "baseId": "247556", + "text": "Hermansky-Pudlak syndrome 10" + }, + { + "baseId": "247557|260444|260445|260945|434657|434658|918497", + "text": "Infantile encephalopathy" + }, + { + "baseId": "247558|247559", + "text": "Hyperuricemic nephropathy, familial juvenile, 4" + }, + { + "baseId": "247561", + "text": "PEHO-like syndrome" + }, + { + "baseId": "247562|480538|480539|626055", + "text": "MICROPHTHALMIA, SYNDROMIC 15" + }, + { + "baseId": "247563|247564|247565|511728|550604|578464|622382|789153|969606|973626|980558", + "text": "Mirage syndrome" + }, + { + "baseId": "247576", + "text": "Camptosynpolydactyly, complex" + }, + { + "baseId": "247581|610633|621029|621030|679775|919332|919333|919334", + "text": "Mental retardation, autosomal recessive 55" + }, + { + "baseId": "247586", + "text": "Nasopalpebral lipoma-coloboma syndrome" + }, + { + "baseId": "247591", + "text": "Nasopharyngeal carcinoma, susceptibility to, 3" + }, + { + "baseId": "247611|414917|496338|537440|795353|795355|918808|918809", + "text": "Spinocerebellar ataxia 43" + }, + { + "baseId": "247614|521968|563348|565353|565356|634520|634521|699279|710143|721689|735386|790576|831470|933146|933147|954332", + "text": "Congenital disorder of glycosylation, type Iaa" + }, + { + "baseId": "247614|480768|480769|480770|798567", + "text": "Intellectual disability, autosomal dominant 55, with seizures" + }, + { + "baseId": "247643", + "text": "Acute myeloid leukemia, M6 type" + }, + { + "baseId": "247749|247750|247751|971553|971554|971555", + "text": "Short-rib thoracic dysplasia 16 with or without polydactyly" + }, + { + "baseId": "247758|247759", + "text": "Pituitary adenoma, familial isolated" + }, + { + "baseId": "247765|247766|247767|247768|247769|247770|550232|550233|626190|816365|816366", + "text": "Growth retardation, intellectual developmental disorder, hypotonia, and hepatopathy" + }, + { + "baseId": "247776|247777|576147|679721", + "text": "Ciliary dyskinesia, primary, 34" + }, + { + "baseId": "248477|248477|415438", + "text": "Language delay and attention deficit-hyperactivity disorder/cognitive impairment with or without cardiac arrhythmia" + }, + { + "baseId": "248477|248477|263624|263625|263626|263627|263628|415438|445389", + "text": "Intellectual developmental disorder with cardiac arrhythmia" + }, + { + "baseId": "248544|248545|248546|248547|248548|248549|248550|248551|248552|248553|248554|248555|248556|248557|248558|248559|248560|248561|248562|248563|248564|248565|248566|248567|248568|248569|262525", + "text": "Oromandibular-limb hypogenesis spectrum" + }, + { + "baseId": "248553|248554|270213|270215|298428|298429|298436|298438|298439|298443|298444|300763|300767|300769|300773|300774|300780|305145|305148|305152|305154|305156|305269|305270|305273|305275|305287|305294|305296|305299|305300|428475|735294|735298|749704|801814|895033|895034|895035|895036|895037|895038|895039|895040|895041|895042|895043|895044|895045|895046|895047|895048|895049|895050|895051|895052|895053|895054|895055|895056|895057|895058|895059|895060|895061|895062|895063|895064", + "text": "Obesity due to SIM1 deficiency" + }, + { + "baseId": "248575|248576|248577", + "text": "Autoinflammation, panniculitis, and dermatosis syndrome" + }, + { + "baseId": "248578|248579|788910|857600", + "text": "Ciliary dyskinesia, primary, 35" + }, + { + "baseId": "248617|248618|248619|248620|248621|248622", + "text": "Senior-Loken syndrome 9" + }, + { + "baseId": "248662", + "text": "Macular dystrophy, patterned, 3" + }, + { + "baseId": "248690|248691", + "text": "Myopathy, myofibrillar, 7" + }, + { + "baseId": "248706|248707|248708|612334|982222", + "text": "Vascular malformation, primary intraosseous" + }, + { + "baseId": "248713|248714|248715", + "text": "Peeling skin syndrome 5" + }, + { + "baseId": "248723|411366|550378", + "text": "CASK-Related Disorder" + }, + { + "baseId": "248784|248785|248786|538630", + "text": "Band heterotopia" + }, + { + "baseId": "248794|248795|248796|248797|409196|529066|550368|568640|802005|858354|920341|961321|961641|964419|971009|971010|972728", + "text": "Epileptic encephalopathy, early infantile, 43" + }, + { + "baseId": "248798|248799|432363|432364|919358|919359|967273", + "text": "Epileptic encephalopathy, early infantile, 41" + }, + { + "baseId": "248809|425254|672077|826217|857359", + "text": "Bardet-Biedl syndrome 20" + }, + { + "baseId": "248811|248812|903599", + "text": "Mental retardation, autosomal recessive 56" + }, + { + "baseId": "248897|248898|248899|248900|248901|438868|464867|465037|465464|465473|465587|465595|465659|465694|465700|466147|466174|466194|466850|466951|466992|467019|467022|467033|467059|467314|495812|529278|529462|529545|529577|529764|529831|529833|530038|530040|530363|530380|530469|530481|530495|530698|530763|530793|530799|530819|530881|530919|530948|530950|530980|530991|567594|567597|568516|569461|569537|569833|569970|570587|570595|570596|570600|570653|570719|570723|570737|570738|573682|573684|573689|573712|574225|574242|625816|643758|643759|643805|643806|643822|643823|643824|643901|643902|643903|643906|643907|645083|645115|645120|645160|645188|645222|645223|645242|645243|645256|652451|652452|652914|652917|653216|703445|715209|726954|739930|740412|740538|744904|745023|754831|754846|778367|785086|791521|805857|820764|820889|820890|820916|820969|820970|820971|820972|820973|842946|842971|842972|842973|842974|842975|842976|842977|842983|842984|842985|842986|842987|842988|843068|843069|843088|843089|843090|843091|844438|844439|844440|844441|844473|844507|844530|844531|844580|844582|844596|844604|844605|844606|844639|844640|844641|844642|844643|844644|844645|844659|851645|851687|852085|852147|852612|852788|919682|927515|927516|927517|927556|927557|928003|928016|937177|937178|937213|937680|937686|937687|937696|937697|937705|937706|949121|949131|949135|949649|949672|949673|949674|949683|957592|957593|957612|957623|964441|964683|964684|967282|971060|971063", + "text": "Epilepsy, familial focal, with variable foci 3" + }, + { + "baseId": "248902|248903|248904|248905|407707|538977|613611|679824|788835|788836|918846|974483|980936", + "text": "Epilepsy, familial focal, with variable foci 2" + }, + { + "baseId": "249126", + "text": "Familial breast and ovarian cancer" + }, + { + "baseId": "249186|249187|249188|249190|417069", + "text": "Noonan syndrome-like disorder with loose anagen hair 2" + }, + { + "baseId": "249205|249206|816532|964598", + "text": "Mental retardation, X-linked 103" + }, + { + "baseId": "249209|249210", + "text": "Orofaciodigital syndrome XV" + }, + { + "baseId": "249216|550890", + "text": "Immunodeficiency 49" + }, + { + "baseId": "249258|249259|590541|590542|789138|903649|919973|964568|971176", + "text": "Mental retardation, X-linked 104" + }, + { + "baseId": "249260|249261|920037", + "text": "Mental retardation, X-linked 105" + }, + { + "baseId": "249426|535240|535242|535244|535245|535246|535252|535253|535254|535261|535267|535268", + "text": "Congenital hemolytic anemia" + }, + { + "baseId": "249498|249500|249502|249503|249504|249505|249506|249507|249508|249510|249511|249512|249513|249514|249515|249516|249517|249518|249520|249521|249522|249523|249524|249525|249526|277166|277168|277179|277180|277191|277192|277194|277195|277214|277219|277220|277221|277222|277225|277248|277249|277250|277252|277253|277254|277257|277260|277262|277263|277270|277272|277273|277294|277416|277422|277423|277427|277428|277435|277443|277444|277452|277454|277458|277459|277466|277467|277468|277471|277472|277474|277480|277482|277486|277489|277492|277494|277498|277504|277505|278219|278222|278240|278256|278260|278261|278262|278263|278264|278267|278268|278269|278270|278271|278278|278280|278281|278288|278289|278291|278295|278297|278298|278305|278307|278309|278310|278312|278316|278317|278318|278325|278328|278329|278330|278332|278334|278336|278338|278340|278341|278342|278343|278350|278351|278352|278360|278364|278373|278374|278383|313035|313037|313079|318938|318970|318974|319574|319585|557032|558220|558220|615287|706851|718365|718370|745824|777016|862698|862699|862700|862701|862702|862703|862704|862705|862706|862707|862708|862709|862710|862711|862712|862713|862714|862715|862716|862717|862718|862719|862720|862721|862722|862723|862724|862725|862726|862727|862728|862729|862730|862731|862732|862733|862734|862735|862736|862737|862738|862739|862740|862741|862742|862743|862744|862745|862746|862747|862748|862749|862750|862751|862752|862753|865026|865027|865028", + "text": "Budd-Chiari syndrome" + }, + { + "baseId": "249812|249813|249814|249816|266292|279711|279718|279719|279721|279724|279731|279733|279734|279736|280000|280002|280004|280007|280021|280030|280048|280049|280051|280061|280062|280064|281321|281323|281327|281330|281331|281333|281339|281345|281348|281355|281519|281523|281524|281532|281534|281538|281540|281543|281545", + "text": "Hypohidrotic Ectodermal Dysplasia, Recessive" + }, + { + "baseId": "250099|281712|282335|283733|283789|284026|284057|284058", + "text": "Acute Recurrent Myoglobinuria" + }, + { + "baseId": "250402|250667|282964|283798|285276|285284|285836|285922|285941|285949|288248|288264|288685|329042|339090|339125|345084|345085|345774|346414|346445", + "text": "Congenital Myasthenic Syndrome, Dominant/Recessive" + }, + { + "baseId": "250588|360836|514140", + "text": "Hyperkalemia" + }, + { + "baseId": "250588|360836|360995|361392|424227", + "text": "Stage 5 chronic kidney disease" + }, + { + "baseId": "250889|289179|292183|292185|292312|493309|518854|518855|630875|630876|708516|708518|827448|827449|923026|931736|943297", + "text": "Hereditary orotic aciduria, type 1" + }, + { + "baseId": "251071|293653|333868|333874|333881|333904|343813|343837|343840|343865|343874|343876|349091|349105|349121|349123|349125|349127|349135|349143|349165|350042|350077|350093|353496", + "text": "Optic Atrophy, Dominant" + }, + { + "baseId": "251558|251559|263522|263523|263524|294065|294068|294075|295522|295523|295524|295526|295533|295534|295535|295539|295542|295543|295545|295546|299289|299290|299292|299293|299300|299307|299310|299321|299322|299323|299324|299325|299326|299327|299330|299331|299339|299340|299341|299347|299348|299350|299352|361021|497683|609037|620174|698618|698619|698620|721056|721057|721058|749048|858321|858322|858323|892105|892106|892107|892108|892109|892110|892111|892112|892113|892114|892115|892116|892117|892118|892119|892120|892121|892122|892123|892124|892125|892126|892127|892128|892129|892130|892131|892132|892133|892134|892135|892136|892137|892138|892139|892140|892141|892142|892143|892144|892145|892146|892147|892148|892149|892150|892151|892152|895991", + "text": "Amelogenesis imperfecta" + }, + { + "baseId": "252058|290768|295268|298774|298775|301236|301242|301266|305609|305612|422029", + "text": "Metaphyseal chondrodysplasia" + }, + { + "baseId": "252382|252383|252384|252385|252386|252387|252392|252394|300444|300454|300455|300459|300460|300461|300470|300473|300474|300485|300489|300493|300500|300503|300504|300505|300510|303302|303309|303310|303319|303329|303331|303361|303362|303364|303369|307787|307805|307812|307819|307820|307826|307827|307842|307843|307874|307880|307893|307894|307901|307902|307910|307913|307973|307977|307982|307991|307996|307998|307999|308001|308029|308034|308035|308038|308050|513063|620234|623290|735697|818249|896533|896534|896535|896536|896537|896538|896539|896540|896541|896542|896543|896544|896545|896546|896547|896548|896549|896550|896551|896552|896553|896554|896555|896556|896557|896558|896559|896560|900237|900238|900239|900240|919035", + "text": "Focal segmental glomerulosclerosis 3, susceptibility to" + }, + { + "baseId": "252960|252961|252964|252965|252966|303552|303557|303560|303561|303562|303566|303568|303570|306979|306988|306989|306996|306998|307003|307005|307010|307011|307013|307014|311871|311876|311877|311882|311883|311886|311887|311888|311891|311895|311896|311899|311904|311907|311910|311912|311913|311914|311917|311920|311926|311929|311930|311931|311942|311946|311949|311950|311954|311955|458038|722719|744375|766441|898468|898469|898470|898471|898472|898473|898474|898475|898476|898477|898478|898479|898480|898481|898482|898483|898484|898485|898486|898487|898488|898489|898490|898491|898492|898493|898494|898495|898496|900410|900411|900412", + "text": "Angiokeratoma corporis diffusum with arteriovenous fistulas" + }, + { + "baseId": "254136|274286|313856|313857|313862|313863|313867|313870|313872|313873|313874|313877|313886|313888|313889|320061|320062|320069|320071|320080|320084|320087|320088|320089|320100|320111|320112|320114|320134|320135|320138|320142|320143|320145|320146|320147|320163|320165|320166|320167|320174|320197|320198|320199|326222|326244|326245|326246|326248|326251|326252|326256|326257|326258|326270|326272|326273|326276|326277|327197|327203|327204|327206|327207|327214|327217|327218|327222|327223|327241|327242|327259|327263|327272|327273|327276|327282|327283", + "text": "Aniridia, Cerebellar Ataxia, And Intellectual Disability" + }, + { + "baseId": "254388|315724|315727|322754|322757|328843|330053|330071|330082", + "text": "Mucolipidosis, Type III Alpha/Beta" + }, + { + "baseId": "254945|320553|320594|329361|337894|399643|400207|400211|445230|464041|464044|566413", + "text": "Premature ovarian failure 15" + }, + { + "baseId": "255299|255300|255301|255302|255303|255304|312054|312057|317720|322878|322883|322884|322886|322889|322895|322898|322902|322904|322909|322910|322915|322917|322920|322921|322924|322928|322932|322936|322937|322938|322942|323745|324453|332378|332391|332412|332420|332421|332426|332427|332429|332446|332447|332461|332464|332468|332471|332480|332485|332487|332515|332525|339375|339377|339378|339381|339383|339384|339396|339405|339419|339439|339443|339453|339460|339476|339479|340813|340831|340834|340836|340840|340841|340846|340857|340866|340876|340888|340892|340898", + "text": "Amelogenesis Imperfecta, Recessive" + }, + { + "baseId": "255412|265437|340066|348872|353333", + "text": "Jarcho-Levin syndrome" + }, + { + "baseId": "255439", + "text": "Arthrogryposis with renal dysfunction and cholestasis syndrome" + }, + { + "baseId": "255586|514055", + "text": "Hyperechogenic kidneys" + }, + { + "baseId": "255755|325092|325093|325427|325468|325469|334748|334755|334758|334760|335073|335105|335114|335115|339526|339530|341231|341233|341234|341235|341560|341563|342742|342743|342753|343056|343057|343061|352425|352943|434692", + "text": "Glycogen phosphorylase kinase deficiency" + }, + { + "baseId": "256261|794298|794299|794300|794301|794302|794303|794304|794305|794306|794307|794308|794309|794310|794311|794312|794313|794314|794315", + "text": "CIC-DUX Sarcoma" + }, + { + "baseId": "256424|257265|257269|257273|257281|257286|299244|299251|299270|299272|299276|301661|301676|301684|301685|301701|306124|306137|306152|306156|306330|306356|306359|306370|306380|315854|334731|344553|345990|349580|350588|353744|389650|460250|654600|790976|963276", + "text": "Familial hemophagocytic lymphohistiocytosis" + }, + { + "baseId": "256566|260583|260584|260585|260586|262271|361807|361808|361809|430044|434540|438065|439065|482162|482163|513651|538472|538473|539077|620934|626319|788920|788921|791848|791849|903628|919786|919787|920387|920388|977285|977286|977287", + "text": "Arthrogryposis, distal, with impaired proprioception and touch" + }, + { + "baseId": "257203", + "text": "FAMILIAL COLD AUTOINFLAMMATORY SYNDROME 2, SUSCEPTIBILITY TO" + }, + { + "baseId": "257379|335926|335929|335932|335935|335939|335940|335941|335943|335948|335951|335960|335961|335967|335968|335980|335983|335987|335988|335992|336001|345625|345637|345656|345658|345660|345665|345671|345673|345678|345680|345692|345693|345695|345698|345699|345704|345705|345707|345712|345714|345716|345718|345724|345731|345732|345734|345742|345749|350177|350180|350182|350184|350186|350187|350190|350193|350194|350197|350200|350204|350207|350208|350210|350211|350212|350214|350215|350221|350223|350224|350228|350229|350231|351244|351246|351249|351250|351256|351259|351262|351263|351266|351267|351270|351272|351275|351276|351278|351281|351283|442305|470472|471454|471456|514902|533643|886346|886347|886348|886349|886350|886351|886352|886353|886354|886355|886356|886357|886358|886359|886360|886361|886362|886363|886364|886365|886366|886367|886368|886369|886370|886371|886372|886373|886374|886375|886376|886377|886378|886379|886380|886381|886382|886383|886384|886385|886386|886387|886388|886389|886390|886391|886392|886393|886394|886395|886396|886397|886398|886399|886400|886401|887477|887478", + "text": "Adult proximal spinal muscular atrophy, autosomal dominant" + }, + { + "baseId": "257577|257578|257579|347213|347216|352238|352273", + "text": "Congenital nuclear cataract" + }, + { + "baseId": "257609|337921|337925|337929|347557|347569|347578|347582|351456|351477|352476|352477|352486|353605", + "text": "Fundus dystrophy, pseudoinflammatory, recessive form" + }, + { + "baseId": "257715|622486", + "text": "Congenital Muscular Dystrophy, CHKB-related" + }, + { + "baseId": "257852|286718|287430|289863|353573", + "text": "Ovarian dysgenesis" + }, + { + "baseId": "258009", + "text": "TTN-Related disorder" + }, + { + "baseId": "259117|377393", + "text": "Glucocorticoid deficiency 5" + }, + { + "baseId": "259230|497729", + "text": "Multiple congenital anomalies-hypotonia-seizures syndrome" + }, + { + "baseId": "259237", + "text": "VATER/VACTERL association with CNS malformations" + }, + { + "baseId": "259239|259240|259241|354282|918814", + "text": "Epidermolysis bullosa simplex, generalized, with scarring and hair loss" + }, + { + "baseId": "259290|259291|259292|259293|789368|977224", + "text": "Frontometaphyseal dysplasia 2" + }, + { + "baseId": "259294|259295|259296|259297|672323|677291|917767|963206|980841", + "text": "Cardiospondylocarpofacial syndrome" + }, + { + "baseId": "259325", + "text": "Aniridia 3" + }, + { + "baseId": "259405|267315|268160|270798|373810|445468|513354|578521", + "text": "Macrocephaly with multiple epiphyseal dysplasia and distinctive facies" + }, + { + "baseId": "259624|364478|364483|389107|389108|416152|416153|583075|623226|623227|801571|802117|921033|966154", + "text": "Neurodevelopmental disorder with microcephaly, hypotonia, and variable brain anomalies" + }, + { + "baseId": "259696|514048|514112|514124|620168", + "text": "Low-set ears" + }, + { + "baseId": "259696", + "text": "Abnormality of the neck" + }, + { + "baseId": "259696", + "text": "Dysphagia" + }, + { + "baseId": "259742|359062|359063|481555|578403|578404|788756|790288|920466|920467", + "text": "Spastic tetraplegia, thin corpus callosum, and progressive microcephaly" + }, + { + "baseId": "259744", + "text": "DYSF- Related Disorder" + }, + { + "baseId": "259765", + "text": "Abnormal lung growth, pulmonary hypertension, microcephaly, and spasticity" + }, + { + "baseId": "259807|264639", + "text": "neonatal seizures" + }, + { + "baseId": "259861|259864|428715|963326|963327|963328|963329|963330|963331|970522|970523", + "text": "Hamartoma of hypothalamus" + }, + { + "baseId": "259934|536049|536050|964841", + "text": "Heterotaxy, visceral, 7, autosomal" + }, + { + "baseId": "260018|411544|411545|411546|411547|411548|411549|625867|917582|917583", + "text": "Spondylometaphyseal dysplasia - Sutcliffe type" + }, + { + "baseId": "260122|432443|432444|432445|967132|967134", + "text": "Blepharocheilodontic syndrome 1" + }, + { + "baseId": "260246", + "text": "Hip flexor weakness" + }, + { + "baseId": "260246", + "text": "Falls" + }, + { + "baseId": "260246|360912|360933|360934|360970|360971|514007|514152|794110", + "text": "Difficulty walking" + }, + { + "baseId": "260246", + "text": "Qualitative or quantitative defects of collagen 6" + }, + { + "baseId": "260246|271059|970382", + "text": "Bethlem myopathy" + }, + { + "baseId": "260290|446548|623169|623180|963309|984012", + "text": "L1 syndrome" + }, + { + "baseId": "260377|260377|260378|260379|260380|260381|260381|260382|260383|260384|260385|260386|260387|481498|481675|513414|795332|961598|970755", + "text": "Epileptic encephalopathy, early infantile, 44" + }, + { + "baseId": "260377|260381|260388|260389", + "text": "Spinocerebellar ataxia, autosomal recessive 24" + }, + { + "baseId": "260407|260407|260408|260408|260409|260410|260411|433926|442901|448453|448461|448524|448576|448587|448594|448660|448665|516236|516237|516239|516244|516249|516250|516252|516255|516256|516262|516268|516343|516348|516354|516356|540442|557416|557456|557458|557460|557462|557464|557466|557468|557470|557519|557521|557523|557525|558667|558669|558671|558673|558675|558677|558679|559170|559172|609441|650390|650391|650394|650395|650396|650397|650398|650400|650401|650402|650403|690688|690690|690691|690692|690693|690694|690695|690696|690697|690698|695065|695066|695067|719178|719179|732694|762136|778868|780802|819023|819024|819025|824615|824616|824617|824618|824619|824620|824621|824622|824623|824624|824625|824626|824627|824628|824629|922205|922206|922207|922208|922209|922210|930746|930747|930748|942177|942178|952600|952601|952602|952603", + "text": "Myasthenic syndrome, congenital, 20, presynaptic" + }, + { + "baseId": "260444|260445|260945|262040|970866", + "text": "Epileptic encephalopathy, early infantile, 51" + }, + { + "baseId": "260470|260471|260472|918950|964253|972717", + "text": "Neurodegeneration with ataxia, dystonia, and gaze palsy, childhood-onset" + }, + { + "baseId": "260473|260474|260475|260476|260477|260478|513471|513472|797629|860452|917584|917585|917586|917587|917588|917589|917590|917591|917592|917593|917594|917595|917596|917597|917598|917599|917600|917601|917602|917603|917604|917605|917606|917607|917608|917609|917610|917611|917612|917613|917614|917615|917616|917617|917618|917619|917620|961542|963084", + "text": "Leukoencephalopathy, brain calcifications, and cysts" + }, + { + "baseId": "260479|260480|262084|262085|481369|792655", + "text": "MEHMO syndrome" + }, + { + "baseId": "260501|260502|260503|260504", + "text": "Meester-loeys syndrome" + }, + { + "baseId": "260515", + "text": "Left ventricular noncompaction 2" + }, + { + "baseId": "260547|260548|260549", + "text": "GLUCOCORTICOID DEFICIENCY 4 WITH MINERALOCORTICOID DEFICIENCY" + }, + { + "baseId": "260579|260580|424600|626145|970793|972757", + "text": "Epileptic encephalopathy, early infantile, 45" + }, + { + "baseId": "260789", + "text": "Ulnar/fibular ray defect and brachydactyly" + }, + { + "baseId": "260843|260844|260845|260846|260847|415885|513171|513207|514064|576175|626247|903613|919672|920502|920523", + "text": "Short stature, brachydactyly, intellectual developmental disability, and seizures" + }, + { + "baseId": "260857|513415", + "text": "Epileptic encephalopathy, early infantile, 47" + }, + { + "baseId": "260858|260859|556462|556463|556464|556465|556468|556469|965881|971054", + "text": "Severe combined immunodeficiency due to CARMIL2 deficiency" + }, + { + "baseId": "260878|590054", + "text": "Lymphopenia" + }, + { + "baseId": "260878|360925|465930|465938|466617|466620|466656|466663|466957|485948|530172|530174|530176|530179|530243|530245|530251|530496|530502|530505|530507|530714|530719|534266|568273|570384|570388|570389|570390|570391|570447|570449|574133|590038|590054|644893|644894|644895|644896|644897|644898|644899|644900|644901|644902|644903|644904|644905|644906|644907|644908|644909|644910|644911|644912|644913|644914|644915|644916|644917|644918|644919|652755|653059|715032|716121|726762|726763|726764|740321|740322|740323|740325|755346|755347|760465|771035|771036|789347|805105|805110|815926|815927|844194|844195|844196|844197|844198|844199|844200|844201|844202|844203|844204|844205|844206|844207|844208|844209|844210|844211|844212|844213|844214|852125|904621|927909|927910|927911|927912|927913|927914|937569|937570|937571|937572|949518|949519|949520|949521|949522|957852|977163|977164|977313|977314|977316|983747|983858", + "text": "Immunodeficiency" + }, + { + "baseId": "260878|590054", + "text": "Cor triatriatum dexter" + }, + { + "baseId": "260896|260921|260929", + "text": "Orofacial-digital syndrome III" + }, + { + "baseId": "260904", + "text": "Retinal vascular dystrophy" + }, + { + "baseId": "260978|260979|260980|260981|260982|260983|404809|611418|791272|816525|919465|919466|963767|964854|965924|971567|972726|972729", + "text": "Sifrim-Hitz-Weiss syndrome" + }, + { + "baseId": "262087|262088|262089|626202|794216|965983|965984", + "text": "Short stature, rhizomelic, with microcephaly, micrognathia, and developmental delay" + }, + { + "baseId": "262090|590724|590725|590726|677309|791943|802030|903637|963185", + "text": "Epileptic encephalopathy, early infantile, 46" + }, + { + "baseId": "262198|486206", + "text": "Sotos syndrome 3" + }, + { + "baseId": "262230", + "text": "3q29 microdeletion syndrome" + }, + { + "baseId": "262271|578558", + "text": "autosomal recessive PIEZO2 associated disease" + }, + { + "baseId": "262352", + "text": "Infant onset multiple organ failure" + }, + { + "baseId": "262483|262484|262519|262520|262521|262522|262523|262524|359036|359037|362387|362388|362389|362390|362391|362392|614383|614384|964399|964399|980471", + "text": "Ehlers-Danlos syndrome, periodontal type, 2" + }, + { + "baseId": "262483|262484|262519|262520|262521|262522|262523|262524|359036|359037|362387|362388|362389|362390|362391|362392|614385|919468|961869|980472", + "text": "Ehlers-Danlos syndrome, type 8" + }, + { + "baseId": "262636", + "text": "Juvenile onset psychosis" + }, + { + "baseId": "262748|262749|262750|262751|262752|262753|262754|262755|262756|262757|262758|262759", + "text": "16q24.3 microdeletion syndrome" + }, + { + "baseId": "263171|263172", + "text": "Lung damage, immunodeficiency and chromosome breakage syndrome" + }, + { + "baseId": "263171|263172", + "text": "Lung disease, immunodeficiency, and chromosome breakage syndrome" + }, + { + "baseId": "263176", + "text": "Azoospermia" + }, + { + "baseId": "263176|263219|514147|963104", + "text": "Oral cleft" + }, + { + "baseId": "263176", + "text": "Testicular atrophy" + }, + { + "baseId": "263181|362641|362644|802081", + "text": "Anosmia" + }, + { + "baseId": "263185", + "text": "Incomplete partition of the cochlea type II" + }, + { + "baseId": "263185|513985|514023", + "text": "Telangiectasia of the skin" + }, + { + "baseId": "263185", + "text": "Juvenile rheumatoid arthritis" + }, + { + "baseId": "263187|354294", + "text": "Reduced visual acuity" + }, + { + "baseId": "263192", + "text": "Partial duplication of thumb phalanx" + }, + { + "baseId": "263192|514005|514175", + "text": "Clinodactyly" + }, + { + "baseId": "263197|263232|263315|263419|513890|513904", + "text": "17 conditions" + }, + { + "baseId": "263198", + "text": "Widened subarachnoid space" + }, + { + "baseId": "263198|263218|263231|263391|361043|514104|677275", + "text": "Mild global developmental delay" + }, + { + "baseId": "263202", + "text": "Neurological speech impairment" + }, + { + "baseId": "263202", + "text": "Obsessive-compulsive trait" + }, + { + "baseId": "263206|263215", + "text": "21 conditions" + }, + { + "baseId": "263218", + "text": "Impaired visuospatial constructive cognition" + }, + { + "baseId": "263219", + "text": "Nasolacrimal duct obstruction" + }, + { + "baseId": "263219", + "text": "Feeding difficulties in infancy" + }, + { + "baseId": "263224", + "text": "Spina bifida occulta" + }, + { + "baseId": "263224|360978", + "text": "Inguinal hernia" + }, + { + "baseId": "263234|414000|432334|485950|622520", + "text": "Recurrent fractures" + }, + { + "baseId": "263238|263300", + "text": "25 conditions" + }, + { + "baseId": "263239|918956", + "text": "Plagiocephaly" + }, + { + "baseId": "263242", + "text": "Macular hypopigmented whorls, streaks, and patches" + }, + { + "baseId": "263242", + "text": "Global brain atrophy" + }, + { + "baseId": "263244|626449|626450|965430|966614", + "text": "Hypospadias, penile" + }, + { + "baseId": "263251", + "text": "Sensory impairment" + }, + { + "baseId": "263252", + "text": "Oral motor hypotonia" + }, + { + "baseId": "263255|360977|360978|514184|961915|961916|961917", + "text": "Tall stature" + }, + { + "baseId": "263260", + "text": "Tracheomalacia" + }, + { + "baseId": "263269|805144|818379|857360", + "text": "Oligospermia" + }, + { + "baseId": "263269|360850|858734", + "text": "Overgrowth" + }, + { + "baseId": "263269", + "text": "Pneumothorax" + }, + { + "baseId": "263269", + "text": "Decreased testicular size" + }, + { + "baseId": "263270", + "text": "Aplasia of the nose" + }, + { + "baseId": "263270", + "text": "Short chin" + }, + { + "baseId": "263274", + "text": "Dyscalculia" + }, + { + "baseId": "263274|263336|263782|263783|424588|424589|424590|424591|424592|424593|424594|424595|424596|424597|590061|679897", + "text": "Expressive language delay" + }, + { + "baseId": "263274|679483|794110|921237|921239|921240", + "text": "Aggressive behavior" + }, + { + "baseId": "263274", + "text": "Poor fine motor coordination" + }, + { + "baseId": "263275|263283", + "text": "Autism with high cognitive abilities" + }, + { + "baseId": "263279", + "text": "Cerebral white matter hypoplasia" + }, + { + "baseId": "263282", + "text": "Self-injurious behavior" + }, + { + "baseId": "263284", + "text": "Abnormality of calvarial morphology" + }, + { + "baseId": "263284", + "text": "Bronchogenic cyst (disease)" + }, + { + "baseId": "263284", + "text": "Abnormality of the ileum" + }, + { + "baseId": "263288|535230|626420", + "text": "Partial agenesis of the corpus callosum" + }, + { + "baseId": "263289", + "text": "Impaired social interactions" + }, + { + "baseId": "263289", + "text": "Short attention span" + }, + { + "baseId": "263294", + "text": "Hypercoagulability" + }, + { + "baseId": "263297", + "text": "Severe short stature" + }, + { + "baseId": "263303", + "text": "29 conditions" + }, + { + "baseId": "263304|360992|513954|514058|514085|514102|621026|621038|965293", + "text": "Multicystic kidney dysplasia" + }, + { + "baseId": "263304", + "text": "Single umbilical artery" + }, + { + "baseId": "263304", + "text": "Cerebellar dysplasia" + }, + { + "baseId": "263305", + "text": "Drooling" + }, + { + "baseId": "263306|489148|966698", + "text": "Cystic hygroma" + }, + { + "baseId": "263310", + "text": "Severe intrauterine growth retardation" + }, + { + "baseId": "263310", + "text": "Pelvic kidney" + }, + { + "baseId": "263310", + "text": "Abnormal renal morphology" + }, + { + "baseId": "263314", + "text": "Depressed nasal ridge" + }, + { + "baseId": "263314", + "text": "Wide nose" + }, + { + "baseId": "263317|263411|590094", + "text": "23 conditions" + }, + { + "baseId": "263320|538608|538609", + "text": "Bladder exstrophy" + }, + { + "baseId": "263322|404850", + "text": "Microtia" + }, + { + "baseId": "263328", + "text": "EEG with temporal focal spikes" + }, + { + "baseId": "263336", + "text": "Abnormality of facial skeleton" + }, + { + "baseId": "263336", + "text": "Abnormality of the skull" + }, + { + "baseId": "263337", + "text": "Retrognathia" + }, + { + "baseId": "263337", + "text": "Abnormality of the mandible" + }, + { + "baseId": "263340|540053|540054|540055|540056|540057|540058|540059|540060|540061|540062|540063|540064|540065|540066|540067|540068|540069|540070|540071|540072|540073|540074|540075|540076|540077|540078|540079|540080|540081|540082|540083|540084|540085|540086|540087|540088|540089|540090|540091|540092|540093|540094|540095|540096|540097|540098|540099|540100|540101|540102|540103|540104|540105|540106|540107|540108|540109|540110|540111|540112|540113|540114|540115|540116|540117|540118|540119|540120|540121|540122|540123|540124|540125|540126|540127|540128|540129|540130|540131|540132|540133|540134|540135|540136|540137|540138|540139|540140", + "text": "Primary amenorrhea" + }, + { + "baseId": "263341|514143", + "text": "Aplasia of the uterus" + }, + { + "baseId": "263343", + "text": "Oligomenorrhea" + }, + { + "baseId": "263343", + "text": "Aplasia/Hypoplasia of the breasts" + }, + { + "baseId": "263344|590077|590078", + "text": "Patent ductus arteriosus" + }, + { + "baseId": "263344|626449|626450", + "text": "Patent foramen ovale" + }, + { + "baseId": "263345|263373|263379|263396", + "text": "Abnormality of prenatal development or birth" + }, + { + "baseId": "263347", + "text": "Increased body weight" + }, + { + "baseId": "263347|513942", + "text": "Bipolar affective disorder" + }, + { + "baseId": "263349", + "text": "Delayed skeletal maturation" + }, + { + "baseId": "263354|513946", + "text": "Slurred speech" + }, + { + "baseId": "263362", + "text": "Decreased body weight" + }, + { + "baseId": "263364|551352", + "text": "Involuntary movements" + }, + { + "baseId": "263391", + "text": "Chronic constipation" + }, + { + "baseId": "263391|263404", + "text": "Abnormality of the pinna" + }, + { + "baseId": "263410", + "text": "Kyphoscoliosis" + }, + { + "baseId": "263415", + "text": "30 conditions" + }, + { + "baseId": "263420", + "text": "20 conditions" + }, + { + "baseId": "263421|513917", + "text": "Telecanthus" + }, + { + "baseId": "263457|263458|263459|263460|263461|263462", + "text": "Spermatogenic failure 16" + }, + { + "baseId": "263522|263523|263524", + "text": "Amelogenesis imperfecta, hypomaturation type IIA6" + }, + { + "baseId": "263630|263631|263632|263633|263634|263635|481389|798686|802203|802204|858570|904911|963173", + "text": "Lethal congenital contracture syndrome 11" + }, + { + "baseId": "263633|434101|622834|677217|966725", + "text": "Multiple joint contractures" + }, + { + "baseId": "263637|263638|263639|263640|263641|539095|800326|800329", + "text": "Mental retardation, autosomal recessive 57" + }, + { + "baseId": "263642|263643|263644|263645|263646|263647|622304|861282", + "text": "Encephalopathy, progressive, early-onset, with brain edema and/or leukoencephalopathy 1" + }, + { + "baseId": "263648|263649|263650|263651|263652|263653|622322|654120|654121|790223|918764|918765|977185", + "text": "Shashi-Pena syndrome" + }, + { + "baseId": "263781", + "text": "16p13.2-p13.13 microduplication syndrome" + }, + { + "baseId": "263784|263785|263786|263787|263788|263789|263790|263791|263792|263793|410312|445926|578555|578556|578557|613102|622918|622919|679802|679803|756345|788919|797634|798727|798728|798729|858576|858577|917280|961630|961631|964883|964884|965291|966186|974529|974530", + "text": "Encephalopathy, progressive, early-onset, with brain atrophy and thin corpus callosum" + }, + { + "baseId": "263800|362294|362295|362296|362297|362298|362300|362301|362302|362303|443527|511518|550597|612474|613827|798955|918865|963553|963555|964024|970780|972715|977203", + "text": "Intellectual developmental disorder with dysmorphic facies and ptosis" + }, + { + "baseId": "263820", + "text": "Developmental and epileptic encephalopathy, 58" + }, + { + "baseId": "263827|440036|440037|440038|511524|550566|550567|550568|550569|551289|789364|918882|918883|965579|970787|971600", + "text": "Intellectual disability, autosomal dominant 50" + }, + { + "baseId": "263832|966215|966216|966217", + "text": "Spermatogenic failure 17" + }, + { + "baseId": "263969|442630", + "text": "GATAD2B-Related Disorder" + }, + { + "baseId": "263969|861610", + "text": "GATAD2B-related intellectual disability syndrome" + }, + { + "baseId": "263996", + "text": "KCNH1-related disorders" + }, + { + "baseId": "264298", + "text": "Dysmorphism" + }, + { + "baseId": "264298", + "text": "Bronchopneumonia" + }, + { + "baseId": "264314|682988|683032", + "text": "Autosomal dominant intermediate Charcot-Marie-Tooth disease" + }, + { + "baseId": "264319|440711", + "text": "Pes valgus" + }, + { + "baseId": "264323", + "text": "Bohring-Opitz-like syndrome" + }, + { + "baseId": "264339|309188|309201|309206|319813|320336", + "text": "Ataxia Neuropathy Spectrum Disorders" + }, + { + "baseId": "264434|362319|362337|568818", + "text": "Malignant migrating partial seizures of infancy" + }, + { + "baseId": "264436", + "text": "Lung carcinoid tumor" + }, + { + "baseId": "264505|620465", + "text": "LIG4-Related Disorders" + }, + { + "baseId": "264567|268878|485926|485927", + "text": "Polycystic liver disease 3 with or without kidney cysts" + }, + { + "baseId": "264780", + "text": "LZTR1-Related Disorder" + }, + { + "baseId": "264781|495314", + "text": "Type III lissencephaly" + }, + { + "baseId": "264781|495314", + "text": "Perisylvian polymicrogyria" + }, + { + "baseId": "264790|360623", + "text": "SHANK3-Related Disorder" + }, + { + "baseId": "264886", + "text": "Autosomal recessive congenital ichthyosis" + }, + { + "baseId": "264907", + "text": "SETBP1-Related Disorder" + }, + { + "baseId": "265231|548902|961879", + "text": "Mucopolysaccharidosistype IIIB" + }, + { + "baseId": "265814|309751|309760|309954|315004|315130", + "text": "Congenital Bile Acid Synthesis Defect" + }, + { + "baseId": "265917|290290|290291|290295|291117|291140|291142|294446|294759|294783|294807|294831|353648|434719", + "text": "Refractory anemia with ringed sideroblasts (clinical)" + }, + { + "baseId": "266181", + "text": "Bilateral cryptorchidism" + }, + { + "baseId": "266181|424978", + "text": "Microphallus" + }, + { + "baseId": "266421", + "text": "COL6A2-related disorder" + }, + { + "baseId": "266655|362641|362642|362643|362644|362645|362646|362647|362648|362649|424974|424975|424976|424977|424978|424979|424980|424981|424982|424983|919791|919792|977289", + "text": "Arrhinia with choanal atresia and microphthalmia syndrome" + }, + { + "baseId": "266844", + "text": "DCTN1-Related Disorders" + }, + { + "baseId": "267083|788813", + "text": "ISPD-Related Disorder" + }, + { + "baseId": "267212|291300|292374|295765|295766|295767|295779", + "text": "Combined Pituitary Hormone Deficiency, Dominant/Recessive" + }, + { + "baseId": "267516|788752", + "text": "COL6A3-related phenotype" + }, + { + "baseId": "268941|613525|613526|613527", + "text": "Cryptophthalmos, unilateral or bilateral, isolated" + }, + { + "baseId": "269933|361051|481389|551433|551434", + "text": "Congenital contracture" + }, + { + "baseId": "270258|275547|439932|551421|551422|551423|624837|624838|677261|677262|677263|677264", + "text": "Scapulohumeral muscular dystrophy" + }, + { + "baseId": "270565|278166|278175|279150|279177|279183|279302|279352", + "text": "Isolated Hyperparathyroidism" + }, + { + "baseId": "270687|513914|514010", + "text": "Fatty replacement of skeletal muscle" + }, + { + "baseId": "271513", + "text": "Genu varum" + }, + { + "baseId": "271861", + "text": "Proximal muscle weakness in lower limbs" + }, + { + "baseId": "271919|275126|363960|454663|454673|454675|454676|454734|454745|454771|454774|455202|455236|455459|455473|520795|521066|521089|521186|521292|564874|587393|622347|633523|683709|683710|683711|683712|683713|683714|683717|683718|685178|685179|685181|686702|686705|691761|691763|721263|830380|830400|830401|830422|830423|851919|932739|932740|932753|932754|944424|944425|944438|954059", + "text": "Infantile dystonia-parkinsonism" + }, + { + "baseId": "272211|318515|318517|318518|318520|318521|318526|318527|326695|326697|326709|326716|332916|334598|342546|342554|353257", + "text": "Centronuclear Myopathy, Dominant" + }, + { + "baseId": "272947", + "text": "Alagille syndrome, ATP8B1 related" + }, + { + "baseId": "273103|320737|320738|320744|329581|329583|329585|329586|336200|336203|336206|336207|338097|338103|338104|338106|353303", + "text": "OTX2-Related Syndromic Microphthalmia" + }, + { + "baseId": "273447|440064", + "text": "SHORT-RIB THORACIC DYSPLASIA 7 WITHOUT POLYDACTYLY" + }, + { + "baseId": "273697|576106", + "text": "Spinocerebellar ataxia type 15/16" + }, + { + "baseId": "274984|424400|424401|424401|424402|424403|424405|452592|452593|452598|452600|452601|452607|452608|452621|452626|452631|452633|452636|452638|452644|452651|452653|452655|452657|452659|452663|452664|452667|452675|452679|452680|452682|452683|452686|452687|452689|452691|452875|452878|452880|452881|452884|452888|452891|452892|452894|452896|452897|452901|452903|452907|452908|452913|452915|452916|452917|452920|452923|452924|452925|452926|452927|452929|452930|452932|452933|452934|452935|452937|452938|452939|452941|452944|452945|452946|452947|452948|452951|452953|452955|452963|452964|452966|452969|452970|452971|452973|452974|452975|452976|452977|452978|452982|452984|452986|452988|452994|452996|452997|453006|453007|453008|453010|453016|453018|453026|453030|453032|453033|453036|453144|453146|453151|453155|453160|453163|453170|453176|453188|453190|453191|453194|453195|453207|453210|453212|453214|453220|453221|453222|453238|453247|453251|453253|453256|453258|453261|453270|453281|453289|453296|453314|453316|453319|453320|453325|453328|519458|519463|519467|519476|519480|519482|519484|519485|519486|519487|519488|519490|519491|519493|519495|519496|519499|519504|519505|519506|519508|519509|519511|519512|519517|519519|519520|519521|519522|519527|519529|519531|519534|519535|519537|519546|519553|519555|519559|519560|519563|519568|519573|519579|519583|519653|519655|519662|519664|519675|519679|519683|519696|519698|519704|519709|519711|519713|519715|519716|519720|519722|519724|519727|519744|519746|519749|519755|519757|519762|519764|519766|519769|519770|519775|519777|519781|519783|519787|519791|519793|519797|519799|519801|559076|559078|559080|559082|559084|559086|559088|559090|559092|559094|559096|559606|559608|559610|559612|559614|559616|559618|559620|559622|559624|559626|559628|559630|559632|559634|559636|561704|561709|561710|561712|561717|561722|561723|561726|561730|561744|561745|561750|563162|563167|563169|563174|563177|563186|563192|563193|563197|563204|578020|631628|631629|631630|631631|631632|631633|631634|631635|631636|631637|631638|631639|631640|631641|631642|631643|631644|631645|631646|631647|631648|631649|631650|631651|631652|631653|631654|631655|631656|631657|631658|631659|631660|631661|631662|631663|631664|631665|631666|631667|631668|631669|631670|631671|631672|631673|631674|631675|631676|631677|631678|631679|631680|631681|631681|631682|631683|631684|631685|631686|631687|631688|631689|631690|631691|631692|631693|631694|631695|631696|631697|691457|691458|691459|691460|691461|691462|691463|691464|691465|691466|691467|691468|695212|695213|698199|698202|698203|698204|698205|698206|698207|698209|698210|698212|698213|698215|698217|698219|698220|698221|698222|698223|708960|708961|708964|708965|708968|708970|708971|720554|720555|720556|720557|720558|720560|720562|720563|720565|720566|734192|734196|734198|734200|734203|743942|744030|748413|748418|748419|748421|748426|759217|759227|764056|764059|764060|764066|764067|764071|764077|774864|777264|777267|777383|779070|781759|781761|781767|781771|828408|828409|828410|828411|828412|828413|828414|828415|828416|828417|828418|828419|828420|828421|828422|828423|828424|828425|828426|828427|828428|828429|828430|828431|828432|828433|828434|828435|828436|828437|828438|828439|828440|828441|828442|828443|828444|828445|828446|828447|828448|828449|828450|828451|828452|828453|850956|851067|851572|851574|857588|857589|923285|923286|923287|923288|923289|923290|923291|923292|923293|923294|923295|923296|923297|923298|923299|923300|923301|923302|932040|932041|932042|932043|932044|932045|932046|932047|932048|932049|932050|932051|932052|932053|940760|943650|943651|943652|943653|943654|943655|943656|943657|943658|943659|943660|943661|943662|943663|943664|943665|943666|943667|953562|953563|953564|953565|953566|953567|953568|959704|984046", + "text": "Spermatogenic failure 18" + }, + { + "baseId": "275543|405860|513918", + "text": "Hereditary nonpolyposis colorectal carcinoma" + }, + { + "baseId": "275544|417650|417652|417653|417655|439920|439921|439922|439923|439924|540863|551399|551400|624829|624830|677210", + "text": "Low alkaline phosphatase" + }, + { + "baseId": "276313|361272|613956|613989|653992|672131|918552", + "text": "1q21.1 recurrent microdeletion" + }, + { + "baseId": "276529|277059|348590", + "text": "Juvenile hemochromatosis" + }, + { + "baseId": "276671|276673|276686|276691|276726|276763|276949|276950|276955|277004|277518|277521|277522|277526|277528|277548|277604|277610|277611|277623|277627|277653|277727|277730|277732|277750|277761|331920|331961|338923|338944|340546|340556", + "text": "Spherocytosis, Recessive" + }, + { + "baseId": "276776|276786|276789|277042|277056|277061|277062|277074|277618|277644|277648|277682|277773", + "text": "Seizures, Sensorineural Deafness, Ataxia, Intellectual Disability, and Electrolyte Imbalance Syndrome" + }, + { + "baseId": "277021|277929|277938|278116", + "text": "Age-related cortical cataract" + }, + { + "baseId": "277054|278133|278135|312079|317744|317745|677478|677479|677480|677481", + "text": "Spondyloepimetaphyseal dysplasia" + }, + { + "baseId": "277189|277190|277193|277897|277898|277899|278001|862587|862588", + "text": "Apolipoprotein A-II deficiency" + }, + { + "baseId": "277426", + "text": "Lung cancer" + }, + { + "baseId": "277497|277499|320737|320744|336200|353303", + "text": "Combined Pituitary Hormone Deficiency, Dominant" + }, + { + "baseId": "278098|278128|278134|278151|278153|278158|279063", + "text": "Hyperprolinemia" + }, + { + "baseId": "278181|278221|278238|279432", + "text": "Mesangiocapillary glomerulonephritis, type II" + }, + { + "baseId": "278248", + "text": "Factor XIII deficiency" + }, + { + "baseId": "278548|278549|278557|278569|278588|278644|278645|278656|278658|278672|278676|278679|279809|279814|279815|279865|279913|279965|279966|279967|279973|279978|279979|283113|283121|283314|337898|347509|347512|351415|351422|352418|352435", + "text": "Parkinson Disease, Recessive" + }, + { + "baseId": "279390", + "text": "CFH-Related Disorders" + }, + { + "baseId": "279499|279511|279525|279526|279538|279571|279577|279772|279778|279779|279823|279851|281080|281103|281104|281198|281208|281211|286491|286513|286566|286567|286570|286571|286574|286576|287198|287218|287275|287304|289524|289540|289580|289615|289636|289996|290004|290006|342710|342733", + "text": "Familial erythrocytosis" + }, + { + "baseId": "281004|281015|282531|292021|293384|293443|293457|296773", + "text": "Renal Hypomagnesemia, Recessive" + }, + { + "baseId": "281045|321108|321109|330235|330237|330257|330288|338733|346275|346276|350532|350533|351571|351575|353095|353305|353588", + "text": "Early-onset autosomal dominant Alzheimer disease" + }, + { + "baseId": "281496|353107", + "text": "Corneal Dystrophy, Dominant/Recessive" + }, + { + "baseId": "281844|281846|281847|281851|281852|281858|281859|281860|281866|281867|281872|281877|281878|281882|281883|281884|281888|281889|282500|282503|282506|282507|282508|282509|282510|282512|282513|282514|282521|282524|282525|284144|284145|284150|284151|284152|284154|284157|284158|284161|284162|284165|284166|284168|284181|284187|284357|284362|284368|284372|284373|284374|284375|284376|284379|284380|284384|284388|284389|284428|284435", + "text": "Lactose intolerance" + }, + { + "baseId": "282038|486871|623098|623099", + "text": "fluorouracil response - Other" + }, + { + "baseId": "282781|285149", + "text": "Cerebral palsy spastic quadriplegic" + }, + { + "baseId": "283062|492849|620009", + "text": "NPHP4-Related Disorders" + }, + { + "baseId": "283136|540578", + "text": "Blue rubber bleb nevus" + }, + { + "baseId": "283818|283833|285439|285465|285842", + "text": "Duane's syndrome" + }, + { + "baseId": "283970|283979|283982|284743|286639|287065|287073|314616|314619|314621|353123|353124", + "text": "Amyotrophic Lateral Sclerosis, Recessive" + }, + { + "baseId": "284729|284732|284737|284740|285403|287631|287632|287635|287862|287863|287865|287866|287872|287873|287876|320533|320538|320539|337831|550215|550220", + "text": "Selective tooth agenesis" + }, + { + "baseId": "284860|285486|285529|287809|288109|302986|307420|307642|413879", + "text": "3-M syndrome" + }, + { + "baseId": "285302", + "text": "Ichthyosis, congenital, autosomal recessive 4B (harlequin)" + }, + { + "baseId": "286219|286231|286234|286939|286957|286958|286963|289274|289292|289293|289628|289633|289635|289671|330539|337117|339038|339058|906005", + "text": "Primary congenital glaucoma" + }, + { + "baseId": "286357", + "text": "Familial Atypical Mycobacteriosis, Autosomal Dominant" + }, + { + "baseId": "286783|286785|286821|289103|289459", + "text": "Xanthinuria" + }, + { + "baseId": "287756|287757|287763|287773|287775|288443|288444|288445|291332|291480|367104|425513|451516|451793|451985|451991|518654|518656|518696|518698|518783|518785|518794|518877|518885|537357|558698|559213|559215|561031|561033|562146|562150|562155|621141|624251|624252|630656|630657|630658|630659|630660|630661|630662|630663|630664|630665|630666|630667|630668|630669|630670|651024|691238|691239|691240|691241|691242|691243|697713|708418|720016|720017|747833|763475|779061|781489|781490|787344|819291|827181|827182|827183|827184|827185|827186|827187|850925|851448|851450|922957|922958|922959|922960|922961|922962|922963|931641|931642|931643|931644|943186|943187|943188|943189", + "text": "ZAP70-Related Severe Combined Immunodeficiency" + }, + { + "baseId": "288124|288863|288876|291805|291811|291813|291910|291921|291925|291927", + "text": "Hereditary essential tremor" + }, + { + "baseId": "289467|289492|292684|292690", + "text": "Retinitis Pigmentosa, Dominant/Recessive" + }, + { + "baseId": "289626|289643|289644|290377|293464|293995|293999|294000|300208", + "text": "3-MCC Deficiency" + }, + { + "baseId": "289693|289714|290450|290472|290485|290486|293545|293548|294144|353647|857675|966850", + "text": "Ectrodactyly" + }, + { + "baseId": "290633|290908|299994|300007|303437|304559|316173|323452|330859", + "text": "Distal hereditary motor neuronopathy" + }, + { + "baseId": "290768|295268|305600|305605|305607|305608|309418|309460|309471|309492|309506|314732|314756|314789|314807|314902|349927|550229", + "text": "Chondrodysplasia" + }, + { + "baseId": "291486|291487|291491|291506|291528|291536|291540|291544|291547|291550|291551|292723|292726|292730|292742|292751|292752|292769|292780|292786|292791|292815|292817|292819|292838|296049|296050|296052|296053|296054|296066|296068|296075|296080|296085|296086|296095|296096|296108|296112|296143|296146|296148|296160|296164|296165|296168|296186|353652", + "text": "Intellectual Disability with Language Impairment and Autistic Features" + }, + { + "baseId": "291598|291633|292886|292960|296241|296285|296299|353653|513583|514016|672257|918956", + "text": "Vesicoureteral reflux" + }, + { + "baseId": "292032|296771", + "text": "Axenfeld-rieger anomaly" + }, + { + "baseId": "292897|292903|292915|294262|294272|294273|297810|297814|297819|310626|315866|322615|322616|322623|322628", + "text": "BH4-Deficient Hyperphenylalaninemia" + }, + { + "baseId": "293096|293159|294525|294542|298033|298080|538368|590769|590770|590771|613968|614004|614086|918868|918890", + "text": "4p partial monosomy syndrome" + }, + { + "baseId": "293322", + "text": "CFI-Related Disorders" + }, + { + "baseId": "294077|295541|295549|299343|329076|329088|345114|345117|346473", + "text": "Amelogenesis Imperfecta, Dominant" + }, + { + "baseId": "294818|296525|296526|300251|300258|300260|300285", + "text": "Sensory Neuropathy with Spastic Paraplegia" + }, + { + "baseId": "295091|295093|295096|295098|296916|296924|296927|300552|300556|300558|300665|300668|300669|300681|353676", + "text": "Leukodystrophy, Adult-Onset" + }, + { + "baseId": "295612|295616|297372|301288|301457|353678|575496", + "text": "Distal myopathy" + }, + { + "baseId": "295661", + "text": "Hyperthyroxinemia, dysalbuminemic" + }, + { + "baseId": "295791|295801|295837|295941|295944|295950|295955|297605|297612|297661|297674|297675|301566|301574|301584|301599|301602|301671|301672|301734|301751|301758|301772|301775|301778|301780|301790|301866|301871", + "text": "Craniometaphyseal dysplasia" + }, + { + "baseId": "295791|295801|295837|295941|295944|295950|295955|297605|297612|297661|297674|297675|301566|301574|301584|301599|301602|301671|301672|301734|301751|301758|301772|301775|301778|301780|301790|301866|301871", + "text": "Chondrocalcinosis" + }, + { + "baseId": "296421|296456|302452|302691", + "text": "Treacher Collins Syndrome, Dominant" + }, + { + "baseId": "296470|434560", + "text": "Acute Porphyria" + }, + { + "baseId": "296638|298531|338796|338799|348400|348414|348437|348443|352024|352027|352031|352034|352035|352737|352738|352739|352740|352742|352743|353862", + "text": "Lymphoproliferative syndrome" + }, + { + "baseId": "297688|297692|297693|297694|297697|297698|297704|297707|297708|297714|297716|297722|297723|297730|297733|297734|297736|297741|297745|297748|297752|297756|297762|297765|297766|297767|297771|297772|297776|297779|297780|297781|297788|297797|297798|297799|297805|297807|299875|299877|299893|299894|299896|299914|299925|299927|299929|299931|299939|299940|299941|299945|299947|299949|299950|299951|299955|299960|299962|299965|299967|299970|299971|299972|299984|304058|304059|304064|304069|304070|304071|304073|304075|304077|304078|304079|304080|304084|304085|304090|304101|304102|304110|304115|304118|304119|304120|304123|304130|304133|304134|304141|304142|304143|304154|304155|304158|304159|304168|304169|304171|304176|304191|304201|304202|304203|304411|304412|304415|304417|304419|304422|304423|304424|304426|304428|304429|304436|304437|304438|304441|304442|304445|304447|304448|304449|304451|304453|304458|304469|304471|304474|304475|304481|304482|304488|304490|304493|304494|304496|304497|304498|304507|304521|304522|735128|790563|894421|894422|894423|894424|894425|894426|894427|894428|894429|894430|894431|894432|894433|894434|894435|894436|894437|894438|894439|894440|894441|894442|894443|894444|894445|894446|894447|894448|894449|894450|894451|894452|894453|894454|894455|894456|894457|894458|894459|894460|894461|894462|894463|894464|894465|894466|894467|894468|894469|894470|894471|894472|894473|894474|894475|894476|894477|894484|894485|894487|894488|894489|894491|894492|896114|896115|896116", + "text": "Platelet-type bleeding disorder 9" + }, + { + "baseId": "297720|301638|443707|633559|915005|915006|915007|915008|915009", + "text": "Susceptibility to nonsyndromic otitis media" + }, + { + "baseId": "298067|304539|304545|304549|304586|304588|304832|304843|304860|304890|304891|304892", + "text": "Striatal Degeneration" + }, + { + "baseId": "298149|298164|298165|298173|302208|302439|302480|302486|302487|321763|331064|331098|337834|339817|339910", + "text": "Achondrogenesis" + }, + { + "baseId": "298149|298164|298165|298173|302208|302439|302480|302486|302487", + "text": "Atelosteogenesis" + }, + { + "baseId": "298362|298377|298378|298388|300646|300655|300690|300691|304999|305015|305016|305020|305065|305082|305088|305200|305209|305235", + "text": "Intellectual Disability, Stereotypic Movements, Epilepsy, and/or Cerebral Malformations" + }, + { + "baseId": "298502|298504|298510|300802|305165|305186|353739", + "text": "Adult i blood group with or without congenital cataract" + }, + { + "baseId": "298591|302698|302716|302728|303023|303031", + "text": "Familial Atypical Mycobacteriosis, Autosomal Recessive" + }, + { + "baseId": "298705", + "text": "Hyperparathyroidism 4" + }, + { + "baseId": "298732|305568|578440", + "text": "FIG4-Related Disorders" + }, + { + "baseId": "298997|299002|299010|299023|299038|299788|299874|299882|301490|305803|305804|305807|305834|305835|305850|305856|305868|306031|306033|306046|306081|306100|353673|353743", + "text": "Hypophosphatemic Rickets, Recessive" + }, + { + "baseId": "299551|302086|302108|306529|306800|306813", + "text": "Parkinson Disease, Juvenile" + }, + { + "baseId": "299835|302415|302421|306831|306838|306848|306853|307133|307137|307138|654413", + "text": "Trichohepatoenteric syndrome" + }, + { + "baseId": "300173|307361|307363|307369|307578", + "text": "Choroidal Dystrophy" + }, + { + "baseId": "300173|307361|307363|307369|307578", + "text": "Vitelliform macular dystrophy" + }, + { + "baseId": "300174", + "text": "PEX6 POLYMORPHISM" + }, + { + "baseId": "300241|300244|300245", + "text": "Treacher Collins Syndrome, Recessive" + }, + { + "baseId": "300941|308567|308577|308607", + "text": "Stickler Syndrome, Recessive" + }, + { + "baseId": "300968|300969", + "text": "Corneal Dystrophy, Dominant" + }, + { + "baseId": "302011|513576", + "text": "AGK-Related Disorders" + }, + { + "baseId": "303612|303655|307094|329115|329116|329117|329118|329119|329120|329121|329133|329136|329137|339236|339242|339248|345143|345153|346516|346533|346537|346539|346540|346545|346569", + "text": "Osteogenesis Imperfecta, Dominant" + }, + { + "baseId": "303959|303972|304052|307523|307580|307638|307639|307643|312524|312531|312578|312592|312617|312627|312658|312670|312678|312712|312791|312792", + "text": "Trichorhinophalangeal syndrome" + }, + { + "baseId": "304081|307646|312825|327530|353822|353823", + "text": "Hereditary Multiple Osteochondromatosis" + }, + { + "baseId": "304344|313094", + "text": "Thyroid dyshormonogenesis" + }, + { + "baseId": "304422|440020", + "text": "Fetal and neonatal alloimmune thrombocytopenia" + }, + { + "baseId": "304821", + "text": "HR-Related Disorders" + }, + { + "baseId": "304863|313665", + "text": "Alopecia universalis" + }, + { + "baseId": "305780|305788|309798|315034|315167|353842", + "text": "Familial temporal lobe epilepsy 2" + }, + { + "baseId": "305825|305826|305827|309830|309831|309833|309891|309902|309906|315068|315070|315185|315187|320766|320772|329627|329629|338132|338140|338146|338147|338153|353304|353843", + "text": "Branchiootorenal Spectrum Disorders" + }, + { + "baseId": "306222|306223|306229|306254|310358|315626", + "text": "Hypercholanemia" + }, + { + "baseId": "306295|306326|306354|306364|306369|310418|310442|310448|310465|310555|312419|315768|315803|315922|315965|316109|316138|316143|353848", + "text": "Familial High Density Lipoprotein Deficiency" + }, + { + "baseId": "306385", + "text": "Autosomal recessive myogenic arthrogryposis multiplex congenita" + }, + { + "baseId": "307152", + "text": "SETX-Related Disorders" + }, + { + "baseId": "307675", + "text": "POLR1C-Related Disorders" + }, + { + "baseId": "307975|822303", + "text": "Dysequilibrium syndrome" + }, + { + "baseId": "308072|308081|308082|308084|308089|308091|312430|312468|318241|318264|318267|318269|318288|318304|318333|318769|318772|318773", + "text": "Amyotrophic Lateral Sclerosis/Frontotemporal Dementia" + }, + { + "baseId": "308306|349927", + "text": "Acromesomelic dysplasia" + }, + { + "baseId": "308753|308755|308767|308769|308770|308825|308827|313373|313397|313430|313431|319222|319223|319225|319228|319240|319242|319793|319818|319826|319838|319842|319868|441341|441343|441345|441346|441348|441352|441353|441355|444515|444516|508843|577133|638388|684104|684106|684107|684108|684109|684110|684112|684113|684114|684115|684117|684118|684119|684120|685255|685256|685257|685258|685259|685261|685262|687502|687503|687504|687505|687506|687508|687510|687514|687517|687520|687525|687526|687527|687528|687529|687530|687532|687534|687536|687537|687541|687542|687544|687546|689959|689960|692690|692691|692692|692693|701062|751775|767478|793356|793357|836249|978597|978598|978599|978600|978601|978602|978603|978604|978605|978606|978607|978608|978609|978610|978611|978612|978613", + "text": "Choreaacanthocytosis" + }, + { + "baseId": "308951", + "text": "Nonsyndromic Trigonocephaly" + }, + { + "baseId": "308989|361703|361704|361705|361708|361722", + "text": "Craniosynostosis, nonspecific" + }, + { + "baseId": "309261|309264|319840|320338|581825|581826", + "text": "Split-hand/foot malformation" + }, + { + "baseId": "309369|325180|353162", + "text": "Renal Hypomagnesemia, Dominant" + }, + { + "baseId": "309832|309946|309949|314979|320866|321455|514035|514036", + "text": "Megaloblastic anemia" + }, + { + "baseId": "309908", + "text": "Mitochondrial Complex V (ATP Synthase) Deficiency, Nuclear Type" + }, + { + "baseId": "310915|329340|348274|353447|353448|353449", + "text": "Isolated growth hormone deficiency" + }, + { + "baseId": "311110|311116|311117|316391|316412|323186|481315", + "text": "KAT6B-Related Spectrum Disorders" + }, + { + "baseId": "311122|620263", + "text": "GLI3-Related Disorders" + }, + { + "baseId": "311576|311581|311582|311586|311592|311593|317166|317170|323197|323201|323202|323203|323776|353158|682675", + "text": "Moyamoya disease" + }, + { + "baseId": "312348", + "text": "Posterior polar cataract" + }, + { + "baseId": "312525|318500|324613|325351", + "text": "Immunodeficiency due to defect in CD3-gamma" + }, + { + "baseId": "313257|313258|313262|313263|313264|313265|313267|313284|313288|313292|313293|313320|313322|319388|319395|319396|319397|319433|319434|319444|325510|325511|325512|325513|325514|325524|325525|325528|325532|325537|325538|325560|326474|326475|326478|326479|326489|326511|326517|326519|326520|326521|326533|326534|326536", + "text": "Familial hyperaldosteronism" + }, + { + "baseId": "314218|326894", + "text": "Bone Mineral Density Variation" + }, + { + "baseId": "314295|620404", + "text": "RAPSN-Related Disorders" + }, + { + "baseId": "315888|326756|329110|330282|330295|332924|332948|332949|345361|345369|350041|350043|351077|353258", + "text": "Immunodeficiency with Hyper-IgM" + }, + { + "baseId": "316019|359749|502091|624988|625731|904869", + "text": "Hereditary sensory and autonomic neuropathy" + }, + { + "baseId": "316211|326236|335942|335963|335977|339979|341364|342287|353210|353211|353331|353353|353354", + "text": "Hypertyrosinemia" + }, + { + "baseId": "316881|316885|316891|316892|316893|316907|316909|316910|324494|324495|324505|324508|324510|330622|330661|330662|330689|330692|332012|332023|332039|332046|332067|332072|332081|332087|332103", + "text": "Lethal Encephalopathy" + }, + { + "baseId": "316885|316889|316907|316909|316910|324499|324508|324510|324513|324515|324518|329883|329891|330637|330661|330689|330692|330699|330703|332004|332011|332012|332022|332036|332039|332072|332081|332087|332103|332105|332112|979281|979282", + "text": "Mitochondrial myopathy and sideroblastic anemia" + }, + { + "baseId": "316959|316978|317007|332182|332191|976511|976512|976513", + "text": "Congenital fibrosis of extraocular muscles" + }, + { + "baseId": "317085", + "text": "Lethal congenital contracture syndrome" + }, + { + "baseId": "317102|317118|324857|324859|330949|332440|332445", + "text": "Hypophosphatemic Rickets, Dominant" + }, + { + "baseId": "317187|317211|317213|317230|317238|324901|324908|324917|324919|324921|331044|331069|332566|332622|332628|333910", + "text": "Vitamin D-dependent rickets" + }, + { + "baseId": "317382|325213|325217|325219|325221|325228|325230|331430|331436|331437|331445|331447|331449|331459|332850|332851|702337|869920|869921|869922|869923|869924|869925|869926|869927|869928|869929|869930|872250", + "text": "46,XY gonadal dysgenesis, complete, dhh-related" + }, + { + "baseId": "318010|333610", + "text": "Congenital Muscular Dystrophy, ITGA7-related" + }, + { + "baseId": "318132|318139|326142|332311|332318", + "text": "Cutaneous Malignant Melanoma, Dominant" + }, + { + "baseId": "318243|318287|332506|332551|334108|334117|334155", + "text": "Cystic Fibrosis-Like Syndrome" + }, + { + "baseId": "318243|332475|332506|334092|334094|334108|334117", + "text": "Familial Periodic Fever" + }, + { + "baseId": "319018|980688", + "text": "Cerebral hemorrhage" + }, + { + "baseId": "320106|328644|328645|328703|335252|335280|337132", + "text": "Omodysplasia" + }, + { + "baseId": "320172", + "text": "17-Beta-Hydroxysteroid Dehydrogenase III Deficiency" + }, + { + "baseId": "320697|320704|320737|320738|320744|329501|329502|329507|329509|329581|329582|329583|329584|329585|329586|336094|336096|336097|336106|336109|336119|336131|336193|336200|336203|336206|338009|338016|338023|338038|338103|353303", + "text": "Syndromic Microphthalmia, Dominant" + }, + { + "baseId": "320697|329501|329502|336097|336106|338009|338016|338023|626230", + "text": "BMP4-Related Syndromic Microphthalmia" + }, + { + "baseId": "320933", + "text": "Complement component 4, partial deficiency of" + }, + { + "baseId": "321860", + "text": "PI M(MALTON)" + }, + { + "baseId": "321870", + "text": "NODAL-Related Disorders" + }, + { + "baseId": "322495|514090", + "text": "Generalized joint laxity" + }, + { + "baseId": "322495|360798|360810|514090|590084|679897|980658|980729", + "text": "Joint laxity" + }, + { + "baseId": "322981|322984|322997|332528|332537|339529|353321|497250", + "text": "Griscelli syndrome" + }, + { + "baseId": "323349|333028|339866|339884|341294|341295|353329", + "text": "Syndromic Microphthalmia, Recessive" + }, + { + "baseId": "324711|340891|340904|342346", + "text": "Pulmonary Surfactant Metabolism Dysfunction, Recessive" + }, + { + "baseId": "324984|324988|324989|334651|338333", + "text": "Common Variable Immune Deficiency, Recessive" + }, + { + "baseId": "325225", + "text": "46,XY DSD/46,XY CGD" + }, + { + "baseId": "325767|343348", + "text": "Multicentric Osteolysis-Nodulosis-Arthropathy (MONA) Spectrum Disorders" + }, + { + "baseId": "327428|327448|337297|343549|343582", + "text": "Spontaneous pneumothorax" + }, + { + "baseId": "327720|327729|327761|337488|337536|337541|343742|343758|343774|343783|343814|345211", + "text": "Lissencephaly/Subcortical Band Heterotopia" + }, + { + "baseId": "327759|857406", + "text": "Familial Isolated Pituitary Adenomas" + }, + { + "baseId": "328459|839161|977248", + "text": "CTSC-Related Disorders" + }, + { + "baseId": "328660|328662|328672|328673|338624|338631|338649|338655|344704", + "text": "Distal Renal Tubular Acidosis, Dominant" + }, + { + "baseId": "329067|329081|335687|337517", + "text": "Dyskeratosis Congenita, Dominant" + }, + { + "baseId": "329273|353209|496550", + "text": "Brachyolmia" + }, + { + "baseId": "329365|339623|345381|346754|346763", + "text": "Hyperkalemic Periodic Paralysis" + }, + { + "baseId": "330305|330313|340490|340495|340496|340501|340503|340539|346227|347517|347571|353461", + "text": "Hereditary Neuralgic Amyotrophy (HNA)" + }, + { + "baseId": "330328|330333", + "text": "Desbuquois syndrome" + }, + { + "baseId": "331088", + "text": "peginterferon alfa-2b and ribavirin response - Efficacy" + }, + { + "baseId": "331143", + "text": "PI KALSHEKER-POLLER" + }, + { + "baseId": "331477|331499|331556|341769|341794|341816|347117|347157|347167|347192|347225|347227|347244|348441|348448|348458|348479|348482", + "text": "Diarrhea with Microvillus Atrophy" + }, + { + "baseId": "332327|332344|342455|342499|347877|347891", + "text": "Dementia, Deafness, and Sensory Neuropathy" + }, + { + "baseId": "332817", + "text": "SCID, autosomal recessive, T-negative/B-positive type" + }, + { + "baseId": "332857|343034|348373|348380|348386|348392|348394|349551", + "text": "Thyroid Hormonogenesis Defect" + }, + { + "baseId": "333242|333266|343342", + "text": "Microcephaly, Cortical Malformations, and Intellectual Disability" + }, + { + "baseId": "333885", + "text": "GJB6-related disorders" + }, + { + "baseId": "333967|979289", + "text": "Encephalomyopathy with respiratory failure and lactic acidosis" + }, + { + "baseId": "335228|335232|335240|335241|335253|345048|345060|345066|345068|349857|349860|349861|349868|349871|350884|410746|410747|426331|426332|446219|470335|470877|470879|471378|533486|533496|533535|533541|533542|534060|571183|572875|572878|575084|648610|648618|648619|648622|648625|716903|716904|716905|728596|728598|731336|742347|742348|757444|757446|757448|757451|757455|757456|760654|760660|760867|760880|760949|773067|773071|786355|788936|821304|848286|848287|848288|848289|848290|848291|848292|848293|848294|848295|848296|848297|848298|848299|848300|929153|929154|929155|929156|929157|929158|929159|929160|929161|929162|938937|938938|938939|951036|951037|951038|951039|951040|951041|958805|958806|958807|960938", + "text": "Centromeric instability of chromosomes 1,9 and 16 and immunodeficiency" + }, + { + "baseId": "335244|341681|343177|343201|343202|343224", + "text": "Trichoepithelioma, multiple familial, 2" + }, + { + "baseId": "335715|335743|335784|345489|345490|350105|965452", + "text": "Periventricular Heterotopia" + }, + { + "baseId": "335916|335920|335922|335924|335925|345605|345618|345623|350170|350176|351213|351233|351234", + "text": "Phosphoenolpyruvate carboxykinase (GTP) deficiency" + }, + { + "baseId": "335933|335979|336000|345642|345650|345651|345654|345735|345740|345745|345747|350179|350191|350195|350203|350220|351241|351252|351255|351273|351279", + "text": "Spinal Muscular Atrophy, Dominant" + }, + { + "baseId": "336794|336807|336816|343033|343048|343069", + "text": "Malignant Melanoma Susceptibility" + }, + { + "baseId": "337275|337291|337313|337332|337335|337347|337353|337358|337359|337364|337365|337375|337378|337380|337385|337391|337399|337408|337411|337414|337420|337439|337442|337449|337462|346957|346979|346991|347001|347006|347008|347018|347027|347029|347035|347037|347047|347049|347058|347061|351009|351020|351022|351025|351034|351038|351041|351044|351047|351050|351051|351070|351074|351075|351078|351079|351084|351085|351088|351093|351096|351104|351105|351106|352010|352014|352040|352042|352043|352045|352046|352050|352054|352080|352081|352082|352084|352085|352086|352100|352101|352103|352109|352112|352116|352119|352120|352122|352126|352128|352131", + "text": "Familial Candidiasis, Recessive" + }, + { + "baseId": "337612|337623|347191|351203", + "text": "Rhabdoid tumor" + }, + { + "baseId": "337801|337826|339798", + "text": "Cutis Laxa, Dominant/Recessive" + }, + { + "baseId": "338143|338150|338155|338207|347776|347804|347825|347831|347864|351614|351621|351627|351632|351651|352569|352575|352578|352579|352582|352588|352589", + "text": "Nephronophthisis-Like Nephropathy" + }, + { + "baseId": "338350|338355|338358|338365|338370|338371|338373|338376|338385|338395|338396|338412|338414|348012|348013|348016|348018|348021|348022|348023|348024|348026|348027|348031|348034|348035|348039|351746|351748|351749|351752|351753|351756|351757|351760|352625|352626|352627|352628|352629|352630|352632|620692|620693|620694|891389|891390|891391|891392|891393|891394|891395|891396|891397|891398|891399|891400|891401|891402|891403|891404|891405|891406|891407|891408|891409|891410|891411|891412|891413|891414|891415|891416|891417|891418|891419|891420|891845|891846|891847|891848|891849", + "text": "Fatty liver disease, nonalcoholic 1" + }, + { + "baseId": "338402|338413|348038|352631", + "text": "Susceptibility to Nonalcoholic Fatty Liver Disease" + }, + { + "baseId": "338589|338594|344649|346069|346070", + "text": "Sclerosing Bone Dysplasias" + }, + { + "baseId": "338845", + "text": "Infantile Nystagmus" + }, + { + "baseId": "339355", + "text": "anastrozole response - Efficacy" + }, + { + "baseId": "339355", + "text": "docetaxel response - Efficacy" + }, + { + "baseId": "339355", + "text": "doxorubicin response - Efficacy" + }, + { + "baseId": "339355", + "text": "epirubicin response - Efficacy" + }, + { + "baseId": "339355", + "text": "exemestane response - Efficacy" + }, + { + "baseId": "339355|362508", + "text": "fluorouracil response - Efficacy" + }, + { + "baseId": "339355", + "text": "paclitaxel response - Efficacy" + }, + { + "baseId": "339355", + "text": "radiotherapy response - Efficacy" + }, + { + "baseId": "339355", + "text": "tamoxifen response - Efficacy" + }, + { + "baseId": "339387|339397|348906|348909|348910|348911|348930|348946|348951|348952|348957|352293|352295|352298|352316|352333|352901|352904|352908|352910|352914|353867", + "text": "Dent's disease" + }, + { + "baseId": "341304", + "text": "Congenital Adrenal Insufficiency" + }, + { + "baseId": "342540|434354|434355|434356|434357|434358", + "text": "Virus-induced diabetes" + }, + { + "baseId": "343296|343312|977282", + "text": "MYH3-Related Disorders" + }, + { + "baseId": "345130|345148|349903", + "text": "Hypermethioninemia" + }, + { + "baseId": "345502", + "text": "SALL4-Related Spectrum Disorders" + }, + { + "baseId": "345546|350137|351180|351185|353585|353586", + "text": "Infantile hypercalcemia" + }, + { + "baseId": "346659|620617", + "text": "RBBP8-Related Disorders" + }, + { + "baseId": "348554|352096|352097|352779|353863", + "text": "Hemophilia B, Factor IX Deficiency" + }, + { + "baseId": "348736|352229", + "text": "Congenital stationary night blindness, X-linked" + }, + { + "baseId": "349148", + "text": "Disease Association NOS" + }, + { + "baseId": "350521", + "text": "APP POLYMORPHISM" + }, + { + "baseId": "351934|351943", + "text": "Charcot-Marie-Tooth, X-linked" + }, + { + "baseId": "351934|351943|352966", + "text": "Nonsyndromic Hearing Loss, X-Linked" + }, + { + "baseId": "352164", + "text": "Hemophilia A, FVIII Deficiency" + }, + { + "baseId": "352627", + "text": "asparaginase response - Toxicity/ADR" + }, + { + "baseId": "352627", + "text": "daunorubicin response - Toxicity/ADR" + }, + { + "baseId": "352627", + "text": "prednisolone response - Toxicity/ADR" + }, + { + "baseId": "352627|538600", + "text": "vincristine response - Toxicity/ADR" + }, + { + "baseId": "353518", + "text": "Cortical pulverulent cataract" + }, + { + "baseId": "353745", + "text": "C2-related disorders" + }, + { + "baseId": "353824", + "text": "Birk-Barel Intellectual Disability Dysmorphism Syndrome" + }, + { + "baseId": "353955|353956|353957", + "text": "Autosomal recessive severe congenital neutropenia" + }, + { + "baseId": "353955|353956|353957|792807", + "text": "Specific granule deficiency 2" + }, + { + "baseId": "353998", + "text": "Epilepsy, benign neonatal, 1, and/or myokymia" + }, + { + "baseId": "354197|354272", + "text": "Fontaine progeroid syndrome" + }, + { + "baseId": "354199|354200|354201|354202|354203|354204|354205|354206|354207", + "text": "Thyroid hemiagenesis" + }, + { + "baseId": "354281", + "text": "Pulmonary atresia with intact ventricular septum" + }, + { + "baseId": "354286|354287|354288", + "text": "Congenital cardiomyopathy" + }, + { + "baseId": "354289|354291", + "text": "Mitochondrial cytopathy" + }, + { + "baseId": "354290", + "text": "Mild liver congestion" + }, + { + "baseId": "354290|514125", + "text": "Episodic vomiting" + }, + { + "baseId": "354292", + "text": "Bilateral lesions of basal ganglia" + }, + { + "baseId": "354294", + "text": "Parkinsonism-plus" + }, + { + "baseId": "354294", + "text": "Atrophy of the brain and cerebellum" + }, + { + "baseId": "354296|354297", + "text": "Hyperlactaemia" + }, + { + "baseId": "354296|354297|446889", + "text": "Muscular hypotonia of the trunk" + }, + { + "baseId": "354297", + "text": "CHARCOT-MARIE-TOOTH DISEASE, AXONAL, MITOCHONDRIAL FORM, 1" + }, + { + "baseId": "354298", + "text": "Hepatitis" + }, + { + "baseId": "354298", + "text": "Hepatic steatosis" + }, + { + "baseId": "354298", + "text": "Fibrosis" + }, + { + "baseId": "359035|461414|461426|461588|461590|461930|462253|462256|526456|526463|526747|526989|526993|564867|567480|567485|640391|650389|784160|820412|838917|838918|838919|838920|838921|838922|851459|920301|926369|935755|935756|956638|956639|960011", + "text": "Epilepsy, familial temporal lobe, 8" + }, + { + "baseId": "359044|513451|905063", + "text": "Fanconi anemia, complementation group R" + }, + { + "baseId": "359045|359046", + "text": "Osteogenesis imperfecta, type xvii" + }, + { + "baseId": "359052|513389", + "text": "Syndromic X-linked intellectual disability Shashi type" + }, + { + "baseId": "359054|677062", + "text": "Mitochondrial complex 1 deficiency, nuclear type 30" + }, + { + "baseId": "359059|359060|792487|971225", + "text": "Immunodeficiency 50" + }, + { + "baseId": "359064|359065", + "text": "Myasthenic syndrome, congenital, 21, presynaptic" + }, + { + "baseId": "359066|359067|359068|792703", + "text": "Structural brain anomalies with impaired intellectual development and craniosynostosis" + }, + { + "baseId": "359069|969279", + "text": "Craniosynostosis 6" + }, + { + "baseId": "359070|359071|359072", + "text": "Myopia 25, autosomal dominant" + }, + { + "baseId": "359074|359075", + "text": "Cataract 34, multiple types" + }, + { + "baseId": "359101", + "text": "Fanconi anemia, complementation group V" + }, + { + "baseId": "359102|359103|359104", + "text": "Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal recessive 2" + }, + { + "baseId": "359105|359106|513240", + "text": "Encephalopathy, progressive, with amyotrophy and optic atrophy" + }, + { + "baseId": "359107|359108", + "text": "Sedoheptulokinase deficiency" + }, + { + "baseId": "359114|359115|359116|359117|961759", + "text": "3-methylglutaconic aciduria, type VIII" + }, + { + "baseId": "359123", + "text": "Mental retardation, autosomal recessive 50" + }, + { + "baseId": "359125|359126|359127|359128|359129|359130|359132|611602|861671", + "text": "Sudden cardiac failure, infantile" + }, + { + "baseId": "359127|359131", + "text": "Sudden cardiac failure, alcohol-induced" + }, + { + "baseId": "359133|359134|359135|359136|359137", + "text": "Preimplantation embryonic lethality 2" + }, + { + "baseId": "359138|359139|359140|363787|626058|858659", + "text": "Al-Raqad syndrome" + }, + { + "baseId": "359142|359143|359144|359145|359146|359147|361796|361797|361798|361799|406472|421504|453638|453654|453659|453660|453662|453904|453906|454077|454078|454451|454453|454461|454465|454466|481467|520315|520552|520558|520560|520563|520564|520597|520610|520616|520619|520623|538983|550114|559823|559845|559847|559849|559851|559968|562305|562306|562308|564122|564123|564131|564133|564138|564142|632539|632540|632541|632542|632543|632544|632545|632546|632547|632548|632549|632550|632551|632552|651270|651284|651285|651298|651302|691642|695249|698720|734796|749126|764674|790488|829564|829565|829566|829567|829568|829569|829570|829571|829572|829573|829574|829575|829576|829577|829578|829579|904450|923626|932486|932487|932488|932489|932490|939758|939974|944157|944158|944159|953875|953876|953877|953878|960544", + "text": "Neuropathy, hereditary motor and sensory, type 6B" + }, + { + "baseId": "359148|359149|359150|452804|452816|453164|453165|453168|453178|453206|453208|453216|453217|453578|453580|453581|519617|519619|519629|519630|519633|519639|519644|519670|519672|519906|519908|519910|519911|519913|519915|519916|519917|519918|519920|519923|519927|559539|559541|559688|559690|559692|559694|561835|563326|612666|631816|631817|631818|631819|631820|631821|631822|631823|631824|631825|631826|631827|631828|631829|631830|631831|631832|631833|631834|631835|631836|631837|631838|631839|651094|651136|698312|698313|709076|709077|709079|709080|709081|709082|709083|720672|720673|720674|720675|720676|734335|734336|748576|748578|748580|764203|764206|764208|764211|790425|819428|828609|828610|828611|828612|828613|828614|828615|828616|828617|828618|828619|828620|828621|828622|828623|828624|828625|851104|851477|923370|923371|923372|923373|932098|932099|932100|932101|932102|932103|932104|932105|940767|940768|940769|943721|943722|943723|943724|943725|943726|943727|943728|943729|943730|953604|953605|953606|953607|953608|953609|959709|960525", + "text": "Candidiasis, familial, 9" + }, + { + "baseId": "359151|359152|359153|679842|679843|679844", + "text": "Combined oxidative phosphorylation deficiency 26" + }, + { + "baseId": "359165|359166|359167|404745|513191", + "text": "Primary autosomal recessive microcephaly 15" + }, + { + "baseId": "359168", + "text": "Muscular dystrophy, limb-girdle, type 2z" + }, + { + "baseId": "359174|359175|359176|359177|359178|359179|359180|552398|919240", + "text": "Cone-rod dystrophy and hearing loss 1" + }, + { + "baseId": "359181|359182|359183|359184|359185", + "text": "Lissencephaly 8" + }, + { + "baseId": "359186|359187|359188|359189|359190|622409", + "text": "Myopathy, myofibrillar, 8" + }, + { + "baseId": "359191|359192|802256", + "text": "Ventricular tachycardia, catecholaminergic polymorphic, 3" + }, + { + "baseId": "359193|359194", + "text": "Seckel syndrome 10" + }, + { + "baseId": "359214|361127", + "text": "dysmorphy" + }, + { + "baseId": "359518|620158", + "text": "PROM1-Related Disorders" + }, + { + "baseId": "359552|360867", + "text": "Erythroderma" + }, + { + "baseId": "359708|551483", + "text": "Mungan syndrome" + }, + { + "baseId": "359762", + "text": "Rectal prolapse" + }, + { + "baseId": "359762", + "text": "Stress urinary incontinence" + }, + { + "baseId": "359762|485953", + "text": "Secundum atrial septal defect" + }, + { + "baseId": "359788", + "text": "BRAT1-associated neurodegenerative disorder" + }, + { + "baseId": "359832|407888|411619", + "text": "Retinitis pigmentosa 79" + }, + { + "baseId": "359832|407887|407888|590982|903568", + "text": "Neurodevelopmental disorder with visual defects and brain anomalies" + }, + { + "baseId": "359990|590707|590708|610626|610627|623108|623109|623110|791144|917770|917778|974494", + "text": "Cardiac-urogenital syndrome" + }, + { + "baseId": "360150|919607", + "text": "Hypopigmentation, organomegaly, and delayed myelination and development" + }, + { + "baseId": "360260|424588|424590|424592|424594|424595|677059|678074|788914|816529|903623|919764|919765|920380|961338|964922", + "text": "Neurodevelopmental disorder with dysmorphic facies and distal limb anomalies" + }, + { + "baseId": "360454|420010|420017", + "text": "Retinal dystrophy with or without macular staphyloma" + }, + { + "baseId": "360576|434678|495875", + "text": "PIGT-related disorder" + }, + { + "baseId": "360579", + "text": "CSNK2A1- Related Disorders" + }, + { + "baseId": "360798|360810|360916|361025", + "text": "Pain" + }, + { + "baseId": "360799", + "text": "Vitiligo" + }, + { + "baseId": "360799", + "text": "EMG: axonal abnormality" + }, + { + "baseId": "360805", + "text": "Abdominal colic" + }, + { + "baseId": "360806|800787", + "text": "EMG: neuropathic changes" + }, + { + "baseId": "360806", + "text": "Limb muscle weakness" + }, + { + "baseId": "360807|361005|445123|590074|590075|679509|679510|679511|679512|679513", + "text": "Respiratory distress" + }, + { + "baseId": "360809|360926", + "text": "Fever" + }, + { + "baseId": "360809|590545|619855|966700", + "text": "Pleural effusion" + }, + { + "baseId": "360809|619855", + "text": "Pericardial effusion" + }, + { + "baseId": "360812|360997|568036|581714|801191", + "text": "Myoclonus" + }, + { + "baseId": "360814|439633|439634|439635|514075", + "text": "Abnormality of vision" + }, + { + "baseId": "360814", + "text": "Congenital blindness" + }, + { + "baseId": "360815|360816|445093|610529|610563|610564|610565", + "text": "Retinopathy" + }, + { + "baseId": "360823|360824", + "text": "Pain insensitivity" + }, + { + "baseId": "360825", + "text": "Abnormal liver function tests during pregnancy" + }, + { + "baseId": "360825", + "text": "Intrahepatic Cholestasis" + }, + { + "baseId": "360825", + "text": "Pruritus" + }, + { + "baseId": "360826", + "text": "Prolactin-producing pituitary gland adenoma" + }, + { + "baseId": "360835", + "text": "Stiff skin" + }, + { + "baseId": "360835|513930", + "text": "Arthralgia" + }, + { + "baseId": "360837|360838|481389", + "text": "Breathing dysregulation" + }, + { + "baseId": "360839", + "text": "Clonus" + }, + { + "baseId": "360839", + "text": "Lower limb hyperreflexia" + }, + { + "baseId": "360843|362226|539978|801192", + "text": "Generalized dystonia" + }, + { + "baseId": "360845", + "text": "Hypercalcemia" + }, + { + "baseId": "360845", + "text": "Hypocalciuria" + }, + { + "baseId": "360850|361041|514221", + "text": "Facial asymmetry" + }, + { + "baseId": "360850|361700|362583|513992|536162|619940", + "text": "Hemimegalencephaly" + }, + { + "baseId": "360852|360853", + "text": "Toe syndactyly" + }, + { + "baseId": "360852|360853", + "text": "Finger syndactyly" + }, + { + "baseId": "360854", + "text": "Abnormality of the thyroid gland" + }, + { + "baseId": "360857", + "text": "Anterior creases of earlobe" + }, + { + "baseId": "360857", + "text": "Glabellar hemangioma" + }, + { + "baseId": "360863", + "text": "Elevated systolic blood pressure" + }, + { + "baseId": "360863", + "text": "Elevated diastolic blood pressure" + }, + { + "baseId": "360871", + "text": "Cutaneous finger syndactyly" + }, + { + "baseId": "360871", + "text": "Bilateral microphthalmos" + }, + { + "baseId": "360871", + "text": "Anteverted nares" + }, + { + "baseId": "360874", + "text": "Nail dysplasia" + }, + { + "baseId": "360874|360928", + "text": "Hypertrichosis" + }, + { + "baseId": "360877", + "text": "Preauricular skin tag" + }, + { + "baseId": "360879", + "text": "Opacification of the corneal stroma" + }, + { + "baseId": "360879", + "text": "Bifid nasal tip" + }, + { + "baseId": "360879", + "text": "Upslanted palpebral fissure" + }, + { + "baseId": "360882", + "text": "EMG: myotonic runs" + }, + { + "baseId": "360884|513212", + "text": "Female infertility" + }, + { + "baseId": "360884", + "text": "Abnormality of the ovary" + }, + { + "baseId": "360893|452274|513974|513975", + "text": "Cavernous hemangioma" + }, + { + "baseId": "360896", + "text": "Multiple prenatal fractures" + }, + { + "baseId": "360897", + "text": "Pear-shaped nose" + }, + { + "baseId": "360897", + "text": "Proportionate short stature" + }, + { + "baseId": "360897|514155", + "text": "Alopecia areata" + }, + { + "baseId": "360904|360905|360937|361107", + "text": "Ocular albinism" + }, + { + "baseId": "360906", + "text": "Poor speech" + }, + { + "baseId": "360906|360970|360971|513914|921240", + "text": "Gait disturbance" + }, + { + "baseId": "360908", + "text": "Adenoma sebaceum" + }, + { + "baseId": "360913|360914", + "text": "Trident hand" + }, + { + "baseId": "360916", + "text": "Abnormality of the choroid" + }, + { + "baseId": "360916", + "text": "Visual field defect" + }, + { + "baseId": "360921", + "text": "Aplasia/Hypoplasia of the phalanges of the hand" + }, + { + "baseId": "360921|513889", + "text": "Palpitations" + }, + { + "baseId": "360921", + "text": "Hand oligodactyly" + }, + { + "baseId": "360921", + "text": "Aplasia/Hypoplasia involving the metacarpal bones" + }, + { + "baseId": "360922|514126", + "text": "Arterial tortuosity" + }, + { + "baseId": "360922", + "text": "Aneurysm of descending aorta" + }, + { + "baseId": "360925", + "text": "Conjunctival telangiectasia" + }, + { + "baseId": "360925|514103|971546", + "text": "Oculomotor apraxia" + }, + { + "baseId": "360926|360927", + "text": "Abdominal pain" + }, + { + "baseId": "360926", + "text": "Vomiting" + }, + { + "baseId": "360926", + "text": "Mood changes" + }, + { + "baseId": "360927", + "text": "Elevated urinary delta-aminolevulinic acid" + }, + { + "baseId": "360927|800788|971289", + "text": "Anxiety" + }, + { + "baseId": "360933|360934|360953|361106", + "text": "Hammertoe" + }, + { + "baseId": "360933|360934|463431|514133|610581|610592", + "text": "Progressive muscle weakness" + }, + { + "baseId": "360939", + "text": "Long fingers" + }, + { + "baseId": "360939", + "text": "Astigmatism" + }, + { + "baseId": "360941", + "text": "Aplasia/Hypoplasia of the nails" + }, + { + "baseId": "360944", + "text": "Disproportionate short-limb short stature" + }, + { + "baseId": "360945|514005|966716|966717", + "text": "Short ribs" + }, + { + "baseId": "360945", + "text": "Absent vertebral body mineralization" + }, + { + "baseId": "360952", + "text": "Kayser-Fleischer ring" + }, + { + "baseId": "360952|512868|513906|513959|513983|514053|514111", + "text": "Hand tremor" + }, + { + "baseId": "360970|360971", + "text": "Generalized hyperreflexia" + }, + { + "baseId": "360973|679854", + "text": "Ascending aortic dissection" + }, + { + "baseId": "360977", + "text": "Pectus carinatum" + }, + { + "baseId": "360979|360984|485953", + "text": "Mitral regurgitation" + }, + { + "baseId": "360984", + "text": "Abnormal morphology of the left ventricle" + }, + { + "baseId": "360986", + "text": "Dental enamel pits" + }, + { + "baseId": "360988", + "text": "Renovascular hypertension" + }, + { + "baseId": "360988|360995|514057", + "text": "Hepatic cysts" + }, + { + "baseId": "360991", + "text": "Moderate sensorineural hearing impairment" + }, + { + "baseId": "360991", + "text": "3-4 toe syndactyly" + }, + { + "baseId": "360992", + "text": "Abnormality of the kidney" + }, + { + "baseId": "360995", + "text": "Dilatation of the cerebral artery" + }, + { + "baseId": "360999|361071", + "text": "Thumb deformity (disease)" + }, + { + "baseId": "361003", + "text": "Fetal megacystis" + }, + { + "baseId": "361003", + "text": "Urethral atresia" + }, + { + "baseId": "361005", + "text": "Tongue fasciculations" + }, + { + "baseId": "361010|514081", + "text": "Inguinal freckling" + }, + { + "baseId": "361013", + "text": "Plexiform neurofibroma" + }, + { + "baseId": "361021", + "text": "Peripheral pulmonary artery stenosis" + }, + { + "baseId": "361022|590093", + "text": "Osteopenia" + }, + { + "baseId": "361022|485950", + "text": "Blue sclerae" + }, + { + "baseId": "361022|966164|966165", + "text": "Increased susceptibility to fractures" + }, + { + "baseId": "361024", + "text": "Handgrip myotonia" + }, + { + "baseId": "361025|513969", + "text": "EMG: myotonic discharges" + }, + { + "baseId": "361034", + "text": "Diffuse palmoplantar hyperkeratosis" + }, + { + "baseId": "361035|513911|513913|513956|964259|976826", + "text": "Noncompaction cardiomyopathy" + }, + { + "baseId": "361036", + "text": "Cerebral hypoplasia" + }, + { + "baseId": "361041", + "text": "Single transverse palmar crease" + }, + { + "baseId": "361042", + "text": "Intestinal polyposis" + }, + { + "baseId": "361042", + "text": "Periorbital hyperpigmentation" + }, + { + "baseId": "361043|679897", + "text": "Intention tremor" + }, + { + "baseId": "361047|513943", + "text": "Mildly elevated creatine phosphokinase" + }, + { + "baseId": "361051", + "text": "Proximal amyotrophy" + }, + { + "baseId": "361068", + "text": "Progressive neurodegenerative disease" + }, + { + "baseId": "361070|513926", + "text": "Fatigue" + }, + { + "baseId": "361070", + "text": "Hyperextensible hand joints" + }, + { + "baseId": "361071", + "text": "Facial grimacing" + }, + { + "baseId": "361072|610493|610494|919955|920428|920429|962058", + "text": "Menke-Hennekam syndrome 2" + }, + { + "baseId": "361073|361074|361075|361076", + "text": "Central hypoventilation" + }, + { + "baseId": "361073|361074|361075|361076|535380", + "text": "Progressive microcephaly" + }, + { + "baseId": "361079|589814|682784|682786|682787|920435", + "text": "Spondyloepimetaphyseal dysplasia, X-linked, with hypomyelinating leukodystrophy" + }, + { + "baseId": "361080|920586", + "text": "Pes planus" + }, + { + "baseId": "361080|513931|514154", + "text": "Foot dorsiflexor weakness" + }, + { + "baseId": "361085", + "text": "Decreased glucosephosphate isomerase activity" + }, + { + "baseId": "361090", + "text": "Bowing of the legs" + }, + { + "baseId": "361090", + "text": "Lower limb pain" + }, + { + "baseId": "361090|496345", + "text": "Hypophosphatemic rickets" + }, + { + "baseId": "361092", + "text": "Proptosis" + }, + { + "baseId": "361097", + "text": "Short lingual frenulum" + }, + { + "baseId": "361097", + "text": "Persistent hyperplastic primary vitreous" + }, + { + "baseId": "361106|513931", + "text": "Peroneal muscle atrophy" + }, + { + "baseId": "361107", + "text": "Poor eye contact" + }, + { + "baseId": "361109|361110", + "text": "Focal white matter lesions" + }, + { + "baseId": "361115|361116", + "text": "Leber plus disease" + }, + { + "baseId": "361122", + "text": "KLF7-related disorder" + }, + { + "baseId": "361129", + "text": "Pierre Robin-like syndrome" + }, + { + "baseId": "361137", + "text": "Retinal dysplasia" + }, + { + "baseId": "361139|361147", + "text": "Language retardation" + }, + { + "baseId": "361144|540566|540567|540568|540569|624068|626241|779813|791477|798688|920541|971024", + "text": "Intellectual developmental disorder with or without epilepsy or cerebellar ataxia" + }, + { + "baseId": "361145", + "text": "Moderate intellectual deficiency" + }, + { + "baseId": "361237|497803|512523|514782|535277|535278|538269|538273|590340|623357|679936|789399|793863|861600|903681|903689|974884|983615|983630|983631|983632|983633|983634|983635|983636|983637|983638|983639|983640|983641|983642", + "text": "Waardenburg syndrome type 2E" + }, + { + "baseId": "361323", + "text": "Subependymal giant-cell astrocytoma" + }, + { + "baseId": "361335|434702|445216|791396", + "text": "Phosphoenolpyruvate carboxykinase deficiency, mitochondrial" + }, + { + "baseId": "361445|431519|431520|431521|431522|431523|434077|434078|434079|434080", + "text": "STAG1-related disorder" + }, + { + "baseId": "361695|361696|364179", + "text": "Abnormality of skeletal morphology" + }, + { + "baseId": "361695|361696|906204|917742|917743|917744|919190|919191|925413|971279|971280|971281|975862", + "text": "Congenital heart defects and skeletal malformations syndrome" + }, + { + "baseId": "361709", + "text": "Pemigatinib resistance" + }, + { + "baseId": "361712", + "text": "FGFR2-related syndromic and non-syndromic craniosynostoses" + }, + { + "baseId": "361740", + "text": "Uncombable hair syndrome 3" + }, + { + "baseId": "361741|361742|590224|679754", + "text": "Hydrops fetalis, nonimmune, and/or atrial septal defect, susceptibility to" + }, + { + "baseId": "361743|361744|792605|919222|919223", + "text": "Glaucoma 3, primary congenital, E" + }, + { + "baseId": "361745", + "text": "Uncombable hair syndrome 2" + }, + { + "baseId": "361747|361748|361749|361750|538354|654123|798521|798522", + "text": "Global developmental delay, absent or hypoplastic corpus callosum, and dysmorphic facies" + }, + { + "baseId": "361751|361752|361753|361754|361755|361756|789130|791490", + "text": "Epileptic encephalopathy, early infantile, 48" + }, + { + "baseId": "361757|361758|361759|361760|361761|361762|790797|790798|805088", + "text": "Epilepsy, early-onset, vitamin b6-dependent" + }, + { + "baseId": "361767|361768|361769|361770|361771|362584|362590", + "text": "Amelogenesis imperfecta, type IJ" + }, + { + "baseId": "361772|361773|361774", + "text": "Uncombable hair syndrome" + }, + { + "baseId": "361775|361776|361777|361778|361779|361780|361781|361782|446086|481407|513476|539089|539978|539979|539980|539981|539982|539983|553400|581821|581822|679810|798746|798747|798748|798749|798750|806040|858745|919848|920405|963184|964891|971126|976672", + "text": "Dystonia 28, childhood-onset" + }, + { + "baseId": "361783|361784|361786|361787|361788|442819|513407|798471", + "text": "Dystonia, childhood-onset, with optic atrophy and basal ganglia abnormalities" + }, + { + "baseId": "361783|361784|361786|361787|361788|442819", + "text": "Childhood Onset Dystonias" + }, + { + "baseId": "361789|361790", + "text": "Tooth agenesis, selective, 9" + }, + { + "baseId": "361813|361814|361815|424350|425212|434581|578407|920112|920113|920156|920157", + "text": "Spastic paraplegia, intellectual disability, nystagmus, and obesity" + }, + { + "baseId": "361820|361821|361822|361823|361824|361825|788888|906263", + "text": "Nephronophthisis 20" + }, + { + "baseId": "361830|361831|361832|361833|362362|362363", + "text": "Epileptic encephalopathy, early infantile, 49" + }, + { + "baseId": "361859", + "text": "Suxamethonium sensitivity" + }, + { + "baseId": "361877", + "text": "Hereditary Mixed Polyposis" + }, + { + "baseId": "361892", + "text": "Optic atrophy 11" + }, + { + "baseId": "361893", + "text": "Mucopolysaccharidosis-plus syndrome" + }, + { + "baseId": "361894|361895|361896|447915|448245|557286|589796|628031|628032|696764|707425|707426|707427|707428|707430|707431|718981|718982|732485|732486|824137|824138|952442", + "text": "Glycine encephalopathy with normal serum glycine" + }, + { + "baseId": "361897|361899|361900|362088", + "text": "Retinitis pigmentosa 77" + }, + { + "baseId": "361924|362581|553378", + "text": "Bile acid synthesis defect, congenital, 6" + }, + { + "baseId": "362080|362081|439477|439583|550788|583211", + "text": "Midface hypoplasia, hearing impairment, elliptocytosis, and nephrocalcinosis" + }, + { + "baseId": "362082", + "text": "Ichthyosis, congenital, autosomal recessive 12" + }, + { + "baseId": "362085|362086|362087", + "text": "Anterior segment dysgenesis 8" + }, + { + "baseId": "362134", + "text": "Abnormality of the basal ganglia" + }, + { + "baseId": "362134", + "text": "Abnormal muscle tone" + }, + { + "baseId": "362138|362139|389102|414715|446863|446866|513885|626136|790398|903525|918834", + "text": "Neurodevelopmental disorder with severe motor impairment and absent language" + }, + { + "baseId": "362144|362151", + "text": "Obsessive-compulsive behavior" + }, + { + "baseId": "362152", + "text": "Neurogenic bladder" + }, + { + "baseId": "362152", + "text": "Broad-based gait" + }, + { + "baseId": "362154", + "text": "Abnormal biliary tract morphology" + }, + { + "baseId": "362154", + "text": "Asplenia" + }, + { + "baseId": "362154", + "text": "Reduced number of intrahepatic bile ducts" + }, + { + "baseId": "362154", + "text": "Duodenal atresia (disease)" + }, + { + "baseId": "362158|362159|422029|553300|590082|858765|858766", + "text": "Relative macrocephaly" + }, + { + "baseId": "362165", + "text": "Cerebellar vermis atrophy" + }, + { + "baseId": "362179", + "text": "Mental retardation, autosomal recessive 59" + }, + { + "baseId": "362182|683224", + "text": "Multiple mitochondrial dysfunctions syndrome 5" + }, + { + "baseId": "362204", + "text": "Hypertelorism and tetralogy of fallot" + }, + { + "baseId": "362225", + "text": "Cronkhite-Canada syndrome" + }, + { + "baseId": "362226", + "text": "Functional motor deficit" + }, + { + "baseId": "362285", + "text": "Ectodermal dysplasia 12, hypohidrotic/hair/tooth/nail type" + }, + { + "baseId": "362372|362373|553404|706045|858295|905813", + "text": "Ciliary dyskinesia, primary, 36, X-linked" + }, + { + "baseId": "362374|362375|362376|362377|362377|362378|425883|460061|497142|563876|837143", + "text": "Nemaline myopathy 11, autosomal recessive" + }, + { + "baseId": "362402|362403", + "text": "Cerebroretinal microangiopathy with calcifications and cysts 2" + }, + { + "baseId": "362450", + "text": "Abnormality of lipid metabolism" + }, + { + "baseId": "362479|362480|362481|362482|362483|514308|514309", + "text": "Grange syndrome" + }, + { + "baseId": "362492|362493", + "text": "Aortic aneurysm, familial thoracic 11, susceptibility to" + }, + { + "baseId": "362494", + "text": "nicotine response - Efficacy, Toxicity/ADR" + }, + { + "baseId": "362499", + "text": "ethambutol, isoniazid, pyrazinamide, and rifampin response - Toxicity/ADR" + }, + { + "baseId": "362503", + "text": "rosiglitazone response - Metabolism/PK" + }, + { + "baseId": "362504", + "text": "cocaine response - Toxicity/ADR" + }, + { + "baseId": "362506", + "text": "nicotine response - Toxicity/ADR, Metabolism/PK" + }, + { + "baseId": "362507", + "text": "captopril response - Efficacy" + }, + { + "baseId": "362508", + "text": "capecitabine response - Efficacy" + }, + { + "baseId": "362509", + "text": "peginterferon alfa-2a response - Efficacy" + }, + { + "baseId": "362591|362592|362593|362594|550609", + "text": "Intellectual developmental disorder with dysmorphic facies, seizures, and distal limb anomalies" + }, + { + "baseId": "362595|590711|590712|590713", + "text": "Autosomal recessive non-syndromic intellectual disability" + }, + { + "baseId": "362596", + "text": "Syndromic intellectual disability, X-linked" + }, + { + "baseId": "362616|362617", + "text": "Mental retardation, autosomal recessive 60" + }, + { + "baseId": "362625|362626|791399|919526|970993", + "text": "Congenital heart defects and ectodermal dysplasia" + }, + { + "baseId": "362644|424978", + "text": "Short nose" + }, + { + "baseId": "362736", + "text": "Familial aortic aneurysms" + }, + { + "baseId": "362740", + "text": "Hereditary mixed polyposis syndrome" + }, + { + "baseId": "362757|363157|363158", + "text": "Squamous cell carcinoma" + }, + { + "baseId": "362775", + "text": "Histone Methylation Therapy response" + }, + { + "baseId": "362834|362836|362880|362881|363190|451841|622029|622030", + "text": "Uveal melanoma" + }, + { + "baseId": "362901|615336|615547|615747", + "text": "Abnormal platelet function" + }, + { + "baseId": "362909", + "text": "Leukemia, acute, ?X-linked" + }, + { + "baseId": "362943|363140|363142|983779|983780|983781|983782|983783|983784", + "text": "Vascular Malformations and Overgrowth" + }, + { + "baseId": "362955|363107", + "text": "Esophageal Squamous Cell Carcinoma" + }, + { + "baseId": "362992|362993|362995", + "text": "Leukemoid Reaction" + }, + { + "baseId": "363027|583093", + "text": "Mast cell disease, systemic" + }, + { + "baseId": "363110|363114", + "text": "Neoplasm of the parathyroid gland" + }, + { + "baseId": "363227", + "text": "Granulosa Cell Tumor" + }, + { + "baseId": "363228|363229|363230", + "text": "Leukemia-Lymphoma, Adult T-Cell" + }, + { + "baseId": "363238", + "text": "Trabecular adenocarcinoma" + }, + { + "baseId": "363345|438544|438545|438546", + "text": "Immunodeficiency, developmental delay, and hypohomocysteinemia" + }, + { + "baseId": "363377", + "text": "Intestinal duplication" + }, + { + "baseId": "363377", + "text": "Megalencephaly" + }, + { + "baseId": "363377", + "text": "Abnormality of the hairline" + }, + { + "baseId": "363377", + "text": "Diaphragmatic eventration" + }, + { + "baseId": "363379|513783", + "text": "Anti-PDL1 response" + }, + { + "baseId": "363630", + "text": "Agammaglobulinemia" + }, + { + "baseId": "363638", + "text": "Wilms tumor, aniridia, genitourinary anomalies, mental retardation, and obesity syndrome" + }, + { + "baseId": "363734|490691", + "text": "Mitochondrial complex 1 deficiency, nuclear type 15" + }, + { + "baseId": "363926|516598", + "text": "IFIH1-related immunodeficiency" + }, + { + "baseId": "364270|364271|364278|364279|389089|389090|389091", + "text": "Mental retardation, autosomal dominant" + }, + { + "baseId": "364928", + "text": "ACTA1 gene related myopathy" + }, + { + "baseId": "365258|365560|628286", + "text": "Myopathy, epilepsy, and progressive cerebral atrophy" + }, + { + "baseId": "365915", + "text": "SCN9A-related disorders" + }, + { + "baseId": "366957", + "text": "STAG1-Related Disorders" + }, + { + "baseId": "367600", + "text": "SETD2-related disorder" + }, + { + "baseId": "369376|695384", + "text": "PLEC-related epidermolysis bullosa" + }, + { + "baseId": "372454|621008|959510", + "text": "Deafness, autosomal recessive 94" + }, + { + "baseId": "373902|904882|984269", + "text": "Neurodevelopmental disorder with epilepsy, spasticity, and brain atrophy" + }, + { + "baseId": "373902|419135|419136|419137|682323|798619|816403|961417|963332|963333", + "text": "Neurodevelopmental disorder with progressive microcephaly, spasticity, and brain anomalies" + }, + { + "baseId": "375180", + "text": "TUBA1A-associated tubulinopathy" + }, + { + "baseId": "375263|613443", + "text": "COGNITIVE IMPAIRMENT WITHOUT CEREBELLAR ATAXIA" + }, + { + "baseId": "375817|801257", + "text": "Abnormality of the cerebellum" + }, + { + "baseId": "375817", + "text": "Hyperkinesis" + }, + { + "baseId": "377094|378137|404746", + "text": "Intervertebral disc disorder" + }, + { + "baseId": "377094|513966|514139|800575|962074", + "text": "Retinal detachment" + }, + { + "baseId": "377094|962074", + "text": "Lattice retinal degeneration" + }, + { + "baseId": "377366|508921|508922|512856|975671", + "text": "Persistent Mullerian duct syndrome" + }, + { + "baseId": "377641", + "text": "Rib fusion" + }, + { + "baseId": "377731", + "text": "Disrupted sleep-wake cycle with developmental delay and learning difficulty" + }, + { + "baseId": "377844|679430", + "text": "Family history of sudden cardiac death" + }, + { + "baseId": "379403|857584", + "text": "Congenital disorder of glycosylation, type IIr" + }, + { + "baseId": "379911", + "text": "GRIA3-Related Disorder" + }, + { + "baseId": "380151|380152", + "text": "Peroxisome biogenesis disorder 10b" + }, + { + "baseId": "380157|380158|380159|624072|681918|681919|681920|681921|681922|790971|858815|858816|858817|858818", + "text": "Hyperphenylalaninemia, mild, non-bh4-deficient" + }, + { + "baseId": "380164|380165|797580|919750", + "text": "Autoinflammation with arthritis and dyskeratosis" + }, + { + "baseId": "380285", + "text": "46,XY sex reversal, type 4" + }, + { + "baseId": "380291", + "text": "Ectodermal dysplasia 13, hair/tooth type" + }, + { + "baseId": "380469", + "text": "Cutaneous leiomyoma" + }, + { + "baseId": "380479|380480|404637|404638|404639", + "text": "Anauxetic dysplasia 2" + }, + { + "baseId": "383299|613885|969292", + "text": "Cat eye syndrome" + }, + { + "baseId": "384424", + "text": "Mutism" + }, + { + "baseId": "384424|983555", + "text": "Psychosis" + }, + { + "baseId": "384445|514159|514160|590046", + "text": "Profound global developmental delay" + }, + { + "baseId": "384446|384447|792008", + "text": "Early infantile epileptic encephalopathy 55" + }, + { + "baseId": "384448|384449|384450|434390|434391|790305|920183", + "text": "Pontocerebellar hypoplasia, type 11" + }, + { + "baseId": "384625", + "text": "Idiopathic scoliosis" + }, + { + "baseId": "389089|389091|679592|679593|679594|679595|679596|789743|789744|816468|964924", + "text": "Weiss-kruszka syndrome" + }, + { + "baseId": "389122|514297|514298", + "text": "Developmental and epileptic encephalopathy, 63" + }, + { + "baseId": "389127|389128|510989|510990|513202|550560|550561|553136|553137|553138|553139|553140|553141|553142|581225|581226|816460|861566|861567|964828|964829|984265|984268", + "text": "Neurodevelopmental disorder with microcephaly, seizures, and cortical atrophy" + }, + { + "baseId": "389133|622936|622937|622938|622939|622940|622941|622942|679879|679880|679881|679882|679883|679884|816465|970841", + "text": "Developmental and epileptic encephalopathy, 76" + }, + { + "baseId": "389153|679682|679685|679686|792633", + "text": "Neurodevelopmental disorder with brain anomalies and with or without vertebral or cardiac anomalies" + }, + { + "baseId": "389153|679672|679673|679674|679675|679676|679677|679678|679679|679680|679681|679682|679683|679684|679685|679686|679687|679688|679689", + "text": "Neurodevelopmental disorders" + }, + { + "baseId": "389763|563602|634913|686861|972824|972827|972828|983793|983794|983795", + "text": "Spermatogenic failure 46" + }, + { + "baseId": "390062|390599|462450|463295|463308|512979", + "text": "Glaucoma 1, open angle, p" + }, + { + "baseId": "390431|470227|470757|470764|471279|471280|533358|533359|533361|533439|533441|533874|533878|571068|572783|573400|648438|648439|648440|648441|648442|648443|648444|648445|648446|716655|716656|728381|728382|742098|821286|848029|848030|848031|848032|848033|848034|848035|848036|848037|848038|848039|848040|848041|929100|929101|929102|929103|938842|938843|950907|950908|950909|950910|958727|958728", + "text": "Periodontitis" + }, + { + "baseId": "390603|575507", + "text": "TSPEAR-related disorder of tooth and hair follicle morphogenesis" + }, + { + "baseId": "390704|390705|390706|390707|390708|853053|853054|853055|853056|857392|857393", + "text": "Congenital NAD deficiency disorder" + }, + { + "baseId": "390704|390705|390706", + "text": "Vertebral, cardiac, renal, and limb defects syndrome 2" + }, + { + "baseId": "390707|390708|792730", + "text": "Vertebral, cardiac, renal, and limb defects syndrome 1" + }, + { + "baseId": "391112", + "text": "Hemoglobin, high altitude adaptation" + }, + { + "baseId": "393998", + "text": "Impaired thermal sensitivity" + }, + { + "baseId": "395447", + "text": "DSP-Related Disorders" + }, + { + "baseId": "397398|407634", + "text": "GRIN1-Related Disorder" + }, + { + "baseId": "397946|514059|514208|620168|623603|971435", + "text": "Hemangioma" + }, + { + "baseId": "398572", + "text": "Beckwith-Wiedemann syndrome due to CDKN1C mutation" + }, + { + "baseId": "400294|643484|678093|678094|678095|678096|678097|678098|678099|678100|678101|678102|678103|678104|678105|678106|678107|678108|678109|678110|678111|678112|678113|678114", + "text": "Radioulnar synostosis" + }, + { + "baseId": "400923", + "text": "TSC2-Related Disorder" + }, + { + "baseId": "404612|404613|404614|404615|404616", + "text": "TRIT1 Deficiency" + }, + { + "baseId": "404612|404613|404614|404615|404616|425370|485882", + "text": "Combined oxidative phosphorylation deficiency 35" + }, + { + "baseId": "404617|413182|418811|418812|611800|789145|789146|789147|789148|789149|789150|789151|789152|818310|818311", + "text": "Intellectual developmental disorder and retinitis pigmentosa" + }, + { + "baseId": "404617|413182|418811|418812|611800|789145|789146|789147|789148|789149|789150|789151|789152|818310|818311", + "text": " IDDRP" + }, + { + "baseId": "404634|404635|404636|980591", + "text": "3MC syndrome 3" + }, + { + "baseId": "404647|404648|404649|404650|404652|514430|677987|677988|677989|677990|677991|677992|677993|677994|920151", + "text": "Pontocerebellar hypoplasia, type 7" + }, + { + "baseId": "404655|404656|404657|404658|404659|802229|802230", + "text": "Retinitis pigmentosa 78" + }, + { + "baseId": "404660|404661", + "text": "Autosomal recessive cutis laxa type 2c" + }, + { + "baseId": "404664|404665", + "text": "MacInnes syndrome" + }, + { + "baseId": "404666", + "text": "Diamond-Blackfan anemia 17" + }, + { + "baseId": "404671|404672|447692|447855|556802|557005|558359|627430|627431|627432|696567|696568|707188|707190|707191|718770|718771|718773|718776|718777|718778|729979|729980|743726|743735|746256|761705|778806|794606|794607|930344|930345|941778", + "text": "CONGENITAL DISORDER OF GLYCOSYLATION, TYPE IIq" + }, + { + "baseId": "404673|404674|918791|920185", + "text": "Autosomal recessive cutis laxa type 2d" + }, + { + "baseId": "404675|404676|799090", + "text": "Pseudo-TORCH syndrome 2" + }, + { + "baseId": "404677", + "text": "Diamond-Blackfan anemia 16" + }, + { + "baseId": "404678|404679|404680|404681|404682|404683|404684", + "text": "Muscular dystrophy, congenital, with cataracts and intellectual disability" + }, + { + "baseId": "404685|919826|920398|920399", + "text": "Neurodevelopmental disorder with epilepsy, cataracts, feeding difficulties, and delayed brain myelination" + }, + { + "baseId": "404687", + "text": "Hereditary spastic paraplegia 23" + }, + { + "baseId": "404692|404693|404694|801576", + "text": "Short-rib thoracic dysplasia 17 with or without polydactyly" + }, + { + "baseId": "404695|404696|404697|612442", + "text": "Immunoskeletal dysplasia with neurodevelopmental abnormalities" + }, + { + "baseId": "404698|423866", + "text": "Keloid formation" + }, + { + "baseId": "404704|404705|404706", + "text": "CRANIOSYNOSTOSIS 7, SUSCEPTIBILITY TO" + }, + { + "baseId": "404771|404772|404773", + "text": "Coronary heart disease 7" + }, + { + "baseId": "404854|404855|405220|427850|438548|550180|609018|789349|918644|964802|969291", + "text": "Brain malformations and urinary tract defects" + }, + { + "baseId": "404856", + "text": "Premature ovarian failure 13" + }, + { + "baseId": "404859|404860", + "text": "Thrombocytopenia 3" + }, + { + "baseId": "404861|816459|980922", + "text": "Thrombocytopenia, anemia, and myelofibrosis" + }, + { + "baseId": "405070", + "text": "Huntington disease-like syndrome" + }, + { + "baseId": "405689|971396", + "text": "Abnormality of skin pigmentation" + }, + { + "baseId": "406053|446889", + "text": "Abnormality of the optic nerve" + }, + { + "baseId": "406284|682982|682984|683085", + "text": "Sodium channelopathy-related small fiber neuropathy" + }, + { + "baseId": "406654", + "text": "PPP2R2B-Related Disorder" + }, + { + "baseId": "406667", + "text": "Treacher Collins syndrome" + }, + { + "baseId": "406680", + "text": "GABRA6-Related Disorder" + }, + { + "baseId": "406735", + "text": "SQSTM1-related disorder" + }, + { + "baseId": "406757", + "text": "NDUFAF2-Related Disorders" + }, + { + "baseId": "406763|538988|583097|622353|789739", + "text": "Mental retardation, autosomal dominant 34" + }, + { + "baseId": "406782|432450|432451|432452|623287|623288|918985|970817", + "text": "Pilarowski-Bjornsson syndrome" + }, + { + "baseId": "407120|427107|427108|427110|553384|561899|614312|614313", + "text": "Immunodeficiency 11b with atopic dermatitis" + }, + { + "baseId": "407259", + "text": "HSPB1-Related Disorder" + }, + { + "baseId": "407275|407279|407280|495362", + "text": "COL1A2-Related Disorder" + }, + { + "baseId": "407647|550740|550741|550742|550743|550744|550745|919220|964326|970905|970906|977238", + "text": "Macrocephaly, acquired, with impaired intellectual development" + }, + { + "baseId": "408356|966205|966207|966208|966213", + "text": "Neurodevelopmental disorder with dysmorphic facies, impaired speech, and hypotonia" + }, + { + "baseId": "408753|432104|539047|970974", + "text": "Deafness, autosomal dominant 73" + }, + { + "baseId": "408795", + "text": "COL4A1-Related Disorder" + }, + { + "baseId": "409073", + "text": "CHD8-Related Disorders" + }, + { + "baseId": "409352|792608", + "text": "CHRNA3-related condition" + }, + { + "baseId": "409578|409583|653803|653804", + "text": "Rolandic epilepsy-paroxysmal exercise-induced dystonia-writer's cramp syndrome" + }, + { + "baseId": "409660|966898|966899|966901|966902|970508|983848", + "text": "Vissers-Bodmer syndrome" + }, + { + "baseId": "409773", + "text": "DEHYDRATED HEREDITARY STOMATOCYTOSIS WITH OR WITHOUT PSEUDOHYPERKALEMIA AND/OR PERINATAL EDEMA" + }, + { + "baseId": "410148", + "text": "Ovarian Cancers" + }, + { + "baseId": "410288|961340", + "text": "CHD3-Related Disorder" + }, + { + "baseId": "410288|512330|540496|540497|540498|540499|540500|540501|540502|540503|540504|540505|540506|540507|540508|540509|540510|540511|540512|540513|540515|920382|964881|971094|971095", + "text": "Snijders blok-campeau syndrome" + }, + { + "baseId": "410530", + "text": "Bulbar palsy" + }, + { + "baseId": "410530", + "text": "Recurrent respiratory infections" + }, + { + "baseId": "410891", + "text": "COL6A1-related Disorder" + }, + { + "baseId": "410924", + "text": "Cataract 17" + }, + { + "baseId": "410985", + "text": "MORC2-related developmental disorder" + }, + { + "baseId": "410985|792534|792585|980603", + "text": "DEVELOPMENTAL DELAY, IMPAIRED GROWTH, DYSMORPHIC FACIES, AND AXONAL NEUROPATHY" + }, + { + "baseId": "410999|411005", + "text": "DEPDC5-Related Disorder" + }, + { + "baseId": "411308", + "text": "IL1RAPL1-Related Disorder" + }, + { + "baseId": "411339", + "text": "USP9X related disorders" + }, + { + "baseId": "411435|822344|822346|822348|822349|822350|966173", + "text": "Wieacker-Wolff syndrome, female-restricted" + }, + { + "baseId": "411489", + "text": "ATRX-Related Disorder" + }, + { + "baseId": "411536|613898|613899|615852|615873", + "text": "11q partial monosomy syndrome" + }, + { + "baseId": "413180|970994", + "text": "Townes-Brocks syndrome 2" + }, + { + "baseId": "413182|609021|798919|800619|800620", + "text": "Syndromic retinitis pigmentosa" + }, + { + "baseId": "413199|413200|413201|413202|413203|413204|540467|540468|788926|963182|963183", + "text": "Arthrogryposis multiplex congenita, neurogenic, with myelin defect" + }, + { + "baseId": "413209|413210|413211|413212|413213|438051|536505|550630|611863|613832|626462|964487|970509", + "text": "Intellectual developmental disorder with gastrointestinal difficulties and high pain threshold" + }, + { + "baseId": "413236|413585|413712|437893|438312|486402|612755|612912|790627|794743|798146|801311|801312|801320|801322|801324|801326|801364", + "text": "Isolated macular dystrophy" + }, + { + "baseId": "413297|578329", + "text": "Joubert syndrome 35" + }, + { + "baseId": "413483|481074|576060|576061|965884|970510", + "text": "Neurodevelopmental disorder with structural brain anomalies and dysmorphic facies" + }, + { + "baseId": "413491|609026|610497", + "text": "Combined oxidative phosphorylation deficiency 37" + }, + { + "baseId": "414000|539139", + "text": "Dentinogenesis imperfecta" + }, + { + "baseId": "414475|414476|414477|414478", + "text": "Retinitis pigmentosa with or without skeletal anomalies" + }, + { + "baseId": "414516|414517|677316|677317|702910|963168", + "text": "Structural heart defects and renal anomalies syndrome" + }, + { + "baseId": "414648|414649|414650|980155|980910", + "text": "Cardiac valvular defect, developmental" + }, + { + "baseId": "414711|414712|414713|414714|622260|622261", + "text": "Ichthyosis, congenital, autosomal recessive 14" + }, + { + "baseId": "415113", + "text": "Chronic granulomatous disease due to deficiency of NCF-1" + }, + { + "baseId": "415242|444691|513599|564063|564950|639325|665615|925986|935257|935258|947157|947158|947159|947160|956289|956290", + "text": "de Barsy syndrome" + }, + { + "baseId": "415499", + "text": "SLC6A2-related disorder" + }, + { + "baseId": "415601", + "text": "Decreased activity of mitochondrial complex I" + }, + { + "baseId": "415601", + "text": "Gastrostomy tube feeding in infancy" + }, + { + "baseId": "416845|513080", + "text": "Pancreatic lipase deficiency" + }, + { + "baseId": "416932", + "text": "Beta-aminoisobutyric aciduria" + }, + { + "baseId": "417078", + "text": "Distal trisomy 1p36" + }, + { + "baseId": "417247|964423|980953", + "text": "Craniosynostosis 7" + }, + { + "baseId": "417544|417545", + "text": "Immunodeficiency 52" + }, + { + "baseId": "417641|417642|417643|417644|417645", + "text": "Acute myeloid leukemia with maturation" + }, + { + "baseId": "417660|417661|417662|798544", + "text": "Fibromatosis, gingival, 5" + }, + { + "baseId": "417868|417869|417870|417871|626376|791821|798723|961337", + "text": "Stankiewicz-Isidor syndrome" + }, + { + "baseId": "418319|418320|418321|418322", + "text": "Erythrokeratodermia variabilis et progressiva 4" + }, + { + "baseId": "418437|788727", + "text": "Neurodevelopmental disorder with midbrain and hindbrain malformations" + }, + { + "baseId": "418797", + "text": "Cardio-cutaneous syndrome" + }, + { + "baseId": "418798", + "text": "Hypokinetic non-dilated cardiomyopathy" + }, + { + "baseId": "419004|419005|419006|419007|419008|419009|419010|419011|419012|419013|538963", + "text": "ARMC9-related Joubert syndrome" + }, + { + "baseId": "419005|419006|419007|419008|419009|419010|419011|419012|419013|513217|624048|624090", + "text": "Joubert syndrome 30" + }, + { + "baseId": "419289", + "text": "Sinus bradycardia" + }, + { + "baseId": "419298|425264|425265|425266|425267", + "text": "Protein-losing enteropathy (disease)" + }, + { + "baseId": "420007|420008|420009|420012|420013|420014|420015|420016", + "text": "Axial spondylometaphyseal dysplasia" + }, + { + "baseId": "420147", + "text": "Leukodystrophy, hypomyelinating, 17" + }, + { + "baseId": "420284|420285", + "text": "Intellectual developmental disorder with neuropsychiatric features" + }, + { + "baseId": "420424|420425|420426|495307|514534|623090|623091|623092|623093|623094|623095|789741|789742|859501|964270|980607|980608|980609|980610|980611", + "text": "Rahman syndrome" + }, + { + "baseId": "420976|798517|971282", + "text": "Mitochondrial complex 1 deficiency, nuclear type 31" + }, + { + "baseId": "421143", + "text": "Hemolytic disease of fetus OR newborn due to isoimmunization" + }, + { + "baseId": "421201", + "text": "PINK1-Related Parkinsonism" + }, + { + "baseId": "421463|977332", + "text": "IMMUNODEFICIENCY 75" + }, + { + "baseId": "421583|421584|428609|915027", + "text": "Sialidosis" + }, + { + "baseId": "421732", + "text": "Shone complex" + }, + { + "baseId": "421904", + "text": "MED13L-Related Disorder" + }, + { + "baseId": "422029", + "text": "Wide nasal bridge" + }, + { + "baseId": "422029", + "text": "Wide mouth" + }, + { + "baseId": "422068", + "text": "IGF1R-Related Disorder" + }, + { + "baseId": "422479|434694", + "text": "DDX3X-Related Disorder" + }, + { + "baseId": "422802|424255", + "text": "Familial hematuria" + }, + { + "baseId": "423091|423234|432254|432256", + "text": "Combined oxidative phosphorylation deficiency 32" + }, + { + "baseId": "423403|423404|423405|806438|919990|965239", + "text": "MENTAL RETARDATION, X-LINKED, SYNDROMIC, 35" + }, + { + "baseId": "423700|423701|423702|423703|423704|801579|919504|964858", + "text": "Gabriele de Vries syndrome" + }, + { + "baseId": "423705|423706|495432|615970|615971|615972|615973|615974|626452", + "text": "Spastic ataxia 8, autosomal recessive, with hypomyelinating leukodystrophy" + }, + { + "baseId": "424016|424017", + "text": "Meier-Gorlin syndrome 8" + }, + { + "baseId": "424018", + "text": "Perrault syndrome 6" + }, + { + "baseId": "424176|424177|424178|424179|462340|526505|571044|575495|640489|777938|778180|784235|784236|784237|791183|839142|919398|956710|967274", + "text": "Cohen-Gibson syndrome" + }, + { + "baseId": "424180|581883|800967|800968|800969|964879|969135", + "text": "Imagawa-Matsumoto syndrome" + }, + { + "baseId": "424219", + "text": "Spinocerebellar ataxia 37" + }, + { + "baseId": "424232|424235", + "text": "Meckel syndrome 13" + }, + { + "baseId": "424250|424251|481459|511001|798659", + "text": "Ichthyosis, congenital, autosomal recessive 13" + }, + { + "baseId": "424262|794103|794105|794106|794107|794108|800763|961649|964272|970495", + "text": "Poirier-Bienvenu neurodevelopmental syndrome" + }, + { + "baseId": "424349|622944", + "text": "Intellectual developmental disorder with severe speech and ambulation defects" + }, + { + "baseId": "424349|622944", + "text": "ACTL6B-related dominant intellectual disability" + }, + { + "baseId": "424352|535688|535690|790531|798556|815981|816016|962039|962040|962041|962042|962043|962044|962045", + "text": "Developmental and epileptic encephalopathy, 65" + }, + { + "baseId": "424366|424367", + "text": "Progressive childhood encephalopathy" + }, + { + "baseId": "424366|424367|432365", + "text": "Early-onset progressive encephalopathy-hearing loss-pons hypoplasia-brain atrophy syndrome" + }, + { + "baseId": "424368|424369", + "text": "RHD DEL" + }, + { + "baseId": "424370", + "text": "RhD negative" + }, + { + "baseId": "424384|424385|424386|424387|424388|802168|858559|974515|977236", + "text": "Congenital nonprogressive myopathy with Moebius and Robin sequences" + }, + { + "baseId": "424393|424394|424395|798974|798975|798976", + "text": "Neutropenia, severe congenital, 8, autosomal dominant" + }, + { + "baseId": "424396|610523|681600|794276", + "text": "Progressive spastic paraparesis" + }, + { + "baseId": "424406|424407|424408|424409|424410|424411|424412|424413|590297", + "text": "Nephrotic syndrome type 14" + }, + { + "baseId": "424439|961889|983748", + "text": "Immunodeficiency 53" + }, + { + "baseId": "424464|424466|424467|424468|424469|550895|550896|964292", + "text": "Intellectual disability, autosomal dominant 54" + }, + { + "baseId": "424475", + "text": "Spinocerebellar ataxia, autosomal recessive 25" + }, + { + "baseId": "424476|424477|424478|424479|424480|513770|513771|513772|513773|513774|513775", + "text": "Spermatogenic failure 19" + }, + { + "baseId": "424481|513776|513777|513778|513779|513780", + "text": "Spermatogenic failure 20" + }, + { + "baseId": "424569", + "text": "Caused by mutation in the tafazzin gene" + }, + { + "baseId": "424570|424571|424572|424573|798682", + "text": "Maleylacetoacetate isomerase deficiency" + }, + { + "baseId": "424574|424575", + "text": "Mosaic variegated aneuploidy syndrome 3" + }, + { + "baseId": "424578", + "text": "Birk-Landau-Perez syndrome" + }, + { + "baseId": "424588|424589|424590|424591|424592|424593|424594|424595|424596|424597|514213|519403|553302|861283|980693", + "text": "Postnatal microcephaly" + }, + { + "baseId": "424641", + "text": "Autism Spectrum Disorder with Intellectual Disability" + }, + { + "baseId": "424655|576113", + "text": "Non-syndromic intellectual disability" + }, + { + "baseId": "424689", + "text": "Anencephalus" + }, + { + "baseId": "424698|614143|614178|614179|974444|984021|984022|984023|984024|984025", + "text": "Cerebellar ataxia, neuropathy, and vestibular areflexia syndrome" + }, + { + "baseId": "424702|487068|622775", + "text": "Spinal muscular atrophy, type IV" + }, + { + "baseId": "424703|424704", + "text": "GARS-associated growth retardation and developmental delay" + }, + { + "baseId": "424908|424909|424910|424911|626166|790657|919051|919052|919053|963616|964281|967269|972719|976653", + "text": "Intellectual disability, autosomal dominant 46" + }, + { + "baseId": "424936", + "text": "Amelogenesis imperfecta type 3B" + }, + { + "baseId": "424937|424939|424961|424962", + "text": "Microcephaly-micromelia syndrome" + }, + { + "baseId": "424937|424938|424939|424941|424942|424943|424961|481361|578579|966013", + "text": "Microcephaly, short stature, and limb abnormalities" + }, + { + "baseId": "424950", + "text": "Deafness, autosomal dominant 72" + }, + { + "baseId": "424951|959511", + "text": "Deafness, autosomal dominant 71" + }, + { + "baseId": "424952|424953|424954|424955", + "text": "Polycystic kidney disease 5" + }, + { + "baseId": "424972|857683|858272", + "text": "Deafness, autosomal recessive 110" + }, + { + "baseId": "424991|581220|581221|581222|581223|977261", + "text": "SYT1-associated neurodevelopmental disorder" + }, + { + "baseId": "424991|581220|581221|581222|581223|816476", + "text": "Infantile hypotonia-oculomotor anomalies-hyperkinetic movements-developmental delay syndrome" + }, + { + "baseId": "425202", + "text": "Thin skin" + }, + { + "baseId": "425202", + "text": "Hyperlaxity" + }, + { + "baseId": "425203|818745", + "text": "facial dysmorphism" + }, + { + "baseId": "425259|425260|425261|614315|614316", + "text": "Nephrotic syndrome type 15" + }, + { + "baseId": "425263", + "text": "CROMER BLOOD GROUP SYSTEM, Dr(a-) PHENOTYPE" + }, + { + "baseId": "425299|626151|699131|799031|970812", + "text": "Neurodevelopmental disorder with movement abnormalities, abnormal gait, and autistic features" + }, + { + "baseId": "425299", + "text": "ZSWIM6 related intellectual disability" + }, + { + "baseId": "425378", + "text": "PARS2-related disorder" + }, + { + "baseId": "425459", + "text": "Diabetes mellitus, insulin-dependent, 12" + }, + { + "baseId": "425459", + "text": "Hashimoto thyroiditis" + }, + { + "baseId": "425461|425462", + "text": "UNC80-Related Disorder" + }, + { + "baseId": "425496", + "text": "NRXN-Related Disorder" + }, + { + "baseId": "425580|797926|970256|970269|970270|970323|970324|970325|970326|970327|970328|970347|970348", + "text": "Moyamoya angiopathy with developmental delay" + }, + { + "baseId": "425622", + "text": "PURA-related severe neonatal hypotonia-seizures-encephalopathy syndrome due to a point mutation" + }, + { + "baseId": "425633", + "text": "GABRG2-Related Disorder" + }, + { + "baseId": "425650", + "text": "MEF2C-Related Disorder" + }, + { + "baseId": "425770|626366", + "text": "Predisposition to dissection" + }, + { + "baseId": "425924|550207|550208|919363|970655", + "text": "Osteogenesis imperfecta, type xvi" + }, + { + "baseId": "426479", + "text": "HSD17B10-Related Disorder" + }, + { + "baseId": "426508|426509|426510|426511|426512|426513|439624|439625|677300|789935|789936|815976|918612|920137|970677|971237", + "text": "Skraban-Deardorff syndrome" + }, + { + "baseId": "426722", + "text": "Feingold syndrome 2" + }, + { + "baseId": "426758|426759", + "text": "Schizophrenia 19" + }, + { + "baseId": "427102|622035|905842|917751", + "text": "Autosomal dominant non-syndromic sensorineural deafness type DFNA" + }, + { + "baseId": "427102", + "text": "Deafness, autosomal dominant 74" + }, + { + "baseId": "427103|427104|504286", + "text": "Deafness, autosomal recessive 106" + }, + { + "baseId": "427105|427106|539092", + "text": "Spinocerebellar ataxia, autosomal recessive 26" + }, + { + "baseId": "427834", + "text": "Epilepsy due to perinatal stroke" + }, + { + "baseId": "429028|429029", + "text": "Pseudohermaphroditism male with gynecomastia" + }, + { + "baseId": "429533", + "text": "DYNC1H1-related disorders" + }, + { + "baseId": "429594|590038|677229|800788|801072", + "text": "Hypothyroidism" + }, + { + "baseId": "429767|643927|818781|818782|818783|818784|818785|818786|822289|822290|822291|822292", + "text": "Familial Interstitial Pneumonia" + }, + { + "baseId": "429767|643927|818781|818782|818783|818784|818785|818786|822289|822290|822291|822292", + "text": "Pulmonary fibrosis" + }, + { + "baseId": "430955", + "text": "46,XX sex reversal, type 1" + }, + { + "baseId": "431406|431407|431408", + "text": "Deafness, autosomal recessive 107" + }, + { + "baseId": "431409|625969|625972|965219", + "text": "Polydactyly, postaxial, type a7" + }, + { + "baseId": "431425|431426|431427|481435|513700|513701|513702|513703|550577|589824|654112|798458|818157|818158|858866|963117|980300", + "text": "Congenital anomalies of kidney and urinary tract syndrome with or without hearing loss, abnormal ears, or developmental delay" + }, + { + "baseId": "431489|904914", + "text": "Spondyloepimetaphyseal dysplasia, di rocco type" + }, + { + "baseId": "431493|492638|614352|679181|969248", + "text": "Cerebellar atrophy, developmental delay, and seizures" + }, + { + "baseId": "431494", + "text": "Spermatogenic failure 21" + }, + { + "baseId": "431495|431496|553288|590786|906273", + "text": "Hydranencephaly with renal aplasia-dysplasia" + }, + { + "baseId": "431510", + "text": "Deafness, autosomal recessive 108" + }, + { + "baseId": "431518|431519|431520|431521|431522|431523|434077|513812|513813|513814|513845|513846|513847|550353|621148|790338|970756|983302", + "text": "Intellectual disability, autosomal dominant 47" + }, + { + "baseId": "431537", + "text": "UBTF E210K Neuroregression Syndrome" + }, + { + "baseId": "431537|919730|971079", + "text": "Childhood-onset motor and cognitive regression syndrome with extrapyramidal movement disorder" + }, + { + "baseId": "431537", + "text": "Infantile or childhood onset neurodegenerative disease, global developmental delay, and intellectual disability" + }, + { + "baseId": "431537", + "text": "UBTF-Related Disorder" + }, + { + "baseId": "431537", + "text": "Rare syndromic intellectual disability" + }, + { + "baseId": "431554", + "text": "Empty follicle syndrome" + }, + { + "baseId": "431554|676995|683219", + "text": "Oocyte maturation defect 3" + }, + { + "baseId": "431877|682738", + "text": "Hypomagnesemia" + }, + { + "baseId": "431889", + "text": "Hypoplastic right heart syndrome" + }, + { + "baseId": "431921", + "text": "Tubulinopathy" + }, + { + "baseId": "431934", + "text": "Learning difficulty" + }, + { + "baseId": "431979|431980", + "text": "Joint laxity, short stature, and myopia" + }, + { + "baseId": "431981|431982|613764|613765|613766", + "text": "Spinocerebellar ataxia, autosomal recessive, with axonal neuropathy 3" + }, + { + "baseId": "432221|432222", + "text": "Cortical gyral simplification" + }, + { + "baseId": "432248", + "text": "Inclusion body myositis" + }, + { + "baseId": "432257|432258|432259|963165", + "text": "Helix syndrome" + }, + { + "baseId": "432263|536175|536176|536177|536178|919379", + "text": "Coffin-Siris syndrome 7" + }, + { + "baseId": "432287", + "text": "Microalbuminuria" + }, + { + "baseId": "432287", + "text": "Macroscopic hematuria" + }, + { + "baseId": "432334|590099", + "text": "Kyphosis" + }, + { + "baseId": "432368|432369|610999|611000|611003", + "text": "Galloway-Mowat syndrome 6" + }, + { + "baseId": "432405", + "text": "SMALL ROUND CELL TUMOR" + }, + { + "baseId": "432414", + "text": "YOLK SAC TUMOR AND HIGH-GRADE IMMATURE TERATOMA" + }, + { + "baseId": "432421", + "text": "Desmoplastic small round cell tumor" + }, + { + "baseId": "432435|432436|432437|539972|539973|790752|798591", + "text": "Developmental and epileptic encephalopathy, 56" + }, + { + "baseId": "432446|432447|432448|788851|919368", + "text": "Blepharocheilodontic syndrome 2" + }, + { + "baseId": "432464|432465|432466|432467|432468|495073|513405|581219|672003|818380|965267|965268|965269|975902|975903", + "text": "Mitochondrial myopathy-cerebellar ataxia-pigmentary retinopathy syndrome" + }, + { + "baseId": "432485|432486|432487|440927", + "text": "Spinocerebellar ataxia 44" + }, + { + "baseId": "432670", + "text": "HEMOGLOBIN TAK" + }, + { + "baseId": "433599|609692|682779|682780|682781|700562|799533|799535|799536|981620|981621|981622|981623", + "text": "Hemolytic anemia due to glutathione reductase deficiency" + }, + { + "baseId": "434381|434382|434383|434384|802215", + "text": "Al Kaissi syndrome" + }, + { + "baseId": "434385|623122", + "text": "Spermatogenic failure 23" + }, + { + "baseId": "434386", + "text": "Spermatogenic failure 22" + }, + { + "baseId": "434421|434422|481490|481491|800133|903634", + "text": "3-methylglutaconic aciduria type 9" + }, + { + "baseId": "434424", + "text": "Methylmalonic aciduria of the cblA complementation type" + }, + { + "baseId": "434499|434500", + "text": "Hypertryptophanemia, familial" + }, + { + "baseId": "434518|578431|672236|672237|681867|805080", + "text": "Diencephalic-mesencephalic junction dysplasia syndrome 1" + }, + { + "baseId": "434541", + "text": "Familial early-onset deep venous thrombosis" + }, + { + "baseId": "434542|434543|434544|434545|434546|434547|434548|583074|798453|964795|964796|974507", + "text": "Neurodevelopmental disorder, mitochondrial, with abnormal movements and lactic acidosis, with or without seizures" + }, + { + "baseId": "434549|626090", + "text": "Neurodevelopmental disorder with microcephaly, ataxia, and seizures" + }, + { + "baseId": "434570|672135", + "text": "Chromosome 2q23.1 deletion syndrome" + }, + { + "baseId": "434572", + "text": "SCN3A- Related Disorder" + }, + { + "baseId": "434576", + "text": "STAT1-Related Disorder" + }, + { + "baseId": "434585", + "text": "SCN10A-Related Disorder" + }, + { + "baseId": "434586", + "text": "FLNB-Related Disorder" + }, + { + "baseId": "434592|789738|918157|918158|918159|918161|964818", + "text": "Neurodevelopmental disorder with language impairment and behavioral abnormalities" + }, + { + "baseId": "434597", + "text": "MATR3-Related Disorder" + }, + { + "baseId": "434599|538375", + "text": "Spinocerebellar ataxia, autosomal recessive 28" + }, + { + "baseId": "434634|622048|622049|622050", + "text": "Neurooculocardiogenitourinary syndrome" + }, + { + "baseId": "434644|583122", + "text": "LTBP2-related Disorder" + }, + { + "baseId": "434665", + "text": "MYOM1-related disorder" + }, + { + "baseId": "434670", + "text": "DNMT1-Related Disorder" + }, + { + "baseId": "434674", + "text": "Cutis Laxa Syndrome" + }, + { + "baseId": "434676", + "text": "Periodic fever syndrome" + }, + { + "baseId": "434685", + "text": "ACO2-related disorder" + }, + { + "baseId": "434686", + "text": "ACO2-related disorders" + }, + { + "baseId": "434693", + "text": "SMS-Related Disorder" + }, + { + "baseId": "434697", + "text": "mtDNA-related disorders" + }, + { + "baseId": "434698|434699|434700", + "text": "Mitochondrial DNA-related disorder" + }, + { + "baseId": "434734", + "text": "TANGO2-Related disorder" + }, + { + "baseId": "434747", + "text": "X-linked intellectual disability syndrome" + }, + { + "baseId": "434791", + "text": "Arteriosclerosis" + }, + { + "baseId": "434791|622024|622025|622026|622027|672087", + "text": "Coronary artery disease" + }, + { + "baseId": "434864", + "text": "Chromosome 10q22.3-q23.2 deletion syndrome" + }, + { + "baseId": "434869|434870|434871|434872|677458|677459|791826", + "text": "Auditory neuropathy-optic atrophy syndrome" + }, + { + "baseId": "434873|434874|434875|434876|434877|434878", + "text": "Combined oxidative phosphorylation deficiency 33" + }, + { + "baseId": "434897", + "text": "46,XX gonadal dysgenesis" + }, + { + "baseId": "434897|488076", + "text": "Ovarian dysgenesis 7" + }, + { + "baseId": "434925|434926|434927|434928|434929|488121|513416|590463|790427|800681|918867", + "text": "Epileptic encephalopathy, infantile or early childhood 1" + }, + { + "baseId": "434934|921225|963440", + "text": "Neuronopathy, distal hereditary motor, type 9" + }, + { + "baseId": "437661|801263|801264|801265|801266", + "text": "Neoplasm of head and neck" + }, + { + "baseId": "437687|437688|437689|437690|437691|437692|437693|437694|539976|539977", + "text": "Oocyte maturation defect 4" + }, + { + "baseId": "437698", + "text": "Deafness, X-linked" + }, + { + "baseId": "438508", + "text": "Familial isolated restrictive cardiomyopathy" + }, + { + "baseId": "438512|438513|438514", + "text": "Galloway-Mowat syndrome 2, X-linked" + }, + { + "baseId": "438518|438519|790768|815920|963060|963061|963062|963063|963064|963066|964666", + "text": "Platelet abnormalities with eosinophilia and immune-mediated inflammatory disease" + }, + { + "baseId": "438522|438523|438524|438525", + "text": "Galloway-Mowat syndrome 4" + }, + { + "baseId": "438526|438527", + "text": "Galloway-Mowat syndrome 5" + }, + { + "baseId": "438528|438529|438530|438531|438532|438533|438534|438535|590309|962736|962737", + "text": "Galloway-Mowat syndrome 3" + }, + { + "baseId": "438536", + "text": "Facial palsy, congenital, with ptosis and velopharyngeal dysfunction" + }, + { + "baseId": "438551|677465", + "text": "Uruguay faciocardiomusculoskeletal syndrome" + }, + { + "baseId": "438552|438553|438554|438555|438556|438557|614091|678066|963150", + "text": "Intellectual disability, autosomal dominant 48" + }, + { + "baseId": "439194|961520", + "text": "POLR3A-related neurological disorders" + }, + { + "baseId": "439220", + "text": "SPECC1L-related syndrome" + }, + { + "baseId": "439459", + "text": "Erythrokeratodermia variabilis et progressiva 5" + }, + { + "baseId": "439483|439484|439485|439486|439487|439488|481645|611381|611382|790205|790206|790207|790208|800918|805296|861563|861565|918748|918749|918750|918751|964196|964197|972712", + "text": "Clark-Baraitser syndrome" + }, + { + "baseId": "439491|439492|439493|439494|439495", + "text": "Joubert syndrome 31" + }, + { + "baseId": "439497|624047", + "text": "Hyperuricemic nephropathy, familial juvenile, 3" + }, + { + "baseId": "439505|439506|439507", + "text": "Myopathy, centronuclear, 6, with fiber-type disproportion" + }, + { + "baseId": "439523", + "text": "Mitochondrial DNA depletion syndrome 19" + }, + { + "baseId": "439562|439563", + "text": "Retinitis pigmentosa-hearing loss-premature aging-short stature-facial dysmorphism syndrome" + }, + { + "baseId": "439564|539041|917096|976524|976592", + "text": "Alkaline ceramidase 3 deficiency" + }, + { + "baseId": "439567|439584|439585", + "text": "Spliceosomepathy" + }, + { + "baseId": "439568|439569|439570|439571|439572|962920|964353", + "text": "Neurodevelopmental disorder with or without seizures and gait abnormalities" + }, + { + "baseId": "439573|488084", + "text": "Neurodevelopmental disorder with poor language and loss of hand skills" + }, + { + "baseId": "439580|696579|707219|799200|799201|981313", + "text": "Immunodeficiency, common variable, 14" + }, + { + "baseId": "439618|963568|963569|964235|964236|965963|970493", + "text": "Microcephaly 18, primary, autosomal dominant" + }, + { + "baseId": "439621|439622|439623|614176|800532", + "text": "North Carolina macular dystrophy" + }, + { + "baseId": "439633|439634|439635|496932|513979", + "text": "Iris coloboma" + }, + { + "baseId": "439648|439649|439650", + "text": "JOUBERT SYNDROME 34" + }, + { + "baseId": "439651", + "text": "Microphthalmia and cataract" + }, + { + "baseId": "439655|439656|962156|970800", + "text": "Spinocerebellar ataxia 45" + }, + { + "baseId": "439690|439691|624060|624061", + "text": "Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal recessive 5" + }, + { + "baseId": "439695|439696|439697|439698|439699", + "text": "CALFAN syndrome" + }, + { + "baseId": "439695|439697|439698|439699|539035|679782|788852|963161", + "text": "Spinocerebellar ataxia, autosomal recessive 21" + }, + { + "baseId": "439700|621042|800836|800838", + "text": "Hereditary hearing loss and deafness" + }, + { + "baseId": "439702", + "text": "CUP (carcinoma unknown primary) syndrome" + }, + { + "baseId": "439840|439841|919230", + "text": "Intellectual disability, autosomal recessive 61" + }, + { + "baseId": "439842|439843", + "text": "Nephrotic syndrome type 16" + }, + { + "baseId": "439867|439868|962180", + "text": "Fanconi anemia, complementation group W" + }, + { + "baseId": "439929", + "text": "Spinal neurofibromas" + }, + { + "baseId": "440029|440030|440031|440032|440033|440034|440035|535229|550346|613826|622302|626094|788726|789855|961496", + "text": "Intellectual disability, autosomal dominant 52" + }, + { + "baseId": "440039|440040|440041|550364|551680|551681|614526|614527|654136|791164|964368|973029", + "text": "Intellectual disability, autosomal dominant 51" + }, + { + "baseId": "440044|440045", + "text": "Inner ear Malformation" + }, + { + "baseId": "440064|496108", + "text": "Short-rib thoracic dysplasia 7/20 with polydactyly, digenic" + }, + { + "baseId": "440088|620162|620163", + "text": "WDR19-Related Disorders" + }, + { + "baseId": "440166|440168|440180|440181|440209", + "text": "Short-rib polydactyly syndrome type I" + }, + { + "baseId": "440239", + "text": "Microcephaly 19, primary, autosomal recessive" + }, + { + "baseId": "440258|440335|919800", + "text": "Gaze palsy, familial horizontal, with progressive scoliosis, 2" + }, + { + "baseId": "440258|440335|440336", + "text": "Developmental Split Brain Syndrome" + }, + { + "baseId": "440400", + "text": "Congenital hypomyelinating neuropathy" + }, + { + "baseId": "440416|871655|965244|965245|965246|965247|965248|965249|965250|965251|965252|965253|965254|965255|970043|970044|970045|970046|970047|970048|970049|970050|970051|970052|970053|970054|970055", + "text": "Corticosteroid response" + }, + { + "baseId": "440711|464828|481389|514128|581923|581924|643075|652723|804981|804982|804983|804997|804998|805002|805003|805006|805010|805012|805013|805014|805015|805019|805025|805026|805028|805029|805030|805032|805035|805036|805037|805038|805039|805040|805041|805045|805048|805051|805057|805060|966293|966304", + "text": "Flexion contracture" + }, + { + "baseId": "440711", + "text": "Tip-toe gait" + }, + { + "baseId": "442470|619886|619887|619888|619889", + "text": "Reclassified - variant of unknown significance" + }, + { + "baseId": "442499|442500|442501|539036", + "text": "Geleophysic dysplasia 3" + }, + { + "baseId": "443137", + "text": "SATB2-Related Disorder" + }, + { + "baseId": "443181|620066|620067", + "text": "COL4A3-Related Disorders" + }, + { + "baseId": "443312|672043", + "text": "DCTN1-Related Disorder" + }, + { + "baseId": "443381|443382", + "text": "TBL1XR1-Related Disorder" + }, + { + "baseId": "443720|511578|622954|622956|622958|622959|622960|918931|918932", + "text": "Brain abnormalities, neurodegeneration, and dysosteosclerosis" + }, + { + "baseId": "444422", + "text": "Combined pituitary hormone deficiency type 3" + }, + { + "baseId": "444512", + "text": "KANK1- Related Disorder" + }, + { + "baseId": "444973", + "text": "CACNA1C-Related Disorder" + }, + { + "baseId": "445005", + "text": "COL2A1-Related Disorder" + }, + { + "baseId": "445123|590074|590075", + "text": "Neonatal respiratory distress" + }, + { + "baseId": "445590|624091", + "text": "PIGQ-related condition" + }, + { + "baseId": "445607|576321", + "text": "Microcephalic osteodysplastic dysplasia, Saul-Wilson type" + }, + { + "baseId": "446047|861654|938582", + "text": "CACNA1A-related disorders" + }, + { + "baseId": "446049", + "text": "CACNA1A-associated disorders" + }, + { + "baseId": "446050|626377", + "text": "CACNA1A-related condition" + }, + { + "baseId": "446193", + "text": "Mitochondrial complex 1 deficiency, nuclear type 14" + }, + { + "baseId": "446266|961036", + "text": "Myoclonic absences" + }, + { + "baseId": "446266|514105|533574", + "text": "developmental encephalopathy with epilepsy" + }, + { + "baseId": "446378|513479|513480|514780|540517|540518|540519|540520|540521|540522|590158|590159|590161|590162|622740|623590|679832|962128|966805", + "text": "Noonan syndrome 2" + }, + { + "baseId": "446643", + "text": "Protein avoidance" + }, + { + "baseId": "446643", + "text": "Abnormality of ornithine metabolism" + }, + { + "baseId": "446829|446830|446831|446832|446833|446834|446835|609308|790786|790787", + "text": "Glycosylphosphatidylinositol biosynthesis defect 15" + }, + { + "baseId": "446836|446837", + "text": "Neurodevelopmental disorder with ataxic gait, absent speech, and decreased cortical white matter" + }, + { + "baseId": "446867|446868|446869|446870|446871|446872|446873|446874|446875|446876|446877|446878|446879|679804|906037|906220|906221|906222|906223|906224|906225|906226|906227|906228|906229|906229|962799|970548|977288", + "text": "Renal hypodysplasia/aplasia 3" + }, + { + "baseId": "446892", + "text": "Severe neonatal hypotonia improving with age" + }, + { + "baseId": "446893", + "text": "Decreased activity of mitochondrial ATP synthase complex" + }, + { + "baseId": "446893|482269", + "text": "Mitochondrial complex 5 (ATP synthase) deficiency nuclear type 5" + }, + { + "baseId": "446900", + "text": "Senior-Loken syndrome 3" + }, + { + "baseId": "447064|447144|514982|514986|515020|515026|515027|515047|515052|556556|556558|556589|556591|556851|556984|556986|626651|626652|626653|626654|626655|626656|706589|822564|822565|822566|822567|822568|822569|822570|822571|822572|822573|822574|921591|921592|921593|921594|921595|921596|921597|929978|929979|929980|929981|929982|941394|941395|952024|952025", + "text": "Autosomal recessive dyskeratosis congenita" + }, + { + "baseId": "447234", + "text": "LMNA-Related Disorders" + }, + { + "baseId": "449094", + "text": "Meckel-Gruber-like syndrome" + }, + { + "baseId": "450277|450434|517798|629320|686122|691015|691016|922527", + "text": "Nuclear pulverulent cataract" + }, + { + "baseId": "453161|453431|453534|519941|520189|562015|632204|651173|720980|734637|829151|923514|932338", + "text": "T-cell immunodeficiency with epidermodysplasia verruciformis" + }, + { + "baseId": "454349|454859|454860|521018|521023|560061|562675|749203", + "text": "Decreased plasma carnitine" + }, + { + "baseId": "454863|454865|454875|455362|455367|455379|455384|455648|624878|633695|691812|698999|721361", + "text": "Childhood absence epilepsy" + }, + { + "baseId": "454955|474385|954162", + "text": "SDHA-Related Disorders" + }, + { + "baseId": "457782|549937|549942|636168|636169|700086|711001|711002|711003|711004|722538|736146|736150|736153|759581|933892|933893", + "text": "Oxoglutaricaciduria" + }, + { + "baseId": "458792|513985|514023", + "text": "Spontaneous, recurrent epistaxis" + }, + { + "baseId": "459866|612002", + "text": "Germinoma (disease)" + }, + { + "baseId": "461658|461663|526519|564906|566162|640435|640436|640437|713119|713120|724689|752935|838973|926380|935770|947651|947652", + "text": "Infections, recurrent, with encephalopathy, hepatic dysfunction, and cardiovascular malformations" + }, + { + "baseId": "461713|526770|570721|640161|712902|712903|712905|738045|777955|838567|838568|838569|926278|926279|935601|935602|956534", + "text": "Transcobalamin I deficiency" + }, + { + "baseId": "462563|462568|463332|463334|463444|463447|463449|463450|527450|527453|527472|527473|527477|527725|527726|527730|527732|527990|527997|528001|565832|565839|565844|565850|567143|567158|568248|572177|572182|572184|572189|641520|641521|641522|641523|641524|641525|641526|641527|641528|641529|641530|641531|641532|641533|641534|641535|641536|641537|652384|652801|713808|713809|725337|738919|744758|753681|769387|784514|820539|840493|840494|840495|840496|840497|840498|840499|840500|840501|840502|840503|840504|840505|840506|840507|840508|840509|840510|840511|840512|840513|926791|926792|926793|926794|926795|936325|936326|936327|936328|936329|948246|948247|948248|948249|948250|957014|960070", + "text": "Evans syndrome, immunodeficiency, and premature immunosenescence associated with tripeptidyl-peptidase II deficiency" + }, + { + "baseId": "464097|527988|527994|528040|642198|642201|714069|725621|739170|739171|769732|784680|841192|841193|841194|841195|841196|841197|841198|841199|926986|936553|936554|948482|948483|957178", + "text": "Specific granule deficiency" + }, + { + "baseId": "464622|961534", + "text": "KIF7-related ciliopathy spectrum disorder" + }, + { + "baseId": "466937|622851", + "text": "Absent inner and outer dynein arms" + }, + { + "baseId": "467572|467582|467583|467590|467596|467598|467600|467604|468420|468427|468433|468436|468890|468894|468903|468908|468919|468920|468922|468924|469176|469193|531854|531862|531863|531872|531873|531875|531877|531886|531888|531889|531899|531905|531912|531958|531959|531966|531975|531980|531987|532233|532240|532243|532248|532256|532259|532261|569803|569818|569827|571676|571677|571681|572348|572353|574642|574646|574649|574650|574652|574653|614446|646799|646805|646807|646809|646813|646815|646817|646818|646819|646820|646824|646829|715742|715743|715744|715745|715746|715747|727469|727470|727471|741070|741071|741072|741073|741075|741076|741077|741081|741082|741083|745084|756172|756174|756175|756177|756178|756179|756181|771868|771869|771876|771877|771878|776424|776542|780140|785767|785774|788190|846307|846308|846309|846310|846311|846312|846313|846314|846315|846316|846317|846318|846319|846320|846321|846322|846323|846324|846325|846326|846327|846328|846329|846330|846331|846332|846333|846334|846335|846336|846337|846338|846339|846340|846341|846342|846343|846344|846345|846346|846347|851757|852800|928562|928563|928564|928565|928566|928567|928568|928569|928570|928571|928572|928573|928574|928575|928576|928577|938246|938247|938248|938249|938250|938251|938252|938253|938254|938255|938256|938257|938258|938259|938260|938261|938262|938263|938264|940442|940443|940444|941203|950321|950322|950323|950324|950325|950326|950327|950328|950329|950330|950331|950332|950333|950334|950335|950336|950337|950338|958334|958335|958336|958337|958338|958339|958340|958341|960250|960251|960899|960900", + "text": "Epidermodysplasia verruciformis" + }, + { + "baseId": "467804|468096|468293|531155|531158|531164|531165|531170|531174|531364|531366|531368|531420|531422|531427|531428|531641|531643|531649|531652|531666|571221|571225|571227|571533|571534|574500|646092|646093|646094|646095|646096|646097|646098|646099|646100|646101|646102|646103|646104|646105|646106|646107|652969|652972|727223|727224|727225|727226|740822|740823|744995|771590|785621|845498|845499|845500|845501|845502|845503|845504|845505|845506|845507|845508|845509|845510|845511|845512|845513|845514|852878|928343|928344|928345|928346|928347|928348|928349|937986|937987|937988|937989|937990|937991|937992|937993|937994|949977|949978|949979|949980|949981|958146", + "text": "NIK deficiency" + }, + { + "baseId": "469009|626445|626446|655042|679026|679062|679064|679065|679066|679067|679068|679074|679076|679077|679078|679086|679091|679104|679109|679114|679115|679126|679131|679135|679137|679139|679151|679154|679164|679166|679168|679169|679170", + "text": "Esophageal atresia" + }, + { + "baseId": "469009|513978|655042|679026|679062|679064|679065|679066|679067|679068|679074|679076|679077|679078|679086|679091|679104|679109|679114|679115|679126|679131|679135|679137|679139|679151|679154|679164|679166|679168|679169|679170", + "text": "Pyloric stenosis" + }, + { + "baseId": "469648", + "text": "SCN1B-Related Disorder" + }, + { + "baseId": "471580|965351|965352", + "text": "Immunodeficiency 73b with defective neutrophil chemotaxis and lymphopenia" + }, + { + "baseId": "471610|973014", + "text": "Complete trisomy 21 syndrome" + }, + { + "baseId": "472237|472238|472239|906188|970665", + "text": "Glycosylphosphatidylinositol biosynthesis defect 16" + }, + { + "baseId": "472250|472251|472252", + "text": "Myopia 26, X-linked, female-limited" + }, + { + "baseId": "472744", + "text": "MSH2-related disorder" + }, + { + "baseId": "473799|550670", + "text": "Gastrointestinal stromal tumor of small intestine" + }, + { + "baseId": "473816", + "text": "Papillary renal cell carcinoma" + }, + { + "baseId": "476010|476355", + "text": "Acroleukopathy, symmetric" + }, + { + "baseId": "476701", + "text": "Polymerase proofreading associated polyposis" + }, + { + "baseId": "480423|682661|682662|682664|682665|682666|857384|983693", + "text": "Neurodevelopmental disorder with dysmorphic facies and distal skeletal anomalies" + }, + { + "baseId": "480513|480514|536006|536007|536138|536160|536186|550148", + "text": "Rajab interstitial lung disease with brain calcifications" + }, + { + "baseId": "480531|480532|480533|480534|540434|540435", + "text": "Mitochondrial complex 1 deficiency, nuclear type 33" + }, + { + "baseId": "480548|480549|480550|581865", + "text": "Congenital ATN1 related disorder" + }, + { + "baseId": "480561|480562|480563|480564|964730|964732", + "text": "Combined immunodeficiency due to GINS1 deficiency" + }, + { + "baseId": "480578", + "text": "Spondyloepimetaphyseal dysplasia, Shohat type" + }, + { + "baseId": "480602", + "text": "Indifference to pain, congenital, autosomal dominant" + }, + { + "baseId": "480613|480614|480616|480617|480618|798801|964898", + "text": "Basilicata-Akhtar syndrome" + }, + { + "baseId": "480624|481174|481175|589847|589848|589849|589850|589851", + "text": "Immune dysregulation-inflammatory bowel disease-arthritis-recurrent infections syndrome" + }, + { + "baseId": "480624|481174|481175", + "text": "Inflammatory bowel disease, immunodeficiency, and encephalopathy" + }, + { + "baseId": "480785|480786|480787|480788|480789|480790|480791|480792|480793|480794|480795|480796|480797|480798|480799|480800|480801|480802|480803|480804|480805|480806|480807|480808|480809|480810|480811|480812|480813|480814|480815|480816|480817|612011|622842", + "text": "Ependymoma" + }, + { + "baseId": "481073|481075|650514|973110|973111", + "text": "Robinow syndrome, autosomal recessive 2" + }, + { + "baseId": "481074|481075|481076", + "text": "Distal shortening of limbs" + }, + { + "baseId": "481083", + "text": "Congenital short bowel syndrome, X-linked" + }, + { + "baseId": "481154", + "text": "Alopecia-intellectual disability syndrome 1" + }, + { + "baseId": "481155", + "text": "alpha, alpha-Trehalase deficiency" + }, + { + "baseId": "481159|481160", + "text": "Congenital disorder of glycosylation, type Ibb" + }, + { + "baseId": "481193|481194|481195|790985", + "text": "Amyotrophic lateral sclerosis type 23" + }, + { + "baseId": "481279|481280|963166", + "text": "Neurodevelopmental disorder with microcephaly, epilepsy, and brain atrophy" + }, + { + "baseId": "481308", + "text": "Intellectual disability, seizures, abnormal gait and distinctive facial features" + }, + { + "baseId": "481328", + "text": "X-linked recessive seizure and neurodevelopmental deficit" + }, + { + "baseId": "481523|481524", + "text": "Short-rib thoracic dysplasia 18 with polydactyly" + }, + { + "baseId": "481592", + "text": "COL9A2-Related Disorders" + }, + { + "baseId": "481612|536235", + "text": "SCN2A-related disorder" + }, + { + "baseId": "481865|620819", + "text": "OPTN-Related Disorders" + }, + { + "baseId": "482055|513448|550329|575499|575500", + "text": "IRF2BPL-related condition" + }, + { + "baseId": "482079|539426|539427|539428|677448|980899", + "text": "Cardiomyopathy, familial hypertrophic 27" + }, + { + "baseId": "482150|539420|539422|539423|539424|609317|609318|609319|609320|609321|609322|609323|609324|609325|609326|609327|609328|609329|609330|609331|609332|677456|798720|805975|816534|966892|966893|966894|966895|980382", + "text": "Mental retardation, autosomal dominant 57" + }, + { + "baseId": "482203|970255|970320|970351", + "text": "Rubinstein taybi like syndrome" + }, + { + "baseId": "482261", + "text": "SMC1A-related cohesinopathy" + }, + { + "baseId": "482273", + "text": "CACNA1H-related disorder" + }, + { + "baseId": "482290|587102", + "text": "Retinitis pigmentosa 81" + }, + { + "baseId": "482317", + "text": "Combined oxidative phosphorylation deficiency 34" + }, + { + "baseId": "482318|482320|501889", + "text": "Corneal dystrophy, posterior polymorphous 4" + }, + { + "baseId": "485862|508752|513224|980482", + "text": "Growth hormone insensitivity syndrome with immune dysregulation 2, autosomal dominant" + }, + { + "baseId": "485877|485878|919212", + "text": "Leber congenital amaurosis with early-onset deafness" + }, + { + "baseId": "485881", + "text": "MFSD12 POLYMORPHISM" + }, + { + "baseId": "485952", + "text": "Neoplasm of the central nervous system" + }, + { + "baseId": "486598|486599|486600|486601|486602", + "text": "BODY MASS INDEX QUANTITATIVE TRAIT LOCUS 19" + }, + { + "baseId": "486669|486670", + "text": "Multiple synostoses syndrome 4" + }, + { + "baseId": "486675|486676", + "text": "SHORT-RIB THORACIC DYSPLASIA 19 WITHOUT POLYDACTYLY" + }, + { + "baseId": "486675|486676|486677|486678|550898", + "text": "Short-rib thoracic dysplasia 19 with or without polydactyly" + }, + { + "baseId": "486695|919510|919511|974886", + "text": "Developmental and epileptic encephalopathy, 66" + }, + { + "baseId": "486703|550170", + "text": "Leukodystrophy, hypomyelinating, 14" + }, + { + "baseId": "486726|486727", + "text": "Pediatric metastatic thyroid tumour" + }, + { + "baseId": "486748|511754|535681|535682|535685|609309|788825|961289", + "text": "Developmental and epileptic encephalopathy, 64" + }, + { + "baseId": "486810|486811|486812|798663|816475|919463", + "text": "Encephalopathy, acute, infection-induced (herpes-specific), susceptibility to, 8" + }, + { + "baseId": "487471|487565|917021", + "text": "Congenital heart disease (variable)" + }, + { + "baseId": "488076", + "text": "Primary ovarian failure" + }, + { + "baseId": "488080|488081|488082|563452|836478", + "text": "Early infantile epileptic encephalopathy 59" + }, + { + "baseId": "488085|488086", + "text": "Erythrocytosis, familial, 5" + }, + { + "baseId": "488087|976709", + "text": "Diamond-Blackfan anemia-like" + }, + { + "baseId": "488091|488092|488093|488094|965630", + "text": "Congenital heart defects, multiple types, 5" + }, + { + "baseId": "488127", + "text": "Islet cell adenomatosis" + }, + { + "baseId": "488146|488147|539094", + "text": "Myotonic dystrophy" + }, + { + "baseId": "488173", + "text": "Kala-azar susceptibility 2" + }, + { + "baseId": "489148", + "text": "COL11A2-Related Disorders" + }, + { + "baseId": "489148|514005|966698|966716|966717", + "text": "Short long bone" + }, + { + "baseId": "489148|966698|966727|966728|966729|966731", + "text": "Thickened nuchal skin fold" + }, + { + "baseId": "490222|801106", + "text": "Focal Segmental Glomerulosclerosis 10" + }, + { + "baseId": "492743|496667", + "text": "Fever-associated acute infantile liver failure syndrome" + }, + { + "baseId": "493436", + "text": "SMAD3-Related Disorder" + }, + { + "baseId": "494917", + "text": "Mild hemophilia A" + }, + { + "baseId": "494918|672075", + "text": "Neurodegeneration with brain iron accumulation 8" + }, + { + "baseId": "494920|494921|494922|494923|494924|494925|971580", + "text": "Amyloidosis, primary localized cutaneous, 3" + }, + { + "baseId": "494926|494927|626156|626157", + "text": "Neurodegeneration with brain iron accumulation 7" + }, + { + "baseId": "495005|495006|495007|495008|495009|495010|495011|965270|966362", + "text": "Microcephaly 20, primary, autosomal recessive" + }, + { + "baseId": "495473|963199|963200|963202|963203", + "text": "Tolchin-Le Caignec syndrome" + }, + { + "baseId": "495535", + "text": "PHIP-Related disorders" + }, + { + "baseId": "495552", + "text": "CENPJ-Related Disorders" + }, + { + "baseId": "495916|495917|495918|495919", + "text": "Amyotrophic lateral sclerosis, susceptibility to, 25" + }, + { + "baseId": "495920", + "text": "BLOOD GROUP, MN" + }, + { + "baseId": "496106|496107|496108", + "text": "Short-rib thoracic dysplasia 20 with polydactyly" + }, + { + "baseId": "496109", + "text": "Orofaciodigital syndrome 17" + }, + { + "baseId": "496109", + "text": "Mohr syndrome" + }, + { + "baseId": "496318", + "text": "Rare isolated myopia" + }, + { + "baseId": "496338", + "text": "Congenital membranous nephropathy due to maternal anti-neutral endopeptidase alloimmunization" + }, + { + "baseId": "496684", + "text": "Hypotonia-speech impairment-severe cognitive delay syndrome" + }, + { + "baseId": "496803", + "text": "Immunodeficiency due to a late component of complement deficiency" + }, + { + "baseId": "497172", + "text": "Respiratory distress associated with prematurity" + }, + { + "baseId": "497235", + "text": "Hereditary ataxia" + }, + { + "baseId": "497421", + "text": "Idiopathic bronchiectasis" + }, + { + "baseId": "497548", + "text": "Hereditary methemoglobinemia" + }, + { + "baseId": "497913|538970|583089", + "text": "Orofaciodigital syndrome 18" + }, + { + "baseId": "498462", + "text": "Neurodevelopmental and congenital anomalies" + }, + { + "baseId": "504813", + "text": "Cocaine-Related Disorders" + }, + { + "baseId": "508703|508704", + "text": "Keratoconus 9" + }, + { + "baseId": "508758", + "text": "Autosomal-Recessive Hereditary Hearing Impairment" + }, + { + "baseId": "508759|508760|508761|508762|858724", + "text": "Epilepsy, juvenile myoclonic, susceptibility to, 10" + }, + { + "baseId": "509021|509022|509023|789366|858343|858344|920100", + "text": "Developmental and epileptic encephalopathy, 60" + }, + { + "baseId": "509054|509055", + "text": "Early infantile epileptic encephalopathy 61" + }, + { + "baseId": "510064", + "text": "Narrow palate" + }, + { + "baseId": "510064", + "text": "Abnormal vena cava morphology" + }, + { + "baseId": "510064", + "text": "Aortic tortuosity" + }, + { + "baseId": "511233", + "text": "H3F3A-related condition" + }, + { + "baseId": "511422|511423", + "text": "Rhizomelic limb shortening with dysmorphic features" + }, + { + "baseId": "511504|538359|583203|583204|608856|961413|964723|964724|970775", + "text": "Neurodevelopmental disorder with impaired intellectual development, hypotonia, and ataxia" + }, + { + "baseId": "511615|969770|969781|969789|969791|969875|969877|969878", + "text": "Chromatinopathy" + }, + { + "baseId": "511653", + "text": "CSNK2B-related intellectual disability with or without epilepsy" + }, + { + "baseId": "511804|551258|551259|551260|551261|798613|858741|861585|920263|964317", + "text": "Mental retardation, autosomal dominant 58" + }, + { + "baseId": "511875|792648|792649|792650|792651", + "text": "Liang-Wang syndrome" + }, + { + "baseId": "511959", + "text": "TRPV4-Associated Disorders" + }, + { + "baseId": "512291|512292", + "text": "Deafness, autosomal recessive 115" + }, + { + "baseId": "512310|513470|966802", + "text": "Vertebral anomalies and variable endocrine and T-cell dysfunction" + }, + { + "baseId": "512539|590974|590977|619890|619891|619892|619893|619894|619895|792082|798772|805123|903646|919957|963939|964896|966601|970513|971166", + "text": "Developmental delay with variable intellectual impairment and behavioral abnormalities" + }, + { + "baseId": "512732", + "text": "DLG3-Related Disorder" + }, + { + "baseId": "513082|590296|861245|861246", + "text": "Proteinuria, chronic benign" + }, + { + "baseId": "513195", + "text": "Seizures, benign familial infantile, 6" + }, + { + "baseId": "513197|513198|513455|624058|624059", + "text": "Shwachman-Diamond syndrome 2" + }, + { + "baseId": "513201", + "text": "Idiopathic transverse myelitis" + }, + { + "baseId": "513203", + "text": "MICROTIA WITHOUT HEARING IMPAIRMENT" + }, + { + "baseId": "513215|513758|613404|984064", + "text": "Hereditary spherocytosis" + }, + { + "baseId": "513252", + "text": "Neurodegeneration due to 3-hydroxyisobutyryl coenzyme A hydrolase deficiency" + }, + { + "baseId": "513287|539003|626168", + "text": "Ullrich congenital muscular dystrophy" + }, + { + "baseId": "513347", + "text": "Osteosclerotic metaphyseal dysplasia" + }, + { + "baseId": "513410", + "text": "EVI5-related condition" + }, + { + "baseId": "513412", + "text": "TRIP12 associated autism with facial dysmorphology" + }, + { + "baseId": "513423", + "text": "ZNF292-related neurodevelopmental condition" + }, + { + "baseId": "513429|513430", + "text": "SNAPC4-associated inflammatory disease" + }, + { + "baseId": "513431|513432", + "text": "ABCA2-related condition" + }, + { + "baseId": "513435|513436", + "text": "AGTPBP1-related condition" + }, + { + "baseId": "513435|513436|590700|590701|590702|590703|590704|590705|971341|971342|973103", + "text": "Neurodegeneration, childhood-onset, with cerebellar atrophy" + }, + { + "baseId": "513439", + "text": "SPI1-related eosinophilia syndrome" + }, + { + "baseId": "513442|623048", + "text": "MYBPC1-related condition" + }, + { + "baseId": "513444", + "text": "GDF11-associated multiple congenital anomalies and ID" + }, + { + "baseId": "513445", + "text": "SMARCC2-related condition" + }, + { + "baseId": "513446|539441|539442", + "text": "Proteasome-associated autoinflammatory syndrome 2" + }, + { + "baseId": "513453|513454|613433", + "text": "Neurodevelopmental disorder with microcephaly, epilepsy, and hypomyelination" + }, + { + "baseId": "513456|513457", + "text": "GLYR1-related condition" + }, + { + "baseId": "513461", + "text": "USP7-related condition" + }, + { + "baseId": "513470", + "text": "TBX2-related condition" + }, + { + "baseId": "513549|615790|677277|822295|970796", + "text": "Deafness, autosomal dominant 39, with dentinogenesis imperfecta 1" + }, + { + "baseId": "513600", + "text": "DEND syndrome" + }, + { + "baseId": "513616", + "text": "Xeroderma pigmentosum and Cockayne syndrome complex" + }, + { + "baseId": "513645|625967|625968", + "text": "Pearson syndrome" + }, + { + "baseId": "513701", + "text": "PBX1-related intellectual disability and pleiotropic developmental defects" + }, + { + "baseId": "513704|964899", + "text": "Intellectual disability, x-linked 107" + }, + { + "baseId": "513705|576291", + "text": "Arthrogryposis multiplex congenita 2, neurogenic type" + }, + { + "baseId": "513721|513722|513723", + "text": "Elsahy-Waters syndrome" + }, + { + "baseId": "513746|513747|513748", + "text": "Osteogenesis imperfecta, type 18" + }, + { + "baseId": "513759|513760|513761|513762|513763|788734|789345|789346", + "text": "Leukodystrophy, hypomyelinating, 15" + }, + { + "baseId": "513764|513765|513766|513767|513768", + "text": "Multiple mitochondrial dysfunctions syndrome 6" + }, + { + "baseId": "513764", + "text": "PMPCB-related mitochondrial disorder" + }, + { + "baseId": "513769", + "text": "Hyperostosis cranialis interna" + }, + { + "baseId": "513781", + "text": "AKT1 Inhibitor response" + }, + { + "baseId": "513782", + "text": "WEE1 Inhibitor response" + }, + { + "baseId": "513793|513796|513799", + "text": "VEGF Inhibitors response" + }, + { + "baseId": "513798", + "text": "MEK Inhibitor response" + }, + { + "baseId": "513800|513801", + "text": "mTOR Inhibitor response" + }, + { + "baseId": "513815|513816", + "text": "PDS5A-related disorder" + }, + { + "baseId": "513825", + "text": "WAPL-related disorder" + }, + { + "baseId": "513826|513827|513828|513829|513830|513848", + "text": "STAG2-related disorder" + }, + { + "baseId": "513827|513828|513830|612202|612203|612204|798804|798805", + "text": "Mullegama-Klein-Martinez syndrome" + }, + { + "baseId": "513861|513862|513863", + "text": "Combined oxidative phosphorylation deficiency 36" + }, + { + "baseId": "513864|513865|615240|615241", + "text": "Spermatogenic failure 24" + }, + { + "baseId": "513884", + "text": "Spermatogenic failure 26" + }, + { + "baseId": "513887", + "text": "Leukodystrophy, hypomyelinating, 16" + }, + { + "baseId": "513889", + "text": "Adrenal pheochromocytoma" + }, + { + "baseId": "513889", + "text": "Recurrent paroxysmal headache" + }, + { + "baseId": "513891", + "text": "Palmoplantar hyperhidrosis" + }, + { + "baseId": "513891|513990", + "text": "Atrophic scars" + }, + { + "baseId": "513896", + "text": "Constipation" + }, + { + "baseId": "513896", + "text": "Abnormal urinary color" + }, + { + "baseId": "513905", + "text": "Hyperglycemia" + }, + { + "baseId": "513906|513959|514053|677975", + "text": "Arteriovenous malformation" + }, + { + "baseId": "513907", + "text": "Bilateral cleft palate" + }, + { + "baseId": "513907", + "text": "Absent gallbladder" + }, + { + "baseId": "513911", + "text": "Low-output congestive heart failure" + }, + { + "baseId": "513914", + "text": "Late-onset muscular dystrophy" + }, + { + "baseId": "513915", + "text": "Severe photosensitivity" + }, + { + "baseId": "513917|513990", + "text": "Hyperextensible skin" + }, + { + "baseId": "513917", + "text": "Spinal deformities" + }, + { + "baseId": "513926", + "text": "Abnormal myelination" + }, + { + "baseId": "513927|513928", + "text": "Amenorrhea" + }, + { + "baseId": "513929", + "text": "Optic disc drusen" + }, + { + "baseId": "513931", + "text": "Absent muscle fiber dysferlin" + }, + { + "baseId": "513945", + "text": "Teratoma" + }, + { + "baseId": "513945|626447|626448|626449|626450", + "text": "Imperforate anus" + }, + { + "baseId": "513946", + "text": "Progressive gait ataxia" + }, + { + "baseId": "513953", + "text": "Hydrocele testis" + }, + { + "baseId": "513967", + "text": "Ventricular arrhythmia" + }, + { + "baseId": "513970", + "text": "Skeletal muscle hypertrophy" + }, + { + "baseId": "513970", + "text": "Lumbar hyperlordosis" + }, + { + "baseId": "513970", + "text": "Hypoplasia of the maxilla" + }, + { + "baseId": "513972|514028", + "text": "Vasculitis" + }, + { + "baseId": "513977", + "text": "Chorioretinal coloboma" + }, + { + "baseId": "513977", + "text": "Pulmonary artery atresia" + }, + { + "baseId": "513977", + "text": "Retinal coloboma" + }, + { + "baseId": "513978", + "text": "Choanal atresia" + }, + { + "baseId": "513985", + "text": "Pulmonary arteriovenous malformation" + }, + { + "baseId": "513985", + "text": "Palate telangiectasia" + }, + { + "baseId": "513985|514023", + "text": "Oral cavity telangiectasia" + }, + { + "baseId": "513987", + "text": "Angiofibromas" + }, + { + "baseId": "513987", + "text": "Renal angiomyolipoma" + }, + { + "baseId": "513990", + "text": "Cigarette-paper scars" + }, + { + "baseId": "513990", + "text": "Large joint dislocations" + }, + { + "baseId": "513995", + "text": "Impaired gluconeogenesis" + }, + { + "baseId": "513995", + "text": "Abnormality of acid-base homeostasis" + }, + { + "baseId": "514002", + "text": "Loss of consciousness" + }, + { + "baseId": "514023", + "text": "Lip telangiectasia" + }, + { + "baseId": "514032", + "text": "Pachygyria" + }, + { + "baseId": "514035|514036", + "text": "Cobalamin deficiency" + }, + { + "baseId": "514043|514327", + "text": "Aplasia/Hypoplasia of the corpus callosum" + }, + { + "baseId": "514050|514187", + "text": "Striae distensae" + }, + { + "baseId": "514050", + "text": "Pulmonary artery dilatation" + }, + { + "baseId": "514051", + "text": "Myxomatous mitral valve degeneration" + }, + { + "baseId": "514051", + "text": "Lumbar scoliosis" + }, + { + "baseId": "514059|679672", + "text": "Enlarged kidney" + }, + { + "baseId": "514069|514070|608886|608887|608888|608889|608891|608892|608893|971066", + "text": "Ciliary dyskinesia, primary, 40" + }, + { + "baseId": "514079", + "text": "Premature birth" + }, + { + "baseId": "514084", + "text": "Reduced bone mineral density" + }, + { + "baseId": "514092", + "text": "Tension-type headache" + }, + { + "baseId": "514099|623231", + "text": "Apnea" + }, + { + "baseId": "514103", + "text": "Myopathic facies" + }, + { + "baseId": "514103", + "text": "Axial muscle stiffness" + }, + { + "baseId": "514106|622034|963005|963006|963007|963008|963009|963010|963011|963012|963013|963014|963015|963016|963017|963018|963019|963020|963021|963022|963023|963024|963025|963026|963027|963028|963029|963030|963031|963032|963033|963034|963035|963036|963037|963038|963039|963040|963041|963042|963043|963044|963045|963046|963047|963048|963049|963050|963051|963052|963053|963054|963055|963056|963057|963058|963059", + "text": "Aganglionic megacolon" + }, + { + "baseId": "514106", + "text": "Abnormality of the rectum" + }, + { + "baseId": "514114|792691", + "text": "Nephropathy" + }, + { + "baseId": "514115", + "text": "Unilateral deafness" + }, + { + "baseId": "514116", + "text": "Nephritis" + }, + { + "baseId": "514116", + "text": "Global glomerulosclerosis" + }, + { + "baseId": "514117", + "text": "Elevated mean arterial pressure" + }, + { + "baseId": "514119", + "text": "Sepsis" + }, + { + "baseId": "514122", + "text": "Abnormality of the nail" + }, + { + "baseId": "514122", + "text": "Bifid nail" + }, + { + "baseId": "514122", + "text": "Ridged nail" + }, + { + "baseId": "514123", + "text": "Unilateral polymicrogyria" + }, + { + "baseId": "514123", + "text": "Frontoparietal polymicrogyria" + }, + { + "baseId": "514125", + "text": "Encephalitis" + }, + { + "baseId": "514125", + "text": "Episodic fever" + }, + { + "baseId": "514125|514142", + "text": "Myocarditis" + }, + { + "baseId": "514126", + "text": "Arterial thrombosis" + }, + { + "baseId": "514127", + "text": "Subependymal nodules" + }, + { + "baseId": "514133", + "text": "Abnormal muscle fiber dystrophin expression" + }, + { + "baseId": "514137", + "text": "Mild fetal ventriculomegaly" + }, + { + "baseId": "514140", + "text": "Low-molecular-weight proteinuria" + }, + { + "baseId": "514140", + "text": "Multiple small medullary renal cysts" + }, + { + "baseId": "514143", + "text": "Absent pubic hair" + }, + { + "baseId": "514143", + "text": "Absent axillary hair" + }, + { + "baseId": "514143", + "text": "Female external genitalia in individual with 46,XY karyotype" + }, + { + "baseId": "514148", + "text": "Chorioretinal atrophy" + }, + { + "baseId": "514150", + "text": "Optic neuritis" + }, + { + "baseId": "514152", + "text": "Oromandibular dystonia" + }, + { + "baseId": "514154", + "text": "Steppage gait" + }, + { + "baseId": "514155", + "text": "Incomprehensible speech" + }, + { + "baseId": "514159|514160", + "text": "Peripheral hypomyelination" + }, + { + "baseId": "514170", + "text": "Narrow mouth" + }, + { + "baseId": "514173", + "text": "Long face" + }, + { + "baseId": "514173", + "text": "Proximal placement of thumb" + }, + { + "baseId": "514176", + "text": "Epileptic spasms" + }, + { + "baseId": "514184", + "text": "Coarctation of aorta" + }, + { + "baseId": "514185", + "text": "Hearing abnormality" + }, + { + "baseId": "514187", + "text": "Abnormality of the mitral valve" + }, + { + "baseId": "514208|621018", + "text": "Facial hemangioma" + }, + { + "baseId": "514213", + "text": "Torticollis" + }, + { + "baseId": "514216|514217|801187|801188", + "text": "Migraine with aura" + }, + { + "baseId": "514218", + "text": "Short phalanx of finger" + }, + { + "baseId": "514218", + "text": "Sandal gap" + }, + { + "baseId": "514218", + "text": "Hypermetropia" + }, + { + "baseId": "514221", + "text": "Frontal bossing" + }, + { + "baseId": "514263", + "text": "LOW DENSITY LIPOPROTEIN CHOLESTEROL LEVEL QUANTITATIVE TRAIT LOCUS 7" + }, + { + "baseId": "514264|609315", + "text": "Spermatogenic failure 27" + }, + { + "baseId": "514265", + "text": "Synostosis involving bones of the lower limbs" + }, + { + "baseId": "514265", + "text": "Severe postnatal growth retardation" + }, + { + "baseId": "514266", + "text": "AFib amyloidosis" + }, + { + "baseId": "514277", + "text": "Intellectual disability syndrome due to a DYRK1A point mutation" + }, + { + "baseId": "514293", + "text": "Human immunodeficiency virus type 1, rapid progression to AIDS" + }, + { + "baseId": "514305|514306|514307|575488|612052|790402|790403|790404|918153|970773|977199", + "text": "Ververi-Brady syndrome" + }, + { + "baseId": "514310|514311", + "text": "Abnormality of the ribs" + }, + { + "baseId": "514310|514311|550882|550883|800785", + "text": "External ophthalmoplegia" + }, + { + "baseId": "514310|514311", + "text": "Ophthalmoplegia, external, with rib and vertebral anomalies" + }, + { + "baseId": "514432", + "text": "NFIA-related disorders" + }, + { + "baseId": "514844", + "text": "Microcephaly 23, primary, autosomal recessive" + }, + { + "baseId": "514845|514846|514847", + "text": "Microcephaly 22, primary, autosomal recessive" + }, + { + "baseId": "514850", + "text": "Microcephaly 21, primary, autosomal recessive" + }, + { + "baseId": "517552|619120|620052|620053", + "text": "APOB-Related Disorders" + }, + { + "baseId": "520495|620169|620170", + "text": "EVC-Related Disorders" + }, + { + "baseId": "521177|521178|560315|560448|633932|633933|633934|633935|691852|830834|830835|932903|932904|940815|944616", + "text": "Pure or complex autosomal recessive spastic paraplegia" + }, + { + "baseId": "525349|639123|919283", + "text": "Lymphoma, Non-Hodgkin, Familial" + }, + { + "baseId": "528414", + "text": "Inherited spastic paresis" + }, + { + "baseId": "533574", + "text": "KCNB1-related disorder" + }, + { + "baseId": "535228", + "text": "Abnormal sperm morphology" + }, + { + "baseId": "535228", + "text": "Reduced sperm motility" + }, + { + "baseId": "535230", + "text": "Echogenic fetal bowel" + }, + { + "baseId": "535230", + "text": "Bilateral fetal pyelectasis" + }, + { + "baseId": "535231|535232|535233|535234|789367|963142", + "text": "Jaberi-Elahi syndrome" + }, + { + "baseId": "535285|535286|535287|535288|536191", + "text": "Ehlers-danlos syndrome, classic-like, 2" + }, + { + "baseId": "535380", + "text": "Recurrent encephalopathy" + }, + { + "baseId": "535380|622762|622764|622765", + "text": "Encephalopathy, acute, infection-induced, susceptibility to, 9" + }, + { + "baseId": "535383", + "text": "DACT1-related neural tube defects" + }, + { + "baseId": "535386", + "text": "13q partial monosomy syndrome" + }, + { + "baseId": "535693|792798|966164|966165", + "text": "Diarrhea" + }, + { + "baseId": "535693|550130", + "text": "Failure to thrive in infancy" + }, + { + "baseId": "535693", + "text": "Chronic diarrhea" + }, + { + "baseId": "535693", + "text": "Impaired feeding ability" + }, + { + "baseId": "535700|556483|615915", + "text": "Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 8" + }, + { + "baseId": "535725|535726|535727|535728|970528", + "text": "Congenital disorder of glycosylation with defective fucosylation 1" + }, + { + "baseId": "535729|535730|535731|965424|965425|965426", + "text": "OOCYTE MATURATION DEFECT 5" + }, + { + "baseId": "535752", + "text": "Deafness, autosomal recessive 26" + }, + { + "baseId": "535756|535757|535758", + "text": "Hyperekplexia 4" + }, + { + "baseId": "536004", + "text": "Isolated nail anomaly" + }, + { + "baseId": "536009", + "text": "Premature ovarian failure 14" + }, + { + "baseId": "536010|536011", + "text": "Deafness, autosomal recessive 109" + }, + { + "baseId": "536026|536027|536028|536029|575487|961597|983652|983653", + "text": "Epileptic encephalopathy, infantile or early childhood 3" + }, + { + "baseId": "536041", + "text": "SHORT-RIB THORACIC DYSPLASIA 4 WITH POLYDACTYLY" + }, + { + "baseId": "536042", + "text": "gamma-Glutamyltransferase deficiency" + }, + { + "baseId": "536060", + "text": "Anomalous pulmonary venous return" + }, + { + "baseId": "536064|857664|857665|857666|857667|857668|857669|857670", + "text": "Conotruncal defect" + }, + { + "baseId": "536074", + "text": "Protoporphyria, erythropoietic, 2" + }, + { + "baseId": "536086|536087", + "text": "CYP2C8 POLYMORPHISM" + }, + { + "baseId": "536130|536131", + "text": "Glycosylphosphatidylinositol biosynthesis defect 17" + }, + { + "baseId": "536132|536133", + "text": "Tetraamelia syndrome 2" + }, + { + "baseId": "536134", + "text": "Humerofemoral hypoplasia with radiotibial ray deficiency" + }, + { + "baseId": "536135", + "text": "Waardenburg syndrome type 2" + }, + { + "baseId": "536136", + "text": "Cleft palate, proliferative retinopathy, and developmental delay" + }, + { + "baseId": "536137", + "text": "RFT1 related CDG" + }, + { + "baseId": "536138|536151|536160|536186|536187", + "text": "Interstitial pneumonitis" + }, + { + "baseId": "536138|536151|536160|536186|536187", + "text": "Cirrhosis of liver" + }, + { + "baseId": "536169|536170|536171|536172|536173|983569", + "text": "Charcot-marie-tooth disease, axonal, type 2DD" + }, + { + "baseId": "536184", + "text": "BMPR1A Skeletal Dysplasia Syndrome" + }, + { + "baseId": "536185|538933|538934|578020", + "text": "Spermatogenic failure 33" + }, + { + "baseId": "536185", + "text": "multiple morphologic abnormalities of the sperm flagellum" + }, + { + "baseId": "536185", + "text": "dysplasia of the mitochondrial sheath" + }, + { + "baseId": "536185", + "text": "asthenozoospermia" + }, + { + "baseId": "536236|620735", + "text": "TTC21B-Related Disorders" + }, + { + "baseId": "536352", + "text": "ROR2-Related Disorders" + }, + { + "baseId": "536834", + "text": "GRIN2B-Related Disorder" + }, + { + "baseId": "537303|556459|919788|961430|961433|964749", + "text": "Optic atrophy 12" + }, + { + "baseId": "537654", + "text": "Suxamethonium response - slow metabolism" + }, + { + "baseId": "537662|537663|537664|537665|614692|614693", + "text": "Keipert syndrome" + }, + { + "baseId": "538327|578378|906220|906221|906222|906223|906224|906225|906226|906227|906228|906229", + "text": "Rokitansky Kuster Hauser syndrome" + }, + { + "baseId": "538391|590732", + "text": "Fulminant hepatic failure" + }, + { + "baseId": "538391|538392|590732|680031|680032|970558", + "text": "Infantile liver failure syndrome 3" + }, + { + "baseId": "538603", + "text": "lovastatin response - Efficacy" + }, + { + "baseId": "538604", + "text": "sunitinib response - Toxicity/ADR" + }, + { + "baseId": "538616", + "text": "Parkinsonism-dystonia, infantile, 2" + }, + { + "baseId": "538617|538618|538619|538620", + "text": "Mitochondrial complex 1 deficiency, nuclear type 32" + }, + { + "baseId": "538627|623665|623666|623667|919022|970829", + "text": "Coffin-Siris syndrome 10" + }, + { + "baseId": "538627|623665|623666|623667", + "text": "Mild facial and digital morphological abnormalities" + }, + { + "baseId": "538927|615334|615335", + "text": "Impaired ADP-induced platelet aggregation" + }, + { + "baseId": "538933|538934|654330", + "text": "Non-syndromic male infertility due to sperm motility disorder" + }, + { + "baseId": "538933|538934|609187|615983|615984|615985|615986|800342|800343", + "text": "Male infertility with teratozoospermia due to single gene mutation" + }, + { + "baseId": "538954", + "text": "Fasting plasma glucose level quantitative trait locus 1" + }, + { + "baseId": "538975|905825|905826|905827|905828", + "text": "Fanconi renotubular syndrome 1" + }, + { + "baseId": "538996", + "text": "Acetyl-CoA acetyltransferase-2 deficiency" + }, + { + "baseId": "539044", + "text": "POLE Exonuclease Domain Mutation" + }, + { + "baseId": "539116|539117|539118|539119|621023|789341|789342|789343", + "text": "Periventricular nodular heterotopia" + }, + { + "baseId": "539117|539118|539119|789341|789342|789343|918530|918978|977217", + "text": "Periventricular nodular heterotopia 9" + }, + { + "baseId": "539127", + "text": "Neuromotor delay" + }, + { + "baseId": "539144", + "text": "Kaposiform hemangioendothelioma" + }, + { + "baseId": "539144", + "text": "Lobular capillary hemangioma" + }, + { + "baseId": "539144", + "text": "Congenital tufted angioma" + }, + { + "baseId": "539159", + "text": "Hemolytic-uremic syndrome" + }, + { + "baseId": "539160", + "text": "Lobular capillary hemangiomas" + }, + { + "baseId": "539162|742567|980853", + "text": "Congenital anomalies of kidney and urinary tract 3" + }, + { + "baseId": "539187", + "text": "RTEL1-related Disorders" + }, + { + "baseId": "539431", + "text": "SLC9A7-related neurodevelopmental disorder" + }, + { + "baseId": "539431", + "text": "Intellectual developmental disorder, X-linked 108" + }, + { + "baseId": "539434", + "text": "Glaucoma 1, open angle, B" + }, + { + "baseId": "539437|539438|539439|539477", + "text": "Proteasome-associated autoinflammatory syndrome 3" + }, + { + "baseId": "539475|539476|634822", + "text": "PROTEASOME-ASSOCIATED AUTOINFLAMMATORY SYNDROME 1, DIGENIC" + }, + { + "baseId": "539960|539961|539962", + "text": "Extra oral halitosis" + }, + { + "baseId": "539960|539961|539962|576310", + "text": "Extraoral halitosis due to methanethiol oxidase deficiency" + }, + { + "baseId": "539967|977164|977313|977314|977316", + "text": "Decreased antibody level in blood" + }, + { + "baseId": "539978", + "text": "Poor motor coordination" + }, + { + "baseId": "540441", + "text": "Spinal muscular atrophy, facioscapulohumeral type" + }, + { + "baseId": "540443", + "text": "Autosomal recessive distal hereditary motor neuropathy" + }, + { + "baseId": "540459|610399|610400|610402|610403", + "text": "Myasthenic syndrome, congenital, 25, presynaptic" + }, + { + "baseId": "540570|540571", + "text": "Pontocerebellar hypoplasia, type 1d" + }, + { + "baseId": "540570", + "text": "Cerebral atrophy" + }, + { + "baseId": "540572|540573|540574|540575|540576|975663|980320", + "text": "Polycystic kidney disease 6 with or without polycystic liver disease" + }, + { + "baseId": "540580|540581", + "text": "Bone marrow failure syndrome 5" + }, + { + "baseId": "540582", + "text": "Phocomelia" + }, + { + "baseId": "540582", + "text": "Bilateral cleft lip and palate" + }, + { + "baseId": "540583|540584|540585|540586|540587|798630", + "text": "Ciliary dyskinesia, primary, 38" + }, + { + "baseId": "546178", + "text": "KCNJ11-Related Disorders" + }, + { + "baseId": "549007", + "text": "LAMA3-Related Disorders" + }, + { + "baseId": "549494|590364", + "text": "1q24q25 microdeletion syndrome" + }, + { + "baseId": "549495|549496|980402", + "text": "Osteogenesis imperfecta, type 19" + }, + { + "baseId": "550117|970789", + "text": "Epilepsy, familial adult myoclonic, 7" + }, + { + "baseId": "550118", + "text": "Epilepsy, familial adult myoclonic, 6" + }, + { + "baseId": "550129|550226|818753|818754|818755|818756", + "text": "Mandibular prognathia" + }, + { + "baseId": "550129|550226", + "text": "Narrow nasal bridge" + }, + { + "baseId": "550131", + "text": "Short philtrum" + }, + { + "baseId": "550141|550142", + "text": "Combined oxidative phosphorylation deficiency 41" + }, + { + "baseId": "550143|550144|550146|853057|853058", + "text": "Combined oxidative phosphorylation deficiency 40" + }, + { + "baseId": "550147", + "text": "Combined oxidative phosphorylation deficiency 42" + }, + { + "baseId": "550171|550172", + "text": "Neurodevelopmental disorder with spasticity and poor growth" + }, + { + "baseId": "550173", + "text": "Inflammatory bowel disease 29" + }, + { + "baseId": "550206", + "text": "Ovarian dysgenesis 6" + }, + { + "baseId": "550223|550224", + "text": "LOW DENSITY LIPOPROTEIN CHOLESTEROL LEVEL QUANTITATIVE TRAIT LOCUS 8" + }, + { + "baseId": "550227|553415", + "text": "Abnormality of esophagus physiology" + }, + { + "baseId": "550229", + "text": "overriding digits" + }, + { + "baseId": "550229", + "text": "clino-symphalangism" + }, + { + "baseId": "550229", + "text": "Osteochondrodysplasia, brachydactyly, and overlapping malformed digits" + }, + { + "baseId": "550241|550242|970660", + "text": "Peeling skin syndrome 6" + }, + { + "baseId": "550298", + "text": "Syndromic hydrocephalus due to diffuse villous hyperplasia of choroid plexus" + }, + { + "baseId": "550305|550306|550307|550308|550309|550310", + "text": "Congenital malrotation of intestine" + }, + { + "baseId": "550314", + "text": "Atrial fibrillation, familial, 1" + }, + { + "baseId": "550317|550318|550319", + "text": "Moyamoya disease 1" + }, + { + "baseId": "550321|550322|550323|550324|550325|550326|626460|677962|792598|798509|816504|858763|906197|906199|963522|963523|964203|964813|964814|965214|970746|972528|976646", + "text": "Intellectual developmental disorder with dysmorphic facies and behavioral abnormalities" + }, + { + "baseId": "550327|550328|858752", + "text": "Neurodevelopmental disorder with epilepsy and hypoplasia of the corpus callosum" + }, + { + "baseId": "550329|550330|550331|550332|550333|590379|590380|791423|964862|964992|971002|974523", + "text": "Neurodevelopmental disorder with regression, abnormal movements, loss of speech, and seizures" + }, + { + "baseId": "550357", + "text": "ITPR1-associated cerebellar ataxia spectrum disorder" + }, + { + "baseId": "550366", + "text": "SCN8A-related epileptic disorder" + }, + { + "baseId": "550565", + "text": "Spermatogenic failure 29" + }, + { + "baseId": "550616|962974|962975", + "text": "Arthrogryposis multiplex congenita 5" + }, + { + "baseId": "550672", + "text": "Klatskin tumor" + }, + { + "baseId": "550690", + "text": "Carcinoma of head of pancreas" + }, + { + "baseId": "550879", + "text": "Heritable thoracic aortic disease without juvenile polyposis and hereditary hemorrhagic telangiectasia" + }, + { + "baseId": "550884", + "text": "X-linked congenital hemolytic anemia" + }, + { + "baseId": "550886|976649", + "text": "Intellectual disability, autosomal recessive 63" + }, + { + "baseId": "550890|550891|550892|550893|550894|798683|798684|919553|964418|964863|976704|983659", + "text": "Intellectual developmental disorder with speech delay, dysmorphic facies, and t-cell abnormalities" + }, + { + "baseId": "551234|551235", + "text": "Mental retardation, autosomal recessive 64" + }, + { + "baseId": "551247|551248|551249|551250", + "text": "Neurodevelopmental disorder with seizures and speech and walking impairment" + }, + { + "baseId": "551251|551252|551253", + "text": "Microcephaly, growth restriction, and increased sister chromatid exchange 2" + }, + { + "baseId": "551265", + "text": "Deafness, autosomal recessive 26, modifier of" + }, + { + "baseId": "551266|789260|861054", + "text": "Epilepsy, familial adult myoclonic, 1" + }, + { + "baseId": "551271|551272", + "text": "Generalized hypertrichosis" + }, + { + "baseId": "551271|551272", + "text": "Gingival overgrowth" + }, + { + "baseId": "551271|551272|919376|919377", + "text": "Facial dysmorphism, hypertrichosis, epilepsy, intellectual/developmental delay, and gingival overgrowth syndrome" + }, + { + "baseId": "551354|551355", + "text": "Osteopetrosis, autosomal dominant 3" + }, + { + "baseId": "551402", + "text": "Sensory axonal neuropathy" + }, + { + "baseId": "551416|788851|818759|818760|818761|818762|818763|818764|818767|818768|818769|818770|818771|818772|818773|818774|818775|818776|818777|818778|818779|818780|818787|818788|818789|818790|818791|818792|818793|818794|818795|818796|822288", + "text": "Cleft lip with or without cleft palate" + }, + { + "baseId": "551431|624832|624833", + "text": "Coronal craniosynostosis" + }, + { + "baseId": "551445|610695|610896|610898|801074|918497|964792", + "text": "Lactic acidosis" + }, + { + "baseId": "551448|551458", + "text": "Aortic valve disease 3" + }, + { + "baseId": "551484", + "text": "Spermatogenic failure 30" + }, + { + "baseId": "551500|551501|551502|611343|611344|798703", + "text": "Spermatogenic failure 31" + }, + { + "baseId": "551675|551676|551677|551678|551679|614525|804880|804881|964142", + "text": "Intellectual disability, autosomal recessive 65" + }, + { + "baseId": "551692", + "text": "Primary generalized epilepsy" + }, + { + "baseId": "551693", + "text": "pharmacoresistant multifocal epilepsy" + }, + { + "baseId": "551696", + "text": "intractable epilepsy" + }, + { + "baseId": "551707", + "text": "Chronic adenoiditis" + }, + { + "baseId": "551731|971587", + "text": "Biventricular noncompaction cardiomyopathy" + }, + { + "baseId": "551734", + "text": "Dilated left ventricle" + }, + { + "baseId": "551738|857698", + "text": "Complex febrile seizures" + }, + { + "baseId": "551740", + "text": "developmental delay with absent seizures" + }, + { + "baseId": "551750", + "text": "Intractable status epilepticus" + }, + { + "baseId": "551755", + "text": "KCNH1-related phenotype" + }, + { + "baseId": "551956", + "text": "Hyaline body myopathy" + }, + { + "baseId": "551990", + "text": "Encephalitis/encephalopathy, mild, with reversible myelin vacuolization" + }, + { + "baseId": "551991", + "text": "Spermatogenic failure 32" + }, + { + "baseId": "552028", + "text": "Small cell carcinoma of the ovary, hypercalcemic type" + }, + { + "baseId": "552180", + "text": "Epilepsy, idiopathic generalized 7" + }, + { + "baseId": "552184|677192|677193|677194|677195|677197|964871|964872|983564", + "text": "Developmental and epileptic encephalopathy, 80" + }, + { + "baseId": "552226|576314", + "text": "Curly hair, ankyloblepharon, nail dysplasia syndrome" + }, + { + "baseId": "552249|578588|626292|626293", + "text": "FLNA related disorders" + }, + { + "baseId": "552270|552271|552272|589847", + "text": "Immunodeficiency 57" + }, + { + "baseId": "552300|552301|798477|861667|903696", + "text": "Bone marrow failure syndrome 4" + }, + { + "baseId": "552302", + "text": "Friedreich ataxia with retained reflexes" + }, + { + "baseId": "552305|552306|552307|552308|552309|552310|552311|622299|798454|798455|861608|861609|921195|921526|971330|971331|984047|984048", + "text": "Autosomal recessive cerebellar ataxia-saccadic intrusion syndrome" + }, + { + "baseId": "552351|552352|552353|970542", + "text": "Polydactyly, postaxial, type A8" + }, + { + "baseId": "552354", + "text": "Liddle syndrome 3" + }, + { + "baseId": "552399", + "text": "Hypoxic Ischemic Encephalopathy" + }, + { + "baseId": "552401|552406|552407", + "text": "Nonsyndromic hearing loss" + }, + { + "baseId": "552409", + "text": "Low renin, low aldosterone hypertension" + }, + { + "baseId": "553119|553120|553121", + "text": "Neurodevelopmental disorder with absent language and variable seizures" + }, + { + "baseId": "553256|553257|553274", + "text": "Autosomal recessive sensorineural hearing loss" + }, + { + "baseId": "553303", + "text": "Wide anterior fontanel" + }, + { + "baseId": "553304", + "text": "Progressive macrocephaly" + }, + { + "baseId": "553305", + "text": "Turricephaly" + }, + { + "baseId": "553306", + "text": "Oxycephaly" + }, + { + "baseId": "553351", + "text": "Chronic colitis" + }, + { + "baseId": "553354|967228", + "text": "Low bone mineral density" + }, + { + "baseId": "553368|553369|553370|553371|980959", + "text": "Trichohepatoneurodevelopmental syndrome" + }, + { + "baseId": "553368|553369|553370|553371", + "text": "Global developmental delay with dysmorphic features, liver dysfunction, pruritus, and woolly hair" + }, + { + "baseId": "556776|614205|627336|980442", + "text": "Systemic lupus erythematosus 9" + }, + { + "baseId": "557027|558481|622852", + "text": "recessive ARS-related multisystem disease" + }, + { + "baseId": "557659", + "text": "Acute encephalopathy" + }, + { + "baseId": "562130", + "text": "Acute promyelocytic leukemia" + }, + { + "baseId": "568095|961876", + "text": "Glycogen storage disease type IXc" + }, + { + "baseId": "570972", + "text": "IGHMBP2-related neuronopathy" + }, + { + "baseId": "575484", + "text": "MTOR-related megalencephaly and pigmentary mosaicism in skin" + }, + { + "baseId": "575486", + "text": "PRELP-related osteosclerosis" + }, + { + "baseId": "575492", + "text": "TRIM8-related epileptic encephalopathy" + }, + { + "baseId": "575496", + "text": "Motor neuropathy" + }, + { + "baseId": "575503", + "text": "ACOX1-related condition" + }, + { + "baseId": "575503", + "text": "Mitchell syndrome" + }, + { + "baseId": "576071|623373|623374|623375|625775|789381", + "text": "Microcephaly, facial dysmorphism, renal agenesis, and ambiguous genitalia syndrome" + }, + { + "baseId": "576097", + "text": "Plasma fibronectin deficiency" + }, + { + "baseId": "576130", + "text": "Dystonia, primary cervical" + }, + { + "baseId": "576131", + "text": "NOTCH1-Related Disorders" + }, + { + "baseId": "576141|789704|789705|789706", + "text": "PU.1-mutated agammaglobulinemia" + }, + { + "baseId": "576177", + "text": "MYH2-related myopathy" + }, + { + "baseId": "576196", + "text": "HUWE1-Related Disorder" + }, + { + "baseId": "576199", + "text": "Mitochondrial DNA-Associated Leigh Syndrome and NARP" + }, + { + "baseId": "576254", + "text": "primray hypomagnesemia with secondary hypocalcemia" + }, + { + "baseId": "576301|950239|980508|980562", + "text": "Usher syndrome, type 4" + }, + { + "baseId": "576302|576303|576304|576305|576306", + "text": "Glycosylphosphatidylinositol biosynthesis defect 18" + }, + { + "baseId": "576318|576319|676912|980942", + "text": "Deafness, autosomal recessive 111" + }, + { + "baseId": "576328", + "text": "Clinodactyly of the 4th toe" + }, + { + "baseId": "576332|615425|615428|615632|615633", + "text": "Storage pool disease of platelets" + }, + { + "baseId": "576334", + "text": "Familial isolated hyperparathyroidism" + }, + { + "baseId": "576339|966340|966341", + "text": "Isolated anophthalmia-microphthalmia syndrome" + }, + { + "baseId": "576340", + "text": "Presynaptic congenital myasthenic syndrome" + }, + { + "baseId": "576359", + "text": "Intellectual developmental disorder with hypertelorism and distinctive facies" + }, + { + "baseId": "576379|576380|576381", + "text": "Spindle cell sarcoma" + }, + { + "baseId": "577751|906322", + "text": "Cerebral autosomal dominant arteriopathy with subcortical infarcts and leukoencephalopathy" + }, + { + "baseId": "577996|577998|577999|578000|578001", + "text": "Lissencephaly with decussation defect" + }, + { + "baseId": "577996|577997|577998|577999|578000|578001|816439|918636|918637|918638|918639|920149|970687|970688", + "text": "Lissencephaly 9 with complex brainstem malformation" + }, + { + "baseId": "578014|578015", + "text": "Abnormal lactate dehydrogenase activity" + }, + { + "baseId": "578014|578015|861066", + "text": "Lactic aciduria due to d-lactic acid" + }, + { + "baseId": "578016|578017|578018|578019", + "text": "Spermatogenic failure 34" + }, + { + "baseId": "578025|578314|920130", + "text": "Warburg-Cinotti syndrome" + }, + { + "baseId": "578026|679688", + "text": "Unilateral renal agenesis" + }, + { + "baseId": "578026|858767|971020", + "text": "Abnormality of finger" + }, + { + "baseId": "578026|920542", + "text": "Coarse facial features" + }, + { + "baseId": "578033|578034|615903", + "text": "Hennekam lymphangiectasia-lymphedema syndrome 3" + }, + { + "baseId": "578310|578311|578312|590647", + "text": "Squalene synthase deficiency" + }, + { + "baseId": "578323", + "text": "Spondyloepimetaphyseal dysplasia, Krakow type" + }, + { + "baseId": "578324|578325", + "text": "Isolated growth hormone deficiency, type 5" + }, + { + "baseId": "578327|578328|798646|964371|970946", + "text": "Intellectual developmental disorder with macrocephaly, seizures, and speech delay" + }, + { + "baseId": "578376", + "text": "Reduced muscle fiber perlecan" + }, + { + "baseId": "578386|578387", + "text": "Nonpersistence of intestinal lactase" + }, + { + "baseId": "578393", + "text": "CHRNA1-Related Congenital Myasthenic Syndrome" + }, + { + "baseId": "578412", + "text": "ATR-X-related syndrome" + }, + { + "baseId": "578415", + "text": "3-Methylglutaconic aciduria" + }, + { + "baseId": "578479", + "text": "Anti-SEMA4D Monoclonal Antibody VX15/2503" + }, + { + "baseId": "578642", + "text": "Retinitis pigmentosa 83" + }, + { + "baseId": "578643|578644|578645|578646|816356|975869", + "text": "Cardiac, facial, and digital anomalies with developmental delay" + }, + { + "baseId": "578659|578664|578665|622714", + "text": "CONTRACTURES, PTERYGIA, AND SPONDYLOCARPOTARSAL FUSION SYNDROME 1B" + }, + { + "baseId": "580923|788952", + "text": "X-linked MED12-related disorder" + }, + { + "baseId": "581201|581202|581203", + "text": "Cortical dysplasia, complex, with other brain malformations 9" + }, + { + "baseId": "581207", + "text": "Atypical chronic myeloid leukemia" + }, + { + "baseId": "581208", + "text": "Chronic myelomonocytic leukemia" + }, + { + "baseId": "581213|964876|970143", + "text": "Spinocerebellar ataxia 48" + }, + { + "baseId": "581229", + "text": "TCF20-related condition" + }, + { + "baseId": "581236|581237|581238|581828|581835|581836|581837|581839|581840|581841|581842|590438", + "text": "Abnormal aortic valve physiology" + }, + { + "baseId": "581239|581240|581241|581242|581243|581244|590640|590641|789964|792717|798472|858541", + "text": "Neurodegeneration, childhood-onset, stress-induced, with variable ataxia and seizures" + }, + { + "baseId": "581254|581255|581256|581257", + "text": "Nephrotic syndrome, type 17" + }, + { + "baseId": "581258|581259|581260", + "text": "Nephrotic syndrome, type 18" + }, + { + "baseId": "581261|581262", + "text": "Nephrotic syndrome, type 19" + }, + { + "baseId": "581265|581266|581267", + "text": "Diarrhea 10, protein-losing enteropathy type" + }, + { + "baseId": "581268|798649", + "text": "Microcephaly 24, primary, autosomal recessive" + }, + { + "baseId": "581270|581271|581272|677961", + "text": "Periventricular nodular heterotopia 8" + }, + { + "baseId": "581700|581701", + "text": "Orthostatic hypotension 2" + }, + { + "baseId": "581702|581703|581704|581705|581706|581707|679885|679886|679887|921213|980331", + "text": "Hyperparathyroidism, transient neonatal" + }, + { + "baseId": "581718", + "text": "X-linked external auditory canal atresia-dilated internal auditory canal-facial dysmorphism syndrome" + }, + { + "baseId": "581719|581720|581721", + "text": "Cardiomyopathy, dilated, 2c" + }, + { + "baseId": "581723", + "text": "Ovarian dysgenesis 8" + }, + { + "baseId": "581810|581811|581812|581813|581814|581815|581816|581817|581818|581819|611667|679216|679217|679218|679219|679220|679221|679222|679223|679224|679225|679226|679227|679228|679229|679230|679231|679232|679233|679234|679235|679236|679237|679238|970059", + "text": "Capillary malformation-arteriovenous malformation 2" + }, + { + "baseId": "581847", + "text": "MUSCULAR DYSTROPHY, DUCHENNE TYPE" + }, + { + "baseId": "581847", + "text": " DMD" + }, + { + "baseId": "581849|589983|589984|590019|590020", + "text": "Hereditary lymphedema" + }, + { + "baseId": "581871|621042|622035|624879", + "text": "Deafness, autosomal dominant 76" + }, + { + "baseId": "581871", + "text": "Autosomal dominant nonsyndromic hearing impairment" + }, + { + "baseId": "581884|976734", + "text": "Myasthenic syndrome, congenital, 23, presynaptic" + }, + { + "baseId": "581885", + "text": "Immunodeficiency 15a" + }, + { + "baseId": "581886|581887|581888|581889|965447", + "text": "Developmental and epileptic encephalopathy, 68" + }, + { + "baseId": "581890|581891|581892|581952|581953|581954|581955|590153|590154|590439", + "text": "Abnormal mitral valve physiology" + }, + { + "baseId": "581923|581924|581925|581927|714580", + "text": "Myasthenic syndrome, congenital, 24, presynaptic" + }, + { + "baseId": "583092|798932|798942|798943|798944|798945|798948", + "text": "Developmental and epileptic encephalopathy, 84" + }, + { + "baseId": "583102", + "text": "ELN-related disorder" + }, + { + "baseId": "583111", + "text": "ABCC8-related disorder" + }, + { + "baseId": "583171", + "text": "Polydactyly, postaxial, type A9" + }, + { + "baseId": "583171", + "text": "Postaxial polydactyly type A" + }, + { + "baseId": "583202|858669|858670", + "text": "Nizon-Isidor syndrome" + }, + { + "baseId": "584608|961757", + "text": "Long chain acyl-CoA dehydrogenase deficiency" + }, + { + "baseId": "585229", + "text": "OSTEOPOIKILOSIS WITH OR WITHOUT MELORHEOSTOSIS" + }, + { + "baseId": "586179|620218|620219|620220|620221|620222|620223", + "text": "SYNE1-Related Disorders" + }, + { + "baseId": "588259|905844", + "text": "Deafness, autosomal recessive 93" + }, + { + "baseId": "589806", + "text": "MAPK8IP3-related disorder" + }, + { + "baseId": "589806|620947|620949|620950|620951|791528|794181|794182|794183|794184|816482|904941|904942|920107|920108|920367", + "text": "Neurodevelopmental disorder with or without variable brain abnormalities" + }, + { + "baseId": "589806|620947|620949|620950|620951|791528|794181|794182|794183|794184|816482|904941|904942|920107|920108|920367", + "text": " NEDBA" + }, + { + "baseId": "589807|589816", + "text": "TAX1BP3-related arrhythmogenic right ventricular cardiomyopathy" + }, + { + "baseId": "589808|589809", + "text": "TMEM94-related condition" + }, + { + "baseId": "589808|589809|609070|609071|609074|903624", + "text": "Intellectual developmental disorder with cardiac defects and dysmorphic facies" + }, + { + "baseId": "589811", + "text": "SLC25A42-related mitochondrial encephalomyopathy" + }, + { + "baseId": "589814", + "text": "AIFM1-related hypomyelination with spondylometaphyseal dysplasia" + }, + { + "baseId": "589843", + "text": "CDK8-kinase module-associated disorder" + }, + { + "baseId": "590021|621032", + "text": "Cephalocele" + }, + { + "baseId": "590038", + "text": "Protruding tongue" + }, + { + "baseId": "590038|590082", + "text": "Severe T-cell immunodeficiency" + }, + { + "baseId": "590077|590078", + "text": "Respiratory failure requiring assisted ventilation" + }, + { + "baseId": "590082", + "text": "Aplasia of the thymus" + }, + { + "baseId": "590093", + "text": "Cortical visual impairment" + }, + { + "baseId": "590099", + "text": "Ectopic ossification" + }, + { + "baseId": "590099", + "text": "Myositis" + }, + { + "baseId": "590117", + "text": "Deafness, autosomal recessive 112" + }, + { + "baseId": "590120", + "text": "INDIAN BLOOD GROUP SYSTEM POLYMORPHISM" + }, + { + "baseId": "590363", + "text": "Spondyloepiphyseal dysplasia MIR140 type Nishimura" + }, + { + "baseId": "590363", + "text": "Spondyloepiphyseal dysplasia, nishimura type" + }, + { + "baseId": "590365|590366|590369", + "text": "Silver Russell Syndrome-related disorder" + }, + { + "baseId": "590367|920539|920540", + "text": "Chromosome 17p13.3, centromeric, duplication syndrome" + }, + { + "baseId": "590370|613930|818576|961895", + "text": "Chromosome 22q11.2 deletion syndrome, distal" + }, + { + "baseId": "590371|590372|590373|590374|590375|590376", + "text": "Central centrifugal cicatricial alopecia" + }, + { + "baseId": "590377|590378", + "text": "Granulocytopenia with immunoglobulin abnormality" + }, + { + "baseId": "590432|590433|590434|590435", + "text": "Ciliary dyskinesia, primary, 39" + }, + { + "baseId": "590456", + "text": "Orofaciodigital syndrome IX" + }, + { + "baseId": "590464|590465", + "text": "Arthrogryposis, cleft palate, craniosynostosis, and impaired intellectual development" + }, + { + "baseId": "590475|590476|590477|590478|590479", + "text": "Epidermodysplasia verruciformis, susceptibility to, 3" + }, + { + "baseId": "590482|590483|841957", + "text": "Global developmental delay - lung cysts - overgrowth - Wilms tumor syndrome" + }, + { + "baseId": "590518", + "text": "Knee dislocation" + }, + { + "baseId": "590518", + "text": "Limited knee flexion/extension" + }, + { + "baseId": "590518", + "text": "Patellar hypoplasia" + }, + { + "baseId": "590545", + "text": "Interphalangeal joint contracture of finger" + }, + { + "baseId": "590545", + "text": "Increased number of skin folds" + }, + { + "baseId": "590545", + "text": "Emphysema" + }, + { + "baseId": "590563", + "text": "ACTL6B-related neurodevelopmental disorder" + }, + { + "baseId": "590594|590595|590596", + "text": "Hypotrichosis 14" + }, + { + "baseId": "590597|590598|822315|822316|822317|822318|822319|970507|970512", + "text": "Alopecia-mental retardation syndrome 4" + }, + { + "baseId": "590599|590600|590601", + "text": "Mirror movements 4" + }, + { + "baseId": "590634|590635|590636", + "text": "Severe combined immunodeficiency due to CD70 deficiency" + }, + { + "baseId": "590638|590639", + "text": "Pontocerebellar hypoplasia, type 12" + }, + { + "baseId": "590642|613398", + "text": "Lower Urinary Tract Obstruction" + }, + { + "baseId": "590642|613398", + "text": "Lower urinary tract obstruction, congenital" + }, + { + "baseId": "590666|590667|590668|590669|678076|919818|919819|919820|964918|966783", + "text": "Mega-corpus-callosum syndrome with cerebellar hypoplasia and cortical malformations" + }, + { + "baseId": "590714|590715", + "text": "Fibrosis, neurodegeneration, and cerebral angiomatosis" + }, + { + "baseId": "590716|590717|590718|966718|966719", + "text": "Aplasia/Hypoplasia of the cerebellum" + }, + { + "baseId": "590716", + "text": "Motor polyneuropathy" + }, + { + "baseId": "590737|590740", + "text": "PISD-related mitochondrial disease" + }, + { + "baseId": "590737|590740|682217|861683", + "text": "Liberfarb syndrome" + }, + { + "baseId": "590738|590739", + "text": "Polydactyly, postaxial, type a10" + }, + { + "baseId": "590738|590739", + "text": "Autosomal recessive nonsyndromic postaxial polydactyly" + }, + { + "baseId": "590745", + "text": "Microcephaly, cataracts, impaired intellectual development, and dystonia with abnormal striatum" + }, + { + "baseId": "590746", + "text": "Visual impairment and progressive phthisis bulbi" + }, + { + "baseId": "590747|590748|590749|590750|590751", + "text": "Hyper-IgE recurrent infection syndrome 3, autosomal recessive" + }, + { + "baseId": "590769|590770|590771|965893", + "text": "Wolf-Hirschhorn like syndrome" + }, + { + "baseId": "590869|619908|619909", + "text": "OCULOSKELETODENTAL SYNDROME" + }, + { + "baseId": "590985|590986", + "text": "Situs inversus" + }, + { + "baseId": "608807|608811|608812", + "text": "Microphthalmia-ankyloblepharon-intellectual disability syndrome" + }, + { + "baseId": "608837|976708", + "text": "Intellectual developmental disorder, autosomal recessive 67" + }, + { + "baseId": "608839|966682", + "text": "Infantile fibrosarcoma" + }, + { + "baseId": "608841", + "text": "Renal transitional cell carcinoma" + }, + { + "baseId": "608854", + "text": "Mucocutaneous ulceration, chronic" + }, + { + "baseId": "608857|608858|608859|970820", + "text": "Developmental and epileptic encephalopathy, 70" + }, + { + "baseId": "608866|972744|972745|972755", + "text": "Kilquist syndrome" + }, + { + "baseId": "608875", + "text": "Trigonocephaly-short stature-developmental delay syndrome" + }, + { + "baseId": "608922", + "text": "Pervasive developmental disorder" + }, + { + "baseId": "608930|608931", + "text": "Deficiency of carnitine acetyltransferase" + }, + { + "baseId": "608933|625993|625994|625996|625997|625998|916979|970521|970842", + "text": "O'Donnell-Luria-Rodan syndrome" + }, + { + "baseId": "608999|609000|609001|971114", + "text": "Intellectual developmental disorder, autosomal recessive 68" + }, + { + "baseId": "609006", + "text": "Autosomal dominant omodysplasia" + }, + { + "baseId": "609007", + "text": "Epidermodysplasia verruciformis, susceptibility to, 4" + }, + { + "baseId": "609020|676979|676980|676981|676982|964232|964819", + "text": "Developmental and epileptic encephalopathy, 78" + }, + { + "baseId": "609026", + "text": "Mitochondrial hepato-encephalopathy" + }, + { + "baseId": "609034", + "text": "myoglobinopathy" + }, + { + "baseId": "609036|609079", + "text": "Hyperostosis" + }, + { + "baseId": "609044|609045|609046|610696|918545|920124|980298", + "text": "Hypomagnesemia, seizures, and mental retardation 2" + }, + { + "baseId": "609068", + "text": "Diamond-Blackfan anemia 20" + }, + { + "baseId": "609069", + "text": "Diamond-Blackfan anemia 18" + }, + { + "baseId": "609075", + "text": "Diamond-Blackfan anemia 19" + }, + { + "baseId": "609078", + "text": "nonsyndromic sensorineural hearing loss" + }, + { + "baseId": "609092|609093|609094|609095|609096|609097|609098|609099|609100|679909|679910|679911|679912|679913|679914|679915|679916|679917|679918|679919|679920|679921|679922|679923|679924|679925", + "text": "Basal ganglia calcification, idiopathic, 7, autosomal recessive" + }, + { + "baseId": "609141|609142|858296|858300", + "text": "Spermatogenesis maturation arrest" + }, + { + "baseId": "609143", + "text": "Abnormal morphology of left ventricular trabeculae" + }, + { + "baseId": "609143", + "text": "Atrial flutter" + }, + { + "baseId": "609143", + "text": "Tachycardia" + }, + { + "baseId": "609149|918533", + "text": "Glioma" + }, + { + "baseId": "609153|609154|609155|609156|609157|966184", + "text": "Encephalopathy, progressive, early-onset, with brain edema and/or leukoencephalopathy, 2" + }, + { + "baseId": "609185", + "text": "Progressive cone degeneration" + }, + { + "baseId": "609186|610418", + "text": "Distal hereditary motor neuropathy associated with upper motor neuron signs" + }, + { + "baseId": "609187", + "text": "Sperm tail anomaly" + }, + { + "baseId": "609187|615983|615984|615985|615986", + "text": "Spermatogenic failure 38" + }, + { + "baseId": "609302|609303", + "text": "SPINOCEREBELLAR ATAXIA 47, EARLY-ONSET" + }, + { + "baseId": "609302|609303|609304|916823|961251|964155|972709|973017", + "text": "Spinocerebellar ataxia 47" + }, + { + "baseId": "610388|610389|610390|610391|610392|610393|861584|965738", + "text": "Global developmental delay with or without impaired intellectual development" + }, + { + "baseId": "610394|610395|610396", + "text": "Developmental and epileptic encephalopathy, 71" + }, + { + "baseId": "610409|610585|966157|966158", + "text": "Congenital titinopathy" + }, + { + "baseId": "610414", + "text": "IMMUNODEFICIENCY 33, MALE-RESTRICTED" + }, + { + "baseId": "610429", + "text": "ROSAH syndrome" + }, + { + "baseId": "610429", + "text": "Splenomegaly, cytopenia, and vision loss" + }, + { + "baseId": "610431|610432|610433", + "text": "Congenital disorder of glycosylation with defective fucosylation 2" + }, + { + "baseId": "610478", + "text": "Weakened expression of D antigen" + }, + { + "baseId": "610501", + "text": "Infantile cataract, skin abnormalities, glutamate excess, and impaired intellectual development" + }, + { + "baseId": "610512|610513|962971|962972", + "text": "Spermatogenic failure 35" + }, + { + "baseId": "610530|610531", + "text": "Aganglionosis, total intestinal" + }, + { + "baseId": "610586", + "text": "Primary progressive non fluent aphasia" + }, + { + "baseId": "610586|858706|858714", + "text": "Corticobasal syndrome" + }, + { + "baseId": "610591", + "text": "Abnormality of the outer ear" + }, + { + "baseId": "610591|613436", + "text": "Turnpenny-fry syndrome" + }, + { + "baseId": "610596|610597|610598", + "text": "Peritoneal mesothelioma" + }, + { + "baseId": "610614", + "text": "Primary Ciliary Dyskinesia (DNAH5-related)" + }, + { + "baseId": "610625", + "text": "POLYMICROGYRIA WITHOUT VASCULAR-TYPE EHLERS-DANLOS SYNDROME" + }, + { + "baseId": "610628|610629|610630|610631|610632|792602|792612|798580", + "text": "Intellectual developmental disorder with abnormal behavior, microcephaly, and short stature" + }, + { + "baseId": "610634", + "text": "Retinitis pigmentosa 85" + }, + { + "baseId": "610695|610896|610898", + "text": "Mitochondrial complex 3 deficiency, nuclear type 10" + }, + { + "baseId": "610993", + "text": "Microcephaly 25, primary, autosomal recessive" + }, + { + "baseId": "610994|610995|676994", + "text": "Oocyte maturation defect 6" + }, + { + "baseId": "610998", + "text": "Microcephaly, growth deficiency, seizures, and brain malformations" + }, + { + "baseId": "611003", + "text": "Galloway-Mowat syndrome" + }, + { + "baseId": "611004", + "text": "HOLOPROSENCEPHALY 12 WITH OR WITHOUT PANCREATIC AGENESIS" + }, + { + "baseId": "611341", + "text": "Galloway-Mowat syndrome 8" + }, + { + "baseId": "611366", + "text": "Episodic coma" + }, + { + "baseId": "611406|789352|789353|789355", + "text": "Intellectual developmental disorder with behavioral abnormalities and craniofacial dysmorphism with or without seizures" + }, + { + "baseId": "611606", + "text": "NAA15-related syndrome" + }, + { + "baseId": "611868|798966|798967|798969|798970|919758|964052|983558|983801", + "text": "Intellectual developmental disorder 61" + }, + { + "baseId": "611973", + "text": "Androgen deprivation therapy response" + }, + { + "baseId": "611998", + "text": "Undifferentiated pleomorphic sarcoma" + }, + { + "baseId": "612012", + "text": "Mixed Phenotype Acute Leukemia with t(v" + }, + { + "baseId": "612021", + "text": "Glioblastoma multiforme" + }, + { + "baseId": "612041|612042|612043|964715|964716", + "text": "Neurodevelopmental disorder with central and peripheral motor dysfunction" + }, + { + "baseId": "612044|612045|612046|612047|612048", + "text": "Cone-rod dystrophy and hearing loss 2" + }, + { + "baseId": "612105", + "text": "Hereditary renal cancer" + }, + { + "baseId": "612121|612200", + "text": "FLNA related lung disease" + }, + { + "baseId": "612202|855079|855080", + "text": "Holoprosencephaly 13, x-linked" + }, + { + "baseId": "612210|612211|612212|612213|612214|798658|919458|919459|920319|964395|965739|967279|975867", + "text": "Coffin-Siris syndrome 8" + }, + { + "baseId": "612215|612216|612217|612218|612219", + "text": "Short stature, amelogenesis imperfecta, and skeletal dysplasia with scoliosis" + }, + { + "baseId": "612222|612226|612227|612229|612230|861582|972797", + "text": "Neurodevelopmental disorder with coarse facies and mild distal skeletal abnormalities" + }, + { + "baseId": "612462", + "text": "Myoclonus, familial, 2" + }, + { + "baseId": "612463|612464|612465|612466|906271", + "text": "Brain small vessel disease 3" + }, + { + "baseId": "613175|861430|919931", + "text": "Spastic tetraplegia and axial hypotonia, progressive" + }, + { + "baseId": "613392|614438|614439|816342|980483|980484", + "text": "Asthma, nasal polyps, and aspirin intolerance" + }, + { + "baseId": "613437|613438|613439", + "text": "Spinocerebellar ataxia, autosomal recessive 27" + }, + { + "baseId": "613444|613445|613446|613448|613449|613450|613451|613452|613453", + "text": "Dyschromatosis universalis hereditaria 1" + }, + { + "baseId": "613484|613485", + "text": "Developmental and epileptic encephalopathy, 72" + }, + { + "baseId": "613491|613492", + "text": "Developmental and epileptic encephalopathy, 73" + }, + { + "baseId": "613511", + "text": "Combined oxidative phosphorylation deficiency 38" + }, + { + "baseId": "613515|613516|613517|613518", + "text": "Thiopurine response" + }, + { + "baseId": "613521", + "text": "Abnormality of the urinary system" + }, + { + "baseId": "613528|613529", + "text": "Intellectual developmental disorder, autosomal recessive 69" + }, + { + "baseId": "613534|801191|801221", + "text": "Abnormality of metabolism/homeostasis" + }, + { + "baseId": "613536|613536|613537|613537", + "text": "Sparse hair" + }, + { + "baseId": "613552", + "text": "Male infertility due to obstructive azoospermia" + }, + { + "baseId": "613613", + "text": "MYO16-associated developmental delay" + }, + { + "baseId": "613730|613731|613732|682209|682210", + "text": "Amelogenesis imperfecta, type 3c" + }, + { + "baseId": "613733|613734|613735", + "text": "Mental retardation, short stature, facial anomalies, and joint dislocations" + }, + { + "baseId": "613738|613739|613740", + "text": "Leukoencephalopathy, acute reversible, with increased urinary alpha-ketoglutarate" + }, + { + "baseId": "613762|613763|800922|964877|964878", + "text": "Spondyloepiphyseal dysplasia, kondo-fu type" + }, + { + "baseId": "613772", + "text": "Deafness, Y-linked 2" + }, + { + "baseId": "613773|613774|613775", + "text": "Fetal akinesia deformation sequence 4" + }, + { + "baseId": "613833", + "text": "GNAS-related disorder" + }, + { + "baseId": "613860", + "text": "Chromosome 10q26 deletion syndrome" + }, + { + "baseId": "613880|613881|613903|613981|613990|614058", + "text": "Chromosome 16p12.1 deletion syndrome, 520kb" + }, + { + "baseId": "613882|613884", + "text": "Chromosome 17p13.3, telomeric, duplication syndrome" + }, + { + "baseId": "613886|613887|613888|613889|613891|613892|613893|613894|613923|613926|613985|614111|624097|624098|624099|624100|969292", + "text": "Chromosome 22q11.2 microduplication syndrome" + }, + { + "baseId": "613904|613905", + "text": "Chromosome 16p11.2 deletion syndrome, 220 kb" + }, + { + "baseId": "613907|613908|613911|613912|613914", + "text": "Chromosome 16p11.2 duplication syndrome" + }, + { + "baseId": "613949", + "text": "Moyamoya disease 4 with short stature, hypergonadotropic hypogonadism, and facial dysmorphism" + }, + { + "baseId": "614005|614006|904210", + "text": "5p partial monosomy syndrome" + }, + { + "baseId": "614027", + "text": "Chromosome 16p13.3 duplication syndrome" + }, + { + "baseId": "614070|614071|614072|653991|962878", + "text": "Chromosome 1p36 deletion syndrome" + }, + { + "baseId": "614101", + "text": "Mental retardation 91, X-linked" + }, + { + "baseId": "614140|614141", + "text": "Congenital disorder of glycosylation, type ICC" + }, + { + "baseId": "614147|614148|977223", + "text": "Immunodeficiency 60" + }, + { + "baseId": "614149|614150", + "text": "Spondyloepimetaphyseal dysplasia with joint laxity, type 3" + }, + { + "baseId": "614156|614656|614657|614659|614660|614661|614662|794176|794177|794178|794179|794180", + "text": "Leukodystrophy, hypomyelinating, 18" + }, + { + "baseId": "614176|614176|614177", + "text": "Progressive bifocal chorioretinal atrophy" + }, + { + "baseId": "614273", + "text": "Age-related macular degeneration 13" + }, + { + "baseId": "614310|614524", + "text": "Thromboxane synthetase deficiency" + }, + { + "baseId": "614505", + "text": "Ectodermal dysplasia, anhidrotic, with immunodeficiency, osteopetrosis, and lymphedema" + }, + { + "baseId": "614518", + "text": "Immunodeficiency 61" + }, + { + "baseId": "614546|614547|614548", + "text": "Subcutaneous panniculitis-like T-cell lymphoma" + }, + { + "baseId": "614569|614570", + "text": "Intellectual developmental disorder, autosomal recessive 70" + }, + { + "baseId": "614619", + "text": "Deletion of long arm of chromosome 18" + }, + { + "baseId": "614654|614655", + "text": "Deafness, autosomal recessive 113" + }, + { + "baseId": "614666|614667|614668", + "text": "Global developmental delay, progressive ataxia, and elevated glutamine" + }, + { + "baseId": "615238", + "text": "Preaxial hand polydactyly" + }, + { + "baseId": "615270|615271|615272", + "text": "Cataract 48" + }, + { + "baseId": "615421", + "text": "Pulmonary embolism (disease)" + }, + { + "baseId": "615445|615446|615447|615448", + "text": "Prolonged prothrombin time" + }, + { + "baseId": "615447|620402", + "text": "F2-Related Disorders" + }, + { + "baseId": "615449|615450|615451|615452|615453|615454|615575|615585|615592|615605|615728|615729|615730|615754|615755", + "text": "Abnormal platelet aggregation" + }, + { + "baseId": "615606|615607", + "text": "Impaired thromboxane A2 agonist-induced platelet aggregation" + }, + { + "baseId": "615652", + "text": "Thrombotic stroke" + }, + { + "baseId": "615768|615769", + "text": "Congenital myopathy with reduced type 2 muscle fibers" + }, + { + "baseId": "615778|615779|615780", + "text": "Gonadal dysgenesis, dysmorphic facies, retinal dystrophy, and myopathy" + }, + { + "baseId": "615778|615779|615780", + "text": "Spermatogenic failure 36" + }, + { + "baseId": "615877", + "text": "Deafness, autosomal recessive 100" + }, + { + "baseId": "615897|615898|615899|615900|615902|798497", + "text": "Neurodevelopmental disorder with impaired speech and hyperkinetic movements" + }, + { + "baseId": "615906|615907|615908|615909|615910|615911|677048|677049|815990|920546", + "text": "Spastic paraplegia 80, autosomal dominant" + }, + { + "baseId": "615926|615927|615928|615929|615930", + "text": "Spermatogenic failure 37" + }, + { + "baseId": "615931|615932|615933", + "text": "Hydatidiform mole, recurrent, 3" + }, + { + "baseId": "615980|615981", + "text": "Hydatidiform mole, recurrent, 4" + }, + { + "baseId": "615987|615988|615989|615990|615991", + "text": "X-linked intellectual disability, Van Esch type" + }, + { + "baseId": "615987|615988|615989|615990|615991|798812", + "text": "VAN ESCH-O''''DRISCOLL SYNDROME" + }, + { + "baseId": "616002|616003|616004", + "text": "9q34 microduplication syndrome" + }, + { + "baseId": "616822|967178", + "text": "Arrhythmogenic right ventricular dysplasia, type 5" + }, + { + "baseId": "619849|805141|964745", + "text": "Myopathy, congenital, with diaphragmatic defects, respiratory insufficiency, and dysmorphic facies" + }, + { + "baseId": "619918|620007|620725", + "text": "PCSK9-Related Disorders" + }, + { + "baseId": "619922|620310", + "text": "C8orf37-Related Disorders" + }, + { + "baseId": "619944|620702", + "text": "COL11A1-Related Disorders" + }, + { + "baseId": "619958", + "text": "MPZ-Related Disorders" + }, + { + "baseId": "619990|620714", + "text": "HSPG2-Related Disorders" + }, + { + "baseId": "619991", + "text": "RAB3GAP2-Related Disorders" + }, + { + "baseId": "619996", + "text": "FH-Related Disorders" + }, + { + "baseId": "620011", + "text": "PGM1-Related Disorders" + }, + { + "baseId": "620012|620726", + "text": "LEPR-Related Disorders" + }, + { + "baseId": "620014|620015", + "text": "NEXN-Related Disorders" + }, + { + "baseId": "620035", + "text": "CACNB4-Related Disorders" + }, + { + "baseId": "620076", + "text": "POMC-Related Disorders" + }, + { + "baseId": "620089", + "text": "FSHR-Related Disorders" + }, + { + "baseId": "620116", + "text": "Congenital sucrose-isomaltase deficiency" + }, + { + "baseId": "620152|620153|620154", + "text": "FGA-Related Disorders" + }, + { + "baseId": "620159", + "text": "CYP4V2-Related Disorders" + }, + { + "baseId": "620172", + "text": "PDE6B-Related Disorders" + }, + { + "baseId": "620181", + "text": "TERT-Related Disorders" + }, + { + "baseId": "620189", + "text": "ANKH-Related Disorders" + }, + { + "baseId": "620214|620785", + "text": "ENPP1-Related Disorders" + }, + { + "baseId": "620228", + "text": "TULP1-Related Disorders" + }, + { + "baseId": "620242", + "text": "COL9A1-Related Disorders" + }, + { + "baseId": "620249", + "text": "IMPDH1-Related Disorders" + }, + { + "baseId": "620269", + "text": "HSPB1-Related Disorders" + }, + { + "baseId": "620280|961516", + "text": "COL1A2-Related Disorders" + }, + { + "baseId": "620316", + "text": "DFNB31-Related Disorders" + }, + { + "baseId": "620319|620320", + "text": "GLE1-Related Disorders" + }, + { + "baseId": "620329", + "text": "VCP-Related Disorders" + }, + { + "baseId": "620331|620332", + "text": "TPM2-Related Disorders" + }, + { + "baseId": "620336", + "text": "TMC1-Related Disorders" + }, + { + "baseId": "620366", + "text": "PCDH15-Related Disorders" + }, + { + "baseId": "620377|620378", + "text": "MMP13-Related Disorders" + }, + { + "baseId": "620398", + "text": "CSRP3-Related Disorders" + }, + { + "baseId": "620416|620417", + "text": "NDUFV1-Related Disorders" + }, + { + "baseId": "620455|620851", + "text": "SCNN1A-Related Disorders" + }, + { + "baseId": "620475", + "text": "EDNRB-Related Disorders" + }, + { + "baseId": "620480", + "text": "MYH6-Related Disorders" + }, + { + "baseId": "620488", + "text": "LTBP2-Related Disorders" + }, + { + "baseId": "620495", + "text": "TSHR-Related Disorders" + }, + { + "baseId": "620526", + "text": "MAP2K1-Related Disorders" + }, + { + "baseId": "620571", + "text": "SCO1-Related Disorders" + }, + { + "baseId": "620637", + "text": "RAX2-Related Disorders" + }, + { + "baseId": "620718|620719|620720", + "text": "SDCCAG8-Related Disorders" + }, + { + "baseId": "620794", + "text": "SLC17A5-Related Disorders" + }, + { + "baseId": "620829", + "text": "MFRP-related disorders" + }, + { + "baseId": "620833", + "text": "NDUFS3-Related Disorders" + }, + { + "baseId": "620916", + "text": "MKKS-Related Disorders" + }, + { + "baseId": "620927", + "text": "LARGE-related disorders" + }, + { + "baseId": "620933", + "text": "Spastic ataxia 9, autosomal recessive" + }, + { + "baseId": "620946|679339", + "text": "Aminoaciduria" + }, + { + "baseId": "621018|621023|621033", + "text": "Isolated unilateral hemispheric cerebellar hypoplasia" + }, + { + "baseId": "621019", + "text": "Syndrome with a Dandy-Walker malformation as major feature" + }, + { + "baseId": "621033", + "text": "Grade I preterm intraventricular hemorrhage" + }, + { + "baseId": "621884", + "text": "Ciliary dyskinesia, primary, 41" + }, + { + "baseId": "621892|621893|682169|682170", + "text": "NEURODEGENERATION, EARLY-ONSET, WITH CHOREOATHETOSIS AND MICROCYTIC ANEMIA" + }, + { + "baseId": "621892|621893|682169|682170", + "text": "Neurodegeneration, early-onset, with choreoathetoid movements and microcytic anemia" + }, + { + "baseId": "621899|621900", + "text": "Adrenal insufficiency" + }, + { + "baseId": "622023", + "text": "Intellectual developmental disorder with short stature and variable skeletal anomalies" + }, + { + "baseId": "622024|622025|622026|622027", + "text": "Diabetes" + }, + { + "baseId": "622029", + "text": "Ocular melanocytosis" + }, + { + "baseId": "622031", + "text": "Deafness, autosomal recessive 114" + }, + { + "baseId": "622041|622148|622207", + "text": "Suleiman-El-Hattab syndrome" + }, + { + "baseId": "622044|622045|963341|984052|984053|984057", + "text": "Cryptozoospermia" + }, + { + "baseId": "622046", + "text": "Early spermatogenesis maturation arrest" + }, + { + "baseId": "622081|622082", + "text": "Immunodeficiency 62" + }, + { + "baseId": "622129", + "text": "Paganini-Miozzo syndrome" + }, + { + "baseId": "622130|622131|622132", + "text": "Khan-Khan-Katsanis syndrome" + }, + { + "baseId": "622148", + "text": "Distinctive facial features" + }, + { + "baseId": "622207", + "text": "Happy demeanor" + }, + { + "baseId": "622215", + "text": "Bleeding disorder, platelet-type, 22" + }, + { + "baseId": "622275|622280|622282|622283|622284|622285|622286|622290|622297", + "text": "CYP2C19: uncertain function" + }, + { + "baseId": "622276|622281|622288|622291|622294", + "text": "CYP2C19: normal function" + }, + { + "baseId": "622304", + "text": "Encephalopathy, progressive, early-onset, with brain edema and/or leukoencephalopathy" + }, + { + "baseId": "622488", + "text": "Autosomal recessive sideroblastic anemia" + }, + { + "baseId": "622499", + "text": "CD99 Positive Neoplastic Cells Present" + }, + { + "baseId": "622716|622717|622718|622719|622720|858633|962057|963642|964296|970869|972720|980332", + "text": "Developmental delay with or without dysmorphic facies and autism" + }, + { + "baseId": "622726|622727|622728", + "text": "Uridine-cytidineuria" + }, + { + "baseId": "622738", + "text": "Hereditary factor XIII deficiency disease" + }, + { + "baseId": "622741", + "text": "Third degree atrioventricular block" + }, + { + "baseId": "622759", + "text": "Zimmermann-Laband syndrome with epileptic encephalopathy" + }, + { + "baseId": "622766|622767|622768|622769|622770", + "text": "Cerebellar, ocular, craniofacial, and genital syndrome" + }, + { + "baseId": "622849|961999", + "text": "Heterotaxy, visceral, 9, autosomal, with male infertility" + }, + { + "baseId": "622850|622851", + "text": "Dynein arm defect of respiratory motile cilia" + }, + { + "baseId": "622850", + "text": "Recurrent bronchitis" + }, + { + "baseId": "622851", + "text": "Bronchiectasis" + }, + { + "baseId": "622851", + "text": "Abnormal ciliary motility" + }, + { + "baseId": "622938|622939|622940|622941|622942|679879|679880|679881|679882|679883|679884|816516|816517|816518", + "text": "ACTL6B-related recessive epilepsy" + }, + { + "baseId": "622961|622962|622963|622964|622965", + "text": "Paragangliomas 6" + }, + { + "baseId": "622968", + "text": "Paragangliomas 7" + }, + { + "baseId": "622996", + "text": "Infantile nystagmus with foveal hypoplasia" + }, + { + "baseId": "622997", + "text": "Infantile osteopetrosis" + }, + { + "baseId": "622999", + "text": "Retinitis pigmentosa, juvenile" + }, + { + "baseId": "623001", + "text": "Galactokinase deficiency with cataracts" + }, + { + "baseId": "623004|623007", + "text": "Cavernous sinus meningioma" + }, + { + "baseId": "623009", + "text": "Oligodendroglioma, anaplastic" + }, + { + "baseId": "623010", + "text": "Adult spinal cord ependymoma" + }, + { + "baseId": "623011|623012", + "text": "Chordoma" + }, + { + "baseId": "623019", + "text": "Nanophthalmos 1" + }, + { + "baseId": "623022|623023|623024|623025|623026|623027|970808", + "text": "Generalized epilepsy with febrile seizures plus, type 10" + }, + { + "baseId": "623029|623030", + "text": "Pili torti-developmental delay-neurological abnormalities syndrome" + }, + { + "baseId": "623097", + "text": "buprenorphine response - Efficacy" + }, + { + "baseId": "623114", + "text": "1p13.3 deletion syndrome" + }, + { + "baseId": "623115|682370", + "text": "Epilepsy, familial adult myoclonic, 3" + }, + { + "baseId": "623119", + "text": "Doughnut lesions of skull, familial" + }, + { + "baseId": "623120|623121", + "text": "CALVARIAL DOUGHNUT LESIONS WITH BONE FRAGILITY AND SPONDYLOMETAPHYSEAL DYSPLASIA" + }, + { + "baseId": "623152|623153", + "text": "Ataxia telangiectasi" + }, + { + "baseId": "623154", + "text": "Xeroderma pigmentosum, group E, DDB-negative subtype" + }, + { + "baseId": "623166", + "text": "Crisponi/Cold-induced sweating syndrome" + }, + { + "baseId": "623225|623226|623227", + "text": "Neurodevelopmental disorder with microcephaly and structural brain anomalies" + }, + { + "baseId": "623603|967252", + "text": "Blepharophimosis" + }, + { + "baseId": "623610|623611", + "text": "Nephrotic syndrome, type 20" + }, + { + "baseId": "623612|623613|623614", + "text": "Noonan syndrome 11" + }, + { + "baseId": "623626|623627|623628|623629|623630", + "text": "Hypotonia, hypoventilation, impaired intellectual development, dysautonomia, epilepsy, and eye abnormalities" + }, + { + "baseId": "623644|623645|623646|623647", + "text": "Immunodeficiency 63 with lymphoproliferation and autoimmunity" + }, + { + "baseId": "623648|623649|623650|623651|777803|777804|790882|790883", + "text": "Neurodevelopmental disorder with seizures and nonepileptic hyperkinetic movements" + }, + { + "baseId": "623663", + "text": "Microlissencephaly" + }, + { + "baseId": "623676|623728|623765|623777", + "text": "Internal malformations" + }, + { + "baseId": "623685", + "text": "Kidney disease" + }, + { + "baseId": "623695|623696|623717|623721|623737|623770", + "text": "Growth abnormality" + }, + { + "baseId": "623758", + "text": "Arthrogryphosis" + }, + { + "baseId": "623775|623778", + "text": "Muscle dystrophy" + }, + { + "baseId": "623782|623783|802095|861284|967249", + "text": "Lower limb spasticity" + }, + { + "baseId": "623782|623783", + "text": "Neurodevelopmental disorder with ataxia, hypotonia, and microcephaly" + }, + { + "baseId": "624049", + "text": "SPTBN1-related neurodevelopmental disease" + }, + { + "baseId": "624051|624066", + "text": "GP130-deficient hyper-IgE syndrome" + }, + { + "baseId": "624056", + "text": "NBEA-related developmental delay and generalized epilepsy" + }, + { + "baseId": "624062", + "text": "LONP1-related condition" + }, + { + "baseId": "624076|624077|800762", + "text": "Neuropathy, hereditary motor and sensory, type VIc, with optic atrophy" + }, + { + "baseId": "624083|624084", + "text": "Intellectual developmental disorder, autosomal recessive 71" + }, + { + "baseId": "624101|624102|624103|624104|624105", + "text": "22q11.2 central deletion syndrome" + }, + { + "baseId": "624106|624107", + "text": "22q11.2 central duplication syndrome" + }, + { + "baseId": "624108|624109", + "text": "22q11.2 distal duplication syndrome" + }, + { + "baseId": "624839", + "text": "Reduced factor IX activity" + }, + { + "baseId": "624841|816385|816386|980500", + "text": "Pontocerebellar hypoplasia, hypotonia, and respiratory insufficiency syndrome, neonatal lethal" + }, + { + "baseId": "624881|625774", + "text": "Sclerocornea" + }, + { + "baseId": "624881|822308", + "text": "Microcornea" + }, + { + "baseId": "625455", + "text": "Neuropathy, hereditary motor and sensory, with deafness, mental retardation, and absent sensory large myelinated fibers" + }, + { + "baseId": "625774", + "text": "Congenital cornea plana" + }, + { + "baseId": "625778", + "text": "Ataxia with Dysarthria" + }, + { + "baseId": "625780", + "text": "Cholangiocarcinoma" + }, + { + "baseId": "625900|625901|625902|625903|625904|625905|625906|625907|625908|625909|625910|970254|970304|970305|970308|970309", + "text": "Sponastrime dysplasia" + }, + { + "baseId": "625907|625908|626374|626375", + "text": "TONSL-related condition" + }, + { + "baseId": "625907|625908|626374|626375|970306|970307", + "text": "Skeletal dysplaisia with extra-skeletal manifestations" + }, + { + "baseId": "625913|625914", + "text": "Leber congenital amaurosis 19" + }, + { + "baseId": "625980|794273", + "text": "Amelia, autosomal recessive" + }, + { + "baseId": "626053|626054", + "text": "Mitochondrial complex 4 deficiency, nuclear type 18" + }, + { + "baseId": "626239", + "text": "CAPN3-Related Disorders" + }, + { + "baseId": "626283", + "text": "Hereditary cerebral hemorrhage with amyloidosis" + }, + { + "baseId": "626351", + "text": "Asthma" + }, + { + "baseId": "626352|626353", + "text": "Hyper-ige recurrent infection syndrome 4, autosomal recessive" + }, + { + "baseId": "626369", + "text": "NSD2-related condition" + }, + { + "baseId": "626370", + "text": "WHSC1 (NSD2)-related condition" + }, + { + "baseId": "626371|626387", + "text": "SLC25A46-associated optic atrophy spectrum disorder" + }, + { + "baseId": "626378|626379", + "text": "SARS2-associated condition" + }, + { + "baseId": "626384", + "text": "ARX-associated condition" + }, + { + "baseId": "626396|626397|626398|626399|626400|626401|626402|626403|626404|626405|626406|626407|626408", + "text": "NK-cell enteropathy" + }, + { + "baseId": "626447|626449|626450", + "text": "Abnormality of the vertebral column" + }, + { + "baseId": "626449|626450", + "text": "Urethral stricture" + }, + { + "baseId": "630398", + "text": "Recessive Marfanoid Syndrome with Severe Herniation" + }, + { + "baseId": "636134", + "text": "GARS1-related neuropathies" + }, + { + "baseId": "642802", + "text": "Supratentorial primitive neuroectodermal tumor" + }, + { + "baseId": "643390|655011|655012|655013|655014|655015|655016|655017", + "text": "Congenital scoliosis" + }, + { + "baseId": "646406", + "text": "SCN4A-Related Disorders" + }, + { + "baseId": "653800|653801", + "text": "ERYTHROKERATODERMIA VARIABILIS ET PROGRESSIVA 6" + }, + { + "baseId": "653802", + "text": "Ichthyotic keratoderma, spasticity, hypomyelination, and dysmorphic facial features" + }, + { + "baseId": "653816", + "text": "Deafness, autosomal dominant 37" + }, + { + "baseId": "653817", + "text": "Ectodermal dysplasia 15, hypohidrotic/hair type" + }, + { + "baseId": "653823|798961|798962|798963|798965", + "text": "Neurodevelopmental disorder with hypotonia and autistic features with or without hyperkinetic movements" + }, + { + "baseId": "653824", + "text": "Dabrafenib response" + }, + { + "baseId": "653834|653835|653836|653837|653838|971013", + "text": "Immunodeficiency 64" + }, + { + "baseId": "653884", + "text": "Scrotal hypoplasia" + }, + { + "baseId": "653968", + "text": "Brain dopamine-serotonin vesicular transport disease" + }, + { + "baseId": "653994", + "text": "Leri pleonosteosis" + }, + { + "baseId": "654000", + "text": "Chromosome 17q11.2 deletion syndrome, 1.4 MB" + }, + { + "baseId": "654008|971560", + "text": "Chromosome 15q11.2 deletion syndrome" + }, + { + "baseId": "654170", + "text": "Spondyloepiphyseal dysplasia" + }, + { + "baseId": "654352", + "text": "Van Maldergem syndrome" + }, + { + "baseId": "654385", + "text": "Homocystinuria without methylmalonic aciduria" + }, + { + "baseId": "654481", + "text": "Kleefstra syndrome due to a point mutation" + }, + { + "baseId": "672010", + "text": "Neurodevelopmental disorder with brain malformations and multiple congenital anomalies" + }, + { + "baseId": "672042", + "text": "ACTG2-Related Disorder" + }, + { + "baseId": "672046|672047", + "text": "SLC6A1-Related Disorder" + }, + { + "baseId": "672060", + "text": "LOX-Related Disorder" + }, + { + "baseId": "672069", + "text": "PHIP-Related Disorder" + }, + { + "baseId": "672085", + "text": "MYO7A-related disorder" + }, + { + "baseId": "672102", + "text": "CLTC-Related Disorder" + }, + { + "baseId": "672104", + "text": "TLK2-Related Disorder" + }, + { + "baseId": "672108|961344", + "text": "CACNA1A-Related Disorder" + }, + { + "baseId": "672109", + "text": "Hemiplegia-hemiconvulsion-epilepsy syndrome" + }, + { + "baseId": "672113", + "text": "PPP2R1A-related disorder" + }, + { + "baseId": "672116", + "text": "Mercaptolactate-cysteine disulfiduria" + }, + { + "baseId": "672121", + "text": "BRWD3-Related Disorder" + }, + { + "baseId": "672133|961404", + "text": "Rubinstein-Taybi syndrome due to 16p13.3 microdeletion" + }, + { + "baseId": "672148", + "text": "Chromosome Xp21 deletion syndrome" + }, + { + "baseId": "672236|672237|672238", + "text": "Diencephalic-mesencephalic junction dysplasia syndrome" + }, + { + "baseId": "672236|965274", + "text": "Diencephalic-mesencephalic junction dysplasia" + }, + { + "baseId": "672259|672260|672261|672262", + "text": "Nephrotic syndrome, type 21" + }, + { + "baseId": "672283|672284|672285|672286|672287|672288|672289|672290|672291|672292|672293", + "text": "Renal agenesis and hypodysplasia" + }, + { + "baseId": "672318", + "text": "Radioulnar synostosis-microcephaly-scoliosis syndrome" + }, + { + "baseId": "672320", + "text": "Cerebellar medulloblastoma" + }, + { + "baseId": "672358", + "text": "Carpal osteolysis" + }, + { + "baseId": "676913", + "text": "Interstitial cardiac fibrosis" + }, + { + "baseId": "676955|676971|905977|971561", + "text": "Intellectual developmental disorder, autosomal recessive 72" + }, + { + "baseId": "676983|676984|676985|789780", + "text": "Developmental and epileptic encephalopathy, 79" + }, + { + "baseId": "676986", + "text": "Mitochondrial DNA depletion syndrome 17" + }, + { + "baseId": "676989|676990|676991", + "text": "Trichothiodystrophy 7, nonphotosensitive" + }, + { + "baseId": "677012", + "text": "Hepatitis, fulminant viral, susceptibility to" + }, + { + "baseId": "677013|677014|677015|677016", + "text": "Oocyte maturation defect 7" + }, + { + "baseId": "677025|677026|677027|677028|796901|815998|964401", + "text": "Microangiopathy and leukoencephalopathy, pontine, autosomal dominant" + }, + { + "baseId": "677052|677053|677054", + "text": "LEUKODYSTROPHY, HYPOMYELINATING, 19, TRANSIENT INFANTILE" + }, + { + "baseId": "677070|983529|983531|983532|983533", + "text": "INTELLECTUAL DEVELOPMENTAL DISORDER WITH PAROXYSMAL DYSKINESIA OR SEIZURES" + }, + { + "baseId": "677115|677117|677119", + "text": "Megabladder, congenital" + }, + { + "baseId": "677184|677185|677186|677186|677187|861612|861613", + "text": "Myopathy, congenital, progressive, with scoliosis" + }, + { + "baseId": "677198|677199|677200|677201|677202|677203|919087", + "text": "Neurodevelopmental disorder with cataracts, poor growth, and dysmorphic facies" + }, + { + "baseId": "677204|677205", + "text": "Neurodevelopmental disorder with cerebellar hypoplasia and spasticity" + }, + { + "baseId": "677225|677253", + "text": "Abnormality of connective tissue" + }, + { + "baseId": "677230", + "text": "Absent radius" + }, + { + "baseId": "677232", + "text": "Distal amyotrophy" + }, + { + "baseId": "677242", + "text": "Male pseudohermaphroditism" + }, + { + "baseId": "677336", + "text": "NUDT2-associated condition" + }, + { + "baseId": "677337", + "text": "PRNP-associated condition" + }, + { + "baseId": "677400", + "text": "Intellectual developmental disorder 60 with seizures" + }, + { + "baseId": "677401|677402", + "text": "Glycosylphosphatidylinositol biosynthesis defect 21" + }, + { + "baseId": "677478|677479|677480|792532|802101|802102", + "text": "Spondyloepimetaphyseal dysplasia, Isidor-Toutain type" + }, + { + "baseId": "677482", + "text": "LMNA-associated condition" + }, + { + "baseId": "678055", + "text": "Areflexia" + }, + { + "baseId": "678055", + "text": "Stereotypical hand wringing" + }, + { + "baseId": "678055|679241|679242|679243|679245|679247", + "text": "Neurodevelopmental disorder with behavioral abnormalities, absent speech, and hypotonia" + }, + { + "baseId": "678084", + "text": "Congenitally corrected transposition of the great arteries" + }, + { + "baseId": "678949|861048", + "text": "Postaxial polydactyly" + }, + { + "baseId": "678964|678965|678966|678967", + "text": "EPILEPTIC ENCEPHALOPATHY, EARLY INFANTILE, 82" + }, + { + "baseId": "678971", + "text": "SHORT SLEEP, FAMILIAL NATURAL, 2" + }, + { + "baseId": "679174|679175|679176|679177|858510|858511", + "text": "Hypothyroidism, congenital, nongoitrous, 8" + }, + { + "baseId": "679178|679179|679180", + "text": "Hypothyroidism, congenital, nongoitrous, 9" + }, + { + "baseId": "679183|679184|679185|679186|679187|861265|861267|861268|861269|861270|861271|861272|861273|861274|861275|971091|971092", + "text": "Neurodevelopmental disorder with hypotonia and variable intellectual and behavioral abnormalities" + }, + { + "baseId": "679189|679190|679191", + "text": "Peritoneal Gliomatosis" + }, + { + "baseId": "679282|679283|679284|679285|679286|679287|798479|964807|972529", + "text": "Snijders blok-fisher syndrome" + }, + { + "baseId": "679288|679289|679290", + "text": "Pontocerebellar hypoplasia, type 13" + }, + { + "baseId": "679293", + "text": "Chromosome 8p11 myeloproliferative syndrome" + }, + { + "baseId": "679317|679318", + "text": "Retinitis pigmentosa 86" + }, + { + "baseId": "679319|679320", + "text": "Intellectual developmental disorder with nasal speech, dysmorphic facies, and variable skeletal anomalies" + }, + { + "baseId": "679356|679357|679358|679359", + "text": "Mitochondrial complex 1 deficiency, nuclear type 34" + }, + { + "baseId": "679483|794110", + "text": "Frequent falls" + }, + { + "baseId": "679509|679510|679511|679512|679513", + "text": "Neurodevelopmental disorder with hypotonia, neonatal respiratory insufficiency, and thermodysregulation" + }, + { + "baseId": "679565|679566|679567|679568|679569", + "text": "Early Onset Neurological Disease Trait" + }, + { + "baseId": "679571", + "text": "Spastic Paraplegia 2, mild, late onset" + }, + { + "baseId": "679574|679575|679576|679577", + "text": "Pachygyria, microcephaly, developmental delay, and dysmorphic facies, with or without seizures" + }, + { + "baseId": "679578", + "text": "Imatinib response" + }, + { + "baseId": "679582", + "text": "Neuronal intranuclear inclusion disease" + }, + { + "baseId": "679582", + "text": "Tremor, hereditary essential, 6" + }, + { + "baseId": "679672|679678", + "text": "Reduced renal corticomedullary differentiation" + }, + { + "baseId": "679672|679673|679674|679675", + "text": "Neuromuscular disease and ocular or auditory anomalies with or without seizures" + }, + { + "baseId": "679698|679699|679700|679701|679702|679703|679704|679705", + "text": "Non-progressive neurodevelopmental disorder with spasticity and transient opisthotonus" + }, + { + "baseId": "679714|679715|679716|679717|679718|679719|858504|858505|858506|858507", + "text": "Neurodevelopmental disorder with microcephaly, arthrogryposis, and structural brain anomalies" + }, + { + "baseId": "679730|682220", + "text": "Leukemia, acute lymphoblastic 2" + }, + { + "baseId": "679745", + "text": "PURA Syndrome" + }, + { + "baseId": "679764", + "text": "congenital heart defect" + }, + { + "baseId": "679772|974491", + "text": "Autosomal dominant KAT6B-related disorders" + }, + { + "baseId": "679786|973031", + "text": "COL2A1-related skeletal dysplasia" + }, + { + "baseId": "679812", + "text": "Teratoid tumor, atypical" + }, + { + "baseId": "679829", + "text": "Mucocutaneous ulceration" + }, + { + "baseId": "679836", + "text": "Oppositional defiant disorder" + }, + { + "baseId": "679836", + "text": "reactive attachment disorder" + }, + { + "baseId": "679848|679849|679850", + "text": "Rothmund-Thomson syndrome type 1" + }, + { + "baseId": "679851", + "text": "syndrome with premature-aging" + }, + { + "baseId": "679894", + "text": "Doxorubicin response" + }, + { + "baseId": "679958|679959", + "text": "SeSAME-like syndrome" + }, + { + "baseId": "679961", + "text": "Oculopharyngeal myopathy with leukoencephalopathy 1" + }, + { + "baseId": "680033|680034|680035|680036", + "text": "Siddiqi syndrome" + }, + { + "baseId": "680037", + "text": "Oculopharyngodistal myopathy" + }, + { + "baseId": "680074|680075|680076|680077", + "text": "Osteogenesis imperfecta, type 20" + }, + { + "baseId": "680078|680079|680080", + "text": "SPERMATOGENIC FAILURE 39" + }, + { + "baseId": "681333", + "text": "Decreased activity of mitochondrial complex IV" + }, + { + "baseId": "681600|794276", + "text": "Abnormal basal ganglia MRI signal intensity" + }, + { + "baseId": "681600|794276", + "text": "Gonadal dysgenesis" + }, + { + "baseId": "681802|822326|822327|822328|822329|822330", + "text": "Myopia 2, autosomal dominant" + }, + { + "baseId": "681863|681864", + "text": "Immunodeficiency 65, susceptibility to viral infections" + }, + { + "baseId": "681868|681869", + "text": "Diencephalic-mesencephalic junction dysplasia syndrome 2" + }, + { + "baseId": "681873", + "text": "Epidermodysplasia verruciformis, susceptibility to, 5" + }, + { + "baseId": "682095|961553", + "text": "TAF1-related syndromic intellectual disability" + }, + { + "baseId": "682119", + "text": "Cholestasis, progressive familial intrahepatic, (PFIC4-like)" + }, + { + "baseId": "682119|682409|682410|682411|682412|682413|682414|682415|682416|682417|792798", + "text": "Cholestasis" + }, + { + "baseId": "682122|682123", + "text": "Muscular dystrophy-dystroglycanopathy (congenital with impaired intellectual development), type b, 15" + }, + { + "baseId": "682171", + "text": "Neurodevelopmental disorder with spastic quadriplegia, optic atrophy, seizures, and structural brain anomalies" + }, + { + "baseId": "682239|682240", + "text": "Myopathy, congenital, with structured cores and z-line abnormalities" + }, + { + "baseId": "682241|682242|970681", + "text": "Myopathy, distal, 6, adult-onset, autosomal dominant" + }, + { + "baseId": "682243|682244|682245|682246|682247", + "text": "Intellectual developmental disorder with impaired language and dysmorphic facies" + }, + { + "baseId": "682249", + "text": "Hypercalciuria" + }, + { + "baseId": "682299", + "text": "Deafness, autosomal dominant 27" + }, + { + "baseId": "682300", + "text": "Esophageal and colonic dysmotility" + }, + { + "baseId": "682317", + "text": "Skin adenoma" + }, + { + "baseId": "682348|682350|682351|682361", + "text": "mitochondrial hepatopathy" + }, + { + "baseId": "682356", + "text": "Alpers-like hepatocerebral syndrome" + }, + { + "baseId": "682369", + "text": "HEMOGLOBIN HANA" + }, + { + "baseId": "682372|682373", + "text": "Diarrhea 11, malabsorptive, congenital" + }, + { + "baseId": "682396", + "text": "Abnormal chromosome morphology" + }, + { + "baseId": "682396|800941|800943|800945|800946|800947|800952", + "text": "Recurrent spontaneous abortion" + }, + { + "baseId": "682397|682398|682399|682400|682401|682402|682403|682404|682405|682406|682407|682408", + "text": "CDC42BPB-related neurodevelopmental syndrome" + }, + { + "baseId": "682426", + "text": "Motor and sensory neuropathy" + }, + { + "baseId": "682488", + "text": "Delayed myelination" + }, + { + "baseId": "682490", + "text": "Epilepsy, familial adult myoclonic, 4" + }, + { + "baseId": "682509|800951", + "text": "Oocyte maturation defect" + }, + { + "baseId": "682585|682586|682587|682656", + "text": "Spermatogenic failure 40" + }, + { + "baseId": "682657", + "text": "Spermatogenic failure 41" + }, + { + "baseId": "682667|682668", + "text": "Hydrocephalus, congenital communicating, 1" + }, + { + "baseId": "682724|682725|682726|682727", + "text": "Cortical dysplasia, complex, with other brain malformations 10" + }, + { + "baseId": "682749", + "text": "Hydronephrosis" + }, + { + "baseId": "682782", + "text": "Lessel-kubisch syndrome" + }, + { + "baseId": "682783", + "text": "Pancreatic cancer, susceptibility to, 5" + }, + { + "baseId": "682788|682789|682790|682791|682792|964893|973105", + "text": "Intellectual developmental disorder with speech delay, autism, and dysmorphic facies" + }, + { + "baseId": "682793|921216", + "text": "Pulmonary fibrosis and/or bone marrow failure, telomere-related, 5" + }, + { + "baseId": "682852|818744", + "text": "Renal tubular acidosis" + }, + { + "baseId": "682852|818744", + "text": "Rickets" + }, + { + "baseId": "682852|818744", + "text": "Metabolic acidosis" + }, + { + "baseId": "682855", + "text": "Intrahepatic cholestasis with episodic jaundice" + }, + { + "baseId": "682864", + "text": "Aplasia/hypoplasia involving bones of the lower limbs" + }, + { + "baseId": "682864", + "text": "Absence of the sacrum" + }, + { + "baseId": "682950|969162", + "text": "Mitochondrial complex 5 (atp synthase) deficiency, nuclear type 6" + }, + { + "baseId": "683186|789712", + "text": "ECTODERMAL DYSPLASIA WITH FACIAL DYSMORPHISM AND ACRAL, OCULAR, AND BRAIN ANOMALIES, SOMATIC MOSAIC" + }, + { + "baseId": "683186", + "text": "neuro-ectodermal phenotype" + }, + { + "baseId": "683225|683226", + "text": "Intellectual developmental disorder with short stature and behavioral abnormalities" + }, + { + "baseId": "683832", + "text": "Hereditary hemochromatosis type 5" + }, + { + "baseId": "711182|816412", + "text": "Zellweger Spectrum Disorder" + }, + { + "baseId": "714726", + "text": "Hyperaldosteronism" + }, + { + "baseId": "716121|789347", + "text": "Recurrent skin infections" + }, + { + "baseId": "724728|966721", + "text": "Rudimentary fibula" + }, + { + "baseId": "734506|828921", + "text": "Glutaric acidemia type 2C" + }, + { + "baseId": "761008", + "text": "Retinitis pigmentosa 87 with choroidal involvement" + }, + { + "baseId": "788384|788385|788386|788387", + "text": "Ciliary dyskinesia, primary, 43" + }, + { + "baseId": "788765", + "text": "COL7A1-related disorders" + }, + { + "baseId": "788809", + "text": "MAP3K7-related disorder" + }, + { + "baseId": "788814", + "text": "TWIST1-related disorder" + }, + { + "baseId": "788817", + "text": "GLI3-related postaxial polydactyly" + }, + { + "baseId": "788850|789376", + "text": "Autosomal dominant KCNQ1-related disease" + }, + { + "baseId": "788866", + "text": "COL2A1-related phenotype" + }, + { + "baseId": "788879", + "text": "Autosomal dominant MYH7-related disorder" + }, + { + "baseId": "788924|880183|880185|880192", + "text": "COMP-related disorders" + }, + { + "baseId": "788977", + "text": "Primary pulmonary hypoplasia" + }, + { + "baseId": "789156", + "text": "Short stature and microcephaly with genital anomalies" + }, + { + "baseId": "789161|789162|789163|789164|789165|970494", + "text": "Neurodevelopmental disorder with nonspecific brain abnormalities and with or without seizures" + }, + { + "baseId": "789246|969242", + "text": "Dysfibrinogenemia, congenital" + }, + { + "baseId": "789258", + "text": "Multifocal seizures" + }, + { + "baseId": "789314", + "text": "Premature ovarian failure 16" + }, + { + "baseId": "789341|789342|789343", + "text": "White matter deficit" + }, + { + "baseId": "789384", + "text": "CNTNAP1-related disease" + }, + { + "baseId": "789388", + "text": "INSR-related disorder" + }, + { + "baseId": "789713|789714", + "text": "Heyn-Sproul-Jackson syndrome" + }, + { + "baseId": "789781|789782|794170|969301", + "text": "Webb-Dattani syndrome" + }, + { + "baseId": "791856", + "text": "Hereditary amyloidosis" + }, + { + "baseId": "792538|792539|792540|792541|792542|792543|792544|792545|792546|792547|792548|792549|792550|792551|792552|792553|792554|792559|792560|792561|792562", + "text": "Cystine urolithiasis" + }, + { + "baseId": "792563|792564|792565", + "text": "Zimmermann-laband syndrome 3" + }, + { + "baseId": "792590", + "text": "ATP6AP1-related disorders" + }, + { + "baseId": "792596|792597", + "text": "EIF2AK2-related condition" + }, + { + "baseId": "792596|792597|801518|801519|806288|806406|861117|861118", + "text": "Leukoencephalopathy, developmental delay, and episodic neurologic regression syndrome" + }, + { + "baseId": "792599", + "text": "DROSHA-related neurodevelopmental disorder" + }, + { + "baseId": "792600", + "text": "ADGRV1-related myoclonic epilepsy" + }, + { + "baseId": "792603", + "text": "KMT2C-related condition" + }, + { + "baseId": "792604", + "text": "EIF2AK1-related condition" + }, + { + "baseId": "792604", + "text": "Leukoencephalopathy, motor delay, spasticity, and dysarthria syndrome" + }, + { + "baseId": "792610", + "text": "CDH2-related condition" + }, + { + "baseId": "792610|794093|794094|794095|794096|794097|794098|794099|794100", + "text": "Axon pathfinding, cardiac, ocular and genital defects" + }, + { + "baseId": "792610|794093|794094|794098|794099|918173|918174", + "text": "Agenesis of corpus callosum, cardiac, ocular, and genital syndrome" + }, + { + "baseId": "792610|794093|794094|794095|794099|794100", + "text": "Syndromic neurodevelopmental disorder" + }, + { + "baseId": "792653", + "text": "Aneurysm, intracranial berry, 12" + }, + { + "baseId": "792662|792663|792664|792665|972750", + "text": "Deafness, autosomal dominant 78" + }, + { + "baseId": "792692", + "text": "Death in childhood" + }, + { + "baseId": "792704|792705|792706|792707|792708|792709|792710", + "text": "Neurodevelopmental disorder with microcephaly, cortical malformations, and spasticity" + }, + { + "baseId": "792733", + "text": "visual disturbance" + }, + { + "baseId": "792811", + "text": "Abnormality of the liver" + }, + { + "baseId": "794110", + "text": "Prolonged neonatal jaundice" + }, + { + "baseId": "794114|794115|794116|794117|794118", + "text": "Autosomal recessive keratitis-ichthyosis-deafness syndrome" + }, + { + "baseId": "794151|794152|794153|858300|963341", + "text": "SPERMATOGENIC FAILURE 48" + }, + { + "baseId": "794167|794168|794169", + "text": "Acontractile detrusor" + }, + { + "baseId": "794201", + "text": "Chromosome 15q26-qter deletion syndrome" + }, + { + "baseId": "794204", + "text": "Immunodeficiency with T and B cell lymphopenia" + }, + { + "baseId": "794265|794266|794267|794268", + "text": "Progeroid mandibuloacral dysplasia" + }, + { + "baseId": "794265|794266|794267|794268|815876", + "text": "MANDIBULOACRAL DYSPLASIA PROGEROID SYNDROME" + }, + { + "baseId": "794292|794293|794294|794295|794296|794297", + "text": "Spermatogenic failure 42" + }, + { + "baseId": "794316", + "text": "Developmental and epileptic encephalopathy, 83" + }, + { + "baseId": "794317|794318|794319|794320|794321|970981|983847", + "text": "Intellectual developmental disorder with hypotonia and behavioral abnormalities" + }, + { + "baseId": "794322|794323|794324|794325|794326|794327|794328", + "text": "Spermatogenic failure 43" + }, + { + "baseId": "794329", + "text": "Normal pressure hydrocephalus" + }, + { + "baseId": "794347", + "text": "Refractory epilepsy with Lennox Gastaut syndrome" + }, + { + "baseId": "794350", + "text": "Non-lesional parietal lobe epilepsy" + }, + { + "baseId": "794353", + "text": "Periventricular nodular heterotopia and epilepsy" + }, + { + "baseId": "794668|971332|971333|971334|971335|971336", + "text": "Spectraplakinopathy type I" + }, + { + "baseId": "796238|804900|906327|906328|906329|906330|906331", + "text": "Sandestig-stefanova syndrome" + }, + { + "baseId": "798695", + "text": "Glomerulocystic kidney disease with hyperuricemia and isosthenuria" + }, + { + "baseId": "798949", + "text": "Catifa syndrome" + }, + { + "baseId": "798950|798951", + "text": "Endometriosis" + }, + { + "baseId": "798954", + "text": "Acute myeloid leukemia with multilineage dysplasia" + }, + { + "baseId": "798959", + "text": "13q12.3 microdeletion" + }, + { + "baseId": "799078|799079", + "text": "Joubert syndrome 36" + }, + { + "baseId": "799091|799092", + "text": "Arthrogryposis multiplex congenita 4, neurogenic, with agenesis of the corpus callosum" + }, + { + "baseId": "799559", + "text": "Mitochondrial complex III deficiency, nuclear type 3" + }, + { + "baseId": "800028", + "text": "Acetyl-CoA: carboxylase deficiency" + }, + { + "baseId": "800185", + "text": "Major affective disorder 7" + }, + { + "baseId": "800331", + "text": "Discoid lupus rash" + }, + { + "baseId": "800332|858623|858624|858625|858626|858627", + "text": "Neurodevelopmental disorder with or without autistic features and/or structural brain abnormalities" + }, + { + "baseId": "800342|800343", + "text": "SPERMATOGENIC FAILURE 51" + }, + { + "baseId": "800545|800546|800547|800548|800549|800550|800551|800552", + "text": "cone dystrophy with supernormal rod electroretinogram" + }, + { + "baseId": "800595|800596|965597|965598|965599|965600|965601|965602|965603", + "text": "Retinitis pigmentosa 90" + }, + { + "baseId": "800670", + "text": "15q22.2 deletion syndrome" + }, + { + "baseId": "800692", + "text": "Refsum syndrome" + }, + { + "baseId": "800757", + "text": "Lymphatic malformation 8" + }, + { + "baseId": "800758|800759", + "text": "Deafness, autosomal dominant 7" + }, + { + "baseId": "800761", + "text": "Sirenomelia" + }, + { + "baseId": "800787", + "text": "Microcephaly-complex motor and sensory axonal neuropathy syndrome" + }, + { + "baseId": "800788", + "text": "Polyarticular arthritis" + }, + { + "baseId": "800819|800820|800821", + "text": "Spastic paraplegia 82, autosomal recessive" + }, + { + "baseId": "800822|800823", + "text": "Spastic paraplegia 81, autosomal recessive" + }, + { + "baseId": "800862|800863|800864|800865|800866", + "text": "Congenital heart defects, multiple types, 7" + }, + { + "baseId": "800899|962163", + "text": "Deafness, autosomal dominant 75" + }, + { + "baseId": "800927|800929", + "text": "Long QT syndrome 16" + }, + { + "baseId": "800928", + "text": "VENTRICULAR TACHYCARDIA, CATECHOLAMINERGIC POLYMORPHIC, 6" + }, + { + "baseId": "800930|800931|800932|800933|800934", + "text": "Coffin-Siris syndrome 11" + }, + { + "baseId": "800939", + "text": "Dizygotic twins" + }, + { + "baseId": "800950", + "text": "Preimplantation embryonic lethality" + }, + { + "baseId": "800982", + "text": "Reticulocytopenia" + }, + { + "baseId": "800989", + "text": "Hypsarrhythmia" + }, + { + "baseId": "800989", + "text": "Peripheral edema" + }, + { + "baseId": "801106", + "text": "Minimal change glomerulonephritis" + }, + { + "baseId": "801116", + "text": "Abnormal dense granule content" + }, + { + "baseId": "801116", + "text": "Abnormal dense granules" + }, + { + "baseId": "801122", + "text": "Abnormality of the heme biosynthetic pathway" + }, + { + "baseId": "801164", + "text": "Toe walking" + }, + { + "baseId": "801186", + "text": "Progressive psychomotor deterioration" + }, + { + "baseId": "801195|801506", + "text": "Mesangiocapillary glomerulonephritis" + }, + { + "baseId": "801221", + "text": "Central core regions in muscle fibers" + }, + { + "baseId": "801221", + "text": "Abnormality of the respiratory system" + }, + { + "baseId": "801224", + "text": "Abnormal synaptic transmission" + }, + { + "baseId": "801228", + "text": "Basal ganglia calcification" + }, + { + "baseId": "801230", + "text": "SPTA1-related disorders" + }, + { + "baseId": "801247", + "text": "Pure red cell aplasia" + }, + { + "baseId": "801254", + "text": "Paris-Trousseau thrombocytopenia" + }, + { + "baseId": "801392|801393|801442", + "text": "Choroidal dystrophy central areolar" + }, + { + "baseId": "801504|806289", + "text": "global hypotonia" + }, + { + "baseId": "801521", + "text": "Deletion syndrome" + }, + { + "baseId": "801523|801524|801525|801526", + "text": "Ciliary dyskinesia, primary, 44" + }, + { + "baseId": "801542|801543", + "text": "MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 36" + }, + { + "baseId": "802069", + "text": "Dominant progressive sensorineural hearing loss" + }, + { + "baseId": "802075", + "text": "Dominant congenital non-syndromic sensorineural hearing loss" + }, + { + "baseId": "802081", + "text": "Dominant congenital profound hearing loss" + }, + { + "baseId": "802094|966697|966704", + "text": "Renal agenesis" + }, + { + "baseId": "804744", + "text": "Demyelinating peripheral neuropathy" + }, + { + "baseId": "804835|804836|804837|804838|804839|804840|804841|804842|804843|970491", + "text": "Beck-Fahrner syndrome" + }, + { + "baseId": "804835|804836|804837|804838|804839|804840|804841|804842|804843|967106", + "text": "TET3 deficiency" + }, + { + "baseId": "804896|804897|804898|804899", + "text": "Ciliary dyskinesia, primary, 45" + }, + { + "baseId": "804905|804906", + "text": "Triokinase and FMN cyclase deficiency syndrome" + }, + { + "baseId": "804905|804906", + "text": "Inborn errors of metabolism" + }, + { + "baseId": "804905|804906", + "text": "TKFC deficiency" + }, + { + "baseId": "805100", + "text": "Bilateral cleft lip" + }, + { + "baseId": "805101|805102", + "text": "Tricuspid atresia (disease)" + }, + { + "baseId": "805178", + "text": "ASH1L-Related Disorder" + }, + { + "baseId": "805403", + "text": "DSPP-Related Disorder" + }, + { + "baseId": "806433", + "text": "Embryonic calcium dysregulation" + }, + { + "baseId": "806433", + "text": "Metaphyseal fractures" + }, + { + "baseId": "806433", + "text": "Slender long bone" + }, + { + "baseId": "806442", + "text": "Chromosome 3pter-p25 deletion syndrome" + }, + { + "baseId": "815776", + "text": "T-CELL LYMPHOPENIA, INFANTILE, WITHOUT NAIL DYSTROPHY, AUTOSOMAL DOMINANT" + }, + { + "baseId": "815778|815779", + "text": "T-lymphocyte deficiency" + }, + { + "baseId": "815785", + "text": "Respiratory papillomatosis, juvenile recurrent, congenital" + }, + { + "baseId": "815790|815791|815792|815793|815794|815795|815796|815797|815798|815799|815800|815801|815802|815803|815804|815805|815806|815807|815808|815809", + "text": "Hereditary angioedema with normal C1Inh" + }, + { + "baseId": "815857|815858|815859|815860|815861", + "text": "Intellectual developmental disorder, x-linked, syndromic, Hackmann-Di Donato type" + }, + { + "baseId": "815973", + "text": "Arnold-Chiari malformation" + }, + { + "baseId": "816293", + "text": "Mitochondrial DNA depletion syndrome 18" + }, + { + "baseId": "816295|816296|816297|962168|964855|965225|969608|977262", + "text": "Genitourinary and/or brain malformation syndrome" + }, + { + "baseId": "816391", + "text": "Myopathy, congenital proximal, with minicore lesions" + }, + { + "baseId": "816392", + "text": "Myopathy, congenital, with respiratory insufficiency and bone fractures" + }, + { + "baseId": "816393|816394|816395", + "text": "Intellectual developmental disorder with poor growth and with or without seizures or ataxia" + }, + { + "baseId": "816431", + "text": "Tyrosinemia" + }, + { + "baseId": "816534", + "text": "TLK2-related neurodevelopmental disorder" + }, + { + "baseId": "818123|818124|818125|818126", + "text": "Myopia 27" + }, + { + "baseId": "818127|818128|818129|818130|818131|818132|818133|818134", + "text": "Basal ganglia calcification, idiopathic, 8, autosomal recessive" + }, + { + "baseId": "818575|969300", + "text": "5q35 microduplication syndrome" + }, + { + "baseId": "818586|818587|818588|818589|818590|818591", + "text": "Neuromyopathy" + }, + { + "baseId": "818634", + "text": "Hypotrichosis 5" + }, + { + "baseId": "818712", + "text": "Chromosome 4q21 deletion syndrome" + }, + { + "baseId": "818727|818728", + "text": "Neurodevelopmental disorder with microcephaly and dysmorphic facies" + }, + { + "baseId": "818729|818730|818731|818732", + "text": "Neurodevelopmental disorder with relative macrocephaly and with or without cardiac or endocrine anomalies" + }, + { + "baseId": "818730", + "text": "SPOP-related condition" + }, + { + "baseId": "818742", + "text": "Profound hearing impairment" + }, + { + "baseId": "818765|818766", + "text": "Isolated hand syndactyly" + }, + { + "baseId": "822314", + "text": "Mitochondrial complex 4 deficiency, nuclear type 16" + }, + { + "baseId": "822320|822321|822322", + "text": "Hypogonadotropic hypogonadism 25 with anosmia" + }, + { + "baseId": "822340|822341|822342|822343|919645|919646|920360|962177|964874", + "text": "Epilepsy, early-onset, with or without developmental delay" + }, + { + "baseId": "822665|858242|858244", + "text": "Al-Gazali syndrome" + }, + { + "baseId": "836396", + "text": "PTCH1-related disorders" + }, + { + "baseId": "850071|959307|969739", + "text": "VEXAS" + }, + { + "baseId": "850071|959307|969739", + "text": "VEXAS syndrome" + }, + { + "baseId": "853050", + "text": "N-FORMYLPEPTIDE RECEPTOR POLYMORPHISM" + }, + { + "baseId": "853053|853054|853055|853056", + "text": "Vertebral, cardiac, renal, and limb defects syndrome 3" + }, + { + "baseId": "855097|855098|855099|855100|855101|962148|964820", + "text": "Diets-Jongmans syndrome" + }, + { + "baseId": "857371", + "text": "Immunodeficiency 66" + }, + { + "baseId": "857373|857374|857375", + "text": "Antisynthetase syndrome" + }, + { + "baseId": "857396", + "text": "Increased serum lactate" + }, + { + "baseId": "857396", + "text": "Acidosis" + }, + { + "baseId": "857398|857399", + "text": "Hypervalinemia and hyperleucine-isoleucinemia" + }, + { + "baseId": "857400|857401|857402", + "text": "Muscular dystrophy, limb-girdle, autosomal recessive 26" + }, + { + "baseId": "857611|857628", + "text": "Decreased activity of mitochondrial complex III" + }, + { + "baseId": "857626", + "text": "neonatal lactic acidosis" + }, + { + "baseId": "857631", + "text": "Eosinophilia" + }, + { + "baseId": "857633", + "text": "Bone marrow failure syndrome 6" + }, + { + "baseId": "857634|857635|857636|857637|857638", + "text": "Testicular regression syndrome" + }, + { + "baseId": "857996|857997", + "text": "Anauxetic dysplasia 3" + }, + { + "baseId": "858218|858219", + "text": "Combined oxidative phosphorylation deficiency 43" + }, + { + "baseId": "858248", + "text": "Right ventricular dilatation" + }, + { + "baseId": "858248", + "text": "Left ventricular failure" + }, + { + "baseId": "858288", + "text": "Cole-Carpenter syndrome" + }, + { + "baseId": "858291", + "text": "Bruck syndrome" + }, + { + "baseId": "858297|905812", + "text": "Abnormal spermatogenesis" + }, + { + "baseId": "858301|858302|858303", + "text": "Chronic obstructive pulmonary disease, biomass related" + }, + { + "baseId": "858390|858391|858392|858393", + "text": "Autoinflammation with episodic fever and lymphadenopathy" + }, + { + "baseId": "858513", + "text": "Bilateral multifocal epileptiform discharges" + }, + { + "baseId": "858548", + "text": "PPP1R21-related neurodevelopmental disorder" + }, + { + "baseId": "858553", + "text": "PTPN23-related neurodevelopmental disorder" + }, + { + "baseId": "858555", + "text": "GRIK2-related neurodevelopmental disorder" + }, + { + "baseId": "858581", + "text": "PIGG-related neurodevelopmental disorder" + }, + { + "baseId": "858585", + "text": "HUWE1-related neurodevelopmental disorder" + }, + { + "baseId": "858617|858618|858619|858620|858621|971156", + "text": "Neurodevelopmental disorder with hypotonia, microcephaly, and seizures" + }, + { + "baseId": "858634", + "text": "neurological and psychiatric features" + }, + { + "baseId": "858645|858646|858647|858648|858649|980550", + "text": "Skeletal dysplasia, mild, with joint laxity and advanced bone age" + }, + { + "baseId": "858664|858665|858666", + "text": "Neurodegeneration, childhood-onset, with ataxia, tremor, optic atrophy, and cognitive decline" + }, + { + "baseId": "858678|858679|858685|858686", + "text": "Sex reversal" + }, + { + "baseId": "858700|858703|858709|858710|858713", + "text": "Early-onset dementia of unclear type" + }, + { + "baseId": "858720", + "text": "Abnormal peripheral nervous system morphology" + }, + { + "baseId": "858734", + "text": "Increased muscle fatiguability" + }, + { + "baseId": "858734", + "text": "Congenital ptosis" + }, + { + "baseId": "858734", + "text": "Fatigable weakness" + }, + { + "baseId": "858736|858737", + "text": "MSTO1-related disorder" + }, + { + "baseId": "858739", + "text": "TOMM70-related neurodevelopmental disorder" + }, + { + "baseId": "858742|858751", + "text": "FAM177A1-related disorder" + }, + { + "baseId": "858746", + "text": "CDKL5-related disorder" + }, + { + "baseId": "858747", + "text": "HNRNPA1-related multisystem proteinopathy" + }, + { + "baseId": "858765|858766", + "text": "Severe muscular hypotonia" + }, + { + "baseId": "858768|858769", + "text": "Focal clonic seizures" + }, + { + "baseId": "858793|983721", + "text": "Hermansky-Pudlak syndrome 11" + }, + { + "baseId": "858794|858795", + "text": "Hereditary late onset Parkinson disease" + }, + { + "baseId": "859391", + "text": "Normochromic microcytic anemia" + }, + { + "baseId": "860991", + "text": "21q22.11q22.12 microdeletion syndrome" + }, + { + "baseId": "861030|861031|861032|861033|861034", + "text": "Lissencephaly 10" + }, + { + "baseId": "861030|861031|861032|861033|861034|967107|967108|967109|967110", + "text": "Posterior Predominant Lissencephaly" + }, + { + "baseId": "861063|861064", + "text": "Deficiency of ADA2" + }, + { + "baseId": "861067|861068|861069", + "text": "Epilepsy, progressive myoclonic, 11" + }, + { + "baseId": "861071|861072|861073|861074|861075", + "text": "Armfield X-linked mental retardation syndrome" + }, + { + "baseId": "861119|861120|861121", + "text": "Autism, susceptibility to, 20" + }, + { + "baseId": "861150|861151|861152|861153|861154", + "text": "Galactosemia 4" + }, + { + "baseId": "861157|861158|861159|861160|861161|861162", + "text": "Seizures, early-onset, with neurodegeneration and brain calcifications" + }, + { + "baseId": "861247|861248|861249|861250|861251|861252", + "text": "Neurodevelopmental disorder with hypotonia and cerebellar atrophy, with or without seizures" + }, + { + "baseId": "861328", + "text": "Amyotrophic lateral sclerosis-parkinsonism-dementia complex" + }, + { + "baseId": "861426", + "text": "Madras motor neuron disease" + }, + { + "baseId": "861611|961496|961497", + "text": "ASH1L-related neurodevelopmental disorders" + }, + { + "baseId": "861619", + "text": "CTNNB1-related syndromic intellectual disability" + }, + { + "baseId": "861620|977198", + "text": "ITPR1-related syndromic and non-syndromic hereditary ataxias" + }, + { + "baseId": "861623", + "text": "FBXW11-related neurodevelopmental, brain, eye, and digit anomalies" + }, + { + "baseId": "861624", + "text": "MEF2C-related complex neurodevelopmental disorder" + }, + { + "baseId": "861626", + "text": "SOX4-related neurodevelopmental disorder" + }, + { + "baseId": "861627|977226|977227", + "text": "KMT2C-related disorders" + }, + { + "baseId": "861630|861631", + "text": "RP1-related retinal dystrophy" + }, + { + "baseId": "861633", + "text": "VCP-related multisystem proteinopathy" + }, + { + "baseId": "861634", + "text": "CAMK2G-related syndromic intellectual disability" + }, + { + "baseId": "861635|977244", + "text": "GRIA4-related neurodevelopmental disorder" + }, + { + "baseId": "861639|961524", + "text": "MED13L-related neurodevelopmental disorder" + }, + { + "baseId": "861644", + "text": "DYNC1H1-related neuronopathy" + }, + { + "baseId": "861647|961537", + "text": "USP7-related neurodevelopmental disorder" + }, + { + "baseId": "861648", + "text": "STAT5B-related growth hormone insensitivity syndrome" + }, + { + "baseId": "861649", + "text": "MED13-related neurodevelopmental disorder" + }, + { + "baseId": "861657|861658", + "text": "SPTBN4-related neurodevelopmental disorder" + }, + { + "baseId": "861676|861677|861678|861679|861680", + "text": "Congenital disorder of glycosylation, type iit" + }, + { + "baseId": "865227|865228|865229|865230|865231", + "text": "Microcephaly, developmental delay, and brittle hair syndrome" + }, + { + "baseId": "868122", + "text": "HBD-Related Disorders" + }, + { + "baseId": "896246|961559", + "text": "Pseudo-torch syndrome 3" + }, + { + "baseId": "900539", + "text": "COL6A5 POLYMORPHISM" + }, + { + "baseId": "903683|903684|903685|903686|903687", + "text": "Syndrome with microcephaly as major feature" + }, + { + "baseId": "904073", + "text": "Retinitis pigmentosa 6" + }, + { + "baseId": "904231|904232|904235|904236", + "text": "Premenstrual dysphoric disorder" + }, + { + "baseId": "904258|904262", + "text": "46,xx sex reversal 5" + }, + { + "baseId": "904752", + "text": "VARIANT OF UNKNOWN SIGNIFICANCE" + }, + { + "baseId": "904965|905007", + "text": "Short telomere length" + }, + { + "baseId": "904965|905004|905007|961210|961211|961212|961213|961214|961215|961216|961217", + "text": "Interstitial pulmonary abnormality" + }, + { + "baseId": "905007", + "text": "Premature graying of hair" + }, + { + "baseId": "905007", + "text": "Macrocytic anemia" + }, + { + "baseId": "905018|905021", + "text": "ARTHROGRYPOSIS, DISTAL, TYPE 1C" + }, + { + "baseId": "905022|905023|905024|905025|905026|905027|905028", + "text": "sellar metastasis from primary bronchial carcinoid tumor" + }, + { + "baseId": "905814|905815|905816|905817|905818|905819", + "text": "WBP11 spliceosomopathy" + }, + { + "baseId": "905821", + "text": "Klippel-Tr\u00c3\u00a9naunay syndrome" + }, + { + "baseId": "905823", + "text": "Subcutaneous venous lacunae" + }, + { + "baseId": "905823", + "text": "Cerebral cavernous angioma" + }, + { + "baseId": "905824|969298|969299", + "text": "Chromosome 9p deletion syndrome" + }, + { + "baseId": "905852|905853|905854|905856", + "text": "Noonan syndrome 13" + }, + { + "baseId": "905857", + "text": "May-Hegglin Disorder" + }, + { + "baseId": "906167", + "text": "Hyperlipoproteinemia" + }, + { + "baseId": "906173", + "text": "Sex Hormone-Binding Globulin Deficiency" + }, + { + "baseId": "906215|906216|906217|976526", + "text": "Neurodevelopmental, jaw, eye, and digital syndrome" + }, + { + "baseId": "906219", + "text": "Fanconi renotubular syndrome 5" + }, + { + "baseId": "906274", + "text": "Caroli disease" + }, + { + "baseId": "915004", + "text": "Developmental and epileptic encephalopathy, 86" + }, + { + "baseId": "916784|916785|916786|916787|916788", + "text": "INTELLECTUAL DEVELOPMENTAL DISORDER WITH AUTISTIC FEATURES AND LANGUAGE DELAY WITHOUT SEIZURES" + }, + { + "baseId": "916789", + "text": "INTELLECTUAL DEVELOPMENTAL DISORDER WITH AUTISTIC FEATURES AND LANGUAGE DELAY WITH SEIZURES" + }, + { + "baseId": "917577", + "text": "Deafness, autosomal dominant 77" + }, + { + "baseId": "917578|917579", + "text": "Sorbitol dehydrogenase deficiency with peripheral neuropathy" + }, + { + "baseId": "917581", + "text": "9p partial trisomy syndrome" + }, + { + "baseId": "917759", + "text": "Joint dislocation" + }, + { + "baseId": "917803", + "text": "Primary Immune Deficiency" + }, + { + "baseId": "917805", + "text": "Sepsis, susceptibility to" + }, + { + "baseId": "917816|917817", + "text": "Arrhythmogenic right ventricular dysplasia, familial, 14" + }, + { + "baseId": "918166|918167|962120|962150|964098|964099|964100|964101", + "text": "Developmental and epileptic encephalopathy, 87" + }, + { + "baseId": "918166", + "text": "CDK19-related condition" + }, + { + "baseId": "918182|918183|918502", + "text": "OCULOCUTANEOUS ALBINISM, TYPE VIII" + }, + { + "baseId": "918184", + "text": "Left ventricular diastolic dysfunction" + }, + { + "baseId": "918257", + "text": "Autosomal recessive infantile hypercalcemia" + }, + { + "baseId": "918408", + "text": "Childhood-onset autosomal recessive myopathy with external ophthalmoplegia" + }, + { + "baseId": "918499", + "text": "vanishing white matter disease" + }, + { + "baseId": "918571", + "text": "Headache" + }, + { + "baseId": "918571", + "text": "Dysphasia" + }, + { + "baseId": "918813", + "text": "SOX2-Related Disorder" + }, + { + "baseId": "920333|974551|974552|974553|974554|974556|980559|980950", + "text": "INTELLECTUAL DEVELOPMENTAL DISORDER WITH SPEECH DELAY AND AXONAL PERIPHERAL NEUROPATHY" + }, + { + "baseId": "920547|920548|920549", + "text": "IFAP syndrome 2" + }, + { + "baseId": "920547|969581", + "text": "Hereditary mucoepithelial dysplasia" + }, + { + "baseId": "920551", + "text": "C6 A/B POLYMORPHISM" + }, + { + "baseId": "920602", + "text": "22q13.3 interstitial deletion" + }, + { + "baseId": "920612|920613|920614", + "text": "Treacher Collins syndrome 4" + }, + { + "baseId": "920615|920616", + "text": "Autosomal recessive chronic granulomatous disease 5" + }, + { + "baseId": "921239", + "text": "Limb myoclonus" + }, + { + "baseId": "921253|921255|921256", + "text": "Motor tics" + }, + { + "baseId": "921256", + "text": "Bradykinesia" + }, + { + "baseId": "934579", + "text": "ABL1-Related Disorder" + }, + { + "baseId": "952954", + "text": "Alport syndrome type 2" + }, + { + "baseId": "961063", + "text": "Retinitis pigmentosa 32" + }, + { + "baseId": "961064", + "text": "Oculopharyngodistal myopathy 2" + }, + { + "baseId": "961125", + "text": "Glycoprotein storage disease" + }, + { + "baseId": "961226|961229|961921|963436", + "text": "Motor axonal neuropathy" + }, + { + "baseId": "961260", + "text": "DNMT3A-Related Disorder" + }, + { + "baseId": "961281", + "text": "COL12A1- Related Disorder" + }, + { + "baseId": "961282", + "text": "PLOD3-Related Disorder" + }, + { + "baseId": "961300", + "text": "LRP4-Related Disorder" + }, + { + "baseId": "961302", + "text": "POLR3B-Related Disorder" + }, + { + "baseId": "961304", + "text": "DIABLO-Related Hearing Loss" + }, + { + "baseId": "961326", + "text": "TRAF7-Related Disorder" + }, + { + "baseId": "961328|961329", + "text": "CNOT1-Related Disorder" + }, + { + "baseId": "961330", + "text": "CTCF-Related Disorder" + }, + { + "baseId": "961356", + "text": "MSL3-Related Disorder" + }, + { + "baseId": "961358", + "text": "MECP2-Related Disorder" + }, + { + "baseId": "961368", + "text": "AKT3-Related Disorder" + }, + { + "baseId": "961406", + "text": "DMD-Related Disorder" + }, + { + "baseId": "961432", + "text": "Reduced tendon reflexes" + }, + { + "baseId": "961498|961499", + "text": "ATP13A2-related disorders" + }, + { + "baseId": "961503|961504", + "text": "SCN3A-related neurodevelopmental sisorder" + }, + { + "baseId": "961509", + "text": "GRIA2-related neurodevelopmental disorder" + }, + { + "baseId": "961511", + "text": "CYFIP2-related neurodevelopmental disorders" + }, + { + "baseId": "961522", + "text": "KMT5B-related neurodevelopmental disorder" + }, + { + "baseId": "961523", + "text": "PAK1-related neurodevelopmental disorders" + }, + { + "baseId": "961538", + "text": "TAOK1-related neurodevelopmental disorder" + }, + { + "baseId": "961539", + "text": "TANC2-related neurodevelopmental disorders" + }, + { + "baseId": "961540", + "text": "POLG2-related spectrum disorders" + }, + { + "baseId": "961543", + "text": "ATP1A3-related neurologic disorders" + }, + { + "baseId": "961544|977294", + "text": "CIC-related neurodevelopmental disorders" + }, + { + "baseId": "961545", + "text": "POLD1-related disorders" + }, + { + "baseId": "961549", + "text": "FLNA-related otopalatodigital spectrum disorders" + }, + { + "baseId": "961551", + "text": "USP9X-related neurodevelopmental disorder" + }, + { + "baseId": "961552", + "text": "Kabuki Syndrome - KDM6A" + }, + { + "baseId": "961556|961557", + "text": "Retinitis pigmentosa 89" + }, + { + "baseId": "961694", + "text": "typical paroxysmal kinesigenic dyskinesia" + }, + { + "baseId": "961805|966209|966210|966211|966212", + "text": "Deeah syndrome" + }, + { + "baseId": "961812|961813", + "text": "Hyper-IgE recurrent infection syndrome 5, autosomal recessive" + }, + { + "baseId": "961814", + "text": "Developmental and epileptic encephalopathy, 88" + }, + { + "baseId": "961830|961831|961832|961833|961834", + "text": "Familial intrahepatic cholestasis type 2" + }, + { + "baseId": "961853|961854", + "text": "Familial intrahepatic cholestasis type 3" + }, + { + "baseId": "961867", + "text": "Distal trisomy 11q" + }, + { + "baseId": "961875", + "text": "Immunodeficiency type 56" + }, + { + "baseId": "961896", + "text": "Polyarteritis nodosa" + }, + { + "baseId": "961899", + "text": "Turner syndrome" + }, + { + "baseId": "961906", + "text": "Aortic valve stenosis" + }, + { + "baseId": "961935", + "text": "WDR1 deficiency" + }, + { + "baseId": "961995|961996|962002", + "text": "Generalized choriocapillaris dystrophy" + }, + { + "baseId": "962057", + "text": "TRAPP-associated developmental delay" + }, + { + "baseId": "962060", + "text": "SCAF4-associated mental retardation" + }, + { + "baseId": "962070", + "text": "Late onset congenital glaucoma" + }, + { + "baseId": "962240|962241", + "text": "Chronic multifocal osteomyelitis" + }, + { + "baseId": "962268", + "text": "Combined oxidative phosphorylation deficiency 45" + }, + { + "baseId": "962273", + "text": "Combined oxidative phosphorylation deficiency 46" + }, + { + "baseId": "962274|962275", + "text": "Combined oxidative phosphorylation deficiency 47" + }, + { + "baseId": "962895|962896|962897|962898|962899|962900|962901|962902", + "text": "Lazy leukocyte syndrome" + }, + { + "baseId": "962903|962904|962905|962906|962907", + "text": "Cone-rod synaptic disorder syndrome, congenital nonprogressive" + }, + { + "baseId": "962973", + "text": "Immunodeficiency 69" + }, + { + "baseId": "962977|962978|962979", + "text": "Immunodeficiency 70" + }, + { + "baseId": "963316|963317|963318|963319", + "text": "Neurodegeneration, infantile-onset, biotin-responsive" + }, + { + "baseId": "964135", + "text": "Renal neoplasm" + }, + { + "baseId": "964259|976826", + "text": "Severe hydrops fetalis" + }, + { + "baseId": "964658", + "text": "Thrombocytosis" + }, + { + "baseId": "964711", + "text": "SMAD2-congenital heart disease and multiple congenital anomaly disorder" + }, + { + "baseId": "964726|964727|964728|964729", + "text": "Li-Ghorbani-Weisz-Hubshman syndrome" + }, + { + "baseId": "964735", + "text": "FLNC-associated cardiomyopathy" + }, + { + "baseId": "964792", + "text": "X-\u00adlinked recessive mitochondrial myopathy" + }, + { + "baseId": "964792", + "text": "Cognitive impairment and autistic features" + }, + { + "baseId": "964793", + "text": "NSD2-associated disorder" + }, + { + "baseId": "964793", + "text": "atypical Wolf-Hirschhorn syndrome" + }, + { + "baseId": "964794", + "text": "CSDE1-associated disorder" + }, + { + "baseId": "964799", + "text": "AGO1-associated disorder" + }, + { + "baseId": "964800", + "text": "MANEAL-associated disorder" + }, + { + "baseId": "964806", + "text": "AFF3-associated disorder" + }, + { + "baseId": "964808", + "text": "ATP5G3-associated disorder" + }, + { + "baseId": "964826", + "text": "HIST1H4C-associated disorder" + }, + { + "baseId": "964830", + "text": "POU3F2-associated disorder" + }, + { + "baseId": "964835", + "text": "DNAJC30-associated disorder" + }, + { + "baseId": "964836", + "text": "ERI1-associated disorder" + }, + { + "baseId": "964849", + "text": "SETD1B-associated disorder" + }, + { + "baseId": "964864|964865|964866|964867|964868|964869|964870", + "text": "SPATA5L1-associated disorder" + }, + { + "baseId": "964894", + "text": "VPS16-associated disorder" + }, + { + "baseId": "964981|964982|964983|964984", + "text": "Immunodeficiency 72 with autoinflammation" + }, + { + "baseId": "964987|984270|984271", + "text": "Syndromic congenital hemolytic and dyserythropoietic anemia" + }, + { + "baseId": "965271|980757", + "text": "Skeletal muscle atrophy" + }, + { + "baseId": "965271", + "text": "skeletal contractures" + }, + { + "baseId": "965276", + "text": "Metopic ridging-ptosis-facial dysmorphism syndrome" + }, + { + "baseId": "965340|965342|965344", + "text": "Autoimmune thrombocytopenia" + }, + { + "baseId": "965340|965344", + "text": "Autoimmune hemolytic anemia" + }, + { + "baseId": "965353", + "text": "Immunodeficiency 73c with defective neutrophil chemotaxis and hypogammaglobulinemia" + }, + { + "baseId": "965363|965364", + "text": "Immunodeficiency 74, covid19-related, x-linked" + }, + { + "baseId": "965405", + "text": "Adult Fanconi syndrome" + }, + { + "baseId": "965406|965407|965408", + "text": "Autosomal dominant lamellar ichthyosis" + }, + { + "baseId": "965430", + "text": "Very long chain fatty acid accumulation" + }, + { + "baseId": "965432", + "text": "Intellectual developmental disorder with autistic features and language delay, with or without seizures" + }, + { + "baseId": "965446", + "text": "Abnormal CNS myelination" + }, + { + "baseId": "965604", + "text": "Hemophagocytic lymphohistiocytosis, familial, 6" + }, + { + "baseId": "965607|965608|965609|965610|965611|965643|965644|971503", + "text": "Intellectual developmental disorder with seizures and language delay" + }, + { + "baseId": "965618", + "text": "Sensory autonomic neuropathy with intellectual disability" + }, + { + "baseId": "965634|965635|965636|965637", + "text": "Optic atrophy with negative electroretinograms" + }, + { + "baseId": "965639|965640", + "text": "Mitochondrial complex 1 deficiency, nuclear type 35" + }, + { + "baseId": "965645", + "text": "Mitochondrial complex 4 deficiency, nuclear type 21" + }, + { + "baseId": "965646|965647|965648|965649", + "text": "Oocyte maturation defect 8" + }, + { + "baseId": "965772|965773", + "text": "Rajab interstitial lung disease with brain calcifications 2" + }, + { + "baseId": "965774|965775|965776|965777|965778", + "text": "Oocyte maturation defect 9" + }, + { + "baseId": "965786", + "text": "Epidermolysis Bullosa Distrophica Autosomal Recessive (RDEB)" + }, + { + "baseId": "965878", + "text": "GNB2-related condition" + }, + { + "baseId": "965882", + "text": "MTSS2-related neurodevelopmental disorder" + }, + { + "baseId": "965883", + "text": "EZH1-related disorder" + }, + { + "baseId": "965916", + "text": "ATP5PO-related disorder" + }, + { + "baseId": "965917", + "text": "microdeletion 4p16.3p16.1" + }, + { + "baseId": "965918", + "text": "duplication 8q12" + }, + { + "baseId": "965920", + "text": "10q11.22q11.23 microdeletion including CHAT and SLC18A3" + }, + { + "baseId": "965926", + "text": "Chromosome 19q13.11 deletion syndrome" + }, + { + "baseId": "966061", + "text": "Mitochondrial complex 4 deficiency, nuclear type 20" + }, + { + "baseId": "966074|966104", + "text": "Occult maculopathy" + }, + { + "baseId": "966146", + "text": "polysyndactyly" + }, + { + "baseId": "966156", + "text": "Bachmann-Bupp syndrome" + }, + { + "baseId": "966160|966161", + "text": "MADD-related condition" + }, + { + "baseId": "966162", + "text": "MPEG1-related immunodeficiency" + }, + { + "baseId": "966164|966165", + "text": "UNC45A-associated Cholestasis" + }, + { + "baseId": "966164|966165", + "text": "Impaired Hearing" + }, + { + "baseId": "966171", + "text": "ELFN1-related condition" + }, + { + "baseId": "966200|966201|966202|966203", + "text": "Combined oxidative phosphorylation deficiency 48" + }, + { + "baseId": "966360", + "text": "Intellectual developmental disorder with epilepsy, behavioral abnormalities, and coarse facies" + }, + { + "baseId": "966618|969329", + "text": "Global proximal tubulopathy" + }, + { + "baseId": "966618|969329", + "text": "Cholestatic liver disease" + }, + { + "baseId": "966620", + "text": "Combined oxidative phosphorylation deficiency 50" + }, + { + "baseId": "966621", + "text": "Combined oxidative phosphorylation deficiency 49" + }, + { + "baseId": "966697|966704", + "text": "Right aortic arch" + }, + { + "baseId": "966700", + "text": "Fetal ascites" + }, + { + "baseId": "966701|966702|966703|966707|966708|966735", + "text": "Median cleft lip and palate" + }, + { + "baseId": "966707|966708|966712|966713", + "text": "Dysgenesis of the cerebellar vermis" + }, + { + "baseId": "966709", + "text": "Cerebral venous angioma" + }, + { + "baseId": "966710", + "text": "Gastrointestinal obstruction" + }, + { + "baseId": "966716|966717", + "text": "Deformed rib cage" + }, + { + "baseId": "966716|966717", + "text": "Abnormality of the lung" + }, + { + "baseId": "966718|966719", + "text": "Anencephaly" + }, + { + "baseId": "966883", + "text": "GH-secreting pituitary adenoma" + }, + { + "baseId": "966904", + "text": "Coenzyme q10 deficiency, primary, 9" + }, + { + "baseId": "967111|967112", + "text": "GET4 deficiency" + }, + { + "baseId": "967113|967114|967115|967116|967117|967118|967119|967120", + "text": "Familial prostate carcinoma" + }, + { + "baseId": "967133|967135", + "text": "Cleft lip/palate" + }, + { + "baseId": "967196", + "text": "Colorectal cancer susceptibility 12" + }, + { + "baseId": "967234", + "text": "Complex I deficiency" + }, + { + "baseId": "967285|967286|967287|967288|967289|970516|970517", + "text": "Neurodevelopmental disorder with progressive spasticity and brain white matter abnormalities" + }, + { + "baseId": "967290", + "text": "Spastic paraplegia 83, autosomal recessive" + }, + { + "baseId": "969091", + "text": "constitutional indocyanine green excretory defect" + }, + { + "baseId": "969133", + "text": "CNTNAP5-associated intellectual disability" + }, + { + "baseId": "969135", + "text": "mircrodeletion 17q11.2q12 including TMEM98 and SUZ12" + }, + { + "baseId": "969254", + "text": "Cornelia de Lange" + }, + { + "baseId": "969270", + "text": "Weakness of facial musculature" + }, + { + "baseId": "969290", + "text": "Distal 17p13.3 microdeletion syndrome" + }, + { + "baseId": "969296", + "text": "2q24 microdeletion syndrome" + }, + { + "baseId": "969297", + "text": "Deletion 6q16 q21" + }, + { + "baseId": "969309|969310", + "text": "POC1A-related syndrome" + }, + { + "baseId": "969573|969574", + "text": "Myofibrillar myopathy 10" + }, + { + "baseId": "969575|969576|969577", + "text": "Spermatogenic failure 44" + }, + { + "baseId": "969590", + "text": "Mitochondrial complex 4 deficiency, nuclear type 19" + }, + { + "baseId": "969772", + "text": "Cleft lip" + }, + { + "baseId": "969774", + "text": "Cornelia de Lange-like syndrome" + }, + { + "baseId": "969784", + "text": "Craniofacial-ulnar-renal syndrome" + }, + { + "baseId": "970005|970006|970007", + "text": "Microcephalic primordial dwarfism" + }, + { + "baseId": "970040|970041|970042", + "text": "Neurodevelopmental disorder with speech impairment and dysmorphic facies" + }, + { + "baseId": "970152|970153", + "text": "Combined oxidative phosphorylation deficiency 51" + }, + { + "baseId": "970321", + "text": "VERTEBRAL HYPERSEGMENTATION AND OROFACIAL ANOMALIES" + }, + { + "baseId": "970341", + "text": "Intellectual Disability with multiple congenital anomalies" + }, + { + "baseId": "970484", + "text": "Vitamin D-dependent rickets, type 3" + }, + { + "baseId": "970520", + "text": "brain structure abnormalities" + }, + { + "baseId": "970525", + "text": "Blepharophimosis intellectual disability syndrome" + }, + { + "baseId": "970922", + "text": "Epilepsy, idiopathic generalized, susceptibility to, 16" + }, + { + "baseId": "971020", + "text": "Abnormality of the face" + }, + { + "baseId": "971106", + "text": "NEURODEVELOPMENTAL DISORDER WITH MICROCEPHALY, IMPAIRED LANGUAGE, EPILEPSY, AND GAIT ABNORMALITIES" + }, + { + "baseId": "971107|974445|974447|974448|974450", + "text": "NEURODEVELOPMENTAL DISORDER WITH MICROCEPHALY, IMPAIRED LANGUAGE, AND GAIT ABNORMALITIES" + }, + { + "baseId": "971187", + "text": "Spastic tetraplegia" + }, + { + "baseId": "971289", + "text": "Arachnoid cyst" + }, + { + "baseId": "971344", + "text": "Optic atrophy-ataxia-peripheral neuropathy-global developmental delay syndrome" + }, + { + "baseId": "971353|971354|971355|971356|971357", + "text": "Neurodevelopmental disorder with alopecia and brain abnormalities" + }, + { + "baseId": "971551", + "text": "Susceptibility to strabismus" + }, + { + "baseId": "971566", + "text": "Syndromic global developmental delay" + }, + { + "baseId": "971568", + "text": "Microcornea, rod-cone dystrophy, cataract, and posterior staphyloma 1" + }, + { + "baseId": "971604", + "text": "Leukodystrophy, hypomyelinating, 20" + }, + { + "baseId": "971613|971614|971615|971616", + "text": "Neurodevelopmental disorder with seizures and brain atrophy" + }, + { + "baseId": "971617", + "text": "Neurodevelopmental disorder with microcephaly, seizures, and brain atrophy" + }, + { + "baseId": "972618", + "text": "Primary bone dysplasia with multiple joint dislocations" + }, + { + "baseId": "972751|972752|972753|972754", + "text": "Delpire-McNeill syndrome" + }, + { + "baseId": "972756", + "text": "Deafness, autosomal dominant 79" + }, + { + "baseId": "972817|972818|972819|972820|972821", + "text": "Spermatogenic failure 45" + }, + { + "baseId": "972822", + "text": "Deafness, autosomal recessive 116" + }, + { + "baseId": "973022", + "text": "Congenital central hypoventilation syndrome, with or without Hirschsprung disease" + }, + { + "baseId": "973047", + "text": "EEF1A2-related disorders" + }, + { + "baseId": "973088", + "text": "Mitral valve prolapse 3" + }, + { + "baseId": "973089|973090", + "text": "SPERMATOGENIC FAILURE 47" + }, + { + "baseId": "974156|976877|976878|976879|976881|976882", + "text": "KAYA-BARAKAT-MASSON SYNDROME" + }, + { + "baseId": "974478", + "text": "SLC2A1-Related Disorders" + }, + { + "baseId": "974528", + "text": "Hemiparkinsonism-hemiatrophy syndrome" + }, + { + "baseId": "974888|974889", + "text": "TMEM53-related craniotubular dysplasia" + }, + { + "baseId": "975725", + "text": "Autoimmune connective tissue disease and vasculitis" + }, + { + "baseId": "975787", + "text": "SIM1-Related Disorders" + }, + { + "baseId": "975878", + "text": "MED12-related disorder" + }, + { + "baseId": "975890", + "text": "Complement component 4b deficiency" + }, + { + "baseId": "975899|975900", + "text": "Chondrodysplasia-pseudohermaphroditism syndrome" + }, + { + "baseId": "975905|975906|975907", + "text": "NEURODEVELOPMENTAL DISORDER WITH DYSMORPHIC FACIES, SLEEP DISTURBANCE, AND BRAIN ABNORMALITIES" + }, + { + "baseId": "976028", + "text": "RNF2-associated neurodevelopmental condition" + }, + { + "baseId": "976029", + "text": "BAP1-associated neurodevelopmental disorder" + }, + { + "baseId": "976511|976512", + "text": "Congenital bilateral perisylvian syndrome" + }, + { + "baseId": "976533|976534", + "text": "CARDIOFACIONEURODEVELOPMENTAL SYNDROME" + }, + { + "baseId": "976557|976558", + "text": "MONOSOMY 7 MYELODYSPLASIA AND LEUKEMIA SYNDROME 2" + }, + { + "baseId": "976563|976564|976565|976566|976567|976568|976569", + "text": "NEURODEVELOPMENTAL DISORDER WITH CARDIOMYOPATHY, SPASTICITY, AND BRAIN ABNORMALITIES" + }, + { + "baseId": "976583", + "text": "Pure gonadal dysgenesis 46,XY" + }, + { + "baseId": "976589|976590", + "text": "RNH1-related condition" + }, + { + "baseId": "976883|976884|976885|976886|976887", + "text": "DEVELOPMENTAL AND EPILEPTIC ENCEPHALOPATHY 89" + }, + { + "baseId": "976888|976889|976890|976891", + "text": "OSTEOGENESIS IMPERFECTA, TYPE XXI" + }, + { + "baseId": "977163|977164|977313|977314|977316", + "text": "Skin rash" + }, + { + "baseId": "977163|977164|977314|977316", + "text": "Arthritis" + }, + { + "baseId": "977172", + "text": "ZBTB18-related intellectual disability" + }, + { + "baseId": "977177", + "text": "GLI2-related disorders" + }, + { + "baseId": "977181", + "text": "SCN3A-related neurodevelopmental disorder" + }, + { + "baseId": "977182", + "text": "SCN2A-related generalized epilepsy with febrile seizures plus" + }, + { + "baseId": "977183", + "text": "HECW2-related neurodevelopmental disorder" + }, + { + "baseId": "977184", + "text": "KIF1A-related disorders" + }, + { + "baseId": "977186|977187", + "text": "SLC5A6-related disorder" + }, + { + "baseId": "977197", + "text": "MED12L-related neurodevelopmental disorder" + }, + { + "baseId": "977200", + "text": "CACNA1D-related neurodevelopmental and endocrine disorders" + }, + { + "baseId": "977204|977205", + "text": "PLK4-related microcephaly and growth failure with or without ocular features" + }, + { + "baseId": "977218", + "text": "HIVEP2-related syndromic intellectual disability" + }, + { + "baseId": "977219", + "text": "TUBB-related tubulinopathy" + }, + { + "baseId": "977229|977230", + "text": "ACTB-related disorders" + }, + { + "baseId": "977231|977232", + "text": "TRRAP-related neurodevelopmental disorder" + }, + { + "baseId": "977234", + "text": "CHD7-related disorders" + }, + { + "baseId": "977235", + "text": "STXBP1-related neurodevelopmental disorder" + }, + { + "baseId": "977241", + "text": "CNNM2-related neurodevelopmental disorder and hypomagnesemia" + }, + { + "baseId": "977243", + "text": "WAC-related neurodevelopmental disorder" + }, + { + "baseId": "977251", + "text": "TRPV4-associated skeletal dysplasias" + }, + { + "baseId": "977259", + "text": "SMARCC2-related neurodevelopmental disorder" + }, + { + "baseId": "977264|977265", + "text": "NBEA-related intellectual disability" + }, + { + "baseId": "977270", + "text": "TRAPPC6B-related neurodevelopmental disorder" + }, + { + "baseId": "977271", + "text": "TGFB3-related connective tissue disorders" + }, + { + "baseId": "977273", + "text": "NR2F2-related congenital heart defects" + }, + { + "baseId": "977284", + "text": "BPTF-related neurodevelopmental disorder" + }, + { + "baseId": "977291", + "text": "SMAD2-related disorders" + }, + { + "baseId": "977295", + "text": "CSNK2A1-related neurodevelopmental syndrome" + }, + { + "baseId": "977300", + "text": "PTCHD1-related autism and intellectual disability" + }, + { + "baseId": "977303", + "text": "BCOR-related disorders" + }, + { + "baseId": "977304", + "text": "CASK-related intellectual disability and microcephaly with pontine and cerebellar hypoplasia" + }, + { + "baseId": "977311", + "text": "OGT-related X-linked syndromic intellectual disability" + }, + { + "baseId": "977312", + "text": "BRWD3-related X-linked syndromic intellectual disability" + }, + { + "baseId": "977313", + "text": "Joint swelling" + }, + { + "baseId": "977320|977322", + "text": "ENDOVES (EN1-associated dorsoventral syndrome)" + }, + { + "baseId": "977321", + "text": "EN1 syndrome" + }, + { + "baseId": "977323", + "text": "Congenital miosis" + }, + { + "baseId": "977365", + "text": "FRONTOTEMPORAL DEMENTIA WITHOUT AMYOTROPHIC LATERAL SCLEROSIS 6, WITH NEUROFIBRILLARY TANGLES" + }, + { + "baseId": "977366|977367", + "text": "RITSCHER-SCHINZEL SYNDROME 3" + }, + { + "baseId": "977368|977369|977370|977371|977372", + "text": "THROMBOCYTOPENIA 7" + }, + { + "baseId": "977394|977395|977396|977397", + "text": "CARDIOACROFACIAL DYSPLASIA 2" + }, + { + "baseId": "977398", + "text": "CARDIOACROFACIAL DYSPLASIA 1" + }, + { + "baseId": "980127|980128|980129|980130|980131", + "text": "SPERMATOGENIC FAILURE 49" + }, + { + "baseId": "980132", + "text": "SPERMATOGENIC FAILURE 50" + }, + { + "baseId": "980132", + "text": "PREMATURE OVARIAN FAILURE 17" + }, + { + "baseId": "980410|980411", + "text": "Rheumatic heart disease" + }, + { + "baseId": "980451", + "text": "Coronary heart disease 1" + }, + { + "baseId": "980451", + "text": "Age-related macular degeneration 12" + }, + { + "baseId": "980452", + "text": "Diabetes mellitus, insulin-dependent, 22" + }, + { + "baseId": "980480", + "text": "Systemic lupus erythematosus 6" + }, + { + "baseId": "980516|980517|980518|980519", + "text": "FRONTOTEMPORAL DEMENTIA AND/OR AMYOTROPHIC LATERAL SCLEROSIS 5" + }, + { + "baseId": "980520", + "text": "AMYOTROPHIC LATERAL SCLEROSIS 26 WITH FRONTOTEMPORAL DEMENTIA" + }, + { + "baseId": "980521", + "text": "AMYOTROPHIC LATERAL SCLEROSIS 26 WITH OR WITHOUT FRONTOTEMPORAL DEMENTIA" + }, + { + "baseId": "980522", + "text": "FRONTOTEMPORAL DEMENTIA AND/OR AMYOTROPHIC LATERAL SCLEROSIS 8" + }, + { + "baseId": "980588", + "text": "multilineage dysplasia" + }, + { + "baseId": "980590", + "text": "Generalized cerebral atrophy/hypoplasia" + }, + { + "baseId": "980704", + "text": "Trigonocephaly" + }, + { + "baseId": "980829|980830", + "text": "HEATR5B-associated Pontocerebellar hypoplasia" + }, + { + "baseId": "980858", + "text": "Familial congenital diaphragmatic hernia" + }, + { + "baseId": "983490|983491|983492|983493|983494|983495", + "text": "LESSEL-KREIENKAMP SYNDROME" + }, + { + "baseId": "983542|983543", + "text": "NEPHROTIC SYNDROME, TYPE 22" + }, + { + "baseId": "983544|983545|983546|983547|983548", + "text": "NEURODEVELOPMENTAL DISORDER WITH OR WITHOUT EARLY-ONSET GENERALIZED EPILEPSY" + }, + { + "baseId": "983683", + "text": "Increased nuchal translucency" + }, + { + "baseId": "983745", + "text": "Disorder of sex development" + }, + { + "baseId": "983750", + "text": "DEAFNESS, AUTOSOMAL RECESSIVE 117" + }, + { + "baseId": "983807|983817", + "text": "Bilateral renal agenesis" + }, + { + "baseId": "983835|983836", + "text": "OOCYTE MATURATION DEFECT 10" + }, + { + "baseId": "983855", + "text": "2-3 finger syndactyly" + }, + { + "baseId": "984036|984037|984038|984039|984040", + "text": "MULTIPLE CONGENITAL ANOMALIES-NEURODEVELOPMENTAL SYNDROME, X-LINKED" + }, + { + "baseId": "984257|984258|984259|984260|984261|984262", + "text": "IMMUNODEFICIENCY 76" + } + ] +} \ No newline at end of file From 7207c0e81c1d59c4cc90bfc2c182b73cb9a92925 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Tue, 16 Feb 2021 23:21:32 +0800 Subject: [PATCH 14/72] Various fixes of the file import. --- .../rest/controller/SourcesController.java | 11 ++++++++++- .../curation/service/DataImportService.java | 3 +-- .../service/impl/DataImportServiceImpl.java | 11 +++++------ .../service/impl/MatchmakerServiceImpl.java | 2 +- src/main/resources/logback-spring.xml | 19 ++++++++----------- .../ontotools/curation/IntegrationTest.java | 2 +- 6 files changed, 26 insertions(+), 22 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java index cee4794..d5f8c0e 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java @@ -1,5 +1,6 @@ package uk.ac.ebi.spot.ontotools.curation.rest.controller; +import org.apache.commons.io.IOUtils; import org.joda.time.DateTime; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -24,6 +25,7 @@ import javax.servlet.http.HttpServletRequest; import javax.validation.Valid; +import java.io.IOException; import java.util.Arrays; import java.util.List; import java.util.stream.Collectors; @@ -124,6 +126,13 @@ public void importDataFromFile(@RequestParam MultipartFile file, @PathVariable S User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to import data from file [{} - {}] to source: {} | {}", user.getEmail(), file.getOriginalFilename(), file.getSize(), projectId, sourceId); projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); - dataImportService.importData(file, projectId, sourceId, user); + + try { + String fileData = IOUtils.toString(file.getInputStream(), "UTF-8"); + dataImportService.importData(fileData, projectId, sourceId, user); + } catch (IOException e) { + log.error("Unable to deserialize import data file: {}", e.getMessage(), e); + } + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/DataImportService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/DataImportService.java index fee8166..d4e52ee 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/DataImportService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/DataImportService.java @@ -1,8 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.service; -import org.springframework.web.multipart.MultipartFile; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; public interface DataImportService { - void importData(MultipartFile file, String projectId, String sourceId, User user); + void importData(String fileData, String projectId, String sourceId, User user); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java index 756f0a5..041ee13 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java @@ -8,7 +8,6 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; -import org.springframework.web.multipart.MultipartFile; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.domain.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; @@ -45,14 +44,14 @@ public void initialize() { this.objectMapper = new ObjectMapper(); } - @Async + @Async(value = "applicationTaskExecutor") @Override - public void importData(MultipartFile file, String projectId, String sourceId, User user) { - log.info("[{} | {}] Importing data from: {}", projectId, sourceId, file.getOriginalFilename()); + public void importData(String fileData, String projectId, String sourceId, User user) { + log.info("[{} | {}] Importing data from file.", projectId, sourceId); Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); Project project = projectService.retrieveProject(projectId, user); try { - ImportDataPackageDto importDataPackageDto = this.objectMapper.readValue(file.getInputStream(), new TypeReference() { + ImportDataPackageDto importDataPackageDto = this.objectMapper.readValue(fileData, new TypeReference() { }); log.info("Received {} entries to import.", importDataPackageDto.getData().size()); @@ -64,7 +63,7 @@ public void importData(MultipartFile file, String projectId, String sourceId, Us sourceId, provenance, EntityStatus.UNMAPPED)); count++; if (count % 100 == 0) { - log.info(" -- [{} | {}] Progress: {} of {}", count, importDataPackageDto.getData().size()); + log.info(" -- [{} | {}] Progress: {} of {}", projectId, sourceId, count, importDataPackageDto.getData().size()); } } long eTime = System.currentTimeMillis(); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java index a2782f0..ecd5d3f 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java @@ -53,7 +53,7 @@ public class MatchmakerServiceImpl implements MatchmakerService { private UserService userService; @Override - @Async + @Async(value = "applicationTaskExecutor") public void runMatchmaking(String sourceId, Project project) { log.info("Running auto-mapping for source: {}", sourceId); User robotUser = userService.retrieveRobotUser(); diff --git a/src/main/resources/logback-spring.xml b/src/main/resources/logback-spring.xml index 823a79b..bf4a21c 100644 --- a/src/main/resources/logback-spring.xml +++ b/src/main/resources/logback-spring.xml @@ -23,11 +23,11 @@ - + @@ -79,12 +79,9 @@ - - + + + diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 12b8759..22228f3 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -49,7 +49,7 @@ public abstract class IntegrationTest { public static class MockTaskExecutorConfig { @Bean - public TaskExecutor taskExecutor() { + public TaskExecutor applicationTaskExecutor() { return new SyncTaskExecutor(); } } From 74019118c71390354e4daacdf349645d4fddfb3e Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Wed, 17 Feb 2021 15:23:17 +0800 Subject: [PATCH 15/72] Fixed entities collection. Removed DEBUG logging. --- .../java/uk/ac/ebi/spot/ontotools/curation/domain/Entity.java | 2 +- src/main/resources/logback-spring.xml | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Entity.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Entity.java index 63be43c..94512d8 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Entity.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Entity.java @@ -9,7 +9,7 @@ import org.springframework.data.mongodb.core.mapping.Document; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; -@Document(collection = "mappings") +@Document(collection = "entities") @Getter @Setter @NoArgsConstructor diff --git a/src/main/resources/logback-spring.xml b/src/main/resources/logback-spring.xml index bf4a21c..01af70d 100644 --- a/src/main/resources/logback-spring.xml +++ b/src/main/resources/logback-spring.xml @@ -79,9 +79,11 @@ + From 67fcf304ebaa8c334bd5ffe17900ffb6bb832753 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Wed, 17 Feb 2021 21:49:23 +0800 Subject: [PATCH 16/72] Fixed typo in Project. --- .../ac/ebi/spot/ontotools/curation/domain/auth/Project.java | 2 +- .../curation/rest/assembler/ProjectDtoAssembler.java | 2 +- .../curation/service/impl/MatchmakerServiceImpl.java | 2 +- .../curation/service/impl/OntologyTermServiceImpl.java | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java index 316eb34..f29dc64 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java @@ -41,7 +41,7 @@ public class Project { /** * Ontology ID used when creating ontology terms locally to query OLS for a mapping */ - private String preferredMappintOntology; + private String preferredMappingOntology; private Provenance created; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java index b33e238..1ad5da2 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java @@ -15,7 +15,7 @@ public static ProjectDto assemble(Project project) { project.getDescription(), project.getDatasources(), project.getOntologies(), - project.getPreferredMappintOntology(), + project.getPreferredMappingOntology(), ProvenanceDtoAssembler.assemble(project.getCreated())); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java index ecd5d3f..b5c5b82 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java @@ -58,7 +58,7 @@ public void runMatchmaking(String sourceId, Project project) { log.info("Running auto-mapping for source: {}", sourceId); User robotUser = userService.retrieveRobotUser(); project.setOntologies(CurationUtil.toLowerCase(project.getOntologies())); - project.setPreferredMappintOntology(project.getPreferredMappintOntology().toLowerCase()); + project.setPreferredMappingOntology(project.getPreferredMappingOntology().toLowerCase()); long sTime = System.currentTimeMillis(); Stream entityStream = entityService.retrieveEntitiesForSource(sourceId); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java index b822584..4f21016 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java @@ -52,11 +52,11 @@ public OntologyTerm createTerm(String iri, Project project) { return ontologyTermOp.get(); } - List preferredOntoResponse = olsService.retrieveTerms(project.getPreferredMappintOntology(), iri); + List preferredOntoResponse = olsService.retrieveTerms(project.getPreferredMappingOntology(), iri); List parentOntoResponse = new ArrayList<>(); String ontoId = CurationUtil.ontoFromIRI(iri); String termStatus; - if (!ontoId.equalsIgnoreCase(project.getPreferredMappintOntology())) { + if (!ontoId.equalsIgnoreCase(project.getPreferredMappingOntology())) { parentOntoResponse = olsService.retrieveTerms(ontoId, iri); termStatus = parseStatus(preferredOntoResponse, parentOntoResponse, null); } else { From 2f2e183d529adf940c385bc5c040afeeb5ead470 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Thu, 18 Feb 2021 20:50:15 +0800 Subject: [PATCH 17/72] Changed project-level configuration to accept field-level mappings. --- .../curation/domain/{auth => }/Project.java | 18 ++++++--- .../spot/ontotools/curation/domain/Trait.java | 34 ---------------- .../{ => config}/ExternalServiceConfig.java | 2 +- .../domain/config/ProjectMappingConfig.java | 18 +++++++++ .../domain/{ => mapping}/Comment.java | 3 +- .../curation/domain/{ => mapping}/Entity.java | 3 +- .../domain/{ => mapping}/Mapping.java | 4 +- .../{ => mapping}/MappingSuggestion.java | 3 +- .../domain/{ => mapping}/OntologyTerm.java | 2 +- .../repository/CommentRepository.java | 2 +- .../curation/repository/EntityRepository.java | 2 +- .../ExternalServiceConfigRepository.java | 2 +- .../repository/MappingRepository.java | 2 +- .../MappingSuggestionRepository.java | 2 +- .../repository/OntologyTermRepository.java | 2 +- .../repository/ProjectRepository.java | 2 +- .../curation/repository/TraitRepository.java | 7 ---- .../rest/assembler/EntityDtoAssembler.java | 6 +-- .../ExternalServiceConfigDtoAssembler.java | 2 +- .../rest/assembler/MappingDtoAssembler.java | 2 +- .../MappingSuggestionDtoAssembler.java | 2 +- .../assembler/OntologyTermDtoAssembler.java | 2 +- .../rest/assembler/ProjectDtoAssembler.java | 21 +++++----- .../ProjectMappingConfigDtoAssembler.java | 15 +++++++ .../rest/controller/EntityController.java | 6 +-- .../rest/controller/MappingsController.java | 5 ++- .../controller/OntologyTermController.java | 2 +- .../controller/PlatformAdminController.java | 2 +- .../rest/controller/ProjectsController.java | 2 +- .../rest/controller/SourcesController.java | 2 +- .../curation/rest/dto/ProjectCreationDto.java | 26 ++++++------ .../curation/rest/dto/ProjectDto.java | 24 +++++------ .../rest/dto/ProjectMappingConfigDto.java | 40 +++++++++++++++++++ .../curation/service/ConfigRegistry.java | 2 +- .../curation/service/EntityService.java | 2 +- .../service/ExternalServiceConfigService.java | 2 +- .../curation/service/MappingService.java | 6 +-- .../service/MappingSuggestionsService.java | 6 +-- .../curation/service/MatchmakerService.java | 2 +- .../curation/service/OntologyTermService.java | 4 +- .../curation/service/ProjectService.java | 2 +- .../curation/service/UserService.java | 1 - .../service/impl/ConfigRegistryImpl.java | 2 +- .../service/impl/DataImportServiceImpl.java | 4 +- .../service/impl/EntityServiceImpl.java | 2 +- .../ExternalServiceConfigServiceImpl.java | 2 +- .../service/impl/MappingServiceImpl.java | 6 +-- .../impl/MappingSuggestionsServiceImpl.java | 6 +-- .../service/impl/MatchmakerServiceImpl.java | 25 +++++++----- .../service/impl/OntologyTermServiceImpl.java | 11 +++-- .../service/impl/ProjectServiceImpl.java | 2 +- .../ontotools/curation/util/CurationUtil.java | 39 +++++++++++++++++- .../curation/EntityControllerTest.java | 2 +- .../ontotools/curation/IntegrationTest.java | 29 +++++++++----- .../curation/MappingsControllerTest.java | 2 +- .../ontotools/curation/MatchMakingTest.java | 7 +++- .../ontotools/curation/OXOServiceTest.java | 2 +- .../curation/OntologyTermControllerTest.java | 2 +- .../curation/PlatformAdminControllerTest.java | 2 +- .../curation/ProjectsControllerTest.java | 13 +++--- .../rest/dto/ProjectMappingConfigDtoTest.java | 14 +++++++ 61 files changed, 294 insertions(+), 172 deletions(-) rename src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/{auth => }/Project.java (61%) delete mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Trait.java rename src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/{ => config}/ExternalServiceConfig.java (90%) create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/config/ProjectMappingConfig.java rename src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/{ => mapping}/Comment.java (82%) rename src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/{ => mapping}/Entity.java (85%) rename src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/{ => mapping}/Mapping.java (89%) rename src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/{ => mapping}/MappingSuggestion.java (88%) rename src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/{ => mapping}/OntologyTerm.java (92%) delete mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/TraitRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectMappingConfigDtoAssembler.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectMappingConfigDto.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectMappingConfigDtoTest.java diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Project.java similarity index 61% rename from src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java rename to src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Project.java index f29dc64..fbc2a33 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/Project.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Project.java @@ -1,4 +1,4 @@ -package uk.ac.ebi.spot.ontotools.curation.domain.auth; +package uk.ac.ebi.spot.ontotools.curation.domain; import lombok.AllArgsConstructor; import lombok.Getter; @@ -6,7 +6,7 @@ import lombok.Setter; import org.springframework.data.annotation.Id; import org.springframework.data.mongodb.core.mapping.Document; -import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.domain.config.ProjectMappingConfig; import java.util.List; @@ -27,21 +27,27 @@ public class Project { /** * List of datasources used to query Zooma to retrieve suggestions. * Zooma service uses this list to filter results pertaining only to these datasources. + *

+ * `ProjectMappingConfig` enables a field-based mapping preference setting. + * The default value for `field` when fields are not used is ALL. */ - private List datasources; + private List datasources; /** * List of datasources used to query Zooma to retrieve suggestions. * Zooma service uses this list to filter results pertaining only to these ontologies. - * + *

+ * `ProjectMappingConfig` enables a field-based mapping preference setting. + * The default value for `field` when fields are not used is ALL. + *

* NB: Orphanet prefix used by Zooma is `ordo` */ - private List ontologies; + private List ontologies; /** * Ontology ID used when creating ontology terms locally to query OLS for a mapping */ - private String preferredMappingOntology; + private List preferredMappingOntologies; private Provenance created; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Trait.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Trait.java deleted file mode 100644 index 49ecd12..0000000 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Trait.java +++ /dev/null @@ -1,34 +0,0 @@ -package uk.ac.ebi.spot.ontotools.curation.domain; - -import lombok.Getter; -import lombok.Setter; -import org.springframework.data.annotation.Id; -import org.springframework.data.mongodb.core.mapping.Document; - -@Document(collection = "traits") -@Getter -@Setter -public class Trait { - - @Id - private String id; - - private String name; - - private int noSourceRecords; - - private Provenance created; - - private Provenance lastUpdated; - - public Trait() { - } - - - public Trait(String name, Provenance created) { - this.name = name; - this.noSourceRecords = 0; - this.created = created; - this.lastUpdated = created; - } -} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ExternalServiceConfig.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/config/ExternalServiceConfig.java similarity index 90% rename from src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ExternalServiceConfig.java rename to src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/config/ExternalServiceConfig.java index 286a11b..949de6a 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ExternalServiceConfig.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/config/ExternalServiceConfig.java @@ -1,4 +1,4 @@ -package uk.ac.ebi.spot.ontotools.curation.domain; +package uk.ac.ebi.spot.ontotools.curation.domain.config; import lombok.AllArgsConstructor; import lombok.Getter; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/config/ProjectMappingConfig.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/config/ProjectMappingConfig.java new file mode 100644 index 0000000..90a6481 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/config/ProjectMappingConfig.java @@ -0,0 +1,18 @@ +package uk.ac.ebi.spot.ontotools.curation.domain.config; + +import lombok.AllArgsConstructor; +import lombok.Getter; + +import java.util.List; + +@AllArgsConstructor +@Getter +public class ProjectMappingConfig { + + public static final String ALL = "ALL"; + + private String field; + + private List mappingList; + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Comment.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Comment.java similarity index 82% rename from src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Comment.java rename to src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Comment.java index eedfdc8..e6d6dce 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Comment.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Comment.java @@ -1,9 +1,10 @@ -package uk.ac.ebi.spot.ontotools.curation.domain; +package uk.ac.ebi.spot.ontotools.curation.domain.mapping; import lombok.Getter; import lombok.Setter; import org.springframework.data.annotation.Id; import org.springframework.data.mongodb.core.mapping.Document; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; @Document(collection = "comments") @Getter diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Entity.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java similarity index 85% rename from src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Entity.java rename to src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java index 94512d8..fa550bf 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Entity.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java @@ -1,4 +1,4 @@ -package uk.ac.ebi.spot.ontotools.curation.domain; +package uk.ac.ebi.spot.ontotools.curation.domain.mapping; import lombok.AllArgsConstructor; import lombok.Getter; @@ -8,6 +8,7 @@ import org.springframework.data.mongodb.core.index.Indexed; import org.springframework.data.mongodb.core.mapping.Document; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; @Document(collection = "entities") @Getter diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Mapping.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java similarity index 89% rename from src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Mapping.java rename to src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java index b7b17c5..f87a9c9 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Mapping.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java @@ -1,4 +1,4 @@ -package uk.ac.ebi.spot.ontotools.curation.domain; +package uk.ac.ebi.spot.ontotools.curation.domain.mapping; import lombok.AllArgsConstructor; import lombok.Getter; @@ -11,6 +11,8 @@ import org.springframework.data.mongodb.core.index.Indexed; import org.springframework.data.mongodb.core.mapping.Document; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.domain.Review; import java.util.ArrayList; import java.util.List; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MappingSuggestion.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/MappingSuggestion.java similarity index 88% rename from src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MappingSuggestion.java rename to src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/MappingSuggestion.java index bda11a5..fea5c98 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MappingSuggestion.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/MappingSuggestion.java @@ -1,4 +1,4 @@ -package uk.ac.ebi.spot.ontotools.curation.domain; +package uk.ac.ebi.spot.ontotools.curation.domain.mapping; import lombok.AllArgsConstructor; import lombok.Getter; @@ -10,6 +10,7 @@ import org.springframework.data.mongodb.core.index.CompoundIndexes; import org.springframework.data.mongodb.core.index.Indexed; import org.springframework.data.mongodb.core.mapping.Document; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; @Document(collection = "mappingSuggestions") @Getter diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/OntologyTerm.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTerm.java similarity index 92% rename from src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/OntologyTerm.java rename to src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTerm.java index d5055cb..69cea60 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/OntologyTerm.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTerm.java @@ -1,4 +1,4 @@ -package uk.ac.ebi.spot.ontotools.curation.domain; +package uk.ac.ebi.spot.ontotools.curation.domain.mapping; import lombok.AllArgsConstructor; import lombok.Getter; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/CommentRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/CommentRepository.java index a268796..288dfbf 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/CommentRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/CommentRepository.java @@ -1,7 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.repository; import org.springframework.data.mongodb.repository.MongoRepository; -import uk.ac.ebi.spot.ontotools.curation.domain.Comment; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Comment; public interface CommentRepository extends MongoRepository { } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java index f4b0891..c201e71 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java @@ -3,7 +3,7 @@ import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.data.mongodb.repository.MongoRepository; -import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import java.util.List; import java.util.stream.Stream; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ExternalServiceConfigRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ExternalServiceConfigRepository.java index b6c3d1b..ced82be 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ExternalServiceConfigRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ExternalServiceConfigRepository.java @@ -1,7 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.repository; import org.springframework.data.mongodb.repository.MongoRepository; -import uk.ac.ebi.spot.ontotools.curation.domain.ExternalServiceConfig; +import uk.ac.ebi.spot.ontotools.curation.domain.config.ExternalServiceConfig; import java.util.Optional; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java index 9d8a249..aa94815 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java @@ -1,7 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.repository; import org.springframework.data.mongodb.repository.MongoRepository; -import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; import java.util.List; import java.util.Optional; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingSuggestionRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingSuggestionRepository.java index 71faa58..2c4e19b 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingSuggestionRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingSuggestionRepository.java @@ -1,7 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.repository; import org.springframework.data.mongodb.repository.MongoRepository; -import uk.ac.ebi.spot.ontotools.curation.domain.MappingSuggestion; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; import java.util.List; import java.util.Optional; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java index b2adb78..f4861fa 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java @@ -1,7 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.repository; import org.springframework.data.mongodb.repository.MongoRepository; -import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import java.util.List; import java.util.Optional; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ProjectRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ProjectRepository.java index f113a21..d0910be 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ProjectRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ProjectRepository.java @@ -1,7 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.repository; import org.springframework.data.mongodb.repository.MongoRepository; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; import java.util.List; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/TraitRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/TraitRepository.java deleted file mode 100644 index 89ceb08..0000000 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/TraitRepository.java +++ /dev/null @@ -1,7 +0,0 @@ -package uk.ac.ebi.spot.ontotools.curation.repository; - -import org.springframework.data.mongodb.repository.MongoRepository; -import uk.ac.ebi.spot.ontotools.curation.domain.Trait; - -public interface TraitRepository extends MongoRepository { -} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java index 66c62c5..89cba97 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java @@ -1,8 +1,8 @@ package uk.ac.ebi.spot.ontotools.curation.rest.assembler; -import uk.ac.ebi.spot.ontotools.curation.domain.Entity; -import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; -import uk.ac.ebi.spot.ontotools.curation.domain.MappingSuggestion; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ExternalServiceConfigDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ExternalServiceConfigDtoAssembler.java index d51adbd..2a230b4 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ExternalServiceConfigDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ExternalServiceConfigDtoAssembler.java @@ -1,6 +1,6 @@ package uk.ac.ebi.spot.ontotools.curation.rest.assembler; -import uk.ac.ebi.spot.ontotools.curation.domain.ExternalServiceConfig; +import uk.ac.ebi.spot.ontotools.curation.domain.config.ExternalServiceConfig; import uk.ac.ebi.spot.ontotools.curation.rest.dto.config.ExternalServiceConfigDto; import uk.ac.ebi.spot.ontotools.curation.util.CurationUtil; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java index 10ca396..9a7856c 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java @@ -1,6 +1,6 @@ package uk.ac.ebi.spot.ontotools.curation.rest.assembler; -import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; import java.util.ArrayList; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingSuggestionDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingSuggestionDtoAssembler.java index 63cfc41..0c24800 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingSuggestionDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingSuggestionDtoAssembler.java @@ -1,6 +1,6 @@ package uk.ac.ebi.spot.ontotools.curation.rest.assembler; -import uk.ac.ebi.spot.ontotools.curation.domain.MappingSuggestion; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingSuggestionDto; public class MappingSuggestionDtoAssembler { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/OntologyTermDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/OntologyTermDtoAssembler.java index 783afea..2363c82 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/OntologyTermDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/OntologyTermDtoAssembler.java @@ -2,7 +2,7 @@ import org.apache.commons.codec.digest.DigestUtils; import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; -import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.OntologyTermDto; public class OntologyTermDtoAssembler { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java index 1ad5da2..d62c4f3 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java @@ -1,11 +1,12 @@ package uk.ac.ebi.spot.ontotools.curation.rest.assembler; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectCreationDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; import java.util.ArrayList; +import java.util.stream.Collectors; public class ProjectDtoAssembler { @@ -13,9 +14,9 @@ public static ProjectDto assemble(Project project) { return new ProjectDto(project.getId(), project.getName(), project.getDescription(), - project.getDatasources(), - project.getOntologies(), - project.getPreferredMappingOntology(), + project.getDatasources() != null ? project.getDatasources().stream().map(ProjectMappingConfigDtoAssembler::assemble).collect(Collectors.toList()) : new ArrayList<>(), + project.getOntologies() != null ? project.getOntologies().stream().map(ProjectMappingConfigDtoAssembler::assemble).collect(Collectors.toList()) : new ArrayList<>(), + project.getPreferredMappingOntologies(), ProvenanceDtoAssembler.assemble(project.getCreated())); } @@ -23,9 +24,9 @@ public static Project disassemble(ProjectDto project) { return new Project(project.getId(), project.getName(), project.getDescription(), - project.getDatasources(), - project.getOntologies(), - project.getPreferredMappingOntology(), + project.getDatasources() != null ? project.getDatasources().stream().map(ProjectMappingConfigDtoAssembler::disassemble).collect(Collectors.toList()) : new ArrayList<>(), + project.getOntologies() != null ? project.getOntologies().stream().map(ProjectMappingConfigDtoAssembler::disassemble).collect(Collectors.toList()) : new ArrayList<>(), + project.getPreferredMappingOntologies(), ProvenanceDtoAssembler.disassemble(project.getCreated())); } @@ -33,9 +34,9 @@ public static Project disassemble(ProjectCreationDto project, Provenance provena return new Project(null, project.getName(), project.getDescription(), - project.getDatasources() != null ? project.getDatasources() : new ArrayList<>(), - project.getOntologies() != null ? project.getOntologies() : new ArrayList<>(), - project.getPreferredMappingOntology(), + project.getDatasources() != null ? project.getDatasources().stream().map(ProjectMappingConfigDtoAssembler::disassemble).collect(Collectors.toList()) : new ArrayList<>(), + project.getOntologies() != null ? project.getOntologies().stream().map(ProjectMappingConfigDtoAssembler::disassemble).collect(Collectors.toList()) : new ArrayList<>(), + project.getPreferredMappingOntologies(), provenance); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectMappingConfigDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectMappingConfigDtoAssembler.java new file mode 100644 index 0000000..bbcbce0 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectMappingConfigDtoAssembler.java @@ -0,0 +1,15 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.assembler; + +import uk.ac.ebi.spot.ontotools.curation.domain.config.ProjectMappingConfig; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectMappingConfigDto; + +public class ProjectMappingConfigDtoAssembler { + + public static ProjectMappingConfigDto assemble(ProjectMappingConfig projectMappingConfig) { + return new ProjectMappingConfigDto(projectMappingConfig.getField(), projectMappingConfig.getMappingList()); + } + + public static ProjectMappingConfig disassemble(ProjectMappingConfigDto projectMappingConfig) { + return new ProjectMappingConfig(projectMappingConfig.getField(), projectMappingConfig.getMappingList()); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java index 1f8fb51..2ac203e 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java @@ -11,9 +11,9 @@ import org.springframework.web.bind.annotation.*; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; -import uk.ac.ebi.spot.ontotools.curation.domain.Entity; -import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; -import uk.ac.ebi.spot.ontotools.curation.domain.MappingSuggestion; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; import uk.ac.ebi.spot.ontotools.curation.domain.Source; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.EntityDtoAssembler; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java index 8766c6b..414233a 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java @@ -11,8 +11,11 @@ import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.domain.*; -import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.EntityDtoAssembler; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.SourceDtoAssembler; import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/OntologyTermController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/OntologyTermController.java index bd46fec..af0d442 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/OntologyTermController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/OntologyTermController.java @@ -7,7 +7,7 @@ import org.springframework.http.MediaType; import org.springframework.web.bind.annotation.*; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; -import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.OntologyTermDtoAssembler; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.OntologyTermDto; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/PlatformAdminController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/PlatformAdminController.java index f32cd0c..7d08411 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/PlatformAdminController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/PlatformAdminController.java @@ -7,7 +7,7 @@ import org.springframework.http.MediaType; import org.springframework.web.bind.annotation.*; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; -import uk.ac.ebi.spot.ontotools.curation.domain.ExternalServiceConfig; +import uk.ac.ebi.spot.ontotools.curation.domain.config.ExternalServiceConfig; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.exception.AuthorizationException; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.ExternalServiceConfigDtoAssembler; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java index 7433812..254e59b 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java @@ -10,7 +10,7 @@ import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.ProjectDtoAssembler; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectCreationDto; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java index d5f8c0e..e78aca8 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java @@ -12,7 +12,7 @@ import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; -import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.Source; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDto.java index 6b52a9b..c13ca76 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDto.java @@ -23,25 +23,25 @@ public final class ProjectCreationDto implements Serializable { private final String description; @JsonProperty("datasources") - private final List datasources; + private final List datasources; @JsonProperty("ontologies") - private final List ontologies; + private final List ontologies; - @JsonProperty("preferredMappingOntology") - private final String preferredMappingOntology; + @JsonProperty("preferredMappingOntologies") + private final List preferredMappingOntologies; @JsonCreator public ProjectCreationDto(@JsonProperty("name") String name, @JsonProperty("description") String description, - @JsonProperty("datasources") List datasources, - @JsonProperty("ontologies") List ontologies, - @JsonProperty("preferredMappingOntology") String preferredMappingOntology) { + @JsonProperty("datasources") List datasources, + @JsonProperty("ontologies") List ontologies, + @JsonProperty("preferredMappingOntologies") List preferredMappingOntologies) { this.name = name; this.description = description; this.datasources = datasources; this.ontologies = ontologies; - this.preferredMappingOntology = preferredMappingOntology; + this.preferredMappingOntologies = preferredMappingOntologies; } public String getName() { @@ -52,15 +52,15 @@ public String getDescription() { return description; } - public List getDatasources() { + public List getDatasources() { return datasources; } - public String getPreferredMappingOntology() { - return preferredMappingOntology; + public List getOntologies() { + return ontologies; } - public List getOntologies() { - return ontologies; + public List getPreferredMappingOntologies() { + return preferredMappingOntologies; } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java index ef56021..edb7381 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java @@ -27,13 +27,13 @@ public final class ProjectDto implements Serializable { private final String description; @JsonProperty("datasources") - private final List datasources; + private final List datasources; @JsonProperty("ontologies") - private final List ontologies; + private final List ontologies; - @JsonProperty("preferredMappingOntology") - private final String preferredMappingOntology; + @JsonProperty("preferredMappingOntologies") + private final List preferredMappingOntologies; @JsonProperty("created") private final ProvenanceDto created; @@ -42,16 +42,16 @@ public final class ProjectDto implements Serializable { public ProjectDto(@JsonProperty("id") String id, @JsonProperty("name") String name, @JsonProperty("description") String description, - @JsonProperty("datasources") List datasources, - @JsonProperty("ontologies") List ontologies, - @JsonProperty("preferredMappingOntology") String preferredMappingOntology, + @JsonProperty("datasources") List datasources, + @JsonProperty("ontologies") List ontologies, + @JsonProperty("preferredMappingOntologies") List preferredMappingOntologies, @JsonProperty("created") ProvenanceDto created) { this.id = id; this.name = name; this.description = description; this.datasources = datasources; this.ontologies = ontologies; - this.preferredMappingOntology = preferredMappingOntology; + this.preferredMappingOntologies = preferredMappingOntologies; this.created = created; } @@ -67,16 +67,16 @@ public String getDescription() { return description; } - public List getDatasources() { + public List getDatasources() { return datasources; } - public List getOntologies() { + public List getOntologies() { return ontologies; } - public String getPreferredMappingOntology() { - return preferredMappingOntology; + public List getPreferredMappingOntologies() { + return preferredMappingOntologies; } public ProvenanceDto getCreated() { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectMappingConfigDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectMappingConfigDto.java new file mode 100644 index 0000000..9d365ab --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectMappingConfigDto.java @@ -0,0 +1,40 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotEmpty; +import java.io.Serializable; +import java.util.List; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class ProjectMappingConfigDto implements Serializable { + + private static final long serialVersionUID = 5092703110421044505L; + + @NotEmpty + @JsonProperty("field") + private final String field; + + @NotEmpty + @JsonProperty("mappingList") + private final List mappingList; + + @JsonCreator + public ProjectMappingConfigDto(@JsonProperty("field") String field, + @JsonProperty("mappingList") List mappingList) { + this.field = field; + this.mappingList = mappingList; + } + + public String getField() { + return field; + } + + public List getMappingList() { + return mappingList; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ConfigRegistry.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ConfigRegistry.java index 5abbca7..11b3238 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ConfigRegistry.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ConfigRegistry.java @@ -1,6 +1,6 @@ package uk.ac.ebi.spot.ontotools.curation.service; -import uk.ac.ebi.spot.ontotools.curation.domain.ExternalServiceConfig; +import uk.ac.ebi.spot.ontotools.curation.domain.config.ExternalServiceConfig; /** * Class in charge with keeping a registry of services awaiting for real-time configuration updates. diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java index 24e9085..d0c5ee9 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java @@ -3,7 +3,7 @@ import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; -import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.Source; import java.util.List; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ExternalServiceConfigService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ExternalServiceConfigService.java index 270a0b5..42a41a7 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ExternalServiceConfigService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ExternalServiceConfigService.java @@ -1,6 +1,6 @@ package uk.ac.ebi.spot.ontotools.curation.service; -import uk.ac.ebi.spot.ontotools.curation.domain.ExternalServiceConfig; +import uk.ac.ebi.spot.ontotools.curation.domain.config.ExternalServiceConfig; import java.util.List; import java.util.Map; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java index a1c7e20..c72bb10 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java @@ -1,8 +1,8 @@ package uk.ac.ebi.spot.ontotools.curation.service; -import uk.ac.ebi.spot.ontotools.curation.domain.Entity; -import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; -import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import java.util.List; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java index 23253fb..bb06623 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java @@ -1,8 +1,8 @@ package uk.ac.ebi.spot.ontotools.curation.service; -import uk.ac.ebi.spot.ontotools.curation.domain.Entity; -import uk.ac.ebi.spot.ontotools.curation.domain.MappingSuggestion; -import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import java.util.List; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakerService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakerService.java index 5638321..58be5be 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakerService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakerService.java @@ -1,6 +1,6 @@ package uk.ac.ebi.spot.ontotools.curation.service; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; public interface MatchmakerService { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java index 051cce6..614fb32 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java @@ -1,7 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.service; -import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; import java.util.List; import java.util.Map; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java index dac1e2d..1e4b457 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java @@ -1,7 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.service; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import java.util.List; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java index a23c70d..da4d0c4 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java @@ -1,7 +1,6 @@ package uk.ac.ebi.spot.ontotools.curation.service; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import java.util.List; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ConfigRegistryImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ConfigRegistryImpl.java index 32c5aa2..a0038ff 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ConfigRegistryImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ConfigRegistryImpl.java @@ -2,7 +2,7 @@ import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; -import uk.ac.ebi.spot.ontotools.curation.domain.ExternalServiceConfig; +import uk.ac.ebi.spot.ontotools.curation.domain.config.ExternalServiceConfig; import uk.ac.ebi.spot.ontotools.curation.service.ConfigListener; import uk.ac.ebi.spot.ontotools.curation.service.ConfigRegistry; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java index 041ee13..cc8ce13 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java @@ -9,9 +9,9 @@ import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; -import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.rest.dto.dataimport.ImportDataElementDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.dataimport.ImportDataPackageDto; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java index 90966db..09b9860 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java @@ -7,7 +7,7 @@ import org.springframework.data.domain.Pageable; import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; -import uk.ac.ebi.spot.ontotools.curation.domain.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.Source; import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; import uk.ac.ebi.spot.ontotools.curation.repository.EntityRepository; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ExternalServiceConfigServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ExternalServiceConfigServiceImpl.java index c431644..9c55a11 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ExternalServiceConfigServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ExternalServiceConfigServiceImpl.java @@ -4,7 +4,7 @@ import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; -import uk.ac.ebi.spot.ontotools.curation.domain.ExternalServiceConfig; +import uk.ac.ebi.spot.ontotools.curation.domain.config.ExternalServiceConfig; import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; import uk.ac.ebi.spot.ontotools.curation.repository.ExternalServiceConfigRepository; import uk.ac.ebi.spot.ontotools.curation.service.ConfigRegistry; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java index c75a837..06e3339 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java @@ -5,9 +5,9 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; -import uk.ac.ebi.spot.ontotools.curation.domain.Entity; -import uk.ac.ebi.spot.ontotools.curation.domain.Mapping; -import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.repository.MappingRepository; import uk.ac.ebi.spot.ontotools.curation.service.MappingService; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java index 664f7b7..b6b5c5e 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java @@ -5,9 +5,9 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; -import uk.ac.ebi.spot.ontotools.curation.domain.Entity; -import uk.ac.ebi.spot.ontotools.curation.domain.MappingSuggestion; -import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.repository.MappingSuggestionRepository; import uk.ac.ebi.spot.ontotools.curation.service.MappingSuggestionsService; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java index b5c5b82..673ab31 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java @@ -7,11 +7,11 @@ import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; -import uk.ac.ebi.spot.ontotools.curation.domain.Entity; -import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo.OXOMappingResponseDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.zooma.ZoomaResponseDto; @@ -57,8 +57,9 @@ public class MatchmakerServiceImpl implements MatchmakerService { public void runMatchmaking(String sourceId, Project project) { log.info("Running auto-mapping for source: {}", sourceId); User robotUser = userService.retrieveRobotUser(); - project.setOntologies(CurationUtil.toLowerCase(project.getOntologies())); - project.setPreferredMappingOntology(project.getPreferredMappingOntology().toLowerCase()); + project.setOntologies(CurationUtil.configListtoLowerCase(project.getOntologies())); + project.setDatasources(CurationUtil.configListtoLowerCase(project.getDatasources())); + project.setPreferredMappingOntologies(CurationUtil.listToLowerCase(project.getPreferredMappingOntologies())); long sTime = System.currentTimeMillis(); Stream entityStream = entityService.retrieveEntitiesForSource(sourceId); @@ -69,15 +70,18 @@ public void runMatchmaking(String sourceId, Project project) { } private void autoMap(Entity entity, Project project, User user) { + List projectDatasources = CurationUtil.configForField(entity, project.getDatasources()); + List projectOntologies = CurationUtil.configForField(entity, project.getOntologies()); + /** * Retrieve annotations from Zooma from datasources stored in the project */ - List zoomaResults = zoomaService.annotate(entity.getName(), project.getDatasources(), null); + List zoomaResults = zoomaService.annotate(entity.getName(), projectDatasources, null); /** * Retrieve annotations from Zooma from ontologies stored in the project */ - zoomaResults.addAll(zoomaService.annotate(entity.getName(), null, project.getOntologies())); + zoomaResults.addAll(zoomaService.annotate(entity.getName(), null, projectOntologies)); List highConfidenceIRIs = new ArrayList<>(); Set finalIRIs = new HashSet<>(); @@ -98,8 +102,8 @@ private void autoMap(Entity entity, Project project, User user) { /** * Retain only suggestions pertaining to the ontologies of interest (if these have been specified) */ - if (project.getOntologies() != null) { - if (project.getOntologies().contains(CurationUtil.ontoFromIRI(suggestedTermIRI).toLowerCase())) { + if (projectOntologies != null) { + if (projectOntologies.contains(CurationUtil.ontoFromIRI(suggestedTermIRI).toLowerCase())) { finalIRIs.add(suggestedTermIRI); } } else { @@ -171,7 +175,8 @@ private List findExactMapping(Entity entity, List te /** * TODO: Discuss why are so many calls to OLS required */ - List oxoMappings = oxoService.findMapping(Arrays.asList(new String[]{olsTerms.get(0).getCurie()}), project.getOntologies()); + List oxoMappings = oxoService.findMapping(Arrays.asList(new String[]{olsTerms.get(0).getCurie()}), + CurationUtil.configForField(entity, project.getOntologies())); for (OXOMappingResponseDto oxoMappingResponseDto : oxoMappings) { String targetOntoId = oxoMappingResponseDto.getTargetPrefix().toLowerCase(); olsTerms = olsService.retrieveTerms(targetOntoId, oxoMappingResponseDto.getCurie()); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java index 4f21016..ec14c3d 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java @@ -7,8 +7,8 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; -import uk.ac.ebi.spot.ontotools.curation.domain.OntologyTerm; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; import uk.ac.ebi.spot.ontotools.curation.repository.OntologyTermRepository; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; @@ -52,11 +52,14 @@ public OntologyTerm createTerm(String iri, Project project) { return ontologyTermOp.get(); } - List preferredOntoResponse = olsService.retrieveTerms(project.getPreferredMappingOntology(), iri); + List preferredOntoResponse = new ArrayList<>(); + for (String preferredOntology : project.getPreferredMappingOntologies()) { + preferredOntoResponse.addAll(olsService.retrieveTerms(preferredOntology, iri)); + } List parentOntoResponse = new ArrayList<>(); String ontoId = CurationUtil.ontoFromIRI(iri); String termStatus; - if (!ontoId.equalsIgnoreCase(project.getPreferredMappingOntology())) { + if (!project.getPreferredMappingOntologies().contains(ontoId.toLowerCase())) { parentOntoResponse = olsService.retrieveTerms(ontoId, iri); termStatus = parseStatus(preferredOntoResponse, parentOntoResponse, null); } else { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java index a4845ff..03afaa2 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java @@ -5,7 +5,7 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.auth.Role; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.exception.AuthorizationException; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java index 22b7aa3..66ccb0f 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java @@ -1,6 +1,8 @@ package uk.ac.ebi.spot.ontotools.curation.util; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; +import uk.ac.ebi.spot.ontotools.curation.domain.config.ProjectMappingConfig; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import java.util.ArrayList; import java.util.HashMap; @@ -18,7 +20,7 @@ public static List rolesFromStringList(List list) { return projectRoles; } - public static List toLowerCase(List list) { + public static List listToLowerCase(List list) { if (list == null) { return null; } @@ -67,4 +69,39 @@ public static Map parseAliases(List aliasList) { } return map; } + + public static List configListtoLowerCase(List projectMappingConfigs) { + List result = new ArrayList<>(); + for (ProjectMappingConfig projectMappingConfig : projectMappingConfigs) { + result.add(new ProjectMappingConfig(projectMappingConfig.getField().toLowerCase(), listToLowerCase(projectMappingConfig.getMappingList()))); + } + return result; + } + + public static List configForField(Entity entity, List projectMappingConfigs) { + if (entity.getBaseField() == null) { + for (ProjectMappingConfig projectMappingConfig : projectMappingConfigs) { + if (projectMappingConfig.getField().equalsIgnoreCase(ProjectMappingConfig.ALL)) { + return projectMappingConfig.getMappingList(); + } + } + + if (!projectMappingConfigs.isEmpty()) { + return projectMappingConfigs.get(0).getMappingList(); + } + } else { + for (ProjectMappingConfig projectMappingConfig : projectMappingConfigs) { + if (projectMappingConfig.getField().equalsIgnoreCase(entity.getBaseField())) { + return projectMappingConfig.getMappingList(); + } + } + for (ProjectMappingConfig projectMappingConfig : projectMappingConfigs) { + if (projectMappingConfig.getField().equalsIgnoreCase(ProjectMappingConfig.ALL)) { + return projectMappingConfig.getMappingList(); + } + } + } + + return new ArrayList<>(); + } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java index 7f57e9e..8f1a78c 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java @@ -9,7 +9,7 @@ import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.rest.dto.*; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingSuggestionDto; import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 22228f3..9a99a5f 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -21,18 +21,20 @@ import org.springframework.test.web.servlet.setup.MockMvcBuilders; import org.springframework.web.context.WebApplicationContext; import uk.ac.ebi.spot.ontotools.curation.constants.*; -import uk.ac.ebi.spot.ontotools.curation.domain.*; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.auth.AuthToken; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.repository.*; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectCreationDto; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceCreationDto; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.*; import uk.ac.ebi.spot.ontotools.curation.service.MatchmakerService; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; import java.util.ArrayList; +import java.util.Arrays; import java.util.List; import static org.junit.Assert.*; @@ -119,7 +121,12 @@ protected ProjectDto createProject(String name, String token, List datasources, List ontologies, String preferredMappingOntology) throws Exception { String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS; - ProjectCreationDto projectCreationDto = new ProjectCreationDto(name, "Description", datasources, ontologies, preferredMappingOntology); + + + ProjectCreationDto projectCreationDto = new ProjectCreationDto(name, "Description", + datasources != null ? Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", datasources)}) : new ArrayList<>(), + ontologies != null ? Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", ontologies)}) : new ArrayList<>(), + preferredMappingOntology != null ? Arrays.asList(new String[]{preferredMappingOntology}) : new ArrayList<>()); String response = mockMvc.perform(post(endpoint) .contentType(MediaType.APPLICATION_JSON) @@ -139,15 +146,19 @@ protected ProjectDto createProject(String name, String token, if (datasources == null) { assertTrue(actual.getDatasources().isEmpty()); } else { - assertEquals(datasources.size(), actual.getDatasources().size()); + assertEquals(1, actual.getDatasources().size()); + assertEquals("ALL", actual.getDatasources().get(0).getField()); + assertEquals(datasources.size(), actual.getDatasources().get(0).getMappingList().size()); } if (ontologies == null) { assertTrue(actual.getOntologies().isEmpty()); } else { - assertEquals(ontologies.size(), actual.getOntologies().size()); + assertEquals(1, actual.getOntologies().size()); + assertEquals("ALL", actual.getOntologies().get(0).getField()); + assertEquals(ontologies.size(), actual.getOntologies().get(0).getMappingList().size()); } if (preferredMappingOntology != null) { - assertEquals(preferredMappingOntology, actual.getPreferredMappingOntology()); + assertEquals(preferredMappingOntology, actual.getPreferredMappingOntologies().get(0)); } return actual; } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java index 9933474..e069b5e 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java @@ -9,7 +9,7 @@ import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java index b50e223..555292a 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java @@ -9,7 +9,12 @@ import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; import uk.ac.ebi.spot.ontotools.curation.domain.*; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.config.ExternalServiceConfig; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.repository.ExternalServiceConfigRepository; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OXOServiceTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OXOServiceTest.java index 25a2303..ce660bd 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OXOServiceTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OXOServiceTest.java @@ -2,7 +2,7 @@ import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; -import uk.ac.ebi.spot.ontotools.curation.domain.ExternalServiceConfig; +import uk.ac.ebi.spot.ontotools.curation.domain.config.ExternalServiceConfig; import uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo.OXOMappingResponseDto; import uk.ac.ebi.spot.ontotools.curation.service.ConfigRegistry; import uk.ac.ebi.spot.ontotools.curation.service.OXOService; diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java index 2983be9..acd6b38 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java @@ -8,7 +8,7 @@ import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.OntologyTermDto; import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/PlatformAdminControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/PlatformAdminControllerTest.java index f669c8a..2e811e4 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/PlatformAdminControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/PlatformAdminControllerTest.java @@ -6,7 +6,7 @@ import org.springframework.http.MediaType; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; -import uk.ac.ebi.spot.ontotools.curation.domain.ExternalServiceConfig; +import uk.ac.ebi.spot.ontotools.curation.domain.config.ExternalServiceConfig; import uk.ac.ebi.spot.ontotools.curation.repository.ExternalServiceConfigRepository; import uk.ac.ebi.spot.ontotools.curation.rest.dto.config.ExternalServiceConfigDto; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java index d442924..cd7d2bf 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java @@ -6,6 +6,7 @@ import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectMappingConfigDto; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; import java.util.Arrays; @@ -81,9 +82,9 @@ public void shouldUpdateProject() throws Exception { ProjectDto updatedProject = new ProjectDto(projectDto.getId(), "New Name", projectDto.getDescription(), - Arrays.asList(new String[]{"gwas"}), - Arrays.asList(new String[]{"ordo"}), - projectDto.getPreferredMappingOntology(), + Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", Arrays.asList(new String[]{"gwas"}))}), + Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", Arrays.asList(new String[]{"ordo"}))}), + projectDto.getPreferredMappingOntologies(), projectDto.getCreated()); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); @@ -113,9 +114,9 @@ public void shouldNotUpdateProject() throws Exception { ProjectDto updatedProject = new ProjectDto(projectDto.getId(), "New Name", projectDto.getDescription(), - Arrays.asList(new String[]{"gwas"}), - Arrays.asList(new String[]{"ordo"}), - projectDto.getPreferredMappingOntology(), + Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", Arrays.asList(new String[]{"gwas"}))}), + Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", Arrays.asList(new String[]{"ordo"}))}), + projectDto.getPreferredMappingOntologies(), projectDto.getCreated()); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectMappingConfigDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectMappingConfigDtoTest.java new file mode 100644 index 0000000..f72b015 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectMappingConfigDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class ProjectMappingConfigDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(ProjectMappingConfigDto.class) + .verify(); + } + +} \ No newline at end of file From 7172a8df0cdc6d768de2ec89a9022b2933c41565 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Thu, 18 Feb 2021 22:37:06 +0800 Subject: [PATCH 18/72] Added Reviews endpoints to mappings. --- .../curation/constants/CurationConstants.java | 2 + .../controller/MappingReviewsController.java | 76 ++++++++++++ .../curation/service/MappingService.java | 6 +- .../service/impl/MappingServiceImpl.java | 33 +++++- .../ontotools/curation/IntegrationTest.java | 18 +++ .../MappingReviewsControllerTest.java | 111 ++++++++++++++++++ .../curation/MappingsControllerTest.java | 20 +--- 7 files changed, 246 insertions(+), 20 deletions(-) create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingReviewsController.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java index 138a6b0..738f8b7 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -18,6 +18,8 @@ public class CurationConstants { public static final String API_USERS = "/users"; + public static final String API_REVIEWS = "/reviews"; + public static final String API_COMMENTS = "/comments"; public static final String PARAM_ENTITY_ID = "entityId"; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingReviewsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingReviewsController.java new file mode 100644 index 0000000..3acd353 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingReviewsController.java @@ -0,0 +1,76 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.controller; + +import org.joda.time.DateTime; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.web.bind.annotation.*; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.ReviewDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.ReviewDto; +import uk.ac.ebi.spot.ontotools.curation.service.JWTService; +import uk.ac.ebi.spot.ontotools.curation.service.MappingService; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; +import uk.ac.ebi.spot.ontotools.curation.util.HeadersUtil; + +import javax.servlet.http.HttpServletRequest; +import javax.validation.constraints.NotEmpty; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.stream.Collectors; + +@RestController +@RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) +public class MappingReviewsController { + + private static final Logger log = LoggerFactory.getLogger(MappingReviewsController.class); + + @Autowired + private JWTService jwtService; + + @Autowired + private ProjectService projectService; + + @Autowired + private MappingService mappingService; + + /** + * POST /v1/projects/{projectId}/mappings/{mappingId}/reviews + */ + @PostMapping(value = "/{projectId}" + CurationConstants.API_MAPPINGS + "/{mappingId}" + CurationConstants.API_REVIEWS, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.CREATED) + public ReviewDto createReview(@PathVariable String projectId, @PathVariable String mappingId, + @RequestBody @NotEmpty String comment, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to create review on mapping: {} | {}", user.getEmail(), projectId, mappingId); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); + + Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); + Mapping mapping = mappingService.addReviewToMapping(mappingId, comment, provenance); + return ReviewDtoAssembler.assemble(mapping.getReviews().get(mapping.getReviews().size() - 1)); + } + + /** + * GET /v1/projects/{projectId}/mappings/{mappingId}/reviews + */ + @GetMapping(value = "/{projectId}" + CurationConstants.API_MAPPINGS + "/{mappingId}" + CurationConstants.API_REVIEWS, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public List retrieveReviews(@PathVariable String projectId, @PathVariable String mappingId, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to retrieve reviews for mapping: {} | {}", user.getEmail(), projectId, mappingId); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); + + Mapping mapping = mappingService.retrieveMappingById(mappingId); + return mapping.getReviews() != null ? mapping.getReviews().stream().map(ReviewDtoAssembler::assemble).collect(Collectors.toList()) : new ArrayList<>(); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java index c72bb10..7948840 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java @@ -1,9 +1,9 @@ package uk.ac.ebi.spot.ontotools.curation.service; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; -import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import java.util.List; import java.util.Map; @@ -17,4 +17,8 @@ public interface MappingService { List retrieveMappingsForEntity(String entityId); List deleteMappingExcluding(Entity entity, String ontologyTermId); + + Mapping addReviewToMapping(String mappingId, String comment, Provenance provenance); + + Mapping retrieveMappingById(String mappingId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java index 06e3339..039c76b 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java @@ -5,10 +5,12 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.domain.Review; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; -import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; import uk.ac.ebi.spot.ontotools.curation.repository.MappingRepository; import uk.ac.ebi.spot.ontotools.curation.service.MappingService; import uk.ac.ebi.spot.ontotools.curation.service.OntologyTermService; @@ -84,6 +86,10 @@ public List retrieveMappingsForEntity(String entityId) { @Override public List deleteMappingExcluding(Entity entity, String ontologyTermId) { log.info("Deleting mappings for entity [{}] excluding ontology term: {}", entity.getId(), ontologyTermId); + /** + * TODO: Archive the reviews associated with the previous mappings so that they can be restored if need be at a later time. + */ + List mappings = mappingRepository.findByEntityId(entity.getId()); List result = new ArrayList<>(); for (Mapping mapping : mappings) { @@ -94,4 +100,29 @@ public List deleteMappingExcluding(Entity entity, String ontologyTermId) } return result; } + + @Override + public Mapping addReviewToMapping(String mappingId, String comment, Provenance provenance) { + log.info("Adding review to mapping: {}", mappingId); + Optional mappingOp = mappingRepository.findById(mappingId); + if (!mappingOp.isPresent()) { + log.error("Mapping not found: {}", mappingId); + throw new EntityNotFoundException("Mapping not found: " + mappingId); + } + Mapping mapping = mappingOp.get(); + mapping.addReview(new Review(comment, provenance)); + mapping = mappingRepository.save(mapping); + return mapping; + } + + @Override + public Mapping retrieveMappingById(String mappingId) { + log.info("Retrieving mapping: {}", mappingId); + Optional mappingOp = mappingRepository.findById(mappingId); + if (!mappingOp.isPresent()) { + log.error("Mapping not found: {}", mappingId); + throw new EntityNotFoundException("Mapping not found: " + mappingId); + } + return mappingOp.get(); + } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 9a99a5f..0690627 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -39,6 +39,7 @@ import static org.junit.Assert.*; import static org.mockito.Mockito.mock; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; @@ -202,4 +203,21 @@ protected void createEntityTestData(String sourceId, User user) { mappingSuggestionRepository.insert(new MappingSuggestion(null, entity.getId(), mondoTerm.getId(), provenance, null)); mappingRepository.insert(new Mapping(null, entity.getId(), orphaTerm.getId(), false, new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), provenance, null)); } + + protected EntityDto retrieveEntity(String projectId) throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectId + CurationConstants.API_MAPPINGS + + "?entityId=" + entity.getId(); + String response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + EntityDto actual = mapper.readValue(response, new TypeReference() { + }); + return actual; + } + } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java new file mode 100644 index 0000000..af2b82b --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java @@ -0,0 +1,111 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import com.fasterxml.jackson.core.type.TypeReference; +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.MediaType; +import org.springframework.test.context.ContextConfiguration; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.ProvenanceDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.ReviewDto; +import uk.ac.ebi.spot.ontotools.curation.service.MappingService; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; +import uk.ac.ebi.spot.ontotools.curation.service.UserService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; + +import java.util.Arrays; +import java.util.List; + +import static org.junit.Assert.assertEquals; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; + +@ContextConfiguration(classes = {IntegrationTest.MockTaskExecutorConfig.class}) +public class MappingReviewsControllerTest extends IntegrationTest { + + @Autowired + private UserService userService; + + @Autowired + private ProjectService projectService; + + @Autowired + private MappingService mappingService; + + private Project project; + + private SourceDto sourceDto; + + @Override + public void setup() throws Exception { + super.setup(); + List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); + List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); + ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo"); + user1 = userService.findByEmail(user1.getEmail()); + project = projectService.retrieveProject(projectDto.getId(), user1); + sourceDto = super.createSource(project.getId()); + + super.createEntityTestData(sourceDto.getId(), user1); + } + + /** + * POST /v1/projects/{projectId}/mappings/{mappingId}/reviews + */ + @Test + public void shouldCreateReview() throws Exception { + EntityDto actual = super.retrieveEntity(project.getId()); + MappingDto mappingDto = actual.getMappings().get(0); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_REVIEWS; + String response = mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content("New review") + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isCreated()) + .andReturn() + .getResponse() + .getContentAsString(); + + ReviewDto reviewDto = mapper.readValue(response, new TypeReference() { + }); + assertEquals("New review", reviewDto.getComment()); + Mapping mapping = mappingService.retrieveMappingById(mappingDto.getId()); + assertEquals(1, mapping.getReviews().size()); + assertEquals("New review", mapping.getReviews().get(0).getComment()); + } + + /** + * GET /v1/projects/{projectId}/mappings/{mappingId}/reviews + */ + @Test + public void shouldGetReviews() throws Exception { + EntityDto actual = super.retrieveEntity(project.getId()); + MappingDto mappingDto = actual.getMappings().get(0); + mappingService.addReviewToMapping(mappingDto.getId(), "New review", ProvenanceDtoAssembler.disassemble(mappingDto.getCreated())); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_REVIEWS; + String response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + List reviewDtos = mapper.readValue(response, new TypeReference>() { + }); + assertEquals(1, reviewDtos.size()); + assertEquals("New review", reviewDtos.get(0).getComment()); + } +} diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java index e069b5e..fb176d3 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java @@ -25,7 +25,6 @@ import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; -import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; @@ -60,7 +59,7 @@ public void setup() throws Exception { */ @Test public void shouldGetMappings() throws Exception { - EntityDto actual = retrieveEntity(); + EntityDto actual = super.retrieveEntity(project.getId()); assertEquals("Achondroplasia", actual.getName()); assertEquals(EntityStatus.AUTO_MAPPED.name(), actual.getMappingStatus()); @@ -88,7 +87,7 @@ public void shouldGetMappings() throws Exception { */ @Test public void shouldCreateMapping() throws Exception { - EntityDto entityDto = retrieveEntity(); + EntityDto entityDto = super.retrieveEntity(project.getId()); OntologyTermDto ontologyTermDto = null; for (MappingSuggestionDto mappingSuggestionDto : entityDto.getMappingSuggestions()) { if (mappingSuggestionDto.getOntologyTerm().getCurie().equalsIgnoreCase("MONDO:0007037")) { @@ -134,19 +133,4 @@ public void shouldCreateMapping() throws Exception { assertEquals(sourceDto.getId(), actual.getSource().getId()); } - private EntityDto retrieveEntity() throws Exception { - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS - + "?entityId=" + super.entity.getId(); - String response = mockMvc.perform(get(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .header(IDPConstants.JWT_TOKEN, "token1")) - .andExpect(status().isOk()) - .andReturn() - .getResponse() - .getContentAsString(); - - EntityDto actual = mapper.readValue(response, new TypeReference() { - }); - return actual; - } } From bea7cfbcdd6a1ad69fc3dabb496c602d3a9c54c0 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Mon, 22 Feb 2021 20:35:24 +0800 Subject: [PATCH 19/72] Made mappings and mappingSuggestions project dependent. --- .../spot/ontotools/curation/domain/mapping/Entity.java | 3 +++ .../ontotools/curation/domain/mapping/Mapping.java | 3 +++ .../curation/domain/mapping/MappingSuggestion.java | 3 +++ .../curation/repository/EntityRepository.java | 3 +-- .../curation/rest/controller/EntityController.java | 6 +++--- .../curation/rest/controller/SourcesController.java | 6 +++--- .../spot/ontotools/curation/service/EntityService.java | 2 +- .../curation/service/impl/DataImportServiceImpl.java | 2 +- .../curation/service/impl/EntityServiceImpl.java | 10 +++------- .../curation/service/impl/MappingServiceImpl.java | 3 ++- .../service/impl/MappingSuggestionsServiceImpl.java | 2 +- .../spot/ontotools/curation/EntityControllerTest.java | 2 +- .../ebi/spot/ontotools/curation/IntegrationTest.java | 10 +++++----- .../curation/MappingReviewsControllerTest.java | 2 +- .../ontotools/curation/MappingsControllerTest.java | 2 +- .../ebi/spot/ontotools/curation/MatchMakingTest.java | 2 +- 16 files changed, 33 insertions(+), 28 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java index fa550bf..d3995bb 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java @@ -29,6 +29,9 @@ public class Entity { @Indexed private String sourceId; + @Indexed + private String projectId; + private Provenance created; private EntityStatus mappingStatus; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java index f87a9c9..8587fe3 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java @@ -34,6 +34,9 @@ public class Mapping { @Indexed private String ontologyTermId; + @Indexed + private String projectId; + @Indexed private boolean reviewed; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/MappingSuggestion.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/MappingSuggestion.java index fea5c98..7b5fc3a 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/MappingSuggestion.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/MappingSuggestion.java @@ -29,6 +29,9 @@ public class MappingSuggestion { @Indexed private String ontologyTermId; + @Indexed + private String projectId; + private Provenance created; @Transient diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java index c201e71..27924db 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java @@ -5,12 +5,11 @@ import org.springframework.data.mongodb.repository.MongoRepository; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; -import java.util.List; import java.util.stream.Stream; public interface EntityRepository extends MongoRepository { Stream readBySourceId(String sourceId); - Page findBySourceIdIn(List sourceIds, Pageable page); + Page findByProjectId(String projectId, Pageable page); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java index 2ac203e..99217c3 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java @@ -11,11 +11,11 @@ import org.springframework.web.bind.annotation.*; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; +import uk.ac.ebi.spot.ontotools.curation.domain.Source; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; -import uk.ac.ebi.spot.ontotools.curation.domain.Source; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.EntityDtoAssembler; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.SourceDtoAssembler; import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; @@ -69,7 +69,7 @@ public RestResponsePage getEntities(@PathVariable String projectId, @ sourceMap.put(source.getId(), SourceDtoAssembler.assemble(source)); } - Page entities = entityService.retrieveEntitiesForSources(sources, pageable); + Page entities = entityService.retrieveEntitiesForProject(projectId, pageable); List entityIds = entities.get().map(Entity::getId).collect(Collectors.toList()); Map> mappings = mappingService.retrieveMappingsForEntities(entityIds); Map> mappingSuggestions = mappingSuggestionsService.retrieveMappingSuggestionsForEntities(entityIds); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java index e78aca8..2579fe0 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java @@ -12,10 +12,10 @@ import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; -import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.Source; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.SourceDtoAssembler; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceCreationDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; @@ -110,8 +110,8 @@ public void addDataToSource(@RequestBody List entities, @PathVariable St projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); Source source = sourceService.getSource(sourceId, projectId); for (String entity : entities) { - entityService.createEntity(new Entity(null, entity, null, null, - source.getId(), new Provenance(user.getName(), user.getEmail(), DateTime.now()), EntityStatus.UNMAPPED)); + entityService.createEntity(new Entity(null, entity, null, null, source.getId(), + projectId, new Provenance(user.getName(), user.getEmail(), DateTime.now()), EntityStatus.UNMAPPED)); } matchmakerService.runMatchmaking(sourceId, projectService.retrieveProject(projectId, user)); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java index d0c5ee9..b32f261 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java @@ -17,7 +17,7 @@ public interface EntityService { Entity updateMappingStatus(Entity entity, EntityStatus mappingStatus); - Page retrieveEntitiesForSources(List sources, Pageable page); + Page retrieveEntitiesForProject(String projectId, Pageable page); Entity retrieveEntity(String entityId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java index cc8ce13..d252dbf 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java @@ -60,7 +60,7 @@ public void importData(String fileData, String projectId, String sourceId, User int count = 0; for (ImportDataElementDto importDataElementDto : importDataPackageDto.getData()) { entityService.createEntity(new Entity(null, importDataElementDto.getText(), importDataElementDto.getBaseId(), importDataElementDto.getBaseField(), - sourceId, provenance, EntityStatus.UNMAPPED)); + sourceId, projectId, provenance, EntityStatus.UNMAPPED)); count++; if (count % 100 == 0) { log.info(" -- [{} | {}] Progress: {} of {}", projectId, sourceId, count, importDataPackageDto.getData().size()); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java index 09b9860..6851a53 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java @@ -8,14 +8,11 @@ import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; -import uk.ac.ebi.spot.ontotools.curation.domain.Source; import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; import uk.ac.ebi.spot.ontotools.curation.repository.EntityRepository; import uk.ac.ebi.spot.ontotools.curation.service.EntityService; -import java.util.List; import java.util.Optional; -import java.util.stream.Collectors; import java.util.stream.Stream; @Service @@ -55,10 +52,9 @@ public Entity updateMappingStatus(Entity entity, EntityStatus mappingStatus) { } @Override - public Page retrieveEntitiesForSources(List sources, Pageable page) { - log.debug("Retrieving entities for {} sources: {} | {}", sources.size(), page.getPageNumber(), page.getPageSize()); - List sourceIds = sources.stream().map(Source::getId).collect(Collectors.toList()); - Page entityPage = entityRepository.findBySourceIdIn(sourceIds, page); + public Page retrieveEntitiesForProject(String projectId, Pageable page) { + log.debug("Retrieving entities for {} sources: {} | {}", projectId, page.getPageNumber(), page.getPageSize()); + Page entityPage = entityRepository.findByProjectId(projectId, page); log.debug("Found {} entities.", entityPage.getContent().size()); return entityPage; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java index 039c76b..3913eb7 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java @@ -38,7 +38,8 @@ public Mapping createMapping(Entity entity, OntologyTerm ontologyTerm, Provenanc return mappingOp.get(); } - Mapping created = mappingRepository.insert(new Mapping(null, entity.getId(), ontologyTerm.getId(), false, new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), provenance, null)); + Mapping created = mappingRepository.insert(new Mapping(null, entity.getId(), ontologyTerm.getId(), entity.getProjectId(), + false, new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), provenance, null)); log.info("Mapping for between entity [{}] and ontology term [{}] created: {}", entity.getName(), ontologyTerm.getCurie(), created.getId()); return created; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java index b6b5c5e..8e82cbd 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java @@ -36,7 +36,7 @@ public MappingSuggestion createMappingSuggestion(Entity entity, OntologyTerm ont return mappingSuggestionOp.get(); } - MappingSuggestion created = mappingSuggestionRepository.insert(new MappingSuggestion(null, entity.getId(), ontologyTerm.getId(), provenance, null)); + MappingSuggestion created = mappingSuggestionRepository.insert(new MappingSuggestion(null, entity.getId(), ontologyTerm.getId(), entity.getProjectId(), provenance, null)); log.info("[{} | {}] Mapping suggestion created: {}", entity.getName(), ontologyTerm.getCurie(), created.getId()); return created; } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java index 8f1a78c..94680a4 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java @@ -46,7 +46,7 @@ public void setup() throws Exception { project = projectService.retrieveProject(projectDto.getId(), user1); sourceDto = super.createSource(project.getId()); - super.createEntityTestData(sourceDto.getId(), user1); + super.createEntityTestData(sourceDto.getId(), project.getId(), user1); } /** diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 0690627..3bb8210 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -188,10 +188,10 @@ protected SourceDto createSource(String projectId) throws Exception { return actual; } - protected void createEntityTestData(String sourceId, User user) { + protected void createEntityTestData(String sourceId, String projectId, User user) { Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); entity = entityRepository.insert(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), - RandomStringUtils.randomAlphabetic(10), sourceId, provenance, EntityStatus.AUTO_MAPPED)); + RandomStringUtils.randomAlphabetic(10), sourceId, projectId, provenance, EntityStatus.AUTO_MAPPED)); OntologyTerm orphaTerm = ontologyTermRepository.insert(new OntologyTerm(null, "Orphanet:15", "http://www.orpha.net/ORDO/Orphanet_15", DigestUtils.sha256Hex("http://www.orpha.net/ORDO/Orphanet_15"), "Achondroplasia", TermStatus.CURRENT.name(), null, null)); @@ -199,9 +199,9 @@ protected void createEntityTestData(String sourceId, User user) { OntologyTerm mondoTerm = ontologyTermRepository.insert(new OntologyTerm(null, "MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", DigestUtils.sha256Hex("http://purl.obolibrary.org/obo/MONDO_0007037"), "Achondroplasia", TermStatus.NEEDS_IMPORT.name(), null, null)); - mappingSuggestionRepository.insert(new MappingSuggestion(null, entity.getId(), orphaTerm.getId(), provenance, null)); - mappingSuggestionRepository.insert(new MappingSuggestion(null, entity.getId(), mondoTerm.getId(), provenance, null)); - mappingRepository.insert(new Mapping(null, entity.getId(), orphaTerm.getId(), false, new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), provenance, null)); + mappingSuggestionRepository.insert(new MappingSuggestion(null, entity.getId(), orphaTerm.getId(), projectId, provenance, null)); + mappingSuggestionRepository.insert(new MappingSuggestion(null, entity.getId(), mondoTerm.getId(), projectId, provenance, null)); + mappingRepository.insert(new Mapping(null, entity.getId(), orphaTerm.getId(), projectId, false, new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), provenance, null)); } protected EntityDto retrieveEntity(String projectId) throws Exception { diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java index af2b82b..1c9fcd0 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java @@ -54,7 +54,7 @@ public void setup() throws Exception { project = projectService.retrieveProject(projectDto.getId(), user1); sourceDto = super.createSource(project.getId()); - super.createEntityTestData(sourceDto.getId(), user1); + super.createEntityTestData(sourceDto.getId(), project.getId(), user1); } /** diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java index fb176d3..bfb6c92 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java @@ -51,7 +51,7 @@ public void setup() throws Exception { project = projectService.retrieveProject(projectDto.getId(), user1); sourceDto = super.createSource(project.getId()); - super.createEntityTestData(sourceDto.getId(), user1); + super.createEntityTestData(sourceDto.getId(), project.getId(), user1); } /** diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java index 555292a..e647ba5 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java @@ -82,7 +82,7 @@ public void setup() throws Exception { * - Retinal dystrophy */ entity = entityService.createEntity(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), - RandomStringUtils.randomAlphabetic(10), sourceDto.getId(), provenance, EntityStatus.UNMAPPED)); + RandomStringUtils.randomAlphabetic(10), sourceDto.getId(), project.getId(), provenance, EntityStatus.UNMAPPED)); } @Test From 51ec76ad63b51b290b45d05c77ed9837f18b8566 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Mon, 22 Feb 2021 21:23:34 +0800 Subject: [PATCH 20/72] Fixed mapping status assignment. --- .../ac/ebi/spot/ontotools/curation/constants/MappingStatus.java | 2 +- .../ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java | 2 ++ .../ontotools/curation/service/impl/MappingServiceImpl.java | 1 + 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/MappingStatus.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/MappingStatus.java index cb8a581..5bf8e8f 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/MappingStatus.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/MappingStatus.java @@ -4,6 +4,6 @@ public enum MappingStatus { AWAITING_REVIEW, REVIEW_IN_PROGRESS, - FINALIZED + REQUIRED_REVIEWS_REACHED } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java index 8587fe3..648e1e7 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java @@ -11,6 +11,7 @@ import org.springframework.data.mongodb.core.index.Indexed; import org.springframework.data.mongodb.core.mapping.Document; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.Review; @@ -56,6 +57,7 @@ public void addReview(Review review) { this.reviews.add(review); if (this.reviews.size() >= CurationConstants.NO_REVIEWS_REQUIRED) { this.reviewed = true; + this.status = MappingStatus.REQUIRED_REVIEWS_REACHED.name(); } } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java index 3913eb7..1fe1438 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java @@ -111,6 +111,7 @@ public Mapping addReviewToMapping(String mappingId, String comment, Provenance p throw new EntityNotFoundException("Mapping not found: " + mappingId); } Mapping mapping = mappingOp.get(); + mapping.setStatus(MappingStatus.REVIEW_IN_PROGRESS.name()); mapping.addReview(new Review(comment, provenance)); mapping = mappingRepository.save(mapping); return mapping; From b841924c39c794e542bb9d01ba6a2daa39a05dd2 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Mon, 22 Feb 2021 22:20:21 +0800 Subject: [PATCH 21/72] Added comments functionality. --- .../curation/domain/mapping/Comment.java | 23 +--- .../curation/domain/mapping/Mapping.java | 2 + .../rest/assembler/CommentDtoAssembler.java | 11 ++ .../rest/assembler/MappingDtoAssembler.java | 1 + .../controller/MappingCommentsController.java | 76 ++++++++++++ .../controller/MappingReviewsController.java | 3 +- .../curation/rest/dto/mapping/CommentDto.java | 40 +++++++ .../curation/rest/dto/mapping/MappingDto.java | 9 ++ .../curation/rest/dto/mapping/ReviewDto.java | 5 +- .../curation/service/MappingService.java | 2 + .../service/impl/MappingServiceImpl.java | 20 +++- .../ontotools/curation/IntegrationTest.java | 2 +- .../MappingCommentsControllerTest.java | 111 ++++++++++++++++++ .../MappingReviewsControllerTest.java | 32 ++++- 14 files changed, 309 insertions(+), 28 deletions(-) create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/CommentDtoAssembler.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingCommentsController.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/CommentDto.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Comment.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Comment.java index e6d6dce..a74b98d 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Comment.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Comment.java @@ -1,32 +1,15 @@ package uk.ac.ebi.spot.ontotools.curation.domain.mapping; +import lombok.AllArgsConstructor; import lombok.Getter; -import lombok.Setter; -import org.springframework.data.annotation.Id; -import org.springframework.data.mongodb.core.mapping.Document; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; -@Document(collection = "comments") @Getter -@Setter +@AllArgsConstructor public class Comment { - @Id - private String id; - - private String mappedTraitId; - - private Provenance created; - private String body; - public Comment() { - - } + private Provenance created; - public Comment(String mappedTraitId, String body, Provenance created) { - this.mappedTraitId = mappedTraitId; - this.created = created; - this.body = body; - } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java index 648e1e7..9fe958b 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java @@ -43,6 +43,8 @@ public class Mapping { private List reviews; + private List comments; + private String status; private Provenance created; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/CommentDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/CommentDtoAssembler.java new file mode 100644 index 0000000..34792e5 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/CommentDtoAssembler.java @@ -0,0 +1,11 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.assembler; + +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Comment; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.CommentDto; + +public class CommentDtoAssembler { + + public static CommentDto assemble(Comment comment) { + return new CommentDto(comment.getBody(), ProvenanceDtoAssembler.assemble(comment.getCreated())); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java index 9a7856c..139b245 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java @@ -15,6 +15,7 @@ public static MappingDto assemble(Mapping mapping) { mapping.isReviewed(), mapping.getStatus(), mapping.getReviews() != null ? mapping.getReviews().stream().map(ReviewDtoAssembler::assemble).collect(Collectors.toList()) : new ArrayList<>(), + mapping.getComments() != null ? mapping.getComments().stream().map(CommentDtoAssembler::assemble).collect(Collectors.toList()) : new ArrayList<>(), ProvenanceDtoAssembler.assemble(mapping.getCreated())); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingCommentsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingCommentsController.java new file mode 100644 index 0000000..3bdba6a --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingCommentsController.java @@ -0,0 +1,76 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.controller; + +import org.joda.time.DateTime; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.web.bind.annotation.*; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.CommentDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.CommentDto; +import uk.ac.ebi.spot.ontotools.curation.service.JWTService; +import uk.ac.ebi.spot.ontotools.curation.service.MappingService; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; +import uk.ac.ebi.spot.ontotools.curation.util.HeadersUtil; + +import javax.servlet.http.HttpServletRequest; +import javax.validation.constraints.NotEmpty; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.stream.Collectors; + +@RestController +@RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) +public class MappingCommentsController { + + private static final Logger log = LoggerFactory.getLogger(MappingCommentsController.class); + + @Autowired + private JWTService jwtService; + + @Autowired + private ProjectService projectService; + + @Autowired + private MappingService mappingService; + + /** + * POST /v1/projects/{projectId}/mappings/{mappingId}/comments + */ + @PostMapping(value = "/{projectId}" + CurationConstants.API_MAPPINGS + "/{mappingId}" + CurationConstants.API_COMMENTS, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.CREATED) + public CommentDto createComment(@PathVariable String projectId, @PathVariable String mappingId, + @RequestBody @NotEmpty String body, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to create comment on mapping: {} | {}", user.getEmail(), projectId, mappingId); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR, ProjectRole.CONSUMER})); + + Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); + Mapping mapping = mappingService.addCommentToMapping(mappingId, body, provenance); + return CommentDtoAssembler.assemble(mapping.getComments().get(mapping.getComments().size() - 1)); + } + + /** + * GET /v1/projects/{projectId}/mappings/{mappingId}/comments + */ + @GetMapping(value = "/{projectId}" + CurationConstants.API_MAPPINGS + "/{mappingId}" + CurationConstants.API_COMMENTS, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public List retrieveReviews(@PathVariable String projectId, @PathVariable String mappingId, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to retrieve comments for mapping: {} | {}", user.getEmail(), projectId, mappingId); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR, ProjectRole.CONSUMER})); + + Mapping mapping = mappingService.retrieveMappingById(mappingId); + return mapping.getReviews() != null ? mapping.getComments().stream().map(CommentDtoAssembler::assemble).collect(Collectors.toList()) : new ArrayList<>(); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingReviewsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingReviewsController.java index 3acd353..e689930 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingReviewsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingReviewsController.java @@ -21,7 +21,6 @@ import uk.ac.ebi.spot.ontotools.curation.util.HeadersUtil; import javax.servlet.http.HttpServletRequest; -import javax.validation.constraints.NotEmpty; import java.util.ArrayList; import java.util.Arrays; import java.util.List; @@ -49,7 +48,7 @@ public class MappingReviewsController { produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.CREATED) public ReviewDto createReview(@PathVariable String projectId, @PathVariable String mappingId, - @RequestBody @NotEmpty String comment, HttpServletRequest request) { + @RequestBody String comment, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to create review on mapping: {} | {}", user.getEmail(), projectId, mappingId); projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/CommentDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/CommentDto.java new file mode 100644 index 0000000..d5af7b8 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/CommentDto.java @@ -0,0 +1,40 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProvenanceDto; + +import javax.validation.constraints.NotNull; +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class CommentDto implements Serializable { + + private static final long serialVersionUID = -3975761372901822735L; + + @NotNull + @JsonProperty("body") + private final String body; + + @NotNull + @JsonProperty("created") + private final ProvenanceDto created; + + @JsonCreator + public CommentDto(@JsonProperty("body") String body, + @JsonProperty("created") ProvenanceDto created) { + this.body = body; + this.created = created; + } + + public String getBody() { + return body; + } + + public ProvenanceDto getCreated() { + return created; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingDto.java index 21b17c7..0c8bda7 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingDto.java @@ -37,6 +37,9 @@ public final class MappingDto implements Serializable { @JsonProperty("reviews") private final List reviews; + @JsonProperty("comments") + private final List comments; + @NotNull @JsonProperty("created") private final ProvenanceDto created; @@ -48,6 +51,7 @@ public MappingDto(@JsonProperty("id") String id, @JsonProperty("reviewed") boolean reviewed, @JsonProperty("status") String status, @JsonProperty("reviews") List reviews, + @JsonProperty("comments") List comments, @JsonProperty("created") ProvenanceDto created) { this.id = id; this.entityId = entityId; @@ -55,6 +59,7 @@ public MappingDto(@JsonProperty("id") String id, this.reviewed = reviewed; this.status = status; this.reviews = reviews; + this.comments = comments; this.created = created; } @@ -82,6 +87,10 @@ public List getReviews() { return reviews; } + public List getComments() { + return comments; + } + public ProvenanceDto getCreated() { return created; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/ReviewDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/ReviewDto.java index d9359b1..db6a945 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/ReviewDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/ReviewDto.java @@ -6,7 +6,7 @@ import lombok.EqualsAndHashCode; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProvenanceDto; -import javax.validation.constraints.NotNull; +import javax.validation.constraints.NotEmpty; import java.io.Serializable; @EqualsAndHashCode @@ -15,11 +15,10 @@ public final class ReviewDto implements Serializable { private static final long serialVersionUID = -3975761372901822735L; - @NotNull @JsonProperty("comment") private final String comment; - @NotNull + @NotEmpty @JsonProperty("created") private final ProvenanceDto created; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java index 7948840..e809c1f 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java @@ -21,4 +21,6 @@ public interface MappingService { Mapping addReviewToMapping(String mappingId, String comment, Provenance provenance); Mapping retrieveMappingById(String mappingId); + + Mapping addCommentToMapping(String mappingId, String body, Provenance provenance); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java index 1fe1438..b2f815c 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java @@ -7,6 +7,7 @@ import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.Review; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Comment; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; @@ -39,7 +40,7 @@ public Mapping createMapping(Entity entity, OntologyTerm ontologyTerm, Provenanc } Mapping created = mappingRepository.insert(new Mapping(null, entity.getId(), ontologyTerm.getId(), entity.getProjectId(), - false, new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), provenance, null)); + false, new ArrayList<>(), new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), provenance, null)); log.info("Mapping for between entity [{}] and ontology term [{}] created: {}", entity.getName(), ontologyTerm.getCurie(), created.getId()); return created; } @@ -127,4 +128,21 @@ public Mapping retrieveMappingById(String mappingId) { } return mappingOp.get(); } + + @Override + public Mapping addCommentToMapping(String mappingId, String body, Provenance provenance) { + log.info("Adding comment to mapping: {}", mappingId); + Optional mappingOp = mappingRepository.findById(mappingId); + if (!mappingOp.isPresent()) { + log.error("Mapping not found: {}", mappingId); + throw new EntityNotFoundException("Mapping not found: " + mappingId); + } + Mapping mapping = mappingOp.get(); + if (mapping.getComments() == null) { + mapping.setComments(new ArrayList<>()); + } + mapping.getComments().add(new Comment(body, provenance)); + mapping = mappingRepository.save(mapping); + return mapping; + } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 3bb8210..6b08fe8 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -201,7 +201,7 @@ protected void createEntityTestData(String sourceId, String projectId, User user mappingSuggestionRepository.insert(new MappingSuggestion(null, entity.getId(), orphaTerm.getId(), projectId, provenance, null)); mappingSuggestionRepository.insert(new MappingSuggestion(null, entity.getId(), mondoTerm.getId(), projectId, provenance, null)); - mappingRepository.insert(new Mapping(null, entity.getId(), orphaTerm.getId(), projectId, false, new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), provenance, null)); + mappingRepository.insert(new Mapping(null, entity.getId(), orphaTerm.getId(), projectId, false, new ArrayList<>(), new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), provenance, null)); } protected EntityDto retrieveEntity(String projectId) throws Exception { diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java new file mode 100644 index 0000000..9369d44 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java @@ -0,0 +1,111 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import com.fasterxml.jackson.core.type.TypeReference; +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.MediaType; +import org.springframework.test.context.ContextConfiguration; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.ProvenanceDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.CommentDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; +import uk.ac.ebi.spot.ontotools.curation.service.MappingService; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; +import uk.ac.ebi.spot.ontotools.curation.service.UserService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; + +import java.util.Arrays; +import java.util.List; + +import static org.junit.Assert.assertEquals; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; + +@ContextConfiguration(classes = {IntegrationTest.MockTaskExecutorConfig.class}) +public class MappingCommentsControllerTest extends IntegrationTest { + + @Autowired + private UserService userService; + + @Autowired + private ProjectService projectService; + + @Autowired + private MappingService mappingService; + + private Project project; + + private SourceDto sourceDto; + + @Override + public void setup() throws Exception { + super.setup(); + List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); + List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); + ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo"); + user1 = userService.findByEmail(user1.getEmail()); + project = projectService.retrieveProject(projectDto.getId(), user1); + sourceDto = super.createSource(project.getId()); + + super.createEntityTestData(sourceDto.getId(), project.getId(), user1); + } + + /** + * POST /v1/projects/{projectId}/mappings/{mappingId}/comments + */ + @Test + public void shouldCreateReview() throws Exception { + EntityDto actual = super.retrieveEntity(project.getId()); + MappingDto mappingDto = actual.getMappings().get(0); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_COMMENTS; + String response = mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content("New comment") + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isCreated()) + .andReturn() + .getResponse() + .getContentAsString(); + + CommentDto commentDto = mapper.readValue(response, new TypeReference() { + }); + assertEquals("New comment", commentDto.getBody()); + Mapping mapping = mappingService.retrieveMappingById(mappingDto.getId()); + assertEquals(1, mapping.getComments().size()); + assertEquals("New comment", mapping.getComments().get(0).getBody()); + } + + /** + * GET /v1/projects/{projectId}/mappings/{mappingId}/comments + */ + @Test + public void shouldGetReviews() throws Exception { + EntityDto actual = super.retrieveEntity(project.getId()); + MappingDto mappingDto = actual.getMappings().get(0); + mappingService.addCommentToMapping(mappingDto.getId(), "New comment", ProvenanceDtoAssembler.disassemble(mappingDto.getCreated())); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_COMMENTS; + String response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + List commentDtos = mapper.readValue(response, new TypeReference>() { + }); + assertEquals(1, commentDtos.size()); + assertEquals("New comment", commentDtos.get(0).getBody()); + } +} diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java index 1c9fcd0..470e8f2 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java @@ -7,6 +7,7 @@ import org.springframework.test.context.ContextConfiguration; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.ProvenanceDtoAssembler; @@ -23,7 +24,7 @@ import java.util.Arrays; import java.util.List; -import static org.junit.Assert.assertEquals; +import static org.junit.Assert.*; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; @@ -82,6 +83,35 @@ public void shouldCreateReview() throws Exception { Mapping mapping = mappingService.retrieveMappingById(mappingDto.getId()); assertEquals(1, mapping.getReviews().size()); assertEquals("New review", mapping.getReviews().get(0).getComment()); + assertFalse(mapping.isReviewed()); + assertEquals(MappingStatus.REVIEW_IN_PROGRESS.name(), mapping.getStatus()); + } + + /** + * POST /v1/projects/{projectId}/mappings/{mappingId}/reviews + */ + @Test + public void shouldCreateReviewedMapping() throws Exception { + EntityDto actual = super.retrieveEntity(project.getId()); + MappingDto mappingDto = actual.getMappings().get(0); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_REVIEWS; + + for (int i = 0; i < 3; i++) { + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content("New review") + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isCreated()) + .andReturn() + .getResponse() + .getContentAsString(); + } + + Mapping mapping = mappingService.retrieveMappingById(mappingDto.getId()); + assertTrue(mapping.isReviewed()); + assertEquals(MappingStatus.REQUIRED_REVIEWS_REACHED.name(), mapping.getStatus()); } /** From 4369dac5453cf8bee1baadc129d438b1ec251c6e Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Tue, 23 Feb 2021 20:41:08 +0800 Subject: [PATCH 22/72] Changed data import format. --- .../dto/dataimport/ImportDataElementDto.java | 28 +- .../service/impl/DataImportServiceImpl.java | 6 +- src/test/resources/import_test.json | 24886 ++++++++-------- 3 files changed, 12460 insertions(+), 12460 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataElementDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataElementDto.java index f9369d3..6d0880c 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataElementDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataElementDto.java @@ -14,34 +14,34 @@ public final class ImportDataElementDto implements Serializable { private static final long serialVersionUID = -472202121082840265L; - @JsonProperty("baseId") - private final String baseId; + @JsonProperty("upstreamId") + private final String upstreamId; @NotEmpty @JsonProperty("text") private final String text; - @JsonProperty("baseField") - private final String baseField; + @JsonProperty("upstreamField") + private final String upstreamField; @JsonCreator public ImportDataElementDto(@JsonProperty("text") String text, - @JsonProperty("baseId") String baseId, - @JsonProperty("baseField") String baseField) { - this.baseId = baseId; + @JsonProperty("upstreamId") String upstreamId, + @JsonProperty("upstreamField") String upstreamField) { + this.upstreamId = upstreamId; this.text = text; - this.baseField = baseField; - } - - public String getBaseId() { - return baseId; + this.upstreamField = upstreamField; } public String getText() { return text; } - public String getBaseField() { - return baseField; + public String getUpstreamId() { + return upstreamId; + } + + public String getUpstreamField() { + return upstreamField; } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java index d252dbf..1b01f81 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java @@ -9,10 +9,10 @@ import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; -import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; -import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.rest.dto.dataimport.ImportDataElementDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.dataimport.ImportDataPackageDto; import uk.ac.ebi.spot.ontotools.curation.service.DataImportService; @@ -59,7 +59,7 @@ public void importData(String fileData, String projectId, String sourceId, User log.info("Creating entities ..."); int count = 0; for (ImportDataElementDto importDataElementDto : importDataPackageDto.getData()) { - entityService.createEntity(new Entity(null, importDataElementDto.getText(), importDataElementDto.getBaseId(), importDataElementDto.getBaseField(), + entityService.createEntity(new Entity(null, importDataElementDto.getText(), importDataElementDto.getUpstreamId(), importDataElementDto.getUpstreamField(), sourceId, projectId, provenance, EntityStatus.UNMAPPED)); count++; if (count % 100 == 0) { diff --git a/src/test/resources/import_test.json b/src/test/resources/import_test.json index b775677..009b588 100644 --- a/src/test/resources/import_test.json +++ b/src/test/resources/import_test.json @@ -1,49775 +1,49775 @@ { "data": [ { - "baseId": "15041|15042|133857|133858|133859|133860|133861|133862|133863|133864|207487|221702|240085|240086|240087|240088|240089|240090|240092|240093|240094|240095|240098|303075|303076|303080|303081|303082|303084|303091|303095|303096|303097|303104|303107|303109|303114|303115|303116|303118|303133|303134|303138|303146|303149|303150|303152|303156|303158|303159|303160|303166|303173|306349|306352|306365|306366|306374|306377|306381|306389|306390|306391|306393|306396|306399|306410|306418|306424|306426|306428|306432|306433|306434|306436|306438|306439|306443|311176|311178|311193|311196|311203|311207|311208|311209|311212|311213|311217|311218|311219|311228|311229|311231|311234|311237|311249|311251|311255|311256|311275|311291|311292|311294|311298|311307|311309|311311|311313|311318|311319|311321|311327|311331|311337|311339|311358|311359|311360|311368|311369|311384|311387|311398|311404|311405|311408|311409|311412|311422|311436|311437|311438|311444|311446|311451|311452|311455|311456|362089|362090|362091|362092|395615|395654|395884|395887|395905|395906|395917|396011|396015|396018|396306|396318|396319|396330|411562|411563|438803|441133|441136|441137|456744|457173|457177|457370|457372|457382|522686|522693|522696|522700|522710|522931|522940|522941|522944|522946|523106|523107|561626|561630|561635|561637|561959|561968|561971|561975|561979|561983|561988|566877|566887|566911|577002|577003|577004|581712|620264|620265|636174|636175|636176|636177|636178|636179|636180|636181|636182|636183|636184|636185|636186|636187|636188|636189|636190|636191|636192|636193|636194|636195|636196|636197|636198|636199|651679|651682|651684|651735|683898|683899|683900|683902|683903|683904|683906|683908|683909|683910|683912|683913|685222|685223|687059|687062|687064|687065|687068|687070|687071|687075|689872|689873|689874|689875|689877|692247|692249|692250|722551|744411|759685|833626|833627|833628|833629|833630|833631|833632|833633|833634|833635|833636|833637|833638|833639|833640|833641|833642|833643|898135|898136|898137|898138|898139|898140|898141|898142|898143|898144|898145|898146|898147|898148|898149|898150|898151|898152|898153|898154|898155|898156|898157|898158|898159|898160|898161|898162|898163|898164|898165|898166|898167|898168|898169|898170|898171|898172|898173|898174|898175|898176|898177|898178|898179|898180|898181|898182|898183|898184|898185|898186|898187|898188|898189|898190|898191|898192|898193|898194|898195|898196|898197|898198|898199|898200|898201|898202|898203|898204|898205|898206|898207|898208|898209|898210|898211|898212|898213|898214|898215|898216|898217|898218|898219|898220|898221|898222|898223|898224|898225|898226|898227|898228|898229|898230|898231|898232|898233|898234|898235|898236|898237|898238|898239|898240|898241|900369|900370|900371|900372|900373|900374|900375|924859|924860|924861|924862|924863|924864|933894|933895|940076|945638|945639|945640|945641|945642|945643|945644|955161|955162|963149", + "upstreamId": "15041|15042|133857|133858|133859|133860|133861|133862|133863|133864|207487|221702|240085|240086|240087|240088|240089|240090|240092|240093|240094|240095|240098|303075|303076|303080|303081|303082|303084|303091|303095|303096|303097|303104|303107|303109|303114|303115|303116|303118|303133|303134|303138|303146|303149|303150|303152|303156|303158|303159|303160|303166|303173|306349|306352|306365|306366|306374|306377|306381|306389|306390|306391|306393|306396|306399|306410|306418|306424|306426|306428|306432|306433|306434|306436|306438|306439|306443|311176|311178|311193|311196|311203|311207|311208|311209|311212|311213|311217|311218|311219|311228|311229|311231|311234|311237|311249|311251|311255|311256|311275|311291|311292|311294|311298|311307|311309|311311|311313|311318|311319|311321|311327|311331|311337|311339|311358|311359|311360|311368|311369|311384|311387|311398|311404|311405|311408|311409|311412|311422|311436|311437|311438|311444|311446|311451|311452|311455|311456|362089|362090|362091|362092|395615|395654|395884|395887|395905|395906|395917|396011|396015|396018|396306|396318|396319|396330|411562|411563|438803|441133|441136|441137|456744|457173|457177|457370|457372|457382|522686|522693|522696|522700|522710|522931|522940|522941|522944|522946|523106|523107|561626|561630|561635|561637|561959|561968|561971|561975|561979|561983|561988|566877|566887|566911|577002|577003|577004|581712|620264|620265|636174|636175|636176|636177|636178|636179|636180|636181|636182|636183|636184|636185|636186|636187|636188|636189|636190|636191|636192|636193|636194|636195|636196|636197|636198|636199|651679|651682|651684|651735|683898|683899|683900|683902|683903|683904|683906|683908|683909|683910|683912|683913|685222|685223|687059|687062|687064|687065|687068|687070|687071|687075|689872|689873|689874|689875|689877|692247|692249|692250|722551|744411|759685|833626|833627|833628|833629|833630|833631|833632|833633|833634|833635|833636|833637|833638|833639|833640|833641|833642|833643|898135|898136|898137|898138|898139|898140|898141|898142|898143|898144|898145|898146|898147|898148|898149|898150|898151|898152|898153|898154|898155|898156|898157|898158|898159|898160|898161|898162|898163|898164|898165|898166|898167|898168|898169|898170|898171|898172|898173|898174|898175|898176|898177|898178|898179|898180|898181|898182|898183|898184|898185|898186|898187|898188|898189|898190|898191|898192|898193|898194|898195|898196|898197|898198|898199|898200|898201|898202|898203|898204|898205|898206|898207|898208|898209|898210|898211|898212|898213|898214|898215|898216|898217|898218|898219|898220|898221|898222|898223|898224|898225|898226|898227|898228|898229|898230|898231|898232|898233|898234|898235|898236|898237|898238|898239|898240|898241|900369|900370|900371|900372|900373|900374|900375|924859|924860|924861|924862|924863|924864|933894|933895|940076|945638|945639|945640|945641|945642|945643|945644|955161|955162|963149", "text": "Spastic paraplegia 48, autosomal recessive" }, { - "baseId": "15043|136283|136284|171113|172286|172287|204986|204987|204988|204989|204990|204991|205481|227158|539062|578520|623016|791491|791492|792609|798689", + "upstreamId": "15043|136283|136284|171113|172286|172287|204986|204987|204988|204989|204990|204991|205481|227158|539062|578520|623016|791491|791492|792609|798689", "text": "Galloway-Mowat syndrome 1" }, { - "baseId": "15044|15045|40005|101651|211503|444750|858564|903577|920295|969169", + "upstreamId": "15044|15045|40005|101651|211503|444750|858564|903577|920295|969169", "text": "Mitochondrial complex 1 deficiency, nuclear type 19" }, { - "baseId": "15044|16633|21206|21208|21209|21210|21926|22550|23781|24588|24594|24618|24620|24628|24677|24680|24681|24682|24683|24684|24686|24689|24690|24691|24695|24702|24705|24706|24709|24713|24714|24715|24719|24723|24724|24726|24727|24728|24731|24733|24734|24735|24737|24741|24744|24748|24749|24750|24751|24752|24753|24754|24755|24757|24760|24761|24763|24764|24765|24766|24767|24768|24769|24773|27801|27809|33920|38953|38954|48426|48652|48741|76416|76417|76418|76419|76420|76422|76424|76425|76428|101651|134284|134576|135131|135132|135137|135140|135141|135142|135145|135146|135147|135148|135720|135721|135722|135723|135724|135725|135726|135727|135728|135729|135730|140205|140206|140208|140300|140698|140701|140702|140703|140704|140705|140706|140707|140708|140709|140710|140711|140712|140713|140714|140716|140719|140795|140797|140798|140799|140800|140801|140803|140804|140805|140806|142139|142140|142143|142160|142176|142177|142178|142179|142182|142183|142185|142193|142194|142195|142197|142200|142201|142202|142204|142205|142207|142780|142781|142782|142783|143075|143076|143077|143078|143079|143080|143081|143082|150279|150282|150284|150956|151538|151589|152315|152315|153600|153604|153605|153614|153615|153616|153623|153625|153647|153648|165629|165630|165631|165633|165634|165636|165637|165638|165639|165640|165641|165642|165643|166157|166206|166207|166345|166346|170202|200131|200139|200140|205801|210741|210767|210768|210777|210796|210797|210803|210805|210807|210867|211155|211156|211157|211157|211166|211170|211343|211357|211358|211359|211361|211362|211363|211364|211367|211368|211368|211371|211469|211476|211515|211516|211536|211537|211538|211541|211544|211554|211555|211559|211564|211565|211777|211864|211866|211928|213588|213613|221617|221618|221618|224306|226816|226817|226818|226821|226822|226823|226824|226825|226826|226977|233454|233464|233464|236824|236826|236829|236915|236947|236981|237002|237030|237056|237064|237206|237218|237304|237307|237308|237334|237351|237378|237380|237398|237423|237424|237461|237470|239799|239805|239806|239817|239820|239843|239848|244160|247210|247211|247306|247307|247308|247309|247310|247311|247314|251937|251940|251943|264486|274559|274971|275552|284146|284147|284148|284149|284167|284169|284709|284909|284911|284912|284913|284922|284926|285379|285380|285385|285460|285461|285462|285470|285471|285475|285476|285478|285479|285480|285483|285484|285485|286125|286127|286135|286147|286154|286156|286160|286161|286162|286166|286169|286170|286171|286177|286179|286181|286185|286188|286189|286190|286192|286377|286404|286467|286832|286835|286843|286845|286846|286850|287223|287226|287235|287236|287237|287238|287239|287244|287247|287257|287274|287612|287613|287614|287849|287850|288485|288486|288497|288500|288518|288520|288521|288522|288523|288525|288823|288824|288825|288857|288861|288864|288869|288875|288894|288896|288897|288898|288906|289433|289502|289827|289849|289909|297296|297298|297301|297817|297817|297944|297946|297948|297950|299304|299305|299993|300102|300108|301480|301484|301488|301489|301493|301494|301500|301501|301503|301504|303496|303497|303503|303504|303688|303695|303696|303703|304216|304362|304363|304367|304368|304369|304530|304535|304546|304695|304711|304712|304731|304734|304735|304737|304738|304739|304740|304742|304743|304744|304760|307288|309367|309368|309370|309371|309499|309501|309502|309504|309505|311516|311517|311526|311918|311919|311921|311922|311927|311928|311938|311939|311947|311948|311951|311952|311953|311957|311965|311969|311972|311989|314314|314316|314319|314894|314895|314907|314908|314909|314910|314917|314921|314922|314925|314927|317067|317587|317598|317601|317610|317618|317619|317626|317628|317629|317639|317642|317644|317647|317652|320898|320904|320906|321681|321682|321691|321693|321700|321701|321702|321709|321712|321713|321716|321719|321722|321729|323562|323567|323571|323572|323573|323575|323590|323592|323595|323597|323598|323605|323606|323610|323613|323614|324270|324271|324272|324276|324277|324281|324288|324289|324293|324296|324306|324307|324311|324314|324316|324318|324327|324329|326970|327260|327264|327266|327269|327280|327281|327284|327291|327302|327303|327308|327310|327777|327780|327781|327783|327793|327802|327803|327807|328025|328026|328866|328867|328868|328875|328884|328888|328891|328894|332702|332703|337088|337095|337104|337105|337109|337111|337115|337118|337121|337123|337129|342878|342879|343314|343316|343318|343320|343321|343324|343327|343328|343329|343332|343334|343338|343341|343352|343354|343357|343360|343363|343364|343366|344879|344880|344881|344883|344885|344888|344890|344891|344894|344901|344908|344909|344910|344912|344913|344914|344916|344918|344921|344924|344928|344941|348214|349419|349421|349424|349425|349427|349428|353373|353804|354286|354287|354292|354295|354304|358787|358794|358794|359786|359910|361108|361110|363754|363898|364073|364218|364235|364247|366321|366412|366901|366991|368205|368842|369831|369985|370005|372344|372357|372359|374250|378069|379485|394926|395037|395181|395198|395291|395462|395510|395527|407585|407586|423091|423234|433703|434601|434658|434700|434701|434736|434782|434783|438041|438635|438800|438890|438981|439239|439243|445696|445696|455549|455768|455786|458765|459153|459192|459614|459618|474336|474379|474386|481427|481428|481429|481481|486374|487060|487064|487251|487410|487425|501526|502630|503671|505921|510985|510986|510987|510988|511814|511916|513317|513584|514149|521369|524240|524241|524247|524715|524722|524880|538931|539019|539032|539184|543697|562949|563125|563149|566277|576198|576199|578432|578436|581210|590645|610261|610262|610266|610267|610269|610270|610278|620372|621785|622891|626186|633918|637933|637934|654243|656402|657989|658156|672122|677958|677959|680149|680150|680151|680152|680153|680154|680155|680156|680157|680158|680159|680160|680161|680162|680163|680164|680165|680166|680167|680168|680169|680170|680171|680172|680173|680174|680175|680176|680177|680178|680179|680180|680181|680182|680183|680184|680185|680186|680187|680188|680189|680190|680191|680192|680193|680194|680195|680196|680197|680198|680199|680200|680201|680202|680203|680204|680205|680206|680207|680208|680209|680210|680211|680212|680213|680214|680215|680216|680217|680218|680219|680220|680221|680222|680223|680224|680225|680226|680227|680228|680229|680230|680231|680232|680233|680234|680235|680236|680237|680238|680239|680240|680241|680242|680243|680244|680245|680246|680247|680248|680249|680250|680251|680252|680253|680254|680255|680256|680257|680258|680259|680260|680261|680262|680263|680264|680265|680266|680267|680268|680269|680270|680271|680272|680273|680274|680275|680276|680277|680278|680279|680280|680281|680282|680283|680284|680285|680286|680287|680288|680289|680290|680291|680292|680293|680294|680295|680296|680297|680298|680299|680300|680301|680302|680303|680304|680305|680306|680307|680308|680309|680310|680311|680312|680313|680314|680315|680316|680317|680318|680319|680320|680321|680322|680323|680324|680325|680326|680327|680329|680330|680331|680332|680333|680334|680335|680336|680337|680338|680339|680340|680341|680342|680343|680344|680345|680346|680347|680348|680349|680350|680351|680352|680353|680354|680355|680356|680357|680358|680359|680360|680361|680362|680363|680364|680365|680366|680367|680368|680369|680370|680371|680372|680373|680374|680375|680376|680377|680378|680379|680380|680381|680383|680384|680385|680386|680387|680388|680389|680390|680391|680392|680393|680394|680395|680396|680397|680398|680399|680400|680401|680403|680404|680405|680407|680408|680409|680410|680411|680412|680413|680414|680415|680416|680417|680418|680419|680420|680421|680422|680423|680424|680425|680426|680427|680428|680429|680430|680431|680432|680433|680434|680435|680436|680437|680438|680439|680440|680441|680442|680443|680444|680445|680446|680447|680448|680449|680450|680451|680452|680453|680454|680455|680456|680457|680458|680459|680460|680461|680462|680463|680464|680465|680466|680467|680468|680469|680470|680471|680472|680473|680474|680475|680476|680477|680478|680479|680480|680481|680482|680483|680484|680485|680486|680487|680488|680489|680490|680491|680492|680493|680494|680495|680496|680497|680498|680499|680500|680501|680502|680503|680504|680505|680506|680507|680508|680509|680510|680511|680512|680513|680514|680515|680516|680517|680518|680519|680520|680521|680522|680523|680524|680525|680526|680527|680528|680529|680530|680531|680532|680533|680534|680535|680536|680537|680538|680539|680540|680541|680542|680543|680544|680545|680546|680547|680548|680549|680550|680551|680552|680553|680554|680555|680556|680557|680558|680559|680560|680561|680562|680563|680564|680565|680566|680567|680568|680569|680570|680571|680572|680573|680574|680575|680576|680577|680578|680579|680580|680581|680582|680583|680584|680585|680586|680587|680588|680589|680590|680591|680592|680593|680594|680595|680596|680597|680598|680599|680600|680601|680602|680603|680604|680605|680606|680607|680608|680609|680610|680611|680612|680613|680614|680615|680617|680618|680619|680620|680621|680622|680623|680624|680625|680626|680627|680628|680629|680630|680631|680632|680633|680634|680635|680636|680637|680638|680639|680640|680641|680642|680643|680644|680645|680646|680647|680648|680649|680650|680651|680652|680653|680654|680655|680656|680657|680658|680659|680660|680661|680662|680663|680664|680665|680666|680667|680668|680669|680670|680671|680672|680673|680674|680675|680676|680677|680678|680679|680680|680681|680682|680683|680684|680685|680686|680687|680688|680689|680690|680691|680692|680693|680694|680695|680696|680697|680698|680699|680700|680701|680702|680703|680704|680705|680706|680707|680708|680709|680710|680711|680712|680713|680714|680715|680716|680717|680718|680719|680720|680721|680722|680723|680724|680725|680726|680727|680728|680729|680730|680731|680732|680733|680734|680735|680736|680737|680738|680739|680740|680741|680742|680743|680744|680745|680746|680747|680748|680749|680750|680751|680752|680753|680754|680755|680756|680757|680758|680759|680760|680761|680762|680763|680764|680765|680766|680767|680768|680769|680770|680771|680772|680773|680774|680775|680776|680777|680778|680779|680780|680781|680782|680783|680784|680785|680786|680787|680788|680789|680790|680791|680792|680793|680794|680795|680796|680797|680798|680799|680800|680801|680802|680803|680804|680805|680806|680807|680808|680809|680810|680811|680812|680813|680814|680815|680816|680817|680818|680819|680820|680821|680822|680823|680824|680825|680826|680827|680828|680829|680830|680831|680832|680833|680834|680835|680836|680837|680838|680839|680840|680841|680842|680843|680844|680845|680846|680847|680848|680849|680850|680851|680852|680853|680854|680855|680856|680857|680858|680859|680860|680861|680862|680863|680864|680865|680866|680867|680868|680869|680870|680871|680872|680873|680874|680875|680876|680877|680878|680879|680880|680881|680883|680884|680885|680886|680887|680888|680889|680890|680891|680892|680893|680894|680895|680896|680898|680899|680900|680901|680902|680903|680904|680905|680906|680907|680909|680910|680911|680912|680913|680914|680915|680916|680917|680918|680919|680920|680921|680922|680923|680924|680925|680926|680927|680928|680929|680930|680931|680932|680933|680934|680935|680936|680937|680938|680939|680940|680941|680942|680943|680944|680945|680946|680947|680948|680949|680950|680951|680952|680953|680954|680955|680956|680957|680958|680959|680960|680961|680962|680964|680965|680966|680967|680968|680969|680970|680971|680972|680973|680974|680975|680976|680977|680978|680979|680980|680981|680982|680983|680984|680985|680986|680987|680988|680989|680990|680991|680992|680993|680994|680995|680996|680997|680998|680999|681000|681001|681002|681003|681004|681005|681006|681007|681008|681009|681010|681011|681012|681013|681014|681015|681016|681017|681018|681019|681020|681021|681022|681023|681024|681025|681026|681027|681028|681029|681030|681031|681032|681033|681034|681035|681036|681037|681038|681039|681040|681041|681042|681043|681044|681045|681046|681047|681048|681049|681050|681051|681052|681053|681054|681055|681056|681057|681058|681059|681060|681061|681062|681063|681064|681065|681066|681067|681068|681069|681070|681071|681072|681073|681074|681075|681076|681077|681078|681079|681080|681081|681082|681083|681084|681085|681086|681087|681088|681089|681090|681091|681092|681093|681094|681095|681096|681097|681098|681099|681100|681101|681102|681103|681104|681105|681106|681107|681108|681109|681110|681111|681112|681113|681114|681115|681116|681117|681118|681119|681120|681122|681123|681124|681125|681126|681127|681128|681129|681130|681131|681132|681133|681134|681135|681136|681137|681138|681139|681140|681141|681142|681143|681144|681145|681146|681147|681148|681149|681150|681151|681152|681153|681154|681155|681156|681157|681158|681159|681161|681162|681163|681164|681165|681166|681167|681168|681169|681170|681171|681172|681173|681174|681175|681176|681177|681178|681179|681180|681181|681182|681183|681184|681185|681186|681187|681188|681189|681190|681191|681192|681193|681194|681195|681196|681197|681198|681199|681200|681201|681202|681203|681204|681205|681206|681207|681208|681209|681210|681211|681212|681213|681214|681215|681216|681217|681218|681219|681220|681221|681222|681223|681224|681225|681226|681227|681228|681229|681230|681231|681232|681233|681234|681235|681236|681237|681238|681239|681240|681241|681242|681243|681244|681245|681246|681247|681248|681249|681250|681251|681252|681254|681255|681256|681257|681258|681259|681260|681261|681262|681263|681264|681265|681266|681267|681268|681269|681270|681271|681272|681273|681274|681275|681276|681277|681278|681279|681280|681281|681282|681283|681284|681285|681286|681287|681288|681289|681290|681291|681292|681293|681294|681295|681296|681297|681298|681299|681300|681301|681302|681303|681304|681305|681306|681307|681308|681309|681310|681311|681312|681313|681314|681315|681316|681317|681318|681319|681320|681321|681322|681323|681324|681325|681326|681327|681328|681329|681330|681331|681332|681333|681334|681335|681336|681337|681338|681339|681340|681341|681342|681343|681344|681345|681346|681347|681348|681349|681350|681351|681352|681353|681354|681355|681356|681357|681358|681359|681360|681361|681362|681363|681364|681365|681366|681367|681368|681369|681370|681371|681372|681373|681374|681375|681376|681377|681378|681379|681380|681381|681382|681383|681384|681385|681386|681387|681388|681389|681390|681391|681392|681393|681394|681395|681396|681397|681398|681399|681400|681401|681402|681403|681404|681405|681406|681407|681408|681409|681410|681411|681412|681413|681414|681415|681416|681417|681418|681419|681420|681421|681422|681423|681424|681425|681426|681427|681428|681429|681430|681431|681432|681433|681434|681435|681436|681437|681438|681439|681440|681441|681442|681443|681444|681445|681446|681447|681448|681449|681450|681451|681452|681453|681454|681455|681456|681457|681458|681459|681460|681461|681462|681463|681464|681465|681466|681467|681468|681469|681470|681471|681472|681473|681474|681475|681476|681477|681478|681479|681480|681481|681482|681483|681484|681485|681486|681487|681488|681489|681490|681491|681492|681493|681494|681495|681496|681498|681499|681500|681501|681502|681503|681504|681505|681506|681507|681508|681509|681510|681511|681512|681513|681514|681515|681516|681517|681518|681519|681520|681521|681522|681523|681524|681525|681526|681527|681528|681529|681530|681531|681532|681533|681534|681535|681536|681537|681538|681539|681540|681541|681542|681543|681544|681545|681546|681547|681548|681549|681550|681551|681552|681553|681554|681555|681556|681557|681558|681559|681560|681561|681562|681563|681564|681565|681566|681567|681568|681569|681570|681571|681572|681573|681574|681575|681576|681577|681578|681579|681580|681581|681582|681584|681585|681586|681587|681588|681589|681590|681591|681592|681593|681594|681595|681596|681597|681598|681599|681600|681601|681602|681603|681604|681605|681606|681607|681608|681609|681610|681611|681612|681613|681614|681615|681616|681617|681618|681619|681620|681621|681622|681623|681624|681625|681626|681627|681628|681629|681630|681631|681632|681633|681634|681635|681636|681637|681638|681639|681640|681641|681642|681643|681644|681645|681646|681647|681648|681649|681650|681651|681652|681653|681654|681655|681656|681657|681658|681659|681660|681661|681662|681663|681664|681665|681666|681667|681668|681669|681670|681671|681672|681673|681674|681675|681676|681677|681678|681679|681680|681681|681682|681683|681684|681685|681686|681687|681688|681689|681690|681691|681692|681693|681694|681695|681696|681697|681698|681699|681700|681701|681702|681703|681704|681705|681706|681707|681708|681709|681710|681711|681712|681713|681714|681715|681716|681717|681718|681719|681720|681721|681722|681723|681724|681725|681726|681727|681728|681729|681730|681731|681732|681733|681734|681735|681736|681737|681738|681739|681740|681741|681742|681743|681744|681745|681746|681747|681748|681749|681750|681751|681752|681753|681754|681755|681756|681757|681758|681759|681760|681761|681762|681763|681764|681765|681766|681767|681768|681769|681770|681771|681772|681773|681774|681775|681776|681777|681778|681779|681780|681781|681782|681783|681784|681785|681786|681787|681788|681789|681790|681791|681792|681793|681794|692628|721426|728544|737684|738219|740562|740571|749527|752884|752888|755603|765983|767230|773004|773005|788673|788674|788675|790154|790155|790156|790157|790158|790856|790857|791160|791161|791162|802181|808623|830799|835733|835734|835735|835736|835737|861128|866716|866717|866718|866719|866720|866721|866722|866723|866724|866725|866726|866727|866728|866729|866730|866731|866732|866733|866734|866735|866736|866737|866738|866739|868113|868114|868115|868116|868117|868118|868416|868417|868418|868419|868420|868421|868422|868423|868424|868550|868551|868552|868553|868554|868555|868556|868557|868558|868559|868560|868561|868562|868563|868564|868565|868566|868567|868684|868685|868692|868693|876766|876767|876768|876769|876770|876771|876772|876773|876774|876775|876776|876777|876778|876779|876780|876781|876782|876783|876784|876785|876786|876787|876788|876789|876790|876791|876792|876793|876794|876795|876796|876797|876798|876799|876800|876801|876802|876803|880000|880001|880002|880003|880004|880463|880464|880703|883447|883448|883449|883450|883451|883452|883453|883454|883455|883456|883457|883458|883459|883460|883461|883462|883463|883464|883465|883466|883467|883468|883469|883470|883471|883472|883473|883474|883475|883476|883749|883750|884264|884265|884266|884267|884268|884269|884270|884271|884272|884273|884274|884275|884276|884277|884278|884279|884280|884281|884282|884283|884284|884285|884286|884287|884288|884289|884290|884291|884292|884293|884294|884295|884296|884297|884298|884299|884300|884301|884302|884303|884304|884305|884306|884307|884308|884309|884310|884311|884312|884313|884314|884315|884316|884317|884318|884319|884320|884321|884322|884323|884324|884325|884326|884327|884328|884329|884330|884331|884332|884333|884334|884335|884336|884337|884338|884339|884340|884341|884342|884343|884344|884345|884346|887243|887244|887325|887326|894085|894086|894087|894088|894089|894515|894516|894517|894518|894519|894595|894596|894597|896089|896117|897233|897234|897235|897236|897237|897238|897239|897240|897241|897242|897243|897244|897245|897246|897247|897248|897249|897250|897251|897252|897253|897254|897255|901321|901322|901323|901324|901325|901326|901327|901328|901329|901330|903332|903333|916955|917033|917034|918954|925463|946470|961238|961239|961245|961247|961248|965916|972561|977191|977192|979997|979998|979999|980000|980001|980002|980003|980004|980005|980006|980007|980008|980009|980010|980011|980012|980013|980014|980015|980016", + "upstreamId": "15044|16633|21206|21208|21209|21210|21926|22550|23781|24588|24594|24618|24620|24628|24677|24680|24681|24682|24683|24684|24686|24689|24690|24691|24695|24702|24705|24706|24709|24713|24714|24715|24719|24723|24724|24726|24727|24728|24731|24733|24734|24735|24737|24741|24744|24748|24749|24750|24751|24752|24753|24754|24755|24757|24760|24761|24763|24764|24765|24766|24767|24768|24769|24773|27801|27809|33920|38953|38954|48426|48652|48741|76416|76417|76418|76419|76420|76422|76424|76425|76428|101651|134284|134576|135131|135132|135137|135140|135141|135142|135145|135146|135147|135148|135720|135721|135722|135723|135724|135725|135726|135727|135728|135729|135730|140205|140206|140208|140300|140698|140701|140702|140703|140704|140705|140706|140707|140708|140709|140710|140711|140712|140713|140714|140716|140719|140795|140797|140798|140799|140800|140801|140803|140804|140805|140806|142139|142140|142143|142160|142176|142177|142178|142179|142182|142183|142185|142193|142194|142195|142197|142200|142201|142202|142204|142205|142207|142780|142781|142782|142783|143075|143076|143077|143078|143079|143080|143081|143082|150279|150282|150284|150956|151538|151589|152315|152315|153600|153604|153605|153614|153615|153616|153623|153625|153647|153648|165629|165630|165631|165633|165634|165636|165637|165638|165639|165640|165641|165642|165643|166157|166206|166207|166345|166346|170202|200131|200139|200140|205801|210741|210767|210768|210777|210796|210797|210803|210805|210807|210867|211155|211156|211157|211157|211166|211170|211343|211357|211358|211359|211361|211362|211363|211364|211367|211368|211368|211371|211469|211476|211515|211516|211536|211537|211538|211541|211544|211554|211555|211559|211564|211565|211777|211864|211866|211928|213588|213613|221617|221618|221618|224306|226816|226817|226818|226821|226822|226823|226824|226825|226826|226977|233454|233464|233464|236824|236826|236829|236915|236947|236981|237002|237030|237056|237064|237206|237218|237304|237307|237308|237334|237351|237378|237380|237398|237423|237424|237461|237470|239799|239805|239806|239817|239820|239843|239848|244160|247210|247211|247306|247307|247308|247309|247310|247311|247314|251937|251940|251943|264486|274559|274971|275552|284146|284147|284148|284149|284167|284169|284709|284909|284911|284912|284913|284922|284926|285379|285380|285385|285460|285461|285462|285470|285471|285475|285476|285478|285479|285480|285483|285484|285485|286125|286127|286135|286147|286154|286156|286160|286161|286162|286166|286169|286170|286171|286177|286179|286181|286185|286188|286189|286190|286192|286377|286404|286467|286832|286835|286843|286845|286846|286850|287223|287226|287235|287236|287237|287238|287239|287244|287247|287257|287274|287612|287613|287614|287849|287850|288485|288486|288497|288500|288518|288520|288521|288522|288523|288525|288823|288824|288825|288857|288861|288864|288869|288875|288894|288896|288897|288898|288906|289433|289502|289827|289849|289909|297296|297298|297301|297817|297817|297944|297946|297948|297950|299304|299305|299993|300102|300108|301480|301484|301488|301489|301493|301494|301500|301501|301503|301504|303496|303497|303503|303504|303688|303695|303696|303703|304216|304362|304363|304367|304368|304369|304530|304535|304546|304695|304711|304712|304731|304734|304735|304737|304738|304739|304740|304742|304743|304744|304760|307288|309367|309368|309370|309371|309499|309501|309502|309504|309505|311516|311517|311526|311918|311919|311921|311922|311927|311928|311938|311939|311947|311948|311951|311952|311953|311957|311965|311969|311972|311989|314314|314316|314319|314894|314895|314907|314908|314909|314910|314917|314921|314922|314925|314927|317067|317587|317598|317601|317610|317618|317619|317626|317628|317629|317639|317642|317644|317647|317652|320898|320904|320906|321681|321682|321691|321693|321700|321701|321702|321709|321712|321713|321716|321719|321722|321729|323562|323567|323571|323572|323573|323575|323590|323592|323595|323597|323598|323605|323606|323610|323613|323614|324270|324271|324272|324276|324277|324281|324288|324289|324293|324296|324306|324307|324311|324314|324316|324318|324327|324329|326970|327260|327264|327266|327269|327280|327281|327284|327291|327302|327303|327308|327310|327777|327780|327781|327783|327793|327802|327803|327807|328025|328026|328866|328867|328868|328875|328884|328888|328891|328894|332702|332703|337088|337095|337104|337105|337109|337111|337115|337118|337121|337123|337129|342878|342879|343314|343316|343318|343320|343321|343324|343327|343328|343329|343332|343334|343338|343341|343352|343354|343357|343360|343363|343364|343366|344879|344880|344881|344883|344885|344888|344890|344891|344894|344901|344908|344909|344910|344912|344913|344914|344916|344918|344921|344924|344928|344941|348214|349419|349421|349424|349425|349427|349428|353373|353804|354286|354287|354292|354295|354304|358787|358794|358794|359786|359910|361108|361110|363754|363898|364073|364218|364235|364247|366321|366412|366901|366991|368205|368842|369831|369985|370005|372344|372357|372359|374250|378069|379485|394926|395037|395181|395198|395291|395462|395510|395527|407585|407586|423091|423234|433703|434601|434658|434700|434701|434736|434782|434783|438041|438635|438800|438890|438981|439239|439243|445696|445696|455549|455768|455786|458765|459153|459192|459614|459618|474336|474379|474386|481427|481428|481429|481481|486374|487060|487064|487251|487410|487425|501526|502630|503671|505921|510985|510986|510987|510988|511814|511916|513317|513584|514149|521369|524240|524241|524247|524715|524722|524880|538931|539019|539032|539184|543697|562949|563125|563149|566277|576198|576199|578432|578436|581210|590645|610261|610262|610266|610267|610269|610270|610278|620372|621785|622891|626186|633918|637933|637934|654243|656402|657989|658156|672122|677958|677959|680149|680150|680151|680152|680153|680154|680155|680156|680157|680158|680159|680160|680161|680162|680163|680164|680165|680166|680167|680168|680169|680170|680171|680172|680173|680174|680175|680176|680177|680178|680179|680180|680181|680182|680183|680184|680185|680186|680187|680188|680189|680190|680191|680192|680193|680194|680195|680196|680197|680198|680199|680200|680201|680202|680203|680204|680205|680206|680207|680208|680209|680210|680211|680212|680213|680214|680215|680216|680217|680218|680219|680220|680221|680222|680223|680224|680225|680226|680227|680228|680229|680230|680231|680232|680233|680234|680235|680236|680237|680238|680239|680240|680241|680242|680243|680244|680245|680246|680247|680248|680249|680250|680251|680252|680253|680254|680255|680256|680257|680258|680259|680260|680261|680262|680263|680264|680265|680266|680267|680268|680269|680270|680271|680272|680273|680274|680275|680276|680277|680278|680279|680280|680281|680282|680283|680284|680285|680286|680287|680288|680289|680290|680291|680292|680293|680294|680295|680296|680297|680298|680299|680300|680301|680302|680303|680304|680305|680306|680307|680308|680309|680310|680311|680312|680313|680314|680315|680316|680317|680318|680319|680320|680321|680322|680323|680324|680325|680326|680327|680329|680330|680331|680332|680333|680334|680335|680336|680337|680338|680339|680340|680341|680342|680343|680344|680345|680346|680347|680348|680349|680350|680351|680352|680353|680354|680355|680356|680357|680358|680359|680360|680361|680362|680363|680364|680365|680366|680367|680368|680369|680370|680371|680372|680373|680374|680375|680376|680377|680378|680379|680380|680381|680383|680384|680385|680386|680387|680388|680389|680390|680391|680392|680393|680394|680395|680396|680397|680398|680399|680400|680401|680403|680404|680405|680407|680408|680409|680410|680411|680412|680413|680414|680415|680416|680417|680418|680419|680420|680421|680422|680423|680424|680425|680426|680427|680428|680429|680430|680431|680432|680433|680434|680435|680436|680437|680438|680439|680440|680441|680442|680443|680444|680445|680446|680447|680448|680449|680450|680451|680452|680453|680454|680455|680456|680457|680458|680459|680460|680461|680462|680463|680464|680465|680466|680467|680468|680469|680470|680471|680472|680473|680474|680475|680476|680477|680478|680479|680480|680481|680482|680483|680484|680485|680486|680487|680488|680489|680490|680491|680492|680493|680494|680495|680496|680497|680498|680499|680500|680501|680502|680503|680504|680505|680506|680507|680508|680509|680510|680511|680512|680513|680514|680515|680516|680517|680518|680519|680520|680521|680522|680523|680524|680525|680526|680527|680528|680529|680530|680531|680532|680533|680534|680535|680536|680537|680538|680539|680540|680541|680542|680543|680544|680545|680546|680547|680548|680549|680550|680551|680552|680553|680554|680555|680556|680557|680558|680559|680560|680561|680562|680563|680564|680565|680566|680567|680568|680569|680570|680571|680572|680573|680574|680575|680576|680577|680578|680579|680580|680581|680582|680583|680584|680585|680586|680587|680588|680589|680590|680591|680592|680593|680594|680595|680596|680597|680598|680599|680600|680601|680602|680603|680604|680605|680606|680607|680608|680609|680610|680611|680612|680613|680614|680615|680617|680618|680619|680620|680621|680622|680623|680624|680625|680626|680627|680628|680629|680630|680631|680632|680633|680634|680635|680636|680637|680638|680639|680640|680641|680642|680643|680644|680645|680646|680647|680648|680649|680650|680651|680652|680653|680654|680655|680656|680657|680658|680659|680660|680661|680662|680663|680664|680665|680666|680667|680668|680669|680670|680671|680672|680673|680674|680675|680676|680677|680678|680679|680680|680681|680682|680683|680684|680685|680686|680687|680688|680689|680690|680691|680692|680693|680694|680695|680696|680697|680698|680699|680700|680701|680702|680703|680704|680705|680706|680707|680708|680709|680710|680711|680712|680713|680714|680715|680716|680717|680718|680719|680720|680721|680722|680723|680724|680725|680726|680727|680728|680729|680730|680731|680732|680733|680734|680735|680736|680737|680738|680739|680740|680741|680742|680743|680744|680745|680746|680747|680748|680749|680750|680751|680752|680753|680754|680755|680756|680757|680758|680759|680760|680761|680762|680763|680764|680765|680766|680767|680768|680769|680770|680771|680772|680773|680774|680775|680776|680777|680778|680779|680780|680781|680782|680783|680784|680785|680786|680787|680788|680789|680790|680791|680792|680793|680794|680795|680796|680797|680798|680799|680800|680801|680802|680803|680804|680805|680806|680807|680808|680809|680810|680811|680812|680813|680814|680815|680816|680817|680818|680819|680820|680821|680822|680823|680824|680825|680826|680827|680828|680829|680830|680831|680832|680833|680834|680835|680836|680837|680838|680839|680840|680841|680842|680843|680844|680845|680846|680847|680848|680849|680850|680851|680852|680853|680854|680855|680856|680857|680858|680859|680860|680861|680862|680863|680864|680865|680866|680867|680868|680869|680870|680871|680872|680873|680874|680875|680876|680877|680878|680879|680880|680881|680883|680884|680885|680886|680887|680888|680889|680890|680891|680892|680893|680894|680895|680896|680898|680899|680900|680901|680902|680903|680904|680905|680906|680907|680909|680910|680911|680912|680913|680914|680915|680916|680917|680918|680919|680920|680921|680922|680923|680924|680925|680926|680927|680928|680929|680930|680931|680932|680933|680934|680935|680936|680937|680938|680939|680940|680941|680942|680943|680944|680945|680946|680947|680948|680949|680950|680951|680952|680953|680954|680955|680956|680957|680958|680959|680960|680961|680962|680964|680965|680966|680967|680968|680969|680970|680971|680972|680973|680974|680975|680976|680977|680978|680979|680980|680981|680982|680983|680984|680985|680986|680987|680988|680989|680990|680991|680992|680993|680994|680995|680996|680997|680998|680999|681000|681001|681002|681003|681004|681005|681006|681007|681008|681009|681010|681011|681012|681013|681014|681015|681016|681017|681018|681019|681020|681021|681022|681023|681024|681025|681026|681027|681028|681029|681030|681031|681032|681033|681034|681035|681036|681037|681038|681039|681040|681041|681042|681043|681044|681045|681046|681047|681048|681049|681050|681051|681052|681053|681054|681055|681056|681057|681058|681059|681060|681061|681062|681063|681064|681065|681066|681067|681068|681069|681070|681071|681072|681073|681074|681075|681076|681077|681078|681079|681080|681081|681082|681083|681084|681085|681086|681087|681088|681089|681090|681091|681092|681093|681094|681095|681096|681097|681098|681099|681100|681101|681102|681103|681104|681105|681106|681107|681108|681109|681110|681111|681112|681113|681114|681115|681116|681117|681118|681119|681120|681122|681123|681124|681125|681126|681127|681128|681129|681130|681131|681132|681133|681134|681135|681136|681137|681138|681139|681140|681141|681142|681143|681144|681145|681146|681147|681148|681149|681150|681151|681152|681153|681154|681155|681156|681157|681158|681159|681161|681162|681163|681164|681165|681166|681167|681168|681169|681170|681171|681172|681173|681174|681175|681176|681177|681178|681179|681180|681181|681182|681183|681184|681185|681186|681187|681188|681189|681190|681191|681192|681193|681194|681195|681196|681197|681198|681199|681200|681201|681202|681203|681204|681205|681206|681207|681208|681209|681210|681211|681212|681213|681214|681215|681216|681217|681218|681219|681220|681221|681222|681223|681224|681225|681226|681227|681228|681229|681230|681231|681232|681233|681234|681235|681236|681237|681238|681239|681240|681241|681242|681243|681244|681245|681246|681247|681248|681249|681250|681251|681252|681254|681255|681256|681257|681258|681259|681260|681261|681262|681263|681264|681265|681266|681267|681268|681269|681270|681271|681272|681273|681274|681275|681276|681277|681278|681279|681280|681281|681282|681283|681284|681285|681286|681287|681288|681289|681290|681291|681292|681293|681294|681295|681296|681297|681298|681299|681300|681301|681302|681303|681304|681305|681306|681307|681308|681309|681310|681311|681312|681313|681314|681315|681316|681317|681318|681319|681320|681321|681322|681323|681324|681325|681326|681327|681328|681329|681330|681331|681332|681333|681334|681335|681336|681337|681338|681339|681340|681341|681342|681343|681344|681345|681346|681347|681348|681349|681350|681351|681352|681353|681354|681355|681356|681357|681358|681359|681360|681361|681362|681363|681364|681365|681366|681367|681368|681369|681370|681371|681372|681373|681374|681375|681376|681377|681378|681379|681380|681381|681382|681383|681384|681385|681386|681387|681388|681389|681390|681391|681392|681393|681394|681395|681396|681397|681398|681399|681400|681401|681402|681403|681404|681405|681406|681407|681408|681409|681410|681411|681412|681413|681414|681415|681416|681417|681418|681419|681420|681421|681422|681423|681424|681425|681426|681427|681428|681429|681430|681431|681432|681433|681434|681435|681436|681437|681438|681439|681440|681441|681442|681443|681444|681445|681446|681447|681448|681449|681450|681451|681452|681453|681454|681455|681456|681457|681458|681459|681460|681461|681462|681463|681464|681465|681466|681467|681468|681469|681470|681471|681472|681473|681474|681475|681476|681477|681478|681479|681480|681481|681482|681483|681484|681485|681486|681487|681488|681489|681490|681491|681492|681493|681494|681495|681496|681498|681499|681500|681501|681502|681503|681504|681505|681506|681507|681508|681509|681510|681511|681512|681513|681514|681515|681516|681517|681518|681519|681520|681521|681522|681523|681524|681525|681526|681527|681528|681529|681530|681531|681532|681533|681534|681535|681536|681537|681538|681539|681540|681541|681542|681543|681544|681545|681546|681547|681548|681549|681550|681551|681552|681553|681554|681555|681556|681557|681558|681559|681560|681561|681562|681563|681564|681565|681566|681567|681568|681569|681570|681571|681572|681573|681574|681575|681576|681577|681578|681579|681580|681581|681582|681584|681585|681586|681587|681588|681589|681590|681591|681592|681593|681594|681595|681596|681597|681598|681599|681600|681601|681602|681603|681604|681605|681606|681607|681608|681609|681610|681611|681612|681613|681614|681615|681616|681617|681618|681619|681620|681621|681622|681623|681624|681625|681626|681627|681628|681629|681630|681631|681632|681633|681634|681635|681636|681637|681638|681639|681640|681641|681642|681643|681644|681645|681646|681647|681648|681649|681650|681651|681652|681653|681654|681655|681656|681657|681658|681659|681660|681661|681662|681663|681664|681665|681666|681667|681668|681669|681670|681671|681672|681673|681674|681675|681676|681677|681678|681679|681680|681681|681682|681683|681684|681685|681686|681687|681688|681689|681690|681691|681692|681693|681694|681695|681696|681697|681698|681699|681700|681701|681702|681703|681704|681705|681706|681707|681708|681709|681710|681711|681712|681713|681714|681715|681716|681717|681718|681719|681720|681721|681722|681723|681724|681725|681726|681727|681728|681729|681730|681731|681732|681733|681734|681735|681736|681737|681738|681739|681740|681741|681742|681743|681744|681745|681746|681747|681748|681749|681750|681751|681752|681753|681754|681755|681756|681757|681758|681759|681760|681761|681762|681763|681764|681765|681766|681767|681768|681769|681770|681771|681772|681773|681774|681775|681776|681777|681778|681779|681780|681781|681782|681783|681784|681785|681786|681787|681788|681789|681790|681791|681792|681793|681794|692628|721426|728544|737684|738219|740562|740571|749527|752884|752888|755603|765983|767230|773004|773005|788673|788674|788675|790154|790155|790156|790157|790158|790856|790857|791160|791161|791162|802181|808623|830799|835733|835734|835735|835736|835737|861128|866716|866717|866718|866719|866720|866721|866722|866723|866724|866725|866726|866727|866728|866729|866730|866731|866732|866733|866734|866735|866736|866737|866738|866739|868113|868114|868115|868116|868117|868118|868416|868417|868418|868419|868420|868421|868422|868423|868424|868550|868551|868552|868553|868554|868555|868556|868557|868558|868559|868560|868561|868562|868563|868564|868565|868566|868567|868684|868685|868692|868693|876766|876767|876768|876769|876770|876771|876772|876773|876774|876775|876776|876777|876778|876779|876780|876781|876782|876783|876784|876785|876786|876787|876788|876789|876790|876791|876792|876793|876794|876795|876796|876797|876798|876799|876800|876801|876802|876803|880000|880001|880002|880003|880004|880463|880464|880703|883447|883448|883449|883450|883451|883452|883453|883454|883455|883456|883457|883458|883459|883460|883461|883462|883463|883464|883465|883466|883467|883468|883469|883470|883471|883472|883473|883474|883475|883476|883749|883750|884264|884265|884266|884267|884268|884269|884270|884271|884272|884273|884274|884275|884276|884277|884278|884279|884280|884281|884282|884283|884284|884285|884286|884287|884288|884289|884290|884291|884292|884293|884294|884295|884296|884297|884298|884299|884300|884301|884302|884303|884304|884305|884306|884307|884308|884309|884310|884311|884312|884313|884314|884315|884316|884317|884318|884319|884320|884321|884322|884323|884324|884325|884326|884327|884328|884329|884330|884331|884332|884333|884334|884335|884336|884337|884338|884339|884340|884341|884342|884343|884344|884345|884346|887243|887244|887325|887326|894085|894086|894087|894088|894089|894515|894516|894517|894518|894519|894595|894596|894597|896089|896117|897233|897234|897235|897236|897237|897238|897239|897240|897241|897242|897243|897244|897245|897246|897247|897248|897249|897250|897251|897252|897253|897254|897255|901321|901322|901323|901324|901325|901326|901327|901328|901329|901330|903332|903333|916955|917033|917034|918954|925463|946470|961238|961239|961245|961247|961248|965916|972561|977191|977192|979997|979998|979999|980000|980001|980002|980003|980004|980005|980006|980007|980008|980009|980010|980011|980012|980013|980014|980015|980016", "text": "Leigh syndrome" }, { - "baseId": "15046|15236|15318|15324|15349|15400|15439|15615|15628|15630|15716|15784|15974|15994|16007|16133|16151|16184|16312|16323|16367|16422|16458|16464|16633|16726|16979|17159|17319|17320|17323|17336|17337|17390|17395|17521|17553|17579|17586|17682|17683|17810|17818|17862|17865|18006|18013|18040|18090|18096|18102|18234|18235|18425|18491|18497|18607|18731|18810|18811|18814|18816|18833|18928|18938|19066|19128|19152|19218|19391|19500|19501|19560|19587|19630|19763|19914|20037|20039|20059|20084|20146|20153|20219|20316|20348|20353|20418|20442|20643|20807|21046|21060|21078|21102|21234|21326|21328|21502|21573|21646|21769|21827|21833|21860|21965|22069|22109|22115|22144|22148|22151|22154|22159|22161|22165|22168|22169|22170|22175|22182|22183|22197|22198|22202|22203|22204|22207|22214|22235|22244|22253|22256|22268|22276|22277|22409|22425|22536|22555|22577|22671|22673|22712|22745|22750|22756|22866|22872|22918|22927|23126|23145|23217|23308|23380|23381|23388|23434|23460|23472|23473|23546|23660|23730|23767|23938|23992|24018|24073|24127|24451|24472|24508|24550|24813|24967|25066|25399|25400|25402|25407|25425|25428|25747|25851|25918|25919|26019|26559|26663|26697|26735|26774|26783|26784|26848|26850|26854|26858|26872|26915|26916|26930|26949|27005|27010|27014|27077|27189|27190|27194|27268|27365|27382|27493|27592|27619|27625|27626|27628|27633|27641|27642|27809|27827|27865|27992|28003|28229|28304|28365|28368|28370|28390|28400|28435|28443|28521|28536|28799|28846|28958|28996|28997|29012|29014|29018|29019|29020|29317|29528|30295|30372|30980|31208|31366|31368|31377|31379|31388|31484|31832|32039|32043|32469|32533|33000|33006|33314|33348|33381|33420|33505|33997|34034|34059|34160|34300|34439|34654|36342|36355|36442|36750|38549|38570|38652|38711|38725|38761|38788|38811|38818|38884|38952|39106|39290|39291|39299|39300|39487|39513|39527|39720|39727|39776|39865|39866|39869|39897|39972|40005|40030|40156|40173|40257|40285|40316|40327|40328|40337|40348|44400|44440|44461|44484|44488|44489|44490|44493|44494|44496|44497|44499|44502|44503|44506|44514|44516|44517|44523|44524|44525|44529|44530|44531|44533|44534|44536|44557|44558|44608|45439|45440|45442|45777|45778|45849|45851|45852|46402|46555|46816|46833|46903|47062|47455|47604|48018|48170|48176|48180|48194|48264|48311|48375|48386|48388|48407|48413|48435|48821|48854|48857|48982|48983|48992|48995|48998|49023|49032|49121|49124|49132|49148|49210|49217|49751|49898|50104|51081|51184|51200|51577|51609|51746|52111|52388|52510|52745|52746|52755|53028|53352|53356|53895|53973|54350|54363|54879|55152|55179|55624|56442|56752|57231|57683|57788|57854|57870|58315|59375|59407|59458|59852|67825|67827|67841|67842|67892|67894|67897|67936|67985|68035|68072|68116|68124|68128|68133|68173|68197|68232|68233|68247|68248|68262|68306|68352|68353|68358|68388|68404|68418|68457|68469|68579|68588|68590|68607|68608|68620|68638|68650|68664|68669|68683|68689|68722|68738|68749|68761|70540|70566|70599|71232|71343|71431|71437|75108|75124|75126|75128|75299|75301|75392|75398|76349|76639|76889|76993|77019|77354|77632|77785|78125|78177|78255|78648|79197|79370|79435|79449|79630|79648|83803|85113|94253|94343|94427|94529|94843|96865|97526|98267|98638|98658|99058|99060|99061|99063|99064|99155|99627|99628|99796|100211|100984|101099|101102|101692|101728|101731|101827|103535|103564|104217|104942|105155|105192|105199|105287|105321|106594|106600|106647|106822|108487|131915|131928|132585|132613|132615|132675|132824|133707|134195|134887|136364|136372|136464|136547|136550|136552|136777|136791|136891|137840|138462|138657|139369|139377|139622|141332|141336|143140|143157|143229|143258|143271|150150|151141|151296|151696|151755|152734|152761|153138|153150|153315|153446|153481|153711|153719|153754|165524|165563|165747|165751|165790|165813|165903|165918|166023|166024|166148|166193|166304|166531|167591|167603|167702|167722|167735|167786|167959|168010|168032|168175|168183|168322|168637|168914|168920|169007|169009|169078|169084|169276|169341|169490|169579|169780|169799|169816|170026|170145|170184|170985|171032|171185|171241|171247|171263|171268|171351|171715|171771|171780|171808|171866|171873|171903|172130|172260|172292|172435|172539|173141|173147|174035|174036|174176|175066|175203|175344|175658|176368|176600|176940|176948|177077|177326|177364|177736|178280|178380|178417|178518|179142|179160|179638|180039|181285|181507|181511|181517|183853|184512|185520|185664|185938|186861|186914|186938|187125|187166|187207|187353|187362|187372|187388|187405|187603|187611|187773|187954|188001|188055|188069|188114|188142|188155|188339|188678|189041|189409|189629|190049|190129|190159|190163|190184|190255|190256|191073|191499|191552|191615|191784|191820|192080|192084|192090|192364|192400|192497|192578|192625|192824|192903|193055|193096|193122|193139|193201|193423|193438|193987|194136|194356|194359|194374|194512|194747|194820|195231|195232|195233|195234|195380|195531|195855|195898|196191|196196|196387|196407|196661|196743|196819|196904|197472|197632|197731|197806|198031|198035|198239|198620|199192|199526|200000|200042|200401|201132|201142|201400|201506|201650|201884|201887|202163|202301|202593|202823|202832|203229|203236|203240|203319|203426|203574|203577|203606|203702|203782|203794|204057|204059|204220|204295|204356|204638|205055|205064|205160|205213|205214|205215|205216|205217|205218|205219|205220|205221|205222|205223|205224|205225|205226|205227|205228|205229|205230|205231|205232|205233|205234|205235|205236|205237|205238|205239|205240|205241|205242|205243|205244|205245|205246|205247|205248|205249|205250|205251|205252|205253|205254|205255|205256|205257|205258|205259|205260|205261|205262|205263|205264|205266|205267|205268|205269|205270|205271|205272|205273|205274|205275|205276|205277|205278|205279|205280|205281|205282|205283|205284|205285|205286|205287|205288|205289|205290|205291|205292|205293|205294|205295|205296|205297|205298|205299|205300|205301|205302|205303|205304|205305|205306|205307|205308|205309|205310|205311|205312|205313|205314|205315|205316|205318|205319|205320|205321|205322|205323|205324|205325|205326|205327|205328|205329|205330|205331|205332|205333|205334|205335|205336|205337|205338|205339|205340|205341|205342|205343|205344|205345|205346|205347|205348|205349|205350|205351|205352|205353|205560|205614|205685|205712|205749|205751|205760|205774|205782|205793|206604|206607|206662|206847|206974|207083|207373|207384|207951|208334|208381|208500|208585|209009|209348|209451|209776|209960|210567|210770|210844|210875|211234|211259|211289|211398|211619|211676|212004|212652|213812|213813|214063|214088|214097|214182|214194|214282|214480|214565|214794|214795|215003|215013|215042|215122|215784|216792|216945|216948|217281|221666|221670|221765|222374|223295|223780|224213|224490|224581|224696|224794|225802|225872|226114|226499|226500|226616|226619|226644|226676|226714|226843|226863|226864|226865|226866|226867|226868|226869|226870|226871|226872|226873|226874|226875|226876|226877|226878|226879|226880|226881|226882|226883|226884|226885|226886|226887|226888|226889|226890|226891|226892|226893|226894|226895|226896|226897|226898|226899|226900|226901|226902|226903|226904|226905|226906|226907|226908|226909|226910|226911|226912|226913|226914|226915|226916|226917|226918|226919|226920|226921|226922|226923|226924|226925|226926|226927|226928|226929|226930|226931|226932|226933|226934|226935|226936|226937|226938|226939|226940|226941|226943|226944|226945|226946|226947|226948|226949|226950|226951|226952|226953|226954|226955|226956|226957|226958|226959|226960|226961|226962|226963|226964|226965|226966|226967|226968|226969|226970|226971|226972|226973|226974|226975|226976|226977|226978|226979|226980|226981|226982|226983|226984|226985|226986|226987|226988|226990|226991|226992|226993|226994|226995|226996|226997|227149|227442|227573|227575|227704|227705|227916|227917|228522|229258|230744|231319|231722|233842|236970|237087|237161|237193|237361|237522|237540|237577|237580|237610|238040|238140|238141|238144|238265|238371|238448|238767|239060|239061|239063|239064|239066|239067|239068|239069|239071|239653|239729|239988|239989|241557|243874|243879|243992|244362|244490|246907|247138|247331|247398|247444|248718|248801|248902|249186|249187|249402|249403|249404|249405|251795|251796|252568|252569|252571|252573|252615|252616|252617|252618|252641|252642|258028|258132|259310|259632|259636|259703|259731|259764|259766|259867|259931|260056|260057|260112|260118|260139|260145|260197|260201|260216|260226|260231|260237|260332|260464|260844|260860|260979|262449|262652|262666|263628|263783|263820|263863|263933|263996|264040|264172|264223|264289|264295|264306|264319|264409|264452|264453|264455|264472|264579|264585|264701|264749|264790|264818|264834|264868|264918|264950|265019|265026|265061|265066|265087|265161|265169|265356|265486|265487|265683|265716|265961|265994|266825|266963|267044|268409|268428|268514|268930|269056|269643|269985|270479|270643|271442|271805|273821|273837|273988|273989|275011|275215|275373|275375|277307|277378|277383|277389|282155|284036|285551|287891|288002|288297|288300|288305|288307|289063|292154|299663|301687|305992|309497|336769|344606|345159|345525|347796|348767|357238|357818|357961|358169|358626|358688|359044|359063|359196|359235|359406|359436|359455|359567|359705|359719|359788|359810|359832|359886|360026|360041|360082|360358|360425|360481|360483|360506|360537|360663|360827|360953|360954|360957|361201|361249|361750|362169|362226|362295|362304|362305|362307|362521|362591|362622|362760|362761|362861|363354|363355|363745|363797|364009|364135|366251|366307|367600|368900|369575|369680|369986|372204|372611|373997|375991|376041|376243|377729|378314|378330|379337|379439|379953|380054|380077|380084|380086|380179|380180|380317|389795|390603|390793|390806|390810|390816|390817|391721|393213|393272|393277|393293|393419|393597|393598|393622|394025|394498|394831|394832|395365|395425|395446|395633|395647|396091|396092|396688|398044|398057|398531|399614|399617|400867|401348|402131|404064|404352|404579|404621|404685|404973|405151|405662|405676|406085|406103|406301|406308|406311|406361|406643|406645|406864|407111|407285|407314|407321|407414|407685|407716|407722|407832|407854|407888|407897|408367|408418|408443|408758|408791|409082|409186|409190|409370|409871|409927|410051|410288|410566|410579|410785|410844|410863|411055|411222|411351|411396|411406|411425|411554|413210|413341|413523|413586|413927|414715|415042|415146|415340|415341|415555|415566|415608|415625|419002|420424|420436|420472|421170|421413|421466|421541|421560|421579|421588|421607|421611|421748|421767|421792|421824|422065|422244|422482|422499|424269|424347|424352|424367|424377|424395|424464|424467|424470|424508|424589|424658|424677|424961|424962|424990|425322|425370|425418|425484|425532|425603|425749|425767|426143|426170|426193|426373|426672|427996|428002|428365|428625|429423|429631|430907|430936|430947|431000|431351|431521|431537|431679|431718|431903|432314|432466|432635|432665|433013|433016|433030|433034|433282|433314|433525|433962|434040|434511|434544|434545|434546|434666|434772|434926|434929|438002|438371|438534|438582|438780|439569|439573|440007|440754|440756|440913|441110|441271|442550|442849|442981|443454|443460|443498|443697|443738|443981|444179|444522|444732|444898|444924|445137|445168|445184|445240|445319|445470|445592|445607|445843|446047|446115|446249|446250|446292|446299|446559|446656|446660|446696|446866|448729|448971|450123|450636|450732|450997|451256|451688|451689|451704|451720|451751|452021|452043|452162|452171|452193|453630|454493|455442|455873|456090|456312|456324|456355|456365|456419|456421|456650|457003|457194|457446|457777|458147|458651|458664|460390|462249|462324|462592|463464|463729|463941|464077|464162|465968|467831|468132|468163|468512|469277|469791|470488|470673|470963|472081|481276|481307|481337|481342|481356|481504|481686|481690|481755|482036|482116|482203|482260|482276|485751|485882|486168|486695|486748|486791|487108|487162|487182|487199|487206|487224|487274|487294|487785|487920|488100|489035|489489|489825|490617|490705|490839|490959|491714|492188|493048|493323|493414|493478|493936|494972|495044|495146|495185|495875|495880|496319|496394|496909|497599|497712|497837|508309|508821|508824|508884|509136|509219|510978|511019|511147|511148|511149|511150|511151|511152|511153|511154|511155|511156|511157|511158|511159|511160|511161|511162|511163|511164|511165|511166|511167|511168|511169|511170|511171|511172|511173|511174|511175|511176|511177|511178|511179|511180|511181|511182|511183|511184|511185|511186|511187|511188|511189|511190|511191|511192|511193|511194|511195|511196|511197|511198|511199|511200|511201|511202|511203|511204|511205|511206|511207|511208|511209|511210|511211|511212|511213|511214|511215|511216|511217|511218|511219|511220|511221|511222|511223|511224|511225|511226|511227|511228|511229|511230|511231|511232|511233|511234|511235|511236|511237|511238|511239|511240|511241|511242|511243|511244|511245|511246|511247|511248|511249|511250|511251|511252|511253|511254|511255|511256|511257|511258|511259|511260|511261|511262|511263|511264|511265|511266|511267|511268|511269|511270|511271|511272|511273|511274|511275|511276|511277|511278|511279|511280|511281|511282|511283|511284|511285|511286|511287|511288|511289|511290|511291|511292|511293|511294|511295|511296|511297|511298|511299|511300|511301|511302|511303|511304|511305|511306|511307|511308|511309|511310|511311|511312|511313|511314|511315|511316|511317|511318|511319|511320|511321|511322|511323|511324|511325|511326|511327|511328|511329|511330|511331|511332|511333|511334|511335|511336|511337|511338|511339|511340|511341|511342|511343|511344|511345|511346|511347|511348|511349|511350|511351|511352|511353|511354|511355|511356|511357|511358|511359|511360|511361|511362|511363|511364|511365|511366|511367|511368|511369|511370|511371|511372|511373|511374|511375|511376|511377|511378|511379|511380|511381|511382|511383|511384|511385|511386|511387|511388|511389|511390|511391|511392|511393|511394|511395|511396|511397|511398|511399|511400|511401|511402|511403|511404|511405|511406|511407|511408|511409|511410|511411|511412|511413|511414|511415|511416|511417|511418|511419|511420|511421|511422|511423|511424|511425|511426|511427|511428|511429|511430|511431|511432|511433|511434|511435|511436|511437|511438|511439|511440|511441|511442|511443|511444|511445|511446|511447|511448|511449|511450|511451|511452|511453|511454|511455|511456|511457|511458|511459|511460|511461|511462|511463|511464|511465|511466|511467|511468|511469|511470|511471|511472|511473|511474|511475|511476|511477|511478|511479|511480|511481|511482|511483|511484|511485|511486|511487|511488|511489|511490|511491|511492|511493|511494|511495|511496|511497|511498|511499|511500|511501|511502|511503|511504|511505|511506|511507|511508|511509|511510|511511|511512|511513|511514|511515|511516|511517|511518|511519|511520|511521|511522|511523|511524|511525|511526|511527|511529|511530|511531|511532|511533|511534|511535|511536|511537|511538|511539|511540|511541|511542|511543|511544|511545|511546|511547|511548|511549|511550|511551|511552|511553|511554|511555|511556|511557|511558|511559|511560|511561|511562|511563|511564|511565|511566|511567|511568|511569|511570|511571|511572|511573|511574|511575|511576|511577|511578|511579|511580|511581|511582|511583|511584|511585|511586|511587|511588|511589|511590|511591|511592|511593|511594|511595|511596|511597|511598|511599|511600|511601|511602|511603|511604|511605|511606|511607|511608|511609|511610|511611|511612|511613|511614|511615|511616|511617|511618|511619|511620|511621|511622|511623|511624|511625|511626|511627|511628|511629|511630|511631|511632|511633|511634|511635|511636|511637|511638|511639|511640|511641|511642|511643|511644|511645|511646|511647|511648|511649|511650|511651|511652|511653|511654|511655|511656|511657|511658|511659|511660|511661|511662|511663|511664|511665|511666|511667|511668|511669|511670|511671|511672|511673|511674|511675|511676|511677|511678|511679|511680|511681|511682|511683|511684|511685|511686|511687|511688|511689|511690|511691|511692|511693|511694|511695|511696|511697|511698|511699|511700|511701|511702|511703|511704|511705|511706|511707|511708|511709|511710|511711|511712|511713|511714|511715|511716|511717|511718|511719|511720|511721|511722|511723|511724|511725|511726|511727|511728|511729|511730|511731|511732|511733|511734|511735|511736|511737|511738|511739|511740|511741|511742|511743|511744|511745|511746|511747|511748|511749|511750|511751|511752|511753|511754|511755|511756|511757|511758|511759|511760|511761|511762|511763|511764|511765|511766|511767|511768|511769|511770|511771|511772|511773|511774|511775|511776|511777|511778|511779|511780|511781|511782|511783|511784|511785|511786|511787|511788|511789|511790|511791|511792|511793|511794|511795|511796|511797|511798|511799|511800|511801|511802|511803|511804|511805|511806|511807|511808|511809|511810|511811|511812|511813|511814|511815|511816|511817|511818|511819|511820|511821|511822|511823|511824|511825|511826|511827|511828|511829|511830|511831|511832|511833|511834|511835|511836|511837|511838|511839|511840|511841|511842|511843|511844|511845|511846|511847|511848|511849|511850|511851|511852|511853|511854|511855|511856|511857|511858|511859|511860|511861|511862|511863|511864|511865|511866|511867|511868|511869|511870|511871|511872|511873|511874|511875|511876|511877|511878|511879|511880|511881|511882|511883|511884|511885|511886|511887|511888|511889|511890|511891|511892|511893|511894|511895|511896|511897|511898|511899|511900|511901|511902|511903|511904|511905|511906|511907|511908|511909|511910|511911|511912|511913|511914|511915|511916|511917|511918|511919|511920|511921|511922|511923|511924|511925|511926|511927|511928|511929|511930|511931|511932|511933|511934|511935|511936|511937|511938|511939|511940|511941|511942|511943|511944|511945|511946|511947|511948|511949|511950|511951|511952|511953|511954|511955|511956|511957|511958|511959|511960|511961|511962|511963|511964|511965|511966|511967|511968|511969|511970|511971|511972|511973|511974|511975|511976|511977|511978|511979|511980|511981|511982|511983|511984|511985|511986|511987|511988|511989|511990|511991|511992|511993|511994|511995|511996|511997|511998|511999|512000|512001|512002|512003|512004|512005|512006|512007|512008|512009|512010|512011|512012|512013|512014|512015|512016|512017|512018|512019|512020|512021|512022|512023|512024|512025|512026|512027|512028|512029|512030|512032|512033|512034|512035|512036|512037|512038|512039|512040|512041|512042|512043|512044|512045|512046|512047|512048|512049|512050|512051|512052|512053|512054|512055|512056|512057|512058|512059|512060|512061|512062|512063|512064|512065|512066|512067|512068|512069|512070|512071|512072|512073|512074|512075|512076|512077|512078|512079|512080|512081|512082|512083|512084|512085|512086|512087|512088|512089|512090|512091|512092|512093|512094|512095|512096|512097|512098|512099|512100|512101|512102|512103|512104|512105|512106|512107|512108|512109|512110|512111|512112|512113|512114|512115|512116|512117|512118|512119|512120|512121|512122|512123|512124|512125|512126|512127|512128|512129|512130|512131|512132|512133|512134|512135|512136|512137|512138|512139|512140|512141|512142|512143|512144|512145|512146|512147|512148|512149|512150|512151|512152|512153|512154|512155|512156|512157|512158|512159|512160|512161|512162|512163|512164|512165|512166|512167|512168|512169|512170|512171|512172|512173|512174|512175|512176|512177|512178|512179|512180|512181|512182|512183|512184|512185|512186|512187|512188|512189|512190|512191|512192|512193|512194|512195|512196|512197|512198|512199|512200|512201|512202|512203|512204|512205|512206|512207|512208|512209|512210|512211|512212|512213|512214|512215|512216|512217|512218|512219|512220|512221|512222|512223|512224|512225|512226|512227|512228|512229|512230|512231|512232|512233|512234|512235|512236|512237|512238|512239|512240|512241|512242|512243|512244|512245|512246|512247|512248|512249|512250|512251|512252|512253|512254|512255|512256|512257|512258|512259|512260|512261|512262|512263|512264|512265|512266|512267|512268|512269|512270|512271|512272|512273|512274|512275|512276|512277|512278|512279|512280|512281|512282|512283|512284|512285|512286|512287|512288|512289|512290|512291|512292|512294|512295|512296|512297|512298|512299|512301|512302|512303|512304|512305|512306|512307|512308|512309|512310|512311|512312|512313|512314|512315|512316|512317|512318|512319|512320|512321|512322|512323|512324|512325|512326|512327|512328|512329|512330|512331|512332|512333|512334|512335|512336|512337|512338|512339|512340|512341|512342|512343|512344|512345|512346|512347|512348|512349|512350|512351|512352|512353|512354|512355|512356|512357|512358|512359|512360|512361|512362|512363|512364|512365|512366|512367|512368|512369|512370|512371|512372|512373|512374|512375|512376|512377|512378|512379|512380|512381|512382|512383|512384|512385|512386|512387|512388|512389|512390|512391|512392|512393|512394|512395|512396|512397|512398|512399|512400|512401|512402|512403|512404|512405|512406|512407|512408|512409|512410|512411|512412|512413|512414|512415|512416|512417|512418|512419|512420|512421|512422|512423|512424|512425|512426|512427|512428|512429|512430|512431|512432|512433|512434|512435|512436|512437|512438|512439|512440|512441|512442|512443|512444|512445|512446|512447|512448|512449|512450|512451|512452|512453|512454|512455|512456|512457|512458|512459|512460|512461|512462|512463|512464|512465|512466|512467|512468|512469|512470|512471|512472|512473|512474|512475|512476|512477|512478|512479|512480|512481|512482|512483|512484|512485|512486|512487|512488|512489|512490|512491|512492|512493|512494|512495|512496|512497|512498|512499|512500|512501|512502|512503|512504|512505|512506|512507|512508|512509|512510|512511|512512|512514|512515|512516|512517|512518|512519|512520|512521|512522|512523|512524|512525|512526|512527|512528|512529|512530|512531|512532|512533|512534|512535|512536|512537|512538|512539|512540|512541|512542|512543|512544|512545|512546|512547|512548|512549|512550|512551|512552|512553|512554|512555|512556|512557|512558|512559|512560|512561|512562|512563|512564|512565|512566|512567|512568|512569|512570|512571|512572|512573|512574|512575|512576|512577|512578|512579|512580|512581|512582|512583|512584|512585|512586|512587|512588|512589|512590|512591|512592|512593|512594|512595|512596|512597|512598|512599|512600|512601|512602|512603|512604|512605|512606|512607|512608|512609|512610|512611|512612|512613|512614|512615|512616|512617|512618|512619|512620|512621|512622|512623|512624|512625|512626|512627|512628|512629|512630|512631|512632|512633|512634|512635|512636|512637|512638|512639|512640|512641|512642|512643|512644|512645|512646|512647|512648|512649|512650|512651|512652|512653|512654|512655|512656|512657|512658|512659|512660|512661|512662|512663|512664|512665|512666|512667|512668|512669|512670|512671|512672|512673|512674|512675|512676|512677|512678|512679|512680|512681|512682|512683|512684|512685|512686|512687|512688|512689|512690|512691|512692|512693|512694|512695|512696|512697|512698|512699|512700|512701|512702|512703|512704|512705|512706|512707|512708|512709|512710|512711|512712|512713|512714|512715|512716|512717|512718|512719|512720|512721|512722|512723|512724|512725|512726|512727|512728|512729|512730|512731|512732|512733|512734|512735|512736|512737|512738|512739|512740|512741|512742|512743|512744|512745|512746|512747|512748|512749|512750|512751|512752|512753|512754|512755|512756|512757|512758|512759|512760|512761|512762|512763|512764|512765|512766|512767|512768|512769|512770|512771|512772|512773|512774|512775|512776|512777|512778|513764|513765|514054|514345|514977|518753|518766|518792|518802|518804|518806|518815|518959|521091|521309|521964|522461|526449|527227|527917|528766|532288|534083|534887|535054|535181|535312|535681|535682|535696|535725|536028|536093|536176|536318|536593|536830|537592|537681|537796|540508|540513|541820|541828|543305|544371|544451|544523|545698|549765|550272|550323|550329|550566|551320|552094|552136|553083|553138|553141|553519|556917|556937|558756|558764|559297|559307|561125|561126|561564|561582|562329|562906|562907|563969|563980|565136|565621|566800|567795|572547|574280|575492|576714|577733|578643|582027|582761|585348|586059|586092|586093|586588|586642|588190|588776|590062|590666|590743|608837|609004|609347|609353|609606|609654|609849|612493|612999|615264|615564|615903|615920|619906|620155|620519|620656|620784|620839|620947|620951|621254|621259|621983|622924|623048|623090|623091|623119|623562|623660|626013|628122|628211|628806|629312|629754|630771|630810|630816|630834|632159|633216|634574|635668|635799|635800|635801|635804|636056|638948|645913|646400|649942|650229|650247|652719|653912|654425|678080|679342|679910|683194|683196|683529|683848|683851|686295|686707|690361|692122|699851|710770|710771|720108|734776|735957|735958|735959|750424|750426|766115|766116|766136|774687|781528|789122|789163|789896|790077|790601|790617|790946|791440|791903|792088|792596|792602|792612|792992|793117|793656|793759|794177|794182|794237|794511|798400|799111|800473|801085|801162|801406|802169|805009|805049|805167|805337|805391|805474|805659|805909|806101|806443|806444|806445|806446|806447|806448|806449|806450|806451|807500|807501|807502|807503|807504|807505|807506|807507|807508|807509|807510|807511|807512|807513|807514|807515|807516|808571|808572|808573|808841|808842|808843|808844|808845|808846|808847|808848|808849|808850|808851|808852|808853|808854|808855|808856|808857|808858|808859|808860|808861|808862|808863|808864|808865|808866|808867|808868|808869|808870|808871|808872|808946|808947|808948|808949|808950|808951|808952|808953|808954|808955|808956|808957|808958|808959|808960|808961|808962|808963|808964|808965|808966|808967|808968|808969|808970|808971|808972|808973|808974|808975|808976|808977|808978|808979|808980|808981|808982|808983|808984|808985|808986|815210|815357|815362|815363|815364|815365|815376|815377|815378|815379|815858|815972|818138|818149|818727|823396|825612|828702|833340|837232|838068|838538|839718|845247|849076|849768|849785|850686|852409|852982|856110|858389|858585|858736|858737|858885|859195|860188|860285|860317|861273|861275|863212|869160|874793|894062|899376|904282|904660|917579|918256|918423|919009|919426|920940|921158|925364|925521|927262|928734|930058|930218|934656|935257|936134|937817|939439|939681|941955|945044|951879|951890|955261|955679|961317|961320|961597|962975|963245|963552|964268|964282|964590|965295|965644|965685|966137|966154|966983|967133|969360|969487|970273|970285|970288|970291|970335|971344|972656|972910|972936|972955|972978|972994|973120|973121|973122|973123|973124|973125|973126|973127|973128|973129|973130|973131|973132|973133|973134|973135|973136|973137|973138|973139|973140|973141|973142|973144|973145|973146|973147|973148|973149|973150|973151|973152|973153|973154|973155|973156|973157|973158|973159|973160|973161|973162|973163|973164|973165|973166|973167|973168|973169|973170|973171|973172|973173|973174|973175|973176|973177|973178|973179|973180|973181|973182|973183|973184|973185|973186|973187|973188|973189|973190|973191|973192|973193|973194|973195|973196|973197|973198|973199|973200|973201|973202|973203|973204|973205|973206|973207|973208|973209|973210|973211|973212|973213|973214|973215|973216|973217|973218|973219|973220|973221|973222|973223|973224|973225|973226|973227|973229|973230|973231|973232|973233|973234|973235|973236|973237|973238|973239|973240|973241|973242|973243|973244|973245|973246|973247|973248|973249|973250|973251|973252|973253|973254|973255|973256|973257|973258|973259|973260|973261|973262|973263|973264|973265|973266|973267|973268|973269|973270|973271|973272|973273|973274|973275|973276|973277|973278|973279|973280|973281|973282|973283|973284|973285|973286|973287|973288|973289|973290|973291|973292|973293|973294|973295|973296|973297|973298|973299|973300|973301|973302|973303|973304|973305|973306|973307|973308|973309|973310|973311|973312|973313|973314|973315|973316|973317|973318|973319|973320|973321|973322|973323|973324|973325|973326|973327|973328|973329|973330|973331|973332|973333|973334|973335|973336|973337|973338|973339|973340|973341|973342|973343|973344|973345|973346|973347|973348|973349|973350|973351|973352|973353|973354|973355|973356|973357|973358|973359|973360|973361|973362|973363|973364|973365|973366|973367|973368|973369|973370|973371|973372|973373|973374|973375|973376|973377|973378|973379|973380|973381|973382|973383|973384|973385|973386|973387|973388|973390|973391|973392|973393|973395|973396|973397|973398|973399|973400|973401|973402|973403|973404|973405|973406|973407|973408|973409|973410|973411|973412|973413|973414|973415|973416|973417|973418|973419|973420|973421|973422|973423|973424|973425|973426|973427|973428|973429|973430|973431|973432|973433|973434|973435|973436|973437|973438|973439|973440|973441|973442|973443|973444|973445|973446|973447|973448|973449|973450|973451|973452|973453|973454|973455|973456|973457|973458|973459|973460|973461|973462|973463|973464|973465|973466|973467|973468|973469|973470|973471|973473|973474|973475|973476|973477|973478|973479|973480|973481|973482|973483|973484|973485|973486|973487|973488|973489|973490|973491|973492|973493|973494|973495|973496|973497|973498|973499|973500|973501|973502|973503|973504|973505|973506|973507|973508|973509|973510|973511|973512|973513|973514|973515|973516|973517|973518|973519|973520|973521|973522|973523|973524|973525|973526|973527|973528|973529|973530|973531|973532|973533|973534|973535|973536|973537|973538|973539|973540|973541|973542|973543|973544|973545|973546|973547|973548|973549|973550|973551|973552|973553|973554|973555|973556|973557|973558|973559|973560|973561|973562|973563|973564|973565|973566|973567|973568|973569|973570|973571|973572|973573|973575|973576|973577|973578|973579|973580|973581|973582|973583|973584|973585|973586|973587|973588|973589|973590|973591|973592|973593|973594|973595|973596|973597|973598|973599|973600|973601|973602|973603|973604|973605|973606|973607|973608|973609|973610|973611|973612|973613|973614|973615|973616|973617|973618|973619|973620|973621|973622|973623|973624|973625|973626|973627|973628|973629|973630|973631|973632|973633|973634|973635|973636|973637|973638|973639|973640|973641|973642|973643|973644|973645|973646|973647|973648|973649|973650|973651|973652|973653|973654|973655|973656|973657|973658|973659|973660|973661|973662|973663|973664|973665|973666|973667|973668|973669|973671|973672|973673|973674|973675|973676|973677|973678|973679|973680|973681|973682|973683|973684|973685|973686|973687|973688|973689|973690|973691|973692|973693|973694|973695|973696|973697|973698|973699|973700|973701|973702|973703|973704|973705|973706|973707|973708|973710|973711|973712|973713|973714|973715|973716|973717|973718|973720|973721|973722|973723|973724|973725|973726|973727|973728|973729|973730|973731|973732|973733|973734|973735|973736|973737|973738|973739|973740|973741|973742|973743|973744|973745|973746|973747|973748|973749|973750|973751|973752|973753|973754|973755|973756|973757|973758|973759|973760|973761|973762|973763|973764|973765|973766|973767|973768|973769|973770|973771|973772|973773|973774|973775|973776|973777|973778|973779|973780|973781|973782|973783|973784|973785|973786|973787|973788|973789|973790|973791|973792|973793|973794|973795|973796|973797|973798|973799|973800|973801|973802|973803|973804|973805|973806|973807|973808|973809|973810|973811|973812|973813|973814|973815|973816|973817|973818|973819|973820|973821|973822|973823|973824|973825|973826|973827|973828|973829|973830|973831|973832|973833|973834|973835|973836|973837|973838|973839|973840|973841|973842|973843|973844|973845|973846|973847|973848|973849|973850|973851|973852|973853|973854|973855|973856|973857|973858|973859|973860|973861|973862|973863|973864|973865|973866|973867|973868|973869|973870|973871|973872|973873|973874|973875|973876|973879|973880|973881|973882|973883|973884|973885|973886|973887|973888|973889|973890|973891|973892|973893|973894|973895|973896|973897|973898|973899|973900|973901|973902|973903|973904|973905|973906|973907|973908|973909|973910|973911|973912|973913|973914|973915|973916|973917|973918|973919|973920|973921|973922|973923|973924|973925|973926|973927|973928|973929|973930|973931|973932|973933|973934|973935|973936|973937|973938|973939|973940|973941|973942|973943|973944|973945|973946|973947|973948|973949|973950|973951|973953|973954|973955|973956|973957|973958|973959|973960|973961|973962|973963|973964|973966|973967|973968|973969|973970|973971|973972|973973|973974|973975|973976|973977|973978|973979|973980|973981|973982|973983|973984|973985|973986|973988|973989|973990|973991|973992|973993|973994|973995|973996|973997|973998|973999|974000|974001|974002|974003|974004|974005|974006|974007|974008|974009|974010|974011|974012|974013|974014|974015|974016|974017|974018|974019|974020|974021|974022|974023|974024|974025|974026|974027|974028|974029|974030|974032|974033|974034|974035|974036|974037|974038|974039|974040|974041|974042|974043|974044|974045|974046|974047|974048|974049|974050|974051|974052|974053|974054|974055|974056|974057|974058|974059|974060|974061|974062|974063|974064|974065|974066|974067|974068|974069|974070|974071|974072|974073|974074|974075|974076|974077|974078|974079|974080|974081|974082|974083|974084|974085|974086|974087|974088|974089|974090|974091|974092|974093|974094|974095|974096|974097|974098|974099|974100|974101|974102|974103|974104|974105|974106|974107|974108|974109|974110|974111|974112|974113|974114|974115|974116|974117|974118|974119|974120|974121|974122|974123|974124|974125|974126|974127|974128|974129|974130|974131|974132|974133|974134|974135|974136|974137|974138|974139|974140|974141|974142|974143|974144|974145|974146|974147|974148|974149|974150|974151|974152|974153|974154|974155|974156|974157|974158|974159|974160|974161|974162|974163|974164|974165|974166|974167|974168|974169|974170|974171|974172|974173|974174|974175|974176|974177|974178|974179|974180|974181|974182|974183|974184|974185|974186|974187|974188|974189|974190|974191|974192|974193|974194|974195|974196|974197|974198|974199|974200|974201|974202|974203|974205|974206|974207|974208|974209|974210|974211|974212|974213|974214|974215|974216|974217|974218|974219|974220|974221|974222|974223|974224|974225|974226|974227|974228|974229|974230|974231|974232|974233|974234|974235|974236|974237|974238|974239|974240|974241|974242|974243|974244|974245|974246|974247|974248|974249|974250|974251|974252|974253|974254|974255|974256|974257|974258|974259|974260|974261|974262|974263|974264|974265|974266|974267|974268|974269|974270|974271|974272|974273|974274|974275|974276|974277|974278|974279|974280|974281|974282|974283|974284|974285|974286|974287|974288|974289|974290|974292|974293|974294|974295|974296|974297|974298|974299|974300|974301|974302|974303|974304|974305|974306|974307|974308|974309|974310|974311|974312|974313|974314|974315|974316|974317|974318|974319|974320|974321|974322|974323|974324|974325|974326|974327|974328|974329|974330|974331|974332|974333|974334|974335|974336|974337|974338|974339|974340|974341|974342|974343|974344|974345|974346|974347|974348|974349|974350|974351|974352|974353|974354|974355|974356|974357|974358|974359|974360|974361|974362|974363|974364|974365|974366|974367|974368|974369|974370|974371|974372|974373|974374|974375|974376|974377|974378|974379|974380|974381|974382|974383|974384|974385|974386|974387|974388|974389|974390|974391|974392|974393|974394|974395|974396|974397|974398|974399|974400|974401|974402|974403|974404|974405|974406|974407|974408|974409|974410|974411|974412|974413|974414|974415|974416|974417|974418|974419|974420|974421|974422|974423|974424|974425|974426|974427|974428|974429|974430|974431|974432|974433|974434|974435|974436|974437|974438|974439|974440|974441|974442", + "upstreamId": "15046|15236|15318|15324|15349|15400|15439|15615|15628|15630|15716|15784|15974|15994|16007|16133|16151|16184|16312|16323|16367|16422|16458|16464|16633|16726|16979|17159|17319|17320|17323|17336|17337|17390|17395|17521|17553|17579|17586|17682|17683|17810|17818|17862|17865|18006|18013|18040|18090|18096|18102|18234|18235|18425|18491|18497|18607|18731|18810|18811|18814|18816|18833|18928|18938|19066|19128|19152|19218|19391|19500|19501|19560|19587|19630|19763|19914|20037|20039|20059|20084|20146|20153|20219|20316|20348|20353|20418|20442|20643|20807|21046|21060|21078|21102|21234|21326|21328|21502|21573|21646|21769|21827|21833|21860|21965|22069|22109|22115|22144|22148|22151|22154|22159|22161|22165|22168|22169|22170|22175|22182|22183|22197|22198|22202|22203|22204|22207|22214|22235|22244|22253|22256|22268|22276|22277|22409|22425|22536|22555|22577|22671|22673|22712|22745|22750|22756|22866|22872|22918|22927|23126|23145|23217|23308|23380|23381|23388|23434|23460|23472|23473|23546|23660|23730|23767|23938|23992|24018|24073|24127|24451|24472|24508|24550|24813|24967|25066|25399|25400|25402|25407|25425|25428|25747|25851|25918|25919|26019|26559|26663|26697|26735|26774|26783|26784|26848|26850|26854|26858|26872|26915|26916|26930|26949|27005|27010|27014|27077|27189|27190|27194|27268|27365|27382|27493|27592|27619|27625|27626|27628|27633|27641|27642|27809|27827|27865|27992|28003|28229|28304|28365|28368|28370|28390|28400|28435|28443|28521|28536|28799|28846|28958|28996|28997|29012|29014|29018|29019|29020|29317|29528|30295|30372|30980|31208|31366|31368|31377|31379|31388|31484|31832|32039|32043|32469|32533|33000|33006|33314|33348|33381|33420|33505|33997|34034|34059|34160|34300|34439|34654|36342|36355|36442|36750|38549|38570|38652|38711|38725|38761|38788|38811|38818|38884|38952|39106|39290|39291|39299|39300|39487|39513|39527|39720|39727|39776|39865|39866|39869|39897|39972|40005|40030|40156|40173|40257|40285|40316|40327|40328|40337|40348|44400|44440|44461|44484|44488|44489|44490|44493|44494|44496|44497|44499|44502|44503|44506|44514|44516|44517|44523|44524|44525|44529|44530|44531|44533|44534|44536|44557|44558|44608|45439|45440|45442|45777|45778|45849|45851|45852|46402|46555|46816|46833|46903|47062|47455|47604|48018|48170|48176|48180|48194|48264|48311|48375|48386|48388|48407|48413|48435|48821|48854|48857|48982|48983|48992|48995|48998|49023|49032|49121|49124|49132|49148|49210|49217|49751|49898|50104|51081|51184|51200|51577|51609|51746|52111|52388|52510|52745|52746|52755|53028|53352|53356|53895|53973|54350|54363|54879|55152|55179|55624|56442|56752|57231|57683|57788|57854|57870|58315|59375|59407|59458|59852|67825|67827|67841|67842|67892|67894|67897|67936|67985|68035|68072|68116|68124|68128|68133|68173|68197|68232|68233|68247|68248|68262|68306|68352|68353|68358|68388|68404|68418|68457|68469|68579|68588|68590|68607|68608|68620|68638|68650|68664|68669|68683|68689|68722|68738|68749|68761|70540|70566|70599|71232|71343|71431|71437|75108|75124|75126|75128|75299|75301|75392|75398|76349|76639|76889|76993|77019|77354|77632|77785|78125|78177|78255|78648|79197|79370|79435|79449|79630|79648|83803|85113|94253|94343|94427|94529|94843|96865|97526|98267|98638|98658|99058|99060|99061|99063|99064|99155|99627|99628|99796|100211|100984|101099|101102|101692|101728|101731|101827|103535|103564|104217|104942|105155|105192|105199|105287|105321|106594|106600|106647|106822|108487|131915|131928|132585|132613|132615|132675|132824|133707|134195|134887|136364|136372|136464|136547|136550|136552|136777|136791|136891|137840|138462|138657|139369|139377|139622|141332|141336|143140|143157|143229|143258|143271|150150|151141|151296|151696|151755|152734|152761|153138|153150|153315|153446|153481|153711|153719|153754|165524|165563|165747|165751|165790|165813|165903|165918|166023|166024|166148|166193|166304|166531|167591|167603|167702|167722|167735|167786|167959|168010|168032|168175|168183|168322|168637|168914|168920|169007|169009|169078|169084|169276|169341|169490|169579|169780|169799|169816|170026|170145|170184|170985|171032|171185|171241|171247|171263|171268|171351|171715|171771|171780|171808|171866|171873|171903|172130|172260|172292|172435|172539|173141|173147|174035|174036|174176|175066|175203|175344|175658|176368|176600|176940|176948|177077|177326|177364|177736|178280|178380|178417|178518|179142|179160|179638|180039|181285|181507|181511|181517|183853|184512|185520|185664|185938|186861|186914|186938|187125|187166|187207|187353|187362|187372|187388|187405|187603|187611|187773|187954|188001|188055|188069|188114|188142|188155|188339|188678|189041|189409|189629|190049|190129|190159|190163|190184|190255|190256|191073|191499|191552|191615|191784|191820|192080|192084|192090|192364|192400|192497|192578|192625|192824|192903|193055|193096|193122|193139|193201|193423|193438|193987|194136|194356|194359|194374|194512|194747|194820|195231|195232|195233|195234|195380|195531|195855|195898|196191|196196|196387|196407|196661|196743|196819|196904|197472|197632|197731|197806|198031|198035|198239|198620|199192|199526|200000|200042|200401|201132|201142|201400|201506|201650|201884|201887|202163|202301|202593|202823|202832|203229|203236|203240|203319|203426|203574|203577|203606|203702|203782|203794|204057|204059|204220|204295|204356|204638|205055|205064|205160|205213|205214|205215|205216|205217|205218|205219|205220|205221|205222|205223|205224|205225|205226|205227|205228|205229|205230|205231|205232|205233|205234|205235|205236|205237|205238|205239|205240|205241|205242|205243|205244|205245|205246|205247|205248|205249|205250|205251|205252|205253|205254|205255|205256|205257|205258|205259|205260|205261|205262|205263|205264|205266|205267|205268|205269|205270|205271|205272|205273|205274|205275|205276|205277|205278|205279|205280|205281|205282|205283|205284|205285|205286|205287|205288|205289|205290|205291|205292|205293|205294|205295|205296|205297|205298|205299|205300|205301|205302|205303|205304|205305|205306|205307|205308|205309|205310|205311|205312|205313|205314|205315|205316|205318|205319|205320|205321|205322|205323|205324|205325|205326|205327|205328|205329|205330|205331|205332|205333|205334|205335|205336|205337|205338|205339|205340|205341|205342|205343|205344|205345|205346|205347|205348|205349|205350|205351|205352|205353|205560|205614|205685|205712|205749|205751|205760|205774|205782|205793|206604|206607|206662|206847|206974|207083|207373|207384|207951|208334|208381|208500|208585|209009|209348|209451|209776|209960|210567|210770|210844|210875|211234|211259|211289|211398|211619|211676|212004|212652|213812|213813|214063|214088|214097|214182|214194|214282|214480|214565|214794|214795|215003|215013|215042|215122|215784|216792|216945|216948|217281|221666|221670|221765|222374|223295|223780|224213|224490|224581|224696|224794|225802|225872|226114|226499|226500|226616|226619|226644|226676|226714|226843|226863|226864|226865|226866|226867|226868|226869|226870|226871|226872|226873|226874|226875|226876|226877|226878|226879|226880|226881|226882|226883|226884|226885|226886|226887|226888|226889|226890|226891|226892|226893|226894|226895|226896|226897|226898|226899|226900|226901|226902|226903|226904|226905|226906|226907|226908|226909|226910|226911|226912|226913|226914|226915|226916|226917|226918|226919|226920|226921|226922|226923|226924|226925|226926|226927|226928|226929|226930|226931|226932|226933|226934|226935|226936|226937|226938|226939|226940|226941|226943|226944|226945|226946|226947|226948|226949|226950|226951|226952|226953|226954|226955|226956|226957|226958|226959|226960|226961|226962|226963|226964|226965|226966|226967|226968|226969|226970|226971|226972|226973|226974|226975|226976|226977|226978|226979|226980|226981|226982|226983|226984|226985|226986|226987|226988|226990|226991|226992|226993|226994|226995|226996|226997|227149|227442|227573|227575|227704|227705|227916|227917|228522|229258|230744|231319|231722|233842|236970|237087|237161|237193|237361|237522|237540|237577|237580|237610|238040|238140|238141|238144|238265|238371|238448|238767|239060|239061|239063|239064|239066|239067|239068|239069|239071|239653|239729|239988|239989|241557|243874|243879|243992|244362|244490|246907|247138|247331|247398|247444|248718|248801|248902|249186|249187|249402|249403|249404|249405|251795|251796|252568|252569|252571|252573|252615|252616|252617|252618|252641|252642|258028|258132|259310|259632|259636|259703|259731|259764|259766|259867|259931|260056|260057|260112|260118|260139|260145|260197|260201|260216|260226|260231|260237|260332|260464|260844|260860|260979|262449|262652|262666|263628|263783|263820|263863|263933|263996|264040|264172|264223|264289|264295|264306|264319|264409|264452|264453|264455|264472|264579|264585|264701|264749|264790|264818|264834|264868|264918|264950|265019|265026|265061|265066|265087|265161|265169|265356|265486|265487|265683|265716|265961|265994|266825|266963|267044|268409|268428|268514|268930|269056|269643|269985|270479|270643|271442|271805|273821|273837|273988|273989|275011|275215|275373|275375|277307|277378|277383|277389|282155|284036|285551|287891|288002|288297|288300|288305|288307|289063|292154|299663|301687|305992|309497|336769|344606|345159|345525|347796|348767|357238|357818|357961|358169|358626|358688|359044|359063|359196|359235|359406|359436|359455|359567|359705|359719|359788|359810|359832|359886|360026|360041|360082|360358|360425|360481|360483|360506|360537|360663|360827|360953|360954|360957|361201|361249|361750|362169|362226|362295|362304|362305|362307|362521|362591|362622|362760|362761|362861|363354|363355|363745|363797|364009|364135|366251|366307|367600|368900|369575|369680|369986|372204|372611|373997|375991|376041|376243|377729|378314|378330|379337|379439|379953|380054|380077|380084|380086|380179|380180|380317|389795|390603|390793|390806|390810|390816|390817|391721|393213|393272|393277|393293|393419|393597|393598|393622|394025|394498|394831|394832|395365|395425|395446|395633|395647|396091|396092|396688|398044|398057|398531|399614|399617|400867|401348|402131|404064|404352|404579|404621|404685|404973|405151|405662|405676|406085|406103|406301|406308|406311|406361|406643|406645|406864|407111|407285|407314|407321|407414|407685|407716|407722|407832|407854|407888|407897|408367|408418|408443|408758|408791|409082|409186|409190|409370|409871|409927|410051|410288|410566|410579|410785|410844|410863|411055|411222|411351|411396|411406|411425|411554|413210|413341|413523|413586|413927|414715|415042|415146|415340|415341|415555|415566|415608|415625|419002|420424|420436|420472|421170|421413|421466|421541|421560|421579|421588|421607|421611|421748|421767|421792|421824|422065|422244|422482|422499|424269|424347|424352|424367|424377|424395|424464|424467|424470|424508|424589|424658|424677|424961|424962|424990|425322|425370|425418|425484|425532|425603|425749|425767|426143|426170|426193|426373|426672|427996|428002|428365|428625|429423|429631|430907|430936|430947|431000|431351|431521|431537|431679|431718|431903|432314|432466|432635|432665|433013|433016|433030|433034|433282|433314|433525|433962|434040|434511|434544|434545|434546|434666|434772|434926|434929|438002|438371|438534|438582|438780|439569|439573|440007|440754|440756|440913|441110|441271|442550|442849|442981|443454|443460|443498|443697|443738|443981|444179|444522|444732|444898|444924|445137|445168|445184|445240|445319|445470|445592|445607|445843|446047|446115|446249|446250|446292|446299|446559|446656|446660|446696|446866|448729|448971|450123|450636|450732|450997|451256|451688|451689|451704|451720|451751|452021|452043|452162|452171|452193|453630|454493|455442|455873|456090|456312|456324|456355|456365|456419|456421|456650|457003|457194|457446|457777|458147|458651|458664|460390|462249|462324|462592|463464|463729|463941|464077|464162|465968|467831|468132|468163|468512|469277|469791|470488|470673|470963|472081|481276|481307|481337|481342|481356|481504|481686|481690|481755|482036|482116|482203|482260|482276|485751|485882|486168|486695|486748|486791|487108|487162|487182|487199|487206|487224|487274|487294|487785|487920|488100|489035|489489|489825|490617|490705|490839|490959|491714|492188|493048|493323|493414|493478|493936|494972|495044|495146|495185|495875|495880|496319|496394|496909|497599|497712|497837|508309|508821|508824|508884|509136|509219|510978|511019|511147|511148|511149|511150|511151|511152|511153|511154|511155|511156|511157|511158|511159|511160|511161|511162|511163|511164|511165|511166|511167|511168|511169|511170|511171|511172|511173|511174|511175|511176|511177|511178|511179|511180|511181|511182|511183|511184|511185|511186|511187|511188|511189|511190|511191|511192|511193|511194|511195|511196|511197|511198|511199|511200|511201|511202|511203|511204|511205|511206|511207|511208|511209|511210|511211|511212|511213|511214|511215|511216|511217|511218|511219|511220|511221|511222|511223|511224|511225|511226|511227|511228|511229|511230|511231|511232|511233|511234|511235|511236|511237|511238|511239|511240|511241|511242|511243|511244|511245|511246|511247|511248|511249|511250|511251|511252|511253|511254|511255|511256|511257|511258|511259|511260|511261|511262|511263|511264|511265|511266|511267|511268|511269|511270|511271|511272|511273|511274|511275|511276|511277|511278|511279|511280|511281|511282|511283|511284|511285|511286|511287|511288|511289|511290|511291|511292|511293|511294|511295|511296|511297|511298|511299|511300|511301|511302|511303|511304|511305|511306|511307|511308|511309|511310|511311|511312|511313|511314|511315|511316|511317|511318|511319|511320|511321|511322|511323|511324|511325|511326|511327|511328|511329|511330|511331|511332|511333|511334|511335|511336|511337|511338|511339|511340|511341|511342|511343|511344|511345|511346|511347|511348|511349|511350|511351|511352|511353|511354|511355|511356|511357|511358|511359|511360|511361|511362|511363|511364|511365|511366|511367|511368|511369|511370|511371|511372|511373|511374|511375|511376|511377|511378|511379|511380|511381|511382|511383|511384|511385|511386|511387|511388|511389|511390|511391|511392|511393|511394|511395|511396|511397|511398|511399|511400|511401|511402|511403|511404|511405|511406|511407|511408|511409|511410|511411|511412|511413|511414|511415|511416|511417|511418|511419|511420|511421|511422|511423|511424|511425|511426|511427|511428|511429|511430|511431|511432|511433|511434|511435|511436|511437|511438|511439|511440|511441|511442|511443|511444|511445|511446|511447|511448|511449|511450|511451|511452|511453|511454|511455|511456|511457|511458|511459|511460|511461|511462|511463|511464|511465|511466|511467|511468|511469|511470|511471|511472|511473|511474|511475|511476|511477|511478|511479|511480|511481|511482|511483|511484|511485|511486|511487|511488|511489|511490|511491|511492|511493|511494|511495|511496|511497|511498|511499|511500|511501|511502|511503|511504|511505|511506|511507|511508|511509|511510|511511|511512|511513|511514|511515|511516|511517|511518|511519|511520|511521|511522|511523|511524|511525|511526|511527|511529|511530|511531|511532|511533|511534|511535|511536|511537|511538|511539|511540|511541|511542|511543|511544|511545|511546|511547|511548|511549|511550|511551|511552|511553|511554|511555|511556|511557|511558|511559|511560|511561|511562|511563|511564|511565|511566|511567|511568|511569|511570|511571|511572|511573|511574|511575|511576|511577|511578|511579|511580|511581|511582|511583|511584|511585|511586|511587|511588|511589|511590|511591|511592|511593|511594|511595|511596|511597|511598|511599|511600|511601|511602|511603|511604|511605|511606|511607|511608|511609|511610|511611|511612|511613|511614|511615|511616|511617|511618|511619|511620|511621|511622|511623|511624|511625|511626|511627|511628|511629|511630|511631|511632|511633|511634|511635|511636|511637|511638|511639|511640|511641|511642|511643|511644|511645|511646|511647|511648|511649|511650|511651|511652|511653|511654|511655|511656|511657|511658|511659|511660|511661|511662|511663|511664|511665|511666|511667|511668|511669|511670|511671|511672|511673|511674|511675|511676|511677|511678|511679|511680|511681|511682|511683|511684|511685|511686|511687|511688|511689|511690|511691|511692|511693|511694|511695|511696|511697|511698|511699|511700|511701|511702|511703|511704|511705|511706|511707|511708|511709|511710|511711|511712|511713|511714|511715|511716|511717|511718|511719|511720|511721|511722|511723|511724|511725|511726|511727|511728|511729|511730|511731|511732|511733|511734|511735|511736|511737|511738|511739|511740|511741|511742|511743|511744|511745|511746|511747|511748|511749|511750|511751|511752|511753|511754|511755|511756|511757|511758|511759|511760|511761|511762|511763|511764|511765|511766|511767|511768|511769|511770|511771|511772|511773|511774|511775|511776|511777|511778|511779|511780|511781|511782|511783|511784|511785|511786|511787|511788|511789|511790|511791|511792|511793|511794|511795|511796|511797|511798|511799|511800|511801|511802|511803|511804|511805|511806|511807|511808|511809|511810|511811|511812|511813|511814|511815|511816|511817|511818|511819|511820|511821|511822|511823|511824|511825|511826|511827|511828|511829|511830|511831|511832|511833|511834|511835|511836|511837|511838|511839|511840|511841|511842|511843|511844|511845|511846|511847|511848|511849|511850|511851|511852|511853|511854|511855|511856|511857|511858|511859|511860|511861|511862|511863|511864|511865|511866|511867|511868|511869|511870|511871|511872|511873|511874|511875|511876|511877|511878|511879|511880|511881|511882|511883|511884|511885|511886|511887|511888|511889|511890|511891|511892|511893|511894|511895|511896|511897|511898|511899|511900|511901|511902|511903|511904|511905|511906|511907|511908|511909|511910|511911|511912|511913|511914|511915|511916|511917|511918|511919|511920|511921|511922|511923|511924|511925|511926|511927|511928|511929|511930|511931|511932|511933|511934|511935|511936|511937|511938|511939|511940|511941|511942|511943|511944|511945|511946|511947|511948|511949|511950|511951|511952|511953|511954|511955|511956|511957|511958|511959|511960|511961|511962|511963|511964|511965|511966|511967|511968|511969|511970|511971|511972|511973|511974|511975|511976|511977|511978|511979|511980|511981|511982|511983|511984|511985|511986|511987|511988|511989|511990|511991|511992|511993|511994|511995|511996|511997|511998|511999|512000|512001|512002|512003|512004|512005|512006|512007|512008|512009|512010|512011|512012|512013|512014|512015|512016|512017|512018|512019|512020|512021|512022|512023|512024|512025|512026|512027|512028|512029|512030|512032|512033|512034|512035|512036|512037|512038|512039|512040|512041|512042|512043|512044|512045|512046|512047|512048|512049|512050|512051|512052|512053|512054|512055|512056|512057|512058|512059|512060|512061|512062|512063|512064|512065|512066|512067|512068|512069|512070|512071|512072|512073|512074|512075|512076|512077|512078|512079|512080|512081|512082|512083|512084|512085|512086|512087|512088|512089|512090|512091|512092|512093|512094|512095|512096|512097|512098|512099|512100|512101|512102|512103|512104|512105|512106|512107|512108|512109|512110|512111|512112|512113|512114|512115|512116|512117|512118|512119|512120|512121|512122|512123|512124|512125|512126|512127|512128|512129|512130|512131|512132|512133|512134|512135|512136|512137|512138|512139|512140|512141|512142|512143|512144|512145|512146|512147|512148|512149|512150|512151|512152|512153|512154|512155|512156|512157|512158|512159|512160|512161|512162|512163|512164|512165|512166|512167|512168|512169|512170|512171|512172|512173|512174|512175|512176|512177|512178|512179|512180|512181|512182|512183|512184|512185|512186|512187|512188|512189|512190|512191|512192|512193|512194|512195|512196|512197|512198|512199|512200|512201|512202|512203|512204|512205|512206|512207|512208|512209|512210|512211|512212|512213|512214|512215|512216|512217|512218|512219|512220|512221|512222|512223|512224|512225|512226|512227|512228|512229|512230|512231|512232|512233|512234|512235|512236|512237|512238|512239|512240|512241|512242|512243|512244|512245|512246|512247|512248|512249|512250|512251|512252|512253|512254|512255|512256|512257|512258|512259|512260|512261|512262|512263|512264|512265|512266|512267|512268|512269|512270|512271|512272|512273|512274|512275|512276|512277|512278|512279|512280|512281|512282|512283|512284|512285|512286|512287|512288|512289|512290|512291|512292|512294|512295|512296|512297|512298|512299|512301|512302|512303|512304|512305|512306|512307|512308|512309|512310|512311|512312|512313|512314|512315|512316|512317|512318|512319|512320|512321|512322|512323|512324|512325|512326|512327|512328|512329|512330|512331|512332|512333|512334|512335|512336|512337|512338|512339|512340|512341|512342|512343|512344|512345|512346|512347|512348|512349|512350|512351|512352|512353|512354|512355|512356|512357|512358|512359|512360|512361|512362|512363|512364|512365|512366|512367|512368|512369|512370|512371|512372|512373|512374|512375|512376|512377|512378|512379|512380|512381|512382|512383|512384|512385|512386|512387|512388|512389|512390|512391|512392|512393|512394|512395|512396|512397|512398|512399|512400|512401|512402|512403|512404|512405|512406|512407|512408|512409|512410|512411|512412|512413|512414|512415|512416|512417|512418|512419|512420|512421|512422|512423|512424|512425|512426|512427|512428|512429|512430|512431|512432|512433|512434|512435|512436|512437|512438|512439|512440|512441|512442|512443|512444|512445|512446|512447|512448|512449|512450|512451|512452|512453|512454|512455|512456|512457|512458|512459|512460|512461|512462|512463|512464|512465|512466|512467|512468|512469|512470|512471|512472|512473|512474|512475|512476|512477|512478|512479|512480|512481|512482|512483|512484|512485|512486|512487|512488|512489|512490|512491|512492|512493|512494|512495|512496|512497|512498|512499|512500|512501|512502|512503|512504|512505|512506|512507|512508|512509|512510|512511|512512|512514|512515|512516|512517|512518|512519|512520|512521|512522|512523|512524|512525|512526|512527|512528|512529|512530|512531|512532|512533|512534|512535|512536|512537|512538|512539|512540|512541|512542|512543|512544|512545|512546|512547|512548|512549|512550|512551|512552|512553|512554|512555|512556|512557|512558|512559|512560|512561|512562|512563|512564|512565|512566|512567|512568|512569|512570|512571|512572|512573|512574|512575|512576|512577|512578|512579|512580|512581|512582|512583|512584|512585|512586|512587|512588|512589|512590|512591|512592|512593|512594|512595|512596|512597|512598|512599|512600|512601|512602|512603|512604|512605|512606|512607|512608|512609|512610|512611|512612|512613|512614|512615|512616|512617|512618|512619|512620|512621|512622|512623|512624|512625|512626|512627|512628|512629|512630|512631|512632|512633|512634|512635|512636|512637|512638|512639|512640|512641|512642|512643|512644|512645|512646|512647|512648|512649|512650|512651|512652|512653|512654|512655|512656|512657|512658|512659|512660|512661|512662|512663|512664|512665|512666|512667|512668|512669|512670|512671|512672|512673|512674|512675|512676|512677|512678|512679|512680|512681|512682|512683|512684|512685|512686|512687|512688|512689|512690|512691|512692|512693|512694|512695|512696|512697|512698|512699|512700|512701|512702|512703|512704|512705|512706|512707|512708|512709|512710|512711|512712|512713|512714|512715|512716|512717|512718|512719|512720|512721|512722|512723|512724|512725|512726|512727|512728|512729|512730|512731|512732|512733|512734|512735|512736|512737|512738|512739|512740|512741|512742|512743|512744|512745|512746|512747|512748|512749|512750|512751|512752|512753|512754|512755|512756|512757|512758|512759|512760|512761|512762|512763|512764|512765|512766|512767|512768|512769|512770|512771|512772|512773|512774|512775|512776|512777|512778|513764|513765|514054|514345|514977|518753|518766|518792|518802|518804|518806|518815|518959|521091|521309|521964|522461|526449|527227|527917|528766|532288|534083|534887|535054|535181|535312|535681|535682|535696|535725|536028|536093|536176|536318|536593|536830|537592|537681|537796|540508|540513|541820|541828|543305|544371|544451|544523|545698|549765|550272|550323|550329|550566|551320|552094|552136|553083|553138|553141|553519|556917|556937|558756|558764|559297|559307|561125|561126|561564|561582|562329|562906|562907|563969|563980|565136|565621|566800|567795|572547|574280|575492|576714|577733|578643|582027|582761|585348|586059|586092|586093|586588|586642|588190|588776|590062|590666|590743|608837|609004|609347|609353|609606|609654|609849|612493|612999|615264|615564|615903|615920|619906|620155|620519|620656|620784|620839|620947|620951|621254|621259|621983|622924|623048|623090|623091|623119|623562|623660|626013|628122|628211|628806|629312|629754|630771|630810|630816|630834|632159|633216|634574|635668|635799|635800|635801|635804|636056|638948|645913|646400|649942|650229|650247|652719|653912|654425|678080|679342|679910|683194|683196|683529|683848|683851|686295|686707|690361|692122|699851|710770|710771|720108|734776|735957|735958|735959|750424|750426|766115|766116|766136|774687|781528|789122|789163|789896|790077|790601|790617|790946|791440|791903|792088|792596|792602|792612|792992|793117|793656|793759|794177|794182|794237|794511|798400|799111|800473|801085|801162|801406|802169|805009|805049|805167|805337|805391|805474|805659|805909|806101|806443|806444|806445|806446|806447|806448|806449|806450|806451|807500|807501|807502|807503|807504|807505|807506|807507|807508|807509|807510|807511|807512|807513|807514|807515|807516|808571|808572|808573|808841|808842|808843|808844|808845|808846|808847|808848|808849|808850|808851|808852|808853|808854|808855|808856|808857|808858|808859|808860|808861|808862|808863|808864|808865|808866|808867|808868|808869|808870|808871|808872|808946|808947|808948|808949|808950|808951|808952|808953|808954|808955|808956|808957|808958|808959|808960|808961|808962|808963|808964|808965|808966|808967|808968|808969|808970|808971|808972|808973|808974|808975|808976|808977|808978|808979|808980|808981|808982|808983|808984|808985|808986|815210|815357|815362|815363|815364|815365|815376|815377|815378|815379|815858|815972|818138|818149|818727|823396|825612|828702|833340|837232|838068|838538|839718|845247|849076|849768|849785|850686|852409|852982|856110|858389|858585|858736|858737|858885|859195|860188|860285|860317|861273|861275|863212|869160|874793|894062|899376|904282|904660|917579|918256|918423|919009|919426|920940|921158|925364|925521|927262|928734|930058|930218|934656|935257|936134|937817|939439|939681|941955|945044|951879|951890|955261|955679|961317|961320|961597|962975|963245|963552|964268|964282|964590|965295|965644|965685|966137|966154|966983|967133|969360|969487|970273|970285|970288|970291|970335|971344|972656|972910|972936|972955|972978|972994|973120|973121|973122|973123|973124|973125|973126|973127|973128|973129|973130|973131|973132|973133|973134|973135|973136|973137|973138|973139|973140|973141|973142|973144|973145|973146|973147|973148|973149|973150|973151|973152|973153|973154|973155|973156|973157|973158|973159|973160|973161|973162|973163|973164|973165|973166|973167|973168|973169|973170|973171|973172|973173|973174|973175|973176|973177|973178|973179|973180|973181|973182|973183|973184|973185|973186|973187|973188|973189|973190|973191|973192|973193|973194|973195|973196|973197|973198|973199|973200|973201|973202|973203|973204|973205|973206|973207|973208|973209|973210|973211|973212|973213|973214|973215|973216|973217|973218|973219|973220|973221|973222|973223|973224|973225|973226|973227|973229|973230|973231|973232|973233|973234|973235|973236|973237|973238|973239|973240|973241|973242|973243|973244|973245|973246|973247|973248|973249|973250|973251|973252|973253|973254|973255|973256|973257|973258|973259|973260|973261|973262|973263|973264|973265|973266|973267|973268|973269|973270|973271|973272|973273|973274|973275|973276|973277|973278|973279|973280|973281|973282|973283|973284|973285|973286|973287|973288|973289|973290|973291|973292|973293|973294|973295|973296|973297|973298|973299|973300|973301|973302|973303|973304|973305|973306|973307|973308|973309|973310|973311|973312|973313|973314|973315|973316|973317|973318|973319|973320|973321|973322|973323|973324|973325|973326|973327|973328|973329|973330|973331|973332|973333|973334|973335|973336|973337|973338|973339|973340|973341|973342|973343|973344|973345|973346|973347|973348|973349|973350|973351|973352|973353|973354|973355|973356|973357|973358|973359|973360|973361|973362|973363|973364|973365|973366|973367|973368|973369|973370|973371|973372|973373|973374|973375|973376|973377|973378|973379|973380|973381|973382|973383|973384|973385|973386|973387|973388|973390|973391|973392|973393|973395|973396|973397|973398|973399|973400|973401|973402|973403|973404|973405|973406|973407|973408|973409|973410|973411|973412|973413|973414|973415|973416|973417|973418|973419|973420|973421|973422|973423|973424|973425|973426|973427|973428|973429|973430|973431|973432|973433|973434|973435|973436|973437|973438|973439|973440|973441|973442|973443|973444|973445|973446|973447|973448|973449|973450|973451|973452|973453|973454|973455|973456|973457|973458|973459|973460|973461|973462|973463|973464|973465|973466|973467|973468|973469|973470|973471|973473|973474|973475|973476|973477|973478|973479|973480|973481|973482|973483|973484|973485|973486|973487|973488|973489|973490|973491|973492|973493|973494|973495|973496|973497|973498|973499|973500|973501|973502|973503|973504|973505|973506|973507|973508|973509|973510|973511|973512|973513|973514|973515|973516|973517|973518|973519|973520|973521|973522|973523|973524|973525|973526|973527|973528|973529|973530|973531|973532|973533|973534|973535|973536|973537|973538|973539|973540|973541|973542|973543|973544|973545|973546|973547|973548|973549|973550|973551|973552|973553|973554|973555|973556|973557|973558|973559|973560|973561|973562|973563|973564|973565|973566|973567|973568|973569|973570|973571|973572|973573|973575|973576|973577|973578|973579|973580|973581|973582|973583|973584|973585|973586|973587|973588|973589|973590|973591|973592|973593|973594|973595|973596|973597|973598|973599|973600|973601|973602|973603|973604|973605|973606|973607|973608|973609|973610|973611|973612|973613|973614|973615|973616|973617|973618|973619|973620|973621|973622|973623|973624|973625|973626|973627|973628|973629|973630|973631|973632|973633|973634|973635|973636|973637|973638|973639|973640|973641|973642|973643|973644|973645|973646|973647|973648|973649|973650|973651|973652|973653|973654|973655|973656|973657|973658|973659|973660|973661|973662|973663|973664|973665|973666|973667|973668|973669|973671|973672|973673|973674|973675|973676|973677|973678|973679|973680|973681|973682|973683|973684|973685|973686|973687|973688|973689|973690|973691|973692|973693|973694|973695|973696|973697|973698|973699|973700|973701|973702|973703|973704|973705|973706|973707|973708|973710|973711|973712|973713|973714|973715|973716|973717|973718|973720|973721|973722|973723|973724|973725|973726|973727|973728|973729|973730|973731|973732|973733|973734|973735|973736|973737|973738|973739|973740|973741|973742|973743|973744|973745|973746|973747|973748|973749|973750|973751|973752|973753|973754|973755|973756|973757|973758|973759|973760|973761|973762|973763|973764|973765|973766|973767|973768|973769|973770|973771|973772|973773|973774|973775|973776|973777|973778|973779|973780|973781|973782|973783|973784|973785|973786|973787|973788|973789|973790|973791|973792|973793|973794|973795|973796|973797|973798|973799|973800|973801|973802|973803|973804|973805|973806|973807|973808|973809|973810|973811|973812|973813|973814|973815|973816|973817|973818|973819|973820|973821|973822|973823|973824|973825|973826|973827|973828|973829|973830|973831|973832|973833|973834|973835|973836|973837|973838|973839|973840|973841|973842|973843|973844|973845|973846|973847|973848|973849|973850|973851|973852|973853|973854|973855|973856|973857|973858|973859|973860|973861|973862|973863|973864|973865|973866|973867|973868|973869|973870|973871|973872|973873|973874|973875|973876|973879|973880|973881|973882|973883|973884|973885|973886|973887|973888|973889|973890|973891|973892|973893|973894|973895|973896|973897|973898|973899|973900|973901|973902|973903|973904|973905|973906|973907|973908|973909|973910|973911|973912|973913|973914|973915|973916|973917|973918|973919|973920|973921|973922|973923|973924|973925|973926|973927|973928|973929|973930|973931|973932|973933|973934|973935|973936|973937|973938|973939|973940|973941|973942|973943|973944|973945|973946|973947|973948|973949|973950|973951|973953|973954|973955|973956|973957|973958|973959|973960|973961|973962|973963|973964|973966|973967|973968|973969|973970|973971|973972|973973|973974|973975|973976|973977|973978|973979|973980|973981|973982|973983|973984|973985|973986|973988|973989|973990|973991|973992|973993|973994|973995|973996|973997|973998|973999|974000|974001|974002|974003|974004|974005|974006|974007|974008|974009|974010|974011|974012|974013|974014|974015|974016|974017|974018|974019|974020|974021|974022|974023|974024|974025|974026|974027|974028|974029|974030|974032|974033|974034|974035|974036|974037|974038|974039|974040|974041|974042|974043|974044|974045|974046|974047|974048|974049|974050|974051|974052|974053|974054|974055|974056|974057|974058|974059|974060|974061|974062|974063|974064|974065|974066|974067|974068|974069|974070|974071|974072|974073|974074|974075|974076|974077|974078|974079|974080|974081|974082|974083|974084|974085|974086|974087|974088|974089|974090|974091|974092|974093|974094|974095|974096|974097|974098|974099|974100|974101|974102|974103|974104|974105|974106|974107|974108|974109|974110|974111|974112|974113|974114|974115|974116|974117|974118|974119|974120|974121|974122|974123|974124|974125|974126|974127|974128|974129|974130|974131|974132|974133|974134|974135|974136|974137|974138|974139|974140|974141|974142|974143|974144|974145|974146|974147|974148|974149|974150|974151|974152|974153|974154|974155|974156|974157|974158|974159|974160|974161|974162|974163|974164|974165|974166|974167|974168|974169|974170|974171|974172|974173|974174|974175|974176|974177|974178|974179|974180|974181|974182|974183|974184|974185|974186|974187|974188|974189|974190|974191|974192|974193|974194|974195|974196|974197|974198|974199|974200|974201|974202|974203|974205|974206|974207|974208|974209|974210|974211|974212|974213|974214|974215|974216|974217|974218|974219|974220|974221|974222|974223|974224|974225|974226|974227|974228|974229|974230|974231|974232|974233|974234|974235|974236|974237|974238|974239|974240|974241|974242|974243|974244|974245|974246|974247|974248|974249|974250|974251|974252|974253|974254|974255|974256|974257|974258|974259|974260|974261|974262|974263|974264|974265|974266|974267|974268|974269|974270|974271|974272|974273|974274|974275|974276|974277|974278|974279|974280|974281|974282|974283|974284|974285|974286|974287|974288|974289|974290|974292|974293|974294|974295|974296|974297|974298|974299|974300|974301|974302|974303|974304|974305|974306|974307|974308|974309|974310|974311|974312|974313|974314|974315|974316|974317|974318|974319|974320|974321|974322|974323|974324|974325|974326|974327|974328|974329|974330|974331|974332|974333|974334|974335|974336|974337|974338|974339|974340|974341|974342|974343|974344|974345|974346|974347|974348|974349|974350|974351|974352|974353|974354|974355|974356|974357|974358|974359|974360|974361|974362|974363|974364|974365|974366|974367|974368|974369|974370|974371|974372|974373|974374|974375|974376|974377|974378|974379|974380|974381|974382|974383|974384|974385|974386|974387|974388|974389|974390|974391|974392|974393|974394|974395|974396|974397|974398|974399|974400|974401|974402|974403|974404|974405|974406|974407|974408|974409|974410|974411|974412|974413|974414|974415|974416|974417|974418|974419|974420|974421|974422|974423|974424|974425|974426|974427|974428|974429|974430|974431|974432|974433|974434|974435|974436|974437|974438|974439|974440|974441|974442", "text": "Inborn genetic diseases" }, { - "baseId": "15048|15049|15050|15051|15052|15055|15056|15057|15058|17404|17410|19325|94503|134671|186058|186284|205545|212520|213452|221629|221643|221646|222805|224314|224315|239897|299721|299725|299728|299729|299735|299736|302313|302329|302330|302332|302333|306734|307009|307017|307028|307029|395087|395090|395258|395689|395931|455484|455591|561169|620224|621748|790139|790140|790670|895721|895722|895723|895724|895725|895726|895727|895728|895729|895730|895731|895732|895733|895734|895735|895736|895737|896216", + "upstreamId": "15048|15049|15050|15051|15052|15055|15056|15057|15058|17404|17410|19325|94503|134671|186058|186284|205545|212520|213452|221629|221643|221646|222805|224314|224315|239897|299721|299725|299728|299729|299735|299736|302313|302329|302330|302332|302333|306734|307009|307017|307028|307029|395087|395090|395258|395689|395931|455484|455591|561169|620224|621748|790139|790140|790670|895721|895722|895723|895724|895725|895726|895727|895728|895729|895730|895731|895732|895733|895734|895735|895736|895737|896216", "text": "Hemochromatosis type 1" }, { - "baseId": "15048", + "upstreamId": "15048", "text": "Porphyria cutanea tarda, susceptibility to" }, { - "baseId": "15048", + "upstreamId": "15048", "text": "Porphyria variegata, susceptibility to" }, { - "baseId": "15048|19324", + "upstreamId": "15048|19324", "text": "Hemochromatosis, juvenile, digenic" }, { - "baseId": "15048|18672|27428|27656|33210|390084", + "upstreamId": "15048|18672|27428|27656|33210|390084", "text": "Alzheimer disease, susceptibility to" }, { - "baseId": "15048", + "upstreamId": "15048", "text": "Transferrin serum level quantitative trait locus 2" }, { - "baseId": "15048|15049", + "upstreamId": "15048|15049", "text": "Microvascular complications of diabetes 7" }, { - "baseId": "15048|15147|15375|15382|15383|15384|15385|15393|15398|15402|15440|15836|15837|15839|15842|15843|15845|15846|15847|15849|15850|15851|15853|15855|15861|15863|15867|15868|15870|15874|15878|16282|16284|16285|16309|16792|16794|16795|16796|16797|16798|16799|16801|16803|17255|17256|17257|17262|17263|17264|17265|17268|17271|17272|17273|17277|17511|18057|18058|18060|18061|18062|18064|18066|18068|18069|18072|18074|18075|18077|18082|18083|18084|18086|18087|18402|18403|18406|18409|18410|19508|19509|19775|19776|19777|19925|19927|19932|20138|20142|20332|20333|20335|20336|20493|20630|20631|20633|20635|20636|20637|20638|20639|20642|20911|20912|21593|21861|21864|21931|21932|21934|21935|21936|21937|21939|21942|21943|21945|21947|21948|21952|21954|21956|21979|21984|21985|21986|21987|22281|22482|22484|22487|22488|22500|22851|22852|22856|22858|22859|22866|22868|22872|22875|22879|22891|23084|23260|23261|23262|23263|23272|23273|23275|23582|23777|23781|23821|23822|23823|23970|23971|23980|24273|24276|24279|24281|24283|24284|24357|24358|24359|24361|24364|24365|24367|24368|24379|24381|24383|24384|24385|24386|24387|24388|24448|24451|24453|24454|24459|24462|24463|24464|24465|27083|27084|27085|27086|27088|27270|27271|27272|27280|27283|27284|27285|27386|27387|27388|27390|27391|27392|27393|27394|27395|27396|27397|27398|27403|27404|27405|27406|27408|27409|27413|27416|27418|27421|27436|27441|27442|27713|27772|27817|27818|27820|27821|27822|27824|27826|27830|27831|28110|28112|28115|28125|28126|28129|28130|28131|28132|28920|28922|28947|28948|28953|28954|28956|28957|28970|28971|28972|28973|28975|28977|28978|28982|28983|28984|28985|28986|28987|28988|28989|28990|28994|29396|31271|31274|31275|31652|31720|31724|31727|31729|31731|31732|31738|31742|31967|31968|32117|32119|32124|32126|32128|32129|32133|32135|32136|32138|32145|32699|32700|32701|32704|32705|32706|32708|32709|32710|32711|32712|32713|32714|32715|32716|32720|32721|32722|32723|32724|32732|32733|33125|33492|33493|33882|36140|36145|36148|36152|36165|36173|36191|36194|36221|36222|36223|36224|36228|36231|36233|36239|36241|36242|36243|36246|36247|36254|36255|36260|36261|36269|36272|36273|36275|36280|36284|36286|36287|36288|36289|36291|36292|36296|36298|36302|36305|38609|38660|38740|38741|38743|38747|38851|39018|39088|39159|39241|39244|39258|39261|39492|40236|40237|44228|45185|45186|45187|45193|45201|45202|45203|45204|45205|45206|45207|45208|45209|45210|45212|45216|45217|45218|45219|45220|45222|45223|45224|45227|45228|45229|45230|45231|45232|45233|45234|45235|45237|45238|45239|45240|45241|45242|45243|45244|45245|45246|45247|45248|45249|45251|45255|45257|45258|45259|45261|45346|45349|45350|45351|45352|45353|45354|45384|45388|45429|45560|45561|45562|45564|45566|45930|45931|45932|45933|45934|45935|45936|45937|45938|45939|45942|45943|45944|45945|45946|45947|45948|45949|45954|45955|45958|45960|45961|45962|45965|45966|45967|45968|45969|45970|45971|45972|45973|45974|45976|45977|45979|45981|45982|45986|45989|45990|45991|45992|45994|45996|45997|45998|45999|46000|46001|46002|46003|46005|46006|46007|46008|46009|46010|46011|46012|46013|46015|46017|46018|46019|46020|46021|46022|46024|46025|46026|46027|46028|46029|46030|46031|46032|46033|46034|46035|46037|46038|46039|46041|46042|46043|46044|46045|46046|46047|46049|46050|46051|46055|46056|46057|46058|46060|46061|46062|46063|46065|46066|46069|46072|46073|46077|46078|46079|46080|46081|46082|46083|46084|46085|46086|46087|46089|46090|46091|46092|46093|46095|46096|46097|46098|46099|46100|46101|46102|46103|46104|46105|46109|46111|46112|46113|46115|46116|46117|46118|46119|46120|46121|46122|46125|46126|46127|46128|46129|46130|46131|46134|46135|46136|46137|46138|46140|46141|46142|46144|46145|46147|46149|46150|46151|46152|46153|46154|46155|46156|46157|46160|46161|46162|46163|46164|46167|46168|46169|46170|46171|46172|46175|46176|46177|46179|46180|46181|46183|46184|46185|46186|46187|46188|46189|46190|46191|46192|46193|46194|46195|46196|46197|46198|46200|46201|46202|46203|46204|46206|46210|46212|46213|46214|46215|46216|46217|46219|46220|46223|46224|46225|46226|46227|46228|46229|46230|46231|46232|46233|46234|46235|46236|46238|46239|46240|46241|46242|46245|46246|46247|46248|46249|46251|46252|46253|46254|46255|46256|46257|46258|46259|46262|46264|46265|46266|46267|46268|46269|46270|46271|46273|46274|46275|46276|46277|46278|46279|46280|46281|46283|46285|46286|46287|46289|46290|46291|46292|46293|46294|46295|46296|46297|46298|46299|46300|46301|46302|46303|46304|46305|46306|46307|46308|46309|46310|46311|46312|46313|46314|46315|46316|46318|46319|46320|46321|46322|46323|46324|46325|46326|46327|46328|46329|46330|46331|46333|46334|46335|46336|46337|46339|46340|46341|46342|46343|46344|46345|46346|46347|46349|46350|46352|46354|46355|46356|46357|46359|46360|46362|46363|46364|46365|46366|46367|46368|46369|46370|46371|46373|46375|46376|46378|46380|46381|46382|46384|46385|46386|46388|46389|46391|46393|46394|46395|46396|46397|46398|46400|46401|46402|46403|46404|46407|46408|46409|46411|46412|46413|46414|46415|46417|46418|46419|46421|46422|46423|46424|46428|46430|46431|46432|46433|46434|46436|46438|46439|46441|46442|46443|46445|46446|46447|46448|46449|46451|46453|46454|46455|46456|46458|46460|46461|46462|46464|46465|46466|46468|46469|46470|46471|46472|46473|46475|46476|46477|46478|46479|46481|46482|46483|46484|46485|46486|46487|46488|46491|46492|46493|46494|46495|46496|46497|46498|46499|46500|46501|46502|46504|46505|46506|46507|46509|46510|46512|46513|46514|46515|46516|46517|46519|46520|46523|46524|46525|46527|46528|46529|46530|46531|46532|46533|46534|46535|46536|46537|46539|46540|46541|46542|46543|46544|46545|46546|46547|46548|46549|46551|46552|46553|46554|46555|46556|46557|46558|46559|46560|46561|46562|46563|46564|46565|46566|46567|46568|46570|46571|46572|46574|46575|46576|46577|46578|46579|46580|46581|46582|46583|46584|46585|46586|46588|46589|46590|46591|46593|46594|46595|46597|46598|46599|46600|46601|46602|46603|46604|46606|46607|46608|46609|46614|46615|46616|46617|46618|46619|46620|46621|46623|46624|46625|46626|46627|46628|46629|46631|46632|46633|46634|46635|46636|46637|46638|46639|46640|46641|46642|46644|46645|46647|46649|46650|46652|46653|46654|46655|46656|46657|46658|46659|46660|46661|46662|46663|46664|46665|46666|46667|46668|46669|46670|46672|46675|46677|46678|46679|46680|46681|46682|46684|46686|46687|46688|46690|46691|46692|46693|46694|46695|46696|46697|46698|46701|46702|46703|46705|46707|46708|46709|46710|46711|46712|46713|46714|46715|46716|46717|46719|46720|46723|46724|46725|46726|46727|46729|46731|46732|46733|46734|46735|46736|46738|46739|46740|46741|46742|46743|46744|46745|46746|46747|46748|46749|46750|46751|46752|46754|46755|46756|46757|46758|46759|46760|46761|46763|46764|46765|46766|46767|46768|46769|46771|46773|46774|46776|46777|46778|46779|46780|46781|46782|46783|46785|46786|46787|46788|46789|46790|46791|46792|46793|46794|46795|46796|46797|46798|46799|46801|46804|46805|46806|46807|46808|46809|46810|46811|46813|46814|46816|46817|46818|46819|46820|46821|46822|47198|47205|47216|48183|48184|48215|48216|48269|48348|48560|48599|49466|49468|49469|49584|49586|49588|49596|49598|49606|49607|49611|49612|49627|49628|49630|49631|49636|49852|49938|49939|49940|49941|49942|49943|49944|49945|49947|49948|49949|49950|49951|49952|49953|49954|49955|49956|49957|49958|49959|49960|49961|49962|49963|49964|49965|49966|49968|49969|49970|49971|49972|49973|49974|49975|49976|49977|49978|49979|49980|49981|49982|49983|49984|49985|49986|49987|49988|49990|49992|49995|49997|49998|49999|50000|50001|50002|50003|50004|50006|50007|50008|50009|50010|50011|50012|50016|50017|50018|50019|50021|50022|50023|50024|50026|50027|50028|50029|50030|50032|50033|50035|50036|50038|50039|50040|50043|50044|50045|50047|50049|50050|50059|50061|50062|50063|50064|50066|50067|50068|50069|50071|50072|50073|50074|50075|50076|50077|50078|50079|50080|50081|50082|50083|50084|50085|50086|50087|50089|50090|50091|50092|50093|50094|50095|50096|50098|50099|50100|50101|50102|50103|50104|50105|50106|50108|50109|50111|50112|50113|50114|50116|50117|50118|50119|50121|50122|50123|50124|50125|50126|50127|50129|50130|50131|50132|50133|50134|50135|50137|50138|50139|50140|50141|50142|50143|50144|50145|50146|50147|50148|50150|50152|50153|50154|50155|50156|50157|50158|50159|50160|50161|50162|50163|50164|50165|50166|50168|50169|50170|50171|50172|50173|50174|50175|50176|50177|50178|50179|50180|50182|50184|50185|50186|50187|50188|50190|50191|50192|50193|50194|50195|50196|50197|50198|50199|50200|50201|50202|50203|50204|50205|50206|50209|50215|50216|50218|50219|50220|50221|50222|50223|50224|50225|50226|50227|50228|50229|50230|50231|50232|50233|50235|50236|50237|50239|50240|50241|50242|50243|50244|50245|50246|50247|50248|50249|50250|50251|50252|50253|50254|50255|50256|50257|50260|50262|50263|50264|50265|50266|50267|50268|50269|50270|50271|50274|50275|50276|50278|50279|50280|50281|50282|50283|50284|50285|50293|50294|50295|50296|50298|50302|50303|51230|51233|51237|51242|51244|51260|51261|51362|51408|51409|51412|51413|51414|51415|51417|51418|51419|51420|51421|51637|51638|51639|51640|51641|51642|51666|51667|52756|52757|52758|52759|52760|52762|52763|52764|52765|52767|52769|52774|53808|53809|53810|53813|53814|53817|54989|57889|57898|57913|57914|57917|57927|57930|57932|57959|57962|57965|57980|57983|58024|58033|58044|58093|58105|58116|58124|58131|58134|58146|58147|58149|58151|58153|58154|58168|58170|58177|58181|58182|58183|58184|58185|58186|58215|58216|58217|58219|58233|58234|58253|58255|58269|58294|58297|58303|58312|58316|58324|58325|58327|58328|58342|58347|58356|58364|58374|58378|58379|58387|58391|58393|58397|58413|58419|58420|58421|58433|58442|58451|58454|58455|58458|58464|58479|58490|58493|58510|58521|58532|58544|58548|58555|58557|58561|58613|58618|58629|58633|58635|58657|58665|58666|58667|58675|58684|58692|58695|58705|58710|58713|58715|58718|58727|58734|58735|58759|58765|58773|58778|58783|58797|58805|58808|58809|58822|58828|58833|58836|58843|58847|58860|58872|58878|58880|58888|58900|58901|58902|58904|58916|58917|58926|58934|58935|58936|58951|58980|58991|58992|58997|59008|59009|59017|59029|59042|59044|59054|59057|59061|59071|59074|59087|59089|59092|59103|59104|59115|59119|59131|59134|59164|59166|59171|59172|59181|59182|59207|59224|59230|59239|59251|59252|59262|59268|59278|59286|59287|59326|59332|59333|59343|59351|65703|65704|65706|65707|65709|65711|65713|65714|65715|65716|65717|65718|65720|65721|65722|65723|65724|65725|65726|65727|65728|65730|65731|65732|65734|65735|65736|65737|65738|65739|65741|65742|65745|65746|65748|65749|65750|65751|65752|65753|65754|65758|65759|65760|65761|65762|65763|65768|65773|65774|65775|65776|65779|65781|65784|65786|65787|65788|65789|65790|65793|65794|65796|65797|65798|65799|65800|65802|65803|65804|65805|65811|65812|65818|65820|65821|65822|65826|65827|65828|65829|65832|65834|65835|65836|65837|65838|65842|65843|65847|65849|65850|65852|65853|65854|65855|65857|65858|65859|65860|65861|65863|65865|65866|65867|65868|65869|65874|65875|65876|65878|65879|65880|65883|65884|65886|65888|65889|65895|65896|65898|65899|65901|65902|65904|65910|65911|65912|65914|65915|65916|65917|65919|65922|65925|65926|65927|65928|65934|65935|65936|65937|65939|65940|65942|65945|65946|65947|65949|65950|65951|65952|65953|65954|65959|65960|65966|65967|65968|65970|65973|65974|65975|65980|65981|65982|65983|65985|65988|65990|65994|65996|65998|66000|66001|66007|66008|66011|66013|66014|66017|66021|66023|66024|66025|66026|66027|66028|66029|66030|66031|66032|66034|66036|66038|66039|66040|66041|66042|66043|66045|66046|66047|66049|66052|66053|66055|66058|66061|66062|66063|66065|66066|66068|66071|66074|66075|66077|66078|66080|66081|66082|66086|66087|66088|66089|66091|66092|66093|66094|66096|66098|66099|66100|66101|66103|66106|66109|66114|66115|66116|66117|66118|66121|66126|66128|66129|66130|66131|66133|66135|66138|66139|66143|66144|66145|66146|66147|66148|66149|66152|66153|66156|66157|66158|66161|66163|66169|66170|66171|66172|66173|66175|66177|66180|66183|66184|66185|66186|66187|66188|66193|66194|66198|66199|66202|66205|66206|66211|66212|66213|66214|66215|66221|66223|66230|66241|66242|66243|66244|66245|66246|66247|66251|66252|66253|66254|66255|66256|66257|66260|66261|66267|66269|66270|66272|66273|66276|66277|66279|66280|66282|66284|66285|66286|66287|66291|66295|66296|66298|66299|66300|66301|66302|66303|66304|66308|66310|66311|66312|66313|66315|66316|66318|66319|66320|66321|66323|66325|66326|66327|66328|66329|66332|66337|66339|66342|66344|66345|66346|66347|66349|66350|66351|66352|66354|66355|66357|66358|66360|66362|66363|66366|66367|66369|66370|66372|66374|66377|66378|66379|66382|66384|66385|66386|66387|66389|66390|66392|66394|66395|66396|66397|66400|66402|66404|66405|66406|66409|66411|66413|66414|66415|66418|66420|66424|66425|66426|66429|66433|66434|66436|66439|66441|66443|66446|66447|66449|66451|66452|66454|66455|66459|66462|66463|66465|66466|66467|66468|66469|66470|66471|66473|66476|66478|66479|66481|66482|66484|66486|66487|66488|66489|66490|66492|66493|66494|66496|66499|66500|66501|66502|66503|66505|66508|66509|66518|66519|66520|66521|66523|66525|66526|66527|66528|66530|66532|66533|66536|66539|66541|66544|66546|66547|66549|66552|66553|66555|66556|66557|66558|66559|66560|66562|66563|66564|66565|66567|66568|66569|66570|66571|66573|66574|66575|66579|66580|66581|66585|66586|66587|66589|66593|66595|66596|66597|66598|66599|66600|66601|66604|66607|66608|66610|66613|66616|66618|66619|66620|66622|66623|66625|66626|66627|66629|66632|66633|66634|66641|66647|66648|66649|66650|66651|66652|66658|66659|66661|66663|66666|66667|66668|66669|66671|66673|66675|66676|66678|66679|66680|66683|66684|66685|66687|66692|66696|66697|66698|66700|66702|66703|66708|66711|66714|66716|66717|66719|66720|66722|66725|66726|66730|66733|66737|66739|66741|66742|66743|66748|66751|66754|66755|66756|66760|66762|66764|66765|66770|66772|66774|66775|66776|66777|66778|66780|66781|66783|66784|66790|66793|66794|66795|66796|66797|66799|66800|66802|66803|66806|66807|66808|66813|66817|66819|66821|66823|66824|66827|66828|66829|66832|66833|66834|66835|66842|66845|66846|66849|66850|66851|66852|66854|66855|66856|66859|66860|66861|66864|66866|66867|66869|66870|66871|66876|66878|66879|66880|66881|66882|66883|66884|66885|66887|66888|66890|66891|66893|66894|66895|66897|66899|66900|66901|66905|66907|66909|66910|66913|66914|66915|66916|66917|66918|66919|66922|66923|66924|66925|66926|66927|66928|66929|66931|66933|66934|66941|66945|66946|66947|66948|66951|66953|66954|66955|66959|66962|66964|66965|66966|66967|66968|66970|66972|66974|66975|66976|66980|66982|66983|66984|66989|66990|66991|66992|66993|66994|66995|66996|66998|66999|67002|67003|67004|67005|67007|67009|67010|67012|67013|67015|67017|67018|67021|67023|67024|67026|67028|67030|67031|67033|67035|67040|67041|67042|67044|67047|67049|67050|67053|67054|67056|67057|67060|67062|67063|67066|67068|67069|67073|67074|67075|67076|67077|67078|67080|67082|67085|67086|67087|67091|67092|67093|67094|67098|67102|67104|67105|67106|67107|67108|67109|67111|67115|67116|67118|67119|67120|67123|67126|67127|67129|67130|67131|67132|67134|67135|67136|67138|67139|67140|67141|67142|67143|67145|67146|67149|67152|67153|67157|67159|67161|67166|67168|67171|67172|67173|67174|67175|67176|67177|67178|67180|67181|67183|67184|67185|67188|67189|67190|67191|67197|67199|67201|67202|67203|67204|67205|67206|67207|67210|67211|67214|67215|67224|67227|67228|67230|67231|67232|67233|67234|67235|67236|67237|67238|67239|67242|67244|67249|67250|67252|67253|67254|67257|67260|67262|67263|67264|67265|67266|67267|67270|67271|67273|67274|67275|67276|67277|67278|67279|67283|67284|67285|67287|67288|67290|67291|67292|67293|67294|67297|67299|67300|67304|67306|67309|67310|67319|67321|67322|67323|67324|67326|67330|67332|67335|67336|67337|67339|67341|67343|67344|67345|67346|67347|67349|67350|67351|67352|67355|67360|67361|67362|67364|67365|67368|67372|67373|67376|67377|67378|67380|67381|67382|67384|67389|67390|67391|67393|67395|67396|67399|67400|67402|67405|67407|67408|67410|67411|67412|67419|67421|67422|67425|67426|67427|67429|67430|67431|67434|67435|67437|67438|67440|67441|67445|67446|67447|67448|67450|67451|67452|67453|67455|67457|67458|67459|67460|67461|67466|67467|67468|67469|67472|67473|67476|67477|67478|67479|67480|67482|67484|67485|67486|67490|67492|67493|67494|67498|67499|67501|67502|67504|67506|67507|67509|67510|67513|67515|67517|67519|67521|67522|67524|67526|67529|67530|67533|67535|67537|67538|67540|67541|67543|67544|67545|67551|67552|67554|67556|67558|67559|67561|67562|67563|67564|67565|67566|67569|67570|67571|67572|67573|67574|67576|67578|67579|67581|67582|67583|67584|67585|67586|67587|67589|67592|67594|68766|68768|68769|68771|68775|68777|68780|68781|68784|68787|68788|68789|68795|68796|68797|68799|68801|68802|68803|68807|68808|68810|68813|68818|68819|68824|68825|68827|68829|68833|68835|68839|68841|68842|68843|68844|68845|68850|68851|68853|68855|68857|68858|68862|68866|68867|68868|68869|68870|68871|68875|68876|68879|68881|68882|68883|68887|68889|68891|68893|68894|68895|68897|68899|68901|68902|68904|68907|68913|68914|68915|68916|68917|68918|68919|68921|68922|68925|68926|68930|68931|68935|68941|68944|68945|68946|68947|68952|68953|68954|68957|68958|68962|68964|68965|68966|68967|68971|68974|68976|68977|68978|68980|68981|68982|68989|68995|68996|68997|68998|68999|69001|69002|69004|69005|69009|69010|69011|69012|69014|69018|69019|69028|69031|69032|69033|69034|69038|69043|69044|69045|69046|69047|69048|69050|69052|69054|69056|69058|69061|69063|69066|69067|69068|69069|69071|69074|69079|69083|69084|69089|69091|69092|69093|69097|69098|69099|69100|69102|69103|69105|69109|69110|69111|69114|69115|69118|69122|69123|69124|69126|69128|69129|69132|69134|69135|69136|69137|69138|69141|69145|69146|69153|69154|69157|69158|69159|69161|69162|69166|69169|69170|69171|69172|69173|69174|69175|69179|69181|69184|69185|69187|69189|69191|69194|69196|69199|69200|69203|69207|69208|69211|69215|69216|69217|69218|69219|69223|69225|69226|69228|69230|69231|69232|69233|69234|69239|69242|69247|69248|69249|69250|69258|69260|69262|69267|69268|69269|69271|69273|69275|69276|69277|69278|69279|69280|69281|69287|69292|69296|69299|69301|69302|69309|69311|69313|69314|69319|69323|69324|69328|69330|69331|69332|69334|69335|69338|69340|69341|69342|69343|69344|69345|69346|69350|69355|69356|69358|69360|69361|69362|69368|69369|69370|69371|69376|69377|69383|69384|69386|69387|69389|69392|69393|69394|69395|69396|69397|69399|69401|69402|69405|69408|69409|69410|69411|69412|69413|69414|69415|69416|69418|69419|69420|69422|69424|69425|69427|69428|69429|69430|69431|69435|69436|69438|69439|69443|69444|69447|69454|69456|69457|69459|69462|69463|69466|69467|69473|69475|69477|69479|69482|69483|69484|69485|69486|69487|69488|69490|69491|69493|69494|69495|69497|69498|69499|69501|69503|69506|69507|69509|69510|69511|69514|69517|69519|69520|69522|69523|69524|69526|69527|69528|69529|69533|69535|69536|69538|69540|69543|69545|69546|69547|69552|69554|69557|69558|69561|69563|69567|69569|69573|69574|69578|69580|69584|69589|69592|69593|69596|69597|69598|69599|69601|69602|69603|69605|69607|69608|69609|69610|69614|69615|69616|69617|69620|69623|69624|69625|69626|69627|69635|69636|69637|69638|69639|69640|69641|69645|69646|69648|69649|69650|69652|69653|69654|69658|69659|69661|69667|69669|69672|69676|69677|69679|69682|69687|69688|69689|69692|69694|69695|69699|69703|69705|69706|69707|69708|69711|69712|69713|69716|69717|69720|69725|69726|69727|69729|69730|69731|69734|69739|69743|69744|69745|69748|69749|69751|69752|69756|69757|69760|69762|69763|69766|69770|69772|69774|69777|69778|69779|69780|69782|69784|69786|69791|69792|69794|69798|69800|69802|69803|69805|69806|69807|69808|69810|69812|69814|69816|69818|69819|69821|69822|69823|69824|69830|69831|69833|69835|69836|69839|69840|69841|69843|69844|69845|69850|69852|69854|69859|69860|69861|69862|69863|69868|69870|69873|69875|69877|69880|69881|69884|69885|69886|69887|69888|69890|69891|69894|69895|69896|69900|69901|69902|69903|69904|69905|69906|69909|69910|69911|69912|69913|69914|69916|69918|69919|69921|69922|69923|69924|69926|69929|69933|69935|69936|69939|69941|69942|69946|69947|69950|69951|69952|69957|69958|69959|69960|69961|69964|69968|69969|69970|69971|69973|69974|69976|69977|69978|69981|69983|69984|69985|69987|69988|69989|69992|69993|69994|69995|69996|69997|69998|70000|70005|70006|70008|70009|70011|70013|70016|70017|70019|70020|70022|70025|70028|70031|70034|70035|70036|70037|70038|70041|70044|70050|70053|70054|70055|70056|70057|70059|70060|70062|70063|70067|70069|70070|70071|70073|70074|70077|70078|70079|70080|70082|70083|70088|70089|70090|70094|70095|70096|70098|70099|70101|70102|70105|70108|70109|70110|70114|70115|70117|70118|70119|70120|70123|70127|70128|70129|70130|70137|70139|70140|70143|70147|70148|70149|70150|70155|70157|70166|70167|70168|70169|70170|70172|70174|70175|70177|70178|70180|70182|70183|70184|70186|70188|70189|70190|70191|70194|70195|70197|70201|70203|70205|70206|70207|70208|70211|70212|70213|70217|70219|70220|70227|70228|70230|70232|70233|70235|70237|70238|70239|70240|70244|70245|70247|70248|70251|70252|70256|70257|70258|70264|70265|70268|70271|70272|70274|70275|70278|70279|70280|70281|70282|70283|70288|70291|70293|70294|70295|70298|70299|70300|70301|70302|70304|70305|70308|70309|70310|70313|70314|70315|70319|70322|70323|70330|70333|70334|70336|70337|70339|70340|70343|70344|70345|70346|70349|70355|70356|70358|70360|70363|70372|70375|70377|70383|70384|70386|70387|70388|70390|70392|70393|70394|70398|70399|70400|70402|70405|70406|70407|70408|70409|70410|70411|70412|70413|70414|70416|70420|70421|70426|70427|70433|70434|70436|70438|70439|70441|70442|70443|70444|70447|70448|70574|75224|75314|75628|75639|75663|75674|75676|75677|75679|75688|75693|75711|75743|75744|75745|75746|75757|75772|75773|75776|75780|75785|75789|75797|75815|75817|75819|75827|75849|75857|75870|75872|75886|75897|75906|75913|75921|75926|75927|75948|75951|75964|75974|75995|76006|76011|76014|76015|76035|76041|76057|76058|76064|76067|76068|76078|76079|76083|76101|76125|76127|76130|76148|76153|76155|76161|76163|76189|76217|76221|76235|76239|76265|76283|76292|76313|76316|76317|79191|79199|79201|79203|79204|79207|79208|79212|79214|79216|79217|79221|79227|79228|79229|79232|79242|79245|79248|79254|79255|79374|79680|79740|79742|80472|82009|82748|83231|84710|86509|88349|88528|88840|90951|91258|91294|91599|91600|92829|93506|93507|93525|93526|93802|94103|94125|94253|94472|94473|94582|94583|94585|94586|94587|94589|94590|94591|94592|94595|94596|94597|94599|94601|94602|94607|94625|94633|94638|94639|94641|94642|94646|94647|94648|94649|94650|94651|94652|94654|94656|94657|94660|94661|94663|94665|94666|94667|94668|94669|94671|94672|94674|94675|94676|94678|94682|94685|94687|94689|94690|94691|94692|94693|94694|94695|94697|94702|94703|94705|94706|94707|94708|94709|94711|94713|94714|94716|94719|94720|94721|94722|94723|94725|94727|94729|94730|94731|94733|94734|94735|94736|94737|94739|94740|94741|94742|94743|94744|94748|94752|94753|94754|94755|94756|94759|94760|94762|94763|94765|94769|94778|94779|94780|94781|94783|94786|94788|94791|94792|94796|94797|94798|94799|94802|94804|94807|94808|94810|94812|94813|94814|94815|94816|94818|94820|94821|94826|94829|94831|94832|94833|94834|94836|94837|94838|94840|94842|94843|94844|94845|94851|94852|94855|94856|94857|94858|94859|94861|94863|94864|94865|94867|94869|94870|94873|94874|94876|94877|94878|94883|94889|94890|94891|94892|94895|94896|94897|94898|94900|94902|94908|94916|94917|94919|94920|94921|94922|94923|94924|94925|94927|94931|94932|94935|94937|94938|94943|94947|94948|94949|94950|94951|94953|94956|94958|94959|94960|94962|94964|94968|94970|94971|94973|94974|94975|94980|94981|94989|94992|94996|95004|95005|95008|95009|95010|95012|95014|95015|95019|95021|95022|95025|95026|95028|95033|95036|95037|95038|95039|95042|95045|95046|95047|95048|95049|95062|95063|95064|95065|95067|95073|95074|95075|95078|95079|95081|95088|95090|95103|95104|95113|95117|95119|95123|95125|95127|95128|95129|95132|95135|95136|95147|95151|95152|95162|95164|95165|95170|95172|95179|95180|95185|95186|95188|95192|95196|95201|95209|95211|95215|95218|95219|95224|95225|95226|95227|95229|95231|95234|95242|95244|95254|95264|95265|95266|95267|95271|95272|95276|95286|95290|95292|95293|95294|95300|95312|95316|95322|95328|95329|95331|95337|95342|95343|95351|95353|95355|95360|95362|95363|95366|95369|95374|95376|95377|95380|95381|95383|95384|95389|95391|95392|95394|95396|95400|95404|95405|95406|95411|95419|95421|95425|95426|95427|95429|95436|95438|95440|95442|95445|95449|95455|95459|95462|95466|95470|95471|95474|95475|95477|95479|95480|95481|95483|95484|95486|95487|95488|95490|95494|95497|95506|95516|95520|95521|95523|95524|95527|95535|95539|95541|95542|95550|95552|95555|95556|95557|95558|95561|95562|95563|95564|95568|95571|95574|95575|95576|95584|95586|95590|95592|95596|95600|95601|95603|95606|95612|95614|95615|95621|95622|95623|95625|95630|95641|95646|95650|95652|95657|95658|95662|95663|95665|95668|95685|95687|95694|95697|95703|95704|95706|95710|95717|95718|95724|95725|95731|95732|95734|95741|95747|95748|95754|95756|95759|95761|95765|95767|95774|95775|95777|95780|95785|95789|95791|95792|95793|95798|95799|95805|95806|95809|95812|95813|95816|95823|95824|95829|95830|95832|95833|95835|95837|95841|95843|95846|95848|95854|95855|95856|95862|95865|95871|95877|95880|95881|95883|95884|95887|95888|95889|95892|95894|95895|95898|95916|95918|95919|95926|95927|95928|95930|95932|95960|95963|95970|95977|95983|95985|95987|95989|95994|95995|95999|96000|96003|96004|96016|96023|96025|96028|96029|96030|96031|96032|96035|96040|96041|96044|96045|96047|96048|96049|96052|96054|96058|96059|96064|96065|96067|96069|96077|96080|96091|96094|96098|96100|96103|96104|96109|96110|96111|96112|96116|96129|96131|96132|96135|96137|96141|96145|96149|96150|96152|96154|96157|96159|96163|96169|96171|96172|96173|96176|96178|96182|96184|96188|96189|96190|96192|96195|96196|96199|96201|96202|96205|96212|96219|96220|96222|96223|96225|96230|96238|96241|96242|96243|96248|96250|96256|96257|96262|96265|96268|96269|96271|96273|96274|96279|96280|96281|96283|96284|96286|96287|96288|96290|96291|96293|96297|96300|96307|96308|96310|96317|96318|96320|96322|96329|96330|96342|96343|96346|96348|96349|96350|96353|96356|96358|96360|96361|96362|96367|96378|96381|96382|96384|96385|96396|96402|96403|96408|96417|96418|96420|96421|96423|96424|96425|96428|96430|96431|96432|96433|96437|96438|96439|96440|96443|96447|96449|96451|96452|96456|96458|96460|96461|96462|96463|96465|96466|96470|96473|96474|96475|96478|96479|96480|96481|96482|96483|96490|96491|96492|96494|96496|96497|96503|96505|96506|96508|96510|96512|96513|96514|96516|96517|96518|96520|96522|96525|96526|96528|96529|96532|96534|96535|96536|96537|96538|96543|96545|96550|96564|96565|96567|96569|96571|96572|96573|96574|96575|96576|96579|96580|96581|96582|96583|96584|96585|96587|96589|96590|96592|96594|96595|96600|96601|96602|96605|96608|96609|96614|96615|96616|96617|96627|96630|96631|96632|96637|96646|96647|96648|96649|96652|96653|96656|96657|96658|96660|96664|96669|96670|96671|96675|96680|96681|96697|96700|96708|96710|96711|96714|96715|96718|96720|96721|96722|96724|96728|96729|96735|96736|96739|96742|96743|96744|96746|96747|96748|96764|96765|96768|96774|96776|96778|96779|96780|96781|96786|96787|96788|96790|96792|96793|96795|96796|96798|96799|96802|96803|96804|96805|96806|96808|96809|96812|96813|96815|96818|96825|96826|96827|96830|96834|96836|96837|96838|96839|96841|96843|96850|96851|96852|96857|96858|96861|96886|96887|96888|96891|96892|96893|96896|96898|96899|96900|96902|96903|96904|96905|96906|96907|96908|96909|96910|96912|96914|96915|96916|96917|96918|96919|96921|96922|96923|96924|96927|96928|96929|96932|96933|96934|96936|96938|96939|96940|96942|96943|96944|96946|96947|96949|96950|96952|96953|96954|96955|96958|96959|96960|96962|96963|96964|96965|96966|96967|96968|96969|96971|96972|96973|96975|96977|96978|96979|96980|96981|96982|96983|96985|96986|96988|96991|96992|96994|96995|96996|96997|96998|96999|97001|97002|97003|97006|97007|97008|97009|97010|97011|97013|97016|97018|97019|97024|97025|97029|97031|97033|97034|97035|97039|97045|97047|97050|97051|97052|97053|97054|97055|97058|97059|97060|97061|97064|97068|97069|97070|97071|97072|97073|97074|97079|97080|97081|97082|97083|97086|97088|97089|97091|97094|97095|97097|97099|97104|97106|97107|97108|97109|97111|97112|97113|97115|97116|97118|97119|97120|97121|97122|97123|97124|97126|97127|97128|97129|97130|97131|97133|97134|97135|97136|97137|97138|97139|97141|97143|97144|97145|97146|97207|97209|97210|97211|97212|97213|97215|97218|97221|97222|97224|97225|97226|97227|97231|97232|97233|97234|97235|97236|97239|97241|97242|97244|97248|97249|97251|97252|97253|97257|97259|97262|97264|97265|97266|97267|97270|97271|97273|97276|97277|97278|97279|97280|97283|97286|97287|97288|97291|97292|97293|97295|97297|97299|97304|97306|97307|97309|97310|97311|97312|97314|98250|98251|98252|98253|98256|98257|98259|98260|98304|98305|98306|98307|98308|98338|98356|98360|98361|98362|98364|98365|98484|98485|98486|98572|98605|98715|98720|98723|98724|98725|98729|98734|98735|98737|98739|98740|98741|98743|98746|98749|99003|99004|99006|99143|99230|99232|99233|99236|99237|99468|99469|99470|99471|99473|99474|99475|99476|99477|99478|99479|99480|99481|99482|99483|99993|101890|101892|101893|102143|102144|102146|102148|102363|102364|102365|102366|102368|102369|102370|102375|102376|102377|102378|102383|102386|102387|102661|102663|102664|102665|102666|102667|102668|102669|102670|102671|102673|102674|102677|102678|102680|102682|102683|102685|102686|102688|102689|102690|102691|102692|102695|102696|102697|102698|102700|102704|102706|102707|102708|102709|102710|102712|102713|102714|102715|102716|102717|102719|102720|102721|102722|102726|102727|102728|102729|102730|102731|102732|102733|102735|102736|102737|102738|102739|102740|102741|102743|102744|102745|102747|102748|102749|102750|102751|102752|102753|102754|102755|102756|102757|102758|102760|102762|102763|102764|102765|102766|102767|102768|102769|102770|102774|102776|102777|102779|102780|102781|102782|102785|102786|102787|102788|102789|102790|102791|102792|102793|102796|102797|102798|102799|102803|102805|102806|102807|102808|102810|102811|102812|102813|102814|102815|102816|102820|102823|102824|102826|102827|102828|102830|102832|102834|102837|102841|102843|102844|102847|102850|102851|102852|102857|102858|102860|106674|106675|131003|131005|131012|131029|131039|131041|131051|131054|131056|131057|131058|131059|131061|131074|131086|131090|131092|131104|131105|131108|131133|131135|131139|131163|131189|131196|131201|131202|131204|131205|131210|131211|131213|131215|131218|131219|131223|131224|131233|131235|131241|131245|131247|131248|131253|131260|131262|131263|131264|131265|131267|131278|131284|131298|131299|131306|131316|131321|131329|131336|131341|131348|131362|131363|131365|131369|131381|131383|131384|131389|131392|131402|131404|131418|131419|131421|131425|131427|131434|131435|131436|131440|131444|131445|131446|131463|131464|131466|131471|131481|131482|131483|131484|131485|131493|131494|131503|131510|131512|131514|131516|131517|131522|131523|131527|131529|131530|131531|131533|131534|131536|131538|131539|131541|131545|131548|131550|131552|131554|131560|131565|131567|131568|131572|131573|131575|131579|131583|131584|131587|131593|131600|131601|131603|131604|131610|131617|131620|131625|131626|131634|131651|131656|131660|131662|131663|131666|131667|131668|131671|131673|131674|131678|131693|131694|131696|131701|131705|131706|131712|131716|131719|131726|131727|131730|131733|131737|131739|131740|131741|131749|131750|131754|131755|131887|131888|131890|131891|131894|131895|131896|131897|131898|131899|131900|132081|132088|132090|132091|132092|132093|132094|132096|132097|132100|132101|132102|132103|132105|132108|132109|132110|132111|132112|132114|132116|132117|132118|132119|132120|132121|132123|132124|132126|132132|132133|132134|132135|132136|132137|132138|132139|132140|132145|132147|132150|132152|132154|132156|132157|132158|132159|132162|132163|132165|132167|132170|132170|132171|132179|132180|132182|132183|132185|132186|132188|132189|132191|132192|132193|132198|132198|132201|132202|132204|132205|132206|132207|132208|132208|132209|132211|132215|132216|132217|132218|132219|132221|132221|132223|132225|132226|132227|132228|132236|132237|132238|132239|132240|132241|132242|132243|132244|132246|132247|132248|132249|132250|132251|132253|132254|132255|132257|132258|132259|132260|132264|132267|132268|132270|132271|132272|132273|132274|132275|132276|132277|132278|132279|132280|132281|132282|132284|132285|132286|132287|132288|132290|132291|132292|132295|132306|132330|132334|132336|132337|132338|132342|132347|132350|132354|132403|132404|132411|132413|132420|132421|132422|132423|132424|132427|132476|132477|132478|132480|132481|132482|132489|132498|132502|132509|132512|132516|132517|132522|132523|132526|132527|132543|132544|132732|132733|132734|132735|132738|132739|132742|132743|132744|132745|132747|132748|132749|132750|132751|132752|132753|132754|132755|132757|132758|132759|132760|132761|132763|132764|132765|132766|132767|132769|132770|132771|132772|132773|132774|132775|132776|132777|132778|132779|132780|132781|132782|132783|132784|132785|132786|132787|132788|132789|132790|132791|132792|132794|132795|132796|132797|132798|132799|132800|132801|132802|132803|132804|132805|132806|132807|132808|132809|132810|132811|132812|132813|132814|132815|132816|132817|132818|132819|132820|132821|132822|132823|132824|132825|132826|132827|132828|132829|132830|132831|132832|132833|132834|132835|132836|132837|132838|132839|132840|132841|132842|132843|132844|132845|132846|132847|132848|132849|132850|132851|132852|132854|132856|132857|132858|132859|132860|132861|132862|132863|132864|132865|132867|132868|132869|132870|132871|132872|132873|132874|132875|132876|132877|132878|132879|132880|132881|132882|132883|132885|132886|132887|132888|132889|132890|132891|132892|132893|132894|132895|132896|132897|132899|132900|132901|132902|132903|132904|132905|132906|132907|132909|132910|132911|132912|132913|132914|132915|132916|132917|132918|132920|132921|132922|132923|132924|132925|132926|132928|132929|132930|132931|132932|132934|132935|132936|132937|132939|132941|132942|132943|132944|132945|132946|132947|132948|132949|132950|132951|132954|132955|132956|132957|132958|132960|132961|132962|132963|132964|132965|132967|132968|132969|132971|132972|132973|132974|132975|132977|132979|132980|132981|132982|132983|132986|132989|132991|132992|132993|132994|132995|132997|132998|133000|133001|133005|133006|133007|133008|133009|133011|133012|133013|133014|133015|133016|133017|133018|133019|133020|133021|133022|133023|133024|133025|133026|133027|133028|133029|133030|133031|133032|133033|133036|133037|133038|133039|133041|133042|133043|133044|133045|133046|133047|133048|133049|133050|133051|133053|133055|133057|133058|133060|133061|133062|133063|133064|133065|133066|133068|133069|133070|133071|133072|133073|133074|133075|133076|133077|133078|133079|133080|133081|133082|133083|133084|133085|133086|133087|133088|133089|133090|133091|133093|133094|133095|133096|133097|133098|133099|133100|133101|133103|133104|133105|133106|133108|133109|133110|133111|133112|133113|133115|133116|133117|133118|133119|133120|133122|133123|133131|133133|133138|133139|133140|133142|133144|133145|133148|133149|133150|133151|133152|133153|133154|133155|133156|133157|133158|133159|133160|133162|133163|133164|133165|133166|133167|133168|133169|133170|133171|133172|133173|133174|133175|133176|133177|133178|133179|133180|133182|133184|133186|133187|133188|133189|133190|133192|133193|133194|133195|133197|133198|133199|133200|133201|133202|133203|133204|133205|133206|133207|133208|133209|133210|133211|133212|133213|133214|133215|133216|133217|133218|133219|133220|133221|133222|133223|133224|133225|133226|133227|133228|133229|133230|133231|133233|133234|133235|133237|133238|133239|133240|133242|133245|133246|133247|133248|133249|133250|133251|133252|133253|133254|133255|133256|133257|133258|133259|133261|133262|133263|133264|133265|133267|133268|133269|133271|133273|133275|133276|133277|133278|133280|133281|133282|133283|133284|133285|133286|133287|133288|133289|133290|133291|133292|133293|133294|133295|133297|133298|133299|133300|133302|133303|133304|133305|133306|133307|133308|133309|133310|133311|133312|133313|133314|133315|133316|133317|133318|133319|133320|133321|133322|133323|133324|133325|133326|133328|133329|133330|133331|133332|133333|133335|133336|133337|133338|133339|133340|133341|133342|133343|133344|133345|133346|133347|133348|133349|133350|133351|133352|133353|133354|133355|133356|133357|133359|133360|133361|133362|133363|133364|133365|133366|133367|133368|133369|133370|133371|133372|133374|133375|133376|133377|133378|133379|133380|133381|133382|133383|133384|133385|133386|133387|133388|133389|133390|133391|133393|133394|133395|133396|133397|133398|133399|133400|133401|133402|133404|133405|133406|133407|133411|133412|133413|133414|133416|133417|133418|133419|133420|133422|133423|133424|133425|133426|133427|133428|133429|133431|133432|133433|133434|133435|133436|133437|133438|133439|133440|133443|133444|133446|133447|133449|133450|133451|133452|133454|133455|133456|133457|133458|133459|133460|133461|133462|133463|133464|133465|133466|133467|133468|133469|133470|133471|133472|133473|133474|133475|133476|133477|133478|133479|133480|133481|133482|133483|133484|133485|133486|133487|133488|133489|133490|133491|133492|133493|133494|133495|133496|133498|133499|133500|133501|133502|133503|133504|133505|133506|133507|133508|133510|133511|133513|133514|133516|133517|133518|133519|133520|133521|133522|133523|133524|133525|133526|133527|133528|133529|133530|133531|133532|133533|133534|133535|133536|133537|133538|133539|133540|133541|133542|133543|133544|133545|133546|133547|133549|133573|133574|133575|133576|133577|133578|133579|133580|133581|133582|133583|133585|133586|133587|133588|133590|133593|133594|133595|133596|133597|133599|133600|133601|133602|133603|133604|133605|133606|133607|133608|133609|133610|133611|133612|133613|133614|133615|133617|133618|133619|133620|133622|133623|133624|133626|133627|133628|133629|133630|133631|133632|133634|133636|133637|133640|133641|133642|133643|133644|133645|133646|133647|133648|133649|133650|133651|133652|133653|133654|133655|133656|133657|133658|133659|133660|133661|133662|133663|133664|133665|133666|133667|133668|133669|133672|133673|133675|133681|133903|133904|133905|133906|133907|133908|133909|133979|134454|135068|135720|135721|135723|135724|135725|135726|135727|135728|135729|135730|136089|136432|136433|136434|136435|136436|136438|136439|136440|136441|136442|136443|136444|136445|136446|136447|136448|136449|136450|136451|136452|136453|136454|136455|136456|136457|136458|136460|136461|136462|136463|136467|136468|136469|136470|136471|136472|136473|136474|136475|136478|136479|136480|136481|136483|136484|136485|136486|136487|136488|136490|136491|136492|136493|136496|136497|136498|136499|136500|136501|136502|136503|136504|136505|136506|136507|136508|136509|136510|136511|136512|136513|136514|136515|136517|136518|136519|136520|136521|136527|136528|136529|136530|136569|136721|136722|136723|137023|137024|137125|137200|137201|137204|137207|137210|137211|137213|137215|137218|137224|137244|137247|137248|137249|137251|137252|137253|137254|137255|137256|137257|137258|137260|137261|137262|137263|137264|137268|137269|137270|137271|137272|137273|137274|137275|137276|137277|137278|137341|137342|137343|137344|137345|137346|137347|137349|137350|137352|137354|137355|137356|137357|137358|137359|137360|137362|137363|137364|137367|137368|137369|137370|137371|137372|137373|137374|137375|137376|137377|137378|137379|137380|137381|137382|137400|137402|137403|137404|137405|137406|137436|137437|137438|137440|137441|137442|137446|137447|137449|137450|137452|137453|137456|137457|137461|137463|137464|137465|137467|137468|137469|137470|137471|137472|137473|137474|137475|137476|137481|137482|137484|137487|137489|137490|137491|137492|137493|137494|137495|137496|137497|137498|137499|137500|137501|137584|137585|137586|137587|137588|137589|137590|137591|137592|137593|137594|137612|137613|137614|137615|137616|137621|137622|137623|137625|137626|137627|137628|137629|137631|137701|137703|137704|137705|137706|137707|137708|137709|137710|137711|137712|137713|137714|137715|138034|138035|138036|138037|138038|138040|138041|138043|138044|138152|138154|138155|138156|138157|138162|138163|138165|138166|138169|138170|138171|138360|138363|138364|138366|138367|138368|138381|138382|138384|138385|138387|138388|138389|138390|138391|138392|138393|138394|138395|138396|138397|138579|138580|138581|138582|138585|138587|138588|138590|138591|138592|138594|138595|138596|138598|138599|138600|138601|138602|138603|138605|138606|138611|138612|138613|138614|138615|138616|138617|138618|138619|138620|138621|138622|138623|138625|138626|138627|138628|138630|138631|138632|138633|138635|138636|138731|138732|138733|138734|138735|138753|138754|138755|138756|138757|138759|138761|138767|138801|138803|138805|138806|138808|138809|138810|138811|138832|138833|138834|138836|138837|138838|138839|138840|138841|138842|138843|138845|138846|138848|138849|138854|138857|138859|138860|138861|138864|138912|138916|138917|138918|138922|138925|138926|138927|138928|138929|138930|138931|138932|138933|138935|138936|138937|138983|138984|138985|138986|138987|138989|138990|138991|138992|138993|138994|138995|138996|139016|139017|139019|139020|139021|139022|139023|139024|139025|139097|139098|139099|139100|139102|139103|139105|139109|139110|139111|139112|139113|139116|139118|139119|139123|139124|139125|139127|139129|139144|139145|139304|139395|139396|139397|139398|139399|139401|139402|139403|139404|139405|139406|139407|139410|139412|139413|139414|139415|139416|139417|139418|139419|139420|139421|139422|139423|139425|139426|139427|139428|139429|139430|139431|139432|139433|139435|139436|139437|139438|139439|139440|139441|139442|139443|139444|139445|139447|139448|139449|139450|139451|139452|139453|139454|139455|139456|139457|139458|139459|139460|139462|139463|139464|139465|139466|139468|139469|139470|139471|139472|139473|139474|139475|139476|139477|139478|139479|139480|139481|139482|139483|139484|139485|139486|139487|139488|139489|139490|139492|139494|139496|139497|139499|139500|139502|139503|139505|139506|139507|139508|139509|139511|139515|139517|139518|139520|139521|139522|139525|139526|139527|139528|139529|139530|139531|139532|139533|139534|139536|139537|139538|139539|139540|139541|139542|139544|139545|139546|139547|139548|139549|139550|139551|139552|139553|139554|139555|139556|139558|139559|139560|139561|139564|139565|139566|139567|139568|139569|139570|139571|139572|139573|139574|139575|139576|139577|139578|139581|139582|139583|139585|139586|139587|139589|139590|139591|139594|139595|139596|139597|139600|139602|139603|139604|139606|139607|139609|139610|139611|139612|139613|139614|139615|139616|139617|139619|139620|139621|139623|139624|139625|139626|139627|139628|139629|139630|139631|139632|139633|139634|139635|139636|139637|139638|139639|139640|139641|139642|139643|139644|139645|139646|139647|139649|139650|139651|139652|139653|139654|139655|139656|139657|139658|139659|139660|139662|139663|139666|139667|139668|139669|139672|139673|139675|139678|139679|139680|139681|139682|139683|139684|139685|139686|139688|139690|139691|139692|139693|139695|139696|139697|139698|139699|139700|139701|139702|139703|139704|139705|139729|139737|139746|139747|139748|139750|139751|139752|139753|139754|139755|139756|139757|139758|139759|139760|139761|139762|139763|139764|139765|139766|139767|139768|139769|139770|139771|139773|139774|139775|139776|139777|139778|139779|139780|139781|139782|139786|139788|139789|139790|139791|139792|139793|139797|139798|139800|139801|139802|139803|139805|139806|139807|139808|139809|139810|139811|139812|139813|139814|139815|139817|139818|139819|139820|139821|139822|139823|139824|139825|139826|139827|139829|139830|139831|139832|139833|139834|139835|139836|139838|139840|139841|139842|139843|139844|139845|139846|139847|139848|139849|139850|139851|139852|139853|139854|139855|139856|139857|139858|139859|139860|139861|139862|139863|139864|139866|139867|139868|139869|139870|139872|139873|139874|139876|139878|139879|139880|139881|139882|139913|140108|140109|140110|140111|140112|140113|140114|140132|140133|140134|140135|140136|140137|140138|140139|140140|140141|140142|140143|140144|140145|140146|140147|140148|140149|140179|140180|140181|140182|140183|140184|140185|140186|140187|140190|140191|140192|140193|140199|140200|140201|140202|140203|140204|140210|140211|140212|140213|140214|140216|140217|140219|140221|140222|140223|140227|140228|140229|140230|140240|140241|140242|140243|140244|140245|140246|140247|140248|140249|140250|140251|140252|140253|140254|140255|140256|140257|140258|140259|140260|140261|140262|140263|140264|140265|140266|140268|140269|140270|140271|140272|140273|140274|140275|140276|140277|140278|140279|140280|140281|140282|140283|140284|140285|140286|140287|140289|140394|140395|140396|140397|140398|140399|140400|140401|140402|140420|140443|140444|140445|140446|140447|140448|140450|140916|140917|140919|140978|140979|140980|140981|140983|140984|140987|140988|140989|141073|141075|141076|141394|141395|141432|141433|141434|141443|141444|141446|141447|141448|141450|141451|141608|141632|141633|141634|141635|141933|141956|141957|141958|141959|141960|141961|141962|141963|141964|141965|141966|142010|142011|142012|142013|142014|142128|142129|142130|142131|142132|142277|142278|142279|142280|142400|142401|142402|142403|142404|142406|142408|142409|142537|142538|142541|142570|142571|142572|142573|142574|142575|142576|142577|142578|142579|142580|142582|142583|142921|142922|142923|143033|143034|143035|143036|143037|143038|143039|143040|143041|143042|143043|143171|143198|143199|150470|150471|150472|150473|150475|150476|150477|150478|150480|150481|150482|150483|150484|150485|150486|150487|150488|150489|150490|150491|150492|150493|150494|150495|150496|150497|150498|150499|150500|150501|150502|150503|150504|150505|150506|150508|150509|150510|150511|150512|150513|150514|150515|150516|150517|150518|150519|150520|150521|150522|150523|150524|150525|150526|150527|150528|150530|150531|150532|150533|150534|150535|150536|150537|150538|150539|150540|150541|150542|150543|150544|150545|150546|150547|150548|150549|150550|150551|150552|150553|150554|150555|150556|150557|150558|150559|150560|150561|150562|150563|150564|150565|150566|150567|150568|150569|150570|150571|150572|150573|150575|150576|150577|150578|150580|150581|150582|150583|150584|150585|150586|150587|150588|150589|150590|150591|150592|150593|150594|150595|150597|150598|150599|150600|150601|150602|150603|150604|150605|150606|150607|150608|150609|150610|150611|150612|150613|150615|150616|150617|150618|150619|150621|150622|150623|150624|150625|150626|150627|150628|150629|150630|150632|150633|150634|150635|150636|150637|150638|150639|150640|150641|150642|150643|150644|150645|150646|150647|150648|150650|150651|150652|150653|150654|150655|150656|150657|150658|150659|150660|150661|150662|150663|150664|150665|150666|150667|150668|150669|150670|150671|150672|150673|150674|150675|150676|150677|150678|150679|150680|150681|150682|150683|150684|150685|150686|150687|150688|150689|150690|150692|150693|150694|150695|150696|150697|150698|150699|150700|150701|150702|150703|150704|150705|150706|150707|150708|150709|150710|150711|150712|150713|150714|150715|150716|150717|150718|150719|150720|150721|150722|150723|150724|150725|150726|150727|150728|150729|150730|150731|150732|150733|150734|150735|150736|150737|150738|150739|150740|150741|150742|150743|150744|150745|150746|150747|150748|150749|150750|150751|150752|150753|150754|150755|150756|150757|150758|150759|150760|150761|150762|150763|150764|150765|150766|150767|150768|150769|150770|150771|150772|150773|150774|150775|150776|150777|150778|150779|150780|150781|150782|150783|150784|150785|150786|150787|150788|150789|150790|150791|150792|150793|150794|150795|150796|150798|150799|150800|150801|150802|150803|150804|150805|150806|150807|150808|150809|150810|150811|150812|150813|150814|150815|150816|150817|150818|150819|150820|150821|150822|150823|150824|150825|150826|150827|150828|150829|150830|150831|150832|150833|150834|150835|150836|150837|150838|150839|150840|150841|150842|150843|150844|150845|150846|150847|150848|150849|150850|150851|150852|150853|150854|150855|150856|150857|150858|150859|150860|150861|150862|150863|150864|150865|150866|150867|150868|150869|150870|150871|150872|150873|150874|150875|150876|150877|150878|150879|150880|150881|150882|150883|150884|150885|150886|150887|150888|150889|150891|150892|150893|150894|150895|150896|150897|150898|150899|150900|150901|150902|150903|150904|150905|150906|150907|150908|150909|150910|150911|150912|150913|150914|150915|150916|150917|150918|150919|150920|150921|150922|150923|150924|150925|150926|150927|150928|150929|150930|150931|150932|150933|150934|150935|150936|150937|150938|150939|150940|150941|150942|150943|150944|150945|150946|150947|150948|150949|150950|150951|150952|150953|150954|150955|150956|150957|150958|150959|150960|150961|150962|150963|150964|150965|150967|150968|150969|150970|150971|150972|150973|150974|150975|150976|150977|150978|150979|150980|150981|150982|150983|150984|150985|150986|150987|150988|150989|150990|150991|150992|150993|150994|150995|150996|150997|150998|150999|151000|151001|151002|151003|151004|151005|151006|151007|151008|151009|151010|151011|151012|151013|151014|151015|151016|151017|151018|151019|151020|151021|151022|151023|151024|151025|151026|151027|151028|151029|151030|151031|151032|151033|151034|151035|151036|151037|151038|151039|151040|151041|151042|151043|151044|151045|151046|151047|151048|151049|151050|151051|151052|151053|151054|151055|151056|151057|151058|151059|151060|151061|151062|151063|151064|151065|151066|151067|151068|151069|151070|151071|151072|151073|151074|151075|151076|151077|151078|151079|151080|151081|151082|151083|151084|151085|151086|151087|151088|151089|151090|151091|151092|151093|151094|151095|151096|151097|151098|151099|151100|151101|151102|151103|151104|151105|151106|151107|151108|151109|151110|151112|151113|151114|151115|151116|151117|151118|151119|151120|151121|151122|151123|151126|151128|151129|151130|151131|151132|151133|151134|151137|151139|151142|151143|151144|151145|151146|151147|151148|151149|151150|151151|151152|151153|151154|151155|151156|151157|151158|151159|151160|151161|151162|151163|151164|151165|151166|151167|151168|151169|151170|151171|151172|151173|151174|151175|151176|151177|151178|151179|151180|151181|151182|151183|151184|151185|151186|151187|151188|151189|151190|151191|151192|151193|151194|151195|151196|151197|151198|151199|151200|151201|151202|151203|151204|151205|151206|151207|151208|151209|151210|151211|151212|151213|151214|151215|151216|151217|151218|151219|151220|151221|151222|151223|151224|151225|151226|151227|151228|151229|151230|151231|151232|151233|151234|151235|151236|151237|151238|151239|151240|151241|151242|151243|151244|151245|151246|151247|151248|151249|151250|151251|151252|151253|151254|151255|151256|151257|151258|151259|151260|151261|151262|151263|151264|151265|151266|151267|151268|151269|151270|151271|151272|151273|151274|151275|151276|151277|151278|151279|151280|151281|151282|151283|151284|151285|151286|151287|151288|151289|151290|151291|151292|151293|151294|151295|151296|151297|151298|151299|151300|151301|151302|151303|151304|151305|151306|151307|151308|151309|151310|151311|151312|151313|151314|151315|151316|151317|151318|151319|151320|151321|151322|151323|151324|151325|151326|151327|151328|151329|151330|151331|151332|151333|151334|151335|151336|151337|151338|151339|151340|151341|151342|151343|151344|151345|151346|151347|151348|151349|151350|151351|151352|151353|151354|151355|151356|151357|151358|151359|151360|151361|151362|151363|151364|151365|151366|151367|151368|151369|151370|151371|151372|151373|151374|151375|151376|151377|151378|151379|151380|151381|151382|151383|151384|151385|151386|151387|151388|151389|151390|151391|151392|151393|151394|151395|151396|151397|151398|151399|151400|151401|151402|151403|151404|151405|151406|151407|151408|151409|151410|151411|151412|151413|151414|151415|151416|151417|151418|151419|151420|151421|151422|151423|151424|151425|151427|151428|151429|151430|151431|151432|151433|151434|151435|151436|151437|151438|151439|151440|151441|151442|151443|151444|151445|151446|151447|151448|151449|151450|151451|151452|151453|151454|151455|151456|151457|151458|151459|151460|151461|151462|151463|151464|151465|151466|151467|151468|151469|151470|151471|151472|151473|151474|151475|151476|151477|151478|151479|151480|151481|151482|151483|151484|151485|151486|151487|151488|151489|151490|151491|151492|151493|151494|151495|151496|151497|151498|151499|151500|151501|151502|151503|151504|151505|151506|151507|151508|151509|151510|151511|151512|151513|151514|151515|151516|151517|151518|151519|151520|151521|151522|151523|151524|151525|151526|151527|151528|151529|151530|151531|151532|151533|151534|151535|151536|151537|151538|151539|151540|151541|151542|151543|151544|151545|151546|151547|151548|151549|151550|151551|151552|151553|151554|151555|151556|151557|151558|151559|151560|151561|151562|151563|151564|151565|151566|151567|151568|151569|151570|151571|151572|151573|151574|151575|151576|151577|151578|151579|151580|151581|151582|151583|151584|151585|151586|151587|151588|151589|151590|151591|151592|151593|151594|151595|151596|151597|151598|151599|151600|151601|151602|151603|151604|151605|151606|151607|151608|151609|151610|151611|151612|151613|151614|151615|151616|151617|151618|151619|151620|151621|151622|151623|151624|151625|151626|151627|151628|151629|151630|151631|151632|151633|151634|151635|151636|151637|151638|151639|151640|151641|151642|151643|151644|151645|151646|151647|151648|151649|151650|151651|151652|151653|151654|151655|151656|151657|151658|151659|151660|151661|151662|151663|151664|151665|151666|151667|151668|151669|151670|151671|151672|151673|151674|151675|151676|151677|151678|151679|151680|151681|151682|151683|151684|151685|151686|151687|151688|151689|151690|151691|151692|151693|151694|151695|151696|151697|151698|151699|151700|151701|151702|151703|151704|151705|151706|151707|151708|151709|151710|151711|151712|151713|151714|151715|151716|151717|151718|151719|151720|151721|151722|151723|151724|151725|151726|151727|151728|151729|151730|151731|151732|151733|151734|151735|151736|151737|151738|151739|151740|151741|151742|151743|151744|151745|151746|151747|151748|151749|151750|151751|151752|151753|151754|151755|151756|151757|151758|151759|151760|151761|151762|151763|151764|151765|151766|151767|151768|151769|151770|151771|151772|151773|151774|151775|151776|151777|151778|151779|151780|151781|151782|151783|151784|151785|151786|151787|151788|151789|151790|151791|151792|151793|151794|151795|151796|151798|151799|151800|151801|151802|151803|151804|151805|151806|151807|151808|151809|151810|151811|151812|151813|151814|151815|151816|151817|151818|151819|151820|151821|151822|151823|151824|151825|151826|151827|151828|151829|151830|151831|151832|151833|151834|151835|151836|151837|151838|151839|151840|151841|151842|151843|151844|151845|151847|151848|151849|151850|151851|151852|151853|151854|151855|151856|151857|151858|151859|151860|151861|151862|151864|151865|151866|151867|151868|151869|151870|151872|151873|151874|151875|151876|151877|151878|151879|151881|151882|151883|151884|151885|151887|151888|151889|151892|151893|151894|151895|151896|151897|151898|151899|151900|151901|151902|151903|151904|151905|151906|151907|151908|151909|151910|151911|151912|151913|151915|151916|151917|151918|151919|151920|151921|151922|151923|151924|151925|151926|151927|151928|151929|151930|151931|151932|151933|151934|151935|151936|151937|151938|151939|151940|151941|151942|151943|151944|151945|151946|151947|151948|151949|151950|151951|151952|151953|151954|151955|151956|151957|151958|151959|151960|151961|151962|151963|151964|151965|151967|151968|151969|151970|151971|151972|151973|151974|151975|151976|151977|151978|151979|151980|151981|151982|151983|151984|151985|151986|151987|151988|151989|151990|151991|151992|151993|151994|151995|151996|151997|151999|152000|152001|152002|152003|152004|152005|152006|152007|152008|152009|152011|152014|152015|152016|152017|152018|152019|152020|152021|152022|152023|152024|152025|152026|152027|152028|152029|152030|152031|152032|152033|152034|152035|152036|152037|152038|152039|152040|152041|152042|152043|152044|152045|152046|152047|152048|152049|152050|152051|152052|152053|152054|152055|152056|152057|152058|152059|152060|152062|152063|152064|152065|152066|152067|152068|152069|152070|152071|152072|152073|152074|152075|152076|152077|152078|152079|152080|152081|152082|152083|152084|152085|152086|152087|152088|152089|152090|152091|152092|152093|152094|152095|152096|152097|152098|152099|152100|152103|152104|152105|152106|152107|152108|152109|152110|152111|152112|152113|152114|152115|152116|152117|152118|152119|152120|152121|152122|152124|152125|152126|152127|152128|152129|152130|152131|152132|152133|152134|152135|152136|152137|152138|152139|152140|152141|152142|152143|152144|152145|152146|152147|152148|152149|152150|152151|152152|152153|152154|152155|152156|152157|152158|152159|152160|152161|152162|152163|152164|152165|152166|152167|152168|152169|152170|152171|152172|152173|152174|152175|152176|152177|152178|152179|152180|152181|152182|152183|152184|152185|152186|152187|152188|152189|152190|152192|152193|152194|152195|152196|152197|152198|152199|152200|152201|152202|152203|152204|152205|152206|152207|152208|152209|152210|152211|152212|152213|152214|152215|152216|152217|152218|152219|152220|152221|152222|152223|152224|152225|152226|152227|152228|152229|152230|152231|152232|152233|152234|152235|152236|152237|152238|152239|152240|152241|152242|152243|152244|152245|152246|152247|152248|152249|152250|152251|152252|152253|152254|152255|152256|152257|152258|152259|152260|152261|152262|152265|152266|152268|152269|152270|152271|152272|152273|152274|152275|152276|152277|152278|152279|152280|152281|152282|152283|152284|152285|152286|152287|152288|152289|152290|152291|152292|152293|152294|152296|152297|152298|152299|152300|152301|152302|152303|152304|152305|152306|152307|152308|152309|152310|152311|152312|152313|152314|152315|152316|152318|152319|152320|152321|152322|152323|152324|152325|152326|152327|152328|152329|152330|152331|152332|152333|152334|152335|152336|152337|152338|152339|152340|152341|152342|152343|152344|152345|152346|152347|152348|152349|152350|152351|152352|152353|152354|152355|152356|152357|152358|152359|152360|152361|152362|152363|152364|152365|152366|152367|152368|152369|152370|152371|152372|152373|152374|152376|152377|152378|152379|152380|152381|152382|152383|152384|152385|152386|152387|152388|152389|152390|152391|152392|152393|152394|152395|152396|152397|152398|152399|152400|152401|152402|152403|152404|152405|152406|152408|152409|152410|152411|152412|152413|152414|152415|152416|152417|152418|152419|152420|152421|152422|152423|152424|152425|152426|152427|152428|152429|152430|152431|152432|152433|152434|152435|152436|152437|152438|152439|152440|152441|152442|152443|152444|152445|152446|152447|152448|152449|152450|152451|152452|152453|152454|152455|152456|152457|152458|152459|152460|152461|152462|152463|152464|152465|152466|152467|152468|152469|152470|152471|152472|152473|152474|152475|152476|152477|152478|152479|152480|152481|152482|152483|152484|152485|152486|152487|152488|152489|152490|152491|152492|152493|152494|152495|152496|152497|152498|152499|152500|152501|152502|152503|152504|152505|152506|152507|152508|152509|152510|152511|152512|152513|152514|152515|152516|152517|152518|152519|152520|152521|152522|152523|152524|152525|152526|152527|152528|152529|152530|152531|152532|152533|152534|152535|152536|152537|152538|152539|152540|152541|152542|152543|152544|152545|152546|152547|152548|152549|152550|152551|152552|152553|152554|152555|152556|152557|152558|152559|152560|152561|152562|152563|152564|152565|152566|152567|152568|152569|152570|152571|152572|152573|152574|152575|152576|152577|152578|152579|152580|152581|152582|152583|152584|152585|152586|152587|152588|152589|152590|152591|152592|152593|152594|152595|152596|152597|152598|152599|152600|152601|152602|152603|152604|152605|152606|152607|152608|152609|152610|152611|152612|152613|152614|152615|152616|152617|152618|152619|152620|152621|152622|152623|152624|152625|152626|152627|152628|152629|152630|152631|152632|152633|152634|152635|152636|152637|152638|152639|152640|152641|152642|152643|152644|152645|152646|152647|152648|152649|152650|152651|152652|152653|152654|152655|152656|152657|152658|152659|152660|152661|152662|152663|152664|152665|152666|152667|152668|152669|152670|152671|152672|152673|152674|152675|152676|152677|152678|152679|152680|152681|152682|152683|152684|152685|152686|152689|152690|152691|152692|152693|152694|152695|152696|152697|152698|152699|152700|152701|152702|152703|152704|152705|152706|152707|152708|152709|152710|152711|152712|152713|152714|152715|152716|152717|152718|152719|152720|152721|152722|152723|152724|152725|152726|152727|152728|152729|152730|152731|152732|152733|152734|152735|152736|152737|152738|152739|152740|152741|152742|153693|153694|153696|153698|153702|153704|153707|153708|153734|165953|165962|165965|165966|165967|165969|165971|165974|165975|165978|165979|165980|165981|165983|165984|165985|165987|165988|165990|165991|165992|165993|166240|166245|166247|166248|166249|166252|166256|166261|166262|166264|166272|166273|166274|166275|166276|167852|170202|171051|171052|171053|171076|171077|171078|171080|171081|171097|171098|171099|171100|171114|171116|171124|171125|171126|171127|171148|171149|171186|171187|171191|171389|171614|171616|172176|172353|172491|172492|172493|173736|173810|173950|175773|176503|176640|176641|177129|177192|177247|177992|178148|178766|178875|179925|179926|179928|179929|179930|179931|179932|179933|179934|179935|179936|179937|179938|179939|179940|179941|179942|179944|179946|179947|179949|179950|179951|179952|179953|179955|179956|179957|179958|179959|179960|179961|179962|179963|179965|179966|179967|179968|179969|179970|179971|179973|179974|179976|179979|179981|179982|179983|179984|179985|179986|179987|179988|179989|179990|179991|179992|179993|179994|179995|179996|179997|179998|180000|180001|180003|180005|180007|180008|180009|180010|180012|180014|180015|180016|180017|180019|180020|180021|180022|180023|180024|180026|180027|180028|180029|180030|180031|180032|180033|180034|180036|180037|180038|180039|180040|180042|180044|180045|180046|180047|180048|180049|180050|180051|180053|180054|180055|180056|180057|180058|180059|180060|180061|180062|180063|180064|180065|180066|180067|180068|180069|180072|180073|180074|180075|180076|180077|180078|180079|180080|180081|180082|180083|180084|180085|180086|180087|180088|180089|180090|180092|180093|180094|180095|180096|180099|180100|180101|180102|180103|180104|180105|180106|180107|180108|180109|180110|180111|180113|180115|180116|180117|180119|180121|180124|180125|180126|180128|180130|180133|180134|180135|180138|180139|180140|180142|180143|180144|180148|180149|180152|180153|180154|180156|180158|180162|180167|180168|180169|180171|180173|180176|180177|180178|180180|180181|180182|180183|180184|180186|180188|180192|180193|180194|180195|180196|180197|180198|180199|180200|180202|180204|180205|180207|180208|180209|180211|180212|180214|180215|180216|180217|180218|180219|180220|180221|180223|180224|180225|180226|180228|180229|180231|180232|180233|180234|180236|180238|180239|180241|180242|180244|180245|180247|180249|180251|180252|180254|180255|180256|180257|180258|180259|180260|180261|180263|180264|180265|180266|180267|180268|180269|180271|180272|180273|180274|180276|180277|180278|180279|180280|180281|180282|180283|180284|180286|180288|180290|180291|180292|180293|180294|180295|180296|180297|180298|180300|180301|180303|180304|180306|180308|180311|180312|180313|180314|180315|180316|180318|180319|180320|180321|180325|180327|180331|180332|180333|180335|180337|180343|180344|180345|180347|180349|180350|180352|180353|180354|180355|180363|180366|180368|180369|180370|180372|180373|180374|180376|180378|180379|180381|180382|180383|180384|180385|180386|180387|180388|180389|180391|180394|180396|180398|180399|180400|180401|180402|180403|180404|180405|180406|180407|180408|180409|180410|180411|180412|180413|180414|180415|180416|180418|180421|180422|180423|180424|180427|180428|180429|180431|180432|180433|180434|180436|180437|180439|180440|180441|180442|180443|180444|180445|180447|180448|180449|180450|180451|180455|180457|180458|180459|180460|180461|180463|180464|180465|180466|180467|180468|180469|180471|180472|180474|180475|180476|180478|180479|180480|180481|180482|180483|180484|180485|180486|180487|180490|180491|180493|180494|180495|180497|180498|180499|180500|180501|180502|180503|180504|180505|180507|180508|180509|180510|180511|180512|180513|180514|180515|180516|180517|180518|180519|180520|180521|180522|180523|180524|180525|180526|180528|180529|180530|180532|180533|180534|180535|180537|180538|180539|180541|180542|180543|180544|180545|180546|180549|180550|180551|180552|180554|180555|180557|180560|180562|180563|180564|180566|180567|180568|180569|180570|180571|180572|180573|180576|180577|180578|180579|180580|180581|180582|180583|180585|180587|180589|180590|180591|180592|180595|180597|180598|180600|180602|180603|180606|180607|180608|180609|180612|180613|180614|180615|180618|180619|180620|180622|180624|180626|180627|180630|180631|180632|180634|180635|180636|180637|180638|180639|180640|180641|180642|180643|180645|180648|180649|180651|180652|180656|180657|180661|180662|180664|180665|180666|180668|180669|180670|180671|180672|180673|180676|180678|180680|180681|180682|180688|180689|180691|180692|180693|180694|180695|180696|180697|180698|180699|180702|180703|180705|180706|180708|180709|180710|180711|180712|180713|180714|180715|180716|180717|180718|180719|180720|180721|180722|180723|180724|180727|180728|180729|180730|180731|180732|180733|180735|180736|180737|180738|180739|180740|180741|180742|180743|180744|180745|180746|180748|180749|180750|180751|180752|180754|180755|180756|180757|180758|180759|180765|180766|180767|180768|180769|180770|180772|180773|180774|180775|180776|180778|180779|180780|180783|180784|180785|180786|180787|180788|180789|180790|180791|180792|180793|180795|180796|180797|180798|180799|180800|180801|180802|180803|180804|180805|180806|180807|180808|180809|180810|180811|180813|180814|180815|180816|180817|180818|180819|180822|180824|180825|180826|180827|180828|180830|180831|180834|180835|180837|180838|180839|180840|180842|180843|180844|180845|180847|180850|180852|180853|180855|180857|180859|180861|180863|180868|180870|180871|180872|180873|180875|180877|180880|180881|180882|180884|180885|180886|180888|180890|180891|180892|180893|180894|180895|180897|180898|180901|180902|180903|180904|180905|180906|180907|180908|180909|180910|180911|180912|180913|180916|180917|180918|180919|180920|180922|180923|180925|180926|180927|180928|180929|180932|180933|180934|180935|180936|180937|180938|180939|180940|180941|180942|180943|180944|180946|180947|180948|180949|180950|180952|180954|180955|180956|180957|180958|180959|180960|180961|180962|180965|180967|180969|180971|180973|180976|180977|180978|180979|180980|180981|180985|180986|180988|180989|180990|180991|180992|180993|180994|180995|180996|180998|180999|181000|181003|181004|181005|181006|181009|181010|181011|181014|181018|181019|181020|181023|181024|181025|181026|181027|181029|181031|181032|181033|181034|181035|181036|181037|181040|181042|181043|181044|181045|181047|181048|181049|181050|181051|181052|181053|181055|181056|181060|181061|181062|181063|181064|181065|181066|181068|181069|181071|181073|181076|181077|181078|181079|181080|181081|181082|181083|181084|181087|181089|181090|181091|181092|181093|181095|181098|181099|181100|181102|181103|181104|181105|181106|181107|181108|181109|181110|181112|181113|181115|181116|181117|181118|181120|181121|181122|181123|181125|181126|181128|181147|181148|181150|181155|181156|181157|181158|181159|181161|181162|181201|181202|181203|181206|181207|181209|181211|181212|181213|181216|181218|181312|181314|181315|181316|181595|181596|181597|181598|181599|181600|181601|181602|181603|181604|181605|181606|181607|181608|181609|181610|181611|181612|181613|181614|181615|181616|181617|181618|181619|181620|181621|181622|181623|181624|181625|181626|181627|181628|181629|181630|181631|181632|181633|181634|181635|181636|181637|181638|181639|181640|181641|181642|181643|181644|181645|181646|181647|181648|181649|181650|181651|181652|181653|181654|181655|181656|181657|181658|181659|181660|181661|181662|181663|181664|181665|181666|181667|181668|181669|181670|181671|181672|181673|181674|181675|181676|181677|181678|181679|181680|181681|181682|181683|181684|181685|181686|181687|181688|181689|181690|181691|181692|181693|181694|181695|181696|181697|181698|181699|181700|181701|181702|181703|181704|181705|181706|181707|181708|181709|181710|181711|181712|181713|181714|181715|181716|181717|181718|181719|181720|181721|181722|181723|181724|181725|181726|181727|181728|181729|181730|181731|181732|181733|181734|181735|181736|181737|181738|181739|181740|181741|181742|181743|181744|181745|181746|181747|181748|181749|181750|181751|181752|181753|181754|181755|181756|181757|181758|181759|181760|181761|181762|181763|181764|181765|181766|181767|181768|181769|181770|181771|181772|181773|181774|181775|181776|181777|181778|181779|181780|181781|181782|181783|181784|181785|181786|181787|181788|181789|181790|181791|181792|181793|181794|181795|181796|181797|181798|181799|181800|181801|181802|181803|181804|181805|181806|181807|181808|181809|181810|181811|181812|181813|181814|181815|181816|181817|181818|181819|181820|181821|181822|181823|181824|181825|181826|181827|181828|181829|181830|181831|181832|181833|181834|181835|181836|181837|181838|181839|181840|181841|181842|181843|181844|181845|181846|181847|181848|181849|181850|181851|181852|181853|181854|181855|181856|181857|181858|181859|181860|181861|181862|181863|181864|181865|181866|181867|181868|181869|181870|181871|181872|181873|181874|181875|181876|181877|181878|181879|181880|181881|181882|181883|181884|181885|181886|181887|181888|181889|181890|181891|181892|181893|181894|181895|181896|181897|181898|181899|181900|181901|181902|181903|181904|181905|181906|181907|181908|181909|181910|181911|181912|181913|181914|181915|181916|181917|181918|181919|181920|181921|181922|181923|181924|181925|181926|181927|181928|181929|181930|181931|181932|181933|181934|181935|181936|181937|181938|181939|181940|181941|181942|181943|181944|181945|181946|181947|181948|181949|181950|181951|181952|181953|181954|181955|181956|181957|181958|181959|181960|181961|181962|181963|181964|181965|181966|181967|181968|181969|181970|181971|181972|181973|181974|181975|181976|181977|181978|181979|181980|181981|181982|181983|181984|181985|181986|181987|181988|181989|181990|181991|181992|181993|181994|181995|181996|181997|181998|181999|182000|182001|182002|182003|182004|182005|182006|182007|182008|182009|182010|182011|182012|182013|182014|182015|182016|182017|182018|182019|182020|182021|182022|182023|182024|182025|182026|182027|182028|182029|182030|182031|182032|182033|182034|182035|182036|182037|182038|182039|182040|182041|182042|182043|182044|182045|182046|182047|182048|182049|182050|182051|182052|182053|182054|182055|182056|182057|182058|182059|182060|182061|182062|182063|182064|182065|182066|182067|182068|182069|182070|182071|182072|182073|182074|182075|182076|182077|182078|182079|182080|182081|182082|182083|182084|182085|182086|182087|182088|182089|182090|182091|182092|182093|182094|182095|182096|182097|182098|182099|182100|182101|182102|182103|182104|182105|182106|182107|182108|182109|182110|182111|182112|182113|182114|182115|182116|182117|182118|182119|182120|182121|182122|182123|182124|182125|182126|182127|182128|182129|182130|182131|182132|182133|182134|182135|182136|182137|182138|182139|182140|182141|182142|182143|182144|182145|182146|182147|182148|182149|182150|182151|182152|182153|182154|182155|182156|182157|182158|182159|182160|182161|182162|182163|182164|182165|182166|182167|182168|182169|182170|182171|182172|182173|182174|182175|182176|182177|182178|182179|182180|182181|182182|182183|182184|182185|182186|182187|182188|182189|182190|182191|182192|182193|182194|182195|182196|182197|182198|182199|182200|182201|182202|182203|182204|182205|182206|182207|182208|182209|182210|182211|182212|182213|182214|182215|182216|182217|182218|182219|182220|182221|182222|182223|182224|182225|182226|182227|182228|182229|182230|182231|182232|182233|182234|182235|182236|182237|182238|182239|182240|182241|182242|182243|182244|182245|182246|182247|182248|182249|182250|182251|182252|182253|182254|182255|182256|182257|182258|182259|182260|182261|182262|182263|182264|182265|182266|182267|182268|182269|182270|182271|182272|182273|182274|182275|182276|182277|182278|182279|182280|182281|182282|182283|182284|182285|182286|182287|182288|182289|182290|182291|182292|182293|182294|182295|182296|182297|182298|182299|182300|182301|182302|182303|182304|182305|182306|182307|182308|182309|182310|182311|182312|182313|182314|182315|182316|182317|182318|182319|182320|182321|182322|182323|182324|182325|182326|182327|182328|182329|182330|182331|182332|182333|182334|182335|182336|182337|182338|182339|182340|182341|182342|182343|182344|182345|182346|182347|182348|182349|182350|182351|182352|182353|182354|182355|182356|182357|182358|182359|182360|182361|182362|182363|182364|182365|182366|182367|182368|182369|182370|182371|182372|182373|182374|182375|182376|182377|182378|182379|182380|182381|182382|182383|182384|182385|182386|182387|182388|182389|182390|182391|182392|182393|182394|182395|182396|182397|182398|182399|182400|182401|182402|182403|182404|182405|182406|182407|182408|182409|182410|182411|182412|182413|182414|182415|182416|182417|182418|182419|182420|182421|182422|182423|182424|182425|182426|182427|182428|182429|182430|182431|182432|182433|182434|182435|182436|182437|182438|182439|182440|182441|182442|182443|182444|182445|182446|182447|182448|182449|182450|182451|182452|182453|182454|182455|182456|182457|182458|182459|182460|182461|182462|182463|182464|182465|182466|182467|182468|182469|182470|182471|182472|182473|182474|182475|182476|182477|182478|182479|182480|182481|182482|182483|182484|182485|182486|182487|182488|182489|182490|182491|182492|182493|182494|182495|182496|182497|182498|182499|182500|182501|182502|182503|182504|182505|182506|182507|182508|182509|182510|182511|182512|182513|182514|182515|182516|182517|182518|182519|182520|182521|182522|182523|182524|182525|182526|182527|182528|182529|182530|182531|182532|182533|182534|182535|182536|182537|182538|182539|182540|182541|182542|182543|182544|182545|182546|182547|182548|182549|182550|182551|182552|182553|182554|182555|182556|182557|182558|182559|182560|182561|182562|182563|182564|182565|182566|182567|182568|182569|182570|182571|182572|182573|182574|182575|182576|182577|182578|182579|182580|182581|182582|182583|182584|182585|182586|182587|182588|182589|182590|182591|182592|182593|182594|182595|182596|182597|182598|182599|182600|182601|182602|182603|182604|182605|182606|182607|182608|182609|182610|182611|182612|182613|182614|182615|182616|182617|182618|182619|182620|182621|182622|182623|182624|182625|182626|182627|182628|182629|182630|182631|182632|182633|182634|182635|182636|182637|182638|182639|182640|182641|182642|182643|182644|182645|182646|182647|182648|182649|182650|182651|182652|182653|182654|182655|182656|182657|182658|182659|182660|182661|182662|182663|182664|182665|182666|182667|182668|182669|182670|182671|182672|182673|182674|182675|182676|182677|182678|182679|182680|182681|182682|182683|182684|182685|182686|182687|182688|182689|182690|182691|182692|182693|182694|182695|182696|182697|182698|182699|182700|182701|182702|182703|182704|182705|182706|182707|182708|182709|182710|182711|182712|182713|182714|182715|182716|182717|182718|182719|182720|182721|182722|182723|182724|182725|182726|182727|182728|182729|182730|182731|182732|182733|182734|182735|182736|182737|182738|182739|182740|182741|182742|182743|182744|182745|182746|182747|182748|182749|182750|182751|182752|182753|182754|182755|182756|182757|182758|182759|182760|182761|182762|182763|182764|182765|182766|182767|182768|182769|182770|182771|182772|182773|182774|182775|182776|182777|182778|182779|182780|182781|182782|182783|182784|182785|182786|182787|182788|182789|182790|182791|182792|182793|182794|182795|182796|182797|182798|182799|182800|182801|182802|182803|182804|182805|182806|182807|182808|182809|182810|182811|182812|182813|182814|182815|182816|182817|182818|182819|182820|182821|182822|182823|182824|182825|182826|182827|182828|182829|182830|182831|182832|182833|182834|182835|182836|182837|182838|182839|182840|182841|182842|182843|182844|182845|182846|182847|182848|182849|182850|182851|182852|182853|182854|182855|182856|182857|182858|182859|182860|182861|182862|182863|182864|182865|182866|182867|182868|182869|182870|182871|182872|182873|182874|182875|182876|182877|182878|182879|182880|182881|182882|182883|182884|182885|182886|182887|182888|182889|182890|182891|182892|182893|182894|182895|182896|182897|182898|182899|182900|182901|182902|182903|182904|182905|182906|182907|182908|182909|182910|182911|182912|182913|182914|182915|182916|182917|182918|182919|182920|182921|182922|182923|182924|182925|182926|182927|182928|182929|182930|182931|182932|182933|182934|182935|182936|182937|182938|182939|182940|182941|182942|182943|182944|182945|182946|182947|182948|182949|182950|182951|182952|182953|182954|182955|182956|182957|182958|182959|182960|182961|182962|182963|182964|182965|182966|182967|182968|182969|182970|182971|182972|182973|182974|182975|182976|182977|182978|182979|182980|182981|182982|182983|182984|182985|182986|182987|182988|182989|182990|182991|182994|182995|182996|182997|182998|182999|183000|183001|183002|183003|183004|183005|183006|183007|183008|183009|183010|183011|183012|183013|183014|183015|183016|183017|183018|183019|183020|183021|183022|183023|183024|183025|183026|183027|183028|183029|183030|183031|183032|183033|183034|183035|183036|183037|183038|183039|183040|183041|183042|183043|183044|183045|183046|183047|183048|183049|183050|183051|183052|183053|183054|183055|183056|183057|183058|183059|183060|183061|183062|183063|183064|183065|183066|183067|183068|183069|183070|183071|183072|183073|183074|183075|183076|183077|183078|183079|183080|183081|183082|183083|183084|183085|183086|183087|183088|183089|183090|183091|183092|183093|183094|183095|183096|183097|183098|183099|183100|183101|183102|183103|183104|183105|183106|183107|183108|183109|183110|183111|183112|183113|183114|183115|183116|183117|183118|183119|183120|183121|183122|183123|183124|183125|183126|183127|183128|183129|183130|183131|183132|183133|183134|183135|183136|183137|183138|183139|183140|183141|183142|183143|183144|183145|183146|183147|183148|183149|183150|183151|183152|183153|183154|183155|183156|183157|183158|183159|183160|183161|183162|183163|183164|183165|183166|183167|183168|183169|183170|183171|183172|183173|183174|183175|183176|183177|183178|183179|183180|183181|183182|183183|183184|183185|183186|183187|183188|183189|183190|183191|183192|183193|183194|183195|183196|183197|183198|183199|183200|183201|183202|183203|183204|183205|183206|183207|183208|183209|183210|183211|183212|183213|183214|183215|183216|183217|183218|183219|183220|183221|183222|183223|183224|183225|183226|183227|183228|183229|183230|183231|183232|183233|183234|183235|183236|183237|183238|183239|183240|183241|183242|183243|183244|183245|183246|183247|183248|183249|183250|183251|183252|183253|183254|183255|183256|183257|183258|183259|183260|183261|183262|183263|183264|183265|183266|183267|183268|183269|183270|183271|183272|183273|183274|183275|183276|183277|183278|183279|183280|183281|183282|183283|183284|183285|183286|183287|183288|183289|183290|183291|183292|183293|183294|183295|183296|183297|183298|183299|183300|183301|183302|183303|183304|183305|183306|183307|183308|183309|183310|183311|183312|183313|183314|183315|183316|183317|183318|183319|183320|183321|183322|183323|183324|183325|183326|183327|183328|183329|183330|183331|183332|183333|183334|183335|183336|183337|183338|183339|183340|183341|183342|183343|183344|183345|183346|183347|183348|183349|183350|183351|183352|183353|183354|183355|183356|183357|183358|183359|183360|183361|183362|183363|183364|183365|183366|183367|183368|183369|183370|183371|183372|183373|183374|183375|183376|183377|183378|183379|183380|183381|183382|183383|183384|183385|183386|183387|183388|183389|183390|183391|183392|183393|183394|183395|183396|183397|183398|183399|183400|183401|183402|183403|183404|183405|183406|183407|183408|183409|183410|183411|183412|183413|183414|183415|183416|183417|183418|183419|183420|183421|183422|183423|183424|183425|183426|183427|183428|183429|183430|183431|183432|183433|183434|183435|183436|183437|183438|183439|183440|183441|183442|183444|183445|183446|183447|183448|183449|183450|183451|183452|183453|183454|183455|183456|183457|183458|183459|183460|183461|183462|183463|183464|183465|183466|183467|183468|183469|183470|183471|183472|183473|183474|183475|183476|183477|183478|183479|183480|183481|183482|183483|183484|183485|183486|183487|183488|183489|183490|183491|183492|183493|183494|183495|183496|183497|183498|183499|183500|183501|183502|183503|183504|183505|183506|183507|183508|183509|183510|183511|183512|183513|183514|183515|183516|183517|183518|183519|183520|183521|183522|183523|183524|183525|183526|183527|183528|183529|183530|183531|183532|183533|183534|183535|183536|183537|183538|183539|183540|183541|183542|183543|183544|183545|183546|183547|183548|183549|183550|183551|183552|183553|183554|183555|183556|183557|183558|183559|183560|183561|183562|183563|183564|183565|183566|183567|183568|183569|183570|183571|183572|183573|183574|183575|183576|183577|183578|183579|183580|183581|183582|183583|183584|183585|183586|183587|183588|183589|183590|183591|183592|183593|183594|183595|183596|183597|183598|183599|183600|183601|183602|183603|183604|183605|183606|183607|183608|183609|183610|183611|183612|183613|183614|183615|183616|183617|183618|183619|183620|183621|183622|183623|183624|183625|183626|183627|183628|183629|183630|183631|183632|183633|183634|183635|183636|183637|183638|183639|183640|183641|183642|183643|183644|183645|183646|183647|183648|183649|183650|183651|183652|183653|183654|183655|183656|183657|183658|183659|183660|183661|183662|183663|183664|183665|183666|183667|183668|183669|183670|183671|183672|183673|183674|183675|183676|183677|183678|183679|183680|183681|183682|183683|183684|183685|183686|183687|183688|183689|183690|183691|183692|183693|183694|183695|183696|183697|183698|183699|183700|183701|183702|183703|183704|183705|183706|183707|183708|183709|183710|183711|183712|183713|183714|183715|183716|183717|183718|183719|183720|183721|183722|183723|183724|183725|183726|183727|183728|183729|183730|183731|183732|183733|183734|183735|183736|183737|183738|183739|183740|183741|183742|183743|183744|183745|183746|183747|183748|183749|183750|183751|183752|183753|183754|183755|183756|183757|183758|183759|183760|183761|183762|183763|183764|183765|183766|183767|183768|183769|183770|183771|183772|183773|183774|183775|183776|183777|183778|183779|183781|183782|183783|183784|183785|183786|183787|183788|183789|183790|183791|183792|183793|183794|183795|183796|183797|183798|183799|183800|183801|183802|183803|183804|183805|183806|183807|183808|183809|183810|183811|183812|183813|183814|183815|183816|183817|183818|183819|183820|183821|183822|183823|183824|183825|183826|183827|183828|183829|183830|183831|183832|183833|183834|183835|183836|183837|183838|183839|183840|183841|183842|183843|183844|183845|183846|183847|183848|183849|183850|183851|183852|183853|183854|183855|183856|183857|183858|183859|183860|183861|183862|183863|183864|183865|183866|183867|183868|183869|183870|183871|183872|183873|183874|183875|183876|183877|183878|183879|183880|183881|183882|183883|183884|183885|183886|183887|183888|183889|183890|183891|183892|183893|183894|183895|183896|183897|183898|183899|183900|183901|183902|183903|183904|183905|183906|183907|183908|183909|183910|183911|183912|183913|183914|183915|183916|183917|183918|183919|183920|183921|183922|183923|183924|183925|183926|183927|183928|183929|183930|183931|183932|183933|183934|183935|183936|183937|183938|183939|183940|183941|183942|183943|183944|183945|183946|183947|183948|183949|183950|183951|183952|183953|183954|183955|183956|183957|183958|183959|183960|183961|183962|183963|183964|183965|183966|183967|183968|183969|183970|183971|183972|183973|183974|183975|183976|183977|183978|183979|183980|183981|183982|183983|183984|183985|183986|183987|183988|183989|183990|183991|183992|183993|183994|183995|183996|183997|183998|183999|184000|184001|184002|184003|184004|184005|184006|184007|184008|184009|184010|184011|184012|184013|184014|184015|184016|184017|184018|184019|184020|184021|184022|184023|184024|184025|184026|184027|184028|184029|184030|184031|184032|184033|184034|184035|184036|184037|184038|184039|184040|184041|184042|184043|184044|184045|184046|184047|184048|184049|184050|184051|184052|184053|184054|184055|184056|184057|184058|184059|184060|184061|184062|184063|184064|184065|184066|184067|184068|184069|184070|184071|184072|184073|184074|184075|184076|184077|184078|184079|184080|184081|184082|184083|184084|184085|184086|184087|184088|184089|184090|184091|184092|184093|184094|184095|184096|184097|184098|184099|184100|184101|184102|184103|184104|184105|184106|184107|184108|184109|184110|184111|184112|184113|184114|184115|184116|184117|184118|184119|184120|184121|184122|184123|184124|184125|184126|184127|184128|184129|184130|184131|184132|184133|184134|184135|184136|184137|184138|184139|184140|184141|184142|184143|184144|184145|184146|184147|184148|184149|184150|184151|184152|184153|184154|184155|184156|184157|184158|184159|184160|184161|184162|184163|184164|184165|184166|184167|184168|184169|184170|184171|184172|184173|184174|184175|184176|184177|184178|184179|184180|184181|184182|184183|184184|184185|184186|184187|184188|184189|184190|184191|184192|184193|184194|184195|184196|184197|184198|184199|184200|184201|184202|184203|184204|184205|184206|184207|184208|184209|184210|184211|184212|184213|184214|184215|184216|184217|184218|184219|184220|184221|184222|184223|184224|184225|184226|184227|184228|184229|184230|184231|184232|184233|184234|184235|184236|184237|184238|184239|184240|184241|184242|184243|184244|184245|184246|184247|184248|184249|184250|184251|184252|184253|184254|184255|184256|184257|184258|184259|184260|184261|184262|184263|184264|184265|184266|184267|184268|184269|184270|184271|184272|184273|184274|184275|184276|184277|184278|184279|184280|184281|184282|184283|184284|184285|184286|184287|184288|184289|184290|184291|184292|184293|184294|184295|184296|184297|184298|184299|184300|184301|184302|184303|184304|184305|184306|184307|184308|184309|184310|184311|184312|184313|184314|184315|184316|184317|184318|184319|184320|184321|184322|184323|184324|184325|184326|184327|184328|184329|184330|184331|184332|184333|184334|184335|184336|184337|184338|184339|184340|184341|184342|184343|184344|184345|184346|184347|184348|184349|184350|184351|184352|184353|184354|184355|184356|184357|184358|184359|184360|184361|184362|184363|184364|184365|184366|184367|184368|184369|184370|184371|184372|184373|184374|184375|184376|184377|184378|184379|184380|184381|184382|184383|184384|184385|184386|184387|184388|184389|184390|184391|184392|184393|184394|184395|184396|184397|184398|184399|184400|184401|184402|184403|184404|184405|184406|184407|184408|184409|184410|184411|184412|184413|184414|184415|184416|184417|184418|184419|184420|184421|184422|184423|184424|184425|184426|184427|184428|184429|184430|184431|184432|184433|184434|184435|184436|184437|184438|184439|184440|184441|184442|184443|184444|184445|184446|184447|184448|184449|184450|184451|184452|184453|184454|184455|184456|184457|184458|184459|184460|184461|184462|184463|184464|184465|184466|184467|184468|184469|184470|184471|184472|184473|184474|184475|184476|184477|184478|184479|184480|184481|184482|184483|184484|184485|184486|184487|184488|184489|184490|184491|184492|184493|184494|184495|184496|184497|184498|184499|184500|184501|184502|184503|184504|184505|184506|184507|184508|184509|184510|184511|184512|184513|184514|184515|184516|184517|184518|184519|184520|184521|184522|184523|184524|184525|184526|184527|184528|184529|184530|184531|184532|184533|184534|184535|184536|184537|184538|184539|184540|184541|184542|184543|184544|184545|184546|184547|184548|184549|184550|184551|184552|184553|184554|184555|184556|184557|184558|184559|184560|184561|184562|184563|184564|184565|184566|184567|184568|184569|184570|184571|184572|184573|184574|184575|184576|184577|184578|184579|184580|184581|184582|184583|184584|184585|184586|184587|184588|184589|184590|184591|184592|184593|184594|184595|184596|184597|184598|184599|184600|184601|184602|184603|184604|184605|184606|184607|184608|184609|184610|184611|184612|184613|184614|184615|184616|184617|184618|184619|184620|184621|184622|184623|184624|184625|184626|184627|184628|184629|184630|184631|184632|184633|184634|184635|184636|184637|184638|184639|184640|184641|184642|184643|184644|184645|184646|184647|184648|184649|184650|184651|184652|184653|184654|184655|184656|184657|184658|184659|184660|184661|184662|184663|184664|184665|184666|184667|184668|184669|184670|184671|184672|184673|184674|184675|184676|184677|184678|184679|184680|184681|184682|184683|184684|184685|184686|184687|184688|184689|184690|184691|184692|184693|184694|184695|184696|184697|184698|184699|184700|184701|184702|184703|184704|184705|184706|184707|184708|184709|184710|184711|184712|184713|184714|184715|184716|184717|184718|184719|184720|184721|184722|184723|184724|184725|184726|184727|184728|184729|184730|184731|184732|184733|184734|184735|184736|184737|184738|184739|184740|184741|184742|184743|184744|184745|184746|184747|184748|184749|184750|184751|184752|184753|184754|184755|184756|184757|184758|184759|184760|184761|184762|184763|184764|184765|184766|184767|184768|184769|184770|184771|184772|184773|184774|184775|184776|184777|184778|184779|184780|184781|184782|184783|184784|184785|184786|184787|184788|184789|184790|184791|184792|184793|184794|184795|184796|184797|184798|184799|184800|184801|184802|184803|184804|184805|184806|184807|184808|184809|184810|184811|184812|184813|184814|184815|184816|184817|184818|184819|184820|184821|184822|184823|184824|184825|184826|184827|184828|184829|184830|184831|184832|184833|184834|184835|184836|184837|184838|184839|184840|184841|184842|184843|184844|184845|184846|184847|184848|184849|184850|184851|184852|184853|184854|184855|184856|184857|184858|184859|184860|184861|184862|184863|184864|184865|184866|184867|184868|184869|184870|184871|184872|184873|184874|184875|184876|184877|184878|184879|184880|184881|184882|184883|184884|184885|184886|184887|184888|184889|184890|184891|184892|184893|184894|184895|184896|184897|184898|184899|184900|184901|184902|184903|184904|184905|184906|184907|184908|184909|184910|184911|184912|184913|184914|184915|184916|184917|184918|184919|184920|184921|184922|184923|184924|184925|184926|184927|184928|184929|184930|184931|184932|184933|184934|184935|184936|184937|184938|184939|184940|184941|184942|184943|184944|184945|184946|184947|184948|184949|184950|184951|184952|184953|184954|184955|184956|184957|184958|184959|184960|184961|184962|184963|184964|184965|184966|184967|184968|184969|184970|184971|184972|184973|184974|184975|184976|184977|184978|184979|184980|184981|184982|184983|184984|184985|184986|184987|184988|184989|184990|184991|184992|184993|184994|184995|184996|184997|184998|184999|185000|185001|185002|185003|185004|185005|185006|185007|185008|185009|185010|185011|185012|185013|185014|185015|185016|185017|185018|185019|185020|185021|185022|185023|185024|185025|185026|185027|185028|185029|185030|185031|185032|185033|185034|185035|185036|185037|185038|185039|185040|185041|185042|185043|185044|185045|185046|185047|185048|185049|185050|185051|185052|185053|185054|185055|185056|185057|185058|185059|185060|185061|185062|185063|185064|185065|185066|185067|185068|185069|185070|185071|185072|185073|185074|185075|185076|185077|185078|185079|185080|185081|185082|185083|185084|185085|185086|185087|185088|185089|185090|185091|185092|185093|185094|185095|185096|185097|185098|185099|185100|185101|185102|185103|185104|185105|185106|185108|185109|185110|185111|185112|185113|185114|185115|185116|185117|185118|185119|185120|185121|185122|185123|185124|185125|185126|185127|185128|185129|185130|185131|185132|185133|185134|185135|185136|185137|185138|185139|185140|185141|185142|185143|185144|185145|185146|185147|185148|185149|185150|185151|185152|185153|185154|185155|185156|185157|185158|185159|185160|185161|185162|185163|185164|185165|185166|185167|185168|185169|185170|185171|185172|185173|185174|185175|185176|185177|185178|185179|185180|185181|185182|185183|185184|185185|185186|185187|185188|185189|185190|185191|185192|185193|185194|185195|185196|185197|185198|185199|185200|185201|185202|185203|185204|185205|185206|185207|185208|185209|185210|185211|185212|185213|185214|185215|185216|185217|185218|185219|185220|185221|185222|185223|185224|185225|185226|185227|185228|185229|185230|185231|185232|185233|185234|185235|185236|185237|185238|185239|185240|185241|185242|185243|185244|185245|185246|185247|185248|185249|185250|185251|185252|185253|185254|185255|185256|185257|185258|185259|185260|185261|185262|185263|185264|185265|185266|185267|185268|185269|185270|185271|185272|185273|185274|185275|185276|185277|185278|185279|185280|185281|185282|185283|185284|185285|185286|185287|185288|185289|185290|185291|185292|185293|185294|185295|185296|185297|185298|185299|185300|185301|185302|185303|185304|185305|185306|185307|185308|185309|185310|185311|185312|185313|185314|185315|185316|185317|185318|185319|185320|185321|185322|185323|185324|185325|185326|185327|185328|185329|185330|185331|185332|185333|185334|185335|185336|185337|185338|185339|185340|185341|185342|185343|185344|185345|185346|185347|185348|185349|185350|185351|185352|185353|185354|185355|185356|185357|185358|185359|185360|185361|185362|185363|185364|185365|185366|185367|185368|185369|185370|185371|185372|185373|185374|185375|185376|185377|185378|185379|185380|185381|185382|185383|185384|185385|185386|185387|185388|185389|185390|185391|185392|185393|185394|185395|185396|185397|185398|185399|185400|185401|185402|185403|185404|185405|185406|185407|185408|185409|185410|185411|185412|185413|185414|185415|185416|185417|185418|185419|185420|185421|185422|185423|185424|185425|185426|185427|185428|185429|185430|185431|185432|185433|185434|185435|185436|185437|185438|185439|185440|185441|185442|185443|185444|185445|185446|185447|185448|185449|185450|185451|185452|185453|185454|185455|185456|185457|185458|185459|185460|185461|185462|185463|185464|185465|185466|185467|185468|185469|185470|185471|185472|185473|185474|185475|185476|185477|185478|185479|185480|185481|185482|185483|185484|185485|185486|185487|185488|185489|185490|185491|185492|185493|185494|185495|185496|185497|185498|185499|185500|185501|185502|185503|185504|185505|185506|185507|185508|185509|185510|185511|185512|185513|185514|185515|185516|185517|185518|185519|185520|185521|185522|185523|185524|185525|185526|185527|185528|185529|185530|185531|185532|185533|185534|185535|185536|185537|185538|185539|185540|185541|185542|185543|185544|185545|185546|185547|185548|185549|185550|185551|185552|185553|185554|185555|185556|185557|185558|185559|185560|185561|185562|185563|185564|185565|185566|185567|185568|185569|185570|185571|185572|185573|185574|185575|185576|185577|185578|185579|185580|185581|185582|185583|185584|185585|185586|185587|185588|185589|185590|185591|185592|185593|185594|185595|185596|185597|185598|185599|185600|185601|185602|185603|185604|185605|185606|185607|185608|185609|185610|185611|185612|185613|185614|185615|185616|185617|185618|185619|185620|185621|185622|185623|185624|185625|185626|185627|185628|185629|185630|185631|185632|185633|185634|185635|185636|185637|185638|185639|185640|185641|185642|185643|185644|185645|185646|185647|185648|185649|185650|185651|185652|185653|185654|185655|185656|185657|185658|185659|185660|185661|185662|185954|185955|185956|185957|185974|185975|185977|185979|185980|185982|185983|185984|185986|185987|185989|185990|185991|185992|185993|185994|185995|185997|185998|185999|186000|186004|186005|186009|186013|186014|186015|186016|186017|186026|186029|186030|186031|186033|186034|186037|186038|186039|186040|186044|186045|186059|186061|186062|186063|186064|186065|186066|186067|186079|186080|186081|186085|186086|186093|186094|186095|186097|186099|186100|186101|186104|186108|186110|186111|186112|186113|186115|186116|186118|186122|186123|186132|186133|186134|186136|186137|186138|186141|186142|186143|186144|186145|186146|186150|186157|186158|186167|186169|186170|186171|186174|186175|186176|186179|186180|186182|186183|186184|186210|186212|186213|186215|186217|186218|186219|186220|186221|186222|186223|186224|186229|186230|186231|186232|186247|186255|186256|186257|186258|186259|186260|186264|186265|186266|186271|186272|186275|186277|186279|186280|186283|186440|186442|186443|186444|186449|186451|186452|186454|186455|186457|186539|186544|186545|186549|186551|186792|186796|186797|186798|186799|186800|186801|186802|186803|186804|186805|186947|186948|186949|186950|187277|187281|187282|187285|187298|187307|187316|187321|187322|187323|187329|187331|187332|187334|187335|187336|187337|187338|187339|187340|187345|187349|187351|187353|187355|187357|187358|187359|187361|187363|187366|187367|187370|187373|187374|187375|187378|187379|187381|187382|187384|187386|187388|187389|187390|187697|187698|188057|188058|188847|188870|190024|190025|190027|190028|190109|190112|190235|190247|190808|190857|190858|190859|190953|191141|191164|191244|191406|191407|191748|191853|192724|192882|193412|193532|194046|194155|194260|194275|194276|194513|194823|194909|195020|195171|195206|195259|195361|195552|195590|195617|195744|195893|196239|196445|196489|196490|196491|196493|196494|197378|197379|197386|197514|197519|197521|197523|197525|197526|197533|197535|197537|197541|197542|197548|197552|197554|197557|197558|197559|197562|197564|198037|198613|198614|202458|202460|202465|202469|202470|202471|202472|202478|202479|202480|202481|202482|202485|202489|202491|202493|202503|203081|203084|203086|203090|203092|203093|203095|203096|203100|203101|203102|203105|203106|203109|203110|203112|203115|203117|203118|203121|203124|203128|203129|203131|203132|203133|203137|203138|203140|203144|203147|203152|203153|203155|203157|203159|203161|203164|203166|203167|203169|203170|203171|203179|203183|203184|203185|203186|203188|203189|203190|203191|203192|203193|203194|203202|203205|203207|203209|203212|203214|203218|204604|205207|205265|205310|205416|205418|205692|205705|205718|205766|205869|205906|205908|205929|206077|206156|206170|206206|206207|206208|206209|206210|206311|206313|206376|206411|206446|206537|207572|207731|207797|207813|208505|208506|208507|208508|208509|208510|208511|208512|208514|208516|208518|208519|208523|208524|208526|208529|208530|208531|208532|209317|209318|210653|210654|210657|210660|210669|210670|210671|210672|210674|210675|210677|210678|210681|210687|210696|210697|210704|210706|210708|210709|210711|212067|212089|212090|212091|212092|212093|212094|212095|212096|212100|212101|212102|212103|212104|212127|212129|212130|212131|212132|212133|212134|212135|212136|212137|212139|212140|212141|212142|212153|212181|212182|212185|212186|212187|212188|212190|212191|212192|212193|212194|212196|212197|212198|212199|212200|212201|212202|212203|212204|212205|212206|212207|212209|212210|212211|212212|212213|212214|212215|212216|212217|212218|212219|212220|212221|212222|212223|212224|212225|212228|212231|212232|212233|212234|212235|212237|212239|212240|212241|212242|212243|212245|212246|212248|212249|212250|212253|212254|212255|212258|212260|212262|212264|212265|212268|212269|212277|212278|212279|212280|212286|212297|212301|212303|212304|212306|212308|212320|212322|212323|212324|212325|212326|212327|212329|212385|212386|212387|212390|212391|212392|212395|212396|212397|212399|212400|212401|212403|212405|212406|212408|212409|212410|212411|212412|212413|212414|212416|212417|212418|212419|212421|212422|212423|212424|212426|212427|212428|212429|212430|212432|212433|212434|212435|212436|212438|212442|212444|212445|212446|212447|212449|212450|212451|212452|212453|212454|212455|212456|212457|212458|212459|212460|212461|212462|212463|212464|212466|212467|212468|212469|212470|212471|212472|212473|212474|212475|212477|212478|212479|212480|212481|212482|212483|212484|212485|212486|212487|212488|212489|212490|212491|212492|212493|212533|212535|212536|212538|212539|212540|212542|212545|212546|212548|212550|212553|212554|212555|212556|212557|212558|212559|212560|212561|212563|212564|212586|212587|212588|212590|212592|212593|212596|212598|212599|212600|212601|212602|212603|212604|212605|212607|212609|212610|212611|212612|212613|212640|212642|212643|212644|212645|212646|212647|212648|212649|212650|212659|212660|212661|212662|212663|212664|212665|212666|212667|212668|212672|212673|212674|212677|212678|212679|212681|212683|212684|212686|212689|212692|212694|212695|212696|212697|212698|212700|212701|212702|212703|212704|212709|212710|212711|212716|212719|212720|212725|212726|212729|212730|212732|212733|212735|212737|212738|212744|212746|212750|212751|212753|212756|212757|212758|212759|212765|212767|212768|212769|212770|212771|212772|212775|212776|212777|212780|212781|212783|212784|212785|212786|212787|212789|212790|212792|212794|212795|212799|212800|212801|212802|212805|212806|212807|212808|212809|212810|212812|212813|212814|212816|212817|212819|212820|212825|212834|212836|212837|212842|212843|212844|212846|212847|212848|212849|212850|212851|212852|212853|212854|212855|212857|212858|212860|212861|212862|212863|212864|212866|212867|212868|212869|212870|212875|212879|212880|212881|212882|212883|212884|212886|212887|212888|212889|212892|212893|212894|212895|212896|212897|212899|212900|212902|212904|212905|212906|212907|212908|212910|212912|212913|212914|212915|212930|212931|212932|212934|212935|212936|212940|212941|212944|212945|212946|212947|212949|212950|212951|212954|212955|212957|212958|212959|212960|212962|212963|212964|212965|212966|212967|212971|213001|213002|213003|213005|213006|213007|213008|213020|213023|213026|213027|213028|213029|213030|213031|213033|213034|213036|213038|213039|213041|213044|213046|213050|213051|213052|213056|213060|213061|213062|213064|213065|213066|213069|213070|213074|213077|213078|213079|213080|213081|213082|213083|213086|213088|213091|213092|213094|213095|213098|213144|213149|213150|213151|213152|213153|213154|213155|213157|213159|213163|213165|213166|213167|213168|213169|213170|213171|213172|213174|213175|213176|213177|213179|213180|213182|213185|213186|213189|213196|213197|213200|213202|213203|213204|213206|213207|213208|213209|213210|213211|213212|213214|213215|213242|213244|213250|213252|213254|213257|213259|213260|213261|213269|213270|213273|213275|213277|213278|213279|213282|213285|213287|213288|213290|213293|213294|213295|213296|213297|213301|213302|213303|213304|213306|213307|213309|213310|213311|213313|213314|213315|213316|213318|213319|213320|213321|213323|213325|213326|213327|213328|213329|213332|213334|213335|213336|213337|213339|213340|213341|213342|213343|213344|213348|213350|213351|213352|213353|213354|213356|213358|213360|213361|213362|213363|213364|213368|213370|213371|213372|213373|213374|213375|213377|213378|213381|213384|213385|213387|213388|213390|213391|213392|213394|213397|213398|213399|213400|213401|213403|213404|213405|213406|213407|213419|213421|213422|213423|213424|213428|213429|213431|213432|213433|213434|213436|213438|213441|213442|213443|213444|213445|213446|213447|213448|213477|213478|213479|213480|213481|213482|213483|213487|213488|213490|213491|213492|213493|213772|213945|214572|214577|214580|214581|214582|214589|214590|214592|214593|214594|214596|214597|214598|214601|214602|214603|214606|214607|214608|214614|214615|214616|214622|214625|214628|214631|214639|214646|214652|214654|214655|214656|214658|214659|214661|214662|214663|214664|214665|214667|214677|214678|214680|214681|214682|214684|214686|214691|214692|214695|214702|214710|214715|214716|214718|214719|214720|214722|214728|214729|214731|214805|214913|214914|215258|215302|215306|215365|215366|215407|215422|215445|215576|220980|220981|221084|221085|221097|221099|221100|221101|221102|221105|221107|221108|221137|221138|221139|221142|221143|221144|221145|221146|221147|221148|221149|221150|221151|221153|221156|221158|221160|221161|221162|221163|221164|221165|221167|221168|221170|221171|221172|221202|221204|221205|221206|221207|221209|221210|221211|221212|221213|221214|221216|221217|221219|221220|221222|221223|221225|221226|221227|221228|221231|221232|221234|221236|221237|221238|221239|221242|221243|221244|221245|221246|221248|221249|221251|221252|221253|221254|221255|221256|221257|221259|221260|221261|221262|221263|221264|221265|221266|221268|221269|221270|221271|221272|221273|221274|221276|221277|221278|221279|221280|221281|221282|221283|221284|221286|221289|221290|221291|221292|221294|221295|221296|221297|221298|221299|221301|221303|221304|221305|221307|221308|221309|221310|221311|221313|221314|221343|221344|221345|221348|221352|221354|221356|221357|221376|221379|221382|221383|221385|221386|221387|221389|221394|221395|221396|221397|221398|221399|221401|221402|221403|221405|221407|221408|221410|221411|221420|221421|221459|221460|221463|221464|221466|221467|221469|221471|221473|221474|221481|221482|221484|221486|221488|221490|221491|221492|221493|221494|221496|221497|221498|221500|221502|221503|221504|221505|221506|221507|221511|221512|221513|221514|221515|221516|221517|221518|221521|221522|221523|221524|221525|221526|221527|221529|221530|221533|221534|221535|221536|221537|221539|221540|221541|221542|221543|221544|221545|221546|221548|221549|221550|221557|221558|221559|221560|221561|221562|221564|221565|221566|221567|221568|221570|221571|221573|221574|221575|221576|221577|221578|221579|221580|221581|221582|221583|221584|221585|221586|221587|221588|221589|221590|221591|221592|221593|221617|221618|221619|221647|221649|221650|221651|221653|221655|221656|221658|221661|221663|221664|221703|221705|221706|221707|221708|221710|221713|221714|221715|221716|221719|221720|221721|221722|221723|221724|221725|221726|221727|221728|221733|221735|221736|221769|221771|221772|221773|221774|221775|221776|221777|221778|221779|221780|221781|221782|221783|221785|221786|221787|221788|221791|221792|221794|221795|221796|221797|221798|221805|221816|221817|221818|221819|221821|221823|221824|221825|221826|221831|221833|221834|221837|221839|221840|221842|221843|221846|221847|221849|221850|221851|221852|221854|221855|221856|221861|221863|221865|221866|221867|221868|221869|221873|221874|221878|221879|221880|221881|221884|221885|221888|221889|221890|221891|221892|221893|221896|221897|221898|221899|221902|221903|221907|221908|221909|221912|221913|221916|221918|221919|221921|221922|221924|221925|221930|221933|221934|221935|221936|221944|221946|221947|221948|221949|221950|221951|221952|221955|221957|221958|221961|221967|221968|221970|221972|221973|221974|221976|221988|221989|221990|221992|221995|221997|221998|221999|222000|222001|222006|222020|222022|222023|222026|222027|222029|222030|222032|222034|222036|222037|222038|222040|222041|222042|222043|222044|222045|222046|222048|222049|222051|222052|222053|222056|222057|222059|222060|222061|222062|222063|222064|222066|222067|222069|222070|222071|222072|222073|222074|222075|222076|222077|222078|222079|222080|222081|222083|222085|222086|222088|222089|222090|222091|222092|222094|222095|222097|222098|222099|222101|222102|222103|222104|222105|222106|222107|222108|222109|222110|222111|222112|222113|222114|222115|222116|222118|222119|222120|222122|222124|222125|222126|222127|222128|222131|222132|222133|222157|222158|222159|222161|222164|222165|222167|222168|222169|222171|222172|222174|222175|222176|222177|222178|222179|222180|222184|222185|222187|222188|222189|222190|222191|222192|222206|222207|222208|222211|222212|222213|222214|222215|222216|222217|222218|222219|222220|222222|222223|222224|222226|222230|222232|222233|222234|222236|222238|222239|222240|222242|222245|222257|222258|222259|222260|222261|222263|222264|222265|222266|222272|222274|222275|222277|222279|222280|222281|222282|222283|222284|222286|222287|222288|222290|222291|222292|222294|222295|222296|222298|222300|222301|222303|222306|222308|222309|222314|222315|222318|222319|222322|222323|222325|222326|222327|222328|222329|222330|222331|222332|222333|222334|222337|222341|222342|222344|222346|222349|222350|222352|222355|222356|222392|222393|222394|222395|222396|222401|222402|222403|222404|222405|222406|222407|222408|222409|222411|222412|222415|222438|222439|222450|222452|222454|222456|222457|222458|222459|222460|222461|222464|222465|222466|222468|222469|222470|222471|222473|222474|222476|222478|222479|222480|222482|222483|222484|222485|222493|222494|222495|222498|222499|222500|222502|222504|222505|222506|222507|222508|222509|222510|222511|222512|222513|222514|222516|222517|222519|222521|222523|222524|222525|222529|222530|222531|222560|222563|222564|222565|222566|222568|222575|222576|222579|222581|222582|222583|222585|222587|222588|222593|222594|222595|222596|222598|222600|222602|222604|222607|222608|222610|222611|222612|222613|222615|222616|222617|222621|222622|222625|222626|222627|222630|222631|222633|222634|222635|222636|222638|222642|222647|222648|222649|222650|222652|222655|222658|222661|222663|222664|222665|222666|222668|222670|222671|222673|222674|222677|222678|222679|222681|222682|222683|222685|222689|222691|222692|222693|222694|222695|222697|222698|222699|222700|222702|222703|222704|222706|222708|222710|222711|222712|222714|222715|222716|222718|222719|222720|222721|222722|222723|222725|222726|222727|222728|222729|222730|222734|222735|222737|222738|222741|222743|222744|222754|222756|222757|222762|222763|222766|222767|222768|222770|222771|222772|222773|222774|222775|222776|222777|222778|222779|222785|222786|222787|222788|222790|222795|222796|222797|222798|222799|222800|222801|222819|222820|222821|222822|222824|222825|222826|222827|222830|222832|222833|222834|222835|222836|222837|222838|222840|222841|222842|222843|222844|222845|222846|222847|222848|222849|222850|222857|222858|222859|222860|222861|222862|222865|222866|222867|222868|222869|222876|222877|222878|222989|223361|223362|223599|223600|223602|223628|223646|224306|224894|224898|224902|224915|224916|224918|224919|224936|224950|224957|224962|224963|224965|225120|225121|225122|225123|225124|225125|225126|225127|225128|225129|225130|225131|225132|225133|225134|225135|225136|225137|225138|225139|225140|225141|225142|225143|225144|225145|225146|225147|225148|225149|225150|225151|225152|225153|225154|225155|225156|225157|225158|225159|225160|225161|225162|225163|225164|225165|225166|225167|225168|225169|225170|225171|225172|225173|225174|225175|225176|225177|225178|225179|225180|225181|225182|225183|225184|225185|225186|225187|225188|225189|225190|225191|225192|225193|225194|225195|225196|225197|225198|225199|225200|225201|225202|225203|225204|225205|225206|225207|225208|225209|225210|225211|225212|225213|225214|225215|225216|225217|225218|225219|225220|225221|225222|225223|225224|225225|225226|225227|225228|225229|225230|225231|225232|225233|225234|225235|225236|225237|225238|225239|225240|225241|225242|225243|225244|225245|225246|225247|225248|225249|225250|225251|225252|225253|225254|225255|225256|225257|225258|225259|225260|225261|225262|225263|225264|225265|225266|225267|225268|225269|225270|225271|225272|225273|225274|225275|225276|225277|225278|225279|225280|225281|225282|225283|225284|225285|225286|225287|225288|225289|225290|225291|225292|225293|225294|225295|225296|225297|225298|225299|225300|225301|225302|225303|225304|225305|225306|225307|225308|225309|225310|225311|225312|225313|225314|225315|225316|225317|225318|225319|225320|225321|225322|225323|225324|225325|225326|225327|225328|225329|225330|225331|225332|225333|225334|225335|225336|225337|225338|225339|225340|225341|225342|225343|225344|225345|225346|225347|225348|225349|225350|225351|225352|225353|225354|225355|225356|225357|225358|225359|225360|225361|225362|225363|225364|225365|225366|225367|225368|225369|225370|225371|225372|225373|225374|225375|225376|225377|225378|225379|225380|225381|225382|225383|225384|225385|225386|225387|225388|225389|225390|225391|225392|225393|225394|225395|225396|225397|225398|225399|225400|225401|225402|225403|225404|225405|225406|225407|225408|225409|225410|225411|225412|225413|225414|225415|225416|225417|225418|225419|225420|225421|225422|225423|225424|225425|225426|225427|225428|225429|225430|225431|225432|225433|225434|225435|225436|225437|225438|225439|225440|225441|225442|225443|225444|225445|225446|225447|225448|225449|225450|225451|225452|225453|225454|225455|225456|225457|225458|225459|225460|225461|225462|225463|225464|225465|225466|225467|225468|225469|225470|225471|225472|225473|225474|225475|225476|225477|225478|225479|225480|225481|225482|225483|225484|225485|225486|225487|225488|225489|225490|225491|225492|225493|225494|225495|225496|225497|225498|225499|225500|225501|225502|225503|225504|225505|225506|225507|225508|225509|225510|225511|225512|225513|225514|225515|225516|225517|225518|225519|225520|225521|225522|225523|225524|225525|225526|225527|225528|225529|225530|225531|225532|225533|225534|225535|225536|225537|225538|225539|225540|225541|225542|225543|225544|225545|225546|225547|225548|225549|225550|225551|225552|225553|225554|225555|225556|225557|225558|225559|225560|225561|225562|225563|225564|225565|225566|225567|225568|225569|225570|225571|225572|225573|225574|225575|225576|225577|225578|225579|225580|225581|225582|225583|225584|225585|225586|225587|225588|225589|225590|225591|225592|225593|225594|225595|225596|225597|225598|225599|225600|225601|225602|225603|225604|225605|225606|225607|225608|225609|225610|225611|225612|225613|225614|225615|225616|225617|225618|225619|225620|225621|225622|225623|225624|225625|225626|225627|225628|225629|225630|225631|225632|225633|225634|225635|225636|225637|225638|225639|225640|225641|225642|225643|225644|225645|225646|225647|225648|225649|225650|225651|225652|225653|225654|225655|225656|225657|225658|225659|225660|225661|225662|225663|225664|225665|225666|225667|225668|225669|225670|225671|225672|225673|225674|225675|225676|225677|225678|225679|225680|225681|225682|225683|225684|225685|225686|225687|225688|225689|225690|225691|225692|225693|225694|225695|225696|225697|225698|225699|225700|225701|225702|225703|225704|225705|225706|225707|225708|225709|225710|225711|225712|225713|225714|225715|225716|225717|225718|225719|225720|225721|225722|225723|225724|225725|225726|225727|225728|225729|225730|225731|225732|225733|225734|225735|225736|225737|225738|225739|225740|225741|225742|225743|225744|225745|225746|225747|225748|225749|225750|225751|225752|225753|225754|225755|225756|225757|225758|225759|225760|225761|225762|225763|225764|225765|225766|225767|225768|225769|225770|225771|225772|225773|225774|225775|225776|225777|225778|225779|225780|225781|226087|226152|226153|226154|226155|226156|226159|226160|226162|226164|226174|226175|226180|226185|226189|226191|226193|226198|226204|226205|226207|226293|226294|226295|226296|226298|226299|226300|226301|226302|226303|226304|226305|226306|226307|226308|226311|226312|226313|226316|226317|226320|226323|226324|226325|226327|226328|226329|226330|226331|226332|226333|226334|226335|226339|226342|226343|226344|226345|226346|226347|226348|226349|226350|226351|226352|226355|226356|226357|226358|226359|226360|226361|226362|226363|226364|226365|226366|226367|226368|226369|226370|226371|226788|226816|226817|226818|226820|226821|226822|226823|226824|226825|226826|227193|227194|227197|227276|227399|227520|227527|227528|227529|227531|227532|227533|227534|227535|227536|227538|227539|227543|227544|227550|227551|227554|227556|227557|227558|227559|227563|227567|227577|227664|227665|227667|227671|227672|227699|227700|227854|227920|228967|229170|229171|229172|229173|229791|230612|230675|230758|230765|230766|230767|230768|230773|231520|231526|231527|231530|231532|231533|231535|231536|231537|231541|231542|231547|231548|231549|231550|231551|231552|231553|231554|231555|231562|231564|231565|231567|231569|231570|231572|231573|231574|231575|231577|231579|231580|231581|231582|231584|231586|231587|231588|231592|231594|231599|231601|231606|231608|231609|231610|231612|231613|231614|231616|231617|231618|231619|231621|231623|231624|231626|231627|231631|231655|231656|231657|231659|231661|231662|231668|231669|231670|231671|231675|231676|231678|231680|231681|231682|231683|231684|231685|231687|231688|231690|231692|231693|231694|231698|231701|231702|231706|231707|231708|231709|231713|231714|231723|231724|231725|231728|231730|231731|231732|231733|231737|231738|231749|231750|231752|231753|231762|231779|231786|231791|231792|231793|231794|231795|231796|231798|231855|231858|231859|231864|231865|231866|231869|231870|231871|231872|231873|231874|231877|231879|231880|231881|231882|231883|231886|231887|231888|231890|231891|231892|231893|231894|231897|231900|231902|231903|231905|231906|231907|231911|231912|231962|231964|231966|231968|231969|231971|231972|231973|231974|231975|231976|231977|231980|231982|231984|231986|231989|231993|231995|231996|231997|231998|231999|232000|232001|232002|232003|232005|232006|232008|232009|232012|232016|232017|232021|232023|232024|232027|232035|232070|232071|232074|232075|232077|232078|232079|232082|232083|232084|232085|232088|232112|232117|232119|232120|232121|232122|232123|232124|232125|232127|232128|232129|232130|232131|232132|232134|232136|232138|232139|232142|232143|232144|232166|232167|232168|232169|232170|232171|232172|232173|232174|232175|232176|232177|232178|232179|232180|232181|232182|232183|232184|232185|232186|232187|232188|232189|232190|232191|232192|232193|232194|232195|232196|232197|232198|232199|232200|232201|232202|232203|232204|232205|232206|232207|232209|232210|232211|232212|232213|232214|232215|232216|232217|232218|232219|232220|232221|232222|232223|232224|232225|232226|232227|232228|232229|232230|232231|232232|232233|232234|232235|232236|232237|232238|232239|232240|232241|232242|232243|232244|232245|232246|232247|232248|232249|232250|232251|232252|232253|232254|232255|232256|232257|232258|232259|232260|232261|232262|232263|232264|232265|232266|232267|232268|232269|232270|232271|232272|232273|232274|232275|232276|232277|232278|232279|232280|232281|232282|232283|232284|232285|232286|232287|232288|232289|232290|232291|232292|232293|232294|232295|232296|232297|232298|232299|232300|232301|232302|232303|232304|232305|232306|232307|232308|232309|232310|232311|232312|232313|232314|232315|232316|232317|232318|232319|232320|232321|232322|232323|232324|232325|232326|232327|232328|232329|232330|232331|232332|232333|232334|232335|232336|232337|232338|232339|232340|232341|232342|232343|232344|232345|232346|232347|232348|232349|232350|232351|232352|232353|232354|232355|232356|232357|232358|232359|232360|232361|232362|232363|232364|232365|232366|232367|232368|232369|232370|232371|232372|232373|232374|232375|232376|232377|232378|232379|232380|232381|232382|232383|232384|232385|232386|232387|232388|232389|232390|232391|232392|232393|232394|232395|232396|232397|232398|232399|232400|232401|232402|232403|232404|232405|232406|232407|232408|232409|232410|232411|232412|232413|232414|232415|232416|232417|232418|232419|232420|232421|232422|232423|232424|232425|232426|232427|232428|232429|232430|232431|232432|232433|232434|232435|232436|232437|232438|232439|232440|232441|232442|232443|232444|232445|232446|232447|232448|232449|232450|232451|232452|232453|232454|232455|232456|232457|232458|232459|232460|232461|232462|232463|232464|232465|232466|232467|232468|232469|232470|232471|232472|232473|232474|232475|232476|232477|232478|232479|232480|232481|232482|232483|232484|232485|232486|232487|232488|232489|232490|232491|232492|232493|232494|232495|232496|232497|232498|232499|232500|232501|232502|232503|232504|232505|232506|232507|232508|232509|232510|232511|232512|232513|232514|232515|232516|232517|232518|232519|232520|232521|232522|232523|232524|232525|232526|232527|232528|232529|232530|232531|232532|232533|232534|232535|232536|232537|232538|232539|232540|232541|232542|232543|232544|232545|232546|232547|232548|232549|232550|232551|232552|232553|232554|232555|232556|232557|232558|232559|232560|232561|232562|232563|232564|232565|232566|232567|232568|232569|232570|232571|232572|232573|232574|232575|232576|232577|232578|232579|232580|232581|232582|232583|232584|232585|232586|232587|232588|232589|232590|232591|232592|232593|232594|232595|232596|232597|232598|232599|232600|232601|232602|232603|232604|232605|232606|232607|232608|232609|232610|232611|232612|232613|232614|232615|232616|232617|232618|232619|232620|232621|232622|232623|232624|232625|232626|232627|232628|232629|232630|232631|232632|232633|232634|232635|232636|232637|232638|232639|232640|232641|232642|232643|232644|232645|232646|232647|232648|232649|232650|232651|232652|232653|232654|232655|232656|232657|232658|232659|232660|232661|232662|232663|232664|232665|232666|232667|232668|232669|232670|232671|232672|232673|232674|232675|232676|232677|232678|232679|232680|232681|232682|232683|232684|232685|232686|232687|232688|232689|232690|232691|232692|232693|232694|232695|232696|232697|232698|232699|232700|232701|232702|232703|232704|232705|232706|232707|232708|232709|232710|232711|232712|232713|232714|232715|232716|232717|232718|232719|232720|232721|232722|232723|232724|232725|232726|232727|232728|232729|232730|232731|232732|232733|232734|232735|232736|232737|232738|232739|232740|232741|232742|232743|232744|232745|232746|232747|232748|232749|232750|232751|232752|232753|232754|232755|232756|232757|232758|232760|232761|232762|232763|232764|232765|232766|232767|232768|232769|232770|232771|232772|232773|232774|232775|232776|232777|232778|232779|232780|232781|232782|232783|232784|232785|232786|232787|232788|232789|232790|232791|232792|232793|232794|232795|232796|232797|232798|232799|232800|232801|232802|232803|232804|232805|232806|232807|232808|232809|232810|232811|232812|232813|232814|232815|232816|232817|232818|232819|232820|232821|232822|232823|232824|232825|232826|232827|232828|232829|232830|232831|232832|232833|232834|232835|232836|232837|232838|232839|232840|232841|232842|232843|232844|232845|232846|232847|232848|232849|232850|232851|232852|232853|232854|232855|232856|232857|232859|232860|232861|232862|232863|232864|232865|232866|232867|232868|232869|232870|232871|232872|232873|232874|232875|232876|232877|232878|232879|232880|232881|232882|232883|232884|232885|232886|232887|232888|232889|232890|232891|232892|232893|232894|232895|232896|232897|232898|232899|232900|232901|232902|232903|232904|232905|232906|232907|232908|232909|232910|232911|232912|232913|232914|232915|232916|232917|232918|232919|232920|232921|232922|232923|232924|232925|232926|232927|232928|232929|232930|232931|232932|232933|232934|232935|232936|232937|232938|232939|232940|232941|232942|232943|232944|232945|232946|232947|232948|232949|232950|232951|232952|232953|232954|232955|232956|232957|232958|232959|232960|232961|232962|232963|232964|232965|232966|232967|232968|232969|232970|232971|232973|232974|232975|232976|232977|232978|232979|232980|232981|232982|232983|232984|232985|232986|232987|232988|232989|232990|232991|232992|232993|232994|232995|232996|232997|232998|232999|233000|233001|233002|233003|233004|233005|233006|233007|233008|233009|233010|233011|233012|233013|233014|233015|233016|233017|233018|233019|233020|233021|233022|233023|233024|233025|233026|233027|233028|233029|233030|233031|233032|233033|233034|233035|233036|233037|233038|233039|233040|233041|233042|233043|233044|233045|233046|233047|233048|233049|233050|233051|233052|233053|233054|233055|233056|233057|233058|233059|233060|233061|233062|233063|233064|233065|233066|233067|233068|233069|233070|233071|233072|233073|233074|233075|233076|233077|233078|233079|233080|233081|233082|233083|233084|233085|233086|233087|233088|233089|233090|233091|233092|233093|233094|233095|233096|233097|233098|233099|233100|233101|233102|233103|233104|233105|233106|233107|233108|233109|233110|233111|233112|233113|233114|233115|233116|233117|233118|233119|233120|233121|233122|233123|233124|233125|233126|233127|233128|233129|233130|233131|233132|233133|233134|233135|233136|233137|233138|233139|233140|233141|233142|233143|233144|233145|233146|233147|233148|233149|233150|233151|233152|233153|233154|233155|233156|233157|233158|233159|233160|233161|233162|233163|233164|233165|233166|233167|233168|233169|233170|233171|233172|233173|233174|233175|233176|233177|233178|233179|233180|233181|233182|233183|233184|233185|233186|233187|233188|233189|233190|233191|233192|233193|233194|233195|233196|233197|233198|233199|233200|233201|233202|233203|233204|233205|233206|233207|233208|233209|233210|233211|233212|233213|233214|233215|233216|233217|233218|233219|233220|233221|233222|233223|233224|233225|233226|233227|233228|233229|233230|233231|233232|233233|233234|233235|233236|233237|233238|233239|233240|233241|233242|233243|233244|233245|233246|233247|233248|233249|233250|233251|233252|233253|233254|233255|233256|233257|233258|233259|233260|233261|233262|233263|233264|233265|233266|233267|233268|233269|233270|233271|233272|233273|233274|233275|233276|233277|233278|233279|233280|233281|233282|233283|233284|233285|233286|233287|233288|233289|233290|233291|233292|233293|233294|233295|233296|233297|233298|233299|233300|233301|233302|233303|233304|233305|233306|233307|233308|233309|233310|233311|233312|233313|233314|233315|233316|233317|233318|233319|233320|233321|233322|233323|233324|233325|233326|233327|233328|233329|233330|233331|233332|233333|233334|233335|233336|233337|233338|233339|233340|233341|233342|233343|233344|233345|233346|233347|233348|233349|233350|233351|233352|233353|233354|233355|233356|233357|233358|233359|233360|233361|233362|233363|233364|233365|233366|233367|233368|233369|233370|233371|233372|233373|233374|233375|233376|233377|233378|233379|233380|233381|233382|233383|233384|233385|233386|233387|233388|233389|233390|233391|233392|233393|233394|233395|233396|233397|233398|233399|233400|233401|233402|233403|233404|233405|233406|233407|233408|233409|233410|233411|233412|233413|233414|233415|233416|233417|233418|233419|233420|233421|233422|233423|233424|233425|233426|233427|233428|233429|233430|233431|233432|233433|233434|233435|233436|233437|233438|233439|233440|233441|233442|233443|233444|233445|233446|233447|233448|233449|233450|233451|233452|233453|233454|233455|233456|233457|233458|233459|233460|233461|233462|233463|233464|233465|233466|233467|233468|233469|233470|233471|233472|233473|233474|233475|233476|233477|233478|233479|233480|233481|233482|233483|233484|233485|233486|233487|233488|233489|233490|233491|233492|233493|233494|233495|233496|233497|233498|233499|233500|233501|233502|233503|233504|233505|233506|233507|233509|233510|233511|233512|233513|233514|233515|233516|233517|233518|233519|233520|233521|233522|233523|233524|233525|233526|233527|233528|233529|233530|233531|233532|233533|233534|233535|233536|233537|233538|233539|233540|233541|233542|233543|233544|233545|233546|233547|233548|233549|233550|233551|233552|233553|233554|233555|233556|233557|233558|233559|233560|233561|233562|233563|233564|233565|233566|233567|233568|233569|233570|233571|233572|233573|233574|233575|233576|233577|233578|233579|233580|233581|233582|233583|233584|233585|233586|233587|233588|233589|233590|233591|233592|233593|233594|233595|233596|233597|233598|233599|233600|233601|233602|233603|233604|233605|233606|233607|233608|233609|233610|233611|233612|233613|233614|233615|233616|233617|233618|233619|233620|233621|233622|233623|233624|233625|233626|233627|233628|233629|233630|233631|233632|233633|233634|233635|233636|233637|233638|233639|233640|233641|233642|233643|233644|233645|233646|233647|233648|233649|233650|233651|233652|233653|233654|233655|233656|233657|233658|233659|233660|233661|233662|233663|233664|233665|233666|233667|233668|233669|233670|233671|233672|233673|233674|233675|233676|233677|233678|233679|233680|233681|233682|233683|233684|233685|233686|233687|233688|233689|233690|233691|233692|233693|233694|233695|233696|233697|233698|233699|233700|233701|233702|233703|233704|233705|233706|233707|233708|233709|233710|233711|233712|233713|233714|233715|233716|233717|233718|233719|233720|233721|233722|233723|233724|233725|233726|233727|233728|233729|233730|233731|233732|233733|233734|233735|233736|233737|233738|233739|233740|233741|233742|233743|233744|233745|233746|233747|233748|233749|233750|233751|233752|233753|233754|233755|233756|233757|233758|233759|233760|233761|233762|233763|233764|233765|233766|233767|233768|233769|233770|233771|233772|233773|233774|233775|233776|233777|233778|233779|233780|233781|233782|233783|233784|233785|233786|233787|233788|233789|233790|233791|233792|233793|233794|233795|233796|233797|233798|233799|233800|233801|233802|233803|233804|233805|233806|233807|233808|233809|233810|233811|233812|233813|233814|233815|233816|233817|233818|233819|233820|233821|233822|233823|233824|233825|233826|233827|233828|233829|233830|233831|233832|233833|233834|233835|233836|233837|233838|233839|233840|233841|233842|233843|233844|233845|233846|233847|233848|233849|233850|233851|233852|233853|233854|233855|233856|233857|233858|233859|233860|233861|233862|233863|233864|233865|233866|233867|233868|233869|233870|233871|233872|233873|233874|233875|233876|233877|233878|233879|233880|233881|233882|233883|233884|233885|233886|233887|233888|233889|233890|233891|233892|233893|233894|233895|233896|233897|233898|233899|233900|233901|233902|233903|233904|233905|233906|233907|233908|233909|233910|233911|233912|233913|233914|233915|233916|233917|233918|233919|233920|233921|233922|233923|233924|233925|233926|233927|233928|233929|233930|233931|233932|233933|233934|233935|233936|233937|233938|233939|233940|233941|233942|233943|233944|233945|233946|233947|233948|233949|233950|233951|233952|233953|233954|233955|233956|233957|233958|233959|233960|233961|233962|233963|233964|233965|233966|233967|233968|233969|233970|233971|233972|233973|233974|233975|233976|233977|233978|233979|233980|233981|233982|233983|233984|233985|233986|233987|233988|233989|233990|233991|233992|233993|233994|233995|233996|233997|233998|233999|234000|234001|234002|234003|234004|234005|234006|234007|234008|234009|234010|234011|234012|234013|234014|234015|234016|234017|234018|234019|234020|234021|234022|234023|234024|234025|234026|234027|234028|234029|234030|234031|234032|234033|234034|234035|234036|234037|234038|234039|234040|234041|234042|234043|234044|234045|234046|234047|234048|234049|234050|234051|234052|234053|234054|234055|234056|234057|234058|234059|234060|234061|234062|234063|234064|234065|234066|234067|234068|234069|234070|234071|234072|234073|234074|234075|234076|234077|234078|234079|234080|234081|234082|234083|234084|234085|234086|234087|234088|234089|234090|234091|234092|234093|234094|234095|234096|234097|234098|234099|234100|234101|234102|234103|234104|234105|234106|234107|234108|234109|234110|234111|234112|234113|234114|234115|234116|234117|234118|234119|234120|234121|234122|234123|234124|234125|234126|234127|234128|234129|234130|234131|234132|234133|234134|234135|234136|234137|234138|234139|234140|234141|234142|234143|234144|234145|234146|234147|234148|234149|234150|234151|234152|234153|234154|234155|234156|234157|234158|234159|234160|234161|234162|234163|234164|234165|234166|234167|234168|234169|234170|234171|234172|234173|234174|234175|234176|234177|234178|234179|234180|234181|234182|234183|234184|234185|234186|234187|234188|234189|234190|234191|234192|234193|234194|234195|234196|234197|234198|234199|234200|234201|234202|234203|234204|234205|234206|234207|234208|234209|234210|234211|234212|234213|234214|234215|234216|234217|234218|234219|234220|234221|234222|234223|234224|234225|234226|234227|234228|234229|234230|234231|234232|234233|234234|234235|234236|234237|234238|234239|234240|234241|234242|234243|234244|234245|234246|234247|234248|234249|234250|234251|234252|234253|234254|234255|234256|234257|234258|234259|234260|234261|234262|234263|234264|234265|234266|234267|234268|234269|234270|234271|234272|234273|234274|234275|234276|234277|234278|234279|234280|234281|234282|234283|234284|234285|234286|234287|234288|234289|234290|234291|234292|234293|234294|234295|234296|234297|234298|234299|234300|234301|234302|234303|234304|234305|234306|234307|234308|234309|234310|234311|234312|234313|234314|234315|234316|234317|234318|234319|234320|234321|234322|234323|234324|234325|234326|234327|234328|234329|234330|234331|234332|234333|234334|234335|234336|234337|234338|234339|234340|234341|234342|234343|234344|234345|234346|234347|234348|234349|234350|234351|234352|234353|234354|234355|234356|234357|234358|234359|234360|234361|234362|234363|234364|234365|234366|234367|234368|234369|234370|234371|234372|234373|234374|234375|234376|234377|234378|234379|234380|234381|234382|234383|234384|234385|234386|234387|234388|234389|234390|234391|234392|234393|234394|234395|234396|234397|234398|234399|234400|234401|234402|234403|234404|234405|234406|234407|234408|234409|234410|234411|234412|234413|234414|234415|234416|234417|234418|234419|234420|234421|234422|234423|234424|234425|234426|234427|234428|234429|234430|234431|234432|234433|234434|234435|234436|234437|234438|234439|234440|234441|234442|234443|234444|234445|234446|234447|234448|234449|234450|234451|234452|234453|234454|234455|234456|234457|234458|234459|234460|234461|234462|234463|234464|234465|234466|234467|234468|234469|234470|234471|234472|234473|234474|234475|234476|234477|234478|234479|234480|234481|234482|234483|234484|234485|234486|234487|234488|234489|234490|234491|234492|234493|234494|234495|234496|234497|234498|234499|234500|234501|234502|234503|234504|234505|234506|234507|234508|234509|234510|234511|234512|234513|234514|234515|234516|234517|234518|234519|234520|234521|234522|234523|234524|234525|234526|234527|234528|234529|234530|234531|234532|234533|234534|234535|234536|234537|234538|234539|234540|234541|234542|234543|234544|234545|234546|234547|234548|234549|234550|234551|234552|234553|234554|234555|234556|234557|234558|234559|234560|234561|234562|234563|234564|234565|234566|234567|234568|234569|234570|234571|234572|234573|234574|234575|234576|234577|234578|234579|234580|234581|234582|234583|234584|234585|234586|234587|234588|234589|234590|234591|234592|234593|234594|234595|234596|234597|234598|234599|234600|234601|234602|234603|234604|234605|234606|234607|234608|234609|234610|234611|234612|234613|234614|234615|234616|234617|234618|234619|234620|234621|234622|234623|234624|234625|234626|234627|234628|234629|234630|234631|234632|234633|234634|234635|234636|234637|234638|234639|234640|234641|234642|234643|234644|234645|234646|234647|234648|234649|234650|234651|234652|234653|234654|234655|234656|234657|234658|234659|234660|234661|234662|234663|234664|234665|234666|234667|234668|234669|234670|234671|234672|234673|234674|234675|234676|234677|234678|234679|234680|234681|234682|234683|234684|234685|234686|234687|234688|234689|234690|234691|234692|234693|234694|234695|234696|234697|234698|234699|234700|234701|234702|234703|234704|234705|234706|234707|234708|234709|234710|234711|234712|234713|234714|234715|234716|234717|234718|234719|234720|234721|234722|234723|234724|234725|234726|234727|234728|234729|234730|234731|234732|234733|234734|234735|234736|234737|234738|234739|234740|234741|234742|234743|234744|234745|234746|234747|234748|234749|234750|234751|234752|234753|234754|234755|234756|234757|234758|234759|234760|234761|234762|234763|234764|234765|234766|234767|234768|234769|234770|234771|234772|234773|234774|234775|234776|234777|234778|234779|234780|234781|234782|234783|234784|234785|234786|234787|234788|234789|234790|234791|234792|234793|234794|234795|234796|234797|234798|234799|234800|234801|234802|234803|234804|234805|234806|234807|234808|234809|234810|234811|234812|234813|234814|234815|234816|234817|234818|234819|234820|234821|234822|234823|234824|234825|234826|234827|234828|234829|234830|234831|234832|234833|234834|234835|234836|234837|234838|234839|234840|234841|234842|234843|234844|234845|234846|234847|234848|234849|234850|234851|234852|234853|234854|234855|234856|234857|234858|234859|234860|234861|234862|234863|234864|234865|234866|234867|234868|234869|234870|234871|234872|234873|234874|234875|234876|234877|234878|234879|234880|234881|234882|234883|234884|234885|234886|234887|234888|234889|234890|234891|234892|234893|234894|234895|234896|234897|234898|234899|234900|234901|234902|234903|234904|234905|234906|234907|234908|234909|234910|234911|234912|234913|234914|234915|234916|234917|234918|234919|234920|234921|234922|234923|234924|234925|234926|234927|234928|234929|234930|234931|234932|234933|234934|234935|234936|234937|234938|234939|234940|234941|234942|234943|234944|234945|234946|234947|234948|234949|234950|234951|234952|234953|234954|234955|234956|234957|234958|234959|234960|234961|234962|234963|234964|234965|234966|234967|234968|234969|234970|234971|234972|234973|234974|234975|234976|234977|234978|234979|234980|234981|234982|234983|234984|234985|234986|234987|234988|234989|234990|234991|234992|234993|234994|234995|234996|234997|234998|234999|235000|235001|235002|235003|235004|235005|235006|235007|235008|235009|235010|235011|235012|235013|235014|235015|235016|235017|235018|235019|235020|235021|235022|235023|235024|235025|235026|235027|235028|235029|235030|235031|235032|235033|235034|235035|235036|235037|235038|235039|235040|235041|235042|235043|235044|235045|235046|235047|235048|235049|235050|235051|235052|235053|235054|235055|235056|235057|235058|235059|235060|235061|235062|235063|235064|235065|235066|235067|235068|235069|235070|235071|235072|235073|235074|235075|235076|235077|235078|235079|235080|235081|235082|235083|235084|235085|235086|235087|235088|235089|235090|235091|235092|235093|235094|235095|235096|235097|235098|235099|235100|235101|235102|235103|235104|235105|235106|235107|235108|235109|235110|235111|235112|235113|235114|235115|235116|235117|235118|235119|235120|235121|235122|235123|235124|235125|235126|235127|235128|235129|235130|235131|235132|235133|235134|235135|235136|235137|235138|235139|235140|235141|235142|235143|235144|235145|235146|235147|235148|235149|235150|235151|235152|235153|235154|235155|235156|235157|235158|235159|235160|235161|235162|235163|235164|235165|235166|235167|235168|235169|235170|235171|235172|235173|235174|235175|235176|235177|235178|235179|235180|235181|235182|235183|235184|235185|235186|235187|235188|235189|235190|235191|235192|235193|235194|235195|235196|235197|235198|235199|235200|235201|235202|235203|235204|235205|235206|235207|235208|235209|235210|235211|235212|235213|235214|235215|235216|235217|235218|235219|235220|235221|235222|235223|235224|235225|235226|235227|235228|235229|235230|235231|235232|235233|235234|235235|235236|235237|235238|235239|235240|235241|235242|235243|235244|235245|235246|235247|235248|235249|235250|235251|235252|235253|235254|235255|235256|235257|235258|235259|235260|235261|235262|235263|235264|235265|235266|235267|235268|235269|235270|235271|235272|235273|235274|235275|235276|235277|235278|235279|235280|235281|235282|235283|235284|235285|235286|235287|235288|235289|235290|235291|235292|235293|235294|235295|235296|235297|235298|235299|235300|235301|235302|235303|235304|235305|235306|235307|235308|235309|235310|235311|235312|235313|235314|235315|235316|235317|235318|235319|235320|235321|235322|235323|235324|235325|235326|235327|235328|235329|235330|235331|235332|235333|235334|235335|235336|235337|235338|235339|235340|235341|235342|235343|235344|235345|235346|235347|235348|235349|235350|235351|235352|235353|235354|235355|235356|235357|235358|235359|235360|235361|235362|235363|235364|235365|235366|235367|235368|235369|235370|235371|235372|235373|235374|235375|235376|235377|235378|235379|235380|235381|235382|235383|235384|235385|235386|235387|235388|235389|235390|235391|235392|235393|235394|235395|235396|235397|235398|235399|235400|235401|235402|235403|235404|235405|235406|235407|235408|235409|235410|235411|235412|235413|235414|235415|235416|235417|235418|235419|235420|235421|235422|235423|235424|235425|235426|235427|235428|235429|235430|235431|235432|235433|235434|235435|235436|235437|235438|235439|235440|235441|235442|235443|235444|235445|235446|235447|235448|235449|235450|235451|235452|235453|235454|235455|235456|235457|235458|235459|235460|235461|235462|235463|235464|235465|235466|235467|235468|235469|235470|235471|235472|235473|235474|235475|235476|235477|235478|235479|235480|235481|235482|235483|235484|235485|235486|235488|235489|235490|235491|235492|235493|235494|235495|235496|235497|235498|235499|235500|235501|235502|235503|235504|235505|235506|235507|235508|235509|235510|235511|235512|235513|235514|235515|235516|235517|235518|235519|235520|235521|235522|235523|235524|235525|235526|235527|235528|235529|235530|235531|235532|235533|235534|235535|235536|235537|235538|235539|235540|235541|235542|235543|235544|235545|235546|235547|235548|235549|235550|235551|235552|235553|235554|235555|235556|235557|235558|235559|235560|235561|235562|235563|235564|235565|235566|235567|235568|235569|235570|235571|235572|235573|235574|235575|235576|235577|235578|235579|235580|235581|235582|235583|235584|235585|235586|235587|235588|235589|235590|235591|235592|235593|235594|235595|235596|235597|235598|235599|235600|235601|235602|235603|235604|235605|235606|235607|235608|235609|235610|235611|235612|235613|235614|235615|235616|235617|235618|235619|235620|235621|235622|235623|235624|235625|235626|235627|235628|235629|235630|235631|235632|235633|235634|235635|235636|235637|235638|235639|235640|235641|235642|235643|235644|235645|235646|235647|235648|235649|235650|235651|235652|235653|235654|235655|235656|235657|235658|235659|235660|235661|235662|235663|235664|235665|235666|235667|235668|235669|235670|235671|235672|235673|235674|235675|235676|235677|235678|235679|235680|235681|235682|235683|235684|235685|235686|235687|235688|235689|235690|235691|235692|235693|235694|235695|235696|235697|235698|235699|235700|235701|235702|235703|235704|235705|235706|235707|235708|235709|235710|235711|235712|235713|235714|235715|235716|235717|235718|235719|235720|235721|235722|235723|235724|235725|235726|235727|235728|235729|235730|235731|235732|235733|235734|235735|235736|235737|235738|235739|235740|235741|235742|235743|235744|235745|235746|235747|235748|235749|235750|235751|235752|235753|235754|235755|235756|235757|235758|235759|235760|235761|235762|235763|235764|235765|235766|235767|235768|235769|235770|235771|235772|235773|235774|235775|235776|235777|235778|235779|235780|235781|235782|235783|235784|235785|235786|235787|235788|235789|235790|235791|235792|235793|235794|235795|235796|235797|235798|235799|235800|235801|235802|235803|235804|235805|235806|235807|235808|235809|235810|235811|235812|235813|235814|235815|235816|235817|235818|235819|235820|235821|235822|235823|235824|235825|235826|235827|235828|235829|235830|235831|235832|235833|235834|235835|235836|235837|235838|235839|235840|235841|235842|235843|235844|235845|235846|235847|235848|235849|235850|235851|235852|235853|235854|235855|235856|235857|235858|235859|235860|235861|235862|235863|235864|235865|235866|235867|235868|235869|235870|235871|235872|235873|235874|235875|235876|235877|235878|235879|235880|235881|235882|235883|235884|235885|235886|235887|235888|235889|235890|235891|235892|235893|235894|235895|235896|235897|235898|235899|235900|235901|235902|235903|235904|235905|235906|235907|235908|235909|235910|235911|235912|235913|235914|235915|235916|235917|235918|235919|235920|235921|235922|235923|235924|235925|235926|235927|235928|235929|235930|235931|235932|235933|235934|235935|235936|235937|235938|235939|235940|235941|235942|235943|235944|235945|235946|235947|235948|235949|235950|235951|235952|235953|235954|235955|235956|235957|235958|235959|235960|235961|235962|235963|235964|235965|235966|235967|235968|235969|235970|235971|235972|235973|235974|235975|235976|235977|235978|235979|235980|235981|235982|235983|235984|235985|235986|235987|235988|235989|235990|235991|235992|235993|235994|235995|235996|235997|235998|235999|236000|236001|236002|236003|236004|236005|236006|236007|236008|236009|236010|236011|236012|236013|236014|236015|236016|236017|236018|236019|236020|236021|236022|236023|236024|236025|236026|236027|236028|236029|236030|236031|236032|236033|236034|236035|236036|236037|236038|236039|236040|236041|236042|236043|236044|236045|236046|236047|236048|236049|236050|236051|236052|236053|236054|236055|236056|236057|236058|236059|236060|236061|236062|236063|236064|236065|236066|236067|236068|236069|236070|236071|236072|236073|236074|236075|236076|236077|236078|236079|236080|236081|236082|236083|236084|236085|236086|236087|236088|236089|236090|236091|236092|236093|236094|236095|236096|236097|236098|236099|236100|236101|236102|236103|236104|236105|236106|236107|236108|236109|236110|236111|236112|236113|236114|236115|236116|236117|236118|236119|236120|236121|236122|236123|236124|236125|236126|236127|236128|236129|236130|236131|236132|236133|236134|236135|236136|236137|236138|236139|236140|236141|236142|236143|236144|236145|236146|236147|236148|236149|236150|236151|236152|236153|236154|236155|236156|236157|236158|236159|236160|236161|236162|236163|236164|236165|236166|236167|236168|236169|236170|236171|236172|236173|236174|236175|236176|236177|236178|236179|236180|236181|236182|236183|236184|236185|236186|236187|236188|236189|236190|236191|236192|236193|236194|236195|236196|236197|236198|236199|236200|236201|236202|236203|236204|236205|236206|236207|236208|236209|236210|236211|236212|236213|236214|236215|236216|236217|236218|236219|236220|236221|236222|236223|236224|236225|236226|236227|236228|236229|236230|236231|236232|236233|236234|236235|236236|236237|236238|236239|236240|236241|236242|236243|236244|236245|236246|236247|236248|236249|236250|236251|236252|236253|236254|236255|236256|236257|236258|236259|236260|236261|236262|236263|236264|236265|236266|236267|236268|236269|236270|236271|236272|236273|236274|236275|236276|236277|236278|236279|236280|236281|236282|236283|236284|236285|236286|236287|236288|236289|236290|236291|236292|236293|236294|236295|236296|236297|236298|236299|236300|236301|236302|236303|236304|236305|236306|236307|236308|236309|236310|236311|236312|236313|236314|236315|236316|236317|236318|236319|236320|236321|236322|236323|236324|236325|236326|236327|236328|236329|236330|236331|236332|236333|236334|236335|236336|236337|236338|236339|236340|236341|236342|236343|236344|236345|236346|236347|236348|236349|236350|236351|236352|236353|236354|236355|236356|236357|236358|236359|236360|236361|236362|236363|236364|236365|236366|236367|236368|236369|236370|236371|236372|236373|236374|236375|236376|236377|236378|236379|236380|236381|236382|236383|236384|236385|236386|236387|236388|236389|236390|236391|236392|236393|236394|236395|236396|236397|236398|236399|236400|236401|236402|236403|236404|236405|236406|236407|236408|236409|236410|236411|236412|236413|236414|236415|236416|236417|236418|236419|236420|236421|236422|236423|236424|236425|236426|236427|236428|236429|236430|236431|236432|236433|236434|236435|236436|236437|236438|236439|236440|236441|236442|236443|236444|236445|236446|236447|236448|236449|236450|236451|236452|236453|236454|236455|236456|236457|236458|236459|236460|236461|236462|236463|236464|236465|236466|236467|236468|236469|236470|236471|236472|236473|236474|236475|236476|236477|236478|236479|236480|236481|236482|236483|236484|236485|236486|236487|236488|236489|236490|236491|236492|236493|236494|236495|236496|236497|236498|236499|236500|236501|236502|236503|236504|236505|236506|236507|236508|236509|236510|236511|236512|236513|236514|236515|236516|236517|236518|236519|236520|236521|236522|236523|236524|236525|236526|236527|236528|236529|236530|236531|236532|236533|236534|236535|236536|236537|236538|236539|236540|236541|236542|236543|236544|236545|236546|236547|236548|236549|236550|236551|236552|236553|236554|236555|236556|236557|236558|236559|236560|236561|236562|236563|236564|236565|236566|236567|236568|236569|236570|236571|236572|236573|236574|236575|236576|236577|236578|236579|236580|236581|236582|236583|236585|236586|236587|236588|236589|236590|236591|236592|236593|236594|236595|236596|236597|236598|236599|236600|236601|236602|236603|236604|236605|236606|236607|236608|236609|236610|236611|236612|236613|236614|236615|236616|236617|236618|236619|236620|236621|236622|236623|236624|236625|236626|236627|236628|236629|236630|236631|236632|236633|236634|236635|236636|236637|236638|236639|236640|236641|236642|236643|236644|236645|236646|236647|236648|236649|236650|236651|236652|236653|236654|236655|236656|236657|236658|236659|236660|236661|236662|236663|236664|236665|236666|236667|236668|236669|236670|236671|236672|236673|236674|236675|236676|236677|236678|236679|236680|236681|236682|236683|236684|236685|236686|236687|236688|236689|236690|236691|236692|236693|236694|236695|236696|236697|236698|236699|236700|236701|236702|236703|236704|236705|236706|236707|236708|236709|236710|236711|236712|236713|236714|236715|237021|237216|237261|237521|237817|237818|237823|237833|238161|238162|238163|238167|238171|238173|238174|238175|238177|238178|238179|238181|238182|238187|238190|238194|238199|238204|238205|238207|238253|238254|238260|238311|238312|238314|238315|238316|238318|238319|238320|238321|238322|238324|238325|238327|238328|238330|238331|238333|238620|238622|238624|238628|238629|238632|238635|238638|238639|238640|238641|238642|238643|238644|238645|238646|238648|238649|238650|238651|238652|238653|238654|238655|238656|238704|238706|238715|238721|238722|238723|238724|238726|238734|238737|238738|238743|238744|238748|238756|238759|238762|238781|238802|238804|238806|238807|238808|238809|238810|238814|238819|238820|238821|238822|238823|238826|238827|238828|238834|238835|238836|238837|238839|238841|238842|238844|238845|238849|238850|238851|238852|238853|238854|238862|238864|238865|238866|238867|238868|238869|238872|238873|238875|238876|238877|238878|238880|238882|238883|238884|238887|238889|238892|238893|238896|238900|238901|238902|238904|238905|238907|238908|238909|238910|238911|238912|238913|238914|238916|238918|238919|238921|238922|238923|238924|238925|238926|238929|238930|238933|238937|238938|238939|238940|238941|238942|238944|238946|238950|238951|238956|238957|238958|238959|239022|239023|239024|239026|239027|239028|239043|239045|239046|239048|239049|239050|239052|239053|239140|239146|239147|239148|239150|239152|239153|239154|239155|239156|239159|239160|239162|239168|239169|239170|239171|239172|239174|239175|239176|239177|239179|239180|239182|239183|239184|239185|239186|239187|239189|239190|239258|239259|239260|239261|239262|239263|239264|239265|239266|239267|239268|239269|239270|239271|239272|239273|239275|239276|239278|239280|239281|239282|239283|239285|239286|239287|239357|239358|239359|239360|239362|239363|239365|239366|239368|239369|239370|239372|239373|239374|239375|239379|239380|239383|239384|239388|239390|239394|239398|239405|239406|239407|239408|239410|239412|239414|239417|239421|239425|239426|239428|239429|239430|239431|239432|239436|239437|239439|239440|239441|239442|239444|239445|239446|239451|239455|239458|239461|239463|239464|239466|239468|239471|239474|239476|239477|239478|239482|239483|239486|239488|239491|239493|239495|239499|239518|239522|239524|239526|239528|239529|239530|239531|239532|239533|239534|239535|239536|239538|239539|239543|239544|239545|239547|239552|239553|239554|239555|239558|239559|239560|239562|239564|239565|239566|239567|239568|239569|239570|239572|239573|239575|239579|239580|239582|239586|239587|239588|239589|239590|239591|239593|239596|239597|239598|239600|239602|239603|239604|239605|239606|239607|239609|239610|239611|239612|239613|239614|239615|239619|239620|239622|239623|239678|239679|239681|239682|239683|239684|239687|239688|239689|239691|239692|239693|239694|239695|239696|239697|239698|239699|239700|239701|239702|239703|239704|239705|239706|239707|239708|239709|239710|239711|239712|239713|239714|239715|239716|239750|239751|239755|239756|239757|239759|239760|239796|239799|239800|239802|239803|239804|239805|239806|239808|239811|239816|239817|239819|239820|239821|239823|239824|239825|239827|239828|239829|239830|239831|239832|239833|239836|239839|239841|239842|239843|239845|239846|239848|240014|240015|240017|240109|240110|240114|240116|240117|240119|240121|240123|240124|240126|240128|240130|240131|240133|240134|240135|240136|240138|240139|240140|240142|240145|240146|240147|240148|240149|240150|240151|240152|240154|240155|240157|240403|240405|240406|240407|240409|240411|240412|240413|240415|240417|240418|240419|240423|240425|240427|240428|240429|240430|240431|240432|240472|240474|240476|240477|240481|240482|240483|240485|240490|240491|240492|240493|240498|240500|240501|240502|240503|240504|240505|240507|240509|240510|240593|240594|240595|240596|240597|240598|240600|240602|240603|240605|240628|240630|240631|240635|240636|240638|240642|240644|240646|240647|240648|240649|240650|240651|240653|240654|240655|240656|240657|240659|240660|240661|240662|240666|240673|240674|240675|240676|240678|240679|240680|240681|240684|240685|240689|240690|240691|240693|240694|240699|240700|240701|240702|240704|240705|240706|240707|240708|240709|240710|240711|240712|240713|240715|240716|240721|240722|240723|240724|240725|240726|240727|240728|240729|240730|240731|240732|240784|240786|240787|240790|240792|240794|240795|240797|240801|240802|240803|240805|240806|240808|240809|240810|240811|240815|240852|240853|240854|240856|240861|240863|240864|240866|240867|240876|240877|240879|240884|240886|240889|240905|240906|240907|240908|240911|240912|240913|240914|240916|240917|240918|240919|240920|240921|240922|240924|240926|240927|240928|240930|240931|240933|240934|240935|240936|240937|240939|240941|240944|240945|240947|240948|240951|240953|240954|240955|240956|240957|240958|240961|240963|240964|240965|240966|240969|240971|240972|240977|240978|240980|240981|240982|240983|240984|240990|240993|240998|240999|241002|241003|241005|241008|241010|241011|241013|241014|241015|241016|241017|241018|241020|241021|241023|241025|241027|241028|241029|241030|241033|241034|241035|241036|241037|241039|241044|241047|241049|241051|241161|241162|241167|241168|241170|241171|241172|241173|241178|241182|241184|241185|241188|241190|241191|241194|241197|241198|241203|241208|241210|241211|241250|241251|241252|241254|241255|241258|241259|241260|241261|241263|241268|241270|241271|241274|241277|241278|241281|241283|241294|241298|241300|241303|241304|241309|241310|241313|241315|241318|241321|241322|241323|241334|241336|241344|241345|241346|241348|241349|241352|241358|241359|241362|241367|241369|241370|241372|241373|241382|241387|241389|241392|241393|241394|241395|241399|241400|241401|241406|241407|241408|241411|241412|241413|241414|241415|241419|241423|241425|241426|241430|241431|241432|241434|241435|241437|241438|241439|241440|241441|241442|241447|241448|241449|241450|241452|241454|241457|241458|241462|241465|241466|241467|241469|241470|241471|241472|241473|241475|241476|241477|241478|241479|241481|241482|241483|241484|241485|241486|241487|241490|241491|241495|241499|241503|241506|241507|241508|241509|241511|241512|241513|241514|241515|241516|241517|241518|241519|241525|241527|241572|241573|241574|241633|241636|241637|241638|241640|241641|241642|241645|241646|241648|241649|241655|241656|241659|241660|241663|241664|241670|241671|241672|241673|241674|241676|241678|241680|241681|241685|241687|241688|241689|241690|241693|241694|241699|241702|241704|241705|241710|241713|241715|241720|241723|241728|241729|241741|241742|241743|241744|241746|241748|241750|241752|241754|241759|241761|241762|241855|241856|241857|241898|241901|241903|241904|241907|241908|241909|241910|241912|241913|241914|241915|241917|241918|241920|241922|241923|241924|241925|241930|241931|241935|241936|241937|241940|241941|241943|241944|241945|241946|241947|241951|241952|241954|241955|241956|241957|241960|241961|241963|241964|241965|241966|241967|241968|241969|241971|241972|241974|241975|241976|241977|241978|241979|241980|241981|241982|241983|241984|241985|241986|241989|241991|241992|241993|241994|241995|241996|241997|241999|242000|242001|242002|242003|242004|242005|242008|242010|242011|242014|242016|242017|242018|242019|242021|242022|242146|242148|242150|242152|242153|242154|242155|242156|242158|242160|242161|242162|242164|242165|242166|242169|242172|242173|242174|242204|242206|242207|242208|242209|242213|242214|242215|242217|242218|242220|242224|242226|242228|242231|242232|242240|242242|242243|242244|242245|242246|242247|242249|242251|242253|242254|242257|242258|242269|242272|242273|242277|242278|242281|242282|242287|242291|242292|242294|242296|242299|242305|242306|242309|242311|242315|242318|242319|242320|242323|242326|242327|242329|242331|242336|242339|242342|242344|242345|242346|242349|242351|242352|242354|242355|242356|242358|242359|242362|242363|242364|242365|242367|242369|242370|242371|242372|242373|242374|242375|242376|242377|242379|242381|242382|242384|242386|242387|242389|242390|242391|242392|242393|242394|242395|242448|242450|242451|242453|242454|242455|242456|242458|242459|242460|242461|242462|242463|242467|242468|242469|242470|242472|242474|242478|242479|242480|242482|242484|242485|242487|242488|242489|242490|242596|242597|242598|242599|242601|242605|242606|242607|242608|242609|242611|242613|242614|242618|242622|242623|242624|242625|242627|242628|242629|242632|242633|242635|242637|242644|242645|242646|242647|242651|242652|242653|242661|242664|242670|242671|242675|242678|242681|242684|242685|242687|242688|242689|242691|242692|242693|242694|242698|242699|242700|242703|242708|242712|242714|242717|242718|242719|242720|242722|242723|242725|242728|242729|242731|242732|242736|242737|242738|242739|242743|242745|242746|242755|242758|242759|242760|242761|242767|242768|242770|242771|242774|242775|242777|242781|242782|242783|242784|242785|242788|242789|242791|242794|242798|242799|242800|242802|242804|242806|242808|242809|242810|242813|242817|242818|242828|242829|242830|242832|242833|242834|242835|242836|242837|242840|242843|242845|242846|242847|242849|242850|242851|242852|242853|242855|242856|242857|242858|242859|242860|242862|242863|242864|242865|242866|242867|242868|242869|242871|242873|242874|242875|242876|242877|242878|242880|242881|242883|242886|242889|242894|242897|242899|242900|242901|242902|242903|242908|242912|242913|242914|242916|242917|242918|242923|242924|242925|242927|242929|242930|242934|242937|242939|242942|242947|242955|242958|242959|242960|242961|242962|242964|242976|242978|242979|242982|242984|242986|242987|242988|242991|242992|242993|242994|243062|243063|243064|243065|243068|243070|243071|243072|243075|243076|243077|243083|243084|243085|243087|243088|243089|243092|243094|243095|243096|243097|243098|243099|243100|243101|243102|243103|243104|243105|243107|243108|243109|243110|243111|243112|243113|243114|243116|243117|243118|243121|243122|243123|243124|243125|243126|243127|243128|243129|243130|243131|243132|243133|243134|243135|243136|243138|243139|243140|243142|243143|243144|243149|243150|243152|243153|243154|243155|243156|243157|243158|243159|243160|243161|243162|243163|243166|243168|243169|243170|243172|243173|243174|243175|243176|243177|243178|243179|243180|243181|243182|243183|243184|243185|243186|243189|243190|243191|243192|243193|243194|243195|243196|243197|243198|243200|243202|243203|243204|243206|243208|243209|243210|243211|243214|243216|243217|243218|243220|243221|243223|243224|243227|243228|243229|243231|243232|243233|243234|243235|243236|243237|243238|243239|243240|243242|243243|243244|243245|243246|243248|243249|243250|243251|243253|243256|243257|243258|243259|243263|243264|243286|243288|243289|243290|243291|243292|243295|243296|243299|243300|243301|243302|243303|243305|243307|243308|243309|243310|243387|243388|243389|243394|243395|243399|243401|243402|243405|243407|243408|243409|243410|243411|243413|243414|243415|243416|243417|243418|243420|243425|243427|243428|243429|243431|243432|243433|243434|243435|243436|243437|243439|243440|243441|243442|243443|243444|243446|243447|243448|243451|243453|243454|243455|243456|243458|243459|243460|243462|243466|243469|243474|243478|243480|243481|243482|243484|243487|243490|243493|243495|243498|243500|243501|243510|243511|243515|243517|243519|243522|243524|243527|243528|243531|243534|243535|243536|243538|243539|243540|243541|243542|243650|243652|243653|243657|243659|243660|243661|243662|243663|243664|243667|243668|243669|243670|243671|243673|243674|243676|243678|243679|243680|243682|243683|243684|243688|243689|243691|243692|243694|243696|243698|243699|244085|244266|244267|244268|244269|244270|244274|244275|244323|244325|244332|244333|244334|244335|244336|244337|244338|244339|244366|244370|244372|244373|244374|244376|244377|244378|244381|244382|244384|244386|244389|244390|244392|244393|244394|244395|244398|244404|244406|244407|244409|244415|244416|244417|244418|244419|244420|244421|244422|244425|244426|244427|244432|244433|244435|244437|244439|244440|244441|244448|244449|244450|244452|244453|244454|244455|244456|244457|244459|244460|244492|244497|244545|244547|244548|244549|244550|244561|244562|244563|244564|244565|244567|244568|244572|244575|244577|244578|244579|244581|244583|244587|244589|244591|244592|244594|244596|244599|244601|244603|244604|244606|244607|244610|244612|244614|244615|244616|244617|244618|244622|244625|244627|244629|244631|244632|244633|244637|244638|244640|244641|244642|244644|244645|244647|244648|244649|244650|244651|244652|244654|244657|244658|244734|244752|244753|244759|244761|244763|244769|244831|244832|244843|244844|244846|244847|244850|244851|244852|244856|244943|244944|244945|244946|244947|244948|244949|244950|244951|244954|244955|244956|244957|244958|244959|244960|244962|244963|244964|244966|244973|244976|244977|244978|244979|245014|245015|245016|245017|245019|245022|245025|245029|245030|245031|245032|245036|245037|245039|245041|245044|245045|245047|245051|245052|245054|245055|245056|245057|245058|245060|245061|245064|245065|245067|245069|245070|245071|245072|245073|245074|245077|245078|245095|245122|245145|245147|245148|245149|245151|245153|245228|245229|245232|245233|245235|245240|245244|245245|245246|245253|246787|246789|246791|246794|246796|246797|246801|246802|246803|246805|246811|246812|246815|246821|246822|246823|246824|246825|246827|246830|246837|246838|246842|246851|246853|246922|246925|247074|247086|247087|247090|247220|247223|247224|247226|247227|247228|247229|247235|247236|247245|247248|247249|247250|247254|247256|247257|247258|247260|247272|247273|247275|247281|247286|247288|247294|247303|247305|247306|247307|247308|247309|247310|247311|247312|247313|247314|247439|247645|247646|247652|247653|247654|247655|247656|247664|247671|247676|247773|248489|248819|248823|248826|248828|248829|248830|248833|248834|248835|248838|248840|248841|248843|248844|248846|248847|248848|248852|248855|248857|248858|248860|248861|248863|248866|248867|248868|248869|248876|248877|248880|248881|248883|248888|248910|248911|248914|248921|248926|248944|248957|248989|248990|248997|249003|249013|249014|249029|249059|249064|249065|249071|249079|249091|249108|249129|249133|249137|249160|249163|249168|249171|249179|249181|249194|250542|250543|250715|250718|250719|250720|250721|250722|250724|250742|251099|251242|251487|251488|251491|251492|251493|251495|251496|251497|251499|251502|251504|251505|251937|251940|251942|253192|253193|253596|253598|253602|253604|253609|253611|253612|253669|253765|253766|253895|253896|253901|253988|253989|254243|254274|254275|254276|254453|254847|255116|255117|255118|255119|255120|255121|255425|255486|255488|255499|255501|255855|256302|256350|256353|256354|256356|256357|256773|257196|257599|259659|259660|259662|259664|259718|259738|259740|259741|259746|259799|259801|259802|259868|259871|259924|259928|259947|259948|259949|259952|259956|259957|259960|259964|259967|259969|259971|259972|259973|259993|259998|259999|260013|260042|260044|260045|260046|260047|260094|260096|260098|260099|260102|260108|260110|260154|260170|260172|260192|260193|260207|260252|260253|260256|260260|260356|260357|260360|260999|261002|261062|261066|261086|261091|261097|261099|261102|261103|261115|261118|261128|261131|261132|261133|261139|261140|261152|261158|261164|261165|261167|261169|261174|261175|261181|261191|261200|261201|261206|261213|261221|261222|261227|261228|261233|261237|261244|261245|261249|261251|261260|261278|261281|261285|261303|261310|261322|261335|261341|261344|261350|261351|261361|261362|261370|261384|261393|261395|261413|261415|261428|261437|261445|261447|261468|261487|261488|261515|261542|261546|261556|261557|261560|261566|261577|261578|261588|261597|261598|261625|261634|261647|261657|261660|261677|261687|261691|261713|261721|261739|261765|261791|261796|261801|261807|261808|261821|261827|261831|261845|261866|261884|261888|261919|261929|261962|261965|261973|261977|262005|262100|262105|262396|262800|262826|262828|262835|262839|262840|262841|262844|262845|262846|262850|262860|262863|262917|262921|262924|262927|262940|262951|262979|262981|262987|262988|262989|263987|264011|264074|264174|264436|264437|264443|264490|264496|264514|264571|264580|264583|264620|264638|264675|264690|264696|264769|264776|264844|264992|265013|265016|265126|265458|265578|265621|265808|265860|266100|266152|266177|267576|267769|268678|269252|270565|270566|271247|271670|271777|271973|274074|274513|275350|275419|277358|278160|278420|280504|280523|281945|281954|282701|282711|285273|285971|286670|286681|286740|286754|286759|287600|287607|287611|287660|287661|287665|287667|288986|288988|288993|289007|289366|289376|289830|289831|290191|291187|291322|291708|292136|292137|292138|292145|293581|294022|294554|294906|294910|294911|294920|294922|294923|294924|294929|294932|294935|294942|294946|295537|295561|295571|295699|295700|295707|296697|296698|297296|297301|298468|298606|300412|300418|300427|300428|300432|300433|301609|301619|303497|303688|303695|306559|308997|309444|309605|311450|311622|312240|312246|312249|313766|314892|315369|315392|315393|315500|315514|316331|316332|316333|316337|317044|317057|317503|317506|317507|318044|318057|318058|318274|318276|319512|319918|320054|320126|320128|320156|320419|321388|321659|321664|321673|321676|321678|321939|321940|321947|321953|322066|322068|322103|322400|322402|322407|323654|323749|323752|324088|324621|324627|324639|324937|327101|327399|327448|327449|327454|327770|328022|328447|328620|328850|328859|329574|329576|329579|329839|330108|331127|331228|331230|331238|331637|332444|332588|333311|334162|334173|334406|334409|334891|335896|336780|336792|336793|336799|337612|337726|338049|339496|339511|339850|339978|340074|340085|340849|340855|340856|340862|340863|341537|342258|342264|342274|342534|342586|342599|342603|342611|342618|342786|343564|343740|344034|344038|344043|344046|344098|345291|345292|345444|346687|346910|346913|346931|346932|347302|347982|348124|348581|349279|349281|349283|349371|351197|351285|352340|357087|357089|357090|357092|357093|357656|357660|357662|357669|357670|357672|357673|357674|357835|357877|357884|357887|357894|357895|357898|357901|357902|357906|357907|357915|357917|357923|357924|357927|357929|358342|358343|358347|358349|358364|358365|358697|358698|358699|358701|358703|358704|358706|358712|358713|358716|358718|358719|358720|358721|358722|358723|358726|358727|358730|358732|358738|358739|358742|358743|358744|358747|358748|358759|358760|358761|358765|358766|358767|358768|358769|358770|358771|358772|358773|358776|358778|358779|358783|358784|358788|358794|358795|358797|358799|358801|358807|358816|358822|358826|358827|358832|358833|358838|358839|358846|358850|358864|358882|358889|358892|358895|358896|358898|358901|358902|358904|358905|358906|358909|358910|358911|358913|358914|358915|358916|358917|358918|358919|358920|358922|358923|358928|358934|358939|358941|358950|358952|358953|358956|358958|358959|358961|358962|358964|358967|358973|358974|358978|358979|358981|359004|359005|359006|359203|359309|359363|359365|359501|359650|359807|359852|359961|359964|360059|360264|360335|360358|360361|360415|360472|360500|360507|360512|360712|360716|360833|360925|361009|361011|361012|361014|361218|361561|361566|361610|361856|361857|361862|361870|361883|361947|362213|362216|362217|362804|362896|362938|362940|363133|363184|363185|363213|363216|363264|363388|363389|363438|363442|363443|363449|363450|363451|363452|363455|363458|363462|363463|363477|363479|363482|363483|363484|363485|363488|363490|363494|363497|363498|363505|363512|363513|363516|363521|363523|363524|363525|363528|363531|363533|363534|363535|363536|363537|363538|363539|363541|363546|363548|363555|363559|363563|363564|363566|363567|363569|363570|363571|363573|364161|364229|364940|365103|365239|365242|365243|365250|365259|365260|365263|365273|365295|365300|365303|365316|365318|365323|365326|365328|365335|365336|365350|365353|365360|366131|366135|366137|366139|366141|366146|366149|366154|366157|366303|366305|366314|366318|366319|366324|366328|366336|366337|366345|366369|366376|366377|366381|366384|366388|366396|366405|366411|366418|366420|366424|366430|366450|366456|366472|366473|366475|366477|366479|366480|366494|366501|366514|366518|366519|366527|366530|366535|366547|366549|366554|366556|366559|366577|366581|366582|366585|366620|366635|366641|366651|366666|366675|366676|366677|366678|366683|366685|366692|366696|366700|366701|366707|366710|366712|366715|366719|366721|366723|366728|366736|366739|366741|366744|366745|366748|366750|366753|366762|366766|366767|366768|366770|366771|366772|366773|366774|366775|366776|366777|366783|366785|366786|366787|366788|366792|366795|366796|366799|366802|366805|366811|366815|366825|366828|366848|366851|366853|366854|366859|366864|366865|366866|366962|366964|366965|366969|366971|367095|367100|367119|367124|367126|367127|367130|367133|367147|367155|367162|367167|367180|367182|367336|367382|367390|367392|367393|367397|367399|367400|367402|367404|367405|367407|367408|367410|367412|367418|367423|367425|367426|367430|367431|367434|367435|367437|367440|367442|367446|367447|367449|367450|367459|367460|367461|367463|367465|367471|367485|367486|367488|367498|367506|367519|367524|367533|367537|367554|367564|367569|367578|367579|367582|367587|367588|367689|367699|367708|367738|367746|367752|367755|367756|367758|367761|367763|367764|367766|367774|367780|367782|367792|367794|367796|367797|367800|367807|367808|367815|367822|368039|368041|368044|368048|368057|368059|368062|368067|368068|368073|368079|368081|368082|368083|368086|368089|368091|368098|368104|368110|368111|368114|368115|368117|368119|368120|368132|368137|368141|368145|368147|368160|368176|368177|368181|368189|368191|368193|368194|368196|368406|368416|368420|368424|368428|368429|368432|368446|368462|368470|368622|368721|368730|368733|369073|369079|369082|369171|369181|369184|369189|369192|369196|369206|369210|369222|369230|369234|369237|369240|369243|369246|369247|369280|369292|369293|369295|369296|369299|369306|369311|369313|369348|369353|369364|369365|369369|369373|369374|369378|369379|369381|369387|369404|369406|369520|369523|369531|369533|369541|369543|369554|369557|369585|369587|369601|369603|369604|369674|369675|369813|369823|369828|369830|369833|369836|369838|369872|369886|369890|370044|370048|370050|370054|370055|370064|370070|370087|370094|370341|370345|370351|370353|370363|370370|370375|370376|370385|370470|370471|370486|370508|370521|370522|370547|370551|370554|370742|370743|370755|370785|370787|370840|370845|370936|370943|370950|370951|370954|370957|370999|371026|371027|371037|371041|371042|371046|371068|371071|371084|371085|371093|371098|371100|371105|371106|371109|371121|371128|371143|371161|371164|371166|371175|371176|371183|371188|371189|371191|371193|371194|371198|371205|371209|371210|371212|371221|371222|371224|371226|371232|371246|371258|371286|371302|371373|371416|371418|371419|371514|371516|371522|371527|371528|371533|371539|371540|371543|371544|371551|371552|371556|371558|371560|371566|371587|371671|371701|371704|371712|371737|371741|371754|371759|371767|371769|371775|371777|371795|371804|371807|371814|371815|371819|371822|371830|371842|371843|371847|371853|371855|371856|371857|371862|371865|371869|371871|371876|371881|371885|371896|371898|371900|371908|371911|371912|371923|371934|371936|371941|371951|371953|371955|371962|371965|371969|371970|371971|371973|371977|371978|371979|371982|371983|371984|371988|371989|371991|371996|372000|372001|372006|372007|372017|372020|372022|372029|372030|372035|372036|372042|372043|372049|372050|372051|372054|372058|372060|372066|372067|372072|372074|372075|372079|372080|372081|372082|372086|372088|372089|372090|372105|372110|372111|372117|372120|372121|372122|372126|372130|372132|372135|372144|372250|372342|372400|372403|372406|372409|372410|372413|372418|372420|372516|372649|372667|372672|372673|372678|372683|372685|372689|372706|372709|372718|372727|372732|372734|372736|372739|372740|372741|372744|372750|372756|372758|372759|372763|372775|372780|372784|372788|372790|372791|372794|372802|372815|372818|372820|372823|372828|372836|372926|372929|372933|372935|372939|372946|372950|372952|372960|372980|372999|373012|373020|373029|373036|373046|373062|373070|373207|373213|373216|373217|373348|373354|373356|373382|373393|373401|373418|373422|373423|373434|373436|373445|373449|373452|373460|373461|373464|373473|373478|373497|373506|373516|373523|373524|373540|373543|373555|373560|373564|373565|373652|373657|373664|373666|373670|373672|373673|373678|373679|373681|373689|373691|373692|373694|373695|373698|373700|373703|373706|373709|373712|373719|373720|373727|373730|373731|373734|373736|373739|373743|373745|373747|373750|373756|373758|373759|373767|373768|373771|373773|373774|373777|373784|373785|373787|373794|373801|373806|373814|373815|373833|373835|373843|373847|373851|373866|374043|374066|374082|374094|374101|374116|374117|374118|374126|374135|374159|374160|374167|374175|374176|374252|374255|374274|374282|374287|374438|374440|374443|374447|374449|374452|374457|374459|374461|374464|374467|374476|374488|374490|374494|374495|374505|374509|374511|374520|374522|374533|374667|374680|374681|374684|374685|374708|374710|374712|374725|374729|374737|374748|374751|374753|374762|374777|374782|374783|374784|374792|374796|374799|374805|374809|374815|374819|374825|374826|374828|374834|374835|374840|374854|374860|374918|374921|374922|374923|374924|374928|374931|374934|374941|374949|374950|374958|374959|374964|374972|375041|375046|375071|375072|375081|375088|375090|375096|375098|375101|375102|375103|375105|375106|375112|375115|375128|375163|375175|375198|375199|375241|375246|375247|375250|375251|375257|375264|375266|375268|375271|375274|375286|375289|375294|375298|375300|375310|375311|375318|375322|375326|375328|375333|375334|375354|375372|375375|375378|375390|375393|375404|375412|375425|375426|375429|375434|375438|375441|375443|375451|375514|375523|375524|375528|375534|375537|375539|375544|375547|375548|375549|375552|375555|375567|375569|375571|375574|375576|375577|375592|375598|375612|375614|375616|375674|375712|375721|375723|375726|375730|375732|375779|375787|375835|375841|375864|375867|375868|375946|375952|375957|375958|375961|375974|375976|375977|375978|375979|375980|375982|375985|375986|375987|375992|375993|375995|375997|375999|376005|376009|376012|376031|376032|376035|376036|376082|376093|376095|376097|376098|376101|376102|376110|376122|376124|376127|376133|376143|376148|376156|376158|376160|376162|376165|376166|376262|376268|376305|376318|376323|376324|376327|376329|376330|376336|376340|376342|376343|376346|376351|376385|376386|376387|376389|376397|376410|376412|376414|376416|376419|376420|376421|376423|376428|376435|376441|376447|376449|376459|376460|376466|376478|376540|376581|376602|376604|376607|376613|376616|376631|376672|376676|376680|376684|376704|376705|376707|376709|376737|376740|376747|376782|376786|376790|376791|376824|376829|376831|376834|376836|376844|376845|376851|376860|376890|376896|376898|376902|376904|376908|376910|376914|377033|377035|377037|377041|377048|377072|377073|377090|377091|377096|377097|377110|377121|377132|377140|377149|377154|377170|377178|377183|377213|377215|377249|377260|377271|377274|377277|377278|377285|377287|377288|377294|377299|377307|377318|377323|377358|377362|377364|377365|377378|377380|377385|377394|377402|377422|377423|377425|377442|377447|377452|377456|377460|377635|377647|377655|377659|377662|377664|377665|377667|377670|377701|377708|377715|377719|377720|377725|377730|377734|377739|377747|377759|377760|377763|377769|377773|377775|377776|377780|377784|377794|377809|377811|377813|377839|377903|377905|377909|377922|377929|377931|377935|377936|377940|377942|377945|377947|377955|377960|377975|377980|377992|378032|378037|378042|378053|378057|378061|378085|378101|378123|378126|378131|378230|378236|378243|378261|378268|378278|378283|378285|378289|378296|378301|378537|378538|378546|378550|378562|378567|378571|378577|378581|378582|378586|378590|378592|378593|378599|378601|378604|378605|378621|378623|378649|378668|378677|378678|378681|378694|378701|378703|378724|378727|378736|378745|378749|378751|378753|378759|378781|378798|378799|378800|379022|379024|379030|379036|379040|379044|379045|379051|379055|379206|379207|379212|379215|379219|379220|379222|379229|379238|379255|379260|379622|379624|379626|379627|379628|379629|379630|379631|379634|379637|379638|379640|379642|379644|379647|379649|379651|379652|379654|379655|379658|379660|379825|379827|379828|379829|379831|379832|379835|379837|379839|379840|379846|380277|380449|380453|380455|380458|380461|380462|380464|380471|384402|389257|389258|389259|389260|389261|389262|389263|389264|389265|389266|389267|389268|389269|389270|389271|389272|389273|389274|389275|389276|389277|389278|389279|389280|389281|389282|389283|389284|389527|389696|390005|390037|390085|390089|390137|390209|390486|390688|390861|390864|390875|390877|390878|390886|390887|390888|390890|390892|390893|390894|390898|390899|390900|390901|390904|390908|390909|390914|390915|390917|390922|390923|390925|390928|390930|390931|390940|390947|390961|390964|390975|390982|391106|391108|391111|391116|391119|391130|391134|391139|391146|391156|391162|391164|391181|391200|391202|391269|391278|391286|391289|391291|391304|391307|391321|391324|391325|391329|391331|391335|391336|391337|391342|391354|391358|391367|391380|391385|391388|391391|391443|391446|391450|391461|391476|391496|391502|391517|392307|392309|392324|392331|392337|392341|392342|392346|392357|392395|392404|392411|392418|392419|392424|392435|392437|392440|392441|392449|392451|392463|392498|392499|392504|392511|392517|392519|392521|392524|392527|392529|392531|392538|392540|392543|392548|392556|392566|392571|392575|392577|392584|392587|392589|392594|392597|392601|392606|392607|392608|392613|392617|392621|392624|392627|392635|392650|392670|392672|392681|392685|392686|392690|392692|392696|392697|392698|392699|392700|392701|392702|392703|392709|392710|392718|392721|392730|392731|392735|392736|392738|392739|392747|392753|392755|392759|392760|392763|392767|392768|392774|392777|392779|392780|392793|392795|392800|392804|392805|392810|392813|392814|392817|392820|392825|392827|392829|392830|392832|392838|392840|392841|392842|392843|392848|392849|392851|392853|392855|392859|392860|392863|392867|392869|392876|392878|392879|392886|392888|392889|392892|392894|392898|392900|392902|392904|392907|392908|392909|392910|392912|392919|392922|392925|392926|392927|392928|392931|392934|392936|392937|392939|392945|392946|392947|392951|392952|392954|392956|392957|392958|392964|392966|392968|392969|392971|392974|392977|392982|392983|392984|392987|392988|392989|392990|392991|392993|392995|392998|392999|393000|393001|393003|393005|393007|393008|393009|393014|393019|393022|393024|393027|393029|393033|393034|393036|393040|393041|393042|393043|393044|393045|393046|393047|393051|393052|393054|393055|393057|393058|393062|393065|393069|393073|393074|393077|393078|393083|393084|393087|393089|393094|393095|393097|393101|393103|393108|393115|393117|393119|393122|393123|393124|393126|393127|393130|393132|393137|393139|393140|393148|393154|393155|393161|393164|393168|393170|393174|393176|393182|393184|393187|393192|393193|393196|393199|393201|393206|393207|393214|393216|393237|393246|393251|393253|393265|393268|393280|393284|393290|393295|393305|393318|393323|393336|393344|393348|393350|393356|393364|393366|393376|393377|393381|393382|393399|393422|393425|393428|393440|393442|393444|393459|393462|393464|393465|393470|393472|393478|393480|393482|393486|393488|393490|393493|393494|393496|393497|393512|393513|393526|393527|393528|393531|393535|393536|393539|393543|393548|393551|393564|393569|393654|393655|393663|393670|393676|393680|393681|393687|393690|393696|393697|393699|393700|393701|393703|393707|393708|393714|393715|393718|393719|393721|393722|393723|393725|393727|393728|393729|393736|393738|393741|393755|393832|393833|393834|393843|393850|393857|393864|393885|393887|393889|393892|393893|393895|393901|393902|393904|393905|393907|393908|393910|393911|393913|393914|393915|393918|393919|393920|393927|393929|393931|393936|393937|393942|393948|393949|393958|393964|393969|393980|393988|393996|394006|394036|394038|394041|394049|394071|394073|394081|394086|394098|394101|394104|394105|394107|394108|394120|394126|394131|394137|394138|394144|394150|394159|394160|394161|394165|394168|394170|394172|394175|394178|394184|394186|394188|394189|394193|394199|394201|394202|394203|394204|394218|394223|394227|394228|394230|394231|394234|394240|394243|394246|394251|394253|394257|394258|394267|394269|394276|394278|394285|394289|394290|394291|394294|394302|394312|394316|394317|394319|394321|394322|394324|394327|394329|394330|394331|394332|394333|394334|394335|394338|394341|394343|394345|394346|394347|394349|394350|394351|394353|394354|394355|394359|394363|394367|394368|394371|394374|394377|394382|394387|394389|394390|394391|394394|394395|394397|394399|394400|394401|394405|394408|394410|394411|394412|394413|394417|394418|394420|394421|394424|394425|394427|394429|394430|394432|394434|394435|394439|394441|394445|394446|394447|394448|394452|394455|394456|394459|394460|394462|394463|394465|394470|394471|394474|394475|394476|394480|394481|394482|394483|394485|394486|394488|394489|394492|394493|394494|394495|394504|394508|394509|394515|394516|394520|394521|394523|394525|394529|394530|394532|394534|394535|394540|394543|394545|394547|394548|394549|394551|394561|394564|394565|394567|394573|394577|394581|394585|394586|394590|394593|394594|394596|394597|394598|394602|394604|394605|394607|394609|394610|394614|394617|394622|394623|394625|394627|394632|394633|394636|394639|394640|394643|394644|394646|394647|394649|394652|394663|394665|394666|394667|394668|394669|394670|394671|394672|394673|394674|394675|394676|394677|394678|394679|394680|394681|394682|394684|394685|394687|394688|394690|394692|394694|394695|394697|394698|394699|394700|394701|394702|394703|394704|394706|394707|394708|394711|394712|394716|394717|394719|394721|394727|394729|394734|394735|394737|394738|394741|394743|394744|394750|394753|394754|394765|394772|394776|394777|394781|394782|394784|394787|394790|394792|394794|394795|394796|394798|394800|394801|394804|394806|394809|394812|394825|394830|394837|394843|394845|394856|394857|394858|394859|394860|394861|394862|394863|394864|394865|394868|394869|394871|394873|394875|394876|394877|394878|394880|394882|394884|394885|394888|394892|394893|394901|394907|394908|394909|394911|394912|394914|394916|394917|394923|394924|394926|394927|394929|394930|394932|394934|394935|394939|394942|394946|394947|394948|394950|394951|394952|394955|394960|394961|394969|394970|394974|394976|394982|394988|394989|394990|394993|394995|394997|395003|395004|395011|395029|395034|395035|395037|395039|395040|395043|395048|395067|395078|395088|395116|395160|395181|395185|395189|395195|395198|395200|395201|395205|395209|395211|395214|395215|395217|395225|395232|395234|395237|395242|395243|395250|395254|395256|395257|395260|395261|395262|395268|395273|395279|395280|395281|395283|395285|395288|395291|395292|395295|395297|395299|395301|395303|395304|395311|395315|395318|395319|395326|395332|395339|395355|395363|395366|395373|395381|395383|395389|395391|395394|395462|395463|395478|395488|395496|395503|395509|395513|395515|395517|395524|395525|395527|395531|395533|395570|395576|395581|395586|395589|395590|395593|395732|395736|395744|395745|395750|395752|395756|395769|395770|395790|395896|395899|395928|395932|395935|395940|395941|395953|395955|395958|395963|395971|395976|395978|395992|395999|396000|396001|396017|396023|396025|396037|396039|396044|396048|396052|396058|396061|396062|396064|396076|396087|396094|396095|396117|396118|396293|396297|396307|396313|396326|396333|396343|396344|396349|396350|396358|396360|396364|396366|396372|396375|396384|396398|396500|396503|396507|396511|396515|396521|396535|396536|396555|396559|396562|396567|396568|396575|396578|396580|396602|396613|396617|396622|396623|396633|396634|396635|396637|396694|396697|396701|396705|396708|396713|396715|396717|396720|396721|396725|396732|396752|396761|396769|396776|396784|396789|396825|396833|396841|396864|396868|396869|396875|396906|396910|396914|396921|396925|396927|396931|396932|396933|396934|396935|396936|396938|396939|396941|396942|396943|396954|396955|396958|396960|396962|396967|396971|396973|396974|396976|396979|396981|396984|396987|396988|396991|396994|396999|397014|397022|397023|397026|397031|397034|397037|397041|397052|397056|397058|397060|397062|397064|397065|397074|397075|397078|397082|397092|397098|397101|397103|397126|397130|397134|397146|397150|397163|397167|397168|397175|397179|397181|397182|397188|397198|397200|397205|397209|397210|397211|397212|397216|397218|397222|397224|397226|397236|397238|397244|397245|397246|397251|397252|397253|397258|397262|397264|397265|397266|397267|397268|397269|397271|397272|397275|397279|397281|397282|397284|397286|397287|397290|397294|397296|397298|397304|397314|397317|397335|397343|397348|397349|397351|397359|397361|397364|397365|397366|397376|397382|397390|397394|397402|397411|397412|397415|397429|397432|397433|397436|397438|397441|397442|397443|397444|397445|397448|397452|397453|397454|397456|397457|397461|397466|397469|397473|397474|397475|397479|397480|397481|397482|397484|397487|397488|397489|397492|397495|397498|397500|397501|397502|397503|397505|397507|397508|397510|397517|397520|397521|397524|397531|397532|397533|397535|397537|397560|397570|397574|397586|397594|397605|397606|397608|397614|397616|397617|397619|397623|397626|397628|397629|397636|397637|397645|397646|397648|397649|397650|397651|397653|397655|397656|397658|397660|397661|397662|397664|397665|397669|397671|397672|397674|397676|397679|397680|397683|397685|397686|397687|397688|397695|397696|397697|397699|397703|397704|397705|397706|397709|397710|397716|397718|397721|397727|397730|397735|397738|397745|397750|397754|397755|397758|397769|397770|397772|397778|397781|397784|397786|397788|397791|397792|397796|397797|397800|397802|397803|397806|397808|397809|397811|397812|397813|397814|397817|397819|397820|397822|397823|397825|397826|397829|397830|397831|397833|397845|397849|397850|397851|397852|397854|397855|397859|397861|397862|397864|397865|397870|397871|397872|397873|397875|397876|397879|397880|397882|397884|397885|397887|397889|397891|397893|397895|397896|397897|397900|397901|397903|397905|397906|397907|397909|397913|397914|397919|397920|397921|397922|397925|397926|397928|397929|397933|397936|397938|397941|397942|397943|397944|397945|397948|397949|397951|397954|397955|397960|397962|397965|397969|397972|397974|397980|397981|397983|397985|397991|397992|397996|397999|398002|398005|398008|398011|398012|398015|398016|398019|398022|398026|398027|398028|398029|398030|398032|398034|398035|398036|398037|398038|398041|398043|398044|398047|398049|398051|398057|398063|398068|398070|398076|398077|398078|398093|398105|398110|398113|398121|398133|398134|398137|398141|398143|398154|398162|398163|398166|398168|398170|398172|398173|398178|398183|398185|398190|398191|398195|398204|398209|398210|398211|398214|398221|398223|398225|398228|398230|398236|398238|398239|398241|398243|398244|398248|398249|398252|398257|398258|398260|398261|398266|398270|398271|398272|398274|398276|398282|398283|398284|398285|398286|398287|398288|398290|398292|398293|398294|398297|398299|398300|398302|398308|398311|398313|398314|398322|398323|398324|398326|398327|398329|398331|398332|398333|398334|398335|398338|398340|398341|398343|398350|398351|398352|398353|398354|398355|398356|398358|398359|398360|398361|398367|398369|398370|398371|398374|398377|398378|398379|398382|398383|398384|398391|398394|398395|398396|398400|398401|398408|398412|398424|398434|398439|398442|398450|398452|398454|398463|398467|398468|398472|398473|398474|398484|398496|398500|398503|398505|398508|398513|398519|398530|398539|398541|398542|398547|398548|398550|398561|398570|398573|398574|398576|398582|398603|398604|398610|398615|398643|398653|398672|398673|398674|398675|398690|398694|398696|398698|398702|398712|398713|398715|398733|398739|398740|398743|398750|398751|398756|398768|398775|398776|398778|398779|398782|398784|398785|398789|398796|398797|398800|398801|398804|398805|398807|398808|398819|398822|398825|398829|398839|398851|398857|398861|398863|398864|398870|398873|398877|398887|398888|398893|398894|398905|398906|398908|398910|398915|398924|398934|398935|398941|398942|398952|398954|398964|398973|398977|398979|398983|398987|398996|399004|399005|399007|399009|399011|399016|399019|399028|399037|399043|399044|399045|399046|399052|399062|399064|399129|399131|399133|399136|399137|399150|399152|399155|399156|399158|399161|399162|399172|399173|399179|399184|399190|399191|399192|399193|399197|399198|399199|399202|399203|399205|399207|399211|399216|399221|399225|399227|399230|399232|399234|399239|399248|399269|399270|399276|399283|399292|399294|399296|399299|399301|399305|399306|399308|399314|399319|399324|399326|399327|399331|399333|399334|399336|399338|399342|399347|399351|399354|399363|399364|399367|399369|399374|399378|399381|399387|399396|399400|399402|399406|399409|399411|399418|399427|399429|399430|399435|399437|399441|399455|399458|399460|399462|399465|399467|399468|399473|399474|399477|399485|399486|399493|399495|399496|399497|399500|399505|399513|399523|399524|399526|399529|399537|399541|399542|399543|399546|399547|399549|399554|399557|399559|399571|399583|399629|399646|399649|399651|399659|399665|399686|399697|399714|399715|399745|399752|399753|399754|399758|399761|399765|399771|399773|399774|399775|399778|399780|399782|399789|399791|399792|399794|399801|399802|399803|399805|399807|399809|399811|399813|399814|399819|399822|399823|399824|399826|399832|399835|399842|399845|399847|399854|399861|399864|399865|399867|399869|399870|399871|399878|399880|399881|399886|399887|399888|399889|399892|399893|399898|399899|399900|399902|399905|399906|399914|399927|399929|399947|399949|399951|399952|399954|399955|399957|399961|399963|399964|399966|399967|399969|399970|399971|399977|399978|399980|399985|399987|399988|399989|399992|399996|400000|400001|400002|400004|400005|400008|400009|400011|400013|400014|400015|400016|400021|400024|400025|400027|400029|400032|400035|400036|400041|400042|400044|400049|400050|400051|400059|400060|400061|400067|400068|400069|400077|400085|400092|400094|400102|400103|400105|400110|400112|400114|400115|400116|400117|400122|400123|400124|400125|400130|400132|400135|400137|400147|400150|400153|400154|400166|400168|400184|400191|400198|400202|400204|400241|400249|400300|400301|400319|400328|400334|400335|400338|400340|400352|400353|400354|400356|400361|400367|400372|400377|400378|400385|400388|400400|400403|400404|400413|400433|400434|400435|400437|400438|400441|400442|400445|400446|400448|400449|400452|400455|400461|400468|400473|400475|400477|400489|400501|400504|400507|400514|400551|400562|400573|400575|400586|400591|400596|400597|400602|400606|400611|400616|400617|400621|400625|400628|400635|400637|400638|400641|400645|400649|400650|400651|400652|400654|400663|400675|400678|400679|400681|400684|400695|400713|400716|400721|400722|400724|400726|400727|400728|400730|400746|400750|400757|400759|400764|400768|400772|400774|400777|400778|400779|400784|400787|400789|400790|400791|400792|400793|400794|400800|400801|400803|400808|400812|400816|400819|400821|400826|400827|400831|400832|400833|400836|400837|400838|400839|400843|400844|400848|400859|400861|400862|400864|400866|400873|400881|400884|400887|400888|400910|400923|400924|400926|400933|400935|400937|400938|400940|400942|400943|400944|400948|400951|400952|400953|400956|400959|400963|400964|400965|400966|400967|400969|400971|400976|400978|400979|400983|400985|400989|400992|400993|400995|400996|400999|401000|401001|401004|401005|401007|401010|401011|401012|401014|401017|401021|401024|401025|401027|401028|401029|401032|401038|401043|401049|401050|401056|401060|401063|401064|401070|401071|401075|401077|401081|401083|401085|401089|401094|401095|401101|401102|401109|401114|401115|401118|401122|401129|401133|401137|401141|401142|401146|401150|401155|401156|401165|401171|401200|401201|401204|401207|401211|401239|401243|401244|401251|401254|401257|401263|401264|401269|401270|401271|401273|401275|401279|401280|401282|401284|401285|401286|401292|401293|401294|401295|401296|401297|401298|401300|401301|401303|401305|401306|401307|401308|401312|401316|401320|401325|401328|401336|401339|401344|401369|401383|401394|401397|401401|401409|401414|401415|401418|401432|401433|401438|401441|401445|401449|401452|401455|401464|401468|401469|401470|401473|401474|401480|401481|401491|401495|401498|401501|401505|401513|401517|401518|401523|401524|401530|401531|401534|401535|401542|401545|401548|401550|401553|401554|401556|401557|401560|401561|401563|401564|401572|401577|401578|401580|401581|401582|401585|401586|401587|401589|401590|401592|401593|401597|401599|401602|401605|401608|401611|401614|401621|401629|401631|401634|401635|401637|401645|401653|401657|401664|401667|401671|401675|401680|401683|401685|401695|401696|401698|401709|401712|401716|401721|401724|401725|401726|401728|401730|401733|401734|401735|401739|401741|401743|401744|401746|401747|401753|401754|401759|401764|401765|401767|401768|401770|401771|401772|401773|401774|401775|401776|401778|401780|401781|401785|401786|401788|401793|401795|401796|401797|401799|401800|401801|401803|401804|401806|401816|401819|401820|401822|401823|401830|401837|401841|401842|401843|401845|401846|401847|401848|401850|401851|401853|401854|401855|401857|401862|401866|401872|401873|401878|401879|401881|401882|401883|401884|401890|401892|401893|401901|401906|401914|401915|401926|401932|401936|401937|401961|401971|401977|401980|401982|401985|401986|401997|402001|402005|402006|402007|402009|402012|402013|402017|402020|402022|402023|402024|402026|402027|402032|402037|402038|402039|402041|402042|402047|402048|402049|402054|402056|402059|402061|402062|402063|402071|402072|402073|402074|402076|402084|402089|402092|402093|402094|402095|402096|402097|402100|402108|402112|402119|402136|402145|402150|402153|402155|402158|402163|402164|402166|402167|402170|402172|402175|402178|402182|402183|402187|402188|402192|402193|402203|402205|402208|402209|402210|402211|402212|402215|402216|402217|402224|402226|402230|402235|402238|402243|402244|402245|402246|402251|402252|402254|402256|402263|402265|402269|402270|402271|402272|402274|402278|402280|402281|402285|402289|402290|402291|402293|402295|402296|402297|402298|402299|402300|402301|402305|402307|402312|402315|402317|402318|402319|402320|402322|402324|402325|402326|402328|402340|402342|402346|402348|402350|402353|402354|402356|402371|402377|402378|402379|402383|402387|402388|402390|402391|402394|402397|402398|402400|402405|402406|402410|402415|402416|402419|402422|402423|402425|402428|402429|402433|402434|402435|402437|402438|402448|402452|402453|402460|402465|402469|402470|402475|402476|402479|402481|402482|402488|402489|402490|402495|402497|402498|402499|402500|402512|402525|402532|402533|402534|402536|402542|402545|402548|402551|402552|402556|402557|402559|402560|402562|402563|402564|402565|402567|402568|402569|402571|402572|402574|402577|402578|402580|402581|402582|402588|402590|402595|402596|402601|402606|402607|402609|402611|402613|402615|402623|402626|402637|402640|402642|402643|402644|402646|402648|402649|402650|402651|402653|402655|402659|402661|402664|402667|402669|402671|402677|402680|402681|402686|402688|402693|402694|402696|402699|402701|402710|402718|402721|402729|402730|402732|402736|402740|402741|402742|402744|402746|402747|402748|402750|402752|402758|402759|402764|402765|402766|402767|402770|402774|402776|402777|402778|402781|402786|402789|402792|402798|402802|402803|402805|402806|402812|402814|402816|402818|402819|402823|402830|402837|402839|402847|402850|402851|402859|402861|402862|402865|402866|402867|402875|402876|402877|402878|402879|402880|402881|402882|402883|402887|402890|402891|402893|402894|402897|402898|402899|402900|402905|402907|402908|402909|402912|402913|402915|402916|402917|402918|402920|402921|402922|402923|402930|402931|402933|402934|402938|402941|402942|402951|402957|402958|402960|402961|402963|402964|402965|402966|402968|402971|402976|402977|402978|402989|402994|402998|403001|403005|403008|403010|403011|403013|403014|403015|403020|403021|403024|403025|403027|403029|403032|403033|403036|403038|403039|403040|403041|403045|403046|403047|403048|403049|403050|403051|403052|403053|403056|403057|403058|403060|403066|403070|403071|403078|403079|403080|403081|403085|403088|403092|403093|403096|403101|403102|403105|403108|403110|403111|403115|403125|403126|403127|403129|403141|403144|403145|403155|403156|403158|403162|403165|403166|403169|403178|403181|403182|403183|403186|403188|403190|403193|403194|403198|403207|403218|403225|403231|403296|403305|403307|403310|403312|403313|403315|403321|403325|403329|403331|403342|403346|403349|403352|403357|403359|403367|403373|403375|403382|403383|403386|403388|403393|403399|403401|403402|403403|403404|403406|403407|403408|403412|403413|403416|403419|403420|403422|403423|403424|403425|403426|403428|403429|403433|403435|403436|403437|403438|403440|403441|403443|403445|403446|403447|403448|403449|403451|403452|403453|403454|403455|403456|403459|403460|403461|403462|403463|403465|403468|403469|403473|403474|403475|403477|403479|403480|403481|403482|403484|403485|403486|403487|403488|403490|403492|403494|403495|403500|403507|403508|403509|403512|403515|403516|403517|403520|403521|403522|403524|403527|403528|403530|403532|403534|403538|403539|403541|403542|403543|403546|403547|403549|403552|403558|403560|403561|403562|403563|403569|403575|403576|403581|403588|403591|403613|403621|403622|403627|403631|403632|403633|403634|403640|403641|403648|403651|403660|403675|403677|403687|403773|403780|403782|403785|403789|403790|403793|403796|403807|403808|403819|403821|403823|403825|403829|403831|403832|403834|403836|403839|403840|403842|403843|403845|403849|403852|403853|403864|403865|403869|403872|403876|403877|403880|403883|403884|403885|403886|403890|403891|403892|403894|403895|403896|403898|403904|403905|403907|403910|403913|403915|403916|403918|403922|403924|403925|403928|403929|403930|403931|403932|403934|403935|403936|403938|403939|403940|403942|403944|403946|403976|403979|403986|403994|404005|404030|404032|404036|404039|404043|404063|404065|404081|404087|404313|404316|404319|404321|404326|404329|404332|404333|404334|404335|404337|404342|404345|404347|404348|404349|404352|404353|404355|404357|404359|404360|404361|404363|404364|404367|404368|404372|404377|404378|404379|404382|404384|404389|404394|404599|404604|404632|404700|404709|404710|404716|404981|405126|405128|405181|405183|405184|405188|405189|405195|405198|405199|405200|405201|405203|405204|405205|405206|405207|405208|405558|405559|405560|405561|405562|405563|405566|405568|405569|405570|405572|405577|405578|405579|405581|405582|405583|405584|405585|405586|405588|405594|405595|405596|405597|405598|405600|405603|405604|405605|405607|405608|405741|405743|405744|405748|405749|405750|405751|405752|405754|405755|405756|405759|405761|405762|405763|405765|405766|405767|405768|405769|405771|405772|405776|405780|405781|405782|405783|405784|405786|405787|405788|405790|405791|405792|405793|405797|405799|405800|405801|405802|405803|405806|405807|405809|405810|405812|405816|405817|405818|405825|405826|405829|405830|405831|405832|405833|405834|405836|405837|405838|405839|405843|405844|405845|405846|405847|405848|405850|405851|405854|405856|405861|405862|405864|405865|405866|405869|405870|405874|405878|405879|405880|405881|405883|405885|405886|405887|405890|405892|405893|405894|405895|405896|405897|405898|405900|405901|405903|405905|405906|405907|405909|405910|405911|405914|405916|405917|405919|405923|405924|405925|405926|405927|405928|405929|405930|405931|405932|405934|405936|405937|405939|405940|405942|405943|405947|405949|405950|405951|405952|405953|405959|405960|405961|405962|405963|405964|405965|405966|405967|405972|405973|405975|405976|405978|406057|406059|406062|406069|406074|406075|406190|406192|406194|406197|406198|406203|406207|406209|406210|406211|406213|406214|406216|406220|406221|406222|406224|406227|406233|406234|406236|406238|406240|406246|406247|406249|406250|406251|406255|406258|406259|406262|406342|406345|406479|406480|406481|406485|406488|406490|406491|406492|406493|406499|406500|406501|406502|406503|406504|406505|406506|406508|406509|406513|406515|406518|406519|406520|406522|406523|406525|406526|406528|406529|406532|406534|406535|406537|406542|406544|406546|406547|406550|406551|406552|406553|406555|406558|406560|406564|406565|406566|406567|406569|406575|406576|406577|406578|406579|406580|406581|406582|406583|406584|406585|406588|406590|406594|406595|406597|406598|406599|406600|406739|406740|406962|407080|407082|407085|407088|407090|407092|407093|407098|407102|407103|407104|407106|407108|407165|407167|407168|407169|407170|407171|407175|407176|407177|407179|407180|407181|407184|407185|407186|407188|407189|407190|407192|407196|407197|407198|407201|407203|407204|407205|407206|407207|407209|407210|407211|407212|407214|407217|407218|407221|407222|407224|407225|407226|407227|407229|407232|407234|407457|407459|407461|407462|407463|407464|407465|407467|407470|407472|407473|407475|407483|407484|407485|407489|407491|407492|407496|407497|407498|407499|407570|407649|407651|407654|407655|407659|407661|407664|407665|407673|407732|407733|407737|407738|407744|407749|407751|407754|407758|407759|407769|407770|407780|407856|407927|407929|407931|407932|407933|407934|407935|407938|407939|407941|407944|407945|407949|407952|407954|407955|407956|407957|407959|407960|407963|407964|407966|407973|407976|407977|407978|407982|407985|407987|407990|407991|407993|407994|407997|408002|408003|408004|408005|408010|408011|408012|408040|408042|408044|408047|408049|408051|408054|408055|408056|408060|408062|408063|408064|408066|408067|408072|408076|408078|408082|408083|408084|408085|408086|408087|408088|408089|408090|408091|408095|408096|408097|408099|408101|408102|408103|408104|408107|408108|408109|408110|408111|408113|408114|408117|408118|408119|408120|408121|408122|408126|408127|408133|408135|408138|408139|408141|408142|408143|408144|408148|408153|408155|408157|408160|408161|408162|408165|408169|408172|408176|408178|408179|408180|408182|408184|408185|408187|408190|408191|408192|408194|408195|408196|408200|408203|408204|408205|408210|408213|408214|408216|408221|408224|408225|408229|408230|408232|408234|408235|408236|408239|408240|408242|408243|408244|408245|408246|408247|408249|408251|408252|408254|408255|408257|408258|408259|408260|408262|408265|408270|408271|408405|408406|408412|408553|408561|408565|408569|408581|408585|408590|408591|408592|408724|408725|408726|408824|408825|408827|408828|408837|408839|408843|408844|408852|408855|408858|408862|408865|408866|408872|408873|408877|408880|408883|408884|408885|408887|408888|408889|408892|408896|408898|408899|408902|408905|408909|408910|408913|408914|408919|408921|408923|408931|408932|408934|408935|408937|408941|408942|408943|408946|408947|408948|408949|408951|408952|408953|408954|408955|408956|408959|408960|408965|408966|408967|408970|408977|408978|408980|408982|408985|408986|408987|408988|408990|408995|408996|408997|408999|409000|409001|409003|409006|409008|409010|409017|409019|409020|409030|409032|409393|409474|409488|409513|409514|409517|409518|409519|409522|409523|409525|409526|409528|409531|409532|409533|409535|409536|409539|409541|409547|409548|409551|409552|409554|409555|409556|409557|409559|409560|409564|409569|409573|409574|409670|409672|409674|409675|409676|409679|409681|409683|409686|409688|409690|409693|409694|409695|409696|409698|409699|409700|409702|409704|409706|409708|409709|409711|409712|409714|409715|409838|409860|409871|409875|409890|409891|409893|409894|409896|409900|409902|409906|409907|409908|409909|409913|409940|409941|409942|409946|409950|409955|409957|409959|409962|409967|409968|409973|409976|409982|409986|409988|409989|409998|409999|410002|410003|410006|410007|410008|410013|410014|410015|410018|410020|410023|410024|410025|410027|410030|410034|410090|410095|410097|410098|410102|410103|410106|410108|410112|410113|410114|410115|410118|410119|410120|410122|410125|410127|410128|410130|410133|410134|410136|410138|410139|410142|410145|410148|410152|410154|410155|410156|410157|410159|410163|410164|410180|410182|410188|410193|410199|410204|410249|410253|410256|410257|410258|410259|410263|410265|410266|410267|410269|410274|410278|410283|410284|410285|410379|410380|410382|410388|410389|410392|410393|410394|410395|410423|410438|410439|410440|410441|410442|410443|410451|410453|410454|410457|410458|410461|410462|410463|410464|410466|410468|410469|410675|410678|410683|410696|410697|410926|410927|410928|410930|410931|410932|410934|410935|410937|410938|410942|410945|410947|410948|410950|410953|410956|410957|410958|410960|410965|410967|410968|410970|410972|410973|410974|410975|413206|413325|413327|413356|413533|415247|415544|415548|415562|416231|416232|416234|416235|416240|416241|416244|416246|416248|416249|416256|416257|416267|416268|416272|416274|416277|416278|416282|416290|416294|416296|416299|416301|416305|416306|416308|416312|416315|416318|416322|416323|416330|416333|416334|416335|416337|416339|416340|416343|416344|416345|416346|416347|416348|416351|416353|416354|416356|416360|416362|416363|416366|416369|416370|416377|416382|416384|416388|416389|416392|416393|416396|416402|416404|416405|416411|416412|416413|416415|416419|416424|416429|416434|416436|416437|416438|416439|416444|416448|416453|416456|416457|416458|416459|416464|416466|416468|416474|416478|416482|416484|416490|416492|416494|416495|416496|416497|416498|416501|416503|416505|416509|416511|416514|416521|416522|416527|416529|416531|416534|416937|416938|416941|416943|416945|416949|416954|416961|416964|416969|416972|416981|419003|419299|419300|419301|419302|419303|419304|419306|419307|419309|419310|419311|419312|419313|419314|419315|419316|419317|419318|419319|419320|419321|419322|419323|419324|419325|419326|419327|419328|419329|419330|419331|419332|419333|419335|419336|419338|419339|419340|419341|419342|419344|419345|419346|419347|419348|419349|419350|419351|419352|419353|419355|419356|419357|419359|419360|419361|419363|419364|419365|419366|419367|419368|419369|419370|419371|419372|419374|419375|419377|419378|419379|419380|419381|419382|419383|419384|419385|419386|419387|419388|419389|419390|419392|419393|419394|419395|419396|419397|419398|419399|419400|419401|419402|419403|419404|419405|419406|419407|419408|419410|419412|419413|419414|419415|419416|419417|419418|419419|419420|419421|419422|419423|419424|419425|419426|419427|419428|419429|419430|419431|419432|419433|419434|419435|419436|419437|419438|419439|419440|419441|419442|419443|419444|419445|419446|419447|419448|419449|419450|419451|419452|419453|419454|419455|419456|419457|419458|419459|419460|419461|419462|419463|419464|419465|419466|419467|419468|419469|419470|419471|419472|419473|419474|419475|419476|419477|419478|419479|419480|419481|419482|419483|419484|419485|419486|419487|419488|419489|419490|419491|419492|419493|419494|419495|419496|419497|419498|419499|419500|419501|419502|419503|419504|419505|419506|419507|419508|419509|419510|419511|419512|419513|419514|419515|419516|419517|419518|419519|419520|419521|419522|419523|419524|419525|419526|419527|419528|419529|419530|419531|419532|419533|419534|419535|419536|419537|419538|419539|419540|419541|419542|419543|419544|419545|419546|419547|419548|419549|419550|419551|419552|419553|419555|419556|419557|419558|419559|419560|419561|419562|419563|419564|419565|419566|419567|419568|419569|419570|419571|419572|419573|419574|419575|419576|419577|419578|419579|419580|419581|419582|419583|419584|419585|419586|419587|419588|419589|419590|419591|419592|419593|419594|419595|419596|419597|419598|419599|419600|419601|419602|419603|419604|419605|419606|419607|419608|419609|419610|419611|419612|419613|419614|419615|419616|419617|419618|419619|419620|419621|419622|419623|419624|419625|419626|419627|419628|419629|419630|419631|419632|419633|419634|419635|419636|419637|419638|419639|419640|419641|419642|419643|419644|419645|419646|419647|419648|419649|419650|419651|419652|419653|419654|419655|419656|419657|419658|419659|419660|419661|419662|419663|419664|419665|419666|419667|419668|419669|419670|419671|419672|419673|419674|419675|419676|419677|419678|419679|419680|419681|419682|419683|419684|419685|419686|419687|419688|419689|419690|419691|419692|419693|419694|419695|419696|419697|419698|419699|419700|419701|419702|419703|419704|419705|419706|419707|419708|419709|419710|419711|419712|419713|419714|419715|419716|419717|419718|419719|419720|419721|419722|419723|419724|419725|419726|419727|419728|419729|419730|419731|419732|419733|419734|419735|419736|419737|419738|419739|419740|419741|419742|419743|419744|419745|419746|419747|419748|419749|419750|419751|419752|419753|419754|419755|419756|419757|419758|419759|419760|419761|419762|419763|419764|419765|419766|419767|419768|419769|419770|419771|419772|419773|419774|419775|419776|419777|419778|419779|419780|419781|419782|419783|419784|419785|419786|419787|419788|419789|419790|419791|419792|419793|419794|419795|419796|419797|419798|419799|419800|419801|419802|419803|419804|419805|419806|419807|419808|419809|419810|419811|419812|419813|419814|419815|419816|419817|419818|419819|419820|419821|419822|419823|419824|419825|419826|419827|419828|419829|419830|419831|419832|419833|419834|419835|419836|419837|419838|419839|419840|419841|419842|419843|419844|419845|419846|419847|419848|419849|419850|419851|419852|419853|419854|419855|419856|419857|419858|419859|419860|419861|419862|419863|419864|419865|419866|419867|419868|419869|419870|419871|419872|419873|419874|419875|419876|419877|419878|419879|420437|420438|420439|420440|420441|420442|420443|420444|420445|420446|420447|420448|420449|420450|420451|420452|420453|420454|420455|420456|420457|420458|420459|420460|420461|420462|420463|420464|420465|420466|420467|420468|420469|420470|420471|420473|420474|420475|420476|420477|420478|420479|420480|420481|420482|420483|420484|420485|420486|420487|420488|420489|420490|420491|420492|420493|420494|420495|420496|420497|420498|420499|420500|420501|420502|420503|420504|420505|420506|420507|420508|420509|420510|420511|420512|420513|420514|420515|420516|420517|420518|420519|420520|420521|420522|420523|420524|420525|420526|420527|420528|420529|420530|420531|420532|420533|420534|420535|420536|420537|420538|420539|420540|420541|420542|420543|420544|420545|420546|420547|420548|420549|420550|420551|420552|420553|420554|420555|420556|420557|420558|420559|420560|420561|420562|420563|420564|420565|420566|420567|420568|420569|420570|420571|420572|420573|420574|420575|420576|420577|420578|420579|420580|420581|420582|420583|420584|420585|420586|420587|420588|420589|420590|420591|420592|420593|420594|420595|420596|420597|420598|420599|420600|420601|420602|420603|420604|420605|420606|420607|420608|420609|420610|420611|420612|420613|420614|420615|420616|420617|420618|420619|420620|420621|420622|420623|420624|420625|420626|420627|420628|420629|420630|420631|420632|420633|420634|420635|420636|420637|420638|420639|420640|420641|420642|420643|420644|420645|420646|420647|420648|420649|420650|420651|420652|420653|420654|420655|420656|420657|420658|420659|420660|420661|420662|420663|420664|420665|420666|420667|420668|420669|420670|420671|420672|420673|420674|420675|420676|420677|420678|420679|420680|420681|420682|420683|420684|420685|420686|420687|420688|420689|420690|420691|420692|420693|420694|420695|420696|420697|420698|420699|420700|420701|420702|420704|420705|420706|420707|420708|420709|420710|420711|420712|420713|420714|420715|420716|420717|420718|420719|420720|420721|420722|420723|420724|420725|420726|420727|420728|420729|420730|420731|420732|420733|420734|420735|420736|420737|420738|420739|420740|420741|420742|420743|420744|420745|420746|420747|420748|420749|420750|420751|420752|420753|420754|420755|420756|420757|420758|420759|420760|420761|420762|420763|420764|420765|420766|420767|420768|420769|420770|420771|420772|420773|420774|420775|420776|420777|420778|420779|420780|420781|420782|420783|420784|420787|420788|420789|420790|420791|420792|420793|420794|420795|420796|420797|420798|420799|420800|420801|420802|420803|420804|420805|420806|420807|420808|420809|420810|420811|420812|420813|420814|420815|420816|420817|420818|420819|420820|420821|420822|420823|420824|420825|420826|420827|420828|420829|420830|420831|420832|420833|420834|420835|420836|420837|420838|420999|421000|421001|421002|421003|421004|421005|421006|421007|421008|421009|421010|421011|421012|421013|421014|421015|421016|421017|421018|421019|421020|421021|421022|421023|421024|421025|421026|421027|421028|421030|421031|421032|421033|421034|421035|421036|421037|421038|421039|421040|421041|421042|421043|421044|421045|421046|421047|421048|421049|421050|421051|421052|421053|421054|421055|421056|421057|421058|421059|421060|421062|421063|421064|421065|421066|421067|421068|421069|421070|421071|421072|421073|421074|421075|421076|421077|421078|421079|421080|421081|421082|421083|421084|421085|421086|421087|421088|421089|421090|421091|421092|421093|421094|421095|421096|421097|421098|421099|421100|421101|421102|421103|421104|421105|421106|421107|421108|421109|421110|421111|421112|421113|421114|421115|421116|421117|421118|421120|421121|421122|421123|421124|421125|421126|421127|421128|421129|421130|421131|421132|421133|421134|421135|421136|421137|421138|421139|421140|421141|421142|421507|421819|421821|421961|422156|422190|423239|423243|423245|424497|424705|424708|424712|424715|424727|424758|424765|424776|424778|424796|424801|424805|424809|424814|424822|424823|424829|424834|424851|424868|424878|424879|425096|425120|425138|425168|425175|425178|425187|425193|425874|425903|426153|426155|426213|426217|426277|426563|427132|427133|427152|427155|427163|427171|427176|427179|427181|427182|427183|427184|427185|427187|427206|427208|427222|427224|427242|427257|427260|427262|427264|427271|427305|427311|427314|427325|427326|427327|427333|427340|427343|427346|427352|427359|427365|427367|427368|427370|427378|427380|427384|427385|427387|427391|427393|427394|427396|427398|427400|427404|427409|427414|427415|427417|427419|427422|427438|427439|427527|427541|427542|427547|427554|427558|427560|427565|427568|427574|428061|428062|428667|428670|428671|428672|429167|429493|429494|429496|429749|429996|429997|429998|430119|430126|430553|430557|432026|432047|432370|432394|432415|432419|432491|432493|432494|432500|432501|432502|432503|432506|432507|432508|432511|432512|432515|432516|432519|432521|432522|432523|432525|432529|432530|432531|432534|432535|432537|432538|432559|432560|432561|432568|432570|432573|432575|432579|432585|432587|432588|432590|432601|432643|432646|432648|432650|432652|432653|432654|432655|432657|432658|432663|432667|432712|432715|432717|432718|432721|432722|432724|432728|432730|432731|432732|432734|432735|432737|432761|432763|432764|432765|432766|432768|432771|432777|432782|432787|432790|432791|432792|432795|432796|432798|432800|432802|432804|432805|432806|432809|432811|432812|432819|432821|432822|432828|432830|432834|432835|432878|432880|432881|432882|432883|432890|432891|432892|432895|432896|432901|432905|432906|432910|432916|432919|432924|432926|432927|432929|432930|432935|432936|432938|432941|432946|432953|432954|432966|432968|432969|432970|432971|433124|433262|433271|433272|433370|433376|433405|433702|433984|434038|434061|434084|434086|434942|434943|434944|434945|434946|434947|434948|434949|434950|434951|434952|434953|434954|434955|434956|434957|434958|434959|434960|434961|434962|434963|434964|434965|434966|434967|434968|434969|434970|434971|434972|434973|434974|434975|434976|434977|434978|434979|434980|434981|434982|434983|434984|434985|434986|434987|434988|434989|434990|434991|434992|434993|434994|434995|434996|434997|434998|434999|435000|435001|435002|435003|435004|435005|435006|435007|435008|435009|435010|435011|435012|435013|435014|435015|435016|435017|435018|435019|435020|435021|435022|435023|435024|435025|435026|435027|435028|435029|435030|435031|435032|435033|435034|435035|435036|435037|435038|435039|435040|435041|435042|435043|435044|435045|435046|435047|435048|435049|435050|435051|435052|435053|435054|435055|435056|435057|435058|435059|435060|435061|435062|435063|435064|435065|435066|435067|435068|435069|435070|435071|435072|435073|435074|435075|435076|435077|435078|435079|435080|435081|435082|435083|435084|435085|435086|435087|435088|435089|435090|435091|435092|435093|435094|435095|435096|435097|435098|435099|435100|435101|435102|435103|435104|435105|435106|435107|435108|435109|435110|435111|435112|435113|435114|435115|435116|435117|435118|435119|435120|435121|435122|435123|435124|435125|435126|435127|435129|435130|435131|435132|435133|435134|435135|435136|435137|435138|435139|435140|435141|435142|435143|435144|435145|435146|435147|435148|435149|435150|435151|435153|435154|435155|435156|435157|435158|435159|435160|435161|435162|435163|435164|435165|435166|435167|435168|435169|435170|435171|435172|435173|435174|435175|435176|435177|435178|435179|435180|435181|435182|435183|435184|437910|438036|438244|439582|441321|441487|441488|441798|442664|442858|443157|443254|443256|443258|443261|443263|443264|443266|443267|443268|443319|443417|443419|443421|443422|443423|443424|443425|443501|443782|444046|444050|444146|444147|444148|444308|444388|444464|444538|444540|444542|444543|444666|444667|444668|444669|444670|444672|444676|444704|444706|444711|444715|444716|444717|444719|444855|445140|445144|445471|445522|445523|445529|445530|445546|445548|445549|445600|445603|445604|445726|445735|445838|445840|445849|445901|446179|446383|446384|446385|446386|446387|446389|446390|446392|446393|447263|447286|447305|447326|447349|447380|447384|447390|447397|447403|447405|447417|447483|447485|447501|447515|447517|447547|447678|447679|447706|447713|447718|447916|447922|447932|447962|447967|447969|447973|447975|447990|448005|448007|448010|448018|448021|448023|448036|448042|448049|448052|448059|448064|448066|448085|448133|448143|448157|448166|448171|448179|448185|448191|448193|448200|448296|448316|448324|448329|448330|448335|448339|448341|448348|448352|450330|450333|450352|450355|450373|450377|450380|450463|450477|450481|450485|450486|450489|450504|450511|450515|450521|450523|450591|450599|450601|450603|450605|450613|450629|450630|450645|450647|450650|450653|450656|450657|450660|450664|450681|450688|450689|450691|450700|450731|450733|450819|450855|450893|450952|450955|450975|450984|451001|451003|451014|451016|451024|451025|451026|451028|451031|451040|451044|451048|451063|451066|451070|451073|451075|451079|451084|451088|451089|451092|451096|451103|451108|451111|451114|451120|451121|451123|451128|451131|451134|451141|451142|451156|451159|451165|451172|451176|451177|451178|451179|451181|451184|451193|451199|451201|451202|451208|451211|451213|451221|451223|451228|451233|451237|451240|451250|451251|451254|451259|451260|451261|451265|451266|451268|451269|451272|451273|451276|451277|451278|451287|451291|451293|451294|451296|451297|451298|451300|451309|451310|451313|451316|451317|451318|451320|451322|451327|451328|451332|451335|451338|451339|451346|451347|451350|451351|451352|451354|451355|451356|451361|451363|451364|451365|451369|451370|451371|451372|451379|451380|451381|451383|451386|451390|451395|451398|451401|451411|451412|451414|451415|451419|451423|451425|451427|451429|451432|451433|451439|451442|451445|451447|451448|451451|451456|451460|451470|451471|451474|451475|451478|451479|451481|451482|451484|451485|451493|451495|451498|451500|451501|451503|451504|451507|451509|451510|451514|451515|451518|451522|451523|451524|451526|451532|451537|451544|451547|451550|451551|451553|451555|451560|451568|451569|451573|451574|451575|451576|451579|451582|451587|451589|451594|451596|451601|451603|451605|451609|451615|451620|451622|451624|451630|451633|451653|451658|451664|451667|451670|451673|451675|451676|451678|451696|451698|451702|451755|451764|451766|451789|451838|451841|451846|451849|451863|451864|451866|451869|451876|451929|451963|452079|452087|452097|452101|452102|452106|452108|452120|452121|452125|452143|452148|452341|452343|452351|452354|452369|452371|452376|452382|452387|452389|452394|452400|452402|452407|452411|452433|452453|452458|452469|452477|452482|452528|452548|452563|452568|452578|452612|452620|452627|452645|452649|452665|452672|452676|452681|452693|452699|452700|452710|452712|452715|452717|452719|452721|452724|452730|452731|452732|452733|453013|453015|453017|453028|453029|453039|453044|453046|453048|453052|453054|453058|453060|453064|453065|453067|453068|453074|453076|453077|453083|453091|453095|453096|453098|453104|453167|453172|453174|453293|453309|453311|453336|453346|453351|453360|453366|453369|453377|453382|453388|453393|453396|453410|453423|453432|453445|453451|453488|453528|453540|453551|453553|453590|453619|453623|453640|453653|453655|453657|453685|453690|453711|453728|453757|453786|453809|453815|453826|453828|453829|453838|453842|453847|453853|453859|453862|453875|453876|453889|453897|453899|453900|453901|453910|453914|453915|453916|453922|453924|453926|453929|453930|453939|453955|453961|453972|453981|453983|454005|454016|454019|454026|454028|454031|454036|454037|454042|454043|454045|454048|454049|454050|454052|454057|454063|454068|454069|454070|454071|454075|454081|454083|454085|454089|454090|454093|454101|454103|454105|454106|454107|454113|454114|454119|454120|454122|454123|454128|454130|454136|454145|454146|454154|454155|454157|454166|454171|454182|454183|454184|454185|454188|454198|454200|454209|454213|454218|454221|454227|454229|454232|454233|454237|454240|454243|454248|454250|454252|454254|454255|454260|454262|454265|454268|454269|454277|454278|454280|454281|454288|454292|454294|454299|454302|454304|454318|454322|454332|454346|454355|454361|454380|454381|454383|454385|454386|454387|454391|454394|454398|454403|454405|454408|454410|454417|454420|454423|454425|454427|454433|454434|454437|454438|454439|454440|454444|454446|454450|454452|454454|454458|454462|454463|454464|454468|454471|454476|454478|454480|454482|454483|454484|454485|454487|454488|454489|454491|454492|454495|454496|454506|454511|454512|454516|454518|454520|454521|454522|454523|454524|454525|454526|454527|454529|454530|454532|454537|454538|454539|454542|454543|454545|454546|454547|454551|454554|454555|454557|454560|454561|454562|454563|454565|454566|454570|454576|454578|454579|454581|454582|454583|454584|454589|454590|454592|454593|454594|454596|454604|454608|454618|454626|454629|454640|454641|454650|454662|454667|454693|454695|454702|454708|454713|454715|454725|454735|454736|454744|454747|454753|454762|454767|454801|454812|454822|454830|454851|454873|454876|454881|454883|454885|454886|454888|454889|454891|454892|454893|454900|454902|454903|454904|454905|454908|454912|454913|454914|454917|454919|454922|454925|454927|454930|454934|454941|454942|454943|454945|454949|454954|454955|454956|454959|454961|454962|454971|454975|454983|454988|454989|454991|454994|454997|455011|455031|455055|455061|455064|455065|455077|455090|455095|455097|455102|455118|455127|455128|455136|455138|455143|455145|455149|455151|455152|455161|455164|455165|455172|455182|455185|455186|455191|455204|455206|455219|455222|455224|455230|455240|455243|455254|455257|455258|455261|455263|455269|455270|455274|455275|455284|455289|455290|455292|455293|455297|455302|455306|455308|455311|455315|455318|455321|455323|455324|455326|455332|455506|455508|455516|455519|455526|455533|455543|455548|455556|455560|455577|455598|455601|455611|455614|455726|455732|455734|455768|455786|455792|455795|455805|455806|455815|455855|455859|455870|455874|455983|455993|455999|456011|456033|456044|456054|456127|456128|456132|456134|456136|456137|456147|456151|456168|456171|456205|456235|456247|456252|456264|456285|456300|456301|456313|456315|456319|456387|456389|456393|456397|456403|456405|456418|456420|456424|456442|456449|456457|456467|456475|456534|456541|456563|456566|456568|456587|456589|456599|456635|456685|456687|456689|456691|456696|456708|456710|456715|456723|456725|456752|456770|456774|456783|456794|456817|456826|456828|456852|456858|456860|456866|456946|456948|456967|456968|456976|456990|456992|457035|457037|457068|457079|457091|457099|457104|457108|457110|457112|457143|457155|457157|457179|457207|457210|457228|457242|457251|457260|457275|457285|457292|457314|457325|457334|457344|457345|457356|457373|457417|457419|457443|457452|457459|457460|457471|457480|457491|457496|457497|457505|457822|457825|457831|457842|457845|457848|457863|457881|457889|457891|457897|457905|457994|458000|458010|458031|458035|458037|458045|458048|458057|458059|458074|458092|458093|458095|458544|458559|458564|458566|458579|458584|458586|458588|458589|458590|458592|458611|458614|458620|458621|458623|458627|458628|458633|458634|458635|458657|458658|458663|458666|458670|458673|458679|458685|458691|458694|458700|458709|458711|458714|458753|458755|458989|458996|458999|459001|459004|459006|459014|459016|459019|459030|459038|459043|459053|459058|459062|459067|459068|459070|459071|459076|459077|459079|459081|459085|459088|459092|459097|459099|459100|459102|459103|459105|459110|459112|459115|459118|459136|459160|459169|459174|459346|459382|459388|459393|459403|459406|459408|459414|459420|459423|459426|459434|459449|459450|459452|459453|459459|459462|459469|459471|459473|459475|459477|459479|459495|459501|459530|459550|459573|459580|459584|459592|459605|459606|459617|459622|459642|459650|459660|459675|459694|459704|459706|459712|459720|459723|459748|459753|459757|459765|459774|459775|459789|459794|459798|459801|459804|459816|459831|459833|459834|459839|459840|459845|459853|459854|459856|459857|459859|459866|459869|459870|459871|459879|459882|459885|459886|459901|459928|459937|459940|459947|459954|459955|459956|459961|459969|459970|459973|459980|459990|459995|459998|460000|460008|460009|460013|460021|460023|460025|460029|460032|460058|460074|460222|460233|460234|460235|460237|460240|460241|460242|460243|460247|460255|460256|460268|460271|460272|460275|460278|460281|460285|460291|460293|460295|460298|460300|460304|460306|460309|460310|460313|460316|460318|460319|460333|460335|460341|460351|460353|460355|460378|460380|460470|460471|460472|460476|460481|460483|460484|460485|460489|460491|460492|460493|460494|460495|460496|460500|460502|460505|460507|460508|460513|460514|460516|460518|460520|460521|460522|460523|460525|460528|460529|460531|460533|460536|460543|460551|460562|460563|460565|460566|460567|460569|460570|460572|460573|460577|460580|460582|460586|460592|460593|460594|460595|460599|460601|460603|460604|460611|460612|460618|460621|460625|460626|460628|460630|460632|460637|460648|460652|460654|460655|460660|460665|460668|460670|460672|460676|460677|460678|460680|460681|460683|460684|460689|460690|460692|460693|460694|460696|460697|460698|460705|460707|460708|460709|460711|460712|460713|460714|460717|460718|460721|460727|460728|460730|460733|460736|460738|460745|460746|460747|460750|460752|460758|460763|460768|460770|460771|460773|460775|460777|460779|460782|460789|460791|460792|460794|460798|460799|460800|460805|460806|460813|460814|460816|460822|460829|460830|460843|460844|460845|460846|460848|460849|460859|460860|460861|460864|460880|460881|460883|460886|460891|460912|460918|460921|460925|460928|460956|460962|460970|460983|460995|461002|461005|461012|461024|461025|461028|461031|461035|461036|461037|461042|461044|461050|461051|461055|461057|461060|461064|461067|461073|461076|461087|461088|461099|461101|461102|461116|461126|461143|461144|461155|461161|461177|461206|461216|461223|461228|461239|461247|461250|461261|461263|461271|461273|461278|461279|461289|461291|461293|461296|461307|461309|461311|461313|461320|461329|461378|461380|461382|461395|461401|461405|461416|461425|461429|461437|461446|461447|461457|461461|461462|461464|461465|461469|461473|461480|461483|461488|461500|461506|461507|461515|461517|461522|461524|461525|461526|461528|461529|461530|461538|461539|461542|461543|461544|461549|461555|461557|461563|461565|461568|461578|461593|461599|461603|461612|461615|461645|461656|461659|461676|461695|461701|461721|461735|461736|461742|461783|461785|461801|461812|461832|461845|461859|461868|461872|461874|461877|461879|461882|461889|461891|461899|461905|461938|461947|461956|461964|461966|461968|461971|461974|461978|461997|461999|462013|462030|462035|462039|462040|462043|462051|462069|462070|462072|462113|462168|462185|462186|462196|462200|462201|462202|462208|462223|462228|462229|462232|462241|462244|462245|462251|462254|462261|462263|462266|462267|462277|462358|462374|462393|462416|462451|462469|462485|462490|462493|462495|462502|462524|462571|462587|462601|462607|462620|462637|462646|462653|462659|462665|462673|462676|462677|462679|462682|462688|462693|462695|462697|462698|462701|462713|462719|462722|462723|462724|462733|462740|462752|462757|462759|462764|462766|462771|462774|462777|462778|462781|462799|462805|462809|462812|462815|462820|462821|462822|462824|462827|462833|462837|462839|462843|462844|462851|462857|462858|462863|462864|462865|462866|462895|462899|462906|462916|462918|462920|462922|462933|462945|462953|462955|462958|462972|462981|462986|462996|463001|463007|463014|463024|463025|463036|463040|463045|463049|463068|463088|463093|463115|463133|463135|463137|463155|463157|463171|463190|463199|463209|463215|463231|463232|463241|463242|463258|463261|463265|463298|463317|463343|463363|463366|463398|463401|463404|463421|463422|463426|463427|463430|463454|463466|463481|463485|463487|463496|463498|463504|463505|463506|463507|463512|463513|463522|463529|463535|463547|463550|463554|463555|463560|463561|463570|463593|463601|463605|463606|463608|463620|463631|463632|463634|463636|463639|463641|463642|463643|463646|463653|463656|463663|463664|463665|463666|463671|463673|463677|463678|463681|463684|463685|463688|463691|463696|463697|463698|463702|463707|463708|463709|463711|463712|463715|463716|463718|463721|463724|463727|463737|463760|463761|463766|463769|463775|463780|463783|463790|463793|463799|463809|463815|463819|463820|463823|463825|463827|463830|463833|463834|463835|463840|463862|463865|463868|463879|463887|463891|463892|463894|463896|463901|463902|463910|463913|463914|463915|463916|463920|463923|463924|463989|463998|464199|464216|464217|464227|464241|464243|464256|464260|464261|464280|464307|464319|464322|464329|464341|464343|464360|464373|464378|464382|464392|464393|464395|464407|464411|464431|464432|464435|464436|464442|464447|464450|464451|464454|464464|464469|464472|464480|464495|464499|464514|464557|464560|464569|464570|464572|464574|464577|464579|464581|464584|464585|464595|464601|464608|464612|464615|464624|464625|464626|464628|464633|464634|464635|464643|464644|464645|464647|464653|464654|464658|464660|464662|464666|464667|464668|464669|464674|464675|464676|464681|464682|464687|464692|464698|464700|464701|464702|464703|464705|464707|464709|464711|464712|464714|464718|464727|464729|464731|464733|464735|464738|464741|464743|464747|464748|464751|464754|464756|464757|464766|464773|464774|464777|465140|465151|465153|465168|465186|465197|465200|465254|465262|465269|465270|465290|465292|465293|465311|465313|465318|465322|465325|465331|465336|465337|465340|465355|465386|465387|465413|465414|465421|465422|465423|465427|465444|465446|465450|465455|465456|465459|465461|465463|465472|465474|465479|465480|465487|465488|465490|465494|465496|465500|465503|465504|465514|465515|465520|465525|465532|465538|465543|465546|465549|465550|465554|465562|465567|465568|465573|465574|465588|465590|465592|465603|465608|465614|465615|465708|465713|465718|465719|465721|465752|465764|465809|465815|465819|465831|465832|465838|465847|465851|465852|465853|465854|465860|465864|465867|465868|465877|465884|465888|465899|465905|465908|465911|465915|465917|465922|465931|465934|465936|465939|465962|465967|465988|465992|465994|465998|466000|466015|466026|466029|466030|466031|466034|466039|466051|466054|466055|466057|466060|466066|466073|466076|466084|466089|466094|466097|466098|466102|466105|466111|466114|466118|466119|466122|466126|466131|466138|466141|466145|466146|466148|466151|466152|466159|466163|466164|466165|466166|466173|466176|466178|466184|466187|466188|466190|466198|466200|466203|466206|466207|466210|466215|466216|466217|466219|466223|466225|466226|466233|466240|466242|466247|466249|466252|466253|466256|466257|466258|466259|466261|466268|466269|466270|466272|466275|466277|466278|466279|466281|466282|466283|466285|466290|466297|466301|466303|466312|466316|466346|466348|466355|466358|466372|466377|466379|466383|466393|466394|466395|466398|466399|466404|466410|466411|466412|466413|466415|466425|466431|466438|466439|466451|466473|466482|466494|466497|466499|466506|466509|466510|466511|466521|466523|466525|466527|466528|466529|466530|466535|466537|466539|466542|466547|466551|466555|466562|466566|466568|466574|466575|466577|466579|466584|466585|466594|466601|466602|466612|466625|466627|466629|466636|466638|466639|466644|466650|466654|466664|466671|466679|466690|466697|466720|466725|466730|466732|466735|466741|466748|466754|466777|466780|466786|466787|466800|466819|466834|466839|466854|466855|466861|466863|466874|466881|466882|466883|466886|466888|466903|466904|466909|466915|466922|466932|466936|466938|466941|466952|466955|467064|467068|467075|467078|467082|467090|467095|467103|467104|467107|467111|467113|467117|467121|467129|467135|467141|467146|467147|467150|467154|467156|467158|467160|467165|467169|467172|467174|467175|467177|467180|467184|467187|467189|467195|467199|467205|467217|467221|467225|467227|467229|467231|467234|467236|467237|467247|467250|467271|467275|467276|467287|467306|467315|467316|467329|467333|467335|467336|467338|467349|467353|467356|467358|467365|467371|467377|467381|467387|467390|467392|467397|467409|467410|467413|467417|467420|467427|467428|467432|467435|467440|467442|467444|467447|467452|467453|467456|467464|467468|467472|467473|467477|467493|467495|467496|467507|467508|467509|467511|467515|467517|467519|467524|467529|467530|467531|467534|467541|467542|467545|467546|467547|467548|467550|467553|467554|467555|467557|467561|467562|467564|467566|467567|467568|467576|467584|467585|467588|467591|467592|467593|467597|467599|467601|467607|467611|467615|467619|467620|467624|467631|467636|467640|467644|467650|467655|467658|467670|467675|467676|467687|467700|467705|467711|467718|467722|467725|467735|467736|467739|467740|467744|467751|467755|467757|467772|467774|467775|467778|467782|467793|467797|467801|467805|467809|467826|467830|467831|467843|467882|467888|467894|467896|467897|467903|467910|467911|467918|467922|467927|467929|467939|467944|467950|467952|467954|467955|467960|467963|467977|467978|467982|467984|467985|467986|467989|467991|467994|468003|468004|468008|468010|468011|468012|468014|468017|468022|468023|468026|468027|468030|468033|468034|468035|468036|468038|468039|468043|468044|468045|468047|468048|468052|468056|468058|468060|468061|468062|468065|468069|468075|468080|468087|468090|468091|468092|468098|468105|468109|468115|468119|468126|468128|468129|468136|468138|468140|468143|468145|468147|468171|468198|468228|468232|468233|468236|468240|468243|468246|468249|468250|468252|468258|468259|468267|468268|468273|468276|468280|468282|468284|468289|468298|468307|468309|468311|468312|468314|468316|468319|468321|468329|468331|468335|468336|468338|468339|468342|468345|468346|468347|468348|468350|468354|468364|468365|468366|468367|468371|468373|468376|468377|468379|468381|468387|468389|468390|468391|468392|468393|468398|468400|468407|468410|468412|468413|468415|468425|468428|468429|468440|468443|468445|468448|468453|468458|468459|468462|468466|468473|468485|468486|468489|468490|468491|468498|468499|468505|468506|468521|468526|468540|468543|468555|468561|468568|468579|468587|468589|468599|468622|468627|468631|468636|468653|468655|468662|468668|468676|468686|468687|468695|468700|468705|468725|468734|468736|468737|468738|468750|468759|468766|468835|468855|468856|468861|468863|468877|468906|468913|468941|468942|468948|468959|468966|468977|468982|468983|468989|468990|468994|468998|469024|469037|469056|469069|469071|469074|469083|469107|469108|469110|469111|469115|469117|469118|469121|469124|469127|469129|469132|469134|469136|469137|469147|469155|469156|469158|469160|469167|469170|469177|469178|469180|469181|469188|469191|469192|469194|469201|469205|469209|469213|469214|469218|469220|469233|469236|469248|469253|469257|469258|469261|469266|469268|469275|469281|469290|469292|469294|469308|469312|469333|469340|469350|469366|469376|469381|469386|469389|469393|469396|469398|469517|469522|469529|469537|469545|469551|469570|469571|469573|469577|469580|469581|469585|469589|469594|469597|469598|469606|469607|469623|469630|469634|469635|469640|469649|469655|469659|469660|469668|469671|469672|469682|469683|469702|469703|469765|469788|469789|469796|469798|469805|469808|469810|469811|469814|469967|469980|469982|470000|470008|470009|470013|470017|470023|470027|470028|470033|470038|470042|470045|470047|470048|470049|470051|470053|470055|470065|470070|470079|470082|470087|470088|470093|470095|470100|470109|470111|470117|470124|470129|470130|470133|470140|470143|470147|470155|470162|470177|470184|470194|470199|470207|470210|470220|470236|470239|470242|470273|470279|470281|470286|470317|470320|470327|470386|470387|470399|470402|470405|470415|470419|470421|470426|470429|470491|470618|470634|470636|470651|470659|470661|470668|470670|470677|470694|470713|470750|470917|470938|470951|470957|470973|470983|470990|470993|471023|471028|471053|471139|471143|471185|471216|471222|471242|471383|471384|471389|471403|471405|471413|471414|471416|471419|471429|471433|471441|471476|471488|471493|471801|471821|471829|471842|471845|471859|471860|471864|471874|471879|471886|471890|471893|471895|471902|471906|472262|472263|472264|472265|472266|472267|472268|472269|472270|472271|472272|472273|472274|472275|472276|472277|472278|472279|472280|472281|472282|472283|472284|472285|472286|472287|472288|472289|472290|472291|472292|472293|472294|472295|472296|472297|472298|472299|472300|472301|472302|472303|472304|472305|472306|472307|472308|472309|472310|472311|472312|472313|472314|472315|472316|472317|472318|472319|472320|472321|472322|472323|472324|472325|472326|472327|472328|472329|472330|472331|472332|472333|472334|472335|472336|472337|472338|472339|472340|472341|472342|472343|472344|472345|472346|472347|472348|472349|472350|472351|472352|472353|472354|472355|472356|472357|472358|472359|472360|472361|472362|472363|472364|472365|472366|472367|472368|472369|472370|472371|472372|472373|472374|472375|472376|472377|472378|472379|472380|472381|472382|472383|472384|472385|472386|472387|472388|472389|472390|472391|472392|472393|472394|472395|472396|472397|472398|472399|472400|472401|472402|472403|472404|472405|472406|472407|472408|472409|472410|472411|472412|472413|472414|472415|472416|472417|472418|472419|472420|472421|472422|472423|472424|472425|472426|472427|472428|472429|472430|472431|472432|472433|472434|472435|472436|472437|472438|472439|472440|472441|472442|472443|472444|472445|472446|472447|472448|472449|472450|472451|472452|472453|472454|472455|472456|472457|472458|472459|472460|472461|472462|472463|472464|472465|472466|472467|472468|472469|472470|472471|472472|472473|472474|472475|472476|472477|472478|472479|472480|472481|472482|472483|472484|472485|472486|472487|472488|472489|472490|472491|472492|472493|472494|472495|472496|472497|472498|472499|472500|472501|472502|472503|472504|472505|472506|472507|472508|472509|472510|472511|472512|472513|472514|472515|472516|472517|472518|472519|472520|472521|472522|472523|472524|472525|472526|472527|472528|472529|472530|472531|472532|472533|472534|472535|472536|472537|472538|472539|472540|472541|472542|472543|472544|472545|472546|472547|472548|472549|472550|472551|472552|472554|472555|472556|472557|472558|472559|472560|472561|472562|472563|472564|472565|472566|472567|472568|472569|472570|472571|472572|472573|472574|472575|472576|472577|472578|472579|472580|472581|472582|472583|472584|472585|472586|472587|472588|472589|472590|472591|472592|472593|472594|472595|472596|472597|472598|472599|472600|472601|472602|472603|472604|472605|472606|472607|472608|472609|472610|472611|472612|472613|472614|472615|472616|472617|472618|472619|472620|472621|472622|472623|472624|472625|472626|472627|472628|472629|472630|472631|472632|472633|472634|472635|472636|472637|472638|472639|472640|472641|472642|472643|472644|472645|472646|472647|472648|472649|472650|472651|472652|472653|472654|472655|472656|472657|472658|472659|472660|472661|472662|472663|472664|472665|472666|472667|472668|472669|472670|472671|472672|472673|472674|472675|472676|472677|472678|472679|472680|472681|472682|472683|472684|472685|472686|472687|472688|472689|472690|472691|472692|472693|472694|472695|472696|472697|472698|472699|472700|472701|472702|472703|472704|472705|472706|472707|472708|472709|472710|472711|472712|472713|472714|472715|472716|472717|472718|472719|472720|472721|472722|472723|472724|472725|472726|472727|472728|472729|472730|472731|472732|472733|472734|472735|472736|472737|472738|472739|472740|472741|472742|472743|472744|472746|472747|472748|472749|472750|472751|472752|472753|472754|472755|472756|472757|472758|472759|472760|472761|472762|472763|472764|472765|472766|472767|472768|472769|472770|472771|472772|472773|472774|472775|472776|472777|472778|472779|472780|472781|472782|472783|472784|472785|472786|472787|472788|472789|472790|472791|472792|472793|472794|472795|472796|472797|472798|472799|472800|472801|472802|472803|472804|472805|472806|472807|472808|472809|472810|472811|472812|472813|472814|472815|472816|472817|472818|472819|472820|472821|472822|472823|472824|472825|472826|472827|472828|472829|472830|472831|472832|472833|472834|472835|472836|472837|472838|472839|472840|472841|472842|472843|472844|472845|472846|472847|472848|472849|472850|472851|472852|472853|472854|472855|472856|472857|472858|472859|472860|472861|472862|472863|472864|472865|472866|472867|472868|472869|472870|472871|472872|472873|472874|472875|472876|472877|472878|472879|472880|472881|472882|472883|472884|472885|472886|472887|472888|472889|472890|472891|472892|472893|472894|472895|472896|472897|472898|472899|472900|472901|472902|472903|472904|472905|472906|472907|472908|472909|472910|472911|472912|472913|472914|472915|472916|472917|472918|472919|472920|472921|472922|472923|472924|472925|472926|472927|472928|472929|472930|472931|472932|472933|472934|472935|472936|472937|472938|472939|472940|472941|472942|472943|472944|472945|472946|472947|472948|472949|472950|472951|472952|472953|472954|472955|472956|472957|472958|472959|472960|472961|472962|472963|472964|472965|472966|472967|472968|472969|472970|472971|472972|472973|472974|472975|472976|472977|472978|472979|472980|472981|472982|472983|472984|472985|472986|472987|472988|472989|472990|472991|472992|472993|472994|472995|472996|472997|472998|472999|473000|473001|473002|473003|473004|473005|473006|473007|473008|473009|473010|473011|473012|473013|473014|473015|473016|473017|473018|473019|473020|473021|473022|473023|473024|473025|473026|473027|473028|473029|473030|473031|473032|473033|473034|473035|473036|473037|473038|473039|473040|473041|473042|473043|473044|473045|473046|473047|473048|473049|473050|473051|473052|473053|473054|473055|473056|473057|473058|473059|473060|473061|473062|473063|473064|473065|473066|473067|473068|473069|473070|473071|473072|473073|473074|473075|473076|473077|473078|473079|473080|473081|473082|473083|473084|473085|473086|473087|473088|473089|473090|473091|473092|473093|473094|473095|473096|473097|473098|473099|473100|473101|473102|473103|473104|473105|473106|473107|473108|473109|473110|473111|473112|473113|473114|473115|473116|473117|473118|473119|473120|473121|473122|473123|473124|473125|473126|473127|473128|473129|473130|473131|473132|473133|473134|473135|473136|473137|473138|473139|473140|473141|473142|473143|473144|473145|473146|473147|473148|473149|473150|473151|473152|473153|473154|473155|473156|473157|473158|473159|473160|473161|473162|473163|473164|473165|473166|473167|473168|473169|473170|473171|473172|473173|473174|473175|473176|473177|473178|473179|473180|473181|473182|473183|473184|473185|473186|473187|473188|473189|473190|473191|473192|473193|473194|473195|473196|473197|473198|473199|473200|473201|473202|473203|473204|473205|473206|473207|473208|473209|473210|473211|473212|473213|473214|473215|473216|473217|473218|473219|473220|473221|473222|473223|473224|473225|473226|473227|473228|473229|473230|473231|473232|473233|473234|473235|473236|473237|473238|473239|473240|473241|473242|473243|473244|473245|473246|473247|473248|473249|473250|473251|473252|473253|473254|473255|473256|473257|473258|473259|473260|473261|473262|473263|473264|473265|473266|473267|473268|473269|473270|473271|473272|473273|473274|473275|473276|473277|473278|473279|473280|473281|473282|473283|473284|473285|473286|473287|473288|473289|473290|473291|473292|473293|473294|473295|473296|473297|473298|473299|473300|473301|473302|473303|473304|473305|473306|473307|473308|473309|473310|473311|473312|473313|473314|473315|473316|473317|473318|473319|473320|473321|473322|473323|473324|473325|473326|473327|473328|473329|473330|473331|473332|473333|473334|473335|473336|473337|473338|473339|473340|473341|473342|473343|473344|473345|473346|473347|473348|473349|473350|473351|473352|473353|473354|473355|473356|473357|473358|473359|473360|473361|473362|473363|473364|473365|473366|473367|473368|473369|473370|473371|473372|473373|473374|473375|473376|473377|473378|473379|473380|473381|473382|473383|473384|473385|473386|473387|473388|473389|473390|473391|473392|473393|473394|473395|473396|473397|473398|473399|473400|473401|473402|473403|473404|473405|473406|473407|473408|473409|473410|473411|473412|473413|473414|473415|473416|473417|473418|473419|473420|473421|473422|473423|473424|473425|473426|473427|473428|473429|473430|473431|473432|473433|473434|473435|473436|473437|473438|473439|473440|473441|473442|473443|473444|473445|473446|473447|473448|473449|473450|473451|473452|473453|473454|473455|473456|473457|473458|473459|473460|473461|473462|473463|473464|473465|473466|473467|473468|473469|473470|473471|473472|473473|473474|473475|473476|473477|473478|473479|473480|473481|473482|473483|473484|473485|473486|473487|473488|473489|473490|473491|473492|473493|473494|473495|473496|473497|473498|473499|473500|473501|473502|473503|473504|473505|473506|473507|473508|473509|473510|473511|473512|473513|473514|473515|473516|473517|473518|473519|473520|473521|473522|473523|473524|473525|473526|473527|473528|473529|473530|473531|473532|473533|473534|473535|473536|473537|473538|473539|473540|473541|473542|473543|473544|473545|473546|473547|473548|473549|473550|473551|473552|473553|473554|473555|473556|473557|473558|473559|473560|473561|473562|473563|473564|473565|473566|473567|473568|473569|473570|473571|473572|473573|473574|473575|473576|473577|473578|473579|473580|473581|473582|473583|473584|473585|473586|473587|473588|473589|473590|473591|473592|473593|473594|473595|473596|473597|473598|473599|473600|473601|473602|473603|473604|473605|473606|473607|473608|473609|473610|473611|473612|473613|473614|473615|473616|473617|473618|473619|473620|473621|473622|473623|473624|473625|473626|473627|473628|473629|473630|473631|473632|473633|473634|473635|473636|473637|473638|473639|473640|473641|473642|473643|473644|473645|473646|473647|473648|473649|473650|473651|473652|473653|473654|473655|473656|473657|473658|473659|473660|473661|473662|473663|473664|473665|473666|473667|473668|473669|473670|473671|473672|473673|473674|473675|473676|473677|473678|473679|473680|473681|473682|473683|473684|473685|473686|473687|473688|473689|473690|473691|473692|473693|473694|473695|473696|473697|473698|473699|473700|473701|473702|473703|473704|473705|473706|473707|473708|473709|473710|473711|473712|473713|473714|473715|473716|473717|473718|473719|473720|473721|473722|473723|473724|473725|473726|473727|473728|473729|473730|473731|473732|473733|473734|473735|473736|473737|473738|473739|473740|473741|473742|473743|473744|473745|473746|473747|473748|473749|473750|473751|473752|473753|473754|473755|473756|473757|473758|473759|473760|473761|473762|473763|473764|473765|473766|473767|473768|473769|473770|473771|473772|473773|473774|473775|473776|473777|473778|473779|473780|473781|473782|473783|473784|473785|473786|473787|473788|473789|473790|473791|473792|473793|473794|473795|473796|473797|473798|473799|473800|473801|473802|473803|473804|473805|473806|473807|473808|473809|473810|473811|473812|473813|473814|473815|473816|473817|473818|473819|473820|473821|473822|473823|473824|473825|473826|473827|473828|473829|473830|473831|473832|473833|473834|473835|473836|473837|473838|473839|473840|473841|473842|473843|473844|473845|473846|473847|473848|473849|473850|473851|473852|473853|473854|473855|473856|473857|473858|473859|473860|473861|473862|473863|473864|473865|473866|473867|473868|473869|473870|473871|473872|473873|473874|473875|473876|473877|473878|473879|473880|473881|473882|473883|473884|473885|473886|473887|473888|473889|473890|473891|473892|473893|473894|473895|473896|473897|473898|473899|473900|473901|473902|473903|473904|473905|473906|473907|473908|473909|473910|473911|473912|473913|473914|473915|473916|473917|473918|473919|473920|473921|473922|473923|473924|473925|473926|473927|473928|473929|473930|473931|473932|473933|473934|473935|473936|473937|473938|473939|473940|473941|473942|473943|473944|473945|473946|473947|473948|473949|473950|473951|473952|473953|473954|473955|473956|473957|473958|473959|473960|473961|473962|473963|473964|473965|473966|473967|473968|473969|473970|473971|473972|473973|473974|473975|473976|473977|473978|473979|473980|473981|473982|473983|473984|473985|473986|473987|473988|473989|473990|473991|473992|473993|473994|473995|473996|473997|473998|473999|474000|474001|474002|474003|474004|474005|474006|474007|474008|474009|474010|474011|474012|474013|474014|474015|474016|474017|474018|474019|474020|474021|474022|474023|474024|474025|474026|474027|474028|474029|474030|474031|474032|474033|474034|474035|474036|474037|474038|474039|474040|474041|474042|474043|474044|474045|474046|474047|474048|474049|474050|474051|474052|474053|474054|474055|474056|474057|474058|474059|474060|474061|474062|474063|474064|474065|474066|474067|474068|474069|474070|474071|474072|474073|474074|474075|474076|474077|474078|474079|474080|474081|474082|474083|474084|474085|474086|474087|474088|474089|474090|474091|474092|474093|474094|474095|474096|474097|474098|474099|474100|474101|474102|474103|474104|474105|474106|474107|474108|474109|474110|474111|474112|474113|474114|474115|474116|474117|474118|474119|474120|474121|474122|474123|474124|474125|474126|474127|474128|474129|474130|474131|474132|474133|474134|474135|474136|474137|474138|474139|474140|474141|474142|474143|474144|474145|474146|474147|474148|474149|474150|474151|474152|474153|474154|474155|474156|474157|474158|474159|474160|474161|474162|474163|474164|474165|474166|474167|474168|474169|474170|474171|474172|474173|474174|474175|474176|474177|474179|474180|474181|474182|474183|474184|474185|474186|474187|474188|474189|474190|474191|474192|474193|474194|474195|474196|474197|474198|474199|474200|474201|474202|474203|474204|474205|474206|474207|474208|474209|474210|474211|474212|474213|474214|474215|474216|474217|474218|474219|474220|474221|474222|474223|474224|474225|474226|474227|474228|474229|474230|474231|474232|474233|474234|474235|474236|474237|474238|474239|474240|474241|474242|474243|474244|474245|474246|474247|474248|474249|474250|474251|474252|474253|474254|474255|474256|474257|474258|474259|474260|474261|474262|474263|474264|474265|474266|474267|474268|474269|474270|474271|474272|474273|474274|474275|474276|474277|474278|474279|474280|474281|474282|474283|474284|474285|474286|474287|474288|474289|474290|474291|474292|474293|474294|474295|474296|474297|474298|474299|474300|474301|474302|474303|474304|474305|474306|474307|474308|474309|474310|474311|474312|474313|474314|474315|474316|474317|474318|474319|474320|474321|474322|474323|474324|474325|474326|474327|474328|474329|474330|474331|474332|474333|474334|474335|474336|474337|474338|474339|474340|474341|474342|474343|474344|474345|474346|474347|474348|474349|474350|474351|474352|474353|474354|474355|474356|474357|474358|474359|474360|474361|474362|474363|474364|474365|474366|474367|474368|474369|474370|474371|474372|474373|474374|474375|474376|474377|474378|474379|474380|474381|474382|474383|474384|474385|474386|474387|474388|474389|474390|474391|474392|474393|474394|474395|474396|474397|474398|474399|474400|474401|474402|474403|474404|474405|474406|474407|474408|474409|474410|474411|474412|474413|474414|474415|474416|474417|474418|474419|474420|474421|474422|474423|474424|474425|474426|474427|474428|474429|474430|474431|474432|474433|474434|474435|474436|474437|474438|474439|474440|474441|474442|474443|474444|474445|474446|474447|474448|474449|474450|474451|474452|474453|474454|474455|474456|474457|474458|474459|474460|474461|474462|474463|474464|474465|474466|474467|474468|474469|474470|474471|474472|474473|474474|474475|474476|474477|474478|474479|474480|474481|474482|474483|474484|474485|474486|474487|474488|474489|474490|474491|474492|474493|474494|474495|474496|474497|474498|474499|474500|474501|474502|474503|474504|474505|474506|474507|474508|474509|474510|474511|474512|474513|474514|474515|474516|474517|474518|474519|474520|474521|474522|474523|474524|474525|474526|474527|474528|474529|474530|474531|474532|474533|474534|474535|474536|474537|474538|474539|474540|474541|474542|474543|474544|474545|474546|474547|474548|474549|474550|474551|474552|474553|474554|474555|474556|474557|474558|474559|474560|474561|474562|474563|474564|474565|474566|474567|474568|474569|474570|474571|474572|474573|474574|474575|474576|474577|474578|474579|474580|474581|474582|474583|474584|474585|474586|474587|474588|474589|474590|474591|474592|474593|474594|474595|474596|474597|474598|474599|474600|474601|474602|474603|474604|474605|474606|474607|474608|474609|474610|474611|474612|474613|474614|474615|474616|474617|474618|474619|474620|474621|474622|474623|474624|474625|474626|474627|474628|474629|474630|474631|474632|474633|474634|474635|474636|474637|474638|474639|474640|474641|474642|474643|474644|474645|474646|474647|474648|474649|474650|474651|474652|474653|474654|474655|474656|474657|474658|474659|474660|474661|474662|474663|474664|474665|474666|474667|474668|474669|474670|474671|474672|474673|474674|474675|474676|474677|474678|474679|474680|474681|474682|474683|474684|474685|474686|474687|474688|474689|474690|474691|474692|474693|474694|474695|474696|474697|474698|474699|474700|474701|474702|474703|474704|474705|474706|474707|474708|474709|474710|474711|474712|474713|474714|474715|474716|474717|474718|474719|474720|474721|474722|474723|474724|474725|474726|474727|474728|474729|474730|474731|474732|474733|474734|474735|474736|474737|474738|474739|474740|474741|474742|474743|474744|474745|474746|474747|474748|474749|474750|474751|474752|474753|474754|474755|474756|474757|474758|474759|474760|474761|474762|474763|474764|474765|474766|474767|474768|474769|474770|474771|474772|474773|474774|474775|474776|474777|474778|474779|474780|474781|474782|474783|474784|474785|474786|474787|474788|474789|474790|474791|474792|474793|474794|474795|474796|474797|474798|474799|474800|474801|474802|474803|474804|474805|474806|474807|474808|474809|474810|474811|474812|474813|474814|474815|474816|474817|474818|474819|474820|474821|474822|474823|474824|474825|474826|474827|474828|474829|474830|474831|474832|474833|474834|474835|474836|474837|474838|474839|474840|474841|474842|474843|474844|474845|474846|474847|474848|474849|474850|474851|474852|474853|474854|474855|474856|474857|474858|474859|474860|474861|474862|474863|474864|474865|474866|474867|474868|474869|474870|474871|474872|474873|474874|474875|474876|474877|474878|474879|474880|474881|474882|474883|474884|474885|474886|474887|474888|474889|474890|474891|474892|474893|474894|474895|474896|474897|474898|474899|474900|474901|474902|474903|474904|474905|474906|474907|474908|474909|474910|474911|474912|474913|474914|474915|474916|474917|474918|474919|474920|474921|474922|474923|474924|474925|474926|474927|474928|474929|474930|474931|474932|474933|474934|474935|474936|474937|474938|474939|474940|474941|474942|474943|474944|474945|474946|474947|474948|474949|474950|474951|474952|474953|474954|474955|474956|474957|474958|474959|474960|474961|474962|474963|474964|474965|474966|474967|474968|474969|474970|474971|474972|474973|474974|474975|474976|474977|474978|474979|474980|474981|474982|474983|474984|474985|474986|474987|474988|474989|474990|474991|474992|474993|474994|474995|474996|474997|474998|474999|475000|475001|475002|475003|475004|475005|475006|475007|475008|475009|475010|475011|475012|475013|475014|475015|475016|475017|475018|475019|475020|475021|475022|475023|475024|475025|475026|475027|475028|475029|475030|475031|475032|475033|475034|475035|475036|475037|475038|475039|475040|475041|475042|475043|475044|475045|475046|475047|475048|475049|475050|475051|475052|475053|475054|475055|475056|475057|475058|475059|475060|475061|475062|475063|475064|475065|475066|475067|475068|475069|475070|475071|475072|475073|475074|475075|475076|475077|475078|475079|475080|475081|475082|475083|475084|475085|475086|475087|475088|475089|475090|475091|475092|475093|475094|475095|475096|475097|475098|475099|475100|475101|475102|475103|475104|475105|475106|475107|475108|475109|475110|475111|475112|475113|475114|475115|475116|475117|475118|475119|475120|475121|475122|475123|475124|475125|475126|475127|475128|475129|475130|475131|475132|475133|475134|475135|475136|475137|475138|475139|475140|475141|475142|475143|475144|475145|475146|475147|475148|475149|475150|475151|475152|475153|475154|475155|475156|475157|475158|475159|475160|475161|475162|475163|475164|475165|475166|475167|475168|475169|475170|475171|475172|475173|475174|475175|475176|475177|475178|475179|475180|475181|475182|475183|475184|475185|475186|475187|475188|475189|475190|475191|475192|475193|475194|475195|475196|475197|475198|475199|475200|475201|475202|475203|475204|475205|475206|475207|475208|475209|475210|475211|475212|475213|475214|475215|475216|475217|475218|475219|475220|475221|475222|475223|475224|475225|475226|475227|475228|475229|475230|475231|475232|475233|475234|475235|475236|475237|475238|475239|475240|475241|475242|475243|475244|475245|475246|475247|475248|475249|475250|475251|475252|475253|475254|475255|475256|475257|475258|475259|475260|475261|475262|475263|475264|475265|475266|475267|475268|475269|475270|475271|475272|475273|475274|475275|475276|475277|475278|475279|475280|475281|475282|475283|475284|475285|475286|475287|475288|475289|475290|475291|475292|475293|475294|475295|475296|475297|475298|475299|475300|475301|475302|475303|475304|475305|475306|475307|475308|475309|475310|475311|475312|475313|475314|475315|475316|475317|475318|475319|475320|475321|475322|475323|475324|475325|475326|475327|475328|475329|475330|475331|475332|475333|475334|475335|475336|475337|475338|475339|475340|475341|475342|475343|475344|475345|475346|475347|475348|475349|475350|475351|475352|475353|475354|475355|475356|475357|475358|475359|475360|475361|475362|475363|475364|475365|475366|475367|475368|475369|475370|475371|475372|475373|475374|475375|475376|475377|475378|475379|475380|475381|475382|475383|475384|475385|475386|475387|475388|475389|475390|475391|475392|475393|475394|475395|475396|475397|475398|475399|475400|475401|475402|475403|475404|475405|475406|475407|475408|475409|475410|475411|475412|475413|475414|475415|475416|475417|475418|475419|475420|475421|475422|475423|475424|475425|475426|475427|475428|475429|475430|475431|475432|475433|475434|475435|475436|475437|475438|475439|475440|475441|475442|475443|475444|475445|475446|475447|475448|475449|475450|475451|475452|475453|475454|475455|475456|475457|475458|475459|475460|475461|475462|475463|475464|475465|475466|475467|475468|475469|475470|475471|475472|475473|475474|475475|475476|475477|475478|475479|475480|475481|475482|475483|475484|475485|475486|475487|475488|475489|475490|475491|475492|475493|475494|475495|475496|475497|475498|475499|475500|475501|475502|475503|475504|475505|475506|475507|475508|475509|475510|475511|475512|475513|475514|475515|475516|475517|475518|475519|475520|475521|475522|475523|475524|475525|475526|475527|475528|475529|475530|475531|475532|475533|475534|475535|475536|475537|475538|475539|475540|475541|475542|475543|475544|475545|475546|475547|475548|475549|475550|475551|475552|475553|475554|475555|475556|475557|475558|475559|475560|475561|475562|475563|475564|475565|475566|475567|475568|475569|475570|475571|475572|475573|475574|475575|475576|475577|475578|475579|475580|475581|475582|475583|475584|475585|475586|475587|475588|475589|475590|475591|475592|475593|475594|475595|475596|475597|475598|475599|475600|475601|475602|475603|475604|475605|475606|475607|475608|475609|475610|475611|475612|475613|475614|475615|475616|475617|475618|475619|475620|475621|475622|475623|475624|475625|475626|475627|475628|475629|475630|475631|475632|475633|475634|475635|475636|475637|475638|475639|475640|475641|475642|475643|475644|475645|475646|475647|475648|475649|475650|475651|475652|475653|475654|475655|475656|475657|475658|475659|475660|475661|475662|475663|475664|475665|475666|475667|475668|475669|475670|475671|475672|475673|475674|475675|475676|475677|475678|475679|475680|475681|475682|475683|475684|475685|475686|475687|475688|475689|475690|475691|475692|475693|475694|475695|475696|475697|475698|475699|475700|475701|475702|475703|475704|475705|475706|475707|475708|475709|475710|475711|475712|475713|475714|475715|475716|475717|475718|475719|475720|475721|475722|475723|475724|475725|475726|475727|475728|475729|475730|475731|475732|475733|475734|475735|475736|475737|475738|475739|475740|475741|475742|475743|475744|475745|475746|475747|475748|475749|475750|475751|475752|475753|475754|475755|475756|475757|475758|475759|475760|475761|475762|475763|475764|475765|475766|475767|475768|475769|475770|475771|475772|475773|475774|475775|475776|475777|475778|475779|475780|475781|475782|475783|475784|475785|475786|475787|475788|475789|475790|475791|475792|475793|475794|475795|475796|475797|475798|475799|475800|475801|475802|475803|475804|475805|475806|475807|475808|475809|475810|475811|475812|475813|475814|475815|475816|475817|475818|475819|475820|475821|475822|475823|475824|475825|475826|475827|475828|475829|475830|475831|475832|475833|475834|475835|475836|475837|475839|475840|475841|475842|475843|475844|475845|475846|475847|475848|475849|475850|475851|475852|475853|475854|475855|475856|475857|475858|475859|475860|475861|475862|475863|475864|475865|475866|475867|475868|475869|475870|475871|475872|475873|475874|475875|475876|475877|475878|475879|475880|475881|475882|475883|475884|475885|475886|475887|475888|475889|475890|475891|475892|475893|475894|475895|475896|475897|475898|475899|475900|475901|475902|475903|475904|475905|475906|475907|475908|475909|475910|475911|475912|475913|475914|475915|475916|475917|475918|475919|475920|475921|475922|475923|475924|475925|475926|475927|475928|475929|475930|475931|475932|475933|475934|475935|475936|475937|475938|475939|475940|475941|475942|475943|475944|475945|475946|475947|475948|475949|475950|475951|475952|475953|475954|475955|475956|475957|475958|475959|475960|475961|475962|475963|475964|475965|475966|475967|475968|475969|475970|475971|475972|475973|475974|475975|475976|475977|475978|475979|475980|475981|475982|475983|475984|475985|475986|475987|475988|475989|475990|475991|475992|475993|475994|475995|475996|475997|475998|475999|476000|476001|476002|476003|476004|476005|476006|476007|476008|476009|476010|476011|476012|476013|476014|476015|476016|476017|476018|476019|476020|476021|476022|476023|476024|476025|476026|476027|476028|476029|476030|476031|476032|476033|476034|476035|476036|476037|476038|476039|476040|476041|476042|476043|476044|476045|476046|476047|476048|476049|476050|476051|476052|476053|476054|476055|476056|476057|476058|476059|476060|476061|476062|476063|476064|476065|476066|476067|476068|476069|476070|476071|476072|476073|476074|476075|476076|476077|476078|476079|476080|476081|476082|476083|476084|476085|476086|476087|476088|476089|476090|476091|476092|476093|476094|476095|476096|476097|476098|476099|476100|476101|476102|476103|476104|476105|476106|476107|476108|476109|476110|476111|476112|476113|476114|476115|476116|476117|476118|476119|476120|476121|476122|476123|476124|476125|476126|476127|476128|476129|476130|476131|476132|476133|476134|476135|476136|476137|476138|476139|476140|476141|476142|476143|476144|476145|476146|476147|476148|476149|476150|476151|476152|476153|476154|476155|476156|476157|476158|476159|476160|476161|476162|476163|476164|476165|476166|476167|476168|476169|476170|476171|476172|476173|476174|476175|476176|476177|476178|476179|476180|476181|476182|476183|476184|476185|476186|476187|476188|476189|476190|476191|476192|476193|476194|476195|476196|476197|476198|476199|476200|476201|476202|476203|476204|476205|476206|476207|476208|476209|476210|476211|476212|476213|476214|476215|476216|476217|476218|476219|476220|476221|476222|476223|476224|476225|476226|476227|476228|476229|476230|476231|476232|476233|476234|476235|476236|476237|476238|476239|476240|476241|476242|476243|476244|476245|476246|476247|476248|476249|476250|476251|476252|476253|476254|476255|476256|476257|476258|476259|476260|476261|476262|476263|476264|476265|476266|476267|476268|476269|476270|476271|476272|476273|476274|476275|476276|476277|476278|476279|476280|476281|476282|476283|476284|476285|476286|476287|476288|476289|476290|476291|476292|476293|476294|476295|476296|476297|476298|476299|476300|476301|476302|476303|476304|476305|476306|476307|476308|476309|476310|476311|476312|476313|476314|476315|476316|476317|476318|476319|476320|476321|476322|476323|476324|476325|476326|476327|476328|476329|476330|476331|476332|476333|476334|476335|476336|476337|476338|476339|476340|476341|476342|476343|476344|476345|476346|476347|476348|476349|476350|476351|476352|476353|476354|476355|476356|476357|476358|476359|476360|476361|476362|476363|476364|476365|476366|476367|476368|476369|476370|476371|476372|476373|476374|476375|476376|476377|476378|476379|476380|476381|476382|476383|476384|476385|476386|476387|476388|476389|476390|476391|476392|476393|476394|476395|476396|476397|476398|476399|476400|476401|476402|476403|476404|476405|476406|476407|476408|476409|476410|476411|476412|476413|476414|476415|476416|476417|476418|476419|476420|476421|476422|476423|476424|476425|476426|476427|476428|476429|476430|476431|476432|476433|476434|476435|476436|476437|476438|476439|476440|476441|476442|476443|476444|476445|476446|476447|476448|476449|476450|476451|476452|476453|476454|476455|476456|476457|476458|476459|476460|476461|476462|476463|476464|476465|476466|476467|476468|476469|476470|476471|476472|476473|476474|476475|476476|476477|476478|476479|476480|476481|476482|476483|476484|476485|476486|476487|476488|476489|476490|476491|476492|476493|476494|476495|476496|476497|476498|476499|476500|476501|476502|476503|476504|476505|476506|476507|476508|476509|476510|476511|476512|476513|476514|476515|476516|476517|476518|476519|476520|476521|476522|476523|476524|476525|476526|476527|476528|476529|476530|476531|476532|476533|476534|476535|476536|476537|476538|476539|476540|476541|476542|476543|476544|476545|476546|476547|476548|476549|476550|476551|476552|476553|476554|476555|476556|476557|476558|476559|476560|476561|476562|476563|476564|476565|476566|476567|476568|476569|476570|476571|476572|476573|476574|476575|476576|476577|476578|476579|476580|476581|476582|476583|476584|476585|476586|476587|476588|476589|476590|476591|476592|476593|476594|476595|476596|476597|476598|476599|476600|476601|476602|476603|476604|476605|476606|476607|476608|476609|476610|476611|476612|476613|476614|476615|476616|476617|476618|476619|476620|476621|476622|476623|476624|476625|476626|476627|476628|476629|476630|476631|476632|476633|476634|476635|476636|476637|476638|476639|476640|476641|476642|476643|476644|476645|476646|476647|476648|476649|476650|476651|476652|476653|476654|476655|476656|476657|476658|476659|476660|476661|476662|476663|476664|476665|476666|476667|476668|476669|476670|476671|476672|476673|476674|476675|476676|476677|476678|476679|476680|476681|476682|476683|476684|476685|476686|476687|476688|476689|476690|476691|476692|476693|476694|476695|476696|476697|476698|476699|476700|476701|476702|476703|476704|476705|476706|476707|476708|476709|476710|476711|476712|476713|476714|476715|476716|476717|476718|476719|476720|476721|476722|476723|476724|476725|476726|476727|476728|476730|476731|476732|476733|476734|476735|476736|476737|476738|476739|476740|476741|476742|476743|476744|476745|476746|476747|476748|476749|476750|476751|476752|476753|476754|476755|476756|476757|476758|476759|476760|476761|476762|476763|476764|476765|476766|476767|476768|476769|476770|476771|476772|476773|476774|476775|476776|476777|476778|476779|476780|476781|476782|476783|476784|476785|476786|476787|476788|476789|476790|476791|476792|476793|476794|476795|476796|476797|476798|476799|476800|476801|476802|476803|476805|476806|476807|476808|476809|476810|476811|476812|476813|476814|476815|476816|476817|476818|476819|476820|476821|476822|476823|476824|476825|476826|476827|476828|476829|476830|476831|476832|476833|476834|476835|476836|476837|476838|476839|476840|476841|476842|476843|476844|476845|476846|476847|476848|476849|476850|476851|476852|476853|476854|476855|476856|476857|476858|476859|476860|476861|476862|476863|476864|476865|476866|476867|476868|476869|476870|476871|476872|476873|476874|476875|476876|476877|476878|476879|476880|476881|476882|476883|476884|476885|476886|476887|476888|476889|476890|476891|476892|476893|476894|476895|476896|476897|476898|476899|476900|476901|476902|476903|476904|476905|476906|476907|476908|476909|476910|476911|476912|476913|476914|476915|476916|476917|476918|476919|476920|476921|476922|476923|476924|476925|476926|476927|476928|476929|476930|476931|476932|476933|476934|476935|476936|476937|476938|476939|476940|476941|476942|476943|476944|476945|476946|476947|476948|476949|476950|476951|476952|476953|476954|476955|476956|476957|476958|476959|476960|476961|476962|476963|476964|476965|476966|476967|476968|476969|476970|476971|476972|476973|476974|476975|476976|476977|476978|476979|476980|476981|476982|476983|476984|476985|476986|476987|476988|476989|476990|476991|476992|476993|476994|476995|476996|476997|476998|476999|477000|477001|477002|477003|477004|477005|477006|477007|477008|477009|477010|477011|477012|477013|477014|477015|477016|477017|477018|477019|477020|477021|477022|477023|477024|477025|477026|477027|477028|477029|477031|477032|477033|477034|477035|477036|477037|477038|477039|477040|477041|477042|477043|477044|477045|477046|477047|477048|477049|477050|477051|477052|477053|477054|477055|477056|477057|477058|477059|477060|477061|477062|477063|477064|477065|477066|477067|477068|477069|477070|477071|477072|477073|477074|477075|477076|477077|477078|477079|477080|477081|477082|477083|477084|477085|477086|477087|477088|477089|477090|477091|477092|477093|477094|477095|477096|477097|477098|477099|477100|477101|477102|477103|477104|477105|477106|477107|477108|477109|477110|477111|477112|477113|477114|477115|477116|477117|477118|477119|477120|477121|477122|477123|477124|477125|477126|477127|477128|477129|477130|477131|477132|477133|477134|477135|477136|477137|477138|477139|477140|477141|477142|477143|477144|477145|477146|477147|477148|477149|477150|477151|477152|477153|477154|477155|477156|477157|477158|477159|477160|477161|477162|477163|477164|477165|477166|477167|477168|477169|477170|477171|477172|477173|477174|477175|477176|477177|477178|477179|477180|477181|477182|477183|477184|477185|477186|477187|477188|477189|477190|477191|477192|477193|477194|477195|477196|477197|477198|477199|477200|477201|477202|477203|477204|477205|477206|477207|477208|477209|477210|477211|477212|477213|477214|477215|477216|477217|477218|477219|477220|477221|477222|477223|477224|477225|477226|477227|477228|477229|477230|477231|477232|477233|477234|477235|477236|477237|477238|477239|477240|477241|477242|477243|477244|477245|477246|477247|477248|477249|477250|477251|477252|477253|477254|477255|477256|477257|477258|477259|477260|477261|477262|477263|477264|477265|477266|477267|477268|477269|477270|477271|477272|477273|477274|477275|477276|477277|477278|477279|477280|477281|477282|477283|477284|477285|477286|477287|477288|477289|477290|477291|477292|477293|477294|477295|477296|477297|477298|477299|477300|477301|477302|477303|477304|477305|477306|477307|477308|477309|477310|477311|477312|477313|477314|477315|477316|477317|477318|477319|477320|477321|477322|477323|477324|477325|477326|477327|477328|477329|477330|477331|477332|477333|477334|477335|477336|477337|477338|477339|477340|477341|477342|477343|477344|477345|477346|477347|477348|477349|477350|477351|477352|477353|477354|477355|477356|477357|477358|477359|477360|477361|477362|477363|477364|477365|477366|477367|477368|477369|477370|477371|477372|477373|477374|477375|477376|477377|477378|477379|477380|477381|477382|477383|477384|477385|477386|477387|477388|477389|477390|477391|477392|477393|477394|477395|477396|477397|477398|477399|477400|477401|477402|477403|477404|477405|477406|477407|477408|477409|477410|477411|477412|477413|477414|477415|477416|477417|477418|477419|477420|477421|477422|477423|477424|477425|477426|477427|477428|477429|477430|477431|477432|477433|477434|477435|477436|477437|477438|477439|477440|477441|477442|477443|477444|477445|477446|477447|477448|477449|477450|477451|477452|477453|477454|477455|477456|477457|477458|477459|477460|477461|477462|477463|477464|477465|477466|477467|477468|477469|477470|477471|477472|477473|477474|477475|477476|477477|477478|477479|477480|477481|477482|477483|477484|477485|477486|477487|477488|477489|477490|477491|477492|477493|477494|477495|477496|477497|477498|477499|477500|477501|477502|477503|477504|477505|477506|477507|477508|477509|477510|477511|477512|477513|477514|477515|477516|477517|477518|477519|477520|477521|477522|477523|477524|477525|477526|477527|477528|477529|477530|477531|477532|477533|477534|477535|477536|477537|477538|477539|477540|477541|477542|477543|477544|477545|477546|477547|477548|477549|477550|477551|477552|477553|477554|477555|477556|477557|477558|477559|477560|477561|477562|477563|477564|477565|477566|477567|477568|477569|477570|477571|477572|477573|477574|477575|477576|477577|477578|477579|477580|477581|477582|477583|477584|477585|477586|477587|477588|477589|477590|477591|477592|477593|477594|477595|477596|477597|477598|477599|477600|477601|477602|477603|477604|477605|477606|477607|477608|477609|477610|477611|477612|477613|477614|477615|477616|477617|477618|477619|477620|477621|477622|477623|477624|477625|477626|477627|477628|477629|477630|477631|477632|477633|477634|477635|477636|477637|477638|477639|477640|477641|477642|477643|477644|477645|477646|477647|477648|477649|477650|477651|477652|477653|477654|477655|477656|477657|477658|477659|477660|477661|477662|477663|477664|477665|477666|477667|477668|477669|477670|477671|477672|477673|477674|477675|477676|477677|477678|477679|477680|477681|477682|477683|477684|477685|477686|477687|477688|477689|477690|477691|477692|477693|477694|477695|477696|477697|477698|477699|477700|477701|477702|477703|477704|477705|477706|477707|477708|477709|477710|477711|477712|477713|477714|477715|477716|477717|477718|477719|477720|477721|477722|477723|477724|477725|477726|477727|477728|477729|477730|477731|477732|477733|477734|477735|477736|477737|477738|477739|477740|477741|477742|477743|477744|477745|477746|477747|477748|477749|477750|477751|477752|477753|477754|477755|477756|477757|477758|477759|477760|477761|477762|477763|477764|477765|477766|477767|477768|477769|477770|477771|477772|477773|477774|477775|477776|477777|477778|477779|477780|477781|477782|477783|477784|477785|477786|477787|477788|477789|477790|477791|477792|477793|477794|477795|477796|477797|477798|477799|477800|477801|477802|477803|477804|477805|477806|477807|477808|477809|477810|477811|477812|477813|477814|477815|477816|477817|477818|477819|477820|477821|477822|477823|477824|477825|477826|477827|477828|477829|477830|477831|477832|477833|477834|477835|477836|477837|477838|477839|477840|477841|477842|477843|477844|477845|477846|477847|477848|477849|477850|477851|477852|477853|477854|477855|477856|477857|477858|477859|477860|477861|477862|477863|477864|477865|477866|477867|477868|477869|477870|477871|477872|477873|477874|477875|477876|477877|477878|477879|477880|477881|477882|477883|477884|477885|477886|477887|477888|477889|477890|477891|477892|477893|477894|477895|477896|477897|477898|477899|477900|477901|477902|477903|477904|477905|477906|477907|477908|477909|477910|477911|477912|477913|477914|477915|477916|477917|477918|477919|477920|477921|477922|477923|477924|477925|477926|477927|477928|477929|477930|477931|477932|477933|477934|477935|477936|477937|477938|477939|477940|477941|477942|477943|477944|477945|477946|477947|477948|477949|477950|477951|477952|477953|477954|477955|477956|477957|477958|477959|477960|477961|477962|477963|477964|477965|477966|477967|477968|477969|477970|477971|477972|477973|477974|477975|477976|477977|477978|477979|477980|477981|477982|477983|477984|477985|477986|477987|477988|477989|477990|477991|477992|477993|477994|477995|477996|477997|477998|477999|478000|478001|478002|478003|478004|478005|478006|478007|478008|478009|478010|478011|478012|478013|478014|478015|478016|478017|478018|478019|478020|478021|478022|478023|478024|478025|478026|478027|478028|478029|478030|478031|478032|478033|478034|478035|478036|478037|478038|478039|478040|478041|478042|478043|478044|478045|478046|478047|478048|478049|478050|478051|478052|478053|478054|478055|478056|478057|478058|478059|478060|478061|478062|478063|478064|478065|478066|478067|478068|478069|478070|478071|478072|478073|478074|478075|478076|478077|478078|478079|478080|478081|478082|478083|478084|478085|478086|478087|478088|478089|478090|478091|478092|478093|478094|478095|478096|478097|478098|478099|478100|478101|478102|478103|478104|478105|478106|478107|478108|478109|478110|478111|478112|478113|478114|478115|478116|478117|478118|478119|478120|478121|478122|478123|478124|478125|478126|478127|478128|478129|478130|478131|478132|478133|478134|478135|478136|478137|478138|478139|478140|478141|478142|478143|478144|478145|478146|478147|478148|478149|478150|478151|478152|478153|478154|478155|478156|478157|478158|478159|478160|478161|478162|478163|478164|478165|478166|478167|478168|478169|478170|478171|478172|478173|478174|478175|478176|478177|478178|478179|478180|478181|478182|478183|478184|478185|478186|478187|478188|478189|478190|478191|478192|478193|478194|478195|478196|478197|478198|478199|478200|478201|478202|478203|478204|478205|478206|478207|478208|478209|478210|478211|478212|478213|478214|478215|478216|478217|478218|478219|478220|478221|478222|478223|478224|478225|478226|478227|478228|478229|478230|478231|478232|478233|478234|478235|478236|478237|478238|478239|478240|478241|478242|478243|478244|478245|478246|478247|478248|478249|478250|478251|478252|478253|478254|478255|478256|478257|478258|478259|478260|478261|478262|478263|478264|478265|478266|478267|478268|478269|478270|478271|478272|478273|478274|478275|478276|478277|478278|478279|478280|478281|478282|478283|478284|478285|478286|478287|478288|478289|478290|478291|478292|478293|478294|478295|478296|478297|478298|478299|478300|478301|478302|478303|478304|478305|478306|478307|478308|478309|478310|478311|478312|478313|478314|478315|478316|478317|478318|478319|478320|478321|478322|478323|478324|478325|478326|478327|478328|478329|478330|478331|478332|478333|478334|478335|478336|478337|478338|478339|478340|478341|478342|478343|478344|478345|478346|478347|478348|478349|478350|478351|478352|478353|478354|478355|478356|478357|478358|478359|478360|478361|478362|478363|478364|478365|478366|478367|478368|478369|478370|478371|478372|478373|478374|478375|478376|478377|478378|478379|478380|478381|478382|478383|478384|478385|478386|478387|478388|478389|478390|478391|478392|478393|478394|478395|478396|478397|478398|478399|478400|478401|478402|478403|478404|478405|478406|478407|478408|478409|478410|478411|478412|478413|478414|478415|478416|478417|478418|478419|478420|478421|478422|478423|478424|478425|478426|478427|478428|478429|478430|478431|478432|478433|478434|478435|478436|478437|478438|478439|478440|478441|478442|478443|478444|478445|478446|478447|478448|478449|478450|478451|478452|478453|478454|478455|478456|478457|478458|478459|478460|478461|478462|478463|478464|478465|478466|478467|478468|478469|478470|478471|478472|478473|478474|478475|478476|478477|478478|478479|478480|478481|478482|478483|478484|478485|478486|478487|478488|478489|478490|478491|478492|478493|478494|478495|478496|478497|478498|478499|478500|478501|478502|478503|478504|478505|478506|478507|478508|478509|478510|478511|478512|478513|478514|478515|478516|478517|478518|478519|478520|478521|478522|478523|478524|478525|478526|478527|478528|478529|478530|478531|478532|478533|478534|478535|478536|478537|478538|478539|478540|478541|478542|478543|478544|478545|478546|478547|478548|478549|478550|478551|478552|478553|478554|478555|478556|478557|478558|478559|478560|478561|478562|478563|478564|478565|478566|478567|478568|478569|478570|478571|478572|478573|478574|478575|478576|478577|478578|478579|478580|478581|478582|478583|478584|478585|478586|478587|478588|478589|478590|478591|478592|478593|478594|478595|478596|478597|478598|478599|478600|478601|478602|478603|478604|478605|478606|478607|478608|478609|478610|478611|478612|478613|478614|478615|478616|478617|478618|478619|478620|478621|478622|478623|478624|478625|478626|478627|478628|478629|478630|478631|478632|478633|478634|478635|478636|478637|478638|478639|478640|478641|478642|478643|478644|478645|478646|478647|478648|478649|478650|478651|478652|478653|478654|478655|478656|478657|478658|478659|478660|478661|478662|478663|478664|478665|478666|478667|478668|478669|478670|478671|478672|478673|478674|478675|478676|478677|478678|478679|478680|478681|478682|478683|478684|478685|478686|478687|478688|478689|478690|478691|478692|478693|478694|478695|478696|478697|478698|478699|478700|478701|478702|478703|478704|478705|478706|478707|478708|478709|478710|478711|478712|478713|478714|478715|478716|478717|478718|478719|478720|478721|478722|478723|478724|478725|478726|478727|478728|478729|478730|478731|478732|478733|478734|478735|478736|478737|478738|478739|478740|478741|478742|478743|478744|478745|478746|478747|478748|478749|478750|478751|478752|478753|478754|478755|478756|478757|478758|478759|478760|478761|478762|478763|478764|478765|478766|478767|478768|478769|478770|478771|478772|478773|478774|478775|478776|478777|478778|478779|478780|478781|478782|478783|478784|478785|478786|478787|478788|478789|478790|478791|478792|478793|478794|478795|478796|478797|478798|478799|478800|478801|478802|478803|478804|478805|478806|478807|478808|478809|478810|478811|478812|478813|478814|478815|478816|478817|478818|478819|478820|478821|478822|478823|478824|478825|478826|478827|478828|478829|478830|478831|478832|478833|478834|478835|478836|478837|478838|478839|478840|478841|478842|478843|478844|478845|478846|478847|478848|478849|478850|478851|478852|478853|478854|478855|478856|478857|478858|478859|478860|478861|478862|478863|478864|478865|478866|478867|478868|478869|478870|478871|478872|478873|478874|478875|478876|478877|478878|478879|478880|478881|478882|478883|478884|478885|478886|478887|478888|478889|478890|478891|478892|478893|478894|478895|478896|478897|478898|478899|478900|478901|478902|478903|478904|478905|478906|478907|478908|478909|478910|478911|478912|478913|478914|478915|478916|478917|478918|478919|478920|478921|478922|478923|478924|478925|478926|478927|478928|478929|478930|478931|478932|478933|478934|478935|478936|478937|478938|478939|478940|478941|478942|478943|478944|478945|478946|478947|478948|478949|478950|478951|478952|478953|478954|478955|478956|478957|478958|478959|478960|478961|478962|478963|478964|478965|478966|478967|478968|478969|478970|478971|478972|478973|478974|478975|478976|478977|478978|478979|478980|478981|478982|478983|478984|478985|478986|478987|478988|478989|478990|478991|478992|478993|478994|478995|478996|478997|478998|478999|479000|479001|479002|479003|479004|479005|479006|479007|479008|479009|479010|479011|479012|479013|479014|479015|479016|479017|479018|479019|479020|479021|479022|479023|479024|479025|479026|479027|479028|479029|479030|479031|479032|479033|479034|479035|479036|479037|479038|479039|479040|479041|479042|479043|479044|479045|479046|479047|479048|479049|479050|479051|479052|479053|479054|479055|479056|479057|479058|479059|479060|479061|479062|479063|479064|479065|479066|479067|479068|479069|479070|479071|479072|479073|479074|479075|479076|479077|479078|479079|479080|479081|479082|479083|479084|479085|479086|479087|479088|479089|479090|479091|479092|479093|479094|479095|479096|479097|479098|479099|479100|479101|479102|479103|479104|479105|479106|479107|479108|479109|479110|479111|479112|479113|479114|479115|479116|479117|479118|479119|479120|479121|479122|479123|479124|479125|479126|479127|479128|479129|479130|479131|479132|479133|479134|479135|479136|479137|479138|479139|479140|479141|479142|479143|479144|479145|479146|479147|479148|479149|479150|479151|479152|479153|479154|479155|479156|479157|479158|479159|479160|479161|479162|479163|479164|479165|479166|479167|479168|479169|479170|479171|479172|479173|479174|479175|479176|479177|479178|479179|479180|479181|479182|479183|479184|479185|479186|479187|479188|479189|479190|479191|479192|479193|479194|479195|479196|479197|479198|479199|479200|479201|479202|479203|479204|479205|479206|479207|479208|479209|479210|479211|479212|479213|479214|479215|479216|479217|479218|479219|479220|479221|479222|479223|479224|479225|479226|479227|479228|479229|479230|479231|479232|479233|479234|479235|479236|479237|479238|479239|479240|479241|479242|479243|479244|479245|479246|479247|479248|479249|479250|479251|479252|479253|479254|479255|479256|479257|479258|479259|479260|479261|479262|479263|479264|479265|479266|479267|479268|479269|479270|479271|479272|479273|479274|479275|479276|479277|479278|479279|479280|479281|479282|479283|479284|479285|479286|479287|479288|479289|479290|479291|479292|479293|479294|479295|479296|479297|479298|479299|479300|479301|479302|479303|479304|479305|479306|479307|479308|479309|479310|479311|479312|479313|479314|479315|479316|479317|479318|479319|479320|479321|479322|479323|479324|479325|479326|479327|479328|479329|479330|479331|479332|479333|479334|479335|479336|479337|479338|479339|479340|479341|479342|479343|479344|479345|479346|479347|479348|479349|479350|479352|479353|479354|479355|479356|479357|479358|479359|479360|479361|479362|479363|479364|479365|479366|479367|479368|479369|479370|479371|479372|479373|479374|479375|479376|479377|479378|479379|479380|479381|479382|479383|479384|479385|479386|479387|479388|479389|479390|479391|479392|479393|479394|479395|479396|479397|479398|479399|479400|479401|479402|479403|479404|479405|479406|479407|479408|479409|479410|479411|479412|479413|479414|479415|479416|479417|479418|479419|479420|479421|479422|479423|479424|479425|479426|479427|479428|479429|479430|479431|479432|479433|479434|479435|479436|479437|479438|479439|479440|479441|479442|479443|479444|479445|479446|479447|479448|479449|479450|479451|479452|479453|479454|479455|479456|479457|479458|479459|479460|479461|479462|479463|479464|479465|479466|479467|479468|479469|479470|479471|479472|479473|479474|479475|479476|479477|479478|479479|479480|479481|479482|479483|479484|479485|479486|479487|479488|479489|479490|479491|479492|479493|479494|479495|479496|479497|479498|479499|479500|479501|479502|479503|479504|479505|479506|479507|479508|479509|479510|479511|479512|479513|479514|479515|479517|479518|479519|479520|479521|479522|479523|479524|479525|479526|479527|479528|479529|479530|479531|479532|479533|479534|479535|479536|479537|479538|479539|479540|479541|479542|479543|479544|479545|479546|479547|479548|479549|479550|479551|479552|479553|479554|479555|479556|479557|479558|479559|479560|479561|479562|479563|479564|479565|479566|479567|479568|479569|479570|479571|479572|479573|479574|479575|479576|479577|479578|479579|479580|479581|479582|479583|479584|479585|479586|479587|479588|479589|479590|479591|479592|479593|479594|479595|479596|479597|479598|479599|479600|479601|479602|479603|479604|479605|479606|479607|479608|479609|479610|479611|479612|479613|479614|479615|479616|479617|479618|479619|479620|479621|479622|479623|479624|479625|479626|479627|479628|479629|479630|479631|479632|479633|479634|479635|479636|479637|479638|479639|479640|479641|479642|479643|479644|479645|479646|479647|479648|479649|479650|479651|479652|479653|479654|479655|479656|479657|479658|479659|479660|479661|479662|479663|479664|479665|479666|479667|479668|479669|479670|479671|479672|479673|479674|479675|479676|479677|479678|479679|479680|479681|479682|479683|479684|479685|479686|479687|479688|479689|479690|479691|479692|479693|479694|479695|479696|479697|479698|479699|479700|479701|479702|479703|479704|479705|479706|479707|479708|479709|479710|479711|479712|479713|479714|479715|479716|479717|479718|479719|479720|479721|479722|479723|479724|479725|479726|479727|479728|479729|479730|479731|479732|479733|479734|479735|479736|479737|479738|479739|479740|479741|479742|479743|479744|479745|479746|479747|479749|479750|479751|479752|479753|479754|479755|479756|479757|479758|479759|479760|479761|479762|479763|479764|479765|479766|479767|479768|479769|479770|479771|479772|479773|479774|479775|479776|479777|479778|479779|479780|479781|479782|479783|479784|479785|479786|479787|479788|479789|479790|479791|479792|479793|479794|479795|479796|479797|479798|479799|479800|479801|479802|479803|479804|479805|479806|479807|479808|479809|479810|479811|479812|479813|479814|479815|479816|479817|479818|479819|479820|479821|479822|479823|479824|479825|479826|479827|479828|479829|479830|479831|479832|479833|479834|479835|479836|479837|479838|479839|479840|479841|479842|479843|479844|479845|479846|479847|479848|479849|479850|479851|479852|479853|479854|479855|479856|479857|479858|479859|479860|479861|479862|479863|479864|479865|479866|479867|479868|479869|479870|479871|479872|479873|479874|479875|479876|479877|479878|479879|479880|479881|479882|479883|479884|479885|479886|479887|479888|479889|479890|479891|479892|479893|479894|479895|479896|479897|479898|479899|479900|479901|479902|479903|479904|479905|479906|479907|479908|479909|479910|479911|479912|479913|479914|479915|479916|479917|479918|479919|479920|479921|479922|479923|479924|479925|479926|479927|479928|479929|479930|479931|479932|479933|479934|479935|479936|479937|479938|479939|479940|479941|479942|479943|479944|479945|479946|479947|479948|479949|479950|479951|479952|479953|479954|479955|479956|479957|479958|479959|479960|479961|479962|479963|479964|479965|479966|479967|479968|479969|479970|479971|479972|479973|479974|479975|479976|479977|479978|479979|479980|479981|479982|479983|479984|479985|479986|479987|479988|479989|479990|479991|479992|479993|479994|479995|479996|479997|479998|479999|480000|480001|480002|480003|480004|480005|480006|480007|480008|480009|480010|480011|480012|480013|480014|480015|480016|480017|480018|480019|480020|480021|480022|480023|480024|480025|480026|480027|480028|480029|480030|480031|480032|480033|480034|480035|480036|480037|480038|480039|480040|480041|480042|480043|480044|480045|480046|480047|480048|480049|480050|480051|480052|480053|480054|480055|480056|480057|480058|480059|480060|480061|480062|480063|480064|480065|480066|480067|480068|480069|480070|480071|480072|480073|480074|480075|480076|480077|480078|480079|480080|480081|480082|480083|480084|480085|480086|480087|480088|480089|480090|480091|480092|480093|480094|480095|480096|480097|480098|480099|480100|480101|480102|480103|480104|480105|480106|480107|480108|480109|480110|480111|480112|480113|480114|480115|480116|480117|480118|480119|480120|480121|480122|480123|480124|480125|480126|480127|480128|480129|480130|480131|480132|480133|480134|480135|480136|480137|480138|480139|480140|480141|480142|480143|480144|480145|480146|480147|480148|480149|480150|480151|480152|480153|480154|480155|480156|480157|480158|480159|480160|480161|480162|480163|480164|480165|480166|480167|480168|480169|480170|480171|480172|480173|480174|480175|480176|480177|480178|480179|480180|480181|480182|480183|480184|480185|480186|480187|480188|480189|480190|480191|480192|480193|480194|480195|480196|480197|480198|480199|480200|480201|480202|480203|480204|480205|480206|480207|480208|480209|480210|480211|480212|480213|480214|480215|480216|480217|480218|480219|480220|480221|480222|480223|480224|480225|480226|480227|480228|480229|480230|480231|480232|480233|480234|480235|480236|480237|480238|480239|480240|480241|480242|480243|480244|480245|480246|480247|480248|480249|480250|480251|480252|480253|480254|480255|480256|480257|480258|480259|480260|480261|480262|480263|480264|480265|480266|480267|480268|480269|480270|480271|480272|480273|480274|480275|480276|480277|480278|480279|480280|480281|480282|480283|480284|480285|480286|480287|480288|480289|480290|480291|480292|480293|480294|480295|480296|480297|480298|480299|480300|480301|480302|480303|480304|480305|480306|480307|480308|480309|480310|480311|480312|480313|480314|480315|480316|480317|480318|480319|480320|480321|480322|480323|480324|480325|480326|480327|480328|480329|480330|480331|480332|480333|480334|480335|480336|480337|480338|480339|480340|480341|480342|480343|480344|480345|480346|480347|480348|480349|480350|480351|480352|480353|480354|480355|480356|480357|480358|480359|480360|480361|480362|480363|480364|480365|480366|480367|480368|480369|480370|480371|480372|480373|480374|480375|480376|480377|480378|480379|480380|480381|480382|480383|480384|480385|480386|480387|480388|480389|480390|480391|480392|480393|480394|480395|480396|480468|480469|480475|480485|480488|480489|480492|480495|480499|480500|480501|481885|481887|481898|481920|481928|482128|482340|482341|482342|482343|482344|482345|482346|482347|482348|482349|482350|482351|482352|482353|482354|482355|482356|482357|482358|482359|482360|482361|482362|482363|482364|482365|482366|482367|482368|482369|482370|482371|482372|482373|482374|482375|482376|482377|482378|482379|482380|482381|482382|482384|482385|482386|482388|482389|482390|482391|482392|482393|482394|482395|482396|482397|482398|482399|482400|482401|482402|482403|482404|482405|482406|482407|482408|482409|482410|482411|482412|482413|482414|482415|482416|482417|482418|482419|482420|482421|482422|482423|482424|482425|482426|482427|482428|482429|482430|482431|482432|482433|482434|482435|482436|482437|482438|482439|482440|482441|482442|482443|482444|482445|482446|482447|482448|482449|482450|482451|482452|482453|482454|482455|482456|482457|482458|482459|482460|482461|482462|482463|482464|482465|482466|482467|482468|482469|482470|482471|482472|482473|482474|482475|482476|482477|482478|482479|482480|482481|482482|482483|482484|482485|482486|482487|482488|482489|482490|482491|482492|482493|482494|482495|482496|482497|482498|482499|482500|482501|482502|482503|482504|482505|482506|482507|482508|482509|482510|482511|482512|482513|482514|482515|482516|482517|482518|482519|482520|482521|482522|482523|482524|482526|482527|482528|482529|482530|482531|482532|482533|482534|482535|482536|482537|482538|482539|482540|482541|482542|482543|482544|482545|482546|482547|482548|482549|482550|482551|482552|482553|482554|482555|482557|482558|482559|482560|482561|482562|482563|482564|482565|482566|482567|482568|482569|482570|482571|482572|482573|482574|482575|482576|482577|482578|482579|482580|482581|482582|482583|482584|482585|482586|482587|482588|482589|482590|482591|482592|482593|482594|482595|482596|482597|482598|482599|482600|482601|482602|482603|482604|482605|482606|482607|482608|482609|482610|482611|482612|482613|482614|482615|482616|482617|482618|482619|482620|482621|482622|482623|482624|482625|482626|482627|482628|482629|482630|482631|482632|482633|482634|482635|482636|482637|482638|482639|482640|482641|482642|482643|482644|482645|482646|482647|482648|482649|482650|482651|482652|482653|482654|482655|482656|482657|482658|482659|482660|482661|482662|482663|482664|482665|482666|482667|482668|482669|482670|482671|482672|482673|482674|482675|482676|482677|482678|482679|482680|482681|482682|482683|482684|482685|482686|482687|482688|482689|482690|482691|482692|482693|482694|482695|482696|482697|482698|482699|482700|482701|482702|482703|482704|482705|482706|482707|482708|482709|482710|482711|482712|482713|482714|482715|482716|482717|482718|482719|482721|482722|482723|482724|482725|482726|482727|482728|482730|482731|482732|482733|482734|482735|482736|482737|482738|482739|482740|482741|482742|482743|482744|482745|482746|482747|482748|482749|482750|482751|482752|482753|482754|482755|482756|482757|482758|482759|482760|482761|482762|482763|482764|482765|482766|482767|482768|482769|482770|482771|482772|482773|482774|482775|482777|482778|482779|482780|482781|482782|482783|482784|482785|482786|482787|482788|482789|482790|482791|482792|482793|482794|482795|482796|482797|482798|482800|482801|482804|482805|482806|482807|482808|482809|482811|482812|482813|482814|482815|482816|482817|482818|482819|482820|482821|482822|482823|482824|482825|482826|482827|482828|482829|482830|482831|482832|482833|482834|482835|482836|482837|482838|482839|482841|482842|482843|482844|482845|482846|482847|482848|482849|482850|482851|482852|482853|482854|482855|482856|482857|482858|482859|482860|482861|482862|482863|482864|482865|482866|482868|482869|482870|482871|482872|482873|482874|482875|482876|482877|482878|482879|482880|482881|482882|482883|482884|482885|482886|482887|482888|482889|482890|482891|482892|482893|482894|482895|482896|482897|482898|482899|482900|482901|482902|482904|482905|482906|482907|482908|482909|482910|482911|482912|482913|482914|482915|482916|482917|482918|482919|482920|482921|482922|482923|482924|482925|482926|482927|482928|482929|482930|482931|482932|482933|482934|482935|482936|482937|482938|482939|482940|482941|482942|482943|482944|482945|482946|482947|482948|482949|482950|482951|482952|482953|482955|482956|482957|482958|482959|482960|482961|482963|482964|482965|482966|482967|482968|482969|482970|482971|482972|482973|482974|482975|482976|482977|482978|482979|482980|482981|482982|482983|482984|482985|482986|482987|482988|482989|482990|482991|482992|482993|482994|482995|482996|482997|482998|482999|483000|483001|483002|483003|483004|483005|483006|483007|483008|483009|483010|483011|483012|483013|483014|483015|483016|483017|483018|483019|483020|483021|483022|483023|483024|483025|483026|483027|483028|483029|483030|483031|483032|483033|483034|483035|483036|483037|483038|483039|483040|483041|483042|483043|483044|483045|483046|483047|483048|483049|483050|483051|483052|483053|483054|483055|483056|483057|483058|483059|483060|483061|483062|483063|483064|483065|483066|483067|483068|483069|483070|483071|483072|483073|483074|483075|483076|483078|483079|483080|483081|483082|483083|483084|483085|483086|483087|483088|483089|483090|483091|483092|483094|483095|483096|483098|483099|483100|483101|483102|483103|483104|483105|483106|483107|483119|483120|483121|483122|483123|483124|483125|483126|483127|483128|483129|483130|483131|483132|483133|483134|483135|483136|483137|483138|483139|483140|483141|483142|483143|483144|483145|483146|483147|483148|483149|483150|483151|483152|483153|483154|483155|483156|483157|483158|483159|483160|483161|483162|483163|483164|483165|483167|483169|483171|483172|483173|483175|483176|483178|483182|483183|483185|483186|483189|483190|483191|483192|483193|483195|483196|483197|483199|483201|483202|483205|483207|483212|483215|483217|483221|483230|483231|483232|483234|483235|483237|483239|483240|483241|483242|483243|483244|483245|483246|483247|483248|483250|483251|483252|483254|483255|483256|483257|483258|483259|483260|483261|483262|483263|483264|483265|483266|483267|483268|483269|483270|483271|483272|483273|483274|483275|483276|483277|483278|483279|483280|483281|483282|483283|483284|483285|483286|483287|483288|483289|483290|483291|483292|483293|483294|483295|483296|483297|483298|483299|483300|483301|483302|483303|483304|483305|483306|483307|483308|483309|483310|483311|483312|483313|483314|483315|483316|483317|483318|483319|483320|483321|483322|483323|483324|483325|483326|483327|483328|483329|483330|483331|483332|483333|483334|483335|483336|483337|483338|483339|483340|483341|483342|483343|483344|483346|483347|483348|483349|483350|483351|483352|483353|483354|483355|483356|483357|483358|483359|483360|483361|483362|483363|483364|483365|483366|483367|483368|483369|483370|483371|483372|483373|483374|483375|483376|483377|483378|483379|483380|483381|483382|483383|483384|483385|483386|483387|483388|483389|483390|483391|483392|483393|483394|483395|483396|483397|483398|483399|483400|483401|483403|483404|483405|483406|483407|483408|483409|483410|483411|483412|483413|483414|483415|483416|483417|483418|483419|483420|483421|483422|483423|483424|483425|483426|483427|483428|483429|483430|483431|483432|483433|483434|483435|483436|483437|483438|483439|483440|483441|483442|483443|483444|483445|483446|483447|483448|483449|483450|483451|483452|483453|483454|483455|483456|483457|483458|483459|483460|483461|483462|483463|483464|483465|483466|483467|483468|483469|483470|483471|483472|483473|483474|483475|483476|483477|483478|483479|483480|483481|483482|483483|483484|483485|483486|483487|483488|483489|483490|483491|483492|483493|483494|483495|483496|483497|483498|483499|483500|483501|483502|483503|483504|483505|483506|483507|483508|483509|483510|483512|483513|483514|483515|483516|483517|483518|483519|483520|483521|483522|483523|483524|483525|483526|483527|483528|483529|483530|483531|483532|483533|483534|483535|483536|483537|483538|483539|483540|483541|483542|483543|483544|483545|483546|483547|483548|483550|483551|483552|483553|483554|483555|483556|483557|483558|483559|483560|483561|483562|483563|483564|483565|483566|483567|483568|483569|483570|483571|483572|483573|483574|483575|483576|483577|483578|483579|483580|483581|483582|483583|483584|483585|483586|483587|483588|483589|483590|483591|483592|483593|483594|483595|483596|483597|483598|483599|483600|483601|483602|483603|483604|483605|483606|483607|483608|483609|483610|483611|483612|483613|483614|483615|483616|483617|483618|483619|483620|483621|483622|483623|483624|483625|483626|483627|483628|483629|483630|483631|483632|483633|483634|483635|483636|483637|483638|483639|483640|483641|483642|483643|483644|483645|483646|483647|483648|483649|483650|483651|483652|483653|483654|483655|483656|483657|483658|483659|483660|483661|483662|483663|483664|483665|483666|483667|483668|483669|483670|483671|483672|483673|483674|483675|483676|483677|483678|483679|483680|483681|483682|483683|483684|483685|483686|483687|483688|483689|483690|483691|483692|483693|483694|483695|483696|483697|483698|483699|483700|483701|483702|483703|483704|483705|483706|483707|483708|483709|483710|483711|483712|483713|483714|483715|483716|483717|483718|483719|483720|483721|483722|483723|483724|483725|483726|483727|483728|483729|483730|483731|483732|483733|483734|483735|483736|483737|483738|483739|483740|483741|483742|483743|483744|483745|483746|483747|483748|483749|483750|483751|483752|483753|483754|483755|483756|483757|483758|483759|483760|483761|483762|483763|483764|483765|483766|483767|483768|483769|483770|483771|483773|483774|483775|483776|483777|483778|483779|483780|483781|483782|483783|483784|483785|483786|483787|483788|483789|483790|483791|483792|483793|483794|483795|483796|483797|483798|483799|483800|483801|483802|483803|483804|483805|483806|483807|483808|483809|483810|483811|483812|483813|483814|483815|483816|483817|483818|483819|483820|483822|483823|483824|483825|483826|483827|483828|483829|483830|483831|483832|483833|483834|483835|483836|483837|483838|483839|483840|483841|483842|483843|483844|483845|483846|483847|483848|483849|483850|483851|483852|483853|483854|483855|483856|483857|483858|483859|483860|483861|483862|483863|483864|483865|483866|483867|483868|483869|483870|483871|483872|483873|483874|483875|483876|483877|483878|483879|483880|483881|483883|483884|483885|483886|483887|483888|483889|483890|483891|483892|483893|483894|483895|483896|483897|483898|483899|483900|483901|483902|483903|483904|483905|483906|483907|483908|483909|483910|483911|483912|483913|483914|483915|483916|483917|483918|483919|483920|483921|483922|483923|483924|483925|483926|483927|483928|483929|483930|483931|483932|483933|483934|483935|483936|483937|483938|483939|483940|483941|483942|483943|483944|483945|483946|483947|483948|483949|483950|483951|483952|483953|483954|483955|483956|483957|483958|483959|483960|483961|483962|483963|483964|483965|483966|483967|483968|483969|483970|483971|483972|483973|483974|483975|483976|483977|483978|483979|483980|483981|483982|483983|483984|483985|483986|483987|483988|483989|483990|483991|483992|483993|483994|483995|483996|483997|483998|483999|484000|484001|484002|484003|484004|484005|484006|484007|484008|484009|484010|484011|484012|484013|484014|484015|484016|484017|484018|484019|484020|484021|484022|484023|484024|484025|484026|484027|484028|484029|484030|484031|484032|484033|484034|484035|484036|484037|484038|484039|484040|484041|484042|484043|484044|484045|484046|484047|484048|484049|484050|484051|484052|484053|484054|484055|484056|484057|484058|484059|484060|484061|484062|484063|484064|484065|484066|484067|484068|484069|484070|484071|484072|484073|484074|484075|484076|484077|484078|484079|484080|484081|484082|484083|484084|484085|484086|484087|484088|484089|484090|484091|484092|484093|484094|484095|484096|484097|484098|484100|484101|484103|484104|484105|484106|484107|484108|484109|484110|484111|484112|484113|484114|484115|484116|484117|484118|484119|484120|484121|484122|484123|484124|484125|484126|484127|484128|484129|484130|484131|484132|484133|484134|484136|484137|484138|484139|484140|484141|484142|484143|484144|484145|484146|484147|484148|484149|484150|484151|484152|484153|484154|484155|484156|484157|484158|484159|484160|484161|484162|484163|484164|484165|484166|484167|484168|484169|484170|484171|484172|484173|484174|484175|484176|484177|484178|484179|484180|484181|484182|484183|484184|484186|484187|484188|484189|484190|484191|484192|484193|484194|484195|484196|484197|484198|484199|484200|484201|484202|484203|484204|484205|484206|484207|484208|484209|484210|484211|484212|484213|484214|484215|484216|484217|484218|484220|484221|484222|484223|484224|484225|484226|484227|484228|484229|484230|484231|484232|484233|484234|484235|484236|484237|484238|484239|484240|484241|484242|484243|484244|484245|484246|484247|484248|484249|484250|484251|484252|484253|484254|484255|484256|484257|484258|484259|484260|484261|484262|484263|484264|484265|484266|484267|484268|484269|484270|484271|484272|484273|484274|484275|484276|484277|484278|484279|484280|484281|484282|484283|484284|484285|484286|484287|484288|484289|484290|484291|484292|484293|484294|484295|484296|484297|484298|484299|484300|484301|484302|484303|484304|484305|484306|484307|484308|484309|484310|484311|484312|484313|484314|484315|484316|484317|484318|484319|484320|484321|484322|484323|484324|484325|484326|484327|484328|484329|484330|484331|484332|484333|484334|484335|484336|484337|484338|484339|484340|484341|484342|484343|484344|484345|484346|484347|484348|484349|484350|484351|484352|484353|484354|484355|484356|484357|484358|484359|484360|484361|484362|484363|484364|484365|484366|484367|484368|484369|484370|484371|484372|484373|484374|484375|484376|484377|484378|484379|484380|484381|484382|484383|484384|484385|484386|484387|484388|484389|484390|484391|484392|484393|484394|484395|484396|484397|484398|484399|484400|484401|484402|484403|484404|484405|484406|484407|484408|484409|484410|484411|484412|484413|484414|484415|484416|484417|484418|484419|484420|484421|484422|484423|484424|484425|484427|484428|484429|484430|484431|484432|484433|484434|484435|484436|484437|484438|484439|484440|484441|484442|484443|484444|484445|484446|484447|484448|484449|484450|484451|484452|484453|484454|484455|484456|484457|484458|484459|484460|484461|484462|484463|484464|484465|484466|484467|484468|484469|484470|484471|484472|484473|484474|484475|484476|484477|484478|484479|484480|484481|484482|484483|484484|484485|484486|484487|484488|484489|484490|484491|484492|484493|484494|484495|484496|484497|484498|484499|484500|484501|484502|484503|484504|484505|484506|484507|484508|484509|484510|484511|484512|484513|484514|484515|484516|484517|484518|484519|484520|484521|484522|484523|484524|484525|484526|484527|484528|484529|484530|484531|484532|484533|484534|484535|484536|484537|484538|484539|484540|484541|484542|484543|484544|484545|484546|484547|484548|484549|484550|484551|484552|484553|484554|484555|484556|484557|484558|484559|484560|484561|484562|484563|484564|484565|484566|484567|484568|484569|484570|484571|484572|484573|484574|484575|484576|484577|484578|484579|484580|484581|484582|484583|484584|484585|484586|484587|484588|484589|484590|484591|484592|484593|484594|484595|484596|484597|484598|484599|484600|484601|484602|484603|484604|484605|484606|484607|484608|484609|484610|484611|484612|484613|484614|484615|484616|484617|484618|484619|484620|484621|484622|484623|484624|484625|484626|484627|484628|484629|484630|484631|484632|484633|484634|484635|484636|484637|484638|484639|484640|484641|484642|484643|484644|484645|484646|484647|484648|484649|484650|484651|484652|484653|484654|484655|484656|484657|484658|484659|484660|484661|484662|484663|484664|484665|484666|484667|484668|484669|484670|484671|484672|484673|484674|484675|484676|484677|484678|484679|484680|484681|484682|484683|484684|484685|484686|484687|484688|484689|484690|484691|484692|484693|484694|484695|484696|484697|484698|484699|484700|484701|484702|484703|484704|484705|484706|484707|484708|484709|484710|484711|484712|484713|484714|484715|484716|484717|484718|484719|484720|484721|484722|484723|484724|484725|484726|484727|484728|484729|484730|484731|484732|484733|484734|484735|484736|484737|484738|484739|484740|484741|484742|484743|484744|484745|484746|484747|484748|484749|484750|484751|484752|484753|484754|484755|484756|484757|484758|484759|484760|484761|484762|484763|484764|484765|484766|484767|484768|484769|484770|484771|484772|484773|484774|484775|484776|484777|484778|484779|484780|484781|484782|484783|484784|484785|484786|484787|484788|484789|484790|484791|484792|484793|484794|484795|484796|484797|484798|484799|484800|484801|484802|484803|484804|484805|484806|484807|484808|484809|484810|484811|484812|484813|484814|484815|484816|484817|484818|484819|484820|484821|484822|484823|484824|484825|484826|484827|484828|484829|484830|484831|484832|484833|484834|484835|484836|484837|484838|484839|484840|484841|484842|484843|484844|484845|484846|484847|484848|484849|484850|484851|484852|484853|484854|484855|484856|484857|484858|484859|484860|484861|484862|484863|484864|484865|484866|484867|484868|484869|484870|484871|484872|484873|484874|484875|484876|484877|484878|484879|484880|484881|484882|484883|484884|484885|484886|484887|484888|484889|484890|484891|484892|484893|484894|484895|484896|484897|484898|484899|484900|484901|484902|484903|484904|484905|484906|484907|484908|484909|484910|484911|484912|484913|484914|484915|484916|484917|484918|484919|484920|484921|484922|484923|484924|484925|484926|484927|484928|484929|484930|484931|484932|484933|484934|484935|484936|484937|484938|484939|484940|484941|484942|484943|484944|484945|484946|484947|484948|484949|484950|484951|484952|484953|484954|484955|484956|484957|484958|484959|484960|484961|484962|484963|484964|484965|484966|484967|484968|484969|484970|484971|484972|484973|484974|484975|484976|484977|484978|484979|484980|484981|484982|484983|484984|484985|484986|484987|484988|484989|484990|484991|484992|484993|484994|484995|484996|484997|484998|484999|485000|485001|485002|485003|485004|485005|485006|485007|485008|485009|485010|485011|485012|485013|485014|485015|485016|485017|485018|485019|485020|485021|485022|485023|485024|485025|485026|485027|485028|485029|485030|485031|485032|485033|485034|485035|485036|485037|485038|485039|485040|485041|485042|485043|485044|485045|485046|485047|485048|485049|485050|485051|485052|485053|485054|485055|485056|485057|485058|485059|485060|485061|485062|485063|485064|485065|485066|485067|485068|485069|485070|485071|485072|485073|485074|485075|485076|485077|485078|485079|485080|485081|485082|485083|485084|485085|485086|485087|485088|485089|485090|485091|485092|485093|485094|485095|485096|485097|485098|485099|485100|485101|485102|485103|485104|485105|485106|485107|485108|485109|485110|485111|485112|485113|485114|485115|485116|485117|485118|485119|485120|485121|485122|485123|485124|485125|485126|485127|485128|485129|485130|485131|485132|485133|485134|485135|485136|485137|485138|485139|485140|485141|485142|485143|485144|485146|485147|485148|485149|485150|485151|485152|485153|485154|485155|485156|485157|485158|485159|485160|485161|485162|485163|485164|485165|485166|485167|485168|485169|485170|485171|485172|485173|485174|485175|485176|485177|485178|485179|485180|485181|485182|485183|485184|485185|485186|485187|485188|485189|485190|485191|485192|485193|485194|485195|485196|485197|485198|485199|485200|485201|485202|485203|485204|485205|485206|485207|485208|485209|485210|485211|485212|485213|485214|485215|485216|485217|485218|485219|485220|485221|485222|485223|485224|485225|485226|485227|485228|485229|485230|485231|485232|485233|485234|485235|485236|485237|485238|485239|485240|485241|485242|485243|485244|485245|485246|485247|485248|485249|485250|485251|485252|485253|485255|485256|485257|485259|485260|485261|485262|485263|485264|485265|485266|485267|485268|485269|485270|485271|485272|485273|485274|485275|485276|485277|485278|485279|485280|485281|485282|485283|485284|485285|485286|485287|485288|485289|485290|485291|485292|485293|485294|485295|485296|485297|485298|485299|485300|485301|485302|485303|485304|485305|485306|485307|485308|485309|485310|485311|485312|485313|485314|485315|485316|485317|485318|485319|485320|485321|485322|485323|485324|485325|485326|485327|485328|485329|485330|485331|485332|485333|485334|485335|485336|485337|485338|485339|485340|485341|485342|485343|485344|485345|485346|485347|485348|485349|485350|485351|485352|485353|485354|485355|485356|485357|485358|485359|485360|485361|485362|485363|485364|485365|485366|485367|485368|485369|485370|485371|485372|485373|485374|485375|485376|485377|485378|485379|485380|485381|485382|485383|485384|485385|485386|485387|485388|485389|485390|485391|485392|485393|485394|485395|485396|485397|485398|485399|485400|485401|485402|485403|485405|485406|485407|485408|485409|485410|485411|485412|485413|485414|485415|485416|485417|485418|485419|485420|485421|485422|485423|485424|485425|485426|485427|485428|485429|485430|485431|485432|485433|485434|485435|485436|485437|485438|485439|485440|485441|485442|485443|485444|485445|485446|485447|485448|485449|485451|485452|485453|485454|485455|485456|485457|485458|485459|485460|485461|485462|485463|485464|485465|485466|485467|485468|485469|485470|485471|485472|485473|485474|485475|485476|485477|485478|485479|485480|485481|485482|485483|485484|485485|485486|485487|485488|485489|485490|485491|485492|485493|485494|485495|485496|485497|485498|485499|485500|485501|485502|485503|485504|485505|485506|485507|485508|485509|485510|485511|485512|485513|485514|485515|485516|485517|485518|485519|485520|485521|485522|485523|485524|485525|485526|485527|485528|485529|485530|485531|485532|485533|485534|485535|485536|485537|485538|485539|485540|485541|485542|485543|485544|485545|485546|485547|485548|485549|485550|485553|485554|485555|485556|485557|485558|485559|485560|485561|485562|485563|485564|485565|485566|485567|485568|485569|485570|485571|485572|485573|485574|485575|485576|485577|485578|485579|485580|485581|485582|485583|485584|485585|485586|485603|485604|485612|485622|485668|486074|486093|486094|486647|486651|486885|486912|486926|486933|486942|486954|486959|486960|486966|486969|486972|486980|486986|486989|486999|487001|487002|487010|487090|487117|487121|487130|487142|487149|487160|487161|487242|487257|487287|487289|487307|487345|487369|487380|487382|487397|487398|487405|487408|487424|487429|487431|487433|487435|487437|487440|487448|487455|487457|487467|487468|487469|487481|487482|487484|487499|487509|487520|487542|487550|487556|487557|487582|487584|487640|487643|487647|487658|487661|487673|487674|487680|487698|487704|487711|487738|487739|487748|487843|487879|487894|487898|487901|487902|487904|487908|487911|487931|487933|487934|487936|487938|487959|487970|487986|488003|488006|488134|488241|488242|488243|488853|490569|492405|493412|494047|495509|495672|495839|496278|496381|496761|496795|496796|496817|496818|497006|497731|498358|498370|498502|498514|498548|498559|498706|498710|498715|498716|498726|499751|499753|499771|499800|499813|499821|499980|499984|499994|500021|500028|500030|500032|500043|500167|500211|500229|500248|500257|500268|500273|500277|500402|500450|500468|500590|500593|500610|500612|500647|500758|500766|500803|500872|500899|500907|500926|500927|500934|500935|501077|501088|501198|501535|501688|501768|501771|502062|502063|502106|502110|502187|502415|502426|502439|502506|502518|502712|502748|502918|503039|503041|503042|503047|503055|503057|503065|503091|503094|503102|503113|503116|503123|503357|503375|503380|503388|503399|503416|503423|503434|503494|503579|503585|503602|503625|503631|503650|503655|503657|503807|503811|503827|503841|503905|503916|503933|503935|503937|503944|503952|503968|503977|504007|504039|504173|504191|504220|504234|504303|504316|504635|504666|504744|504745|504764|504766|504773|504778|505151|505153|505154|505165|505166|505172|505177|505263|505449|505466|505479|505521|505599|505649|505688|505707|505727|505728|505846|505882|506017|506088|506089|506102|506112|506114|506137|506145|506150|506160|506188|506190|506204|506211|506214|506216|506223|506238|506257|506270|506281|506368|506376|506397|506402|506405|506412|506413|506426|506427|506428|506431|506432|506493|506571|506597|506626|506638|506680|506719|506730|506748|506749|506757|506848|506855|506858|506860|506865|506908|507001|507011|507023|507025|507026|507117|507142|507187|507393|507493|507547|507548|508107|508112|512279|512374|512846|513369|514029|514061|514075|514337|514338|514339|514340|514341|515316|515333|515363|515396|515416|515731|515739|515761|515798|515841|515934|515938|515960|515961|515965|515970|516007|516062|516078|517620|517655|517673|517717|517735|517737|517748|517752|517769|517772|517774|517792|517799|517801|517810|517886|517887|517899|517915|517916|518022|518039|518102|518105|518113|518114|518122|518153|518275|518282|518288|518295|518304|518307|518320|518324|518336|518338|518341|518342|518346|518347|518348|518349|518350|518352|518353|518360|518365|518371|518376|518378|518379|518384|518391|518394|518408|518415|518417|518420|518424|518429|518431|518433|518435|518437|518438|518439|518440|518443|518446|518447|518448|518449|518451|518452|518455|518456|518465|518466|518472|518474|518480|518483|518509|518522|518532|518546|518547|518549|518552|518555|518570|518576|518578|518694|518729|518749|518859|518864|518865|518867|518869|518874|518876|519088|519098|519100|519112|519114|519119|519141|519178|519186|519188|519269|519274|519280|519293|519300|519311|519313|519322|519328|519544|519557|519562|519564|519581|519610|519778|519784|519790|519794|519807|519812|519813|519817|519823|519851|519937|520014|520062|520068|520126|520169|520184|520196|520206|520257|520259|520261|520271|520276|520281|520285|520288|520293|520297|520301|520307|520316|520322|520324|520327|520330|520333|520337|520343|520348|520371|520376|520377|520397|520400|520403|520412|520416|520432|520453|520463|520467|520471|520482|520486|520496|520504|520516|520542|520544|520570|520584|520591|520595|520598|520601|520607|520611|520620|520628|520631|520635|520641|520648|520650|520651|520653|520661|520662|520664|520665|520670|520683|520684|520686|520687|520693|520694|520696|520698|520703|520705|520708|520710|520722|520725|520751|520755|520760|520762|520763|520766|520774|520785|520787|520788|520792|520809|520810|520813|520816|520825|520830|520837|520847|520849|520864|520865|520867|520869|520870|520872|520874|520878|520879|520883|520887|520893|520899|520903|520905|520907|520910|520916|520929|520936|520939|520940|520949|520951|520954|520956|520957|520958|521027|521034|521037|521040|521043|521047|521050|521052|521055|521061|521068|521069|521071|521073|521074|521083|521086|521090|521093|521094|521096|521097|521101|521102|521105|521107|521110|521111|521114|521117|521118|521124|521125|521131|521132|521141|521142|521146|521148|521151|521154|521364|521370|521399|521400|521418|521684|521741|521761|521989|522033|522038|522065|522068|522072|522149|522314|522325|522334|522341|522347|522348|522362|522368|522370|522389|522422|522463|522468|522472|522476|522493|522721|522725|522735|522744|522752|522760|522773|522848|522858|522972|522994|522995|523010|523018|523020|523122|523129|523190|523203|523210|523324|523346|523350|523364|523719|523727|523736|523740|523751|524036|524037|524073|524131|524165|524286|524295|524309|524317|524328|524330|524337|524340|524342|524354|524364|524380|524395|524422|524426|524468|524501|524502|524664|524668|524670|524685|524709|524712|524719|524720|524736|524775|524784|524786|524795|524817|524823|524837|524845|524878|524906|524909|524912|524941|524952|524963|524967|524971|524975|524977|525005|525007|525028|525033|525036|525043|525048|525057|525081|525083|525085|525091|525097|525098|525104|525105|525112|525117|525121|525128|525132|525135|525145|525156|525176|525191|525213|525247|525257|525260|525261|525267|525270|525279|525286|525287|525289|525294|525296|525302|525305|525308|525311|525313|525316|525320|525331|525344|525346|525355|525360|525395|525401|525439|525443|525459|525461|525467|525471|525540|525556|525582|525594|525596|525617|525622|525628|525630|525640|525641|525658|525679|525691|525692|525699|525703|525711|525720|525721|525723|525725|525726|525728|525734|525751|525758|525762|525763|525773|525778|525782|525784|525788|525797|525808|525818|525831|525836|525844|525847|525853|525856|525860|525864|525867|525870|525874|525877|525878|525894|525896|525899|525909|525910|525913|525915|525933|525957|525962|525973|525988|525992|525998|526010|526032|526043|526056|526057|526058|526114|526147|526165|526176|526187|526204|526205|526225|526233|526262|526268|526269|526280|526281|526329|526340|526345|526356|526368|526373|526377|526383|526526|526611|526670|526730|526797|526841|526887|526919|526970|527071|527151|527275|527433|527455|527508|527516|527518|527530|527540|527541|527545|527561|527564|527570|527578|527603|527604|527618|527638|527642|527647|527653|527700|527704|527709|527742|527748|527753|527773|527776|527788|527792|527819|527850|527885|527891|527894|527912|527916|527936|527969|527971|527976|527999|528014|528034|528045|528057|528067|528073|528074|528083|528095|528123|528129|528203|528217|528221|528253|528264|528265|528292|528303|528304|528307|528343|528355|528380|528400|528402|528415|528426|528439|528445|528454|528455|528470|528475|528496|528506|528512|528523|528525|528539|528549|528553|528578|528767|528851|528858|528860|528861|528867|528873|528874|528880|528882|528888|528889|528896|528904|528906|528913|528923|528926|528932|528937|528942|528945|528977|529003|529007|529141|529150|529153|529154|529167|529176|529188|529193|529196|529197|529201|529216|529464|529484|529487|529498|529511|529526|529532|529533|529543|529551|529552|529560|529578|529618|529633|529648|529660|529664|529700|529701|529708|529728|529732|529747|529750|529751|529769|529780|529781|529784|529787|529790|529805|529806|529807|529809|529810|529814|529830|529832|529836|529839|529842|529852|529857|529867|529870|529879|529883|529885|529895|529899|529912|529920|529927|529929|529933|529944|529961|529973|530029|530036|530069|530073|530083|530094|530095|530108|530123|530126|530131|530132|530133|530134|530142|530145|530148|530150|530152|530158|530162|530171|530181|530195|530207|530221|530225|530229|530230|530237|530239|530244|530297|530349|530389|530424|530433|530440|530445|530448|530459|530460|530462|530476|530486|530615|530618|530635|530654|530657|530666|530678|530687|530688|530690|530700|530703|530710|530712|530717|530762|530806|530807|530823|530833|530852|530857|530861|530879|530880|530884|530887|530890|530896|530903|530911|530924|530931|530936|530941|530956|530964|530967|530971|530978|530979|530982|530984|531018|531028|531056|531059|531060|531064|531068|531088|531095|531120|531122|531123|531150|531152|531167|531181|531184|531186|531188|531202|531206|531207|531231|531245|531263|531264|531267|531268|531273|531277|531290|531294|531298|531303|531308|531317|531318|531321|531324|531328|531337|531343|531349|531351|531352|531357|531361|531374|531384|531388|531408|531419|531423|531424|531430|531434|531437|531445|531446|531448|531453|531460|531464|531469|531475|531477|531486|531490|531492|531499|531514|531522|531529|531539|531544|531550|531556|531562|531571|531577|531579|531596|531597|531604|531611|531621|531622|531623|531629|531634|531662|531668|531678|531712|531723|531727|531731|531732|531762|531764|531772|531774|531784|531786|531788|531793|531794|531796|531797|531802|531807|531815|531833|531834|531838|531840|531842|531847|531853|531858|531869|531874|531922|531923|531973|532024|532194|532201|532211|532218|532225|532229|532309|532313|532446|532457|532458|532465|532495|532502|532505|532506|532524|532539|532540|532563|532568|532569|532575|532585|532593|532598|532605|532613|532614|532619|532620|532627|532634|532639|532647|532651|532652|532662|532665|532674|532693|532696|532699|532703|532704|532706|532708|532713|532714|532715|532738|532768|532921|532953|532966|532974|532989|532995|533008|533010|533015|533047|533067|533090|533092|533098|533113|533118|533125|533232|533241|533245|533254|533748|533855|534082|534088|534103|534116|534119|534137|534141|534151|534164|534177|534180|534181|534187|534188|534197|534224|534229|534244|534273|534289|534300|534305|534310|534313|534325|534612|534627|534676|534681|534688|534698|534705|534712|535741|535743|535745|536184|536241|536252|536260|536270|536279|536324|536333|536341|536345|536346|536366|536377|536411|536416|536425|536426|536442|536465|536475|536482|536499|536522|536530|536933|538116|538190|538213|538217|538232|538235|538638|538642|538659|538738|538759|538820|538875|538896|539130|539202|539203|539204|539206|539218|539228|539251|539256|539268|539270|539271|539274|539276|539279|539281|539296|539300|539305|539315|539316|539318|539326|539342|539347|539358|539362|539369|539373|539379|539385|539386|539388|539409|539411|540484|540485|540486|540487|540488|540489|540490|540491|540492|540493|540494|540533|540553|541078|544487|544786|544806|544810|544988|545339|545342|545365|545370|545711|545753|545766|545768|545967|545994|546007|546009|546038|547639|547654|547686|547927|547950|548338|548393|549465|550666|550673|550675|550699|550739|551803|551804|551805|551806|551807|551808|551823|551834|551836|551839|551840|551841|551848|551850|551852|551874|551875|551876|551877|551884|551885|551889|551904|551914|551915|551916|551925|551934|551935|551941|552143|552290|552930|552945|552956|552971|552996|553392|553655|556690|556694|556926|556930|556934|557028|557054|557056|557079|557083|557085|557087|557222|557224|557230|557304|557365|557838|557844|557848|557852|557854|557866|557897|557905|557909|557921|558027|558121|558129|558139|558145|558159|558169|558171|558179|558181|558203|558217|558235|558242|558362|558364|558439|558484|558486|558496|558524|558539|558542|558549|558556|558566|558588|558590|558592|558594|558694|558734|558884|558886|558890|558902|558906|558916|559075|559077|559089|559102|559104|559114|559205|559257|559429|559433|559435|559441|559447|559449|559644|559646|559801|559829|559842|559855|559857|559866|559871|559879|559885|559887|559897|559901|559903|559907|559911|559921|559925|559939|559943|559945|559947|559949|559951|559955|559963|559965|559967|559978|560012|560022|560024|560026|560030|560034|560038|560048|560060|560064|560066|560068|560072|560075|560076|560077|560079|560081|560083|560085|560087|560089|560091|560093|560095|560097|560099|560101|560103|560105|560107|560109|560111|560113|560115|560117|560119|560121|560123|560125|560127|560129|560131|560133|560135|560137|560162|560164|560166|560168|560170|560172|560174|560176|560178|560180|560182|560184|560186|560188|560190|560192|560194|560196|560198|560200|560202|560204|560206|560208|560210|560212|560214|560216|560218|560220|560222|560224|560226|560301|560311|560414|560426|560589|560661|560685|560687|560705|560721|560741|560754|560764|560782|560813|560822|560824|560832|560833|561021|561074|561200|561202|561207|561224|561251|561253|561266|561297|561311|561328|561333|561397|561415|561420|561422|561427|561436|561551|561568|561579|561595|561604|561625|561628|561631|561652|561662|561672|561675|561688|561691|561697|561699|561711|561714|561716|561720|561767|561784|561804|561816|562016|562044|562066|562068|562073|562083|562105|562120|562123|562125|562130|562207|562210|562224|562227|562231|562294|562313|562314|562330|562334|562355|562369|562385|562393|562399|562406|562413|562419|562446|562449|562462|562466|562468|562470|562488|562498|562505|562506|562507|562508|562509|562510|562529|562535|562540|562542|562543|562547|562681|562682|562684|562685|562688|562693|562695|562698|562701|562702|562707|562713|562715|562716|562718|562723|562725|562730|562731|562733|562735|562737|562742|562743|562745|562749|562751|562754|562757|562758|562760|562766|562768|562770|562773|562774|562776|562778|562911|562940|563117|563125|563126|563130|563131|563137|563142|563147|563154|563165|563170|563176|563207|563211|563335|563337|563344|563347|563368|563398|563551|563611|563637|563684|563687|563707|563710|563715|563716|563727|563738|563750|563758|563838|563839|563873|563879|563882|563932|563959|563970|563988|563991|563992|564000|564027|564101|564119|564129|564134|564151|564153|564163|564170|564177|564181|564184|564187|564189|564192|564195|564204|564205|564213|564215|564216|564217|564222|564225|564232|564233|564236|564241|564248|564262|564265|564269|564271|564273|564277|564283|564292|564300|564301|564306|564311|564312|564316|564317|564324|564328|564333|564334|564337|564338|564339|564342|564344|564353|564359|564362|564369|564370|564373|564380|564388|564394|564409|564462|564471|564563|564565|564567|564569|564570|564572|564573|564576|564583|564587|564589|564604|564608|564609|564610|564616|564618|564628|564629|564640|564642|564644|564645|564656|564658|564661|564675|564677|564684|564686|564688|564764|564783|564798|564806|564810|564835|564932|565061|565062|565076|565080|565085|565091|565094|565103|565115|565116|565123|565126|565138|565179|565183|565187|565189|565190|565218|565226|565232|565245|565252|565258|565267|565281|565325|565327|565330|565343|565363|565367|565380|565387|565405|565412|565423|565427|565466|565625|565632|565662|565668|565669|565670|565834|565867|565886|565917|565927|565939|565951|565964|565981|565998|566007|566016|566022|566028|566033|566035|566043|566045|566049|566055|566057|566065|566099|566125|566130|566135|566139|566144|566165|566167|566208|566211|566218|566263|566266|566279|566301|566306|566330|566348|566387|566473|566536|566546|566558|566564|566591|566696|566698|566726|566758|566764|566768|566772|566779|566785|566802|566803|566804|566805|566810|566818|566820|566834|566838|566848|566857|566888|566900|566910|566921|566922|566923|566925|566927|566929|566939|566945|566962|566989|566998|567004|567008|567016|567025|567026|567035|567037|567040|567051|567057|567062|567089|567232|567257|567264|567265|567266|567274|567359|567361|567373|567374|567383|567389|567394|567402|567411|567437|567447|567486|567490|567592|567595|567596|567711|567736|567740|567744|567777|567779|567787|567812|567833|567908|567911|567914|567936|567937|567939|567947|567959|567996|567999|568016|568017|568028|568113|568123|568154|568156|568165|568168|568177|568214|568215|568217|568226|568231|568233|568251|568302|568330|568340|568341|568347|568352|568353|568361|568363|568373|568382|568393|568409|568414|568421|568427|568434|568437|568438|568441|568443|568477|568490|568493|568497|568523|568531|568551|568561|568575|568583|568598|568725|568727|568751|568787|568801|568830|568853|568888|568930|568932|568934|568935|568959|568975|568996|568998|569003|569008|569017|569086|569087|569099|569114|569122|569123|569127|569129|569132|569137|569142|569152|569158|569159|569193|569214|569223|569242|569246|569249|569253|569265|569268|569281|569287|569295|569299|569303|569319|569343|569353|569362|569393|569418|569425|569435|569445|569454|569456|569592|569634|569654|569655|569660|569677|569690|569700|569712|569717|569718|569719|569721|569724|569726|569727|569728|569741|569769|569777|569784|569786|569806|569829|569835|569858|569861|569908|569914|569928|569950|569956|569960|569971|569991|570018|570024|570025|570047|570049|570068|570096|570097|570104|570112|570122|570127|570141|570150|570164|570165|570167|570169|570176|570183|570201|570202|570217|570226|570288|570352|570356|570357|570373|570395|570396|570403|570420|570425|570435|570444|570450|570460|570478|570493|570507|570785|570788|570796|570800|570801|570858|570863|570885|570887|570940|570944|570971|570995|571001|571006|571025|571028|571040|571046|571079|571098|571126|571152|571159|571170|571171|571172|571204|571207|571209|571265|571272|571288|571298|571299|571317|571318|571328|571356|571360|571363|571364|571371|571374|571375|571377|571379|571392|571395|571405|571419|571422|571427|571447|571453|571474|571501|571506|571620|571633|571638|571640|571732|571735|571736|571748|571759|571769|571776|571777|571779|571780|571787|571789|571795|571830|571843|571860|571868|571897|571904|571912|571955|572046|572082|572088|572090|572105|572112|572123|572140|572141|572143|572144|572169|572175|572190|572197|572290|572314|572328|572337|572351|572457|572474|572485|572499|572549|572651|572664|572758|572780|572812|572821|572823|572828|572841|572849|572877|572891|572906|572907|572909|573013|573016|573023|573035|573037|573043|573048|573057|573076|573082|573303|573309|573327|573330|573334|573342|573344|573393|573398|573590|573591|573595|573601|573604|573620|573622|573753|573827|573840|573862|573901|573902|573910|573911|573912|573914|573918|573924|573926|573937|573939|573955|573961|573968|573975|573976|573984|573988|574036|574053|574057|574059|574061|574062|574077|574080|574085|574110|574114|574117|574123|574125|574127|574324|574348|574350|574368|574372|574374|574381|574392|574420|574421|574425|574428|574430|574436|574439|574441|574467|574468|574481|574484|574485|574487|574489|574535|574540|574544|574545|574546|574547|574548|574552|574557|574558|574589|574621|574622|574635|574641|574822|574851|574852|574854|574855|574867|575222|575227|575230|575238|575239|575240|575244|575247|575517|575518|575519|575520|575521|575522|575523|575524|575525|575526|575527|575528|575529|575530|575532|575533|575534|575535|575536|575537|575538|575539|575541|575542|575543|575544|575545|575546|575547|575548|575549|575550|575551|575552|575553|575554|575555|575556|575557|575559|575560|575561|575562|575564|575565|575566|575567|575568|575569|575570|575571|575572|575573|575574|575575|575576|575577|575578|575579|575580|575581|575582|575583|575584|575585|575586|575587|575588|575589|575590|575591|575592|575593|575594|575595|575596|575597|575598|575599|575600|575601|575602|575603|575604|575605|575606|575607|575608|575609|575610|575611|575612|575614|575615|575616|575618|575619|575620|575621|575622|575623|575624|575625|575626|575627|575628|575629|575630|575631|575632|575633|575634|575635|575636|575637|575638|575656|575662|575665|575673|575684|575691|575692|575693|575694|575695|575696|575697|575700|575703|575708|575709|575710|575718|575723|575729|575736|575737|575738|575746|575752|575755|575756|575757|575758|575759|575760|575782|575783|575785|575786|575789|575794|575815|575839|575857|575867|575868|575869|575870|575871|575872|575873|575874|575875|575876|575877|575878|575879|575880|575881|575882|575883|575884|575885|575886|575887|575888|575889|575890|575891|575897|575903|575920|575956|575957|575958|575959|575960|575961|575962|575963|575964|575965|575966|575967|575971|575978|575984|575999|576000|576009|576021|576024|576054|576055|576056|576258|576343|578306|578308|578309|579694|579697|579913|581784|581823|587926|588187|590988|608821|609169|609170|609171|609172|609173|609174|609175|609176|609179|609180|609181|609492|609869|609951|610070|610417|610594|610595|610906|610912|610941|610942|610945|610946|610948|610973|610974|610977|610978|611006|611007|611016|611021|611031|611050|611055|611058|611060|611062|611064|611065|611067|611068|611069|611158|611160|611161|611164|611167|611183|611185|611188|611189|611193|611194|611196|611198|611201|611203|611217|611220|611222|611226|611229|611233|611234|611239|611242|611250|611251|611252|611255|611257|611261|611263|611310|611319|611321|611523|611683|611740|611815|611994|611996|612004|612005|612007|612018|612151|612193|612942|614326|614416|615057|616087|616088|616089|616090|616091|616092|616093|616094|616095|616096|616097|616098|616099|616100|616101|616102|616103|616104|616105|616106|616107|616108|616109|616110|616111|616112|616113|616114|616115|616116|616117|616118|616119|616120|616121|616122|616123|616124|616125|616126|616127|616128|616129|616130|616131|616132|616133|616134|616517|616518|616519|616520|616521|616522|616523|616524|616525|616526|616527|616528|616529|616530|616531|616532|616533|616534|616535|616536|616537|616538|616539|616540|616541|616542|616543|616544|616545|616546|616547|616548|616549|616550|616551|616552|616553|616554|616555|616556|616557|616558|616559|616560|616561|616562|616563|616564|616565|616566|616567|616568|616569|616570|616571|616572|616573|616574|616575|616576|616577|616578|616579|616580|616581|616582|616583|616584|616585|616586|616587|616588|616589|616590|616591|616592|616593|616594|616595|616596|616597|616598|616599|616600|616601|616602|616603|616604|616605|616606|616607|616608|616609|616610|616611|616612|616613|616614|616615|616616|616617|616618|616619|616620|616621|616622|616623|616624|616625|616626|616627|616628|616629|616630|616631|616632|616633|616634|616635|616636|616637|616638|616639|616640|616641|616642|616643|616644|616645|616646|616647|616648|616649|616650|616651|616652|616653|616654|616655|616656|616657|616658|616659|616660|616661|616662|616663|616664|616665|616666|616667|616668|616669|616670|616671|616672|616673|616674|616675|616676|616677|616678|616679|616680|616681|616682|616683|616684|616685|616686|616687|616688|616689|616690|616691|616692|616693|616694|616695|616696|616697|616698|616699|616700|616701|616702|616703|616704|616705|616706|616707|616708|616709|616710|616711|616712|616713|616714|616715|616716|616717|616718|616719|616720|616721|616722|616723|616724|616725|616726|616727|616728|616729|616730|616731|616732|616733|616734|616735|616736|616737|616738|616739|616740|616741|616742|616743|616744|616745|616746|616747|616748|616749|616750|616751|616752|616753|616754|616755|616756|616757|616758|616759|616760|616761|616762|616763|616764|616765|616766|616767|616768|616769|616770|616771|616772|616773|616774|616775|616776|616777|616778|616779|616780|616781|616782|616783|616784|616785|616786|616787|616788|616789|616790|616791|616792|616793|616794|616795|616796|616797|616798|616799|616800|616801|616802|616803|616804|616805|616806|616807|616808|616809|616810|616836|616837|616838|616839|616840|616841|616842|616843|616844|616845|616846|616847|616848|616849|616850|616851|616852|616853|616854|616855|616856|616857|616858|616859|616860|616861|616862|616863|616864|616865|616866|616867|616868|616869|616870|616871|616872|616873|616874|616875|616876|616877|616878|616879|616880|616881|616882|616883|616884|616885|616886|616887|616888|616889|616934|616935|616936|616937|616938|616939|616940|616941|616942|616943|616944|616945|616946|616947|616948|616949|616950|616951|616952|616953|616954|616955|616956|616957|616958|616959|616960|616961|616962|616963|616964|616965|616966|616967|616968|616969|616970|616971|616972|616973|616974|616975|616976|616977|616978|616979|616980|616981|616982|616983|616984|616985|616986|616987|616988|616989|616990|616991|616992|616993|616994|616995|616996|616997|616998|616999|617000|617001|617002|617003|617004|617005|617006|617007|617008|617009|617010|617011|617012|617013|617014|617015|617016|617017|617018|617019|617020|617021|617022|617023|617024|617025|617026|617027|617028|617029|617030|617031|617032|617033|617034|617035|617036|617037|617038|617039|617040|617041|617042|617043|617044|617045|617046|617047|617048|617049|617050|617051|617052|617053|617054|617055|617056|617057|617058|617059|617060|617061|617062|617063|617064|617065|617066|617067|617068|617069|617070|617071|617072|617073|617074|617075|617076|617077|617078|617079|617080|617081|617082|617083|617084|617085|617086|617087|617088|617089|617090|617091|617092|617093|617094|617095|617096|617097|617098|617099|617100|617101|617102|617103|617104|617105|617106|617107|617108|617109|617110|617111|617112|617113|617114|617115|617116|617117|617118|617119|617120|617121|617122|617123|617124|617125|617126|617127|617128|617129|617130|617131|617132|617133|617134|617135|617136|617137|617138|617139|617140|617141|617142|617143|617144|617145|617146|617147|617148|617149|617150|617151|617152|617153|617154|617155|617156|617157|617158|617159|617160|617161|617162|617163|617164|617165|617166|617167|617168|617169|617170|617171|617172|617173|617174|617175|617176|617177|617178|617179|617180|617181|617182|617183|617184|617185|617186|617187|617188|617189|617190|617191|617192|617193|617194|617195|617196|617197|617198|617199|617200|617201|617202|617203|617204|617205|617206|617207|617208|617209|617210|617211|617212|617213|617214|617215|617216|617217|617218|617219|617220|617221|617222|617223|617224|617225|617226|617227|617228|617229|617230|617231|617232|617233|617234|617235|617236|617237|617238|617239|617240|617241|617242|617243|617244|617245|617246|617247|617248|617249|617250|617251|617252|617253|617254|617255|617256|617257|617258|617259|617260|617261|617262|617263|617264|617265|617266|617267|617268|617269|617270|617271|617272|617273|617274|617275|617276|617277|617278|617279|617280|617281|617282|617283|617284|617285|617286|617287|617368|617369|617370|617371|617372|617373|617374|617375|617376|617377|617378|617379|617380|617381|617382|617383|617384|617385|617386|617387|617388|617389|617390|617391|617392|617393|617394|617395|617396|617397|617398|617399|617400|617401|617402|617403|617404|617405|617406|617407|617408|617409|617410|617411|617412|617413|617414|617415|617416|617417|617418|617419|617420|617421|617422|617423|617424|617425|617426|617427|617428|617429|617430|617431|617432|617433|617434|617435|617436|617437|617438|617439|617440|617441|617442|617443|617444|617445|617446|617447|617448|617449|617450|617451|617452|617453|617454|617455|617456|617457|617458|617459|617460|617461|617462|617463|617464|617465|617466|617467|617468|617469|617470|617471|617472|617473|617474|617475|617476|617477|617478|617479|617480|617481|617482|617483|617484|617485|617486|617487|617488|617489|617490|617491|617492|617493|617494|617495|617496|617497|617498|617499|617500|617501|617502|617503|617504|617505|617506|617507|617508|617509|617510|617511|617512|617513|617514|617515|617516|617517|617518|617519|617520|617521|617522|617523|617524|617525|617526|617527|617528|617529|617530|617531|617532|617533|617534|617535|617536|617537|617538|617539|617540|617541|617542|617543|617544|617545|617546|617547|617548|617551|617552|617553|617554|617555|617556|617557|617558|617559|617560|617561|617562|617563|617564|617565|617566|617567|617568|617569|617570|617571|617572|617573|617574|617575|617576|617577|617578|617579|617580|617581|617582|617583|617584|617585|617586|617587|617588|617589|617590|617591|617592|617593|617594|617595|617596|617597|617598|617599|617600|617601|617602|617603|617604|617605|617606|617607|617608|617609|617610|617611|617618|617619|617620|617621|617622|617623|617624|617625|617626|617627|617628|617629|617630|617631|617632|617633|617634|617635|617636|617637|617638|617639|617640|617641|617642|617643|617644|617645|617646|617647|617648|617649|617650|617651|617652|617653|617654|617655|617656|617657|617658|617659|617660|617661|617662|617663|617664|617665|617666|617667|617668|617669|617670|617671|617672|617673|617674|617675|617676|617677|617678|617679|617680|617681|617682|617683|617684|617685|617686|617687|617688|617689|617690|617691|617692|617693|617694|617695|617696|617697|617698|617699|617700|617701|617702|617703|617704|617705|617706|617707|617708|617709|617710|617711|617712|617713|617714|617715|617716|617717|617718|617719|617720|617721|617722|617723|617724|617725|617726|617727|617728|617729|617730|617731|617732|617733|617734|617735|617736|617737|617738|617739|617740|617741|617742|617743|617744|617745|617746|617747|617748|617749|617750|617751|617752|617753|617754|617755|617756|617757|617758|617759|617760|617761|617762|617763|617764|617765|617766|617767|617768|617769|617770|617771|617772|617773|617774|617775|617776|617777|617778|617779|617780|617781|617782|617783|617784|617785|617786|617787|617788|617789|617790|617791|617792|617793|617794|617795|617796|617797|617798|617799|617800|617801|617802|617803|617804|617805|617806|617807|617808|617809|617810|617811|617812|617813|617814|617815|617816|617817|617818|617819|617820|617821|617822|617823|617824|617825|617826|617827|617828|617829|617830|617831|617832|617833|617834|617835|617836|617837|617838|617839|617840|617841|617842|617843|617844|617845|617846|617847|617848|617849|617850|617912|617913|617914|617915|617916|617917|617918|617919|617920|617921|617922|617923|617924|617925|617926|617927|617928|617929|617930|617931|617932|617933|617934|617935|617936|617937|617938|617939|617940|617941|617942|617943|617944|617945|617946|617947|617948|617949|617950|617951|617952|617953|617954|617955|617956|617957|617958|617959|617960|617961|617962|617963|617964|617965|617966|617967|617968|617969|617970|617971|617972|617973|617974|617975|617976|617977|617978|617979|617980|617981|617982|617983|617984|617985|617986|617987|617988|617989|617990|617991|617992|617993|617994|617995|617996|617997|617998|617999|618000|618001|618002|618003|618004|618005|618006|618007|618008|618009|618010|618011|618012|618013|618014|618015|618016|618017|618018|618019|618020|618021|618022|618023|618024|618025|618026|618027|618028|618029|618030|618031|618032|618033|618034|618035|618036|618037|618038|618039|618040|618041|618042|618043|618044|618045|618046|618047|618048|618049|618050|618051|618052|618053|618054|618055|618056|618057|618058|618059|618060|618061|618062|618063|618064|618065|618066|618067|618068|618069|618070|618071|618072|618073|618074|618075|618076|618077|618078|618079|618080|618081|618082|618083|618084|618085|618086|618087|618088|618089|618090|618091|618092|618093|618094|618095|618096|618097|618098|618099|618100|618101|618102|618103|618104|618105|618106|618107|618108|618109|618110|618111|618112|618113|618114|618115|618116|618117|618118|618119|618120|618121|618122|618123|618124|618125|618126|618127|618128|618129|618130|618131|618132|618133|618134|618135|618136|618137|618138|618139|618140|618141|618142|618143|618144|618145|618146|618147|618148|618149|618150|618151|618152|618153|618154|618155|618156|618157|618158|618159|618160|618161|618162|618163|618164|618165|618166|618167|618168|618169|618170|618171|618172|618173|618174|618175|618176|618177|618178|618179|618180|618181|618182|618183|618184|618185|618186|618187|618188|618189|618190|618191|618192|618193|618194|618195|618196|618197|618198|618199|618200|618201|618202|618203|618204|618205|618206|618207|618208|618209|618210|618211|618212|618213|618345|618346|618347|618348|618349|618350|618351|618352|618353|618354|618355|618356|618357|618358|618359|618360|618361|618362|618363|618364|618365|618366|618367|618368|618369|618370|618371|618372|618373|618374|618375|618376|618377|618378|618379|618380|618381|618382|618383|618384|618385|618386|618387|618388|618389|618390|618391|618392|618393|618394|618395|618396|618397|618398|618399|618400|618401|618402|618403|618404|618405|618406|618407|618408|618409|618410|618411|618412|618413|618414|618415|618416|618417|618418|618419|618420|618421|618422|618423|618424|618425|618426|618427|618428|618429|618430|618431|618432|618433|618434|618435|618436|618437|618438|618439|618440|618441|618442|618443|618444|618445|618446|618447|618448|618449|618450|618451|618452|618453|618454|618455|618456|618457|618458|618459|618460|618461|618462|618463|618464|618465|618466|618467|618468|618469|618470|618471|618472|618473|618474|618475|618476|618477|618478|618479|618480|618481|618482|618483|618484|618485|618486|618487|618488|618489|618490|618491|618492|618493|618494|618495|618496|618497|618498|618499|618500|618501|618502|618503|618504|618505|618506|618507|618508|618509|618510|618511|618512|618513|618514|618515|618516|618517|618518|618519|618520|618521|618522|618523|618524|618525|618526|618527|618528|618529|618530|618531|618532|618533|618534|618535|618536|618537|618538|618539|618540|618541|618542|618543|618544|618545|618546|618547|618548|618549|618550|618551|618552|618553|618554|618555|618556|618557|618558|618559|618560|618561|618562|618563|618564|618565|618566|618567|618568|618569|618570|618571|618572|618573|618574|618575|618576|618577|618578|618579|618580|618581|618582|618583|618584|618585|618586|618587|618588|618589|618590|618591|618592|618593|618594|618595|618596|618597|618598|618599|618600|618601|618602|618603|618604|618605|618606|618607|618608|618609|618610|618611|618612|618613|618614|618615|618616|618617|618618|618619|618620|618621|618622|618623|618624|618625|618626|618627|618628|618629|618630|618631|618632|618633|618634|618635|618636|618637|618638|618639|618640|618641|618642|618643|618644|618645|618646|618647|618648|618649|618650|618651|618652|618653|618654|618655|618656|618657|618658|618659|618660|618661|618662|618663|618664|618665|618666|618667|618668|618669|618670|618671|618672|618673|618674|618675|618676|618677|618678|618679|618680|618681|618682|618683|618684|618685|618686|618687|618688|618689|618690|618691|618692|618693|618694|618695|618696|618697|618698|618699|618700|618701|618702|618703|618704|618705|618706|618707|618708|618709|618710|618711|618712|618713|618714|618715|618716|618717|618718|618719|618720|618721|618722|618723|618724|618725|618726|618727|618728|618729|618730|618731|618732|618733|618734|618735|618736|618737|618738|618739|618740|618741|618742|618743|618744|618745|618746|618747|618748|618749|618750|618751|618752|618753|618754|618755|618756|618757|618758|618759|618760|618761|618762|618763|618764|618765|618766|618767|618768|618769|618770|618771|618772|618773|618774|618775|618776|618777|618778|618779|618780|618781|618782|618783|618784|618785|618786|618787|618788|618789|618790|618791|618792|618793|618794|618795|618796|618797|618798|618799|618800|618801|618802|618803|618804|618805|618806|618807|618808|618809|618810|618811|618812|618813|618814|618815|618816|618817|618818|618819|618820|618821|618822|618823|618824|618825|618826|618827|618828|618829|618830|618831|618832|618833|618834|618835|618836|618837|618838|618839|618840|618841|618842|618843|618888|618889|618890|618891|618892|618893|618894|618895|618896|618897|618898|618899|618900|618901|618902|618903|618904|618905|618906|618907|618908|618909|618910|618911|618912|618913|618914|618915|618916|618917|618918|618919|618920|618921|618922|618923|618924|618925|618926|618927|618972|618973|618974|618975|618976|618977|618978|618979|618980|618981|618982|618983|618984|618985|618986|618987|618988|618989|618990|618991|618992|618993|618994|618995|618996|618997|618998|618999|619000|619001|619002|619003|619012|619013|619014|619015|619016|619017|619018|619019|619020|619021|619022|619023|619024|619025|619026|619027|619028|619029|619030|619031|619032|619033|619034|619035|619036|619037|619038|619039|619040|619041|619042|619043|619044|619045|619050|619052|619059|619062|619063|619064|619065|619066|619067|619068|619069|619070|619071|619072|619073|619074|619076|619077|619079|619080|619081|619084|619087|619088|619089|619091|619097|619099|619101|619104|619105|619106|619107|619108|619109|619111|619113|619115|619116|619121|619124|619126|619127|619128|619129|619130|619133|619134|619137|619139|619140|619141|619142|619143|619144|619145|619146|619147|619148|619149|619151|619153|619154|619155|619156|619157|619158|619159|619160|619161|619162|619163|619164|619165|619166|619167|619168|619169|619170|619171|619173|619176|619177|619180|619181|619183|619184|619185|619186|619187|619188|619189|619190|619191|619192|619194|619195|619196|619198|619199|619200|619201|619202|619203|619204|619205|619206|619207|619208|619209|619210|619211|619212|619213|619214|619216|619217|619219|619220|619221|619222|619223|619224|619225|619226|619227|619228|619229|619230|619231|619232|619233|619234|619235|619236|619237|619238|619239|619240|619241|619243|619244|619247|619248|619250|619251|619252|619253|619254|619255|619256|619257|619258|619259|619260|619261|619262|619263|619264|619266|619267|619268|619269|619271|619272|619273|619274|619275|619276|619279|619282|619283|619286|619287|619288|619289|619290|619291|619292|619293|619294|619295|619296|619297|619298|619299|619300|619301|619302|619303|619304|619305|619306|619307|619308|619309|619310|619311|619312|619313|619314|619315|619316|619317|619318|619319|619320|619321|619322|619323|619324|619325|619326|619327|619328|619329|619330|619331|619332|619333|619334|619335|619336|619337|619338|619339|619340|619341|619342|619343|619344|619346|619347|619348|619349|619350|619351|619352|619353|619354|619355|619356|619357|619358|619359|619360|619361|619362|619363|619364|619365|619366|619368|619369|619370|619371|619372|619373|619375|619376|619377|619378|619379|619380|619381|619382|619383|619384|619385|619386|619387|619388|619389|619390|619391|619392|619393|619394|619395|619396|619397|619398|619399|619400|619401|619402|619404|619405|619406|619408|619409|619410|619411|619412|619413|619414|619415|619416|619418|619419|619420|619421|619423|619425|619426|619429|619430|619431|619432|619433|619434|619435|619436|619437|619438|619439|619440|619441|619442|619443|619445|619449|619451|619452|619454|619456|619458|619460|619461|619465|619467|619468|619469|619470|619471|619472|619473|619474|619475|619476|619477|619478|619479|619480|619481|619482|619483|619484|619485|619486|619487|619488|619489|619490|619491|619492|619493|619494|619495|619496|619497|619498|619499|619500|619503|619504|619505|619507|619508|619510|619511|619512|619513|619514|619517|619518|619520|619521|619522|619523|619524|619525|619526|619528|619529|619530|619531|619532|619534|619536|619537|619538|619540|619541|619542|619543|619545|619546|619547|619548|619549|619550|619551|619552|619553|619554|619556|619557|619558|619559|619560|619561|619562|619563|619564|619565|619566|619567|619568|619569|619570|619571|619572|619573|619574|619575|619576|619577|619578|619579|619581|619582|619583|619584|619585|619586|619587|619589|619590|619591|619592|619593|619598|619599|619601|619603|619604|619605|619606|619607|619608|619609|619610|619611|619612|619613|619614|619615|619616|619617|619618|619619|619620|619621|619622|619623|619624|619625|619626|619627|619628|619629|619630|619631|619632|619633|619634|619635|619636|619637|619638|619639|619640|619641|619642|619643|619644|619645|619646|619647|619648|619649|619650|619651|619652|619653|619654|619655|619656|619657|619658|619659|619660|619661|619662|619663|619664|619665|619666|619667|619668|619669|619670|619671|619672|619674|619676|619677|619678|619679|619680|619683|619684|619685|619687|619690|619691|619692|619693|619694|619695|619696|619697|619698|619699|619700|619701|619702|619703|619704|619705|619706|619707|619708|619709|619710|619711|619712|619713|619714|619715|619716|619717|619718|619719|619720|619721|619722|619723|619724|619725|619726|619727|619728|619729|619730|619731|619732|619733|619734|619735|619736|619737|619738|619739|619740|619741|619742|619743|619744|619745|619746|619747|619748|619749|619750|619751|619752|619753|619754|619755|619756|619757|619758|619759|619760|619761|619762|619763|619764|619765|619766|619768|619769|619770|619771|619772|619773|619774|619775|619776|619777|619779|619780|619784|619785|619786|619787|619788|619789|619790|619793|619794|619795|619796|619798|619799|619800|619802|619803|619804|619806|619807|619808|619809|619810|619812|619813|619814|619815|619816|619817|619818|619819|619820|619821|619822|621122|621123|621139|621155|621156|621157|621225|621268|621273|621275|621285|621327|621329|621330|621331|621336|621392|621406|621409|621422|621426|621428|621446|621450|621521|621528|621533|621534|621546|621549|621558|621561|621570|621589|621592|621598|621599|621601|621603|621605|621606|621649|621723|621830|621925|621931|622450|622586|622620|622628|622667|622670|623004|623217|623635|625973|627031|627032|627085|627099|627102|627114|627168|627182|627630|627634|627647|627663|627665|628079|628080|628082|628088|628092|628095|628103|629360|629362|629365|629375|629377|629378|629380|629385|629389|629390|629400|629404|629409|629411|629414|629421|629422|629426|629817|629824|629825|629827|629828|629829|629832|630074|630077|630080|630084|630102|630104|630107|630120|630123|630124|630126|630130|630133|630135|630138|630140|630141|630156|630163|630169|630175|630179|630194|630196|630199|630218|630226|630232|630233|630238|630250|630254|630257|630259|630263|630264|630268|630275|630276|630279|630280|630287|630288|630294|630314|630334|630335|630336|630341|630342|630350|630351|630352|630359|630366|630631|630647|630649|630698|630704|630712|630715|631194|631201|631205|631208|631211|631212|631214|631218|631223|631225|631227|631229|631237|631257|631264|631701|631702|631703|631704|631705|631708|631713|631714|631731|631735|631740|632216|632217|632218|632265|632310|632361|632380|632419|632559|632565|632566|632567|632574|632576|632591|632599|632604|632608|632622|632624|632627|632644|632647|632648|632658|632663|632664|632666|632669|632675|632678|632680|632685|632695|632698|632699|632707|632711|632712|632726|632729|632740|632745|632754|632756|632757|632763|632768|632774|632778|632794|632803|632806|632810|632816|632823|632824|632825|632826|632828|632831|632833|632834|632836|632838|632839|632842|632847|632848|632858|632861|632864|632865|633078|633079|633080|633081|633082|633083|633084|633085|633086|633087|633088|633089|633090|633091|633092|633093|633094|633095|633096|633097|633098|633099|633100|633101|633102|633103|633104|633105|633106|633107|633108|633109|633110|633111|633112|633113|633114|633115|633116|633117|633118|633119|633120|633121|633122|633123|633124|633125|633126|633127|633128|633129|633130|633131|633132|633133|633134|633135|633136|633137|633138|633139|633140|633141|633142|633143|633144|633145|633146|633147|633148|633149|633150|633151|633152|633153|633154|633155|633156|633157|633158|633159|633160|633161|633162|633163|633164|633165|633166|633167|633168|633169|633170|633171|633172|633173|633174|633175|633176|633177|633178|633179|633180|633181|633182|633183|633184|633185|633186|633187|633188|633279|633285|633286|633290|633292|633295|633300|633308|633313|633317|633323|633326|633332|633333|633338|633342|633343|633347|633367|633372|633375|633376|633379|633396|633397|633409|633423|633440|633442|633453|633851|633866|633874|633878|633891|633894|633899|633900|633928|634040|634041|634043|634062|634066|634076|634082|634087|634089|634092|634097|634105|634106|634107|634108|634112|634113|634118|634128|634135|634145|634146|634147|634148|634151|634154|634160|634164|634165|634191|634206|634207|634209|634213|634214|634220|634222|634223|634233|634235|634236|634237|634244|634245|634247|634248|634251|634261|634264|634268|634270|634272|634280|634282|634284|634285|634289|634292|634299|634307|634308|634316|634319|634332|634333|634335|634341|634342|634349|634352|634355|634357|634359|634364|634367|634379|634382|634388|634393|634402|634408|634409|634410|634411|634412|634414|634419|634422|634424|634425|634438|634441|634444|635452|635460|635468|635474|635487|635495|635508|635509|635512|635524|635525|635530|635577|635590|635591|635592|635595|635598|635600|635606|635613|635616|635618|635625|635956|636224|636227|636232|636233|636234|636250|636261|636263|636275|636279|636290|636291|636298|636303|637412|637434|637438|637443|637446|637453|637461|637468|637472|637473|637820|637825|637836|637853|637855|637856|637904|637927|638149|638155|638162|638168|638176|638180|638435|638437|638439|638447|638449|638450|638451|638462|638476|638478|638482|638483|638487|638498|638509|638516|638518|638523|638524|638529|638539|638542|638545|638546|638557|638561|638565|638570|638573|638578|638590|638592|638612|638613|638616|638618|638626|638677|638687|638689|638690|638691|638692|638703|638705|638880|638881|638889|638895|638922|638932|639212|639213|639216|639229|639231|639235|639237|639238|639262|639273|639281|639291|639372|639377|639383|639385|639397|639401|639406|639411|639414|639417|639422|639438|639439|639443|639445|639446|639455|639459|639469|639470|639471|639474|639478|639479|639483|639489|639492|639504|639519|639520|639537|639545|639547|639555|639567|639573|639576|639582|639587|639588|639595|639597|639604|639605|639606|639622|639633|639635|639637|639641|639646|639661|639673|639676|639677|639700|639704|639709|639710|640178|640182|640186|640187|640193|640276|640285|640286|640312|640507|640508|640512|640515|640517|640518|640675|640677|640678|640679|640680|640682|640686|640690|640692|640698|640933|640935|640941|640943|640945|640953|640954|641327|641341|641344|641634|641636|641637|641649|641651|641658|641684|641685|641688|641698|641699|641707|641715|641725|641730|641736|641737|641750|641753|641756|641770|641779|641789|641790|641800|641808|641809|641814|641816|641823|641825|641837|641838|641842|641848|641850|641856|641862|641863|641871|641876|641877|641882|641900|641901|641906|641911|641919|641924|641949|641957|641979|641996|642628|642631|642632|642792|642807|642816|642817|642822|642824|642828|642837|642840|642851|642857|642860|642867|642876|642878|642879|642880|642881|642898|642899|642904|642909|642910|642918|642921|642931|642938|642941|642942|642948|642951|642969|643633|643634|643635|643640|643648|643661|643669|643671|643675|643676|643686|643696|643697|643699|643701|643704|643707|643711|643723|643729|643730|643965|643968|643971|643974|643977|643981|643982|643983|643985|643986|643987|643988|643990|643993|643995|644000|644004|644007|644008|644014|644015|644023|644027|644030|644032|644041|644047|644049|644050|644052|644055|644057|644059|644067|644069|644073|644077|644078|644080|644081|644083|644084|644085|644090|644092|644093|644096|644100|644105|644109|644111|644112|644113|644115|644120|644130|644142|644151|644161|644191|644196|644206|644213|644221|644224|644251|644263|644271|644280|644283|644315|644321|644340|644342|644343|644358|644362|644365|644371|644372|644389|644395|644409|644410|644414|644415|644422|644428|644429|644441|644455|644457|644460|644462|644464|644465|644813|644822|644826|644852|644853|644857|644860|644864|644875|644887|644889|645349|645350|645357|645363|645365|645367|645368|645369|645376|645383|645386|645393|645394|645395|645396|645435|645438|645450|645469|645500|645504|645507|645514|645531|645533|645546|645552|645553|645556|645558|645561|645562|645577|645620|645632|645651|645669|645677|645727|645747|645776|645798|645800|645801|645804|645810|645822|645834|645836|645841|645843|645847|645848|645919|645922|645931|645934|645972|645973|645990|645991|645992|645996|646022|646025|646026|646031|646043|646046|646049|646064|646238|646241|646247|646254|646259|646269|646275|646281|646295|646298|646302|646306|646319|646328|646329|646340|646343|646344|646348|646349|646350|646351|646352|646367|646369|646370|646474|646480|646502|646543|646549|646558|646559|646568|646607|646727|646729|646732|646735|646743|646756|646768|646787|647299|647303|647309|647314|647315|647317|647318|647319|647483|647488|647489|647494|647497|647499|647504|647514|647516|647519|647523|647525|647530|647531|647532|647538|647540|647541|647547|647549|647559|647561|647562|647563|647566|647567|647569|647581|647583|647587|647603|647612|647654|647656|647668|647669|647673|647677|647680|647688|647693|648345|648350|648351|648357|648358|648391|649217|649253|649256|649263|649289|649292|649293|649299|649304|649313|649318|649324|649333|649338|649340|649341|649352|649356|649363|649367|650382|650683|650709|650763|650937|650940|650997|651014|651056|651221|651223|651235|651275|651276|651282|651283|651286|651303|651326|651334|651350|651351|651356|651359|651363|651370|651373|651379|651392|651398|651410|651421|651432|651449|651632|651704|651989|652006|652068|652077|652090|652093|652106|652153|652236|652243|652302|652405|652420|652450|652454|652483|652522|652532|652700|652717|652836|652855|652899|652932|652961|653033|653069|653072|653135|653181|653222|653223|653234|653247|653269|653275|653483|653495|653524|653702|654494|654784|655085|655108|655417|655455|655457|655458|655488|655562|655622|655623|655768|655770|655978|655979|656177|656199|656349|656357|656379|656382|656438|656496|656687|662975|665769|676947|676948|676949|676950|676951|676952|676953|676954|677029|677030|677031|677334|677460|677973|677979|678161|678166|678259|678284|678344|678493|678561|678592|678593|678606|678636|678687|678704|678722|678757|679825|682218|683293|683295|683296|683502|683503|683592|683681|683682|683684|683686|683687|683690|683691|683695|683697|683698|683699|684056|684058|684122|684123|684504|684529|684565|684663|684773|684774|684776|685170|685584|685600|685673|685674|685812|686217|686455|686517|686519|686522|686529|686535|686540|686569|686570|686572|686616|686652|686653|686655|686660|686661|686666|686679|686680|686681|686682|686684|686688|686738|686739|686741|686745|686955|686956|686962|686964|687084|687321|687554|687555|687557|687558|687559|687561|687569|687571|687572|687573|687576|687578|687579|687581|687627|687630|687634|687635|687705|687795|687797|687809|687920|687921|687922|688173|688174|688175|688176|688379|688380|688382|688383|688500|688501|688506|688507|688509|688512|688537|688540|688541|688546|688550|688628|688746|688748|688759|688761|688764|688771|688806|688810|688818|688819|688949|688950|688952|688953|689154|689267|689268|689273|689274|689780|689784|689785|690200|690406|690417|690419|690421|690432|690562|690624|690626|691128|691131|691180|691235|691237|691472|691567|691568|691583|691585|691587|691593|691643|691649|691730|691732|691734|691739|691740|691847|692105|692107|692108|692123|692124|692128|692258|692524|692714|692715|692720|692724|692732|692734|692743|692744|692749|692764|692766|692828|692831|692833|692837|692839|692895|692921|692924|693063|693081|693157|693160|693383|693384|693385|693389|693390|693391|693623|693624|693629|693630|693631|693632|693754|693756|693759|693765|693770|693771|693774|693803|693811|693812|693814|693821|693822|693825|693826|694053|694054|694056|694057|694065|694070|694071|694075|694076|694081|694138|694209|694280|694312|694314|694315|694316|694317|694318|694320|694321|694329|694330|694505|694695|694701|694702|694706|695143|695258|695259|695260|695261|695262|695398|695399|695478|695743|695762|695869|697542|697727|697728|697729|697730|698048|698225|698226|698807|698810|699194|699195|699197|699770|699796|699798|701126|701128|701453|702218|702219|702220|702458|702703|702708|703553|703554|703991|704305|704328|704735|704750|709560|710046|710047|710048|710049|710050|710051|712086|712088|712101|712495|714793|715262|715264|715649|717395|718840|718841|718842|720998|721001|721150|721426|721567|721571|721572|721574|723401|723402|723671|723698|724183|724572|725504|725875|725876|725878|726351|726486|726489|727096|727153|727379|729132|729135|730331|732317|733663|734802|734839|735235|735236|735237|735238|735239|735899|736039|736762|737487|737626|738106|738215|738803|739061|739062|739410|739418|739419|739420|739423|739426|739431|740676|740679|740681|741516|741528|741532|741537|742786|742787|744938|745151|746526|747250|747251|747255|747669|747671|747674|747675|747679|748433|749130|749131|749136|749205|749207|749208|749624|749625|749627|749628|749630|749631|749632|749633|750357|750714|751497|751844|751850|751855|751856|752313|752401|752402|752404|752406|752410|752411|752779|752782|753243|753528|753798|753801|753802|753812|753813|754223|754224|754226|754228|754231|754234|754239|754240|754243|754790|754975|754981|754989|754995|755005|755032|755335|755336|755747|755750|755754|755756|755762|755763|755779|755875|755876|756004|756007|756155|756481|756483|756640|756644|756646|756652|756708|758024|758025|759038|759129|759353|759374|759534|759751|760005|760226|760265|760527|760528|760596|760751|760752|760939|761307|761325|761813|761970|761971|761974|761976|761978|762870|762873|762876|762877|763191|763268|763270|763271|763273|763274|763275|763278|763279|763297|763300|763301|763303|763308|763315|763318|763323|763331|763332|763335|763336|763341|763342|763343|763503|763829|763840|764080|764081|764086|764506|764516|764542|764679|764683|764685|764688|764696|764702|764703|764705|764710|764722|764727|764731|764824|764829|764830|764832|764833|764838|764840|764842|764843|764845|764846|764851|764854|764857|764858|764861|764862|764863|764890|764892|764902|765082|765089|765239|765241|765246|765248|765265|765266|765268|765274|765284|765287|765288|765292|765295|765297|765304|765305|765312|765325|765326|765328|765332|765335|765346|765347|765350|766008|766010|766011|766016|766330|766343|766345|766924|766925|767206|767223|767523|767528|767535|767543|767730|768021|768022|768037|768039|768041|768042|768125|768130|768133|768134|768139|768154|768158|768163|768169|768171|768175|768177|768179|768181|768185|768190|768203|768582|768674|769010|769011|769460|769463|769466|769467|769476|769477|769481|769482|769483|769519|769524|769529|769530|769537|769538|769869|769961|769962|769973|769974|769975|769978|769989|769996|769997|769998|769999|770000|770003|770012|770014|770017|770421|770434|770440|770598|770601|770606|770609|770614|770616|770619|770623|770624|770629|770631|770634|770636|770638|770642|770644|770665|770669|770689|770697|770705|770725|770727|770731|770732|770742|770745|770747|770750|770784|770785|770789|770790|770794|771014|771017|771019|771024|771026|771342|771357|771367|771372|771373|771376|771386|771530|771531|771546|771673|771679|771690|771697|771702|771703|771737|771857|772200|772306|772308|772314|772320|772329|772330|772334|772351|772353|772382|772392|772393|772395|772846|772849|772852|772853|772854|773480|773487|773500|774748|774852|774854|774869|775586|775599|775685|775692|775722|775732|775747|775752|775773|776251|776292|776295|776297|776303|776367|776373|776496|776654|776684|776840|777482|778239|779037|779232|780709|781151|781152|781372|781374|781375|781378|781387|781391|781645|781646|781651|781955|782079|782085|782087|782090|782132|782133|782134|782135|782140|782141|782369|782761|782825|782896|783166|783170|783485|783524|783754|783758|783768|783822|783833|783837|783851|783852|783856|784299|784340|784341|784444|784446|784449|784570|784571|784572|784573|784575|784580|784581|784584|784585|784587|784592|784841|785168|785175|785201|785209|785220|785221|785223|785226|785348|785357|785359|785499|785500|785501|785503|785511|785513|785532|785584|785588|785594|785601|785603|785628|785652|785655|785661|785672|785673|785674|785675|785677|785706|785718|785756|785757|786006|786007|786013|786046|786570|787095|787103|787224|787227|787263|787304|787307|787309|787420|787444|787798|787842|787845|787847|788122|788247|788864|789409|789422|789423|789425|789429|789432|789438|789453|789457|789462|789465|789478|789482|789484|789486|789487|789488|789545|789547|789558|789565|789567|789568|789570|789572|789575|789582|789600|789603|789604|789608|789609|789611|789613|789617|789618|789626|789628|789633|789640|789663|789676|789688|789700|789754|789755|789756|789757|789758|789759|789760|789761|789762|789763|789764|789765|789766|789767|789768|789769|789770|789771|789772|789773|789774|789775|790184|790278|790313|790386|790478|790490|790492|790493|790565|790818|790819|791036|791058|791059|791090|791320|791512|791636|791774|791797|791804|791812|793403|795153|795454|795606|795608|795691|795725|796402|796512|796513|797288|797363|797520|797545|798083|799421|799657|800019|801662|804935|806113|806452|806453|806454|806455|806456|806457|806458|806459|806460|806461|806462|806463|806464|806465|806466|806467|806468|806469|806470|806471|806472|806473|806474|806475|806476|806477|806478|806479|806480|806481|806482|806483|806484|806485|806486|806487|806488|806489|806490|806491|806492|806493|806494|806495|806496|806497|806498|806499|806500|806501|806502|806503|806504|806505|806506|806507|806508|806509|806510|806511|806512|806513|806514|806515|806516|806517|806518|806519|806520|806521|806522|806523|806524|806525|806526|806527|806528|806529|806530|806531|806532|806533|806534|806535|806536|806537|806538|806539|806540|806541|806542|806543|806544|806545|806546|806547|806548|806549|806550|806551|806552|806553|806554|806555|806556|806557|806558|806559|806560|806561|806562|806563|806564|806565|806566|806567|806568|806569|806570|806571|806572|806573|806574|806575|806576|806577|806578|806579|806580|806581|806582|806583|806584|806585|806586|806587|806588|806589|806590|806591|806592|806593|806594|806595|806596|806597|806598|806599|806600|806601|806602|806603|806604|806605|806606|806607|806608|806609|806610|806611|806612|806613|806614|806615|806616|806617|806618|806619|806620|806621|806622|806623|806624|806625|806626|806627|806628|806629|806630|806631|806632|806633|806634|806635|806636|806637|806638|806639|806640|806641|806642|806643|806644|806645|806646|806647|806648|806649|806650|806651|806652|806653|806654|806655|806656|806657|806658|806659|806660|806661|806662|806663|806664|806665|806666|806667|806668|806669|806670|806671|806672|806673|806674|806675|806676|806677|806678|806679|806680|806681|806682|806683|806684|806685|806686|806687|806688|806689|806690|806691|806692|806693|806694|806695|806696|806697|806698|806699|806700|806701|806702|806703|806704|806705|806706|806707|806708|806709|806710|806711|806712|806713|806714|806715|806716|806717|806718|806719|806720|806721|806722|806723|806724|806725|806726|806727|806728|806729|806730|806731|806732|806733|806734|806735|806736|806737|806738|806739|806740|806741|806742|806743|806744|806745|806746|806747|806748|806749|806750|806751|806752|806753|806754|806755|806756|806757|806758|806759|806760|806761|806762|806763|806764|806765|806766|806767|806768|806769|806770|806771|806772|806773|806774|806775|806776|806777|806778|806779|806780|806781|806782|806783|806784|806785|806786|806787|806788|806789|806790|806791|806792|806793|806794|806795|806796|806797|806798|806799|806800|806801|806802|806803|806804|806805|806806|806807|806808|806809|806810|806811|806812|806813|806814|806815|806816|806817|806818|806819|806820|806821|806822|806823|806824|806825|806826|806827|806828|806829|806830|806831|806832|806833|806834|806835|806836|806837|806838|806839|806840|806841|806842|806843|806844|806845|806846|806847|806848|806849|806850|806851|806852|806853|806854|806855|806856|806857|806858|806859|806860|806861|806862|806863|806864|806865|806866|806867|806868|806869|806870|806871|806872|806873|806874|806875|806876|806877|806878|806879|806880|806881|806882|806883|806884|806885|806886|806887|806888|806889|806890|806891|806892|806893|806894|806895|806896|806897|806898|806899|806900|806901|806902|806903|806904|806905|806906|806907|806908|806909|806910|806911|806912|806913|806914|806915|806916|806917|806918|806919|806920|806921|806922|806923|806924|806925|806926|806927|806928|806929|806930|806931|806932|806933|806934|806935|806936|806937|806938|806939|806940|806941|806942|806943|806944|806945|806946|806947|806948|806949|806950|806951|806952|806953|806954|806955|806956|806957|806958|806959|806960|806961|806962|806963|806964|806965|806966|806967|806968|806969|806970|806971|806972|806973|806974|806975|806976|806977|806978|806979|806980|806981|806982|806983|806984|806985|806986|806987|806988|806989|806990|806991|806992|806993|806994|806995|806996|806997|806998|806999|807000|807001|807002|807003|807004|807005|807006|807007|807008|807009|807010|807011|807012|807013|807014|807015|807016|807017|807018|807019|807020|807021|807022|807023|807024|807025|807026|807027|807028|807029|807030|807031|807032|807033|807034|807035|807036|807037|807038|807039|807040|807041|807042|807043|807044|807045|807046|807047|807048|807049|807050|807051|807052|807053|807054|807055|807056|807057|807058|807059|807060|807061|807062|807063|807064|807065|807066|807067|807068|807069|807070|807071|807072|807073|807074|807075|807076|807077|807078|807079|807080|807081|807082|807083|807084|807085|807086|807087|807088|807089|807090|807091|807092|807093|807094|807095|807096|807097|807098|807099|807100|807101|807102|807103|807104|807105|807106|807107|807108|807109|807110|807111|807112|807113|807114|807115|807116|807117|807118|807119|807120|807121|807122|807123|807124|807125|807126|807127|807128|807129|807130|807131|807132|807133|807134|807135|807136|807137|807138|807139|807140|807141|807142|807143|807144|807145|807146|807147|807148|807149|807150|807151|807152|807153|807154|807155|807156|807157|807158|807159|807160|807161|807162|807163|807164|807165|807166|807167|807168|807169|807170|807171|807172|807173|807174|807175|807176|807177|807178|807179|807180|807181|807182|807183|807184|807185|807186|807187|807188|807189|807190|807191|807192|807193|807194|807195|807196|807197|807198|807199|807200|807201|807202|807203|807204|807205|807206|807207|807208|807209|807210|807211|807212|807213|807214|807215|807216|807217|807218|807219|807220|807221|807222|807223|807224|807225|807226|807227|807228|807229|807230|807231|807232|807233|807234|807235|807236|807237|807238|807239|807240|807241|807242|807243|807244|807245|807246|807247|807248|807249|807250|807251|807252|807253|807254|807255|807256|807257|807258|807259|807260|807261|807262|807263|807264|807265|807266|807267|807268|807269|807270|807271|807272|807273|807274|807275|807276|807277|807278|807279|807280|807281|807282|807283|807284|807285|807286|807287|807288|807289|807290|807291|807292|807293|807294|807295|807296|807297|807298|807299|807300|807301|807302|807303|807304|807305|807306|807307|807308|807309|807310|807311|807312|807313|807314|807315|807316|807317|807318|807319|807320|807321|807322|807323|807324|807325|807326|807327|807328|807329|807330|807331|807332|807333|807334|807335|807336|807337|807338|807339|807340|807341|807342|807343|807344|807345|807346|807347|807348|807349|807350|807351|807352|807353|807354|807355|807356|807357|807358|807359|807360|807361|807362|807363|807364|807365|807366|807367|807368|807369|807370|807371|807372|807373|807374|807375|807376|807377|807378|807379|807380|807381|807382|807383|807384|807385|807386|807387|807388|807389|807390|807391|807392|807393|807394|807395|807396|807397|807398|807399|807400|807401|807402|807403|807404|807405|807406|807407|807408|807409|807410|807411|807412|807413|807414|807415|807416|807417|807418|807419|807420|807421|807422|807423|807424|807425|807426|807427|807428|807429|807430|807431|807432|807433|807434|807435|807436|807437|807438|807439|807440|807441|807442|807443|807444|807445|807446|807447|807448|807449|807450|807451|807452|807453|807454|807455|807456|807457|807458|807459|807460|807461|807462|807463|807464|807465|807466|807467|807468|807469|807470|807471|807472|807473|807474|807475|807476|807477|807478|807479|807480|807481|807482|807483|807484|807485|807486|807487|807488|807489|807490|807491|807492|807493|807494|807495|807496|807497|807498|807499|807517|807518|807519|807520|807521|807522|807523|807524|807525|807526|807527|807528|807529|807530|807531|807532|807533|807534|807535|807536|807537|807538|807539|807540|807541|807542|807543|807544|807545|807546|807547|807548|807549|807550|807551|807552|807553|807554|807555|807556|807557|807558|807559|807560|807561|807562|807563|807564|807565|807566|807567|807568|807569|807570|807571|807572|807573|807574|807575|807576|807577|807578|807579|807580|807581|807582|807583|807584|807585|807586|807587|807588|807589|807590|807591|807592|807593|807594|807595|807596|807597|807598|807599|807600|807601|807602|807603|807604|807605|807606|807607|807608|807609|807610|807611|807612|807613|807614|807615|807616|807617|807618|807619|807620|807621|807622|807623|807624|807625|807626|807627|807628|807629|807630|807631|807632|807633|807634|807635|807636|807637|807638|807639|807640|807641|807642|807643|807644|807645|807646|807647|807648|807649|807650|807651|807652|807653|807654|807655|807656|807657|807658|807659|807660|807661|807662|807663|807664|807665|807666|807667|807668|807669|807670|807671|807672|807673|807674|807675|807676|807677|807678|807679|807680|807681|807682|807683|807684|807685|807686|807687|807688|807689|807690|807691|807692|807693|807694|807695|807696|807697|807698|807699|807700|807701|807702|807703|807704|807705|807706|807707|807708|807709|807710|807711|807712|807713|807714|807715|807716|807717|807718|807719|807720|807721|807722|807723|807724|807725|807726|807727|807728|807729|807730|807731|807732|807733|807734|807735|807736|807737|807738|807739|807740|807741|807742|807743|807744|807745|807746|807747|807748|807749|807750|807751|807752|807753|807754|807755|807756|807757|807758|807759|807760|807761|807762|807763|807764|807765|807766|807767|807768|807769|807770|807771|807772|807773|807774|807775|807776|807777|807778|807779|807780|807781|807782|807783|807784|807785|807786|807787|807788|807789|807790|807791|807792|807793|807794|807795|807796|807797|807798|807799|807800|807801|807802|807803|807804|807805|807806|807807|807808|807809|807810|807811|807812|807813|807814|807815|807816|807817|807818|807819|807820|807821|807822|807823|807824|807825|807826|807827|807828|807829|807830|807831|807832|807833|807834|807835|807836|807837|807838|807839|807840|807841|807842|807843|807844|807845|807846|807847|807848|807849|807850|807851|807852|807853|807854|807855|807856|807857|807858|807859|807860|807861|807862|807863|807864|807865|807866|807867|807868|807869|807870|807871|807872|807873|807874|807875|807876|807877|807878|807879|807880|807881|807882|807883|807884|807885|807886|807887|807888|807889|807890|807891|807892|807893|807894|807895|807896|807897|807898|807899|807900|807901|807902|807903|807904|807905|807906|807907|807908|807909|807910|807911|807912|807913|807914|807915|807916|807917|807918|807919|807920|807921|807922|807923|807924|807925|807926|807927|807928|807929|807930|807931|807932|807933|807934|807935|807936|807937|807938|807939|807940|807941|807942|807943|807944|807945|807946|807947|807948|807949|807950|807951|807952|807953|807954|807955|807956|807957|807958|807959|807960|807961|807962|807963|807964|807965|807966|807967|807968|807969|807970|807971|807972|807973|807974|807975|807976|807977|807978|807979|807980|807981|807982|807983|807984|807985|807986|807987|807988|807989|807990|807991|807992|807993|807994|807995|807996|807997|807998|807999|808000|808001|808002|808003|808004|808005|808006|808007|808008|808009|808010|808011|808012|808013|808014|808015|808016|808017|808018|808019|808020|808021|808022|808023|808024|808025|808026|808027|808028|808029|808030|808031|808032|808033|808034|808035|808036|808037|808038|808039|808040|808041|808042|808043|808044|808045|808046|808047|808048|808049|808050|808051|808052|808053|808054|808055|808056|808057|808058|808059|808060|808061|808062|808063|808064|808065|808066|808067|808068|808069|808070|808071|808072|808073|808074|808075|808076|808077|808078|808079|808080|808081|808082|808083|808084|808085|808086|808087|808088|808089|808090|808091|808092|808093|808094|808095|808096|808097|808098|808099|808100|808101|808102|808103|808104|808105|808106|808107|808108|808109|808110|808111|808112|808113|808114|808115|808116|808117|808118|808119|808120|808121|808122|808123|808124|808125|808126|808127|808128|808129|808130|808131|808132|808133|808134|808135|808136|808137|808138|808139|808140|808141|808142|808143|808144|808145|808146|808147|808148|808149|808150|808151|808152|808153|808154|808155|808156|808157|808158|808159|808160|808161|808162|808163|808164|808165|808166|808167|808168|808169|808170|808171|808172|808173|808174|808175|808176|808177|808178|808179|808180|808181|808182|808183|808184|808185|808186|808187|808188|808189|808190|808191|808192|808193|808194|808195|808196|808197|808198|808199|808200|808201|808202|808203|808204|808205|808206|808207|808208|808209|808210|808211|808212|808213|808214|808215|808216|808217|808218|808219|808220|808221|808222|808223|808224|808225|808226|808227|808228|808229|808230|808231|808232|808233|808234|808235|808236|808237|808238|808239|808240|808241|808242|808243|808244|808245|808246|808247|808248|808249|808250|808251|808252|808253|808254|808255|808256|808257|808258|808259|808260|808261|808262|808263|808264|808265|808266|808267|808268|808269|808270|808271|808272|808273|808274|808275|808276|808277|808278|808279|808280|808281|808282|808283|808284|808285|808286|808287|808288|808289|808290|808291|808292|808293|808294|808295|808296|808297|808298|808299|808300|808301|808302|808303|808304|808305|808306|808307|808308|808309|808310|808311|808312|808313|808314|808315|808316|808317|808318|808319|808320|808321|808322|808323|808324|808325|808326|808327|808328|808329|808330|808331|808332|808333|808334|808335|808336|808337|808338|808339|808340|808341|808342|808343|808344|808345|808346|808347|808348|808349|808350|808351|808352|808353|808354|808355|808356|808357|808358|808359|808360|808361|808362|808363|808364|808365|808366|808367|808368|808369|808370|808371|808372|808373|808374|808375|808376|808377|808378|808379|808380|808381|808382|808383|808384|808385|808386|808387|808388|808389|808390|808391|808392|808393|808394|808395|808396|808397|808398|808399|808400|808401|808402|808403|808404|808405|808406|808407|808408|808409|808410|808411|808412|808413|808414|808415|808416|808417|808418|808419|808420|808421|808422|808423|808424|808425|808426|808427|808428|808429|808430|808431|808432|808433|808434|808435|808436|808437|808438|808439|808440|808441|808442|808443|808444|808445|808446|808447|808448|808449|808450|808451|808452|808453|808454|808455|808456|808457|808458|808459|808460|808461|808462|808463|808464|808465|808466|808467|808468|808469|808470|808471|808472|808473|808474|808475|808476|808477|808478|808479|808480|808481|808482|808483|808484|808485|808486|808487|808488|808489|808490|808491|808492|808493|808494|808495|808496|808497|808498|808499|808500|808501|808502|808503|808504|808505|808506|808507|808508|808509|808510|808511|808512|808513|808514|808515|808516|808517|808518|808519|808520|808521|808522|808523|808524|808525|808526|808527|808528|808529|808530|808531|808532|808533|808534|808535|808536|808537|808538|808539|808540|808541|808542|808543|808544|808545|808546|808547|808548|808549|808550|808551|808552|808553|808554|808555|808556|808557|808558|808559|808560|808561|808562|808563|808564|808565|808566|808567|808568|808569|808570|808574|808575|808576|808577|808578|808579|808580|808581|808582|808583|808584|808585|808586|808587|808588|808589|808590|808591|808592|808593|808594|808595|808596|808597|808598|808599|808600|808601|808602|808603|808604|808605|808606|808607|808608|808609|808610|808611|808612|808613|808614|808615|808616|808617|808618|808619|808620|808621|808622|808623|808624|808625|808626|808627|808628|808629|808630|808631|808632|808633|808634|808635|808636|808637|808638|808639|808640|808641|808642|808643|808644|808645|808646|808647|808648|808649|808650|808651|808652|808653|808654|808655|808656|808657|808658|808659|808660|808661|808662|808663|808664|808665|808666|808667|808668|808669|808670|808671|808672|808673|808674|808675|808676|808677|808678|808679|808680|808681|808682|808683|808684|808685|808686|808687|808688|808689|808690|808691|808692|808693|808694|808695|808696|808697|808698|808699|808700|808701|808702|808703|808704|808705|808706|808707|808708|808709|808710|808711|808712|808713|808714|808715|808716|808717|808718|808719|808720|808721|808722|808723|808724|808725|808726|808727|808728|808729|808730|808731|808732|808733|808734|808735|808736|808737|808738|808739|808740|808741|808742|808743|808744|808745|808746|808747|808748|808749|808750|808751|808752|808753|808754|808755|808756|808757|808758|808759|808760|808761|808762|808763|808764|808765|808766|808767|808768|808769|808770|808771|808772|808773|808774|808775|808776|808777|808778|808779|808780|808781|808782|808783|808784|808785|808786|808787|808788|808789|808790|808791|808792|808793|808794|808795|808796|808797|808798|808799|808800|808801|808802|808803|808804|808805|808806|808807|808808|808809|808810|808811|808812|808813|808814|808815|808816|808817|808818|808819|808820|808821|808822|808823|808824|808825|808826|808827|808828|808829|808830|808831|808832|808833|808834|808835|808836|808837|808838|808839|808840|808873|808874|808875|808876|808877|808878|808879|808880|808881|808882|808883|808884|808885|808886|808887|808888|808889|808890|808891|808892|808893|808894|808895|808896|808897|808898|808899|808900|808901|808902|808903|808904|808905|808906|808907|808908|808909|808910|808911|808912|808913|808914|808915|808916|808917|808918|808919|808920|808921|808922|808923|808924|808925|808926|808927|808928|808929|808930|808931|808932|808933|808934|808935|808936|808937|808938|808939|808940|808941|808942|808943|808944|808945|808987|808988|808989|808990|808991|808992|808993|808994|808995|808996|808997|808998|808999|809000|809001|809002|809003|809004|809005|809006|809007|809008|809009|809010|809011|809012|809013|809014|809015|809016|809017|809018|809019|809020|809021|809022|809023|809024|809025|809026|809027|809028|809029|809030|809031|809032|809033|809034|809035|809036|809037|809038|809039|809040|809041|809042|809043|809044|809045|809046|809047|809048|809049|809050|809051|809052|809053|809054|809055|809056|809057|809058|809059|809060|809061|809062|809063|809064|809065|809066|809067|809068|809069|809070|809071|809072|809073|809074|809075|809076|809077|809078|809079|809080|809081|809082|809083|809084|809085|809086|809087|809088|809089|809090|809091|809092|809093|809094|809095|809096|809097|809098|809099|809100|809101|809102|809103|809104|809105|809106|809107|809108|809109|809110|809111|809112|809113|809114|809115|809116|809117|809118|809119|809120|809121|809122|809123|809124|809125|809126|809127|809128|809129|809130|809131|809132|809133|809134|809135|809136|809137|809138|809139|809140|809141|809142|809143|809144|809145|809146|809147|809148|809149|809150|809151|809152|809153|809154|809155|809156|809157|809158|809159|809160|809161|809162|809163|809164|809165|809166|809167|809168|809169|809170|809171|809172|809173|809174|809175|809176|809177|809178|809179|809180|809181|809182|809183|809184|809185|809186|809187|809188|809189|809190|809191|809192|809193|809194|809195|809196|809197|809198|809199|809200|809201|809202|809203|809204|809205|809206|809207|809208|809209|809210|809211|809212|809213|809214|809215|809216|809217|809218|809219|809220|809221|809222|809223|809224|809225|809226|809227|809228|809229|809230|809231|809232|809233|809234|809235|809236|809237|809238|809239|809240|809241|809242|809243|809244|809245|809246|809247|809248|809249|809250|809251|809252|809253|809254|809255|809256|809257|809258|809259|809260|809261|809262|809263|809264|809265|809266|809267|809268|809269|809270|809271|809272|809273|809274|809275|809276|809277|809278|809279|809280|809281|809282|809283|809284|809285|809286|809287|809288|809289|809290|809291|809292|809293|809294|809295|809296|809297|809298|809299|809300|809301|809302|809303|809304|809305|809306|809307|809308|809309|809310|809311|809312|809313|809314|809315|809316|809317|809318|809319|809320|809321|809322|809323|809324|809325|809326|809327|809328|809329|809330|809331|809332|809333|809334|809335|809336|809337|809338|809339|809340|809341|809342|809343|809344|809345|809346|809347|809348|809349|809350|809351|809352|809353|809354|809355|809356|809357|809358|809359|809360|809361|809362|809363|809364|809365|809366|809367|809368|809369|809370|809371|809372|809373|809374|809375|809376|809377|809378|809379|809380|809381|809382|809383|809384|809385|809386|809387|809388|809389|809390|809391|809392|809393|809394|809395|809396|809397|809398|809399|809400|809401|809402|809403|809404|809405|809406|809407|809408|809409|809410|809411|809412|809413|809414|809415|809416|809417|809418|809419|809420|809421|809422|809423|809424|809425|809426|809427|809428|809429|809430|809431|809432|809433|809434|809435|809436|809437|809438|809439|809440|809441|809442|809443|809444|809445|809446|809447|809448|809449|809450|809451|809452|809453|809454|809455|809456|809457|809458|809459|809460|809461|809462|809463|809464|809465|809466|809467|809468|809469|809470|809471|809472|809473|809474|809475|809476|809477|809478|809479|809480|809481|809482|809483|809484|809485|809486|809487|809488|809489|809490|809491|809492|809493|809494|809495|809496|809497|809498|809499|809500|809501|809502|809503|809504|809505|809506|809507|809508|809509|809510|809511|809512|809513|809514|809515|809516|809517|809518|809519|809520|809521|809522|809523|809524|809525|809526|809527|809528|809529|809530|809531|809532|809533|809534|809535|809536|809537|809538|809539|809540|809541|809542|809543|809544|809545|809546|809547|809548|809549|809550|809551|809552|809553|809554|809555|809556|809557|809558|809559|809560|809561|809562|809563|809564|809565|809566|809567|809568|809569|809570|809571|809572|809573|809574|809575|809576|809577|809578|809579|809580|809581|809582|809583|809584|809585|809586|809587|809588|809589|809590|809591|809592|809593|809594|809595|809596|809597|809598|809599|809600|809601|809602|809603|809604|809605|809606|809607|809608|809609|809610|809611|809612|809613|809614|809615|809616|809617|809618|809619|809620|809621|809622|809623|809624|809625|809626|809627|809628|809629|809630|809631|809632|809633|809634|809635|809636|809637|809638|809639|809640|809641|809642|809643|809644|809645|809646|809647|809648|809649|809650|809651|809652|809653|809654|809655|809656|809657|809658|809659|809660|809661|809662|809663|809664|809665|809666|809667|809668|809669|809670|809671|809672|809673|809674|809675|809676|809677|809678|809679|809680|809681|809682|809683|809684|809685|809686|809687|809688|809689|809690|809691|809692|809693|809694|809695|809696|809697|809698|809699|809700|809701|809702|809703|809704|809705|809706|809707|809708|809709|809710|809711|809712|809713|809714|809715|809716|809717|809718|809719|809720|809721|809722|809723|809724|809725|809726|809727|809728|809729|809730|809731|809732|809733|809734|809735|809736|809737|809738|809739|809740|809741|809742|809743|809744|809745|809746|809747|809748|809749|809750|809751|809752|809753|809754|809755|809756|809757|809758|809759|809760|809761|809762|809763|809764|809765|809766|809767|809768|809769|809770|809771|809772|809773|809774|809775|809776|809777|809778|809779|809780|809781|809782|809783|809784|809785|809786|809787|809788|809789|809790|809791|809792|809793|809794|809795|809796|809797|809798|809799|809800|809801|809802|809803|809804|809805|809806|809807|809808|809809|809810|809811|809812|809813|809814|809815|809816|809817|809818|809819|809820|809821|809822|809823|809824|809825|809826|809827|809828|809829|809830|809831|809832|809833|809834|809835|809836|809837|809838|809839|809840|809841|809842|809843|809844|809845|809846|809847|809848|809849|809850|809851|809852|809853|809854|809855|809856|809857|809858|809859|809860|809861|809862|809863|809864|809865|809866|809867|809868|809869|809870|809871|809872|809873|809874|809875|809876|809877|809878|809879|809880|809881|809882|809883|809884|809885|809886|809887|809888|809889|809890|809891|809892|809893|809894|809895|809896|809897|809898|809899|809900|809901|809902|809903|809904|809905|809906|809907|809908|809909|809910|809911|809912|809913|809914|809915|809916|809917|809918|809919|809920|809921|809922|809923|809924|809925|809926|809927|809928|809929|809930|809931|809932|809933|809934|809935|809936|809937|809938|809939|809940|809941|809942|809943|809944|809945|809946|809947|809948|809949|809950|809951|809952|809953|809954|809955|809956|809957|809958|809959|809960|809961|809962|809963|809964|809965|809966|809967|809968|809969|809970|809971|809972|809973|809974|809975|809976|809977|809978|809979|809980|809981|809982|809983|809984|809985|809986|809987|809988|809989|809990|809991|809992|809993|809994|809995|809996|809997|809998|809999|810000|810001|810002|810003|810004|810005|810006|810007|810008|810009|810010|810011|810012|810013|810014|810015|810016|810017|810018|810019|810020|810021|810022|810023|810024|810025|810026|810027|810028|810029|810030|810031|810032|810033|810034|810035|810036|810037|810038|810039|810040|810041|810042|810043|810044|810045|810046|810047|810048|810049|810050|810051|810052|810053|810054|810055|810056|810057|810058|810059|810060|810061|810062|810063|810064|810065|810066|810067|810068|810069|810070|810071|810072|810073|810074|810075|810076|810077|810078|810079|810080|810081|810082|810083|810084|810085|810086|810087|810088|810089|810090|810091|810092|810093|810094|810095|810096|810097|810098|810099|810100|810101|810102|810103|810104|810105|810106|810107|810108|810109|810110|810111|810112|810113|810114|810115|810116|810117|810118|810119|810120|810121|810122|810123|810124|810125|810126|810127|810128|810129|810130|810131|810132|810133|810134|810135|810136|810137|810138|810139|810140|810141|810142|810143|810144|810145|810146|810147|810148|810149|810150|810151|810152|810153|810154|810155|810156|810157|810158|810159|810160|810161|810162|810163|810164|810165|810166|810167|810168|810169|810170|810171|810172|810173|810174|810175|810176|810177|810178|810179|810180|810181|810182|810183|810184|810185|810186|810187|810188|810189|810190|810191|810192|810193|810194|810195|810196|810197|810198|810199|810200|810201|810202|810203|810204|810205|810206|810207|810208|810209|810210|810211|810212|810213|810214|810215|810216|810217|810218|810219|810220|810221|810222|810223|810224|810225|810226|810227|810228|810229|810230|810231|810232|810233|810234|810235|810236|810237|810238|810239|810240|810241|810242|810243|810244|810245|810246|810247|810248|810249|810250|810251|810252|810253|810254|810255|810256|810257|810258|810259|810260|810261|810262|810263|810264|810265|810266|810267|810268|810269|810270|810271|810272|810273|810274|810275|810276|810277|810278|810279|810280|810281|810282|810283|810284|810285|810286|810287|810288|810289|810290|810291|810292|810293|810294|810295|810296|810297|810298|810299|810300|810301|810302|810303|810304|810305|810306|810307|810308|810309|810310|810311|810312|810313|810314|810315|810316|810317|810318|810319|810320|810321|810322|810323|810324|810325|810326|810327|810328|810329|810330|810331|810332|810333|810334|810335|810336|810337|810338|810339|810340|810341|810342|810343|810344|810345|810346|810347|810348|810349|810350|810351|810352|810353|810354|810355|810356|810357|810358|810359|810360|810361|810362|810363|810364|810365|810366|810367|810368|810369|810370|810371|810372|810373|810374|810375|810376|810377|810378|810379|810380|810381|810382|810383|810384|810385|810386|810387|810388|810389|810390|810391|810392|810393|810394|810395|810396|810397|810398|810399|810400|810401|810402|810403|810404|810405|810406|810407|810408|810409|810410|810411|810412|810413|810414|810415|810416|810417|810418|810419|810420|810421|810422|810423|810424|810425|810426|810427|810428|810429|810430|810431|810432|810433|810434|810435|810436|810437|810438|810439|810440|810441|810442|810443|810444|810445|810446|810447|810448|810449|810450|810451|810452|810453|810454|810455|810456|810457|810458|810459|810460|810461|810462|810463|810464|810465|810466|810467|810468|810469|810470|810471|810472|810473|810474|810475|810476|810477|810478|810479|810480|810481|810482|810483|810484|810485|810486|810487|810488|810489|810490|810491|810492|810493|810494|810495|810496|810497|810498|810499|810500|810501|810502|810503|810504|810505|810506|810507|810508|810509|810510|810511|810512|810513|810514|810515|810516|810517|810518|810519|810520|810521|810522|810523|810524|810525|810526|810527|810528|810529|810530|810531|810532|810533|810534|810535|810536|810537|810538|810539|810540|810541|810542|810543|810544|810545|810546|810547|810548|810549|810550|810551|810552|810553|810554|810555|810556|810557|810558|810559|810560|810561|810562|810563|810564|810565|810566|810567|810568|810569|810570|810571|810572|810573|810574|810575|810576|810577|810578|810579|810580|810581|810582|810583|810584|810585|810586|810587|810588|810589|810590|810591|810592|810593|810594|810595|810596|810597|810598|810599|810600|810601|810602|810603|810604|810605|810606|810607|810608|810609|810610|810611|810612|810613|810614|810615|810616|810617|810618|810619|810620|810621|810622|810623|810624|810625|810626|810627|810628|810629|810630|810631|810632|810633|810634|810635|810636|810637|810638|810639|810640|810641|810642|810643|810644|810645|810646|810647|810648|810649|810650|810651|810652|810653|810654|810655|810656|810657|810658|810659|810660|810661|810662|810663|810664|810665|810666|810667|810668|810669|810670|810671|810672|810673|810674|810675|810676|810677|810678|810679|810680|810681|810682|810683|810684|810685|810686|810687|810688|810689|810690|810691|810692|810693|810694|810695|810696|810697|810698|810699|810700|810701|810702|810703|810704|810705|810706|810707|810708|810709|810710|810711|810712|810713|810714|810715|810716|810717|810718|810719|810720|810721|810722|810723|810724|810725|810726|810727|810728|810729|810730|810731|810732|810733|810734|810735|810736|810737|810738|810739|810740|810741|810742|810743|810744|810745|810746|810747|810748|810749|810750|810751|810752|810753|810754|810755|810756|810757|810758|810759|810760|810761|810762|810763|810764|810765|810766|810767|810768|810769|810770|810771|810772|810773|810774|810775|810776|810777|810778|810779|810780|810781|810782|810783|810784|810785|810786|810787|810788|810789|810790|810791|810792|810793|810794|810795|810796|810797|810798|810799|810800|810801|810802|810803|810804|810805|810806|810807|810808|810809|810810|810811|810812|810813|810814|810815|810816|810817|810818|810819|810820|810821|810822|810823|810824|810825|810826|810827|810828|810829|810830|810831|810832|810833|810834|810835|810836|810837|810838|810839|810840|810841|810842|810843|810844|810845|810846|810847|810848|810849|810850|810851|810852|810853|810854|810855|810856|810857|810858|810859|810860|810861|810862|810863|810864|810865|810866|810867|810868|810869|810870|810871|810872|810873|810874|810875|810876|810877|810878|810879|810880|810881|810882|810883|810884|810885|810886|810887|810888|810889|810890|810891|810892|810893|810894|810895|810896|810897|810898|810899|810900|810901|810902|810903|810904|810905|810906|810907|810908|810909|810910|810911|810912|810913|810914|810915|810916|810917|810918|810919|810920|810921|810922|810923|810924|810925|810926|810927|810928|810929|810930|810931|810932|810933|810934|810935|810936|810937|810938|810939|810940|810941|810942|810943|810944|810945|810946|810947|810948|810949|810950|810951|810952|810953|810954|810955|810956|810957|810958|810959|810960|810961|810962|810963|810964|810965|810966|810967|810968|810969|810970|810971|810972|810973|810974|810975|810976|810977|810978|810979|810980|810981|810982|810983|810984|810985|810986|810987|810988|810989|810990|810991|810992|810993|810994|810995|810996|810997|810998|810999|811000|811001|811002|811003|811004|811005|811006|811007|811008|811009|811010|811011|811012|811013|811014|811015|811016|811017|811018|811019|811020|811021|811022|811023|811024|811025|811026|811027|811028|811029|811030|811031|811032|811033|811034|811035|811036|811037|811038|811039|811040|811041|811042|811043|811044|811045|811046|811047|811048|811049|811050|811051|811052|811053|811054|811055|811056|811057|811058|811059|811060|811061|811062|811063|811064|811065|811066|811067|811068|811069|811070|811071|811072|811073|811074|811075|811076|811077|811078|811079|811080|811081|811082|811083|811084|811085|811086|811087|811088|811089|811090|811091|811092|811093|811094|811095|811096|811097|811098|811099|811100|811101|811102|811103|811104|811105|811106|811107|811108|811109|811110|811111|811112|811113|811114|811115|811116|811117|811118|811119|811120|811121|811122|811123|811124|811125|811126|811127|811128|811129|811130|811131|811132|811133|811134|811135|811136|811137|811138|811139|811140|811141|811142|811143|811144|811145|811146|811147|811148|811149|811150|811151|811152|811153|811154|811155|811156|811157|811158|811159|811160|811161|811162|811163|811164|811165|811166|811167|811168|811169|811170|811171|811172|811173|811174|811175|811176|811177|811178|811179|811180|811181|811182|811183|811184|811185|811186|811187|811188|811189|811190|811191|811192|811193|811194|811195|811196|811197|811198|811199|811200|811201|811202|811203|811204|811205|811206|811207|811208|811209|811210|811211|811212|811213|811214|811215|811216|811217|811218|811219|811220|811221|811222|811223|811224|811225|811226|811227|811228|811229|811230|811231|811232|811233|811234|811235|811236|811237|811238|811239|811240|811241|811242|811243|811244|811245|811246|811247|811248|811249|811250|811251|811252|811253|811254|811255|811256|811257|811258|811259|811260|811261|811262|811263|811264|811265|811266|811267|811268|811269|811270|811271|811272|811273|811274|811275|811276|811277|811278|811279|811280|811281|811282|811283|811284|811285|811286|811287|811288|811289|811290|811291|811292|811293|811294|811295|811296|811297|811298|811299|811300|811301|811302|811303|811304|811305|811306|811307|811308|811309|811310|811311|811312|811313|811314|811315|811316|811317|811318|811319|811320|811321|811322|811323|811324|811325|811326|811327|811328|811329|811330|811331|811332|811333|811334|811335|811336|811337|811338|811339|811340|811341|811342|811343|811344|811345|811346|811347|811348|811349|811350|811351|811352|811353|811354|811355|811356|811357|811358|811359|811360|811361|811362|811363|811364|811365|811366|811367|811368|811369|811370|811371|811372|811373|811374|811375|811376|811377|811378|811379|811380|811381|811382|811383|811384|811385|811386|811387|811388|811389|811390|811391|811392|811393|811394|811395|811396|811397|811398|811399|811400|811401|811402|811403|811404|811405|811406|811407|811408|811409|811410|811411|811412|811413|811414|811415|811416|811417|811418|811419|811420|811421|811422|811423|811424|811425|811426|811427|811428|811429|811430|811431|811432|811433|811434|811435|811436|811437|811438|811439|811440|811441|811442|811443|811444|811445|811446|811447|811448|811449|811450|811451|811452|811453|811454|811455|811456|811457|811458|811459|811460|811461|811462|811463|811464|811465|811466|811467|811468|811469|811470|811471|811472|811473|811474|811475|811476|811477|811478|811479|811480|811481|811482|811483|811484|811485|811486|811487|811488|811489|811490|811491|811492|811493|811494|811495|811496|811497|811498|811499|811500|811501|811502|811503|811504|811505|811506|811507|811508|811509|811510|811511|811512|811513|811514|811515|811516|811517|811518|811519|811520|811521|811522|811523|811524|811525|811526|811527|811528|811529|811530|811531|811532|811533|811534|811535|811536|811537|811538|811539|811540|811541|811542|811543|811544|811545|811546|811547|811548|811549|811550|811551|811552|811553|811554|811555|811556|811557|811558|811559|811560|811561|811562|811563|811564|811565|811566|811567|811568|811569|811570|811571|811572|811573|811574|811575|811576|811577|811578|811579|811580|811581|811582|811583|811584|811585|811586|811587|811588|811589|811590|811591|811592|811593|811594|811595|811596|811597|811598|811599|811600|811601|811602|811603|811604|811605|811606|811607|811608|811609|811610|811611|811612|811613|811614|811615|811616|811617|811618|811619|811620|811621|811622|811623|811624|811625|811626|811627|811628|811629|811630|811631|811632|811633|811634|811635|811636|811637|811638|811639|811640|811641|811642|811643|811644|811645|811646|811647|811648|811649|811650|811651|811652|811653|811654|811655|811656|811657|811658|811659|811660|811661|811662|811663|811664|811665|811666|811667|811668|811669|811670|811671|811672|811673|811674|811675|811676|811677|811678|811679|811680|811681|811682|811683|811684|811685|811686|811687|811688|811689|811690|811691|811692|811693|811694|811695|811696|811697|811698|811699|811700|811701|811702|811703|811704|811705|811706|811707|811708|811709|811710|811711|811712|811713|811714|811715|811716|811717|811718|811719|811720|811721|811722|811723|811724|811725|811726|811727|811728|811729|811730|811731|811732|811733|811734|811735|811736|811737|811738|811739|811740|811741|811742|811743|811744|811745|811746|811747|811748|811749|811750|811751|811752|811753|811754|811755|811756|811757|811758|811759|811760|811761|811762|811763|811764|811765|811766|811767|811768|811769|811770|811771|811772|811773|811774|811775|811776|811777|811778|811779|811780|811781|811782|811783|811784|811785|811786|811787|811788|811789|811790|811791|811792|811793|811794|811795|811796|811797|811798|811799|811800|811801|811802|811803|811804|811805|811806|811807|811808|811809|811810|811811|811812|811813|811814|811815|811816|811817|811818|811819|811820|811821|811822|811823|811824|811825|811826|811827|811828|811829|811830|811831|811832|811833|811834|811835|811836|811837|811838|811839|811840|811841|811842|811843|811844|811845|811846|811847|811848|811849|811850|811851|811852|811853|811854|811855|811856|811857|811858|811859|811860|811861|811862|811863|811864|811865|811866|811867|811868|811869|811870|811871|811872|811873|811874|811875|811876|811877|811878|811879|811880|811881|811882|811883|811884|811885|811886|811887|811888|811889|811890|811891|811892|811893|811894|811895|811896|811897|811898|811899|811900|811901|811902|811903|811904|811905|811906|811907|811908|811909|811910|811911|811912|811913|811914|811915|811916|811917|811918|811919|811920|811921|811922|811923|811924|811925|811926|811927|811928|811929|811930|811931|811932|811933|811934|811935|811936|811937|811938|811939|811940|811941|811942|811943|811944|811945|811946|811947|811948|811949|811950|811951|811952|811953|811954|811955|811956|811957|811958|811959|811960|811961|811962|811963|811964|811965|811966|811967|811968|811969|811970|811971|811972|811973|811974|811975|811976|811977|811978|811979|811980|811981|811982|811983|811984|811985|811986|811987|811988|811989|811990|811991|811992|811993|811994|811995|811996|811997|811998|811999|812000|812001|812002|812003|812004|812005|812006|812007|812008|812009|812010|812011|812012|812013|812014|812015|812016|812017|812018|812019|812020|812021|812022|812023|812024|812025|812026|812027|812028|812029|812030|812031|812032|812033|812034|812035|812036|812037|812038|812039|812040|812041|812042|812043|812044|812045|812046|812047|812048|812049|812050|812051|812052|812053|812054|812055|812056|812057|812058|812059|812060|812061|812062|812063|812064|812065|812066|812067|812068|812069|812070|812071|812072|812073|812074|812075|812076|812077|812078|812079|812080|812081|812082|812083|812084|812085|812086|812087|812088|812089|812090|812091|812092|812093|812094|812095|812096|812097|812098|812099|812100|812101|812102|812103|812104|812105|812106|812107|812108|812109|812110|812111|812112|812113|812114|812115|812116|812117|812118|812119|812120|812121|812122|812123|812124|812125|812126|812127|812128|812129|812130|812131|812132|812133|812134|812135|812136|812137|812138|812139|812140|812141|812142|812143|812144|812145|812146|812147|812148|812149|812150|812151|812152|812153|812154|812155|812156|812157|812158|812159|812160|812161|812162|812163|812164|812165|812166|812167|812168|812169|812170|812171|812172|812173|812174|812175|812176|812177|812178|812179|812180|812181|812182|812183|812184|812185|812186|812187|812188|812189|812190|812191|812192|812193|812194|812195|812196|812197|812198|812199|812200|812201|812202|812203|812204|812205|812206|812207|812208|812209|812210|812211|812212|812213|812214|812215|812216|812217|812218|812219|812220|812221|812222|812223|812224|812225|812226|812227|812228|812229|812230|812231|812232|812233|812234|812235|812236|812237|812238|812239|812240|812241|812242|812243|812244|812245|812246|812247|812248|812249|812250|812251|812252|812253|812254|812255|812256|812257|812258|812259|812260|812261|812262|812263|812264|812265|812266|812267|812268|812269|812270|812271|812272|812273|812274|812275|812276|812277|812278|812279|812280|812281|812282|812283|812284|812285|812286|812287|812288|812289|812290|812291|812292|812293|812294|812295|812296|812297|812298|812299|812300|812301|812302|812303|812304|812305|812306|812307|812308|812309|812310|812311|812312|812313|812314|812315|812316|812317|812318|812319|812320|812321|812322|812323|812324|812325|812326|812327|812328|812329|812330|812331|812332|812333|812334|812335|812336|812337|812338|812339|812340|812341|812342|812343|812344|812345|812346|812347|812348|812349|812350|812351|812352|812353|812354|812355|812356|812357|812358|812359|812360|812361|812362|812363|812364|812365|812366|812367|812368|812369|812370|812371|812372|812373|812374|812375|812376|812377|812378|812379|812380|812381|812382|812383|812384|812385|812386|812387|812388|812389|812390|812391|812392|812393|812394|812395|812396|812397|812398|812399|812400|812401|812402|812403|812404|812405|812406|812407|812408|812409|812410|812411|812412|812413|812414|812415|812416|812417|812418|812419|812420|812421|812422|812423|812424|812425|812426|812427|812428|812429|812430|812431|812432|812433|812434|812435|812436|812437|812438|812439|812440|812441|812442|812443|812444|812445|812446|812447|812448|812449|812450|812451|812452|812453|812454|812455|812456|812457|812458|812459|812460|812461|812462|812463|812464|812465|812466|812467|812468|812469|812470|812471|812472|812473|812474|812475|812476|812477|812478|812479|812480|812481|812482|812483|812484|812485|812486|812487|812488|812489|812490|812491|812492|812493|812494|812495|812496|812497|812498|812499|812500|812501|812502|812503|812504|812505|812506|812507|812508|812509|812510|812511|812512|812513|812514|812515|812516|812517|812518|812519|812520|812521|812522|812523|812524|812525|812526|812527|812528|812529|812530|812531|812532|812533|812534|812535|812536|812537|812538|812539|812540|812541|812542|812543|812544|812545|812546|812547|812548|812549|812550|812551|812552|812553|812554|812555|812556|812557|812558|812559|812560|812561|812562|812563|812564|812565|812566|812567|812568|812569|812570|812571|812572|812573|812574|812575|812576|812577|812578|812579|812580|812581|812582|812583|812584|812585|812586|812587|812588|812589|812590|812591|812592|812593|812594|812595|812596|812597|812598|812599|812600|812601|812602|812603|812604|812605|812606|812607|812608|812609|812610|812611|812612|812613|812614|812615|812616|812617|812618|812619|812620|812621|812622|812623|812624|812625|812626|812627|812628|812629|812630|812631|812632|812633|812634|812635|812636|812637|812638|812639|812640|812641|812642|812643|812644|812645|812646|812647|812648|812649|812650|812651|812652|812653|812654|812655|812656|812657|812658|812659|812660|812661|812662|812663|812664|812665|812666|812667|812668|812669|812670|812671|812672|812673|812674|812675|812676|812677|812678|812679|812680|812681|812682|812683|812684|812685|812686|812687|812688|812689|812690|812691|812692|812693|812694|812695|812696|812697|812698|812699|812700|812701|812702|812703|812704|812705|812706|812707|812708|812709|812710|812711|812712|812713|812714|812715|812716|812717|812718|812719|812720|812721|812722|812723|812724|812725|812726|812727|812728|812729|812730|812731|812732|812733|812734|812735|812736|812737|812738|812739|812740|812741|812742|812743|812744|812745|812746|812747|812748|812749|812750|812751|812752|812753|812754|812755|812756|812757|812758|812759|812760|812761|812762|812763|812764|812765|812766|812767|812768|812769|812770|812771|812772|812773|812774|812775|812776|812777|812778|812779|812780|812781|812782|812783|812784|812785|812786|812787|812788|812789|812790|812791|812792|812793|812794|812795|812796|812797|812798|812799|812800|812801|812802|812803|812804|812805|812806|812807|812808|812809|812810|812811|812812|812813|812814|812815|812816|812817|812818|812819|812820|812821|812822|812823|812824|812825|812826|812827|812828|812829|812830|812831|812832|812833|812834|812835|812836|812837|812838|812839|812840|812841|812842|812843|812844|812845|812846|812847|812848|812849|812850|812851|812852|812853|812854|812855|812856|812857|812858|812859|812860|812861|812862|812863|812864|812865|812866|812867|812868|812869|812870|812871|812872|812873|812874|812875|812876|812877|812878|812879|812880|812881|812882|812883|812884|812885|812886|812887|812888|812889|812890|812891|812892|812893|812894|812895|812896|812897|812898|812899|812900|812901|812902|812903|812904|812905|812906|812907|812908|812909|812910|812911|812912|812913|812914|812915|812916|812917|812918|812919|812920|812921|812922|812923|812924|812925|812926|812927|812928|812929|812930|812931|812932|812933|812934|812935|812936|812937|812938|812939|812940|812941|812942|812943|812944|812945|812946|812947|812948|812949|812950|812951|812952|812953|812954|812955|812956|812957|812958|812959|812960|812961|812962|812963|812964|812965|812966|812967|812968|812969|812970|812971|812972|812973|812974|812975|812976|812977|812978|812979|812980|812981|812982|812983|812984|812985|812986|812987|812988|812989|812990|812991|812992|812993|812994|812995|812996|812997|812998|812999|813000|813001|813002|813003|813004|813005|813006|813007|813008|813009|813010|813011|813012|813013|813014|813015|813016|813017|813018|813019|813020|813021|813022|813023|813024|813025|813026|813027|813028|813029|813030|813031|813032|813033|813034|813035|813036|813037|813038|813039|813040|813041|813042|813043|813044|813045|813046|813047|813048|813049|813050|813051|813052|813053|813054|813055|813056|813057|813058|813059|813060|813061|813062|813063|813064|813065|813066|813067|813068|813069|813070|813071|813072|813073|813074|813075|813076|813077|813078|813079|813080|813081|813082|813083|813084|813085|813086|813087|813088|813089|813090|813091|813092|813093|813094|813095|813096|813097|813098|813099|813100|813101|813102|813103|813104|813105|813106|813107|813108|813109|813110|813111|813112|813113|813114|813115|813116|813117|813118|813119|813120|813121|813122|813123|813124|813125|813126|813127|813128|813129|813130|813131|813132|813133|813134|813135|813136|813137|813138|813139|813140|813141|813142|813143|813144|813145|813146|813147|813148|813149|813150|813151|813152|813153|813154|813155|813156|813157|813158|813159|813160|813161|813162|813163|813164|813165|813166|813167|813168|813169|813170|813171|813172|813173|813174|813175|813176|813177|813178|813179|813180|813181|813182|813183|813184|813185|813186|813187|813188|813189|813190|813191|813192|813193|813194|813195|813196|813197|813198|813199|813200|813201|813202|813203|813204|813205|813206|813207|813208|813209|813210|813211|813212|813213|813214|813215|813216|813217|813218|813219|813220|813221|813222|813223|813224|813225|813226|813227|813228|813229|813230|813231|813232|813233|813234|813235|813236|813237|813238|813239|813240|813241|813242|813243|813244|813245|813246|813247|813248|813249|813250|813251|813252|813253|813254|813255|813256|813257|813258|813259|813260|813261|813262|813263|813264|813265|813266|813267|813268|813269|813270|813271|813272|813273|813274|813275|813276|813277|813278|813279|813280|813281|813282|813283|813284|813285|813286|813287|813288|813289|813290|813291|813292|813293|813294|813295|813296|813297|813298|813299|813300|813301|813302|813303|813304|813305|813306|813307|813308|813309|813310|813311|813312|813313|813314|813315|813316|813317|813318|813319|813320|813321|813322|813323|813324|813325|813326|813327|813328|813329|813330|813331|813332|813333|813334|813335|813336|813337|813338|813339|813340|813341|813342|813343|813344|813345|813346|813347|813348|813349|813350|813351|813352|813353|813354|813355|813356|813357|813358|813359|813360|813361|813362|813363|813364|813365|813366|813367|813368|813369|813370|813371|813372|813373|813374|813375|813376|813377|813378|813379|813380|813381|813382|813383|813384|813385|813386|813387|813388|813389|813390|813391|813392|813393|813394|813395|813396|813397|813398|813399|813400|813401|813402|813403|813404|813405|813406|813407|813408|813409|813410|813411|813412|813413|813414|813415|813416|813417|813418|813419|813420|813421|813422|813423|813424|813425|813426|813427|813428|813429|813430|813431|813432|813433|813434|813435|813436|813437|813438|813439|813440|813441|813442|813443|813444|813445|813446|813447|813448|813449|813450|813451|813452|813453|813454|813455|813456|813457|813458|813459|813460|813461|813462|813463|813464|813465|813466|813467|813468|813469|813470|813471|813472|813473|813474|813475|813476|813477|813478|813479|813480|813481|813482|813483|813484|813485|813486|813487|813488|813489|813490|813491|813492|813493|813494|813495|813496|813497|813498|813499|813500|813501|813502|813503|813504|813505|813506|813507|813508|813509|813510|813511|813512|813513|813514|813515|813516|813517|813518|813519|813520|813521|813522|813523|813524|813525|813526|813527|813528|813529|813530|813531|813532|813533|813534|813535|813536|813537|813538|813539|813540|813541|813542|813543|813544|813545|813546|813547|813548|813549|813550|813551|813552|813553|813554|813555|813556|813557|813558|813559|813560|813561|813562|813563|813564|813565|813566|813567|813568|813569|813570|813571|813572|813573|813574|813575|813576|813577|813578|813579|813580|813581|813582|813583|813584|813585|813586|813587|813588|813589|813590|813591|813592|813593|813594|813595|813596|813597|813598|813599|813600|813601|813602|813603|813604|813605|813606|813607|813608|813609|813610|813611|813612|813613|813614|813615|813616|813617|813618|813619|813620|813621|813622|813623|813624|813625|813626|813627|813628|813629|813630|813631|813632|813633|813634|813635|813636|813637|813638|813639|813640|813641|813642|813643|813644|813645|813646|813647|813648|813649|813650|813651|813652|813653|813654|813655|813656|813657|813658|813659|813660|813661|813662|813663|813664|813665|813666|813667|813668|813669|813670|813671|813672|813673|813674|813675|813676|813677|813678|813679|813680|813681|813682|813683|813684|813685|813686|813687|813688|813689|813690|813691|813692|813693|813694|813695|813696|813697|813698|813699|813700|813701|813702|813703|813704|813705|813706|813707|813708|813709|813710|813711|813712|813713|813714|813715|813716|813717|813718|813719|813720|813721|813722|813723|813724|813725|813726|813727|813728|813729|813730|813731|813732|813733|813734|813735|813736|813737|813738|813739|813740|813741|813742|813743|813744|813745|813746|813747|813748|813749|813750|813751|813752|813753|813754|813755|813756|813757|813758|813759|813760|813761|813762|813763|813764|813765|813766|813767|813768|813769|813770|813771|813772|813773|813774|813775|813776|813777|813778|813779|813780|813781|813782|813783|813784|813785|813786|813787|813788|813789|813790|813791|813792|813793|813794|813795|813796|813797|813798|813799|813800|813801|813802|813803|813804|813805|813806|813807|813808|813809|813810|813811|813812|813813|813814|813815|813816|813817|813818|813819|813820|813821|813822|813823|813824|813825|813826|813827|813828|813829|813830|813831|813832|813833|813834|813835|813836|813837|813838|813839|813840|813841|813842|813843|813844|813845|813846|813847|813848|813849|813850|813851|813852|813853|813854|813855|813856|813857|813858|813859|813860|813861|813862|813863|813864|813865|813866|813867|813868|813869|813870|813871|813872|813873|813874|813875|813876|813877|813878|813879|813880|813881|813882|813883|813884|813885|813886|813887|813888|813889|813890|813891|813892|813893|813894|813895|813896|813897|813898|813899|813900|813901|813902|813903|813904|813905|813906|813907|813908|813909|813910|813911|813912|813913|813914|813915|813916|813917|813918|813919|813920|813921|813922|813923|813924|813925|813926|813927|813928|813929|813930|813931|813932|813933|813934|813935|813936|813937|813938|813939|813940|813941|813942|813943|813944|813945|813946|813947|813948|813949|813950|813951|813952|813953|813954|813955|813956|813957|813958|813959|813960|813961|813962|813963|813964|813965|813966|813967|813968|813969|813970|813971|813972|813973|813974|813975|813976|813977|813978|813979|813980|813981|813982|813983|813984|813985|813986|813987|813988|813989|813990|813991|813992|813993|813994|813995|813996|813997|813998|813999|814000|814001|814002|814003|814004|814005|814006|814007|814008|814009|814010|814011|814012|814013|814014|814015|814016|814017|814018|814019|814020|814021|814022|814023|814024|814025|814026|814027|814028|814029|814030|814031|814032|814033|814034|814035|814036|814037|814038|814039|814040|814041|814042|814043|814044|814045|814046|814047|814048|814049|814050|814051|814052|814053|814054|814055|814056|814057|814058|814059|814060|814061|814062|814063|814064|814065|814066|814067|814068|814069|814070|814071|814072|814073|814074|814075|814076|814077|814078|814079|814080|814081|814082|814083|814084|814085|814086|814087|814088|814089|814090|814091|814092|814093|814094|814095|814096|814097|814098|814099|814100|814101|814102|814103|814104|814105|814106|814107|814108|814109|814110|814111|814112|814113|814114|814115|814116|814117|814118|814119|814120|814121|814122|814123|814124|814125|814126|814127|814128|814129|814130|814131|814132|814133|814134|814135|814136|814137|814138|814139|814140|814141|814142|814143|814144|814145|814146|814147|814148|814149|814150|814151|814152|814153|814154|814155|814156|814157|814158|814159|814160|814161|814162|814163|814164|814165|814166|814167|814168|814169|814170|814171|814172|814173|814174|814175|814176|814177|814178|814179|814180|814181|814182|814183|814184|814185|814186|814187|814188|814189|814190|814191|814192|814193|814194|814195|814196|814197|814198|814199|814200|814201|814202|814203|814204|814205|814206|814207|814208|814209|814210|814211|814212|814213|814214|814215|814216|814217|814218|814219|814220|814221|814222|814223|814224|814225|814226|814227|814228|814229|814230|814231|814232|814233|814234|814235|814236|814237|814238|814239|814240|814241|814242|814243|814244|814245|814246|814247|814248|814249|814250|814251|814252|814253|814254|814255|814256|814257|814258|814259|814260|814261|814262|814263|814264|814265|814266|814267|814268|814269|814270|814271|814272|814273|814274|814275|814276|814277|814278|814279|814280|814281|814282|814283|814284|814285|814286|814287|814288|814289|814290|814291|814292|814293|814294|814295|814296|814297|814298|814299|814300|814301|814302|814303|814304|814305|814306|814307|814308|814309|814310|814311|814312|814313|814314|814315|814316|814317|814318|814319|814320|814321|814322|814323|814324|814325|814326|814327|814328|814329|814330|814331|814332|814333|814334|814335|814336|814337|814338|814339|814340|814341|814342|814343|814344|814345|814346|814347|814348|814349|814350|814351|814352|814353|814354|814355|814356|814357|814358|814359|814360|814361|814362|814363|814364|814365|814366|814367|814368|814369|814370|814371|814372|814373|814374|814375|814376|814377|814378|814379|814380|814381|814382|814383|814384|814385|814386|814387|814388|814389|814390|814391|814392|814393|814394|814395|814396|814397|814398|814399|814400|814401|814402|814403|814404|814405|814406|814407|814408|814409|814410|814411|814412|814413|814414|814415|814416|814417|814418|814419|814420|814421|814422|814423|814424|814425|814426|814427|814428|814429|814430|814431|814432|814433|814434|814435|814436|814437|814438|814439|814440|814441|814442|814443|814444|814445|814446|814447|814448|814449|814450|814451|814452|814453|814454|814455|814456|814457|814458|814459|814460|814461|814462|814463|814464|814465|814466|814467|814468|814469|814470|814471|814472|814473|814474|814475|814476|814477|814478|814479|814480|814481|814482|814483|814484|814485|814486|814487|814488|814489|814490|814491|814492|814493|814494|814495|814496|814497|814498|814499|814500|814501|814502|814503|814504|814505|814506|814507|814508|814509|814510|814511|814512|814513|814514|814515|814516|814517|814518|814519|814520|814521|814522|814523|814524|814525|814526|814527|814528|814529|814530|814531|814532|814533|814534|814535|814536|814537|814538|814539|814540|814541|814542|814543|814544|814545|814546|814547|814548|814549|814550|814551|814552|814553|814554|814555|814556|814557|814558|814559|814560|814561|814562|814563|814564|814565|814566|814567|814568|814569|814570|814571|814572|814573|814574|814575|814576|814577|814578|814579|814580|814581|814582|814583|814584|814585|814586|814587|814588|814589|814590|814591|814592|814593|814594|814595|814596|814597|814598|814599|814600|814601|814602|814603|814604|814605|814606|814607|814608|814609|814610|814611|814612|814613|814614|814615|814616|814617|814618|814619|814620|814621|814622|814623|814624|814625|814626|814627|814628|814629|814630|814631|814632|814633|814634|814635|814636|814637|814638|814639|814640|814641|814642|814643|814644|814645|814646|814647|814648|814649|814650|814651|814652|814653|814654|814655|814656|814657|814658|814659|814660|814661|814662|814663|814664|814665|814666|814667|814668|814669|814670|814671|814672|814673|814674|814675|814676|814677|814678|814679|814680|814681|814682|814683|814684|814685|814686|814687|814688|814689|814690|814691|814692|814693|814694|814695|814696|814697|814698|814699|814700|814701|814702|814703|814704|814705|814706|814707|814708|814709|814710|814711|814712|814713|814714|814715|814716|814717|814718|814719|814720|814721|814722|814723|814724|814725|814726|814727|814728|814729|814730|814731|814732|814733|814734|814735|814736|814737|814738|814739|814740|814741|814742|814743|814744|814745|814746|814747|814748|814749|814750|814751|814752|814753|814754|814755|814756|814757|814758|814759|814760|814761|814762|814763|814764|814765|814766|814767|814768|814769|814770|814771|814772|814773|814774|814775|814776|814777|814778|814779|814780|814781|814782|814783|814784|814785|814786|814787|814788|814789|814790|814791|814792|814793|814794|814795|814796|814797|814798|814799|814800|814801|814802|814803|814804|814805|814806|814807|814808|814809|814810|814811|814812|814813|814814|814815|814816|814817|814818|814819|814820|814821|814822|814823|814824|814825|814826|814827|814828|814829|814830|814831|814832|814833|814834|814835|814836|814837|814838|814839|814840|814841|814842|814843|814844|814845|814846|814847|814848|814849|814850|814851|814852|814853|814854|814855|814856|814857|814858|814859|814860|814861|814862|814863|814864|814865|814866|814867|814868|814869|814870|814871|814872|814873|814874|814875|814876|814877|814878|814879|814880|814881|814882|814883|814884|814885|814886|814887|814888|814889|814890|814891|814892|814893|814894|814895|814896|814897|814898|814899|814900|814901|814902|814903|814904|814905|814906|814907|814908|814909|814910|814911|814912|814913|814914|814915|814916|814917|814918|814919|814920|814921|814922|814923|814924|814925|814926|814927|814928|814929|814930|814931|814932|814933|814934|814935|814936|814937|814938|814939|814940|814941|814942|814943|814944|814945|814946|814947|814948|814949|814950|814951|814952|814953|814954|814955|814956|814957|814958|814959|814960|814961|814962|814963|814964|814965|814966|814967|814968|814969|814970|814971|814972|814973|814974|814975|814976|814977|814978|814979|814980|814981|814982|814983|814984|814985|814986|814987|814988|814989|814990|814991|814992|814993|814994|814995|814996|814997|814998|814999|815000|815001|815002|815003|815004|815005|815006|815007|815008|815009|815010|815011|815012|815013|815014|815015|815016|815017|815018|815019|815020|815021|815022|815023|815024|815025|815026|815027|815028|815029|815030|815031|815032|815033|815034|815035|815036|815037|815038|815039|815040|815041|815042|815043|815044|815045|815046|815047|815048|815049|815050|815051|815052|815053|815054|815055|815056|815057|815058|815059|815060|815061|815062|815063|815064|815065|815066|815067|815068|815069|815070|815071|815072|815073|815074|815075|815076|815077|815078|815079|815080|815081|815082|815083|815084|815085|815086|815087|815088|815089|815090|815091|815092|815093|815094|815095|815096|815097|815098|815099|815100|815101|815102|815103|815104|815105|815106|815107|815108|815109|815110|815111|815112|815113|815114|815115|815116|815117|815118|815119|815120|815121|815122|815123|815124|815125|815126|815127|815128|815129|815130|815131|815132|815133|815134|815135|815136|815137|815138|815139|815140|815141|815142|815143|815144|815145|815146|815147|815148|815149|815150|815151|815152|815153|815154|815155|815156|815157|815158|815159|815160|815161|815162|815163|815164|815165|815166|815167|815168|815169|815170|815171|815172|815173|815174|815175|815176|815177|815178|815179|815180|815181|815182|815183|815184|815185|815186|815187|815188|815189|815190|815191|815192|815193|815194|815195|815196|815197|815198|815199|815200|815201|815202|815203|815204|815205|815211|815212|815213|815214|815215|815216|815217|815218|815219|815220|815221|815222|815223|815224|815225|815226|815227|815228|815229|815230|815231|815232|815233|815234|815235|815236|815237|815238|815239|815240|815241|815242|815243|815244|815245|815246|815247|815248|815249|815250|815251|815252|815253|815254|815255|815256|815257|815258|815259|815260|815261|815262|815263|815264|815265|815266|815267|815268|815269|815270|815271|815272|815273|815274|815275|815276|815277|815278|815279|815280|815281|815282|815283|815284|815285|815286|815287|815288|815289|815290|815291|815292|815293|815294|815295|815296|815297|815298|815299|815300|815301|815302|815303|815304|815305|815306|815307|815308|815309|815310|815311|815312|815313|815314|815315|815316|815317|815318|815319|815320|815321|815322|815323|815324|815325|815326|815327|815328|815329|815330|815331|815332|815333|815334|815335|815336|815337|815338|815339|815340|815341|815342|815343|815344|815345|815346|815347|815348|815349|815350|815351|815352|815353|815354|815355|815356|815366|815367|815368|815369|815370|815371|815372|815373|815374|815375|815380|815381|815382|815383|815384|815385|815386|815387|815388|815389|815390|815391|815392|815393|815394|815395|815396|815397|815398|815399|815400|815401|815402|815403|815404|815405|815406|815407|815408|815409|815410|815411|815412|815413|815414|815415|815416|815417|815418|815419|815420|815421|815422|815423|815424|815425|815426|815427|815428|815429|815430|815431|815432|815434|815435|815436|815437|815438|815439|815440|815441|815442|815443|815444|815445|815446|815447|815448|815449|815450|815451|815452|815453|815454|815455|815456|815457|815458|815459|815460|815461|815462|815463|815464|815465|815466|815467|815468|815469|815470|815471|815472|815473|815474|815475|815476|815477|815478|815479|815480|815481|815482|815483|815484|815485|815486|815487|815488|815489|815490|815491|815492|815493|815494|815495|815496|815497|815498|815499|815500|815501|815502|815503|815504|815505|815506|815507|815508|815509|815510|815511|815512|815513|815514|815515|815516|815517|815518|815519|815520|815521|815522|815523|815524|815525|815526|815527|815528|815529|815530|815531|815532|815533|815534|815535|815536|815537|815538|815539|815540|815541|815542|815543|815544|815545|815546|815547|815548|815549|815550|815551|815552|815553|815554|815555|815556|815557|815558|815559|815560|815561|815562|815563|815564|815565|815566|815567|815568|815569|815570|815571|815572|815573|815574|815575|815576|815577|815578|815579|815580|815581|815582|815583|815584|815585|815586|815587|815588|815589|815590|815591|815592|815593|815594|815595|815596|815597|815598|815599|815600|815601|815602|815603|815604|815605|815606|815607|815608|815609|815610|815611|815612|815613|815614|815615|815616|815617|815618|815619|815620|815621|815622|815623|815624|815625|815626|815627|815628|815629|815630|815631|815632|815633|815634|815635|815636|815637|815638|815639|815640|815641|815642|815643|815644|815645|815646|815647|815648|815649|815650|815651|815652|815653|815654|815655|815656|815657|815658|815659|815660|815661|815662|815663|815664|815665|815666|815667|815668|815669|815670|815671|815672|815673|815674|815675|815676|815677|815678|815679|815680|815681|815682|815683|815684|815685|815686|815687|815688|815689|815690|815691|815692|815693|815694|815695|815696|815697|815698|815699|815700|815701|815702|815703|815704|815705|815706|815707|815708|815709|815710|815711|815712|815713|815714|815715|815716|815717|815718|815719|815720|815721|815722|815723|815724|815725|815726|815727|815728|815729|815730|815731|815732|815733|815734|815735|815736|815737|815738|815739|815740|815741|815742|815743|815744|815745|815746|815747|815748|815749|815750|815751|815752|815753|815754|815755|815756|815757|815758|815759|815760|815761|815762|815763|815764|815765|815766|815767|815768|815769|815770|815771|815772|815773|815774|815775|816046|818445|818463|818466|818470|818501|818651|818792|819537|819538|819539|819540|819541|819542|819543|819544|824166|824181|824191|824192|824195|824196|824197|825661|825667|825669|825683|825684|825692|825712|825715|826564|826568|826581|826588|826600|826611|826625|826626|826637|826728|826759|827923|827943|827963|828458|828459|828471|828482|828484|828487|828492|828494|829599|829646|829652|829655|829667|829683|829729|829747|829753|829754|829792|829799|829805|829817|830076|830077|830078|830079|830080|830081|830082|830083|830084|830085|830086|830087|830088|830089|830090|830091|830092|830093|830094|830095|830096|830097|830098|830099|830100|830101|830102|830103|830104|830105|830106|830107|830108|830109|830110|830111|830112|830113|830114|830115|830116|830117|830118|830119|830120|830121|830122|830123|830124|830125|830126|830127|830128|830129|830130|830131|830132|830133|830134|830135|830136|830137|830138|830139|830140|830141|830142|830143|830144|830145|830146|830147|830148|830149|830150|830151|830152|830153|830154|830155|830156|830157|830158|830159|830160|830161|830162|830163|830164|830165|830166|830167|830168|830169|830170|830171|830172|830173|830174|830175|833763|833785|833788|833793|835143|835992|835998|837381|837600|837609|837621|837634|837645|837666|837712|837728|837729|837756|837758|837768|837788|837789|837831|837855|837890|837909|837933|840634|840669|840671|840680|840701|840757|840801|840820|840829|840847|840871|840875|843585|843592|843624|843637|843639|844131|844154|844184|845208|845209|845413|845698|845701|845741|845749|845754|845755|845776|845806|845812|845819|846302|846915|847243|847263|847276|849140|849159|851006|851008|851010|851244|851245|851471|851560|851800|851814|851818|851831|851854|851856|851858|851860|851862|851864|851898|851900|851903|851906|852196|852532|852569|852746|852780|852813|853153|853247|853442|853547|853771|853884|853905|854159|854225|854303|854322|854453|854516|854563|854714|854762|854772|854973|855170|855228|855230|855257|855334|855395|855503|855505|859830|872326|905922|906020|906348|907207|907208|907209|907210|907211|907212|907213|907214|907215|907216|907217|907218|907219|907220|907221|907222|907223|907224|907225|907226|907227|907228|907229|907230|907231|907232|907233|907234|907235|907236|907237|907238|907239|907240|907241|907242|907243|907244|907245|907246|907247|907248|907249|907250|907251|907252|907253|907254|907255|907256|907257|907258|907259|907260|907261|907262|907263|907264|907265|907266|907267|907268|907269|907270|907271|907272|907273|907274|908615|908616|908617|908618|908619|908620|908621|908622|908623|908624|908625|908626|908627|908628|908629|908630|908631|908632|908633|908634|908635|908636|908637|908638|908639|908640|908641|908642|908643|908644|908645|908646|908647|908648|908649|908650|908651|908652|908653|908654|908655|908656|908657|908658|908659|908660|908661|908662|908663|908664|908665|908666|908667|908668|908669|908670|908671|908672|908673|908674|908675|908676|908677|908678|908679|908680|908681|908682|908683|908684|908685|908686|908687|908688|908689|908690|908691|908692|908693|908694|908695|908696|908697|908698|908699|908700|908701|908702|908703|908704|908705|908706|908707|908708|908709|908710|908711|908712|908713|908714|908715|908716|908717|908718|908719|908720|908721|908722|908723|908724|908725|908726|908727|908728|908729|908730|908731|908732|908733|908734|908735|908736|908737|908738|908739|908740|908741|908742|908743|908744|908745|908746|908747|908748|908749|908750|908751|908752|908753|908754|908755|908756|908757|908758|908759|908760|908761|908762|908763|908764|908765|908766|908767|908768|908769|908770|908771|908772|908773|908774|908775|908776|908777|908778|908779|908780|908781|908782|908783|908784|908785|908786|908787|908788|908789|908790|908791|908792|908793|908794|908795|908796|908797|908798|908799|908800|908801|908802|908803|908804|908805|908806|908807|908808|908809|908810|908811|908812|908813|908814|908815|908816|908817|908818|908819|908820|908821|908822|908823|908824|908825|908826|908827|908828|908829|908830|908831|908832|908833|908834|908835|908836|908837|908838|908839|908840|908841|908842|908843|908844|908845|908846|908847|908848|908849|908850|908851|908852|908853|908854|908855|908856|908857|908858|908859|908860|908861|908862|908863|908864|908865|908866|908867|908868|908869|908870|908871|908872|908873|908874|908875|908876|908877|908878|908879|908880|908881|908882|908883|908884|908885|908886|908887|908888|908889|908890|908891|908892|908893|908894|908895|908896|908897|908898|908899|908900|908901|908902|908903|908904|908905|908906|908907|908908|908909|908910|908911|908912|908913|908914|908915|908916|908917|908918|908919|908920|908921|908922|908923|908924|908925|908926|908927|908928|908929|908930|908931|908932|908933|908934|908935|908936|908937|908938|908939|908940|908941|908942|908943|908944|908945|908946|908947|908948|908949|908950|908951|908952|908953|908954|908955|908956|908957|908958|908959|908960|908961|908962|908963|908964|908965|908966|908967|908968|908969|908970|908971|908972|908973|908974|908975|908976|908977|908978|908979|908980|908981|908982|908983|908984|908985|908986|908987|908988|908989|908990|908991|908992|908993|908994|908995|908996|908997|908998|908999|909000|909001|909002|909003|909004|909005|909006|909007|909008|909009|909010|909011|909012|909013|909014|909015|909016|909017|909018|909019|909020|909021|909022|909023|909024|909025|909026|909027|909028|909029|909030|909031|909032|909033|909034|909035|909036|909037|909038|909039|909040|909041|909042|909043|909044|909045|909046|909047|909048|909049|909050|909051|909052|909053|909054|909055|909056|909057|909058|909059|909060|909061|909062|909063|909064|909065|909066|909067|909068|909069|909070|909071|909072|909073|909074|909075|909076|909077|909078|909079|909080|909081|909082|909294|909295|909296|909297|909298|909299|909300|909301|909302|909303|909304|909305|909306|909307|909308|909309|909310|909311|909312|909313|909314|909315|909316|909317|909318|909319|909320|909321|909322|909323|909324|909325|909326|909327|909328|909329|909330|909331|909332|909333|909334|909335|909336|909337|909338|909339|909340|909341|909342|909343|909344|909345|909346|909347|909348|909349|909350|909351|909352|909353|909354|909355|909356|909357|909358|909359|909360|909361|909362|909363|909364|909365|909366|909367|909368|909369|909370|909371|909372|909373|909679|909680|909681|909682|909683|909684|909685|909686|909687|909688|909689|909690|909691|909692|909693|909694|909695|909696|909697|909698|909699|909700|909701|909702|909703|909704|909705|909706|909707|909708|909709|909710|909711|909712|909713|909714|909715|909716|909717|909718|909719|909720|909721|909722|909723|909724|909725|909726|909727|909728|909729|909730|909731|909732|909733|909734|909735|909736|909737|909738|909739|909740|909741|909742|909743|909744|909745|909746|909747|909748|909749|909750|909751|909752|909753|909754|909755|909756|909757|909758|909759|909760|909761|909762|909763|909764|909765|909766|909767|909768|909769|909770|909771|909772|909773|909774|909775|909776|909777|909778|909779|909780|909781|909782|909783|909784|909785|909786|909787|909788|909789|909790|909791|909792|909793|909794|909795|909796|909797|909798|909799|909800|909801|909802|909803|909804|909805|909806|909807|909808|909809|909810|909811|909812|909813|909814|909815|909816|909817|909818|909819|909820|909821|909822|909823|909824|909825|909826|909827|909828|909829|909830|909831|909832|909833|909834|909835|909836|909837|909838|909839|909840|909841|909842|909843|909844|909845|909846|909847|909848|909849|909850|909851|909852|909853|909854|909855|909856|909857|909858|909859|909860|909861|909862|909863|909864|909865|909866|909867|909868|909869|909870|909871|909872|909873|909874|909875|909876|909877|909878|909879|909880|909881|909882|909883|909884|909885|909886|909887|909888|909889|909890|909891|909892|909893|909894|909895|909896|909897|909898|909899|909900|909901|909902|909903|909904|909905|909906|909907|909908|909909|909910|909911|909912|909913|909914|909915|909916|909917|909918|909919|909920|909921|909922|909923|909924|909925|909926|909927|909928|909929|909930|909931|909932|909933|909934|909935|909936|909937|909938|909939|909940|909941|909942|909943|909944|909945|909946|909947|909948|909949|909950|909951|909952|909953|909954|909955|909956|909957|909958|909959|909960|909961|909962|909963|909964|909965|909966|909967|909968|909969|909970|909971|909972|909973|909974|909975|909976|909977|909978|909979|909980|909981|909982|909983|909984|909985|909986|909987|909988|909989|909990|909991|909992|909993|909994|909995|909996|909997|909998|909999|910000|910001|910002|910003|910004|910005|910006|910007|910008|910009|910010|910011|910012|910013|910014|910015|910016|910017|910018|910019|910020|910021|910022|910023|910024|910025|910026|910027|910028|910029|910030|910031|910032|910033|910034|910035|910036|910037|910038|910039|910040|910041|910042|910043|910044|910045|910046|910047|910048|910049|910050|910051|910052|910053|910054|910055|910056|910057|910058|910059|910060|910061|910062|910063|910064|910065|910066|910067|910068|910069|910070|910071|910072|910073|910074|910075|910076|910077|910078|910079|910080|910081|910082|910083|910084|910085|910086|910087|910088|910089|910090|910091|910092|910093|910094|910095|910096|910097|910098|910099|910100|910101|910102|910103|910104|910105|910106|910107|910108|910109|910110|910111|910112|910113|910114|910115|910116|910117|910118|910119|910120|910121|910122|910123|910124|910125|910126|910127|910128|910129|910130|910131|910132|910133|910134|910135|910136|910137|910138|910139|910140|910141|910142|910143|910144|910145|910146|910147|910148|910149|910150|910151|910152|910153|910154|910155|910156|910157|910158|910159|910160|910161|910162|910163|910164|910165|910166|910167|910907|910908|910909|910910|910911|910912|910913|910914|910915|910916|910917|910918|910919|910920|910921|910922|910923|910924|910925|910926|910927|910928|910929|910930|910931|910932|910933|910934|910935|910936|910937|910938|910939|910940|910941|910942|910943|910944|910945|910946|910947|910948|910949|910950|910951|910952|910953|910954|910955|910956|910957|910958|910959|910960|910961|910962|910963|910964|910965|910966|910967|910968|910969|910970|910971|910972|910973|910974|910975|910976|910977|910978|910979|910980|910981|910982|910983|910984|910985|910986|910987|910988|910989|910990|910991|910992|910993|910994|910995|910996|910997|910998|910999|911000|911001|911002|911003|911004|911005|911006|911007|911008|911009|911010|911011|911012|911013|911014|911015|911016|911017|911018|911019|911020|911021|911022|911023|911024|911025|911026|911027|911028|911029|911030|911031|911032|911033|911034|911035|911036|911037|911038|911039|911040|911041|911042|911043|911044|911045|911046|911047|911048|911049|911050|911051|911052|911053|911054|911055|911056|911057|911058|911059|911060|911061|911062|911063|911064|911065|911066|911067|911068|911069|911070|911071|911072|911073|911074|911075|911076|911077|911078|911079|911080|911081|911082|911083|911084|911085|911086|911087|911088|911089|911090|911091|911147|911148|911149|911150|911151|911152|911153|911154|911155|911156|911157|911158|911159|911160|911161|911162|911163|911164|911165|911166|911167|911168|911169|911170|911171|911172|911173|911174|911175|911176|911177|911178|911179|911180|911181|911182|911183|911184|911185|911186|911187|911188|911189|911190|911191|911192|911193|911194|911195|911196|911197|911198|911199|911200|911201|911202|911203|911204|911205|911206|911207|911208|911209|911210|911211|911212|911213|911214|911215|911216|911217|911218|911219|911220|911221|911222|911223|911224|911225|911226|911227|911228|911229|911230|911231|911232|911233|911234|911235|911236|911237|911238|911283|911284|911285|911286|911287|911288|911289|911290|911291|911292|911293|911294|911295|911296|911297|911298|911299|911300|911301|911302|911303|911304|911305|911306|911307|911308|911309|911310|911311|911312|911313|911314|911315|911316|911317|911318|911319|911320|911321|911322|911323|911324|911325|911326|911327|911328|911329|911330|911331|911332|911333|911334|911335|911336|911337|911338|911339|911340|911341|911342|911343|911344|911345|911346|911347|911348|911349|911350|911351|911352|911353|911354|911355|911356|911357|911358|911359|911360|911361|911362|911363|911364|911365|911366|911367|911368|911369|911370|911371|911372|911373|911374|911375|911376|911377|911378|911379|911380|911381|911382|911383|911384|911385|911386|911387|911388|911389|911390|911391|911392|911393|911394|911395|911396|911397|911398|911399|911400|911401|911402|911403|911404|911405|911406|911407|911408|911409|911410|911411|911412|911413|911414|911415|911416|911417|911418|911419|911420|911421|911422|911423|911424|911425|911426|911427|911428|911429|911430|911431|911432|911433|911434|911435|911436|911437|911438|911439|911440|911441|911442|911443|911444|911445|911446|911447|911448|911449|911450|911451|911452|911453|911454|911455|911456|911457|911458|911459|911460|911461|911462|911463|911464|911465|911466|911467|911468|911469|911470|911471|911472|911473|911474|911475|911476|911477|911478|911479|911480|911481|911482|911483|911484|911485|911486|911487|911488|911489|911490|911491|911492|911493|911494|911495|911496|911497|911498|911499|911500|911501|911502|911503|911504|911505|911506|911507|911508|911509|911510|911511|911512|911513|911514|911515|911516|911517|911518|911519|911520|911521|911522|911523|911524|911525|911526|911527|911528|911529|911530|911531|911532|911533|911534|911535|911536|911537|911538|911539|911540|911541|911542|911543|911544|911545|911546|911547|911548|912084|912085|912086|912087|912088|912089|912090|912091|912092|912093|912094|912095|912096|912097|912098|912099|912100|912101|912102|912103|912104|912105|912106|912107|912108|912109|912110|912111|912112|912113|912114|912115|912116|912117|912118|912119|912120|912121|912122|912123|912124|912125|912126|912127|912128|912129|912130|912131|912132|912133|912134|912135|912136|912137|912138|912139|912140|912141|912142|912143|912144|912145|912146|912147|912148|912149|912150|912151|912152|912153|912154|912155|912156|912157|912158|912159|912160|912161|912162|912163|912164|912165|912166|912167|912168|912169|912170|912171|912172|912173|912174|912175|912176|912177|912178|912179|912180|912181|912182|912183|912184|912185|912186|912187|912188|912189|912190|912191|912192|912193|912194|912195|912196|912197|912198|912199|912200|912201|912202|912203|912204|912205|912206|912207|912208|912209|912210|912211|912212|912213|912214|912215|912216|912217|912218|912219|912220|912221|912222|912223|912224|912225|912226|912227|912228|912229|912230|912231|912232|912233|912234|912235|912236|912237|912238|912239|912240|912241|912242|912243|912244|912245|912246|912247|912248|912249|912250|912251|912252|912253|912254|912255|912256|912257|912258|912259|912260|912261|912262|912263|912264|912265|912266|912267|912268|912269|912270|912271|912272|912273|912274|912275|912276|912277|912278|912279|912280|912281|912282|912283|912284|912285|912286|912287|912288|912289|912290|912291|912292|912293|912294|912295|912296|912297|912298|912299|912300|912301|912302|912303|912304|912305|912306|912307|912308|912309|912310|912311|912312|912313|912314|912315|912316|912317|912318|912319|912320|912321|912322|912323|912324|912325|912326|912327|912328|912329|912330|912331|912332|912333|912334|912335|912336|912337|912338|912339|912340|912341|912342|912343|912344|912345|912346|912347|912348|912349|912350|912351|912352|912353|912354|912355|912356|912357|912358|912359|912360|912361|912362|912363|912364|912365|912366|912367|912368|912369|912370|912371|912372|912373|912374|912375|912376|913587|913588|913589|913590|913591|913592|913593|913594|913595|913596|913597|913598|913599|913600|913601|913602|913603|913604|913605|913606|913607|913608|913609|913610|913611|913612|913613|913614|913615|913616|913617|913618|913619|913620|913621|913622|913623|913624|913625|913626|913627|913628|913629|913630|913631|913632|913633|913634|913635|913636|913637|913638|913639|913640|913641|913642|913643|913644|913645|913646|913647|913648|913649|913650|913651|913652|913653|913654|913655|913656|913657|913658|913659|913660|913661|913662|913663|913664|913665|913666|913667|913668|913669|913670|913671|913672|913673|913674|913675|913676|913677|913678|913679|913680|913681|913682|913683|913684|913685|913686|913687|913688|913689|913690|913691|913692|913693|913694|913695|913696|913697|913698|913699|913700|913701|913702|913703|913704|913705|913706|913707|913708|913709|913710|913711|913712|913713|913714|913715|913716|913717|913718|913719|913720|913721|913722|913723|913724|913725|913726|913727|913728|913729|913730|913731|913732|913733|913734|913735|913736|913737|913738|913739|913740|913741|913742|913743|913744|913745|913746|913747|913748|913749|913750|913751|913752|913753|913754|913755|913756|913757|913758|913759|913760|913761|913762|913763|913764|913765|913766|913767|913768|913769|913770|913771|913772|913773|913774|913775|913776|913777|913778|913779|913780|913781|913782|913783|913784|913785|913786|913787|913788|913789|913790|913791|913792|913793|913794|913795|913796|913797|913798|913799|913800|913801|913802|913803|913804|913805|913806|913807|913808|913809|913810|913811|913812|913813|913814|913815|913816|913817|913818|913819|913820|913821|913822|913823|913824|913825|913826|913827|913828|913829|913830|913831|913832|913833|913834|913835|913836|913837|913838|913839|913840|913841|913842|913843|913844|913845|913846|913847|913848|913849|913850|913851|913852|913853|913854|913855|913856|913857|913858|913859|913860|913861|913862|913863|913864|913865|913866|913867|913868|913869|913870|913871|913872|913873|913874|913875|913876|913877|913878|913879|913880|913881|913882|913883|913884|913885|913886|913887|913888|913889|913890|913891|913892|913893|913894|913895|913896|913897|913898|913899|913900|913901|913902|913903|913904|913905|913906|913907|913908|913909|913910|913911|913912|913913|913914|913915|913916|913917|913918|913919|913920|913921|913922|913923|913924|913925|913926|913927|913928|913929|913930|913931|913932|913933|913934|913935|913936|913937|913938|913939|913940|913941|913942|913943|913944|913945|913946|913947|913948|913949|913950|913951|913952|913953|913954|913955|913956|913957|913958|913959|913960|913961|913962|913963|913964|913965|913966|913967|913968|913969|913970|913971|913972|913973|913974|913975|913976|913977|913978|913979|913980|913981|913982|913983|913984|913985|913986|913987|913988|913989|913990|913991|913992|913993|913994|913995|913996|913997|913998|913999|914000|914001|914002|914003|914004|914005|914006|914007|914008|914009|914010|914011|914012|914013|914014|914015|914016|914017|914018|914019|914020|914021|914022|914023|914024|914025|914026|914027|914028|914029|914030|914031|914032|914033|914034|914035|914036|914037|914038|914039|914040|914041|914042|914043|914044|914045|914046|914047|914048|914049|914050|914051|914052|914053|914054|914055|914056|914057|914058|914059|914060|914061|914062|914063|914064|914065|914066|914067|914068|914069|914070|914071|914072|914073|914074|914075|914076|914077|914078|914079|914080|914081|914082|914083|914084|914085|914086|914087|914088|914089|914090|914091|914092|914093|914094|914095|914096|914097|914098|914099|914100|914101|914102|914103|914104|914105|914106|914107|914108|914109|914110|914111|914112|914113|914114|914115|914116|914117|914118|914119|914120|914121|914122|914123|914124|914125|914126|914127|914128|914129|914130|914131|914132|914133|914134|914135|914136|914137|914138|914139|914140|914141|914142|914143|914144|914145|914146|914147|914148|914149|914150|914151|914152|914153|914154|914155|914156|914157|914158|914159|914160|914161|914162|914163|914164|914165|914166|914167|914168|914169|914170|914171|914172|914173|914174|914175|914176|914177|914178|914179|914180|914181|914182|914183|914184|914185|914186|914187|914188|914189|914190|914191|914192|914193|914194|914195|914196|914197|914198|914199|914200|914201|914202|914203|914204|914205|914206|914207|914616|914617|914618|914619|914620|914621|914622|914623|914624|914625|914626|914627|914628|914629|914630|914631|914632|914633|914634|914635|914636|914637|914638|914639|914640|914641|914642|914643|914644|914645|914646|914647|914648|914824|914825|914826|914827|914828|914829|914830|914831|914832|914833|914834|914835|914836|914837|914838|914839|914840|914841|914842|914843|914844|914845|914846|914847|914848|914849|914850|914851|914852|914853|914854|914855|914856|914857|914858|914859|914860|914861|914862|914863|914864|914865|914866|914916|914917|914918|914919|914920|914921|914922|914923|914924|914925|914926|914927|914928|914929|914930|914931|914932|914933|914934|914935|914936|914937|914938|914939|914940|914941|914942|914943|914944|914945|914946|914947|914948|914949|914950|914951|914952|914953|914954|914955|914956|914957|914958|914959|914960|914961|914962|914963|914964|914965|914966|914967|914968|914969|914970|914971|914972|914973|915177|915179|915181|915183|915185|915187|915189|915191|915193|915232|915235|915237|915243|915246|915250|915252|915254|915256|915258|915259|915260|915261|915262|915263|915265|915267|915269|915271|915273|915275|915277|915279|915281|915283|915285|915287|915289|915291|915292|915294|915296|915297|915300|915302|915304|915310|915312|915314|915316|915318|915320|915322|915324|915326|915328|915330|915332|915334|915336|915338|915340|915343|915345|915347|915350|915356|915360|915364|915368|915370|915374|915377|915379|915381|915382|915383|915385|915387|915388|915389|915391|915392|915393|915395|915397|915399|915401|915403|915441|915443|915445|915447|915448|915449|915450|915451|915453|915455|915456|915457|915459|915461|915463|915465|915466|915467|915470|915473|915474|915475|915477|915479|915481|915482|915483|915484|915485|915486|915488|915490|915493|915496|915499|915501|915503|915511|915514|915517|915521|915522|915523|915525|915527|915529|915531|915533|915535|915536|915537|915539|915540|915541|915543|915545|915547|915549|915550|915552|915553|915555|915556|915557|915559|915560|915561|915562|915563|915564|915565|915566|915567|915568|915569|915570|915571|915572|915573|915574|915575|915576|915577|915578|915579|915580|915581|915582|915583|915584|915585|915586|915587|915588|915589|915590|915591|915592|915593|915594|915595|915596|915597|915598|915599|915601|915602|915607|915609|915611|915612|915613|915614|915615|915617|915619|915622|915625|915627|915628|915630|915631|915632|915633|915634|915635|915636|915637|915639|915640|915643|915649|915651|915655|915658|915660|915661|915662|915663|915664|915665|915666|915667|915668|915669|915671|915672|915673|915674|915675|915676|915677|915678|915679|915680|915681|915682|915683|915684|915685|915686|915687|915688|915689|915690|915691|915692|915693|915694|915695|915696|915697|915698|915699|915700|915701|915702|915703|915704|915705|915706|915707|915708|915709|915710|915711|915712|915713|915714|915715|915716|915717|915718|915719|915720|915721|915722|915724|915726|915728|915730|915732|915734|915736|915738|915740|915742|915749|915751|915755|915759|915761|915763|915765|915767|915771|915773|915775|915777|915779|915781|915783|915785|915787|915789|915791|915793|915795|915797|915799|915801|915803|915805|915807|915809|915811|915813|915815|915817|915819|915821|915823|915825|915831|915835|915839|915903|915907|915909|915911|915913|915915|915917|915919|915921|915923|915925|915927|915929|915931|915932|915933|915934|915936|915937|915938|915939|915940|915941|915942|915943|915944|915945|915946|915947|915948|915949|915950|915951|915952|915953|915954|915955|915956|915957|915958|915960|915961|915962|915963|915965|915966|915967|915969|915970|915971|915972|915973|915974|915975|915976|915977|915978|915979|915980|915981|915982|915983|915984|915985|915986|915987|915988|915989|915990|915991|915992|915993|915994|915995|915996|915997|915998|915999|916000|916001|916002|916003|916005|916006|916007|916008|916009|916010|916011|916012|916013|916014|916015|916016|916017|916018|916019|916020|916021|916022|916023|916025|916026|916028|916029|916030|916031|916032|916033|916034|916035|916036|916037|916039|916040|916041|916042|916043|916044|916045|916046|916047|916048|916049|916050|916051|916052|916053|916054|916055|916057|916059|916061|916063|916065|916066|916067|916068|916069|916071|916073|916075|916077|916078|916079|916080|916081|916082|916083|916084|916085|916086|916087|916088|916089|916090|916091|916092|916093|916095|916097|916098|916099|916100|916101|916102|916103|916104|916105|916106|916107|916108|916109|916110|916111|916112|916113|916115|916116|916117|916120|916121|916122|916124|916125|916126|916127|916129|916135|916138|916142|916144|916145|916150|916162|916163|916165|916167|916168|916169|916171|916186|916188|916189|916192|916195|916197|916198|916200|916202|916204|916205|916206|916207|916211|916212|916213|916214|916216|916220|916221|916222|916223|916224|916225|916228|916232|916233|916234|916235|916239|916241|916246|916250|916254|916257|916258|916261|916264|916265|916266|916267|916268|916270|916271|916272|916274|916275|916276|916278|916279|916280|916283|916286|916290|916300|916302|916308|916310|916320|916322|916326|916329|916333|916338|916340|916345|916346|916351|916356|916358|916360|916362|916387|916394|916396|916399|916406|916407|916408|916409|916411|916412|916414|916417|916418|916419|916421|916422|916423|916424|916426|916427|916428|916430|916432|916433|916434|916435|916437|916439|916440|916441|916447|916448|916450|916451|916452|916454|916456|916457|916459|916460|916461|916462|916464|916466|916468|916469|916470|916471|916472|916473|916474|916475|916476|916477|916478|916479|916480|916481|916482|916483|916484|916485|916486|916487|916488|916489|916490|916491|916492|916493|916494|916495|916496|916498|916499|916500|916502|916503|916504|916506|916507|916508|916509|916511|916513|916514|916515|916516|916517|916519|916520|916521|916522|916525|916526|916527|916529|916530|916532|916533|916534|916536|916537|916538|916551|916554|916557|916560|916562|916565|916566|916568|916569|916570|916572|916573|916574|916575|916577|916578|916579|916580|916582|916584|916585|916586|916587|916589|916590|916593|916599|916600|916601|916611|916618|916620|916622|916623|916627|916632|916635|916637|916638|916640|916642|916645|916646|916663|916666|916669|916671|916673|916674|916676|916677|916684|916685|916687|916688|916690|916691|916692|916700|916701|916702|916703|916704|916705|916706|916707|916708|916709|916710|916711|916712|916713|916714|916715|916716|916717|916718|916719|916720|916721|916722|916723|916724|916725|916726|916727|916728|916729|916730|916731|916732|916733|916734|916735|916736|916737|916738|916739|916740|916741|916742|916743|916744|916745|916746|916747|916748|916749|916750|916751|916752|916753|916754|916755|916764|916765|916766|916773|916774|916775|916776|916777|916780|916781|923799|923800|923801|923802|923803|923804|923805|923806|923807|923808|923809|923810|923811|923812|923813|923814|923815|923816|923817|923818|923819|923820|923821|923822|923823|923824|923825|923826|923827|923828|932647|932648|932649|932650|932651|932652|932653|932654|932655|932656|932657|932658|932659|932660|932661|932662|932663|932664|932665|932666|932667|932668|932669|932670|932671|932672|932673|932674|939981|939982|939983|940796|940797|944326|944327|944328|944329|944330|944331|944332|944333|944334|944335|944336|944337|944338|944339|944340|944341|944342|944343|944344|944345|944346|944347|944348|944349|944350|944351|944352|944353|944354|944355|944356|944357|944358|944359|944360|953975|953976|953977|953978|953979|953980|953981|953982|953983|953984|953985|953986|953987|953988|953989|953990|953991|953992|953993|953994|953995|953996|959749|959750|959751|960549|960550", + "upstreamId": "15048|15147|15375|15382|15383|15384|15385|15393|15398|15402|15440|15836|15837|15839|15842|15843|15845|15846|15847|15849|15850|15851|15853|15855|15861|15863|15867|15868|15870|15874|15878|16282|16284|16285|16309|16792|16794|16795|16796|16797|16798|16799|16801|16803|17255|17256|17257|17262|17263|17264|17265|17268|17271|17272|17273|17277|17511|18057|18058|18060|18061|18062|18064|18066|18068|18069|18072|18074|18075|18077|18082|18083|18084|18086|18087|18402|18403|18406|18409|18410|19508|19509|19775|19776|19777|19925|19927|19932|20138|20142|20332|20333|20335|20336|20493|20630|20631|20633|20635|20636|20637|20638|20639|20642|20911|20912|21593|21861|21864|21931|21932|21934|21935|21936|21937|21939|21942|21943|21945|21947|21948|21952|21954|21956|21979|21984|21985|21986|21987|22281|22482|22484|22487|22488|22500|22851|22852|22856|22858|22859|22866|22868|22872|22875|22879|22891|23084|23260|23261|23262|23263|23272|23273|23275|23582|23777|23781|23821|23822|23823|23970|23971|23980|24273|24276|24279|24281|24283|24284|24357|24358|24359|24361|24364|24365|24367|24368|24379|24381|24383|24384|24385|24386|24387|24388|24448|24451|24453|24454|24459|24462|24463|24464|24465|27083|27084|27085|27086|27088|27270|27271|27272|27280|27283|27284|27285|27386|27387|27388|27390|27391|27392|27393|27394|27395|27396|27397|27398|27403|27404|27405|27406|27408|27409|27413|27416|27418|27421|27436|27441|27442|27713|27772|27817|27818|27820|27821|27822|27824|27826|27830|27831|28110|28112|28115|28125|28126|28129|28130|28131|28132|28920|28922|28947|28948|28953|28954|28956|28957|28970|28971|28972|28973|28975|28977|28978|28982|28983|28984|28985|28986|28987|28988|28989|28990|28994|29396|31271|31274|31275|31652|31720|31724|31727|31729|31731|31732|31738|31742|31967|31968|32117|32119|32124|32126|32128|32129|32133|32135|32136|32138|32145|32699|32700|32701|32704|32705|32706|32708|32709|32710|32711|32712|32713|32714|32715|32716|32720|32721|32722|32723|32724|32732|32733|33125|33492|33493|33882|36140|36145|36148|36152|36165|36173|36191|36194|36221|36222|36223|36224|36228|36231|36233|36239|36241|36242|36243|36246|36247|36254|36255|36260|36261|36269|36272|36273|36275|36280|36284|36286|36287|36288|36289|36291|36292|36296|36298|36302|36305|38609|38660|38740|38741|38743|38747|38851|39018|39088|39159|39241|39244|39258|39261|39492|40236|40237|44228|45185|45186|45187|45193|45201|45202|45203|45204|45205|45206|45207|45208|45209|45210|45212|45216|45217|45218|45219|45220|45222|45223|45224|45227|45228|45229|45230|45231|45232|45233|45234|45235|45237|45238|45239|45240|45241|45242|45243|45244|45245|45246|45247|45248|45249|45251|45255|45257|45258|45259|45261|45346|45349|45350|45351|45352|45353|45354|45384|45388|45429|45560|45561|45562|45564|45566|45930|45931|45932|45933|45934|45935|45936|45937|45938|45939|45942|45943|45944|45945|45946|45947|45948|45949|45954|45955|45958|45960|45961|45962|45965|45966|45967|45968|45969|45970|45971|45972|45973|45974|45976|45977|45979|45981|45982|45986|45989|45990|45991|45992|45994|45996|45997|45998|45999|46000|46001|46002|46003|46005|46006|46007|46008|46009|46010|46011|46012|46013|46015|46017|46018|46019|46020|46021|46022|46024|46025|46026|46027|46028|46029|46030|46031|46032|46033|46034|46035|46037|46038|46039|46041|46042|46043|46044|46045|46046|46047|46049|46050|46051|46055|46056|46057|46058|46060|46061|46062|46063|46065|46066|46069|46072|46073|46077|46078|46079|46080|46081|46082|46083|46084|46085|46086|46087|46089|46090|46091|46092|46093|46095|46096|46097|46098|46099|46100|46101|46102|46103|46104|46105|46109|46111|46112|46113|46115|46116|46117|46118|46119|46120|46121|46122|46125|46126|46127|46128|46129|46130|46131|46134|46135|46136|46137|46138|46140|46141|46142|46144|46145|46147|46149|46150|46151|46152|46153|46154|46155|46156|46157|46160|46161|46162|46163|46164|46167|46168|46169|46170|46171|46172|46175|46176|46177|46179|46180|46181|46183|46184|46185|46186|46187|46188|46189|46190|46191|46192|46193|46194|46195|46196|46197|46198|46200|46201|46202|46203|46204|46206|46210|46212|46213|46214|46215|46216|46217|46219|46220|46223|46224|46225|46226|46227|46228|46229|46230|46231|46232|46233|46234|46235|46236|46238|46239|46240|46241|46242|46245|46246|46247|46248|46249|46251|46252|46253|46254|46255|46256|46257|46258|46259|46262|46264|46265|46266|46267|46268|46269|46270|46271|46273|46274|46275|46276|46277|46278|46279|46280|46281|46283|46285|46286|46287|46289|46290|46291|46292|46293|46294|46295|46296|46297|46298|46299|46300|46301|46302|46303|46304|46305|46306|46307|46308|46309|46310|46311|46312|46313|46314|46315|46316|46318|46319|46320|46321|46322|46323|46324|46325|46326|46327|46328|46329|46330|46331|46333|46334|46335|46336|46337|46339|46340|46341|46342|46343|46344|46345|46346|46347|46349|46350|46352|46354|46355|46356|46357|46359|46360|46362|46363|46364|46365|46366|46367|46368|46369|46370|46371|46373|46375|46376|46378|46380|46381|46382|46384|46385|46386|46388|46389|46391|46393|46394|46395|46396|46397|46398|46400|46401|46402|46403|46404|46407|46408|46409|46411|46412|46413|46414|46415|46417|46418|46419|46421|46422|46423|46424|46428|46430|46431|46432|46433|46434|46436|46438|46439|46441|46442|46443|46445|46446|46447|46448|46449|46451|46453|46454|46455|46456|46458|46460|46461|46462|46464|46465|46466|46468|46469|46470|46471|46472|46473|46475|46476|46477|46478|46479|46481|46482|46483|46484|46485|46486|46487|46488|46491|46492|46493|46494|46495|46496|46497|46498|46499|46500|46501|46502|46504|46505|46506|46507|46509|46510|46512|46513|46514|46515|46516|46517|46519|46520|46523|46524|46525|46527|46528|46529|46530|46531|46532|46533|46534|46535|46536|46537|46539|46540|46541|46542|46543|46544|46545|46546|46547|46548|46549|46551|46552|46553|46554|46555|46556|46557|46558|46559|46560|46561|46562|46563|46564|46565|46566|46567|46568|46570|46571|46572|46574|46575|46576|46577|46578|46579|46580|46581|46582|46583|46584|46585|46586|46588|46589|46590|46591|46593|46594|46595|46597|46598|46599|46600|46601|46602|46603|46604|46606|46607|46608|46609|46614|46615|46616|46617|46618|46619|46620|46621|46623|46624|46625|46626|46627|46628|46629|46631|46632|46633|46634|46635|46636|46637|46638|46639|46640|46641|46642|46644|46645|46647|46649|46650|46652|46653|46654|46655|46656|46657|46658|46659|46660|46661|46662|46663|46664|46665|46666|46667|46668|46669|46670|46672|46675|46677|46678|46679|46680|46681|46682|46684|46686|46687|46688|46690|46691|46692|46693|46694|46695|46696|46697|46698|46701|46702|46703|46705|46707|46708|46709|46710|46711|46712|46713|46714|46715|46716|46717|46719|46720|46723|46724|46725|46726|46727|46729|46731|46732|46733|46734|46735|46736|46738|46739|46740|46741|46742|46743|46744|46745|46746|46747|46748|46749|46750|46751|46752|46754|46755|46756|46757|46758|46759|46760|46761|46763|46764|46765|46766|46767|46768|46769|46771|46773|46774|46776|46777|46778|46779|46780|46781|46782|46783|46785|46786|46787|46788|46789|46790|46791|46792|46793|46794|46795|46796|46797|46798|46799|46801|46804|46805|46806|46807|46808|46809|46810|46811|46813|46814|46816|46817|46818|46819|46820|46821|46822|47198|47205|47216|48183|48184|48215|48216|48269|48348|48560|48599|49466|49468|49469|49584|49586|49588|49596|49598|49606|49607|49611|49612|49627|49628|49630|49631|49636|49852|49938|49939|49940|49941|49942|49943|49944|49945|49947|49948|49949|49950|49951|49952|49953|49954|49955|49956|49957|49958|49959|49960|49961|49962|49963|49964|49965|49966|49968|49969|49970|49971|49972|49973|49974|49975|49976|49977|49978|49979|49980|49981|49982|49983|49984|49985|49986|49987|49988|49990|49992|49995|49997|49998|49999|50000|50001|50002|50003|50004|50006|50007|50008|50009|50010|50011|50012|50016|50017|50018|50019|50021|50022|50023|50024|50026|50027|50028|50029|50030|50032|50033|50035|50036|50038|50039|50040|50043|50044|50045|50047|50049|50050|50059|50061|50062|50063|50064|50066|50067|50068|50069|50071|50072|50073|50074|50075|50076|50077|50078|50079|50080|50081|50082|50083|50084|50085|50086|50087|50089|50090|50091|50092|50093|50094|50095|50096|50098|50099|50100|50101|50102|50103|50104|50105|50106|50108|50109|50111|50112|50113|50114|50116|50117|50118|50119|50121|50122|50123|50124|50125|50126|50127|50129|50130|50131|50132|50133|50134|50135|50137|50138|50139|50140|50141|50142|50143|50144|50145|50146|50147|50148|50150|50152|50153|50154|50155|50156|50157|50158|50159|50160|50161|50162|50163|50164|50165|50166|50168|50169|50170|50171|50172|50173|50174|50175|50176|50177|50178|50179|50180|50182|50184|50185|50186|50187|50188|50190|50191|50192|50193|50194|50195|50196|50197|50198|50199|50200|50201|50202|50203|50204|50205|50206|50209|50215|50216|50218|50219|50220|50221|50222|50223|50224|50225|50226|50227|50228|50229|50230|50231|50232|50233|50235|50236|50237|50239|50240|50241|50242|50243|50244|50245|50246|50247|50248|50249|50250|50251|50252|50253|50254|50255|50256|50257|50260|50262|50263|50264|50265|50266|50267|50268|50269|50270|50271|50274|50275|50276|50278|50279|50280|50281|50282|50283|50284|50285|50293|50294|50295|50296|50298|50302|50303|51230|51233|51237|51242|51244|51260|51261|51362|51408|51409|51412|51413|51414|51415|51417|51418|51419|51420|51421|51637|51638|51639|51640|51641|51642|51666|51667|52756|52757|52758|52759|52760|52762|52763|52764|52765|52767|52769|52774|53808|53809|53810|53813|53814|53817|54989|57889|57898|57913|57914|57917|57927|57930|57932|57959|57962|57965|57980|57983|58024|58033|58044|58093|58105|58116|58124|58131|58134|58146|58147|58149|58151|58153|58154|58168|58170|58177|58181|58182|58183|58184|58185|58186|58215|58216|58217|58219|58233|58234|58253|58255|58269|58294|58297|58303|58312|58316|58324|58325|58327|58328|58342|58347|58356|58364|58374|58378|58379|58387|58391|58393|58397|58413|58419|58420|58421|58433|58442|58451|58454|58455|58458|58464|58479|58490|58493|58510|58521|58532|58544|58548|58555|58557|58561|58613|58618|58629|58633|58635|58657|58665|58666|58667|58675|58684|58692|58695|58705|58710|58713|58715|58718|58727|58734|58735|58759|58765|58773|58778|58783|58797|58805|58808|58809|58822|58828|58833|58836|58843|58847|58860|58872|58878|58880|58888|58900|58901|58902|58904|58916|58917|58926|58934|58935|58936|58951|58980|58991|58992|58997|59008|59009|59017|59029|59042|59044|59054|59057|59061|59071|59074|59087|59089|59092|59103|59104|59115|59119|59131|59134|59164|59166|59171|59172|59181|59182|59207|59224|59230|59239|59251|59252|59262|59268|59278|59286|59287|59326|59332|59333|59343|59351|65703|65704|65706|65707|65709|65711|65713|65714|65715|65716|65717|65718|65720|65721|65722|65723|65724|65725|65726|65727|65728|65730|65731|65732|65734|65735|65736|65737|65738|65739|65741|65742|65745|65746|65748|65749|65750|65751|65752|65753|65754|65758|65759|65760|65761|65762|65763|65768|65773|65774|65775|65776|65779|65781|65784|65786|65787|65788|65789|65790|65793|65794|65796|65797|65798|65799|65800|65802|65803|65804|65805|65811|65812|65818|65820|65821|65822|65826|65827|65828|65829|65832|65834|65835|65836|65837|65838|65842|65843|65847|65849|65850|65852|65853|65854|65855|65857|65858|65859|65860|65861|65863|65865|65866|65867|65868|65869|65874|65875|65876|65878|65879|65880|65883|65884|65886|65888|65889|65895|65896|65898|65899|65901|65902|65904|65910|65911|65912|65914|65915|65916|65917|65919|65922|65925|65926|65927|65928|65934|65935|65936|65937|65939|65940|65942|65945|65946|65947|65949|65950|65951|65952|65953|65954|65959|65960|65966|65967|65968|65970|65973|65974|65975|65980|65981|65982|65983|65985|65988|65990|65994|65996|65998|66000|66001|66007|66008|66011|66013|66014|66017|66021|66023|66024|66025|66026|66027|66028|66029|66030|66031|66032|66034|66036|66038|66039|66040|66041|66042|66043|66045|66046|66047|66049|66052|66053|66055|66058|66061|66062|66063|66065|66066|66068|66071|66074|66075|66077|66078|66080|66081|66082|66086|66087|66088|66089|66091|66092|66093|66094|66096|66098|66099|66100|66101|66103|66106|66109|66114|66115|66116|66117|66118|66121|66126|66128|66129|66130|66131|66133|66135|66138|66139|66143|66144|66145|66146|66147|66148|66149|66152|66153|66156|66157|66158|66161|66163|66169|66170|66171|66172|66173|66175|66177|66180|66183|66184|66185|66186|66187|66188|66193|66194|66198|66199|66202|66205|66206|66211|66212|66213|66214|66215|66221|66223|66230|66241|66242|66243|66244|66245|66246|66247|66251|66252|66253|66254|66255|66256|66257|66260|66261|66267|66269|66270|66272|66273|66276|66277|66279|66280|66282|66284|66285|66286|66287|66291|66295|66296|66298|66299|66300|66301|66302|66303|66304|66308|66310|66311|66312|66313|66315|66316|66318|66319|66320|66321|66323|66325|66326|66327|66328|66329|66332|66337|66339|66342|66344|66345|66346|66347|66349|66350|66351|66352|66354|66355|66357|66358|66360|66362|66363|66366|66367|66369|66370|66372|66374|66377|66378|66379|66382|66384|66385|66386|66387|66389|66390|66392|66394|66395|66396|66397|66400|66402|66404|66405|66406|66409|66411|66413|66414|66415|66418|66420|66424|66425|66426|66429|66433|66434|66436|66439|66441|66443|66446|66447|66449|66451|66452|66454|66455|66459|66462|66463|66465|66466|66467|66468|66469|66470|66471|66473|66476|66478|66479|66481|66482|66484|66486|66487|66488|66489|66490|66492|66493|66494|66496|66499|66500|66501|66502|66503|66505|66508|66509|66518|66519|66520|66521|66523|66525|66526|66527|66528|66530|66532|66533|66536|66539|66541|66544|66546|66547|66549|66552|66553|66555|66556|66557|66558|66559|66560|66562|66563|66564|66565|66567|66568|66569|66570|66571|66573|66574|66575|66579|66580|66581|66585|66586|66587|66589|66593|66595|66596|66597|66598|66599|66600|66601|66604|66607|66608|66610|66613|66616|66618|66619|66620|66622|66623|66625|66626|66627|66629|66632|66633|66634|66641|66647|66648|66649|66650|66651|66652|66658|66659|66661|66663|66666|66667|66668|66669|66671|66673|66675|66676|66678|66679|66680|66683|66684|66685|66687|66692|66696|66697|66698|66700|66702|66703|66708|66711|66714|66716|66717|66719|66720|66722|66725|66726|66730|66733|66737|66739|66741|66742|66743|66748|66751|66754|66755|66756|66760|66762|66764|66765|66770|66772|66774|66775|66776|66777|66778|66780|66781|66783|66784|66790|66793|66794|66795|66796|66797|66799|66800|66802|66803|66806|66807|66808|66813|66817|66819|66821|66823|66824|66827|66828|66829|66832|66833|66834|66835|66842|66845|66846|66849|66850|66851|66852|66854|66855|66856|66859|66860|66861|66864|66866|66867|66869|66870|66871|66876|66878|66879|66880|66881|66882|66883|66884|66885|66887|66888|66890|66891|66893|66894|66895|66897|66899|66900|66901|66905|66907|66909|66910|66913|66914|66915|66916|66917|66918|66919|66922|66923|66924|66925|66926|66927|66928|66929|66931|66933|66934|66941|66945|66946|66947|66948|66951|66953|66954|66955|66959|66962|66964|66965|66966|66967|66968|66970|66972|66974|66975|66976|66980|66982|66983|66984|66989|66990|66991|66992|66993|66994|66995|66996|66998|66999|67002|67003|67004|67005|67007|67009|67010|67012|67013|67015|67017|67018|67021|67023|67024|67026|67028|67030|67031|67033|67035|67040|67041|67042|67044|67047|67049|67050|67053|67054|67056|67057|67060|67062|67063|67066|67068|67069|67073|67074|67075|67076|67077|67078|67080|67082|67085|67086|67087|67091|67092|67093|67094|67098|67102|67104|67105|67106|67107|67108|67109|67111|67115|67116|67118|67119|67120|67123|67126|67127|67129|67130|67131|67132|67134|67135|67136|67138|67139|67140|67141|67142|67143|67145|67146|67149|67152|67153|67157|67159|67161|67166|67168|67171|67172|67173|67174|67175|67176|67177|67178|67180|67181|67183|67184|67185|67188|67189|67190|67191|67197|67199|67201|67202|67203|67204|67205|67206|67207|67210|67211|67214|67215|67224|67227|67228|67230|67231|67232|67233|67234|67235|67236|67237|67238|67239|67242|67244|67249|67250|67252|67253|67254|67257|67260|67262|67263|67264|67265|67266|67267|67270|67271|67273|67274|67275|67276|67277|67278|67279|67283|67284|67285|67287|67288|67290|67291|67292|67293|67294|67297|67299|67300|67304|67306|67309|67310|67319|67321|67322|67323|67324|67326|67330|67332|67335|67336|67337|67339|67341|67343|67344|67345|67346|67347|67349|67350|67351|67352|67355|67360|67361|67362|67364|67365|67368|67372|67373|67376|67377|67378|67380|67381|67382|67384|67389|67390|67391|67393|67395|67396|67399|67400|67402|67405|67407|67408|67410|67411|67412|67419|67421|67422|67425|67426|67427|67429|67430|67431|67434|67435|67437|67438|67440|67441|67445|67446|67447|67448|67450|67451|67452|67453|67455|67457|67458|67459|67460|67461|67466|67467|67468|67469|67472|67473|67476|67477|67478|67479|67480|67482|67484|67485|67486|67490|67492|67493|67494|67498|67499|67501|67502|67504|67506|67507|67509|67510|67513|67515|67517|67519|67521|67522|67524|67526|67529|67530|67533|67535|67537|67538|67540|67541|67543|67544|67545|67551|67552|67554|67556|67558|67559|67561|67562|67563|67564|67565|67566|67569|67570|67571|67572|67573|67574|67576|67578|67579|67581|67582|67583|67584|67585|67586|67587|67589|67592|67594|68766|68768|68769|68771|68775|68777|68780|68781|68784|68787|68788|68789|68795|68796|68797|68799|68801|68802|68803|68807|68808|68810|68813|68818|68819|68824|68825|68827|68829|68833|68835|68839|68841|68842|68843|68844|68845|68850|68851|68853|68855|68857|68858|68862|68866|68867|68868|68869|68870|68871|68875|68876|68879|68881|68882|68883|68887|68889|68891|68893|68894|68895|68897|68899|68901|68902|68904|68907|68913|68914|68915|68916|68917|68918|68919|68921|68922|68925|68926|68930|68931|68935|68941|68944|68945|68946|68947|68952|68953|68954|68957|68958|68962|68964|68965|68966|68967|68971|68974|68976|68977|68978|68980|68981|68982|68989|68995|68996|68997|68998|68999|69001|69002|69004|69005|69009|69010|69011|69012|69014|69018|69019|69028|69031|69032|69033|69034|69038|69043|69044|69045|69046|69047|69048|69050|69052|69054|69056|69058|69061|69063|69066|69067|69068|69069|69071|69074|69079|69083|69084|69089|69091|69092|69093|69097|69098|69099|69100|69102|69103|69105|69109|69110|69111|69114|69115|69118|69122|69123|69124|69126|69128|69129|69132|69134|69135|69136|69137|69138|69141|69145|69146|69153|69154|69157|69158|69159|69161|69162|69166|69169|69170|69171|69172|69173|69174|69175|69179|69181|69184|69185|69187|69189|69191|69194|69196|69199|69200|69203|69207|69208|69211|69215|69216|69217|69218|69219|69223|69225|69226|69228|69230|69231|69232|69233|69234|69239|69242|69247|69248|69249|69250|69258|69260|69262|69267|69268|69269|69271|69273|69275|69276|69277|69278|69279|69280|69281|69287|69292|69296|69299|69301|69302|69309|69311|69313|69314|69319|69323|69324|69328|69330|69331|69332|69334|69335|69338|69340|69341|69342|69343|69344|69345|69346|69350|69355|69356|69358|69360|69361|69362|69368|69369|69370|69371|69376|69377|69383|69384|69386|69387|69389|69392|69393|69394|69395|69396|69397|69399|69401|69402|69405|69408|69409|69410|69411|69412|69413|69414|69415|69416|69418|69419|69420|69422|69424|69425|69427|69428|69429|69430|69431|69435|69436|69438|69439|69443|69444|69447|69454|69456|69457|69459|69462|69463|69466|69467|69473|69475|69477|69479|69482|69483|69484|69485|69486|69487|69488|69490|69491|69493|69494|69495|69497|69498|69499|69501|69503|69506|69507|69509|69510|69511|69514|69517|69519|69520|69522|69523|69524|69526|69527|69528|69529|69533|69535|69536|69538|69540|69543|69545|69546|69547|69552|69554|69557|69558|69561|69563|69567|69569|69573|69574|69578|69580|69584|69589|69592|69593|69596|69597|69598|69599|69601|69602|69603|69605|69607|69608|69609|69610|69614|69615|69616|69617|69620|69623|69624|69625|69626|69627|69635|69636|69637|69638|69639|69640|69641|69645|69646|69648|69649|69650|69652|69653|69654|69658|69659|69661|69667|69669|69672|69676|69677|69679|69682|69687|69688|69689|69692|69694|69695|69699|69703|69705|69706|69707|69708|69711|69712|69713|69716|69717|69720|69725|69726|69727|69729|69730|69731|69734|69739|69743|69744|69745|69748|69749|69751|69752|69756|69757|69760|69762|69763|69766|69770|69772|69774|69777|69778|69779|69780|69782|69784|69786|69791|69792|69794|69798|69800|69802|69803|69805|69806|69807|69808|69810|69812|69814|69816|69818|69819|69821|69822|69823|69824|69830|69831|69833|69835|69836|69839|69840|69841|69843|69844|69845|69850|69852|69854|69859|69860|69861|69862|69863|69868|69870|69873|69875|69877|69880|69881|69884|69885|69886|69887|69888|69890|69891|69894|69895|69896|69900|69901|69902|69903|69904|69905|69906|69909|69910|69911|69912|69913|69914|69916|69918|69919|69921|69922|69923|69924|69926|69929|69933|69935|69936|69939|69941|69942|69946|69947|69950|69951|69952|69957|69958|69959|69960|69961|69964|69968|69969|69970|69971|69973|69974|69976|69977|69978|69981|69983|69984|69985|69987|69988|69989|69992|69993|69994|69995|69996|69997|69998|70000|70005|70006|70008|70009|70011|70013|70016|70017|70019|70020|70022|70025|70028|70031|70034|70035|70036|70037|70038|70041|70044|70050|70053|70054|70055|70056|70057|70059|70060|70062|70063|70067|70069|70070|70071|70073|70074|70077|70078|70079|70080|70082|70083|70088|70089|70090|70094|70095|70096|70098|70099|70101|70102|70105|70108|70109|70110|70114|70115|70117|70118|70119|70120|70123|70127|70128|70129|70130|70137|70139|70140|70143|70147|70148|70149|70150|70155|70157|70166|70167|70168|70169|70170|70172|70174|70175|70177|70178|70180|70182|70183|70184|70186|70188|70189|70190|70191|70194|70195|70197|70201|70203|70205|70206|70207|70208|70211|70212|70213|70217|70219|70220|70227|70228|70230|70232|70233|70235|70237|70238|70239|70240|70244|70245|70247|70248|70251|70252|70256|70257|70258|70264|70265|70268|70271|70272|70274|70275|70278|70279|70280|70281|70282|70283|70288|70291|70293|70294|70295|70298|70299|70300|70301|70302|70304|70305|70308|70309|70310|70313|70314|70315|70319|70322|70323|70330|70333|70334|70336|70337|70339|70340|70343|70344|70345|70346|70349|70355|70356|70358|70360|70363|70372|70375|70377|70383|70384|70386|70387|70388|70390|70392|70393|70394|70398|70399|70400|70402|70405|70406|70407|70408|70409|70410|70411|70412|70413|70414|70416|70420|70421|70426|70427|70433|70434|70436|70438|70439|70441|70442|70443|70444|70447|70448|70574|75224|75314|75628|75639|75663|75674|75676|75677|75679|75688|75693|75711|75743|75744|75745|75746|75757|75772|75773|75776|75780|75785|75789|75797|75815|75817|75819|75827|75849|75857|75870|75872|75886|75897|75906|75913|75921|75926|75927|75948|75951|75964|75974|75995|76006|76011|76014|76015|76035|76041|76057|76058|76064|76067|76068|76078|76079|76083|76101|76125|76127|76130|76148|76153|76155|76161|76163|76189|76217|76221|76235|76239|76265|76283|76292|76313|76316|76317|79191|79199|79201|79203|79204|79207|79208|79212|79214|79216|79217|79221|79227|79228|79229|79232|79242|79245|79248|79254|79255|79374|79680|79740|79742|80472|82009|82748|83231|84710|86509|88349|88528|88840|90951|91258|91294|91599|91600|92829|93506|93507|93525|93526|93802|94103|94125|94253|94472|94473|94582|94583|94585|94586|94587|94589|94590|94591|94592|94595|94596|94597|94599|94601|94602|94607|94625|94633|94638|94639|94641|94642|94646|94647|94648|94649|94650|94651|94652|94654|94656|94657|94660|94661|94663|94665|94666|94667|94668|94669|94671|94672|94674|94675|94676|94678|94682|94685|94687|94689|94690|94691|94692|94693|94694|94695|94697|94702|94703|94705|94706|94707|94708|94709|94711|94713|94714|94716|94719|94720|94721|94722|94723|94725|94727|94729|94730|94731|94733|94734|94735|94736|94737|94739|94740|94741|94742|94743|94744|94748|94752|94753|94754|94755|94756|94759|94760|94762|94763|94765|94769|94778|94779|94780|94781|94783|94786|94788|94791|94792|94796|94797|94798|94799|94802|94804|94807|94808|94810|94812|94813|94814|94815|94816|94818|94820|94821|94826|94829|94831|94832|94833|94834|94836|94837|94838|94840|94842|94843|94844|94845|94851|94852|94855|94856|94857|94858|94859|94861|94863|94864|94865|94867|94869|94870|94873|94874|94876|94877|94878|94883|94889|94890|94891|94892|94895|94896|94897|94898|94900|94902|94908|94916|94917|94919|94920|94921|94922|94923|94924|94925|94927|94931|94932|94935|94937|94938|94943|94947|94948|94949|94950|94951|94953|94956|94958|94959|94960|94962|94964|94968|94970|94971|94973|94974|94975|94980|94981|94989|94992|94996|95004|95005|95008|95009|95010|95012|95014|95015|95019|95021|95022|95025|95026|95028|95033|95036|95037|95038|95039|95042|95045|95046|95047|95048|95049|95062|95063|95064|95065|95067|95073|95074|95075|95078|95079|95081|95088|95090|95103|95104|95113|95117|95119|95123|95125|95127|95128|95129|95132|95135|95136|95147|95151|95152|95162|95164|95165|95170|95172|95179|95180|95185|95186|95188|95192|95196|95201|95209|95211|95215|95218|95219|95224|95225|95226|95227|95229|95231|95234|95242|95244|95254|95264|95265|95266|95267|95271|95272|95276|95286|95290|95292|95293|95294|95300|95312|95316|95322|95328|95329|95331|95337|95342|95343|95351|95353|95355|95360|95362|95363|95366|95369|95374|95376|95377|95380|95381|95383|95384|95389|95391|95392|95394|95396|95400|95404|95405|95406|95411|95419|95421|95425|95426|95427|95429|95436|95438|95440|95442|95445|95449|95455|95459|95462|95466|95470|95471|95474|95475|95477|95479|95480|95481|95483|95484|95486|95487|95488|95490|95494|95497|95506|95516|95520|95521|95523|95524|95527|95535|95539|95541|95542|95550|95552|95555|95556|95557|95558|95561|95562|95563|95564|95568|95571|95574|95575|95576|95584|95586|95590|95592|95596|95600|95601|95603|95606|95612|95614|95615|95621|95622|95623|95625|95630|95641|95646|95650|95652|95657|95658|95662|95663|95665|95668|95685|95687|95694|95697|95703|95704|95706|95710|95717|95718|95724|95725|95731|95732|95734|95741|95747|95748|95754|95756|95759|95761|95765|95767|95774|95775|95777|95780|95785|95789|95791|95792|95793|95798|95799|95805|95806|95809|95812|95813|95816|95823|95824|95829|95830|95832|95833|95835|95837|95841|95843|95846|95848|95854|95855|95856|95862|95865|95871|95877|95880|95881|95883|95884|95887|95888|95889|95892|95894|95895|95898|95916|95918|95919|95926|95927|95928|95930|95932|95960|95963|95970|95977|95983|95985|95987|95989|95994|95995|95999|96000|96003|96004|96016|96023|96025|96028|96029|96030|96031|96032|96035|96040|96041|96044|96045|96047|96048|96049|96052|96054|96058|96059|96064|96065|96067|96069|96077|96080|96091|96094|96098|96100|96103|96104|96109|96110|96111|96112|96116|96129|96131|96132|96135|96137|96141|96145|96149|96150|96152|96154|96157|96159|96163|96169|96171|96172|96173|96176|96178|96182|96184|96188|96189|96190|96192|96195|96196|96199|96201|96202|96205|96212|96219|96220|96222|96223|96225|96230|96238|96241|96242|96243|96248|96250|96256|96257|96262|96265|96268|96269|96271|96273|96274|96279|96280|96281|96283|96284|96286|96287|96288|96290|96291|96293|96297|96300|96307|96308|96310|96317|96318|96320|96322|96329|96330|96342|96343|96346|96348|96349|96350|96353|96356|96358|96360|96361|96362|96367|96378|96381|96382|96384|96385|96396|96402|96403|96408|96417|96418|96420|96421|96423|96424|96425|96428|96430|96431|96432|96433|96437|96438|96439|96440|96443|96447|96449|96451|96452|96456|96458|96460|96461|96462|96463|96465|96466|96470|96473|96474|96475|96478|96479|96480|96481|96482|96483|96490|96491|96492|96494|96496|96497|96503|96505|96506|96508|96510|96512|96513|96514|96516|96517|96518|96520|96522|96525|96526|96528|96529|96532|96534|96535|96536|96537|96538|96543|96545|96550|96564|96565|96567|96569|96571|96572|96573|96574|96575|96576|96579|96580|96581|96582|96583|96584|96585|96587|96589|96590|96592|96594|96595|96600|96601|96602|96605|96608|96609|96614|96615|96616|96617|96627|96630|96631|96632|96637|96646|96647|96648|96649|96652|96653|96656|96657|96658|96660|96664|96669|96670|96671|96675|96680|96681|96697|96700|96708|96710|96711|96714|96715|96718|96720|96721|96722|96724|96728|96729|96735|96736|96739|96742|96743|96744|96746|96747|96748|96764|96765|96768|96774|96776|96778|96779|96780|96781|96786|96787|96788|96790|96792|96793|96795|96796|96798|96799|96802|96803|96804|96805|96806|96808|96809|96812|96813|96815|96818|96825|96826|96827|96830|96834|96836|96837|96838|96839|96841|96843|96850|96851|96852|96857|96858|96861|96886|96887|96888|96891|96892|96893|96896|96898|96899|96900|96902|96903|96904|96905|96906|96907|96908|96909|96910|96912|96914|96915|96916|96917|96918|96919|96921|96922|96923|96924|96927|96928|96929|96932|96933|96934|96936|96938|96939|96940|96942|96943|96944|96946|96947|96949|96950|96952|96953|96954|96955|96958|96959|96960|96962|96963|96964|96965|96966|96967|96968|96969|96971|96972|96973|96975|96977|96978|96979|96980|96981|96982|96983|96985|96986|96988|96991|96992|96994|96995|96996|96997|96998|96999|97001|97002|97003|97006|97007|97008|97009|97010|97011|97013|97016|97018|97019|97024|97025|97029|97031|97033|97034|97035|97039|97045|97047|97050|97051|97052|97053|97054|97055|97058|97059|97060|97061|97064|97068|97069|97070|97071|97072|97073|97074|97079|97080|97081|97082|97083|97086|97088|97089|97091|97094|97095|97097|97099|97104|97106|97107|97108|97109|97111|97112|97113|97115|97116|97118|97119|97120|97121|97122|97123|97124|97126|97127|97128|97129|97130|97131|97133|97134|97135|97136|97137|97138|97139|97141|97143|97144|97145|97146|97207|97209|97210|97211|97212|97213|97215|97218|97221|97222|97224|97225|97226|97227|97231|97232|97233|97234|97235|97236|97239|97241|97242|97244|97248|97249|97251|97252|97253|97257|97259|97262|97264|97265|97266|97267|97270|97271|97273|97276|97277|97278|97279|97280|97283|97286|97287|97288|97291|97292|97293|97295|97297|97299|97304|97306|97307|97309|97310|97311|97312|97314|98250|98251|98252|98253|98256|98257|98259|98260|98304|98305|98306|98307|98308|98338|98356|98360|98361|98362|98364|98365|98484|98485|98486|98572|98605|98715|98720|98723|98724|98725|98729|98734|98735|98737|98739|98740|98741|98743|98746|98749|99003|99004|99006|99143|99230|99232|99233|99236|99237|99468|99469|99470|99471|99473|99474|99475|99476|99477|99478|99479|99480|99481|99482|99483|99993|101890|101892|101893|102143|102144|102146|102148|102363|102364|102365|102366|102368|102369|102370|102375|102376|102377|102378|102383|102386|102387|102661|102663|102664|102665|102666|102667|102668|102669|102670|102671|102673|102674|102677|102678|102680|102682|102683|102685|102686|102688|102689|102690|102691|102692|102695|102696|102697|102698|102700|102704|102706|102707|102708|102709|102710|102712|102713|102714|102715|102716|102717|102719|102720|102721|102722|102726|102727|102728|102729|102730|102731|102732|102733|102735|102736|102737|102738|102739|102740|102741|102743|102744|102745|102747|102748|102749|102750|102751|102752|102753|102754|102755|102756|102757|102758|102760|102762|102763|102764|102765|102766|102767|102768|102769|102770|102774|102776|102777|102779|102780|102781|102782|102785|102786|102787|102788|102789|102790|102791|102792|102793|102796|102797|102798|102799|102803|102805|102806|102807|102808|102810|102811|102812|102813|102814|102815|102816|102820|102823|102824|102826|102827|102828|102830|102832|102834|102837|102841|102843|102844|102847|102850|102851|102852|102857|102858|102860|106674|106675|131003|131005|131012|131029|131039|131041|131051|131054|131056|131057|131058|131059|131061|131074|131086|131090|131092|131104|131105|131108|131133|131135|131139|131163|131189|131196|131201|131202|131204|131205|131210|131211|131213|131215|131218|131219|131223|131224|131233|131235|131241|131245|131247|131248|131253|131260|131262|131263|131264|131265|131267|131278|131284|131298|131299|131306|131316|131321|131329|131336|131341|131348|131362|131363|131365|131369|131381|131383|131384|131389|131392|131402|131404|131418|131419|131421|131425|131427|131434|131435|131436|131440|131444|131445|131446|131463|131464|131466|131471|131481|131482|131483|131484|131485|131493|131494|131503|131510|131512|131514|131516|131517|131522|131523|131527|131529|131530|131531|131533|131534|131536|131538|131539|131541|131545|131548|131550|131552|131554|131560|131565|131567|131568|131572|131573|131575|131579|131583|131584|131587|131593|131600|131601|131603|131604|131610|131617|131620|131625|131626|131634|131651|131656|131660|131662|131663|131666|131667|131668|131671|131673|131674|131678|131693|131694|131696|131701|131705|131706|131712|131716|131719|131726|131727|131730|131733|131737|131739|131740|131741|131749|131750|131754|131755|131887|131888|131890|131891|131894|131895|131896|131897|131898|131899|131900|132081|132088|132090|132091|132092|132093|132094|132096|132097|132100|132101|132102|132103|132105|132108|132109|132110|132111|132112|132114|132116|132117|132118|132119|132120|132121|132123|132124|132126|132132|132133|132134|132135|132136|132137|132138|132139|132140|132145|132147|132150|132152|132154|132156|132157|132158|132159|132162|132163|132165|132167|132170|132170|132171|132179|132180|132182|132183|132185|132186|132188|132189|132191|132192|132193|132198|132198|132201|132202|132204|132205|132206|132207|132208|132208|132209|132211|132215|132216|132217|132218|132219|132221|132221|132223|132225|132226|132227|132228|132236|132237|132238|132239|132240|132241|132242|132243|132244|132246|132247|132248|132249|132250|132251|132253|132254|132255|132257|132258|132259|132260|132264|132267|132268|132270|132271|132272|132273|132274|132275|132276|132277|132278|132279|132280|132281|132282|132284|132285|132286|132287|132288|132290|132291|132292|132295|132306|132330|132334|132336|132337|132338|132342|132347|132350|132354|132403|132404|132411|132413|132420|132421|132422|132423|132424|132427|132476|132477|132478|132480|132481|132482|132489|132498|132502|132509|132512|132516|132517|132522|132523|132526|132527|132543|132544|132732|132733|132734|132735|132738|132739|132742|132743|132744|132745|132747|132748|132749|132750|132751|132752|132753|132754|132755|132757|132758|132759|132760|132761|132763|132764|132765|132766|132767|132769|132770|132771|132772|132773|132774|132775|132776|132777|132778|132779|132780|132781|132782|132783|132784|132785|132786|132787|132788|132789|132790|132791|132792|132794|132795|132796|132797|132798|132799|132800|132801|132802|132803|132804|132805|132806|132807|132808|132809|132810|132811|132812|132813|132814|132815|132816|132817|132818|132819|132820|132821|132822|132823|132824|132825|132826|132827|132828|132829|132830|132831|132832|132833|132834|132835|132836|132837|132838|132839|132840|132841|132842|132843|132844|132845|132846|132847|132848|132849|132850|132851|132852|132854|132856|132857|132858|132859|132860|132861|132862|132863|132864|132865|132867|132868|132869|132870|132871|132872|132873|132874|132875|132876|132877|132878|132879|132880|132881|132882|132883|132885|132886|132887|132888|132889|132890|132891|132892|132893|132894|132895|132896|132897|132899|132900|132901|132902|132903|132904|132905|132906|132907|132909|132910|132911|132912|132913|132914|132915|132916|132917|132918|132920|132921|132922|132923|132924|132925|132926|132928|132929|132930|132931|132932|132934|132935|132936|132937|132939|132941|132942|132943|132944|132945|132946|132947|132948|132949|132950|132951|132954|132955|132956|132957|132958|132960|132961|132962|132963|132964|132965|132967|132968|132969|132971|132972|132973|132974|132975|132977|132979|132980|132981|132982|132983|132986|132989|132991|132992|132993|132994|132995|132997|132998|133000|133001|133005|133006|133007|133008|133009|133011|133012|133013|133014|133015|133016|133017|133018|133019|133020|133021|133022|133023|133024|133025|133026|133027|133028|133029|133030|133031|133032|133033|133036|133037|133038|133039|133041|133042|133043|133044|133045|133046|133047|133048|133049|133050|133051|133053|133055|133057|133058|133060|133061|133062|133063|133064|133065|133066|133068|133069|133070|133071|133072|133073|133074|133075|133076|133077|133078|133079|133080|133081|133082|133083|133084|133085|133086|133087|133088|133089|133090|133091|133093|133094|133095|133096|133097|133098|133099|133100|133101|133103|133104|133105|133106|133108|133109|133110|133111|133112|133113|133115|133116|133117|133118|133119|133120|133122|133123|133131|133133|133138|133139|133140|133142|133144|133145|133148|133149|133150|133151|133152|133153|133154|133155|133156|133157|133158|133159|133160|133162|133163|133164|133165|133166|133167|133168|133169|133170|133171|133172|133173|133174|133175|133176|133177|133178|133179|133180|133182|133184|133186|133187|133188|133189|133190|133192|133193|133194|133195|133197|133198|133199|133200|133201|133202|133203|133204|133205|133206|133207|133208|133209|133210|133211|133212|133213|133214|133215|133216|133217|133218|133219|133220|133221|133222|133223|133224|133225|133226|133227|133228|133229|133230|133231|133233|133234|133235|133237|133238|133239|133240|133242|133245|133246|133247|133248|133249|133250|133251|133252|133253|133254|133255|133256|133257|133258|133259|133261|133262|133263|133264|133265|133267|133268|133269|133271|133273|133275|133276|133277|133278|133280|133281|133282|133283|133284|133285|133286|133287|133288|133289|133290|133291|133292|133293|133294|133295|133297|133298|133299|133300|133302|133303|133304|133305|133306|133307|133308|133309|133310|133311|133312|133313|133314|133315|133316|133317|133318|133319|133320|133321|133322|133323|133324|133325|133326|133328|133329|133330|133331|133332|133333|133335|133336|133337|133338|133339|133340|133341|133342|133343|133344|133345|133346|133347|133348|133349|133350|133351|133352|133353|133354|133355|133356|133357|133359|133360|133361|133362|133363|133364|133365|133366|133367|133368|133369|133370|133371|133372|133374|133375|133376|133377|133378|133379|133380|133381|133382|133383|133384|133385|133386|133387|133388|133389|133390|133391|133393|133394|133395|133396|133397|133398|133399|133400|133401|133402|133404|133405|133406|133407|133411|133412|133413|133414|133416|133417|133418|133419|133420|133422|133423|133424|133425|133426|133427|133428|133429|133431|133432|133433|133434|133435|133436|133437|133438|133439|133440|133443|133444|133446|133447|133449|133450|133451|133452|133454|133455|133456|133457|133458|133459|133460|133461|133462|133463|133464|133465|133466|133467|133468|133469|133470|133471|133472|133473|133474|133475|133476|133477|133478|133479|133480|133481|133482|133483|133484|133485|133486|133487|133488|133489|133490|133491|133492|133493|133494|133495|133496|133498|133499|133500|133501|133502|133503|133504|133505|133506|133507|133508|133510|133511|133513|133514|133516|133517|133518|133519|133520|133521|133522|133523|133524|133525|133526|133527|133528|133529|133530|133531|133532|133533|133534|133535|133536|133537|133538|133539|133540|133541|133542|133543|133544|133545|133546|133547|133549|133573|133574|133575|133576|133577|133578|133579|133580|133581|133582|133583|133585|133586|133587|133588|133590|133593|133594|133595|133596|133597|133599|133600|133601|133602|133603|133604|133605|133606|133607|133608|133609|133610|133611|133612|133613|133614|133615|133617|133618|133619|133620|133622|133623|133624|133626|133627|133628|133629|133630|133631|133632|133634|133636|133637|133640|133641|133642|133643|133644|133645|133646|133647|133648|133649|133650|133651|133652|133653|133654|133655|133656|133657|133658|133659|133660|133661|133662|133663|133664|133665|133666|133667|133668|133669|133672|133673|133675|133681|133903|133904|133905|133906|133907|133908|133909|133979|134454|135068|135720|135721|135723|135724|135725|135726|135727|135728|135729|135730|136089|136432|136433|136434|136435|136436|136438|136439|136440|136441|136442|136443|136444|136445|136446|136447|136448|136449|136450|136451|136452|136453|136454|136455|136456|136457|136458|136460|136461|136462|136463|136467|136468|136469|136470|136471|136472|136473|136474|136475|136478|136479|136480|136481|136483|136484|136485|136486|136487|136488|136490|136491|136492|136493|136496|136497|136498|136499|136500|136501|136502|136503|136504|136505|136506|136507|136508|136509|136510|136511|136512|136513|136514|136515|136517|136518|136519|136520|136521|136527|136528|136529|136530|136569|136721|136722|136723|137023|137024|137125|137200|137201|137204|137207|137210|137211|137213|137215|137218|137224|137244|137247|137248|137249|137251|137252|137253|137254|137255|137256|137257|137258|137260|137261|137262|137263|137264|137268|137269|137270|137271|137272|137273|137274|137275|137276|137277|137278|137341|137342|137343|137344|137345|137346|137347|137349|137350|137352|137354|137355|137356|137357|137358|137359|137360|137362|137363|137364|137367|137368|137369|137370|137371|137372|137373|137374|137375|137376|137377|137378|137379|137380|137381|137382|137400|137402|137403|137404|137405|137406|137436|137437|137438|137440|137441|137442|137446|137447|137449|137450|137452|137453|137456|137457|137461|137463|137464|137465|137467|137468|137469|137470|137471|137472|137473|137474|137475|137476|137481|137482|137484|137487|137489|137490|137491|137492|137493|137494|137495|137496|137497|137498|137499|137500|137501|137584|137585|137586|137587|137588|137589|137590|137591|137592|137593|137594|137612|137613|137614|137615|137616|137621|137622|137623|137625|137626|137627|137628|137629|137631|137701|137703|137704|137705|137706|137707|137708|137709|137710|137711|137712|137713|137714|137715|138034|138035|138036|138037|138038|138040|138041|138043|138044|138152|138154|138155|138156|138157|138162|138163|138165|138166|138169|138170|138171|138360|138363|138364|138366|138367|138368|138381|138382|138384|138385|138387|138388|138389|138390|138391|138392|138393|138394|138395|138396|138397|138579|138580|138581|138582|138585|138587|138588|138590|138591|138592|138594|138595|138596|138598|138599|138600|138601|138602|138603|138605|138606|138611|138612|138613|138614|138615|138616|138617|138618|138619|138620|138621|138622|138623|138625|138626|138627|138628|138630|138631|138632|138633|138635|138636|138731|138732|138733|138734|138735|138753|138754|138755|138756|138757|138759|138761|138767|138801|138803|138805|138806|138808|138809|138810|138811|138832|138833|138834|138836|138837|138838|138839|138840|138841|138842|138843|138845|138846|138848|138849|138854|138857|138859|138860|138861|138864|138912|138916|138917|138918|138922|138925|138926|138927|138928|138929|138930|138931|138932|138933|138935|138936|138937|138983|138984|138985|138986|138987|138989|138990|138991|138992|138993|138994|138995|138996|139016|139017|139019|139020|139021|139022|139023|139024|139025|139097|139098|139099|139100|139102|139103|139105|139109|139110|139111|139112|139113|139116|139118|139119|139123|139124|139125|139127|139129|139144|139145|139304|139395|139396|139397|139398|139399|139401|139402|139403|139404|139405|139406|139407|139410|139412|139413|139414|139415|139416|139417|139418|139419|139420|139421|139422|139423|139425|139426|139427|139428|139429|139430|139431|139432|139433|139435|139436|139437|139438|139439|139440|139441|139442|139443|139444|139445|139447|139448|139449|139450|139451|139452|139453|139454|139455|139456|139457|139458|139459|139460|139462|139463|139464|139465|139466|139468|139469|139470|139471|139472|139473|139474|139475|139476|139477|139478|139479|139480|139481|139482|139483|139484|139485|139486|139487|139488|139489|139490|139492|139494|139496|139497|139499|139500|139502|139503|139505|139506|139507|139508|139509|139511|139515|139517|139518|139520|139521|139522|139525|139526|139527|139528|139529|139530|139531|139532|139533|139534|139536|139537|139538|139539|139540|139541|139542|139544|139545|139546|139547|139548|139549|139550|139551|139552|139553|139554|139555|139556|139558|139559|139560|139561|139564|139565|139566|139567|139568|139569|139570|139571|139572|139573|139574|139575|139576|139577|139578|139581|139582|139583|139585|139586|139587|139589|139590|139591|139594|139595|139596|139597|139600|139602|139603|139604|139606|139607|139609|139610|139611|139612|139613|139614|139615|139616|139617|139619|139620|139621|139623|139624|139625|139626|139627|139628|139629|139630|139631|139632|139633|139634|139635|139636|139637|139638|139639|139640|139641|139642|139643|139644|139645|139646|139647|139649|139650|139651|139652|139653|139654|139655|139656|139657|139658|139659|139660|139662|139663|139666|139667|139668|139669|139672|139673|139675|139678|139679|139680|139681|139682|139683|139684|139685|139686|139688|139690|139691|139692|139693|139695|139696|139697|139698|139699|139700|139701|139702|139703|139704|139705|139729|139737|139746|139747|139748|139750|139751|139752|139753|139754|139755|139756|139757|139758|139759|139760|139761|139762|139763|139764|139765|139766|139767|139768|139769|139770|139771|139773|139774|139775|139776|139777|139778|139779|139780|139781|139782|139786|139788|139789|139790|139791|139792|139793|139797|139798|139800|139801|139802|139803|139805|139806|139807|139808|139809|139810|139811|139812|139813|139814|139815|139817|139818|139819|139820|139821|139822|139823|139824|139825|139826|139827|139829|139830|139831|139832|139833|139834|139835|139836|139838|139840|139841|139842|139843|139844|139845|139846|139847|139848|139849|139850|139851|139852|139853|139854|139855|139856|139857|139858|139859|139860|139861|139862|139863|139864|139866|139867|139868|139869|139870|139872|139873|139874|139876|139878|139879|139880|139881|139882|139913|140108|140109|140110|140111|140112|140113|140114|140132|140133|140134|140135|140136|140137|140138|140139|140140|140141|140142|140143|140144|140145|140146|140147|140148|140149|140179|140180|140181|140182|140183|140184|140185|140186|140187|140190|140191|140192|140193|140199|140200|140201|140202|140203|140204|140210|140211|140212|140213|140214|140216|140217|140219|140221|140222|140223|140227|140228|140229|140230|140240|140241|140242|140243|140244|140245|140246|140247|140248|140249|140250|140251|140252|140253|140254|140255|140256|140257|140258|140259|140260|140261|140262|140263|140264|140265|140266|140268|140269|140270|140271|140272|140273|140274|140275|140276|140277|140278|140279|140280|140281|140282|140283|140284|140285|140286|140287|140289|140394|140395|140396|140397|140398|140399|140400|140401|140402|140420|140443|140444|140445|140446|140447|140448|140450|140916|140917|140919|140978|140979|140980|140981|140983|140984|140987|140988|140989|141073|141075|141076|141394|141395|141432|141433|141434|141443|141444|141446|141447|141448|141450|141451|141608|141632|141633|141634|141635|141933|141956|141957|141958|141959|141960|141961|141962|141963|141964|141965|141966|142010|142011|142012|142013|142014|142128|142129|142130|142131|142132|142277|142278|142279|142280|142400|142401|142402|142403|142404|142406|142408|142409|142537|142538|142541|142570|142571|142572|142573|142574|142575|142576|142577|142578|142579|142580|142582|142583|142921|142922|142923|143033|143034|143035|143036|143037|143038|143039|143040|143041|143042|143043|143171|143198|143199|150470|150471|150472|150473|150475|150476|150477|150478|150480|150481|150482|150483|150484|150485|150486|150487|150488|150489|150490|150491|150492|150493|150494|150495|150496|150497|150498|150499|150500|150501|150502|150503|150504|150505|150506|150508|150509|150510|150511|150512|150513|150514|150515|150516|150517|150518|150519|150520|150521|150522|150523|150524|150525|150526|150527|150528|150530|150531|150532|150533|150534|150535|150536|150537|150538|150539|150540|150541|150542|150543|150544|150545|150546|150547|150548|150549|150550|150551|150552|150553|150554|150555|150556|150557|150558|150559|150560|150561|150562|150563|150564|150565|150566|150567|150568|150569|150570|150571|150572|150573|150575|150576|150577|150578|150580|150581|150582|150583|150584|150585|150586|150587|150588|150589|150590|150591|150592|150593|150594|150595|150597|150598|150599|150600|150601|150602|150603|150604|150605|150606|150607|150608|150609|150610|150611|150612|150613|150615|150616|150617|150618|150619|150621|150622|150623|150624|150625|150626|150627|150628|150629|150630|150632|150633|150634|150635|150636|150637|150638|150639|150640|150641|150642|150643|150644|150645|150646|150647|150648|150650|150651|150652|150653|150654|150655|150656|150657|150658|150659|150660|150661|150662|150663|150664|150665|150666|150667|150668|150669|150670|150671|150672|150673|150674|150675|150676|150677|150678|150679|150680|150681|150682|150683|150684|150685|150686|150687|150688|150689|150690|150692|150693|150694|150695|150696|150697|150698|150699|150700|150701|150702|150703|150704|150705|150706|150707|150708|150709|150710|150711|150712|150713|150714|150715|150716|150717|150718|150719|150720|150721|150722|150723|150724|150725|150726|150727|150728|150729|150730|150731|150732|150733|150734|150735|150736|150737|150738|150739|150740|150741|150742|150743|150744|150745|150746|150747|150748|150749|150750|150751|150752|150753|150754|150755|150756|150757|150758|150759|150760|150761|150762|150763|150764|150765|150766|150767|150768|150769|150770|150771|150772|150773|150774|150775|150776|150777|150778|150779|150780|150781|150782|150783|150784|150785|150786|150787|150788|150789|150790|150791|150792|150793|150794|150795|150796|150798|150799|150800|150801|150802|150803|150804|150805|150806|150807|150808|150809|150810|150811|150812|150813|150814|150815|150816|150817|150818|150819|150820|150821|150822|150823|150824|150825|150826|150827|150828|150829|150830|150831|150832|150833|150834|150835|150836|150837|150838|150839|150840|150841|150842|150843|150844|150845|150846|150847|150848|150849|150850|150851|150852|150853|150854|150855|150856|150857|150858|150859|150860|150861|150862|150863|150864|150865|150866|150867|150868|150869|150870|150871|150872|150873|150874|150875|150876|150877|150878|150879|150880|150881|150882|150883|150884|150885|150886|150887|150888|150889|150891|150892|150893|150894|150895|150896|150897|150898|150899|150900|150901|150902|150903|150904|150905|150906|150907|150908|150909|150910|150911|150912|150913|150914|150915|150916|150917|150918|150919|150920|150921|150922|150923|150924|150925|150926|150927|150928|150929|150930|150931|150932|150933|150934|150935|150936|150937|150938|150939|150940|150941|150942|150943|150944|150945|150946|150947|150948|150949|150950|150951|150952|150953|150954|150955|150956|150957|150958|150959|150960|150961|150962|150963|150964|150965|150967|150968|150969|150970|150971|150972|150973|150974|150975|150976|150977|150978|150979|150980|150981|150982|150983|150984|150985|150986|150987|150988|150989|150990|150991|150992|150993|150994|150995|150996|150997|150998|150999|151000|151001|151002|151003|151004|151005|151006|151007|151008|151009|151010|151011|151012|151013|151014|151015|151016|151017|151018|151019|151020|151021|151022|151023|151024|151025|151026|151027|151028|151029|151030|151031|151032|151033|151034|151035|151036|151037|151038|151039|151040|151041|151042|151043|151044|151045|151046|151047|151048|151049|151050|151051|151052|151053|151054|151055|151056|151057|151058|151059|151060|151061|151062|151063|151064|151065|151066|151067|151068|151069|151070|151071|151072|151073|151074|151075|151076|151077|151078|151079|151080|151081|151082|151083|151084|151085|151086|151087|151088|151089|151090|151091|151092|151093|151094|151095|151096|151097|151098|151099|151100|151101|151102|151103|151104|151105|151106|151107|151108|151109|151110|151112|151113|151114|151115|151116|151117|151118|151119|151120|151121|151122|151123|151126|151128|151129|151130|151131|151132|151133|151134|151137|151139|151142|151143|151144|151145|151146|151147|151148|151149|151150|151151|151152|151153|151154|151155|151156|151157|151158|151159|151160|151161|151162|151163|151164|151165|151166|151167|151168|151169|151170|151171|151172|151173|151174|151175|151176|151177|151178|151179|151180|151181|151182|151183|151184|151185|151186|151187|151188|151189|151190|151191|151192|151193|151194|151195|151196|151197|151198|151199|151200|151201|151202|151203|151204|151205|151206|151207|151208|151209|151210|151211|151212|151213|151214|151215|151216|151217|151218|151219|151220|151221|151222|151223|151224|151225|151226|151227|151228|151229|151230|151231|151232|151233|151234|151235|151236|151237|151238|151239|151240|151241|151242|151243|151244|151245|151246|151247|151248|151249|151250|151251|151252|151253|151254|151255|151256|151257|151258|151259|151260|151261|151262|151263|151264|151265|151266|151267|151268|151269|151270|151271|151272|151273|151274|151275|151276|151277|151278|151279|151280|151281|151282|151283|151284|151285|151286|151287|151288|151289|151290|151291|151292|151293|151294|151295|151296|151297|151298|151299|151300|151301|151302|151303|151304|151305|151306|151307|151308|151309|151310|151311|151312|151313|151314|151315|151316|151317|151318|151319|151320|151321|151322|151323|151324|151325|151326|151327|151328|151329|151330|151331|151332|151333|151334|151335|151336|151337|151338|151339|151340|151341|151342|151343|151344|151345|151346|151347|151348|151349|151350|151351|151352|151353|151354|151355|151356|151357|151358|151359|151360|151361|151362|151363|151364|151365|151366|151367|151368|151369|151370|151371|151372|151373|151374|151375|151376|151377|151378|151379|151380|151381|151382|151383|151384|151385|151386|151387|151388|151389|151390|151391|151392|151393|151394|151395|151396|151397|151398|151399|151400|151401|151402|151403|151404|151405|151406|151407|151408|151409|151410|151411|151412|151413|151414|151415|151416|151417|151418|151419|151420|151421|151422|151423|151424|151425|151427|151428|151429|151430|151431|151432|151433|151434|151435|151436|151437|151438|151439|151440|151441|151442|151443|151444|151445|151446|151447|151448|151449|151450|151451|151452|151453|151454|151455|151456|151457|151458|151459|151460|151461|151462|151463|151464|151465|151466|151467|151468|151469|151470|151471|151472|151473|151474|151475|151476|151477|151478|151479|151480|151481|151482|151483|151484|151485|151486|151487|151488|151489|151490|151491|151492|151493|151494|151495|151496|151497|151498|151499|151500|151501|151502|151503|151504|151505|151506|151507|151508|151509|151510|151511|151512|151513|151514|151515|151516|151517|151518|151519|151520|151521|151522|151523|151524|151525|151526|151527|151528|151529|151530|151531|151532|151533|151534|151535|151536|151537|151538|151539|151540|151541|151542|151543|151544|151545|151546|151547|151548|151549|151550|151551|151552|151553|151554|151555|151556|151557|151558|151559|151560|151561|151562|151563|151564|151565|151566|151567|151568|151569|151570|151571|151572|151573|151574|151575|151576|151577|151578|151579|151580|151581|151582|151583|151584|151585|151586|151587|151588|151589|151590|151591|151592|151593|151594|151595|151596|151597|151598|151599|151600|151601|151602|151603|151604|151605|151606|151607|151608|151609|151610|151611|151612|151613|151614|151615|151616|151617|151618|151619|151620|151621|151622|151623|151624|151625|151626|151627|151628|151629|151630|151631|151632|151633|151634|151635|151636|151637|151638|151639|151640|151641|151642|151643|151644|151645|151646|151647|151648|151649|151650|151651|151652|151653|151654|151655|151656|151657|151658|151659|151660|151661|151662|151663|151664|151665|151666|151667|151668|151669|151670|151671|151672|151673|151674|151675|151676|151677|151678|151679|151680|151681|151682|151683|151684|151685|151686|151687|151688|151689|151690|151691|151692|151693|151694|151695|151696|151697|151698|151699|151700|151701|151702|151703|151704|151705|151706|151707|151708|151709|151710|151711|151712|151713|151714|151715|151716|151717|151718|151719|151720|151721|151722|151723|151724|151725|151726|151727|151728|151729|151730|151731|151732|151733|151734|151735|151736|151737|151738|151739|151740|151741|151742|151743|151744|151745|151746|151747|151748|151749|151750|151751|151752|151753|151754|151755|151756|151757|151758|151759|151760|151761|151762|151763|151764|151765|151766|151767|151768|151769|151770|151771|151772|151773|151774|151775|151776|151777|151778|151779|151780|151781|151782|151783|151784|151785|151786|151787|151788|151789|151790|151791|151792|151793|151794|151795|151796|151798|151799|151800|151801|151802|151803|151804|151805|151806|151807|151808|151809|151810|151811|151812|151813|151814|151815|151816|151817|151818|151819|151820|151821|151822|151823|151824|151825|151826|151827|151828|151829|151830|151831|151832|151833|151834|151835|151836|151837|151838|151839|151840|151841|151842|151843|151844|151845|151847|151848|151849|151850|151851|151852|151853|151854|151855|151856|151857|151858|151859|151860|151861|151862|151864|151865|151866|151867|151868|151869|151870|151872|151873|151874|151875|151876|151877|151878|151879|151881|151882|151883|151884|151885|151887|151888|151889|151892|151893|151894|151895|151896|151897|151898|151899|151900|151901|151902|151903|151904|151905|151906|151907|151908|151909|151910|151911|151912|151913|151915|151916|151917|151918|151919|151920|151921|151922|151923|151924|151925|151926|151927|151928|151929|151930|151931|151932|151933|151934|151935|151936|151937|151938|151939|151940|151941|151942|151943|151944|151945|151946|151947|151948|151949|151950|151951|151952|151953|151954|151955|151956|151957|151958|151959|151960|151961|151962|151963|151964|151965|151967|151968|151969|151970|151971|151972|151973|151974|151975|151976|151977|151978|151979|151980|151981|151982|151983|151984|151985|151986|151987|151988|151989|151990|151991|151992|151993|151994|151995|151996|151997|151999|152000|152001|152002|152003|152004|152005|152006|152007|152008|152009|152011|152014|152015|152016|152017|152018|152019|152020|152021|152022|152023|152024|152025|152026|152027|152028|152029|152030|152031|152032|152033|152034|152035|152036|152037|152038|152039|152040|152041|152042|152043|152044|152045|152046|152047|152048|152049|152050|152051|152052|152053|152054|152055|152056|152057|152058|152059|152060|152062|152063|152064|152065|152066|152067|152068|152069|152070|152071|152072|152073|152074|152075|152076|152077|152078|152079|152080|152081|152082|152083|152084|152085|152086|152087|152088|152089|152090|152091|152092|152093|152094|152095|152096|152097|152098|152099|152100|152103|152104|152105|152106|152107|152108|152109|152110|152111|152112|152113|152114|152115|152116|152117|152118|152119|152120|152121|152122|152124|152125|152126|152127|152128|152129|152130|152131|152132|152133|152134|152135|152136|152137|152138|152139|152140|152141|152142|152143|152144|152145|152146|152147|152148|152149|152150|152151|152152|152153|152154|152155|152156|152157|152158|152159|152160|152161|152162|152163|152164|152165|152166|152167|152168|152169|152170|152171|152172|152173|152174|152175|152176|152177|152178|152179|152180|152181|152182|152183|152184|152185|152186|152187|152188|152189|152190|152192|152193|152194|152195|152196|152197|152198|152199|152200|152201|152202|152203|152204|152205|152206|152207|152208|152209|152210|152211|152212|152213|152214|152215|152216|152217|152218|152219|152220|152221|152222|152223|152224|152225|152226|152227|152228|152229|152230|152231|152232|152233|152234|152235|152236|152237|152238|152239|152240|152241|152242|152243|152244|152245|152246|152247|152248|152249|152250|152251|152252|152253|152254|152255|152256|152257|152258|152259|152260|152261|152262|152265|152266|152268|152269|152270|152271|152272|152273|152274|152275|152276|152277|152278|152279|152280|152281|152282|152283|152284|152285|152286|152287|152288|152289|152290|152291|152292|152293|152294|152296|152297|152298|152299|152300|152301|152302|152303|152304|152305|152306|152307|152308|152309|152310|152311|152312|152313|152314|152315|152316|152318|152319|152320|152321|152322|152323|152324|152325|152326|152327|152328|152329|152330|152331|152332|152333|152334|152335|152336|152337|152338|152339|152340|152341|152342|152343|152344|152345|152346|152347|152348|152349|152350|152351|152352|152353|152354|152355|152356|152357|152358|152359|152360|152361|152362|152363|152364|152365|152366|152367|152368|152369|152370|152371|152372|152373|152374|152376|152377|152378|152379|152380|152381|152382|152383|152384|152385|152386|152387|152388|152389|152390|152391|152392|152393|152394|152395|152396|152397|152398|152399|152400|152401|152402|152403|152404|152405|152406|152408|152409|152410|152411|152412|152413|152414|152415|152416|152417|152418|152419|152420|152421|152422|152423|152424|152425|152426|152427|152428|152429|152430|152431|152432|152433|152434|152435|152436|152437|152438|152439|152440|152441|152442|152443|152444|152445|152446|152447|152448|152449|152450|152451|152452|152453|152454|152455|152456|152457|152458|152459|152460|152461|152462|152463|152464|152465|152466|152467|152468|152469|152470|152471|152472|152473|152474|152475|152476|152477|152478|152479|152480|152481|152482|152483|152484|152485|152486|152487|152488|152489|152490|152491|152492|152493|152494|152495|152496|152497|152498|152499|152500|152501|152502|152503|152504|152505|152506|152507|152508|152509|152510|152511|152512|152513|152514|152515|152516|152517|152518|152519|152520|152521|152522|152523|152524|152525|152526|152527|152528|152529|152530|152531|152532|152533|152534|152535|152536|152537|152538|152539|152540|152541|152542|152543|152544|152545|152546|152547|152548|152549|152550|152551|152552|152553|152554|152555|152556|152557|152558|152559|152560|152561|152562|152563|152564|152565|152566|152567|152568|152569|152570|152571|152572|152573|152574|152575|152576|152577|152578|152579|152580|152581|152582|152583|152584|152585|152586|152587|152588|152589|152590|152591|152592|152593|152594|152595|152596|152597|152598|152599|152600|152601|152602|152603|152604|152605|152606|152607|152608|152609|152610|152611|152612|152613|152614|152615|152616|152617|152618|152619|152620|152621|152622|152623|152624|152625|152626|152627|152628|152629|152630|152631|152632|152633|152634|152635|152636|152637|152638|152639|152640|152641|152642|152643|152644|152645|152646|152647|152648|152649|152650|152651|152652|152653|152654|152655|152656|152657|152658|152659|152660|152661|152662|152663|152664|152665|152666|152667|152668|152669|152670|152671|152672|152673|152674|152675|152676|152677|152678|152679|152680|152681|152682|152683|152684|152685|152686|152689|152690|152691|152692|152693|152694|152695|152696|152697|152698|152699|152700|152701|152702|152703|152704|152705|152706|152707|152708|152709|152710|152711|152712|152713|152714|152715|152716|152717|152718|152719|152720|152721|152722|152723|152724|152725|152726|152727|152728|152729|152730|152731|152732|152733|152734|152735|152736|152737|152738|152739|152740|152741|152742|153693|153694|153696|153698|153702|153704|153707|153708|153734|165953|165962|165965|165966|165967|165969|165971|165974|165975|165978|165979|165980|165981|165983|165984|165985|165987|165988|165990|165991|165992|165993|166240|166245|166247|166248|166249|166252|166256|166261|166262|166264|166272|166273|166274|166275|166276|167852|170202|171051|171052|171053|171076|171077|171078|171080|171081|171097|171098|171099|171100|171114|171116|171124|171125|171126|171127|171148|171149|171186|171187|171191|171389|171614|171616|172176|172353|172491|172492|172493|173736|173810|173950|175773|176503|176640|176641|177129|177192|177247|177992|178148|178766|178875|179925|179926|179928|179929|179930|179931|179932|179933|179934|179935|179936|179937|179938|179939|179940|179941|179942|179944|179946|179947|179949|179950|179951|179952|179953|179955|179956|179957|179958|179959|179960|179961|179962|179963|179965|179966|179967|179968|179969|179970|179971|179973|179974|179976|179979|179981|179982|179983|179984|179985|179986|179987|179988|179989|179990|179991|179992|179993|179994|179995|179996|179997|179998|180000|180001|180003|180005|180007|180008|180009|180010|180012|180014|180015|180016|180017|180019|180020|180021|180022|180023|180024|180026|180027|180028|180029|180030|180031|180032|180033|180034|180036|180037|180038|180039|180040|180042|180044|180045|180046|180047|180048|180049|180050|180051|180053|180054|180055|180056|180057|180058|180059|180060|180061|180062|180063|180064|180065|180066|180067|180068|180069|180072|180073|180074|180075|180076|180077|180078|180079|180080|180081|180082|180083|180084|180085|180086|180087|180088|180089|180090|180092|180093|180094|180095|180096|180099|180100|180101|180102|180103|180104|180105|180106|180107|180108|180109|180110|180111|180113|180115|180116|180117|180119|180121|180124|180125|180126|180128|180130|180133|180134|180135|180138|180139|180140|180142|180143|180144|180148|180149|180152|180153|180154|180156|180158|180162|180167|180168|180169|180171|180173|180176|180177|180178|180180|180181|180182|180183|180184|180186|180188|180192|180193|180194|180195|180196|180197|180198|180199|180200|180202|180204|180205|180207|180208|180209|180211|180212|180214|180215|180216|180217|180218|180219|180220|180221|180223|180224|180225|180226|180228|180229|180231|180232|180233|180234|180236|180238|180239|180241|180242|180244|180245|180247|180249|180251|180252|180254|180255|180256|180257|180258|180259|180260|180261|180263|180264|180265|180266|180267|180268|180269|180271|180272|180273|180274|180276|180277|180278|180279|180280|180281|180282|180283|180284|180286|180288|180290|180291|180292|180293|180294|180295|180296|180297|180298|180300|180301|180303|180304|180306|180308|180311|180312|180313|180314|180315|180316|180318|180319|180320|180321|180325|180327|180331|180332|180333|180335|180337|180343|180344|180345|180347|180349|180350|180352|180353|180354|180355|180363|180366|180368|180369|180370|180372|180373|180374|180376|180378|180379|180381|180382|180383|180384|180385|180386|180387|180388|180389|180391|180394|180396|180398|180399|180400|180401|180402|180403|180404|180405|180406|180407|180408|180409|180410|180411|180412|180413|180414|180415|180416|180418|180421|180422|180423|180424|180427|180428|180429|180431|180432|180433|180434|180436|180437|180439|180440|180441|180442|180443|180444|180445|180447|180448|180449|180450|180451|180455|180457|180458|180459|180460|180461|180463|180464|180465|180466|180467|180468|180469|180471|180472|180474|180475|180476|180478|180479|180480|180481|180482|180483|180484|180485|180486|180487|180490|180491|180493|180494|180495|180497|180498|180499|180500|180501|180502|180503|180504|180505|180507|180508|180509|180510|180511|180512|180513|180514|180515|180516|180517|180518|180519|180520|180521|180522|180523|180524|180525|180526|180528|180529|180530|180532|180533|180534|180535|180537|180538|180539|180541|180542|180543|180544|180545|180546|180549|180550|180551|180552|180554|180555|180557|180560|180562|180563|180564|180566|180567|180568|180569|180570|180571|180572|180573|180576|180577|180578|180579|180580|180581|180582|180583|180585|180587|180589|180590|180591|180592|180595|180597|180598|180600|180602|180603|180606|180607|180608|180609|180612|180613|180614|180615|180618|180619|180620|180622|180624|180626|180627|180630|180631|180632|180634|180635|180636|180637|180638|180639|180640|180641|180642|180643|180645|180648|180649|180651|180652|180656|180657|180661|180662|180664|180665|180666|180668|180669|180670|180671|180672|180673|180676|180678|180680|180681|180682|180688|180689|180691|180692|180693|180694|180695|180696|180697|180698|180699|180702|180703|180705|180706|180708|180709|180710|180711|180712|180713|180714|180715|180716|180717|180718|180719|180720|180721|180722|180723|180724|180727|180728|180729|180730|180731|180732|180733|180735|180736|180737|180738|180739|180740|180741|180742|180743|180744|180745|180746|180748|180749|180750|180751|180752|180754|180755|180756|180757|180758|180759|180765|180766|180767|180768|180769|180770|180772|180773|180774|180775|180776|180778|180779|180780|180783|180784|180785|180786|180787|180788|180789|180790|180791|180792|180793|180795|180796|180797|180798|180799|180800|180801|180802|180803|180804|180805|180806|180807|180808|180809|180810|180811|180813|180814|180815|180816|180817|180818|180819|180822|180824|180825|180826|180827|180828|180830|180831|180834|180835|180837|180838|180839|180840|180842|180843|180844|180845|180847|180850|180852|180853|180855|180857|180859|180861|180863|180868|180870|180871|180872|180873|180875|180877|180880|180881|180882|180884|180885|180886|180888|180890|180891|180892|180893|180894|180895|180897|180898|180901|180902|180903|180904|180905|180906|180907|180908|180909|180910|180911|180912|180913|180916|180917|180918|180919|180920|180922|180923|180925|180926|180927|180928|180929|180932|180933|180934|180935|180936|180937|180938|180939|180940|180941|180942|180943|180944|180946|180947|180948|180949|180950|180952|180954|180955|180956|180957|180958|180959|180960|180961|180962|180965|180967|180969|180971|180973|180976|180977|180978|180979|180980|180981|180985|180986|180988|180989|180990|180991|180992|180993|180994|180995|180996|180998|180999|181000|181003|181004|181005|181006|181009|181010|181011|181014|181018|181019|181020|181023|181024|181025|181026|181027|181029|181031|181032|181033|181034|181035|181036|181037|181040|181042|181043|181044|181045|181047|181048|181049|181050|181051|181052|181053|181055|181056|181060|181061|181062|181063|181064|181065|181066|181068|181069|181071|181073|181076|181077|181078|181079|181080|181081|181082|181083|181084|181087|181089|181090|181091|181092|181093|181095|181098|181099|181100|181102|181103|181104|181105|181106|181107|181108|181109|181110|181112|181113|181115|181116|181117|181118|181120|181121|181122|181123|181125|181126|181128|181147|181148|181150|181155|181156|181157|181158|181159|181161|181162|181201|181202|181203|181206|181207|181209|181211|181212|181213|181216|181218|181312|181314|181315|181316|181595|181596|181597|181598|181599|181600|181601|181602|181603|181604|181605|181606|181607|181608|181609|181610|181611|181612|181613|181614|181615|181616|181617|181618|181619|181620|181621|181622|181623|181624|181625|181626|181627|181628|181629|181630|181631|181632|181633|181634|181635|181636|181637|181638|181639|181640|181641|181642|181643|181644|181645|181646|181647|181648|181649|181650|181651|181652|181653|181654|181655|181656|181657|181658|181659|181660|181661|181662|181663|181664|181665|181666|181667|181668|181669|181670|181671|181672|181673|181674|181675|181676|181677|181678|181679|181680|181681|181682|181683|181684|181685|181686|181687|181688|181689|181690|181691|181692|181693|181694|181695|181696|181697|181698|181699|181700|181701|181702|181703|181704|181705|181706|181707|181708|181709|181710|181711|181712|181713|181714|181715|181716|181717|181718|181719|181720|181721|181722|181723|181724|181725|181726|181727|181728|181729|181730|181731|181732|181733|181734|181735|181736|181737|181738|181739|181740|181741|181742|181743|181744|181745|181746|181747|181748|181749|181750|181751|181752|181753|181754|181755|181756|181757|181758|181759|181760|181761|181762|181763|181764|181765|181766|181767|181768|181769|181770|181771|181772|181773|181774|181775|181776|181777|181778|181779|181780|181781|181782|181783|181784|181785|181786|181787|181788|181789|181790|181791|181792|181793|181794|181795|181796|181797|181798|181799|181800|181801|181802|181803|181804|181805|181806|181807|181808|181809|181810|181811|181812|181813|181814|181815|181816|181817|181818|181819|181820|181821|181822|181823|181824|181825|181826|181827|181828|181829|181830|181831|181832|181833|181834|181835|181836|181837|181838|181839|181840|181841|181842|181843|181844|181845|181846|181847|181848|181849|181850|181851|181852|181853|181854|181855|181856|181857|181858|181859|181860|181861|181862|181863|181864|181865|181866|181867|181868|181869|181870|181871|181872|181873|181874|181875|181876|181877|181878|181879|181880|181881|181882|181883|181884|181885|181886|181887|181888|181889|181890|181891|181892|181893|181894|181895|181896|181897|181898|181899|181900|181901|181902|181903|181904|181905|181906|181907|181908|181909|181910|181911|181912|181913|181914|181915|181916|181917|181918|181919|181920|181921|181922|181923|181924|181925|181926|181927|181928|181929|181930|181931|181932|181933|181934|181935|181936|181937|181938|181939|181940|181941|181942|181943|181944|181945|181946|181947|181948|181949|181950|181951|181952|181953|181954|181955|181956|181957|181958|181959|181960|181961|181962|181963|181964|181965|181966|181967|181968|181969|181970|181971|181972|181973|181974|181975|181976|181977|181978|181979|181980|181981|181982|181983|181984|181985|181986|181987|181988|181989|181990|181991|181992|181993|181994|181995|181996|181997|181998|181999|182000|182001|182002|182003|182004|182005|182006|182007|182008|182009|182010|182011|182012|182013|182014|182015|182016|182017|182018|182019|182020|182021|182022|182023|182024|182025|182026|182027|182028|182029|182030|182031|182032|182033|182034|182035|182036|182037|182038|182039|182040|182041|182042|182043|182044|182045|182046|182047|182048|182049|182050|182051|182052|182053|182054|182055|182056|182057|182058|182059|182060|182061|182062|182063|182064|182065|182066|182067|182068|182069|182070|182071|182072|182073|182074|182075|182076|182077|182078|182079|182080|182081|182082|182083|182084|182085|182086|182087|182088|182089|182090|182091|182092|182093|182094|182095|182096|182097|182098|182099|182100|182101|182102|182103|182104|182105|182106|182107|182108|182109|182110|182111|182112|182113|182114|182115|182116|182117|182118|182119|182120|182121|182122|182123|182124|182125|182126|182127|182128|182129|182130|182131|182132|182133|182134|182135|182136|182137|182138|182139|182140|182141|182142|182143|182144|182145|182146|182147|182148|182149|182150|182151|182152|182153|182154|182155|182156|182157|182158|182159|182160|182161|182162|182163|182164|182165|182166|182167|182168|182169|182170|182171|182172|182173|182174|182175|182176|182177|182178|182179|182180|182181|182182|182183|182184|182185|182186|182187|182188|182189|182190|182191|182192|182193|182194|182195|182196|182197|182198|182199|182200|182201|182202|182203|182204|182205|182206|182207|182208|182209|182210|182211|182212|182213|182214|182215|182216|182217|182218|182219|182220|182221|182222|182223|182224|182225|182226|182227|182228|182229|182230|182231|182232|182233|182234|182235|182236|182237|182238|182239|182240|182241|182242|182243|182244|182245|182246|182247|182248|182249|182250|182251|182252|182253|182254|182255|182256|182257|182258|182259|182260|182261|182262|182263|182264|182265|182266|182267|182268|182269|182270|182271|182272|182273|182274|182275|182276|182277|182278|182279|182280|182281|182282|182283|182284|182285|182286|182287|182288|182289|182290|182291|182292|182293|182294|182295|182296|182297|182298|182299|182300|182301|182302|182303|182304|182305|182306|182307|182308|182309|182310|182311|182312|182313|182314|182315|182316|182317|182318|182319|182320|182321|182322|182323|182324|182325|182326|182327|182328|182329|182330|182331|182332|182333|182334|182335|182336|182337|182338|182339|182340|182341|182342|182343|182344|182345|182346|182347|182348|182349|182350|182351|182352|182353|182354|182355|182356|182357|182358|182359|182360|182361|182362|182363|182364|182365|182366|182367|182368|182369|182370|182371|182372|182373|182374|182375|182376|182377|182378|182379|182380|182381|182382|182383|182384|182385|182386|182387|182388|182389|182390|182391|182392|182393|182394|182395|182396|182397|182398|182399|182400|182401|182402|182403|182404|182405|182406|182407|182408|182409|182410|182411|182412|182413|182414|182415|182416|182417|182418|182419|182420|182421|182422|182423|182424|182425|182426|182427|182428|182429|182430|182431|182432|182433|182434|182435|182436|182437|182438|182439|182440|182441|182442|182443|182444|182445|182446|182447|182448|182449|182450|182451|182452|182453|182454|182455|182456|182457|182458|182459|182460|182461|182462|182463|182464|182465|182466|182467|182468|182469|182470|182471|182472|182473|182474|182475|182476|182477|182478|182479|182480|182481|182482|182483|182484|182485|182486|182487|182488|182489|182490|182491|182492|182493|182494|182495|182496|182497|182498|182499|182500|182501|182502|182503|182504|182505|182506|182507|182508|182509|182510|182511|182512|182513|182514|182515|182516|182517|182518|182519|182520|182521|182522|182523|182524|182525|182526|182527|182528|182529|182530|182531|182532|182533|182534|182535|182536|182537|182538|182539|182540|182541|182542|182543|182544|182545|182546|182547|182548|182549|182550|182551|182552|182553|182554|182555|182556|182557|182558|182559|182560|182561|182562|182563|182564|182565|182566|182567|182568|182569|182570|182571|182572|182573|182574|182575|182576|182577|182578|182579|182580|182581|182582|182583|182584|182585|182586|182587|182588|182589|182590|182591|182592|182593|182594|182595|182596|182597|182598|182599|182600|182601|182602|182603|182604|182605|182606|182607|182608|182609|182610|182611|182612|182613|182614|182615|182616|182617|182618|182619|182620|182621|182622|182623|182624|182625|182626|182627|182628|182629|182630|182631|182632|182633|182634|182635|182636|182637|182638|182639|182640|182641|182642|182643|182644|182645|182646|182647|182648|182649|182650|182651|182652|182653|182654|182655|182656|182657|182658|182659|182660|182661|182662|182663|182664|182665|182666|182667|182668|182669|182670|182671|182672|182673|182674|182675|182676|182677|182678|182679|182680|182681|182682|182683|182684|182685|182686|182687|182688|182689|182690|182691|182692|182693|182694|182695|182696|182697|182698|182699|182700|182701|182702|182703|182704|182705|182706|182707|182708|182709|182710|182711|182712|182713|182714|182715|182716|182717|182718|182719|182720|182721|182722|182723|182724|182725|182726|182727|182728|182729|182730|182731|182732|182733|182734|182735|182736|182737|182738|182739|182740|182741|182742|182743|182744|182745|182746|182747|182748|182749|182750|182751|182752|182753|182754|182755|182756|182757|182758|182759|182760|182761|182762|182763|182764|182765|182766|182767|182768|182769|182770|182771|182772|182773|182774|182775|182776|182777|182778|182779|182780|182781|182782|182783|182784|182785|182786|182787|182788|182789|182790|182791|182792|182793|182794|182795|182796|182797|182798|182799|182800|182801|182802|182803|182804|182805|182806|182807|182808|182809|182810|182811|182812|182813|182814|182815|182816|182817|182818|182819|182820|182821|182822|182823|182824|182825|182826|182827|182828|182829|182830|182831|182832|182833|182834|182835|182836|182837|182838|182839|182840|182841|182842|182843|182844|182845|182846|182847|182848|182849|182850|182851|182852|182853|182854|182855|182856|182857|182858|182859|182860|182861|182862|182863|182864|182865|182866|182867|182868|182869|182870|182871|182872|182873|182874|182875|182876|182877|182878|182879|182880|182881|182882|182883|182884|182885|182886|182887|182888|182889|182890|182891|182892|182893|182894|182895|182896|182897|182898|182899|182900|182901|182902|182903|182904|182905|182906|182907|182908|182909|182910|182911|182912|182913|182914|182915|182916|182917|182918|182919|182920|182921|182922|182923|182924|182925|182926|182927|182928|182929|182930|182931|182932|182933|182934|182935|182936|182937|182938|182939|182940|182941|182942|182943|182944|182945|182946|182947|182948|182949|182950|182951|182952|182953|182954|182955|182956|182957|182958|182959|182960|182961|182962|182963|182964|182965|182966|182967|182968|182969|182970|182971|182972|182973|182974|182975|182976|182977|182978|182979|182980|182981|182982|182983|182984|182985|182986|182987|182988|182989|182990|182991|182994|182995|182996|182997|182998|182999|183000|183001|183002|183003|183004|183005|183006|183007|183008|183009|183010|183011|183012|183013|183014|183015|183016|183017|183018|183019|183020|183021|183022|183023|183024|183025|183026|183027|183028|183029|183030|183031|183032|183033|183034|183035|183036|183037|183038|183039|183040|183041|183042|183043|183044|183045|183046|183047|183048|183049|183050|183051|183052|183053|183054|183055|183056|183057|183058|183059|183060|183061|183062|183063|183064|183065|183066|183067|183068|183069|183070|183071|183072|183073|183074|183075|183076|183077|183078|183079|183080|183081|183082|183083|183084|183085|183086|183087|183088|183089|183090|183091|183092|183093|183094|183095|183096|183097|183098|183099|183100|183101|183102|183103|183104|183105|183106|183107|183108|183109|183110|183111|183112|183113|183114|183115|183116|183117|183118|183119|183120|183121|183122|183123|183124|183125|183126|183127|183128|183129|183130|183131|183132|183133|183134|183135|183136|183137|183138|183139|183140|183141|183142|183143|183144|183145|183146|183147|183148|183149|183150|183151|183152|183153|183154|183155|183156|183157|183158|183159|183160|183161|183162|183163|183164|183165|183166|183167|183168|183169|183170|183171|183172|183173|183174|183175|183176|183177|183178|183179|183180|183181|183182|183183|183184|183185|183186|183187|183188|183189|183190|183191|183192|183193|183194|183195|183196|183197|183198|183199|183200|183201|183202|183203|183204|183205|183206|183207|183208|183209|183210|183211|183212|183213|183214|183215|183216|183217|183218|183219|183220|183221|183222|183223|183224|183225|183226|183227|183228|183229|183230|183231|183232|183233|183234|183235|183236|183237|183238|183239|183240|183241|183242|183243|183244|183245|183246|183247|183248|183249|183250|183251|183252|183253|183254|183255|183256|183257|183258|183259|183260|183261|183262|183263|183264|183265|183266|183267|183268|183269|183270|183271|183272|183273|183274|183275|183276|183277|183278|183279|183280|183281|183282|183283|183284|183285|183286|183287|183288|183289|183290|183291|183292|183293|183294|183295|183296|183297|183298|183299|183300|183301|183302|183303|183304|183305|183306|183307|183308|183309|183310|183311|183312|183313|183314|183315|183316|183317|183318|183319|183320|183321|183322|183323|183324|183325|183326|183327|183328|183329|183330|183331|183332|183333|183334|183335|183336|183337|183338|183339|183340|183341|183342|183343|183344|183345|183346|183347|183348|183349|183350|183351|183352|183353|183354|183355|183356|183357|183358|183359|183360|183361|183362|183363|183364|183365|183366|183367|183368|183369|183370|183371|183372|183373|183374|183375|183376|183377|183378|183379|183380|183381|183382|183383|183384|183385|183386|183387|183388|183389|183390|183391|183392|183393|183394|183395|183396|183397|183398|183399|183400|183401|183402|183403|183404|183405|183406|183407|183408|183409|183410|183411|183412|183413|183414|183415|183416|183417|183418|183419|183420|183421|183422|183423|183424|183425|183426|183427|183428|183429|183430|183431|183432|183433|183434|183435|183436|183437|183438|183439|183440|183441|183442|183444|183445|183446|183447|183448|183449|183450|183451|183452|183453|183454|183455|183456|183457|183458|183459|183460|183461|183462|183463|183464|183465|183466|183467|183468|183469|183470|183471|183472|183473|183474|183475|183476|183477|183478|183479|183480|183481|183482|183483|183484|183485|183486|183487|183488|183489|183490|183491|183492|183493|183494|183495|183496|183497|183498|183499|183500|183501|183502|183503|183504|183505|183506|183507|183508|183509|183510|183511|183512|183513|183514|183515|183516|183517|183518|183519|183520|183521|183522|183523|183524|183525|183526|183527|183528|183529|183530|183531|183532|183533|183534|183535|183536|183537|183538|183539|183540|183541|183542|183543|183544|183545|183546|183547|183548|183549|183550|183551|183552|183553|183554|183555|183556|183557|183558|183559|183560|183561|183562|183563|183564|183565|183566|183567|183568|183569|183570|183571|183572|183573|183574|183575|183576|183577|183578|183579|183580|183581|183582|183583|183584|183585|183586|183587|183588|183589|183590|183591|183592|183593|183594|183595|183596|183597|183598|183599|183600|183601|183602|183603|183604|183605|183606|183607|183608|183609|183610|183611|183612|183613|183614|183615|183616|183617|183618|183619|183620|183621|183622|183623|183624|183625|183626|183627|183628|183629|183630|183631|183632|183633|183634|183635|183636|183637|183638|183639|183640|183641|183642|183643|183644|183645|183646|183647|183648|183649|183650|183651|183652|183653|183654|183655|183656|183657|183658|183659|183660|183661|183662|183663|183664|183665|183666|183667|183668|183669|183670|183671|183672|183673|183674|183675|183676|183677|183678|183679|183680|183681|183682|183683|183684|183685|183686|183687|183688|183689|183690|183691|183692|183693|183694|183695|183696|183697|183698|183699|183700|183701|183702|183703|183704|183705|183706|183707|183708|183709|183710|183711|183712|183713|183714|183715|183716|183717|183718|183719|183720|183721|183722|183723|183724|183725|183726|183727|183728|183729|183730|183731|183732|183733|183734|183735|183736|183737|183738|183739|183740|183741|183742|183743|183744|183745|183746|183747|183748|183749|183750|183751|183752|183753|183754|183755|183756|183757|183758|183759|183760|183761|183762|183763|183764|183765|183766|183767|183768|183769|183770|183771|183772|183773|183774|183775|183776|183777|183778|183779|183781|183782|183783|183784|183785|183786|183787|183788|183789|183790|183791|183792|183793|183794|183795|183796|183797|183798|183799|183800|183801|183802|183803|183804|183805|183806|183807|183808|183809|183810|183811|183812|183813|183814|183815|183816|183817|183818|183819|183820|183821|183822|183823|183824|183825|183826|183827|183828|183829|183830|183831|183832|183833|183834|183835|183836|183837|183838|183839|183840|183841|183842|183843|183844|183845|183846|183847|183848|183849|183850|183851|183852|183853|183854|183855|183856|183857|183858|183859|183860|183861|183862|183863|183864|183865|183866|183867|183868|183869|183870|183871|183872|183873|183874|183875|183876|183877|183878|183879|183880|183881|183882|183883|183884|183885|183886|183887|183888|183889|183890|183891|183892|183893|183894|183895|183896|183897|183898|183899|183900|183901|183902|183903|183904|183905|183906|183907|183908|183909|183910|183911|183912|183913|183914|183915|183916|183917|183918|183919|183920|183921|183922|183923|183924|183925|183926|183927|183928|183929|183930|183931|183932|183933|183934|183935|183936|183937|183938|183939|183940|183941|183942|183943|183944|183945|183946|183947|183948|183949|183950|183951|183952|183953|183954|183955|183956|183957|183958|183959|183960|183961|183962|183963|183964|183965|183966|183967|183968|183969|183970|183971|183972|183973|183974|183975|183976|183977|183978|183979|183980|183981|183982|183983|183984|183985|183986|183987|183988|183989|183990|183991|183992|183993|183994|183995|183996|183997|183998|183999|184000|184001|184002|184003|184004|184005|184006|184007|184008|184009|184010|184011|184012|184013|184014|184015|184016|184017|184018|184019|184020|184021|184022|184023|184024|184025|184026|184027|184028|184029|184030|184031|184032|184033|184034|184035|184036|184037|184038|184039|184040|184041|184042|184043|184044|184045|184046|184047|184048|184049|184050|184051|184052|184053|184054|184055|184056|184057|184058|184059|184060|184061|184062|184063|184064|184065|184066|184067|184068|184069|184070|184071|184072|184073|184074|184075|184076|184077|184078|184079|184080|184081|184082|184083|184084|184085|184086|184087|184088|184089|184090|184091|184092|184093|184094|184095|184096|184097|184098|184099|184100|184101|184102|184103|184104|184105|184106|184107|184108|184109|184110|184111|184112|184113|184114|184115|184116|184117|184118|184119|184120|184121|184122|184123|184124|184125|184126|184127|184128|184129|184130|184131|184132|184133|184134|184135|184136|184137|184138|184139|184140|184141|184142|184143|184144|184145|184146|184147|184148|184149|184150|184151|184152|184153|184154|184155|184156|184157|184158|184159|184160|184161|184162|184163|184164|184165|184166|184167|184168|184169|184170|184171|184172|184173|184174|184175|184176|184177|184178|184179|184180|184181|184182|184183|184184|184185|184186|184187|184188|184189|184190|184191|184192|184193|184194|184195|184196|184197|184198|184199|184200|184201|184202|184203|184204|184205|184206|184207|184208|184209|184210|184211|184212|184213|184214|184215|184216|184217|184218|184219|184220|184221|184222|184223|184224|184225|184226|184227|184228|184229|184230|184231|184232|184233|184234|184235|184236|184237|184238|184239|184240|184241|184242|184243|184244|184245|184246|184247|184248|184249|184250|184251|184252|184253|184254|184255|184256|184257|184258|184259|184260|184261|184262|184263|184264|184265|184266|184267|184268|184269|184270|184271|184272|184273|184274|184275|184276|184277|184278|184279|184280|184281|184282|184283|184284|184285|184286|184287|184288|184289|184290|184291|184292|184293|184294|184295|184296|184297|184298|184299|184300|184301|184302|184303|184304|184305|184306|184307|184308|184309|184310|184311|184312|184313|184314|184315|184316|184317|184318|184319|184320|184321|184322|184323|184324|184325|184326|184327|184328|184329|184330|184331|184332|184333|184334|184335|184336|184337|184338|184339|184340|184341|184342|184343|184344|184345|184346|184347|184348|184349|184350|184351|184352|184353|184354|184355|184356|184357|184358|184359|184360|184361|184362|184363|184364|184365|184366|184367|184368|184369|184370|184371|184372|184373|184374|184375|184376|184377|184378|184379|184380|184381|184382|184383|184384|184385|184386|184387|184388|184389|184390|184391|184392|184393|184394|184395|184396|184397|184398|184399|184400|184401|184402|184403|184404|184405|184406|184407|184408|184409|184410|184411|184412|184413|184414|184415|184416|184417|184418|184419|184420|184421|184422|184423|184424|184425|184426|184427|184428|184429|184430|184431|184432|184433|184434|184435|184436|184437|184438|184439|184440|184441|184442|184443|184444|184445|184446|184447|184448|184449|184450|184451|184452|184453|184454|184455|184456|184457|184458|184459|184460|184461|184462|184463|184464|184465|184466|184467|184468|184469|184470|184471|184472|184473|184474|184475|184476|184477|184478|184479|184480|184481|184482|184483|184484|184485|184486|184487|184488|184489|184490|184491|184492|184493|184494|184495|184496|184497|184498|184499|184500|184501|184502|184503|184504|184505|184506|184507|184508|184509|184510|184511|184512|184513|184514|184515|184516|184517|184518|184519|184520|184521|184522|184523|184524|184525|184526|184527|184528|184529|184530|184531|184532|184533|184534|184535|184536|184537|184538|184539|184540|184541|184542|184543|184544|184545|184546|184547|184548|184549|184550|184551|184552|184553|184554|184555|184556|184557|184558|184559|184560|184561|184562|184563|184564|184565|184566|184567|184568|184569|184570|184571|184572|184573|184574|184575|184576|184577|184578|184579|184580|184581|184582|184583|184584|184585|184586|184587|184588|184589|184590|184591|184592|184593|184594|184595|184596|184597|184598|184599|184600|184601|184602|184603|184604|184605|184606|184607|184608|184609|184610|184611|184612|184613|184614|184615|184616|184617|184618|184619|184620|184621|184622|184623|184624|184625|184626|184627|184628|184629|184630|184631|184632|184633|184634|184635|184636|184637|184638|184639|184640|184641|184642|184643|184644|184645|184646|184647|184648|184649|184650|184651|184652|184653|184654|184655|184656|184657|184658|184659|184660|184661|184662|184663|184664|184665|184666|184667|184668|184669|184670|184671|184672|184673|184674|184675|184676|184677|184678|184679|184680|184681|184682|184683|184684|184685|184686|184687|184688|184689|184690|184691|184692|184693|184694|184695|184696|184697|184698|184699|184700|184701|184702|184703|184704|184705|184706|184707|184708|184709|184710|184711|184712|184713|184714|184715|184716|184717|184718|184719|184720|184721|184722|184723|184724|184725|184726|184727|184728|184729|184730|184731|184732|184733|184734|184735|184736|184737|184738|184739|184740|184741|184742|184743|184744|184745|184746|184747|184748|184749|184750|184751|184752|184753|184754|184755|184756|184757|184758|184759|184760|184761|184762|184763|184764|184765|184766|184767|184768|184769|184770|184771|184772|184773|184774|184775|184776|184777|184778|184779|184780|184781|184782|184783|184784|184785|184786|184787|184788|184789|184790|184791|184792|184793|184794|184795|184796|184797|184798|184799|184800|184801|184802|184803|184804|184805|184806|184807|184808|184809|184810|184811|184812|184813|184814|184815|184816|184817|184818|184819|184820|184821|184822|184823|184824|184825|184826|184827|184828|184829|184830|184831|184832|184833|184834|184835|184836|184837|184838|184839|184840|184841|184842|184843|184844|184845|184846|184847|184848|184849|184850|184851|184852|184853|184854|184855|184856|184857|184858|184859|184860|184861|184862|184863|184864|184865|184866|184867|184868|184869|184870|184871|184872|184873|184874|184875|184876|184877|184878|184879|184880|184881|184882|184883|184884|184885|184886|184887|184888|184889|184890|184891|184892|184893|184894|184895|184896|184897|184898|184899|184900|184901|184902|184903|184904|184905|184906|184907|184908|184909|184910|184911|184912|184913|184914|184915|184916|184917|184918|184919|184920|184921|184922|184923|184924|184925|184926|184927|184928|184929|184930|184931|184932|184933|184934|184935|184936|184937|184938|184939|184940|184941|184942|184943|184944|184945|184946|184947|184948|184949|184950|184951|184952|184953|184954|184955|184956|184957|184958|184959|184960|184961|184962|184963|184964|184965|184966|184967|184968|184969|184970|184971|184972|184973|184974|184975|184976|184977|184978|184979|184980|184981|184982|184983|184984|184985|184986|184987|184988|184989|184990|184991|184992|184993|184994|184995|184996|184997|184998|184999|185000|185001|185002|185003|185004|185005|185006|185007|185008|185009|185010|185011|185012|185013|185014|185015|185016|185017|185018|185019|185020|185021|185022|185023|185024|185025|185026|185027|185028|185029|185030|185031|185032|185033|185034|185035|185036|185037|185038|185039|185040|185041|185042|185043|185044|185045|185046|185047|185048|185049|185050|185051|185052|185053|185054|185055|185056|185057|185058|185059|185060|185061|185062|185063|185064|185065|185066|185067|185068|185069|185070|185071|185072|185073|185074|185075|185076|185077|185078|185079|185080|185081|185082|185083|185084|185085|185086|185087|185088|185089|185090|185091|185092|185093|185094|185095|185096|185097|185098|185099|185100|185101|185102|185103|185104|185105|185106|185108|185109|185110|185111|185112|185113|185114|185115|185116|185117|185118|185119|185120|185121|185122|185123|185124|185125|185126|185127|185128|185129|185130|185131|185132|185133|185134|185135|185136|185137|185138|185139|185140|185141|185142|185143|185144|185145|185146|185147|185148|185149|185150|185151|185152|185153|185154|185155|185156|185157|185158|185159|185160|185161|185162|185163|185164|185165|185166|185167|185168|185169|185170|185171|185172|185173|185174|185175|185176|185177|185178|185179|185180|185181|185182|185183|185184|185185|185186|185187|185188|185189|185190|185191|185192|185193|185194|185195|185196|185197|185198|185199|185200|185201|185202|185203|185204|185205|185206|185207|185208|185209|185210|185211|185212|185213|185214|185215|185216|185217|185218|185219|185220|185221|185222|185223|185224|185225|185226|185227|185228|185229|185230|185231|185232|185233|185234|185235|185236|185237|185238|185239|185240|185241|185242|185243|185244|185245|185246|185247|185248|185249|185250|185251|185252|185253|185254|185255|185256|185257|185258|185259|185260|185261|185262|185263|185264|185265|185266|185267|185268|185269|185270|185271|185272|185273|185274|185275|185276|185277|185278|185279|185280|185281|185282|185283|185284|185285|185286|185287|185288|185289|185290|185291|185292|185293|185294|185295|185296|185297|185298|185299|185300|185301|185302|185303|185304|185305|185306|185307|185308|185309|185310|185311|185312|185313|185314|185315|185316|185317|185318|185319|185320|185321|185322|185323|185324|185325|185326|185327|185328|185329|185330|185331|185332|185333|185334|185335|185336|185337|185338|185339|185340|185341|185342|185343|185344|185345|185346|185347|185348|185349|185350|185351|185352|185353|185354|185355|185356|185357|185358|185359|185360|185361|185362|185363|185364|185365|185366|185367|185368|185369|185370|185371|185372|185373|185374|185375|185376|185377|185378|185379|185380|185381|185382|185383|185384|185385|185386|185387|185388|185389|185390|185391|185392|185393|185394|185395|185396|185397|185398|185399|185400|185401|185402|185403|185404|185405|185406|185407|185408|185409|185410|185411|185412|185413|185414|185415|185416|185417|185418|185419|185420|185421|185422|185423|185424|185425|185426|185427|185428|185429|185430|185431|185432|185433|185434|185435|185436|185437|185438|185439|185440|185441|185442|185443|185444|185445|185446|185447|185448|185449|185450|185451|185452|185453|185454|185455|185456|185457|185458|185459|185460|185461|185462|185463|185464|185465|185466|185467|185468|185469|185470|185471|185472|185473|185474|185475|185476|185477|185478|185479|185480|185481|185482|185483|185484|185485|185486|185487|185488|185489|185490|185491|185492|185493|185494|185495|185496|185497|185498|185499|185500|185501|185502|185503|185504|185505|185506|185507|185508|185509|185510|185511|185512|185513|185514|185515|185516|185517|185518|185519|185520|185521|185522|185523|185524|185525|185526|185527|185528|185529|185530|185531|185532|185533|185534|185535|185536|185537|185538|185539|185540|185541|185542|185543|185544|185545|185546|185547|185548|185549|185550|185551|185552|185553|185554|185555|185556|185557|185558|185559|185560|185561|185562|185563|185564|185565|185566|185567|185568|185569|185570|185571|185572|185573|185574|185575|185576|185577|185578|185579|185580|185581|185582|185583|185584|185585|185586|185587|185588|185589|185590|185591|185592|185593|185594|185595|185596|185597|185598|185599|185600|185601|185602|185603|185604|185605|185606|185607|185608|185609|185610|185611|185612|185613|185614|185615|185616|185617|185618|185619|185620|185621|185622|185623|185624|185625|185626|185627|185628|185629|185630|185631|185632|185633|185634|185635|185636|185637|185638|185639|185640|185641|185642|185643|185644|185645|185646|185647|185648|185649|185650|185651|185652|185653|185654|185655|185656|185657|185658|185659|185660|185661|185662|185954|185955|185956|185957|185974|185975|185977|185979|185980|185982|185983|185984|185986|185987|185989|185990|185991|185992|185993|185994|185995|185997|185998|185999|186000|186004|186005|186009|186013|186014|186015|186016|186017|186026|186029|186030|186031|186033|186034|186037|186038|186039|186040|186044|186045|186059|186061|186062|186063|186064|186065|186066|186067|186079|186080|186081|186085|186086|186093|186094|186095|186097|186099|186100|186101|186104|186108|186110|186111|186112|186113|186115|186116|186118|186122|186123|186132|186133|186134|186136|186137|186138|186141|186142|186143|186144|186145|186146|186150|186157|186158|186167|186169|186170|186171|186174|186175|186176|186179|186180|186182|186183|186184|186210|186212|186213|186215|186217|186218|186219|186220|186221|186222|186223|186224|186229|186230|186231|186232|186247|186255|186256|186257|186258|186259|186260|186264|186265|186266|186271|186272|186275|186277|186279|186280|186283|186440|186442|186443|186444|186449|186451|186452|186454|186455|186457|186539|186544|186545|186549|186551|186792|186796|186797|186798|186799|186800|186801|186802|186803|186804|186805|186947|186948|186949|186950|187277|187281|187282|187285|187298|187307|187316|187321|187322|187323|187329|187331|187332|187334|187335|187336|187337|187338|187339|187340|187345|187349|187351|187353|187355|187357|187358|187359|187361|187363|187366|187367|187370|187373|187374|187375|187378|187379|187381|187382|187384|187386|187388|187389|187390|187697|187698|188057|188058|188847|188870|190024|190025|190027|190028|190109|190112|190235|190247|190808|190857|190858|190859|190953|191141|191164|191244|191406|191407|191748|191853|192724|192882|193412|193532|194046|194155|194260|194275|194276|194513|194823|194909|195020|195171|195206|195259|195361|195552|195590|195617|195744|195893|196239|196445|196489|196490|196491|196493|196494|197378|197379|197386|197514|197519|197521|197523|197525|197526|197533|197535|197537|197541|197542|197548|197552|197554|197557|197558|197559|197562|197564|198037|198613|198614|202458|202460|202465|202469|202470|202471|202472|202478|202479|202480|202481|202482|202485|202489|202491|202493|202503|203081|203084|203086|203090|203092|203093|203095|203096|203100|203101|203102|203105|203106|203109|203110|203112|203115|203117|203118|203121|203124|203128|203129|203131|203132|203133|203137|203138|203140|203144|203147|203152|203153|203155|203157|203159|203161|203164|203166|203167|203169|203170|203171|203179|203183|203184|203185|203186|203188|203189|203190|203191|203192|203193|203194|203202|203205|203207|203209|203212|203214|203218|204604|205207|205265|205310|205416|205418|205692|205705|205718|205766|205869|205906|205908|205929|206077|206156|206170|206206|206207|206208|206209|206210|206311|206313|206376|206411|206446|206537|207572|207731|207797|207813|208505|208506|208507|208508|208509|208510|208511|208512|208514|208516|208518|208519|208523|208524|208526|208529|208530|208531|208532|209317|209318|210653|210654|210657|210660|210669|210670|210671|210672|210674|210675|210677|210678|210681|210687|210696|210697|210704|210706|210708|210709|210711|212067|212089|212090|212091|212092|212093|212094|212095|212096|212100|212101|212102|212103|212104|212127|212129|212130|212131|212132|212133|212134|212135|212136|212137|212139|212140|212141|212142|212153|212181|212182|212185|212186|212187|212188|212190|212191|212192|212193|212194|212196|212197|212198|212199|212200|212201|212202|212203|212204|212205|212206|212207|212209|212210|212211|212212|212213|212214|212215|212216|212217|212218|212219|212220|212221|212222|212223|212224|212225|212228|212231|212232|212233|212234|212235|212237|212239|212240|212241|212242|212243|212245|212246|212248|212249|212250|212253|212254|212255|212258|212260|212262|212264|212265|212268|212269|212277|212278|212279|212280|212286|212297|212301|212303|212304|212306|212308|212320|212322|212323|212324|212325|212326|212327|212329|212385|212386|212387|212390|212391|212392|212395|212396|212397|212399|212400|212401|212403|212405|212406|212408|212409|212410|212411|212412|212413|212414|212416|212417|212418|212419|212421|212422|212423|212424|212426|212427|212428|212429|212430|212432|212433|212434|212435|212436|212438|212442|212444|212445|212446|212447|212449|212450|212451|212452|212453|212454|212455|212456|212457|212458|212459|212460|212461|212462|212463|212464|212466|212467|212468|212469|212470|212471|212472|212473|212474|212475|212477|212478|212479|212480|212481|212482|212483|212484|212485|212486|212487|212488|212489|212490|212491|212492|212493|212533|212535|212536|212538|212539|212540|212542|212545|212546|212548|212550|212553|212554|212555|212556|212557|212558|212559|212560|212561|212563|212564|212586|212587|212588|212590|212592|212593|212596|212598|212599|212600|212601|212602|212603|212604|212605|212607|212609|212610|212611|212612|212613|212640|212642|212643|212644|212645|212646|212647|212648|212649|212650|212659|212660|212661|212662|212663|212664|212665|212666|212667|212668|212672|212673|212674|212677|212678|212679|212681|212683|212684|212686|212689|212692|212694|212695|212696|212697|212698|212700|212701|212702|212703|212704|212709|212710|212711|212716|212719|212720|212725|212726|212729|212730|212732|212733|212735|212737|212738|212744|212746|212750|212751|212753|212756|212757|212758|212759|212765|212767|212768|212769|212770|212771|212772|212775|212776|212777|212780|212781|212783|212784|212785|212786|212787|212789|212790|212792|212794|212795|212799|212800|212801|212802|212805|212806|212807|212808|212809|212810|212812|212813|212814|212816|212817|212819|212820|212825|212834|212836|212837|212842|212843|212844|212846|212847|212848|212849|212850|212851|212852|212853|212854|212855|212857|212858|212860|212861|212862|212863|212864|212866|212867|212868|212869|212870|212875|212879|212880|212881|212882|212883|212884|212886|212887|212888|212889|212892|212893|212894|212895|212896|212897|212899|212900|212902|212904|212905|212906|212907|212908|212910|212912|212913|212914|212915|212930|212931|212932|212934|212935|212936|212940|212941|212944|212945|212946|212947|212949|212950|212951|212954|212955|212957|212958|212959|212960|212962|212963|212964|212965|212966|212967|212971|213001|213002|213003|213005|213006|213007|213008|213020|213023|213026|213027|213028|213029|213030|213031|213033|213034|213036|213038|213039|213041|213044|213046|213050|213051|213052|213056|213060|213061|213062|213064|213065|213066|213069|213070|213074|213077|213078|213079|213080|213081|213082|213083|213086|213088|213091|213092|213094|213095|213098|213144|213149|213150|213151|213152|213153|213154|213155|213157|213159|213163|213165|213166|213167|213168|213169|213170|213171|213172|213174|213175|213176|213177|213179|213180|213182|213185|213186|213189|213196|213197|213200|213202|213203|213204|213206|213207|213208|213209|213210|213211|213212|213214|213215|213242|213244|213250|213252|213254|213257|213259|213260|213261|213269|213270|213273|213275|213277|213278|213279|213282|213285|213287|213288|213290|213293|213294|213295|213296|213297|213301|213302|213303|213304|213306|213307|213309|213310|213311|213313|213314|213315|213316|213318|213319|213320|213321|213323|213325|213326|213327|213328|213329|213332|213334|213335|213336|213337|213339|213340|213341|213342|213343|213344|213348|213350|213351|213352|213353|213354|213356|213358|213360|213361|213362|213363|213364|213368|213370|213371|213372|213373|213374|213375|213377|213378|213381|213384|213385|213387|213388|213390|213391|213392|213394|213397|213398|213399|213400|213401|213403|213404|213405|213406|213407|213419|213421|213422|213423|213424|213428|213429|213431|213432|213433|213434|213436|213438|213441|213442|213443|213444|213445|213446|213447|213448|213477|213478|213479|213480|213481|213482|213483|213487|213488|213490|213491|213492|213493|213772|213945|214572|214577|214580|214581|214582|214589|214590|214592|214593|214594|214596|214597|214598|214601|214602|214603|214606|214607|214608|214614|214615|214616|214622|214625|214628|214631|214639|214646|214652|214654|214655|214656|214658|214659|214661|214662|214663|214664|214665|214667|214677|214678|214680|214681|214682|214684|214686|214691|214692|214695|214702|214710|214715|214716|214718|214719|214720|214722|214728|214729|214731|214805|214913|214914|215258|215302|215306|215365|215366|215407|215422|215445|215576|220980|220981|221084|221085|221097|221099|221100|221101|221102|221105|221107|221108|221137|221138|221139|221142|221143|221144|221145|221146|221147|221148|221149|221150|221151|221153|221156|221158|221160|221161|221162|221163|221164|221165|221167|221168|221170|221171|221172|221202|221204|221205|221206|221207|221209|221210|221211|221212|221213|221214|221216|221217|221219|221220|221222|221223|221225|221226|221227|221228|221231|221232|221234|221236|221237|221238|221239|221242|221243|221244|221245|221246|221248|221249|221251|221252|221253|221254|221255|221256|221257|221259|221260|221261|221262|221263|221264|221265|221266|221268|221269|221270|221271|221272|221273|221274|221276|221277|221278|221279|221280|221281|221282|221283|221284|221286|221289|221290|221291|221292|221294|221295|221296|221297|221298|221299|221301|221303|221304|221305|221307|221308|221309|221310|221311|221313|221314|221343|221344|221345|221348|221352|221354|221356|221357|221376|221379|221382|221383|221385|221386|221387|221389|221394|221395|221396|221397|221398|221399|221401|221402|221403|221405|221407|221408|221410|221411|221420|221421|221459|221460|221463|221464|221466|221467|221469|221471|221473|221474|221481|221482|221484|221486|221488|221490|221491|221492|221493|221494|221496|221497|221498|221500|221502|221503|221504|221505|221506|221507|221511|221512|221513|221514|221515|221516|221517|221518|221521|221522|221523|221524|221525|221526|221527|221529|221530|221533|221534|221535|221536|221537|221539|221540|221541|221542|221543|221544|221545|221546|221548|221549|221550|221557|221558|221559|221560|221561|221562|221564|221565|221566|221567|221568|221570|221571|221573|221574|221575|221576|221577|221578|221579|221580|221581|221582|221583|221584|221585|221586|221587|221588|221589|221590|221591|221592|221593|221617|221618|221619|221647|221649|221650|221651|221653|221655|221656|221658|221661|221663|221664|221703|221705|221706|221707|221708|221710|221713|221714|221715|221716|221719|221720|221721|221722|221723|221724|221725|221726|221727|221728|221733|221735|221736|221769|221771|221772|221773|221774|221775|221776|221777|221778|221779|221780|221781|221782|221783|221785|221786|221787|221788|221791|221792|221794|221795|221796|221797|221798|221805|221816|221817|221818|221819|221821|221823|221824|221825|221826|221831|221833|221834|221837|221839|221840|221842|221843|221846|221847|221849|221850|221851|221852|221854|221855|221856|221861|221863|221865|221866|221867|221868|221869|221873|221874|221878|221879|221880|221881|221884|221885|221888|221889|221890|221891|221892|221893|221896|221897|221898|221899|221902|221903|221907|221908|221909|221912|221913|221916|221918|221919|221921|221922|221924|221925|221930|221933|221934|221935|221936|221944|221946|221947|221948|221949|221950|221951|221952|221955|221957|221958|221961|221967|221968|221970|221972|221973|221974|221976|221988|221989|221990|221992|221995|221997|221998|221999|222000|222001|222006|222020|222022|222023|222026|222027|222029|222030|222032|222034|222036|222037|222038|222040|222041|222042|222043|222044|222045|222046|222048|222049|222051|222052|222053|222056|222057|222059|222060|222061|222062|222063|222064|222066|222067|222069|222070|222071|222072|222073|222074|222075|222076|222077|222078|222079|222080|222081|222083|222085|222086|222088|222089|222090|222091|222092|222094|222095|222097|222098|222099|222101|222102|222103|222104|222105|222106|222107|222108|222109|222110|222111|222112|222113|222114|222115|222116|222118|222119|222120|222122|222124|222125|222126|222127|222128|222131|222132|222133|222157|222158|222159|222161|222164|222165|222167|222168|222169|222171|222172|222174|222175|222176|222177|222178|222179|222180|222184|222185|222187|222188|222189|222190|222191|222192|222206|222207|222208|222211|222212|222213|222214|222215|222216|222217|222218|222219|222220|222222|222223|222224|222226|222230|222232|222233|222234|222236|222238|222239|222240|222242|222245|222257|222258|222259|222260|222261|222263|222264|222265|222266|222272|222274|222275|222277|222279|222280|222281|222282|222283|222284|222286|222287|222288|222290|222291|222292|222294|222295|222296|222298|222300|222301|222303|222306|222308|222309|222314|222315|222318|222319|222322|222323|222325|222326|222327|222328|222329|222330|222331|222332|222333|222334|222337|222341|222342|222344|222346|222349|222350|222352|222355|222356|222392|222393|222394|222395|222396|222401|222402|222403|222404|222405|222406|222407|222408|222409|222411|222412|222415|222438|222439|222450|222452|222454|222456|222457|222458|222459|222460|222461|222464|222465|222466|222468|222469|222470|222471|222473|222474|222476|222478|222479|222480|222482|222483|222484|222485|222493|222494|222495|222498|222499|222500|222502|222504|222505|222506|222507|222508|222509|222510|222511|222512|222513|222514|222516|222517|222519|222521|222523|222524|222525|222529|222530|222531|222560|222563|222564|222565|222566|222568|222575|222576|222579|222581|222582|222583|222585|222587|222588|222593|222594|222595|222596|222598|222600|222602|222604|222607|222608|222610|222611|222612|222613|222615|222616|222617|222621|222622|222625|222626|222627|222630|222631|222633|222634|222635|222636|222638|222642|222647|222648|222649|222650|222652|222655|222658|222661|222663|222664|222665|222666|222668|222670|222671|222673|222674|222677|222678|222679|222681|222682|222683|222685|222689|222691|222692|222693|222694|222695|222697|222698|222699|222700|222702|222703|222704|222706|222708|222710|222711|222712|222714|222715|222716|222718|222719|222720|222721|222722|222723|222725|222726|222727|222728|222729|222730|222734|222735|222737|222738|222741|222743|222744|222754|222756|222757|222762|222763|222766|222767|222768|222770|222771|222772|222773|222774|222775|222776|222777|222778|222779|222785|222786|222787|222788|222790|222795|222796|222797|222798|222799|222800|222801|222819|222820|222821|222822|222824|222825|222826|222827|222830|222832|222833|222834|222835|222836|222837|222838|222840|222841|222842|222843|222844|222845|222846|222847|222848|222849|222850|222857|222858|222859|222860|222861|222862|222865|222866|222867|222868|222869|222876|222877|222878|222989|223361|223362|223599|223600|223602|223628|223646|224306|224894|224898|224902|224915|224916|224918|224919|224936|224950|224957|224962|224963|224965|225120|225121|225122|225123|225124|225125|225126|225127|225128|225129|225130|225131|225132|225133|225134|225135|225136|225137|225138|225139|225140|225141|225142|225143|225144|225145|225146|225147|225148|225149|225150|225151|225152|225153|225154|225155|225156|225157|225158|225159|225160|225161|225162|225163|225164|225165|225166|225167|225168|225169|225170|225171|225172|225173|225174|225175|225176|225177|225178|225179|225180|225181|225182|225183|225184|225185|225186|225187|225188|225189|225190|225191|225192|225193|225194|225195|225196|225197|225198|225199|225200|225201|225202|225203|225204|225205|225206|225207|225208|225209|225210|225211|225212|225213|225214|225215|225216|225217|225218|225219|225220|225221|225222|225223|225224|225225|225226|225227|225228|225229|225230|225231|225232|225233|225234|225235|225236|225237|225238|225239|225240|225241|225242|225243|225244|225245|225246|225247|225248|225249|225250|225251|225252|225253|225254|225255|225256|225257|225258|225259|225260|225261|225262|225263|225264|225265|225266|225267|225268|225269|225270|225271|225272|225273|225274|225275|225276|225277|225278|225279|225280|225281|225282|225283|225284|225285|225286|225287|225288|225289|225290|225291|225292|225293|225294|225295|225296|225297|225298|225299|225300|225301|225302|225303|225304|225305|225306|225307|225308|225309|225310|225311|225312|225313|225314|225315|225316|225317|225318|225319|225320|225321|225322|225323|225324|225325|225326|225327|225328|225329|225330|225331|225332|225333|225334|225335|225336|225337|225338|225339|225340|225341|225342|225343|225344|225345|225346|225347|225348|225349|225350|225351|225352|225353|225354|225355|225356|225357|225358|225359|225360|225361|225362|225363|225364|225365|225366|225367|225368|225369|225370|225371|225372|225373|225374|225375|225376|225377|225378|225379|225380|225381|225382|225383|225384|225385|225386|225387|225388|225389|225390|225391|225392|225393|225394|225395|225396|225397|225398|225399|225400|225401|225402|225403|225404|225405|225406|225407|225408|225409|225410|225411|225412|225413|225414|225415|225416|225417|225418|225419|225420|225421|225422|225423|225424|225425|225426|225427|225428|225429|225430|225431|225432|225433|225434|225435|225436|225437|225438|225439|225440|225441|225442|225443|225444|225445|225446|225447|225448|225449|225450|225451|225452|225453|225454|225455|225456|225457|225458|225459|225460|225461|225462|225463|225464|225465|225466|225467|225468|225469|225470|225471|225472|225473|225474|225475|225476|225477|225478|225479|225480|225481|225482|225483|225484|225485|225486|225487|225488|225489|225490|225491|225492|225493|225494|225495|225496|225497|225498|225499|225500|225501|225502|225503|225504|225505|225506|225507|225508|225509|225510|225511|225512|225513|225514|225515|225516|225517|225518|225519|225520|225521|225522|225523|225524|225525|225526|225527|225528|225529|225530|225531|225532|225533|225534|225535|225536|225537|225538|225539|225540|225541|225542|225543|225544|225545|225546|225547|225548|225549|225550|225551|225552|225553|225554|225555|225556|225557|225558|225559|225560|225561|225562|225563|225564|225565|225566|225567|225568|225569|225570|225571|225572|225573|225574|225575|225576|225577|225578|225579|225580|225581|225582|225583|225584|225585|225586|225587|225588|225589|225590|225591|225592|225593|225594|225595|225596|225597|225598|225599|225600|225601|225602|225603|225604|225605|225606|225607|225608|225609|225610|225611|225612|225613|225614|225615|225616|225617|225618|225619|225620|225621|225622|225623|225624|225625|225626|225627|225628|225629|225630|225631|225632|225633|225634|225635|225636|225637|225638|225639|225640|225641|225642|225643|225644|225645|225646|225647|225648|225649|225650|225651|225652|225653|225654|225655|225656|225657|225658|225659|225660|225661|225662|225663|225664|225665|225666|225667|225668|225669|225670|225671|225672|225673|225674|225675|225676|225677|225678|225679|225680|225681|225682|225683|225684|225685|225686|225687|225688|225689|225690|225691|225692|225693|225694|225695|225696|225697|225698|225699|225700|225701|225702|225703|225704|225705|225706|225707|225708|225709|225710|225711|225712|225713|225714|225715|225716|225717|225718|225719|225720|225721|225722|225723|225724|225725|225726|225727|225728|225729|225730|225731|225732|225733|225734|225735|225736|225737|225738|225739|225740|225741|225742|225743|225744|225745|225746|225747|225748|225749|225750|225751|225752|225753|225754|225755|225756|225757|225758|225759|225760|225761|225762|225763|225764|225765|225766|225767|225768|225769|225770|225771|225772|225773|225774|225775|225776|225777|225778|225779|225780|225781|226087|226152|226153|226154|226155|226156|226159|226160|226162|226164|226174|226175|226180|226185|226189|226191|226193|226198|226204|226205|226207|226293|226294|226295|226296|226298|226299|226300|226301|226302|226303|226304|226305|226306|226307|226308|226311|226312|226313|226316|226317|226320|226323|226324|226325|226327|226328|226329|226330|226331|226332|226333|226334|226335|226339|226342|226343|226344|226345|226346|226347|226348|226349|226350|226351|226352|226355|226356|226357|226358|226359|226360|226361|226362|226363|226364|226365|226366|226367|226368|226369|226370|226371|226788|226816|226817|226818|226820|226821|226822|226823|226824|226825|226826|227193|227194|227197|227276|227399|227520|227527|227528|227529|227531|227532|227533|227534|227535|227536|227538|227539|227543|227544|227550|227551|227554|227556|227557|227558|227559|227563|227567|227577|227664|227665|227667|227671|227672|227699|227700|227854|227920|228967|229170|229171|229172|229173|229791|230612|230675|230758|230765|230766|230767|230768|230773|231520|231526|231527|231530|231532|231533|231535|231536|231537|231541|231542|231547|231548|231549|231550|231551|231552|231553|231554|231555|231562|231564|231565|231567|231569|231570|231572|231573|231574|231575|231577|231579|231580|231581|231582|231584|231586|231587|231588|231592|231594|231599|231601|231606|231608|231609|231610|231612|231613|231614|231616|231617|231618|231619|231621|231623|231624|231626|231627|231631|231655|231656|231657|231659|231661|231662|231668|231669|231670|231671|231675|231676|231678|231680|231681|231682|231683|231684|231685|231687|231688|231690|231692|231693|231694|231698|231701|231702|231706|231707|231708|231709|231713|231714|231723|231724|231725|231728|231730|231731|231732|231733|231737|231738|231749|231750|231752|231753|231762|231779|231786|231791|231792|231793|231794|231795|231796|231798|231855|231858|231859|231864|231865|231866|231869|231870|231871|231872|231873|231874|231877|231879|231880|231881|231882|231883|231886|231887|231888|231890|231891|231892|231893|231894|231897|231900|231902|231903|231905|231906|231907|231911|231912|231962|231964|231966|231968|231969|231971|231972|231973|231974|231975|231976|231977|231980|231982|231984|231986|231989|231993|231995|231996|231997|231998|231999|232000|232001|232002|232003|232005|232006|232008|232009|232012|232016|232017|232021|232023|232024|232027|232035|232070|232071|232074|232075|232077|232078|232079|232082|232083|232084|232085|232088|232112|232117|232119|232120|232121|232122|232123|232124|232125|232127|232128|232129|232130|232131|232132|232134|232136|232138|232139|232142|232143|232144|232166|232167|232168|232169|232170|232171|232172|232173|232174|232175|232176|232177|232178|232179|232180|232181|232182|232183|232184|232185|232186|232187|232188|232189|232190|232191|232192|232193|232194|232195|232196|232197|232198|232199|232200|232201|232202|232203|232204|232205|232206|232207|232209|232210|232211|232212|232213|232214|232215|232216|232217|232218|232219|232220|232221|232222|232223|232224|232225|232226|232227|232228|232229|232230|232231|232232|232233|232234|232235|232236|232237|232238|232239|232240|232241|232242|232243|232244|232245|232246|232247|232248|232249|232250|232251|232252|232253|232254|232255|232256|232257|232258|232259|232260|232261|232262|232263|232264|232265|232266|232267|232268|232269|232270|232271|232272|232273|232274|232275|232276|232277|232278|232279|232280|232281|232282|232283|232284|232285|232286|232287|232288|232289|232290|232291|232292|232293|232294|232295|232296|232297|232298|232299|232300|232301|232302|232303|232304|232305|232306|232307|232308|232309|232310|232311|232312|232313|232314|232315|232316|232317|232318|232319|232320|232321|232322|232323|232324|232325|232326|232327|232328|232329|232330|232331|232332|232333|232334|232335|232336|232337|232338|232339|232340|232341|232342|232343|232344|232345|232346|232347|232348|232349|232350|232351|232352|232353|232354|232355|232356|232357|232358|232359|232360|232361|232362|232363|232364|232365|232366|232367|232368|232369|232370|232371|232372|232373|232374|232375|232376|232377|232378|232379|232380|232381|232382|232383|232384|232385|232386|232387|232388|232389|232390|232391|232392|232393|232394|232395|232396|232397|232398|232399|232400|232401|232402|232403|232404|232405|232406|232407|232408|232409|232410|232411|232412|232413|232414|232415|232416|232417|232418|232419|232420|232421|232422|232423|232424|232425|232426|232427|232428|232429|232430|232431|232432|232433|232434|232435|232436|232437|232438|232439|232440|232441|232442|232443|232444|232445|232446|232447|232448|232449|232450|232451|232452|232453|232454|232455|232456|232457|232458|232459|232460|232461|232462|232463|232464|232465|232466|232467|232468|232469|232470|232471|232472|232473|232474|232475|232476|232477|232478|232479|232480|232481|232482|232483|232484|232485|232486|232487|232488|232489|232490|232491|232492|232493|232494|232495|232496|232497|232498|232499|232500|232501|232502|232503|232504|232505|232506|232507|232508|232509|232510|232511|232512|232513|232514|232515|232516|232517|232518|232519|232520|232521|232522|232523|232524|232525|232526|232527|232528|232529|232530|232531|232532|232533|232534|232535|232536|232537|232538|232539|232540|232541|232542|232543|232544|232545|232546|232547|232548|232549|232550|232551|232552|232553|232554|232555|232556|232557|232558|232559|232560|232561|232562|232563|232564|232565|232566|232567|232568|232569|232570|232571|232572|232573|232574|232575|232576|232577|232578|232579|232580|232581|232582|232583|232584|232585|232586|232587|232588|232589|232590|232591|232592|232593|232594|232595|232596|232597|232598|232599|232600|232601|232602|232603|232604|232605|232606|232607|232608|232609|232610|232611|232612|232613|232614|232615|232616|232617|232618|232619|232620|232621|232622|232623|232624|232625|232626|232627|232628|232629|232630|232631|232632|232633|232634|232635|232636|232637|232638|232639|232640|232641|232642|232643|232644|232645|232646|232647|232648|232649|232650|232651|232652|232653|232654|232655|232656|232657|232658|232659|232660|232661|232662|232663|232664|232665|232666|232667|232668|232669|232670|232671|232672|232673|232674|232675|232676|232677|232678|232679|232680|232681|232682|232683|232684|232685|232686|232687|232688|232689|232690|232691|232692|232693|232694|232695|232696|232697|232698|232699|232700|232701|232702|232703|232704|232705|232706|232707|232708|232709|232710|232711|232712|232713|232714|232715|232716|232717|232718|232719|232720|232721|232722|232723|232724|232725|232726|232727|232728|232729|232730|232731|232732|232733|232734|232735|232736|232737|232738|232739|232740|232741|232742|232743|232744|232745|232746|232747|232748|232749|232750|232751|232752|232753|232754|232755|232756|232757|232758|232760|232761|232762|232763|232764|232765|232766|232767|232768|232769|232770|232771|232772|232773|232774|232775|232776|232777|232778|232779|232780|232781|232782|232783|232784|232785|232786|232787|232788|232789|232790|232791|232792|232793|232794|232795|232796|232797|232798|232799|232800|232801|232802|232803|232804|232805|232806|232807|232808|232809|232810|232811|232812|232813|232814|232815|232816|232817|232818|232819|232820|232821|232822|232823|232824|232825|232826|232827|232828|232829|232830|232831|232832|232833|232834|232835|232836|232837|232838|232839|232840|232841|232842|232843|232844|232845|232846|232847|232848|232849|232850|232851|232852|232853|232854|232855|232856|232857|232859|232860|232861|232862|232863|232864|232865|232866|232867|232868|232869|232870|232871|232872|232873|232874|232875|232876|232877|232878|232879|232880|232881|232882|232883|232884|232885|232886|232887|232888|232889|232890|232891|232892|232893|232894|232895|232896|232897|232898|232899|232900|232901|232902|232903|232904|232905|232906|232907|232908|232909|232910|232911|232912|232913|232914|232915|232916|232917|232918|232919|232920|232921|232922|232923|232924|232925|232926|232927|232928|232929|232930|232931|232932|232933|232934|232935|232936|232937|232938|232939|232940|232941|232942|232943|232944|232945|232946|232947|232948|232949|232950|232951|232952|232953|232954|232955|232956|232957|232958|232959|232960|232961|232962|232963|232964|232965|232966|232967|232968|232969|232970|232971|232973|232974|232975|232976|232977|232978|232979|232980|232981|232982|232983|232984|232985|232986|232987|232988|232989|232990|232991|232992|232993|232994|232995|232996|232997|232998|232999|233000|233001|233002|233003|233004|233005|233006|233007|233008|233009|233010|233011|233012|233013|233014|233015|233016|233017|233018|233019|233020|233021|233022|233023|233024|233025|233026|233027|233028|233029|233030|233031|233032|233033|233034|233035|233036|233037|233038|233039|233040|233041|233042|233043|233044|233045|233046|233047|233048|233049|233050|233051|233052|233053|233054|233055|233056|233057|233058|233059|233060|233061|233062|233063|233064|233065|233066|233067|233068|233069|233070|233071|233072|233073|233074|233075|233076|233077|233078|233079|233080|233081|233082|233083|233084|233085|233086|233087|233088|233089|233090|233091|233092|233093|233094|233095|233096|233097|233098|233099|233100|233101|233102|233103|233104|233105|233106|233107|233108|233109|233110|233111|233112|233113|233114|233115|233116|233117|233118|233119|233120|233121|233122|233123|233124|233125|233126|233127|233128|233129|233130|233131|233132|233133|233134|233135|233136|233137|233138|233139|233140|233141|233142|233143|233144|233145|233146|233147|233148|233149|233150|233151|233152|233153|233154|233155|233156|233157|233158|233159|233160|233161|233162|233163|233164|233165|233166|233167|233168|233169|233170|233171|233172|233173|233174|233175|233176|233177|233178|233179|233180|233181|233182|233183|233184|233185|233186|233187|233188|233189|233190|233191|233192|233193|233194|233195|233196|233197|233198|233199|233200|233201|233202|233203|233204|233205|233206|233207|233208|233209|233210|233211|233212|233213|233214|233215|233216|233217|233218|233219|233220|233221|233222|233223|233224|233225|233226|233227|233228|233229|233230|233231|233232|233233|233234|233235|233236|233237|233238|233239|233240|233241|233242|233243|233244|233245|233246|233247|233248|233249|233250|233251|233252|233253|233254|233255|233256|233257|233258|233259|233260|233261|233262|233263|233264|233265|233266|233267|233268|233269|233270|233271|233272|233273|233274|233275|233276|233277|233278|233279|233280|233281|233282|233283|233284|233285|233286|233287|233288|233289|233290|233291|233292|233293|233294|233295|233296|233297|233298|233299|233300|233301|233302|233303|233304|233305|233306|233307|233308|233309|233310|233311|233312|233313|233314|233315|233316|233317|233318|233319|233320|233321|233322|233323|233324|233325|233326|233327|233328|233329|233330|233331|233332|233333|233334|233335|233336|233337|233338|233339|233340|233341|233342|233343|233344|233345|233346|233347|233348|233349|233350|233351|233352|233353|233354|233355|233356|233357|233358|233359|233360|233361|233362|233363|233364|233365|233366|233367|233368|233369|233370|233371|233372|233373|233374|233375|233376|233377|233378|233379|233380|233381|233382|233383|233384|233385|233386|233387|233388|233389|233390|233391|233392|233393|233394|233395|233396|233397|233398|233399|233400|233401|233402|233403|233404|233405|233406|233407|233408|233409|233410|233411|233412|233413|233414|233415|233416|233417|233418|233419|233420|233421|233422|233423|233424|233425|233426|233427|233428|233429|233430|233431|233432|233433|233434|233435|233436|233437|233438|233439|233440|233441|233442|233443|233444|233445|233446|233447|233448|233449|233450|233451|233452|233453|233454|233455|233456|233457|233458|233459|233460|233461|233462|233463|233464|233465|233466|233467|233468|233469|233470|233471|233472|233473|233474|233475|233476|233477|233478|233479|233480|233481|233482|233483|233484|233485|233486|233487|233488|233489|233490|233491|233492|233493|233494|233495|233496|233497|233498|233499|233500|233501|233502|233503|233504|233505|233506|233507|233509|233510|233511|233512|233513|233514|233515|233516|233517|233518|233519|233520|233521|233522|233523|233524|233525|233526|233527|233528|233529|233530|233531|233532|233533|233534|233535|233536|233537|233538|233539|233540|233541|233542|233543|233544|233545|233546|233547|233548|233549|233550|233551|233552|233553|233554|233555|233556|233557|233558|233559|233560|233561|233562|233563|233564|233565|233566|233567|233568|233569|233570|233571|233572|233573|233574|233575|233576|233577|233578|233579|233580|233581|233582|233583|233584|233585|233586|233587|233588|233589|233590|233591|233592|233593|233594|233595|233596|233597|233598|233599|233600|233601|233602|233603|233604|233605|233606|233607|233608|233609|233610|233611|233612|233613|233614|233615|233616|233617|233618|233619|233620|233621|233622|233623|233624|233625|233626|233627|233628|233629|233630|233631|233632|233633|233634|233635|233636|233637|233638|233639|233640|233641|233642|233643|233644|233645|233646|233647|233648|233649|233650|233651|233652|233653|233654|233655|233656|233657|233658|233659|233660|233661|233662|233663|233664|233665|233666|233667|233668|233669|233670|233671|233672|233673|233674|233675|233676|233677|233678|233679|233680|233681|233682|233683|233684|233685|233686|233687|233688|233689|233690|233691|233692|233693|233694|233695|233696|233697|233698|233699|233700|233701|233702|233703|233704|233705|233706|233707|233708|233709|233710|233711|233712|233713|233714|233715|233716|233717|233718|233719|233720|233721|233722|233723|233724|233725|233726|233727|233728|233729|233730|233731|233732|233733|233734|233735|233736|233737|233738|233739|233740|233741|233742|233743|233744|233745|233746|233747|233748|233749|233750|233751|233752|233753|233754|233755|233756|233757|233758|233759|233760|233761|233762|233763|233764|233765|233766|233767|233768|233769|233770|233771|233772|233773|233774|233775|233776|233777|233778|233779|233780|233781|233782|233783|233784|233785|233786|233787|233788|233789|233790|233791|233792|233793|233794|233795|233796|233797|233798|233799|233800|233801|233802|233803|233804|233805|233806|233807|233808|233809|233810|233811|233812|233813|233814|233815|233816|233817|233818|233819|233820|233821|233822|233823|233824|233825|233826|233827|233828|233829|233830|233831|233832|233833|233834|233835|233836|233837|233838|233839|233840|233841|233842|233843|233844|233845|233846|233847|233848|233849|233850|233851|233852|233853|233854|233855|233856|233857|233858|233859|233860|233861|233862|233863|233864|233865|233866|233867|233868|233869|233870|233871|233872|233873|233874|233875|233876|233877|233878|233879|233880|233881|233882|233883|233884|233885|233886|233887|233888|233889|233890|233891|233892|233893|233894|233895|233896|233897|233898|233899|233900|233901|233902|233903|233904|233905|233906|233907|233908|233909|233910|233911|233912|233913|233914|233915|233916|233917|233918|233919|233920|233921|233922|233923|233924|233925|233926|233927|233928|233929|233930|233931|233932|233933|233934|233935|233936|233937|233938|233939|233940|233941|233942|233943|233944|233945|233946|233947|233948|233949|233950|233951|233952|233953|233954|233955|233956|233957|233958|233959|233960|233961|233962|233963|233964|233965|233966|233967|233968|233969|233970|233971|233972|233973|233974|233975|233976|233977|233978|233979|233980|233981|233982|233983|233984|233985|233986|233987|233988|233989|233990|233991|233992|233993|233994|233995|233996|233997|233998|233999|234000|234001|234002|234003|234004|234005|234006|234007|234008|234009|234010|234011|234012|234013|234014|234015|234016|234017|234018|234019|234020|234021|234022|234023|234024|234025|234026|234027|234028|234029|234030|234031|234032|234033|234034|234035|234036|234037|234038|234039|234040|234041|234042|234043|234044|234045|234046|234047|234048|234049|234050|234051|234052|234053|234054|234055|234056|234057|234058|234059|234060|234061|234062|234063|234064|234065|234066|234067|234068|234069|234070|234071|234072|234073|234074|234075|234076|234077|234078|234079|234080|234081|234082|234083|234084|234085|234086|234087|234088|234089|234090|234091|234092|234093|234094|234095|234096|234097|234098|234099|234100|234101|234102|234103|234104|234105|234106|234107|234108|234109|234110|234111|234112|234113|234114|234115|234116|234117|234118|234119|234120|234121|234122|234123|234124|234125|234126|234127|234128|234129|234130|234131|234132|234133|234134|234135|234136|234137|234138|234139|234140|234141|234142|234143|234144|234145|234146|234147|234148|234149|234150|234151|234152|234153|234154|234155|234156|234157|234158|234159|234160|234161|234162|234163|234164|234165|234166|234167|234168|234169|234170|234171|234172|234173|234174|234175|234176|234177|234178|234179|234180|234181|234182|234183|234184|234185|234186|234187|234188|234189|234190|234191|234192|234193|234194|234195|234196|234197|234198|234199|234200|234201|234202|234203|234204|234205|234206|234207|234208|234209|234210|234211|234212|234213|234214|234215|234216|234217|234218|234219|234220|234221|234222|234223|234224|234225|234226|234227|234228|234229|234230|234231|234232|234233|234234|234235|234236|234237|234238|234239|234240|234241|234242|234243|234244|234245|234246|234247|234248|234249|234250|234251|234252|234253|234254|234255|234256|234257|234258|234259|234260|234261|234262|234263|234264|234265|234266|234267|234268|234269|234270|234271|234272|234273|234274|234275|234276|234277|234278|234279|234280|234281|234282|234283|234284|234285|234286|234287|234288|234289|234290|234291|234292|234293|234294|234295|234296|234297|234298|234299|234300|234301|234302|234303|234304|234305|234306|234307|234308|234309|234310|234311|234312|234313|234314|234315|234316|234317|234318|234319|234320|234321|234322|234323|234324|234325|234326|234327|234328|234329|234330|234331|234332|234333|234334|234335|234336|234337|234338|234339|234340|234341|234342|234343|234344|234345|234346|234347|234348|234349|234350|234351|234352|234353|234354|234355|234356|234357|234358|234359|234360|234361|234362|234363|234364|234365|234366|234367|234368|234369|234370|234371|234372|234373|234374|234375|234376|234377|234378|234379|234380|234381|234382|234383|234384|234385|234386|234387|234388|234389|234390|234391|234392|234393|234394|234395|234396|234397|234398|234399|234400|234401|234402|234403|234404|234405|234406|234407|234408|234409|234410|234411|234412|234413|234414|234415|234416|234417|234418|234419|234420|234421|234422|234423|234424|234425|234426|234427|234428|234429|234430|234431|234432|234433|234434|234435|234436|234437|234438|234439|234440|234441|234442|234443|234444|234445|234446|234447|234448|234449|234450|234451|234452|234453|234454|234455|234456|234457|234458|234459|234460|234461|234462|234463|234464|234465|234466|234467|234468|234469|234470|234471|234472|234473|234474|234475|234476|234477|234478|234479|234480|234481|234482|234483|234484|234485|234486|234487|234488|234489|234490|234491|234492|234493|234494|234495|234496|234497|234498|234499|234500|234501|234502|234503|234504|234505|234506|234507|234508|234509|234510|234511|234512|234513|234514|234515|234516|234517|234518|234519|234520|234521|234522|234523|234524|234525|234526|234527|234528|234529|234530|234531|234532|234533|234534|234535|234536|234537|234538|234539|234540|234541|234542|234543|234544|234545|234546|234547|234548|234549|234550|234551|234552|234553|234554|234555|234556|234557|234558|234559|234560|234561|234562|234563|234564|234565|234566|234567|234568|234569|234570|234571|234572|234573|234574|234575|234576|234577|234578|234579|234580|234581|234582|234583|234584|234585|234586|234587|234588|234589|234590|234591|234592|234593|234594|234595|234596|234597|234598|234599|234600|234601|234602|234603|234604|234605|234606|234607|234608|234609|234610|234611|234612|234613|234614|234615|234616|234617|234618|234619|234620|234621|234622|234623|234624|234625|234626|234627|234628|234629|234630|234631|234632|234633|234634|234635|234636|234637|234638|234639|234640|234641|234642|234643|234644|234645|234646|234647|234648|234649|234650|234651|234652|234653|234654|234655|234656|234657|234658|234659|234660|234661|234662|234663|234664|234665|234666|234667|234668|234669|234670|234671|234672|234673|234674|234675|234676|234677|234678|234679|234680|234681|234682|234683|234684|234685|234686|234687|234688|234689|234690|234691|234692|234693|234694|234695|234696|234697|234698|234699|234700|234701|234702|234703|234704|234705|234706|234707|234708|234709|234710|234711|234712|234713|234714|234715|234716|234717|234718|234719|234720|234721|234722|234723|234724|234725|234726|234727|234728|234729|234730|234731|234732|234733|234734|234735|234736|234737|234738|234739|234740|234741|234742|234743|234744|234745|234746|234747|234748|234749|234750|234751|234752|234753|234754|234755|234756|234757|234758|234759|234760|234761|234762|234763|234764|234765|234766|234767|234768|234769|234770|234771|234772|234773|234774|234775|234776|234777|234778|234779|234780|234781|234782|234783|234784|234785|234786|234787|234788|234789|234790|234791|234792|234793|234794|234795|234796|234797|234798|234799|234800|234801|234802|234803|234804|234805|234806|234807|234808|234809|234810|234811|234812|234813|234814|234815|234816|234817|234818|234819|234820|234821|234822|234823|234824|234825|234826|234827|234828|234829|234830|234831|234832|234833|234834|234835|234836|234837|234838|234839|234840|234841|234842|234843|234844|234845|234846|234847|234848|234849|234850|234851|234852|234853|234854|234855|234856|234857|234858|234859|234860|234861|234862|234863|234864|234865|234866|234867|234868|234869|234870|234871|234872|234873|234874|234875|234876|234877|234878|234879|234880|234881|234882|234883|234884|234885|234886|234887|234888|234889|234890|234891|234892|234893|234894|234895|234896|234897|234898|234899|234900|234901|234902|234903|234904|234905|234906|234907|234908|234909|234910|234911|234912|234913|234914|234915|234916|234917|234918|234919|234920|234921|234922|234923|234924|234925|234926|234927|234928|234929|234930|234931|234932|234933|234934|234935|234936|234937|234938|234939|234940|234941|234942|234943|234944|234945|234946|234947|234948|234949|234950|234951|234952|234953|234954|234955|234956|234957|234958|234959|234960|234961|234962|234963|234964|234965|234966|234967|234968|234969|234970|234971|234972|234973|234974|234975|234976|234977|234978|234979|234980|234981|234982|234983|234984|234985|234986|234987|234988|234989|234990|234991|234992|234993|234994|234995|234996|234997|234998|234999|235000|235001|235002|235003|235004|235005|235006|235007|235008|235009|235010|235011|235012|235013|235014|235015|235016|235017|235018|235019|235020|235021|235022|235023|235024|235025|235026|235027|235028|235029|235030|235031|235032|235033|235034|235035|235036|235037|235038|235039|235040|235041|235042|235043|235044|235045|235046|235047|235048|235049|235050|235051|235052|235053|235054|235055|235056|235057|235058|235059|235060|235061|235062|235063|235064|235065|235066|235067|235068|235069|235070|235071|235072|235073|235074|235075|235076|235077|235078|235079|235080|235081|235082|235083|235084|235085|235086|235087|235088|235089|235090|235091|235092|235093|235094|235095|235096|235097|235098|235099|235100|235101|235102|235103|235104|235105|235106|235107|235108|235109|235110|235111|235112|235113|235114|235115|235116|235117|235118|235119|235120|235121|235122|235123|235124|235125|235126|235127|235128|235129|235130|235131|235132|235133|235134|235135|235136|235137|235138|235139|235140|235141|235142|235143|235144|235145|235146|235147|235148|235149|235150|235151|235152|235153|235154|235155|235156|235157|235158|235159|235160|235161|235162|235163|235164|235165|235166|235167|235168|235169|235170|235171|235172|235173|235174|235175|235176|235177|235178|235179|235180|235181|235182|235183|235184|235185|235186|235187|235188|235189|235190|235191|235192|235193|235194|235195|235196|235197|235198|235199|235200|235201|235202|235203|235204|235205|235206|235207|235208|235209|235210|235211|235212|235213|235214|235215|235216|235217|235218|235219|235220|235221|235222|235223|235224|235225|235226|235227|235228|235229|235230|235231|235232|235233|235234|235235|235236|235237|235238|235239|235240|235241|235242|235243|235244|235245|235246|235247|235248|235249|235250|235251|235252|235253|235254|235255|235256|235257|235258|235259|235260|235261|235262|235263|235264|235265|235266|235267|235268|235269|235270|235271|235272|235273|235274|235275|235276|235277|235278|235279|235280|235281|235282|235283|235284|235285|235286|235287|235288|235289|235290|235291|235292|235293|235294|235295|235296|235297|235298|235299|235300|235301|235302|235303|235304|235305|235306|235307|235308|235309|235310|235311|235312|235313|235314|235315|235316|235317|235318|235319|235320|235321|235322|235323|235324|235325|235326|235327|235328|235329|235330|235331|235332|235333|235334|235335|235336|235337|235338|235339|235340|235341|235342|235343|235344|235345|235346|235347|235348|235349|235350|235351|235352|235353|235354|235355|235356|235357|235358|235359|235360|235361|235362|235363|235364|235365|235366|235367|235368|235369|235370|235371|235372|235373|235374|235375|235376|235377|235378|235379|235380|235381|235382|235383|235384|235385|235386|235387|235388|235389|235390|235391|235392|235393|235394|235395|235396|235397|235398|235399|235400|235401|235402|235403|235404|235405|235406|235407|235408|235409|235410|235411|235412|235413|235414|235415|235416|235417|235418|235419|235420|235421|235422|235423|235424|235425|235426|235427|235428|235429|235430|235431|235432|235433|235434|235435|235436|235437|235438|235439|235440|235441|235442|235443|235444|235445|235446|235447|235448|235449|235450|235451|235452|235453|235454|235455|235456|235457|235458|235459|235460|235461|235462|235463|235464|235465|235466|235467|235468|235469|235470|235471|235472|235473|235474|235475|235476|235477|235478|235479|235480|235481|235482|235483|235484|235485|235486|235488|235489|235490|235491|235492|235493|235494|235495|235496|235497|235498|235499|235500|235501|235502|235503|235504|235505|235506|235507|235508|235509|235510|235511|235512|235513|235514|235515|235516|235517|235518|235519|235520|235521|235522|235523|235524|235525|235526|235527|235528|235529|235530|235531|235532|235533|235534|235535|235536|235537|235538|235539|235540|235541|235542|235543|235544|235545|235546|235547|235548|235549|235550|235551|235552|235553|235554|235555|235556|235557|235558|235559|235560|235561|235562|235563|235564|235565|235566|235567|235568|235569|235570|235571|235572|235573|235574|235575|235576|235577|235578|235579|235580|235581|235582|235583|235584|235585|235586|235587|235588|235589|235590|235591|235592|235593|235594|235595|235596|235597|235598|235599|235600|235601|235602|235603|235604|235605|235606|235607|235608|235609|235610|235611|235612|235613|235614|235615|235616|235617|235618|235619|235620|235621|235622|235623|235624|235625|235626|235627|235628|235629|235630|235631|235632|235633|235634|235635|235636|235637|235638|235639|235640|235641|235642|235643|235644|235645|235646|235647|235648|235649|235650|235651|235652|235653|235654|235655|235656|235657|235658|235659|235660|235661|235662|235663|235664|235665|235666|235667|235668|235669|235670|235671|235672|235673|235674|235675|235676|235677|235678|235679|235680|235681|235682|235683|235684|235685|235686|235687|235688|235689|235690|235691|235692|235693|235694|235695|235696|235697|235698|235699|235700|235701|235702|235703|235704|235705|235706|235707|235708|235709|235710|235711|235712|235713|235714|235715|235716|235717|235718|235719|235720|235721|235722|235723|235724|235725|235726|235727|235728|235729|235730|235731|235732|235733|235734|235735|235736|235737|235738|235739|235740|235741|235742|235743|235744|235745|235746|235747|235748|235749|235750|235751|235752|235753|235754|235755|235756|235757|235758|235759|235760|235761|235762|235763|235764|235765|235766|235767|235768|235769|235770|235771|235772|235773|235774|235775|235776|235777|235778|235779|235780|235781|235782|235783|235784|235785|235786|235787|235788|235789|235790|235791|235792|235793|235794|235795|235796|235797|235798|235799|235800|235801|235802|235803|235804|235805|235806|235807|235808|235809|235810|235811|235812|235813|235814|235815|235816|235817|235818|235819|235820|235821|235822|235823|235824|235825|235826|235827|235828|235829|235830|235831|235832|235833|235834|235835|235836|235837|235838|235839|235840|235841|235842|235843|235844|235845|235846|235847|235848|235849|235850|235851|235852|235853|235854|235855|235856|235857|235858|235859|235860|235861|235862|235863|235864|235865|235866|235867|235868|235869|235870|235871|235872|235873|235874|235875|235876|235877|235878|235879|235880|235881|235882|235883|235884|235885|235886|235887|235888|235889|235890|235891|235892|235893|235894|235895|235896|235897|235898|235899|235900|235901|235902|235903|235904|235905|235906|235907|235908|235909|235910|235911|235912|235913|235914|235915|235916|235917|235918|235919|235920|235921|235922|235923|235924|235925|235926|235927|235928|235929|235930|235931|235932|235933|235934|235935|235936|235937|235938|235939|235940|235941|235942|235943|235944|235945|235946|235947|235948|235949|235950|235951|235952|235953|235954|235955|235956|235957|235958|235959|235960|235961|235962|235963|235964|235965|235966|235967|235968|235969|235970|235971|235972|235973|235974|235975|235976|235977|235978|235979|235980|235981|235982|235983|235984|235985|235986|235987|235988|235989|235990|235991|235992|235993|235994|235995|235996|235997|235998|235999|236000|236001|236002|236003|236004|236005|236006|236007|236008|236009|236010|236011|236012|236013|236014|236015|236016|236017|236018|236019|236020|236021|236022|236023|236024|236025|236026|236027|236028|236029|236030|236031|236032|236033|236034|236035|236036|236037|236038|236039|236040|236041|236042|236043|236044|236045|236046|236047|236048|236049|236050|236051|236052|236053|236054|236055|236056|236057|236058|236059|236060|236061|236062|236063|236064|236065|236066|236067|236068|236069|236070|236071|236072|236073|236074|236075|236076|236077|236078|236079|236080|236081|236082|236083|236084|236085|236086|236087|236088|236089|236090|236091|236092|236093|236094|236095|236096|236097|236098|236099|236100|236101|236102|236103|236104|236105|236106|236107|236108|236109|236110|236111|236112|236113|236114|236115|236116|236117|236118|236119|236120|236121|236122|236123|236124|236125|236126|236127|236128|236129|236130|236131|236132|236133|236134|236135|236136|236137|236138|236139|236140|236141|236142|236143|236144|236145|236146|236147|236148|236149|236150|236151|236152|236153|236154|236155|236156|236157|236158|236159|236160|236161|236162|236163|236164|236165|236166|236167|236168|236169|236170|236171|236172|236173|236174|236175|236176|236177|236178|236179|236180|236181|236182|236183|236184|236185|236186|236187|236188|236189|236190|236191|236192|236193|236194|236195|236196|236197|236198|236199|236200|236201|236202|236203|236204|236205|236206|236207|236208|236209|236210|236211|236212|236213|236214|236215|236216|236217|236218|236219|236220|236221|236222|236223|236224|236225|236226|236227|236228|236229|236230|236231|236232|236233|236234|236235|236236|236237|236238|236239|236240|236241|236242|236243|236244|236245|236246|236247|236248|236249|236250|236251|236252|236253|236254|236255|236256|236257|236258|236259|236260|236261|236262|236263|236264|236265|236266|236267|236268|236269|236270|236271|236272|236273|236274|236275|236276|236277|236278|236279|236280|236281|236282|236283|236284|236285|236286|236287|236288|236289|236290|236291|236292|236293|236294|236295|236296|236297|236298|236299|236300|236301|236302|236303|236304|236305|236306|236307|236308|236309|236310|236311|236312|236313|236314|236315|236316|236317|236318|236319|236320|236321|236322|236323|236324|236325|236326|236327|236328|236329|236330|236331|236332|236333|236334|236335|236336|236337|236338|236339|236340|236341|236342|236343|236344|236345|236346|236347|236348|236349|236350|236351|236352|236353|236354|236355|236356|236357|236358|236359|236360|236361|236362|236363|236364|236365|236366|236367|236368|236369|236370|236371|236372|236373|236374|236375|236376|236377|236378|236379|236380|236381|236382|236383|236384|236385|236386|236387|236388|236389|236390|236391|236392|236393|236394|236395|236396|236397|236398|236399|236400|236401|236402|236403|236404|236405|236406|236407|236408|236409|236410|236411|236412|236413|236414|236415|236416|236417|236418|236419|236420|236421|236422|236423|236424|236425|236426|236427|236428|236429|236430|236431|236432|236433|236434|236435|236436|236437|236438|236439|236440|236441|236442|236443|236444|236445|236446|236447|236448|236449|236450|236451|236452|236453|236454|236455|236456|236457|236458|236459|236460|236461|236462|236463|236464|236465|236466|236467|236468|236469|236470|236471|236472|236473|236474|236475|236476|236477|236478|236479|236480|236481|236482|236483|236484|236485|236486|236487|236488|236489|236490|236491|236492|236493|236494|236495|236496|236497|236498|236499|236500|236501|236502|236503|236504|236505|236506|236507|236508|236509|236510|236511|236512|236513|236514|236515|236516|236517|236518|236519|236520|236521|236522|236523|236524|236525|236526|236527|236528|236529|236530|236531|236532|236533|236534|236535|236536|236537|236538|236539|236540|236541|236542|236543|236544|236545|236546|236547|236548|236549|236550|236551|236552|236553|236554|236555|236556|236557|236558|236559|236560|236561|236562|236563|236564|236565|236566|236567|236568|236569|236570|236571|236572|236573|236574|236575|236576|236577|236578|236579|236580|236581|236582|236583|236585|236586|236587|236588|236589|236590|236591|236592|236593|236594|236595|236596|236597|236598|236599|236600|236601|236602|236603|236604|236605|236606|236607|236608|236609|236610|236611|236612|236613|236614|236615|236616|236617|236618|236619|236620|236621|236622|236623|236624|236625|236626|236627|236628|236629|236630|236631|236632|236633|236634|236635|236636|236637|236638|236639|236640|236641|236642|236643|236644|236645|236646|236647|236648|236649|236650|236651|236652|236653|236654|236655|236656|236657|236658|236659|236660|236661|236662|236663|236664|236665|236666|236667|236668|236669|236670|236671|236672|236673|236674|236675|236676|236677|236678|236679|236680|236681|236682|236683|236684|236685|236686|236687|236688|236689|236690|236691|236692|236693|236694|236695|236696|236697|236698|236699|236700|236701|236702|236703|236704|236705|236706|236707|236708|236709|236710|236711|236712|236713|236714|236715|237021|237216|237261|237521|237817|237818|237823|237833|238161|238162|238163|238167|238171|238173|238174|238175|238177|238178|238179|238181|238182|238187|238190|238194|238199|238204|238205|238207|238253|238254|238260|238311|238312|238314|238315|238316|238318|238319|238320|238321|238322|238324|238325|238327|238328|238330|238331|238333|238620|238622|238624|238628|238629|238632|238635|238638|238639|238640|238641|238642|238643|238644|238645|238646|238648|238649|238650|238651|238652|238653|238654|238655|238656|238704|238706|238715|238721|238722|238723|238724|238726|238734|238737|238738|238743|238744|238748|238756|238759|238762|238781|238802|238804|238806|238807|238808|238809|238810|238814|238819|238820|238821|238822|238823|238826|238827|238828|238834|238835|238836|238837|238839|238841|238842|238844|238845|238849|238850|238851|238852|238853|238854|238862|238864|238865|238866|238867|238868|238869|238872|238873|238875|238876|238877|238878|238880|238882|238883|238884|238887|238889|238892|238893|238896|238900|238901|238902|238904|238905|238907|238908|238909|238910|238911|238912|238913|238914|238916|238918|238919|238921|238922|238923|238924|238925|238926|238929|238930|238933|238937|238938|238939|238940|238941|238942|238944|238946|238950|238951|238956|238957|238958|238959|239022|239023|239024|239026|239027|239028|239043|239045|239046|239048|239049|239050|239052|239053|239140|239146|239147|239148|239150|239152|239153|239154|239155|239156|239159|239160|239162|239168|239169|239170|239171|239172|239174|239175|239176|239177|239179|239180|239182|239183|239184|239185|239186|239187|239189|239190|239258|239259|239260|239261|239262|239263|239264|239265|239266|239267|239268|239269|239270|239271|239272|239273|239275|239276|239278|239280|239281|239282|239283|239285|239286|239287|239357|239358|239359|239360|239362|239363|239365|239366|239368|239369|239370|239372|239373|239374|239375|239379|239380|239383|239384|239388|239390|239394|239398|239405|239406|239407|239408|239410|239412|239414|239417|239421|239425|239426|239428|239429|239430|239431|239432|239436|239437|239439|239440|239441|239442|239444|239445|239446|239451|239455|239458|239461|239463|239464|239466|239468|239471|239474|239476|239477|239478|239482|239483|239486|239488|239491|239493|239495|239499|239518|239522|239524|239526|239528|239529|239530|239531|239532|239533|239534|239535|239536|239538|239539|239543|239544|239545|239547|239552|239553|239554|239555|239558|239559|239560|239562|239564|239565|239566|239567|239568|239569|239570|239572|239573|239575|239579|239580|239582|239586|239587|239588|239589|239590|239591|239593|239596|239597|239598|239600|239602|239603|239604|239605|239606|239607|239609|239610|239611|239612|239613|239614|239615|239619|239620|239622|239623|239678|239679|239681|239682|239683|239684|239687|239688|239689|239691|239692|239693|239694|239695|239696|239697|239698|239699|239700|239701|239702|239703|239704|239705|239706|239707|239708|239709|239710|239711|239712|239713|239714|239715|239716|239750|239751|239755|239756|239757|239759|239760|239796|239799|239800|239802|239803|239804|239805|239806|239808|239811|239816|239817|239819|239820|239821|239823|239824|239825|239827|239828|239829|239830|239831|239832|239833|239836|239839|239841|239842|239843|239845|239846|239848|240014|240015|240017|240109|240110|240114|240116|240117|240119|240121|240123|240124|240126|240128|240130|240131|240133|240134|240135|240136|240138|240139|240140|240142|240145|240146|240147|240148|240149|240150|240151|240152|240154|240155|240157|240403|240405|240406|240407|240409|240411|240412|240413|240415|240417|240418|240419|240423|240425|240427|240428|240429|240430|240431|240432|240472|240474|240476|240477|240481|240482|240483|240485|240490|240491|240492|240493|240498|240500|240501|240502|240503|240504|240505|240507|240509|240510|240593|240594|240595|240596|240597|240598|240600|240602|240603|240605|240628|240630|240631|240635|240636|240638|240642|240644|240646|240647|240648|240649|240650|240651|240653|240654|240655|240656|240657|240659|240660|240661|240662|240666|240673|240674|240675|240676|240678|240679|240680|240681|240684|240685|240689|240690|240691|240693|240694|240699|240700|240701|240702|240704|240705|240706|240707|240708|240709|240710|240711|240712|240713|240715|240716|240721|240722|240723|240724|240725|240726|240727|240728|240729|240730|240731|240732|240784|240786|240787|240790|240792|240794|240795|240797|240801|240802|240803|240805|240806|240808|240809|240810|240811|240815|240852|240853|240854|240856|240861|240863|240864|240866|240867|240876|240877|240879|240884|240886|240889|240905|240906|240907|240908|240911|240912|240913|240914|240916|240917|240918|240919|240920|240921|240922|240924|240926|240927|240928|240930|240931|240933|240934|240935|240936|240937|240939|240941|240944|240945|240947|240948|240951|240953|240954|240955|240956|240957|240958|240961|240963|240964|240965|240966|240969|240971|240972|240977|240978|240980|240981|240982|240983|240984|240990|240993|240998|240999|241002|241003|241005|241008|241010|241011|241013|241014|241015|241016|241017|241018|241020|241021|241023|241025|241027|241028|241029|241030|241033|241034|241035|241036|241037|241039|241044|241047|241049|241051|241161|241162|241167|241168|241170|241171|241172|241173|241178|241182|241184|241185|241188|241190|241191|241194|241197|241198|241203|241208|241210|241211|241250|241251|241252|241254|241255|241258|241259|241260|241261|241263|241268|241270|241271|241274|241277|241278|241281|241283|241294|241298|241300|241303|241304|241309|241310|241313|241315|241318|241321|241322|241323|241334|241336|241344|241345|241346|241348|241349|241352|241358|241359|241362|241367|241369|241370|241372|241373|241382|241387|241389|241392|241393|241394|241395|241399|241400|241401|241406|241407|241408|241411|241412|241413|241414|241415|241419|241423|241425|241426|241430|241431|241432|241434|241435|241437|241438|241439|241440|241441|241442|241447|241448|241449|241450|241452|241454|241457|241458|241462|241465|241466|241467|241469|241470|241471|241472|241473|241475|241476|241477|241478|241479|241481|241482|241483|241484|241485|241486|241487|241490|241491|241495|241499|241503|241506|241507|241508|241509|241511|241512|241513|241514|241515|241516|241517|241518|241519|241525|241527|241572|241573|241574|241633|241636|241637|241638|241640|241641|241642|241645|241646|241648|241649|241655|241656|241659|241660|241663|241664|241670|241671|241672|241673|241674|241676|241678|241680|241681|241685|241687|241688|241689|241690|241693|241694|241699|241702|241704|241705|241710|241713|241715|241720|241723|241728|241729|241741|241742|241743|241744|241746|241748|241750|241752|241754|241759|241761|241762|241855|241856|241857|241898|241901|241903|241904|241907|241908|241909|241910|241912|241913|241914|241915|241917|241918|241920|241922|241923|241924|241925|241930|241931|241935|241936|241937|241940|241941|241943|241944|241945|241946|241947|241951|241952|241954|241955|241956|241957|241960|241961|241963|241964|241965|241966|241967|241968|241969|241971|241972|241974|241975|241976|241977|241978|241979|241980|241981|241982|241983|241984|241985|241986|241989|241991|241992|241993|241994|241995|241996|241997|241999|242000|242001|242002|242003|242004|242005|242008|242010|242011|242014|242016|242017|242018|242019|242021|242022|242146|242148|242150|242152|242153|242154|242155|242156|242158|242160|242161|242162|242164|242165|242166|242169|242172|242173|242174|242204|242206|242207|242208|242209|242213|242214|242215|242217|242218|242220|242224|242226|242228|242231|242232|242240|242242|242243|242244|242245|242246|242247|242249|242251|242253|242254|242257|242258|242269|242272|242273|242277|242278|242281|242282|242287|242291|242292|242294|242296|242299|242305|242306|242309|242311|242315|242318|242319|242320|242323|242326|242327|242329|242331|242336|242339|242342|242344|242345|242346|242349|242351|242352|242354|242355|242356|242358|242359|242362|242363|242364|242365|242367|242369|242370|242371|242372|242373|242374|242375|242376|242377|242379|242381|242382|242384|242386|242387|242389|242390|242391|242392|242393|242394|242395|242448|242450|242451|242453|242454|242455|242456|242458|242459|242460|242461|242462|242463|242467|242468|242469|242470|242472|242474|242478|242479|242480|242482|242484|242485|242487|242488|242489|242490|242596|242597|242598|242599|242601|242605|242606|242607|242608|242609|242611|242613|242614|242618|242622|242623|242624|242625|242627|242628|242629|242632|242633|242635|242637|242644|242645|242646|242647|242651|242652|242653|242661|242664|242670|242671|242675|242678|242681|242684|242685|242687|242688|242689|242691|242692|242693|242694|242698|242699|242700|242703|242708|242712|242714|242717|242718|242719|242720|242722|242723|242725|242728|242729|242731|242732|242736|242737|242738|242739|242743|242745|242746|242755|242758|242759|242760|242761|242767|242768|242770|242771|242774|242775|242777|242781|242782|242783|242784|242785|242788|242789|242791|242794|242798|242799|242800|242802|242804|242806|242808|242809|242810|242813|242817|242818|242828|242829|242830|242832|242833|242834|242835|242836|242837|242840|242843|242845|242846|242847|242849|242850|242851|242852|242853|242855|242856|242857|242858|242859|242860|242862|242863|242864|242865|242866|242867|242868|242869|242871|242873|242874|242875|242876|242877|242878|242880|242881|242883|242886|242889|242894|242897|242899|242900|242901|242902|242903|242908|242912|242913|242914|242916|242917|242918|242923|242924|242925|242927|242929|242930|242934|242937|242939|242942|242947|242955|242958|242959|242960|242961|242962|242964|242976|242978|242979|242982|242984|242986|242987|242988|242991|242992|242993|242994|243062|243063|243064|243065|243068|243070|243071|243072|243075|243076|243077|243083|243084|243085|243087|243088|243089|243092|243094|243095|243096|243097|243098|243099|243100|243101|243102|243103|243104|243105|243107|243108|243109|243110|243111|243112|243113|243114|243116|243117|243118|243121|243122|243123|243124|243125|243126|243127|243128|243129|243130|243131|243132|243133|243134|243135|243136|243138|243139|243140|243142|243143|243144|243149|243150|243152|243153|243154|243155|243156|243157|243158|243159|243160|243161|243162|243163|243166|243168|243169|243170|243172|243173|243174|243175|243176|243177|243178|243179|243180|243181|243182|243183|243184|243185|243186|243189|243190|243191|243192|243193|243194|243195|243196|243197|243198|243200|243202|243203|243204|243206|243208|243209|243210|243211|243214|243216|243217|243218|243220|243221|243223|243224|243227|243228|243229|243231|243232|243233|243234|243235|243236|243237|243238|243239|243240|243242|243243|243244|243245|243246|243248|243249|243250|243251|243253|243256|243257|243258|243259|243263|243264|243286|243288|243289|243290|243291|243292|243295|243296|243299|243300|243301|243302|243303|243305|243307|243308|243309|243310|243387|243388|243389|243394|243395|243399|243401|243402|243405|243407|243408|243409|243410|243411|243413|243414|243415|243416|243417|243418|243420|243425|243427|243428|243429|243431|243432|243433|243434|243435|243436|243437|243439|243440|243441|243442|243443|243444|243446|243447|243448|243451|243453|243454|243455|243456|243458|243459|243460|243462|243466|243469|243474|243478|243480|243481|243482|243484|243487|243490|243493|243495|243498|243500|243501|243510|243511|243515|243517|243519|243522|243524|243527|243528|243531|243534|243535|243536|243538|243539|243540|243541|243542|243650|243652|243653|243657|243659|243660|243661|243662|243663|243664|243667|243668|243669|243670|243671|243673|243674|243676|243678|243679|243680|243682|243683|243684|243688|243689|243691|243692|243694|243696|243698|243699|244085|244266|244267|244268|244269|244270|244274|244275|244323|244325|244332|244333|244334|244335|244336|244337|244338|244339|244366|244370|244372|244373|244374|244376|244377|244378|244381|244382|244384|244386|244389|244390|244392|244393|244394|244395|244398|244404|244406|244407|244409|244415|244416|244417|244418|244419|244420|244421|244422|244425|244426|244427|244432|244433|244435|244437|244439|244440|244441|244448|244449|244450|244452|244453|244454|244455|244456|244457|244459|244460|244492|244497|244545|244547|244548|244549|244550|244561|244562|244563|244564|244565|244567|244568|244572|244575|244577|244578|244579|244581|244583|244587|244589|244591|244592|244594|244596|244599|244601|244603|244604|244606|244607|244610|244612|244614|244615|244616|244617|244618|244622|244625|244627|244629|244631|244632|244633|244637|244638|244640|244641|244642|244644|244645|244647|244648|244649|244650|244651|244652|244654|244657|244658|244734|244752|244753|244759|244761|244763|244769|244831|244832|244843|244844|244846|244847|244850|244851|244852|244856|244943|244944|244945|244946|244947|244948|244949|244950|244951|244954|244955|244956|244957|244958|244959|244960|244962|244963|244964|244966|244973|244976|244977|244978|244979|245014|245015|245016|245017|245019|245022|245025|245029|245030|245031|245032|245036|245037|245039|245041|245044|245045|245047|245051|245052|245054|245055|245056|245057|245058|245060|245061|245064|245065|245067|245069|245070|245071|245072|245073|245074|245077|245078|245095|245122|245145|245147|245148|245149|245151|245153|245228|245229|245232|245233|245235|245240|245244|245245|245246|245253|246787|246789|246791|246794|246796|246797|246801|246802|246803|246805|246811|246812|246815|246821|246822|246823|246824|246825|246827|246830|246837|246838|246842|246851|246853|246922|246925|247074|247086|247087|247090|247220|247223|247224|247226|247227|247228|247229|247235|247236|247245|247248|247249|247250|247254|247256|247257|247258|247260|247272|247273|247275|247281|247286|247288|247294|247303|247305|247306|247307|247308|247309|247310|247311|247312|247313|247314|247439|247645|247646|247652|247653|247654|247655|247656|247664|247671|247676|247773|248489|248819|248823|248826|248828|248829|248830|248833|248834|248835|248838|248840|248841|248843|248844|248846|248847|248848|248852|248855|248857|248858|248860|248861|248863|248866|248867|248868|248869|248876|248877|248880|248881|248883|248888|248910|248911|248914|248921|248926|248944|248957|248989|248990|248997|249003|249013|249014|249029|249059|249064|249065|249071|249079|249091|249108|249129|249133|249137|249160|249163|249168|249171|249179|249181|249194|250542|250543|250715|250718|250719|250720|250721|250722|250724|250742|251099|251242|251487|251488|251491|251492|251493|251495|251496|251497|251499|251502|251504|251505|251937|251940|251942|253192|253193|253596|253598|253602|253604|253609|253611|253612|253669|253765|253766|253895|253896|253901|253988|253989|254243|254274|254275|254276|254453|254847|255116|255117|255118|255119|255120|255121|255425|255486|255488|255499|255501|255855|256302|256350|256353|256354|256356|256357|256773|257196|257599|259659|259660|259662|259664|259718|259738|259740|259741|259746|259799|259801|259802|259868|259871|259924|259928|259947|259948|259949|259952|259956|259957|259960|259964|259967|259969|259971|259972|259973|259993|259998|259999|260013|260042|260044|260045|260046|260047|260094|260096|260098|260099|260102|260108|260110|260154|260170|260172|260192|260193|260207|260252|260253|260256|260260|260356|260357|260360|260999|261002|261062|261066|261086|261091|261097|261099|261102|261103|261115|261118|261128|261131|261132|261133|261139|261140|261152|261158|261164|261165|261167|261169|261174|261175|261181|261191|261200|261201|261206|261213|261221|261222|261227|261228|261233|261237|261244|261245|261249|261251|261260|261278|261281|261285|261303|261310|261322|261335|261341|261344|261350|261351|261361|261362|261370|261384|261393|261395|261413|261415|261428|261437|261445|261447|261468|261487|261488|261515|261542|261546|261556|261557|261560|261566|261577|261578|261588|261597|261598|261625|261634|261647|261657|261660|261677|261687|261691|261713|261721|261739|261765|261791|261796|261801|261807|261808|261821|261827|261831|261845|261866|261884|261888|261919|261929|261962|261965|261973|261977|262005|262100|262105|262396|262800|262826|262828|262835|262839|262840|262841|262844|262845|262846|262850|262860|262863|262917|262921|262924|262927|262940|262951|262979|262981|262987|262988|262989|263987|264011|264074|264174|264436|264437|264443|264490|264496|264514|264571|264580|264583|264620|264638|264675|264690|264696|264769|264776|264844|264992|265013|265016|265126|265458|265578|265621|265808|265860|266100|266152|266177|267576|267769|268678|269252|270565|270566|271247|271670|271777|271973|274074|274513|275350|275419|277358|278160|278420|280504|280523|281945|281954|282701|282711|285273|285971|286670|286681|286740|286754|286759|287600|287607|287611|287660|287661|287665|287667|288986|288988|288993|289007|289366|289376|289830|289831|290191|291187|291322|291708|292136|292137|292138|292145|293581|294022|294554|294906|294910|294911|294920|294922|294923|294924|294929|294932|294935|294942|294946|295537|295561|295571|295699|295700|295707|296697|296698|297296|297301|298468|298606|300412|300418|300427|300428|300432|300433|301609|301619|303497|303688|303695|306559|308997|309444|309605|311450|311622|312240|312246|312249|313766|314892|315369|315392|315393|315500|315514|316331|316332|316333|316337|317044|317057|317503|317506|317507|318044|318057|318058|318274|318276|319512|319918|320054|320126|320128|320156|320419|321388|321659|321664|321673|321676|321678|321939|321940|321947|321953|322066|322068|322103|322400|322402|322407|323654|323749|323752|324088|324621|324627|324639|324937|327101|327399|327448|327449|327454|327770|328022|328447|328620|328850|328859|329574|329576|329579|329839|330108|331127|331228|331230|331238|331637|332444|332588|333311|334162|334173|334406|334409|334891|335896|336780|336792|336793|336799|337612|337726|338049|339496|339511|339850|339978|340074|340085|340849|340855|340856|340862|340863|341537|342258|342264|342274|342534|342586|342599|342603|342611|342618|342786|343564|343740|344034|344038|344043|344046|344098|345291|345292|345444|346687|346910|346913|346931|346932|347302|347982|348124|348581|349279|349281|349283|349371|351197|351285|352340|357087|357089|357090|357092|357093|357656|357660|357662|357669|357670|357672|357673|357674|357835|357877|357884|357887|357894|357895|357898|357901|357902|357906|357907|357915|357917|357923|357924|357927|357929|358342|358343|358347|358349|358364|358365|358697|358698|358699|358701|358703|358704|358706|358712|358713|358716|358718|358719|358720|358721|358722|358723|358726|358727|358730|358732|358738|358739|358742|358743|358744|358747|358748|358759|358760|358761|358765|358766|358767|358768|358769|358770|358771|358772|358773|358776|358778|358779|358783|358784|358788|358794|358795|358797|358799|358801|358807|358816|358822|358826|358827|358832|358833|358838|358839|358846|358850|358864|358882|358889|358892|358895|358896|358898|358901|358902|358904|358905|358906|358909|358910|358911|358913|358914|358915|358916|358917|358918|358919|358920|358922|358923|358928|358934|358939|358941|358950|358952|358953|358956|358958|358959|358961|358962|358964|358967|358973|358974|358978|358979|358981|359004|359005|359006|359203|359309|359363|359365|359501|359650|359807|359852|359961|359964|360059|360264|360335|360358|360361|360415|360472|360500|360507|360512|360712|360716|360833|360925|361009|361011|361012|361014|361218|361561|361566|361610|361856|361857|361862|361870|361883|361947|362213|362216|362217|362804|362896|362938|362940|363133|363184|363185|363213|363216|363264|363388|363389|363438|363442|363443|363449|363450|363451|363452|363455|363458|363462|363463|363477|363479|363482|363483|363484|363485|363488|363490|363494|363497|363498|363505|363512|363513|363516|363521|363523|363524|363525|363528|363531|363533|363534|363535|363536|363537|363538|363539|363541|363546|363548|363555|363559|363563|363564|363566|363567|363569|363570|363571|363573|364161|364229|364940|365103|365239|365242|365243|365250|365259|365260|365263|365273|365295|365300|365303|365316|365318|365323|365326|365328|365335|365336|365350|365353|365360|366131|366135|366137|366139|366141|366146|366149|366154|366157|366303|366305|366314|366318|366319|366324|366328|366336|366337|366345|366369|366376|366377|366381|366384|366388|366396|366405|366411|366418|366420|366424|366430|366450|366456|366472|366473|366475|366477|366479|366480|366494|366501|366514|366518|366519|366527|366530|366535|366547|366549|366554|366556|366559|366577|366581|366582|366585|366620|366635|366641|366651|366666|366675|366676|366677|366678|366683|366685|366692|366696|366700|366701|366707|366710|366712|366715|366719|366721|366723|366728|366736|366739|366741|366744|366745|366748|366750|366753|366762|366766|366767|366768|366770|366771|366772|366773|366774|366775|366776|366777|366783|366785|366786|366787|366788|366792|366795|366796|366799|366802|366805|366811|366815|366825|366828|366848|366851|366853|366854|366859|366864|366865|366866|366962|366964|366965|366969|366971|367095|367100|367119|367124|367126|367127|367130|367133|367147|367155|367162|367167|367180|367182|367336|367382|367390|367392|367393|367397|367399|367400|367402|367404|367405|367407|367408|367410|367412|367418|367423|367425|367426|367430|367431|367434|367435|367437|367440|367442|367446|367447|367449|367450|367459|367460|367461|367463|367465|367471|367485|367486|367488|367498|367506|367519|367524|367533|367537|367554|367564|367569|367578|367579|367582|367587|367588|367689|367699|367708|367738|367746|367752|367755|367756|367758|367761|367763|367764|367766|367774|367780|367782|367792|367794|367796|367797|367800|367807|367808|367815|367822|368039|368041|368044|368048|368057|368059|368062|368067|368068|368073|368079|368081|368082|368083|368086|368089|368091|368098|368104|368110|368111|368114|368115|368117|368119|368120|368132|368137|368141|368145|368147|368160|368176|368177|368181|368189|368191|368193|368194|368196|368406|368416|368420|368424|368428|368429|368432|368446|368462|368470|368622|368721|368730|368733|369073|369079|369082|369171|369181|369184|369189|369192|369196|369206|369210|369222|369230|369234|369237|369240|369243|369246|369247|369280|369292|369293|369295|369296|369299|369306|369311|369313|369348|369353|369364|369365|369369|369373|369374|369378|369379|369381|369387|369404|369406|369520|369523|369531|369533|369541|369543|369554|369557|369585|369587|369601|369603|369604|369674|369675|369813|369823|369828|369830|369833|369836|369838|369872|369886|369890|370044|370048|370050|370054|370055|370064|370070|370087|370094|370341|370345|370351|370353|370363|370370|370375|370376|370385|370470|370471|370486|370508|370521|370522|370547|370551|370554|370742|370743|370755|370785|370787|370840|370845|370936|370943|370950|370951|370954|370957|370999|371026|371027|371037|371041|371042|371046|371068|371071|371084|371085|371093|371098|371100|371105|371106|371109|371121|371128|371143|371161|371164|371166|371175|371176|371183|371188|371189|371191|371193|371194|371198|371205|371209|371210|371212|371221|371222|371224|371226|371232|371246|371258|371286|371302|371373|371416|371418|371419|371514|371516|371522|371527|371528|371533|371539|371540|371543|371544|371551|371552|371556|371558|371560|371566|371587|371671|371701|371704|371712|371737|371741|371754|371759|371767|371769|371775|371777|371795|371804|371807|371814|371815|371819|371822|371830|371842|371843|371847|371853|371855|371856|371857|371862|371865|371869|371871|371876|371881|371885|371896|371898|371900|371908|371911|371912|371923|371934|371936|371941|371951|371953|371955|371962|371965|371969|371970|371971|371973|371977|371978|371979|371982|371983|371984|371988|371989|371991|371996|372000|372001|372006|372007|372017|372020|372022|372029|372030|372035|372036|372042|372043|372049|372050|372051|372054|372058|372060|372066|372067|372072|372074|372075|372079|372080|372081|372082|372086|372088|372089|372090|372105|372110|372111|372117|372120|372121|372122|372126|372130|372132|372135|372144|372250|372342|372400|372403|372406|372409|372410|372413|372418|372420|372516|372649|372667|372672|372673|372678|372683|372685|372689|372706|372709|372718|372727|372732|372734|372736|372739|372740|372741|372744|372750|372756|372758|372759|372763|372775|372780|372784|372788|372790|372791|372794|372802|372815|372818|372820|372823|372828|372836|372926|372929|372933|372935|372939|372946|372950|372952|372960|372980|372999|373012|373020|373029|373036|373046|373062|373070|373207|373213|373216|373217|373348|373354|373356|373382|373393|373401|373418|373422|373423|373434|373436|373445|373449|373452|373460|373461|373464|373473|373478|373497|373506|373516|373523|373524|373540|373543|373555|373560|373564|373565|373652|373657|373664|373666|373670|373672|373673|373678|373679|373681|373689|373691|373692|373694|373695|373698|373700|373703|373706|373709|373712|373719|373720|373727|373730|373731|373734|373736|373739|373743|373745|373747|373750|373756|373758|373759|373767|373768|373771|373773|373774|373777|373784|373785|373787|373794|373801|373806|373814|373815|373833|373835|373843|373847|373851|373866|374043|374066|374082|374094|374101|374116|374117|374118|374126|374135|374159|374160|374167|374175|374176|374252|374255|374274|374282|374287|374438|374440|374443|374447|374449|374452|374457|374459|374461|374464|374467|374476|374488|374490|374494|374495|374505|374509|374511|374520|374522|374533|374667|374680|374681|374684|374685|374708|374710|374712|374725|374729|374737|374748|374751|374753|374762|374777|374782|374783|374784|374792|374796|374799|374805|374809|374815|374819|374825|374826|374828|374834|374835|374840|374854|374860|374918|374921|374922|374923|374924|374928|374931|374934|374941|374949|374950|374958|374959|374964|374972|375041|375046|375071|375072|375081|375088|375090|375096|375098|375101|375102|375103|375105|375106|375112|375115|375128|375163|375175|375198|375199|375241|375246|375247|375250|375251|375257|375264|375266|375268|375271|375274|375286|375289|375294|375298|375300|375310|375311|375318|375322|375326|375328|375333|375334|375354|375372|375375|375378|375390|375393|375404|375412|375425|375426|375429|375434|375438|375441|375443|375451|375514|375523|375524|375528|375534|375537|375539|375544|375547|375548|375549|375552|375555|375567|375569|375571|375574|375576|375577|375592|375598|375612|375614|375616|375674|375712|375721|375723|375726|375730|375732|375779|375787|375835|375841|375864|375867|375868|375946|375952|375957|375958|375961|375974|375976|375977|375978|375979|375980|375982|375985|375986|375987|375992|375993|375995|375997|375999|376005|376009|376012|376031|376032|376035|376036|376082|376093|376095|376097|376098|376101|376102|376110|376122|376124|376127|376133|376143|376148|376156|376158|376160|376162|376165|376166|376262|376268|376305|376318|376323|376324|376327|376329|376330|376336|376340|376342|376343|376346|376351|376385|376386|376387|376389|376397|376410|376412|376414|376416|376419|376420|376421|376423|376428|376435|376441|376447|376449|376459|376460|376466|376478|376540|376581|376602|376604|376607|376613|376616|376631|376672|376676|376680|376684|376704|376705|376707|376709|376737|376740|376747|376782|376786|376790|376791|376824|376829|376831|376834|376836|376844|376845|376851|376860|376890|376896|376898|376902|376904|376908|376910|376914|377033|377035|377037|377041|377048|377072|377073|377090|377091|377096|377097|377110|377121|377132|377140|377149|377154|377170|377178|377183|377213|377215|377249|377260|377271|377274|377277|377278|377285|377287|377288|377294|377299|377307|377318|377323|377358|377362|377364|377365|377378|377380|377385|377394|377402|377422|377423|377425|377442|377447|377452|377456|377460|377635|377647|377655|377659|377662|377664|377665|377667|377670|377701|377708|377715|377719|377720|377725|377730|377734|377739|377747|377759|377760|377763|377769|377773|377775|377776|377780|377784|377794|377809|377811|377813|377839|377903|377905|377909|377922|377929|377931|377935|377936|377940|377942|377945|377947|377955|377960|377975|377980|377992|378032|378037|378042|378053|378057|378061|378085|378101|378123|378126|378131|378230|378236|378243|378261|378268|378278|378283|378285|378289|378296|378301|378537|378538|378546|378550|378562|378567|378571|378577|378581|378582|378586|378590|378592|378593|378599|378601|378604|378605|378621|378623|378649|378668|378677|378678|378681|378694|378701|378703|378724|378727|378736|378745|378749|378751|378753|378759|378781|378798|378799|378800|379022|379024|379030|379036|379040|379044|379045|379051|379055|379206|379207|379212|379215|379219|379220|379222|379229|379238|379255|379260|379622|379624|379626|379627|379628|379629|379630|379631|379634|379637|379638|379640|379642|379644|379647|379649|379651|379652|379654|379655|379658|379660|379825|379827|379828|379829|379831|379832|379835|379837|379839|379840|379846|380277|380449|380453|380455|380458|380461|380462|380464|380471|384402|389257|389258|389259|389260|389261|389262|389263|389264|389265|389266|389267|389268|389269|389270|389271|389272|389273|389274|389275|389276|389277|389278|389279|389280|389281|389282|389283|389284|389527|389696|390005|390037|390085|390089|390137|390209|390486|390688|390861|390864|390875|390877|390878|390886|390887|390888|390890|390892|390893|390894|390898|390899|390900|390901|390904|390908|390909|390914|390915|390917|390922|390923|390925|390928|390930|390931|390940|390947|390961|390964|390975|390982|391106|391108|391111|391116|391119|391130|391134|391139|391146|391156|391162|391164|391181|391200|391202|391269|391278|391286|391289|391291|391304|391307|391321|391324|391325|391329|391331|391335|391336|391337|391342|391354|391358|391367|391380|391385|391388|391391|391443|391446|391450|391461|391476|391496|391502|391517|392307|392309|392324|392331|392337|392341|392342|392346|392357|392395|392404|392411|392418|392419|392424|392435|392437|392440|392441|392449|392451|392463|392498|392499|392504|392511|392517|392519|392521|392524|392527|392529|392531|392538|392540|392543|392548|392556|392566|392571|392575|392577|392584|392587|392589|392594|392597|392601|392606|392607|392608|392613|392617|392621|392624|392627|392635|392650|392670|392672|392681|392685|392686|392690|392692|392696|392697|392698|392699|392700|392701|392702|392703|392709|392710|392718|392721|392730|392731|392735|392736|392738|392739|392747|392753|392755|392759|392760|392763|392767|392768|392774|392777|392779|392780|392793|392795|392800|392804|392805|392810|392813|392814|392817|392820|392825|392827|392829|392830|392832|392838|392840|392841|392842|392843|392848|392849|392851|392853|392855|392859|392860|392863|392867|392869|392876|392878|392879|392886|392888|392889|392892|392894|392898|392900|392902|392904|392907|392908|392909|392910|392912|392919|392922|392925|392926|392927|392928|392931|392934|392936|392937|392939|392945|392946|392947|392951|392952|392954|392956|392957|392958|392964|392966|392968|392969|392971|392974|392977|392982|392983|392984|392987|392988|392989|392990|392991|392993|392995|392998|392999|393000|393001|393003|393005|393007|393008|393009|393014|393019|393022|393024|393027|393029|393033|393034|393036|393040|393041|393042|393043|393044|393045|393046|393047|393051|393052|393054|393055|393057|393058|393062|393065|393069|393073|393074|393077|393078|393083|393084|393087|393089|393094|393095|393097|393101|393103|393108|393115|393117|393119|393122|393123|393124|393126|393127|393130|393132|393137|393139|393140|393148|393154|393155|393161|393164|393168|393170|393174|393176|393182|393184|393187|393192|393193|393196|393199|393201|393206|393207|393214|393216|393237|393246|393251|393253|393265|393268|393280|393284|393290|393295|393305|393318|393323|393336|393344|393348|393350|393356|393364|393366|393376|393377|393381|393382|393399|393422|393425|393428|393440|393442|393444|393459|393462|393464|393465|393470|393472|393478|393480|393482|393486|393488|393490|393493|393494|393496|393497|393512|393513|393526|393527|393528|393531|393535|393536|393539|393543|393548|393551|393564|393569|393654|393655|393663|393670|393676|393680|393681|393687|393690|393696|393697|393699|393700|393701|393703|393707|393708|393714|393715|393718|393719|393721|393722|393723|393725|393727|393728|393729|393736|393738|393741|393755|393832|393833|393834|393843|393850|393857|393864|393885|393887|393889|393892|393893|393895|393901|393902|393904|393905|393907|393908|393910|393911|393913|393914|393915|393918|393919|393920|393927|393929|393931|393936|393937|393942|393948|393949|393958|393964|393969|393980|393988|393996|394006|394036|394038|394041|394049|394071|394073|394081|394086|394098|394101|394104|394105|394107|394108|394120|394126|394131|394137|394138|394144|394150|394159|394160|394161|394165|394168|394170|394172|394175|394178|394184|394186|394188|394189|394193|394199|394201|394202|394203|394204|394218|394223|394227|394228|394230|394231|394234|394240|394243|394246|394251|394253|394257|394258|394267|394269|394276|394278|394285|394289|394290|394291|394294|394302|394312|394316|394317|394319|394321|394322|394324|394327|394329|394330|394331|394332|394333|394334|394335|394338|394341|394343|394345|394346|394347|394349|394350|394351|394353|394354|394355|394359|394363|394367|394368|394371|394374|394377|394382|394387|394389|394390|394391|394394|394395|394397|394399|394400|394401|394405|394408|394410|394411|394412|394413|394417|394418|394420|394421|394424|394425|394427|394429|394430|394432|394434|394435|394439|394441|394445|394446|394447|394448|394452|394455|394456|394459|394460|394462|394463|394465|394470|394471|394474|394475|394476|394480|394481|394482|394483|394485|394486|394488|394489|394492|394493|394494|394495|394504|394508|394509|394515|394516|394520|394521|394523|394525|394529|394530|394532|394534|394535|394540|394543|394545|394547|394548|394549|394551|394561|394564|394565|394567|394573|394577|394581|394585|394586|394590|394593|394594|394596|394597|394598|394602|394604|394605|394607|394609|394610|394614|394617|394622|394623|394625|394627|394632|394633|394636|394639|394640|394643|394644|394646|394647|394649|394652|394663|394665|394666|394667|394668|394669|394670|394671|394672|394673|394674|394675|394676|394677|394678|394679|394680|394681|394682|394684|394685|394687|394688|394690|394692|394694|394695|394697|394698|394699|394700|394701|394702|394703|394704|394706|394707|394708|394711|394712|394716|394717|394719|394721|394727|394729|394734|394735|394737|394738|394741|394743|394744|394750|394753|394754|394765|394772|394776|394777|394781|394782|394784|394787|394790|394792|394794|394795|394796|394798|394800|394801|394804|394806|394809|394812|394825|394830|394837|394843|394845|394856|394857|394858|394859|394860|394861|394862|394863|394864|394865|394868|394869|394871|394873|394875|394876|394877|394878|394880|394882|394884|394885|394888|394892|394893|394901|394907|394908|394909|394911|394912|394914|394916|394917|394923|394924|394926|394927|394929|394930|394932|394934|394935|394939|394942|394946|394947|394948|394950|394951|394952|394955|394960|394961|394969|394970|394974|394976|394982|394988|394989|394990|394993|394995|394997|395003|395004|395011|395029|395034|395035|395037|395039|395040|395043|395048|395067|395078|395088|395116|395160|395181|395185|395189|395195|395198|395200|395201|395205|395209|395211|395214|395215|395217|395225|395232|395234|395237|395242|395243|395250|395254|395256|395257|395260|395261|395262|395268|395273|395279|395280|395281|395283|395285|395288|395291|395292|395295|395297|395299|395301|395303|395304|395311|395315|395318|395319|395326|395332|395339|395355|395363|395366|395373|395381|395383|395389|395391|395394|395462|395463|395478|395488|395496|395503|395509|395513|395515|395517|395524|395525|395527|395531|395533|395570|395576|395581|395586|395589|395590|395593|395732|395736|395744|395745|395750|395752|395756|395769|395770|395790|395896|395899|395928|395932|395935|395940|395941|395953|395955|395958|395963|395971|395976|395978|395992|395999|396000|396001|396017|396023|396025|396037|396039|396044|396048|396052|396058|396061|396062|396064|396076|396087|396094|396095|396117|396118|396293|396297|396307|396313|396326|396333|396343|396344|396349|396350|396358|396360|396364|396366|396372|396375|396384|396398|396500|396503|396507|396511|396515|396521|396535|396536|396555|396559|396562|396567|396568|396575|396578|396580|396602|396613|396617|396622|396623|396633|396634|396635|396637|396694|396697|396701|396705|396708|396713|396715|396717|396720|396721|396725|396732|396752|396761|396769|396776|396784|396789|396825|396833|396841|396864|396868|396869|396875|396906|396910|396914|396921|396925|396927|396931|396932|396933|396934|396935|396936|396938|396939|396941|396942|396943|396954|396955|396958|396960|396962|396967|396971|396973|396974|396976|396979|396981|396984|396987|396988|396991|396994|396999|397014|397022|397023|397026|397031|397034|397037|397041|397052|397056|397058|397060|397062|397064|397065|397074|397075|397078|397082|397092|397098|397101|397103|397126|397130|397134|397146|397150|397163|397167|397168|397175|397179|397181|397182|397188|397198|397200|397205|397209|397210|397211|397212|397216|397218|397222|397224|397226|397236|397238|397244|397245|397246|397251|397252|397253|397258|397262|397264|397265|397266|397267|397268|397269|397271|397272|397275|397279|397281|397282|397284|397286|397287|397290|397294|397296|397298|397304|397314|397317|397335|397343|397348|397349|397351|397359|397361|397364|397365|397366|397376|397382|397390|397394|397402|397411|397412|397415|397429|397432|397433|397436|397438|397441|397442|397443|397444|397445|397448|397452|397453|397454|397456|397457|397461|397466|397469|397473|397474|397475|397479|397480|397481|397482|397484|397487|397488|397489|397492|397495|397498|397500|397501|397502|397503|397505|397507|397508|397510|397517|397520|397521|397524|397531|397532|397533|397535|397537|397560|397570|397574|397586|397594|397605|397606|397608|397614|397616|397617|397619|397623|397626|397628|397629|397636|397637|397645|397646|397648|397649|397650|397651|397653|397655|397656|397658|397660|397661|397662|397664|397665|397669|397671|397672|397674|397676|397679|397680|397683|397685|397686|397687|397688|397695|397696|397697|397699|397703|397704|397705|397706|397709|397710|397716|397718|397721|397727|397730|397735|397738|397745|397750|397754|397755|397758|397769|397770|397772|397778|397781|397784|397786|397788|397791|397792|397796|397797|397800|397802|397803|397806|397808|397809|397811|397812|397813|397814|397817|397819|397820|397822|397823|397825|397826|397829|397830|397831|397833|397845|397849|397850|397851|397852|397854|397855|397859|397861|397862|397864|397865|397870|397871|397872|397873|397875|397876|397879|397880|397882|397884|397885|397887|397889|397891|397893|397895|397896|397897|397900|397901|397903|397905|397906|397907|397909|397913|397914|397919|397920|397921|397922|397925|397926|397928|397929|397933|397936|397938|397941|397942|397943|397944|397945|397948|397949|397951|397954|397955|397960|397962|397965|397969|397972|397974|397980|397981|397983|397985|397991|397992|397996|397999|398002|398005|398008|398011|398012|398015|398016|398019|398022|398026|398027|398028|398029|398030|398032|398034|398035|398036|398037|398038|398041|398043|398044|398047|398049|398051|398057|398063|398068|398070|398076|398077|398078|398093|398105|398110|398113|398121|398133|398134|398137|398141|398143|398154|398162|398163|398166|398168|398170|398172|398173|398178|398183|398185|398190|398191|398195|398204|398209|398210|398211|398214|398221|398223|398225|398228|398230|398236|398238|398239|398241|398243|398244|398248|398249|398252|398257|398258|398260|398261|398266|398270|398271|398272|398274|398276|398282|398283|398284|398285|398286|398287|398288|398290|398292|398293|398294|398297|398299|398300|398302|398308|398311|398313|398314|398322|398323|398324|398326|398327|398329|398331|398332|398333|398334|398335|398338|398340|398341|398343|398350|398351|398352|398353|398354|398355|398356|398358|398359|398360|398361|398367|398369|398370|398371|398374|398377|398378|398379|398382|398383|398384|398391|398394|398395|398396|398400|398401|398408|398412|398424|398434|398439|398442|398450|398452|398454|398463|398467|398468|398472|398473|398474|398484|398496|398500|398503|398505|398508|398513|398519|398530|398539|398541|398542|398547|398548|398550|398561|398570|398573|398574|398576|398582|398603|398604|398610|398615|398643|398653|398672|398673|398674|398675|398690|398694|398696|398698|398702|398712|398713|398715|398733|398739|398740|398743|398750|398751|398756|398768|398775|398776|398778|398779|398782|398784|398785|398789|398796|398797|398800|398801|398804|398805|398807|398808|398819|398822|398825|398829|398839|398851|398857|398861|398863|398864|398870|398873|398877|398887|398888|398893|398894|398905|398906|398908|398910|398915|398924|398934|398935|398941|398942|398952|398954|398964|398973|398977|398979|398983|398987|398996|399004|399005|399007|399009|399011|399016|399019|399028|399037|399043|399044|399045|399046|399052|399062|399064|399129|399131|399133|399136|399137|399150|399152|399155|399156|399158|399161|399162|399172|399173|399179|399184|399190|399191|399192|399193|399197|399198|399199|399202|399203|399205|399207|399211|399216|399221|399225|399227|399230|399232|399234|399239|399248|399269|399270|399276|399283|399292|399294|399296|399299|399301|399305|399306|399308|399314|399319|399324|399326|399327|399331|399333|399334|399336|399338|399342|399347|399351|399354|399363|399364|399367|399369|399374|399378|399381|399387|399396|399400|399402|399406|399409|399411|399418|399427|399429|399430|399435|399437|399441|399455|399458|399460|399462|399465|399467|399468|399473|399474|399477|399485|399486|399493|399495|399496|399497|399500|399505|399513|399523|399524|399526|399529|399537|399541|399542|399543|399546|399547|399549|399554|399557|399559|399571|399583|399629|399646|399649|399651|399659|399665|399686|399697|399714|399715|399745|399752|399753|399754|399758|399761|399765|399771|399773|399774|399775|399778|399780|399782|399789|399791|399792|399794|399801|399802|399803|399805|399807|399809|399811|399813|399814|399819|399822|399823|399824|399826|399832|399835|399842|399845|399847|399854|399861|399864|399865|399867|399869|399870|399871|399878|399880|399881|399886|399887|399888|399889|399892|399893|399898|399899|399900|399902|399905|399906|399914|399927|399929|399947|399949|399951|399952|399954|399955|399957|399961|399963|399964|399966|399967|399969|399970|399971|399977|399978|399980|399985|399987|399988|399989|399992|399996|400000|400001|400002|400004|400005|400008|400009|400011|400013|400014|400015|400016|400021|400024|400025|400027|400029|400032|400035|400036|400041|400042|400044|400049|400050|400051|400059|400060|400061|400067|400068|400069|400077|400085|400092|400094|400102|400103|400105|400110|400112|400114|400115|400116|400117|400122|400123|400124|400125|400130|400132|400135|400137|400147|400150|400153|400154|400166|400168|400184|400191|400198|400202|400204|400241|400249|400300|400301|400319|400328|400334|400335|400338|400340|400352|400353|400354|400356|400361|400367|400372|400377|400378|400385|400388|400400|400403|400404|400413|400433|400434|400435|400437|400438|400441|400442|400445|400446|400448|400449|400452|400455|400461|400468|400473|400475|400477|400489|400501|400504|400507|400514|400551|400562|400573|400575|400586|400591|400596|400597|400602|400606|400611|400616|400617|400621|400625|400628|400635|400637|400638|400641|400645|400649|400650|400651|400652|400654|400663|400675|400678|400679|400681|400684|400695|400713|400716|400721|400722|400724|400726|400727|400728|400730|400746|400750|400757|400759|400764|400768|400772|400774|400777|400778|400779|400784|400787|400789|400790|400791|400792|400793|400794|400800|400801|400803|400808|400812|400816|400819|400821|400826|400827|400831|400832|400833|400836|400837|400838|400839|400843|400844|400848|400859|400861|400862|400864|400866|400873|400881|400884|400887|400888|400910|400923|400924|400926|400933|400935|400937|400938|400940|400942|400943|400944|400948|400951|400952|400953|400956|400959|400963|400964|400965|400966|400967|400969|400971|400976|400978|400979|400983|400985|400989|400992|400993|400995|400996|400999|401000|401001|401004|401005|401007|401010|401011|401012|401014|401017|401021|401024|401025|401027|401028|401029|401032|401038|401043|401049|401050|401056|401060|401063|401064|401070|401071|401075|401077|401081|401083|401085|401089|401094|401095|401101|401102|401109|401114|401115|401118|401122|401129|401133|401137|401141|401142|401146|401150|401155|401156|401165|401171|401200|401201|401204|401207|401211|401239|401243|401244|401251|401254|401257|401263|401264|401269|401270|401271|401273|401275|401279|401280|401282|401284|401285|401286|401292|401293|401294|401295|401296|401297|401298|401300|401301|401303|401305|401306|401307|401308|401312|401316|401320|401325|401328|401336|401339|401344|401369|401383|401394|401397|401401|401409|401414|401415|401418|401432|401433|401438|401441|401445|401449|401452|401455|401464|401468|401469|401470|401473|401474|401480|401481|401491|401495|401498|401501|401505|401513|401517|401518|401523|401524|401530|401531|401534|401535|401542|401545|401548|401550|401553|401554|401556|401557|401560|401561|401563|401564|401572|401577|401578|401580|401581|401582|401585|401586|401587|401589|401590|401592|401593|401597|401599|401602|401605|401608|401611|401614|401621|401629|401631|401634|401635|401637|401645|401653|401657|401664|401667|401671|401675|401680|401683|401685|401695|401696|401698|401709|401712|401716|401721|401724|401725|401726|401728|401730|401733|401734|401735|401739|401741|401743|401744|401746|401747|401753|401754|401759|401764|401765|401767|401768|401770|401771|401772|401773|401774|401775|401776|401778|401780|401781|401785|401786|401788|401793|401795|401796|401797|401799|401800|401801|401803|401804|401806|401816|401819|401820|401822|401823|401830|401837|401841|401842|401843|401845|401846|401847|401848|401850|401851|401853|401854|401855|401857|401862|401866|401872|401873|401878|401879|401881|401882|401883|401884|401890|401892|401893|401901|401906|401914|401915|401926|401932|401936|401937|401961|401971|401977|401980|401982|401985|401986|401997|402001|402005|402006|402007|402009|402012|402013|402017|402020|402022|402023|402024|402026|402027|402032|402037|402038|402039|402041|402042|402047|402048|402049|402054|402056|402059|402061|402062|402063|402071|402072|402073|402074|402076|402084|402089|402092|402093|402094|402095|402096|402097|402100|402108|402112|402119|402136|402145|402150|402153|402155|402158|402163|402164|402166|402167|402170|402172|402175|402178|402182|402183|402187|402188|402192|402193|402203|402205|402208|402209|402210|402211|402212|402215|402216|402217|402224|402226|402230|402235|402238|402243|402244|402245|402246|402251|402252|402254|402256|402263|402265|402269|402270|402271|402272|402274|402278|402280|402281|402285|402289|402290|402291|402293|402295|402296|402297|402298|402299|402300|402301|402305|402307|402312|402315|402317|402318|402319|402320|402322|402324|402325|402326|402328|402340|402342|402346|402348|402350|402353|402354|402356|402371|402377|402378|402379|402383|402387|402388|402390|402391|402394|402397|402398|402400|402405|402406|402410|402415|402416|402419|402422|402423|402425|402428|402429|402433|402434|402435|402437|402438|402448|402452|402453|402460|402465|402469|402470|402475|402476|402479|402481|402482|402488|402489|402490|402495|402497|402498|402499|402500|402512|402525|402532|402533|402534|402536|402542|402545|402548|402551|402552|402556|402557|402559|402560|402562|402563|402564|402565|402567|402568|402569|402571|402572|402574|402577|402578|402580|402581|402582|402588|402590|402595|402596|402601|402606|402607|402609|402611|402613|402615|402623|402626|402637|402640|402642|402643|402644|402646|402648|402649|402650|402651|402653|402655|402659|402661|402664|402667|402669|402671|402677|402680|402681|402686|402688|402693|402694|402696|402699|402701|402710|402718|402721|402729|402730|402732|402736|402740|402741|402742|402744|402746|402747|402748|402750|402752|402758|402759|402764|402765|402766|402767|402770|402774|402776|402777|402778|402781|402786|402789|402792|402798|402802|402803|402805|402806|402812|402814|402816|402818|402819|402823|402830|402837|402839|402847|402850|402851|402859|402861|402862|402865|402866|402867|402875|402876|402877|402878|402879|402880|402881|402882|402883|402887|402890|402891|402893|402894|402897|402898|402899|402900|402905|402907|402908|402909|402912|402913|402915|402916|402917|402918|402920|402921|402922|402923|402930|402931|402933|402934|402938|402941|402942|402951|402957|402958|402960|402961|402963|402964|402965|402966|402968|402971|402976|402977|402978|402989|402994|402998|403001|403005|403008|403010|403011|403013|403014|403015|403020|403021|403024|403025|403027|403029|403032|403033|403036|403038|403039|403040|403041|403045|403046|403047|403048|403049|403050|403051|403052|403053|403056|403057|403058|403060|403066|403070|403071|403078|403079|403080|403081|403085|403088|403092|403093|403096|403101|403102|403105|403108|403110|403111|403115|403125|403126|403127|403129|403141|403144|403145|403155|403156|403158|403162|403165|403166|403169|403178|403181|403182|403183|403186|403188|403190|403193|403194|403198|403207|403218|403225|403231|403296|403305|403307|403310|403312|403313|403315|403321|403325|403329|403331|403342|403346|403349|403352|403357|403359|403367|403373|403375|403382|403383|403386|403388|403393|403399|403401|403402|403403|403404|403406|403407|403408|403412|403413|403416|403419|403420|403422|403423|403424|403425|403426|403428|403429|403433|403435|403436|403437|403438|403440|403441|403443|403445|403446|403447|403448|403449|403451|403452|403453|403454|403455|403456|403459|403460|403461|403462|403463|403465|403468|403469|403473|403474|403475|403477|403479|403480|403481|403482|403484|403485|403486|403487|403488|403490|403492|403494|403495|403500|403507|403508|403509|403512|403515|403516|403517|403520|403521|403522|403524|403527|403528|403530|403532|403534|403538|403539|403541|403542|403543|403546|403547|403549|403552|403558|403560|403561|403562|403563|403569|403575|403576|403581|403588|403591|403613|403621|403622|403627|403631|403632|403633|403634|403640|403641|403648|403651|403660|403675|403677|403687|403773|403780|403782|403785|403789|403790|403793|403796|403807|403808|403819|403821|403823|403825|403829|403831|403832|403834|403836|403839|403840|403842|403843|403845|403849|403852|403853|403864|403865|403869|403872|403876|403877|403880|403883|403884|403885|403886|403890|403891|403892|403894|403895|403896|403898|403904|403905|403907|403910|403913|403915|403916|403918|403922|403924|403925|403928|403929|403930|403931|403932|403934|403935|403936|403938|403939|403940|403942|403944|403946|403976|403979|403986|403994|404005|404030|404032|404036|404039|404043|404063|404065|404081|404087|404313|404316|404319|404321|404326|404329|404332|404333|404334|404335|404337|404342|404345|404347|404348|404349|404352|404353|404355|404357|404359|404360|404361|404363|404364|404367|404368|404372|404377|404378|404379|404382|404384|404389|404394|404599|404604|404632|404700|404709|404710|404716|404981|405126|405128|405181|405183|405184|405188|405189|405195|405198|405199|405200|405201|405203|405204|405205|405206|405207|405208|405558|405559|405560|405561|405562|405563|405566|405568|405569|405570|405572|405577|405578|405579|405581|405582|405583|405584|405585|405586|405588|405594|405595|405596|405597|405598|405600|405603|405604|405605|405607|405608|405741|405743|405744|405748|405749|405750|405751|405752|405754|405755|405756|405759|405761|405762|405763|405765|405766|405767|405768|405769|405771|405772|405776|405780|405781|405782|405783|405784|405786|405787|405788|405790|405791|405792|405793|405797|405799|405800|405801|405802|405803|405806|405807|405809|405810|405812|405816|405817|405818|405825|405826|405829|405830|405831|405832|405833|405834|405836|405837|405838|405839|405843|405844|405845|405846|405847|405848|405850|405851|405854|405856|405861|405862|405864|405865|405866|405869|405870|405874|405878|405879|405880|405881|405883|405885|405886|405887|405890|405892|405893|405894|405895|405896|405897|405898|405900|405901|405903|405905|405906|405907|405909|405910|405911|405914|405916|405917|405919|405923|405924|405925|405926|405927|405928|405929|405930|405931|405932|405934|405936|405937|405939|405940|405942|405943|405947|405949|405950|405951|405952|405953|405959|405960|405961|405962|405963|405964|405965|405966|405967|405972|405973|405975|405976|405978|406057|406059|406062|406069|406074|406075|406190|406192|406194|406197|406198|406203|406207|406209|406210|406211|406213|406214|406216|406220|406221|406222|406224|406227|406233|406234|406236|406238|406240|406246|406247|406249|406250|406251|406255|406258|406259|406262|406342|406345|406479|406480|406481|406485|406488|406490|406491|406492|406493|406499|406500|406501|406502|406503|406504|406505|406506|406508|406509|406513|406515|406518|406519|406520|406522|406523|406525|406526|406528|406529|406532|406534|406535|406537|406542|406544|406546|406547|406550|406551|406552|406553|406555|406558|406560|406564|406565|406566|406567|406569|406575|406576|406577|406578|406579|406580|406581|406582|406583|406584|406585|406588|406590|406594|406595|406597|406598|406599|406600|406739|406740|406962|407080|407082|407085|407088|407090|407092|407093|407098|407102|407103|407104|407106|407108|407165|407167|407168|407169|407170|407171|407175|407176|407177|407179|407180|407181|407184|407185|407186|407188|407189|407190|407192|407196|407197|407198|407201|407203|407204|407205|407206|407207|407209|407210|407211|407212|407214|407217|407218|407221|407222|407224|407225|407226|407227|407229|407232|407234|407457|407459|407461|407462|407463|407464|407465|407467|407470|407472|407473|407475|407483|407484|407485|407489|407491|407492|407496|407497|407498|407499|407570|407649|407651|407654|407655|407659|407661|407664|407665|407673|407732|407733|407737|407738|407744|407749|407751|407754|407758|407759|407769|407770|407780|407856|407927|407929|407931|407932|407933|407934|407935|407938|407939|407941|407944|407945|407949|407952|407954|407955|407956|407957|407959|407960|407963|407964|407966|407973|407976|407977|407978|407982|407985|407987|407990|407991|407993|407994|407997|408002|408003|408004|408005|408010|408011|408012|408040|408042|408044|408047|408049|408051|408054|408055|408056|408060|408062|408063|408064|408066|408067|408072|408076|408078|408082|408083|408084|408085|408086|408087|408088|408089|408090|408091|408095|408096|408097|408099|408101|408102|408103|408104|408107|408108|408109|408110|408111|408113|408114|408117|408118|408119|408120|408121|408122|408126|408127|408133|408135|408138|408139|408141|408142|408143|408144|408148|408153|408155|408157|408160|408161|408162|408165|408169|408172|408176|408178|408179|408180|408182|408184|408185|408187|408190|408191|408192|408194|408195|408196|408200|408203|408204|408205|408210|408213|408214|408216|408221|408224|408225|408229|408230|408232|408234|408235|408236|408239|408240|408242|408243|408244|408245|408246|408247|408249|408251|408252|408254|408255|408257|408258|408259|408260|408262|408265|408270|408271|408405|408406|408412|408553|408561|408565|408569|408581|408585|408590|408591|408592|408724|408725|408726|408824|408825|408827|408828|408837|408839|408843|408844|408852|408855|408858|408862|408865|408866|408872|408873|408877|408880|408883|408884|408885|408887|408888|408889|408892|408896|408898|408899|408902|408905|408909|408910|408913|408914|408919|408921|408923|408931|408932|408934|408935|408937|408941|408942|408943|408946|408947|408948|408949|408951|408952|408953|408954|408955|408956|408959|408960|408965|408966|408967|408970|408977|408978|408980|408982|408985|408986|408987|408988|408990|408995|408996|408997|408999|409000|409001|409003|409006|409008|409010|409017|409019|409020|409030|409032|409393|409474|409488|409513|409514|409517|409518|409519|409522|409523|409525|409526|409528|409531|409532|409533|409535|409536|409539|409541|409547|409548|409551|409552|409554|409555|409556|409557|409559|409560|409564|409569|409573|409574|409670|409672|409674|409675|409676|409679|409681|409683|409686|409688|409690|409693|409694|409695|409696|409698|409699|409700|409702|409704|409706|409708|409709|409711|409712|409714|409715|409838|409860|409871|409875|409890|409891|409893|409894|409896|409900|409902|409906|409907|409908|409909|409913|409940|409941|409942|409946|409950|409955|409957|409959|409962|409967|409968|409973|409976|409982|409986|409988|409989|409998|409999|410002|410003|410006|410007|410008|410013|410014|410015|410018|410020|410023|410024|410025|410027|410030|410034|410090|410095|410097|410098|410102|410103|410106|410108|410112|410113|410114|410115|410118|410119|410120|410122|410125|410127|410128|410130|410133|410134|410136|410138|410139|410142|410145|410148|410152|410154|410155|410156|410157|410159|410163|410164|410180|410182|410188|410193|410199|410204|410249|410253|410256|410257|410258|410259|410263|410265|410266|410267|410269|410274|410278|410283|410284|410285|410379|410380|410382|410388|410389|410392|410393|410394|410395|410423|410438|410439|410440|410441|410442|410443|410451|410453|410454|410457|410458|410461|410462|410463|410464|410466|410468|410469|410675|410678|410683|410696|410697|410926|410927|410928|410930|410931|410932|410934|410935|410937|410938|410942|410945|410947|410948|410950|410953|410956|410957|410958|410960|410965|410967|410968|410970|410972|410973|410974|410975|413206|413325|413327|413356|413533|415247|415544|415548|415562|416231|416232|416234|416235|416240|416241|416244|416246|416248|416249|416256|416257|416267|416268|416272|416274|416277|416278|416282|416290|416294|416296|416299|416301|416305|416306|416308|416312|416315|416318|416322|416323|416330|416333|416334|416335|416337|416339|416340|416343|416344|416345|416346|416347|416348|416351|416353|416354|416356|416360|416362|416363|416366|416369|416370|416377|416382|416384|416388|416389|416392|416393|416396|416402|416404|416405|416411|416412|416413|416415|416419|416424|416429|416434|416436|416437|416438|416439|416444|416448|416453|416456|416457|416458|416459|416464|416466|416468|416474|416478|416482|416484|416490|416492|416494|416495|416496|416497|416498|416501|416503|416505|416509|416511|416514|416521|416522|416527|416529|416531|416534|416937|416938|416941|416943|416945|416949|416954|416961|416964|416969|416972|416981|419003|419299|419300|419301|419302|419303|419304|419306|419307|419309|419310|419311|419312|419313|419314|419315|419316|419317|419318|419319|419320|419321|419322|419323|419324|419325|419326|419327|419328|419329|419330|419331|419332|419333|419335|419336|419338|419339|419340|419341|419342|419344|419345|419346|419347|419348|419349|419350|419351|419352|419353|419355|419356|419357|419359|419360|419361|419363|419364|419365|419366|419367|419368|419369|419370|419371|419372|419374|419375|419377|419378|419379|419380|419381|419382|419383|419384|419385|419386|419387|419388|419389|419390|419392|419393|419394|419395|419396|419397|419398|419399|419400|419401|419402|419403|419404|419405|419406|419407|419408|419410|419412|419413|419414|419415|419416|419417|419418|419419|419420|419421|419422|419423|419424|419425|419426|419427|419428|419429|419430|419431|419432|419433|419434|419435|419436|419437|419438|419439|419440|419441|419442|419443|419444|419445|419446|419447|419448|419449|419450|419451|419452|419453|419454|419455|419456|419457|419458|419459|419460|419461|419462|419463|419464|419465|419466|419467|419468|419469|419470|419471|419472|419473|419474|419475|419476|419477|419478|419479|419480|419481|419482|419483|419484|419485|419486|419487|419488|419489|419490|419491|419492|419493|419494|419495|419496|419497|419498|419499|419500|419501|419502|419503|419504|419505|419506|419507|419508|419509|419510|419511|419512|419513|419514|419515|419516|419517|419518|419519|419520|419521|419522|419523|419524|419525|419526|419527|419528|419529|419530|419531|419532|419533|419534|419535|419536|419537|419538|419539|419540|419541|419542|419543|419544|419545|419546|419547|419548|419549|419550|419551|419552|419553|419555|419556|419557|419558|419559|419560|419561|419562|419563|419564|419565|419566|419567|419568|419569|419570|419571|419572|419573|419574|419575|419576|419577|419578|419579|419580|419581|419582|419583|419584|419585|419586|419587|419588|419589|419590|419591|419592|419593|419594|419595|419596|419597|419598|419599|419600|419601|419602|419603|419604|419605|419606|419607|419608|419609|419610|419611|419612|419613|419614|419615|419616|419617|419618|419619|419620|419621|419622|419623|419624|419625|419626|419627|419628|419629|419630|419631|419632|419633|419634|419635|419636|419637|419638|419639|419640|419641|419642|419643|419644|419645|419646|419647|419648|419649|419650|419651|419652|419653|419654|419655|419656|419657|419658|419659|419660|419661|419662|419663|419664|419665|419666|419667|419668|419669|419670|419671|419672|419673|419674|419675|419676|419677|419678|419679|419680|419681|419682|419683|419684|419685|419686|419687|419688|419689|419690|419691|419692|419693|419694|419695|419696|419697|419698|419699|419700|419701|419702|419703|419704|419705|419706|419707|419708|419709|419710|419711|419712|419713|419714|419715|419716|419717|419718|419719|419720|419721|419722|419723|419724|419725|419726|419727|419728|419729|419730|419731|419732|419733|419734|419735|419736|419737|419738|419739|419740|419741|419742|419743|419744|419745|419746|419747|419748|419749|419750|419751|419752|419753|419754|419755|419756|419757|419758|419759|419760|419761|419762|419763|419764|419765|419766|419767|419768|419769|419770|419771|419772|419773|419774|419775|419776|419777|419778|419779|419780|419781|419782|419783|419784|419785|419786|419787|419788|419789|419790|419791|419792|419793|419794|419795|419796|419797|419798|419799|419800|419801|419802|419803|419804|419805|419806|419807|419808|419809|419810|419811|419812|419813|419814|419815|419816|419817|419818|419819|419820|419821|419822|419823|419824|419825|419826|419827|419828|419829|419830|419831|419832|419833|419834|419835|419836|419837|419838|419839|419840|419841|419842|419843|419844|419845|419846|419847|419848|419849|419850|419851|419852|419853|419854|419855|419856|419857|419858|419859|419860|419861|419862|419863|419864|419865|419866|419867|419868|419869|419870|419871|419872|419873|419874|419875|419876|419877|419878|419879|420437|420438|420439|420440|420441|420442|420443|420444|420445|420446|420447|420448|420449|420450|420451|420452|420453|420454|420455|420456|420457|420458|420459|420460|420461|420462|420463|420464|420465|420466|420467|420468|420469|420470|420471|420473|420474|420475|420476|420477|420478|420479|420480|420481|420482|420483|420484|420485|420486|420487|420488|420489|420490|420491|420492|420493|420494|420495|420496|420497|420498|420499|420500|420501|420502|420503|420504|420505|420506|420507|420508|420509|420510|420511|420512|420513|420514|420515|420516|420517|420518|420519|420520|420521|420522|420523|420524|420525|420526|420527|420528|420529|420530|420531|420532|420533|420534|420535|420536|420537|420538|420539|420540|420541|420542|420543|420544|420545|420546|420547|420548|420549|420550|420551|420552|420553|420554|420555|420556|420557|420558|420559|420560|420561|420562|420563|420564|420565|420566|420567|420568|420569|420570|420571|420572|420573|420574|420575|420576|420577|420578|420579|420580|420581|420582|420583|420584|420585|420586|420587|420588|420589|420590|420591|420592|420593|420594|420595|420596|420597|420598|420599|420600|420601|420602|420603|420604|420605|420606|420607|420608|420609|420610|420611|420612|420613|420614|420615|420616|420617|420618|420619|420620|420621|420622|420623|420624|420625|420626|420627|420628|420629|420630|420631|420632|420633|420634|420635|420636|420637|420638|420639|420640|420641|420642|420643|420644|420645|420646|420647|420648|420649|420650|420651|420652|420653|420654|420655|420656|420657|420658|420659|420660|420661|420662|420663|420664|420665|420666|420667|420668|420669|420670|420671|420672|420673|420674|420675|420676|420677|420678|420679|420680|420681|420682|420683|420684|420685|420686|420687|420688|420689|420690|420691|420692|420693|420694|420695|420696|420697|420698|420699|420700|420701|420702|420704|420705|420706|420707|420708|420709|420710|420711|420712|420713|420714|420715|420716|420717|420718|420719|420720|420721|420722|420723|420724|420725|420726|420727|420728|420729|420730|420731|420732|420733|420734|420735|420736|420737|420738|420739|420740|420741|420742|420743|420744|420745|420746|420747|420748|420749|420750|420751|420752|420753|420754|420755|420756|420757|420758|420759|420760|420761|420762|420763|420764|420765|420766|420767|420768|420769|420770|420771|420772|420773|420774|420775|420776|420777|420778|420779|420780|420781|420782|420783|420784|420787|420788|420789|420790|420791|420792|420793|420794|420795|420796|420797|420798|420799|420800|420801|420802|420803|420804|420805|420806|420807|420808|420809|420810|420811|420812|420813|420814|420815|420816|420817|420818|420819|420820|420821|420822|420823|420824|420825|420826|420827|420828|420829|420830|420831|420832|420833|420834|420835|420836|420837|420838|420999|421000|421001|421002|421003|421004|421005|421006|421007|421008|421009|421010|421011|421012|421013|421014|421015|421016|421017|421018|421019|421020|421021|421022|421023|421024|421025|421026|421027|421028|421030|421031|421032|421033|421034|421035|421036|421037|421038|421039|421040|421041|421042|421043|421044|421045|421046|421047|421048|421049|421050|421051|421052|421053|421054|421055|421056|421057|421058|421059|421060|421062|421063|421064|421065|421066|421067|421068|421069|421070|421071|421072|421073|421074|421075|421076|421077|421078|421079|421080|421081|421082|421083|421084|421085|421086|421087|421088|421089|421090|421091|421092|421093|421094|421095|421096|421097|421098|421099|421100|421101|421102|421103|421104|421105|421106|421107|421108|421109|421110|421111|421112|421113|421114|421115|421116|421117|421118|421120|421121|421122|421123|421124|421125|421126|421127|421128|421129|421130|421131|421132|421133|421134|421135|421136|421137|421138|421139|421140|421141|421142|421507|421819|421821|421961|422156|422190|423239|423243|423245|424497|424705|424708|424712|424715|424727|424758|424765|424776|424778|424796|424801|424805|424809|424814|424822|424823|424829|424834|424851|424868|424878|424879|425096|425120|425138|425168|425175|425178|425187|425193|425874|425903|426153|426155|426213|426217|426277|426563|427132|427133|427152|427155|427163|427171|427176|427179|427181|427182|427183|427184|427185|427187|427206|427208|427222|427224|427242|427257|427260|427262|427264|427271|427305|427311|427314|427325|427326|427327|427333|427340|427343|427346|427352|427359|427365|427367|427368|427370|427378|427380|427384|427385|427387|427391|427393|427394|427396|427398|427400|427404|427409|427414|427415|427417|427419|427422|427438|427439|427527|427541|427542|427547|427554|427558|427560|427565|427568|427574|428061|428062|428667|428670|428671|428672|429167|429493|429494|429496|429749|429996|429997|429998|430119|430126|430553|430557|432026|432047|432370|432394|432415|432419|432491|432493|432494|432500|432501|432502|432503|432506|432507|432508|432511|432512|432515|432516|432519|432521|432522|432523|432525|432529|432530|432531|432534|432535|432537|432538|432559|432560|432561|432568|432570|432573|432575|432579|432585|432587|432588|432590|432601|432643|432646|432648|432650|432652|432653|432654|432655|432657|432658|432663|432667|432712|432715|432717|432718|432721|432722|432724|432728|432730|432731|432732|432734|432735|432737|432761|432763|432764|432765|432766|432768|432771|432777|432782|432787|432790|432791|432792|432795|432796|432798|432800|432802|432804|432805|432806|432809|432811|432812|432819|432821|432822|432828|432830|432834|432835|432878|432880|432881|432882|432883|432890|432891|432892|432895|432896|432901|432905|432906|432910|432916|432919|432924|432926|432927|432929|432930|432935|432936|432938|432941|432946|432953|432954|432966|432968|432969|432970|432971|433124|433262|433271|433272|433370|433376|433405|433702|433984|434038|434061|434084|434086|434942|434943|434944|434945|434946|434947|434948|434949|434950|434951|434952|434953|434954|434955|434956|434957|434958|434959|434960|434961|434962|434963|434964|434965|434966|434967|434968|434969|434970|434971|434972|434973|434974|434975|434976|434977|434978|434979|434980|434981|434982|434983|434984|434985|434986|434987|434988|434989|434990|434991|434992|434993|434994|434995|434996|434997|434998|434999|435000|435001|435002|435003|435004|435005|435006|435007|435008|435009|435010|435011|435012|435013|435014|435015|435016|435017|435018|435019|435020|435021|435022|435023|435024|435025|435026|435027|435028|435029|435030|435031|435032|435033|435034|435035|435036|435037|435038|435039|435040|435041|435042|435043|435044|435045|435046|435047|435048|435049|435050|435051|435052|435053|435054|435055|435056|435057|435058|435059|435060|435061|435062|435063|435064|435065|435066|435067|435068|435069|435070|435071|435072|435073|435074|435075|435076|435077|435078|435079|435080|435081|435082|435083|435084|435085|435086|435087|435088|435089|435090|435091|435092|435093|435094|435095|435096|435097|435098|435099|435100|435101|435102|435103|435104|435105|435106|435107|435108|435109|435110|435111|435112|435113|435114|435115|435116|435117|435118|435119|435120|435121|435122|435123|435124|435125|435126|435127|435129|435130|435131|435132|435133|435134|435135|435136|435137|435138|435139|435140|435141|435142|435143|435144|435145|435146|435147|435148|435149|435150|435151|435153|435154|435155|435156|435157|435158|435159|435160|435161|435162|435163|435164|435165|435166|435167|435168|435169|435170|435171|435172|435173|435174|435175|435176|435177|435178|435179|435180|435181|435182|435183|435184|437910|438036|438244|439582|441321|441487|441488|441798|442664|442858|443157|443254|443256|443258|443261|443263|443264|443266|443267|443268|443319|443417|443419|443421|443422|443423|443424|443425|443501|443782|444046|444050|444146|444147|444148|444308|444388|444464|444538|444540|444542|444543|444666|444667|444668|444669|444670|444672|444676|444704|444706|444711|444715|444716|444717|444719|444855|445140|445144|445471|445522|445523|445529|445530|445546|445548|445549|445600|445603|445604|445726|445735|445838|445840|445849|445901|446179|446383|446384|446385|446386|446387|446389|446390|446392|446393|447263|447286|447305|447326|447349|447380|447384|447390|447397|447403|447405|447417|447483|447485|447501|447515|447517|447547|447678|447679|447706|447713|447718|447916|447922|447932|447962|447967|447969|447973|447975|447990|448005|448007|448010|448018|448021|448023|448036|448042|448049|448052|448059|448064|448066|448085|448133|448143|448157|448166|448171|448179|448185|448191|448193|448200|448296|448316|448324|448329|448330|448335|448339|448341|448348|448352|450330|450333|450352|450355|450373|450377|450380|450463|450477|450481|450485|450486|450489|450504|450511|450515|450521|450523|450591|450599|450601|450603|450605|450613|450629|450630|450645|450647|450650|450653|450656|450657|450660|450664|450681|450688|450689|450691|450700|450731|450733|450819|450855|450893|450952|450955|450975|450984|451001|451003|451014|451016|451024|451025|451026|451028|451031|451040|451044|451048|451063|451066|451070|451073|451075|451079|451084|451088|451089|451092|451096|451103|451108|451111|451114|451120|451121|451123|451128|451131|451134|451141|451142|451156|451159|451165|451172|451176|451177|451178|451179|451181|451184|451193|451199|451201|451202|451208|451211|451213|451221|451223|451228|451233|451237|451240|451250|451251|451254|451259|451260|451261|451265|451266|451268|451269|451272|451273|451276|451277|451278|451287|451291|451293|451294|451296|451297|451298|451300|451309|451310|451313|451316|451317|451318|451320|451322|451327|451328|451332|451335|451338|451339|451346|451347|451350|451351|451352|451354|451355|451356|451361|451363|451364|451365|451369|451370|451371|451372|451379|451380|451381|451383|451386|451390|451395|451398|451401|451411|451412|451414|451415|451419|451423|451425|451427|451429|451432|451433|451439|451442|451445|451447|451448|451451|451456|451460|451470|451471|451474|451475|451478|451479|451481|451482|451484|451485|451493|451495|451498|451500|451501|451503|451504|451507|451509|451510|451514|451515|451518|451522|451523|451524|451526|451532|451537|451544|451547|451550|451551|451553|451555|451560|451568|451569|451573|451574|451575|451576|451579|451582|451587|451589|451594|451596|451601|451603|451605|451609|451615|451620|451622|451624|451630|451633|451653|451658|451664|451667|451670|451673|451675|451676|451678|451696|451698|451702|451755|451764|451766|451789|451838|451841|451846|451849|451863|451864|451866|451869|451876|451929|451963|452079|452087|452097|452101|452102|452106|452108|452120|452121|452125|452143|452148|452341|452343|452351|452354|452369|452371|452376|452382|452387|452389|452394|452400|452402|452407|452411|452433|452453|452458|452469|452477|452482|452528|452548|452563|452568|452578|452612|452620|452627|452645|452649|452665|452672|452676|452681|452693|452699|452700|452710|452712|452715|452717|452719|452721|452724|452730|452731|452732|452733|453013|453015|453017|453028|453029|453039|453044|453046|453048|453052|453054|453058|453060|453064|453065|453067|453068|453074|453076|453077|453083|453091|453095|453096|453098|453104|453167|453172|453174|453293|453309|453311|453336|453346|453351|453360|453366|453369|453377|453382|453388|453393|453396|453410|453423|453432|453445|453451|453488|453528|453540|453551|453553|453590|453619|453623|453640|453653|453655|453657|453685|453690|453711|453728|453757|453786|453809|453815|453826|453828|453829|453838|453842|453847|453853|453859|453862|453875|453876|453889|453897|453899|453900|453901|453910|453914|453915|453916|453922|453924|453926|453929|453930|453939|453955|453961|453972|453981|453983|454005|454016|454019|454026|454028|454031|454036|454037|454042|454043|454045|454048|454049|454050|454052|454057|454063|454068|454069|454070|454071|454075|454081|454083|454085|454089|454090|454093|454101|454103|454105|454106|454107|454113|454114|454119|454120|454122|454123|454128|454130|454136|454145|454146|454154|454155|454157|454166|454171|454182|454183|454184|454185|454188|454198|454200|454209|454213|454218|454221|454227|454229|454232|454233|454237|454240|454243|454248|454250|454252|454254|454255|454260|454262|454265|454268|454269|454277|454278|454280|454281|454288|454292|454294|454299|454302|454304|454318|454322|454332|454346|454355|454361|454380|454381|454383|454385|454386|454387|454391|454394|454398|454403|454405|454408|454410|454417|454420|454423|454425|454427|454433|454434|454437|454438|454439|454440|454444|454446|454450|454452|454454|454458|454462|454463|454464|454468|454471|454476|454478|454480|454482|454483|454484|454485|454487|454488|454489|454491|454492|454495|454496|454506|454511|454512|454516|454518|454520|454521|454522|454523|454524|454525|454526|454527|454529|454530|454532|454537|454538|454539|454542|454543|454545|454546|454547|454551|454554|454555|454557|454560|454561|454562|454563|454565|454566|454570|454576|454578|454579|454581|454582|454583|454584|454589|454590|454592|454593|454594|454596|454604|454608|454618|454626|454629|454640|454641|454650|454662|454667|454693|454695|454702|454708|454713|454715|454725|454735|454736|454744|454747|454753|454762|454767|454801|454812|454822|454830|454851|454873|454876|454881|454883|454885|454886|454888|454889|454891|454892|454893|454900|454902|454903|454904|454905|454908|454912|454913|454914|454917|454919|454922|454925|454927|454930|454934|454941|454942|454943|454945|454949|454954|454955|454956|454959|454961|454962|454971|454975|454983|454988|454989|454991|454994|454997|455011|455031|455055|455061|455064|455065|455077|455090|455095|455097|455102|455118|455127|455128|455136|455138|455143|455145|455149|455151|455152|455161|455164|455165|455172|455182|455185|455186|455191|455204|455206|455219|455222|455224|455230|455240|455243|455254|455257|455258|455261|455263|455269|455270|455274|455275|455284|455289|455290|455292|455293|455297|455302|455306|455308|455311|455315|455318|455321|455323|455324|455326|455332|455506|455508|455516|455519|455526|455533|455543|455548|455556|455560|455577|455598|455601|455611|455614|455726|455732|455734|455768|455786|455792|455795|455805|455806|455815|455855|455859|455870|455874|455983|455993|455999|456011|456033|456044|456054|456127|456128|456132|456134|456136|456137|456147|456151|456168|456171|456205|456235|456247|456252|456264|456285|456300|456301|456313|456315|456319|456387|456389|456393|456397|456403|456405|456418|456420|456424|456442|456449|456457|456467|456475|456534|456541|456563|456566|456568|456587|456589|456599|456635|456685|456687|456689|456691|456696|456708|456710|456715|456723|456725|456752|456770|456774|456783|456794|456817|456826|456828|456852|456858|456860|456866|456946|456948|456967|456968|456976|456990|456992|457035|457037|457068|457079|457091|457099|457104|457108|457110|457112|457143|457155|457157|457179|457207|457210|457228|457242|457251|457260|457275|457285|457292|457314|457325|457334|457344|457345|457356|457373|457417|457419|457443|457452|457459|457460|457471|457480|457491|457496|457497|457505|457822|457825|457831|457842|457845|457848|457863|457881|457889|457891|457897|457905|457994|458000|458010|458031|458035|458037|458045|458048|458057|458059|458074|458092|458093|458095|458544|458559|458564|458566|458579|458584|458586|458588|458589|458590|458592|458611|458614|458620|458621|458623|458627|458628|458633|458634|458635|458657|458658|458663|458666|458670|458673|458679|458685|458691|458694|458700|458709|458711|458714|458753|458755|458989|458996|458999|459001|459004|459006|459014|459016|459019|459030|459038|459043|459053|459058|459062|459067|459068|459070|459071|459076|459077|459079|459081|459085|459088|459092|459097|459099|459100|459102|459103|459105|459110|459112|459115|459118|459136|459160|459169|459174|459346|459382|459388|459393|459403|459406|459408|459414|459420|459423|459426|459434|459449|459450|459452|459453|459459|459462|459469|459471|459473|459475|459477|459479|459495|459501|459530|459550|459573|459580|459584|459592|459605|459606|459617|459622|459642|459650|459660|459675|459694|459704|459706|459712|459720|459723|459748|459753|459757|459765|459774|459775|459789|459794|459798|459801|459804|459816|459831|459833|459834|459839|459840|459845|459853|459854|459856|459857|459859|459866|459869|459870|459871|459879|459882|459885|459886|459901|459928|459937|459940|459947|459954|459955|459956|459961|459969|459970|459973|459980|459990|459995|459998|460000|460008|460009|460013|460021|460023|460025|460029|460032|460058|460074|460222|460233|460234|460235|460237|460240|460241|460242|460243|460247|460255|460256|460268|460271|460272|460275|460278|460281|460285|460291|460293|460295|460298|460300|460304|460306|460309|460310|460313|460316|460318|460319|460333|460335|460341|460351|460353|460355|460378|460380|460470|460471|460472|460476|460481|460483|460484|460485|460489|460491|460492|460493|460494|460495|460496|460500|460502|460505|460507|460508|460513|460514|460516|460518|460520|460521|460522|460523|460525|460528|460529|460531|460533|460536|460543|460551|460562|460563|460565|460566|460567|460569|460570|460572|460573|460577|460580|460582|460586|460592|460593|460594|460595|460599|460601|460603|460604|460611|460612|460618|460621|460625|460626|460628|460630|460632|460637|460648|460652|460654|460655|460660|460665|460668|460670|460672|460676|460677|460678|460680|460681|460683|460684|460689|460690|460692|460693|460694|460696|460697|460698|460705|460707|460708|460709|460711|460712|460713|460714|460717|460718|460721|460727|460728|460730|460733|460736|460738|460745|460746|460747|460750|460752|460758|460763|460768|460770|460771|460773|460775|460777|460779|460782|460789|460791|460792|460794|460798|460799|460800|460805|460806|460813|460814|460816|460822|460829|460830|460843|460844|460845|460846|460848|460849|460859|460860|460861|460864|460880|460881|460883|460886|460891|460912|460918|460921|460925|460928|460956|460962|460970|460983|460995|461002|461005|461012|461024|461025|461028|461031|461035|461036|461037|461042|461044|461050|461051|461055|461057|461060|461064|461067|461073|461076|461087|461088|461099|461101|461102|461116|461126|461143|461144|461155|461161|461177|461206|461216|461223|461228|461239|461247|461250|461261|461263|461271|461273|461278|461279|461289|461291|461293|461296|461307|461309|461311|461313|461320|461329|461378|461380|461382|461395|461401|461405|461416|461425|461429|461437|461446|461447|461457|461461|461462|461464|461465|461469|461473|461480|461483|461488|461500|461506|461507|461515|461517|461522|461524|461525|461526|461528|461529|461530|461538|461539|461542|461543|461544|461549|461555|461557|461563|461565|461568|461578|461593|461599|461603|461612|461615|461645|461656|461659|461676|461695|461701|461721|461735|461736|461742|461783|461785|461801|461812|461832|461845|461859|461868|461872|461874|461877|461879|461882|461889|461891|461899|461905|461938|461947|461956|461964|461966|461968|461971|461974|461978|461997|461999|462013|462030|462035|462039|462040|462043|462051|462069|462070|462072|462113|462168|462185|462186|462196|462200|462201|462202|462208|462223|462228|462229|462232|462241|462244|462245|462251|462254|462261|462263|462266|462267|462277|462358|462374|462393|462416|462451|462469|462485|462490|462493|462495|462502|462524|462571|462587|462601|462607|462620|462637|462646|462653|462659|462665|462673|462676|462677|462679|462682|462688|462693|462695|462697|462698|462701|462713|462719|462722|462723|462724|462733|462740|462752|462757|462759|462764|462766|462771|462774|462777|462778|462781|462799|462805|462809|462812|462815|462820|462821|462822|462824|462827|462833|462837|462839|462843|462844|462851|462857|462858|462863|462864|462865|462866|462895|462899|462906|462916|462918|462920|462922|462933|462945|462953|462955|462958|462972|462981|462986|462996|463001|463007|463014|463024|463025|463036|463040|463045|463049|463068|463088|463093|463115|463133|463135|463137|463155|463157|463171|463190|463199|463209|463215|463231|463232|463241|463242|463258|463261|463265|463298|463317|463343|463363|463366|463398|463401|463404|463421|463422|463426|463427|463430|463454|463466|463481|463485|463487|463496|463498|463504|463505|463506|463507|463512|463513|463522|463529|463535|463547|463550|463554|463555|463560|463561|463570|463593|463601|463605|463606|463608|463620|463631|463632|463634|463636|463639|463641|463642|463643|463646|463653|463656|463663|463664|463665|463666|463671|463673|463677|463678|463681|463684|463685|463688|463691|463696|463697|463698|463702|463707|463708|463709|463711|463712|463715|463716|463718|463721|463724|463727|463737|463760|463761|463766|463769|463775|463780|463783|463790|463793|463799|463809|463815|463819|463820|463823|463825|463827|463830|463833|463834|463835|463840|463862|463865|463868|463879|463887|463891|463892|463894|463896|463901|463902|463910|463913|463914|463915|463916|463920|463923|463924|463989|463998|464199|464216|464217|464227|464241|464243|464256|464260|464261|464280|464307|464319|464322|464329|464341|464343|464360|464373|464378|464382|464392|464393|464395|464407|464411|464431|464432|464435|464436|464442|464447|464450|464451|464454|464464|464469|464472|464480|464495|464499|464514|464557|464560|464569|464570|464572|464574|464577|464579|464581|464584|464585|464595|464601|464608|464612|464615|464624|464625|464626|464628|464633|464634|464635|464643|464644|464645|464647|464653|464654|464658|464660|464662|464666|464667|464668|464669|464674|464675|464676|464681|464682|464687|464692|464698|464700|464701|464702|464703|464705|464707|464709|464711|464712|464714|464718|464727|464729|464731|464733|464735|464738|464741|464743|464747|464748|464751|464754|464756|464757|464766|464773|464774|464777|465140|465151|465153|465168|465186|465197|465200|465254|465262|465269|465270|465290|465292|465293|465311|465313|465318|465322|465325|465331|465336|465337|465340|465355|465386|465387|465413|465414|465421|465422|465423|465427|465444|465446|465450|465455|465456|465459|465461|465463|465472|465474|465479|465480|465487|465488|465490|465494|465496|465500|465503|465504|465514|465515|465520|465525|465532|465538|465543|465546|465549|465550|465554|465562|465567|465568|465573|465574|465588|465590|465592|465603|465608|465614|465615|465708|465713|465718|465719|465721|465752|465764|465809|465815|465819|465831|465832|465838|465847|465851|465852|465853|465854|465860|465864|465867|465868|465877|465884|465888|465899|465905|465908|465911|465915|465917|465922|465931|465934|465936|465939|465962|465967|465988|465992|465994|465998|466000|466015|466026|466029|466030|466031|466034|466039|466051|466054|466055|466057|466060|466066|466073|466076|466084|466089|466094|466097|466098|466102|466105|466111|466114|466118|466119|466122|466126|466131|466138|466141|466145|466146|466148|466151|466152|466159|466163|466164|466165|466166|466173|466176|466178|466184|466187|466188|466190|466198|466200|466203|466206|466207|466210|466215|466216|466217|466219|466223|466225|466226|466233|466240|466242|466247|466249|466252|466253|466256|466257|466258|466259|466261|466268|466269|466270|466272|466275|466277|466278|466279|466281|466282|466283|466285|466290|466297|466301|466303|466312|466316|466346|466348|466355|466358|466372|466377|466379|466383|466393|466394|466395|466398|466399|466404|466410|466411|466412|466413|466415|466425|466431|466438|466439|466451|466473|466482|466494|466497|466499|466506|466509|466510|466511|466521|466523|466525|466527|466528|466529|466530|466535|466537|466539|466542|466547|466551|466555|466562|466566|466568|466574|466575|466577|466579|466584|466585|466594|466601|466602|466612|466625|466627|466629|466636|466638|466639|466644|466650|466654|466664|466671|466679|466690|466697|466720|466725|466730|466732|466735|466741|466748|466754|466777|466780|466786|466787|466800|466819|466834|466839|466854|466855|466861|466863|466874|466881|466882|466883|466886|466888|466903|466904|466909|466915|466922|466932|466936|466938|466941|466952|466955|467064|467068|467075|467078|467082|467090|467095|467103|467104|467107|467111|467113|467117|467121|467129|467135|467141|467146|467147|467150|467154|467156|467158|467160|467165|467169|467172|467174|467175|467177|467180|467184|467187|467189|467195|467199|467205|467217|467221|467225|467227|467229|467231|467234|467236|467237|467247|467250|467271|467275|467276|467287|467306|467315|467316|467329|467333|467335|467336|467338|467349|467353|467356|467358|467365|467371|467377|467381|467387|467390|467392|467397|467409|467410|467413|467417|467420|467427|467428|467432|467435|467440|467442|467444|467447|467452|467453|467456|467464|467468|467472|467473|467477|467493|467495|467496|467507|467508|467509|467511|467515|467517|467519|467524|467529|467530|467531|467534|467541|467542|467545|467546|467547|467548|467550|467553|467554|467555|467557|467561|467562|467564|467566|467567|467568|467576|467584|467585|467588|467591|467592|467593|467597|467599|467601|467607|467611|467615|467619|467620|467624|467631|467636|467640|467644|467650|467655|467658|467670|467675|467676|467687|467700|467705|467711|467718|467722|467725|467735|467736|467739|467740|467744|467751|467755|467757|467772|467774|467775|467778|467782|467793|467797|467801|467805|467809|467826|467830|467831|467843|467882|467888|467894|467896|467897|467903|467910|467911|467918|467922|467927|467929|467939|467944|467950|467952|467954|467955|467960|467963|467977|467978|467982|467984|467985|467986|467989|467991|467994|468003|468004|468008|468010|468011|468012|468014|468017|468022|468023|468026|468027|468030|468033|468034|468035|468036|468038|468039|468043|468044|468045|468047|468048|468052|468056|468058|468060|468061|468062|468065|468069|468075|468080|468087|468090|468091|468092|468098|468105|468109|468115|468119|468126|468128|468129|468136|468138|468140|468143|468145|468147|468171|468198|468228|468232|468233|468236|468240|468243|468246|468249|468250|468252|468258|468259|468267|468268|468273|468276|468280|468282|468284|468289|468298|468307|468309|468311|468312|468314|468316|468319|468321|468329|468331|468335|468336|468338|468339|468342|468345|468346|468347|468348|468350|468354|468364|468365|468366|468367|468371|468373|468376|468377|468379|468381|468387|468389|468390|468391|468392|468393|468398|468400|468407|468410|468412|468413|468415|468425|468428|468429|468440|468443|468445|468448|468453|468458|468459|468462|468466|468473|468485|468486|468489|468490|468491|468498|468499|468505|468506|468521|468526|468540|468543|468555|468561|468568|468579|468587|468589|468599|468622|468627|468631|468636|468653|468655|468662|468668|468676|468686|468687|468695|468700|468705|468725|468734|468736|468737|468738|468750|468759|468766|468835|468855|468856|468861|468863|468877|468906|468913|468941|468942|468948|468959|468966|468977|468982|468983|468989|468990|468994|468998|469024|469037|469056|469069|469071|469074|469083|469107|469108|469110|469111|469115|469117|469118|469121|469124|469127|469129|469132|469134|469136|469137|469147|469155|469156|469158|469160|469167|469170|469177|469178|469180|469181|469188|469191|469192|469194|469201|469205|469209|469213|469214|469218|469220|469233|469236|469248|469253|469257|469258|469261|469266|469268|469275|469281|469290|469292|469294|469308|469312|469333|469340|469350|469366|469376|469381|469386|469389|469393|469396|469398|469517|469522|469529|469537|469545|469551|469570|469571|469573|469577|469580|469581|469585|469589|469594|469597|469598|469606|469607|469623|469630|469634|469635|469640|469649|469655|469659|469660|469668|469671|469672|469682|469683|469702|469703|469765|469788|469789|469796|469798|469805|469808|469810|469811|469814|469967|469980|469982|470000|470008|470009|470013|470017|470023|470027|470028|470033|470038|470042|470045|470047|470048|470049|470051|470053|470055|470065|470070|470079|470082|470087|470088|470093|470095|470100|470109|470111|470117|470124|470129|470130|470133|470140|470143|470147|470155|470162|470177|470184|470194|470199|470207|470210|470220|470236|470239|470242|470273|470279|470281|470286|470317|470320|470327|470386|470387|470399|470402|470405|470415|470419|470421|470426|470429|470491|470618|470634|470636|470651|470659|470661|470668|470670|470677|470694|470713|470750|470917|470938|470951|470957|470973|470983|470990|470993|471023|471028|471053|471139|471143|471185|471216|471222|471242|471383|471384|471389|471403|471405|471413|471414|471416|471419|471429|471433|471441|471476|471488|471493|471801|471821|471829|471842|471845|471859|471860|471864|471874|471879|471886|471890|471893|471895|471902|471906|472262|472263|472264|472265|472266|472267|472268|472269|472270|472271|472272|472273|472274|472275|472276|472277|472278|472279|472280|472281|472282|472283|472284|472285|472286|472287|472288|472289|472290|472291|472292|472293|472294|472295|472296|472297|472298|472299|472300|472301|472302|472303|472304|472305|472306|472307|472308|472309|472310|472311|472312|472313|472314|472315|472316|472317|472318|472319|472320|472321|472322|472323|472324|472325|472326|472327|472328|472329|472330|472331|472332|472333|472334|472335|472336|472337|472338|472339|472340|472341|472342|472343|472344|472345|472346|472347|472348|472349|472350|472351|472352|472353|472354|472355|472356|472357|472358|472359|472360|472361|472362|472363|472364|472365|472366|472367|472368|472369|472370|472371|472372|472373|472374|472375|472376|472377|472378|472379|472380|472381|472382|472383|472384|472385|472386|472387|472388|472389|472390|472391|472392|472393|472394|472395|472396|472397|472398|472399|472400|472401|472402|472403|472404|472405|472406|472407|472408|472409|472410|472411|472412|472413|472414|472415|472416|472417|472418|472419|472420|472421|472422|472423|472424|472425|472426|472427|472428|472429|472430|472431|472432|472433|472434|472435|472436|472437|472438|472439|472440|472441|472442|472443|472444|472445|472446|472447|472448|472449|472450|472451|472452|472453|472454|472455|472456|472457|472458|472459|472460|472461|472462|472463|472464|472465|472466|472467|472468|472469|472470|472471|472472|472473|472474|472475|472476|472477|472478|472479|472480|472481|472482|472483|472484|472485|472486|472487|472488|472489|472490|472491|472492|472493|472494|472495|472496|472497|472498|472499|472500|472501|472502|472503|472504|472505|472506|472507|472508|472509|472510|472511|472512|472513|472514|472515|472516|472517|472518|472519|472520|472521|472522|472523|472524|472525|472526|472527|472528|472529|472530|472531|472532|472533|472534|472535|472536|472537|472538|472539|472540|472541|472542|472543|472544|472545|472546|472547|472548|472549|472550|472551|472552|472554|472555|472556|472557|472558|472559|472560|472561|472562|472563|472564|472565|472566|472567|472568|472569|472570|472571|472572|472573|472574|472575|472576|472577|472578|472579|472580|472581|472582|472583|472584|472585|472586|472587|472588|472589|472590|472591|472592|472593|472594|472595|472596|472597|472598|472599|472600|472601|472602|472603|472604|472605|472606|472607|472608|472609|472610|472611|472612|472613|472614|472615|472616|472617|472618|472619|472620|472621|472622|472623|472624|472625|472626|472627|472628|472629|472630|472631|472632|472633|472634|472635|472636|472637|472638|472639|472640|472641|472642|472643|472644|472645|472646|472647|472648|472649|472650|472651|472652|472653|472654|472655|472656|472657|472658|472659|472660|472661|472662|472663|472664|472665|472666|472667|472668|472669|472670|472671|472672|472673|472674|472675|472676|472677|472678|472679|472680|472681|472682|472683|472684|472685|472686|472687|472688|472689|472690|472691|472692|472693|472694|472695|472696|472697|472698|472699|472700|472701|472702|472703|472704|472705|472706|472707|472708|472709|472710|472711|472712|472713|472714|472715|472716|472717|472718|472719|472720|472721|472722|472723|472724|472725|472726|472727|472728|472729|472730|472731|472732|472733|472734|472735|472736|472737|472738|472739|472740|472741|472742|472743|472744|472746|472747|472748|472749|472750|472751|472752|472753|472754|472755|472756|472757|472758|472759|472760|472761|472762|472763|472764|472765|472766|472767|472768|472769|472770|472771|472772|472773|472774|472775|472776|472777|472778|472779|472780|472781|472782|472783|472784|472785|472786|472787|472788|472789|472790|472791|472792|472793|472794|472795|472796|472797|472798|472799|472800|472801|472802|472803|472804|472805|472806|472807|472808|472809|472810|472811|472812|472813|472814|472815|472816|472817|472818|472819|472820|472821|472822|472823|472824|472825|472826|472827|472828|472829|472830|472831|472832|472833|472834|472835|472836|472837|472838|472839|472840|472841|472842|472843|472844|472845|472846|472847|472848|472849|472850|472851|472852|472853|472854|472855|472856|472857|472858|472859|472860|472861|472862|472863|472864|472865|472866|472867|472868|472869|472870|472871|472872|472873|472874|472875|472876|472877|472878|472879|472880|472881|472882|472883|472884|472885|472886|472887|472888|472889|472890|472891|472892|472893|472894|472895|472896|472897|472898|472899|472900|472901|472902|472903|472904|472905|472906|472907|472908|472909|472910|472911|472912|472913|472914|472915|472916|472917|472918|472919|472920|472921|472922|472923|472924|472925|472926|472927|472928|472929|472930|472931|472932|472933|472934|472935|472936|472937|472938|472939|472940|472941|472942|472943|472944|472945|472946|472947|472948|472949|472950|472951|472952|472953|472954|472955|472956|472957|472958|472959|472960|472961|472962|472963|472964|472965|472966|472967|472968|472969|472970|472971|472972|472973|472974|472975|472976|472977|472978|472979|472980|472981|472982|472983|472984|472985|472986|472987|472988|472989|472990|472991|472992|472993|472994|472995|472996|472997|472998|472999|473000|473001|473002|473003|473004|473005|473006|473007|473008|473009|473010|473011|473012|473013|473014|473015|473016|473017|473018|473019|473020|473021|473022|473023|473024|473025|473026|473027|473028|473029|473030|473031|473032|473033|473034|473035|473036|473037|473038|473039|473040|473041|473042|473043|473044|473045|473046|473047|473048|473049|473050|473051|473052|473053|473054|473055|473056|473057|473058|473059|473060|473061|473062|473063|473064|473065|473066|473067|473068|473069|473070|473071|473072|473073|473074|473075|473076|473077|473078|473079|473080|473081|473082|473083|473084|473085|473086|473087|473088|473089|473090|473091|473092|473093|473094|473095|473096|473097|473098|473099|473100|473101|473102|473103|473104|473105|473106|473107|473108|473109|473110|473111|473112|473113|473114|473115|473116|473117|473118|473119|473120|473121|473122|473123|473124|473125|473126|473127|473128|473129|473130|473131|473132|473133|473134|473135|473136|473137|473138|473139|473140|473141|473142|473143|473144|473145|473146|473147|473148|473149|473150|473151|473152|473153|473154|473155|473156|473157|473158|473159|473160|473161|473162|473163|473164|473165|473166|473167|473168|473169|473170|473171|473172|473173|473174|473175|473176|473177|473178|473179|473180|473181|473182|473183|473184|473185|473186|473187|473188|473189|473190|473191|473192|473193|473194|473195|473196|473197|473198|473199|473200|473201|473202|473203|473204|473205|473206|473207|473208|473209|473210|473211|473212|473213|473214|473215|473216|473217|473218|473219|473220|473221|473222|473223|473224|473225|473226|473227|473228|473229|473230|473231|473232|473233|473234|473235|473236|473237|473238|473239|473240|473241|473242|473243|473244|473245|473246|473247|473248|473249|473250|473251|473252|473253|473254|473255|473256|473257|473258|473259|473260|473261|473262|473263|473264|473265|473266|473267|473268|473269|473270|473271|473272|473273|473274|473275|473276|473277|473278|473279|473280|473281|473282|473283|473284|473285|473286|473287|473288|473289|473290|473291|473292|473293|473294|473295|473296|473297|473298|473299|473300|473301|473302|473303|473304|473305|473306|473307|473308|473309|473310|473311|473312|473313|473314|473315|473316|473317|473318|473319|473320|473321|473322|473323|473324|473325|473326|473327|473328|473329|473330|473331|473332|473333|473334|473335|473336|473337|473338|473339|473340|473341|473342|473343|473344|473345|473346|473347|473348|473349|473350|473351|473352|473353|473354|473355|473356|473357|473358|473359|473360|473361|473362|473363|473364|473365|473366|473367|473368|473369|473370|473371|473372|473373|473374|473375|473376|473377|473378|473379|473380|473381|473382|473383|473384|473385|473386|473387|473388|473389|473390|473391|473392|473393|473394|473395|473396|473397|473398|473399|473400|473401|473402|473403|473404|473405|473406|473407|473408|473409|473410|473411|473412|473413|473414|473415|473416|473417|473418|473419|473420|473421|473422|473423|473424|473425|473426|473427|473428|473429|473430|473431|473432|473433|473434|473435|473436|473437|473438|473439|473440|473441|473442|473443|473444|473445|473446|473447|473448|473449|473450|473451|473452|473453|473454|473455|473456|473457|473458|473459|473460|473461|473462|473463|473464|473465|473466|473467|473468|473469|473470|473471|473472|473473|473474|473475|473476|473477|473478|473479|473480|473481|473482|473483|473484|473485|473486|473487|473488|473489|473490|473491|473492|473493|473494|473495|473496|473497|473498|473499|473500|473501|473502|473503|473504|473505|473506|473507|473508|473509|473510|473511|473512|473513|473514|473515|473516|473517|473518|473519|473520|473521|473522|473523|473524|473525|473526|473527|473528|473529|473530|473531|473532|473533|473534|473535|473536|473537|473538|473539|473540|473541|473542|473543|473544|473545|473546|473547|473548|473549|473550|473551|473552|473553|473554|473555|473556|473557|473558|473559|473560|473561|473562|473563|473564|473565|473566|473567|473568|473569|473570|473571|473572|473573|473574|473575|473576|473577|473578|473579|473580|473581|473582|473583|473584|473585|473586|473587|473588|473589|473590|473591|473592|473593|473594|473595|473596|473597|473598|473599|473600|473601|473602|473603|473604|473605|473606|473607|473608|473609|473610|473611|473612|473613|473614|473615|473616|473617|473618|473619|473620|473621|473622|473623|473624|473625|473626|473627|473628|473629|473630|473631|473632|473633|473634|473635|473636|473637|473638|473639|473640|473641|473642|473643|473644|473645|473646|473647|473648|473649|473650|473651|473652|473653|473654|473655|473656|473657|473658|473659|473660|473661|473662|473663|473664|473665|473666|473667|473668|473669|473670|473671|473672|473673|473674|473675|473676|473677|473678|473679|473680|473681|473682|473683|473684|473685|473686|473687|473688|473689|473690|473691|473692|473693|473694|473695|473696|473697|473698|473699|473700|473701|473702|473703|473704|473705|473706|473707|473708|473709|473710|473711|473712|473713|473714|473715|473716|473717|473718|473719|473720|473721|473722|473723|473724|473725|473726|473727|473728|473729|473730|473731|473732|473733|473734|473735|473736|473737|473738|473739|473740|473741|473742|473743|473744|473745|473746|473747|473748|473749|473750|473751|473752|473753|473754|473755|473756|473757|473758|473759|473760|473761|473762|473763|473764|473765|473766|473767|473768|473769|473770|473771|473772|473773|473774|473775|473776|473777|473778|473779|473780|473781|473782|473783|473784|473785|473786|473787|473788|473789|473790|473791|473792|473793|473794|473795|473796|473797|473798|473799|473800|473801|473802|473803|473804|473805|473806|473807|473808|473809|473810|473811|473812|473813|473814|473815|473816|473817|473818|473819|473820|473821|473822|473823|473824|473825|473826|473827|473828|473829|473830|473831|473832|473833|473834|473835|473836|473837|473838|473839|473840|473841|473842|473843|473844|473845|473846|473847|473848|473849|473850|473851|473852|473853|473854|473855|473856|473857|473858|473859|473860|473861|473862|473863|473864|473865|473866|473867|473868|473869|473870|473871|473872|473873|473874|473875|473876|473877|473878|473879|473880|473881|473882|473883|473884|473885|473886|473887|473888|473889|473890|473891|473892|473893|473894|473895|473896|473897|473898|473899|473900|473901|473902|473903|473904|473905|473906|473907|473908|473909|473910|473911|473912|473913|473914|473915|473916|473917|473918|473919|473920|473921|473922|473923|473924|473925|473926|473927|473928|473929|473930|473931|473932|473933|473934|473935|473936|473937|473938|473939|473940|473941|473942|473943|473944|473945|473946|473947|473948|473949|473950|473951|473952|473953|473954|473955|473956|473957|473958|473959|473960|473961|473962|473963|473964|473965|473966|473967|473968|473969|473970|473971|473972|473973|473974|473975|473976|473977|473978|473979|473980|473981|473982|473983|473984|473985|473986|473987|473988|473989|473990|473991|473992|473993|473994|473995|473996|473997|473998|473999|474000|474001|474002|474003|474004|474005|474006|474007|474008|474009|474010|474011|474012|474013|474014|474015|474016|474017|474018|474019|474020|474021|474022|474023|474024|474025|474026|474027|474028|474029|474030|474031|474032|474033|474034|474035|474036|474037|474038|474039|474040|474041|474042|474043|474044|474045|474046|474047|474048|474049|474050|474051|474052|474053|474054|474055|474056|474057|474058|474059|474060|474061|474062|474063|474064|474065|474066|474067|474068|474069|474070|474071|474072|474073|474074|474075|474076|474077|474078|474079|474080|474081|474082|474083|474084|474085|474086|474087|474088|474089|474090|474091|474092|474093|474094|474095|474096|474097|474098|474099|474100|474101|474102|474103|474104|474105|474106|474107|474108|474109|474110|474111|474112|474113|474114|474115|474116|474117|474118|474119|474120|474121|474122|474123|474124|474125|474126|474127|474128|474129|474130|474131|474132|474133|474134|474135|474136|474137|474138|474139|474140|474141|474142|474143|474144|474145|474146|474147|474148|474149|474150|474151|474152|474153|474154|474155|474156|474157|474158|474159|474160|474161|474162|474163|474164|474165|474166|474167|474168|474169|474170|474171|474172|474173|474174|474175|474176|474177|474179|474180|474181|474182|474183|474184|474185|474186|474187|474188|474189|474190|474191|474192|474193|474194|474195|474196|474197|474198|474199|474200|474201|474202|474203|474204|474205|474206|474207|474208|474209|474210|474211|474212|474213|474214|474215|474216|474217|474218|474219|474220|474221|474222|474223|474224|474225|474226|474227|474228|474229|474230|474231|474232|474233|474234|474235|474236|474237|474238|474239|474240|474241|474242|474243|474244|474245|474246|474247|474248|474249|474250|474251|474252|474253|474254|474255|474256|474257|474258|474259|474260|474261|474262|474263|474264|474265|474266|474267|474268|474269|474270|474271|474272|474273|474274|474275|474276|474277|474278|474279|474280|474281|474282|474283|474284|474285|474286|474287|474288|474289|474290|474291|474292|474293|474294|474295|474296|474297|474298|474299|474300|474301|474302|474303|474304|474305|474306|474307|474308|474309|474310|474311|474312|474313|474314|474315|474316|474317|474318|474319|474320|474321|474322|474323|474324|474325|474326|474327|474328|474329|474330|474331|474332|474333|474334|474335|474336|474337|474338|474339|474340|474341|474342|474343|474344|474345|474346|474347|474348|474349|474350|474351|474352|474353|474354|474355|474356|474357|474358|474359|474360|474361|474362|474363|474364|474365|474366|474367|474368|474369|474370|474371|474372|474373|474374|474375|474376|474377|474378|474379|474380|474381|474382|474383|474384|474385|474386|474387|474388|474389|474390|474391|474392|474393|474394|474395|474396|474397|474398|474399|474400|474401|474402|474403|474404|474405|474406|474407|474408|474409|474410|474411|474412|474413|474414|474415|474416|474417|474418|474419|474420|474421|474422|474423|474424|474425|474426|474427|474428|474429|474430|474431|474432|474433|474434|474435|474436|474437|474438|474439|474440|474441|474442|474443|474444|474445|474446|474447|474448|474449|474450|474451|474452|474453|474454|474455|474456|474457|474458|474459|474460|474461|474462|474463|474464|474465|474466|474467|474468|474469|474470|474471|474472|474473|474474|474475|474476|474477|474478|474479|474480|474481|474482|474483|474484|474485|474486|474487|474488|474489|474490|474491|474492|474493|474494|474495|474496|474497|474498|474499|474500|474501|474502|474503|474504|474505|474506|474507|474508|474509|474510|474511|474512|474513|474514|474515|474516|474517|474518|474519|474520|474521|474522|474523|474524|474525|474526|474527|474528|474529|474530|474531|474532|474533|474534|474535|474536|474537|474538|474539|474540|474541|474542|474543|474544|474545|474546|474547|474548|474549|474550|474551|474552|474553|474554|474555|474556|474557|474558|474559|474560|474561|474562|474563|474564|474565|474566|474567|474568|474569|474570|474571|474572|474573|474574|474575|474576|474577|474578|474579|474580|474581|474582|474583|474584|474585|474586|474587|474588|474589|474590|474591|474592|474593|474594|474595|474596|474597|474598|474599|474600|474601|474602|474603|474604|474605|474606|474607|474608|474609|474610|474611|474612|474613|474614|474615|474616|474617|474618|474619|474620|474621|474622|474623|474624|474625|474626|474627|474628|474629|474630|474631|474632|474633|474634|474635|474636|474637|474638|474639|474640|474641|474642|474643|474644|474645|474646|474647|474648|474649|474650|474651|474652|474653|474654|474655|474656|474657|474658|474659|474660|474661|474662|474663|474664|474665|474666|474667|474668|474669|474670|474671|474672|474673|474674|474675|474676|474677|474678|474679|474680|474681|474682|474683|474684|474685|474686|474687|474688|474689|474690|474691|474692|474693|474694|474695|474696|474697|474698|474699|474700|474701|474702|474703|474704|474705|474706|474707|474708|474709|474710|474711|474712|474713|474714|474715|474716|474717|474718|474719|474720|474721|474722|474723|474724|474725|474726|474727|474728|474729|474730|474731|474732|474733|474734|474735|474736|474737|474738|474739|474740|474741|474742|474743|474744|474745|474746|474747|474748|474749|474750|474751|474752|474753|474754|474755|474756|474757|474758|474759|474760|474761|474762|474763|474764|474765|474766|474767|474768|474769|474770|474771|474772|474773|474774|474775|474776|474777|474778|474779|474780|474781|474782|474783|474784|474785|474786|474787|474788|474789|474790|474791|474792|474793|474794|474795|474796|474797|474798|474799|474800|474801|474802|474803|474804|474805|474806|474807|474808|474809|474810|474811|474812|474813|474814|474815|474816|474817|474818|474819|474820|474821|474822|474823|474824|474825|474826|474827|474828|474829|474830|474831|474832|474833|474834|474835|474836|474837|474838|474839|474840|474841|474842|474843|474844|474845|474846|474847|474848|474849|474850|474851|474852|474853|474854|474855|474856|474857|474858|474859|474860|474861|474862|474863|474864|474865|474866|474867|474868|474869|474870|474871|474872|474873|474874|474875|474876|474877|474878|474879|474880|474881|474882|474883|474884|474885|474886|474887|474888|474889|474890|474891|474892|474893|474894|474895|474896|474897|474898|474899|474900|474901|474902|474903|474904|474905|474906|474907|474908|474909|474910|474911|474912|474913|474914|474915|474916|474917|474918|474919|474920|474921|474922|474923|474924|474925|474926|474927|474928|474929|474930|474931|474932|474933|474934|474935|474936|474937|474938|474939|474940|474941|474942|474943|474944|474945|474946|474947|474948|474949|474950|474951|474952|474953|474954|474955|474956|474957|474958|474959|474960|474961|474962|474963|474964|474965|474966|474967|474968|474969|474970|474971|474972|474973|474974|474975|474976|474977|474978|474979|474980|474981|474982|474983|474984|474985|474986|474987|474988|474989|474990|474991|474992|474993|474994|474995|474996|474997|474998|474999|475000|475001|475002|475003|475004|475005|475006|475007|475008|475009|475010|475011|475012|475013|475014|475015|475016|475017|475018|475019|475020|475021|475022|475023|475024|475025|475026|475027|475028|475029|475030|475031|475032|475033|475034|475035|475036|475037|475038|475039|475040|475041|475042|475043|475044|475045|475046|475047|475048|475049|475050|475051|475052|475053|475054|475055|475056|475057|475058|475059|475060|475061|475062|475063|475064|475065|475066|475067|475068|475069|475070|475071|475072|475073|475074|475075|475076|475077|475078|475079|475080|475081|475082|475083|475084|475085|475086|475087|475088|475089|475090|475091|475092|475093|475094|475095|475096|475097|475098|475099|475100|475101|475102|475103|475104|475105|475106|475107|475108|475109|475110|475111|475112|475113|475114|475115|475116|475117|475118|475119|475120|475121|475122|475123|475124|475125|475126|475127|475128|475129|475130|475131|475132|475133|475134|475135|475136|475137|475138|475139|475140|475141|475142|475143|475144|475145|475146|475147|475148|475149|475150|475151|475152|475153|475154|475155|475156|475157|475158|475159|475160|475161|475162|475163|475164|475165|475166|475167|475168|475169|475170|475171|475172|475173|475174|475175|475176|475177|475178|475179|475180|475181|475182|475183|475184|475185|475186|475187|475188|475189|475190|475191|475192|475193|475194|475195|475196|475197|475198|475199|475200|475201|475202|475203|475204|475205|475206|475207|475208|475209|475210|475211|475212|475213|475214|475215|475216|475217|475218|475219|475220|475221|475222|475223|475224|475225|475226|475227|475228|475229|475230|475231|475232|475233|475234|475235|475236|475237|475238|475239|475240|475241|475242|475243|475244|475245|475246|475247|475248|475249|475250|475251|475252|475253|475254|475255|475256|475257|475258|475259|475260|475261|475262|475263|475264|475265|475266|475267|475268|475269|475270|475271|475272|475273|475274|475275|475276|475277|475278|475279|475280|475281|475282|475283|475284|475285|475286|475287|475288|475289|475290|475291|475292|475293|475294|475295|475296|475297|475298|475299|475300|475301|475302|475303|475304|475305|475306|475307|475308|475309|475310|475311|475312|475313|475314|475315|475316|475317|475318|475319|475320|475321|475322|475323|475324|475325|475326|475327|475328|475329|475330|475331|475332|475333|475334|475335|475336|475337|475338|475339|475340|475341|475342|475343|475344|475345|475346|475347|475348|475349|475350|475351|475352|475353|475354|475355|475356|475357|475358|475359|475360|475361|475362|475363|475364|475365|475366|475367|475368|475369|475370|475371|475372|475373|475374|475375|475376|475377|475378|475379|475380|475381|475382|475383|475384|475385|475386|475387|475388|475389|475390|475391|475392|475393|475394|475395|475396|475397|475398|475399|475400|475401|475402|475403|475404|475405|475406|475407|475408|475409|475410|475411|475412|475413|475414|475415|475416|475417|475418|475419|475420|475421|475422|475423|475424|475425|475426|475427|475428|475429|475430|475431|475432|475433|475434|475435|475436|475437|475438|475439|475440|475441|475442|475443|475444|475445|475446|475447|475448|475449|475450|475451|475452|475453|475454|475455|475456|475457|475458|475459|475460|475461|475462|475463|475464|475465|475466|475467|475468|475469|475470|475471|475472|475473|475474|475475|475476|475477|475478|475479|475480|475481|475482|475483|475484|475485|475486|475487|475488|475489|475490|475491|475492|475493|475494|475495|475496|475497|475498|475499|475500|475501|475502|475503|475504|475505|475506|475507|475508|475509|475510|475511|475512|475513|475514|475515|475516|475517|475518|475519|475520|475521|475522|475523|475524|475525|475526|475527|475528|475529|475530|475531|475532|475533|475534|475535|475536|475537|475538|475539|475540|475541|475542|475543|475544|475545|475546|475547|475548|475549|475550|475551|475552|475553|475554|475555|475556|475557|475558|475559|475560|475561|475562|475563|475564|475565|475566|475567|475568|475569|475570|475571|475572|475573|475574|475575|475576|475577|475578|475579|475580|475581|475582|475583|475584|475585|475586|475587|475588|475589|475590|475591|475592|475593|475594|475595|475596|475597|475598|475599|475600|475601|475602|475603|475604|475605|475606|475607|475608|475609|475610|475611|475612|475613|475614|475615|475616|475617|475618|475619|475620|475621|475622|475623|475624|475625|475626|475627|475628|475629|475630|475631|475632|475633|475634|475635|475636|475637|475638|475639|475640|475641|475642|475643|475644|475645|475646|475647|475648|475649|475650|475651|475652|475653|475654|475655|475656|475657|475658|475659|475660|475661|475662|475663|475664|475665|475666|475667|475668|475669|475670|475671|475672|475673|475674|475675|475676|475677|475678|475679|475680|475681|475682|475683|475684|475685|475686|475687|475688|475689|475690|475691|475692|475693|475694|475695|475696|475697|475698|475699|475700|475701|475702|475703|475704|475705|475706|475707|475708|475709|475710|475711|475712|475713|475714|475715|475716|475717|475718|475719|475720|475721|475722|475723|475724|475725|475726|475727|475728|475729|475730|475731|475732|475733|475734|475735|475736|475737|475738|475739|475740|475741|475742|475743|475744|475745|475746|475747|475748|475749|475750|475751|475752|475753|475754|475755|475756|475757|475758|475759|475760|475761|475762|475763|475764|475765|475766|475767|475768|475769|475770|475771|475772|475773|475774|475775|475776|475777|475778|475779|475780|475781|475782|475783|475784|475785|475786|475787|475788|475789|475790|475791|475792|475793|475794|475795|475796|475797|475798|475799|475800|475801|475802|475803|475804|475805|475806|475807|475808|475809|475810|475811|475812|475813|475814|475815|475816|475817|475818|475819|475820|475821|475822|475823|475824|475825|475826|475827|475828|475829|475830|475831|475832|475833|475834|475835|475836|475837|475839|475840|475841|475842|475843|475844|475845|475846|475847|475848|475849|475850|475851|475852|475853|475854|475855|475856|475857|475858|475859|475860|475861|475862|475863|475864|475865|475866|475867|475868|475869|475870|475871|475872|475873|475874|475875|475876|475877|475878|475879|475880|475881|475882|475883|475884|475885|475886|475887|475888|475889|475890|475891|475892|475893|475894|475895|475896|475897|475898|475899|475900|475901|475902|475903|475904|475905|475906|475907|475908|475909|475910|475911|475912|475913|475914|475915|475916|475917|475918|475919|475920|475921|475922|475923|475924|475925|475926|475927|475928|475929|475930|475931|475932|475933|475934|475935|475936|475937|475938|475939|475940|475941|475942|475943|475944|475945|475946|475947|475948|475949|475950|475951|475952|475953|475954|475955|475956|475957|475958|475959|475960|475961|475962|475963|475964|475965|475966|475967|475968|475969|475970|475971|475972|475973|475974|475975|475976|475977|475978|475979|475980|475981|475982|475983|475984|475985|475986|475987|475988|475989|475990|475991|475992|475993|475994|475995|475996|475997|475998|475999|476000|476001|476002|476003|476004|476005|476006|476007|476008|476009|476010|476011|476012|476013|476014|476015|476016|476017|476018|476019|476020|476021|476022|476023|476024|476025|476026|476027|476028|476029|476030|476031|476032|476033|476034|476035|476036|476037|476038|476039|476040|476041|476042|476043|476044|476045|476046|476047|476048|476049|476050|476051|476052|476053|476054|476055|476056|476057|476058|476059|476060|476061|476062|476063|476064|476065|476066|476067|476068|476069|476070|476071|476072|476073|476074|476075|476076|476077|476078|476079|476080|476081|476082|476083|476084|476085|476086|476087|476088|476089|476090|476091|476092|476093|476094|476095|476096|476097|476098|476099|476100|476101|476102|476103|476104|476105|476106|476107|476108|476109|476110|476111|476112|476113|476114|476115|476116|476117|476118|476119|476120|476121|476122|476123|476124|476125|476126|476127|476128|476129|476130|476131|476132|476133|476134|476135|476136|476137|476138|476139|476140|476141|476142|476143|476144|476145|476146|476147|476148|476149|476150|476151|476152|476153|476154|476155|476156|476157|476158|476159|476160|476161|476162|476163|476164|476165|476166|476167|476168|476169|476170|476171|476172|476173|476174|476175|476176|476177|476178|476179|476180|476181|476182|476183|476184|476185|476186|476187|476188|476189|476190|476191|476192|476193|476194|476195|476196|476197|476198|476199|476200|476201|476202|476203|476204|476205|476206|476207|476208|476209|476210|476211|476212|476213|476214|476215|476216|476217|476218|476219|476220|476221|476222|476223|476224|476225|476226|476227|476228|476229|476230|476231|476232|476233|476234|476235|476236|476237|476238|476239|476240|476241|476242|476243|476244|476245|476246|476247|476248|476249|476250|476251|476252|476253|476254|476255|476256|476257|476258|476259|476260|476261|476262|476263|476264|476265|476266|476267|476268|476269|476270|476271|476272|476273|476274|476275|476276|476277|476278|476279|476280|476281|476282|476283|476284|476285|476286|476287|476288|476289|476290|476291|476292|476293|476294|476295|476296|476297|476298|476299|476300|476301|476302|476303|476304|476305|476306|476307|476308|476309|476310|476311|476312|476313|476314|476315|476316|476317|476318|476319|476320|476321|476322|476323|476324|476325|476326|476327|476328|476329|476330|476331|476332|476333|476334|476335|476336|476337|476338|476339|476340|476341|476342|476343|476344|476345|476346|476347|476348|476349|476350|476351|476352|476353|476354|476355|476356|476357|476358|476359|476360|476361|476362|476363|476364|476365|476366|476367|476368|476369|476370|476371|476372|476373|476374|476375|476376|476377|476378|476379|476380|476381|476382|476383|476384|476385|476386|476387|476388|476389|476390|476391|476392|476393|476394|476395|476396|476397|476398|476399|476400|476401|476402|476403|476404|476405|476406|476407|476408|476409|476410|476411|476412|476413|476414|476415|476416|476417|476418|476419|476420|476421|476422|476423|476424|476425|476426|476427|476428|476429|476430|476431|476432|476433|476434|476435|476436|476437|476438|476439|476440|476441|476442|476443|476444|476445|476446|476447|476448|476449|476450|476451|476452|476453|476454|476455|476456|476457|476458|476459|476460|476461|476462|476463|476464|476465|476466|476467|476468|476469|476470|476471|476472|476473|476474|476475|476476|476477|476478|476479|476480|476481|476482|476483|476484|476485|476486|476487|476488|476489|476490|476491|476492|476493|476494|476495|476496|476497|476498|476499|476500|476501|476502|476503|476504|476505|476506|476507|476508|476509|476510|476511|476512|476513|476514|476515|476516|476517|476518|476519|476520|476521|476522|476523|476524|476525|476526|476527|476528|476529|476530|476531|476532|476533|476534|476535|476536|476537|476538|476539|476540|476541|476542|476543|476544|476545|476546|476547|476548|476549|476550|476551|476552|476553|476554|476555|476556|476557|476558|476559|476560|476561|476562|476563|476564|476565|476566|476567|476568|476569|476570|476571|476572|476573|476574|476575|476576|476577|476578|476579|476580|476581|476582|476583|476584|476585|476586|476587|476588|476589|476590|476591|476592|476593|476594|476595|476596|476597|476598|476599|476600|476601|476602|476603|476604|476605|476606|476607|476608|476609|476610|476611|476612|476613|476614|476615|476616|476617|476618|476619|476620|476621|476622|476623|476624|476625|476626|476627|476628|476629|476630|476631|476632|476633|476634|476635|476636|476637|476638|476639|476640|476641|476642|476643|476644|476645|476646|476647|476648|476649|476650|476651|476652|476653|476654|476655|476656|476657|476658|476659|476660|476661|476662|476663|476664|476665|476666|476667|476668|476669|476670|476671|476672|476673|476674|476675|476676|476677|476678|476679|476680|476681|476682|476683|476684|476685|476686|476687|476688|476689|476690|476691|476692|476693|476694|476695|476696|476697|476698|476699|476700|476701|476702|476703|476704|476705|476706|476707|476708|476709|476710|476711|476712|476713|476714|476715|476716|476717|476718|476719|476720|476721|476722|476723|476724|476725|476726|476727|476728|476730|476731|476732|476733|476734|476735|476736|476737|476738|476739|476740|476741|476742|476743|476744|476745|476746|476747|476748|476749|476750|476751|476752|476753|476754|476755|476756|476757|476758|476759|476760|476761|476762|476763|476764|476765|476766|476767|476768|476769|476770|476771|476772|476773|476774|476775|476776|476777|476778|476779|476780|476781|476782|476783|476784|476785|476786|476787|476788|476789|476790|476791|476792|476793|476794|476795|476796|476797|476798|476799|476800|476801|476802|476803|476805|476806|476807|476808|476809|476810|476811|476812|476813|476814|476815|476816|476817|476818|476819|476820|476821|476822|476823|476824|476825|476826|476827|476828|476829|476830|476831|476832|476833|476834|476835|476836|476837|476838|476839|476840|476841|476842|476843|476844|476845|476846|476847|476848|476849|476850|476851|476852|476853|476854|476855|476856|476857|476858|476859|476860|476861|476862|476863|476864|476865|476866|476867|476868|476869|476870|476871|476872|476873|476874|476875|476876|476877|476878|476879|476880|476881|476882|476883|476884|476885|476886|476887|476888|476889|476890|476891|476892|476893|476894|476895|476896|476897|476898|476899|476900|476901|476902|476903|476904|476905|476906|476907|476908|476909|476910|476911|476912|476913|476914|476915|476916|476917|476918|476919|476920|476921|476922|476923|476924|476925|476926|476927|476928|476929|476930|476931|476932|476933|476934|476935|476936|476937|476938|476939|476940|476941|476942|476943|476944|476945|476946|476947|476948|476949|476950|476951|476952|476953|476954|476955|476956|476957|476958|476959|476960|476961|476962|476963|476964|476965|476966|476967|476968|476969|476970|476971|476972|476973|476974|476975|476976|476977|476978|476979|476980|476981|476982|476983|476984|476985|476986|476987|476988|476989|476990|476991|476992|476993|476994|476995|476996|476997|476998|476999|477000|477001|477002|477003|477004|477005|477006|477007|477008|477009|477010|477011|477012|477013|477014|477015|477016|477017|477018|477019|477020|477021|477022|477023|477024|477025|477026|477027|477028|477029|477031|477032|477033|477034|477035|477036|477037|477038|477039|477040|477041|477042|477043|477044|477045|477046|477047|477048|477049|477050|477051|477052|477053|477054|477055|477056|477057|477058|477059|477060|477061|477062|477063|477064|477065|477066|477067|477068|477069|477070|477071|477072|477073|477074|477075|477076|477077|477078|477079|477080|477081|477082|477083|477084|477085|477086|477087|477088|477089|477090|477091|477092|477093|477094|477095|477096|477097|477098|477099|477100|477101|477102|477103|477104|477105|477106|477107|477108|477109|477110|477111|477112|477113|477114|477115|477116|477117|477118|477119|477120|477121|477122|477123|477124|477125|477126|477127|477128|477129|477130|477131|477132|477133|477134|477135|477136|477137|477138|477139|477140|477141|477142|477143|477144|477145|477146|477147|477148|477149|477150|477151|477152|477153|477154|477155|477156|477157|477158|477159|477160|477161|477162|477163|477164|477165|477166|477167|477168|477169|477170|477171|477172|477173|477174|477175|477176|477177|477178|477179|477180|477181|477182|477183|477184|477185|477186|477187|477188|477189|477190|477191|477192|477193|477194|477195|477196|477197|477198|477199|477200|477201|477202|477203|477204|477205|477206|477207|477208|477209|477210|477211|477212|477213|477214|477215|477216|477217|477218|477219|477220|477221|477222|477223|477224|477225|477226|477227|477228|477229|477230|477231|477232|477233|477234|477235|477236|477237|477238|477239|477240|477241|477242|477243|477244|477245|477246|477247|477248|477249|477250|477251|477252|477253|477254|477255|477256|477257|477258|477259|477260|477261|477262|477263|477264|477265|477266|477267|477268|477269|477270|477271|477272|477273|477274|477275|477276|477277|477278|477279|477280|477281|477282|477283|477284|477285|477286|477287|477288|477289|477290|477291|477292|477293|477294|477295|477296|477297|477298|477299|477300|477301|477302|477303|477304|477305|477306|477307|477308|477309|477310|477311|477312|477313|477314|477315|477316|477317|477318|477319|477320|477321|477322|477323|477324|477325|477326|477327|477328|477329|477330|477331|477332|477333|477334|477335|477336|477337|477338|477339|477340|477341|477342|477343|477344|477345|477346|477347|477348|477349|477350|477351|477352|477353|477354|477355|477356|477357|477358|477359|477360|477361|477362|477363|477364|477365|477366|477367|477368|477369|477370|477371|477372|477373|477374|477375|477376|477377|477378|477379|477380|477381|477382|477383|477384|477385|477386|477387|477388|477389|477390|477391|477392|477393|477394|477395|477396|477397|477398|477399|477400|477401|477402|477403|477404|477405|477406|477407|477408|477409|477410|477411|477412|477413|477414|477415|477416|477417|477418|477419|477420|477421|477422|477423|477424|477425|477426|477427|477428|477429|477430|477431|477432|477433|477434|477435|477436|477437|477438|477439|477440|477441|477442|477443|477444|477445|477446|477447|477448|477449|477450|477451|477452|477453|477454|477455|477456|477457|477458|477459|477460|477461|477462|477463|477464|477465|477466|477467|477468|477469|477470|477471|477472|477473|477474|477475|477476|477477|477478|477479|477480|477481|477482|477483|477484|477485|477486|477487|477488|477489|477490|477491|477492|477493|477494|477495|477496|477497|477498|477499|477500|477501|477502|477503|477504|477505|477506|477507|477508|477509|477510|477511|477512|477513|477514|477515|477516|477517|477518|477519|477520|477521|477522|477523|477524|477525|477526|477527|477528|477529|477530|477531|477532|477533|477534|477535|477536|477537|477538|477539|477540|477541|477542|477543|477544|477545|477546|477547|477548|477549|477550|477551|477552|477553|477554|477555|477556|477557|477558|477559|477560|477561|477562|477563|477564|477565|477566|477567|477568|477569|477570|477571|477572|477573|477574|477575|477576|477577|477578|477579|477580|477581|477582|477583|477584|477585|477586|477587|477588|477589|477590|477591|477592|477593|477594|477595|477596|477597|477598|477599|477600|477601|477602|477603|477604|477605|477606|477607|477608|477609|477610|477611|477612|477613|477614|477615|477616|477617|477618|477619|477620|477621|477622|477623|477624|477625|477626|477627|477628|477629|477630|477631|477632|477633|477634|477635|477636|477637|477638|477639|477640|477641|477642|477643|477644|477645|477646|477647|477648|477649|477650|477651|477652|477653|477654|477655|477656|477657|477658|477659|477660|477661|477662|477663|477664|477665|477666|477667|477668|477669|477670|477671|477672|477673|477674|477675|477676|477677|477678|477679|477680|477681|477682|477683|477684|477685|477686|477687|477688|477689|477690|477691|477692|477693|477694|477695|477696|477697|477698|477699|477700|477701|477702|477703|477704|477705|477706|477707|477708|477709|477710|477711|477712|477713|477714|477715|477716|477717|477718|477719|477720|477721|477722|477723|477724|477725|477726|477727|477728|477729|477730|477731|477732|477733|477734|477735|477736|477737|477738|477739|477740|477741|477742|477743|477744|477745|477746|477747|477748|477749|477750|477751|477752|477753|477754|477755|477756|477757|477758|477759|477760|477761|477762|477763|477764|477765|477766|477767|477768|477769|477770|477771|477772|477773|477774|477775|477776|477777|477778|477779|477780|477781|477782|477783|477784|477785|477786|477787|477788|477789|477790|477791|477792|477793|477794|477795|477796|477797|477798|477799|477800|477801|477802|477803|477804|477805|477806|477807|477808|477809|477810|477811|477812|477813|477814|477815|477816|477817|477818|477819|477820|477821|477822|477823|477824|477825|477826|477827|477828|477829|477830|477831|477832|477833|477834|477835|477836|477837|477838|477839|477840|477841|477842|477843|477844|477845|477846|477847|477848|477849|477850|477851|477852|477853|477854|477855|477856|477857|477858|477859|477860|477861|477862|477863|477864|477865|477866|477867|477868|477869|477870|477871|477872|477873|477874|477875|477876|477877|477878|477879|477880|477881|477882|477883|477884|477885|477886|477887|477888|477889|477890|477891|477892|477893|477894|477895|477896|477897|477898|477899|477900|477901|477902|477903|477904|477905|477906|477907|477908|477909|477910|477911|477912|477913|477914|477915|477916|477917|477918|477919|477920|477921|477922|477923|477924|477925|477926|477927|477928|477929|477930|477931|477932|477933|477934|477935|477936|477937|477938|477939|477940|477941|477942|477943|477944|477945|477946|477947|477948|477949|477950|477951|477952|477953|477954|477955|477956|477957|477958|477959|477960|477961|477962|477963|477964|477965|477966|477967|477968|477969|477970|477971|477972|477973|477974|477975|477976|477977|477978|477979|477980|477981|477982|477983|477984|477985|477986|477987|477988|477989|477990|477991|477992|477993|477994|477995|477996|477997|477998|477999|478000|478001|478002|478003|478004|478005|478006|478007|478008|478009|478010|478011|478012|478013|478014|478015|478016|478017|478018|478019|478020|478021|478022|478023|478024|478025|478026|478027|478028|478029|478030|478031|478032|478033|478034|478035|478036|478037|478038|478039|478040|478041|478042|478043|478044|478045|478046|478047|478048|478049|478050|478051|478052|478053|478054|478055|478056|478057|478058|478059|478060|478061|478062|478063|478064|478065|478066|478067|478068|478069|478070|478071|478072|478073|478074|478075|478076|478077|478078|478079|478080|478081|478082|478083|478084|478085|478086|478087|478088|478089|478090|478091|478092|478093|478094|478095|478096|478097|478098|478099|478100|478101|478102|478103|478104|478105|478106|478107|478108|478109|478110|478111|478112|478113|478114|478115|478116|478117|478118|478119|478120|478121|478122|478123|478124|478125|478126|478127|478128|478129|478130|478131|478132|478133|478134|478135|478136|478137|478138|478139|478140|478141|478142|478143|478144|478145|478146|478147|478148|478149|478150|478151|478152|478153|478154|478155|478156|478157|478158|478159|478160|478161|478162|478163|478164|478165|478166|478167|478168|478169|478170|478171|478172|478173|478174|478175|478176|478177|478178|478179|478180|478181|478182|478183|478184|478185|478186|478187|478188|478189|478190|478191|478192|478193|478194|478195|478196|478197|478198|478199|478200|478201|478202|478203|478204|478205|478206|478207|478208|478209|478210|478211|478212|478213|478214|478215|478216|478217|478218|478219|478220|478221|478222|478223|478224|478225|478226|478227|478228|478229|478230|478231|478232|478233|478234|478235|478236|478237|478238|478239|478240|478241|478242|478243|478244|478245|478246|478247|478248|478249|478250|478251|478252|478253|478254|478255|478256|478257|478258|478259|478260|478261|478262|478263|478264|478265|478266|478267|478268|478269|478270|478271|478272|478273|478274|478275|478276|478277|478278|478279|478280|478281|478282|478283|478284|478285|478286|478287|478288|478289|478290|478291|478292|478293|478294|478295|478296|478297|478298|478299|478300|478301|478302|478303|478304|478305|478306|478307|478308|478309|478310|478311|478312|478313|478314|478315|478316|478317|478318|478319|478320|478321|478322|478323|478324|478325|478326|478327|478328|478329|478330|478331|478332|478333|478334|478335|478336|478337|478338|478339|478340|478341|478342|478343|478344|478345|478346|478347|478348|478349|478350|478351|478352|478353|478354|478355|478356|478357|478358|478359|478360|478361|478362|478363|478364|478365|478366|478367|478368|478369|478370|478371|478372|478373|478374|478375|478376|478377|478378|478379|478380|478381|478382|478383|478384|478385|478386|478387|478388|478389|478390|478391|478392|478393|478394|478395|478396|478397|478398|478399|478400|478401|478402|478403|478404|478405|478406|478407|478408|478409|478410|478411|478412|478413|478414|478415|478416|478417|478418|478419|478420|478421|478422|478423|478424|478425|478426|478427|478428|478429|478430|478431|478432|478433|478434|478435|478436|478437|478438|478439|478440|478441|478442|478443|478444|478445|478446|478447|478448|478449|478450|478451|478452|478453|478454|478455|478456|478457|478458|478459|478460|478461|478462|478463|478464|478465|478466|478467|478468|478469|478470|478471|478472|478473|478474|478475|478476|478477|478478|478479|478480|478481|478482|478483|478484|478485|478486|478487|478488|478489|478490|478491|478492|478493|478494|478495|478496|478497|478498|478499|478500|478501|478502|478503|478504|478505|478506|478507|478508|478509|478510|478511|478512|478513|478514|478515|478516|478517|478518|478519|478520|478521|478522|478523|478524|478525|478526|478527|478528|478529|478530|478531|478532|478533|478534|478535|478536|478537|478538|478539|478540|478541|478542|478543|478544|478545|478546|478547|478548|478549|478550|478551|478552|478553|478554|478555|478556|478557|478558|478559|478560|478561|478562|478563|478564|478565|478566|478567|478568|478569|478570|478571|478572|478573|478574|478575|478576|478577|478578|478579|478580|478581|478582|478583|478584|478585|478586|478587|478588|478589|478590|478591|478592|478593|478594|478595|478596|478597|478598|478599|478600|478601|478602|478603|478604|478605|478606|478607|478608|478609|478610|478611|478612|478613|478614|478615|478616|478617|478618|478619|478620|478621|478622|478623|478624|478625|478626|478627|478628|478629|478630|478631|478632|478633|478634|478635|478636|478637|478638|478639|478640|478641|478642|478643|478644|478645|478646|478647|478648|478649|478650|478651|478652|478653|478654|478655|478656|478657|478658|478659|478660|478661|478662|478663|478664|478665|478666|478667|478668|478669|478670|478671|478672|478673|478674|478675|478676|478677|478678|478679|478680|478681|478682|478683|478684|478685|478686|478687|478688|478689|478690|478691|478692|478693|478694|478695|478696|478697|478698|478699|478700|478701|478702|478703|478704|478705|478706|478707|478708|478709|478710|478711|478712|478713|478714|478715|478716|478717|478718|478719|478720|478721|478722|478723|478724|478725|478726|478727|478728|478729|478730|478731|478732|478733|478734|478735|478736|478737|478738|478739|478740|478741|478742|478743|478744|478745|478746|478747|478748|478749|478750|478751|478752|478753|478754|478755|478756|478757|478758|478759|478760|478761|478762|478763|478764|478765|478766|478767|478768|478769|478770|478771|478772|478773|478774|478775|478776|478777|478778|478779|478780|478781|478782|478783|478784|478785|478786|478787|478788|478789|478790|478791|478792|478793|478794|478795|478796|478797|478798|478799|478800|478801|478802|478803|478804|478805|478806|478807|478808|478809|478810|478811|478812|478813|478814|478815|478816|478817|478818|478819|478820|478821|478822|478823|478824|478825|478826|478827|478828|478829|478830|478831|478832|478833|478834|478835|478836|478837|478838|478839|478840|478841|478842|478843|478844|478845|478846|478847|478848|478849|478850|478851|478852|478853|478854|478855|478856|478857|478858|478859|478860|478861|478862|478863|478864|478865|478866|478867|478868|478869|478870|478871|478872|478873|478874|478875|478876|478877|478878|478879|478880|478881|478882|478883|478884|478885|478886|478887|478888|478889|478890|478891|478892|478893|478894|478895|478896|478897|478898|478899|478900|478901|478902|478903|478904|478905|478906|478907|478908|478909|478910|478911|478912|478913|478914|478915|478916|478917|478918|478919|478920|478921|478922|478923|478924|478925|478926|478927|478928|478929|478930|478931|478932|478933|478934|478935|478936|478937|478938|478939|478940|478941|478942|478943|478944|478945|478946|478947|478948|478949|478950|478951|478952|478953|478954|478955|478956|478957|478958|478959|478960|478961|478962|478963|478964|478965|478966|478967|478968|478969|478970|478971|478972|478973|478974|478975|478976|478977|478978|478979|478980|478981|478982|478983|478984|478985|478986|478987|478988|478989|478990|478991|478992|478993|478994|478995|478996|478997|478998|478999|479000|479001|479002|479003|479004|479005|479006|479007|479008|479009|479010|479011|479012|479013|479014|479015|479016|479017|479018|479019|479020|479021|479022|479023|479024|479025|479026|479027|479028|479029|479030|479031|479032|479033|479034|479035|479036|479037|479038|479039|479040|479041|479042|479043|479044|479045|479046|479047|479048|479049|479050|479051|479052|479053|479054|479055|479056|479057|479058|479059|479060|479061|479062|479063|479064|479065|479066|479067|479068|479069|479070|479071|479072|479073|479074|479075|479076|479077|479078|479079|479080|479081|479082|479083|479084|479085|479086|479087|479088|479089|479090|479091|479092|479093|479094|479095|479096|479097|479098|479099|479100|479101|479102|479103|479104|479105|479106|479107|479108|479109|479110|479111|479112|479113|479114|479115|479116|479117|479118|479119|479120|479121|479122|479123|479124|479125|479126|479127|479128|479129|479130|479131|479132|479133|479134|479135|479136|479137|479138|479139|479140|479141|479142|479143|479144|479145|479146|479147|479148|479149|479150|479151|479152|479153|479154|479155|479156|479157|479158|479159|479160|479161|479162|479163|479164|479165|479166|479167|479168|479169|479170|479171|479172|479173|479174|479175|479176|479177|479178|479179|479180|479181|479182|479183|479184|479185|479186|479187|479188|479189|479190|479191|479192|479193|479194|479195|479196|479197|479198|479199|479200|479201|479202|479203|479204|479205|479206|479207|479208|479209|479210|479211|479212|479213|479214|479215|479216|479217|479218|479219|479220|479221|479222|479223|479224|479225|479226|479227|479228|479229|479230|479231|479232|479233|479234|479235|479236|479237|479238|479239|479240|479241|479242|479243|479244|479245|479246|479247|479248|479249|479250|479251|479252|479253|479254|479255|479256|479257|479258|479259|479260|479261|479262|479263|479264|479265|479266|479267|479268|479269|479270|479271|479272|479273|479274|479275|479276|479277|479278|479279|479280|479281|479282|479283|479284|479285|479286|479287|479288|479289|479290|479291|479292|479293|479294|479295|479296|479297|479298|479299|479300|479301|479302|479303|479304|479305|479306|479307|479308|479309|479310|479311|479312|479313|479314|479315|479316|479317|479318|479319|479320|479321|479322|479323|479324|479325|479326|479327|479328|479329|479330|479331|479332|479333|479334|479335|479336|479337|479338|479339|479340|479341|479342|479343|479344|479345|479346|479347|479348|479349|479350|479352|479353|479354|479355|479356|479357|479358|479359|479360|479361|479362|479363|479364|479365|479366|479367|479368|479369|479370|479371|479372|479373|479374|479375|479376|479377|479378|479379|479380|479381|479382|479383|479384|479385|479386|479387|479388|479389|479390|479391|479392|479393|479394|479395|479396|479397|479398|479399|479400|479401|479402|479403|479404|479405|479406|479407|479408|479409|479410|479411|479412|479413|479414|479415|479416|479417|479418|479419|479420|479421|479422|479423|479424|479425|479426|479427|479428|479429|479430|479431|479432|479433|479434|479435|479436|479437|479438|479439|479440|479441|479442|479443|479444|479445|479446|479447|479448|479449|479450|479451|479452|479453|479454|479455|479456|479457|479458|479459|479460|479461|479462|479463|479464|479465|479466|479467|479468|479469|479470|479471|479472|479473|479474|479475|479476|479477|479478|479479|479480|479481|479482|479483|479484|479485|479486|479487|479488|479489|479490|479491|479492|479493|479494|479495|479496|479497|479498|479499|479500|479501|479502|479503|479504|479505|479506|479507|479508|479509|479510|479511|479512|479513|479514|479515|479517|479518|479519|479520|479521|479522|479523|479524|479525|479526|479527|479528|479529|479530|479531|479532|479533|479534|479535|479536|479537|479538|479539|479540|479541|479542|479543|479544|479545|479546|479547|479548|479549|479550|479551|479552|479553|479554|479555|479556|479557|479558|479559|479560|479561|479562|479563|479564|479565|479566|479567|479568|479569|479570|479571|479572|479573|479574|479575|479576|479577|479578|479579|479580|479581|479582|479583|479584|479585|479586|479587|479588|479589|479590|479591|479592|479593|479594|479595|479596|479597|479598|479599|479600|479601|479602|479603|479604|479605|479606|479607|479608|479609|479610|479611|479612|479613|479614|479615|479616|479617|479618|479619|479620|479621|479622|479623|479624|479625|479626|479627|479628|479629|479630|479631|479632|479633|479634|479635|479636|479637|479638|479639|479640|479641|479642|479643|479644|479645|479646|479647|479648|479649|479650|479651|479652|479653|479654|479655|479656|479657|479658|479659|479660|479661|479662|479663|479664|479665|479666|479667|479668|479669|479670|479671|479672|479673|479674|479675|479676|479677|479678|479679|479680|479681|479682|479683|479684|479685|479686|479687|479688|479689|479690|479691|479692|479693|479694|479695|479696|479697|479698|479699|479700|479701|479702|479703|479704|479705|479706|479707|479708|479709|479710|479711|479712|479713|479714|479715|479716|479717|479718|479719|479720|479721|479722|479723|479724|479725|479726|479727|479728|479729|479730|479731|479732|479733|479734|479735|479736|479737|479738|479739|479740|479741|479742|479743|479744|479745|479746|479747|479749|479750|479751|479752|479753|479754|479755|479756|479757|479758|479759|479760|479761|479762|479763|479764|479765|479766|479767|479768|479769|479770|479771|479772|479773|479774|479775|479776|479777|479778|479779|479780|479781|479782|479783|479784|479785|479786|479787|479788|479789|479790|479791|479792|479793|479794|479795|479796|479797|479798|479799|479800|479801|479802|479803|479804|479805|479806|479807|479808|479809|479810|479811|479812|479813|479814|479815|479816|479817|479818|479819|479820|479821|479822|479823|479824|479825|479826|479827|479828|479829|479830|479831|479832|479833|479834|479835|479836|479837|479838|479839|479840|479841|479842|479843|479844|479845|479846|479847|479848|479849|479850|479851|479852|479853|479854|479855|479856|479857|479858|479859|479860|479861|479862|479863|479864|479865|479866|479867|479868|479869|479870|479871|479872|479873|479874|479875|479876|479877|479878|479879|479880|479881|479882|479883|479884|479885|479886|479887|479888|479889|479890|479891|479892|479893|479894|479895|479896|479897|479898|479899|479900|479901|479902|479903|479904|479905|479906|479907|479908|479909|479910|479911|479912|479913|479914|479915|479916|479917|479918|479919|479920|479921|479922|479923|479924|479925|479926|479927|479928|479929|479930|479931|479932|479933|479934|479935|479936|479937|479938|479939|479940|479941|479942|479943|479944|479945|479946|479947|479948|479949|479950|479951|479952|479953|479954|479955|479956|479957|479958|479959|479960|479961|479962|479963|479964|479965|479966|479967|479968|479969|479970|479971|479972|479973|479974|479975|479976|479977|479978|479979|479980|479981|479982|479983|479984|479985|479986|479987|479988|479989|479990|479991|479992|479993|479994|479995|479996|479997|479998|479999|480000|480001|480002|480003|480004|480005|480006|480007|480008|480009|480010|480011|480012|480013|480014|480015|480016|480017|480018|480019|480020|480021|480022|480023|480024|480025|480026|480027|480028|480029|480030|480031|480032|480033|480034|480035|480036|480037|480038|480039|480040|480041|480042|480043|480044|480045|480046|480047|480048|480049|480050|480051|480052|480053|480054|480055|480056|480057|480058|480059|480060|480061|480062|480063|480064|480065|480066|480067|480068|480069|480070|480071|480072|480073|480074|480075|480076|480077|480078|480079|480080|480081|480082|480083|480084|480085|480086|480087|480088|480089|480090|480091|480092|480093|480094|480095|480096|480097|480098|480099|480100|480101|480102|480103|480104|480105|480106|480107|480108|480109|480110|480111|480112|480113|480114|480115|480116|480117|480118|480119|480120|480121|480122|480123|480124|480125|480126|480127|480128|480129|480130|480131|480132|480133|480134|480135|480136|480137|480138|480139|480140|480141|480142|480143|480144|480145|480146|480147|480148|480149|480150|480151|480152|480153|480154|480155|480156|480157|480158|480159|480160|480161|480162|480163|480164|480165|480166|480167|480168|480169|480170|480171|480172|480173|480174|480175|480176|480177|480178|480179|480180|480181|480182|480183|480184|480185|480186|480187|480188|480189|480190|480191|480192|480193|480194|480195|480196|480197|480198|480199|480200|480201|480202|480203|480204|480205|480206|480207|480208|480209|480210|480211|480212|480213|480214|480215|480216|480217|480218|480219|480220|480221|480222|480223|480224|480225|480226|480227|480228|480229|480230|480231|480232|480233|480234|480235|480236|480237|480238|480239|480240|480241|480242|480243|480244|480245|480246|480247|480248|480249|480250|480251|480252|480253|480254|480255|480256|480257|480258|480259|480260|480261|480262|480263|480264|480265|480266|480267|480268|480269|480270|480271|480272|480273|480274|480275|480276|480277|480278|480279|480280|480281|480282|480283|480284|480285|480286|480287|480288|480289|480290|480291|480292|480293|480294|480295|480296|480297|480298|480299|480300|480301|480302|480303|480304|480305|480306|480307|480308|480309|480310|480311|480312|480313|480314|480315|480316|480317|480318|480319|480320|480321|480322|480323|480324|480325|480326|480327|480328|480329|480330|480331|480332|480333|480334|480335|480336|480337|480338|480339|480340|480341|480342|480343|480344|480345|480346|480347|480348|480349|480350|480351|480352|480353|480354|480355|480356|480357|480358|480359|480360|480361|480362|480363|480364|480365|480366|480367|480368|480369|480370|480371|480372|480373|480374|480375|480376|480377|480378|480379|480380|480381|480382|480383|480384|480385|480386|480387|480388|480389|480390|480391|480392|480393|480394|480395|480396|480468|480469|480475|480485|480488|480489|480492|480495|480499|480500|480501|481885|481887|481898|481920|481928|482128|482340|482341|482342|482343|482344|482345|482346|482347|482348|482349|482350|482351|482352|482353|482354|482355|482356|482357|482358|482359|482360|482361|482362|482363|482364|482365|482366|482367|482368|482369|482370|482371|482372|482373|482374|482375|482376|482377|482378|482379|482380|482381|482382|482384|482385|482386|482388|482389|482390|482391|482392|482393|482394|482395|482396|482397|482398|482399|482400|482401|482402|482403|482404|482405|482406|482407|482408|482409|482410|482411|482412|482413|482414|482415|482416|482417|482418|482419|482420|482421|482422|482423|482424|482425|482426|482427|482428|482429|482430|482431|482432|482433|482434|482435|482436|482437|482438|482439|482440|482441|482442|482443|482444|482445|482446|482447|482448|482449|482450|482451|482452|482453|482454|482455|482456|482457|482458|482459|482460|482461|482462|482463|482464|482465|482466|482467|482468|482469|482470|482471|482472|482473|482474|482475|482476|482477|482478|482479|482480|482481|482482|482483|482484|482485|482486|482487|482488|482489|482490|482491|482492|482493|482494|482495|482496|482497|482498|482499|482500|482501|482502|482503|482504|482505|482506|482507|482508|482509|482510|482511|482512|482513|482514|482515|482516|482517|482518|482519|482520|482521|482522|482523|482524|482526|482527|482528|482529|482530|482531|482532|482533|482534|482535|482536|482537|482538|482539|482540|482541|482542|482543|482544|482545|482546|482547|482548|482549|482550|482551|482552|482553|482554|482555|482557|482558|482559|482560|482561|482562|482563|482564|482565|482566|482567|482568|482569|482570|482571|482572|482573|482574|482575|482576|482577|482578|482579|482580|482581|482582|482583|482584|482585|482586|482587|482588|482589|482590|482591|482592|482593|482594|482595|482596|482597|482598|482599|482600|482601|482602|482603|482604|482605|482606|482607|482608|482609|482610|482611|482612|482613|482614|482615|482616|482617|482618|482619|482620|482621|482622|482623|482624|482625|482626|482627|482628|482629|482630|482631|482632|482633|482634|482635|482636|482637|482638|482639|482640|482641|482642|482643|482644|482645|482646|482647|482648|482649|482650|482651|482652|482653|482654|482655|482656|482657|482658|482659|482660|482661|482662|482663|482664|482665|482666|482667|482668|482669|482670|482671|482672|482673|482674|482675|482676|482677|482678|482679|482680|482681|482682|482683|482684|482685|482686|482687|482688|482689|482690|482691|482692|482693|482694|482695|482696|482697|482698|482699|482700|482701|482702|482703|482704|482705|482706|482707|482708|482709|482710|482711|482712|482713|482714|482715|482716|482717|482718|482719|482721|482722|482723|482724|482725|482726|482727|482728|482730|482731|482732|482733|482734|482735|482736|482737|482738|482739|482740|482741|482742|482743|482744|482745|482746|482747|482748|482749|482750|482751|482752|482753|482754|482755|482756|482757|482758|482759|482760|482761|482762|482763|482764|482765|482766|482767|482768|482769|482770|482771|482772|482773|482774|482775|482777|482778|482779|482780|482781|482782|482783|482784|482785|482786|482787|482788|482789|482790|482791|482792|482793|482794|482795|482796|482797|482798|482800|482801|482804|482805|482806|482807|482808|482809|482811|482812|482813|482814|482815|482816|482817|482818|482819|482820|482821|482822|482823|482824|482825|482826|482827|482828|482829|482830|482831|482832|482833|482834|482835|482836|482837|482838|482839|482841|482842|482843|482844|482845|482846|482847|482848|482849|482850|482851|482852|482853|482854|482855|482856|482857|482858|482859|482860|482861|482862|482863|482864|482865|482866|482868|482869|482870|482871|482872|482873|482874|482875|482876|482877|482878|482879|482880|482881|482882|482883|482884|482885|482886|482887|482888|482889|482890|482891|482892|482893|482894|482895|482896|482897|482898|482899|482900|482901|482902|482904|482905|482906|482907|482908|482909|482910|482911|482912|482913|482914|482915|482916|482917|482918|482919|482920|482921|482922|482923|482924|482925|482926|482927|482928|482929|482930|482931|482932|482933|482934|482935|482936|482937|482938|482939|482940|482941|482942|482943|482944|482945|482946|482947|482948|482949|482950|482951|482952|482953|482955|482956|482957|482958|482959|482960|482961|482963|482964|482965|482966|482967|482968|482969|482970|482971|482972|482973|482974|482975|482976|482977|482978|482979|482980|482981|482982|482983|482984|482985|482986|482987|482988|482989|482990|482991|482992|482993|482994|482995|482996|482997|482998|482999|483000|483001|483002|483003|483004|483005|483006|483007|483008|483009|483010|483011|483012|483013|483014|483015|483016|483017|483018|483019|483020|483021|483022|483023|483024|483025|483026|483027|483028|483029|483030|483031|483032|483033|483034|483035|483036|483037|483038|483039|483040|483041|483042|483043|483044|483045|483046|483047|483048|483049|483050|483051|483052|483053|483054|483055|483056|483057|483058|483059|483060|483061|483062|483063|483064|483065|483066|483067|483068|483069|483070|483071|483072|483073|483074|483075|483076|483078|483079|483080|483081|483082|483083|483084|483085|483086|483087|483088|483089|483090|483091|483092|483094|483095|483096|483098|483099|483100|483101|483102|483103|483104|483105|483106|483107|483119|483120|483121|483122|483123|483124|483125|483126|483127|483128|483129|483130|483131|483132|483133|483134|483135|483136|483137|483138|483139|483140|483141|483142|483143|483144|483145|483146|483147|483148|483149|483150|483151|483152|483153|483154|483155|483156|483157|483158|483159|483160|483161|483162|483163|483164|483165|483167|483169|483171|483172|483173|483175|483176|483178|483182|483183|483185|483186|483189|483190|483191|483192|483193|483195|483196|483197|483199|483201|483202|483205|483207|483212|483215|483217|483221|483230|483231|483232|483234|483235|483237|483239|483240|483241|483242|483243|483244|483245|483246|483247|483248|483250|483251|483252|483254|483255|483256|483257|483258|483259|483260|483261|483262|483263|483264|483265|483266|483267|483268|483269|483270|483271|483272|483273|483274|483275|483276|483277|483278|483279|483280|483281|483282|483283|483284|483285|483286|483287|483288|483289|483290|483291|483292|483293|483294|483295|483296|483297|483298|483299|483300|483301|483302|483303|483304|483305|483306|483307|483308|483309|483310|483311|483312|483313|483314|483315|483316|483317|483318|483319|483320|483321|483322|483323|483324|483325|483326|483327|483328|483329|483330|483331|483332|483333|483334|483335|483336|483337|483338|483339|483340|483341|483342|483343|483344|483346|483347|483348|483349|483350|483351|483352|483353|483354|483355|483356|483357|483358|483359|483360|483361|483362|483363|483364|483365|483366|483367|483368|483369|483370|483371|483372|483373|483374|483375|483376|483377|483378|483379|483380|483381|483382|483383|483384|483385|483386|483387|483388|483389|483390|483391|483392|483393|483394|483395|483396|483397|483398|483399|483400|483401|483403|483404|483405|483406|483407|483408|483409|483410|483411|483412|483413|483414|483415|483416|483417|483418|483419|483420|483421|483422|483423|483424|483425|483426|483427|483428|483429|483430|483431|483432|483433|483434|483435|483436|483437|483438|483439|483440|483441|483442|483443|483444|483445|483446|483447|483448|483449|483450|483451|483452|483453|483454|483455|483456|483457|483458|483459|483460|483461|483462|483463|483464|483465|483466|483467|483468|483469|483470|483471|483472|483473|483474|483475|483476|483477|483478|483479|483480|483481|483482|483483|483484|483485|483486|483487|483488|483489|483490|483491|483492|483493|483494|483495|483496|483497|483498|483499|483500|483501|483502|483503|483504|483505|483506|483507|483508|483509|483510|483512|483513|483514|483515|483516|483517|483518|483519|483520|483521|483522|483523|483524|483525|483526|483527|483528|483529|483530|483531|483532|483533|483534|483535|483536|483537|483538|483539|483540|483541|483542|483543|483544|483545|483546|483547|483548|483550|483551|483552|483553|483554|483555|483556|483557|483558|483559|483560|483561|483562|483563|483564|483565|483566|483567|483568|483569|483570|483571|483572|483573|483574|483575|483576|483577|483578|483579|483580|483581|483582|483583|483584|483585|483586|483587|483588|483589|483590|483591|483592|483593|483594|483595|483596|483597|483598|483599|483600|483601|483602|483603|483604|483605|483606|483607|483608|483609|483610|483611|483612|483613|483614|483615|483616|483617|483618|483619|483620|483621|483622|483623|483624|483625|483626|483627|483628|483629|483630|483631|483632|483633|483634|483635|483636|483637|483638|483639|483640|483641|483642|483643|483644|483645|483646|483647|483648|483649|483650|483651|483652|483653|483654|483655|483656|483657|483658|483659|483660|483661|483662|483663|483664|483665|483666|483667|483668|483669|483670|483671|483672|483673|483674|483675|483676|483677|483678|483679|483680|483681|483682|483683|483684|483685|483686|483687|483688|483689|483690|483691|483692|483693|483694|483695|483696|483697|483698|483699|483700|483701|483702|483703|483704|483705|483706|483707|483708|483709|483710|483711|483712|483713|483714|483715|483716|483717|483718|483719|483720|483721|483722|483723|483724|483725|483726|483727|483728|483729|483730|483731|483732|483733|483734|483735|483736|483737|483738|483739|483740|483741|483742|483743|483744|483745|483746|483747|483748|483749|483750|483751|483752|483753|483754|483755|483756|483757|483758|483759|483760|483761|483762|483763|483764|483765|483766|483767|483768|483769|483770|483771|483773|483774|483775|483776|483777|483778|483779|483780|483781|483782|483783|483784|483785|483786|483787|483788|483789|483790|483791|483792|483793|483794|483795|483796|483797|483798|483799|483800|483801|483802|483803|483804|483805|483806|483807|483808|483809|483810|483811|483812|483813|483814|483815|483816|483817|483818|483819|483820|483822|483823|483824|483825|483826|483827|483828|483829|483830|483831|483832|483833|483834|483835|483836|483837|483838|483839|483840|483841|483842|483843|483844|483845|483846|483847|483848|483849|483850|483851|483852|483853|483854|483855|483856|483857|483858|483859|483860|483861|483862|483863|483864|483865|483866|483867|483868|483869|483870|483871|483872|483873|483874|483875|483876|483877|483878|483879|483880|483881|483883|483884|483885|483886|483887|483888|483889|483890|483891|483892|483893|483894|483895|483896|483897|483898|483899|483900|483901|483902|483903|483904|483905|483906|483907|483908|483909|483910|483911|483912|483913|483914|483915|483916|483917|483918|483919|483920|483921|483922|483923|483924|483925|483926|483927|483928|483929|483930|483931|483932|483933|483934|483935|483936|483937|483938|483939|483940|483941|483942|483943|483944|483945|483946|483947|483948|483949|483950|483951|483952|483953|483954|483955|483956|483957|483958|483959|483960|483961|483962|483963|483964|483965|483966|483967|483968|483969|483970|483971|483972|483973|483974|483975|483976|483977|483978|483979|483980|483981|483982|483983|483984|483985|483986|483987|483988|483989|483990|483991|483992|483993|483994|483995|483996|483997|483998|483999|484000|484001|484002|484003|484004|484005|484006|484007|484008|484009|484010|484011|484012|484013|484014|484015|484016|484017|484018|484019|484020|484021|484022|484023|484024|484025|484026|484027|484028|484029|484030|484031|484032|484033|484034|484035|484036|484037|484038|484039|484040|484041|484042|484043|484044|484045|484046|484047|484048|484049|484050|484051|484052|484053|484054|484055|484056|484057|484058|484059|484060|484061|484062|484063|484064|484065|484066|484067|484068|484069|484070|484071|484072|484073|484074|484075|484076|484077|484078|484079|484080|484081|484082|484083|484084|484085|484086|484087|484088|484089|484090|484091|484092|484093|484094|484095|484096|484097|484098|484100|484101|484103|484104|484105|484106|484107|484108|484109|484110|484111|484112|484113|484114|484115|484116|484117|484118|484119|484120|484121|484122|484123|484124|484125|484126|484127|484128|484129|484130|484131|484132|484133|484134|484136|484137|484138|484139|484140|484141|484142|484143|484144|484145|484146|484147|484148|484149|484150|484151|484152|484153|484154|484155|484156|484157|484158|484159|484160|484161|484162|484163|484164|484165|484166|484167|484168|484169|484170|484171|484172|484173|484174|484175|484176|484177|484178|484179|484180|484181|484182|484183|484184|484186|484187|484188|484189|484190|484191|484192|484193|484194|484195|484196|484197|484198|484199|484200|484201|484202|484203|484204|484205|484206|484207|484208|484209|484210|484211|484212|484213|484214|484215|484216|484217|484218|484220|484221|484222|484223|484224|484225|484226|484227|484228|484229|484230|484231|484232|484233|484234|484235|484236|484237|484238|484239|484240|484241|484242|484243|484244|484245|484246|484247|484248|484249|484250|484251|484252|484253|484254|484255|484256|484257|484258|484259|484260|484261|484262|484263|484264|484265|484266|484267|484268|484269|484270|484271|484272|484273|484274|484275|484276|484277|484278|484279|484280|484281|484282|484283|484284|484285|484286|484287|484288|484289|484290|484291|484292|484293|484294|484295|484296|484297|484298|484299|484300|484301|484302|484303|484304|484305|484306|484307|484308|484309|484310|484311|484312|484313|484314|484315|484316|484317|484318|484319|484320|484321|484322|484323|484324|484325|484326|484327|484328|484329|484330|484331|484332|484333|484334|484335|484336|484337|484338|484339|484340|484341|484342|484343|484344|484345|484346|484347|484348|484349|484350|484351|484352|484353|484354|484355|484356|484357|484358|484359|484360|484361|484362|484363|484364|484365|484366|484367|484368|484369|484370|484371|484372|484373|484374|484375|484376|484377|484378|484379|484380|484381|484382|484383|484384|484385|484386|484387|484388|484389|484390|484391|484392|484393|484394|484395|484396|484397|484398|484399|484400|484401|484402|484403|484404|484405|484406|484407|484408|484409|484410|484411|484412|484413|484414|484415|484416|484417|484418|484419|484420|484421|484422|484423|484424|484425|484427|484428|484429|484430|484431|484432|484433|484434|484435|484436|484437|484438|484439|484440|484441|484442|484443|484444|484445|484446|484447|484448|484449|484450|484451|484452|484453|484454|484455|484456|484457|484458|484459|484460|484461|484462|484463|484464|484465|484466|484467|484468|484469|484470|484471|484472|484473|484474|484475|484476|484477|484478|484479|484480|484481|484482|484483|484484|484485|484486|484487|484488|484489|484490|484491|484492|484493|484494|484495|484496|484497|484498|484499|484500|484501|484502|484503|484504|484505|484506|484507|484508|484509|484510|484511|484512|484513|484514|484515|484516|484517|484518|484519|484520|484521|484522|484523|484524|484525|484526|484527|484528|484529|484530|484531|484532|484533|484534|484535|484536|484537|484538|484539|484540|484541|484542|484543|484544|484545|484546|484547|484548|484549|484550|484551|484552|484553|484554|484555|484556|484557|484558|484559|484560|484561|484562|484563|484564|484565|484566|484567|484568|484569|484570|484571|484572|484573|484574|484575|484576|484577|484578|484579|484580|484581|484582|484583|484584|484585|484586|484587|484588|484589|484590|484591|484592|484593|484594|484595|484596|484597|484598|484599|484600|484601|484602|484603|484604|484605|484606|484607|484608|484609|484610|484611|484612|484613|484614|484615|484616|484617|484618|484619|484620|484621|484622|484623|484624|484625|484626|484627|484628|484629|484630|484631|484632|484633|484634|484635|484636|484637|484638|484639|484640|484641|484642|484643|484644|484645|484646|484647|484648|484649|484650|484651|484652|484653|484654|484655|484656|484657|484658|484659|484660|484661|484662|484663|484664|484665|484666|484667|484668|484669|484670|484671|484672|484673|484674|484675|484676|484677|484678|484679|484680|484681|484682|484683|484684|484685|484686|484687|484688|484689|484690|484691|484692|484693|484694|484695|484696|484697|484698|484699|484700|484701|484702|484703|484704|484705|484706|484707|484708|484709|484710|484711|484712|484713|484714|484715|484716|484717|484718|484719|484720|484721|484722|484723|484724|484725|484726|484727|484728|484729|484730|484731|484732|484733|484734|484735|484736|484737|484738|484739|484740|484741|484742|484743|484744|484745|484746|484747|484748|484749|484750|484751|484752|484753|484754|484755|484756|484757|484758|484759|484760|484761|484762|484763|484764|484765|484766|484767|484768|484769|484770|484771|484772|484773|484774|484775|484776|484777|484778|484779|484780|484781|484782|484783|484784|484785|484786|484787|484788|484789|484790|484791|484792|484793|484794|484795|484796|484797|484798|484799|484800|484801|484802|484803|484804|484805|484806|484807|484808|484809|484810|484811|484812|484813|484814|484815|484816|484817|484818|484819|484820|484821|484822|484823|484824|484825|484826|484827|484828|484829|484830|484831|484832|484833|484834|484835|484836|484837|484838|484839|484840|484841|484842|484843|484844|484845|484846|484847|484848|484849|484850|484851|484852|484853|484854|484855|484856|484857|484858|484859|484860|484861|484862|484863|484864|484865|484866|484867|484868|484869|484870|484871|484872|484873|484874|484875|484876|484877|484878|484879|484880|484881|484882|484883|484884|484885|484886|484887|484888|484889|484890|484891|484892|484893|484894|484895|484896|484897|484898|484899|484900|484901|484902|484903|484904|484905|484906|484907|484908|484909|484910|484911|484912|484913|484914|484915|484916|484917|484918|484919|484920|484921|484922|484923|484924|484925|484926|484927|484928|484929|484930|484931|484932|484933|484934|484935|484936|484937|484938|484939|484940|484941|484942|484943|484944|484945|484946|484947|484948|484949|484950|484951|484952|484953|484954|484955|484956|484957|484958|484959|484960|484961|484962|484963|484964|484965|484966|484967|484968|484969|484970|484971|484972|484973|484974|484975|484976|484977|484978|484979|484980|484981|484982|484983|484984|484985|484986|484987|484988|484989|484990|484991|484992|484993|484994|484995|484996|484997|484998|484999|485000|485001|485002|485003|485004|485005|485006|485007|485008|485009|485010|485011|485012|485013|485014|485015|485016|485017|485018|485019|485020|485021|485022|485023|485024|485025|485026|485027|485028|485029|485030|485031|485032|485033|485034|485035|485036|485037|485038|485039|485040|485041|485042|485043|485044|485045|485046|485047|485048|485049|485050|485051|485052|485053|485054|485055|485056|485057|485058|485059|485060|485061|485062|485063|485064|485065|485066|485067|485068|485069|485070|485071|485072|485073|485074|485075|485076|485077|485078|485079|485080|485081|485082|485083|485084|485085|485086|485087|485088|485089|485090|485091|485092|485093|485094|485095|485096|485097|485098|485099|485100|485101|485102|485103|485104|485105|485106|485107|485108|485109|485110|485111|485112|485113|485114|485115|485116|485117|485118|485119|485120|485121|485122|485123|485124|485125|485126|485127|485128|485129|485130|485131|485132|485133|485134|485135|485136|485137|485138|485139|485140|485141|485142|485143|485144|485146|485147|485148|485149|485150|485151|485152|485153|485154|485155|485156|485157|485158|485159|485160|485161|485162|485163|485164|485165|485166|485167|485168|485169|485170|485171|485172|485173|485174|485175|485176|485177|485178|485179|485180|485181|485182|485183|485184|485185|485186|485187|485188|485189|485190|485191|485192|485193|485194|485195|485196|485197|485198|485199|485200|485201|485202|485203|485204|485205|485206|485207|485208|485209|485210|485211|485212|485213|485214|485215|485216|485217|485218|485219|485220|485221|485222|485223|485224|485225|485226|485227|485228|485229|485230|485231|485232|485233|485234|485235|485236|485237|485238|485239|485240|485241|485242|485243|485244|485245|485246|485247|485248|485249|485250|485251|485252|485253|485255|485256|485257|485259|485260|485261|485262|485263|485264|485265|485266|485267|485268|485269|485270|485271|485272|485273|485274|485275|485276|485277|485278|485279|485280|485281|485282|485283|485284|485285|485286|485287|485288|485289|485290|485291|485292|485293|485294|485295|485296|485297|485298|485299|485300|485301|485302|485303|485304|485305|485306|485307|485308|485309|485310|485311|485312|485313|485314|485315|485316|485317|485318|485319|485320|485321|485322|485323|485324|485325|485326|485327|485328|485329|485330|485331|485332|485333|485334|485335|485336|485337|485338|485339|485340|485341|485342|485343|485344|485345|485346|485347|485348|485349|485350|485351|485352|485353|485354|485355|485356|485357|485358|485359|485360|485361|485362|485363|485364|485365|485366|485367|485368|485369|485370|485371|485372|485373|485374|485375|485376|485377|485378|485379|485380|485381|485382|485383|485384|485385|485386|485387|485388|485389|485390|485391|485392|485393|485394|485395|485396|485397|485398|485399|485400|485401|485402|485403|485405|485406|485407|485408|485409|485410|485411|485412|485413|485414|485415|485416|485417|485418|485419|485420|485421|485422|485423|485424|485425|485426|485427|485428|485429|485430|485431|485432|485433|485434|485435|485436|485437|485438|485439|485440|485441|485442|485443|485444|485445|485446|485447|485448|485449|485451|485452|485453|485454|485455|485456|485457|485458|485459|485460|485461|485462|485463|485464|485465|485466|485467|485468|485469|485470|485471|485472|485473|485474|485475|485476|485477|485478|485479|485480|485481|485482|485483|485484|485485|485486|485487|485488|485489|485490|485491|485492|485493|485494|485495|485496|485497|485498|485499|485500|485501|485502|485503|485504|485505|485506|485507|485508|485509|485510|485511|485512|485513|485514|485515|485516|485517|485518|485519|485520|485521|485522|485523|485524|485525|485526|485527|485528|485529|485530|485531|485532|485533|485534|485535|485536|485537|485538|485539|485540|485541|485542|485543|485544|485545|485546|485547|485548|485549|485550|485553|485554|485555|485556|485557|485558|485559|485560|485561|485562|485563|485564|485565|485566|485567|485568|485569|485570|485571|485572|485573|485574|485575|485576|485577|485578|485579|485580|485581|485582|485583|485584|485585|485586|485603|485604|485612|485622|485668|486074|486093|486094|486647|486651|486885|486912|486926|486933|486942|486954|486959|486960|486966|486969|486972|486980|486986|486989|486999|487001|487002|487010|487090|487117|487121|487130|487142|487149|487160|487161|487242|487257|487287|487289|487307|487345|487369|487380|487382|487397|487398|487405|487408|487424|487429|487431|487433|487435|487437|487440|487448|487455|487457|487467|487468|487469|487481|487482|487484|487499|487509|487520|487542|487550|487556|487557|487582|487584|487640|487643|487647|487658|487661|487673|487674|487680|487698|487704|487711|487738|487739|487748|487843|487879|487894|487898|487901|487902|487904|487908|487911|487931|487933|487934|487936|487938|487959|487970|487986|488003|488006|488134|488241|488242|488243|488853|490569|492405|493412|494047|495509|495672|495839|496278|496381|496761|496795|496796|496817|496818|497006|497731|498358|498370|498502|498514|498548|498559|498706|498710|498715|498716|498726|499751|499753|499771|499800|499813|499821|499980|499984|499994|500021|500028|500030|500032|500043|500167|500211|500229|500248|500257|500268|500273|500277|500402|500450|500468|500590|500593|500610|500612|500647|500758|500766|500803|500872|500899|500907|500926|500927|500934|500935|501077|501088|501198|501535|501688|501768|501771|502062|502063|502106|502110|502187|502415|502426|502439|502506|502518|502712|502748|502918|503039|503041|503042|503047|503055|503057|503065|503091|503094|503102|503113|503116|503123|503357|503375|503380|503388|503399|503416|503423|503434|503494|503579|503585|503602|503625|503631|503650|503655|503657|503807|503811|503827|503841|503905|503916|503933|503935|503937|503944|503952|503968|503977|504007|504039|504173|504191|504220|504234|504303|504316|504635|504666|504744|504745|504764|504766|504773|504778|505151|505153|505154|505165|505166|505172|505177|505263|505449|505466|505479|505521|505599|505649|505688|505707|505727|505728|505846|505882|506017|506088|506089|506102|506112|506114|506137|506145|506150|506160|506188|506190|506204|506211|506214|506216|506223|506238|506257|506270|506281|506368|506376|506397|506402|506405|506412|506413|506426|506427|506428|506431|506432|506493|506571|506597|506626|506638|506680|506719|506730|506748|506749|506757|506848|506855|506858|506860|506865|506908|507001|507011|507023|507025|507026|507117|507142|507187|507393|507493|507547|507548|508107|508112|512279|512374|512846|513369|514029|514061|514075|514337|514338|514339|514340|514341|515316|515333|515363|515396|515416|515731|515739|515761|515798|515841|515934|515938|515960|515961|515965|515970|516007|516062|516078|517620|517655|517673|517717|517735|517737|517748|517752|517769|517772|517774|517792|517799|517801|517810|517886|517887|517899|517915|517916|518022|518039|518102|518105|518113|518114|518122|518153|518275|518282|518288|518295|518304|518307|518320|518324|518336|518338|518341|518342|518346|518347|518348|518349|518350|518352|518353|518360|518365|518371|518376|518378|518379|518384|518391|518394|518408|518415|518417|518420|518424|518429|518431|518433|518435|518437|518438|518439|518440|518443|518446|518447|518448|518449|518451|518452|518455|518456|518465|518466|518472|518474|518480|518483|518509|518522|518532|518546|518547|518549|518552|518555|518570|518576|518578|518694|518729|518749|518859|518864|518865|518867|518869|518874|518876|519088|519098|519100|519112|519114|519119|519141|519178|519186|519188|519269|519274|519280|519293|519300|519311|519313|519322|519328|519544|519557|519562|519564|519581|519610|519778|519784|519790|519794|519807|519812|519813|519817|519823|519851|519937|520014|520062|520068|520126|520169|520184|520196|520206|520257|520259|520261|520271|520276|520281|520285|520288|520293|520297|520301|520307|520316|520322|520324|520327|520330|520333|520337|520343|520348|520371|520376|520377|520397|520400|520403|520412|520416|520432|520453|520463|520467|520471|520482|520486|520496|520504|520516|520542|520544|520570|520584|520591|520595|520598|520601|520607|520611|520620|520628|520631|520635|520641|520648|520650|520651|520653|520661|520662|520664|520665|520670|520683|520684|520686|520687|520693|520694|520696|520698|520703|520705|520708|520710|520722|520725|520751|520755|520760|520762|520763|520766|520774|520785|520787|520788|520792|520809|520810|520813|520816|520825|520830|520837|520847|520849|520864|520865|520867|520869|520870|520872|520874|520878|520879|520883|520887|520893|520899|520903|520905|520907|520910|520916|520929|520936|520939|520940|520949|520951|520954|520956|520957|520958|521027|521034|521037|521040|521043|521047|521050|521052|521055|521061|521068|521069|521071|521073|521074|521083|521086|521090|521093|521094|521096|521097|521101|521102|521105|521107|521110|521111|521114|521117|521118|521124|521125|521131|521132|521141|521142|521146|521148|521151|521154|521364|521370|521399|521400|521418|521684|521741|521761|521989|522033|522038|522065|522068|522072|522149|522314|522325|522334|522341|522347|522348|522362|522368|522370|522389|522422|522463|522468|522472|522476|522493|522721|522725|522735|522744|522752|522760|522773|522848|522858|522972|522994|522995|523010|523018|523020|523122|523129|523190|523203|523210|523324|523346|523350|523364|523719|523727|523736|523740|523751|524036|524037|524073|524131|524165|524286|524295|524309|524317|524328|524330|524337|524340|524342|524354|524364|524380|524395|524422|524426|524468|524501|524502|524664|524668|524670|524685|524709|524712|524719|524720|524736|524775|524784|524786|524795|524817|524823|524837|524845|524878|524906|524909|524912|524941|524952|524963|524967|524971|524975|524977|525005|525007|525028|525033|525036|525043|525048|525057|525081|525083|525085|525091|525097|525098|525104|525105|525112|525117|525121|525128|525132|525135|525145|525156|525176|525191|525213|525247|525257|525260|525261|525267|525270|525279|525286|525287|525289|525294|525296|525302|525305|525308|525311|525313|525316|525320|525331|525344|525346|525355|525360|525395|525401|525439|525443|525459|525461|525467|525471|525540|525556|525582|525594|525596|525617|525622|525628|525630|525640|525641|525658|525679|525691|525692|525699|525703|525711|525720|525721|525723|525725|525726|525728|525734|525751|525758|525762|525763|525773|525778|525782|525784|525788|525797|525808|525818|525831|525836|525844|525847|525853|525856|525860|525864|525867|525870|525874|525877|525878|525894|525896|525899|525909|525910|525913|525915|525933|525957|525962|525973|525988|525992|525998|526010|526032|526043|526056|526057|526058|526114|526147|526165|526176|526187|526204|526205|526225|526233|526262|526268|526269|526280|526281|526329|526340|526345|526356|526368|526373|526377|526383|526526|526611|526670|526730|526797|526841|526887|526919|526970|527071|527151|527275|527433|527455|527508|527516|527518|527530|527540|527541|527545|527561|527564|527570|527578|527603|527604|527618|527638|527642|527647|527653|527700|527704|527709|527742|527748|527753|527773|527776|527788|527792|527819|527850|527885|527891|527894|527912|527916|527936|527969|527971|527976|527999|528014|528034|528045|528057|528067|528073|528074|528083|528095|528123|528129|528203|528217|528221|528253|528264|528265|528292|528303|528304|528307|528343|528355|528380|528400|528402|528415|528426|528439|528445|528454|528455|528470|528475|528496|528506|528512|528523|528525|528539|528549|528553|528578|528767|528851|528858|528860|528861|528867|528873|528874|528880|528882|528888|528889|528896|528904|528906|528913|528923|528926|528932|528937|528942|528945|528977|529003|529007|529141|529150|529153|529154|529167|529176|529188|529193|529196|529197|529201|529216|529464|529484|529487|529498|529511|529526|529532|529533|529543|529551|529552|529560|529578|529618|529633|529648|529660|529664|529700|529701|529708|529728|529732|529747|529750|529751|529769|529780|529781|529784|529787|529790|529805|529806|529807|529809|529810|529814|529830|529832|529836|529839|529842|529852|529857|529867|529870|529879|529883|529885|529895|529899|529912|529920|529927|529929|529933|529944|529961|529973|530029|530036|530069|530073|530083|530094|530095|530108|530123|530126|530131|530132|530133|530134|530142|530145|530148|530150|530152|530158|530162|530171|530181|530195|530207|530221|530225|530229|530230|530237|530239|530244|530297|530349|530389|530424|530433|530440|530445|530448|530459|530460|530462|530476|530486|530615|530618|530635|530654|530657|530666|530678|530687|530688|530690|530700|530703|530710|530712|530717|530762|530806|530807|530823|530833|530852|530857|530861|530879|530880|530884|530887|530890|530896|530903|530911|530924|530931|530936|530941|530956|530964|530967|530971|530978|530979|530982|530984|531018|531028|531056|531059|531060|531064|531068|531088|531095|531120|531122|531123|531150|531152|531167|531181|531184|531186|531188|531202|531206|531207|531231|531245|531263|531264|531267|531268|531273|531277|531290|531294|531298|531303|531308|531317|531318|531321|531324|531328|531337|531343|531349|531351|531352|531357|531361|531374|531384|531388|531408|531419|531423|531424|531430|531434|531437|531445|531446|531448|531453|531460|531464|531469|531475|531477|531486|531490|531492|531499|531514|531522|531529|531539|531544|531550|531556|531562|531571|531577|531579|531596|531597|531604|531611|531621|531622|531623|531629|531634|531662|531668|531678|531712|531723|531727|531731|531732|531762|531764|531772|531774|531784|531786|531788|531793|531794|531796|531797|531802|531807|531815|531833|531834|531838|531840|531842|531847|531853|531858|531869|531874|531922|531923|531973|532024|532194|532201|532211|532218|532225|532229|532309|532313|532446|532457|532458|532465|532495|532502|532505|532506|532524|532539|532540|532563|532568|532569|532575|532585|532593|532598|532605|532613|532614|532619|532620|532627|532634|532639|532647|532651|532652|532662|532665|532674|532693|532696|532699|532703|532704|532706|532708|532713|532714|532715|532738|532768|532921|532953|532966|532974|532989|532995|533008|533010|533015|533047|533067|533090|533092|533098|533113|533118|533125|533232|533241|533245|533254|533748|533855|534082|534088|534103|534116|534119|534137|534141|534151|534164|534177|534180|534181|534187|534188|534197|534224|534229|534244|534273|534289|534300|534305|534310|534313|534325|534612|534627|534676|534681|534688|534698|534705|534712|535741|535743|535745|536184|536241|536252|536260|536270|536279|536324|536333|536341|536345|536346|536366|536377|536411|536416|536425|536426|536442|536465|536475|536482|536499|536522|536530|536933|538116|538190|538213|538217|538232|538235|538638|538642|538659|538738|538759|538820|538875|538896|539130|539202|539203|539204|539206|539218|539228|539251|539256|539268|539270|539271|539274|539276|539279|539281|539296|539300|539305|539315|539316|539318|539326|539342|539347|539358|539362|539369|539373|539379|539385|539386|539388|539409|539411|540484|540485|540486|540487|540488|540489|540490|540491|540492|540493|540494|540533|540553|541078|544487|544786|544806|544810|544988|545339|545342|545365|545370|545711|545753|545766|545768|545967|545994|546007|546009|546038|547639|547654|547686|547927|547950|548338|548393|549465|550666|550673|550675|550699|550739|551803|551804|551805|551806|551807|551808|551823|551834|551836|551839|551840|551841|551848|551850|551852|551874|551875|551876|551877|551884|551885|551889|551904|551914|551915|551916|551925|551934|551935|551941|552143|552290|552930|552945|552956|552971|552996|553392|553655|556690|556694|556926|556930|556934|557028|557054|557056|557079|557083|557085|557087|557222|557224|557230|557304|557365|557838|557844|557848|557852|557854|557866|557897|557905|557909|557921|558027|558121|558129|558139|558145|558159|558169|558171|558179|558181|558203|558217|558235|558242|558362|558364|558439|558484|558486|558496|558524|558539|558542|558549|558556|558566|558588|558590|558592|558594|558694|558734|558884|558886|558890|558902|558906|558916|559075|559077|559089|559102|559104|559114|559205|559257|559429|559433|559435|559441|559447|559449|559644|559646|559801|559829|559842|559855|559857|559866|559871|559879|559885|559887|559897|559901|559903|559907|559911|559921|559925|559939|559943|559945|559947|559949|559951|559955|559963|559965|559967|559978|560012|560022|560024|560026|560030|560034|560038|560048|560060|560064|560066|560068|560072|560075|560076|560077|560079|560081|560083|560085|560087|560089|560091|560093|560095|560097|560099|560101|560103|560105|560107|560109|560111|560113|560115|560117|560119|560121|560123|560125|560127|560129|560131|560133|560135|560137|560162|560164|560166|560168|560170|560172|560174|560176|560178|560180|560182|560184|560186|560188|560190|560192|560194|560196|560198|560200|560202|560204|560206|560208|560210|560212|560214|560216|560218|560220|560222|560224|560226|560301|560311|560414|560426|560589|560661|560685|560687|560705|560721|560741|560754|560764|560782|560813|560822|560824|560832|560833|561021|561074|561200|561202|561207|561224|561251|561253|561266|561297|561311|561328|561333|561397|561415|561420|561422|561427|561436|561551|561568|561579|561595|561604|561625|561628|561631|561652|561662|561672|561675|561688|561691|561697|561699|561711|561714|561716|561720|561767|561784|561804|561816|562016|562044|562066|562068|562073|562083|562105|562120|562123|562125|562130|562207|562210|562224|562227|562231|562294|562313|562314|562330|562334|562355|562369|562385|562393|562399|562406|562413|562419|562446|562449|562462|562466|562468|562470|562488|562498|562505|562506|562507|562508|562509|562510|562529|562535|562540|562542|562543|562547|562681|562682|562684|562685|562688|562693|562695|562698|562701|562702|562707|562713|562715|562716|562718|562723|562725|562730|562731|562733|562735|562737|562742|562743|562745|562749|562751|562754|562757|562758|562760|562766|562768|562770|562773|562774|562776|562778|562911|562940|563117|563125|563126|563130|563131|563137|563142|563147|563154|563165|563170|563176|563207|563211|563335|563337|563344|563347|563368|563398|563551|563611|563637|563684|563687|563707|563710|563715|563716|563727|563738|563750|563758|563838|563839|563873|563879|563882|563932|563959|563970|563988|563991|563992|564000|564027|564101|564119|564129|564134|564151|564153|564163|564170|564177|564181|564184|564187|564189|564192|564195|564204|564205|564213|564215|564216|564217|564222|564225|564232|564233|564236|564241|564248|564262|564265|564269|564271|564273|564277|564283|564292|564300|564301|564306|564311|564312|564316|564317|564324|564328|564333|564334|564337|564338|564339|564342|564344|564353|564359|564362|564369|564370|564373|564380|564388|564394|564409|564462|564471|564563|564565|564567|564569|564570|564572|564573|564576|564583|564587|564589|564604|564608|564609|564610|564616|564618|564628|564629|564640|564642|564644|564645|564656|564658|564661|564675|564677|564684|564686|564688|564764|564783|564798|564806|564810|564835|564932|565061|565062|565076|565080|565085|565091|565094|565103|565115|565116|565123|565126|565138|565179|565183|565187|565189|565190|565218|565226|565232|565245|565252|565258|565267|565281|565325|565327|565330|565343|565363|565367|565380|565387|565405|565412|565423|565427|565466|565625|565632|565662|565668|565669|565670|565834|565867|565886|565917|565927|565939|565951|565964|565981|565998|566007|566016|566022|566028|566033|566035|566043|566045|566049|566055|566057|566065|566099|566125|566130|566135|566139|566144|566165|566167|566208|566211|566218|566263|566266|566279|566301|566306|566330|566348|566387|566473|566536|566546|566558|566564|566591|566696|566698|566726|566758|566764|566768|566772|566779|566785|566802|566803|566804|566805|566810|566818|566820|566834|566838|566848|566857|566888|566900|566910|566921|566922|566923|566925|566927|566929|566939|566945|566962|566989|566998|567004|567008|567016|567025|567026|567035|567037|567040|567051|567057|567062|567089|567232|567257|567264|567265|567266|567274|567359|567361|567373|567374|567383|567389|567394|567402|567411|567437|567447|567486|567490|567592|567595|567596|567711|567736|567740|567744|567777|567779|567787|567812|567833|567908|567911|567914|567936|567937|567939|567947|567959|567996|567999|568016|568017|568028|568113|568123|568154|568156|568165|568168|568177|568214|568215|568217|568226|568231|568233|568251|568302|568330|568340|568341|568347|568352|568353|568361|568363|568373|568382|568393|568409|568414|568421|568427|568434|568437|568438|568441|568443|568477|568490|568493|568497|568523|568531|568551|568561|568575|568583|568598|568725|568727|568751|568787|568801|568830|568853|568888|568930|568932|568934|568935|568959|568975|568996|568998|569003|569008|569017|569086|569087|569099|569114|569122|569123|569127|569129|569132|569137|569142|569152|569158|569159|569193|569214|569223|569242|569246|569249|569253|569265|569268|569281|569287|569295|569299|569303|569319|569343|569353|569362|569393|569418|569425|569435|569445|569454|569456|569592|569634|569654|569655|569660|569677|569690|569700|569712|569717|569718|569719|569721|569724|569726|569727|569728|569741|569769|569777|569784|569786|569806|569829|569835|569858|569861|569908|569914|569928|569950|569956|569960|569971|569991|570018|570024|570025|570047|570049|570068|570096|570097|570104|570112|570122|570127|570141|570150|570164|570165|570167|570169|570176|570183|570201|570202|570217|570226|570288|570352|570356|570357|570373|570395|570396|570403|570420|570425|570435|570444|570450|570460|570478|570493|570507|570785|570788|570796|570800|570801|570858|570863|570885|570887|570940|570944|570971|570995|571001|571006|571025|571028|571040|571046|571079|571098|571126|571152|571159|571170|571171|571172|571204|571207|571209|571265|571272|571288|571298|571299|571317|571318|571328|571356|571360|571363|571364|571371|571374|571375|571377|571379|571392|571395|571405|571419|571422|571427|571447|571453|571474|571501|571506|571620|571633|571638|571640|571732|571735|571736|571748|571759|571769|571776|571777|571779|571780|571787|571789|571795|571830|571843|571860|571868|571897|571904|571912|571955|572046|572082|572088|572090|572105|572112|572123|572140|572141|572143|572144|572169|572175|572190|572197|572290|572314|572328|572337|572351|572457|572474|572485|572499|572549|572651|572664|572758|572780|572812|572821|572823|572828|572841|572849|572877|572891|572906|572907|572909|573013|573016|573023|573035|573037|573043|573048|573057|573076|573082|573303|573309|573327|573330|573334|573342|573344|573393|573398|573590|573591|573595|573601|573604|573620|573622|573753|573827|573840|573862|573901|573902|573910|573911|573912|573914|573918|573924|573926|573937|573939|573955|573961|573968|573975|573976|573984|573988|574036|574053|574057|574059|574061|574062|574077|574080|574085|574110|574114|574117|574123|574125|574127|574324|574348|574350|574368|574372|574374|574381|574392|574420|574421|574425|574428|574430|574436|574439|574441|574467|574468|574481|574484|574485|574487|574489|574535|574540|574544|574545|574546|574547|574548|574552|574557|574558|574589|574621|574622|574635|574641|574822|574851|574852|574854|574855|574867|575222|575227|575230|575238|575239|575240|575244|575247|575517|575518|575519|575520|575521|575522|575523|575524|575525|575526|575527|575528|575529|575530|575532|575533|575534|575535|575536|575537|575538|575539|575541|575542|575543|575544|575545|575546|575547|575548|575549|575550|575551|575552|575553|575554|575555|575556|575557|575559|575560|575561|575562|575564|575565|575566|575567|575568|575569|575570|575571|575572|575573|575574|575575|575576|575577|575578|575579|575580|575581|575582|575583|575584|575585|575586|575587|575588|575589|575590|575591|575592|575593|575594|575595|575596|575597|575598|575599|575600|575601|575602|575603|575604|575605|575606|575607|575608|575609|575610|575611|575612|575614|575615|575616|575618|575619|575620|575621|575622|575623|575624|575625|575626|575627|575628|575629|575630|575631|575632|575633|575634|575635|575636|575637|575638|575656|575662|575665|575673|575684|575691|575692|575693|575694|575695|575696|575697|575700|575703|575708|575709|575710|575718|575723|575729|575736|575737|575738|575746|575752|575755|575756|575757|575758|575759|575760|575782|575783|575785|575786|575789|575794|575815|575839|575857|575867|575868|575869|575870|575871|575872|575873|575874|575875|575876|575877|575878|575879|575880|575881|575882|575883|575884|575885|575886|575887|575888|575889|575890|575891|575897|575903|575920|575956|575957|575958|575959|575960|575961|575962|575963|575964|575965|575966|575967|575971|575978|575984|575999|576000|576009|576021|576024|576054|576055|576056|576258|576343|578306|578308|578309|579694|579697|579913|581784|581823|587926|588187|590988|608821|609169|609170|609171|609172|609173|609174|609175|609176|609179|609180|609181|609492|609869|609951|610070|610417|610594|610595|610906|610912|610941|610942|610945|610946|610948|610973|610974|610977|610978|611006|611007|611016|611021|611031|611050|611055|611058|611060|611062|611064|611065|611067|611068|611069|611158|611160|611161|611164|611167|611183|611185|611188|611189|611193|611194|611196|611198|611201|611203|611217|611220|611222|611226|611229|611233|611234|611239|611242|611250|611251|611252|611255|611257|611261|611263|611310|611319|611321|611523|611683|611740|611815|611994|611996|612004|612005|612007|612018|612151|612193|612942|614326|614416|615057|616087|616088|616089|616090|616091|616092|616093|616094|616095|616096|616097|616098|616099|616100|616101|616102|616103|616104|616105|616106|616107|616108|616109|616110|616111|616112|616113|616114|616115|616116|616117|616118|616119|616120|616121|616122|616123|616124|616125|616126|616127|616128|616129|616130|616131|616132|616133|616134|616517|616518|616519|616520|616521|616522|616523|616524|616525|616526|616527|616528|616529|616530|616531|616532|616533|616534|616535|616536|616537|616538|616539|616540|616541|616542|616543|616544|616545|616546|616547|616548|616549|616550|616551|616552|616553|616554|616555|616556|616557|616558|616559|616560|616561|616562|616563|616564|616565|616566|616567|616568|616569|616570|616571|616572|616573|616574|616575|616576|616577|616578|616579|616580|616581|616582|616583|616584|616585|616586|616587|616588|616589|616590|616591|616592|616593|616594|616595|616596|616597|616598|616599|616600|616601|616602|616603|616604|616605|616606|616607|616608|616609|616610|616611|616612|616613|616614|616615|616616|616617|616618|616619|616620|616621|616622|616623|616624|616625|616626|616627|616628|616629|616630|616631|616632|616633|616634|616635|616636|616637|616638|616639|616640|616641|616642|616643|616644|616645|616646|616647|616648|616649|616650|616651|616652|616653|616654|616655|616656|616657|616658|616659|616660|616661|616662|616663|616664|616665|616666|616667|616668|616669|616670|616671|616672|616673|616674|616675|616676|616677|616678|616679|616680|616681|616682|616683|616684|616685|616686|616687|616688|616689|616690|616691|616692|616693|616694|616695|616696|616697|616698|616699|616700|616701|616702|616703|616704|616705|616706|616707|616708|616709|616710|616711|616712|616713|616714|616715|616716|616717|616718|616719|616720|616721|616722|616723|616724|616725|616726|616727|616728|616729|616730|616731|616732|616733|616734|616735|616736|616737|616738|616739|616740|616741|616742|616743|616744|616745|616746|616747|616748|616749|616750|616751|616752|616753|616754|616755|616756|616757|616758|616759|616760|616761|616762|616763|616764|616765|616766|616767|616768|616769|616770|616771|616772|616773|616774|616775|616776|616777|616778|616779|616780|616781|616782|616783|616784|616785|616786|616787|616788|616789|616790|616791|616792|616793|616794|616795|616796|616797|616798|616799|616800|616801|616802|616803|616804|616805|616806|616807|616808|616809|616810|616836|616837|616838|616839|616840|616841|616842|616843|616844|616845|616846|616847|616848|616849|616850|616851|616852|616853|616854|616855|616856|616857|616858|616859|616860|616861|616862|616863|616864|616865|616866|616867|616868|616869|616870|616871|616872|616873|616874|616875|616876|616877|616878|616879|616880|616881|616882|616883|616884|616885|616886|616887|616888|616889|616934|616935|616936|616937|616938|616939|616940|616941|616942|616943|616944|616945|616946|616947|616948|616949|616950|616951|616952|616953|616954|616955|616956|616957|616958|616959|616960|616961|616962|616963|616964|616965|616966|616967|616968|616969|616970|616971|616972|616973|616974|616975|616976|616977|616978|616979|616980|616981|616982|616983|616984|616985|616986|616987|616988|616989|616990|616991|616992|616993|616994|616995|616996|616997|616998|616999|617000|617001|617002|617003|617004|617005|617006|617007|617008|617009|617010|617011|617012|617013|617014|617015|617016|617017|617018|617019|617020|617021|617022|617023|617024|617025|617026|617027|617028|617029|617030|617031|617032|617033|617034|617035|617036|617037|617038|617039|617040|617041|617042|617043|617044|617045|617046|617047|617048|617049|617050|617051|617052|617053|617054|617055|617056|617057|617058|617059|617060|617061|617062|617063|617064|617065|617066|617067|617068|617069|617070|617071|617072|617073|617074|617075|617076|617077|617078|617079|617080|617081|617082|617083|617084|617085|617086|617087|617088|617089|617090|617091|617092|617093|617094|617095|617096|617097|617098|617099|617100|617101|617102|617103|617104|617105|617106|617107|617108|617109|617110|617111|617112|617113|617114|617115|617116|617117|617118|617119|617120|617121|617122|617123|617124|617125|617126|617127|617128|617129|617130|617131|617132|617133|617134|617135|617136|617137|617138|617139|617140|617141|617142|617143|617144|617145|617146|617147|617148|617149|617150|617151|617152|617153|617154|617155|617156|617157|617158|617159|617160|617161|617162|617163|617164|617165|617166|617167|617168|617169|617170|617171|617172|617173|617174|617175|617176|617177|617178|617179|617180|617181|617182|617183|617184|617185|617186|617187|617188|617189|617190|617191|617192|617193|617194|617195|617196|617197|617198|617199|617200|617201|617202|617203|617204|617205|617206|617207|617208|617209|617210|617211|617212|617213|617214|617215|617216|617217|617218|617219|617220|617221|617222|617223|617224|617225|617226|617227|617228|617229|617230|617231|617232|617233|617234|617235|617236|617237|617238|617239|617240|617241|617242|617243|617244|617245|617246|617247|617248|617249|617250|617251|617252|617253|617254|617255|617256|617257|617258|617259|617260|617261|617262|617263|617264|617265|617266|617267|617268|617269|617270|617271|617272|617273|617274|617275|617276|617277|617278|617279|617280|617281|617282|617283|617284|617285|617286|617287|617368|617369|617370|617371|617372|617373|617374|617375|617376|617377|617378|617379|617380|617381|617382|617383|617384|617385|617386|617387|617388|617389|617390|617391|617392|617393|617394|617395|617396|617397|617398|617399|617400|617401|617402|617403|617404|617405|617406|617407|617408|617409|617410|617411|617412|617413|617414|617415|617416|617417|617418|617419|617420|617421|617422|617423|617424|617425|617426|617427|617428|617429|617430|617431|617432|617433|617434|617435|617436|617437|617438|617439|617440|617441|617442|617443|617444|617445|617446|617447|617448|617449|617450|617451|617452|617453|617454|617455|617456|617457|617458|617459|617460|617461|617462|617463|617464|617465|617466|617467|617468|617469|617470|617471|617472|617473|617474|617475|617476|617477|617478|617479|617480|617481|617482|617483|617484|617485|617486|617487|617488|617489|617490|617491|617492|617493|617494|617495|617496|617497|617498|617499|617500|617501|617502|617503|617504|617505|617506|617507|617508|617509|617510|617511|617512|617513|617514|617515|617516|617517|617518|617519|617520|617521|617522|617523|617524|617525|617526|617527|617528|617529|617530|617531|617532|617533|617534|617535|617536|617537|617538|617539|617540|617541|617542|617543|617544|617545|617546|617547|617548|617551|617552|617553|617554|617555|617556|617557|617558|617559|617560|617561|617562|617563|617564|617565|617566|617567|617568|617569|617570|617571|617572|617573|617574|617575|617576|617577|617578|617579|617580|617581|617582|617583|617584|617585|617586|617587|617588|617589|617590|617591|617592|617593|617594|617595|617596|617597|617598|617599|617600|617601|617602|617603|617604|617605|617606|617607|617608|617609|617610|617611|617618|617619|617620|617621|617622|617623|617624|617625|617626|617627|617628|617629|617630|617631|617632|617633|617634|617635|617636|617637|617638|617639|617640|617641|617642|617643|617644|617645|617646|617647|617648|617649|617650|617651|617652|617653|617654|617655|617656|617657|617658|617659|617660|617661|617662|617663|617664|617665|617666|617667|617668|617669|617670|617671|617672|617673|617674|617675|617676|617677|617678|617679|617680|617681|617682|617683|617684|617685|617686|617687|617688|617689|617690|617691|617692|617693|617694|617695|617696|617697|617698|617699|617700|617701|617702|617703|617704|617705|617706|617707|617708|617709|617710|617711|617712|617713|617714|617715|617716|617717|617718|617719|617720|617721|617722|617723|617724|617725|617726|617727|617728|617729|617730|617731|617732|617733|617734|617735|617736|617737|617738|617739|617740|617741|617742|617743|617744|617745|617746|617747|617748|617749|617750|617751|617752|617753|617754|617755|617756|617757|617758|617759|617760|617761|617762|617763|617764|617765|617766|617767|617768|617769|617770|617771|617772|617773|617774|617775|617776|617777|617778|617779|617780|617781|617782|617783|617784|617785|617786|617787|617788|617789|617790|617791|617792|617793|617794|617795|617796|617797|617798|617799|617800|617801|617802|617803|617804|617805|617806|617807|617808|617809|617810|617811|617812|617813|617814|617815|617816|617817|617818|617819|617820|617821|617822|617823|617824|617825|617826|617827|617828|617829|617830|617831|617832|617833|617834|617835|617836|617837|617838|617839|617840|617841|617842|617843|617844|617845|617846|617847|617848|617849|617850|617912|617913|617914|617915|617916|617917|617918|617919|617920|617921|617922|617923|617924|617925|617926|617927|617928|617929|617930|617931|617932|617933|617934|617935|617936|617937|617938|617939|617940|617941|617942|617943|617944|617945|617946|617947|617948|617949|617950|617951|617952|617953|617954|617955|617956|617957|617958|617959|617960|617961|617962|617963|617964|617965|617966|617967|617968|617969|617970|617971|617972|617973|617974|617975|617976|617977|617978|617979|617980|617981|617982|617983|617984|617985|617986|617987|617988|617989|617990|617991|617992|617993|617994|617995|617996|617997|617998|617999|618000|618001|618002|618003|618004|618005|618006|618007|618008|618009|618010|618011|618012|618013|618014|618015|618016|618017|618018|618019|618020|618021|618022|618023|618024|618025|618026|618027|618028|618029|618030|618031|618032|618033|618034|618035|618036|618037|618038|618039|618040|618041|618042|618043|618044|618045|618046|618047|618048|618049|618050|618051|618052|618053|618054|618055|618056|618057|618058|618059|618060|618061|618062|618063|618064|618065|618066|618067|618068|618069|618070|618071|618072|618073|618074|618075|618076|618077|618078|618079|618080|618081|618082|618083|618084|618085|618086|618087|618088|618089|618090|618091|618092|618093|618094|618095|618096|618097|618098|618099|618100|618101|618102|618103|618104|618105|618106|618107|618108|618109|618110|618111|618112|618113|618114|618115|618116|618117|618118|618119|618120|618121|618122|618123|618124|618125|618126|618127|618128|618129|618130|618131|618132|618133|618134|618135|618136|618137|618138|618139|618140|618141|618142|618143|618144|618145|618146|618147|618148|618149|618150|618151|618152|618153|618154|618155|618156|618157|618158|618159|618160|618161|618162|618163|618164|618165|618166|618167|618168|618169|618170|618171|618172|618173|618174|618175|618176|618177|618178|618179|618180|618181|618182|618183|618184|618185|618186|618187|618188|618189|618190|618191|618192|618193|618194|618195|618196|618197|618198|618199|618200|618201|618202|618203|618204|618205|618206|618207|618208|618209|618210|618211|618212|618213|618345|618346|618347|618348|618349|618350|618351|618352|618353|618354|618355|618356|618357|618358|618359|618360|618361|618362|618363|618364|618365|618366|618367|618368|618369|618370|618371|618372|618373|618374|618375|618376|618377|618378|618379|618380|618381|618382|618383|618384|618385|618386|618387|618388|618389|618390|618391|618392|618393|618394|618395|618396|618397|618398|618399|618400|618401|618402|618403|618404|618405|618406|618407|618408|618409|618410|618411|618412|618413|618414|618415|618416|618417|618418|618419|618420|618421|618422|618423|618424|618425|618426|618427|618428|618429|618430|618431|618432|618433|618434|618435|618436|618437|618438|618439|618440|618441|618442|618443|618444|618445|618446|618447|618448|618449|618450|618451|618452|618453|618454|618455|618456|618457|618458|618459|618460|618461|618462|618463|618464|618465|618466|618467|618468|618469|618470|618471|618472|618473|618474|618475|618476|618477|618478|618479|618480|618481|618482|618483|618484|618485|618486|618487|618488|618489|618490|618491|618492|618493|618494|618495|618496|618497|618498|618499|618500|618501|618502|618503|618504|618505|618506|618507|618508|618509|618510|618511|618512|618513|618514|618515|618516|618517|618518|618519|618520|618521|618522|618523|618524|618525|618526|618527|618528|618529|618530|618531|618532|618533|618534|618535|618536|618537|618538|618539|618540|618541|618542|618543|618544|618545|618546|618547|618548|618549|618550|618551|618552|618553|618554|618555|618556|618557|618558|618559|618560|618561|618562|618563|618564|618565|618566|618567|618568|618569|618570|618571|618572|618573|618574|618575|618576|618577|618578|618579|618580|618581|618582|618583|618584|618585|618586|618587|618588|618589|618590|618591|618592|618593|618594|618595|618596|618597|618598|618599|618600|618601|618602|618603|618604|618605|618606|618607|618608|618609|618610|618611|618612|618613|618614|618615|618616|618617|618618|618619|618620|618621|618622|618623|618624|618625|618626|618627|618628|618629|618630|618631|618632|618633|618634|618635|618636|618637|618638|618639|618640|618641|618642|618643|618644|618645|618646|618647|618648|618649|618650|618651|618652|618653|618654|618655|618656|618657|618658|618659|618660|618661|618662|618663|618664|618665|618666|618667|618668|618669|618670|618671|618672|618673|618674|618675|618676|618677|618678|618679|618680|618681|618682|618683|618684|618685|618686|618687|618688|618689|618690|618691|618692|618693|618694|618695|618696|618697|618698|618699|618700|618701|618702|618703|618704|618705|618706|618707|618708|618709|618710|618711|618712|618713|618714|618715|618716|618717|618718|618719|618720|618721|618722|618723|618724|618725|618726|618727|618728|618729|618730|618731|618732|618733|618734|618735|618736|618737|618738|618739|618740|618741|618742|618743|618744|618745|618746|618747|618748|618749|618750|618751|618752|618753|618754|618755|618756|618757|618758|618759|618760|618761|618762|618763|618764|618765|618766|618767|618768|618769|618770|618771|618772|618773|618774|618775|618776|618777|618778|618779|618780|618781|618782|618783|618784|618785|618786|618787|618788|618789|618790|618791|618792|618793|618794|618795|618796|618797|618798|618799|618800|618801|618802|618803|618804|618805|618806|618807|618808|618809|618810|618811|618812|618813|618814|618815|618816|618817|618818|618819|618820|618821|618822|618823|618824|618825|618826|618827|618828|618829|618830|618831|618832|618833|618834|618835|618836|618837|618838|618839|618840|618841|618842|618843|618888|618889|618890|618891|618892|618893|618894|618895|618896|618897|618898|618899|618900|618901|618902|618903|618904|618905|618906|618907|618908|618909|618910|618911|618912|618913|618914|618915|618916|618917|618918|618919|618920|618921|618922|618923|618924|618925|618926|618927|618972|618973|618974|618975|618976|618977|618978|618979|618980|618981|618982|618983|618984|618985|618986|618987|618988|618989|618990|618991|618992|618993|618994|618995|618996|618997|618998|618999|619000|619001|619002|619003|619012|619013|619014|619015|619016|619017|619018|619019|619020|619021|619022|619023|619024|619025|619026|619027|619028|619029|619030|619031|619032|619033|619034|619035|619036|619037|619038|619039|619040|619041|619042|619043|619044|619045|619050|619052|619059|619062|619063|619064|619065|619066|619067|619068|619069|619070|619071|619072|619073|619074|619076|619077|619079|619080|619081|619084|619087|619088|619089|619091|619097|619099|619101|619104|619105|619106|619107|619108|619109|619111|619113|619115|619116|619121|619124|619126|619127|619128|619129|619130|619133|619134|619137|619139|619140|619141|619142|619143|619144|619145|619146|619147|619148|619149|619151|619153|619154|619155|619156|619157|619158|619159|619160|619161|619162|619163|619164|619165|619166|619167|619168|619169|619170|619171|619173|619176|619177|619180|619181|619183|619184|619185|619186|619187|619188|619189|619190|619191|619192|619194|619195|619196|619198|619199|619200|619201|619202|619203|619204|619205|619206|619207|619208|619209|619210|619211|619212|619213|619214|619216|619217|619219|619220|619221|619222|619223|619224|619225|619226|619227|619228|619229|619230|619231|619232|619233|619234|619235|619236|619237|619238|619239|619240|619241|619243|619244|619247|619248|619250|619251|619252|619253|619254|619255|619256|619257|619258|619259|619260|619261|619262|619263|619264|619266|619267|619268|619269|619271|619272|619273|619274|619275|619276|619279|619282|619283|619286|619287|619288|619289|619290|619291|619292|619293|619294|619295|619296|619297|619298|619299|619300|619301|619302|619303|619304|619305|619306|619307|619308|619309|619310|619311|619312|619313|619314|619315|619316|619317|619318|619319|619320|619321|619322|619323|619324|619325|619326|619327|619328|619329|619330|619331|619332|619333|619334|619335|619336|619337|619338|619339|619340|619341|619342|619343|619344|619346|619347|619348|619349|619350|619351|619352|619353|619354|619355|619356|619357|619358|619359|619360|619361|619362|619363|619364|619365|619366|619368|619369|619370|619371|619372|619373|619375|619376|619377|619378|619379|619380|619381|619382|619383|619384|619385|619386|619387|619388|619389|619390|619391|619392|619393|619394|619395|619396|619397|619398|619399|619400|619401|619402|619404|619405|619406|619408|619409|619410|619411|619412|619413|619414|619415|619416|619418|619419|619420|619421|619423|619425|619426|619429|619430|619431|619432|619433|619434|619435|619436|619437|619438|619439|619440|619441|619442|619443|619445|619449|619451|619452|619454|619456|619458|619460|619461|619465|619467|619468|619469|619470|619471|619472|619473|619474|619475|619476|619477|619478|619479|619480|619481|619482|619483|619484|619485|619486|619487|619488|619489|619490|619491|619492|619493|619494|619495|619496|619497|619498|619499|619500|619503|619504|619505|619507|619508|619510|619511|619512|619513|619514|619517|619518|619520|619521|619522|619523|619524|619525|619526|619528|619529|619530|619531|619532|619534|619536|619537|619538|619540|619541|619542|619543|619545|619546|619547|619548|619549|619550|619551|619552|619553|619554|619556|619557|619558|619559|619560|619561|619562|619563|619564|619565|619566|619567|619568|619569|619570|619571|619572|619573|619574|619575|619576|619577|619578|619579|619581|619582|619583|619584|619585|619586|619587|619589|619590|619591|619592|619593|619598|619599|619601|619603|619604|619605|619606|619607|619608|619609|619610|619611|619612|619613|619614|619615|619616|619617|619618|619619|619620|619621|619622|619623|619624|619625|619626|619627|619628|619629|619630|619631|619632|619633|619634|619635|619636|619637|619638|619639|619640|619641|619642|619643|619644|619645|619646|619647|619648|619649|619650|619651|619652|619653|619654|619655|619656|619657|619658|619659|619660|619661|619662|619663|619664|619665|619666|619667|619668|619669|619670|619671|619672|619674|619676|619677|619678|619679|619680|619683|619684|619685|619687|619690|619691|619692|619693|619694|619695|619696|619697|619698|619699|619700|619701|619702|619703|619704|619705|619706|619707|619708|619709|619710|619711|619712|619713|619714|619715|619716|619717|619718|619719|619720|619721|619722|619723|619724|619725|619726|619727|619728|619729|619730|619731|619732|619733|619734|619735|619736|619737|619738|619739|619740|619741|619742|619743|619744|619745|619746|619747|619748|619749|619750|619751|619752|619753|619754|619755|619756|619757|619758|619759|619760|619761|619762|619763|619764|619765|619766|619768|619769|619770|619771|619772|619773|619774|619775|619776|619777|619779|619780|619784|619785|619786|619787|619788|619789|619790|619793|619794|619795|619796|619798|619799|619800|619802|619803|619804|619806|619807|619808|619809|619810|619812|619813|619814|619815|619816|619817|619818|619819|619820|619821|619822|621122|621123|621139|621155|621156|621157|621225|621268|621273|621275|621285|621327|621329|621330|621331|621336|621392|621406|621409|621422|621426|621428|621446|621450|621521|621528|621533|621534|621546|621549|621558|621561|621570|621589|621592|621598|621599|621601|621603|621605|621606|621649|621723|621830|621925|621931|622450|622586|622620|622628|622667|622670|623004|623217|623635|625973|627031|627032|627085|627099|627102|627114|627168|627182|627630|627634|627647|627663|627665|628079|628080|628082|628088|628092|628095|628103|629360|629362|629365|629375|629377|629378|629380|629385|629389|629390|629400|629404|629409|629411|629414|629421|629422|629426|629817|629824|629825|629827|629828|629829|629832|630074|630077|630080|630084|630102|630104|630107|630120|630123|630124|630126|630130|630133|630135|630138|630140|630141|630156|630163|630169|630175|630179|630194|630196|630199|630218|630226|630232|630233|630238|630250|630254|630257|630259|630263|630264|630268|630275|630276|630279|630280|630287|630288|630294|630314|630334|630335|630336|630341|630342|630350|630351|630352|630359|630366|630631|630647|630649|630698|630704|630712|630715|631194|631201|631205|631208|631211|631212|631214|631218|631223|631225|631227|631229|631237|631257|631264|631701|631702|631703|631704|631705|631708|631713|631714|631731|631735|631740|632216|632217|632218|632265|632310|632361|632380|632419|632559|632565|632566|632567|632574|632576|632591|632599|632604|632608|632622|632624|632627|632644|632647|632648|632658|632663|632664|632666|632669|632675|632678|632680|632685|632695|632698|632699|632707|632711|632712|632726|632729|632740|632745|632754|632756|632757|632763|632768|632774|632778|632794|632803|632806|632810|632816|632823|632824|632825|632826|632828|632831|632833|632834|632836|632838|632839|632842|632847|632848|632858|632861|632864|632865|633078|633079|633080|633081|633082|633083|633084|633085|633086|633087|633088|633089|633090|633091|633092|633093|633094|633095|633096|633097|633098|633099|633100|633101|633102|633103|633104|633105|633106|633107|633108|633109|633110|633111|633112|633113|633114|633115|633116|633117|633118|633119|633120|633121|633122|633123|633124|633125|633126|633127|633128|633129|633130|633131|633132|633133|633134|633135|633136|633137|633138|633139|633140|633141|633142|633143|633144|633145|633146|633147|633148|633149|633150|633151|633152|633153|633154|633155|633156|633157|633158|633159|633160|633161|633162|633163|633164|633165|633166|633167|633168|633169|633170|633171|633172|633173|633174|633175|633176|633177|633178|633179|633180|633181|633182|633183|633184|633185|633186|633187|633188|633279|633285|633286|633290|633292|633295|633300|633308|633313|633317|633323|633326|633332|633333|633338|633342|633343|633347|633367|633372|633375|633376|633379|633396|633397|633409|633423|633440|633442|633453|633851|633866|633874|633878|633891|633894|633899|633900|633928|634040|634041|634043|634062|634066|634076|634082|634087|634089|634092|634097|634105|634106|634107|634108|634112|634113|634118|634128|634135|634145|634146|634147|634148|634151|634154|634160|634164|634165|634191|634206|634207|634209|634213|634214|634220|634222|634223|634233|634235|634236|634237|634244|634245|634247|634248|634251|634261|634264|634268|634270|634272|634280|634282|634284|634285|634289|634292|634299|634307|634308|634316|634319|634332|634333|634335|634341|634342|634349|634352|634355|634357|634359|634364|634367|634379|634382|634388|634393|634402|634408|634409|634410|634411|634412|634414|634419|634422|634424|634425|634438|634441|634444|635452|635460|635468|635474|635487|635495|635508|635509|635512|635524|635525|635530|635577|635590|635591|635592|635595|635598|635600|635606|635613|635616|635618|635625|635956|636224|636227|636232|636233|636234|636250|636261|636263|636275|636279|636290|636291|636298|636303|637412|637434|637438|637443|637446|637453|637461|637468|637472|637473|637820|637825|637836|637853|637855|637856|637904|637927|638149|638155|638162|638168|638176|638180|638435|638437|638439|638447|638449|638450|638451|638462|638476|638478|638482|638483|638487|638498|638509|638516|638518|638523|638524|638529|638539|638542|638545|638546|638557|638561|638565|638570|638573|638578|638590|638592|638612|638613|638616|638618|638626|638677|638687|638689|638690|638691|638692|638703|638705|638880|638881|638889|638895|638922|638932|639212|639213|639216|639229|639231|639235|639237|639238|639262|639273|639281|639291|639372|639377|639383|639385|639397|639401|639406|639411|639414|639417|639422|639438|639439|639443|639445|639446|639455|639459|639469|639470|639471|639474|639478|639479|639483|639489|639492|639504|639519|639520|639537|639545|639547|639555|639567|639573|639576|639582|639587|639588|639595|639597|639604|639605|639606|639622|639633|639635|639637|639641|639646|639661|639673|639676|639677|639700|639704|639709|639710|640178|640182|640186|640187|640193|640276|640285|640286|640312|640507|640508|640512|640515|640517|640518|640675|640677|640678|640679|640680|640682|640686|640690|640692|640698|640933|640935|640941|640943|640945|640953|640954|641327|641341|641344|641634|641636|641637|641649|641651|641658|641684|641685|641688|641698|641699|641707|641715|641725|641730|641736|641737|641750|641753|641756|641770|641779|641789|641790|641800|641808|641809|641814|641816|641823|641825|641837|641838|641842|641848|641850|641856|641862|641863|641871|641876|641877|641882|641900|641901|641906|641911|641919|641924|641949|641957|641979|641996|642628|642631|642632|642792|642807|642816|642817|642822|642824|642828|642837|642840|642851|642857|642860|642867|642876|642878|642879|642880|642881|642898|642899|642904|642909|642910|642918|642921|642931|642938|642941|642942|642948|642951|642969|643633|643634|643635|643640|643648|643661|643669|643671|643675|643676|643686|643696|643697|643699|643701|643704|643707|643711|643723|643729|643730|643965|643968|643971|643974|643977|643981|643982|643983|643985|643986|643987|643988|643990|643993|643995|644000|644004|644007|644008|644014|644015|644023|644027|644030|644032|644041|644047|644049|644050|644052|644055|644057|644059|644067|644069|644073|644077|644078|644080|644081|644083|644084|644085|644090|644092|644093|644096|644100|644105|644109|644111|644112|644113|644115|644120|644130|644142|644151|644161|644191|644196|644206|644213|644221|644224|644251|644263|644271|644280|644283|644315|644321|644340|644342|644343|644358|644362|644365|644371|644372|644389|644395|644409|644410|644414|644415|644422|644428|644429|644441|644455|644457|644460|644462|644464|644465|644813|644822|644826|644852|644853|644857|644860|644864|644875|644887|644889|645349|645350|645357|645363|645365|645367|645368|645369|645376|645383|645386|645393|645394|645395|645396|645435|645438|645450|645469|645500|645504|645507|645514|645531|645533|645546|645552|645553|645556|645558|645561|645562|645577|645620|645632|645651|645669|645677|645727|645747|645776|645798|645800|645801|645804|645810|645822|645834|645836|645841|645843|645847|645848|645919|645922|645931|645934|645972|645973|645990|645991|645992|645996|646022|646025|646026|646031|646043|646046|646049|646064|646238|646241|646247|646254|646259|646269|646275|646281|646295|646298|646302|646306|646319|646328|646329|646340|646343|646344|646348|646349|646350|646351|646352|646367|646369|646370|646474|646480|646502|646543|646549|646558|646559|646568|646607|646727|646729|646732|646735|646743|646756|646768|646787|647299|647303|647309|647314|647315|647317|647318|647319|647483|647488|647489|647494|647497|647499|647504|647514|647516|647519|647523|647525|647530|647531|647532|647538|647540|647541|647547|647549|647559|647561|647562|647563|647566|647567|647569|647581|647583|647587|647603|647612|647654|647656|647668|647669|647673|647677|647680|647688|647693|648345|648350|648351|648357|648358|648391|649217|649253|649256|649263|649289|649292|649293|649299|649304|649313|649318|649324|649333|649338|649340|649341|649352|649356|649363|649367|650382|650683|650709|650763|650937|650940|650997|651014|651056|651221|651223|651235|651275|651276|651282|651283|651286|651303|651326|651334|651350|651351|651356|651359|651363|651370|651373|651379|651392|651398|651410|651421|651432|651449|651632|651704|651989|652006|652068|652077|652090|652093|652106|652153|652236|652243|652302|652405|652420|652450|652454|652483|652522|652532|652700|652717|652836|652855|652899|652932|652961|653033|653069|653072|653135|653181|653222|653223|653234|653247|653269|653275|653483|653495|653524|653702|654494|654784|655085|655108|655417|655455|655457|655458|655488|655562|655622|655623|655768|655770|655978|655979|656177|656199|656349|656357|656379|656382|656438|656496|656687|662975|665769|676947|676948|676949|676950|676951|676952|676953|676954|677029|677030|677031|677334|677460|677973|677979|678161|678166|678259|678284|678344|678493|678561|678592|678593|678606|678636|678687|678704|678722|678757|679825|682218|683293|683295|683296|683502|683503|683592|683681|683682|683684|683686|683687|683690|683691|683695|683697|683698|683699|684056|684058|684122|684123|684504|684529|684565|684663|684773|684774|684776|685170|685584|685600|685673|685674|685812|686217|686455|686517|686519|686522|686529|686535|686540|686569|686570|686572|686616|686652|686653|686655|686660|686661|686666|686679|686680|686681|686682|686684|686688|686738|686739|686741|686745|686955|686956|686962|686964|687084|687321|687554|687555|687557|687558|687559|687561|687569|687571|687572|687573|687576|687578|687579|687581|687627|687630|687634|687635|687705|687795|687797|687809|687920|687921|687922|688173|688174|688175|688176|688379|688380|688382|688383|688500|688501|688506|688507|688509|688512|688537|688540|688541|688546|688550|688628|688746|688748|688759|688761|688764|688771|688806|688810|688818|688819|688949|688950|688952|688953|689154|689267|689268|689273|689274|689780|689784|689785|690200|690406|690417|690419|690421|690432|690562|690624|690626|691128|691131|691180|691235|691237|691472|691567|691568|691583|691585|691587|691593|691643|691649|691730|691732|691734|691739|691740|691847|692105|692107|692108|692123|692124|692128|692258|692524|692714|692715|692720|692724|692732|692734|692743|692744|692749|692764|692766|692828|692831|692833|692837|692839|692895|692921|692924|693063|693081|693157|693160|693383|693384|693385|693389|693390|693391|693623|693624|693629|693630|693631|693632|693754|693756|693759|693765|693770|693771|693774|693803|693811|693812|693814|693821|693822|693825|693826|694053|694054|694056|694057|694065|694070|694071|694075|694076|694081|694138|694209|694280|694312|694314|694315|694316|694317|694318|694320|694321|694329|694330|694505|694695|694701|694702|694706|695143|695258|695259|695260|695261|695262|695398|695399|695478|695743|695762|695869|697542|697727|697728|697729|697730|698048|698225|698226|698807|698810|699194|699195|699197|699770|699796|699798|701126|701128|701453|702218|702219|702220|702458|702703|702708|703553|703554|703991|704305|704328|704735|704750|709560|710046|710047|710048|710049|710050|710051|712086|712088|712101|712495|714793|715262|715264|715649|717395|718840|718841|718842|720998|721001|721150|721426|721567|721571|721572|721574|723401|723402|723671|723698|724183|724572|725504|725875|725876|725878|726351|726486|726489|727096|727153|727379|729132|729135|730331|732317|733663|734802|734839|735235|735236|735237|735238|735239|735899|736039|736762|737487|737626|738106|738215|738803|739061|739062|739410|739418|739419|739420|739423|739426|739431|740676|740679|740681|741516|741528|741532|741537|742786|742787|744938|745151|746526|747250|747251|747255|747669|747671|747674|747675|747679|748433|749130|749131|749136|749205|749207|749208|749624|749625|749627|749628|749630|749631|749632|749633|750357|750714|751497|751844|751850|751855|751856|752313|752401|752402|752404|752406|752410|752411|752779|752782|753243|753528|753798|753801|753802|753812|753813|754223|754224|754226|754228|754231|754234|754239|754240|754243|754790|754975|754981|754989|754995|755005|755032|755335|755336|755747|755750|755754|755756|755762|755763|755779|755875|755876|756004|756007|756155|756481|756483|756640|756644|756646|756652|756708|758024|758025|759038|759129|759353|759374|759534|759751|760005|760226|760265|760527|760528|760596|760751|760752|760939|761307|761325|761813|761970|761971|761974|761976|761978|762870|762873|762876|762877|763191|763268|763270|763271|763273|763274|763275|763278|763279|763297|763300|763301|763303|763308|763315|763318|763323|763331|763332|763335|763336|763341|763342|763343|763503|763829|763840|764080|764081|764086|764506|764516|764542|764679|764683|764685|764688|764696|764702|764703|764705|764710|764722|764727|764731|764824|764829|764830|764832|764833|764838|764840|764842|764843|764845|764846|764851|764854|764857|764858|764861|764862|764863|764890|764892|764902|765082|765089|765239|765241|765246|765248|765265|765266|765268|765274|765284|765287|765288|765292|765295|765297|765304|765305|765312|765325|765326|765328|765332|765335|765346|765347|765350|766008|766010|766011|766016|766330|766343|766345|766924|766925|767206|767223|767523|767528|767535|767543|767730|768021|768022|768037|768039|768041|768042|768125|768130|768133|768134|768139|768154|768158|768163|768169|768171|768175|768177|768179|768181|768185|768190|768203|768582|768674|769010|769011|769460|769463|769466|769467|769476|769477|769481|769482|769483|769519|769524|769529|769530|769537|769538|769869|769961|769962|769973|769974|769975|769978|769989|769996|769997|769998|769999|770000|770003|770012|770014|770017|770421|770434|770440|770598|770601|770606|770609|770614|770616|770619|770623|770624|770629|770631|770634|770636|770638|770642|770644|770665|770669|770689|770697|770705|770725|770727|770731|770732|770742|770745|770747|770750|770784|770785|770789|770790|770794|771014|771017|771019|771024|771026|771342|771357|771367|771372|771373|771376|771386|771530|771531|771546|771673|771679|771690|771697|771702|771703|771737|771857|772200|772306|772308|772314|772320|772329|772330|772334|772351|772353|772382|772392|772393|772395|772846|772849|772852|772853|772854|773480|773487|773500|774748|774852|774854|774869|775586|775599|775685|775692|775722|775732|775747|775752|775773|776251|776292|776295|776297|776303|776367|776373|776496|776654|776684|776840|777482|778239|779037|779232|780709|781151|781152|781372|781374|781375|781378|781387|781391|781645|781646|781651|781955|782079|782085|782087|782090|782132|782133|782134|782135|782140|782141|782369|782761|782825|782896|783166|783170|783485|783524|783754|783758|783768|783822|783833|783837|783851|783852|783856|784299|784340|784341|784444|784446|784449|784570|784571|784572|784573|784575|784580|784581|784584|784585|784587|784592|784841|785168|785175|785201|785209|785220|785221|785223|785226|785348|785357|785359|785499|785500|785501|785503|785511|785513|785532|785584|785588|785594|785601|785603|785628|785652|785655|785661|785672|785673|785674|785675|785677|785706|785718|785756|785757|786006|786007|786013|786046|786570|787095|787103|787224|787227|787263|787304|787307|787309|787420|787444|787798|787842|787845|787847|788122|788247|788864|789409|789422|789423|789425|789429|789432|789438|789453|789457|789462|789465|789478|789482|789484|789486|789487|789488|789545|789547|789558|789565|789567|789568|789570|789572|789575|789582|789600|789603|789604|789608|789609|789611|789613|789617|789618|789626|789628|789633|789640|789663|789676|789688|789700|789754|789755|789756|789757|789758|789759|789760|789761|789762|789763|789764|789765|789766|789767|789768|789769|789770|789771|789772|789773|789774|789775|790184|790278|790313|790386|790478|790490|790492|790493|790565|790818|790819|791036|791058|791059|791090|791320|791512|791636|791774|791797|791804|791812|793403|795153|795454|795606|795608|795691|795725|796402|796512|796513|797288|797363|797520|797545|798083|799421|799657|800019|801662|804935|806113|806452|806453|806454|806455|806456|806457|806458|806459|806460|806461|806462|806463|806464|806465|806466|806467|806468|806469|806470|806471|806472|806473|806474|806475|806476|806477|806478|806479|806480|806481|806482|806483|806484|806485|806486|806487|806488|806489|806490|806491|806492|806493|806494|806495|806496|806497|806498|806499|806500|806501|806502|806503|806504|806505|806506|806507|806508|806509|806510|806511|806512|806513|806514|806515|806516|806517|806518|806519|806520|806521|806522|806523|806524|806525|806526|806527|806528|806529|806530|806531|806532|806533|806534|806535|806536|806537|806538|806539|806540|806541|806542|806543|806544|806545|806546|806547|806548|806549|806550|806551|806552|806553|806554|806555|806556|806557|806558|806559|806560|806561|806562|806563|806564|806565|806566|806567|806568|806569|806570|806571|806572|806573|806574|806575|806576|806577|806578|806579|806580|806581|806582|806583|806584|806585|806586|806587|806588|806589|806590|806591|806592|806593|806594|806595|806596|806597|806598|806599|806600|806601|806602|806603|806604|806605|806606|806607|806608|806609|806610|806611|806612|806613|806614|806615|806616|806617|806618|806619|806620|806621|806622|806623|806624|806625|806626|806627|806628|806629|806630|806631|806632|806633|806634|806635|806636|806637|806638|806639|806640|806641|806642|806643|806644|806645|806646|806647|806648|806649|806650|806651|806652|806653|806654|806655|806656|806657|806658|806659|806660|806661|806662|806663|806664|806665|806666|806667|806668|806669|806670|806671|806672|806673|806674|806675|806676|806677|806678|806679|806680|806681|806682|806683|806684|806685|806686|806687|806688|806689|806690|806691|806692|806693|806694|806695|806696|806697|806698|806699|806700|806701|806702|806703|806704|806705|806706|806707|806708|806709|806710|806711|806712|806713|806714|806715|806716|806717|806718|806719|806720|806721|806722|806723|806724|806725|806726|806727|806728|806729|806730|806731|806732|806733|806734|806735|806736|806737|806738|806739|806740|806741|806742|806743|806744|806745|806746|806747|806748|806749|806750|806751|806752|806753|806754|806755|806756|806757|806758|806759|806760|806761|806762|806763|806764|806765|806766|806767|806768|806769|806770|806771|806772|806773|806774|806775|806776|806777|806778|806779|806780|806781|806782|806783|806784|806785|806786|806787|806788|806789|806790|806791|806792|806793|806794|806795|806796|806797|806798|806799|806800|806801|806802|806803|806804|806805|806806|806807|806808|806809|806810|806811|806812|806813|806814|806815|806816|806817|806818|806819|806820|806821|806822|806823|806824|806825|806826|806827|806828|806829|806830|806831|806832|806833|806834|806835|806836|806837|806838|806839|806840|806841|806842|806843|806844|806845|806846|806847|806848|806849|806850|806851|806852|806853|806854|806855|806856|806857|806858|806859|806860|806861|806862|806863|806864|806865|806866|806867|806868|806869|806870|806871|806872|806873|806874|806875|806876|806877|806878|806879|806880|806881|806882|806883|806884|806885|806886|806887|806888|806889|806890|806891|806892|806893|806894|806895|806896|806897|806898|806899|806900|806901|806902|806903|806904|806905|806906|806907|806908|806909|806910|806911|806912|806913|806914|806915|806916|806917|806918|806919|806920|806921|806922|806923|806924|806925|806926|806927|806928|806929|806930|806931|806932|806933|806934|806935|806936|806937|806938|806939|806940|806941|806942|806943|806944|806945|806946|806947|806948|806949|806950|806951|806952|806953|806954|806955|806956|806957|806958|806959|806960|806961|806962|806963|806964|806965|806966|806967|806968|806969|806970|806971|806972|806973|806974|806975|806976|806977|806978|806979|806980|806981|806982|806983|806984|806985|806986|806987|806988|806989|806990|806991|806992|806993|806994|806995|806996|806997|806998|806999|807000|807001|807002|807003|807004|807005|807006|807007|807008|807009|807010|807011|807012|807013|807014|807015|807016|807017|807018|807019|807020|807021|807022|807023|807024|807025|807026|807027|807028|807029|807030|807031|807032|807033|807034|807035|807036|807037|807038|807039|807040|807041|807042|807043|807044|807045|807046|807047|807048|807049|807050|807051|807052|807053|807054|807055|807056|807057|807058|807059|807060|807061|807062|807063|807064|807065|807066|807067|807068|807069|807070|807071|807072|807073|807074|807075|807076|807077|807078|807079|807080|807081|807082|807083|807084|807085|807086|807087|807088|807089|807090|807091|807092|807093|807094|807095|807096|807097|807098|807099|807100|807101|807102|807103|807104|807105|807106|807107|807108|807109|807110|807111|807112|807113|807114|807115|807116|807117|807118|807119|807120|807121|807122|807123|807124|807125|807126|807127|807128|807129|807130|807131|807132|807133|807134|807135|807136|807137|807138|807139|807140|807141|807142|807143|807144|807145|807146|807147|807148|807149|807150|807151|807152|807153|807154|807155|807156|807157|807158|807159|807160|807161|807162|807163|807164|807165|807166|807167|807168|807169|807170|807171|807172|807173|807174|807175|807176|807177|807178|807179|807180|807181|807182|807183|807184|807185|807186|807187|807188|807189|807190|807191|807192|807193|807194|807195|807196|807197|807198|807199|807200|807201|807202|807203|807204|807205|807206|807207|807208|807209|807210|807211|807212|807213|807214|807215|807216|807217|807218|807219|807220|807221|807222|807223|807224|807225|807226|807227|807228|807229|807230|807231|807232|807233|807234|807235|807236|807237|807238|807239|807240|807241|807242|807243|807244|807245|807246|807247|807248|807249|807250|807251|807252|807253|807254|807255|807256|807257|807258|807259|807260|807261|807262|807263|807264|807265|807266|807267|807268|807269|807270|807271|807272|807273|807274|807275|807276|807277|807278|807279|807280|807281|807282|807283|807284|807285|807286|807287|807288|807289|807290|807291|807292|807293|807294|807295|807296|807297|807298|807299|807300|807301|807302|807303|807304|807305|807306|807307|807308|807309|807310|807311|807312|807313|807314|807315|807316|807317|807318|807319|807320|807321|807322|807323|807324|807325|807326|807327|807328|807329|807330|807331|807332|807333|807334|807335|807336|807337|807338|807339|807340|807341|807342|807343|807344|807345|807346|807347|807348|807349|807350|807351|807352|807353|807354|807355|807356|807357|807358|807359|807360|807361|807362|807363|807364|807365|807366|807367|807368|807369|807370|807371|807372|807373|807374|807375|807376|807377|807378|807379|807380|807381|807382|807383|807384|807385|807386|807387|807388|807389|807390|807391|807392|807393|807394|807395|807396|807397|807398|807399|807400|807401|807402|807403|807404|807405|807406|807407|807408|807409|807410|807411|807412|807413|807414|807415|807416|807417|807418|807419|807420|807421|807422|807423|807424|807425|807426|807427|807428|807429|807430|807431|807432|807433|807434|807435|807436|807437|807438|807439|807440|807441|807442|807443|807444|807445|807446|807447|807448|807449|807450|807451|807452|807453|807454|807455|807456|807457|807458|807459|807460|807461|807462|807463|807464|807465|807466|807467|807468|807469|807470|807471|807472|807473|807474|807475|807476|807477|807478|807479|807480|807481|807482|807483|807484|807485|807486|807487|807488|807489|807490|807491|807492|807493|807494|807495|807496|807497|807498|807499|807517|807518|807519|807520|807521|807522|807523|807524|807525|807526|807527|807528|807529|807530|807531|807532|807533|807534|807535|807536|807537|807538|807539|807540|807541|807542|807543|807544|807545|807546|807547|807548|807549|807550|807551|807552|807553|807554|807555|807556|807557|807558|807559|807560|807561|807562|807563|807564|807565|807566|807567|807568|807569|807570|807571|807572|807573|807574|807575|807576|807577|807578|807579|807580|807581|807582|807583|807584|807585|807586|807587|807588|807589|807590|807591|807592|807593|807594|807595|807596|807597|807598|807599|807600|807601|807602|807603|807604|807605|807606|807607|807608|807609|807610|807611|807612|807613|807614|807615|807616|807617|807618|807619|807620|807621|807622|807623|807624|807625|807626|807627|807628|807629|807630|807631|807632|807633|807634|807635|807636|807637|807638|807639|807640|807641|807642|807643|807644|807645|807646|807647|807648|807649|807650|807651|807652|807653|807654|807655|807656|807657|807658|807659|807660|807661|807662|807663|807664|807665|807666|807667|807668|807669|807670|807671|807672|807673|807674|807675|807676|807677|807678|807679|807680|807681|807682|807683|807684|807685|807686|807687|807688|807689|807690|807691|807692|807693|807694|807695|807696|807697|807698|807699|807700|807701|807702|807703|807704|807705|807706|807707|807708|807709|807710|807711|807712|807713|807714|807715|807716|807717|807718|807719|807720|807721|807722|807723|807724|807725|807726|807727|807728|807729|807730|807731|807732|807733|807734|807735|807736|807737|807738|807739|807740|807741|807742|807743|807744|807745|807746|807747|807748|807749|807750|807751|807752|807753|807754|807755|807756|807757|807758|807759|807760|807761|807762|807763|807764|807765|807766|807767|807768|807769|807770|807771|807772|807773|807774|807775|807776|807777|807778|807779|807780|807781|807782|807783|807784|807785|807786|807787|807788|807789|807790|807791|807792|807793|807794|807795|807796|807797|807798|807799|807800|807801|807802|807803|807804|807805|807806|807807|807808|807809|807810|807811|807812|807813|807814|807815|807816|807817|807818|807819|807820|807821|807822|807823|807824|807825|807826|807827|807828|807829|807830|807831|807832|807833|807834|807835|807836|807837|807838|807839|807840|807841|807842|807843|807844|807845|807846|807847|807848|807849|807850|807851|807852|807853|807854|807855|807856|807857|807858|807859|807860|807861|807862|807863|807864|807865|807866|807867|807868|807869|807870|807871|807872|807873|807874|807875|807876|807877|807878|807879|807880|807881|807882|807883|807884|807885|807886|807887|807888|807889|807890|807891|807892|807893|807894|807895|807896|807897|807898|807899|807900|807901|807902|807903|807904|807905|807906|807907|807908|807909|807910|807911|807912|807913|807914|807915|807916|807917|807918|807919|807920|807921|807922|807923|807924|807925|807926|807927|807928|807929|807930|807931|807932|807933|807934|807935|807936|807937|807938|807939|807940|807941|807942|807943|807944|807945|807946|807947|807948|807949|807950|807951|807952|807953|807954|807955|807956|807957|807958|807959|807960|807961|807962|807963|807964|807965|807966|807967|807968|807969|807970|807971|807972|807973|807974|807975|807976|807977|807978|807979|807980|807981|807982|807983|807984|807985|807986|807987|807988|807989|807990|807991|807992|807993|807994|807995|807996|807997|807998|807999|808000|808001|808002|808003|808004|808005|808006|808007|808008|808009|808010|808011|808012|808013|808014|808015|808016|808017|808018|808019|808020|808021|808022|808023|808024|808025|808026|808027|808028|808029|808030|808031|808032|808033|808034|808035|808036|808037|808038|808039|808040|808041|808042|808043|808044|808045|808046|808047|808048|808049|808050|808051|808052|808053|808054|808055|808056|808057|808058|808059|808060|808061|808062|808063|808064|808065|808066|808067|808068|808069|808070|808071|808072|808073|808074|808075|808076|808077|808078|808079|808080|808081|808082|808083|808084|808085|808086|808087|808088|808089|808090|808091|808092|808093|808094|808095|808096|808097|808098|808099|808100|808101|808102|808103|808104|808105|808106|808107|808108|808109|808110|808111|808112|808113|808114|808115|808116|808117|808118|808119|808120|808121|808122|808123|808124|808125|808126|808127|808128|808129|808130|808131|808132|808133|808134|808135|808136|808137|808138|808139|808140|808141|808142|808143|808144|808145|808146|808147|808148|808149|808150|808151|808152|808153|808154|808155|808156|808157|808158|808159|808160|808161|808162|808163|808164|808165|808166|808167|808168|808169|808170|808171|808172|808173|808174|808175|808176|808177|808178|808179|808180|808181|808182|808183|808184|808185|808186|808187|808188|808189|808190|808191|808192|808193|808194|808195|808196|808197|808198|808199|808200|808201|808202|808203|808204|808205|808206|808207|808208|808209|808210|808211|808212|808213|808214|808215|808216|808217|808218|808219|808220|808221|808222|808223|808224|808225|808226|808227|808228|808229|808230|808231|808232|808233|808234|808235|808236|808237|808238|808239|808240|808241|808242|808243|808244|808245|808246|808247|808248|808249|808250|808251|808252|808253|808254|808255|808256|808257|808258|808259|808260|808261|808262|808263|808264|808265|808266|808267|808268|808269|808270|808271|808272|808273|808274|808275|808276|808277|808278|808279|808280|808281|808282|808283|808284|808285|808286|808287|808288|808289|808290|808291|808292|808293|808294|808295|808296|808297|808298|808299|808300|808301|808302|808303|808304|808305|808306|808307|808308|808309|808310|808311|808312|808313|808314|808315|808316|808317|808318|808319|808320|808321|808322|808323|808324|808325|808326|808327|808328|808329|808330|808331|808332|808333|808334|808335|808336|808337|808338|808339|808340|808341|808342|808343|808344|808345|808346|808347|808348|808349|808350|808351|808352|808353|808354|808355|808356|808357|808358|808359|808360|808361|808362|808363|808364|808365|808366|808367|808368|808369|808370|808371|808372|808373|808374|808375|808376|808377|808378|808379|808380|808381|808382|808383|808384|808385|808386|808387|808388|808389|808390|808391|808392|808393|808394|808395|808396|808397|808398|808399|808400|808401|808402|808403|808404|808405|808406|808407|808408|808409|808410|808411|808412|808413|808414|808415|808416|808417|808418|808419|808420|808421|808422|808423|808424|808425|808426|808427|808428|808429|808430|808431|808432|808433|808434|808435|808436|808437|808438|808439|808440|808441|808442|808443|808444|808445|808446|808447|808448|808449|808450|808451|808452|808453|808454|808455|808456|808457|808458|808459|808460|808461|808462|808463|808464|808465|808466|808467|808468|808469|808470|808471|808472|808473|808474|808475|808476|808477|808478|808479|808480|808481|808482|808483|808484|808485|808486|808487|808488|808489|808490|808491|808492|808493|808494|808495|808496|808497|808498|808499|808500|808501|808502|808503|808504|808505|808506|808507|808508|808509|808510|808511|808512|808513|808514|808515|808516|808517|808518|808519|808520|808521|808522|808523|808524|808525|808526|808527|808528|808529|808530|808531|808532|808533|808534|808535|808536|808537|808538|808539|808540|808541|808542|808543|808544|808545|808546|808547|808548|808549|808550|808551|808552|808553|808554|808555|808556|808557|808558|808559|808560|808561|808562|808563|808564|808565|808566|808567|808568|808569|808570|808574|808575|808576|808577|808578|808579|808580|808581|808582|808583|808584|808585|808586|808587|808588|808589|808590|808591|808592|808593|808594|808595|808596|808597|808598|808599|808600|808601|808602|808603|808604|808605|808606|808607|808608|808609|808610|808611|808612|808613|808614|808615|808616|808617|808618|808619|808620|808621|808622|808623|808624|808625|808626|808627|808628|808629|808630|808631|808632|808633|808634|808635|808636|808637|808638|808639|808640|808641|808642|808643|808644|808645|808646|808647|808648|808649|808650|808651|808652|808653|808654|808655|808656|808657|808658|808659|808660|808661|808662|808663|808664|808665|808666|808667|808668|808669|808670|808671|808672|808673|808674|808675|808676|808677|808678|808679|808680|808681|808682|808683|808684|808685|808686|808687|808688|808689|808690|808691|808692|808693|808694|808695|808696|808697|808698|808699|808700|808701|808702|808703|808704|808705|808706|808707|808708|808709|808710|808711|808712|808713|808714|808715|808716|808717|808718|808719|808720|808721|808722|808723|808724|808725|808726|808727|808728|808729|808730|808731|808732|808733|808734|808735|808736|808737|808738|808739|808740|808741|808742|808743|808744|808745|808746|808747|808748|808749|808750|808751|808752|808753|808754|808755|808756|808757|808758|808759|808760|808761|808762|808763|808764|808765|808766|808767|808768|808769|808770|808771|808772|808773|808774|808775|808776|808777|808778|808779|808780|808781|808782|808783|808784|808785|808786|808787|808788|808789|808790|808791|808792|808793|808794|808795|808796|808797|808798|808799|808800|808801|808802|808803|808804|808805|808806|808807|808808|808809|808810|808811|808812|808813|808814|808815|808816|808817|808818|808819|808820|808821|808822|808823|808824|808825|808826|808827|808828|808829|808830|808831|808832|808833|808834|808835|808836|808837|808838|808839|808840|808873|808874|808875|808876|808877|808878|808879|808880|808881|808882|808883|808884|808885|808886|808887|808888|808889|808890|808891|808892|808893|808894|808895|808896|808897|808898|808899|808900|808901|808902|808903|808904|808905|808906|808907|808908|808909|808910|808911|808912|808913|808914|808915|808916|808917|808918|808919|808920|808921|808922|808923|808924|808925|808926|808927|808928|808929|808930|808931|808932|808933|808934|808935|808936|808937|808938|808939|808940|808941|808942|808943|808944|808945|808987|808988|808989|808990|808991|808992|808993|808994|808995|808996|808997|808998|808999|809000|809001|809002|809003|809004|809005|809006|809007|809008|809009|809010|809011|809012|809013|809014|809015|809016|809017|809018|809019|809020|809021|809022|809023|809024|809025|809026|809027|809028|809029|809030|809031|809032|809033|809034|809035|809036|809037|809038|809039|809040|809041|809042|809043|809044|809045|809046|809047|809048|809049|809050|809051|809052|809053|809054|809055|809056|809057|809058|809059|809060|809061|809062|809063|809064|809065|809066|809067|809068|809069|809070|809071|809072|809073|809074|809075|809076|809077|809078|809079|809080|809081|809082|809083|809084|809085|809086|809087|809088|809089|809090|809091|809092|809093|809094|809095|809096|809097|809098|809099|809100|809101|809102|809103|809104|809105|809106|809107|809108|809109|809110|809111|809112|809113|809114|809115|809116|809117|809118|809119|809120|809121|809122|809123|809124|809125|809126|809127|809128|809129|809130|809131|809132|809133|809134|809135|809136|809137|809138|809139|809140|809141|809142|809143|809144|809145|809146|809147|809148|809149|809150|809151|809152|809153|809154|809155|809156|809157|809158|809159|809160|809161|809162|809163|809164|809165|809166|809167|809168|809169|809170|809171|809172|809173|809174|809175|809176|809177|809178|809179|809180|809181|809182|809183|809184|809185|809186|809187|809188|809189|809190|809191|809192|809193|809194|809195|809196|809197|809198|809199|809200|809201|809202|809203|809204|809205|809206|809207|809208|809209|809210|809211|809212|809213|809214|809215|809216|809217|809218|809219|809220|809221|809222|809223|809224|809225|809226|809227|809228|809229|809230|809231|809232|809233|809234|809235|809236|809237|809238|809239|809240|809241|809242|809243|809244|809245|809246|809247|809248|809249|809250|809251|809252|809253|809254|809255|809256|809257|809258|809259|809260|809261|809262|809263|809264|809265|809266|809267|809268|809269|809270|809271|809272|809273|809274|809275|809276|809277|809278|809279|809280|809281|809282|809283|809284|809285|809286|809287|809288|809289|809290|809291|809292|809293|809294|809295|809296|809297|809298|809299|809300|809301|809302|809303|809304|809305|809306|809307|809308|809309|809310|809311|809312|809313|809314|809315|809316|809317|809318|809319|809320|809321|809322|809323|809324|809325|809326|809327|809328|809329|809330|809331|809332|809333|809334|809335|809336|809337|809338|809339|809340|809341|809342|809343|809344|809345|809346|809347|809348|809349|809350|809351|809352|809353|809354|809355|809356|809357|809358|809359|809360|809361|809362|809363|809364|809365|809366|809367|809368|809369|809370|809371|809372|809373|809374|809375|809376|809377|809378|809379|809380|809381|809382|809383|809384|809385|809386|809387|809388|809389|809390|809391|809392|809393|809394|809395|809396|809397|809398|809399|809400|809401|809402|809403|809404|809405|809406|809407|809408|809409|809410|809411|809412|809413|809414|809415|809416|809417|809418|809419|809420|809421|809422|809423|809424|809425|809426|809427|809428|809429|809430|809431|809432|809433|809434|809435|809436|809437|809438|809439|809440|809441|809442|809443|809444|809445|809446|809447|809448|809449|809450|809451|809452|809453|809454|809455|809456|809457|809458|809459|809460|809461|809462|809463|809464|809465|809466|809467|809468|809469|809470|809471|809472|809473|809474|809475|809476|809477|809478|809479|809480|809481|809482|809483|809484|809485|809486|809487|809488|809489|809490|809491|809492|809493|809494|809495|809496|809497|809498|809499|809500|809501|809502|809503|809504|809505|809506|809507|809508|809509|809510|809511|809512|809513|809514|809515|809516|809517|809518|809519|809520|809521|809522|809523|809524|809525|809526|809527|809528|809529|809530|809531|809532|809533|809534|809535|809536|809537|809538|809539|809540|809541|809542|809543|809544|809545|809546|809547|809548|809549|809550|809551|809552|809553|809554|809555|809556|809557|809558|809559|809560|809561|809562|809563|809564|809565|809566|809567|809568|809569|809570|809571|809572|809573|809574|809575|809576|809577|809578|809579|809580|809581|809582|809583|809584|809585|809586|809587|809588|809589|809590|809591|809592|809593|809594|809595|809596|809597|809598|809599|809600|809601|809602|809603|809604|809605|809606|809607|809608|809609|809610|809611|809612|809613|809614|809615|809616|809617|809618|809619|809620|809621|809622|809623|809624|809625|809626|809627|809628|809629|809630|809631|809632|809633|809634|809635|809636|809637|809638|809639|809640|809641|809642|809643|809644|809645|809646|809647|809648|809649|809650|809651|809652|809653|809654|809655|809656|809657|809658|809659|809660|809661|809662|809663|809664|809665|809666|809667|809668|809669|809670|809671|809672|809673|809674|809675|809676|809677|809678|809679|809680|809681|809682|809683|809684|809685|809686|809687|809688|809689|809690|809691|809692|809693|809694|809695|809696|809697|809698|809699|809700|809701|809702|809703|809704|809705|809706|809707|809708|809709|809710|809711|809712|809713|809714|809715|809716|809717|809718|809719|809720|809721|809722|809723|809724|809725|809726|809727|809728|809729|809730|809731|809732|809733|809734|809735|809736|809737|809738|809739|809740|809741|809742|809743|809744|809745|809746|809747|809748|809749|809750|809751|809752|809753|809754|809755|809756|809757|809758|809759|809760|809761|809762|809763|809764|809765|809766|809767|809768|809769|809770|809771|809772|809773|809774|809775|809776|809777|809778|809779|809780|809781|809782|809783|809784|809785|809786|809787|809788|809789|809790|809791|809792|809793|809794|809795|809796|809797|809798|809799|809800|809801|809802|809803|809804|809805|809806|809807|809808|809809|809810|809811|809812|809813|809814|809815|809816|809817|809818|809819|809820|809821|809822|809823|809824|809825|809826|809827|809828|809829|809830|809831|809832|809833|809834|809835|809836|809837|809838|809839|809840|809841|809842|809843|809844|809845|809846|809847|809848|809849|809850|809851|809852|809853|809854|809855|809856|809857|809858|809859|809860|809861|809862|809863|809864|809865|809866|809867|809868|809869|809870|809871|809872|809873|809874|809875|809876|809877|809878|809879|809880|809881|809882|809883|809884|809885|809886|809887|809888|809889|809890|809891|809892|809893|809894|809895|809896|809897|809898|809899|809900|809901|809902|809903|809904|809905|809906|809907|809908|809909|809910|809911|809912|809913|809914|809915|809916|809917|809918|809919|809920|809921|809922|809923|809924|809925|809926|809927|809928|809929|809930|809931|809932|809933|809934|809935|809936|809937|809938|809939|809940|809941|809942|809943|809944|809945|809946|809947|809948|809949|809950|809951|809952|809953|809954|809955|809956|809957|809958|809959|809960|809961|809962|809963|809964|809965|809966|809967|809968|809969|809970|809971|809972|809973|809974|809975|809976|809977|809978|809979|809980|809981|809982|809983|809984|809985|809986|809987|809988|809989|809990|809991|809992|809993|809994|809995|809996|809997|809998|809999|810000|810001|810002|810003|810004|810005|810006|810007|810008|810009|810010|810011|810012|810013|810014|810015|810016|810017|810018|810019|810020|810021|810022|810023|810024|810025|810026|810027|810028|810029|810030|810031|810032|810033|810034|810035|810036|810037|810038|810039|810040|810041|810042|810043|810044|810045|810046|810047|810048|810049|810050|810051|810052|810053|810054|810055|810056|810057|810058|810059|810060|810061|810062|810063|810064|810065|810066|810067|810068|810069|810070|810071|810072|810073|810074|810075|810076|810077|810078|810079|810080|810081|810082|810083|810084|810085|810086|810087|810088|810089|810090|810091|810092|810093|810094|810095|810096|810097|810098|810099|810100|810101|810102|810103|810104|810105|810106|810107|810108|810109|810110|810111|810112|810113|810114|810115|810116|810117|810118|810119|810120|810121|810122|810123|810124|810125|810126|810127|810128|810129|810130|810131|810132|810133|810134|810135|810136|810137|810138|810139|810140|810141|810142|810143|810144|810145|810146|810147|810148|810149|810150|810151|810152|810153|810154|810155|810156|810157|810158|810159|810160|810161|810162|810163|810164|810165|810166|810167|810168|810169|810170|810171|810172|810173|810174|810175|810176|810177|810178|810179|810180|810181|810182|810183|810184|810185|810186|810187|810188|810189|810190|810191|810192|810193|810194|810195|810196|810197|810198|810199|810200|810201|810202|810203|810204|810205|810206|810207|810208|810209|810210|810211|810212|810213|810214|810215|810216|810217|810218|810219|810220|810221|810222|810223|810224|810225|810226|810227|810228|810229|810230|810231|810232|810233|810234|810235|810236|810237|810238|810239|810240|810241|810242|810243|810244|810245|810246|810247|810248|810249|810250|810251|810252|810253|810254|810255|810256|810257|810258|810259|810260|810261|810262|810263|810264|810265|810266|810267|810268|810269|810270|810271|810272|810273|810274|810275|810276|810277|810278|810279|810280|810281|810282|810283|810284|810285|810286|810287|810288|810289|810290|810291|810292|810293|810294|810295|810296|810297|810298|810299|810300|810301|810302|810303|810304|810305|810306|810307|810308|810309|810310|810311|810312|810313|810314|810315|810316|810317|810318|810319|810320|810321|810322|810323|810324|810325|810326|810327|810328|810329|810330|810331|810332|810333|810334|810335|810336|810337|810338|810339|810340|810341|810342|810343|810344|810345|810346|810347|810348|810349|810350|810351|810352|810353|810354|810355|810356|810357|810358|810359|810360|810361|810362|810363|810364|810365|810366|810367|810368|810369|810370|810371|810372|810373|810374|810375|810376|810377|810378|810379|810380|810381|810382|810383|810384|810385|810386|810387|810388|810389|810390|810391|810392|810393|810394|810395|810396|810397|810398|810399|810400|810401|810402|810403|810404|810405|810406|810407|810408|810409|810410|810411|810412|810413|810414|810415|810416|810417|810418|810419|810420|810421|810422|810423|810424|810425|810426|810427|810428|810429|810430|810431|810432|810433|810434|810435|810436|810437|810438|810439|810440|810441|810442|810443|810444|810445|810446|810447|810448|810449|810450|810451|810452|810453|810454|810455|810456|810457|810458|810459|810460|810461|810462|810463|810464|810465|810466|810467|810468|810469|810470|810471|810472|810473|810474|810475|810476|810477|810478|810479|810480|810481|810482|810483|810484|810485|810486|810487|810488|810489|810490|810491|810492|810493|810494|810495|810496|810497|810498|810499|810500|810501|810502|810503|810504|810505|810506|810507|810508|810509|810510|810511|810512|810513|810514|810515|810516|810517|810518|810519|810520|810521|810522|810523|810524|810525|810526|810527|810528|810529|810530|810531|810532|810533|810534|810535|810536|810537|810538|810539|810540|810541|810542|810543|810544|810545|810546|810547|810548|810549|810550|810551|810552|810553|810554|810555|810556|810557|810558|810559|810560|810561|810562|810563|810564|810565|810566|810567|810568|810569|810570|810571|810572|810573|810574|810575|810576|810577|810578|810579|810580|810581|810582|810583|810584|810585|810586|810587|810588|810589|810590|810591|810592|810593|810594|810595|810596|810597|810598|810599|810600|810601|810602|810603|810604|810605|810606|810607|810608|810609|810610|810611|810612|810613|810614|810615|810616|810617|810618|810619|810620|810621|810622|810623|810624|810625|810626|810627|810628|810629|810630|810631|810632|810633|810634|810635|810636|810637|810638|810639|810640|810641|810642|810643|810644|810645|810646|810647|810648|810649|810650|810651|810652|810653|810654|810655|810656|810657|810658|810659|810660|810661|810662|810663|810664|810665|810666|810667|810668|810669|810670|810671|810672|810673|810674|810675|810676|810677|810678|810679|810680|810681|810682|810683|810684|810685|810686|810687|810688|810689|810690|810691|810692|810693|810694|810695|810696|810697|810698|810699|810700|810701|810702|810703|810704|810705|810706|810707|810708|810709|810710|810711|810712|810713|810714|810715|810716|810717|810718|810719|810720|810721|810722|810723|810724|810725|810726|810727|810728|810729|810730|810731|810732|810733|810734|810735|810736|810737|810738|810739|810740|810741|810742|810743|810744|810745|810746|810747|810748|810749|810750|810751|810752|810753|810754|810755|810756|810757|810758|810759|810760|810761|810762|810763|810764|810765|810766|810767|810768|810769|810770|810771|810772|810773|810774|810775|810776|810777|810778|810779|810780|810781|810782|810783|810784|810785|810786|810787|810788|810789|810790|810791|810792|810793|810794|810795|810796|810797|810798|810799|810800|810801|810802|810803|810804|810805|810806|810807|810808|810809|810810|810811|810812|810813|810814|810815|810816|810817|810818|810819|810820|810821|810822|810823|810824|810825|810826|810827|810828|810829|810830|810831|810832|810833|810834|810835|810836|810837|810838|810839|810840|810841|810842|810843|810844|810845|810846|810847|810848|810849|810850|810851|810852|810853|810854|810855|810856|810857|810858|810859|810860|810861|810862|810863|810864|810865|810866|810867|810868|810869|810870|810871|810872|810873|810874|810875|810876|810877|810878|810879|810880|810881|810882|810883|810884|810885|810886|810887|810888|810889|810890|810891|810892|810893|810894|810895|810896|810897|810898|810899|810900|810901|810902|810903|810904|810905|810906|810907|810908|810909|810910|810911|810912|810913|810914|810915|810916|810917|810918|810919|810920|810921|810922|810923|810924|810925|810926|810927|810928|810929|810930|810931|810932|810933|810934|810935|810936|810937|810938|810939|810940|810941|810942|810943|810944|810945|810946|810947|810948|810949|810950|810951|810952|810953|810954|810955|810956|810957|810958|810959|810960|810961|810962|810963|810964|810965|810966|810967|810968|810969|810970|810971|810972|810973|810974|810975|810976|810977|810978|810979|810980|810981|810982|810983|810984|810985|810986|810987|810988|810989|810990|810991|810992|810993|810994|810995|810996|810997|810998|810999|811000|811001|811002|811003|811004|811005|811006|811007|811008|811009|811010|811011|811012|811013|811014|811015|811016|811017|811018|811019|811020|811021|811022|811023|811024|811025|811026|811027|811028|811029|811030|811031|811032|811033|811034|811035|811036|811037|811038|811039|811040|811041|811042|811043|811044|811045|811046|811047|811048|811049|811050|811051|811052|811053|811054|811055|811056|811057|811058|811059|811060|811061|811062|811063|811064|811065|811066|811067|811068|811069|811070|811071|811072|811073|811074|811075|811076|811077|811078|811079|811080|811081|811082|811083|811084|811085|811086|811087|811088|811089|811090|811091|811092|811093|811094|811095|811096|811097|811098|811099|811100|811101|811102|811103|811104|811105|811106|811107|811108|811109|811110|811111|811112|811113|811114|811115|811116|811117|811118|811119|811120|811121|811122|811123|811124|811125|811126|811127|811128|811129|811130|811131|811132|811133|811134|811135|811136|811137|811138|811139|811140|811141|811142|811143|811144|811145|811146|811147|811148|811149|811150|811151|811152|811153|811154|811155|811156|811157|811158|811159|811160|811161|811162|811163|811164|811165|811166|811167|811168|811169|811170|811171|811172|811173|811174|811175|811176|811177|811178|811179|811180|811181|811182|811183|811184|811185|811186|811187|811188|811189|811190|811191|811192|811193|811194|811195|811196|811197|811198|811199|811200|811201|811202|811203|811204|811205|811206|811207|811208|811209|811210|811211|811212|811213|811214|811215|811216|811217|811218|811219|811220|811221|811222|811223|811224|811225|811226|811227|811228|811229|811230|811231|811232|811233|811234|811235|811236|811237|811238|811239|811240|811241|811242|811243|811244|811245|811246|811247|811248|811249|811250|811251|811252|811253|811254|811255|811256|811257|811258|811259|811260|811261|811262|811263|811264|811265|811266|811267|811268|811269|811270|811271|811272|811273|811274|811275|811276|811277|811278|811279|811280|811281|811282|811283|811284|811285|811286|811287|811288|811289|811290|811291|811292|811293|811294|811295|811296|811297|811298|811299|811300|811301|811302|811303|811304|811305|811306|811307|811308|811309|811310|811311|811312|811313|811314|811315|811316|811317|811318|811319|811320|811321|811322|811323|811324|811325|811326|811327|811328|811329|811330|811331|811332|811333|811334|811335|811336|811337|811338|811339|811340|811341|811342|811343|811344|811345|811346|811347|811348|811349|811350|811351|811352|811353|811354|811355|811356|811357|811358|811359|811360|811361|811362|811363|811364|811365|811366|811367|811368|811369|811370|811371|811372|811373|811374|811375|811376|811377|811378|811379|811380|811381|811382|811383|811384|811385|811386|811387|811388|811389|811390|811391|811392|811393|811394|811395|811396|811397|811398|811399|811400|811401|811402|811403|811404|811405|811406|811407|811408|811409|811410|811411|811412|811413|811414|811415|811416|811417|811418|811419|811420|811421|811422|811423|811424|811425|811426|811427|811428|811429|811430|811431|811432|811433|811434|811435|811436|811437|811438|811439|811440|811441|811442|811443|811444|811445|811446|811447|811448|811449|811450|811451|811452|811453|811454|811455|811456|811457|811458|811459|811460|811461|811462|811463|811464|811465|811466|811467|811468|811469|811470|811471|811472|811473|811474|811475|811476|811477|811478|811479|811480|811481|811482|811483|811484|811485|811486|811487|811488|811489|811490|811491|811492|811493|811494|811495|811496|811497|811498|811499|811500|811501|811502|811503|811504|811505|811506|811507|811508|811509|811510|811511|811512|811513|811514|811515|811516|811517|811518|811519|811520|811521|811522|811523|811524|811525|811526|811527|811528|811529|811530|811531|811532|811533|811534|811535|811536|811537|811538|811539|811540|811541|811542|811543|811544|811545|811546|811547|811548|811549|811550|811551|811552|811553|811554|811555|811556|811557|811558|811559|811560|811561|811562|811563|811564|811565|811566|811567|811568|811569|811570|811571|811572|811573|811574|811575|811576|811577|811578|811579|811580|811581|811582|811583|811584|811585|811586|811587|811588|811589|811590|811591|811592|811593|811594|811595|811596|811597|811598|811599|811600|811601|811602|811603|811604|811605|811606|811607|811608|811609|811610|811611|811612|811613|811614|811615|811616|811617|811618|811619|811620|811621|811622|811623|811624|811625|811626|811627|811628|811629|811630|811631|811632|811633|811634|811635|811636|811637|811638|811639|811640|811641|811642|811643|811644|811645|811646|811647|811648|811649|811650|811651|811652|811653|811654|811655|811656|811657|811658|811659|811660|811661|811662|811663|811664|811665|811666|811667|811668|811669|811670|811671|811672|811673|811674|811675|811676|811677|811678|811679|811680|811681|811682|811683|811684|811685|811686|811687|811688|811689|811690|811691|811692|811693|811694|811695|811696|811697|811698|811699|811700|811701|811702|811703|811704|811705|811706|811707|811708|811709|811710|811711|811712|811713|811714|811715|811716|811717|811718|811719|811720|811721|811722|811723|811724|811725|811726|811727|811728|811729|811730|811731|811732|811733|811734|811735|811736|811737|811738|811739|811740|811741|811742|811743|811744|811745|811746|811747|811748|811749|811750|811751|811752|811753|811754|811755|811756|811757|811758|811759|811760|811761|811762|811763|811764|811765|811766|811767|811768|811769|811770|811771|811772|811773|811774|811775|811776|811777|811778|811779|811780|811781|811782|811783|811784|811785|811786|811787|811788|811789|811790|811791|811792|811793|811794|811795|811796|811797|811798|811799|811800|811801|811802|811803|811804|811805|811806|811807|811808|811809|811810|811811|811812|811813|811814|811815|811816|811817|811818|811819|811820|811821|811822|811823|811824|811825|811826|811827|811828|811829|811830|811831|811832|811833|811834|811835|811836|811837|811838|811839|811840|811841|811842|811843|811844|811845|811846|811847|811848|811849|811850|811851|811852|811853|811854|811855|811856|811857|811858|811859|811860|811861|811862|811863|811864|811865|811866|811867|811868|811869|811870|811871|811872|811873|811874|811875|811876|811877|811878|811879|811880|811881|811882|811883|811884|811885|811886|811887|811888|811889|811890|811891|811892|811893|811894|811895|811896|811897|811898|811899|811900|811901|811902|811903|811904|811905|811906|811907|811908|811909|811910|811911|811912|811913|811914|811915|811916|811917|811918|811919|811920|811921|811922|811923|811924|811925|811926|811927|811928|811929|811930|811931|811932|811933|811934|811935|811936|811937|811938|811939|811940|811941|811942|811943|811944|811945|811946|811947|811948|811949|811950|811951|811952|811953|811954|811955|811956|811957|811958|811959|811960|811961|811962|811963|811964|811965|811966|811967|811968|811969|811970|811971|811972|811973|811974|811975|811976|811977|811978|811979|811980|811981|811982|811983|811984|811985|811986|811987|811988|811989|811990|811991|811992|811993|811994|811995|811996|811997|811998|811999|812000|812001|812002|812003|812004|812005|812006|812007|812008|812009|812010|812011|812012|812013|812014|812015|812016|812017|812018|812019|812020|812021|812022|812023|812024|812025|812026|812027|812028|812029|812030|812031|812032|812033|812034|812035|812036|812037|812038|812039|812040|812041|812042|812043|812044|812045|812046|812047|812048|812049|812050|812051|812052|812053|812054|812055|812056|812057|812058|812059|812060|812061|812062|812063|812064|812065|812066|812067|812068|812069|812070|812071|812072|812073|812074|812075|812076|812077|812078|812079|812080|812081|812082|812083|812084|812085|812086|812087|812088|812089|812090|812091|812092|812093|812094|812095|812096|812097|812098|812099|812100|812101|812102|812103|812104|812105|812106|812107|812108|812109|812110|812111|812112|812113|812114|812115|812116|812117|812118|812119|812120|812121|812122|812123|812124|812125|812126|812127|812128|812129|812130|812131|812132|812133|812134|812135|812136|812137|812138|812139|812140|812141|812142|812143|812144|812145|812146|812147|812148|812149|812150|812151|812152|812153|812154|812155|812156|812157|812158|812159|812160|812161|812162|812163|812164|812165|812166|812167|812168|812169|812170|812171|812172|812173|812174|812175|812176|812177|812178|812179|812180|812181|812182|812183|812184|812185|812186|812187|812188|812189|812190|812191|812192|812193|812194|812195|812196|812197|812198|812199|812200|812201|812202|812203|812204|812205|812206|812207|812208|812209|812210|812211|812212|812213|812214|812215|812216|812217|812218|812219|812220|812221|812222|812223|812224|812225|812226|812227|812228|812229|812230|812231|812232|812233|812234|812235|812236|812237|812238|812239|812240|812241|812242|812243|812244|812245|812246|812247|812248|812249|812250|812251|812252|812253|812254|812255|812256|812257|812258|812259|812260|812261|812262|812263|812264|812265|812266|812267|812268|812269|812270|812271|812272|812273|812274|812275|812276|812277|812278|812279|812280|812281|812282|812283|812284|812285|812286|812287|812288|812289|812290|812291|812292|812293|812294|812295|812296|812297|812298|812299|812300|812301|812302|812303|812304|812305|812306|812307|812308|812309|812310|812311|812312|812313|812314|812315|812316|812317|812318|812319|812320|812321|812322|812323|812324|812325|812326|812327|812328|812329|812330|812331|812332|812333|812334|812335|812336|812337|812338|812339|812340|812341|812342|812343|812344|812345|812346|812347|812348|812349|812350|812351|812352|812353|812354|812355|812356|812357|812358|812359|812360|812361|812362|812363|812364|812365|812366|812367|812368|812369|812370|812371|812372|812373|812374|812375|812376|812377|812378|812379|812380|812381|812382|812383|812384|812385|812386|812387|812388|812389|812390|812391|812392|812393|812394|812395|812396|812397|812398|812399|812400|812401|812402|812403|812404|812405|812406|812407|812408|812409|812410|812411|812412|812413|812414|812415|812416|812417|812418|812419|812420|812421|812422|812423|812424|812425|812426|812427|812428|812429|812430|812431|812432|812433|812434|812435|812436|812437|812438|812439|812440|812441|812442|812443|812444|812445|812446|812447|812448|812449|812450|812451|812452|812453|812454|812455|812456|812457|812458|812459|812460|812461|812462|812463|812464|812465|812466|812467|812468|812469|812470|812471|812472|812473|812474|812475|812476|812477|812478|812479|812480|812481|812482|812483|812484|812485|812486|812487|812488|812489|812490|812491|812492|812493|812494|812495|812496|812497|812498|812499|812500|812501|812502|812503|812504|812505|812506|812507|812508|812509|812510|812511|812512|812513|812514|812515|812516|812517|812518|812519|812520|812521|812522|812523|812524|812525|812526|812527|812528|812529|812530|812531|812532|812533|812534|812535|812536|812537|812538|812539|812540|812541|812542|812543|812544|812545|812546|812547|812548|812549|812550|812551|812552|812553|812554|812555|812556|812557|812558|812559|812560|812561|812562|812563|812564|812565|812566|812567|812568|812569|812570|812571|812572|812573|812574|812575|812576|812577|812578|812579|812580|812581|812582|812583|812584|812585|812586|812587|812588|812589|812590|812591|812592|812593|812594|812595|812596|812597|812598|812599|812600|812601|812602|812603|812604|812605|812606|812607|812608|812609|812610|812611|812612|812613|812614|812615|812616|812617|812618|812619|812620|812621|812622|812623|812624|812625|812626|812627|812628|812629|812630|812631|812632|812633|812634|812635|812636|812637|812638|812639|812640|812641|812642|812643|812644|812645|812646|812647|812648|812649|812650|812651|812652|812653|812654|812655|812656|812657|812658|812659|812660|812661|812662|812663|812664|812665|812666|812667|812668|812669|812670|812671|812672|812673|812674|812675|812676|812677|812678|812679|812680|812681|812682|812683|812684|812685|812686|812687|812688|812689|812690|812691|812692|812693|812694|812695|812696|812697|812698|812699|812700|812701|812702|812703|812704|812705|812706|812707|812708|812709|812710|812711|812712|812713|812714|812715|812716|812717|812718|812719|812720|812721|812722|812723|812724|812725|812726|812727|812728|812729|812730|812731|812732|812733|812734|812735|812736|812737|812738|812739|812740|812741|812742|812743|812744|812745|812746|812747|812748|812749|812750|812751|812752|812753|812754|812755|812756|812757|812758|812759|812760|812761|812762|812763|812764|812765|812766|812767|812768|812769|812770|812771|812772|812773|812774|812775|812776|812777|812778|812779|812780|812781|812782|812783|812784|812785|812786|812787|812788|812789|812790|812791|812792|812793|812794|812795|812796|812797|812798|812799|812800|812801|812802|812803|812804|812805|812806|812807|812808|812809|812810|812811|812812|812813|812814|812815|812816|812817|812818|812819|812820|812821|812822|812823|812824|812825|812826|812827|812828|812829|812830|812831|812832|812833|812834|812835|812836|812837|812838|812839|812840|812841|812842|812843|812844|812845|812846|812847|812848|812849|812850|812851|812852|812853|812854|812855|812856|812857|812858|812859|812860|812861|812862|812863|812864|812865|812866|812867|812868|812869|812870|812871|812872|812873|812874|812875|812876|812877|812878|812879|812880|812881|812882|812883|812884|812885|812886|812887|812888|812889|812890|812891|812892|812893|812894|812895|812896|812897|812898|812899|812900|812901|812902|812903|812904|812905|812906|812907|812908|812909|812910|812911|812912|812913|812914|812915|812916|812917|812918|812919|812920|812921|812922|812923|812924|812925|812926|812927|812928|812929|812930|812931|812932|812933|812934|812935|812936|812937|812938|812939|812940|812941|812942|812943|812944|812945|812946|812947|812948|812949|812950|812951|812952|812953|812954|812955|812956|812957|812958|812959|812960|812961|812962|812963|812964|812965|812966|812967|812968|812969|812970|812971|812972|812973|812974|812975|812976|812977|812978|812979|812980|812981|812982|812983|812984|812985|812986|812987|812988|812989|812990|812991|812992|812993|812994|812995|812996|812997|812998|812999|813000|813001|813002|813003|813004|813005|813006|813007|813008|813009|813010|813011|813012|813013|813014|813015|813016|813017|813018|813019|813020|813021|813022|813023|813024|813025|813026|813027|813028|813029|813030|813031|813032|813033|813034|813035|813036|813037|813038|813039|813040|813041|813042|813043|813044|813045|813046|813047|813048|813049|813050|813051|813052|813053|813054|813055|813056|813057|813058|813059|813060|813061|813062|813063|813064|813065|813066|813067|813068|813069|813070|813071|813072|813073|813074|813075|813076|813077|813078|813079|813080|813081|813082|813083|813084|813085|813086|813087|813088|813089|813090|813091|813092|813093|813094|813095|813096|813097|813098|813099|813100|813101|813102|813103|813104|813105|813106|813107|813108|813109|813110|813111|813112|813113|813114|813115|813116|813117|813118|813119|813120|813121|813122|813123|813124|813125|813126|813127|813128|813129|813130|813131|813132|813133|813134|813135|813136|813137|813138|813139|813140|813141|813142|813143|813144|813145|813146|813147|813148|813149|813150|813151|813152|813153|813154|813155|813156|813157|813158|813159|813160|813161|813162|813163|813164|813165|813166|813167|813168|813169|813170|813171|813172|813173|813174|813175|813176|813177|813178|813179|813180|813181|813182|813183|813184|813185|813186|813187|813188|813189|813190|813191|813192|813193|813194|813195|813196|813197|813198|813199|813200|813201|813202|813203|813204|813205|813206|813207|813208|813209|813210|813211|813212|813213|813214|813215|813216|813217|813218|813219|813220|813221|813222|813223|813224|813225|813226|813227|813228|813229|813230|813231|813232|813233|813234|813235|813236|813237|813238|813239|813240|813241|813242|813243|813244|813245|813246|813247|813248|813249|813250|813251|813252|813253|813254|813255|813256|813257|813258|813259|813260|813261|813262|813263|813264|813265|813266|813267|813268|813269|813270|813271|813272|813273|813274|813275|813276|813277|813278|813279|813280|813281|813282|813283|813284|813285|813286|813287|813288|813289|813290|813291|813292|813293|813294|813295|813296|813297|813298|813299|813300|813301|813302|813303|813304|813305|813306|813307|813308|813309|813310|813311|813312|813313|813314|813315|813316|813317|813318|813319|813320|813321|813322|813323|813324|813325|813326|813327|813328|813329|813330|813331|813332|813333|813334|813335|813336|813337|813338|813339|813340|813341|813342|813343|813344|813345|813346|813347|813348|813349|813350|813351|813352|813353|813354|813355|813356|813357|813358|813359|813360|813361|813362|813363|813364|813365|813366|813367|813368|813369|813370|813371|813372|813373|813374|813375|813376|813377|813378|813379|813380|813381|813382|813383|813384|813385|813386|813387|813388|813389|813390|813391|813392|813393|813394|813395|813396|813397|813398|813399|813400|813401|813402|813403|813404|813405|813406|813407|813408|813409|813410|813411|813412|813413|813414|813415|813416|813417|813418|813419|813420|813421|813422|813423|813424|813425|813426|813427|813428|813429|813430|813431|813432|813433|813434|813435|813436|813437|813438|813439|813440|813441|813442|813443|813444|813445|813446|813447|813448|813449|813450|813451|813452|813453|813454|813455|813456|813457|813458|813459|813460|813461|813462|813463|813464|813465|813466|813467|813468|813469|813470|813471|813472|813473|813474|813475|813476|813477|813478|813479|813480|813481|813482|813483|813484|813485|813486|813487|813488|813489|813490|813491|813492|813493|813494|813495|813496|813497|813498|813499|813500|813501|813502|813503|813504|813505|813506|813507|813508|813509|813510|813511|813512|813513|813514|813515|813516|813517|813518|813519|813520|813521|813522|813523|813524|813525|813526|813527|813528|813529|813530|813531|813532|813533|813534|813535|813536|813537|813538|813539|813540|813541|813542|813543|813544|813545|813546|813547|813548|813549|813550|813551|813552|813553|813554|813555|813556|813557|813558|813559|813560|813561|813562|813563|813564|813565|813566|813567|813568|813569|813570|813571|813572|813573|813574|813575|813576|813577|813578|813579|813580|813581|813582|813583|813584|813585|813586|813587|813588|813589|813590|813591|813592|813593|813594|813595|813596|813597|813598|813599|813600|813601|813602|813603|813604|813605|813606|813607|813608|813609|813610|813611|813612|813613|813614|813615|813616|813617|813618|813619|813620|813621|813622|813623|813624|813625|813626|813627|813628|813629|813630|813631|813632|813633|813634|813635|813636|813637|813638|813639|813640|813641|813642|813643|813644|813645|813646|813647|813648|813649|813650|813651|813652|813653|813654|813655|813656|813657|813658|813659|813660|813661|813662|813663|813664|813665|813666|813667|813668|813669|813670|813671|813672|813673|813674|813675|813676|813677|813678|813679|813680|813681|813682|813683|813684|813685|813686|813687|813688|813689|813690|813691|813692|813693|813694|813695|813696|813697|813698|813699|813700|813701|813702|813703|813704|813705|813706|813707|813708|813709|813710|813711|813712|813713|813714|813715|813716|813717|813718|813719|813720|813721|813722|813723|813724|813725|813726|813727|813728|813729|813730|813731|813732|813733|813734|813735|813736|813737|813738|813739|813740|813741|813742|813743|813744|813745|813746|813747|813748|813749|813750|813751|813752|813753|813754|813755|813756|813757|813758|813759|813760|813761|813762|813763|813764|813765|813766|813767|813768|813769|813770|813771|813772|813773|813774|813775|813776|813777|813778|813779|813780|813781|813782|813783|813784|813785|813786|813787|813788|813789|813790|813791|813792|813793|813794|813795|813796|813797|813798|813799|813800|813801|813802|813803|813804|813805|813806|813807|813808|813809|813810|813811|813812|813813|813814|813815|813816|813817|813818|813819|813820|813821|813822|813823|813824|813825|813826|813827|813828|813829|813830|813831|813832|813833|813834|813835|813836|813837|813838|813839|813840|813841|813842|813843|813844|813845|813846|813847|813848|813849|813850|813851|813852|813853|813854|813855|813856|813857|813858|813859|813860|813861|813862|813863|813864|813865|813866|813867|813868|813869|813870|813871|813872|813873|813874|813875|813876|813877|813878|813879|813880|813881|813882|813883|813884|813885|813886|813887|813888|813889|813890|813891|813892|813893|813894|813895|813896|813897|813898|813899|813900|813901|813902|813903|813904|813905|813906|813907|813908|813909|813910|813911|813912|813913|813914|813915|813916|813917|813918|813919|813920|813921|813922|813923|813924|813925|813926|813927|813928|813929|813930|813931|813932|813933|813934|813935|813936|813937|813938|813939|813940|813941|813942|813943|813944|813945|813946|813947|813948|813949|813950|813951|813952|813953|813954|813955|813956|813957|813958|813959|813960|813961|813962|813963|813964|813965|813966|813967|813968|813969|813970|813971|813972|813973|813974|813975|813976|813977|813978|813979|813980|813981|813982|813983|813984|813985|813986|813987|813988|813989|813990|813991|813992|813993|813994|813995|813996|813997|813998|813999|814000|814001|814002|814003|814004|814005|814006|814007|814008|814009|814010|814011|814012|814013|814014|814015|814016|814017|814018|814019|814020|814021|814022|814023|814024|814025|814026|814027|814028|814029|814030|814031|814032|814033|814034|814035|814036|814037|814038|814039|814040|814041|814042|814043|814044|814045|814046|814047|814048|814049|814050|814051|814052|814053|814054|814055|814056|814057|814058|814059|814060|814061|814062|814063|814064|814065|814066|814067|814068|814069|814070|814071|814072|814073|814074|814075|814076|814077|814078|814079|814080|814081|814082|814083|814084|814085|814086|814087|814088|814089|814090|814091|814092|814093|814094|814095|814096|814097|814098|814099|814100|814101|814102|814103|814104|814105|814106|814107|814108|814109|814110|814111|814112|814113|814114|814115|814116|814117|814118|814119|814120|814121|814122|814123|814124|814125|814126|814127|814128|814129|814130|814131|814132|814133|814134|814135|814136|814137|814138|814139|814140|814141|814142|814143|814144|814145|814146|814147|814148|814149|814150|814151|814152|814153|814154|814155|814156|814157|814158|814159|814160|814161|814162|814163|814164|814165|814166|814167|814168|814169|814170|814171|814172|814173|814174|814175|814176|814177|814178|814179|814180|814181|814182|814183|814184|814185|814186|814187|814188|814189|814190|814191|814192|814193|814194|814195|814196|814197|814198|814199|814200|814201|814202|814203|814204|814205|814206|814207|814208|814209|814210|814211|814212|814213|814214|814215|814216|814217|814218|814219|814220|814221|814222|814223|814224|814225|814226|814227|814228|814229|814230|814231|814232|814233|814234|814235|814236|814237|814238|814239|814240|814241|814242|814243|814244|814245|814246|814247|814248|814249|814250|814251|814252|814253|814254|814255|814256|814257|814258|814259|814260|814261|814262|814263|814264|814265|814266|814267|814268|814269|814270|814271|814272|814273|814274|814275|814276|814277|814278|814279|814280|814281|814282|814283|814284|814285|814286|814287|814288|814289|814290|814291|814292|814293|814294|814295|814296|814297|814298|814299|814300|814301|814302|814303|814304|814305|814306|814307|814308|814309|814310|814311|814312|814313|814314|814315|814316|814317|814318|814319|814320|814321|814322|814323|814324|814325|814326|814327|814328|814329|814330|814331|814332|814333|814334|814335|814336|814337|814338|814339|814340|814341|814342|814343|814344|814345|814346|814347|814348|814349|814350|814351|814352|814353|814354|814355|814356|814357|814358|814359|814360|814361|814362|814363|814364|814365|814366|814367|814368|814369|814370|814371|814372|814373|814374|814375|814376|814377|814378|814379|814380|814381|814382|814383|814384|814385|814386|814387|814388|814389|814390|814391|814392|814393|814394|814395|814396|814397|814398|814399|814400|814401|814402|814403|814404|814405|814406|814407|814408|814409|814410|814411|814412|814413|814414|814415|814416|814417|814418|814419|814420|814421|814422|814423|814424|814425|814426|814427|814428|814429|814430|814431|814432|814433|814434|814435|814436|814437|814438|814439|814440|814441|814442|814443|814444|814445|814446|814447|814448|814449|814450|814451|814452|814453|814454|814455|814456|814457|814458|814459|814460|814461|814462|814463|814464|814465|814466|814467|814468|814469|814470|814471|814472|814473|814474|814475|814476|814477|814478|814479|814480|814481|814482|814483|814484|814485|814486|814487|814488|814489|814490|814491|814492|814493|814494|814495|814496|814497|814498|814499|814500|814501|814502|814503|814504|814505|814506|814507|814508|814509|814510|814511|814512|814513|814514|814515|814516|814517|814518|814519|814520|814521|814522|814523|814524|814525|814526|814527|814528|814529|814530|814531|814532|814533|814534|814535|814536|814537|814538|814539|814540|814541|814542|814543|814544|814545|814546|814547|814548|814549|814550|814551|814552|814553|814554|814555|814556|814557|814558|814559|814560|814561|814562|814563|814564|814565|814566|814567|814568|814569|814570|814571|814572|814573|814574|814575|814576|814577|814578|814579|814580|814581|814582|814583|814584|814585|814586|814587|814588|814589|814590|814591|814592|814593|814594|814595|814596|814597|814598|814599|814600|814601|814602|814603|814604|814605|814606|814607|814608|814609|814610|814611|814612|814613|814614|814615|814616|814617|814618|814619|814620|814621|814622|814623|814624|814625|814626|814627|814628|814629|814630|814631|814632|814633|814634|814635|814636|814637|814638|814639|814640|814641|814642|814643|814644|814645|814646|814647|814648|814649|814650|814651|814652|814653|814654|814655|814656|814657|814658|814659|814660|814661|814662|814663|814664|814665|814666|814667|814668|814669|814670|814671|814672|814673|814674|814675|814676|814677|814678|814679|814680|814681|814682|814683|814684|814685|814686|814687|814688|814689|814690|814691|814692|814693|814694|814695|814696|814697|814698|814699|814700|814701|814702|814703|814704|814705|814706|814707|814708|814709|814710|814711|814712|814713|814714|814715|814716|814717|814718|814719|814720|814721|814722|814723|814724|814725|814726|814727|814728|814729|814730|814731|814732|814733|814734|814735|814736|814737|814738|814739|814740|814741|814742|814743|814744|814745|814746|814747|814748|814749|814750|814751|814752|814753|814754|814755|814756|814757|814758|814759|814760|814761|814762|814763|814764|814765|814766|814767|814768|814769|814770|814771|814772|814773|814774|814775|814776|814777|814778|814779|814780|814781|814782|814783|814784|814785|814786|814787|814788|814789|814790|814791|814792|814793|814794|814795|814796|814797|814798|814799|814800|814801|814802|814803|814804|814805|814806|814807|814808|814809|814810|814811|814812|814813|814814|814815|814816|814817|814818|814819|814820|814821|814822|814823|814824|814825|814826|814827|814828|814829|814830|814831|814832|814833|814834|814835|814836|814837|814838|814839|814840|814841|814842|814843|814844|814845|814846|814847|814848|814849|814850|814851|814852|814853|814854|814855|814856|814857|814858|814859|814860|814861|814862|814863|814864|814865|814866|814867|814868|814869|814870|814871|814872|814873|814874|814875|814876|814877|814878|814879|814880|814881|814882|814883|814884|814885|814886|814887|814888|814889|814890|814891|814892|814893|814894|814895|814896|814897|814898|814899|814900|814901|814902|814903|814904|814905|814906|814907|814908|814909|814910|814911|814912|814913|814914|814915|814916|814917|814918|814919|814920|814921|814922|814923|814924|814925|814926|814927|814928|814929|814930|814931|814932|814933|814934|814935|814936|814937|814938|814939|814940|814941|814942|814943|814944|814945|814946|814947|814948|814949|814950|814951|814952|814953|814954|814955|814956|814957|814958|814959|814960|814961|814962|814963|814964|814965|814966|814967|814968|814969|814970|814971|814972|814973|814974|814975|814976|814977|814978|814979|814980|814981|814982|814983|814984|814985|814986|814987|814988|814989|814990|814991|814992|814993|814994|814995|814996|814997|814998|814999|815000|815001|815002|815003|815004|815005|815006|815007|815008|815009|815010|815011|815012|815013|815014|815015|815016|815017|815018|815019|815020|815021|815022|815023|815024|815025|815026|815027|815028|815029|815030|815031|815032|815033|815034|815035|815036|815037|815038|815039|815040|815041|815042|815043|815044|815045|815046|815047|815048|815049|815050|815051|815052|815053|815054|815055|815056|815057|815058|815059|815060|815061|815062|815063|815064|815065|815066|815067|815068|815069|815070|815071|815072|815073|815074|815075|815076|815077|815078|815079|815080|815081|815082|815083|815084|815085|815086|815087|815088|815089|815090|815091|815092|815093|815094|815095|815096|815097|815098|815099|815100|815101|815102|815103|815104|815105|815106|815107|815108|815109|815110|815111|815112|815113|815114|815115|815116|815117|815118|815119|815120|815121|815122|815123|815124|815125|815126|815127|815128|815129|815130|815131|815132|815133|815134|815135|815136|815137|815138|815139|815140|815141|815142|815143|815144|815145|815146|815147|815148|815149|815150|815151|815152|815153|815154|815155|815156|815157|815158|815159|815160|815161|815162|815163|815164|815165|815166|815167|815168|815169|815170|815171|815172|815173|815174|815175|815176|815177|815178|815179|815180|815181|815182|815183|815184|815185|815186|815187|815188|815189|815190|815191|815192|815193|815194|815195|815196|815197|815198|815199|815200|815201|815202|815203|815204|815205|815211|815212|815213|815214|815215|815216|815217|815218|815219|815220|815221|815222|815223|815224|815225|815226|815227|815228|815229|815230|815231|815232|815233|815234|815235|815236|815237|815238|815239|815240|815241|815242|815243|815244|815245|815246|815247|815248|815249|815250|815251|815252|815253|815254|815255|815256|815257|815258|815259|815260|815261|815262|815263|815264|815265|815266|815267|815268|815269|815270|815271|815272|815273|815274|815275|815276|815277|815278|815279|815280|815281|815282|815283|815284|815285|815286|815287|815288|815289|815290|815291|815292|815293|815294|815295|815296|815297|815298|815299|815300|815301|815302|815303|815304|815305|815306|815307|815308|815309|815310|815311|815312|815313|815314|815315|815316|815317|815318|815319|815320|815321|815322|815323|815324|815325|815326|815327|815328|815329|815330|815331|815332|815333|815334|815335|815336|815337|815338|815339|815340|815341|815342|815343|815344|815345|815346|815347|815348|815349|815350|815351|815352|815353|815354|815355|815356|815366|815367|815368|815369|815370|815371|815372|815373|815374|815375|815380|815381|815382|815383|815384|815385|815386|815387|815388|815389|815390|815391|815392|815393|815394|815395|815396|815397|815398|815399|815400|815401|815402|815403|815404|815405|815406|815407|815408|815409|815410|815411|815412|815413|815414|815415|815416|815417|815418|815419|815420|815421|815422|815423|815424|815425|815426|815427|815428|815429|815430|815431|815432|815434|815435|815436|815437|815438|815439|815440|815441|815442|815443|815444|815445|815446|815447|815448|815449|815450|815451|815452|815453|815454|815455|815456|815457|815458|815459|815460|815461|815462|815463|815464|815465|815466|815467|815468|815469|815470|815471|815472|815473|815474|815475|815476|815477|815478|815479|815480|815481|815482|815483|815484|815485|815486|815487|815488|815489|815490|815491|815492|815493|815494|815495|815496|815497|815498|815499|815500|815501|815502|815503|815504|815505|815506|815507|815508|815509|815510|815511|815512|815513|815514|815515|815516|815517|815518|815519|815520|815521|815522|815523|815524|815525|815526|815527|815528|815529|815530|815531|815532|815533|815534|815535|815536|815537|815538|815539|815540|815541|815542|815543|815544|815545|815546|815547|815548|815549|815550|815551|815552|815553|815554|815555|815556|815557|815558|815559|815560|815561|815562|815563|815564|815565|815566|815567|815568|815569|815570|815571|815572|815573|815574|815575|815576|815577|815578|815579|815580|815581|815582|815583|815584|815585|815586|815587|815588|815589|815590|815591|815592|815593|815594|815595|815596|815597|815598|815599|815600|815601|815602|815603|815604|815605|815606|815607|815608|815609|815610|815611|815612|815613|815614|815615|815616|815617|815618|815619|815620|815621|815622|815623|815624|815625|815626|815627|815628|815629|815630|815631|815632|815633|815634|815635|815636|815637|815638|815639|815640|815641|815642|815643|815644|815645|815646|815647|815648|815649|815650|815651|815652|815653|815654|815655|815656|815657|815658|815659|815660|815661|815662|815663|815664|815665|815666|815667|815668|815669|815670|815671|815672|815673|815674|815675|815676|815677|815678|815679|815680|815681|815682|815683|815684|815685|815686|815687|815688|815689|815690|815691|815692|815693|815694|815695|815696|815697|815698|815699|815700|815701|815702|815703|815704|815705|815706|815707|815708|815709|815710|815711|815712|815713|815714|815715|815716|815717|815718|815719|815720|815721|815722|815723|815724|815725|815726|815727|815728|815729|815730|815731|815732|815733|815734|815735|815736|815737|815738|815739|815740|815741|815742|815743|815744|815745|815746|815747|815748|815749|815750|815751|815752|815753|815754|815755|815756|815757|815758|815759|815760|815761|815762|815763|815764|815765|815766|815767|815768|815769|815770|815771|815772|815773|815774|815775|816046|818445|818463|818466|818470|818501|818651|818792|819537|819538|819539|819540|819541|819542|819543|819544|824166|824181|824191|824192|824195|824196|824197|825661|825667|825669|825683|825684|825692|825712|825715|826564|826568|826581|826588|826600|826611|826625|826626|826637|826728|826759|827923|827943|827963|828458|828459|828471|828482|828484|828487|828492|828494|829599|829646|829652|829655|829667|829683|829729|829747|829753|829754|829792|829799|829805|829817|830076|830077|830078|830079|830080|830081|830082|830083|830084|830085|830086|830087|830088|830089|830090|830091|830092|830093|830094|830095|830096|830097|830098|830099|830100|830101|830102|830103|830104|830105|830106|830107|830108|830109|830110|830111|830112|830113|830114|830115|830116|830117|830118|830119|830120|830121|830122|830123|830124|830125|830126|830127|830128|830129|830130|830131|830132|830133|830134|830135|830136|830137|830138|830139|830140|830141|830142|830143|830144|830145|830146|830147|830148|830149|830150|830151|830152|830153|830154|830155|830156|830157|830158|830159|830160|830161|830162|830163|830164|830165|830166|830167|830168|830169|830170|830171|830172|830173|830174|830175|833763|833785|833788|833793|835143|835992|835998|837381|837600|837609|837621|837634|837645|837666|837712|837728|837729|837756|837758|837768|837788|837789|837831|837855|837890|837909|837933|840634|840669|840671|840680|840701|840757|840801|840820|840829|840847|840871|840875|843585|843592|843624|843637|843639|844131|844154|844184|845208|845209|845413|845698|845701|845741|845749|845754|845755|845776|845806|845812|845819|846302|846915|847243|847263|847276|849140|849159|851006|851008|851010|851244|851245|851471|851560|851800|851814|851818|851831|851854|851856|851858|851860|851862|851864|851898|851900|851903|851906|852196|852532|852569|852746|852780|852813|853153|853247|853442|853547|853771|853884|853905|854159|854225|854303|854322|854453|854516|854563|854714|854762|854772|854973|855170|855228|855230|855257|855334|855395|855503|855505|859830|872326|905922|906020|906348|907207|907208|907209|907210|907211|907212|907213|907214|907215|907216|907217|907218|907219|907220|907221|907222|907223|907224|907225|907226|907227|907228|907229|907230|907231|907232|907233|907234|907235|907236|907237|907238|907239|907240|907241|907242|907243|907244|907245|907246|907247|907248|907249|907250|907251|907252|907253|907254|907255|907256|907257|907258|907259|907260|907261|907262|907263|907264|907265|907266|907267|907268|907269|907270|907271|907272|907273|907274|908615|908616|908617|908618|908619|908620|908621|908622|908623|908624|908625|908626|908627|908628|908629|908630|908631|908632|908633|908634|908635|908636|908637|908638|908639|908640|908641|908642|908643|908644|908645|908646|908647|908648|908649|908650|908651|908652|908653|908654|908655|908656|908657|908658|908659|908660|908661|908662|908663|908664|908665|908666|908667|908668|908669|908670|908671|908672|908673|908674|908675|908676|908677|908678|908679|908680|908681|908682|908683|908684|908685|908686|908687|908688|908689|908690|908691|908692|908693|908694|908695|908696|908697|908698|908699|908700|908701|908702|908703|908704|908705|908706|908707|908708|908709|908710|908711|908712|908713|908714|908715|908716|908717|908718|908719|908720|908721|908722|908723|908724|908725|908726|908727|908728|908729|908730|908731|908732|908733|908734|908735|908736|908737|908738|908739|908740|908741|908742|908743|908744|908745|908746|908747|908748|908749|908750|908751|908752|908753|908754|908755|908756|908757|908758|908759|908760|908761|908762|908763|908764|908765|908766|908767|908768|908769|908770|908771|908772|908773|908774|908775|908776|908777|908778|908779|908780|908781|908782|908783|908784|908785|908786|908787|908788|908789|908790|908791|908792|908793|908794|908795|908796|908797|908798|908799|908800|908801|908802|908803|908804|908805|908806|908807|908808|908809|908810|908811|908812|908813|908814|908815|908816|908817|908818|908819|908820|908821|908822|908823|908824|908825|908826|908827|908828|908829|908830|908831|908832|908833|908834|908835|908836|908837|908838|908839|908840|908841|908842|908843|908844|908845|908846|908847|908848|908849|908850|908851|908852|908853|908854|908855|908856|908857|908858|908859|908860|908861|908862|908863|908864|908865|908866|908867|908868|908869|908870|908871|908872|908873|908874|908875|908876|908877|908878|908879|908880|908881|908882|908883|908884|908885|908886|908887|908888|908889|908890|908891|908892|908893|908894|908895|908896|908897|908898|908899|908900|908901|908902|908903|908904|908905|908906|908907|908908|908909|908910|908911|908912|908913|908914|908915|908916|908917|908918|908919|908920|908921|908922|908923|908924|908925|908926|908927|908928|908929|908930|908931|908932|908933|908934|908935|908936|908937|908938|908939|908940|908941|908942|908943|908944|908945|908946|908947|908948|908949|908950|908951|908952|908953|908954|908955|908956|908957|908958|908959|908960|908961|908962|908963|908964|908965|908966|908967|908968|908969|908970|908971|908972|908973|908974|908975|908976|908977|908978|908979|908980|908981|908982|908983|908984|908985|908986|908987|908988|908989|908990|908991|908992|908993|908994|908995|908996|908997|908998|908999|909000|909001|909002|909003|909004|909005|909006|909007|909008|909009|909010|909011|909012|909013|909014|909015|909016|909017|909018|909019|909020|909021|909022|909023|909024|909025|909026|909027|909028|909029|909030|909031|909032|909033|909034|909035|909036|909037|909038|909039|909040|909041|909042|909043|909044|909045|909046|909047|909048|909049|909050|909051|909052|909053|909054|909055|909056|909057|909058|909059|909060|909061|909062|909063|909064|909065|909066|909067|909068|909069|909070|909071|909072|909073|909074|909075|909076|909077|909078|909079|909080|909081|909082|909294|909295|909296|909297|909298|909299|909300|909301|909302|909303|909304|909305|909306|909307|909308|909309|909310|909311|909312|909313|909314|909315|909316|909317|909318|909319|909320|909321|909322|909323|909324|909325|909326|909327|909328|909329|909330|909331|909332|909333|909334|909335|909336|909337|909338|909339|909340|909341|909342|909343|909344|909345|909346|909347|909348|909349|909350|909351|909352|909353|909354|909355|909356|909357|909358|909359|909360|909361|909362|909363|909364|909365|909366|909367|909368|909369|909370|909371|909372|909373|909679|909680|909681|909682|909683|909684|909685|909686|909687|909688|909689|909690|909691|909692|909693|909694|909695|909696|909697|909698|909699|909700|909701|909702|909703|909704|909705|909706|909707|909708|909709|909710|909711|909712|909713|909714|909715|909716|909717|909718|909719|909720|909721|909722|909723|909724|909725|909726|909727|909728|909729|909730|909731|909732|909733|909734|909735|909736|909737|909738|909739|909740|909741|909742|909743|909744|909745|909746|909747|909748|909749|909750|909751|909752|909753|909754|909755|909756|909757|909758|909759|909760|909761|909762|909763|909764|909765|909766|909767|909768|909769|909770|909771|909772|909773|909774|909775|909776|909777|909778|909779|909780|909781|909782|909783|909784|909785|909786|909787|909788|909789|909790|909791|909792|909793|909794|909795|909796|909797|909798|909799|909800|909801|909802|909803|909804|909805|909806|909807|909808|909809|909810|909811|909812|909813|909814|909815|909816|909817|909818|909819|909820|909821|909822|909823|909824|909825|909826|909827|909828|909829|909830|909831|909832|909833|909834|909835|909836|909837|909838|909839|909840|909841|909842|909843|909844|909845|909846|909847|909848|909849|909850|909851|909852|909853|909854|909855|909856|909857|909858|909859|909860|909861|909862|909863|909864|909865|909866|909867|909868|909869|909870|909871|909872|909873|909874|909875|909876|909877|909878|909879|909880|909881|909882|909883|909884|909885|909886|909887|909888|909889|909890|909891|909892|909893|909894|909895|909896|909897|909898|909899|909900|909901|909902|909903|909904|909905|909906|909907|909908|909909|909910|909911|909912|909913|909914|909915|909916|909917|909918|909919|909920|909921|909922|909923|909924|909925|909926|909927|909928|909929|909930|909931|909932|909933|909934|909935|909936|909937|909938|909939|909940|909941|909942|909943|909944|909945|909946|909947|909948|909949|909950|909951|909952|909953|909954|909955|909956|909957|909958|909959|909960|909961|909962|909963|909964|909965|909966|909967|909968|909969|909970|909971|909972|909973|909974|909975|909976|909977|909978|909979|909980|909981|909982|909983|909984|909985|909986|909987|909988|909989|909990|909991|909992|909993|909994|909995|909996|909997|909998|909999|910000|910001|910002|910003|910004|910005|910006|910007|910008|910009|910010|910011|910012|910013|910014|910015|910016|910017|910018|910019|910020|910021|910022|910023|910024|910025|910026|910027|910028|910029|910030|910031|910032|910033|910034|910035|910036|910037|910038|910039|910040|910041|910042|910043|910044|910045|910046|910047|910048|910049|910050|910051|910052|910053|910054|910055|910056|910057|910058|910059|910060|910061|910062|910063|910064|910065|910066|910067|910068|910069|910070|910071|910072|910073|910074|910075|910076|910077|910078|910079|910080|910081|910082|910083|910084|910085|910086|910087|910088|910089|910090|910091|910092|910093|910094|910095|910096|910097|910098|910099|910100|910101|910102|910103|910104|910105|910106|910107|910108|910109|910110|910111|910112|910113|910114|910115|910116|910117|910118|910119|910120|910121|910122|910123|910124|910125|910126|910127|910128|910129|910130|910131|910132|910133|910134|910135|910136|910137|910138|910139|910140|910141|910142|910143|910144|910145|910146|910147|910148|910149|910150|910151|910152|910153|910154|910155|910156|910157|910158|910159|910160|910161|910162|910163|910164|910165|910166|910167|910907|910908|910909|910910|910911|910912|910913|910914|910915|910916|910917|910918|910919|910920|910921|910922|910923|910924|910925|910926|910927|910928|910929|910930|910931|910932|910933|910934|910935|910936|910937|910938|910939|910940|910941|910942|910943|910944|910945|910946|910947|910948|910949|910950|910951|910952|910953|910954|910955|910956|910957|910958|910959|910960|910961|910962|910963|910964|910965|910966|910967|910968|910969|910970|910971|910972|910973|910974|910975|910976|910977|910978|910979|910980|910981|910982|910983|910984|910985|910986|910987|910988|910989|910990|910991|910992|910993|910994|910995|910996|910997|910998|910999|911000|911001|911002|911003|911004|911005|911006|911007|911008|911009|911010|911011|911012|911013|911014|911015|911016|911017|911018|911019|911020|911021|911022|911023|911024|911025|911026|911027|911028|911029|911030|911031|911032|911033|911034|911035|911036|911037|911038|911039|911040|911041|911042|911043|911044|911045|911046|911047|911048|911049|911050|911051|911052|911053|911054|911055|911056|911057|911058|911059|911060|911061|911062|911063|911064|911065|911066|911067|911068|911069|911070|911071|911072|911073|911074|911075|911076|911077|911078|911079|911080|911081|911082|911083|911084|911085|911086|911087|911088|911089|911090|911091|911147|911148|911149|911150|911151|911152|911153|911154|911155|911156|911157|911158|911159|911160|911161|911162|911163|911164|911165|911166|911167|911168|911169|911170|911171|911172|911173|911174|911175|911176|911177|911178|911179|911180|911181|911182|911183|911184|911185|911186|911187|911188|911189|911190|911191|911192|911193|911194|911195|911196|911197|911198|911199|911200|911201|911202|911203|911204|911205|911206|911207|911208|911209|911210|911211|911212|911213|911214|911215|911216|911217|911218|911219|911220|911221|911222|911223|911224|911225|911226|911227|911228|911229|911230|911231|911232|911233|911234|911235|911236|911237|911238|911283|911284|911285|911286|911287|911288|911289|911290|911291|911292|911293|911294|911295|911296|911297|911298|911299|911300|911301|911302|911303|911304|911305|911306|911307|911308|911309|911310|911311|911312|911313|911314|911315|911316|911317|911318|911319|911320|911321|911322|911323|911324|911325|911326|911327|911328|911329|911330|911331|911332|911333|911334|911335|911336|911337|911338|911339|911340|911341|911342|911343|911344|911345|911346|911347|911348|911349|911350|911351|911352|911353|911354|911355|911356|911357|911358|911359|911360|911361|911362|911363|911364|911365|911366|911367|911368|911369|911370|911371|911372|911373|911374|911375|911376|911377|911378|911379|911380|911381|911382|911383|911384|911385|911386|911387|911388|911389|911390|911391|911392|911393|911394|911395|911396|911397|911398|911399|911400|911401|911402|911403|911404|911405|911406|911407|911408|911409|911410|911411|911412|911413|911414|911415|911416|911417|911418|911419|911420|911421|911422|911423|911424|911425|911426|911427|911428|911429|911430|911431|911432|911433|911434|911435|911436|911437|911438|911439|911440|911441|911442|911443|911444|911445|911446|911447|911448|911449|911450|911451|911452|911453|911454|911455|911456|911457|911458|911459|911460|911461|911462|911463|911464|911465|911466|911467|911468|911469|911470|911471|911472|911473|911474|911475|911476|911477|911478|911479|911480|911481|911482|911483|911484|911485|911486|911487|911488|911489|911490|911491|911492|911493|911494|911495|911496|911497|911498|911499|911500|911501|911502|911503|911504|911505|911506|911507|911508|911509|911510|911511|911512|911513|911514|911515|911516|911517|911518|911519|911520|911521|911522|911523|911524|911525|911526|911527|911528|911529|911530|911531|911532|911533|911534|911535|911536|911537|911538|911539|911540|911541|911542|911543|911544|911545|911546|911547|911548|912084|912085|912086|912087|912088|912089|912090|912091|912092|912093|912094|912095|912096|912097|912098|912099|912100|912101|912102|912103|912104|912105|912106|912107|912108|912109|912110|912111|912112|912113|912114|912115|912116|912117|912118|912119|912120|912121|912122|912123|912124|912125|912126|912127|912128|912129|912130|912131|912132|912133|912134|912135|912136|912137|912138|912139|912140|912141|912142|912143|912144|912145|912146|912147|912148|912149|912150|912151|912152|912153|912154|912155|912156|912157|912158|912159|912160|912161|912162|912163|912164|912165|912166|912167|912168|912169|912170|912171|912172|912173|912174|912175|912176|912177|912178|912179|912180|912181|912182|912183|912184|912185|912186|912187|912188|912189|912190|912191|912192|912193|912194|912195|912196|912197|912198|912199|912200|912201|912202|912203|912204|912205|912206|912207|912208|912209|912210|912211|912212|912213|912214|912215|912216|912217|912218|912219|912220|912221|912222|912223|912224|912225|912226|912227|912228|912229|912230|912231|912232|912233|912234|912235|912236|912237|912238|912239|912240|912241|912242|912243|912244|912245|912246|912247|912248|912249|912250|912251|912252|912253|912254|912255|912256|912257|912258|912259|912260|912261|912262|912263|912264|912265|912266|912267|912268|912269|912270|912271|912272|912273|912274|912275|912276|912277|912278|912279|912280|912281|912282|912283|912284|912285|912286|912287|912288|912289|912290|912291|912292|912293|912294|912295|912296|912297|912298|912299|912300|912301|912302|912303|912304|912305|912306|912307|912308|912309|912310|912311|912312|912313|912314|912315|912316|912317|912318|912319|912320|912321|912322|912323|912324|912325|912326|912327|912328|912329|912330|912331|912332|912333|912334|912335|912336|912337|912338|912339|912340|912341|912342|912343|912344|912345|912346|912347|912348|912349|912350|912351|912352|912353|912354|912355|912356|912357|912358|912359|912360|912361|912362|912363|912364|912365|912366|912367|912368|912369|912370|912371|912372|912373|912374|912375|912376|913587|913588|913589|913590|913591|913592|913593|913594|913595|913596|913597|913598|913599|913600|913601|913602|913603|913604|913605|913606|913607|913608|913609|913610|913611|913612|913613|913614|913615|913616|913617|913618|913619|913620|913621|913622|913623|913624|913625|913626|913627|913628|913629|913630|913631|913632|913633|913634|913635|913636|913637|913638|913639|913640|913641|913642|913643|913644|913645|913646|913647|913648|913649|913650|913651|913652|913653|913654|913655|913656|913657|913658|913659|913660|913661|913662|913663|913664|913665|913666|913667|913668|913669|913670|913671|913672|913673|913674|913675|913676|913677|913678|913679|913680|913681|913682|913683|913684|913685|913686|913687|913688|913689|913690|913691|913692|913693|913694|913695|913696|913697|913698|913699|913700|913701|913702|913703|913704|913705|913706|913707|913708|913709|913710|913711|913712|913713|913714|913715|913716|913717|913718|913719|913720|913721|913722|913723|913724|913725|913726|913727|913728|913729|913730|913731|913732|913733|913734|913735|913736|913737|913738|913739|913740|913741|913742|913743|913744|913745|913746|913747|913748|913749|913750|913751|913752|913753|913754|913755|913756|913757|913758|913759|913760|913761|913762|913763|913764|913765|913766|913767|913768|913769|913770|913771|913772|913773|913774|913775|913776|913777|913778|913779|913780|913781|913782|913783|913784|913785|913786|913787|913788|913789|913790|913791|913792|913793|913794|913795|913796|913797|913798|913799|913800|913801|913802|913803|913804|913805|913806|913807|913808|913809|913810|913811|913812|913813|913814|913815|913816|913817|913818|913819|913820|913821|913822|913823|913824|913825|913826|913827|913828|913829|913830|913831|913832|913833|913834|913835|913836|913837|913838|913839|913840|913841|913842|913843|913844|913845|913846|913847|913848|913849|913850|913851|913852|913853|913854|913855|913856|913857|913858|913859|913860|913861|913862|913863|913864|913865|913866|913867|913868|913869|913870|913871|913872|913873|913874|913875|913876|913877|913878|913879|913880|913881|913882|913883|913884|913885|913886|913887|913888|913889|913890|913891|913892|913893|913894|913895|913896|913897|913898|913899|913900|913901|913902|913903|913904|913905|913906|913907|913908|913909|913910|913911|913912|913913|913914|913915|913916|913917|913918|913919|913920|913921|913922|913923|913924|913925|913926|913927|913928|913929|913930|913931|913932|913933|913934|913935|913936|913937|913938|913939|913940|913941|913942|913943|913944|913945|913946|913947|913948|913949|913950|913951|913952|913953|913954|913955|913956|913957|913958|913959|913960|913961|913962|913963|913964|913965|913966|913967|913968|913969|913970|913971|913972|913973|913974|913975|913976|913977|913978|913979|913980|913981|913982|913983|913984|913985|913986|913987|913988|913989|913990|913991|913992|913993|913994|913995|913996|913997|913998|913999|914000|914001|914002|914003|914004|914005|914006|914007|914008|914009|914010|914011|914012|914013|914014|914015|914016|914017|914018|914019|914020|914021|914022|914023|914024|914025|914026|914027|914028|914029|914030|914031|914032|914033|914034|914035|914036|914037|914038|914039|914040|914041|914042|914043|914044|914045|914046|914047|914048|914049|914050|914051|914052|914053|914054|914055|914056|914057|914058|914059|914060|914061|914062|914063|914064|914065|914066|914067|914068|914069|914070|914071|914072|914073|914074|914075|914076|914077|914078|914079|914080|914081|914082|914083|914084|914085|914086|914087|914088|914089|914090|914091|914092|914093|914094|914095|914096|914097|914098|914099|914100|914101|914102|914103|914104|914105|914106|914107|914108|914109|914110|914111|914112|914113|914114|914115|914116|914117|914118|914119|914120|914121|914122|914123|914124|914125|914126|914127|914128|914129|914130|914131|914132|914133|914134|914135|914136|914137|914138|914139|914140|914141|914142|914143|914144|914145|914146|914147|914148|914149|914150|914151|914152|914153|914154|914155|914156|914157|914158|914159|914160|914161|914162|914163|914164|914165|914166|914167|914168|914169|914170|914171|914172|914173|914174|914175|914176|914177|914178|914179|914180|914181|914182|914183|914184|914185|914186|914187|914188|914189|914190|914191|914192|914193|914194|914195|914196|914197|914198|914199|914200|914201|914202|914203|914204|914205|914206|914207|914616|914617|914618|914619|914620|914621|914622|914623|914624|914625|914626|914627|914628|914629|914630|914631|914632|914633|914634|914635|914636|914637|914638|914639|914640|914641|914642|914643|914644|914645|914646|914647|914648|914824|914825|914826|914827|914828|914829|914830|914831|914832|914833|914834|914835|914836|914837|914838|914839|914840|914841|914842|914843|914844|914845|914846|914847|914848|914849|914850|914851|914852|914853|914854|914855|914856|914857|914858|914859|914860|914861|914862|914863|914864|914865|914866|914916|914917|914918|914919|914920|914921|914922|914923|914924|914925|914926|914927|914928|914929|914930|914931|914932|914933|914934|914935|914936|914937|914938|914939|914940|914941|914942|914943|914944|914945|914946|914947|914948|914949|914950|914951|914952|914953|914954|914955|914956|914957|914958|914959|914960|914961|914962|914963|914964|914965|914966|914967|914968|914969|914970|914971|914972|914973|915177|915179|915181|915183|915185|915187|915189|915191|915193|915232|915235|915237|915243|915246|915250|915252|915254|915256|915258|915259|915260|915261|915262|915263|915265|915267|915269|915271|915273|915275|915277|915279|915281|915283|915285|915287|915289|915291|915292|915294|915296|915297|915300|915302|915304|915310|915312|915314|915316|915318|915320|915322|915324|915326|915328|915330|915332|915334|915336|915338|915340|915343|915345|915347|915350|915356|915360|915364|915368|915370|915374|915377|915379|915381|915382|915383|915385|915387|915388|915389|915391|915392|915393|915395|915397|915399|915401|915403|915441|915443|915445|915447|915448|915449|915450|915451|915453|915455|915456|915457|915459|915461|915463|915465|915466|915467|915470|915473|915474|915475|915477|915479|915481|915482|915483|915484|915485|915486|915488|915490|915493|915496|915499|915501|915503|915511|915514|915517|915521|915522|915523|915525|915527|915529|915531|915533|915535|915536|915537|915539|915540|915541|915543|915545|915547|915549|915550|915552|915553|915555|915556|915557|915559|915560|915561|915562|915563|915564|915565|915566|915567|915568|915569|915570|915571|915572|915573|915574|915575|915576|915577|915578|915579|915580|915581|915582|915583|915584|915585|915586|915587|915588|915589|915590|915591|915592|915593|915594|915595|915596|915597|915598|915599|915601|915602|915607|915609|915611|915612|915613|915614|915615|915617|915619|915622|915625|915627|915628|915630|915631|915632|915633|915634|915635|915636|915637|915639|915640|915643|915649|915651|915655|915658|915660|915661|915662|915663|915664|915665|915666|915667|915668|915669|915671|915672|915673|915674|915675|915676|915677|915678|915679|915680|915681|915682|915683|915684|915685|915686|915687|915688|915689|915690|915691|915692|915693|915694|915695|915696|915697|915698|915699|915700|915701|915702|915703|915704|915705|915706|915707|915708|915709|915710|915711|915712|915713|915714|915715|915716|915717|915718|915719|915720|915721|915722|915724|915726|915728|915730|915732|915734|915736|915738|915740|915742|915749|915751|915755|915759|915761|915763|915765|915767|915771|915773|915775|915777|915779|915781|915783|915785|915787|915789|915791|915793|915795|915797|915799|915801|915803|915805|915807|915809|915811|915813|915815|915817|915819|915821|915823|915825|915831|915835|915839|915903|915907|915909|915911|915913|915915|915917|915919|915921|915923|915925|915927|915929|915931|915932|915933|915934|915936|915937|915938|915939|915940|915941|915942|915943|915944|915945|915946|915947|915948|915949|915950|915951|915952|915953|915954|915955|915956|915957|915958|915960|915961|915962|915963|915965|915966|915967|915969|915970|915971|915972|915973|915974|915975|915976|915977|915978|915979|915980|915981|915982|915983|915984|915985|915986|915987|915988|915989|915990|915991|915992|915993|915994|915995|915996|915997|915998|915999|916000|916001|916002|916003|916005|916006|916007|916008|916009|916010|916011|916012|916013|916014|916015|916016|916017|916018|916019|916020|916021|916022|916023|916025|916026|916028|916029|916030|916031|916032|916033|916034|916035|916036|916037|916039|916040|916041|916042|916043|916044|916045|916046|916047|916048|916049|916050|916051|916052|916053|916054|916055|916057|916059|916061|916063|916065|916066|916067|916068|916069|916071|916073|916075|916077|916078|916079|916080|916081|916082|916083|916084|916085|916086|916087|916088|916089|916090|916091|916092|916093|916095|916097|916098|916099|916100|916101|916102|916103|916104|916105|916106|916107|916108|916109|916110|916111|916112|916113|916115|916116|916117|916120|916121|916122|916124|916125|916126|916127|916129|916135|916138|916142|916144|916145|916150|916162|916163|916165|916167|916168|916169|916171|916186|916188|916189|916192|916195|916197|916198|916200|916202|916204|916205|916206|916207|916211|916212|916213|916214|916216|916220|916221|916222|916223|916224|916225|916228|916232|916233|916234|916235|916239|916241|916246|916250|916254|916257|916258|916261|916264|916265|916266|916267|916268|916270|916271|916272|916274|916275|916276|916278|916279|916280|916283|916286|916290|916300|916302|916308|916310|916320|916322|916326|916329|916333|916338|916340|916345|916346|916351|916356|916358|916360|916362|916387|916394|916396|916399|916406|916407|916408|916409|916411|916412|916414|916417|916418|916419|916421|916422|916423|916424|916426|916427|916428|916430|916432|916433|916434|916435|916437|916439|916440|916441|916447|916448|916450|916451|916452|916454|916456|916457|916459|916460|916461|916462|916464|916466|916468|916469|916470|916471|916472|916473|916474|916475|916476|916477|916478|916479|916480|916481|916482|916483|916484|916485|916486|916487|916488|916489|916490|916491|916492|916493|916494|916495|916496|916498|916499|916500|916502|916503|916504|916506|916507|916508|916509|916511|916513|916514|916515|916516|916517|916519|916520|916521|916522|916525|916526|916527|916529|916530|916532|916533|916534|916536|916537|916538|916551|916554|916557|916560|916562|916565|916566|916568|916569|916570|916572|916573|916574|916575|916577|916578|916579|916580|916582|916584|916585|916586|916587|916589|916590|916593|916599|916600|916601|916611|916618|916620|916622|916623|916627|916632|916635|916637|916638|916640|916642|916645|916646|916663|916666|916669|916671|916673|916674|916676|916677|916684|916685|916687|916688|916690|916691|916692|916700|916701|916702|916703|916704|916705|916706|916707|916708|916709|916710|916711|916712|916713|916714|916715|916716|916717|916718|916719|916720|916721|916722|916723|916724|916725|916726|916727|916728|916729|916730|916731|916732|916733|916734|916735|916736|916737|916738|916739|916740|916741|916742|916743|916744|916745|916746|916747|916748|916749|916750|916751|916752|916753|916754|916755|916764|916765|916766|916773|916774|916775|916776|916777|916780|916781|923799|923800|923801|923802|923803|923804|923805|923806|923807|923808|923809|923810|923811|923812|923813|923814|923815|923816|923817|923818|923819|923820|923821|923822|923823|923824|923825|923826|923827|923828|932647|932648|932649|932650|932651|932652|932653|932654|932655|932656|932657|932658|932659|932660|932661|932662|932663|932664|932665|932666|932667|932668|932669|932670|932671|932672|932673|932674|939981|939982|939983|940796|940797|944326|944327|944328|944329|944330|944331|944332|944333|944334|944335|944336|944337|944338|944339|944340|944341|944342|944343|944344|944345|944346|944347|944348|944349|944350|944351|944352|944353|944354|944355|944356|944357|944358|944359|944360|953975|953976|953977|953978|953979|953980|953981|953982|953983|953984|953985|953986|953987|953988|953989|953990|953991|953992|953993|953994|953995|953996|959749|959750|959751|960549|960550", "text": "Hereditary cancer-predisposing syndrome" }, { - "baseId": "15048|15049|15050|15058|19325|20422|34214|34217|34220|34221|34225|34226|34230|94503|134671|186057|212520|212530|213450|213451|221629|221642|221644|221645|222806|224315|239897|239955|239956|243332|252546|271323|283579|283593|283615|283616|284276|286258|299721|301262|301268|302313|304456|304459|304461|304463|309043|309060|309071|353550|395087|395264|395624|395930|395938|403292|455484|455487|455491|455588|455591|455888|456096|456499|456503|456865|521830|521904|521906|522221|522312|522661|522662|522664|560678|561111|561113|561132|561136|561167|561169|563903|566173|620244|635334|635335|635336|635337|635338|635339|647942|651741|683828|683829|683830|683831|683832|683833|683834|683835|683836|683837|685200|685201|685202|685203|685204|685205|686927|686928|686931|686932|686933|689844|689845|689846|689847|691975|692083|765918|765925|779896|782690|782694|787519|790670|819770|832624|832625|832626|832627|832628|832629|851112|851322|895724|897036|924527|924528|928929|933266|940841|944962|945266|954408|954409|954942|954943|954944", + "upstreamId": "15048|15049|15050|15058|19325|20422|34214|34217|34220|34221|34225|34226|34230|94503|134671|186057|212520|212530|213450|213451|221629|221642|221644|221645|222806|224315|239897|239955|239956|243332|252546|271323|283579|283593|283615|283616|284276|286258|299721|301262|301268|302313|304456|304459|304461|304463|309043|309060|309071|353550|395087|395264|395624|395930|395938|403292|455484|455487|455491|455588|455591|455888|456096|456499|456503|456865|521830|521904|521906|522221|522312|522661|522662|522664|560678|561111|561113|561132|561136|561167|561169|563903|566173|620244|635334|635335|635336|635337|635338|635339|647942|651741|683828|683829|683830|683831|683832|683833|683834|683835|683836|683837|685200|685201|685202|685203|685204|685205|686927|686928|686931|686932|686933|689844|689845|689846|689847|691975|692083|765918|765925|779896|782690|782694|787519|790670|819770|832624|832625|832626|832627|832628|832629|851112|851322|895724|897036|924527|924528|928929|933266|940841|944962|945266|954408|954409|954942|954943|954944", "text": "Hereditary hemochromatosis" }, { - "baseId": "15048|966618|969329", + "upstreamId": "15048|966618|969329", "text": "Cutaneous photosensitivity" }, { - "baseId": "15048|360805", + "upstreamId": "15048|360805", "text": "Porphyrinuria" }, { - "baseId": "15048|682747", + "upstreamId": "15048|682747", "text": "Hemochromatosis type 2" }, { - "baseId": "15048|15049", + "upstreamId": "15048|15049", "text": "Bronze diabetes" }, { - "baseId": "15048|23886|23891|24765|32903|33127|33128|33130|33132|33133|33137|33140|33145|103887|103896|103986|104129|132725|336528|336531|336536|336542|336544|336553|336554|336561|336562|346238|346247|346248|346249|346250|346257|346260|346261|346266|346269|350516|350518|350521|350522|350524|350525|350527|350528|350529|350530|351560|351563|351566|351567|351570|351574|418806|418807|420431|442309|469532|533749|533765|534332|577873|577874|577876|577877|590943|590944|590945|590948|590949|590950|590951|590952|590953|590955|590965|648878|648879|648880|648881|648882|648883|648884|653161|694610|694614|694615|694616|694617|694618|695855|742577|848660|848661|886639|886640|886641|886642|886643|886644|886645|886646|886647|886648|886649|886650|886651|886652|886653|886654|886655|886656|886657|886658|886659|886660|886661|886662|886663|886664|886665|886666|886667|886668|919751|951189|960949", + "upstreamId": "15048|23886|23891|24765|32903|33127|33128|33130|33132|33133|33137|33140|33145|103887|103896|103986|104129|132725|336528|336531|336536|336542|336544|336553|336554|336561|336562|346238|346247|346248|346249|346250|346257|346260|346261|346266|346269|350516|350518|350521|350522|350524|350525|350527|350528|350529|350530|351560|351563|351566|351567|351570|351574|418806|418807|420431|442309|469532|533749|533765|534332|577873|577874|577876|577877|590943|590944|590945|590948|590949|590950|590951|590952|590953|590955|590965|648878|648879|648880|648881|648882|648883|648884|653161|694610|694614|694615|694616|694617|694618|695855|742577|848660|848661|886639|886640|886641|886642|886643|886644|886645|886646|886647|886648|886649|886650|886651|886652|886653|886654|886655|886656|886657|886658|886659|886660|886661|886662|886663|886664|886665|886666|886667|886668|919751|951189|960949", "text": "Alzheimer disease" }, { - "baseId": "15048|16740|16742|17524|19329|19331|19332|19334|19350|19367|22872|22883|27386|28984|29127|29131|29141|29164|29209|29220|29230|29680|31328|31338|31379|32039|32043|32048|32049|32351|32386|32485|38590|39416|40351|45303|45605|45795|48174|50281|51564|52028|52044|52045|52071|52136|52146|52155|52270|52287|70951|77659|99352|101204|102208|133120|133133|133139|133153|141325|151663|153737|165560|168250|175442|175610|181400|181428|181463|182990|187315|187363|187986|187995|187996|188003|188008|192716|193089|195318|195508|195559|201545|205216|207373|213298|213517|213602|213614|231766|243979|243980|243996|244257|259764|263177|263180|263194|263240|263241|263277|263291|263293|263316|263394|263403|263416|263417|263518|263934|264139|265506|271274|271557|272622|273563|295323|312875|345158|346557|359454|359566|360802|360811|360819|360859|360872|360898|360946|360972|360974|360982|361037|361038|361058|361059|361072|361082|361104|362135|362312|367608|376313|380289|389102|394589|399749|414003|414007|414011|419728|421792|425565|434691|439829|441976|443485|445808|445822|447245|448196|460360|470377|475556|481888|494081|495459|501070|513901|513906|513919|513932|513933|513950|513962|513963|513965|513993|514025|514034|514129|514146|514151|514177|514222|520980|535226|590034|590053|590056|590058|590066|590086|590460|613542|614175|619854|622212|622213|677418|677428|682676|794202|801189|801253|904254|918916|920247|974891", + "upstreamId": "15048|16740|16742|17524|19329|19331|19332|19334|19350|19367|22872|22883|27386|28984|29127|29131|29141|29164|29209|29220|29230|29680|31328|31338|31379|32039|32043|32048|32049|32351|32386|32485|38590|39416|40351|45303|45605|45795|48174|50281|51564|52028|52044|52045|52071|52136|52146|52155|52270|52287|70951|77659|99352|101204|102208|133120|133133|133139|133153|141325|151663|153737|165560|168250|175442|175610|181400|181428|181463|182990|187315|187363|187986|187995|187996|188003|188008|192716|193089|195318|195508|195559|201545|205216|207373|213298|213517|213602|213614|231766|243979|243980|243996|244257|259764|263177|263180|263194|263240|263241|263277|263291|263293|263316|263394|263403|263416|263417|263518|263934|264139|265506|271274|271557|272622|273563|295323|312875|345158|346557|359454|359566|360802|360811|360819|360859|360872|360898|360946|360972|360974|360982|361037|361038|361058|361059|361072|361082|361104|362135|362312|367608|376313|380289|389102|394589|399749|414003|414007|414011|419728|421792|425565|434691|439829|441976|443485|445808|445822|447245|448196|460360|470377|475556|481888|494081|495459|501070|513901|513906|513919|513932|513933|513950|513962|513963|513965|513993|514025|514034|514129|514146|514151|514177|514222|520980|535226|590034|590053|590056|590058|590066|590086|590460|613542|614175|619854|622212|622213|677418|677428|682676|794202|801189|801253|904254|918916|920247|974891", "text": "7 conditions" }, { - "baseId": "15049|15050|17586|18005|18818|18846|20935|20936|20943|20949|21407|22745|22762|22988|26559|27642|27645|27652|28368|28535|28536|28541|28944|28971|29701|29967|29987|30372|32581|34164|36254|36270|36280|36288|38432|48426|48918|50281|50282|51081|52045|52071|54113|56195|56266|56357|56399|56456|56592|56666|56690|56713|56728|56878|56896|71378|71401|78562|79181|79391|102176|102192|105451|135440|135718|136510|137584|150555|151704|152602|152917|153737|171102|171103|171865|171868|171869|171870|171871|171872|171873|172611|172621|172686|172863|172957|173003|173045|173046|173088|173135|173156|173307|173331|173363|173447|173490|175500|175979|178130|178385|178478|181403|181410|181412|181413|181436|182955|184342|184379|184384|184423|186244|187243|189478|189582|189586|189592|189659|189673|189745|190811|191589|192080|192343|192648|192752|192816|193029|193740|193816|193915|193923|193928|194009|195312|195314|195474|197033|197386|197829|198692|198753|198753|198754|198754|198768|198796|198806|198822|198924|199019|199066|199081|199085|199184|199191|199229|199254|199432|199449|199449|199544|199572|199576|199729|199751|202902|202910|202926|202938|202940|202960|202978|202985|202987|203008|203013|203017|205753|213214|213576|223736|224323|224987|225076|225871|226501|226933|228631|228654|228719|228812|231514|237762|238384|238400|238443|238456|238472|242453|243967|243968|243969|243970|243971|243977|243982|243983|243989|243990|243991|244002|244004|244006|252133|258032|258458|263150|263174|263182|263183|263186|263214|263225|263256|263266|263272|263311|263321|263342|264844|265061|265335|266188|266545|266956|268326|268328|268703|269646|273865|274934|274943|274948|339687|353887|354283|354286|354287|359685|360800|360800|360827|360858|360875|360891|360900|360909|360911|360917|360931|360949|360966|361031|361095|361103|362138|373786|391634|391804|391891|391910|392055|392097|392098|392135|392302|392323|397267|397271|397282|404754|407274|411132|415577|422187|424467|425956|427956|428802|429383|434584|434634|440566|440625|441526|441571|441761|444002|445458|445463|449097|449144|449146|449154|449260|449421|449453|449589|449603|449693|450130|450131|450207|450236|457422|457703|457936|457981|458025|459871|464568|465378|465483|467286|470525|471580|477884|481620|488437|488511|488557|488582|490421|492360|492468|493054|493055|496677|502504|509280|509298|509360|509380|509812|512158|513899|513920|513976|513991|513997|514012|514042|514045|514062|514087|514105|514145|514156|514212|516657|516737|516762|516806|516859|516937|517059|517160|517163|517227|517235|517239|522932|523379|531474|531589|538932|538956|543641|550132|550166|550167|550228|552058|552059|552060|559480|563694|564520|569517|569649|570147|571466|572032|574567|574574|574575|576095|576607|576623|576638|577607|590032|590068|590079|590080|590096|609038|614175|614691|622048|622049|622050|625980|626014|626015|626461|643599|677070|679674|679687|679846|680922|800995|801079|801103|801104|801129|816044|816045|857333|857411|861454|905850|905851|905855|905856|917804|920210|971543|971545", + "upstreamId": "15049|15050|17586|18005|18818|18846|20935|20936|20943|20949|21407|22745|22762|22988|26559|27642|27645|27652|28368|28535|28536|28541|28944|28971|29701|29967|29987|30372|32581|34164|36254|36270|36280|36288|38432|48426|48918|50281|50282|51081|52045|52071|54113|56195|56266|56357|56399|56456|56592|56666|56690|56713|56728|56878|56896|71378|71401|78562|79181|79391|102176|102192|105451|135440|135718|136510|137584|150555|151704|152602|152917|153737|171102|171103|171865|171868|171869|171870|171871|171872|171873|172611|172621|172686|172863|172957|173003|173045|173046|173088|173135|173156|173307|173331|173363|173447|173490|175500|175979|178130|178385|178478|181403|181410|181412|181413|181436|182955|184342|184379|184384|184423|186244|187243|189478|189582|189586|189592|189659|189673|189745|190811|191589|192080|192343|192648|192752|192816|193029|193740|193816|193915|193923|193928|194009|195312|195314|195474|197033|197386|197829|198692|198753|198753|198754|198754|198768|198796|198806|198822|198924|199019|199066|199081|199085|199184|199191|199229|199254|199432|199449|199449|199544|199572|199576|199729|199751|202902|202910|202926|202938|202940|202960|202978|202985|202987|203008|203013|203017|205753|213214|213576|223736|224323|224987|225076|225871|226501|226933|228631|228654|228719|228812|231514|237762|238384|238400|238443|238456|238472|242453|243967|243968|243969|243970|243971|243977|243982|243983|243989|243990|243991|244002|244004|244006|252133|258032|258458|263150|263174|263182|263183|263186|263214|263225|263256|263266|263272|263311|263321|263342|264844|265061|265335|266188|266545|266956|268326|268328|268703|269646|273865|274934|274943|274948|339687|353887|354283|354286|354287|359685|360800|360800|360827|360858|360875|360891|360900|360909|360911|360917|360931|360949|360966|361031|361095|361103|362138|373786|391634|391804|391891|391910|392055|392097|392098|392135|392302|392323|397267|397271|397282|404754|407274|411132|415577|422187|424467|425956|427956|428802|429383|434584|434634|440566|440625|441526|441571|441761|444002|445458|445463|449097|449144|449146|449154|449260|449421|449453|449589|449603|449693|450130|450131|450207|450236|457422|457703|457936|457981|458025|459871|464568|465378|465483|467286|470525|471580|477884|481620|488437|488511|488557|488582|490421|492360|492468|493054|493055|496677|502504|509280|509298|509360|509380|509812|512158|513899|513920|513976|513991|513997|514012|514042|514045|514062|514087|514105|514145|514156|514212|516657|516737|516762|516806|516859|516937|517059|517160|517163|517227|517235|517239|522932|523379|531474|531589|538932|538956|543641|550132|550166|550167|550228|552058|552059|552060|559480|563694|564520|569517|569649|570147|571466|572032|574567|574574|574575|576095|576607|576623|576638|577607|590032|590068|590079|590080|590096|609038|614175|614691|622048|622049|622050|625980|626014|626015|626461|643599|677070|679674|679687|679846|680922|800995|801079|801103|801104|801129|816044|816045|857333|857411|861454|905850|905851|905855|905856|917804|920210|971543|971545", "text": "6 conditions" }, { - "baseId": "15049|22144|22144|22145|22145|22146|22146|22147|22147|22147|22148|22148|22148|22149|22149|22150|22150|22150|22151|22151|22152|22152|22153|22153|22153|22154|22154|22154|22155|22155|22156|22157|22157|22157|22158|22158|22158|22159|22159|22159|22161|22161|22161|22162|22162|22163|22163|22164|22165|22166|22166|22167|22167|22168|22168|22168|22169|22170|22171|22172|22173|22173|22174|22174|22175|22175|22176|22176|22177|22178|22178|22178|22179|22180|22180|22181|22182|22182|22183|22183|22183|22184|22185|22186|22188|22189|22189|22190|22191|22192|22193|22194|22194|22194|22195|22196|22197|22197|22198|22199|22199|22200|22201|22201|22202|22203|22204|22205|22205|22205|22206|22207|22207|22209|22210|22210|22211|22211|22212|22213|22214|22215|22216|22217|22218|22219|22220|22220|22221|22221|22221|22222|22223|22224|22224|22225|22225|22225|22226|22226|22227|22229|22229|22229|22229|22230|22231|22232|22233|22233|22233|22235|22236|22237|22237|22237|22238|22240|22241|22242|22242|22243|22244|22245|22246|22247|22247|22248|22249|22250|22250|22251|22252|22253|22254|22255|22256|22257|22258|22259|22260|22261|22262|22262|22264|22265|22266|22267|22268|22269|22270|22270|22271|22271|22273|22274|22275|22276|22277|22278|22279|22279|27573|29391|31643|33008|33858|33858|33858|44480|44481|44482|44483|44484|44485|44485|44485|44485|44486|44486|44487|44487|44488|44488|44489|44490|44492|44493|44494|44495|44495|44496|44497|44497|44497|44497|44498|44499|44499|44500|44500|44501|44501|44502|44502|44503|44504|44506|44506|44507|44508|44510|44510|44511|44512|44513|44513|44514|44515|44516|44517|44518|44518|44519|44521|44521|44522|44523|44524|44525|44525|44526|44527|44528|44528|44528|44529|44529|44530|44530|44530|44531|44531|44531|44532|44532|44533|44534|44535|44536|44537|44538|44539|44539|44540|44541|44542|44543|44544|44545|44546|44547|44548|44550|44551|44552|44553|44554|44554|44555|44556|44557|44557|44558|44559|46824|46824|47057|47057|47058|47058|47058|47059|47059|47062|47062|47062|47062|47331|47331|47333|47333|47333|47335|47335|47335|47338|47338|47340|47340|47342|47438|47455|48115|48115|52745|52746|52748|57834|57834|57836|57842|57842|57842|57843|57843|57846|57846|57847|57847|57850|57850|57850|57850|57854|57854|57854|57862|57866|57866|57870|57870|65697|65698|65699|65701|67824|67825|67826|67827|67828|67829|67830|67830|67831|67832|67833|67835|67835|67838|67839|67840|67841|67842|67843|67844|67845|67847|67848|67851|67852|67853|67854|67855|67856|67858|67858|67859|67860|67862|67864|67866|67867|67868|67869|67870|67872|67873|67874|67875|67876|67878|67879|67880|67881|67882|67883|67884|67885|67886|67886|67887|67888|67889|67890|67893|67894|67895|67896|67897|67897|67899|67899|67900|67901|67901|67904|67905|67905|67906|67907|67908|67909|67910|67910|67911|67912|67912|67914|67915|67916|67916|67917|67918|67919|67922|67924|67925|67926|67927|67929|67930|67931|67933|67934|67936|67937|67938|67939|67940|67941|67942|67943|67943|67944|67945|67946|67948|67948|67950|67952|67953|67955|67957|67958|67959|67962|67963|67965|67966|67968|67970|67971|67972|67973|67974|67976|67977|67978|67979|67980|67982|67983|67985|67985|67985|67987|67988|67989|67990|67991|67992|67993|67993|67993|67994|67995|67998|67999|68000|68001|68002|68003|68004|68005|68006|68006|68006|68007|68009|68010|68011|68012|68012|68014|68015|68015|68016|68017|68018|68019|68020|68020|68021|68022|68023|68023|68024|68025|68026|68027|68028|68029|68030|68031|68033|68033|68033|68034|68035|68036|68038|68039|68041|68042|68042|68043|68044|68045|68046|68047|68048|68049|68050|68051|68052|68052|68053|68054|68056|68058|68059|68059|68060|68061|68062|68063|68063|68064|68065|68066|68066|68067|68068|68069|68071|68071|68071|68072|68072|68073|68074|68075|68076|68077|68078|68079|68081|68083|68084|68085|68085|68086|68087|68089|68090|68091|68093|68093|68095|68096|68097|68098|68098|68099|68100|68102|68103|68104|68105|68106|68107|68108|68108|68109|68110|68111|68112|68113|68115|68116|68117|68118|68119|68120|68121|68123|68124|68125|68127|68128|68128|68129|68131|68133|68135|68139|68139|68140|68141|68142|68143|68144|68147|68148|68148|68150|68151|68151|68152|68153|68154|68155|68155|68156|68158|68159|68160|68160|68162|68163|68164|68169|68170|68171|68171|68172|68173|68174|68175|68176|68177|68177|68178|68179|68181|68183|68184|68185|68186|68187|68188|68189|68192|68193|68194|68196|68197|68197|68198|68200|68201|68202|68203|68204|68207|68208|68209|68210|68211|68213|68214|68214|68215|68216|68217|68218|68218|68220|68220|68222|68223|68224|68226|68227|68228|68229|68229|68230|68231|68232|68233|68234|68235|68236|68237|68238|68240|68242|68243|68243|68243|68245|68246|68247|68248|68249|68250|68251|68252|68253|68255|68257|68258|68260|68260|68262|68263|68264|68266|68267|68268|68269|68269|68269|68270|68271|68271|68272|68273|68274|68274|68274|68278|68278|68279|68280|68281|68282|68282|68283|68284|68286|68287|68288|68289|68290|68291|68292|68293|68294|68295|68295|68296|68297|68298|68299|68301|68302|68303|68304|68305|68306|68308|68308|68310|68311|68313|68314|68316|68318|68320|68320|68321|68322|68325|68326|68327|68328|68329|68330|68334|68335|68336|68337|68338|68339|68340|68340|68342|68344|68345|68346|68347|68348|68348|68350|68351|68352|68352|68353|68353|68353|68354|68355|68356|68356|68357|68358|68358|68360|68360|68361|68362|68363|68364|68365|68366|68367|68369|68370|68371|68374|68375|68376|68376|68377|68379|68379|68380|68381|68382|68382|68383|68384|68385|68386|68387|68388|68389|68390|68393|68394|68396|68398|68400|68401|68403|68405|68405|68406|68407|68409|68410|68411|68413|68415|68416|68417|68418|68418|68419|68420|68422|68424|68425|68425|68426|68427|68429|68430|68432|68433|68434|68435|68437|68442|68443|68444|68445|68446|68447|68447|68448|68449|68449|68450|68451|68454|68455|68456|68457|68457|68458|68459|68460|68461|68463|68465|68465|68465|68466|68468|68469|68470|68472|68472|68473|68475|68476|68479|68479|68480|68482|68483|68484|68485|68486|68487|68488|68490|68491|68492|68493|68494|68494|68495|68496|68497|68499|68500|68501|68503|68505|68506|68508|68508|68510|68511|68512|68512|68513|68513|68514|68515|68517|68518|68519|68520|68521|68523|68524|68525|68526|68527|68529|68530|68531|68532|68533|68534|68535|68536|68537|68538|68539|68540|68541|68542|68543|68545|68546|68547|68548|68550|68550|68552|68553|68554|68555|68556|68558|68561|68562|68565|68567|68568|68569|68570|68572|68574|68575|68576|68577|68579|68579|68580|68581|68584|68585|68586|68588|68590|68591|68592|68593|68594|68595|68596|68597|68597|68600|68601|68604|68606|68607|68608|68611|68612|68613|68614|68614|68615|68616|68616|68618|68620|68621|68622|68623|68624|68626|68631|68632|68634|68635|68636|68637|68638|68638|68639|68641|68641|68642|68643|68644|68645|68646|68647|68648|68649|68650|68651|68652|68653|68655|68656|68657|68658|68658|68659|68660|68661|68662|68663|68664|68665|68666|68668|68669|68670|68672|68673|68674|68674|68677|68677|68677|68678|68679|68679|68680|68681|68681|68683|68685|68685|68685|68686|68687|68689|68690|68691|68692|68693|68693|68695|68696|68697|68698|68699|68700|68701|68702|68703|68703|68703|68705|68706|68707|68708|68708|68708|68709|68710|68712|68713|68714|68716|68717|68718|68719|68720|68722|68722|68723|68725|68725|68726|68728|68729|68730|68731|68732|68733|68734|68736|68736|68738|68739|68741|68742|68742|68743|68744|68745|68746|68747|68748|68749|68750|68751|68752|68753|68754|68755|68756|68756|68759|68761|68762|68763|68764|68764|68765|77003|77003|77005|77006|99055|99058|99059|99060|99061|99062|99063|99064|99066|124927|166107|171032|171722|171723|171724|171725|171726|174036|174036|174169|174173|178276|186743|186744|186745|186746|186747|186747|190751|190755|191499|192084|192625|193438|195898|205613|205614|205614|205615|205617|205619|205620|205621|205623|205625|205626|205627|205628|205629|205631|205632|205633|205634|205635|205636|212565|221666|236932|236970|239980|239981|239982|239983|239984|239985|239986|248494|252564|252565|252566|252568|252569|252571|252573|265961|266029|267207|268012|270643|270918|270918|271106|271442|272695|273837|274110|274210|274514|275215|301669|301687|301696|309497|309498|309534|309622|357562|357563|357564|357565|357566|357567|357568|357569|357570|357571|357572|357573|357574|357574|357575|357575|357576|357577|357578|357579|357580|357581|357582|357582|357583|357584|357585|357585|362284|362419|370760|395239|395393|395395|395404|395407|395423|395438|395632|395633|395636|395806|395809|395810|395813|396065|396065|396082|396083|425722|432602|432603|432604|432610|432617|432618|432619|432629|432629|432631|432632|432635|432638|432642|433026|433027|433029|433030|433032|433033|433034|433039|433040|456078|456084|456088|456090|456095|456097|456098|456324|456334|456341|456351|456353|456355|456361|456365|456636|456638|456642|456650|456654|456810|456999|457004|457007|457012|457014|457022|480433|480434|480435|480436|480438|480439|480439|480440|480441|480442|480444|480446|480448|480449|480450|480452|480453|480454|480455|480456|480457|480458|480459|480460|485739|485739|486425|487108|487109|487125|487154|487162|487174|487182|487199|487199|487205|487209|487214|487214|487224|487228|487229|487230|487232|487236|487237|487240|487243|487243|487244|487248|487253|487259|487264|487274|487276|487277|487286|487294|487298|487304|487306|487332|487336|489023|489035|489453|491045|491495|491495|493454|493478|493929|494020|496487|511037|513291|521876|522077|522079|522085|522249|522283|522354|522361|522449|522628|522782|522783|522784|522801|544113|544119|544127|544128|544130|544131|544135|544138|544146|544148|544150|544151|544156|544159|544164|544167|544173|544174|544176|544178|544180|544189|544191|544193|544198|544209|544211|544215|544216|544218|544220|544223|544223|544371|544378|544383|544388|544389|544397|544405|544407|544408|544417|544419|544428|544429|544431|544432|544436|544437|544438|544439|544440|544444|544445|544446|544451|544460|544463|544465|544466|544468|544471|544474|544476|544477|544480|544482|544485|544486|544488|544489|544490|544491|544492|544493|544494|544495|544495|544496|544498|544500|544503|544504|544507|544509|544510|544511|544513|544513|544515|544516|544517|544518|544518|544519|544520|544522|544523|544524|544525|544527|544530|544530|544531|544533|544535|544536|544538|544539|544543|544544|544546|544548|544550|544551|544553|544554|544556|544558|544560|544563|544569|544571|544573|544582|544585|544601|544606|544607|544609|544618|544622|549456|549459|551270|561027|561141|561226|561228|561234|561235|561237|561239|561242|561281|561285|561292|561300|561301|561307|561308|561314|563836|563969|563972|563973|563976|563980|563982|566042|566332|581269|584341|586642|587329|587967|589641|589707|589709|589784|609647|609651|609655|610293|610294|610295|610296|610297|610298|610299|610300|610301|610302|610303|610304|610305|610306|610307|610308|610309|610310|610311|610312|610313|610314|610315|610316|610317|610318|610319|610320|610320|610321|610322|610323|610324|610327|610328|610329|610330|610331|610332|610333|610334|610335|610336|610337|610338|610339|610340|610341|610342|610342|610343|610344|610345|610346|610347|610348|610349|610349|610350|610351|610352|610353|610354|610355|610356|610357|610358|610359|610360|610361|610362|610363|610364|610365|611073|611301|612279|612280|614543|621226|621227|621228|621229|621232|621235|621241|621246|621758|621759|621765|621888|622700|622701|622702|622703|622704|622705|622706|622743|622744|622745|622746|622747|622748|622749|622750|622751|622752|622753|622754|622756|622757|622758|625800|625986|635537|635538|635539|635540|635541|635542|635543|635544|635545|635546|635547|635548|635549|635550|635551|635552|635553|635554|635555|635556|635557|635558|635559|635560|635561|635562|635563|635564|651559|651564|651602|651700|651752|677034|681849|681850|681851|681852|681853|681854|683849|683850|685208|686965|686970|686971|686972|686973|686974|689853|689854|692112|692114|692117|692118|692119|692120|692121|692122|695338|695339|695341|695342|699773|699775|710727|710728|722265|750366|777612|782748|789471|789477|789477|790684|790685|790686|790687|790688|790689|790690|792573|799473|799475|799476|799488|799489|801646|801647|801648|801648|801649|804883|806291|806292|806293|806294|806295|806296|806296|806297|806298|806299|806300|806301|806302|806303|806304|806305|806306|806307|806308|806309|806310|806311|806312|806313|806314|806315|806316|806317|806318|806319|806320|806322|806323|806324|806325|806326|806327|806328|806329|806330|806331|806332|806336|806338|806340|806343|806344|806345|806346|806348|806349|806350|806351|806352|806353|806354|806355|806356|806359|806360|806361|806362|806363|806364|806365|806422|808844|808847|808856|808860|808862|808866|808870|808871|815364|815365|816411|819784|819785|819786|819787|819788|819789|819790|819791|819794|819795|819796|819797|819798|819799|819800|819801|819802|819803|819804|819805|832869|832870|832871|832872|832873|832874|832875|832876|832877|832878|832879|832880|832881|832882|832883|832884|832885|832886|832887|832888|832889|832890|832891|832892|832893|832894|832895|832896|832897|832898|832899|832900|832901|832902|832903|851127|851130|851616|858449|859578|897327|905030|905916|905917|905918|906318|916981|916983|916986|916992|921211|921212|924612|924613|924614|924615|924616|924617|924618|924619|924620|924621|933606|933607|933608|933609|933610|940057|945348|945349|945350|945351|954987|954988|954989|954990|954991|954992|954993|954994|954995|954996|954997|954998|954999|955000|955001|959826|962157|962158|962159|962160|962190|962191|965216|965217|965218|969157|969158|970069|970155|971579|971981|971982|971983|971984|971985|971986|971987|971988|971989|971990|971991|971992|971993|971994|971995|971996|971997|971998|971999|972000|972001|972002|975790|978386|978387|978388|978389|978390|978391|978392|978393|978394|978395|978396|978397|980925|983963", + "upstreamId": "15049|22144|22144|22145|22145|22146|22146|22147|22147|22147|22148|22148|22148|22149|22149|22150|22150|22150|22151|22151|22152|22152|22153|22153|22153|22154|22154|22154|22155|22155|22156|22157|22157|22157|22158|22158|22158|22159|22159|22159|22161|22161|22161|22162|22162|22163|22163|22164|22165|22166|22166|22167|22167|22168|22168|22168|22169|22170|22171|22172|22173|22173|22174|22174|22175|22175|22176|22176|22177|22178|22178|22178|22179|22180|22180|22181|22182|22182|22183|22183|22183|22184|22185|22186|22188|22189|22189|22190|22191|22192|22193|22194|22194|22194|22195|22196|22197|22197|22198|22199|22199|22200|22201|22201|22202|22203|22204|22205|22205|22205|22206|22207|22207|22209|22210|22210|22211|22211|22212|22213|22214|22215|22216|22217|22218|22219|22220|22220|22221|22221|22221|22222|22223|22224|22224|22225|22225|22225|22226|22226|22227|22229|22229|22229|22229|22230|22231|22232|22233|22233|22233|22235|22236|22237|22237|22237|22238|22240|22241|22242|22242|22243|22244|22245|22246|22247|22247|22248|22249|22250|22250|22251|22252|22253|22254|22255|22256|22257|22258|22259|22260|22261|22262|22262|22264|22265|22266|22267|22268|22269|22270|22270|22271|22271|22273|22274|22275|22276|22277|22278|22279|22279|27573|29391|31643|33008|33858|33858|33858|44480|44481|44482|44483|44484|44485|44485|44485|44485|44486|44486|44487|44487|44488|44488|44489|44490|44492|44493|44494|44495|44495|44496|44497|44497|44497|44497|44498|44499|44499|44500|44500|44501|44501|44502|44502|44503|44504|44506|44506|44507|44508|44510|44510|44511|44512|44513|44513|44514|44515|44516|44517|44518|44518|44519|44521|44521|44522|44523|44524|44525|44525|44526|44527|44528|44528|44528|44529|44529|44530|44530|44530|44531|44531|44531|44532|44532|44533|44534|44535|44536|44537|44538|44539|44539|44540|44541|44542|44543|44544|44545|44546|44547|44548|44550|44551|44552|44553|44554|44554|44555|44556|44557|44557|44558|44559|46824|46824|47057|47057|47058|47058|47058|47059|47059|47062|47062|47062|47062|47331|47331|47333|47333|47333|47335|47335|47335|47338|47338|47340|47340|47342|47438|47455|48115|48115|52745|52746|52748|57834|57834|57836|57842|57842|57842|57843|57843|57846|57846|57847|57847|57850|57850|57850|57850|57854|57854|57854|57862|57866|57866|57870|57870|65697|65698|65699|65701|67824|67825|67826|67827|67828|67829|67830|67830|67831|67832|67833|67835|67835|67838|67839|67840|67841|67842|67843|67844|67845|67847|67848|67851|67852|67853|67854|67855|67856|67858|67858|67859|67860|67862|67864|67866|67867|67868|67869|67870|67872|67873|67874|67875|67876|67878|67879|67880|67881|67882|67883|67884|67885|67886|67886|67887|67888|67889|67890|67893|67894|67895|67896|67897|67897|67899|67899|67900|67901|67901|67904|67905|67905|67906|67907|67908|67909|67910|67910|67911|67912|67912|67914|67915|67916|67916|67917|67918|67919|67922|67924|67925|67926|67927|67929|67930|67931|67933|67934|67936|67937|67938|67939|67940|67941|67942|67943|67943|67944|67945|67946|67948|67948|67950|67952|67953|67955|67957|67958|67959|67962|67963|67965|67966|67968|67970|67971|67972|67973|67974|67976|67977|67978|67979|67980|67982|67983|67985|67985|67985|67987|67988|67989|67990|67991|67992|67993|67993|67993|67994|67995|67998|67999|68000|68001|68002|68003|68004|68005|68006|68006|68006|68007|68009|68010|68011|68012|68012|68014|68015|68015|68016|68017|68018|68019|68020|68020|68021|68022|68023|68023|68024|68025|68026|68027|68028|68029|68030|68031|68033|68033|68033|68034|68035|68036|68038|68039|68041|68042|68042|68043|68044|68045|68046|68047|68048|68049|68050|68051|68052|68052|68053|68054|68056|68058|68059|68059|68060|68061|68062|68063|68063|68064|68065|68066|68066|68067|68068|68069|68071|68071|68071|68072|68072|68073|68074|68075|68076|68077|68078|68079|68081|68083|68084|68085|68085|68086|68087|68089|68090|68091|68093|68093|68095|68096|68097|68098|68098|68099|68100|68102|68103|68104|68105|68106|68107|68108|68108|68109|68110|68111|68112|68113|68115|68116|68117|68118|68119|68120|68121|68123|68124|68125|68127|68128|68128|68129|68131|68133|68135|68139|68139|68140|68141|68142|68143|68144|68147|68148|68148|68150|68151|68151|68152|68153|68154|68155|68155|68156|68158|68159|68160|68160|68162|68163|68164|68169|68170|68171|68171|68172|68173|68174|68175|68176|68177|68177|68178|68179|68181|68183|68184|68185|68186|68187|68188|68189|68192|68193|68194|68196|68197|68197|68198|68200|68201|68202|68203|68204|68207|68208|68209|68210|68211|68213|68214|68214|68215|68216|68217|68218|68218|68220|68220|68222|68223|68224|68226|68227|68228|68229|68229|68230|68231|68232|68233|68234|68235|68236|68237|68238|68240|68242|68243|68243|68243|68245|68246|68247|68248|68249|68250|68251|68252|68253|68255|68257|68258|68260|68260|68262|68263|68264|68266|68267|68268|68269|68269|68269|68270|68271|68271|68272|68273|68274|68274|68274|68278|68278|68279|68280|68281|68282|68282|68283|68284|68286|68287|68288|68289|68290|68291|68292|68293|68294|68295|68295|68296|68297|68298|68299|68301|68302|68303|68304|68305|68306|68308|68308|68310|68311|68313|68314|68316|68318|68320|68320|68321|68322|68325|68326|68327|68328|68329|68330|68334|68335|68336|68337|68338|68339|68340|68340|68342|68344|68345|68346|68347|68348|68348|68350|68351|68352|68352|68353|68353|68353|68354|68355|68356|68356|68357|68358|68358|68360|68360|68361|68362|68363|68364|68365|68366|68367|68369|68370|68371|68374|68375|68376|68376|68377|68379|68379|68380|68381|68382|68382|68383|68384|68385|68386|68387|68388|68389|68390|68393|68394|68396|68398|68400|68401|68403|68405|68405|68406|68407|68409|68410|68411|68413|68415|68416|68417|68418|68418|68419|68420|68422|68424|68425|68425|68426|68427|68429|68430|68432|68433|68434|68435|68437|68442|68443|68444|68445|68446|68447|68447|68448|68449|68449|68450|68451|68454|68455|68456|68457|68457|68458|68459|68460|68461|68463|68465|68465|68465|68466|68468|68469|68470|68472|68472|68473|68475|68476|68479|68479|68480|68482|68483|68484|68485|68486|68487|68488|68490|68491|68492|68493|68494|68494|68495|68496|68497|68499|68500|68501|68503|68505|68506|68508|68508|68510|68511|68512|68512|68513|68513|68514|68515|68517|68518|68519|68520|68521|68523|68524|68525|68526|68527|68529|68530|68531|68532|68533|68534|68535|68536|68537|68538|68539|68540|68541|68542|68543|68545|68546|68547|68548|68550|68550|68552|68553|68554|68555|68556|68558|68561|68562|68565|68567|68568|68569|68570|68572|68574|68575|68576|68577|68579|68579|68580|68581|68584|68585|68586|68588|68590|68591|68592|68593|68594|68595|68596|68597|68597|68600|68601|68604|68606|68607|68608|68611|68612|68613|68614|68614|68615|68616|68616|68618|68620|68621|68622|68623|68624|68626|68631|68632|68634|68635|68636|68637|68638|68638|68639|68641|68641|68642|68643|68644|68645|68646|68647|68648|68649|68650|68651|68652|68653|68655|68656|68657|68658|68658|68659|68660|68661|68662|68663|68664|68665|68666|68668|68669|68670|68672|68673|68674|68674|68677|68677|68677|68678|68679|68679|68680|68681|68681|68683|68685|68685|68685|68686|68687|68689|68690|68691|68692|68693|68693|68695|68696|68697|68698|68699|68700|68701|68702|68703|68703|68703|68705|68706|68707|68708|68708|68708|68709|68710|68712|68713|68714|68716|68717|68718|68719|68720|68722|68722|68723|68725|68725|68726|68728|68729|68730|68731|68732|68733|68734|68736|68736|68738|68739|68741|68742|68742|68743|68744|68745|68746|68747|68748|68749|68750|68751|68752|68753|68754|68755|68756|68756|68759|68761|68762|68763|68764|68764|68765|77003|77003|77005|77006|99055|99058|99059|99060|99061|99062|99063|99064|99066|124927|166107|171032|171722|171723|171724|171725|171726|174036|174036|174169|174173|178276|186743|186744|186745|186746|186747|186747|190751|190755|191499|192084|192625|193438|195898|205613|205614|205614|205615|205617|205619|205620|205621|205623|205625|205626|205627|205628|205629|205631|205632|205633|205634|205635|205636|212565|221666|236932|236970|239980|239981|239982|239983|239984|239985|239986|248494|252564|252565|252566|252568|252569|252571|252573|265961|266029|267207|268012|270643|270918|270918|271106|271442|272695|273837|274110|274210|274514|275215|301669|301687|301696|309497|309498|309534|309622|357562|357563|357564|357565|357566|357567|357568|357569|357570|357571|357572|357573|357574|357574|357575|357575|357576|357577|357578|357579|357580|357581|357582|357582|357583|357584|357585|357585|362284|362419|370760|395239|395393|395395|395404|395407|395423|395438|395632|395633|395636|395806|395809|395810|395813|396065|396065|396082|396083|425722|432602|432603|432604|432610|432617|432618|432619|432629|432629|432631|432632|432635|432638|432642|433026|433027|433029|433030|433032|433033|433034|433039|433040|456078|456084|456088|456090|456095|456097|456098|456324|456334|456341|456351|456353|456355|456361|456365|456636|456638|456642|456650|456654|456810|456999|457004|457007|457012|457014|457022|480433|480434|480435|480436|480438|480439|480439|480440|480441|480442|480444|480446|480448|480449|480450|480452|480453|480454|480455|480456|480457|480458|480459|480460|485739|485739|486425|487108|487109|487125|487154|487162|487174|487182|487199|487199|487205|487209|487214|487214|487224|487228|487229|487230|487232|487236|487237|487240|487243|487243|487244|487248|487253|487259|487264|487274|487276|487277|487286|487294|487298|487304|487306|487332|487336|489023|489035|489453|491045|491495|491495|493454|493478|493929|494020|496487|511037|513291|521876|522077|522079|522085|522249|522283|522354|522361|522449|522628|522782|522783|522784|522801|544113|544119|544127|544128|544130|544131|544135|544138|544146|544148|544150|544151|544156|544159|544164|544167|544173|544174|544176|544178|544180|544189|544191|544193|544198|544209|544211|544215|544216|544218|544220|544223|544223|544371|544378|544383|544388|544389|544397|544405|544407|544408|544417|544419|544428|544429|544431|544432|544436|544437|544438|544439|544440|544444|544445|544446|544451|544460|544463|544465|544466|544468|544471|544474|544476|544477|544480|544482|544485|544486|544488|544489|544490|544491|544492|544493|544494|544495|544495|544496|544498|544500|544503|544504|544507|544509|544510|544511|544513|544513|544515|544516|544517|544518|544518|544519|544520|544522|544523|544524|544525|544527|544530|544530|544531|544533|544535|544536|544538|544539|544543|544544|544546|544548|544550|544551|544553|544554|544556|544558|544560|544563|544569|544571|544573|544582|544585|544601|544606|544607|544609|544618|544622|549456|549459|551270|561027|561141|561226|561228|561234|561235|561237|561239|561242|561281|561285|561292|561300|561301|561307|561308|561314|563836|563969|563972|563973|563976|563980|563982|566042|566332|581269|584341|586642|587329|587967|589641|589707|589709|589784|609647|609651|609655|610293|610294|610295|610296|610297|610298|610299|610300|610301|610302|610303|610304|610305|610306|610307|610308|610309|610310|610311|610312|610313|610314|610315|610316|610317|610318|610319|610320|610320|610321|610322|610323|610324|610327|610328|610329|610330|610331|610332|610333|610334|610335|610336|610337|610338|610339|610340|610341|610342|610342|610343|610344|610345|610346|610347|610348|610349|610349|610350|610351|610352|610353|610354|610355|610356|610357|610358|610359|610360|610361|610362|610363|610364|610365|611073|611301|612279|612280|614543|621226|621227|621228|621229|621232|621235|621241|621246|621758|621759|621765|621888|622700|622701|622702|622703|622704|622705|622706|622743|622744|622745|622746|622747|622748|622749|622750|622751|622752|622753|622754|622756|622757|622758|625800|625986|635537|635538|635539|635540|635541|635542|635543|635544|635545|635546|635547|635548|635549|635550|635551|635552|635553|635554|635555|635556|635557|635558|635559|635560|635561|635562|635563|635564|651559|651564|651602|651700|651752|677034|681849|681850|681851|681852|681853|681854|683849|683850|685208|686965|686970|686971|686972|686973|686974|689853|689854|692112|692114|692117|692118|692119|692120|692121|692122|695338|695339|695341|695342|699773|699775|710727|710728|722265|750366|777612|782748|789471|789477|789477|790684|790685|790686|790687|790688|790689|790690|792573|799473|799475|799476|799488|799489|801646|801647|801648|801648|801649|804883|806291|806292|806293|806294|806295|806296|806296|806297|806298|806299|806300|806301|806302|806303|806304|806305|806306|806307|806308|806309|806310|806311|806312|806313|806314|806315|806316|806317|806318|806319|806320|806322|806323|806324|806325|806326|806327|806328|806329|806330|806331|806332|806336|806338|806340|806343|806344|806345|806346|806348|806349|806350|806351|806352|806353|806354|806355|806356|806359|806360|806361|806362|806363|806364|806365|806422|808844|808847|808856|808860|808862|808866|808870|808871|815364|815365|816411|819784|819785|819786|819787|819788|819789|819790|819791|819794|819795|819796|819797|819798|819799|819800|819801|819802|819803|819804|819805|832869|832870|832871|832872|832873|832874|832875|832876|832877|832878|832879|832880|832881|832882|832883|832884|832885|832886|832887|832888|832889|832890|832891|832892|832893|832894|832895|832896|832897|832898|832899|832900|832901|832902|832903|851127|851130|851616|858449|859578|897327|905030|905916|905917|905918|906318|916981|916983|916986|916992|921211|921212|924612|924613|924614|924615|924616|924617|924618|924619|924620|924621|933606|933607|933608|933609|933610|940057|945348|945349|945350|945351|954987|954988|954989|954990|954991|954992|954993|954994|954995|954996|954997|954998|954999|955000|955001|959826|962157|962158|962159|962160|962190|962191|965216|965217|965218|969157|969158|970069|970155|971579|971981|971982|971983|971984|971985|971986|971987|971988|971989|971990|971991|971992|971993|971994|971995|971996|971997|971998|971999|972000|972001|972002|975790|978386|978387|978388|978389|978390|978391|978392|978393|978394|978395|978396|978397|980925|983963", "text": "Cystic fibrosis" }, { - "baseId": "15053", + "upstreamId": "15053", "text": "HFE INTRONIC POLYMORPHISM" }, { - "baseId": "15054|15055", + "upstreamId": "15054|15055", "text": "HFE POLYMORPHISM" }, { - "baseId": "15059|15060|15061|15062|76527|76527|76528|76529|76531|76532|99368|99368|177078|178154|178155|178155|192629|192629|192964|192964|195918|195918|206935|206935|206937|250472|265346|265346|268034|268034|270910|271977|272560|272806|272806|273025|283724|283727|283728|283734|283736|283737|283738|283749|283751|283752|283757|283759|283764|283770|283771|283776|283778|283779|283780|283785|283796|283796|283799|283799|283805|283805|283810|283820|283823|283824|283829|283830|284401|284404|284407|284414|284419|284430|284431|284432|284437|284437|284438|284448|284457|284458|284459|284461|284463|284463|284471|284471|286403|286415|286416|286421|286422|286439|286446|286447|286448|286450|286451|286452|286470|286472|286472|286474|286475|286476|286478|286481|286484|286484|286777|286778|286779|286781|286786|286793|286794|286810|286816|286828|286841|286842|286855|286857|286857|286858|286865|286866|286876|286878|286881|286881|425298|427983|427983|431459|431460|434040|434042|434042|434044|434045|450229|450242|450242|450249|450362|450490|481529|481532|488635|488637|490556|517497|557806|557810|557857|559023|559522|559525|629268|629274|629274|629275|697232|697236|719510|730096|747156|762776|825542|825545|825548|825553|883131|883132|883133|883134|883135|883136|883137|883138|883139|883140|883141|883142|883143|883144|883145|883146|883147|883148|883149|883150|883151|883152|883153|883154|883155|883156|883157|883158|883159|883160|883161|883162|883163|883164|883165|883166|883167|883168|883169|883170|883171|883172|883173|883174|883175|883176|883177|883178|887229|887230|887231|887232|922506|931069|952874|959619", + "upstreamId": "15059|15060|15061|15062|76527|76527|76528|76529|76531|76532|99368|99368|177078|178154|178155|178155|192629|192629|192964|192964|195918|195918|206935|206935|206937|250472|265346|265346|268034|268034|270910|271977|272560|272806|272806|273025|283724|283727|283728|283734|283736|283737|283738|283749|283751|283752|283757|283759|283764|283770|283771|283776|283778|283779|283780|283785|283796|283796|283799|283799|283805|283805|283810|283820|283823|283824|283829|283830|284401|284404|284407|284414|284419|284430|284431|284432|284437|284437|284438|284448|284457|284458|284459|284461|284463|284463|284471|284471|286403|286415|286416|286421|286422|286439|286446|286447|286448|286450|286451|286452|286470|286472|286472|286474|286475|286476|286478|286481|286484|286484|286777|286778|286779|286781|286786|286793|286794|286810|286816|286828|286841|286842|286855|286857|286857|286858|286865|286866|286876|286878|286881|286881|425298|427983|427983|431459|431460|434040|434042|434042|434044|434045|450229|450242|450242|450249|450362|450490|481529|481532|488635|488637|490556|517497|557806|557810|557857|559023|559522|559525|629268|629274|629274|629275|697232|697236|719510|730096|747156|762776|825542|825545|825548|825553|883131|883132|883133|883134|883135|883136|883137|883138|883139|883140|883141|883142|883143|883144|883145|883146|883147|883148|883149|883150|883151|883152|883153|883154|883155|883156|883157|883158|883159|883160|883161|883162|883163|883164|883165|883166|883167|883168|883169|883170|883171|883172|883173|883174|883175|883176|883177|883178|887229|887230|887231|887232|922506|931069|952874|959619", "text": "Cranioectodermal dysplasia 2" }, { - "baseId": "15063|15064|15065|15066|133702|133703|133704|152958|152959|152960|244168|260803|267423|335045|335048|335051|335060|335067|335074|335075|344830|344832|344834|344839|344840|344843|344846|344851|349775|349778|349781|349782|349784|350785|350788|350789|350792|350793|350796|350797|353583|377969|424226|446212|509045|535709|848258|885932|885933|885934|885935|885936|885937|885938|885939|885940|885941|885942|885943|885944|885945|885946|887436|887437", + "upstreamId": "15063|15064|15065|15066|133702|133703|133704|152958|152959|152960|244168|260803|267423|335045|335048|335051|335060|335067|335074|335075|344830|344832|344834|344839|344840|344843|344846|344851|349775|349778|349781|349782|349784|350785|350788|350789|350792|350793|350796|350797|353583|377969|424226|446212|509045|535709|848258|885932|885933|885934|885935|885936|885937|885938|885939|885940|885941|885942|885943|885944|885945|885946|887436|887437", "text": "Polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, and cataract" }, { - "baseId": "15067|177212|884608|918769", + "upstreamId": "15067|177212|884608|918769", "text": "Retinitis pigmentosa 58" }, { - "baseId": "15067|76616|101480|105678|105683|105694|105695|105697|193413|195456|252354|256338|276556|276557|276559|276574|277045|285839|285845|285847|286597|286598|286599|286605|286612|286620|288382|288828|288829|288835|288837|288845|288848|288849|288851|289235|289236|289240|289247|289918|291381|293005|293389|293396|293404|293405|300123|300126|300134|300137|300141|300173|302858|302861|302865|302867|302869|302871|307243|307263|307275|307276|307289|307361|307363|307369|307471|307480|307508|307515|307521|307522|307578|308121|308122|308139|309406|310951|312529|314772|314795|318344|318809|318838|318854|320386|321090|327227|329401|329410|329414|329421|329440|329441|329442|329443|329444|329445|329448|329452|329455|333926|333959|334250|334252|337254|337259|339390|339395|339690|339706|339710|339716|339719|339724|339730|339732|339733|339736|339740|339742|339743|343491|343885|343913|344187|344188|344216|345436|345449|345454|345456|345458|345460|345465|345466|346116|346800|346801|346803|346805|346806|346812|346815|346816|349196|349200|349209|350128|350359|351471|351490|353450|353451|353520|353771|353775|353806|353840|620083", + "upstreamId": "15067|76616|101480|105678|105683|105694|105695|105697|193413|195456|252354|256338|276556|276557|276559|276574|277045|285839|285845|285847|286597|286598|286599|286605|286612|286620|288382|288828|288829|288835|288837|288845|288848|288849|288851|289235|289236|289240|289247|289918|291381|293005|293389|293396|293404|293405|300123|300126|300134|300137|300141|300173|302858|302861|302865|302867|302869|302871|307243|307263|307275|307276|307289|307361|307363|307369|307471|307480|307508|307515|307521|307522|307578|308121|308122|308139|309406|310951|312529|314772|314795|318344|318809|318838|318854|320386|321090|327227|329401|329410|329414|329421|329440|329441|329442|329443|329444|329445|329448|329452|329455|333926|333959|334250|334252|337254|337259|339390|339395|339690|339706|339710|339716|339719|339724|339730|339732|339733|339736|339740|339742|339743|343491|343885|343913|344187|344188|344216|345436|345449|345454|345456|345458|345460|345465|345466|346116|346800|346801|346803|346805|346806|346812|346815|346816|349196|349200|349209|350128|350359|351471|351490|353450|353451|353520|353771|353775|353806|353840|620083", "text": "Retinitis Pigmentosa, Dominant" }, { - "baseId": "15068|15069|15070|15071|15072|15073|200652|200653|200654|200655|200656|200657|200658|200659|200660|200661|200662|200663|200664|200665|200666|200667|200668|200669|200670|200671|200672|200673|200674|200675|200676|200677|200678|200679|200680|200681|200682|200683|200684|200685|200686|311815|311816|311822|311830|311833|311834|311841|311843|311845|317422|317423|317430|317432|317439|317445|317446|317447|317448|317450|317453|317454|323464|323485|323488|324086|324087|324091|324101|324105|324106|324129|324131|324134|361418|384488|513085|513086|545322|545324|545327|545330|545331|545663|545666|545672|545673|545674|545675|545677|545679|545680|545681|545956|584999|613512|620826|737669|737671|752359|752360|768089|768091|768092|783790|783791|783794|837569|866646|866647|866648|866649|866650|866651|866652|866653|866654|866655|866656|866657|866658|866659|866660|866661|866662|866663|866664|866665|866666|866667|866668|866669|866670|866671|866672|866673|868546|978810|978811|978812|978813|978814|978815|978816|978817|978818|978819|978820", + "upstreamId": "15068|15069|15070|15071|15072|15073|200652|200653|200654|200655|200656|200657|200658|200659|200660|200661|200662|200663|200664|200665|200666|200667|200668|200669|200670|200671|200672|200673|200674|200675|200676|200677|200678|200679|200680|200681|200682|200683|200684|200685|200686|311815|311816|311822|311830|311833|311834|311841|311843|311845|317422|317423|317430|317432|317439|317445|317446|317447|317448|317450|317453|317454|323464|323485|323488|324086|324087|324091|324101|324105|324106|324129|324131|324134|361418|384488|513085|513086|545322|545324|545327|545330|545331|545663|545666|545672|545673|545674|545675|545677|545679|545680|545681|545956|584999|613512|620826|737669|737671|752359|752360|768089|768091|768092|783790|783791|783794|837569|866646|866647|866648|866649|866650|866651|866652|866653|866654|866655|866656|866657|866658|866659|866660|866661|866662|866663|866664|866665|866666|866667|866668|866669|866670|866671|866672|866673|868546|978810|978811|978812|978813|978814|978815|978816|978817|978818|978819|978820", "text": "Primary hyperoxaluria, type III" }, { - "baseId": "15074|15075|15076|15077|15078|102110|102111|176952|286942|286944|537353|542144|542196|542200|542299|719931|719932|719934|733534|747733|747734|763375|781417|799305|816401|826873|826883|826884|826888|885305|918778|931539|953159|953161|953163|977724|977725|977726|977727|977728|977729|977730|977731|977732|977733|977734|977735|977736|977737|977738", + "upstreamId": "15074|15075|15076|15077|15078|102110|102111|176952|286942|286944|537353|542144|542196|542200|542299|719931|719932|719934|733534|747733|747734|763375|781417|799305|816401|826873|826883|826884|826888|885305|918778|931539|953159|953161|953163|977724|977725|977726|977727|977728|977729|977730|977731|977732|977733|977734|977735|977736|977737|977738", "text": "Retinitis pigmentosa 28" }, { - "baseId": "15074|15075|15076|15077|15198|15215|15438|15577|16007|16048|16189|16190|16271|16367|16372|16376|16378|16869|16870|17085|17086|17089|17094|17100|17165|17232|17233|17390|17392|17394|17395|17396|17397|17398|17403|17569|17767|17770|17776|17778|17779|17783|17787|17789|18391|18394|18395|18396|18595|19010|19207|19399|19434|19438|19609|19611|19617|19622|19955|19978|20121|20180|20262|20264|20348|20440|20442|20569|20571|20572|20604|20648|20649|20769|20771|20772|20775|20778|20879|21004|21005|21266|21267|22397|22457|22460|22461|22555|22558|22918|22919|22921|22923|22927|22931|22933|22937|22938|22939|22940|22943|22946|22951|22967|23111|24189|24191|24394|24396|24514|24515|24516|24517|24518|24521|24925|24926|24927|24934|24935|24941|24949|24950|25585|25590|26191|26654|26889|27182|27186|28052|28053|28055|28057|28061|28066|28067|28072|28074|28075|28077|28082|28089|28140|28142|28154|28203|28204|28206|28212|28216|28218|28222|31971|32422|32533|38829|39174|39532|39679|39717|39735|39763|39789|39892|40161|40342|44417|45727|45795|45840|45865|47865|47870|47877|47881|48109|48213|48409|50332|52305|52310|52376|52378|52388|52400|52406|52440|52445|52452|52468|52483|52495|52515|55081|55440|55444|55481|57307|57504|57509|57514|57516|57517|57518|57537|57550|57552|57554|57557|57559|57562|57570|57571|57578|57604|57633|57643|57651|57653|57661|57666|57673|57682|57697|57706|57708|57716|57721|57726|57754|57759|57763|57766|57773|57777|57788|57790|57796|70917|70923|71368|71378|76340|78967|84346|84447|84873|96865|97580|98674|98764|98772|98773|98774|98776|98777|98778|99525|99526|99608|102126|102394|102552|102558|102559|102956|103519|104456|104468|104469|104486|104556|104561|104570|104580|104582|104588|104589|104601|104603|104617|104619|104622|104629|104661|104662|104673|104674|104677|104679|104702|104705|104715|104720|104725|104767|104789|104792|104811|104823|104833|104836|104857|104859|104868|104869|104880|104885|104886|104889|104890|104904|104905|104914|104915|104916|104918|104920|104923|104925|104933|104935|104942|104952|104954|104959|104962|104972|104973|104976|104984|104987|104990|104991|104992|104996|104997|105000|105001|105002|105003|105006|105012|105016|105024|105025|105030|105032|105033|105051|105056|105061|105063|105064|105067|105069|105071|105074|105076|105081|105100|105101|105104|105106|105107|105108|105113|105120|105125|105127|105128|105134|105138|105144|105149|105152|105155|105156|105167|105172|105173|105177|105179|105181|105182|105189|105192|105193|105194|105197|105200|105210|105212|105214|105218|105219|105220|105221|105227|105229|105230|105232|105236|105238|105239|105240|105244|105248|105256|105259|105260|105261|105262|105270|105283|105287|105292|105308|105310|105314|105317|105319|105320|105321|105323|105326|105327|105328|105336|105337|105341|105346|105349|105352|105359|105360|105367|105370|105376|105387|105389|105394|105402|105405|105406|105487|105554|105555|105584|105595|105606|105610|105614|105624|105631|105638|105657|105658|105659|105662|105671|105679|105730|105777|105786|105802|106454|106487|131774|133696|133698|139942|141929|143162|152787|152788|152791|152794|152826|152830|152833|152848|152852|152861|152862|152865|152869|152881|152882|152885|152888|152890|152891|152892|152897|152900|166081|166167|171851|172377|172390|172511|172517|172522|172743|172756|172765|172882|172911|172912|172917|172925|174461|174546|174811|174817|174972|175265|175283|175522|176881|177110|177241|177287|177340|177375|177450|177451|177917|177924|178185|181395|186675|186676|186765|186766|186767|187074|187108|187115|188197|188783|188865|188865|188867|189011|189092|189144|190033|190034|190035|190036|190037|190038|190039|190264|190649|190743|190883|190903|191153|191491|191520|191521|191931|191956|192398|192422|192536|192826|192827|192828|192997|193097|193099|193260|193443|194094|194608|194671|194870|194945|195039|195093|195353|195479|195502|195505|195575|195870|195880|199800|200711|200983|203260|204391|205143|205152|205153|205376|205377|205604|205725|205726|207022|207999|208002|209342|211934|213655|213666|214067|214068|214252|214329|214334|214336|214454|226404|226519|226520|226522|226523|226527|226528|226529|226530|226532|226535|226536|226933|227007|227270|227285|227508|227509|228297|228304|228307|228312|228320|228337|228349|229178|229899|237598|237651|237652|237653|237655|237659|237663|237665|237670|237680|237685|237688|237689|237692|237701|237967|237968|237969|237970|237971|237972|237973|237974|237975|237976|237977|237978|237979|237980|237981|237982|237983|237984|237985|237986|237987|237988|237989|237990|237991|237992|237993|237994|237995|237996|237997|237998|237999|238000|238001|238002|238003|238004|238005|238006|238007|238008|238009|238010|238011|238012|238013|238014|238015|238016|238017|238018|238019|238020|238021|238022|238023|238024|238025|238026|238027|238028|238029|238030|238031|238032|238033|238034|238035|238036|238037|238038|238039|238040|238041|238042|238043|238044|238045|238046|238047|238048|238049|238050|238051|238052|238053|238054|238055|238056|238057|238058|238059|238060|238061|238062|238063|238064|238065|238066|238067|238068|238069|238070|238071|238072|238073|238074|238075|238076|238077|238078|238079|238080|238081|238082|238083|238084|238085|238086|238087|238088|238089|238090|238091|238092|238093|238094|238095|238096|238097|238098|238099|238100|238101|259643|259652|259653|259677|259680|259684|259685|259747|259990|260776|260777|263977|264008|264132|264200|264426|264538|264814|265069|265072|265129|265131|265159|265400|265562|265833|265863|265965|266055|266784|267624|267810|268071|268269|268648|269446|269500|270152|270341|270925|271072|271073|271201|271485|271531|272578|273103|273469|273547|273549|273550|274139|274143|274481|279452|280288|280985|281340|281988|282449|283282|283437|283438|283762|288384|289458|292542|292546|292547|292555|292556|292558|292592|292599|293946|293947|293963|293974|293975|296281|296972|297322|297324|297327|297333|297335|297336|297342|297351|297352|297355|297357|297361|297362|297385|297386|297388|297407|298430|303808|303823|303833|307602|308027|308510|308531|312414|320737|320738|320744|322426|322855|323481|324536|326038|329449|329581|329582|329584|332983|336193|336200|336203|336207|338097|338103|338104|338106|340774|346815|353303|357073|357865|358035|358036|359227|359230|359259|359276|359278|359328|359473|359518|359697|360464|360557|360815|360816|360901|361067|361069|361560|361654|361926|361927|361928|361930|361931|361932|361934|361935|361936|361937|361938|361939|361940|364061|364628|364742|364771|364867|365227|365228|365246|365251|365252|365431|365433|365449|365528|368864|368871|389198|393234|398446|399055|400451|404810|405033|405046|405251|405254|405257|405264|405265|406402|406455|406457|406869|406889|407393|408478|409585|411619|413265|413266|413443|413527|413666|413693|413718|413825|415136|415139|415648|417088|417095|417103|418815|418819|420007|420016|421203|421556|421558|426028|428272|431559|431560|431562|431564|431568|431569|431574|431575|431589|431592|431600|431601|431602|431605|431606|431611|431613|431617|431618|431620|431622|431624|431628|431629|431631|431632|431633|431634|431636|431641|431643|431644|431647|431650|431651|431652|431655|431658|431661|431663|431669|431670|431671|431675|431678|431680|431681|431685|431690|431692|431694|431695|431698|431705|431707|431710|431711|431712|431713|431714|431718|431721|431722|431723|431731|431732|431736|431738|431740|431741|431743|431749|431750|431751|431754|431757|431785|431786|431787|431789|431790|431791|431795|431798|431801|431803|431807|431810|431811|431812|431813|431814|431815|431816|431817|431819|431821|431836|431838|431849|431853|431861|431864|431866|431873|431874|434030|437843|438281|438312|438769|439008|439508|439509|439510|439510|439511|439755|440058|442716|443322|443965|444290|444424|446188|454655|481602|482086|486006|486008|486434|486824|486831|488629|488680|488682|488710|488838|488890|489150|489360|489436|489730|489964|490192|491840|491866|492643|492739|492849|493727|494074|496608|496642|496836|496894|497818|498604|508746|511219|511932|511933|511946|512332|512912|513965|514039|514515|514535|514574|514650|530053|536575|537271|538935|539191|540758|540775|540780|540806|540815|540821|540825|540827|540829|540830|540832|540841|540843|540847|540850|540852|540857|540859|540873|540876|540887|540891|540903|540909|540917|540920|540924|540925|540930|540933|540940|540961|540964|540966|540968|540970|540979|540994|540998|541005|541017|541025|541036|541045|541060|541062|541065|541074|541079|541086|541088|541090|541092|541097|541099|541105|541107|541115|541791|542144|542420|542490|542576|542663|542799|542833|543287|543353|543371|543897|543921|544194|545915|546746|547264|547531|547755|547812|548013|548065|550245|551522|551527|551528|551537|551555|551560|551570|551579|551583|551587|551588|551594|551595|553585|559279|567933|568186|569886|576221|582791|584904|585299|587734|588585|588848|589204|590329|609656|610617|611509|611734|611983|612156|612157|612249|612725|612757|613154|619983|620017|620019|620042|620098|620162|620172|620238|620327|620496|620829|622989|622993|623803|623811|623815|623825|623826|623839|623851|623877|623884|623913|623921|623925|623926|623927|623936|623956|623957|623958|623966|623975|623989|624010|624012|624017|624032|624041|628253|631945|633262|633282|633330|633426|635123|640466|642643|651677|654181|654191|654195|672057|677405|677413|683378|702961|703510|707593|720297|721040|726443|731766|735726|736713|736717|744276|746111|746113|759483|761008|761596|765778|780508|787896|788158|788758|789916|789921|789924|789930|790456|790624|790645|791285|791628|791958|792434|792458|793004|794257|794454|794567|794577|794732|795553|795890|797487|798034|799313|799450|800075|800419|800439|800442|800451|800458|800462|800511|800516|800537|800571|800601|800637|800685|800686|800988|801103|801104|801277|801332|801354|801358|801389|801400|801441|801443|801447|801477|801491|802124|802190|805198|805505|806271|818174|822120|823126|823132|823330|823339|823346|823349|823393|823397|823415|823443|824261|824447|824448|824452|824471|824474|824482|824498|824501|824507|824513|824514|824517|824565|824703|824710|824713|825444|825448|825459|825975|826154|826160|826191|826196|826233|826267|826871|827159|827192|827196|827251|827255|827271|827534|827541|828939|829184|829448|829449|829457|830517|830915|831277|831586|831594|831599|831941|831954|831961|832168|832184|832230|832247|832253|832315|833581|834874|834889|835083|835389|836893|837361|837486|838601|839065|839066|839747|840348|841170|841171|841332|841688|841689|843192|844048|847556|847785|847788|848326|848879|849300|849871|850066|850136|850346|850787|850822|850955|850974|851082|851164|851216|851251|851273|851367|851848|852268|852290|852295|852406|852527|852626|855850|855851|855852|855853|855854|855855|855856|855857|855858|855859|855860|855861|855862|855863|855864|855865|855866|855867|855868|855869|855870|855871|855872|855873|855874|855875|855876|855877|855878|855879|855880|855881|855882|855883|855884|855885|855886|855887|855888|855889|855890|855891|855892|855893|855894|855895|855896|855897|855898|855899|855900|855901|855902|855903|855904|855905|855906|855907|855908|855909|855910|855911|855912|855913|855914|855915|855916|855917|855918|855919|855920|855921|855922|855923|855924|855925|855926|855927|855928|855929|855930|855931|855932|855933|855934|855935|855936|855937|855938|855939|855940|855941|855942|855943|855944|855945|855946|855947|855948|855949|855950|855951|855952|855953|855954|855955|855956|855957|855958|855959|855960|855961|855962|855963|855964|855965|855966|855967|855968|855969|855970|855971|855972|855973|855974|855975|855976|855977|855978|855979|855980|855981|855982|855983|855984|855985|855986|855987|855988|855989|855990|855991|855992|855993|855994|855995|855996|855997|855998|855999|856000|856001|856002|856003|856004|856005|856006|856007|856008|856009|856010|856011|856012|856013|856014|856015|856016|856017|856018|856019|856020|856021|856022|856023|856024|856025|856026|856027|856028|856029|856030|856031|856032|856033|856034|856035|856036|856037|856038|856039|856040|856041|856042|856043|856044|856045|856046|856047|856048|856049|856050|856051|856052|856053|856054|856055|856056|856057|856058|856059|856060|856061|856062|856063|856064|856065|856066|856067|856068|856069|856070|856071|856072|856073|856074|856075|856076|856077|856078|856079|856080|856081|856082|856083|856084|856085|856086|856087|856088|856089|856090|856091|856092|856093|856094|856095|856096|856097|856098|856099|856100|856101|856102|856103|856104|856105|856106|856107|856108|856109|856110|856111|856112|856113|856114|856115|856116|856117|856118|856119|856120|856121|856122|856123|856124|856125|856126|856127|856128|856129|856130|856131|856132|856133|856134|856135|856136|856137|856138|856139|856140|856141|856142|856143|856144|856145|856146|856147|856148|856149|856150|856151|856152|856153|856154|856155|856156|856157|856158|856159|856160|856161|856162|856163|856164|856165|856166|856167|856168|856169|856170|856171|856172|856173|856174|856175|856176|856177|856178|856179|856180|856181|856182|856183|856184|856185|856186|856187|856188|856189|856190|856191|856192|856193|856194|856195|856196|856197|856198|856199|856200|856201|856202|856203|856204|856205|856206|856207|856208|856209|856210|856211|856212|856213|856214|856215|856216|856217|856218|856219|856220|856221|856222|856223|856224|856225|856226|856227|856228|856229|856230|856231|856232|856233|856234|856235|856236|856237|856238|856239|856240|856241|856242|856243|856244|856245|856246|856247|856248|856249|856250|856251|856252|856253|856254|856255|856256|856257|856258|856259|856260|856261|856262|856263|856264|856265|856266|856267|856268|856269|856270|856271|856272|856273|856274|856275|856276|856277|856278|856279|856280|856281|856282|856283|856284|856285|856286|856287|856288|856289|856290|856291|856292|856293|856294|856295|856296|856297|856298|856299|856300|856301|856302|856303|856304|856305|856306|856307|856308|856309|856310|856311|856312|856313|856314|856315|856316|856317|856318|856319|856320|856321|856322|856323|856324|856325|856326|856327|856328|856329|856330|856331|856332|856333|856334|856335|856336|856337|856338|856339|856340|856341|856342|856343|856344|856345|856346|856347|856348|856349|856350|856351|856352|856353|856354|856355|856356|856357|856358|856359|856360|856361|856362|856363|856364|856365|856366|856367|856368|856369|856370|856371|856372|856373|856374|856375|856376|856377|856378|856379|856380|856381|856382|856383|856384|856385|856386|856387|856388|856389|856390|856391|856392|856393|856394|856395|856396|856397|856398|856399|856400|856401|856402|856403|856404|856405|856406|856407|856408|856409|856410|856411|856412|856413|856414|856415|856416|856417|856418|856419|856420|856421|856422|856423|856424|856425|856426|856427|856428|856429|856430|856431|856432|856433|856434|856435|856436|856437|856438|856439|856440|856441|856442|856443|856444|856445|856446|856447|856448|856449|856450|856451|856452|856453|856454|856455|856456|856457|856458|856459|856460|856461|856462|856463|856464|856465|856466|856467|856468|856469|856470|856471|856472|856473|856474|856475|856476|856477|856478|856479|856480|856481|856482|856483|856484|856485|856486|856487|856488|856489|856490|856491|856492|856493|856494|856495|856496|856497|856498|856499|856500|856501|856502|856503|856504|856505|856506|856507|856508|856509|856510|856511|856512|856513|856514|856515|856516|856517|856518|856519|856520|856521|856522|856523|856524|856525|856526|856527|856528|856529|856530|856531|856532|856533|856534|856535|856536|856537|856538|856539|856540|856541|856542|856543|856544|856545|856546|856547|856548|856549|856550|856551|856552|856553|856554|856555|856556|856557|856558|856559|856560|856561|856562|856563|856564|856565|856566|856567|856568|856569|856570|856571|856572|856573|856574|856575|856576|856577|856578|856579|856580|856581|856582|856583|856584|856585|856586|856587|856588|856589|856590|856591|856592|856593|856594|856595|856596|856597|856598|856599|856600|856601|856602|856603|856604|856605|856606|856607|856608|856609|856610|856611|856612|856613|856614|856615|856616|856617|856618|856619|856620|856621|856622|856623|856624|856625|856626|856627|856628|856629|856630|856631|856632|856633|856634|856635|856636|856637|856638|856639|856640|856641|856642|856643|856644|856645|856646|856647|856648|856649|856650|856651|856652|856653|856654|856655|856656|856657|856658|856659|856660|856661|856662|856663|856664|856665|856666|856667|856668|856669|856670|856671|856672|856673|856674|856675|856676|856677|856678|856679|856680|856681|856682|856683|856684|856685|856686|856687|856688|856689|856690|856691|856692|856693|856694|856695|856696|856697|856698|856699|856700|856701|856702|856703|856704|856705|856706|856707|856708|856709|856710|856711|856712|856713|856714|856715|856716|856717|856718|856719|856720|856721|856722|856723|856724|856725|856726|856727|856728|856729|856730|856731|856732|856733|856734|856735|856736|856737|856738|856739|856740|856741|856742|856743|856744|856745|856746|856747|856748|856749|856750|856751|856752|856753|856754|856755|856756|856757|856758|856759|856760|856761|856762|856763|856764|856765|856766|856767|856768|856769|856770|856771|856772|856773|856774|856775|856776|856777|856778|856779|856780|856781|856782|856783|856784|856785|856786|856787|856788|856789|856790|856791|856792|856793|856794|856795|856796|856797|856798|856799|856800|856801|856802|856803|856804|856805|856806|856807|856808|856809|856810|856811|856812|856813|856814|856815|856816|856817|856818|856819|856820|856821|856822|856823|856824|856825|856826|856827|856828|856829|856830|856831|856832|856833|856834|856835|856836|856837|856838|856839|856840|856841|856842|856843|856844|856845|856846|856847|856848|856849|856850|856851|856852|856853|856854|856855|856856|856857|856858|856859|856860|856861|856862|856863|856864|856865|856866|856867|856868|856869|856870|856871|856872|856873|856874|856875|856876|856877|856878|856879|856880|856881|856882|856883|856884|856885|856886|856887|856888|856889|856890|856891|856892|856893|856894|856895|856896|856897|856898|856899|856900|856901|856902|856903|856904|856905|856906|856907|856908|856909|856910|856911|856912|856913|856914|856915|856916|856917|856918|856919|856920|856921|856922|856923|856924|856925|856926|856927|856928|856929|856930|856931|856932|856933|856934|856935|856936|856937|856938|856939|856940|856941|856942|856943|856944|856945|856946|856947|856948|856949|856950|856951|856952|856953|856954|856955|856956|856957|856958|856959|856960|856961|856962|856963|856964|856965|856966|856967|856968|856969|856970|856971|856972|856973|856974|856975|856976|856977|856978|856979|856980|856981|856983|856984|856985|856986|856987|856988|856989|856990|856991|856992|856993|856994|856995|856996|856997|856998|856999|857000|857001|857002|857003|857004|857005|857006|857007|857008|857009|857010|857011|857013|857014|857015|857016|857017|857018|857019|857020|857021|857022|857023|857025|857026|857027|857028|857029|857030|857031|857032|857033|857034|857035|857036|857037|857038|857039|857040|857041|857042|857043|857044|857045|857046|857047|857048|857049|857050|857051|857052|857053|857054|857055|857056|857057|857058|857059|857060|857061|857062|857063|857064|857065|857066|857067|857068|857069|857070|857071|857072|857073|857074|857075|857076|857077|857078|857079|857080|857081|857082|857083|857084|857085|857086|857087|857088|857089|857090|857091|857092|857093|857094|857095|857096|857097|857098|857099|857100|857101|857102|857103|857104|857105|857106|857107|857108|857109|857110|857111|857112|857113|857114|857116|857117|857118|857119|857120|857121|857122|857123|857124|857125|857126|857127|857128|857129|857130|857131|857132|857133|857134|857135|857136|857137|857138|857139|857140|857141|857142|857143|857144|857145|857146|857147|857148|857149|857150|857151|857152|857153|857154|857155|857156|857157|857158|857159|857160|857161|857162|857163|857164|857165|857166|857167|857168|857169|857170|857171|857172|857173|857174|857175|857176|857177|857178|857179|857180|857181|857182|857183|857184|857185|857186|857187|857188|857189|857190|857191|857192|857193|857194|857195|857196|857197|857198|857199|857200|857201|857202|857203|857204|857205|857206|857207|857208|857209|857210|857211|857212|857213|857214|857215|857216|857218|857219|857220|857221|857222|857223|857224|857225|857226|857227|857228|857229|857230|857231|857232|857233|857234|857235|857236|857237|857238|857239|857240|857241|857242|857243|857244|857245|857246|857247|857248|857249|857250|857251|857252|857253|857254|857255|857256|857257|857258|857259|857260|857261|857262|857263|857264|857265|857266|857267|857268|857269|857270|857271|857272|857273|857274|857275|857276|857277|857278|857279|857280|857281|857282|857283|857284|857285|857286|857287|857288|857289|857290|857291|857292|857293|857294|857295|857296|857297|857298|857299|857300|857301|857302|857303|857304|857305|857306|857307|857308|857309|857310|857311|857312|857313|857314|857315|857316|857317|857318|857319|857320|857321|857322|857323|857324|976587", + "upstreamId": "15074|15075|15076|15077|15198|15215|15438|15577|16007|16048|16189|16190|16271|16367|16372|16376|16378|16869|16870|17085|17086|17089|17094|17100|17165|17232|17233|17390|17392|17394|17395|17396|17397|17398|17403|17569|17767|17770|17776|17778|17779|17783|17787|17789|18391|18394|18395|18396|18595|19010|19207|19399|19434|19438|19609|19611|19617|19622|19955|19978|20121|20180|20262|20264|20348|20440|20442|20569|20571|20572|20604|20648|20649|20769|20771|20772|20775|20778|20879|21004|21005|21266|21267|22397|22457|22460|22461|22555|22558|22918|22919|22921|22923|22927|22931|22933|22937|22938|22939|22940|22943|22946|22951|22967|23111|24189|24191|24394|24396|24514|24515|24516|24517|24518|24521|24925|24926|24927|24934|24935|24941|24949|24950|25585|25590|26191|26654|26889|27182|27186|28052|28053|28055|28057|28061|28066|28067|28072|28074|28075|28077|28082|28089|28140|28142|28154|28203|28204|28206|28212|28216|28218|28222|31971|32422|32533|38829|39174|39532|39679|39717|39735|39763|39789|39892|40161|40342|44417|45727|45795|45840|45865|47865|47870|47877|47881|48109|48213|48409|50332|52305|52310|52376|52378|52388|52400|52406|52440|52445|52452|52468|52483|52495|52515|55081|55440|55444|55481|57307|57504|57509|57514|57516|57517|57518|57537|57550|57552|57554|57557|57559|57562|57570|57571|57578|57604|57633|57643|57651|57653|57661|57666|57673|57682|57697|57706|57708|57716|57721|57726|57754|57759|57763|57766|57773|57777|57788|57790|57796|70917|70923|71368|71378|76340|78967|84346|84447|84873|96865|97580|98674|98764|98772|98773|98774|98776|98777|98778|99525|99526|99608|102126|102394|102552|102558|102559|102956|103519|104456|104468|104469|104486|104556|104561|104570|104580|104582|104588|104589|104601|104603|104617|104619|104622|104629|104661|104662|104673|104674|104677|104679|104702|104705|104715|104720|104725|104767|104789|104792|104811|104823|104833|104836|104857|104859|104868|104869|104880|104885|104886|104889|104890|104904|104905|104914|104915|104916|104918|104920|104923|104925|104933|104935|104942|104952|104954|104959|104962|104972|104973|104976|104984|104987|104990|104991|104992|104996|104997|105000|105001|105002|105003|105006|105012|105016|105024|105025|105030|105032|105033|105051|105056|105061|105063|105064|105067|105069|105071|105074|105076|105081|105100|105101|105104|105106|105107|105108|105113|105120|105125|105127|105128|105134|105138|105144|105149|105152|105155|105156|105167|105172|105173|105177|105179|105181|105182|105189|105192|105193|105194|105197|105200|105210|105212|105214|105218|105219|105220|105221|105227|105229|105230|105232|105236|105238|105239|105240|105244|105248|105256|105259|105260|105261|105262|105270|105283|105287|105292|105308|105310|105314|105317|105319|105320|105321|105323|105326|105327|105328|105336|105337|105341|105346|105349|105352|105359|105360|105367|105370|105376|105387|105389|105394|105402|105405|105406|105487|105554|105555|105584|105595|105606|105610|105614|105624|105631|105638|105657|105658|105659|105662|105671|105679|105730|105777|105786|105802|106454|106487|131774|133696|133698|139942|141929|143162|152787|152788|152791|152794|152826|152830|152833|152848|152852|152861|152862|152865|152869|152881|152882|152885|152888|152890|152891|152892|152897|152900|166081|166167|171851|172377|172390|172511|172517|172522|172743|172756|172765|172882|172911|172912|172917|172925|174461|174546|174811|174817|174972|175265|175283|175522|176881|177110|177241|177287|177340|177375|177450|177451|177917|177924|178185|181395|186675|186676|186765|186766|186767|187074|187108|187115|188197|188783|188865|188865|188867|189011|189092|189144|190033|190034|190035|190036|190037|190038|190039|190264|190649|190743|190883|190903|191153|191491|191520|191521|191931|191956|192398|192422|192536|192826|192827|192828|192997|193097|193099|193260|193443|194094|194608|194671|194870|194945|195039|195093|195353|195479|195502|195505|195575|195870|195880|199800|200711|200983|203260|204391|205143|205152|205153|205376|205377|205604|205725|205726|207022|207999|208002|209342|211934|213655|213666|214067|214068|214252|214329|214334|214336|214454|226404|226519|226520|226522|226523|226527|226528|226529|226530|226532|226535|226536|226933|227007|227270|227285|227508|227509|228297|228304|228307|228312|228320|228337|228349|229178|229899|237598|237651|237652|237653|237655|237659|237663|237665|237670|237680|237685|237688|237689|237692|237701|237967|237968|237969|237970|237971|237972|237973|237974|237975|237976|237977|237978|237979|237980|237981|237982|237983|237984|237985|237986|237987|237988|237989|237990|237991|237992|237993|237994|237995|237996|237997|237998|237999|238000|238001|238002|238003|238004|238005|238006|238007|238008|238009|238010|238011|238012|238013|238014|238015|238016|238017|238018|238019|238020|238021|238022|238023|238024|238025|238026|238027|238028|238029|238030|238031|238032|238033|238034|238035|238036|238037|238038|238039|238040|238041|238042|238043|238044|238045|238046|238047|238048|238049|238050|238051|238052|238053|238054|238055|238056|238057|238058|238059|238060|238061|238062|238063|238064|238065|238066|238067|238068|238069|238070|238071|238072|238073|238074|238075|238076|238077|238078|238079|238080|238081|238082|238083|238084|238085|238086|238087|238088|238089|238090|238091|238092|238093|238094|238095|238096|238097|238098|238099|238100|238101|259643|259652|259653|259677|259680|259684|259685|259747|259990|260776|260777|263977|264008|264132|264200|264426|264538|264814|265069|265072|265129|265131|265159|265400|265562|265833|265863|265965|266055|266784|267624|267810|268071|268269|268648|269446|269500|270152|270341|270925|271072|271073|271201|271485|271531|272578|273103|273469|273547|273549|273550|274139|274143|274481|279452|280288|280985|281340|281988|282449|283282|283437|283438|283762|288384|289458|292542|292546|292547|292555|292556|292558|292592|292599|293946|293947|293963|293974|293975|296281|296972|297322|297324|297327|297333|297335|297336|297342|297351|297352|297355|297357|297361|297362|297385|297386|297388|297407|298430|303808|303823|303833|307602|308027|308510|308531|312414|320737|320738|320744|322426|322855|323481|324536|326038|329449|329581|329582|329584|332983|336193|336200|336203|336207|338097|338103|338104|338106|340774|346815|353303|357073|357865|358035|358036|359227|359230|359259|359276|359278|359328|359473|359518|359697|360464|360557|360815|360816|360901|361067|361069|361560|361654|361926|361927|361928|361930|361931|361932|361934|361935|361936|361937|361938|361939|361940|364061|364628|364742|364771|364867|365227|365228|365246|365251|365252|365431|365433|365449|365528|368864|368871|389198|393234|398446|399055|400451|404810|405033|405046|405251|405254|405257|405264|405265|406402|406455|406457|406869|406889|407393|408478|409585|411619|413265|413266|413443|413527|413666|413693|413718|413825|415136|415139|415648|417088|417095|417103|418815|418819|420007|420016|421203|421556|421558|426028|428272|431559|431560|431562|431564|431568|431569|431574|431575|431589|431592|431600|431601|431602|431605|431606|431611|431613|431617|431618|431620|431622|431624|431628|431629|431631|431632|431633|431634|431636|431641|431643|431644|431647|431650|431651|431652|431655|431658|431661|431663|431669|431670|431671|431675|431678|431680|431681|431685|431690|431692|431694|431695|431698|431705|431707|431710|431711|431712|431713|431714|431718|431721|431722|431723|431731|431732|431736|431738|431740|431741|431743|431749|431750|431751|431754|431757|431785|431786|431787|431789|431790|431791|431795|431798|431801|431803|431807|431810|431811|431812|431813|431814|431815|431816|431817|431819|431821|431836|431838|431849|431853|431861|431864|431866|431873|431874|434030|437843|438281|438312|438769|439008|439508|439509|439510|439510|439511|439755|440058|442716|443322|443965|444290|444424|446188|454655|481602|482086|486006|486008|486434|486824|486831|488629|488680|488682|488710|488838|488890|489150|489360|489436|489730|489964|490192|491840|491866|492643|492739|492849|493727|494074|496608|496642|496836|496894|497818|498604|508746|511219|511932|511933|511946|512332|512912|513965|514039|514515|514535|514574|514650|530053|536575|537271|538935|539191|540758|540775|540780|540806|540815|540821|540825|540827|540829|540830|540832|540841|540843|540847|540850|540852|540857|540859|540873|540876|540887|540891|540903|540909|540917|540920|540924|540925|540930|540933|540940|540961|540964|540966|540968|540970|540979|540994|540998|541005|541017|541025|541036|541045|541060|541062|541065|541074|541079|541086|541088|541090|541092|541097|541099|541105|541107|541115|541791|542144|542420|542490|542576|542663|542799|542833|543287|543353|543371|543897|543921|544194|545915|546746|547264|547531|547755|547812|548013|548065|550245|551522|551527|551528|551537|551555|551560|551570|551579|551583|551587|551588|551594|551595|553585|559279|567933|568186|569886|576221|582791|584904|585299|587734|588585|588848|589204|590329|609656|610617|611509|611734|611983|612156|612157|612249|612725|612757|613154|619983|620017|620019|620042|620098|620162|620172|620238|620327|620496|620829|622989|622993|623803|623811|623815|623825|623826|623839|623851|623877|623884|623913|623921|623925|623926|623927|623936|623956|623957|623958|623966|623975|623989|624010|624012|624017|624032|624041|628253|631945|633262|633282|633330|633426|635123|640466|642643|651677|654181|654191|654195|672057|677405|677413|683378|702961|703510|707593|720297|721040|726443|731766|735726|736713|736717|744276|746111|746113|759483|761008|761596|765778|780508|787896|788158|788758|789916|789921|789924|789930|790456|790624|790645|791285|791628|791958|792434|792458|793004|794257|794454|794567|794577|794732|795553|795890|797487|798034|799313|799450|800075|800419|800439|800442|800451|800458|800462|800511|800516|800537|800571|800601|800637|800685|800686|800988|801103|801104|801277|801332|801354|801358|801389|801400|801441|801443|801447|801477|801491|802124|802190|805198|805505|806271|818174|822120|823126|823132|823330|823339|823346|823349|823393|823397|823415|823443|824261|824447|824448|824452|824471|824474|824482|824498|824501|824507|824513|824514|824517|824565|824703|824710|824713|825444|825448|825459|825975|826154|826160|826191|826196|826233|826267|826871|827159|827192|827196|827251|827255|827271|827534|827541|828939|829184|829448|829449|829457|830517|830915|831277|831586|831594|831599|831941|831954|831961|832168|832184|832230|832247|832253|832315|833581|834874|834889|835083|835389|836893|837361|837486|838601|839065|839066|839747|840348|841170|841171|841332|841688|841689|843192|844048|847556|847785|847788|848326|848879|849300|849871|850066|850136|850346|850787|850822|850955|850974|851082|851164|851216|851251|851273|851367|851848|852268|852290|852295|852406|852527|852626|855850|855851|855852|855853|855854|855855|855856|855857|855858|855859|855860|855861|855862|855863|855864|855865|855866|855867|855868|855869|855870|855871|855872|855873|855874|855875|855876|855877|855878|855879|855880|855881|855882|855883|855884|855885|855886|855887|855888|855889|855890|855891|855892|855893|855894|855895|855896|855897|855898|855899|855900|855901|855902|855903|855904|855905|855906|855907|855908|855909|855910|855911|855912|855913|855914|855915|855916|855917|855918|855919|855920|855921|855922|855923|855924|855925|855926|855927|855928|855929|855930|855931|855932|855933|855934|855935|855936|855937|855938|855939|855940|855941|855942|855943|855944|855945|855946|855947|855948|855949|855950|855951|855952|855953|855954|855955|855956|855957|855958|855959|855960|855961|855962|855963|855964|855965|855966|855967|855968|855969|855970|855971|855972|855973|855974|855975|855976|855977|855978|855979|855980|855981|855982|855983|855984|855985|855986|855987|855988|855989|855990|855991|855992|855993|855994|855995|855996|855997|855998|855999|856000|856001|856002|856003|856004|856005|856006|856007|856008|856009|856010|856011|856012|856013|856014|856015|856016|856017|856018|856019|856020|856021|856022|856023|856024|856025|856026|856027|856028|856029|856030|856031|856032|856033|856034|856035|856036|856037|856038|856039|856040|856041|856042|856043|856044|856045|856046|856047|856048|856049|856050|856051|856052|856053|856054|856055|856056|856057|856058|856059|856060|856061|856062|856063|856064|856065|856066|856067|856068|856069|856070|856071|856072|856073|856074|856075|856076|856077|856078|856079|856080|856081|856082|856083|856084|856085|856086|856087|856088|856089|856090|856091|856092|856093|856094|856095|856096|856097|856098|856099|856100|856101|856102|856103|856104|856105|856106|856107|856108|856109|856110|856111|856112|856113|856114|856115|856116|856117|856118|856119|856120|856121|856122|856123|856124|856125|856126|856127|856128|856129|856130|856131|856132|856133|856134|856135|856136|856137|856138|856139|856140|856141|856142|856143|856144|856145|856146|856147|856148|856149|856150|856151|856152|856153|856154|856155|856156|856157|856158|856159|856160|856161|856162|856163|856164|856165|856166|856167|856168|856169|856170|856171|856172|856173|856174|856175|856176|856177|856178|856179|856180|856181|856182|856183|856184|856185|856186|856187|856188|856189|856190|856191|856192|856193|856194|856195|856196|856197|856198|856199|856200|856201|856202|856203|856204|856205|856206|856207|856208|856209|856210|856211|856212|856213|856214|856215|856216|856217|856218|856219|856220|856221|856222|856223|856224|856225|856226|856227|856228|856229|856230|856231|856232|856233|856234|856235|856236|856237|856238|856239|856240|856241|856242|856243|856244|856245|856246|856247|856248|856249|856250|856251|856252|856253|856254|856255|856256|856257|856258|856259|856260|856261|856262|856263|856264|856265|856266|856267|856268|856269|856270|856271|856272|856273|856274|856275|856276|856277|856278|856279|856280|856281|856282|856283|856284|856285|856286|856287|856288|856289|856290|856291|856292|856293|856294|856295|856296|856297|856298|856299|856300|856301|856302|856303|856304|856305|856306|856307|856308|856309|856310|856311|856312|856313|856314|856315|856316|856317|856318|856319|856320|856321|856322|856323|856324|856325|856326|856327|856328|856329|856330|856331|856332|856333|856334|856335|856336|856337|856338|856339|856340|856341|856342|856343|856344|856345|856346|856347|856348|856349|856350|856351|856352|856353|856354|856355|856356|856357|856358|856359|856360|856361|856362|856363|856364|856365|856366|856367|856368|856369|856370|856371|856372|856373|856374|856375|856376|856377|856378|856379|856380|856381|856382|856383|856384|856385|856386|856387|856388|856389|856390|856391|856392|856393|856394|856395|856396|856397|856398|856399|856400|856401|856402|856403|856404|856405|856406|856407|856408|856409|856410|856411|856412|856413|856414|856415|856416|856417|856418|856419|856420|856421|856422|856423|856424|856425|856426|856427|856428|856429|856430|856431|856432|856433|856434|856435|856436|856437|856438|856439|856440|856441|856442|856443|856444|856445|856446|856447|856448|856449|856450|856451|856452|856453|856454|856455|856456|856457|856458|856459|856460|856461|856462|856463|856464|856465|856466|856467|856468|856469|856470|856471|856472|856473|856474|856475|856476|856477|856478|856479|856480|856481|856482|856483|856484|856485|856486|856487|856488|856489|856490|856491|856492|856493|856494|856495|856496|856497|856498|856499|856500|856501|856502|856503|856504|856505|856506|856507|856508|856509|856510|856511|856512|856513|856514|856515|856516|856517|856518|856519|856520|856521|856522|856523|856524|856525|856526|856527|856528|856529|856530|856531|856532|856533|856534|856535|856536|856537|856538|856539|856540|856541|856542|856543|856544|856545|856546|856547|856548|856549|856550|856551|856552|856553|856554|856555|856556|856557|856558|856559|856560|856561|856562|856563|856564|856565|856566|856567|856568|856569|856570|856571|856572|856573|856574|856575|856576|856577|856578|856579|856580|856581|856582|856583|856584|856585|856586|856587|856588|856589|856590|856591|856592|856593|856594|856595|856596|856597|856598|856599|856600|856601|856602|856603|856604|856605|856606|856607|856608|856609|856610|856611|856612|856613|856614|856615|856616|856617|856618|856619|856620|856621|856622|856623|856624|856625|856626|856627|856628|856629|856630|856631|856632|856633|856634|856635|856636|856637|856638|856639|856640|856641|856642|856643|856644|856645|856646|856647|856648|856649|856650|856651|856652|856653|856654|856655|856656|856657|856658|856659|856660|856661|856662|856663|856664|856665|856666|856667|856668|856669|856670|856671|856672|856673|856674|856675|856676|856677|856678|856679|856680|856681|856682|856683|856684|856685|856686|856687|856688|856689|856690|856691|856692|856693|856694|856695|856696|856697|856698|856699|856700|856701|856702|856703|856704|856705|856706|856707|856708|856709|856710|856711|856712|856713|856714|856715|856716|856717|856718|856719|856720|856721|856722|856723|856724|856725|856726|856727|856728|856729|856730|856731|856732|856733|856734|856735|856736|856737|856738|856739|856740|856741|856742|856743|856744|856745|856746|856747|856748|856749|856750|856751|856752|856753|856754|856755|856756|856757|856758|856759|856760|856761|856762|856763|856764|856765|856766|856767|856768|856769|856770|856771|856772|856773|856774|856775|856776|856777|856778|856779|856780|856781|856782|856783|856784|856785|856786|856787|856788|856789|856790|856791|856792|856793|856794|856795|856796|856797|856798|856799|856800|856801|856802|856803|856804|856805|856806|856807|856808|856809|856810|856811|856812|856813|856814|856815|856816|856817|856818|856819|856820|856821|856822|856823|856824|856825|856826|856827|856828|856829|856830|856831|856832|856833|856834|856835|856836|856837|856838|856839|856840|856841|856842|856843|856844|856845|856846|856847|856848|856849|856850|856851|856852|856853|856854|856855|856856|856857|856858|856859|856860|856861|856862|856863|856864|856865|856866|856867|856868|856869|856870|856871|856872|856873|856874|856875|856876|856877|856878|856879|856880|856881|856882|856883|856884|856885|856886|856887|856888|856889|856890|856891|856892|856893|856894|856895|856896|856897|856898|856899|856900|856901|856902|856903|856904|856905|856906|856907|856908|856909|856910|856911|856912|856913|856914|856915|856916|856917|856918|856919|856920|856921|856922|856923|856924|856925|856926|856927|856928|856929|856930|856931|856932|856933|856934|856935|856936|856937|856938|856939|856940|856941|856942|856943|856944|856945|856946|856947|856948|856949|856950|856951|856952|856953|856954|856955|856956|856957|856958|856959|856960|856961|856962|856963|856964|856965|856966|856967|856968|856969|856970|856971|856972|856973|856974|856975|856976|856977|856978|856979|856980|856981|856983|856984|856985|856986|856987|856988|856989|856990|856991|856992|856993|856994|856995|856996|856997|856998|856999|857000|857001|857002|857003|857004|857005|857006|857007|857008|857009|857010|857011|857013|857014|857015|857016|857017|857018|857019|857020|857021|857022|857023|857025|857026|857027|857028|857029|857030|857031|857032|857033|857034|857035|857036|857037|857038|857039|857040|857041|857042|857043|857044|857045|857046|857047|857048|857049|857050|857051|857052|857053|857054|857055|857056|857057|857058|857059|857060|857061|857062|857063|857064|857065|857066|857067|857068|857069|857070|857071|857072|857073|857074|857075|857076|857077|857078|857079|857080|857081|857082|857083|857084|857085|857086|857087|857088|857089|857090|857091|857092|857093|857094|857095|857096|857097|857098|857099|857100|857101|857102|857103|857104|857105|857106|857107|857108|857109|857110|857111|857112|857113|857114|857116|857117|857118|857119|857120|857121|857122|857123|857124|857125|857126|857127|857128|857129|857130|857131|857132|857133|857134|857135|857136|857137|857138|857139|857140|857141|857142|857143|857144|857145|857146|857147|857148|857149|857150|857151|857152|857153|857154|857155|857156|857157|857158|857159|857160|857161|857162|857163|857164|857165|857166|857167|857168|857169|857170|857171|857172|857173|857174|857175|857176|857177|857178|857179|857180|857181|857182|857183|857184|857185|857186|857187|857188|857189|857190|857191|857192|857193|857194|857195|857196|857197|857198|857199|857200|857201|857202|857203|857204|857205|857206|857207|857208|857209|857210|857211|857212|857213|857214|857215|857216|857218|857219|857220|857221|857222|857223|857224|857225|857226|857227|857228|857229|857230|857231|857232|857233|857234|857235|857236|857237|857238|857239|857240|857241|857242|857243|857244|857245|857246|857247|857248|857249|857250|857251|857252|857253|857254|857255|857256|857257|857258|857259|857260|857261|857262|857263|857264|857265|857266|857267|857268|857269|857270|857271|857272|857273|857274|857275|857276|857277|857278|857279|857280|857281|857282|857283|857284|857285|857286|857287|857288|857289|857290|857291|857292|857293|857294|857295|857296|857297|857298|857299|857300|857301|857302|857303|857304|857305|857306|857307|857308|857309|857310|857311|857312|857313|857314|857315|857316|857317|857318|857319|857320|857321|857322|857323|857324|976587", "text": "Retinal dystrophy" }, { - "baseId": "15074|15144|17084|17395|19612|20441|20442|20571|20772|28136|28148|28154|40151|45879|76385|101251|104730|104765|104923|105164|105210|105264|105308|105554|152869|177241|177287|188788|188789|188791|188796|188856|188926|188927|188928|188948|188981|188983|188984|188992|189010|189065|189067|189092|189127|189135|189144|190264|191986|192827|193099|194617|226635|228337|237678|259692|303823|308450|308542|359518|413765|431648|431654|431714|438325|438998|489358|544208|544272|550225|551545|583166|722103|722105|750153|765767|765771|765777|765778|765779|782631|788828|790651|795889|795891|799450|800687|801353|816400|816462|829044|829448|832162|832172|832187|832197|832206|832214|832216|832232|832265|832270|832271|855873|855876|856176|856179|856484|856489|856492|856502|856517|857201|859675|896741|896764|896768|933416|933427|939962|942208|945123|945126|954801|954803|954816|954819|954825|954835|954840|954843|954844|954845|954848|954849|960603|962252|966323|966324|966325|966326|966327|967049|967050|967051|967052|967053|967054|967055|967056|967057|967058|967059|967060|967061|967062|967063|967064|967065|967066|967067|967069|967070|967071|967072|967073|967075|967076|967077|967078|967079|967080|967081|967082|967083|967084|967085|967086|967087|967088|967089|967090|967091|967092|967093|967094|967095|967096|967097|967098|967099|978246|978247|978248|978249|978250|978251|978252|978253|978254|978255|978256|978257|978258|978259|978260|978261|978262|978263|978264|978265|978266|978267|978268|978269|978270|978271|978272|978273|978274|978275|978276|978277|978278|978279|978280|978281|978282|978283|978284|978285|978286|978287|978288|978289|978290|978291|978292|978293|978294|978295|978296|978297|978298|978299|978300|978301|978302|978303|978304|978305|978306|978307|978308|978309|978310|978311|978312|978313|978314|978315|978316|978317|978318|978319|978320|978321|978322|978323|978324|978325|978326|978327|978328|978329|978330|978331|978332|978333|978334|978335|978336|978337|978338|978339|978340|978341|978342|978343|978344|978345|978346", + "upstreamId": "15074|15144|17084|17395|19612|20441|20442|20571|20772|28136|28148|28154|40151|45879|76385|101251|104730|104765|104923|105164|105210|105264|105308|105554|152869|177241|177287|188788|188789|188791|188796|188856|188926|188927|188928|188948|188981|188983|188984|188992|189010|189065|189067|189092|189127|189135|189144|190264|191986|192827|193099|194617|226635|228337|237678|259692|303823|308450|308542|359518|413765|431648|431654|431714|438325|438998|489358|544208|544272|550225|551545|583166|722103|722105|750153|765767|765771|765777|765778|765779|782631|788828|790651|795889|795891|799450|800687|801353|816400|816462|829044|829448|832162|832172|832187|832197|832206|832214|832216|832232|832265|832270|832271|855873|855876|856176|856179|856484|856489|856492|856502|856517|857201|859675|896741|896764|896768|933416|933427|939962|942208|945123|945126|954801|954803|954816|954819|954825|954835|954840|954843|954844|954845|954848|954849|960603|962252|966323|966324|966325|966326|966327|967049|967050|967051|967052|967053|967054|967055|967056|967057|967058|967059|967060|967061|967062|967063|967064|967065|967066|967067|967069|967070|967071|967072|967073|967075|967076|967077|967078|967079|967080|967081|967082|967083|967084|967085|967086|967087|967088|967089|967090|967091|967092|967093|967094|967095|967096|967097|967098|967099|978246|978247|978248|978249|978250|978251|978252|978253|978254|978255|978256|978257|978258|978259|978260|978261|978262|978263|978264|978265|978266|978267|978268|978269|978270|978271|978272|978273|978274|978275|978276|978277|978278|978279|978280|978281|978282|978283|978284|978285|978286|978287|978288|978289|978290|978291|978292|978293|978294|978295|978296|978297|978298|978299|978300|978301|978302|978303|978304|978305|978306|978307|978308|978309|978310|978311|978312|978313|978314|978315|978316|978317|978318|978319|978320|978321|978322|978323|978324|978325|978326|978327|978328|978329|978330|978331|978332|978333|978334|978335|978336|978337|978338|978339|978340|978341|978342|978343|978344|978345|978346", "text": "Autosomal recessive retinitis pigmentosa" }, { - "baseId": "15075|17390|17403|20264|20921|22918|28209|28217|31971|57538|57611|94314|98753|104543|104548|104554|104556|104592|104603|104611|105044|105200|105292|137049|142607|142608|142609|142611|177987|188766|188865|237685|252356|256107|265648|267625|270098|271627|300152|300154|300156|300157|300161|300164|300166|300167|300169|302873|302878|302879|302880|302885|302916|302918|302926|302934|302935|302948|302949|302951|302953|302954|302960|302962|302963|307343|307353|307354|307355|307552|307564|307565|307570|307575|307579|307586|327866|327876|327883|327886|327889|327901|337702|337706|337708|337710|337712|337718|343921|343930|343934|343935|343938|345373|345374|345375|345378|345385|345387|345392|345396|361474|404762|413237|413665|421591|438272|486006|486110|489877|536575|537490|551508|551519|551561|551562|551580|551592|551627|612147|612177|612552|620017|623816|623827|623878|623895|623942|623972|699595|794740|795089|796987|796988|801317|801328|801330|801332|801337|801340|801363|801371|801387|801418|801419|801438|801450|801451|831963|844830|844833|877084|877085|877086|877087|877088|877089|877090|877091|896283|896284|896285|896286|896287|896288|896289|896290|896291|896292|896293|896294|896295|896296|896297|896298|896299|896300|896301|896302|896303|896304|962011|962023|962026|976588", + "upstreamId": "15075|17390|17403|20264|20921|22918|28209|28217|31971|57538|57611|94314|98753|104543|104548|104554|104556|104592|104603|104611|105044|105200|105292|137049|142607|142608|142609|142611|177987|188766|188865|237685|252356|256107|265648|267625|270098|271627|300152|300154|300156|300157|300161|300164|300166|300167|300169|302873|302878|302879|302880|302885|302916|302918|302926|302934|302935|302948|302949|302951|302953|302954|302960|302962|302963|307343|307353|307354|307355|307552|307564|307565|307570|307575|307579|307586|327866|327876|327883|327886|327889|327901|337702|337706|337708|337710|337712|337718|343921|343930|343934|343935|343938|345373|345374|345375|345378|345385|345387|345392|345396|361474|404762|413237|413665|421591|438272|486006|486110|489877|536575|537490|551508|551519|551561|551562|551580|551592|551627|612147|612177|612552|620017|623816|623827|623878|623895|623942|623972|699595|794740|795089|796987|796988|801317|801328|801330|801332|801337|801340|801363|801371|801387|801418|801419|801438|801450|801451|831963|844830|844833|877084|877085|877086|877087|877088|877089|877090|877091|896283|896284|896285|896286|896287|896288|896289|896290|896291|896292|896293|896294|896295|896296|896297|896298|896299|896300|896301|896302|896303|896304|962011|962023|962026|976588", "text": "Cone-rod dystrophy" }, { - "baseId": "15075|15076|15077|15143|15144|16048|16367|16372|16376|17033|17086|17090|17093|17094|17097|17100|17390|17395|17396|17401|17403|17787|18374|18391|18401|18585|18589|19434|19436|19609|19616|19617|20180|20264|20571|20572|20648|20771|20772|20775|20777|21005|21008|21009|22401|22408|22619|22918|22923|22933|22940|22967|24189|24938|25583|25590|26898|27182|28037|28053|28057|28060|28064|28067|28071|28073|28076|28077|28079|28081|28089|28139|28140|28141|28142|28145|28149|28154|28159|28203|28206|28209|28222|31971|32646|38739|38825|39174|39666|39679|40151|40152|45727|48213|55056|55106|57545|57558|57571|57579|57593|57599|57626|57633|57634|57636|57640|57643|57644|57645|57646|57648|57649|57650|57657|57662|57667|57668|57669|57670|57671|57672|57677|57678|57680|57682|57683|57684|57690|57692|57702|57717|57726|57734|57743|57753|57763|57764|57766|57771|57773|57777|57796|70906|71372|76340|76385|76616|88254|96865|96877|98674|98675|98676|98753|98754|98766|98767|98777|98916|98917|98918|99374|99380|99508|99509|99510|99511|99512|99513|99514|99515|99516|99517|99518|99519|99520|99521|99522|99523|99524|99525|99599|99600|99601|99603|99605|99606|99607|99608|99965|99989|100027|100028|101058|101212|101214|101228|101229|101230|101233|101251|101253|101254|101256|101270|101271|101341|101449|101450|101479|101481|101631|101643|101644|101645|101646|101764|101803|101804|101927|102110|102111|102553|104543|104548|104554|104561|104567|104579|104585|104589|104592|104595|104596|104603|104605|104611|104655|104676|104696|104710|104718|104720|104726|104727|104757|104759|104761|104793|105063|105181|105221|105264|105287|105310|105394|105481|105486|105489|105493|105494|105497|105502|105506|105550|105553|105555|105560|105565|105567|105569|105571|105573|105574|105575|105580|105582|105615|105616|105621|105632|105677|105680|105683|105685|105686|105690|105694|105749|105758|105761|105762|105767|105795|105802|105803|106433|106434|106435|106436|106440|106443|106444|106445|106446|106448|106450|106451|106455|106456|106457|106458|106459|106485|106486|133696|140944|140950|140956|140959|140960|140962|140963|140964|140965|140966|140968|140969|140970|140971|140972|140973|140975|142335|142336|142337|142338|142339|142340|142341|142342|142343|142347|142607|142608|142609|142611|152782|152783|152784|152785|152786|152787|152788|152797|152798|152799|152800|152801|152802|152803|152804|152805|152806|152807|152808|152811|152812|152813|152814|152815|152816|152817|152818|152819|152820|152821|152822|152823|152824|152825|152826|152827|152828|152829|152830|152831|152832|152833|152834|152839|152840|152841|152842|152843|152844|152845|152847|152848|152851|152852|152853|152854|152855|152856|152857|152860|152861|152862|152863|152865|152866|152867|152868|152869|152872|152881|152882|152883|152887|152888|152891|152892|152893|152894|152895|152896|152897|152900|152901|152902|152903|166163|166173|172375|172388|172390|172520|172743|172771|172773|172775|172776|172784|172882|172889|172905|172911|172912|172913|172914|172918|172920|172922|172925|176952|176954|176961|176978|176987|177024|177056|177079|177083|177110|177122|177155|177209|177212|177215|177260|177261|177287|177340|177344|177358|177373|177381|177411|177472|177522|177528|177529|177576|177578|177579|177580|177606|177611|177612|177649|177699|177794|177818|177835|177889|177918|177920|177922|177924|177926|177982|177983|177987|178014|178015|178020|178023|178038|178040|178103|181395|188856|188865|188867|188982|188983|188992|189049|189155|189156|189157|189158|189159|189160|189161|189162|190238|190239|190250|190251|190253|190264|190277|190298|190299|190300|190301|190304|190305|190306|190309|190310|190311|190312|190403|190404|190406|190408|190494|190629|190683|190684|190685|190791|190829|190830|190865|190978|190982|191194|191235|191261|191269|191349|191357|191358|191417|191424|191435|191520|191636|191654|191655|191768|191769|191774|191956|191966|191986|191990|192093|192122|192225|192226|192268|192411|192412|192422|192431|192471|192532|192603|192618|192623|192826|192828|192847|192896|193026|193097|193098|193100|193293|193295|193443|193520|193579|193580|193583|193584|193587|193596|193597|193605|193625|193737|193738|193760|193761|193777|193834|193835|194029|194288|194294|194330|194334|194335|194347|194431|194433|194434|194435|194436|194580|194604|194631|194787|194815|194831|194927|194996|195037|195038|195093|195274|195353|195369|195369|195381|195392|195397|195479|195505|195551|195718|196012|203265|204538|204542|204543|204544|204551|204554|204555|204556|204560|205152|205180|205376|205377|205603|205604|205725|205726|206565|207325|213126|213127|213556|214235|214454|221358|226519|226525|227208|227209|227269|228304|228344|228352|229031|229178|231425|237468|237685|237986|238001|238025|238027|238028|238030|238031|238039|238081|238082|247005|247032|247423|247424|247425|247426|247427|247428|249423|249592|250436|250437|250438|250919|250920|250921|250922|251300|251364|251366|251367|251368|251369|252356|255107|255108|255110|255111|255112|255338|255852|255853|260350|264200|265176|265560|265561|265562|265617|265710|265947|265976|266047|266049|266055|266504|267424|267667|267810|268151|268646|269271|269272|269281|269623|269990|269991|270036|270098|270483|270607|270752|270754|270869|271073|271102|271103|271280|271310|271311|271533|271577|271677|271817|271822|272006|272007|272984|273551|273552|273553|273851|273853|274142|274143|274234|275072|275237|276329|276332|276348|276351|276352|276353|276561|276569|276570|276573|276617|276618|276621|276622|276623|276624|276625|276627|276628|276629|276630|276631|276634|276635|276881|276882|276883|276888|276892|276893|276894|277046|277047|277048|277051|277148|277151|277463|277475|277477|277478|277540|277541|277551|277562|278311|278320|278321|278335|278346|278348|278353|278354|278358|278928|278931|278932|278939|278940|278944|278947|278953|278954|278959|278969|278970|278971|278972|278977|278987|279068|279086|279087|279088|279095|279102|279103|279441|279448|279452|279453|279462|279468|279470|279527|279528|279529|279530|279532|279539|279540|279542|279543|279544|279547|279564|279572|280323|280331|280332|280334|280335|280338|280344|280345|280350|280351|280365|280366|280379|280380|280386|280391|280398|280400|280404|280405|280406|280408|280411|280412|280415|280417|280418|280419|280420|280421|280423|280425|280702|280703|280704|280706|280708|280715|280716|280717|280726|281145|281146|281151|281156|281580|281584|281586|281589|281595|281764|281767|281769|281991|282004|282005|282024|282030|282041|282042|282045|282119|282126|282127|282130|282167|282168|282169|282231|282232|282233|282247|282250|282251|282252|282253|282254|282957|282958|282960|282963|282966|283247|283248|283440|283445|283448|283454|283463|283466|283556|283557|283558|283560|283561|283562|283574|283584|283585|283589|283716|283717|283720|283732|283744|283753|283756|283762|283768|283787|284115|284119|284124|284125|284130|284140|284142|285376|285381|285382|285383|285384|285386|285387|285839|285845|285847|285852|285854|285857|285858|285862|285863|285864|285868|285869|285879|285880|285882|285893|285897|285898|285903|285908|285915|285916|285918|285919|285921|285925|285928|285929|285933|285934|285944|285945|286020|286021|286022|286025|286026|286027|286030|286036|286039|286041|286042|286043|286056|286412|286413|286414|286423|286426|286429|286430|286432|286433|286597|286599|286605|286612|286623|286628|286629|286632|286652|286653|286654|286655|286656|286669|286671|286672|286673|286675|286677|286679|286682|286685|286687|286689|286692|286706|286707|286716|286723|286726|286727|286728|286730|286915|286920|286923|286924|286938|286942|286944|286945|286947|287623|287625|287630|287633|287634|287637|287642|287645|287649|287654|287664|287666|287671|287674|287683|287690|287709|287711|287719|287721|287722|287848|287854|287859|287864|287868|287869|287870|287874|287878|287880|287884|287894|287897|287905|287909|287910|287913|287914|287923|287925|287935|287937|287944|288345|288347|288353|288383|288384|288385|288389|288391|288392|288393|288395|288398|288399|288400|288401|288405|288406|288542|288550|288553|288570|288571|288572|288574|288578|288579|288580|288603|288609|288617|288626|288629|288630|288631|288633|288636|288643|288646|288647|288648|288652|288659|288724|288725|288729|288730|288733|288736|288745|288748|288749|288768|288769|288770|288772|288828|288829|288835|288837|288845|288848|288849|288858|288860|288862|288866|288868|288870|288872|288873|288874|288880|288884|288889|288899|288900|288901|288911|288912|288913|288914|288915|288922|288926|288932|288935|288938|289236|289240|289247|289252|289254|289266|289284|289285|289296|289297|289301|289303|289311|289315|289318|289319|289339|289340|289344|289345|289347|289353|289456|289458|289463|289469|289484|289489|289490|289493|289494|290090|290091|290097|290099|290103|290111|290112|290122|290123|290124|290440|290441|290442|290453|290455|290459|290460|290466|290491|290492|290493|291162|291164|291176|291186|291204|291206|291207|291211|291228|291231|291232|291233|291235|291236|291237|291238|291244|291246|291323|291331|291335|291340|291343|291344|291345|291356|291369|291380|291465|291466|291478|291492|291497|291499|291518|291529|291531|291538|291539|291546|291559|291560|291627|291645|291649|291650|291657|291658|291661|291663|291670|291678|291679|291681|291684|291685|291686|291791|291792|291793|291802|291806|292512|292515|292516|292519|292520|292530|292531|292533|292534|292535|292538|292539|292546|292547|292553|292554|292555|292556|292558|292561|292597|292599|292683|292685|292686|292688|292689|292691|292695|292699|292700|292702|292704|292710|292711|292724|292732|292733|292734|292736|292737|293133|293470|293474|293944|293946|293963|293969|293970|293971|293972|293973|293975|293978|293979|293980|293981|293985|293986|294050|294067|294069|294070|294071|294072|294073|294074|294076|294078|294079|294080|294081|294082|294861|294864|294865|295264|295265|295273|295274|295279|295342|295348|295374|295375|295378|295379|295380|295386|295392|295395|295399|295400|295401|295404|295406|295407|295408|295416|296239|296243|296246|296255|296263|296264|296269|296270|296276|296279|296280|296281|296288|296289|296292|296293|296294|296300|296451|296453|296455|296466|297322|297323|297324|297325|297327|297328|297333|297335|297336|297342|297352|297354|297356|297357|297361|297362|297377|297378|297379|297386|297406|297407|297480|297481|297486|297488|297491|297493|297494|297497|297508|297519|297520|297521|297522|297535|297539|297546|297553|297554|297555|297557|297564|297565|297569|297593|297594|297616|297620|297621|298074|298076|298077|298081|298082|298083|298085|298087|298092|298094|298096|298103|298112|298113|298116|298522|298540|298541|298579|298580|298592|298607|298610|298616|298617|299055|299091|299092|299102|299103|299104|299112|299115|299117|299125|299139|299140|299141|299144|299145|299151|299152|299153|299156|299164|299172|299173|299186|299187|299192|299193|299198|299199|299202|299205|299208|299210|299231|299233|299937|299938|299942|300126|300128|300129|300130|300134|300137|300145|300146|300150|300152|300154|300156|300157|300161|300164|300166|300167|300169|300869|300871|300872|300878|300879|300891|300892|300897|300902|300903|300904|300912|300913|300915|300917|300923|301832|301833|301839|301840|301844|301845|302075|302076|302079|302088|302134|302135|302138|302142|302149|302150|302161|302162|302166|302342|302343|302356|302357|302359|302361|302362|302365|302366|302373|302383|302393|302394|302395|302403|302404|302411|302419|302420|302557|302558|302567|302568|302572|302573|302574|302576|302589|302593|302609|302611|302612|302613|302615|302810|302861|302863|302864|302865|302867|302869|302870|302871|302873|302878|302879|302880|302885|302916|302918|302926|302934|302935|302948|302949|302951|302953|302954|302960|302962|302963|303792|303803|303805|303808|303811|303813|303816|303823|303824|303825|303831|303832|303833|303840|303846|303847|303848|303851|303852|303857|304990|304997|305010|305021|305023|305432|305478|305490|305491|305497|305498|305502|305503|305511|305513|305518|305519|305544|305932|305933|305937|305938|305946|305947|305950|306077|306078|306079|306083|306166|306990|306991|307242|307243|307249|307250|307256|307263|307275|307276|307285|307287|307289|307290|307298|307321|307325|307326|307343|307353|307354|307355|307489|307508|307510|307511|307515|307520|307521|307522|307532|307546|307549|307550|307551|307552|307564|307565|307570|307575|307579|307586|308124|308125|308127|308137|308411|308446|308448|308450|308454|308456|308457|308460|308468|308475|308476|308477|308478|308480|308481|308489|308494|308495|308497|308500|308501|308502|308504|308506|308507|308508|308510|308513|308518|308523|308524|308529|308531|308539|308541|308542|308543|308549|309002|309362|309364|309372|309375|309378|309381|309382|309385|309391|309393|309396|309397|309672|309673|309674|309675|309676|309681|309683|309793|309795|309815|309818|309819|309821|309824|309845|310085|310087|310088|310091|310095|310120|310121|310340|310341|310343|310344|310345|310349|310351|310352|310353|310362|310363|310370|310380|310653|310655|310658|310660|310661|310663|310935|310946|310947|310949|310950|310955|310957|310960|311119|311120|311442|311443|311445|312487|312496|312498|312499|312500|312508|312515|312517|312536|314403|314405|314406|314422|314440|314452|314458|314459|314463|314464|314696|314699|314701|314704|314705|314706|314707|314708|314709|314718|314719|314720|314723|314724|314728|314735|314738|314752|314754|314764|314767|315427|315428|315430|315432|315433|315434|315437|315438|315439|315441|315447|315449|315451|315468|315474|315475|315477|315478|315479|315622|315623|315628|315629|315630|315633|315634|316993|317010|317011|317015|317026|317035|318364|318367|318368|318831|318839|318844|318851|318852|318853|320382|320383|320385|320388|321023|321024|321026|321027|321036|321037|321044|321045|321071|321089|321098|321100|321102|321103|321425|321426|321427|321448|321462|321467|321469|321478|321483|321485|321680|321683|321684|321685|321689|321692|321695|321697|321698|321699|322173|322179|322181|322182|322194|322207|322208|322209|322243|322251|322252|322268|322270|322271|322433|323009|323014|323015|323250|323251|323259|323260|323266|323267|323270|323277|323283|323284|323448|323451|323456|323458|323459|323460|323461|323472|323577|324895|325959|325961|325967|325968|325971|325973|325985|325986|326000|326002|326003|326013|326014|326016|326017|326032|326033|326038|326043|326044|326048|326049|327135|327145|327146|327159|327160|327164|327166|327167|327195|327220|327229|327230|327232|327367|327374|327375|327384|327385|327396|327409|327411|327414|327415|327416|327418|328207|328208|328209|328210|328211|328214|328220|328222|328228|329005|329006|329018|329040|329043|329049|329203|329204|329213|329214|329410|329412|329418|329426|329430|329445|329448|329449|329452|330117|330120|330122|330123|330200|330202|330204|330212|330213|330220|330221|330225|330227|330234|330578|330582|330583|330585|330588|330943|330945|330948|330950|330955|332935|332942|332943|332946|332952|332960|332962|332965|332968|333147|333149|333151|333153|333160|333162|333928|333931|333934|333935|333938|333939|333943|333946|333950|333952|333970|333971|333974|333976|333986|333988|333989|333990|333994|333995|333998|334000|334255|334257|334260|334261|334262|334270|334272|334274|334658|335079|335080|335090|335094|335097|335098|335101|335117|335610|335611|335622|335625|335636|335638|335642|335646|335657|335658|335659|335660|335662|335663|335667|335671|335674|335675|335676|335678|335679|335681|335685|335695|335697|335714|335717|335724|335726|335730|335733|335736|335738|335740|336386|336389|336391|336392|336398|336400|336404|336405|336423|336424|336631|336633|336639|336640|336642|337189|337193|337194|337199|337217|337224|337225|337228|337230|337233|337234|337244|337257|337281|337282|337285|337493|337496|337642|337643|337647|337650|337655|337659|337663|337680|337685|337690|337695|337703|337704|337713|337714|337715|338598|338600|338603|339210|339218|339219|339231|339393|339400|339403|339404|339706|339707|339710|339715|339716|339718|339720|339721|339722|339725|339729|339730|339734|339735|339737|339744|339806|339813|339814|339985|339987|339991|339993|339996|339999|340414|340417|340425|340426|340429|340442|340449|340455|340825|340827|340830|341242|341243|341247|341248|341371|341373|341378|341381|341382|341384|341387|342030|342033|342034|342038|342040|342045|342046|342051|342052|342055|342057|342060|342064|342068|342070|342071|343444|343448|343449|343456|343459|343460|343463|343466|343471|343472|343473|343474|343488|343496|343498|343504|343505|343509|343514|343515|343516|343518|343534|343535|343543|343544|343545|343548|343557|343558|343565|343566|343569|343570|343571|343572|343573|343591|343592|343593|343594|343602|343603|343609|343880|343881|343884|343893|343895|343896|343898|343903|343904|343907|343908|343912|343917|343918|343925|343926|343928|343929|343931|343933|344190|344192|344202|344203|344205|344206|344212|344213|344215|344861|344870|344874|344878|344889|344892|344895|345039|345040|345041|345042|345046|345047|345050|345051|345052|345055|345057|345059|345065|345220|345426|345432|345437|345443|345460|345462|345566|345711|346118|346123|346131|346133|346135|346136|346137|346139|346141|346142|346144|346146|346153|346154|346435|346438|346443|346619|346620|346622|346626|346627|346629|346798|346799|346806|346812|346815|346818|346819|347445|347452|347456|347460|347464|347469|347474|347477|347478|347773|347777|348751|348759|349187|349190|349193|349195|349199|349202|349205|349207|349208|349210|349211|349212|349215|349218|349221|349222|349224|349225|349226|349353|349354|349357|349785|349787|349788|349790|350102|350103|350106|350108|350110|350114|350116|350118|350119|350123|350124|350126|350127|350130|350133|350138|350143|350146|350147|350150|350155|350160|350165|350166|350168|350362|350367|350368|350369|350372|350373|350376|350377|350435|350437|350438|350439|350440|350442|350443|350445|350446|350448|350449|350800|350801|350804|351474|351475|351478|351479|351482|351485|351486|351487|351492|351494|351496|352244|352245|352246|352247|352248|352249|352250|352862|352863|352865|352866|352867|354176|358036|359518|360887|361007|361383|364867|365251|366713|367215|367970|367986|372472|389200|404762|405000|405252|406402|406437|406660|406869|406871|406889|407888|409585|413182|413235|413267|413272|413443|413451|413535|413611|413676|413717|413718|413822|413823|413825|415050|418822|418828|418829|420007|421203|428269|428272|429604|431561|431563|431566|431567|431570|431574|431575|431576|431577|431578|431581|431583|431585|431587|431588|431589|431590|431591|431592|431593|431594|431595|431596|431597|431598|431600|431601|431602|431607|431610|431620|431631|431641|431642|431648|431649|431651|431653|431654|431658|431659|431660|431662|431665|431666|431667|431668|431669|431672|431673|431674|431675|431676|431677|431679|431680|431681|431688|431689|431691|431692|431696|431697|431699|431700|431701|431702|431703|431704|431705|431706|431707|431708|431709|431711|431712|431714|431715|431720|431721|431724|431725|431726|431727|431728|431729|431730|431731|431732|431733|431734|431737|431738|431742|431755|431756|431771|431772|431775|431786|431788|431789|431791|431792|431793|431794|431795|431796|431797|431798|431799|431805|431806|431808|431809|431813|431819|431820|431821|431822|431823|431824|431825|431826|431827|431828|431830|431835|431836|431855|431856|431857|431858|431859|431860|431862|431863|431865|431871|431872|431874|431875|431878|431880|431882|433689|433782|437830|437840|437899|437900|438006|438007|438012|438124|438153|438192|438193|438305|438306|438321|438325|438326|438373|438395|438438|444472|448228|463360|481582|482103|486024|486057|486147|486149|486186|486233|486329|486397|486406|486477|486479|488346|488712|488887|489150|489331|489358|489433|489870|489877|490280|491563|496468|496475|498168|500531|506994|512912|512914|513054|513603|513916|514535|528788|528800|528852|536532|537118|537204|537207|537208|537271|537352|537353|537493|537496|537560|537561|537565|539191|540846|540887|540908|540917|540932|540997|541067|541070|541071|541086|541090|541097|541791|542144|542299|543884|543895|543897|543900|543908|543910|543915|543937|543952|543956|544217|544275|544296|544475|546384|547531|550249|551543|551553|551572|551574|551575|551576|551578|551579|551587|551595|551602|551603|578030|584907|585168|585295|585498|587547|609021|609443|609489|609587|610617|611617|611700|612511|612515|612516|612518|612520|612725|612757|612758|612761|612821|612859|613041|613067|613068|613249|613629|613632|619989|620025|620026|620042|620043|620084|620085|620086|620098|620104|620165|620166|620167|620206|620238|620239|620240|620241|620258|620301|620302|620303|620361|620408|620481|620558|620780|620793|620821|620823|620824|620860|620879|620918|623000|623791|623792|623793|623794|623796|623797|623798|623799|623800|623801|623802|623803|623804|623805|623806|623807|623808|623809|623810|623811|623823|623826|623828|623829|623830|623831|623832|623833|623834|623835|623836|623837|623839|623840|623841|623842|623843|623844|623845|623846|623847|623850|623853|623854|623855|623856|623857|623858|623859|623860|623861|623862|623863|623864|623865|623866|623867|623868|623869|623881|623882|623883|623884|623885|623886|623887|623888|623889|623890|623897|623899|623900|623901|623902|623903|623904|623908|623909|623910|623911|623912|623913|623914|623915|623916|623917|623918|623919|623920|623923|623924|623925|623926|623927|623928|623929|623930|623931|623932|623933|623934|623935|623937|623938|623939|623940|623941|623943|623944|623945|623946|623947|623950|623951|623952|623953|623959|623960|623962|623963|623964|623965|623966|623967|623971|623973|623974|623976|623978|623979|623980|623981|623982|623983|623985|623987|623992|623993|623995|623997|623998|623999|624000|624001|624002|624003|624004|624005|624006|624007|624008|624009|624013|624015|624018|624019|624020|624023|624024|624025|624026|624028|624033|624035|624036|624037|624038|624039|624040|624043|624044|626259|627740|629179|635123|642643|651577|651630|651635|651669|672015|672055|672056|672067|692130|696153|696154|696361|696860|696864|697415|697520|697521|697537|697538|697539|697706|698912|699561|699595|699814|699816|704293|705417|706969|706971|707504|707665|707666|707887|708112|708113|708223|708224|708225|708226|708227|708325|708417|709217|709726|709728|710472|710579|710581|710582|710583|712378|714579|715603|717791|718275|719065|719066|719466|719716|719717|719718|719719|719838|719931|719933|719934|720014|720819|722096|722097|722099|722100|722102|722103|722104|722105|722294|722453|723954|723956|725629|725846|726328|727010|731767|731768|732116|732351|733421|733422|733434|733440|733533|733534|733657|733660|734694|734925|734926|734928|735720|735721|735722|735723|735725|735938|736710|737492|737496|740913|741207|742549|744229|745661|745740|746632|747105|747570|747571|747730|747971|749334|750135|750136|750143|750146|750155|751200|751206|751672|755634|757695|758920|759059|760621|761621|762071|762720|763166|764376|764606|765766|765769|765770|765775|765777|765790|765793|768513|770312|770315|774640|775217|777303|777623|777625|777634|778113|779216|779562|779806|781416|781420|782612|782856|783137|785657|787508|790302|790303|790474|790481|790482|790524|790525|790648|790804|790805|790806|790902|790992|790993|791628|791629|791953|791954|791955|791956|791957|791958|791959|792434|792435|792436|792437|792438|792439|792440|792441|792442|792443|792444|792445|792680|794256|794411|794454|794522|794563|794572|794577|795221|795222|795257|795290|795292|795555|795655|795656|795889|795891|796179|796180|797023|797589|797922|797924|797956|798293|798296|798297|799224|799283|799284|799305|799552|799959|800418|800420|800422|800423|800425|800427|800428|800430|800432|800434|800437|800438|800439|800443|800444|800446|800447|800454|800465|800466|800467|800468|800469|800472|800473|800476|800486|800487|800488|800491|800492|800493|800497|800498|800499|800500|800501|800502|800503|800504|800505|800508|800510|800511|800515|800516|800518|800519|800520|800521|800522|800523|800524|800525|800527|800528|800529|800530|800533|800534|800536|800537|800538|800553|800556|800560|800582|800583|800584|800585|800586|800587|800588|800591|800592|800595|800596|800598|800601|800602|800603|800606|800607|800609|800612|800622|800623|800624|800629|800630|800631|800632|800633|800634|800635|800636|800637|800638|800639|800640|800641|800642|800650|800651|800652|800653|800687|800688|800689|800698|800700|800701|800702|800704|800705|800710|800711|801267|801268|801270|801271|801272|801273|801276|801278|801280|801282|801283|801285|801287|801288|801289|801290|801292|801293|801295|801297|801300|801301|801303|801308|801313|801315|801323|801325|801333|801334|801335|801336|801339|801341|801344|801345|801351|801352|801353|801354|801356|801358|801361|801362|801365|801366|801367|801368|801369|801370|801372|801373|801374|801375|801376|801377|801378|801379|801380|801384|801385|801389|801391|801394|801395|801396|801397|801398|801399|801400|801401|801403|801404|801405|801406|801407|801408|801409|801410|801412|801413|801414|801420|801421|801429|801433|801436|801440|801441|801443|801444|801445|801447|801448|801449|801452|801453|801456|801457|801458|801459|801460|801461|801462|801463|801464|801465|801466|801467|801468|801470|801471|801472|801473|801474|801475|801476|801477|801478|801479|801480|801481|801482|801483|801484|801485|801486|801487|801488|801489|801490|801491|801492|801493|801494|801495|801503|821836|821837|821880|822120|823467|824398|824456|824475|824690|824692|824700|824711|825972|825976|826178|826246|826871|826875|826882|826885|827164|827169|827270|827538|827540|828937|828938|829437|829458|829459|830508|830512|830523|830531|831890|831960|831963|831967|832181|832184|832196|832200|832212|832215|832224|832229|832231|832236|832238|832248|832251|832252|832253|832266|832273|832277|832961|832967|834893|836908|837364|838625|838637|842642|844047|844054|844067|844074|844075|848607|851826|855891|856143|856444|856592|856684|857176|858501|862196|862197|862198|862199|862200|862201|862202|862203|862204|862205|862424|862425|862426|862427|862428|862429|862430|862431|862432|862433|862434|862435|862436|862437|863217|863218|863219|863220|863221|863222|863223|863224|863225|863226|863227|863228|863229|863230|863231|863232|863233|863234|863235|863236|863530|863531|863532|863533|863534|863535|863536|863537|863538|863539|863540|863541|863542|863543|863544|863545|863546|863547|863548|863549|863550|863551|863552|863553|863554|863555|864264|864265|864266|864267|864268|864269|864270|864271|864272|864273|864274|864275|864276|864277|864278|864279|864280|864281|864282|864283|864771|864772|864773|864774|864775|864776|864777|864778|864779|864780|864781|864782|864783|864784|864785|864786|864787|864788|864789|864790|864791|864792|864793|864794|864996|865109|865110|865205|865206|865207|865883|865884|865885|865886|865887|865888|865889|865890|865891|865892|865893|865894|865895|865896|865897|865898|865899|865900|865901|865902|865903|865904|866443|866444|866445|866446|866447|866448|866449|868173|868174|868175|868176|868177|868178|868179|868180|868185|868186|868187|868188|868189|868190|868191|868192|868193|868194|868195|868196|868197|868523|868524|868665|868666|868667|871740|871741|871742|871743|871744|871745|871746|871747|871748|871749|872096|872097|872099|872101|872102|872103|872104|872105|872852|872853|872854|872855|872856|872857|872858|872859|872860|872861|872862|872863|872864|872865|872866|872867|872868|872869|872870|872871|872872|872873|872874|872875|872876|872877|872878|872879|874060|874061|874062|874063|874064|874067|874068|874069|874070|874071|874072|874073|874211|874212|874213|874214|874215|874216|874217|874218|874219|874220|874221|874222|874223|874224|875680|875681|875682|875683|875684|875685|875686|875687|875688|875689|875690|875691|875692|875693|875694|875695|875696|875697|875698|875699|875700|875701|875702|875703|875704|875705|875706|875707|875708|875709|875710|875711|875712|875713|875714|875715|875716|875717|875718|875719|875720|875721|875722|875723|875724|875725|875726|875727|875728|875729|875730|875731|875732|875733|876462|876563|876564|876583|876584|876585|876692|876693|876694|876695|876696|876697|876698|876699|876700|876701|876851|876852|876853|876854|876855|876856|876857|876858|876859|876860|876861|876862|876863|876864|876865|876866|876867|876868|876869|876870|876871|876872|876873|876874|876875|876876|876877|877987|877988|877989|877990|877991|878168|878171|878175|878176|878177|878178|878179|878180|878181|878182|878183|878184|878185|878186|878187|878188|878189|878621|878622|878623|878624|878625|878626|878627|878628|878629|878630|878631|878632|878633|878634|878635|878636|878637|878638|878639|878823|878824|878825|878826|878827|878828|878829|878830|878831|878832|880468|880469|880470|880471|880472|880473|880474|880475|880476|880477|880606|880846|880847|880848|880849|880850|880851|880852|880853|880854|880855|880856|880857|880858|880859|880860|880861|882225|882226|882227|882228|882229|882230|882231|882232|882233|882234|882235|882236|882237|882238|882239|882240|882241|882242|882243|882244|882245|882246|882247|882248|882249|882250|882251|882252|882253|882254|882255|882256|882257|882258|882259|882459|882460|882461|882462|882463|882464|882465|882466|882467|882468|882469|882470|882471|882472|882473|882474|882475|882782|882929|882930|882931|882932|882933|882934|882989|882990|882991|882992|882993|882994|882995|882996|882997|882998|882999|883000|883001|883002|883003|883004|883005|883006|883007|883008|883009|883010|884189|884190|884191|884192|884193|884194|884195|884196|884197|884198|884199|884200|884586|884587|884588|884589|884590|884591|884592|884593|884594|884595|884596|884597|884598|884599|884600|884601|884602|884603|884604|884605|884606|884607|884609|884610|884611|884612|884613|884614|884615|884616|884617|884618|884619|884620|884621|884622|884623|884624|884625|884626|884627|884628|884629|884630|884631|884632|884633|884634|884635|884636|884637|884638|884639|884640|884641|884642|884643|884644|884645|884646|884647|884648|884649|884650|884651|884652|884653|884654|884655|884656|884657|884658|884659|884660|884661|884662|884663|884664|884665|884666|884667|884668|884669|884670|884671|884672|884673|884674|885290|885291|885292|885293|885294|885295|885296|885297|885298|885299|885300|885301|885302|885303|885304|885305|885306|885307|885308|885309|885310|885311|885312|885313|885695|885696|885697|885698|885699|885700|885701|885702|885703|885704|885705|885706|885707|885708|885709|885710|885711|885712|885947|885948|885949|885950|885951|885952|885953|885954|886547|886548|886549|886550|886551|886552|886553|886554|886555|886556|886557|886558|886559|886560|887217|887218|887319|887320|887380|887381|887411|887412|887413|887414|887415|887416|887438|887439|887440|887441|887442|887486|887487|887488|887489|887490|887491|887492|887493|887494|887588|887589|887590|887591|887592|887593|887594|887595|887596|887597|887598|887599|887600|887601|887602|887603|887604|887605|887606|887607|887608|887609|887610|887611|887612|887613|887614|887615|887616|887617|887618|887619|887620|887621|887622|887623|887624|887625|887626|887627|887628|887629|887630|887631|887632|887633|887634|887635|887636|887637|887638|887639|887640|887641|887642|887643|887644|887645|887646|887647|887648|887649|887948|887949|887950|887951|887952|887953|887954|887955|887956|887957|887958|887959|887960|887961|887962|887963|887964|887965|887966|887967|887968|887969|887970|887971|887972|887973|887974|889783|889784|889785|889786|889787|889788|889789|889790|889791|889792|890280|890281|890282|890283|890284|890285|890286|890287|890288|890289|890290|890291|890292|890293|890294|890295|890296|890297|890298|890299|890300|890301|890302|890303|890304|890305|890306|890307|890308|890309|890310|890311|890312|890313|890314|890315|890316|890363|890364|890365|890366|890367|890368|890369|890370|890371|890372|890373|890374|890375|890376|890377|890378|890379|890380|890381|890382|890383|890384|890385|890386|890387|890682|890683|890684|890685|890686|890687|890688|890689|890690|890691|890692|890693|890694|890695|890696|890697|890698|891564|891565|891714|891755|891764|891765|891766|891767|891768|891795|891796|891797|891798|891998|891999|892000|892001|892002|892003|892004|892005|892051|892052|892053|892054|892055|892056|892057|892058|892059|892060|892061|892062|892063|892064|892065|892066|892067|892068|893473|893474|893475|893476|893477|893478|893479|893480|893481|893482|893483|893484|893485|893486|893487|893488|893489|893490|893491|893492|893493|893494|893495|893496|893497|893498|893499|893500|893501|893502|893503|893504|893505|893506|893507|893508|893509|893510|893511|893512|893513|893514|893515|893516|893517|893518|893519|893520|893521|893522|893523|895866|895867|895868|895869|895870|895871|895873|895874|895875|895876|895877|895986|895987|895988|895989|895990|896061|896166|896167|896168|896169|896235|896236|896266|896267|896268|896269|896270|896271|896272|896273|896274|896275|896276|896277|896278|896279|896280|896281|896282|896283|896284|896285|896286|896287|896288|896289|896290|896291|896292|896293|896294|896295|896296|896297|896298|896299|896300|896301|896302|896303|896304|896730|896731|896732|896733|896734|896735|896736|896737|896738|896739|896740|896741|896742|896743|896744|896745|896746|896747|896748|896749|896750|896751|896752|896753|896754|896755|896756|896757|896758|896759|896760|896761|896762|896763|896764|896765|896766|896767|896768|896769|896770|896771|896772|896773|896774|896775|896776|896777|896778|896779|897395|897396|897397|897398|897399|897400|897401|897402|897403|897404|897405|897406|897407|897408|897409|897410|897411|897412|897413|897414|897415|897416|897417|897418|897419|897420|897421|897910|897911|897912|897913|897914|897915|897916|897917|897918|897919|897920|897921|897922|898003|898004|898005|898006|899750|899751|899752|899753|899754|899755|899756|899757|899758|899759|899760|899761|899762|899763|899764|899765|899766|899767|899768|899769|899770|899771|899772|899773|899774|899775|899776|899777|899778|899779|899780|899781|900254|900255|900256|900257|900258|900309|900310|900311|900312|900349|900550|900551|900552|900553|900554|900555|900556|900557|900558|900559|900560|900561|900562|900563|900564|900565|900566|900567|900568|900569|900570|900571|900572|900573|900574|900575|900576|900577|901888|901889|901890|901891|901892|901893|901894|901895|901896|901897|901898|901899|901900|901901|901902|901903|901904|901905|901906|901907|901908|901909|901910|901911|901912|901913|901914|901915|901916|901917|903048|903049|903050|903051|903052|903053|903054|903055|903056|903057|903058|903059|903060|903061|903062|903386|903387|904869|919270|919374|919881|933338|941745|942097|943174|954455|961664|961665|961666|961667|961668|961669|961670|961671|961672|961673|961674|961675|961676|961677|961678|961679|961680|961681|961682|961683|961684|961685|961686|961687|961688|961690|961691|961692|961693|962012|962013|962016|962024|966347|976585|976586", + "upstreamId": "15075|15076|15077|15143|15144|16048|16367|16372|16376|17033|17086|17090|17093|17094|17097|17100|17390|17395|17396|17401|17403|17787|18374|18391|18401|18585|18589|19434|19436|19609|19616|19617|20180|20264|20571|20572|20648|20771|20772|20775|20777|21005|21008|21009|22401|22408|22619|22918|22923|22933|22940|22967|24189|24938|25583|25590|26898|27182|28037|28053|28057|28060|28064|28067|28071|28073|28076|28077|28079|28081|28089|28139|28140|28141|28142|28145|28149|28154|28159|28203|28206|28209|28222|31971|32646|38739|38825|39174|39666|39679|40151|40152|45727|48213|55056|55106|57545|57558|57571|57579|57593|57599|57626|57633|57634|57636|57640|57643|57644|57645|57646|57648|57649|57650|57657|57662|57667|57668|57669|57670|57671|57672|57677|57678|57680|57682|57683|57684|57690|57692|57702|57717|57726|57734|57743|57753|57763|57764|57766|57771|57773|57777|57796|70906|71372|76340|76385|76616|88254|96865|96877|98674|98675|98676|98753|98754|98766|98767|98777|98916|98917|98918|99374|99380|99508|99509|99510|99511|99512|99513|99514|99515|99516|99517|99518|99519|99520|99521|99522|99523|99524|99525|99599|99600|99601|99603|99605|99606|99607|99608|99965|99989|100027|100028|101058|101212|101214|101228|101229|101230|101233|101251|101253|101254|101256|101270|101271|101341|101449|101450|101479|101481|101631|101643|101644|101645|101646|101764|101803|101804|101927|102110|102111|102553|104543|104548|104554|104561|104567|104579|104585|104589|104592|104595|104596|104603|104605|104611|104655|104676|104696|104710|104718|104720|104726|104727|104757|104759|104761|104793|105063|105181|105221|105264|105287|105310|105394|105481|105486|105489|105493|105494|105497|105502|105506|105550|105553|105555|105560|105565|105567|105569|105571|105573|105574|105575|105580|105582|105615|105616|105621|105632|105677|105680|105683|105685|105686|105690|105694|105749|105758|105761|105762|105767|105795|105802|105803|106433|106434|106435|106436|106440|106443|106444|106445|106446|106448|106450|106451|106455|106456|106457|106458|106459|106485|106486|133696|140944|140950|140956|140959|140960|140962|140963|140964|140965|140966|140968|140969|140970|140971|140972|140973|140975|142335|142336|142337|142338|142339|142340|142341|142342|142343|142347|142607|142608|142609|142611|152782|152783|152784|152785|152786|152787|152788|152797|152798|152799|152800|152801|152802|152803|152804|152805|152806|152807|152808|152811|152812|152813|152814|152815|152816|152817|152818|152819|152820|152821|152822|152823|152824|152825|152826|152827|152828|152829|152830|152831|152832|152833|152834|152839|152840|152841|152842|152843|152844|152845|152847|152848|152851|152852|152853|152854|152855|152856|152857|152860|152861|152862|152863|152865|152866|152867|152868|152869|152872|152881|152882|152883|152887|152888|152891|152892|152893|152894|152895|152896|152897|152900|152901|152902|152903|166163|166173|172375|172388|172390|172520|172743|172771|172773|172775|172776|172784|172882|172889|172905|172911|172912|172913|172914|172918|172920|172922|172925|176952|176954|176961|176978|176987|177024|177056|177079|177083|177110|177122|177155|177209|177212|177215|177260|177261|177287|177340|177344|177358|177373|177381|177411|177472|177522|177528|177529|177576|177578|177579|177580|177606|177611|177612|177649|177699|177794|177818|177835|177889|177918|177920|177922|177924|177926|177982|177983|177987|178014|178015|178020|178023|178038|178040|178103|181395|188856|188865|188867|188982|188983|188992|189049|189155|189156|189157|189158|189159|189160|189161|189162|190238|190239|190250|190251|190253|190264|190277|190298|190299|190300|190301|190304|190305|190306|190309|190310|190311|190312|190403|190404|190406|190408|190494|190629|190683|190684|190685|190791|190829|190830|190865|190978|190982|191194|191235|191261|191269|191349|191357|191358|191417|191424|191435|191520|191636|191654|191655|191768|191769|191774|191956|191966|191986|191990|192093|192122|192225|192226|192268|192411|192412|192422|192431|192471|192532|192603|192618|192623|192826|192828|192847|192896|193026|193097|193098|193100|193293|193295|193443|193520|193579|193580|193583|193584|193587|193596|193597|193605|193625|193737|193738|193760|193761|193777|193834|193835|194029|194288|194294|194330|194334|194335|194347|194431|194433|194434|194435|194436|194580|194604|194631|194787|194815|194831|194927|194996|195037|195038|195093|195274|195353|195369|195369|195381|195392|195397|195479|195505|195551|195718|196012|203265|204538|204542|204543|204544|204551|204554|204555|204556|204560|205152|205180|205376|205377|205603|205604|205725|205726|206565|207325|213126|213127|213556|214235|214454|221358|226519|226525|227208|227209|227269|228304|228344|228352|229031|229178|231425|237468|237685|237986|238001|238025|238027|238028|238030|238031|238039|238081|238082|247005|247032|247423|247424|247425|247426|247427|247428|249423|249592|250436|250437|250438|250919|250920|250921|250922|251300|251364|251366|251367|251368|251369|252356|255107|255108|255110|255111|255112|255338|255852|255853|260350|264200|265176|265560|265561|265562|265617|265710|265947|265976|266047|266049|266055|266504|267424|267667|267810|268151|268646|269271|269272|269281|269623|269990|269991|270036|270098|270483|270607|270752|270754|270869|271073|271102|271103|271280|271310|271311|271533|271577|271677|271817|271822|272006|272007|272984|273551|273552|273553|273851|273853|274142|274143|274234|275072|275237|276329|276332|276348|276351|276352|276353|276561|276569|276570|276573|276617|276618|276621|276622|276623|276624|276625|276627|276628|276629|276630|276631|276634|276635|276881|276882|276883|276888|276892|276893|276894|277046|277047|277048|277051|277148|277151|277463|277475|277477|277478|277540|277541|277551|277562|278311|278320|278321|278335|278346|278348|278353|278354|278358|278928|278931|278932|278939|278940|278944|278947|278953|278954|278959|278969|278970|278971|278972|278977|278987|279068|279086|279087|279088|279095|279102|279103|279441|279448|279452|279453|279462|279468|279470|279527|279528|279529|279530|279532|279539|279540|279542|279543|279544|279547|279564|279572|280323|280331|280332|280334|280335|280338|280344|280345|280350|280351|280365|280366|280379|280380|280386|280391|280398|280400|280404|280405|280406|280408|280411|280412|280415|280417|280418|280419|280420|280421|280423|280425|280702|280703|280704|280706|280708|280715|280716|280717|280726|281145|281146|281151|281156|281580|281584|281586|281589|281595|281764|281767|281769|281991|282004|282005|282024|282030|282041|282042|282045|282119|282126|282127|282130|282167|282168|282169|282231|282232|282233|282247|282250|282251|282252|282253|282254|282957|282958|282960|282963|282966|283247|283248|283440|283445|283448|283454|283463|283466|283556|283557|283558|283560|283561|283562|283574|283584|283585|283589|283716|283717|283720|283732|283744|283753|283756|283762|283768|283787|284115|284119|284124|284125|284130|284140|284142|285376|285381|285382|285383|285384|285386|285387|285839|285845|285847|285852|285854|285857|285858|285862|285863|285864|285868|285869|285879|285880|285882|285893|285897|285898|285903|285908|285915|285916|285918|285919|285921|285925|285928|285929|285933|285934|285944|285945|286020|286021|286022|286025|286026|286027|286030|286036|286039|286041|286042|286043|286056|286412|286413|286414|286423|286426|286429|286430|286432|286433|286597|286599|286605|286612|286623|286628|286629|286632|286652|286653|286654|286655|286656|286669|286671|286672|286673|286675|286677|286679|286682|286685|286687|286689|286692|286706|286707|286716|286723|286726|286727|286728|286730|286915|286920|286923|286924|286938|286942|286944|286945|286947|287623|287625|287630|287633|287634|287637|287642|287645|287649|287654|287664|287666|287671|287674|287683|287690|287709|287711|287719|287721|287722|287848|287854|287859|287864|287868|287869|287870|287874|287878|287880|287884|287894|287897|287905|287909|287910|287913|287914|287923|287925|287935|287937|287944|288345|288347|288353|288383|288384|288385|288389|288391|288392|288393|288395|288398|288399|288400|288401|288405|288406|288542|288550|288553|288570|288571|288572|288574|288578|288579|288580|288603|288609|288617|288626|288629|288630|288631|288633|288636|288643|288646|288647|288648|288652|288659|288724|288725|288729|288730|288733|288736|288745|288748|288749|288768|288769|288770|288772|288828|288829|288835|288837|288845|288848|288849|288858|288860|288862|288866|288868|288870|288872|288873|288874|288880|288884|288889|288899|288900|288901|288911|288912|288913|288914|288915|288922|288926|288932|288935|288938|289236|289240|289247|289252|289254|289266|289284|289285|289296|289297|289301|289303|289311|289315|289318|289319|289339|289340|289344|289345|289347|289353|289456|289458|289463|289469|289484|289489|289490|289493|289494|290090|290091|290097|290099|290103|290111|290112|290122|290123|290124|290440|290441|290442|290453|290455|290459|290460|290466|290491|290492|290493|291162|291164|291176|291186|291204|291206|291207|291211|291228|291231|291232|291233|291235|291236|291237|291238|291244|291246|291323|291331|291335|291340|291343|291344|291345|291356|291369|291380|291465|291466|291478|291492|291497|291499|291518|291529|291531|291538|291539|291546|291559|291560|291627|291645|291649|291650|291657|291658|291661|291663|291670|291678|291679|291681|291684|291685|291686|291791|291792|291793|291802|291806|292512|292515|292516|292519|292520|292530|292531|292533|292534|292535|292538|292539|292546|292547|292553|292554|292555|292556|292558|292561|292597|292599|292683|292685|292686|292688|292689|292691|292695|292699|292700|292702|292704|292710|292711|292724|292732|292733|292734|292736|292737|293133|293470|293474|293944|293946|293963|293969|293970|293971|293972|293973|293975|293978|293979|293980|293981|293985|293986|294050|294067|294069|294070|294071|294072|294073|294074|294076|294078|294079|294080|294081|294082|294861|294864|294865|295264|295265|295273|295274|295279|295342|295348|295374|295375|295378|295379|295380|295386|295392|295395|295399|295400|295401|295404|295406|295407|295408|295416|296239|296243|296246|296255|296263|296264|296269|296270|296276|296279|296280|296281|296288|296289|296292|296293|296294|296300|296451|296453|296455|296466|297322|297323|297324|297325|297327|297328|297333|297335|297336|297342|297352|297354|297356|297357|297361|297362|297377|297378|297379|297386|297406|297407|297480|297481|297486|297488|297491|297493|297494|297497|297508|297519|297520|297521|297522|297535|297539|297546|297553|297554|297555|297557|297564|297565|297569|297593|297594|297616|297620|297621|298074|298076|298077|298081|298082|298083|298085|298087|298092|298094|298096|298103|298112|298113|298116|298522|298540|298541|298579|298580|298592|298607|298610|298616|298617|299055|299091|299092|299102|299103|299104|299112|299115|299117|299125|299139|299140|299141|299144|299145|299151|299152|299153|299156|299164|299172|299173|299186|299187|299192|299193|299198|299199|299202|299205|299208|299210|299231|299233|299937|299938|299942|300126|300128|300129|300130|300134|300137|300145|300146|300150|300152|300154|300156|300157|300161|300164|300166|300167|300169|300869|300871|300872|300878|300879|300891|300892|300897|300902|300903|300904|300912|300913|300915|300917|300923|301832|301833|301839|301840|301844|301845|302075|302076|302079|302088|302134|302135|302138|302142|302149|302150|302161|302162|302166|302342|302343|302356|302357|302359|302361|302362|302365|302366|302373|302383|302393|302394|302395|302403|302404|302411|302419|302420|302557|302558|302567|302568|302572|302573|302574|302576|302589|302593|302609|302611|302612|302613|302615|302810|302861|302863|302864|302865|302867|302869|302870|302871|302873|302878|302879|302880|302885|302916|302918|302926|302934|302935|302948|302949|302951|302953|302954|302960|302962|302963|303792|303803|303805|303808|303811|303813|303816|303823|303824|303825|303831|303832|303833|303840|303846|303847|303848|303851|303852|303857|304990|304997|305010|305021|305023|305432|305478|305490|305491|305497|305498|305502|305503|305511|305513|305518|305519|305544|305932|305933|305937|305938|305946|305947|305950|306077|306078|306079|306083|306166|306990|306991|307242|307243|307249|307250|307256|307263|307275|307276|307285|307287|307289|307290|307298|307321|307325|307326|307343|307353|307354|307355|307489|307508|307510|307511|307515|307520|307521|307522|307532|307546|307549|307550|307551|307552|307564|307565|307570|307575|307579|307586|308124|308125|308127|308137|308411|308446|308448|308450|308454|308456|308457|308460|308468|308475|308476|308477|308478|308480|308481|308489|308494|308495|308497|308500|308501|308502|308504|308506|308507|308508|308510|308513|308518|308523|308524|308529|308531|308539|308541|308542|308543|308549|309002|309362|309364|309372|309375|309378|309381|309382|309385|309391|309393|309396|309397|309672|309673|309674|309675|309676|309681|309683|309793|309795|309815|309818|309819|309821|309824|309845|310085|310087|310088|310091|310095|310120|310121|310340|310341|310343|310344|310345|310349|310351|310352|310353|310362|310363|310370|310380|310653|310655|310658|310660|310661|310663|310935|310946|310947|310949|310950|310955|310957|310960|311119|311120|311442|311443|311445|312487|312496|312498|312499|312500|312508|312515|312517|312536|314403|314405|314406|314422|314440|314452|314458|314459|314463|314464|314696|314699|314701|314704|314705|314706|314707|314708|314709|314718|314719|314720|314723|314724|314728|314735|314738|314752|314754|314764|314767|315427|315428|315430|315432|315433|315434|315437|315438|315439|315441|315447|315449|315451|315468|315474|315475|315477|315478|315479|315622|315623|315628|315629|315630|315633|315634|316993|317010|317011|317015|317026|317035|318364|318367|318368|318831|318839|318844|318851|318852|318853|320382|320383|320385|320388|321023|321024|321026|321027|321036|321037|321044|321045|321071|321089|321098|321100|321102|321103|321425|321426|321427|321448|321462|321467|321469|321478|321483|321485|321680|321683|321684|321685|321689|321692|321695|321697|321698|321699|322173|322179|322181|322182|322194|322207|322208|322209|322243|322251|322252|322268|322270|322271|322433|323009|323014|323015|323250|323251|323259|323260|323266|323267|323270|323277|323283|323284|323448|323451|323456|323458|323459|323460|323461|323472|323577|324895|325959|325961|325967|325968|325971|325973|325985|325986|326000|326002|326003|326013|326014|326016|326017|326032|326033|326038|326043|326044|326048|326049|327135|327145|327146|327159|327160|327164|327166|327167|327195|327220|327229|327230|327232|327367|327374|327375|327384|327385|327396|327409|327411|327414|327415|327416|327418|328207|328208|328209|328210|328211|328214|328220|328222|328228|329005|329006|329018|329040|329043|329049|329203|329204|329213|329214|329410|329412|329418|329426|329430|329445|329448|329449|329452|330117|330120|330122|330123|330200|330202|330204|330212|330213|330220|330221|330225|330227|330234|330578|330582|330583|330585|330588|330943|330945|330948|330950|330955|332935|332942|332943|332946|332952|332960|332962|332965|332968|333147|333149|333151|333153|333160|333162|333928|333931|333934|333935|333938|333939|333943|333946|333950|333952|333970|333971|333974|333976|333986|333988|333989|333990|333994|333995|333998|334000|334255|334257|334260|334261|334262|334270|334272|334274|334658|335079|335080|335090|335094|335097|335098|335101|335117|335610|335611|335622|335625|335636|335638|335642|335646|335657|335658|335659|335660|335662|335663|335667|335671|335674|335675|335676|335678|335679|335681|335685|335695|335697|335714|335717|335724|335726|335730|335733|335736|335738|335740|336386|336389|336391|336392|336398|336400|336404|336405|336423|336424|336631|336633|336639|336640|336642|337189|337193|337194|337199|337217|337224|337225|337228|337230|337233|337234|337244|337257|337281|337282|337285|337493|337496|337642|337643|337647|337650|337655|337659|337663|337680|337685|337690|337695|337703|337704|337713|337714|337715|338598|338600|338603|339210|339218|339219|339231|339393|339400|339403|339404|339706|339707|339710|339715|339716|339718|339720|339721|339722|339725|339729|339730|339734|339735|339737|339744|339806|339813|339814|339985|339987|339991|339993|339996|339999|340414|340417|340425|340426|340429|340442|340449|340455|340825|340827|340830|341242|341243|341247|341248|341371|341373|341378|341381|341382|341384|341387|342030|342033|342034|342038|342040|342045|342046|342051|342052|342055|342057|342060|342064|342068|342070|342071|343444|343448|343449|343456|343459|343460|343463|343466|343471|343472|343473|343474|343488|343496|343498|343504|343505|343509|343514|343515|343516|343518|343534|343535|343543|343544|343545|343548|343557|343558|343565|343566|343569|343570|343571|343572|343573|343591|343592|343593|343594|343602|343603|343609|343880|343881|343884|343893|343895|343896|343898|343903|343904|343907|343908|343912|343917|343918|343925|343926|343928|343929|343931|343933|344190|344192|344202|344203|344205|344206|344212|344213|344215|344861|344870|344874|344878|344889|344892|344895|345039|345040|345041|345042|345046|345047|345050|345051|345052|345055|345057|345059|345065|345220|345426|345432|345437|345443|345460|345462|345566|345711|346118|346123|346131|346133|346135|346136|346137|346139|346141|346142|346144|346146|346153|346154|346435|346438|346443|346619|346620|346622|346626|346627|346629|346798|346799|346806|346812|346815|346818|346819|347445|347452|347456|347460|347464|347469|347474|347477|347478|347773|347777|348751|348759|349187|349190|349193|349195|349199|349202|349205|349207|349208|349210|349211|349212|349215|349218|349221|349222|349224|349225|349226|349353|349354|349357|349785|349787|349788|349790|350102|350103|350106|350108|350110|350114|350116|350118|350119|350123|350124|350126|350127|350130|350133|350138|350143|350146|350147|350150|350155|350160|350165|350166|350168|350362|350367|350368|350369|350372|350373|350376|350377|350435|350437|350438|350439|350440|350442|350443|350445|350446|350448|350449|350800|350801|350804|351474|351475|351478|351479|351482|351485|351486|351487|351492|351494|351496|352244|352245|352246|352247|352248|352249|352250|352862|352863|352865|352866|352867|354176|358036|359518|360887|361007|361383|364867|365251|366713|367215|367970|367986|372472|389200|404762|405000|405252|406402|406437|406660|406869|406871|406889|407888|409585|413182|413235|413267|413272|413443|413451|413535|413611|413676|413717|413718|413822|413823|413825|415050|418822|418828|418829|420007|421203|428269|428272|429604|431561|431563|431566|431567|431570|431574|431575|431576|431577|431578|431581|431583|431585|431587|431588|431589|431590|431591|431592|431593|431594|431595|431596|431597|431598|431600|431601|431602|431607|431610|431620|431631|431641|431642|431648|431649|431651|431653|431654|431658|431659|431660|431662|431665|431666|431667|431668|431669|431672|431673|431674|431675|431676|431677|431679|431680|431681|431688|431689|431691|431692|431696|431697|431699|431700|431701|431702|431703|431704|431705|431706|431707|431708|431709|431711|431712|431714|431715|431720|431721|431724|431725|431726|431727|431728|431729|431730|431731|431732|431733|431734|431737|431738|431742|431755|431756|431771|431772|431775|431786|431788|431789|431791|431792|431793|431794|431795|431796|431797|431798|431799|431805|431806|431808|431809|431813|431819|431820|431821|431822|431823|431824|431825|431826|431827|431828|431830|431835|431836|431855|431856|431857|431858|431859|431860|431862|431863|431865|431871|431872|431874|431875|431878|431880|431882|433689|433782|437830|437840|437899|437900|438006|438007|438012|438124|438153|438192|438193|438305|438306|438321|438325|438326|438373|438395|438438|444472|448228|463360|481582|482103|486024|486057|486147|486149|486186|486233|486329|486397|486406|486477|486479|488346|488712|488887|489150|489331|489358|489433|489870|489877|490280|491563|496468|496475|498168|500531|506994|512912|512914|513054|513603|513916|514535|528788|528800|528852|536532|537118|537204|537207|537208|537271|537352|537353|537493|537496|537560|537561|537565|539191|540846|540887|540908|540917|540932|540997|541067|541070|541071|541086|541090|541097|541791|542144|542299|543884|543895|543897|543900|543908|543910|543915|543937|543952|543956|544217|544275|544296|544475|546384|547531|550249|551543|551553|551572|551574|551575|551576|551578|551579|551587|551595|551602|551603|578030|584907|585168|585295|585498|587547|609021|609443|609489|609587|610617|611617|611700|612511|612515|612516|612518|612520|612725|612757|612758|612761|612821|612859|613041|613067|613068|613249|613629|613632|619989|620025|620026|620042|620043|620084|620085|620086|620098|620104|620165|620166|620167|620206|620238|620239|620240|620241|620258|620301|620302|620303|620361|620408|620481|620558|620780|620793|620821|620823|620824|620860|620879|620918|623000|623791|623792|623793|623794|623796|623797|623798|623799|623800|623801|623802|623803|623804|623805|623806|623807|623808|623809|623810|623811|623823|623826|623828|623829|623830|623831|623832|623833|623834|623835|623836|623837|623839|623840|623841|623842|623843|623844|623845|623846|623847|623850|623853|623854|623855|623856|623857|623858|623859|623860|623861|623862|623863|623864|623865|623866|623867|623868|623869|623881|623882|623883|623884|623885|623886|623887|623888|623889|623890|623897|623899|623900|623901|623902|623903|623904|623908|623909|623910|623911|623912|623913|623914|623915|623916|623917|623918|623919|623920|623923|623924|623925|623926|623927|623928|623929|623930|623931|623932|623933|623934|623935|623937|623938|623939|623940|623941|623943|623944|623945|623946|623947|623950|623951|623952|623953|623959|623960|623962|623963|623964|623965|623966|623967|623971|623973|623974|623976|623978|623979|623980|623981|623982|623983|623985|623987|623992|623993|623995|623997|623998|623999|624000|624001|624002|624003|624004|624005|624006|624007|624008|624009|624013|624015|624018|624019|624020|624023|624024|624025|624026|624028|624033|624035|624036|624037|624038|624039|624040|624043|624044|626259|627740|629179|635123|642643|651577|651630|651635|651669|672015|672055|672056|672067|692130|696153|696154|696361|696860|696864|697415|697520|697521|697537|697538|697539|697706|698912|699561|699595|699814|699816|704293|705417|706969|706971|707504|707665|707666|707887|708112|708113|708223|708224|708225|708226|708227|708325|708417|709217|709726|709728|710472|710579|710581|710582|710583|712378|714579|715603|717791|718275|719065|719066|719466|719716|719717|719718|719719|719838|719931|719933|719934|720014|720819|722096|722097|722099|722100|722102|722103|722104|722105|722294|722453|723954|723956|725629|725846|726328|727010|731767|731768|732116|732351|733421|733422|733434|733440|733533|733534|733657|733660|734694|734925|734926|734928|735720|735721|735722|735723|735725|735938|736710|737492|737496|740913|741207|742549|744229|745661|745740|746632|747105|747570|747571|747730|747971|749334|750135|750136|750143|750146|750155|751200|751206|751672|755634|757695|758920|759059|760621|761621|762071|762720|763166|764376|764606|765766|765769|765770|765775|765777|765790|765793|768513|770312|770315|774640|775217|777303|777623|777625|777634|778113|779216|779562|779806|781416|781420|782612|782856|783137|785657|787508|790302|790303|790474|790481|790482|790524|790525|790648|790804|790805|790806|790902|790992|790993|791628|791629|791953|791954|791955|791956|791957|791958|791959|792434|792435|792436|792437|792438|792439|792440|792441|792442|792443|792444|792445|792680|794256|794411|794454|794522|794563|794572|794577|795221|795222|795257|795290|795292|795555|795655|795656|795889|795891|796179|796180|797023|797589|797922|797924|797956|798293|798296|798297|799224|799283|799284|799305|799552|799959|800418|800420|800422|800423|800425|800427|800428|800430|800432|800434|800437|800438|800439|800443|800444|800446|800447|800454|800465|800466|800467|800468|800469|800472|800473|800476|800486|800487|800488|800491|800492|800493|800497|800498|800499|800500|800501|800502|800503|800504|800505|800508|800510|800511|800515|800516|800518|800519|800520|800521|800522|800523|800524|800525|800527|800528|800529|800530|800533|800534|800536|800537|800538|800553|800556|800560|800582|800583|800584|800585|800586|800587|800588|800591|800592|800595|800596|800598|800601|800602|800603|800606|800607|800609|800612|800622|800623|800624|800629|800630|800631|800632|800633|800634|800635|800636|800637|800638|800639|800640|800641|800642|800650|800651|800652|800653|800687|800688|800689|800698|800700|800701|800702|800704|800705|800710|800711|801267|801268|801270|801271|801272|801273|801276|801278|801280|801282|801283|801285|801287|801288|801289|801290|801292|801293|801295|801297|801300|801301|801303|801308|801313|801315|801323|801325|801333|801334|801335|801336|801339|801341|801344|801345|801351|801352|801353|801354|801356|801358|801361|801362|801365|801366|801367|801368|801369|801370|801372|801373|801374|801375|801376|801377|801378|801379|801380|801384|801385|801389|801391|801394|801395|801396|801397|801398|801399|801400|801401|801403|801404|801405|801406|801407|801408|801409|801410|801412|801413|801414|801420|801421|801429|801433|801436|801440|801441|801443|801444|801445|801447|801448|801449|801452|801453|801456|801457|801458|801459|801460|801461|801462|801463|801464|801465|801466|801467|801468|801470|801471|801472|801473|801474|801475|801476|801477|801478|801479|801480|801481|801482|801483|801484|801485|801486|801487|801488|801489|801490|801491|801492|801493|801494|801495|801503|821836|821837|821880|822120|823467|824398|824456|824475|824690|824692|824700|824711|825972|825976|826178|826246|826871|826875|826882|826885|827164|827169|827270|827538|827540|828937|828938|829437|829458|829459|830508|830512|830523|830531|831890|831960|831963|831967|832181|832184|832196|832200|832212|832215|832224|832229|832231|832236|832238|832248|832251|832252|832253|832266|832273|832277|832961|832967|834893|836908|837364|838625|838637|842642|844047|844054|844067|844074|844075|848607|851826|855891|856143|856444|856592|856684|857176|858501|862196|862197|862198|862199|862200|862201|862202|862203|862204|862205|862424|862425|862426|862427|862428|862429|862430|862431|862432|862433|862434|862435|862436|862437|863217|863218|863219|863220|863221|863222|863223|863224|863225|863226|863227|863228|863229|863230|863231|863232|863233|863234|863235|863236|863530|863531|863532|863533|863534|863535|863536|863537|863538|863539|863540|863541|863542|863543|863544|863545|863546|863547|863548|863549|863550|863551|863552|863553|863554|863555|864264|864265|864266|864267|864268|864269|864270|864271|864272|864273|864274|864275|864276|864277|864278|864279|864280|864281|864282|864283|864771|864772|864773|864774|864775|864776|864777|864778|864779|864780|864781|864782|864783|864784|864785|864786|864787|864788|864789|864790|864791|864792|864793|864794|864996|865109|865110|865205|865206|865207|865883|865884|865885|865886|865887|865888|865889|865890|865891|865892|865893|865894|865895|865896|865897|865898|865899|865900|865901|865902|865903|865904|866443|866444|866445|866446|866447|866448|866449|868173|868174|868175|868176|868177|868178|868179|868180|868185|868186|868187|868188|868189|868190|868191|868192|868193|868194|868195|868196|868197|868523|868524|868665|868666|868667|871740|871741|871742|871743|871744|871745|871746|871747|871748|871749|872096|872097|872099|872101|872102|872103|872104|872105|872852|872853|872854|872855|872856|872857|872858|872859|872860|872861|872862|872863|872864|872865|872866|872867|872868|872869|872870|872871|872872|872873|872874|872875|872876|872877|872878|872879|874060|874061|874062|874063|874064|874067|874068|874069|874070|874071|874072|874073|874211|874212|874213|874214|874215|874216|874217|874218|874219|874220|874221|874222|874223|874224|875680|875681|875682|875683|875684|875685|875686|875687|875688|875689|875690|875691|875692|875693|875694|875695|875696|875697|875698|875699|875700|875701|875702|875703|875704|875705|875706|875707|875708|875709|875710|875711|875712|875713|875714|875715|875716|875717|875718|875719|875720|875721|875722|875723|875724|875725|875726|875727|875728|875729|875730|875731|875732|875733|876462|876563|876564|876583|876584|876585|876692|876693|876694|876695|876696|876697|876698|876699|876700|876701|876851|876852|876853|876854|876855|876856|876857|876858|876859|876860|876861|876862|876863|876864|876865|876866|876867|876868|876869|876870|876871|876872|876873|876874|876875|876876|876877|877987|877988|877989|877990|877991|878168|878171|878175|878176|878177|878178|878179|878180|878181|878182|878183|878184|878185|878186|878187|878188|878189|878621|878622|878623|878624|878625|878626|878627|878628|878629|878630|878631|878632|878633|878634|878635|878636|878637|878638|878639|878823|878824|878825|878826|878827|878828|878829|878830|878831|878832|880468|880469|880470|880471|880472|880473|880474|880475|880476|880477|880606|880846|880847|880848|880849|880850|880851|880852|880853|880854|880855|880856|880857|880858|880859|880860|880861|882225|882226|882227|882228|882229|882230|882231|882232|882233|882234|882235|882236|882237|882238|882239|882240|882241|882242|882243|882244|882245|882246|882247|882248|882249|882250|882251|882252|882253|882254|882255|882256|882257|882258|882259|882459|882460|882461|882462|882463|882464|882465|882466|882467|882468|882469|882470|882471|882472|882473|882474|882475|882782|882929|882930|882931|882932|882933|882934|882989|882990|882991|882992|882993|882994|882995|882996|882997|882998|882999|883000|883001|883002|883003|883004|883005|883006|883007|883008|883009|883010|884189|884190|884191|884192|884193|884194|884195|884196|884197|884198|884199|884200|884586|884587|884588|884589|884590|884591|884592|884593|884594|884595|884596|884597|884598|884599|884600|884601|884602|884603|884604|884605|884606|884607|884609|884610|884611|884612|884613|884614|884615|884616|884617|884618|884619|884620|884621|884622|884623|884624|884625|884626|884627|884628|884629|884630|884631|884632|884633|884634|884635|884636|884637|884638|884639|884640|884641|884642|884643|884644|884645|884646|884647|884648|884649|884650|884651|884652|884653|884654|884655|884656|884657|884658|884659|884660|884661|884662|884663|884664|884665|884666|884667|884668|884669|884670|884671|884672|884673|884674|885290|885291|885292|885293|885294|885295|885296|885297|885298|885299|885300|885301|885302|885303|885304|885305|885306|885307|885308|885309|885310|885311|885312|885313|885695|885696|885697|885698|885699|885700|885701|885702|885703|885704|885705|885706|885707|885708|885709|885710|885711|885712|885947|885948|885949|885950|885951|885952|885953|885954|886547|886548|886549|886550|886551|886552|886553|886554|886555|886556|886557|886558|886559|886560|887217|887218|887319|887320|887380|887381|887411|887412|887413|887414|887415|887416|887438|887439|887440|887441|887442|887486|887487|887488|887489|887490|887491|887492|887493|887494|887588|887589|887590|887591|887592|887593|887594|887595|887596|887597|887598|887599|887600|887601|887602|887603|887604|887605|887606|887607|887608|887609|887610|887611|887612|887613|887614|887615|887616|887617|887618|887619|887620|887621|887622|887623|887624|887625|887626|887627|887628|887629|887630|887631|887632|887633|887634|887635|887636|887637|887638|887639|887640|887641|887642|887643|887644|887645|887646|887647|887648|887649|887948|887949|887950|887951|887952|887953|887954|887955|887956|887957|887958|887959|887960|887961|887962|887963|887964|887965|887966|887967|887968|887969|887970|887971|887972|887973|887974|889783|889784|889785|889786|889787|889788|889789|889790|889791|889792|890280|890281|890282|890283|890284|890285|890286|890287|890288|890289|890290|890291|890292|890293|890294|890295|890296|890297|890298|890299|890300|890301|890302|890303|890304|890305|890306|890307|890308|890309|890310|890311|890312|890313|890314|890315|890316|890363|890364|890365|890366|890367|890368|890369|890370|890371|890372|890373|890374|890375|890376|890377|890378|890379|890380|890381|890382|890383|890384|890385|890386|890387|890682|890683|890684|890685|890686|890687|890688|890689|890690|890691|890692|890693|890694|890695|890696|890697|890698|891564|891565|891714|891755|891764|891765|891766|891767|891768|891795|891796|891797|891798|891998|891999|892000|892001|892002|892003|892004|892005|892051|892052|892053|892054|892055|892056|892057|892058|892059|892060|892061|892062|892063|892064|892065|892066|892067|892068|893473|893474|893475|893476|893477|893478|893479|893480|893481|893482|893483|893484|893485|893486|893487|893488|893489|893490|893491|893492|893493|893494|893495|893496|893497|893498|893499|893500|893501|893502|893503|893504|893505|893506|893507|893508|893509|893510|893511|893512|893513|893514|893515|893516|893517|893518|893519|893520|893521|893522|893523|895866|895867|895868|895869|895870|895871|895873|895874|895875|895876|895877|895986|895987|895988|895989|895990|896061|896166|896167|896168|896169|896235|896236|896266|896267|896268|896269|896270|896271|896272|896273|896274|896275|896276|896277|896278|896279|896280|896281|896282|896283|896284|896285|896286|896287|896288|896289|896290|896291|896292|896293|896294|896295|896296|896297|896298|896299|896300|896301|896302|896303|896304|896730|896731|896732|896733|896734|896735|896736|896737|896738|896739|896740|896741|896742|896743|896744|896745|896746|896747|896748|896749|896750|896751|896752|896753|896754|896755|896756|896757|896758|896759|896760|896761|896762|896763|896764|896765|896766|896767|896768|896769|896770|896771|896772|896773|896774|896775|896776|896777|896778|896779|897395|897396|897397|897398|897399|897400|897401|897402|897403|897404|897405|897406|897407|897408|897409|897410|897411|897412|897413|897414|897415|897416|897417|897418|897419|897420|897421|897910|897911|897912|897913|897914|897915|897916|897917|897918|897919|897920|897921|897922|898003|898004|898005|898006|899750|899751|899752|899753|899754|899755|899756|899757|899758|899759|899760|899761|899762|899763|899764|899765|899766|899767|899768|899769|899770|899771|899772|899773|899774|899775|899776|899777|899778|899779|899780|899781|900254|900255|900256|900257|900258|900309|900310|900311|900312|900349|900550|900551|900552|900553|900554|900555|900556|900557|900558|900559|900560|900561|900562|900563|900564|900565|900566|900567|900568|900569|900570|900571|900572|900573|900574|900575|900576|900577|901888|901889|901890|901891|901892|901893|901894|901895|901896|901897|901898|901899|901900|901901|901902|901903|901904|901905|901906|901907|901908|901909|901910|901911|901912|901913|901914|901915|901916|901917|903048|903049|903050|903051|903052|903053|903054|903055|903056|903057|903058|903059|903060|903061|903062|903386|903387|904869|919270|919374|919881|933338|941745|942097|943174|954455|961664|961665|961666|961667|961668|961669|961670|961671|961672|961673|961674|961675|961676|961677|961678|961679|961680|961681|961682|961683|961684|961685|961686|961687|961688|961690|961691|961692|961693|962012|962013|962016|962024|966347|976585|976586", "text": "Retinitis pigmentosa" }, { - "baseId": "15079|15080|15081|15082|15083|39992|39993|39994|39995|39996|39997|39998|39999|99440|99442|99443|99444|141609|141610|141611|141612|141613|169473|169474|169475|169477|169478|169480|169481|169482|169483|169484|169485|169486|169487|169488|169489|169490|169491|169492|169493|169495|169496|169497|169499|169501|169502|169505|169506|169507|169508|169509|169510|169511|169512|169513|169514|169515|169517|169518|169519|169520|169521|169522|169523|169524|169526|169527|169528|169529|169530|169531|169532|169533|169534|169536|169537|169538|169539|169540|178157|192271|193023|193774|208571|208575|208576|208578|265067|268026|268831|333226|333227|333234|333239|333241|333242|333254|333265|333266|343335|343337|343340|343342|343343|343346|343349|343351|343353|348629|348630|348631|348634|348635|348638|348639|348641|349700|349703|349704|349707|349708|349711|349712|349715|349716|379530|413504|430185|430187|430189|446093|488843|492004|508924|613133|620635|620636|623017|623018|669669|677265|681832|728140|756942|806043|806290|855116|880367|880368|880369|880370|880371|880372|880373|880374|880375|880376|880377|880378|880379|880380|880381|880382|880383|880384|880385|880386|880735|880736|880737|880738|880739|880740|880741|919851|964523|965746|966006|966007|966008|966009", + "upstreamId": "15079|15080|15081|15082|15083|39992|39993|39994|39995|39996|39997|39998|39999|99440|99442|99443|99444|141609|141610|141611|141612|141613|169473|169474|169475|169477|169478|169480|169481|169482|169483|169484|169485|169486|169487|169488|169489|169490|169491|169492|169493|169495|169496|169497|169499|169501|169502|169505|169506|169507|169508|169509|169510|169511|169512|169513|169514|169515|169517|169518|169519|169520|169521|169522|169523|169524|169526|169527|169528|169529|169530|169531|169532|169533|169534|169536|169537|169538|169539|169540|178157|192271|193023|193774|208571|208575|208576|208578|265067|268026|268831|333226|333227|333234|333239|333241|333242|333254|333265|333266|343335|343337|343340|343342|343343|343346|343349|343351|343353|348629|348630|348631|348634|348635|348638|348639|348641|349700|349703|349704|349707|349708|349711|349712|349715|349716|379530|413504|430185|430187|430189|446093|488843|492004|508924|613133|620635|620636|623017|623018|669669|677265|681832|728140|756942|806043|806290|855116|880367|880368|880369|880370|880371|880372|880373|880374|880375|880376|880377|880378|880379|880380|880381|880382|880383|880384|880385|880386|880735|880736|880737|880738|880739|880740|880741|919851|964523|965746|966006|966007|966008|966009", "text": "Primary autosomal recessive microcephaly 2" }, { - "baseId": "15080|19999|34434|167642|208040|222995|247394|247395|247396|428854|496152", + "upstreamId": "15080|19999|34434|167642|208040|222995|247394|247395|247396|428854|496152", "text": "Primary autosomal recessive microcephaly" }, { - "baseId": "15084|101641|172323|186006|190552|190886|212273|221320|221321|221321|250755|250756|250757|250759|286960|286966|286970|286971|286975|286988|286989|287727|287744|287746|287748|287751|290127|290128|290129|290132|290134|290495|290497|290499|290503|290516|290517|290518|512811|518584|518637|560894|620090|620749|683505|683506|683507|686230|686231|885314|885315|885316|885317|885318|885319|885320|885321|885322|885323|885324|885325|887382|887383|887384|887385|887386|906280|963128|969601|969602", + "upstreamId": "15084|101641|172323|186006|190552|190886|212273|221320|221321|221321|250755|250756|250757|250759|286960|286966|286970|286971|286975|286988|286989|287727|287744|287746|287748|287751|290127|290128|290129|290132|290134|290495|290497|290499|290503|290516|290517|290518|512811|518584|518637|560894|620090|620749|683505|683506|683507|686230|686231|885314|885315|885316|885317|885318|885319|885320|885321|885322|885323|885324|885325|887382|887383|887384|887385|887386|906280|963128|969601|969602", "text": "Bardet-Biedl syndrome 15" }, { - "baseId": "15085", + "upstreamId": "15085", "text": "Bardet-Biedl syndrome 12, modifier of" }, { - "baseId": "15086", + "upstreamId": "15086", "text": "Meckel syndrome, type 6, modifier of" }, { - "baseId": "15087|15088|15089|135980|135981|135982|135983|135984|135985|135986|143094|143095|143096|143097|143099|143100|143101|143102|192294|192295|192525|194350|203222|203228|203234|203238|203241|203242|203245|203246|203250|208250|230634|230638|230643|230645|324792|324793|324797|324799|324803|324818|324819|324823|324827|324829|324833|324836|324839|324840|324843|324847|324856|324858|324860|324861|324862|324873|324874|324878|324879|324883|334412|334415|334416|334423|334426|334429|334436|334440|334444|334447|334450|334457|334459|334470|334471|334473|334474|334476|334481|334484|334486|334488|334490|334495|341007|341008|341009|341012|341013|341020|341021|341023|341024|341027|341030|341032|341036|341037|341038|341039|341043|341045|341046|341047|341048|341053|341057|342539|342547|342548|342550|342551|342552|342553|342558|342560|342563|342565|342567|342569|342572|342575|342579|342582|342583|342587|342588|342589|342590|342592|342594|342595|342598|342602|342604|342607|374293|374986|375027|426166|429780|429781|614419|644501|797289|874994|874995|874996|874997|874998|874999|875000|875001|875002|875003|875004|875005|875006|875007|875008|875009|875010|875011|875012|875013|875014|875015|875016|875017|875018|875019|875020|875021|875022|875023|875024|875025|875026|875027|875028|875029|875030|875031|875032|875033|875034|875035|875036|875037|875038|875039|875040|875041|875042|875043|875044|875045|875046|875047", + "upstreamId": "15087|15088|15089|135980|135981|135982|135983|135984|135985|135986|143094|143095|143096|143097|143099|143100|143101|143102|192294|192295|192525|194350|203222|203228|203234|203238|203241|203242|203245|203246|203250|208250|230634|230638|230643|230645|324792|324793|324797|324799|324803|324818|324819|324823|324827|324829|324833|324836|324839|324840|324843|324847|324856|324858|324860|324861|324862|324873|324874|324878|324879|324883|334412|334415|334416|334423|334426|334429|334436|334440|334444|334447|334450|334457|334459|334470|334471|334473|334474|334476|334481|334484|334486|334488|334490|334495|341007|341008|341009|341012|341013|341020|341021|341023|341024|341027|341030|341032|341036|341037|341038|341039|341043|341045|341046|341047|341048|341053|341057|342539|342547|342548|342550|342551|342552|342553|342558|342560|342563|342565|342567|342569|342572|342575|342579|342582|342583|342587|342588|342589|342590|342592|342594|342595|342598|342602|342604|342607|374293|374986|375027|426166|429780|429781|614419|644501|797289|874994|874995|874996|874997|874998|874999|875000|875001|875002|875003|875004|875005|875006|875007|875008|875009|875010|875011|875012|875013|875014|875015|875016|875017|875018|875019|875020|875021|875022|875023|875024|875025|875026|875027|875028|875029|875030|875031|875032|875033|875034|875035|875036|875037|875038|875039|875040|875041|875042|875043|875044|875045|875046|875047", "text": "Myoclonic epilepsy, familial infantile" }, { - "baseId": "15088|71464|96871|96874|96874|135980|135981|135982|135983|135984|135985|135986|135987|136991|143096|143097|143098|143099|143100|143101|181290|192295|192296|192525|194350|203221|203222|203223|203224|203225|203226|203228|203228|203229|203230|203233|203234|203236|203238|203240|203241|203241|203242|203242|203245|203247|203248|203250|203252|203253|203254|204635|208250|230634|230635|230636|230638|230643|230645|230645|242398|269132|271757|324793|341009|341012|341013|362597|362598|374296|374986|374995|375002|375011|375027|375276|375281|375283|377427|377432|377436|401123|401125|401880|401887|409578|409583|413423|413424|413425|413897|422086|422086|422087|426165|426166|429779|429780|441890|445550|445553|465533|465575|465579|465581|466288|466298|466302|466307|466339|466552|466556|466560|466569|466570|466573|486131|497076|497258|497477|529860|529862|529945|529950|529951|529956|530198|530395|568036|568038|570029|570030|570033|570218|570219|570221|570222|570225|573994|573996|578528|580064|614419|644496|644497|644498|644499|644500|644501|644502|644503|644504|644505|644506|644507|644508|644509|644510|644511|644512|653128|653252|684581|688556|688557|688558|688559|770799|788897|843650|843651|843652|843653|843654|843655|843656|843657|843658|843659|843660|843661|843662|843663|843664|843665|843666|843667|843668|843669|843670|874998|875001|919636|919637|919637|927749|937387|937388|937389|937390|937391|937392|949330|949331|949332|949333|949334|949335|957710|957711|957712|957713|957714|957715|960842", + "upstreamId": "15088|71464|96871|96874|96874|135980|135981|135982|135983|135984|135985|135986|135987|136991|143096|143097|143098|143099|143100|143101|181290|192295|192296|192525|194350|203221|203222|203223|203224|203225|203226|203228|203228|203229|203230|203233|203234|203236|203238|203240|203241|203241|203242|203242|203245|203247|203248|203250|203252|203253|203254|204635|208250|230634|230635|230636|230638|230643|230645|230645|242398|269132|271757|324793|341009|341012|341013|362597|362598|374296|374986|374995|375002|375011|375027|375276|375281|375283|377427|377432|377436|401123|401125|401880|401887|409578|409583|413423|413424|413425|413897|422086|422086|422087|426165|426166|429779|429780|441890|445550|445553|465533|465575|465579|465581|466288|466298|466302|466307|466339|466552|466556|466560|466569|466570|466573|486131|497076|497258|497477|529860|529862|529945|529950|529951|529956|530198|530395|568036|568038|570029|570030|570033|570218|570219|570221|570222|570225|573994|573996|578528|580064|614419|644496|644497|644498|644499|644500|644501|644502|644503|644504|644505|644506|644507|644508|644509|644510|644511|644512|653128|653252|684581|688556|688557|688558|688559|770799|788897|843650|843651|843652|843653|843654|843655|843656|843657|843658|843659|843660|843661|843662|843663|843664|843665|843666|843667|843668|843669|843670|874998|875001|919636|919637|919637|927749|937387|937388|937389|937390|937391|937392|949330|949331|949332|949333|949334|949335|957710|957711|957712|957713|957714|957715|960842", "text": "Deafness, autosomal dominant 65" }, { - "baseId": "15088|71464|96871|96874|135980|135981|135982|135983|135984|135985|135986|135987|143096|143097|143098|143099|143100|143101|181290|192295|192296|192525|194350|203221|203222|203223|203224|203225|203226|203228|203229|203230|203233|203234|203236|203238|203240|203241|203242|203245|203247|203248|203250|203252|203253|203254|204635|208250|230634|230635|230636|230638|230643|230645|242398|269132|271757|324793|341009|341012|341013|362597|362598|374296|374986|374995|375002|375011|375027|375276|375281|375283|377427|377432|377436|401123|401125|401880|401887|409578|409583|413423|413424|413425|422086|422087|426165|426166|429779|429780|441890|445550|445553|465533|465575|465579|465581|466288|466298|466302|466307|466339|466552|466556|466560|466569|466570|466573|486131|497076|497258|497477|529860|529862|529945|529950|529951|529956|530198|530395|568036|568038|570029|570030|570033|570218|570219|570221|570222|570225|573994|573996|580064|644496|644497|644498|644499|644500|644501|644502|644503|644504|644505|644506|644507|644508|644509|644510|644511|644512|653128|653252|684581|688556|688557|688558|688559|770799|843650|843651|843652|843653|843654|843655|843656|843657|843658|843659|843660|843661|843662|843663|843664|843665|843666|843667|843668|843669|843670|874998|875001|919637|927749|937387|937388|937389|937390|937391|937392|949330|949331|949332|949333|949334|949335|957710|957711|957712|957713|957714|957715|960842", + "upstreamId": "15088|71464|96871|96874|135980|135981|135982|135983|135984|135985|135986|135987|143096|143097|143098|143099|143100|143101|181290|192295|192296|192525|194350|203221|203222|203223|203224|203225|203226|203228|203229|203230|203233|203234|203236|203238|203240|203241|203242|203245|203247|203248|203250|203252|203253|203254|204635|208250|230634|230635|230636|230638|230643|230645|242398|269132|271757|324793|341009|341012|341013|362597|362598|374296|374986|374995|375002|375011|375027|375276|375281|375283|377427|377432|377436|401123|401125|401880|401887|409578|409583|413423|413424|413425|422086|422087|426165|426166|429779|429780|441890|445550|445553|465533|465575|465579|465581|466288|466298|466302|466307|466339|466552|466556|466560|466569|466570|466573|486131|497076|497258|497477|529860|529862|529945|529950|529951|529956|530198|530395|568036|568038|570029|570030|570033|570218|570219|570221|570222|570225|573994|573996|580064|644496|644497|644498|644499|644500|644501|644502|644503|644504|644505|644506|644507|644508|644509|644510|644511|644512|653128|653252|684581|688556|688557|688558|688559|770799|843650|843651|843652|843653|843654|843655|843656|843657|843658|843659|843660|843661|843662|843663|843664|843665|843666|843667|843668|843669|843670|874998|875001|919637|927749|937387|937388|937389|937390|937391|937392|949330|949331|949332|949333|949334|949335|957710|957711|957712|957713|957714|957715|960842", "text": "Caused by mutation in the TBC1 domain family, member 24" }, { - "baseId": "15088|26225|26225|26226|26226|26227|26228|26238|26241|34642|38918|38919|38920|71464|96871|96874|102345|102347|102348|102349|102350|125920|135980|135981|135982|135983|135984|135985|135986|135986|135987|140124|143096|143097|143098|143099|143100|143101|166526|167591|167596|167601|167602|167603|167603|167606|167608|167610|181290|181448|188155|192295|192296|192525|192561|192562|192564|194350|194533|203221|203222|203223|203224|203225|203226|203228|203229|203230|203233|203234|203236|203238|203240|203241|203242|203245|203247|203248|203250|203252|203253|203254|203754|204635|208250|208304|209009|209021|209024|209028|215521|225804|230634|230635|230636|230638|230643|230645|232150|236971|237029|237434|242398|242507|242508|242509|242510|242511|242512|242513|242514|242515|242516|242517|243787|255880|255881|255883|255884|255886|260303|269132|271757|272619|324793|341009|341012|341013|360300|361223|362597|362598|364009|364067|374296|374568|374571|374572|374578|374588|374986|374995|375002|375011|375027|375276|375281|375283|375442|375450|375456|375463|375464|375467|375477|375648|375652|375655|375669|375670|377427|377432|377436|377779|377788|377798|377808|377812|378138|378144|379290|379292|384519|401123|401125|401330|401332|401340|401341|401342|401343|401345|401349|401356|401358|401860|401861|401867|401868|401874|401880|401887|402122|402123|402125|404176|404510|404513|404534|404535|409578|409583|409741|409744|410488|411306|413423|413424|413425|415510|422086|422087|426165|426166|426181|426686|426687|429779|429780|429847|429848|430770|438018|441890|445550|445553|445615|445617|445618|445621|445622|445625|464847|465441|465453|465533|465575|465579|465581|465985|465991|465995|465999|466004|466008|466009|466017|466288|466298|466302|466307|466339|466552|466556|466560|466569|466570|466573|466707|466711|466712|466714|466717|466718|466767|466770|466774|466783|466791|466996|466998|467000|470657|470658|471582|471843|471844|472116|472117|472118|480424|486131|486786|497076|497258|497477|505506|505767|505947|506504|508145|508522|512648|513665|513688|529274|529276|529860|529862|529945|529950|529951|529956|530198|530254|530256|530260|530270|530277|530280|530283|530291|530298|530356|530359|530395|530552|530555|530561|530562|530770|530772|530773|534398|534701|534706|534707|534789|534792|534801|534806|535127|535128|536912|536913|536914|539058|567542|567543|567547|568036|568038|568339|568342|568346|568356|568358|568368|568371|569397|569399|569815|569817|570029|570030|570033|570218|570219|570221|570222|570225|570467|570470|570474|570474|570477|570480|570481|570483|570485|570491|570544|570546|570551|570553|570555|572392|572394|573773|573774|573774|573776|573994|573996|574167|574168|574169|574170|574171|574172|574173|574174|574494|574525|575383|575384|577571|578383|578532|578564|578586|580064|580902|580943|581077|581231|586384|590359|612167|622313|622474|622928|626118|644496|644497|644498|644499|644500|644501|644502|644503|644504|644505|644506|644507|644508|644509|644510|644511|644512|644985|644986|644987|644988|644989|644990|644991|644992|644993|644994|644995|644996|644997|644998|644999|645000|645001|645002|645003|645004|645005|649936|649937|649938|649939|649940|649941|649942|649943|649944|649945|649946|652481|652662|653128|653150|653252|653314|653385|653637|677452|684581|684627|684628|688556|688557|688558|688559|688658|688659|688661|689455|689457|689459|690149|690269|715087|770799|771070|771071|773967|776375|788071|791644|791645|791646|792250|792251|792252|800920|806383|806383|820877|820878|820879|820880|820881|820882|820883|820884|822223|843650|843651|843652|843653|843654|843655|843656|843657|843658|843659|843660|843661|843662|843663|843664|843665|843666|843667|843668|843669|843670|844334|844335|844336|844337|844338|844339|844340|844341|844342|844343|844344|844345|844346|844347|844348|844349|844350|844351|844352|844353|844354|844355|844356|844357|844358|844359|849914|849915|849916|849917|849918|851681|852129|857625|858378|860286|860511|860837|874998|875001|903652|919637|927749|927954|927955|927956|927957|927958|927959|927960|927961|929675|929676|929677|929678|929679|929680|929681|937387|937388|937389|937390|937391|937392|937622|937623|937624|937625|937626|937627|939544|939545|939546|949330|949331|949332|949333|949334|949335|949575|949576|949577|949578|949579|949580|949581|949582|949583|949584|949585|949586|949587|949588|951723|951724|951725|951726|951727|951728|951729|951730|951731|951732|951733|957710|957711|957712|957713|957714|957715|957881|957882|957883|957884|957885|957886|959236|959237|960179|960842|963916|963917|963918|964599|964600|964601|966622|971200|971201", + "upstreamId": "15088|26225|26225|26226|26226|26227|26228|26238|26241|34642|38918|38919|38920|71464|96871|96874|102345|102347|102348|102349|102350|125920|135980|135981|135982|135983|135984|135985|135986|135986|135987|140124|143096|143097|143098|143099|143100|143101|166526|167591|167596|167601|167602|167603|167603|167606|167608|167610|181290|181448|188155|192295|192296|192525|192561|192562|192564|194350|194533|203221|203222|203223|203224|203225|203226|203228|203229|203230|203233|203234|203236|203238|203240|203241|203242|203245|203247|203248|203250|203252|203253|203254|203754|204635|208250|208304|209009|209021|209024|209028|215521|225804|230634|230635|230636|230638|230643|230645|232150|236971|237029|237434|242398|242507|242508|242509|242510|242511|242512|242513|242514|242515|242516|242517|243787|255880|255881|255883|255884|255886|260303|269132|271757|272619|324793|341009|341012|341013|360300|361223|362597|362598|364009|364067|374296|374568|374571|374572|374578|374588|374986|374995|375002|375011|375027|375276|375281|375283|375442|375450|375456|375463|375464|375467|375477|375648|375652|375655|375669|375670|377427|377432|377436|377779|377788|377798|377808|377812|378138|378144|379290|379292|384519|401123|401125|401330|401332|401340|401341|401342|401343|401345|401349|401356|401358|401860|401861|401867|401868|401874|401880|401887|402122|402123|402125|404176|404510|404513|404534|404535|409578|409583|409741|409744|410488|411306|413423|413424|413425|415510|422086|422087|426165|426166|426181|426686|426687|429779|429780|429847|429848|430770|438018|441890|445550|445553|445615|445617|445618|445621|445622|445625|464847|465441|465453|465533|465575|465579|465581|465985|465991|465995|465999|466004|466008|466009|466017|466288|466298|466302|466307|466339|466552|466556|466560|466569|466570|466573|466707|466711|466712|466714|466717|466718|466767|466770|466774|466783|466791|466996|466998|467000|470657|470658|471582|471843|471844|472116|472117|472118|480424|486131|486786|497076|497258|497477|505506|505767|505947|506504|508145|508522|512648|513665|513688|529274|529276|529860|529862|529945|529950|529951|529956|530198|530254|530256|530260|530270|530277|530280|530283|530291|530298|530356|530359|530395|530552|530555|530561|530562|530770|530772|530773|534398|534701|534706|534707|534789|534792|534801|534806|535127|535128|536912|536913|536914|539058|567542|567543|567547|568036|568038|568339|568342|568346|568356|568358|568368|568371|569397|569399|569815|569817|570029|570030|570033|570218|570219|570221|570222|570225|570467|570470|570474|570474|570477|570480|570481|570483|570485|570491|570544|570546|570551|570553|570555|572392|572394|573773|573774|573774|573776|573994|573996|574167|574168|574169|574170|574171|574172|574173|574174|574494|574525|575383|575384|577571|578383|578532|578564|578586|580064|580902|580943|581077|581231|586384|590359|612167|622313|622474|622928|626118|644496|644497|644498|644499|644500|644501|644502|644503|644504|644505|644506|644507|644508|644509|644510|644511|644512|644985|644986|644987|644988|644989|644990|644991|644992|644993|644994|644995|644996|644997|644998|644999|645000|645001|645002|645003|645004|645005|649936|649937|649938|649939|649940|649941|649942|649943|649944|649945|649946|652481|652662|653128|653150|653252|653314|653385|653637|677452|684581|684627|684628|688556|688557|688558|688559|688658|688659|688661|689455|689457|689459|690149|690269|715087|770799|771070|771071|773967|776375|788071|791644|791645|791646|792250|792251|792252|800920|806383|806383|820877|820878|820879|820880|820881|820882|820883|820884|822223|843650|843651|843652|843653|843654|843655|843656|843657|843658|843659|843660|843661|843662|843663|843664|843665|843666|843667|843668|843669|843670|844334|844335|844336|844337|844338|844339|844340|844341|844342|844343|844344|844345|844346|844347|844348|844349|844350|844351|844352|844353|844354|844355|844356|844357|844358|844359|849914|849915|849916|849917|849918|851681|852129|857625|858378|860286|860511|860837|874998|875001|903652|919637|927749|927954|927955|927956|927957|927958|927959|927960|927961|929675|929676|929677|929678|929679|929680|929681|937387|937388|937389|937390|937391|937392|937622|937623|937624|937625|937626|937627|939544|939545|939546|949330|949331|949332|949333|949334|949335|949575|949576|949577|949578|949579|949580|949581|949582|949583|949584|949585|949586|949587|949588|951723|951724|951725|951726|951727|951728|951729|951730|951731|951732|951733|957710|957711|957712|957713|957714|957715|957881|957882|957883|957884|957885|957886|959236|959237|960179|960842|963916|963917|963918|964599|964600|964601|966622|971200|971201", "text": "Epileptic encephalopathy, early infantile, 1" }, { - "baseId": "15090|15091|178158|196322|213494|338144|338149|338151|338161|338162|338165|338166|338184|338190|338193|338196|338201|338204|338205|338214|347778|347779|347781|347783|347786|347793|347794|347797|347810|347811|347823|347828|347832|347837|347838|347844|347851|347861|347872|347873|347876|347882|347894|347896|351615|351617|351618|351622|351624|351625|351626|351629|351630|351631|351634|351635|351638|351641|351643|351646|351649|351652|352564|352565|352566|352567|352568|352570|352571|352572|352573|352574|352576|352577|352580|352581|352583|352584|352585|352586|352587|352590|352591|352592|352593|352594|404393|469864|534316|572011|620928|649527|684923|685473|689292|695883|786606|849374|891315|891316|891317|891318|891319|891320|891321|891322|891323|891324|891325|891326|891327|891328|891329|891330|891331|891332|891333|891334|891335|891336|891337|891338|891339|891340|891341|891342|891343|891344|891345|891346|891347|891348|891349|891350|891351|891352|891353|891354|891355|891356|891357|891358|891359|891360|891361|891362|891363|891364|891365|891841|891842|939324", + "upstreamId": "15090|15091|178158|196322|213494|338144|338149|338151|338161|338162|338165|338166|338184|338190|338193|338196|338201|338204|338205|338214|347778|347779|347781|347783|347786|347793|347794|347797|347810|347811|347823|347828|347832|347837|347838|347844|347851|347861|347872|347873|347876|347882|347894|347896|351615|351617|351618|351622|351624|351625|351626|351629|351630|351631|351634|351635|351638|351641|351643|351646|351649|351652|352564|352565|352566|352567|352568|352570|352571|352572|352573|352574|352576|352577|352580|352581|352583|352584|352585|352586|352587|352590|352591|352592|352593|352594|404393|469864|534316|572011|620928|649527|684923|685473|689292|695883|786606|849374|891315|891316|891317|891318|891319|891320|891321|891322|891323|891324|891325|891326|891327|891328|891329|891330|891331|891332|891333|891334|891335|891336|891337|891338|891339|891340|891341|891342|891343|891344|891345|891346|891347|891348|891349|891350|891351|891352|891353|891354|891355|891356|891357|891358|891359|891360|891361|891362|891363|891364|891365|891841|891842|939324", "text": "Nephronophthisis-like nephropathy 1" }, { - "baseId": "15092|15093|133983|133983|140298|140298|140299|140299|211578|254440|316224|316225|316228|316231|323564|323565|323568|323579|329708|329709|329709|329718|329721|330961|330963|330965|330966|330969|330970|503572|538428|566397|640668|640669|684309|687914|753174|801553|820448|839377|839378|869424|869425|869426|869427|869428|869429|869430|869431|869432|869433|869434|869435|869436|869437|869438|869439|869440|869441|869442|869443|904204|947809", + "upstreamId": "15092|15093|133983|133983|140298|140298|140299|140299|211578|254440|316224|316225|316228|316231|323564|323565|323568|323579|329708|329709|329709|329718|329721|330961|330963|330965|330966|330969|330970|503572|538428|566397|640668|640669|684309|687914|753174|801553|820448|839377|839378|869424|869425|869426|869427|869428|869429|869430|869431|869432|869433|869434|869435|869436|869437|869438|869439|869440|869441|869442|869443|904204|947809", "text": "Combined oxidative phosphorylation deficiency 7" }, { - "baseId": "15092|18494|21822|39422|98402|142972|168010|178088|208019|263302|264512|268517|364478|364483|389104|389105|389106|389107|389108|389109|389110|389114|389115|389116|389118|389119|389120|389121|389122|389123|389124|389125|389126|389127|389128|389129|389130|389131|389132|389136|389137|389138|389139|389140|389141|389142|389143|389144|389145|389146|389147|389148|389149|389150|389151|389152|389153|389154|389155|389156|389157|389159|389160|389161|389162|389164|389165|389166|389167|389168|389169|389170|389171|389172|389173|389174|389175|389177|389179|389180|389181|389182|389183|389184|389185|389186|389187|389188|389189|389190|389191|389192|514092|576060|576061|625988", + "upstreamId": "15092|18494|21822|39422|98402|142972|168010|178088|208019|263302|264512|268517|364478|364483|389104|389105|389106|389107|389108|389109|389110|389114|389115|389116|389118|389119|389120|389121|389122|389123|389124|389125|389126|389127|389128|389129|389130|389131|389132|389136|389137|389138|389139|389140|389141|389142|389143|389144|389145|389146|389147|389148|389149|389150|389151|389152|389153|389154|389155|389156|389157|389159|389160|389161|389162|389164|389165|389166|389167|389168|389169|389170|389171|389172|389173|389174|389175|389177|389179|389180|389181|389182|389183|389184|389185|389186|389187|389188|389189|389190|389191|389192|514092|576060|576061|625988", "text": "Abnormality of brain morphology" }, { - "baseId": "15092|48181|94433|96885|153818|153819|538428|919417|971343", + "upstreamId": "15092|48181|94433|96885|153818|153819|538428|919417|971343", "text": "Spastic paraplegia 55, autosomal recessive" }, { - "baseId": "15092|34621|38843|90624|101376|153559|167780|186890|187611|187723|193200|201362|202135|202308|202311|202442|202741|202756|203772|226945|247726|259633|263008|263009|263010|263011|263935|271703|296015|299752|299799|354006|354013|360801|360936|360940|361000|361001|361078|361086|361087|361132|361153|361181|361751|361752|362140|362141|362315|362317|362318|362320|362321|362322|362325|362328|362329|362331|362332|362333|362334|362335|362336|362339|362340|362341|362342|362343|362345|362347|362348|362349|362350|362352|362354|362355|364152|373366|375789|384445|410530|410815|438572|438729|439573|446266|459491|459493|459502|459736|459743|459746|459964|459974|459978|459979|459981|459983|460372|460375|460377|460382|460389|460394|460395|463942|463964|463972|463974|463976|463981|463982|463987|463991|463994|463997|464004|464005|464007|464009|464011|464012|464016|464027|464029|464035|464038|464039|464040|464045|464047|464050|464052|464056|464064|464065|464066|464067|464069|464072|464074|464076|464077|464081|464086|464089|464099|464100|464106|464111|464113|464115|464117|464129|464132|464135|464139|464552|464554|464559|464564|464566|464576|464580|464582|464587|464593|464594|464599|464605|464609|464611|464616|464618|464619|464621|464623|464627|464629|464631|464632|464640|464646|464648|464650|464656|464657|464665|464677|464684|464686|464688|464693|464694|464807|464813|464815|464816|464817|464821|464822|464824|464826|464827|464828|464829|464830|464831|464835|464838|464839|464842|464843|464844|464845|464846|464848|464850|464851|464852|464854|464855|464859|464860|464864|464865|464866|464869|464873|464875|464878|464880|464884|464885|464888|464889|464890|464891|464893|464894|464895|464896|464897|464902|464903|464905|464907|464911|464915|464916|464917|464919|464922|464925|464926|464928|464929|464930|464931|464932|464942|464944|464949|464951|464952|464953|464954|464957|464966|464969|467706|467713|467727|467731|467734|467741|467743|467746|467749|467756|467759|467760|467762|467764|467767|467770|467773|467781|467787|467792|467794|467796|467798|467799|467800|467802|468598|468602|468609|468610|468611|468615|468624|468628|468641|468642|468644|468645|468652|468657|468658|468665|468671|468672|468674|468679|468681|468683|468688|468699|468701|468708|468711|468712|468716|468720|468723|468724|468727|468733|468735|468739|468741|469068|469075|469076|469077|469080|469081|469085|469086|469094|469098|469102|469103|469109|469116|469123|469126|469128|469130|469133|469141|469142|469151|469159|469163|469164|469168|469171|469172|469374|469379|469382|469390|469407|469416|469417|469422|469425|469433|469436|469441|469449|469451|469453|469461|469464|469465|469471|469474|469487|469488|469494|469497|469503|469508|469510|469521|469528|469538|469540|470956|514105|514109|524829|524834|524835|525066|525067|525071|525369|525372|528608|528612|528614|528616|528622|528624|528626|528628|528630|528633|528634|528639|528640|528641|528642|528643|528648|528649|528651|528652|528653|528655|528658|528659|528663|528665|528671|528673|528675|528676|528677|528681|528682|528686|528687|528692|528693|528694|528697|528699|528700|528702|528705|528709|528711|528716|528720|528721|528733|528737|528739|528740|528743|528745|528750|528751|528754|528998|529001|529002|529005|529006|529008|529010|529012|529017|529019|529029|529034|529043|529047|529050|529053|529055|529057|529061|529063|529067|529069|529071|529073|529074|529075|529082|529085|529092|529093|529095|529096|529098|529099|529100|529107|529109|529112|529123|529128|529151|529165|529166|529169|529173|529177|529184|529195|529204|529209|529213|529218|529219|529221|532011|532016|532018|532019|532020|532023|532025|532027|532028|532030|532034|532037|532039|532040|532041|532042|532044|532045|532046|532049|532051|532052|532058|532060|532063|532065|532067|532068|532073|532078|532079|532081|532083|532086|532092|532093|532095|532096|532099|532101|532105|532108|532111|532112|532118|532122|532127|532129|532132|532138|532154|532156|532158|532162|532167|532169|532175|532176|532178|532192|532193|532384|532389|532394|532398|532399|532405|532408|532409|532413|532414|532415|532418|532421|532423|532424|532436|532437|532441|532443|532447|532448|532449|532450|532454|532455|535695|535710|536183|550642|551754|553119|563449|563450|563452|564349|564355|564366|564368|564371|566084|566086|566087|566895|566898|566904|566905|566907|566909|566919|566924|566926|566930|566933|566935|566936|566937|566940|566941|566943|566946|566947|566952|566954|566958|566964|566966|566968|566970|568644|568647|568648|568651|568658|568664|568667|568670|568671|568673|568674|568676|568677|568689|568691|568692|568695|568696|569236|569238|569244|569251|569254|569256|569257|569259|569260|569270|569274|569275|569276|569280|569282|569283|569292|569293|569296|569301|569302|569304|569306|569320|569321|569342|569344|569948|569949|569951|569953|569961|569962|569974|569978|569981|569983|569987|569995|569997|571749|571753|571757|571761|571763|571764|571767|571768|571770|571771|571773|571778|571781|571784|571786|571790|571791|571794|571796|571798|571800|571801|571802|571805|572429|572430|572434|572435|572439|572444|572446|572447|572461|573146|573147|573152|573155|573158|573159|573160|573161|573163|573164|573173|573179|573181|573183|573185|573191|573196|573200|573204|573209|573213|574684|574685|574686|574687|574688|574689|574690|574691|574692|574693|574694|583092|613542|622053|622055|622056|622057|622058|622059|622060|622063|622064|622065|622066|622067|622068|622069|622853|638598|638599|638600|638601|638602|638603|638604|638605|638606|643011|643012|643013|643014|643015|643016|643017|643018|643019|643020|643021|643022|643023|643024|643025|643026|643027|643028|643029|643030|643031|643032|643033|643034|643035|643036|643037|643038|643039|643040|643041|643042|643043|643044|643045|643046|643047|643048|643049|643050|643051|643052|643053|643054|643055|643056|643057|643058|643059|643060|643061|643062|643063|643064|643065|643066|643067|643068|643069|643070|643071|643072|643073|643074|643075|643076|643077|643078|643079|643080|643081|643082|643083|643084|643085|643086|643087|643088|643089|643090|643091|643092|643093|643094|643095|643096|643097|643098|643099|646970|646971|646972|646973|646974|646975|646976|646977|646978|646979|646980|646981|646982|646983|646984|646985|646986|646987|646988|646989|646990|646991|646992|646993|646994|646995|646996|646997|646998|646999|647000|647001|647002|647003|647004|647005|647006|647007|647008|647009|647010|647011|647012|647013|647014|647015|647016|647017|647018|647019|652403|652404|652549|652721|652723|653022|653027|653544|692746|693651|693652|693653|693654|694226|694227|694228|694229|694230|694231|694232|694233|695635|695786|701109|701110|701111|701112|701113|701114|703119|703120|703121|703122|703123|703124|703125|703126|703129|703130|703131|703132|703133|703134|704478|704479|704480|704482|704483|704484|704485|704486|704487|704488|704489|704490|704492|704493|704494|704495|704496|704497|704498|704499|704500|704501|704503|704504|704505|704506|704508|714389|714391|714392|714393|714398|715834|715836|715837|715839|715840|715841|715843|715846|715847|715849|715850|723685|723686|723687|723689|723690|723691|723692|726004|726005|726006|726007|726008|726010|726011|726012|727581|727582|727583|727585|727588|727590|730660|730978|730980|730981|731195|737269|739542|739544|739546|739548|739551|739552|739553|739554|739555|739557|739559|739560|739561|741222|741223|741224|741226|741228|741229|741230|741231|741234|741236|741237|741238|741239|741240|741241|744740|744864|745073|745081|745117|745141|751869|751871|754367|754370|754371|754373|754375|754378|754382|754383|754385|754386|756305|756306|756307|756308|756311|756312|756313|756315|756317|756320|756326|759848|760149|767567|767568|767569|767570|770080|770085|770086|770087|770092|770093|771980|771983|771984|771987|771988|771990|771993|771994|771995|771996|771997|771999|772003|772008|775450|776116|776463|776565|778110|778137|778141|778151|778235|778326|778328|778560|779453|779996|779997|783507|784873|784877|784884|785815|785820|785822|785823|785825|787991|788150|798927|798928|798929|798930|798931|798932|798933|798934|798935|798936|798937|798938|798939|798940|798941|798942|798943|798944|798945|798946|798947|798948|800989|801080|801083|801084|801088|801107|801108|801110|801130|801140|801167|801180|801181|801194|801202|801203|815873|820183|821176|822033|822034|822035|822036|822037|822038|822039|822040|822041|822042|822043|822044|822045|822046|822273|836462|836463|836464|836465|836466|836467|836468|836469|836470|836471|836472|836473|836474|836475|836476|836477|836478|836479|836480|836481|842135|842136|842137|842138|842139|842140|842141|842142|842143|842144|842145|842146|842147|842148|842149|842150|842151|842152|842153|842154|842155|842156|842157|842158|842159|842160|842161|842162|842163|842164|842165|842166|842167|842168|842169|842170|842171|842172|842173|842174|842175|842176|842177|842178|842179|842180|842181|842182|842183|842184|842185|842186|842187|842188|842189|842190|842191|842192|842193|842194|842195|842196|842197|842198|842199|842200|842201|842202|842203|842204|842205|842206|842207|842208|842209|842210|842211|842212|842213|842214|842215|842216|842217|842218|842219|842220|842221|842222|842223|842224|842225|842226|842227|842228|842229|846520|846521|846522|846523|846524|846525|846526|846527|846528|846529|846530|846531|846532|846533|846534|846535|846536|846537|846538|846539|846540|846541|846542|846543|846544|846545|846546|846547|846548|846549|846550|846551|846552|846553|846554|846555|846556|846557|846558|846559|846560|846561|846562|846563|846564|846565|846566|846567|846568|846569|846570|846571|846572|846573|846574|846575|846576|846577|846578|846579|846580|846581|846582|846583|846584|846585|846586|846587|846588|846589|846590|846591|846592|851599|851601|851758|851763|852029|852031|852033|852579|852580|852582|852586|852758|852759|852927|925690|925691|925692|925693|925694|925695|925696|925697|925698|925699|925700|925701|925702|925703|927268|927269|927270|927271|927272|927273|927274|927275|927276|927277|927278|927279|927280|927281|927282|927283|927284|927285|927286|927287|927288|927289|927290|927291|927292|927293|927294|927295|927296|927297|928616|928617|928618|928619|928620|928621|928622|928623|928624|928625|928626|928627|928628|928629|928630|928631|928632|928633|928634|928635|928636|928637|928638|928639|928640|928641|928642|934877|934878|934879|934880|934881|934882|934883|936858|936859|936860|936861|936862|936863|936864|936865|936866|936867|936868|936869|936870|936871|936872|936873|936874|936875|936876|936877|936878|936879|936880|936881|936882|936883|936884|936885|936886|936887|936888|936889|936890|936891|936892|936893|936894|936895|936896|938329|938330|938331|938332|938333|938334|938335|938336|938337|938338|938339|938340|938341|938342|938343|938344|938345|938346|938347|938348|938349|938350|938351|938352|938353|938354|938355|938356|938357|938358|938359|938360|938361|940447|940448|941082|941083|946744|946745|946746|946747|946748|946749|946750|946751|946752|948809|948810|948811|948812|948813|948814|948815|948816|948817|948818|948819|948820|948821|948822|948823|948824|948825|948826|948827|948828|948829|948830|948831|948832|948833|948834|948835|948836|948837|948838|948839|948840|948841|948842|948843|948844|948845|948846|950412|950413|950414|950415|950416|950417|950418|950419|950420|950421|950422|950423|950424|950425|950426|950427|950428|950429|950430|955947|957382|957383|957384|957385|957386|957387|957388|957389|957390|957391|957392|957393|957394|958404|958405|958406|958407|958408|958409|958410|958411|958412|958413|958414|959926|960102|960103|960104|960105|960106|960255|960709|960819|971562", + "upstreamId": "15092|34621|38843|90624|101376|153559|167780|186890|187611|187723|193200|201362|202135|202308|202311|202442|202741|202756|203772|226945|247726|259633|263008|263009|263010|263011|263935|271703|296015|299752|299799|354006|354013|360801|360936|360940|361000|361001|361078|361086|361087|361132|361153|361181|361751|361752|362140|362141|362315|362317|362318|362320|362321|362322|362325|362328|362329|362331|362332|362333|362334|362335|362336|362339|362340|362341|362342|362343|362345|362347|362348|362349|362350|362352|362354|362355|364152|373366|375789|384445|410530|410815|438572|438729|439573|446266|459491|459493|459502|459736|459743|459746|459964|459974|459978|459979|459981|459983|460372|460375|460377|460382|460389|460394|460395|463942|463964|463972|463974|463976|463981|463982|463987|463991|463994|463997|464004|464005|464007|464009|464011|464012|464016|464027|464029|464035|464038|464039|464040|464045|464047|464050|464052|464056|464064|464065|464066|464067|464069|464072|464074|464076|464077|464081|464086|464089|464099|464100|464106|464111|464113|464115|464117|464129|464132|464135|464139|464552|464554|464559|464564|464566|464576|464580|464582|464587|464593|464594|464599|464605|464609|464611|464616|464618|464619|464621|464623|464627|464629|464631|464632|464640|464646|464648|464650|464656|464657|464665|464677|464684|464686|464688|464693|464694|464807|464813|464815|464816|464817|464821|464822|464824|464826|464827|464828|464829|464830|464831|464835|464838|464839|464842|464843|464844|464845|464846|464848|464850|464851|464852|464854|464855|464859|464860|464864|464865|464866|464869|464873|464875|464878|464880|464884|464885|464888|464889|464890|464891|464893|464894|464895|464896|464897|464902|464903|464905|464907|464911|464915|464916|464917|464919|464922|464925|464926|464928|464929|464930|464931|464932|464942|464944|464949|464951|464952|464953|464954|464957|464966|464969|467706|467713|467727|467731|467734|467741|467743|467746|467749|467756|467759|467760|467762|467764|467767|467770|467773|467781|467787|467792|467794|467796|467798|467799|467800|467802|468598|468602|468609|468610|468611|468615|468624|468628|468641|468642|468644|468645|468652|468657|468658|468665|468671|468672|468674|468679|468681|468683|468688|468699|468701|468708|468711|468712|468716|468720|468723|468724|468727|468733|468735|468739|468741|469068|469075|469076|469077|469080|469081|469085|469086|469094|469098|469102|469103|469109|469116|469123|469126|469128|469130|469133|469141|469142|469151|469159|469163|469164|469168|469171|469172|469374|469379|469382|469390|469407|469416|469417|469422|469425|469433|469436|469441|469449|469451|469453|469461|469464|469465|469471|469474|469487|469488|469494|469497|469503|469508|469510|469521|469528|469538|469540|470956|514105|514109|524829|524834|524835|525066|525067|525071|525369|525372|528608|528612|528614|528616|528622|528624|528626|528628|528630|528633|528634|528639|528640|528641|528642|528643|528648|528649|528651|528652|528653|528655|528658|528659|528663|528665|528671|528673|528675|528676|528677|528681|528682|528686|528687|528692|528693|528694|528697|528699|528700|528702|528705|528709|528711|528716|528720|528721|528733|528737|528739|528740|528743|528745|528750|528751|528754|528998|529001|529002|529005|529006|529008|529010|529012|529017|529019|529029|529034|529043|529047|529050|529053|529055|529057|529061|529063|529067|529069|529071|529073|529074|529075|529082|529085|529092|529093|529095|529096|529098|529099|529100|529107|529109|529112|529123|529128|529151|529165|529166|529169|529173|529177|529184|529195|529204|529209|529213|529218|529219|529221|532011|532016|532018|532019|532020|532023|532025|532027|532028|532030|532034|532037|532039|532040|532041|532042|532044|532045|532046|532049|532051|532052|532058|532060|532063|532065|532067|532068|532073|532078|532079|532081|532083|532086|532092|532093|532095|532096|532099|532101|532105|532108|532111|532112|532118|532122|532127|532129|532132|532138|532154|532156|532158|532162|532167|532169|532175|532176|532178|532192|532193|532384|532389|532394|532398|532399|532405|532408|532409|532413|532414|532415|532418|532421|532423|532424|532436|532437|532441|532443|532447|532448|532449|532450|532454|532455|535695|535710|536183|550642|551754|553119|563449|563450|563452|564349|564355|564366|564368|564371|566084|566086|566087|566895|566898|566904|566905|566907|566909|566919|566924|566926|566930|566933|566935|566936|566937|566940|566941|566943|566946|566947|566952|566954|566958|566964|566966|566968|566970|568644|568647|568648|568651|568658|568664|568667|568670|568671|568673|568674|568676|568677|568689|568691|568692|568695|568696|569236|569238|569244|569251|569254|569256|569257|569259|569260|569270|569274|569275|569276|569280|569282|569283|569292|569293|569296|569301|569302|569304|569306|569320|569321|569342|569344|569948|569949|569951|569953|569961|569962|569974|569978|569981|569983|569987|569995|569997|571749|571753|571757|571761|571763|571764|571767|571768|571770|571771|571773|571778|571781|571784|571786|571790|571791|571794|571796|571798|571800|571801|571802|571805|572429|572430|572434|572435|572439|572444|572446|572447|572461|573146|573147|573152|573155|573158|573159|573160|573161|573163|573164|573173|573179|573181|573183|573185|573191|573196|573200|573204|573209|573213|574684|574685|574686|574687|574688|574689|574690|574691|574692|574693|574694|583092|613542|622053|622055|622056|622057|622058|622059|622060|622063|622064|622065|622066|622067|622068|622069|622853|638598|638599|638600|638601|638602|638603|638604|638605|638606|643011|643012|643013|643014|643015|643016|643017|643018|643019|643020|643021|643022|643023|643024|643025|643026|643027|643028|643029|643030|643031|643032|643033|643034|643035|643036|643037|643038|643039|643040|643041|643042|643043|643044|643045|643046|643047|643048|643049|643050|643051|643052|643053|643054|643055|643056|643057|643058|643059|643060|643061|643062|643063|643064|643065|643066|643067|643068|643069|643070|643071|643072|643073|643074|643075|643076|643077|643078|643079|643080|643081|643082|643083|643084|643085|643086|643087|643088|643089|643090|643091|643092|643093|643094|643095|643096|643097|643098|643099|646970|646971|646972|646973|646974|646975|646976|646977|646978|646979|646980|646981|646982|646983|646984|646985|646986|646987|646988|646989|646990|646991|646992|646993|646994|646995|646996|646997|646998|646999|647000|647001|647002|647003|647004|647005|647006|647007|647008|647009|647010|647011|647012|647013|647014|647015|647016|647017|647018|647019|652403|652404|652549|652721|652723|653022|653027|653544|692746|693651|693652|693653|693654|694226|694227|694228|694229|694230|694231|694232|694233|695635|695786|701109|701110|701111|701112|701113|701114|703119|703120|703121|703122|703123|703124|703125|703126|703129|703130|703131|703132|703133|703134|704478|704479|704480|704482|704483|704484|704485|704486|704487|704488|704489|704490|704492|704493|704494|704495|704496|704497|704498|704499|704500|704501|704503|704504|704505|704506|704508|714389|714391|714392|714393|714398|715834|715836|715837|715839|715840|715841|715843|715846|715847|715849|715850|723685|723686|723687|723689|723690|723691|723692|726004|726005|726006|726007|726008|726010|726011|726012|727581|727582|727583|727585|727588|727590|730660|730978|730980|730981|731195|737269|739542|739544|739546|739548|739551|739552|739553|739554|739555|739557|739559|739560|739561|741222|741223|741224|741226|741228|741229|741230|741231|741234|741236|741237|741238|741239|741240|741241|744740|744864|745073|745081|745117|745141|751869|751871|754367|754370|754371|754373|754375|754378|754382|754383|754385|754386|756305|756306|756307|756308|756311|756312|756313|756315|756317|756320|756326|759848|760149|767567|767568|767569|767570|770080|770085|770086|770087|770092|770093|771980|771983|771984|771987|771988|771990|771993|771994|771995|771996|771997|771999|772003|772008|775450|776116|776463|776565|778110|778137|778141|778151|778235|778326|778328|778560|779453|779996|779997|783507|784873|784877|784884|785815|785820|785822|785823|785825|787991|788150|798927|798928|798929|798930|798931|798932|798933|798934|798935|798936|798937|798938|798939|798940|798941|798942|798943|798944|798945|798946|798947|798948|800989|801080|801083|801084|801088|801107|801108|801110|801130|801140|801167|801180|801181|801194|801202|801203|815873|820183|821176|822033|822034|822035|822036|822037|822038|822039|822040|822041|822042|822043|822044|822045|822046|822273|836462|836463|836464|836465|836466|836467|836468|836469|836470|836471|836472|836473|836474|836475|836476|836477|836478|836479|836480|836481|842135|842136|842137|842138|842139|842140|842141|842142|842143|842144|842145|842146|842147|842148|842149|842150|842151|842152|842153|842154|842155|842156|842157|842158|842159|842160|842161|842162|842163|842164|842165|842166|842167|842168|842169|842170|842171|842172|842173|842174|842175|842176|842177|842178|842179|842180|842181|842182|842183|842184|842185|842186|842187|842188|842189|842190|842191|842192|842193|842194|842195|842196|842197|842198|842199|842200|842201|842202|842203|842204|842205|842206|842207|842208|842209|842210|842211|842212|842213|842214|842215|842216|842217|842218|842219|842220|842221|842222|842223|842224|842225|842226|842227|842228|842229|846520|846521|846522|846523|846524|846525|846526|846527|846528|846529|846530|846531|846532|846533|846534|846535|846536|846537|846538|846539|846540|846541|846542|846543|846544|846545|846546|846547|846548|846549|846550|846551|846552|846553|846554|846555|846556|846557|846558|846559|846560|846561|846562|846563|846564|846565|846566|846567|846568|846569|846570|846571|846572|846573|846574|846575|846576|846577|846578|846579|846580|846581|846582|846583|846584|846585|846586|846587|846588|846589|846590|846591|846592|851599|851601|851758|851763|852029|852031|852033|852579|852580|852582|852586|852758|852759|852927|925690|925691|925692|925693|925694|925695|925696|925697|925698|925699|925700|925701|925702|925703|927268|927269|927270|927271|927272|927273|927274|927275|927276|927277|927278|927279|927280|927281|927282|927283|927284|927285|927286|927287|927288|927289|927290|927291|927292|927293|927294|927295|927296|927297|928616|928617|928618|928619|928620|928621|928622|928623|928624|928625|928626|928627|928628|928629|928630|928631|928632|928633|928634|928635|928636|928637|928638|928639|928640|928641|928642|934877|934878|934879|934880|934881|934882|934883|936858|936859|936860|936861|936862|936863|936864|936865|936866|936867|936868|936869|936870|936871|936872|936873|936874|936875|936876|936877|936878|936879|936880|936881|936882|936883|936884|936885|936886|936887|936888|936889|936890|936891|936892|936893|936894|936895|936896|938329|938330|938331|938332|938333|938334|938335|938336|938337|938338|938339|938340|938341|938342|938343|938344|938345|938346|938347|938348|938349|938350|938351|938352|938353|938354|938355|938356|938357|938358|938359|938360|938361|940447|940448|941082|941083|946744|946745|946746|946747|946748|946749|946750|946751|946752|948809|948810|948811|948812|948813|948814|948815|948816|948817|948818|948819|948820|948821|948822|948823|948824|948825|948826|948827|948828|948829|948830|948831|948832|948833|948834|948835|948836|948837|948838|948839|948840|948841|948842|948843|948844|948845|948846|950412|950413|950414|950415|950416|950417|950418|950419|950420|950421|950422|950423|950424|950425|950426|950427|950428|950429|950430|955947|957382|957383|957384|957385|957386|957387|957388|957389|957390|957391|957392|957393|957394|958404|958405|958406|958407|958408|958409|958410|958411|958412|958413|958414|959926|960102|960103|960104|960105|960106|960255|960709|960819|971562", "text": "Epileptic encephalopathy" }, { - "baseId": "15094|15094|15095|101548|101548|101549|101550|101551|140422|140423|140424|140425|140426|140427|140428|140429|169122|169123|169124|169125|169126|169127|169128|169129|169130|169131|169132|169133|169134|169135|169136|169137|169138|169139|169140|169141|169142|169143|169144|169145|169147|169148|169148|169149|169150|169151|169152|169153|169154|169154|169155|169156|169157|169159|169161|169162|169163|169164|169165|169166|169167|169168|169169|169170|169171|169172|169173|169174|169175|169176|208201|322812|322813|322814|322817|322818|332286|332288|332290|332291|332298|332299|332302|332305|332310|332323|332325|332332|332333|332347|339307|339310|339311|339312|339314|339321|339330|339338|340752|340760|340762|340764|340768|340775|340777|340781|373593|374218|429684|513631|513632|612101|714475|770213|789379|873743|873744|873745|873746|873747|873748|873749|873750|873751|873752|873753|873754|873755|873756|873757|873758|873759|873760|873761|873762|873763|873764|873765|873766|873767|873768|965995|965996|966041", + "upstreamId": "15094|15094|15095|101548|101548|101549|101550|101551|140422|140423|140424|140425|140426|140427|140428|140429|169122|169123|169124|169125|169126|169127|169128|169129|169130|169131|169132|169133|169134|169135|169136|169137|169138|169139|169140|169141|169142|169143|169144|169145|169147|169148|169148|169149|169150|169151|169152|169153|169154|169154|169155|169156|169157|169159|169161|169162|169163|169164|169165|169166|169167|169168|169169|169170|169171|169172|169173|169174|169175|169176|208201|322812|322813|322814|322817|322818|332286|332288|332290|332291|332298|332299|332302|332305|332310|332323|332325|332332|332333|332347|339307|339310|339311|339312|339314|339321|339330|339338|340752|340760|340762|340764|340768|340775|340777|340781|373593|374218|429684|513631|513632|612101|714475|770213|789379|873743|873744|873745|873746|873747|873748|873749|873750|873751|873752|873753|873754|873755|873756|873757|873758|873759|873760|873761|873762|873763|873764|873765|873766|873767|873768|965995|965996|966041", "text": "Primary autosomal recessive microcephaly 9" }, { - "baseId": "15094|39987|39989|39990|39991|101548|101548|101549|101550|101551|140422|140423|140424|140425|140426|140427|140428|140429|169123|169125|169126|169128|169129|169132|169133|169138|169140|169141|169142|169148|169148|169149|169152|169154|169154|169159|169163|169164|169168|169172|169174|169175|169176|322812|322813|322814|322817|322818|332286|332288|332290|332291|332298|332299|332302|332305|332310|332323|332325|332332|332333|332347|339307|339310|339311|339312|339314|339321|339330|339338|340752|340760|340762|340764|340768|340775|340777|340781|373593|374218|390686|513631|714475|770213|873743|873744|873745|873746|873747|873748|873749|873750|873751|873752|873753|873754|873755|873756|873757|873758|873759|873760|873761|873762|873763|873764|873765|873766|873767|873768|919579|919580", + "upstreamId": "15094|39987|39989|39990|39991|101548|101548|101549|101550|101551|140422|140423|140424|140425|140426|140427|140428|140429|169123|169125|169126|169128|169129|169132|169133|169138|169140|169141|169142|169148|169148|169149|169152|169154|169154|169159|169163|169164|169168|169172|169174|169175|169176|322812|322813|322814|322817|322818|332286|332288|332290|332291|332298|332299|332302|332305|332310|332323|332325|332332|332333|332347|339307|339310|339311|339312|339314|339321|339330|339338|340752|340760|340762|340764|340768|340775|340777|340781|373593|374218|390686|513631|714475|770213|873743|873744|873745|873746|873747|873748|873749|873750|873751|873752|873753|873754|873755|873756|873757|873758|873759|873760|873761|873762|873763|873764|873765|873766|873767|873768|919579|919580", "text": "Seckel syndrome 5" }, { - "baseId": "15094|169154|332308|620523|620869|620870|620871", + "upstreamId": "15094|169154|332308|620523|620869|620870|620871", "text": "CEP152-Related Disorders" }, { - "baseId": "15096|15096|15097|15098|15099|166293|176930|176930|178060|178060|190854|191240|196005|206781|206782|206783|206784|249845|249846|249846|249848|249848|249850|249851|249854|268658|268658|280170|280177|280179|280185|280185|280192|280192|280530|280538|280538|280543|280543|280560|280560|280561|280563|281826|281828|281955|281956|281956|281968|281974|281974|281975|281978|281979|281980|427758|427758|427759|447949|447949|448070|448070|515777|515777|552297|556940|612139|622312|627685|627686|627687|627688|627689|650586|650710|690565|690565|690570|695042|695043|695044|695044|707257|818956|823805|823806|823807|823807|823808|823809|823810|823811|823812|823813|823814|823815|823816|823817|823818|823819|823820|823821|823822|850778|864180|864181|864182|864183|864184|864185|864186|865168|865169|921959|921960|921961|921962|930434|930435|939807|941888|941889|941890|941891|941892|941893|952364|952365|952366|952367|952368|952369|952370", + "upstreamId": "15096|15096|15097|15098|15099|166293|176930|176930|178060|178060|190854|191240|196005|206781|206782|206783|206784|249845|249846|249846|249848|249848|249850|249851|249854|268658|268658|280170|280177|280179|280185|280185|280192|280192|280530|280538|280538|280543|280543|280560|280560|280561|280563|281826|281828|281955|281956|281956|281968|281974|281974|281975|281978|281979|281980|427758|427758|427759|447949|447949|448070|448070|515777|515777|552297|556940|612139|622312|627685|627686|627687|627688|627689|650586|650710|690565|690565|690570|695042|695043|695044|695044|707257|818956|823805|823806|823807|823807|823808|823809|823810|823811|823812|823813|823814|823815|823816|823817|823818|823819|823820|823821|823822|850778|864180|864181|864182|864183|864184|864185|864186|865168|865169|921959|921960|921961|921962|930434|930435|939807|941888|941889|941890|941891|941892|941893|952364|952365|952366|952367|952368|952369|952370", "text": "Senior-Loken syndrome 7" }, { - "baseId": "15096|16186|16189|16190|16365|16367|17079|17568|17569|17696|17699|17701|18054|18055|19608|19609|19610|19611|19612|19615|19616|19617|19622|20348|21200|22389|22390|22392|24184|24185|24186|27182|27183|27184|27185|27186|27187|34519|34520|34521|34521|34522|34523|34523|34524|34558|34559|34560|34581|34582|34583|34584|34585|34586|34587|34588|34589|34590|34591|34592|34593|34594|38435|39774|39775|44414|44415|44416|44417|44418|44419|44420|78955|78956|78957|90780|101393|101394|101396|101397|101398|101817|101818|101819|102024|102025|102026|102064|102100|102127|102392|102393|102398|102540|106441|106442|106460|106463|106468|106472|106482|106485|152879|171804|176959|177020|177127|177141|177150|177222|177250|177273|177353|177505|177507|177508|177509|177510|177511|177513|177514|177569|177574|186006|186020|186021|186197|186836|186837|186838|186848|186850|186851|186852|189022|189109|190551|190552|190621|190635|190886|191067|191287|191301|191594|191847|191848|191965|192157|192440|192441|192442|192443|192574|192575|192577|192793|192794|193731|193760|193761|194521|194525|194548|205180|205604|207477|209353|212272|212273|212274|212349|212350|212351|212352|212353|212354|212355|212527|212579|212580|212581|212582|212583|212584|212585|212952|212953|213009|213010|213011|213012|213124|213126|213127|213194|213466|213467|214074|221320|221321|221433|221434|221700|222267|226933|227327|227345|237357|237445|238076|240081|240082|241206|243573|250385|250386|250387|250388|250755|250757|251321|251323|251324|251325|251326|251327|251328|251329|251330|252796|252801|252802|252803|252806|252807|252809|252810|252811|252812|252813|252815|252816|253281|253282|254256|254260|254720|254721|254723|254724|254734|255108|255110|255111|255348|255352|255356|255822|255825|257303|260897|260904|260905|260906|260911|260912|260918|260919|260920|260922|264628|265360|265833|265835|265863|266394|266678|268119|268120|268181|268296|268533|268974|269018|269313|269464|269498|269617|269813|269844|269846|269950|270494|270972|271121|271205|271264|271903|272416|272492|272609|272672|272895|273403|273579|274562|274715|280562|280564|281829|281981|286955|286968|286971|286975|286988|286990|287744|287748|287752|287753|287755|290126|290518|290522|292180|292181|292198|292204|292209|293617|293633|296450|296459|296467|296948|296968|296969|296972|296974|296977|296978|296980|302842|302846|302850|306569|306582|310933|311130|311182|314715|314722|316171|316186|316187|316198|318506|318511|318604|321437|321440|321441|321442|321451|321460|321699|323310|323344|326682|326794|326807|326864|326876|327580|327581|327599|328643|332901|332914|332915|332978|332989|334566|334588|334596|334650|334785|335456|335466|337703|339855|339856|341279|341899|341906|341911|341912|341913|341917|343426|343438|343442|344655|346578|346583|349613|350639|353342|353343|353574|353665|357327|358035|358040|358042|358043|358046|358107|358113|358376|363879|367862|369720|369721|371621|372322|372535|384491|390016|391629|391630|391635|394133|394300|395637|396287|396388|396670|397016|398348|398446|398448|398900|399055|399208|399558|399747|399750|399815|400329|400330|400478|400813|401166|401731|404130|404810|408745|408746|413671|424022|424187|424374|425240|425241|425242|425243|425244|425245|425246|425247|425248|425249|425250|425251|425252|425253|425254|426019|428084|428269|428272|428273|428709|429277|429279|429449|429604|429716|438281|439258|441256|444334|444335|444336|444338|451723|451728|452943|452952|453263|453712|453715|456114|456709|457349|457774|458121|458205|458206|458737|458827|461400|461402|461569|462242|462472|462732|463587|464492|464791|465137|465365|465687|466508|466753|471361|471362|487588|487920|488900|488965|489326|489499|490195|490282|491001|491371|491387|492450|492453|493106|493567|502585|502858|512038|512824|516233|516724|516815|518584|518637|518642|519717|519737|519738|519983|519988|520005|520007|522912|523083|523087|524192|524469|524528|524531|526418|526422|526449|526452|526726|527371|528800|529420|529619|530058|534000|543046|543257|543274|543287|543300|543358|543369|543375|546459|546589|546712|546729|546879|547210|547241|547264|547755|547762|547764|547788|547792|547812|548023|548025|548029|548043|548489|548504|551531|557725|557727|558907|559162|560894|561589|561591|561877|561882|561945|562687|563375|563381|563385|563387|563389|563431|563855|565430|565432|565437|566095|566856|567065|567240|567242|568198|568410|568418|568425|572037|572041|572052|572062|573506|574093|575074|576215|576216|576218|576219|576221|576222|576223|576224|576225|576226|576227|576228|576229|576230|576231|576235|576236|576237|576238|576239|576240|576241|576242|576243|576244|576245|576246|576247|576322|576323|582509|583361|585764|587793|587796|587963|588446|588535|589618|613749|613750|613751|613752|613753|613754|613755|613756|613757|620261|623905|623906|623935|624000|624115|626170|630407|631911|631912|631913|636141|636142|636143|636144|636145|637637|637638|637639|637640|637641|637642|637643|640363|640364|641389|641390|641391|642777|642778|642779|643521|643522|644765|644766|648569|648570|648571|648572|651268|651824|652427|652541|652543|683505|683506|683507|683618|683619|683620|683621|683889|683890|684037|684265|684266|684267|684346|684348|684349|684350|684351|684352|684353|684554|684610|684861|684862|685117|685218|685219|685294|685420|685918|685919|686230|686231|686232|686233|686235|686490|686492|686493|686494|686495|687045|687046|687047|687817|687820|687821|687822|688044|688045|688046|688047|688049|688050|688051|688052|688053|688054|688055|688623|688624|688626|688627|689678|690011|690012|690013|691504|691505|691506|692232|693095|693096|693098|693286|693287|693288|693289|693899|693903|693904|695539|697155|698361|700766|701924|703317|744650|748711|752844|752847|753614|755252|763379|764292|767064|768643|768644|769307|769309|769310|770965|770967|791156|792743|800494|800570|800593|800594|800686|801359|801360|801434|801435|801446|801448|802209|815789|819080|819440|819873|819874|819875|820042|820043|820044|820045|820405|820406|820407|820408|820409|820410|820520|820736|825197|825198|825199|825200|826889|826890|826891|826892|826893|826894|826895|826896|826897|826898|826899|826900|826901|828721|828722|828723|828724|828725|828726|828727|828728|828732|828733|828734|828735|828736|828737|828738|828739|828740|828741|828742|828743|828744|833573|833574|833575|833576|833577|833578|833579|833580|833581|833582|833583|833584|833585|833586|833587|833588|833589|833590|833591|833592|833593|835411|835412|835413|835414|835415|835416|835417|835418|835419|835420|835421|835422|835423|835424|835425|835426|835427|835428|835429|835430|835431|838808|838809|838810|838811|838812|838813|838814|838815|838816|838817|838818|838819|838820|838821|838822|838823|838824|840277|840278|840279|840280|840281|840282|840283|840284|840285|840286|840287|840288|840289|840290|840291|840292|840293|840294|841894|841895|841896|841897|841898|841899|841900|841901|841902|842658|842659|842660|842661|842662|842663|842664|842665|842666|842667|844003|844004|844005|844006|844007|844008|844009|844010|844011|844012|844013|844014|844015|844016|844017|844018|844019|844020|844021|844022|848197|848198|848199|848200|848201|848202|848203|848204|848205|848206|848207|848208|850852|850873|850915|850917|851107|851358|851438|851584|851841|851909|852365|852623|852624|852778|852779|852995|855849|856309|856311|856803|858466|868333|868341|868343|874075|874080|875523|906091|917216|918226|922405|922895|923399|923402|923403|923404|924848|924849|924850|925343|925344|925345|925346|925347|925348|926355|926356|926357|926358|926736|926737|927861|927862|927863|927864|927865|929140|930970|930971|930972|931544|931545|931546|931547|931548|932136|932137|932138|932139|932140|932141|932142|932143|932146|932147|932148|932149|932150|932151|933878|933879|933880|933881|933882|933883|933884|933885|934523|934524|934525|934526|935707|935708|935709|935710|935711|936265|936266|936267|936268|936269|936761|936762|936763|936764|936765|937047|937048|937049|937050|937051|937052|937053|937493|937494|937495|937496|937497|937498|937499|938904|938905|938906|938907|940075|940230|940318|940361|940362|940665|940666|941139|941140|942398|942399|942400|942401|943071|943072|943073|943074|943075|943076|943077|943078|943079|943080|943081|943082|943769|943770|943771|943772|943773|943774|943775|943776|943777|943778|943782|943783|943784|943785|943786|943787|943788|945621|945622|945623|945624|945625|945626|945627|945628|945629|946331|946332|946333|946334|946335|946336|947594|947595|948160|948161|948162|948163|948164|948165|948166|948167|948168|948718|948719|948720|948721|948722|948995|948996|948997|948998|948999|949000|949001|949441|949442|949443|949444|950977|950978|950979|950980|950981|950982|950983|950984|950985|952784|953167|953168|953169|953170|953171|953172|953642|953643|953644|953645|953646|953647|953648|953649|953650|953651|953652|953653|953654|953655|953656|953657|953658|953659|953660|955149|955150|955151|955152|955153|955154|955155|955156|955670|955671|955672|955673|956600|956601|956602|956603|956604|956605|956606|956607|956608|956942|956943|956944|956945|956946|956947|956948|956949|957333|957334|957335|957336|957337|957496|957497|957808|957809|957810|957811|957812|957813|957814|958771|958772|958773|958774|958775|958776|958777|958778|959854|959855|959856|960162|960163|960488|960757|960758|960792|960825|960826|960847|963399|964070|964071|965859", + "upstreamId": "15096|16186|16189|16190|16365|16367|17079|17568|17569|17696|17699|17701|18054|18055|19608|19609|19610|19611|19612|19615|19616|19617|19622|20348|21200|22389|22390|22392|24184|24185|24186|27182|27183|27184|27185|27186|27187|34519|34520|34521|34521|34522|34523|34523|34524|34558|34559|34560|34581|34582|34583|34584|34585|34586|34587|34588|34589|34590|34591|34592|34593|34594|38435|39774|39775|44414|44415|44416|44417|44418|44419|44420|78955|78956|78957|90780|101393|101394|101396|101397|101398|101817|101818|101819|102024|102025|102026|102064|102100|102127|102392|102393|102398|102540|106441|106442|106460|106463|106468|106472|106482|106485|152879|171804|176959|177020|177127|177141|177150|177222|177250|177273|177353|177505|177507|177508|177509|177510|177511|177513|177514|177569|177574|186006|186020|186021|186197|186836|186837|186838|186848|186850|186851|186852|189022|189109|190551|190552|190621|190635|190886|191067|191287|191301|191594|191847|191848|191965|192157|192440|192441|192442|192443|192574|192575|192577|192793|192794|193731|193760|193761|194521|194525|194548|205180|205604|207477|209353|212272|212273|212274|212349|212350|212351|212352|212353|212354|212355|212527|212579|212580|212581|212582|212583|212584|212585|212952|212953|213009|213010|213011|213012|213124|213126|213127|213194|213466|213467|214074|221320|221321|221433|221434|221700|222267|226933|227327|227345|237357|237445|238076|240081|240082|241206|243573|250385|250386|250387|250388|250755|250757|251321|251323|251324|251325|251326|251327|251328|251329|251330|252796|252801|252802|252803|252806|252807|252809|252810|252811|252812|252813|252815|252816|253281|253282|254256|254260|254720|254721|254723|254724|254734|255108|255110|255111|255348|255352|255356|255822|255825|257303|260897|260904|260905|260906|260911|260912|260918|260919|260920|260922|264628|265360|265833|265835|265863|266394|266678|268119|268120|268181|268296|268533|268974|269018|269313|269464|269498|269617|269813|269844|269846|269950|270494|270972|271121|271205|271264|271903|272416|272492|272609|272672|272895|273403|273579|274562|274715|280562|280564|281829|281981|286955|286968|286971|286975|286988|286990|287744|287748|287752|287753|287755|290126|290518|290522|292180|292181|292198|292204|292209|293617|293633|296450|296459|296467|296948|296968|296969|296972|296974|296977|296978|296980|302842|302846|302850|306569|306582|310933|311130|311182|314715|314722|316171|316186|316187|316198|318506|318511|318604|321437|321440|321441|321442|321451|321460|321699|323310|323344|326682|326794|326807|326864|326876|327580|327581|327599|328643|332901|332914|332915|332978|332989|334566|334588|334596|334650|334785|335456|335466|337703|339855|339856|341279|341899|341906|341911|341912|341913|341917|343426|343438|343442|344655|346578|346583|349613|350639|353342|353343|353574|353665|357327|358035|358040|358042|358043|358046|358107|358113|358376|363879|367862|369720|369721|371621|372322|372535|384491|390016|391629|391630|391635|394133|394300|395637|396287|396388|396670|397016|398348|398446|398448|398900|399055|399208|399558|399747|399750|399815|400329|400330|400478|400813|401166|401731|404130|404810|408745|408746|413671|424022|424187|424374|425240|425241|425242|425243|425244|425245|425246|425247|425248|425249|425250|425251|425252|425253|425254|426019|428084|428269|428272|428273|428709|429277|429279|429449|429604|429716|438281|439258|441256|444334|444335|444336|444338|451723|451728|452943|452952|453263|453712|453715|456114|456709|457349|457774|458121|458205|458206|458737|458827|461400|461402|461569|462242|462472|462732|463587|464492|464791|465137|465365|465687|466508|466753|471361|471362|487588|487920|488900|488965|489326|489499|490195|490282|491001|491371|491387|492450|492453|493106|493567|502585|502858|512038|512824|516233|516724|516815|518584|518637|518642|519717|519737|519738|519983|519988|520005|520007|522912|523083|523087|524192|524469|524528|524531|526418|526422|526449|526452|526726|527371|528800|529420|529619|530058|534000|543046|543257|543274|543287|543300|543358|543369|543375|546459|546589|546712|546729|546879|547210|547241|547264|547755|547762|547764|547788|547792|547812|548023|548025|548029|548043|548489|548504|551531|557725|557727|558907|559162|560894|561589|561591|561877|561882|561945|562687|563375|563381|563385|563387|563389|563431|563855|565430|565432|565437|566095|566856|567065|567240|567242|568198|568410|568418|568425|572037|572041|572052|572062|573506|574093|575074|576215|576216|576218|576219|576221|576222|576223|576224|576225|576226|576227|576228|576229|576230|576231|576235|576236|576237|576238|576239|576240|576241|576242|576243|576244|576245|576246|576247|576322|576323|582509|583361|585764|587793|587796|587963|588446|588535|589618|613749|613750|613751|613752|613753|613754|613755|613756|613757|620261|623905|623906|623935|624000|624115|626170|630407|631911|631912|631913|636141|636142|636143|636144|636145|637637|637638|637639|637640|637641|637642|637643|640363|640364|641389|641390|641391|642777|642778|642779|643521|643522|644765|644766|648569|648570|648571|648572|651268|651824|652427|652541|652543|683505|683506|683507|683618|683619|683620|683621|683889|683890|684037|684265|684266|684267|684346|684348|684349|684350|684351|684352|684353|684554|684610|684861|684862|685117|685218|685219|685294|685420|685918|685919|686230|686231|686232|686233|686235|686490|686492|686493|686494|686495|687045|687046|687047|687817|687820|687821|687822|688044|688045|688046|688047|688049|688050|688051|688052|688053|688054|688055|688623|688624|688626|688627|689678|690011|690012|690013|691504|691505|691506|692232|693095|693096|693098|693286|693287|693288|693289|693899|693903|693904|695539|697155|698361|700766|701924|703317|744650|748711|752844|752847|753614|755252|763379|764292|767064|768643|768644|769307|769309|769310|770965|770967|791156|792743|800494|800570|800593|800594|800686|801359|801360|801434|801435|801446|801448|802209|815789|819080|819440|819873|819874|819875|820042|820043|820044|820045|820405|820406|820407|820408|820409|820410|820520|820736|825197|825198|825199|825200|826889|826890|826891|826892|826893|826894|826895|826896|826897|826898|826899|826900|826901|828721|828722|828723|828724|828725|828726|828727|828728|828732|828733|828734|828735|828736|828737|828738|828739|828740|828741|828742|828743|828744|833573|833574|833575|833576|833577|833578|833579|833580|833581|833582|833583|833584|833585|833586|833587|833588|833589|833590|833591|833592|833593|835411|835412|835413|835414|835415|835416|835417|835418|835419|835420|835421|835422|835423|835424|835425|835426|835427|835428|835429|835430|835431|838808|838809|838810|838811|838812|838813|838814|838815|838816|838817|838818|838819|838820|838821|838822|838823|838824|840277|840278|840279|840280|840281|840282|840283|840284|840285|840286|840287|840288|840289|840290|840291|840292|840293|840294|841894|841895|841896|841897|841898|841899|841900|841901|841902|842658|842659|842660|842661|842662|842663|842664|842665|842666|842667|844003|844004|844005|844006|844007|844008|844009|844010|844011|844012|844013|844014|844015|844016|844017|844018|844019|844020|844021|844022|848197|848198|848199|848200|848201|848202|848203|848204|848205|848206|848207|848208|850852|850873|850915|850917|851107|851358|851438|851584|851841|851909|852365|852623|852624|852778|852779|852995|855849|856309|856311|856803|858466|868333|868341|868343|874075|874080|875523|906091|917216|918226|922405|922895|923399|923402|923403|923404|924848|924849|924850|925343|925344|925345|925346|925347|925348|926355|926356|926357|926358|926736|926737|927861|927862|927863|927864|927865|929140|930970|930971|930972|931544|931545|931546|931547|931548|932136|932137|932138|932139|932140|932141|932142|932143|932146|932147|932148|932149|932150|932151|933878|933879|933880|933881|933882|933883|933884|933885|934523|934524|934525|934526|935707|935708|935709|935710|935711|936265|936266|936267|936268|936269|936761|936762|936763|936764|936765|937047|937048|937049|937050|937051|937052|937053|937493|937494|937495|937496|937497|937498|937499|938904|938905|938906|938907|940075|940230|940318|940361|940362|940665|940666|941139|941140|942398|942399|942400|942401|943071|943072|943073|943074|943075|943076|943077|943078|943079|943080|943081|943082|943769|943770|943771|943772|943773|943774|943775|943776|943777|943778|943782|943783|943784|943785|943786|943787|943788|945621|945622|945623|945624|945625|945626|945627|945628|945629|946331|946332|946333|946334|946335|946336|947594|947595|948160|948161|948162|948163|948164|948165|948166|948167|948168|948718|948719|948720|948721|948722|948995|948996|948997|948998|948999|949000|949001|949441|949442|949443|949444|950977|950978|950979|950980|950981|950982|950983|950984|950985|952784|953167|953168|953169|953170|953171|953172|953642|953643|953644|953645|953646|953647|953648|953649|953650|953651|953652|953653|953654|953655|953656|953657|953658|953659|953660|955149|955150|955151|955152|955153|955154|955155|955156|955670|955671|955672|955673|956600|956601|956602|956603|956604|956605|956606|956607|956608|956942|956943|956944|956945|956946|956947|956948|956949|957333|957334|957335|957336|957337|957496|957497|957808|957809|957810|957811|957812|957813|957814|958771|958772|958773|958774|958775|958776|958777|958778|959854|959855|959856|960162|960163|960488|960757|960758|960792|960825|960826|960847|963399|964070|964071|965859", "text": "Bardet-Biedl syndrome" }, { - "baseId": "15096|15099|15100|166292|166293|166293|176930|176930|178060|178060|190854|191240|196005|205134|206781|206784|249845|249846|249846|249848|249848|249850|249851|249854|268658|268658|280170|280177|280179|280185|280185|280192|280192|280530|280538|280538|280543|280543|280560|280560|280561|280563|281826|281828|281955|281956|281956|281968|281974|281974|281975|281978|281979|281980|427758|427758|427759|447949|447949|448070|448070|515777|515777|552297|556940|612174|622312|622860|627685|627686|627687|627688|627689|650586|650710|690565|690565|690570|695042|695043|695044|695044|707257|789361|818956|823805|823806|823807|823807|823808|823809|823810|823811|823812|823813|823814|823815|823816|823817|823818|823819|823820|823821|823822|850778|864180|864181|864182|864183|864184|864185|864186|865168|865169|906278|918625|921959|921960|921961|921962|930434|930435|939807|941888|941889|941890|941891|941892|941893|952364|952365|952366|952367|952368|952369|952370", + "upstreamId": "15096|15099|15100|166292|166293|166293|176930|176930|178060|178060|190854|191240|196005|205134|206781|206784|249845|249846|249846|249848|249848|249850|249851|249854|268658|268658|280170|280177|280179|280185|280185|280192|280192|280530|280538|280538|280543|280543|280560|280560|280561|280563|281826|281828|281955|281956|281956|281968|281974|281974|281975|281978|281979|281980|427758|427758|427759|447949|447949|448070|448070|515777|515777|552297|556940|612174|622312|622860|627685|627686|627687|627688|627689|650586|650710|690565|690565|690570|695042|695043|695044|695044|707257|789361|818956|823805|823806|823807|823807|823808|823809|823810|823811|823812|823813|823814|823815|823816|823817|823818|823819|823820|823821|823822|850778|864180|864181|864182|864183|864184|864185|864186|865168|865169|906278|918625|921959|921960|921961|921962|930434|930435|939807|941888|941889|941890|941891|941892|941893|952364|952365|952366|952367|952368|952369|952370", "text": "Bardet-Biedl syndrome 16" }, { - "baseId": "15101|15102|15103", + "upstreamId": "15101|15102|15103", "text": "Tritanopia" }, { - "baseId": "15104|15105|15106|15111|15112|15113|15114|15115|248651|249962|249963|280657|280668|280676|281155|282433|282696|282698|746521|789972|864495|864496|864497|864498|864499|864500|864501|864502|864503|864504|864505|864506|865186|865187|903667", + "upstreamId": "15104|15105|15106|15111|15112|15113|15114|15115|248651|249962|249963|280657|280668|280676|281155|282433|282696|282698|746521|789972|864495|864496|864497|864498|864499|864500|864501|864502|864503|864504|864505|864506|865186|865187|903667", "text": "Familial porphyria cutanea tarda" }, { - "baseId": "15105|15107|15108|15109|15110", + "upstreamId": "15105|15107|15108|15109|15110", "text": "Hepatoerythropoietic porphyria" }, { - "baseId": "15105|75613|75614|281152|281154|282431|282695|282699|353103", + "upstreamId": "15105|75613|75614|281152|281154|282431|282695|282699|353103", "text": "Porphyria cutanea tarda" }, { - "baseId": "15110", + "upstreamId": "15110", "text": "Porphyria cutanea tarda, type I" }, { - "baseId": "15116|15119|15120|15121|190730|192211|253908|253909|311624|311628|311633|311636|311638|311639|311640|311644|311646|311651|311658|317185|317188|317193|317194|317199|317202|317207|317208|317209|317220|317222|317225|317227|323214|323218|323219|323229|323232|323233|323236|323243|323255|323256|323257|323258|323813|323814|323822|323823|323826|323827|323828|323832|323833|545635|545648", + "upstreamId": "15116|15119|15120|15121|190730|192211|253908|253909|311624|311628|311633|311636|311638|311639|311640|311644|311646|311651|311658|317185|317188|317193|317194|317199|317202|317207|317208|317209|317220|317222|317225|317227|323214|323218|323219|323229|323232|323233|323236|323243|323255|323256|323257|323258|323813|323814|323822|323823|323826|323827|323828|323832|323833|545635|545648", "text": "Wolman disease" }, { - "baseId": "15116|15117|15118|15119|15121|94353|190730|192211|193399|195569|199794|205164|253908|253909|266300|273974|274223|311624|311628|311633|311638|311639|311640|311644|317185|317188|317193|317194|317199|317209|317220|317222|317225|323214|323218|323219|323236|323243|323255|323256|323813|323822|323826|323827|323828|323832|323833|423865|460671|489048|490257|490500|492955|525605|545310|545311|545315|545317|545319|545321|545611|545612|545626|545633|545635|545647|545648|545650|545654|545657|545667|545671|545947|545952|545953|564048|569890|585506|585777|586202|586607|587039|587407|589564|589766|639304|652047|683151|683152|683153|683154|683155|683156|683157|683158|683159|683160|683161|683162|683163|683164|683165|683166|683167|683168|683169|683170|683171|683172|683173|683174|683175|683176|683177|683178|683179|683180|683181|683182|683183|683184|737633|737634|737636|744655|752325|768051|768054|768056|768057|768058|768059|775566|779512|783776|783778|820277|820278|820279|837473|851397|857331|866532|866533|866534|866537|866538|866539|866540|866542|866543|866545|866546|866547|866548|868533|868534|919303|925975|935231|935232|935233|940186|947131|959951|972099|972100|972101|972102|978805|978806|978807|978808|978809", + "upstreamId": "15116|15117|15118|15119|15121|94353|190730|192211|193399|195569|199794|205164|253908|253909|266300|273974|274223|311624|311628|311633|311638|311639|311640|311644|317185|317188|317193|317194|317199|317209|317220|317222|317225|323214|323218|323219|323236|323243|323255|323256|323813|323822|323826|323827|323828|323832|323833|423865|460671|489048|490257|490500|492955|525605|545310|545311|545315|545317|545319|545321|545611|545612|545626|545633|545635|545647|545648|545650|545654|545657|545667|545671|545947|545952|545953|564048|569890|585506|585777|586202|586607|587039|587407|589564|589766|639304|652047|683151|683152|683153|683154|683155|683156|683157|683158|683159|683160|683161|683162|683163|683164|683165|683166|683167|683168|683169|683170|683171|683172|683173|683174|683175|683176|683177|683178|683179|683180|683181|683182|683183|683184|737633|737634|737636|744655|752325|768051|768054|768056|768057|768058|768059|775566|779512|783776|783778|820277|820278|820279|837473|851397|857331|866532|866533|866534|866537|866538|866539|866540|866542|866543|866545|866546|866547|866548|868533|868534|919303|925975|935231|935232|935233|940186|947131|959951|972099|972100|972101|972102|978805|978806|978807|978808|978809", "text": "Lysosomal acid lipase deficiency" }, { - "baseId": "15119", + "upstreamId": "15119", "text": "Cholesteryl ester storage disease" }, { - "baseId": "15122|15123|15124|15125|15126|15127|15128|15129|75281|791020", + "upstreamId": "15122|15123|15124|15125|15126|15127|15128|15129|75281|791020", "text": "Urofacial syndrome 1" }, { - "baseId": "15130|15131|15132|15133|15134|70551|194549|194550|253089|253094|253096|304724|304726|304728|304732|304736|304745|304747|304751|304752|304754|304755|304756|304761|304763|308419|308421|308423|308426|308429|308430|308431|308432|308433|308434|313506|313507|313514|313515|313516|313521|313525|313526|313526|313537|313538|313539|313541|313542|313544|313616|313621|313622|313623|313625|313626|313629|313631|313642|313645|413771|497027|536065|536066|577056|577057|626174|679517|680100|700503|777762|777764|790792|790793|800712|800713|800714|800715|800716|800717|800718|800719|800720|800722|800723|800724|800725|800726|800727|800728|800729|800730|800731|800732|800733|800734|800735|800736|800737|800738|800739|800742|800743|800745|800746|800747|800748|800749|800750|800751|899197|899198|899199|899200|899201|899202|899203|899204|899205|899206|899207|899208|899209|899210|899211|899212|899213|899214|899215|899216|899217|899218|899219|899220|899221|899222|899223|899224|899225|899226|899227|900462|900463", + "upstreamId": "15130|15131|15132|15133|15134|70551|194549|194550|253089|253094|253096|304724|304726|304728|304732|304736|304745|304747|304751|304752|304754|304755|304756|304761|304763|308419|308421|308423|308426|308429|308430|308431|308432|308433|308434|313506|313507|313514|313515|313516|313521|313525|313526|313526|313537|313538|313539|313541|313542|313544|313616|313621|313622|313623|313625|313626|313629|313631|313642|313645|413771|497027|536065|536066|577056|577057|626174|679517|680100|700503|777762|777764|790792|790793|800712|800713|800714|800715|800716|800717|800718|800719|800720|800722|800723|800724|800725|800726|800727|800728|800729|800730|800731|800732|800733|800734|800735|800736|800737|800738|800739|800742|800743|800745|800746|800747|800748|800749|800750|800751|899197|899198|899199|899200|899201|899202|899203|899204|899205|899206|899207|899208|899209|899210|899211|899212|899213|899214|899215|899216|899217|899218|899219|899220|899221|899222|899223|899224|899225|899226|899227|900462|900463", "text": "Farber disease" }, { - "baseId": "15135|15136|15137|15138|15139|204460|337805|337807|337809|337812|337818|337822|337829|337840|337841|337845|337847|347408|347409|347414|347415|347416|347418|347421|347422|347423|347426|347427|347430|351348|351351|351352|351355|351356|351359|351360|351363|351364|351366|351367|351368|351369|352381|352382|352383|352386|352387|352388|352391|352392|352393|352394|352395|352396|353604|363797|433960|433962|470138|470139|470141|471060|471065|471497|471909|534201|534208|534209|534213|534223|534227|534228|573353|573357|574087|574089|575251|610169|614490|614491|614492|649368|649369|649370|649371|649372|649373|649374|649375|653254|653602|653711|717398|717399|729138|729139|742847|742848|742849|742850|742853|745365|758036|760753|760979|773509|773511|773512|776848|786579|792052|849217|849218|849219|849220|849221|849222|849223|849224|849225|849226|849227|849228|849229|849230|849231|849232|849233|857386|891080|891081|891082|891083|891084|891085|891086|891087|891088|891089|891090|891091|891092|891093|891094|891095|891096|891818|929460|929461|929462|939268|939269|939270|939271|939272|940530|951421|951422|951423|951424|959070", + "upstreamId": "15135|15136|15137|15138|15139|204460|337805|337807|337809|337812|337818|337822|337829|337840|337841|337845|337847|347408|347409|347414|347415|347416|347418|347421|347422|347423|347426|347427|347430|351348|351351|351352|351355|351356|351359|351360|351363|351364|351366|351367|351368|351369|352381|352382|352383|352386|352387|352388|352391|352392|352393|352394|352395|352396|353604|363797|433960|433962|470138|470139|470141|471060|471065|471497|471909|534201|534208|534209|534213|534223|534227|534228|573353|573357|574087|574089|575251|610169|614490|614491|614492|649368|649369|649370|649371|649372|649373|649374|649375|653254|653602|653711|717398|717399|729138|729139|742847|742848|742849|742850|742853|745365|758036|760753|760979|773509|773511|773512|776848|786579|792052|849217|849218|849219|849220|849221|849222|849223|849224|849225|849226|849227|849228|849229|849230|849231|849232|849233|857386|891080|891081|891082|891083|891084|891085|891086|891087|891088|891089|891090|891091|891092|891093|891094|891095|891096|891818|929460|929461|929462|939268|939269|939270|939271|939272|940530|951421|951422|951423|951424|959070", "text": "Transcolabamin II deficiency" }, { - "baseId": "15136", + "upstreamId": "15136", "text": "TRANSCOBALAMIN II POLYMORPHISM" }, { - "baseId": "15140|15141|15142|15143|15144|177344|177528|190306|190311|192268|267424|285916|288922|288935|289346|490280|512895|590511|818214|859158|905054", + "upstreamId": "15140|15141|15142|15143|15144|177344|177528|190306|190311|192268|267424|285916|288922|288935|289346|490280|512895|590511|818214|859158|905054", "text": "Retinitis pigmentosa 54" }, { - "baseId": "15145|21387|32675", + "upstreamId": "15145|21387|32675", "text": "Bone mineral density quantitative trait locus 15" }, { - "baseId": "15146|15147|15148|15149|38740|38741|38743|38744|151770|184108", + "upstreamId": "15146|15147|15148|15149|38740|38741|38743|38744|151770|184108", "text": "Pheochromocytoma, susceptibility to" }, { - "baseId": "15146|15147|15148|15149|17257|17257|17264|17265|17266|17276|19701|21932|21932|21934|21934|21935|21935|21935|21936|21936|21937|21939|21940|21942|21942|21943|21945|21947|21948|21948|21950|21951|21952|21954|21954|21955|21956|21957|27817|27817|27817|27818|27820|27820|27821|27821|27822|27822|27824|27824|27825|27827|27830|27831|28947|28948|28949|28950|28956|28957|28958|28975|28977|28986|28993|28994|33493|36221|36228|36230|36269|36275|36287|36305|38851|38851|45384|45429|45429|45430|45431|48183|50209|50210|50212|50216|50278|50282|50284|50285|52768|53809|53811|53814|53815|53816|53817|53817|54989|101890|101891|101892|132474|132476|132477|132478|132479|132480|132481|132482|132483|132484|132485|132486|132487|136461|136472|138926|138931|138935|138936|138937|138938|139807|139815|139817|139819|139827|139828|139830|139833|139835|139913|150487|151782|151825|152351|152351|152367|152477|152478|152541|152741|165952|165953|171051|171052|171052|171053|171053|171125|171127|171127|172353|172492|172493|175341|175342|181604|181605|181606|181607|181608|181609|181610|181611|181613|181614|181616|181617|181618|181619|181620|181621|181622|181623|181623|181624|181624|181625|181627|181628|182199|182200|182202|182944|182948|182956|182958|183477|183479|183481|186117|186118|194371|196493|196494|207813|207813|212767|212783|212784|212794|215422|217064|217065|217066|217067|217068|217069|217070|217071|217072|217073|221085|221946|232173|232175|232175|232176|232181|232183|232187|234436|234438|234440|234441|238108|238109|238170|238171|238173|238174|238175|238176|238177|238178|238179|238180|238181|238181|238183|238184|238185|238186|238187|238188|238189|238190|238191|238192|238193|238194|239025|239026|239028|239836|240788|240790|240797|240802|240898|241038|241039|241041|241042|241043|241044|241045|241046|241047|241049|241049|241050|241051|241052|241053|241855|241857|248478|249531|259746|264583|271973|275617|275648|275677|275679|275747|275751|275760|275761|275762|275764|275766|275785|275787|275792|275802|275832|275842|275887|275902|275904|275960|276961|276990|277000|277006|277007|277012|277019|277256|277258|277267|277278|277285|277358|277363|277947|277949|277952|277966|277986|278008|278066|278076|278090|278101|278420|278420|287549|287550|287558|287560|287567|287570|287573|287577|287579|287580|287581|287587|287590|287599|287600|287607|287611|287617|287619|288316|288321|288322|288323|288325|288326|288327|288329|288333|288334|288335|288337|288348|288351|288373|288376|288378|288381|291101|291105|291106|291107|291115|291129|291132|291133|291134|291135|291151|291155|291156|291157|291158|291273|291274|291276|291277|291285|291286|291288|291291|291294|291302|291303|291307|291308|291309|291311|291313|291318|291319|291322|297301|299304|299305|303496|310269|310270|310276|310292|310293|310301|310303|310308|310309|310315|310324|310330|310333|310334|310337|314381|314397|315391|315392|315393|315394|315397|315398|315399|315400|315401|315409|315411|315412|315418|315419|318274|318276|318277|318278|320987|320988|320992|320994|320995|320996|321001|321004|321005|321007|321008|321018|321020|321028|321368|321369|321370|321384|321385|321388|321398|321411|321412|321414|321415|321417|321419|321420|321423|322063|322066|322067|322068|322098|322103|322120|322121|322125|322128|322139|322140|322141|322142|322151|322153|322160|322161|322168|324403|324409|325143|325150|325151|327106|327108|327116|330074|330076|330078|330083|330092|330094|330098|330103|330108|330110|330111|330112|330114|336596|336597|336600|336605|336615|336626|336630|338549|338550|338556|338563|338565|338566|338569|338574|338579|338587|338596|353022|353023|353066|353067|353069|353127|353128|358698|358699|358701|358701|358732|358824|358829|360798|371258|384402|390718|390721|390732|390733|390870|390876|390877|390878|390880|390882|390890|390891|390892|390893|390893|390894|390895|390898|390899|390900|390901|390903|390904|390905|390906|390907|390908|390909|390910|390911|390912|390913|390914|390914|390915|390916|390917|390918|390919|390920|390921|390922|390923|390924|390925|390926|390927|390928|390929|390930|390931|390932|390934|390935|390936|390939|390940|397269|397444|397680|397699|398005|398008|398009|398013|398014|398017|398019|398027|398031|398033|398034|398040|398045|398062|398065|398066|398068|398070|398388|398389|398391|398394|398395|398505|398506|398507|400249|404976|404979|404981|406075|408270|408271|420737|420743|420745|420746|420748|420750|420755|420756|425903|432026|432028|432034|432038|432042|432045|432047|432050|432051|432988|442662|442663|442664|442665|446940|447286|447290|447293|447295|447296|447301|447305|447306|447371|447377|447379|447381|447383|447387|447390|447397|447400|447409|447417|447440|447451|447452|447456|447457|447483|447485|447487|447489|447490|447492|447494|447501|447502|447504|447505|447508|447510|447512|447515|447517|447518|447529|447530|451789|451846|451864|459817|460008|460025|460251|460316|460325|460677|460686|460872|460874|460875|460876|460880|460881|460883|460886|460894|461175|461177|461179|461180|461185|461190|461193|461195|461204|461206|461657|461661|461662|461664|461670|461672|461675|461679|461681|463425|472265|472268|472271|472272|472273|472274|472276|472277|472278|472279|472280|472283|472284|472318|472323|472339|475107|475955|475956|475993|475995|476243|476249|476426|476431|476436|476439|514854|514882|515267|515268|515273|515281|515283|515285|515287|515290|515291|515294|515295|515298|515302|515307|515310|515313|515314|515316|515322|515324|515328|515333|515334|515353|515355|515356|515357|515359|515362|515363|515364|515366|515369|515371|515372|515373|515375|525176|525849|525882|525883|525887|525890|525898|525978|526071|526072|526074|526398|526400|526408|526411|539281|551810|556488|556492|556517|556519|556521|556690|556692|556694|556696|556698|556700|556743|556745|556747|556749|556871|557040|557042|557044|557046|557048|557050|557052|557054|557056|557058|558236|558240|558242|558244|558246|558248|558250|558728|564091|564393|564396|564402|564409|564411|564417|564418|564427|564429|565003|565487|565489|565490|565492|565493|565494|565505|565505|566722|567041|567048|567049|569630|569655|569941|570295|570304|575654|609782|627077|627078|627079|627080|627081|627082|627083|627084|627085|627086|627087|627088|627089|627090|627091|627092|627093|627094|627095|627096|627097|627098|627099|627100|627101|627102|627103|627104|627105|627106|627107|627108|627109|627110|627111|627112|627113|627114|627115|627116|627117|627118|627119|627120|639692|639693|639694|639695|639696|639697|639698|639699|639700|639701|639702|639703|639704|639705|639706|639707|639708|639709|639710|639711|639712|639713|650537|650539|650564|650566|650595|650596|650644|650646|650649|650650|652097|652154|652305|652483|657158|682511|684224|690417|690420|690421|731863|745840|745844|758851|761325|761328|761331|761333|768201|768204|790301|791417|806488|806490|806491|806492|806494|806495|806501|810758|810761|810765|818863|818864|818865|818866|818867|818868|818869|818870|820331|820332|820333|820334|820335|820426|822372|822993|822994|822995|822996|822997|822998|822999|823000|823001|823002|823003|823004|823005|823006|823007|823008|823009|823010|823011|836830|837948|837949|837950|837951|837952|837953|837954|837955|837956|837957|837958|837959|837960|850733|850735|850937|851421|852603|858441|865863|865864|865865|865866|865867|865868|865869|865870|865871|865872|865873|865874|865875|865876|865877|865878|865879|865880|865881|865882|867045|868471|868472|868604|872084|872085|872086|872087|872088|872089|872090|872091|872092|872093|872094|872388|885667|885668|885669|885670|885671|885672|885673|885674|885675|885676|885677|885678|885679|885680|885681|885682|885683|885684|885685|885686|885687|885688|885689|885690|885691|885692|885693|885694|921742|921743|921744|921745|921746|921747|921748|921749|921750|921751|921752|921753|921754|921755|921756|926117|926118|926119|926120|926121|926122|926123|926124|930156|930157|930158|930159|930160|930161|930162|930163|930164|930165|930166|930167|930168|935377|935378|935379|935380|935381|940203|940607|940608|940609|941573|941574|941575|941576|941577|941578|941579|941580|947302|947303|947304|947305|947306|952140|952141|952142|952143|952144|952145|952146|956377|956378|956379|959531|959532|959974|960744", + "upstreamId": "15146|15147|15148|15149|17257|17257|17264|17265|17266|17276|19701|21932|21932|21934|21934|21935|21935|21935|21936|21936|21937|21939|21940|21942|21942|21943|21945|21947|21948|21948|21950|21951|21952|21954|21954|21955|21956|21957|27817|27817|27817|27818|27820|27820|27821|27821|27822|27822|27824|27824|27825|27827|27830|27831|28947|28948|28949|28950|28956|28957|28958|28975|28977|28986|28993|28994|33493|36221|36228|36230|36269|36275|36287|36305|38851|38851|45384|45429|45429|45430|45431|48183|50209|50210|50212|50216|50278|50282|50284|50285|52768|53809|53811|53814|53815|53816|53817|53817|54989|101890|101891|101892|132474|132476|132477|132478|132479|132480|132481|132482|132483|132484|132485|132486|132487|136461|136472|138926|138931|138935|138936|138937|138938|139807|139815|139817|139819|139827|139828|139830|139833|139835|139913|150487|151782|151825|152351|152351|152367|152477|152478|152541|152741|165952|165953|171051|171052|171052|171053|171053|171125|171127|171127|172353|172492|172493|175341|175342|181604|181605|181606|181607|181608|181609|181610|181611|181613|181614|181616|181617|181618|181619|181620|181621|181622|181623|181623|181624|181624|181625|181627|181628|182199|182200|182202|182944|182948|182956|182958|183477|183479|183481|186117|186118|194371|196493|196494|207813|207813|212767|212783|212784|212794|215422|217064|217065|217066|217067|217068|217069|217070|217071|217072|217073|221085|221946|232173|232175|232175|232176|232181|232183|232187|234436|234438|234440|234441|238108|238109|238170|238171|238173|238174|238175|238176|238177|238178|238179|238180|238181|238181|238183|238184|238185|238186|238187|238188|238189|238190|238191|238192|238193|238194|239025|239026|239028|239836|240788|240790|240797|240802|240898|241038|241039|241041|241042|241043|241044|241045|241046|241047|241049|241049|241050|241051|241052|241053|241855|241857|248478|249531|259746|264583|271973|275617|275648|275677|275679|275747|275751|275760|275761|275762|275764|275766|275785|275787|275792|275802|275832|275842|275887|275902|275904|275960|276961|276990|277000|277006|277007|277012|277019|277256|277258|277267|277278|277285|277358|277363|277947|277949|277952|277966|277986|278008|278066|278076|278090|278101|278420|278420|287549|287550|287558|287560|287567|287570|287573|287577|287579|287580|287581|287587|287590|287599|287600|287607|287611|287617|287619|288316|288321|288322|288323|288325|288326|288327|288329|288333|288334|288335|288337|288348|288351|288373|288376|288378|288381|291101|291105|291106|291107|291115|291129|291132|291133|291134|291135|291151|291155|291156|291157|291158|291273|291274|291276|291277|291285|291286|291288|291291|291294|291302|291303|291307|291308|291309|291311|291313|291318|291319|291322|297301|299304|299305|303496|310269|310270|310276|310292|310293|310301|310303|310308|310309|310315|310324|310330|310333|310334|310337|314381|314397|315391|315392|315393|315394|315397|315398|315399|315400|315401|315409|315411|315412|315418|315419|318274|318276|318277|318278|320987|320988|320992|320994|320995|320996|321001|321004|321005|321007|321008|321018|321020|321028|321368|321369|321370|321384|321385|321388|321398|321411|321412|321414|321415|321417|321419|321420|321423|322063|322066|322067|322068|322098|322103|322120|322121|322125|322128|322139|322140|322141|322142|322151|322153|322160|322161|322168|324403|324409|325143|325150|325151|327106|327108|327116|330074|330076|330078|330083|330092|330094|330098|330103|330108|330110|330111|330112|330114|336596|336597|336600|336605|336615|336626|336630|338549|338550|338556|338563|338565|338566|338569|338574|338579|338587|338596|353022|353023|353066|353067|353069|353127|353128|358698|358699|358701|358701|358732|358824|358829|360798|371258|384402|390718|390721|390732|390733|390870|390876|390877|390878|390880|390882|390890|390891|390892|390893|390893|390894|390895|390898|390899|390900|390901|390903|390904|390905|390906|390907|390908|390909|390910|390911|390912|390913|390914|390914|390915|390916|390917|390918|390919|390920|390921|390922|390923|390924|390925|390926|390927|390928|390929|390930|390931|390932|390934|390935|390936|390939|390940|397269|397444|397680|397699|398005|398008|398009|398013|398014|398017|398019|398027|398031|398033|398034|398040|398045|398062|398065|398066|398068|398070|398388|398389|398391|398394|398395|398505|398506|398507|400249|404976|404979|404981|406075|408270|408271|420737|420743|420745|420746|420748|420750|420755|420756|425903|432026|432028|432034|432038|432042|432045|432047|432050|432051|432988|442662|442663|442664|442665|446940|447286|447290|447293|447295|447296|447301|447305|447306|447371|447377|447379|447381|447383|447387|447390|447397|447400|447409|447417|447440|447451|447452|447456|447457|447483|447485|447487|447489|447490|447492|447494|447501|447502|447504|447505|447508|447510|447512|447515|447517|447518|447529|447530|451789|451846|451864|459817|460008|460025|460251|460316|460325|460677|460686|460872|460874|460875|460876|460880|460881|460883|460886|460894|461175|461177|461179|461180|461185|461190|461193|461195|461204|461206|461657|461661|461662|461664|461670|461672|461675|461679|461681|463425|472265|472268|472271|472272|472273|472274|472276|472277|472278|472279|472280|472283|472284|472318|472323|472339|475107|475955|475956|475993|475995|476243|476249|476426|476431|476436|476439|514854|514882|515267|515268|515273|515281|515283|515285|515287|515290|515291|515294|515295|515298|515302|515307|515310|515313|515314|515316|515322|515324|515328|515333|515334|515353|515355|515356|515357|515359|515362|515363|515364|515366|515369|515371|515372|515373|515375|525176|525849|525882|525883|525887|525890|525898|525978|526071|526072|526074|526398|526400|526408|526411|539281|551810|556488|556492|556517|556519|556521|556690|556692|556694|556696|556698|556700|556743|556745|556747|556749|556871|557040|557042|557044|557046|557048|557050|557052|557054|557056|557058|558236|558240|558242|558244|558246|558248|558250|558728|564091|564393|564396|564402|564409|564411|564417|564418|564427|564429|565003|565487|565489|565490|565492|565493|565494|565505|565505|566722|567041|567048|567049|569630|569655|569941|570295|570304|575654|609782|627077|627078|627079|627080|627081|627082|627083|627084|627085|627086|627087|627088|627089|627090|627091|627092|627093|627094|627095|627096|627097|627098|627099|627100|627101|627102|627103|627104|627105|627106|627107|627108|627109|627110|627111|627112|627113|627114|627115|627116|627117|627118|627119|627120|639692|639693|639694|639695|639696|639697|639698|639699|639700|639701|639702|639703|639704|639705|639706|639707|639708|639709|639710|639711|639712|639713|650537|650539|650564|650566|650595|650596|650644|650646|650649|650650|652097|652154|652305|652483|657158|682511|684224|690417|690420|690421|731863|745840|745844|758851|761325|761328|761331|761333|768201|768204|790301|791417|806488|806490|806491|806492|806494|806495|806501|810758|810761|810765|818863|818864|818865|818866|818867|818868|818869|818870|820331|820332|820333|820334|820335|820426|822372|822993|822994|822995|822996|822997|822998|822999|823000|823001|823002|823003|823004|823005|823006|823007|823008|823009|823010|823011|836830|837948|837949|837950|837951|837952|837953|837954|837955|837956|837957|837958|837959|837960|850733|850735|850937|851421|852603|858441|865863|865864|865865|865866|865867|865868|865869|865870|865871|865872|865873|865874|865875|865876|865877|865878|865879|865880|865881|865882|867045|868471|868472|868604|872084|872085|872086|872087|872088|872089|872090|872091|872092|872093|872094|872388|885667|885668|885669|885670|885671|885672|885673|885674|885675|885676|885677|885678|885679|885680|885681|885682|885683|885684|885685|885686|885687|885688|885689|885690|885691|885692|885693|885694|921742|921743|921744|921745|921746|921747|921748|921749|921750|921751|921752|921753|921754|921755|921756|926117|926118|926119|926120|926121|926122|926123|926124|930156|930157|930158|930159|930160|930161|930162|930163|930164|930165|930166|930167|930168|935377|935378|935379|935380|935381|940203|940607|940608|940609|941573|941574|941575|941576|941577|941578|941579|941580|947302|947303|947304|947305|947306|952140|952141|952142|952143|952144|952145|952146|956377|956378|956379|959531|959532|959974|960744", "text": "Pheochromocytoma" }, { - "baseId": "15150|15151|15152|15153|15154|490107|513104|513105|615891", + "upstreamId": "15150|15151|15152|15153|15154|490107|513104|513105|615891", "text": "Arthrogryposis, renal dysfunction, and cholestasis 2" }, { - "baseId": "15155", + "upstreamId": "15155", "text": "Keratosis linearis with ichthyosis congenita and sclerosing keratoderma" }, { - "baseId": "15156|15170|15171", + "upstreamId": "15156|15170|15171", "text": "Homocystinuria, pyridoxine-nonresponsive" }, { - "baseId": "15156|15159|15165|15168|15169", + "upstreamId": "15156|15159|15165|15168|15169", "text": "HYPERHOMOCYSTEINEMIA, THROMBOTIC, CBS-RELATED" }, { - "baseId": "15156|15157|15158|15159|15161|15163|15164|15165|15166|15167|15168|15169|15170|15171|98334|98335|98336|98337|140369|140370|140371|140373|140374|140375|140377|140379|140380|187051|187052|187053|187054|187055|187056|187057|187058|187059|187060|187061|187062|187063|191134|191313|191481|191855|194786|195549|196148|204459|209350|210390|210393|210394|210395|210396|210398|210399|210402|210404|210405|210408|210409|210411|210412|210413|210415|210419|210420|210421|210423|210424|210427|210429|210430|210431|210433|210434|210435|210437|210439|210440|210441|210442|210443|210444|210446|210447|210448|210449|210450|210451|210452|210453|210454|222855|231132|237447|243632|243633|243634|243635|243636|243637|257471|259083|259084|259088|259090|259091|259092|259093|259094|259097|259098|259099|259100|259101|259103|259104|265247|336874|336879|336881|336884|336887|346560|346562|346570|346572|346581|346582|346587|346591|350748|350749|350752|350753|350756|350757|350760|350764|351807|358633|358634|358635|358636|358637|358638|358639|358640|358641|358642|358643|358644|358645|358646|358647|358648|377269|377295|378454|378558|379784|379785|403740|403742|403744|403787|403798|403799|404249|404252|404257|404259|404265|404267|404279|404286|404302|404307|404308|410875|410878|415703|433393|469652|470682|470688|471079|471215|471219|471221|471223|471228|471658|471660|471661|471665|471666|471667|471673|480530|488011|488016|488288|491269|492825|507390|507404|507408|507411|507571|508313|508316|510855|510857|510860|510863|512882|533892|533894|533897|533898|533899|533901|533903|533939|533942|533947|533949|534330|534447|549032|549038|549039|549042|549045|549048|549049|549051|549053|549102|549105|549106|549107|549108|549114|549120|549123|549261|549263|549266|549267|549268|549269|549273|549275|549276|549277|549422|549423|549424|549425|549426|549427|551338|571461|571570|571571|571575|573132|573135|573136|573806|573809|573810|573811|573814|575170|575171|575172|575173|620672|620922|621647|649005|649006|649007|649008|649009|649010|649011|649012|649013|649014|649015|649016|649017|649018|649019|653165|653574|653669|653671|656662|684907|684908|684909|689254|689255|689256|689257|690244|694634|694635|694636|695860|728927|742660|742661|773358|778621|801742|821374|821375|848809|848810|848811|848812|848813|848814|848815|848816|848817|848818|848819|848820|852916|886868|886869|886870|886871|886872|886873|886874|886875|886876|886877|886878|886879|886880|886881|886882|887516|929327|929328|929329|929330|929331|939120|939121|939122|939123|941261|941262|951241|951242|958965|958966|966848|972357|972358|972359|972360|972361|980041|980042|980043|980044|980045", + "upstreamId": "15156|15157|15158|15159|15161|15163|15164|15165|15166|15167|15168|15169|15170|15171|98334|98335|98336|98337|140369|140370|140371|140373|140374|140375|140377|140379|140380|187051|187052|187053|187054|187055|187056|187057|187058|187059|187060|187061|187062|187063|191134|191313|191481|191855|194786|195549|196148|204459|209350|210390|210393|210394|210395|210396|210398|210399|210402|210404|210405|210408|210409|210411|210412|210413|210415|210419|210420|210421|210423|210424|210427|210429|210430|210431|210433|210434|210435|210437|210439|210440|210441|210442|210443|210444|210446|210447|210448|210449|210450|210451|210452|210453|210454|222855|231132|237447|243632|243633|243634|243635|243636|243637|257471|259083|259084|259088|259090|259091|259092|259093|259094|259097|259098|259099|259100|259101|259103|259104|265247|336874|336879|336881|336884|336887|346560|346562|346570|346572|346581|346582|346587|346591|350748|350749|350752|350753|350756|350757|350760|350764|351807|358633|358634|358635|358636|358637|358638|358639|358640|358641|358642|358643|358644|358645|358646|358647|358648|377269|377295|378454|378558|379784|379785|403740|403742|403744|403787|403798|403799|404249|404252|404257|404259|404265|404267|404279|404286|404302|404307|404308|410875|410878|415703|433393|469652|470682|470688|471079|471215|471219|471221|471223|471228|471658|471660|471661|471665|471666|471667|471673|480530|488011|488016|488288|491269|492825|507390|507404|507408|507411|507571|508313|508316|510855|510857|510860|510863|512882|533892|533894|533897|533898|533899|533901|533903|533939|533942|533947|533949|534330|534447|549032|549038|549039|549042|549045|549048|549049|549051|549053|549102|549105|549106|549107|549108|549114|549120|549123|549261|549263|549266|549267|549268|549269|549273|549275|549276|549277|549422|549423|549424|549425|549426|549427|551338|571461|571570|571571|571575|573132|573135|573136|573806|573809|573810|573811|573814|575170|575171|575172|575173|620672|620922|621647|649005|649006|649007|649008|649009|649010|649011|649012|649013|649014|649015|649016|649017|649018|649019|653165|653574|653669|653671|656662|684907|684908|684909|689254|689255|689256|689257|690244|694634|694635|694636|695860|728927|742660|742661|773358|778621|801742|821374|821375|848809|848810|848811|848812|848813|848814|848815|848816|848817|848818|848819|848820|852916|886868|886869|886870|886871|886872|886873|886874|886875|886876|886877|886878|886879|886880|886881|886882|887516|929327|929328|929329|929330|929331|939120|939121|939122|939123|941261|941262|951241|951242|958965|958966|966848|972357|972358|972359|972360|972361|980041|980042|980043|980044|980045", "text": "Classic homocystinuria" }, { - "baseId": "15156|15157|15158|15159|15161|15164|15165|15167|15171|29317|98334|187051|187055|187056|187058|187059|187062|196148|199952|210429|210437|210443|210444|336873|336881|346575|346577|350762|358636|358637|358643|358648|471223|488011|488016|621647|621874|800981|848818|906109|917313", + "upstreamId": "15156|15157|15158|15159|15161|15164|15165|15167|15171|29317|98334|187051|187055|187056|187058|187059|187062|196148|199952|210429|210437|210443|210444|336873|336881|346575|346577|350762|358636|358637|358643|358648|471223|488011|488016|621647|621874|800981|848818|906109|917313", "text": "Homocystinuria" }, { - "baseId": "15156|15159|15164|15166|15170|15307|15365|15773|15825|15826|15827|15828|17509|18156|18157|18158|18159|18160|18165|18166|18167|18170|18171|18174|18177|18179|18250|19626|19629|19768|19770|19772|20580|20581|21091|21093|21793|21795|21796|21885|22603|23317|23318|23324|23332|23642|23647|23655|23815|23817|23819|24047|24048|24057|24408|24413|24416|24422|24428|24431|24432|24435|24440|24446|25754|25769|25777|25787|26306|26307|26308|26813|27236|27237|27447|27448|27450|27454|27458|27460|27463|27482|27484|27495|27496|27541|27553|27563|27565|27698|27746|27996|27998|28365|28367|28465|28466|28473|28491|28497|28516|28518|28676|28997|29101|29102|29103|29106|29107|29127|29128|29130|29131|29133|29134|29136|29137|29141|29143|29146|29163|29164|29173|29174|29190|29409|29459|29463|29481|29482|29556|29566|31478|31479|31483|31488|31490|31491|31496|31853|31857|31885|32244|32673|33095|33096|33097|33098|33099|33315|33317|33352|34156|34194|36140|38447|38448|38552|39055|39062|39099|39262|39268|39270|39354|39415|40369|40371|40374|40376|40377|40426|40431|40438|40440|40446|40448|40451|40452|40453|40454|40455|40456|40457|40458|40460|40463|40464|40465|40466|40467|40468|40469|40471|40479|40481|40485|40486|40487|40496|40498|40499|40537|40543|40545|40548|40549|44162|44292|44293|44295|44297|44299|44314|44315|44351|44354|44355|44431|44434|44436|44468|44628|44665|44666|44667|44669|44670|44673|44678|44679|44684|44685|44686|44689|44690|44695|44705|44708|44713|44718|44724|44729|44735|44738|44742|44748|44750|44767|44768|44771|44772|44780|44783|44790|44792|44793|44796|44797|44800|44801|44802|45088|45091|45092|45097|45100|45101|45102|45105|45106|45107|45108|45109|45110|45111|45112|45135|45138|45139|45141|45263|45264|45265|45266|45267|45269|45271|45272|45273|45275|45276|45278|45280|45282|45283|45284|45289|45291|45296|45299|45303|45304|45307|45308|45310|45319|45320|45341|45342|45357|45358|45369|45390|45391|45397|45398|45400|45401|45406|45407|45408|45409|45411|45422|45424|45426|45427|45428|45518|45520|45523|45526|45530|45534|45535|45536|45537|45538|45557|45558|45559|45599|45725|45847|45929|47468|48044|48063|48065|48266|48983|48985|49006|49029|49036|49040|49055|49056|49058|49067|49082|49096|49097|49098|49357|50227|51095|51429|51440|51441|51443|51446|51454|51455|51457|51464|51465|51466|51467|51468|51490|51495|51500|51504|51505|51507|51525|51526|51527|51536|51538|51540|51551|51552|51569|51571|51572|51578|51580|51582|51583|51587|51593|51604|51607|51623|51624|51634|51636|51643|51644|51645|51646|51648|51651|51652|51653|51654|51656|51657|51658|51659|51663|51668|51676|51684|51685|51688|51694|51702|51706|51707|51710|51711|51713|51715|51719|51721|51726|51732|51733|51735|51736|51738|51741|51742|51745|51754|51755|51758|51760|51769|51783|51785|51789|51790|51794|51796|51797|51808|51809|51814|51815|51817|51822|51826|51828|51832|51833|51834|51836|51844|51846|51850|51857|51858|51860|51861|51863|51864|51870|51874|51876|51877|51881|51888|51892|51898|51901|51905|51906|51914|51916|51923|51927|51928|51929|51930|51937|51938|51943|51947|51949|51950|51953|51954|51956|51958|51960|51961|51962|51963|51967|51976|51977|51980|51983|51987|51989|51990|51991|51992|51993|51999|52003|52010|52013|52022|52023|52032|52033|52034|52039|52044|52045|52054|52060|52064|52066|52070|52071|52083|52088|52092|52096|52101|52103|52108|52109|52112|52115|52116|52119|52120|52121|52122|52123|52124|52126|52127|52128|52138|52150|52155|52158|52162|52163|52165|52171|52175|52182|52187|52190|52197|52199|52201|52202|52207|52209|52212|52214|52226|52231|52241|52242|52245|52252|52256|52259|52260|52262|52263|52268|52269|52270|52273|52283|52285|52286|52291|52294|52299|52300|52534|52536|52537|52540|52543|52545|52554|52559|52561|52565|52573|52575|52580|52594|52602|52613|52614|52619|52622|52623|52624|52625|52628|52630|52642|52645|52783|52786|52789|52792|52795|52796|52797|52798|52801|52805|52810|52817|52828|52838|52845|52846|52867|52868|52871|52877|52879|52884|52886|52888|52890|52892|52896|52897|52898|52899|52902|52903|52911|52914|52915|52916|52919|52920|52922|52924|52928|52931|52932|52933|52935|52937|52939|52946|52951|52956|52961|52963|52964|52967|52970|52971|52974|52976|52982|52988|52989|52995|52996|52997|52998|53002|53005|53007|53008|53009|53048|53049|53053|53066|53068|53071|53073|53077|53078|53084|53086|53089|53093|53096|53098|53100|53102|53103|53106|53107|53112|53117|53120|53121|53134|53137|53138|53139|53142|53146|53147|53149|53151|53156|53159|53163|53164|53171|53172|53174|53177|53184|53186|53188|53190|53192|53193|53196|53197|53320|53325|53326|53327|53328|53330|53335|53399|53400|53401|53406|53409|53410|53412|53419|53421|53425|53428|53429|53432|53438|53439|53441|53442|53444|53445|53454|53456|53459|53460|53462|53463|53467|53469|53471|53472|53474|53475|53476|53479|53480|53481|53482|53484|53485|53486|53488|53490|53493|53496|53498|53501|53502|53503|53514|53516|53524|53527|53528|53532|53533|53540|53546|53547|53564|53566|53569|53582|53583|53593|53599|53600|53601|53604|53612|53615|53616|53617|53618|53622|53626|53627|53628|53630|53634|53636|53639|53640|53641|53642|53646|53647|53648|53650|53651|53653|53654|53655|53656|53657|53659|53660|53662|53667|53668|53671|53673|53674|53682|53683|53684|53685|53687|53688|53689|53691|53692|53693|53695|53696|53699|53700|53703|53704|53708|53709|53713|53745|53747|53765|53769|53774|53790|53796|53819|53825|53828|53829|53830|53833|53834|53836|53839|53840|53843|53846|53855|53859|53861|53862|53863|53872|53873|53874|53876|53879|53881|53939|53940|53941|53943|53944|53947|53950|53951|53956|53958|54004|54022|54024|54025|54027|54028|54034|54037|54040|54041|54043|54044|54053|54054|54057|54060|54061|54062|54064|54066|54073|54074|54075|54077|54080|54082|54084|54086|54088|54089|54091|54092|54093|54096|54103|54105|54108|54110|54112|54114|54117|54123|54127|54128|54134|54135|54136|54149|54170|54173|54174|54177|54179|54183|54188|54189|54191|54196|54197|54200|54202|54210|54214|54218|54219|54222|54223|54224|54225|54230|54234|54235|54243|54244|54246|54248|54250|54251|54253|54260|54261|54262|54264|54361|54553|54555|54557|54558|54559|54564|54570|54577|54583|54586|54637|54638|54641|54651|54652|54654|54655|54659|54663|54664|54666|54675|54677|54678|54686|54690|54691|54692|54693|54696|54697|54702|54703|54704|54708|54710|54713|54714|54716|54717|54720|54726|54727|54741|54743|54745|54746|54748|54749|54753|54754|54760|54761|54762|54765|54766|54768|54769|54783|54785|54788|54790|54792|54793|54795|54798|54804|54849|54851|54853|54857|54861|54867|54871|54874|54876|54877|54881|54886|54892|54895|54903|54943|54945|54946|54947|54949|54952|54993|54997|54999|55002|55007|55010|55011|55012|55013|55015|55016|55017|55019|55020|55303|55305|55306|55312|55313|55315|55318|55319|55321|55325|55328|55330|55335|55336|55343|55347|55348|55351|55352|55353|55354|55356|55367|55696|55698|55699|55700|55701|55739|55741|55743|55744|55746|55747|55750|55751|55752|55755|55756|55757|55759|55760|55762|55764|55771|55772|55777|55778|55779|55782|55783|55786|55798|55800|55806|55809|55810|55814|55819|55820|55821|55823|55829|55831|55837|55842|55845|55846|55847|55851|55852|55858|55860|55863|55867|55870|55873|55875|55878|55879|55880|55881|55882|55887|55896|55897|55898|55899|55904|55907|55908|55910|55915|55921|55923|55928|55931|55935|55936|55938|55939|55940|55941|55942|55944|55946|55949|55951|55957|55963|55970|55973|55977|55982|55983|55984|55988|55990|55991|56002|56004|56009|56016|56017|56024|56025|56028|56029|56036|56038|56039|56042|56043|56047|56048|56049|56050|56051|56054|56055|56059|56072|56074|56075|56076|56079|56094|56096|56097|56100|56101|56107|56108|56111|56113|56114|56115|56117|56118|56119|56120|56121|56124|56125|56128|56132|56133|56135|56136|56138|56143|56147|56148|56150|56152|56153|56155|56156|56158|56166|56167|56171|56172|56173|56174|56175|56176|56178|56179|56180|56181|56183|56189|56190|56191|56193|56195|56196|56197|56199|56200|56201|56202|56203|56205|56208|56209|56210|56211|56214|56215|56216|56218|56221|56222|56224|56230|56233|56235|56237|56239|56242|56243|56248|56253|56263|56264|56265|56270|56271|56275|56276|56285|56288|56289|56291|56292|56293|56301|56302|56307|56313|56315|56317|56321|56323|56324|56325|56327|56330|56333|56335|56337|56338|56342|56343|56344|56345|56347|56349|56350|56352|56353|56354|56356|56357|56359|56362|56365|56367|56370|56373|56374|56377|56378|56381|56383|56385|56387|56388|56390|56391|56392|56393|56394|56395|56401|56405|56408|56409|56412|56413|56414|56415|56418|56420|56421|56425|56428|56430|56433|56436|56439|56440|56441|56442|56444|56454|56455|56457|56458|56459|56462|56463|56467|56469|56470|56471|56472|56473|56478|56481|56483|56485|56486|56487|56490|56493|56494|56497|56498|56499|56503|56504|56508|56512|56514|56515|56516|56518|56519|56520|56521|56524|56530|56532|56533|56535|56537|56538|56539|56540|56542|56544|56545|56547|56549|56551|56555|56556|56557|56558|56559|56560|56561|56563|56564|56567|56569|56570|56572|56573|56575|56577|56579|56580|56582|56583|56584|56585|56586|56589|56592|56593|56595|56597|56598|56600|56606|56608|56612|56615|56616|56621|56624|56628|56629|56631|56634|56637|56638|56639|56640|56641|56645|56646|56648|56652|56658|56661|56663|56665|56667|56668|56675|56678|56680|56681|56683|56684|56685|56687|56691|56693|56694|56696|56700|56701|56706|56708|56709|56710|56711|56714|56716|56717|56718|56719|56722|56723|56725|56726|56727|56730|56731|56732|56735|56738|56741|56743|56750|56753|56755|56759|56760|56762|56763|56764|56766|56767|56768|56771|56772|56774|56775|56777|56778|56785|56786|56787|56788|56789|56792|56793|56796|56797|56798|56800|56802|56803|56804|56805|56806|56807|56811|56812|56814|56816|56819|56822|56824|56825|56826|56827|56829|56831|56833|56834|56838|56839|56841|56842|56845|56847|56848|56849|56851|56853|56855|56856|56857|56858|56863|56864|56865|56866|56867|56868|56870|56871|56872|56873|56874|56875|56876|56879|56880|56881|56882|56884|56886|56887|56971|56976|56978|56980|56985|56987|56988|56990|56993|56994|56995|56996|56998|56999|57000|57001|57002|57003|57004|57005|57008|57054|57057|57058|57063|57070|57074|57075|57076|57078|57079|57196|57201|57205|57207|57209|57210|57211|57212|57216|57219|57226|57230|57234|57235|57239|57240|57246|57248|57252|57256|57260|57261|57281|57284|57289|57443|57444|57446|57448|57450|57451|57453|57455|57460|57461|57463|57464|57466|57467|57470|57471|57473|57474|57475|57476|57478|57479|57481|65597|67598|67600|67618|67623|67629|67630|67638|67640|67648|67650|67654|67661|67664|67668|67671|67677|67686|67687|67690|67695|67699|67718|67720|67721|67729|67731|67737|67738|67740|67745|67764|67768|67776|67784|67786|67792|67804|67808|67813|67819|75310|76388|77677|77678|77757|77761|77798|77805|77807|77902|77922|77926|77933|77938|77943|77953|77968|77969|77971|77974|77984|78012|78013|78059|78074|78104|78121|78125|78126|78144|78157|78175|78188|78217|78219|78248|78264|78275|78287|78293|78298|78323|78324|78326|78330|78333|78334|78340|78347|78350|78371|78376|78382|78398|78400|78401|78405|78406|78410|78431|78448|78452|78465|78493|78495|78502|78511|78535|78547|78552|78555|78573|78578|78586|78587|78605|78607|78608|78618|78620|78626|78627|78639|78643|78648|78673|78684|78688|78702|78714|78718|78728|78729|78731|78735|78774|78775|78791|78795|78817|78826|78832|78839|78844|78849|78862|78870|78872|78877|78880|78889|78900|78901|78902|78906|78916|78924|78940|78946|78949|81524|85203|85951|86527|89851|94510|94537|98335|98337|98597|99298|99300|99303|99305|99306|99309|99310|99311|99314|99316|99317|99319|99320|99321|99322|99323|99324|99326|99330|99382|99415|99422|99423|99426|99427|99651|99654|99656|99666|99668|99669|99670|99673|99674|99675|99680|99922|100333|100346|100353|100361|100371|100373|100376|100378|100380|100382|100387|100394|100403|100410|100416|100439|100448|100487|100503|100504|100508|100513|100515|100516|100518|100532|100542|100548|100556|100557|100575|100579|100587|100603|100641|100642|100656|100657|100665|100676|100684|100697|100705|100709|100716|100756|100761|101147|101153|101154|101155|101183|101184|101185|101850|102169|102172|102182|102185|102190|102192|102195|102197|102201|102203|102206|102207|102208|102211|102212|102214|102215|102223|106919|106954|107015|107042|107097|107134|107174|107194|107198|107216|107218|131959|134480|134481|134482|134484|134485|134486|134487|134488|134490|134492|134493|134494|134495|134496|134497|134498|134499|134500|134505|134506|134509|134511|134513|134515|134516|134517|134518|134519|134521|134522|134523|134566|134760|135035|135036|135039|135657|136116|136125|136127|136129|136135|136399|136408|136409|136418|136421|136424|136425|136427|136430|136441|136493|138649|138650|138651|138653|138658|138660|138662|138665|138666|138668|138669|138670|138671|138673|138674|138676|138678|138679|138681|138683|138685|138687|138688|138693|138695|138696|138698|138983|139987|139989|140033|140035|140036|140039|140040|140041|140042|140043|140044|140045|140046|140047|140048|140049|140050|140051|140052|140053|140084|140086|140087|140090|140093|140100|140101|140196|140198|140316|140318|140326|140331|140333|140335|140336|140338|140339|140344|140345|140349|140350|140351|140352|140360|140362|140370|140371|140380|140546|140547|140548|140551|140552|140556|140557|140559|140560|140562|140563|140570|140572|140574|140578|140579|140583|140585|140586|140590|140592|140593|140595|140598|140601|140602|140603|140604|140605|140609|140614|140615|140617|140618|140620|140621|140622|140623|140625|140629|140630|140633|140634|140635|140637|140638|140640|140642|140643|140644|140647|140649|140651|140652|140655|140656|140657|140658|140660|140661|140662|140664|140665|140666|140738|140780|140861|140867|140869|140871|140874|140875|140876|141002|141008|141014|141016|141017|141019|141020|141022|141023|141025|141027|141028|141033|141036|141038|141039|141043|141044|141047|141052|141053|141056|141057|141059|141060|141061|141062|141089|141150|141151|141194|141240|141241|141242|141244|141245|141246|141291|141293|141294|141298|141305|141308|141309|141310|141312|141313|141314|141315|141338|141339|141340|141490|141501|141502|141509|141510|141516|141520|141524|141534|141537|141545|141549|141604|141605|141663|141664|141686|141690|141691|141693|141694|141695|141696|141700|141701|141704|141708|141710|141712|141713|141714|141715|141770|141771|141803|141804|141806|142022|142030|142031|142032|142033|142035|142036|142037|142038|142040|142041|142044|142045|142046|142047|142048|142049|142051|142052|142053|142054|142056|142057|142059|142060|142061|142062|142063|142065|142066|142067|142068|142069|142071|142072|142073|142075|142076|142091|142093|142094|142095|142098|142102|142118|142121|142126|142127|142212|142214|142228|142371|142374|142375|142378|142381|142397|142546|142603|142604|142638|142639|142640|142642|142645|142646|142648|142649|142652|142654|142655|142695|142696|142698|142736|142739|142740|142746|142747|142749|142751|142754|142755|142756|142757|142761|142764|142766|142769|142770|142814|142815|142816|142817|142818|142819|142820|142872|142873|142874|142875|142876|142877|142879|142880|142884|142885|142886|142915|142916|142920|142925|142927|151781|152781|165525|165529|165540|165548|165560|165566|165569|165571|165576|165579|165589|165960|167406|168106|169194|170939|170942|170944|171050|171059|171072|171073|171075|171083|171102|171108|171117|171118|171119|171120|171122|171123|171133|171139|171141|171143|171145|171147|171162|171176|171178|171181|171184|171190|171194|171245|171246|171281|171781|172238|172333|172346|172392|172394|172397|172403|172407|172410|172416|172425|172429|172433|172435|172436|172457|172473|172475|172489|172499|172503|172540|172547|172549|172564|172565|172568|172599|172609|172610|172615|172621|172622|172631|172642|172647|172657|172665|172671|172679|172683|172697|172698|172709|172710|172738|172786|172800|172820|172829|172834|172850|172852|172863|172868|172879|172955|172958|172962|172963|172967|172973|172977|172981|172982|172994|172998|172999|173002|173008|173009|173015|173022|173031|173035|173036|173043|173044|173045|173046|173049|173054|173068|173069|173074|173081|173089|173092|173093|173102|173107|173118|173136|173144|173147|173157|173158|173159|173163|173166|173167|173169|173193|173218|173225|173235|173252|173258|173264|173267|173270|173311|173316|173344|173364|173383|173396|173403|173409|173443|173446|173453|173456|173462|173483|173492|173586|173591|173597|173599|173612|173727|173730|173752|173755|173757|173777|173779|173790|173792|173799|173800|173801|173802|173806|173850|173855|173864|173893|173894|173895|173917|173926|173931|173932|173943|173990|173996|173997|174000|174005|174048|174049|174134|174137|174142|174144|174186|174258|174347|174384|174532|174577|174590|174592|174598|174604|174615|174620|174724|174735|174737|174738|174750|174751|174756|174773|174775|174776|174786|174799|174853|174855|174878|174880|174886|174887|174890|174893|174896|174918|174919|175019|175032|175042|175138|175139|175150|175157|175164|175175|175177|175179|175180|175183|175184|175185|175199|175201|175212|175290|175291|175314|175315|175330|175395|175405|175412|175413|175415|175416|175419|175426|175429|175430|175433|175436|175437|175442|175451|175470|175477|175480|175481|175484|175497|175499|175503|175557|175565|175573|175575|175581|175582|175587|175594|175598|175600|175611|175619|175624|175630|175631|175647|175699|175700|175705|175726|175753|175756|175838|175861|175864|175867|175869|175870|175893|175894|175898|175955|175979|175991|175994|176123|176126|176137|176235|176358|176490|176516|176517|176519|176531|176532|176536|176658|176673|176678|176679|176681|176806|176810|176829|176848|176849|177047|177075|177206|177439|177533|177536|177599|177601|177707|177764|177765|177766|177829|177830|177831|178037|178112|178203|178210|178212|178213|178216|178217|178218|178223|178225|178228|178229|178256|178295|178436|178441|178456|178457|178461|178495|178507|178522|178523|178526|178533|178534|178536|178552|178556|178559|178574|178575|178582|178587|178589|178594|178596|178608|178613|178626|178634|178673|178675|178699|178700|178709|178710|178711|178712|178715|178726|178737|178748|178753|178754|178764|178863|178881|178913|178923|178930|178944|179043|179045|179046|179088|179117|179124|179169|179171|179185|179229|179230|179255|179256|179268|179279|179280|179289|179307|179310|179351|179365|179369|179373|179436|179464|179499|179500|179525|179535|179545|179563|179571|179597|179598|179616|179636|179640|179645|179658|179665|179678|179681|179712|179717|179728|179746|179749|179802|179816|179856|179882|179904|179906|181036|185443|185452|186018|186087|186151|186280|186340|186355|186396|186427|186430|186468|186481|186494|186522|186574|187213|187396|188021|188023|188306|188307|188323|188325|188326|188327|188328|188333|188336|188339|188347|188359|188360|188372|188373|188375|188385|188388|188392|188394|188395|188405|188407|188410|188412|188416|188428|188434|188435|188439|188440|188441|188442|188449|188458|188463|188464|188478|188483|188484|188485|188486|188492|188497|188498|188500|188501|188504|188506|188507|188539|188551|188552|188557|188559|188577|188581|188609|188614|188616|188625|188626|188628|188629|188633|188635|188636|188640|188641|188666|188676|188684|188707|188712|188722|188734|188745|188746|188753|188755|188894|189200|189203|189207|189221|189222|189229|189235|189238|189240|189244|189247|189248|189249|189250|189251|189257|189264|189266|189267|189268|189272|189273|189276|189277|189278|189279|189285|189286|189287|189288|189291|189293|189295|189297|189299|189300|189302|189304|189305|189307|189319|189338|189341|189342|189343|189344|189358|189373|189377|189383|189393|189396|189409|189416|189435|189444|189445|189451|189464|189466|189467|189478|189496|189523|189539|189540|189541|189548|189553|189554|189585|189586|189591|189611|189614|189620|189655|189698|189702|189705|189733|189736|189745|189761|189768|189815|189816|189827|189834|189844|189847|189849|189852|189855|189858|189860|189861|189862|189863|189869|189870|189871|189882|189885|189893|189910|189921|189932|189933|189957|189962|189965|189968|189972|189979|189980|189983|189986|189989|190006|190007|190050|190051|190107|190385|190412|190413|190452|190914|190915|191008|191190|191200|191320|191359|191451|191890|191955|192031|192064|192065|192066|192072|192176|192196|192544|192551|192628|192654|192655|192712|192760|192900|192913|192915|192957|193001|193004|193006|193008|193082|193086|193093|193217|193221|193232|193241|193272|193303|193304|193315|193317|193356|193357|193408|193540|193566|193589|193889|193962|194052|194075|194223|194229|194230|194471|194483|194517|194565|194638|194641|194647|194660|194666|194679|194683|194703|194721|194769|194793|194849|194889|194931|195071|195080|195138|195142|195153|195202|195434|195629|195637|195694|195767|195796|195854|195980|195981|195986|195987|196151|196219|196238|196270|196400|196450|196467|196476|196485|196503|196504|196514|196521|196538|196541|196546|196555|196566|196567|196580|196581|196592|196595|196600|196605|196635|196638|196640|196646|196658|196672|196673|196711|196721|196740|196760|196763|196770|196776|196782|196783|196786|196789|196790|196791|196792|196799|196804|196805|196806|196812|196816|196817|196834|196839|196840|196843|196846|196862|196888|196889|196891|196944|196963|196964|196967|196976|197003|197006|197020|197037|197039|197053|197057|197065|197069|197073|197086|197087|197100|197110|197116|197146|197159|197164|197175|197201|197219|197228|197235|197259|197263|197272|197273|197278|197282|197289|197299|197324|197327|197332|197371|197393|197398|197402|197450|197471|197484|197485|197488|197580|197585|197588|197590|197601|197615|197619|197622|197636|197644|197649|197650|197655|197657|197661|197672|197677|197685|197688|197703|197717|197735|197742|197743|197746|197755|197789|197803|197808|197811|197822|197823|197832|197833|197841|197842|197845|197846|197847|197849|197852|197865|197868|197869|197870|197876|197877|197879|197880|197882|197883|197884|197886|197887|197890|197893|197894|197896|197899|197902|197907|197914|197917|197922|197925|197926|197929|197941|197957|197962|197974|197998|198007|198042|198048|198054|198058|198063|198078|198082|198090|198092|198098|198099|198111|198112|198135|198143|198154|198157|198164|198169|198177|198187|198197|198199|198224|198225|198236|198262|198272|198286|198315|198318|198320|198331|198346|198351|198365|198377|198387|198395|198402|198415|198417|198418|198436|198441|198452|198459|198463|198467|198468|198473|198478|198493|198526|198529|198532|198533|198534|198535|198538|198564|198568|198577|198591|198594|198695|198701|198731|198737|198744|198745|198747|198753|198754|198773|198789|198793|198797|198809|198818|198834|198835|198838|198841|198842|198853|198856|198895|198943|198952|198969|198987|198998|199041|199043|199086|199087|199115|199117|199118|199122|199130|199132|199145|199148|199174|199175|199189|199201|199222|199230|199234|199249|199285|199304|199306|199308|199310|199320|199322|199332|199373|199380|199555|199557|199582|199613|199743|199749|199750|199774|199890|204196|204202|206601|207155|207157|207158|207159|207161|207163|207174|207727|208969|208978|209154|209160|209161|209425|209426|209429|209430|209431|209432|209434|209440|209444|209446|209448|209449|209453|209456|209458|209463|209465|209470|209472|209473|209474|209480|209481|209482|209484|209485|209486|209493|209494|209495|209499|209500|209501|209502|209518|209522|209533|209534|209538|209541|209556|209560|209562|209565|209569|209578|209580|209581|209606|209646|209648|209653|209654|209655|209656|209657|209661|209670|209673|209687|209689|209690|209693|209695|209697|209698|209705|209710|209713|209717|209724|209729|209731|209732|209734|209741|209746|209756|209759|209778|209781|209785|209795|209805|209806|209807|209808|209809|209813|209818|209822|209826|209828|209830|209841|209844|209849|209850|209851|209856|209857|209865|209869|209870|209878|209879|209884|209904|209962|209966|209970|209971|209972|209973|209974|209978|209979|209985|209986|209987|209989|209991|209993|209994|209995|209996|209998|210000|210003|210006|210011|210014|210018|210023|210028|210032|210035|210036|210041|210044|210052|210053|210055|210064|210069|210076|210083|210088|210089|210093|210094|210096|210100|210115|210121|210122|210125|210131|210136|210137|210138|210156|210157|210158|210162|210166|210172|210182|210214|210215|210216|210245|210259|210278|210293|210309|210310|210334|210352|210362|210365|210369|210379|210383|210386|210388|210389|210393|210394|210395|210396|210404|210412|210415|210418|210423|210430|210431|210441|210442|210444|210447|210450|210460|210462|210465|210471|210472|210477|210478|210482|210484|210504|210506|210507|210516|210521|210523|210531|210533|210540|210548|210551|210555|210566|210578|212344|212347|212567|212569|212616|212621|212622|212997|212999|213468|213544|213550|214116|215017|215346|215355|215553|221089|221120|221124|221361|221429|221430|221431|221432|221668|221671|221672|221675|221743|221746|221747|221750|221807|221808|221810|221811|221813|221814|221815|221980|221986|222136|222246|222247|222248|222416|222432|222447|222449|222750|222802|222811|222812|222813|222814|222853|222854|222883|223625|224055|224123|224176|224203|224216|224240|224252|224260|224294|224296|224310|224318|224322|224358|224370|224399|224439|224447|224451|224466|224515|224528|224554|224575|224989|225027|225057|225060|226989|227370|227843|228262|228402|228514|228558|228584|228609|228660|228739|228740|228771|228847|228875|228892|228924|228983|228984|228986|228987|228988|228989|228992|228995|228997|228998|228999|229002|229003|229004|229005|229006|229007|229015|229050|229051|229053|229056|229059|229061|229096|229156|229388|229389|229390|229391|229395|229398|229399|229400|229401|229402|229404|229405|229406|229407|229408|229411|229412|229413|229414|229415|229416|229419|229425|229491|229494|229496|229511|229733|229762|229826|229828|229830|229834|229839|229946|229953|230297|230320|230432|230458|230459|230463|230466|230471|230479|230480|230481|230505|230806|230807|230808|230809|230812|230815|230818|230820|230821|230838|230839|230843|230846|230847|230849|230851|230855|230856|230859|230862|230870|230872|230874|230876|230878|230880|230883|230884|230886|230887|230888|230890|230891|230898|230899|230902|230903|230905|231101|231116|231264|231273|231274|231310|231348|231352|231353|231359|231412|236529|236741|236752|236756|236758|236763|236764|236765|236770|236772|236774|236778|236779|236785|236790|236792|236793|236794|236795|236797|236800|236803|236814|236815|236817|236822|237396|238121|238222|238223|238224|238235|238404|238430|238441|238443|238472|238481|238489|238555|238560|238580|238582|238585|239079|239080|239084|239085|239093|239111|239112|239139|239196|239213|239294|239301|239302|239306|239309|239310|239312|239317|239318|239320|239322|239325|239327|239329|239648|239656|239657|239661|239884|239997|239999|240002|240011|240181|240182|240188|240190|240193|240203|240222|240223|240224|240225|240227|240228|240514|240518|240521|240533|240535|240536|240539|240540|240541|240543|240544|240546|240547|240553|240554|240555|240556|240559|240560|240561|240563|240564|240566|240567|240573|240574|240575|240577|240578|240579|240582|240584|240585|240586|240743|240750|240751|240754|240755|240757|240817|240818|240819|240835|240837|240843|241068|241093|241094|241146|241530|241538|241541|241542|241543|241796|241797|241802|241808|241809|241816|241817|241820|241889|241890|241891|241892|241893|241897|242063|242065|242066|242071|242072|242081|242082|242105|242107|242114|242116|242203|242748|242752|243041|243062|243375|243377|243379|243382|243551|243578|243583|243601|243633|243637|243643|243644|243645|243647|243648|243775|243791|243801|243821|245166|245257|245265|245271|245281|246930|246933|247104|247367|249371|249372|249373|249375|249376|250460|250467|250872|250873|250875|250878|250881|250882|250885|250888|251091|251312|251313|251314|251315|251642|251645|251845|252648|252942|252943|253424|253455|253659|253717|254022|254321|254420|254914|255335|255477|257324|257785|257906|257907|257908|257909|257910|257911|257912|257913|257914|257915|257916|257917|257918|257919|257920|257921|257922|257923|257924|257925|257926|257927|257928|257929|257930|257931|257932|257933|257934|257935|257936|257937|257938|257939|257940|257941|257942|257943|257944|257945|257946|257947|257948|257949|257950|257951|257952|257953|257954|257955|257956|257957|257958|257959|257960|257961|257962|257963|257964|257965|257966|257967|257968|257969|257970|257971|257972|257973|257974|257975|257976|257977|257978|257979|257980|257981|257982|257983|257984|257985|257986|257987|257988|257989|257990|257991|257992|257993|257994|257995|257996|257997|257998|257999|258000|258001|258002|258003|258004|258005|258006|258007|258008|258009|258010|258011|258012|258013|258014|258015|258016|258017|258018|258019|258020|258021|258022|258023|258024|258025|258026|258027|258028|258029|258030|258031|258032|258033|258034|258035|258036|258037|258038|258039|258040|258041|258042|258043|258044|258045|258046|258047|258048|258049|258050|258051|258052|258053|258054|258055|258056|258057|258058|258059|258060|258061|258062|258063|258064|258065|258066|258067|258068|258069|258070|258071|258072|258073|258074|258075|258076|258077|258078|258079|258080|258081|258082|258083|258084|258085|258086|258087|258088|258089|258090|258091|258092|258093|258094|258095|258096|258097|258098|258099|258100|258101|258102|258103|258104|258105|258106|258107|258108|258109|258110|258111|258112|258113|258114|258115|258116|258117|258118|258119|258120|258121|258122|258123|258124|258125|258126|258127|258128|258129|258130|258131|258133|258134|258135|258136|258137|258138|258139|258140|258141|258142|258143|258144|258145|258146|258147|258148|258149|258150|258151|258152|258153|258154|258155|258156|258157|258158|258159|258160|258161|258162|258163|258164|258165|258166|258167|258168|258169|258170|258171|258172|258173|258174|258175|258176|258177|258178|258179|258180|258181|258182|258183|258184|258185|258186|258187|258188|258189|258190|258191|258192|258193|258194|258195|258196|258197|258198|258199|258200|258201|258202|258203|258204|258205|258206|258207|258208|258209|258210|258211|258212|258213|258214|258215|258216|258217|258218|258219|258220|258221|258222|258223|258224|258225|258226|258227|258228|258229|258230|258231|258232|258233|258234|258235|258236|258237|258238|258239|258240|258241|258242|258243|258244|258245|258246|258247|258248|258249|258250|258251|258252|258253|258254|258255|258256|258257|258258|258259|258260|258261|258262|258263|258264|258265|258266|258267|258268|258269|258270|258271|258272|258273|258274|258275|258276|258277|258278|258279|258280|258281|258282|258283|258284|258285|258287|258288|258289|258290|258291|258292|258294|258295|258296|258297|258298|258300|258301|258302|258304|258305|258306|258307|258308|258309|258310|258311|258312|258313|258314|258315|258316|258317|258318|258319|258320|258321|258322|258323|258324|258325|258326|258327|258328|258329|258330|258331|258332|258333|258334|258335|258336|258337|258338|258339|258340|258341|258342|258343|258344|258345|258346|258347|258348|258349|258350|258351|258352|258353|258354|258355|258356|258357|258358|258359|258360|258361|258362|258363|258364|258365|258366|258367|258368|258369|258370|258371|258372|258373|258374|258375|258376|258377|258378|258379|258380|258381|258382|258383|258384|258385|258386|258387|258388|258389|258390|258391|258392|258393|258394|258395|258396|258397|258398|258399|258400|258401|258402|258403|258404|258405|258406|258407|258408|258409|258410|258412|258413|258414|258415|258416|258417|258418|258419|258420|258421|258422|258423|258424|258425|258426|258427|258428|258429|258430|258431|258432|258433|258434|258435|258436|258437|258438|258439|258440|258441|258442|258443|258444|258445|258446|258447|258448|258449|258450|258451|258452|258453|258454|258455|258456|258457|258458|258459|258460|258461|258462|258463|258464|258465|258466|258467|258468|258469|258470|258471|258472|258473|258474|258475|258476|258477|258478|258479|258480|258482|258483|258484|258485|258486|258487|258488|258489|258490|258491|258492|258494|258495|258496|258497|258498|258499|258500|258501|258502|258503|258504|258505|258506|258507|258508|258509|258510|258511|258512|258513|258514|258515|258516|258517|258518|258519|258520|258521|258522|258523|258524|258525|258526|258527|258528|258529|258530|258531|258532|258533|258534|258535|258536|258537|258538|258539|258540|258541|258542|258543|258544|258545|258546|258547|258548|258549|258550|258551|258552|258553|258554|258555|258556|258557|258558|258559|258560|258561|258562|258563|258564|258565|258566|258567|258568|258569|258570|258571|258572|258573|258574|258575|258576|258577|258578|258579|258580|258581|258582|258583|258584|258585|258586|258587|258588|258589|258590|258591|258592|258593|258594|258595|258596|258597|258598|258599|258600|258601|258602|258603|258604|258605|258606|258608|258609|258610|258611|258612|258613|258614|258615|258616|258617|258618|258619|258620|258621|258622|258623|258624|258625|258626|258627|258628|258629|258630|258631|258632|258633|258634|258635|258636|258637|258638|258639|258640|258641|258642|258643|258644|258645|258646|258647|258648|258649|258650|258651|258652|258653|258654|258655|258656|258657|258658|258659|258660|258661|258662|258663|258664|258665|258666|258667|258668|258669|258670|258671|258672|258673|258674|258676|258677|258678|258679|258680|258681|258682|258683|258684|258685|258686|258689|258690|258691|258692|258693|258694|258695|258696|258697|258698|258699|258700|258701|258702|258703|258704|258705|258706|258707|258708|258709|258710|258711|258712|258713|258714|258715|258716|258717|258718|258719|258720|258721|258722|258723|258724|258725|258726|258727|258728|258729|258730|258731|258732|258733|258734|258735|258736|258737|258738|258739|258740|258741|258742|258743|258744|258745|258746|258747|258748|258749|258750|258751|258752|258753|258754|258755|258756|258757|258758|258759|258760|258761|258762|258763|258764|258765|258766|258767|258768|258769|258770|258771|258772|258773|258774|258775|258776|258777|258778|258779|258780|258781|258782|258783|258784|258785|258786|258787|258788|258789|258790|258791|258792|258793|258794|258795|258796|258797|258798|258799|258800|258801|258802|258803|258804|258805|258806|258807|258808|258809|258810|258811|258812|258813|258814|258815|258816|258817|258818|258819|258820|258821|258822|258823|258824|258825|258826|258827|258828|258829|258830|258831|258832|258833|258834|258835|258836|258837|258838|258839|258840|258841|258842|258843|258844|258845|258846|258847|258848|258849|258850|258851|258852|258853|258854|258855|258856|258857|258858|258859|258860|258861|258862|258863|258864|258865|258866|258867|258868|258869|258870|258871|258872|258873|258874|258875|258876|258877|258878|258879|258880|258881|258882|258883|258884|258885|258886|258887|258888|258889|258890|258891|258892|258893|258894|258895|258896|258897|258898|258899|258900|258901|258902|258903|258904|258905|258906|258907|258908|258909|258910|258911|258912|258913|258914|258915|258916|258917|258918|258919|258920|258921|258922|258923|258924|258925|258926|258927|258928|258929|258930|258931|258932|258933|258934|258935|258936|258937|258938|258940|258941|258942|258943|258944|258945|258946|258947|258948|258949|258950|258951|258952|258953|258954|258955|258956|258957|258958|258959|258960|258961|258962|258963|258964|258965|258966|258967|258968|258969|258970|258971|258972|258973|258974|258975|258976|258977|258978|258979|258980|258981|258982|258983|258984|258985|258986|258987|258988|258989|258990|258991|258992|258993|258994|258995|258996|258997|258998|258999|259000|259001|259002|259003|259004|259005|259006|259007|259008|259009|259010|259011|259012|259013|259014|259015|259016|259017|259018|259019|259020|259021|259022|259023|259024|259025|259026|259027|259028|259029|259030|259031|259032|259033|259034|259035|259036|259037|259038|259039|259040|259041|259042|259043|259044|259045|259046|259047|259048|259049|259050|259051|259052|259053|259054|259055|259056|259057|259058|259059|259060|259061|259062|259063|259064|259065|259066|259067|259068|259069|259070|259071|259072|259073|259074|259075|259076|259077|259078|259079|259080|259081|259082|259083|259084|259085|259086|259087|259088|259089|259090|259091|259092|259093|259094|259095|259096|259097|259098|259099|259100|259101|259102|259103|259104|259105|259106|259107|259108|259109|259110|259111|259112|259113|259114|259115|259116|259117|259118|259119|259120|259121|259122|259123|259124|259125|259126|259127|259128|259129|259130|259131|259132|259133|259134|259135|259136|259137|259138|259139|259140|259141|259142|259143|259144|259145|259146|259147|259148|259149|259150|259151|259152|259153|259154|259155|259156|259157|259158|259159|259160|259161|259162|259163|259164|259165|259166|259167|259168|259169|259170|259171|259172|259173|259174|259175|259176|259177|259178|259179|259180|259181|259182|259183|259184|259185|259186|259187|259188|259189|259190|259191|259192|259193|259194|259195|259196|259197|259198|259199|259200|259203|259205|259206|259207|259208|259212|259215|259848|259979|260073|264131|265345|265919|266075|266232|266724|267010|267393|267543|267725|267729|268031|268042|268111|268223|268668|268690|268703|268990|269184|269796|270042|270378|270379|270849|270946|271146|271300|271829|271856|271889|272181|272253|273101|273318|273957|274161|274199|274369|274953|274954|276156|276162|276284|276431|276836|279964|280289|280328|281358|281557|281591|281604|281622|283232|283303|283430|283481|283504|283930|286241|286317|286480|286579|288349|288366|288371|288372|288402|289701|289959|291088|292113|292143|292159|292241|292884|294400|296827|296833|297051|299107|300743|300748|302179|302804|303500|303547|304013|304029|306933|306939|307475|308732|309976|311015|311576|311704|311711|311738|311836|311852|311859|311865|315013|316757|317318|317667|317695|320215|320333|320340|320362|320376|320650|322781|323054|323336|324243|324412|324557|328957|329557|329624|331163|331596|331689|333927|334004|334052|334064|334074|334804|334808|335279|335633|337312|339297|339739|340728|340740|340743|342129|344000|344001|344693|348136|349256|350218|350222|350671|350911|351083|351644|359196|359326|359445|359707|359740|359896|359981|360107|360403|361874|361875|362738|362742|363772|364058|364317|364334|364337|364365|364414|364600|364674|364755|364907|364924|365002|365088|365411|365917|365940|365943|365969|366013|366059|366214|366219|366226|366253|366312|366895|367163|367452|367476|367497|367522|367538|367615|367783|367784|367809|367811|367820|367888|367911|368174|368522|368524|368546|368749|368923|369023|369053|369536|369592|369657|369770|370022|370210|370271|370282|370525|370548|370590|370638|370735|370775|370782|370812|370816|370822|370828|370909|370997|371031|371076|371090|371111|371114|371150|371184|371190|371303|371377|371391|371575|371600|371616|371639|371733|372141|372232|372261|372456|372460|372488|372549|372772|372917|372943|372972|372974|372990|373124|373240|373248|373398|373504|373550|373653|373671|373683|373940|373948|373971|373983|374044|374122|374124|374182|374278|374363|374650|374961|374970|374980|375028|375050|375074|375874|376000|376002|376015|376206|376215|376217|376492|376592|376617|376618|376660|376980|377021|377039|377045|377081|377083|377295|377388|377391|377819|377837|377844|377927|377928|378049|378166|378182|378235|378238|378246|378257|378479|378558|378595|378618|378962|378971|378979|379072|379082|379168|379192|379237|379377|379690|379691|379704|379784|379814|379820|379987|380112|389561|390072|390169|390322|390545|390738|390767|390778|390779|390989|391029|391063|391086|391094|391126|391150|391183|391186|391526|391536|391541|391634|391668|391687|391708|391721|391811|391874|391899|391951|391966|392067|392384|392399|392422|392427|392444|392457|392708|393266|393320|393325|393353|393479|393530|393753|393778|393814|393819|393829|393838|393869|393876|393877|393953|393979|394046|394074|394224|394247|394274|394791|395083|395105|395137|395231|395369|395374|395375|395408|395482|395497|395571|395667|395668|395680|395706|395798|395807|395870|395872|395892|396047|396099|396100|396164|396192|396197|396273|396470|396483|396755|396774|396794|396823|396842|396848|396989|397000|397027|397046|397068|397080|397124|397129|397133|397142|397187|397192|397206|397316|397325|397338|397339|397386|397496|397499|397555|397602|397618|397917|398256|398278|398307|398638|398656|398911|398937|398960|399069|399097|399375|399594|399605|399725|399784|399862|399950|400229|400308|400332|400336|400342|400344|400375|400459|400492|400541|400547|400548|400731|401033|401035|401103|401128|401131|401179|401181|401198|401205|401928|402004|402720|402725|402731|402735|402753|402755|403247|403253|403342|403360|403635|403652|403688|403694|403740|403742|403761|403787|403799|403815|403833|403837|404150|404153|404178|404286|404320|404488|404586|404593|404774|404786|404802|405013|405048|405437|405515|405522|406791|406800|407591|407595|407622|407624|407815|408275|408324|408376|409095|409299|409327|410338|414937|414959|415020|415404|415425|415559|415681|419261|421225|421229|421324|421347|421417|421732|421979|422320|425304|425343|425590|425617|425703|425971|426065|426147|426268|426337|430725|430726|430907|433145|433439|433443|433557|433564|433576|433734|433837|433839|433841|434565|437982|438415|440614|441337|442400|442763|443100|443101|443114|443549|443668|443676|443866|444001|444435|444610|444613|444780|444968|444983|445252|445350|445376|445379|445410|445497|445771|446256|446358|446359|447022|447028|447033|447037|447118|447125|447133|447146|447157|447205|447224|447254|447317|447532|447788|447796|447843|447895|447908|447977|447996|448242|448379|449077|449129|449137|449282|449284|449348|449390|449440|449509|449534|449566|449688|449708|449803|449935|449988|450095|450106|450138|450148|450226|450312|451772|452028|452109|452128|452147|452218|452230|452246|452253|452306|452424|452468|452587|452868|452870|453236|453255|453326|453334|453693|454414|454836|455037|455101|455433|455996|456014|456034|456055|456463|456478|456494|456504|456787|456801|456805|456831|457038|457052|457080|457545|457748|457989|458774|458782|458924|458926|458928|458957|458972|458995|459166|459184|459263|459300|459307|459322|459337|459351|459364|459368|459374|459409|459651|459687|459744|459751|459778|459780|459786|459787|459815|459892|459922|459930|460068|460202|460216|460356|460512|460545|460559|460929|461422|461639|461851|462012|462017|462107|462112|462135|462399|462417|462816|462831|462880|462881|462936|462982|463141|463583|463618|463629|463895|463921|464102|464114|464127|464128|464173|464353|464397|464413|464422|464524|464927|465158|465220|465299|465385|465777|465948|467926|468008|468042|468046|468069|468306|469008|469310|469638|470341|470381|470900|470967|471071|471081|471340|471358|471363|471387|471395|471508|471540|471836|472100|481616|485242|485756|485762|486035|486121|486857|486862|486908|486917|487300|487340|487491|487554|487573|487790|487865|487993|487995|488016|488044|488758|489677|490092|490318|490889|491346|491402|491474|492618|492911|493346|496161|496342|496619|496730|496752|497340|497529|497572|497866|497975|498007|498024|498387|498938|499047|499306|499322|499379|499458|499666|499671|499741|499783|499836|499850|500440|500475|500695|500696|500699|500869|500877|501073|501120|501145|501349|501448|501800|501827|502080|502164|502314|502323|502437|502509|502700|502782|502801|502813|502818|502892|502926|502941|502958|503045|503159|503267|503353|503561|503632|503755|503771|504789|504790|504832|504980|505015|505061|505651|506038|506068|506099|506101|507284|507366|507476|507490|507514|507907|507945|508010|508014|508046|508070|508181|508219|508314|508364|508389|508572|508665|508823|508825|508903|509061|509062|509063|509064|509065|509066|509067|509068|509069|509070|509071|509072|509073|509074|509075|509076|509077|509078|509079|509080|509081|509082|509083|509084|509085|509086|509087|509088|509089|509090|509091|509092|509093|509094|509095|509096|509097|509098|509099|509100|509101|509102|509103|509104|509105|509106|509107|509108|509109|509110|509111|509112|509113|509114|509115|509116|509117|509118|509119|509120|509121|509122|509123|509124|509125|509126|509127|509128|509129|509130|509131|509132|509133|509134|509135|509136|509137|509138|509139|509140|509141|509142|509143|509144|509145|509146|509147|509148|509149|509150|509151|509152|509153|509154|509155|509156|509157|509158|509159|509160|509161|509162|509163|509164|509165|509166|509167|509168|509169|509170|509171|509172|509173|509174|509175|509176|509177|509178|509179|509180|509181|509182|509183|509184|509185|509186|509187|509188|509189|509190|509191|509192|509193|509194|509195|509196|509197|509198|509199|509200|509201|509202|509203|509204|509205|509206|509207|509208|509209|509210|509211|509212|509213|509214|509215|509216|509217|509218|509219|509220|509221|509222|509223|509224|509225|509226|509227|509228|509229|509230|509231|509232|509233|509234|509235|509236|509237|509238|509239|509240|509241|509242|509243|509244|509245|509246|509247|509248|509249|509250|509251|509252|509253|509254|509255|509256|509257|509258|509259|509260|509261|509262|509263|509264|509265|509266|509267|509268|509269|509270|509271|509272|509273|509274|509275|509276|509277|509278|509279|509280|509281|509282|509283|509284|509285|509286|509287|509288|509289|509290|509291|509292|509293|509294|509295|509296|509297|509298|509299|509300|509301|509302|509303|509304|509305|509306|509307|509308|509309|509310|509311|509312|509313|509314|509315|509316|509317|509318|509319|509320|509321|509322|509323|509324|509325|509326|509327|509328|509329|509330|509331|509332|509333|509334|509335|509336|509337|509338|509339|509340|509341|509342|509343|509344|509345|509346|509347|509348|509349|509350|509351|509352|509353|509354|509355|509356|509357|509358|509359|509360|509361|509362|509363|509364|509365|509366|509367|509368|509369|509370|509371|509372|509373|509374|509375|509376|509377|509378|509379|509380|509381|509382|509383|509384|509385|509386|509387|509388|509389|509390|509391|509392|509393|509394|509395|509396|509397|509398|509399|509400|509401|509402|509403|509404|509405|509406|509407|509408|509409|509410|509411|509412|509413|509414|509415|509416|509417|509418|509419|509420|509421|509422|509423|509424|509425|509426|509427|509428|509429|509430|509431|509432|509433|509434|509435|509436|509437|509438|509439|509440|509441|509442|509443|509444|509445|509446|509447|509448|509449|509450|509451|509452|509453|509454|509455|509456|509457|509458|509459|509460|509461|509462|509463|509464|509465|509466|509467|509468|509469|509470|509471|509472|509473|509474|509475|509476|509477|509478|509479|509480|509481|509482|509483|509484|509485|509486|509487|509488|509489|509490|509491|509492|509493|509494|509495|509496|509497|509498|509499|509500|509501|509502|509503|509504|509505|509506|509507|509508|509509|509510|509511|509512|509513|509514|509515|509516|509517|509518|509519|509520|509521|509522|509523|509524|509525|509526|509527|509528|509529|509530|509531|509532|509533|509534|509535|509536|509537|509538|509539|509540|509541|509542|509543|509544|509545|509546|509547|509548|509549|509550|509551|509552|509553|509554|509555|509556|509557|509558|509559|509560|509561|509562|509563|509564|509565|509566|509567|509568|509569|509570|509571|509573|509574|509575|509576|509577|509578|509579|509580|509581|509582|509583|509584|509585|509586|509587|509588|509589|509590|509591|509592|509593|509594|509595|509596|509597|509598|509599|509600|509601|509602|509603|509604|509605|509606|509607|509608|509609|509610|509611|509612|509613|509614|509615|509616|509617|509618|509619|509620|509621|509622|509623|509624|509625|509626|509627|509628|509629|509630|509631|509632|509633|509634|509635|509636|509637|509638|509639|509640|509641|509642|509643|509644|509645|509646|509647|509648|509649|509650|509651|509652|509653|509654|509655|509656|509657|509658|509659|509660|509661|509662|509663|509664|509665|509666|509667|509668|509669|509670|509671|509672|509673|509674|509675|509676|509677|509678|509679|509680|509681|509682|509683|509684|509685|509686|509687|509688|509689|509690|509691|509692|509693|509694|509695|509696|509697|509698|509699|509700|509701|509702|509703|509704|509705|509706|509707|509708|509709|509710|509711|509712|509713|509714|509715|509716|509717|509718|509719|509720|509721|509722|509723|509724|509725|509726|509727|509728|509729|509730|509731|509732|509733|509734|509735|509736|509737|509738|509739|509740|509741|509742|509743|509744|509745|509746|509747|509748|509749|509750|509751|509752|509753|509754|509755|509756|509757|509758|509759|509760|509761|509762|509763|509764|509765|509766|509767|509768|509769|509770|509771|509772|509773|509774|509775|509776|509777|509778|509779|509780|509781|509783|509784|509785|509786|509787|509788|509789|509790|509791|509792|509793|509794|509795|509796|509797|509798|509799|509800|509801|509802|509803|509804|509805|509806|509807|509808|509809|509810|509811|509812|509813|509814|509815|509816|509817|509818|509819|509820|509821|509822|509823|509824|509825|509826|509827|509828|509829|509830|509831|509832|509833|509834|509835|509836|509837|509838|509839|509840|509841|509842|509843|509844|509845|509846|509847|509848|509849|509850|509851|509852|509853|509854|509855|509856|509857|509858|509859|509860|509861|509862|509863|509864|509865|509866|509867|509868|509869|509870|509871|509872|509873|509874|509875|509876|509877|509878|509879|509880|509881|509882|509883|509884|509885|509886|509887|509888|509889|509890|509891|509892|509893|509894|509895|509896|509897|509898|509899|509900|509901|509902|509903|509904|509905|509906|509907|509908|509909|509910|509911|509912|509913|509914|509915|509916|509917|509918|509919|509920|509921|509922|509923|509924|509925|509926|509927|509928|509929|509930|509931|509932|509933|509934|509935|509936|509937|509938|509939|509940|509941|509942|509943|509944|509945|509946|509947|509948|509949|509950|509951|509952|509953|509954|509955|509956|509957|509958|509959|509960|509961|509962|509963|509964|509965|509966|509967|509968|509969|509970|509971|509972|509973|509974|509975|509976|509977|509978|509979|509980|509981|509982|509983|509984|509985|509986|509987|509988|509989|509990|509991|509992|509993|509994|509995|509996|509997|509998|509999|510000|510001|510002|510003|510004|510005|510006|510007|510008|510009|510010|510011|510012|510013|510014|510015|510016|510017|510018|510019|510020|510021|510022|510023|510024|510025|510026|510027|510028|510029|510030|510031|510032|510033|510034|510035|510036|510037|510038|510039|510040|510041|510042|510043|510044|510045|510046|510047|510048|510049|510050|510051|510052|510053|510054|510055|510056|510057|510058|510059|510060|510061|510062|510063|510064|510065|510066|510067|510068|510069|510070|510071|510072|510073|510074|510075|510076|510077|510078|510079|510080|510081|510082|510083|510084|510085|510086|510087|510088|510089|510090|510091|510092|510093|510094|510095|510096|510097|510098|510099|510100|510101|510102|510103|510104|510105|510106|510107|510108|510109|510110|510111|510112|510113|510114|510115|510116|510117|510118|510119|510120|510121|510122|510123|510124|510125|510126|510127|510128|510129|510130|510131|510132|510133|510134|510135|510136|510137|510138|510139|510140|510141|510142|510143|510144|510145|510146|510147|510148|510149|510150|510151|510152|510153|510154|510155|510156|510157|510158|510159|510160|510161|510162|510163|510164|510165|510166|510167|510168|510169|510170|510171|510172|510173|510174|510175|510176|510177|510178|510179|510180|510181|510182|510183|510184|510185|510186|510187|510188|510189|510190|510191|510192|510193|510194|510195|510196|510197|510198|510199|510200|510201|510202|510203|510204|510205|510206|510207|510208|510209|510210|510211|510212|510213|510214|510215|510216|510217|510218|510219|510220|510221|510222|510223|510224|510225|510226|510227|510228|510229|510230|510231|510232|510233|510234|510235|510236|510237|510238|510239|510240|510241|510242|510243|510244|510245|510246|510247|510248|510249|510250|510251|510252|510253|510254|510255|510256|510257|510258|510259|510260|510261|510262|510263|510264|510265|510266|510267|510268|510269|510270|510271|510272|510273|510274|510275|510276|510277|510278|510279|510280|510281|510282|510283|510284|510285|510286|510287|510288|510289|510290|510291|510292|510293|510294|510295|510296|510297|510298|510299|510300|510301|510302|510303|510304|510305|510306|510307|510308|510309|510310|510311|510312|510313|510314|510315|510316|510317|510318|510319|510320|510321|510322|510323|510324|510325|510326|510327|510328|510329|510330|510331|510332|510333|510334|510335|510336|510337|510338|510339|510341|510342|510343|510344|510345|510346|510347|510348|510349|510350|510351|510352|510353|510354|510355|510356|510357|510358|510359|510360|510361|510362|510363|510364|510365|510366|510367|510368|510369|510370|510371|510372|510373|510374|510375|510376|510377|510378|510379|510380|510381|510382|510383|510384|510385|510386|510387|510388|510389|510390|510391|510392|510393|510394|510395|510396|510397|510398|510399|510400|510401|510402|510403|510404|510405|510406|510407|510408|510409|510410|510411|510412|510413|510414|510415|510416|510417|510418|510419|510420|510421|510422|510423|510424|510425|510426|510427|510428|510429|510430|510431|510432|510434|510435|510436|510437|510438|510439|510440|510441|510442|510443|510444|510445|510446|510447|510448|510449|510450|510451|510452|510453|510454|510455|510456|510457|510458|510459|510460|510461|510462|510463|510464|510465|510466|510467|510468|510469|510470|510471|510472|510473|510475|510476|510477|510478|510479|510480|510481|510482|510483|510484|510485|510486|510487|510488|510489|510490|510491|510492|510493|510494|510495|510496|510497|510498|510499|510500|510501|510502|510503|510504|510505|510506|510507|510508|510509|510510|510511|510512|510513|510514|510515|510516|510517|510518|510519|510520|510521|510522|510523|510524|510525|510526|510527|510528|510529|510530|510531|510532|510533|510534|510535|510536|510537|510538|510539|510540|510541|510542|510543|510544|510545|510546|510547|510548|510549|510550|510551|510552|510553|510554|510555|510556|510557|510558|510559|510560|510561|510562|510563|510564|510565|510566|510567|510568|510569|510570|510571|510572|510573|510574|510575|510576|510577|510578|510579|510580|510581|510582|510583|510584|510585|510586|510587|510588|510589|510590|510591|510592|510593|510594|510595|510596|510597|510598|510599|510600|510601|510602|510603|510604|510605|510606|510607|510608|510609|510610|510611|510612|510613|510614|510615|510616|510617|510618|510619|510620|510621|510622|510623|510624|510625|510626|510627|510628|510629|510630|510631|510632|510633|510634|510635|510636|510637|510638|510639|510640|510641|510642|510643|510644|510645|510646|510647|510648|510649|510650|510651|510652|510653|510654|510655|510656|510657|510658|510659|510660|510661|510662|510663|510664|510665|510666|510667|510668|510669|510670|510671|510672|510673|510674|510675|510676|510677|510678|510679|510680|510681|510682|510683|510684|510685|510686|510687|510688|510689|510690|510691|510692|510693|510694|510695|510696|510697|510698|510699|510700|510701|510702|510703|510704|510705|510706|510707|510708|510709|510710|510711|510712|510713|510714|510715|510716|510717|510718|510719|510720|510721|510722|510723|510724|510725|510726|510727|510728|510729|510730|510731|510732|510733|510734|510735|510736|510737|510738|510739|510740|510741|510742|510743|510744|510745|510746|510747|510748|510749|510750|510751|510752|510753|510754|510755|510756|510757|510758|510759|510760|510761|510762|510763|510764|510765|510766|510767|510768|510769|510770|510771|510772|510773|510774|510775|510776|510777|510778|510779|510780|510781|510782|510783|510784|510785|510786|510787|510788|510789|510790|510791|510792|510793|510794|510795|510796|510797|510798|510799|510800|510801|510802|510803|510804|510805|510806|510807|510808|510809|510810|510811|510812|510813|510814|510815|510816|510817|510818|510819|510820|510821|510822|510823|510824|510825|510826|510827|510828|510829|510830|510831|510832|510833|510834|510835|510836|510837|510838|510839|510840|510841|510842|510843|510844|510845|510846|510847|510848|510849|510850|510851|510852|510853|510854|510855|510856|510857|510858|510859|510860|510861|510862|510863|510864|510865|510866|510867|510868|510869|510870|510871|510872|510873|510874|510875|510876|510877|510878|510879|510880|510881|510882|510883|510884|510885|510886|510887|510888|510889|510890|510891|510892|510893|510894|510895|510896|510897|510898|510899|510900|510901|510902|510903|510904|510905|510906|510907|510908|510909|510910|510911|510912|510913|510914|510915|510916|510917|510918|510919|510920|510921|510922|510923|510924|510925|510926|510927|510928|510929|510930|510931|510932|510933|510934|510935|510936|510937|510938|510939|510940|510941|510942|510943|510944|510945|510946|510947|510948|510949|510950|510951|510952|510953|510954|510955|510956|510957|510958|510959|510960|510961|510962|510963|510964|510965|510966|510967|510968|510969|510970|510971|510972|510973|510974|510975|510976|510977|510978|510979|510980|510981|510982|510983|510984", + "upstreamId": "15156|15159|15164|15166|15170|15307|15365|15773|15825|15826|15827|15828|17509|18156|18157|18158|18159|18160|18165|18166|18167|18170|18171|18174|18177|18179|18250|19626|19629|19768|19770|19772|20580|20581|21091|21093|21793|21795|21796|21885|22603|23317|23318|23324|23332|23642|23647|23655|23815|23817|23819|24047|24048|24057|24408|24413|24416|24422|24428|24431|24432|24435|24440|24446|25754|25769|25777|25787|26306|26307|26308|26813|27236|27237|27447|27448|27450|27454|27458|27460|27463|27482|27484|27495|27496|27541|27553|27563|27565|27698|27746|27996|27998|28365|28367|28465|28466|28473|28491|28497|28516|28518|28676|28997|29101|29102|29103|29106|29107|29127|29128|29130|29131|29133|29134|29136|29137|29141|29143|29146|29163|29164|29173|29174|29190|29409|29459|29463|29481|29482|29556|29566|31478|31479|31483|31488|31490|31491|31496|31853|31857|31885|32244|32673|33095|33096|33097|33098|33099|33315|33317|33352|34156|34194|36140|38447|38448|38552|39055|39062|39099|39262|39268|39270|39354|39415|40369|40371|40374|40376|40377|40426|40431|40438|40440|40446|40448|40451|40452|40453|40454|40455|40456|40457|40458|40460|40463|40464|40465|40466|40467|40468|40469|40471|40479|40481|40485|40486|40487|40496|40498|40499|40537|40543|40545|40548|40549|44162|44292|44293|44295|44297|44299|44314|44315|44351|44354|44355|44431|44434|44436|44468|44628|44665|44666|44667|44669|44670|44673|44678|44679|44684|44685|44686|44689|44690|44695|44705|44708|44713|44718|44724|44729|44735|44738|44742|44748|44750|44767|44768|44771|44772|44780|44783|44790|44792|44793|44796|44797|44800|44801|44802|45088|45091|45092|45097|45100|45101|45102|45105|45106|45107|45108|45109|45110|45111|45112|45135|45138|45139|45141|45263|45264|45265|45266|45267|45269|45271|45272|45273|45275|45276|45278|45280|45282|45283|45284|45289|45291|45296|45299|45303|45304|45307|45308|45310|45319|45320|45341|45342|45357|45358|45369|45390|45391|45397|45398|45400|45401|45406|45407|45408|45409|45411|45422|45424|45426|45427|45428|45518|45520|45523|45526|45530|45534|45535|45536|45537|45538|45557|45558|45559|45599|45725|45847|45929|47468|48044|48063|48065|48266|48983|48985|49006|49029|49036|49040|49055|49056|49058|49067|49082|49096|49097|49098|49357|50227|51095|51429|51440|51441|51443|51446|51454|51455|51457|51464|51465|51466|51467|51468|51490|51495|51500|51504|51505|51507|51525|51526|51527|51536|51538|51540|51551|51552|51569|51571|51572|51578|51580|51582|51583|51587|51593|51604|51607|51623|51624|51634|51636|51643|51644|51645|51646|51648|51651|51652|51653|51654|51656|51657|51658|51659|51663|51668|51676|51684|51685|51688|51694|51702|51706|51707|51710|51711|51713|51715|51719|51721|51726|51732|51733|51735|51736|51738|51741|51742|51745|51754|51755|51758|51760|51769|51783|51785|51789|51790|51794|51796|51797|51808|51809|51814|51815|51817|51822|51826|51828|51832|51833|51834|51836|51844|51846|51850|51857|51858|51860|51861|51863|51864|51870|51874|51876|51877|51881|51888|51892|51898|51901|51905|51906|51914|51916|51923|51927|51928|51929|51930|51937|51938|51943|51947|51949|51950|51953|51954|51956|51958|51960|51961|51962|51963|51967|51976|51977|51980|51983|51987|51989|51990|51991|51992|51993|51999|52003|52010|52013|52022|52023|52032|52033|52034|52039|52044|52045|52054|52060|52064|52066|52070|52071|52083|52088|52092|52096|52101|52103|52108|52109|52112|52115|52116|52119|52120|52121|52122|52123|52124|52126|52127|52128|52138|52150|52155|52158|52162|52163|52165|52171|52175|52182|52187|52190|52197|52199|52201|52202|52207|52209|52212|52214|52226|52231|52241|52242|52245|52252|52256|52259|52260|52262|52263|52268|52269|52270|52273|52283|52285|52286|52291|52294|52299|52300|52534|52536|52537|52540|52543|52545|52554|52559|52561|52565|52573|52575|52580|52594|52602|52613|52614|52619|52622|52623|52624|52625|52628|52630|52642|52645|52783|52786|52789|52792|52795|52796|52797|52798|52801|52805|52810|52817|52828|52838|52845|52846|52867|52868|52871|52877|52879|52884|52886|52888|52890|52892|52896|52897|52898|52899|52902|52903|52911|52914|52915|52916|52919|52920|52922|52924|52928|52931|52932|52933|52935|52937|52939|52946|52951|52956|52961|52963|52964|52967|52970|52971|52974|52976|52982|52988|52989|52995|52996|52997|52998|53002|53005|53007|53008|53009|53048|53049|53053|53066|53068|53071|53073|53077|53078|53084|53086|53089|53093|53096|53098|53100|53102|53103|53106|53107|53112|53117|53120|53121|53134|53137|53138|53139|53142|53146|53147|53149|53151|53156|53159|53163|53164|53171|53172|53174|53177|53184|53186|53188|53190|53192|53193|53196|53197|53320|53325|53326|53327|53328|53330|53335|53399|53400|53401|53406|53409|53410|53412|53419|53421|53425|53428|53429|53432|53438|53439|53441|53442|53444|53445|53454|53456|53459|53460|53462|53463|53467|53469|53471|53472|53474|53475|53476|53479|53480|53481|53482|53484|53485|53486|53488|53490|53493|53496|53498|53501|53502|53503|53514|53516|53524|53527|53528|53532|53533|53540|53546|53547|53564|53566|53569|53582|53583|53593|53599|53600|53601|53604|53612|53615|53616|53617|53618|53622|53626|53627|53628|53630|53634|53636|53639|53640|53641|53642|53646|53647|53648|53650|53651|53653|53654|53655|53656|53657|53659|53660|53662|53667|53668|53671|53673|53674|53682|53683|53684|53685|53687|53688|53689|53691|53692|53693|53695|53696|53699|53700|53703|53704|53708|53709|53713|53745|53747|53765|53769|53774|53790|53796|53819|53825|53828|53829|53830|53833|53834|53836|53839|53840|53843|53846|53855|53859|53861|53862|53863|53872|53873|53874|53876|53879|53881|53939|53940|53941|53943|53944|53947|53950|53951|53956|53958|54004|54022|54024|54025|54027|54028|54034|54037|54040|54041|54043|54044|54053|54054|54057|54060|54061|54062|54064|54066|54073|54074|54075|54077|54080|54082|54084|54086|54088|54089|54091|54092|54093|54096|54103|54105|54108|54110|54112|54114|54117|54123|54127|54128|54134|54135|54136|54149|54170|54173|54174|54177|54179|54183|54188|54189|54191|54196|54197|54200|54202|54210|54214|54218|54219|54222|54223|54224|54225|54230|54234|54235|54243|54244|54246|54248|54250|54251|54253|54260|54261|54262|54264|54361|54553|54555|54557|54558|54559|54564|54570|54577|54583|54586|54637|54638|54641|54651|54652|54654|54655|54659|54663|54664|54666|54675|54677|54678|54686|54690|54691|54692|54693|54696|54697|54702|54703|54704|54708|54710|54713|54714|54716|54717|54720|54726|54727|54741|54743|54745|54746|54748|54749|54753|54754|54760|54761|54762|54765|54766|54768|54769|54783|54785|54788|54790|54792|54793|54795|54798|54804|54849|54851|54853|54857|54861|54867|54871|54874|54876|54877|54881|54886|54892|54895|54903|54943|54945|54946|54947|54949|54952|54993|54997|54999|55002|55007|55010|55011|55012|55013|55015|55016|55017|55019|55020|55303|55305|55306|55312|55313|55315|55318|55319|55321|55325|55328|55330|55335|55336|55343|55347|55348|55351|55352|55353|55354|55356|55367|55696|55698|55699|55700|55701|55739|55741|55743|55744|55746|55747|55750|55751|55752|55755|55756|55757|55759|55760|55762|55764|55771|55772|55777|55778|55779|55782|55783|55786|55798|55800|55806|55809|55810|55814|55819|55820|55821|55823|55829|55831|55837|55842|55845|55846|55847|55851|55852|55858|55860|55863|55867|55870|55873|55875|55878|55879|55880|55881|55882|55887|55896|55897|55898|55899|55904|55907|55908|55910|55915|55921|55923|55928|55931|55935|55936|55938|55939|55940|55941|55942|55944|55946|55949|55951|55957|55963|55970|55973|55977|55982|55983|55984|55988|55990|55991|56002|56004|56009|56016|56017|56024|56025|56028|56029|56036|56038|56039|56042|56043|56047|56048|56049|56050|56051|56054|56055|56059|56072|56074|56075|56076|56079|56094|56096|56097|56100|56101|56107|56108|56111|56113|56114|56115|56117|56118|56119|56120|56121|56124|56125|56128|56132|56133|56135|56136|56138|56143|56147|56148|56150|56152|56153|56155|56156|56158|56166|56167|56171|56172|56173|56174|56175|56176|56178|56179|56180|56181|56183|56189|56190|56191|56193|56195|56196|56197|56199|56200|56201|56202|56203|56205|56208|56209|56210|56211|56214|56215|56216|56218|56221|56222|56224|56230|56233|56235|56237|56239|56242|56243|56248|56253|56263|56264|56265|56270|56271|56275|56276|56285|56288|56289|56291|56292|56293|56301|56302|56307|56313|56315|56317|56321|56323|56324|56325|56327|56330|56333|56335|56337|56338|56342|56343|56344|56345|56347|56349|56350|56352|56353|56354|56356|56357|56359|56362|56365|56367|56370|56373|56374|56377|56378|56381|56383|56385|56387|56388|56390|56391|56392|56393|56394|56395|56401|56405|56408|56409|56412|56413|56414|56415|56418|56420|56421|56425|56428|56430|56433|56436|56439|56440|56441|56442|56444|56454|56455|56457|56458|56459|56462|56463|56467|56469|56470|56471|56472|56473|56478|56481|56483|56485|56486|56487|56490|56493|56494|56497|56498|56499|56503|56504|56508|56512|56514|56515|56516|56518|56519|56520|56521|56524|56530|56532|56533|56535|56537|56538|56539|56540|56542|56544|56545|56547|56549|56551|56555|56556|56557|56558|56559|56560|56561|56563|56564|56567|56569|56570|56572|56573|56575|56577|56579|56580|56582|56583|56584|56585|56586|56589|56592|56593|56595|56597|56598|56600|56606|56608|56612|56615|56616|56621|56624|56628|56629|56631|56634|56637|56638|56639|56640|56641|56645|56646|56648|56652|56658|56661|56663|56665|56667|56668|56675|56678|56680|56681|56683|56684|56685|56687|56691|56693|56694|56696|56700|56701|56706|56708|56709|56710|56711|56714|56716|56717|56718|56719|56722|56723|56725|56726|56727|56730|56731|56732|56735|56738|56741|56743|56750|56753|56755|56759|56760|56762|56763|56764|56766|56767|56768|56771|56772|56774|56775|56777|56778|56785|56786|56787|56788|56789|56792|56793|56796|56797|56798|56800|56802|56803|56804|56805|56806|56807|56811|56812|56814|56816|56819|56822|56824|56825|56826|56827|56829|56831|56833|56834|56838|56839|56841|56842|56845|56847|56848|56849|56851|56853|56855|56856|56857|56858|56863|56864|56865|56866|56867|56868|56870|56871|56872|56873|56874|56875|56876|56879|56880|56881|56882|56884|56886|56887|56971|56976|56978|56980|56985|56987|56988|56990|56993|56994|56995|56996|56998|56999|57000|57001|57002|57003|57004|57005|57008|57054|57057|57058|57063|57070|57074|57075|57076|57078|57079|57196|57201|57205|57207|57209|57210|57211|57212|57216|57219|57226|57230|57234|57235|57239|57240|57246|57248|57252|57256|57260|57261|57281|57284|57289|57443|57444|57446|57448|57450|57451|57453|57455|57460|57461|57463|57464|57466|57467|57470|57471|57473|57474|57475|57476|57478|57479|57481|65597|67598|67600|67618|67623|67629|67630|67638|67640|67648|67650|67654|67661|67664|67668|67671|67677|67686|67687|67690|67695|67699|67718|67720|67721|67729|67731|67737|67738|67740|67745|67764|67768|67776|67784|67786|67792|67804|67808|67813|67819|75310|76388|77677|77678|77757|77761|77798|77805|77807|77902|77922|77926|77933|77938|77943|77953|77968|77969|77971|77974|77984|78012|78013|78059|78074|78104|78121|78125|78126|78144|78157|78175|78188|78217|78219|78248|78264|78275|78287|78293|78298|78323|78324|78326|78330|78333|78334|78340|78347|78350|78371|78376|78382|78398|78400|78401|78405|78406|78410|78431|78448|78452|78465|78493|78495|78502|78511|78535|78547|78552|78555|78573|78578|78586|78587|78605|78607|78608|78618|78620|78626|78627|78639|78643|78648|78673|78684|78688|78702|78714|78718|78728|78729|78731|78735|78774|78775|78791|78795|78817|78826|78832|78839|78844|78849|78862|78870|78872|78877|78880|78889|78900|78901|78902|78906|78916|78924|78940|78946|78949|81524|85203|85951|86527|89851|94510|94537|98335|98337|98597|99298|99300|99303|99305|99306|99309|99310|99311|99314|99316|99317|99319|99320|99321|99322|99323|99324|99326|99330|99382|99415|99422|99423|99426|99427|99651|99654|99656|99666|99668|99669|99670|99673|99674|99675|99680|99922|100333|100346|100353|100361|100371|100373|100376|100378|100380|100382|100387|100394|100403|100410|100416|100439|100448|100487|100503|100504|100508|100513|100515|100516|100518|100532|100542|100548|100556|100557|100575|100579|100587|100603|100641|100642|100656|100657|100665|100676|100684|100697|100705|100709|100716|100756|100761|101147|101153|101154|101155|101183|101184|101185|101850|102169|102172|102182|102185|102190|102192|102195|102197|102201|102203|102206|102207|102208|102211|102212|102214|102215|102223|106919|106954|107015|107042|107097|107134|107174|107194|107198|107216|107218|131959|134480|134481|134482|134484|134485|134486|134487|134488|134490|134492|134493|134494|134495|134496|134497|134498|134499|134500|134505|134506|134509|134511|134513|134515|134516|134517|134518|134519|134521|134522|134523|134566|134760|135035|135036|135039|135657|136116|136125|136127|136129|136135|136399|136408|136409|136418|136421|136424|136425|136427|136430|136441|136493|138649|138650|138651|138653|138658|138660|138662|138665|138666|138668|138669|138670|138671|138673|138674|138676|138678|138679|138681|138683|138685|138687|138688|138693|138695|138696|138698|138983|139987|139989|140033|140035|140036|140039|140040|140041|140042|140043|140044|140045|140046|140047|140048|140049|140050|140051|140052|140053|140084|140086|140087|140090|140093|140100|140101|140196|140198|140316|140318|140326|140331|140333|140335|140336|140338|140339|140344|140345|140349|140350|140351|140352|140360|140362|140370|140371|140380|140546|140547|140548|140551|140552|140556|140557|140559|140560|140562|140563|140570|140572|140574|140578|140579|140583|140585|140586|140590|140592|140593|140595|140598|140601|140602|140603|140604|140605|140609|140614|140615|140617|140618|140620|140621|140622|140623|140625|140629|140630|140633|140634|140635|140637|140638|140640|140642|140643|140644|140647|140649|140651|140652|140655|140656|140657|140658|140660|140661|140662|140664|140665|140666|140738|140780|140861|140867|140869|140871|140874|140875|140876|141002|141008|141014|141016|141017|141019|141020|141022|141023|141025|141027|141028|141033|141036|141038|141039|141043|141044|141047|141052|141053|141056|141057|141059|141060|141061|141062|141089|141150|141151|141194|141240|141241|141242|141244|141245|141246|141291|141293|141294|141298|141305|141308|141309|141310|141312|141313|141314|141315|141338|141339|141340|141490|141501|141502|141509|141510|141516|141520|141524|141534|141537|141545|141549|141604|141605|141663|141664|141686|141690|141691|141693|141694|141695|141696|141700|141701|141704|141708|141710|141712|141713|141714|141715|141770|141771|141803|141804|141806|142022|142030|142031|142032|142033|142035|142036|142037|142038|142040|142041|142044|142045|142046|142047|142048|142049|142051|142052|142053|142054|142056|142057|142059|142060|142061|142062|142063|142065|142066|142067|142068|142069|142071|142072|142073|142075|142076|142091|142093|142094|142095|142098|142102|142118|142121|142126|142127|142212|142214|142228|142371|142374|142375|142378|142381|142397|142546|142603|142604|142638|142639|142640|142642|142645|142646|142648|142649|142652|142654|142655|142695|142696|142698|142736|142739|142740|142746|142747|142749|142751|142754|142755|142756|142757|142761|142764|142766|142769|142770|142814|142815|142816|142817|142818|142819|142820|142872|142873|142874|142875|142876|142877|142879|142880|142884|142885|142886|142915|142916|142920|142925|142927|151781|152781|165525|165529|165540|165548|165560|165566|165569|165571|165576|165579|165589|165960|167406|168106|169194|170939|170942|170944|171050|171059|171072|171073|171075|171083|171102|171108|171117|171118|171119|171120|171122|171123|171133|171139|171141|171143|171145|171147|171162|171176|171178|171181|171184|171190|171194|171245|171246|171281|171781|172238|172333|172346|172392|172394|172397|172403|172407|172410|172416|172425|172429|172433|172435|172436|172457|172473|172475|172489|172499|172503|172540|172547|172549|172564|172565|172568|172599|172609|172610|172615|172621|172622|172631|172642|172647|172657|172665|172671|172679|172683|172697|172698|172709|172710|172738|172786|172800|172820|172829|172834|172850|172852|172863|172868|172879|172955|172958|172962|172963|172967|172973|172977|172981|172982|172994|172998|172999|173002|173008|173009|173015|173022|173031|173035|173036|173043|173044|173045|173046|173049|173054|173068|173069|173074|173081|173089|173092|173093|173102|173107|173118|173136|173144|173147|173157|173158|173159|173163|173166|173167|173169|173193|173218|173225|173235|173252|173258|173264|173267|173270|173311|173316|173344|173364|173383|173396|173403|173409|173443|173446|173453|173456|173462|173483|173492|173586|173591|173597|173599|173612|173727|173730|173752|173755|173757|173777|173779|173790|173792|173799|173800|173801|173802|173806|173850|173855|173864|173893|173894|173895|173917|173926|173931|173932|173943|173990|173996|173997|174000|174005|174048|174049|174134|174137|174142|174144|174186|174258|174347|174384|174532|174577|174590|174592|174598|174604|174615|174620|174724|174735|174737|174738|174750|174751|174756|174773|174775|174776|174786|174799|174853|174855|174878|174880|174886|174887|174890|174893|174896|174918|174919|175019|175032|175042|175138|175139|175150|175157|175164|175175|175177|175179|175180|175183|175184|175185|175199|175201|175212|175290|175291|175314|175315|175330|175395|175405|175412|175413|175415|175416|175419|175426|175429|175430|175433|175436|175437|175442|175451|175470|175477|175480|175481|175484|175497|175499|175503|175557|175565|175573|175575|175581|175582|175587|175594|175598|175600|175611|175619|175624|175630|175631|175647|175699|175700|175705|175726|175753|175756|175838|175861|175864|175867|175869|175870|175893|175894|175898|175955|175979|175991|175994|176123|176126|176137|176235|176358|176490|176516|176517|176519|176531|176532|176536|176658|176673|176678|176679|176681|176806|176810|176829|176848|176849|177047|177075|177206|177439|177533|177536|177599|177601|177707|177764|177765|177766|177829|177830|177831|178037|178112|178203|178210|178212|178213|178216|178217|178218|178223|178225|178228|178229|178256|178295|178436|178441|178456|178457|178461|178495|178507|178522|178523|178526|178533|178534|178536|178552|178556|178559|178574|178575|178582|178587|178589|178594|178596|178608|178613|178626|178634|178673|178675|178699|178700|178709|178710|178711|178712|178715|178726|178737|178748|178753|178754|178764|178863|178881|178913|178923|178930|178944|179043|179045|179046|179088|179117|179124|179169|179171|179185|179229|179230|179255|179256|179268|179279|179280|179289|179307|179310|179351|179365|179369|179373|179436|179464|179499|179500|179525|179535|179545|179563|179571|179597|179598|179616|179636|179640|179645|179658|179665|179678|179681|179712|179717|179728|179746|179749|179802|179816|179856|179882|179904|179906|181036|185443|185452|186018|186087|186151|186280|186340|186355|186396|186427|186430|186468|186481|186494|186522|186574|187213|187396|188021|188023|188306|188307|188323|188325|188326|188327|188328|188333|188336|188339|188347|188359|188360|188372|188373|188375|188385|188388|188392|188394|188395|188405|188407|188410|188412|188416|188428|188434|188435|188439|188440|188441|188442|188449|188458|188463|188464|188478|188483|188484|188485|188486|188492|188497|188498|188500|188501|188504|188506|188507|188539|188551|188552|188557|188559|188577|188581|188609|188614|188616|188625|188626|188628|188629|188633|188635|188636|188640|188641|188666|188676|188684|188707|188712|188722|188734|188745|188746|188753|188755|188894|189200|189203|189207|189221|189222|189229|189235|189238|189240|189244|189247|189248|189249|189250|189251|189257|189264|189266|189267|189268|189272|189273|189276|189277|189278|189279|189285|189286|189287|189288|189291|189293|189295|189297|189299|189300|189302|189304|189305|189307|189319|189338|189341|189342|189343|189344|189358|189373|189377|189383|189393|189396|189409|189416|189435|189444|189445|189451|189464|189466|189467|189478|189496|189523|189539|189540|189541|189548|189553|189554|189585|189586|189591|189611|189614|189620|189655|189698|189702|189705|189733|189736|189745|189761|189768|189815|189816|189827|189834|189844|189847|189849|189852|189855|189858|189860|189861|189862|189863|189869|189870|189871|189882|189885|189893|189910|189921|189932|189933|189957|189962|189965|189968|189972|189979|189980|189983|189986|189989|190006|190007|190050|190051|190107|190385|190412|190413|190452|190914|190915|191008|191190|191200|191320|191359|191451|191890|191955|192031|192064|192065|192066|192072|192176|192196|192544|192551|192628|192654|192655|192712|192760|192900|192913|192915|192957|193001|193004|193006|193008|193082|193086|193093|193217|193221|193232|193241|193272|193303|193304|193315|193317|193356|193357|193408|193540|193566|193589|193889|193962|194052|194075|194223|194229|194230|194471|194483|194517|194565|194638|194641|194647|194660|194666|194679|194683|194703|194721|194769|194793|194849|194889|194931|195071|195080|195138|195142|195153|195202|195434|195629|195637|195694|195767|195796|195854|195980|195981|195986|195987|196151|196219|196238|196270|196400|196450|196467|196476|196485|196503|196504|196514|196521|196538|196541|196546|196555|196566|196567|196580|196581|196592|196595|196600|196605|196635|196638|196640|196646|196658|196672|196673|196711|196721|196740|196760|196763|196770|196776|196782|196783|196786|196789|196790|196791|196792|196799|196804|196805|196806|196812|196816|196817|196834|196839|196840|196843|196846|196862|196888|196889|196891|196944|196963|196964|196967|196976|197003|197006|197020|197037|197039|197053|197057|197065|197069|197073|197086|197087|197100|197110|197116|197146|197159|197164|197175|197201|197219|197228|197235|197259|197263|197272|197273|197278|197282|197289|197299|197324|197327|197332|197371|197393|197398|197402|197450|197471|197484|197485|197488|197580|197585|197588|197590|197601|197615|197619|197622|197636|197644|197649|197650|197655|197657|197661|197672|197677|197685|197688|197703|197717|197735|197742|197743|197746|197755|197789|197803|197808|197811|197822|197823|197832|197833|197841|197842|197845|197846|197847|197849|197852|197865|197868|197869|197870|197876|197877|197879|197880|197882|197883|197884|197886|197887|197890|197893|197894|197896|197899|197902|197907|197914|197917|197922|197925|197926|197929|197941|197957|197962|197974|197998|198007|198042|198048|198054|198058|198063|198078|198082|198090|198092|198098|198099|198111|198112|198135|198143|198154|198157|198164|198169|198177|198187|198197|198199|198224|198225|198236|198262|198272|198286|198315|198318|198320|198331|198346|198351|198365|198377|198387|198395|198402|198415|198417|198418|198436|198441|198452|198459|198463|198467|198468|198473|198478|198493|198526|198529|198532|198533|198534|198535|198538|198564|198568|198577|198591|198594|198695|198701|198731|198737|198744|198745|198747|198753|198754|198773|198789|198793|198797|198809|198818|198834|198835|198838|198841|198842|198853|198856|198895|198943|198952|198969|198987|198998|199041|199043|199086|199087|199115|199117|199118|199122|199130|199132|199145|199148|199174|199175|199189|199201|199222|199230|199234|199249|199285|199304|199306|199308|199310|199320|199322|199332|199373|199380|199555|199557|199582|199613|199743|199749|199750|199774|199890|204196|204202|206601|207155|207157|207158|207159|207161|207163|207174|207727|208969|208978|209154|209160|209161|209425|209426|209429|209430|209431|209432|209434|209440|209444|209446|209448|209449|209453|209456|209458|209463|209465|209470|209472|209473|209474|209480|209481|209482|209484|209485|209486|209493|209494|209495|209499|209500|209501|209502|209518|209522|209533|209534|209538|209541|209556|209560|209562|209565|209569|209578|209580|209581|209606|209646|209648|209653|209654|209655|209656|209657|209661|209670|209673|209687|209689|209690|209693|209695|209697|209698|209705|209710|209713|209717|209724|209729|209731|209732|209734|209741|209746|209756|209759|209778|209781|209785|209795|209805|209806|209807|209808|209809|209813|209818|209822|209826|209828|209830|209841|209844|209849|209850|209851|209856|209857|209865|209869|209870|209878|209879|209884|209904|209962|209966|209970|209971|209972|209973|209974|209978|209979|209985|209986|209987|209989|209991|209993|209994|209995|209996|209998|210000|210003|210006|210011|210014|210018|210023|210028|210032|210035|210036|210041|210044|210052|210053|210055|210064|210069|210076|210083|210088|210089|210093|210094|210096|210100|210115|210121|210122|210125|210131|210136|210137|210138|210156|210157|210158|210162|210166|210172|210182|210214|210215|210216|210245|210259|210278|210293|210309|210310|210334|210352|210362|210365|210369|210379|210383|210386|210388|210389|210393|210394|210395|210396|210404|210412|210415|210418|210423|210430|210431|210441|210442|210444|210447|210450|210460|210462|210465|210471|210472|210477|210478|210482|210484|210504|210506|210507|210516|210521|210523|210531|210533|210540|210548|210551|210555|210566|210578|212344|212347|212567|212569|212616|212621|212622|212997|212999|213468|213544|213550|214116|215017|215346|215355|215553|221089|221120|221124|221361|221429|221430|221431|221432|221668|221671|221672|221675|221743|221746|221747|221750|221807|221808|221810|221811|221813|221814|221815|221980|221986|222136|222246|222247|222248|222416|222432|222447|222449|222750|222802|222811|222812|222813|222814|222853|222854|222883|223625|224055|224123|224176|224203|224216|224240|224252|224260|224294|224296|224310|224318|224322|224358|224370|224399|224439|224447|224451|224466|224515|224528|224554|224575|224989|225027|225057|225060|226989|227370|227843|228262|228402|228514|228558|228584|228609|228660|228739|228740|228771|228847|228875|228892|228924|228983|228984|228986|228987|228988|228989|228992|228995|228997|228998|228999|229002|229003|229004|229005|229006|229007|229015|229050|229051|229053|229056|229059|229061|229096|229156|229388|229389|229390|229391|229395|229398|229399|229400|229401|229402|229404|229405|229406|229407|229408|229411|229412|229413|229414|229415|229416|229419|229425|229491|229494|229496|229511|229733|229762|229826|229828|229830|229834|229839|229946|229953|230297|230320|230432|230458|230459|230463|230466|230471|230479|230480|230481|230505|230806|230807|230808|230809|230812|230815|230818|230820|230821|230838|230839|230843|230846|230847|230849|230851|230855|230856|230859|230862|230870|230872|230874|230876|230878|230880|230883|230884|230886|230887|230888|230890|230891|230898|230899|230902|230903|230905|231101|231116|231264|231273|231274|231310|231348|231352|231353|231359|231412|236529|236741|236752|236756|236758|236763|236764|236765|236770|236772|236774|236778|236779|236785|236790|236792|236793|236794|236795|236797|236800|236803|236814|236815|236817|236822|237396|238121|238222|238223|238224|238235|238404|238430|238441|238443|238472|238481|238489|238555|238560|238580|238582|238585|239079|239080|239084|239085|239093|239111|239112|239139|239196|239213|239294|239301|239302|239306|239309|239310|239312|239317|239318|239320|239322|239325|239327|239329|239648|239656|239657|239661|239884|239997|239999|240002|240011|240181|240182|240188|240190|240193|240203|240222|240223|240224|240225|240227|240228|240514|240518|240521|240533|240535|240536|240539|240540|240541|240543|240544|240546|240547|240553|240554|240555|240556|240559|240560|240561|240563|240564|240566|240567|240573|240574|240575|240577|240578|240579|240582|240584|240585|240586|240743|240750|240751|240754|240755|240757|240817|240818|240819|240835|240837|240843|241068|241093|241094|241146|241530|241538|241541|241542|241543|241796|241797|241802|241808|241809|241816|241817|241820|241889|241890|241891|241892|241893|241897|242063|242065|242066|242071|242072|242081|242082|242105|242107|242114|242116|242203|242748|242752|243041|243062|243375|243377|243379|243382|243551|243578|243583|243601|243633|243637|243643|243644|243645|243647|243648|243775|243791|243801|243821|245166|245257|245265|245271|245281|246930|246933|247104|247367|249371|249372|249373|249375|249376|250460|250467|250872|250873|250875|250878|250881|250882|250885|250888|251091|251312|251313|251314|251315|251642|251645|251845|252648|252942|252943|253424|253455|253659|253717|254022|254321|254420|254914|255335|255477|257324|257785|257906|257907|257908|257909|257910|257911|257912|257913|257914|257915|257916|257917|257918|257919|257920|257921|257922|257923|257924|257925|257926|257927|257928|257929|257930|257931|257932|257933|257934|257935|257936|257937|257938|257939|257940|257941|257942|257943|257944|257945|257946|257947|257948|257949|257950|257951|257952|257953|257954|257955|257956|257957|257958|257959|257960|257961|257962|257963|257964|257965|257966|257967|257968|257969|257970|257971|257972|257973|257974|257975|257976|257977|257978|257979|257980|257981|257982|257983|257984|257985|257986|257987|257988|257989|257990|257991|257992|257993|257994|257995|257996|257997|257998|257999|258000|258001|258002|258003|258004|258005|258006|258007|258008|258009|258010|258011|258012|258013|258014|258015|258016|258017|258018|258019|258020|258021|258022|258023|258024|258025|258026|258027|258028|258029|258030|258031|258032|258033|258034|258035|258036|258037|258038|258039|258040|258041|258042|258043|258044|258045|258046|258047|258048|258049|258050|258051|258052|258053|258054|258055|258056|258057|258058|258059|258060|258061|258062|258063|258064|258065|258066|258067|258068|258069|258070|258071|258072|258073|258074|258075|258076|258077|258078|258079|258080|258081|258082|258083|258084|258085|258086|258087|258088|258089|258090|258091|258092|258093|258094|258095|258096|258097|258098|258099|258100|258101|258102|258103|258104|258105|258106|258107|258108|258109|258110|258111|258112|258113|258114|258115|258116|258117|258118|258119|258120|258121|258122|258123|258124|258125|258126|258127|258128|258129|258130|258131|258133|258134|258135|258136|258137|258138|258139|258140|258141|258142|258143|258144|258145|258146|258147|258148|258149|258150|258151|258152|258153|258154|258155|258156|258157|258158|258159|258160|258161|258162|258163|258164|258165|258166|258167|258168|258169|258170|258171|258172|258173|258174|258175|258176|258177|258178|258179|258180|258181|258182|258183|258184|258185|258186|258187|258188|258189|258190|258191|258192|258193|258194|258195|258196|258197|258198|258199|258200|258201|258202|258203|258204|258205|258206|258207|258208|258209|258210|258211|258212|258213|258214|258215|258216|258217|258218|258219|258220|258221|258222|258223|258224|258225|258226|258227|258228|258229|258230|258231|258232|258233|258234|258235|258236|258237|258238|258239|258240|258241|258242|258243|258244|258245|258246|258247|258248|258249|258250|258251|258252|258253|258254|258255|258256|258257|258258|258259|258260|258261|258262|258263|258264|258265|258266|258267|258268|258269|258270|258271|258272|258273|258274|258275|258276|258277|258278|258279|258280|258281|258282|258283|258284|258285|258287|258288|258289|258290|258291|258292|258294|258295|258296|258297|258298|258300|258301|258302|258304|258305|258306|258307|258308|258309|258310|258311|258312|258313|258314|258315|258316|258317|258318|258319|258320|258321|258322|258323|258324|258325|258326|258327|258328|258329|258330|258331|258332|258333|258334|258335|258336|258337|258338|258339|258340|258341|258342|258343|258344|258345|258346|258347|258348|258349|258350|258351|258352|258353|258354|258355|258356|258357|258358|258359|258360|258361|258362|258363|258364|258365|258366|258367|258368|258369|258370|258371|258372|258373|258374|258375|258376|258377|258378|258379|258380|258381|258382|258383|258384|258385|258386|258387|258388|258389|258390|258391|258392|258393|258394|258395|258396|258397|258398|258399|258400|258401|258402|258403|258404|258405|258406|258407|258408|258409|258410|258412|258413|258414|258415|258416|258417|258418|258419|258420|258421|258422|258423|258424|258425|258426|258427|258428|258429|258430|258431|258432|258433|258434|258435|258436|258437|258438|258439|258440|258441|258442|258443|258444|258445|258446|258447|258448|258449|258450|258451|258452|258453|258454|258455|258456|258457|258458|258459|258460|258461|258462|258463|258464|258465|258466|258467|258468|258469|258470|258471|258472|258473|258474|258475|258476|258477|258478|258479|258480|258482|258483|258484|258485|258486|258487|258488|258489|258490|258491|258492|258494|258495|258496|258497|258498|258499|258500|258501|258502|258503|258504|258505|258506|258507|258508|258509|258510|258511|258512|258513|258514|258515|258516|258517|258518|258519|258520|258521|258522|258523|258524|258525|258526|258527|258528|258529|258530|258531|258532|258533|258534|258535|258536|258537|258538|258539|258540|258541|258542|258543|258544|258545|258546|258547|258548|258549|258550|258551|258552|258553|258554|258555|258556|258557|258558|258559|258560|258561|258562|258563|258564|258565|258566|258567|258568|258569|258570|258571|258572|258573|258574|258575|258576|258577|258578|258579|258580|258581|258582|258583|258584|258585|258586|258587|258588|258589|258590|258591|258592|258593|258594|258595|258596|258597|258598|258599|258600|258601|258602|258603|258604|258605|258606|258608|258609|258610|258611|258612|258613|258614|258615|258616|258617|258618|258619|258620|258621|258622|258623|258624|258625|258626|258627|258628|258629|258630|258631|258632|258633|258634|258635|258636|258637|258638|258639|258640|258641|258642|258643|258644|258645|258646|258647|258648|258649|258650|258651|258652|258653|258654|258655|258656|258657|258658|258659|258660|258661|258662|258663|258664|258665|258666|258667|258668|258669|258670|258671|258672|258673|258674|258676|258677|258678|258679|258680|258681|258682|258683|258684|258685|258686|258689|258690|258691|258692|258693|258694|258695|258696|258697|258698|258699|258700|258701|258702|258703|258704|258705|258706|258707|258708|258709|258710|258711|258712|258713|258714|258715|258716|258717|258718|258719|258720|258721|258722|258723|258724|258725|258726|258727|258728|258729|258730|258731|258732|258733|258734|258735|258736|258737|258738|258739|258740|258741|258742|258743|258744|258745|258746|258747|258748|258749|258750|258751|258752|258753|258754|258755|258756|258757|258758|258759|258760|258761|258762|258763|258764|258765|258766|258767|258768|258769|258770|258771|258772|258773|258774|258775|258776|258777|258778|258779|258780|258781|258782|258783|258784|258785|258786|258787|258788|258789|258790|258791|258792|258793|258794|258795|258796|258797|258798|258799|258800|258801|258802|258803|258804|258805|258806|258807|258808|258809|258810|258811|258812|258813|258814|258815|258816|258817|258818|258819|258820|258821|258822|258823|258824|258825|258826|258827|258828|258829|258830|258831|258832|258833|258834|258835|258836|258837|258838|258839|258840|258841|258842|258843|258844|258845|258846|258847|258848|258849|258850|258851|258852|258853|258854|258855|258856|258857|258858|258859|258860|258861|258862|258863|258864|258865|258866|258867|258868|258869|258870|258871|258872|258873|258874|258875|258876|258877|258878|258879|258880|258881|258882|258883|258884|258885|258886|258887|258888|258889|258890|258891|258892|258893|258894|258895|258896|258897|258898|258899|258900|258901|258902|258903|258904|258905|258906|258907|258908|258909|258910|258911|258912|258913|258914|258915|258916|258917|258918|258919|258920|258921|258922|258923|258924|258925|258926|258927|258928|258929|258930|258931|258932|258933|258934|258935|258936|258937|258938|258940|258941|258942|258943|258944|258945|258946|258947|258948|258949|258950|258951|258952|258953|258954|258955|258956|258957|258958|258959|258960|258961|258962|258963|258964|258965|258966|258967|258968|258969|258970|258971|258972|258973|258974|258975|258976|258977|258978|258979|258980|258981|258982|258983|258984|258985|258986|258987|258988|258989|258990|258991|258992|258993|258994|258995|258996|258997|258998|258999|259000|259001|259002|259003|259004|259005|259006|259007|259008|259009|259010|259011|259012|259013|259014|259015|259016|259017|259018|259019|259020|259021|259022|259023|259024|259025|259026|259027|259028|259029|259030|259031|259032|259033|259034|259035|259036|259037|259038|259039|259040|259041|259042|259043|259044|259045|259046|259047|259048|259049|259050|259051|259052|259053|259054|259055|259056|259057|259058|259059|259060|259061|259062|259063|259064|259065|259066|259067|259068|259069|259070|259071|259072|259073|259074|259075|259076|259077|259078|259079|259080|259081|259082|259083|259084|259085|259086|259087|259088|259089|259090|259091|259092|259093|259094|259095|259096|259097|259098|259099|259100|259101|259102|259103|259104|259105|259106|259107|259108|259109|259110|259111|259112|259113|259114|259115|259116|259117|259118|259119|259120|259121|259122|259123|259124|259125|259126|259127|259128|259129|259130|259131|259132|259133|259134|259135|259136|259137|259138|259139|259140|259141|259142|259143|259144|259145|259146|259147|259148|259149|259150|259151|259152|259153|259154|259155|259156|259157|259158|259159|259160|259161|259162|259163|259164|259165|259166|259167|259168|259169|259170|259171|259172|259173|259174|259175|259176|259177|259178|259179|259180|259181|259182|259183|259184|259185|259186|259187|259188|259189|259190|259191|259192|259193|259194|259195|259196|259197|259198|259199|259200|259203|259205|259206|259207|259208|259212|259215|259848|259979|260073|264131|265345|265919|266075|266232|266724|267010|267393|267543|267725|267729|268031|268042|268111|268223|268668|268690|268703|268990|269184|269796|270042|270378|270379|270849|270946|271146|271300|271829|271856|271889|272181|272253|273101|273318|273957|274161|274199|274369|274953|274954|276156|276162|276284|276431|276836|279964|280289|280328|281358|281557|281591|281604|281622|283232|283303|283430|283481|283504|283930|286241|286317|286480|286579|288349|288366|288371|288372|288402|289701|289959|291088|292113|292143|292159|292241|292884|294400|296827|296833|297051|299107|300743|300748|302179|302804|303500|303547|304013|304029|306933|306939|307475|308732|309976|311015|311576|311704|311711|311738|311836|311852|311859|311865|315013|316757|317318|317667|317695|320215|320333|320340|320362|320376|320650|322781|323054|323336|324243|324412|324557|328957|329557|329624|331163|331596|331689|333927|334004|334052|334064|334074|334804|334808|335279|335633|337312|339297|339739|340728|340740|340743|342129|344000|344001|344693|348136|349256|350218|350222|350671|350911|351083|351644|359196|359326|359445|359707|359740|359896|359981|360107|360403|361874|361875|362738|362742|363772|364058|364317|364334|364337|364365|364414|364600|364674|364755|364907|364924|365002|365088|365411|365917|365940|365943|365969|366013|366059|366214|366219|366226|366253|366312|366895|367163|367452|367476|367497|367522|367538|367615|367783|367784|367809|367811|367820|367888|367911|368174|368522|368524|368546|368749|368923|369023|369053|369536|369592|369657|369770|370022|370210|370271|370282|370525|370548|370590|370638|370735|370775|370782|370812|370816|370822|370828|370909|370997|371031|371076|371090|371111|371114|371150|371184|371190|371303|371377|371391|371575|371600|371616|371639|371733|372141|372232|372261|372456|372460|372488|372549|372772|372917|372943|372972|372974|372990|373124|373240|373248|373398|373504|373550|373653|373671|373683|373940|373948|373971|373983|374044|374122|374124|374182|374278|374363|374650|374961|374970|374980|375028|375050|375074|375874|376000|376002|376015|376206|376215|376217|376492|376592|376617|376618|376660|376980|377021|377039|377045|377081|377083|377295|377388|377391|377819|377837|377844|377927|377928|378049|378166|378182|378235|378238|378246|378257|378479|378558|378595|378618|378962|378971|378979|379072|379082|379168|379192|379237|379377|379690|379691|379704|379784|379814|379820|379987|380112|389561|390072|390169|390322|390545|390738|390767|390778|390779|390989|391029|391063|391086|391094|391126|391150|391183|391186|391526|391536|391541|391634|391668|391687|391708|391721|391811|391874|391899|391951|391966|392067|392384|392399|392422|392427|392444|392457|392708|393266|393320|393325|393353|393479|393530|393753|393778|393814|393819|393829|393838|393869|393876|393877|393953|393979|394046|394074|394224|394247|394274|394791|395083|395105|395137|395231|395369|395374|395375|395408|395482|395497|395571|395667|395668|395680|395706|395798|395807|395870|395872|395892|396047|396099|396100|396164|396192|396197|396273|396470|396483|396755|396774|396794|396823|396842|396848|396989|397000|397027|397046|397068|397080|397124|397129|397133|397142|397187|397192|397206|397316|397325|397338|397339|397386|397496|397499|397555|397602|397618|397917|398256|398278|398307|398638|398656|398911|398937|398960|399069|399097|399375|399594|399605|399725|399784|399862|399950|400229|400308|400332|400336|400342|400344|400375|400459|400492|400541|400547|400548|400731|401033|401035|401103|401128|401131|401179|401181|401198|401205|401928|402004|402720|402725|402731|402735|402753|402755|403247|403253|403342|403360|403635|403652|403688|403694|403740|403742|403761|403787|403799|403815|403833|403837|404150|404153|404178|404286|404320|404488|404586|404593|404774|404786|404802|405013|405048|405437|405515|405522|406791|406800|407591|407595|407622|407624|407815|408275|408324|408376|409095|409299|409327|410338|414937|414959|415020|415404|415425|415559|415681|419261|421225|421229|421324|421347|421417|421732|421979|422320|425304|425343|425590|425617|425703|425971|426065|426147|426268|426337|430725|430726|430907|433145|433439|433443|433557|433564|433576|433734|433837|433839|433841|434565|437982|438415|440614|441337|442400|442763|443100|443101|443114|443549|443668|443676|443866|444001|444435|444610|444613|444780|444968|444983|445252|445350|445376|445379|445410|445497|445771|446256|446358|446359|447022|447028|447033|447037|447118|447125|447133|447146|447157|447205|447224|447254|447317|447532|447788|447796|447843|447895|447908|447977|447996|448242|448379|449077|449129|449137|449282|449284|449348|449390|449440|449509|449534|449566|449688|449708|449803|449935|449988|450095|450106|450138|450148|450226|450312|451772|452028|452109|452128|452147|452218|452230|452246|452253|452306|452424|452468|452587|452868|452870|453236|453255|453326|453334|453693|454414|454836|455037|455101|455433|455996|456014|456034|456055|456463|456478|456494|456504|456787|456801|456805|456831|457038|457052|457080|457545|457748|457989|458774|458782|458924|458926|458928|458957|458972|458995|459166|459184|459263|459300|459307|459322|459337|459351|459364|459368|459374|459409|459651|459687|459744|459751|459778|459780|459786|459787|459815|459892|459922|459930|460068|460202|460216|460356|460512|460545|460559|460929|461422|461639|461851|462012|462017|462107|462112|462135|462399|462417|462816|462831|462880|462881|462936|462982|463141|463583|463618|463629|463895|463921|464102|464114|464127|464128|464173|464353|464397|464413|464422|464524|464927|465158|465220|465299|465385|465777|465948|467926|468008|468042|468046|468069|468306|469008|469310|469638|470341|470381|470900|470967|471071|471081|471340|471358|471363|471387|471395|471508|471540|471836|472100|481616|485242|485756|485762|486035|486121|486857|486862|486908|486917|487300|487340|487491|487554|487573|487790|487865|487993|487995|488016|488044|488758|489677|490092|490318|490889|491346|491402|491474|492618|492911|493346|496161|496342|496619|496730|496752|497340|497529|497572|497866|497975|498007|498024|498387|498938|499047|499306|499322|499379|499458|499666|499671|499741|499783|499836|499850|500440|500475|500695|500696|500699|500869|500877|501073|501120|501145|501349|501448|501800|501827|502080|502164|502314|502323|502437|502509|502700|502782|502801|502813|502818|502892|502926|502941|502958|503045|503159|503267|503353|503561|503632|503755|503771|504789|504790|504832|504980|505015|505061|505651|506038|506068|506099|506101|507284|507366|507476|507490|507514|507907|507945|508010|508014|508046|508070|508181|508219|508314|508364|508389|508572|508665|508823|508825|508903|509061|509062|509063|509064|509065|509066|509067|509068|509069|509070|509071|509072|509073|509074|509075|509076|509077|509078|509079|509080|509081|509082|509083|509084|509085|509086|509087|509088|509089|509090|509091|509092|509093|509094|509095|509096|509097|509098|509099|509100|509101|509102|509103|509104|509105|509106|509107|509108|509109|509110|509111|509112|509113|509114|509115|509116|509117|509118|509119|509120|509121|509122|509123|509124|509125|509126|509127|509128|509129|509130|509131|509132|509133|509134|509135|509136|509137|509138|509139|509140|509141|509142|509143|509144|509145|509146|509147|509148|509149|509150|509151|509152|509153|509154|509155|509156|509157|509158|509159|509160|509161|509162|509163|509164|509165|509166|509167|509168|509169|509170|509171|509172|509173|509174|509175|509176|509177|509178|509179|509180|509181|509182|509183|509184|509185|509186|509187|509188|509189|509190|509191|509192|509193|509194|509195|509196|509197|509198|509199|509200|509201|509202|509203|509204|509205|509206|509207|509208|509209|509210|509211|509212|509213|509214|509215|509216|509217|509218|509219|509220|509221|509222|509223|509224|509225|509226|509227|509228|509229|509230|509231|509232|509233|509234|509235|509236|509237|509238|509239|509240|509241|509242|509243|509244|509245|509246|509247|509248|509249|509250|509251|509252|509253|509254|509255|509256|509257|509258|509259|509260|509261|509262|509263|509264|509265|509266|509267|509268|509269|509270|509271|509272|509273|509274|509275|509276|509277|509278|509279|509280|509281|509282|509283|509284|509285|509286|509287|509288|509289|509290|509291|509292|509293|509294|509295|509296|509297|509298|509299|509300|509301|509302|509303|509304|509305|509306|509307|509308|509309|509310|509311|509312|509313|509314|509315|509316|509317|509318|509319|509320|509321|509322|509323|509324|509325|509326|509327|509328|509329|509330|509331|509332|509333|509334|509335|509336|509337|509338|509339|509340|509341|509342|509343|509344|509345|509346|509347|509348|509349|509350|509351|509352|509353|509354|509355|509356|509357|509358|509359|509360|509361|509362|509363|509364|509365|509366|509367|509368|509369|509370|509371|509372|509373|509374|509375|509376|509377|509378|509379|509380|509381|509382|509383|509384|509385|509386|509387|509388|509389|509390|509391|509392|509393|509394|509395|509396|509397|509398|509399|509400|509401|509402|509403|509404|509405|509406|509407|509408|509409|509410|509411|509412|509413|509414|509415|509416|509417|509418|509419|509420|509421|509422|509423|509424|509425|509426|509427|509428|509429|509430|509431|509432|509433|509434|509435|509436|509437|509438|509439|509440|509441|509442|509443|509444|509445|509446|509447|509448|509449|509450|509451|509452|509453|509454|509455|509456|509457|509458|509459|509460|509461|509462|509463|509464|509465|509466|509467|509468|509469|509470|509471|509472|509473|509474|509475|509476|509477|509478|509479|509480|509481|509482|509483|509484|509485|509486|509487|509488|509489|509490|509491|509492|509493|509494|509495|509496|509497|509498|509499|509500|509501|509502|509503|509504|509505|509506|509507|509508|509509|509510|509511|509512|509513|509514|509515|509516|509517|509518|509519|509520|509521|509522|509523|509524|509525|509526|509527|509528|509529|509530|509531|509532|509533|509534|509535|509536|509537|509538|509539|509540|509541|509542|509543|509544|509545|509546|509547|509548|509549|509550|509551|509552|509553|509554|509555|509556|509557|509558|509559|509560|509561|509562|509563|509564|509565|509566|509567|509568|509569|509570|509571|509573|509574|509575|509576|509577|509578|509579|509580|509581|509582|509583|509584|509585|509586|509587|509588|509589|509590|509591|509592|509593|509594|509595|509596|509597|509598|509599|509600|509601|509602|509603|509604|509605|509606|509607|509608|509609|509610|509611|509612|509613|509614|509615|509616|509617|509618|509619|509620|509621|509622|509623|509624|509625|509626|509627|509628|509629|509630|509631|509632|509633|509634|509635|509636|509637|509638|509639|509640|509641|509642|509643|509644|509645|509646|509647|509648|509649|509650|509651|509652|509653|509654|509655|509656|509657|509658|509659|509660|509661|509662|509663|509664|509665|509666|509667|509668|509669|509670|509671|509672|509673|509674|509675|509676|509677|509678|509679|509680|509681|509682|509683|509684|509685|509686|509687|509688|509689|509690|509691|509692|509693|509694|509695|509696|509697|509698|509699|509700|509701|509702|509703|509704|509705|509706|509707|509708|509709|509710|509711|509712|509713|509714|509715|509716|509717|509718|509719|509720|509721|509722|509723|509724|509725|509726|509727|509728|509729|509730|509731|509732|509733|509734|509735|509736|509737|509738|509739|509740|509741|509742|509743|509744|509745|509746|509747|509748|509749|509750|509751|509752|509753|509754|509755|509756|509757|509758|509759|509760|509761|509762|509763|509764|509765|509766|509767|509768|509769|509770|509771|509772|509773|509774|509775|509776|509777|509778|509779|509780|509781|509783|509784|509785|509786|509787|509788|509789|509790|509791|509792|509793|509794|509795|509796|509797|509798|509799|509800|509801|509802|509803|509804|509805|509806|509807|509808|509809|509810|509811|509812|509813|509814|509815|509816|509817|509818|509819|509820|509821|509822|509823|509824|509825|509826|509827|509828|509829|509830|509831|509832|509833|509834|509835|509836|509837|509838|509839|509840|509841|509842|509843|509844|509845|509846|509847|509848|509849|509850|509851|509852|509853|509854|509855|509856|509857|509858|509859|509860|509861|509862|509863|509864|509865|509866|509867|509868|509869|509870|509871|509872|509873|509874|509875|509876|509877|509878|509879|509880|509881|509882|509883|509884|509885|509886|509887|509888|509889|509890|509891|509892|509893|509894|509895|509896|509897|509898|509899|509900|509901|509902|509903|509904|509905|509906|509907|509908|509909|509910|509911|509912|509913|509914|509915|509916|509917|509918|509919|509920|509921|509922|509923|509924|509925|509926|509927|509928|509929|509930|509931|509932|509933|509934|509935|509936|509937|509938|509939|509940|509941|509942|509943|509944|509945|509946|509947|509948|509949|509950|509951|509952|509953|509954|509955|509956|509957|509958|509959|509960|509961|509962|509963|509964|509965|509966|509967|509968|509969|509970|509971|509972|509973|509974|509975|509976|509977|509978|509979|509980|509981|509982|509983|509984|509985|509986|509987|509988|509989|509990|509991|509992|509993|509994|509995|509996|509997|509998|509999|510000|510001|510002|510003|510004|510005|510006|510007|510008|510009|510010|510011|510012|510013|510014|510015|510016|510017|510018|510019|510020|510021|510022|510023|510024|510025|510026|510027|510028|510029|510030|510031|510032|510033|510034|510035|510036|510037|510038|510039|510040|510041|510042|510043|510044|510045|510046|510047|510048|510049|510050|510051|510052|510053|510054|510055|510056|510057|510058|510059|510060|510061|510062|510063|510064|510065|510066|510067|510068|510069|510070|510071|510072|510073|510074|510075|510076|510077|510078|510079|510080|510081|510082|510083|510084|510085|510086|510087|510088|510089|510090|510091|510092|510093|510094|510095|510096|510097|510098|510099|510100|510101|510102|510103|510104|510105|510106|510107|510108|510109|510110|510111|510112|510113|510114|510115|510116|510117|510118|510119|510120|510121|510122|510123|510124|510125|510126|510127|510128|510129|510130|510131|510132|510133|510134|510135|510136|510137|510138|510139|510140|510141|510142|510143|510144|510145|510146|510147|510148|510149|510150|510151|510152|510153|510154|510155|510156|510157|510158|510159|510160|510161|510162|510163|510164|510165|510166|510167|510168|510169|510170|510171|510172|510173|510174|510175|510176|510177|510178|510179|510180|510181|510182|510183|510184|510185|510186|510187|510188|510189|510190|510191|510192|510193|510194|510195|510196|510197|510198|510199|510200|510201|510202|510203|510204|510205|510206|510207|510208|510209|510210|510211|510212|510213|510214|510215|510216|510217|510218|510219|510220|510221|510222|510223|510224|510225|510226|510227|510228|510229|510230|510231|510232|510233|510234|510235|510236|510237|510238|510239|510240|510241|510242|510243|510244|510245|510246|510247|510248|510249|510250|510251|510252|510253|510254|510255|510256|510257|510258|510259|510260|510261|510262|510263|510264|510265|510266|510267|510268|510269|510270|510271|510272|510273|510274|510275|510276|510277|510278|510279|510280|510281|510282|510283|510284|510285|510286|510287|510288|510289|510290|510291|510292|510293|510294|510295|510296|510297|510298|510299|510300|510301|510302|510303|510304|510305|510306|510307|510308|510309|510310|510311|510312|510313|510314|510315|510316|510317|510318|510319|510320|510321|510322|510323|510324|510325|510326|510327|510328|510329|510330|510331|510332|510333|510334|510335|510336|510337|510338|510339|510341|510342|510343|510344|510345|510346|510347|510348|510349|510350|510351|510352|510353|510354|510355|510356|510357|510358|510359|510360|510361|510362|510363|510364|510365|510366|510367|510368|510369|510370|510371|510372|510373|510374|510375|510376|510377|510378|510379|510380|510381|510382|510383|510384|510385|510386|510387|510388|510389|510390|510391|510392|510393|510394|510395|510396|510397|510398|510399|510400|510401|510402|510403|510404|510405|510406|510407|510408|510409|510410|510411|510412|510413|510414|510415|510416|510417|510418|510419|510420|510421|510422|510423|510424|510425|510426|510427|510428|510429|510430|510431|510432|510434|510435|510436|510437|510438|510439|510440|510441|510442|510443|510444|510445|510446|510447|510448|510449|510450|510451|510452|510453|510454|510455|510456|510457|510458|510459|510460|510461|510462|510463|510464|510465|510466|510467|510468|510469|510470|510471|510472|510473|510475|510476|510477|510478|510479|510480|510481|510482|510483|510484|510485|510486|510487|510488|510489|510490|510491|510492|510493|510494|510495|510496|510497|510498|510499|510500|510501|510502|510503|510504|510505|510506|510507|510508|510509|510510|510511|510512|510513|510514|510515|510516|510517|510518|510519|510520|510521|510522|510523|510524|510525|510526|510527|510528|510529|510530|510531|510532|510533|510534|510535|510536|510537|510538|510539|510540|510541|510542|510543|510544|510545|510546|510547|510548|510549|510550|510551|510552|510553|510554|510555|510556|510557|510558|510559|510560|510561|510562|510563|510564|510565|510566|510567|510568|510569|510570|510571|510572|510573|510574|510575|510576|510577|510578|510579|510580|510581|510582|510583|510584|510585|510586|510587|510588|510589|510590|510591|510592|510593|510594|510595|510596|510597|510598|510599|510600|510601|510602|510603|510604|510605|510606|510607|510608|510609|510610|510611|510612|510613|510614|510615|510616|510617|510618|510619|510620|510621|510622|510623|510624|510625|510626|510627|510628|510629|510630|510631|510632|510633|510634|510635|510636|510637|510638|510639|510640|510641|510642|510643|510644|510645|510646|510647|510648|510649|510650|510651|510652|510653|510654|510655|510656|510657|510658|510659|510660|510661|510662|510663|510664|510665|510666|510667|510668|510669|510670|510671|510672|510673|510674|510675|510676|510677|510678|510679|510680|510681|510682|510683|510684|510685|510686|510687|510688|510689|510690|510691|510692|510693|510694|510695|510696|510697|510698|510699|510700|510701|510702|510703|510704|510705|510706|510707|510708|510709|510710|510711|510712|510713|510714|510715|510716|510717|510718|510719|510720|510721|510722|510723|510724|510725|510726|510727|510728|510729|510730|510731|510732|510733|510734|510735|510736|510737|510738|510739|510740|510741|510742|510743|510744|510745|510746|510747|510748|510749|510750|510751|510752|510753|510754|510755|510756|510757|510758|510759|510760|510761|510762|510763|510764|510765|510766|510767|510768|510769|510770|510771|510772|510773|510774|510775|510776|510777|510778|510779|510780|510781|510782|510783|510784|510785|510786|510787|510788|510789|510790|510791|510792|510793|510794|510795|510796|510797|510798|510799|510800|510801|510802|510803|510804|510805|510806|510807|510808|510809|510810|510811|510812|510813|510814|510815|510816|510817|510818|510819|510820|510821|510822|510823|510824|510825|510826|510827|510828|510829|510830|510831|510832|510833|510834|510835|510836|510837|510838|510839|510840|510841|510842|510843|510844|510845|510846|510847|510848|510849|510850|510851|510852|510853|510854|510855|510856|510857|510858|510859|510860|510861|510862|510863|510864|510865|510866|510867|510868|510869|510870|510871|510872|510873|510874|510875|510876|510877|510878|510879|510880|510881|510882|510883|510884|510885|510886|510887|510888|510889|510890|510891|510892|510893|510894|510895|510896|510897|510898|510899|510900|510901|510902|510903|510904|510905|510906|510907|510908|510909|510910|510911|510912|510913|510914|510915|510916|510917|510918|510919|510920|510921|510922|510923|510924|510925|510926|510927|510928|510929|510930|510931|510932|510933|510934|510935|510936|510937|510938|510939|510940|510941|510942|510943|510944|510945|510946|510947|510948|510949|510950|510951|510952|510953|510954|510955|510956|510957|510958|510959|510960|510961|510962|510963|510964|510965|510966|510967|510968|510969|510970|510971|510972|510973|510974|510975|510976|510977|510978|510979|510980|510981|510982|510983|510984", "text": "Cardiovascular phenotype" }, { - "baseId": "15157|15158|15159|15160|15161|15162|15163|15164|15165|15166|15167", + "upstreamId": "15157|15158|15159|15160|15161|15162|15163|15164|15165|15166|15167", "text": "Homocystinuria, pyridoxine-responsive" }, { - "baseId": "15159|15283|15328|15332|15349|15843|16262|16329|16549|16550|16552|16659|16740|17238|17257|17395|17521|17524|17577|17578|17579|17581|17582|17584|17586|17587|18066|18077|18087|18159|18250|18401|18409|18559|18560|19141|19329|19409|19410|19413|19566|19730|19731|19732|19770|19772|19881|19966|20026|20027|20042|20138|20142|20188|20332|20333|20341|20381|20550|20630|20633|21091|21406|21934|21939|21979|21987|22138|22152|22154|22155|22159|22161|22164|22165|22168|22169|22175|22176|22182|22194|22204|22205|22214|22224|22229|22235|22238|22267|22268|22270|22276|22500|22819|22852|22858|22918|22923|22924|22927|22952|23317|23318|23332|23441|23470|23582|23777|23815|23835|23845|23849|23970|24258|24263|24264|24266|24284|24332|24364|24368|24388|24419|24431|24432|24941|25404|25405|25407|25428|25439|25450|25611|25618|25627|25629|25646|25666|25686|25777|26071|26299|26306|26307|26308|26342|26351|26352|26420|26863|26868|27271|27313|27320|27327|27390|27450|27460|27628|27641|27746|27818|27830|27885|27895|27896|27897|27898|28139|28366|28384|28436|28437|28447|28448|28456|28460|28465|28473|28491|28495|28505|28516|28518|28548|28552|28714|28799|28944|28955|28970|28972|28975|28984|28996|29062|29190|29213|29987|30129|30138|30145|30151|30165|30190|30191|30195|30200|30207|30209|30210|30215|30241|30252|30273|30280|30283|30284|30286|30317|30319|30325|30331|30339|30341|30359|30361|30362|30368|30372|30440|30441|30442|30443|30452|30453|30454|30456|30457|30458|30461|30462|30473|30475|30476|30477|30486|30487|30488|30489|30490|30493|30496|30497|30498|30499|30500|30503|30508|30510|30522|30553|30572|30579|30604|30638|30652|30663|30668|30669|30674|30675|30676|30678|30686|30689|30691|30692|30701|30729|30731|30733|30738|30746|30772|30784|30785|30804|30833|30834|30842|30861|30873|30924|31275|31366|31370|31371|31376|31378|31381|31393|31398|31720|31897|31952|32039|32043|32044|32046|32048|32049|32050|32053|32055|32062|32128|32244|32352|32369|32386|32418|32700|32701|32709|32715|32716|32720|32791|33097|33858|33994|34016|34043|34156|34162|34164|34196|34239|34676|34678|34680|34689|34691|34695|34696|36140|36243|36261|36273|36275|36276|36287|36305|38447|38469|38851|39074|39099|39315|39316|40369|40451|40462|40469|40479|44292|44297|44298|44300|44308|44318|44351|44355|44431|44433|44489|44490|44493|44494|44496|44499|44503|44505|44506|44508|44517|44524|44526|44531|44532|44533|44536|44546|44557|44558|44579|44586|44590|44594|44596|44598|44605|44624|44627|44628|44662|44663|44673|44674|44680|44682|44683|44684|44685|44690|44695|44705|44729|44735|44742|44748|44767|44768|44796|44797|44802|44804|44943|44944|44946|44949|44951|44955|44956|44967|44972|44973|44974|44982|44984|44986|44991|44993|44995|44996|44998|45004|45041|45042|45087|45088|45089|45092|45100|45101|45108|45110|45111|45112|45141|45162|45163|45164|45165|45166|45168|45169|45170|45171|45172|45173|45174|45175|45177|45178|45181|45204|45210|45216|45219|45229|45233|45235|45239|45243|45245|45246|45249|45259|45261|45269|45272|45283|45287|45293|45346|45347|45348|45349|45350|45351|45352|45353|45354|45357|45358|45369|45376|45384|45389|45391|45392|45393|45396|45398|45399|45407|45408|45410|45411|45419|45420|45421|45422|45424|45426|45428|45431|45433|45439|45441|45442|45518|45528|45532|45534|45539|45540|45545|45553|45724|45982|46008|46010|46021|46025|46035|46063|46083|46117|46167|46234|46270|46290|46291|46297|46314|46325|46373|46386|46415|46442|46448|46460|46466|46469|46471|46492|46499|46515|46529|46546|46554|46571|46584|46616|46619|46621|46642|46708|46724|46748|46776|46786|46798|46804|46816|46822|47058|47216|47272|47340|47455|48163|48266|48807|48830|48834|48861|48889|48891|48901|48902|48916|48976|49081|49143|49162|49167|49183|49208|49217|49219|49224|49230|49953|49955|49966|49979|49981|49984|49988|49995|49997|50000|50001|50003|50004|50006|50008|50009|50011|50019|50050|50062|50063|50066|50068|50100|50102|50112|50123|50139|50140|50141|50142|50143|50144|50145|50146|50147|50148|50152|50155|50161|50164|50165|50170|50175|50177|50184|50187|50194|50196|50198|50199|50202|50205|50206|50208|50215|50221|50242|50244|50247|50249|50250|50251|50253|50254|50256|50257|50260|50265|50266|50267|50269|50274|50291|50293|50296|51095|51420|51457|51465|51467|51489|51491|51500|51508|51551|51582|51583|51603|51628|51641|51655|51656|51659|51676|51706|51796|51815|51822|51823|51846|51857|51881|51922|51928|51930|51956|51960|51967|51987|52003|52034|52081|52122|52147|52190|52197|52202|52262|52273|52286|52318|52340|52428|52444|52463|52493|52494|52504|52545|52625|52694|52695|52713|52716|52745|52746|52748|52760|52764|52821|52832|52876|52881|52884|52886|52896|52902|52909|52911|52914|52915|52922|52938|52939|52951|52955|52990|52994|53001|53002|53041|53042|53049|53072|53073|53084|53090|53205|53227|53229|53233|53236|53241|53244|53280|53282|53318|53399|53400|53410|53419|53422|53425|53432|53434|53436|53462|53473|53474|53479|53489|53498|53620|53622|53627|53638|53639|53642|53647|53648|53650|53655|53659|53660|53661|53673|53682|53686|53693|53704|53711|53718|53737|53738|53740|53753|53790|53792|53808|53817|53818|53825|53828|53829|53859|53862|53863|53873|53874|53882|53884|53904|53906|53921|53922|53927|53936|53937|53943|53947|53949|53950|54017|54025|54027|54040|54045|54048|54060|54064|54073|54075|54082|54084|54092|54096|54103|54105|54108|54110|54118|54130|54135|54261|54285|54307|54313|54361|54368|54370|54376|54474|54501|54520|54557|54558|54564|54566|54572|54576|54579|54589|54592|54598|54600|54601|54606|54607|54609|54619|54622|54623|54630|54678|54692|54704|54713|54714|54716|54717|54727|54743|54747|54749|54753|54765|54768|54785|54804|54842|54848|54849|54852|54874|54892|54895|54995|54996|54997|55002|55007|55008|55012|55022|55031|55047|55062|55071|55078|55104|55110|55122|55184|55185|55196|55237|55253|55303|55306|55318|55319|55353|55383|55416|55431|55436|55463|55464|55479|55490|55499|55506|55538|55554|55561|55565|55567|55574|55601|55605|55612|55635|55658|55663|55670|55701|55722|55733|55735|55743|55746|55750|55752|55756|55757|55760|55762|55771|55777|55779|55786|55790|55798|55800|55805|55806|55811|55818|55820|55823|55829|55831|55832|55835|55837|55844|55846|55850|55852|55858|55867|55869|55870|55873|55876|55878|55881|55886|55890|55906|55907|55908|55923|55924|55935|55940|55944|55957|55982|55984|55987|55991|55993|55996|55997|55998|56006|56013|56016|56022|56031|56038|56039|56041|56049|56067|56069|56071|56076|56082|56087|56095|56097|56100|56107|56108|56116|56133|56145|56146|56147|56148|56152|56153|56155|56172|56173|56174|56178|56179|56180|56183|56189|56193|56201|56202|56205|56209|56214|56222|56233|56235|56239|56251|56264|56265|56288|56289|56292|56293|56305|56315|56337|56342|56345|56353|56370|56378|56390|56391|56393|56398|56401|56425|56430|56440|56454|56455|56459|56481|56486|56497|56498|56503|56540|56545|56555|56558|56564|56570|56573|56575|56577|56579|56580|56582|56584|56587|56597|56600|56611|56616|56621|56631|56641|56644|56648|56658|56661|56663|56665|56671|56674|56675|56678|56680|56687|56693|56696|56710|56714|56719|56722|56723|56727|56738|56742|56752|56760|56762|56763|56764|56765|56767|56768|56772|56785|56787|56788|56790|56796|56797|56800|56802|56803|56805|56806|56807|56816|56826|56834|56838|56841|56855|56863|56865|56866|56870|56874|56875|56876|56879|56881|56887|56905|56913|56920|56927|56928|56929|56933|56937|56959|56978|56980|56987|56990|57005|57010|57011|57014|57061|57070|57079|57145|57146|57160|57189|57211|57220|57226|57281|57286|57329|57332|57353|57397|57437|57443|57444|57450|57451|57460|57470|57479|57506|57534|57542|57546|57549|57565|57581|57585|57589|57601|57606|57607|57613|57615|57617|57621|57625|57630|57646|57648|57649|57662|57669|57672|57675|57677|57680|57682|57690|57696|57709|57717|57724|57727|57730|57734|57739|57769|57782|57834|57850|57866|57930|57983|58168|58170|58181|58303|58312|58324|58451|58464|58544|58593|58629|58666|58695|58710|58778|58788|58806|58847|58901|58980|59009|59057|59119|59171|59189|59278|59301|59351|65711|65715|65721|65728|65784|65836|65837|65860|65861|65865|65926|65994|66011|66017|66034|66047|66049|66103|66116|66118|66147|66149|66256|66257|66260|66284|66312|66345|66346|66397|66467|66481|66490|66533|66546|66564|66580|66732|66770|66855|66867|66884|66915|66917|66985|67087|67140|67190|67228|67262|67274|67278|67350|67360|67365|67448|67458|67556|67564|67565|67566|67823|67825|67828|67841|67860|67887|67890|67897|68000|68030|68035|68072|68133|68155|68173|68197|68209|68229|68243|68270|68299|68306|68334|68352|68356|68387|68388|68409|68430|68446|68457|68466|68469|68498|68561|68590|68608|68629|68650|68660|68725|68749|68762|68810|68813|68983|69043|69063|69091|69102|69109|69128|69172|69234|69331|69410|69447|69507|69597|69637|69639|69654|69800|69824|69877|69896|69902|69909|69912|69926|69939|69968|70074|70095|70252|70256|70302|70309|70394|70438|70462|70475|70476|70962|76101|76408|76467|76468|76573|76620|77593|77671|77683|77916|77922|78188|78323|78493|78509|78511|78607|78664|78670|78729|78895|78916|79251|81524|82778|89851|93633|93635|94027|94678|94960|95196|95829|95960|96615|96752|96753|96779|96781|96799|96802|96812|96825|96921|96991|97112|97124|97209|97225|97271|98224|98227|98232|98256|98293|98335|98337|98489|98548|98572|98587|98588|98589|98592|98622|98676|98717|98751|98760|98761|98802|98999|99004|99006|99041|99055|99060|99061|99062|99063|99064|99066|99095|99096|99098|99099|99100|99306|99309|99310|99316|99323|99324|99325|99327|99330|99368|99398|99399|99401|99403|99418|99422|99426|99430|99469|99470|99471|99482|99651|99653|99656|99668|99669|99670|99673|99674|99675|99679|99680|99690|99693|99922|100027|100323|100359|100371|100373|100376|100382|100387|100394|100395|100410|100428|100448|100503|100504|100507|100508|100515|100516|100517|100542|100548|100557|100574|100579|100603|100641|100665|100667|100676|100683|100684|100699|100700|100705|100712|100744|100754|101088|101089|101171|101172|101173|101221|101224|101264|101278|101279|101280|101281|101282|101284|101285|101286|101339|101405|101406|101480|101557|101558|101559|101626|101628|101708|101876|101877|101890|101891|101892|102001|102002|102006|102016|102031|102032|102143|102146|102163|102183|102185|102206|102208|102214|102383|102386|102527|102755|103331|103338|103350|103366|103411|103420|103424|103446|103449|103470|103512|103524|103548|103742|103744|103761|103772|103773|103784|103810|103826|103878|104451|104456|104727|104930|104931|105030|105135|105163|105190|105208|105285|105296|105332|105333|105337|105343|105383|105493|105497|105560|105567|105571|105580|105582|105616|105683|105689|105694|105709|105795|106083|106101|106131|106198|106207|106214|106469|106471|107213|131074|131092|131163|131210|131241|131248|131381|131402|131411|131464|131465|131481|131503|131514|131517|131548|131560|131656|131671|131696|131716|131783|131790|131887|131899|132007|132092|132102|132118|132123|132140|132192|132193|132209|132218|132254|132255|132268|132271|132279|132290|132776|132789|132800|132812|132815|132819|132830|132834|132837|132865|132869|132887|132900|132928|133046|133096|133154|133157|133162|133208|133326|133383|133388|133391|133395|133398|133400|133499|133525|133527|133530|133538|133613|133649|133652|133903|133904|133905|133906|133907|133908|134059|134235|134277|134371|134380|134383|134385|134387|134388|134390|134480|134482|134484|134485|134486|134487|134488|134490|134491|134492|134493|134494|134497|134499|134500|134502|134506|134508|134509|134511|134513|134515|134517|134519|134520|134522|134566|134583|134584|134830|134833|134834|134836|134838|134841|134844|134928|135065|135084|135085|135086|135129|135130|135437|135439|135554|135702|135705|135709|135712|135720|135723|135724|135725|135726|135727|135728|135729|135730|135748|135838|136094|136095|136097|136099|136100|136101|136104|136107|136111|136129|136139|136140|136194|136364|136399|136433|136434|136438|136440|136441|136443|136447|136450|136453|136454|136461|136462|136463|136464|136467|136468|136469|136478|136484|136492|136505|136508|136527|136528|136529|137341|137343|137349|137354|137358|137362|137368|137369|137477|137495|137499|137709|137710|138125|138126|138129|138131|138138|138148|138204|138594|138613|138615|138617|138778|138839|139021|139252|139395|139402|139416|139449|139452|139476|139486|139525|139555|139565|139651|139655|139658|139769|139803|139819|139869|139937|139938|140026|140089|140101|140106|140107|140113|140134|140149|140180|140184|140186|140187|140196|140197|140228|140231|140232|140240|140250|140252|140257|140277|140286|140291|140293|140330|140340|140369|140370|140374|140377|140380|140395|140398|140400|140402|140432|140433|140505|140544|140546|140547|140548|140549|140551|140552|140556|140559|140705|140731|140776|140778|140784|140785|140833|140834|140835|140861|140871|140872|140876|140902|140904|140905|140906|141007|141008|141011|141014|141015|141017|141019|141020|141024|141028|141030|141033|141036|141040|141042|141044|141047|141058|141060|141061|141062|141073|141075|141076|141079|141080|141088|141200|141234|141259|141268|141271|141371|141378|141394|141413|141415|141416|141427|141429|141437|141440|141443|141484|141485|141487|141488|141494|141496|141499|141501|141509|141524|141527|141546|141581|141596|141600|141616|141618|141619|141620|141627|141663|141691|141710|141805|141909|141911|141913|141915|141922|141923|141953|141954|141964|141992|141998|141999|142000|142002|142003|142014|142015|142040|142041|142043|142044|142045|142046|142053|142056|142057|142058|142059|142061|142087|142118|142231|142289|142404|142450|142486|142520|142537|142540|142542|142549|142570|142584|142585|142588|142590|142641|142650|142651|142652|142698|142708|142736|142739|142753|142754|142757|142786|142855|142856|142923|143031|143042|143075|143079|143082|150475|150476|150480|150481|150483|150484|150498|150624|150627|150632|151068|151227|151284|151308|151455|151494|151526|151682|151781|151853|151854|151858|151859|152247|152261|152346|152347|152455|152484|153134|153441|153467|165488|165489|165563|165614|165850|167386|167399|167457|167576|167577|167583|167809|167815|167821|167822|167843|167852|167853|168530|168531|168532|168596|168598|168622|168636|169456|169457|169472|171032|171059|171073|172174|172380|172381|172417|172429|172443|172512|172529|172564|172565|172568|172571|172579|172581|172592|172671|172820|172908|172942|173008|173136|173163|173236|173258|173305|173328|173356|173378|173462|173463|173629|173726|173755|173810|173950|173970|173979|174017|174024|174035|174048|174300|174360|174528|174584|174615|174620|174684|174896|175067|175290|175291|175351|175437|175517|175559|175577|175581|175582|175833|175894|175904|175979|175984|176036|176058|176181|176235|176654|176984|177019|177167|177274|177282|177298|177299|177355|177356|177452|177456|177472|177478|177498|177522|177534|177535|177575|177632|177711|177794|177851|177971|178002|178059|178232|178448|178485|178536|178711|178748|179238|180193|180522|180571|180603|180606|180613|180636|180696|180778|180822|181048|181600|181655|181670|181971|182129|182136|182332|182669|182738|182764|182857|182874|183049|183106|183109|183859|183864|184006|184071|184074|184084|184334|184501|184518|184580|184699|184762|184771|184913|184915|185117|185195|185227|185426|186076|186280|186367|186384|186404|186440|186473|186475|186479|186551|186585|186861|188392|188507|188572|188620|188676|188842|189247|189249|189250|189251|189338|189503|189650|189870|189921|189931|189933|189962|190215|190228|190247|190271|190278|190494|190617|190628|190666|190667|190672|190711|190748|190898|190914|190925|190998|191088|191159|191224|191234|191367|191392|191393|191466|191481|191531|191604|191626|191683|191804|191864|191869|191940|191949|191960|192053|192064|192077|192078|192098|192116|192139|192231|192301|192310|192315|192517|192529|192531|192586|192612|192625|192629|192636|192691|192692|192701|192913|192938|192986|193084|193290|193367|193370|193379|193381|193438|193476|193529|193626|193669|193674|193768|193794|193824|194047|194048|194159|194165|194179|194241|194246|194352|194391|194453|194494|194545|194569|194621|194660|194679|194683|194708|194710|194718|194788|194790|194791|194840|194943|195240|195255|195306|195309|195314|195351|195444|195584|195625|195709|195767|195830|195841|195858|195872|195898|195938|196010|196041|196060|196118|196131|196160|196240|196284|196292|196299|196350|196386|196393|196786|196790|196791|196815|196816|196839|197075|197131|197235|197371|197542|197579|197615|197743|197803|197832|197871|198272|198279|198582|199012|199066|199106|199108|199242|199402|199409|199586|199603|199661|199943|199994|200104|200105|203031|203128|203159|203653|205144|205334|205377|205685|205727|205779|206935|206952|206963|206971|207114|207155|207158|207161|207163|207791|208058|208065|208516|208637|209253|209589|209630|209661|209672|209697|209698|209702|209705|209710|209759|209813|209827|210154|210404|210405|210412|210415|210447|210450|210458|210462|210471|210480|210490|210516|210517|210532|210582|210598|210605|210777|211025|211736|211841|212703|212932|212980|212982|213000|213020|213175|213317|213363|213454|213456|213459|213460|213461|213624|213652|213876|214615|214668|215087|215178|215191|215196|215206|215539|216045|221072|221074|221117|221131|221229|221370|221387|221431|221526|221556|221613|221615|221666|221672|221697|221756|221950|222200|222201|222206|222216|222217|222218|222226|222228|222230|222232|222240|222245|222255|222361|222402|222405|222407|222409|222412|222484|222491|222532|222633|222739|222744|222772|222778|222808|222809|222813|222814|222819|222820|222830|222831|222833|222847|224153|225399|226351|227197|227521|227549|227653|227843|228323|228733|228816|228910|228983|228985|228987|228989|228995|228999|229001|229002|229003|229005|229007|229056|229071|229170|229172|229202|229214|229224|229226|229274|230437|230654|230655|231071|231148|231251|231347|231492|231632|231643|231937|231956|232027|232597|232937|234298|234438|234921|235496|236181|236391|236923|237092|237112|237142|237173|237223|237290|237393|237410|237438|238113|238116|238117|238157|238163|238209|238377|238502|238510|238513|238516|238596|238609|239079|239085|239093|239105|239311|239317|239769|239770|239771|239981|240002|240172|240787|241063|241127|241227|241234|241236|241261|241283|241309|241339|241340|241394|241415|241419|241440|241462|241499|241530|241567|241648|241790|241889|241891|241907|241957|241979|242082|242897|242917|243268|243373|243375|243377|243379|243380|243381|243382|243505|243762|243849|243986|244201|244260|244290|244292|244311|244610|244691|244725|244836|245672|246930|246938|247081|247115|247123|247124|249266|249415|249416|249419|249424|249425|249430|249431|249432|249433|249435|249437|249439|249440|249446|249447|249449|249450|249451|249454|249455|249456|249457|249458|249459|249460|249462|249464|249465|249466|249467|249468|249469|249470|249471|249472|249491|249532|249723|249727|249728|249733|249734|249736|249737|249741|249813|249815|249816|249830|249856|249857|249858|249965|249966|250078|250117|250130|250132|250324|250325|250327|250329|250330|250493|250506|250805|250808|250873|250874|250878|250899|250964|251106|251245|251250|251253|251255|251257|251263|251264|251288|251365|251378|251380|251381|251383|251393|251394|251478|251479|251480|251488|251521|251523|251529|251539|251540|251544|251550|251642|251795|251796|251817|251832|251882|251883|251894|251907|251927|251940|251941|251943|252051|252057|252145|252379|252537|252538|252559|252564|252569|252571|252573|252648|252855|252868|252880|252929|252930|252934|252960|252979|252980|252982|252990|253356|253357|253359|253360|253363|253366|253612|253658|253700|253701|253706|253803|253853|253854|253876|253879|253881|253883|253896|254021|254143|254148|254150|254151|254206|254288|254290|254291|254293|254296|254303|254306|254397|254399|254402|254530|254531|254532|254543|254548|254551|254554|254558|254559|254566|254668|254669|254670|254671|254672|254673|254675|254682|254683|254684|254685|254686|254687|254688|254689|254691|254692|254693|254696|254697|254698|254699|254704|254705|254761|254765|254881|254885|254889|254893|254894|254896|254900|254901|254902|254913|254994|254996|254998|255000|255001|255002|255003|255004|255005|255006|255008|255009|255010|255011|255012|255013|255014|255015|255017|255018|255019|255024|255027|255028|255029|255030|255032|255034|255035|255121|255275|255344|255706|255936|255939|256081|256084|256135|256137|256139|256171|256186|256187|256188|256189|256192|256193|256194|256195|256197|256198|256255|256353|256354|256357|256464|256729|256745|256746|256769|256770|256790|256791|256792|256793|256794|256795|256797|256798|256799|256802|256803|256805|256806|256808|256810|256811|256812|256813|256816|256817|256819|256820|256821|256822|256823|256824|256825|256826|256842|256855|257197|257294|257296|257299|257332|257352|257361|257423|257694|257695|257807|257883|258026|258067|258083|258216|258257|258283|258397|258398|258731|258773|258883|258969|259161|259180|259935|260871|260878|261503|263974|264543|265157|265307|265354|265355|265578|265615|265939|265940|265961|266015|266128|266139|266817|267125|267316|267364|267390|267391|267804|267843|268045|268169|268201|268249|268250|268253|268275|268308|268412|268601|268767|268853|269089|269223|269227|269275|269656|270759|271102|271236|271724|271725|271861|271921|272005|272077|272080|272181|272182|272210|272381|272806|273142|273143|273305|273413|273804|273923|273981|273982|274292|274529|274681|274697|274700|275007|275215|275473|275733|275742|275750|275754|275809|275840|276675|276721|276731|276943|276971|276995|277002|277011|277024|277524|277546|277717|278320|278895|278904|278995|278997|279064|279072|279084|279127|279131|279135|279154|279156|279160|279189|279195|279229|279231|279244|279249|279275|279314|279357|279387|279391|279434|279443|279457|279469|279584|279589|279813|280201|280378|280437|280457|280465|280488|280497|280514|280517|280520|280606|280616|280681|280686|280996|281060|281097|281101|281416|281420|281438|281579|281708|281887|282208|282243|283402|283796|284457|284471|284722|284730|285499|285504|286246|286252|286256|286472|286484|287152|287923|288008|288345|288346|288366|290731|290748|290763|291314|291348|291687|291689|292053|292179|292243|292404|292449|292459|293044|293711|293717|293739|293753|293790|293792|293836|293838|294162|294210|294796|294883|294895|295109|295179|295188|295274|295348|295812|295832|295841|295860|295882|295896|296207|296316|296833|297599|297709|298146|298186|298323|298432|298729|298757|298773|298778|298789|298848|298855|298874|298898|298912|298954|298978|299107|300386|300389|301206|301214|301687|301812|301963|302183|302276|302288|302298|302439|302443|302467|303245|303386|303404|305149|305216|305379|306779|306788|306789|307168|307211|307590|308036|308039|308041|308994|309854|309922|309957|310121|310194|310570|311082|311334|311511|311749|311751|311978|311998|312001|312094|312111|312372|312397|314200|314467|314846|314896|314926|315175|315181|315242|315437|315438|315554|316922|317259|318116|318120|318176|318498|318630|318647|318666|318684|319525|319919|320125|320212|320825|320869|320926|320961|320976|320980|320981|321032|321421|321765|321776|321783|321857|321919|323240|323456|323481|325007|325017|325504|326106|326119|326223|326434|326770|327422|327427|328751|328765|328943|329145|329211|330025|330048|330056|330058|330069|330197|330408|331109|331121|331131|331166|331218|332316|332389|332443|332693|332731|332748|332882|332917|333010|333017|333019|333557|334051|334061|334602|334638|334664|334732|335154|335158|335175|335179|335184|335395|335402|335427|335703|336046|336543|337264|337290|337457|337496|337766|337795|337857|337872|337896|337908|338047|338383|338477|338499|338653|338968|339290|339806|339879|339892|339893|339902|339942|340721|340728|341260|341352|341616|341618|341620|341629|341634|341646|341657|342198|342248|342487|342497|342860|342889|342918|342924|342928|343080|343081|343083|343092|343097|343117|343605|344001|344077|344486|344495|344498|345855|346121|347886|347980|347991|348073|348256|348276|349220|349441|349442|349460|349469|349530|350549|350937|351035|351578|352799|353067|357615|357920|358843|359211|359259|359294|359685|361335|361490|361523|361552|363681|363986|364522|364707|364747|364857|365000|365104|365461|365709|365832|365926|366290|366524|366843|367075|367083|367117|367118|367142|367449|367467|367539|367593|367601|367829|367831|367869|367886|367896|367909|367963|368056|368060|368174|368175|368244|368286|368457|368795|368903|368963|368999|369141|369303|369696|370003|370964|370965|371120|371190|371369|371439|371603|371747|371896|371947|371984|372115|372141|372509|372651|372706|372718|372727|372744|372777|372840|372901|372916|372982|373020|373073|373095|373173|373175|373201|373209|373236|373407|373498|373596|373640|373744|374003|374080|374092|374541|374570|374601|374619|374673|374780|375609|376078|376307|376729|376927|376982|377206|377227|377408|377409|377592|377706|377748|377819|377844|377889|378246|378450|378487|378490|378632|379113|379126|379146|379209|389359|389399|389406|389780|390138|390208|390471|390931|391487|391678|391749|391987|392140|392157|392161|392217|392462|392810|393557|393769|393915|394074|394224|394832|395421|395813|396065|396354|396932|397198|398638|398708|398752|398822|399950|400547|400675|401699|402008|402259|402981|403557|403755|404247|404439|405361|406105|406435|407122|407278|408078|408513|409064|409101|409128|409737|409998|410427|411571|413983|414077|414153|414187|414296|414317|419790|419835|420766|424224|425480|425722|426246|428297|428300|428315|428744|432632|432642|432671|432692|432694|432700|432704|432739|432744|432842|432843|432845|432848|432863|432864|432866|432867|432873|432986|432987|432989|433003|433006|433014|433016|433017|433028|433029|433030|433072|433078|433079|433081|433082|433083|433084|433095|433116|433117|433120|433121|433149|433150|433151|433152|433153|433154|433230|433231|433295|433296|433297|433299|433335|433337|433389|433391|433461|433474|433476|433488|433490|433587|433589|433604|433605|433606|433607|433608|433610|433617|433624|433625|433634|433644|433648|433659|433661|433684|433701|433709|433712|433734|433765|433787|433788|433789|433790|433791|433792|433793|433794|433795|433796|433797|433798|433799|433800|433801|433802|433803|433804|433805|433806|433807|433808|433809|433810|433811|433812|433813|433814|433824|433825|433826|433829|433830|433831|433879|433880|433885|433888|433906|433935|433942|433958|433969|433989|434003|434012|434013|434014|434015|434016|434018|434019|434020|434021|434022|434023|434024|434033|434039|434042|434509|434998|438769|438802|438860|438912|439114|439171|439238|439314|439325|440064|440475|440480|440692|440733|440759|441308|442040|442096|442108|442114|442128|442132|442138|442147|442159|442168|442171|442177|442180|442181|442184|442551|443487|443583|443595|443981|444782|444867|445585|446049|446161|446169|447365|447475|447477|447591|447605|447900|448763|449189|450612|450704|451455|451583|451888|452237|452248|453405|453434|453537|453963|454732|455096|456324|457073|457303|457435|458502|458929|458988|459730|459738|460070|460134|460420|460556|461351|461598|461713|462419|463119|463171|463400|463487|463561|463884|463893|463932|464569|465864|465948|466309|466471|466475|466548|466797|466806|466809|466813|466814|467096|467804|468188|468293|468424|468426|468451|468867|468989|469041|469226|469810|471070|471078|472011|473119|475535|476549|480438|480439|480440|480446|480704|482122|482767|482789|483406|484012|484209|484299|485114|485574|485756|486981|487049|487057|487058|487108|487199|487298|487306|487524|487544|487860|487969|488290|489881|489919|489943|490014|490207|490867|491045|491370|491519|492033|495363|496649|496893|498073|498287|498552|498584|498764|498850|498877|498891|499606|500102|500389|500478|500505|500550|500557|500635|500814|500818|500838|500853|500889|501125|501145|501172|502557|503739|503875|503879|504039|504072|504303|504462|504890|504900|504908|504909|505096|505270|505389|505595|506052|506898|506959|508046|508164|508451|508531|509637|512812|514868|515439|516743|518076|518524|518816|519115|519681|520076|522085|523022|523052|525056|525214|525410|527287|528322|528386|528508|529265|529796|529878|529967|530339|530588|531251|531420|531649|532003|532575|532836|532997|534028|534048|534052|534088|536567|536981|537232|537882|537897|538329|539277|540563|545120|550002|550004|550012|552459|553103|553135|559406|561235|561308|564036|566364|566631|566999|572143|573125|576495|576503|576509|576775|576776|577154|577741|577992|579007|579454|581815|584946|587443|587799|587807|588347|588614|589593|590054|590466|609359|609360|609364|609370|609378|609387|609390|609398|609407|609409|609419|609533|609537|609541|609581|609628|609740|609758|609891|609943|609947|609949|610033|610035|610036|610038|610041|610042|610046|610048|610049|610050|610052|610058|610083|610098|610157|611325|612660|614421|614504|615673|617266|618173|619956|621720|623460|625069|628095|628693|629308|630874|631275|632451|634364|637395|638423|640401|640783|642729|644724|647187|647412|651416|654654|654691|654935|655347|655590|655813|655816|656143|656449|656573|657271|658471|659955|663075|668364|670438|679452|682758|683744|683845|684706|684708|684880|685134|687751|687866|687964|688970|689197|689411|689469|689610|689918|690179|690695|691601|691989|693446|694219|694342|694343|694845|695162|695508|695523|695842|696193|696468|696471|698555|698563|698565|698586|699702|701217|702530|703883|703884|704427|704810|705320|705399|705521|706197|706201|706763|706824|707091|709003|710049|710051|710560|712196|713315|715179|715181|715184|715186|716230|716870|718659|718661|718680|720605|721574|722200|722486|722655|723540|723801|726881|726886|726894|726895|726902|726909|726912|726915|727208|727226|728464|729232|732124|732128|732147|732156|734517|737379|739999|740445|740448|740464|740470|740471|740475|740483|740809|741733|743675|744882|744884|745435|746101|746135|746148|746164|747029|755335|755389|755637|755891|758379|762470|764798|770894|771167|771381|772495|777198|777891|778503|779459|779850|779851|779861|780068|781531|789585|789586|789692|789693|789854|791910|793060|794566|795647|796826|797766|799024|799102|799141|799144|799147|799149|799152|799176|799178|799180|799182|799183|799184|799186|799195|799197|799242|799256|799258|799274|799278|799279|799282|799283|799287|799292|799293|799299|799318|799329|799341|799353|799354|799357|799365|799372|799408|799410|799411|799421|799447|799455|799458|799459|799460|799464|799465|799466|799467|799468|799469|799475|799482|799507|799582|799601|799618|799651|799668|799677|799735|799751|799777|799830|799831|799837|799840|799846|799847|799852|799858|799859|799964|799966|799971|799972|799973|799974|799976|799977|799978|799979|799985|799988|799991|799994|799997|800007|800071|800077|800083|800100|800101|800102|800103|800104|800107|800109|800110|800112|800114|800116|800117|800118|800122|800123|800158|800159|800191|800204|800205|800206|800207|800210|806164|808710|808716|811611|811647|811853|813838|822050|823365|824358|825135|828696|832402|833961|836496|839283|842437|843307|843784|843935|843945|843948|848667|848734|848947|849843|849934|849982|855962|857163|857528|859330|861240|862405|862417|862499|863582|863589|863600|863681|864994|865024|868514|868516|869894|872245|872919|872939|880706|887644|889528|890451|890675|891892|898385|898389|898538|900896|901833|907625|909292|912857|912963|912978|914361|914800|916898|917195|917410|917460|917493|920370|922175|924613|925928|926636|930154|932132|933310|933608|935140|935219|935383|936262|937423|937533|940206|944120|945348|948945|953639|956144|958474|962248|965475|965851|965855|970998|971057|972766|975805|975894|981133|981134|981145|981211|981212|981213|981214|981215|981218|981230|981231|981232|981233|981234|981235|981236|981237|981238|981239|981240|981241|981242|981243|981244|981245|981246|981247|981248|981249|981250|981251|981252|981253|981254|981255|981256|981257|981258|981259|981260|981261|981262|981263|981264|981265|981266|981267|981268|981269|981270|981271|981272|981273|981274|981275|981276|981277|981278|981279|981280|981281|981282|981283|981284|981285|981286|981287|981288|981289|981290|981291|981292|981293|981294|981295|981296|981297|981298|981299|981300|981301|981302|981303|981304|981305|981306|981307|981308|981309|981310|981311|981314|981315|981316|981317|981318|981319|981328|981329|981330|981331|981332|981333|981334|981335|981336|981337|981338|981339|981340|981341|981342|981343|981344|981345|981346|981347|981349|981350|981351|981352|981353|981354|981355|981356|981357|981358|981359|981360|981361|981362|981363|981364|981365|981366|981367|981369|981370|981371|981372|981373|981374|981375|981376|981377|981382|981383|981384|981385|981386|981387|981388|981389|981390|981391|981392|981393|981394|981395|981396|981397|981398|981399|981400|981401|981402|981403|981404|981405|981406|981407|981408|981409|981410|981411|981412|981413|981414|981415|981416|981417|981418|981419|981420|981421|981422|981423|981424|981425|981426|981429|981430|981431|981432|981434|981435|981436|981437|981438|981439|981440|981442|981443|981444|981445|981446|981448|981449|981450|981451|981452|981453|981456|981457|981458|981459|981460|981461|981462|981463|981464|981465|981466|981467|981468|981469|981470|981471|981472|981473|981474|981475|981476|981477|981478|981479|981480|981481|981482|981483|981484|981485|981486|981487|981488|981489|981490|981491|981492|981493|981494|981495|981496|981497|981498|981499|981500|981501|981502|981503|981504|981505|981506|981507|981508|981509|981510|981511|981512|981515|981517|981518|981519|981525|981526|981527|981528|981529|981530|981531|981532|981533|981534|981535|981536|981537|981538|981539|981540|981541|981542|981543|981544|981545|981546|981547|981549|981550|981551|981553|981554|981555|981556|981557|981558|981559|981560|981561|981562|981563|981564|981565|981567|981568|981569|981570|981571|981572|981573|981574|981575|981576|981577|981578|981579|981580|981581|981582|981583|981584|981585|981586|981587|981588|981589|981590|981591|981594|981595|981596|981597|981598|981599|981602|981603|981604|981605|981606|981607|981608|981609|981610|981611|981612|981613|981614|981616|981618|981619|981624|981625|981649|981650|981651|981652|981668|981669|981670|981671|981672|981673|981674|981675|981676|981677|981678|981679|981682|981683|981684|981685|981686|981687|981688|981689|981690|981691|981692|981696|981698|981699|981700|981701|981702|981703|981704|981705|981706|981707|981708|981709|981710|981711|981712|981713|981714|981715|981716|981717|981718|981719|981730|981731|981732|981733|981734|981735|981736|981737|981738|981739|981740|981742|981744|981745|981746|981747|981748|981749|981750|981751|981752|981753|981756|981757|981758|981759|981761|981762|981763|981764|981765|981766|981767|981768|981769|981770|981771|981772|981773|981774|981775|981787|981788|981789|981790|981792|981793|981794|981795|981796|981797|981798|981799|981800|981801|981822|981823|981824|981825|981827|981828|981829|981831|981832|981833|981834|981837|981845|981846|981847|981848|981849|981850|981851|981852|981853|981854|981855|981856|981857|981858|981859|981860|981861|981862|981863|981864|981865|981866|981867|981868|981869|981870|981871|981872|981873|981874|981875|981876|981877|981878|981879|981880|981881|981882|981883|981885|981886|981887|981888|981889|981890|981891|981892|981902|981903|981904|981911|981912|981913|981914|981915|981916|981917|981918|981919|981920|981921|981922|981923|981924|981925|981926|981928|981933|981934|981937|981938|981939|981940|981941|981942|981943|981944|981945|981946|981947|981948|981949|981950|981951|981952|981953|982003|982004|982006|982007|982008|982009|982010|982011|982012|982013|982014|982015|982016|982017|982018|982019|982020|982021|982022|982023|982024|982025|982026|982027|982028|982029|982030|982031|982032|982033|982034|982035|982036|982037|982038|982039|982040|982041|982042|982043|982044|982045|982046|982047|982048|982049|982050|982051|982052|982053|982054|982055|982056|982057|982058|982059|982060|982061|982062|982063|982064|982065|982066|982067|982068|982069|982070|982071|982072|982073|982074|982075|982076|982077|982078|982079|982080|982081|982082|982083|982084|982085|982086|982087|982088|982089|982090|982091|982092|982093|982094|982095|982096|982097|982098|982099|982100|982101|982102|982103|982104|982105|982106|982107|982108|982109|982110|982111|982112|982113|982114|982115|982116|982117|982118|982119|982120|982121|982122|982123|982131|982133|982134|982135|982139|982140|982141|982142|982143|982144|982145|982146|982147|982148|982149|982150|982151|982152|982153|982154|982155|982156|982157|982158|982159|982160|982161|982162|982163|982164|982165|982166|982167|982168|982169|982170|982171|982172|982175|982180|982181|982182|982186|982187|982188|982189|982192|982193|982194|982195|982196|982203|982204|982205|982206|982207|982208|982209|982210|982211|982212|982213|982214|982215|982216|982217|982218|982219|982220|982223|982224|982225|982226|982227|982229|982230|982231|982232|982233|982244|982245|982246|982247|982250|982251|982252|982253|982254|982255|982256|982257|982268|982269|982273|982274|982275|982276|982277|982278|982279|982280|982281|982282|982283|982284|982285|982286|982287|982288|982289|982290|982291|982292|982293|982294|982295|982296|982297|982298|982299|982300|982301|982335|982336|982337|982338|982339|982340|982341|982342|982343|982344|982345|982346|982347|982348", + "upstreamId": "15159|15283|15328|15332|15349|15843|16262|16329|16549|16550|16552|16659|16740|17238|17257|17395|17521|17524|17577|17578|17579|17581|17582|17584|17586|17587|18066|18077|18087|18159|18250|18401|18409|18559|18560|19141|19329|19409|19410|19413|19566|19730|19731|19732|19770|19772|19881|19966|20026|20027|20042|20138|20142|20188|20332|20333|20341|20381|20550|20630|20633|21091|21406|21934|21939|21979|21987|22138|22152|22154|22155|22159|22161|22164|22165|22168|22169|22175|22176|22182|22194|22204|22205|22214|22224|22229|22235|22238|22267|22268|22270|22276|22500|22819|22852|22858|22918|22923|22924|22927|22952|23317|23318|23332|23441|23470|23582|23777|23815|23835|23845|23849|23970|24258|24263|24264|24266|24284|24332|24364|24368|24388|24419|24431|24432|24941|25404|25405|25407|25428|25439|25450|25611|25618|25627|25629|25646|25666|25686|25777|26071|26299|26306|26307|26308|26342|26351|26352|26420|26863|26868|27271|27313|27320|27327|27390|27450|27460|27628|27641|27746|27818|27830|27885|27895|27896|27897|27898|28139|28366|28384|28436|28437|28447|28448|28456|28460|28465|28473|28491|28495|28505|28516|28518|28548|28552|28714|28799|28944|28955|28970|28972|28975|28984|28996|29062|29190|29213|29987|30129|30138|30145|30151|30165|30190|30191|30195|30200|30207|30209|30210|30215|30241|30252|30273|30280|30283|30284|30286|30317|30319|30325|30331|30339|30341|30359|30361|30362|30368|30372|30440|30441|30442|30443|30452|30453|30454|30456|30457|30458|30461|30462|30473|30475|30476|30477|30486|30487|30488|30489|30490|30493|30496|30497|30498|30499|30500|30503|30508|30510|30522|30553|30572|30579|30604|30638|30652|30663|30668|30669|30674|30675|30676|30678|30686|30689|30691|30692|30701|30729|30731|30733|30738|30746|30772|30784|30785|30804|30833|30834|30842|30861|30873|30924|31275|31366|31370|31371|31376|31378|31381|31393|31398|31720|31897|31952|32039|32043|32044|32046|32048|32049|32050|32053|32055|32062|32128|32244|32352|32369|32386|32418|32700|32701|32709|32715|32716|32720|32791|33097|33858|33994|34016|34043|34156|34162|34164|34196|34239|34676|34678|34680|34689|34691|34695|34696|36140|36243|36261|36273|36275|36276|36287|36305|38447|38469|38851|39074|39099|39315|39316|40369|40451|40462|40469|40479|44292|44297|44298|44300|44308|44318|44351|44355|44431|44433|44489|44490|44493|44494|44496|44499|44503|44505|44506|44508|44517|44524|44526|44531|44532|44533|44536|44546|44557|44558|44579|44586|44590|44594|44596|44598|44605|44624|44627|44628|44662|44663|44673|44674|44680|44682|44683|44684|44685|44690|44695|44705|44729|44735|44742|44748|44767|44768|44796|44797|44802|44804|44943|44944|44946|44949|44951|44955|44956|44967|44972|44973|44974|44982|44984|44986|44991|44993|44995|44996|44998|45004|45041|45042|45087|45088|45089|45092|45100|45101|45108|45110|45111|45112|45141|45162|45163|45164|45165|45166|45168|45169|45170|45171|45172|45173|45174|45175|45177|45178|45181|45204|45210|45216|45219|45229|45233|45235|45239|45243|45245|45246|45249|45259|45261|45269|45272|45283|45287|45293|45346|45347|45348|45349|45350|45351|45352|45353|45354|45357|45358|45369|45376|45384|45389|45391|45392|45393|45396|45398|45399|45407|45408|45410|45411|45419|45420|45421|45422|45424|45426|45428|45431|45433|45439|45441|45442|45518|45528|45532|45534|45539|45540|45545|45553|45724|45982|46008|46010|46021|46025|46035|46063|46083|46117|46167|46234|46270|46290|46291|46297|46314|46325|46373|46386|46415|46442|46448|46460|46466|46469|46471|46492|46499|46515|46529|46546|46554|46571|46584|46616|46619|46621|46642|46708|46724|46748|46776|46786|46798|46804|46816|46822|47058|47216|47272|47340|47455|48163|48266|48807|48830|48834|48861|48889|48891|48901|48902|48916|48976|49081|49143|49162|49167|49183|49208|49217|49219|49224|49230|49953|49955|49966|49979|49981|49984|49988|49995|49997|50000|50001|50003|50004|50006|50008|50009|50011|50019|50050|50062|50063|50066|50068|50100|50102|50112|50123|50139|50140|50141|50142|50143|50144|50145|50146|50147|50148|50152|50155|50161|50164|50165|50170|50175|50177|50184|50187|50194|50196|50198|50199|50202|50205|50206|50208|50215|50221|50242|50244|50247|50249|50250|50251|50253|50254|50256|50257|50260|50265|50266|50267|50269|50274|50291|50293|50296|51095|51420|51457|51465|51467|51489|51491|51500|51508|51551|51582|51583|51603|51628|51641|51655|51656|51659|51676|51706|51796|51815|51822|51823|51846|51857|51881|51922|51928|51930|51956|51960|51967|51987|52003|52034|52081|52122|52147|52190|52197|52202|52262|52273|52286|52318|52340|52428|52444|52463|52493|52494|52504|52545|52625|52694|52695|52713|52716|52745|52746|52748|52760|52764|52821|52832|52876|52881|52884|52886|52896|52902|52909|52911|52914|52915|52922|52938|52939|52951|52955|52990|52994|53001|53002|53041|53042|53049|53072|53073|53084|53090|53205|53227|53229|53233|53236|53241|53244|53280|53282|53318|53399|53400|53410|53419|53422|53425|53432|53434|53436|53462|53473|53474|53479|53489|53498|53620|53622|53627|53638|53639|53642|53647|53648|53650|53655|53659|53660|53661|53673|53682|53686|53693|53704|53711|53718|53737|53738|53740|53753|53790|53792|53808|53817|53818|53825|53828|53829|53859|53862|53863|53873|53874|53882|53884|53904|53906|53921|53922|53927|53936|53937|53943|53947|53949|53950|54017|54025|54027|54040|54045|54048|54060|54064|54073|54075|54082|54084|54092|54096|54103|54105|54108|54110|54118|54130|54135|54261|54285|54307|54313|54361|54368|54370|54376|54474|54501|54520|54557|54558|54564|54566|54572|54576|54579|54589|54592|54598|54600|54601|54606|54607|54609|54619|54622|54623|54630|54678|54692|54704|54713|54714|54716|54717|54727|54743|54747|54749|54753|54765|54768|54785|54804|54842|54848|54849|54852|54874|54892|54895|54995|54996|54997|55002|55007|55008|55012|55022|55031|55047|55062|55071|55078|55104|55110|55122|55184|55185|55196|55237|55253|55303|55306|55318|55319|55353|55383|55416|55431|55436|55463|55464|55479|55490|55499|55506|55538|55554|55561|55565|55567|55574|55601|55605|55612|55635|55658|55663|55670|55701|55722|55733|55735|55743|55746|55750|55752|55756|55757|55760|55762|55771|55777|55779|55786|55790|55798|55800|55805|55806|55811|55818|55820|55823|55829|55831|55832|55835|55837|55844|55846|55850|55852|55858|55867|55869|55870|55873|55876|55878|55881|55886|55890|55906|55907|55908|55923|55924|55935|55940|55944|55957|55982|55984|55987|55991|55993|55996|55997|55998|56006|56013|56016|56022|56031|56038|56039|56041|56049|56067|56069|56071|56076|56082|56087|56095|56097|56100|56107|56108|56116|56133|56145|56146|56147|56148|56152|56153|56155|56172|56173|56174|56178|56179|56180|56183|56189|56193|56201|56202|56205|56209|56214|56222|56233|56235|56239|56251|56264|56265|56288|56289|56292|56293|56305|56315|56337|56342|56345|56353|56370|56378|56390|56391|56393|56398|56401|56425|56430|56440|56454|56455|56459|56481|56486|56497|56498|56503|56540|56545|56555|56558|56564|56570|56573|56575|56577|56579|56580|56582|56584|56587|56597|56600|56611|56616|56621|56631|56641|56644|56648|56658|56661|56663|56665|56671|56674|56675|56678|56680|56687|56693|56696|56710|56714|56719|56722|56723|56727|56738|56742|56752|56760|56762|56763|56764|56765|56767|56768|56772|56785|56787|56788|56790|56796|56797|56800|56802|56803|56805|56806|56807|56816|56826|56834|56838|56841|56855|56863|56865|56866|56870|56874|56875|56876|56879|56881|56887|56905|56913|56920|56927|56928|56929|56933|56937|56959|56978|56980|56987|56990|57005|57010|57011|57014|57061|57070|57079|57145|57146|57160|57189|57211|57220|57226|57281|57286|57329|57332|57353|57397|57437|57443|57444|57450|57451|57460|57470|57479|57506|57534|57542|57546|57549|57565|57581|57585|57589|57601|57606|57607|57613|57615|57617|57621|57625|57630|57646|57648|57649|57662|57669|57672|57675|57677|57680|57682|57690|57696|57709|57717|57724|57727|57730|57734|57739|57769|57782|57834|57850|57866|57930|57983|58168|58170|58181|58303|58312|58324|58451|58464|58544|58593|58629|58666|58695|58710|58778|58788|58806|58847|58901|58980|59009|59057|59119|59171|59189|59278|59301|59351|65711|65715|65721|65728|65784|65836|65837|65860|65861|65865|65926|65994|66011|66017|66034|66047|66049|66103|66116|66118|66147|66149|66256|66257|66260|66284|66312|66345|66346|66397|66467|66481|66490|66533|66546|66564|66580|66732|66770|66855|66867|66884|66915|66917|66985|67087|67140|67190|67228|67262|67274|67278|67350|67360|67365|67448|67458|67556|67564|67565|67566|67823|67825|67828|67841|67860|67887|67890|67897|68000|68030|68035|68072|68133|68155|68173|68197|68209|68229|68243|68270|68299|68306|68334|68352|68356|68387|68388|68409|68430|68446|68457|68466|68469|68498|68561|68590|68608|68629|68650|68660|68725|68749|68762|68810|68813|68983|69043|69063|69091|69102|69109|69128|69172|69234|69331|69410|69447|69507|69597|69637|69639|69654|69800|69824|69877|69896|69902|69909|69912|69926|69939|69968|70074|70095|70252|70256|70302|70309|70394|70438|70462|70475|70476|70962|76101|76408|76467|76468|76573|76620|77593|77671|77683|77916|77922|78188|78323|78493|78509|78511|78607|78664|78670|78729|78895|78916|79251|81524|82778|89851|93633|93635|94027|94678|94960|95196|95829|95960|96615|96752|96753|96779|96781|96799|96802|96812|96825|96921|96991|97112|97124|97209|97225|97271|98224|98227|98232|98256|98293|98335|98337|98489|98548|98572|98587|98588|98589|98592|98622|98676|98717|98751|98760|98761|98802|98999|99004|99006|99041|99055|99060|99061|99062|99063|99064|99066|99095|99096|99098|99099|99100|99306|99309|99310|99316|99323|99324|99325|99327|99330|99368|99398|99399|99401|99403|99418|99422|99426|99430|99469|99470|99471|99482|99651|99653|99656|99668|99669|99670|99673|99674|99675|99679|99680|99690|99693|99922|100027|100323|100359|100371|100373|100376|100382|100387|100394|100395|100410|100428|100448|100503|100504|100507|100508|100515|100516|100517|100542|100548|100557|100574|100579|100603|100641|100665|100667|100676|100683|100684|100699|100700|100705|100712|100744|100754|101088|101089|101171|101172|101173|101221|101224|101264|101278|101279|101280|101281|101282|101284|101285|101286|101339|101405|101406|101480|101557|101558|101559|101626|101628|101708|101876|101877|101890|101891|101892|102001|102002|102006|102016|102031|102032|102143|102146|102163|102183|102185|102206|102208|102214|102383|102386|102527|102755|103331|103338|103350|103366|103411|103420|103424|103446|103449|103470|103512|103524|103548|103742|103744|103761|103772|103773|103784|103810|103826|103878|104451|104456|104727|104930|104931|105030|105135|105163|105190|105208|105285|105296|105332|105333|105337|105343|105383|105493|105497|105560|105567|105571|105580|105582|105616|105683|105689|105694|105709|105795|106083|106101|106131|106198|106207|106214|106469|106471|107213|131074|131092|131163|131210|131241|131248|131381|131402|131411|131464|131465|131481|131503|131514|131517|131548|131560|131656|131671|131696|131716|131783|131790|131887|131899|132007|132092|132102|132118|132123|132140|132192|132193|132209|132218|132254|132255|132268|132271|132279|132290|132776|132789|132800|132812|132815|132819|132830|132834|132837|132865|132869|132887|132900|132928|133046|133096|133154|133157|133162|133208|133326|133383|133388|133391|133395|133398|133400|133499|133525|133527|133530|133538|133613|133649|133652|133903|133904|133905|133906|133907|133908|134059|134235|134277|134371|134380|134383|134385|134387|134388|134390|134480|134482|134484|134485|134486|134487|134488|134490|134491|134492|134493|134494|134497|134499|134500|134502|134506|134508|134509|134511|134513|134515|134517|134519|134520|134522|134566|134583|134584|134830|134833|134834|134836|134838|134841|134844|134928|135065|135084|135085|135086|135129|135130|135437|135439|135554|135702|135705|135709|135712|135720|135723|135724|135725|135726|135727|135728|135729|135730|135748|135838|136094|136095|136097|136099|136100|136101|136104|136107|136111|136129|136139|136140|136194|136364|136399|136433|136434|136438|136440|136441|136443|136447|136450|136453|136454|136461|136462|136463|136464|136467|136468|136469|136478|136484|136492|136505|136508|136527|136528|136529|137341|137343|137349|137354|137358|137362|137368|137369|137477|137495|137499|137709|137710|138125|138126|138129|138131|138138|138148|138204|138594|138613|138615|138617|138778|138839|139021|139252|139395|139402|139416|139449|139452|139476|139486|139525|139555|139565|139651|139655|139658|139769|139803|139819|139869|139937|139938|140026|140089|140101|140106|140107|140113|140134|140149|140180|140184|140186|140187|140196|140197|140228|140231|140232|140240|140250|140252|140257|140277|140286|140291|140293|140330|140340|140369|140370|140374|140377|140380|140395|140398|140400|140402|140432|140433|140505|140544|140546|140547|140548|140549|140551|140552|140556|140559|140705|140731|140776|140778|140784|140785|140833|140834|140835|140861|140871|140872|140876|140902|140904|140905|140906|141007|141008|141011|141014|141015|141017|141019|141020|141024|141028|141030|141033|141036|141040|141042|141044|141047|141058|141060|141061|141062|141073|141075|141076|141079|141080|141088|141200|141234|141259|141268|141271|141371|141378|141394|141413|141415|141416|141427|141429|141437|141440|141443|141484|141485|141487|141488|141494|141496|141499|141501|141509|141524|141527|141546|141581|141596|141600|141616|141618|141619|141620|141627|141663|141691|141710|141805|141909|141911|141913|141915|141922|141923|141953|141954|141964|141992|141998|141999|142000|142002|142003|142014|142015|142040|142041|142043|142044|142045|142046|142053|142056|142057|142058|142059|142061|142087|142118|142231|142289|142404|142450|142486|142520|142537|142540|142542|142549|142570|142584|142585|142588|142590|142641|142650|142651|142652|142698|142708|142736|142739|142753|142754|142757|142786|142855|142856|142923|143031|143042|143075|143079|143082|150475|150476|150480|150481|150483|150484|150498|150624|150627|150632|151068|151227|151284|151308|151455|151494|151526|151682|151781|151853|151854|151858|151859|152247|152261|152346|152347|152455|152484|153134|153441|153467|165488|165489|165563|165614|165850|167386|167399|167457|167576|167577|167583|167809|167815|167821|167822|167843|167852|167853|168530|168531|168532|168596|168598|168622|168636|169456|169457|169472|171032|171059|171073|172174|172380|172381|172417|172429|172443|172512|172529|172564|172565|172568|172571|172579|172581|172592|172671|172820|172908|172942|173008|173136|173163|173236|173258|173305|173328|173356|173378|173462|173463|173629|173726|173755|173810|173950|173970|173979|174017|174024|174035|174048|174300|174360|174528|174584|174615|174620|174684|174896|175067|175290|175291|175351|175437|175517|175559|175577|175581|175582|175833|175894|175904|175979|175984|176036|176058|176181|176235|176654|176984|177019|177167|177274|177282|177298|177299|177355|177356|177452|177456|177472|177478|177498|177522|177534|177535|177575|177632|177711|177794|177851|177971|178002|178059|178232|178448|178485|178536|178711|178748|179238|180193|180522|180571|180603|180606|180613|180636|180696|180778|180822|181048|181600|181655|181670|181971|182129|182136|182332|182669|182738|182764|182857|182874|183049|183106|183109|183859|183864|184006|184071|184074|184084|184334|184501|184518|184580|184699|184762|184771|184913|184915|185117|185195|185227|185426|186076|186280|186367|186384|186404|186440|186473|186475|186479|186551|186585|186861|188392|188507|188572|188620|188676|188842|189247|189249|189250|189251|189338|189503|189650|189870|189921|189931|189933|189962|190215|190228|190247|190271|190278|190494|190617|190628|190666|190667|190672|190711|190748|190898|190914|190925|190998|191088|191159|191224|191234|191367|191392|191393|191466|191481|191531|191604|191626|191683|191804|191864|191869|191940|191949|191960|192053|192064|192077|192078|192098|192116|192139|192231|192301|192310|192315|192517|192529|192531|192586|192612|192625|192629|192636|192691|192692|192701|192913|192938|192986|193084|193290|193367|193370|193379|193381|193438|193476|193529|193626|193669|193674|193768|193794|193824|194047|194048|194159|194165|194179|194241|194246|194352|194391|194453|194494|194545|194569|194621|194660|194679|194683|194708|194710|194718|194788|194790|194791|194840|194943|195240|195255|195306|195309|195314|195351|195444|195584|195625|195709|195767|195830|195841|195858|195872|195898|195938|196010|196041|196060|196118|196131|196160|196240|196284|196292|196299|196350|196386|196393|196786|196790|196791|196815|196816|196839|197075|197131|197235|197371|197542|197579|197615|197743|197803|197832|197871|198272|198279|198582|199012|199066|199106|199108|199242|199402|199409|199586|199603|199661|199943|199994|200104|200105|203031|203128|203159|203653|205144|205334|205377|205685|205727|205779|206935|206952|206963|206971|207114|207155|207158|207161|207163|207791|208058|208065|208516|208637|209253|209589|209630|209661|209672|209697|209698|209702|209705|209710|209759|209813|209827|210154|210404|210405|210412|210415|210447|210450|210458|210462|210471|210480|210490|210516|210517|210532|210582|210598|210605|210777|211025|211736|211841|212703|212932|212980|212982|213000|213020|213175|213317|213363|213454|213456|213459|213460|213461|213624|213652|213876|214615|214668|215087|215178|215191|215196|215206|215539|216045|221072|221074|221117|221131|221229|221370|221387|221431|221526|221556|221613|221615|221666|221672|221697|221756|221950|222200|222201|222206|222216|222217|222218|222226|222228|222230|222232|222240|222245|222255|222361|222402|222405|222407|222409|222412|222484|222491|222532|222633|222739|222744|222772|222778|222808|222809|222813|222814|222819|222820|222830|222831|222833|222847|224153|225399|226351|227197|227521|227549|227653|227843|228323|228733|228816|228910|228983|228985|228987|228989|228995|228999|229001|229002|229003|229005|229007|229056|229071|229170|229172|229202|229214|229224|229226|229274|230437|230654|230655|231071|231148|231251|231347|231492|231632|231643|231937|231956|232027|232597|232937|234298|234438|234921|235496|236181|236391|236923|237092|237112|237142|237173|237223|237290|237393|237410|237438|238113|238116|238117|238157|238163|238209|238377|238502|238510|238513|238516|238596|238609|239079|239085|239093|239105|239311|239317|239769|239770|239771|239981|240002|240172|240787|241063|241127|241227|241234|241236|241261|241283|241309|241339|241340|241394|241415|241419|241440|241462|241499|241530|241567|241648|241790|241889|241891|241907|241957|241979|242082|242897|242917|243268|243373|243375|243377|243379|243380|243381|243382|243505|243762|243849|243986|244201|244260|244290|244292|244311|244610|244691|244725|244836|245672|246930|246938|247081|247115|247123|247124|249266|249415|249416|249419|249424|249425|249430|249431|249432|249433|249435|249437|249439|249440|249446|249447|249449|249450|249451|249454|249455|249456|249457|249458|249459|249460|249462|249464|249465|249466|249467|249468|249469|249470|249471|249472|249491|249532|249723|249727|249728|249733|249734|249736|249737|249741|249813|249815|249816|249830|249856|249857|249858|249965|249966|250078|250117|250130|250132|250324|250325|250327|250329|250330|250493|250506|250805|250808|250873|250874|250878|250899|250964|251106|251245|251250|251253|251255|251257|251263|251264|251288|251365|251378|251380|251381|251383|251393|251394|251478|251479|251480|251488|251521|251523|251529|251539|251540|251544|251550|251642|251795|251796|251817|251832|251882|251883|251894|251907|251927|251940|251941|251943|252051|252057|252145|252379|252537|252538|252559|252564|252569|252571|252573|252648|252855|252868|252880|252929|252930|252934|252960|252979|252980|252982|252990|253356|253357|253359|253360|253363|253366|253612|253658|253700|253701|253706|253803|253853|253854|253876|253879|253881|253883|253896|254021|254143|254148|254150|254151|254206|254288|254290|254291|254293|254296|254303|254306|254397|254399|254402|254530|254531|254532|254543|254548|254551|254554|254558|254559|254566|254668|254669|254670|254671|254672|254673|254675|254682|254683|254684|254685|254686|254687|254688|254689|254691|254692|254693|254696|254697|254698|254699|254704|254705|254761|254765|254881|254885|254889|254893|254894|254896|254900|254901|254902|254913|254994|254996|254998|255000|255001|255002|255003|255004|255005|255006|255008|255009|255010|255011|255012|255013|255014|255015|255017|255018|255019|255024|255027|255028|255029|255030|255032|255034|255035|255121|255275|255344|255706|255936|255939|256081|256084|256135|256137|256139|256171|256186|256187|256188|256189|256192|256193|256194|256195|256197|256198|256255|256353|256354|256357|256464|256729|256745|256746|256769|256770|256790|256791|256792|256793|256794|256795|256797|256798|256799|256802|256803|256805|256806|256808|256810|256811|256812|256813|256816|256817|256819|256820|256821|256822|256823|256824|256825|256826|256842|256855|257197|257294|257296|257299|257332|257352|257361|257423|257694|257695|257807|257883|258026|258067|258083|258216|258257|258283|258397|258398|258731|258773|258883|258969|259161|259180|259935|260871|260878|261503|263974|264543|265157|265307|265354|265355|265578|265615|265939|265940|265961|266015|266128|266139|266817|267125|267316|267364|267390|267391|267804|267843|268045|268169|268201|268249|268250|268253|268275|268308|268412|268601|268767|268853|269089|269223|269227|269275|269656|270759|271102|271236|271724|271725|271861|271921|272005|272077|272080|272181|272182|272210|272381|272806|273142|273143|273305|273413|273804|273923|273981|273982|274292|274529|274681|274697|274700|275007|275215|275473|275733|275742|275750|275754|275809|275840|276675|276721|276731|276943|276971|276995|277002|277011|277024|277524|277546|277717|278320|278895|278904|278995|278997|279064|279072|279084|279127|279131|279135|279154|279156|279160|279189|279195|279229|279231|279244|279249|279275|279314|279357|279387|279391|279434|279443|279457|279469|279584|279589|279813|280201|280378|280437|280457|280465|280488|280497|280514|280517|280520|280606|280616|280681|280686|280996|281060|281097|281101|281416|281420|281438|281579|281708|281887|282208|282243|283402|283796|284457|284471|284722|284730|285499|285504|286246|286252|286256|286472|286484|287152|287923|288008|288345|288346|288366|290731|290748|290763|291314|291348|291687|291689|292053|292179|292243|292404|292449|292459|293044|293711|293717|293739|293753|293790|293792|293836|293838|294162|294210|294796|294883|294895|295109|295179|295188|295274|295348|295812|295832|295841|295860|295882|295896|296207|296316|296833|297599|297709|298146|298186|298323|298432|298729|298757|298773|298778|298789|298848|298855|298874|298898|298912|298954|298978|299107|300386|300389|301206|301214|301687|301812|301963|302183|302276|302288|302298|302439|302443|302467|303245|303386|303404|305149|305216|305379|306779|306788|306789|307168|307211|307590|308036|308039|308041|308994|309854|309922|309957|310121|310194|310570|311082|311334|311511|311749|311751|311978|311998|312001|312094|312111|312372|312397|314200|314467|314846|314896|314926|315175|315181|315242|315437|315438|315554|316922|317259|318116|318120|318176|318498|318630|318647|318666|318684|319525|319919|320125|320212|320825|320869|320926|320961|320976|320980|320981|321032|321421|321765|321776|321783|321857|321919|323240|323456|323481|325007|325017|325504|326106|326119|326223|326434|326770|327422|327427|328751|328765|328943|329145|329211|330025|330048|330056|330058|330069|330197|330408|331109|331121|331131|331166|331218|332316|332389|332443|332693|332731|332748|332882|332917|333010|333017|333019|333557|334051|334061|334602|334638|334664|334732|335154|335158|335175|335179|335184|335395|335402|335427|335703|336046|336543|337264|337290|337457|337496|337766|337795|337857|337872|337896|337908|338047|338383|338477|338499|338653|338968|339290|339806|339879|339892|339893|339902|339942|340721|340728|341260|341352|341616|341618|341620|341629|341634|341646|341657|342198|342248|342487|342497|342860|342889|342918|342924|342928|343080|343081|343083|343092|343097|343117|343605|344001|344077|344486|344495|344498|345855|346121|347886|347980|347991|348073|348256|348276|349220|349441|349442|349460|349469|349530|350549|350937|351035|351578|352799|353067|357615|357920|358843|359211|359259|359294|359685|361335|361490|361523|361552|363681|363986|364522|364707|364747|364857|365000|365104|365461|365709|365832|365926|366290|366524|366843|367075|367083|367117|367118|367142|367449|367467|367539|367593|367601|367829|367831|367869|367886|367896|367909|367963|368056|368060|368174|368175|368244|368286|368457|368795|368903|368963|368999|369141|369303|369696|370003|370964|370965|371120|371190|371369|371439|371603|371747|371896|371947|371984|372115|372141|372509|372651|372706|372718|372727|372744|372777|372840|372901|372916|372982|373020|373073|373095|373173|373175|373201|373209|373236|373407|373498|373596|373640|373744|374003|374080|374092|374541|374570|374601|374619|374673|374780|375609|376078|376307|376729|376927|376982|377206|377227|377408|377409|377592|377706|377748|377819|377844|377889|378246|378450|378487|378490|378632|379113|379126|379146|379209|389359|389399|389406|389780|390138|390208|390471|390931|391487|391678|391749|391987|392140|392157|392161|392217|392462|392810|393557|393769|393915|394074|394224|394832|395421|395813|396065|396354|396932|397198|398638|398708|398752|398822|399950|400547|400675|401699|402008|402259|402981|403557|403755|404247|404439|405361|406105|406435|407122|407278|408078|408513|409064|409101|409128|409737|409998|410427|411571|413983|414077|414153|414187|414296|414317|419790|419835|420766|424224|425480|425722|426246|428297|428300|428315|428744|432632|432642|432671|432692|432694|432700|432704|432739|432744|432842|432843|432845|432848|432863|432864|432866|432867|432873|432986|432987|432989|433003|433006|433014|433016|433017|433028|433029|433030|433072|433078|433079|433081|433082|433083|433084|433095|433116|433117|433120|433121|433149|433150|433151|433152|433153|433154|433230|433231|433295|433296|433297|433299|433335|433337|433389|433391|433461|433474|433476|433488|433490|433587|433589|433604|433605|433606|433607|433608|433610|433617|433624|433625|433634|433644|433648|433659|433661|433684|433701|433709|433712|433734|433765|433787|433788|433789|433790|433791|433792|433793|433794|433795|433796|433797|433798|433799|433800|433801|433802|433803|433804|433805|433806|433807|433808|433809|433810|433811|433812|433813|433814|433824|433825|433826|433829|433830|433831|433879|433880|433885|433888|433906|433935|433942|433958|433969|433989|434003|434012|434013|434014|434015|434016|434018|434019|434020|434021|434022|434023|434024|434033|434039|434042|434509|434998|438769|438802|438860|438912|439114|439171|439238|439314|439325|440064|440475|440480|440692|440733|440759|441308|442040|442096|442108|442114|442128|442132|442138|442147|442159|442168|442171|442177|442180|442181|442184|442551|443487|443583|443595|443981|444782|444867|445585|446049|446161|446169|447365|447475|447477|447591|447605|447900|448763|449189|450612|450704|451455|451583|451888|452237|452248|453405|453434|453537|453963|454732|455096|456324|457073|457303|457435|458502|458929|458988|459730|459738|460070|460134|460420|460556|461351|461598|461713|462419|463119|463171|463400|463487|463561|463884|463893|463932|464569|465864|465948|466309|466471|466475|466548|466797|466806|466809|466813|466814|467096|467804|468188|468293|468424|468426|468451|468867|468989|469041|469226|469810|471070|471078|472011|473119|475535|476549|480438|480439|480440|480446|480704|482122|482767|482789|483406|484012|484209|484299|485114|485574|485756|486981|487049|487057|487058|487108|487199|487298|487306|487524|487544|487860|487969|488290|489881|489919|489943|490014|490207|490867|491045|491370|491519|492033|495363|496649|496893|498073|498287|498552|498584|498764|498850|498877|498891|499606|500102|500389|500478|500505|500550|500557|500635|500814|500818|500838|500853|500889|501125|501145|501172|502557|503739|503875|503879|504039|504072|504303|504462|504890|504900|504908|504909|505096|505270|505389|505595|506052|506898|506959|508046|508164|508451|508531|509637|512812|514868|515439|516743|518076|518524|518816|519115|519681|520076|522085|523022|523052|525056|525214|525410|527287|528322|528386|528508|529265|529796|529878|529967|530339|530588|531251|531420|531649|532003|532575|532836|532997|534028|534048|534052|534088|536567|536981|537232|537882|537897|538329|539277|540563|545120|550002|550004|550012|552459|553103|553135|559406|561235|561308|564036|566364|566631|566999|572143|573125|576495|576503|576509|576775|576776|577154|577741|577992|579007|579454|581815|584946|587443|587799|587807|588347|588614|589593|590054|590466|609359|609360|609364|609370|609378|609387|609390|609398|609407|609409|609419|609533|609537|609541|609581|609628|609740|609758|609891|609943|609947|609949|610033|610035|610036|610038|610041|610042|610046|610048|610049|610050|610052|610058|610083|610098|610157|611325|612660|614421|614504|615673|617266|618173|619956|621720|623460|625069|628095|628693|629308|630874|631275|632451|634364|637395|638423|640401|640783|642729|644724|647187|647412|651416|654654|654691|654935|655347|655590|655813|655816|656143|656449|656573|657271|658471|659955|663075|668364|670438|679452|682758|683744|683845|684706|684708|684880|685134|687751|687866|687964|688970|689197|689411|689469|689610|689918|690179|690695|691601|691989|693446|694219|694342|694343|694845|695162|695508|695523|695842|696193|696468|696471|698555|698563|698565|698586|699702|701217|702530|703883|703884|704427|704810|705320|705399|705521|706197|706201|706763|706824|707091|709003|710049|710051|710560|712196|713315|715179|715181|715184|715186|716230|716870|718659|718661|718680|720605|721574|722200|722486|722655|723540|723801|726881|726886|726894|726895|726902|726909|726912|726915|727208|727226|728464|729232|732124|732128|732147|732156|734517|737379|739999|740445|740448|740464|740470|740471|740475|740483|740809|741733|743675|744882|744884|745435|746101|746135|746148|746164|747029|755335|755389|755637|755891|758379|762470|764798|770894|771167|771381|772495|777198|777891|778503|779459|779850|779851|779861|780068|781531|789585|789586|789692|789693|789854|791910|793060|794566|795647|796826|797766|799024|799102|799141|799144|799147|799149|799152|799176|799178|799180|799182|799183|799184|799186|799195|799197|799242|799256|799258|799274|799278|799279|799282|799283|799287|799292|799293|799299|799318|799329|799341|799353|799354|799357|799365|799372|799408|799410|799411|799421|799447|799455|799458|799459|799460|799464|799465|799466|799467|799468|799469|799475|799482|799507|799582|799601|799618|799651|799668|799677|799735|799751|799777|799830|799831|799837|799840|799846|799847|799852|799858|799859|799964|799966|799971|799972|799973|799974|799976|799977|799978|799979|799985|799988|799991|799994|799997|800007|800071|800077|800083|800100|800101|800102|800103|800104|800107|800109|800110|800112|800114|800116|800117|800118|800122|800123|800158|800159|800191|800204|800205|800206|800207|800210|806164|808710|808716|811611|811647|811853|813838|822050|823365|824358|825135|828696|832402|833961|836496|839283|842437|843307|843784|843935|843945|843948|848667|848734|848947|849843|849934|849982|855962|857163|857528|859330|861240|862405|862417|862499|863582|863589|863600|863681|864994|865024|868514|868516|869894|872245|872919|872939|880706|887644|889528|890451|890675|891892|898385|898389|898538|900896|901833|907625|909292|912857|912963|912978|914361|914800|916898|917195|917410|917460|917493|920370|922175|924613|925928|926636|930154|932132|933310|933608|935140|935219|935383|936262|937423|937533|940206|944120|945348|948945|953639|956144|958474|962248|965475|965851|965855|970998|971057|972766|975805|975894|981133|981134|981145|981211|981212|981213|981214|981215|981218|981230|981231|981232|981233|981234|981235|981236|981237|981238|981239|981240|981241|981242|981243|981244|981245|981246|981247|981248|981249|981250|981251|981252|981253|981254|981255|981256|981257|981258|981259|981260|981261|981262|981263|981264|981265|981266|981267|981268|981269|981270|981271|981272|981273|981274|981275|981276|981277|981278|981279|981280|981281|981282|981283|981284|981285|981286|981287|981288|981289|981290|981291|981292|981293|981294|981295|981296|981297|981298|981299|981300|981301|981302|981303|981304|981305|981306|981307|981308|981309|981310|981311|981314|981315|981316|981317|981318|981319|981328|981329|981330|981331|981332|981333|981334|981335|981336|981337|981338|981339|981340|981341|981342|981343|981344|981345|981346|981347|981349|981350|981351|981352|981353|981354|981355|981356|981357|981358|981359|981360|981361|981362|981363|981364|981365|981366|981367|981369|981370|981371|981372|981373|981374|981375|981376|981377|981382|981383|981384|981385|981386|981387|981388|981389|981390|981391|981392|981393|981394|981395|981396|981397|981398|981399|981400|981401|981402|981403|981404|981405|981406|981407|981408|981409|981410|981411|981412|981413|981414|981415|981416|981417|981418|981419|981420|981421|981422|981423|981424|981425|981426|981429|981430|981431|981432|981434|981435|981436|981437|981438|981439|981440|981442|981443|981444|981445|981446|981448|981449|981450|981451|981452|981453|981456|981457|981458|981459|981460|981461|981462|981463|981464|981465|981466|981467|981468|981469|981470|981471|981472|981473|981474|981475|981476|981477|981478|981479|981480|981481|981482|981483|981484|981485|981486|981487|981488|981489|981490|981491|981492|981493|981494|981495|981496|981497|981498|981499|981500|981501|981502|981503|981504|981505|981506|981507|981508|981509|981510|981511|981512|981515|981517|981518|981519|981525|981526|981527|981528|981529|981530|981531|981532|981533|981534|981535|981536|981537|981538|981539|981540|981541|981542|981543|981544|981545|981546|981547|981549|981550|981551|981553|981554|981555|981556|981557|981558|981559|981560|981561|981562|981563|981564|981565|981567|981568|981569|981570|981571|981572|981573|981574|981575|981576|981577|981578|981579|981580|981581|981582|981583|981584|981585|981586|981587|981588|981589|981590|981591|981594|981595|981596|981597|981598|981599|981602|981603|981604|981605|981606|981607|981608|981609|981610|981611|981612|981613|981614|981616|981618|981619|981624|981625|981649|981650|981651|981652|981668|981669|981670|981671|981672|981673|981674|981675|981676|981677|981678|981679|981682|981683|981684|981685|981686|981687|981688|981689|981690|981691|981692|981696|981698|981699|981700|981701|981702|981703|981704|981705|981706|981707|981708|981709|981710|981711|981712|981713|981714|981715|981716|981717|981718|981719|981730|981731|981732|981733|981734|981735|981736|981737|981738|981739|981740|981742|981744|981745|981746|981747|981748|981749|981750|981751|981752|981753|981756|981757|981758|981759|981761|981762|981763|981764|981765|981766|981767|981768|981769|981770|981771|981772|981773|981774|981775|981787|981788|981789|981790|981792|981793|981794|981795|981796|981797|981798|981799|981800|981801|981822|981823|981824|981825|981827|981828|981829|981831|981832|981833|981834|981837|981845|981846|981847|981848|981849|981850|981851|981852|981853|981854|981855|981856|981857|981858|981859|981860|981861|981862|981863|981864|981865|981866|981867|981868|981869|981870|981871|981872|981873|981874|981875|981876|981877|981878|981879|981880|981881|981882|981883|981885|981886|981887|981888|981889|981890|981891|981892|981902|981903|981904|981911|981912|981913|981914|981915|981916|981917|981918|981919|981920|981921|981922|981923|981924|981925|981926|981928|981933|981934|981937|981938|981939|981940|981941|981942|981943|981944|981945|981946|981947|981948|981949|981950|981951|981952|981953|982003|982004|982006|982007|982008|982009|982010|982011|982012|982013|982014|982015|982016|982017|982018|982019|982020|982021|982022|982023|982024|982025|982026|982027|982028|982029|982030|982031|982032|982033|982034|982035|982036|982037|982038|982039|982040|982041|982042|982043|982044|982045|982046|982047|982048|982049|982050|982051|982052|982053|982054|982055|982056|982057|982058|982059|982060|982061|982062|982063|982064|982065|982066|982067|982068|982069|982070|982071|982072|982073|982074|982075|982076|982077|982078|982079|982080|982081|982082|982083|982084|982085|982086|982087|982088|982089|982090|982091|982092|982093|982094|982095|982096|982097|982098|982099|982100|982101|982102|982103|982104|982105|982106|982107|982108|982109|982110|982111|982112|982113|982114|982115|982116|982117|982118|982119|982120|982121|982122|982123|982131|982133|982134|982135|982139|982140|982141|982142|982143|982144|982145|982146|982147|982148|982149|982150|982151|982152|982153|982154|982155|982156|982157|982158|982159|982160|982161|982162|982163|982164|982165|982166|982167|982168|982169|982170|982171|982172|982175|982180|982181|982182|982186|982187|982188|982189|982192|982193|982194|982195|982196|982203|982204|982205|982206|982207|982208|982209|982210|982211|982212|982213|982214|982215|982216|982217|982218|982219|982220|982223|982224|982225|982226|982227|982229|982230|982231|982232|982233|982244|982245|982246|982247|982250|982251|982252|982253|982254|982255|982256|982257|982268|982269|982273|982274|982275|982276|982277|982278|982279|982280|982281|982282|982283|982284|982285|982286|982287|982288|982289|982290|982291|982292|982293|982294|982295|982296|982297|982298|982299|982300|982301|982335|982336|982337|982338|982339|982340|982341|982342|982343|982344|982345|982346|982347|982348", "text": "none provided" }, { - "baseId": "15159|16376|16941|17159|17203|17373|17558|18090|18091|18108|18268|18928|19293|19294|19299|19886|23120|24320|24472|25750|25867|25901|26019|26378|26559|26611|26675|26697|26735|26781|26848|26862|26863|26867|27928|28540|31158|33997|34033|34263|36382|38685|38972|38972|38997|39106|39135|39517|39748|40295|45151|45153|46513|46853|48312|49116|49896|50067|50121|51184|51814|53601|58754|70509|76337|76988|77870|79480|92746|97552|97554|99044|99450|99503|99929|101129|101168|101320|101331|101358|101442|104195|105803|106647|108235|125784|132612|132659|134099|134663|134762|134883|134958|134964|134987|135025|135264|135289|135490|135579|135757|135759|136058|136160|137063|137064|137065|137329|137335|137774|138333|138523|139690|140539|142910|142913|153074|153077|153125|153127|153199|153481|153555|166182|166183|166184|166185|166186|166187|166188|166189|166190|166191|166192|166193|166525|167681|167722|167731|168023|168149|168515|169057|169078|169192|169243|169501|169657|171803|171866|171866|171867|171867|171872|171874|172223|172224|177214|177274|177306|177379|177428|178413|178414|178415|181292|181411|181417|181434|181437|181438|181442|181443|181447|181449|181461|181465|187768|188112|188114|188524|190388|190570|190956|191285|191419|191469|191735|192090|192104|192146|192158|192343|192509|192821|192931|193410|193574|193860|194170|194179|194589|194639|194856|195318|196078|196169|196386|198605|200257|200983|200986|201049|201160|201510|201600|201710|201736|201892|201908|202166|202172|202181|202181|202202|202206|202211|202287|202287|202308|202320|202566|202858|202960|202975|202978|203013|203048|203241|203443|203788|203798|203985|204032|205013|205014|205220|205231|205280|205334|205385|205386|205416|205780|205795|205796|206744|206974|207066|207083|207426|207454|207519|207526|207566|207665|207761|208548|208549|208553|208578|208697|208995|209009|209132|209301|210442|210849|212518|212828|213128|213913|214422|214423|214736|215312|222267|223284|223285|224296|225802|225824|226495|226502|226589|226591|226880|227108|227142|227161|230343|231838|236721|236722|237027|237152|237163|237252|237500|237501|237502|237503|237504|237505|237506|237507|237508|237509|237510|237511|237512|237815|238152|241553|243986|244021|244353|244364|244877|247131|247367|247429|248813|248814|248815|253845|257945|258340|259765|259803|259926|260231|263009|263181|263248|263282|263405|263410|263782|263783|263800|263801|263802|263803|263823|264012|264349|264354|264380|264423|264462|264742|264747|264749|264765|264790|265017|265043|265372|266815|268040|268413|268539|268541|268711|268760|269753|269760|270052|270654|270693|270927|271309|271362|272361|272503|273382|273797|273968|274815|278319|279093|279284|279516|279804|280448|282805|285551|287840|288156|293387|293984|299180|300140|302751|306666|308119|308154|308181|308207|312480|313180|314592|315539|316481|318657|319385|321670|324560|324607|326113|326612|334331|336935|344085|346901|350092|351665|353901|359096|359406|359475|359671|359716|359969|360471|360857|360870|360871|360938|360965|361066|361077|361081|361133|361271|362161|362228|362591|362592|362593|362594|362602|363660|363688|363820|364114|364240|364330|364370|367000|368285|368289|368300|368307|368313|368318|368460|368463|368469|368862|369645|369663|369667|370379|370949|372867|374888|375842|376349|377884|378260|380144|384420|389102|389103|389117|389133|389134|389153|389158|389176|390552|390989|391309|391420|395134|400100|400613|401874|404259|404405|404663|404799|405000|405354|406087|406645|406673|406862|407394|407647|408763|409423|409797|410542|411079|414841|414968|415246|415325|421913|422065|422126|422440|424454|424455|424456|424457|424458|424459|424460|424461|424462|424463|424464|424465|424466|424467|424468|424469|424588|424629|424630|424632|424633|424634|424661|424961|425479|425622|426674|427641|428365|428376|428479|428557|428569|428990|429518|429704|430597|430777|430965|431523|431901|431970|432441|433679|434926|438230|438612|438689|439158|439568|439569|439570|439571|439572|440008|440809|442349|442645|442985|443697|444652|444898|445472|445668|445828|446266|446292|446380|447100|447731|454788|454789|454855|455343|455348|456092|457299|457526|457691|461199|462492|469809|470461|470498|470897|471646|471817|479492|480611|480612|480613|480614|480615|480616|480617|480618|480619|480620|480621|481510|481511|481512|481513|481514|482276|485864|486612|486695|489734|490435|490858|491613|492013|492252|492920|493392|495097|495809|495899|496780|498147|499823|500387|500720|501378|502199|506016|509671|511323|511569|511828|511891|511934|512013|512297|512330|512351|512721|512805|514017|514105|514124|514127|514186|514205|514209|514211|514305|514322|514330|514333|519403|520977|520978|521200|521206|521474|524758|525796|526001|526412|527882|535072|535710|535711|536617|538005|538311|538627|539084|539127|540495|540496|540497|540498|540499|540500|540501|540502|540503|540504|540505|540506|540507|540508|540509|540510|540511|540512|540513|540514|540515|540516|548854|548895|549547|550330|550356|550740|550741|550742|550743|550744|550745|550746|551271|551272|551352|551425|551430|552042|552111|552114|552115|553119|553120|553121|553164|553165|553166|553167|553168|553169|553170|553171|553173|553174|553175|553176|553177|553180|553181|553183|553184|553185|553186|553188|553189|553299|553300|553301|553302|553303|553304|553305|553306|556474|560245|560247|560249|560251|560356|560358|560439|561995|562782|563386|563519|564983|566742|568459|569461|573625|573697|574088|574272|576060|576061|576134|576146|578654|579155|579212|579242|579246|579391|579641|579815|580193|580324|580422|580442|580444|580480|580923|581229|581731|581732|582007|583142|583202|589432|589719|590017|590046|590123|590451|590736|608800|608802|608837|608860|610430|610519|610523|610591|611390|611406|611438|611439|611445|611469|613016|613532|613533|613534|613535|613536|613537|613538|613539|613540|613541|613542|613543|613544|613545|613546|613547|613548|613549|613550|613551|613604|614154|614550|614601|619844|621936|622051|622052|622054|622061|622062|622268|623113|623596|623604|623627|623628|623665|623666|623667|623782|623783|624119|625785|625797|625829|625830|626434|626437|626438|626439|626617|628802|629269|630744|632093|632104|633689|633690|633691|633692|633693|633694|634586|634796|635525|636544|638199|641377|644511|645247|647795|649136|649412|649854|649941|651314|651409|653855|653866|653885|654009|655648|672009|672066|676968|677043|677400|678937|678938|678942|678943|678944|678945|678947|678948|678949|678950|678952|678953|678954|678955|678959|678960|678961|678962|679673|679675|679676|679677|679679|679680|679681|679682|679683|679685|679686|679688|679689|679707|679731|682109|682110|682753|682754|682762|682850|683187|683192|683199|683278|687308|689501|691026|691811|695783|696142|701670|706453|707517|708004|715753|719080|721761|724324|727891|730145|732928|734989|736661|739687|740199|742154|742335|744859|752560|752766|764386|779946|780175|780263|782235|782237|782733|788257|789140|789259|789344|789405|789720|789740|790315|790840|791436|793021|793888|796462|796750|798255|798386|798452|801062|801217|801229|801532|801536|801538|802005|802090|804831|804986|805016|805027|805050|805066|805069|805071|805135|806013|806078|808732|815958|815967|815968|815969|815970|815971|815972|816026|816027|818146|818147|818148|818149|818150|818577|818578|818630|818745|821907|821908|822017|822141|822156|822259|825044|826810|830582|830583|830584|830585|830586|830587|830588|830589|830590|830591|830592|830593|830872|834567|836064|836170|839326|846990|847347|849497|855115|856758|857425|858396|861071|869899|881457|886250|889177|891722|904214|904359|904877|905852|905853|916788|917755|918152|918155|918499|918523|918531|918858|920543|920763|921245|921255|921256|921257|921449|922661|923395|923970|923971|923972|923973|923974|926753|929679|932818|932819|933757|934736|935698|936638|938470|939443|939643|944511|944512|944513|944514|944515|944516|951031|954101|954102|954103|954104|956981|957763|958543|959360|959374|961419|961431|961437|961438|961439|961440|961441|961442|961443|961444|961445|961446|961447|961448|961449|961450|961451|961452|961453|961454|961455|961456|961457|961458|961459|961460|961461|961462|961463|961464|961465|961466|961467|961468|961469|961470|961472|961474|961608|961907|961908|961909|961910|961912|961913|961914|961915|961916|961917|961994|962042|962129|962130|962201|963080|963085|963086|963087|963089|963090|963091|963092|963444|963445|963446|963447|963448|963449|963450|963451|963452|963453|963454|963455|963456|963457|963458|963459|963460|963461|963462|963463|963464|963465|963466|963467|963468|963469|963470|963471|963472|963473|963474|963475|963476|963477|963478|963481|963482|963485|963486|963488|963489|963490|963491|963492|963493|963495|963496|963497|963499|963500|963501|963503|963504|963505|963506|963507|963508|963509|963510|963511|963512|963513|963514|963516|963517|963518|963519|963520|963524|963525|963526|963527|963528|963529|963530|963533|963534|963535|963536|963537|963538|963539|963541|963542|963543|963544|963545|963546|963547|963554|963556|963557|963558|963559|963560|963561|963562|963563|963564|963565|963566|963567|963570|963572|963574|963575|963576|963577|963578|963580|963582|963583|963584|963585|963586|963587|963588|963589|963590|963591|963592|963593|963594|963597|963598|963599|963600|963601|963602|963603|963604|963605|963606|963607|963610|963611|963612|963613|963614|963615|963618|963619|963620|963621|963623|963624|963625|963626|963627|963628|963629|963630|963631|963632|963633|963634|963635|963636|963637|963638|963639|963640|963641|963643|963644|963645|963650|963651|963654|963656|963657|963658|963659|963660|963661|963662|963663|963664|963665|963666|963667|963668|963669|963672|963673|963674|963675|963676|963677|963678|963679|963680|963681|963682|963683|963684|963685|963686|963687|963688|963689|963690|963691|963692|963693|963694|963696|963697|963698|963699|963700|963701|963702|963703|963704|963705|963706|963707|963708|963709|963710|963711|963712|963713|963714|963715|963716|963717|963719|963720|963722|963723|963724|963725|963726|963727|963728|963729|963730|963731|963732|963733|963734|963735|963736|963737|963738|963739|963740|963741|963742|963743|963744|963745|963746|963748|963750|963751|963752|963753|963754|963755|963756|963757|963758|963760|963763|963765|963768|963769|963770|963771|963772|963774|963775|963776|963777|963778|963779|963780|963781|963783|963784|963785|963788|963789|963790|963791|963792|963793|963794|963795|963796|963797|963798|963799|963800|963801|963802|963803|963805|963806|963807|963808|963809|963811|963813|963814|963815|963816|963817|963818|963819|963820|963824|963825|963826|963827|963828|963829|963830|963831|963832|963833|963834|963835|963836|963837|963838|963839|963840|963841|963842|963843|963844|963845|963846|963847|963848|963849|963850|963851|963853|963854|963855|963856|963858|963859|963860|963861|963862|963863|963864|963865|963866|963867|963868|963869|963871|963872|963873|963874|963875|963876|963877|963878|963879|963880|963881|963882|963883|963884|963885|963886|963887|963888|963889|963890|963891|963892|963893|963894|963895|963896|963897|963898|963899|963900|963901|963902|963903|963904|963905|963906|963907|963908|963909|963911|963912|963913|963915|963919|963921|963922|963923|963925|963926|963927|963928|963929|963930|963931|963932|963933|963934|963935|963936|963937|963938|963944|963945|963946|963947|963948|963949|963950|963951|963952|963953|963954|963956|963957|963958|963959|963962|963963|963964|963965|963966|963967|963968|963969|963970|963974|963975|963976|963978|963979|963982|963984|963985|963988|963989|963990|963991|963992|963993|963994|963995|963996|963997|963998|964001|964004|964005|964006|964007|964008|964009|964012|964013|964014|964015|964016|964017|964018|964020|964021|964022|964023|964026|964027|964028|964029|964031|964032|964033|964034|964035|964037|964038|964039|964040|964041|964042|964043|964044|964045|964046|964047|964048|964050|964051|964053|964054|964056|964057|964058|964059|964060|964061|964062|964063|964064|964065|964066|964067|964068|964156|964157|964167|964194|964268|964275|964278|964308|964334|964349|964357|964434|964458|964461|964466|964497|964535|964585|964601|964614|964617|964623|965290|965443|965458|965462|965463|965467|965469|965470|965477|965484|965485|965489|965493|965511|965513|965517|965520|965524|965525|965531|965532|965534|965535|965542|965560|965561|965563|965564|965570|965571|965572|965573|965574|965575|965576|965577|965579|965583|965584|965735|965736|965737|965738|965739|965740|965741|965742|965743|965744|965745|965746|965747|965748|966219|966220|966229|966230|966233|966234|966235|966237|966239|966240|966242|966245|966246|966247|966248|966249|966250|966254|966257|966259|966261|966262|966263|966265|966267|966268|966269|966270|966271|966272|966273|966274|966277|966280|966281|966282|966286|966287|966289|966291|966294|966296|966298|966300|966301|966305|966306|966308|966309|966314|966318|966319|966321|966337|966905|966906|966907|966908|966909|966910|966911|966912|966913|966914|966916|966917|966918|966919|966920|966921|966922|966923|966924|966925|966926|966927|966928|966929|966930|966931|966932|966933|966934|966935|966936|966937|966938|966939|966940|966941|966942|966943|966944|966945|966947|966948|966949|966950|966951|966952|966953|966954|966955|966956|966957|966958|966959|966960|966961|966962|966963|966964|966965|966966|966967|966968|966969|966970|966971|966972|966973|966974|966975|966976|966977|966978|966980|966981|966982|966983|966984|966985|966986|966987|966988|966989|966990|966991|966992|966993|966994|966995|966996|966997|966998|966999|967000|967001|967002|967003|967004|967005|967006|967007|967008|967009|967010|967011|967012|967013|967014|967015|967016|967017|967018|967019|967020|967021|967022|967023|967024|967025|967026|967027|967030|967031|967032|967033|967034|967035|967036|967037|967038|967039|967040|967041|967042|967043|967044|967045|967046|967047|967048|967249|967252|969330|969331|969332|969333|969334|969335|969336|969337|969338|969339|969340|969341|969342|969343|969344|969345|969346|969347|969348|969349|969350|969351|969352|969353|969354|969355|969356|969357|969358|969359|969360|969361|969362|969363|969364|969365|969366|969367|969368|969369|969370|969371|969372|969373|969374|969375|969376|969377|969378|969379|969380|969381|969382|969383|969384|969385|969386|969387|969388|969389|969390|969391|969392|969393|969394|969395|969396|969397|969398|969399|969400|969401|969402|969403|969404|969405|969406|969407|969408|969409|969410|969411|969412|969413|969414|969415|969416|969417|969418|969419|969420|969421|969422|969423|969424|969425|969426|969427|969428|969429|969430|969431|969432|969433|969434|969435|969436|969437|969438|969439|969440|969441|969442|969443|969444|969445|969446|969447|969448|969449|969450|969451|969452|969453|969454|969455|969456|969457|969458|969459|969460|969461|969462|969463|969464|969465|969466|969467|969468|969469|969470|969471|969472|969473|969474|969475|969476|969477|969478|969479|969480|969481|969482|969483|969484|969485|969486|969487|969488|969489|969490|969491|969492|969493|969494|969495|969496|969497|969498|969499|969500|969501|969502|969503|969504|969505|969506|969507|969508|969509|969510|969511|969512|969513|969514|969515|969516|969517|969518|969519|969520|969521|969525|969526|969527|969528|969529|969530|969531|969532|969533|969534|969535|969536|969537|969538|969539|969540|969541|969546|969759|969772|969777|969881|969887|969976|969977|969978|969979|969980|969981|969982|969983|969984|969985|969986|969987|969988|969989|969990|969991|969992|969993|969994|969995|969996|969997|969998|969999|970000|970001|970003|970258|970335|970359|970360|970361|970430|971289|971347|971384|971386|971388|971390|971392|971393|971397|971398|971399|971400|971402|971404|971407|971408|971409|971412|971413|971414|971415|971416|971420|971423|971425|971428|971429|971430|971432|971434|971438|971439|971447|971448|971449|971450|971452|971455|971456|971457|971458|971459|971462|971463|971464|971465|971470|971471|971472|971473|971474|971476|971478|971480|971481|971483|971484|971488|971489|971492|971493|971496|971497|971499|971501|976525|976699|977359|977360|980653|980654|980657|980658|980660|980661|980663|980673|980675|980676|980679|980681|980683|980684|980692|980693|980698|980699|980700|980702|980705|980707|980708|980709|980710|980711|980715|980716|980719|980724|980725|980726|980730|980736|980737|980738|980740|980747|980748|980749|980750|983685|983688|983691|983846|984026|984027|984028|984030|984031|984032|984033|984034|984035", + "upstreamId": "15159|16376|16941|17159|17203|17373|17558|18090|18091|18108|18268|18928|19293|19294|19299|19886|23120|24320|24472|25750|25867|25901|26019|26378|26559|26611|26675|26697|26735|26781|26848|26862|26863|26867|27928|28540|31158|33997|34033|34263|36382|38685|38972|38972|38997|39106|39135|39517|39748|40295|45151|45153|46513|46853|48312|49116|49896|50067|50121|51184|51814|53601|58754|70509|76337|76988|77870|79480|92746|97552|97554|99044|99450|99503|99929|101129|101168|101320|101331|101358|101442|104195|105803|106647|108235|125784|132612|132659|134099|134663|134762|134883|134958|134964|134987|135025|135264|135289|135490|135579|135757|135759|136058|136160|137063|137064|137065|137329|137335|137774|138333|138523|139690|140539|142910|142913|153074|153077|153125|153127|153199|153481|153555|166182|166183|166184|166185|166186|166187|166188|166189|166190|166191|166192|166193|166525|167681|167722|167731|168023|168149|168515|169057|169078|169192|169243|169501|169657|171803|171866|171866|171867|171867|171872|171874|172223|172224|177214|177274|177306|177379|177428|178413|178414|178415|181292|181411|181417|181434|181437|181438|181442|181443|181447|181449|181461|181465|187768|188112|188114|188524|190388|190570|190956|191285|191419|191469|191735|192090|192104|192146|192158|192343|192509|192821|192931|193410|193574|193860|194170|194179|194589|194639|194856|195318|196078|196169|196386|198605|200257|200983|200986|201049|201160|201510|201600|201710|201736|201892|201908|202166|202172|202181|202181|202202|202206|202211|202287|202287|202308|202320|202566|202858|202960|202975|202978|203013|203048|203241|203443|203788|203798|203985|204032|205013|205014|205220|205231|205280|205334|205385|205386|205416|205780|205795|205796|206744|206974|207066|207083|207426|207454|207519|207526|207566|207665|207761|208548|208549|208553|208578|208697|208995|209009|209132|209301|210442|210849|212518|212828|213128|213913|214422|214423|214736|215312|222267|223284|223285|224296|225802|225824|226495|226502|226589|226591|226880|227108|227142|227161|230343|231838|236721|236722|237027|237152|237163|237252|237500|237501|237502|237503|237504|237505|237506|237507|237508|237509|237510|237511|237512|237815|238152|241553|243986|244021|244353|244364|244877|247131|247367|247429|248813|248814|248815|253845|257945|258340|259765|259803|259926|260231|263009|263181|263248|263282|263405|263410|263782|263783|263800|263801|263802|263803|263823|264012|264349|264354|264380|264423|264462|264742|264747|264749|264765|264790|265017|265043|265372|266815|268040|268413|268539|268541|268711|268760|269753|269760|270052|270654|270693|270927|271309|271362|272361|272503|273382|273797|273968|274815|278319|279093|279284|279516|279804|280448|282805|285551|287840|288156|293387|293984|299180|300140|302751|306666|308119|308154|308181|308207|312480|313180|314592|315539|316481|318657|319385|321670|324560|324607|326113|326612|334331|336935|344085|346901|350092|351665|353901|359096|359406|359475|359671|359716|359969|360471|360857|360870|360871|360938|360965|361066|361077|361081|361133|361271|362161|362228|362591|362592|362593|362594|362602|363660|363688|363820|364114|364240|364330|364370|367000|368285|368289|368300|368307|368313|368318|368460|368463|368469|368862|369645|369663|369667|370379|370949|372867|374888|375842|376349|377884|378260|380144|384420|389102|389103|389117|389133|389134|389153|389158|389176|390552|390989|391309|391420|395134|400100|400613|401874|404259|404405|404663|404799|405000|405354|406087|406645|406673|406862|407394|407647|408763|409423|409797|410542|411079|414841|414968|415246|415325|421913|422065|422126|422440|424454|424455|424456|424457|424458|424459|424460|424461|424462|424463|424464|424465|424466|424467|424468|424469|424588|424629|424630|424632|424633|424634|424661|424961|425479|425622|426674|427641|428365|428376|428479|428557|428569|428990|429518|429704|430597|430777|430965|431523|431901|431970|432441|433679|434926|438230|438612|438689|439158|439568|439569|439570|439571|439572|440008|440809|442349|442645|442985|443697|444652|444898|445472|445668|445828|446266|446292|446380|447100|447731|454788|454789|454855|455343|455348|456092|457299|457526|457691|461199|462492|469809|470461|470498|470897|471646|471817|479492|480611|480612|480613|480614|480615|480616|480617|480618|480619|480620|480621|481510|481511|481512|481513|481514|482276|485864|486612|486695|489734|490435|490858|491613|492013|492252|492920|493392|495097|495809|495899|496780|498147|499823|500387|500720|501378|502199|506016|509671|511323|511569|511828|511891|511934|512013|512297|512330|512351|512721|512805|514017|514105|514124|514127|514186|514205|514209|514211|514305|514322|514330|514333|519403|520977|520978|521200|521206|521474|524758|525796|526001|526412|527882|535072|535710|535711|536617|538005|538311|538627|539084|539127|540495|540496|540497|540498|540499|540500|540501|540502|540503|540504|540505|540506|540507|540508|540509|540510|540511|540512|540513|540514|540515|540516|548854|548895|549547|550330|550356|550740|550741|550742|550743|550744|550745|550746|551271|551272|551352|551425|551430|552042|552111|552114|552115|553119|553120|553121|553164|553165|553166|553167|553168|553169|553170|553171|553173|553174|553175|553176|553177|553180|553181|553183|553184|553185|553186|553188|553189|553299|553300|553301|553302|553303|553304|553305|553306|556474|560245|560247|560249|560251|560356|560358|560439|561995|562782|563386|563519|564983|566742|568459|569461|573625|573697|574088|574272|576060|576061|576134|576146|578654|579155|579212|579242|579246|579391|579641|579815|580193|580324|580422|580442|580444|580480|580923|581229|581731|581732|582007|583142|583202|589432|589719|590017|590046|590123|590451|590736|608800|608802|608837|608860|610430|610519|610523|610591|611390|611406|611438|611439|611445|611469|613016|613532|613533|613534|613535|613536|613537|613538|613539|613540|613541|613542|613543|613544|613545|613546|613547|613548|613549|613550|613551|613604|614154|614550|614601|619844|621936|622051|622052|622054|622061|622062|622268|623113|623596|623604|623627|623628|623665|623666|623667|623782|623783|624119|625785|625797|625829|625830|626434|626437|626438|626439|626617|628802|629269|630744|632093|632104|633689|633690|633691|633692|633693|633694|634586|634796|635525|636544|638199|641377|644511|645247|647795|649136|649412|649854|649941|651314|651409|653855|653866|653885|654009|655648|672009|672066|676968|677043|677400|678937|678938|678942|678943|678944|678945|678947|678948|678949|678950|678952|678953|678954|678955|678959|678960|678961|678962|679673|679675|679676|679677|679679|679680|679681|679682|679683|679685|679686|679688|679689|679707|679731|682109|682110|682753|682754|682762|682850|683187|683192|683199|683278|687308|689501|691026|691811|695783|696142|701670|706453|707517|708004|715753|719080|721761|724324|727891|730145|732928|734989|736661|739687|740199|742154|742335|744859|752560|752766|764386|779946|780175|780263|782235|782237|782733|788257|789140|789259|789344|789405|789720|789740|790315|790840|791436|793021|793888|796462|796750|798255|798386|798452|801062|801217|801229|801532|801536|801538|802005|802090|804831|804986|805016|805027|805050|805066|805069|805071|805135|806013|806078|808732|815958|815967|815968|815969|815970|815971|815972|816026|816027|818146|818147|818148|818149|818150|818577|818578|818630|818745|821907|821908|822017|822141|822156|822259|825044|826810|830582|830583|830584|830585|830586|830587|830588|830589|830590|830591|830592|830593|830872|834567|836064|836170|839326|846990|847347|849497|855115|856758|857425|858396|861071|869899|881457|886250|889177|891722|904214|904359|904877|905852|905853|916788|917755|918152|918155|918499|918523|918531|918858|920543|920763|921245|921255|921256|921257|921449|922661|923395|923970|923971|923972|923973|923974|926753|929679|932818|932819|933757|934736|935698|936638|938470|939443|939643|944511|944512|944513|944514|944515|944516|951031|954101|954102|954103|954104|956981|957763|958543|959360|959374|961419|961431|961437|961438|961439|961440|961441|961442|961443|961444|961445|961446|961447|961448|961449|961450|961451|961452|961453|961454|961455|961456|961457|961458|961459|961460|961461|961462|961463|961464|961465|961466|961467|961468|961469|961470|961472|961474|961608|961907|961908|961909|961910|961912|961913|961914|961915|961916|961917|961994|962042|962129|962130|962201|963080|963085|963086|963087|963089|963090|963091|963092|963444|963445|963446|963447|963448|963449|963450|963451|963452|963453|963454|963455|963456|963457|963458|963459|963460|963461|963462|963463|963464|963465|963466|963467|963468|963469|963470|963471|963472|963473|963474|963475|963476|963477|963478|963481|963482|963485|963486|963488|963489|963490|963491|963492|963493|963495|963496|963497|963499|963500|963501|963503|963504|963505|963506|963507|963508|963509|963510|963511|963512|963513|963514|963516|963517|963518|963519|963520|963524|963525|963526|963527|963528|963529|963530|963533|963534|963535|963536|963537|963538|963539|963541|963542|963543|963544|963545|963546|963547|963554|963556|963557|963558|963559|963560|963561|963562|963563|963564|963565|963566|963567|963570|963572|963574|963575|963576|963577|963578|963580|963582|963583|963584|963585|963586|963587|963588|963589|963590|963591|963592|963593|963594|963597|963598|963599|963600|963601|963602|963603|963604|963605|963606|963607|963610|963611|963612|963613|963614|963615|963618|963619|963620|963621|963623|963624|963625|963626|963627|963628|963629|963630|963631|963632|963633|963634|963635|963636|963637|963638|963639|963640|963641|963643|963644|963645|963650|963651|963654|963656|963657|963658|963659|963660|963661|963662|963663|963664|963665|963666|963667|963668|963669|963672|963673|963674|963675|963676|963677|963678|963679|963680|963681|963682|963683|963684|963685|963686|963687|963688|963689|963690|963691|963692|963693|963694|963696|963697|963698|963699|963700|963701|963702|963703|963704|963705|963706|963707|963708|963709|963710|963711|963712|963713|963714|963715|963716|963717|963719|963720|963722|963723|963724|963725|963726|963727|963728|963729|963730|963731|963732|963733|963734|963735|963736|963737|963738|963739|963740|963741|963742|963743|963744|963745|963746|963748|963750|963751|963752|963753|963754|963755|963756|963757|963758|963760|963763|963765|963768|963769|963770|963771|963772|963774|963775|963776|963777|963778|963779|963780|963781|963783|963784|963785|963788|963789|963790|963791|963792|963793|963794|963795|963796|963797|963798|963799|963800|963801|963802|963803|963805|963806|963807|963808|963809|963811|963813|963814|963815|963816|963817|963818|963819|963820|963824|963825|963826|963827|963828|963829|963830|963831|963832|963833|963834|963835|963836|963837|963838|963839|963840|963841|963842|963843|963844|963845|963846|963847|963848|963849|963850|963851|963853|963854|963855|963856|963858|963859|963860|963861|963862|963863|963864|963865|963866|963867|963868|963869|963871|963872|963873|963874|963875|963876|963877|963878|963879|963880|963881|963882|963883|963884|963885|963886|963887|963888|963889|963890|963891|963892|963893|963894|963895|963896|963897|963898|963899|963900|963901|963902|963903|963904|963905|963906|963907|963908|963909|963911|963912|963913|963915|963919|963921|963922|963923|963925|963926|963927|963928|963929|963930|963931|963932|963933|963934|963935|963936|963937|963938|963944|963945|963946|963947|963948|963949|963950|963951|963952|963953|963954|963956|963957|963958|963959|963962|963963|963964|963965|963966|963967|963968|963969|963970|963974|963975|963976|963978|963979|963982|963984|963985|963988|963989|963990|963991|963992|963993|963994|963995|963996|963997|963998|964001|964004|964005|964006|964007|964008|964009|964012|964013|964014|964015|964016|964017|964018|964020|964021|964022|964023|964026|964027|964028|964029|964031|964032|964033|964034|964035|964037|964038|964039|964040|964041|964042|964043|964044|964045|964046|964047|964048|964050|964051|964053|964054|964056|964057|964058|964059|964060|964061|964062|964063|964064|964065|964066|964067|964068|964156|964157|964167|964194|964268|964275|964278|964308|964334|964349|964357|964434|964458|964461|964466|964497|964535|964585|964601|964614|964617|964623|965290|965443|965458|965462|965463|965467|965469|965470|965477|965484|965485|965489|965493|965511|965513|965517|965520|965524|965525|965531|965532|965534|965535|965542|965560|965561|965563|965564|965570|965571|965572|965573|965574|965575|965576|965577|965579|965583|965584|965735|965736|965737|965738|965739|965740|965741|965742|965743|965744|965745|965746|965747|965748|966219|966220|966229|966230|966233|966234|966235|966237|966239|966240|966242|966245|966246|966247|966248|966249|966250|966254|966257|966259|966261|966262|966263|966265|966267|966268|966269|966270|966271|966272|966273|966274|966277|966280|966281|966282|966286|966287|966289|966291|966294|966296|966298|966300|966301|966305|966306|966308|966309|966314|966318|966319|966321|966337|966905|966906|966907|966908|966909|966910|966911|966912|966913|966914|966916|966917|966918|966919|966920|966921|966922|966923|966924|966925|966926|966927|966928|966929|966930|966931|966932|966933|966934|966935|966936|966937|966938|966939|966940|966941|966942|966943|966944|966945|966947|966948|966949|966950|966951|966952|966953|966954|966955|966956|966957|966958|966959|966960|966961|966962|966963|966964|966965|966966|966967|966968|966969|966970|966971|966972|966973|966974|966975|966976|966977|966978|966980|966981|966982|966983|966984|966985|966986|966987|966988|966989|966990|966991|966992|966993|966994|966995|966996|966997|966998|966999|967000|967001|967002|967003|967004|967005|967006|967007|967008|967009|967010|967011|967012|967013|967014|967015|967016|967017|967018|967019|967020|967021|967022|967023|967024|967025|967026|967027|967030|967031|967032|967033|967034|967035|967036|967037|967038|967039|967040|967041|967042|967043|967044|967045|967046|967047|967048|967249|967252|969330|969331|969332|969333|969334|969335|969336|969337|969338|969339|969340|969341|969342|969343|969344|969345|969346|969347|969348|969349|969350|969351|969352|969353|969354|969355|969356|969357|969358|969359|969360|969361|969362|969363|969364|969365|969366|969367|969368|969369|969370|969371|969372|969373|969374|969375|969376|969377|969378|969379|969380|969381|969382|969383|969384|969385|969386|969387|969388|969389|969390|969391|969392|969393|969394|969395|969396|969397|969398|969399|969400|969401|969402|969403|969404|969405|969406|969407|969408|969409|969410|969411|969412|969413|969414|969415|969416|969417|969418|969419|969420|969421|969422|969423|969424|969425|969426|969427|969428|969429|969430|969431|969432|969433|969434|969435|969436|969437|969438|969439|969440|969441|969442|969443|969444|969445|969446|969447|969448|969449|969450|969451|969452|969453|969454|969455|969456|969457|969458|969459|969460|969461|969462|969463|969464|969465|969466|969467|969468|969469|969470|969471|969472|969473|969474|969475|969476|969477|969478|969479|969480|969481|969482|969483|969484|969485|969486|969487|969488|969489|969490|969491|969492|969493|969494|969495|969496|969497|969498|969499|969500|969501|969502|969503|969504|969505|969506|969507|969508|969509|969510|969511|969512|969513|969514|969515|969516|969517|969518|969519|969520|969521|969525|969526|969527|969528|969529|969530|969531|969532|969533|969534|969535|969536|969537|969538|969539|969540|969541|969546|969759|969772|969777|969881|969887|969976|969977|969978|969979|969980|969981|969982|969983|969984|969985|969986|969987|969988|969989|969990|969991|969992|969993|969994|969995|969996|969997|969998|969999|970000|970001|970003|970258|970335|970359|970360|970361|970430|971289|971347|971384|971386|971388|971390|971392|971393|971397|971398|971399|971400|971402|971404|971407|971408|971409|971412|971413|971414|971415|971416|971420|971423|971425|971428|971429|971430|971432|971434|971438|971439|971447|971448|971449|971450|971452|971455|971456|971457|971458|971459|971462|971463|971464|971465|971470|971471|971472|971473|971474|971476|971478|971480|971481|971483|971484|971488|971489|971492|971493|971496|971497|971499|971501|976525|976699|977359|977360|980653|980654|980657|980658|980660|980661|980663|980673|980675|980676|980679|980681|980683|980684|980692|980693|980698|980699|980700|980702|980705|980707|980708|980709|980710|980711|980715|980716|980719|980724|980725|980726|980730|980736|980737|980738|980740|980747|980748|980749|980750|983685|983688|983691|983846|984026|984027|984028|984030|984031|984032|984033|984034|984035", "text": "Intellectual disability" }, { - "baseId": "15172", + "upstreamId": "15172", "text": "CYSTATHIONINE BETA-SYNTHETASE POLYMORPHISM" }, { - "baseId": "15173|15174|15175|15176|15177|174132|174688|190344|190346|229679|433987|615805|615806|799588", + "upstreamId": "15173|15174|15175|15176|15177|174132|174688|190344|190346|229679|433987|615805|615806|799588", "text": "Deafness, autosomal recessive 79" }, { - "baseId": "15178|15179|15180|15181|15182|15183|15184|206610|206611|206612|206613|206614|206615|206616|206617|206618|206619|206620|206621|206622|206623|206624|206625|206626|206627|206628|206629|206630|206634|206635|257436|257437|257440|257442|446305|446898|446899|469481|469482|469486|469495|469499|469501|469502|470542|470544|470546|470549|471043|471045|471051|471067|471502|471504|471505|471507|471513|471518|471530|481243|533720|533724|533730|533732|533736|533738|533741|533742|533754|534297|534303|534307|539010|571412|571416|571418|571420|572987|572991|573683|573685|573695|575139|575140|612166|612335|648849|648850|648851|648852|648853|648854|648855|648856|648857|648858|648859|648860|648861|648862|648863|653115|653643|654917|654918|694597|694598|694599|694600|694601|694602|694605|695853|742564|757711|773262|773264|773265|848612|848613|848614|848615|848616|848617|848618|848619|848620|848621|848622|848623|848624|848625|848626|848627|848628|861426|929266|929267|929268|929269|929270|929271|939058|939059|939060|940515|951180|951181|958922|958923|958924", + "upstreamId": "15178|15179|15180|15181|15182|15183|15184|206610|206611|206612|206613|206614|206615|206616|206617|206618|206619|206620|206621|206622|206623|206624|206625|206626|206627|206628|206629|206630|206634|206635|257436|257437|257440|257442|446305|446898|446899|469481|469482|469486|469495|469499|469501|469502|470542|470544|470546|470549|471043|471045|471051|471067|471502|471504|471505|471507|471513|471518|471530|481243|533720|533724|533730|533732|533736|533738|533741|533742|533754|534297|534303|534307|539010|571412|571416|571418|571420|572987|572991|573683|573685|573695|575139|575140|612166|612335|648849|648850|648851|648852|648853|648854|648855|648856|648857|648858|648859|648860|648861|648862|648863|653115|653643|654917|654918|694597|694598|694599|694600|694601|694602|694605|695853|742564|757711|773262|773264|773265|848612|848613|848614|848615|848616|848617|848618|848619|848620|848621|848622|848623|848624|848625|848626|848627|848628|861426|929266|929267|929268|929269|929270|929271|939058|939059|939060|940515|951180|951181|958922|958923|958924", "text": "Brown-Vialetto-Van Laere syndrome 1" }, { - "baseId": "15185|15186|15187|15188|15189|15190|15191|15192|15193|15194|15195|15196|15197|15198|15199|15200|15201|15202|15203|15204|15205|15206|15207|15208|15209|15210|15211|15212|15213|15214|15215|15216|15217|15218|15219|15220|15221|15222|70750|70751|70753|70754|70755|70758|70759|70760|70761|70762|70763|70764|70765|70767|70768|70769|70770|70771|70772|70773|70774|70775|70776|70777|70778|70779|70780|177892|190734|195866|309693|309697|309698|309706|309709|309710|314547|314550|314565|320614|320618|320619|320620|320624|320637|321119|321129|321131|321132|321135|321136|321139|360916|361582|437880|459717|460162|460174|460181|460185|525219|525530|545381|563616|564512|588588|590288|638770|638771|651951|692797|692799|692800|695471|723829|737391|759784|759906|767658|775452|783555|800691|818276|836691|836692|852231|865570|865571|865572|865573|865574|865575|865576|865577|865578|865579|865580|865581|865582|865583|865584|868456|925762|925763|925764|934977|940164|946836|946837|946838|956003|956004|956005|978624|978625|978626|978627|978628|978629|978630|978631|978632|978633", + "upstreamId": "15185|15186|15187|15188|15189|15190|15191|15192|15193|15194|15195|15196|15197|15198|15199|15200|15201|15202|15203|15204|15205|15206|15207|15208|15209|15210|15211|15212|15213|15214|15215|15216|15217|15218|15219|15220|15221|15222|70750|70751|70753|70754|70755|70758|70759|70760|70761|70762|70763|70764|70765|70767|70768|70769|70770|70771|70772|70773|70774|70775|70776|70777|70778|70779|70780|177892|190734|195866|309693|309697|309698|309706|309709|309710|314547|314550|314565|320614|320618|320619|320620|320624|320637|321119|321129|321131|321132|321135|321136|321139|360916|361582|437880|459717|460162|460174|460181|460185|525219|525530|545381|563616|564512|588588|590288|638770|638771|651951|692797|692799|692800|695471|723829|737391|759784|759906|767658|775452|783555|800691|818276|836691|836692|852231|865570|865571|865572|865573|865574|865575|865576|865577|865578|865579|865580|865581|865582|865583|865584|868456|925762|925763|925764|934977|940164|946836|946837|946838|956003|956004|956005|978624|978625|978626|978627|978628|978629|978630|978631|978632|978633", "text": "Ornithine aminotransferase deficiency" }, { - "baseId": "15201|15220", + "upstreamId": "15201|15220", "text": "Gyrate atrophy of choroid and retina with pyridoxine-responsive ornithinemia" }, { - "baseId": "15223|15224|15225|15226|106014|106015|106016|106018|106019|106024|106025|106026|106027|106028|106029|303758|303759|303760|303766|303768|307251|307253|307258|307261|307262|312127|312128|312207|312225|312232|359881|619920|620282|711227|898593|898594|898595|898596|898597|898598|898599|898600|898601|898602|898603|898604|898605|898606|898607|898608|900429|961046|961062", + "upstreamId": "15223|15224|15225|15226|106014|106015|106016|106018|106019|106024|106025|106026|106027|106028|106029|303758|303759|303760|303766|303768|307251|307253|307258|307261|307262|312127|312128|312207|312225|312232|359881|619920|620282|711227|898593|898594|898595|898596|898597|898598|898599|898600|898601|898602|898603|898604|898605|898606|898607|898608|900429|961046|961062", "text": "Dihydropyrimidinase deficiency" }, { - "baseId": "15227|15228|15229|15230|70572|191174|191175|191352|213775|251841|251842|251843|251844|271767|273301|296826|296837|296838|296839|296841|296842|296845|296846|296848|296849|296851|296852|296861|296866|296871|296873|296878|296880|296885|296892|296908|296909|296917|296919|296921|296925|296928|296932|296944|296960|298791|298792|298793|298794|298797|298798|298799|298803|298807|298808|298810|298812|298819|298820|298826|298828|298829|298830|298833|298835|298838|298840|298841|298850|298851|298852|298854|303002|303003|303009|303054|303058|303059|303060|303062|303063|303067|303088|303089|303090|303092|303094|303108|303111|303139|303141|303142|303148|303167|303168|303169|303170|303171|303172|303175|303178|303189|303198|303199|303201|303202|303204|303218|303226|303237|303251|303254|303261|303264|303266|303273|303277|303278|303279|303282|303288|303298|303303|303304|303306|488706|491270|493099|538377|709828|735009|788775|893877|893878|893879|893880|893881|893882|893883|893884|893885|893886|893887|893888|893889|893890|893891|893892|893893|893894|893895|893896|893897|893898|893899|893900|893901|893902|893903|893904|893905|893906|893907|893908|893909|893910|893911|893912|893913|893914|893915|893916|893917|893918|893919|893920|893921|893922|893923|893924|893925|893926|893927|893928|893929|893930|893931|893932|893933|893934|893935|893936|893937|893938|893939|893940|893941|893942|893943|893944|893945|893946|893947|893948|893949|893950|893951|893952|896077|896078", + "upstreamId": "15227|15228|15229|15230|70572|191174|191175|191352|213775|251841|251842|251843|251844|271767|273301|296826|296837|296838|296839|296841|296842|296845|296846|296848|296849|296851|296852|296861|296866|296871|296873|296878|296880|296885|296892|296908|296909|296917|296919|296921|296925|296928|296932|296944|296960|298791|298792|298793|298794|298797|298798|298799|298803|298807|298808|298810|298812|298819|298820|298826|298828|298829|298830|298833|298835|298838|298840|298841|298850|298851|298852|298854|303002|303003|303009|303054|303058|303059|303060|303062|303063|303067|303088|303089|303090|303092|303094|303108|303111|303139|303141|303142|303148|303167|303168|303169|303170|303171|303172|303175|303178|303189|303198|303199|303201|303202|303204|303218|303226|303237|303251|303254|303261|303264|303266|303273|303277|303278|303279|303282|303288|303298|303303|303304|303306|488706|491270|493099|538377|709828|735009|788775|893877|893878|893879|893880|893881|893882|893883|893884|893885|893886|893887|893888|893889|893890|893891|893892|893893|893894|893895|893896|893897|893898|893899|893900|893901|893902|893903|893904|893905|893906|893907|893908|893909|893910|893911|893912|893913|893914|893915|893916|893917|893918|893919|893920|893921|893922|893923|893924|893925|893926|893927|893928|893929|893930|893931|893932|893933|893934|893935|893936|893937|893938|893939|893940|893941|893942|893943|893944|893945|893946|893947|893948|893949|893950|893951|893952|896077|896078", "text": "Frank-Ter Haar syndrome" }, { - "baseId": "15231|553277", + "upstreamId": "15231|553277", "text": "Spinocerebellar ataxia type 8" }, { - "baseId": "15232|15233|15234|15235|53055|53056|53057|53058|173952|229177|293452|293455|293459|294857|298476|298478|298497|298501|298503|298550|298551|298553|298554|298567|513051|620164|890679|890680|890681|975781", + "upstreamId": "15232|15233|15234|15235|53055|53056|53057|53058|173952|229177|293452|293455|293459|294857|298476|298478|298497|298501|298503|298550|298551|298553|298554|298567|513051|620164|890679|890680|890681|975781", "text": "Deafness, autosomal recessive 25" }, { - "baseId": "15236|15236|15237|71023|71023|131828|131829|190353|190354|193481|214309|214310|214311|254216|254219|267184|274218|274218|314373|314380|320991|320993|320997|320998|320999|321003|327057|327058|327075|327082|327091|328152|328160|328166|357972|357973|357974|357975|357976|444839|490294|546039|546040|546321|546327|546451|546455|546462|546470|546472|546474|546667|546677|546686|546690|588035|588644|589661|687793|687794|695529|838578|838580|868159|868160|868161|868162|868163|868164|868165|868166|868167|868663|979013|979014|979015", + "upstreamId": "15236|15236|15237|71023|71023|131828|131829|190353|190354|193481|214309|214310|214311|254216|254219|267184|274218|274218|314373|314380|320991|320993|320997|320998|320999|321003|327057|327058|327075|327082|327091|328152|328160|328166|357972|357973|357974|357975|357976|444839|490294|546039|546040|546321|546327|546451|546455|546462|546470|546472|546474|546667|546677|546686|546690|588035|588644|589661|687793|687794|695529|838578|838580|868159|868160|868161|868162|868163|868164|868165|868166|868167|868663|979013|979014|979015", "text": "Joubert syndrome 2" }, { - "baseId": "15236|15236|15237|15238|15239|71023|71023|131828|131829|190353|190354|254216|254219|267184|274218|274218|314373|314380|320991|320993|320997|320998|320999|321003|327057|327058|327075|327082|327091|328152|328160|328166|357972|357973|357974|357975|357976|546039|546040|546321|546327|546451|546455|546462|546470|546472|546474|546667|546677|546686|546690|589661|868159|868160|868161|868162|868163|868164|868165|868166|868167|868663", + "upstreamId": "15236|15236|15237|15238|15239|71023|71023|131828|131829|190353|190354|254216|254219|267184|274218|274218|314373|314380|320991|320993|320997|320998|320999|321003|327057|327058|327075|327082|327091|328152|328160|328166|357972|357973|357974|357975|357976|546039|546040|546321|546327|546451|546455|546462|546470|546472|546474|546667|546677|546686|546690|589661|868159|868160|868161|868162|868163|868164|868165|868166|868167|868663", "text": "Meckel syndrome, type 2" }, { - "baseId": "15236|15237|15438|15439|15786|16108|16108|16109|16111|16113|16115|16115|16117|16117|16372|16376|16378|16381|16415|16416|16417|16422|16422|16430|16431|16431|16432|17049|17054|39859|40059|40137|49510|49525|49539|49564|70517|70940|70942|70951|70955|70955|71023|71256|71256|71263|71368|71369|71372|71373|71377|71378|71379|71401|71404|71406|71422|90149|91061|99436|99438|99439|99439|101414|101586|101587|101587|101588|101588|101589|101590|101590|101652|101653|102062|102064|102064|102066|102422|102423|102929|105736|105739|105741|105746|105748|105749|105750|105753|106469|106470|106471|106738|131759|131760|131761|131766|131768|131769|131772|131774|131779|131780|131781|131783|131784|131787|131789|131790|131794|131801|131804|131806|131807|131807|131809|131809|131811|131811|131812|131812|131815|131817|131818|131819|131820|131821|131823|131824|131826|131827|131828|131829|131831|131833|131834|131836|131839|133770|133771|133772|133773|133774|133775|133776|133777|134709|134710|134711|134712|134713|134714|134715|134716|134717|134718|134719|134720|134721|134722|134723|134724|140430|140431|140432|140433|152870|152874|153777|166167|168893|168894|168897|169944|169945|169946|169948|169949|169950|169951|169953|177011|177012|177013|177143|177234|177274|177275|177286|177406|177407|177418|177477|177556|177557|177558|177559|177569|177571|177572|177574|177624|178021|178098|181164|181446|186227|186227|186228|186262|186262|186263|186286|186289|187119|188890|190353|190354|190671|190783|190824|190880|190880|191063|191063|191068|191182|191183|191418|191581|191704|191705|191705|191726|191794|191795|191827|191879|191930|191933|191981|191982|191983|191984|192032|192033|192056|192150|192679|192691|192931|192993|192997|193066|193138|193138|193150|193197|193481|193638|193874|193875|193954|193955|193956|194205|194245|194246|194340|194464|194464|194668|194735|194758|195134|195422|195423|195425|195426|195571|195612|195613|195754|195923|195923|196042|196300|200983|205194|205331|207109|207113|207326|207656|207657|207658|207935|207940|207998|208003|208284|208285|208288|208288|208403|208884|208885|212357|212518|212519|212651|212652|212653|212654|212657|212658|212991|212992|213013|213014|213015|213016|213495|214172|214177|214179|214182|214183|214187|214189|214193|214194|214194|214196|214231|214237|214240|214244|214249|214251|214252|214256|214280|214282|214295|214296|214297|214298|214299|214300|214301|214302|214303|214304|214305|214306|214307|214309|214310|214312|214313|214314|214315|214316|214317|214318|214319|214320|214322|214325|214326|214327|214328|214329|214330|214335|214336|214337|214338|214340|214342|214343|214356|214357|214357|214358|214359|214360|214361|214362|214363|214364|214364|214365|214366|214367|214368|214369|214370|214371|214372|214373|215459|215540|215782|221627|221800|221801|222203|222267|222267|222490|222686|222687|222882|237020|237090|237107|237317|237317|237473|238059|238061|239335|239337|239339|239340|239341|239342|239893|239894|240433|241226|241237|241249|241579|241580|241581|241582|242442|242442|242443|242615|242824|242825|243343|243721|243764|243896|243906|247084|248681|248682|250481|251352|251360|252123|252125|252129|252133|252138|252139|252141|252619|253195|253203|253207|253212|253472|253479|253480|254410|254445|254734|254740|254742|254760|254761|254762|254763|255806|255806|255811|255814|255815|255817|256098|256100|256102|256103|256285|256287|256291|257135|257137|257138|260117|260117|264538|264717|265351|265360|265487|265781|265876|266004|266616|266978|267031|267183|267184|267823|268040|268059|268059|268140|268166|268659|269093|269621|269753|269778|270185|270311|270778|270862|270917|271121|271206|271215|271215|271427|271440|271483|271597|271830|272079|272162|272794|272796|272797|272946|273009|273848|274218|274283|274669|275383|275392|275428|281544|282439|282504|283168|283170|284646|284675|284750|285195|285200|285204|286616|287044|287046|287748|291780|292623|292626|294001|294003|294005|294012|297390|297399|297424|297442|297472|299158|299165|299569|299628|301559|301562|301563|301576|301892|301897|301914|301920|301945|303750|304072|305057|305059|305936|305941|306008|307615|307651|307654|309703|309704|309741|309878|311897|314352|314353|314370|315372|315373|315532|316255|316266|316275|317954|317960|317965|317968|318585|318587|318602|318604|318607|320971|320975|320998|320999|323293|323618|323621|323625|325641|325647|325653|325653|325654|325654|326794|326805|326807|326830|326833|326850|326864|326876|327058|328107|328108|328109|328111|328116|328119|328121|328160|329161|329378|329753|329769|331024|332974|332978|332983|332990|332993|332994|334647|334649|334650|334653|334658|335303|335303|335321|335321|335322|335322|341790|341797|341797|341803|341803|343285|343285|343286|343287|343293|343298|345182|346576|346578|346584|353542|353701|357972|358457|359929|360055|360113|361484|363655|363660|363771|364169|367958|368348|368355|368357|368862|368864|368871|370192|370732|372581|372585|373261|373475|373481|375447|375452|375454|389204|393999|394140|395169|396651|396740|396747|396957|397048|398683|398862|399209|401190|401253|401960|401960|401967|401969|401974|402124|404091|404096|404098|404102|404456|404459|404499|406406|406408|406410|406411|406417|408757|408759|408763|408764|408765|408768|408769|408770|408772|409650|409651|415175|415498|415498|419004|419005|419006|419007|419008|419010|419011|419012|419013|420432|420433|420434|421479|423858|426028|428522|429461|429462|429950|429991|431772|433122|438708|438996|443884|445093|445097|445099|445588|445832|453023|453312|453406|453407|453805|453806|455300|455390|455758|455964|455966|455967|458103|458716|458921|459740|461608|461841|462217|462224|462475|462506|462513|462515|462516|462765|462769|463244|463251|463260|463263|463267|463268|463350|463355|463358|463360|466388|466493|466500|466502|467057|467368|468248|468480|468823|469855|470391|470506|470513|470926|471310|471312|471748|471751|471755|471990|472067|472068|472069|472070|488833|489058|489186|489341|489361|489372|489382|489383|489462|490151|490265|490294|490297|490946|491255|491410|491604|491604|491627|492196|492648|492651|492965|493445|494220|495514|497478|500929|501165|503188|504099|504663|504668|508343|508512|513323|513558|513575|513637|514649|514650|520063|521727|522028|524078|524343|524669|524676|524824|526672|526917|526957|527372|527391|527394|527399|527405|527407|527409|527410|527670|527673|527675|527917|527929|527931|527940|527942|530034|530041|530184|530188|530188|530351|530360|530364|530564|530565|531270|531444|531533|534556|534569|534570|535050|535051|536196|536908|536949|536950|539151|546462|548273|548558|548579|549492|559619|559621|559782|561966|562548|563035|563049|563539|563542|563543|563546|563782|565045|565230|565442|565737|565744|566400|567079|567083|567084|568182|568185|568186|568259|568264|568828|570303|571310|571722|571728|572093|572096|572100|572243|572252|573606|574322|574534|575335|575336|575337|575338|578475|582385|582385|582740|582794|582828|583685|583686|584729|584731|584821|585568|585858|586068|586349|587041|587551|588033|588426|588644|588824|588934|588955|609863|610526|610527|610528|612725|620156|622340|622900|623936|632054|632055|632056|632057|632058|632059|632060|634639|634640|634641|634642|637487|637488|637489|637490|637491|637492|637493|640633|641414|641415|641416|641417|641418|641419|641420|641421|641422|641423|641424|641425|641426|641427|641428|641429|641430|641431|641432|641433|641434|641435|644748|644749|644750|644751|644752|644753|644754|644755|644756|644757|645399|646234|646235|646236|646237|649729|649732|649733|651165|651183|651634|652345|652351|652570|653030|653635|654238|654381|656190|667259|670734|672202|678064|681862|682111|683762|683763|683764|683765|683766|683767|684067|684069|684070|684284|684285|684313|684354|684355|684356|684357|684358|684359|684600|684600|684601|684601|684602|684603|684603|684604|684604|684605|684605|684664|684665|684691|684692|684693|684821|685192|685245|685251|685252|685384|685385|685386|685419|686506|686507|686805|686806|686807|687436|687438|687792|687793|687794|687916|687918|688057|688058|688059|688061|688062|688063|688064|688065|688066|688067|688068|688069|688070|688072|688073|688075|688607|688607|688608|688608|688609|688611|688611|688612|688612|688613|688614|688614|688615|688795|688796|688797|688798|688799|688800|688801|688802|689064|689814|689815|689816|690055|690056|690142|690142|690143|690144|690144|690180|690181|691524|692637|693293|693294|693295|693296|693297|693299|693893|693894|693895|693895|694136|694789|694790|695529|695585|695699|695761|725297|725299|738885|744923|753623|753624|753625|755982|760254|767289|769332|770950|770950|770952|770953|776130|779208|784272|784273|784484|785298|785301|785651|791285|795546|796876|797341|797343|799078|801910|818725|818799|819429|819457|819664|819665|820098|820099|820100|820389|820443|820449|820450|820451|820526|820527|820836|820837|820838|821109|821563|828898|828899|828900|828901|828902|828903|828904|828905|828906|828907|828908|828909|828910|828911|831577|831578|831579|831580|831581|831582|831583|831584|831585|831586|831587|831588|831589|831590|831591|831592|831593|831594|831595|831596|831597|831598|831599|831600|831601|831602|831603|831604|831605|831606|831607|835149|835150|835151|835152|835848|835849|835850|835851|835852|835853|835854|835855|835856|835857|835858|835859|835860|835861|835862|835863|835864|835865|835866|835867|835868|835869|835870|835871|835872|838578|838579|838580|839310|839311|839312|839313|840342|840343|840344|840345|840346|840347|840348|840349|840350|840351|840352|840353|840354|840355|840356|840357|840358|840359|840360|840361|840362|840363|840364|840365|840366|840367|840368|840369|840370|840371|840372|840373|840374|840375|840376|840377|840378|840379|840380|840381|840382|840383|840384|840385|840386|840387|840388|840389|840390|840391|840392|840393|840394|840395|840396|840397|840398|840399|840400|843965|843966|843966|843967|843968|843969|843970|843971|843971|843972|843973|843974|843975|843976|843976|843977|843978|843979|843980|843981|843982|843982|843983|843983|843984|843984|843985|843985|843986|843987|843988|843989|843990|843990|843991|843992|843993|843994|843995|843995|843996|843996|843997|843997|843998|845654|845655|845656|845657|845658|845659|845660|845661|845662|845663|845664|845665|845666|845667|845668|847725|849684|849685|849686|849687|849688|849689|850970|851060|851062|851114|851316|851493|851523|851525|851594|851959|852229|852248|852501|852502|852506|852510|852654|852666|852702|852821|852823|852892|856412|856419|856630|856758|856762|856766|856767|870502|870505|870508|870516|870517|875432|875433|875437|877956|880551|890323|890328|895435|895438|895441|901539|901540|906233|906261|906275|919663|919664|920320|923448|923449|923450|924265|925501|925502|925503|926464|926752|926753|926754|926755|926756|926757|926758|926759|926760|926761|926762|926763|926764|926765|927849|927850|927851|927852|927853|927854|927855|927856|928087|928088|928386|928387|928388|928389|928390|929581|932220|932221|932222|932223|932224|932225|932226|932227|932228|932229|932230|932231|932232|933182|933183|933184|933185|933186|933187|933188|933189|934444|934445|934446|934447|934655|934656|934657|934658|934659|934660|934661|934662|934663|934664|934665|935606|935937|936284|936285|936286|936287|936288|936289|936290|936291|936292|936293|936294|936295|936296|936297|936298|936299|937486|937487|937488|937489|937490|937490|937491|937492|938036|938037|938038|938039|938040|938041|938042|938043|939454|939456|939960|940030|940141|940220|940275|940360|941022|941023|943859|943860|943861|943862|943863|943864|943865|943866|943867|943868|943869|943870|943871|943872|943873|943874|943875|943876|943877|944890|944891|944892|944893|944894|944895|944896|944897|944898|944899|946507|946508|946509|946510|946511|946512|946513|946514|946515|946516|946517|946518|947507|948179|948180|948181|948182|948183|948184|948185|948186|948187|948188|948189|948190|948191|948192|948193|948194|948195|948196|948197|948198|948199|948200|948201|948202|948203|948204|948205|948206|948207|948208|948209|948210|948211|948212|948213|948214|948215|948216|949431|949432|949433|949434|949435|949436|949437|949737|950046|950047|950048|950049|951628|953695|953696|953697|953698|953699|953700|953701|953702|953703|953704|953705|953706|954374|954375|954376|954377|954378|954379|954380|955756|955757|955758|955759|955760|955761|955762|955763|956536|956961|956962|956963|956964|956965|956966|956967|956968|956969|956970|956971|956972|956973|956974|956975|956976|956977|956978|956979|956980|956981|956982|956983|956984|956985|956986|956987|957788|957788|957789|957790|957790|957791|957792|957793|957794|957795|957796|957797|957798|957799|957800|957801|957801|957802|957803|957804|957805|957806|957806|958008|958196|958197|958198|958199|958200|958201|958202|959173|959174|959714|959799|959993|960061|960062|960063|960064|960529|960530|960680|960681|960793|960890|967126|967127|967128|967129|967130|967131|967143|971592|971593|971595|972522|972615|979768|979769|979770|979771|979772|979773|979774|979775|979776|979777|979778|979779|979780|979781|979782|979783|979784|979785|979786|979787|979788|979789|979790|979791|979792|979793|979794|979795|979796|979797|979798|979799|979800|979801|979802|979803", + "upstreamId": "15236|15237|15438|15439|15786|16108|16108|16109|16111|16113|16115|16115|16117|16117|16372|16376|16378|16381|16415|16416|16417|16422|16422|16430|16431|16431|16432|17049|17054|39859|40059|40137|49510|49525|49539|49564|70517|70940|70942|70951|70955|70955|71023|71256|71256|71263|71368|71369|71372|71373|71377|71378|71379|71401|71404|71406|71422|90149|91061|99436|99438|99439|99439|101414|101586|101587|101587|101588|101588|101589|101590|101590|101652|101653|102062|102064|102064|102066|102422|102423|102929|105736|105739|105741|105746|105748|105749|105750|105753|106469|106470|106471|106738|131759|131760|131761|131766|131768|131769|131772|131774|131779|131780|131781|131783|131784|131787|131789|131790|131794|131801|131804|131806|131807|131807|131809|131809|131811|131811|131812|131812|131815|131817|131818|131819|131820|131821|131823|131824|131826|131827|131828|131829|131831|131833|131834|131836|131839|133770|133771|133772|133773|133774|133775|133776|133777|134709|134710|134711|134712|134713|134714|134715|134716|134717|134718|134719|134720|134721|134722|134723|134724|140430|140431|140432|140433|152870|152874|153777|166167|168893|168894|168897|169944|169945|169946|169948|169949|169950|169951|169953|177011|177012|177013|177143|177234|177274|177275|177286|177406|177407|177418|177477|177556|177557|177558|177559|177569|177571|177572|177574|177624|178021|178098|181164|181446|186227|186227|186228|186262|186262|186263|186286|186289|187119|188890|190353|190354|190671|190783|190824|190880|190880|191063|191063|191068|191182|191183|191418|191581|191704|191705|191705|191726|191794|191795|191827|191879|191930|191933|191981|191982|191983|191984|192032|192033|192056|192150|192679|192691|192931|192993|192997|193066|193138|193138|193150|193197|193481|193638|193874|193875|193954|193955|193956|194205|194245|194246|194340|194464|194464|194668|194735|194758|195134|195422|195423|195425|195426|195571|195612|195613|195754|195923|195923|196042|196300|200983|205194|205331|207109|207113|207326|207656|207657|207658|207935|207940|207998|208003|208284|208285|208288|208288|208403|208884|208885|212357|212518|212519|212651|212652|212653|212654|212657|212658|212991|212992|213013|213014|213015|213016|213495|214172|214177|214179|214182|214183|214187|214189|214193|214194|214194|214196|214231|214237|214240|214244|214249|214251|214252|214256|214280|214282|214295|214296|214297|214298|214299|214300|214301|214302|214303|214304|214305|214306|214307|214309|214310|214312|214313|214314|214315|214316|214317|214318|214319|214320|214322|214325|214326|214327|214328|214329|214330|214335|214336|214337|214338|214340|214342|214343|214356|214357|214357|214358|214359|214360|214361|214362|214363|214364|214364|214365|214366|214367|214368|214369|214370|214371|214372|214373|215459|215540|215782|221627|221800|221801|222203|222267|222267|222490|222686|222687|222882|237020|237090|237107|237317|237317|237473|238059|238061|239335|239337|239339|239340|239341|239342|239893|239894|240433|241226|241237|241249|241579|241580|241581|241582|242442|242442|242443|242615|242824|242825|243343|243721|243764|243896|243906|247084|248681|248682|250481|251352|251360|252123|252125|252129|252133|252138|252139|252141|252619|253195|253203|253207|253212|253472|253479|253480|254410|254445|254734|254740|254742|254760|254761|254762|254763|255806|255806|255811|255814|255815|255817|256098|256100|256102|256103|256285|256287|256291|257135|257137|257138|260117|260117|264538|264717|265351|265360|265487|265781|265876|266004|266616|266978|267031|267183|267184|267823|268040|268059|268059|268140|268166|268659|269093|269621|269753|269778|270185|270311|270778|270862|270917|271121|271206|271215|271215|271427|271440|271483|271597|271830|272079|272162|272794|272796|272797|272946|273009|273848|274218|274283|274669|275383|275392|275428|281544|282439|282504|283168|283170|284646|284675|284750|285195|285200|285204|286616|287044|287046|287748|291780|292623|292626|294001|294003|294005|294012|297390|297399|297424|297442|297472|299158|299165|299569|299628|301559|301562|301563|301576|301892|301897|301914|301920|301945|303750|304072|305057|305059|305936|305941|306008|307615|307651|307654|309703|309704|309741|309878|311897|314352|314353|314370|315372|315373|315532|316255|316266|316275|317954|317960|317965|317968|318585|318587|318602|318604|318607|320971|320975|320998|320999|323293|323618|323621|323625|325641|325647|325653|325653|325654|325654|326794|326805|326807|326830|326833|326850|326864|326876|327058|328107|328108|328109|328111|328116|328119|328121|328160|329161|329378|329753|329769|331024|332974|332978|332983|332990|332993|332994|334647|334649|334650|334653|334658|335303|335303|335321|335321|335322|335322|341790|341797|341797|341803|341803|343285|343285|343286|343287|343293|343298|345182|346576|346578|346584|353542|353701|357972|358457|359929|360055|360113|361484|363655|363660|363771|364169|367958|368348|368355|368357|368862|368864|368871|370192|370732|372581|372585|373261|373475|373481|375447|375452|375454|389204|393999|394140|395169|396651|396740|396747|396957|397048|398683|398862|399209|401190|401253|401960|401960|401967|401969|401974|402124|404091|404096|404098|404102|404456|404459|404499|406406|406408|406410|406411|406417|408757|408759|408763|408764|408765|408768|408769|408770|408772|409650|409651|415175|415498|415498|419004|419005|419006|419007|419008|419010|419011|419012|419013|420432|420433|420434|421479|423858|426028|428522|429461|429462|429950|429991|431772|433122|438708|438996|443884|445093|445097|445099|445588|445832|453023|453312|453406|453407|453805|453806|455300|455390|455758|455964|455966|455967|458103|458716|458921|459740|461608|461841|462217|462224|462475|462506|462513|462515|462516|462765|462769|463244|463251|463260|463263|463267|463268|463350|463355|463358|463360|466388|466493|466500|466502|467057|467368|468248|468480|468823|469855|470391|470506|470513|470926|471310|471312|471748|471751|471755|471990|472067|472068|472069|472070|488833|489058|489186|489341|489361|489372|489382|489383|489462|490151|490265|490294|490297|490946|491255|491410|491604|491604|491627|492196|492648|492651|492965|493445|494220|495514|497478|500929|501165|503188|504099|504663|504668|508343|508512|513323|513558|513575|513637|514649|514650|520063|521727|522028|524078|524343|524669|524676|524824|526672|526917|526957|527372|527391|527394|527399|527405|527407|527409|527410|527670|527673|527675|527917|527929|527931|527940|527942|530034|530041|530184|530188|530188|530351|530360|530364|530564|530565|531270|531444|531533|534556|534569|534570|535050|535051|536196|536908|536949|536950|539151|546462|548273|548558|548579|549492|559619|559621|559782|561966|562548|563035|563049|563539|563542|563543|563546|563782|565045|565230|565442|565737|565744|566400|567079|567083|567084|568182|568185|568186|568259|568264|568828|570303|571310|571722|571728|572093|572096|572100|572243|572252|573606|574322|574534|575335|575336|575337|575338|578475|582385|582385|582740|582794|582828|583685|583686|584729|584731|584821|585568|585858|586068|586349|587041|587551|588033|588426|588644|588824|588934|588955|609863|610526|610527|610528|612725|620156|622340|622900|623936|632054|632055|632056|632057|632058|632059|632060|634639|634640|634641|634642|637487|637488|637489|637490|637491|637492|637493|640633|641414|641415|641416|641417|641418|641419|641420|641421|641422|641423|641424|641425|641426|641427|641428|641429|641430|641431|641432|641433|641434|641435|644748|644749|644750|644751|644752|644753|644754|644755|644756|644757|645399|646234|646235|646236|646237|649729|649732|649733|651165|651183|651634|652345|652351|652570|653030|653635|654238|654381|656190|667259|670734|672202|678064|681862|682111|683762|683763|683764|683765|683766|683767|684067|684069|684070|684284|684285|684313|684354|684355|684356|684357|684358|684359|684600|684600|684601|684601|684602|684603|684603|684604|684604|684605|684605|684664|684665|684691|684692|684693|684821|685192|685245|685251|685252|685384|685385|685386|685419|686506|686507|686805|686806|686807|687436|687438|687792|687793|687794|687916|687918|688057|688058|688059|688061|688062|688063|688064|688065|688066|688067|688068|688069|688070|688072|688073|688075|688607|688607|688608|688608|688609|688611|688611|688612|688612|688613|688614|688614|688615|688795|688796|688797|688798|688799|688800|688801|688802|689064|689814|689815|689816|690055|690056|690142|690142|690143|690144|690144|690180|690181|691524|692637|693293|693294|693295|693296|693297|693299|693893|693894|693895|693895|694136|694789|694790|695529|695585|695699|695761|725297|725299|738885|744923|753623|753624|753625|755982|760254|767289|769332|770950|770950|770952|770953|776130|779208|784272|784273|784484|785298|785301|785651|791285|795546|796876|797341|797343|799078|801910|818725|818799|819429|819457|819664|819665|820098|820099|820100|820389|820443|820449|820450|820451|820526|820527|820836|820837|820838|821109|821563|828898|828899|828900|828901|828902|828903|828904|828905|828906|828907|828908|828909|828910|828911|831577|831578|831579|831580|831581|831582|831583|831584|831585|831586|831587|831588|831589|831590|831591|831592|831593|831594|831595|831596|831597|831598|831599|831600|831601|831602|831603|831604|831605|831606|831607|835149|835150|835151|835152|835848|835849|835850|835851|835852|835853|835854|835855|835856|835857|835858|835859|835860|835861|835862|835863|835864|835865|835866|835867|835868|835869|835870|835871|835872|838578|838579|838580|839310|839311|839312|839313|840342|840343|840344|840345|840346|840347|840348|840349|840350|840351|840352|840353|840354|840355|840356|840357|840358|840359|840360|840361|840362|840363|840364|840365|840366|840367|840368|840369|840370|840371|840372|840373|840374|840375|840376|840377|840378|840379|840380|840381|840382|840383|840384|840385|840386|840387|840388|840389|840390|840391|840392|840393|840394|840395|840396|840397|840398|840399|840400|843965|843966|843966|843967|843968|843969|843970|843971|843971|843972|843973|843974|843975|843976|843976|843977|843978|843979|843980|843981|843982|843982|843983|843983|843984|843984|843985|843985|843986|843987|843988|843989|843990|843990|843991|843992|843993|843994|843995|843995|843996|843996|843997|843997|843998|845654|845655|845656|845657|845658|845659|845660|845661|845662|845663|845664|845665|845666|845667|845668|847725|849684|849685|849686|849687|849688|849689|850970|851060|851062|851114|851316|851493|851523|851525|851594|851959|852229|852248|852501|852502|852506|852510|852654|852666|852702|852821|852823|852892|856412|856419|856630|856758|856762|856766|856767|870502|870505|870508|870516|870517|875432|875433|875437|877956|880551|890323|890328|895435|895438|895441|901539|901540|906233|906261|906275|919663|919664|920320|923448|923449|923450|924265|925501|925502|925503|926464|926752|926753|926754|926755|926756|926757|926758|926759|926760|926761|926762|926763|926764|926765|927849|927850|927851|927852|927853|927854|927855|927856|928087|928088|928386|928387|928388|928389|928390|929581|932220|932221|932222|932223|932224|932225|932226|932227|932228|932229|932230|932231|932232|933182|933183|933184|933185|933186|933187|933188|933189|934444|934445|934446|934447|934655|934656|934657|934658|934659|934660|934661|934662|934663|934664|934665|935606|935937|936284|936285|936286|936287|936288|936289|936290|936291|936292|936293|936294|936295|936296|936297|936298|936299|937486|937487|937488|937489|937490|937490|937491|937492|938036|938037|938038|938039|938040|938041|938042|938043|939454|939456|939960|940030|940141|940220|940275|940360|941022|941023|943859|943860|943861|943862|943863|943864|943865|943866|943867|943868|943869|943870|943871|943872|943873|943874|943875|943876|943877|944890|944891|944892|944893|944894|944895|944896|944897|944898|944899|946507|946508|946509|946510|946511|946512|946513|946514|946515|946516|946517|946518|947507|948179|948180|948181|948182|948183|948184|948185|948186|948187|948188|948189|948190|948191|948192|948193|948194|948195|948196|948197|948198|948199|948200|948201|948202|948203|948204|948205|948206|948207|948208|948209|948210|948211|948212|948213|948214|948215|948216|949431|949432|949433|949434|949435|949436|949437|949737|950046|950047|950048|950049|951628|953695|953696|953697|953698|953699|953700|953701|953702|953703|953704|953705|953706|954374|954375|954376|954377|954378|954379|954380|955756|955757|955758|955759|955760|955761|955762|955763|956536|956961|956962|956963|956964|956965|956966|956967|956968|956969|956970|956971|956972|956973|956974|956975|956976|956977|956978|956979|956980|956981|956982|956983|956984|956985|956986|956987|957788|957788|957789|957790|957790|957791|957792|957793|957794|957795|957796|957797|957798|957799|957800|957801|957801|957802|957803|957804|957805|957806|957806|958008|958196|958197|958198|958199|958200|958201|958202|959173|959174|959714|959799|959993|960061|960062|960063|960064|960529|960530|960680|960681|960793|960890|967126|967127|967128|967129|967130|967131|967143|971592|971593|971595|972522|972615|979768|979769|979770|979771|979772|979773|979774|979775|979776|979777|979778|979779|979780|979781|979782|979783|979784|979785|979786|979787|979788|979789|979790|979791|979792|979793|979794|979795|979796|979797|979798|979799|979800|979801|979802|979803", "text": "Joubert syndrome" }, { - "baseId": "15236|71023", + "upstreamId": "15236|71023", "text": "TMEM216-Related Disorders" }, { - "baseId": "15240|15241|15242|33438|166127|488186|488187|488188|488189|488190|488191|488192|488193|488194|488195|488196|488197|488198|488199|488200|488201|488202|488203|550626|614428|715000|788899|937523", + "upstreamId": "15240|15241|15242|33438|166127|488186|488187|488188|488189|488190|488191|488192|488193|488194|488195|488196|488197|488198|488199|488200|488201|488202|488203|550626|614428|715000|788899|937523", "text": "Poikiloderma with neutropenia" }, { - "baseId": "15243|15244|15245|15246|442563", + "upstreamId": "15243|15244|15245|15246|442563", "text": "Thyrotoxic periodic paralysis 2" }, { - "baseId": "15243|15244|15246|32666|32667|32668|152920|152921|152923|152924|152925|152926|447524|447676|556752|576456", + "upstreamId": "15243|15244|15246|32666|32667|32668|152920|152921|152923|152924|152925|152926|447524|447676|556752|576456", "text": "Thyrotoxic periodic paralysis, susceptibility to, 1" }, { - "baseId": "15247|15248|15250|15251|15252|15253|15254|15255|15256|15257|206589|206590|333091|333095|333098|333102|333104|333116|333117|333119|333120|333123|333124|333125|343197|343199|343206|343207|343212|343215|343216|343218|343220|343225|343228|343230|343232|343234|343243|348563|348564|348565|348566|348567|348569|348572|348575|348577|348578|348585|348586|349644|349646|349647|349649|349650|349652|349653|349656|349659|349660|349661|349663|349664|349665|349666|513660|587745|716363|716364|716365|716369|792814|798744|798745|880271|880272|880273|880274|880275|880276|880277|880278|880279|880280|880281|880282|880283|880284|880285|880286|880287|880727|880728", + "upstreamId": "15247|15248|15250|15251|15252|15253|15254|15255|15256|15257|206589|206590|333091|333095|333098|333102|333104|333116|333117|333119|333120|333123|333124|333125|343197|343199|343206|343207|343212|343215|343216|343218|343220|343225|343228|343230|343232|343234|343243|348563|348564|348565|348566|348567|348569|348572|348575|348577|348578|348585|348586|349644|349646|349647|349649|349650|349652|349653|349656|349659|349660|349661|349663|349664|349665|349666|513660|587745|716363|716364|716365|716369|792814|798744|798745|880271|880272|880273|880274|880275|880276|880277|880278|880279|880280|880281|880282|880283|880284|880285|880286|880287|880727|880728", "text": "Prolidase deficiency" }, { - "baseId": "15258", + "upstreamId": "15258", "text": "Aspartylglucosaminuria, finnish type" }, { - "baseId": "15258|15259|15260|15261|15262|15263|15264|15265|15266|15267|15268|70577|70578|70579|70580|70581|70582|70583|70584|70585|70586|70587|70588|70589|70590|70591|70592|70593|98218|98219|98220|98221|186679|251371|274821|275494|292917|292920|292921|294280|294289|294294|294295|294296|294298|294300|297725|297726|297728|297735|297737|297738|297739|297747|297749|297820|297823|297829|297836|297837|297838|297839|297850|357328|357329|357330|357331|357332|357333|357334|357335|357336|359615|364242|367915|414968|487014|520079|543094|543096|543097|543366|543372|543382|543383|543388|543390|543392|543429|543441|563591|581752|612269|626142|632092|632093|651166|698437|709240|720841|734523|764382|764384|764385|764386|774894|777471|781902|781903|819465|828960|828961|828962|828963|828964|890484|890485|890486|890487|890488|890489|890490|890491|890492|890493|890494|890495|890496|890497|890498|890499|890500|891777|920201|939965|943904|943905|943906|953724|953725|978059|978060|978061|978062|978063|978064|978065|978066|978067|978068", + "upstreamId": "15258|15259|15260|15261|15262|15263|15264|15265|15266|15267|15268|70577|70578|70579|70580|70581|70582|70583|70584|70585|70586|70587|70588|70589|70590|70591|70592|70593|98218|98219|98220|98221|186679|251371|274821|275494|292917|292920|292921|294280|294289|294294|294295|294296|294298|294300|297725|297726|297728|297735|297737|297738|297739|297747|297749|297820|297823|297829|297836|297837|297838|297839|297850|357328|357329|357330|357331|357332|357333|357334|357335|357336|359615|364242|367915|414968|487014|520079|543094|543096|543097|543366|543372|543382|543383|543388|543390|543392|543429|543441|563591|581752|612269|626142|632092|632093|651166|698437|709240|720841|734523|764382|764384|764385|764386|774894|777471|781902|781903|819465|828960|828961|828962|828963|828964|890484|890485|890486|890487|890488|890489|890490|890491|890492|890493|890494|890495|890496|890497|890498|890499|890500|891777|920201|939965|943904|943905|943906|953724|953725|978059|978060|978061|978062|978063|978064|978065|978066|978067|978068", "text": "Aspartylglucosaminuria" }, { - "baseId": "15269|514848|514849", + "upstreamId": "15269|514848|514849", "text": "Methemoglobinemia type 4" }, { - "baseId": "15270|15271|15272|171258|322861|322863|322864|322866|322867|322868|322874|322923|322926|322927|322945|322946|322958|322959|322963|322970|322975|332379|332385|332386|332393|332398|332435|332450|332454|332477|332479|332489|332501|332507|332513|332514|332516|339412|339420|339438|339441|339457|339467|339480|340805|340807|340823|340845|340864|340877|340881|340889|340893|340894|340899|340900|340915|340916|513221|513223|620873|873806|873808|873809|873810|873811|873812|873813|873814|873815|873816|873817|873818|873819|873820|873821|873822|873823|873825|873826|873827|873828|873829|873830|873831|873833|873834|873835|873836|873837|873838|873839|873840|873841|873842|873843|873844|873845|873846|873847|873848|873849|873850|873851|873852|873853|873854|873855|873856|873857|873858|873859|873860|873861|873862|873863|873864|873865|873866|873867|873868|873869|873870|873871|873872|873873|873874|873875|876538|876539|876541|876542|876543", + "upstreamId": "15270|15271|15272|171258|322861|322863|322864|322866|322867|322868|322874|322923|322926|322927|322945|322946|322958|322959|322963|322970|322975|332379|332385|332386|332393|332398|332435|332450|332454|332477|332479|332489|332501|332507|332513|332514|332516|339412|339420|339438|339441|339457|339467|339480|340805|340807|340823|340845|340864|340877|340881|340889|340893|340894|340899|340900|340915|340916|513221|513223|620873|873806|873808|873809|873810|873811|873812|873813|873814|873815|873816|873817|873818|873819|873820|873821|873822|873823|873825|873826|873827|873828|873829|873830|873831|873833|873834|873835|873836|873837|873838|873839|873840|873841|873842|873843|873844|873845|873846|873847|873848|873849|873850|873851|873852|873853|873854|873855|873856|873857|873858|873859|873860|873861|873862|873863|873864|873865|873866|873867|873868|873869|873870|873871|873872|873873|873874|873875|876538|876539|876541|876542|876543", "text": "Amelogenesis imperfecta, hypomaturation type, IIA3" }, { - "baseId": "15273|15277|15278|15279|15280|15281|15282|15284|15286|15287", + "upstreamId": "15273|15277|15278|15279|15280|15281|15282|15284|15286|15287", "text": "Methemoglobinemia type 2" }, { - "baseId": "15274|15275|15276|15285|15288|15289|15290|15291|798115|815836|815837|815838", + "upstreamId": "15274|15275|15276|15285|15288|15289|15290|15291|798115|815836|815837|815838", "text": "Methemoglobinemia, type I" }, { - "baseId": "15283", + "upstreamId": "15283", "text": "NADH-CYTOCHROME b5 REDUCTASE POLYMORPHISM" }, { - "baseId": "15284|789808|977297", + "upstreamId": "15284|789808|977297", "text": "Deficiency of cytochrome-b5 reductase" }, { - "baseId": "15292|15293|15294|15295|15296|15297|15298|15299|15300|15301|139203|139204|139205|139208|139210|139211|139212|139213|139214|139215|139216|139217|139218|139219|139220|139221|139222|139223|139224|139225|139226|139228|139229|139230|139231|187973|187974|187975|187976|187978|187980|250968|250969|250971|250975|262034|262035|262036|288985|288989|288990|288994|288999|289717|289718|289736|289737|289740|289741|289742|289744|289748|292706|292719|292735|292745|292757|292759|292768|292777|292778|292971|292972|292973|292979|292990|292991|293016|293035|293036|432247|487043|542797|542798|542803|542805|542808|542809|542812|542813|542815|542951|542956|542964|542971|542973|542977|542983|542987|542991|542992|542993|542995|542996|542997|542999|543000|543001|543002|543003|543005|543007|543009|543010|543011|543012|543014|543016|543018|543019|543020|543024|543025|543026|543028|543030|543032|543035|543036|543038|543040|543047|543049|543052|543055|543059|543061|543062|543064|543065|543068|543069|543071|543073|543077|543087|552070|623133|683544|683546|720219|720220|720222|733843|733846|759237|763662|781572|790339|790340|792734|888054|888055|888056|888057|888058|888059|888060|888061|888062|888063|888064|888065|888066|888067|888068|888069|888070|888071|888072|888073|888074|888075|888076|888077|888078|888079|888080|888081|888082|888083|891577|891578|891579|891580|891581|904908|904909|904910", + "upstreamId": "15292|15293|15294|15295|15296|15297|15298|15299|15300|15301|139203|139204|139205|139208|139210|139211|139212|139213|139214|139215|139216|139217|139218|139219|139220|139221|139222|139223|139224|139225|139226|139228|139229|139230|139231|187973|187974|187975|187976|187978|187980|250968|250969|250971|250975|262034|262035|262036|288985|288989|288990|288994|288999|289717|289718|289736|289737|289740|289741|289742|289744|289748|292706|292719|292735|292745|292757|292759|292768|292777|292778|292971|292972|292973|292979|292990|292991|293016|293035|293036|432247|487043|542797|542798|542803|542805|542808|542809|542812|542813|542815|542951|542956|542964|542971|542973|542977|542983|542987|542991|542992|542993|542995|542996|542997|542999|543000|543001|543002|543003|543005|543007|543009|543010|543011|543012|543014|543016|543018|543019|543020|543024|543025|543026|543028|543030|543032|543035|543036|543038|543040|543047|543049|543052|543055|543059|543061|543062|543064|543065|543068|543069|543071|543073|543077|543087|552070|623133|683544|683546|720219|720220|720222|733843|733846|759237|763662|781572|790339|790340|792734|888054|888055|888056|888057|888058|888059|888060|888061|888062|888063|888064|888065|888066|888067|888068|888069|888070|888071|888072|888073|888074|888075|888076|888077|888078|888079|888080|888081|888082|888083|891577|891578|891579|891580|891581|904908|904909|904910", "text": "Xeroderma pigmentosum, group C" }, { - "baseId": "15297|15298|15301|16033|16034|31605|31615|187973|187975|187980|208243|227299|259252|259693|262035|281797|282419|284079|288952|288959|288962|288963|288985|288989|288995|289707|289712|289736|289741|292653|292656|292665|292703|292885|292907|292911|292973|292975|292979|292990|293006|300294|300321|300324|300332|303027|303077|303106|303110|303140|303145|303147|307462|307472|307507|307584|307608|307626|307722|307743|307798|307800|309055|314262|319623|320876|327922|340564|343775|349077|349972|353260|353261|353538|432247|486987|487043|497233|542815|543019|543068|545011|545299|545337|545406|916903|916904|917127", + "upstreamId": "15297|15298|15301|16033|16034|31605|31615|187973|187975|187980|208243|227299|259252|259693|262035|281797|282419|284079|288952|288959|288962|288963|288985|288989|288995|289707|289712|289736|289741|292653|292656|292665|292703|292885|292907|292911|292973|292975|292979|292990|293006|300294|300321|300324|300332|303027|303077|303106|303110|303140|303145|303147|307462|307472|307507|307584|307608|307626|307722|307743|307798|307800|309055|314262|319623|320876|327922|340564|343775|349077|349972|353260|353261|353538|432247|486987|487043|497233|542815|543019|543068|545011|545299|545337|545406|916903|916904|917127", "text": "Xeroderma pigmentosum" }, { - "baseId": "15302|15303|15304|15305|15306|76406|176018|176020|176021|176022|176023|176161|176162|176163|176164|176165|176166|177676|213225|230664|230665|230666|230667|230668|230670|230671|242519|242521|242522|242523|242524|242525|242528|255914|255916|255917|255918|255921|255922|255924|255926|255929|255933|255934|255935|270915|326486|326488|326490|326494|326498|336292|336294|336295|336300|336302|342502|342505|342507|342510|342512|342516|342523|344144|344146|344148|401355|401359|401877|530607|530876|538457|684631|685426|688670|844420|844426|844428|876059|876060|876061|876062|876063|876064|876065|876066|876067|876068|876069|876070|876071|876724|876725|876726|876727", + "upstreamId": "15302|15303|15304|15305|15306|76406|176018|176020|176021|176022|176023|176161|176162|176163|176164|176165|176166|177676|213225|230664|230665|230666|230667|230668|230670|230671|242519|242521|242522|242523|242524|242525|242528|255914|255916|255917|255918|255921|255922|255924|255926|255929|255933|255934|255935|270915|326486|326488|326490|326494|326498|336292|336294|336295|336300|336302|342502|342505|342507|342510|342512|342516|342523|344144|344146|344148|401355|401359|401877|530607|530876|538457|684631|685426|688670|844420|844426|844428|876059|876060|876061|876062|876063|876064|876065|876066|876067|876068|876069|876070|876071|876724|876725|876726|876727", "text": "Ciliary dyskinesia, primary, 13" }, { - "baseId": "15302|15306|15568|19993|20643|20644|20645|20646|39773|40205|40206|40207|40357|40358|48236|48297|48298|70497|70498|76611|76612|76629|76931|76936|76951|77872|77873|77874|77875|77879|94261|94263|94265|94269|94270|94432|143224|143225|143226|143227|143228|143235|166145|166146|167456|174693|174694|175107|175109|191937|194954|205407|205551|205552|205553|205554|205555|205556|205557|205558|205559|205560|205561|205562|205563|205564|205565|212669|221828|229686|240608|240610|240612|240613|253512|308215|308217|308221|308227|308228|308232|318484|318491|318494|318495|319006|319009|319010|319019|396873|459131|459429|459516|481248|481249|481250|525082|525084|545009|545244|563190|563920|638205|684089|684096|759741|901938|901939|901940|901941|901942|901943|901944|901945|901946|901947|901948|901949|901950|901951|901952|903391|903392|980935|983857", + "upstreamId": "15302|15306|15568|19993|20643|20644|20645|20646|39773|40205|40206|40207|40357|40358|48236|48297|48298|70497|70498|76611|76612|76629|76931|76936|76951|77872|77873|77874|77875|77879|94261|94263|94265|94269|94270|94432|143224|143225|143226|143227|143228|143235|166145|166146|167456|174693|174694|175107|175109|191937|194954|205407|205551|205552|205553|205554|205555|205556|205557|205558|205559|205560|205561|205562|205563|205564|205565|212669|221828|229686|240608|240610|240612|240613|253512|308215|308217|308221|308227|308228|308232|318484|318491|318494|318495|319006|319009|319010|319019|396873|459131|459429|459516|481248|481249|481250|525082|525084|545009|545244|563190|563920|638205|684089|684096|759741|901938|901939|901940|901941|901942|901943|901944|901945|901946|901947|901948|901949|901950|901951|901952|903391|903392|980935|983857", "text": "Kartagener syndrome" }, { - "baseId": "15303|15304|15305|15542|15543|15544|19994|20643|20645|24941|40024|40026|40028|40029|40206|40358|45542|45639|45640|48236|48238|48239|48248|48250|48283|52532|52536|52541|52561|70498|75615|76544|76545|76611|76612|76858|76906|76931|76936|77321|77872|77875|77879|79339|86568|91155|94263|94265|94269|94432|98393|98757|98760|98761|99370|99584|99585|99586|99587|99588|99589|99590|99592|99593|99594|99595|99596|99597|99630|101391|101777|101787|101788|101789|101790|104615|104631|104680|104682|104687|104696|106437|141390|143224|143225|143228|152810|153742|173544|173545|173547|173548|173549|173551|173552|173553|173554|173557|173558|173559|173561|173562|173563|173564|173565|173566|173567|173568|173569|173570|173571|173682|173683|173684|173685|173686|173687|173688|173689|173691|173692|173693|173695|173697|173698|173699|173700|173701|173702|173703|173704|173705|173706|173761|173762|173763|173764|173902|173903|173904|174054|174055|174056|174057|174058|174059|174060|174062|174065|174066|174067|174068|174069|174070|174071|174072|174073|174074|174075|174076|174077|174078|174079|174080|174081|174082|174188|174189|174190|174191|174192|174193|174194|174195|174197|174198|174199|174200|174201|174202|174204|174205|174206|174208|174209|174211|174212|174213|174214|174215|174216|174217|174339|174340|174341|174342|174476|174477|174478|174479|174480|174516|174517|174692|174693|174694|175105|175106|175107|175108|175940|175941|176018|176020|176021|176022|176023|176024|176025|176161|176162|176163|176164|176165|176166|176246|176496|176497|176498|176506|176508|176509|176510|176511|176512|176633|176634|176635|176642|176643|176644|176645|176647|176648|176649|176986|177031|177094|177118|177249|177350|177676|177677|186011|186046|186047|186048|186049|186050|186074|186278|190557|190788|190792|191090|191198|191281|191408|191527|191781|191782|191937|191989|192069|192156|192499|192682|192683|192684|192685|192740|192829|192969|192970|194105|194332|194333|194478|194676|194678|194702|194954|195139|195179|195508|196328|196352|205156|205552|205563|205564|212294|212295|212296|212383|212494|212495|212497|212498|212499|212500|212501|212502|212503|212504|212516|212517|212573|212574|212575|212577|212669|213107|213108|213109|213111|213222|213223|213224|213225|213383|213408|213409|213410|213411|213412|213413|213414|213415|213416|213417|213506|215361|215550|221372|221373|221374|221375|221594|221595|221596|221597|221598|221599|221600|221601|221602|221603|221604|221631|221677|221678|221679|221680|221681|221682|221683|221684|221686|221687|221688|221689|221690|221691|221692|221693|221694|221695|221696|221828|222368|222369|222370|222371|222536|222745|222746|222747|226790|226791|226792|226802|227278|229034|229035|229036|229037|229038|229241|229242|229243|229245|229246|229247|229248|229249|229250|229252|229254|229255|229256|229258|229259|229260|229261|229262|229263|229265|229266|229267|229268|229269|229270|229379|229381|229382|229572|229573|229574|229575|229576|229577|229578|229579|229580|229582|229583|229584|229585|229586|229587|229589|229590|229591|229592|229683|229684|229685|229686|230527|230529|230530|230531|230532|230536|230664|230665|230666|230667|230668|230669|230670|230671|230672|230778|230779|230780|230781|230782|230791|230792|230794|230795|230796|230797|230798|230799|230800|230801|230802|230803|231130|231284|238696|238697|238698|238699|238700|238701|238702|238703|239119|239121|239122|239123|239124|239125|239126|239127|239128|239129|239242|239243|239244|239245|239246|239247|239248|239249|239250|239717|239718|239719|239720|239721|239722|239723|239724|239725|239726|239727|239728|239729|239730|239731|239732|239733|239734|239735|239736|239737|239738|239739|239740|239741|239742|239743|239744|239745|239746|239747|239748|239754|239762|239763|239764|239765|239766|239851|239852|239853|239854|239855|239856|239857|239858|239875|239876|239905|239906|239907|239908|239909|239910|239915|239916|239917|239918|239919|239920|239921|239923|239924|239925|239926|239927|239928|239929|239930|239931|239932|239933|239934|239935|239936|239937|240019|240020|240021|240023|240024|240025|240026|240027|240028|240029|240030|240031|240032|240033|240034|240035|240036|240037|240038|240039|240040|240041|240042|240043|240044|240045|240046|240047|240048|240049|240050|240051|240052|240053|240054|240055|240056|240057|240058|240059|240060|240061|240063|240064|240065|240066|240067|240068|240069|240070|240071|240072|240073|240074|240075|240076|240077|240078|240079|240080|240158|240159|240160|240161|240162|240163|240164|240168|240169|240170|240171|240174|240175|240176|240177|240178|240179|240180|240607|240608|240609|240610|240611|240612|240613|241845|241846|241847|242087|242518|242519|242521|242522|242523|242524|242525|242526|242527|242528|242819|242820|242821|242965|242966|242967|242968|242969|242970|242971|242972|242973|242974|242999|243000|243001|243002|243003|243004|243005|243006|243008|243009|243010|243011|243012|243013|243014|243360|243361|243362|243363|243364|243365|243366|243367|243368|243369|243370|243371|243553|243554|243556|243557|243597|243598|243622|243623|243624|243625|243626|243627|243628|243629|243630|243631|243724|243810|243812|243813|243961|248496|248511|251018|251022|251028|251029|251032|251035|251037|251679|251680|251681|251686|251689|251690|251694|251696|251700|251705|251706|251709|251712|251713|251715|251722|251725|251727|251729|251732|251734|251735|251738|251741|251748|251750|251751|251759|251761|251765|251768|251771|251784|251785|251786|251787|251788|252062|252063|252349|252667|252669|252670|252673|252674|252675|252677|252678|252679|252681|252683|252688|252694|252695|252696|252697|252698|252700|252703|252704|252707|252714|252715|252717|252721|252722|252726|252727|252729|252731|252738|252739|252740|252742|252744|252745|252746|252748|252754|252760|252764|252765|252767|252768|252769|252770|252771|252916|252919|252924|252935|252937|253031|253036|253039|253042|253510|253512|253516|253518|253520|254957|254958|254959|254960|254964|254965|254967|254968|255910|255913|255916|255917|255920|255921|255922|255923|255924|255926|255928|255929|255930|255933|256213|256216|256374|256381|256382|256384|256386|256387|256388|256390|256392|256393|256475|256479|256484|256485|256487|256489|256490|256497|256498|256499|256502|256504|256505|256509|256510|256511|257161|257163|257164|257165|257170|257173|257176|257177|257180|257184|257185|257186|257188|257189|257237|257242|257243|257244|257246|257247|257248|257251|257252|257253|257254|257256|257815|257822|257823|257827|257828|257829|259810|259856|265368|265708|265859|265964|266017|266593|268134|268139|270023|270304|270913|270915|271560|271935|272779|272981|273561|275490|275491|289561|289571|289573|289577|289583|289612|290331|290333|290334|290344|290345|290348|293424|293430|293441|293445|293446|293447|293877|293884|293921|293923|293927|293954|295383|295388|295457|295459|295473|295490|295502|295511|295517|295519|295520|295527|295540|295553|295554|295560|295568|297179|297279|297282|297285|297286|297294|297295|297306|297308|297346|297365|298814|298815|300975|300985|301002|301026|301032|301080|301084|301115|301127|301134|301136|301138|301142|301155|301156|301157|301177|301188|301193|301265|301269|301283|301291|301304|301315|301337|301379|301421|302412|302416|302418|302422|302425|302426|302429|302430|302431|302434|302442|302445|302446|302448|302449|302451|302456|302458|302462|302470|302471|302477|302479|302484|302491|302494|302496|302500|302503|302504|303151|305659|305660|305664|305665|305668|305679|305688|305690|305694|305695|305701|305715|305716|305732|305733|305734|305736|305747|305748|305749|305752|305754|305755|305763|305765|305770|305773|305776|305777|305778|305781|307630|307640|308212|308214|308215|308227|308228|310474|310486|310503|310505|310506|310507|310515|310516|310517|310520|310521|310522|310524|310531|310540|310541|310545|310547|310550|310551|310552|310553|310554|310563|310571|310572|310574|310575|310581|310582|310583|310684|310685|310697|310699|310700|310701|310708|310711|310712|310719|310722|310724|310730|310732|310746|310759|310761|310764|310765|310767|310770|310772|310778|310780|310783|310788|310791|310794|310801|310809|312602|318485|318495|320401|320629|320630|320643|321193|321210|321222|321231|321233|321234|321236|321256|326485|326498|328761|328763|329377|329433|329434|329435|329450|329451|329456|329757|329763|329765|330341|330369|330371|330388|330393|330397|330399|330403|330404|330405|330410|330416|330429|330436|330438|330439|330441|334402|334408|334411|334413|335996|336009|336011|336294|336296|336870|336876|336933|336946|336947|336948|336977|337973|337979|337981|338720|338728|338784|338822|338844|338856|338867|340057|340604|340614|340630|340632|340638|340643|342494|342496|342501|342507|342516|344154|344280|344282|344290|345743|345746|345756|345763|345769|346176|346306|347148|347151|347168|347646|347650|347657|347661|347662|349399|350412|353375|353377|353381|353524|353809|353810|353893|359641|359652|360307|363701|364039|389498|389680|389740|389763|390185|392481|392482|392484|392491|392495|392500|392503|392505|392506|392508|392578|392582|392665|392669|392671|392823|392826|392831|392835|392850|392852|392854|392856|392861|392862|393375|393390|393446|393627|393631|393634|393636|393811|393851|393852|394054|394282|394709|394713|394715|394728|394730|394732|394736|394740|394747|394749|394751|394756|394758|394759|394760|394763|394766|394769|394771|394773|394805|394811|394816|394818|394819|394820|394821|394822|394823|394826|394827|394829|394839|394840|394842|394852|394854|394866|394883|394886|394890|394957|394962|394965|394966|394968|394977|394978|394979|394983|394986|395000|395005|395008|395009|395012|395014|395017|395025|395026|395030|395031|395051|395052|395054|395055|395059|395068|395075|395122|395123|395126|395127|395129|395131|395133|395139|395142|395144|395148|395149|395150|395156|395161|395165|395167|395168|395177|395178|395182|395186|395271|395274|395278|395282|395286|395287|395294|395296|395298|395302|395308|395309|395312|395317|395321|395324|395327|395328|395329|395330|395335|395336|395341|395343|395345|395347|395348|395349|395350|395352|395353|395356|395357|395361|395362|395365|395367|395372|395377|395378|395380|395384|395386|395387|395390|395396|395397|395398|395401|395406|395468|395473|395477|395479|395481|395486|395491|395500|395508|395512|395516|395518|395520|395523|395530|395535|395539|395543|395544|395546|395547|395551|395553|395559|395560|395563|395567|395572|395575|395584|395587|395594|395599|395602|395603|395605|395613|395616|395617|395618|395626|395630|395635|395659|395662|395742|395743|395748|395751|395754|395757|395760|395761|395762|395771|395772|395773|395774|395776|395777|395779|395781|395783|395788|395789|395792|395794|395795|395796|395797|395800|395801|395803|395808|395811|395812|395814|395815|395817|395819|395824|395825|395826|395829|395849|395851|395852|395861|395865|395901|395904|395908|395919|395921|395936|395945|395948|395950|395957|395962|395970|395975|395977|395979|395994|395995|396005|396014|396016|396022|396120|396121|396126|396135|396140|396153|396155|396212|396216|396228|396230|396237|396239|396247|396249|396251|396252|396254|396272|396276|396277|396281|396285|396406|396417|396429|396432|396533|396872|396873|397090|397285|397291|397459|399648|399667|399816|400033|400213|400217|400218|400283|400405|400406|400408|400429|400762|400767|400769|400776|400785|401062|401353|401355|401359|401360|401364|401366|401368|401527|401877|401995|402111|402127|402157|402159|402506|402510|402511|402513|402515|402517|402518|402521|402524|402576|402584|402587|402591|402620|402625|402628|402631|402635|402749|402979|402983|402984|402988|403074|403075|403076|403077|403086|403087|403089|403136|403137|403139|403168|403191|403197|403201|403286|403291|403341|403345|403358|403572|403574|403587|403590|403592|403614|403616|403617|403618|403629|403707|403709|403751|403754|403760|403766|403767|403768|403769|403775|403786|403805|403810|403813|404089|404113|404122|404123|404126|404135|404138|404141|404242|404244|404255|404258|404262|404278|404297|404573|404575|404577|404578|410644|414987|414990|421525|434602|438950|443685|446887|450678|450679|450683|450772|450778|450785|450933|450937|450942|450943|450947|450948|450954|450957|450971|450976|450990|451881|451883|451971|451975|451978|451983|451986|451989|452010|452208|452209|452211|452216|452311|452312|452318|452440|452441|452443|452461|452462|452465|452538|452541|452657|452675|452845|453100|453882|454413|454499|454501|454509|454510|454517|454536|454548|454553|454559|454572|454574|454577|454585|454588|454595|454597|454598|454600|454602|454603|454605|454606|454607|454610|454611|454614|454615|454616|454617|454620|454622|454624|454627|454630|454631|454633|454635|454637|454642|454643|454648|454649|454653|454660|454674|454678|454679|454681|454685|454696|454698|455017|455020|455023|455027|455028|455029|455030|455032|455033|455043|455046|455049|455086|455092|455093|455098|455108|455113|455114|455123|455131|455134|455140|455153|455158|455162|455208|455211|455214|455305|455309|455335|455346|455350|455354|455368|455388|455391|455400|455402|455408|455411|455412|455417|455419|455422|455423|455425|455431|455435|455437|455439|455441|455442|455585|455586|455603|455605|455606|455609|455610|455612|455613|455615|455618|455630|455633|455677|455678|455742|455743|455747|455752|455754|455755|455772|455773|455775|455776|455777|455780|455785|455788|455791|455794|455796|455797|455802|455804|455807|455808|455809|455810|455814|455866|455930|455937|455942|455944|456043|456155|456157|456158|456160|456162|456166|456173|456183|456184|456186|456190|456192|456196|456199|456201|456203|456204|456208|456402|456408|456417|456428|456429|456430|456435|456451|456453|456455|456464|456469|456472|456481|456482|456484|456485|456489|456505|456507|456512|456513|456526|456535|456540|456543|456544|456546|456552|456555|456558|456559|456561|456562|456574|456576|456577|456579|456582|456584|456586|456596|456597|456601|456605|456612|456615|456625|456822|456884|456886|456916|456918|456926|456944|456949|456950|456952|456954|456958|456962|456963|456970|456971|456975|456980|456982|456985|456997|457001|457005|457006|457008|457010|457011|457024|457025|457030|457033|457034|457166|457168|457172|457174|457176|457178|457180|457182|457186|457188|457192|457200|457206|457208|457213|457216|457218|457220|457225|457227|457230|457232|457235|457243|457402|457403|457408|457410|457414|457416|457440|457441|457462|457469|457472|457475|457550|457554|457565|457566|457585|457587|457603|457604|457607|457611|457613|457614|457616|457617|457627|457629|457632|457634|457637|457638|457642|457650|457654|457658|457926|457930|457939|459131|459133|459135|459137|459139|459141|459147|459151|459152|459427|459429|459436|459510|459516|459522|459982|459989|459994|463247|463249|463254|463749|463754|463762|463770|463773|463777|464085|464092|464093|464098|464244|464248|464257|464263|464265|464267|464273|464400|464402|465204|465265|466068|466075|466294|466820|466823|466828|466844|466937|466937|467116|467119|467120|467123|467124|467455|467457|467459|467461|467463|467609|467613|467617|467623|467626|467803|468095|468285|468320|468325|468446|468447|468452|468457|468465|468472|468474|468818|468938|468939|468943|468946|468956|468958|468962|468968|469065|469067|469073|469221|469227|469295|469300|469301|469536|469549|469626|469628|469637|469639|469642|469643|470255|470257|470362|470363|470572|470580|470591|470674|470676|470785|470788|470794|470797|470798|470804|470811|470813|470819|471049|471054|471055|471059|471062|471068|471082|471202|471205|471214|471299|471306|471317|471320|471323|471546|471550|471563|471565|471648|471650|471656|471873|471875|472145|472146|472147|486156|486617|488343|489983|490539|496353|496417|496418|496925|497468|497670|511555|511556|511557|514267|518011|518019|518021|518054|518056|518061|518062|518063|518141|518659|518981|518993|518996|518997|519000|519005|519006|519007|519013|519016|519018|519024|519027|519181|519184|519190|519198|519201|519207|519209|519435|519537|519635|519684|520583|520716|520718|520721|520723|520729|520731|520745|520759|520761|520765|520768|520772|520780|520784|520961|520967|520973|520974|520981|520984|520988|520998|521006|521011|521015|521020|521021|521030|521032|521035|521038|521119|521121|521126|521128|521129|521133|521134|521144|521152|521156|521160|521164|521165|521167|521168|521171|521174|521179|521180|521183|521188|521189|521198|521202|521207|521208|521212|521213|521217|521218|521237|521240|521336|521338|521341|521498|521502|521504|521506|521508|521576|521631|521634|521636|521640|521647|521648|521650|521660|521661|521662|521664|521674|521703|521823|521828|521831|521843|521941|521943|521948|521949|521956|521958|521959|521960|521963|521965|521967|521969|521971|521973|521974|521979|521980|521986|521994|521995|521996|522001|522003|522007|522012|522020|522022|522029|522034|522036|522039|522041|522043|522047|522048|522059|522291|522315|522316|522328|522329|522330|522331|522344|522353|522355|522363|522365|522366|522369|522374|522382|522523|522525|522528|522530|522533|522535|522536|522537|522539|522545|522548|522550|522634|522763|522776|522778|522789|522790|522791|522793|522794|522795|522797|522798|522800|522802|522806|522807|522813|522815|522816|522817|522819|522821|522831|522833|522837|522838|522839|522840|522842|522845|522855|522857|522859|522867|522880|522882|522891|522898|522900|522904|522906|522910|522916|522918|522919|522922|522927|522930|523066|523189|523191|523192|523198|523200|523201|523209|523212|523216|523220|523223|523225|523231|523241|523259|523265|523272|523279|523367|523384|523393|524518|524526|524812|524816|524822|524935|525082|525084|528141|528145|528161|528170|528177|528185|528187|528521|528570|528646|528940|528949|529550|529553|530346|530350|530352|530438|530439|530540|530605|530607|530609|530619|530622|530636|530640|530642|530643|530846|530849|530859|530860|530863|530869|530876|531051|531147|531362|531760|531768|531881|531885|531887|531891|531898|531902|531929|531942|531945|531947|531950|531961|532000|532006|532008|532130|532144|532146|532278|532281|532285|533097|533101|533105|533106|533107|533198|533199|533212|533213|533215|533412|533413|533440|533465|533621|533623|533627|533628|533774|533776|533885|533887|533889|533891|533893|533936|533952|534339|534436|534438|535163|535164|538372|538394|539132|539133|543686|543690|543793|545244|548331|552084|557438|557988|557990|558854|558856|558858|559060|559393|559395|559397|559586|559588|559958|560139|560141|560143|560145|560149|560151|560153|560155|560157|560159|560161|560228|560230|560232|560234|560236|560238|560240|560242|560244|560246|560248|560250|560252|560254|560256|560258|560260|560262|560359|560419|560421|560423|560425|560478|560480|560482|560546|560548|560557|560708|560710|560712|560714|560716|560718|560720|560722|560724|560726|560728|560730|560812|560816|560819|560820|560836|560838|560840|560841|560843|560845|560847|560849|560850|560852|560856|560861|561252|561259|561261|561286|561290|561450|561453|561455|561457|561459|561461|561463|561467|561482|561483|561734|561737|561739|561749|561777|561778|561780|561790|561796|561797|561807|561812|561814|561820|561821|561823|561824|561826|561828|561838|561840|561843|561850|561851|561854|561858|561860|562139|562168|562193|562194|562592|562598|562604|562608|562780|562783|562785|562787|562790|562800|562802|562809|562813|562815|562817|562824|562827|562829|562831|562833|562835|562837|562838|562840|562841|562842|562852|563108|563115|563123|563134|563187|563188|563190|563191|563205|563208|563331|563339|563345|563553|563559|563561|563565|563566|563568|563573|563577|563579|563580|563584|563594|563598|563602|563609|563854|563919|563920|564102|564111|564185|564193|564194|564199|564201|564203|564206|564207|564209|564210|564218|564219|564221|564224|564398|564408|564413|564698|564700|564705|564706|564711|564715|564720|564733|564739|564752|564753|564754|564758|564760|564775|564784|565342|565628|565630|565631|565635|565637|565642|565644|565656|565666|565677|565678|565688|565872|565873|566450|566451|566458|566461|566469|566474|566668|566670|566674|566680|566682|566683|566687|566691|566692|566693|566706|566711|566718|566723|566724|566736|566739|566740|567109|567111|567123|567128|567210|568078|568079|568431|568432|568524|568668|568891|568892|568897|568898|568902|568916|568985|568990|568999|569536|569538|569710|569714|569831|569832|569834|569836|569837|570287|570539|570550|570560|570565|570567|570586|570889|570892|570893|570897|571104|571106|571217|571454|571561|571566|571579|571581|571584|571693|571695|572235|572236|572366|572372|572377|572381|572575|572585|572588|572789|572793|572795|572799|572808|572817|572822|572824|573024|573210|573215|573220|573421|573422|573427|573444|573448|573728|573801|574192|574194|574656|574657|574658|574659|574660|574661|574662|574663|574664|574999|575000|575001|575061|575062|575166|575167|575168|575169|584317|587528|589371|590985|590986|610479|610526|610527|610528|611679|611680|620482|621884|622850|624617|629765|629766|629767|629768|629769|629770|629771|629772|629773|629774|629775|629776|629777|629778|629779|629780|629781|631070|631071|631072|631073|631074|631075|631076|631077|631078|631079|631080|631081|631082|631588|631589|631590|631591|631592|631593|631594|631595|631596|631597|631598|631599|631600|631601|633189|633190|633191|633192|633193|633194|633195|633196|633197|633198|633199|633200|633201|633202|633203|633204|633205|633206|633207|633208|633209|633210|633211|633212|633213|633214|633215|633216|633217|633218|633228|633229|633230|633231|633232|633233|633234|633235|633236|633237|633238|633239|633240|633241|633242|633243|633244|633245|633246|633247|633248|633249|633250|633251|633252|633253|633254|633255|633256|633257|633390|633391|633459|633460|633461|633462|633463|633464|633465|633467|633468|633469|633470|633471|633472|633473|633474|633475|633484|633976|633977|633978|633979|633980|633981|633982|633983|633984|633985|633986|634514|634515|634516|634517|634518|634519|634878|634879|634880|634881|634882|634883|634884|634885|634886|634887|634888|634889|634890|634891|634892|634893|634894|634895|634896|634897|634898|634899|634900|634901|634902|634903|634904|634905|634906|634907|634908|634909|634910|634911|634912|634913|634914|634915|634916|634917|634918|634919|634920|634921|634922|634923|634924|634925|634926|634927|634935|634936|634937|635977|635978|635979|635980|635981|635982|635983|635984|635985|635986|635987|635988|635989|635990|635991|635992|635993|635994|635995|635996|635997|635998|635999|636000|636001|636002|636003|636004|636005|636006|636007|636008|636009|636010|636011|636012|636013|636014|636015|636016|636017|636018|636019|636020|636021|636022|636023|636024|636025|636026|636027|636028|636029|636030|636031|636032|636033|636034|636035|636036|636037|636038|636039|636040|636041|636042|636043|636044|636045|636046|636047|636048|636049|636318|636319|636320|636321|636322|636323|636328|636329|636330|636331|636332|636333|636334|636335|636345|636346|636347|636348|636349|636350|638200|638201|638202|638203|638204|638205|638206|638207|638208|638209|642460|642461|642462|642463|642464|642465|642466|642467|642468|643443|643444|643446|645066|645067|645068|645069|645070|645071|645072|645073|645074|645075|645076|645077|646087|646088|646089|646090|646091|646665|646666|646667|646668|646669|646670|646671|646672|646673|646674|646675|646676|646840|646843|646844|646845|646846|646847|646848|646849|646850|646851|646852|646853|646854|646855|646856|646857|646858|646859|648209|648210|648211|648212|648213|648214|648215|648216|648217|648218|648219|648502|648503|648504|648505|648506|648507|648508|648509|648510|648511|648512|648513|648888|649001|649002|649003|649004|650036|650037|650038|650749|651004|651211|651226|651293|651297|651327|651329|651331|651353|651365|651366|651397|651558|651609|651614|651656|651688|651716|651720|651722|651723|651791|651793|651794|652015|652163|652170|652172|652586|652693|652967|653078|653163|653374|653500|653504|653506|653508|653568|654318|654366|654417|654833|654835|683492|683569|683571|683663|683664|683665|683666|683667|683668|683669|683670|683671|683672|683673|683674|683675|683676|683677|683678|683679|683688|683689|683700|683701|683702|683703|683704|683705|683706|683707|683708|683755|683756|683785|683786|683788|683790|683794|683796|683799|683800|683802|683803|683805|683807|683866|683867|683868|683871|683872|683873|683874|683875|683877|683878|683879|683880|683882|683885|683887|683926|683934|683936|683937|683938|684088|684089|684090|684091|684092|684093|684094|684095|684096|684492|684493|684630|684710|684711|684712|684713|684715|684716|684722|684723|684724|684725|684726|684837|684838|684839|684840|684841|684842|684852|684853|684905|684994|685171|685172|685174|685196|685214|685215|685216|685217|685226|685254|685426|685488|686170|686173|686174|686175|686374|686375|686377|686439|686440|686617|686618|686619|686620|686621|686622|686623|686624|686625|686626|686627|686628|686629|686630|686631|686632|686634|686635|686636|686637|686638|686640|686641|686642|686643|686644|686645|686646|686647|686649|686689|686690|686691|686692|686693|686695|686696|686697|686698|686699|686700|686758|686759|686761|686789|686839|686841|686842|686848|686850|686851|686855|686859|686861|686862|686863|686865|687015|687018|687019|687023|687024|687025|687028|687029|687030|687031|687033|687035|687100|687101|687102|687111|687478|687479|687480|687481|687482|687483|687484|687485|687486|688299|688670|688671|688776|688828|688829|688830|688831|688834|688835|688836|688837|688839|688840|688841|688851|688854|688855|688856|688859|689110|689111|689112|689115|689116|689252|689490|689738|689772|689775|689776|689777|689778|689779|689786|689788|689789|689790|689808|689825|689826|689827|689828|689866|689868|689886|689947|689948|690185|690240|691703|691705|691706|691707|691714|691715|691716|691719|691720|691721|691726|691727|691728|691751|691752|691753|691754|691756|691902|691985|691987|692208|692210|692293|692659|692660|692662|693495|693498|693946|694185|694186|694187|694188|694189|694190|694191|694192|694213|694470|695140|695263|695264|695265|695266|695271|695274|695275|695779|698791|698792|698794|698804|698816|709632|709648|716576|721225|722025|722615|727406|727407|729579|734850|734855|734858|734864|734870|737111|742021|744195|744267|745335|747523|749226|749228|749229|750062|750063|750065|750563|759741|764869|764870|764872|764878|765674|766211|766410|771799|771800|771801|771802|771897|774985|775037|775541|776728|777363|777558|778314|778619|782147|782154|782155|782158|782160|782162|782171|782313|782314|782830|782832|787311|787547|787555|788081|798584|800971|800972|805332|819356|819546|819547|819548|819549|819550|819551|819552|819553|819554|819555|819688|819860|819861|819862|821154|821155|821156|821171|821273|821274|821784|821785|821786|826124|826125|826126|826127|826128|826129|826130|826131|826132|826133|827744|827745|827746|827747|827748|827749|827750|827751|827752|827753|827754|828358|828359|828360|828361|828362|828408|830177|830178|830179|830180|830181|830182|830183|830184|830185|830186|830187|830188|830189|830190|830191|830192|830193|830194|830195|830196|830197|830198|830199|830200|830201|830202|830203|830204|830205|830213|830214|830215|830216|830217|830218|830219|830220|830221|830222|830223|830224|830225|830226|830227|830228|830229|830234|830235|830236|830237|830238|830239|830240|830241|830242|830295|830296|830345|830346|830347|830349|830350|830351|830355|830356|830888|830889|830890|830891|830892|830893|830894|830895|830896|830897|830898|830899|830900|830901|830902|830903|831460|831461|831462|831463|831464|831465|831466|831467|831468|831469|831893|831894|831895|831896|831897|831898|831899|831900|831901|831902|831903|831904|831905|831906|831907|831908|831909|831910|831911|831912|831913|831914|831915|831916|831917|831918|831919|831920|831921|831922|831923|831924|831925|831926|831927|831928|831929|831930|831931|831932|831933|831934|831984|831985|833419|833420|833421|833422|833423|833424|833425|833426|833427|833428|833429|833430|833431|833432|833433|833434|833435|833436|833437|833438|833439|833440|833441|833442|833443|833444|833445|833446|833447|833448|833449|833450|833451|833452|833453|833454|833455|833456|833457|833458|833459|833460|833461|833462|833463|833464|833465|833466|833467|833468|833469|833470|833471|833472|833473|833474|833475|833476|833477|833478|833479|833480|833481|833482|833483|833484|833485|833486|833487|833488|833489|833490|833491|833492|833815|833816|833817|833818|833830|833831|833832|833833|833834|833847|833848|833849|836067|836068|836069|836070|841519|841520|841521|841522|841523|841524|844419|844420|844421|844422|844423|844424|844425|844426|844427|844428|845496|845497|846168|846169|846170|846171|846172|846173|846361|846362|846363|846364|846368|846371|846372|846373|846374|846375|846376|846377|846378|847809|847810|847811|847812|847813|848088|848089|848090|848091|848092|848093|848094|848095|848805|848806|848807|848808|850028|850029|850030|850031|850032|850922|851012|851161|851283|851335|851550|851636|851638|851866|851868|851878|851885|852074|852076|852078|852080|852155|852260|852271|852272|852345|852348|852352|852790|852890|852922|858269|871898|877777|892947|892952|892954|893015|893041|893057|893061|893076|897832|897835|897843|901947|901949|904347|904348|904349|904350|904351|904352|904353|922682|922683|923103|923104|923829|923830|923831|923832|923833|923834|923835|923836|923837|923840|923841|923842|923843|923844|923845|923846|923864|923865|923888|923889|924089|924090|924091|924092|924228|924229|924230|924231|924232|924351|924352|924353|924354|924355|924356|924357|924358|924364|924784|924785|924786|924787|924788|924789|924790|924791|924792|924793|924794|924795|924796|924797|924798|924799|924800|924801|924802|924803|924804|924805|924806|924807|924808|924809|924810|924811|924812|924813|924814|924903|924909|925563|925564|925565|927075|927076|927077|927078|927079|927080|927081|927981|927982|927983|927984|927985|928341|928342|928524|928578|928579|928580|928581|928582|928583|929008|929009|929010|929011|929012|929013|929119|929120|929121|929325|929326|929723|931265|931266|931267|931268|931269|931270|931847|931848|931849|931850|931851|932025|932675|932676|932677|932678|932679|932680|932681|932682|932683|932684|932685|932687|932688|932689|932690|932691|932692|932693|932694|932695|932712|932725|932727|932728|932930|932931|933141|933142|933143|933144|933145|933312|933313|933314|933315|933316|933317|933318|933319|933320|933321|933322|933323|933324|933814|933815|933816|933817|933818|933819|933820|933821|933822|933823|933824|933825|933826|933827|933828|933829|933830|933831|933832|933833|933834|933835|933836|933837|933986|933987|933988|933989|933991|933992|934737|934738|934739|934740|936628|937645|937646|937647|937648|938213|938214|938215|938275|938276|938280|938281|938754|938755|938756|938757|938758|938759|938860|938861|938862|938863|938864|939117|939118|939119|939932|939984|939985|939986|939987|939989|940036|940040|940041|940073|940144|940145|940373|940438|940744|940745|940798|940799|940804|940805|940875|940936|940937|941149|941235|942749|942750|942751|942752|942753|942754|942755|943428|943429|943430|943431|943432|943630|943631|943632|944361|944362|944363|944364|944365|944366|944367|944372|944373|944374|944375|944376|944377|944378|944379|944380|944381|944393|944395|944396|944413|944414|944415|944416|944637|944638|944861|944862|944863|945006|945007|945008|945009|945010|945011|945012|945013|945014|945015|945016|945017|945018|945019|945020|945021|945045|945564|945565|945566|945567|945568|945569|945570|945571|945572|945573|945574|945575|945576|945577|945578|945579|945580|945581|945582|945583|945584|945585|945586|945587|945756|945757|945763|946593|946594|946595|946596|948573|948574|948951|949613|949614|949615|949616|949975|949976|950346|950347|950352|950353|950837|950838|950839|950840|950929|950930|950931|951780|953025|953400|953550|953997|953998|953999|954000|954001|954002|954003|954004|954005|954006|954007|954008|954009|954010|954011|954012|954013|954015|954016|954017|954018|954019|954020|954021|954023|954024|954025|954026|954027|954028|954029|954030|954042|954049|954050|954051|954179|954331|954442|954443|954444|954445|954446|954447|954448|954449|955109|955110|955111|955112|955113|955114|955115|955116|955117|955118|955119|955120|955121|955122|955123|955210|955214|955215|955217|955803|955804|955805|955806|955807|955808|957223|957904|958295|958296|958297|958298|958299|958300|958301|958302|958345|958349|958675|958676|958677|958678|958679|958739|958740|958741|959289|959290|959291|959752|959756|959757|959804|959847|959848|959849|959864|959917|960521|960551|960582|960629|960630|965660|965661|965662|965663|965664|965665|965666|965667|965668|965669|965670|965671|965672|965673|965674|965675|965676|965677|965678|965679|965680|965681|965682|965683|965684|965685|965686|965687|965688|965689|965690|965691|965692|965693|965694|965695|965696|965697|965698|965699|965700|965701|965702|965703|965704|965705|965706|965707|965708|965709|965710|965711|965712|965713|965714|965715|965716|965717|965718|965719|965720|965721|965722|965723|965724|965725|965726|965727|965728|965729|965730|965731|965732|965733|965734|978127|978128|978129|978130|978131|978132|978133|978134|978135|978136|978137|978138|978139|978140|978141|978142|978143|978144|978145|978146|978147|978148|978149|978150|978151|978152|978153|978154|978155|978572|978573|978574|978575|978576|978577|979918|979919", + "upstreamId": "15303|15304|15305|15542|15543|15544|19994|20643|20645|24941|40024|40026|40028|40029|40206|40358|45542|45639|45640|48236|48238|48239|48248|48250|48283|52532|52536|52541|52561|70498|75615|76544|76545|76611|76612|76858|76906|76931|76936|77321|77872|77875|77879|79339|86568|91155|94263|94265|94269|94432|98393|98757|98760|98761|99370|99584|99585|99586|99587|99588|99589|99590|99592|99593|99594|99595|99596|99597|99630|101391|101777|101787|101788|101789|101790|104615|104631|104680|104682|104687|104696|106437|141390|143224|143225|143228|152810|153742|173544|173545|173547|173548|173549|173551|173552|173553|173554|173557|173558|173559|173561|173562|173563|173564|173565|173566|173567|173568|173569|173570|173571|173682|173683|173684|173685|173686|173687|173688|173689|173691|173692|173693|173695|173697|173698|173699|173700|173701|173702|173703|173704|173705|173706|173761|173762|173763|173764|173902|173903|173904|174054|174055|174056|174057|174058|174059|174060|174062|174065|174066|174067|174068|174069|174070|174071|174072|174073|174074|174075|174076|174077|174078|174079|174080|174081|174082|174188|174189|174190|174191|174192|174193|174194|174195|174197|174198|174199|174200|174201|174202|174204|174205|174206|174208|174209|174211|174212|174213|174214|174215|174216|174217|174339|174340|174341|174342|174476|174477|174478|174479|174480|174516|174517|174692|174693|174694|175105|175106|175107|175108|175940|175941|176018|176020|176021|176022|176023|176024|176025|176161|176162|176163|176164|176165|176166|176246|176496|176497|176498|176506|176508|176509|176510|176511|176512|176633|176634|176635|176642|176643|176644|176645|176647|176648|176649|176986|177031|177094|177118|177249|177350|177676|177677|186011|186046|186047|186048|186049|186050|186074|186278|190557|190788|190792|191090|191198|191281|191408|191527|191781|191782|191937|191989|192069|192156|192499|192682|192683|192684|192685|192740|192829|192969|192970|194105|194332|194333|194478|194676|194678|194702|194954|195139|195179|195508|196328|196352|205156|205552|205563|205564|212294|212295|212296|212383|212494|212495|212497|212498|212499|212500|212501|212502|212503|212504|212516|212517|212573|212574|212575|212577|212669|213107|213108|213109|213111|213222|213223|213224|213225|213383|213408|213409|213410|213411|213412|213413|213414|213415|213416|213417|213506|215361|215550|221372|221373|221374|221375|221594|221595|221596|221597|221598|221599|221600|221601|221602|221603|221604|221631|221677|221678|221679|221680|221681|221682|221683|221684|221686|221687|221688|221689|221690|221691|221692|221693|221694|221695|221696|221828|222368|222369|222370|222371|222536|222745|222746|222747|226790|226791|226792|226802|227278|229034|229035|229036|229037|229038|229241|229242|229243|229245|229246|229247|229248|229249|229250|229252|229254|229255|229256|229258|229259|229260|229261|229262|229263|229265|229266|229267|229268|229269|229270|229379|229381|229382|229572|229573|229574|229575|229576|229577|229578|229579|229580|229582|229583|229584|229585|229586|229587|229589|229590|229591|229592|229683|229684|229685|229686|230527|230529|230530|230531|230532|230536|230664|230665|230666|230667|230668|230669|230670|230671|230672|230778|230779|230780|230781|230782|230791|230792|230794|230795|230796|230797|230798|230799|230800|230801|230802|230803|231130|231284|238696|238697|238698|238699|238700|238701|238702|238703|239119|239121|239122|239123|239124|239125|239126|239127|239128|239129|239242|239243|239244|239245|239246|239247|239248|239249|239250|239717|239718|239719|239720|239721|239722|239723|239724|239725|239726|239727|239728|239729|239730|239731|239732|239733|239734|239735|239736|239737|239738|239739|239740|239741|239742|239743|239744|239745|239746|239747|239748|239754|239762|239763|239764|239765|239766|239851|239852|239853|239854|239855|239856|239857|239858|239875|239876|239905|239906|239907|239908|239909|239910|239915|239916|239917|239918|239919|239920|239921|239923|239924|239925|239926|239927|239928|239929|239930|239931|239932|239933|239934|239935|239936|239937|240019|240020|240021|240023|240024|240025|240026|240027|240028|240029|240030|240031|240032|240033|240034|240035|240036|240037|240038|240039|240040|240041|240042|240043|240044|240045|240046|240047|240048|240049|240050|240051|240052|240053|240054|240055|240056|240057|240058|240059|240060|240061|240063|240064|240065|240066|240067|240068|240069|240070|240071|240072|240073|240074|240075|240076|240077|240078|240079|240080|240158|240159|240160|240161|240162|240163|240164|240168|240169|240170|240171|240174|240175|240176|240177|240178|240179|240180|240607|240608|240609|240610|240611|240612|240613|241845|241846|241847|242087|242518|242519|242521|242522|242523|242524|242525|242526|242527|242528|242819|242820|242821|242965|242966|242967|242968|242969|242970|242971|242972|242973|242974|242999|243000|243001|243002|243003|243004|243005|243006|243008|243009|243010|243011|243012|243013|243014|243360|243361|243362|243363|243364|243365|243366|243367|243368|243369|243370|243371|243553|243554|243556|243557|243597|243598|243622|243623|243624|243625|243626|243627|243628|243629|243630|243631|243724|243810|243812|243813|243961|248496|248511|251018|251022|251028|251029|251032|251035|251037|251679|251680|251681|251686|251689|251690|251694|251696|251700|251705|251706|251709|251712|251713|251715|251722|251725|251727|251729|251732|251734|251735|251738|251741|251748|251750|251751|251759|251761|251765|251768|251771|251784|251785|251786|251787|251788|252062|252063|252349|252667|252669|252670|252673|252674|252675|252677|252678|252679|252681|252683|252688|252694|252695|252696|252697|252698|252700|252703|252704|252707|252714|252715|252717|252721|252722|252726|252727|252729|252731|252738|252739|252740|252742|252744|252745|252746|252748|252754|252760|252764|252765|252767|252768|252769|252770|252771|252916|252919|252924|252935|252937|253031|253036|253039|253042|253510|253512|253516|253518|253520|254957|254958|254959|254960|254964|254965|254967|254968|255910|255913|255916|255917|255920|255921|255922|255923|255924|255926|255928|255929|255930|255933|256213|256216|256374|256381|256382|256384|256386|256387|256388|256390|256392|256393|256475|256479|256484|256485|256487|256489|256490|256497|256498|256499|256502|256504|256505|256509|256510|256511|257161|257163|257164|257165|257170|257173|257176|257177|257180|257184|257185|257186|257188|257189|257237|257242|257243|257244|257246|257247|257248|257251|257252|257253|257254|257256|257815|257822|257823|257827|257828|257829|259810|259856|265368|265708|265859|265964|266017|266593|268134|268139|270023|270304|270913|270915|271560|271935|272779|272981|273561|275490|275491|289561|289571|289573|289577|289583|289612|290331|290333|290334|290344|290345|290348|293424|293430|293441|293445|293446|293447|293877|293884|293921|293923|293927|293954|295383|295388|295457|295459|295473|295490|295502|295511|295517|295519|295520|295527|295540|295553|295554|295560|295568|297179|297279|297282|297285|297286|297294|297295|297306|297308|297346|297365|298814|298815|300975|300985|301002|301026|301032|301080|301084|301115|301127|301134|301136|301138|301142|301155|301156|301157|301177|301188|301193|301265|301269|301283|301291|301304|301315|301337|301379|301421|302412|302416|302418|302422|302425|302426|302429|302430|302431|302434|302442|302445|302446|302448|302449|302451|302456|302458|302462|302470|302471|302477|302479|302484|302491|302494|302496|302500|302503|302504|303151|305659|305660|305664|305665|305668|305679|305688|305690|305694|305695|305701|305715|305716|305732|305733|305734|305736|305747|305748|305749|305752|305754|305755|305763|305765|305770|305773|305776|305777|305778|305781|307630|307640|308212|308214|308215|308227|308228|310474|310486|310503|310505|310506|310507|310515|310516|310517|310520|310521|310522|310524|310531|310540|310541|310545|310547|310550|310551|310552|310553|310554|310563|310571|310572|310574|310575|310581|310582|310583|310684|310685|310697|310699|310700|310701|310708|310711|310712|310719|310722|310724|310730|310732|310746|310759|310761|310764|310765|310767|310770|310772|310778|310780|310783|310788|310791|310794|310801|310809|312602|318485|318495|320401|320629|320630|320643|321193|321210|321222|321231|321233|321234|321236|321256|326485|326498|328761|328763|329377|329433|329434|329435|329450|329451|329456|329757|329763|329765|330341|330369|330371|330388|330393|330397|330399|330403|330404|330405|330410|330416|330429|330436|330438|330439|330441|334402|334408|334411|334413|335996|336009|336011|336294|336296|336870|336876|336933|336946|336947|336948|336977|337973|337979|337981|338720|338728|338784|338822|338844|338856|338867|340057|340604|340614|340630|340632|340638|340643|342494|342496|342501|342507|342516|344154|344280|344282|344290|345743|345746|345756|345763|345769|346176|346306|347148|347151|347168|347646|347650|347657|347661|347662|349399|350412|353375|353377|353381|353524|353809|353810|353893|359641|359652|360307|363701|364039|389498|389680|389740|389763|390185|392481|392482|392484|392491|392495|392500|392503|392505|392506|392508|392578|392582|392665|392669|392671|392823|392826|392831|392835|392850|392852|392854|392856|392861|392862|393375|393390|393446|393627|393631|393634|393636|393811|393851|393852|394054|394282|394709|394713|394715|394728|394730|394732|394736|394740|394747|394749|394751|394756|394758|394759|394760|394763|394766|394769|394771|394773|394805|394811|394816|394818|394819|394820|394821|394822|394823|394826|394827|394829|394839|394840|394842|394852|394854|394866|394883|394886|394890|394957|394962|394965|394966|394968|394977|394978|394979|394983|394986|395000|395005|395008|395009|395012|395014|395017|395025|395026|395030|395031|395051|395052|395054|395055|395059|395068|395075|395122|395123|395126|395127|395129|395131|395133|395139|395142|395144|395148|395149|395150|395156|395161|395165|395167|395168|395177|395178|395182|395186|395271|395274|395278|395282|395286|395287|395294|395296|395298|395302|395308|395309|395312|395317|395321|395324|395327|395328|395329|395330|395335|395336|395341|395343|395345|395347|395348|395349|395350|395352|395353|395356|395357|395361|395362|395365|395367|395372|395377|395378|395380|395384|395386|395387|395390|395396|395397|395398|395401|395406|395468|395473|395477|395479|395481|395486|395491|395500|395508|395512|395516|395518|395520|395523|395530|395535|395539|395543|395544|395546|395547|395551|395553|395559|395560|395563|395567|395572|395575|395584|395587|395594|395599|395602|395603|395605|395613|395616|395617|395618|395626|395630|395635|395659|395662|395742|395743|395748|395751|395754|395757|395760|395761|395762|395771|395772|395773|395774|395776|395777|395779|395781|395783|395788|395789|395792|395794|395795|395796|395797|395800|395801|395803|395808|395811|395812|395814|395815|395817|395819|395824|395825|395826|395829|395849|395851|395852|395861|395865|395901|395904|395908|395919|395921|395936|395945|395948|395950|395957|395962|395970|395975|395977|395979|395994|395995|396005|396014|396016|396022|396120|396121|396126|396135|396140|396153|396155|396212|396216|396228|396230|396237|396239|396247|396249|396251|396252|396254|396272|396276|396277|396281|396285|396406|396417|396429|396432|396533|396872|396873|397090|397285|397291|397459|399648|399667|399816|400033|400213|400217|400218|400283|400405|400406|400408|400429|400762|400767|400769|400776|400785|401062|401353|401355|401359|401360|401364|401366|401368|401527|401877|401995|402111|402127|402157|402159|402506|402510|402511|402513|402515|402517|402518|402521|402524|402576|402584|402587|402591|402620|402625|402628|402631|402635|402749|402979|402983|402984|402988|403074|403075|403076|403077|403086|403087|403089|403136|403137|403139|403168|403191|403197|403201|403286|403291|403341|403345|403358|403572|403574|403587|403590|403592|403614|403616|403617|403618|403629|403707|403709|403751|403754|403760|403766|403767|403768|403769|403775|403786|403805|403810|403813|404089|404113|404122|404123|404126|404135|404138|404141|404242|404244|404255|404258|404262|404278|404297|404573|404575|404577|404578|410644|414987|414990|421525|434602|438950|443685|446887|450678|450679|450683|450772|450778|450785|450933|450937|450942|450943|450947|450948|450954|450957|450971|450976|450990|451881|451883|451971|451975|451978|451983|451986|451989|452010|452208|452209|452211|452216|452311|452312|452318|452440|452441|452443|452461|452462|452465|452538|452541|452657|452675|452845|453100|453882|454413|454499|454501|454509|454510|454517|454536|454548|454553|454559|454572|454574|454577|454585|454588|454595|454597|454598|454600|454602|454603|454605|454606|454607|454610|454611|454614|454615|454616|454617|454620|454622|454624|454627|454630|454631|454633|454635|454637|454642|454643|454648|454649|454653|454660|454674|454678|454679|454681|454685|454696|454698|455017|455020|455023|455027|455028|455029|455030|455032|455033|455043|455046|455049|455086|455092|455093|455098|455108|455113|455114|455123|455131|455134|455140|455153|455158|455162|455208|455211|455214|455305|455309|455335|455346|455350|455354|455368|455388|455391|455400|455402|455408|455411|455412|455417|455419|455422|455423|455425|455431|455435|455437|455439|455441|455442|455585|455586|455603|455605|455606|455609|455610|455612|455613|455615|455618|455630|455633|455677|455678|455742|455743|455747|455752|455754|455755|455772|455773|455775|455776|455777|455780|455785|455788|455791|455794|455796|455797|455802|455804|455807|455808|455809|455810|455814|455866|455930|455937|455942|455944|456043|456155|456157|456158|456160|456162|456166|456173|456183|456184|456186|456190|456192|456196|456199|456201|456203|456204|456208|456402|456408|456417|456428|456429|456430|456435|456451|456453|456455|456464|456469|456472|456481|456482|456484|456485|456489|456505|456507|456512|456513|456526|456535|456540|456543|456544|456546|456552|456555|456558|456559|456561|456562|456574|456576|456577|456579|456582|456584|456586|456596|456597|456601|456605|456612|456615|456625|456822|456884|456886|456916|456918|456926|456944|456949|456950|456952|456954|456958|456962|456963|456970|456971|456975|456980|456982|456985|456997|457001|457005|457006|457008|457010|457011|457024|457025|457030|457033|457034|457166|457168|457172|457174|457176|457178|457180|457182|457186|457188|457192|457200|457206|457208|457213|457216|457218|457220|457225|457227|457230|457232|457235|457243|457402|457403|457408|457410|457414|457416|457440|457441|457462|457469|457472|457475|457550|457554|457565|457566|457585|457587|457603|457604|457607|457611|457613|457614|457616|457617|457627|457629|457632|457634|457637|457638|457642|457650|457654|457658|457926|457930|457939|459131|459133|459135|459137|459139|459141|459147|459151|459152|459427|459429|459436|459510|459516|459522|459982|459989|459994|463247|463249|463254|463749|463754|463762|463770|463773|463777|464085|464092|464093|464098|464244|464248|464257|464263|464265|464267|464273|464400|464402|465204|465265|466068|466075|466294|466820|466823|466828|466844|466937|466937|467116|467119|467120|467123|467124|467455|467457|467459|467461|467463|467609|467613|467617|467623|467626|467803|468095|468285|468320|468325|468446|468447|468452|468457|468465|468472|468474|468818|468938|468939|468943|468946|468956|468958|468962|468968|469065|469067|469073|469221|469227|469295|469300|469301|469536|469549|469626|469628|469637|469639|469642|469643|470255|470257|470362|470363|470572|470580|470591|470674|470676|470785|470788|470794|470797|470798|470804|470811|470813|470819|471049|471054|471055|471059|471062|471068|471082|471202|471205|471214|471299|471306|471317|471320|471323|471546|471550|471563|471565|471648|471650|471656|471873|471875|472145|472146|472147|486156|486617|488343|489983|490539|496353|496417|496418|496925|497468|497670|511555|511556|511557|514267|518011|518019|518021|518054|518056|518061|518062|518063|518141|518659|518981|518993|518996|518997|519000|519005|519006|519007|519013|519016|519018|519024|519027|519181|519184|519190|519198|519201|519207|519209|519435|519537|519635|519684|520583|520716|520718|520721|520723|520729|520731|520745|520759|520761|520765|520768|520772|520780|520784|520961|520967|520973|520974|520981|520984|520988|520998|521006|521011|521015|521020|521021|521030|521032|521035|521038|521119|521121|521126|521128|521129|521133|521134|521144|521152|521156|521160|521164|521165|521167|521168|521171|521174|521179|521180|521183|521188|521189|521198|521202|521207|521208|521212|521213|521217|521218|521237|521240|521336|521338|521341|521498|521502|521504|521506|521508|521576|521631|521634|521636|521640|521647|521648|521650|521660|521661|521662|521664|521674|521703|521823|521828|521831|521843|521941|521943|521948|521949|521956|521958|521959|521960|521963|521965|521967|521969|521971|521973|521974|521979|521980|521986|521994|521995|521996|522001|522003|522007|522012|522020|522022|522029|522034|522036|522039|522041|522043|522047|522048|522059|522291|522315|522316|522328|522329|522330|522331|522344|522353|522355|522363|522365|522366|522369|522374|522382|522523|522525|522528|522530|522533|522535|522536|522537|522539|522545|522548|522550|522634|522763|522776|522778|522789|522790|522791|522793|522794|522795|522797|522798|522800|522802|522806|522807|522813|522815|522816|522817|522819|522821|522831|522833|522837|522838|522839|522840|522842|522845|522855|522857|522859|522867|522880|522882|522891|522898|522900|522904|522906|522910|522916|522918|522919|522922|522927|522930|523066|523189|523191|523192|523198|523200|523201|523209|523212|523216|523220|523223|523225|523231|523241|523259|523265|523272|523279|523367|523384|523393|524518|524526|524812|524816|524822|524935|525082|525084|528141|528145|528161|528170|528177|528185|528187|528521|528570|528646|528940|528949|529550|529553|530346|530350|530352|530438|530439|530540|530605|530607|530609|530619|530622|530636|530640|530642|530643|530846|530849|530859|530860|530863|530869|530876|531051|531147|531362|531760|531768|531881|531885|531887|531891|531898|531902|531929|531942|531945|531947|531950|531961|532000|532006|532008|532130|532144|532146|532278|532281|532285|533097|533101|533105|533106|533107|533198|533199|533212|533213|533215|533412|533413|533440|533465|533621|533623|533627|533628|533774|533776|533885|533887|533889|533891|533893|533936|533952|534339|534436|534438|535163|535164|538372|538394|539132|539133|543686|543690|543793|545244|548331|552084|557438|557988|557990|558854|558856|558858|559060|559393|559395|559397|559586|559588|559958|560139|560141|560143|560145|560149|560151|560153|560155|560157|560159|560161|560228|560230|560232|560234|560236|560238|560240|560242|560244|560246|560248|560250|560252|560254|560256|560258|560260|560262|560359|560419|560421|560423|560425|560478|560480|560482|560546|560548|560557|560708|560710|560712|560714|560716|560718|560720|560722|560724|560726|560728|560730|560812|560816|560819|560820|560836|560838|560840|560841|560843|560845|560847|560849|560850|560852|560856|560861|561252|561259|561261|561286|561290|561450|561453|561455|561457|561459|561461|561463|561467|561482|561483|561734|561737|561739|561749|561777|561778|561780|561790|561796|561797|561807|561812|561814|561820|561821|561823|561824|561826|561828|561838|561840|561843|561850|561851|561854|561858|561860|562139|562168|562193|562194|562592|562598|562604|562608|562780|562783|562785|562787|562790|562800|562802|562809|562813|562815|562817|562824|562827|562829|562831|562833|562835|562837|562838|562840|562841|562842|562852|563108|563115|563123|563134|563187|563188|563190|563191|563205|563208|563331|563339|563345|563553|563559|563561|563565|563566|563568|563573|563577|563579|563580|563584|563594|563598|563602|563609|563854|563919|563920|564102|564111|564185|564193|564194|564199|564201|564203|564206|564207|564209|564210|564218|564219|564221|564224|564398|564408|564413|564698|564700|564705|564706|564711|564715|564720|564733|564739|564752|564753|564754|564758|564760|564775|564784|565342|565628|565630|565631|565635|565637|565642|565644|565656|565666|565677|565678|565688|565872|565873|566450|566451|566458|566461|566469|566474|566668|566670|566674|566680|566682|566683|566687|566691|566692|566693|566706|566711|566718|566723|566724|566736|566739|566740|567109|567111|567123|567128|567210|568078|568079|568431|568432|568524|568668|568891|568892|568897|568898|568902|568916|568985|568990|568999|569536|569538|569710|569714|569831|569832|569834|569836|569837|570287|570539|570550|570560|570565|570567|570586|570889|570892|570893|570897|571104|571106|571217|571454|571561|571566|571579|571581|571584|571693|571695|572235|572236|572366|572372|572377|572381|572575|572585|572588|572789|572793|572795|572799|572808|572817|572822|572824|573024|573210|573215|573220|573421|573422|573427|573444|573448|573728|573801|574192|574194|574656|574657|574658|574659|574660|574661|574662|574663|574664|574999|575000|575001|575061|575062|575166|575167|575168|575169|584317|587528|589371|590985|590986|610479|610526|610527|610528|611679|611680|620482|621884|622850|624617|629765|629766|629767|629768|629769|629770|629771|629772|629773|629774|629775|629776|629777|629778|629779|629780|629781|631070|631071|631072|631073|631074|631075|631076|631077|631078|631079|631080|631081|631082|631588|631589|631590|631591|631592|631593|631594|631595|631596|631597|631598|631599|631600|631601|633189|633190|633191|633192|633193|633194|633195|633196|633197|633198|633199|633200|633201|633202|633203|633204|633205|633206|633207|633208|633209|633210|633211|633212|633213|633214|633215|633216|633217|633218|633228|633229|633230|633231|633232|633233|633234|633235|633236|633237|633238|633239|633240|633241|633242|633243|633244|633245|633246|633247|633248|633249|633250|633251|633252|633253|633254|633255|633256|633257|633390|633391|633459|633460|633461|633462|633463|633464|633465|633467|633468|633469|633470|633471|633472|633473|633474|633475|633484|633976|633977|633978|633979|633980|633981|633982|633983|633984|633985|633986|634514|634515|634516|634517|634518|634519|634878|634879|634880|634881|634882|634883|634884|634885|634886|634887|634888|634889|634890|634891|634892|634893|634894|634895|634896|634897|634898|634899|634900|634901|634902|634903|634904|634905|634906|634907|634908|634909|634910|634911|634912|634913|634914|634915|634916|634917|634918|634919|634920|634921|634922|634923|634924|634925|634926|634927|634935|634936|634937|635977|635978|635979|635980|635981|635982|635983|635984|635985|635986|635987|635988|635989|635990|635991|635992|635993|635994|635995|635996|635997|635998|635999|636000|636001|636002|636003|636004|636005|636006|636007|636008|636009|636010|636011|636012|636013|636014|636015|636016|636017|636018|636019|636020|636021|636022|636023|636024|636025|636026|636027|636028|636029|636030|636031|636032|636033|636034|636035|636036|636037|636038|636039|636040|636041|636042|636043|636044|636045|636046|636047|636048|636049|636318|636319|636320|636321|636322|636323|636328|636329|636330|636331|636332|636333|636334|636335|636345|636346|636347|636348|636349|636350|638200|638201|638202|638203|638204|638205|638206|638207|638208|638209|642460|642461|642462|642463|642464|642465|642466|642467|642468|643443|643444|643446|645066|645067|645068|645069|645070|645071|645072|645073|645074|645075|645076|645077|646087|646088|646089|646090|646091|646665|646666|646667|646668|646669|646670|646671|646672|646673|646674|646675|646676|646840|646843|646844|646845|646846|646847|646848|646849|646850|646851|646852|646853|646854|646855|646856|646857|646858|646859|648209|648210|648211|648212|648213|648214|648215|648216|648217|648218|648219|648502|648503|648504|648505|648506|648507|648508|648509|648510|648511|648512|648513|648888|649001|649002|649003|649004|650036|650037|650038|650749|651004|651211|651226|651293|651297|651327|651329|651331|651353|651365|651366|651397|651558|651609|651614|651656|651688|651716|651720|651722|651723|651791|651793|651794|652015|652163|652170|652172|652586|652693|652967|653078|653163|653374|653500|653504|653506|653508|653568|654318|654366|654417|654833|654835|683492|683569|683571|683663|683664|683665|683666|683667|683668|683669|683670|683671|683672|683673|683674|683675|683676|683677|683678|683679|683688|683689|683700|683701|683702|683703|683704|683705|683706|683707|683708|683755|683756|683785|683786|683788|683790|683794|683796|683799|683800|683802|683803|683805|683807|683866|683867|683868|683871|683872|683873|683874|683875|683877|683878|683879|683880|683882|683885|683887|683926|683934|683936|683937|683938|684088|684089|684090|684091|684092|684093|684094|684095|684096|684492|684493|684630|684710|684711|684712|684713|684715|684716|684722|684723|684724|684725|684726|684837|684838|684839|684840|684841|684842|684852|684853|684905|684994|685171|685172|685174|685196|685214|685215|685216|685217|685226|685254|685426|685488|686170|686173|686174|686175|686374|686375|686377|686439|686440|686617|686618|686619|686620|686621|686622|686623|686624|686625|686626|686627|686628|686629|686630|686631|686632|686634|686635|686636|686637|686638|686640|686641|686642|686643|686644|686645|686646|686647|686649|686689|686690|686691|686692|686693|686695|686696|686697|686698|686699|686700|686758|686759|686761|686789|686839|686841|686842|686848|686850|686851|686855|686859|686861|686862|686863|686865|687015|687018|687019|687023|687024|687025|687028|687029|687030|687031|687033|687035|687100|687101|687102|687111|687478|687479|687480|687481|687482|687483|687484|687485|687486|688299|688670|688671|688776|688828|688829|688830|688831|688834|688835|688836|688837|688839|688840|688841|688851|688854|688855|688856|688859|689110|689111|689112|689115|689116|689252|689490|689738|689772|689775|689776|689777|689778|689779|689786|689788|689789|689790|689808|689825|689826|689827|689828|689866|689868|689886|689947|689948|690185|690240|691703|691705|691706|691707|691714|691715|691716|691719|691720|691721|691726|691727|691728|691751|691752|691753|691754|691756|691902|691985|691987|692208|692210|692293|692659|692660|692662|693495|693498|693946|694185|694186|694187|694188|694189|694190|694191|694192|694213|694470|695140|695263|695264|695265|695266|695271|695274|695275|695779|698791|698792|698794|698804|698816|709632|709648|716576|721225|722025|722615|727406|727407|729579|734850|734855|734858|734864|734870|737111|742021|744195|744267|745335|747523|749226|749228|749229|750062|750063|750065|750563|759741|764869|764870|764872|764878|765674|766211|766410|771799|771800|771801|771802|771897|774985|775037|775541|776728|777363|777558|778314|778619|782147|782154|782155|782158|782160|782162|782171|782313|782314|782830|782832|787311|787547|787555|788081|798584|800971|800972|805332|819356|819546|819547|819548|819549|819550|819551|819552|819553|819554|819555|819688|819860|819861|819862|821154|821155|821156|821171|821273|821274|821784|821785|821786|826124|826125|826126|826127|826128|826129|826130|826131|826132|826133|827744|827745|827746|827747|827748|827749|827750|827751|827752|827753|827754|828358|828359|828360|828361|828362|828408|830177|830178|830179|830180|830181|830182|830183|830184|830185|830186|830187|830188|830189|830190|830191|830192|830193|830194|830195|830196|830197|830198|830199|830200|830201|830202|830203|830204|830205|830213|830214|830215|830216|830217|830218|830219|830220|830221|830222|830223|830224|830225|830226|830227|830228|830229|830234|830235|830236|830237|830238|830239|830240|830241|830242|830295|830296|830345|830346|830347|830349|830350|830351|830355|830356|830888|830889|830890|830891|830892|830893|830894|830895|830896|830897|830898|830899|830900|830901|830902|830903|831460|831461|831462|831463|831464|831465|831466|831467|831468|831469|831893|831894|831895|831896|831897|831898|831899|831900|831901|831902|831903|831904|831905|831906|831907|831908|831909|831910|831911|831912|831913|831914|831915|831916|831917|831918|831919|831920|831921|831922|831923|831924|831925|831926|831927|831928|831929|831930|831931|831932|831933|831934|831984|831985|833419|833420|833421|833422|833423|833424|833425|833426|833427|833428|833429|833430|833431|833432|833433|833434|833435|833436|833437|833438|833439|833440|833441|833442|833443|833444|833445|833446|833447|833448|833449|833450|833451|833452|833453|833454|833455|833456|833457|833458|833459|833460|833461|833462|833463|833464|833465|833466|833467|833468|833469|833470|833471|833472|833473|833474|833475|833476|833477|833478|833479|833480|833481|833482|833483|833484|833485|833486|833487|833488|833489|833490|833491|833492|833815|833816|833817|833818|833830|833831|833832|833833|833834|833847|833848|833849|836067|836068|836069|836070|841519|841520|841521|841522|841523|841524|844419|844420|844421|844422|844423|844424|844425|844426|844427|844428|845496|845497|846168|846169|846170|846171|846172|846173|846361|846362|846363|846364|846368|846371|846372|846373|846374|846375|846376|846377|846378|847809|847810|847811|847812|847813|848088|848089|848090|848091|848092|848093|848094|848095|848805|848806|848807|848808|850028|850029|850030|850031|850032|850922|851012|851161|851283|851335|851550|851636|851638|851866|851868|851878|851885|852074|852076|852078|852080|852155|852260|852271|852272|852345|852348|852352|852790|852890|852922|858269|871898|877777|892947|892952|892954|893015|893041|893057|893061|893076|897832|897835|897843|901947|901949|904347|904348|904349|904350|904351|904352|904353|922682|922683|923103|923104|923829|923830|923831|923832|923833|923834|923835|923836|923837|923840|923841|923842|923843|923844|923845|923846|923864|923865|923888|923889|924089|924090|924091|924092|924228|924229|924230|924231|924232|924351|924352|924353|924354|924355|924356|924357|924358|924364|924784|924785|924786|924787|924788|924789|924790|924791|924792|924793|924794|924795|924796|924797|924798|924799|924800|924801|924802|924803|924804|924805|924806|924807|924808|924809|924810|924811|924812|924813|924814|924903|924909|925563|925564|925565|927075|927076|927077|927078|927079|927080|927081|927981|927982|927983|927984|927985|928341|928342|928524|928578|928579|928580|928581|928582|928583|929008|929009|929010|929011|929012|929013|929119|929120|929121|929325|929326|929723|931265|931266|931267|931268|931269|931270|931847|931848|931849|931850|931851|932025|932675|932676|932677|932678|932679|932680|932681|932682|932683|932684|932685|932687|932688|932689|932690|932691|932692|932693|932694|932695|932712|932725|932727|932728|932930|932931|933141|933142|933143|933144|933145|933312|933313|933314|933315|933316|933317|933318|933319|933320|933321|933322|933323|933324|933814|933815|933816|933817|933818|933819|933820|933821|933822|933823|933824|933825|933826|933827|933828|933829|933830|933831|933832|933833|933834|933835|933836|933837|933986|933987|933988|933989|933991|933992|934737|934738|934739|934740|936628|937645|937646|937647|937648|938213|938214|938215|938275|938276|938280|938281|938754|938755|938756|938757|938758|938759|938860|938861|938862|938863|938864|939117|939118|939119|939932|939984|939985|939986|939987|939989|940036|940040|940041|940073|940144|940145|940373|940438|940744|940745|940798|940799|940804|940805|940875|940936|940937|941149|941235|942749|942750|942751|942752|942753|942754|942755|943428|943429|943430|943431|943432|943630|943631|943632|944361|944362|944363|944364|944365|944366|944367|944372|944373|944374|944375|944376|944377|944378|944379|944380|944381|944393|944395|944396|944413|944414|944415|944416|944637|944638|944861|944862|944863|945006|945007|945008|945009|945010|945011|945012|945013|945014|945015|945016|945017|945018|945019|945020|945021|945045|945564|945565|945566|945567|945568|945569|945570|945571|945572|945573|945574|945575|945576|945577|945578|945579|945580|945581|945582|945583|945584|945585|945586|945587|945756|945757|945763|946593|946594|946595|946596|948573|948574|948951|949613|949614|949615|949616|949975|949976|950346|950347|950352|950353|950837|950838|950839|950840|950929|950930|950931|951780|953025|953400|953550|953997|953998|953999|954000|954001|954002|954003|954004|954005|954006|954007|954008|954009|954010|954011|954012|954013|954015|954016|954017|954018|954019|954020|954021|954023|954024|954025|954026|954027|954028|954029|954030|954042|954049|954050|954051|954179|954331|954442|954443|954444|954445|954446|954447|954448|954449|955109|955110|955111|955112|955113|955114|955115|955116|955117|955118|955119|955120|955121|955122|955123|955210|955214|955215|955217|955803|955804|955805|955806|955807|955808|957223|957904|958295|958296|958297|958298|958299|958300|958301|958302|958345|958349|958675|958676|958677|958678|958679|958739|958740|958741|959289|959290|959291|959752|959756|959757|959804|959847|959848|959849|959864|959917|960521|960551|960582|960629|960630|965660|965661|965662|965663|965664|965665|965666|965667|965668|965669|965670|965671|965672|965673|965674|965675|965676|965677|965678|965679|965680|965681|965682|965683|965684|965685|965686|965687|965688|965689|965690|965691|965692|965693|965694|965695|965696|965697|965698|965699|965700|965701|965702|965703|965704|965705|965706|965707|965708|965709|965710|965711|965712|965713|965714|965715|965716|965717|965718|965719|965720|965721|965722|965723|965724|965725|965726|965727|965728|965729|965730|965731|965732|965733|965734|978127|978128|978129|978130|978131|978132|978133|978134|978135|978136|978137|978138|978139|978140|978141|978142|978143|978144|978145|978146|978147|978148|978149|978150|978151|978152|978153|978154|978155|978572|978573|978574|978575|978576|978577|979918|979919", "text": "Primary ciliary dyskinesia" }, { - "baseId": "15307|15308|15309|15310|15311|53131|53134|53136|53137|53138|53139|53140|53141|53142|53143|53144|53145|53146|53147|53148|53149|53150|53151|53154|53155|53156|53157|53158|53159|53160|53161|53163|53164|53165|53166|53167|53169|53171|53172|53174|53177|53179|53180|53181|53183|53184|53186|53188|53189|53190|53191|53192|53193|53196|53197|53198|136688|136689|136690|136691|136692|142603|142604|174588|174589|174590|174591|174592|174594|174595|174597|174598|174599|174602|174603|174604|174864|174867|174868|174872|174874|174875|174878|174880|178601|178602|178605|178608|190999|191519|195284|196219|198185|198186|198187|198188|198189|198191|198195|198197|198198|198199|198201|198203|198204|198209|198210|198211|198217|198220|198221|198223|198224|198227|221937|229715|229717|229718|229719|229722|229723|229733|229735|240733|240734|240735|240736|240737|240738|240739|240740|240741|240742|240743|240744|240745|240746|240747|258622|258623|258624|258625|258626|258628|258629|309472|309480|309483|309489|309494|309503|309507|309508|314229|314234|314241|314243|314255|314258|314260|314261|314266|314267|314268|314280|314282|314283|314285|314294|314296|320079|320081|320092|320098|320103|320104|320115|320122|320124|320130|320131|320132|320144|320148|320149|320154|320155|320158|320161|320162|320164|320173|320176|320181|320187|320189|320205|320221|320238|320241|320242|320647|320650|320652|320653|320660|320661|320663|320673|320674|320678|320681|320686|320693|320710|359790|359819|370611|370614|370615|371141|371145|371152|371160|371537|371545|371549|371567|373272|397108|397114|397116|397135|397136|397137|397152|397375|397378|397381|397388|397538|397540|397544|397555|397675|397678|397684|397694|397702|407815|407816|421775|425862|459673|459676|459677|459687|459690|459693|459699|459860|459863|459865|459873|459875|459876|459880|459884|460020|460103|460105|460112|460115|460121|460122|460548|460550|460555|460559|460564|460576|460583|460587|460596|460598|460606|460608|460610|460613|503252|503253|503262|508844|508845|508846|508847|508848|508849|508850|508851|508852|510137|510138|510143|511030|511097|524929|524948|524953|524954|524955|524966|524969|524980|525142|525147|525148|525151|525158|525161|525162|525170|525175|525189|525190|525192|525194|525290|525291|525295|525300|525303|525312|525408|525464|525466|525469|525472|525474|525475|525479|538625|550881|563557|563562|563563|563570|563572|563576|564487|564489|564495|564496|566152|566154|566155|566166|566168|569472|569489|569495|569500|569504|609738|609739|620344|622691|638714|638715|638716|638717|638718|638719|638720|638721|638722|638723|638724|638725|638726|638727|638728|638729|638730|638731|638732|638733|638734|638735|638736|638737|651948|652250|654581|679444|684128|684129|684131|684132|687586|687587|687589|689971|692770|701171|723763|767627|767637|775449|775476|775603|796360|796366|820191|836605|836606|836607|836608|836609|836610|836611|836612|836613|836614|836615|836616|836617|836618|836619|836620|836621|836622|836623|836624|836625|836626|836627|836628|836629|836630|836631|836632|836633|836634|836635|836636|836637|836638|836639|836640|836641|836642|865406|865407|865408|865409|865410|865411|865412|865413|865414|865415|865416|865417|865418|865419|865420|865421|865422|865423|865424|865425|865426|865427|865428|865429|865430|865431|868443|918500|925737|925738|925739|925740|925741|925742|925743|925744|925745|925746|925747|934944|934945|934946|934947|934948|934949|934950|934951|934952|934953|934954|934955|934956|934958|946809|946810|946811|946812|946813|946814|946815|946816|946817|946818|946819|946820|946821|946822|946823|946824|946825|955979|955980|955981|955982|955983|955984|955985|955986|959928|960713|981681", + "upstreamId": "15307|15308|15309|15310|15311|53131|53134|53136|53137|53138|53139|53140|53141|53142|53143|53144|53145|53146|53147|53148|53149|53150|53151|53154|53155|53156|53157|53158|53159|53160|53161|53163|53164|53165|53166|53167|53169|53171|53172|53174|53177|53179|53180|53181|53183|53184|53186|53188|53189|53190|53191|53192|53193|53196|53197|53198|136688|136689|136690|136691|136692|142603|142604|174588|174589|174590|174591|174592|174594|174595|174597|174598|174599|174602|174603|174604|174864|174867|174868|174872|174874|174875|174878|174880|178601|178602|178605|178608|190999|191519|195284|196219|198185|198186|198187|198188|198189|198191|198195|198197|198198|198199|198201|198203|198204|198209|198210|198211|198217|198220|198221|198223|198224|198227|221937|229715|229717|229718|229719|229722|229723|229733|229735|240733|240734|240735|240736|240737|240738|240739|240740|240741|240742|240743|240744|240745|240746|240747|258622|258623|258624|258625|258626|258628|258629|309472|309480|309483|309489|309494|309503|309507|309508|314229|314234|314241|314243|314255|314258|314260|314261|314266|314267|314268|314280|314282|314283|314285|314294|314296|320079|320081|320092|320098|320103|320104|320115|320122|320124|320130|320131|320132|320144|320148|320149|320154|320155|320158|320161|320162|320164|320173|320176|320181|320187|320189|320205|320221|320238|320241|320242|320647|320650|320652|320653|320660|320661|320663|320673|320674|320678|320681|320686|320693|320710|359790|359819|370611|370614|370615|371141|371145|371152|371160|371537|371545|371549|371567|373272|397108|397114|397116|397135|397136|397137|397152|397375|397378|397381|397388|397538|397540|397544|397555|397675|397678|397684|397694|397702|407815|407816|421775|425862|459673|459676|459677|459687|459690|459693|459699|459860|459863|459865|459873|459875|459876|459880|459884|460020|460103|460105|460112|460115|460121|460122|460548|460550|460555|460559|460564|460576|460583|460587|460596|460598|460606|460608|460610|460613|503252|503253|503262|508844|508845|508846|508847|508848|508849|508850|508851|508852|510137|510138|510143|511030|511097|524929|524948|524953|524954|524955|524966|524969|524980|525142|525147|525148|525151|525158|525161|525162|525170|525175|525189|525190|525192|525194|525290|525291|525295|525300|525303|525312|525408|525464|525466|525469|525472|525474|525475|525479|538625|550881|563557|563562|563563|563570|563572|563576|564487|564489|564495|564496|566152|566154|566155|566166|566168|569472|569489|569495|569500|569504|609738|609739|620344|622691|638714|638715|638716|638717|638718|638719|638720|638721|638722|638723|638724|638725|638726|638727|638728|638729|638730|638731|638732|638733|638734|638735|638736|638737|651948|652250|654581|679444|684128|684129|684131|684132|687586|687587|687589|689971|692770|701171|723763|767627|767637|775449|775476|775603|796360|796366|820191|836605|836606|836607|836608|836609|836610|836611|836612|836613|836614|836615|836616|836617|836618|836619|836620|836621|836622|836623|836624|836625|836626|836627|836628|836629|836630|836631|836632|836633|836634|836635|836636|836637|836638|836639|836640|836641|836642|865406|865407|865408|865409|865410|865411|865412|865413|865414|865415|865416|865417|865418|865419|865420|865421|865422|865423|865424|865425|865426|865427|865428|865429|865430|865431|868443|918500|925737|925738|925739|925740|925741|925742|925743|925744|925745|925746|925747|934944|934945|934946|934947|934948|934949|934950|934951|934952|934953|934954|934955|934956|934958|946809|946810|946811|946812|946813|946814|946815|946816|946817|946818|946819|946820|946821|946822|946823|946824|946825|955979|955980|955981|955982|955983|955984|955985|955986|959928|960713|981681", "text": "Dilated cardiomyopathy 1DD" }, { - "baseId": "15307|15309|15310|15365|19772|20564|23815|24426|24445|24645|27453|27453|27454|27690|27746|28675|28676|29147|29188|29190|29190|29516|29522|29523|29539|29543|29558|29566|31884|33195|33352|39353|39354|40451|40471|40472|40479|40498|40499|40500|40544|40551|40559|44293|44299|45109|45135|45135|45136|45138|45141|45269|45272|45272|45292|45401|45599|48043|48044|48808|49040|49167|51429|51431|51436|51439|51440|51732|51743|51745|51766|51796|51895|51983|51983|51992|51992|52026|52030|52036|52037|52065|52096|52108|52123|52135|52175|52198|52219|52239|52239|52245|52246|52253|52255|52258|52263|52268|52557|52562|52564|52574|52576|52584|52585|52587|52590|52636|52645|52794|52803|52806|52807|52808|52818|52828|53131|53139|53154|53163|53163|53166|53326|53411|53419|53427|53454|53476|53486|53503|53524|53528|53533|53680|53712|53747|53849|53863|53945|53949|54052|54075|54089|54093|54094|54115|54145|54223|54350|54357|54581|54639|54640|54642|54643|54644|54645|54647|54651|54652|54653|54656|54657|54659|54660|54661|54662|54664|54665|54666|54686|54768|54775|54781|54784|54790|54792|54793|54795|54798|54800|54804|55327|55576|55783|55809|55811|55832|55854|55886|55924|55958|55968|55997|56014|56020|56054|56064|56069|56075|56080|56088|56112|56141|56147|56151|56162|56168|56169|56175|56177|56178|56201|56212|56231|56235|56257|56278|56280|56284|56286|56296|56312|56327|56340|56349|56378|56402|56438|56441|56466|56488|56489|56492|56499|56562|56579|56622|56650|56661|56662|56664|56665|56678|56689|56699|56719|56763|56807|56809|56816|56821|56984|57005|57055|57192|57193|57194|57195|57196|57205|57206|57210|57225|57226|57231|57232|57233|57234|57238|57239|57240|57243|57244|57245|57248|57253|57255|57257|57259|57260|57262|57457|57482|57483|57484|57485|57486|57487|57488|57490|57495|77299|77299|77309|77316|77320|77687|77697|77699|77700|77753|77757|77774|77779|77803|77858|78369|78552|78626|78723|78801|78895|78915|100361|100410|100487|100756|102172|102190|102192|102203|102207|102215|132581|134503|136112|136674|136674|140106|140107|142212|142371|142372|142374|142375|142376|142381|143093|152012|153685|165472|165531|165532|165535|165553|165558|165561|165574|165583|165601|165602|165604|171048|171104|171133|171136|171141|171159|172177|172349|172360|172459|172487|172615|172623|172627|172630|172633|172649|172662|172664|172688|172690|172692|172696|172698|172707|172713|172726|172727|172790|172792|172818|172822|172832|172861|172880|172928|172932|172934|172935|172954|172959|172968|172994|173053|173067|173082|173086|173094|173096|173106|173110|173112|173115|173133|173141|173154|173163|173164|173220|173264|173321|173340|173350|173396|173403|173410|173465|173493|173633|173844|173847|173848|173854|173858|173859|173860|173866|173871|173922|173932|174000|174280|174383|174383|174483|174521|174524|174590|174600|174603|174608|174616|174622|174625|174626|174630|174635|174637|174639|174640|174641|174642|174779|174793|174880|174884|174887|174899|174900|174901|174902|174903|174905|174906|174908|174910|174912|174916|174918|174919|175146|175295|175296|175387|175414|175452|175468|175491|175495|175594|175599|175612|175623|175756|175863|175867|176098|176138|176317|176322|176439|176528|176766|176829|176939|177030|178191|178197|178206|178431|178436|178438|178440|178446|178456|178457|178470|178471|178473|178474|178475|178476|178477|178478|178481|178484|178519|178525|178526|178531|178540|178547|178548|178549|178552|178556|178564|178565|178566|178569|178605|178608|178609|178611|178623|178626|178627|178628|178635|178640|178643|178666|178669|178673|178676|178682|178684|178688|178709|178716|178731|178732|178736|178763|178764|178935|179281|179662|186151|188351|189250|189268|189307|189319|189377|189658|189857|189881|189882|189885|189921|189972|191293|192877|193417|193884|196450|196459|196467|196467|196470|196472|197005|197022|197036|197979|198007|198161|198163|198164|198165|198166|198169|198170|198182|198241|198242|198244|198245|198246|198248|198250|198251|198252|198305|198335|198346|198349|198351|198353|198475|198590|198767|198794|199026|199051|199141|199225|199274|199293|199344|199356|199437|199438|199459|199661|199724|205803|205804|213530|221942|224178|224181|224182|224183|224186|224200|224207|224208|224223|224224|224225|224226|224227|224228|224229|224230|224231|224232|224233|224234|224236|224237|224238|224240|224241|224243|224244|224253|224259|224261|224264|224269|224274|224276|224295|224297|224308|224311|224316|224319|224323|224328|224330|224331|224354|224374|224375|224379|224381|224384|224390|224393|224394|224412|224413|224419|224435|224436|224438|224439|224440|224441|224453|224455|224458|224462|224463|224473|224508|224512|224514|224519|224528|224546|224547|224561|224563|224564|224571|224572|224574|224576|224577|224584|224982|224983|224984|224985|224986|224987|224988|224989|224990|224991|224992|224993|224994|224995|224996|224997|224998|224999|225000|225001|225002|225003|225004|225005|225006|225008|225009|225010|225011|225012|225013|225014|225015|225016|225017|225018|225019|225020|225021|225022|225023|225024|225025|225026|225027|225028|225029|225030|225031|225032|225033|225034|225035|225036|225037|225038|225039|225040|225041|225042|225043|225044|225045|225046|225047|225048|225049|225050|225051|225052|225053|225054|225055|225056|225057|225058|225059|225060|225061|225062|225063|225064|225065|225066|225067|225068|225069|225070|225071|225072|225073|225074|225075|225076|225077|225078|225079|225080|225081|225082|225083|225084|225085|225086|225087|225088|225089|225090|225091|225092|225093|225094|225095|225096|225097|225098|225099|225100|225101|225102|225103|225104|225105|225106|225107|225108|225109|225110|225111|225112|225113|225114|225115|225116|225117|225118|225119|226430|227851|227852|228273|228275|228285|228287|228527|228571|228582|228610|228614|228632|228653|228686|228688|228692|228739|228748|228771|228842|228872|229164|229166|229168|229169|229498|229718|229742|229744|229747|229749|229754|229758|229760|229761|229762|229916|230208|230506|230595|238359|239212|239297|239319|239353|239354|239355|239356|240759|240761|240762|240764|240765|240766|240767|241801|243643|243644|243645|243646|243647|243648|243649|247399|248487|252605|259114|259117|259121|259122|259123|259125|259128|259131|259135|259139|267732|267735|273165|275301|283936|284090|311659|311663|311668|311669|311676|317232|317234|317236|317252|320399|323263|323265|323274|323869|323878|331630|339057|352158|352159|352160|352795|352796|352797|359958|360503|361057|362747|367623|369090|369099|369104|370678|371256|371261|371583|371628|371630|371639|373365|377391|378587|378614|378618|378699|379814|379818|379820|384439|390050|391151|391589|393912|393917|394337|397201|397203|397207|397208|397417|397596|397607|397611|397753|397756|403258|403688|403761|403762|403812|403815|403818|404083|404276|404280|404318|404320|405441|407847|415219|418202|418203|418204|419277|419279|419281|419286|419296|424551|426369|426370|438182|439873|440340|443088|443608|444580|444581|444583|446358|446359|446363|446585|448423|448428|448439|448442|448559|448570|448597|453112|453113|453181|453368|453484|453486|453865|455835|456069|459747|459756|459758|459921|459925|459933|459936|459941|460022|460193|460195|460207|460209|460213|460215|460217|460218|460221|460257|460638|461001|462133|469901|471346|471352|471358|471363|471366|471369|471370|471773|471797|481127|481130|481138|481141|481772|481868|485934|487217|487619|490449|491026|493565|496193|496213|496214|496247|496251|496578|496579|496658|496668|496675|496678|497125|497450|503186|507646|508364|509683|510139|510169|510170|510230|510266|510880|510882|510887|513911|513956|514041|514052|514088|514133|514185|514271|514360|516253|519847|519850|519874|519940|520101|521613|524866|525058|525259|525262|525377|525379|525557|525558|525559|525562|525579|534057|534069|534070|534072|534115|534548|534604|536589|536791|537013|551428|551708|557515|557517|558665|558955|558979|559168|559457|559647|559806|559808|563338|563570|563641|563666|563668|563671|563673|563683|564544|564689|566238|566241|566242|566248|566249|566251|569600|569603|569605|569609|569611|571702|571704|571706|573265|573266|573268|573272|573947|573948|575213|575214|575215|576324|576325|576326|576327|610480|614741|617333|624828|628363|628364|628365|628366|628367|628368|629101|629129|632117|632118|632119|632120|632121|632122|632123|632124|635251|638828|638829|638830|638831|638832|638833|638834|638835|638836|638837|638838|638839|638840|638841|639081|649189|649190|649191|649192|649193|649194|649195|649196|649197|649198|649199|649200|649201|651107|651167|652028|652031|652315|653221|653595|653609|654173|654176|654226|654229|654230|654461|672032|677127|677209|677212|677213|677214|677215|677216|677224|677226|677227|677231|677234|677248|677249|677258|679362|679371|679373|679376|679389|679393|679398|679401|679402|679404|679405|679420|679437|679444|679447|679459|679464|679524|679525|679528|679529|679530|679531|679532|679534|679535|679536|679544|679545|679546|679550|679559|679868|679870|679871|682183|683629|684916|685270|685831|686515|687616|687617|689264|689265|689980|691547|692823|692824|695229|720873|748848|759100|762134|775655|799015|819467|819468|820201|820202|821400|821401|824612|824613|824614|828991|828992|828993|828994|828995|828996|828997|828998|828999|836756|836757|836758|836759|836760|836761|836762|836763|836764|836765|836766|836767|836768|836769|836770|836771|836772|836773|836774|836775|836776|836777|849052|849053|849054|849055|849056|849057|849058|849059|849060|849061|849062|849063|849064|849065|849066|851598|851770|852241|852423|858250|858260|858261|866549|866550|866551|866552|866553|866554|866555|866556|866557|866558|866559|902885|902886|902887|902888|902889|902890|902891|903462|903742|918208|918483|922204|923479|925781|925782|925783|925784|925785|925786|929405|929406|929407|930745|932260|932261|935005|935006|935007|935008|939199|939200|939201|939202|939203|939204|940165|940523|940954|940955|941273|942175|942176|943913|943914|943915|943916|943917|943918|946854|946855|946856|946857|946858|946859|946860|946861|951342|951343|951344|951345|951346|951347|951348|951349|952599|953734|953735|953736|956030|956031|956032|956033|959026|959027|959028|959931|960534|960959|962129|962130|963098|963099|963100|963101|963102|963103|963104|963104|965296|965297|965312|967122|967123|980666|980668|980672", + "upstreamId": "15307|15309|15310|15365|19772|20564|23815|24426|24445|24645|27453|27453|27454|27690|27746|28675|28676|29147|29188|29190|29190|29516|29522|29523|29539|29543|29558|29566|31884|33195|33352|39353|39354|40451|40471|40472|40479|40498|40499|40500|40544|40551|40559|44293|44299|45109|45135|45135|45136|45138|45141|45269|45272|45272|45292|45401|45599|48043|48044|48808|49040|49167|51429|51431|51436|51439|51440|51732|51743|51745|51766|51796|51895|51983|51983|51992|51992|52026|52030|52036|52037|52065|52096|52108|52123|52135|52175|52198|52219|52239|52239|52245|52246|52253|52255|52258|52263|52268|52557|52562|52564|52574|52576|52584|52585|52587|52590|52636|52645|52794|52803|52806|52807|52808|52818|52828|53131|53139|53154|53163|53163|53166|53326|53411|53419|53427|53454|53476|53486|53503|53524|53528|53533|53680|53712|53747|53849|53863|53945|53949|54052|54075|54089|54093|54094|54115|54145|54223|54350|54357|54581|54639|54640|54642|54643|54644|54645|54647|54651|54652|54653|54656|54657|54659|54660|54661|54662|54664|54665|54666|54686|54768|54775|54781|54784|54790|54792|54793|54795|54798|54800|54804|55327|55576|55783|55809|55811|55832|55854|55886|55924|55958|55968|55997|56014|56020|56054|56064|56069|56075|56080|56088|56112|56141|56147|56151|56162|56168|56169|56175|56177|56178|56201|56212|56231|56235|56257|56278|56280|56284|56286|56296|56312|56327|56340|56349|56378|56402|56438|56441|56466|56488|56489|56492|56499|56562|56579|56622|56650|56661|56662|56664|56665|56678|56689|56699|56719|56763|56807|56809|56816|56821|56984|57005|57055|57192|57193|57194|57195|57196|57205|57206|57210|57225|57226|57231|57232|57233|57234|57238|57239|57240|57243|57244|57245|57248|57253|57255|57257|57259|57260|57262|57457|57482|57483|57484|57485|57486|57487|57488|57490|57495|77299|77299|77309|77316|77320|77687|77697|77699|77700|77753|77757|77774|77779|77803|77858|78369|78552|78626|78723|78801|78895|78915|100361|100410|100487|100756|102172|102190|102192|102203|102207|102215|132581|134503|136112|136674|136674|140106|140107|142212|142371|142372|142374|142375|142376|142381|143093|152012|153685|165472|165531|165532|165535|165553|165558|165561|165574|165583|165601|165602|165604|171048|171104|171133|171136|171141|171159|172177|172349|172360|172459|172487|172615|172623|172627|172630|172633|172649|172662|172664|172688|172690|172692|172696|172698|172707|172713|172726|172727|172790|172792|172818|172822|172832|172861|172880|172928|172932|172934|172935|172954|172959|172968|172994|173053|173067|173082|173086|173094|173096|173106|173110|173112|173115|173133|173141|173154|173163|173164|173220|173264|173321|173340|173350|173396|173403|173410|173465|173493|173633|173844|173847|173848|173854|173858|173859|173860|173866|173871|173922|173932|174000|174280|174383|174383|174483|174521|174524|174590|174600|174603|174608|174616|174622|174625|174626|174630|174635|174637|174639|174640|174641|174642|174779|174793|174880|174884|174887|174899|174900|174901|174902|174903|174905|174906|174908|174910|174912|174916|174918|174919|175146|175295|175296|175387|175414|175452|175468|175491|175495|175594|175599|175612|175623|175756|175863|175867|176098|176138|176317|176322|176439|176528|176766|176829|176939|177030|178191|178197|178206|178431|178436|178438|178440|178446|178456|178457|178470|178471|178473|178474|178475|178476|178477|178478|178481|178484|178519|178525|178526|178531|178540|178547|178548|178549|178552|178556|178564|178565|178566|178569|178605|178608|178609|178611|178623|178626|178627|178628|178635|178640|178643|178666|178669|178673|178676|178682|178684|178688|178709|178716|178731|178732|178736|178763|178764|178935|179281|179662|186151|188351|189250|189268|189307|189319|189377|189658|189857|189881|189882|189885|189921|189972|191293|192877|193417|193884|196450|196459|196467|196467|196470|196472|197005|197022|197036|197979|198007|198161|198163|198164|198165|198166|198169|198170|198182|198241|198242|198244|198245|198246|198248|198250|198251|198252|198305|198335|198346|198349|198351|198353|198475|198590|198767|198794|199026|199051|199141|199225|199274|199293|199344|199356|199437|199438|199459|199661|199724|205803|205804|213530|221942|224178|224181|224182|224183|224186|224200|224207|224208|224223|224224|224225|224226|224227|224228|224229|224230|224231|224232|224233|224234|224236|224237|224238|224240|224241|224243|224244|224253|224259|224261|224264|224269|224274|224276|224295|224297|224308|224311|224316|224319|224323|224328|224330|224331|224354|224374|224375|224379|224381|224384|224390|224393|224394|224412|224413|224419|224435|224436|224438|224439|224440|224441|224453|224455|224458|224462|224463|224473|224508|224512|224514|224519|224528|224546|224547|224561|224563|224564|224571|224572|224574|224576|224577|224584|224982|224983|224984|224985|224986|224987|224988|224989|224990|224991|224992|224993|224994|224995|224996|224997|224998|224999|225000|225001|225002|225003|225004|225005|225006|225008|225009|225010|225011|225012|225013|225014|225015|225016|225017|225018|225019|225020|225021|225022|225023|225024|225025|225026|225027|225028|225029|225030|225031|225032|225033|225034|225035|225036|225037|225038|225039|225040|225041|225042|225043|225044|225045|225046|225047|225048|225049|225050|225051|225052|225053|225054|225055|225056|225057|225058|225059|225060|225061|225062|225063|225064|225065|225066|225067|225068|225069|225070|225071|225072|225073|225074|225075|225076|225077|225078|225079|225080|225081|225082|225083|225084|225085|225086|225087|225088|225089|225090|225091|225092|225093|225094|225095|225096|225097|225098|225099|225100|225101|225102|225103|225104|225105|225106|225107|225108|225109|225110|225111|225112|225113|225114|225115|225116|225117|225118|225119|226430|227851|227852|228273|228275|228285|228287|228527|228571|228582|228610|228614|228632|228653|228686|228688|228692|228739|228748|228771|228842|228872|229164|229166|229168|229169|229498|229718|229742|229744|229747|229749|229754|229758|229760|229761|229762|229916|230208|230506|230595|238359|239212|239297|239319|239353|239354|239355|239356|240759|240761|240762|240764|240765|240766|240767|241801|243643|243644|243645|243646|243647|243648|243649|247399|248487|252605|259114|259117|259121|259122|259123|259125|259128|259131|259135|259139|267732|267735|273165|275301|283936|284090|311659|311663|311668|311669|311676|317232|317234|317236|317252|320399|323263|323265|323274|323869|323878|331630|339057|352158|352159|352160|352795|352796|352797|359958|360503|361057|362747|367623|369090|369099|369104|370678|371256|371261|371583|371628|371630|371639|373365|377391|378587|378614|378618|378699|379814|379818|379820|384439|390050|391151|391589|393912|393917|394337|397201|397203|397207|397208|397417|397596|397607|397611|397753|397756|403258|403688|403761|403762|403812|403815|403818|404083|404276|404280|404318|404320|405441|407847|415219|418202|418203|418204|419277|419279|419281|419286|419296|424551|426369|426370|438182|439873|440340|443088|443608|444580|444581|444583|446358|446359|446363|446585|448423|448428|448439|448442|448559|448570|448597|453112|453113|453181|453368|453484|453486|453865|455835|456069|459747|459756|459758|459921|459925|459933|459936|459941|460022|460193|460195|460207|460209|460213|460215|460217|460218|460221|460257|460638|461001|462133|469901|471346|471352|471358|471363|471366|471369|471370|471773|471797|481127|481130|481138|481141|481772|481868|485934|487217|487619|490449|491026|493565|496193|496213|496214|496247|496251|496578|496579|496658|496668|496675|496678|497125|497450|503186|507646|508364|509683|510139|510169|510170|510230|510266|510880|510882|510887|513911|513956|514041|514052|514088|514133|514185|514271|514360|516253|519847|519850|519874|519940|520101|521613|524866|525058|525259|525262|525377|525379|525557|525558|525559|525562|525579|534057|534069|534070|534072|534115|534548|534604|536589|536791|537013|551428|551708|557515|557517|558665|558955|558979|559168|559457|559647|559806|559808|563338|563570|563641|563666|563668|563671|563673|563683|564544|564689|566238|566241|566242|566248|566249|566251|569600|569603|569605|569609|569611|571702|571704|571706|573265|573266|573268|573272|573947|573948|575213|575214|575215|576324|576325|576326|576327|610480|614741|617333|624828|628363|628364|628365|628366|628367|628368|629101|629129|632117|632118|632119|632120|632121|632122|632123|632124|635251|638828|638829|638830|638831|638832|638833|638834|638835|638836|638837|638838|638839|638840|638841|639081|649189|649190|649191|649192|649193|649194|649195|649196|649197|649198|649199|649200|649201|651107|651167|652028|652031|652315|653221|653595|653609|654173|654176|654226|654229|654230|654461|672032|677127|677209|677212|677213|677214|677215|677216|677224|677226|677227|677231|677234|677248|677249|677258|679362|679371|679373|679376|679389|679393|679398|679401|679402|679404|679405|679420|679437|679444|679447|679459|679464|679524|679525|679528|679529|679530|679531|679532|679534|679535|679536|679544|679545|679546|679550|679559|679868|679870|679871|682183|683629|684916|685270|685831|686515|687616|687617|689264|689265|689980|691547|692823|692824|695229|720873|748848|759100|762134|775655|799015|819467|819468|820201|820202|821400|821401|824612|824613|824614|828991|828992|828993|828994|828995|828996|828997|828998|828999|836756|836757|836758|836759|836760|836761|836762|836763|836764|836765|836766|836767|836768|836769|836770|836771|836772|836773|836774|836775|836776|836777|849052|849053|849054|849055|849056|849057|849058|849059|849060|849061|849062|849063|849064|849065|849066|851598|851770|852241|852423|858250|858260|858261|866549|866550|866551|866552|866553|866554|866555|866556|866557|866558|866559|902885|902886|902887|902888|902889|902890|902891|903462|903742|918208|918483|922204|923479|925781|925782|925783|925784|925785|925786|929405|929406|929407|930745|932260|932261|935005|935006|935007|935008|939199|939200|939201|939202|939203|939204|940165|940523|940954|940955|941273|942175|942176|943913|943914|943915|943916|943917|943918|946854|946855|946856|946857|946858|946859|946860|946861|951342|951343|951344|951345|951346|951347|951348|951349|952599|953734|953735|953736|956030|956031|956032|956033|959026|959027|959028|959931|960534|960959|962129|962130|963098|963099|963100|963101|963102|963103|963104|963104|965296|965297|965312|967122|967123|980666|980668|980672", "text": "Primary dilated cardiomyopathy" }, { - "baseId": "15307|15365|27484|29147|29148|29151|29152|45929|51986|51987|51991|51992|51993|52038|52039|52043|52056|52064|52066|52070|52080|52083|52091|52108|52111|52112|52123|52126|52171|52190|52194|52226|52252|52258|52261|52273|52645|54762|56273|77805|77852|136663|136674|142081|142091|152936|171164|172489|175443|175446|175516|175588|175590|175599|175606|175612|178672|179466|179471|179522|179525|179526|179579|179680|189445|197064|198899|199027|199253|213631|230497|230502|238538|254932|258803|258808|260507|260510|260511|260512|260513|260514|260517|260518|260519|260520|260521|260522|260523|260524|260525|260526|260527|260529|260530|260531|260532|260533|260534|260535|260538|260541|260544|328980|328997|335630|335643|335644|335647|335648|337446|337452|337458|337463|337469|337478|361876|538436|538437|551269|576065|609140|610572|656238|788880|798672|841243|841286|851989|871732|871733|871734|871736|871737|871738|871739|872363|872364|872365|961530|970992", + "upstreamId": "15307|15365|27484|29147|29148|29151|29152|45929|51986|51987|51991|51992|51993|52038|52039|52043|52056|52064|52066|52070|52080|52083|52091|52108|52111|52112|52123|52126|52171|52190|52194|52226|52252|52258|52261|52273|52645|54762|56273|77805|77852|136663|136674|142081|142091|152936|171164|172489|175443|175446|175516|175588|175590|175599|175606|175612|178672|179466|179471|179522|179525|179526|179579|179680|189445|197064|198899|199027|199253|213631|230497|230502|238538|254932|258803|258808|260507|260510|260511|260512|260513|260514|260517|260518|260519|260520|260521|260522|260523|260524|260525|260526|260527|260529|260530|260531|260532|260533|260534|260535|260538|260541|260544|328980|328997|335630|335643|335644|335647|335648|337446|337452|337458|337463|337469|337478|361876|538436|538437|551269|576065|609140|610572|656238|788880|798672|841243|841286|851989|871732|871733|871734|871736|871737|871738|871739|872363|872364|872365|961530|970992", "text": "Dilated cardiomyopathy 1S" }, { - "baseId": "15307|19770|29517|29518|29519|29522|29523|29524|29529|29530|29543|29556|29566|38730|45135|45138|45141|45142|45599|51983|53131|53630|53956|54048|54562|56340|57195|57201|57207|57208|57209|57210|57212|57226|57227|57234|57235|57238|57240|57242|57250|57252|57261|57262|76672|77677|77750|77753|77757|77785|77796|77798|77818|77828|77852|78532|171145|172488|172489|174280|175721|179369|189824|189882|196270|196461|196463|196470|197065|197076|197939|198089|198130|198218|199039|199304|213610|223685|224183|226437|229844|230204|230494|231915|238151|238425|244222|244226|244232|259712|264565|265497|276591|276609|276614|276876|277432|277441|277446|277453|277456|277461|277537|368747|392211|420289|427650|444810|449108|495116|508080|509122|511002|511003|513495|517129|525475|536179|550299|556620|576413|611727|622303|626918|638734|672030|672460|681874|685575|777019|792654|796996|822803|828010|862419|862420|862421|862422|862423|864995|915170|918566|918567|964131|966404|966408|966410|966411|966412|966413|966414|966436|966437|966448|966449|966450|966474|966475|966486|966487|966495|966496|966497|966501", + "upstreamId": "15307|19770|29517|29518|29519|29522|29523|29524|29529|29530|29543|29556|29566|38730|45135|45138|45141|45142|45599|51983|53131|53630|53956|54048|54562|56340|57195|57201|57207|57208|57209|57210|57212|57226|57227|57234|57235|57238|57240|57242|57250|57252|57261|57262|76672|77677|77750|77753|77757|77785|77796|77798|77818|77828|77852|78532|171145|172488|172489|174280|175721|179369|189824|189882|196270|196461|196463|196470|197065|197076|197939|198089|198130|198218|199039|199304|213610|223685|224183|226437|229844|230204|230494|231915|238151|238425|244222|244226|244232|259712|264565|265497|276591|276609|276614|276876|277432|277441|277446|277453|277456|277461|277537|368747|392211|420289|427650|444810|449108|495116|508080|509122|511002|511003|513495|517129|525475|536179|550299|556620|576413|611727|622303|626918|638734|672030|672460|681874|685575|777019|792654|796996|822803|828010|862419|862420|862421|862422|862423|864995|915170|918566|918567|964131|966404|966408|966410|966411|966412|966413|966414|966436|966437|966448|966449|966450|966474|966475|966486|966487|966495|966496|966497|966501", "text": "Dilated cardiomyopathy 1A" }, { - "baseId": "15310|19768|23647|24435|27237|40479|49056|51797|51822|51920|51941|52071|52096|52135|52175|52809|53150|53190|53485|53680|53712|54073|54098|54246|54693|54748|56466|56562|57199|57240|57257|77735|77782|78664|78727|172357|172497|172608|172662|172968|173096|173871|173922|175485|175638|178436|178940|179175|189870|192373|194683|196456|198090|198307|198316|198562|204080|225057|226460|229486|229744|229746|229913|236815|258656|265379|397400|397403|397602|398280|407816|409090|416230|421324|421334|444822|481620|496342|508202|509205|510362|511043|511044|511055|511066|511082|511083|511085|511086|511098|511105|511109|511110|511116|511136|511143|514342|514344|589807|639084|639202|672372|672373|672374|672378|672381|672383|672384|672387|672388|672390|672391|672402|672404|672405|672408|672410|672411|672412|672414|672432|672439|672446|672458|672459|672461|672464|672465|904188|965824", + "upstreamId": "15310|19768|23647|24435|27237|40479|49056|51797|51822|51920|51941|52071|52096|52135|52175|52809|53150|53190|53485|53680|53712|54073|54098|54246|54693|54748|56466|56562|57199|57240|57257|77735|77782|78664|78727|172357|172497|172608|172662|172968|173096|173871|173922|175485|175638|178436|178940|179175|189870|192373|194683|196456|198090|198307|198316|198562|204080|225057|226460|229486|229744|229746|229913|236815|258656|265379|397400|397403|397602|398280|407816|409090|416230|421324|421334|444822|481620|496342|508202|509205|510362|511043|511044|511055|511066|511082|511083|511085|511086|511098|511105|511109|511110|511116|511136|511143|514342|514344|589807|639084|639202|672372|672373|672374|672378|672381|672383|672384|672387|672388|672390|672391|672402|672404|672405|672408|672410|672411|672412|672414|672432|672439|672446|672458|672459|672461|672464|672465|904188|965824", "text": "Primary familial dilated cardiomyopathy" }, { - "baseId": "15310|15365|15773|19283|19766|19767|19768|19773|20580|21793|21795|21796|21885|21892|23317|23318|23332|23642|23643|23647|23656|23660|23815|23820|25777|25787|25807|27447|27450|27460|27460|27461|27465|27495|27698|28456|28460|28465|28466|28473|28497|28518|28675|28676|29101|29102|29103|29104|29127|29128|29129|29131|29132|29133|29134|29136|29137|29141|29143|29144|29150|29153|29161|29163|29164|29190|29524|29525|29526|29537|29538|29543|29556|29558|29559|29566|31852|31853|31855|31857|31885|31889|33097|33098|33352|33362|33370|39099|39141|39951|40368|40370|40371|40374|40390|40426|40431|40437|40438|40439|40440|40441|40448|40451|40479|40543|40548|40549|40558|44290|44291|44292|44292|44293|44294|44295|44296|44297|44298|44299|44300|44310|44313|44314|44315|44316|44357|44436|44468|44630|44665|44666|44667|44668|44669|44670|44671|44672|44673|44674|44674|44675|44675|44676|44676|44677|44678|44679|44680|44681|44683|44684|44685|44686|44687|44688|44689|44690|44691|44692|44693|44694|44800|44801|44802|44803|44804|44944|45088|45103|45105|45106|45107|45108|45109|45110|45111|45112|45139|45140|45141|45142|45263|45264|45265|45269|45271|45272|45272|45275|45276|45290|45292|45293|45295|45296|45298|45301|45303|45304|45305|45307|45308|45310|45311|45313|45314|45315|45316|45341|45342|45345|45357|45358|45359|45390|45391|45393|45394|45396|45397|45398|45399|45400|45401|45402|45403|45404|45405|45406|45407|45408|45409|45410|45411|45419|45421|45422|45425|45426|45427|45432|45433|45531|45532|45534|45535|45536|45537|45538|45542|45547|45553|45557|45558|45559|45599|45725|45929|48805|49040|49167|49357|49462|49658|51095|51441|51442|51443|51444|51624|51626|51628|51629|51668|51669|51671|51673|51676|51680|51682|51685|51686|51688|51689|51691|51693|51694|51697|51703|51704|51705|51706|51707|51708|51709|51710|51711|51712|51713|51715|51716|51719|51720|51721|51726|51728|51732|51733|51734|51735|51736|51739|51741|51742|51743|51745|51746|51747|51749|51751|51754|51755|51757|51758|51763|51764|51765|51766|51768|51769|51770|51771|51773|51774|51776|51777|51778|51783|51784|51785|51787|51788|51789|51790|51791|51793|51794|51796|51797|51798|51801|51805|51807|51808|51814|51815|51817|51818|51819|51821|51822|51824|51825|51826|51828|51829|51834|51835|51838|51839|51841|51843|51844|51845|51846|51848|51849|51850|51851|51852|51854|51855|51857|51858|51858|51860|51861|51864|51865|51870|51873|51874|51875|51876|51879|51880|51881|51883|51886|51889|51891|51892|51893|51895|51897|51900|51904|51905|51906|51909|51911|51914|51920|51921|51922|51923|51924|51926|51927|51928|51930|51931|51933|51935|51937|51938|51941|51942|51943|51945|51947|51948|51949|51950|51954|51955|51956|51961|51962|51963|51964|51966|51967|51968|51969|51970|51974|51977|51979|51980|51981|51982|51983|51985|51986|51987|51989|51990|51991|51993|51995|51997|51998|51999|52002|52003|52011|52012|52013|52014|52016|52017|52023|52026|52027|52033|52034|52039|52042|52043|52044|52045|52046|52050|52054|52059|52060|52064|52066|52068|52069|52070|52071|52081|52085|52088|52090|52092|52096|52101|52107|52108|52109|52111|52112|52114|52115|52116|52118|52119|52120|52121|52122|52123|52125|52126|52127|52129|52130|52131|52132|52140|52142|52143|52144|52145|52146|52147|52149|52150|52151|52152|52155|52156|52157|52158|52159|52160|52161|52162|52164|52165|52168|52169|52171|52173|52174|52177|52179|52181|52182|52183|52184|52185|52188|52189|52190|52190|52192|52194|52197|52199|52200|52201|52202|52204|52205|52207|52208|52209|52212|52214|52215|52217|52218|52219|52220|52222|52223|52226|52227|52233|52234|52235|52237|52238|52241|52242|52243|52245|52246|52251|52252|52254|52256|52257|52259|52261|52262|52263|52265|52268|52270|52271|52273|52276|52283|52285|52286|52287|52289|52290|52291|52292|52294|52295|52296|52297|52298|52299|52300|52525|52531|52532|52533|52534|52536|52537|52538|52539|52540|52541|52542|52543|52544|52545|52546|52547|52548|52549|52550|52551|52552|52554|52558|52559|52561|52562|52563|52565|52567|52569|52570|52571|52573|52575|52577|52578|52580|52586|52588|52590|52592|52595|52600|52602|52604|52606|52608|52612|52613|52617|52619|52622|52623|52625|52628|52630|52636|52638|52639|52641|52642|52643|52644|52645|52648|52783|52784|52785|52786|52787|52788|52790|52791|52793|52799|52801|52804|52805|52809|52810|52812|52820|52821|52823|52824|52825|52829|52832|52833|52834|52835|52836|52837|52838|52839|52840|52841|52843|52844|52846|52850|52853|52854|52855|52856|52865|52867|52868|52870|52871|52874|52876|52877|52879|52881|52884|52885|52886|52887|52888|52890|52891|52892|52894|52896|52897|52898|52899|52900|52902|52903|52908|52909|52910|52911|52914|52915|52916|52919|52920|52922|52924|52925|52927|52928|52929|52930|52931|52932|52933|52934|52935|52936|52937|52938|52939|52940|52941|52944|52945|52946|52947|52951|52955|52956|52957|52958|52959|52960|52961|52962|52963|52964|52966|52967|52969|52971|52973|52974|52976|52979|52980|52982|52986|52987|52988|52989|52990|52991|52994|52995|52996|52997|52998|52999|53001|53002|53003|53005|53006|53007|53008|53009|53010|53011|53062|53064|53066|53071|53072|53073|53077|53078|53080|53084|53086|53089|53090|53093|53096|53098|53100|53109|53111|53112|53117|53120|53134|53137|53138|53139|53142|53146|53147|53149|53151|53154|53156|53158|53163|53163|53166|53167|53171|53172|53174|53177|53179|53181|53186|53188|53189|53190|53192|53193|53196|53197|53198|53320|53321|53323|53326|53329|53330|53338|53339|53349|53399|53402|53403|53406|53410|53413|53419|53422|53432|53440|53441|53444|53445|53450|53451|53454|53455|53456|53457|53459|53460|53462|53463|53464|53465|53466|53467|53469|53470|53471|53472|53473|53474|53474|53475|53476|53479|53480|53481|53482|53483|53484|53485|53486|53486|53489|53490|53492|53493|53494|53495|53496|53497|53498|53506|53513|53514|53516|53528|53532|53535|53540|53541|53546|53547|53548|53550|53551|53562|53565|53566|53567|53574|53575|53579|53580|53593|53601|53613|53615|53616|53617|53620|53627|53634|53636|53637|53638|53640|53641|53642|53648|53650|53653|53654|53656|53659|53660|53661|53664|53665|53667|53673|53676|53678|53684|53688|53691|53696|53700|53703|53704|53708|53709|53713|53745|53747|53858|53859|53861|53862|53863|53868|53872|53873|53874|53875|54017|54021|54022|54023|54024|54025|54027|54028|54031|54034|54035|54036|54040|54041|54042|54043|54044|54045|54048|54049|54051|54053|54054|54057|54060|54061|54062|54064|54065|54066|54067|54073|54074|54075|54075|54077|54078|54079|54080|54081|54082|54083|54084|54085|54086|54088|54090|54091|54092|54093|54096|54096|54097|54098|54100|54103|54104|54105|54106|54107|54108|54110|54112|54113|54114|54116|54117|54118|54120|54122|54123|54124|54127|54128|54129|54130|54131|54132|54134|54135|54136|54137|54138|54140|54141|54142|54143|54144|54147|54148|54149|54170|54172|54173|54174|54175|54177|54180|54181|54183|54185|54188|54190|54191|54192|54193|54195|54196|54197|54198|54199|54200|54202|54204|54205|54207|54209|54210|54214|54215|54216|54217|54219|54220|54222|54223|54224|54225|54228|54229|54230|54233|54234|54235|54236|54239|54240|54241|54243|54244|54246|54247|54248|54250|54251|54251|54252|54253|54254|54255|54256|54257|54259|54337|54338|54339|54344|54345|54346|54348|54354|54359|54361|54552|54553|54555|54557|54558|54559|54564|54566|54570|54576|54577|54580|54582|54587|54589|54591|54661|54675|54677|54683|54690|54692|54693|54696|54697|54698|54710|54713|54714|54716|54727|54743|54748|54749|54753|54757|54765|54772|54775|54779|54783|54788|54790|54793|54795|54796|54797|54798|54800|54803|54804|54804|54849|54851|54852|54853|54857|54858|54859|54861|54862|54864|54865|54867|54868|54869|54871|54873|54874|54875|54876|54877|54878|54879|54880|54882|54883|54884|54886|54887|54888|54889|54890|54891|54892|54895|54896|54898|54901|54902|54903|54905|54943|54944|54945|54945|54946|54947|54952|54997|54999|55002|55007|55007|55009|55015|55022|55301|55303|55304|55305|55306|55311|55312|55313|55315|55317|55318|55319|55320|55321|55322|55325|55326|55327|55328|55330|55331|55332|55334|55335|55336|55337|55338|55339|55340|55342|55343|55344|55347|55348|55349|55351|55352|55353|55354|55355|55356|55361|55365|55366|55367|55369|55370|55681|55682|55686|55687|55688|55691|55691|55692|55694|55699|55701|55738|55741|55744|55746|55750|55752|55756|55757|55759|55760|55762|55763|55764|55768|55769|55771|55774|55777|55779|55782|55783|55786|55787|55796|55798|55798|55800|55808|55809|55810|55813|55814|55816|55818|55819|55820|55823|55826|55839|55840|55841|55845|55846|55848|55850|55853|55855|55858|55859|55866|55867|55868|55876|55877|55878|55880|55882|55887|55891|55891|55892|55898|55904|55906|55910|55918|55929|55935|55936|55936|55943|55945|55952|55954|55956|55957|55960|55982|55984|55985|55994|55995|55997|55999|56002|56004|56006|56009|56013|56016|56018|56022|56029|56038|56041|56043|56045|56047|56048|56049|56052|56053|56054|56060|56066|56074|56076|56077|56079|56082|56083|56084|56087|56094|56096|56097|56099|56101|56108|56113|56115|56116|56118|56119|56131|56132|56135|56136|56137|56142|56143|56145|56148|56152|56153|56155|56160|56167|56172|56173|56176|56179|56180|56180|56181|56183|56187|56189|56190|56195|56196|56199|56201|56203|56205|56207|56209|56210|56211|56214|56214|56215|56222|56231|56233|56235|56240|56243|56248|56251|56253|56256|56264|56265|56271|56276|56281|56282|56289|56289|56302|56302|56303|56305|56307|56321|56322|56323|56323|56324|56325|56325|56327|56328|56330|56333|56339|56340|56342|56342|56343|56345|56347|56353|56353|56354|56354|56356|56359|56362|56364|56366|56367|56368|56373|56377|56381|56384|56387|56388|56390|56394|56395|56396|56401|56405|56409|56413|56413|56415|56418|56419|56430|56437|56439|56440|56441|56441|56443|56454|56457|56459|56462|56463|56466|56467|56469|56471|56472|56473|56477|56481|56483|56485|56486|56487|56497|56499|56499|56500|56503|56506|56508|56515|56516|56526|56528|56530|56537|56539|56540|56544|56549|56551|56556|56559|56560|56563|56564|56566|56569|56570|56572|56575|56576|56577|56578|56580|56582|56584|56586|56587|56597|56600|56601|56606|56608|56610|56616|56618|56620|56622|56631|56633|56634|56641|56643|56645|56647|56648|56652|56663|56671|56675|56681|56685|56689|56693|56700|56703|56705|56707|56708|56709|56715|56716|56718|56722|56723|56725|56729|56737|56738|56752|56753|56760|56762|56764|56766|56772|56775|56777|56778|56784|56790|56797|56797|56798|56800|56803|56804|56805|56805|56806|56809|56820|56822|56823|56828|56831|56834|56834|56837|56838|56841|56842|56842|56847|56849|56851|56855|56857|56870|56876|56881|56884|56887|56973|56975|56976|56978|56980|56985|56990|56992|56994|56995|57003|57007|57008|57051|57057|57061|57063|57064|57069|57070|57072|57074|57079|57197|57198|57199|57201|57204|57207|57208|57209|57211|57212|57213|57215|57216|57218|57219|57220|57226|57227|57230|57235|57238|57242|57246|57247|57250|57251|57252|57255|57256|57257|57261|57262|57280|57284|57457|57478|57484|57487|57488|57490|57495|65597|75578|77320|77508|77656|77671|77677|77691|77693|77694|77695|77698|77700|77701|77716|77748|77759|77761|77764|77765|77767|77791|77803|77807|77856|77858|77916|78502|78564|87691|89864|90404|91688|94537|98597|99382|99383|99385|100387|100508|100516|100602|100683|100756|100761|101186|102004|102134|102161|102169|102170|102195|102200|102206|102208|102210|102214|134503|135114|136041|136110|136111|136128|136129|136131|136136|136355|136670|136686|136689|136690|136692|136725|136732|139983|139987|140048|140738|140739|140861|140863|140867|140868|140869|140871|140873|140874|140875|140876|141245|141246|141379|141388|141398|141479|141490|141502|141509|141510|141515|141516|141524|141542|141544|141551|141603|141604|141605|141663|141664|141772|141803|142020|142021|142022|142077|142078|142079|142080|142081|142082|142083|142084|142086|142090|142091|142092|142093|142094|142095|142096|142097|142098|142102|142214|142394|142395|142397|142398|142513|142603|142604|142638|142639|142640|142642|142645|142646|142648|142649|142652|142653|142654|142655|142656|142657|142658|142802|165525|165534|165535|165536|165540|165560|165582|165583|165584|167352|167353|171048|171050|171057|171058|171059|171060|171061|171084|171102|171103|171104|171119|171133|171135|171136|171137|171138|171139|171140|171141|171142|171143|171144|171145|171146|171147|171150|171151|171157|171158|171159|171160|171161|171162|171163|171164|171192|171193|171194|171245|172177|172178|172179|172341|172343|172344|172346|172347|172348|172350|172354|172355|172361|172362|172367|172391|172392|172396|172397|172400|172402|172403|172404|172407|172409|172410|172411|172412|172415|172416|172417|172420|172421|172422|172425|172426|172428|172429|172434|172435|172436|172437|172460|172461|172473|172475|172477|172483|172485|172489|172490|172497|172533|172536|172537|172539|172541|172543|172545|172546|172547|172549|172553|172554|172555|172559|172561|172562|172564|172565|172567|172568|172573|172596|172597|172598|172609|172611|172621|172642|172646|172647|172651|172653|172656|172662|172671|172681|172684|172691|172697|172698|172699|172726|172787|172788|172791|172792|172793|172800|172807|172808|172850|172861|172872|172926|172934|172948|172951|172955|172963|172967|172968|172975|172981|172984|172987|172998|173009|173015|173030|173040|173041|173043|173053|173059|173061|173080|173081|173095|173099|173102|173114|173126|173133|173141|173155|173163|173166|173175|173192|173207|173208|173213|173231|173234|173242|173244|173246|173247|173248|173252|173258|173259|173264|173266|173267|173268|173308|173313|173314|173316|173320|173344|173355|173381|173396|173400|173446|173448|173452|173463|173488|173586|173603|173604|173621|173624|173628|173723|173751|173752|173753|173755|173757|173784|173797|173798|173799|173800|173802|173806|173808|173850|173852|173853|173855|173856|173858|173864|173868|173891|173893|173894|173895|173896|173939|173942|173943|173989|173990|173991|173996|173997|173997|173999|174000|174002|174005|174047|174048|174051|174052|174053|174134|174135|174136|174137|174142|174143|174144|174145|174182|174186|174187|174382|174383|174384|174385|174387|174520|174522|174590|174594|174597|174603|174610|174731|174735|174737|174738|174741|174748|174750|174751|174752|174755|174756|174757|174759|174765|174768|174769|174773|174775|174776|174778|174779|174780|174786|174788|174789|174791|174792|174793|174794|174796|174797|174800|174878|175011|175019|175032|175033|175043|175046|175047|175138|175139|175143|175145|175146|175148|175149|175153|175155|175157|175158|175173|175174|175178|175179|175180|175182|175185|175188|175193|175197|175203|175206|175210|175211|175212|175323|175386|175390|175393|175405|175411|175412|175415|175417|175419|175422|175426|175429|175436|175437|175440|175442|175446|175448|175449|175451|175453|175455|175456|175460|175462|175466|175470|175477|175479|175484|175487|175488|175490|175495|175497|175501|175503|175510|175513|175516|175517|175554|175565|175575|175577|175581|175582|175583|175586|175587|175588|175592|175593|175594|175598|175599|175600|175602|175605|175606|175607|175608|175615|175616|175625|175631|175646|175655|175656|175691|175694|175696|175721|175722|175724|175726|175728|175731|175861|175862|175863|175864|175865|175866|175867|175869|175870|175871|175994|175996|175999|176015|176076|176078|176079|176080|176101|176135|176137|176210|176226|176230|176232|176233|176340|176343|176348|176349|176353|176354|176356|176490|176513|176515|176516|176517|176518|176519|176521|176524|176526|176527|176529|176531|176532|176533|176534|176535|176536|176538|176541|176543|176653|176654|176655|176658|176659|176662|176665|176666|176667|176671|176672|176673|176675|176676|176677|176678|176679|176681|176808|176810|176829|176848|176927|177027|177380|177957|178037|178108|178124|178128|178129|178182|178203|178217|178218|178222|178223|178229|178259|178290|178432|178434|178436|178437|178438|178447|178448|178449|178452|178453|178455|178456|178457|178459|178469|178508|178509|178510|178511|178512|178550|178551|178552|178554|178556|178558|178559|178560|178561|178563|178566|178567|178615|178638|178639|178642|178655|178667|178672|178675|178679|178681|178683|178709|178715|178719|178725|178726|178729|178730|178748|178756|178916|178918|178919|178920|178923|178924|178925|178927|178929|178930|178932|178935|178940|178942|178943|178944|178947|178949|178957|178958|179060|179061|179065|179066|179071|179072|179079|179090|179092|179111|179116|179120|179122|179124|179125|179128|179129|179133|179134|179135|179136|179137|179171|179176|179185|179187|179193|179196|179197|179199|179203|179208|179209|179211|179212|179213|179216|179223|179224|179225|179229|179230|179232|179233|179240|179241|179242|179243|179245|179246|179248|179249|179253|179258|179259|179266|179268|179269|179270|179271|179272|179274|179279|179282|179283|179289|179292|179293|179297|179299|179307|179310|179315|179321|179324|179329|179331|179336|179341|179347|179348|179351|179358|179359|179360|179366|179369|179373|179378|179379|179381|179383|179387|179389|179394|179397|179399|179406|179407|179409|179424|179425|179426|179427|179428|179429|179433|179436|179437|179438|179464|179465|179466|179468|179470|179471|179473|179476|179482|179483|179490|179491|179492|179493|179494|179497|179499|179500|179501|179502|179503|179512|179514|179518|179522|179524|179535|179536|179540|179545|179551|179558|179566|179567|179572|179573|179576|179583|179597|179598|179612|179614|179616|179617|179640|179649|179653|179658|179662|179667|179669|179670|179672|179673|179693|179698|179700|179703|179708|179710|179711|179712|179714|179717|179725|179735|179736|179740|179751|179754|179783|179802|179852|179854|179855|179856|179858|179859|179860|179882|179894|179899|179911|179913|179921|179922|186303|186305|186327|186329|186330|186332|186333|186334|186335|186336|186339|186340|186345|186349|186352|186355|186358|186359|186363|186369|186386|186390|186396|186409|186410|186412|186415|186418|186423|186426|186461|186465|186468|186471|186476|186477|186479|186481|186486|186491|186498|186503|186513|186534|186564|186567|186571|186572|186573|186574|186577|186578|186585|188306|188327|188388|188392|188486|188488|188506|188804|188894|189184|189188|189190|189193|189195|189197|189200|189201|189203|189204|189205|189206|189239|189248|189264|189279|189287|189293|189295|189319|189343|189383|189384|189395|189396|189399|189402|189409|189451|189467|189493|189498|189507|189516|189522|189539|189541|189548|189560|189566|189580|189585|189589|189591|189602|189606|189655|189687|189733|189738|189770|189774|189775|189776|189780|189788|189805|189819|189820|189824|189826|189827|189831|189834|189847|189849|189863|189865|189870|189887|189889|189892|189898|189906|189909|189910|189911|189912|189933|189940|189948|189951|189956|189964|189965|189969|189979|189980|189981|189982|189983|189984|189986|189989|189991|189992|189993|189994|190006|190017|190640|191125|191293|191294|191461|191535|191628|191904|192072|192820|192881|192982|193006|193084|193086|193217|193227|193229|193241|193271|193313|193334|193416|193556|193734|193814|193961|193962|194297|194739|194779|195118|195122|195518|195533|196219|196270|196400|196411|196461|196463|196468|196477|196479|196485|196486|196487|196488|196502|196505|196510|196523|196533|196534|196538|196540|196542|196544|196545|196546|196552|196555|196556|196557|196560|196561|196563|196566|196567|196569|196571|196572|196573|196574|196575|196576|196577|196580|196586|196587|196588|196590|196593|196595|196596|196597|196600|196601|196602|196604|196605|196607|196608|196609|196610|196612|196620|196638|196640|196642|196643|196644|196645|196646|196647|196648|196650|196651|196652|196653|196658|196659|196661|196662|196663|196666|196668|196669|196670|196672|196673|196682|196689|196690|196697|196709|196711|196720|196721|196722|196723|196724|196734|196750|196752|197017|197020|197024|197025|197027|197032|197035|197036|197039|197040|197041|197045|197046|197050|197051|197053|197056|197057|197060|197064|197066|197067|197070|197073|197075|197076|197078|197079|197080|197081|197083|197086|197092|197096|197097|197098|197100|197102|197105|197106|197109|197110|197115|197116|197123|197126|197127|197929|197930|197931|197935|197936|197937|197940|197941|197943|197947|197948|197950|197951|197952|197956|197957|197959|197961|197962|197966|197967|197969|197974|197976|197977|197979|197987|197989|197990|197991|197995|197997|197998|198002|198003|198004|198005|198007|198008|198009|198050|198062|198078|198081|198082|198083|198089|198090|198091|198098|198140|198141|198142|198143|198145|198146|198151|198152|198153|198154|198155|198156|198157|198172|198177|198180|198186|198197|198203|198209|198211|198255|198281|198282|198313|198318|198330|198347|198348|198349|198350|198363|198367|198377|198383|198387|198393|198398|198400|198403|198408|198415|198418|198420|198421|198427|198429|198430|198434|198436|198437|198443|198444|198445|198451|198458|198459|198478|198486|198529|198532|198721|198726|198744|198781|198810|198838|198849|198851|198858|198910|198924|198969|198999|199022|199035|199107|199133|199144|199149|199167|199182|199191|199192|199212|199216|199251|199269|199277|199299|199302|199342|199344|199365|199387|199430|199439|199451|199452|199459|199492|199508|199526|199545|199556|199561|199563|199580|199585|199588|199661|199670|199671|199700|199710|199715|199720|199730|199753|204080|205175|205199|205200|205201|205202|205203|205204|205205|206914|206924|208085|209879|209886|209895|209898|212929|213530|214104|214105|214106|214107|214111|214116|214121|214122|214123|214490|215346|215347|215442|215473|215553|217192|221090|221092|222136|222144|222145|222251|222364|222416|222854|224123|224183|224200|224203|224206|224209|224210|224239|224251|224261|224266|224318|224325|224330|224332|224336|224337|224348|224448|224454|224459|224460|224461|224464|224471|224506|224529|224537|224538|224539|224574|224987|225019|228272|228279|228280|228282|228286|228288|228359|228364|228367|228371|228373|228375|228381|228382|228383|228385|228386|228387|228388|228391|228392|228393|228394|228395|228398|228399|228400|228401|228402|228404|228405|228406|228408|228514|228519|228523|228552|228557|228564|228578|228588|228594|228614|228660|228666|228679|228690|228695|228718|228723|228754|228757|228800|228802|228812|228829|228834|228905|228919|229022|229024|229096|229098|229100|229157|229489|229491|229494|229495|229496|229499|229501|229502|229503|229511|229514|229517|229519|229520|229561|229564|229566|229567|229721|229733|229735|230200|230201|230206|230210|230211|230212|230213|230215|230217|230218|230219|230255|230256|230295|230310|230312|230313|230316|230319|230320|230322|230323|230324|230462|230463|230464|230473|230481|230488|230493|230494|230495|230497|230500|230501|230506|230512|230514|230515|230558|230826|230827|230832|230862|230863|230864|230865|230866|230868|230869|230870|231080|231083|231113|231310|231352|231648|231913|231920|232152|236744|236758|236798|236799|236800|236813|236814|236815|238145|238149|238150|238151|238222|238233|238235|238237|238240|238246|238422|238430|238441|238478|238481|238489|238526|238573|239110|239111|239112|239288|239322|240007|240011|240743|240750|241143|241147|241149|241150|241152|241238|241239|241549|241550|241551|241797|241803|241805|241813|241814|241815|241816|241817|241818|241820|242030|242032|243042|243043|243375|243379|243381|243778|243779|244207|244209|244223|244224|244232|244239|245257|245259|245263|245264|245265|245266|245268|245271|245275|245279|245280|245281|245284|246879|246880|247150|249829|250432|252535|253892|254928|254930|256648|257926|257934|257936|257951|257958|257961|257962|257963|257964|257965|257966|257968|257969|257976|257977|258003|258052|258060|258073|258082|258130|258157|258175|258280|258285|258288|258292|258317|258325|258442|258446|258449|258452|258455|258456|258457|258459|258460|258462|258656|258679|258698|258703|258706|258712|258746|258748|258751|258779|258783|258786|258790|258792|258800|258801|258806|258808|258810|259017|259019|259020|259022|259026|259029|259030|259033|259038|259040|259043|259198|259712|259847|259848|260053|260346|260508|260516|260532|260534|260538|260539|264150|265714|266024|266210|266293|266423|266434|266525|266735|266890|266892|266956|267009|267393|267407|267457|267546|267629|267635|267717|267872|267901|268132|268171|268223|268334|268734|268758|269185|269582|270200|270495|270508|270724|271998|272177|272610|272668|272902|273262|273364|273378|274449|274528|274588|274603|274897|274935|274945|275371|276614|279740|279942|279963|279964|279985|279989|279990|280003|280005|280010|280076|280282|280284|280286|280289|280328|280330|280333|281360|281590|281591|281593|281604|281622|281626|281627|281630|281641|281758|281766|281790|281799|281802|281816|281819|283244|283301|283346|283375|283404|283408|283931|283994|284064|285998|286152|286295|288948|289696|289701|291667|292649|292652|292882|292883|292884|294871|301042|301044|301049|301063|302217|302804|304029|304031|304032|304033|304034|304035|305443|305444|305445|308732|308733|308741|308743|308744|308745|308746|308748|308765|308803|308804|308807|310328|313528|314281|314290|316035|316953|320347|320362|320370|320374|320376|322312|324154|324557|324565|328975|328990|328992|328994|330442|330565|330767|331163|331167|332141|332147|332637|335573|335590|335630|335631|335634|335647|337458|337463|337469|340332|341351|341439|341449|344273|346873|346908|346912|348136|348188|348190|348194|348197|348200|349397|352159|359294|359300|359450|359533|359639|359753|359886|360024|360028|360038|360187|360336|360347|360486|360803|361057|361092|361482|361874|361875|361876|362162|362734|363958|364449|364491|364493|364525|364527|364564|364567|364596|364600|364750|364825|364840|364842|364868|364871|364887|364889|364890|364909|364911|364976|364977|364985|364988|365002|365018|365029|365031|365040|365047|365049|365052|365056|365058|365059|365064|365066|365068|365073|365074|365075|365082|365085|365086|365088|365104|365874|365975|366017|366023|366029|366038|366108|366109|366309|366380|366438|366981|367212|367249|367264|367337|367538|367589|367615|367811|368225|368610|368723|368725|368731|368732|368738|368744|368747|368749|368759|369038|369039|369050|369065|369070|369075|369090|369185|369200|369221|369223|369242|369263|369277|369285|369358|369363|369637|370076|370548|370550|370594|370595|370611|371031|371044|371141|371254|371434|371435|371465|371466|371467|371639|372180|372193|372197|372203|372215|372220|372245|372255|372261|372325|372392|372399|372402|372414|372460|372551|372858|373007|373009|373019|373021|373023|373024|373042|373056|373058|373214|373227|373229|373240|373378|373611|373612|373762|373778|373790|374050|374122|374124|374127|374128|374129|374148|374158|374166|374466|374473|374583|374648|374966|374996|375074|375076|375077|375083|375865|375871|375874|375996|376000|376002|376003|376004|376006|376010|376016|376392|376532|376767|376784|376871|376942|376943|378950|378951|378958|378962|378964|378967|378971|378974|378979|379666|379904|379997|389323|389773|389925|390042|390140|390777|390818|390834|390851|390976|390994|391002|391015|391017|391019|391026|391027|391029|391031|391036|391037|391045|391050|391052|391053|391057|391060|391068|391072|391078|391079|391080|391090|391094|391107|391122|391123|391150|391161|391163|391166|391169|391183|391191|391205|391223|391225|391480|391485|391603|391620|391668|391681|391715|391766|391844|391868|391910|391933|391941|391943|391944|392039|392072|392119|392164|392221|392230|392263|392265|392266|392300|392336|392338|392374|393329|393331|393338|393343|393568|393590|393769|393770|393774|394183|395213|395221|395230|395231|395235|395433|395447|395451|395460|395475|395499|395502|395507|395571|395582|395588|395591|395592|395802|395875|395877|395890|395891|395892|395893|395894|395897|397108|398203|398206|398216|398254|398256|398259|398278|398280|398438|398632|398638|398647|398656|398700|398727|398736|398754|398960|398962|398965|398970|398978|398980|399057|399060|399446|399448|399453|399605|399609|399620|399626|399707|399709|399777|399784|400057|400098|400133|400136|400151|400159|400185|400199|400299|400308|400547|400817|400871|401068|402679|402715|402720|402722|402731|402733|402779|402783|403184|403208|403212|403239|403252|403258|403833|404437|404835|405105|405106|405107|405109|405117|405118|406312|406905|406908|406909|406914|406917|406918|406921|406922|406924|407073|408359|408362|408365|408373|408377|408379|408523|408641|408644|409092|409100|409101|409104|410335|410336|410338|410342|410345|410346|410349|410350|410352|410353|410354|410356|410360|410714|413250|414849|414855|414943|414961|415066|415237|415260|415273|415274|415388|415447|415598|415599|417646|419263|419271|419284|419287|419290|419293|421226|421229|421422|421599|421854|421855|422163|422216|422217|425314|425349|425708|425709|425883|425931|426057|426059|426060|426061|426062|426267|426268|427655|427966|439926|440616|440759|442636|442763|442764|442766|442767|442772|442773|442774|442775|442777|442778|443066|444001|444002|444006|444010|444013|444016|444810|444816|444818|444822|444823|444825|444983|445204|445205|445214|445956|446190|447238|447243|447254|447266|447423|447610|447620|447626|447628|447637|447660|447662|447664|447760|447777|447780|447782|447786|447793|447803|447804|447825|447827|447841|447843|447844|447856|447868|447872|447873|447877|447879|447883|447894|447895|447901|447906|447908|447920|447941|447944|447947|447954|447960|447963|447971|447982|447984|447986|447987|447992|448242|448365|448570|449006|449179|449282|449441|449473|449535|449566|449575|449580|449592|449649|449657|449693|449709|449729|449799|449903|449905|449951|450002|450003|450020|450028|450076|450182|450204|450226|450241|450395|450655|451882|452099|452227|452229|452232|453561|455645|455812|455827|455835|455841|455843|455996|456001|456009|456014|456028|456034|456072|456086|456093|456399|456425|456432|456436|456504|456763|456773|456801|456803|456900|457130|457132|457592|460105|460554|460685|460870|461142|461343|461350|461353|461358|461609|461632|461634|461652|461685|461691|461957|461960|461983|461992|462010|462012|462017|462133|462135|462181|462386|462399|462402|462417|462912|462930|463033|463043|463044|463048|463154|463651|463660|463690|463944|463977|463988|464109|464128|464140|464143|464173|465144|467661|467912|467915|467916|467956|467958|468867|468891|468905|469247|469288|469310|469313|469314|469684|469693|469718|469736|471292|471296|480674|480692|480696|480713|481133|482196|482277|485938|486016|486848|486852|486853|486861|486862|486865|486882|486964|487089|487093|487096|487193|487204|487207|487212|487213|487215|487217|487338|487340|487360|487365|487487|487776|487932|488132|488140|488142|488370|488417|488434|488444|488515|489375|490461|490463|490509|490599|490807|490825|491900|492023|492088|493419|493976|495086|496159|496192|496197|496198|496478|496621|496649|496652|496666|496915|497205|497223|497446|497617|497619|497684|498064|498073|498132|498256|498265|498267|498283|498298|498338|498346|498348|498354|498360|498365|498366|498372|498380|498468|498473|498474|498495|498498|498505|498515|498516|498518|498521|498526|498943|499160|499213|499291|499392|499459|499533|499565|499722|499734|500076|500285|500567|500573|501079|501342|501448|501465|501469|501474|501477|501479|501697|501698|501702|501803|501965|502008|502014|502080|502093|502306|502311|502312|502314|502899|503273|503621|503632|503649|503771|503821|503823|504130|504136|504143|504236|504240|504243|504249|504475|504500|504523|504720|504726|504738|504739|504751|504757|504891|504977|505005|505006|505010|505014|505016|505096|505402|505404|505413|505430|505617|505620|505758|506291|506298|506302|506304|506545|506548|506909|506931|507339|507348|508768|508903|509109|509114|509115|509116|509117|509119|509120|509122|509124|509125|509127|509172|509175|509176|509178|509180|509181|509182|509183|509185|509187|509191|509195|509198|509201|509203|509204|509205|509206|509207|509209|509210|509211|509218|509220|509222|509288|509293|509318|509397|509405|509416|509434|509563|509564|509565|509569|509570|509571|509630|509635|509636|509803|509809|509811|509815|509820|509821|509826|509829|509830|509835|509837|509839|509840|509880|509881|509882|509954|510193|510249|510268|510288|510291|510299|510301|510302|510303|510304|510307|510308|510309|510312|510314|510317|510325|510341|510393|510398|510404|510436|510454|510463|510464|510469|510484|510485|510486|510492|510494|510497|510654|510761|510762|510763|510765|510767|510770|510772|510775|510779|510785|510786|510787|510788|510789|510813|511082|511086|511090|511104|511107|511108|511121|511132|511137|512792|512793|512848|512849|512931|512932|513495|513911|514347|515117|515118|515124|515135|515157|515162|515170|515386|515462|515533|515588|515589|515598|515604|515624|515625|515631|515639|515644|515654|515659|515669|515674|515677|515687|515692|515697|515700|515701|515702|515704|515706|515711|515715|515716|515720|515724|515734|515737|515741|515753|515762|515767|515779|515781|515795|515799|515803|515817|516811|516826|516831|516900|516909|516930|516957|517022|517048|517066|517096|517252|517313|517377|517699|518906|518910|519101|519122|519127|519317|521607|521827|521829|521836|521848|522173|522180|522184|522186|522193|522195|522199|522201|522207|522211|522213|522215|522233|522238|522239|522245|522247|522498|522559|522569|522573|522595|522604|522606|522609|522614|522737|522805|525170|525462|525505|525802|526232|526236|526239|526243|526245|526246|526453|526462|526674|526739|526752|527106|527107|527114|527121|527152|527156|527375|527392|527612|528029|528061|528066|528096|528110|528124|528422|528424|528431|528478|528479|528544|528554|528575|528611|529052|529233|532198|532208|532210|532227|532288|532290|532297|532299|532302|532305|532334|532336|533391|533457|534380|536966|536996|537483|551269|551956|556620|556624|556679|556681|556823|556833|556835|556837|556839|556843|556864|556876|556910|556914|557112|557161|557184|557186|557188|557200|557206|557207|557225|557229|557245|557249|557765|558142|558317|558321|558383|558391|558401|558419|558595|558935|559353|560956|560994|561000|561011|561077|561091|561092|561095|561221|561602|562804|563777|563786|563796|563799|563814|564673|564678|564693|564713|564717|565434|565965|565977|565989|565999|566361|566368|566370|566372|566603|566617|566812|566814|566816|566824|567292|567318|567664|567885|568014|568813|570692|571103|571809|571818|571823|571826|571862|571863|571869|571872|571875|572605|572617|572620|572622|572769|572807|573456|574718|574722|574733|574735|575060|575080|576413|583803|583864|583962|584002|584306|586096|587315|589388|589524|609415|609471|609630|609787|610127|610128|610649|610664|610695|610896|610898|612502|613499|614694|614695|614696|614697|614698|614699|614700|614703|614704|614705|614706|614707|614708|614709|614710|614711|614712|614713|614714|614715|614716|614717|614718|614719|614720|614721|614722|614723|614724|614725|614726|614727|614728|614729|614730|614731|614732|614733|614734|614735|614736|614737|614738|614739|614740|614741|614742|614743|614744|614745|614746|614747|614748|614749|614750|614751|614752|614753|614754|614755|614756|614757|614758|614759|614760|614761|614762|614763|614764|614765|614766|614767|614768|614769|614770|614771|614772|614773|614774|614775|614776|614777|614778|614779|614780|614781|614782|614783|614784|614785|614786|614787|614788|614789|614790|614791|614792|614793|614794|614795|614796|614797|614798|614799|614800|614801|614802|614803|614804|614805|614806|614807|614808|614809|614810|614811|614812|614813|614814|614815|614816|614817|614818|614819|614820|614821|614822|614823|614824|614825|614826|614827|614828|614829|614830|614831|614832|614833|614834|614835|614836|614837|614838|614839|614840|614841|614842|614843|614844|614845|614846|614847|614848|614849|614850|614851|614852|614853|614854|614855|614856|614857|614858|614859|614860|614861|614862|614863|614864|614865|614866|614867|614868|614869|614870|614871|614872|614873|614880|614881|614882|614891|614892|614893|614897|614898|614899|614900|614901|614902|614903|614904|614905|614906|614907|614908|614909|614910|614911|614912|614913|614914|614915|614916|614917|614918|614919|614920|614921|614922|614923|614924|614925|614926|614927|614928|614929|614930|614931|614932|614933|614934|614935|614936|614937|614938|614939|614940|614941|614942|614943|614944|614945|614946|614947|614948|614949|614950|614951|614952|614983|614984|614985|614986|614987|614988|614989|614990|614991|614992|614993|614994|614995|614996|614997|614998|614999|615000|615001|615002|615003|615004|615005|615006|615007|615008|615009|615010|615011|615012|615013|615014|615015|615016|615017|615018|615019|615020|615021|615022|615023|615024|615025|615026|615027|615028|615029|615030|615031|615032|615033|615034|615035|615036|615037|615038|615039|615040|615041|615042|615043|615044|615045|615046|615047|615048|615049|615050|615051|615052|615053|615061|615062|615063|615064|615065|615066|615067|615068|615069|615070|615071|615072|615073|615074|615075|615076|615077|615078|615079|615080|615081|615082|615083|615084|615085|615086|615087|615088|615089|615090|615091|615092|615093|615095|615096|615097|615125|615126|615127|615128|615129|615130|615138|615139|615140|615141|615146|615147|615148|615149|615150|615151|615152|615153|615154|615155|615156|615157|615158|615159|615161|615162|615163|615164|615165|615166|615167|615168|615169|615170|615177|615178|615179|615180|615181|615182|615183|615184|615185|615186|615189|615190|615191|615192|615193|615194|615195|615196|615197|615198|615199|615200|615201|615202|615203|615204|615206|615207|615208|615209|615210|615212|615213|615214|615215|615216|615217|615218|615219|615220|615221|615222|615223|615228|615232|615233|615234|615235|615236|616005|616006|616007|616008|616009|616010|616011|616012|616013|616014|616015|616016|616017|616018|616019|616020|616021|616022|616023|616024|616025|616026|616027|616028|616029|616030|616031|616032|616033|616034|616035|616036|616037|616038|616039|616040|616041|616042|616043|616044|616045|616046|616047|616048|616049|616050|616051|616052|616053|616054|616055|616056|616057|616058|616059|616060|616061|616062|616063|616064|616065|616066|616067|616068|616069|616070|616071|616072|616073|616074|616075|616076|616077|616078|616079|616080|616081|616082|616083|616084|616085|616086|616811|616812|616813|616814|616815|616816|616817|616818|616819|616820|616821|616822|616823|616824|616927|616928|616929|616930|616931|616932|616933|617288|617289|617290|617291|617292|617293|617294|617295|617296|617297|617298|617299|617300|617301|617302|617303|617304|617305|617306|617307|617308|617309|617310|617311|617312|617313|617314|617315|617316|617317|617318|617319|617320|617321|617322|617323|617324|617325|617326|617327|617328|617329|617330|617331|617332|617333|617358|617359|617360|617361|617362|617363|617364|617365|617366|617367|617864|617865|617866|617867|617868|617869|617870|617871|617872|617873|617874|617875|617876|617877|617878|617879|617880|617881|617882|617883|617884|617885|617886|617887|617888|617889|617890|617891|617892|617893|617894|617895|617896|617897|617898|617899|617900|617901|617902|617903|617904|617905|617906|617907|617908|617909|617910|617911|618214|618215|618216|618217|618218|618219|618220|618221|618222|618223|618224|618225|618226|618227|618228|618229|618230|618231|618232|618233|618234|618235|618236|618237|618238|618239|618240|618241|618242|618278|618279|618280|618844|618845|618846|618847|618848|618849|618850|618851|618852|618853|618854|618855|618856|618857|618858|618859|618860|618861|618862|618863|618864|618865|618866|618867|618868|618869|618870|618871|618872|618873|618874|618875|618876|618877|618878|618879|618880|618881|618882|618883|618884|618885|618886|618887|619004|619005|619006|619007|619008|619009|619010|619011|619047|619048|619049|619051|619053|619054|619055|619056|619057|619058|619060|619061|619179|619193|619218|619242|619270|619284|619367|619422|619424|619427|619428|619444|619448|619450|619457|619459|619462|619463|619502|619515|619527|619596|619767|619778|621071|621073|621074|621075|621077|621149|621219|621220|621222|621224|621375|621612|621704|622378|623063|624437|624478|626917|626918|626927|626928|626930|627280|627283|627517|627542|627544|627547|627548|627549|627552|627555|627556|627563|627569|627571|627577|627584|627614|630969|630972|630977|630978|630979|631458|635244|635246|635248|635250|635252|635262|635265|635267|635269|635270|635273|635276|635279|635282|635284|635289|635292|635298|635299|635304|635306|635933|635940|639194|639207|640096|640101|640104|640112|640115|640124|640638|641081|641086|641093|641094|641095|641098|641100|641103|642258|642266|642267|642268|642273|642278|642280|642286|642305|642314|642320|643108|647139|647140|647141|647142|647145|647147|647164|647166|647171|647172|647178|650627|650725|651576|651674|652431|652600|652756|652889|653940|653943|654313|654842|655079|655083|655179|655273|655750|655790|656057|656060|656061|656062|656228|656232|656233|656239|657518|657713|659758|666512|667999|672403|672405|672423|679363|679365|679366|679368|679369|679372|679374|679375|679377|679386|679388|679391|679397|679399|679410|679411|679415|679418|679419|679421|679423|679424|679425|679428|679434|679436|679438|679439|679442|679443|679448|679449|679453|679457|679462|679463|679466|679467|679468|679472|679473|679474|679476|679477|679482|679525|679544|679558|679865|683315|683316|683428|683452|683455|683864|683865|684259|684470|684471|684472|684752|684753|684851|685277|685573|685575|685576|685645|685646|685647|685650|685651|685653|685655|685658|685659|685660|685661|685663|685666|685669|685670|685672|686001|686070|686337|686338|686339|686341|686342|686909|686911|686912|686913|686914|686916|686917|687005|687007|687008|687779|687780|687781|687783|687785|687786|687879|687984|687986|687987|688260|688261|688264|688265|688267|688269|688400|688903|688904|688905|688906|688907|689649|689806|689839|689865|690189|690378|690453|690540|690541|690542|690543|690545|690546|690547|690548|690550|690552|690554|690555|691425|692061|693046|693048|693049|693050|693052|693142|693466|693467|693468|693470|693658|694260|695007|695038|695636|695655|695657|696606|699672|701784|702297|703140|712858|718823|722144|722146|732295|735367|738008|739174|743300|746319|746324|746327|746333|746335|748045|750229|750231|750523|752612|752695|753341|753989|753993|756424|758864|759492|759526|761254|761744|761748|761750|761753|761759|761765|761772|761778|761782|765847|765850|765856|765864|765872|766184|768472|768473|768474|768890|769049|769097|769098|769740|770111|770262|772105|772106|772116|772117|774464|775819|775829|775925|777019|778855|780618|780621|782660|782662|784018|784376|785882|787005|787868|787931|791141|791142|791394|794538|794539|794541|794628|794629|794632|795337|795339|795900|795907|795908|795911|795995|797009|797662|797663|797667|798999|799002|799004|799011|799645|816418|816419|816420|816432|822794|822802|822803|823225|823229|823231|823232|823630|823650|823654|823655|823662|823667|823669|823678|823679|823680|823683|823684|823686|823702|823707|823708|823714|823720|823726|823736|823738|823740|823743|827575|827577|827578|827580|827581|827583|827585|827586|827588|832444|832445|832446|832450|832451|832459|832464|832467|832472|832474|832475|832478|832484|832486|832495|832497|832499|832500|832501|832502|832503|832504|832507|832513|832515|832516|832517|832518|832520|832526|833371|833375|838185|838497|838498|838499|838502|838530|838531|838535|838540|839316|839860|839862|839863|839864|839867|839874|841216|841243|841273|841276|841291|841297|842575|846747|846752|846787|846789|846790|846793|846797|846801|846802|848085|848086|850765|851547|851549|851771|851989|851993|852300|852992|858855|858923|858924|858926|859274|860467|860468|862422|864086|864090|864095|864098|864100|864102|864104|864105|864111|865155|866257|868102|868658|869734|869735|869737|869738|871736|871738|871739|872232|873936|873937|879106|879108|879144|879150|880647|881736|881904|896848|896853|896855|896864|897696|900268|900269|903706|903707|903708|903709|903710|903711|903712|903713|903714|903715|903716|903717|903718|903719|903723|903724|903725|903726|903727|903728|903729|903730|903731|903732|903733|903734|903735|903736|903737|903738|903739|903740|903741|903742|903743|903744|903745|903746|903747|903748|903749|903750|903751|903752|903753|903754|903755|903756|903757|903758|903759|903760|903761|903762|903763|903764|903765|903766|903767|903768|903769|903770|903771|903772|903773|903774|903775|903776|903777|903778|903779|903780|903781|903782|903783|903784|903785|903786|903787|903788|903789|903790|903791|903792|903793|903794|903795|903796|903797|903798|903799|903800|903801|903802|903803|903804|903805|903806|903807|903808|903809|903810|903811|903812|903813|903814|903815|903816|903817|903818|903819|903820|903821|903822|903823|903824|903825|903826|903827|903828|903829|903830|903831|903832|903833|903834|903835|903836|903837|903838|903839|903840|903841|903842|903843|903844|903845|903846|903847|903851|903866|903870|903871|903872|903873|903874|903875|903876|903877|903878|903879|903880|903881|903882|903883|903884|903885|903886|903887|903903|903904|903905|903906|903907|903908|903909|903910|903911|903912|903913|903914|903915|903916|903917|903919|903920|903921|903922|903923|903924|903925|903926|903927|903928|903929|903930|903931|903932|903933|903934|903935|903936|903937|903938|903939|903940|903941|903942|903943|903944|903945|903946|903947|903948|903949|903950|903951|903953|903954|903955|903956|903957|903958|903959|903960|903961|903962|903963|903964|903965|903966|903967|903968|903969|903970|903971|903972|903973|903974|903975|903976|903977|903978|904003|904013|904014|904015|904016|904017|904020|904021|904022|904023|904024|904025|904026|904028|904029|904030|904031|904032|904033|904034|904035|904036|904037|904038|904048|904049|904050|904051|904052|904053|904054|904055|904056|904057|904058|904489|904662|905108|905559|905877|906396|906397|906398|906399|906400|906401|906402|906403|906404|906405|906406|906407|906408|906409|906410|906411|906412|906413|906414|906415|906416|906417|906418|906419|906420|906421|906422|906423|906424|906425|906426|906427|906428|906429|906430|906431|906432|906433|906434|906435|906436|906437|906438|906439|906440|906441|906442|906443|906444|906445|906446|906447|906448|906449|906450|906451|906452|906453|906454|906455|906456|906457|906458|906459|906460|906461|906462|906463|906464|906465|906466|906467|906468|906469|906470|906471|906472|906473|906474|906475|906476|906477|906478|906479|906480|906481|906482|906483|906484|906485|906486|906487|906488|906489|906490|906491|906492|906493|906494|906495|906496|906497|906498|906499|906500|906501|906502|906503|906504|906505|906506|906507|906508|906509|906510|906511|906512|906513|906514|906515|906516|906517|906518|906519|906520|906521|906522|906523|906524|906525|906526|906527|906528|906529|906530|906531|906532|906533|906534|906535|906536|906537|906538|906539|906540|906541|906542|906543|906544|906545|906546|906547|906548|906549|906550|906551|906552|906553|906554|906555|906556|906557|906558|906559|906560|906561|906562|906563|906564|906565|906566|906567|906568|906569|906570|906571|906572|906573|906574|906575|906576|906577|906578|906579|906580|906581|906582|906583|906584|906585|906586|906587|906588|906589|906590|906591|906592|906593|906594|906595|906596|906597|906598|906599|906600|906601|906602|906603|906604|906605|906606|906607|906608|906609|906610|906611|906612|906613|906614|906615|906616|906617|906618|906619|906620|906621|906622|906623|906624|906625|906626|906627|906628|906629|906630|906631|906632|906633|906634|906635|906636|906637|906638|906639|906640|906641|906642|906643|906644|906645|906646|906647|906648|906649|906650|906651|906652|906653|906654|906655|906656|906657|906658|906659|906660|906661|906662|906663|906664|906665|906666|906667|906668|906669|906670|906671|906672|906673|906674|906675|906676|906677|906678|906679|906680|906681|906682|906683|906684|906685|906686|906687|906688|906689|906690|906691|906692|906693|906694|906695|906696|906697|906698|906699|906700|906701|906702|906703|906704|906705|906706|906707|906708|906709|906710|906711|906712|906713|906714|906715|906716|906717|906718|906719|906720|906721|906722|906723|906724|906725|906726|906727|906728|906729|906730|906731|906732|906733|906734|906735|906736|906737|906738|906739|906740|906741|906742|906743|906744|906745|906746|906747|906748|906749|906750|906751|906752|906753|906754|906755|906756|906757|906758|906759|906760|906761|906762|906763|906764|906765|906766|906767|906768|906769|906770|906771|906772|906773|906774|906775|906776|906777|906778|906779|906780|906781|906782|906783|906784|906785|906786|906787|906788|906789|906790|906791|906792|906793|906794|906795|906796|906797|906798|906799|906800|906801|906802|906803|906804|906805|906806|906807|906808|906809|906810|906811|906812|906813|906814|906815|906816|906817|906818|906819|906820|906821|906822|906823|906824|906825|906826|906827|906828|906829|906830|906831|906832|906833|906834|906835|906836|906837|906838|906839|906840|906841|906842|906843|906844|906845|906846|906847|906848|906849|906850|906851|906852|906853|906854|906855|906856|906857|906858|906859|906860|906861|906862|906863|906864|906865|906866|906867|906868|906869|906870|906871|906872|906873|906874|906875|906876|906877|906878|906879|906880|906881|906882|906883|906884|906885|906886|906887|906888|906889|906890|906891|906892|906893|906894|906895|906896|906897|906898|906899|906900|906901|906902|906903|906904|906905|906906|906907|906908|906909|906910|906911|906912|906913|906914|906915|906916|906917|906918|906919|906920|906921|906922|906923|906924|906925|906926|906927|906928|906929|906930|906931|906932|906933|906934|906935|906936|906937|906938|906939|906940|906941|906942|906943|906944|906945|906946|906947|906948|906949|906950|906951|906952|906953|906954|906955|906956|906957|906958|906959|906960|906961|906962|906963|906964|906965|906966|906967|906968|906969|906970|906971|906972|906973|906974|906975|906976|906977|906978|906979|906980|906981|906982|906983|906984|906985|906986|906987|906988|906989|906990|906991|906992|906993|906994|906995|906996|906997|906998|906999|907000|907001|907002|907003|907004|907005|907006|907007|907008|907009|907010|907011|907012|907013|907014|907015|907016|907017|907018|907019|907020|907021|907022|907023|907024|907025|907026|907027|907028|907029|907030|907031|907032|907033|907034|907035|907036|907037|907038|907039|907040|907041|907042|907043|907044|907045|907046|907047|907048|907049|907050|907051|907052|907053|907054|907055|907056|907057|907058|907059|907060|907061|907062|907063|907064|907065|907066|907067|907068|907069|907070|907071|907072|907073|907074|907075|907076|907077|907078|907079|907080|907081|907082|907083|907084|907085|907086|907087|907088|907089|907090|907091|907092|907093|907094|907095|907096|907097|907098|907099|907100|907101|907102|907103|907104|907105|907106|907107|907108|907109|907110|907111|907112|907113|907114|907115|907116|907117|907118|907119|907120|907121|907122|907123|907124|907125|907126|907127|907128|907129|907130|907131|907132|907133|907134|907135|907136|907137|907138|907139|907140|907141|907142|907143|907144|907145|907146|907147|907148|907149|907150|907151|907152|907153|907154|907155|907156|907157|907158|907159|907160|907161|907162|907163|907164|907165|907166|907167|907168|907169|907170|907171|907172|907173|907174|907175|907176|907177|907178|907179|907180|907181|907182|907183|907184|907185|907186|907187|907188|907189|907190|907191|907192|907193|907194|907195|907196|907197|907198|907199|907200|907201|907202|907203|907204|907205|907206|909083|909084|909085|909086|909087|909088|909089|909090|909091|909092|909093|909094|909095|909096|909097|909098|909099|909100|909101|909102|909103|909104|909105|909106|909107|909108|909109|909110|909111|909112|909113|909114|909115|909116|909117|909118|909119|909120|909121|909122|909123|909124|909125|909126|909127|909128|909129|909130|909131|909132|909133|909134|909135|909136|909137|909138|909139|909140|909141|909142|909143|909144|909145|909146|909147|909148|909149|909150|909151|909152|909153|909154|909155|909156|909157|909158|909159|909160|909161|909162|909163|909164|909165|909166|909167|909168|909169|909170|909171|909172|909173|909174|909175|909176|909177|909178|909179|909180|909181|909182|909648|909649|909650|909651|909652|909653|909654|909655|909656|909657|909658|909659|909660|909661|909662|909663|909664|909665|909666|909667|909668|909669|909670|909671|909672|909673|909674|909675|909676|909677|909678|910168|910169|910170|910171|910172|910173|910174|910175|910176|910177|910178|910179|910180|910181|910182|910183|910184|910185|910186|910187|910188|910189|910190|910191|910192|910193|910194|910195|910196|910197|910198|910199|910200|910201|910202|910203|910204|910205|910206|910207|910208|910209|910210|910211|910212|910213|910214|910215|910216|910217|910218|910219|910220|910221|910222|910223|910224|910225|910226|910227|910228|910229|910230|910231|910232|910233|910234|910235|910236|910237|910238|910239|910240|910241|910242|910243|910244|910245|910246|910247|910248|910249|910250|910251|910252|910253|910254|910255|910256|910257|910258|910259|910260|910261|910262|910263|910264|910265|910266|910267|910268|910269|910270|910271|910272|910273|910274|910275|910276|910277|910278|910279|910280|910281|910282|910283|910284|910285|910286|910287|910288|910289|910290|910291|910292|910293|910294|910295|910296|910297|910298|910299|910300|910301|910302|910303|910304|910305|910306|910307|910308|910309|910310|910311|910312|910313|910314|910315|910316|910317|910318|910319|910320|910321|910322|910323|910324|910325|910326|910327|910328|910329|910330|910331|910332|910333|910334|910335|910336|910337|910338|910339|910340|910341|910342|910343|910344|910345|910346|910347|910348|910349|910350|910351|910352|910353|910354|910355|910356|910357|910358|910359|910360|910361|910362|910363|910364|910365|910366|910367|910368|910369|910370|910371|910372|910373|910374|910375|910376|910377|910378|910379|910380|910381|910382|910383|910384|910385|910386|910387|910388|910389|910390|910391|910392|910393|910394|910395|910396|910397|910398|910399|910400|910401|910402|910403|910404|910405|910406|910407|910408|910409|910410|910411|910412|910413|910414|910415|910416|910417|910418|910419|910420|910421|910422|910423|910424|910425|910426|910427|910428|910429|910430|910431|910432|910433|910434|910435|910436|910437|910438|910439|910440|910441|910442|910443|910444|910445|910446|910447|910448|910449|910450|910451|910452|910453|910454|910455|910456|910457|910458|910459|910460|910461|910462|910463|910464|910465|910466|910467|910468|910469|910470|910471|910472|910473|910474|910475|910476|910477|910478|910479|910480|910481|910482|910483|910484|910485|910486|910487|910488|910489|910490|910491|910492|910493|910494|910495|910496|910497|910498|910499|910500|910501|910502|910503|910504|910505|910506|910507|910508|910509|910510|910511|910512|910513|910514|910515|910516|910517|910518|910519|910520|910521|910522|910523|910524|910525|910526|910527|910528|910529|910530|910531|910532|910533|910534|910535|910536|910537|910538|910539|910540|910541|910542|910543|910544|910545|910546|910547|910548|910549|910550|910551|910552|910553|910554|910555|910556|910557|910558|910559|910560|910561|910562|910563|910564|910565|910566|910567|910568|910569|910570|910571|910572|910573|910574|910575|910576|910577|910578|910579|910580|910581|910582|910583|910584|910585|910586|910587|910588|910589|910590|910591|910592|910593|910594|910595|910596|910597|910598|910599|910600|910601|910602|910603|910604|910605|910606|910607|910608|910609|910610|910611|910612|910613|910614|910615|910616|910617|910618|910619|910620|910621|910622|910623|910624|910625|910626|910627|910628|910629|910630|910631|910632|910633|910634|910635|910636|910637|910638|910639|910640|910641|910642|910643|910644|910645|910646|910647|910648|910649|910650|910651|910652|910653|910654|910655|910656|910657|910658|910659|910819|910820|910821|910822|910823|910824|910825|910826|910827|910828|910829|910830|910831|910832|910833|910834|910835|910836|910837|910838|910839|910840|910841|910842|910843|910844|910845|910846|910847|910848|910849|910850|910851|910852|910853|910854|910855|910856|910857|910858|910859|910860|910861|910862|910863|910864|910865|910866|910867|910868|910869|910870|910871|910872|910873|910874|910875|910876|910877|910878|910879|910880|910881|910882|910883|910884|910885|910886|910887|910888|910889|910890|910891|910892|910893|910894|910895|910896|910897|910898|910899|910900|910901|910902|910903|910904|910905|910906|911665|911666|911667|911668|911669|911670|911671|911672|911673|911674|911675|911676|911677|911678|911679|911680|911681|911682|911683|911684|911685|911686|911687|911688|911689|911690|911691|911692|911693|911694|911695|911696|911697|911698|911699|911700|911701|911702|911703|911704|911705|911706|911707|911708|911709|911710|911711|911712|911713|911714|911715|911716|911717|911718|911719|911720|911721|911722|911723|911724|911725|911726|911727|911728|911729|911730|911731|911732|911733|911734|911735|911736|911737|911738|911739|911740|911741|911742|911743|911744|911745|911746|911747|911748|911749|911750|911751|911752|911753|911754|911755|911756|911757|911758|911759|911760|911761|911762|911763|911764|911765|911766|911767|911768|911769|911770|911771|911772|911773|911774|911775|911776|911777|911778|911779|911780|911781|911782|911783|911784|911785|911786|911787|911788|911789|911790|911791|911792|911793|911794|911795|911796|911797|911798|911799|911800|911801|911802|911803|911804|911805|911806|911807|911808|911809|911810|911811|911812|911813|911814|911815|911816|911817|911818|911819|911820|911821|911822|911823|911824|911825|911826|911827|911828|911829|911830|911831|911832|911833|911834|911835|911836|911837|911838|911839|911840|911841|911842|911843|911844|911845|911846|911847|911848|911849|911850|911851|911852|911853|911854|911855|911856|911857|911858|911859|911860|911861|911862|911863|911864|911865|911866|911867|911868|911869|911870|911871|911872|911873|911874|911875|911876|911877|911878|911879|911880|911881|911882|911883|911884|911885|911886|911887|911888|911889|911890|911891|911892|911893|911894|911895|911896|911897|911898|911899|911900|911901|911902|911903|911904|911905|911906|911907|911908|911909|911910|911911|911912|911913|911914|911915|911916|911917|911918|911919|911920|911921|911922|911923|911924|911925|911926|911927|911928|911929|911930|911931|911932|911933|911934|911935|911936|911937|911938|911939|911940|911941|911942|911943|911944|911945|911946|911947|911948|911949|911950|911951|911952|911953|911954|911955|911956|911957|911958|911959|911960|911961|911962|911963|911964|911965|911966|911967|911968|911969|911970|911971|911972|911973|911974|911975|911976|911977|911978|911979|911980|911981|911982|911983|911984|911985|911986|911987|911988|911989|911990|911991|911992|911993|911994|911995|911996|911997|911998|911999|912000|912001|912002|912003|912004|912005|912006|912007|912008|912009|912010|912011|912012|912013|912014|912015|912016|912017|912018|912019|912020|912021|912022|912023|912024|912025|912026|912027|912028|912029|912030|912031|912032|912033|912034|912035|912036|912037|912038|912039|912040|912041|912042|912043|912044|912045|912046|912047|912048|912049|912050|912051|912052|912053|912054|912055|912056|912057|912058|912059|912060|912061|912062|912063|912064|912065|912066|912067|912068|912069|912070|912071|912072|912073|912074|912075|912076|912077|912078|912079|912080|912081|912082|912083|912377|912378|912379|912380|912381|912382|912383|912384|912385|912386|912387|912388|912389|912390|912391|912392|912393|912394|912395|912396|912397|912398|912399|912400|912401|912402|912403|912404|912405|912406|912407|912408|912409|912410|912411|912412|912413|912414|912415|912416|912417|912418|912419|912420|912421|912422|912423|912424|912425|912426|912427|912428|912429|912430|912431|912432|912433|912434|912435|912436|912437|912438|912439|912440|912441|912442|912443|912444|912445|912446|912447|912448|912449|912450|912451|912452|912453|912454|912455|912456|912457|912458|912459|912460|912461|912462|912463|912464|912465|912466|912467|912468|912469|912470|912471|912472|912473|912474|912475|912476|912477|912478|912479|912480|912481|912482|912483|912484|912485|912486|912487|912488|912489|912490|912491|912492|912493|912494|912495|912496|912497|912498|912499|912500|912501|912502|912503|912504|912505|912506|912507|912508|912509|912510|912511|912512|912513|912514|912515|912516|912517|912518|912519|912520|912521|912522|912523|912524|912525|912526|912527|912528|912529|912530|912531|912532|912533|912534|912535|912536|912537|912538|912539|912540|912541|912542|912543|912544|912545|912546|912547|912548|912549|912550|912551|912552|912553|912554|912555|912556|912557|912558|912559|912560|912561|912562|912563|912564|912565|912566|912567|912568|912569|912570|912571|912572|912573|912574|912575|912576|912577|912578|912579|912580|912581|912582|912583|912584|912585|912586|912587|912588|912589|912590|912591|912592|912593|912594|912595|912596|912597|912598|912599|912600|912601|912602|912603|912604|912605|912606|912607|912608|912609|912610|912611|912612|912613|912614|912615|912616|912617|912618|912619|912620|912621|912622|912623|912624|912625|912626|912627|912628|912629|913054|913055|913056|913057|913058|913059|913060|913061|913062|913063|913064|913065|913066|913067|913068|913069|913070|913071|913072|913073|913074|913075|913076|913077|913078|913079|913080|913081|913082|913083|913084|913085|913086|913087|913088|913089|913090|913091|913092|913093|913094|913095|913096|913097|913098|913099|913100|913101|914208|914209|914210|914211|914212|914213|914214|914215|914216|914217|914218|914219|914220|914221|914222|914223|914224|914225|914226|914227|914228|914229|914230|914231|914232|914233|914234|914235|914236|914237|914238|914239|914240|914241|914242|914243|914244|914245|914246|914247|914248|914249|914250|914251|914252|914253|914254|914255|914256|914257|914258|914259|914260|914261|914262|914263|914264|914265|914266|914267|914268|914269|914270|914271|914272|914273|914274|914275|914276|914277|914278|914279|914280|914281|914282|914283|914284|914285|914286|914287|914288|914289|914290|914291|914292|914293|914294|914295|914296|914297|914298|914299|914300|914301|914302|914303|914304|914305|914306|914307|914308|914309|914310|914311|914312|914313|914314|914315|914316|914317|914318|914319|914320|914321|914322|914323|914324|914325|914326|914327|914328|914329|914330|914331|914332|914333|914334|914335|914336|914337|914338|914339|914340|914341|914342|914343|914344|914345|914346|914347|914348|914349|914350|914351|914352|914353|914354|914355|914356|914357|914358|914359|914360|914361|914362|914363|914364|914365|914366|914367|914368|914369|914370|914371|914372|914373|914374|914375|914376|914377|914378|914379|914380|914381|914382|914383|914384|914385|914386|914387|914388|914389|914390|914391|914392|914393|914394|914395|914396|914397|914398|914399|914400|914401|914402|914403|914404|914405|914406|914407|914408|914409|914410|914411|914412|914413|914414|914415|914416|914417|914418|914419|914420|914421|914422|914423|914424|914425|914426|914427|914428|914429|914430|914431|914432|914433|914434|914435|914436|914437|914438|914439|914440|914441|914442|914443|914444|914445|914446|914447|914448|914449|914450|914451|914452|914453|914454|914455|914456|914457|914458|914459|914460|914461|914462|914463|914464|914465|914466|914467|914468|914469|914470|914471|914472|914473|914474|914475|914476|914477|914478|914479|914480|914481|914482|914483|914484|914485|914486|914487|914488|914489|914490|914491|914492|914493|914494|914495|914496|914497|914498|914499|914500|914501|914502|914503|914504|914505|914506|914507|914508|914509|914510|914511|914512|914513|914514|914515|914516|914517|914518|914519|914520|914521|914522|914523|914524|914525|914526|914527|914528|914529|914530|914531|914532|914533|914534|914535|914536|914537|914538|914539|914540|914541|914542|914543|914544|914545|914546|914547|914548|914549|914550|914551|914552|914553|914554|914555|914556|914557|914558|914559|914560|914561|914562|914563|914564|914565|914566|914567|914568|914569|914570|914571|914572|914573|914574|914575|914576|914577|914578|914579|914580|914581|914582|914583|914584|914585|914586|914587|914588|914589|914590|914591|914592|914593|914594|914595|914596|914597|914598|914599|914600|914601|914602|914603|914604|914605|914606|914607|914608|914609|914610|914611|914612|914613|914614|914615|914867|914868|914869|914870|914871|914872|914873|914874|914875|914876|914877|914878|914879|914880|914881|914882|914883|914884|914885|914886|914887|914888|914889|914890|914891|914892|914893|914894|914895|914896|914897|914898|914899|914900|914901|914902|914903|914904|914905|914906|914907|914908|914909|914910|914911|914912|914913|914914|914915|915099|915100|915101|915102|915103|915104|915105|915106|915107|915108|915109|915110|915111|915112|915113|915114|915115|915116|915117|915118|915119|915120|915121|915122|915123|915124|915125|915126|915127|915128|915129|915130|915131|915132|915133|915134|915135|915136|915137|915138|915139|915140|915141|915142|915143|915144|915145|915146|915147|915148|915149|915150|915151|915152|915153|915154|915155|915156|915157|915158|915159|915160|915161|915162|915163|915164|915165|915166|915167|915168|915169|915170|915171|915172|915173|915174|915175|915176|915178|915180|915182|915184|915186|915188|915190|915192|915194|915196|915198|915200|915202|915204|915206|915208|915210|915212|915214|915216|915218|915220|915221|915222|915223|915224|915225|915226|915228|915229|915230|915231|915233|915236|915238|915242|915244|915245|915248|915264|915268|915272|915278|915282|915286|915288|915293|915295|915299|915301|915305|915311|915313|915317|915319|915321|915329|915333|915339|915342|915344|915346|915348|915349|915352|915353|915354|915358|915362|915366|915371|915372|915373|915375|915376|915378|915380|915384|915386|915390|915394|915396|915398|915404|915405|915406|915407|915409|915411|915412|915414|915416|915417|915420|915424|915431|915433|915434|915435|915437|915438|915439|915442|915444|915600|915604|915606|915608|915610|915616|915618|915620|915621|915623|915624|915626|915629|915638|915659|915743|915747|915762|915764|915766|915768|915770|915772|915774|915776|915778|915780|915782|915784|915786|915788|915790|915792|915794|915796|915798|915800|915802|915804|915806|915808|915810|915812|915814|915816|915818|915820|915822|915824|915826|915827|915828|915829|915830|915832|915833|915837|915841|915843|915845|915847|915849|915853|915857|915888|915890|915892|915894|915895|915896|915897|915898|915899|915900|915901|915905|916056|916058|916060|916062|916064|916094|916096|916130|916131|916132|916133|916134|916136|916137|916139|916140|916141|916143|916146|916147|916148|916149|916151|916155|916156|916157|916159|916164|916166|916173|916174|916175|916176|916180|916182|916183|916184|916185|916187|916190|916191|916193|916194|916196|916199|916201|916203|916208|916210|916215|916217|916218|916226|916227|916229|916230|916231|916236|916237|916238|916240|916242|916243|916244|916245|916247|916248|916249|916251|916252|916253|916255|916256|916259|916260|916269|916281|916284|916285|916287|916288|916289|916292|916294|916295|916299|916324|916327|916328|916331|916342|916347|916348|916349|916353|916357|916392|916393|916395|916397|916400|916402|916410|916413|916415|916416|916420|916425|916429|916431|916436|916438|916442|916443|916444|916445|916446|916449|916453|916455|916458|916463|916465|916467|916497|916501|916505|916510|916512|916518|916523|916524|916528|916531|916535|916539|916540|916541|916542|916543|916545|916547|916549|916552|916556|916558|916564|916591|916595|916596|916597|916603|916604|916605|916609|916619|916621|916624|916625|916626|916628|916629|916630|916631|916633|916634|916679|916680|916682|916756|916757|916758|916759|916760|916761|916762|916763|916779|917110|917574|921505|964259|973033|980831", + "upstreamId": "15310|15365|15773|19283|19766|19767|19768|19773|20580|21793|21795|21796|21885|21892|23317|23318|23332|23642|23643|23647|23656|23660|23815|23820|25777|25787|25807|27447|27450|27460|27460|27461|27465|27495|27698|28456|28460|28465|28466|28473|28497|28518|28675|28676|29101|29102|29103|29104|29127|29128|29129|29131|29132|29133|29134|29136|29137|29141|29143|29144|29150|29153|29161|29163|29164|29190|29524|29525|29526|29537|29538|29543|29556|29558|29559|29566|31852|31853|31855|31857|31885|31889|33097|33098|33352|33362|33370|39099|39141|39951|40368|40370|40371|40374|40390|40426|40431|40437|40438|40439|40440|40441|40448|40451|40479|40543|40548|40549|40558|44290|44291|44292|44292|44293|44294|44295|44296|44297|44298|44299|44300|44310|44313|44314|44315|44316|44357|44436|44468|44630|44665|44666|44667|44668|44669|44670|44671|44672|44673|44674|44674|44675|44675|44676|44676|44677|44678|44679|44680|44681|44683|44684|44685|44686|44687|44688|44689|44690|44691|44692|44693|44694|44800|44801|44802|44803|44804|44944|45088|45103|45105|45106|45107|45108|45109|45110|45111|45112|45139|45140|45141|45142|45263|45264|45265|45269|45271|45272|45272|45275|45276|45290|45292|45293|45295|45296|45298|45301|45303|45304|45305|45307|45308|45310|45311|45313|45314|45315|45316|45341|45342|45345|45357|45358|45359|45390|45391|45393|45394|45396|45397|45398|45399|45400|45401|45402|45403|45404|45405|45406|45407|45408|45409|45410|45411|45419|45421|45422|45425|45426|45427|45432|45433|45531|45532|45534|45535|45536|45537|45538|45542|45547|45553|45557|45558|45559|45599|45725|45929|48805|49040|49167|49357|49462|49658|51095|51441|51442|51443|51444|51624|51626|51628|51629|51668|51669|51671|51673|51676|51680|51682|51685|51686|51688|51689|51691|51693|51694|51697|51703|51704|51705|51706|51707|51708|51709|51710|51711|51712|51713|51715|51716|51719|51720|51721|51726|51728|51732|51733|51734|51735|51736|51739|51741|51742|51743|51745|51746|51747|51749|51751|51754|51755|51757|51758|51763|51764|51765|51766|51768|51769|51770|51771|51773|51774|51776|51777|51778|51783|51784|51785|51787|51788|51789|51790|51791|51793|51794|51796|51797|51798|51801|51805|51807|51808|51814|51815|51817|51818|51819|51821|51822|51824|51825|51826|51828|51829|51834|51835|51838|51839|51841|51843|51844|51845|51846|51848|51849|51850|51851|51852|51854|51855|51857|51858|51858|51860|51861|51864|51865|51870|51873|51874|51875|51876|51879|51880|51881|51883|51886|51889|51891|51892|51893|51895|51897|51900|51904|51905|51906|51909|51911|51914|51920|51921|51922|51923|51924|51926|51927|51928|51930|51931|51933|51935|51937|51938|51941|51942|51943|51945|51947|51948|51949|51950|51954|51955|51956|51961|51962|51963|51964|51966|51967|51968|51969|51970|51974|51977|51979|51980|51981|51982|51983|51985|51986|51987|51989|51990|51991|51993|51995|51997|51998|51999|52002|52003|52011|52012|52013|52014|52016|52017|52023|52026|52027|52033|52034|52039|52042|52043|52044|52045|52046|52050|52054|52059|52060|52064|52066|52068|52069|52070|52071|52081|52085|52088|52090|52092|52096|52101|52107|52108|52109|52111|52112|52114|52115|52116|52118|52119|52120|52121|52122|52123|52125|52126|52127|52129|52130|52131|52132|52140|52142|52143|52144|52145|52146|52147|52149|52150|52151|52152|52155|52156|52157|52158|52159|52160|52161|52162|52164|52165|52168|52169|52171|52173|52174|52177|52179|52181|52182|52183|52184|52185|52188|52189|52190|52190|52192|52194|52197|52199|52200|52201|52202|52204|52205|52207|52208|52209|52212|52214|52215|52217|52218|52219|52220|52222|52223|52226|52227|52233|52234|52235|52237|52238|52241|52242|52243|52245|52246|52251|52252|52254|52256|52257|52259|52261|52262|52263|52265|52268|52270|52271|52273|52276|52283|52285|52286|52287|52289|52290|52291|52292|52294|52295|52296|52297|52298|52299|52300|52525|52531|52532|52533|52534|52536|52537|52538|52539|52540|52541|52542|52543|52544|52545|52546|52547|52548|52549|52550|52551|52552|52554|52558|52559|52561|52562|52563|52565|52567|52569|52570|52571|52573|52575|52577|52578|52580|52586|52588|52590|52592|52595|52600|52602|52604|52606|52608|52612|52613|52617|52619|52622|52623|52625|52628|52630|52636|52638|52639|52641|52642|52643|52644|52645|52648|52783|52784|52785|52786|52787|52788|52790|52791|52793|52799|52801|52804|52805|52809|52810|52812|52820|52821|52823|52824|52825|52829|52832|52833|52834|52835|52836|52837|52838|52839|52840|52841|52843|52844|52846|52850|52853|52854|52855|52856|52865|52867|52868|52870|52871|52874|52876|52877|52879|52881|52884|52885|52886|52887|52888|52890|52891|52892|52894|52896|52897|52898|52899|52900|52902|52903|52908|52909|52910|52911|52914|52915|52916|52919|52920|52922|52924|52925|52927|52928|52929|52930|52931|52932|52933|52934|52935|52936|52937|52938|52939|52940|52941|52944|52945|52946|52947|52951|52955|52956|52957|52958|52959|52960|52961|52962|52963|52964|52966|52967|52969|52971|52973|52974|52976|52979|52980|52982|52986|52987|52988|52989|52990|52991|52994|52995|52996|52997|52998|52999|53001|53002|53003|53005|53006|53007|53008|53009|53010|53011|53062|53064|53066|53071|53072|53073|53077|53078|53080|53084|53086|53089|53090|53093|53096|53098|53100|53109|53111|53112|53117|53120|53134|53137|53138|53139|53142|53146|53147|53149|53151|53154|53156|53158|53163|53163|53166|53167|53171|53172|53174|53177|53179|53181|53186|53188|53189|53190|53192|53193|53196|53197|53198|53320|53321|53323|53326|53329|53330|53338|53339|53349|53399|53402|53403|53406|53410|53413|53419|53422|53432|53440|53441|53444|53445|53450|53451|53454|53455|53456|53457|53459|53460|53462|53463|53464|53465|53466|53467|53469|53470|53471|53472|53473|53474|53474|53475|53476|53479|53480|53481|53482|53483|53484|53485|53486|53486|53489|53490|53492|53493|53494|53495|53496|53497|53498|53506|53513|53514|53516|53528|53532|53535|53540|53541|53546|53547|53548|53550|53551|53562|53565|53566|53567|53574|53575|53579|53580|53593|53601|53613|53615|53616|53617|53620|53627|53634|53636|53637|53638|53640|53641|53642|53648|53650|53653|53654|53656|53659|53660|53661|53664|53665|53667|53673|53676|53678|53684|53688|53691|53696|53700|53703|53704|53708|53709|53713|53745|53747|53858|53859|53861|53862|53863|53868|53872|53873|53874|53875|54017|54021|54022|54023|54024|54025|54027|54028|54031|54034|54035|54036|54040|54041|54042|54043|54044|54045|54048|54049|54051|54053|54054|54057|54060|54061|54062|54064|54065|54066|54067|54073|54074|54075|54075|54077|54078|54079|54080|54081|54082|54083|54084|54085|54086|54088|54090|54091|54092|54093|54096|54096|54097|54098|54100|54103|54104|54105|54106|54107|54108|54110|54112|54113|54114|54116|54117|54118|54120|54122|54123|54124|54127|54128|54129|54130|54131|54132|54134|54135|54136|54137|54138|54140|54141|54142|54143|54144|54147|54148|54149|54170|54172|54173|54174|54175|54177|54180|54181|54183|54185|54188|54190|54191|54192|54193|54195|54196|54197|54198|54199|54200|54202|54204|54205|54207|54209|54210|54214|54215|54216|54217|54219|54220|54222|54223|54224|54225|54228|54229|54230|54233|54234|54235|54236|54239|54240|54241|54243|54244|54246|54247|54248|54250|54251|54251|54252|54253|54254|54255|54256|54257|54259|54337|54338|54339|54344|54345|54346|54348|54354|54359|54361|54552|54553|54555|54557|54558|54559|54564|54566|54570|54576|54577|54580|54582|54587|54589|54591|54661|54675|54677|54683|54690|54692|54693|54696|54697|54698|54710|54713|54714|54716|54727|54743|54748|54749|54753|54757|54765|54772|54775|54779|54783|54788|54790|54793|54795|54796|54797|54798|54800|54803|54804|54804|54849|54851|54852|54853|54857|54858|54859|54861|54862|54864|54865|54867|54868|54869|54871|54873|54874|54875|54876|54877|54878|54879|54880|54882|54883|54884|54886|54887|54888|54889|54890|54891|54892|54895|54896|54898|54901|54902|54903|54905|54943|54944|54945|54945|54946|54947|54952|54997|54999|55002|55007|55007|55009|55015|55022|55301|55303|55304|55305|55306|55311|55312|55313|55315|55317|55318|55319|55320|55321|55322|55325|55326|55327|55328|55330|55331|55332|55334|55335|55336|55337|55338|55339|55340|55342|55343|55344|55347|55348|55349|55351|55352|55353|55354|55355|55356|55361|55365|55366|55367|55369|55370|55681|55682|55686|55687|55688|55691|55691|55692|55694|55699|55701|55738|55741|55744|55746|55750|55752|55756|55757|55759|55760|55762|55763|55764|55768|55769|55771|55774|55777|55779|55782|55783|55786|55787|55796|55798|55798|55800|55808|55809|55810|55813|55814|55816|55818|55819|55820|55823|55826|55839|55840|55841|55845|55846|55848|55850|55853|55855|55858|55859|55866|55867|55868|55876|55877|55878|55880|55882|55887|55891|55891|55892|55898|55904|55906|55910|55918|55929|55935|55936|55936|55943|55945|55952|55954|55956|55957|55960|55982|55984|55985|55994|55995|55997|55999|56002|56004|56006|56009|56013|56016|56018|56022|56029|56038|56041|56043|56045|56047|56048|56049|56052|56053|56054|56060|56066|56074|56076|56077|56079|56082|56083|56084|56087|56094|56096|56097|56099|56101|56108|56113|56115|56116|56118|56119|56131|56132|56135|56136|56137|56142|56143|56145|56148|56152|56153|56155|56160|56167|56172|56173|56176|56179|56180|56180|56181|56183|56187|56189|56190|56195|56196|56199|56201|56203|56205|56207|56209|56210|56211|56214|56214|56215|56222|56231|56233|56235|56240|56243|56248|56251|56253|56256|56264|56265|56271|56276|56281|56282|56289|56289|56302|56302|56303|56305|56307|56321|56322|56323|56323|56324|56325|56325|56327|56328|56330|56333|56339|56340|56342|56342|56343|56345|56347|56353|56353|56354|56354|56356|56359|56362|56364|56366|56367|56368|56373|56377|56381|56384|56387|56388|56390|56394|56395|56396|56401|56405|56409|56413|56413|56415|56418|56419|56430|56437|56439|56440|56441|56441|56443|56454|56457|56459|56462|56463|56466|56467|56469|56471|56472|56473|56477|56481|56483|56485|56486|56487|56497|56499|56499|56500|56503|56506|56508|56515|56516|56526|56528|56530|56537|56539|56540|56544|56549|56551|56556|56559|56560|56563|56564|56566|56569|56570|56572|56575|56576|56577|56578|56580|56582|56584|56586|56587|56597|56600|56601|56606|56608|56610|56616|56618|56620|56622|56631|56633|56634|56641|56643|56645|56647|56648|56652|56663|56671|56675|56681|56685|56689|56693|56700|56703|56705|56707|56708|56709|56715|56716|56718|56722|56723|56725|56729|56737|56738|56752|56753|56760|56762|56764|56766|56772|56775|56777|56778|56784|56790|56797|56797|56798|56800|56803|56804|56805|56805|56806|56809|56820|56822|56823|56828|56831|56834|56834|56837|56838|56841|56842|56842|56847|56849|56851|56855|56857|56870|56876|56881|56884|56887|56973|56975|56976|56978|56980|56985|56990|56992|56994|56995|57003|57007|57008|57051|57057|57061|57063|57064|57069|57070|57072|57074|57079|57197|57198|57199|57201|57204|57207|57208|57209|57211|57212|57213|57215|57216|57218|57219|57220|57226|57227|57230|57235|57238|57242|57246|57247|57250|57251|57252|57255|57256|57257|57261|57262|57280|57284|57457|57478|57484|57487|57488|57490|57495|65597|75578|77320|77508|77656|77671|77677|77691|77693|77694|77695|77698|77700|77701|77716|77748|77759|77761|77764|77765|77767|77791|77803|77807|77856|77858|77916|78502|78564|87691|89864|90404|91688|94537|98597|99382|99383|99385|100387|100508|100516|100602|100683|100756|100761|101186|102004|102134|102161|102169|102170|102195|102200|102206|102208|102210|102214|134503|135114|136041|136110|136111|136128|136129|136131|136136|136355|136670|136686|136689|136690|136692|136725|136732|139983|139987|140048|140738|140739|140861|140863|140867|140868|140869|140871|140873|140874|140875|140876|141245|141246|141379|141388|141398|141479|141490|141502|141509|141510|141515|141516|141524|141542|141544|141551|141603|141604|141605|141663|141664|141772|141803|142020|142021|142022|142077|142078|142079|142080|142081|142082|142083|142084|142086|142090|142091|142092|142093|142094|142095|142096|142097|142098|142102|142214|142394|142395|142397|142398|142513|142603|142604|142638|142639|142640|142642|142645|142646|142648|142649|142652|142653|142654|142655|142656|142657|142658|142802|165525|165534|165535|165536|165540|165560|165582|165583|165584|167352|167353|171048|171050|171057|171058|171059|171060|171061|171084|171102|171103|171104|171119|171133|171135|171136|171137|171138|171139|171140|171141|171142|171143|171144|171145|171146|171147|171150|171151|171157|171158|171159|171160|171161|171162|171163|171164|171192|171193|171194|171245|172177|172178|172179|172341|172343|172344|172346|172347|172348|172350|172354|172355|172361|172362|172367|172391|172392|172396|172397|172400|172402|172403|172404|172407|172409|172410|172411|172412|172415|172416|172417|172420|172421|172422|172425|172426|172428|172429|172434|172435|172436|172437|172460|172461|172473|172475|172477|172483|172485|172489|172490|172497|172533|172536|172537|172539|172541|172543|172545|172546|172547|172549|172553|172554|172555|172559|172561|172562|172564|172565|172567|172568|172573|172596|172597|172598|172609|172611|172621|172642|172646|172647|172651|172653|172656|172662|172671|172681|172684|172691|172697|172698|172699|172726|172787|172788|172791|172792|172793|172800|172807|172808|172850|172861|172872|172926|172934|172948|172951|172955|172963|172967|172968|172975|172981|172984|172987|172998|173009|173015|173030|173040|173041|173043|173053|173059|173061|173080|173081|173095|173099|173102|173114|173126|173133|173141|173155|173163|173166|173175|173192|173207|173208|173213|173231|173234|173242|173244|173246|173247|173248|173252|173258|173259|173264|173266|173267|173268|173308|173313|173314|173316|173320|173344|173355|173381|173396|173400|173446|173448|173452|173463|173488|173586|173603|173604|173621|173624|173628|173723|173751|173752|173753|173755|173757|173784|173797|173798|173799|173800|173802|173806|173808|173850|173852|173853|173855|173856|173858|173864|173868|173891|173893|173894|173895|173896|173939|173942|173943|173989|173990|173991|173996|173997|173997|173999|174000|174002|174005|174047|174048|174051|174052|174053|174134|174135|174136|174137|174142|174143|174144|174145|174182|174186|174187|174382|174383|174384|174385|174387|174520|174522|174590|174594|174597|174603|174610|174731|174735|174737|174738|174741|174748|174750|174751|174752|174755|174756|174757|174759|174765|174768|174769|174773|174775|174776|174778|174779|174780|174786|174788|174789|174791|174792|174793|174794|174796|174797|174800|174878|175011|175019|175032|175033|175043|175046|175047|175138|175139|175143|175145|175146|175148|175149|175153|175155|175157|175158|175173|175174|175178|175179|175180|175182|175185|175188|175193|175197|175203|175206|175210|175211|175212|175323|175386|175390|175393|175405|175411|175412|175415|175417|175419|175422|175426|175429|175436|175437|175440|175442|175446|175448|175449|175451|175453|175455|175456|175460|175462|175466|175470|175477|175479|175484|175487|175488|175490|175495|175497|175501|175503|175510|175513|175516|175517|175554|175565|175575|175577|175581|175582|175583|175586|175587|175588|175592|175593|175594|175598|175599|175600|175602|175605|175606|175607|175608|175615|175616|175625|175631|175646|175655|175656|175691|175694|175696|175721|175722|175724|175726|175728|175731|175861|175862|175863|175864|175865|175866|175867|175869|175870|175871|175994|175996|175999|176015|176076|176078|176079|176080|176101|176135|176137|176210|176226|176230|176232|176233|176340|176343|176348|176349|176353|176354|176356|176490|176513|176515|176516|176517|176518|176519|176521|176524|176526|176527|176529|176531|176532|176533|176534|176535|176536|176538|176541|176543|176653|176654|176655|176658|176659|176662|176665|176666|176667|176671|176672|176673|176675|176676|176677|176678|176679|176681|176808|176810|176829|176848|176927|177027|177380|177957|178037|178108|178124|178128|178129|178182|178203|178217|178218|178222|178223|178229|178259|178290|178432|178434|178436|178437|178438|178447|178448|178449|178452|178453|178455|178456|178457|178459|178469|178508|178509|178510|178511|178512|178550|178551|178552|178554|178556|178558|178559|178560|178561|178563|178566|178567|178615|178638|178639|178642|178655|178667|178672|178675|178679|178681|178683|178709|178715|178719|178725|178726|178729|178730|178748|178756|178916|178918|178919|178920|178923|178924|178925|178927|178929|178930|178932|178935|178940|178942|178943|178944|178947|178949|178957|178958|179060|179061|179065|179066|179071|179072|179079|179090|179092|179111|179116|179120|179122|179124|179125|179128|179129|179133|179134|179135|179136|179137|179171|179176|179185|179187|179193|179196|179197|179199|179203|179208|179209|179211|179212|179213|179216|179223|179224|179225|179229|179230|179232|179233|179240|179241|179242|179243|179245|179246|179248|179249|179253|179258|179259|179266|179268|179269|179270|179271|179272|179274|179279|179282|179283|179289|179292|179293|179297|179299|179307|179310|179315|179321|179324|179329|179331|179336|179341|179347|179348|179351|179358|179359|179360|179366|179369|179373|179378|179379|179381|179383|179387|179389|179394|179397|179399|179406|179407|179409|179424|179425|179426|179427|179428|179429|179433|179436|179437|179438|179464|179465|179466|179468|179470|179471|179473|179476|179482|179483|179490|179491|179492|179493|179494|179497|179499|179500|179501|179502|179503|179512|179514|179518|179522|179524|179535|179536|179540|179545|179551|179558|179566|179567|179572|179573|179576|179583|179597|179598|179612|179614|179616|179617|179640|179649|179653|179658|179662|179667|179669|179670|179672|179673|179693|179698|179700|179703|179708|179710|179711|179712|179714|179717|179725|179735|179736|179740|179751|179754|179783|179802|179852|179854|179855|179856|179858|179859|179860|179882|179894|179899|179911|179913|179921|179922|186303|186305|186327|186329|186330|186332|186333|186334|186335|186336|186339|186340|186345|186349|186352|186355|186358|186359|186363|186369|186386|186390|186396|186409|186410|186412|186415|186418|186423|186426|186461|186465|186468|186471|186476|186477|186479|186481|186486|186491|186498|186503|186513|186534|186564|186567|186571|186572|186573|186574|186577|186578|186585|188306|188327|188388|188392|188486|188488|188506|188804|188894|189184|189188|189190|189193|189195|189197|189200|189201|189203|189204|189205|189206|189239|189248|189264|189279|189287|189293|189295|189319|189343|189383|189384|189395|189396|189399|189402|189409|189451|189467|189493|189498|189507|189516|189522|189539|189541|189548|189560|189566|189580|189585|189589|189591|189602|189606|189655|189687|189733|189738|189770|189774|189775|189776|189780|189788|189805|189819|189820|189824|189826|189827|189831|189834|189847|189849|189863|189865|189870|189887|189889|189892|189898|189906|189909|189910|189911|189912|189933|189940|189948|189951|189956|189964|189965|189969|189979|189980|189981|189982|189983|189984|189986|189989|189991|189992|189993|189994|190006|190017|190640|191125|191293|191294|191461|191535|191628|191904|192072|192820|192881|192982|193006|193084|193086|193217|193227|193229|193241|193271|193313|193334|193416|193556|193734|193814|193961|193962|194297|194739|194779|195118|195122|195518|195533|196219|196270|196400|196411|196461|196463|196468|196477|196479|196485|196486|196487|196488|196502|196505|196510|196523|196533|196534|196538|196540|196542|196544|196545|196546|196552|196555|196556|196557|196560|196561|196563|196566|196567|196569|196571|196572|196573|196574|196575|196576|196577|196580|196586|196587|196588|196590|196593|196595|196596|196597|196600|196601|196602|196604|196605|196607|196608|196609|196610|196612|196620|196638|196640|196642|196643|196644|196645|196646|196647|196648|196650|196651|196652|196653|196658|196659|196661|196662|196663|196666|196668|196669|196670|196672|196673|196682|196689|196690|196697|196709|196711|196720|196721|196722|196723|196724|196734|196750|196752|197017|197020|197024|197025|197027|197032|197035|197036|197039|197040|197041|197045|197046|197050|197051|197053|197056|197057|197060|197064|197066|197067|197070|197073|197075|197076|197078|197079|197080|197081|197083|197086|197092|197096|197097|197098|197100|197102|197105|197106|197109|197110|197115|197116|197123|197126|197127|197929|197930|197931|197935|197936|197937|197940|197941|197943|197947|197948|197950|197951|197952|197956|197957|197959|197961|197962|197966|197967|197969|197974|197976|197977|197979|197987|197989|197990|197991|197995|197997|197998|198002|198003|198004|198005|198007|198008|198009|198050|198062|198078|198081|198082|198083|198089|198090|198091|198098|198140|198141|198142|198143|198145|198146|198151|198152|198153|198154|198155|198156|198157|198172|198177|198180|198186|198197|198203|198209|198211|198255|198281|198282|198313|198318|198330|198347|198348|198349|198350|198363|198367|198377|198383|198387|198393|198398|198400|198403|198408|198415|198418|198420|198421|198427|198429|198430|198434|198436|198437|198443|198444|198445|198451|198458|198459|198478|198486|198529|198532|198721|198726|198744|198781|198810|198838|198849|198851|198858|198910|198924|198969|198999|199022|199035|199107|199133|199144|199149|199167|199182|199191|199192|199212|199216|199251|199269|199277|199299|199302|199342|199344|199365|199387|199430|199439|199451|199452|199459|199492|199508|199526|199545|199556|199561|199563|199580|199585|199588|199661|199670|199671|199700|199710|199715|199720|199730|199753|204080|205175|205199|205200|205201|205202|205203|205204|205205|206914|206924|208085|209879|209886|209895|209898|212929|213530|214104|214105|214106|214107|214111|214116|214121|214122|214123|214490|215346|215347|215442|215473|215553|217192|221090|221092|222136|222144|222145|222251|222364|222416|222854|224123|224183|224200|224203|224206|224209|224210|224239|224251|224261|224266|224318|224325|224330|224332|224336|224337|224348|224448|224454|224459|224460|224461|224464|224471|224506|224529|224537|224538|224539|224574|224987|225019|228272|228279|228280|228282|228286|228288|228359|228364|228367|228371|228373|228375|228381|228382|228383|228385|228386|228387|228388|228391|228392|228393|228394|228395|228398|228399|228400|228401|228402|228404|228405|228406|228408|228514|228519|228523|228552|228557|228564|228578|228588|228594|228614|228660|228666|228679|228690|228695|228718|228723|228754|228757|228800|228802|228812|228829|228834|228905|228919|229022|229024|229096|229098|229100|229157|229489|229491|229494|229495|229496|229499|229501|229502|229503|229511|229514|229517|229519|229520|229561|229564|229566|229567|229721|229733|229735|230200|230201|230206|230210|230211|230212|230213|230215|230217|230218|230219|230255|230256|230295|230310|230312|230313|230316|230319|230320|230322|230323|230324|230462|230463|230464|230473|230481|230488|230493|230494|230495|230497|230500|230501|230506|230512|230514|230515|230558|230826|230827|230832|230862|230863|230864|230865|230866|230868|230869|230870|231080|231083|231113|231310|231352|231648|231913|231920|232152|236744|236758|236798|236799|236800|236813|236814|236815|238145|238149|238150|238151|238222|238233|238235|238237|238240|238246|238422|238430|238441|238478|238481|238489|238526|238573|239110|239111|239112|239288|239322|240007|240011|240743|240750|241143|241147|241149|241150|241152|241238|241239|241549|241550|241551|241797|241803|241805|241813|241814|241815|241816|241817|241818|241820|242030|242032|243042|243043|243375|243379|243381|243778|243779|244207|244209|244223|244224|244232|244239|245257|245259|245263|245264|245265|245266|245268|245271|245275|245279|245280|245281|245284|246879|246880|247150|249829|250432|252535|253892|254928|254930|256648|257926|257934|257936|257951|257958|257961|257962|257963|257964|257965|257966|257968|257969|257976|257977|258003|258052|258060|258073|258082|258130|258157|258175|258280|258285|258288|258292|258317|258325|258442|258446|258449|258452|258455|258456|258457|258459|258460|258462|258656|258679|258698|258703|258706|258712|258746|258748|258751|258779|258783|258786|258790|258792|258800|258801|258806|258808|258810|259017|259019|259020|259022|259026|259029|259030|259033|259038|259040|259043|259198|259712|259847|259848|260053|260346|260508|260516|260532|260534|260538|260539|264150|265714|266024|266210|266293|266423|266434|266525|266735|266890|266892|266956|267009|267393|267407|267457|267546|267629|267635|267717|267872|267901|268132|268171|268223|268334|268734|268758|269185|269582|270200|270495|270508|270724|271998|272177|272610|272668|272902|273262|273364|273378|274449|274528|274588|274603|274897|274935|274945|275371|276614|279740|279942|279963|279964|279985|279989|279990|280003|280005|280010|280076|280282|280284|280286|280289|280328|280330|280333|281360|281590|281591|281593|281604|281622|281626|281627|281630|281641|281758|281766|281790|281799|281802|281816|281819|283244|283301|283346|283375|283404|283408|283931|283994|284064|285998|286152|286295|288948|289696|289701|291667|292649|292652|292882|292883|292884|294871|301042|301044|301049|301063|302217|302804|304029|304031|304032|304033|304034|304035|305443|305444|305445|308732|308733|308741|308743|308744|308745|308746|308748|308765|308803|308804|308807|310328|313528|314281|314290|316035|316953|320347|320362|320370|320374|320376|322312|324154|324557|324565|328975|328990|328992|328994|330442|330565|330767|331163|331167|332141|332147|332637|335573|335590|335630|335631|335634|335647|337458|337463|337469|340332|341351|341439|341449|344273|346873|346908|346912|348136|348188|348190|348194|348197|348200|349397|352159|359294|359300|359450|359533|359639|359753|359886|360024|360028|360038|360187|360336|360347|360486|360803|361057|361092|361482|361874|361875|361876|362162|362734|363958|364449|364491|364493|364525|364527|364564|364567|364596|364600|364750|364825|364840|364842|364868|364871|364887|364889|364890|364909|364911|364976|364977|364985|364988|365002|365018|365029|365031|365040|365047|365049|365052|365056|365058|365059|365064|365066|365068|365073|365074|365075|365082|365085|365086|365088|365104|365874|365975|366017|366023|366029|366038|366108|366109|366309|366380|366438|366981|367212|367249|367264|367337|367538|367589|367615|367811|368225|368610|368723|368725|368731|368732|368738|368744|368747|368749|368759|369038|369039|369050|369065|369070|369075|369090|369185|369200|369221|369223|369242|369263|369277|369285|369358|369363|369637|370076|370548|370550|370594|370595|370611|371031|371044|371141|371254|371434|371435|371465|371466|371467|371639|372180|372193|372197|372203|372215|372220|372245|372255|372261|372325|372392|372399|372402|372414|372460|372551|372858|373007|373009|373019|373021|373023|373024|373042|373056|373058|373214|373227|373229|373240|373378|373611|373612|373762|373778|373790|374050|374122|374124|374127|374128|374129|374148|374158|374166|374466|374473|374583|374648|374966|374996|375074|375076|375077|375083|375865|375871|375874|375996|376000|376002|376003|376004|376006|376010|376016|376392|376532|376767|376784|376871|376942|376943|378950|378951|378958|378962|378964|378967|378971|378974|378979|379666|379904|379997|389323|389773|389925|390042|390140|390777|390818|390834|390851|390976|390994|391002|391015|391017|391019|391026|391027|391029|391031|391036|391037|391045|391050|391052|391053|391057|391060|391068|391072|391078|391079|391080|391090|391094|391107|391122|391123|391150|391161|391163|391166|391169|391183|391191|391205|391223|391225|391480|391485|391603|391620|391668|391681|391715|391766|391844|391868|391910|391933|391941|391943|391944|392039|392072|392119|392164|392221|392230|392263|392265|392266|392300|392336|392338|392374|393329|393331|393338|393343|393568|393590|393769|393770|393774|394183|395213|395221|395230|395231|395235|395433|395447|395451|395460|395475|395499|395502|395507|395571|395582|395588|395591|395592|395802|395875|395877|395890|395891|395892|395893|395894|395897|397108|398203|398206|398216|398254|398256|398259|398278|398280|398438|398632|398638|398647|398656|398700|398727|398736|398754|398960|398962|398965|398970|398978|398980|399057|399060|399446|399448|399453|399605|399609|399620|399626|399707|399709|399777|399784|400057|400098|400133|400136|400151|400159|400185|400199|400299|400308|400547|400817|400871|401068|402679|402715|402720|402722|402731|402733|402779|402783|403184|403208|403212|403239|403252|403258|403833|404437|404835|405105|405106|405107|405109|405117|405118|406312|406905|406908|406909|406914|406917|406918|406921|406922|406924|407073|408359|408362|408365|408373|408377|408379|408523|408641|408644|409092|409100|409101|409104|410335|410336|410338|410342|410345|410346|410349|410350|410352|410353|410354|410356|410360|410714|413250|414849|414855|414943|414961|415066|415237|415260|415273|415274|415388|415447|415598|415599|417646|419263|419271|419284|419287|419290|419293|421226|421229|421422|421599|421854|421855|422163|422216|422217|425314|425349|425708|425709|425883|425931|426057|426059|426060|426061|426062|426267|426268|427655|427966|439926|440616|440759|442636|442763|442764|442766|442767|442772|442773|442774|442775|442777|442778|443066|444001|444002|444006|444010|444013|444016|444810|444816|444818|444822|444823|444825|444983|445204|445205|445214|445956|446190|447238|447243|447254|447266|447423|447610|447620|447626|447628|447637|447660|447662|447664|447760|447777|447780|447782|447786|447793|447803|447804|447825|447827|447841|447843|447844|447856|447868|447872|447873|447877|447879|447883|447894|447895|447901|447906|447908|447920|447941|447944|447947|447954|447960|447963|447971|447982|447984|447986|447987|447992|448242|448365|448570|449006|449179|449282|449441|449473|449535|449566|449575|449580|449592|449649|449657|449693|449709|449729|449799|449903|449905|449951|450002|450003|450020|450028|450076|450182|450204|450226|450241|450395|450655|451882|452099|452227|452229|452232|453561|455645|455812|455827|455835|455841|455843|455996|456001|456009|456014|456028|456034|456072|456086|456093|456399|456425|456432|456436|456504|456763|456773|456801|456803|456900|457130|457132|457592|460105|460554|460685|460870|461142|461343|461350|461353|461358|461609|461632|461634|461652|461685|461691|461957|461960|461983|461992|462010|462012|462017|462133|462135|462181|462386|462399|462402|462417|462912|462930|463033|463043|463044|463048|463154|463651|463660|463690|463944|463977|463988|464109|464128|464140|464143|464173|465144|467661|467912|467915|467916|467956|467958|468867|468891|468905|469247|469288|469310|469313|469314|469684|469693|469718|469736|471292|471296|480674|480692|480696|480713|481133|482196|482277|485938|486016|486848|486852|486853|486861|486862|486865|486882|486964|487089|487093|487096|487193|487204|487207|487212|487213|487215|487217|487338|487340|487360|487365|487487|487776|487932|488132|488140|488142|488370|488417|488434|488444|488515|489375|490461|490463|490509|490599|490807|490825|491900|492023|492088|493419|493976|495086|496159|496192|496197|496198|496478|496621|496649|496652|496666|496915|497205|497223|497446|497617|497619|497684|498064|498073|498132|498256|498265|498267|498283|498298|498338|498346|498348|498354|498360|498365|498366|498372|498380|498468|498473|498474|498495|498498|498505|498515|498516|498518|498521|498526|498943|499160|499213|499291|499392|499459|499533|499565|499722|499734|500076|500285|500567|500573|501079|501342|501448|501465|501469|501474|501477|501479|501697|501698|501702|501803|501965|502008|502014|502080|502093|502306|502311|502312|502314|502899|503273|503621|503632|503649|503771|503821|503823|504130|504136|504143|504236|504240|504243|504249|504475|504500|504523|504720|504726|504738|504739|504751|504757|504891|504977|505005|505006|505010|505014|505016|505096|505402|505404|505413|505430|505617|505620|505758|506291|506298|506302|506304|506545|506548|506909|506931|507339|507348|508768|508903|509109|509114|509115|509116|509117|509119|509120|509122|509124|509125|509127|509172|509175|509176|509178|509180|509181|509182|509183|509185|509187|509191|509195|509198|509201|509203|509204|509205|509206|509207|509209|509210|509211|509218|509220|509222|509288|509293|509318|509397|509405|509416|509434|509563|509564|509565|509569|509570|509571|509630|509635|509636|509803|509809|509811|509815|509820|509821|509826|509829|509830|509835|509837|509839|509840|509880|509881|509882|509954|510193|510249|510268|510288|510291|510299|510301|510302|510303|510304|510307|510308|510309|510312|510314|510317|510325|510341|510393|510398|510404|510436|510454|510463|510464|510469|510484|510485|510486|510492|510494|510497|510654|510761|510762|510763|510765|510767|510770|510772|510775|510779|510785|510786|510787|510788|510789|510813|511082|511086|511090|511104|511107|511108|511121|511132|511137|512792|512793|512848|512849|512931|512932|513495|513911|514347|515117|515118|515124|515135|515157|515162|515170|515386|515462|515533|515588|515589|515598|515604|515624|515625|515631|515639|515644|515654|515659|515669|515674|515677|515687|515692|515697|515700|515701|515702|515704|515706|515711|515715|515716|515720|515724|515734|515737|515741|515753|515762|515767|515779|515781|515795|515799|515803|515817|516811|516826|516831|516900|516909|516930|516957|517022|517048|517066|517096|517252|517313|517377|517699|518906|518910|519101|519122|519127|519317|521607|521827|521829|521836|521848|522173|522180|522184|522186|522193|522195|522199|522201|522207|522211|522213|522215|522233|522238|522239|522245|522247|522498|522559|522569|522573|522595|522604|522606|522609|522614|522737|522805|525170|525462|525505|525802|526232|526236|526239|526243|526245|526246|526453|526462|526674|526739|526752|527106|527107|527114|527121|527152|527156|527375|527392|527612|528029|528061|528066|528096|528110|528124|528422|528424|528431|528478|528479|528544|528554|528575|528611|529052|529233|532198|532208|532210|532227|532288|532290|532297|532299|532302|532305|532334|532336|533391|533457|534380|536966|536996|537483|551269|551956|556620|556624|556679|556681|556823|556833|556835|556837|556839|556843|556864|556876|556910|556914|557112|557161|557184|557186|557188|557200|557206|557207|557225|557229|557245|557249|557765|558142|558317|558321|558383|558391|558401|558419|558595|558935|559353|560956|560994|561000|561011|561077|561091|561092|561095|561221|561602|562804|563777|563786|563796|563799|563814|564673|564678|564693|564713|564717|565434|565965|565977|565989|565999|566361|566368|566370|566372|566603|566617|566812|566814|566816|566824|567292|567318|567664|567885|568014|568813|570692|571103|571809|571818|571823|571826|571862|571863|571869|571872|571875|572605|572617|572620|572622|572769|572807|573456|574718|574722|574733|574735|575060|575080|576413|583803|583864|583962|584002|584306|586096|587315|589388|589524|609415|609471|609630|609787|610127|610128|610649|610664|610695|610896|610898|612502|613499|614694|614695|614696|614697|614698|614699|614700|614703|614704|614705|614706|614707|614708|614709|614710|614711|614712|614713|614714|614715|614716|614717|614718|614719|614720|614721|614722|614723|614724|614725|614726|614727|614728|614729|614730|614731|614732|614733|614734|614735|614736|614737|614738|614739|614740|614741|614742|614743|614744|614745|614746|614747|614748|614749|614750|614751|614752|614753|614754|614755|614756|614757|614758|614759|614760|614761|614762|614763|614764|614765|614766|614767|614768|614769|614770|614771|614772|614773|614774|614775|614776|614777|614778|614779|614780|614781|614782|614783|614784|614785|614786|614787|614788|614789|614790|614791|614792|614793|614794|614795|614796|614797|614798|614799|614800|614801|614802|614803|614804|614805|614806|614807|614808|614809|614810|614811|614812|614813|614814|614815|614816|614817|614818|614819|614820|614821|614822|614823|614824|614825|614826|614827|614828|614829|614830|614831|614832|614833|614834|614835|614836|614837|614838|614839|614840|614841|614842|614843|614844|614845|614846|614847|614848|614849|614850|614851|614852|614853|614854|614855|614856|614857|614858|614859|614860|614861|614862|614863|614864|614865|614866|614867|614868|614869|614870|614871|614872|614873|614880|614881|614882|614891|614892|614893|614897|614898|614899|614900|614901|614902|614903|614904|614905|614906|614907|614908|614909|614910|614911|614912|614913|614914|614915|614916|614917|614918|614919|614920|614921|614922|614923|614924|614925|614926|614927|614928|614929|614930|614931|614932|614933|614934|614935|614936|614937|614938|614939|614940|614941|614942|614943|614944|614945|614946|614947|614948|614949|614950|614951|614952|614983|614984|614985|614986|614987|614988|614989|614990|614991|614992|614993|614994|614995|614996|614997|614998|614999|615000|615001|615002|615003|615004|615005|615006|615007|615008|615009|615010|615011|615012|615013|615014|615015|615016|615017|615018|615019|615020|615021|615022|615023|615024|615025|615026|615027|615028|615029|615030|615031|615032|615033|615034|615035|615036|615037|615038|615039|615040|615041|615042|615043|615044|615045|615046|615047|615048|615049|615050|615051|615052|615053|615061|615062|615063|615064|615065|615066|615067|615068|615069|615070|615071|615072|615073|615074|615075|615076|615077|615078|615079|615080|615081|615082|615083|615084|615085|615086|615087|615088|615089|615090|615091|615092|615093|615095|615096|615097|615125|615126|615127|615128|615129|615130|615138|615139|615140|615141|615146|615147|615148|615149|615150|615151|615152|615153|615154|615155|615156|615157|615158|615159|615161|615162|615163|615164|615165|615166|615167|615168|615169|615170|615177|615178|615179|615180|615181|615182|615183|615184|615185|615186|615189|615190|615191|615192|615193|615194|615195|615196|615197|615198|615199|615200|615201|615202|615203|615204|615206|615207|615208|615209|615210|615212|615213|615214|615215|615216|615217|615218|615219|615220|615221|615222|615223|615228|615232|615233|615234|615235|615236|616005|616006|616007|616008|616009|616010|616011|616012|616013|616014|616015|616016|616017|616018|616019|616020|616021|616022|616023|616024|616025|616026|616027|616028|616029|616030|616031|616032|616033|616034|616035|616036|616037|616038|616039|616040|616041|616042|616043|616044|616045|616046|616047|616048|616049|616050|616051|616052|616053|616054|616055|616056|616057|616058|616059|616060|616061|616062|616063|616064|616065|616066|616067|616068|616069|616070|616071|616072|616073|616074|616075|616076|616077|616078|616079|616080|616081|616082|616083|616084|616085|616086|616811|616812|616813|616814|616815|616816|616817|616818|616819|616820|616821|616822|616823|616824|616927|616928|616929|616930|616931|616932|616933|617288|617289|617290|617291|617292|617293|617294|617295|617296|617297|617298|617299|617300|617301|617302|617303|617304|617305|617306|617307|617308|617309|617310|617311|617312|617313|617314|617315|617316|617317|617318|617319|617320|617321|617322|617323|617324|617325|617326|617327|617328|617329|617330|617331|617332|617333|617358|617359|617360|617361|617362|617363|617364|617365|617366|617367|617864|617865|617866|617867|617868|617869|617870|617871|617872|617873|617874|617875|617876|617877|617878|617879|617880|617881|617882|617883|617884|617885|617886|617887|617888|617889|617890|617891|617892|617893|617894|617895|617896|617897|617898|617899|617900|617901|617902|617903|617904|617905|617906|617907|617908|617909|617910|617911|618214|618215|618216|618217|618218|618219|618220|618221|618222|618223|618224|618225|618226|618227|618228|618229|618230|618231|618232|618233|618234|618235|618236|618237|618238|618239|618240|618241|618242|618278|618279|618280|618844|618845|618846|618847|618848|618849|618850|618851|618852|618853|618854|618855|618856|618857|618858|618859|618860|618861|618862|618863|618864|618865|618866|618867|618868|618869|618870|618871|618872|618873|618874|618875|618876|618877|618878|618879|618880|618881|618882|618883|618884|618885|618886|618887|619004|619005|619006|619007|619008|619009|619010|619011|619047|619048|619049|619051|619053|619054|619055|619056|619057|619058|619060|619061|619179|619193|619218|619242|619270|619284|619367|619422|619424|619427|619428|619444|619448|619450|619457|619459|619462|619463|619502|619515|619527|619596|619767|619778|621071|621073|621074|621075|621077|621149|621219|621220|621222|621224|621375|621612|621704|622378|623063|624437|624478|626917|626918|626927|626928|626930|627280|627283|627517|627542|627544|627547|627548|627549|627552|627555|627556|627563|627569|627571|627577|627584|627614|630969|630972|630977|630978|630979|631458|635244|635246|635248|635250|635252|635262|635265|635267|635269|635270|635273|635276|635279|635282|635284|635289|635292|635298|635299|635304|635306|635933|635940|639194|639207|640096|640101|640104|640112|640115|640124|640638|641081|641086|641093|641094|641095|641098|641100|641103|642258|642266|642267|642268|642273|642278|642280|642286|642305|642314|642320|643108|647139|647140|647141|647142|647145|647147|647164|647166|647171|647172|647178|650627|650725|651576|651674|652431|652600|652756|652889|653940|653943|654313|654842|655079|655083|655179|655273|655750|655790|656057|656060|656061|656062|656228|656232|656233|656239|657518|657713|659758|666512|667999|672403|672405|672423|679363|679365|679366|679368|679369|679372|679374|679375|679377|679386|679388|679391|679397|679399|679410|679411|679415|679418|679419|679421|679423|679424|679425|679428|679434|679436|679438|679439|679442|679443|679448|679449|679453|679457|679462|679463|679466|679467|679468|679472|679473|679474|679476|679477|679482|679525|679544|679558|679865|683315|683316|683428|683452|683455|683864|683865|684259|684470|684471|684472|684752|684753|684851|685277|685573|685575|685576|685645|685646|685647|685650|685651|685653|685655|685658|685659|685660|685661|685663|685666|685669|685670|685672|686001|686070|686337|686338|686339|686341|686342|686909|686911|686912|686913|686914|686916|686917|687005|687007|687008|687779|687780|687781|687783|687785|687786|687879|687984|687986|687987|688260|688261|688264|688265|688267|688269|688400|688903|688904|688905|688906|688907|689649|689806|689839|689865|690189|690378|690453|690540|690541|690542|690543|690545|690546|690547|690548|690550|690552|690554|690555|691425|692061|693046|693048|693049|693050|693052|693142|693466|693467|693468|693470|693658|694260|695007|695038|695636|695655|695657|696606|699672|701784|702297|703140|712858|718823|722144|722146|732295|735367|738008|739174|743300|746319|746324|746327|746333|746335|748045|750229|750231|750523|752612|752695|753341|753989|753993|756424|758864|759492|759526|761254|761744|761748|761750|761753|761759|761765|761772|761778|761782|765847|765850|765856|765864|765872|766184|768472|768473|768474|768890|769049|769097|769098|769740|770111|770262|772105|772106|772116|772117|774464|775819|775829|775925|777019|778855|780618|780621|782660|782662|784018|784376|785882|787005|787868|787931|791141|791142|791394|794538|794539|794541|794628|794629|794632|795337|795339|795900|795907|795908|795911|795995|797009|797662|797663|797667|798999|799002|799004|799011|799645|816418|816419|816420|816432|822794|822802|822803|823225|823229|823231|823232|823630|823650|823654|823655|823662|823667|823669|823678|823679|823680|823683|823684|823686|823702|823707|823708|823714|823720|823726|823736|823738|823740|823743|827575|827577|827578|827580|827581|827583|827585|827586|827588|832444|832445|832446|832450|832451|832459|832464|832467|832472|832474|832475|832478|832484|832486|832495|832497|832499|832500|832501|832502|832503|832504|832507|832513|832515|832516|832517|832518|832520|832526|833371|833375|838185|838497|838498|838499|838502|838530|838531|838535|838540|839316|839860|839862|839863|839864|839867|839874|841216|841243|841273|841276|841291|841297|842575|846747|846752|846787|846789|846790|846793|846797|846801|846802|848085|848086|850765|851547|851549|851771|851989|851993|852300|852992|858855|858923|858924|858926|859274|860467|860468|862422|864086|864090|864095|864098|864100|864102|864104|864105|864111|865155|866257|868102|868658|869734|869735|869737|869738|871736|871738|871739|872232|873936|873937|879106|879108|879144|879150|880647|881736|881904|896848|896853|896855|896864|897696|900268|900269|903706|903707|903708|903709|903710|903711|903712|903713|903714|903715|903716|903717|903718|903719|903723|903724|903725|903726|903727|903728|903729|903730|903731|903732|903733|903734|903735|903736|903737|903738|903739|903740|903741|903742|903743|903744|903745|903746|903747|903748|903749|903750|903751|903752|903753|903754|903755|903756|903757|903758|903759|903760|903761|903762|903763|903764|903765|903766|903767|903768|903769|903770|903771|903772|903773|903774|903775|903776|903777|903778|903779|903780|903781|903782|903783|903784|903785|903786|903787|903788|903789|903790|903791|903792|903793|903794|903795|903796|903797|903798|903799|903800|903801|903802|903803|903804|903805|903806|903807|903808|903809|903810|903811|903812|903813|903814|903815|903816|903817|903818|903819|903820|903821|903822|903823|903824|903825|903826|903827|903828|903829|903830|903831|903832|903833|903834|903835|903836|903837|903838|903839|903840|903841|903842|903843|903844|903845|903846|903847|903851|903866|903870|903871|903872|903873|903874|903875|903876|903877|903878|903879|903880|903881|903882|903883|903884|903885|903886|903887|903903|903904|903905|903906|903907|903908|903909|903910|903911|903912|903913|903914|903915|903916|903917|903919|903920|903921|903922|903923|903924|903925|903926|903927|903928|903929|903930|903931|903932|903933|903934|903935|903936|903937|903938|903939|903940|903941|903942|903943|903944|903945|903946|903947|903948|903949|903950|903951|903953|903954|903955|903956|903957|903958|903959|903960|903961|903962|903963|903964|903965|903966|903967|903968|903969|903970|903971|903972|903973|903974|903975|903976|903977|903978|904003|904013|904014|904015|904016|904017|904020|904021|904022|904023|904024|904025|904026|904028|904029|904030|904031|904032|904033|904034|904035|904036|904037|904038|904048|904049|904050|904051|904052|904053|904054|904055|904056|904057|904058|904489|904662|905108|905559|905877|906396|906397|906398|906399|906400|906401|906402|906403|906404|906405|906406|906407|906408|906409|906410|906411|906412|906413|906414|906415|906416|906417|906418|906419|906420|906421|906422|906423|906424|906425|906426|906427|906428|906429|906430|906431|906432|906433|906434|906435|906436|906437|906438|906439|906440|906441|906442|906443|906444|906445|906446|906447|906448|906449|906450|906451|906452|906453|906454|906455|906456|906457|906458|906459|906460|906461|906462|906463|906464|906465|906466|906467|906468|906469|906470|906471|906472|906473|906474|906475|906476|906477|906478|906479|906480|906481|906482|906483|906484|906485|906486|906487|906488|906489|906490|906491|906492|906493|906494|906495|906496|906497|906498|906499|906500|906501|906502|906503|906504|906505|906506|906507|906508|906509|906510|906511|906512|906513|906514|906515|906516|906517|906518|906519|906520|906521|906522|906523|906524|906525|906526|906527|906528|906529|906530|906531|906532|906533|906534|906535|906536|906537|906538|906539|906540|906541|906542|906543|906544|906545|906546|906547|906548|906549|906550|906551|906552|906553|906554|906555|906556|906557|906558|906559|906560|906561|906562|906563|906564|906565|906566|906567|906568|906569|906570|906571|906572|906573|906574|906575|906576|906577|906578|906579|906580|906581|906582|906583|906584|906585|906586|906587|906588|906589|906590|906591|906592|906593|906594|906595|906596|906597|906598|906599|906600|906601|906602|906603|906604|906605|906606|906607|906608|906609|906610|906611|906612|906613|906614|906615|906616|906617|906618|906619|906620|906621|906622|906623|906624|906625|906626|906627|906628|906629|906630|906631|906632|906633|906634|906635|906636|906637|906638|906639|906640|906641|906642|906643|906644|906645|906646|906647|906648|906649|906650|906651|906652|906653|906654|906655|906656|906657|906658|906659|906660|906661|906662|906663|906664|906665|906666|906667|906668|906669|906670|906671|906672|906673|906674|906675|906676|906677|906678|906679|906680|906681|906682|906683|906684|906685|906686|906687|906688|906689|906690|906691|906692|906693|906694|906695|906696|906697|906698|906699|906700|906701|906702|906703|906704|906705|906706|906707|906708|906709|906710|906711|906712|906713|906714|906715|906716|906717|906718|906719|906720|906721|906722|906723|906724|906725|906726|906727|906728|906729|906730|906731|906732|906733|906734|906735|906736|906737|906738|906739|906740|906741|906742|906743|906744|906745|906746|906747|906748|906749|906750|906751|906752|906753|906754|906755|906756|906757|906758|906759|906760|906761|906762|906763|906764|906765|906766|906767|906768|906769|906770|906771|906772|906773|906774|906775|906776|906777|906778|906779|906780|906781|906782|906783|906784|906785|906786|906787|906788|906789|906790|906791|906792|906793|906794|906795|906796|906797|906798|906799|906800|906801|906802|906803|906804|906805|906806|906807|906808|906809|906810|906811|906812|906813|906814|906815|906816|906817|906818|906819|906820|906821|906822|906823|906824|906825|906826|906827|906828|906829|906830|906831|906832|906833|906834|906835|906836|906837|906838|906839|906840|906841|906842|906843|906844|906845|906846|906847|906848|906849|906850|906851|906852|906853|906854|906855|906856|906857|906858|906859|906860|906861|906862|906863|906864|906865|906866|906867|906868|906869|906870|906871|906872|906873|906874|906875|906876|906877|906878|906879|906880|906881|906882|906883|906884|906885|906886|906887|906888|906889|906890|906891|906892|906893|906894|906895|906896|906897|906898|906899|906900|906901|906902|906903|906904|906905|906906|906907|906908|906909|906910|906911|906912|906913|906914|906915|906916|906917|906918|906919|906920|906921|906922|906923|906924|906925|906926|906927|906928|906929|906930|906931|906932|906933|906934|906935|906936|906937|906938|906939|906940|906941|906942|906943|906944|906945|906946|906947|906948|906949|906950|906951|906952|906953|906954|906955|906956|906957|906958|906959|906960|906961|906962|906963|906964|906965|906966|906967|906968|906969|906970|906971|906972|906973|906974|906975|906976|906977|906978|906979|906980|906981|906982|906983|906984|906985|906986|906987|906988|906989|906990|906991|906992|906993|906994|906995|906996|906997|906998|906999|907000|907001|907002|907003|907004|907005|907006|907007|907008|907009|907010|907011|907012|907013|907014|907015|907016|907017|907018|907019|907020|907021|907022|907023|907024|907025|907026|907027|907028|907029|907030|907031|907032|907033|907034|907035|907036|907037|907038|907039|907040|907041|907042|907043|907044|907045|907046|907047|907048|907049|907050|907051|907052|907053|907054|907055|907056|907057|907058|907059|907060|907061|907062|907063|907064|907065|907066|907067|907068|907069|907070|907071|907072|907073|907074|907075|907076|907077|907078|907079|907080|907081|907082|907083|907084|907085|907086|907087|907088|907089|907090|907091|907092|907093|907094|907095|907096|907097|907098|907099|907100|907101|907102|907103|907104|907105|907106|907107|907108|907109|907110|907111|907112|907113|907114|907115|907116|907117|907118|907119|907120|907121|907122|907123|907124|907125|907126|907127|907128|907129|907130|907131|907132|907133|907134|907135|907136|907137|907138|907139|907140|907141|907142|907143|907144|907145|907146|907147|907148|907149|907150|907151|907152|907153|907154|907155|907156|907157|907158|907159|907160|907161|907162|907163|907164|907165|907166|907167|907168|907169|907170|907171|907172|907173|907174|907175|907176|907177|907178|907179|907180|907181|907182|907183|907184|907185|907186|907187|907188|907189|907190|907191|907192|907193|907194|907195|907196|907197|907198|907199|907200|907201|907202|907203|907204|907205|907206|909083|909084|909085|909086|909087|909088|909089|909090|909091|909092|909093|909094|909095|909096|909097|909098|909099|909100|909101|909102|909103|909104|909105|909106|909107|909108|909109|909110|909111|909112|909113|909114|909115|909116|909117|909118|909119|909120|909121|909122|909123|909124|909125|909126|909127|909128|909129|909130|909131|909132|909133|909134|909135|909136|909137|909138|909139|909140|909141|909142|909143|909144|909145|909146|909147|909148|909149|909150|909151|909152|909153|909154|909155|909156|909157|909158|909159|909160|909161|909162|909163|909164|909165|909166|909167|909168|909169|909170|909171|909172|909173|909174|909175|909176|909177|909178|909179|909180|909181|909182|909648|909649|909650|909651|909652|909653|909654|909655|909656|909657|909658|909659|909660|909661|909662|909663|909664|909665|909666|909667|909668|909669|909670|909671|909672|909673|909674|909675|909676|909677|909678|910168|910169|910170|910171|910172|910173|910174|910175|910176|910177|910178|910179|910180|910181|910182|910183|910184|910185|910186|910187|910188|910189|910190|910191|910192|910193|910194|910195|910196|910197|910198|910199|910200|910201|910202|910203|910204|910205|910206|910207|910208|910209|910210|910211|910212|910213|910214|910215|910216|910217|910218|910219|910220|910221|910222|910223|910224|910225|910226|910227|910228|910229|910230|910231|910232|910233|910234|910235|910236|910237|910238|910239|910240|910241|910242|910243|910244|910245|910246|910247|910248|910249|910250|910251|910252|910253|910254|910255|910256|910257|910258|910259|910260|910261|910262|910263|910264|910265|910266|910267|910268|910269|910270|910271|910272|910273|910274|910275|910276|910277|910278|910279|910280|910281|910282|910283|910284|910285|910286|910287|910288|910289|910290|910291|910292|910293|910294|910295|910296|910297|910298|910299|910300|910301|910302|910303|910304|910305|910306|910307|910308|910309|910310|910311|910312|910313|910314|910315|910316|910317|910318|910319|910320|910321|910322|910323|910324|910325|910326|910327|910328|910329|910330|910331|910332|910333|910334|910335|910336|910337|910338|910339|910340|910341|910342|910343|910344|910345|910346|910347|910348|910349|910350|910351|910352|910353|910354|910355|910356|910357|910358|910359|910360|910361|910362|910363|910364|910365|910366|910367|910368|910369|910370|910371|910372|910373|910374|910375|910376|910377|910378|910379|910380|910381|910382|910383|910384|910385|910386|910387|910388|910389|910390|910391|910392|910393|910394|910395|910396|910397|910398|910399|910400|910401|910402|910403|910404|910405|910406|910407|910408|910409|910410|910411|910412|910413|910414|910415|910416|910417|910418|910419|910420|910421|910422|910423|910424|910425|910426|910427|910428|910429|910430|910431|910432|910433|910434|910435|910436|910437|910438|910439|910440|910441|910442|910443|910444|910445|910446|910447|910448|910449|910450|910451|910452|910453|910454|910455|910456|910457|910458|910459|910460|910461|910462|910463|910464|910465|910466|910467|910468|910469|910470|910471|910472|910473|910474|910475|910476|910477|910478|910479|910480|910481|910482|910483|910484|910485|910486|910487|910488|910489|910490|910491|910492|910493|910494|910495|910496|910497|910498|910499|910500|910501|910502|910503|910504|910505|910506|910507|910508|910509|910510|910511|910512|910513|910514|910515|910516|910517|910518|910519|910520|910521|910522|910523|910524|910525|910526|910527|910528|910529|910530|910531|910532|910533|910534|910535|910536|910537|910538|910539|910540|910541|910542|910543|910544|910545|910546|910547|910548|910549|910550|910551|910552|910553|910554|910555|910556|910557|910558|910559|910560|910561|910562|910563|910564|910565|910566|910567|910568|910569|910570|910571|910572|910573|910574|910575|910576|910577|910578|910579|910580|910581|910582|910583|910584|910585|910586|910587|910588|910589|910590|910591|910592|910593|910594|910595|910596|910597|910598|910599|910600|910601|910602|910603|910604|910605|910606|910607|910608|910609|910610|910611|910612|910613|910614|910615|910616|910617|910618|910619|910620|910621|910622|910623|910624|910625|910626|910627|910628|910629|910630|910631|910632|910633|910634|910635|910636|910637|910638|910639|910640|910641|910642|910643|910644|910645|910646|910647|910648|910649|910650|910651|910652|910653|910654|910655|910656|910657|910658|910659|910819|910820|910821|910822|910823|910824|910825|910826|910827|910828|910829|910830|910831|910832|910833|910834|910835|910836|910837|910838|910839|910840|910841|910842|910843|910844|910845|910846|910847|910848|910849|910850|910851|910852|910853|910854|910855|910856|910857|910858|910859|910860|910861|910862|910863|910864|910865|910866|910867|910868|910869|910870|910871|910872|910873|910874|910875|910876|910877|910878|910879|910880|910881|910882|910883|910884|910885|910886|910887|910888|910889|910890|910891|910892|910893|910894|910895|910896|910897|910898|910899|910900|910901|910902|910903|910904|910905|910906|911665|911666|911667|911668|911669|911670|911671|911672|911673|911674|911675|911676|911677|911678|911679|911680|911681|911682|911683|911684|911685|911686|911687|911688|911689|911690|911691|911692|911693|911694|911695|911696|911697|911698|911699|911700|911701|911702|911703|911704|911705|911706|911707|911708|911709|911710|911711|911712|911713|911714|911715|911716|911717|911718|911719|911720|911721|911722|911723|911724|911725|911726|911727|911728|911729|911730|911731|911732|911733|911734|911735|911736|911737|911738|911739|911740|911741|911742|911743|911744|911745|911746|911747|911748|911749|911750|911751|911752|911753|911754|911755|911756|911757|911758|911759|911760|911761|911762|911763|911764|911765|911766|911767|911768|911769|911770|911771|911772|911773|911774|911775|911776|911777|911778|911779|911780|911781|911782|911783|911784|911785|911786|911787|911788|911789|911790|911791|911792|911793|911794|911795|911796|911797|911798|911799|911800|911801|911802|911803|911804|911805|911806|911807|911808|911809|911810|911811|911812|911813|911814|911815|911816|911817|911818|911819|911820|911821|911822|911823|911824|911825|911826|911827|911828|911829|911830|911831|911832|911833|911834|911835|911836|911837|911838|911839|911840|911841|911842|911843|911844|911845|911846|911847|911848|911849|911850|911851|911852|911853|911854|911855|911856|911857|911858|911859|911860|911861|911862|911863|911864|911865|911866|911867|911868|911869|911870|911871|911872|911873|911874|911875|911876|911877|911878|911879|911880|911881|911882|911883|911884|911885|911886|911887|911888|911889|911890|911891|911892|911893|911894|911895|911896|911897|911898|911899|911900|911901|911902|911903|911904|911905|911906|911907|911908|911909|911910|911911|911912|911913|911914|911915|911916|911917|911918|911919|911920|911921|911922|911923|911924|911925|911926|911927|911928|911929|911930|911931|911932|911933|911934|911935|911936|911937|911938|911939|911940|911941|911942|911943|911944|911945|911946|911947|911948|911949|911950|911951|911952|911953|911954|911955|911956|911957|911958|911959|911960|911961|911962|911963|911964|911965|911966|911967|911968|911969|911970|911971|911972|911973|911974|911975|911976|911977|911978|911979|911980|911981|911982|911983|911984|911985|911986|911987|911988|911989|911990|911991|911992|911993|911994|911995|911996|911997|911998|911999|912000|912001|912002|912003|912004|912005|912006|912007|912008|912009|912010|912011|912012|912013|912014|912015|912016|912017|912018|912019|912020|912021|912022|912023|912024|912025|912026|912027|912028|912029|912030|912031|912032|912033|912034|912035|912036|912037|912038|912039|912040|912041|912042|912043|912044|912045|912046|912047|912048|912049|912050|912051|912052|912053|912054|912055|912056|912057|912058|912059|912060|912061|912062|912063|912064|912065|912066|912067|912068|912069|912070|912071|912072|912073|912074|912075|912076|912077|912078|912079|912080|912081|912082|912083|912377|912378|912379|912380|912381|912382|912383|912384|912385|912386|912387|912388|912389|912390|912391|912392|912393|912394|912395|912396|912397|912398|912399|912400|912401|912402|912403|912404|912405|912406|912407|912408|912409|912410|912411|912412|912413|912414|912415|912416|912417|912418|912419|912420|912421|912422|912423|912424|912425|912426|912427|912428|912429|912430|912431|912432|912433|912434|912435|912436|912437|912438|912439|912440|912441|912442|912443|912444|912445|912446|912447|912448|912449|912450|912451|912452|912453|912454|912455|912456|912457|912458|912459|912460|912461|912462|912463|912464|912465|912466|912467|912468|912469|912470|912471|912472|912473|912474|912475|912476|912477|912478|912479|912480|912481|912482|912483|912484|912485|912486|912487|912488|912489|912490|912491|912492|912493|912494|912495|912496|912497|912498|912499|912500|912501|912502|912503|912504|912505|912506|912507|912508|912509|912510|912511|912512|912513|912514|912515|912516|912517|912518|912519|912520|912521|912522|912523|912524|912525|912526|912527|912528|912529|912530|912531|912532|912533|912534|912535|912536|912537|912538|912539|912540|912541|912542|912543|912544|912545|912546|912547|912548|912549|912550|912551|912552|912553|912554|912555|912556|912557|912558|912559|912560|912561|912562|912563|912564|912565|912566|912567|912568|912569|912570|912571|912572|912573|912574|912575|912576|912577|912578|912579|912580|912581|912582|912583|912584|912585|912586|912587|912588|912589|912590|912591|912592|912593|912594|912595|912596|912597|912598|912599|912600|912601|912602|912603|912604|912605|912606|912607|912608|912609|912610|912611|912612|912613|912614|912615|912616|912617|912618|912619|912620|912621|912622|912623|912624|912625|912626|912627|912628|912629|913054|913055|913056|913057|913058|913059|913060|913061|913062|913063|913064|913065|913066|913067|913068|913069|913070|913071|913072|913073|913074|913075|913076|913077|913078|913079|913080|913081|913082|913083|913084|913085|913086|913087|913088|913089|913090|913091|913092|913093|913094|913095|913096|913097|913098|913099|913100|913101|914208|914209|914210|914211|914212|914213|914214|914215|914216|914217|914218|914219|914220|914221|914222|914223|914224|914225|914226|914227|914228|914229|914230|914231|914232|914233|914234|914235|914236|914237|914238|914239|914240|914241|914242|914243|914244|914245|914246|914247|914248|914249|914250|914251|914252|914253|914254|914255|914256|914257|914258|914259|914260|914261|914262|914263|914264|914265|914266|914267|914268|914269|914270|914271|914272|914273|914274|914275|914276|914277|914278|914279|914280|914281|914282|914283|914284|914285|914286|914287|914288|914289|914290|914291|914292|914293|914294|914295|914296|914297|914298|914299|914300|914301|914302|914303|914304|914305|914306|914307|914308|914309|914310|914311|914312|914313|914314|914315|914316|914317|914318|914319|914320|914321|914322|914323|914324|914325|914326|914327|914328|914329|914330|914331|914332|914333|914334|914335|914336|914337|914338|914339|914340|914341|914342|914343|914344|914345|914346|914347|914348|914349|914350|914351|914352|914353|914354|914355|914356|914357|914358|914359|914360|914361|914362|914363|914364|914365|914366|914367|914368|914369|914370|914371|914372|914373|914374|914375|914376|914377|914378|914379|914380|914381|914382|914383|914384|914385|914386|914387|914388|914389|914390|914391|914392|914393|914394|914395|914396|914397|914398|914399|914400|914401|914402|914403|914404|914405|914406|914407|914408|914409|914410|914411|914412|914413|914414|914415|914416|914417|914418|914419|914420|914421|914422|914423|914424|914425|914426|914427|914428|914429|914430|914431|914432|914433|914434|914435|914436|914437|914438|914439|914440|914441|914442|914443|914444|914445|914446|914447|914448|914449|914450|914451|914452|914453|914454|914455|914456|914457|914458|914459|914460|914461|914462|914463|914464|914465|914466|914467|914468|914469|914470|914471|914472|914473|914474|914475|914476|914477|914478|914479|914480|914481|914482|914483|914484|914485|914486|914487|914488|914489|914490|914491|914492|914493|914494|914495|914496|914497|914498|914499|914500|914501|914502|914503|914504|914505|914506|914507|914508|914509|914510|914511|914512|914513|914514|914515|914516|914517|914518|914519|914520|914521|914522|914523|914524|914525|914526|914527|914528|914529|914530|914531|914532|914533|914534|914535|914536|914537|914538|914539|914540|914541|914542|914543|914544|914545|914546|914547|914548|914549|914550|914551|914552|914553|914554|914555|914556|914557|914558|914559|914560|914561|914562|914563|914564|914565|914566|914567|914568|914569|914570|914571|914572|914573|914574|914575|914576|914577|914578|914579|914580|914581|914582|914583|914584|914585|914586|914587|914588|914589|914590|914591|914592|914593|914594|914595|914596|914597|914598|914599|914600|914601|914602|914603|914604|914605|914606|914607|914608|914609|914610|914611|914612|914613|914614|914615|914867|914868|914869|914870|914871|914872|914873|914874|914875|914876|914877|914878|914879|914880|914881|914882|914883|914884|914885|914886|914887|914888|914889|914890|914891|914892|914893|914894|914895|914896|914897|914898|914899|914900|914901|914902|914903|914904|914905|914906|914907|914908|914909|914910|914911|914912|914913|914914|914915|915099|915100|915101|915102|915103|915104|915105|915106|915107|915108|915109|915110|915111|915112|915113|915114|915115|915116|915117|915118|915119|915120|915121|915122|915123|915124|915125|915126|915127|915128|915129|915130|915131|915132|915133|915134|915135|915136|915137|915138|915139|915140|915141|915142|915143|915144|915145|915146|915147|915148|915149|915150|915151|915152|915153|915154|915155|915156|915157|915158|915159|915160|915161|915162|915163|915164|915165|915166|915167|915168|915169|915170|915171|915172|915173|915174|915175|915176|915178|915180|915182|915184|915186|915188|915190|915192|915194|915196|915198|915200|915202|915204|915206|915208|915210|915212|915214|915216|915218|915220|915221|915222|915223|915224|915225|915226|915228|915229|915230|915231|915233|915236|915238|915242|915244|915245|915248|915264|915268|915272|915278|915282|915286|915288|915293|915295|915299|915301|915305|915311|915313|915317|915319|915321|915329|915333|915339|915342|915344|915346|915348|915349|915352|915353|915354|915358|915362|915366|915371|915372|915373|915375|915376|915378|915380|915384|915386|915390|915394|915396|915398|915404|915405|915406|915407|915409|915411|915412|915414|915416|915417|915420|915424|915431|915433|915434|915435|915437|915438|915439|915442|915444|915600|915604|915606|915608|915610|915616|915618|915620|915621|915623|915624|915626|915629|915638|915659|915743|915747|915762|915764|915766|915768|915770|915772|915774|915776|915778|915780|915782|915784|915786|915788|915790|915792|915794|915796|915798|915800|915802|915804|915806|915808|915810|915812|915814|915816|915818|915820|915822|915824|915826|915827|915828|915829|915830|915832|915833|915837|915841|915843|915845|915847|915849|915853|915857|915888|915890|915892|915894|915895|915896|915897|915898|915899|915900|915901|915905|916056|916058|916060|916062|916064|916094|916096|916130|916131|916132|916133|916134|916136|916137|916139|916140|916141|916143|916146|916147|916148|916149|916151|916155|916156|916157|916159|916164|916166|916173|916174|916175|916176|916180|916182|916183|916184|916185|916187|916190|916191|916193|916194|916196|916199|916201|916203|916208|916210|916215|916217|916218|916226|916227|916229|916230|916231|916236|916237|916238|916240|916242|916243|916244|916245|916247|916248|916249|916251|916252|916253|916255|916256|916259|916260|916269|916281|916284|916285|916287|916288|916289|916292|916294|916295|916299|916324|916327|916328|916331|916342|916347|916348|916349|916353|916357|916392|916393|916395|916397|916400|916402|916410|916413|916415|916416|916420|916425|916429|916431|916436|916438|916442|916443|916444|916445|916446|916449|916453|916455|916458|916463|916465|916467|916497|916501|916505|916510|916512|916518|916523|916524|916528|916531|916535|916539|916540|916541|916542|916543|916545|916547|916549|916552|916556|916558|916564|916591|916595|916596|916597|916603|916604|916605|916609|916619|916621|916624|916625|916626|916628|916629|916630|916631|916633|916634|916679|916680|916682|916756|916757|916758|916759|916760|916761|916762|916763|916779|917110|917574|921505|964259|973033|980831", "text": "Cardiomyopathy" }, { - "baseId": "15312", + "upstreamId": "15312", "text": "Classic Hodgkin lymphoma" }, { - "baseId": "15313|15314|15315", + "upstreamId": "15313|15314|15315", "text": "Alpha-2-plasmin inhibitor deficiency" }, { - "baseId": "15316|15317|15318|15319|15320|15321|15322|17573|39970|39971|39972|39973|39974|39975|39976|49864|132691|132694|192559|264867|270856|330334|330336|330343|330344|330352|330356|330361|330366|330368|330370|330372|330373|330374|330378|330380|330387|340560|340561|340568|340570|340574|340584|340589|340591|340594|340596|346262|346263|346264|346270|346271|346274|346278|346285|346289|346294|347587|347588|347594|347597|347598|347601|347605|347606|347615|347616|347619|347622|347625|347626|347629|347631|347633|347634|347635|360238|376729|465131|513647|529227|529502|529523|539076|567707|569572|573744|620611|643961|643962|643963|643964|703528|703529|703530|714761|714762|714763|714764|714765|714766|714767|715764|715765|726464|726465|726466|726468|727487|739997|741095|756192|771887|785158|785776|788013|797266|797611|843207|843208|843209|843210|843211|843212|878689|878690|878691|878692|878693|878694|878695|878696|878697|878698|878699|878700|878701|878702|878703|878704|878705|878706|878707|878708|878709|878710|878711|878712|878713|878714|878715|878716|878717|878718|878719|880611|927580|937252|937253|949210|949211|960137", + "upstreamId": "15316|15317|15318|15319|15320|15321|15322|17573|39970|39971|39972|39973|39974|39975|39976|49864|132691|132694|192559|264867|270856|330334|330336|330343|330344|330352|330356|330361|330366|330368|330370|330372|330373|330374|330378|330380|330387|340560|340561|340568|340570|340574|340584|340589|340591|340594|340596|346262|346263|346264|346270|346271|346274|346278|346285|346289|346294|347587|347588|347594|347597|347598|347601|347605|347606|347615|347616|347619|347622|347625|347626|347629|347631|347633|347634|347635|360238|376729|465131|513647|529227|529502|529523|539076|567707|569572|573744|620611|643961|643962|643963|643964|703528|703529|703530|714761|714762|714763|714764|714765|714766|714767|715764|715765|726464|726465|726466|726468|727487|739997|741095|756192|771887|785158|785776|788013|797266|797611|843207|843208|843209|843210|843211|843212|878689|878690|878691|878692|878693|878694|878695|878696|878697|878698|878699|878700|878701|878702|878703|878704|878705|878706|878707|878708|878709|878710|878711|878712|878713|878714|878715|878716|878717|878718|878719|880611|927580|937252|937253|949210|949211|960137", "text": "Desbuquois dysplasia 1" }, { - "baseId": "15323|15324|15325|15331|15340|15343|15344|15345|15346|15357|106145|106207", + "upstreamId": "15323|15324|15325|15331|15340|15343|15344|15345|15346|15357|106145|106207", "text": "von Willebrand disease, type 2a" }, { - "baseId": "15323|15324|15327|15328|15329|15334|15335|15337|15342|15347|15349|15353|39966|106065|106073|106083|106101|106123|106133|106134|106141|106146|106156|106165|106171|106182|106184|106187|106196|106200|106203|106204|106206|106207|106210|106214|106215|106221|106240|106246|106249|106268|106295|106297|106300|106313|106316|106320|106326|106337|106344|106346|106363|106364|192818|193826|195905|237320|254650|254651|254653|254654|254656|254657|254658|254659|254660|254661|254663|254664|254668|254669|254670|254671|254672|254673|254675|254678|254679|254680|254681|254682|254683|254684|254685|254688|254689|254691|254692|254693|254694|254695|254696|254697|254698|254700|254702|254703|266166|318184|318189|318191|318192|318199|318201|318204|318206|318208|318210|318213|318216|318218|326196|326200|326201|326202|326203|326204|326207|326223|326224|326225|332362|332367|332374|332389|332394|332400|332402|332410|332415|332417|332422|332423|332424|332434|332437|332441|332442|332448|332451|332456|332457|334011|334012|334018|334024|334026|334028|334030|334034|334036|334042|334043|334048|334055|334057|334058|334059|334061|334071|334078|334080|360133|373235|404808|432749|497420|551722|611314|615459|615460|615461|615462|615465|615466|615467|615468|615471|615472|615475|615477|615478|615480|615481|615482|615483|615484|615485|615486|615487|615488|615491|615494|615495|615501|615502|615503|615504|615505|615507|615509|615510|615511|615512|615513|615514|615515|615516|615517|615518|615519|615734|615736|615737|615738|615869|615870|615871|620449|620450|620451|620452|620453|789690|872158|872160|872161|872162|872163|872164|872165|872166", + "upstreamId": "15323|15324|15327|15328|15329|15334|15335|15337|15342|15347|15349|15353|39966|106065|106073|106083|106101|106123|106133|106134|106141|106146|106156|106165|106171|106182|106184|106187|106196|106200|106203|106204|106206|106207|106210|106214|106215|106221|106240|106246|106249|106268|106295|106297|106300|106313|106316|106320|106326|106337|106344|106346|106363|106364|192818|193826|195905|237320|254650|254651|254653|254654|254656|254657|254658|254659|254660|254661|254663|254664|254668|254669|254670|254671|254672|254673|254675|254678|254679|254680|254681|254682|254683|254684|254685|254688|254689|254691|254692|254693|254694|254695|254696|254697|254698|254700|254702|254703|266166|318184|318189|318191|318192|318199|318201|318204|318206|318208|318210|318213|318216|318218|326196|326200|326201|326202|326203|326204|326207|326223|326224|326225|332362|332367|332374|332389|332394|332400|332402|332410|332415|332417|332422|332423|332424|332434|332437|332441|332442|332448|332451|332456|332457|334011|334012|334018|334024|334026|334028|334030|334034|334036|334042|334043|334048|334055|334057|334058|334059|334061|334071|334078|334080|360133|373235|404808|432749|497420|551722|611314|615459|615460|615461|615462|615465|615466|615467|615468|615471|615472|615475|615477|615478|615480|615481|615482|615483|615484|615485|615486|615487|615488|615491|615494|615495|615501|615502|615503|615504|615505|615507|615509|615510|615511|615512|615513|615514|615515|615516|615517|615518|615519|615734|615736|615737|615738|615869|615870|615871|620449|620450|620451|620452|620453|789690|872158|872160|872161|872162|872163|872164|872165|872166", "text": "von Willebrand disorder" }, { - "baseId": "15326|15327|15328|15329|15330|15341|15353", + "upstreamId": "15326|15327|15328|15329|15330|15341|15353", "text": "von Willebrand disease, type 2b" }, { - "baseId": "15327|15329|15335|15335|15349|15353|39966|39967|39969|106073|106207|106327|106364|373235|404808|615480|615489|615490|615493|615496|615497|615498|920305|920306", + "upstreamId": "15327|15329|15335|15335|15349|15353|39966|39967|39969|106073|106207|106327|106364|373235|404808|615480|615489|615490|615493|615496|615497|615498|920305|920306", "text": "von Willebrand disease type 2" }, { - "baseId": "15327|15332|15335|25284|25305|106100|106151|106152|106237|106299|213664|360133|446595|611369|615464|615474|615476|615479|615492|615500|615529|615532|615534|615664|615666|615671|615675|615678|615680|615760|615761|615763", + "upstreamId": "15327|15332|15335|25284|25305|106100|106151|106152|106237|106299|213664|360133|446595|611369|615464|615474|615476|615479|615492|615500|615529|615532|615534|615664|615666|615671|615675|615678|615680|615760|615761|615763", "text": "Abnormality of coagulation" }, { - "baseId": "15332", + "upstreamId": "15332", "text": "VON WILLEBRAND FACTOR POLYMORPHISM" }, { - "baseId": "15332|15335|15335|15336|15337|15347|15348|39965|39968|106073|106207|106327|106364|373235|404808|615476|615499|615506|615731|788870|816014|818299|969566|977260", + "upstreamId": "15332|15335|15335|15336|15337|15347|15348|39965|39968|106073|106207|106327|106364|373235|404808|615476|615499|615506|615731|788870|816014|818299|969566|977260", "text": "von Willebrand disease type 1" }, { - "baseId": "15333|15334|15335|15351|15352|15355|15356", + "upstreamId": "15333|15334|15335|15351|15352|15355|15356", "text": "von Willebrand disease type 2N" }, { - "baseId": "15333|15335|15342|19329|19366|26930|27100|27115|28365|29111|29113|31443|33062|87115|99670|106097|106102|106207|106344|138576|171096|171155|186682|186683|186693|195055|206772|209505|209967|210003|227440|227441|268076|272704|277248|281392|286637|290794|290831|304919|333314|334918|344553|350743|360133|361018|361019|411535|445070|459194|496315|496315|538367|538367|543462|552368|615274|615338|615369|615374|615378|615391|615393|615451|615508|615526|615534|615535|615557|615565|615584|615590|615603|615609|615610|615610|615611|615612|615613|615614|615635|615639|615689|615746|615849|615850|615861|615867|621059|684682|701301|709203|718365|795237|795388|796175|797556|848160|860660|870793|882731|889173|889189|904690|958947|976735|976736|976737|976738|976739|976740|976741|976742|976743|976744|976745|976746|976747|976748|976749|976750|976751|976752|976753|976754|976755|976756|976757|976758|976759|976760|976761|976762|976763|976764|976765|976766|976767|976768|976769|976770|976771|976772|976773|976774|976775|976776|976777|976778|976779|976780|976781|976782|976783|976784|976785|976786|976787|976788|976789|976790|976791|976792|976793|976794|976795|976796|976797|976798|976799|976800|976801|976802|976803|976804|976805|976806|976807|976808|976809|976810|976811", + "upstreamId": "15333|15335|15342|19329|19366|26930|27100|27115|28365|29111|29113|31443|33062|87115|99670|106097|106102|106207|106344|138576|171096|171155|186682|186683|186693|195055|206772|209505|209967|210003|227440|227441|268076|272704|277248|281392|286637|290794|290831|304919|333314|334918|344553|350743|360133|361018|361019|411535|445070|459194|496315|496315|538367|538367|543462|552368|615274|615338|615369|615374|615378|615391|615393|615451|615508|615526|615534|615535|615557|615565|615584|615590|615603|615609|615610|615610|615611|615612|615613|615614|615635|615639|615689|615746|615849|615850|615861|615867|621059|684682|701301|709203|718365|795237|795388|796175|797556|848160|860660|870793|882731|889173|889189|904690|958947|976735|976736|976737|976738|976739|976740|976741|976742|976743|976744|976745|976746|976747|976748|976749|976750|976751|976752|976753|976754|976755|976756|976757|976758|976759|976760|976761|976762|976763|976764|976765|976766|976767|976768|976769|976770|976771|976772|976773|976774|976775|976776|976777|976778|976779|976780|976781|976782|976783|976784|976785|976786|976787|976788|976789|976790|976791|976792|976793|976794|976795|976796|976797|976798|976799|976800|976801|976802|976803|976804|976805|976806|976807|976808|976809|976810|976811", "text": "Abnormal bleeding" }, { - "baseId": "15335|106073|106099|106102|106327|106358|106364|373235|404808|611369|615463|615469|615470|615473|615731|615732|615733|615735|615868|791269|964853", + "upstreamId": "15335|106073|106099|106102|106327|106358|106364|373235|404808|611369|615463|615469|615470|615473|615731|615732|615733|615735|615868|791269|964853", "text": "Von Willebrand disease, recessive form" }, { - "baseId": "15335|19194|19329|19366|25463|26162|26930|28365|28568|29111|29113|29121|29197|31079|31956|33062|39810|59386|59387|87115|99670|106102|106344|133499|138563|138576|139302|166055|171096|171155|171928|171929|171930|188069|188069|188070|188070|193571|195055|206772|209505|209967|227440|227441|227504|250588|253731|253742|253743|253744|253745|253748|253749|253751|253752|253753|253755|253758|253759|267766|268076|272704|277248|281392|286637|290794|290831|302629|302639|302677|302692|302700|304919|306034|306062|310140|310163|310166|310168|310169|310173|310175|310181|310182|310188|310190|310191|310193|310197|310210|310716|310720|310790|310795|310979|311014|315193|315228|315253|315270|315283|315284|315293|315295|315297|315299|315301|315306|321249|321267|321292|321303|321306|321770|321798|321916|321927|321931|321932|321943|321944|321954|321957|321964|321970|321971|333314|334918|344553|350743|360133|360836|411535|411535|429062|445070|470586|496315|538367|552368|552368|552369|585411|590073|610162|612061|612066|615338|615346|615419|615422|615423|615432|615433|615434|615435|615436|615437|615438|615439|615455|615456|615457|615458|615550|615552|615553|615554|615559|615560|615562|615564|615570|615591|615592|615597|615598|615599|615600|615602|615610|615616|615618|615619|615626|615627|615628|615631|615634|615635|615635|615636|615638|615640|615641|615642|615644|615645|615647|615648|615660|615714|615716|615721|615853|615863|621059|684682|701301|701302|709203|712315|718365|795237|795388|796175|797556|801073|801087|801117|801118|801119|801128|801171|801204|801205|801206|801207|801208|801209|801210|801211|801226|801252|848160|860660|865801|865802|865803|865804|865805|865806|865807|865808|865809|865810|865811|865812|865813|865814|865815|865816|865817|865818|865819|865820|865821|865822|865823|865824|868470|870793|882731|889173|889189|904690|958947|976735|976736|976737|976738|976739|976740|976741|976742|976743|976744|976745|976746|976747|976748|976749|976750|976751|976752|976753|976754|976755|976756|976757|976758|976759|976760|976761|976762|976763|976764|976765|976766|976767|976768|976769|976770|976771|976772|976773|976774|976775|976776|976777|976778|976779|976780|976781|976782|976783|976784|976785|976786|976787|976788|976789|976790|976791|976792|976793|976794|976795|976796|976797|976798|976799|976800|976801|976802|976803|976804|976805|976806|976807|976808|976809|976810|976811", + "upstreamId": "15335|19194|19329|19366|25463|26162|26930|28365|28568|29111|29113|29121|29197|31079|31956|33062|39810|59386|59387|87115|99670|106102|106344|133499|138563|138576|139302|166055|171096|171155|171928|171929|171930|188069|188069|188070|188070|193571|195055|206772|209505|209967|227440|227441|227504|250588|253731|253742|253743|253744|253745|253748|253749|253751|253752|253753|253755|253758|253759|267766|268076|272704|277248|281392|286637|290794|290831|302629|302639|302677|302692|302700|304919|306034|306062|310140|310163|310166|310168|310169|310173|310175|310181|310182|310188|310190|310191|310193|310197|310210|310716|310720|310790|310795|310979|311014|315193|315228|315253|315270|315283|315284|315293|315295|315297|315299|315301|315306|321249|321267|321292|321303|321306|321770|321798|321916|321927|321931|321932|321943|321944|321954|321957|321964|321970|321971|333314|334918|344553|350743|360133|360836|411535|411535|429062|445070|470586|496315|538367|552368|552368|552369|585411|590073|610162|612061|612066|615338|615346|615419|615422|615423|615432|615433|615434|615435|615436|615437|615438|615439|615455|615456|615457|615458|615550|615552|615553|615554|615559|615560|615562|615564|615570|615591|615592|615597|615598|615599|615600|615602|615610|615616|615618|615619|615626|615627|615628|615631|615634|615635|615635|615636|615638|615640|615641|615642|615644|615645|615647|615648|615660|615714|615716|615721|615853|615863|621059|684682|701301|701302|709203|712315|718365|795237|795388|796175|797556|801073|801087|801117|801118|801119|801128|801171|801204|801205|801206|801207|801208|801209|801210|801211|801226|801252|848160|860660|865801|865802|865803|865804|865805|865806|865807|865808|865809|865810|865811|865812|865813|865814|865815|865816|865817|865818|865819|865820|865821|865822|865823|865824|868470|870793|882731|889173|889189|904690|958947|976735|976736|976737|976738|976739|976740|976741|976742|976743|976744|976745|976746|976747|976748|976749|976750|976751|976752|976753|976754|976755|976756|976757|976758|976759|976760|976761|976762|976763|976764|976765|976766|976767|976768|976769|976770|976771|976772|976773|976774|976775|976776|976777|976778|976779|976780|976781|976782|976783|976784|976785|976786|976787|976788|976789|976790|976791|976792|976793|976794|976795|976796|976797|976798|976799|976800|976801|976802|976803|976804|976805|976806|976807|976808|976809|976810|976811", "text": "Thrombocytopenia" }, { - "baseId": "15336|15337|15338|15342|15354|39965|976584", + "upstreamId": "15336|15337|15338|15342|15354|39965|976584", "text": "von Willebrand disease type 3" }, { - "baseId": "15339|15350|106207|106217|254671", + "upstreamId": "15339|15350|106207|106217|254671", "text": "von Willebrand disease type 2M" }, { - "baseId": "15347", + "upstreamId": "15347", "text": "von Willebrand factor Vicenza" }, { - "baseId": "15347|615738|801067|801135|801136", + "upstreamId": "15347|615738|801067|801135|801136", "text": "Reduced quantity of Von Willebrand factor" }, { - "baseId": "15347|615498|615738|801067|801135|801136", + "upstreamId": "15347|615498|615738|801067|801135|801136", "text": "Reduced von Willebrand factor activity" }, { - "baseId": "15349", + "upstreamId": "15349", "text": "von Willebrand disease, type 1, susceptibility to" }, { - "baseId": "15358|15359|15360|15361|15362|15363|39963|132027|132028|132029|132030|237630|252574|301710|301712|301719|304912|304920|304926|304928|304929|304930|309535|309553|309557|309558|309650|309651|309660|309662|309663|359793|792670|897341|897342|897343|897344|897345|897346|897347|897348|897349|897350|897351|897352|897353|897354|897355|919071", + "upstreamId": "15358|15359|15360|15361|15362|15363|39963|132027|132028|132029|132030|237630|252574|301710|301712|301719|304912|304920|304926|304928|304929|304930|309535|309553|309557|309558|309650|309651|309660|309662|309663|359793|792670|897341|897342|897343|897344|897345|897346|897347|897348|897349|897350|897351|897352|897353|897354|897355|919071", "text": "Exudative vitreoretinopathy 5" }, { - "baseId": "15364|15365|15365|15366|39951|57050|57051|57052|57054|57054|57055|57056|57057|57059|57060|57061|57063|57063|57070|57071|57072|57074|57075|57076|57078|57079|142214|172462|172596|172597|172598|172599|172602|178469|191293|198075|198078|198082|198089|198090|198091|198092|198094|198098|198099|198100|198107|228513|228514|228515|228518|228518|228521|228522|238345|238346|257981|257984|283296|391545|391546|404750|425384|442887|448242|448247|448367|448372|448375|448379|448433|448437|509228|509231|509232|509234|509236|509241|516079|516080|516081|516083|516085|516088|516090|516113|516118|516122|557372|557374|557425|558595|590237|614739|628260|628261|628262|628263|628264|628265|628266|628267|628268|628269|685109|685829|746651|762083|818999|824421|824422|824423|824424|824425|850812|922162|930662|930663|942103|952527|970701", + "upstreamId": "15364|15365|15365|15366|39951|57050|57051|57052|57054|57054|57055|57056|57057|57059|57060|57061|57063|57063|57070|57071|57072|57074|57075|57076|57078|57079|142214|172462|172596|172597|172598|172599|172602|178469|191293|198075|198078|198082|198089|198090|198091|198092|198094|198098|198099|198100|198107|228513|228514|228515|228518|228518|228521|228522|238345|238346|257981|257984|283296|391545|391546|404750|425384|442887|448242|448247|448367|448372|448375|448379|448433|448437|509228|509231|509232|509234|509236|509241|516079|516080|516081|516083|516085|516088|516090|516113|516118|516122|557372|557374|557425|558595|590237|614739|628260|628261|628262|628263|628264|628265|628266|628267|628268|628269|685109|685829|746651|762083|818999|824421|824422|824423|824424|824425|850812|922162|930662|930663|942103|952527|970701", "text": "Dilated cardiomyopathy 1CC" }, { - "baseId": "15365|39950|39951|39951|57050|57051|57051|57052|57054|57055|57056|57057|57059|57060|57061|57063|57070|57071|57072|57074|57075|57076|57078|57079|142214|172462|172596|172597|172598|172599|172602|178469|191293|198075|198078|198082|198089|198090|198091|198092|198094|198098|198099|198100|198107|228513|228514|228515|228518|228521|228522|238345|238346|257981|257984|283296|391545|391546|404750|425384|442887|448242|448247|448367|448372|448375|448379|448433|448437|509228|509231|509232|509234|509236|509241|516079|516080|516081|516083|516085|516088|516090|516113|516118|516122|557372|557374|557425|558595|614739|628260|628261|628262|628263|628264|628265|628266|628267|628268|628269|685109|685829|746651|762083|818999|824421|824422|824423|824424|824425|850812|922162|930662|930663|942103|952527", + "upstreamId": "15365|39950|39951|39951|57050|57051|57051|57052|57054|57055|57056|57057|57059|57060|57061|57063|57070|57071|57072|57074|57075|57076|57078|57079|142214|172462|172596|172597|172598|172599|172602|178469|191293|198075|198078|198082|198089|198090|198091|198092|198094|198098|198099|198100|198107|228513|228514|228515|228518|228521|228522|238345|238346|257981|257984|283296|391545|391546|404750|425384|442887|448242|448247|448367|448372|448375|448379|448433|448437|509228|509231|509232|509234|509236|509241|516079|516080|516081|516083|516085|516088|516090|516113|516118|516122|557372|557374|557425|558595|614739|628260|628261|628262|628263|628264|628265|628266|628267|628268|628269|685109|685829|746651|762083|818999|824421|824422|824423|824424|824425|850812|922162|930662|930663|942103|952527", "text": "Familial hypertrophic cardiomyopathy 20" }, { - "baseId": "15367|15368|15369|15370|34107|34108|140977|199857|244479|271093|296800|296802|296803|296804|296805|296811|296813|296814|298708|298709|298710|298717|298737|298739|298740|298747|302945|302950|302956|302957|303124|303126|303129|303130|368070|368364|369733|454418|454806|454924|454926|455398|455401|455662|508800|520585|520992|521007|521009|521012|521232|521234|521238|521244|521407|521408|521499|521501|521505|521507|521511|560257|560370|563023|563028|563030|563032|563034|633718|633721|633722|633726|633728|655652|691816|893839|893840|893841|893842|893843|893844|893845|893846|893847|893848|893849|893850|893851|893852|893853|893854|893855|893856|893857|896076|903668", + "upstreamId": "15367|15368|15369|15370|34107|34108|140977|199857|244479|271093|296800|296802|296803|296804|296805|296811|296813|296814|298708|298709|298710|298717|298737|298739|298740|298747|302945|302950|302956|302957|303124|303126|303129|303130|368070|368364|369733|454418|454806|454924|454926|455398|455401|455662|508800|520585|520992|521007|521009|521012|521232|521234|521238|521244|521407|521408|521499|521501|521505|521507|521511|560257|560370|563023|563028|563030|563032|563034|633718|633721|633722|633726|633728|655652|691816|893839|893840|893841|893842|893843|893844|893845|893846|893847|893848|893849|893850|893851|893852|893853|893854|893855|893856|893857|896076|903668", "text": "Hereditary sensory and autonomic neuropathy type IIB" }, { - "baseId": "15367|15369|20202|20203|20204|20205|20206|20207|20207|20208|20209|20210|21389|21395|21398|21405|21406|21407|21409|34107|34108|34109|34111|34121|34122|34122|34196|34199|34201|39313|39315|39315|39316|70494|76767|76783|80302|99991|99992|135702|135705|135707|135708|135709|135710|135711|135712|135712|135714|135715|135718|135719|141626|141627|141628|141629|167457|167458|167458|171771|177333|178054|178058|178058|178059|188834|190810|190811|190812|191022|191023|191370|191661|191661|191829|191830|191899|191900|191900|192002|192109|192649|192686|192753|192837|192976|192977|192995|193140|193181|195313|195314|195314|206888|206959|231501|231504|231505|231506|231510|231514|231515|238383|238384|238385|244295|244296|244300|244301|244304|244305|244307|244308|244311|244313|244314|244315|244317|244319|244320|244321|244344|244362|244839|250350|250353|254719|254728|254731|254765|254766|254767|254768|254769|268249|268661|270142|270187|270755|270757|272066|273736|273981|273982|274078|274080|275101|275422|282594|282597|282598|282600|283323|283334|283335|283336|283355|283356|284848|284864|284866|284868|285355|285357|285359|285361|285365|285388|285390|285392|285402|318498|318565|318567|318612|318615|318618|318621|318629|318630|318634|326642|326717|326765|326770|326921|326937|326943|332882|332917|332957|332972|333004|333009|333010|333015|333016|333017|333019|334600|334602|334638|334640|334644|334645|334646|334703|334711|334722|334726|334732|334739|334766|334773|359378|360111|360823|363878|364014|365676|365687|365688|365908|365911|365916|366164|391441|391444|391448|391452|391453|391456|391486|391488|391495|391498|391498|391500|391507|391611|391614|391616|391617|391619|391621|391625|391661|391665|405413|405415|405417|413333|414848|414880|421318|421319|425436|425437|426661|426662|427935|434048|440564|440565|440566|440567|440569|440688|440692|442555|443042|443044|443045|443046|443214|445090|448472|448550|448865|448866|448870|448874|448876|448878|448879|448880|448882|448889|448890|448897|448902|448903|448913|448922|448927|448938|448951|448952|448953|448955|448957|449038|449055|449057|449059|449063|449072|449080|449089|449091|449093|449095|449097|449099|449101|449104|449105|449110|449117|449146|449148|449149|449153|449154|449159|449160|449161|449162|449164|449166|449168|449169|449172|449175|449178|449180|449181|449183|449184|449185|449187|449189|449191|449196|449197|449198|449199|449203|449204|449209|449210|449211|449218|449222|449228|449231|449233|449235|449244|449260|449261|449265|449268|450626|450900|462466|462468|462497|462501|462521|462526|462527|462532|462534|462536|462727|462761|462773|462775|462782|462783|462786|462792|462794|463211|463212|463234|463252|463269|463270|463272|463277|463278|463281|463282|463285|463288|463333|463340|463342|463346|463370|463380|463387|463392|463394|463397|463400|463405|489508|490283|490953|491926|492995|493532|496215|498890|498981|505053|511356|516611|516616|516618|516631|516635|516636|516650|516656|516657|516658|516659|516661|516669|516670|516671|516672|516675|516676|516677|516678|516679|516682|516684|516685|516686|516687|516688|516690|516691|516693|516694|516695|516698|516701|516702|516703|516704|516705|516707|516710|516714|516716|516719|516721|516722|516725|516735|516739|516747|516752|516753|516755|516760|516762|516769|516771|516790|516796|516804|516807|516808|516813|518076|518112|527206|527340|527343|527351|527360|527365|527366|527381|527382|527384|527387|527390|527398|527402|527404|527411|527412|527413|527414|527417|527420|527422|527424|527426|527652|527658|527661|527663|527665|527667|527668|527676|527679|527684|527698|527703|527884|527898|527913|527915|527945|527946|527954|536616|557650|557652|557658|557660|557662|557664|557666|557668|557670|557672|557674|557676|557678|557680|557682|557684|557686|557688|557690|557693|557695|557697|557699|557701|557703|557705|557707|557709|557711|557713|557715|557717|557719|557721|557723|558867|558869|558871|558873|558875|558877|558879|558881|558883|558885|558887|558889|558891|558893|558895|558897|558899|558901|558903|558905|559352|559354|559356|559358|559360|559362|559364|559366|559368|559370|559372|559374|559376|559378|559380|559382|559384|559386|559388|559390|565030|565725|565733|565736|565741|565750|565751|565763|565766|565768|565769|565771|566292|567060|567061|567069|567074|567087|567091|568173|568178|568181|568190|568191|568195|568196|568201|568202|572074|572075|572084|572103|572104|572120|572126|572132|572134|572139|572142|572145|576587|578504|578505|582661|588407|608919|612573|612964|620852|622316|622836|624877|625099|625281|628887|628888|628889|628890|628891|628892|628893|628894|628895|628896|628897|628898|628899|628900|628901|628902|628903|628904|628905|628906|628907|628908|628909|628910|628911|628912|628913|628914|628915|628916|628917|628918|628919|628920|628921|628922|628923|628924|628925|628926|628927|628928|628929|628930|628931|628932|628933|628934|628935|628936|628937|628938|628939|628940|628941|628942|628943|628944|628945|628946|628947|628948|628949|628950|628951|628952|628953|628954|628955|628956|628957|628958|628959|628960|628961|628962|628963|628964|628965|628966|628967|628968|628969|628970|628971|628972|628973|628974|628975|641386|641387|641388|641398|641403|641404|641405|641406|641407|641408|641409|641410|641411|641412|641413|641436|641437|641438|641447|641448|641449|641459|641460|641462|641463|641465|641466|641467|641470|641471|641474|641475|641477|641478|641479|641481|641482|641488|641489|641490|641491|641492|641493|641494|641495|641496|641497|641498|641499|641500|641501|641502|641503|650863|650871|650897|652502|652739|655175|683416|683418|685116|685904|685906|685907|685909|685910|685912|685914|685915|685916|685917|688056|689676|689677|690876|690879|690880|690881|690882|693283|693284|693285|693291|693292|693300|693305|693308|693309|702530|702540|702541|719371|725312|732887|746896|746898|753644|762367|762370|762371|762376|769338|769342|769356|774631|780932|780933|780934|787106|790124|790125|792591|794848|794851|799730|820519|820522|820523|820525|825102|825103|825104|825105|825106|825107|825108|825109|825110|825111|825112|825113|825114|825115|825116|825117|825118|825119|825120|825121|825122|825123|825124|825125|825126|825127|825128|825129|825130|825131|825132|825133|825134|825135|825136|825137|825138|825139|825140|825141|825142|825143|825144|825145|825146|825147|825148|825149|825150|825151|825152|825153|825154|825155|825156|825157|825158|825159|825160|825161|825162|825163|825164|825165|825166|825167|825168|825169|825170|825171|825172|825173|825174|825175|825176|825177|825178|825179|825180|825181|825182|825183|825184|825185|825186|825187|825188|825189|825190|825191|825192|840270|840271|840272|840273|840274|840275|840276|840301|840307|840308|840309|840310|840311|840312|840313|840314|840315|840316|840317|840318|840319|840320|840321|840322|840323|840324|840325|840326|840327|840328|840329|840330|840331|840332|840333|840334|840335|840336|840337|840338|840339|840340|840341|840401|840402|840407|840408|840413|840414|840415|840417|840418|840423|840424|840425|840427|840428|840429|840435|840436|840437|840444|840445|840446|840447|840448|840449|840450|840451|840452|840453|850805|850850|851352|851354|870452|881391|881399|918691|918691|918692|918693|918760|918761|918762|918763|919473|920173|920174|922375|922376|922377|922378|922379|922380|922381|922382|922383|922384|922385|922386|922387|922388|922389|922390|922391|922392|922393|922394|922395|922396|922397|922398|922399|922400|922401|926731|926732|926733|926734|926735|926739|926742|926743|926744|926745|926746|926747|926748|926749|926750|926751|926766|926768|926772|926773|926776|926777|926780|926781|926782|926783|926784|930943|930944|930945|930946|930947|930948|930949|930950|930951|930952|930953|930954|930955|930956|930957|930958|930959|930960|930961|930962|930963|930964|930965|930966|930967|930968|936262|936263|936264|936275|936277|936278|936279|936280|936281|936282|936283|936305|936306|936308|936310|936313|936314|936315|941041|941042|942366|942367|942368|942369|942370|942371|942372|942373|942374|942375|942376|942377|942378|942379|942380|942381|942382|942383|942384|942385|942386|942387|942388|942389|942390|942391|942392|942393|942394|942395|942396|948159|948169|948172|948173|948174|948175|948176|948177|948178|948227|948228|948235|948236|952765|952766|952767|952768|952769|952770|952771|952772|952773|952774|952775|952776|952777|952778|952779|952780|956940|956941|956955|956956|956957|956958|956959|956960|956992|956995|957001|959592|959593|959594|959595|960059|960060|960453|961475|961476|961477|961478|961479|961480|961481|961482|961483|961484|961485|961486|961487|961488|961489", + "upstreamId": "15367|15369|20202|20203|20204|20205|20206|20207|20207|20208|20209|20210|21389|21395|21398|21405|21406|21407|21409|34107|34108|34109|34111|34121|34122|34122|34196|34199|34201|39313|39315|39315|39316|70494|76767|76783|80302|99991|99992|135702|135705|135707|135708|135709|135710|135711|135712|135712|135714|135715|135718|135719|141626|141627|141628|141629|167457|167458|167458|171771|177333|178054|178058|178058|178059|188834|190810|190811|190812|191022|191023|191370|191661|191661|191829|191830|191899|191900|191900|192002|192109|192649|192686|192753|192837|192976|192977|192995|193140|193181|195313|195314|195314|206888|206959|231501|231504|231505|231506|231510|231514|231515|238383|238384|238385|244295|244296|244300|244301|244304|244305|244307|244308|244311|244313|244314|244315|244317|244319|244320|244321|244344|244362|244839|250350|250353|254719|254728|254731|254765|254766|254767|254768|254769|268249|268661|270142|270187|270755|270757|272066|273736|273981|273982|274078|274080|275101|275422|282594|282597|282598|282600|283323|283334|283335|283336|283355|283356|284848|284864|284866|284868|285355|285357|285359|285361|285365|285388|285390|285392|285402|318498|318565|318567|318612|318615|318618|318621|318629|318630|318634|326642|326717|326765|326770|326921|326937|326943|332882|332917|332957|332972|333004|333009|333010|333015|333016|333017|333019|334600|334602|334638|334640|334644|334645|334646|334703|334711|334722|334726|334732|334739|334766|334773|359378|360111|360823|363878|364014|365676|365687|365688|365908|365911|365916|366164|391441|391444|391448|391452|391453|391456|391486|391488|391495|391498|391498|391500|391507|391611|391614|391616|391617|391619|391621|391625|391661|391665|405413|405415|405417|413333|414848|414880|421318|421319|425436|425437|426661|426662|427935|434048|440564|440565|440566|440567|440569|440688|440692|442555|443042|443044|443045|443046|443214|445090|448472|448550|448865|448866|448870|448874|448876|448878|448879|448880|448882|448889|448890|448897|448902|448903|448913|448922|448927|448938|448951|448952|448953|448955|448957|449038|449055|449057|449059|449063|449072|449080|449089|449091|449093|449095|449097|449099|449101|449104|449105|449110|449117|449146|449148|449149|449153|449154|449159|449160|449161|449162|449164|449166|449168|449169|449172|449175|449178|449180|449181|449183|449184|449185|449187|449189|449191|449196|449197|449198|449199|449203|449204|449209|449210|449211|449218|449222|449228|449231|449233|449235|449244|449260|449261|449265|449268|450626|450900|462466|462468|462497|462501|462521|462526|462527|462532|462534|462536|462727|462761|462773|462775|462782|462783|462786|462792|462794|463211|463212|463234|463252|463269|463270|463272|463277|463278|463281|463282|463285|463288|463333|463340|463342|463346|463370|463380|463387|463392|463394|463397|463400|463405|489508|490283|490953|491926|492995|493532|496215|498890|498981|505053|511356|516611|516616|516618|516631|516635|516636|516650|516656|516657|516658|516659|516661|516669|516670|516671|516672|516675|516676|516677|516678|516679|516682|516684|516685|516686|516687|516688|516690|516691|516693|516694|516695|516698|516701|516702|516703|516704|516705|516707|516710|516714|516716|516719|516721|516722|516725|516735|516739|516747|516752|516753|516755|516760|516762|516769|516771|516790|516796|516804|516807|516808|516813|518076|518112|527206|527340|527343|527351|527360|527365|527366|527381|527382|527384|527387|527390|527398|527402|527404|527411|527412|527413|527414|527417|527420|527422|527424|527426|527652|527658|527661|527663|527665|527667|527668|527676|527679|527684|527698|527703|527884|527898|527913|527915|527945|527946|527954|536616|557650|557652|557658|557660|557662|557664|557666|557668|557670|557672|557674|557676|557678|557680|557682|557684|557686|557688|557690|557693|557695|557697|557699|557701|557703|557705|557707|557709|557711|557713|557715|557717|557719|557721|557723|558867|558869|558871|558873|558875|558877|558879|558881|558883|558885|558887|558889|558891|558893|558895|558897|558899|558901|558903|558905|559352|559354|559356|559358|559360|559362|559364|559366|559368|559370|559372|559374|559376|559378|559380|559382|559384|559386|559388|559390|565030|565725|565733|565736|565741|565750|565751|565763|565766|565768|565769|565771|566292|567060|567061|567069|567074|567087|567091|568173|568178|568181|568190|568191|568195|568196|568201|568202|572074|572075|572084|572103|572104|572120|572126|572132|572134|572139|572142|572145|576587|578504|578505|582661|588407|608919|612573|612964|620852|622316|622836|624877|625099|625281|628887|628888|628889|628890|628891|628892|628893|628894|628895|628896|628897|628898|628899|628900|628901|628902|628903|628904|628905|628906|628907|628908|628909|628910|628911|628912|628913|628914|628915|628916|628917|628918|628919|628920|628921|628922|628923|628924|628925|628926|628927|628928|628929|628930|628931|628932|628933|628934|628935|628936|628937|628938|628939|628940|628941|628942|628943|628944|628945|628946|628947|628948|628949|628950|628951|628952|628953|628954|628955|628956|628957|628958|628959|628960|628961|628962|628963|628964|628965|628966|628967|628968|628969|628970|628971|628972|628973|628974|628975|641386|641387|641388|641398|641403|641404|641405|641406|641407|641408|641409|641410|641411|641412|641413|641436|641437|641438|641447|641448|641449|641459|641460|641462|641463|641465|641466|641467|641470|641471|641474|641475|641477|641478|641479|641481|641482|641488|641489|641490|641491|641492|641493|641494|641495|641496|641497|641498|641499|641500|641501|641502|641503|650863|650871|650897|652502|652739|655175|683416|683418|685116|685904|685906|685907|685909|685910|685912|685914|685915|685916|685917|688056|689676|689677|690876|690879|690880|690881|690882|693283|693284|693285|693291|693292|693300|693305|693308|693309|702530|702540|702541|719371|725312|732887|746896|746898|753644|762367|762370|762371|762376|769338|769342|769356|774631|780932|780933|780934|787106|790124|790125|792591|794848|794851|799730|820519|820522|820523|820525|825102|825103|825104|825105|825106|825107|825108|825109|825110|825111|825112|825113|825114|825115|825116|825117|825118|825119|825120|825121|825122|825123|825124|825125|825126|825127|825128|825129|825130|825131|825132|825133|825134|825135|825136|825137|825138|825139|825140|825141|825142|825143|825144|825145|825146|825147|825148|825149|825150|825151|825152|825153|825154|825155|825156|825157|825158|825159|825160|825161|825162|825163|825164|825165|825166|825167|825168|825169|825170|825171|825172|825173|825174|825175|825176|825177|825178|825179|825180|825181|825182|825183|825184|825185|825186|825187|825188|825189|825190|825191|825192|840270|840271|840272|840273|840274|840275|840276|840301|840307|840308|840309|840310|840311|840312|840313|840314|840315|840316|840317|840318|840319|840320|840321|840322|840323|840324|840325|840326|840327|840328|840329|840330|840331|840332|840333|840334|840335|840336|840337|840338|840339|840340|840341|840401|840402|840407|840408|840413|840414|840415|840417|840418|840423|840424|840425|840427|840428|840429|840435|840436|840437|840444|840445|840446|840447|840448|840449|840450|840451|840452|840453|850805|850850|851352|851354|870452|881391|881399|918691|918691|918692|918693|918760|918761|918762|918763|919473|920173|920174|922375|922376|922377|922378|922379|922380|922381|922382|922383|922384|922385|922386|922387|922388|922389|922390|922391|922392|922393|922394|922395|922396|922397|922398|922399|922400|922401|926731|926732|926733|926734|926735|926739|926742|926743|926744|926745|926746|926747|926748|926749|926750|926751|926766|926768|926772|926773|926776|926777|926780|926781|926782|926783|926784|930943|930944|930945|930946|930947|930948|930949|930950|930951|930952|930953|930954|930955|930956|930957|930958|930959|930960|930961|930962|930963|930964|930965|930966|930967|930968|936262|936263|936264|936275|936277|936278|936279|936280|936281|936282|936283|936305|936306|936308|936310|936313|936314|936315|941041|941042|942366|942367|942368|942369|942370|942371|942372|942373|942374|942375|942376|942377|942378|942379|942380|942381|942382|942383|942384|942385|942386|942387|942388|942389|942390|942391|942392|942393|942394|942395|942396|948159|948169|948172|948173|948174|948175|948176|948177|948178|948227|948228|948235|948236|952765|952766|952767|952768|952769|952770|952771|952772|952773|952774|952775|952776|952777|952778|952779|952780|956940|956941|956955|956956|956957|956958|956959|956960|956992|956995|957001|959592|959593|959594|959595|960059|960060|960453|961475|961476|961477|961478|961479|961480|961481|961482|961483|961484|961485|961486|961487|961488|961489", "text": "Hereditary sensory and autonomic neuropathy type IIA" }, { - "baseId": "15367|15369|16052|16054|16056|16363|16761|16763|17307|17308|17310|17311|17314|17315|17317|17318|17319|17320|17321|17519|17521|17522|17524|17656|17657|17658|17951|19232|19237|19239|19241|19697|19699|19826|19830|19831|19839|19840|19841|19842|20032|20038|20039|20040|20041|20042|20160|20340|20369|20370|20371|21020|21096|21100|21124|21125|21126|21227|21228|22316|22319|22322|22323|22384|22385|22386|22387|22450|22517|22519|22523|23443|23470|23474|23476|23480|23482|23483|23505|24153|24243|24244|24245|24247|24686|25472|25480|25483|25485|25489|26833|26834|27350|28456|28460|28461|28465|28466|28473|28479|28491|28493|28497|29205|29206|29213|29215|29216|29218|29219|29220|29222|29223|29224|29227|29237|29239|29526|29527|29528|29537|29538|29542|29558|29559|29566|31791|33931|33932|33933|33934|33935|33936|33937|33938|34109|34111|34540|34541|34542|34543|34544|34547|34549|34550|34553|38401|38402|38425|38637|38984|39114|39397|39429|39430|39536|39691|39692|39695|39817|44263|45136|45139|45141|45142|45552|45553|46970|47002|47004|47011|47012|48094|49429|49430|49431|49438|49439|49441|49442|49444|49446|49447|49448|49449|49450|49653|49654|49655|49660|49853|52622|52623|52625|57199|57201|57207|57208|57212|57218|57219|57226|57235|57240|57242|57250|57252|57256|59596|77508|77568|77570|77573|77581|77583|77584|77585|77589|77591|77592|77593|77699|77753|77759|77772|77845|77856|77862|79355|83910|131993|132007|132008|134370|134371|134374|134375|134376|134377|134378|134379|134380|134382|134383|134384|134385|134386|134387|134388|134389|134390|134391|134845|134846|134847|135065|135494|135495|135496|135497|135498|135499|135743|135744|135745|135746|135747|135748|140023|140025|140026|140027|140028|140821|140822|140885|141071|141072|141077|141078|141079|141080|141142|141143|141144|141145|141146|141147|141271|141425|141426|141427|141428|141429|141551|141902|141903|141904|141913|141914|141915|141916|141918|141919|141920|141921|141922|141923|141974|141975|142136|142137|142213|142520|142566|142666|142667|142668|142669|142804|142805|143024|143025|165481|165482|165483|165484|165488|165491|165492|165494|165496|165499|165500|165503|165504|165506|165507|165509|165817|165820|165834|167382|167383|167384|167385|167388|167389|167390|167391|167392|167393|167394|167395|167396|167397|167398|167399|167400|167401|167459|171049|171812|171902|171903|171904|172343|172465|172488|172490|176680|179802|179808|179812|179813|181182|181183|185749|185951|185952|186051|186052|186053|186076|186089|186163|186164|186290|186291|187891|187892|187893|187938|189383|190114|190380|191088|191093|191094|191254|191366|191367|191443|191530|191531|191532|191533|191572|191601|191657|191658|192151|192323|192529|192545|192546|192674|192971|193949|194297|194535|194619|195304|195306|195407|195513|195938|196028|196270|196292|196468|196471|198602|199857|200697|200698|200699|200700|200701|204407|204408|204409|204476|204477|204478|205258|205754|208055|208056|208057|208058|208060|208062|208063|208065|208077|208080|208083|210581|210582|210584|210587|210588|210589|210591|210594|210597|210598|210603|210605|211999|212066|212067|212068|212070|212071|212075|212505|212506|212510|212511|212513|212614|212631|212633|212797|212975|212977|212980|212981|212982|212983|212984|212985|213147|213148|213241|213453|213454|213456|213459|213461|213462|213464|213498|213500|213501|213502|213504|213582|213789|213792|213795|213813|213814|213836|213890|213892|214089|214516|214517|214533|215003|215004|215437|221072|221073|221074|221077|221079|221083|221606|221607|221608|221609|221611|221612|221613|221615|221616|221621|221697|221699|221739|221755|221768|221981|222194|222196|222197|222198|222199|222200|222201|222357|222442|222443|222444|222445|222559|222808|222809|222815|222816|222817|222818|226815|226827|228278|228279|230871|231639|231643|231645|231715|231806|231807|231811|231812|231813|231814|231824|232156|232162|237047|237453|238110|238113|238114|238115|238116|238117|238157|239774|239775|239776|239779|240172|240173|240443|240445|241218|241223|241225|241227|241228|241231|241233|241234|241236|241764|241772|241774|241775|241776|243335|243338|243339|243340|243342|243822|244171|244187|244188|244192|244195|244196|244198|244220|244224|244249|244251|244253|244254|244256|244462|244464|244470|244472|244473|244504|244506|244510|244513|244521|244523|244526|244539|244569|244671|244678|244684|244690|244695|244696|244704|244717|244731|244819|244858|244939|244986|244993|244994|245001|245123|245125|245126|245129|245130|245131|245135|245139|245141|245178|245179|245180|245181|245182|245183|245184|245188|245189|247463|248765|249211|249214|249266|249267|249268|252049|252050|252051|252053|252054|252055|252056|252057|252786|252788|252789|252790|252793|252795|252932|252934|253060|253176|253796|254287|254288|254289|254290|254291|254292|254293|254294|254295|254296|254298|254300|254301|254302|254303|254304|254306|254308|254309|254310|254369|254370|254371|254399|254402|254403|254404|254405|254879|254880|264285|265353|266620|267186|267635|267827|268251|268456|268457|268601|268886|268889|269524|270495|271257|271447|271540|271542|271543|272216|272799|273691|274897|275620|275649|275671|275703|275733|275737|275742|275746|275750|275754|275757|275758|275799|275809|275900|276220|276610|276884|276943|276953|276954|278027|292511|296204|296233|298029|298731|301214|301988|302040|302063|302065|302074|302288|302289|302308|302796|303724|304405|305570|305571|305587|306131|306135|306149|306822|306829|306833|308910|308911|310604|310904|310905|310994|310996|311081|311087|311679|311681|312023|313229|313233|313237|313591|315010|315544|315550|315557|315559|315573|315606|315609|315625|315627|315647|315650|315984|315989|316589|316590|316601|316602|316611|316612|316822|316833|316842|319383|319967|319975|320125|320127|320133|320136|320152|320175|320180|321790|321791|321792|321807|321857|322452|322493|323240|323242|323248|323734|324393|326195|327853|327868|327874|328677|328679|328697|328724|328725|328728|328729|328743|328933|328938|328961|328978|328983|328985|329271|329275|329281|329895|329916|330287|330448|330495|330497|330499|331861|333547|333552|333554|333557|333558|334076|334077|334099|335332|335876|337142|337184|337211|337222|337249|337279|338837|340468|341848|343380|343605|343607|343613|343619|343812|343825|348459|348903|348907|348939|348944|348945|349263|349849|349859|349862|349866|349869|349874|352059|352940|352942|353954|358288|359204|359759|360628|360934|361105|361545|361552|363899|364342|364346|364400|364425|364426|364449|364522|364527|366203|366375|367013|368003|368200|368281|368286|368451|368638|369141|369375|369578|369611|369648|369651|369713|369716|369722|370463|370961|371096|371359|371569|371673|371765|371768|371932|371968|372108|372411|372487|372633|372636|372637|372643|372647|372650|372840|372884|372893|372921|372927|373173|373177|373201|373407|373409|373596|373630|373640|373642|373913|373972|373995|374283|374285|374297|374398|374401|374431|374472|374513|374528|374529|375357|375365|375382|375755|375775|375792|375808|375809|375821|375832|375891|376502|376509|377486|377643|378125|379575|379576|379613|390736|390740|390751|390819|390836|390842|390844|390849|390858|394833|394898|395077|395089|395094|395346|395428|395634|395915|396265|396279|396414|396551|396675|396688|396813|397323|397504|397732|398806|398933|398938|398949|398958|401091|401543|401813|402264|402722|403294|403327|403348|403719|403846|404289|404290|404895|404896|404898|404958|404971|406787|407128|407876|408497|408501|408513|408629|408630|409060|410607|410608|411470|411472|413321|414993|415301|415739|421186|421892|422104|422510|422511|425764|425817|425942|426010|426202|426718|426719|429340|429523|429527|429644|433504|433634|433691|433692|433993|433994|438108|438450|438507|440348|440350|440355|440400|440403|440406|440868|440870|440871|440877|440904|440905|441080|441144|441146|441171|441503|441941|442226|442441|442442|442443|442444|442447|442449|442450|442452|442454|442609|442657|442659|443710|444306|444528|444531|444910|445059|446751|446958|446998|447073|447159|447174|447257|447368|447429|447442|450538|450735|452185|452187|452342|452516|454724|454731|454741|454808|455148|455259|455264|455273|455294|455592|455779|456013|456923|457158|457448|457766|457812|457969|457987|458215|458238|458365|458542|458664|459011|459045|459680|461551|461617|461635|461740|461948|462063|462105|462180|462282|462375|462381|462385|462387|462391|462409|462894|462995|463003|463119|463131|463237|463250|463420|463482|463784|466970|467288|468804|469817|469829|469844|470221|470223|470244|470418|470422|470425|470455|470867|470874|470883|470912|470975|470989|470998|471000|471001|471721|472198|482001|486086|490562|492021|492543|495216|495847|498010|501059|501212|501755|502083|502296|502365|502368|502453|502965|502997|503339|503427|503764|503874|504071|504324|504355|504408|504490|504527|504562|504563|504611|504845|504857|504900|504903|505288|505314|506949|506956|508858|509114|509119|511160|511955|511961|512742|512743|514037|514518|514869|514902|514908|514920|515030|515078|515092|515140|515150|515228|515242|515261|515330|515335|517843|518777|518922|519312|520898|521264|521296|521380|521921|522820|522828|523269|523283|523291|523509|523981|523991|524209|524304|524535|524561|524680|524687|525615|526465|526597|526599|526642|526653|526669|527026|527112|527192|527218|527308|527314|527316|527321|527840|527872|527903|528346|530513|532993|533014|533019|533028|533078|533093|533103|533108|533131|533134|533481|533483|533660|533665|533687|534929|534951|534954|535067|535069|535125|535192|535194|535195|537077|537147|537474|539959|540438|552154|556578|556582|556615|556660|556664|556721|556903|556905|556909|558090|558092|558098|560193|560205|560316|560322|560328|560330|560946|561068|562170|562710|562884|563073|563305|564659|564664|564975|565041|565215|565767|566239|566353|566799|567510|567603|568288|570412|570791|570862|570922|570936|571244|572572|572574|572616|572748|573114|573116|573989|574306|574883|574885|575446|575643|576405|576434|577606|577807|579833|579843|580097|590307|608961|609158|609184|609686|609702|610055|610575|611494|611955|612699|612702|613532|619948|619958|620192|620269|622355|623317|624120|624882|624883|624884|624885|624886|624887|624888|624889|624890|624891|624892|624893|624894|624895|624896|624897|624898|624899|624900|624901|624902|624903|624904|624905|624906|624907|624908|624909|624910|624911|624912|624913|624914|624915|624916|624917|624918|624919|624920|624921|624922|624923|624924|624925|624926|624927|624928|624929|624930|624931|624932|624933|624934|624935|624936|624937|624938|624939|624940|624941|624942|624943|624944|624945|624946|624947|624948|624949|624950|624951|624952|624953|624954|624955|624956|624957|624958|624959|624960|624961|624962|624963|624964|624965|624966|624967|624968|624969|624970|624971|624972|624973|624974|624975|624976|624977|624978|624979|624980|624981|624982|624983|624984|624985|624986|624987|624989|624990|624991|624992|624993|624994|624995|624996|624997|624998|624999|625002|625003|625004|625005|625006|625007|625008|625009|625010|625011|625012|625013|625015|625016|625017|625018|625019|625020|625021|625022|625023|625024|625025|625027|625028|625029|625030|625031|625032|625033|625034|625035|625036|625037|625038|625041|625042|625043|625044|625045|625046|625047|625048|625049|625050|625051|625052|625053|625054|625055|625056|625058|625059|625060|625061|625062|625063|625064|625065|625066|625067|625068|625069|625070|625071|625072|625074|625075|625076|625077|625078|625079|625080|625081|625082|625083|625084|625085|625086|625087|625089|625090|625091|625092|625093|625095|625096|625097|625098|625099|625101|625102|625103|625104|625105|625106|625107|625108|625109|625110|625111|625112|625113|625114|625115|625116|625117|625118|625119|625120|625121|625122|625123|625124|625125|625126|625127|625128|625129|625130|625131|625132|625133|625134|625135|625136|625137|625138|625140|625141|625142|625145|625146|625147|625148|625149|625150|625151|625152|625153|625154|625156|625157|625158|625159|625160|625161|625162|625163|625164|625165|625166|625167|625168|625169|625170|625171|625172|625173|625174|625175|625176|625177|625178|625179|625180|625181|625182|625183|625184|625185|625186|625187|625188|625189|625190|625191|625192|625193|625195|625196|625197|625201|625202|625203|625204|625210|625225|625232|625236|625243|625255|625258|625260|625261|625262|625263|625264|625265|625266|625267|625268|625269|625270|625271|625272|625273|625274|625275|625276|625277|625278|625279|625280|625281|625282|625283|625284|625285|625294|625295|625296|625297|625298|625299|625300|625301|625302|625303|625304|625305|625306|625307|625308|625309|625310|625311|625313|625314|625315|625332|625353|625361|625362|625364|625365|625367|625368|625369|625372|625373|625374|625375|625376|625377|625378|625379|625380|625383|625384|625385|625386|625387|625391|625396|625397|625398|625399|625400|625401|625402|625403|625404|625406|625407|625410|625411|625412|625413|625414|625415|625416|625417|625418|625419|625420|625421|625422|625424|625425|625426|625427|625428|625429|625430|625431|625432|625433|625434|625435|625436|625437|625438|625439|625440|625441|625442|625443|625444|625445|625446|625447|625448|625449|625450|625451|625452|625453|625454|625455|625456|625457|625458|625459|625460|625461|625462|625463|625464|625465|625466|625467|625468|625469|625470|625471|625472|625473|625474|625475|625476|625477|625478|625479|625480|625481|625482|625483|625484|625485|625486|625487|625488|625489|625490|625491|625492|625493|625494|625495|625496|625497|625498|625499|625500|625501|625502|625503|625504|625505|625506|625507|625508|625509|625510|625511|625512|625513|625514|625515|625516|625517|625518|625519|625520|625521|625522|625523|625524|625525|625526|625527|625528|625529|625530|625531|625532|625533|625534|625535|625536|625537|625538|625539|625540|625541|625542|625543|625545|625546|625547|625548|625549|625550|625551|625552|625553|625554|625555|625556|625557|625558|625559|625560|625561|625562|625563|625564|625565|625566|625567|625568|625569|625570|625571|625572|625573|625574|625575|625576|625577|625578|625579|625580|625581|625582|625583|625584|625585|625586|625587|625588|625589|625590|625591|625592|625593|625594|625595|625596|625597|625598|625599|625600|625601|625602|625603|625604|625605|625606|625607|625608|625609|625610|625611|625612|625613|625614|625615|625616|625617|625618|625619|625620|625621|625622|625623|625624|625625|625626|625627|625628|625629|625630|625631|625632|625633|625634|625635|625636|625637|625638|625639|625640|625641|625642|625643|625644|625645|625646|625647|625648|625649|625650|625651|625652|625653|625654|625655|625656|625657|625658|625659|625660|625661|625662|625663|625664|625665|625666|625667|625668|625669|625670|625671|625672|625673|625674|625675|625676|625678|625679|625680|625681|625682|625683|625684|625685|625686|625687|625688|625689|625690|625691|625692|625693|625694|625695|625696|625697|625698|625699|625700|625701|625702|625703|625704|625705|625706|625707|625708|625709|625710|625711|625712|625713|625714|625715|625719|625723|625724|625725|625726|625727|625728|625729|625730|625732|625733|625734|625735|625736|625737|625738|625739|625740|625741|625742|625743|625744|625745|625746|625747|625748|625749|625754|625755|625756|625757|625758|625759|625762|625763|625764|625765|625766|625767|625768|625769|625771|625772|626491|626494|626748|626918|629485|632549|633601|633604|633619|633622|634484|636128|636129|637035|637037|637659|637669|637670|637671|638394|639356|640206|640400|640402|640429|640431|640562|640574|640609|640614|640628|640629|640630|640631|641064|641075|641303|641306|642076|642079|642097|642111|643813|643816|643818|644930|644942|645317|645320|648091|648101|648115|648125|648131|648135|648267|648280|650673|651610|655699|655860|656797|663407|663794|663811|666404|667147|667189|667214|667230|682112|682952|682953|682954|682955|682956|682957|682958|682961|682963|682964|682965|682966|682967|682968|682970|682971|682972|682973|682974|682975|682976|682977|682978|682979|682980|682981|682983|682985|682986|682987|682988|682990|682993|682994|682995|682996|682997|682998|683001|683002|683003|683005|683007|683008|683009|683010|683011|683012|683013|683015|683018|683019|683020|683022|683023|683024|683025|683026|683027|683028|683029|683030|683032|683033|683034|683035|683036|683039|683041|683042|683047|683048|683049|683051|683052|683053|683054|683055|683056|683057|683058|683059|683060|683061|683062|683065|683066|683067|683068|683071|683073|683074|683077|683078|683079|683080|683081|683082|683084|683086|683087|683088|683089|683090|683091|683092|683093|683094|683095|683096|683097|683099|683100|683106|683109|683110|683111|683112|683113|683116|683117|683118|683121|683123|683124|683125|683126|683127|683128|683129|683131|683132|683227|683232|683286|683719|683723|683724|683750|683751|683979|684039|684041|684184|684273|684276|684281|684282|684322|684426|684429|684571|684811|684813|684814|684817|684848|684850|684944|685031|685079|685189|685506|685563|686772|686778|687193|687359|687849|687857|687865|687866|687870|688188|688200|688202|689045|689056|689134|689454|689551|689906|689930|690285|691783|692227|692703|693123|693128|693189|693404|694047|695282|695306|695605|711763|725560|730541|738248|752931|753034|758640|758864|761252|766739|767100|774196|775742|783265|791854|792836|793079|799080|799081|799082|799083|799084|799085|799661|800146|800147|815847|815849|822366|822372|822628|825756|830497|831406|834565|835445|835448|835449|837578|838970|839272|846811|847687|847706|847711|847871|847883|850251|850254|869243|871630|876816|882052|899011|899015|899375|899376|905067|905068|905069|905070|905071|905072|905073|905074|905075|905076|905077|905078|905079|905080|905081|905082|905083|905084|905085|905086|905087|905088|905089|905090|905091|905092|905093|905094|905095|905096|905097|905098|905099|905100|905101|905102|905103|905104|905105|905106|905107|905108|905109|905110|905111|905112|905113|905114|905115|905116|905117|905118|905119|905120|905121|905122|905123|905124|905125|905126|905127|905128|905129|905130|905131|905132|905133|905134|905135|905136|905137|905138|905139|905140|905141|905142|905143|905144|905145|905146|905147|905148|905149|905150|905151|905152|905153|905154|905155|905156|905157|905158|905159|905160|905161|905162|905163|905164|905165|905166|905167|905168|905169|905170|905171|905172|905173|905174|905175|905176|905177|905178|905179|905180|905181|905182|905183|905184|905185|905186|905187|905188|905189|905190|905191|905192|905193|905194|905195|905196|905197|905198|905199|905200|905201|905202|905203|905204|905205|905206|905207|905208|905209|905210|905211|905212|905213|905214|905215|905216|905217|905218|905219|905220|905221|905222|905223|905224|905225|905226|905227|905228|905229|905230|905231|905232|905233|905234|905235|905236|905237|905238|905239|905240|905241|905242|905243|905244|905245|905246|905247|905248|905249|905250|905251|905252|905253|905254|905255|905256|905257|905258|905259|905260|905261|905262|905263|905264|905265|905266|905267|905268|905269|905270|905271|905272|905273|905274|905275|905276|905277|905278|905279|905280|905281|905282|905283|905284|905285|905286|905287|905288|905289|905290|905291|905292|905293|905294|905295|905296|905297|905298|905299|905300|905301|905302|905303|905304|905305|905306|905307|905308|905309|905310|905311|905312|905313|905314|905315|905316|905317|905318|905319|905320|905321|905322|905323|905324|905325|905326|905327|905328|905329|905330|905331|905332|905333|905334|905335|905336|905337|905338|905339|905340|905341|905342|905343|905344|905345|905346|905347|905348|905349|905350|905351|905352|905353|905354|905355|905356|905357|905358|905359|905360|905361|905362|905363|905364|905365|905366|905367|905368|905369|905370|905371|905372|905373|905374|905375|905376|905377|905378|905379|905380|905381|905382|905383|905384|905385|905386|905387|905388|905389|905390|905391|905392|905393|905394|905395|905396|905397|905398|905399|905400|905401|905402|905403|905404|905405|905406|905407|905408|905409|905410|905411|905412|905413|905414|905415|905416|905417|905418|905419|905420|905421|905422|905423|905424|905425|905426|905427|905428|905429|905430|905431|905432|905433|905434|905435|905436|905437|905438|905439|905440|905441|905442|905443|905444|905445|905446|905447|905448|905449|905450|905451|905452|905453|905454|905455|905456|905457|905458|905459|905460|905461|905462|905463|905464|905465|905466|905467|905468|905469|905470|905471|905472|905473|905474|905475|905476|905477|905478|905479|905480|905481|905482|905483|905484|905485|905486|905487|905488|905489|905490|905491|905492|905493|905494|905495|905496|905497|905498|905499|905500|905501|905502|905503|905504|905505|905506|905507|905508|905509|905510|905511|905512|905513|905514|905515|905516|905517|905518|905519|905520|905521|905522|905523|905524|905525|905526|905527|905528|905529|905530|905531|905532|905533|905534|905535|905536|905537|905538|905539|905540|905541|905542|905543|905544|905545|905546|905547|905548|905549|905550|905551|905552|905553|905554|905555|905556|905557|905558|905559|905560|905561|905562|905563|905564|905565|905566|905567|905568|905569|905570|905571|905572|905573|905574|905575|905576|905577|905578|905579|905580|905581|905582|905583|905584|905585|905587|905588|905589|905590|905591|905592|905593|905594|905595|905596|905597|905598|905599|905600|905601|905602|905603|905604|905605|905606|905607|905608|905609|905610|905611|905612|905613|905614|905615|905616|905617|905618|905619|905620|905621|905622|905623|905624|905625|905626|905627|905628|905629|905630|905631|905632|905633|905634|905635|905636|905637|905638|905639|905640|905641|905642|905643|905644|905645|905646|905647|905648|905649|905650|905651|905652|905653|905654|905655|905656|905657|905658|905659|905660|905661|905662|905663|905664|905665|905666|905667|905668|905669|905670|905671|905672|905673|905674|905675|905676|905677|905678|905679|905680|905681|905682|905683|905684|905685|905687|905688|905689|905690|905691|905692|905693|905694|905695|905696|905697|905698|905699|905700|905701|905702|905703|905704|905705|905706|905707|905708|905709|905710|905711|905712|905713|905714|905715|905716|905717|905718|905719|905720|905721|905722|905723|905724|905725|905726|905727|905728", + "upstreamId": "15367|15369|16052|16054|16056|16363|16761|16763|17307|17308|17310|17311|17314|17315|17317|17318|17319|17320|17321|17519|17521|17522|17524|17656|17657|17658|17951|19232|19237|19239|19241|19697|19699|19826|19830|19831|19839|19840|19841|19842|20032|20038|20039|20040|20041|20042|20160|20340|20369|20370|20371|21020|21096|21100|21124|21125|21126|21227|21228|22316|22319|22322|22323|22384|22385|22386|22387|22450|22517|22519|22523|23443|23470|23474|23476|23480|23482|23483|23505|24153|24243|24244|24245|24247|24686|25472|25480|25483|25485|25489|26833|26834|27350|28456|28460|28461|28465|28466|28473|28479|28491|28493|28497|29205|29206|29213|29215|29216|29218|29219|29220|29222|29223|29224|29227|29237|29239|29526|29527|29528|29537|29538|29542|29558|29559|29566|31791|33931|33932|33933|33934|33935|33936|33937|33938|34109|34111|34540|34541|34542|34543|34544|34547|34549|34550|34553|38401|38402|38425|38637|38984|39114|39397|39429|39430|39536|39691|39692|39695|39817|44263|45136|45139|45141|45142|45552|45553|46970|47002|47004|47011|47012|48094|49429|49430|49431|49438|49439|49441|49442|49444|49446|49447|49448|49449|49450|49653|49654|49655|49660|49853|52622|52623|52625|57199|57201|57207|57208|57212|57218|57219|57226|57235|57240|57242|57250|57252|57256|59596|77508|77568|77570|77573|77581|77583|77584|77585|77589|77591|77592|77593|77699|77753|77759|77772|77845|77856|77862|79355|83910|131993|132007|132008|134370|134371|134374|134375|134376|134377|134378|134379|134380|134382|134383|134384|134385|134386|134387|134388|134389|134390|134391|134845|134846|134847|135065|135494|135495|135496|135497|135498|135499|135743|135744|135745|135746|135747|135748|140023|140025|140026|140027|140028|140821|140822|140885|141071|141072|141077|141078|141079|141080|141142|141143|141144|141145|141146|141147|141271|141425|141426|141427|141428|141429|141551|141902|141903|141904|141913|141914|141915|141916|141918|141919|141920|141921|141922|141923|141974|141975|142136|142137|142213|142520|142566|142666|142667|142668|142669|142804|142805|143024|143025|165481|165482|165483|165484|165488|165491|165492|165494|165496|165499|165500|165503|165504|165506|165507|165509|165817|165820|165834|167382|167383|167384|167385|167388|167389|167390|167391|167392|167393|167394|167395|167396|167397|167398|167399|167400|167401|167459|171049|171812|171902|171903|171904|172343|172465|172488|172490|176680|179802|179808|179812|179813|181182|181183|185749|185951|185952|186051|186052|186053|186076|186089|186163|186164|186290|186291|187891|187892|187893|187938|189383|190114|190380|191088|191093|191094|191254|191366|191367|191443|191530|191531|191532|191533|191572|191601|191657|191658|192151|192323|192529|192545|192546|192674|192971|193949|194297|194535|194619|195304|195306|195407|195513|195938|196028|196270|196292|196468|196471|198602|199857|200697|200698|200699|200700|200701|204407|204408|204409|204476|204477|204478|205258|205754|208055|208056|208057|208058|208060|208062|208063|208065|208077|208080|208083|210581|210582|210584|210587|210588|210589|210591|210594|210597|210598|210603|210605|211999|212066|212067|212068|212070|212071|212075|212505|212506|212510|212511|212513|212614|212631|212633|212797|212975|212977|212980|212981|212982|212983|212984|212985|213147|213148|213241|213453|213454|213456|213459|213461|213462|213464|213498|213500|213501|213502|213504|213582|213789|213792|213795|213813|213814|213836|213890|213892|214089|214516|214517|214533|215003|215004|215437|221072|221073|221074|221077|221079|221083|221606|221607|221608|221609|221611|221612|221613|221615|221616|221621|221697|221699|221739|221755|221768|221981|222194|222196|222197|222198|222199|222200|222201|222357|222442|222443|222444|222445|222559|222808|222809|222815|222816|222817|222818|226815|226827|228278|228279|230871|231639|231643|231645|231715|231806|231807|231811|231812|231813|231814|231824|232156|232162|237047|237453|238110|238113|238114|238115|238116|238117|238157|239774|239775|239776|239779|240172|240173|240443|240445|241218|241223|241225|241227|241228|241231|241233|241234|241236|241764|241772|241774|241775|241776|243335|243338|243339|243340|243342|243822|244171|244187|244188|244192|244195|244196|244198|244220|244224|244249|244251|244253|244254|244256|244462|244464|244470|244472|244473|244504|244506|244510|244513|244521|244523|244526|244539|244569|244671|244678|244684|244690|244695|244696|244704|244717|244731|244819|244858|244939|244986|244993|244994|245001|245123|245125|245126|245129|245130|245131|245135|245139|245141|245178|245179|245180|245181|245182|245183|245184|245188|245189|247463|248765|249211|249214|249266|249267|249268|252049|252050|252051|252053|252054|252055|252056|252057|252786|252788|252789|252790|252793|252795|252932|252934|253060|253176|253796|254287|254288|254289|254290|254291|254292|254293|254294|254295|254296|254298|254300|254301|254302|254303|254304|254306|254308|254309|254310|254369|254370|254371|254399|254402|254403|254404|254405|254879|254880|264285|265353|266620|267186|267635|267827|268251|268456|268457|268601|268886|268889|269524|270495|271257|271447|271540|271542|271543|272216|272799|273691|274897|275620|275649|275671|275703|275733|275737|275742|275746|275750|275754|275757|275758|275799|275809|275900|276220|276610|276884|276943|276953|276954|278027|292511|296204|296233|298029|298731|301214|301988|302040|302063|302065|302074|302288|302289|302308|302796|303724|304405|305570|305571|305587|306131|306135|306149|306822|306829|306833|308910|308911|310604|310904|310905|310994|310996|311081|311087|311679|311681|312023|313229|313233|313237|313591|315010|315544|315550|315557|315559|315573|315606|315609|315625|315627|315647|315650|315984|315989|316589|316590|316601|316602|316611|316612|316822|316833|316842|319383|319967|319975|320125|320127|320133|320136|320152|320175|320180|321790|321791|321792|321807|321857|322452|322493|323240|323242|323248|323734|324393|326195|327853|327868|327874|328677|328679|328697|328724|328725|328728|328729|328743|328933|328938|328961|328978|328983|328985|329271|329275|329281|329895|329916|330287|330448|330495|330497|330499|331861|333547|333552|333554|333557|333558|334076|334077|334099|335332|335876|337142|337184|337211|337222|337249|337279|338837|340468|341848|343380|343605|343607|343613|343619|343812|343825|348459|348903|348907|348939|348944|348945|349263|349849|349859|349862|349866|349869|349874|352059|352940|352942|353954|358288|359204|359759|360628|360934|361105|361545|361552|363899|364342|364346|364400|364425|364426|364449|364522|364527|366203|366375|367013|368003|368200|368281|368286|368451|368638|369141|369375|369578|369611|369648|369651|369713|369716|369722|370463|370961|371096|371359|371569|371673|371765|371768|371932|371968|372108|372411|372487|372633|372636|372637|372643|372647|372650|372840|372884|372893|372921|372927|373173|373177|373201|373407|373409|373596|373630|373640|373642|373913|373972|373995|374283|374285|374297|374398|374401|374431|374472|374513|374528|374529|375357|375365|375382|375755|375775|375792|375808|375809|375821|375832|375891|376502|376509|377486|377643|378125|379575|379576|379613|390736|390740|390751|390819|390836|390842|390844|390849|390858|394833|394898|395077|395089|395094|395346|395428|395634|395915|396265|396279|396414|396551|396675|396688|396813|397323|397504|397732|398806|398933|398938|398949|398958|401091|401543|401813|402264|402722|403294|403327|403348|403719|403846|404289|404290|404895|404896|404898|404958|404971|406787|407128|407876|408497|408501|408513|408629|408630|409060|410607|410608|411470|411472|413321|414993|415301|415739|421186|421892|422104|422510|422511|425764|425817|425942|426010|426202|426718|426719|429340|429523|429527|429644|433504|433634|433691|433692|433993|433994|438108|438450|438507|440348|440350|440355|440400|440403|440406|440868|440870|440871|440877|440904|440905|441080|441144|441146|441171|441503|441941|442226|442441|442442|442443|442444|442447|442449|442450|442452|442454|442609|442657|442659|443710|444306|444528|444531|444910|445059|446751|446958|446998|447073|447159|447174|447257|447368|447429|447442|450538|450735|452185|452187|452342|452516|454724|454731|454741|454808|455148|455259|455264|455273|455294|455592|455779|456013|456923|457158|457448|457766|457812|457969|457987|458215|458238|458365|458542|458664|459011|459045|459680|461551|461617|461635|461740|461948|462063|462105|462180|462282|462375|462381|462385|462387|462391|462409|462894|462995|463003|463119|463131|463237|463250|463420|463482|463784|466970|467288|468804|469817|469829|469844|470221|470223|470244|470418|470422|470425|470455|470867|470874|470883|470912|470975|470989|470998|471000|471001|471721|472198|482001|486086|490562|492021|492543|495216|495847|498010|501059|501212|501755|502083|502296|502365|502368|502453|502965|502997|503339|503427|503764|503874|504071|504324|504355|504408|504490|504527|504562|504563|504611|504845|504857|504900|504903|505288|505314|506949|506956|508858|509114|509119|511160|511955|511961|512742|512743|514037|514518|514869|514902|514908|514920|515030|515078|515092|515140|515150|515228|515242|515261|515330|515335|517843|518777|518922|519312|520898|521264|521296|521380|521921|522820|522828|523269|523283|523291|523509|523981|523991|524209|524304|524535|524561|524680|524687|525615|526465|526597|526599|526642|526653|526669|527026|527112|527192|527218|527308|527314|527316|527321|527840|527872|527903|528346|530513|532993|533014|533019|533028|533078|533093|533103|533108|533131|533134|533481|533483|533660|533665|533687|534929|534951|534954|535067|535069|535125|535192|535194|535195|537077|537147|537474|539959|540438|552154|556578|556582|556615|556660|556664|556721|556903|556905|556909|558090|558092|558098|560193|560205|560316|560322|560328|560330|560946|561068|562170|562710|562884|563073|563305|564659|564664|564975|565041|565215|565767|566239|566353|566799|567510|567603|568288|570412|570791|570862|570922|570936|571244|572572|572574|572616|572748|573114|573116|573989|574306|574883|574885|575446|575643|576405|576434|577606|577807|579833|579843|580097|590307|608961|609158|609184|609686|609702|610055|610575|611494|611955|612699|612702|613532|619948|619958|620192|620269|622355|623317|624120|624882|624883|624884|624885|624886|624887|624888|624889|624890|624891|624892|624893|624894|624895|624896|624897|624898|624899|624900|624901|624902|624903|624904|624905|624906|624907|624908|624909|624910|624911|624912|624913|624914|624915|624916|624917|624918|624919|624920|624921|624922|624923|624924|624925|624926|624927|624928|624929|624930|624931|624932|624933|624934|624935|624936|624937|624938|624939|624940|624941|624942|624943|624944|624945|624946|624947|624948|624949|624950|624951|624952|624953|624954|624955|624956|624957|624958|624959|624960|624961|624962|624963|624964|624965|624966|624967|624968|624969|624970|624971|624972|624973|624974|624975|624976|624977|624978|624979|624980|624981|624982|624983|624984|624985|624986|624987|624989|624990|624991|624992|624993|624994|624995|624996|624997|624998|624999|625002|625003|625004|625005|625006|625007|625008|625009|625010|625011|625012|625013|625015|625016|625017|625018|625019|625020|625021|625022|625023|625024|625025|625027|625028|625029|625030|625031|625032|625033|625034|625035|625036|625037|625038|625041|625042|625043|625044|625045|625046|625047|625048|625049|625050|625051|625052|625053|625054|625055|625056|625058|625059|625060|625061|625062|625063|625064|625065|625066|625067|625068|625069|625070|625071|625072|625074|625075|625076|625077|625078|625079|625080|625081|625082|625083|625084|625085|625086|625087|625089|625090|625091|625092|625093|625095|625096|625097|625098|625099|625101|625102|625103|625104|625105|625106|625107|625108|625109|625110|625111|625112|625113|625114|625115|625116|625117|625118|625119|625120|625121|625122|625123|625124|625125|625126|625127|625128|625129|625130|625131|625132|625133|625134|625135|625136|625137|625138|625140|625141|625142|625145|625146|625147|625148|625149|625150|625151|625152|625153|625154|625156|625157|625158|625159|625160|625161|625162|625163|625164|625165|625166|625167|625168|625169|625170|625171|625172|625173|625174|625175|625176|625177|625178|625179|625180|625181|625182|625183|625184|625185|625186|625187|625188|625189|625190|625191|625192|625193|625195|625196|625197|625201|625202|625203|625204|625210|625225|625232|625236|625243|625255|625258|625260|625261|625262|625263|625264|625265|625266|625267|625268|625269|625270|625271|625272|625273|625274|625275|625276|625277|625278|625279|625280|625281|625282|625283|625284|625285|625294|625295|625296|625297|625298|625299|625300|625301|625302|625303|625304|625305|625306|625307|625308|625309|625310|625311|625313|625314|625315|625332|625353|625361|625362|625364|625365|625367|625368|625369|625372|625373|625374|625375|625376|625377|625378|625379|625380|625383|625384|625385|625386|625387|625391|625396|625397|625398|625399|625400|625401|625402|625403|625404|625406|625407|625410|625411|625412|625413|625414|625415|625416|625417|625418|625419|625420|625421|625422|625424|625425|625426|625427|625428|625429|625430|625431|625432|625433|625434|625435|625436|625437|625438|625439|625440|625441|625442|625443|625444|625445|625446|625447|625448|625449|625450|625451|625452|625453|625454|625455|625456|625457|625458|625459|625460|625461|625462|625463|625464|625465|625466|625467|625468|625469|625470|625471|625472|625473|625474|625475|625476|625477|625478|625479|625480|625481|625482|625483|625484|625485|625486|625487|625488|625489|625490|625491|625492|625493|625494|625495|625496|625497|625498|625499|625500|625501|625502|625503|625504|625505|625506|625507|625508|625509|625510|625511|625512|625513|625514|625515|625516|625517|625518|625519|625520|625521|625522|625523|625524|625525|625526|625527|625528|625529|625530|625531|625532|625533|625534|625535|625536|625537|625538|625539|625540|625541|625542|625543|625545|625546|625547|625548|625549|625550|625551|625552|625553|625554|625555|625556|625557|625558|625559|625560|625561|625562|625563|625564|625565|625566|625567|625568|625569|625570|625571|625572|625573|625574|625575|625576|625577|625578|625579|625580|625581|625582|625583|625584|625585|625586|625587|625588|625589|625590|625591|625592|625593|625594|625595|625596|625597|625598|625599|625600|625601|625602|625603|625604|625605|625606|625607|625608|625609|625610|625611|625612|625613|625614|625615|625616|625617|625618|625619|625620|625621|625622|625623|625624|625625|625626|625627|625628|625629|625630|625631|625632|625633|625634|625635|625636|625637|625638|625639|625640|625641|625642|625643|625644|625645|625646|625647|625648|625649|625650|625651|625652|625653|625654|625655|625656|625657|625658|625659|625660|625661|625662|625663|625664|625665|625666|625667|625668|625669|625670|625671|625672|625673|625674|625675|625676|625678|625679|625680|625681|625682|625683|625684|625685|625686|625687|625688|625689|625690|625691|625692|625693|625694|625695|625696|625697|625698|625699|625700|625701|625702|625703|625704|625705|625706|625707|625708|625709|625710|625711|625712|625713|625714|625715|625719|625723|625724|625725|625726|625727|625728|625729|625730|625732|625733|625734|625735|625736|625737|625738|625739|625740|625741|625742|625743|625744|625745|625746|625747|625748|625749|625754|625755|625756|625757|625758|625759|625762|625763|625764|625765|625766|625767|625768|625769|625771|625772|626491|626494|626748|626918|629485|632549|633601|633604|633619|633622|634484|636128|636129|637035|637037|637659|637669|637670|637671|638394|639356|640206|640400|640402|640429|640431|640562|640574|640609|640614|640628|640629|640630|640631|641064|641075|641303|641306|642076|642079|642097|642111|643813|643816|643818|644930|644942|645317|645320|648091|648101|648115|648125|648131|648135|648267|648280|650673|651610|655699|655860|656797|663407|663794|663811|666404|667147|667189|667214|667230|682112|682952|682953|682954|682955|682956|682957|682958|682961|682963|682964|682965|682966|682967|682968|682970|682971|682972|682973|682974|682975|682976|682977|682978|682979|682980|682981|682983|682985|682986|682987|682988|682990|682993|682994|682995|682996|682997|682998|683001|683002|683003|683005|683007|683008|683009|683010|683011|683012|683013|683015|683018|683019|683020|683022|683023|683024|683025|683026|683027|683028|683029|683030|683032|683033|683034|683035|683036|683039|683041|683042|683047|683048|683049|683051|683052|683053|683054|683055|683056|683057|683058|683059|683060|683061|683062|683065|683066|683067|683068|683071|683073|683074|683077|683078|683079|683080|683081|683082|683084|683086|683087|683088|683089|683090|683091|683092|683093|683094|683095|683096|683097|683099|683100|683106|683109|683110|683111|683112|683113|683116|683117|683118|683121|683123|683124|683125|683126|683127|683128|683129|683131|683132|683227|683232|683286|683719|683723|683724|683750|683751|683979|684039|684041|684184|684273|684276|684281|684282|684322|684426|684429|684571|684811|684813|684814|684817|684848|684850|684944|685031|685079|685189|685506|685563|686772|686778|687193|687359|687849|687857|687865|687866|687870|688188|688200|688202|689045|689056|689134|689454|689551|689906|689930|690285|691783|692227|692703|693123|693128|693189|693404|694047|695282|695306|695605|711763|725560|730541|738248|752931|753034|758640|758864|761252|766739|767100|774196|775742|783265|791854|792836|793079|799080|799081|799082|799083|799084|799085|799661|800146|800147|815847|815849|822366|822372|822628|825756|830497|831406|834565|835445|835448|835449|837578|838970|839272|846811|847687|847706|847711|847871|847883|850251|850254|869243|871630|876816|882052|899011|899015|899375|899376|905067|905068|905069|905070|905071|905072|905073|905074|905075|905076|905077|905078|905079|905080|905081|905082|905083|905084|905085|905086|905087|905088|905089|905090|905091|905092|905093|905094|905095|905096|905097|905098|905099|905100|905101|905102|905103|905104|905105|905106|905107|905108|905109|905110|905111|905112|905113|905114|905115|905116|905117|905118|905119|905120|905121|905122|905123|905124|905125|905126|905127|905128|905129|905130|905131|905132|905133|905134|905135|905136|905137|905138|905139|905140|905141|905142|905143|905144|905145|905146|905147|905148|905149|905150|905151|905152|905153|905154|905155|905156|905157|905158|905159|905160|905161|905162|905163|905164|905165|905166|905167|905168|905169|905170|905171|905172|905173|905174|905175|905176|905177|905178|905179|905180|905181|905182|905183|905184|905185|905186|905187|905188|905189|905190|905191|905192|905193|905194|905195|905196|905197|905198|905199|905200|905201|905202|905203|905204|905205|905206|905207|905208|905209|905210|905211|905212|905213|905214|905215|905216|905217|905218|905219|905220|905221|905222|905223|905224|905225|905226|905227|905228|905229|905230|905231|905232|905233|905234|905235|905236|905237|905238|905239|905240|905241|905242|905243|905244|905245|905246|905247|905248|905249|905250|905251|905252|905253|905254|905255|905256|905257|905258|905259|905260|905261|905262|905263|905264|905265|905266|905267|905268|905269|905270|905271|905272|905273|905274|905275|905276|905277|905278|905279|905280|905281|905282|905283|905284|905285|905286|905287|905288|905289|905290|905291|905292|905293|905294|905295|905296|905297|905298|905299|905300|905301|905302|905303|905304|905305|905306|905307|905308|905309|905310|905311|905312|905313|905314|905315|905316|905317|905318|905319|905320|905321|905322|905323|905324|905325|905326|905327|905328|905329|905330|905331|905332|905333|905334|905335|905336|905337|905338|905339|905340|905341|905342|905343|905344|905345|905346|905347|905348|905349|905350|905351|905352|905353|905354|905355|905356|905357|905358|905359|905360|905361|905362|905363|905364|905365|905366|905367|905368|905369|905370|905371|905372|905373|905374|905375|905376|905377|905378|905379|905380|905381|905382|905383|905384|905385|905386|905387|905388|905389|905390|905391|905392|905393|905394|905395|905396|905397|905398|905399|905400|905401|905402|905403|905404|905405|905406|905407|905408|905409|905410|905411|905412|905413|905414|905415|905416|905417|905418|905419|905420|905421|905422|905423|905424|905425|905426|905427|905428|905429|905430|905431|905432|905433|905434|905435|905436|905437|905438|905439|905440|905441|905442|905443|905444|905445|905446|905447|905448|905449|905450|905451|905452|905453|905454|905455|905456|905457|905458|905459|905460|905461|905462|905463|905464|905465|905466|905467|905468|905469|905470|905471|905472|905473|905474|905475|905476|905477|905478|905479|905480|905481|905482|905483|905484|905485|905486|905487|905488|905489|905490|905491|905492|905493|905494|905495|905496|905497|905498|905499|905500|905501|905502|905503|905504|905505|905506|905507|905508|905509|905510|905511|905512|905513|905514|905515|905516|905517|905518|905519|905520|905521|905522|905523|905524|905525|905526|905527|905528|905529|905530|905531|905532|905533|905534|905535|905536|905537|905538|905539|905540|905541|905542|905543|905544|905545|905546|905547|905548|905549|905550|905551|905552|905553|905554|905555|905556|905557|905558|905559|905560|905561|905562|905563|905564|905565|905566|905567|905568|905569|905570|905571|905572|905573|905574|905575|905576|905577|905578|905579|905580|905581|905582|905583|905584|905585|905587|905588|905589|905590|905591|905592|905593|905594|905595|905596|905597|905598|905599|905600|905601|905602|905603|905604|905605|905606|905607|905608|905609|905610|905611|905612|905613|905614|905615|905616|905617|905618|905619|905620|905621|905622|905623|905624|905625|905626|905627|905628|905629|905630|905631|905632|905633|905634|905635|905636|905637|905638|905639|905640|905641|905642|905643|905644|905645|905646|905647|905648|905649|905650|905651|905652|905653|905654|905655|905656|905657|905658|905659|905660|905661|905662|905663|905664|905665|905666|905667|905668|905669|905670|905671|905672|905673|905674|905675|905676|905677|905678|905679|905680|905681|905682|905683|905684|905685|905687|905688|905689|905690|905691|905692|905693|905694|905695|905696|905697|905698|905699|905700|905701|905702|905703|905704|905705|905706|905707|905708|905709|905710|905711|905712|905713|905714|905715|905716|905717|905718|905719|905720|905721|905722|905723|905724|905725|905726|905727|905728", "text": "Charcot-Marie-Tooth disease" }, { - "baseId": "15371|15372|15373|15374|15375|15375|15376|15377|15378|15379|15382|15382|15382|15383|15384|15384|15385|15386|15387|15389|15391|15392|15393|15393|15394|15395|15396|15398|15399|15400|15402|15403|15405|15406|15407|15409|15410|15411|15412|15413|39949|48599|50108|50109|50109|50110|50111|50112|50113|50114|50116|50117|50118|50118|50119|50119|79188|79191|79193|79194|79195|79197|79199|79199|79200|79203|79204|79204|79206|79206|79207|79209|79211|79212|79213|79214|79215|79216|79217|79219|79221|79223|79228|79229|79231|79232|79232|79232|79235|79239|79242|79244|79245|79248|79249|79251|79254|79254|79256|91294|91296|138618|138619|138620|138621|138622|138625|138626|138627|138628|138630|150715|150720|150743|150747|150762|150795|150821|150826|150830|150844|150853|150890|150923|150951|151037|151052|151055|151055|151075|151083|151089|151107|151121|151162|151165|151168|151205|151207|151227|151227|151245|151300|151308|151315|151351|151354|151399|151425|151433|151461|151461|151533|151551|151558|151558|151569|151606|151609|151628|151696|151696|151711|151751|151786|151794|151798|151814|152333|152393|152421|152455|152456|152467|152469|152473|152475|152518|152518|152572|152672|152727|152728|184495|184496|184497|184498|184499|184500|184501|184502|184503|184504|184505|184506|184508|184509|184510|184511|184512|184512|184513|184514|184515|184516|184517|184518|184524|184525|184526|184527|184529|184530|184531|184532|184533|184534|184535|184536|184537|184538|184539|184540|184541|184543|184545|184546|184547|184548|184549|184550|184551|184552|184553|184554|184555|184557|184559|184560|184562|184563|184564|184565|184567|184568|184569|184570|184571|184572|184573|184574|184576|184577|184578|184579|184580|184581|184582|184583|184584|184586|184587|184589|184590|184591|184592|184593|184599|184600|184601|184602|184603|184603|184604|184605|184606|184607|184608|184609|184610|184611|184612|184613|184614|184616|184617|184619|184621|184622|184623|184624|184625|184626|184627|184630|184631|184632|184633|184634|184635|184636|184638|184641|184643|184644|184644|184647|184648|184650|184656|184657|184658|184659|184660|184662|184663|184663|184664|184665|184666|184668|184669|184670|184671|184672|184673|184674|184676|184677|184679|184680|184681|184682|184684|184685|184686|184687|184688|184690|184693|184694|184694|184695|184696|184697|184698|184699|184700|184701|184702|184703|184704|184705|184706|184707|184708|184710|184711|184712|184714|184716|184717|184718|184719|184720|184722|184723|184724|184725|184726|184727|184728|184729|184730|184732|184733|184734|184734|184734|184735|184736|184737|184738|184739|184740|184742|184744|184744|184745|184746|184747|184748|184750|184751|184752|184753|184755|184756|184757|184758|184759|184760|184761|184762|184764|184765|184767|184770|184771|184772|184773|184774|184775|184776|184776|184776|184777|184778|184779|184782|184784|184785|184786|184787|184788|184789|184790|184791|184792|184793|184794|184796|186245|186246|186247|186248|186250|186251|186252|186253|186254|205301|205414|205415|205416|205416|205417|205418|205418|213242|213243|213244|213245|213246|213247|213248|213249|213250|213251|213252|213253|213254|213255|213256|213257|213258|213259|213260|213261|213262|213263|213264|213265|213266|213267|213268|213269|213270|213272|213273|213275|213276|213277|213278|213278|213279|213280|213281|213282|213283|213284|213285|213287|213288|213289|213290|213292|213293|213294|213295|213296|213296|213297|213298|213299|213300|213301|213302|213675|213676|213677|213678|213679|213680|213681|213682|213683|213684|213685|213686|213687|213688|213689|213690|213691|213692|213693|213694|213695|213696|213697|213698|213699|213700|213701|213702|213703|213704|213705|213706|213707|213708|213709|213710|213711|213712|213713|213716|213717|213718|213719|213720|213721|213722|213723|213724|213725|213726|213727|213728|213729|213730|213731|213732|213733|213734|213735|213736|213737|213738|213739|213740|213741|213742|213743|213744|213745|213746|213747|213748|213749|213750|213751|213752|213753|213754|213755|213756|213757|213758|222545|222562|222563|222564|222565|222566|222567|222568|222569|222570|222571|222572|222573|222574|222575|222576|222577|222578|222580|222581|222582|222583|222584|222585|222586|222587|222588|222590|222591|222592|222593|222594|222596|222597|222598|222599|222600|222601|222602|222603|222604|222605|222606|222607|222607|222608|222609|222610|222611|222612|222613|222614|222615|222616|222617|222618|222619|222621|222622|222624|222625|222626|222627|222628|222629|222630|222630|222631|222632|222633|222633|222634|222635|222636|222638|222639|222640|222641|224875|226809|230758|230762|230764|230765|230766|230767|230768|230771|230771|230773|230774|231989|235496|235498|235500|235501|235502|235504|235505|235506|235507|235508|235510|235513|235514|235516|235517|235518|235520|235525|235527|235528|235530|235531|235533|235535|235537|235538|235542|235544|235545|235547|235548|235548|235549|235550|235555|235556|235560|235561|235562|235563|235564|235566|235567|235568|235569|235570|235571|235573|235574|235578|235579|235580|235583|235584|235585|235586|235587|235588|235589|235590|235591|235592|235593|235594|235596|235597|235598|235599|235601|235602|235604|235605|235606|235607|235610|235611|235612|235614|235615|235617|235619|235620|235621|235622|235623|235624|235626|235627|235628|235631|235633|235636|235638|235639|235640|235643|235645|235646|235648|235649|235651|235653|235654|235655|235658|235660|235663|235664|235665|235668|235669|235670|235672|235674|235675|235676|235677|235679|235681|235682|235683|235684|235686|235689|235689|235690|235691|235692|235693|235694|235695|235697|235698|235699|235701|235703|235705|235707|235708|235709|235710|235711|235712|235713|235714|235715|235717|235718|235720|235721|235724|235725|235726|235727|235729|235730|235732|235733|235736|235737|235740|235746|235747|235748|235749|235750|235752|235754|235755|235758|235758|235760|235761|235762|235766|235769|235770|235772|235773|235776|235778|235780|235781|235782|235784|235785|235786|235787|235788|235788|235789|235790|235793|235795|235796|235800|235802|235803|235804|235806|235809|235811|235812|235816|235819|235820|235823|235824|235827|235828|235830|235831|235832|235833|235835|235836|235837|235838|235839|235841|235842|235845|235846|235848|235849|235850|235852|235853|237165|242577|242578|242618|242618|242620|242621|242622|242623|242624|242625|242626|242627|242628|242629|242630|242631|242632|242633|242634|242635|242636|242637|242638|242639|242640|242641|242642|242643|242644|242645|242646|242647|242648|242649|242650|242651|242653|242655|242656|242657|242658|242659|242661|242662|242663|242664|242665|242666|242667|242668|242669|242670|242671|242672|242674|242675|242676|242677|242678|242679|242680|242681|242682|242683|242684|242685|242686|242687|242688|242689|242690|242691|242693|242694|242695|242696|242697|242698|242699|242700|242702|242703|242704|242705|242706|242707|242708|242709|242710|242711|242712|242713|242714|242715|242716|242717|242718|242719|248514|248528|256113|256125|256129|256141|256148|260163|264844|264844|265014|327954|327955|327957|327958|327961|327978|327979|327980|327981|327982|327983|327986|327988|337800|337802|337803|337806|337808|337811|337813|337815|337817|337819|337821|337823|344012|344013|344021|344023|344027|344029|344034|344038|344043|344046|344049|344051|344059|344060|344065|344066|344071|344072|344073|345438|345439|345440|345441|345442|345444|345445|345447|345452|345459|345464|345469|345471|354178|360233|360299|360327|360415|361008|361009|361010|361012|361014|375835|375836|375841|378108|378113|401475|401476|401479|401483|401502|401506|401511|401594|401595|401597|401599|401600|401601|401602|401603|401608|401609|401612|401614|401615|401619|401620|401627|401628|401629|401633|401634|401635|401638|401641|401642|401643|401644|401645|401646|401648|401650|401651|401653|401655|401657|401663|401665|401666|401668|401672|401674|401675|401678|401680|401685|401687|401688|401689|401691|401695|401696|401697|401698|401699|401700|401701|401704|401705|401706|401707|401710|401712|401712|401715|401720|401720|401722|401728|401729|401732|401735|401738|401740|401746|401747|401748|401752|401753|401754|401757|401758|401763|401766|401767|401771|401772|401774|401777|401779|401781|401783|401784|401789|401791|401793|401794|401795|401798|401802|401804|401805|401807|401809|401811|401812|401816|401817|401819|401820|401821|401823|401825|401826|401828|401829|401830|401832|401833|401835|401836|401837|401838|401839|401842|401843|401844|401845|401846|401847|401849|401858|401862|401863|401866|401869|401871|401881|401883|401885|401890|401893|401907|401910|401912|401915|401966|402080|402082|402084|402088|402090|402092|402098|402099|402108|402115|402117|402119|402126|402132|402137|402141|402147|402148|402162|402166|402173|402177|402178|402183|402184|402192|402194|402196|402209|402219|402228|402230|402231|402235|402236|402247|402255|402257|402274|402276|402279|402280|402283|402285|402290|402291|402294|402299|402302|402304|402308|402309|402310|402316|402320|402322|402326|402328|402331|402335|402340|402342|402343|402345|402346|402348|402349|402350|402352|402353|402356|402357|402360|402363|402365|402368|402369|402372|402373|402377|402379|402381|402382|402383|402384|402387|402388|402389|402390|402392|402414|402415|402419|402425|402435|402439|402443|402448|402450|402450|402452|402458|402460|402465|402468|402470|402474|402475|402477|402481|402482|402487|402490|402492|402502|402504|402508|402514|402516|402519|402522|402525|402528|402535|402536|402542|402546|402547|402548|409860|409861|409863|409865|409869|409871|409873|409875|409880|409881|409883|409886|409887|409888|415545|415547|415548|415549|415550|420759|420760|420768|420769|420770|420772|420773|420775|420776|420777|420778|420780|420781|420783|420784|420792|420794|420797|420798|420799|420801|420804|420809|420811|420812|420822|420824|420826|420828|420834|420835|420837|422155|422155|422157|422160|424506|425066|425067|425068|425069|425070|425071|425072|425073|425074|425075|425076|425077|425078|425079|425080|425081|425082|425083|425084|425085|425086|425088|425089|425090|425091|425092|425093|425094|425095|425096|425097|425098|425099|425100|425101|425102|425103|425104|425105|425106|425107|425108|425109|425110|425111|425112|425113|425114|425115|425116|425117|425118|425119|425120|425121|425122|425123|425124|425125|425126|425127|425128|425129|425130|425131|425132|425133|425134|425135|425136|425137|425138|425139|425140|425141|425142|425143|425144|425145|425146|425147|425148|425149|425150|425151|425152|425153|425154|425155|425156|425157|425158|425159|425160|425161|425162|425163|425164|425165|425166|425167|425168|425169|425170|425171|425172|425173|425174|425175|425176|425177|425178|425179|425180|425181|425182|425183|425184|425185|425186|425187|425188|425189|425190|425191|425192|425193|425194|425195|425196|425197|425198|425199|425200|425201|426210|426212|426213|426216|426748|430967|433234|433236|433241|433243|433248|433249|433255|433256|433262|433263|433265|445726|445731|445732|445735|445737|445738|445739|445742|445746|445749|445750|466208|466392|466393|466395|466402|466404|466407|466411|466413|466417|466420|466422|466426|466437|466438|466447|466451|466458|466460|466467|466473|466474|466477|466480|466486|466491|466494|466497|466501|466506|466511|466513|466526|466531|466532|466537|466541|466542|466545|466548|466548|466563|466571|466576|466585|466588|466593|466601|466602|466606|466612|466613|466614|466615|466618|466623|466629|466631|466633|466635|466638|466648|466649|466651|466654|466657|466658|466660|466664|466665|466667|466671|466672|466679|466685|466690|466692|466697|466706|466708|466713|466720|466725|466727|466729|466730|466986|467009|467016|467073|467083|467084|467089|467216|467217|467221|467223|467225|467227|467229|467231|467234|467236|467242|467245|467247|467250|467260|467262|467275|467276|467281|467282|467285|467287|467293|467300|467304|467305|467306|467308|467309|467319|467321|467330|467331|467334|467335|467338|467339|467350|467362|467366|467371|467376|467377|467382|467386|467387|467389|467390|467392|467394|467395|467397|467399|467400|467404|467405|467406|467409|467410|467412|467413|467414|467415|467417|467417|467420|467421|467422|467423|467427|467428|467429|467432|467435|467436|467438|467442|467443|467444|467447|467449|467451|467454|467456|467460|467462|467465|467472|467474|467480|467481|467482|467484|467485|467486|467490|467493|467496|467498|467500|467501|467502|467503|467504|467505|467507|467509|467510|467512|467513|467515|467517|467519|467521|467522|467523|467524|467525|467526|467527|467528|467529|467530|467531|467532|467534|467535|467536|467537|467538|467540|467543|467545|467546|467549|467550|467551|467554|467556|467557|467558|467559|467560|467561|467562|467563|467564|467566|467567|467569|467570|467571|467573|467574|467575|467576|467577|467578|467579|467580|467581|467584|467585|467587|467588|467589|467591|467594|467595|467597|467599|467601|467602|467603|467605|467608|467610|467615|467616|467622|467627|467628|467630|467631|467635|467637|467640|467646|467651|467652|467653|467657|467662|467665|467670|467677|467678|467680|467681|467683|467690|467692|467693|467694|467696|467698|467700|467702|467704|467705|467707|467708|467709|467711|467714|467715|467717|467718|467718|467721|467723|467726|467728|467729|467733|467737|467738|467739|467740|467742|467745|467748|467750|467751|467751|467754|467755|467757|467761|467763|467765|467769|467771|467772|467774|467775|467778|467779|467780|467783|467785|467786|467788|467789|467791|467793|467795|467807|467812|467822|467825|467828|467829|467831|467833|467843|467844|467847|467849|467851|467852|467863|467874|467876|467879|467881|467882|467885|467888|467894|467896|467903|467905|467907|467910|467913|467920|477901|477908|477918|477920|477926|477928|477950|477960|477975|477979|477981|477982|477986|477987|477989|477993|477995|477998|478003|478006|478010|478012|478014|478029|478030|478033|478042|478043|478046|478048|478058|478061|478063|478065|478070|478071|478072|478073|478076|478081|478087|478088|478090|478091|478096|478098|478101|478103|478106|478108|478117|478119|478120|478125|478127|478129|478131|478142|478144|478146|478147|478150|478154|478165|478174|478178|478181|478182|478184|478185|478200|478201|478203|478205|478206|478214|478216|478217|478219|478220|478223|478230|478232|478238|478240|478244|478253|478258|478267|478271|478276|478279|478284|478289|478291|478296|478305|478307|478314|478319|478327|478329|478330|478331|478332|478340|478346|478347|478348|478351|478355|478359|478363|478365|478368|478371|478379|478381|478383|478384|478388|478388|478395|478406|478422|478423|478426|478457|478462|478473|478505|478515|478517|478525|478537|478547|478552|478557|478560|478564|478572|478632|478647|478652|478655|478660|478674|478697|478727|478733|478747|478757|478807|478812|478826|478839|478881|478896|478901|478906|478907|478915|478918|478927|478932|478954|478955|478966|478970|478971|478977|478986|478999|479006|479015|479024|479048|479051|479054|479098|479105|479113|479121|480529|481323|481430|482122|482123|482124|482128|482128|482130|482131|482132|485764|485765|485766|485767|485768|485769|485770|485771|485772|485773|485774|485775|485776|485777|485778|485779|485780|485781|485782|495410|495413|495416|495666|495668|495672|495684|495833|495835|497266|497565|497566|505825|506238|506730|506748|506760|513135|513192|513200|514075|514078|514079|514080|514273|514712|514714|530475|530627|530661|530666|530668|530670|530671|530673|530682|530683|530687|530690|530700|530702|530707|530708|530710|530717|530718|530720|530722|530729|530731|530737|530739|530753|530755|530761|530771|530780|530782|530783|530786|530789|530802|530815|530817|530818|530820|530822|530823|530824|530826|530828|530832|530833|530834|530839|530842|530847|530850|530851|530852|530853|530855|530857|530858|530861|530861|530867|530871|530873|530874|530875|530879|530883|530884|530885|530888|530889|530892|530893|530897|530899|530901|530902|530903|530911|530914|530915|530916|530917|530918|530922|530923|530924|530926|530927|530929|530931|530932|530934|530936|530937|530938|530940|530941|530942|530943|530944|530945|530946|530947|530951|530952|530953|530954|530955|530957|530959|530960|530962|530966|530968|530971|530973|530981|530982|530985|530988|530989|530993|530994|530996|531001|531002|531004|531005|531007|531008|531011|531012|531013|531015|531016|531017|531018|531020|531021|531025|531026|531027|531028|531032|531033|531034|531035|531036|531038|531040|531042|531043|531044|531045|531053|531054|531058|531059|531060|531061|531062|531063|531065|531067|531072|531073|531080|531081|531083|531085|531092|531093|531095|531097|531098|531101|531102|531107|531110|531116|531118|531122|531123|531126|531129|531137|531141|531142|531145|531146|531149|531173|531183|531184|531186|531187|531188|531189|531194|531196|531198|531201|531203|531214|531218|531222|531223|531226|531232|531235|531236|531237|531239|531241|531247|531248|531252|531255|531256|531262|531267|531272|531279|531282|531286|531289|531290|531293|531302|531304|531305|531309|531311|531321|531323|531330|531336|531339|531343|531344|531348|531349|531356|531358|531359|531363|531365|531372|531374|531378|531382|531386|531390|531394|531396|531403|531404|531407|531410|531430|531434|531437|531441|536216|536486|536487|536932|536933|538099|538100|538101|538102|538103|538104|538105|538106|538107|538108|538109|538110|538111|538112|538113|538114|538115|538116|538116|538117|538118|538119|538120|538121|538122|538123|538124|538125|538126|538127|538128|538129|538130|538131|538132|538133|538134|538135|538136|538137|538138|538139|538140|538141|538142|538143|538144|538145|538146|538147|538148|538149|538150|538151|538152|538153|538154|538155|538156|538157|538158|538159|538160|538161|538162|538163|538164|538165|538166|538167|538168|538169|538170|538171|538172|538173|538174|538175|538176|538177|538178|538179|538180|538181|538182|538183|538184|538185|538186|538187|538188|538189|538190|538191|538192|538193|538194|538195|538196|538197|538198|538199|538200|538201|538202|538203|538204|538205|538206|538207|538208|538209|538210|538211|538212|538213|538214|538215|538216|538217|538218|538219|538220|538221|538222|538223|538224|538225|538226|538227|538228|538229|538230|538231|538232|538233|538234|538235|538236|538237|538238|538239|551931|552201|552877|552878|552885|552915|552923|552926|552927|552930|552939|552945|552956|552965|552971|552972|552978|568578|568579|568760|568763|568765|568767|568769|568770|568771|568776|568783|568786|568787|568790|568794|568797|568801|568805|568806|568808|568827|568830|568833|568844|568849|568853|568857|568862|568863|568871|568875|568879|568885|568888|568890|568894|568896|568901|568904|568909|568913|568919|568921|568923|568925|568927|568930|568935|568938|568940|568945|568948|568954|568957|568963|568965|568966|568970|568972|568977|568979|568984|568989|568991|568995|570663|570664|570668|570749|570757|570758|570772|570774|570775|570778|570833|570838|570845|570850|570853|570855|570858|570860|570867|570869|570876|570879|570880|570882|570884|570885|570888|570895|570898|570899|570901|570903|570906|570915|570916|570917|570918|570918|570921|570924|570925|570927|570928|570930|570931|570932|570933|570934|570938|570940|570942|570944|570946|570948|570951|570952|570953|570956|570957|570959|570960|570961|570962|570963|570965|570966|570967|570968|570970|570971|570973|570975|570978|570980|570981|570982|570986|570988|570990|570990|570992|570994|570996|570998|571000|571001|571002|571004|571005|571006|571007|571008|571011|571012|571013|571014|571015|571016|571019|571021|571024|571025|571027|571028|571029|571031|571033|571034|571036|571038|571041|571045|571046|571049|571051|571052|571057|571058|571059|571060|571061|571063|571065|571066|571069|571073|571075|571078|571084|571085|571086|571102|571112|571116|571117|571118|571119|571124|571126|571132|571133|571138|571141|571144|571145|571151|571152|571160|571165|571169|571170|571171|571175|571176|571179|571191|571192|571199|571216|571218|571219|571223|571226|571228|571229|571241|571247|571254|571255|574249|574253|574254|574342|574343|574344|574346|574348|574350|574352|574354|574356|574358|574360|574362|574364|574366|574368|574370|574372|574374|574376|574378|574378|574379|574381|574383|574384|574385|574386|574387|574388|574389|574390|574391|574392|574393|574394|574395|574396|574397|574398|574399|574400|574401|574402|574403|574403|574404|574405|574406|574407|574408|574409|574410|574411|574412|574413|574414|574415|574416|574417|574418|574419|574420|574421|574422|574423|574424|574425|574426|574427|574428|574429|574430|574431|574432|574433|574434|574435|574436|575603|575975|575976|575977|575978|575979|575980|575981|575982|575983|575984|576342|576343|577620|577625|578002|578027|590165|609010|610069|610070|610075|610081|611851|612164|615874|619899|620580|620581|621556|621557|623343|623344|623345|623346|623635|623637|624623|624625|626344|645433|645434|645435|645436|645437|645438|645439|645440|645441|645442|645443|645444|645445|645446|645447|645448|645449|645450|645451|645452|645453|645454|645455|645456|645457|645458|645459|645460|645461|645462|645463|645464|645465|645466|645467|645468|645469|645470|645471|645472|645473|645474|645475|645476|645477|645478|645479|645480|645481|645482|645483|645484|645485|645486|645487|645488|645489|645490|645491|645492|645493|645494|645495|645496|645497|645498|645499|645500|645501|645502|645503|645504|645505|645506|645507|645508|645509|645510|645511|645512|645513|645514|645515|645516|645517|645518|645519|645520|645521|645522|645523|645524|645525|645526|645527|645528|645529|645530|645531|645532|645533|645534|645535|645536|645537|645538|645539|645540|645541|645542|645543|645544|645545|645546|645547|645548|645549|645550|645551|645552|645553|645554|645555|645556|645557|645558|645559|645560|645561|645562|645563|645564|645565|645566|645567|645568|645569|645570|645571|645572|645573|645574|645575|645576|645577|645578|645579|645580|645581|645582|645583|645584|645585|645586|645587|645588|645589|645590|645591|645592|645593|645594|645595|645596|645597|645598|645599|645600|645601|645602|645603|645604|645605|645606|645607|645608|645609|645610|645611|645612|645613|645614|645615|645616|645617|645618|645619|645620|645621|645622|645623|645624|645625|645626|645627|645628|645629|645630|645631|645632|645633|645634|645635|645636|645637|645638|645639|645640|645641|645642|645643|645644|645645|645646|645647|645648|645649|645650|645651|645652|645653|645654|645655|645656|645657|645658|645659|645660|645661|645662|645663|645664|645665|645666|645667|645668|645669|645670|645671|645672|645673|645674|645675|645676|645677|645678|645679|645680|645681|645682|645683|645684|645685|645686|645687|645688|645689|645690|645691|645692|645693|645694|645695|645696|645697|645698|645699|645700|645701|645702|645703|645704|645705|645706|645707|645708|645709|645710|645711|645712|645713|645714|645715|645716|645717|645718|645719|645720|645721|645722|645723|645724|645725|645726|645727|645728|645729|645730|645731|645732|645733|645734|645735|645736|645737|645738|645739|645740|645741|645742|645743|645744|645745|645746|645747|645748|645749|645750|645751|645752|645753|645754|645755|645756|645757|645758|645759|645760|645761|645762|645763|645764|645765|645766|645767|645768|645769|645770|645771|645772|645773|645774|645775|645776|645777|645778|645779|645780|645781|645782|645783|645784|645785|645786|645787|645788|645789|652626|652627|652632|652633|652701|652705|652710|652716|652717|652719|652722|652726|652738|652745|652751|652754|652758|652762|652764|652767|652773|652776|652798|652903|652906|652908|652913|652918|652921|652923|652926|652928|652929|652931|652933|653088|653089|653091|653093|653098|653104|653213|653214|653217|653226|653233|653235|653237|653239|653242|653248|653249|653262|653264|653347|653352|653391|653397|653401|653403|653408|653416|653417|653423|653427|653430|654140|678053|678054|679797|682492|682494|682495|682496|682497|682498|682499|682678|682679|682680|682681|682682|688758|688760|688761|690171|694065|694068|694070|694071|694072|694073|694075|694076|694078|694079|695733|695735|695736|704073|704074|704075|715357|727096|727098|740675|740676|740679|740680|740681|744952|755742|755745|755747|755748|755750|755754|755755|755756|755757|755760|755762|755763|760399|760528|760535|760553|771342|771343|771346|771349|771357|771364|771365|771366|771369|771370|771373|771375|771376|771378|771379|771384|771386|771399|771400|771407|771408|771411|771420|771421|771428|776251|776253|776264|776279|776289|776303|776306|776472|776617|776634|776643|776646|778337|778467|785492|785495|785500|785501|785505|785509|785512|785513|785514|785515|785517|785524|785526|785527|785533|787945|788133|788136|788222|788228|788908|789249|791688|791689|791690|791691|791692|791693|791694|791695|791696|791697|791698|791699|791700|791701|791702|791703|791704|791705|791706|791707|791708|791709|791710|791711|791712|791713|791714|791715|791716|791717|791718|791719|791720|791721|791722|791723|791724|791725|791726|791727|791728|791729|791730|791731|791732|791733|792537|792584|794063|794261|797515|800020|800027|804924|804925|804926|804927|804928|804929|804930|804931|804932|804933|804934|804935|804936|804937|804938|804939|804940|804941|804942|804943|804944|804945|804946|804947|804948|804949|804950|804951|804952|804953|804954|804955|804956|804957|804958|804959|804960|804961|804962|804963|804964|804965|804966|804967|804968|804969|804970|804971|804972|804973|804974|804975|804976|804977|804978|804979|804980|806386|806387|806388|806389|806390|806391|806392|806392|806393|806394|806395|806396|806397|806398|806399|806399|806400|806401|806402|806402|806403|806404|806405|806405|813083|813094|813109|813118|813126|813128|813133|813143|813149|813171|813175|813182|813183|813186|813212|813225|813228|813258|813274|813280|813282|813293|813334|813361|813367|813368|813373|813374|813380|813381|813386|813396|813400|813420|813423|813426|813429|813468|813474|813482|813488|813489|813496|813530|815671|815962|818701|818703|820994|820995|820996|820997|820998|820999|821000|821001|821002|821003|821004|821005|821006|821007|821008|821009|821010|821011|821012|821013|821014|821015|821016|821017|821018|821019|821020|821021|821022|821023|821024|821025|821026|821027|821029|821030|821031|821032|821033|821034|844841|844842|844843|844844|844845|844846|844847|844848|844849|844850|844851|844852|844853|844854|844855|844856|844857|844858|844859|844860|844861|844862|844863|844864|844865|844866|844867|844868|844869|844870|844871|844872|844873|844874|844875|844876|844877|844878|844879|844880|844881|844882|844883|844884|844885|844886|844887|844888|844889|844890|844891|844892|844893|844894|844895|844896|844897|844898|844899|844900|844901|844902|844903|844904|844905|844906|844907|844908|844909|844910|844911|844912|844913|844914|844915|844916|844917|844918|844919|844920|844921|844922|844923|844924|844925|844926|844927|844928|844929|844930|844931|844932|844933|844934|844935|844936|844937|844938|844939|844940|844941|844942|844943|844944|844945|844946|844947|844948|844949|844950|844951|844952|844953|844954|844955|844956|844957|844958|844959|844960|844961|844962|844963|844964|844965|844966|844967|844968|844969|844970|844971|844972|844973|844974|844975|844976|844977|844978|844979|844980|844981|844982|844983|844984|844985|844986|844987|844988|844989|844990|844991|844992|844993|844994|844995|844996|844997|844998|844999|845000|845001|845002|845003|845004|845005|845006|845007|845008|845009|845010|845011|845012|845013|845014|845015|845016|845017|845018|845019|845020|845021|845022|845023|845024|845025|845026|845027|845028|845029|845030|845031|845032|845033|845034|845035|845036|845037|845038|845039|845040|845041|845042|845043|845044|845045|845046|845047|845048|845049|845050|845051|845052|845053|845054|845055|845056|845057|845058|845059|845060|845061|845062|845063|845064|845065|845066|845067|845068|845069|845070|845071|845072|845073|845074|845075|845076|845077|845078|845079|845080|845081|845082|845083|845084|845085|845086|845087|845088|845089|845090|845091|845092|845093|845094|845095|845096|845097|845098|845099|845100|845101|845102|845103|845104|845105|845106|845107|845108|845109|845110|845111|845112|845113|845114|845115|845116|845117|845118|845119|845120|845121|845122|845123|845124|845125|845126|845127|845128|845129|845130|845131|845132|845133|845134|845135|845136|845137|845138|845139|845140|845141|845142|845143|845144|845145|845146|845147|845148|845149|845150|845151|845152|845153|845154|845155|845156|845157|845158|845159|845160|845161|845162|845163|845164|845165|845166|845167|845168|845169|845170|845171|845172|845173|845174|845175|845176|845177|845178|845179|845180|845181|845182|845183|845184|845185|845186|845187|845188|845189|845190|845191|845192|845193|845194|845195|845196|845197|845198|845199|845200|845201|845202|845203|845204|845205|851699|851701|851703|851705|851707|851709|851711|852153|852163|852165|852167|852169|852171|852173|852175|852177|852179|852181|852183|852185|852187|852189|852190|852193|852690|852696|852699|852700|852703|852707|852710|852711|852713|852714|852716|852720|852722|852723|852724|852726|852730|852732|852733|852734|852857|852858|852859|852861|852865|852867|852868|852869|852871|858415|858416|858429|858433|860371|861164|861165|861166|861167|877176|877177|877178|877179|877180|877181|877182|877183|877184|877185|877186|877187|877188|877189|877190|877191|877192|877193|877194|877195|877196|877197|877198|877199|877200|877201|877202|877203|877204|877205|877206|877207|877208|880495|880496|880497|880498|880499|903617|917231|917232|919718|919719|919720|919721|919722|919723|919724|920369|920370|928093|928094|928095|928096|928097|928098|928099|928100|928101|928102|928103|928104|928105|928106|928107|928108|928109|928110|928111|928112|928113|928114|928115|928116|928117|928118|928119|928120|928121|928122|928123|928124|928125|928126|928127|928128|928129|928130|928131|928132|928133|928134|928135|928136|928137|928138|928139|928140|928141|928142|928143|928144|928145|928146|928147|928148|928149|928150|928151|928152|928153|928154|928155|928156|928157|928158|928159|928160|928161|928162|928163|928164|928165|928166|928167|928168|928169|928170|928171|928172|928173|928174|928175|928176|928177|928178|928179|928180|928181|928182|928183|928184|928185|928186|928187|928188|928189|928190|928191|928192|928193|928194|928195|928196|928197|928198|928199|928200|928201|928202|928203|928204|928205|928206|928207|928208|928209|928210|928211|928212|928213|928214|928215|928216|928217|928218|928219|928220|937760|937761|937762|937763|937764|937765|937766|937767|937768|937769|937770|937771|937772|937773|937774|937775|937776|937777|937778|937779|937780|937781|937782|937783|937784|937785|937786|937787|937788|937789|937790|937791|937792|937793|937794|937795|937796|937797|937798|937799|937800|937801|937802|937803|937804|937805|937806|937807|937808|937809|937810|937811|937812|937813|937814|937815|937816|937817|937818|937819|937820|937821|937822|937823|937824|937825|937826|937827|937828|937829|937830|937831|937832|937833|937834|937835|937836|937837|937838|937839|937840|937841|937842|937843|937844|937845|937846|937847|937848|937849|937850|937851|937852|937853|937854|937855|937856|937857|937858|937859|937860|937861|937862|937863|937864|937865|937866|937867|937868|937869|937870|937871|937872|937873|937874|937875|937876|937877|937878|937879|937880|937881|937882|937883|937884|940389|940390|940391|940392|940393|940394|940395|940396|940397|940398|940399|940400|940401|940402|940403|940404|940405|940406|940407|941157|941162|941163|941164|941165|941166|941167|941168|941169|941170|941171|941172|941173|941174|941175|941176|941177|941178|949751|949752|949753|949754|949755|949756|949757|949758|949759|949760|949761|949762|949763|949764|949765|949766|949767|949768|949769|949770|949771|949772|949773|949774|949775|949776|949777|949778|949779|949780|949781|949782|949783|949784|949785|949786|949787|949788|949789|949790|949791|949792|949793|949794|949795|949796|949797|949798|949799|949800|949801|949802|949803|949804|949805|949806|949807|949808|949809|949810|949811|949812|949813|949814|949815|949816|949817|949818|949819|949820|949821|949822|949823|949824|949825|949826|949827|949828|949829|949830|949831|949832|949833|949834|949835|949836|949837|949838|949839|949840|949841|949842|949843|949844|949845|949846|949847|949848|949849|949850|949851|949852|949853|949854|949855|949856|949857|949858|949859|949860|949861|949862|949863|949864|949865|949866|949867|949868|949869|949870|949871|949872|958021|958022|958023|958024|958025|958026|958027|958028|958029|958030|958031|958032|958033|958034|958035|958036|958037|958038|958039|958040|958041|958042|958043|958044|958045|958046|958047|958048|958049|958050|958051|958052|958053|958054|958055|958056|958057|958058|958059|958060|958061|958062|958063|958064|958065|958066|958067|958068|958069|958070|958071|958072|958073|958074|958075|958076|958077|958078|958079|958080|958081|958082|958083|960195|960196|960197|960199|960200|960201|960202|960203|960204|960205|960206|960207|960208|960209|960210|960211|960212|960875|960876|960877|960878|960879|960880|960881|960882|964471|964472|964473|964474|964475|964689|966166|969613|972491|974885|975833|975951|980380|980552|983929|984084|984085|984086|984087|984088|984089|984090|984091|984092|984093|984094|984095|984096|984097|984098|984099|984100|984101|984102|984103|984104|984105|984106|984107|984108|984109|984110|984111|984112|984113|984114|984115|984116|984117|984118|984119|984120|984121|984122|984123|984124|984125|984126|984127|984128|984129|984130|984131|984132|984133|984134|984135|984136|984137|984138|984139|984140|984141|984142|984143|984144|984145|984146|984147|984148|984149|984150|984151|984152|984153|984154|984155|984156|984157|984158|984159|984160|984161|984162|984163|984164|984165|984166|984167|984168|984169|984170|984171|984172|984173|984174|984175|984176|984177|984178|984179|984180|984181|984182|984183|984184|984185|984186|984187|984188|984189|984190|984191|984192|984193|984194|984195|984196|984197|984198|984199|984200|984201|984202|984203|984204|984205|984206|984207|984208|984209|984210|984211|984212|984213|984214|984215|984216|984217|984218|984219|984220|984221|984222|984223|984224|984225|984226|984227|984228|984229|984230|984231|984232|984233|984234|984235|984236|984237|984238|984239|984240|984241|984242|984243|984244|984245|984246|984247|984248", + "upstreamId": "15371|15372|15373|15374|15375|15375|15376|15377|15378|15379|15382|15382|15382|15383|15384|15384|15385|15386|15387|15389|15391|15392|15393|15393|15394|15395|15396|15398|15399|15400|15402|15403|15405|15406|15407|15409|15410|15411|15412|15413|39949|48599|50108|50109|50109|50110|50111|50112|50113|50114|50116|50117|50118|50118|50119|50119|79188|79191|79193|79194|79195|79197|79199|79199|79200|79203|79204|79204|79206|79206|79207|79209|79211|79212|79213|79214|79215|79216|79217|79219|79221|79223|79228|79229|79231|79232|79232|79232|79235|79239|79242|79244|79245|79248|79249|79251|79254|79254|79256|91294|91296|138618|138619|138620|138621|138622|138625|138626|138627|138628|138630|150715|150720|150743|150747|150762|150795|150821|150826|150830|150844|150853|150890|150923|150951|151037|151052|151055|151055|151075|151083|151089|151107|151121|151162|151165|151168|151205|151207|151227|151227|151245|151300|151308|151315|151351|151354|151399|151425|151433|151461|151461|151533|151551|151558|151558|151569|151606|151609|151628|151696|151696|151711|151751|151786|151794|151798|151814|152333|152393|152421|152455|152456|152467|152469|152473|152475|152518|152518|152572|152672|152727|152728|184495|184496|184497|184498|184499|184500|184501|184502|184503|184504|184505|184506|184508|184509|184510|184511|184512|184512|184513|184514|184515|184516|184517|184518|184524|184525|184526|184527|184529|184530|184531|184532|184533|184534|184535|184536|184537|184538|184539|184540|184541|184543|184545|184546|184547|184548|184549|184550|184551|184552|184553|184554|184555|184557|184559|184560|184562|184563|184564|184565|184567|184568|184569|184570|184571|184572|184573|184574|184576|184577|184578|184579|184580|184581|184582|184583|184584|184586|184587|184589|184590|184591|184592|184593|184599|184600|184601|184602|184603|184603|184604|184605|184606|184607|184608|184609|184610|184611|184612|184613|184614|184616|184617|184619|184621|184622|184623|184624|184625|184626|184627|184630|184631|184632|184633|184634|184635|184636|184638|184641|184643|184644|184644|184647|184648|184650|184656|184657|184658|184659|184660|184662|184663|184663|184664|184665|184666|184668|184669|184670|184671|184672|184673|184674|184676|184677|184679|184680|184681|184682|184684|184685|184686|184687|184688|184690|184693|184694|184694|184695|184696|184697|184698|184699|184700|184701|184702|184703|184704|184705|184706|184707|184708|184710|184711|184712|184714|184716|184717|184718|184719|184720|184722|184723|184724|184725|184726|184727|184728|184729|184730|184732|184733|184734|184734|184734|184735|184736|184737|184738|184739|184740|184742|184744|184744|184745|184746|184747|184748|184750|184751|184752|184753|184755|184756|184757|184758|184759|184760|184761|184762|184764|184765|184767|184770|184771|184772|184773|184774|184775|184776|184776|184776|184777|184778|184779|184782|184784|184785|184786|184787|184788|184789|184790|184791|184792|184793|184794|184796|186245|186246|186247|186248|186250|186251|186252|186253|186254|205301|205414|205415|205416|205416|205417|205418|205418|213242|213243|213244|213245|213246|213247|213248|213249|213250|213251|213252|213253|213254|213255|213256|213257|213258|213259|213260|213261|213262|213263|213264|213265|213266|213267|213268|213269|213270|213272|213273|213275|213276|213277|213278|213278|213279|213280|213281|213282|213283|213284|213285|213287|213288|213289|213290|213292|213293|213294|213295|213296|213296|213297|213298|213299|213300|213301|213302|213675|213676|213677|213678|213679|213680|213681|213682|213683|213684|213685|213686|213687|213688|213689|213690|213691|213692|213693|213694|213695|213696|213697|213698|213699|213700|213701|213702|213703|213704|213705|213706|213707|213708|213709|213710|213711|213712|213713|213716|213717|213718|213719|213720|213721|213722|213723|213724|213725|213726|213727|213728|213729|213730|213731|213732|213733|213734|213735|213736|213737|213738|213739|213740|213741|213742|213743|213744|213745|213746|213747|213748|213749|213750|213751|213752|213753|213754|213755|213756|213757|213758|222545|222562|222563|222564|222565|222566|222567|222568|222569|222570|222571|222572|222573|222574|222575|222576|222577|222578|222580|222581|222582|222583|222584|222585|222586|222587|222588|222590|222591|222592|222593|222594|222596|222597|222598|222599|222600|222601|222602|222603|222604|222605|222606|222607|222607|222608|222609|222610|222611|222612|222613|222614|222615|222616|222617|222618|222619|222621|222622|222624|222625|222626|222627|222628|222629|222630|222630|222631|222632|222633|222633|222634|222635|222636|222638|222639|222640|222641|224875|226809|230758|230762|230764|230765|230766|230767|230768|230771|230771|230773|230774|231989|235496|235498|235500|235501|235502|235504|235505|235506|235507|235508|235510|235513|235514|235516|235517|235518|235520|235525|235527|235528|235530|235531|235533|235535|235537|235538|235542|235544|235545|235547|235548|235548|235549|235550|235555|235556|235560|235561|235562|235563|235564|235566|235567|235568|235569|235570|235571|235573|235574|235578|235579|235580|235583|235584|235585|235586|235587|235588|235589|235590|235591|235592|235593|235594|235596|235597|235598|235599|235601|235602|235604|235605|235606|235607|235610|235611|235612|235614|235615|235617|235619|235620|235621|235622|235623|235624|235626|235627|235628|235631|235633|235636|235638|235639|235640|235643|235645|235646|235648|235649|235651|235653|235654|235655|235658|235660|235663|235664|235665|235668|235669|235670|235672|235674|235675|235676|235677|235679|235681|235682|235683|235684|235686|235689|235689|235690|235691|235692|235693|235694|235695|235697|235698|235699|235701|235703|235705|235707|235708|235709|235710|235711|235712|235713|235714|235715|235717|235718|235720|235721|235724|235725|235726|235727|235729|235730|235732|235733|235736|235737|235740|235746|235747|235748|235749|235750|235752|235754|235755|235758|235758|235760|235761|235762|235766|235769|235770|235772|235773|235776|235778|235780|235781|235782|235784|235785|235786|235787|235788|235788|235789|235790|235793|235795|235796|235800|235802|235803|235804|235806|235809|235811|235812|235816|235819|235820|235823|235824|235827|235828|235830|235831|235832|235833|235835|235836|235837|235838|235839|235841|235842|235845|235846|235848|235849|235850|235852|235853|237165|242577|242578|242618|242618|242620|242621|242622|242623|242624|242625|242626|242627|242628|242629|242630|242631|242632|242633|242634|242635|242636|242637|242638|242639|242640|242641|242642|242643|242644|242645|242646|242647|242648|242649|242650|242651|242653|242655|242656|242657|242658|242659|242661|242662|242663|242664|242665|242666|242667|242668|242669|242670|242671|242672|242674|242675|242676|242677|242678|242679|242680|242681|242682|242683|242684|242685|242686|242687|242688|242689|242690|242691|242693|242694|242695|242696|242697|242698|242699|242700|242702|242703|242704|242705|242706|242707|242708|242709|242710|242711|242712|242713|242714|242715|242716|242717|242718|242719|248514|248528|256113|256125|256129|256141|256148|260163|264844|264844|265014|327954|327955|327957|327958|327961|327978|327979|327980|327981|327982|327983|327986|327988|337800|337802|337803|337806|337808|337811|337813|337815|337817|337819|337821|337823|344012|344013|344021|344023|344027|344029|344034|344038|344043|344046|344049|344051|344059|344060|344065|344066|344071|344072|344073|345438|345439|345440|345441|345442|345444|345445|345447|345452|345459|345464|345469|345471|354178|360233|360299|360327|360415|361008|361009|361010|361012|361014|375835|375836|375841|378108|378113|401475|401476|401479|401483|401502|401506|401511|401594|401595|401597|401599|401600|401601|401602|401603|401608|401609|401612|401614|401615|401619|401620|401627|401628|401629|401633|401634|401635|401638|401641|401642|401643|401644|401645|401646|401648|401650|401651|401653|401655|401657|401663|401665|401666|401668|401672|401674|401675|401678|401680|401685|401687|401688|401689|401691|401695|401696|401697|401698|401699|401700|401701|401704|401705|401706|401707|401710|401712|401712|401715|401720|401720|401722|401728|401729|401732|401735|401738|401740|401746|401747|401748|401752|401753|401754|401757|401758|401763|401766|401767|401771|401772|401774|401777|401779|401781|401783|401784|401789|401791|401793|401794|401795|401798|401802|401804|401805|401807|401809|401811|401812|401816|401817|401819|401820|401821|401823|401825|401826|401828|401829|401830|401832|401833|401835|401836|401837|401838|401839|401842|401843|401844|401845|401846|401847|401849|401858|401862|401863|401866|401869|401871|401881|401883|401885|401890|401893|401907|401910|401912|401915|401966|402080|402082|402084|402088|402090|402092|402098|402099|402108|402115|402117|402119|402126|402132|402137|402141|402147|402148|402162|402166|402173|402177|402178|402183|402184|402192|402194|402196|402209|402219|402228|402230|402231|402235|402236|402247|402255|402257|402274|402276|402279|402280|402283|402285|402290|402291|402294|402299|402302|402304|402308|402309|402310|402316|402320|402322|402326|402328|402331|402335|402340|402342|402343|402345|402346|402348|402349|402350|402352|402353|402356|402357|402360|402363|402365|402368|402369|402372|402373|402377|402379|402381|402382|402383|402384|402387|402388|402389|402390|402392|402414|402415|402419|402425|402435|402439|402443|402448|402450|402450|402452|402458|402460|402465|402468|402470|402474|402475|402477|402481|402482|402487|402490|402492|402502|402504|402508|402514|402516|402519|402522|402525|402528|402535|402536|402542|402546|402547|402548|409860|409861|409863|409865|409869|409871|409873|409875|409880|409881|409883|409886|409887|409888|415545|415547|415548|415549|415550|420759|420760|420768|420769|420770|420772|420773|420775|420776|420777|420778|420780|420781|420783|420784|420792|420794|420797|420798|420799|420801|420804|420809|420811|420812|420822|420824|420826|420828|420834|420835|420837|422155|422155|422157|422160|424506|425066|425067|425068|425069|425070|425071|425072|425073|425074|425075|425076|425077|425078|425079|425080|425081|425082|425083|425084|425085|425086|425088|425089|425090|425091|425092|425093|425094|425095|425096|425097|425098|425099|425100|425101|425102|425103|425104|425105|425106|425107|425108|425109|425110|425111|425112|425113|425114|425115|425116|425117|425118|425119|425120|425121|425122|425123|425124|425125|425126|425127|425128|425129|425130|425131|425132|425133|425134|425135|425136|425137|425138|425139|425140|425141|425142|425143|425144|425145|425146|425147|425148|425149|425150|425151|425152|425153|425154|425155|425156|425157|425158|425159|425160|425161|425162|425163|425164|425165|425166|425167|425168|425169|425170|425171|425172|425173|425174|425175|425176|425177|425178|425179|425180|425181|425182|425183|425184|425185|425186|425187|425188|425189|425190|425191|425192|425193|425194|425195|425196|425197|425198|425199|425200|425201|426210|426212|426213|426216|426748|430967|433234|433236|433241|433243|433248|433249|433255|433256|433262|433263|433265|445726|445731|445732|445735|445737|445738|445739|445742|445746|445749|445750|466208|466392|466393|466395|466402|466404|466407|466411|466413|466417|466420|466422|466426|466437|466438|466447|466451|466458|466460|466467|466473|466474|466477|466480|466486|466491|466494|466497|466501|466506|466511|466513|466526|466531|466532|466537|466541|466542|466545|466548|466548|466563|466571|466576|466585|466588|466593|466601|466602|466606|466612|466613|466614|466615|466618|466623|466629|466631|466633|466635|466638|466648|466649|466651|466654|466657|466658|466660|466664|466665|466667|466671|466672|466679|466685|466690|466692|466697|466706|466708|466713|466720|466725|466727|466729|466730|466986|467009|467016|467073|467083|467084|467089|467216|467217|467221|467223|467225|467227|467229|467231|467234|467236|467242|467245|467247|467250|467260|467262|467275|467276|467281|467282|467285|467287|467293|467300|467304|467305|467306|467308|467309|467319|467321|467330|467331|467334|467335|467338|467339|467350|467362|467366|467371|467376|467377|467382|467386|467387|467389|467390|467392|467394|467395|467397|467399|467400|467404|467405|467406|467409|467410|467412|467413|467414|467415|467417|467417|467420|467421|467422|467423|467427|467428|467429|467432|467435|467436|467438|467442|467443|467444|467447|467449|467451|467454|467456|467460|467462|467465|467472|467474|467480|467481|467482|467484|467485|467486|467490|467493|467496|467498|467500|467501|467502|467503|467504|467505|467507|467509|467510|467512|467513|467515|467517|467519|467521|467522|467523|467524|467525|467526|467527|467528|467529|467530|467531|467532|467534|467535|467536|467537|467538|467540|467543|467545|467546|467549|467550|467551|467554|467556|467557|467558|467559|467560|467561|467562|467563|467564|467566|467567|467569|467570|467571|467573|467574|467575|467576|467577|467578|467579|467580|467581|467584|467585|467587|467588|467589|467591|467594|467595|467597|467599|467601|467602|467603|467605|467608|467610|467615|467616|467622|467627|467628|467630|467631|467635|467637|467640|467646|467651|467652|467653|467657|467662|467665|467670|467677|467678|467680|467681|467683|467690|467692|467693|467694|467696|467698|467700|467702|467704|467705|467707|467708|467709|467711|467714|467715|467717|467718|467718|467721|467723|467726|467728|467729|467733|467737|467738|467739|467740|467742|467745|467748|467750|467751|467751|467754|467755|467757|467761|467763|467765|467769|467771|467772|467774|467775|467778|467779|467780|467783|467785|467786|467788|467789|467791|467793|467795|467807|467812|467822|467825|467828|467829|467831|467833|467843|467844|467847|467849|467851|467852|467863|467874|467876|467879|467881|467882|467885|467888|467894|467896|467903|467905|467907|467910|467913|467920|477901|477908|477918|477920|477926|477928|477950|477960|477975|477979|477981|477982|477986|477987|477989|477993|477995|477998|478003|478006|478010|478012|478014|478029|478030|478033|478042|478043|478046|478048|478058|478061|478063|478065|478070|478071|478072|478073|478076|478081|478087|478088|478090|478091|478096|478098|478101|478103|478106|478108|478117|478119|478120|478125|478127|478129|478131|478142|478144|478146|478147|478150|478154|478165|478174|478178|478181|478182|478184|478185|478200|478201|478203|478205|478206|478214|478216|478217|478219|478220|478223|478230|478232|478238|478240|478244|478253|478258|478267|478271|478276|478279|478284|478289|478291|478296|478305|478307|478314|478319|478327|478329|478330|478331|478332|478340|478346|478347|478348|478351|478355|478359|478363|478365|478368|478371|478379|478381|478383|478384|478388|478388|478395|478406|478422|478423|478426|478457|478462|478473|478505|478515|478517|478525|478537|478547|478552|478557|478560|478564|478572|478632|478647|478652|478655|478660|478674|478697|478727|478733|478747|478757|478807|478812|478826|478839|478881|478896|478901|478906|478907|478915|478918|478927|478932|478954|478955|478966|478970|478971|478977|478986|478999|479006|479015|479024|479048|479051|479054|479098|479105|479113|479121|480529|481323|481430|482122|482123|482124|482128|482128|482130|482131|482132|485764|485765|485766|485767|485768|485769|485770|485771|485772|485773|485774|485775|485776|485777|485778|485779|485780|485781|485782|495410|495413|495416|495666|495668|495672|495684|495833|495835|497266|497565|497566|505825|506238|506730|506748|506760|513135|513192|513200|514075|514078|514079|514080|514273|514712|514714|530475|530627|530661|530666|530668|530670|530671|530673|530682|530683|530687|530690|530700|530702|530707|530708|530710|530717|530718|530720|530722|530729|530731|530737|530739|530753|530755|530761|530771|530780|530782|530783|530786|530789|530802|530815|530817|530818|530820|530822|530823|530824|530826|530828|530832|530833|530834|530839|530842|530847|530850|530851|530852|530853|530855|530857|530858|530861|530861|530867|530871|530873|530874|530875|530879|530883|530884|530885|530888|530889|530892|530893|530897|530899|530901|530902|530903|530911|530914|530915|530916|530917|530918|530922|530923|530924|530926|530927|530929|530931|530932|530934|530936|530937|530938|530940|530941|530942|530943|530944|530945|530946|530947|530951|530952|530953|530954|530955|530957|530959|530960|530962|530966|530968|530971|530973|530981|530982|530985|530988|530989|530993|530994|530996|531001|531002|531004|531005|531007|531008|531011|531012|531013|531015|531016|531017|531018|531020|531021|531025|531026|531027|531028|531032|531033|531034|531035|531036|531038|531040|531042|531043|531044|531045|531053|531054|531058|531059|531060|531061|531062|531063|531065|531067|531072|531073|531080|531081|531083|531085|531092|531093|531095|531097|531098|531101|531102|531107|531110|531116|531118|531122|531123|531126|531129|531137|531141|531142|531145|531146|531149|531173|531183|531184|531186|531187|531188|531189|531194|531196|531198|531201|531203|531214|531218|531222|531223|531226|531232|531235|531236|531237|531239|531241|531247|531248|531252|531255|531256|531262|531267|531272|531279|531282|531286|531289|531290|531293|531302|531304|531305|531309|531311|531321|531323|531330|531336|531339|531343|531344|531348|531349|531356|531358|531359|531363|531365|531372|531374|531378|531382|531386|531390|531394|531396|531403|531404|531407|531410|531430|531434|531437|531441|536216|536486|536487|536932|536933|538099|538100|538101|538102|538103|538104|538105|538106|538107|538108|538109|538110|538111|538112|538113|538114|538115|538116|538116|538117|538118|538119|538120|538121|538122|538123|538124|538125|538126|538127|538128|538129|538130|538131|538132|538133|538134|538135|538136|538137|538138|538139|538140|538141|538142|538143|538144|538145|538146|538147|538148|538149|538150|538151|538152|538153|538154|538155|538156|538157|538158|538159|538160|538161|538162|538163|538164|538165|538166|538167|538168|538169|538170|538171|538172|538173|538174|538175|538176|538177|538178|538179|538180|538181|538182|538183|538184|538185|538186|538187|538188|538189|538190|538191|538192|538193|538194|538195|538196|538197|538198|538199|538200|538201|538202|538203|538204|538205|538206|538207|538208|538209|538210|538211|538212|538213|538214|538215|538216|538217|538218|538219|538220|538221|538222|538223|538224|538225|538226|538227|538228|538229|538230|538231|538232|538233|538234|538235|538236|538237|538238|538239|551931|552201|552877|552878|552885|552915|552923|552926|552927|552930|552939|552945|552956|552965|552971|552972|552978|568578|568579|568760|568763|568765|568767|568769|568770|568771|568776|568783|568786|568787|568790|568794|568797|568801|568805|568806|568808|568827|568830|568833|568844|568849|568853|568857|568862|568863|568871|568875|568879|568885|568888|568890|568894|568896|568901|568904|568909|568913|568919|568921|568923|568925|568927|568930|568935|568938|568940|568945|568948|568954|568957|568963|568965|568966|568970|568972|568977|568979|568984|568989|568991|568995|570663|570664|570668|570749|570757|570758|570772|570774|570775|570778|570833|570838|570845|570850|570853|570855|570858|570860|570867|570869|570876|570879|570880|570882|570884|570885|570888|570895|570898|570899|570901|570903|570906|570915|570916|570917|570918|570918|570921|570924|570925|570927|570928|570930|570931|570932|570933|570934|570938|570940|570942|570944|570946|570948|570951|570952|570953|570956|570957|570959|570960|570961|570962|570963|570965|570966|570967|570968|570970|570971|570973|570975|570978|570980|570981|570982|570986|570988|570990|570990|570992|570994|570996|570998|571000|571001|571002|571004|571005|571006|571007|571008|571011|571012|571013|571014|571015|571016|571019|571021|571024|571025|571027|571028|571029|571031|571033|571034|571036|571038|571041|571045|571046|571049|571051|571052|571057|571058|571059|571060|571061|571063|571065|571066|571069|571073|571075|571078|571084|571085|571086|571102|571112|571116|571117|571118|571119|571124|571126|571132|571133|571138|571141|571144|571145|571151|571152|571160|571165|571169|571170|571171|571175|571176|571179|571191|571192|571199|571216|571218|571219|571223|571226|571228|571229|571241|571247|571254|571255|574249|574253|574254|574342|574343|574344|574346|574348|574350|574352|574354|574356|574358|574360|574362|574364|574366|574368|574370|574372|574374|574376|574378|574378|574379|574381|574383|574384|574385|574386|574387|574388|574389|574390|574391|574392|574393|574394|574395|574396|574397|574398|574399|574400|574401|574402|574403|574403|574404|574405|574406|574407|574408|574409|574410|574411|574412|574413|574414|574415|574416|574417|574418|574419|574420|574421|574422|574423|574424|574425|574426|574427|574428|574429|574430|574431|574432|574433|574434|574435|574436|575603|575975|575976|575977|575978|575979|575980|575981|575982|575983|575984|576342|576343|577620|577625|578002|578027|590165|609010|610069|610070|610075|610081|611851|612164|615874|619899|620580|620581|621556|621557|623343|623344|623345|623346|623635|623637|624623|624625|626344|645433|645434|645435|645436|645437|645438|645439|645440|645441|645442|645443|645444|645445|645446|645447|645448|645449|645450|645451|645452|645453|645454|645455|645456|645457|645458|645459|645460|645461|645462|645463|645464|645465|645466|645467|645468|645469|645470|645471|645472|645473|645474|645475|645476|645477|645478|645479|645480|645481|645482|645483|645484|645485|645486|645487|645488|645489|645490|645491|645492|645493|645494|645495|645496|645497|645498|645499|645500|645501|645502|645503|645504|645505|645506|645507|645508|645509|645510|645511|645512|645513|645514|645515|645516|645517|645518|645519|645520|645521|645522|645523|645524|645525|645526|645527|645528|645529|645530|645531|645532|645533|645534|645535|645536|645537|645538|645539|645540|645541|645542|645543|645544|645545|645546|645547|645548|645549|645550|645551|645552|645553|645554|645555|645556|645557|645558|645559|645560|645561|645562|645563|645564|645565|645566|645567|645568|645569|645570|645571|645572|645573|645574|645575|645576|645577|645578|645579|645580|645581|645582|645583|645584|645585|645586|645587|645588|645589|645590|645591|645592|645593|645594|645595|645596|645597|645598|645599|645600|645601|645602|645603|645604|645605|645606|645607|645608|645609|645610|645611|645612|645613|645614|645615|645616|645617|645618|645619|645620|645621|645622|645623|645624|645625|645626|645627|645628|645629|645630|645631|645632|645633|645634|645635|645636|645637|645638|645639|645640|645641|645642|645643|645644|645645|645646|645647|645648|645649|645650|645651|645652|645653|645654|645655|645656|645657|645658|645659|645660|645661|645662|645663|645664|645665|645666|645667|645668|645669|645670|645671|645672|645673|645674|645675|645676|645677|645678|645679|645680|645681|645682|645683|645684|645685|645686|645687|645688|645689|645690|645691|645692|645693|645694|645695|645696|645697|645698|645699|645700|645701|645702|645703|645704|645705|645706|645707|645708|645709|645710|645711|645712|645713|645714|645715|645716|645717|645718|645719|645720|645721|645722|645723|645724|645725|645726|645727|645728|645729|645730|645731|645732|645733|645734|645735|645736|645737|645738|645739|645740|645741|645742|645743|645744|645745|645746|645747|645748|645749|645750|645751|645752|645753|645754|645755|645756|645757|645758|645759|645760|645761|645762|645763|645764|645765|645766|645767|645768|645769|645770|645771|645772|645773|645774|645775|645776|645777|645778|645779|645780|645781|645782|645783|645784|645785|645786|645787|645788|645789|652626|652627|652632|652633|652701|652705|652710|652716|652717|652719|652722|652726|652738|652745|652751|652754|652758|652762|652764|652767|652773|652776|652798|652903|652906|652908|652913|652918|652921|652923|652926|652928|652929|652931|652933|653088|653089|653091|653093|653098|653104|653213|653214|653217|653226|653233|653235|653237|653239|653242|653248|653249|653262|653264|653347|653352|653391|653397|653401|653403|653408|653416|653417|653423|653427|653430|654140|678053|678054|679797|682492|682494|682495|682496|682497|682498|682499|682678|682679|682680|682681|682682|688758|688760|688761|690171|694065|694068|694070|694071|694072|694073|694075|694076|694078|694079|695733|695735|695736|704073|704074|704075|715357|727096|727098|740675|740676|740679|740680|740681|744952|755742|755745|755747|755748|755750|755754|755755|755756|755757|755760|755762|755763|760399|760528|760535|760553|771342|771343|771346|771349|771357|771364|771365|771366|771369|771370|771373|771375|771376|771378|771379|771384|771386|771399|771400|771407|771408|771411|771420|771421|771428|776251|776253|776264|776279|776289|776303|776306|776472|776617|776634|776643|776646|778337|778467|785492|785495|785500|785501|785505|785509|785512|785513|785514|785515|785517|785524|785526|785527|785533|787945|788133|788136|788222|788228|788908|789249|791688|791689|791690|791691|791692|791693|791694|791695|791696|791697|791698|791699|791700|791701|791702|791703|791704|791705|791706|791707|791708|791709|791710|791711|791712|791713|791714|791715|791716|791717|791718|791719|791720|791721|791722|791723|791724|791725|791726|791727|791728|791729|791730|791731|791732|791733|792537|792584|794063|794261|797515|800020|800027|804924|804925|804926|804927|804928|804929|804930|804931|804932|804933|804934|804935|804936|804937|804938|804939|804940|804941|804942|804943|804944|804945|804946|804947|804948|804949|804950|804951|804952|804953|804954|804955|804956|804957|804958|804959|804960|804961|804962|804963|804964|804965|804966|804967|804968|804969|804970|804971|804972|804973|804974|804975|804976|804977|804978|804979|804980|806386|806387|806388|806389|806390|806391|806392|806392|806393|806394|806395|806396|806397|806398|806399|806399|806400|806401|806402|806402|806403|806404|806405|806405|813083|813094|813109|813118|813126|813128|813133|813143|813149|813171|813175|813182|813183|813186|813212|813225|813228|813258|813274|813280|813282|813293|813334|813361|813367|813368|813373|813374|813380|813381|813386|813396|813400|813420|813423|813426|813429|813468|813474|813482|813488|813489|813496|813530|815671|815962|818701|818703|820994|820995|820996|820997|820998|820999|821000|821001|821002|821003|821004|821005|821006|821007|821008|821009|821010|821011|821012|821013|821014|821015|821016|821017|821018|821019|821020|821021|821022|821023|821024|821025|821026|821027|821029|821030|821031|821032|821033|821034|844841|844842|844843|844844|844845|844846|844847|844848|844849|844850|844851|844852|844853|844854|844855|844856|844857|844858|844859|844860|844861|844862|844863|844864|844865|844866|844867|844868|844869|844870|844871|844872|844873|844874|844875|844876|844877|844878|844879|844880|844881|844882|844883|844884|844885|844886|844887|844888|844889|844890|844891|844892|844893|844894|844895|844896|844897|844898|844899|844900|844901|844902|844903|844904|844905|844906|844907|844908|844909|844910|844911|844912|844913|844914|844915|844916|844917|844918|844919|844920|844921|844922|844923|844924|844925|844926|844927|844928|844929|844930|844931|844932|844933|844934|844935|844936|844937|844938|844939|844940|844941|844942|844943|844944|844945|844946|844947|844948|844949|844950|844951|844952|844953|844954|844955|844956|844957|844958|844959|844960|844961|844962|844963|844964|844965|844966|844967|844968|844969|844970|844971|844972|844973|844974|844975|844976|844977|844978|844979|844980|844981|844982|844983|844984|844985|844986|844987|844988|844989|844990|844991|844992|844993|844994|844995|844996|844997|844998|844999|845000|845001|845002|845003|845004|845005|845006|845007|845008|845009|845010|845011|845012|845013|845014|845015|845016|845017|845018|845019|845020|845021|845022|845023|845024|845025|845026|845027|845028|845029|845030|845031|845032|845033|845034|845035|845036|845037|845038|845039|845040|845041|845042|845043|845044|845045|845046|845047|845048|845049|845050|845051|845052|845053|845054|845055|845056|845057|845058|845059|845060|845061|845062|845063|845064|845065|845066|845067|845068|845069|845070|845071|845072|845073|845074|845075|845076|845077|845078|845079|845080|845081|845082|845083|845084|845085|845086|845087|845088|845089|845090|845091|845092|845093|845094|845095|845096|845097|845098|845099|845100|845101|845102|845103|845104|845105|845106|845107|845108|845109|845110|845111|845112|845113|845114|845115|845116|845117|845118|845119|845120|845121|845122|845123|845124|845125|845126|845127|845128|845129|845130|845131|845132|845133|845134|845135|845136|845137|845138|845139|845140|845141|845142|845143|845144|845145|845146|845147|845148|845149|845150|845151|845152|845153|845154|845155|845156|845157|845158|845159|845160|845161|845162|845163|845164|845165|845166|845167|845168|845169|845170|845171|845172|845173|845174|845175|845176|845177|845178|845179|845180|845181|845182|845183|845184|845185|845186|845187|845188|845189|845190|845191|845192|845193|845194|845195|845196|845197|845198|845199|845200|845201|845202|845203|845204|845205|851699|851701|851703|851705|851707|851709|851711|852153|852163|852165|852167|852169|852171|852173|852175|852177|852179|852181|852183|852185|852187|852189|852190|852193|852690|852696|852699|852700|852703|852707|852710|852711|852713|852714|852716|852720|852722|852723|852724|852726|852730|852732|852733|852734|852857|852858|852859|852861|852865|852867|852868|852869|852871|858415|858416|858429|858433|860371|861164|861165|861166|861167|877176|877177|877178|877179|877180|877181|877182|877183|877184|877185|877186|877187|877188|877189|877190|877191|877192|877193|877194|877195|877196|877197|877198|877199|877200|877201|877202|877203|877204|877205|877206|877207|877208|880495|880496|880497|880498|880499|903617|917231|917232|919718|919719|919720|919721|919722|919723|919724|920369|920370|928093|928094|928095|928096|928097|928098|928099|928100|928101|928102|928103|928104|928105|928106|928107|928108|928109|928110|928111|928112|928113|928114|928115|928116|928117|928118|928119|928120|928121|928122|928123|928124|928125|928126|928127|928128|928129|928130|928131|928132|928133|928134|928135|928136|928137|928138|928139|928140|928141|928142|928143|928144|928145|928146|928147|928148|928149|928150|928151|928152|928153|928154|928155|928156|928157|928158|928159|928160|928161|928162|928163|928164|928165|928166|928167|928168|928169|928170|928171|928172|928173|928174|928175|928176|928177|928178|928179|928180|928181|928182|928183|928184|928185|928186|928187|928188|928189|928190|928191|928192|928193|928194|928195|928196|928197|928198|928199|928200|928201|928202|928203|928204|928205|928206|928207|928208|928209|928210|928211|928212|928213|928214|928215|928216|928217|928218|928219|928220|937760|937761|937762|937763|937764|937765|937766|937767|937768|937769|937770|937771|937772|937773|937774|937775|937776|937777|937778|937779|937780|937781|937782|937783|937784|937785|937786|937787|937788|937789|937790|937791|937792|937793|937794|937795|937796|937797|937798|937799|937800|937801|937802|937803|937804|937805|937806|937807|937808|937809|937810|937811|937812|937813|937814|937815|937816|937817|937818|937819|937820|937821|937822|937823|937824|937825|937826|937827|937828|937829|937830|937831|937832|937833|937834|937835|937836|937837|937838|937839|937840|937841|937842|937843|937844|937845|937846|937847|937848|937849|937850|937851|937852|937853|937854|937855|937856|937857|937858|937859|937860|937861|937862|937863|937864|937865|937866|937867|937868|937869|937870|937871|937872|937873|937874|937875|937876|937877|937878|937879|937880|937881|937882|937883|937884|940389|940390|940391|940392|940393|940394|940395|940396|940397|940398|940399|940400|940401|940402|940403|940404|940405|940406|940407|941157|941162|941163|941164|941165|941166|941167|941168|941169|941170|941171|941172|941173|941174|941175|941176|941177|941178|949751|949752|949753|949754|949755|949756|949757|949758|949759|949760|949761|949762|949763|949764|949765|949766|949767|949768|949769|949770|949771|949772|949773|949774|949775|949776|949777|949778|949779|949780|949781|949782|949783|949784|949785|949786|949787|949788|949789|949790|949791|949792|949793|949794|949795|949796|949797|949798|949799|949800|949801|949802|949803|949804|949805|949806|949807|949808|949809|949810|949811|949812|949813|949814|949815|949816|949817|949818|949819|949820|949821|949822|949823|949824|949825|949826|949827|949828|949829|949830|949831|949832|949833|949834|949835|949836|949837|949838|949839|949840|949841|949842|949843|949844|949845|949846|949847|949848|949849|949850|949851|949852|949853|949854|949855|949856|949857|949858|949859|949860|949861|949862|949863|949864|949865|949866|949867|949868|949869|949870|949871|949872|958021|958022|958023|958024|958025|958026|958027|958028|958029|958030|958031|958032|958033|958034|958035|958036|958037|958038|958039|958040|958041|958042|958043|958044|958045|958046|958047|958048|958049|958050|958051|958052|958053|958054|958055|958056|958057|958058|958059|958060|958061|958062|958063|958064|958065|958066|958067|958068|958069|958070|958071|958072|958073|958074|958075|958076|958077|958078|958079|958080|958081|958082|958083|960195|960196|960197|960199|960200|960201|960202|960203|960204|960205|960206|960207|960208|960209|960210|960211|960212|960875|960876|960877|960878|960879|960880|960881|960882|964471|964472|964473|964474|964475|964689|966166|969613|972491|974885|975833|975951|980380|980552|983929|984084|984085|984086|984087|984088|984089|984090|984091|984092|984093|984094|984095|984096|984097|984098|984099|984100|984101|984102|984103|984104|984105|984106|984107|984108|984109|984110|984111|984112|984113|984114|984115|984116|984117|984118|984119|984120|984121|984122|984123|984124|984125|984126|984127|984128|984129|984130|984131|984132|984133|984134|984135|984136|984137|984138|984139|984140|984141|984142|984143|984144|984145|984146|984147|984148|984149|984150|984151|984152|984153|984154|984155|984156|984157|984158|984159|984160|984161|984162|984163|984164|984165|984166|984167|984168|984169|984170|984171|984172|984173|984174|984175|984176|984177|984178|984179|984180|984181|984182|984183|984184|984185|984186|984187|984188|984189|984190|984191|984192|984193|984194|984195|984196|984197|984198|984199|984200|984201|984202|984203|984204|984205|984206|984207|984208|984209|984210|984211|984212|984213|984214|984215|984216|984217|984218|984219|984220|984221|984222|984223|984224|984225|984226|984227|984228|984229|984230|984231|984232|984233|984234|984235|984236|984237|984238|984239|984240|984241|984242|984243|984244|984245|984246|984247|984248", "text": "Neurofibromatosis, type 1" }, { - "baseId": "15375|48599|53763|184559|235823|361009|361010|467795|514075|514077|514081|623635|623636|623637|623638|624836|625836|801168", + "upstreamId": "15375|48599|53763|184559|235823|361009|361010|467795|514075|514077|514081|623635|623636|623637|623638|624836|625836|801168", "text": "Neurofibromas" }, { - "baseId": "15375|186247|361009|433256|581787", + "upstreamId": "15375|186247|361009|433256|581787", "text": "Optic nerve glioma" }, { - "baseId": "15375|48599|178504|222607|263242|361009|361009|361010|361011|361014|426213|514073|514074|514075|514077|514079|514081|514179|514180|551417|551418", + "upstreamId": "15375|48599|178504|222607|263242|361009|361009|361010|361011|361014|426213|514073|514074|514075|514077|514079|514081|514179|514180|551417|551418", "text": "Neurofibromatosis type 6" }, { - "baseId": "15375|48599|186247|361010|361013|514077|514081", + "upstreamId": "15375|48599|186247|361010|361013|514077|514081", "text": "Axillary freckling" }, { - "baseId": "15375|15380|15381|15382|15402|50109|50111|50112|50114|50117|50118|50119|79232|79232|79254|138619|138620|150747|150951|151055|151165|151425|151461|151558|151609|151696|151696|151711|152518|152518|184501|184505|184506|184518|184524|184526|184536|184545|184563|184571|184580|184584|184600|184603|184621|184627|184643|184644|184644|184647|184663|184669|184673|184674|184676|184681|184685|184694|184699|184701|184710|184711|184719|184724|184734|184739|184744|184745|184748|184771|184776|184794|184796|205416|205418|213246|213278|213289|213296|222633|222641|230764|235548|235578|235633|235689|235726|235758|242618|242644|256113|264844|327954|327955|327957|327958|327961|327978|327979|327980|327981|327982|327983|327986|327988|337800|337802|337803|337806|337808|337811|337813|337815|337817|337819|337821|337823|344012|344013|344021|344023|344027|344029|344034|344038|344043|344046|344049|344051|344059|344060|344065|344066|344071|344072|344073|345438|345439|345440|345441|345442|345444|345445|345447|345452|345459|345464|345469|345471|375841|401720|402482|402525|402547|420826|466548|467417|467718|467751|478119|478185|478388|482128|530861|570918|570990|574403|800027|877176|877177|877178|877179|877180|877181|877182|877183|877184|877185|877186|877187|877188|877189|877190|877191|877192|877193|877194|877195|877196|877197|877198|877199|877200|877201|877202|877203|877204|877205|877206|877207|877208|880495|880496|880497|880498|880499", + "upstreamId": "15375|15380|15381|15382|15402|50109|50111|50112|50114|50117|50118|50119|79232|79232|79254|138619|138620|150747|150951|151055|151165|151425|151461|151558|151609|151696|151696|151711|152518|152518|184501|184505|184506|184518|184524|184526|184536|184545|184563|184571|184580|184584|184600|184603|184621|184627|184643|184644|184644|184647|184663|184669|184673|184674|184676|184681|184685|184694|184699|184701|184710|184711|184719|184724|184734|184739|184744|184745|184748|184771|184776|184794|184796|205416|205418|213246|213278|213289|213296|222633|222641|230764|235548|235578|235633|235689|235726|235758|242618|242644|256113|264844|327954|327955|327957|327958|327961|327978|327979|327980|327981|327982|327983|327986|327988|337800|337802|337803|337806|337808|337811|337813|337815|337817|337819|337821|337823|344012|344013|344021|344023|344027|344029|344034|344038|344043|344046|344049|344051|344059|344060|344065|344066|344071|344072|344073|345438|345439|345440|345441|345442|345444|345445|345447|345452|345459|345464|345469|345471|375841|401720|402482|402525|402547|420826|466548|467417|467718|467751|478119|478185|478388|482128|530861|570918|570990|574403|800027|877176|877177|877178|877179|877180|877181|877182|877183|877184|877185|877186|877187|877188|877189|877190|877191|877192|877193|877194|877195|877196|877197|877198|877199|877200|877201|877202|877203|877204|877205|877206|877207|877208|880495|880496|880497|880498|880499", "text": "Caf\u00e9-au-lait macules with pulmonary stenosis" }, { - "baseId": "15375|15382|15388|15397|15398|15407|15408|50109|50111|50112|50114|50117|50118|50119|79232|79254|138619|138620|150747|150951|151055|151165|151425|151461|151558|151609|151696|151696|151711|152518|152518|184501|184505|184506|184518|184524|184526|184536|184545|184563|184571|184580|184584|184600|184603|184621|184627|184643|184644|184644|184647|184663|184669|184673|184674|184676|184681|184685|184694|184699|184701|184710|184711|184719|184724|184734|184739|184744|184745|184748|184771|184776|184794|184796|205416|205418|213246|213278|213289|213296|222633|222641|230764|235548|235578|235633|235689|235726|235758|242618|242644|256113|264844|327954|327955|327957|327958|327961|327978|327979|327980|327981|327982|327983|327986|327988|337800|337802|337803|337806|337808|337811|337813|337815|337817|337819|337821|337823|344012|344013|344021|344023|344027|344029|344034|344038|344043|344046|344049|344051|344059|344060|344065|344066|344071|344072|344073|345438|345439|345440|345441|345442|345444|345445|345447|345452|345459|345464|345469|345471|375841|401720|402482|402525|402547|420826|466548|467417|467718|467751|478119|478185|478388|482128|530861|570918|570990|574403|800027|877176|877177|877178|877179|877180|877181|877182|877183|877184|877185|877186|877187|877188|877189|877190|877191|877192|877193|877194|877195|877196|877197|877198|877199|877200|877201|877202|877203|877204|877205|877206|877207|877208|880495|880496|880497|880498|880499", + "upstreamId": "15375|15382|15388|15397|15398|15407|15408|50109|50111|50112|50114|50117|50118|50119|79232|79254|138619|138620|150747|150951|151055|151165|151425|151461|151558|151609|151696|151696|151711|152518|152518|184501|184505|184506|184518|184524|184526|184536|184545|184563|184571|184580|184584|184600|184603|184621|184627|184643|184644|184644|184647|184663|184669|184673|184674|184676|184681|184685|184694|184699|184701|184710|184711|184719|184724|184734|184739|184744|184745|184748|184771|184776|184794|184796|205416|205418|213246|213278|213289|213296|222633|222641|230764|235548|235578|235633|235689|235726|235758|242618|242644|256113|264844|327954|327955|327957|327958|327961|327978|327979|327980|327981|327982|327983|327986|327988|337800|337802|337803|337806|337808|337811|337813|337815|337817|337819|337821|337823|344012|344013|344021|344023|344027|344029|344034|344038|344043|344046|344049|344051|344059|344060|344065|344066|344071|344072|344073|345438|345439|345440|345441|345442|345444|345445|345447|345452|345459|345464|345469|345471|375841|401720|402482|402525|402547|420826|466548|467417|467718|467751|478119|478185|478388|482128|530861|570918|570990|574403|800027|877176|877177|877178|877179|877180|877181|877182|877183|877184|877185|877186|877187|877188|877189|877190|877191|877192|877193|877194|877195|877196|877197|877198|877199|877200|877201|877202|877203|877204|877205|877206|877207|877208|880495|880496|880497|880498|880499", "text": "Neurofibromatosis, familial spinal" }, { - "baseId": "15375|15382|15389|15390|15391|20091|20092|20093|27619|27621|27622|27623|28363|28364|28365|28366|28367|28368|28368|28369|28370|28371|28372|28373|28375|28376|28377|28378|28379|28940|38779|48247|48599|48957|48959|48972|48982|48983|48983|48998|49010|49026|49028|49028|49029|49029|49032|49040|50109|50118|53766|79232|79254|125841|151055|151461|151558|151696|152518|172332|175345|175398|175540|175854|184644|184663|184694|184701|184734|184744|184776|205418|213278|213296|222633|230257|235548|235689|235758|242618|264844|401720|420826|466548|467417|467718|467751|478388|482128|530861|538420|539096|570918|570990|574403|645561|801168|801197", + "upstreamId": "15375|15382|15389|15390|15391|20091|20092|20093|27619|27621|27622|27623|28363|28364|28365|28366|28367|28368|28368|28369|28370|28371|28372|28373|28375|28376|28377|28378|28379|28940|38779|48247|48599|48957|48959|48972|48982|48983|48983|48998|49010|49026|49028|49028|49029|49029|49032|49040|50109|50118|53766|79232|79254|125841|151055|151461|151558|151696|152518|172332|175345|175398|175540|175854|184644|184663|184694|184701|184734|184744|184776|205418|213278|213296|222633|230257|235548|235689|235758|242618|264844|401720|420826|466548|467417|467718|467751|478388|482128|530861|538420|539096|570918|570990|574403|645561|801168|801197", "text": "Juvenile myelomonocytic leukemia" }, { - "baseId": "15375|15382|15402|15403|15404|39949|49242|50109|50111|50112|50114|50117|50118|50119|79232|79254|138619|138620|150747|150951|151055|151165|151425|151461|151558|151609|151696|151696|151711|152518|152518|184501|184505|184506|184518|184524|184526|184536|184545|184563|184571|184580|184584|184600|184603|184621|184627|184643|184644|184644|184647|184663|184669|184673|184674|184676|184681|184685|184694|184699|184701|184710|184711|184719|184724|184734|184739|184744|184745|184748|184771|184776|184794|184796|205416|205418|213246|213278|213289|213296|222633|222641|230764|235548|235578|235633|235689|235726|235758|242034|242618|242644|256113|264670|264844|327954|327955|327957|327958|327961|327978|327979|327980|327981|327982|327983|327986|327988|337800|337802|337803|337806|337808|337811|337813|337815|337817|337819|337821|337823|344012|344013|344021|344023|344027|344029|344034|344038|344043|344046|344049|344051|344059|344060|344065|344066|344071|344072|344073|345438|345439|345440|345441|345442|345444|345445|345447|345452|345459|345464|345469|345471|375841|401720|402482|402525|402547|420826|466548|467417|467718|467751|478119|478185|478388|482128|530861|538217|570918|570990|574403|800027|877176|877177|877178|877179|877180|877181|877182|877183|877184|877185|877186|877187|877188|877189|877190|877191|877192|877193|877194|877195|877196|877197|877198|877199|877200|877201|877202|877203|877204|877205|877206|877207|877208|880495|880496|880497|880498|880499", + "upstreamId": "15375|15382|15402|15403|15404|39949|49242|50109|50111|50112|50114|50117|50118|50119|79232|79254|138619|138620|150747|150951|151055|151165|151425|151461|151558|151609|151696|151696|151711|152518|152518|184501|184505|184506|184518|184524|184526|184536|184545|184563|184571|184580|184584|184600|184603|184621|184627|184643|184644|184644|184647|184663|184669|184673|184674|184676|184681|184685|184694|184699|184701|184710|184711|184719|184724|184734|184739|184744|184745|184748|184771|184776|184794|184796|205416|205418|213246|213278|213289|213296|222633|222641|230764|235548|235578|235633|235689|235726|235758|242034|242618|242644|256113|264670|264844|327954|327955|327957|327958|327961|327978|327979|327980|327981|327982|327983|327986|327988|337800|337802|337803|337806|337808|337811|337813|337815|337817|337819|337821|337823|344012|344013|344021|344023|344027|344029|344034|344038|344043|344046|344049|344051|344059|344060|344065|344066|344071|344072|344073|345438|345439|345440|345441|345442|345444|345445|345447|345452|345459|345464|345469|345471|375841|401720|402482|402525|402547|420826|466548|467417|467718|467751|478119|478185|478388|482128|530861|538217|570918|570990|574403|800027|877176|877177|877178|877179|877180|877181|877182|877183|877184|877185|877186|877187|877188|877189|877190|877191|877192|877193|877194|877195|877196|877197|877198|877199|877200|877201|877202|877203|877204|877205|877206|877207|877208|880495|880496|880497|880498|880499", "text": "Neurofibromatosis-Noonan syndrome" }, { - "baseId": "15382|15384|15393|79199|79204|79206|151227|184512|184776|222607|222630|230771|235788|401712|402450|422155|433236|514076|538116|574378|806386|806387|806388|806389|806390|806391|806392|806393|806394|806395|806396|806397|806398|806399|806400|806401|806402|806403|806404|806405", + "upstreamId": "15382|15384|15393|79199|79204|79206|151227|184512|184776|222607|222630|230771|235788|401712|402450|422155|433236|514076|538116|574378|806386|806387|806388|806389|806390|806391|806392|806393|806394|806395|806396|806397|806398|806399|806400|806401|806402|806403|806404|806405", "text": "Tibial pseudoarthrosis" }, { - "baseId": "15393|22858|24276|27395|27405|27408|27409|27641|27642|28849|46200|46415|46641|46678|66068|66161|66352|70402|96029|99230|133266|133278|150772|151677|152315|176641|184694|186247|222630|230767|235062|241976|242675|245069|362765|363028|363029|363030|363479|406737|421138|485675|538217|568925|966354|966884|966885|966886|966887", + "upstreamId": "15393|22858|24276|27395|27405|27408|27409|27641|27642|28849|46200|46415|46641|46678|66068|66161|66352|70402|96029|99230|133266|133278|150772|151677|152315|176641|184694|186247|222630|230767|235062|241976|242675|245069|362765|363028|363029|363030|363479|406737|421138|485675|538217|568925|966354|966884|966885|966886|966887", "text": "Rhabdomyosarcoma (disease)" }, { - "baseId": "15414|15420|15425|15426|15427|15428", + "upstreamId": "15414|15420|15425|15426|15427|15428", "text": "Galactosialidosis, late infantile" }, { - "baseId": "15415", + "upstreamId": "15415", "text": "Galactosialidosis, adult" }, { - "baseId": "15415|15416|15417|15418|15419|15420|15422|106589|192221|227690|260848|335561|335568|335569|335570|335572|335575|335576|335580|345317|345324|345326|345331|345340|345347|345353|350015|350018|350021|350022|351036|351040|351042|351043|351045|351048|351049|351052|351053|351056|351057|351060|469372|470407|534117|571253|573555|613167|620659|621643|648720|705507|786383|789390|848430|848431|848432|851851|886160|886161|886162|886163|886164|886165|886166|887461|887462|887463|905963|919915|929201|929202|938987|951109|958851|960318|960941|963081|963082|969192", + "upstreamId": "15415|15416|15417|15418|15419|15420|15422|106589|192221|227690|260848|335561|335568|335569|335570|335572|335575|335576|335580|345317|345324|345326|345331|345340|345347|345353|350015|350018|350021|350022|351036|351040|351042|351043|351045|351048|351049|351052|351053|351056|351057|351060|469372|470407|534117|571253|573555|613167|620659|621643|648720|705507|786383|789390|848430|848431|848432|851851|886160|886161|886162|886163|886164|886165|886166|887461|887462|887463|905963|919915|929201|929202|938987|951109|958851|960318|960941|963081|963082|969192", "text": "Combined deficiency of sialidase AND beta galactosidase" }, { - "baseId": "15422|15423|15424", + "upstreamId": "15422|15423|15424", "text": "Galactosialidosis, early infantile" }, { - "baseId": "15429|15430|15431|15432|15433|18928|18972|176964|177227|177752|181419|251827|251828|296457|296458|296464|296465|296473|296474|296476|296480|296485|296489|296493|296496|296497|298321|298322|298330|298353|298356|298357|298358|298365|298380|298381|298382|298396|298397|298398|298400|302465|302469|302472|302473|302474|302476|302488|302489|302493|302499|302723|302726|302729|302730|302733|302737|302740|302741|302742|302755|302758|302759|302762|302763|302768|302769|302770|362043|362044|520161|547815|612272|633655|734962|830547|893610|893611|893612|893613|893614|893615|893616|893617|893618|893619|893620|893621|893622|893623|893624|893625|893626|893627|893628|893629|893630|893631|893632|893633|893634|893635|893636|893637|893638|893639|893640|964248", + "upstreamId": "15429|15430|15431|15432|15433|18928|18972|176964|177227|177752|181419|251827|251828|296457|296458|296464|296465|296473|296474|296476|296480|296485|296489|296493|296496|296497|298321|298322|298330|298353|298356|298357|298358|298365|298380|298381|298382|298396|298397|298398|298400|302465|302469|302472|302473|302474|302476|302488|302489|302493|302499|302723|302726|302729|302730|302733|302737|302740|302741|302742|302755|302758|302759|302762|302763|302768|302769|302770|362043|362044|520161|547815|612272|633655|734962|830547|893610|893611|893612|893613|893614|893615|893616|893617|893618|893619|893620|893621|893622|893623|893624|893625|893626|893627|893628|893629|893630|893631|893632|893633|893634|893635|893636|893637|893638|893639|893640|964248", "text": "Tay-Sachs disease, variant AB" }, { - "baseId": "15434|39947|39948|57080|57082|57083|57084|57085|57086|57087|57088|57089|57090|57091|57092|57093|57094|57096|57097|57098|57100|57101|57102|57104|57105|57106|57107|57108|57109|57110|57111|57112|57113|57115|176549|176550|176552|176554|176555|176556|176560|176561|176564|176565|176567|176568|176569|176572|176573|176574|176576|176577|176580|176581|176584|176686|176687|176688|176689|176690|176691|176692|176696|176697|176699|176700|176701|176703|176706|176707|176708|176710|176711|176712|176713|176714|176715|176717|176718|176719|176720|176721|176722|188895|191602|193215|195439|230914|230915|230916|230917|230918|230920|230925|230927|230930|230931|230934|230936|230937|230938|230939|230943|230945|230947|230948|230949|230950|230951|230952|230953|230956|230959|230960|230962|230965|230966|230967|230971|237624|256664|256665|256666|256667|265968|266985|270991|271000|271621|273174|274131|275377|331379|331381|331382|331384|331387|331395|331396|331400|331402|331405|331414|341668|341671|341673|341677|341682|341683|341684|341685|341688|341691|341693|341696|341698|341700|341702|341707|341709|341711|341713|341727|347048|347050|347055|347060|347067|347069|347072|347073|347079|347083|347086|347088|347089|347090|348362|348366|348367|348374|348375|348382|348384|348385|348388|348390|348391|348398|348399|348403|348408|348409|389251|404837|404838|410371|445979|492016|497299|497504|497577|497578|497579|497582|497583|497585|497599|497712|497713|497714|497717|497728|513373|514275|538477|548667|548682|549036|586920|620620|620621|620898|654850|654854|654856|654857|654858|654859|654860|654861|656494|669527|677287|727736|727737|741383|741384|741385|741387|756465|756466|756467|756469|756472|760635|772156|772159|772161|772167|772169|772172|772175|772178|772182|772185|772190|776508|776511|785917|785927|785928|785929|785931|788276|793714|800089|800090|802079|806020|857692|861597|879172|879173|879174|879175|879176|879177|879178|879179|879180|879181|879182|879183|879184|879185|879186|879187|879188|879189|879190|879191|879192|879193|879194|879195|879196|879197|879198|879199|879200|879201|879202|879203|879204|879205|879206|879207|879208|879209|879210|879211|879212|879213|879214|879215|879216|879217|879218|879219|880654|880655|880656|880657|880658|880659|970363|970364|970365|970366|970367|970368|979945|979946|979947|979948|979949|979950|979951|979952|979953|979954|979955|979956|979957", + "upstreamId": "15434|39947|39948|57080|57082|57083|57084|57085|57086|57087|57088|57089|57090|57091|57092|57093|57094|57096|57097|57098|57100|57101|57102|57104|57105|57106|57107|57108|57109|57110|57111|57112|57113|57115|176549|176550|176552|176554|176555|176556|176560|176561|176564|176565|176567|176568|176569|176572|176573|176574|176576|176577|176580|176581|176584|176686|176687|176688|176689|176690|176691|176692|176696|176697|176699|176700|176701|176703|176706|176707|176708|176710|176711|176712|176713|176714|176715|176717|176718|176719|176720|176721|176722|188895|191602|193215|195439|230914|230915|230916|230917|230918|230920|230925|230927|230930|230931|230934|230936|230937|230938|230939|230943|230945|230947|230948|230949|230950|230951|230952|230953|230956|230959|230960|230962|230965|230966|230967|230971|237624|256664|256665|256666|256667|265968|266985|270991|271000|271621|273174|274131|275377|331379|331381|331382|331384|331387|331395|331396|331400|331402|331405|331414|341668|341671|341673|341677|341682|341683|341684|341685|341688|341691|341693|341696|341698|341700|341702|341707|341709|341711|341713|341727|347048|347050|347055|347060|347067|347069|347072|347073|347079|347083|347086|347088|347089|347090|348362|348366|348367|348374|348375|348382|348384|348385|348388|348390|348391|348398|348399|348403|348408|348409|389251|404837|404838|410371|445979|492016|497299|497504|497577|497578|497579|497582|497583|497585|497599|497712|497713|497714|497717|497728|513373|514275|538477|548667|548682|549036|586920|620620|620621|620898|654850|654854|654856|654857|654858|654859|654860|654861|656494|669527|677287|727736|727737|741383|741384|741385|741387|756465|756466|756467|756469|756472|760635|772156|772159|772161|772167|772169|772172|772175|772178|772182|772185|772190|776508|776511|785917|785927|785928|785929|785931|788276|793714|800089|800090|802079|806020|857692|861597|879172|879173|879174|879175|879176|879177|879178|879179|879180|879181|879182|879183|879184|879185|879186|879187|879188|879189|879190|879191|879192|879193|879194|879195|879196|879197|879198|879199|879200|879201|879202|879203|879204|879205|879206|879207|879208|879209|879210|879211|879212|879213|879214|879215|879216|879217|879218|879219|880654|880655|880656|880657|880658|880659|970363|970364|970365|970366|970367|970368|979945|979946|979947|979948|979949|979950|979951|979952|979953|979954|979955|979956|979957", "text": "Deafness, autosomal recessive 77" }, { - "baseId": "15435", + "upstreamId": "15435", "text": "MORM syndrome" }, { - "baseId": "15436|15437|15438|15439|16376|70955|106470|131761|131829|133773|134710|134711|134712|134713|134714|134716|134717|134718|134719|134720|134721|134722|134723|134724|135260|152874|177143|178098|190671|191108|191984|192938|195418|196356|198620|198621|198627|207657|207658|214199|214305|214336|214337|221117|250480|253466|253470|253480|253481|265648|307613|307614|307615|307621|307622|307644|307645|307651|307654|307656|307657|311884|311885|311894|311902|317469|317472|317479|317481|317482|317484|317941|317942|317952|317954|317960|317961|317965|317968|317986|317987|317992|362132|362148|368864|394140|397048|622892|626308|641418|685155|685156|687440|692638|751560|788833|790558|790559|790560|790589|790590|790591|790823|790824|791280|791281|791282|791283|791284|791285|791286|835867|856632|901531|901532|901533|901534|901535|901536|901537|901538|901539|901540|901541|901542|901543|901544|901545|901546|901547|903354|919206|919207|920271|974516", + "upstreamId": "15436|15437|15438|15439|16376|70955|106470|131761|131829|133773|134710|134711|134712|134713|134714|134716|134717|134718|134719|134720|134721|134722|134723|134724|135260|152874|177143|178098|190671|191108|191984|192938|195418|196356|198620|198621|198627|207657|207658|214199|214305|214336|214337|221117|250480|253466|253470|253480|253481|265648|307613|307614|307615|307621|307622|307644|307645|307651|307654|307656|307657|311884|311885|311894|311902|317469|317472|317479|317481|317482|317484|317941|317942|317952|317954|317960|317961|317965|317968|317986|317987|317992|362132|362148|368864|394140|397048|622892|626308|641418|685155|685156|687440|692638|751560|788833|790558|790559|790560|790589|790590|790591|790823|790824|791280|791281|791282|791283|791284|791285|791286|835867|856632|901531|901532|901533|901534|901535|901536|901537|901538|901539|901540|901541|901542|901543|901544|901545|901546|901547|903354|919206|919207|920271|974516", "text": "Joubert syndrome 1" }, { - "baseId": "15439|20341|176924|263175|263178|263211|263399|263412|538431", + "upstreamId": "15439|20341|176924|263175|263178|263211|263399|263412|538431", "text": "16 conditions" }, { - "baseId": "15440|810787|970938", + "upstreamId": "15440|810787|970938", "text": "Paragangliomas 2" }, { - "baseId": "15440|21932|21935|21936|21939|21940|21945|21946|21956|22283|27817|27817|27818|27820|27822|27830|27831|33493|34203|38741|38743|38851|45429|50211|50212|50215|50275|50276|53808|53809|53813|132476|132477|132478|132479|132480|135720|135721|135722|135723|135724|135725|135726|135727|135728|135729|135730|138931|138932|138933|139913|143270|150487|150956|151185|151538|151589|151761|151770|151825|152351|152477|152478|165953|172353|172492|172493|173538|175057|175063|181595|181600|181603|181608|181610|181611|181613|181616|181616|181619|181623|181624|181625|181626|181627|181628|182199|182200|182201|182202|182203|183478|183482|184109|194371|196490|197512|215422|221085|221617|224306|226816|226817|226818|226821|226822|226823|226824|226825|226826|232167|232175|232176|232177|232179|232187|233464|234442|234443|234445|235082|235084|235087|238163|238164|238183|238187|238190|238358|239022|239023|239024|239025|239026|239027|239028|239805|239806|239820|239843|239848|241044|241160|241161|241162|241163|241855|241856|241857|241858|241859|247306|247307|247309|247311|251937|251940|251943|259746|264583|270760|276981|276982|276984|276989|276991|276993|276998|276999|277005|277013|277243|277246|277247|277251|277255|277259|277264|277268|277274|277279|277358|277365|277555|277557|277916|277948|277984|277995|277998|278010|278056|278059|278061|278067|278086|278089|278406|278421|278427|278435|287600|287607|287611|288381|291322|297296|297298|303497|303503|303504|303688|303695|303696|303703|312394|312395|312400|314382|314393|314394|318274|318276|318286|321006|321030|324403|324407|324410|325142|327101|327104|327110|327115|327118|328197|328204|330108|353066|358787|358794|369831|372258|384402|390005|390592|390894|390899|390919|390920|393117|393122|393123|393127|393137|393141|393143|393269|393270|393280|393283|393284|393295|393493|393494|393496|394926|395037|395291|395462|398027|398230|398238|398249|398257|398327|398332|398685|398690|398692|398696|398768|398782|398789|398797|398801|399591|399697|399708|399715|399847|399855|399856|399858|399863|400239|400241|400245|400249|400437|400440|400445|406048|420734|420746|420755|425903|432022|432023|432024|432025|432026|432027|432028|432029|432030|432031|432032|432033|432034|432035|432036|432038|432039|432040|432041|432042|432043|432045|432046|432047|432048|432049|432050|432051|432052|432053|432054|432055|432056|443319|447529|448558|451506|451510|451512|451755|451764|451766|451771|451775|451776|451782|451789|451838|451841|451843|451846|451849|451857|451863|451873|451949|451960|451963|451965|451973|451974|451976|455786|460881|461212|461216|461227|461228|461395|461396|461399|461718|461721|461725|461733|461734|461736|461738|461739|462041|462044|462045|463418|463423|463425|463427|463717|463989|463998|464318|464325|464435|464439|464440|464442|472339|473261|473271|473273|473274|473282|473286|473301|473302|473307|473314|473317|473325|473425|473427|473438|474336|475971|475974|476257|476271|476449|476450|476453|476460|477031|477128|477290|477643|496595|496596|518679|518686|518687|518690|518694|518769|518772|518780|518859|518861|518864|518865|518866|518867|518869|518874|518876|521369|526266|526268|526277|526278|526281|526499|526501|526502|526778|526779|526780|526785|528313|528316|528319|528688|528690|528695|528767|528772|558694|558696|559166|559205|559207|559209|559211|561010|561020|561021|561023|562119|562120|562122|562129|562130|563149|564761|564764|564766|565867|565870|566572|566582|566585|567366|572877|572882|630630|630631|630632|630633|630634|630635|630636|630637|630638|630639|630640|630641|630642|630643|630644|630645|630646|630647|630648|630649|630650|630651|630652|630653|630654|630655|640178|640179|640180|640182|640183|640184|640185|640186|640187|640188|640189|640190|640191|640192|640193|642628|642629|642630|642631|642632|642633|642634|650856|651018|651019|652100|652128|652214|652416|652548|655488|683521|683522|684504|687796|687797|689721|691235|693063|697704|701828|702953|721426|733629|747818|747820|760071|763465|763467|776010|781485|787159|787994|790301|796604|807439|807441|807445|807447|807449|807451|807454|807456|807458|807465|808623|810780|810781|810786|810787|810790|810793|811904|811908|819284|819285|819286|820390|820632|820633|827127|827128|827129|827130|827131|827132|827133|827134|827135|827136|827137|827138|827139|827140|827141|827142|827143|827144|827145|827146|827147|827148|830799|838583|838584|838585|838586|838587|838588|838589|838590|838591|838592|838593|838594|838595|841653|841654|841655|841656|841657|841658|841659|841660|841661|841662|851569|862616|862617|862618|862619|862620|862621|862622|862623|862624|862625|862626|862627|862628|862629|862630|865021|865032|867044|867045|867046|867047|867048|867049|868168|868169|868170|868171|868172|868604|868664|872094|894085|894086|894087|894088|894089|896089|917074|922951|922952|922953|922954|922955|926282|926283|926284|926285|926286|926287|927144|927145|927146|931619|931620|931621|931622|931623|931624|931625|931626|935607|935608|935609|935610|935611|935612|935613|936684|941001|941064|943155|943156|943157|943158|943159|943160|943161|943162|943163|943164|943165|943166|943167|943168|947510|947511|947513|947514|947515|947516|948627|948628|948629|948630|948631|953252|953253|953254|953255|953256|956537|956538|980139", + "upstreamId": "15440|21932|21935|21936|21939|21940|21945|21946|21956|22283|27817|27817|27818|27820|27822|27830|27831|33493|34203|38741|38743|38851|45429|50211|50212|50215|50275|50276|53808|53809|53813|132476|132477|132478|132479|132480|135720|135721|135722|135723|135724|135725|135726|135727|135728|135729|135730|138931|138932|138933|139913|143270|150487|150956|151185|151538|151589|151761|151770|151825|152351|152477|152478|165953|172353|172492|172493|173538|175057|175063|181595|181600|181603|181608|181610|181611|181613|181616|181616|181619|181623|181624|181625|181626|181627|181628|182199|182200|182201|182202|182203|183478|183482|184109|194371|196490|197512|215422|221085|221617|224306|226816|226817|226818|226821|226822|226823|226824|226825|226826|232167|232175|232176|232177|232179|232187|233464|234442|234443|234445|235082|235084|235087|238163|238164|238183|238187|238190|238358|239022|239023|239024|239025|239026|239027|239028|239805|239806|239820|239843|239848|241044|241160|241161|241162|241163|241855|241856|241857|241858|241859|247306|247307|247309|247311|251937|251940|251943|259746|264583|270760|276981|276982|276984|276989|276991|276993|276998|276999|277005|277013|277243|277246|277247|277251|277255|277259|277264|277268|277274|277279|277358|277365|277555|277557|277916|277948|277984|277995|277998|278010|278056|278059|278061|278067|278086|278089|278406|278421|278427|278435|287600|287607|287611|288381|291322|297296|297298|303497|303503|303504|303688|303695|303696|303703|312394|312395|312400|314382|314393|314394|318274|318276|318286|321006|321030|324403|324407|324410|325142|327101|327104|327110|327115|327118|328197|328204|330108|353066|358787|358794|369831|372258|384402|390005|390592|390894|390899|390919|390920|393117|393122|393123|393127|393137|393141|393143|393269|393270|393280|393283|393284|393295|393493|393494|393496|394926|395037|395291|395462|398027|398230|398238|398249|398257|398327|398332|398685|398690|398692|398696|398768|398782|398789|398797|398801|399591|399697|399708|399715|399847|399855|399856|399858|399863|400239|400241|400245|400249|400437|400440|400445|406048|420734|420746|420755|425903|432022|432023|432024|432025|432026|432027|432028|432029|432030|432031|432032|432033|432034|432035|432036|432038|432039|432040|432041|432042|432043|432045|432046|432047|432048|432049|432050|432051|432052|432053|432054|432055|432056|443319|447529|448558|451506|451510|451512|451755|451764|451766|451771|451775|451776|451782|451789|451838|451841|451843|451846|451849|451857|451863|451873|451949|451960|451963|451965|451973|451974|451976|455786|460881|461212|461216|461227|461228|461395|461396|461399|461718|461721|461725|461733|461734|461736|461738|461739|462041|462044|462045|463418|463423|463425|463427|463717|463989|463998|464318|464325|464435|464439|464440|464442|472339|473261|473271|473273|473274|473282|473286|473301|473302|473307|473314|473317|473325|473425|473427|473438|474336|475971|475974|476257|476271|476449|476450|476453|476460|477031|477128|477290|477643|496595|496596|518679|518686|518687|518690|518694|518769|518772|518780|518859|518861|518864|518865|518866|518867|518869|518874|518876|521369|526266|526268|526277|526278|526281|526499|526501|526502|526778|526779|526780|526785|528313|528316|528319|528688|528690|528695|528767|528772|558694|558696|559166|559205|559207|559209|559211|561010|561020|561021|561023|562119|562120|562122|562129|562130|563149|564761|564764|564766|565867|565870|566572|566582|566585|567366|572877|572882|630630|630631|630632|630633|630634|630635|630636|630637|630638|630639|630640|630641|630642|630643|630644|630645|630646|630647|630648|630649|630650|630651|630652|630653|630654|630655|640178|640179|640180|640182|640183|640184|640185|640186|640187|640188|640189|640190|640191|640192|640193|642628|642629|642630|642631|642632|642633|642634|650856|651018|651019|652100|652128|652214|652416|652548|655488|683521|683522|684504|687796|687797|689721|691235|693063|697704|701828|702953|721426|733629|747818|747820|760071|763465|763467|776010|781485|787159|787994|790301|796604|807439|807441|807445|807447|807449|807451|807454|807456|807458|807465|808623|810780|810781|810786|810787|810790|810793|811904|811908|819284|819285|819286|820390|820632|820633|827127|827128|827129|827130|827131|827132|827133|827134|827135|827136|827137|827138|827139|827140|827141|827142|827143|827144|827145|827146|827147|827148|830799|838583|838584|838585|838586|838587|838588|838589|838590|838591|838592|838593|838594|838595|841653|841654|841655|841656|841657|841658|841659|841660|841661|841662|851569|862616|862617|862618|862619|862620|862621|862622|862623|862624|862625|862626|862627|862628|862629|862630|865021|865032|867044|867045|867046|867047|867048|867049|868168|868169|868170|868171|868172|868604|868664|872094|894085|894086|894087|894088|894089|896089|917074|922951|922952|922953|922954|922955|926282|926283|926284|926285|926286|926287|927144|927145|927146|931619|931620|931621|931622|931623|931624|931625|931626|935607|935608|935609|935610|935611|935612|935613|936684|941001|941064|943155|943156|943157|943158|943159|943160|943161|943162|943163|943164|943165|943166|943167|943168|947510|947511|947513|947514|947515|947516|948627|948628|948629|948630|948631|953252|953253|953254|953255|953256|956537|956538|980139", "text": "Hereditary Paraganglioma-Pheochromocytoma Syndromes" }, { - "baseId": "15441|15442|15443|15444|15445|255857|326219|326227|326228|326229|326233|326235|335944|335952|335955|335966|335970|335974|342280|342284|342286|342288|342289|342292|342293|342294|343867|343870|343871|343872|343883|343888|343890|343891|426179|466669|547782|547791|547796|547820|547829|547830|547832|547833|547838|547839|548070|548077|548085|548086|548525|548527|548528|548535|548537|581773|644950|644951|715046|715047|726771|726772|726773|731092|755369|771050|771051|785372|785374|787936|820870|844242|875897|875898|875899|875900|875901|875902|875903|875904|875905|875906|875907|875908|875909|875910|875911|875912|875913|875914|876718|937579|957855|957856|960853|966149", + "upstreamId": "15441|15442|15443|15444|15445|255857|326219|326227|326228|326229|326233|326235|335944|335952|335955|335966|335970|335974|342280|342284|342286|342288|342289|342292|342293|342294|343867|343870|343871|343872|343883|343888|343890|343891|426179|466669|547782|547791|547796|547820|547829|547830|547832|547833|547838|547839|548070|548077|548085|548086|548525|548527|548528|548535|548537|581773|644950|644951|715046|715047|726771|726772|726773|731092|755369|771050|771051|785372|785374|787936|820870|844242|875897|875898|875899|875900|875901|875902|875903|875904|875905|875906|875907|875908|875909|875910|875911|875912|875913|875914|876718|937579|957855|957856|960853|966149", "text": "Tyrosinemia type II" }, { - "baseId": "15446|15447|207039|626134|961762|961763|961764", + "upstreamId": "15446|15447|207039|626134|961762|961763|961764", "text": "Urocanate hydratase deficiency" }, { - "baseId": "15448|34155|40570|40571|800831|800841|800842|970791|970792", + "upstreamId": "15448|34155|40570|40571|800831|800841|800842|970791|970792", "text": "Huntington disease" }, { - "baseId": "15449|141372|141373|141374|177401|193726|193727|194522|211571|211572|254360|315365|322214|322215|328321|868889|868890|868891|868892", + "upstreamId": "15449|141372|141373|141374|177401|193726|193727|194522|211571|211572|254360|315365|322214|322215|328321|868889|868890|868891|868892", "text": "Optic atrophy 7" }, { - "baseId": "15450|15680|22564|24628|24661|24693|24694|24695|24696|24697|24699|24700|24701|24705|24707|27796|27797|27799|27800|27801|27802|27803|27804|27805|27807|27808|27809|31914|38852|65567|130979|133699|136140|140698|140701|140702|140703|140704|140705|140706|140707|140708|140709|140710|140711|140712|140713|140724|140725|140996|140997|140998|140999|141000|141576|141579|141582|141583|142780|142781|142782|142783|142784|142785|142786|142787|142788|142789|142790|142791|143089|166197|188296|188297|192465|210756|210759|210760|210761|210765|211358|211368|211777|211818|211821|211868|211962|211976|214391|224694|273255|284180|284182|284184|284185|284196|284198|284204|284205|284209|284210|284218|284219|284235|284237|284243|284245|284246|284248|284254|284936|284943|284945|284953|284960|284961|284963|284968|284972|284973|284974|284975|284976|284977|284979|286854|286873|286874|286880|286882|286886|286888|286892|286894|286899|286901|286902|286903|286904|286906|286912|286913|286917|286928|286941|286943|286961|286964|286969|287284|287285|287286|287289|287290|287291|287293|287309|287310|287315|287318|287328|287331|287338|287339|287340|287343|287345|311923|311937|317580|317603|317617|317632|317640|317643|327260|327264|327266|327269|327280|327281|327284|327291|327302|327303|327308|327310|329333|329334|329336|337088|337095|337104|337105|337109|337111|337115|337118|337121|337123|337129|338573|338576|338577|338584|339604|339606|343314|343316|343318|343320|343321|343324|343327|343328|343329|343332|343334|343338|343341|343352|343354|343357|343360|343363|343364|343366|344879|344880|344881|344883|344885|344888|344890|344891|344894|344901|344908|344909|344910|344912|344913|344914|344916|344918|344921|344924|344928|344941|345348|345356|345358|346741|346742|348160|348162|348165|348167|348169|348592|348594|349671|351824|351825|351827|351828|351830|351831|351832|352678|352679|352680|352681|353373|361580|363720|363881|364235|365162|366093|377583|378069|434458|434657|434658|434658|434758|438041|439243|443142|445696|445696|481178|505921|506644|513340|538463|552063|620050|626225|656402|689294|707969|740562|740571|786642|790159|790160|798710|822313|861128|876766|876767|876768|876770|876771|876772|876773|876774|876775|876776|876777|876778|876779|876780|876781|876782|876783|876784|876785|876786|876787|876788|876789|876790|876791|876792|876793|876794|876795|876796|876797|876798|876799|876800|876801|876802|876803|878105|878106|878107|878108|878109|878110|880311|880312|880313|880463|880464|883477|883478|883479|883480|883481|883482|883483|883484|883485|883486|883487|883488|883489|883490|883491|883492|883493|883494|883495|883496|883497|883498|883499|883500|883501|883502|883503|883504|883505|883506|883507|883508|883509|883510|883511|883512|883513|883514|883515|883516|883517|883518|883519|883520|883521|883522|883523|883524|883525|883526|883527|883528|883529|883530|883531|883532|883533|883534|883535|883536|887245|891500|891501|891502|919759", + "upstreamId": "15450|15680|22564|24628|24661|24693|24694|24695|24696|24697|24699|24700|24701|24705|24707|27796|27797|27799|27800|27801|27802|27803|27804|27805|27807|27808|27809|31914|38852|65567|130979|133699|136140|140698|140701|140702|140703|140704|140705|140706|140707|140708|140709|140710|140711|140712|140713|140724|140725|140996|140997|140998|140999|141000|141576|141579|141582|141583|142780|142781|142782|142783|142784|142785|142786|142787|142788|142789|142790|142791|143089|166197|188296|188297|192465|210756|210759|210760|210761|210765|211358|211368|211777|211818|211821|211868|211962|211976|214391|224694|273255|284180|284182|284184|284185|284196|284198|284204|284205|284209|284210|284218|284219|284235|284237|284243|284245|284246|284248|284254|284936|284943|284945|284953|284960|284961|284963|284968|284972|284973|284974|284975|284976|284977|284979|286854|286873|286874|286880|286882|286886|286888|286892|286894|286899|286901|286902|286903|286904|286906|286912|286913|286917|286928|286941|286943|286961|286964|286969|287284|287285|287286|287289|287290|287291|287293|287309|287310|287315|287318|287328|287331|287338|287339|287340|287343|287345|311923|311937|317580|317603|317617|317632|317640|317643|327260|327264|327266|327269|327280|327281|327284|327291|327302|327303|327308|327310|329333|329334|329336|337088|337095|337104|337105|337109|337111|337115|337118|337121|337123|337129|338573|338576|338577|338584|339604|339606|343314|343316|343318|343320|343321|343324|343327|343328|343329|343332|343334|343338|343341|343352|343354|343357|343360|343363|343364|343366|344879|344880|344881|344883|344885|344888|344890|344891|344894|344901|344908|344909|344910|344912|344913|344914|344916|344918|344921|344924|344928|344941|345348|345356|345358|346741|346742|348160|348162|348165|348167|348169|348592|348594|349671|351824|351825|351827|351828|351830|351831|351832|352678|352679|352680|352681|353373|361580|363720|363881|364235|365162|366093|377583|378069|434458|434657|434658|434658|434758|438041|439243|443142|445696|445696|481178|505921|506644|513340|538463|552063|620050|626225|656402|689294|707969|740562|740571|786642|790159|790160|798710|822313|861128|876766|876767|876768|876770|876771|876772|876773|876774|876775|876776|876777|876778|876779|876780|876781|876782|876783|876784|876785|876786|876787|876788|876789|876790|876791|876792|876793|876794|876795|876796|876797|876798|876799|876800|876801|876802|876803|878105|878106|878107|878108|878109|878110|880311|880312|880313|880463|880464|883477|883478|883479|883480|883481|883482|883483|883484|883485|883486|883487|883488|883489|883490|883491|883492|883493|883494|883495|883496|883497|883498|883499|883500|883501|883502|883503|883504|883505|883506|883507|883508|883509|883510|883511|883512|883513|883514|883515|883516|883517|883518|883519|883520|883521|883522|883523|883524|883525|883526|883527|883528|883529|883530|883531|883532|883533|883534|883535|883536|887245|891500|891501|891502|919759", "text": "Mitochondrial complex IV deficiency" }, { - "baseId": "15450|187971", + "upstreamId": "15450|187971", "text": "Mitochondrial complex 4 deficiency, nuclear type 8" }, { - "baseId": "15451|15452|15453|15454|15455|15456|299596|299597|299610|299611|299616|299617|299622|302139|302140|302141|302143|302151|302160|302163|302164|302165|302176|306547|306548|306551|306552|306554|306565|306815|306816|306835|306841|306847|306859|306861|428599|710325|710326|710327|710328|721875|735529|802160|861086|861625|895665|895666|895667|895668|895669|895670|896214|919021|920226", + "upstreamId": "15451|15452|15453|15454|15455|15456|299596|299597|299610|299611|299616|299617|299622|302139|302140|302141|302143|302151|302160|302163|302164|302165|302176|306547|306548|306551|306552|306554|306565|306815|306816|306835|306841|306847|306859|306861|428599|710325|710326|710327|710328|721875|735529|802160|861086|861625|895665|895666|895667|895668|895669|895670|896214|919021|920226", "text": "Leukoencephalopathy, cystic, without megalencephaly" }, { - "baseId": "15457|15458|15459|15460|190243|303055|303056|303057|306309|306338|306340|311165|311167|311168|311296|311297|311300|311301|369750|434619|523317|578459|636166|636167|710992|833616|833617|833618|833619|833620|898108|898109|898110|898111|898112|898113|898114|898115|924856|933891|945637|955160", + "upstreamId": "15457|15458|15459|15460|190243|303055|303056|303057|306309|306338|306340|311165|311167|311168|311296|311297|311300|311301|369750|434619|523317|578459|636166|636167|710992|833616|833617|833618|833619|833620|898108|898109|898110|898111|898112|898113|898114|898115|924856|933891|945637|955160", "text": "Glycogen storage disease type X" }, { - "baseId": "15461|15462|15463|626073", + "upstreamId": "15461|15462|15463|626073", "text": "Mitochondrial complex 1 deficiency, nuclear type 18" }, { - "baseId": "15464|360473", + "upstreamId": "15464|360473", "text": "Autosomal dominant macrothrombocytopenia TUBB1-related" }, { - "baseId": "15464|19193|28568|28570|31079|51193|51196|51197|51198|572347|612063|612487|615337|615338|615548|615549|615550|615551|615555|615556|615558|615559|615561|615563|615564|615567|615574|615588|615589|615593|615594|615595|615596|615599|615601|615617|615619|615620|615621|615622|615623|615624|615625|615629|615630|615638|615643|615644|615648|615650|615651|615654|615656|615658|615661|615715|615717|615745|615854|615864|615867|801081|801139|801201|801212|801213|801214|801215|801516", + "upstreamId": "15464|19193|28568|28570|31079|51193|51196|51197|51198|572347|612063|612487|615337|615338|615548|615549|615550|615551|615555|615556|615558|615559|615561|615563|615564|615567|615574|615588|615589|615593|615594|615595|615596|615599|615601|615617|615619|615620|615621|615622|615623|615624|615625|615629|615630|615638|615643|615644|615648|615650|615651|615654|615656|615658|615661|615715|615717|615745|615854|615864|615867|801081|801139|801201|801212|801213|801214|801215|801516", "text": "Macrothrombocytopenia" }, { - "baseId": "15465|15466|15467|48319|48320|48321|94456|168559|168560|168561|168562|168566|168567|168569|168570|207401|237813|369100|415045|424603|428611|428613|486744|551295|679749|788799|855107|964273|964274|970830", + "upstreamId": "15465|15466|15467|48319|48320|48321|94456|168559|168560|168561|168562|168566|168567|168569|168570|207401|237813|369100|415045|424603|428611|428613|486744|551295|679749|788799|855107|964273|964274|970830", "text": "Polymicrogyria, asymmetric" }, { - "baseId": "15468|15469", + "upstreamId": "15468|15469", "text": "MITOCHONDRIAL COMPLEX II DEFICIENCY, NUCLEAR TYPE 2" }, { - "baseId": "15470|140691|140692|140693|140694|140695|140696|190089|211720|211721|211723|211724|211727|325944|325945|325947|335545|335551|335554|335555|335589|335599|335604|335606|342019|342021|342027|342028|343531|375490|875597|875598|875599|875600|875601|875602|875603|875604|875605|875606|876688|876689", + "upstreamId": "15470|140691|140692|140693|140694|140695|140696|190089|211720|211721|211723|211724|211727|325944|325945|325947|335545|335551|335554|335555|335589|335599|335604|335606|342019|342021|342027|342028|343531|375490|875597|875598|875599|875600|875601|875602|875603|875604|875605|875606|876688|876689", "text": "Coenzyme Q10 deficiency, primary, 5" }, { - "baseId": "15471|15473|15474|15475|15476|84886|94529|94530|105940|105941|105942|105944|105946|105948|105957|105961|105964|105965|105969|105970|105971|105972|105973|105974|105977|105978|105980|105990|105993|106000|186635|186636|237147|267156|271717|281384|281390|281393|281396|281397|281399|282007|282008|282009|282021|282023|282025|282026|282038|282044|282054|283300|283305|283337|283338|283342|283345|283359|283443|283444|283446|283449|283459|283490|283491|283499|283500|283509|283520|283522|357148|357149|357150|357151|357152|357153|357154|357155|357156|357157|357158|357159|357160|357161|357162|357163|357164|357165|357166|357167|357168|357169|357170|357171|357172|357173|357174|357175|357176|357177|357178|357179|357180|357181|357182|357183|357184|357185|357186|442900|486871|494099|541312|541325|541328|541339|541341|541344|541346|541349|541350|541352|541354|541375|541377|541381|541382|541385|541391|541394|541398|541399|541401|541410|541411|541413|541415|576559|620020|620021|621090|621091|794751|801600|864881|864882|864883|864884|864885|864886|864887|864888|864889|864890|864891|864892|864893|864894|864895|864896|864897|864898|864899|864900|864901|864902|864903|864904|864905|864906|865224|865235|865236|865237|865238|868425|868426|868427|961751", + "upstreamId": "15471|15473|15474|15475|15476|84886|94529|94530|105940|105941|105942|105944|105946|105948|105957|105961|105964|105965|105969|105970|105971|105972|105973|105974|105977|105978|105980|105990|105993|106000|186635|186636|237147|267156|271717|281384|281390|281393|281396|281397|281399|282007|282008|282009|282021|282023|282025|282026|282038|282044|282054|283300|283305|283337|283338|283342|283345|283359|283443|283444|283446|283449|283459|283490|283491|283499|283500|283509|283520|283522|357148|357149|357150|357151|357152|357153|357154|357155|357156|357157|357158|357159|357160|357161|357162|357163|357164|357165|357166|357167|357168|357169|357170|357171|357172|357173|357174|357175|357176|357177|357178|357179|357180|357181|357182|357183|357184|357185|357186|442900|486871|494099|541312|541325|541328|541339|541341|541344|541346|541349|541350|541352|541354|541375|541377|541381|541382|541385|541391|541394|541398|541399|541401|541410|541411|541413|541415|576559|620020|620021|621090|621091|794751|801600|864881|864882|864883|864884|864885|864886|864887|864888|864889|864890|864891|864892|864893|864894|864895|864896|864897|864898|864899|864900|864901|864902|864903|864904|864905|864906|865224|865235|865236|865237|865238|868425|868426|868427|961751", "text": "Dihydropyrimidine dehydrogenase deficiency" }, { - "baseId": "15471|15472|94529", + "upstreamId": "15471|15472|94529", "text": "Fluorouracil response" }, { - "baseId": "15471|28870|28946|28951|28959|28960|28961|28962|28963|28964|28965|28966|28971|28975|28976|28977|28978|28979|28986|28991|28993|28994|36221|36228|36269|36275|36287|36305|45384|45386|50165|50278|50282|50284|50285|101890|101891|101892|136461|136472|138345|138726|138849|138926|138928|138929|139807|139815|139817|139819|139827|139828|139830|139833|166578|166579|166580|171125|182944|182948|182956|182958|186117|188092|188093|188094|188095|188096|188097|188098|188099|188100|188101|188102|188103|188104|209431|212767|212783|212784|212794|215301|221946|240788|240790|240797|240802|263835|263836|263839|263840|263841|263842|263843|263844|263845|263846|263847|263848|271973|310269|310270|310276|310293|310303|310309|310315|310330|310333|310334|315391|315392|315393|315394|315397|315411|315412|315418|315419|321369|321370|321384|321385|321388|321398|321411|321412|321415|321417|321419|321420|321423|322066|322103|322120|322142|322160|322161|322168|358824|358829|362046|362047|362048|362049|397269|397444|397680|397699|459817|460008|460025|460251|460316|460325|460677|460686|475107|525176|539281|569630|569655|581736|654156|679770|836830|858560|865863|865864|865865|865866|865867|865868|865869|865870|865871|865872|865873|865874|865875|865876|865877|865878|865879|865880|865881|865882|868471|868472", + "upstreamId": "15471|28870|28946|28951|28959|28960|28961|28962|28963|28964|28965|28966|28971|28975|28976|28977|28978|28979|28986|28991|28993|28994|36221|36228|36269|36275|36287|36305|45384|45386|50165|50278|50282|50284|50285|101890|101891|101892|136461|136472|138345|138726|138849|138926|138928|138929|139807|139815|139817|139819|139827|139828|139830|139833|166578|166579|166580|171125|182944|182948|182956|182958|186117|188092|188093|188094|188095|188096|188097|188098|188099|188100|188101|188102|188103|188104|209431|212767|212783|212784|212794|215301|221946|240788|240790|240797|240802|263835|263836|263839|263840|263841|263842|263843|263844|263845|263846|263847|263848|271973|310269|310270|310276|310293|310303|310309|310315|310330|310333|310334|315391|315392|315393|315394|315397|315411|315412|315418|315419|321369|321370|321384|321385|321388|321398|321411|321412|321415|321417|321419|321420|321423|322066|322103|322120|322142|322160|322161|322168|358824|358829|362046|362047|362048|362049|397269|397444|397680|397699|459817|460008|460025|460251|460316|460325|460677|460686|475107|525176|539281|569630|569655|581736|654156|679770|836830|858560|865863|865864|865865|865866|865867|865868|865869|865870|865871|865872|865873|865874|865875|865876|865877|865878|865879|865880|865881|865882|868471|868472", "text": "Hirschsprung disease 1" }, { - "baseId": "15471|94529", + "upstreamId": "15471|94529", "text": "capecitabine response - Toxicity/ADR, Metabolism/PK" }, { - "baseId": "15471|94529", + "upstreamId": "15471|94529", "text": "fluorouracil response - Toxicity/ADR, Metabolism/PK" }, { - "baseId": "15471|94529", + "upstreamId": "15471|94529", "text": "Pyrimidine analogues response - Toxicity/ADR, Metabolism/PK" }, { - "baseId": "15471|94529", + "upstreamId": "15471|94529", "text": "tegafur response - Toxicity/ADR, Metabolism/PK" }, { - "baseId": "15471|28310|590069", + "upstreamId": "15471|28310|590069", "text": "22 conditions" }, { - "baseId": "15477", + "upstreamId": "15477", "text": "LUTHERAN BLOOD GROUP POLYMORPHISM Lu(a)/Lu(b)" }, { - "baseId": "15478", + "upstreamId": "15478", "text": "AUBERGER BLOOD GROUP POLYMORPHISM Au(a)/Au(b)" }, { - "baseId": "15479|15480|15481|15482", + "upstreamId": "15479|15480|15481|15482", "text": "BLOOD GROUP--LUTHERAN NULL" }, { - "baseId": "15483|227369|255242|255243|255244|255245|255246|260069|538443|906177|961030|963172", + "upstreamId": "15483|227369|255242|255243|255244|255245|255246|260069|538443|906177|961030|963172", "text": "Thyroglobulin synthesis defect" }, { - "baseId": "15484|15485|15486|15487|15488|15489|256709|256710|256711|256712|256713|332019|332020|332025|332026|332027|332029|332030|332031|332033|332044|332048|332052|332053|332056|332059|332061|332070|332078|332083|332090|332095|332096|332104|332106|332109|332113|332117|332119|332133|332134|332136|332142|342221|342223|342225|342227|342230|342232|342234|342235|342236|342240|342242|342243|342246|342249|342250|342253|342255|342257|342259|342260|342261|342265|342267|342268|342278|342281|342283|342296|342298|342299|342302|342309|342310|342313|347624|347627|347636|347639|347640|347644|347649|347651|347655|347656|347659|347660|347667|347668|347673|347679|347684|347687|347688|347693|347694|347695|347696|347702|347703|347711|347712|347713|347714|347717|347727|347728|347729|347732|347733|348979|348981|348983|348991|348995|349003|349004|349005|349011|349014|349015|349019|349027|349029|349031|349039|349043|349052|349060|349066|349068|349070|349078|349080|349084|349087|349088|349094|349096|507407|513543|578427|614452|620902|704641|727761|756497|772236|791879|800092|879600|879601|879602|879603|879604|879605|879606|879607|879608|879609|879610|879611|879612|879613|879614|879615|879616|879617|879618|879619|879620|879621|879622|879623|879624|879625|879626|879627|879628|879629|879630|879631|879632|879633|879634|879635|879636|879637|879638|879639|879640|879641|879642|879643|879644|879645|879646|879647|879648|879649|879650|879651|879652|879653|879654|879655|879656|879657|879658|879659|879660|879661|879662|879663|879664|879665|879666|879667|879668|879669|879670|879671|879672|880671", + "upstreamId": "15484|15485|15486|15487|15488|15489|256709|256710|256711|256712|256713|332019|332020|332025|332026|332027|332029|332030|332031|332033|332044|332048|332052|332053|332056|332059|332061|332070|332078|332083|332090|332095|332096|332104|332106|332109|332113|332117|332119|332133|332134|332136|332142|342221|342223|342225|342227|342230|342232|342234|342235|342236|342240|342242|342243|342246|342249|342250|342253|342255|342257|342259|342260|342261|342265|342267|342268|342278|342281|342283|342296|342298|342299|342302|342309|342310|342313|347624|347627|347636|347639|347640|347644|347649|347651|347655|347656|347659|347660|347667|347668|347673|347679|347684|347687|347688|347693|347694|347695|347696|347702|347703|347711|347712|347713|347714|347717|347727|347728|347729|347732|347733|348979|348981|348983|348991|348995|349003|349004|349005|349011|349014|349015|349019|349027|349029|349031|349039|349043|349052|349060|349066|349068|349070|349078|349080|349084|349087|349088|349094|349096|507407|513543|578427|614452|620902|704641|727761|756497|772236|791879|800092|879600|879601|879602|879603|879604|879605|879606|879607|879608|879609|879610|879611|879612|879613|879614|879615|879616|879617|879618|879619|879620|879621|879622|879623|879624|879625|879626|879627|879628|879629|879630|879631|879632|879633|879634|879635|879636|879637|879638|879639|879640|879641|879642|879643|879644|879645|879646|879647|879648|879649|879650|879651|879652|879653|879654|879655|879656|879657|879658|879659|879660|879661|879662|879663|879664|879665|879666|879667|879668|879669|879670|879671|879672|880671", "text": "Hennekam lymphangiectasia-lymphedema syndrome 1" }, { - "baseId": "15490|15491|15493|15494|15495|15497|15498|15499|15500|15501", + "upstreamId": "15490|15491|15493|15494|15495|15497|15498|15499|15500|15501", "text": "Coproporphyria" }, { - "baseId": "15492|15496|131973", + "upstreamId": "15492|15496|131973", "text": "Harderoporphyria" }, { - "baseId": "15498|291807|291809|291810|291814|291816|291818|291820|291821|291823|291828|291830|291834|291835|293138|293139|293140|293142|293174|293175|293176|293190|293193|293194|293195|293197|293200|293201|296460|296461|296463|296470|296471|296472|296475|296477|296478|296481|296483|296484|296486|296488|296490|296491|296499|296500|296501|296503|296504|296513|296517|296518|296519|296523|790424|859316|889793|889794|889795|889796|889797|889798|889799|889800|889801|889802|889803|889804|889805|889806|889807|889808|889809|889810|889811|889812|889813|889814|891715|891716|891717|891718", + "upstreamId": "15498|291807|291809|291810|291814|291816|291818|291820|291821|291823|291828|291830|291834|291835|293138|293139|293140|293142|293174|293175|293176|293190|293193|293194|293195|293197|293200|293201|296460|296461|296463|296470|296471|296472|296475|296477|296478|296481|296483|296484|296486|296488|296490|296491|296499|296500|296501|296503|296504|296513|296517|296518|296519|296523|790424|859316|889793|889794|889795|889796|889797|889798|889799|889800|889801|889802|889803|889804|889805|889806|889807|889808|889809|889810|889811|889812|889813|889814|891715|891716|891717|891718", "text": "Hereditary coproporphyria" }, { - "baseId": "15502", + "upstreamId": "15502", "text": "Coproporphyria, digenic" }, { - "baseId": "15503|15504|15505|15507|15508|15509|15510|15511|15512|15513|15514|17204|39935|39936|39937|186775|186776|186777|186778|186779|186780|193362|215107|215108|253252|253253|269611|271344|306261|306263|306270|306277|306279|306282|306286|306292|310376|310379|310381|310397|310401|310402|310403|310410|315742|315744|315747|315748|315749|315751|315813|315814|315815|315816|315824|315833|315835|315836|357757|357758|357759|357760|357761|357762|357763|372045|372053|404779|425807|487350|492840|493102|493140|502082|502550|544597|544913|545016|545019|545026|545030|545031|545037|545101|545119|545135|545136|545139|545141|545143|545147|584887|586526|621289|736795|736796|736797|766968|766969|766970|766971|766972|766973|783198|783203|820034|820035|900668|900669|900670|900671|900672|900673|900674|900675|900676|900677|900678|900679|900680|900681|900682|900683|900684|900685|900686|900687|900688|900689|903279|917027|925308|925309|934489|940120|940917|955618|972024|972025|972026|972027|978505|978506|978507|978508|980931", + "upstreamId": "15503|15504|15505|15507|15508|15509|15510|15511|15512|15513|15514|17204|39935|39936|39937|186775|186776|186777|186778|186779|186780|193362|215107|215108|253252|253253|269611|271344|306261|306263|306270|306277|306279|306282|306286|306292|310376|310379|310381|310397|310401|310402|310403|310410|315742|315744|315747|315748|315749|315751|315813|315814|315815|315816|315824|315833|315835|315836|357757|357758|357759|357760|357761|357762|357763|372045|372053|404779|425807|487350|492840|493102|493140|502082|502550|544597|544913|545016|545019|545026|545030|545031|545037|545101|545119|545135|545136|545139|545141|545143|545147|584887|586526|621289|736795|736796|736797|766968|766969|766970|766971|766972|766973|783198|783203|820034|820035|900668|900669|900670|900671|900672|900673|900674|900675|900676|900677|900678|900679|900680|900681|900682|900683|900684|900685|900686|900687|900688|900689|903279|917027|925308|925309|934489|940120|940917|955618|972024|972025|972026|972027|978505|978506|978507|978508|980931", "text": "Hereditary fructosuria" }, { - "baseId": "15515|15516|15518|15519|15520|15522|15523|15524|15525|15667|15670|108502|312401|312403|325159|357930|359860|359983|425904|460885|461217|461692|461694|461696|513619|525902|545404|545410|545411|545413|545415|545417|545418|545420|545750|545752|545763|545767|545769|545772|545777|545818|545821|545827|545828|545830|545831|545837|545840|546044|546058|546064|546066|546069|546072|546073|546079|546083|639714|639715|639716|652488|737727|768205|775753|775775|783871|801690|820336|820337|837961|837962|867050|867051|867052|867053|867054|867055|867056|867057|935382|970226|970227", + "upstreamId": "15515|15516|15518|15519|15520|15522|15523|15524|15525|15667|15670|108502|312401|312403|325159|357930|359860|359983|425904|460885|461217|461692|461694|461696|513619|525902|545404|545410|545411|545413|545415|545417|545418|545420|545750|545752|545763|545767|545769|545772|545777|545818|545821|545827|545828|545830|545831|545837|545840|546044|546058|546064|546066|546069|546072|546073|546079|546083|639714|639715|639716|652488|737727|768205|775753|775775|783871|801690|820336|820337|837961|837962|867050|867051|867052|867053|867054|867055|867056|867057|935382|970226|970227", "text": "BH4-deficient hyperphenylalaninemia A" }, { - "baseId": "15516|15517|15521|15522", + "upstreamId": "15516|15517|15521|15522", "text": "Hyperphenylalaninemia, bh4-deficient, a, due to partial pts deficiency" }, { - "baseId": "15518|15520|312403|737727|775775|837961|867051|978861|978862|978863", + "upstreamId": "15518|15520|312403|737727|775775|837961|867051|978861|978862|978863", "text": "6-Pyruvoyl-tetrahydrobiopterin synthase deficiency" }, { - "baseId": "15526|15527|150469|708756|708757|980450|981427|981428", + "upstreamId": "15526|15527|150469|708756|708757|980450|981427|981428", "text": "Riddle syndrome" }, { - "baseId": "15528|15529|15530|15531|15532|15533|15534|251370|270628|292888|292890|292895|292899|292904|292905|292914|294253|294254|294256|294257|294261|294264|294269|294271|297721|297724|297793|297796|297802|297806|297811|453349|453831|496317|508792|508793|520077|559635|559790|561976|612268|614643|632091|651144|790458|790459|790460|828959|851496|890472|890473|890474|890475|890476|890477|890478|890479|890480|890481|890482|890483|943902|943903|959718", + "upstreamId": "15528|15529|15530|15531|15532|15533|15534|251370|270628|292888|292890|292895|292899|292904|292905|292914|294253|294254|294256|294257|294261|294264|294269|294271|297721|297724|297793|297796|297802|297806|297811|453349|453831|496317|508792|508793|520077|559635|559790|561976|612268|614643|632091|651144|790458|790459|790460|828959|851496|890472|890473|890474|890475|890476|890477|890478|890479|890480|890481|890482|890483|943902|943903|959718", "text": "Dihydropteridine reductase deficiency" }, { - "baseId": "15535|15536|15537|15538|15539|15540|135604|224972|224973|380216|578353|578354", + "upstreamId": "15535|15536|15537|15538|15539|15540|135604|224972|224973|380216|578353|578354", "text": "Mitchell-Riley syndrome" }, { - "baseId": "15536|22745|23707|34055|136364|167531|168864|168868|168869|168874|168875|195995|211069|281461|299130|372861|421907|444937|758701|801165|905057|905058|905059|905060|906381|906382|906383|906384|906385|906386|906387|906388|906389|906390|906391", + "upstreamId": "15536|22745|23707|34055|136364|167531|168864|168868|168869|168874|168875|195995|211069|281461|299130|372861|421907|444937|758701|801165|905057|905058|905059|905060|906381|906382|906383|906384|906385|906386|906387|906388|906389|906390|906391", "text": "Diabetes mellitus" }, { - "baseId": "15542|15543|15544|77877|77878|94432|99370|174339|174340|174341|174342|174477|174479|174480|190293|194332|194333|212517|229378|229380|229381|229382|229383|252064|298814|298815|301269|301270|301274|301275|301276|305665|305670|305772|305773|305775|305784|305786|305797|434602|455807|521959|634516|683757|895224|895225|895226|895227|895228|895229|895230|895231|895232|895233|895234|895235|895236|895237|895238|895239|895240", + "upstreamId": "15542|15543|15544|77877|77878|94432|99370|174339|174340|174341|174342|174477|174479|174480|190293|194332|194333|212517|229378|229380|229381|229382|229383|252064|298814|298815|301269|301270|301274|301275|301276|305665|305670|305772|305773|305775|305784|305786|305797|434602|455807|521959|634516|683757|895224|895225|895226|895227|895228|895229|895230|895231|895232|895233|895234|895235|895236|895237|895238|895239|895240", "text": "Ciliary dyskinesia, primary, 11" }, { - "baseId": "15545|15546|15548|15549|15550|15552|237250|253110|253111|253112|253113|253114|253115|253117|253118|253119|253120|253121|253122|253124|253125|253126|253127|253128|253129|253130|253132|253133|253134|253135|253136|253137|253138|253139|253140|253141|253142|253143|305249|305250|305258|305260|305267|305272|305279|305291|305295|305302|305304|305308|305309|305310|305312|305318|305323|305327|305330|309065|309068|309070|309073|309075|309076|309078|309084|309087|309091|309110|309117|309121|309136|309152|309153|309154|309159|309161|309162|309163|309167|314271|314274|314286|314288|314292|314293|314299|314300|314328|314329|314330|314332|314339|314341|314346|314351|314359|314368|314371|314372|314374|314375|314376|314383|314384|314385|314386|314387|314388|314390|314391|314392|314398|314399|314400|314402|314407|314409|314410|314411|314412|314413|314415|314417|314423|314424|314425|314426|360899|535247|535248|535249|535250|535251|609693|609694|609696|609698|711527|711530|723086|723087|723093|736649|736650|736654|751139|751140|751148|751154|751155|766806|775249|777707|777758|790800|799539|799540|799541|799542|799543|799544|799545|799546|799547|799548|799549|818256|899535|899536|899537|899538|899539|899540|899541|899542|899543|899544|899545|899546|899547|899548|899549|899550|899551|899552|899553|899554|899555|899556|899557|899558|899559|899560|899561|899562|899563|899564|899565|899566|899567|899568|899569|899570|899571|899572|899573|899574|899575|899576|899577|899578|899579|899580|899581|899582|899583|899584|899585|899586|899587|899588|899589|899590|899591|899592|899593|899594|899595|899596|899597|899598|899599|899600|899601|899602|899603|899604|899605|899606|900493|900494|900495|900496|900497|900498|900499|919153|961857|967231|981626|981627|981628|981629|981630|981631|981632|981633|981634|981635|981636|981637|981638|981639|981640|981641|981642|981643|981644|981645|981646|981647|981648", + "upstreamId": "15545|15546|15548|15549|15550|15552|237250|253110|253111|253112|253113|253114|253115|253117|253118|253119|253120|253121|253122|253124|253125|253126|253127|253128|253129|253130|253132|253133|253134|253135|253136|253137|253138|253139|253140|253141|253142|253143|305249|305250|305258|305260|305267|305272|305279|305291|305295|305302|305304|305308|305309|305310|305312|305318|305323|305327|305330|309065|309068|309070|309073|309075|309076|309078|309084|309087|309091|309110|309117|309121|309136|309152|309153|309154|309159|309161|309162|309163|309167|314271|314274|314286|314288|314292|314293|314299|314300|314328|314329|314330|314332|314339|314341|314346|314351|314359|314368|314371|314372|314374|314375|314376|314383|314384|314385|314386|314387|314388|314390|314391|314392|314398|314399|314400|314402|314407|314409|314410|314411|314412|314413|314415|314417|314423|314424|314425|314426|360899|535247|535248|535249|535250|535251|609693|609694|609696|609698|711527|711530|723086|723087|723093|736649|736650|736654|751139|751140|751148|751154|751155|766806|775249|777707|777758|790800|799539|799540|799541|799542|799543|799544|799545|799546|799547|799548|799549|818256|899535|899536|899537|899538|899539|899540|899541|899542|899543|899544|899545|899546|899547|899548|899549|899550|899551|899552|899553|899554|899555|899556|899557|899558|899559|899560|899561|899562|899563|899564|899565|899566|899567|899568|899569|899570|899571|899572|899573|899574|899575|899576|899577|899578|899579|899580|899581|899582|899583|899584|899585|899586|899587|899588|899589|899590|899591|899592|899593|899594|899595|899596|899597|899598|899599|899600|899601|899602|899603|899604|899605|899606|900493|900494|900495|900496|900497|900498|900499|919153|961857|967231|981626|981627|981628|981629|981630|981631|981632|981633|981634|981635|981636|981637|981638|981639|981640|981641|981642|981643|981644|981645|981646|981647|981648", "text": "Spherocytosis type 1" }, { - "baseId": "15546|15547|15551|15552|15553", + "upstreamId": "15546|15547|15551|15552|15553", "text": "Spherocytosis, type 1, autosomal recessive" }, { - "baseId": "15555|15556|15557|141827|200127|226902|227302|300924|300928|300929|300933|303860|303862|303871|303875|303876|303878|303882|303883|303891|308509|308516|308532|308550|308561|308562|308563|308566|369159|369165|434613|438330|443978|501400|522143|563682|635126|635127|635128|635129|672068|765800|788804|832283|832284|832285|832286|832287|832288|896780|896781|896782|896783|896784|896785|896786|896787|896788|896789|896790|900259|900260|933430|945135", + "upstreamId": "15555|15556|15557|141827|200127|226902|227302|300924|300928|300929|300933|303860|303862|303871|303875|303876|303878|303882|303883|303891|308509|308516|308532|308550|308561|308562|308563|308566|369159|369165|434613|438330|443978|501400|522143|563682|635126|635127|635128|635129|672068|765800|788804|832283|832284|832285|832286|832287|832288|896780|896781|896782|896783|896784|896785|896786|896787|896788|896789|896790|900259|900260|933430|945135", "text": "Methylmalonic aciduria and homocystinuria type cblF" }, { - "baseId": "15558|15559|15561|15562|15563|15564|15565|15566|33441|99922|134480|134481|134482|134483|134484|134485|134486|134487|134488|134489|134490|134491|134492|134493|134494|134495|134496|134497|134498|134499|134500|141018|141019|141020|141021|141022|141023|141024|141025|141027|141028|141029|141032|141033|141036|141037|141038|141039|141040|141042|141043|141044|141045|141046|141047|141047|141048|141049|141050|141051|141052|141053|141055|141056|141057|141058|141060|141061|141062|165548|165549|171281|171282|190385|190800|193941|207155|207157|207158|207159|207161|207162|207163|209640|209641|209642|209645|209646|209647|209649|209650|209653|209654|209656|209657|209658|209659|209660|209661|209664|209665|209666|209670|209671|209672|209673|209674|209679|209683|209684|209686|209687|209689|209690|209691|209695|209697|209698|209699|209703|209704|209705|209706|209708|209709|209710|209711|209714|209716|209717|209720|209722|209723|209724|209729|209730|209731|209734|209735|209736|209741|209742|209746|209748|209753|209754|209756|209757|209758|209759|209761|209766|209769|209771|209772|209774|209778|209778|209780|209781|209783|209785|209786|209792|209793|209795|209796|209799|209806|209807|209807|209808|209809|209812|209813|209818|209820|209824|209826|209827|209830|209836|209841|209842|209843|209845|209849|209850|209853|209854|209855|209856|209857|221556|224300|224304|227275|231636|231640|239646|239648|239649|239650|239651|239652|239653|239654|239656|239657|239659|239660|239661|239662|251642|251660|251661|258373|258374|258377|258383|258390|258390|258396|258397|258398|258402|258402|258404|258405|258406|258408|258413|258416|258417|267389|273965|295210|295211|295217|295218|295223|295226|295227|295239|295243|295245|295246|295248|295249|295254|295259|295261|295262|295267|295269|297008|297035|297036|297039|297040|297041|297048|297049|297049|297050|297051|297060|297065|297066|297086|297088|297094|297096|297105|300674|300678|300679|300684|300694|300696|300703|300715|300716|300717|300720|300724|300725|300727|300737|300743|300746|300747|300748|300760|300761|300762|300764|300766|300768|300860|300865|300867|300873|300874|300875|300877|300880|300881|300882|300889|300908|300919|300920|353677|359544|362067|362069|367879|368136|368142|368143|368157|368157|368174|368232|368242|368279|369519|369562|369580|394275|394552|394555|394559|394572|394575|394580|394600|394603|394608|394611|394613|394618|394619|394621|394624|394628|394770|394778|394780|394783|394788|394791|394797|395076|395083|395085|395086|395091|395092|395100|395105|395108|395112|395114|395117|395120|406626|413688|421519|421523|440046|443666|443671|443675|453872|454247|454249|454251|454257|454261|454264|454271|454272|454279|454289|454290|454402|454404|454406|454407|454409|454411|454414|454415|454415|454416|454422|454424|454430|454431|454435|454750|454751|454759|454763|454766|454772|454775|454778|454781|454790|454792|455037|455039|455040|455041|455042|455050|455052|455060|455062|455073|455074|455078|455079|455083|455085|455088|455089|455094|455096|455101|480518|480519|481723|490134|500650|500663|500955|501170|509699|509711|509714|509720|509722|509727|509730|509731|509732|509735|509737|509738|509742|509745|509747|511553|513553|520509|520509|520513|520517|520522|520525|520529|520532|520534|520540|520553|520556|520559|520743|520748|520749|520752|520754|520771|520773|520776|520786|520803|520808|520817|520823|520897|520901|520904|520922|520928|520930|520931|520932|520941|520946|520948|520960|520962|520964|520970|520972|521001|521004|521008|521010|521024|521026|521028|521033|521036|521039|521044|521046|537765|537768|537770|537771|552083|552430|560009|560011|560013|560015|560017|560019|560021|560023|560025|560114|560116|560118|560120|560122|560124|560126|560128|560130|560132|560134|562609|562612|562614|562616|562624|562625|562629|562635|562636|562638|562642|562644|564469|564476|564479|564480|564481|564483|564484|609572|612692|613460|614279|614280|620180|622345|632968|632969|632970|632971|632972|632973|632974|632975|632976|632977|632978|632979|632980|632981|632982|632983|632984|632985|632986|632987|632988|632989|632990|632991|632992|632993|632994|632995|632996|632997|632998|632999|633000|633001|633002|633003|633004|633005|651220|651300|651304|651310|651311|651324|660828|676960|686589|686592|686593|686594|686595|686598|686602|689768|689770|691674|691676|721195|734829|764794|774975|782124|790513|799393|799393|805004|816312|819532|819533|819534|819535|829948|829949|829950|829952|829954|829955|829956|829957|829958|829959|829960|829961|829962|829963|829964|829965|829966|829967|829968|829969|829970|829971|829972|829973|829974|829975|829976|829977|829978|829979|829980|829981|829982|829983|829984|829985|829986|829987|829988|829989|829990|829991|829992|851000|851002|851886|851888|851890|855102|892817|892818|892819|892820|892821|892822|892823|892824|892825|892826|892827|892828|892829|892830|892831|892832|892833|892834|892835|892836|892837|892838|892839|892840|892841|892842|892843|892844|892845|892846|892847|892848|892849|892850|892851|892852|892853|892854|892855|892856|892857|892858|892859|892860|892861|892862|892863|892864|896026|896027|896028|923749|923750|923751|923752|923753|923754|923755|923756|923757|923758|923759|923760|923761|923762|923763|923764|923765|923766|923767|923768|923769|923770|932611|932612|932613|932614|932615|932616|932617|932618|932619|932620|932621|932622|932623|932624|932625|939978|944285|944286|944287|944288|944289|944290|944291|953942|953944|953945|953946|953947|953948|953949|953950|953951|953952|959745|965440|966344|977207|977208", + "upstreamId": "15558|15559|15561|15562|15563|15564|15565|15566|33441|99922|134480|134481|134482|134483|134484|134485|134486|134487|134488|134489|134490|134491|134492|134493|134494|134495|134496|134497|134498|134499|134500|141018|141019|141020|141021|141022|141023|141024|141025|141027|141028|141029|141032|141033|141036|141037|141038|141039|141040|141042|141043|141044|141045|141046|141047|141047|141048|141049|141050|141051|141052|141053|141055|141056|141057|141058|141060|141061|141062|165548|165549|171281|171282|190385|190800|193941|207155|207157|207158|207159|207161|207162|207163|209640|209641|209642|209645|209646|209647|209649|209650|209653|209654|209656|209657|209658|209659|209660|209661|209664|209665|209666|209670|209671|209672|209673|209674|209679|209683|209684|209686|209687|209689|209690|209691|209695|209697|209698|209699|209703|209704|209705|209706|209708|209709|209710|209711|209714|209716|209717|209720|209722|209723|209724|209729|209730|209731|209734|209735|209736|209741|209742|209746|209748|209753|209754|209756|209757|209758|209759|209761|209766|209769|209771|209772|209774|209778|209778|209780|209781|209783|209785|209786|209792|209793|209795|209796|209799|209806|209807|209807|209808|209809|209812|209813|209818|209820|209824|209826|209827|209830|209836|209841|209842|209843|209845|209849|209850|209853|209854|209855|209856|209857|221556|224300|224304|227275|231636|231640|239646|239648|239649|239650|239651|239652|239653|239654|239656|239657|239659|239660|239661|239662|251642|251660|251661|258373|258374|258377|258383|258390|258390|258396|258397|258398|258402|258402|258404|258405|258406|258408|258413|258416|258417|267389|273965|295210|295211|295217|295218|295223|295226|295227|295239|295243|295245|295246|295248|295249|295254|295259|295261|295262|295267|295269|297008|297035|297036|297039|297040|297041|297048|297049|297049|297050|297051|297060|297065|297066|297086|297088|297094|297096|297105|300674|300678|300679|300684|300694|300696|300703|300715|300716|300717|300720|300724|300725|300727|300737|300743|300746|300747|300748|300760|300761|300762|300764|300766|300768|300860|300865|300867|300873|300874|300875|300877|300880|300881|300882|300889|300908|300919|300920|353677|359544|362067|362069|367879|368136|368142|368143|368157|368157|368174|368232|368242|368279|369519|369562|369580|394275|394552|394555|394559|394572|394575|394580|394600|394603|394608|394611|394613|394618|394619|394621|394624|394628|394770|394778|394780|394783|394788|394791|394797|395076|395083|395085|395086|395091|395092|395100|395105|395108|395112|395114|395117|395120|406626|413688|421519|421523|440046|443666|443671|443675|453872|454247|454249|454251|454257|454261|454264|454271|454272|454279|454289|454290|454402|454404|454406|454407|454409|454411|454414|454415|454415|454416|454422|454424|454430|454431|454435|454750|454751|454759|454763|454766|454772|454775|454778|454781|454790|454792|455037|455039|455040|455041|455042|455050|455052|455060|455062|455073|455074|455078|455079|455083|455085|455088|455089|455094|455096|455101|480518|480519|481723|490134|500650|500663|500955|501170|509699|509711|509714|509720|509722|509727|509730|509731|509732|509735|509737|509738|509742|509745|509747|511553|513553|520509|520509|520513|520517|520522|520525|520529|520532|520534|520540|520553|520556|520559|520743|520748|520749|520752|520754|520771|520773|520776|520786|520803|520808|520817|520823|520897|520901|520904|520922|520928|520930|520931|520932|520941|520946|520948|520960|520962|520964|520970|520972|521001|521004|521008|521010|521024|521026|521028|521033|521036|521039|521044|521046|537765|537768|537770|537771|552083|552430|560009|560011|560013|560015|560017|560019|560021|560023|560025|560114|560116|560118|560120|560122|560124|560126|560128|560130|560132|560134|562609|562612|562614|562616|562624|562625|562629|562635|562636|562638|562642|562644|564469|564476|564479|564480|564481|564483|564484|609572|612692|613460|614279|614280|620180|622345|632968|632969|632970|632971|632972|632973|632974|632975|632976|632977|632978|632979|632980|632981|632982|632983|632984|632985|632986|632987|632988|632989|632990|632991|632992|632993|632994|632995|632996|632997|632998|632999|633000|633001|633002|633003|633004|633005|651220|651300|651304|651310|651311|651324|660828|676960|686589|686592|686593|686594|686595|686598|686602|689768|689770|691674|691676|721195|734829|764794|774975|782124|790513|799393|799393|805004|816312|819532|819533|819534|819535|829948|829949|829950|829952|829954|829955|829956|829957|829958|829959|829960|829961|829962|829963|829964|829965|829966|829967|829968|829969|829970|829971|829972|829973|829974|829975|829976|829977|829978|829979|829980|829981|829982|829983|829984|829985|829986|829987|829988|829989|829990|829991|829992|851000|851002|851886|851888|851890|855102|892817|892818|892819|892820|892821|892822|892823|892824|892825|892826|892827|892828|892829|892830|892831|892832|892833|892834|892835|892836|892837|892838|892839|892840|892841|892842|892843|892844|892845|892846|892847|892848|892849|892850|892851|892852|892853|892854|892855|892856|892857|892858|892859|892860|892861|892862|892863|892864|896026|896027|896028|923749|923750|923751|923752|923753|923754|923755|923756|923757|923758|923759|923760|923761|923762|923763|923764|923765|923766|923767|923768|923769|923770|932611|932612|932613|932614|932615|932616|932617|932618|932619|932620|932621|932622|932623|932624|932625|939978|944285|944286|944287|944288|944289|944290|944291|953942|953944|953945|953946|953947|953948|953949|953950|953951|953952|959745|965440|966344|977207|977208", "text": "Congenital contractural arachnodactyly" }, { - "baseId": "15568|101787|101788|101789|101790|175940|190557|192499|205407|213109|213111|222368|222369|222371|230527|230529|230531|230532|241844|241846|241847|254957|254958|254959|254960|254964|254965|254966|320641|320642|320643|320648|329433|329435|329436|329450|329451|329456|329457|335996|336009|336011|336020|337969|337974|337977|337981|399648|620482|693497|791409|871893|871894|871895|871896|871897|871898|871899|871900|871901|871902|871903|871904|871905|871906|871907|871908|871909|871910|871911|871912", + "upstreamId": "15568|101787|101788|101789|101790|175940|190557|192499|205407|213109|213111|222368|222369|222371|230527|230529|230531|230532|241844|241846|241847|254957|254958|254959|254960|254964|254965|254966|320641|320642|320643|320648|329433|329435|329436|329450|329451|329456|329457|335996|336009|336011|336020|337969|337974|337977|337981|399648|620482|693497|791409|871893|871894|871895|871896|871897|871898|871899|871900|871901|871902|871903|871904|871905|871906|871907|871908|871909|871910|871911|871912", "text": "Ciliary dyskinesia, primary, 10" }, { - "baseId": "15570|15571|15572|40264|40265|40266|40267|134334|134335|134336|134337|134338|134339|189063|205728|209327|213527|282811|282818|282830|282831|282833|282834|282838|282841|282843|282844|282846|282851|282859|282861|283624|283626|283628|283630|283632|283635|283636|283637|283648|283654|283655|283663|283665|283666|283672|285150|285154|285156|285161|285168|285170|285171|285172|285175|285176|285183|285189|285190|285201|285202|285203|285657|285658|285659|285660|285662|285663|285664|285675|285707|285709|285712|285732|285733|285734|285741|285742|285754|285756|285757|285758|438178|537368|557694|558913|620937|628991|628992|628993|628994|683419|685920|685922|790127|792723|825211|881548|881549|881550|881551|881552|881553|881554|881555|881556|881557|881558|881559|881560|881561|881562|881563|881564|881565|881566|881567|881568|881569|881570|881571|881572|881573|881574|881575|881576|881577|881578|881579|881580|881581|881582|881583|881584|881585|881586|882845|882846|882847|922410|930976|930977|930978|942407", + "upstreamId": "15570|15571|15572|40264|40265|40266|40267|134334|134335|134336|134337|134338|134339|189063|205728|209327|213527|282811|282818|282830|282831|282833|282834|282838|282841|282843|282844|282846|282851|282859|282861|283624|283626|283628|283630|283632|283635|283636|283637|283648|283654|283655|283663|283665|283666|283672|285150|285154|285156|285161|285168|285170|285171|285172|285175|285176|285183|285189|285190|285201|285202|285203|285657|285658|285659|285660|285662|285663|285664|285675|285707|285709|285712|285732|285733|285734|285741|285742|285754|285756|285757|285758|438178|537368|557694|558913|620937|628991|628992|628993|628994|683419|685920|685922|790127|792723|825211|881548|881549|881550|881551|881552|881553|881554|881555|881556|881557|881558|881559|881560|881561|881562|881563|881564|881565|881566|881567|881568|881569|881570|881571|881572|881573|881574|881575|881576|881577|881578|881579|881580|881581|881582|881583|881584|881585|881586|882845|882846|882847|922410|930976|930977|930978|942407", "text": "Hypogonadism, diabetes mellitus, alopecia, mental retardation and electrocardiographic abnormalities" }, { - "baseId": "15573|15574|15575|15576|15577|15578|99509|99515|99521|99524|116527|140950|140956|140959|140963|140964|140965|140966|140968|140969|140970|140975|152820|152830|177110|177373|191520|191778|191986|192093|192826|192827|192896|193097|193098|193099|193777|194347|205152|205153|238032|247005|265562|266046|271533|274143|300904|300912|303823|303824|303831|303833|303846|308450|308477|308508|308531|389200|406887|406889|431696|431697|431705|431712|431714|438326|486397|512912|513965|543884|543888|543895|543897|543900|543902|543908|543910|543915|543921|543937|543952|543956|544194|544201|544203|544208|544217|544229|544240|544272|544275|544278|544280|544282|544284|544286|544292|544296|544302|544303|551546|551548|551549|551550|551551|551552|551608|551621|551622|551623|551624|590282|590283|610616|610617|611354|623294|623295|710580|710583|730434|735720|735721|735722|735726|744294|750154|765772|765774|765781|765785|765790|777640|782608|782625|782628|790645|790646|790647|790648|790649|790650|790651|790652|790653|790654|790655|790656|799448|799449|799450|799451|800356|818251|818252|832163|832169|832183|832190|832191|832208|832218|832219|832227|832229|832254|832263|832269|832276|852028|970836|980330|981552", + "upstreamId": "15573|15574|15575|15576|15577|15578|99509|99515|99521|99524|116527|140950|140956|140959|140963|140964|140965|140966|140968|140969|140970|140975|152820|152830|177110|177373|191520|191778|191986|192093|192826|192827|192896|193097|193098|193099|193777|194347|205152|205153|238032|247005|265562|266046|271533|274143|300904|300912|303823|303824|303831|303833|303846|308450|308477|308508|308531|389200|406887|406889|431696|431697|431705|431712|431714|438326|486397|512912|513965|543884|543888|543895|543897|543900|543902|543908|543910|543915|543921|543937|543952|543956|544194|544201|544203|544208|544217|544229|544240|544272|544275|544278|544280|544282|544284|544286|544292|544296|544302|544303|551546|551548|551549|551550|551551|551552|551608|551621|551622|551623|551624|590282|590283|610616|610617|611354|623294|623295|710580|710583|730434|735720|735721|735722|735726|744294|750154|765772|765774|765781|765785|765790|777640|782608|782625|782628|790645|790646|790647|790648|790649|790650|790651|790652|790653|790654|790655|790656|799448|799449|799450|799451|800356|818251|818252|832163|832169|832183|832190|832191|832208|832218|832219|832227|832229|832254|832263|832269|832276|852028|970836|980330|981552", "text": "Retinitis pigmentosa 25" }, { - "baseId": "15579|15580|39914|39915|39916|136044|136045|136046|136047|141380|141381|141382|200166|200167|200168|200169|200170|200172|215388|267661|305828|305830|305831|305833|305837|305839|305840|305842|309911|309912|309913|309919|309927|315124|315128|315129|315132|315133|315134|315216|315219|315222|315223|315225|315229|315232|315233|315234|315235|315238|315245|315246|369567|407452|457964|458527|458528|458604|481492|502786|524025|561847|565210|565212|565213|568096|620304|637387|637388|637389|736749|798605|819985|835030|835031|835032|835033|835034|835035|835036|835037|900001|900002|900003|900004|900005|900006|900007|900008|900009|900010|900011|900012|900013|900014|900015|900016|900017|900516|925259|925260|934417|934418|955499", + "upstreamId": "15579|15580|39914|39915|39916|136044|136045|136046|136047|141380|141381|141382|200166|200167|200168|200169|200170|200172|215388|267661|305828|305830|305831|305833|305837|305839|305840|305842|309911|309912|309913|309919|309927|315124|315128|315129|315132|315133|315134|315216|315219|315222|315223|315225|315229|315232|315233|315234|315235|315238|315245|315246|369567|407452|457964|458527|458528|458604|481492|502786|524025|561847|565210|565212|565213|568096|620304|637387|637388|637389|736749|798605|819985|835030|835031|835032|835033|835034|835035|835036|835037|900001|900002|900003|900004|900005|900006|900007|900008|900009|900010|900011|900012|900013|900014|900015|900016|900017|900516|925259|925260|934417|934418|955499", "text": "Nuclearly-encoded mitochondrial complex V (ATP synthase) deficiency 2" }, { - "baseId": "15582|15583|15584|15585|53206|53207|53208|174808|230229|230234|230235|230237|315088|315089|315090|315091|315096|315099|315108|315109|315113|315115|315116|315117|315123|315125|321908|321909|321913|321914|321922|321924|321926|321929|327985|327987|327996|328003|328009|329098|329102|329112|329130|329138|329140|329149|329150|329158|329159|329164|329176|329179|329194|578494|615815|620419|620836|868756|868757|868758|868759|868760|868761|868762|868763|868764|868765|868766|868767|868768|868769|868772|868773|868774|868775|868776|868777|868778|868779|872135", + "upstreamId": "15582|15583|15584|15585|53206|53207|53208|174808|230229|230234|230235|230237|315088|315089|315090|315091|315096|315099|315108|315109|315113|315115|315116|315117|315123|315125|321908|321909|321913|321914|321922|321924|321926|321929|327985|327987|327996|328003|328009|329098|329102|329112|329130|329138|329140|329149|329150|329158|329159|329164|329176|329179|329194|578494|615815|620419|620836|868756|868757|868758|868759|868760|868761|868762|868763|868764|868765|868766|868767|868768|868769|868772|868773|868774|868775|868776|868777|868778|868779|872135", "text": "Deafness, autosomal recessive 63" }, { - "baseId": "15582|16237|16339|17390|17391|17394|17396|17397|17398|17400|19141|19142|19431|19434|19436|19559|19565|19855|19856|19857|19858|19859|19860|19864|19865|19868|19869|19874|19875|19878|19879|19881|19955|19957|19961|19970|19972|19975|20180|20182|21172|21176|21182|21280|21281|21282|21650|21653|21837|22968|22974|23620|23621|24667|26886|26887|26889|26898|26899|32039|32040|32041|32042|32043|32044|32045|32046|32048|32049|32050|32053|32055|32062|32066|32068|32071|32075|32163|33361|34239|34241|34683|34686|38617|38879|39513|39947|44165|51396|52303|52308|52310|52313|52314|52316|52321|52322|52325|52329|52333|52334|52335|52337|52339|52341|52342|52344|52345|52348|52366|52372|52376|52378|52379|52380|52381|52382|52387|52389|52393|52398|52399|52400|52402|52406|52409|52410|52415|52419|52431|52434|52436|52440|52445|52450|52452|52458|52459|52461|52462|52464|52465|52468|52470|52471|52476|52478|52480|52483|52484|52488|52497|52499|52500|52510|52515|52516|52517|52520|52522|52656|52663|52664|52665|52666|52667|52668|52670|52671|52674|52675|52676|52678|52680|52683|52685|52687|52688|52691|52697|52701|52702|52710|52711|52720|52722|52724|52725|52731|52732|52734|52735|52736|52737|52738|52740|53289|53889|53890|53892|53894|53895|53896|53900|53902|53903|53904|53905|53907|53909|53911|53916|53917|53919|53920|53928|53930|53933|53934|54308|54610|54613|54614|54810|54844|54921|54922|54930|54936|54942|55030|55051|55085|55091|55094|55108|55119|55137|55153|55154|55160|55164|55165|55166|55174|55188|55194|55204|55206|55218|55242|55258|55267|55269|55278|55279|55284|55292|55296|55410|55419|55440|55457|55471|55474|55535|55536|55564|55611|55614|55629|57020|57028|57040|57094|57121|57122|57263|57266|57267|57268|57270|57291|57306|57309|57310|57327|57351|57357|57395|57404|57420|57423|57428|57432|57440|57505|57509|57510|57514|57517|57518|57519|57527|57531|57537|57538|57550|57551|57552|57554|57555|57556|57567|57568|57570|57574|57578|57588|57591|57595|57611|57633|57638|57659|57661|57664|57665|57666|57674|57688|57697|57705|57706|57707|57716|57720|57726|57741|57757|57766|57773|57775|57777|57783|57786|57788|57790|57796|67718|70522|76695|76718|100292|141320|152878|152890|169009|169011|172390|172463|172467|172511|172515|172517|172522|172583|172740|172741|172750|172765|172768|172778|172881|172889|172916|172924|173509|173510|173511|173539|173634|173635|173637|173640|173648|173677|174003|174023|174027|174030|174032|174033|174141|174146|174151|174163|174164|174221|174260|174303|174396|174401|174449|174459|174471|174483|174571|174581|174680|174699|174722|174808|174844|174960|174998|175093|175133|175222|175223|175224|175234|175237|175277|175338|175407|175522|175524|175763|175766|175770|175771|175904|175905|175907|175911|175912|175913|175925|175926|175947|175952|175960|175964|175965|175967|175969|175972|176001|176090|176096|176111|176112|176115|176240|176262|176332|176365|176368|176455|176456|176463|176470|176477|176480|176488|176561|176564|176571|176587|176599|176604|176612|176706|176723|176870|176879|176880|176920|178183|178185|178186|178188|178248|178258|178260|178267|178278|178288|178304|178305|186676|186731|186854|186857|186860|186863|186864|195093|203228|211050|215511|228251|228256|228299|228300|228312|228320|228321|228328|228337|228349|228352|228526|228932|228972|228973|229148|229151|229152|229188|229205|229284|229307|229323|229335|229348|229362|229420|229510|229525|229527|229531|229537|229545|229546|229615|229627|229628|229629|229701|229703|229705|229706|229709|229712|229788|229815|229846|229851|229858|229863|229896|229908|230005|230007|230048|230079|230242|230248|230249|230342|230349|230353|230401|230433|230434|230451|230543|230552|230571|230574|230579|230618|230688|230729|230733|230744|230750|230751|230977|230991|231006|231041|231133|231229|231297|231385|231386|231387|231388|237610|273474|275828|327577|357850|357859|358080|358129|358131|389206|390155|404799|405044|421558|429949|431606|442483|445122|445124|445719|482004|489962|490084|491485|494951|495068|496156|496179|496182|496184|496265|496266|496320|496322|496379|496392|496456|496544|496561|496627|496765|496773|496807|496836|496878|496916|496922|496931|496950|496965|496983|497039|497046|497055|497072|497128|497153|497157|497169|497174|497191|497200|497248|497253|497269|497270|497302|497341|497344|497384|497408|497430|497466|497482|497563|497581|497613|497628|497655|497666|497672|497680|497686|497699|497703|497791|497802|497803|497811|497812|505638|508742|508746|537726|540927|541060|549036|590349|609763|612902|620574|654163|654244|654272|654377|654389|654402|654419|654448|654466|654517|654545|654645|654647|654648|654668|654723|654726|654730|654731|654768|654775|654817|654829|654838|654922|654974|654975|654976|654978|654985|654987|672206|918221|918323|918352|918410|918421|918423|918484|977404|977405", + "upstreamId": "15582|16237|16339|17390|17391|17394|17396|17397|17398|17400|19141|19142|19431|19434|19436|19559|19565|19855|19856|19857|19858|19859|19860|19864|19865|19868|19869|19874|19875|19878|19879|19881|19955|19957|19961|19970|19972|19975|20180|20182|21172|21176|21182|21280|21281|21282|21650|21653|21837|22968|22974|23620|23621|24667|26886|26887|26889|26898|26899|32039|32040|32041|32042|32043|32044|32045|32046|32048|32049|32050|32053|32055|32062|32066|32068|32071|32075|32163|33361|34239|34241|34683|34686|38617|38879|39513|39947|44165|51396|52303|52308|52310|52313|52314|52316|52321|52322|52325|52329|52333|52334|52335|52337|52339|52341|52342|52344|52345|52348|52366|52372|52376|52378|52379|52380|52381|52382|52387|52389|52393|52398|52399|52400|52402|52406|52409|52410|52415|52419|52431|52434|52436|52440|52445|52450|52452|52458|52459|52461|52462|52464|52465|52468|52470|52471|52476|52478|52480|52483|52484|52488|52497|52499|52500|52510|52515|52516|52517|52520|52522|52656|52663|52664|52665|52666|52667|52668|52670|52671|52674|52675|52676|52678|52680|52683|52685|52687|52688|52691|52697|52701|52702|52710|52711|52720|52722|52724|52725|52731|52732|52734|52735|52736|52737|52738|52740|53289|53889|53890|53892|53894|53895|53896|53900|53902|53903|53904|53905|53907|53909|53911|53916|53917|53919|53920|53928|53930|53933|53934|54308|54610|54613|54614|54810|54844|54921|54922|54930|54936|54942|55030|55051|55085|55091|55094|55108|55119|55137|55153|55154|55160|55164|55165|55166|55174|55188|55194|55204|55206|55218|55242|55258|55267|55269|55278|55279|55284|55292|55296|55410|55419|55440|55457|55471|55474|55535|55536|55564|55611|55614|55629|57020|57028|57040|57094|57121|57122|57263|57266|57267|57268|57270|57291|57306|57309|57310|57327|57351|57357|57395|57404|57420|57423|57428|57432|57440|57505|57509|57510|57514|57517|57518|57519|57527|57531|57537|57538|57550|57551|57552|57554|57555|57556|57567|57568|57570|57574|57578|57588|57591|57595|57611|57633|57638|57659|57661|57664|57665|57666|57674|57688|57697|57705|57706|57707|57716|57720|57726|57741|57757|57766|57773|57775|57777|57783|57786|57788|57790|57796|67718|70522|76695|76718|100292|141320|152878|152890|169009|169011|172390|172463|172467|172511|172515|172517|172522|172583|172740|172741|172750|172765|172768|172778|172881|172889|172916|172924|173509|173510|173511|173539|173634|173635|173637|173640|173648|173677|174003|174023|174027|174030|174032|174033|174141|174146|174151|174163|174164|174221|174260|174303|174396|174401|174449|174459|174471|174483|174571|174581|174680|174699|174722|174808|174844|174960|174998|175093|175133|175222|175223|175224|175234|175237|175277|175338|175407|175522|175524|175763|175766|175770|175771|175904|175905|175907|175911|175912|175913|175925|175926|175947|175952|175960|175964|175965|175967|175969|175972|176001|176090|176096|176111|176112|176115|176240|176262|176332|176365|176368|176455|176456|176463|176470|176477|176480|176488|176561|176564|176571|176587|176599|176604|176612|176706|176723|176870|176879|176880|176920|178183|178185|178186|178188|178248|178258|178260|178267|178278|178288|178304|178305|186676|186731|186854|186857|186860|186863|186864|195093|203228|211050|215511|228251|228256|228299|228300|228312|228320|228321|228328|228337|228349|228352|228526|228932|228972|228973|229148|229151|229152|229188|229205|229284|229307|229323|229335|229348|229362|229420|229510|229525|229527|229531|229537|229545|229546|229615|229627|229628|229629|229701|229703|229705|229706|229709|229712|229788|229815|229846|229851|229858|229863|229896|229908|230005|230007|230048|230079|230242|230248|230249|230342|230349|230353|230401|230433|230434|230451|230543|230552|230571|230574|230579|230618|230688|230729|230733|230744|230750|230751|230977|230991|231006|231041|231133|231229|231297|231385|231386|231387|231388|237610|273474|275828|327577|357850|357859|358080|358129|358131|389206|390155|404799|405044|421558|429949|431606|442483|445122|445124|445719|482004|489962|490084|491485|494951|495068|496156|496179|496182|496184|496265|496266|496320|496322|496379|496392|496456|496544|496561|496627|496765|496773|496807|496836|496878|496916|496922|496931|496950|496965|496983|497039|497046|497055|497072|497128|497153|497157|497169|497174|497191|497200|497248|497253|497269|497270|497302|497341|497344|497384|497408|497430|497466|497482|497563|497581|497613|497628|497655|497666|497672|497680|497686|497699|497703|497791|497802|497803|497811|497812|505638|508742|508746|537726|540927|541060|549036|590349|609763|612902|620574|654163|654244|654272|654377|654389|654402|654419|654448|654466|654517|654545|654645|654647|654648|654668|654723|654726|654730|654731|654768|654775|654817|654829|654838|654922|654974|654975|654976|654978|654985|654987|672206|918221|918323|918352|918410|918421|918423|918484|977404|977405", "text": "Rare genetic deafness" }, { - "baseId": "15586|140308|211343|359159|359160|359161|359163|359164|917814|917815|919178", + "upstreamId": "15586|140308|211343|359159|359160|359161|359163|359164|917814|917815|919178", "text": "Mitochondrial complex 1 deficiency, nuclear type 17" }, { - "baseId": "15587|15588|15589|15590|15591|15592|15593|15594|15595|15596|15597|15598|15599|15601|39908|256682|256683|331767|331768|331771|331776|331785|331790|331792|331793|331795|331798|331801|331802|331805|331808|331810|331814|331816|331828|331829|331831|331834|331837|331842|331846|331850|331853|331873|331875|331895|331897|331901|342058|342061|342062|342065|342067|342069|342079|342080|342083|342084|342090|342091|342094|342095|342097|342099|342102|342103|342110|342113|342114|342120|342124|342126|342128|342132|342134|342145|347435|347436|347439|347442|347443|347444|347448|347449|347453|347454|347455|347459|347462|347463|347465|347466|347470|347475|347476|347479|347482|347483|347485|347487|347490|347492|348769|348770|348778|348781|348782|348783|348786|348787|348789|348791|348792|348795|348797|348798|348801|348803|348807|348808|348811|348812|348813|348814|348823|348824|348829|348844|348846|348848|348853|348854|348857|348862|348865|348866|348868|348873|348874|348875|362176|612137|620623|620624|791873|791874|791875|880678|880679|980384", + "upstreamId": "15587|15588|15589|15590|15591|15592|15593|15594|15595|15596|15597|15598|15599|15601|39908|256682|256683|331767|331768|331771|331776|331785|331790|331792|331793|331795|331798|331801|331802|331805|331808|331810|331814|331816|331828|331829|331831|331834|331837|331842|331846|331850|331853|331873|331875|331895|331897|331901|342058|342061|342062|342065|342067|342069|342079|342080|342083|342084|342090|342091|342094|342095|342097|342099|342102|342103|342110|342113|342114|342120|342124|342126|342128|342132|342134|342145|347435|347436|347439|347442|347443|347444|347448|347449|347453|347454|347455|347459|347462|347463|347465|347466|347470|347475|347476|347479|347482|347483|347485|347487|347490|347492|348769|348770|348778|348781|348782|348783|348786|348787|348789|348791|348792|348795|348797|348798|348801|348803|348807|348808|348811|348812|348813|348814|348823|348824|348829|348844|348846|348848|348853|348854|348857|348862|348865|348866|348868|348873|348874|348875|362176|612137|620623|620624|791873|791874|791875|880678|880679|980384", "text": "Protoporphyria, erythropoietic, 1" }, { - "baseId": "15589|15601|214205|214208|214224", + "upstreamId": "15589|15601|214205|214208|214224", "text": "Jaundice" }, { - "baseId": "15589|15601", + "upstreamId": "15589|15601", "text": "Erythema" }, { - "baseId": "15600|16003|17020|17279|17333|18370|18416|18706|18962|19407|20128|20347|20492|21136|22052|22107|22208|22913|23191|23280|23950|25431|25541|25857|26197|26581|27225|27848|28196|28660|28945|29421|29453|29836|29837|29838|29855|29941|29952|30080|30204|30536|30656|31086|31087|31331|31516|31604|31786|31812|32748|32755|32777|32846|32893|32902|32911|32912|33332|34010|34011|36264|36268|36271|36282|36285|36290|36303|36316|36326|36774|38381|38382|38386|38388|38389|38393|38394|38403|38409|38411|38412|38413|38420|38423|38429|38430|38433|38439|38440|38441|38443|38453|38454|38456|38458|38460|38463|38464|38466|38467|38468|38472|38474|38475|38477|38478|38479|38480|38482|38486|38487|38488|38490|38491|38492|38495|38498|38831|39688|45585|45586|45588|45814|46900|46929|46930|47214|47696|47697|47698|47699|47700|47701|48593|48594|49640|49641|49642|49643|51304|51328|65678|65679|70465|70466|70469|75266|75810|75811|76114|76115|76256|76257|76280|76281|76326|76327|76521|76962|95937|95938|97321|97524|107154|107155|132608|136523|136524|165917|166223|166332|166333|166407|166442|166443|171716|171717|172806|175053|175331|178311|178409|178410|185945|187140|187141|187253|187271|187272|188043|188045|188048|188237|188243|188244|198596|198597|198599|198600|198603|198604|198607|198612|198623|198624|198635|198636|198637|200465|200466|200559|200560|200618|200619|200690|204120|204121|204141|204142|204143|204144|204995|204996|204997|205011|205071|205072|205435|205436|205443|205444|205454|205455|205459|205471|205472|205480|205491|209423|209424|213520|213521|213529|213531|213542|213543|213548|213553|213555|213559|213564|213567|213568|213573|213579|213581|213586|213587|213594|213596|213601|213611|213612|213615|213616|213617|213618|213619|213623|213625|213626|213635|213638|213639|213642|213657|213660|213714|213715|213997|213998|214001|214011|214149|214150|214380|214381|214382|214384|214387|214390|214540|215016|215658|215659|222899|222990|222991|223750|223754|224615|226245|226246|226444|226445|226446|226450|226452|226453|226461|226462|226465|226478|226485|226486|229064|230420|230906|237477|237478|237479|237481|237599|237606|237607|237619|237656|237798|237812|237957|237961|237962|243924|243976|244009|244069|244084|244097|244180|244181|245306|245414|245688|245692|245962|245963|247360|247522|247523|248590|260440|260483|260732|260792|260793|260930|260931|260935|262266|262702|262703|262704|262705|262706|262707|262708|262709|262710|262711|262712|262713|262762|262763|262764|262765|262929|262930|263528|263529|263866|263867|354271|360754|361134|361135|361945|361964|361965|361968|361969|361971|362050|362051|362059|362060|362400|362401|362631|362632|362635|364259|364260|364261|364262|364263|364264|364265|364266|380146|384474|390711|390712|404620|411584|414032|414033|418555|420149|420150|420980|420981|421145|421146|424190|424261|424391|424392|424414|424415|424586|424587|424940|425238|425239|427117|427118|427119|427128|427129|431552|431886|431887|434125|434128|434131|437663|439519|439520|439524|439525|472227|472254|472257|480401|480402|480403|480404|480405|480542|481068|481281|481282|481283|486574|486806|496538|536015|536016|536085|536104|536105|546974|547127|550124|550158|550637|550638|551237|551238|551241|551505|551506|551547|576064|576307|576308|578241|578242|578662|578663|608890|609023|609048|610366|613407|613408|613409|613410|613411|613412|613413|613414|613415|613416|613417|613418|613419|613420|613421|613423|613427|613428|614641|615901|615916|615917|619827|622272|622273|622274|622277|622278|622279|622292|622293|622828|622829|622830|622831|622837|622838|622839|622840|623812|625094|654101|654102|677116|677118|679212|679213|679694|679695|680081|680082|682301|682314|682316|682795|789141|800335|800341|804893|806357|806358|815787|815877|815878|816514|818750|857326|857332|857354|857355|857356|857357|857376|857377|857434|857524|858636|858667|861050|861124|861125|904064|904065|904244|904246|904871|918325|918326|961426|961429|962921|962922|967028|967029|970489|970490|970498|970499|970500|970501|970502|970504|970505|970511|970634|970635|970636|970637|970638|970639|970640|970643|970644|970645|970646|970647|970648|970649|970650|970651|970652|971236|971352|972758|972759|972760|972761|980502|980503", + "upstreamId": "15600|16003|17020|17279|17333|18370|18416|18706|18962|19407|20128|20347|20492|21136|22052|22107|22208|22913|23191|23280|23950|25431|25541|25857|26197|26581|27225|27848|28196|28660|28945|29421|29453|29836|29837|29838|29855|29941|29952|30080|30204|30536|30656|31086|31087|31331|31516|31604|31786|31812|32748|32755|32777|32846|32893|32902|32911|32912|33332|34010|34011|36264|36268|36271|36282|36285|36290|36303|36316|36326|36774|38381|38382|38386|38388|38389|38393|38394|38403|38409|38411|38412|38413|38420|38423|38429|38430|38433|38439|38440|38441|38443|38453|38454|38456|38458|38460|38463|38464|38466|38467|38468|38472|38474|38475|38477|38478|38479|38480|38482|38486|38487|38488|38490|38491|38492|38495|38498|38831|39688|45585|45586|45588|45814|46900|46929|46930|47214|47696|47697|47698|47699|47700|47701|48593|48594|49640|49641|49642|49643|51304|51328|65678|65679|70465|70466|70469|75266|75810|75811|76114|76115|76256|76257|76280|76281|76326|76327|76521|76962|95937|95938|97321|97524|107154|107155|132608|136523|136524|165917|166223|166332|166333|166407|166442|166443|171716|171717|172806|175053|175331|178311|178409|178410|185945|187140|187141|187253|187271|187272|188043|188045|188048|188237|188243|188244|198596|198597|198599|198600|198603|198604|198607|198612|198623|198624|198635|198636|198637|200465|200466|200559|200560|200618|200619|200690|204120|204121|204141|204142|204143|204144|204995|204996|204997|205011|205071|205072|205435|205436|205443|205444|205454|205455|205459|205471|205472|205480|205491|209423|209424|213520|213521|213529|213531|213542|213543|213548|213553|213555|213559|213564|213567|213568|213573|213579|213581|213586|213587|213594|213596|213601|213611|213612|213615|213616|213617|213618|213619|213623|213625|213626|213635|213638|213639|213642|213657|213660|213714|213715|213997|213998|214001|214011|214149|214150|214380|214381|214382|214384|214387|214390|214540|215016|215658|215659|222899|222990|222991|223750|223754|224615|226245|226246|226444|226445|226446|226450|226452|226453|226461|226462|226465|226478|226485|226486|229064|230420|230906|237477|237478|237479|237481|237599|237606|237607|237619|237656|237798|237812|237957|237961|237962|243924|243976|244009|244069|244084|244097|244180|244181|245306|245414|245688|245692|245962|245963|247360|247522|247523|248590|260440|260483|260732|260792|260793|260930|260931|260935|262266|262702|262703|262704|262705|262706|262707|262708|262709|262710|262711|262712|262713|262762|262763|262764|262765|262929|262930|263528|263529|263866|263867|354271|360754|361134|361135|361945|361964|361965|361968|361969|361971|362050|362051|362059|362060|362400|362401|362631|362632|362635|364259|364260|364261|364262|364263|364264|364265|364266|380146|384474|390711|390712|404620|411584|414032|414033|418555|420149|420150|420980|420981|421145|421146|424190|424261|424391|424392|424414|424415|424586|424587|424940|425238|425239|427117|427118|427119|427128|427129|431552|431886|431887|434125|434128|434131|437663|439519|439520|439524|439525|472227|472254|472257|480401|480402|480403|480404|480405|480542|481068|481281|481282|481283|486574|486806|496538|536015|536016|536085|536104|536105|546974|547127|550124|550158|550637|550638|551237|551238|551241|551505|551506|551547|576064|576307|576308|578241|578242|578662|578663|608890|609023|609048|610366|613407|613408|613409|613410|613411|613412|613413|613414|613415|613416|613417|613418|613419|613420|613421|613423|613427|613428|614641|615901|615916|615917|619827|622272|622273|622274|622277|622278|622279|622292|622293|622828|622829|622830|622831|622837|622838|622839|622840|623812|625094|654101|654102|677116|677118|679212|679213|679694|679695|680081|680082|682301|682314|682316|682795|789141|800335|800341|804893|806357|806358|815787|815877|815878|816514|818750|857326|857332|857354|857355|857356|857357|857376|857377|857434|857524|858636|858667|861050|861124|861125|904064|904065|904244|904246|904871|918325|918326|961426|961429|962921|962922|967028|967029|970489|970490|970498|970499|970500|970501|970502|970504|970505|970511|970634|970635|970636|970637|970638|970639|970640|970643|970644|970645|970646|970647|970648|970649|970650|970651|970652|971236|971352|972758|972759|972760|972761|980502|980503", "text": "-" }, { - "baseId": "15601|918495", + "upstreamId": "15601|918495", "text": "Autosomal erythropoietic protoporphyria" }, { - "baseId": "15602|15603|15604|15605|15606|15607|15608|39903|39904|39905|39906|48469|48470|135781|135782|135783|135784|135785|135786|135787|135788|135789|135790|135791|135792|135793|135794|195391|207790|271254|271405|271522|310633|310635|310636|310637|310641|310643|315867|315875|315881|315882|315887|315895|315904|321917|321920|321921|321933|321945|321949|321950|321951|321961|321962|321963|321966|321987|322638|322639|322640|322642|322643|460129|460135|460506|525350|525359|525371|525373|525447|525453|525566|525567|525785|563923|563926|563931|563933|564730|566449|566454|566463|566464|566470|566471|566475|569414|586654|586769|624410|639125|639126|639127|639128|639129|639130|639131|639132|639133|639134|639135|639136|639137|639138|639139|652007|701424|724048|724049|724050|724051|730704|737572|737573|752217|759960|783672|837183|837184|837185|837186|837187|837188|837189|837190|837191|837192|866101|866102|866103|866104|866105|866106|866107|866108|866109|866110|866111|866112|866113|903570|925911|935147|935148|935149|935150|940964|947027|947028|956150|956151|956152|956153|983773", + "upstreamId": "15602|15603|15604|15605|15606|15607|15608|39903|39904|39905|39906|48469|48470|135781|135782|135783|135784|135785|135786|135787|135788|135789|135790|135791|135792|135793|135794|195391|207790|271254|271405|271522|310633|310635|310636|310637|310641|310643|315867|315875|315881|315882|315887|315895|315904|321917|321920|321921|321933|321945|321949|321950|321951|321961|321962|321963|321966|321987|322638|322639|322640|322642|322643|460129|460135|460506|525350|525359|525371|525373|525447|525453|525566|525567|525785|563923|563926|563931|563933|564730|566449|566454|566463|566464|566470|566471|566475|569414|586654|586769|624410|639125|639126|639127|639128|639129|639130|639131|639132|639133|639134|639135|639136|639137|639138|639139|652007|701424|724048|724049|724050|724051|730704|737572|737573|752217|759960|783672|837183|837184|837185|837186|837187|837188|837189|837190|837191|837192|866101|866102|866103|866104|866105|866106|866107|866108|866109|866110|866111|866112|866113|903570|925911|935147|935148|935149|935150|940964|947027|947028|956150|956151|956152|956153|983773", "text": "Histiocytosis-lymphadenopathy plus syndrome" }, { - "baseId": "15609|15610|140303|359158|361116|550094|788935|791972|800167", + "upstreamId": "15609|15610|140303|359158|361116|550094|788935|791972|800167", "text": "Mitochondrial complex 1 deficiency, nuclear type 16" }, { - "baseId": "15611", + "upstreamId": "15611", "text": "Kininogen deficiency, total" }, { - "baseId": "15612|15613|15614|227257", + "upstreamId": "15612|15613|15614|227257", "text": "High molecular weight kininogen deficiency" }, { - "baseId": "15615|15616|15617|15618|15619|15620|15621|15622|15623|15624|15625|15626|15627|15628|15629|15630|15631|15632|15633|15634|15635|15636|15637|15638|15639|15640|15641|15642|15643|15644|15645|15646|15647|15648|15649|15650|15651|15652|15653|15654|15655|15656|15657|15658|15659|15660|15661|15662|15664|15665|15666|15667|15668|15669|15670|15671|15672|15673|15674|15675|15676|15678|98634|98636|98637|98638|98639|98641|98643|98644|98645|98647|98648|98649|98650|98651|98653|98654|98655|98656|98657|98658|98659|98660|98662|98663|108195|108199|108204|108211|108212|108213|108218|108219|108220|108223|108225|108227|108228|108234|108236|108237|108239|108240|108242|108243|108245|108246|108250|108253|108254|108257|108260|108261|108262|108264|108266|108267|108271|108272|108273|108274|108277|108278|108279|108280|108281|108283|108285|108286|108289|108290|108291|108292|108293|108296|108297|108301|108302|108303|108304|108305|108307|108308|108309|108312|108313|108316|108317|108319|108320|108322|108324|108325|108326|108328|108330|108331|108332|108333|108336|108337|108338|108340|108341|108342|108343|108344|108345|108347|108349|108352|108354|108355|108356|108357|108358|108359|108361|108362|108368|108369|108373|108374|108375|108378|108380|108381|108383|108385|108386|108388|108390|108391|108392|108394|108396|108397|108398|108399|108400|108401|108402|108403|108405|108406|108407|108408|108410|108413|108416|108420|108421|108422|108423|108425|108429|108430|108432|108433|108434|108436|108437|108438|108439|108441|108442|108443|108448|108450|108451|108452|108454|108456|108457|108458|108459|108460|108462|108463|108465|108467|108469|108470|108471|108472|108473|108474|108476|108477|108478|108479|108480|108482|108483|108485|108487|108488|108489|108492|108493|108494|108495|108498|108499|108501|108502|108503|108504|108505|108506|108508|108509|108513|108515|108518|108520|108522|108524|108525|108528|108529|108531|108532|108536|108537|108539|108540|108541|108542|108543|108546|108547|108549|108550|108551|108552|108553|108554|108557|108559|108560|108566|108567|108568|108569|108570|108572|108575|108576|108577|108578|108579|108580|108582|108585|108586|108587|108588|108589|108590|108591|108592|108593|108596|108598|108599|108602|108605|108607|108608|108609|108610|108612|108613|108615|108616|108617|108618|108620|108621|108622|108623|108624|108625|108628|108630|108633|108635|108636|108637|108638|108640|108641|108643|108646|108647|108648|108649|108650|108651|108652|108653|108654|108657|108658|125851|125852|125853|125854|125855|125856|125857|125858|125859|125860|125861|125862|125863|125864|125865|125866|125867|125868|125869|125870|125871|125872|125873|125874|125875|125876|125877|125878|125879|125880|125881|125882|125883|125884|125885|125886|125887|125888|125889|125890|125891|125892|125904|130974|136994|137051|186846|186847|191324|194286|200222|200225|204453|204454|204455|204456|227027|227028|227029|227030|254389|265310|270899|315838|315842|322931|322933|329001|329002|329008|329009|330196|330201|330203|353207|358082|358083|358084|358085|358086|358087|358088|358089|358090|358091|363815|408504|421894|432709|432710|440021|440042|461766|461793|461795|462148|462155|462157|487329|504093|526605|526617|526628|546568|546570|546573|546577|546582|546587|546590|546596|546598|546604|546605|546619|546620|546621|546629|546632|546804|546816|546818|546819|546821|546823|546833|546837|546890|546898|546905|546906|546907|546913|546916|546923|546925|546926|546931|546934|547131|547139|547142|547146|547151|547154|547160|547165|547168|547170|564992|566303|567645|571177|576255|576256|576257|581278|581708|610543|610544|610545|610546|610547|610548|610549|610550|610551|610552|610553|610554|610555|610556|610557|610558|610559|610560|610561|610562|611103|611986|613618|613619|613620|613621|613622|613623|614606|623049|623050|640583|640584|640585|640586|640587|640588|652164|652393|652620|693132|702061|724841|738395|738396|738397|753050|768865|768866|768868|778019|784255|791187|791188|791189|794119|794120|794121|794122|794123|794124|794125|794126|794127|794128|794129|794130|794131|794132|794133|794134|794135|794136|794137|794138|794139|794140|794141|794142|794143|794144|794145|794146|794147|794148|820439|820440|839250|839251|839252|852429|852430|852653|860992|860993|860994|860995|860996|860997|860998|860999|861000|861001|861002|861003|861004|861005|861006|861007|861008|869140|869141|869142|869143|869144|869145|869146|869147|869148|872177|917098|920555|920556|920557|920558|920559|920560|920561|920562|920563|920564|920565|920566|920567|920568|920569|920570|920571|920572|920573|920574|920575|920576|920577|920578|920579|920580|920581|920582|920583|926446|926447|926448|926449|926450|935899|935900|940239|947770|956735|956736|956737|956738|972616|975726|975727|975728|975729|975730|975731|975732|975733|975734|975735|975736|975737|975738|975739|975740|975741|975742|975743|975744|975745|975746|975747|975748|975749|975750|975751|975752|975753|975754|975852|975879|975880|975881|975882|975883|975884|975885|975886|975896|979255|979256|979257|979258|979259|979260|979261|979262|979263|979264|979265|979266|979267", + "upstreamId": "15615|15616|15617|15618|15619|15620|15621|15622|15623|15624|15625|15626|15627|15628|15629|15630|15631|15632|15633|15634|15635|15636|15637|15638|15639|15640|15641|15642|15643|15644|15645|15646|15647|15648|15649|15650|15651|15652|15653|15654|15655|15656|15657|15658|15659|15660|15661|15662|15664|15665|15666|15667|15668|15669|15670|15671|15672|15673|15674|15675|15676|15678|98634|98636|98637|98638|98639|98641|98643|98644|98645|98647|98648|98649|98650|98651|98653|98654|98655|98656|98657|98658|98659|98660|98662|98663|108195|108199|108204|108211|108212|108213|108218|108219|108220|108223|108225|108227|108228|108234|108236|108237|108239|108240|108242|108243|108245|108246|108250|108253|108254|108257|108260|108261|108262|108264|108266|108267|108271|108272|108273|108274|108277|108278|108279|108280|108281|108283|108285|108286|108289|108290|108291|108292|108293|108296|108297|108301|108302|108303|108304|108305|108307|108308|108309|108312|108313|108316|108317|108319|108320|108322|108324|108325|108326|108328|108330|108331|108332|108333|108336|108337|108338|108340|108341|108342|108343|108344|108345|108347|108349|108352|108354|108355|108356|108357|108358|108359|108361|108362|108368|108369|108373|108374|108375|108378|108380|108381|108383|108385|108386|108388|108390|108391|108392|108394|108396|108397|108398|108399|108400|108401|108402|108403|108405|108406|108407|108408|108410|108413|108416|108420|108421|108422|108423|108425|108429|108430|108432|108433|108434|108436|108437|108438|108439|108441|108442|108443|108448|108450|108451|108452|108454|108456|108457|108458|108459|108460|108462|108463|108465|108467|108469|108470|108471|108472|108473|108474|108476|108477|108478|108479|108480|108482|108483|108485|108487|108488|108489|108492|108493|108494|108495|108498|108499|108501|108502|108503|108504|108505|108506|108508|108509|108513|108515|108518|108520|108522|108524|108525|108528|108529|108531|108532|108536|108537|108539|108540|108541|108542|108543|108546|108547|108549|108550|108551|108552|108553|108554|108557|108559|108560|108566|108567|108568|108569|108570|108572|108575|108576|108577|108578|108579|108580|108582|108585|108586|108587|108588|108589|108590|108591|108592|108593|108596|108598|108599|108602|108605|108607|108608|108609|108610|108612|108613|108615|108616|108617|108618|108620|108621|108622|108623|108624|108625|108628|108630|108633|108635|108636|108637|108638|108640|108641|108643|108646|108647|108648|108649|108650|108651|108652|108653|108654|108657|108658|125851|125852|125853|125854|125855|125856|125857|125858|125859|125860|125861|125862|125863|125864|125865|125866|125867|125868|125869|125870|125871|125872|125873|125874|125875|125876|125877|125878|125879|125880|125881|125882|125883|125884|125885|125886|125887|125888|125889|125890|125891|125892|125904|130974|136994|137051|186846|186847|191324|194286|200222|200225|204453|204454|204455|204456|227027|227028|227029|227030|254389|265310|270899|315838|315842|322931|322933|329001|329002|329008|329009|330196|330201|330203|353207|358082|358083|358084|358085|358086|358087|358088|358089|358090|358091|363815|408504|421894|432709|432710|440021|440042|461766|461793|461795|462148|462155|462157|487329|504093|526605|526617|526628|546568|546570|546573|546577|546582|546587|546590|546596|546598|546604|546605|546619|546620|546621|546629|546632|546804|546816|546818|546819|546821|546823|546833|546837|546890|546898|546905|546906|546907|546913|546916|546923|546925|546926|546931|546934|547131|547139|547142|547146|547151|547154|547160|547165|547168|547170|564992|566303|567645|571177|576255|576256|576257|581278|581708|610543|610544|610545|610546|610547|610548|610549|610550|610551|610552|610553|610554|610555|610556|610557|610558|610559|610560|610561|610562|611103|611986|613618|613619|613620|613621|613622|613623|614606|623049|623050|640583|640584|640585|640586|640587|640588|652164|652393|652620|693132|702061|724841|738395|738396|738397|753050|768865|768866|768868|778019|784255|791187|791188|791189|794119|794120|794121|794122|794123|794124|794125|794126|794127|794128|794129|794130|794131|794132|794133|794134|794135|794136|794137|794138|794139|794140|794141|794142|794143|794144|794145|794146|794147|794148|820439|820440|839250|839251|839252|852429|852430|852653|860992|860993|860994|860995|860996|860997|860998|860999|861000|861001|861002|861003|861004|861005|861006|861007|861008|869140|869141|869142|869143|869144|869145|869146|869147|869148|872177|917098|920555|920556|920557|920558|920559|920560|920561|920562|920563|920564|920565|920566|920567|920568|920569|920570|920571|920572|920573|920574|920575|920576|920577|920578|920579|920580|920581|920582|920583|926446|926447|926448|926449|926450|935899|935900|940239|947770|956735|956736|956737|956738|972616|975726|975727|975728|975729|975730|975731|975732|975733|975734|975735|975736|975737|975738|975739|975740|975741|975742|975743|975744|975745|975746|975747|975748|975749|975750|975751|975752|975753|975754|975852|975879|975880|975881|975882|975883|975884|975885|975886|975896|979255|979256|979257|979258|979259|979260|979261|979262|979263|979264|979265|979266|979267", "text": "Phenylketonuria" }, { - "baseId": "15622|15625|15632|15656|15657|15663|15664|15667|15669|15670|15671|15672|15677|15678|98641|98657|98658|108462|108488", + "upstreamId": "15622|15625|15632|15656|15657|15663|15664|15667|15669|15670|15671|15672|15677|15678|98641|98657|98658|108462|108488", "text": "Hyperphenylalaninemia, non-pku" }, { - "baseId": "15655|15666", + "upstreamId": "15655|15666", "text": "Mild non-PKU hyperphenylalanemia" }, { - "baseId": "15667|237522|406083|406687|424694|428391|514326|540506|550579|550587|550621|550636|550742|626435|677338|677339|677340|677341|677342|677343|677344|677345|677346|677347|677348|677349|677350|677351|677352|677353|677354|677355|677356|677357|677358|677359|677360|677361|677362|677363|677364|677365|677366|677367|677368|677369|677370|677371|677372|677373|677374|677375|677376|677377|677378|677379|677380|677381|677382|677383|677384|677385|677386|677387|677388|677389|677390|677391|677392|677393|677394|677395|677396|677397|677398|677399|677956", + "upstreamId": "15667|237522|406083|406687|424694|428391|514326|540506|550579|550587|550621|550636|550742|626435|677338|677339|677340|677341|677342|677343|677344|677345|677346|677347|677348|677349|677350|677351|677352|677353|677354|677355|677356|677357|677358|677359|677360|677361|677362|677363|677364|677365|677366|677367|677368|677369|677370|677371|677372|677373|677374|677375|677376|677377|677378|677379|677380|677381|677382|677383|677384|677385|677386|677387|677388|677389|677390|677391|677392|677393|677394|677395|677396|677397|677398|677399|677956", "text": "Marfanoid habitus and intellectual disability" }, { - "baseId": "15671", + "upstreamId": "15671", "text": "Hyperphenylalaninaemia" }, { - "baseId": "15679|613488", + "upstreamId": "15679|613488", "text": "Endocrine-cerebroosteodysplasia" }, { - "baseId": "15680|361580|788673|788674|788675|858628|858629", + "upstreamId": "15680|361580|788673|788674|788675|858628|858629", "text": "Combined oxidative phosphorylation deficiency 44" }, { - "baseId": "15681|28349|29054|33100", + "upstreamId": "15681|28349|29054|33100", "text": "Ischemic stroke, susceptibility to" }, { - "baseId": "15681", + "upstreamId": "15681", "text": "Budd-Chiari syndrome, susceptibility to" }, { - "baseId": "15681|558220|610573", + "upstreamId": "15681|558220|610573", "text": "Recurrent abortion" }, { - "baseId": "15681|15681|15685|15686|15687|15688|15689|15690|15691|15692|15693|38307|227743|249498|249500|249502|249503|249504|249505|249506|249507|249508|249510|249511|249512|249513|249514|249515|249516|249517|249518|249520|249521|249522|249523|249524|249525|249526|277166|277168|277179|277180|277191|277192|277194|277195|277214|277219|277220|277221|277222|277225|277248|277249|277250|277252|277253|277254|277257|277260|277261|277262|277263|277270|277272|277273|277294|277416|277422|277423|277427|277428|277435|277443|277444|277452|277454|277458|277459|277466|277467|277468|277471|277472|277474|277480|277482|277486|277489|277492|277494|277498|277504|277505|278219|278222|278240|278256|278260|278261|278262|278263|278264|278267|278268|278269|278270|278271|278278|278280|278281|278288|278289|278291|278295|278297|278298|278305|278307|278309|278310|278312|278316|278317|278318|278325|278328|278329|278330|278332|278334|278336|278338|278340|278341|278342|278343|278350|278351|278352|278360|278364|278373|278374|278383|557032|558220|558220|615275|615276|615278|615279|615280|615281|615282|615283|615284|615285|615286|615287|615288|615289|615290|615291|615718|619964|627058|654174|706851|706852|706853|718361|718365|718366|718368|718369|718370|718372|718374|731854|731855|731856|743730|745824|745828|745830|745832|777016|778749|788955|862698|862699|862700|862701|862702|862703|862704|862705|862706|862707|862708|862709|862710|862711|862712|862713|862714|862715|862716|862717|862718|862719|862720|862721|862722|862723|862724|862725|862726|862727|862728|862729|862730|862731|862732|862733|862734|862735|862736|862737|862738|862739|862740|862741|862742|862743|862744|862745|862746|862747|862748|862749|862750|862751|862752|862753|865026|865027|865028|966342", + "upstreamId": "15681|15681|15685|15686|15687|15688|15689|15690|15691|15692|15693|38307|227743|249498|249500|249502|249503|249504|249505|249506|249507|249508|249510|249511|249512|249513|249514|249515|249516|249517|249518|249520|249521|249522|249523|249524|249525|249526|277166|277168|277179|277180|277191|277192|277194|277195|277214|277219|277220|277221|277222|277225|277248|277249|277250|277252|277253|277254|277257|277260|277261|277262|277263|277270|277272|277273|277294|277416|277422|277423|277427|277428|277435|277443|277444|277452|277454|277458|277459|277466|277467|277468|277471|277472|277474|277480|277482|277486|277489|277492|277494|277498|277504|277505|278219|278222|278240|278256|278260|278261|278262|278263|278264|278267|278268|278269|278270|278271|278278|278280|278281|278288|278289|278291|278295|278297|278298|278305|278307|278309|278310|278312|278316|278317|278318|278325|278328|278329|278330|278332|278334|278336|278338|278340|278341|278342|278343|278350|278351|278352|278360|278364|278373|278374|278383|557032|558220|558220|615275|615276|615278|615279|615280|615281|615282|615283|615284|615285|615286|615287|615288|615289|615290|615291|615718|619964|627058|654174|706851|706852|706853|718361|718365|718366|718368|718369|718370|718372|718374|731854|731855|731856|743730|745824|745828|745830|745832|777016|778749|788955|862698|862699|862700|862701|862702|862703|862704|862705|862706|862707|862708|862709|862710|862711|862712|862713|862714|862715|862716|862717|862718|862719|862720|862721|862722|862723|862724|862725|862726|862727|862728|862729|862730|862731|862732|862733|862734|862735|862736|862737|862738|862739|862740|862741|862742|862743|862744|862745|862746|862747|862748|862749|862750|862751|862752|862753|865026|865027|865028|966342", "text": "Factor V deficiency" }, { - "baseId": "15681|15681|15683|15684|15694|38307|249497|249498|249500|249501|249503|249504|249505|249506|249507|249508|249509|249510|249511|249512|249513|249514|249515|249516|249517|249518|249519|249520|249521|249522|249523|249524|249525|249526|277166|277168|277179|277180|277191|277192|277194|277195|277214|277219|277220|277221|277222|277225|277248|277249|277250|277252|277253|277254|277257|277260|277262|277263|277270|277272|277273|277294|277416|277422|277423|277427|277428|277435|277443|277444|277452|277454|277458|277459|277466|277467|277468|277471|277472|277474|277480|277482|277486|277489|277492|277494|277498|277504|277505|278219|278222|278240|278256|278260|278261|278262|278263|278264|278267|278268|278269|278270|278271|278278|278280|278281|278288|278289|278291|278295|278297|278298|278305|278307|278309|278310|278312|278316|278317|278318|278325|278328|278329|278330|278332|278334|278336|278338|278340|278341|278342|278343|278350|278351|278352|278360|278364|278373|278374|278383|558220|615287|619964|706851|718365|862698|862699|862701|862702|862703|862704|862705|862706|862707|862708|862709|862710|862711|862712|862713|862714|862715|862717|862718|862719|862721|862722|862724|862726|862728|862732|862736|862737|862738|862739|862740|862743|862744|862746|862750|862751|862752|862753|865026|865027", + "upstreamId": "15681|15681|15683|15684|15694|38307|249497|249498|249500|249501|249503|249504|249505|249506|249507|249508|249509|249510|249511|249512|249513|249514|249515|249516|249517|249518|249519|249520|249521|249522|249523|249524|249525|249526|277166|277168|277179|277180|277191|277192|277194|277195|277214|277219|277220|277221|277222|277225|277248|277249|277250|277252|277253|277254|277257|277260|277262|277263|277270|277272|277273|277294|277416|277422|277423|277427|277428|277435|277443|277444|277452|277454|277458|277459|277466|277467|277468|277471|277472|277474|277480|277482|277486|277489|277492|277494|277498|277504|277505|278219|278222|278240|278256|278260|278261|278262|278263|278264|278267|278268|278269|278270|278271|278278|278280|278281|278288|278289|278291|278295|278297|278298|278305|278307|278309|278310|278312|278316|278317|278318|278325|278328|278329|278330|278332|278334|278336|278338|278340|278341|278342|278343|278350|278351|278352|278360|278364|278373|278374|278383|558220|615287|619964|706851|718365|862698|862699|862701|862702|862703|862704|862705|862706|862707|862708|862709|862710|862711|862712|862713|862714|862715|862717|862718|862719|862721|862722|862724|862726|862728|862732|862736|862737|862738|862739|862740|862743|862744|862746|862750|862751|862752|862753|865026|865027", "text": "Thrombophilia due to factor V Leiden" }, { - "baseId": "15682", + "upstreamId": "15682", "text": "Factor V Hong Kong" }, { - "baseId": "15695|15696|15698|15700|15701|15705|15707|15708|15709|15710|15711|15712|15713|15714|15716|15717|15718|15719|171062|171063|171064|171065|171066|171067|171068|171069|171070|171071|185963|221115|227218|227219|238360|238361|238362|238363|250153|250154|250155|281801|281808|281809|281820|282432|282437|282438|282458|282459|282462|282463|284085|284086|284285|284286|284301|284303|284305|391596|448562|448682|448774|448775|448776|513020|516326|516330|516337|516340|516346|516373|516413|516415|557504|557549|557551|557553|558711|558713|612185|612186|628433|628434|650813|683389|685113|685838|690738|794766|824737|824738|824739|824740|824741|881027|881028|881029|881030|881031|881032|881033|881034|881035|881036|881037|881038|881039|882795|922234|922235|930794|930795|942227|952630|961020|977178", + "upstreamId": "15695|15696|15698|15700|15701|15705|15707|15708|15709|15710|15711|15712|15713|15714|15716|15717|15718|15719|171062|171063|171064|171065|171066|171067|171068|171069|171070|171071|185963|221115|227218|227219|238360|238361|238362|238363|250153|250154|250155|281801|281808|281809|281820|282432|282437|282438|282458|282459|282462|282463|284085|284086|284285|284286|284301|284303|284305|391596|448562|448682|448774|448775|448776|513020|516326|516330|516337|516340|516346|516373|516413|516415|557504|557549|557551|557553|558711|558713|612185|612186|628433|628434|650813|683389|685113|685838|690738|794766|824737|824738|824739|824740|824741|881027|881028|881029|881030|881031|881032|881033|881034|881035|881036|881037|881038|881039|882795|922234|922235|930794|930795|942227|952630|961020|977178", "text": "Thrombophilia, hereditary, due to protein C deficiency, autosomal dominant" }, { - "baseId": "15697|15698|15699|15700|15701|15702|15703|15704|15705|15706|15714|15715|171068|615323|789084|798960", + "upstreamId": "15697|15698|15699|15700|15701|15702|15703|15704|15705|15706|15714|15715|171068|615323|789084|798960", "text": "Thrombophilia, hereditary, due to protein C deficiency, autosomal recessive" }, { - "baseId": "15698|15708|15714|171067|171070|238363|615310|615312|615313|615314|615315|615319|615320|615321|615322|615323|615324|615325|615326|615327|615720", + "upstreamId": "15698|15708|15714|171067|171070|238363|615310|615312|615313|615314|615315|615319|615320|615321|615322|615323|615324|615325|615326|615327|615720", "text": "Reduced protein C activity" }, { - "baseId": "15704|615294|615361|615615|801511", + "upstreamId": "15704|615294|615361|615615|801511", "text": "Abnormal thrombosis" }, { - "baseId": "15710|33051|171063|448774|615273|615277|615287|615288|615311|615371|615390|615392|615719|615723", + "upstreamId": "15710|33051|171063|448774|615273|615277|615287|615288|615311|615371|615390|615392|615719|615723", "text": "Thromboembolism" }, { - "baseId": "15714|33051|33073|171063|212340|448774|515340|558713|615287|615307|615311|615311|615316|615317|615318|615375|615376|615420|615421|615653|615865", + "upstreamId": "15714|33051|33073|171063|212340|448774|515340|558713|615287|615307|615311|615311|615316|615317|615318|615375|615376|615420|615421|615653|615865", "text": "Deep venous thrombosis" }, { - "baseId": "15720|15721|15722|15723|15724|15725|15726|15727|15728|15729|15730|15731|106585|106586|190216|190217|190218|195207|237099|271825|280105|280107|280111|280112|280117|280119|280123|280125|280126|280444|280446|280448|280450|280454|280456|281770|281921|281923|353101|448013|481387|481388|513388|549519|556916|557255|558431|578381|621079|650558|690559|696614|777118|780632|789108|823755|823756|858730|861140|864147|864148|864149|864150|864151|864152|864153|864154|864155|864156|865163|865164|941861|961825|967102|967103|967104|967105|969145|972778|972807|976707", + "upstreamId": "15720|15721|15722|15723|15724|15725|15726|15727|15728|15729|15730|15731|106585|106586|190216|190217|190218|195207|237099|271825|280105|280107|280111|280112|280117|280119|280123|280125|280126|280444|280446|280448|280450|280454|280456|281770|281921|281923|353101|448013|481387|481388|513388|549519|556916|557255|558431|578381|621079|650558|690559|696614|777118|780632|789108|823755|823756|858730|861140|864147|864148|864149|864150|864151|864152|864153|864154|864155|864156|865163|865164|941861|961825|967102|967103|967104|967105|969145|972778|972807|976707", "text": "Fucosidosis" }, { - "baseId": "15730", + "upstreamId": "15730", "text": "FU1/FU2 POLYMORPHISM" }, { - "baseId": "15732|15733|15734|15735|15736|39901|39902|227332|307313|307314|307315|307319|307322|307323|307324|307327|307328|307329|307330|307338|307339|307341|307342|307344|307348|307349|307357|307364|311619|311625|311626|311627|311630|311643|311645|311650|311652|311655|311656|311657|311660|317115|317120|317125|317126|317127|317128|317129|317131|317138|317152|317154|317156|317158|317556|317557|317559|317561|317564|317567|317572|317575|317581|317583|317584|419138|508835|508836|514842|612849|613383|901380|901381|901382|901383|901384|901385|901386|901387|901388|901389|901390|901391|901392|901393|901394|901395|901396|901397|901398|901399|901400|901401|901402|901403|901404|901405|901406|901407|901408|901409|901410|901411|901412|901413|901414|901415|901416|901417|901418|901419|901420|901421|901422|901423|901424|901425|901426|901427|901428|901429|901430|901431|901432|901433|901434|901435|901436|901437|901438|903340|903341|903342|903343|903344|903345|903346|903347|903558|919196|919197|919198", + "upstreamId": "15732|15733|15734|15735|15736|39901|39902|227332|307313|307314|307315|307319|307322|307323|307324|307327|307328|307329|307330|307338|307339|307341|307342|307344|307348|307349|307357|307364|311619|311625|311626|311627|311630|311643|311645|311650|311652|311655|311656|311657|311660|317115|317120|317125|317126|317127|317128|317129|317131|317138|317152|317154|317156|317158|317556|317557|317559|317561|317564|317567|317572|317575|317581|317583|317584|419138|508835|508836|514842|612849|613383|901380|901381|901382|901383|901384|901385|901386|901387|901388|901389|901390|901391|901392|901393|901394|901395|901396|901397|901398|901399|901400|901401|901402|901403|901404|901405|901406|901407|901408|901409|901410|901411|901412|901413|901414|901415|901416|901417|901418|901419|901420|901421|901422|901423|901424|901425|901426|901427|901428|901429|901430|901431|901432|901433|901434|901435|901436|901437|901438|903340|903341|903342|903343|903344|903345|903346|903347|903558|919196|919197|919198", "text": "Geleophysic dysplasia 1" }, { - "baseId": "15737|15738|15739|15740|15741|15742|15743|15744|15745|15746|15747|15748|15749|15750|15751|15752|15753|33442|99072|99074|99075|99079|99086|99087|99089|99090|99093|99094|190091|190760|191341|194310|195248|195588|198638|226602|255948|255953|255955|255957|260136|260138|265255|268429|272490|326786|326798|326799|326806|326808|336634|336637|336643|336644|336661|336662|336664|336669|336671|336672|342873|342880|342882|342886|342892|342894|342895|342901|342903|342905|342907|342911|342912|342913|342915|344525|344528|344530|344532|344533|344537|344538|344542|344544|344549|344550|344556|344559|353371|377894|466842|512231|512232|513364|513638|529245|529284|530382|530388|530498|530499|530696|530921|549737|570601|570603|570605|570616|574200|574202|611356|612195|612315|621552|621553|622436|645116|645117|645118|645119|645121|645122|645123|652775|653170|703896|726918|740495|740496|740499|755531|755533|788903|789382|791649|791650|791651|820910|820911|820912|844476|844477|844478|844479|844480|844481|851689|852677|852679|858650|861185|861186|861187|861188|861189|861191|861281|876147|876148|876149|876150|876151|876152|876153|876154|876155|876156|876157|876158|876159|876160|876161|876162|876163|876164|876165|876166|876167|876168|876169|876170|876171|876172|876173|876174|876175|876176|876177|876178|876735|904966|928002|937656|937657|940377|941152|961878|970240", + "upstreamId": "15737|15738|15739|15740|15741|15742|15743|15744|15745|15746|15747|15748|15749|15750|15751|15752|15753|33442|99072|99074|99075|99079|99086|99087|99089|99090|99093|99094|190091|190760|191341|194310|195248|195588|198638|226602|255948|255953|255955|255957|260136|260138|265255|268429|272490|326786|326798|326799|326806|326808|336634|336637|336643|336644|336661|336662|336664|336669|336671|336672|342873|342880|342882|342886|342892|342894|342895|342901|342903|342905|342907|342911|342912|342913|342915|344525|344528|344530|344532|344533|344537|344538|344542|344544|344549|344550|344556|344559|353371|377894|466842|512231|512232|513364|513638|529245|529284|530382|530388|530498|530499|530696|530921|549737|570601|570603|570605|570616|574200|574202|611356|612195|612315|621552|621553|622436|645116|645117|645118|645119|645121|645122|645123|652775|653170|703896|726918|740495|740496|740499|755531|755533|788903|789382|791649|791650|791651|820910|820911|820912|844476|844477|844478|844479|844480|844481|851689|852677|852679|858650|861185|861186|861187|861188|861189|861191|861281|876147|876148|876149|876150|876151|876152|876153|876154|876155|876156|876157|876158|876159|876160|876161|876162|876163|876164|876165|876166|876167|876168|876169|876170|876171|876172|876173|876174|876175|876176|876177|876178|876735|904966|928002|937656|937657|940377|941152|961878|970240", "text": "Mucopolysaccharidosis, MPS-IV-A" }, { - "baseId": "15739|15742|15747|15750|15752|99069|195587|196191|255948|265255|290017|290775|293951|294412|326781|326785|326786|336625|336637|336644|336662|342867|342872|342873|342882|342884|342892|342895|342907|342908|344521|344525|344528|344533|344537|344556|353363|512233|574202|621553|621849|645119|917223", + "upstreamId": "15739|15742|15747|15750|15752|99069|195587|196191|255948|265255|290017|290775|293951|294412|326781|326785|326786|336625|336637|336644|336662|342867|342872|342873|342882|342884|342892|342895|342907|342908|344521|344525|344528|344533|344537|344556|353363|512233|574202|621553|621849|645119|917223", "text": "Morquio syndrome" }, { - "baseId": "15754|15755|15756|15757|15758|15759|15760|136214|136215|136216|136217|136218|136219|136220|136221|299745|299746|299750|302338|302339|306735|306739|306746|306747|307035|307041|307058|513062|895738|895739|895740|895741|895742|895743|895744", + "upstreamId": "15754|15755|15756|15757|15758|15759|15760|136214|136215|136216|136217|136218|136219|136220|136221|299745|299746|299750|302338|302339|306735|306739|306746|306747|307035|307041|307058|513062|895738|895739|895740|895741|895742|895743|895744", "text": "Transient neonatal diabetes mellitus 1" }, { - "baseId": "15761|15762|15763|15764|15765", + "upstreamId": "15761|15762|15763|15764|15765", "text": "Slow acetylator due to N-acetyltransferase enzyme variant" }, { - "baseId": "15761", + "upstreamId": "15761", "text": "ethambutol, isoniazid, pyrazinamide, and rifampin response - Toxicity/ADR, Metabolism/PK" }, { - "baseId": "15766|15767", + "upstreamId": "15766|15767", "text": "Skin/hair/eye pigmentation, variation in, 10" }, { - "baseId": "15768|141594|211105|295307|295317|295319|295320|295333|295343|295344|297113|297114|297121|300824|300825|300826|300829|300846|300854|300859|300861|300884|300953|300955|300958|300964|300965|300966|655637|892885|892886|892887|892888|892889|892890|892891|892892|892893|892894|892895|892896|892897|892898|892899|892900|892901|892902|892903", + "upstreamId": "15768|141594|211105|295307|295317|295319|295320|295333|295343|295344|297113|297114|297121|300824|300825|300826|300829|300846|300854|300859|300861|300884|300953|300955|300958|300964|300965|300966|655637|892885|892886|892887|892888|892889|892890|892891|892892|892893|892894|892895|892896|892897|892898|892899|892900|892901|892902|892903", "text": "Mitochondrial complex III deficiency, nuclear type 4" }, { - "baseId": "15769|15770|39899|39900|132428|132435|132447|190335|190336|190337|190338|190339|190342|190343|192274|192275|192279|192280|192286|192287|237472|265442|265908|266137|266288|267181|267182|267817|269224|269279|269680|269681|269682|270787|272749|272750|275478|292156|292158|292165|292167|292173|292178|293592|293599|293600|293608|293609|293614|293615|296899|296900|296901|296905|296906|296907|296911|296912|296914|296920|296922|296923|296926|296933|296935|296943|326618|326633|326640|326644|326646|326647|326648|326651|326652|326653|326660|326662|326663|326664|326672|326674|326675|326676|326680|326681|326685|326686|326689|326691|326692|326699|326702|326705|326706|326710|326711|326712|326713|326721|326723|326724|326726|326727|326728|326731|326733|326734|326735|326739|326741|326742|326744|326745|326746|326750|326752|326753|326754|326758|336430|336431|336438|336440|336441|336442|336444|336447|336449|336452|336454|336455|336456|336458|336461|336463|336465|336468|336470|336471|336473|336476|336479|336481|336483|336486|336497|336502|336503|336507|336508|336509|336515|336516|336520|336521|336522|336526|336527|336529|336532|336533|336534|336539|336541|336545|336547|336548|336549|336551|342666|342667|342671|342674|342675|342678|342682|342684|342691|342697|342708|342709|342712|342714|342716|342717|342719|342726|342730|342740|342744|342745|342748|342751|342755|342761|342766|342771|342772|342773|342774|342784|342785|342787|342792|342795|342796|342798|342800|342801|342802|342806|342807|342808|342817|342818|342826|342827|342830|342833|342834|342835|342839|342844|344274|344276|344279|344281|344284|344287|344288|344289|344296|344300|344301|344309|344310|344316|344320|344321|344332|344333|344337|344338|344340|344345|344347|344349|344350|344352|344353|344356|344361|344362|344367|344372|344376|344377|344386|344389|344390|344392|344393|344397|344398|344400|344401|344407|344408|344417|344421|344422|344425|344428|344430|344431|344433|344437|344441|344442|344444|344446|344454|344458|344460|344465|344469|344471|360310|374694|375580|409764|409765|409770|415516|422116|422120|426187|426188|445637|514067|514068|536168|614431|672124|672125|969119|969120|969121|969122|969123", + "upstreamId": "15769|15770|39899|39900|132428|132435|132447|190335|190336|190337|190338|190339|190342|190343|192274|192275|192279|192280|192286|192287|237472|265442|265908|266137|266288|267181|267182|267817|269224|269279|269680|269681|269682|270787|272749|272750|275478|292156|292158|292165|292167|292173|292178|293592|293599|293600|293608|293609|293614|293615|296899|296900|296901|296905|296906|296907|296911|296912|296914|296920|296922|296923|296926|296933|296935|296943|326618|326633|326640|326644|326646|326647|326648|326651|326652|326653|326660|326662|326663|326664|326672|326674|326675|326676|326680|326681|326685|326686|326689|326691|326692|326699|326702|326705|326706|326710|326711|326712|326713|326721|326723|326724|326726|326727|326728|326731|326733|326734|326735|326739|326741|326742|326744|326745|326746|326750|326752|326753|326754|326758|336430|336431|336438|336440|336441|336442|336444|336447|336449|336452|336454|336455|336456|336458|336461|336463|336465|336468|336470|336471|336473|336476|336479|336481|336483|336486|336497|336502|336503|336507|336508|336509|336515|336516|336520|336521|336522|336526|336527|336529|336532|336533|336534|336539|336541|336545|336547|336548|336549|336551|342666|342667|342671|342674|342675|342678|342682|342684|342691|342697|342708|342709|342712|342714|342716|342717|342719|342726|342730|342740|342744|342745|342748|342751|342755|342761|342766|342771|342772|342773|342774|342784|342785|342787|342792|342795|342796|342798|342800|342801|342802|342806|342807|342808|342817|342818|342826|342827|342830|342833|342834|342835|342839|342844|344274|344276|344279|344281|344284|344287|344288|344289|344296|344300|344301|344309|344310|344316|344320|344321|344332|344333|344337|344338|344340|344345|344347|344349|344350|344352|344353|344356|344361|344362|344367|344372|344376|344377|344386|344389|344390|344392|344393|344397|344398|344400|344401|344407|344408|344417|344421|344422|344425|344428|344430|344431|344433|344437|344441|344442|344444|344446|344454|344458|344460|344465|344469|344471|360310|374694|375580|409764|409765|409770|415516|422116|422120|426187|426188|445637|514067|514068|536168|614431|672124|672125|969119|969120|969121|969122|969123", "text": "Brittle cornea syndrome 1" }, { - "baseId": "15771|790691|790692", + "upstreamId": "15771|790691|790692", "text": "Alopecia, neurologic defects, and endocrinopathy syndrome" }, { - "baseId": "15772|16674", + "upstreamId": "15772|16674", "text": "Spinocerebellar ataxia type 31" }, { - "baseId": "15773|45531|45533|45534|49357|55303|55304|55305|55306|55308|55311|55312|55315|55317|55318|55319|55320|55321|55322|94537|173751|173752|173754|173755|173757|173893|173894|173895|173896|178508|178510|178511|189774|189775|189776|189778|198140|198141|198142|198143|198145|198146|198151|198152|198153|198154|198156|198157|198160|224261|229022|229024|236758|239109|239110|239111|239112|258285|258288|258292|260346|289698|289701|292649|292652|292883|292884|367249|368225|393310|393329|393331|393338|393343|393397|393568|393769|393774|393781|421422|440759|451872|451882|451882|452099|452110|452227|452229|452232|452233|452337|452339|500567|500568|509563|509565|509569|509571|518906|518910|518911|518932|518934|519092|519101|519105|519106|519116|519122|519127|558824|559353|559355|561221|562484|616817|616821|616823|616824|621149|630966|630967|630968|630969|630970|630971|630972|630973|630974|630975|630976|630977|630978|630979|630980|651061|683541|686337|686338|686339|686341|686342|689732|691316|748045|759233|763657|795337|795339|819330|827573|827574|827575|827576|827577|827578|827579|827580|827581|827582|827583|827584|827585|827586|827587|827588|827589|851536|851538|909115|909129|909142|909157|909160|909170|909171|915624|915629|923062|923063|923064|931781|931782|931783|931784|931785|931786|943344|943345|943346|943347|953346|959682", + "upstreamId": "15773|45531|45533|45534|49357|55303|55304|55305|55306|55308|55311|55312|55315|55317|55318|55319|55320|55321|55322|94537|173751|173752|173754|173755|173757|173893|173894|173895|173896|178508|178510|178511|189774|189775|189776|189778|198140|198141|198142|198143|198145|198146|198151|198152|198153|198154|198156|198157|198160|224261|229022|229024|236758|239109|239110|239111|239112|258285|258288|258292|260346|289698|289701|292649|292652|292883|292884|367249|368225|393310|393329|393331|393338|393343|393397|393568|393769|393774|393781|421422|440759|451872|451882|451882|452099|452110|452227|452229|452232|452233|452337|452339|500567|500568|509563|509565|509569|509571|518906|518910|518911|518932|518934|519092|519101|519105|519106|519116|519122|519127|558824|559353|559355|561221|562484|616817|616821|616823|616824|621149|630966|630967|630968|630969|630970|630971|630972|630973|630974|630975|630976|630977|630978|630979|630980|651061|683541|686337|686338|686339|686341|686342|689732|691316|748045|759233|763657|795337|795339|819330|827573|827574|827575|827576|827577|827578|827579|827580|827581|827582|827583|827584|827585|827586|827587|827588|827589|851536|851538|909115|909129|909142|909157|909160|909170|909171|915624|915629|923062|923063|923064|931781|931782|931783|931784|931785|931786|943344|943345|943346|943347|953346|959682", "text": "Arrhythmogenic right ventricular cardiomyopathy, type 5" }, { - "baseId": "15773|21793|21794|21795|21796|28516|31849|31851|31853|31855|31856|31857|31885|39864|44669|44670|44673|44674|44679|44684|44690|45089|45135|45341|45342|45343|45407|45408|45533|45534|49162|52209|52928|52955|52966|52997|53001|53010|53177|53426|53445|53450|53453|53462|53474|53474|53477|53483|53486|53488|53499|53837|54017|54019|54023|54032|54034|54039|54041|54042|54043|54045|54048|54055|54059|54063|54067|54073|54075|54077|54081|54084|54084|54089|54091|54093|54095|54096|54110|54113|54130|54135|54170|54173|54174|54177|54178|54182|54183|54184|54186|54187|54189|54194|54195|54200|54202|54203|54205|54208|54212|54213|54214|54216|54218|54221|54222|54226|54230|54232|54235|54237|54238|54242|54244|54248|54251|54252|54258|54564|54579|54698|55301|55318|55325|55333|55335|55336|55351|55354|55364|55368|55369|55783|55809|56048|56076|56137|56641|57240|78369|78578|78870|94537|99324|106529|136129|140875|140876|165533|165536|165537|165596|171102|171103|171150|171151|171192|171194|172173|172182|172556|172571|173231|173463|173844|173844|173851|173854|173859|173874|173932|173991|173995|173997|174135|174142|174383|175380|175616|175720|175729|175861|176513|176526|176531|176665|176672|176677|176765|178037|178203|178460|178542|178559|178566|178656|178719|178725|178726|178729|178748|186418|186427|186574|187973|188805|189302|189707|189892|189913|189921|189962|193317|196652|197022|197064|197069|197078|197104|197976|198005|198417|198430|198446|198455|206919|215346|215347|215348|215349|215552|215553|224209|224219|224242|224267|224272|224291|224317|224326|224332|224333|224378|224439|224442|224447|224475|224509|224517|224518|224520|224531|224532|224534|224535|224536|224539|224592|228409|229489|229493|230315|230322|230829|230864|243041|245264|247080|247149|247150|258459|260528|270495|279955|279963|279976|280014|280020|280023|280026|280032|280280|280324|280326|280327|280333|280340|280346|280347|280355|280373|280381|280387|280394|280402|281593|281646|281676|281680|281697|281699|281700|281747|281773|281833|281849|281863|281874|288948|288951|288952|288959|288962|288963|288964|288985|288989|289698|289707|289711|289712|289713|289736|289741|292653|292656|292661|292662|292663|292665|292687|292696|292885|292887|292907|292911|292927|292944|292969|292973|292979|292990|301040|301063|301069|301070|304010|304029|304032|304033|304034|304045|308731|308774|308785|308786|308822|308823|308824|316927|316931|316932|316937|316948|316952|316955|321444|324531|324533|324538|324565|330684|330720|330722|330726|330738|330739|330766|330779|331081|331084|331159|331163|331173|331210|332123|332170|337306|338354|338366|338372|339331|339342|339348|339360|341326|341330|341334|341355|341419|341423|341449|341457|341469|341476|341481|341494|341496|346854|346861|346866|346879|346880|346920|346921|346938|346947|346950|346952|346965|348108|348111|348112|348128|348132|348143|348190|348208|348211|348227|348229|348231|348235|353244|353630|353797|359754|361032|362734|368743|391029|404238|444012|447628|447786|449670|455835|456069|459690|466980|468905|481772|487607|488131|488132|488140|488141|488142|496476|496578|496579|496871|497007|497224|497418|497639|511049|511050|511052|511071|511097|511119|514347|514358|514359|551702|609471|610143|610250|635251|635264|639064|654461|654463|654718|655244|672445|672447|679408|679445|679455|679460|679461|679471|679543|679551|679864|679867", + "upstreamId": "15773|21793|21794|21795|21796|28516|31849|31851|31853|31855|31856|31857|31885|39864|44669|44670|44673|44674|44679|44684|44690|45089|45135|45341|45342|45343|45407|45408|45533|45534|49162|52209|52928|52955|52966|52997|53001|53010|53177|53426|53445|53450|53453|53462|53474|53474|53477|53483|53486|53488|53499|53837|54017|54019|54023|54032|54034|54039|54041|54042|54043|54045|54048|54055|54059|54063|54067|54073|54075|54077|54081|54084|54084|54089|54091|54093|54095|54096|54110|54113|54130|54135|54170|54173|54174|54177|54178|54182|54183|54184|54186|54187|54189|54194|54195|54200|54202|54203|54205|54208|54212|54213|54214|54216|54218|54221|54222|54226|54230|54232|54235|54237|54238|54242|54244|54248|54251|54252|54258|54564|54579|54698|55301|55318|55325|55333|55335|55336|55351|55354|55364|55368|55369|55783|55809|56048|56076|56137|56641|57240|78369|78578|78870|94537|99324|106529|136129|140875|140876|165533|165536|165537|165596|171102|171103|171150|171151|171192|171194|172173|172182|172556|172571|173231|173463|173844|173844|173851|173854|173859|173874|173932|173991|173995|173997|174135|174142|174383|175380|175616|175720|175729|175861|176513|176526|176531|176665|176672|176677|176765|178037|178203|178460|178542|178559|178566|178656|178719|178725|178726|178729|178748|186418|186427|186574|187973|188805|189302|189707|189892|189913|189921|189962|193317|196652|197022|197064|197069|197078|197104|197976|198005|198417|198430|198446|198455|206919|215346|215347|215348|215349|215552|215553|224209|224219|224242|224267|224272|224291|224317|224326|224332|224333|224378|224439|224442|224447|224475|224509|224517|224518|224520|224531|224532|224534|224535|224536|224539|224592|228409|229489|229493|230315|230322|230829|230864|243041|245264|247080|247149|247150|258459|260528|270495|279955|279963|279976|280014|280020|280023|280026|280032|280280|280324|280326|280327|280333|280340|280346|280347|280355|280373|280381|280387|280394|280402|281593|281646|281676|281680|281697|281699|281700|281747|281773|281833|281849|281863|281874|288948|288951|288952|288959|288962|288963|288964|288985|288989|289698|289707|289711|289712|289713|289736|289741|292653|292656|292661|292662|292663|292665|292687|292696|292885|292887|292907|292911|292927|292944|292969|292973|292979|292990|301040|301063|301069|301070|304010|304029|304032|304033|304034|304045|308731|308774|308785|308786|308822|308823|308824|316927|316931|316932|316937|316948|316952|316955|321444|324531|324533|324538|324565|330684|330720|330722|330726|330738|330739|330766|330779|331081|331084|331159|331163|331173|331210|332123|332170|337306|338354|338366|338372|339331|339342|339348|339360|341326|341330|341334|341355|341419|341423|341449|341457|341469|341476|341481|341494|341496|346854|346861|346866|346879|346880|346920|346921|346938|346947|346950|346952|346965|348108|348111|348112|348128|348132|348143|348190|348208|348211|348227|348229|348231|348235|353244|353630|353797|359754|361032|362734|368743|391029|404238|444012|447628|447786|449670|455835|456069|459690|466980|468905|481772|487607|488131|488132|488140|488141|488142|496476|496578|496579|496871|497007|497224|497418|497639|511049|511050|511052|511071|511097|511119|514347|514358|514359|551702|609471|610143|610250|635251|635264|639064|654461|654463|654718|655244|672445|672447|679408|679445|679455|679460|679461|679471|679543|679551|679864|679867", "text": "Arrhythmogenic right ventricular cardiomyopathy" }, { - "baseId": "15773|24413|44669|48063|54073|54183|54200|54216|54230|54235|78880|171193|178554|178726|196985|198417|198419|198450|204196|390709|390710|408639|487491|487607|905934", + "upstreamId": "15773|24413|44669|48063|54073|54183|54200|54216|54230|54235|78880|171193|178554|178726|196985|198417|198419|198450|204196|390709|390710|408639|487491|487607|905934", "text": "Familial isolated arrhythmogenic right ventricular dysplasia" }, { - "baseId": "15773|15827|21885|21888|21891|21893|21894|23641|23642|23643|23647|23655|23656|23658|23660|23815|23817|23819|25021|25769|25777|25807|27237|27447|27448|27450|27453|27458|27460|27461|27463|27463|27465|27465|27468|27482|27495|27496|28370|28676|29100|29101|29102|29103|29104|29106|29126|29127|29128|29129|29130|29131|29133|29134|29136|29137|29138|29141|29143|29144|29146|29147|29148|29150|29151|29152|29153|29154|29157|29158|29159|29159|29160|29161|29162|29163|29164|29165|29166|29188|33288|33370|39098|39099|39415|39466|39864|40437|40438|40440|40441|40442|40443|40446|40448|40451|40498|40499|40500|40515|40525|40535|40536|40537|40538|40542|40543|40544|40545|40548|40549|40553|40555|40558|44314|44944|45263|45264|45265|45266|45267|45269|45271|45272|45273|45275|45276|45277|45290|45298|45299|45300|45301|45303|45304|45310|45359|45542|45545|45548|45599|45725|45929|48983|49167|49302|51095|51262|51263|51619|51625|51668|51669|51670|51673|51675|51676|51677|51678|51680|51681|51682|51683|51684|51685|51686|51687|51688|51689|51690|51691|51692|51693|51694|51695|51697|51698|51699|51701|51702|51703|51705|51706|51707|51708|51709|51710|51711|51713|51715|51716|51717|51719|51720|51720|51721|51726|51728|51729|51730|51732|51733|51734|51735|51736|51737|51738|51740|51741|51742|51743|51745|51746|51747|51748|51749|51750|51751|51752|51754|51755|51756|51757|51758|51760|51761|51762|51763|51764|51765|51766|51766|51767|51768|51769|51772|51773|51774|51775|51776|51777|51778|51779|51780|51781|51783|51785|51788|51789|51790|51791|51792|51793|51794|51795|51796|51797|51802|51804|51805|51806|51807|51808|51809|51811|51812|51814|51815|51816|51817|51817|51818|51819|51820|51821|51822|51824|51826|51828|51830|51833|51834|51835|51836|51837|51839|51840|51841|51842|51844|51845|51846|51847|51848|51849|51850|51851|51852|51853|51856|51857|51858|51859|51860|51861|51862|51863|51864|51865|51866|51870|51871|51872|51873|51874|51875|51876|51877|51880|51881|51882|51883|51884|51885|51887|51888|51889|51890|51892|51893|51896|51897|51898|51899|51900|51901|51903|51905|51906|51907|51908|51909|51911|51912|51913|51914|51914|51915|51916|51917|51918|51919|51920|51921|51922|51923|51924|51925|51926|51927|51928|51929|51930|51931|51933|51934|51935|51937|51938|51940|51941|51942|51943|51944|51945|51946|51947|51948|51949|51950|51953|51954|51955|51956|51957|51958|51959|51960|51961|51962|51963|51964|51965|51966|51967|51968|51970|51971|51972|51974|51975|51976|51977|51979|51980|51981|51983|51984|51985|51986|51987|51988|51989|51990|51991|51992|51993|51997|51998|51999|52001|52003|52004|52005|52006|52008|52010|52013|52014|52018|52021|52023|52026|52030|52032|52033|52034|52035|52038|52039|52043|52044|52045|52046|52048|52050|52052|52054|52055|52056|52060|52064|52066|52067|52068|52070|52071|52074|52077|52078|52079|52080|52081|52083|52084|52085|52086|52087|52088|52091|52092|52096|52097|52101|52102|52103|52104|52108|52109|52111|52112|52114|52115|52116|52118|52119|52120|52121|52122|52123|52124|52126|52127|52128|52129|52130|52131|52132|52133|52135|52136|52140|52141|52143|52144|52146|52147|52148|52149|52150|52151|52152|52155|52156|52157|52158|52161|52162|52163|52165|52166|52169|52171|52172|52173|52174|52175|52176|52177|52179|52180|52181|52182|52183|52184|52185|52189|52190|52190|52191|52193|52194|52197|52198|52199|52201|52202|52204|52205|52206|52207|52208|52209|52211|52212|52213|52214|52215|52217|52218|52219|52222|52224|52225|52226|52229|52233|52234|52235|52236|52237|52239|52241|52242|52243|52244|52245|52246|52252|52254|52256|52260|52262|52263|52265|52266|52268|52269|52270|52271|52272|52273|52276|52277|52279|52283|52285|52286|52287|52291|52294|52298|52299|52300|52530|52531|52532|52533|52534|52535|52536|52537|52540|52541|52542|52543|52545|52546|52549|52550|52551|52552|52553|52554|52556|52558|52559|52560|52561|52563|52565|52566|52568|52569|52573|52575|52577|52579|52580|52584|52586|52589|52590|52592|52594|52595|52602|52604|52607|52608|52611|52613|52614|52618|52619|52629|52631|52634|52645|52649|52650|52651|52781|52782|52786|52795|52796|52797|52798|52800|52801|52805|52817|52821|52825|52826|52831|52838|52842|52843|52845|52847|52848|53068|53073|53075|53080|53084|53097|53102|53103|53119|53124|53157|53160|53163|53179|53484|53514|53516|53582|53583|53585|53586|53588|53589|53593|53599|53600|53609|53610|53612|53659|53663|53666|53861|53872|53873|53878|53951|54096|54130|54248|54251|54345|54356|54358|54520|54722|54860|54862|54866|54869|54882|54904|54944|54945|54945|54946|54947|54949|54952|54953|55007|55009|55338|55790|55798|55878|55880|55927|56006|56032|56066|56099|56114|56152|56160|56180|56330|56342|56353|56406|56430|56440|56555|56641|56675|56684|56762|56784|56785|56790|56803|56826|56917|56956|56978|57007|57078|57227|57461|75578|77971|78400|78502|78515|89285|90404|98214|98596|98597|99306|99423|100353|101850|102004|102168|102208|134503|135114|136049|136674|136686|136725|139990|140876|141245|141305|141306|141307|141308|141309|141310|141311|141312|141313|141314|141388|141390|141492|141534|142020|142021|142022|142029|142077|142078|142079|142081|142083|142084|142086|142089|142090|142091|142092|142094|142095|142097|142098|142371|142372|142374|142375|142376|142381|152931|152934|165552|165553|165560|165565|165566|165570|165574|165575|165592|167406|171084|171133|171134|171135|171136|171137|171139|171140|171141|171142|171143|171144|171145|171146|171147|171157|171158|171159|171160|171162|171163|171164|171165|171245|172177|172354|172356|172362|172363|172365|172391|172435|172495|172499|172501|172501|172786|172879|172926|172928|173031|173313|173487|173800|173939|173940|173949|173997|174183|174347|174603|174725|174728|174731|174732|174733|174735|174736|174737|174738|174740|174741|174742|174743|174744|174745|174746|174747|174748|174749|174750|174751|174753|174754|174755|174756|174757|174758|174760|174763|174764|174766|174768|174770|174772|174775|174776|174778|174779|174779|174780|174782|174783|174784|174785|174786|174787|174788|174789|174791|174793|174794|174796|174797|174798|174799|174800|174916|174916|175019|175138|175138|175139|175140|175141|175142|175143|175144|175145|175146|175147|175148|175149|175150|175151|175152|175153|175154|175156|175157|175158|175160|175161|175162|175163|175164|175165|175168|175171|175173|175174|175175|175177|175179|175182|175183|175184|175185|175188|175189|175190|175191|175192|175194|175195|175196|175197|175198|175199|175201|175202|175203|175205|175207|175208|175209|175212|175410|175414|175440|175441|175442|175443|175446|175451|175452|175453|175454|175456|175458|175458|175459|175460|175462|175467|175468|175470|175472|175473|175474|175477|175479|175480|175481|175482|175484|175485|175486|175488|175490|175491|175492|175494|175496|175497|175498|175501|175502|175503|175506|175507|175508|175510|175511|175513|175516|175517|175531|175563|175568|175577|175583|175584|175586|175587|175588|175590|175593|175594|175598|175599|175600|175600|175606|175607|175610|175611|175612|175614|175615|175616|175617|175619|175620|175621|175624|175624|175629|175630|175631|175632|175634|175636|175638|175641|175643|175645|175645|175646|175647|175648|175652|175656|175657|175658|175694|175896|175955|175993|175994|175998|175999|176016|176067|176068|176069|176070|176073|176074|176076|176135|176137|176139|176140|176207|176208|176208|176209|176211|176212|176213|176214|176214|176218|176219|176318|176320|176340|176343|176532|178115|178124|178128|178182|178184|178194|178207|178284|178448|178638|178642|178672|178675|178679|178681|178725|178726|178728|178863|178913|178927|178937|178948|179056|179060|179064|179066|179071|179171|179172|179174|179175|179179|179180|179184|179185|179187|179190|179192|179194|179196|179198|179200|179207|179208|179209|179211|179212|179213|179215|179216|179220|179223|179228|179229|179230|179232|179233|179234|179238|179240|179241|179242|179247|179252|179255|179256|179258|179259|179263|179266|179268|179269|179275|179279|179280|179283|179286|179289|179290|179291|179292|179293|179294|179297|179299|179302|179305|179306|179308|179309|179310|179311|179315|179320|179324|179330|179331|179337|179338|179341|179344|179348|179351|179352|179353|179356|179362|179363|179365|179368|179369|179373|179377|179378|179379|179380|179381|179383|179386|179387|179389|179392|179395|179397|179400|179401|179406|179407|179409|179435|179464|179465|179466|179467|179468|179470|179471|179472|179473|179474|179476|179477|179478|179482|179483|179485|179486|179488|179489|179490|179492|179493|179494|179495|179496|179498|179500|179501|179502|179503|179505|179508|179512|179513|179514|179517|179518|179519|179520|179522|179523|179524|179525|179535|179536|179538|179539|179540|179545|179547|179548|179552|179553|179554|179561|179563|179565|179572|179575|179577|179579|179583|179584|179588|179591|179592|179593|179597|179598|179600|179606|179607|179611|179613|179617|179619|179623|179626|179628|179630|179632|179636|179639|179640|179641|179645|179648|179649|179651|179652|179653|179658|179659|179660|179662|179663|179665|179667|179669|179671|179672|179676|179680|179681|179682|179689|179692|179693|179694|179696|179697|179700|179706|179709|179710|179712|179714|179721|179745|179749|179760|179771|179773|179778|179780|179833|179836|179850|179851|179852|179853|179855|179856|179858|179861|186019|186188|186189|186190|186288|186345|186351|186352|186355|186359|186363|186365|186369|186372|186386|186390|186396|186400|186402|186412|186415|186460|186465|186473|186477|186479|186481|186484|186491|186494|186495|186498|186513|186532|186572|186577|187659|188231|188232|188283|188642|189264|189309|189319|189341|189591|189745|189784|189882|189889|189890|189893|189948|189951|189952|189953|189962|190002|190006|190017|190105|191628|192881|193011|193221|194483|196555|196586|198161|198163|198164|198165|198166|198169|198170|198170|198180|198265|198308|198471|198526|198529|198532|198533|198534|198535|198536|198537|198538|198692|198791|198838|198969|199000|199203|199524|199892|200068|209638|212332|212928|212929|213103|213104|213105|213106|213465|213470|213471|214115|214116|214122|214123|214133|214490|214491|214493|214496|217339|221419|222010|222142|222143|222144|222145|222146|222147|222366|222367|222430|222748|222750|222854|224163|224164|224213|224282|224405|224429|224459|224460|224461|224465|224466|224471|224526|224533|224561|226979|228646|229096|229097|229098|229100|229101|229157|229164|229166|229168|229169|229955|230200|230202|230206|230207|230209|230210|230211|230212|230214|230215|230216|230217|230218|230487|230490|230492|230493|230494|230495|230497|230498|230500|230508|230510|230511|230512|230513|230515|230805|230807|230808|230809|230811|230813|230815|230816|230820|230822|230823|230824|230832|230834|230835|230837|230839|230840|230843|230845|230846|230847|230848|230849|230850|230851|230852|230855|230856|230857|230858|230859|230874|230875|230886|230889|230891|230893|230897|230899|230901|230902|230904|231098|231101|231237|231913|231915|236787|236797|236799|236800|236801|236803|236804|236806|236811|238151|239237|239297|239327|239353|239354|239355|239356|241141|241143|241144|241146|241147|241148|241150|241151|241152|241815|241817|241818|241819|241820|241821|241822|241823|241824|241825|241826|241827|241828|242090|242091|242115|243036|243037|243038|243039|243045|243046|243047|243048|243049|243050|243051|243052|243053|243054|243055|243056|243057|243058|243548|243549|243550|243551|243552|243579|243580|248487|248633|248634|252605|254928|254930|256530|257238|257239|257242|257243|257246|257247|257248|257251|257252|257253|258325|258604|258698|258703|258704|258705|258706|258708|258786|258792|258795|258796|258800|258801|258804|258805|258806|258808|258809|258810|258811|259040|259051|259061|259064|259066|259067|259071|259076|259909|260053|260077|265399|265469|266316|267280|278453|278454|278568|279761|279762|280068|280071|280080|280081|280083|281230|281366|281371|281382|281553|281561|281562|281853|281856|283203|283251|283295|283301|283302|283303|283427|283925|283957|284034|284037|284061|284064|285684|285724|285913|285986|286010|286102|286159|286333|291660|292150|296388|296887|296890|296896|301280|301294|301302|310229|313530|313531|314279|314281|314284|314287|314289|314290|319738|319747|320355|320364|320370|320374|320376|320380|320886|320887|320892|320893|322278|322281|322290|322292|322305|322315|322319|322320|322321|325907|326925|326939|326941|326942|326951|327968|327969|327974|327975|328966|328973|328975|328987|328990|328992|328994|329388|329400|331578|331581|331583|331587|331597|331610|331619|331628|331630|331646|332637|332639|334391|334413|335616|335619|335627|335628|335630|335631|335647|335648|335649|337435|337446|337452|337463|337484|338527|338558|338581|338582|338583|338588|338608|338610|338614|338623|338700|338709|338710|338713|338717|338721|338722|338724|338727|338736|338740|338742|338749|338751|339585|340274|340279|340282|340299|340308|340311|340314|340316|340327|340328|340329|340336|340337|340978|344273|348302|348304|348317|348321|348323|348325|348331|348332|348334|348335|348337|348341|348348|348349|348351|348353|348354|349397|349798|350406|350409|351933|351976|351981|351982|351990|351991|351992|351993|351994|351995|351996|351997|352000|352001|352003|352005|352018|352019|352021|352717|352718|352719|352720|352721|352722|352723|352724|353178|353295|353322|353523|353524|353525|353584|359533|360009|360028|360139|360187|360468|360845|360890|360959|360960|367264|367589|367623|367628|369090|369099|369104|371435|371467|372197|372203|372215|372219|372399|372456|373024|373034|373042|373058|373069|373755|373762|373772|373779|374103|374107|374122|374128|374129|374130|374132|374146|374166|374232|374648|375981|376000|376002|376003|376006|377027|377030|377850|378027|378033|378035|378238|379666|389925|390042|390169|390184|390322|392253|393590|393831|393836|393875|393912|393917|394040|394337|396488|397581|398122|398200|398203|398206|398212|398213|398216|398219|398254|398256|398259|398263|398268|398269|398273|398277|398278|398280|398307|398309|398312|398632|398638|398642|398644|398651|398654|398656|398700|398706|398720|398720|398724|398727|398732|398736|398754|398757|399597|399608|399609|399617|399618|399620|399622|399624|399626|399636|399638|399749|399755|399757|399760|399762|399764|399766|399776|399784|400128|400133|400136|400142|400151|400156|400158|400164|400167|400170|400173|400178|400183|400185|400199|400286|400317|400323|400327|400336|400337|400346|400347|400349|400350|400355|400430|400432|401068|402641|402652|402657|402689|402703|402705|402706|402707|402709|402712|402714|402724|402725|402726|402728|402735|402737|402738|402745|402753|402755|402760|402794|402796|402800|403132|403174|403176|403177|403214|403217|403221|403230|403242|403246|403247|403259|403270|403279|403281|403299|403300|403623|403624|403636|403639|404083|404109|404158|404170|404619|404802|408360|408362|408364|408375|408377|408378|408379|409092|409098|414943|414961|415274|415275|415388|415391|419262|419263|419264|419267|419268|419269|419270|419271|419272|419273|419276|419278|419280|419282|419284|419287|419288|419290|419291|419292|419293|419294|419297|421858|421859|421985|425926|426059|426063|426337|437891|443608|444817|444818|444822|444825|445199|445201|445202|445204|445205|445206|445211|445213|445214|446238|446244|447836|452438|452439|452446|452743|452919|452931|452942|453112|453113|453181|453257|453334|453368|453484|453486|453865|456644|460462|460464|461045|461139|461142|461150|461163|461168|461335|461342|461343|461349|461350|461353|461358|461361|461632|461634|461639|461652|461660|461668|461673|461685|461688|461691|461693|461957|461960|461976|461977|461980|461983|461984|461992|461996|462000|462001|462003|462017|463134|463154|463160|463162|463164|463165|463179|463184|463185|463191|463193|463195|463603|463640|463644|463648|463651|463652|463660|463667|463668|463670|463674|463676|463679|463690|463695|463701|463944|463951|463962|463977|463978|463980|463983|463986|463988|463992|463996|464003|464006|464023|464138|464141|464143|464145|464151|464152|464155|464161|464164|464166|464167|464170|464173|464180|464185|464403|464406|464408|465018|465207|465209|465211|465274|465277|465282|467947|467949|467971|467976|468815|468819|468828|468832|468871|468873|468875|468876|468917|468918|468921|468923|469241|469254|469259|469262|469269|469276|469278|469279|469280|469284|469287|469288|469293|469316|469317|469460|469638|469646|469664|469669|469695|469700|469707|469709|469710|469712|469743|470235|470247|470249|470253|470381|470385|470388|470891|470900|471078|471292|471294|471296|471387|471390|480713|481130|485937|485939|487487|487776|492980|494005|496552|497070|497073|497292|497335|497452|497496|497568|497572|497617|497620|497685|497749|497751|500285|503823|504249|504491|504500|504757|505005|505006|505012|505014|505425|505430|507577|507750|508181|509630|509680|509683|510287|510288|510289|510293|510295|510301|510302|510303|510307|510308|510312|510317|510318|510322|510323|510329|510462|510463|510468|510478|510481|510483|510485|510486|510491|510654|510813|510827|510832|510834|510889|511117|514040|514354|514357|514360|515677|517312|519501|519847|519850|519874|519940|520101|522254|525481|525602|525997|526000|526229|526230|526232|526234|526236|526238|526240|526243|526245|526248|526249|526254|526256|526263|526270|526275|526442|526443|526448|526450|526453|526455|526457|526460|526462|526596|526725|526731|526732|526736|526739|526742|526744|526746|526748|526752|526754|528029|528031|528041|528043|528048|528058|528059|528061|528064|528069|528072|528077|528079|528080|528084|528086|528087|528089|528093|528094|528096|528098|528100|528101|528103|528104|528107|528108|528110|528112|528116|528118|528119|528124|528125|528128|528134|528417|528424|528431|528436|528444|528447|528450|528453|528460|528463|528473|528478|528479|528483|528543|528544|528548|528550|528554|528557|528561|528564|528566|528571|528575|528577|528580|528582|528593|528599|528601|528604|528611|528951|528958|528959|529051|529052|529058|529060|529068|529076|529393|529555|532187|532189|532197|532199|532214|532216|532217|532236|532252|532253|532265|532267|532271|532273|532279|532280|532284|532311|532312|532314|532317|532344|532349|532353|532354|532358|532361|532363|532375|532376|532592|532595|532607|532612|532615|532616|532645|532654|532658|532663|532718|533391|533394|533398|533399|533401|533402|533417|533419|533422|533429|533435|533457|533461|533463|533470|533516|533518|533562|533566|533607|533611|533612|534099|534104|534108|534112|536814|551729|551730|551733|551781|558403|559006|559521|559543|559579|559647|559806|559808|560550|561054|561600|561602|562972|563338|563641|564062|564673|564678|564685|564687|564691|564693|564695|564697|564707|564713|564714|564717|564721|564723|565031|565806|565816|565818|565830|565835|565837|565841|565849|566354|566355|566359|566361|566363|566366|566368|566370|566372|566382|566383|566389|566395|566398|566399|566401|567284|567291|567292|567296|567298|567299|567306|567307|567312|567318|567320|567767|567885|567886|567887|567892|567906|567909|567918|567922|567927|567931|567932|567938|567946|567950|567958|567968|567969|567972|567977|568097|568789|568791|568792|568799|568807|568812|568813|568815|568816|568821|568824|568826|568829|568837|568838|568841|568842|568845|569020|569027|569514|569540|569611|570074|570075|570077|570101|570125|570130|570134|570138|570140|570146|570149|570677|570678|570683|570684|570688|570689|570690|570692|570694|570699|571092|571094|571103|571236|571238|571859|571876|571919|571921|571923|572577|572581|572582|572593|572611|572614|572623|572628|572630|572761|572765|572767|572768|572769|572771|572772|572807|572901|573414|573418|573456|573457|573503|573505|573512|573514|573519|574717|574725|574727|574742|574744|574788|575059|575060|575103|575104|575105|575106|575466|609787|610480|610646|610647|610648|610649|610650|610651|610652|610653|610654|610655|610656|610657|610658|610659|610660|610661|610662|610663|610664|610665|610666|610667|610668|610669|610670|610671|610672|610673|610674|610675|610676|610677|610678|610679|610680|610690|611345|611747|612983|614899|615012|615026|615063|615075|615076|615085|615091|616929|617872|617879|617880|617888|618219|618225|619010|619427|619463|620403|623073|624268|624437|624442|624665|624680|631458|631459|631460|631461|631908|631909|632117|632118|632119|632120|632121|632122|632123|632124|640091|640092|640093|640094|640095|640096|640097|640098|640099|640100|640101|640102|640103|640104|640105|640106|640107|640108|640109|640110|640111|640112|640113|640115|640116|640117|640118|640119|640120|640121|640122|640123|640124|640125|640126|640127|640128|640129|642256|642257|642258|642259|642260|642261|642262|642263|642264|642265|642266|642267|642268|642269|642270|642271|642272|642273|642274|642275|642276|642277|642278|642279|642280|642281|642282|642283|642284|642285|642286|642287|642288|642289|642290|642291|642292|642293|642294|642295|642296|642297|642298|642299|642300|642301|642302|642303|642304|642305|642306|642307|642308|642309|642310|642311|642312|642313|642314|642315|642316|642317|642318|642319|642320|642321|642322|642323|643448|643449|643450|643451|643452|643453|643454|643455|645829|647125|647126|647127|647128|647129|647130|647131|647132|647133|647149|647150|647151|647152|647153|647154|647155|647156|647158|647159|647160|647162|647163|647183|647192|647193|647194|647195|647196|647197|647198|647199|647200|647201|647202|647203|647205|647206|648496|648497|648498|648499|648500|648501|648690|648691|648692|648693|648694|648695|648696|648697|648698|651001|651100|651107|651137|651167|652193|652196|652199|652330|652334|652339|652431|652463|652465|652598|652600|652756|652915|652925|652946|652968|653087|653398|653550|653638|654175|654683|654684|654783|654843|656059|656061|672032|672423|672436|677250|677272|679367|679370|679380|679385|679413|679416|679427|679429|679433|679440|679451|679452|679456|679458|679466|679469|679470|679475|679478|679481|679548|679549|679856|679857|679872|681801|683629|684259|684470|684472|684750|684754|684882|685398|685443|686430|686515|687780|687781|687783|687786|688260|688262|688265|688266|688267|688269|688270|688462|688892|688894|688898|688911|688912|689202|690079|690188|690229|690230|691547|693046|693466|693467|693470|693707|694262|694264|694265|694550|695229|695519|695520|695655|701784|720873|738008|748848|756420|768472|768473|769740|769742|769744|769748|772910|773108|775684|775822|776596|784017|784691|784692|784693|784694|785893|785894|789731|789732|789733|789734|789735|791142|792711|798985|798986|798987|798988|798989|798990|798992|798994|798995|798996|798997|798998|798999|799000|799001|799002|799003|799004|799005|799006|799008|799009|799010|799011|799012|799014|799015|799017|799018|799019|799645|819467|819468|820375|820376|820377|820378|820379|820610|820611|820612|820613|820614|820615|820617|820724|820725|821183|821184|821198|821293|821294|821295|821296|821326|828189|828189|828190|828716|828717|828718|828719|828720|828991|828992|828993|828994|828995|828996|828997|828998|828999|838487|838488|838489|838490|838491|838492|838493|838494|838495|838496|838497|838498|838499|838500|838501|838502|838503|838504|838505|838506|838507|838508|838509|838510|838511|838512|838513|838514|838515|838516|838517|838518|838519|838520|838521|838522|838523|838524|838525|838526|838527|838528|838529|838530|838531|838532|838533|838534|838535|838536|838537|838538|838539|838540|838541|841243|841244|841245|841246|841247|841248|841249|841250|841251|841252|841253|841254|841255|841256|841257|841258|841259|841260|841261|841262|841263|841264|841265|841266|841267|841268|841269|841270|841271|841272|841273|841274|841275|841276|841277|841278|841279|841280|841281|841282|841283|841284|841285|841286|841287|841288|841289|841290|841291|841292|841293|841294|841295|841296|841297|841298|841299|841300|841301|841302|841303|841304|841305|841306|841307|841308|841309|841310|841311|841312|841313|841314|841315|841316|841317|841318|841319|841320|841321|841322|841323|841324|841325|841326|841327|841328|841329|841330|841331|842571|842572|842573|842574|842575|846737|846738|846739|846740|846741|846742|846743|846744|846764|846765|846766|846767|846768|846769|846770|846771|846772|846773|846774|846775|846776|846777|846778|846779|846805|846814|846815|846816|846817|846818|846819|846821|846822|846823|846824|846825|848082|848083|848084|848085|848086|848087|848401|848402|848403|848404|848405|848406|848407|848408|848409|848410|848411|848412|850962|851433|851435|851437|851547|851549|851598|851769|851844|851880|851989|851991|851993|852353|852354|852614|852729|852731|852735|852992|858245|858247|858249|858251|858253|858257|858258|858259|858262|858263|858264|858265|858266|858268|858474|868657|911710|911725|911757|911808|911831|911853|911885|912397|912410|912458|912487|912544|912564|914892|918402|923219|923220|923221|923222|923223|923479|926256|926257|926258|926259|926260|926261|926262|926996|926997|926998|926999|927000|927001|927002|927003|927004|927005|927006|927007|927008|927388|927389|927390|928673|928674|928675|928680|928681|928682|928692|928693|928694|928695|928696|928697|929117|929118|929191|929192|929193|929194|929195|931964|931965|932134|932135|932260|932261|935577|935578|935579|935580|935581|935582|935583|935584|935585|935586|935587|935588|935589|935590|936569|936570|936571|936572|936573|936574|936575|936576|936577|936578|936579|936580|936581|936582|936583|936584|936585|936586|936587|936588|937000|937001|937002|937003|938395|938396|938397|938398|938403|938404|938405|938406|938407|938408|938409|938420|938421|938423|938424|938425|938856|938857|938858|938859|938980|938981|938982|938983|938984|938985|940215|940216|940217|940218|940219|940999|941058|941059|941248|943766|943767|943768|943913|943914|943915|943916|943917|943918|947484|947485|947486|947487|947488|947489|947490|947491|947492|947493|947494|947495|948496|948497|948498|948499|948500|948501|948502|948503|948504|948505|948506|948507|948508|948509|948510|948511|948512|948513|948514|948515|948516|948517|948518|948519|948520|948521|948522|948523|948524|948525|948954|948955|948956|950482|950483|950484|950485|950486|950493|950494|950495|950504|950505|950506|950507|950508|950509|950510|950511|950512|950513|950925|950926|950927|950928|951096|951097|951098|951099|951100|951101|953496|953497|953498|953499|953734|953735|953736|956516|956517|956518|956519|956520|956521|956522|956523|956524|957187|957188|957189|957190|957191|957192|957193|957194|957195|957464|957465|958452|958459|959991|960086|960263|960534|960752|960802|960824|960927|960928|963223|964259|965298|965306|965314|971587|974521|976826|980751", + "upstreamId": "15773|15827|21885|21888|21891|21893|21894|23641|23642|23643|23647|23655|23656|23658|23660|23815|23817|23819|25021|25769|25777|25807|27237|27447|27448|27450|27453|27458|27460|27461|27463|27463|27465|27465|27468|27482|27495|27496|28370|28676|29100|29101|29102|29103|29104|29106|29126|29127|29128|29129|29130|29131|29133|29134|29136|29137|29138|29141|29143|29144|29146|29147|29148|29150|29151|29152|29153|29154|29157|29158|29159|29159|29160|29161|29162|29163|29164|29165|29166|29188|33288|33370|39098|39099|39415|39466|39864|40437|40438|40440|40441|40442|40443|40446|40448|40451|40498|40499|40500|40515|40525|40535|40536|40537|40538|40542|40543|40544|40545|40548|40549|40553|40555|40558|44314|44944|45263|45264|45265|45266|45267|45269|45271|45272|45273|45275|45276|45277|45290|45298|45299|45300|45301|45303|45304|45310|45359|45542|45545|45548|45599|45725|45929|48983|49167|49302|51095|51262|51263|51619|51625|51668|51669|51670|51673|51675|51676|51677|51678|51680|51681|51682|51683|51684|51685|51686|51687|51688|51689|51690|51691|51692|51693|51694|51695|51697|51698|51699|51701|51702|51703|51705|51706|51707|51708|51709|51710|51711|51713|51715|51716|51717|51719|51720|51720|51721|51726|51728|51729|51730|51732|51733|51734|51735|51736|51737|51738|51740|51741|51742|51743|51745|51746|51747|51748|51749|51750|51751|51752|51754|51755|51756|51757|51758|51760|51761|51762|51763|51764|51765|51766|51766|51767|51768|51769|51772|51773|51774|51775|51776|51777|51778|51779|51780|51781|51783|51785|51788|51789|51790|51791|51792|51793|51794|51795|51796|51797|51802|51804|51805|51806|51807|51808|51809|51811|51812|51814|51815|51816|51817|51817|51818|51819|51820|51821|51822|51824|51826|51828|51830|51833|51834|51835|51836|51837|51839|51840|51841|51842|51844|51845|51846|51847|51848|51849|51850|51851|51852|51853|51856|51857|51858|51859|51860|51861|51862|51863|51864|51865|51866|51870|51871|51872|51873|51874|51875|51876|51877|51880|51881|51882|51883|51884|51885|51887|51888|51889|51890|51892|51893|51896|51897|51898|51899|51900|51901|51903|51905|51906|51907|51908|51909|51911|51912|51913|51914|51914|51915|51916|51917|51918|51919|51920|51921|51922|51923|51924|51925|51926|51927|51928|51929|51930|51931|51933|51934|51935|51937|51938|51940|51941|51942|51943|51944|51945|51946|51947|51948|51949|51950|51953|51954|51955|51956|51957|51958|51959|51960|51961|51962|51963|51964|51965|51966|51967|51968|51970|51971|51972|51974|51975|51976|51977|51979|51980|51981|51983|51984|51985|51986|51987|51988|51989|51990|51991|51992|51993|51997|51998|51999|52001|52003|52004|52005|52006|52008|52010|52013|52014|52018|52021|52023|52026|52030|52032|52033|52034|52035|52038|52039|52043|52044|52045|52046|52048|52050|52052|52054|52055|52056|52060|52064|52066|52067|52068|52070|52071|52074|52077|52078|52079|52080|52081|52083|52084|52085|52086|52087|52088|52091|52092|52096|52097|52101|52102|52103|52104|52108|52109|52111|52112|52114|52115|52116|52118|52119|52120|52121|52122|52123|52124|52126|52127|52128|52129|52130|52131|52132|52133|52135|52136|52140|52141|52143|52144|52146|52147|52148|52149|52150|52151|52152|52155|52156|52157|52158|52161|52162|52163|52165|52166|52169|52171|52172|52173|52174|52175|52176|52177|52179|52180|52181|52182|52183|52184|52185|52189|52190|52190|52191|52193|52194|52197|52198|52199|52201|52202|52204|52205|52206|52207|52208|52209|52211|52212|52213|52214|52215|52217|52218|52219|52222|52224|52225|52226|52229|52233|52234|52235|52236|52237|52239|52241|52242|52243|52244|52245|52246|52252|52254|52256|52260|52262|52263|52265|52266|52268|52269|52270|52271|52272|52273|52276|52277|52279|52283|52285|52286|52287|52291|52294|52298|52299|52300|52530|52531|52532|52533|52534|52535|52536|52537|52540|52541|52542|52543|52545|52546|52549|52550|52551|52552|52553|52554|52556|52558|52559|52560|52561|52563|52565|52566|52568|52569|52573|52575|52577|52579|52580|52584|52586|52589|52590|52592|52594|52595|52602|52604|52607|52608|52611|52613|52614|52618|52619|52629|52631|52634|52645|52649|52650|52651|52781|52782|52786|52795|52796|52797|52798|52800|52801|52805|52817|52821|52825|52826|52831|52838|52842|52843|52845|52847|52848|53068|53073|53075|53080|53084|53097|53102|53103|53119|53124|53157|53160|53163|53179|53484|53514|53516|53582|53583|53585|53586|53588|53589|53593|53599|53600|53609|53610|53612|53659|53663|53666|53861|53872|53873|53878|53951|54096|54130|54248|54251|54345|54356|54358|54520|54722|54860|54862|54866|54869|54882|54904|54944|54945|54945|54946|54947|54949|54952|54953|55007|55009|55338|55790|55798|55878|55880|55927|56006|56032|56066|56099|56114|56152|56160|56180|56330|56342|56353|56406|56430|56440|56555|56641|56675|56684|56762|56784|56785|56790|56803|56826|56917|56956|56978|57007|57078|57227|57461|75578|77971|78400|78502|78515|89285|90404|98214|98596|98597|99306|99423|100353|101850|102004|102168|102208|134503|135114|136049|136674|136686|136725|139990|140876|141245|141305|141306|141307|141308|141309|141310|141311|141312|141313|141314|141388|141390|141492|141534|142020|142021|142022|142029|142077|142078|142079|142081|142083|142084|142086|142089|142090|142091|142092|142094|142095|142097|142098|142371|142372|142374|142375|142376|142381|152931|152934|165552|165553|165560|165565|165566|165570|165574|165575|165592|167406|171084|171133|171134|171135|171136|171137|171139|171140|171141|171142|171143|171144|171145|171146|171147|171157|171158|171159|171160|171162|171163|171164|171165|171245|172177|172354|172356|172362|172363|172365|172391|172435|172495|172499|172501|172501|172786|172879|172926|172928|173031|173313|173487|173800|173939|173940|173949|173997|174183|174347|174603|174725|174728|174731|174732|174733|174735|174736|174737|174738|174740|174741|174742|174743|174744|174745|174746|174747|174748|174749|174750|174751|174753|174754|174755|174756|174757|174758|174760|174763|174764|174766|174768|174770|174772|174775|174776|174778|174779|174779|174780|174782|174783|174784|174785|174786|174787|174788|174789|174791|174793|174794|174796|174797|174798|174799|174800|174916|174916|175019|175138|175138|175139|175140|175141|175142|175143|175144|175145|175146|175147|175148|175149|175150|175151|175152|175153|175154|175156|175157|175158|175160|175161|175162|175163|175164|175165|175168|175171|175173|175174|175175|175177|175179|175182|175183|175184|175185|175188|175189|175190|175191|175192|175194|175195|175196|175197|175198|175199|175201|175202|175203|175205|175207|175208|175209|175212|175410|175414|175440|175441|175442|175443|175446|175451|175452|175453|175454|175456|175458|175458|175459|175460|175462|175467|175468|175470|175472|175473|175474|175477|175479|175480|175481|175482|175484|175485|175486|175488|175490|175491|175492|175494|175496|175497|175498|175501|175502|175503|175506|175507|175508|175510|175511|175513|175516|175517|175531|175563|175568|175577|175583|175584|175586|175587|175588|175590|175593|175594|175598|175599|175600|175600|175606|175607|175610|175611|175612|175614|175615|175616|175617|175619|175620|175621|175624|175624|175629|175630|175631|175632|175634|175636|175638|175641|175643|175645|175645|175646|175647|175648|175652|175656|175657|175658|175694|175896|175955|175993|175994|175998|175999|176016|176067|176068|176069|176070|176073|176074|176076|176135|176137|176139|176140|176207|176208|176208|176209|176211|176212|176213|176214|176214|176218|176219|176318|176320|176340|176343|176532|178115|178124|178128|178182|178184|178194|178207|178284|178448|178638|178642|178672|178675|178679|178681|178725|178726|178728|178863|178913|178927|178937|178948|179056|179060|179064|179066|179071|179171|179172|179174|179175|179179|179180|179184|179185|179187|179190|179192|179194|179196|179198|179200|179207|179208|179209|179211|179212|179213|179215|179216|179220|179223|179228|179229|179230|179232|179233|179234|179238|179240|179241|179242|179247|179252|179255|179256|179258|179259|179263|179266|179268|179269|179275|179279|179280|179283|179286|179289|179290|179291|179292|179293|179294|179297|179299|179302|179305|179306|179308|179309|179310|179311|179315|179320|179324|179330|179331|179337|179338|179341|179344|179348|179351|179352|179353|179356|179362|179363|179365|179368|179369|179373|179377|179378|179379|179380|179381|179383|179386|179387|179389|179392|179395|179397|179400|179401|179406|179407|179409|179435|179464|179465|179466|179467|179468|179470|179471|179472|179473|179474|179476|179477|179478|179482|179483|179485|179486|179488|179489|179490|179492|179493|179494|179495|179496|179498|179500|179501|179502|179503|179505|179508|179512|179513|179514|179517|179518|179519|179520|179522|179523|179524|179525|179535|179536|179538|179539|179540|179545|179547|179548|179552|179553|179554|179561|179563|179565|179572|179575|179577|179579|179583|179584|179588|179591|179592|179593|179597|179598|179600|179606|179607|179611|179613|179617|179619|179623|179626|179628|179630|179632|179636|179639|179640|179641|179645|179648|179649|179651|179652|179653|179658|179659|179660|179662|179663|179665|179667|179669|179671|179672|179676|179680|179681|179682|179689|179692|179693|179694|179696|179697|179700|179706|179709|179710|179712|179714|179721|179745|179749|179760|179771|179773|179778|179780|179833|179836|179850|179851|179852|179853|179855|179856|179858|179861|186019|186188|186189|186190|186288|186345|186351|186352|186355|186359|186363|186365|186369|186372|186386|186390|186396|186400|186402|186412|186415|186460|186465|186473|186477|186479|186481|186484|186491|186494|186495|186498|186513|186532|186572|186577|187659|188231|188232|188283|188642|189264|189309|189319|189341|189591|189745|189784|189882|189889|189890|189893|189948|189951|189952|189953|189962|190002|190006|190017|190105|191628|192881|193011|193221|194483|196555|196586|198161|198163|198164|198165|198166|198169|198170|198170|198180|198265|198308|198471|198526|198529|198532|198533|198534|198535|198536|198537|198538|198692|198791|198838|198969|199000|199203|199524|199892|200068|209638|212332|212928|212929|213103|213104|213105|213106|213465|213470|213471|214115|214116|214122|214123|214133|214490|214491|214493|214496|217339|221419|222010|222142|222143|222144|222145|222146|222147|222366|222367|222430|222748|222750|222854|224163|224164|224213|224282|224405|224429|224459|224460|224461|224465|224466|224471|224526|224533|224561|226979|228646|229096|229097|229098|229100|229101|229157|229164|229166|229168|229169|229955|230200|230202|230206|230207|230209|230210|230211|230212|230214|230215|230216|230217|230218|230487|230490|230492|230493|230494|230495|230497|230498|230500|230508|230510|230511|230512|230513|230515|230805|230807|230808|230809|230811|230813|230815|230816|230820|230822|230823|230824|230832|230834|230835|230837|230839|230840|230843|230845|230846|230847|230848|230849|230850|230851|230852|230855|230856|230857|230858|230859|230874|230875|230886|230889|230891|230893|230897|230899|230901|230902|230904|231098|231101|231237|231913|231915|236787|236797|236799|236800|236801|236803|236804|236806|236811|238151|239237|239297|239327|239353|239354|239355|239356|241141|241143|241144|241146|241147|241148|241150|241151|241152|241815|241817|241818|241819|241820|241821|241822|241823|241824|241825|241826|241827|241828|242090|242091|242115|243036|243037|243038|243039|243045|243046|243047|243048|243049|243050|243051|243052|243053|243054|243055|243056|243057|243058|243548|243549|243550|243551|243552|243579|243580|248487|248633|248634|252605|254928|254930|256530|257238|257239|257242|257243|257246|257247|257248|257251|257252|257253|258325|258604|258698|258703|258704|258705|258706|258708|258786|258792|258795|258796|258800|258801|258804|258805|258806|258808|258809|258810|258811|259040|259051|259061|259064|259066|259067|259071|259076|259909|260053|260077|265399|265469|266316|267280|278453|278454|278568|279761|279762|280068|280071|280080|280081|280083|281230|281366|281371|281382|281553|281561|281562|281853|281856|283203|283251|283295|283301|283302|283303|283427|283925|283957|284034|284037|284061|284064|285684|285724|285913|285986|286010|286102|286159|286333|291660|292150|296388|296887|296890|296896|301280|301294|301302|310229|313530|313531|314279|314281|314284|314287|314289|314290|319738|319747|320355|320364|320370|320374|320376|320380|320886|320887|320892|320893|322278|322281|322290|322292|322305|322315|322319|322320|322321|325907|326925|326939|326941|326942|326951|327968|327969|327974|327975|328966|328973|328975|328987|328990|328992|328994|329388|329400|331578|331581|331583|331587|331597|331610|331619|331628|331630|331646|332637|332639|334391|334413|335616|335619|335627|335628|335630|335631|335647|335648|335649|337435|337446|337452|337463|337484|338527|338558|338581|338582|338583|338588|338608|338610|338614|338623|338700|338709|338710|338713|338717|338721|338722|338724|338727|338736|338740|338742|338749|338751|339585|340274|340279|340282|340299|340308|340311|340314|340316|340327|340328|340329|340336|340337|340978|344273|348302|348304|348317|348321|348323|348325|348331|348332|348334|348335|348337|348341|348348|348349|348351|348353|348354|349397|349798|350406|350409|351933|351976|351981|351982|351990|351991|351992|351993|351994|351995|351996|351997|352000|352001|352003|352005|352018|352019|352021|352717|352718|352719|352720|352721|352722|352723|352724|353178|353295|353322|353523|353524|353525|353584|359533|360009|360028|360139|360187|360468|360845|360890|360959|360960|367264|367589|367623|367628|369090|369099|369104|371435|371467|372197|372203|372215|372219|372399|372456|373024|373034|373042|373058|373069|373755|373762|373772|373779|374103|374107|374122|374128|374129|374130|374132|374146|374166|374232|374648|375981|376000|376002|376003|376006|377027|377030|377850|378027|378033|378035|378238|379666|389925|390042|390169|390184|390322|392253|393590|393831|393836|393875|393912|393917|394040|394337|396488|397581|398122|398200|398203|398206|398212|398213|398216|398219|398254|398256|398259|398263|398268|398269|398273|398277|398278|398280|398307|398309|398312|398632|398638|398642|398644|398651|398654|398656|398700|398706|398720|398720|398724|398727|398732|398736|398754|398757|399597|399608|399609|399617|399618|399620|399622|399624|399626|399636|399638|399749|399755|399757|399760|399762|399764|399766|399776|399784|400128|400133|400136|400142|400151|400156|400158|400164|400167|400170|400173|400178|400183|400185|400199|400286|400317|400323|400327|400336|400337|400346|400347|400349|400350|400355|400430|400432|401068|402641|402652|402657|402689|402703|402705|402706|402707|402709|402712|402714|402724|402725|402726|402728|402735|402737|402738|402745|402753|402755|402760|402794|402796|402800|403132|403174|403176|403177|403214|403217|403221|403230|403242|403246|403247|403259|403270|403279|403281|403299|403300|403623|403624|403636|403639|404083|404109|404158|404170|404619|404802|408360|408362|408364|408375|408377|408378|408379|409092|409098|414943|414961|415274|415275|415388|415391|419262|419263|419264|419267|419268|419269|419270|419271|419272|419273|419276|419278|419280|419282|419284|419287|419288|419290|419291|419292|419293|419294|419297|421858|421859|421985|425926|426059|426063|426337|437891|443608|444817|444818|444822|444825|445199|445201|445202|445204|445205|445206|445211|445213|445214|446238|446244|447836|452438|452439|452446|452743|452919|452931|452942|453112|453113|453181|453257|453334|453368|453484|453486|453865|456644|460462|460464|461045|461139|461142|461150|461163|461168|461335|461342|461343|461349|461350|461353|461358|461361|461632|461634|461639|461652|461660|461668|461673|461685|461688|461691|461693|461957|461960|461976|461977|461980|461983|461984|461992|461996|462000|462001|462003|462017|463134|463154|463160|463162|463164|463165|463179|463184|463185|463191|463193|463195|463603|463640|463644|463648|463651|463652|463660|463667|463668|463670|463674|463676|463679|463690|463695|463701|463944|463951|463962|463977|463978|463980|463983|463986|463988|463992|463996|464003|464006|464023|464138|464141|464143|464145|464151|464152|464155|464161|464164|464166|464167|464170|464173|464180|464185|464403|464406|464408|465018|465207|465209|465211|465274|465277|465282|467947|467949|467971|467976|468815|468819|468828|468832|468871|468873|468875|468876|468917|468918|468921|468923|469241|469254|469259|469262|469269|469276|469278|469279|469280|469284|469287|469288|469293|469316|469317|469460|469638|469646|469664|469669|469695|469700|469707|469709|469710|469712|469743|470235|470247|470249|470253|470381|470385|470388|470891|470900|471078|471292|471294|471296|471387|471390|480713|481130|485937|485939|487487|487776|492980|494005|496552|497070|497073|497292|497335|497452|497496|497568|497572|497617|497620|497685|497749|497751|500285|503823|504249|504491|504500|504757|505005|505006|505012|505014|505425|505430|507577|507750|508181|509630|509680|509683|510287|510288|510289|510293|510295|510301|510302|510303|510307|510308|510312|510317|510318|510322|510323|510329|510462|510463|510468|510478|510481|510483|510485|510486|510491|510654|510813|510827|510832|510834|510889|511117|514040|514354|514357|514360|515677|517312|519501|519847|519850|519874|519940|520101|522254|525481|525602|525997|526000|526229|526230|526232|526234|526236|526238|526240|526243|526245|526248|526249|526254|526256|526263|526270|526275|526442|526443|526448|526450|526453|526455|526457|526460|526462|526596|526725|526731|526732|526736|526739|526742|526744|526746|526748|526752|526754|528029|528031|528041|528043|528048|528058|528059|528061|528064|528069|528072|528077|528079|528080|528084|528086|528087|528089|528093|528094|528096|528098|528100|528101|528103|528104|528107|528108|528110|528112|528116|528118|528119|528124|528125|528128|528134|528417|528424|528431|528436|528444|528447|528450|528453|528460|528463|528473|528478|528479|528483|528543|528544|528548|528550|528554|528557|528561|528564|528566|528571|528575|528577|528580|528582|528593|528599|528601|528604|528611|528951|528958|528959|529051|529052|529058|529060|529068|529076|529393|529555|532187|532189|532197|532199|532214|532216|532217|532236|532252|532253|532265|532267|532271|532273|532279|532280|532284|532311|532312|532314|532317|532344|532349|532353|532354|532358|532361|532363|532375|532376|532592|532595|532607|532612|532615|532616|532645|532654|532658|532663|532718|533391|533394|533398|533399|533401|533402|533417|533419|533422|533429|533435|533457|533461|533463|533470|533516|533518|533562|533566|533607|533611|533612|534099|534104|534108|534112|536814|551729|551730|551733|551781|558403|559006|559521|559543|559579|559647|559806|559808|560550|561054|561600|561602|562972|563338|563641|564062|564673|564678|564685|564687|564691|564693|564695|564697|564707|564713|564714|564717|564721|564723|565031|565806|565816|565818|565830|565835|565837|565841|565849|566354|566355|566359|566361|566363|566366|566368|566370|566372|566382|566383|566389|566395|566398|566399|566401|567284|567291|567292|567296|567298|567299|567306|567307|567312|567318|567320|567767|567885|567886|567887|567892|567906|567909|567918|567922|567927|567931|567932|567938|567946|567950|567958|567968|567969|567972|567977|568097|568789|568791|568792|568799|568807|568812|568813|568815|568816|568821|568824|568826|568829|568837|568838|568841|568842|568845|569020|569027|569514|569540|569611|570074|570075|570077|570101|570125|570130|570134|570138|570140|570146|570149|570677|570678|570683|570684|570688|570689|570690|570692|570694|570699|571092|571094|571103|571236|571238|571859|571876|571919|571921|571923|572577|572581|572582|572593|572611|572614|572623|572628|572630|572761|572765|572767|572768|572769|572771|572772|572807|572901|573414|573418|573456|573457|573503|573505|573512|573514|573519|574717|574725|574727|574742|574744|574788|575059|575060|575103|575104|575105|575106|575466|609787|610480|610646|610647|610648|610649|610650|610651|610652|610653|610654|610655|610656|610657|610658|610659|610660|610661|610662|610663|610664|610665|610666|610667|610668|610669|610670|610671|610672|610673|610674|610675|610676|610677|610678|610679|610680|610690|611345|611747|612983|614899|615012|615026|615063|615075|615076|615085|615091|616929|617872|617879|617880|617888|618219|618225|619010|619427|619463|620403|623073|624268|624437|624442|624665|624680|631458|631459|631460|631461|631908|631909|632117|632118|632119|632120|632121|632122|632123|632124|640091|640092|640093|640094|640095|640096|640097|640098|640099|640100|640101|640102|640103|640104|640105|640106|640107|640108|640109|640110|640111|640112|640113|640115|640116|640117|640118|640119|640120|640121|640122|640123|640124|640125|640126|640127|640128|640129|642256|642257|642258|642259|642260|642261|642262|642263|642264|642265|642266|642267|642268|642269|642270|642271|642272|642273|642274|642275|642276|642277|642278|642279|642280|642281|642282|642283|642284|642285|642286|642287|642288|642289|642290|642291|642292|642293|642294|642295|642296|642297|642298|642299|642300|642301|642302|642303|642304|642305|642306|642307|642308|642309|642310|642311|642312|642313|642314|642315|642316|642317|642318|642319|642320|642321|642322|642323|643448|643449|643450|643451|643452|643453|643454|643455|645829|647125|647126|647127|647128|647129|647130|647131|647132|647133|647149|647150|647151|647152|647153|647154|647155|647156|647158|647159|647160|647162|647163|647183|647192|647193|647194|647195|647196|647197|647198|647199|647200|647201|647202|647203|647205|647206|648496|648497|648498|648499|648500|648501|648690|648691|648692|648693|648694|648695|648696|648697|648698|651001|651100|651107|651137|651167|652193|652196|652199|652330|652334|652339|652431|652463|652465|652598|652600|652756|652915|652925|652946|652968|653087|653398|653550|653638|654175|654683|654684|654783|654843|656059|656061|672032|672423|672436|677250|677272|679367|679370|679380|679385|679413|679416|679427|679429|679433|679440|679451|679452|679456|679458|679466|679469|679470|679475|679478|679481|679548|679549|679856|679857|679872|681801|683629|684259|684470|684472|684750|684754|684882|685398|685443|686430|686515|687780|687781|687783|687786|688260|688262|688265|688266|688267|688269|688270|688462|688892|688894|688898|688911|688912|689202|690079|690188|690229|690230|691547|693046|693466|693467|693470|693707|694262|694264|694265|694550|695229|695519|695520|695655|701784|720873|738008|748848|756420|768472|768473|769740|769742|769744|769748|772910|773108|775684|775822|776596|784017|784691|784692|784693|784694|785893|785894|789731|789732|789733|789734|789735|791142|792711|798985|798986|798987|798988|798989|798990|798992|798994|798995|798996|798997|798998|798999|799000|799001|799002|799003|799004|799005|799006|799008|799009|799010|799011|799012|799014|799015|799017|799018|799019|799645|819467|819468|820375|820376|820377|820378|820379|820610|820611|820612|820613|820614|820615|820617|820724|820725|821183|821184|821198|821293|821294|821295|821296|821326|828189|828189|828190|828716|828717|828718|828719|828720|828991|828992|828993|828994|828995|828996|828997|828998|828999|838487|838488|838489|838490|838491|838492|838493|838494|838495|838496|838497|838498|838499|838500|838501|838502|838503|838504|838505|838506|838507|838508|838509|838510|838511|838512|838513|838514|838515|838516|838517|838518|838519|838520|838521|838522|838523|838524|838525|838526|838527|838528|838529|838530|838531|838532|838533|838534|838535|838536|838537|838538|838539|838540|838541|841243|841244|841245|841246|841247|841248|841249|841250|841251|841252|841253|841254|841255|841256|841257|841258|841259|841260|841261|841262|841263|841264|841265|841266|841267|841268|841269|841270|841271|841272|841273|841274|841275|841276|841277|841278|841279|841280|841281|841282|841283|841284|841285|841286|841287|841288|841289|841290|841291|841292|841293|841294|841295|841296|841297|841298|841299|841300|841301|841302|841303|841304|841305|841306|841307|841308|841309|841310|841311|841312|841313|841314|841315|841316|841317|841318|841319|841320|841321|841322|841323|841324|841325|841326|841327|841328|841329|841330|841331|842571|842572|842573|842574|842575|846737|846738|846739|846740|846741|846742|846743|846744|846764|846765|846766|846767|846768|846769|846770|846771|846772|846773|846774|846775|846776|846777|846778|846779|846805|846814|846815|846816|846817|846818|846819|846821|846822|846823|846824|846825|848082|848083|848084|848085|848086|848087|848401|848402|848403|848404|848405|848406|848407|848408|848409|848410|848411|848412|850962|851433|851435|851437|851547|851549|851598|851769|851844|851880|851989|851991|851993|852353|852354|852614|852729|852731|852735|852992|858245|858247|858249|858251|858253|858257|858258|858259|858262|858263|858264|858265|858266|858268|858474|868657|911710|911725|911757|911808|911831|911853|911885|912397|912410|912458|912487|912544|912564|914892|918402|923219|923220|923221|923222|923223|923479|926256|926257|926258|926259|926260|926261|926262|926996|926997|926998|926999|927000|927001|927002|927003|927004|927005|927006|927007|927008|927388|927389|927390|928673|928674|928675|928680|928681|928682|928692|928693|928694|928695|928696|928697|929117|929118|929191|929192|929193|929194|929195|931964|931965|932134|932135|932260|932261|935577|935578|935579|935580|935581|935582|935583|935584|935585|935586|935587|935588|935589|935590|936569|936570|936571|936572|936573|936574|936575|936576|936577|936578|936579|936580|936581|936582|936583|936584|936585|936586|936587|936588|937000|937001|937002|937003|938395|938396|938397|938398|938403|938404|938405|938406|938407|938408|938409|938420|938421|938423|938424|938425|938856|938857|938858|938859|938980|938981|938982|938983|938984|938985|940215|940216|940217|940218|940219|940999|941058|941059|941248|943766|943767|943768|943913|943914|943915|943916|943917|943918|947484|947485|947486|947487|947488|947489|947490|947491|947492|947493|947494|947495|948496|948497|948498|948499|948500|948501|948502|948503|948504|948505|948506|948507|948508|948509|948510|948511|948512|948513|948514|948515|948516|948517|948518|948519|948520|948521|948522|948523|948524|948525|948954|948955|948956|950482|950483|950484|950485|950486|950493|950494|950495|950504|950505|950506|950507|950508|950509|950510|950511|950512|950513|950925|950926|950927|950928|951096|951097|951098|951099|951100|951101|953496|953497|953498|953499|953734|953735|953736|956516|956517|956518|956519|956520|956521|956522|956523|956524|957187|957188|957189|957190|957191|957192|957193|957194|957195|957464|957465|958452|958459|959991|960086|960263|960534|960752|960802|960824|960927|960928|963223|964259|965298|965306|965314|971587|974521|976826|980751", "text": "Hypertrophic cardiomyopathy" }, { - "baseId": "15774|15775", + "upstreamId": "15774|15775", "text": "Recombination rate quantitative trait locus 1" }, { - "baseId": "15776|15777|15778|15779|252155", + "upstreamId": "15776|15777|15778|15779|252155", "text": "Iodotyrosine deiodination defect" }, { - "baseId": "15780|15782|15783|15784|15786|15787|70942|70943|70948|70951|98767|99436|131759|131760|131761|131766|131766|131768|131769|131772|131779|131780|177091|177556|177557|177559|191878|191878|191879|191983|195612|195613|207109|207110|207110|207111|207112|207113|212357|214170|214171|214172|214172|214173|214174|214175|214176|214177|214177|214178|214179|214180|214181|214182|214183|214184|214185|214186|214187|214188|214189|214190|214191|214192|214193|214194|214195|214196|239335|239335|239336|239340|239341|239342|251350|251352|251361|251362|251363|266978|267031|267183|269743|272794|272797|273009|274669|275428|292529|292604|292624|292625|292627|292629|292631|293976|293984|293991|294001|294003|294005|294011|294012|297363|297364|297376|297381|297387|297389|297392|297399|297400|297401|297411|297424|297439|297441|297442|297443|297444|297445|297446|297454|297458|297459|367617|367949|406406|406411|406413|421479|421481|421481|489382|489382|490151|493783|500929|513950|537655|559621|578428|586790|588876|588934|622340|622342|625795|632058|788767|788889|828900|828906|858589|890278|890279|890317|890318|890319|890320|890321|890322|890323|890324|890325|890326|890327|890328|890329|890330|891756|891757|891758|962154", + "upstreamId": "15780|15782|15783|15784|15786|15787|70942|70943|70948|70951|98767|99436|131759|131760|131761|131766|131766|131768|131769|131772|131779|131780|177091|177556|177557|177559|191878|191878|191879|191983|195612|195613|207109|207110|207110|207111|207112|207113|212357|214170|214171|214172|214172|214173|214174|214175|214176|214177|214177|214178|214179|214180|214181|214182|214183|214184|214185|214186|214187|214188|214189|214190|214191|214192|214193|214194|214195|214196|239335|239335|239336|239340|239341|239342|251350|251352|251361|251362|251363|266978|267031|267183|269743|272794|272797|273009|274669|275428|292529|292604|292624|292625|292627|292629|292631|293976|293984|293991|294001|294003|294005|294011|294012|297363|297364|297376|297381|297387|297389|297392|297399|297400|297401|297411|297424|297439|297441|297442|297443|297444|297445|297446|297454|297458|297459|367617|367949|406406|406411|406413|421479|421481|421481|489382|489382|490151|493783|500929|513950|537655|559621|578428|586790|588876|588934|622340|622342|625795|632058|788767|788889|828900|828906|858589|890278|890279|890317|890318|890319|890320|890321|890322|890323|890324|890325|890326|890327|890328|890329|890330|891756|891757|891758|962154", "text": "Joubert syndrome 9" }, { - "baseId": "15781|15786|16372|16384|40033|70936|70937|70938|70939|70940|70941|70942|70943|70944|70945|70946|70947|70948|70949|70951|70953|70954|70955|70956|99436|131759|131760|131761|131766|131766|131768|131769|131772|131779|131780|177091|177557|177559|191878|191878|191879|191983|191984|195612|195613|207109|207110|207111|207112|212357|214172|214177|214182|214185|214187|239335|239335|239336|239340|239341|239342|251350|251352|251361|251362|251363|266978|267031|267183|269743|272794|272797|273009|274669|275428|292529|292604|292624|292625|292627|292629|292631|293976|293984|293991|294001|294003|294005|294011|294012|297363|297364|297376|297381|297387|297389|297392|297399|297400|297401|297411|297424|297439|297441|297442|297443|297444|297445|297446|297454|297458|297459|367617|367949|406406|406411|406413|421479|421481|421481|489382|489382|490151|493783|500929|578428|586790|588876|588934|622340|622342|632058|678048|678049|828900|890278|890279|890317|890318|890319|890320|890321|890322|890323|890324|890325|890326|890327|890328|890329|890330|891756|891757|891758|906239|906281|962154|970207|970208|970209|970229|970230|970232", + "upstreamId": "15781|15786|16372|16384|40033|70936|70937|70938|70939|70940|70941|70942|70943|70944|70945|70946|70947|70948|70949|70951|70953|70954|70955|70956|99436|131759|131760|131761|131766|131766|131768|131769|131772|131779|131780|177091|177557|177559|191878|191878|191879|191983|191984|195612|195613|207109|207110|207111|207112|212357|214172|214177|214182|214185|214187|239335|239335|239336|239340|239341|239342|251350|251352|251361|251362|251363|266978|267031|267183|269743|272794|272797|273009|274669|275428|292529|292604|292624|292625|292627|292629|292631|293976|293984|293991|294001|294003|294005|294011|294012|297363|297364|297376|297381|297387|297389|297392|297399|297400|297401|297411|297424|297439|297441|297442|297443|297444|297445|297446|297454|297458|297459|367617|367949|406406|406411|406413|421479|421481|421481|489382|489382|490151|493783|500929|578428|586790|588876|588934|622340|622342|632058|678048|678049|828900|890278|890279|890317|890318|890319|890320|890321|890322|890323|890324|890325|890326|890327|890328|890329|890330|891756|891757|891758|906239|906281|962154|970207|970208|970209|970229|970230|970232", "text": "Meckel syndrome type 6" }, { - "baseId": "15783|15785|15786|15787", + "upstreamId": "15783|15785|15786|15787", "text": "COACH SYNDROME 2" }, { - "baseId": "15786|39799|39800|39891", + "upstreamId": "15786|39799|39800|39891", "text": "Joubert syndrome 9/15, digenic" }, { - "baseId": "15786|16108|16109|16111|16113|16115|16117|16372|16372|16376|16378|16381|16415|16416|16417|16422|16430|16431|16431|16432|40059|70940|70942|70951|70955|70955|71256|71263|71368|71372|71373|71377|71378|71379|71401|71401|71404|71406|71422|75583|90149|91061|99436|99438|99439|101414|101586|101587|101588|101589|101590|102062|102064|102064|102066|102422|102423|105736|105739|105739|105741|105746|105748|105749|105750|105753|106469|106470|106471|106546|106738|131759|131760|131761|131766|131766|131768|131769|131772|131774|131774|131776|131777|131779|131780|131781|131783|131784|131787|131787|131789|131790|131792|131794|131801|131803|131804|131806|131807|131809|131811|131812|131815|131817|131818|131819|131820|131821|131823|131824|131826|131827|131831|131833|131834|131836|131838|131839|140430|140431|140432|140433|152874|166167|168893|168894|168897|177011|177012|177013|177143|177274|177275|177286|177406|177407|177418|177556|177557|177558|177559|177569|177571|177572|177574|177624|178021|178098|181164|181405|181414|181425|186227|186262|186263|188889|188890|190671|190783|190880|191063|191068|191182|191183|191581|191704|191705|191726|191879|191930|191933|191981|191982|191983|191984|192033|192056|192150|192997|193138|193150|193638|193874|193875|193954|193955|193956|194205|194245|194246|194340|194464|194735|194758|195134|195422|195423|195425|195426|195612|195613|195754|195923|195923|205194|207109|207113|207935|207940|207998|208003|208284|208285|208288|208403|212357|212651|212652|212653|212654|212991|212992|213013|213014|213016|214172|214177|214179|214182|214183|214187|214189|214193|214194|214194|214196|214280|214322|214325|214326|214327|214328|214329|214330|214335|214336|214337|214338|214340|214357|214364|215459|215540|221800|221801|222203|222267|222267|222490|222686|222687|237090|237107|237317|237473|238059|238061|239335|239339|239340|239341|239342|240433|241226|241237|241249|241579|241580|241581|241582|242442|242615|242824|242825|243343|243906|247084|250938|251352|251360|253195|253203|253207|253212|254410|254445|254734|254740|254742|254760|254761|254762|254763|255806|255811|255814|255817|256098|256100|256102|256103|256285|256287|256291|257135|257137|257138|260117|260902|260903|260910|260915|260916|260925|260928|264538|264717|265351|265360|265487|265781|265876|266004|266616|266978|267031|267183|267823|268040|268059|268140|268166|268882|269093|269753|269778|270185|270311|270778|270862|271121|271215|271427|271440|271483|271597|271830|272079|272162|272794|272796|272797|272946|273009|273848|274283|274669|275342|275383|275392|275428|288796|288814|288821|289582|292582|292583|292584|292586|292623|292626|292784|292789|292796|294001|294003|294005|294012|297390|297399|297424|297442|306008|314370|315372|315373|315532|316255|316266|316275|318585|318587|318602|318604|318607|323293|323618|323621|323625|325641|325647|325653|325654|326794|326805|326807|326830|326833|326850|326864|326876|329161|329378|329753|329769|331024|332974|332978|332983|332990|332993|332994|334647|334649|334650|334653|334658|335303|335321|335322|341790|341797|341803|343285|343286|343287|343293|343298|345182|346576|346578|346583|346584|358457|359929|360055|360113|361484|363660|364169|367958|372581|372585|373261|373475|373481|375447|375452|375454|389204|393999|394140|396651|396747|398862|399209|401190|401253|401960|401967|401969|401974|402124|406406|406408|406410|406411|406417|408757|408759|408763|408764|408765|408768|408769|408770|408772|409650|409651|415498|421479|426028|429461|429462|429950|429991|431772|433122|438996|445093|445097|445099|445832|453023|453312|453406|453407|453805|453806|458103|458716|461608|461841|462217|462224|462475|462506|462513|462515|462516|462765|462769|463244|463251|463260|463263|463267|463268|463350|463355|463358|463360|466388|466493|466500|466502|467057|467368|468248|468480|468823|469855|470926|488833|489058|489186|489341|489361|489372|489382|489383|489462|490151|490265|490297|490946|491255|491410|491604|492196|492651|492965|493445|494220|496932|500929|504099|504663|504668|513323|514649|514650|520063|524078|524343|526672|526917|526957|527372|527391|527394|527399|527405|527407|527409|527410|527670|527673|527675|527917|527929|527931|527940|527942|530034|530041|530184|530188|530351|530360|530364|530564|530565|531270|531444|531533|536196|536908|536949|536950|548273|548558|548579|559619|559621|559782|561966|562548|563539|563542|563543|563546|565045|565737|565744|566400|567079|567083|567084|568182|568185|568186|568259|568264|570303|571310|571722|571728|572093|572096|572100|574534|582385|582740|582794|583685|583686|584729|584731|584821|585568|585858|586068|586349|587041|587551|588033|588426|588824|588934|588955|609863|620156|622340|622900|623705|623936|632054|632055|632056|632057|632058|632059|632060|637487|637488|637489|637490|637491|637492|637493|640633|641414|641415|641416|641417|641418|641419|641420|641421|641422|641423|641424|641425|641426|641427|641428|641429|641430|641431|641432|641433|641434|641435|644748|644749|644750|644751|644752|644753|644754|644755|644756|644757|645399|646234|646235|646236|646237|651165|651183|652345|652351|652570|653030|656190|667259|672018|672202|684284|684285|684313|684354|684355|684356|684357|684358|684359|684600|684601|684602|684603|684604|684605|684664|684665|684691|684692|684693|684821|685245|685384|685385|685386|685419|686506|686507|687916|687918|688057|688058|688059|688061|688062|688063|688064|688065|688066|688067|688068|688069|688070|688072|688073|688075|688607|688608|688609|688611|688612|688613|688614|688615|688795|688796|688797|688798|688799|688800|688801|688802|689064|690055|690056|690142|690143|690144|690180|690181|691524|693293|693294|693295|693296|693297|693299|693893|693894|693895|694136|695585|695699|695761|725297|725299|738885|744923|753623|753624|753625|755982|760254|769332|770950|770952|770953|776130|784272|784273|784484|785298|785301|785651|791285|795546|796876|797341|818725|819429|819457|820443|820449|820450|820451|820526|820527|820836|820837|820838|821109|828898|828899|828900|828901|828902|828903|828904|828905|828906|828907|828908|828909|828910|828911|835149|835150|835151|835152|839310|839311|839312|839313|840342|840343|840344|840345|840346|840347|840348|840349|840350|840351|840352|840353|840354|840355|840356|840357|840358|840359|840360|840361|840362|840363|840364|840365|840366|840367|840368|840369|840370|840371|840372|840373|840374|840375|840376|840377|840378|840379|840380|840381|840382|840383|840384|840385|840386|840387|840388|840389|840390|840391|840392|840393|840394|840395|840396|840397|840398|840399|840400|843965|843966|843967|843968|843969|843970|843971|843972|843973|843974|843975|843976|843977|843978|843979|843980|843981|843982|843983|843984|843985|843986|843987|843988|843989|843990|843991|843992|843993|843994|843995|843996|843997|843998|845654|845655|845656|845657|845658|845659|845660|845661|845662|845663|845664|845665|845666|845667|845668|847725|850970|851114|851493|851523|851525|851594|851959|852229|852501|852502|852506|852510|852654|852666|852702|852821|852823|852892|856758|856762|856766|856767|870502|870505|870508|870516|870517|875432|875437|877956|880551|890323|890328|906255|906258|906260|906276|919663|919664|920320|923448|923449|923450|926464|926752|926753|926754|926755|926756|926757|926758|926759|926760|926761|926762|926763|926764|926765|927849|927850|927851|927852|927853|927854|927855|927856|928087|928088|928386|928387|928388|928389|928390|932220|932221|932222|932223|932224|932225|932226|932227|932228|932229|932230|932231|932232|934444|934445|934446|934447|935937|936284|936285|936286|936287|936288|936289|936290|936291|936292|936293|936294|936295|936296|936297|936298|936299|937486|937487|937488|937489|937490|937491|937492|938036|938037|938038|938039|938040|938041|938042|938043|939960|940275|940360|941022|941023|943859|943860|943861|943862|943863|943864|943865|943866|943867|943868|943869|943870|943871|943872|943873|943874|943875|943876|943877|948179|948180|948181|948182|948183|948184|948185|948186|948187|948188|948189|948190|948191|948192|948193|948194|948195|948196|948197|948198|948199|948200|948201|948202|948203|948204|948205|948206|948207|948208|948209|948210|948211|948212|948213|948214|948215|948216|949431|949432|949433|949434|949435|949436|949437|949737|950046|950047|950048|950049|953695|953696|953697|953698|953699|953700|953701|953702|953703|953704|953705|953706|956961|956962|956963|956964|956965|956966|956967|956968|956969|956970|956971|956972|956973|956974|956975|956976|956977|956978|956979|956980|956981|956982|956983|956984|956985|956986|956987|957788|957789|957790|957791|957792|957793|957794|957795|957796|957797|957798|957799|957800|957801|957802|957803|957804|957805|957806|958008|958196|958197|958198|958199|958200|958201|958202|959714|960061|960062|960063|960064|960529|960530|960793|960890", + "upstreamId": "15786|16108|16109|16111|16113|16115|16117|16372|16372|16376|16378|16381|16415|16416|16417|16422|16430|16431|16431|16432|40059|70940|70942|70951|70955|70955|71256|71263|71368|71372|71373|71377|71378|71379|71401|71401|71404|71406|71422|75583|90149|91061|99436|99438|99439|101414|101586|101587|101588|101589|101590|102062|102064|102064|102066|102422|102423|105736|105739|105739|105741|105746|105748|105749|105750|105753|106469|106470|106471|106546|106738|131759|131760|131761|131766|131766|131768|131769|131772|131774|131774|131776|131777|131779|131780|131781|131783|131784|131787|131787|131789|131790|131792|131794|131801|131803|131804|131806|131807|131809|131811|131812|131815|131817|131818|131819|131820|131821|131823|131824|131826|131827|131831|131833|131834|131836|131838|131839|140430|140431|140432|140433|152874|166167|168893|168894|168897|177011|177012|177013|177143|177274|177275|177286|177406|177407|177418|177556|177557|177558|177559|177569|177571|177572|177574|177624|178021|178098|181164|181405|181414|181425|186227|186262|186263|188889|188890|190671|190783|190880|191063|191068|191182|191183|191581|191704|191705|191726|191879|191930|191933|191981|191982|191983|191984|192033|192056|192150|192997|193138|193150|193638|193874|193875|193954|193955|193956|194205|194245|194246|194340|194464|194735|194758|195134|195422|195423|195425|195426|195612|195613|195754|195923|195923|205194|207109|207113|207935|207940|207998|208003|208284|208285|208288|208403|212357|212651|212652|212653|212654|212991|212992|213013|213014|213016|214172|214177|214179|214182|214183|214187|214189|214193|214194|214194|214196|214280|214322|214325|214326|214327|214328|214329|214330|214335|214336|214337|214338|214340|214357|214364|215459|215540|221800|221801|222203|222267|222267|222490|222686|222687|237090|237107|237317|237473|238059|238061|239335|239339|239340|239341|239342|240433|241226|241237|241249|241579|241580|241581|241582|242442|242615|242824|242825|243343|243906|247084|250938|251352|251360|253195|253203|253207|253212|254410|254445|254734|254740|254742|254760|254761|254762|254763|255806|255811|255814|255817|256098|256100|256102|256103|256285|256287|256291|257135|257137|257138|260117|260902|260903|260910|260915|260916|260925|260928|264538|264717|265351|265360|265487|265781|265876|266004|266616|266978|267031|267183|267823|268040|268059|268140|268166|268882|269093|269753|269778|270185|270311|270778|270862|271121|271215|271427|271440|271483|271597|271830|272079|272162|272794|272796|272797|272946|273009|273848|274283|274669|275342|275383|275392|275428|288796|288814|288821|289582|292582|292583|292584|292586|292623|292626|292784|292789|292796|294001|294003|294005|294012|297390|297399|297424|297442|306008|314370|315372|315373|315532|316255|316266|316275|318585|318587|318602|318604|318607|323293|323618|323621|323625|325641|325647|325653|325654|326794|326805|326807|326830|326833|326850|326864|326876|329161|329378|329753|329769|331024|332974|332978|332983|332990|332993|332994|334647|334649|334650|334653|334658|335303|335321|335322|341790|341797|341803|343285|343286|343287|343293|343298|345182|346576|346578|346583|346584|358457|359929|360055|360113|361484|363660|364169|367958|372581|372585|373261|373475|373481|375447|375452|375454|389204|393999|394140|396651|396747|398862|399209|401190|401253|401960|401967|401969|401974|402124|406406|406408|406410|406411|406417|408757|408759|408763|408764|408765|408768|408769|408770|408772|409650|409651|415498|421479|426028|429461|429462|429950|429991|431772|433122|438996|445093|445097|445099|445832|453023|453312|453406|453407|453805|453806|458103|458716|461608|461841|462217|462224|462475|462506|462513|462515|462516|462765|462769|463244|463251|463260|463263|463267|463268|463350|463355|463358|463360|466388|466493|466500|466502|467057|467368|468248|468480|468823|469855|470926|488833|489058|489186|489341|489361|489372|489382|489383|489462|490151|490265|490297|490946|491255|491410|491604|492196|492651|492965|493445|494220|496932|500929|504099|504663|504668|513323|514649|514650|520063|524078|524343|526672|526917|526957|527372|527391|527394|527399|527405|527407|527409|527410|527670|527673|527675|527917|527929|527931|527940|527942|530034|530041|530184|530188|530351|530360|530364|530564|530565|531270|531444|531533|536196|536908|536949|536950|548273|548558|548579|559619|559621|559782|561966|562548|563539|563542|563543|563546|565045|565737|565744|566400|567079|567083|567084|568182|568185|568186|568259|568264|570303|571310|571722|571728|572093|572096|572100|574534|582385|582740|582794|583685|583686|584729|584731|584821|585568|585858|586068|586349|587041|587551|588033|588426|588824|588934|588955|609863|620156|622340|622900|623705|623936|632054|632055|632056|632057|632058|632059|632060|637487|637488|637489|637490|637491|637492|637493|640633|641414|641415|641416|641417|641418|641419|641420|641421|641422|641423|641424|641425|641426|641427|641428|641429|641430|641431|641432|641433|641434|641435|644748|644749|644750|644751|644752|644753|644754|644755|644756|644757|645399|646234|646235|646236|646237|651165|651183|652345|652351|652570|653030|656190|667259|672018|672202|684284|684285|684313|684354|684355|684356|684357|684358|684359|684600|684601|684602|684603|684604|684605|684664|684665|684691|684692|684693|684821|685245|685384|685385|685386|685419|686506|686507|687916|687918|688057|688058|688059|688061|688062|688063|688064|688065|688066|688067|688068|688069|688070|688072|688073|688075|688607|688608|688609|688611|688612|688613|688614|688615|688795|688796|688797|688798|688799|688800|688801|688802|689064|690055|690056|690142|690143|690144|690180|690181|691524|693293|693294|693295|693296|693297|693299|693893|693894|693895|694136|695585|695699|695761|725297|725299|738885|744923|753623|753624|753625|755982|760254|769332|770950|770952|770953|776130|784272|784273|784484|785298|785301|785651|791285|795546|796876|797341|818725|819429|819457|820443|820449|820450|820451|820526|820527|820836|820837|820838|821109|828898|828899|828900|828901|828902|828903|828904|828905|828906|828907|828908|828909|828910|828911|835149|835150|835151|835152|839310|839311|839312|839313|840342|840343|840344|840345|840346|840347|840348|840349|840350|840351|840352|840353|840354|840355|840356|840357|840358|840359|840360|840361|840362|840363|840364|840365|840366|840367|840368|840369|840370|840371|840372|840373|840374|840375|840376|840377|840378|840379|840380|840381|840382|840383|840384|840385|840386|840387|840388|840389|840390|840391|840392|840393|840394|840395|840396|840397|840398|840399|840400|843965|843966|843967|843968|843969|843970|843971|843972|843973|843974|843975|843976|843977|843978|843979|843980|843981|843982|843983|843984|843985|843986|843987|843988|843989|843990|843991|843992|843993|843994|843995|843996|843997|843998|845654|845655|845656|845657|845658|845659|845660|845661|845662|845663|845664|845665|845666|845667|845668|847725|850970|851114|851493|851523|851525|851594|851959|852229|852501|852502|852506|852510|852654|852666|852702|852821|852823|852892|856758|856762|856766|856767|870502|870505|870508|870516|870517|875432|875437|877956|880551|890323|890328|906255|906258|906260|906276|919663|919664|920320|923448|923449|923450|926464|926752|926753|926754|926755|926756|926757|926758|926759|926760|926761|926762|926763|926764|926765|927849|927850|927851|927852|927853|927854|927855|927856|928087|928088|928386|928387|928388|928389|928390|932220|932221|932222|932223|932224|932225|932226|932227|932228|932229|932230|932231|932232|934444|934445|934446|934447|935937|936284|936285|936286|936287|936288|936289|936290|936291|936292|936293|936294|936295|936296|936297|936298|936299|937486|937487|937488|937489|937490|937491|937492|938036|938037|938038|938039|938040|938041|938042|938043|939960|940275|940360|941022|941023|943859|943860|943861|943862|943863|943864|943865|943866|943867|943868|943869|943870|943871|943872|943873|943874|943875|943876|943877|948179|948180|948181|948182|948183|948184|948185|948186|948187|948188|948189|948190|948191|948192|948193|948194|948195|948196|948197|948198|948199|948200|948201|948202|948203|948204|948205|948206|948207|948208|948209|948210|948211|948212|948213|948214|948215|948216|949431|949432|949433|949434|949435|949436|949437|949737|950046|950047|950048|950049|953695|953696|953697|953698|953699|953700|953701|953702|953703|953704|953705|953706|956961|956962|956963|956964|956965|956966|956967|956968|956969|956970|956971|956972|956973|956974|956975|956976|956977|956978|956979|956980|956981|956982|956983|956984|956985|956986|956987|957788|957789|957790|957791|957792|957793|957794|957795|957796|957797|957798|957799|957800|957801|957802|957803|957804|957805|957806|958008|958196|958197|958198|958199|958200|958201|958202|959714|960061|960062|960063|960064|960529|960530|960793|960890", "text": "Meckel-Gruber syndrome" }, { - "baseId": "15786|16113|16115|16410|16414|16417|16418|16419|16420|16422|131766|190880|191878|207110|214172|214177|214280|214282|227327|237317|239335|239342|272794|272797|273848|343287|367617|401969|406411|409651|421481|425214|489341|489382|513544|530184|578428|622340|622342|962154", + "upstreamId": "15786|16113|16115|16410|16414|16417|16418|16419|16420|16422|131766|190880|191878|207110|214172|214177|214280|214282|227327|237317|239335|239342|272794|272797|273848|343287|367617|401969|406411|409651|421481|425214|489341|489382|513544|530184|578428|622340|622342|962154", "text": "Joubert syndrome with hepatic defect" }, { - "baseId": "15788|15789|15790|15791|39889|39890|90485|90486|136222|136223|136224|136225|136226|136227|136228|136229|186191|186193|186194|186196|191066|205775|208123|213114|213117|213118|213119|222376|222378|222379|222381|222384|226940|241860|241861|241862|241863|241864|241866|241867|272829|273690|273692|321029|321033|321038|321039|321041|321043|321049|321051|321054|321055|321056|321060|321062|321063|321068|321069|321073|321075|330125|330128|330133|330136|330148|330149|330152|330153|330156|330165|330172|330173|330178|330180|330181|330191|330192|330199|330206|330207|330215|330217|330218|330229|330230|336645|336646|336649|336650|336652|336654|336657|336658|336666|336675|336687|336691|336693|336698|336705|336706|336709|336718|338605|338611|338613|338633|338635|338638|338641|338643|338648|338658|338659|338684|338685|338688|338696|338699|338707|338708|338714|338715|338718|338725|338729|338730|338732|360165|373139|373140|376111|399868|399885|409145|421991|441671|463441|464463|481319|481320|482053|492296|504585|539055|540461|547169|547177|547180|547186|547192|547202|547207|547215|547222|547229|547231|547236|547239|547242|547246|547247|547253|547262|547324|547330|547333|547337|547339|547342|547343|547348|547350|547356|547466|547468|547469|547471|547498|547510|547513|547523|547528|547530|547532|547546|547557|547569|547573|547576|547578|547580|547582|547826|547831|547834|547837|547842|547845|547846|569002|572898|642648|642662|684506|684513|684518|684519|688343|688347|688351|688354|690089|784759|791421|791422|797057|861395|861396|872106|872107|872108|872109|872110|872111|872112|872113|872114|872115|872116|872117|872118|872119|872120|872121|872122|872123|872124|872125|872126|872127|872128|872129|872390|872391|872392|872393|872394|872395|872396|872397|872398|872399|872400|872401|872402|872403|872404|872405|872406|872407|872408|872409|872410|872411|872412|872413|872414|872415|872416|876432|876433|876434|876435|876436|876437|919541|919542|920604|970999", + "upstreamId": "15788|15789|15790|15791|39889|39890|90485|90486|136222|136223|136224|136225|136226|136227|136228|136229|186191|186193|186194|186196|191066|205775|208123|213114|213117|213118|213119|222376|222378|222379|222381|222384|226940|241860|241861|241862|241863|241864|241866|241867|272829|273690|273692|321029|321033|321038|321039|321041|321043|321049|321051|321054|321055|321056|321060|321062|321063|321068|321069|321073|321075|330125|330128|330133|330136|330148|330149|330152|330153|330156|330165|330172|330173|330178|330180|330181|330191|330192|330199|330206|330207|330215|330217|330218|330229|330230|336645|336646|336649|336650|336652|336654|336657|336658|336666|336675|336687|336691|336693|336698|336705|336706|336709|336718|338605|338611|338613|338633|338635|338638|338641|338643|338648|338658|338659|338684|338685|338688|338696|338699|338707|338708|338714|338715|338718|338725|338729|338730|338732|360165|373139|373140|376111|399868|399885|409145|421991|441671|463441|464463|481319|481320|482053|492296|504585|539055|540461|547169|547177|547180|547186|547192|547202|547207|547215|547222|547229|547231|547236|547239|547242|547246|547247|547253|547262|547324|547330|547333|547337|547339|547342|547343|547348|547350|547356|547466|547468|547469|547471|547498|547510|547513|547523|547528|547530|547532|547546|547557|547569|547573|547576|547578|547580|547582|547826|547831|547834|547837|547842|547845|547846|569002|572898|642648|642662|684506|684513|684518|684519|688343|688347|688351|688354|690089|784759|791421|791422|797057|861395|861396|872106|872107|872108|872109|872110|872111|872112|872113|872114|872115|872116|872117|872118|872119|872120|872121|872122|872123|872124|872125|872126|872127|872128|872129|872390|872391|872392|872393|872394|872395|872396|872397|872398|872399|872400|872401|872402|872403|872404|872405|872406|872407|872408|872409|872410|872411|872412|872413|872414|872415|872416|876432|876433|876434|876435|876436|876437|919541|919542|920604|970999", "text": "Hereditary spastic paraplegia 15" }, { - "baseId": "15788|16328|16901|17562|19385|20551|21139|21142|21144|21146|21847|21848|25029|25034|25038|34312|34314|39716|45788|45790|45791|47015|47016|48099|48103|49928|90045|98234|98825|98830|98831|98832|98835|98837|98839|98841|100771|100774|100778|100779|100782|101320|125787|133841|133842|133844|133845|133846|133847|133848|133851|133855|133856|133983|134467|134468|134473|134475|134476|134479|134585|134687|134688|134689|134819|134821|136222|136223|136224|136225|136226|136227|136228|136229|136231|136232|136233|140298|140299|141264|141265|141266|141268|141269|170043|170087|170184|177596|177804|177807|178073|181415|185964|186191|186192|186193|186194|186195|186196|190259|190457|190512|190869|190870|190871|190872|190874|190875|191066|191224|191333|191706|192393|192812|193192|194300|196179|205730|205775|207541|207542|208016|208017|208018|208019|208020|208021|208093|208123|208207|208211|208930|208933|209094|209099|210721|210722|211578|212627|212637|212827|213000|213114|213115|213116|213117|213118|213119|213120|213121|213122|213123|213496|215463|221134|221135|221751|221752|221764|221765|221766|221767|222007|222254|222255|222256|222376|222377|222378|222379|222380|222381|222382|222383|222384|236721|237018|237032|237066|237288|237341|237438|238214|238215|238216|238588|238589|239298|239299|240229|240391|240397|240398|240399|240622|240623|240624|240625|240626|240895|241565|241566|241567|241568|241569|241570|241578|241615|241616|241617|241618|241619|241621|241622|241623|241624|241625|241626|241627|241628|241629|241630|241631|241860|241861|241862|241863|241864|241865|241866|241867|241868|241869|241870|241871|241872|241873|242085|242086|242496|242497|242498|242499|242500|242501|243346|243348|243349|243766|247202|249754|254831|254832|254833|254834|254835|254837|254838|257776|260287|260290|260291|264659|265653|266622|267143|267448|268016|268019|268110|268890|269478|269480|270758|271448|271537|271538|271539|271562|271755|272475|272828|272829|272942|273690|273692|275105|275380|275474|283713|284398|289206|290000|290002|293065|293067|293504|305751|309761|311848|311849|314991|315004|315131|317461|318110|318116|318117|319230|319237|319247|319252|319260|319264|319270|319284|319296|321055|321060|321062|321064|321068|321069|323498|324135|324137|324152|326106|326120|326324|327774|327775|327792|327794|327804|327806|327809|327812|329709|330165|330173|330181|330192|330199|330206|330207|330217|330218|332269|333824|333843|333845|334033|334035|334038|334046|334070|334072|334075|334089|334090|335699|335701|335708|335718|335728|336056|336658|336666|336675|336688|336691|336705|336709|338613|338633|338635|338641|338643|338659|338685|338688|338696|338699|338707|338715|338718|338732|342329|342330|342333|343803|343951|343955|350017|358136|358163|358168|358169|358173|358182|358205|359461|360126|360839|360841|361245|361371|361637|361645|363667|366829|372509|372511|372513|373139|373140|373440|374643|375399|376111|376605|379600|392455|392456|392518|393346|394215|396136|396264|396560|396895|396898|397123|397127|397307|397310|397311|397470|399029|399033|399035|399038|399040|399104|399106|399111|399113|399119|399120|399121|399170|399174|399176|399266|399271|399279|399532|399614|399619|399623|399793|399868|399873|399875|399876|399879|399884|399885|400451|400456|400457|400466|400471|400758|400761|401319|401348|402131|403770|403987|404596|406132|409145|411567|411581|411586|415143|421214|421991|426116|426417|428827|429482|429555|429694|429698|429701|430693|430912|431012|431013|433654|438017|438410|439182|440762|441592|441595|441597|441603|441604|441607|441610|441611|441614|441616|441617|441622|441623|441624|441628|441629|441630|441670|441671|441672|441927|442233|442234|442238|442396|444298|445128|445130|445132|446548|446549|447506|448481|450382|452254|452828|453199|453201|454752|454754|454819|454820|454821|455316|455322|455327|455607|457827|458495|458498|458500|458511|458512|458517|458591|458889|458984|459234|459236|459239|459534|459537|459602|460086|460405|462398|462403|462406|462408|462410|462615|462618|462619|462622|462628|462633|462636|462642|462655|462905|462911|462921|462926|462927|462932|462939|462941|462943|462948|462952|463138|463139|463142|463147|463259|463385|463416|463441|463442|463445|463451|463469|463471|463483|463488|463490|463491|463492|463494|463500|464021|464030|464034|464046|464048|464053|464058|464347|464457|464458|464460|464463|464466|465202|465257|465258|465261|465548|465971|466693|468895|468896|469902|470577|470584|470585|471022|471725|471809|471988|472088|472089|472090|481826|482241|491151|492546|493324|495740|500859|502621|503154|503572|504357|504581|504584|504585|505089|505319|505750|505925|512752|513925|514220|514654|515478|515565|515566|517482|517562|519117|520933|520934|521169|521382|521390|523680|523878|524000|524150|524624|524626|524628|524854|525141|525143|525154|525987|526623|527326|527500|527514|527522|527524|527532|527533|527535|527755|527759|527761|527762|527768|527775|527779|527845|528016|528022|528024|528151|528272|528345|528350|528358|528491|528627|528704|528706|528710|528789|528790|528792|529039|529045|529546|530233|533599|533602|534353|534660|534702|534708|534931|540460|546812|547104|547239|547262|547356|547530|547557|549997|551404|551410|556794|556865|557163|559555|559710|560215|561862|561866|562531|562941|563364|563367|564040|564041|564050|564085|564962|564963|565108|565654|565655|565658|565869|565875|565876|565879|565880|565884|565915|566397|566607|566686|566695|567193|567199|567200|567223|568023|568155|568242|568244|568250|568278|568280|568282|568283|568285|568294|569000|569001|569002|569004|569007|569076|569084|569085|569092|569930|570452|571968|572061|572208|572228|572232|572237|572240|572241|572309|572310|572316|572317|572541|572583|572777|572894|572896|572898|573186|573416|573668|573669|574001|574002|574165|575305|575359|575360|575361|575428|575429|575430|575449|575450|576720|577302|577303|577309|577310|577321|577322|577325|577327|577328|580838|581002|589522|612972|627393|627394|627395|627396|627397|627398|627399|627400|627401|629256|629257|631015|631848|631849|631850|631851|631852|631853|631854|631855|633638|633639|633640|633641|633642|633643|633644|637194|637359|637360|637361|637362|637363|637364|637365|637366|637367|637368|638298|638299|638300|638301|638302|638303|638304|638305|638306|638307|638308|638309|638310|638311|638312|638313|639351|639352|640668|640669|641311|641312|641313|641314|641315|641316|641317|641318|641319|641320|641321|641322|641323|641324|641325|641588|641589|641590|641591|641592|641593|641594|641595|641596|641597|641598|641599|641600|641601|641602|641603|641604|641605|641606|641607|641608|641609|641610|641611|641612|641613|641614|641615|641616|641617|641618|641619|641620|641621|641622|641623|641624|641625|641626|641627|641628|641629|641630|641631|642349|642644|642645|642646|642647|642648|642649|642650|642651|642652|642653|642654|642655|642656|642657|642658|642659|642660|642661|642662|642663|642664|642665|642666|643423|643424|643425|643426|643427|643428|643429|643430|643431|643432|643433|644969|644970|644971|648173|648174|648175|648176|649797|649798|649799|649800|649801|649802|649803|650107|650108|650109|650202|650203|650204|651096|652048|652210|652270|652306|652429|652677|652724|652766|653778|656197|656256|677228|677233|677244|677260|683308|683309|683562|683604|683605|683606|683607|683608|683610|684026|684102|684103|684309|684337|684339|684340|684341|684343|684344|684345|684385|684386|684387|684388|684389|684391|684392|684393|684394|684395|684396|684397|684398|684399|684400|684401|684402|684403|684404|684405|684406|684407|684408|684409|684410|684411|684412|684414|684506|684507|684508|684509|684510|684511|684513|684514|684516|684517|684518|684519|684520|684545|684546|684547|684620|684965|684969|685023|685024|685025|685047|685128|685241|685400|685401|685402|685403|685404|685422|685485|685491|685632|686107|686351|686352|686475|686478|687914|688032|688033|688034|688037|688041|688101|688102|688103|688104|688106|688107|688109|688110|688111|688113|688114|688116|688117|688119|688120|688121|688122|688123|688124|688125|688126|688127|688128|688129|688130|688131|688132|688134|688136|688137|688138|688139|688140|688141|688142|688143|688144|688145|688146|688147|688148|688149|688150|688151|688152|688153|688155|688334|688335|688336|688338|688339|688340|688341|688342|688343|688344|688345|688346|688347|688348|688349|688350|688351|688352|688354|688355|688356|688460|688461|688644|688645|688648|689103|689104|689388|689390|689393|689397|689527|689528|689561|689562|689748|689953|690046|690047|690086|690088|690089|690110|691329|691792|691793|691797|691800|692519|693261|693329|693330|693333|693334|693335|693336|693337|693338|693339|693341|693342|693343|693344|693347|693348|693564|693565|693567|693568|693570|693571|693572|693573|693575|693576|693577|693578|693579|693580|693581|693582|693583|693584|693585|693586|693588|693704|695629|695630|695631|698942|702629|702630|702962|702963|703808|705099|709733|713871|713872|713873|725424|730641|738994|738995|738996|738999|739000|753174|753754|753757|753758|753759|758556|769421|769423|769424|769429|769430|769431|769433|769435|769437|769440|769880|769885|769887|776014|781103|784441|784546|784549|784551|784553|784559|784756|784757|784758|784759|784761|784762|784766|784771|786743|786866|786904|787830|793473|793476|796921|796922|796924|797163|797166|799186|801066|801137|801138|801512|819436|819973|820448|820550|820642|820643|820644|820645|822089|822091|823495|823496|823497|825538|825539|825540|827643|828647|828648|828649|828650|830539|830540|830541|830542|830543|830544|834728|834729|834730|834731|834732|834733|834734|834982|834983|834984|836148|836149|836150|836151|836152|837570|837571|837572|839377|839378|840146|840147|840148|840149|840150|840151|840152|840153|840154|840155|840156|840219|840586|840587|840588|840589|840590|840591|840592|840593|840594|840595|840596|840597|840598|840599|840600|840601|840602|840603|840604|840605|840606|840607|840608|840609|840610|840611|840612|840613|840614|840615|840616|840617|840618|841691|841692|841693|841694|841695|841696|841697|841698|841699|841700|841701|841702|841703|841704|841705|841706|841707|841708|841709|841710|841711|841712|842547|842548|842549|842550|842551|842552|842553|844284|844285|844286|844287|844288|847764|847765|847766|847767|849766|849767|849768|849769|850260|850261|850262|850263|851519|851577|852013|852697|852698|870949|870958|872403|872405|917133|921854|923080|923950|925195|925196|925593|925594|926692|926693|926694|926695|926696|926697|926814|926815|926816|926817|926818|926819|926820|926821|926822|927152|927153|927154|927155|927156|927377|927378|927379|927380|927381|927941|927942|927943|929609|929773|929810|930333|930334|930335|930336|931066|931809|931810|932110|932796|932797|932798|934299|934395|934396|934397|934398|934399|934773|934774|934775|934776|934777|935262|935263|936204|936205|936206|936207|936208|936209|936210|936211|936212|936213|936234|936357|936358|936359|936360|936361|936362|936363|936364|936697|936698|936699|936700|936701|936702|936703|937596|937597|938728|938729|938730|939477|939478|939759|940311|940544|941039|941092|942538|943382|944494|944495|944496|946059|946060|946157|946158|946636|947170|947809|948116|948117|948118|948276|948277|948278|948279|948280|948281|948282|948283|948284|948285|948642|948643|948644|948645|948646|948647|948948|949553|949554|949555|949556|949557|950820|950821|951653|951878|951879|952305|953622|953623|953624|954094|954095|955486|955848|955849|956912|957034|957035|957036|957037|957038|957039|957040|957041|957042|957043|957044|957045|957046|957047|957048|957275|957276|957277|957278|957279|957280|957281|957282|957283|957284|957285|957286|957287|957288|957289|957290|957291|957458|957871|957872|958655|958656|958657|959191|959192|959193|959618|960050|960366|960796|961993|974562", + "upstreamId": "15788|16328|16901|17562|19385|20551|21139|21142|21144|21146|21847|21848|25029|25034|25038|34312|34314|39716|45788|45790|45791|47015|47016|48099|48103|49928|90045|98234|98825|98830|98831|98832|98835|98837|98839|98841|100771|100774|100778|100779|100782|101320|125787|133841|133842|133844|133845|133846|133847|133848|133851|133855|133856|133983|134467|134468|134473|134475|134476|134479|134585|134687|134688|134689|134819|134821|136222|136223|136224|136225|136226|136227|136228|136229|136231|136232|136233|140298|140299|141264|141265|141266|141268|141269|170043|170087|170184|177596|177804|177807|178073|181415|185964|186191|186192|186193|186194|186195|186196|190259|190457|190512|190869|190870|190871|190872|190874|190875|191066|191224|191333|191706|192393|192812|193192|194300|196179|205730|205775|207541|207542|208016|208017|208018|208019|208020|208021|208093|208123|208207|208211|208930|208933|209094|209099|210721|210722|211578|212627|212637|212827|213000|213114|213115|213116|213117|213118|213119|213120|213121|213122|213123|213496|215463|221134|221135|221751|221752|221764|221765|221766|221767|222007|222254|222255|222256|222376|222377|222378|222379|222380|222381|222382|222383|222384|236721|237018|237032|237066|237288|237341|237438|238214|238215|238216|238588|238589|239298|239299|240229|240391|240397|240398|240399|240622|240623|240624|240625|240626|240895|241565|241566|241567|241568|241569|241570|241578|241615|241616|241617|241618|241619|241621|241622|241623|241624|241625|241626|241627|241628|241629|241630|241631|241860|241861|241862|241863|241864|241865|241866|241867|241868|241869|241870|241871|241872|241873|242085|242086|242496|242497|242498|242499|242500|242501|243346|243348|243349|243766|247202|249754|254831|254832|254833|254834|254835|254837|254838|257776|260287|260290|260291|264659|265653|266622|267143|267448|268016|268019|268110|268890|269478|269480|270758|271448|271537|271538|271539|271562|271755|272475|272828|272829|272942|273690|273692|275105|275380|275474|283713|284398|289206|290000|290002|293065|293067|293504|305751|309761|311848|311849|314991|315004|315131|317461|318110|318116|318117|319230|319237|319247|319252|319260|319264|319270|319284|319296|321055|321060|321062|321064|321068|321069|323498|324135|324137|324152|326106|326120|326324|327774|327775|327792|327794|327804|327806|327809|327812|329709|330165|330173|330181|330192|330199|330206|330207|330217|330218|332269|333824|333843|333845|334033|334035|334038|334046|334070|334072|334075|334089|334090|335699|335701|335708|335718|335728|336056|336658|336666|336675|336688|336691|336705|336709|338613|338633|338635|338641|338643|338659|338685|338688|338696|338699|338707|338715|338718|338732|342329|342330|342333|343803|343951|343955|350017|358136|358163|358168|358169|358173|358182|358205|359461|360126|360839|360841|361245|361371|361637|361645|363667|366829|372509|372511|372513|373139|373140|373440|374643|375399|376111|376605|379600|392455|392456|392518|393346|394215|396136|396264|396560|396895|396898|397123|397127|397307|397310|397311|397470|399029|399033|399035|399038|399040|399104|399106|399111|399113|399119|399120|399121|399170|399174|399176|399266|399271|399279|399532|399614|399619|399623|399793|399868|399873|399875|399876|399879|399884|399885|400451|400456|400457|400466|400471|400758|400761|401319|401348|402131|403770|403987|404596|406132|409145|411567|411581|411586|415143|421214|421991|426116|426417|428827|429482|429555|429694|429698|429701|430693|430912|431012|431013|433654|438017|438410|439182|440762|441592|441595|441597|441603|441604|441607|441610|441611|441614|441616|441617|441622|441623|441624|441628|441629|441630|441670|441671|441672|441927|442233|442234|442238|442396|444298|445128|445130|445132|446548|446549|447506|448481|450382|452254|452828|453199|453201|454752|454754|454819|454820|454821|455316|455322|455327|455607|457827|458495|458498|458500|458511|458512|458517|458591|458889|458984|459234|459236|459239|459534|459537|459602|460086|460405|462398|462403|462406|462408|462410|462615|462618|462619|462622|462628|462633|462636|462642|462655|462905|462911|462921|462926|462927|462932|462939|462941|462943|462948|462952|463138|463139|463142|463147|463259|463385|463416|463441|463442|463445|463451|463469|463471|463483|463488|463490|463491|463492|463494|463500|464021|464030|464034|464046|464048|464053|464058|464347|464457|464458|464460|464463|464466|465202|465257|465258|465261|465548|465971|466693|468895|468896|469902|470577|470584|470585|471022|471725|471809|471988|472088|472089|472090|481826|482241|491151|492546|493324|495740|500859|502621|503154|503572|504357|504581|504584|504585|505089|505319|505750|505925|512752|513925|514220|514654|515478|515565|515566|517482|517562|519117|520933|520934|521169|521382|521390|523680|523878|524000|524150|524624|524626|524628|524854|525141|525143|525154|525987|526623|527326|527500|527514|527522|527524|527532|527533|527535|527755|527759|527761|527762|527768|527775|527779|527845|528016|528022|528024|528151|528272|528345|528350|528358|528491|528627|528704|528706|528710|528789|528790|528792|529039|529045|529546|530233|533599|533602|534353|534660|534702|534708|534931|540460|546812|547104|547239|547262|547356|547530|547557|549997|551404|551410|556794|556865|557163|559555|559710|560215|561862|561866|562531|562941|563364|563367|564040|564041|564050|564085|564962|564963|565108|565654|565655|565658|565869|565875|565876|565879|565880|565884|565915|566397|566607|566686|566695|567193|567199|567200|567223|568023|568155|568242|568244|568250|568278|568280|568282|568283|568285|568294|569000|569001|569002|569004|569007|569076|569084|569085|569092|569930|570452|571968|572061|572208|572228|572232|572237|572240|572241|572309|572310|572316|572317|572541|572583|572777|572894|572896|572898|573186|573416|573668|573669|574001|574002|574165|575305|575359|575360|575361|575428|575429|575430|575449|575450|576720|577302|577303|577309|577310|577321|577322|577325|577327|577328|580838|581002|589522|612972|627393|627394|627395|627396|627397|627398|627399|627400|627401|629256|629257|631015|631848|631849|631850|631851|631852|631853|631854|631855|633638|633639|633640|633641|633642|633643|633644|637194|637359|637360|637361|637362|637363|637364|637365|637366|637367|637368|638298|638299|638300|638301|638302|638303|638304|638305|638306|638307|638308|638309|638310|638311|638312|638313|639351|639352|640668|640669|641311|641312|641313|641314|641315|641316|641317|641318|641319|641320|641321|641322|641323|641324|641325|641588|641589|641590|641591|641592|641593|641594|641595|641596|641597|641598|641599|641600|641601|641602|641603|641604|641605|641606|641607|641608|641609|641610|641611|641612|641613|641614|641615|641616|641617|641618|641619|641620|641621|641622|641623|641624|641625|641626|641627|641628|641629|641630|641631|642349|642644|642645|642646|642647|642648|642649|642650|642651|642652|642653|642654|642655|642656|642657|642658|642659|642660|642661|642662|642663|642664|642665|642666|643423|643424|643425|643426|643427|643428|643429|643430|643431|643432|643433|644969|644970|644971|648173|648174|648175|648176|649797|649798|649799|649800|649801|649802|649803|650107|650108|650109|650202|650203|650204|651096|652048|652210|652270|652306|652429|652677|652724|652766|653778|656197|656256|677228|677233|677244|677260|683308|683309|683562|683604|683605|683606|683607|683608|683610|684026|684102|684103|684309|684337|684339|684340|684341|684343|684344|684345|684385|684386|684387|684388|684389|684391|684392|684393|684394|684395|684396|684397|684398|684399|684400|684401|684402|684403|684404|684405|684406|684407|684408|684409|684410|684411|684412|684414|684506|684507|684508|684509|684510|684511|684513|684514|684516|684517|684518|684519|684520|684545|684546|684547|684620|684965|684969|685023|685024|685025|685047|685128|685241|685400|685401|685402|685403|685404|685422|685485|685491|685632|686107|686351|686352|686475|686478|687914|688032|688033|688034|688037|688041|688101|688102|688103|688104|688106|688107|688109|688110|688111|688113|688114|688116|688117|688119|688120|688121|688122|688123|688124|688125|688126|688127|688128|688129|688130|688131|688132|688134|688136|688137|688138|688139|688140|688141|688142|688143|688144|688145|688146|688147|688148|688149|688150|688151|688152|688153|688155|688334|688335|688336|688338|688339|688340|688341|688342|688343|688344|688345|688346|688347|688348|688349|688350|688351|688352|688354|688355|688356|688460|688461|688644|688645|688648|689103|689104|689388|689390|689393|689397|689527|689528|689561|689562|689748|689953|690046|690047|690086|690088|690089|690110|691329|691792|691793|691797|691800|692519|693261|693329|693330|693333|693334|693335|693336|693337|693338|693339|693341|693342|693343|693344|693347|693348|693564|693565|693567|693568|693570|693571|693572|693573|693575|693576|693577|693578|693579|693580|693581|693582|693583|693584|693585|693586|693588|693704|695629|695630|695631|698942|702629|702630|702962|702963|703808|705099|709733|713871|713872|713873|725424|730641|738994|738995|738996|738999|739000|753174|753754|753757|753758|753759|758556|769421|769423|769424|769429|769430|769431|769433|769435|769437|769440|769880|769885|769887|776014|781103|784441|784546|784549|784551|784553|784559|784756|784757|784758|784759|784761|784762|784766|784771|786743|786866|786904|787830|793473|793476|796921|796922|796924|797163|797166|799186|801066|801137|801138|801512|819436|819973|820448|820550|820642|820643|820644|820645|822089|822091|823495|823496|823497|825538|825539|825540|827643|828647|828648|828649|828650|830539|830540|830541|830542|830543|830544|834728|834729|834730|834731|834732|834733|834734|834982|834983|834984|836148|836149|836150|836151|836152|837570|837571|837572|839377|839378|840146|840147|840148|840149|840150|840151|840152|840153|840154|840155|840156|840219|840586|840587|840588|840589|840590|840591|840592|840593|840594|840595|840596|840597|840598|840599|840600|840601|840602|840603|840604|840605|840606|840607|840608|840609|840610|840611|840612|840613|840614|840615|840616|840617|840618|841691|841692|841693|841694|841695|841696|841697|841698|841699|841700|841701|841702|841703|841704|841705|841706|841707|841708|841709|841710|841711|841712|842547|842548|842549|842550|842551|842552|842553|844284|844285|844286|844287|844288|847764|847765|847766|847767|849766|849767|849768|849769|850260|850261|850262|850263|851519|851577|852013|852697|852698|870949|870958|872403|872405|917133|921854|923080|923950|925195|925196|925593|925594|926692|926693|926694|926695|926696|926697|926814|926815|926816|926817|926818|926819|926820|926821|926822|927152|927153|927154|927155|927156|927377|927378|927379|927380|927381|927941|927942|927943|929609|929773|929810|930333|930334|930335|930336|931066|931809|931810|932110|932796|932797|932798|934299|934395|934396|934397|934398|934399|934773|934774|934775|934776|934777|935262|935263|936204|936205|936206|936207|936208|936209|936210|936211|936212|936213|936234|936357|936358|936359|936360|936361|936362|936363|936364|936697|936698|936699|936700|936701|936702|936703|937596|937597|938728|938729|938730|939477|939478|939759|940311|940544|941039|941092|942538|943382|944494|944495|944496|946059|946060|946157|946158|946636|947170|947809|948116|948117|948118|948276|948277|948278|948279|948280|948281|948282|948283|948284|948285|948642|948643|948644|948645|948646|948647|948948|949553|949554|949555|949556|949557|950820|950821|951653|951878|951879|952305|953622|953623|953624|954094|954095|955486|955848|955849|956912|957034|957035|957036|957037|957038|957039|957040|957041|957042|957043|957044|957045|957046|957047|957048|957275|957276|957277|957278|957279|957280|957281|957282|957283|957284|957285|957286|957287|957288|957289|957290|957291|957458|957871|957872|958655|958656|958657|959191|959192|959193|959618|960050|960366|960796|961993|974562", "text": "Spastic paraplegia" }, { - "baseId": "15792|15793|15794|15795|15796|213536|389487|508777|508778|508779|508780|508781|512894|918754", + "upstreamId": "15792|15793|15794|15795|15796|213536|389487|508777|508778|508779|508780|508781|512894|918754", "text": "Parkinson disease 11" }, { - "baseId": "15797|15798|15799|49854|136058|136072|136074|136079|136083|207507|207512|207526|237027|304433|308154|308163|308166|308167|313190|313324|428773|428775|428783|428794|428796|538397|579537|620803|788823|900425|900426|900427|900428|904189|965972|966035", + "upstreamId": "15797|15798|15799|49854|136058|136072|136074|136079|136083|207507|207512|207526|237027|304433|308154|308163|308166|308167|313190|313324|428773|428775|428783|428794|428796|538397|579537|620803|788823|900425|900426|900427|900428|904189|965972|966035", "text": "Mental retardation, autosomal recessive 13" }, { - "baseId": "15800|15801|15802", + "upstreamId": "15800|15801|15802", "text": "Homocystinuria, cblD type, variant 1" }, { - "baseId": "15803|15804|15805", + "upstreamId": "15803|15804|15805", "text": "Methylmalonic aciduria, cblD type, variant 2" }, { - "baseId": "15803|15804|15805|15806|15807|15808|199983|199984|199985|215216|216021|216022|216023|216024|270084|282028|282035|282037|282047|282049|282051|282052|282710|282712|282720|282730|282731|282733|284333|284334|284337|284556|284557|284564|284565|284566|363942|365441|365640|480572|538949|628488|628489|628490|650836|690749|719280|719281|762214|762215|774585|790054|819051|819052|824812|824813|824814|824815|850791|881123|881124|881125|881126|882805|882806|942250|942251|952639|970198", + "upstreamId": "15803|15804|15805|15806|15807|15808|199983|199984|199985|215216|216021|216022|216023|216024|270084|282028|282035|282037|282047|282049|282051|282052|282710|282712|282720|282730|282731|282733|284333|284334|284337|284556|284557|284564|284565|284566|363942|365441|365640|480572|538949|628488|628489|628490|650836|690749|719280|719281|762214|762215|774585|790054|819051|819052|824812|824813|824814|824815|850791|881123|881124|881125|881126|882805|882806|942250|942251|952639|970198", "text": "Methylmalonic acidemia with homocystinuria cblD" }, { - "baseId": "15809|15810|15811|15812|15813|15814|15815|15816|15817|15818|15819|15820|39887|253062|253064|481381|790784", + "upstreamId": "15809|15810|15811|15812|15813|15814|15815|15816|15817|15818|15819|15820|39887|253062|253064|481381|790784", "text": "Amelogenesis imperfecta, hypocalcification type" }, { - "baseId": "15821|15822|224867", + "upstreamId": "15821|15822|224867", "text": "Myopathy with lactic acidosis, hereditary" }, { - "baseId": "15823|920287", + "upstreamId": "15823|920287", "text": "Cataract, juvenile, with microcornea and glucosuria" }, { - "baseId": "15824|102140|102141|192557|204228|204229|204230|204231|204232|204233|215289|271294|291191|291195|291200|291202|291203|291205|291209|291212|291213|291218|291219|291223|291224|291229|291230|291234|291245|291257|291259|292152|292153|292155|292160|292161|292162|292164|292166|292168|292207|292217|292223|292225|292226|292228|292231|292232|295593|295595|295604|295619|295620|295622|295628|295630|295633|295635|295643|295644|295654|295663|295664|295726|295729|295743|295770|295773|295776|295778|295784|295786|295789|295790|295797|295798|295810|295813|295814|368763|453437|481700|486813|519582|538361|559660|620767|626137|631744|686458|698249|708987|720577|720578|720579|734208|748442|798535|816451|889434|889435|889436|889437|889438|889439|889440|889441|889442|889443|889444|889445|889446|889447|889448|889449|889450|889451|889452|889453|889454|889455|889456|889457|889458|889459|889460|889461|889462|889463|889464|889465|889466|889467|889468|889469|889470|889471|891693|918849", + "upstreamId": "15824|102140|102141|192557|204228|204229|204230|204231|204232|204233|215289|271294|291191|291195|291200|291202|291203|291205|291209|291212|291213|291218|291219|291223|291224|291229|291230|291234|291245|291257|291259|292152|292153|292155|292160|292161|292162|292164|292166|292168|292207|292217|292223|292225|292226|292228|292231|292232|295593|295595|295604|295619|295620|295622|295628|295630|295633|295635|295643|295644|295654|295663|295664|295726|295729|295743|295770|295773|295776|295778|295784|295786|295789|295790|295797|295798|295810|295813|295814|368763|453437|481700|486813|519582|538361|559660|620767|626137|631744|686458|698249|708987|720577|720578|720579|734208|748442|798535|816451|889434|889435|889436|889437|889438|889439|889440|889441|889442|889443|889444|889445|889446|889447|889448|889449|889450|889451|889452|889453|889454|889455|889456|889457|889458|889459|889460|889461|889462|889463|889464|889465|889466|889467|889468|889469|889470|889471|891693|918849", "text": "Congenital disorder of glycosylation type 1N" }, { - "baseId": "15825|15826|15827|15828|551762|562669", + "upstreamId": "15825|15826|15827|15828|551762|562669", "text": "Brugada syndrome 2" }, { - "baseId": "15825|33098|40426|52937|57473|78586|78934|188506", + "upstreamId": "15825|33098|40426|52937|57473|78586|78934|188506", "text": "Death in infancy" }, { - "baseId": "15825|15826|15827|15828|17509|20581|24408|24409|24410|24413|24414|24415|24416|24416|24419|24420|24422|24424|24426|24428|24429|24430|24431|24432|24434|24435|24436|24437|24438|24439|24440|24441|24446|28516|29472|32673|32674|38446|38447|38448|39000|39001|39003|39004|44159|44160|45420|45421|45422|45424|45425|45426|45426|45427|45428|48043|48044|51826|54084|54200|54566|55786|56025|56038|56054|56413|56430|56594|56752|57443|57444|57445|57446|57448|57448|57449|57450|57450|57451|57453|57454|57455|57456|57457|57458|57458|57459|57460|57461|57462|57463|57464|57467|57469|57470|57471|57472|57473|57474|57475|57476|57477|57478|57478|57479|57481|78315|78450|78452|78453|78520|78521|78522|78523|78524|78525|78526|78527|78528|78529|78530|78531|78532|78533|78534|78535|78536|78537|78538|78539|78540|78543|78547|78548|78550|78551|78552|78553|78554|78555|78556|78557|78558|78559|78560|78562|78563|78565|78566|78567|78568|78569|78570|78571|78572|78573|78574|78576|78577|78578|78579|78581|78582|78586|78587|78588|78589|78590|78591|78592|78593|78595|78596|78598|78599|78600|78602|78603|78605|78606|78607|78608|78609|78610|78612|78613|78614|78615|78616|78617|78618|78619|78621|78622|78624|78626|78627|78629|78629|78630|78631|78632|78635|78636|78637|78638|78639|78640|78641|78642|78643|78644|78645|78647|78648|78649|78650|78651|78652|78653|78654|78655|78656|78657|78658|78659|78660|78661|78662|78664|78665|78666|78666|78667|78668|78669|78670|78671|78673|78674|78675|78676|78677|78678|78679|78680|78682|78683|78684|78685|78686|78687|78688|78690|78691|78692|78696|78697|78702|78703|78704|78706|78707|78708|78709|78710|78711|78712|78714|78715|78716|78718|78719|78720|78721|78723|78724|78726|78727|78728|78729|78730|78731|78732|78735|78737|78739|78740|78742|78743|78744|78745|78746|78747|78748|78749|78750|78751|78752|78753|78754|78755|78756|78757|78759|78760|78761|78762|78763|78764|78765|78766|78767|78768|78769|78770|78772|78773|78774|78775|78776|78777|78778|78779|78781|78782|78788|78790|78791|78792|78795|78796|78797|78798|78802|78803|78804|78806|78807|78809|78810|78811|78812|78813|78814|78817|78819|78820|78821|78823|78826|78828|78829|78831|78832|78834|78835|78839|78840|78842|78843|78844|78845|78847|78848|78849|78850|78851|78852|78855|78856|78857|78858|78859|78860|78862|78863|78868|78870|78872|78875|78876|78877|78878|78880|78883|78886|78889|78890|78891|78892|78893|78895|78897|78899|78900|78901|78902|78903|78904|78906|78907|78908|78909|78910|78911|78912|78913|78914|78916|78919|78920|78921|78922|78923|78924|78925|78926|78927|78928|78930|78933|78934|78936|78937|78938|78939|78940|78941|78942|78944|78945|78946|78947|78949|78950|78951|78952|78953|85943|85960|94568|99318|101299|101301|101302|101304|136655|140315|140338|141194|141700|141701|142741|142743|142744|142745|142746|142747|142750|142751|142752|142753|142754|142755|142757|142758|142761|142762|142764|142766|142769|142770|167406|171119|171120|171121|171122|171123|172171|173777|173778|173779|173781|173782|173783|173784|173786|173788|173788|173790|173792|173793|173917|173919|173920|173922|173923|173924|173926|173929|173931|173932|173935|175577|175867|178052|178515|178517|178518|178522|178523|178526|178538|178582|178650|178709|178752|186012|186018|187213|188323|188324|188325|188326|188327|188328|188477|188530|188534|188551|188601|188620|189209|189211|189212|189215|189217|189219|189341|189769|189965|191451|193308|196826|196827|196828|196831|196832|196833|196834|196838|196839|196840|196841|196842|196843|196849|196852|196860|196862|196864|196868|196876|196880|196881|196886|196886|196888|196889|196891|196893|196897|196903|196904|196904|196908|196909|196911|196912|196916|196917|196918|196919|196921|196922|196924|196926|196927|196928|196929|196930|196932|196940|196941|196942|196943|196944|196950|196953|196957|196958|196959|196963|196964|196965|196966|196967|196968|196969|196971|196973|196976|196978|196983|196984|196991|196992|196994|196995|196997|196998|197003|197008|197008|197014|197016|198761|204196|212332|212333|212334|212335|212336|212615|212616|212618|212994|214484|221413|221414|221415|221416|221417|221418|221740|221741|221742|222246|222247|224175|224266|224268|224269|224270|224271|224272|224276|224277|224279|224296|224355|224409|227847|227848|229044|229045|229046|229049|229050|229052|229053|229056|229058|229059|229060|229061|236759|236912|239138|239139|239194|239195|239196|239197|239198|239199|239200|239203|239204|239205|239206|239207|239208|239210|239211|239212|239213|239214|239216|239217|239218|239219|239220|239221|239222|239223|239224|239226|239227|239228|239229|239230|239232|239233|239234|239235|239236|239291|239292|240181|240182|243379|243718|243729|246944|246944|248629|251091|251105|251243|252942|252943|258307|258310|258311|258313|258314|258315|258318|258321|258473|258478|258483|258486|258720|258722|258742|262402|265899|273617|289959|290242|290243|290244|290254|290271|290272|290275|290276|290282|290699|291029|291030|291039|291040|291049|291066|291078|291083|291086|291087|291088|291095|293878|293883|294310|294320|294337|294342|294384|294386|294387|294391|294399|294401|294413|294701|294707|294717|294718|294722|294738|294749|309998|310014|310022|310024|312954|312972|313011|315022|315024|315048|315051|315054|315147|315154|316516|316781|316790|319012|321072|321081|321088|321091|321617|321618|321621|321639|321642|321942|321980|324278|325175|325976|325982|326015|328027|328054|328058|329272|329280|329302|330195|330349|331818|353125|353126|359672|359840|359946|362737|362738|363675|367106|367188|367199|367205|367206|367213|367217|367221|367224|367368|367467|367468|367470|367482|367483|367492|367499|367503|367505|367515|367522|367526|367530|368522|368524|368539|368546|368572|368576|368585|371366|371391|373124|378276|389579|393151|393330|393333|393409|393511|393529|393530|393534|393537|393540|393541|393544|393547|393549|393553|393554|393558|393559|393560|393561|393562|393566|393570|393571|393574|393575|393576|393577|393578|393579|393581|393583|393586|393587|393588|393589|393593|393594|393602|393603|393607|393608|393611|393615|393616|393618|393619|393624|393747|393748|393752|393753|393758|393763|393767|393775|393778|393779|393791|393792|393802|393803|393806|393808|393810|393812|393816|393818|393822|393825|393826|393828|393829|393945|393947|393952|393955|393965|393966|393967|393970|393976|393979|393982|393985|393987|393989|393994|393998|394003|394004|394008|394009|394012|394016|394018|394024|394025|394031|394180|395786|396035|396040|396047|396056|396162|396164|396435|396469|397187|398884|402722|403304|404765|406265|406269|406273|406274|406276|406277|406280|406282|406284|406287|406288|406291|407265|407267|407835|414937|418202|419283|421435|421436|421438|424892|425551|425552|425554|425558|425560|439143|443426|443427|443428|443429|443432|443433|443436|443439|443440|443441|443443|443446|449729|451559|452057|452156|452159|452166|452173|452175|452179|452180|452182|452183|452194|452195|452200|452202|452210|452218|452219|452228|452245|452249|452256|452260|452261|452264|452266|452273|452278|452279|452281|452286|452296|452297|452301|452310|452319|452320|452321|452322|452323|452325|452327|452395|452396|452417|452419|452421|452422|452424|452437|452445|452448|452449|452451|452452|452454|452456|452457|452460|452468|452470|452471|452473|452478|452479|452481|452483|452496|452498|452500|452526|452530|452532|452533|452539|452540|452544|452545|452547|452549|452551|452553|452555|452561|452566|452572|452577|452579|452586|452587|452589|452591|452597|452599|452603|452606|452609|452611|452613|452615|452619|452694|452695|452696|452697|452709|452713|452714|452722|452726|452729|452746|452751|452756|452758|452761|452767|452769|452770|452775|452778|452780|452795|452797|452800|452805|452812|453454|456929|456933|456956|457478|457482|457483|457490|457605|457941|457943|457947|470447|471678|472045|481142|481689|485930|487028|487099|488137|495184|496298|496299|496342|496343|500195|500217|500235|500237|500439|500474|500475|500476|500680|500688|500696|500732|500802|500804|500808|501816|501822|501827|503755|504790|509576|509578|509585|509589|509591|509592|509594|509597|509599|509600|509625|509902|509907|509912|511073|511075|511076|511078|511080|514345|514483|517062|517485|518826|518892|519074|519094|519095|519115|519118|519120|519138|519144|519146|519153|519154|519158|519160|519164|519170|519171|519177|519179|519185|519192|519194|519199|519202|519203|519208|519210|519211|519213|519214|519215|519217|519221|519224|519238|519239|519244|519245|519246|519247|519248|519252|519267|519268|519270|519349|519352|519358|519359|519360|519363|519365|519367|519369|519371|519374|519375|519376|519379|519380|519381|519383|519389|519391|519392|519393|519394|519397|519398|519401|519402|519404|519405|519406|519407|519412|519413|519418|519420|519421|519422|519424|519426|519432|519434|519440|519442|519444|519455|519456|519466|519470|519473|519477|519478|519481|519585|519591|519646|519651|519855|519857|522836|522841|522843|523068|523281|523394|527030|527255|527556|534467|534476|551709|551768|558712|558714|558878|558880|558918|558920|558922|558924|558926|558928|558930|558932|558934|558936|558938|558940|558942|558944|558946|558948|558950|558952|558954|558956|558958|558960|558962|558964|558966|558968|558970|559425|559457|559459|559461|559463|559465|559467|559469|559471|559473|559475|559477|559479|559481|559483|559485|559487|559489|559664|561372|561379|561449|561451|561458|561460|561462|561470|561477|561480|561481|561489|561491|561493|561498|561499|561503|561509|561513|561517|561519|561527|561793|562198|562211|562669|562747|562748|562750|562759|562764|562786|562788|562791|562792|562793|562798|562799|562803|562805|562807|562812|562836|562839|562844|562846|562851|562854|562869|563284|564420|564421|565375|565383|567132|567945|572167|574247|578602|589830|616893|616898|616899|616904|616905|616909|616910|616923|621152|631169|631170|631171|631172|631271|631272|631273|631274|631275|631276|631277|631278|631279|631280|631281|631282|631283|631284|631285|631286|631287|631288|631289|631290|631291|631292|631293|631294|631295|631296|631297|631298|631299|631300|631301|631302|631303|631304|631305|631306|631307|631308|631309|631310|631311|631312|631313|631314|631315|631316|631317|631318|631319|631320|631321|631322|631323|631324|631325|631326|631327|631328|631329|631330|631331|631332|631333|631334|631335|631336|631337|631338|631339|631340|631341|631342|631343|631344|631345|631346|631347|631348|631349|631350|631351|631352|631353|631354|631355|631356|631762|631763|631764|631765|631766|636351|636352|636353|636354|636355|641016|641017|641018|650994|650998|651067|651087|651135|651185|651239|654321|654323|655541|655545|672398|672454|679383|679435|679465|680064|683575|683576|683577|683578|683579|683580|683581|683583|683585|683586|683587|683939|685145|685148|685227|686389|686399|686400|686401|686402|686404|686406|686407|686409|686411|686412|686423|687118|689742|691384|691385|691387|691390|691391|691392|691394|691396|691398|695201|698063|698064|708822|748225|748228|748229|748231|748232|763854|763856|763858|763859|763860|763867|763874|769042|773697|781655|781666|781667|787298|793006|795408|795422|799007|818751|819398|819918|819919|827895|827896|827897|827898|827899|827982|827983|827984|827985|827986|827987|827988|827989|827990|827991|827992|827993|827994|827995|827996|827997|827998|827999|828000|828001|828002|828003|828004|828005|828006|828007|828008|828009|828010|828011|828012|828013|828014|828015|828016|828017|828018|828019|828020|828021|828022|828023|828024|828025|828026|828027|828028|828029|828030|828031|828032|828033|828034|828035|828036|828037|828038|828039|828040|828041|828042|828043|828044|828045|828046|828047|828048|828049|828050|828051|828052|828053|828054|828055|828056|828057|828058|828059|828060|828061|828062|828063|828064|828065|828066|828067|828068|828069|828070|828071|828072|828073|828074|828075|828076|828077|828078|828079|828080|828081|828082|828083|828084|828085|828086|828087|828088|828089|828090|828091|828092|828093|828094|828095|828096|828097|828098|828099|828100|833850|833851|833852|833853|833854|850673|850674|850676|850677|850678|850679|850680|850682|850936|850938|851045|851047|851049|851051|851562|851660|858252|858267|906315|906316|906317|906323|909418|909433|909500|909523|909562|909590|909603|909632|909633|909636|909645|923159|923160|923161|923162|923163|923164|923165|923166|923167|923168|923169|923170|923171|923172|923173|923174|923175|923176|923177|923178|923179|923180|923181|923182|923183|923184|923185|923186|923331|923332|923333|923334|924910|924911|924912|931912|931913|931914|931915|931916|931917|931918|931919|931920|931921|931922|931923|931924|931925|931926|931927|931928|931929|931930|931931|931932|931933|931934|931935|931936|931937|931938|931939|931940|931941|931942|931943|931944|931945|932073|932074|934000|934001|939401|939937|939938|940764|943474|943475|943506|943507|943508|943509|943510|943511|943512|943513|943514|943515|943516|943517|943518|943519|943520|943521|943522|943523|943524|943525|943526|943527|943528|943529|943530|943531|943532|943690|943691|945764|945765|947958|951574|953431|953432|953433|953434|953449|953450|953451|953452|953453|953454|953455|953456|953457|953458|953459|953460|953461|953462|953463|953464|953465|953466|953467|953468|953469|953470|953580|953581|955218|959154|959697|959865|965311|980667|980669|980670|980671|980720", + "upstreamId": "15825|15826|15827|15828|17509|20581|24408|24409|24410|24413|24414|24415|24416|24416|24419|24420|24422|24424|24426|24428|24429|24430|24431|24432|24434|24435|24436|24437|24438|24439|24440|24441|24446|28516|29472|32673|32674|38446|38447|38448|39000|39001|39003|39004|44159|44160|45420|45421|45422|45424|45425|45426|45426|45427|45428|48043|48044|51826|54084|54200|54566|55786|56025|56038|56054|56413|56430|56594|56752|57443|57444|57445|57446|57448|57448|57449|57450|57450|57451|57453|57454|57455|57456|57457|57458|57458|57459|57460|57461|57462|57463|57464|57467|57469|57470|57471|57472|57473|57474|57475|57476|57477|57478|57478|57479|57481|78315|78450|78452|78453|78520|78521|78522|78523|78524|78525|78526|78527|78528|78529|78530|78531|78532|78533|78534|78535|78536|78537|78538|78539|78540|78543|78547|78548|78550|78551|78552|78553|78554|78555|78556|78557|78558|78559|78560|78562|78563|78565|78566|78567|78568|78569|78570|78571|78572|78573|78574|78576|78577|78578|78579|78581|78582|78586|78587|78588|78589|78590|78591|78592|78593|78595|78596|78598|78599|78600|78602|78603|78605|78606|78607|78608|78609|78610|78612|78613|78614|78615|78616|78617|78618|78619|78621|78622|78624|78626|78627|78629|78629|78630|78631|78632|78635|78636|78637|78638|78639|78640|78641|78642|78643|78644|78645|78647|78648|78649|78650|78651|78652|78653|78654|78655|78656|78657|78658|78659|78660|78661|78662|78664|78665|78666|78666|78667|78668|78669|78670|78671|78673|78674|78675|78676|78677|78678|78679|78680|78682|78683|78684|78685|78686|78687|78688|78690|78691|78692|78696|78697|78702|78703|78704|78706|78707|78708|78709|78710|78711|78712|78714|78715|78716|78718|78719|78720|78721|78723|78724|78726|78727|78728|78729|78730|78731|78732|78735|78737|78739|78740|78742|78743|78744|78745|78746|78747|78748|78749|78750|78751|78752|78753|78754|78755|78756|78757|78759|78760|78761|78762|78763|78764|78765|78766|78767|78768|78769|78770|78772|78773|78774|78775|78776|78777|78778|78779|78781|78782|78788|78790|78791|78792|78795|78796|78797|78798|78802|78803|78804|78806|78807|78809|78810|78811|78812|78813|78814|78817|78819|78820|78821|78823|78826|78828|78829|78831|78832|78834|78835|78839|78840|78842|78843|78844|78845|78847|78848|78849|78850|78851|78852|78855|78856|78857|78858|78859|78860|78862|78863|78868|78870|78872|78875|78876|78877|78878|78880|78883|78886|78889|78890|78891|78892|78893|78895|78897|78899|78900|78901|78902|78903|78904|78906|78907|78908|78909|78910|78911|78912|78913|78914|78916|78919|78920|78921|78922|78923|78924|78925|78926|78927|78928|78930|78933|78934|78936|78937|78938|78939|78940|78941|78942|78944|78945|78946|78947|78949|78950|78951|78952|78953|85943|85960|94568|99318|101299|101301|101302|101304|136655|140315|140338|141194|141700|141701|142741|142743|142744|142745|142746|142747|142750|142751|142752|142753|142754|142755|142757|142758|142761|142762|142764|142766|142769|142770|167406|171119|171120|171121|171122|171123|172171|173777|173778|173779|173781|173782|173783|173784|173786|173788|173788|173790|173792|173793|173917|173919|173920|173922|173923|173924|173926|173929|173931|173932|173935|175577|175867|178052|178515|178517|178518|178522|178523|178526|178538|178582|178650|178709|178752|186012|186018|187213|188323|188324|188325|188326|188327|188328|188477|188530|188534|188551|188601|188620|189209|189211|189212|189215|189217|189219|189341|189769|189965|191451|193308|196826|196827|196828|196831|196832|196833|196834|196838|196839|196840|196841|196842|196843|196849|196852|196860|196862|196864|196868|196876|196880|196881|196886|196886|196888|196889|196891|196893|196897|196903|196904|196904|196908|196909|196911|196912|196916|196917|196918|196919|196921|196922|196924|196926|196927|196928|196929|196930|196932|196940|196941|196942|196943|196944|196950|196953|196957|196958|196959|196963|196964|196965|196966|196967|196968|196969|196971|196973|196976|196978|196983|196984|196991|196992|196994|196995|196997|196998|197003|197008|197008|197014|197016|198761|204196|212332|212333|212334|212335|212336|212615|212616|212618|212994|214484|221413|221414|221415|221416|221417|221418|221740|221741|221742|222246|222247|224175|224266|224268|224269|224270|224271|224272|224276|224277|224279|224296|224355|224409|227847|227848|229044|229045|229046|229049|229050|229052|229053|229056|229058|229059|229060|229061|236759|236912|239138|239139|239194|239195|239196|239197|239198|239199|239200|239203|239204|239205|239206|239207|239208|239210|239211|239212|239213|239214|239216|239217|239218|239219|239220|239221|239222|239223|239224|239226|239227|239228|239229|239230|239232|239233|239234|239235|239236|239291|239292|240181|240182|243379|243718|243729|246944|246944|248629|251091|251105|251243|252942|252943|258307|258310|258311|258313|258314|258315|258318|258321|258473|258478|258483|258486|258720|258722|258742|262402|265899|273617|289959|290242|290243|290244|290254|290271|290272|290275|290276|290282|290699|291029|291030|291039|291040|291049|291066|291078|291083|291086|291087|291088|291095|293878|293883|294310|294320|294337|294342|294384|294386|294387|294391|294399|294401|294413|294701|294707|294717|294718|294722|294738|294749|309998|310014|310022|310024|312954|312972|313011|315022|315024|315048|315051|315054|315147|315154|316516|316781|316790|319012|321072|321081|321088|321091|321617|321618|321621|321639|321642|321942|321980|324278|325175|325976|325982|326015|328027|328054|328058|329272|329280|329302|330195|330349|331818|353125|353126|359672|359840|359946|362737|362738|363675|367106|367188|367199|367205|367206|367213|367217|367221|367224|367368|367467|367468|367470|367482|367483|367492|367499|367503|367505|367515|367522|367526|367530|368522|368524|368539|368546|368572|368576|368585|371366|371391|373124|378276|389579|393151|393330|393333|393409|393511|393529|393530|393534|393537|393540|393541|393544|393547|393549|393553|393554|393558|393559|393560|393561|393562|393566|393570|393571|393574|393575|393576|393577|393578|393579|393581|393583|393586|393587|393588|393589|393593|393594|393602|393603|393607|393608|393611|393615|393616|393618|393619|393624|393747|393748|393752|393753|393758|393763|393767|393775|393778|393779|393791|393792|393802|393803|393806|393808|393810|393812|393816|393818|393822|393825|393826|393828|393829|393945|393947|393952|393955|393965|393966|393967|393970|393976|393979|393982|393985|393987|393989|393994|393998|394003|394004|394008|394009|394012|394016|394018|394024|394025|394031|394180|395786|396035|396040|396047|396056|396162|396164|396435|396469|397187|398884|402722|403304|404765|406265|406269|406273|406274|406276|406277|406280|406282|406284|406287|406288|406291|407265|407267|407835|414937|418202|419283|421435|421436|421438|424892|425551|425552|425554|425558|425560|439143|443426|443427|443428|443429|443432|443433|443436|443439|443440|443441|443443|443446|449729|451559|452057|452156|452159|452166|452173|452175|452179|452180|452182|452183|452194|452195|452200|452202|452210|452218|452219|452228|452245|452249|452256|452260|452261|452264|452266|452273|452278|452279|452281|452286|452296|452297|452301|452310|452319|452320|452321|452322|452323|452325|452327|452395|452396|452417|452419|452421|452422|452424|452437|452445|452448|452449|452451|452452|452454|452456|452457|452460|452468|452470|452471|452473|452478|452479|452481|452483|452496|452498|452500|452526|452530|452532|452533|452539|452540|452544|452545|452547|452549|452551|452553|452555|452561|452566|452572|452577|452579|452586|452587|452589|452591|452597|452599|452603|452606|452609|452611|452613|452615|452619|452694|452695|452696|452697|452709|452713|452714|452722|452726|452729|452746|452751|452756|452758|452761|452767|452769|452770|452775|452778|452780|452795|452797|452800|452805|452812|453454|456929|456933|456956|457478|457482|457483|457490|457605|457941|457943|457947|470447|471678|472045|481142|481689|485930|487028|487099|488137|495184|496298|496299|496342|496343|500195|500217|500235|500237|500439|500474|500475|500476|500680|500688|500696|500732|500802|500804|500808|501816|501822|501827|503755|504790|509576|509578|509585|509589|509591|509592|509594|509597|509599|509600|509625|509902|509907|509912|511073|511075|511076|511078|511080|514345|514483|517062|517485|518826|518892|519074|519094|519095|519115|519118|519120|519138|519144|519146|519153|519154|519158|519160|519164|519170|519171|519177|519179|519185|519192|519194|519199|519202|519203|519208|519210|519211|519213|519214|519215|519217|519221|519224|519238|519239|519244|519245|519246|519247|519248|519252|519267|519268|519270|519349|519352|519358|519359|519360|519363|519365|519367|519369|519371|519374|519375|519376|519379|519380|519381|519383|519389|519391|519392|519393|519394|519397|519398|519401|519402|519404|519405|519406|519407|519412|519413|519418|519420|519421|519422|519424|519426|519432|519434|519440|519442|519444|519455|519456|519466|519470|519473|519477|519478|519481|519585|519591|519646|519651|519855|519857|522836|522841|522843|523068|523281|523394|527030|527255|527556|534467|534476|551709|551768|558712|558714|558878|558880|558918|558920|558922|558924|558926|558928|558930|558932|558934|558936|558938|558940|558942|558944|558946|558948|558950|558952|558954|558956|558958|558960|558962|558964|558966|558968|558970|559425|559457|559459|559461|559463|559465|559467|559469|559471|559473|559475|559477|559479|559481|559483|559485|559487|559489|559664|561372|561379|561449|561451|561458|561460|561462|561470|561477|561480|561481|561489|561491|561493|561498|561499|561503|561509|561513|561517|561519|561527|561793|562198|562211|562669|562747|562748|562750|562759|562764|562786|562788|562791|562792|562793|562798|562799|562803|562805|562807|562812|562836|562839|562844|562846|562851|562854|562869|563284|564420|564421|565375|565383|567132|567945|572167|574247|578602|589830|616893|616898|616899|616904|616905|616909|616910|616923|621152|631169|631170|631171|631172|631271|631272|631273|631274|631275|631276|631277|631278|631279|631280|631281|631282|631283|631284|631285|631286|631287|631288|631289|631290|631291|631292|631293|631294|631295|631296|631297|631298|631299|631300|631301|631302|631303|631304|631305|631306|631307|631308|631309|631310|631311|631312|631313|631314|631315|631316|631317|631318|631319|631320|631321|631322|631323|631324|631325|631326|631327|631328|631329|631330|631331|631332|631333|631334|631335|631336|631337|631338|631339|631340|631341|631342|631343|631344|631345|631346|631347|631348|631349|631350|631351|631352|631353|631354|631355|631356|631762|631763|631764|631765|631766|636351|636352|636353|636354|636355|641016|641017|641018|650994|650998|651067|651087|651135|651185|651239|654321|654323|655541|655545|672398|672454|679383|679435|679465|680064|683575|683576|683577|683578|683579|683580|683581|683583|683585|683586|683587|683939|685145|685148|685227|686389|686399|686400|686401|686402|686404|686406|686407|686409|686411|686412|686423|687118|689742|691384|691385|691387|691390|691391|691392|691394|691396|691398|695201|698063|698064|708822|748225|748228|748229|748231|748232|763854|763856|763858|763859|763860|763867|763874|769042|773697|781655|781666|781667|787298|793006|795408|795422|799007|818751|819398|819918|819919|827895|827896|827897|827898|827899|827982|827983|827984|827985|827986|827987|827988|827989|827990|827991|827992|827993|827994|827995|827996|827997|827998|827999|828000|828001|828002|828003|828004|828005|828006|828007|828008|828009|828010|828011|828012|828013|828014|828015|828016|828017|828018|828019|828020|828021|828022|828023|828024|828025|828026|828027|828028|828029|828030|828031|828032|828033|828034|828035|828036|828037|828038|828039|828040|828041|828042|828043|828044|828045|828046|828047|828048|828049|828050|828051|828052|828053|828054|828055|828056|828057|828058|828059|828060|828061|828062|828063|828064|828065|828066|828067|828068|828069|828070|828071|828072|828073|828074|828075|828076|828077|828078|828079|828080|828081|828082|828083|828084|828085|828086|828087|828088|828089|828090|828091|828092|828093|828094|828095|828096|828097|828098|828099|828100|833850|833851|833852|833853|833854|850673|850674|850676|850677|850678|850679|850680|850682|850936|850938|851045|851047|851049|851051|851562|851660|858252|858267|906315|906316|906317|906323|909418|909433|909500|909523|909562|909590|909603|909632|909633|909636|909645|923159|923160|923161|923162|923163|923164|923165|923166|923167|923168|923169|923170|923171|923172|923173|923174|923175|923176|923177|923178|923179|923180|923181|923182|923183|923184|923185|923186|923331|923332|923333|923334|924910|924911|924912|931912|931913|931914|931915|931916|931917|931918|931919|931920|931921|931922|931923|931924|931925|931926|931927|931928|931929|931930|931931|931932|931933|931934|931935|931936|931937|931938|931939|931940|931941|931942|931943|931944|931945|932073|932074|934000|934001|939401|939937|939938|940764|943474|943475|943506|943507|943508|943509|943510|943511|943512|943513|943514|943515|943516|943517|943518|943519|943520|943521|943522|943523|943524|943525|943526|943527|943528|943529|943530|943531|943532|943690|943691|945764|945765|947958|951574|953431|953432|953433|953434|953449|953450|953451|953452|953453|953454|953455|953456|953457|953458|953459|953460|953461|953462|953463|953464|953465|953466|953467|953468|953469|953470|953580|953581|955218|959154|959697|959865|965311|980667|980669|980670|980671|980720", "text": "Brugada syndrome" }, { - "baseId": "15825|78451|78452|78528|487028|621159|621160|654323|972559", + "upstreamId": "15825|78451|78452|78528|487028|621159|621160|654323|972559", "text": "Brugada syndrome (shorter-than-normal QT interval)" }, { - "baseId": "15827|24428|24432|24636|24767|24768|77909|77927|77950|77952|78005|78322|78340|78368|78395|78427|78430|78435|78566|78601|78666|78681|78787|78846|141701|189321|222247", + "upstreamId": "15827|24428|24432|24636|24767|24768|77909|77927|77950|77952|78005|78322|78340|78368|78395|78427|78430|78435|78566|78601|78666|78681|78787|78846|141701|189321|222247", "text": "SUDDEN INFANT DEATH SYNDROME" }, { - "baseId": "15827|21094|21885|23327|23642|23647|24419|24431|24642|24645|24650|25754|25787|27450|27461|27463|27495|28997|29102|29103|29106|29126|29128|29129|29130|29134|29136|29143|29150|29159|29164|29190|29191|31857|33352|33370|39099|39951|40426|40435|40437|40438|40470|40539|40542|40543|40545|44310|44311|44312|44314|44315|44315|44669|44690|45103|45104|45263|45265|45267|45269|45270|45271|45272|45273|45275|45276|45277|45302|45303|45304|45306|45307|45308|45309|45310|45356|45542|45543|45545|45549|45929|49070|49075|49093|51095|51672|51675|51678|51685|51686|51688|51697|51703|51706|51710|51713|51715|51717|51726|51732|51736|51745|51746|51747|51755|51756|51764|51769|51780|51783|51785|51788|51789|51790|51795|51796|51809|51812|51814|51822|51826|51833|51834|51835|51836|51849|51852|51860|51861|51866|51872|51876|51897|51898|51903|51905|51908|51909|51914|51916|51920|51922|51926|51929|51937|51945|51949|51954|51957|51961|51962|51968|51971|51976|51977|51983|51990|51997|52005|52008|52032|52044|52045|52055|52065|52070|52071|52083|52092|52097|52118|52162|52163|52173|52176|52182|52209|52214|52243|52270|52276|52287|52291|52294|52544|52554|52558|52559|52565|52645|52651|52781|52788|52796|52836|52838|52839|52844|52846|52856|52938|53062|53066|53068|53071|53072|53073|53074|53075|53077|53078|53079|53080|53083|53084|53085|53086|53087|53088|53089|53089|53090|53091|53092|53093|53095|53096|53097|53098|53100|53102|53103|53104|53105|53106|53107|53109|53111|53112|53116|53117|53118|53119|53120|53121|53146|53344|53700|53709|53858|53870|53872|53873|53873|53874|53875|53876|53877|53878|53879|53880|53881|54034|54170|54174|54199|54234|54533|54760|54804|54858|54862|54870|55351|55849|56066|56362|57050|57064|57261|77299|77753|77759|78195|78563|98596|139985|139986|139987|139989|141516|165539|165550|165551|165552|165554|165556|165557|165559|165560|165562|165563|165565|165566|165570|165574|165575|165576|165577|165582|165583|165586|165593|165594|165597|165598|165599|165603|165604|171084|171134|171135|171136|171137|171138|171139|171140|171141|171142|171143|171144|171145|171146|171147|171157|171158|171160|171161|171162|171163|171164|171165|171245|172178|172354|172362|172391|172392|172394|172396|172397|172400|172501|172503|172530|172533|172535|172537|172538|172557|172609|172786|172787|172788|172928|173316|173798|173883|174142|174731|174737|174741|174745|174757|174776|174779|174785|174916|175139|175143|175146|175153|175178|175188|175201|175392|175412|175414|175435|175442|175473|175510|175572|175587|175606|175615|175619|175655|175658|175696|176068|176213|176490|176492|176628|176629|176629|178223|178432|178434|178435|178443|178448|178450|178451|178455|178459|178462|178467|178468|178479|178480|178482|178485|178486|178487|178488|178489|178490|178491|178509|178516|178520|178522|178524|178527|178528|178529|178539|178543|178544|178546|178553|178555|178561|178563|178568|178570|178602|178603|178604|178610|178616|178619|178620|178621|178625|178630|178632|178633|178634|178638|178639|178640|178642|178644|178645|178647|178648|178649|178651|178657|178659|178660|178661|178664|178667|178668|178670|178671|178672|178674|178677|178678|178680|178687|178689|178704|178715|178717|178720|178721|178722|178723|178724|178728|178730|178731|178735|178756|178760|178761|178944|179196|179255|179256|179259|179262|179340|179356|179381|179390|179464|179557|179652|179676|179813|186288|186529|187659|189393|189394|189395|189396|189396|189402|189403|189801|189939|189956|189965|189965|189972|192359|194575|197086|198041|198042|198042|198043|198044|198045|198048|198049|198050|198051|198053|198054|198055|198058|198059|198059|198060|198061|198062|198067|198071|198082|198092|198327|198363|198364|198366|198368|198471|198472|198473|198474|198477|198478|198480|209638|212080|212081|212084|212085|221090|224180|224194|224194|224195|224201|224202|224204|224205|224206|224210|224211|224212|224213|224215|224216|224220|224222|224241|224252|224254|224260|224278|224280|224281|224282|224283|224307|224309|224312|224318|224320|224329|224334|224337|224338|224348|224349|224350|224351|224376|224377|224380|224382|224383|224389|224395|224397|224398|224400|224403|224404|224408|224410|224416|224417|224418|224421|224422|224423|224424|224425|224426|224427|224428|224429|224430|224431|224432|224433|224434|224452|224457|224460|224466|224467|224468|224470|224471|224472|224476|224477|224506|224507|224514|224515|224516|224526|224529|224530|224537|224540|224541|224544|224545|224559|224565|224566|224573|224575|224576|224580|224581|224582|224583|224585|224586|224588|224589|224590|224591|228359|228362|228364|228365|229019|230207|230225|238222|238223|238224|238225|238227|238229|238230|241205|241808|242733|242734|242735|257951|257955|257957|258702|258759|259005|259007|266688|267457|268263|270405|273206|274882|279744|279746|279746|279753|279754|280076|281356|281358|281360|281557|359244|359287|359902|364787|364936|364942|364946|364967|364989|364991|364994|372288|374182|374191|390978|390990|390991|390994|391004|391005|391009|391013|391017|391026|391028|391033|391034|391079|391114|391131|391142|391145|391149|391151|401951|405244|421224|421225|421226|421226|422163|425939|430982|433341|441954|444862|446925|446951|447588|447589|447590|447592|447595|447597|447602|447756|447760|447767|447774|447819|447821|447836|447840|447843|447845|447847|447849|447850|447866|447870|447873|447874|447877|447881|447893|447897|447902|447906|447908|447918|448156|461366|461535|461668|461893|461894|466769|467648|467816|467818|467824|468001|468005|480713|487689|497070|497395|503360|508768|509163|509164|509166|510206|510247|510738|510739|511046|511047|511047|511089|511090|511104|511106|511107|511108|511111|511112|511113|511114|511118|511122|511132|511135|511139|511140|511141|511142|514357|515547|515549|515553|515572|515633|515637|515645|515649|515651|515653|515654|515659|515662|515688|515690|515691|515695|515697|522576|526700|526701|526937|526945|531105|531182|556523|556823|556825|556827|556829|557154|557156|557157|557161|557164|557166|557201|557203|557205|557207|557209|557211|558375|558377|558379|558381|558383|558385|558387|566070|567459|569020|571313|571315|574447|578541|614705|615024|627509|627510|627511|627512|627513|627514|627515|627516|627517|627518|627519|627520|627521|627522|627523|627524|627525|627526|627527|627528|627529|627530|640336|640337|640338|640339|643107|645828|645829|645830|645831|645832|645833|650621|650626|650634|650693|672375|672416|672435|672438|672456|672457|679523|679533|679537|679538|679540|679541|685639|685640|687813|690009|690535|690536|695036|732293|761741|768616|794618|798985|823612|823613|823614|823615|823616|823617|823618|823619|823620|823621|823622|823623|823624|823625|823626|823627|823628|823629|823630|823631|823632|823633|838776|838777|838778|838779|838780|838781|838782|838783|838784|838785|845249|845250|845251|845252|845253|845254|850702|851902|863989|921889|921890|921891|921892|921893|921894|921895|921896|921897|921898|926346|928240|928241|930379|930380|930381|930382|930383|935693|935694|935695|935696|937901|937902|937903|940624|941808|941809|941810|941811|941812|941813|941814|941815|941816|947585|949892|949893|952324|952325|952326|952327|952328|952329|956589|956590|958094|958095|959546|959547|959548|960424", + "upstreamId": "15827|21094|21885|23327|23642|23647|24419|24431|24642|24645|24650|25754|25787|27450|27461|27463|27495|28997|29102|29103|29106|29126|29128|29129|29130|29134|29136|29143|29150|29159|29164|29190|29191|31857|33352|33370|39099|39951|40426|40435|40437|40438|40470|40539|40542|40543|40545|44310|44311|44312|44314|44315|44315|44669|44690|45103|45104|45263|45265|45267|45269|45270|45271|45272|45273|45275|45276|45277|45302|45303|45304|45306|45307|45308|45309|45310|45356|45542|45543|45545|45549|45929|49070|49075|49093|51095|51672|51675|51678|51685|51686|51688|51697|51703|51706|51710|51713|51715|51717|51726|51732|51736|51745|51746|51747|51755|51756|51764|51769|51780|51783|51785|51788|51789|51790|51795|51796|51809|51812|51814|51822|51826|51833|51834|51835|51836|51849|51852|51860|51861|51866|51872|51876|51897|51898|51903|51905|51908|51909|51914|51916|51920|51922|51926|51929|51937|51945|51949|51954|51957|51961|51962|51968|51971|51976|51977|51983|51990|51997|52005|52008|52032|52044|52045|52055|52065|52070|52071|52083|52092|52097|52118|52162|52163|52173|52176|52182|52209|52214|52243|52270|52276|52287|52291|52294|52544|52554|52558|52559|52565|52645|52651|52781|52788|52796|52836|52838|52839|52844|52846|52856|52938|53062|53066|53068|53071|53072|53073|53074|53075|53077|53078|53079|53080|53083|53084|53085|53086|53087|53088|53089|53089|53090|53091|53092|53093|53095|53096|53097|53098|53100|53102|53103|53104|53105|53106|53107|53109|53111|53112|53116|53117|53118|53119|53120|53121|53146|53344|53700|53709|53858|53870|53872|53873|53873|53874|53875|53876|53877|53878|53879|53880|53881|54034|54170|54174|54199|54234|54533|54760|54804|54858|54862|54870|55351|55849|56066|56362|57050|57064|57261|77299|77753|77759|78195|78563|98596|139985|139986|139987|139989|141516|165539|165550|165551|165552|165554|165556|165557|165559|165560|165562|165563|165565|165566|165570|165574|165575|165576|165577|165582|165583|165586|165593|165594|165597|165598|165599|165603|165604|171084|171134|171135|171136|171137|171138|171139|171140|171141|171142|171143|171144|171145|171146|171147|171157|171158|171160|171161|171162|171163|171164|171165|171245|172178|172354|172362|172391|172392|172394|172396|172397|172400|172501|172503|172530|172533|172535|172537|172538|172557|172609|172786|172787|172788|172928|173316|173798|173883|174142|174731|174737|174741|174745|174757|174776|174779|174785|174916|175139|175143|175146|175153|175178|175188|175201|175392|175412|175414|175435|175442|175473|175510|175572|175587|175606|175615|175619|175655|175658|175696|176068|176213|176490|176492|176628|176629|176629|178223|178432|178434|178435|178443|178448|178450|178451|178455|178459|178462|178467|178468|178479|178480|178482|178485|178486|178487|178488|178489|178490|178491|178509|178516|178520|178522|178524|178527|178528|178529|178539|178543|178544|178546|178553|178555|178561|178563|178568|178570|178602|178603|178604|178610|178616|178619|178620|178621|178625|178630|178632|178633|178634|178638|178639|178640|178642|178644|178645|178647|178648|178649|178651|178657|178659|178660|178661|178664|178667|178668|178670|178671|178672|178674|178677|178678|178680|178687|178689|178704|178715|178717|178720|178721|178722|178723|178724|178728|178730|178731|178735|178756|178760|178761|178944|179196|179255|179256|179259|179262|179340|179356|179381|179390|179464|179557|179652|179676|179813|186288|186529|187659|189393|189394|189395|189396|189396|189402|189403|189801|189939|189956|189965|189965|189972|192359|194575|197086|198041|198042|198042|198043|198044|198045|198048|198049|198050|198051|198053|198054|198055|198058|198059|198059|198060|198061|198062|198067|198071|198082|198092|198327|198363|198364|198366|198368|198471|198472|198473|198474|198477|198478|198480|209638|212080|212081|212084|212085|221090|224180|224194|224194|224195|224201|224202|224204|224205|224206|224210|224211|224212|224213|224215|224216|224220|224222|224241|224252|224254|224260|224278|224280|224281|224282|224283|224307|224309|224312|224318|224320|224329|224334|224337|224338|224348|224349|224350|224351|224376|224377|224380|224382|224383|224389|224395|224397|224398|224400|224403|224404|224408|224410|224416|224417|224418|224421|224422|224423|224424|224425|224426|224427|224428|224429|224430|224431|224432|224433|224434|224452|224457|224460|224466|224467|224468|224470|224471|224472|224476|224477|224506|224507|224514|224515|224516|224526|224529|224530|224537|224540|224541|224544|224545|224559|224565|224566|224573|224575|224576|224580|224581|224582|224583|224585|224586|224588|224589|224590|224591|228359|228362|228364|228365|229019|230207|230225|238222|238223|238224|238225|238227|238229|238230|241205|241808|242733|242734|242735|257951|257955|257957|258702|258759|259005|259007|266688|267457|268263|270405|273206|274882|279744|279746|279746|279753|279754|280076|281356|281358|281360|281557|359244|359287|359902|364787|364936|364942|364946|364967|364989|364991|364994|372288|374182|374191|390978|390990|390991|390994|391004|391005|391009|391013|391017|391026|391028|391033|391034|391079|391114|391131|391142|391145|391149|391151|401951|405244|421224|421225|421226|421226|422163|425939|430982|433341|441954|444862|446925|446951|447588|447589|447590|447592|447595|447597|447602|447756|447760|447767|447774|447819|447821|447836|447840|447843|447845|447847|447849|447850|447866|447870|447873|447874|447877|447881|447893|447897|447902|447906|447908|447918|448156|461366|461535|461668|461893|461894|466769|467648|467816|467818|467824|468001|468005|480713|487689|497070|497395|503360|508768|509163|509164|509166|510206|510247|510738|510739|511046|511047|511047|511089|511090|511104|511106|511107|511108|511111|511112|511113|511114|511118|511122|511132|511135|511139|511140|511141|511142|514357|515547|515549|515553|515572|515633|515637|515645|515649|515651|515653|515654|515659|515662|515688|515690|515691|515695|515697|522576|526700|526701|526937|526945|531105|531182|556523|556823|556825|556827|556829|557154|557156|557157|557161|557164|557166|557201|557203|557205|557207|557209|557211|558375|558377|558379|558381|558383|558385|558387|566070|567459|569020|571313|571315|574447|578541|614705|615024|627509|627510|627511|627512|627513|627514|627515|627516|627517|627518|627519|627520|627521|627522|627523|627524|627525|627526|627527|627528|627529|627530|640336|640337|640338|640339|643107|645828|645829|645830|645831|645832|645833|650621|650626|650634|650693|672375|672416|672435|672438|672456|672457|679523|679533|679537|679538|679540|679541|685639|685640|687813|690009|690535|690536|695036|732293|761741|768616|794618|798985|823612|823613|823614|823615|823616|823617|823618|823619|823620|823621|823622|823623|823624|823625|823626|823627|823628|823629|823630|823631|823632|823633|838776|838777|838778|838779|838780|838781|838782|838783|838784|838785|845249|845250|845251|845252|845253|845254|850702|851902|863989|921889|921890|921891|921892|921893|921894|921895|921896|921897|921898|926346|928240|928241|930379|930380|930381|930382|930383|935693|935694|935695|935696|937901|937902|937903|940624|941808|941809|941810|941811|941812|941813|941814|941815|941816|947585|949892|949893|952324|952325|952326|952327|952328|952329|956589|956590|958094|958095|959546|959547|959548|960424", "text": "Primary familial hypertrophic cardiomyopathy" }, { - "baseId": "15827|18156|18157|18158|18159|18160|18162|18165|18167|18169|18170|18174|18177|18179|18183|18184|20922|21094|23317|23318|23322|23323|23324|23328|23332|23335|23515|23895|24441|27998|28514|28516|28517|28518|29459|29463|29466|29467|29469|29470|29471|29474|29482|31857|31884|32671|32673|33095|33096|33097|33098|33099|38732|40368|40369|40371|40373|40374|40376|40377|40390|40400|44335|44351|44354|44355|44356|44431|44468|45091|45092|45100|45101|45102|45276|45424|45426|45426|45438|45847|51654|51656|51657|51658|51659|51660|51661|51662|51663|51817|51858|51914|51964|53139|53177|53872|54096|54790|55691|55698|55699|55700|55701|55702|55756|55763|55891|56006|56189|56214|56311|56325|56354|56572|56764|56842|57057|57455|57463|57471|57473|57478|67596|67598|67600|67605|67608|67614|67615|67618|67621|67623|67629|67632|67637|67638|67640|67641|67646|67648|67652|67657|67659|67661|67662|67663|67664|67666|67668|67671|67673|67674|67675|67677|67686|67687|67694|67695|67699|67702|67713|67715|67718|67720|67721|67724|67726|67729|67731|67734|67737|67740|67744|67747|67751|67755|67756|67758|67759|67768|67769|67775|67776|67777|67782|67783|67784|67785|67787|67792|67808|67819|67820|77900|77902|77909|77913|77916|77917|77920|77922|77923|77924|77925|77926|77927|77928|77930|77932|77934|77937|77938|77939|77942|77949|77953|77955|77957|77958|77959|77966|77968|77969|77971|77973|77974|77980|77981|77983|77984|77990|77992|77993|77995|77996|77997|77999|78003|78005|78011|78012|78013|78015|78016|78017|78025|78026|78057|78059|78062|78069|78078|78080|78102|78104|78114|78116|78121|78124|78128|78136|78137|78139|78143|78144|78150|78157|78159|78165|78167|78173|78175|78177|78180|78182|78185|78186|78188|78191|78194|78195|78197|78210|78211|78219|78221|78223|78225|78233|78242|78244|78248|78252|78255|78256|78259|78262|78263|78264|78265|78267|78270|78272|78273|78275|78285|78287|78293|78295|78298|78301|78303|78305|78313|78315|78316|78318|78319|78320|78322|78323|78324|78325|78326|78328|78329|78330|78331|78332|78333|78334|78336|78337|78339|78340|78341|78347|78349|78350|78351|78352|78355|78359|78362|78363|78364|78365|78366|78367|78368|78369|78371|78376|78377|78378|78379|78382|78386|78387|78388|78392|78393|78394|78399|78400|78401|78402|78404|78405|78406|78408|78410|78412|78414|78419|78423|78431|78433|78434|78435|78436|78437|78439|78440|78443|78447|78448|78449|78450|78451|78452|78453|78491|78492|78493|78494|78495|78499|78502|78510|78511|78512|78515|78515|78517|78519|78532|78547|78556|78573|78576|78577|78588|78593|78605|78607|78608|78629|78684|78727|78729|78737|78797|78805|78841|78877|78880|78895|78907|78941|81524|89851|99298|99300|99301|99303|99304|99305|99306|99309|99310|99311|99312|99314|99315|99316|99317|99318|99318|99319|99320|99321|99322|99323|99324|99326|99329|99330|102133|102134|136398|136399|136405|136408|136409|136410|136418|136419|136424|136425|136426|136427|136430|136431|139389|139391|140033|140035|140036|140038|140040|140041|140042|140043|140044|140045|140046|140047|140048|140049|140050|140051|140052|140053|140084|140085|140086|140087|140089|140090|140093|140095|140100|140101|140314|140315|140316|140318|140321|140322|140325|140326|140328|140330|140331|140332|140333|140335|140336|140338|140344|140345|140346|140362|140876|141310|141693|141694|141695|141696|141697|141698|141704|141705|141707|141708|141710|141711|141713|141714|141715|142741|142925|142926|142927|165526|165527|165528|167508|171106|171108|171190|172417|173790|173806|173931|173946|173947|174383|174724|174916|175699|175700|175702|175838|175840|175841|175844|176235|176357|176358|177008|177402|177533|177535|177536|177537|178444|178447|178453|178508|178523|178533|178534|178535|178536|178557|178573|178574|178575|178577|178578|178579|178583|178585|178587|178588|178589|178590|178591|178622|178624|178646|178652|178653|178654|178685|178727|178737|178747|178752|178753|178754|179083|179088|179090|179091|186018|186073|186087|186151|186151|186152|186287|188330|188331|188333|188335|188336|188337|188339|188348|188349|188351|188353|188355|188356|188359|188360|188362|188367|188372|188373|188374|188375|188377|188378|188380|188381|188382|188385|188387|188388|188390|188391|188392|188394|188395|188399|188401|188402|188404|188405|188407|188408|188410|188412|188415|188416|188419|188431|188432|188434|188435|188436|188439|188440|188441|188442|188444|188445|188446|188449|188452|188454|188458|188459|188463|188464|188465|188509|188510|188511|188514|188519|188520|188522|188523|188524|188525|188526|188530|188531|188533|188538|188539|188545|188550|188551|188552|188553|188554|188555|188557|188558|188559|188562|188567|188571|188572|188574|188576|188580|188581|188588|188591|188601|188602|188606|188607|188608|188609|188610|188611|188612|188613|188614|188615|188616|188618|188619|188620|188622|188629|188717|188722|188723|188726|188729|188732|188734|188736|188739|188743|188744|188745|188746|188998|189213|189214|189220|189221|189222|189224|189228|189229|189231|189235|189236|189238|189239|189240|189244|189245|189246|189247|189248|189249|189250|189251|189256|189257|189262|189263|189264|189266|189267|189268|189269|189271|189273|189276|189277|189278|189279|189282|189285|189286|189287|189287|189288|189289|189291|189293|189295|189297|189298|189299|189300|189302|189303|189304|189305|189306|189307|189308|189309|189317|189322|189328|189329|189337|189338|189341|189342|189343|189344|189369|189373|189376|189377|189380|190965|191320|191347|192259|192628|193093|194156|194187|194219|194567|194615|194616|194641|194659|194666|194672|194673|194699|194721|195595|196486|196541|196702|196864|197129|197130|197131|197135|197136|197137|197142|197143|197145|197146|197147|197149|197153|197154|197156|197157|197159|197164|197165|197171|197172|197173|197174|197175|197176|197178|197181|197185|197187|197192|197193|197201|197211|197219|197220|197227|197228|197232|197235|197239|197240|197245|197248|197260|197263|197265|197266|197270|197272|197273|197278|197279|197291|197293|197296|197299|197300|197303|197315|197323|197324|197325|197326|197327|197328|197333|197334|197340|197348|197354|197356|197357|197358|197367|197368|197371|197374|197408|197416|197421|197422|197426|197427|197431|197443|197450|197459|197462|197469|197471|197473|197475|197478|197483|197484|197486|197487|197488|197496|197498|197500|197504|197506|197507|197510|199555|204065|204066|204067|204068|204069|204070|204071|204072|204073|204074|204075|204076|204077|204078|204079|204080|204081|204082|204083|204084|204085|204086|204087|204088|204089|204090|204091|204092|204093|204094|204095|204096|204097|204098|204099|204100|204101|204102|204103|204104|204105|204106|204107|204108|204109|204110|204111|204112|204113|204114|204115|204116|204117|204118|204119|204122|204123|204124|204125|204126|204127|204128|204129|204130|204131|204132|204133|204134|204135|204136|204137|204138|204139|204140|204145|204146|204147|204148|204149|204150|204151|204152|204153|204154|204155|204156|204157|204158|204159|204160|204161|204162|204163|204164|204165|204166|204167|204168|204169|204170|204171|204172|204173|204174|204175|204176|204198|204202|204203|212343|212344|212345|212346|212347|212567|212568|212569|212570|212571|212619|212621|212622|212623|212920|212922|212923|212927|212993|212995|212997|212999|213468|215355|221428|221429|221430|221431|221432|221668|221669|221670|221671|221672|221673|221674|221675|221676|221743|221744|221745|221746|221747|221748|222134|222135|222138|222139|222140|222141|222248|222249|222250|222853|224269|224286|224287|224288|224290|224292|224294|224296|224336|224339|224340|224341|224342|224343|224347|224360|224361|224363|224401|224434|224443|224444|224456|224522|224542|230190|230195|230197|230198|231114|231115|231116|231632|236763|236765|236770|236794|238222|239294|239301|239302|239303|239305|239307|239308|239309|239310|239311|239312|239314|239315|239316|239317|239318|239319|239320|239321|239322|239323|239324|239325|239326|239327|239328|239329|239330|239331|239992|239993|239994|239995|239996|239997|239998|239999|240000|240001|240002|240003|240004|240187|240188|240189|240190|240191|240192|240194|240196|240200|240202|240203|241065|241085|241086|241087|241090|241092|241093|241094|241530|241538|241539|241540|241541|241542|241543|241545|243578|243601|251312|251313|251314|251315|252648|254496|258327|258329|258331|258332|258335|258337|258338|258339|258340|258341|258342|258343|258345|258347|258351|258353|258355|258359|258463|258485|258488|258490|258496|258503|258504|258506|258508|258510|258512|258514|258515|258516|258694|258695|258696|258719|258720|258721|258730|258731|258741|258742|259046|259049|259050|259053|259054|259059|259063|259180|259855|259979|264150|264154|264160|264463|264595|265970|266059|266236|266280|267851|268668|268720|270737|272503|275156|290242|290243|290244|290254|290271|290276|291029|291030|291039|291040|291049|291066|291078|291087|291088|291095|292040|292043|292067|292081|292090|292102|293484|293487|293511|293525|293530|294310|294320|294337|294342|294384|294386|294391|294399|294413|294701|294707|294717|294718|294722|294738|296388|296777|296810|296816|296821|296824|296828|296829|296830|296833|296836|302179|302180|302189|302190|302194|303500|303501|303502|303516|305367|305381|305389|305392|306921|306933|306939|306940|306944|306951|306952|310199|310299|310302|310317|310321|311818|311837|311851|311852|311856|311859|311865|312489|312495|313787|313790|313794|313799|313800|313812|313813|313817|316586|316730|316733|316755|316757|316774|318378|318415|318430|318469|319399|319980|319984|319986|319987|319988|320021|320022|320025|324081|324158|324231|324233|324234|324236|324243|324519|324544|324581|325306|325539|326169|326170|326178|326180|326190|326206|326214|327103|327120|327127|327130|330195|330197|330280|330281|330298|331596|331669|331676|331677|331685|335279|335288|336624|336627|336647|345107|346356|350563|350579|350595|350597|350916|351633|351642|351644|353590|359192|359804|359805|359809|360088|360503|361865|362737|367445|367452|367476|367497|367508|367512|367765|367776|367783|367784|367787|367791|367801|367803|367809|367810|367811|367813|367820|367836|368878|368903|369016|369017|369023|369044|369060|369314|369342|369347|369350|369597|369606|369612|369616|369621|369622|370973|370997|371001|371299|371342|371367|371368|371370|372141|372185|372201|372227|372232|372345|372874|372943|372972|372974|372976|372990|373145|373166|373183|373185|373191|373194|374044|374060|374890|374980|375021|375028|376975|376980|376983|377986|378276|378481|379688|379689|379690|379691|389717|390050|390546|393764|393765|393777|393783|393784|393795|393798|393801|393813|393814|393819|393827|393830|393838|393840|393845|393846|393849|393853|393854|393855|393862|393865|393867|393868|393869|393870|393873|393874|393877|393878|393883|393974|393978|393993|393995|394007|394017|394023|394027|394028|394035|394045|394050|394057|394074|394076|394093|394094|394100|394116|394118|394127|394181|394183|394217|394224|394226|394236|394237|394245|394250|394254|394270|394274|394277|394280|394281|394284|394286|394295|395482|395485|395487|395489|395490|395495|395497|395609|395611|395666|395668|395671|395676|395682|395693|395694|395703|395706|395716|395717|395787|395791|395793|395798|395799|395802|395804|395807|395816|395853|395862|395863|395866|395868|395878|396077|396079|396080|396081|396097|396099|396100|396137|396141|396142|396154|396157|396158|396168|396172|396173|396175|396180|396181|396184|396186|396190|396192|396195|396196|396197|396198|396200|396202|396203|396206|396470|396478|396480|396483|396487|396488|396489|397566|397568|397752|398006|398090|398096|398098|398114|398119|398124|398149|398151|398184|398187|398459|398466|398469|398476|398482|398520|398523|398529|398575|398589|398593|398596|398597|398601|398883|398909|398911|398913|398923|398937|398947|398948|398953|398955|399063|399069|399073|399081|399094|399097|399110|399114|399350|399368|399375|399377|399379|399386|399390|399405|399408|399410|399415|399421|399422|399425|399428|399635|399650|399658|399661|399662|399663|399664|399668|403718|404147|404153|404180|404182|404235|404238|407049|407054|407058|407069|408326|408327|408328|408331|408610|408620|408624|408625|414959|415088|419276|421916|422353|424566|425913|426333|433355|433386|434589|434680|442551|442552|443518|443552|443555|443556|444780|444789|444968|444974|446223|446224|449942|452799|452835|452843|452848|452851|452853|452857|452864|452866|452868|452869|452879|452886|452889|452890|452906|452910|452912|452914|453192|453193|453205|453209|453218|453226|453228|453230|453232|453236|453239|453244|453250|453254|453255|453267|453274|453276|453284|453286|453288|453294|453295|453297|453300|453302|453306|453310|453313|453318|453326|453561|453636|453639|453641|453648|453650|453663|453664|453669|453682|453689|453693|453696|453698|453703|453705|453708|456462|456463|456465|456466|456471|456478|456490|456492|456493|456494|456496|456498|456787|456789|456799|456805|456807|456811|456816|456825|456830|456831|456834|456836|456840|456843|456848|456853|456855|456861|456863|456864|456867|456876|456887|456889|456891|457021|457026|457032|457040|457042|457045|457052|457054|457056|457057|457059|457063|457075|457078|457080|457097|457098|457100|457103|457107|457113|457116|457513|457515|457517|457519|457521|457523|457524|457525|457527|457531|457532|457533|457538|457543|457544|457545|457546|457549|457553|457555|457556|457557|457558|457560|457563|457569|457576|457583|457588|457639|457640|457643|457644|457648|457651|457655|457660|457663|457665|457666|457984|457986|457991|457993|457995|457997|458005|458009|458012|458016|460426|460923|460987|460993|461000|461003|461004|461009|461128|461129|461133|461136|461145|461153|461299|461301|461418|461421|461422|461423|461575|461776|461778|461781|461790|461792|462066|462075|462077|462084|462091|462093|462099|462101|462103|462107|462108|462112|462116|462118|462126|462318|462341|462343|462345|462349|462353|462359|462360|462361|462369|462370|462798|462816|462817|462825|462826|462856|462868|462869|462873|462874|462880|462881|462884|462887|462909|462910|462936|462947|462949|462951|462956|462960|462963|462974|462978|462980|462982|462984|462987|462993|462999|463011|463018|469342|470337|470341|470344|470881|471380|471554|471609|480686|480699|487008|487480|487583|487957|488008|492809|495332|495572|496994|497392|500382|500388|500409|500416|500695|500698|500704|500869|501017|501035|501662|501851|501937|501942|501947|501971|501978|502282|502899|503246|503511|503516|503760|504080|504101|504293|507284|507294|508163|509633|509635|509636|509637|509640|509642|509645|509651|509654|509656|509657|509659|509661|509669|509671|509676|509677|509846|509849|509851|509852|509868|509870|509872|509919|509920|509925|509926|509927|509933|509934|509938|509943|509950|509952|509961|509966|509974|509976|509982|510273|510275|510276|510278|510280|510372|510375|510376|510378|510381|510382|510384|510385|510389|510390|510824|511087|511088|511091|511092|511093|511103|511519|514348|514349|514350|514625|519602|519603|519676|519681|519682|519685|519689|519690|519691|519692|519693|519695|519697|519699|519700|519701|519702|519706|519707|519712|519714|519718|519719|519729|519731|519736|519893|519900|519950|519951|519954|519956|519958|519959|519962|519968|519970|519971|519972|519973|519974|519975|519979|519981|519985|519994|519998|521613|521901|522289|522440|522442|522445|522446|522448|522451|522454|522456|522467|522474|522624|522656|522663|522666|522669|522670|522684|522687|522688|522690|522691|522697|522699|522702|522705|522714|522764|522769|522770|522772|522774|522779|522781|522792|522796|522799|522804|522875|522879|522892|522895|522903|522905|522914|522921|522923|522928|523075|523077|523085|523090|523092|523093|523097|523099|523127|523130|523136|523140|523141|523146|523314|523320|523322|523329|523331|523338|523342|523351|523356|523363|523365|523370|523427|523437|523439|523444|523450|523452|523455|523458|523462|523464|525601|526035|526038|526040|526103|526107|526109|526118|526133|526137|526213|526217|526237|526545|526548|526549|526552|526564|527043|527050|527052|527054|527056|527057|527062|527065|527066|527068|527070|527072|527075|527082|527084|527085|527086|527088|527113|527118|527120|527123|527126|527131|527246|527287|527293|527300|527301|527306|527307|527311|527318|527320|527325|527332|527334|527338|527551|527562|527565|527566|527568|527576|527579|527585|527587|527591|527594|527595|527599|527605|527607|533497|533543|533551|533557|533824|533837|534062|534380|536660|536741|536839|551700|551716|551782|552404|559524|559557|559559|559561|559563|559565|559567|559569|559571|559573|559575|559577|559712|559714|559716|559718|559720|559722|559724|559726|561036|561403|561404|561406|561407|561689|561696|561705|561718|561724|561727|561728|561738|561740|561741|561786|561787|561794|561798|561800|561819|561868|561870|561874|562237|562241|562243|562246|563370|563371|563400|563402|563408|563412|563414|563415|563418|563847|564148|564156|564160|564161|564166|564168|564443|564445|564452|564458|564460|564465|564466|564468|564470|564475|564506|564552|564553|564557|564562|564577|565361|565390|565392|565394|565398|565399|565402|565406|565411|565417|565563|565622|565633|565638|565639|565649|566556|566561|566568|566570|566571|566581|566583|566595|566751|566752|566754|566757|566765|566769|566781|566783|566784|567156|567160|567162|567195|567198|567203|567208|567211|567212|567942|567955|567960|567961|567964|567970|567973|567976|567978|567980|567982|567984|567990|569946|569952|570472|570473|570495|570501|571128|571130|571195|571516|571752|571756|571758|571765|571766|571774|573077|573078|573489|575088|575089|576958|579801|609524|609671|609672|611746|617347|617348|617349|617351|617353|617356|617851|617855|617858|617861|617862|620277|621167|621168|621263|625801|631796|631797|631798|631799|631863|631864|631865|631866|631867|631868|631869|631870|631871|631872|631873|631874|631875|631876|631877|631878|631879|631880|631881|631882|631883|631884|631885|631886|631887|631888|631889|631890|631891|631892|631893|631894|631895|631896|631897|631898|631899|631900|631901|631902|631903|631904|631905|631906|631907|635883|635884|635885|635886|635887|635888|635889|635890|635891|635892|635893|635894|635895|635896|635897|635898|635899|635900|635901|635902|635903|635904|635905|635906|635907|635908|635909|635910|635911|635912|635913|635914|635915|635916|635917|635918|635919|635920|635921|635922|635923|635924|635925|635926|635927|635928|635929|635930|635931|635932|636389|636390|636391|636392|636393|636394|636395|636396|636397|636398|636399|636400|636401|636402|636403|636404|636405|636406|636407|636408|636409|636410|636411|636412|636413|636414|636415|636416|636417|636418|636419|636420|636421|636422|636423|636424|636425|636426|636427|636428|636429|636430|636431|636432|636433|636434|636435|636436|639818|639819|639820|639821|639822|639899|639900|639901|639902|639903|639904|639905|639906|639907|639908|639909|639910|641009|641010|641011|641031|641032|641033|641034|641035|641036|641037|641038|641039|641040|641041|641042|641043|641044|641045|641046|641047|641048|641049|641050|641051|641052|641053|641054|641055|641056|641057|641058|641059|641060|641061|641062|648631|648632|648945|648946|648947|648948|651002|651051|651132|651133|651149|651592|651654|651665|651709|651783|652177|652180|652187|652189|652238|652371|652485|652529|653657|654680|654920|655810|656628|665692|665693|665698|665703|665708|665717|665721|665725|665735|665737|665741|665743|665749|665759|665763|665767|665770|665777|665780|666235|666364|666370|666371|666380|666389|666393|666394|666398|666400|666406|666413|666423|666431|666434|666442|666447|666491|666494|666496|666499|666504|666507|666510|666515|666517|666520|666529|666531|666537|666545|666561|666758|666763|666765|666773|666775|666777|666785|666786|666793|666796|672406|672418|672420|679382|679392|679407|679417|679441|679446|680050|683612|683613|683614|683616|683861|683862|683863|683944|684239|684253|684318|684320|685210|685211|685229|685312|685313|685314|685315|685316|685317|685320|685321|685322|685323|685324|685325|685326|685327|685328|685329|685330|685331|685332|685333|685334|685335|685336|685337|685338|685339|685340|685341|685342|685343|685344|685346|685347|685348|685349|685350|685351|685352|685353|685354|685355|685356|685357|685358|685359|685360|685361|685362|685363|685364|685365|685366|685367|685368|685369|685371|685372|685373|685374|685375|685376|685377|685378|686479|686481|686482|686483|686484|686487|686488|686489|686999|687000|687001|687002|687128|687137|687138|687721|687751|687752|687949|687952|687953|687954|687961|687962|687963|687964|687966|687967|687971|687973|687977|687978|687979|689243|689750|689860|689861|689863|689892|690035|690036|690037|690038|690040|690042|690043|691501|691503|692179|692180|692182|692183|692184|692185|692186|692965|692966|692984|692985|693172|693177|693178|693179|693181|693182|693184|693185|695507|695559|699932|699933|702282|722393|730256|736024|736025|737928|744187|744848|748682|750496|750498|750500|750505|752544|752545|752632|753319|759561|760168|760170|764180|766168|766169|766174|769063|769065|769082|774920|775350|775382|775818|775821|775831|775834|775881|775888|775890|775957|775962|775966|776028|776031|781813|781852|781853|782939|784355|787769|787778|787801|787803|787805|789805|792718|793046|795515|798991|799643|800838|805681|819294|819439|819765|819766|819850|819851|819852|819921|820353|820354|820355|820356|820357|820488|820489|820490|820491|828575|828576|828577|828578|828579|828580|828581|828673|828674|828675|828676|828677|828678|828679|828680|828681|828682|828683|828684|828685|828686|828687|828688|828689|828690|828691|828692|828693|828694|828695|828696|828697|828698|828699|828700|828701|828702|828703|828704|828705|828706|828707|828708|828709|828710|828711|828712|828713|828714|828715|833311|833312|833313|833314|833315|833316|833317|833318|833319|833320|833321|833322|833323|833324|833325|833326|833327|833328|833329|833330|833331|833332|833333|833334|833335|833336|833337|833338|833339|833340|833341|833342|833343|833344|833345|833346|833347|833348|833349|833350|833351|833352|833353|833354|833355|833356|833357|833358|833359|833360|833361|833362|833363|833364|833884|833885|833886|833887|833888|833889|833890|833891|833892|833893|833894|833895|833896|833897|833898|833899|833900|833901|833902|833903|833904|833905|833906|833907|833908|833909|833910|833911|833912|833913|833914|838117|838118|838119|838120|838121|838232|838233|838234|838235|838236|838237|838238|838239|838240|838241|838242|838243|838247|838248|838249|838250|839755|839756|839757|839758|839759|839811|839812|839813|839814|839815|839816|839817|839818|839819|839820|839821|839822|839823|839824|839825|839826|839827|839828|839829|839830|839831|839832|839833|839834|839835|839836|839837|839838|839839|839840|848301|848302|848303|848304|848734|848735|848736|850960|851144|851495|851943|851945|852342|852611|852686|852901|889976|889994|897669|897677|910662|910665|910681|910685|910693|910698|910702|910725|910738|910774|911595|911643|911656|916923|917013|917085|923360|923361|923362|923383|923384|923385|923386|923387|923388|923389|923390|923391|923392|923393|923394|923395|923396|923397|923398|924750|924751|924752|924753|924754|924755|924756|924757|924758|924759|924760|924761|924762|924763|924764|924765|924926|924927|924928|924929|924930|924931|926153|926154|926181|926182|926183|926184|926185|926583|926594|926595|926596|926597|926598|926599|926600|926601|929163|932087|932117|932118|932119|932120|932121|932122|932123|932124|932125|932126|932127|932128|932129|932130|932131|932132|932133|933762|933763|933764|933765|933766|933767|933768|933769|933770|933771|933772|933773|933774|933775|933776|933777|933778|933779|933780|933781|933782|933783|933784|933785|933786|934010|934011|934012|934013|934014|934015|934016|934017|934018|934019|934020|934021|935434|935435|935468|935469|935470|935471|935472|935473|936057|936058|936079|936080|936081|936082|936083|936084|936085|936086|936087|936088|938940|938941|939954|940070|940071|940072|940085|940086|940087|940209|940210|940263|940503|941030|941031|941032|943705|943744|943745|943746|943747|943748|943749|943750|943751|943752|943753|943754|943755|943756|943757|943758|943759|943760|943761|943762|943763|943764|943765|945515|945516|945517|945518|945519|945520|945521|945522|945523|945524|945525|945526|945527|945528|945529|945530|945531|945775|945776|945777|945778|945779|945780|945781|945782|945783|947357|947358|947393|947394|947395|947945|947946|947973|947974|947975|947976|947977|947978|947979|947980|947981|947982|947983|947984|947985|947986|951216|953595|953634|953635|953636|953637|953638|953639|953640|953641|955090|955091|955092|955093|955094|955095|955096|955097|955098|955223|955224|955225|955226|955227|955228|955229|955230|955231|955232|955233|955234|955235|955236|955237|955238|956453|956454|956455|956456|956849|956850|956851|956852|956853|956854|956855|959710|959843|959868|959986|960639|960785|965302|965304|965307|965308|965313|980164", + "upstreamId": "15827|18156|18157|18158|18159|18160|18162|18165|18167|18169|18170|18174|18177|18179|18183|18184|20922|21094|23317|23318|23322|23323|23324|23328|23332|23335|23515|23895|24441|27998|28514|28516|28517|28518|29459|29463|29466|29467|29469|29470|29471|29474|29482|31857|31884|32671|32673|33095|33096|33097|33098|33099|38732|40368|40369|40371|40373|40374|40376|40377|40390|40400|44335|44351|44354|44355|44356|44431|44468|45091|45092|45100|45101|45102|45276|45424|45426|45426|45438|45847|51654|51656|51657|51658|51659|51660|51661|51662|51663|51817|51858|51914|51964|53139|53177|53872|54096|54790|55691|55698|55699|55700|55701|55702|55756|55763|55891|56006|56189|56214|56311|56325|56354|56572|56764|56842|57057|57455|57463|57471|57473|57478|67596|67598|67600|67605|67608|67614|67615|67618|67621|67623|67629|67632|67637|67638|67640|67641|67646|67648|67652|67657|67659|67661|67662|67663|67664|67666|67668|67671|67673|67674|67675|67677|67686|67687|67694|67695|67699|67702|67713|67715|67718|67720|67721|67724|67726|67729|67731|67734|67737|67740|67744|67747|67751|67755|67756|67758|67759|67768|67769|67775|67776|67777|67782|67783|67784|67785|67787|67792|67808|67819|67820|77900|77902|77909|77913|77916|77917|77920|77922|77923|77924|77925|77926|77927|77928|77930|77932|77934|77937|77938|77939|77942|77949|77953|77955|77957|77958|77959|77966|77968|77969|77971|77973|77974|77980|77981|77983|77984|77990|77992|77993|77995|77996|77997|77999|78003|78005|78011|78012|78013|78015|78016|78017|78025|78026|78057|78059|78062|78069|78078|78080|78102|78104|78114|78116|78121|78124|78128|78136|78137|78139|78143|78144|78150|78157|78159|78165|78167|78173|78175|78177|78180|78182|78185|78186|78188|78191|78194|78195|78197|78210|78211|78219|78221|78223|78225|78233|78242|78244|78248|78252|78255|78256|78259|78262|78263|78264|78265|78267|78270|78272|78273|78275|78285|78287|78293|78295|78298|78301|78303|78305|78313|78315|78316|78318|78319|78320|78322|78323|78324|78325|78326|78328|78329|78330|78331|78332|78333|78334|78336|78337|78339|78340|78341|78347|78349|78350|78351|78352|78355|78359|78362|78363|78364|78365|78366|78367|78368|78369|78371|78376|78377|78378|78379|78382|78386|78387|78388|78392|78393|78394|78399|78400|78401|78402|78404|78405|78406|78408|78410|78412|78414|78419|78423|78431|78433|78434|78435|78436|78437|78439|78440|78443|78447|78448|78449|78450|78451|78452|78453|78491|78492|78493|78494|78495|78499|78502|78510|78511|78512|78515|78515|78517|78519|78532|78547|78556|78573|78576|78577|78588|78593|78605|78607|78608|78629|78684|78727|78729|78737|78797|78805|78841|78877|78880|78895|78907|78941|81524|89851|99298|99300|99301|99303|99304|99305|99306|99309|99310|99311|99312|99314|99315|99316|99317|99318|99318|99319|99320|99321|99322|99323|99324|99326|99329|99330|102133|102134|136398|136399|136405|136408|136409|136410|136418|136419|136424|136425|136426|136427|136430|136431|139389|139391|140033|140035|140036|140038|140040|140041|140042|140043|140044|140045|140046|140047|140048|140049|140050|140051|140052|140053|140084|140085|140086|140087|140089|140090|140093|140095|140100|140101|140314|140315|140316|140318|140321|140322|140325|140326|140328|140330|140331|140332|140333|140335|140336|140338|140344|140345|140346|140362|140876|141310|141693|141694|141695|141696|141697|141698|141704|141705|141707|141708|141710|141711|141713|141714|141715|142741|142925|142926|142927|165526|165527|165528|167508|171106|171108|171190|172417|173790|173806|173931|173946|173947|174383|174724|174916|175699|175700|175702|175838|175840|175841|175844|176235|176357|176358|177008|177402|177533|177535|177536|177537|178444|178447|178453|178508|178523|178533|178534|178535|178536|178557|178573|178574|178575|178577|178578|178579|178583|178585|178587|178588|178589|178590|178591|178622|178624|178646|178652|178653|178654|178685|178727|178737|178747|178752|178753|178754|179083|179088|179090|179091|186018|186073|186087|186151|186151|186152|186287|188330|188331|188333|188335|188336|188337|188339|188348|188349|188351|188353|188355|188356|188359|188360|188362|188367|188372|188373|188374|188375|188377|188378|188380|188381|188382|188385|188387|188388|188390|188391|188392|188394|188395|188399|188401|188402|188404|188405|188407|188408|188410|188412|188415|188416|188419|188431|188432|188434|188435|188436|188439|188440|188441|188442|188444|188445|188446|188449|188452|188454|188458|188459|188463|188464|188465|188509|188510|188511|188514|188519|188520|188522|188523|188524|188525|188526|188530|188531|188533|188538|188539|188545|188550|188551|188552|188553|188554|188555|188557|188558|188559|188562|188567|188571|188572|188574|188576|188580|188581|188588|188591|188601|188602|188606|188607|188608|188609|188610|188611|188612|188613|188614|188615|188616|188618|188619|188620|188622|188629|188717|188722|188723|188726|188729|188732|188734|188736|188739|188743|188744|188745|188746|188998|189213|189214|189220|189221|189222|189224|189228|189229|189231|189235|189236|189238|189239|189240|189244|189245|189246|189247|189248|189249|189250|189251|189256|189257|189262|189263|189264|189266|189267|189268|189269|189271|189273|189276|189277|189278|189279|189282|189285|189286|189287|189287|189288|189289|189291|189293|189295|189297|189298|189299|189300|189302|189303|189304|189305|189306|189307|189308|189309|189317|189322|189328|189329|189337|189338|189341|189342|189343|189344|189369|189373|189376|189377|189380|190965|191320|191347|192259|192628|193093|194156|194187|194219|194567|194615|194616|194641|194659|194666|194672|194673|194699|194721|195595|196486|196541|196702|196864|197129|197130|197131|197135|197136|197137|197142|197143|197145|197146|197147|197149|197153|197154|197156|197157|197159|197164|197165|197171|197172|197173|197174|197175|197176|197178|197181|197185|197187|197192|197193|197201|197211|197219|197220|197227|197228|197232|197235|197239|197240|197245|197248|197260|197263|197265|197266|197270|197272|197273|197278|197279|197291|197293|197296|197299|197300|197303|197315|197323|197324|197325|197326|197327|197328|197333|197334|197340|197348|197354|197356|197357|197358|197367|197368|197371|197374|197408|197416|197421|197422|197426|197427|197431|197443|197450|197459|197462|197469|197471|197473|197475|197478|197483|197484|197486|197487|197488|197496|197498|197500|197504|197506|197507|197510|199555|204065|204066|204067|204068|204069|204070|204071|204072|204073|204074|204075|204076|204077|204078|204079|204080|204081|204082|204083|204084|204085|204086|204087|204088|204089|204090|204091|204092|204093|204094|204095|204096|204097|204098|204099|204100|204101|204102|204103|204104|204105|204106|204107|204108|204109|204110|204111|204112|204113|204114|204115|204116|204117|204118|204119|204122|204123|204124|204125|204126|204127|204128|204129|204130|204131|204132|204133|204134|204135|204136|204137|204138|204139|204140|204145|204146|204147|204148|204149|204150|204151|204152|204153|204154|204155|204156|204157|204158|204159|204160|204161|204162|204163|204164|204165|204166|204167|204168|204169|204170|204171|204172|204173|204174|204175|204176|204198|204202|204203|212343|212344|212345|212346|212347|212567|212568|212569|212570|212571|212619|212621|212622|212623|212920|212922|212923|212927|212993|212995|212997|212999|213468|215355|221428|221429|221430|221431|221432|221668|221669|221670|221671|221672|221673|221674|221675|221676|221743|221744|221745|221746|221747|221748|222134|222135|222138|222139|222140|222141|222248|222249|222250|222853|224269|224286|224287|224288|224290|224292|224294|224296|224336|224339|224340|224341|224342|224343|224347|224360|224361|224363|224401|224434|224443|224444|224456|224522|224542|230190|230195|230197|230198|231114|231115|231116|231632|236763|236765|236770|236794|238222|239294|239301|239302|239303|239305|239307|239308|239309|239310|239311|239312|239314|239315|239316|239317|239318|239319|239320|239321|239322|239323|239324|239325|239326|239327|239328|239329|239330|239331|239992|239993|239994|239995|239996|239997|239998|239999|240000|240001|240002|240003|240004|240187|240188|240189|240190|240191|240192|240194|240196|240200|240202|240203|241065|241085|241086|241087|241090|241092|241093|241094|241530|241538|241539|241540|241541|241542|241543|241545|243578|243601|251312|251313|251314|251315|252648|254496|258327|258329|258331|258332|258335|258337|258338|258339|258340|258341|258342|258343|258345|258347|258351|258353|258355|258359|258463|258485|258488|258490|258496|258503|258504|258506|258508|258510|258512|258514|258515|258516|258694|258695|258696|258719|258720|258721|258730|258731|258741|258742|259046|259049|259050|259053|259054|259059|259063|259180|259855|259979|264150|264154|264160|264463|264595|265970|266059|266236|266280|267851|268668|268720|270737|272503|275156|290242|290243|290244|290254|290271|290276|291029|291030|291039|291040|291049|291066|291078|291087|291088|291095|292040|292043|292067|292081|292090|292102|293484|293487|293511|293525|293530|294310|294320|294337|294342|294384|294386|294391|294399|294413|294701|294707|294717|294718|294722|294738|296388|296777|296810|296816|296821|296824|296828|296829|296830|296833|296836|302179|302180|302189|302190|302194|303500|303501|303502|303516|305367|305381|305389|305392|306921|306933|306939|306940|306944|306951|306952|310199|310299|310302|310317|310321|311818|311837|311851|311852|311856|311859|311865|312489|312495|313787|313790|313794|313799|313800|313812|313813|313817|316586|316730|316733|316755|316757|316774|318378|318415|318430|318469|319399|319980|319984|319986|319987|319988|320021|320022|320025|324081|324158|324231|324233|324234|324236|324243|324519|324544|324581|325306|325539|326169|326170|326178|326180|326190|326206|326214|327103|327120|327127|327130|330195|330197|330280|330281|330298|331596|331669|331676|331677|331685|335279|335288|336624|336627|336647|345107|346356|350563|350579|350595|350597|350916|351633|351642|351644|353590|359192|359804|359805|359809|360088|360503|361865|362737|367445|367452|367476|367497|367508|367512|367765|367776|367783|367784|367787|367791|367801|367803|367809|367810|367811|367813|367820|367836|368878|368903|369016|369017|369023|369044|369060|369314|369342|369347|369350|369597|369606|369612|369616|369621|369622|370973|370997|371001|371299|371342|371367|371368|371370|372141|372185|372201|372227|372232|372345|372874|372943|372972|372974|372976|372990|373145|373166|373183|373185|373191|373194|374044|374060|374890|374980|375021|375028|376975|376980|376983|377986|378276|378481|379688|379689|379690|379691|389717|390050|390546|393764|393765|393777|393783|393784|393795|393798|393801|393813|393814|393819|393827|393830|393838|393840|393845|393846|393849|393853|393854|393855|393862|393865|393867|393868|393869|393870|393873|393874|393877|393878|393883|393974|393978|393993|393995|394007|394017|394023|394027|394028|394035|394045|394050|394057|394074|394076|394093|394094|394100|394116|394118|394127|394181|394183|394217|394224|394226|394236|394237|394245|394250|394254|394270|394274|394277|394280|394281|394284|394286|394295|395482|395485|395487|395489|395490|395495|395497|395609|395611|395666|395668|395671|395676|395682|395693|395694|395703|395706|395716|395717|395787|395791|395793|395798|395799|395802|395804|395807|395816|395853|395862|395863|395866|395868|395878|396077|396079|396080|396081|396097|396099|396100|396137|396141|396142|396154|396157|396158|396168|396172|396173|396175|396180|396181|396184|396186|396190|396192|396195|396196|396197|396198|396200|396202|396203|396206|396470|396478|396480|396483|396487|396488|396489|397566|397568|397752|398006|398090|398096|398098|398114|398119|398124|398149|398151|398184|398187|398459|398466|398469|398476|398482|398520|398523|398529|398575|398589|398593|398596|398597|398601|398883|398909|398911|398913|398923|398937|398947|398948|398953|398955|399063|399069|399073|399081|399094|399097|399110|399114|399350|399368|399375|399377|399379|399386|399390|399405|399408|399410|399415|399421|399422|399425|399428|399635|399650|399658|399661|399662|399663|399664|399668|403718|404147|404153|404180|404182|404235|404238|407049|407054|407058|407069|408326|408327|408328|408331|408610|408620|408624|408625|414959|415088|419276|421916|422353|424566|425913|426333|433355|433386|434589|434680|442551|442552|443518|443552|443555|443556|444780|444789|444968|444974|446223|446224|449942|452799|452835|452843|452848|452851|452853|452857|452864|452866|452868|452869|452879|452886|452889|452890|452906|452910|452912|452914|453192|453193|453205|453209|453218|453226|453228|453230|453232|453236|453239|453244|453250|453254|453255|453267|453274|453276|453284|453286|453288|453294|453295|453297|453300|453302|453306|453310|453313|453318|453326|453561|453636|453639|453641|453648|453650|453663|453664|453669|453682|453689|453693|453696|453698|453703|453705|453708|456462|456463|456465|456466|456471|456478|456490|456492|456493|456494|456496|456498|456787|456789|456799|456805|456807|456811|456816|456825|456830|456831|456834|456836|456840|456843|456848|456853|456855|456861|456863|456864|456867|456876|456887|456889|456891|457021|457026|457032|457040|457042|457045|457052|457054|457056|457057|457059|457063|457075|457078|457080|457097|457098|457100|457103|457107|457113|457116|457513|457515|457517|457519|457521|457523|457524|457525|457527|457531|457532|457533|457538|457543|457544|457545|457546|457549|457553|457555|457556|457557|457558|457560|457563|457569|457576|457583|457588|457639|457640|457643|457644|457648|457651|457655|457660|457663|457665|457666|457984|457986|457991|457993|457995|457997|458005|458009|458012|458016|460426|460923|460987|460993|461000|461003|461004|461009|461128|461129|461133|461136|461145|461153|461299|461301|461418|461421|461422|461423|461575|461776|461778|461781|461790|461792|462066|462075|462077|462084|462091|462093|462099|462101|462103|462107|462108|462112|462116|462118|462126|462318|462341|462343|462345|462349|462353|462359|462360|462361|462369|462370|462798|462816|462817|462825|462826|462856|462868|462869|462873|462874|462880|462881|462884|462887|462909|462910|462936|462947|462949|462951|462956|462960|462963|462974|462978|462980|462982|462984|462987|462993|462999|463011|463018|469342|470337|470341|470344|470881|471380|471554|471609|480686|480699|487008|487480|487583|487957|488008|492809|495332|495572|496994|497392|500382|500388|500409|500416|500695|500698|500704|500869|501017|501035|501662|501851|501937|501942|501947|501971|501978|502282|502899|503246|503511|503516|503760|504080|504101|504293|507284|507294|508163|509633|509635|509636|509637|509640|509642|509645|509651|509654|509656|509657|509659|509661|509669|509671|509676|509677|509846|509849|509851|509852|509868|509870|509872|509919|509920|509925|509926|509927|509933|509934|509938|509943|509950|509952|509961|509966|509974|509976|509982|510273|510275|510276|510278|510280|510372|510375|510376|510378|510381|510382|510384|510385|510389|510390|510824|511087|511088|511091|511092|511093|511103|511519|514348|514349|514350|514625|519602|519603|519676|519681|519682|519685|519689|519690|519691|519692|519693|519695|519697|519699|519700|519701|519702|519706|519707|519712|519714|519718|519719|519729|519731|519736|519893|519900|519950|519951|519954|519956|519958|519959|519962|519968|519970|519971|519972|519973|519974|519975|519979|519981|519985|519994|519998|521613|521901|522289|522440|522442|522445|522446|522448|522451|522454|522456|522467|522474|522624|522656|522663|522666|522669|522670|522684|522687|522688|522690|522691|522697|522699|522702|522705|522714|522764|522769|522770|522772|522774|522779|522781|522792|522796|522799|522804|522875|522879|522892|522895|522903|522905|522914|522921|522923|522928|523075|523077|523085|523090|523092|523093|523097|523099|523127|523130|523136|523140|523141|523146|523314|523320|523322|523329|523331|523338|523342|523351|523356|523363|523365|523370|523427|523437|523439|523444|523450|523452|523455|523458|523462|523464|525601|526035|526038|526040|526103|526107|526109|526118|526133|526137|526213|526217|526237|526545|526548|526549|526552|526564|527043|527050|527052|527054|527056|527057|527062|527065|527066|527068|527070|527072|527075|527082|527084|527085|527086|527088|527113|527118|527120|527123|527126|527131|527246|527287|527293|527300|527301|527306|527307|527311|527318|527320|527325|527332|527334|527338|527551|527562|527565|527566|527568|527576|527579|527585|527587|527591|527594|527595|527599|527605|527607|533497|533543|533551|533557|533824|533837|534062|534380|536660|536741|536839|551700|551716|551782|552404|559524|559557|559559|559561|559563|559565|559567|559569|559571|559573|559575|559577|559712|559714|559716|559718|559720|559722|559724|559726|561036|561403|561404|561406|561407|561689|561696|561705|561718|561724|561727|561728|561738|561740|561741|561786|561787|561794|561798|561800|561819|561868|561870|561874|562237|562241|562243|562246|563370|563371|563400|563402|563408|563412|563414|563415|563418|563847|564148|564156|564160|564161|564166|564168|564443|564445|564452|564458|564460|564465|564466|564468|564470|564475|564506|564552|564553|564557|564562|564577|565361|565390|565392|565394|565398|565399|565402|565406|565411|565417|565563|565622|565633|565638|565639|565649|566556|566561|566568|566570|566571|566581|566583|566595|566751|566752|566754|566757|566765|566769|566781|566783|566784|567156|567160|567162|567195|567198|567203|567208|567211|567212|567942|567955|567960|567961|567964|567970|567973|567976|567978|567980|567982|567984|567990|569946|569952|570472|570473|570495|570501|571128|571130|571195|571516|571752|571756|571758|571765|571766|571774|573077|573078|573489|575088|575089|576958|579801|609524|609671|609672|611746|617347|617348|617349|617351|617353|617356|617851|617855|617858|617861|617862|620277|621167|621168|621263|625801|631796|631797|631798|631799|631863|631864|631865|631866|631867|631868|631869|631870|631871|631872|631873|631874|631875|631876|631877|631878|631879|631880|631881|631882|631883|631884|631885|631886|631887|631888|631889|631890|631891|631892|631893|631894|631895|631896|631897|631898|631899|631900|631901|631902|631903|631904|631905|631906|631907|635883|635884|635885|635886|635887|635888|635889|635890|635891|635892|635893|635894|635895|635896|635897|635898|635899|635900|635901|635902|635903|635904|635905|635906|635907|635908|635909|635910|635911|635912|635913|635914|635915|635916|635917|635918|635919|635920|635921|635922|635923|635924|635925|635926|635927|635928|635929|635930|635931|635932|636389|636390|636391|636392|636393|636394|636395|636396|636397|636398|636399|636400|636401|636402|636403|636404|636405|636406|636407|636408|636409|636410|636411|636412|636413|636414|636415|636416|636417|636418|636419|636420|636421|636422|636423|636424|636425|636426|636427|636428|636429|636430|636431|636432|636433|636434|636435|636436|639818|639819|639820|639821|639822|639899|639900|639901|639902|639903|639904|639905|639906|639907|639908|639909|639910|641009|641010|641011|641031|641032|641033|641034|641035|641036|641037|641038|641039|641040|641041|641042|641043|641044|641045|641046|641047|641048|641049|641050|641051|641052|641053|641054|641055|641056|641057|641058|641059|641060|641061|641062|648631|648632|648945|648946|648947|648948|651002|651051|651132|651133|651149|651592|651654|651665|651709|651783|652177|652180|652187|652189|652238|652371|652485|652529|653657|654680|654920|655810|656628|665692|665693|665698|665703|665708|665717|665721|665725|665735|665737|665741|665743|665749|665759|665763|665767|665770|665777|665780|666235|666364|666370|666371|666380|666389|666393|666394|666398|666400|666406|666413|666423|666431|666434|666442|666447|666491|666494|666496|666499|666504|666507|666510|666515|666517|666520|666529|666531|666537|666545|666561|666758|666763|666765|666773|666775|666777|666785|666786|666793|666796|672406|672418|672420|679382|679392|679407|679417|679441|679446|680050|683612|683613|683614|683616|683861|683862|683863|683944|684239|684253|684318|684320|685210|685211|685229|685312|685313|685314|685315|685316|685317|685320|685321|685322|685323|685324|685325|685326|685327|685328|685329|685330|685331|685332|685333|685334|685335|685336|685337|685338|685339|685340|685341|685342|685343|685344|685346|685347|685348|685349|685350|685351|685352|685353|685354|685355|685356|685357|685358|685359|685360|685361|685362|685363|685364|685365|685366|685367|685368|685369|685371|685372|685373|685374|685375|685376|685377|685378|686479|686481|686482|686483|686484|686487|686488|686489|686999|687000|687001|687002|687128|687137|687138|687721|687751|687752|687949|687952|687953|687954|687961|687962|687963|687964|687966|687967|687971|687973|687977|687978|687979|689243|689750|689860|689861|689863|689892|690035|690036|690037|690038|690040|690042|690043|691501|691503|692179|692180|692182|692183|692184|692185|692186|692965|692966|692984|692985|693172|693177|693178|693179|693181|693182|693184|693185|695507|695559|699932|699933|702282|722393|730256|736024|736025|737928|744187|744848|748682|750496|750498|750500|750505|752544|752545|752632|753319|759561|760168|760170|764180|766168|766169|766174|769063|769065|769082|774920|775350|775382|775818|775821|775831|775834|775881|775888|775890|775957|775962|775966|776028|776031|781813|781852|781853|782939|784355|787769|787778|787801|787803|787805|789805|792718|793046|795515|798991|799643|800838|805681|819294|819439|819765|819766|819850|819851|819852|819921|820353|820354|820355|820356|820357|820488|820489|820490|820491|828575|828576|828577|828578|828579|828580|828581|828673|828674|828675|828676|828677|828678|828679|828680|828681|828682|828683|828684|828685|828686|828687|828688|828689|828690|828691|828692|828693|828694|828695|828696|828697|828698|828699|828700|828701|828702|828703|828704|828705|828706|828707|828708|828709|828710|828711|828712|828713|828714|828715|833311|833312|833313|833314|833315|833316|833317|833318|833319|833320|833321|833322|833323|833324|833325|833326|833327|833328|833329|833330|833331|833332|833333|833334|833335|833336|833337|833338|833339|833340|833341|833342|833343|833344|833345|833346|833347|833348|833349|833350|833351|833352|833353|833354|833355|833356|833357|833358|833359|833360|833361|833362|833363|833364|833884|833885|833886|833887|833888|833889|833890|833891|833892|833893|833894|833895|833896|833897|833898|833899|833900|833901|833902|833903|833904|833905|833906|833907|833908|833909|833910|833911|833912|833913|833914|838117|838118|838119|838120|838121|838232|838233|838234|838235|838236|838237|838238|838239|838240|838241|838242|838243|838247|838248|838249|838250|839755|839756|839757|839758|839759|839811|839812|839813|839814|839815|839816|839817|839818|839819|839820|839821|839822|839823|839824|839825|839826|839827|839828|839829|839830|839831|839832|839833|839834|839835|839836|839837|839838|839839|839840|848301|848302|848303|848304|848734|848735|848736|850960|851144|851495|851943|851945|852342|852611|852686|852901|889976|889994|897669|897677|910662|910665|910681|910685|910693|910698|910702|910725|910738|910774|911595|911643|911656|916923|917013|917085|923360|923361|923362|923383|923384|923385|923386|923387|923388|923389|923390|923391|923392|923393|923394|923395|923396|923397|923398|924750|924751|924752|924753|924754|924755|924756|924757|924758|924759|924760|924761|924762|924763|924764|924765|924926|924927|924928|924929|924930|924931|926153|926154|926181|926182|926183|926184|926185|926583|926594|926595|926596|926597|926598|926599|926600|926601|929163|932087|932117|932118|932119|932120|932121|932122|932123|932124|932125|932126|932127|932128|932129|932130|932131|932132|932133|933762|933763|933764|933765|933766|933767|933768|933769|933770|933771|933772|933773|933774|933775|933776|933777|933778|933779|933780|933781|933782|933783|933784|933785|933786|934010|934011|934012|934013|934014|934015|934016|934017|934018|934019|934020|934021|935434|935435|935468|935469|935470|935471|935472|935473|936057|936058|936079|936080|936081|936082|936083|936084|936085|936086|936087|936088|938940|938941|939954|940070|940071|940072|940085|940086|940087|940209|940210|940263|940503|941030|941031|941032|943705|943744|943745|943746|943747|943748|943749|943750|943751|943752|943753|943754|943755|943756|943757|943758|943759|943760|943761|943762|943763|943764|943765|945515|945516|945517|945518|945519|945520|945521|945522|945523|945524|945525|945526|945527|945528|945529|945530|945531|945775|945776|945777|945778|945779|945780|945781|945782|945783|947357|947358|947393|947394|947395|947945|947946|947973|947974|947975|947976|947977|947978|947979|947980|947981|947982|947983|947984|947985|947986|951216|953595|953634|953635|953636|953637|953638|953639|953640|953641|955090|955091|955092|955093|955094|955095|955096|955097|955098|955223|955224|955225|955226|955227|955228|955229|955230|955231|955232|955233|955234|955235|955236|955237|955238|956453|956454|956455|956456|956849|956850|956851|956852|956853|956854|956855|959710|959843|959868|959986|960639|960785|965302|965304|965307|965308|965313|980164", "text": "Long QT syndrome" }, { - "baseId": "15829|21928|24750|24758|24759|29095|29097|33920|45630|59458|101651|134576|136391|140302|140303|142182|142197|195749|205140|205774|207213|210615|210797|211149|211150|211157|211565|211675|211676|211925|211926|226977|246907|275552|276897|277891|277894|277975|277989|277994|277997|284147|284169|284922|285476|285485|286190|286192|287223|287238|287257|287274|288486|288520|288525|288894|292000|297817|297817|297944|297946|297948|299993|303686|304362|304363|304367|304368|304388|304443|309036|314314|314316|314909|314910|314917|320418|320428|320430|320434|321722|321729|327780|328875|329187|329191|329201|329202|335813|335814|335817|335819|337676|337682|337687|342444|342879|349198|349201|349420|349421|349424|349425|349427|349428|350421|353482|359158|359993|360002|404755|408382|424968|439523|488342|513258|513313|513602|539032|539038|543697|550839|552061|552062|553389|576145|578436|619957|622426|679783|735048|735050|735051|742261|742262|742263|765072|765073|773006|773007|782269|858260|858261|861143|961239|978179|978180", + "upstreamId": "15829|21928|24750|24758|24759|29095|29097|33920|45630|59458|101651|134576|136391|140302|140303|142182|142197|195749|205140|205774|207213|210615|210797|211149|211150|211157|211565|211675|211676|211925|211926|226977|246907|275552|276897|277891|277894|277975|277989|277994|277997|284147|284169|284922|285476|285485|286190|286192|287223|287238|287257|287274|288486|288520|288525|288894|292000|297817|297817|297944|297946|297948|299993|303686|304362|304363|304367|304368|304388|304443|309036|314314|314316|314909|314910|314917|320418|320428|320430|320434|321722|321729|327780|328875|329187|329191|329201|329202|335813|335814|335817|335819|337676|337682|337687|342444|342879|349198|349201|349420|349421|349424|349425|349427|349428|350421|353482|359158|359993|360002|404755|408382|424968|439523|488342|513258|513313|513602|539032|539038|543697|550839|552061|552062|553389|576145|578436|619957|622426|679783|735048|735050|735051|742261|742262|742263|765072|765073|773006|773007|782269|858260|858261|861143|961239|978179|978180", "text": "Mitochondrial complex I deficiency" }, { - "baseId": "15830|39162|39163|134578", + "upstreamId": "15830|39162|39163|134578", "text": "Persistent truncus arteriosus (disease)" }, { - "baseId": "15831|153723|512951", + "upstreamId": "15831|153723|512951", "text": "Lipase deficiency, combined" }, { - "baseId": "15832|15834|15835|15836|15837|15838|15840|15842|15843|15844|15845|15846|15846|15847|15848|15849|15849|15850|15851|15852|15853|15854|15855|15859|15860|15861|15862|15863|15864|15865|15867|15868|15870|15873|15874|15875|15880|15881|33882|49938|49939|49940|49941|49942|49943|49944|49945|49947|49948|49948|49949|49949|49950|49951|49951|49952|49953|49954|49955|49956|49957|49958|49959|49960|49961|49962|49963|49964|49965|49966|49968|49969|49969|49970|49971|49972|49973|49974|49975|49976|51408|51408|51409|51410|51412|51413|51414|51415|51417|51418|51418|51419|51420|51421|86510|93506|93507|93526|94125|94138|94142|94472|94473|98250|98252|98256|98257|98258|98259|98259|98260|132732|132733|132734|132735|132738|132739|132741|132742|132743|132744|132745|132747|132748|132749|132750|132751|132752|132753|132754|132755|132757|132758|132759|132760|132761|132763|132764|132765|132766|132767|132768|132769|132769|132770|132771|132772|132773|132774|132775|132776|132777|132778|132779|132780|132781|132782|132783|136436|136453|136459|136466|136470|136480|136481|136485|136495|136497|136504|136511|137244|137245|137247|137248|137249|137250|137251|137252|137253|137254|137255|137256|137257|137258|137260|137261|137262|137263|137264|137267|137268|137269|137270|137271|137272|137274|137275|137276|137277|137278|139394|139395|139396|139397|139398|139399|139400|139401|139402|139403|139404|139405|139406|139407|139408|139409|139410|139411|139412|139413|139414|139415|139416|139417|139418|139419|139420|139421|139421|139422|139423|139425|139426|139427|139428|139429|139430|139431|139432|139433|139434|139435|139436|139437|139438|139439|139440|139441|140108|140109|140110|140111|140112|140113|140114|150514|150553|150568|150577|150604|150605|150607|150618|150623|150665|150666|150666|150668|150669|150670|150683|150702|150708|150735|150754|150761|150775|150781|150822|150838|150882|150905|150930|150990|151007|151080|151082|151084|151150|151150|151229|151235|151238|151262|151288|151325|151332|151332|151336|151359|151395|151402|151404|151404|151449|151488|151490|151641|151642|151645|151657|151724|151729|151758|151874|151903|151913|151915|151916|151918|151928|151952|151954|151960|151982|151992|152156|152171|152173|152180|152233|152288|152445|152459|152493|152667|152697|152718|152720|166240|166241|166242|166243|166244|166245|166246|166247|166248|171099|171100|178765|180167|180168|180170|180171|180173|180176|180177|180178|180179|180180|180181|180183|180184|180185|180186|180187|180188|180189|180192|180193|180194|180195|180196|180197|180198|180199|180200|180202|180204|180205|180207|180208|180209|180211|180212|180214|180215|180216|180217|180218|180219|180220|180221|180223|180224|180225|180226|180228|180229|180230|180231|180232|180233|180234|181206|181207|181208|181209|181210|182312|182313|182313|182318|182319|182320|182321|182322|182323|182324|182325|182326|182328|182329|182330|182331|182332|182333|182335|182336|182336|182338|182339|182340|182341|182342|182345|182346|182347|182348|182350|182351|182352|182353|182355|182357|182358|182359|182360|182361|182362|182363|182364|182365|182366|182367|182368|182369|182370|182371|182373|182374|182375|182376|182377|182378|182381|182382|182383|182384|182385|182386|182387|182388|182389|182390|182391|182392|182393|182394|182395|182396|182397|182398|182399|182401|182402|182406|182408|182409|182409|182411|182412|182413|182414|182415|182416|182417|182420|182421|182422|182424|182427|182428|182429|182430|182431|182432|182434|182436|182438|182439|182441|182441|182442|182443|182444|182445|182446|182447|182449|182451|182452|182454|182455|182458|182459|182461|182462|182465|182466|182468|182469|182471|182472|182473|182474|182475|182477|182478|182479|182480|182481|182482|182483|182484|182485|182487|182488|182489|182490|182491|182492|182493|186026|186027|186028|186029|186030|186031|186032|186033|186034|186035|186036|186037|186038|186039|186040|186041|186042|186043|186044|186045|191748|198622|212382|212384|212385|212386|212388|212389|212390|212391|212392|212394|212395|212396|212397|212398|212399|212400|212401|212403|212404|212405|212406|212406|212407|212408|212409|212410|212411|212412|212413|212414|212415|212416|212417|212418|212419|212421|212422|212423|212424|212425|212426|212427|212428|212429|212431|212434|212436|212437|212438|212439|212440|212441|212442|212443|212444|212445|212446|212447|212448|212449|212450|212451|212452|212453|212454|212455|212456|212457|212458|212459|212460|212460|214643|214646|214652|214654|214655|214658|214659|214661|214662|214663|214664|214667|214673|214674|214675|214677|214678|214680|214681|214682|214682|214684|214686|214688|214689|214691|214692|214693|214694|214695|214700|214702|214707|214710|214711|214716|214718|214720|214722|214727|214729|214731|214732|214733|214735|215306|221481|221482|221484|221485|221486|221488|221490|221491|221492|221493|221494|221495|221496|221497|221498|221499|221500|221501|221502|221503|221504|221505|221506|221507|221508|221509|221510|221511|221512|221513|221514|221515|221516|221517|221521|221522|221523|221524|221525|221526|221527|221528|221529|221530|221531|221532|221533|221534|221535|221536|221537|221538|221539|221540|221541|221542|221543|221544|221545|221546|221547|221549|221552|224682|226319|226320|226321|226322|232982|232983|232984|232985|232987|232988|232989|232990|232991|232994|232995|232997|232999|233001|233002|233008|233008|233009|233011|233012|233015|233017|233018|233019|233020|233022|233023|233024|233025|233026|233027|233030|233031|233031|233035|233036|233037|233038|233039|233040|233041|233042|233044|233048|233049|233050|233052|233054|233056|233058|233058|233059|233060|233063|233064|233066|233068|233071|233073|233075|233076|233077|233078|233079|233080|233081|233082|233084|233086|233087|233089|233090|233092|233093|233094|233095|233099|233100|233101|233102|233103|233104|233105|233106|233107|233109|233110|233111|233112|233116|233117|233119|233120|233121|233125|233128|233129|233130|233135|233136|233137|233139|233140|233141|233142|233143|233144|233145|233147|233148|233150|233151|233156|233159|233161|233163|233166|233169|233170|233176|233177|233178|233180|233181|233183|233185|233186|233189|233190|233191|233192|233194|233195|233196|233197|233199|233200|233201|233202|233203|233204|233205|233208|233210|233211|233212|233213|233216|233217|233218|233221|233222|233224|233225|233227|237761|239511|239512|239518|239519|239520|239521|239522|239523|239524|239525|239526|239527|239528|239529|239530|239531|239532|239534|239536|239537|239538|239539|239540|239541|239542|239543|239544|239545|239546|239547|239549|239550|239551|239552|239553|239554|239555|239556|239557|239558|239560|239561|239562|239563|239564|239565|239566|239567|239568|239569|239570|239571|239572|239573|239574|239575|239576|239577|239578|239579|239580|239581|239582|239583|239584|239586|239587|239588|239589|239590|239591|239592|239593|239594|239595|239596|239597|239598|239599|239600|239601|239602|239603|239604|239605|239606|239607|239608|239609|239610|239611|239612|239613|239614|239615|239616|239617|239619|239620|239621|239622|239623|244085|244086|244087|244088|244410|244413|244416|244417|244418|244419|244420|244421|244422|244423|244426|244427|244435|244436|244439|244440|244441|244443|244447|244448|244449|244450|244451|244452|244453|244454|244455|244456|244457|244458|244459|246969|248490|251611|259788|259789|259791|259800|264174|264221|267576|294906|294911|294920|294923|294929|296697|296698|300412|300427|300432|358749|358750|358751|358752|358753|358754|358755|358756|358757|358758|358759|358760|358761|358762|358763|358764|358765|358766|358767|358768|358769|358770|358771|358772|358773|358774|358775|358776|358777|358778|358779|358780|358781|358782|358783|358784|360864|361861|361862|367720|367723|367727|367746|367752|367755|367761|367763|367766|367774|367782|367792|367794|367796|367800|367807|367822|367823|368039|368041|368044|368048|368051|368057|368062|368067|368068|368073|368083|368084|368086|368089|368091|368098|368110|368111|368114|368119|368120|368132|368134|368141|368145|368160|368176|368181|368191|368194|369243|369280|369293|369295|369296|369299|369306|369311|369313|369348|369353|369365|369373|369379|369381|369404|369406|394158|394162|394166|394178|394184|394188|394189|394197|394199|394201|394202|394220|394227|394231|394231|394238|394240|394242|394244|394246|394252|394257|394260|394263|394267|394272|394276|394289|394291|394293|394294|394296|394299|394302|394304|394306|394308|394312|394317|394318|394319|394321|394324|394329|394331|394333|394335|394340|394341|394342|394343|394345|394346|394347|394348|394349|394350|394353|394354|394355|394358|394359|394363|394368|394374|394375|394378|394380|394381|394384|394385|394387|394389|394390|394392|394394|394395|394397|394398|394399|394401|394403|394404|394405|394407|394408|394410|394411|394412|394413|394416|394417|394418|394419|394421|394424|394425|394426|394427|394428|394429|394430|394432|394433|394434|394435|394436|394439|394440|394442|394443|394445|394446|394448|394449|394451|394455|394456|394459|394461|394462|394463|394464|394465|394466|394470|394471|394475|394476|394478|394480|394481|394482|394483|394484|394485|394486|394488|394489|394491|394493|394494|394495|394496|394500|394504|394505|394507|394508|394512|394513|394514|394515|394516|394520|394521|394523|394525|394526|394527|394529|394532|394534|394535|394542|394543|394547|394549|394551|394562|394564|394565|394567|394573|394574|394577|394581|394585|394586|394614|394623|394626|394633|394634|394639|394640|394643|394648|394649|394652|394653|394660|394661|394663|394664|394666|394667|394670|394673|394675|394680|394683|394685|394686|394687|394688|394689|394693|394697|394698|394699|394700|394701|394705|394707|394708|394710|394711|394712|394714|394717|394718|394721|394722|394723|394725|394726|394727|394733|394745|394754|394772|394775|394779|394785|394789|394804|394812|394813|394814|394825|394828|394830|394835|394837|394843|394845|394853|394856|394863|394871|394878|394880|394888|394896|394908|394912|394913|394922|394927|394928|394931|394934|394947|394948|394950|394952|394955|394956|394961|394964|394973|394974|394976|394980|394982|394985|394990|394991|394992|394993|394997|395003|406479|406480|406481|406482|406485|406486|406488|406489|406490|406491|406492|406493|406495|406496|406498|406500|406502|406503|406504|406507|406510|406513|406514|406515|406518|406519|406520|406522|406525|406526|406527|406528|406529|406532|406534|406535|406536|406537|406538|406541|406542|406544|406546|406547|406548|406550|406551|406552|406553|406555|406558|406560|406563|406564|406565|406566|406567|406568|406573|406575|406577|406578|406579|406580|406581|406582|406583|406584|406585|406587|406588|406589|406590|406593|406594|406597|406598|406600|419003|419591|419592|419593|419594|419597|419602|419603|419604|419611|419612|419614|419615|419616|419617|419618|419619|419628|419630|419631|419637|419639|419640|419645|419656|419660|419665|419668|419672|419675|419676|419683|420992|421024|421025|421030|421036|421037|421505|427247|427249|427251|427256|427257|427260|427264|427267|427271|427281|427290|427299|427314|432579|432583|432585|432587|432588|432590|432592|432593|432596|432598|432601|433004|443647|453598|453601|453602|453612|453614|453665|453667|453671|453673|453678|453680|453691|453692|453695|453697|453700|453702|453704|453710|453710|453711|453716|453723|453725|453729|453733|453741|453745|453751|453756|453757|453758|453760|453764|453771|453773|453776|453784|453789|453790|453792|453796|453801|453802|453804|453808|453811|453815|453825|453826|453828|453838|453842|453847|453850|453852|453853|453859|453862|453868|453870|453876|453877|453879|453880|453889|453892|453897|453897|453901|453910|453911|453912|453914|453922|453926|453928|453932|453933|453934|453936|453938|453941|453945|453946|453948|453951|453953|453955|453957|453959|453962|453963|453964|453966|453968|453971|453972|453973|453974|453977|453978|453981|453983|453984|453985|453987|453988|453989|453990|453993|453995|453996|453997|453998|454000|454001|454003|454004|454005|454012|454013|454014|454017|454019|454021|454022|454024|454026|454028|454031|454032|454034|454036|454037|454041|454042|454043|454045|454048|454049|454050|454052|454053|454055|454056|454057|454059|454060|454063|454068|454070|454073|454074|454075|454076|454079|454080|454081|454082|454083|454084|454085|454086|454087|454088|454089|454090|454091|454093|454094|454096|454097|454100|454101|454103|454104|454105|454106|454107|454108|454109|454111|454113|454114|454116|454117|454118|454119|454122|454123|454125|454126|454127|454128|454129|454130|454131|454132|454133|454134|454135|454137|454139|454140|454142|454143|454145|454146|454147|454151|454154|454155|454160|454162|454164|454166|454168|454168|454171|454175|454176|454177|454180|454182|454183|454185|454188|454189|454190|454192|454193|454194|454198|454200|454202|454203|454206|454209|454210|454210|454212|454213|454214|454217|454219|454221|454223|454225|454227|454228|454229|454230|454231|454232|454233|454237|454240|454243|454248|454250|454252|454253|454254|454255|454258|454259|454260|454262|454263|454265|454266|454267|454268|454270|454273|454274|454276|454277|454278|454280|454281|454282|454283|454284|454285|454286|454287|454288|454292|454294|454313|454316|454318|454322|454325|454332|454346|454350|454355|454359|454361|454366|454374|454375|454379|454382|454383|454387|454389|454395|454398|454399|454400|454403|454412|454420|454423|454429|454436|454441|454443|454444|454446|454450|454454|454463|454468|454469|454470|454473|454475|454477|454479|454481|454483|454483|454485|454486|454494|454495|454496|454497|454500|454502|454503|454504|454507|454508|454513|454514|454515|454521|454522|454524|454527|454528|454531|454532|454533|454534|454539|454540|454541|454544|454549|454550|454552|454555|454556|454558|454561|454562|454564|454567|454568|454569|454570|454571|454573|454576|454578|454580|454581|454582|454584|454586|454587|454590|454591|454593|454596|454601|454604|454608|454609|454612|454613|454618|454619|454621|454623|454625|454626|454629|454640|454641|454647|454650|454662|454664|454667|454682|454683|454693|454695|454697|454699|454700|454702|454704|454708|454713|454715|454725|454729|454733|454735|454736|454740|454744|454747|454748|454753|454755|454762|454767|454779|454784|454791|454801|454803|454807|454809|454811|454812|454830|454831|454848|454851|454869|454872|454873|454880|454881|454882|454883|454885|454885|454887|454888|454890|454891|454897|454900|454901|454902|454907|454908|454912|454914|454922|454936|454937|454942|473513|473523|473525|473527|473531|473533|473562|473569|473581|473592|473594|473598|473600|473602|473604|473606|473607|473608|473609|473615|473617|473622|473624|473628|473635|473637|473645|473648|473655|473658|473659|473664|473669|473670|473673|473677|473678|473679|473680|473681|473691|473692|473693|473694|473696|473699|473700|473702|473707|473708|473709|473712|473715|473719|473720|473724|473727|473728|473730|473733|473734|473735|473736|473737|473746|473753|473755|473758|473759|473765|473771|473775|473776|473777|473778|473779|473780|473781|473782|473785|473788|473789|473797|473798|473799|473800|473803|473806|473807|473810|473812|473816|473818|473819|473820|473821|473823|473824|473828|473829|473833|473834|473838|473839|473844|473849|473850|473854|473857|473858|473861|473863|473864|473865|473865|473869|473873|473876|473878|473887|473888|473889|473893|473897|473900|473902|473907|473908|473909|473911|473912|473913|473915|473922|473926|473927|473929|473933|473934|473935|473936|473941|473945|473948|473949|473951|473952|473953|473955|473957|473960|473961|473962|473964|473967|473970|473973|473975|473976|473977|473981|473984|473987|473989|473990|473992|473998|474000|474003|474004|474006|474009|474010|474011|474012|474014|474015|474020|474022|474036|474037|474038|474043|474045|474046|474058|474059|474075|474085|474099|474103|474106|474112|474117|474122|474127|474129|474148|474168|480465|480466|482542|482553|482568|482572|482579|482580|482582|482586|482587|482592|482593|482594|482596|482597|482599|482601|482603|482606|482609|482611|482612|482616|482617|482618|482619|482621|482622|482625|482626|482636|482639|482645|482650|482651|482654|482662|482666|482676|482680|482681|482686|482688|482700|483740|483756|483784|483795|483797|483803|483805|483811|483812|483813|483816|483817|483822|483824|483828|483835|483840|483843|483852|483854|483855|483857|483861|483864|483868|483869|483872|483877|483881|483883|483885|483887|483894|483895|483901|483904|483907|483912|483915|483919|483921|483929|483933|483935|483939|483950|483953|483956|483968|483980|483995|483999|484029|484049|484055|485614|485617|485620|485622|485624|485629|487026|487090|487092|487117|487118|487130|487149|487160|487161|496350|496381|496795|496796|496817|500582|500593|500597|500609|500614|500889|500899|500923|500934|501075|520154|520176|520179|520187|520188|520190|520192|520195|520202|520211|520218|520220|520224|520225|520230|520234|520236|520237|520242|520244|520246|520251|520259|520261|520264|520268|520272|520276|520277|520279|520286|520296|520301|520309|520317|520318|520319|520320|520322|520323|520328|520329|520330|520332|520333|520335|520337|520340|520341|520344|520346|520348|520349|520351|520353|520357|520358|520360|520361|520362|520365|520371|520372|520374|520376|520383|520384|520385|520387|520389|520390|520391|520396|520397|520399|520400|520403|520404|520406|520407|520408|520409|520414|520416|520419|520421|520423|520424|520426|520435|520438|520441|520447|520463|520464|520469|520474|520476|520480|520482|520484|520486|520487|520491|520492|520497|520499|520503|520504|520516|520519|520521|520530|520531|520533|520535|520541|520542|520544|520548|520557|520562|520566|520567|520569|520570|520572|520573|520575|520576|520577|520578|520581|520584|520586|520587|520588|520589|520590|520591|520592|520595|520598|520601|520603|520604|520607|520609|520611|520612|520613|520614|520615|520617|520618|520620|520621|520622|520624|520626|520628|520629|520631|520633|520634|520635|520636|520637|520638|520639|520640|520641|520642|520643|520645|520646|520648|520649|520650|520652|520655|520657|520658|520664|520668|520669|520673|520675|520679|520680|520681|520682|520689|520690|520691|520692|520693|520695|520704|520706|520707|520709|520711|520714|520717|520719|520722|520724|520725|520727|520728|520730|520732|520734|520735|520736|520737|520739|520741|520742|520746|520750|520751|520753|520755|520756|520757|520758|520762|520763|520764|520766|520767|520769|520770|520774|520775|520777|520778|520779|520781|520782|520783|520785|520787|520788|520790|520791|520792|520797|520801|520804|520805|520807|520809|520810|520811|520812|520813|520814|520819|520820|520825|520829|520830|520831|520834|520835|520837|520838|520840|520847|520849|520854|520857|520860|520871|520874|520878|520880|520884|520900|520906|520907|520908|536215|536301|539130|539131|539235|539236|539237|539238|539239|539240|539241|539242|539243|539244|539245|539246|539247|550673|550677|551852|559853|559855|559857|559859|559861|559863|559865|559867|559869|559871|559873|559875|559877|559879|559881|559883|559885|559887|559889|559891|559893|559895|559897|559899|559901|559903|559905|559907|559909|559911|559913|559915|559917|559919|559921|559923|559925|559927|559929|559931|559933|559935|559937|559939|559941|559943|559945|559947|559949|559951|559953|559954|559955|559957|559959|559961|559963|559965|559967|559969|559970|559971|559972|559974|559976|559978|559980|559982|559984|559986|559988|559990|559992|559994|559996|559998|560000|560002|560004|560006|560008|560010|560012|560014|560016|560018|560020|560022|560024|560026|560028|560030|560032|560034|560036|560038|560040|560042|560044|560046|560048|560050|560052|560054|560056|560058|560060|560062|560064|560066|560068|560070|560072|560074|560076|560078|560080|560082|562288|562313|562314|562315|562317|562325|562330|562332|562334|562341|562345|562355|562357|562369|562372|562376|562377|562382|562385|562386|562388|562389|562391|562393|562395|562398|562399|562403|562405|562406|562409|562413|562415|562417|562419|562421|562426|562428|562435|562438|562441|562446|562449|562451|562453|562455|562458|562460|562462|562464|562466|562468|562470|562472|562474|562480|562482|562488|562490|562491|562498|562505|562507|562509|562522|562529|562532|562534|562538|562543|562545|562546|562550|562552|562562|562564|564162|564172|564176|564195|564204|564205|564212|564213|564215|564216|564222|564223|564228|564230|564231|564243|564246|564252|564265|564266|564268|564269|564271|564275|564277|564279|564280|564281|564292|564293|564298|564301|564305|564306|564307|564316|564317|564320|564324|564335|564341|564344|564351|564352|564358|564362|564363|564364|564369|564375|564380|564383|564384|564391|564394|564404|564412|564414|575712|575713|575714|575715|575717|575718|575719|575720|575721|575722|575723|575724|575725|575727|575728|575729|575730|575731|575732|575733|575734|575735|578306|609166|609167|611055|611056|611062|611064|611067|611068|611069|611996|617037|617040|617043|617044|617049|617057|617059|617064|617065|617075|617078|617085|617086|617087|617088|617089|617093|617098|617106|617114|617123|617139|617142|617149|617153|617162|617167|617174|617177|617187|617191|617200|617210|617212|617213|617214|617215|617220|617221|617225|617226|617231|617235|617238|617241|617243|617246|617248|617254|617255|617259|617269|617270|617272|617281|617284|617285|619271|619357|619364|632553|632554|632555|632556|632557|632558|632559|632560|632561|632562|632563|632564|632565|632566|632567|632568|632569|632570|632571|632572|632573|632574|632575|632576|632577|632578|632579|632580|632581|632582|632583|632584|632585|632586|632587|632588|632589|632590|632591|632592|632593|632594|632595|632596|632597|632598|632599|632600|632601|632602|632603|632604|632605|632606|632607|632608|632609|632610|632611|632612|632613|632614|632615|632616|632617|632618|632619|632620|632621|632622|632623|632624|632625|632626|632627|632628|632629|632630|632631|632632|632633|632634|632635|632636|632637|632638|632639|632640|632641|632642|632643|632644|632645|632646|632647|632648|632649|632650|632651|632652|632653|632654|632655|632656|632657|632658|632659|632660|632661|632662|632663|632664|632665|632666|632667|632668|632669|632670|632671|632672|632673|632674|632675|632676|632677|632678|632679|632680|632681|632682|632683|632684|632685|632686|632687|632688|632689|632690|632691|632692|632693|632694|632695|632696|632697|632698|632699|632700|632701|632702|632703|632704|632705|632706|632707|632708|632709|632710|632711|632712|632713|632714|632715|632716|632717|632718|632719|632720|632721|632722|632723|632724|632725|632726|632727|632728|632729|632730|632731|632732|632733|632734|632735|632736|632737|632738|632739|632740|632741|632742|632743|632744|632745|632746|632747|632748|632749|632750|632751|632752|632753|632754|632755|632756|632757|632758|632759|632760|632761|632762|632763|632764|632765|632766|632767|632768|632769|632770|632771|632772|632773|632774|632775|632776|632777|632778|632779|632780|632781|632782|632783|632784|632785|632786|632787|632788|632789|632790|632791|632792|632793|632794|632795|632796|632797|632798|632799|632800|632801|632802|632803|632804|632805|632806|632807|632808|632809|632810|632811|632812|632813|632814|632815|632816|632817|632818|632819|632820|632821|632822|632823|632824|632825|632826|632827|632828|632829|632830|632831|632832|632833|632834|632835|632836|632837|632838|632839|632840|632841|632842|632843|632844|632845|632846|632847|632848|632849|632850|632851|632852|632853|632854|632855|632856|632857|632858|632859|632860|632861|632862|632863|632864|632865|632866|632867|651182|651212|651214|651216|651229|651230|651234|651242|651248|651250|651252|651254|651287|651296|651299|651303|651334|651387|651390|651391|651394|651400|651401|651402|651403|651404|651406|651407|651408|651411|651412|651413|651415|651417|651420|651422|651426|651427|651428|651433|651434|651436|651437|651438|651440|651442|651444|651445|651446|651447|651448|651450|651451|651452|651454|651455|651456|651457|651460|651462|651465|651467|651469|651470|651471|651472|651478|651481|651488|651490|651491|651492|651493|651494|651498|651500|651502|651505|651507|651509|651510|651512|651513|651515|651517|651519|651521|651522|651524|651530|651531|651533|651536|651539|651541|651542|651547|651554|651556|651557|660620|686568|686570|691643|691644|691645|691648|691649|691652|709560|709561|734802|749128|749130|749132|749135|764682|764683|764703|764715|764720|764721|764722|764724|764731|764733|764734|764736|764737|764745|782072|782073|782074|782075|782077|782078|782082|782085|782087|782089|787224|789452|789465|789466|790489|790490|790491|790492|790493|790494|790495|790496|790497|790498|790499|790500|790501|790502|790503|790504|790505|790506|790507|790508|790509|795606|807796|807798|807800|807803|807804|807809|807811|807819|807826|807839|807849|807857|807862|807885|807889|807894|807895|807907|807939|807944|807949|807960|807962|807965|807976|808004|808005|808009|808018|808030|808047|808068|808090|808101|808104|808106|808119|808122|808123|808124|808128|808141|808152|808154|808155|808161|808164|808168|808179|808182|808185|808189|808196|808200|808203|808210|808219|808223|808225|808228|808238|808257|808267|808274|808275|808286|808289|808295|808300|819505|819506|819507|819508|819509|819510|819511|819512|819513|819516|819517|819518|819519|819520|819521|819522|819523|829580|829581|829582|829583|829584|829585|829586|829587|829588|829589|829590|829591|829592|829593|829594|829595|829596|829597|829598|829599|829600|829601|829602|829603|829604|829605|829606|829607|829608|829609|829610|829611|829612|829613|829614|829615|829616|829617|829618|829619|829620|829621|829622|829623|829624|829625|829626|829627|829628|829629|829630|829631|829632|829633|829634|829635|829636|829637|829638|829639|829640|829641|829642|829643|829644|829645|829646|829647|829648|829649|829650|829651|829652|829653|829654|829655|829656|829657|829658|829659|829660|829661|829662|829663|829664|829665|829666|829667|829668|829669|829670|829671|829672|829673|829674|829675|829676|829677|829678|829679|829680|829681|829682|829683|829684|829685|829686|829687|829688|829689|829690|829691|829692|829693|829694|829695|829696|829697|829698|829699|829700|829701|829702|829703|829704|829705|829706|829707|829708|829709|829710|829711|829712|829713|829714|829715|829716|829717|829718|829719|829720|829721|829722|829723|829724|829725|829726|829727|829728|829729|829730|829731|829732|829733|829734|829735|829736|829737|829738|829739|829740|829741|829742|829743|829744|829745|829746|829747|829748|829749|829750|829751|829752|829753|829754|829755|829756|829757|829758|829759|829760|829761|829762|829763|829764|829765|829766|829767|829768|829769|829770|829771|829772|829773|829774|829775|829776|829777|829778|829779|829780|829781|829782|829783|829784|829785|829786|829787|829788|829789|829790|829791|829792|829793|829794|829795|829796|829797|829798|829799|829800|829801|829802|829803|829804|829805|829806|829807|829808|829809|829810|829811|829812|829813|829814|829815|829816|829817|829818|829819|829820|829821|829822|829823|829824|829825|829826|829827|829828|829829|829830|829831|829832|829833|829834|829835|829836|829837|850998|851145|851230|851232|851831|859361|909804|909827|909840|909852|909854|909866|909890|909903|909942|909969|909999|910000|910005|910054|910057|910065|910069|910071|910077|910081|910085|910094|910122|910134|910135|910146|915403|916937|916939|916944|923627|923628|923629|923630|923631|923632|923633|923634|923635|923636|923637|923638|923639|923640|923641|923642|923643|923644|923645|923646|923647|923648|923649|923650|923651|923652|923653|923654|923655|923656|923657|923658|923659|923660|923661|923662|923663|923664|923665|923666|923667|923668|923669|923670|923671|923672|923673|923674|923675|923676|923677|923678|923679|923680|923681|923682|923683|923684|923685|923686|923687|923688|923689|923690|923691|923692|923693|923694|923695|923696|923697|923698|923699|923700|923701|923702|923703|923704|923705|923706|923707|923708|923709|923710|923711|923712|923713|923714|923715|923716|923717|923718|923719|923720|923721|923722|923723|932491|932492|932493|932494|932495|932496|932497|932498|932499|932500|932501|932502|932503|932504|932505|932506|932507|932508|932509|932510|932511|932512|932513|932514|932515|932516|932517|932518|932519|932520|932521|932522|932523|932524|932525|932526|932527|932528|932529|932530|932531|932532|932533|932534|932535|932536|932537|932538|932539|932540|932541|932542|932543|932544|932545|932546|932547|932548|932549|932550|932551|932552|932553|932554|932555|932556|932557|932558|932559|932560|932561|932562|932563|932564|932565|932566|932567|932568|932569|932570|932571|932572|932573|932574|932575|932576|939975|940788|940789|940790|944160|944161|944162|944163|944164|944165|944166|944167|944168|944169|944170|944171|944172|944173|944174|944175|944176|944177|944178|944179|944180|944181|944182|944183|944184|944185|944186|944187|944188|944189|944190|944191|944192|944193|944194|944195|944196|944197|944198|944199|944200|944201|944202|944203|944204|944205|944206|944207|944208|944209|944210|944211|944212|944213|944214|944215|944216|944217|944218|944219|944220|944221|944222|944223|944224|944225|944226|944227|944228|944229|944230|944231|944232|944233|944234|944235|944236|944237|944238|944239|944240|944241|944242|944243|944244|944245|944246|944247|944248|944249|944250|944251|944252|944253|944254|953879|953880|953881|953882|953883|953884|953885|953886|953887|953888|953889|953890|953891|953892|953893|953894|953895|953896|953897|953898|953899|953900|953901|953902|953903|953904|953905|953906|953907|953908|953909|953910|953911|953912|953913|953914|953915|953916|953917|953918|953919|953920|953921|953922|953923|953924|959740|959741|960545|964238|966389|970797|976523", + "upstreamId": "15832|15834|15835|15836|15837|15838|15840|15842|15843|15844|15845|15846|15846|15847|15848|15849|15849|15850|15851|15852|15853|15854|15855|15859|15860|15861|15862|15863|15864|15865|15867|15868|15870|15873|15874|15875|15880|15881|33882|49938|49939|49940|49941|49942|49943|49944|49945|49947|49948|49948|49949|49949|49950|49951|49951|49952|49953|49954|49955|49956|49957|49958|49959|49960|49961|49962|49963|49964|49965|49966|49968|49969|49969|49970|49971|49972|49973|49974|49975|49976|51408|51408|51409|51410|51412|51413|51414|51415|51417|51418|51418|51419|51420|51421|86510|93506|93507|93526|94125|94138|94142|94472|94473|98250|98252|98256|98257|98258|98259|98259|98260|132732|132733|132734|132735|132738|132739|132741|132742|132743|132744|132745|132747|132748|132749|132750|132751|132752|132753|132754|132755|132757|132758|132759|132760|132761|132763|132764|132765|132766|132767|132768|132769|132769|132770|132771|132772|132773|132774|132775|132776|132777|132778|132779|132780|132781|132782|132783|136436|136453|136459|136466|136470|136480|136481|136485|136495|136497|136504|136511|137244|137245|137247|137248|137249|137250|137251|137252|137253|137254|137255|137256|137257|137258|137260|137261|137262|137263|137264|137267|137268|137269|137270|137271|137272|137274|137275|137276|137277|137278|139394|139395|139396|139397|139398|139399|139400|139401|139402|139403|139404|139405|139406|139407|139408|139409|139410|139411|139412|139413|139414|139415|139416|139417|139418|139419|139420|139421|139421|139422|139423|139425|139426|139427|139428|139429|139430|139431|139432|139433|139434|139435|139436|139437|139438|139439|139440|139441|140108|140109|140110|140111|140112|140113|140114|150514|150553|150568|150577|150604|150605|150607|150618|150623|150665|150666|150666|150668|150669|150670|150683|150702|150708|150735|150754|150761|150775|150781|150822|150838|150882|150905|150930|150990|151007|151080|151082|151084|151150|151150|151229|151235|151238|151262|151288|151325|151332|151332|151336|151359|151395|151402|151404|151404|151449|151488|151490|151641|151642|151645|151657|151724|151729|151758|151874|151903|151913|151915|151916|151918|151928|151952|151954|151960|151982|151992|152156|152171|152173|152180|152233|152288|152445|152459|152493|152667|152697|152718|152720|166240|166241|166242|166243|166244|166245|166246|166247|166248|171099|171100|178765|180167|180168|180170|180171|180173|180176|180177|180178|180179|180180|180181|180183|180184|180185|180186|180187|180188|180189|180192|180193|180194|180195|180196|180197|180198|180199|180200|180202|180204|180205|180207|180208|180209|180211|180212|180214|180215|180216|180217|180218|180219|180220|180221|180223|180224|180225|180226|180228|180229|180230|180231|180232|180233|180234|181206|181207|181208|181209|181210|182312|182313|182313|182318|182319|182320|182321|182322|182323|182324|182325|182326|182328|182329|182330|182331|182332|182333|182335|182336|182336|182338|182339|182340|182341|182342|182345|182346|182347|182348|182350|182351|182352|182353|182355|182357|182358|182359|182360|182361|182362|182363|182364|182365|182366|182367|182368|182369|182370|182371|182373|182374|182375|182376|182377|182378|182381|182382|182383|182384|182385|182386|182387|182388|182389|182390|182391|182392|182393|182394|182395|182396|182397|182398|182399|182401|182402|182406|182408|182409|182409|182411|182412|182413|182414|182415|182416|182417|182420|182421|182422|182424|182427|182428|182429|182430|182431|182432|182434|182436|182438|182439|182441|182441|182442|182443|182444|182445|182446|182447|182449|182451|182452|182454|182455|182458|182459|182461|182462|182465|182466|182468|182469|182471|182472|182473|182474|182475|182477|182478|182479|182480|182481|182482|182483|182484|182485|182487|182488|182489|182490|182491|182492|182493|186026|186027|186028|186029|186030|186031|186032|186033|186034|186035|186036|186037|186038|186039|186040|186041|186042|186043|186044|186045|191748|198622|212382|212384|212385|212386|212388|212389|212390|212391|212392|212394|212395|212396|212397|212398|212399|212400|212401|212403|212404|212405|212406|212406|212407|212408|212409|212410|212411|212412|212413|212414|212415|212416|212417|212418|212419|212421|212422|212423|212424|212425|212426|212427|212428|212429|212431|212434|212436|212437|212438|212439|212440|212441|212442|212443|212444|212445|212446|212447|212448|212449|212450|212451|212452|212453|212454|212455|212456|212457|212458|212459|212460|212460|214643|214646|214652|214654|214655|214658|214659|214661|214662|214663|214664|214667|214673|214674|214675|214677|214678|214680|214681|214682|214682|214684|214686|214688|214689|214691|214692|214693|214694|214695|214700|214702|214707|214710|214711|214716|214718|214720|214722|214727|214729|214731|214732|214733|214735|215306|221481|221482|221484|221485|221486|221488|221490|221491|221492|221493|221494|221495|221496|221497|221498|221499|221500|221501|221502|221503|221504|221505|221506|221507|221508|221509|221510|221511|221512|221513|221514|221515|221516|221517|221521|221522|221523|221524|221525|221526|221527|221528|221529|221530|221531|221532|221533|221534|221535|221536|221537|221538|221539|221540|221541|221542|221543|221544|221545|221546|221547|221549|221552|224682|226319|226320|226321|226322|232982|232983|232984|232985|232987|232988|232989|232990|232991|232994|232995|232997|232999|233001|233002|233008|233008|233009|233011|233012|233015|233017|233018|233019|233020|233022|233023|233024|233025|233026|233027|233030|233031|233031|233035|233036|233037|233038|233039|233040|233041|233042|233044|233048|233049|233050|233052|233054|233056|233058|233058|233059|233060|233063|233064|233066|233068|233071|233073|233075|233076|233077|233078|233079|233080|233081|233082|233084|233086|233087|233089|233090|233092|233093|233094|233095|233099|233100|233101|233102|233103|233104|233105|233106|233107|233109|233110|233111|233112|233116|233117|233119|233120|233121|233125|233128|233129|233130|233135|233136|233137|233139|233140|233141|233142|233143|233144|233145|233147|233148|233150|233151|233156|233159|233161|233163|233166|233169|233170|233176|233177|233178|233180|233181|233183|233185|233186|233189|233190|233191|233192|233194|233195|233196|233197|233199|233200|233201|233202|233203|233204|233205|233208|233210|233211|233212|233213|233216|233217|233218|233221|233222|233224|233225|233227|237761|239511|239512|239518|239519|239520|239521|239522|239523|239524|239525|239526|239527|239528|239529|239530|239531|239532|239534|239536|239537|239538|239539|239540|239541|239542|239543|239544|239545|239546|239547|239549|239550|239551|239552|239553|239554|239555|239556|239557|239558|239560|239561|239562|239563|239564|239565|239566|239567|239568|239569|239570|239571|239572|239573|239574|239575|239576|239577|239578|239579|239580|239581|239582|239583|239584|239586|239587|239588|239589|239590|239591|239592|239593|239594|239595|239596|239597|239598|239599|239600|239601|239602|239603|239604|239605|239606|239607|239608|239609|239610|239611|239612|239613|239614|239615|239616|239617|239619|239620|239621|239622|239623|244085|244086|244087|244088|244410|244413|244416|244417|244418|244419|244420|244421|244422|244423|244426|244427|244435|244436|244439|244440|244441|244443|244447|244448|244449|244450|244451|244452|244453|244454|244455|244456|244457|244458|244459|246969|248490|251611|259788|259789|259791|259800|264174|264221|267576|294906|294911|294920|294923|294929|296697|296698|300412|300427|300432|358749|358750|358751|358752|358753|358754|358755|358756|358757|358758|358759|358760|358761|358762|358763|358764|358765|358766|358767|358768|358769|358770|358771|358772|358773|358774|358775|358776|358777|358778|358779|358780|358781|358782|358783|358784|360864|361861|361862|367720|367723|367727|367746|367752|367755|367761|367763|367766|367774|367782|367792|367794|367796|367800|367807|367822|367823|368039|368041|368044|368048|368051|368057|368062|368067|368068|368073|368083|368084|368086|368089|368091|368098|368110|368111|368114|368119|368120|368132|368134|368141|368145|368160|368176|368181|368191|368194|369243|369280|369293|369295|369296|369299|369306|369311|369313|369348|369353|369365|369373|369379|369381|369404|369406|394158|394162|394166|394178|394184|394188|394189|394197|394199|394201|394202|394220|394227|394231|394231|394238|394240|394242|394244|394246|394252|394257|394260|394263|394267|394272|394276|394289|394291|394293|394294|394296|394299|394302|394304|394306|394308|394312|394317|394318|394319|394321|394324|394329|394331|394333|394335|394340|394341|394342|394343|394345|394346|394347|394348|394349|394350|394353|394354|394355|394358|394359|394363|394368|394374|394375|394378|394380|394381|394384|394385|394387|394389|394390|394392|394394|394395|394397|394398|394399|394401|394403|394404|394405|394407|394408|394410|394411|394412|394413|394416|394417|394418|394419|394421|394424|394425|394426|394427|394428|394429|394430|394432|394433|394434|394435|394436|394439|394440|394442|394443|394445|394446|394448|394449|394451|394455|394456|394459|394461|394462|394463|394464|394465|394466|394470|394471|394475|394476|394478|394480|394481|394482|394483|394484|394485|394486|394488|394489|394491|394493|394494|394495|394496|394500|394504|394505|394507|394508|394512|394513|394514|394515|394516|394520|394521|394523|394525|394526|394527|394529|394532|394534|394535|394542|394543|394547|394549|394551|394562|394564|394565|394567|394573|394574|394577|394581|394585|394586|394614|394623|394626|394633|394634|394639|394640|394643|394648|394649|394652|394653|394660|394661|394663|394664|394666|394667|394670|394673|394675|394680|394683|394685|394686|394687|394688|394689|394693|394697|394698|394699|394700|394701|394705|394707|394708|394710|394711|394712|394714|394717|394718|394721|394722|394723|394725|394726|394727|394733|394745|394754|394772|394775|394779|394785|394789|394804|394812|394813|394814|394825|394828|394830|394835|394837|394843|394845|394853|394856|394863|394871|394878|394880|394888|394896|394908|394912|394913|394922|394927|394928|394931|394934|394947|394948|394950|394952|394955|394956|394961|394964|394973|394974|394976|394980|394982|394985|394990|394991|394992|394993|394997|395003|406479|406480|406481|406482|406485|406486|406488|406489|406490|406491|406492|406493|406495|406496|406498|406500|406502|406503|406504|406507|406510|406513|406514|406515|406518|406519|406520|406522|406525|406526|406527|406528|406529|406532|406534|406535|406536|406537|406538|406541|406542|406544|406546|406547|406548|406550|406551|406552|406553|406555|406558|406560|406563|406564|406565|406566|406567|406568|406573|406575|406577|406578|406579|406580|406581|406582|406583|406584|406585|406587|406588|406589|406590|406593|406594|406597|406598|406600|419003|419591|419592|419593|419594|419597|419602|419603|419604|419611|419612|419614|419615|419616|419617|419618|419619|419628|419630|419631|419637|419639|419640|419645|419656|419660|419665|419668|419672|419675|419676|419683|420992|421024|421025|421030|421036|421037|421505|427247|427249|427251|427256|427257|427260|427264|427267|427271|427281|427290|427299|427314|432579|432583|432585|432587|432588|432590|432592|432593|432596|432598|432601|433004|443647|453598|453601|453602|453612|453614|453665|453667|453671|453673|453678|453680|453691|453692|453695|453697|453700|453702|453704|453710|453710|453711|453716|453723|453725|453729|453733|453741|453745|453751|453756|453757|453758|453760|453764|453771|453773|453776|453784|453789|453790|453792|453796|453801|453802|453804|453808|453811|453815|453825|453826|453828|453838|453842|453847|453850|453852|453853|453859|453862|453868|453870|453876|453877|453879|453880|453889|453892|453897|453897|453901|453910|453911|453912|453914|453922|453926|453928|453932|453933|453934|453936|453938|453941|453945|453946|453948|453951|453953|453955|453957|453959|453962|453963|453964|453966|453968|453971|453972|453973|453974|453977|453978|453981|453983|453984|453985|453987|453988|453989|453990|453993|453995|453996|453997|453998|454000|454001|454003|454004|454005|454012|454013|454014|454017|454019|454021|454022|454024|454026|454028|454031|454032|454034|454036|454037|454041|454042|454043|454045|454048|454049|454050|454052|454053|454055|454056|454057|454059|454060|454063|454068|454070|454073|454074|454075|454076|454079|454080|454081|454082|454083|454084|454085|454086|454087|454088|454089|454090|454091|454093|454094|454096|454097|454100|454101|454103|454104|454105|454106|454107|454108|454109|454111|454113|454114|454116|454117|454118|454119|454122|454123|454125|454126|454127|454128|454129|454130|454131|454132|454133|454134|454135|454137|454139|454140|454142|454143|454145|454146|454147|454151|454154|454155|454160|454162|454164|454166|454168|454168|454171|454175|454176|454177|454180|454182|454183|454185|454188|454189|454190|454192|454193|454194|454198|454200|454202|454203|454206|454209|454210|454210|454212|454213|454214|454217|454219|454221|454223|454225|454227|454228|454229|454230|454231|454232|454233|454237|454240|454243|454248|454250|454252|454253|454254|454255|454258|454259|454260|454262|454263|454265|454266|454267|454268|454270|454273|454274|454276|454277|454278|454280|454281|454282|454283|454284|454285|454286|454287|454288|454292|454294|454313|454316|454318|454322|454325|454332|454346|454350|454355|454359|454361|454366|454374|454375|454379|454382|454383|454387|454389|454395|454398|454399|454400|454403|454412|454420|454423|454429|454436|454441|454443|454444|454446|454450|454454|454463|454468|454469|454470|454473|454475|454477|454479|454481|454483|454483|454485|454486|454494|454495|454496|454497|454500|454502|454503|454504|454507|454508|454513|454514|454515|454521|454522|454524|454527|454528|454531|454532|454533|454534|454539|454540|454541|454544|454549|454550|454552|454555|454556|454558|454561|454562|454564|454567|454568|454569|454570|454571|454573|454576|454578|454580|454581|454582|454584|454586|454587|454590|454591|454593|454596|454601|454604|454608|454609|454612|454613|454618|454619|454621|454623|454625|454626|454629|454640|454641|454647|454650|454662|454664|454667|454682|454683|454693|454695|454697|454699|454700|454702|454704|454708|454713|454715|454725|454729|454733|454735|454736|454740|454744|454747|454748|454753|454755|454762|454767|454779|454784|454791|454801|454803|454807|454809|454811|454812|454830|454831|454848|454851|454869|454872|454873|454880|454881|454882|454883|454885|454885|454887|454888|454890|454891|454897|454900|454901|454902|454907|454908|454912|454914|454922|454936|454937|454942|473513|473523|473525|473527|473531|473533|473562|473569|473581|473592|473594|473598|473600|473602|473604|473606|473607|473608|473609|473615|473617|473622|473624|473628|473635|473637|473645|473648|473655|473658|473659|473664|473669|473670|473673|473677|473678|473679|473680|473681|473691|473692|473693|473694|473696|473699|473700|473702|473707|473708|473709|473712|473715|473719|473720|473724|473727|473728|473730|473733|473734|473735|473736|473737|473746|473753|473755|473758|473759|473765|473771|473775|473776|473777|473778|473779|473780|473781|473782|473785|473788|473789|473797|473798|473799|473800|473803|473806|473807|473810|473812|473816|473818|473819|473820|473821|473823|473824|473828|473829|473833|473834|473838|473839|473844|473849|473850|473854|473857|473858|473861|473863|473864|473865|473865|473869|473873|473876|473878|473887|473888|473889|473893|473897|473900|473902|473907|473908|473909|473911|473912|473913|473915|473922|473926|473927|473929|473933|473934|473935|473936|473941|473945|473948|473949|473951|473952|473953|473955|473957|473960|473961|473962|473964|473967|473970|473973|473975|473976|473977|473981|473984|473987|473989|473990|473992|473998|474000|474003|474004|474006|474009|474010|474011|474012|474014|474015|474020|474022|474036|474037|474038|474043|474045|474046|474058|474059|474075|474085|474099|474103|474106|474112|474117|474122|474127|474129|474148|474168|480465|480466|482542|482553|482568|482572|482579|482580|482582|482586|482587|482592|482593|482594|482596|482597|482599|482601|482603|482606|482609|482611|482612|482616|482617|482618|482619|482621|482622|482625|482626|482636|482639|482645|482650|482651|482654|482662|482666|482676|482680|482681|482686|482688|482700|483740|483756|483784|483795|483797|483803|483805|483811|483812|483813|483816|483817|483822|483824|483828|483835|483840|483843|483852|483854|483855|483857|483861|483864|483868|483869|483872|483877|483881|483883|483885|483887|483894|483895|483901|483904|483907|483912|483915|483919|483921|483929|483933|483935|483939|483950|483953|483956|483968|483980|483995|483999|484029|484049|484055|485614|485617|485620|485622|485624|485629|487026|487090|487092|487117|487118|487130|487149|487160|487161|496350|496381|496795|496796|496817|500582|500593|500597|500609|500614|500889|500899|500923|500934|501075|520154|520176|520179|520187|520188|520190|520192|520195|520202|520211|520218|520220|520224|520225|520230|520234|520236|520237|520242|520244|520246|520251|520259|520261|520264|520268|520272|520276|520277|520279|520286|520296|520301|520309|520317|520318|520319|520320|520322|520323|520328|520329|520330|520332|520333|520335|520337|520340|520341|520344|520346|520348|520349|520351|520353|520357|520358|520360|520361|520362|520365|520371|520372|520374|520376|520383|520384|520385|520387|520389|520390|520391|520396|520397|520399|520400|520403|520404|520406|520407|520408|520409|520414|520416|520419|520421|520423|520424|520426|520435|520438|520441|520447|520463|520464|520469|520474|520476|520480|520482|520484|520486|520487|520491|520492|520497|520499|520503|520504|520516|520519|520521|520530|520531|520533|520535|520541|520542|520544|520548|520557|520562|520566|520567|520569|520570|520572|520573|520575|520576|520577|520578|520581|520584|520586|520587|520588|520589|520590|520591|520592|520595|520598|520601|520603|520604|520607|520609|520611|520612|520613|520614|520615|520617|520618|520620|520621|520622|520624|520626|520628|520629|520631|520633|520634|520635|520636|520637|520638|520639|520640|520641|520642|520643|520645|520646|520648|520649|520650|520652|520655|520657|520658|520664|520668|520669|520673|520675|520679|520680|520681|520682|520689|520690|520691|520692|520693|520695|520704|520706|520707|520709|520711|520714|520717|520719|520722|520724|520725|520727|520728|520730|520732|520734|520735|520736|520737|520739|520741|520742|520746|520750|520751|520753|520755|520756|520757|520758|520762|520763|520764|520766|520767|520769|520770|520774|520775|520777|520778|520779|520781|520782|520783|520785|520787|520788|520790|520791|520792|520797|520801|520804|520805|520807|520809|520810|520811|520812|520813|520814|520819|520820|520825|520829|520830|520831|520834|520835|520837|520838|520840|520847|520849|520854|520857|520860|520871|520874|520878|520880|520884|520900|520906|520907|520908|536215|536301|539130|539131|539235|539236|539237|539238|539239|539240|539241|539242|539243|539244|539245|539246|539247|550673|550677|551852|559853|559855|559857|559859|559861|559863|559865|559867|559869|559871|559873|559875|559877|559879|559881|559883|559885|559887|559889|559891|559893|559895|559897|559899|559901|559903|559905|559907|559909|559911|559913|559915|559917|559919|559921|559923|559925|559927|559929|559931|559933|559935|559937|559939|559941|559943|559945|559947|559949|559951|559953|559954|559955|559957|559959|559961|559963|559965|559967|559969|559970|559971|559972|559974|559976|559978|559980|559982|559984|559986|559988|559990|559992|559994|559996|559998|560000|560002|560004|560006|560008|560010|560012|560014|560016|560018|560020|560022|560024|560026|560028|560030|560032|560034|560036|560038|560040|560042|560044|560046|560048|560050|560052|560054|560056|560058|560060|560062|560064|560066|560068|560070|560072|560074|560076|560078|560080|560082|562288|562313|562314|562315|562317|562325|562330|562332|562334|562341|562345|562355|562357|562369|562372|562376|562377|562382|562385|562386|562388|562389|562391|562393|562395|562398|562399|562403|562405|562406|562409|562413|562415|562417|562419|562421|562426|562428|562435|562438|562441|562446|562449|562451|562453|562455|562458|562460|562462|562464|562466|562468|562470|562472|562474|562480|562482|562488|562490|562491|562498|562505|562507|562509|562522|562529|562532|562534|562538|562543|562545|562546|562550|562552|562562|562564|564162|564172|564176|564195|564204|564205|564212|564213|564215|564216|564222|564223|564228|564230|564231|564243|564246|564252|564265|564266|564268|564269|564271|564275|564277|564279|564280|564281|564292|564293|564298|564301|564305|564306|564307|564316|564317|564320|564324|564335|564341|564344|564351|564352|564358|564362|564363|564364|564369|564375|564380|564383|564384|564391|564394|564404|564412|564414|575712|575713|575714|575715|575717|575718|575719|575720|575721|575722|575723|575724|575725|575727|575728|575729|575730|575731|575732|575733|575734|575735|578306|609166|609167|611055|611056|611062|611064|611067|611068|611069|611996|617037|617040|617043|617044|617049|617057|617059|617064|617065|617075|617078|617085|617086|617087|617088|617089|617093|617098|617106|617114|617123|617139|617142|617149|617153|617162|617167|617174|617177|617187|617191|617200|617210|617212|617213|617214|617215|617220|617221|617225|617226|617231|617235|617238|617241|617243|617246|617248|617254|617255|617259|617269|617270|617272|617281|617284|617285|619271|619357|619364|632553|632554|632555|632556|632557|632558|632559|632560|632561|632562|632563|632564|632565|632566|632567|632568|632569|632570|632571|632572|632573|632574|632575|632576|632577|632578|632579|632580|632581|632582|632583|632584|632585|632586|632587|632588|632589|632590|632591|632592|632593|632594|632595|632596|632597|632598|632599|632600|632601|632602|632603|632604|632605|632606|632607|632608|632609|632610|632611|632612|632613|632614|632615|632616|632617|632618|632619|632620|632621|632622|632623|632624|632625|632626|632627|632628|632629|632630|632631|632632|632633|632634|632635|632636|632637|632638|632639|632640|632641|632642|632643|632644|632645|632646|632647|632648|632649|632650|632651|632652|632653|632654|632655|632656|632657|632658|632659|632660|632661|632662|632663|632664|632665|632666|632667|632668|632669|632670|632671|632672|632673|632674|632675|632676|632677|632678|632679|632680|632681|632682|632683|632684|632685|632686|632687|632688|632689|632690|632691|632692|632693|632694|632695|632696|632697|632698|632699|632700|632701|632702|632703|632704|632705|632706|632707|632708|632709|632710|632711|632712|632713|632714|632715|632716|632717|632718|632719|632720|632721|632722|632723|632724|632725|632726|632727|632728|632729|632730|632731|632732|632733|632734|632735|632736|632737|632738|632739|632740|632741|632742|632743|632744|632745|632746|632747|632748|632749|632750|632751|632752|632753|632754|632755|632756|632757|632758|632759|632760|632761|632762|632763|632764|632765|632766|632767|632768|632769|632770|632771|632772|632773|632774|632775|632776|632777|632778|632779|632780|632781|632782|632783|632784|632785|632786|632787|632788|632789|632790|632791|632792|632793|632794|632795|632796|632797|632798|632799|632800|632801|632802|632803|632804|632805|632806|632807|632808|632809|632810|632811|632812|632813|632814|632815|632816|632817|632818|632819|632820|632821|632822|632823|632824|632825|632826|632827|632828|632829|632830|632831|632832|632833|632834|632835|632836|632837|632838|632839|632840|632841|632842|632843|632844|632845|632846|632847|632848|632849|632850|632851|632852|632853|632854|632855|632856|632857|632858|632859|632860|632861|632862|632863|632864|632865|632866|632867|651182|651212|651214|651216|651229|651230|651234|651242|651248|651250|651252|651254|651287|651296|651299|651303|651334|651387|651390|651391|651394|651400|651401|651402|651403|651404|651406|651407|651408|651411|651412|651413|651415|651417|651420|651422|651426|651427|651428|651433|651434|651436|651437|651438|651440|651442|651444|651445|651446|651447|651448|651450|651451|651452|651454|651455|651456|651457|651460|651462|651465|651467|651469|651470|651471|651472|651478|651481|651488|651490|651491|651492|651493|651494|651498|651500|651502|651505|651507|651509|651510|651512|651513|651515|651517|651519|651521|651522|651524|651530|651531|651533|651536|651539|651541|651542|651547|651554|651556|651557|660620|686568|686570|691643|691644|691645|691648|691649|691652|709560|709561|734802|749128|749130|749132|749135|764682|764683|764703|764715|764720|764721|764722|764724|764731|764733|764734|764736|764737|764745|782072|782073|782074|782075|782077|782078|782082|782085|782087|782089|787224|789452|789465|789466|790489|790490|790491|790492|790493|790494|790495|790496|790497|790498|790499|790500|790501|790502|790503|790504|790505|790506|790507|790508|790509|795606|807796|807798|807800|807803|807804|807809|807811|807819|807826|807839|807849|807857|807862|807885|807889|807894|807895|807907|807939|807944|807949|807960|807962|807965|807976|808004|808005|808009|808018|808030|808047|808068|808090|808101|808104|808106|808119|808122|808123|808124|808128|808141|808152|808154|808155|808161|808164|808168|808179|808182|808185|808189|808196|808200|808203|808210|808219|808223|808225|808228|808238|808257|808267|808274|808275|808286|808289|808295|808300|819505|819506|819507|819508|819509|819510|819511|819512|819513|819516|819517|819518|819519|819520|819521|819522|819523|829580|829581|829582|829583|829584|829585|829586|829587|829588|829589|829590|829591|829592|829593|829594|829595|829596|829597|829598|829599|829600|829601|829602|829603|829604|829605|829606|829607|829608|829609|829610|829611|829612|829613|829614|829615|829616|829617|829618|829619|829620|829621|829622|829623|829624|829625|829626|829627|829628|829629|829630|829631|829632|829633|829634|829635|829636|829637|829638|829639|829640|829641|829642|829643|829644|829645|829646|829647|829648|829649|829650|829651|829652|829653|829654|829655|829656|829657|829658|829659|829660|829661|829662|829663|829664|829665|829666|829667|829668|829669|829670|829671|829672|829673|829674|829675|829676|829677|829678|829679|829680|829681|829682|829683|829684|829685|829686|829687|829688|829689|829690|829691|829692|829693|829694|829695|829696|829697|829698|829699|829700|829701|829702|829703|829704|829705|829706|829707|829708|829709|829710|829711|829712|829713|829714|829715|829716|829717|829718|829719|829720|829721|829722|829723|829724|829725|829726|829727|829728|829729|829730|829731|829732|829733|829734|829735|829736|829737|829738|829739|829740|829741|829742|829743|829744|829745|829746|829747|829748|829749|829750|829751|829752|829753|829754|829755|829756|829757|829758|829759|829760|829761|829762|829763|829764|829765|829766|829767|829768|829769|829770|829771|829772|829773|829774|829775|829776|829777|829778|829779|829780|829781|829782|829783|829784|829785|829786|829787|829788|829789|829790|829791|829792|829793|829794|829795|829796|829797|829798|829799|829800|829801|829802|829803|829804|829805|829806|829807|829808|829809|829810|829811|829812|829813|829814|829815|829816|829817|829818|829819|829820|829821|829822|829823|829824|829825|829826|829827|829828|829829|829830|829831|829832|829833|829834|829835|829836|829837|850998|851145|851230|851232|851831|859361|909804|909827|909840|909852|909854|909866|909890|909903|909942|909969|909999|910000|910005|910054|910057|910065|910069|910071|910077|910081|910085|910094|910122|910134|910135|910146|915403|916937|916939|916944|923627|923628|923629|923630|923631|923632|923633|923634|923635|923636|923637|923638|923639|923640|923641|923642|923643|923644|923645|923646|923647|923648|923649|923650|923651|923652|923653|923654|923655|923656|923657|923658|923659|923660|923661|923662|923663|923664|923665|923666|923667|923668|923669|923670|923671|923672|923673|923674|923675|923676|923677|923678|923679|923680|923681|923682|923683|923684|923685|923686|923687|923688|923689|923690|923691|923692|923693|923694|923695|923696|923697|923698|923699|923700|923701|923702|923703|923704|923705|923706|923707|923708|923709|923710|923711|923712|923713|923714|923715|923716|923717|923718|923719|923720|923721|923722|923723|932491|932492|932493|932494|932495|932496|932497|932498|932499|932500|932501|932502|932503|932504|932505|932506|932507|932508|932509|932510|932511|932512|932513|932514|932515|932516|932517|932518|932519|932520|932521|932522|932523|932524|932525|932526|932527|932528|932529|932530|932531|932532|932533|932534|932535|932536|932537|932538|932539|932540|932541|932542|932543|932544|932545|932546|932547|932548|932549|932550|932551|932552|932553|932554|932555|932556|932557|932558|932559|932560|932561|932562|932563|932564|932565|932566|932567|932568|932569|932570|932571|932572|932573|932574|932575|932576|939975|940788|940789|940790|944160|944161|944162|944163|944164|944165|944166|944167|944168|944169|944170|944171|944172|944173|944174|944175|944176|944177|944178|944179|944180|944181|944182|944183|944184|944185|944186|944187|944188|944189|944190|944191|944192|944193|944194|944195|944196|944197|944198|944199|944200|944201|944202|944203|944204|944205|944206|944207|944208|944209|944210|944211|944212|944213|944214|944215|944216|944217|944218|944219|944220|944221|944222|944223|944224|944225|944226|944227|944228|944229|944230|944231|944232|944233|944234|944235|944236|944237|944238|944239|944240|944241|944242|944243|944244|944245|944246|944247|944248|944249|944250|944251|944252|944253|944254|953879|953880|953881|953882|953883|953884|953885|953886|953887|953888|953889|953890|953891|953892|953893|953894|953895|953896|953897|953898|953899|953900|953901|953902|953903|953904|953905|953906|953907|953908|953909|953910|953911|953912|953913|953914|953915|953916|953917|953918|953919|953920|953921|953922|953923|953924|959740|959741|960545|964238|966389|970797|976523", "text": "Familial adenomatous polyposis 1" }, { - "baseId": "15836|15837|15838|15839|15850|15855|15862|15863|15871|15878", + "upstreamId": "15836|15837|15838|15839|15850|15855|15862|15863|15871|15878", "text": "Gardner syndrome" }, { - "baseId": "15836|15868|33882|49939|49941|49944|49947|49948|49949|49950|49951|49952|49953|49955|49959|49962|49964|49965|49966|49973|51408|51409|51412|51413|51414|51415|51417|51419|51420|93507|94143|94147|94148|94151|94152|94153|94154|98256|98259|98260|132745|132752|136436|136453|136485|136497|136511|137256|137261|137263|137269|139395|139396|139402|139406|139416|139418|139421|139425|139428|139432|139436|140110|140111|140113|140114|150882|151150|151332|151402|151657|151915|180171|180193|180207|180217|180234|182352|182353|182357|182359|182384|182386|182402|182416|182427|182443|182478|182480|182483|182484|186026|212392|212412|212422|221524|221552|233003|233121|233137|233142|233144|233148|233221|233225|239530|239538|239602|294905|294906|294910|294911|294920|294922|294923|294924|294929|294934|294938|294939|294947|294949|294950|296697|296698|296702|296704|296707|296708|296709|296713|296715|296716|296717|300409|300412|300416|300417|300418|300419|300422|300423|300425|300427|300428|300432|300433|300439|300441|300442|300446|300447|300453|300456|300464|300465|300468|358771|367774|367807|369246|394830|394952|454083|454198|454355|454463|454532|473948|483756|483852|484002|520880|617228|632658|764683|807810|807929|808106|892631|892632|892633|892634|892635|892636|892637|892638|892639|892640|892641|892642|892643|892644|892645", + "upstreamId": "15836|15868|33882|49939|49941|49944|49947|49948|49949|49950|49951|49952|49953|49955|49959|49962|49964|49965|49966|49973|51408|51409|51412|51413|51414|51415|51417|51419|51420|93507|94143|94147|94148|94151|94152|94153|94154|98256|98259|98260|132745|132752|136436|136453|136485|136497|136511|137256|137261|137263|137269|139395|139396|139402|139406|139416|139418|139421|139425|139428|139432|139436|140110|140111|140113|140114|150882|151150|151332|151402|151657|151915|180171|180193|180207|180217|180234|182352|182353|182357|182359|182384|182386|182402|182416|182427|182443|182478|182480|182483|182484|186026|212392|212412|212422|221524|221552|233003|233121|233137|233142|233144|233148|233221|233225|239530|239538|239602|294905|294906|294910|294911|294920|294922|294923|294924|294929|294934|294938|294939|294947|294949|294950|296697|296698|296702|296704|296707|296708|296709|296713|296715|296716|296717|300409|300412|300416|300417|300418|300419|300422|300423|300425|300427|300428|300432|300433|300439|300441|300442|300446|300447|300453|300456|300464|300465|300468|358771|367774|367807|369246|394830|394952|454083|454198|454355|454463|454532|473948|483756|483852|484002|520880|617228|632658|764683|807810|807929|808106|892631|892632|892633|892634|892635|892636|892637|892638|892639|892640|892641|892642|892643|892644|892645", "text": "APC-Associated Polyposis Disorders" }, { - "baseId": "15836|27632|139810|152315|227671|552359|581788|612029|612031", + "upstreamId": "15836|27632|139810|152315|227671|552359|581788|612029|612031", "text": "Pilocytic astrocytoma" }, { - "baseId": "15837|15846|15849|15850|15861|20630|21703|28794|49960|133499|139407|139421|152171|180205|182399|226318|226319|226320|226321|226322|226372|419003", + "upstreamId": "15837|15846|15849|15850|15861|20630|21703|28794|49960|133499|139407|139421|152171|180205|182399|226318|226319|226320|226321|226322|226372|419003", "text": "Colorectal cancer, susceptibility to" }, { - "baseId": "15837|15838|15845|15846|15847|15849|15850|15851|15855|15860|15861|15863|15870|15874|33882|49939|49941|49944|49948|49949|49950|49953|49960|49963|49966|50194|50206|51410|51411|51418|51421|93766|94472|94473|98253|98257|132732|132738|132752|132759|132763|132769|136511|137244|137257|137263|139402|139406|139421|139438|140111|150577|150666|151082|151229|152288|173540|173984|180167|182313|182336|182339|182342|182368|191748|212389|212414|214662|214664|214670|214682|214693|215306|226318|232984|233042|233044|233046|233052|233062|233075|233127|233133|233209|239546|239564|244421|244422|244423|244434|246969|394347|394577|394685|394723|406490|406515|406522|419614|419619|419639|421027|421030|427229|427230|427231|427232|427233|427234|427235|427236|427237|427238|427239|427240|427241|427243|427244|427246|427247|427248|427249|427250|427251|427252|427253|427254|427255|427256|427257|427258|427261|427263|427264|427265|427267|427268|427269|427270|427272|427273|427274|427275|427276|427277|427279|427280|427281|427282|427283|427284|427285|427286|427287|427288|427289|427290|427291|427292|427293|427294|427296|427297|427298|427299|427300|427301|427302|427303|427304|427305|427306|427307|427308|427309|427310|427315|427579|427580|427581|427582|427583|427584|427585|432595|443651|454626|487023|487116|487132|487134|487141|496347|496412|496797|520782|537761|550680|612087|621183|621184|621189|621734|808073|905908|916935|916938|920491|983955", + "upstreamId": "15837|15838|15845|15846|15847|15849|15850|15851|15855|15860|15861|15863|15870|15874|33882|49939|49941|49944|49948|49949|49950|49953|49960|49963|49966|50194|50206|51410|51411|51418|51421|93766|94472|94473|98253|98257|132732|132738|132752|132759|132763|132769|136511|137244|137257|137263|139402|139406|139421|139438|140111|150577|150666|151082|151229|152288|173540|173984|180167|182313|182336|182339|182342|182368|191748|212389|212414|214662|214664|214670|214682|214693|215306|226318|232984|233042|233044|233046|233052|233062|233075|233127|233133|233209|239546|239564|244421|244422|244423|244434|246969|394347|394577|394685|394723|406490|406515|406522|419614|419619|419639|421027|421030|427229|427230|427231|427232|427233|427234|427235|427236|427237|427238|427239|427240|427241|427243|427244|427246|427247|427248|427249|427250|427251|427252|427253|427254|427255|427256|427257|427258|427261|427263|427264|427265|427267|427268|427269|427270|427272|427273|427274|427275|427276|427277|427279|427280|427281|427282|427283|427284|427285|427286|427287|427288|427289|427290|427291|427292|427293|427294|427296|427297|427298|427299|427300|427301|427302|427303|427304|427305|427306|427307|427308|427309|427310|427315|427579|427580|427581|427582|427583|427584|427585|432595|443651|454626|487023|487116|487132|487134|487141|496347|496412|496797|520782|537761|550680|612087|621183|621184|621189|621734|808073|905908|916935|916938|920491|983955", "text": "Familial multiple polyposis syndrome" }, { - "baseId": "15840|15846|15849|15855|15861|16794|18408|18409|20332|20333|20507|20596|20678|20738|20918|20919|21298|21797|21798|21919|21920|23171|23172|23173|23174|23728|23729|24487|24550|24551|24767|28691|28694|28695|28696|28938|29000|29001|29002|29003|29005|29022|29241|29242|31303|31390|31391|32113|32615|32616|38609|49949|49951|49969|50192|50193|50195|50206|51408|51418|95724|96145|98259|132745|132769|133170|133288|133302|133516|137257|137506|137516|137518|138162|138599|139421|150666|150996|151049|151150|151332|151404|152318|152717|166273|166274|171787|171788|171789|171790|171791|171792|171793|171794|171795|180708|180735|180975|181542|182313|182336|182409|182441|184222|184243|184276|186210|200719|200720|200721|200722|200723|200724|200725|200726|200727|200728|200729|200730|200731|200732|200733|200734|200735|200736|200737|200738|200739|200740|200741|200742|200743|200744|200745|200746|200747|200748|200749|200750|200751|200752|200753|212406|212460|213168|214682|222460|222482|223358|223359|223360|223361|223362|227197|233008|233031|233058|235168|235189|235483|242041|242900|242906|247653|248647|248648|248649|251904|256353|327448|347927|363531|394231|394291|400896|401063|402341|402370|402900|402952|402990|403007|409552|453710|453897|454168|454210|454483|454885|467237|467353|473827|473865|477616|477736|517748|528761|529267|530769|531657|534326|536301|550675|550682|550685|790548|818468|818554|818555|818566", + "upstreamId": "15840|15846|15849|15855|15861|16794|18408|18409|20332|20333|20507|20596|20678|20738|20918|20919|21298|21797|21798|21919|21920|23171|23172|23173|23174|23728|23729|24487|24550|24551|24767|28691|28694|28695|28696|28938|29000|29001|29002|29003|29005|29022|29241|29242|31303|31390|31391|32113|32615|32616|38609|49949|49951|49969|50192|50193|50195|50206|51408|51418|95724|96145|98259|132745|132769|133170|133288|133302|133516|137257|137506|137516|137518|138162|138599|139421|150666|150996|151049|151150|151332|151404|152318|152717|166273|166274|171787|171788|171789|171790|171791|171792|171793|171794|171795|180708|180735|180975|181542|182313|182336|182409|182441|184222|184243|184276|186210|200719|200720|200721|200722|200723|200724|200725|200726|200727|200728|200729|200730|200731|200732|200733|200734|200735|200736|200737|200738|200739|200740|200741|200742|200743|200744|200745|200746|200747|200748|200749|200750|200751|200752|200753|212406|212460|213168|214682|222460|222482|223358|223359|223360|223361|223362|227197|233008|233031|233058|235168|235189|235483|242041|242900|242906|247653|248647|248648|248649|251904|256353|327448|347927|363531|394231|394291|400896|401063|402341|402370|402900|402952|402990|403007|409552|453710|453897|454168|454210|454483|454885|467237|467353|473827|473865|477616|477736|517748|528761|529267|530769|531657|534326|536301|550675|550682|550685|790548|818468|818554|818555|818566", "text": "Carcinoma of colon" }, { - "baseId": "15840|22852|22868|23582|23584|27386|27388|27394|27395|27397|27398|27403|27404|27405|27408|27409|27422|27617|27618|27619|27620|27621|27622|27623|27632|27641|27642|27643|27645|27646|27650|27652|28375|28377|28378|28691|28692|28693|28694|28695|28696|28698|28916|28938|28939|28940|28996|29000|29006|29009|29010|29011|29013|29022|29755|30972|30973|31651|32616|32619|32622|32626|32627|32628|36163|36171|36173|37785|40609|40610|44227|48247|48304|48938|48939|48940|49030|49213|49214|53970|53980|54158|54282|54283|54284|54289|54290|54291|54633|70450|80852|83949|98735|100947|133271|133272|133274|133276|133277|139098|150515|150535|151476|151732|151858|151897|152428|166215|166563|171614|172332|173901|174177|175715|175854|176503|176758|179419|181000|181001|185345|185350|185366|185367|185371|185375|185394|191748|194404|206650|212414|213392|213398|213402|213942|213943|216786|222738|232035|233761|236459|236461|236462|236463|236469|236471|236477|236479|236481|239564|242978|242980|245074|247393|260191|263939|359197|360335|362753|362755|362768|362770|362771|362772|362774|362775|362776|362777|362778|362779|362822|362825|362826|362837|362838|362840|362841|362842|362843|362844|362845|362846|362847|362860|362865|362866|362867|362868|362873|362875|362876|362877|362878|362879|362895|362896|362912|362914|362918|362928|362929|362930|362938|362939|362940|362941|362942|362952|362979|363008|363067|363068|363110|363121|363123|363126|363140|363174|363201|363203|363204|363220|363222|363223|363239|363247|363248|363249|363250|363251|363255|363263|363264|363265|363266|363267|363270|363271|363272|363273|363283|363285|363289|363290|363293|363294|363295|363296|363297|363298|363299|363300|363301|363302|363303|363304|363305|363306|363317|363318|363321|363322|363323|363324|363325|363326|363336|363348|363352|363353|363354|363355|363356|363357|363358|363359|363360|363361|363362|363363|363364|363365|363366|363367|363368|363369|363370|363371|363372|363373|363374|363375|363376|363377|363378|363379|363380|363381|363382|363384|363385|363386|363388|363389|363393|363398|363399|363400|363416|363417|363418|363419|363420|363438|363439|363440|363441|363442|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363453|363454|363455|363456|363461|363462|363463|363469|363470|363471|363472|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363494|363495|363496|363497|363498|363499|363503|363504|363505|363506|363507|363508|363512|363513|363514|363515|363516|363517|363518|363519|363520|363521|363522|363523|363524|363525|363528|363529|363530|363531|363534|363535|363538|363542|363543|363544|363545|363546|363547|363548|363552|363553|363554|363555|363556|363557|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|363572|363573|363574|363575|363576|363618", + "upstreamId": "15840|22852|22868|23582|23584|27386|27388|27394|27395|27397|27398|27403|27404|27405|27408|27409|27422|27617|27618|27619|27620|27621|27622|27623|27632|27641|27642|27643|27645|27646|27650|27652|28375|28377|28378|28691|28692|28693|28694|28695|28696|28698|28916|28938|28939|28940|28996|29000|29006|29009|29010|29011|29013|29022|29755|30972|30973|31651|32616|32619|32622|32626|32627|32628|36163|36171|36173|37785|40609|40610|44227|48247|48304|48938|48939|48940|49030|49213|49214|53970|53980|54158|54282|54283|54284|54289|54290|54291|54633|70450|80852|83949|98735|100947|133271|133272|133274|133276|133277|139098|150515|150535|151476|151732|151858|151897|152428|166215|166563|171614|172332|173901|174177|175715|175854|176503|176758|179419|181000|181001|185345|185350|185366|185367|185371|185375|185394|191748|194404|206650|212414|213392|213398|213402|213942|213943|216786|222738|232035|233761|236459|236461|236462|236463|236469|236471|236477|236479|236481|239564|242978|242980|245074|247393|260191|263939|359197|360335|362753|362755|362768|362770|362771|362772|362774|362775|362776|362777|362778|362779|362822|362825|362826|362837|362838|362840|362841|362842|362843|362844|362845|362846|362847|362860|362865|362866|362867|362868|362873|362875|362876|362877|362878|362879|362895|362896|362912|362914|362918|362928|362929|362930|362938|362939|362940|362941|362942|362952|362979|363008|363067|363068|363110|363121|363123|363126|363140|363174|363201|363203|363204|363220|363222|363223|363239|363247|363248|363249|363250|363251|363255|363263|363264|363265|363266|363267|363270|363271|363272|363273|363283|363285|363289|363290|363293|363294|363295|363296|363297|363298|363299|363300|363301|363302|363303|363304|363305|363306|363317|363318|363321|363322|363323|363324|363325|363326|363336|363348|363352|363353|363354|363355|363356|363357|363358|363359|363360|363361|363362|363363|363364|363365|363366|363367|363368|363369|363370|363371|363372|363373|363374|363375|363376|363377|363378|363379|363380|363381|363382|363384|363385|363386|363388|363389|363393|363398|363399|363400|363416|363417|363418|363419|363420|363438|363439|363440|363441|363442|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363453|363454|363455|363456|363461|363462|363463|363469|363470|363471|363472|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363494|363495|363496|363497|363498|363499|363503|363504|363505|363506|363507|363508|363512|363513|363514|363515|363516|363517|363518|363519|363520|363521|363522|363523|363524|363525|363528|363529|363530|363531|363534|363535|363538|363542|363543|363544|363545|363546|363547|363548|363552|363553|363554|363555|363556|363557|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|363572|363573|363574|363575|363576|363618", "text": "Neoplasm of the large intestine" }, { - "baseId": "15841|15842|15846|15849|18559|20332|20333|20333|20337|20338|22613|22805|22807|27285|27621|27623|28329|28691|28694|28697|28918|29759|49949|49951|49969|50193|50226|51408|51418|98259|132769|133281|133297|133302|133303|138598|139421|139695|150591|150666|150996|151150|151332|151404|152450|179930|181678|182313|182336|182409|182441|184387|212406|212460|214646|214682|232272|233008|233031|233058|362773|363046|363100|363113|363116|394231|404747|453710|453897|454168|454210|454483|454883|454885|473865|536301|538960|550667|550673|578398|614238|918038", + "upstreamId": "15841|15842|15846|15849|18559|20332|20333|20333|20337|20338|22613|22805|22807|27285|27621|27623|28329|28691|28694|28697|28918|29759|49949|49951|49969|50193|50226|51408|51418|98259|132769|133281|133297|133302|133303|138598|139421|139695|150591|150666|150996|151150|151332|151404|152450|179930|181678|182313|182336|182409|182441|184387|212406|212460|214646|214682|232272|233008|233031|233058|362773|363046|363100|363113|363116|394231|404747|453710|453897|454168|454210|454483|454883|454885|473865|536301|538960|550667|550673|578398|614238|918038", "text": "Neoplasm of stomach" }, { - "baseId": "15845|15853", + "upstreamId": "15845|15853", "text": "Brain tumor-polyposis syndrome 2" }, { - "baseId": "15846|15849|15879|20508|21076|22800|27386|27388|27391|27392|27393|27394|27395|27403|27404|27405|27407|27408|27409|27422|27641|27642|27645|27652|28691|28692|28694|28695|28697|28698|28939|29022|29834|29835|30972|30973|32616|32617|32618|32619|32620|32621|32622|32623|32625|32626|32627|32628|40609|44227|48304|49949|49951|49969|51408|51418|52763|54284|83949|98259|100947|132769|133271|133272|133274|133276|133277|137276|137693|139098|139421|150535|150666|150855|151150|151314|151332|151404|151476|151595|151773|151955|166215|171613|171614|179419|180995|181000|182313|182336|182409|182441|182669|185345|185366|185367|185371|185375|185384|185394|206650|212406|212460|212544|213392|213398|213402|213943|214682|222738|226760|232035|233008|233031|233058|236461|236463|236469|236471|236477|236481|242978|242980|245074|260191|260192|263517|263518|263519|263520|263521|263939|309444|359197|360335|362753|362768|362770|362771|362772|362773|362774|362775|362844|362865|362866|362887|362894|362895|362896|362912|362933|363107|363108|363109|363110|363112|363113|363114|363121|363123|363186|363201|363258|363259|363260|363265|363266|363267|363269|363270|363271|363272|363273|363307|363317|363318|363322|363323|363344|363345|363346|363347|363349|363350|363351|363352|363353|363354|363360|363405|363406|363407|363408|363410|363411|363438|363439|363440|363441|363442|363448|363449|363450|363451|363452|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363494|363495|363496|363497|363498|363499|363509|363510|363511|363512|363513|363514|363516|363517|363518|363519|363520|363526|363527|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363538|363539|363540|363541|363545|363546|363547|363548|363553|363554|363555|363556|363557|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|394231|395996|396013|419628|432418|443454|453710|453897|454168|454210|454483|454885|455993|473865|491079|522734|522773|536301|566301|790393|790394|903539", + "upstreamId": "15846|15849|15879|20508|21076|22800|27386|27388|27391|27392|27393|27394|27395|27403|27404|27405|27407|27408|27409|27422|27641|27642|27645|27652|28691|28692|28694|28695|28697|28698|28939|29022|29834|29835|30972|30973|32616|32617|32618|32619|32620|32621|32622|32623|32625|32626|32627|32628|40609|44227|48304|49949|49951|49969|51408|51418|52763|54284|83949|98259|100947|132769|133271|133272|133274|133276|133277|137276|137693|139098|139421|150535|150666|150855|151150|151314|151332|151404|151476|151595|151773|151955|166215|171613|171614|179419|180995|181000|182313|182336|182409|182441|182669|185345|185366|185367|185371|185375|185384|185394|206650|212406|212460|212544|213392|213398|213402|213943|214682|222738|226760|232035|233008|233031|233058|236461|236463|236469|236471|236477|236481|242978|242980|245074|260191|260192|263517|263518|263519|263520|263521|263939|309444|359197|360335|362753|362768|362770|362771|362772|362773|362774|362775|362844|362865|362866|362887|362894|362895|362896|362912|362933|363107|363108|363109|363110|363112|363113|363114|363121|363123|363186|363201|363258|363259|363260|363265|363266|363267|363269|363270|363271|363272|363273|363307|363317|363318|363322|363323|363344|363345|363346|363347|363349|363350|363351|363352|363353|363354|363360|363405|363406|363407|363408|363410|363411|363438|363439|363440|363441|363442|363448|363449|363450|363451|363452|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363494|363495|363496|363497|363498|363499|363509|363510|363511|363512|363513|363514|363516|363517|363518|363519|363520|363526|363527|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363538|363539|363540|363541|363545|363546|363547|363548|363553|363554|363555|363556|363557|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|394231|395996|396013|419628|432418|443454|453710|453897|454168|454210|454483|454885|455993|473865|491079|522734|522773|536301|566301|790393|790394|903539", "text": "Hepatocellular carcinoma" }, { - "baseId": "15846|15849|15857|15872|15876|49948|49949|49951|49969|51408|51418|98259|132769|139421|150666|151150|151332|151404|182313|182336|182409|182441|212406|212460|214682|221526|233008|233031|233058|394231|453710|453897|454168|454210|454483|454885|473865|536301", + "upstreamId": "15846|15849|15857|15872|15876|49948|49949|49951|49969|51408|51418|98259|132769|139421|150666|151150|151332|151404|182313|182336|182409|182441|212406|212460|214682|221526|233008|233031|233058|394231|453710|453897|454168|454210|454483|454885|473865|536301", "text": "Desmoid disease, hereditary" }, { - "baseId": "15850|15851", + "upstreamId": "15850|15851", "text": "Periampullary adenoma" }, { - "baseId": "15855", + "upstreamId": "15855", "text": "Adenomatous polyposis coli with congenital cholesteatoma" }, { - "baseId": "15855|27395|182336|358777|363372|486821|486822", + "upstreamId": "15855|27395|182336|358777|363372|486821|486822", "text": "Malignant Colorectal Neoplasm" }, { - "baseId": "15855|360864", + "upstreamId": "15855|360864", "text": "Adenomatous colonic polyposis" }, { - "baseId": "15855", + "upstreamId": "15855", "text": "Hyperplastic colonic polyposis" }, { - "baseId": "15855", + "upstreamId": "15855", "text": "Intestinal polyp" }, { - "baseId": "15855", + "upstreamId": "15855", "text": "Duodenal polyposis" }, { - "baseId": "15855", + "upstreamId": "15855", "text": "Gastric polyposis" }, { - "baseId": "15855|21230|137262|550681|550732", + "upstreamId": "15855|21230|137262|550681|550732", "text": "Colon adenocarcinoma" }, { - "baseId": "15855|15861|20642|27403|27404|27413|29000|46603|52759|94753|94755|94763|95045|96129|99638|99640|99642|99647|99648|101927|102771|132759|132775|133391|133398|133400|133418|133517|137774|137778|137779|137780|137782|137785|137788|137795|137796|137804|140050|150735|169823|169825|169826|169830|169831|169834|169835|169836|171100|180211|182432|185986|191007|191199|192635|193836|193839|195293|208797|208799|215445|222238|226351|227849|227854|236490|236689|241293|241375|243458|247757|265631|271024|338245|338250|338256|338271|338276|347905|347913|347955|351664|351674|351691|351692|352602|362739|362743|362744|362745|362746|363512|379858|400244|406503|431929|438546|473598|488136|488148|492538|493637|493638|513785|514281|534478|534841|572013|572016|572017|572022|573419|574141|574142|574143|590606|590610|649528|649529|649530|653288|705951|705953|705956|717474|729208|729209|729218|731426|731427|742927|742935|742936|773567|773568|773569|778625|807908|821465|821466|849375|849376|849377|849378|917838|929496|941282|959101|960349|964238|964656|973094|980453", + "upstreamId": "15855|15861|20642|27403|27404|27413|29000|46603|52759|94753|94755|94763|95045|96129|99638|99640|99642|99647|99648|101927|102771|132759|132775|133391|133398|133400|133418|133517|137774|137778|137779|137780|137782|137785|137788|137795|137796|137804|140050|150735|169823|169825|169826|169830|169831|169834|169835|169836|171100|180211|182432|185986|191007|191199|192635|193836|193839|195293|208797|208799|215445|222238|226351|227849|227854|236490|236689|241293|241375|243458|247757|265631|271024|338245|338250|338256|338271|338276|347905|347913|347955|351664|351674|351691|351692|352602|362739|362743|362744|362745|362746|363512|379858|400244|406503|431929|438546|473598|488136|488148|492538|493637|493638|513785|514281|534478|534841|572013|572016|572017|572022|573419|574141|574142|574143|590606|590610|649528|649529|649530|653288|705951|705953|705956|717474|729208|729209|729218|731426|731427|742927|742935|742936|773567|773568|773569|778625|807908|821465|821466|849375|849376|849377|849378|917838|929496|941282|959101|960349|964238|964656|973094|980453", "text": "Colorectal cancer" }, { - "baseId": "15856|27398|32619|32620|32621|139537|181051|432378|432388|432391", + "upstreamId": "15856|27398|32619|32620|32621|139537|181051|432378|432388|432391", "text": "Hepatoblastoma" }, { - "baseId": "15861", + "upstreamId": "15861", "text": "Adenomatous polyposis coli, susceptibility to" }, { - "baseId": "15861|16284|16285|16821|18062|18072|18087|20630|20630|20640|20642|23084|23984|28432|66873|132093|132119|132156|132221|132225|132267|132794|132798|132871|133499|133528|133532|133585|137376|151098|151118|151260|151270|151274|152066|152122|180433|180519|183348|183467|183471|213319|234712|240887|244622|246794|389282|397887|476493|480186|485382|535740|535741|535742|535743|535744|535745|535746|535747|535748|535749|535750|535751|564370|569950|810246|849160|967155|967208", + "upstreamId": "15861|16284|16285|16821|18062|18072|18087|20630|20630|20640|20642|23084|23984|28432|66873|132093|132119|132156|132221|132225|132267|132794|132798|132871|133499|133528|133532|133585|137376|151098|151118|151260|151270|151274|152066|152122|180433|180519|183348|183467|183471|213319|234712|240887|244622|246794|389282|397887|476493|480186|485382|535740|535741|535742|535743|535744|535745|535746|535747|535748|535749|535750|535751|564370|569950|810246|849160|967155|967208", "text": "Breast cancer, susceptibility to" }, { - "baseId": "15877|32619", + "upstreamId": "15877|32619", "text": "Desmoid tumor, somatic" }, { - "baseId": "15882|45589|45675|45676|45677|45678|45679|134815|134816|134817|141757|141758|141759|141760|192578|202127|202128|202130|202131|202132|202133|202134|202135|202136|202138|202140|203288|269762|303275|303276|303285|303286|303287|303293|303294|303295|303297|303299|303300|303305|303314|306614|306615|306616|306617|306619|306621|306623|306626|306628|306630|306636|306658|306670|311499|311500|311502|311507|311518|311520|311524|311531|311538|311539|311543|311545|311546|311547|311548|311551|311654|311664|311667|311674|311678|311686|311687|311688|311690|311712|311714|311715|369920|407243|456487|456846|456878|456883|457379|457381|457387|457540|457541|457542|457548|457909|493738|511718|522787|522788|523043|523235|539008|539415|549633|550302|552118|561099|561729|561732|564397|566143|567108|579491|636313|636314|636315|636316|636317|651687|651762|655800|683925|766357|766358|788819|819912|833808|833809|833810|833811|833812|833813|833814|898315|898316|898317|898318|898319|898320|898321|898322|898323|898324|898325|898326|898327|898328|898329|898330|898331|898332|898333|898334|898335|898336|898337|898338|898339|898340|898341|898342|924900|933979|933980|933981|933982|933983|933984|933985|945750|945751|955207|955208|955209", + "upstreamId": "15882|45589|45675|45676|45677|45678|45679|134815|134816|134817|141757|141758|141759|141760|192578|202127|202128|202130|202131|202132|202133|202134|202135|202136|202138|202140|203288|269762|303275|303276|303285|303286|303287|303293|303294|303295|303297|303299|303300|303305|303314|306614|306615|306616|306617|306619|306621|306623|306626|306628|306630|306636|306658|306670|311499|311500|311502|311507|311518|311520|311524|311531|311538|311539|311543|311545|311546|311547|311548|311551|311654|311664|311667|311674|311678|311686|311687|311688|311690|311712|311714|311715|369920|407243|456487|456846|456878|456883|457379|457381|457387|457540|457541|457542|457548|457909|493738|511718|522787|522788|523043|523235|539008|539415|549633|550302|552118|561099|561729|561732|564397|566143|567108|579491|636313|636314|636315|636316|636317|651687|651762|655800|683925|766357|766358|788819|819912|833808|833809|833810|833811|833812|833813|833814|898315|898316|898317|898318|898319|898320|898321|898322|898323|898324|898325|898326|898327|898328|898329|898330|898331|898332|898333|898334|898335|898336|898337|898338|898339|898340|898341|898342|924900|933979|933980|933981|933982|933983|933984|933985|945750|945751|955207|955208|955209", "text": "Epilepsy, progressive myoclonic 3" }, { - "baseId": "15883|15884|34346|34347|34348|34349|34350|34351|34352|34353|34354|48051|48052|89775|101414|101415|101416|101417|101419|101420|101421|101422|101423|101424|177270|191248|207942|236963|268636|268988|316277|316279|316282|316283|316289|316290|316293|316294|316296|316304|316306|316307|323630|323632|323637|323661|323662|323664|323665|323681|323683|323685|323690|323692|323693|323694|323702|323703|323721|323722|323726|323736|329778|329780|329783|329788|329789|329790|329794|329803|329806|329807|329810|329820|329837|329841|329843|329849|329854|329858|331046|331050|331050|331051|331071|331071|331072|331073|331076|331083|331085|331086|331087|331090|331091|331099|331103|331104|331106|371882|372614|372875|374645|374645|413355|444943|489736|526714|584648|656109|666582|802179|859948|869480|869481|869482|869483|869484|869485|869486|869487|869488|869489|869490|869491|869492|869493|869494|869495|869496|869497|869498|869499|869500|869501|869502|869503|869504|869505|869506|869507|869508|869509|869510|869511|869512|869513|869514|869515|869516|869517|869518|869519|869520|869521|869522|869523|869524|872205|872206|872207|983763|983767", + "upstreamId": "15883|15884|34346|34347|34348|34349|34350|34351|34352|34353|34354|48051|48052|89775|101414|101415|101416|101417|101419|101420|101421|101422|101423|101424|177270|191248|207942|236963|268636|268988|316277|316279|316282|316283|316289|316290|316293|316294|316296|316304|316306|316307|323630|323632|323637|323661|323662|323664|323665|323681|323683|323685|323690|323692|323693|323694|323702|323703|323721|323722|323726|323736|329778|329780|329783|329788|329789|329790|329794|329803|329806|329807|329810|329820|329837|329841|329843|329849|329854|329858|331046|331050|331050|331051|331071|331071|331072|331073|331076|331083|331085|331086|331087|331090|331091|331099|331103|331104|331106|371882|372614|372875|374645|374645|413355|444943|489736|526714|584648|656109|666582|802179|859948|869480|869481|869482|869483|869484|869485|869486|869487|869488|869489|869490|869491|869492|869493|869494|869495|869496|869497|869498|869499|869500|869501|869502|869503|869504|869505|869506|869507|869508|869509|869510|869511|869512|869513|869514|869515|869516|869517|869518|869519|869520|869521|869522|869523|869524|872205|872206|872207|983763|983767", "text": "Cutis laxa with osteodystrophy" }, { - "baseId": "15886|15887|49799|82782|136092|136093|267743|322502|322506|322514|322515|322522|322526|322528|322529|322530|322532|322535|331887|331888|331893|331896|331899|331902|338880|338881|338890|338891|338892|338895|338896|338901|338905|338907|338909|338914|338921|340507|340510|340512|340513|340514|340516|340517|340525|340526|340527|340529|340532|340533|340536|413400|577384|622427|754446|793528|793534|873499|873500|873501|873502|873503|873504|873505|873506|873507|873508|873509|873510|873511|873512|873513|873514|873515|873516|873517|873518|873519|873520|873521|873522|873523|873524|873525|971016", + "upstreamId": "15886|15887|49799|82782|136092|136093|267743|322502|322506|322514|322515|322522|322526|322528|322529|322530|322532|322535|331887|331888|331893|331896|331899|331902|338880|338881|338890|338891|338892|338895|338896|338901|338905|338907|338909|338914|338921|340507|340510|340512|340513|340514|340516|340517|340525|340526|340527|340529|340532|340533|340536|413400|577384|622427|754446|793528|793534|873499|873500|873501|873502|873503|873504|873505|873506|873507|873508|873509|873510|873511|873512|873513|873514|873515|873516|873517|873518|873519|873520|873521|873522|873523|873524|873525|971016", "text": "Spinocerebellar ataxia type 11" }, { - "baseId": "15888|26968|26968|26969|26970|26971|26972|26973|48323|48325|48326|48327|48328|48329|94405|103452|103456|103461|103463|103464|103466|103470|103473|103478|103487|103491|103493|103512|103523|103524|103526|135085|142016|142017|190748|214395|214396|231816|231819|231821|244709|244711|244712|323152|329248|330408|444905|462167|526895|527212|537210|565034|566309|571185|571186|571187|624452|640599|640600|640601|640602|640603|640604|640605|652649|775896|779494|784267|799664|839260|839261|839262|839263|839264|839265|839266|839267|839268|839269|935901|935902|935903|935904|935905|940240|940241|941020|947775|956742|956743|960021|960772", + "upstreamId": "15888|26968|26968|26969|26970|26971|26972|26973|48323|48325|48326|48327|48328|48329|94405|103452|103456|103461|103463|103464|103466|103470|103473|103478|103487|103491|103493|103512|103523|103524|103526|135085|142016|142017|190748|214395|214396|231816|231819|231821|244709|244711|244712|323152|329248|330408|444905|462167|526895|527212|537210|565034|566309|571185|571186|571187|624452|640599|640600|640601|640602|640603|640604|640605|652649|775896|779494|784267|799664|839260|839261|839262|839263|839264|839265|839266|839267|839268|839269|935901|935902|935903|935904|935905|940240|940241|941020|947775|956742|956743|960021|960772", "text": "Porokeratosis 3, disseminated superficial actinic type" }, { - "baseId": "15889|15890|15891|15892|15893|15894|34595|34596|34597|39879|39880|39881|39882|76657|76658|76660|76661|190644|190645|247131|272298|327762|327766|327772|327778|327785|327786|327790|327796|327797|327801|327805|327810|327813|327814|327816|327820|327822|327824|327825|327827|327828|327841|327843|327846|337587|337589|337592|337595|337598|337601|337603|337608|337615|337619|337622|337624|337630|337631|337633|337648|337649|337652|337653|337660|337665|343820|343821|343823|343827|343828|343829|343830|343832|343835|343839|343844|343853|343859|343861|343862|343873|343875|343878|343879|345313|345316|345318|345319|345325|345328|345329|345330|345332|345333|345335|345336|345339|345341|505819|704047|727078|877022|877023|877024|877025|877026|877027|877028|877029|877030|877031|877032|877033|877034|877035|877036|877037|877038|877039|877040|877041|877042|877043|877044|877045|877046|877047|877048|877049|877050|877051|877052|877053|877054|877055|877056|877057|877058|877059|877060|877061|877062|877063|877064|877065", + "upstreamId": "15889|15890|15891|15892|15893|15894|34595|34596|34597|39879|39880|39881|39882|76657|76658|76660|76661|190644|190645|247131|272298|327762|327766|327772|327778|327785|327786|327790|327796|327797|327801|327805|327810|327813|327814|327816|327820|327822|327824|327825|327827|327828|327841|327843|327846|337587|337589|337592|337595|337598|337601|337603|337608|337615|337619|337622|337624|337630|337631|337633|337648|337649|337652|337653|337660|337665|343820|343821|343823|343827|343828|343829|343830|343832|343835|343839|343844|343853|343859|343861|343862|343873|343875|343878|343879|345313|345316|345318|345319|345325|345328|345329|345330|345332|345333|345335|345336|345339|345341|505819|704047|727078|877022|877023|877024|877025|877026|877027|877028|877029|877030|877031|877032|877033|877034|877035|877036|877037|877038|877039|877040|877041|877042|877043|877044|877045|877046|877047|877048|877049|877050|877051|877052|877053|877054|877055|877056|877057|877058|877059|877060|877061|877062|877063|877064|877065", "text": "Congenital defect of folate absorption" }, { - "baseId": "15895|15896|15897|15898|15899|15900|15901|15902|15903|49835|275884|275890|275891|275892|275893|275896|275898|275899|275901|275905|275907|275908|275911|275914|275915|275917|275919|275920|275922|275968|275975|275976|275980|275981|275986|275987|276000|276001|276003|276007|276008|276012|276013|276070|276071|276072|276073|276075|276078|276079|276085|276089|276176|276177|276178|276192|276196|276197|276203|276209|276214|276215|276226|276227|276228|276229|276273|353030|353031|861934|861935|861936|861937|861938|861939|861940|861941|861942|861943|861944|861945|861946|861947|861948|861949|861950|861951|861952|861953|861954|861955|861956|861957|861958|861959|861960", + "upstreamId": "15895|15896|15897|15898|15899|15900|15901|15902|15903|49835|275884|275890|275891|275892|275893|275896|275898|275899|275901|275905|275907|275908|275911|275914|275915|275917|275919|275920|275922|275968|275975|275976|275980|275981|275986|275987|276000|276001|276003|276007|276008|276012|276013|276070|276071|276072|276073|276075|276078|276079|276085|276089|276176|276177|276178|276192|276196|276197|276203|276209|276214|276215|276226|276227|276228|276229|276273|353030|353031|861934|861935|861936|861937|861938|861939|861940|861941|861942|861943|861944|861945|861946|861947|861948|861949|861950|861951|861952|861953|861954|861955|861956|861957|861958|861959|861960", "text": "Schnyder crystalline corneal dystrophy" }, { - "baseId": "15904|15905", + "upstreamId": "15904|15905", "text": "Deafness, autosomal dominant 50" }, { - "baseId": "15906|15907|15908|15909|15910|15911|141066|141067|141068|141069|141070|211413|211414|211415|211416|211417|211419|211421|211422|211423|253586|253587|253589|253590|253591|253593|308912|308915|308916|313608|313612|313614|313627|313628|319391|319403|319406|319407|319413|319419|319979|353860|370474|370993|371354|390671|390675|390676|407727|434633|502686|502688|525246|539024|539025|553126|553127|553128|553129|553130|553131|563329|565996|611364|638429|820170|836328|836329|836330|902513|902514|902515|902516|902517|902518|902519|902520|902521|902522|902523|902524|902525|902526|903444|904215|946689", + "upstreamId": "15906|15907|15908|15909|15910|15911|141066|141067|141068|141069|141070|211413|211414|211415|211416|211417|211419|211421|211422|211423|253586|253587|253589|253590|253591|253593|308912|308915|308916|313608|313612|313614|313627|313628|319391|319403|319406|319407|319413|319419|319979|353860|370474|370993|371354|390671|390675|390676|407727|434633|502686|502688|525246|539024|539025|553126|553127|553128|553129|553130|553131|563329|565996|611364|638429|820170|836328|836329|836330|902513|902514|902515|902516|902517|902518|902519|902520|902521|902522|902523|902524|902525|902526|903444|904215|946689", "text": "Fructose-biphosphatase deficiency" }, { - "baseId": "15912|15914|75258|75259|75260|75261|226073|226074|226075|226076|226077|226078|672264|816437|818164", + "upstreamId": "15912|15914|75258|75259|75260|75261|226073|226074|226075|226076|226077|226078|672264|816437|818164", "text": "Congenital anomalies of kidney and urinary tract 1, susceptibility to" }, { - "baseId": "15912|15913|28975|28977|28986|28993|28994|28995|36221|36228|36230|36269|36275|36287|36305|45384|50278|50282|50284|50285|101890|101891|101892|132022|132023|132024|136461|136472|138926|139807|139815|139817|139819|139827|139828|139830|139833|139835|171125|182944|182948|182956|182958|186117|186118|212767|212783|212784|212794|221946|226095|240788|240790|240797|240802|271973|310269|310270|310276|310292|310293|310301|310303|310308|310309|310315|310324|310330|310333|310334|310337|315391|315392|315393|315394|315397|315398|315399|315400|315401|315409|315411|315412|315418|315419|321368|321369|321370|321384|321385|321388|321398|321411|321412|321414|321415|321417|321419|321420|321423|322063|322066|322067|322068|322098|322103|322120|322121|322125|322128|322139|322140|322141|322142|322151|322153|322160|322161|322168|338416|338421|338422|338423|338429|338433|338436|348048|348055|348056|351761|351764|351766|351767|351769|351771|351772|352633|352634|352635|352636|352637|352638|353127|353128|358824|358829|378752|397269|397444|397680|397699|459817|460008|460025|460251|460316|460325|460677|460686|475107|513591|525176|539281|569630|569655|729247|745381|836830|865863|865864|865865|865866|865867|865868|865869|865870|865871|865872|865873|865874|865875|865876|865877|865878|865879|865880|865881|865882|868471|868472|891421|891422|891423|891424|891425|891426|891427|891428|891850", + "upstreamId": "15912|15913|28975|28977|28986|28993|28994|28995|36221|36228|36230|36269|36275|36287|36305|45384|50278|50282|50284|50285|101890|101891|101892|132022|132023|132024|136461|136472|138926|139807|139815|139817|139819|139827|139828|139830|139833|139835|171125|182944|182948|182956|182958|186117|186118|212767|212783|212784|212794|221946|226095|240788|240790|240797|240802|271973|310269|310270|310276|310292|310293|310301|310303|310308|310309|310315|310324|310330|310333|310334|310337|315391|315392|315393|315394|315397|315398|315399|315400|315401|315409|315411|315412|315418|315419|321368|321369|321370|321384|321385|321388|321398|321411|321412|321414|321415|321417|321419|321420|321423|322063|322066|322067|322068|322098|322103|322120|322121|322125|322128|322139|322140|322141|322142|322151|322153|322160|322161|322168|338416|338421|338422|338423|338429|338433|338436|348048|348055|348056|351761|351764|351766|351767|351769|351771|351772|352633|352634|352635|352636|352637|352638|353127|353128|358824|358829|378752|397269|397444|397680|397699|459817|460008|460025|460251|460316|460325|460677|460686|475107|513591|525176|539281|569630|569655|729247|745381|836830|865863|865864|865865|865866|865867|865868|865869|865870|865871|865872|865873|865874|865875|865876|865877|865878|865879|865880|865881|865882|868471|868472|891421|891422|891423|891424|891425|891426|891427|891428|891850", "text": "Renal hypodysplasia/aplasia 1" }, { - "baseId": "15915", + "upstreamId": "15915", "text": "Malaria, mild, susceptibility to" }, { - "baseId": "15916", + "upstreamId": "15916", "text": "Mucopolysaccharidosis, type vi, intermediate" }, { - "baseId": "15916|15917|15918|15919|15920|15921|15922|15923|15924|15925|15926|15927|15944|98261|98262|98263|98265|98267|98268|106583|177363|187113|190201|252017|260944|270323|272117|298115|298119|298121|298122|298123|298129|298130|298133|298134|298136|298137|298142|298147|298148|298153|298157|298158|298160|298162|298169|298171|298172|298174|298189|298194|298198|300414|300415|300420|300421|300429|300431|300434|300437|300443|300445|300457|300458|300463|300467|300479|300487|300488|300491|300492|300494|300498|304682|304685|304687|304693|304703|304704|304706|304713|304718|304729|304730|304733|304753|304764|304765|304766|304768|304947|304952|304953|304963|304964|304966|304967|304968|304971|304977|304987|304993|304994|304995|305000|305001|305002|305019|305028|353738|368534|406764|421553|438296|438558|438559|438560|438561|438562|438563|438564|438565|481744|481745|487135|487184|487321|488214|521246|521253|521605|521863|538379|539968|549596|549597|550383|550384|550385|550386|550387|550388|550389|550390|550391|550392|550393|550394|550395|550396|550397|550398|550399|550400|550401|550402|550403|550404|550405|550406|550407|550408|550409|550410|550411|550412|550413|550414|550415|550416|550417|550418|550419|550420|550421|550422|550423|550424|550425|550426|550427|550428|550429|550430|550431|550432|550433|550434|550435|550436|550437|550438|550439|550440|550441|550442|550443|550444|550445|550446|550447|550448|550449|550450|550451|550452|550453|550454|550455|550456|550457|550458|550459|550460|550461|550462|550463|550464|550465|550466|550467|550468|550470|550471|550472|550473|550474|550475|550476|550477|550478|550479|550480|550481|550482|550483|550484|550485|550486|550487|550488|550489|550490|550491|550492|550493|550494|550495|550496|550497|550498|550499|550500|550501|550502|550503|550504|550505|550506|550507|550508|550509|550510|550511|550512|550513|550514|550515|550516|550517|550518|550519|550520|550521|550522|550523|550524|550525|550526|550527|550528|550529|550530|550531|550532|550533|550534|550536|550537|550538|550539|550540|550541|550542|550543|550544|550545|550546|550547|550548|550549|550550|550551|550554|550555|550556|610697|626152|634032|634033|634037|634038|651233|710019|721539|721542|735208|744154|749607|749608|749609|749610|759489|765224|765226|765227|782341|782345|782346|787300|788785|819611|819612|821923|830966|830967|830968|830970|830971|851040|894709|894710|894711|894712|894713|894714|894715|894716|894717|894718|894719|894720|894721|894722|894723|894724|894725|894726|894727|894728|894729|894730|894731|894732|894733|894734|894735|894736|894737|894738|894739|894740|894741|894742|894744|894745|894746|894755|894756|896137|896139|904203|924114|924116|940817|944663|954199|954204|960571|963139|978209|978212|978214|978215", + "upstreamId": "15916|15917|15918|15919|15920|15921|15922|15923|15924|15925|15926|15927|15944|98261|98262|98263|98265|98267|98268|106583|177363|187113|190201|252017|260944|270323|272117|298115|298119|298121|298122|298123|298129|298130|298133|298134|298136|298137|298142|298147|298148|298153|298157|298158|298160|298162|298169|298171|298172|298174|298189|298194|298198|300414|300415|300420|300421|300429|300431|300434|300437|300443|300445|300457|300458|300463|300467|300479|300487|300488|300491|300492|300494|300498|304682|304685|304687|304693|304703|304704|304706|304713|304718|304729|304730|304733|304753|304764|304765|304766|304768|304947|304952|304953|304963|304964|304966|304967|304968|304971|304977|304987|304993|304994|304995|305000|305001|305002|305019|305028|353738|368534|406764|421553|438296|438558|438559|438560|438561|438562|438563|438564|438565|481744|481745|487135|487184|487321|488214|521246|521253|521605|521863|538379|539968|549596|549597|550383|550384|550385|550386|550387|550388|550389|550390|550391|550392|550393|550394|550395|550396|550397|550398|550399|550400|550401|550402|550403|550404|550405|550406|550407|550408|550409|550410|550411|550412|550413|550414|550415|550416|550417|550418|550419|550420|550421|550422|550423|550424|550425|550426|550427|550428|550429|550430|550431|550432|550433|550434|550435|550436|550437|550438|550439|550440|550441|550442|550443|550444|550445|550446|550447|550448|550449|550450|550451|550452|550453|550454|550455|550456|550457|550458|550459|550460|550461|550462|550463|550464|550465|550466|550467|550468|550470|550471|550472|550473|550474|550475|550476|550477|550478|550479|550480|550481|550482|550483|550484|550485|550486|550487|550488|550489|550490|550491|550492|550493|550494|550495|550496|550497|550498|550499|550500|550501|550502|550503|550504|550505|550506|550507|550508|550509|550510|550511|550512|550513|550514|550515|550516|550517|550518|550519|550520|550521|550522|550523|550524|550525|550526|550527|550528|550529|550530|550531|550532|550533|550534|550536|550537|550538|550539|550540|550541|550542|550543|550544|550545|550546|550547|550548|550549|550550|550551|550554|550555|550556|610697|626152|634032|634033|634037|634038|651233|710019|721539|721542|735208|744154|749607|749608|749609|749610|759489|765224|765226|765227|782341|782345|782346|787300|788785|819611|819612|821923|830966|830967|830968|830970|830971|851040|894709|894710|894711|894712|894713|894714|894715|894716|894717|894718|894719|894720|894721|894722|894723|894724|894725|894726|894727|894728|894729|894730|894731|894732|894733|894734|894735|894736|894737|894738|894739|894740|894741|894742|894744|894745|894746|894755|894756|896137|896139|904203|924114|924116|940817|944663|954199|954204|960571|963139|978209|978212|978214|978215", "text": "Mucopolysaccharidosis type 6" }, { - "baseId": "15917|15919|15920|15921|15922", + "upstreamId": "15917|15919|15920|15921|15922", "text": "Mucopolysaccharidosis, type vi, severe" }, { - "baseId": "15918", + "upstreamId": "15918", "text": "Mucopolysaccharidosis, type vi, mild" }, { - "baseId": "15919|15924|18088|18089|18090|18091|18092|18093|18096|18097|18099|18102|18103|18104|18105|18107|18108|18109|18110|18111|18112|18113|18114|18116|18117|18119|18120|18121|18123|18124|18125|18126|18129|18130|34036|34038|34039|55236|55237|55239|55244|55245|55246|55247|79003|79007|79008|79013|79017|79020|79023|79024|79025|79028|79035|79039|79040|79042|79044|79045|79046|79050|79052|79053|79054|79055|79056|79057|79058|99022|99024|99026|99027|99028|99030|99031|99032|99033|99035|99036|99987|137043|175007|175287|175289|177490|187069|187070|187071|187072|187073|190193|194841|195894|195895|253830|257717|260266|265187|265223|265398|272614|310742|310745|310771|310806|310808|310811|316006|316010|316044|316047|316059|316063|322088|322102|322108|322109|322114|322165|322166|322713|322714|322725|322726|322738|322776|338622|338626|338627|338628|338632|338634|338636|338640|338646|338647|338660|338662|338667|348187|348189|348191|348195|348196|348205|348206|348209|348215|348216|348218|348221|348228|348232|348233|348236|348240|348247|348254|348264|348265|351857|351860|351862|351864|351866|351895|351896|351901|351902|351904|351906|351907|351908|351909|351918|351922|351923|351925|352691|352692|352693|352694|352695|352696|352697|352698|352699|352700|352701|352702|352703|352704|352705|352706|352707|353137|353139|353147|353148|353153|358673|358674|358675|358676|358677|358678|358679|358680|358681|358682|358683|358684|358685|358686|358687|358688|358689|358690|360618|361603|404849|407907|411048|413618|424607|424608|424609|424610|424611|424612|424613|430596|438867|471607|486311|488065|489866|513675|534023|534336|549113|549118|549122|549124|549126|549130|549132|549176|549178|549180|549184|549185|549186|549187|549301|549302|549307|549308|549310|549314|549315|549318|549447|549448|549449|549450|549451|549452|549453|549454|549455|550497|572047|573429|573433|574159|621204|621655|622488|639143|639144|649555|649556|649557|649558|649559|649560|649561|694753|694754|694755|694756|706022|712459|712460|724053|729318|729319|737588|737591|743041|743042|743043|743044|743045|743046|752248|752249|752250|752251|758191|758192|767962|767964|767965|773644|773645|773646|773647|776859|776865|783731|786653|786656|786657|786658|786659|786660|786661|786662|789093|789094|789095|789096|789097|789098|789099|789100|789101|798775|849461|849462|849463|849464|849465|849466|849467|849468|851932|853025|860743|891514|891515|891516|891517|891518|891519|891520|891521|891522|891523|891524|891525|891526|891527|891528|891529|891530|891531|891532|891533|891534|891535|891536|891537|891538|891539|891540|891541|891542|891543|891544|891545|891546|891547|891548|891549|891861|891862|917329|917330|917570|921252|929512|929513|939366|939367|939368|951534|951535|951536|951537|959133|959134|959135|959136|959137|962075|962076|962077|962078|962079|962080|962081|962082|962910|965929|978776|978777|978778|978779|978780|978781|978782|978783|978784|978785|978786|978787|978788|978789|978790|978791|978792|978793|978794|978795|978796|978797|978798|978799|978800|978801|978802|978803|978804|980076|980077|980078|980203|983841|983842", + "upstreamId": "15919|15924|18088|18089|18090|18091|18092|18093|18096|18097|18099|18102|18103|18104|18105|18107|18108|18109|18110|18111|18112|18113|18114|18116|18117|18119|18120|18121|18123|18124|18125|18126|18129|18130|34036|34038|34039|55236|55237|55239|55244|55245|55246|55247|79003|79007|79008|79013|79017|79020|79023|79024|79025|79028|79035|79039|79040|79042|79044|79045|79046|79050|79052|79053|79054|79055|79056|79057|79058|99022|99024|99026|99027|99028|99030|99031|99032|99033|99035|99036|99987|137043|175007|175287|175289|177490|187069|187070|187071|187072|187073|190193|194841|195894|195895|253830|257717|260266|265187|265223|265398|272614|310742|310745|310771|310806|310808|310811|316006|316010|316044|316047|316059|316063|322088|322102|322108|322109|322114|322165|322166|322713|322714|322725|322726|322738|322776|338622|338626|338627|338628|338632|338634|338636|338640|338646|338647|338660|338662|338667|348187|348189|348191|348195|348196|348205|348206|348209|348215|348216|348218|348221|348228|348232|348233|348236|348240|348247|348254|348264|348265|351857|351860|351862|351864|351866|351895|351896|351901|351902|351904|351906|351907|351908|351909|351918|351922|351923|351925|352691|352692|352693|352694|352695|352696|352697|352698|352699|352700|352701|352702|352703|352704|352705|352706|352707|353137|353139|353147|353148|353153|358673|358674|358675|358676|358677|358678|358679|358680|358681|358682|358683|358684|358685|358686|358687|358688|358689|358690|360618|361603|404849|407907|411048|413618|424607|424608|424609|424610|424611|424612|424613|430596|438867|471607|486311|488065|489866|513675|534023|534336|549113|549118|549122|549124|549126|549130|549132|549176|549178|549180|549184|549185|549186|549187|549301|549302|549307|549308|549310|549314|549315|549318|549447|549448|549449|549450|549451|549452|549453|549454|549455|550497|572047|573429|573433|574159|621204|621655|622488|639143|639144|649555|649556|649557|649558|649559|649560|649561|694753|694754|694755|694756|706022|712459|712460|724053|729318|729319|737588|737591|743041|743042|743043|743044|743045|743046|752248|752249|752250|752251|758191|758192|767962|767964|767965|773644|773645|773646|773647|776859|776865|783731|786653|786656|786657|786658|786659|786660|786661|786662|789093|789094|789095|789096|789097|789098|789099|789100|789101|798775|849461|849462|849463|849464|849465|849466|849467|849468|851932|853025|860743|891514|891515|891516|891517|891518|891519|891520|891521|891522|891523|891524|891525|891526|891527|891528|891529|891530|891531|891532|891533|891534|891535|891536|891537|891538|891539|891540|891541|891542|891543|891544|891545|891546|891547|891548|891549|891861|891862|917329|917330|917570|921252|929512|929513|939366|939367|939368|951534|951535|951536|951537|959133|959134|959135|959136|959137|962075|962076|962077|962078|962079|962080|962081|962082|962910|965929|978776|978777|978778|978779|978780|978781|978782|978783|978784|978785|978786|978787|978788|978789|978790|978791|978792|978793|978794|978795|978796|978797|978798|978799|978800|978801|978802|978803|978804|980076|980077|980078|980203|983841|983842", "text": "Metachromatic leukodystrophy" }, { - "baseId": "15928", + "upstreamId": "15928", "text": "Autoimmune disease 1" }, { - "baseId": "15929", + "upstreamId": "15929", "text": "Bowen-Conradi syndrome" }, { - "baseId": "15930|39868|39869|135540|135541|135542|135543|135544|135545|135546|142594|142596|142599|142600|142601|192515|204466|207424|207425|211264|211266|211269|211274|211277|211280|211281|211282|211285|211288|211289|211292|226903|227304|273972|301222|301228|301229|304366|304374|308982|308999|309010|309012|309107|309108|368781|428634|481453|481454|511690|513424|539005|552109|621024|621039|692076|692077|735809|750271|759506|759674|765901|765903|765907|782686|790665|790666|790667|857620|857621|897008|900277|920230|963143|964915|965415|978366|978367|978368|978369|978370", + "upstreamId": "15930|39868|39869|135540|135541|135542|135543|135544|135545|135546|142594|142596|142599|142600|142601|192515|204466|207424|207425|211264|211266|211269|211274|211277|211280|211281|211282|211285|211288|211289|211292|226903|227304|273972|301222|301228|301229|304366|304374|308982|308999|309010|309012|309107|309108|368781|428634|481453|481454|511690|513424|539005|552109|621024|621039|692076|692077|735809|750271|759506|759674|765901|765903|765907|782686|790665|790666|790667|857620|857621|897008|900277|920230|963143|964915|965415|978366|978367|978368|978369|978370", "text": "Pontocerebellar hypoplasia type 6" }, { - "baseId": "15931|166015|626087", + "upstreamId": "15931|166015|626087", "text": "Wolfram syndrome 2" }, { - "baseId": "15932|15933|15934|15935|15936|15937|15938|15939|15940|15941|15942|15943|15944|15945|15946|15947|98494|98495|98496|106587|188278|194281|227309|303243|303244|303248|303252|303253|306560|306564|306567|306577|306583|311472|311475|311478|311479|311642|311647|457526|487321|522775|522777|523033|549626|549629|562127|562136|566129|581757|581758|590118|610518|621278|626171|636305|636306|682113|692259|692260|692261|692262|692263|692265|695367|711091|779429|790749|790750|819904|819906|819907|833796|833797|833798|898282|898283|898284|898285|898286|898287|898288|898289|898290|898291|898292|898293|898294|898295|898296|898297|898298|898299|900385|900386|919109|924898|924899|933977|963269", + "upstreamId": "15932|15933|15934|15935|15936|15937|15938|15939|15940|15941|15942|15943|15944|15945|15946|15947|98494|98495|98496|106587|188278|194281|227309|303243|303244|303248|303252|303253|306560|306564|306567|306577|306583|311472|311475|311478|311479|311642|311647|457526|487321|522775|522777|523033|549626|549629|562127|562136|566129|581757|581758|590118|610518|621278|626171|636305|636306|682113|692259|692260|692261|692262|692263|692265|695367|711091|779429|790749|790750|819904|819906|819907|833796|833797|833798|898282|898283|898284|898285|898286|898287|898288|898289|898290|898291|898292|898293|898294|898295|898296|898297|898298|898299|900385|900386|919109|924898|924899|933977|963269", "text": "Mucopolysaccharidosis type 7" }, { - "baseId": "15933|15947|188270|188271|188272|188273|188275|188276|188277|188278|188279|188280|188281|188282|188283|188284|215038|215039", + "upstreamId": "15933|15947|188270|188271|188272|188273|188275|188276|188277|188278|188279|188280|188281|188282|188283|188284|215038|215039", "text": "Non-immune hydrops fetalis" }, { - "baseId": "15948|15949|15950|15951|48159|256828|265057|332773|332775|332780|332782|342930|342936|342937|342941|342942|342948|348272|348275|348279|348280|348282|348284|348286|348297|348298|348301|348307|348308|349474|349477|349479|349482|349485|349489|349491|349494|349497|349498|349501|349505|349507|349508|377333|410546|413500|426292|438096|506582|551357|551358|551359|551360|551361|551362|551363|551364|551365|551366|551367|551368|551369|551370|551371|551372|551373|551374|551375|551376|551377|551378|551379|551380|551381|551382|551383|551384|551385|551386|551387|551388|551389|620905|622257|622258|622259|622266|716243|727984|741667|880068|880069|880070|880071|880072|880073|880074|880075|880076|880077|880078|880079|880080|880081|880082|880083|880084|880085|880086|880709", + "upstreamId": "15948|15949|15950|15951|48159|256828|265057|332773|332775|332780|332782|342930|342936|342937|342941|342942|342948|348272|348275|348279|348280|348282|348284|348286|348297|348298|348301|348307|348308|349474|349477|349479|349482|349485|349489|349491|349494|349497|349498|349501|349505|349507|349508|377333|410546|413500|426292|438096|506582|551357|551358|551359|551360|551361|551362|551363|551364|551365|551366|551367|551368|551369|551370|551371|551372|551373|551374|551375|551376|551377|551378|551379|551380|551381|551382|551383|551384|551385|551386|551387|551388|551389|620905|622257|622258|622259|622266|716243|727984|741667|880068|880069|880070|880071|880072|880073|880074|880075|880076|880077|880078|880079|880080|880081|880082|880083|880084|880085|880086|880709", "text": "Autosomal recessive congenital ichthyosis 5" }, { - "baseId": "15952|15953|15954", + "upstreamId": "15952|15953|15954", "text": "CARBONIC ANHYDRASE II VARIANT" }, { - "baseId": "15952|15955|15956|15958|15959|195548|253178|273146|305944|305945|305948|305949|305951|309985|309988|309990|315288|315289|315364|315382|315383|315386|315388|353844|513295|620305|620306|792774|900087|900088|900089|900090|900091|900092|900093|900094|900095|962051", + "upstreamId": "15952|15955|15956|15958|15959|195548|253178|273146|305944|305945|305948|305949|305951|309985|309988|309990|315288|315289|315364|315382|315383|315386|315388|353844|513295|620305|620306|792774|900087|900088|900089|900090|900091|900092|900093|900094|900095|962051", "text": "Osteopetrosis with renal tubular acidosis" }, { - "baseId": "15960|75280|94455|101793|101795|101797|141875|141877|141878|141880|141881|176935|177066|177330|177820|181488|181489|181490|190890|191074|191075|195389|196050|196051|196305|196306|196307|196308|196309|196310|196312|201187|201189|201190|201191|201192|201193|201194|201198|201199|201200|201201|201203|201204|201208|201209|201211|201212|201213|201215|201221|201222|201223|201225|201226|201227|201228|201231|201234|201236|201237|201238|201239|201240|201241|201242|201243|201244|201247|206856|206858|206860|206862|238364|238365|250169|262998|264065|271793|281999|282022|282651|359289|365410|365417|365425|365585|365588|365606|365620|365623|365624|365639|365810|391365|391377|391378|391424|391430|391513|391514|391522|391608|405300|405301|425399|434570|440524|442929|442932|448574|448580|448583|448584|448731|448732|448740|448741|448745|448753|448762|448765|448808|448815|448819|498670|498896|498902|498934|516349|516351|516352|516362|516367|516384|516389|516439|516441|516447|516453|516455|516457|516461|516463|516464|516466|516469|516472|516474|516482|516484|539963|539964|551760|552052|557471|557528|557530|557532|557571|557573|557575|558731|558733|558735|558737|558739|558741|558743|559214|559216|559218|559220|559222|559224|559228|559230|578920|628462|628463|628464|628465|628466|628467|628468|628469|628470|628471|628472|628473|628474|628475|628476|628477|628478|628479|628480|628481|628482|628483|628484|628485|628486|628487|650826|683394|683396|685843|685844|685846|685849|690746|690747|746789|746791|762205|762206|774574|780840|790051|790052|790053|792909|794777|800682|801976|819048|819049|819050|821851|821852|821853|821854|821855|821856|821857|821858|821859|821860|821861|821862|821863|821864|821865|821866|821867|821868|821869|824780|824781|824782|824783|824784|824785|824786|824787|824788|824789|824790|824791|824792|824793|824794|824795|824796|824797|824798|824799|824800|824801|824802|824803|824804|824805|824806|824807|824808|824809|824810|824811|918672|918673|922248|922249|922250|922251|922252|922253|922254|922255|930808|930809|930810|930811|930812|930813|930814|930815|930816|930817|930818|930819|930820|942239|942240|942241|942242|942243|942244|942245|942246|942247|942248|942249|952634|952635|952636|952637|952638|962030|965922|970712", + "upstreamId": "15960|75280|94455|101793|101795|101797|141875|141877|141878|141880|141881|176935|177066|177330|177820|181488|181489|181490|190890|191074|191075|195389|196050|196051|196305|196306|196307|196308|196309|196310|196312|201187|201189|201190|201191|201192|201193|201194|201198|201199|201200|201201|201203|201204|201208|201209|201211|201212|201213|201215|201221|201222|201223|201225|201226|201227|201228|201231|201234|201236|201237|201238|201239|201240|201241|201242|201243|201244|201247|206856|206858|206860|206862|238364|238365|250169|262998|264065|271793|281999|282022|282651|359289|365410|365417|365425|365585|365588|365606|365620|365623|365624|365639|365810|391365|391377|391378|391424|391430|391513|391514|391522|391608|405300|405301|425399|434570|440524|442929|442932|448574|448580|448583|448584|448731|448732|448740|448741|448745|448753|448762|448765|448808|448815|448819|498670|498896|498902|498934|516349|516351|516352|516362|516367|516384|516389|516439|516441|516447|516453|516455|516457|516461|516463|516464|516466|516469|516472|516474|516482|516484|539963|539964|551760|552052|557471|557528|557530|557532|557571|557573|557575|558731|558733|558735|558737|558739|558741|558743|559214|559216|559218|559220|559222|559224|559228|559230|578920|628462|628463|628464|628465|628466|628467|628468|628469|628470|628471|628472|628473|628474|628475|628476|628477|628478|628479|628480|628481|628482|628483|628484|628485|628486|628487|650826|683394|683396|685843|685844|685846|685849|690746|690747|746789|746791|762205|762206|774574|780840|790051|790052|790053|792909|794777|800682|801976|819048|819049|819050|821851|821852|821853|821854|821855|821856|821857|821858|821859|821860|821861|821862|821863|821864|821865|821866|821867|821868|821869|824780|824781|824782|824783|824784|824785|824786|824787|824788|824789|824790|824791|824792|824793|824794|824795|824796|824797|824798|824799|824800|824801|824802|824803|824804|824805|824806|824807|824808|824809|824810|824811|918672|918673|922248|922249|922250|922251|922252|922253|922254|922255|930808|930809|930810|930811|930812|930813|930814|930815|930816|930817|930818|930819|930820|942239|942240|942241|942242|942243|942244|942245|942246|942247|942248|942249|952634|952635|952636|952637|952638|962030|965922|970712", "text": "Mental retardation, autosomal dominant 1" }, { - "baseId": "15961", + "upstreamId": "15961", "text": "Autosomal recessive osteopetrosis 6" }, { - "baseId": "15962|15962|15963|15963|15964|15965|15966|15967|15968|15968|15971|15973|15974|15975|15977|15978|15979|15980|15981|15982|15983|15984|15984|15987|98800|98802|98803|98805|98807|98808|98813|98814|98817|98819|106590|106591|106592|191759|192236|198618|205010|205010|244010|244010|247388|251094|259759|259759|268409|404764|443416|488319|511481|513262|513535|519256|542920|542929|542931|542932|542934|542937|542939|542941|542944|542948|542958|542960|542962|542965|542967|542970|543091|543093|543095|543098|543109|543110|543114|543117|543122|543156|543170|543173|543181|543184|543185|543186|543188|543190|543192|543193|543194|543195|543198|543200|543202|543206|543207|543208|543214|543215|543217|543219|543220|543222|543223|543224|543226|543242|543243|553376|677122|788764|789350|806439|815872|861129|906152|971843|971844|971845|971846", + "upstreamId": "15962|15962|15963|15963|15964|15965|15966|15967|15968|15968|15971|15973|15974|15975|15977|15978|15979|15980|15981|15982|15983|15984|15984|15987|98800|98802|98803|98805|98807|98808|98813|98814|98817|98819|106590|106591|106592|191759|192236|198618|205010|205010|244010|244010|247388|251094|259759|259759|268409|404764|443416|488319|511481|513262|513535|519256|542920|542929|542931|542932|542934|542937|542939|542941|542944|542948|542958|542960|542962|542965|542967|542970|543091|543093|543095|543098|543109|543110|543114|543117|543122|543156|543170|543173|543181|543184|543185|543186|543188|543190|543192|543193|543194|543195|543198|543200|543202|543206|543207|543208|543214|543215|543217|543219|543220|543222|543223|543224|543226|543242|543243|553376|677122|788764|789350|806439|815872|861129|906152|971843|971844|971845|971846", "text": "Infantile GM1 gangliosidosis" }, { - "baseId": "15962|15963|15964|15965|15965|15968|15969|15974|15974|15977|15978|15979|15980|15981|15982|15984|15984|15987|98800|98802|98803|98805|98807|98808|98813|98814|98817|98819|192236|205010|244010|247388|251094|259759|268409|404764|443416|488319|511481|513535|519256|542920|542929|542931|542932|542934|542937|542939|542941|542944|542948|542958|542960|542962|542965|542967|542970|543091|543093|543095|543098|543109|543110|543114|543117|543122|543156|543170|543173|543181|543184|543185|543186|543188|543190|543192|543193|543194|543195|543198|543200|543202|543206|543207|543208|543214|543215|543217|543219|543220|543222|543223|543224|543226|543242|543243|553376|971843|971844|971845|971846", + "upstreamId": "15962|15963|15964|15965|15965|15968|15969|15974|15974|15977|15978|15979|15980|15981|15982|15984|15984|15987|98800|98802|98803|98805|98807|98808|98813|98814|98817|98819|192236|205010|244010|247388|251094|259759|268409|404764|443416|488319|511481|513535|519256|542920|542929|542931|542932|542934|542937|542939|542941|542944|542948|542958|542960|542962|542965|542967|542970|543091|543093|543095|543098|543109|543110|543114|543117|543122|543156|543170|543173|543181|543184|543185|543186|543188|543190|543192|543193|543194|543195|543198|543200|543202|543206|543207|543208|543214|543215|543217|543219|543220|543222|543223|543224|543226|543242|543243|553376|971843|971844|971845|971846", "text": "GM1 gangliosidosis type 3" }, { - "baseId": "15962|15962|15963|15963|15964|15964|15965|15967|15968|15970|15971|15971|15972|15974|15974|15975|15975|15976|15977|15977|15978|15978|15979|15979|15980|15980|15980|15981|15981|15981|15982|15982|15983|15984|15984|15984|15985|15985|15987|79371|98800|98801|98802|98802|98803|98804|98804|98805|98806|98806|98807|98808|98808|98809|98811|98812|98813|98813|98814|98814|98816|98817|98819|98821|134600|177750|177750|177751|191759|192236|195238|195238|198618|205010|205010|244010|247388|247388|251092|251094|251094|251095|251095|259759|259759|259759|268409|268409|268409|290008|290009|290015|290019|290020|290020|290021|290770|290771|290772|290774|290774|290776|290776|290779|290779|290780|293940|293941|293941|293942|293942|293948|294402|294405|294406|294409|294409|359418|359418|368399|368399|404764|404764|413623|414933|414933|443416|443416|488319|488319|511481|511481|513535|513535|519256|519256|542920|542929|542931|542932|542934|542934|542937|542937|542939|542941|542941|542944|542948|542958|542960|542962|542965|542967|542970|543091|543093|543095|543098|543109|543110|543114|543117|543117|543122|543156|543170|543173|543181|543184|543185|543186|543188|543190|543190|543192|543193|543194|543195|543198|543200|543202|543206|543207|543207|543207|543208|543214|543215|543215|543215|543217|543217|543219|543220|543222|543223|543223|543224|543226|543242|543243|549547|553376|553376|559427|559427|631173|631174|631175|631176|631177|631178|651170|672002|691372|691373|691375|691376|691377|695198|698038|698039|698039|698040|708787|708788|708788|734026|734026|734027|734029|763816|763818|763820|774802|777248|805341|819366|827900|827901|827902|827903|827904|827905|827906|888665|888666|888667|888668|888669|888670|888671|888672|888673|888674|888675|891635|891636|891637|923139|940747|940748|943476|943477|953435|953436|959694|975775", + "upstreamId": "15962|15962|15963|15963|15964|15964|15965|15967|15968|15970|15971|15971|15972|15974|15974|15975|15975|15976|15977|15977|15978|15978|15979|15979|15980|15980|15980|15981|15981|15981|15982|15982|15983|15984|15984|15984|15985|15985|15987|79371|98800|98801|98802|98802|98803|98804|98804|98805|98806|98806|98807|98808|98808|98809|98811|98812|98813|98813|98814|98814|98816|98817|98819|98821|134600|177750|177750|177751|191759|192236|195238|195238|198618|205010|205010|244010|247388|247388|251092|251094|251094|251095|251095|259759|259759|259759|268409|268409|268409|290008|290009|290015|290019|290020|290020|290021|290770|290771|290772|290774|290774|290776|290776|290779|290779|290780|293940|293941|293941|293942|293942|293948|294402|294405|294406|294409|294409|359418|359418|368399|368399|404764|404764|413623|414933|414933|443416|443416|488319|488319|511481|511481|513535|513535|519256|519256|542920|542929|542931|542932|542934|542934|542937|542937|542939|542941|542941|542944|542948|542958|542960|542962|542965|542967|542970|543091|543093|543095|543098|543109|543110|543114|543117|543117|543122|543156|543170|543173|543181|543184|543185|543186|543188|543190|543190|543192|543193|543194|543195|543198|543200|543202|543206|543207|543207|543207|543208|543214|543215|543215|543215|543217|543217|543219|543220|543222|543223|543223|543224|543226|543242|543243|549547|553376|553376|559427|559427|631173|631174|631175|631176|631177|631178|651170|672002|691372|691373|691375|691376|691377|695198|698038|698039|698039|698040|708787|708788|708788|734026|734026|734027|734029|763816|763818|763820|774802|777248|805341|819366|827900|827901|827902|827903|827904|827905|827906|888665|888666|888667|888668|888669|888670|888671|888672|888673|888674|888675|891635|891636|891637|923139|940747|940748|943476|943477|953435|953436|959694|975775", "text": "Mucopolysaccharidosis, MPS-IV-B" }, { - "baseId": "15962|15963|15964|15965|15968|15974|15974|15977|15978|15979|15980|15981|15982|15983|15984|15984|15987|77007|77008|79370|79371|79372|98800|98802|98803|98805|98807|98808|98813|98814|98817|98819|192236|195238|198618|205010|244010|247388|247388|251094|259759|268409|404764|443416|488319|488319|511481|513535|519256|542920|542929|542931|542932|542934|542937|542939|542941|542944|542948|542958|542960|542962|542965|542967|542970|543091|543093|543095|543098|543109|543110|543114|543117|543122|543156|543170|543173|543181|543184|543185|543186|543188|543188|543190|543192|543193|543193|543194|543195|543198|543200|543202|543206|543207|543208|543214|543215|543217|543219|543220|543222|543223|543223|543224|543226|543242|543243|553376|672002|672008|798530|971843|971844|971845|971846", + "upstreamId": "15962|15963|15964|15965|15968|15974|15974|15977|15978|15979|15980|15981|15982|15983|15984|15984|15987|77007|77008|79370|79371|79372|98800|98802|98803|98805|98807|98808|98813|98814|98817|98819|192236|195238|198618|205010|244010|247388|247388|251094|259759|268409|404764|443416|488319|488319|511481|513535|519256|542920|542929|542931|542932|542934|542937|542939|542941|542944|542948|542958|542960|542962|542965|542967|542970|543091|543093|543095|543098|543109|543110|543114|543117|543122|543156|543170|543173|543181|543184|543185|543186|543188|543188|543190|543192|543193|543193|543194|543195|543198|543200|543202|543206|543207|543208|543214|543215|543217|543219|543220|543222|543223|543223|543224|543226|543242|543243|553376|672002|672008|798530|971843|971844|971845|971846", "text": "GM1 gangliosidosis type 2" }, { - "baseId": "15962|15963|15963|15964|15964|15967|15971|15971|15974|15975|15978|15978|15980|15981|15983|15984|15984|15985|15985|79371|98801|98802|98804|98804|98806|98806|98808|98809|98811|98812|98813|98814|98814|98816|98817|98820|98821|134600|177750|177751|191759|192236|195238|195238|198618|198618|205010|247388|247388|251092|251094|251095|251095|259759|268409|290008|290009|290015|290017|290019|290020|290020|290021|290770|290771|290772|290774|290774|290775|290776|290776|290779|290779|290780|293940|293941|293941|293942|293942|293948|293951|294402|294405|294406|294409|294409|294412|359418|368399|404764|404764|413623|414933|443416|488319|511481|519256|542934|542937|542941|543117|543188|543190|543207|543207|543215|543215|543217|543223|549547|553376|553376|559427|631173|631174|631175|631175|631176|631177|631178|651170|672002|691372|691373|691375|691376|691377|695198|698038|698039|698039|698040|708787|708788|708788|734026|734026|734027|734029|763816|763818|763820|774802|777248|805341|805341|819366|827900|827901|827902|827903|827904|827904|827905|827906|888665|888666|888667|888668|888669|888670|888671|888672|888673|888674|888675|891635|891636|891637|905905|906358|906362|916909|923139|940747|940748|943476|943477|953435|953436|959694|961839|961840", + "upstreamId": "15962|15963|15963|15964|15964|15967|15971|15971|15974|15975|15978|15978|15980|15981|15983|15984|15984|15985|15985|79371|98801|98802|98804|98804|98806|98806|98808|98809|98811|98812|98813|98814|98814|98816|98817|98820|98821|134600|177750|177751|191759|192236|195238|195238|198618|198618|205010|247388|247388|251092|251094|251095|251095|259759|268409|290008|290009|290015|290017|290019|290020|290020|290021|290770|290771|290772|290774|290774|290775|290776|290776|290779|290779|290780|293940|293941|293941|293942|293942|293948|293951|294402|294405|294406|294409|294409|294412|359418|368399|404764|404764|413623|414933|443416|488319|511481|519256|542934|542937|542941|543117|543188|543190|543207|543207|543215|543215|543217|543223|549547|553376|553376|559427|631173|631174|631175|631175|631176|631177|631178|651170|672002|691372|691373|691375|691376|691377|695198|698038|698039|698039|698040|708787|708788|708788|734026|734026|734027|734029|763816|763818|763820|774802|777248|805341|805341|819366|827900|827901|827902|827903|827904|827904|827905|827906|888665|888666|888667|888668|888669|888670|888671|888672|888673|888674|888675|891635|891636|891637|905905|906358|906362|916909|923139|940747|940748|943476|943477|953435|953436|959694|961839|961840", "text": "GM1 gangliosidosis" }, { - "baseId": "15980|15984|15985|15986|15987", + "upstreamId": "15980|15984|15985|15986|15987", "text": "GM1-gangliosidosis, type I, with cardiac involvement" }, { - "baseId": "15988|15989|15990|75138|75139|88570|140838|140839|140840|140841|140842|140844|140845|140846|140847|140848|140850|140851|140852|140853|140854|140855|140856|140857|140858|140859|140860|174549|174550|174690|174691|174696|174697|174825|174826|175103|175104|175110|175111|193766|195457|215402|226224|226225|229688|229690|229691|236911|237163|259926|266815|308106|308113|308115|308119|308141|308211|308345|308363|308442|308443|308482|308483|308503|308511|308574|308576|308579|308582|312197|312198|312480|312593|312596|312803|312804|312858|312897|312917|312924|313003|313004|313019|313021|313022|317883|317885|317887|318105|318335|318342|318343|318386|318398|318399|318657|318770|318778|318795|318799|318804|318805|318807|318812|318843|318845|318846|318914|318915|318928|318929|319005|319274|319326|319373|319375|319376|319385|319410|319421|319439|319447|319477|319550|319551|359803|359811|363998|370372|370443|370886|370891|370946|370949|370952|370956|371207|371211|371231|371280|372961|372971|372977|373060|373066|373067|373074|389910|407684|407710|407711|407712|415196|421748|434741|444469|444475|444500|444502|444503|444504|444505|444508|458128|459128|459168|459170|459425|459613|459972|459975|460098|494071|497054|497117|503168|503370|503425|503426|511837|523828|524107|524402|524408|524411|524510|524515|524637|524638|524642|524643|524650|524802|524808|524867|524869|524871|524921|524928|524931|524997|525079|525163|525166|525167|525169|525172|525174|562600|563183|563185|563240|563241|563245|563271|563275|563276|563278|563280|563286|564078|564084|564086|564094|564096|565359|565851|565855|565856|565857|565860|565928|565930|565932|565938|565940|565941|565946|565949|569121|569128|569131|569134|569135|612862|614346|638182|638183|638184|638185|638186|638187|638188|638189|638190|638191|638192|638193|638194|638195|638196|638197|638198|638199|638330|638331|638332|638333|638338|638339|638340|638341|638342|638343|638344|638345|638346|638347|638348|638349|638350|638351|638352|638353|638354|638355|638356|638357|638358|638359|651835|651840|651843|651849|651851|651854|651949|651950|651953|652029|652040|652064|652070|652218|655962|723534|723541|723553|723582|723583|730645|737105|737106|737136|737145|737152|744376|751666|751679|751711|751736|759752|759910|767372|767378|767430|767431|767440|775548|775556|779422|783392|783420|787635|790911|790913|790914|820110|820111|820112|820113|820114|820115|820116|820125|820126|820128|820129|820130|820131|820132|820133|820134|820142|820143|820145|820146|835987|835988|835989|836006|836037|836038|836039|836040|836041|836042|836043|836060|836061|836062|836063|836064|836065|836066|836164|836165|836169|836170|836171|836172|836173|836174|836175|836176|836177|836178|836179|836180|836181|836182|836183|836184|836185|836186|836187|836188|836189|836190|836191|836192|836193|836194|836195|836196|836197|836198|836199|836200|836201|836202|836203|836204|836205|836206|836207|836208|836209|836210|836211|836212|836213|836214|836215|836216|836217|851742|858762|901881|901882|901883|901884|901885|901886|901887|901918|901919|901920|901934|901935|901936|901937|902057|902058|902059|902060|902061|902076|902077|902091|902092|902113|902127|902129|902173|902178|902192|902206|902207|902208|902209|902211|902212|902213|902256|902257|902258|902259|902260|902261|902262|902263|902264|902265|902266|902267|902268|903380|903385|903388|903413|903414|903415|903416|903418|903419|919235|919236|920273|925557|925558|925559|925560|925561|925562|925602|925603|925604|925605|925607|925608|925609|925610|925611|925612|925613|925614|925615|925616|925617|925618|925619|925620|925621|934723|934724|934733|934734|934735|934736|934784|934785|934786|934788|934789|934790|934791|934792|934793|934794|934795|934796|934797|934798|934799|934800|940151|946581|946582|946590|946591|946592|946640|946641|946642|946643|946644|946645|946646|946647|946648|946649|946650|946651|946652|946653|946654|946655|955855|955860|955861|955862|955863|955864|955865|959919|959921|976658|980464", + "upstreamId": "15988|15989|15990|75138|75139|88570|140838|140839|140840|140841|140842|140844|140845|140846|140847|140848|140850|140851|140852|140853|140854|140855|140856|140857|140858|140859|140860|174549|174550|174690|174691|174696|174697|174825|174826|175103|175104|175110|175111|193766|195457|215402|226224|226225|229688|229690|229691|236911|237163|259926|266815|308106|308113|308115|308119|308141|308211|308345|308363|308442|308443|308482|308483|308503|308511|308574|308576|308579|308582|312197|312198|312480|312593|312596|312803|312804|312858|312897|312917|312924|313003|313004|313019|313021|313022|317883|317885|317887|318105|318335|318342|318343|318386|318398|318399|318657|318770|318778|318795|318799|318804|318805|318807|318812|318843|318845|318846|318914|318915|318928|318929|319005|319274|319326|319373|319375|319376|319385|319410|319421|319439|319447|319477|319550|319551|359803|359811|363998|370372|370443|370886|370891|370946|370949|370952|370956|371207|371211|371231|371280|372961|372971|372977|373060|373066|373067|373074|389910|407684|407710|407711|407712|415196|421748|434741|444469|444475|444500|444502|444503|444504|444505|444508|458128|459128|459168|459170|459425|459613|459972|459975|460098|494071|497054|497117|503168|503370|503425|503426|511837|523828|524107|524402|524408|524411|524510|524515|524637|524638|524642|524643|524650|524802|524808|524867|524869|524871|524921|524928|524931|524997|525079|525163|525166|525167|525169|525172|525174|562600|563183|563185|563240|563241|563245|563271|563275|563276|563278|563280|563286|564078|564084|564086|564094|564096|565359|565851|565855|565856|565857|565860|565928|565930|565932|565938|565940|565941|565946|565949|569121|569128|569131|569134|569135|612862|614346|638182|638183|638184|638185|638186|638187|638188|638189|638190|638191|638192|638193|638194|638195|638196|638197|638198|638199|638330|638331|638332|638333|638338|638339|638340|638341|638342|638343|638344|638345|638346|638347|638348|638349|638350|638351|638352|638353|638354|638355|638356|638357|638358|638359|651835|651840|651843|651849|651851|651854|651949|651950|651953|652029|652040|652064|652070|652218|655962|723534|723541|723553|723582|723583|730645|737105|737106|737136|737145|737152|744376|751666|751679|751711|751736|759752|759910|767372|767378|767430|767431|767440|775548|775556|779422|783392|783420|787635|790911|790913|790914|820110|820111|820112|820113|820114|820115|820116|820125|820126|820128|820129|820130|820131|820132|820133|820134|820142|820143|820145|820146|835987|835988|835989|836006|836037|836038|836039|836040|836041|836042|836043|836060|836061|836062|836063|836064|836065|836066|836164|836165|836169|836170|836171|836172|836173|836174|836175|836176|836177|836178|836179|836180|836181|836182|836183|836184|836185|836186|836187|836188|836189|836190|836191|836192|836193|836194|836195|836196|836197|836198|836199|836200|836201|836202|836203|836204|836205|836206|836207|836208|836209|836210|836211|836212|836213|836214|836215|836216|836217|851742|858762|901881|901882|901883|901884|901885|901886|901887|901918|901919|901920|901934|901935|901936|901937|902057|902058|902059|902060|902061|902076|902077|902091|902092|902113|902127|902129|902173|902178|902192|902206|902207|902208|902209|902211|902212|902213|902256|902257|902258|902259|902260|902261|902262|902263|902264|902265|902266|902267|902268|903380|903385|903388|903413|903414|903415|903416|903418|903419|919235|919236|920273|925557|925558|925559|925560|925561|925562|925602|925603|925604|925605|925607|925608|925609|925610|925611|925612|925613|925614|925615|925616|925617|925618|925619|925620|925621|934723|934724|934733|934734|934735|934736|934784|934785|934786|934788|934789|934790|934791|934792|934793|934794|934795|934796|934797|934798|934799|934800|940151|946581|946582|946590|946591|946592|946640|946641|946642|946643|946644|946645|946646|946647|946648|946649|946650|946651|946652|946653|946654|946655|955855|955860|955861|955862|955863|955864|955865|959919|959921|976658|980464", "text": "Hyperimmunoglobulin E recurrent infection syndrome, autosomal recessive" }, { - "baseId": "15991|15992|15993|15994|15994|15995|15995|15996|15997|15998|15999|16000|16000|16001|16002|16004|29346|39863|190736|190737|191147|191148|191149|191323|191755|192718|192804|192806|192886|195224|195572|195868|206562|206563|208145|208146|208170|208171|208172|208172|208173|208174|214462|242569|255132|255133|255134|255135|255137|255138|255140|255141|255142|255145|255147|255148|255150|255151|268271|322119|322129|322130|322133|331398|331399|331401|331412|331413|331415|331419|338295|338297|338302|338306|338311|338316|338319|340107|340111|340112|340113|340122|340128|343069|360967|401431|409200|422005|422134|424507|426088|429631|429631|429633|429634|429636|429637|429638|429639|429641|429642|445685|445685|467249|467261|491377|539156|539157|539158|576279|609224|609227|615958|615959|615960|615961|615962|615963|615967|615968|615969|620502|620503|620504|620505|622698|666810|703096|770064|791437|873122|873123|873124|873125|873126|873127|873128|873129|873130|873131|873132|873133|873134|873135|873136|873137|873138|873139|873140|873141|873142|873143|873144|873145|873146|873147|873148|873149|873150|873151|873152|873153|873154|876480|876481|876482|905055|961532|971588", + "upstreamId": "15991|15992|15993|15994|15994|15995|15995|15996|15997|15998|15999|16000|16000|16001|16002|16004|29346|39863|190736|190737|191147|191148|191149|191323|191755|192718|192804|192806|192886|195224|195572|195868|206562|206563|208145|208146|208170|208171|208172|208172|208173|208174|214462|242569|255132|255133|255134|255135|255137|255138|255140|255141|255142|255145|255147|255148|255150|255151|268271|322119|322129|322130|322133|331398|331399|331401|331412|331413|331415|331419|338295|338297|338302|338306|338311|338316|338319|340107|340111|340112|340113|340122|340128|343069|360967|401431|409200|422005|422134|424507|426088|429631|429631|429633|429634|429636|429637|429638|429639|429641|429642|445685|445685|467249|467261|491377|539156|539157|539158|576279|609224|609227|615958|615959|615960|615961|615962|615963|615967|615968|615969|620502|620503|620504|620505|622698|666810|703096|770064|791437|873122|873123|873124|873125|873126|873127|873128|873129|873130|873131|873132|873133|873134|873135|873136|873137|873138|873139|873140|873141|873142|873143|873144|873145|873146|873147|873148|873149|873150|873151|873152|873153|873154|876480|876481|876482|905055|961532|971588", "text": "Tyrosinase-positive oculocutaneous albinism" }, { - "baseId": "15991", + "upstreamId": "15991", "text": "Brown oculocutaneous albinism" }, { - "baseId": "15994|15995|15999|16000|16001|16002|19782|19783|19784|191148|208172|236894|374023|422005|429631|508884|578449|792795", + "upstreamId": "15994|15995|15999|16000|16001|16002|19782|19783|19784|191148|208172|236894|374023|422005|429631|508884|578449|792795", "text": "Skin/hair/eye pigmentation, variation in, 1" }, { - "baseId": "15995|18814|18831|18834|18835|32635|105416|105431|105472|208174|445285|494127|609202|609206|609207|609215|609216|609217|609218|609224|609225|609226|609227|609228|609229|609230|609264|609265|609266|609267|609268|609272", + "upstreamId": "15995|18814|18831|18834|18835|32635|105416|105431|105472|208174|445285|494127|609202|609206|609207|609215|609216|609217|609218|609224|609225|609226|609227|609228|609229|609230|609264|609265|609266|609267|609268|609272", "text": "Nonsyndromic Oculocutaneous Albinism" }, { - "baseId": "16005|16006|16007|16008|177112|177243|177374|301108|301118|301119|301123|301125|301126|301129|301130|301137|301139|301141|304121|304139|304140|304147|304156|304157|304165|304166|304167|304179|304183|304184|304185|304192|304219|304220|304221|308878|308882|308883|308884|308886|308889|308891|308894|308895|308896|308909|308913|308914|308917|308962|308964|308985|308998|309000|309002|309004|309006|309007|309008|361402|692066|692070|692071|699676|735779|735780|798916|799452|799453|799454|832577|896934|896935|896936|896937|896938|896939|896940|896941|896942|896943|896944|896945|896946|896947|896948|896949|896950|896951|896952|896953|896954|896955|896956|896957|896958|896959|896960|896961|896962|896963|896964|896965|896966|896967|896968|896969|896970|900274|900275|966586|966587|966588|966589|966590|966591|966592|966593|966594|966596", + "upstreamId": "16005|16006|16007|16008|177112|177243|177374|301108|301118|301119|301123|301125|301126|301129|301130|301137|301139|301141|304121|304139|304140|304147|304156|304157|304165|304166|304167|304179|304183|304184|304185|304192|304219|304220|304221|308878|308882|308883|308884|308886|308889|308891|308894|308895|308896|308909|308913|308914|308917|308962|308964|308985|308998|309000|309002|309004|309006|309007|309008|361402|692066|692070|692071|699676|735779|735780|798916|799452|799453|799454|832577|896934|896935|896936|896937|896938|896939|896940|896941|896942|896943|896944|896945|896946|896947|896948|896949|896950|896951|896952|896953|896954|896955|896956|896957|896958|896959|896960|896961|896962|896963|896964|896965|896966|896967|896968|896969|896970|900274|900275|966586|966587|966588|966589|966590|966591|966592|966593|966594|966596", "text": "Leber congenital amaurosis 5" }, { - "baseId": "16005|16007|16372|16374|16381|16870|17086|17088|17089|17094|17984|20022|20264|20604|20775|20778|20779|20879|20901|22555|28154|28154|28158|33455|38825|39736|45795|48213|71372|71373|71377|71378|90149|98766|98767|101845|102062|102064|102066|104456|104492|104710|104715|104720|104726|104730|104747|104750|104753|104756|104757|104761|104789|105003|105219|105677|105698|105739|105745|105746|105755|105767|105772|105777|105795|105802|105803|105806|106469|106470|131781|131784|131789|131790|131801|132656|140430|140432|140433|152874|152885|152893|166162|166163|166167|166170|166171|166172|166173|166174|166175|166176|166177|166178|166179|177012|177143|177274|177275|177407|177569|177574|177649|177818|186767|192056|193150|193956|194245|194735|195036|195038|195426|196354|208002|213535|214327|214330|214336|215459|222267|226069|226534|227208|238059|238060|241580|241581|241582|244072|254734|254763|265486|265487|266496|269446|269860|270116|270185|271821|271989|278313|278731|278752|278767|278948|278950|278951|279529|279543|279548|279565|280103|280136|280138|280188|280189|280191|280236|280238|280239|280242|280243|280244|280248|281153|282951|285348|285975|286003|288344|292531|292538|292539|292542|292553|292554|292558|292561|292592|292597|293944|293947|293972|293973|293974|293975|297323|297325|297328|297351|297354|297355|297356|297377|297378|297379|297385|297388|297406|302595|304192|304195|307247|308890|308894|308895|308983|318583|318585|318587|318604|321023|321024|326794|326807|326864|326876|328900|329414|329441|329443|329455|330122|332974|332978|332982|332983|333926|333959|334650|334658|339719|339732|339733|339736|339743|343885|343913|345454|345466|346805|349196|349200|349209|350128|353450|353451|353806|359276|360037|360901|361383|363660|364061|364169|377829|405000|408763|408764|408767|408772|413259|413368|413369|413658|418814|418817|418818|418820|418821|418823|418824|418825|418826|418827|418830|418831|426028|429460|429461|431560|431564|431565|431570|431637|431638|431639|431640|431664|431717|431718|431773|431776|431777|431802|431876|439631|448228|448230|462506|462765|463244|463251|463360|481582|489186|490297|496468|527405|527407|527409|527675|540977|550243|550244|550245|550246|550247|550249|550250|550251|550252|551581|551586|551591|551601|567084|568182|568185|569530|576338|609862|622989|623795|623879|623891|623892|623893|623894|623936|623977|624011|624014|624021|624030|628252|635309|641430|641431|641434|642639|642641|654353|684355|684356|684357|684358|685384|685386|688057|688060|688061|688062|688065|688066|688068|688069|688070|688071|688072|688073|688075|690054|690055|690437|690438|692065|692067|692070|692071|692072|693293|693294|693296|695586|696356|696361|696859|696863|702958|702960|706971|706972|707502|707504|710617|713770|714209|718484|719066|719067|731980|731981|731982|735782|739289|745957|746632|750240|750241|753624|759673|760254|761441|761443|762071|769332|777151|777160|778208|780423|782667|784751|791839|794252|795395|796876|800419|800421|800424|800448|800509|800512|800513|800514|800531|800544|800580|800610|800611|800614|800615|800684|800690|800703|801274|801275|801309|801331|801357|801437|801454|816462|823108|823114|823128|823139|824391|824401|824402|832551|832553|832557|832562|832564|832566|832568|832569|832570|832571|832573|832574|832578|840355|840356|840363|840368|840369|840379|840388|840395|841682|841683|841684|841690|852038|852510|870503|870508|870517|921782|952514|956982|956983|970641|970642|977470|977471|977472|977473|977474|977475|977476|977557|977558|977559|977560|977561|978354|978355|978356|978357|979302|979303|979304|979305|979306|979307|979308|979309|979310|979311|979312|979313|979314|979315|979316|979317|979318|979319|979320|979321|979322|979323|979324|979325|979326|979327|979328|979329|979330|979331|979332|979333|979334|979335|979336|979337|979338|979339|979340|979510|979511|979512|979513|979514|979515|979516|979517|979518|979519|979520|979521", + "upstreamId": "16005|16007|16372|16374|16381|16870|17086|17088|17089|17094|17984|20022|20264|20604|20775|20778|20779|20879|20901|22555|28154|28154|28158|33455|38825|39736|45795|48213|71372|71373|71377|71378|90149|98766|98767|101845|102062|102064|102066|104456|104492|104710|104715|104720|104726|104730|104747|104750|104753|104756|104757|104761|104789|105003|105219|105677|105698|105739|105745|105746|105755|105767|105772|105777|105795|105802|105803|105806|106469|106470|131781|131784|131789|131790|131801|132656|140430|140432|140433|152874|152885|152893|166162|166163|166167|166170|166171|166172|166173|166174|166175|166176|166177|166178|166179|177012|177143|177274|177275|177407|177569|177574|177649|177818|186767|192056|193150|193956|194245|194735|195036|195038|195426|196354|208002|213535|214327|214330|214336|215459|222267|226069|226534|227208|238059|238060|241580|241581|241582|244072|254734|254763|265486|265487|266496|269446|269860|270116|270185|271821|271989|278313|278731|278752|278767|278948|278950|278951|279529|279543|279548|279565|280103|280136|280138|280188|280189|280191|280236|280238|280239|280242|280243|280244|280248|281153|282951|285348|285975|286003|288344|292531|292538|292539|292542|292553|292554|292558|292561|292592|292597|293944|293947|293972|293973|293974|293975|297323|297325|297328|297351|297354|297355|297356|297377|297378|297379|297385|297388|297406|302595|304192|304195|307247|308890|308894|308895|308983|318583|318585|318587|318604|321023|321024|326794|326807|326864|326876|328900|329414|329441|329443|329455|330122|332974|332978|332982|332983|333926|333959|334650|334658|339719|339732|339733|339736|339743|343885|343913|345454|345466|346805|349196|349200|349209|350128|353450|353451|353806|359276|360037|360901|361383|363660|364061|364169|377829|405000|408763|408764|408767|408772|413259|413368|413369|413658|418814|418817|418818|418820|418821|418823|418824|418825|418826|418827|418830|418831|426028|429460|429461|431560|431564|431565|431570|431637|431638|431639|431640|431664|431717|431718|431773|431776|431777|431802|431876|439631|448228|448230|462506|462765|463244|463251|463360|481582|489186|490297|496468|527405|527407|527409|527675|540977|550243|550244|550245|550246|550247|550249|550250|550251|550252|551581|551586|551591|551601|567084|568182|568185|569530|576338|609862|622989|623795|623879|623891|623892|623893|623894|623936|623977|624011|624014|624021|624030|628252|635309|641430|641431|641434|642639|642641|654353|684355|684356|684357|684358|685384|685386|688057|688060|688061|688062|688065|688066|688068|688069|688070|688071|688072|688073|688075|690054|690055|690437|690438|692065|692067|692070|692071|692072|693293|693294|693296|695586|696356|696361|696859|696863|702958|702960|706971|706972|707502|707504|710617|713770|714209|718484|719066|719067|731980|731981|731982|735782|739289|745957|746632|750240|750241|753624|759673|760254|761441|761443|762071|769332|777151|777160|778208|780423|782667|784751|791839|794252|795395|796876|800419|800421|800424|800448|800509|800512|800513|800514|800531|800544|800580|800610|800611|800614|800615|800684|800690|800703|801274|801275|801309|801331|801357|801437|801454|816462|823108|823114|823128|823139|824391|824401|824402|832551|832553|832557|832562|832564|832566|832568|832569|832570|832571|832573|832574|832578|840355|840356|840363|840368|840369|840379|840388|840395|841682|841683|841684|841690|852038|852510|870503|870508|870517|921782|952514|956982|956983|970641|970642|977470|977471|977472|977473|977474|977475|977476|977557|977558|977559|977560|977561|978354|978355|978356|978357|979302|979303|979304|979305|979306|979307|979308|979309|979310|979311|979312|979313|979314|979315|979316|979317|979318|979319|979320|979321|979322|979323|979324|979325|979326|979327|979328|979329|979330|979331|979332|979333|979334|979335|979336|979337|979338|979339|979340|979510|979511|979512|979513|979514|979515|979516|979517|979518|979519|979520|979521", "text": "Leber congenital amaurosis" }, { - "baseId": "16009|399644|622414|919450|970128", + "upstreamId": "16009|399644|622414|919450|970128", "text": "Mental retardation, fra12a type" }, { - "baseId": "16010|16011|16012|16013|34168|135444|202902|205210|208223|208224|213140|222433|227371|242122|242125|242126|242129|242134|242136|242137|242138|242142|255378|255379|255383|255384|255385|255386|255387|255389|323474|323482|323486|323487|323490|323492|323499|323502|323507|333179|333181|333190|333199|333200|333214|333215|333222|333224|333230|333231|333235|333236|333243|333247|340002|340005|340006|340007|340009|340010|340012|340013|340022|340029|340031|340032|340034|340036|341388|341390|341396|341397|341399|341401|341404|341406|341407|341408|341409|341411|341412|341420|341422|341424|341431|341434|341435|341436|341440|363821|400365|400376|400387|400414|400419|400511|400516|400530|400539|400540|400865|401220|401226|401232|401233|445447|464549|464561|465208|465228|465452|529135|529450|529451|529674|567316|567324|567326|569628|614402|614403|620530|620531|643586|643587|643589|684560|688496|874225|874226|874227|874228|874229|874230|874231|874232|874233|874234|874235|874236|874237|874238|874239|874240|874241|874242|874243|874244|874245|874246|874247|874248|874249|874250|874253|874254|876586|876587|876588|918031|918032|918033|918034|918035|918036|918039|918040|918041|918042|918043|918044|918045|918046|918047|918048|918049|918050|918051", + "upstreamId": "16010|16011|16012|16013|34168|135444|202902|205210|208223|208224|213140|222433|227371|242122|242125|242126|242129|242134|242136|242137|242138|242142|255378|255379|255383|255384|255385|255386|255387|255389|323474|323482|323486|323487|323490|323492|323499|323502|323507|333179|333181|333190|333199|333200|333214|333215|333222|333224|333230|333231|333235|333236|333243|333247|340002|340005|340006|340007|340009|340010|340012|340013|340022|340029|340031|340032|340034|340036|341388|341390|341396|341397|341399|341401|341404|341406|341407|341408|341409|341411|341412|341420|341422|341424|341431|341434|341435|341436|341440|363821|400365|400376|400387|400414|400419|400511|400516|400530|400539|400540|400865|401220|401226|401232|401233|445447|464549|464561|465208|465228|465452|529135|529450|529451|529674|567316|567324|567326|569628|614402|614403|620530|620531|643586|643587|643589|684560|688496|874225|874226|874227|874228|874229|874230|874231|874232|874233|874234|874235|874236|874237|874238|874239|874240|874241|874242|874243|874244|874245|874246|874247|874248|874249|874250|874253|874254|876586|876587|876588|918031|918032|918033|918034|918035|918036|918039|918040|918041|918042|918043|918044|918045|918046|918047|918048|918049|918050|918051", "text": "Fanconi anemia, complementation group I" }, { - "baseId": "16014|16015|16016|16017|550808", + "upstreamId": "16014|16015|16016|16017|550808", "text": "Macrocephaly, macrosomia, facial dysmorphism syndrome" }, { - "baseId": "16016|23594|49251|50126|50180|57932|75743|75801|75812|75986|76035|76039|76077|76144|76148|76195|76217|76313|84057|187273|187274|201908|203104|205325|215524|223668|224835|224836|224837|224838|224839|224840|224841|224842|224843|224844|224845|224846|224847|224848|224849|224850|224851|237859|237860|237861|237862|237863|237864|237865|237866|237867|237868|237869|237870|237871|237872|237873|237874|237875|237876|237877|237878|237879|237880|237881|237882|237883|237884|237885|237886|237887|237888|237889|237890|237891|237892|237893|237894|237895|237896|237897|237898|237899|237900|237901|237902|237903|237904|237905|237906|237907|237908|237909|237910|237911|237912|237913|237914|237915|237916|237917|237918|237919|237920|237921|237922|237923|237924|237925|237926|237927|237928|237929|237930|237931|237932|237933|237934|237935|237936|237937|237938|237939|237940|237941|237942|237943|237944|237945|237946|237947|237948|237949|237950|237951|237952|237953|260052|260481|315038|315042|315044|315045|315046|315050|315052|315053|315055|315056|315058|315062|315064|321828|321829|321836|321839|321843|321845|321848|321849|321862|321863|321866|321875|321885|321887|322097|322099|322100|322104|322107|322110|322111|322112|322117|327887|327891|327899|327905|327907|327909|327912|327913|327927|327931|327932|327933|327938|329021|329022|329025|329026|329029|329030|329031|329032|329034|329047|329048|331378|331380|331385|331388|331389|331392|331397|338264|338269|338272|338275|338279|338287|338293|340099|340104|340105|340106|360623|363822|363839|363862|364197|374744|374752|374759|375632|375802|375813|377949|409073|421975|422128|429890|438585|438824|438884|439351|441932|441933|466891|481349|511323|512076|512868|530704|536165|551629|551630|551631|551632|551633|551634|551635|551636|551637|551638|551639|551640|551641|551642|551643|551644|551645|551646|551647|551648|551649|551650|551651|551652|551653|551654|551655|551656|551657|551658|551659|551660|551661|551662|551663|551664|551665|551666|551667|551668|551669|551670|551671|551672|551673|553316|553317|553318|553319|553320|553321|553322|553323|553324|553325|553327|553328|553329|553330|553331|553332|553333|553334|553335|553336|553337|553338|553339|553340|553341|553342|553343|553344|553345|553346|553347|553348|553349|553350|572553|576146|577575|577576|577577|577580|577582|577583|577586|577587|577588|577589|577591|577593|577595|577596|577597|577598|577599|577601|580045|580049|580050|580055|580058|580061|580074|580076|580078|580086|580094|580099|580100|580107|580110|580112|580113|580133|580134|580136|580139|580143|580144|580145|580147|580149|580150|580151|580152|580153|580155|580156|580159|580160|580161|580162|580164|580165|580167|580169|580170|580171|580173|580174|580178|580179|580181|580182|580183|580184|580186|580187|580189|580192|580193|580195|580196|580197|580200|580203|580205|580206|580208|580209|580211|580214|580216|580218|580219|580220|580221|580222|580225|580228|580232|580233|580234|580236|580237|580239|580245|580248|580250|580252|580254|580259|580263|580371|580373|580374|580376|580381|580384|580387|580389|580394|580396|580398|580400|580405|580410|580416|580421|580422|580427|580430|580442|580447|580450|580452|580454|580457|677425|789342|789343|916785|916786|916787|961471|961473|963961|966915|966946|966979|970334|970339|970343|977268|977269", + "upstreamId": "16016|23594|49251|50126|50180|57932|75743|75801|75812|75986|76035|76039|76077|76144|76148|76195|76217|76313|84057|187273|187274|201908|203104|205325|215524|223668|224835|224836|224837|224838|224839|224840|224841|224842|224843|224844|224845|224846|224847|224848|224849|224850|224851|237859|237860|237861|237862|237863|237864|237865|237866|237867|237868|237869|237870|237871|237872|237873|237874|237875|237876|237877|237878|237879|237880|237881|237882|237883|237884|237885|237886|237887|237888|237889|237890|237891|237892|237893|237894|237895|237896|237897|237898|237899|237900|237901|237902|237903|237904|237905|237906|237907|237908|237909|237910|237911|237912|237913|237914|237915|237916|237917|237918|237919|237920|237921|237922|237923|237924|237925|237926|237927|237928|237929|237930|237931|237932|237933|237934|237935|237936|237937|237938|237939|237940|237941|237942|237943|237944|237945|237946|237947|237948|237949|237950|237951|237952|237953|260052|260481|315038|315042|315044|315045|315046|315050|315052|315053|315055|315056|315058|315062|315064|321828|321829|321836|321839|321843|321845|321848|321849|321862|321863|321866|321875|321885|321887|322097|322099|322100|322104|322107|322110|322111|322112|322117|327887|327891|327899|327905|327907|327909|327912|327913|327927|327931|327932|327933|327938|329021|329022|329025|329026|329029|329030|329031|329032|329034|329047|329048|331378|331380|331385|331388|331389|331392|331397|338264|338269|338272|338275|338279|338287|338293|340099|340104|340105|340106|360623|363822|363839|363862|364197|374744|374752|374759|375632|375802|375813|377949|409073|421975|422128|429890|438585|438824|438884|439351|441932|441933|466891|481349|511323|512076|512868|530704|536165|551629|551630|551631|551632|551633|551634|551635|551636|551637|551638|551639|551640|551641|551642|551643|551644|551645|551646|551647|551648|551649|551650|551651|551652|551653|551654|551655|551656|551657|551658|551659|551660|551661|551662|551663|551664|551665|551666|551667|551668|551669|551670|551671|551672|551673|553316|553317|553318|553319|553320|553321|553322|553323|553324|553325|553327|553328|553329|553330|553331|553332|553333|553334|553335|553336|553337|553338|553339|553340|553341|553342|553343|553344|553345|553346|553347|553348|553349|553350|572553|576146|577575|577576|577577|577580|577582|577583|577586|577587|577588|577589|577591|577593|577595|577596|577597|577598|577599|577601|580045|580049|580050|580055|580058|580061|580074|580076|580078|580086|580094|580099|580100|580107|580110|580112|580113|580133|580134|580136|580139|580143|580144|580145|580147|580149|580150|580151|580152|580153|580155|580156|580159|580160|580161|580162|580164|580165|580167|580169|580170|580171|580173|580174|580178|580179|580181|580182|580183|580184|580186|580187|580189|580192|580193|580195|580196|580197|580200|580203|580205|580206|580208|580209|580211|580214|580216|580218|580219|580220|580221|580222|580225|580228|580232|580233|580234|580236|580237|580239|580245|580248|580250|580252|580254|580259|580263|580371|580373|580374|580376|580381|580384|580387|580389|580394|580396|580398|580400|580405|580410|580416|580421|580422|580427|580430|580442|580447|580450|580452|580454|580457|677425|789342|789343|916785|916786|916787|961471|961473|963961|966915|966946|966979|970334|970339|970343|977268|977269", "text": "Autism spectrum disorder" }, { - "baseId": "16018|16019|309611|309618|309623|314432|314435|314436|314437|320472|320473|320479|320480|320949|865515|865516|865517|865518|865519|865520|865521|865522", + "upstreamId": "16018|16019|309611|309618|309623|314432|314435|314436|314437|320472|320473|320479|320480|320949|865515|865516|865517|865518|865519|865520|865521|865522", "text": "Age-related macular degeneration 8" }, { - "baseId": "16020|16021|16022|16023|142223|142224|206941|236976|366373|427987|427989|450644|499998|517726|517836|559121|614243|629474|629475|629476|629477|629478|629479|691034|774672|781186|825751|825752|825753|825754|850841|850882|940694|942613|952944", + "upstreamId": "16020|16021|16022|16023|142223|142224|206941|236976|366373|427987|427989|450644|499998|517726|517836|559121|614243|629474|629475|629476|629477|629478|629479|691034|774672|781186|825751|825752|825753|825754|850841|850882|940694|942613|952944", "text": "Severe combined immunodeficiency with microcephaly, growth retardation, and sensitivity to ionizing radiation" }, { - "baseId": "16024", + "upstreamId": "16024", "text": "Severe combined immunodeficiency with sensitivity to ionizing radiation due to nhej1 deficiency" }, { - "baseId": "16025|16026|19566|19567|20132|20133|20134|20135|22892|23725|23745|23897|23898|23899|23900|23901|23902|23903|24144|24145|24252|27680|28829|29021|29739|29746|31120|31128|31172|31198|38715|38717|44278|44282|44864|44907|45009|45017|134590|139383|151135|151136|165951|167531|173819|173835|173968|186816|187111|195351|195994|200245|207853|207854|208598|211038|211039|211046|211053|211055|211058|227236|227344|229181|259865|293779|361179|389505|414921|428730|429186|429199|429208|430214|430215|430216|430217|432333|434047|434359|434360|434361|434638|437669|437670|437743|437744|437745|437746|437747|437748|437749|437750|437751|437752|437753|437754|437755|437756|437757|437758|437759|437760|437761|437762|437763|437764|437765|437766|437767|437768|437769|437770|437771|437772|437773|437774|437775|437776|437777|437778|437779|437780|437781|437782|437783|437784|437785|437786|437787|442293|443626|469804|470212|472261|487507|496327|512807|512808|513547|514235|546120|546326|576978|577852|623536|694415|695821|704986|716446|728184|790463|790464|790465|790466|790467|790468|792729|847677|847678|847679|903588|918899|918900|918901|920407|950783|958635|961285|970859", + "upstreamId": "16025|16026|19566|19567|20132|20133|20134|20135|22892|23725|23745|23897|23898|23899|23900|23901|23902|23903|24144|24145|24252|27680|28829|29021|29739|29746|31120|31128|31172|31198|38715|38717|44278|44282|44864|44907|45009|45017|134590|139383|151135|151136|165951|167531|173819|173835|173968|186816|187111|195351|195994|200245|207853|207854|208598|211038|211039|211046|211053|211055|211058|227236|227344|229181|259865|293779|361179|389505|414921|428730|429186|429199|429208|430214|430215|430216|430217|432333|434047|434359|434360|434361|434638|437669|437670|437743|437744|437745|437746|437747|437748|437749|437750|437751|437752|437753|437754|437755|437756|437757|437758|437759|437760|437761|437762|437763|437764|437765|437766|437767|437768|437769|437770|437771|437772|437773|437774|437775|437776|437777|437778|437779|437780|437781|437782|437783|437784|437785|437786|437787|442293|443626|469804|470212|472261|487507|496327|512807|512808|513547|514235|546120|546326|576978|577852|623536|694415|695821|704986|716446|728184|790463|790464|790465|790466|790467|790468|792729|847677|847678|847679|903588|918899|918900|918901|920407|950783|958635|961285|970859", "text": "Type 2 diabetes mellitus" }, { - "baseId": "16027|33448|33449|33450|33451|143071|143072|200016|200020|200021|200025|200027|207028|287320|287322|287323|287327|287329|288040|288052|288067|288073|288079|288085|290733|290734|290735|290736|290751|290752|290971|290990|290991|290992|290993|290994|291008|367037|433946|518644|518832|552067|552068|558686|562091|620094|620095|620750|622848|672052|774886|790297|790300|806417|827074|885485|885486|887402|887403|961760", + "upstreamId": "16027|33448|33449|33450|33451|143071|143072|200016|200020|200021|200025|200027|207028|287320|287322|287323|287327|287329|288040|288052|288067|288073|288079|288085|290733|290734|290735|290736|290751|290752|290971|290990|290991|290992|290993|290994|291008|367037|433946|518644|518832|552067|552068|558686|562091|620094|620095|620750|622848|672052|774886|790297|790300|806417|827074|885485|885486|887402|887403|961760", "text": "Mitochondrial DNA depletion syndrome 9 (encephalomyopathic with methylmalonic aciduria)" }, { - "baseId": "16028|16030|106537|190896|191942|191943|193662|198616|269092|289273|289277|289278|289287|289288|289294|289295|289298|290056|290060|290067|290075|290084|290085|293149|293150|293151|293153|293155|293157|293161|293162|293164|293165|293597|293598|293601|293602|293605|293623|293635|293636|293639|421425|452118|493010|620759|620760|683565|686353|686358|799315|799316|799317|827649|827652|888257|888258|888259|888260|888261|888262|888263|888264|888265|888266|888267|888268|888269|888270|888271|888272|888273|888274|888275|888276|888277|888278|888279|888280|888281|888282|888283|888284|888285|888286|888287|888288|888289|888290|888291|888292|888293|891598|891599|891600|891601|971373|980154", + "upstreamId": "16028|16030|106537|190896|191942|191943|193662|198616|269092|289273|289277|289278|289287|289288|289294|289295|289298|290056|290060|290067|290075|290084|290085|293149|293150|293151|293153|293155|293157|293161|293162|293164|293165|293597|293598|293601|293602|293605|293623|293635|293636|293639|421425|452118|493010|620759|620760|683565|686353|686358|799315|799316|799317|827649|827652|888257|888258|888259|888260|888261|888262|888263|888264|888265|888266|888267|888268|888269|888270|888271|888272|888273|888274|888275|888276|888277|888278|888279|888280|888281|888282|888283|888284|888285|888286|888287|888288|888289|888290|888291|888292|888293|891598|891599|891600|891601|971373|980154", "text": "Asphyxiating thoracic dystrophy 2" }, { - "baseId": "16031|16032|16033|16034|16035|16036|16037|139197|139198|139199|139200|139201|139202|187984|187985|222996|259252|259253|262038|262039|309045|309047|313795|313810|313811|319615|319622|319641|319642|320193|320202|320203|361843|421768|514259|514260|544990|544995|545006|545010|545011|545017|545024|545028|545033|545035|545036|545038|545039|545045|545291|545297|545299|545316|545320|545323|545328|545337|545346|545366|545368|545372|545376|545377|545379|545382|545383|545388|545393|545399|545405|545406|545416|545424|545426|545430|545646|545649|545651|545655|545656|545658|545660|545661|545664|737260|751862|902630|902631|902632|902633|902634|902635|902636|902637|902638", + "upstreamId": "16031|16032|16033|16034|16035|16036|16037|139197|139198|139199|139200|139201|139202|187984|187985|222996|259252|259253|262038|262039|309045|309047|313795|313810|313811|319615|319622|319641|319642|320193|320202|320203|361843|421768|514259|514260|544990|544995|545006|545010|545011|545017|545024|545028|545033|545035|545036|545038|545039|545045|545291|545297|545299|545316|545320|545323|545328|545337|545346|545366|545368|545372|545376|545377|545379|545382|545383|545388|545393|545399|545405|545406|545416|545424|545426|545430|545646|545649|545651|545655|545656|545658|545660|545661|545664|737260|751862|902630|902631|902632|902633|902634|902635|902636|902637|902638", "text": "Xeroderma pigmentosum group A" }, { - "baseId": "16038|47606|47607|47608|47609|47610|919958|920431", + "upstreamId": "16038|47606|47607|47608|47609|47610|919958|920431", "text": "Spinocerebellar ataxia type 10" }, { - "baseId": "16039|17474|19923|20458|22452|22453|22454|23717|28628|29493|29757|29973|31129|39078|39083|39084|39085|39086|299023", + "upstreamId": "16039|17474|19923|20458|22452|22453|22454|23717|28628|29493|29757|29973|31129|39078|39083|39084|39085|39086|299023", "text": "Diabetes mellitus type 2, susceptibility to" }, { - "baseId": "16040|16041|16042|16043|16044|16045|16046|76805|135054|135055|135056|135057|141924|141926|141927|141928|141929|141930|172081|172082|172083|172084|172085|172085|190927|193743|195779|195780|201730|201733|201736|201738|201740|201742|201743|201744|201745|201746|201746|201747|201752|201752|201753|201757|201759|207106|239333|268467|292222|292224|292229|292230|292235|292252|292254|293665|293676|293705|293708|293715|293716|296981|296993|296995|296996|296997|296998|297009|297015|297023|297025|297026|297028|297030|297042|367901|367902|367935|394134|394212|406402|424648|425599|443586|452965|453271|453273|453356|453731|453740|491691|496375|519730|519733|519759|519760|520017|520020|520023|520024|520026|550559|559547|559585|559587|559589|559738|561905|561913|561916|563464|563467|563471|576774|578701|579091|579095|579096|614274|620149|620150|620151|631942|631943|631944|631945|631946|631947|631948|631949|631950|631951|631952|651139|655595|683622|685159|686498|686499|691509|698370|709167|734455|764322|764324|774921|787410|790434|790435|790436|790437|802151|819443|819444|819445|819446|819447|819448|819449|819450|828796|828797|828798|828799|828800|828801|828802|828803|828804|828805|828806|828807|828808|828809|828810|828811|850966|851481|851588|859333|890088|890089|890090|890091|890092|890093|890094|890095|890096|890097|890098|890099|890100|890101|890102|890103|890104|890105|890106|890107|890108|890109|890110|890111|890112|890113|890114|890115|891750|918880|918881|920200|923425|923426|923427|932173|932174|932175|939956|943804|943805|943806|943807|943808|953673|953674|953675|953676|953677|953678|953679|960527|965587|971505", + "upstreamId": "16040|16041|16042|16043|16044|16045|16046|76805|135054|135055|135056|135057|141924|141926|141927|141928|141929|141930|172081|172082|172083|172084|172085|172085|190927|193743|195779|195780|201730|201733|201736|201738|201740|201742|201743|201744|201745|201746|201746|201747|201752|201752|201753|201757|201759|207106|239333|268467|292222|292224|292229|292230|292235|292252|292254|293665|293676|293705|293708|293715|293716|296981|296993|296995|296996|296997|296998|297009|297015|297023|297025|297026|297028|297030|297042|367901|367902|367935|394134|394212|406402|424648|425599|443586|452965|453271|453273|453356|453731|453740|491691|496375|519730|519733|519759|519760|520017|520020|520023|520024|520026|550559|559547|559585|559587|559589|559738|561905|561913|561916|563464|563467|563471|576774|578701|579091|579095|579096|614274|620149|620150|620151|631942|631943|631944|631945|631946|631947|631948|631949|631950|631951|631952|651139|655595|683622|685159|686498|686499|691509|698370|709167|734455|764322|764324|774921|787410|790434|790435|790436|790437|802151|819443|819444|819445|819446|819447|819448|819449|819450|828796|828797|828798|828799|828800|828801|828802|828803|828804|828805|828806|828807|828808|828809|828810|828811|850966|851481|851588|859333|890088|890089|890090|890091|890092|890093|890094|890095|890096|890097|890098|890099|890100|890101|890102|890103|890104|890105|890106|890107|890108|890109|890110|890111|890112|890113|890114|890115|891750|918880|918881|920200|923425|923426|923427|932173|932174|932175|939956|943804|943805|943806|943807|943808|953673|953674|953675|953676|953677|953678|953679|960527|965587|971505", "text": "Neuronal ceroid lipofuscinosis 7" }, { - "baseId": "16044|16939|19116|20720|21234|21406|22421|22527|23997|24242|24291|26378|28535|28541|28542|28544|28546|28548|28552|31230|31232|32539|33033|33034|34161|34162|34164|34168|34170|34261|34263|34264|34614|34616|34631|45151|51108|58105|58133|59008|59810|75270|76573|76666|76988|79397|79415|79446|79470|79508|79554|79565|79637|84706|88066|98791|98792|99331|99332|99333|99334|99335|99337|99339|99341|99565|101205|101295|101297|101585|101647|101820|102399|102400|102401|104012|104015|104029|104036|104039|104051|104071|104072|104079|104081|104203|104211|104215|107055|125784|132585|132797|133142|133794|133795|133796|133797|133798|134186|134187|134188|134189|134190|134191|134192|134193|134194|134195|134196|134197|134198|134199|134224|134225|134226|134227|134228|134231|134232|134233|134237|134306|134320|134321|134322|134323|134324|134325|134449|134450|134451|134452|134569|134571|134573|134574|134575|134611|134762|134778|134779|134783|134784|134786|134787|134788|134790|134791|134792|134793|134794|134795|134796|134797|134799|134801|134802|134803|134804|134808|134809|134810|134811|134812|134813|134814|134816|134817|135054|135055|135056|135057|135212|135213|135344|135345|135347|135348|135349|135350|135351|135354|135355|135356|135357|135359|135360|135361|135362|135426|135427|135428|135429|135435|135436|135437|135438|135439|135440|135443|135445|135470|135472|135473|135474|135475|135476|135657|135981|135982|135983|135984|135985|135986|136051|136052|136053|136054|136055|136056|140071|140073|140082|140453|140456|140459|140460|140461|140462|140463|140464|140468|140470|140473|140476|140477|140483|140486|140489|140491|140493|140495|140496|140497|140499|140503|140505|140506|140510|140740|140742|140743|140744|140750|140753|140922|140923|140925|140926|141112|141113|141117|141119|141124|141191|141401|141404|141406|141407|141409|141410|141717|141718|141719|141720|141726|141727|141729|141732|141733|141735|141736|141741|141743|141749|141753|141754|141757|141760|141815|141926|141928|142225|142451|142456|142459|142469|142472|142473|142474|142476|142482|142505|142506|142509|142510|142670|142673|142695|142696|142698|142833|142834|142837|142840|142841|142842|142844|142845|142848|142968|142972|142974|142975|142980|142981|142982|142984|142985|142986|142993|142997|143000|143001|143004|143005|143006|143007|143008|143009|143011|143012|143013|143014|143017|143018|143023|143096|143097|143099|143100|143101|153385|166182|166184|166185|166186|166187|166188|166190|166191|166192|167983|167985|168546|168757|168758|168774|168775|168777|168782|168787|168792|168884|168888|168890|169007|171000|171874|172081|172293|176972|177145|177603|177786|177787|177971|177972|177973|178089|178737|178807|181175|181397|181398|181399|181404|181409|181411|181417|181440|181442|181443|181449|181455|181464|187772|188676|188677|188696|188703|188707|188709|190110|190490|190506|190544|190553|190554|190603|190604|190746|190806|190905|190927|191016|191022|191086|191189|191539|191587|191609|191640|191676|191944|191988|192142|192144|192340|192505|192506|192509|192509|192525|192780|193143|193515|193574|193642|193664|193688|193860|194022|194102|194348|194601|194850|194851|194853|195051|195052|195053|195149|195161|195166|195236|195312|195734|195780|196240|197325|201024|201030|201031|201345|201479|201736|201746|201757|201759|201783|201793|201794|201798|201804|201833|201842|201846|201869|201895|201926|201942|201943|201950|201958|201960|202128|202130|202131|202133|202144|202149|202151|202158|202166|202174|202187|202189|202200|202202|202206|202211|202220|202222|202249|202252|202264|202265|202287|202346|202361|202387|202395|202396|202422|202433|202451|202456|202533|202549|202550|202552|202570|202577|202579|202582|202594|202607|202625|202631|202632|202684|202685|202692|202693|202697|202704|202767|202773|202775|202778|202780|202781|202784|202792|202886|202895|202896|202915|202925|202934|202949|202975|202976|202978|202988|202990|203013|203013|203036|203044|203050|203056|203057|203058|203059|203225|203228|203230|203232|203241|203242|203245|203254|203260|203280|203281|203283|203288|203289|203321|203458|203643|203653|203662|203665|203668|203679|203700|203705|203724|203728|203766|203781|203807|203812|203818|203823|204635|205216|205385|205386|206803|206807|206860|206877|206887|207616|207650|207652|207655|207915|208401|208704|208705|208706|208787|210849|214427|214799|214800|214801|214802|215118|215431|223024|223771|224877|225802|225839|226495|226495|226496|226497|226498|226499|226500|226501|226502|226589|226591|229342|230645|237071|237102|237176|238152|238286|238287|238288|238290|238292|238294|240525|240527|240528|240531|243705|243706|243707|243709|243710|243712|243714|243981|243987|243993|248813|248814|248815|249406|249939|249940|249942|249943|249944|249947|249949|249950|249952|251561|254263|254264|254266|254267|254268|254269|254270|254271|255128|255129|255130|255390|256200|256202|256231|257602|257603|257604|257605|257607|259345|259354|259357|259707|259836|260358|263009|263187|263242|263248|263262|263295|263309|263328|263358|263364|263367|263376|263409|263935|263996|264399|264576|264749|264863|265856|267446|268027|269249|270927|273452|274071|275226|275228|279957|292252|298652|302222|302896|302899|305042|306981|306985|308761|312975|314592|316481|318582|319018|322495|323345|325496|325740|328235|336426|344740|346302|351178|351499|351503|351514|351519|351885|353970|359534|360223|360315|360801|360812|360865|360889|360943|360957|360996|361004|361016|361084|361087|361271|361652|362134|362144|362151|362165|362170|362228|363759|363854|363952|364017|364496|365314|367693|367992|369362|369703|369918|370083|370135|370148|370188|370397|370557|370592|370616|370626|370639|370648|370673|370704|370708|370729|370883|370905|370982|370998|371045|371609|371752|371793|371817|372216|372297|372523|372655|372656|372733|372755|372761|372871|373359|373786|373960|374204|374296|374389|374859|375002|375027|375109|375153|375283|375603|375622|375644|376276|376374|376488|376494|376526|377105|377155|377171|377179|377180|378077|378158|378228|378254|378279|378309|378321|378350|378406|378436|378439|378443|378714|378721|379742|379756|379761|379762|389158|389178|391217|391220|391244|391249|391250|391267|391271|391277|391288|391294|391298|391306|391309|391313|391372|391379|391402|391412|391639|391641|395063|395066|395081|395686|396915|396917|396932|397025|397047|397299|398106|398765|399590|400469|402131|403285|403685|403695|403697|403960|403965|403978|403983|404201|404211|404221|404369|404375|404376|404385|404386|404400|404407|404410|404417|404799|405300|406402|407367|408486|408653|409252|409578|409603|410795|410811|410821|410996|413317|413422|413569|413774|413802|415291|421513|422177|422333|424352|425778|426245|426654|426676|426751|427828|427908|427932|427934|428040|434926|438223|438224|439048|440338|440339|441418|441433|441890|441964|442306|442312|443058|444261|444409|444898|446250|447122|447140|447228|447299|448397|452144|452274|452292|453780|454658|455317|455467|456673|458287|458842|459244|460945|461034|461088|461751|462234|462492|464759|466390|466397|466569|467033|468266|468292|468722|469519|469661|469665|469670|469674|469678|470217|470229|470237|470261|470288|470488|470691|470696|470697|470705|470715|470722|470739|471089|471101|471232|471233|471235|471238|471539|471542|471674|471676|471691|471696|471702|479763|480432|489157|490858|493596|495097|500479|501189|502199|502211|502679|503172|503492|505182|505188|505283|506707|507107|507271|507843|507877|508251|508281|511583|512868|513897|513898|513908|513909|513921|513926|513940|513983|513986|514004|514017|514019|514033|514090|514099|514107|514110|514111|514123|514124|514127|514130|514149|514182|514194|514208|514210|514220|514327|514987|515017|515095|518979|519403|521220|521404|522785|523891|524611|526001|526007|526412|526500|526515|527825|528231|530024|530432|531701|531765|533513|533769|533917|533922|533924|533928|533929|533937|533951|533977|533992|534202|534203|534285|534382|534390|534767|537008|537084|537086|539020|547515|550129|550131|550134|550226|550330|551271|551272|551698|551701|551718|551720|551737|552042|560092|561951|563403|563500|563736|566073|567113|568036|568086|569649|570392|571303|571322|571344|571882|575886|576134|576169|576540|576541|576542|576543|576544|576545|576723|577054|577068|577069|577070|577543|577895|577896|577897|577899|578383|578702|578707|578708|578709|578756|578763|578777|578781|578810|578812|578813|578814|578816|578818|578819|578820|578823|578827|578828|578829|578831|578832|578833|578834|578836|578839|578840|578841|578844|578845|578846|578847|578848|578849|578850|578851|578852|578853|578854|578855|578856|578857|578858|578859|578860|578861|578862|578863|578864|578865|578866|578867|578868|578869|578870|578871|578872|578873|578874|578875|578876|578877|578878|578879|578880|578881|578882|578883|578884|578885|578886|578889|578890|578891|578894|578895|578898|578902|578903|578904|578905|578908|578912|578913|578914|578915|578916|578921|578941|578943|578995|579004|579008|579011|579014|579017|579020|579039|579044|579045|579050|579051|579063|579084|579088|579091|579092|579093|579094|579095|579096|579097|579098|579101|579102|579103|579104|579105|579106|579107|579108|579110|579112|579114|579116|579117|579119|579120|579121|579122|579125|579218|579219|579238|579255|579263|579268|579321|579325|579346|579373|579374|579376|579377|579383|579387|579388|579389|579395|579396|579399|579401|579466|579481|579485|579491|579493|579496|579503|579508|579539|579543|579546|579548|579550|579555|579556|579558|579560|579564|579566|579567|579571|579579|579580|579584|579590|579591|579592|579594|579596|579597|579599|579601|579603|579604|579606|579615|579621|579623|579624|579626|579627|579632|579635|579687|579692|579693|579698|579699|579702|579704|579705|579707|579708|579711|579712|579713|579714|579717|579718|579719|579723|579724|579726|579728|579731|579733|579734|579740|579741|579742|579743|579744|579750|579779|579784|579787|579790|579792|579793|579794|579797|579803|579805|579807|579809|579810|579815|579816|579820|579834|579836|579915|579919|579924|579929|579942|579944|579948|579949|579950|579951|579958|579960|579977|579983|579984|579985|579988|579994|579996|579998|580007|580009|580010|580016|580019|580020|580021|580038|580057|580059|580063|580064|580065|580067|580068|580069|580070|580080|580082|580083|580229|580231|580235|580238|580240|580243|580246|580247|580249|580255|580260|580262|580266|580267|580268|580275|580277|580279|580285|580331|580334|580336|580338|580346|580349|580350|580351|580353|580354|580359|580361|580366|580367|580372|580385|580388|580393|580408|580420|580426|580428|580433|580436|580439|580441|580443|580445|580451|580455|580464|580467|580474|580477|580479|580484|580486|580493|580494|580495|580497|580505|580512|580515|580517|580554|580562|580564|580568|580570|580572|580579|580582|580583|580586|580588|580589|580593|580595|580596|580597|580599|580601|580603|580607|580610|580611|580612|580614|580617|580618|580619|580623|580626|580633|580638|580639|580642|580644|580645|580648|580651|580653|580655|580657|580658|580659|580661|580669|580671|580683|580684|580686|580691|580698|580700|580722|580723|580726|580734|580736|580739|580744|580746|580766|580768|580770|580780|580783|580785|580786|580794|590047|590048|590084|610521|610581|610592|613496|614154|614601|621906|621907|621909|621910|621916|623113|624116|626445|626446|627286|627949|628802|628836|629516|630596|630744|641220|643042|644511|644699|649000|672066|677043|677400|678942|678944|678945|679673|679677|679679|679682|679683|679689|683210|683211|683344|756763|780263|783366|792692|793858|794275|800755|800783|800985|800991|801070|801086|801130|801158|801159|801199|801200|801227|802091|802115|804831|804832|805071|805143|822141|822299|825044|829863|835824|843743|846990|848657|857388|859416|880368|906209|918956|921240|921245|921258|921442|921444|921445|921448|934238|935698|936638|937325|951031|955387|965430|965458|965459|965462|965463|965464|965466|965467|965470|965471|965475|965477|965479|965481|965486|965487|965491|965494|965495|965497|965498|965499|965501|965502|965503|965504|965506|965509|965510|965511|965513|965514|965515|965516|965521|965523|965527|965528|965529|965530|965533|965535|965538|965539|965540|965541|965542|965544|965546|965547|965549|965551|965556|965558|965559|965564|965565|965566|965573|965580|965583|965584|966218|966219|966221|966222|966223|966225|966226|966228|966230|966231|966233|966236|966241|966242|966250|966252|966253|966254|966260|966262|966263|966264|966267|966271|966277|966278|966285|966288|966289|966291|966292|966293|966298|966299|966309|966310|966312|966317|966320|967248|967249|970765|970967|970995|971284|971285|971385|971389|971391|971393|971398|971401|971403|971405|971408|971418|971419|971423|971424|971427|971432|971433|971436|971437|971438|971439|971440|971442|971446|971450|971453|971456|971457|971459|971460|971461|971464|971465|971466|971468|971469|971470|971473|971485|971486|971494|971498|980515|980652|980655|980656|980657|980664|980665|980676|980677|980678|980680|980683|980684|980686|980689|980693|980700|980701|980706|980714|980715|980718|980721|980722|980723|980725|980727|980732|980733|980736|980737|980739|980741|980742|980743|980744|980745|980747|980749|983556|983746", + "upstreamId": "16044|16939|19116|20720|21234|21406|22421|22527|23997|24242|24291|26378|28535|28541|28542|28544|28546|28548|28552|31230|31232|32539|33033|33034|34161|34162|34164|34168|34170|34261|34263|34264|34614|34616|34631|45151|51108|58105|58133|59008|59810|75270|76573|76666|76988|79397|79415|79446|79470|79508|79554|79565|79637|84706|88066|98791|98792|99331|99332|99333|99334|99335|99337|99339|99341|99565|101205|101295|101297|101585|101647|101820|102399|102400|102401|104012|104015|104029|104036|104039|104051|104071|104072|104079|104081|104203|104211|104215|107055|125784|132585|132797|133142|133794|133795|133796|133797|133798|134186|134187|134188|134189|134190|134191|134192|134193|134194|134195|134196|134197|134198|134199|134224|134225|134226|134227|134228|134231|134232|134233|134237|134306|134320|134321|134322|134323|134324|134325|134449|134450|134451|134452|134569|134571|134573|134574|134575|134611|134762|134778|134779|134783|134784|134786|134787|134788|134790|134791|134792|134793|134794|134795|134796|134797|134799|134801|134802|134803|134804|134808|134809|134810|134811|134812|134813|134814|134816|134817|135054|135055|135056|135057|135212|135213|135344|135345|135347|135348|135349|135350|135351|135354|135355|135356|135357|135359|135360|135361|135362|135426|135427|135428|135429|135435|135436|135437|135438|135439|135440|135443|135445|135470|135472|135473|135474|135475|135476|135657|135981|135982|135983|135984|135985|135986|136051|136052|136053|136054|136055|136056|140071|140073|140082|140453|140456|140459|140460|140461|140462|140463|140464|140468|140470|140473|140476|140477|140483|140486|140489|140491|140493|140495|140496|140497|140499|140503|140505|140506|140510|140740|140742|140743|140744|140750|140753|140922|140923|140925|140926|141112|141113|141117|141119|141124|141191|141401|141404|141406|141407|141409|141410|141717|141718|141719|141720|141726|141727|141729|141732|141733|141735|141736|141741|141743|141749|141753|141754|141757|141760|141815|141926|141928|142225|142451|142456|142459|142469|142472|142473|142474|142476|142482|142505|142506|142509|142510|142670|142673|142695|142696|142698|142833|142834|142837|142840|142841|142842|142844|142845|142848|142968|142972|142974|142975|142980|142981|142982|142984|142985|142986|142993|142997|143000|143001|143004|143005|143006|143007|143008|143009|143011|143012|143013|143014|143017|143018|143023|143096|143097|143099|143100|143101|153385|166182|166184|166185|166186|166187|166188|166190|166191|166192|167983|167985|168546|168757|168758|168774|168775|168777|168782|168787|168792|168884|168888|168890|169007|171000|171874|172081|172293|176972|177145|177603|177786|177787|177971|177972|177973|178089|178737|178807|181175|181397|181398|181399|181404|181409|181411|181417|181440|181442|181443|181449|181455|181464|187772|188676|188677|188696|188703|188707|188709|190110|190490|190506|190544|190553|190554|190603|190604|190746|190806|190905|190927|191016|191022|191086|191189|191539|191587|191609|191640|191676|191944|191988|192142|192144|192340|192505|192506|192509|192509|192525|192780|193143|193515|193574|193642|193664|193688|193860|194022|194102|194348|194601|194850|194851|194853|195051|195052|195053|195149|195161|195166|195236|195312|195734|195780|196240|197325|201024|201030|201031|201345|201479|201736|201746|201757|201759|201783|201793|201794|201798|201804|201833|201842|201846|201869|201895|201926|201942|201943|201950|201958|201960|202128|202130|202131|202133|202144|202149|202151|202158|202166|202174|202187|202189|202200|202202|202206|202211|202220|202222|202249|202252|202264|202265|202287|202346|202361|202387|202395|202396|202422|202433|202451|202456|202533|202549|202550|202552|202570|202577|202579|202582|202594|202607|202625|202631|202632|202684|202685|202692|202693|202697|202704|202767|202773|202775|202778|202780|202781|202784|202792|202886|202895|202896|202915|202925|202934|202949|202975|202976|202978|202988|202990|203013|203013|203036|203044|203050|203056|203057|203058|203059|203225|203228|203230|203232|203241|203242|203245|203254|203260|203280|203281|203283|203288|203289|203321|203458|203643|203653|203662|203665|203668|203679|203700|203705|203724|203728|203766|203781|203807|203812|203818|203823|204635|205216|205385|205386|206803|206807|206860|206877|206887|207616|207650|207652|207655|207915|208401|208704|208705|208706|208787|210849|214427|214799|214800|214801|214802|215118|215431|223024|223771|224877|225802|225839|226495|226495|226496|226497|226498|226499|226500|226501|226502|226589|226591|229342|230645|237071|237102|237176|238152|238286|238287|238288|238290|238292|238294|240525|240527|240528|240531|243705|243706|243707|243709|243710|243712|243714|243981|243987|243993|248813|248814|248815|249406|249939|249940|249942|249943|249944|249947|249949|249950|249952|251561|254263|254264|254266|254267|254268|254269|254270|254271|255128|255129|255130|255390|256200|256202|256231|257602|257603|257604|257605|257607|259345|259354|259357|259707|259836|260358|263009|263187|263242|263248|263262|263295|263309|263328|263358|263364|263367|263376|263409|263935|263996|264399|264576|264749|264863|265856|267446|268027|269249|270927|273452|274071|275226|275228|279957|292252|298652|302222|302896|302899|305042|306981|306985|308761|312975|314592|316481|318582|319018|322495|323345|325496|325740|328235|336426|344740|346302|351178|351499|351503|351514|351519|351885|353970|359534|360223|360315|360801|360812|360865|360889|360943|360957|360996|361004|361016|361084|361087|361271|361652|362134|362144|362151|362165|362170|362228|363759|363854|363952|364017|364496|365314|367693|367992|369362|369703|369918|370083|370135|370148|370188|370397|370557|370592|370616|370626|370639|370648|370673|370704|370708|370729|370883|370905|370982|370998|371045|371609|371752|371793|371817|372216|372297|372523|372655|372656|372733|372755|372761|372871|373359|373786|373960|374204|374296|374389|374859|375002|375027|375109|375153|375283|375603|375622|375644|376276|376374|376488|376494|376526|377105|377155|377171|377179|377180|378077|378158|378228|378254|378279|378309|378321|378350|378406|378436|378439|378443|378714|378721|379742|379756|379761|379762|389158|389178|391217|391220|391244|391249|391250|391267|391271|391277|391288|391294|391298|391306|391309|391313|391372|391379|391402|391412|391639|391641|395063|395066|395081|395686|396915|396917|396932|397025|397047|397299|398106|398765|399590|400469|402131|403285|403685|403695|403697|403960|403965|403978|403983|404201|404211|404221|404369|404375|404376|404385|404386|404400|404407|404410|404417|404799|405300|406402|407367|408486|408653|409252|409578|409603|410795|410811|410821|410996|413317|413422|413569|413774|413802|415291|421513|422177|422333|424352|425778|426245|426654|426676|426751|427828|427908|427932|427934|428040|434926|438223|438224|439048|440338|440339|441418|441433|441890|441964|442306|442312|443058|444261|444409|444898|446250|447122|447140|447228|447299|448397|452144|452274|452292|453780|454658|455317|455467|456673|458287|458842|459244|460945|461034|461088|461751|462234|462492|464759|466390|466397|466569|467033|468266|468292|468722|469519|469661|469665|469670|469674|469678|470217|470229|470237|470261|470288|470488|470691|470696|470697|470705|470715|470722|470739|471089|471101|471232|471233|471235|471238|471539|471542|471674|471676|471691|471696|471702|479763|480432|489157|490858|493596|495097|500479|501189|502199|502211|502679|503172|503492|505182|505188|505283|506707|507107|507271|507843|507877|508251|508281|511583|512868|513897|513898|513908|513909|513921|513926|513940|513983|513986|514004|514017|514019|514033|514090|514099|514107|514110|514111|514123|514124|514127|514130|514149|514182|514194|514208|514210|514220|514327|514987|515017|515095|518979|519403|521220|521404|522785|523891|524611|526001|526007|526412|526500|526515|527825|528231|530024|530432|531701|531765|533513|533769|533917|533922|533924|533928|533929|533937|533951|533977|533992|534202|534203|534285|534382|534390|534767|537008|537084|537086|539020|547515|550129|550131|550134|550226|550330|551271|551272|551698|551701|551718|551720|551737|552042|560092|561951|563403|563500|563736|566073|567113|568036|568086|569649|570392|571303|571322|571344|571882|575886|576134|576169|576540|576541|576542|576543|576544|576545|576723|577054|577068|577069|577070|577543|577895|577896|577897|577899|578383|578702|578707|578708|578709|578756|578763|578777|578781|578810|578812|578813|578814|578816|578818|578819|578820|578823|578827|578828|578829|578831|578832|578833|578834|578836|578839|578840|578841|578844|578845|578846|578847|578848|578849|578850|578851|578852|578853|578854|578855|578856|578857|578858|578859|578860|578861|578862|578863|578864|578865|578866|578867|578868|578869|578870|578871|578872|578873|578874|578875|578876|578877|578878|578879|578880|578881|578882|578883|578884|578885|578886|578889|578890|578891|578894|578895|578898|578902|578903|578904|578905|578908|578912|578913|578914|578915|578916|578921|578941|578943|578995|579004|579008|579011|579014|579017|579020|579039|579044|579045|579050|579051|579063|579084|579088|579091|579092|579093|579094|579095|579096|579097|579098|579101|579102|579103|579104|579105|579106|579107|579108|579110|579112|579114|579116|579117|579119|579120|579121|579122|579125|579218|579219|579238|579255|579263|579268|579321|579325|579346|579373|579374|579376|579377|579383|579387|579388|579389|579395|579396|579399|579401|579466|579481|579485|579491|579493|579496|579503|579508|579539|579543|579546|579548|579550|579555|579556|579558|579560|579564|579566|579567|579571|579579|579580|579584|579590|579591|579592|579594|579596|579597|579599|579601|579603|579604|579606|579615|579621|579623|579624|579626|579627|579632|579635|579687|579692|579693|579698|579699|579702|579704|579705|579707|579708|579711|579712|579713|579714|579717|579718|579719|579723|579724|579726|579728|579731|579733|579734|579740|579741|579742|579743|579744|579750|579779|579784|579787|579790|579792|579793|579794|579797|579803|579805|579807|579809|579810|579815|579816|579820|579834|579836|579915|579919|579924|579929|579942|579944|579948|579949|579950|579951|579958|579960|579977|579983|579984|579985|579988|579994|579996|579998|580007|580009|580010|580016|580019|580020|580021|580038|580057|580059|580063|580064|580065|580067|580068|580069|580070|580080|580082|580083|580229|580231|580235|580238|580240|580243|580246|580247|580249|580255|580260|580262|580266|580267|580268|580275|580277|580279|580285|580331|580334|580336|580338|580346|580349|580350|580351|580353|580354|580359|580361|580366|580367|580372|580385|580388|580393|580408|580420|580426|580428|580433|580436|580439|580441|580443|580445|580451|580455|580464|580467|580474|580477|580479|580484|580486|580493|580494|580495|580497|580505|580512|580515|580517|580554|580562|580564|580568|580570|580572|580579|580582|580583|580586|580588|580589|580593|580595|580596|580597|580599|580601|580603|580607|580610|580611|580612|580614|580617|580618|580619|580623|580626|580633|580638|580639|580642|580644|580645|580648|580651|580653|580655|580657|580658|580659|580661|580669|580671|580683|580684|580686|580691|580698|580700|580722|580723|580726|580734|580736|580739|580744|580746|580766|580768|580770|580780|580783|580785|580786|580794|590047|590048|590084|610521|610581|610592|613496|614154|614601|621906|621907|621909|621910|621916|623113|624116|626445|626446|627286|627949|628802|628836|629516|630596|630744|641220|643042|644511|644699|649000|672066|677043|677400|678942|678944|678945|679673|679677|679679|679682|679683|679689|683210|683211|683344|756763|780263|783366|792692|793858|794275|800755|800783|800985|800991|801070|801086|801130|801158|801159|801199|801200|801227|802091|802115|804831|804832|805071|805143|822141|822299|825044|829863|835824|843743|846990|848657|857388|859416|880368|906209|918956|921240|921245|921258|921442|921444|921445|921448|934238|935698|936638|937325|951031|955387|965430|965458|965459|965462|965463|965464|965466|965467|965470|965471|965475|965477|965479|965481|965486|965487|965491|965494|965495|965497|965498|965499|965501|965502|965503|965504|965506|965509|965510|965511|965513|965514|965515|965516|965521|965523|965527|965528|965529|965530|965533|965535|965538|965539|965540|965541|965542|965544|965546|965547|965549|965551|965556|965558|965559|965564|965565|965566|965573|965580|965583|965584|966218|966219|966221|966222|966223|966225|966226|966228|966230|966231|966233|966236|966241|966242|966250|966252|966253|966254|966260|966262|966263|966264|966267|966271|966277|966278|966285|966288|966289|966291|966292|966293|966298|966299|966309|966310|966312|966317|966320|967248|967249|970765|970967|970995|971284|971285|971385|971389|971391|971393|971398|971401|971403|971405|971408|971418|971419|971423|971424|971427|971432|971433|971436|971437|971438|971439|971440|971442|971446|971450|971453|971456|971457|971459|971460|971461|971464|971465|971466|971468|971469|971470|971473|971485|971486|971494|971498|980515|980652|980655|980656|980657|980664|980665|980676|980677|980678|980680|980683|980684|980686|980689|980693|980700|980701|980706|980714|980715|980718|980721|980722|980723|980725|980727|980732|980733|980736|980737|980739|980741|980742|980743|980744|980745|980747|980749|983556|983746", "text": "Seizures" }, { - "baseId": "16047|16048|16049", + "upstreamId": "16047|16048|16049", "text": "Retinitis pigmentosa 42" }, { - "baseId": "16050|16051|16052|16053|16054|16055|16056|47002|47003|47004|141071|141072|186163|186164|186165|191443|191601|194535|213504|226815|226827|243836|244817|244819|244824|316809|316813|316815|316816|316818|316820|316822|316828|316833|316836|316840|316842|316844|316845|316851|316853|316854|316856|316857|316859|316860|316863|316867|316868|316869|316873|324395|324396|324404|324413|324415|324416|324417|324419|324422|324427|324431|324432|324442|324445|324447|324458|324459|330469|330492|330495|330497|330499|330501|330511|330520|330525|330532|330549|330550|330552|330563|330566|330567|330571|330574|330586|330594|330596|330597|330604|330610|330614|331848|331849|331861|331863|331864|331872|331878|331879|331880|331882|331884|331890|331891|331894|331898|331915|331918|331934|331937|331938|331954|331958|331959|331971|331973|331974|331981|331986|331991|398958|462377|527348|578499|578500|590025|590026|590029|641075|684322|791228|799678|799679|804743|839851|869676|869677|869678|869679|869680|869681|869682|869683|869684|869685|869686|869687|869688|869689|869690|869691|869692|869693|869694|869695|869696|869697|869698|869699|869700|869701|869702|869703|869704|869705|869706|869707|869708|869709|869710|869711|869712|869713|869714|869715|869716|869717|869718|869719|869720|872229|872230", + "upstreamId": "16050|16051|16052|16053|16054|16055|16056|47002|47003|47004|141071|141072|186163|186164|186165|191443|191601|194535|213504|226815|226827|243836|244817|244819|244824|316809|316813|316815|316816|316818|316820|316822|316828|316833|316836|316840|316842|316844|316845|316851|316853|316854|316856|316857|316859|316860|316863|316867|316868|316869|316873|324395|324396|324404|324413|324415|324416|324417|324419|324422|324427|324431|324432|324442|324445|324447|324458|324459|330469|330492|330495|330497|330499|330501|330511|330520|330525|330532|330549|330550|330552|330563|330566|330567|330571|330574|330586|330594|330596|330597|330604|330610|330614|331848|331849|331861|331863|331864|331872|331878|331879|331880|331882|331884|331890|331891|331894|331898|331915|331918|331934|331937|331938|331954|331958|331959|331971|331973|331974|331981|331986|331991|398958|462377|527348|578499|578500|590025|590026|590029|641075|684322|791228|799678|799679|804743|839851|869676|869677|869678|869679|869680|869681|869682|869683|869684|869685|869686|869687|869688|869689|869690|869691|869692|869693|869694|869695|869696|869697|869698|869699|869700|869701|869702|869703|869704|869705|869706|869707|869708|869709|869710|869711|869712|869713|869714|869715|869716|869717|869718|869719|869720|872229|872230", "text": "Charcot-Marie-Tooth disease, type 4H" }, { - "baseId": "16055|16760|16762|17317|17517|17520|17521|17522|17524|17950|17951|19826|19828|19830|19831|19833|20159|21270|34541|34542|34548|47004|47011|65666|82291|135494|135495|135496|135497|135498|135499|135743|135744|135745|135746|135747|135748|141071|141072|141077|141078|141079|141080|141974|142136|142137|142520|142666|142667|142668|142804|142805|165818|167394|167395|167398|186051|186052|186053|186089|186126|186160|186161|186162|186163|186164|186165|186285|191093|191094|191430|191431|191443|191579|191601|192151|194468|194535|212505|212506|212507|212508|212509|212510|212511|212513|212515|212628|212629|212630|212631|212972|212973|212974|212975|212976|212977|212978|213453|213454|213455|213456|213457|213458|213459|213460|213461|213504|213812|213839|215727|221605|221606|221607|221608|221609|221610|221611|221612|221613|221614|221615|221616|221621|221622|221623|221754|221755|222193|222194|222195|222196|222197|222198|222199|222807|222808|222809|226815|226827|231639|231643|231652|231689|231812|231813|231814|231815|237130|239774|239775|239776|239777|239778|239779|239868|239869|240233|240234|240899|241218|241219|241220|241221|241223|241224|241225|243333|243334|243335|243336|243337|243338|243339|243340|243341|243342|243836|244462|244463|244464|244465|244468|244471|244472|244476|244488|244489|244490|244511|244512|244513|244698|244700|244701|244702|244703|244704|244707|244817|244818|244819|244821|244823|244824|244825|245123|245124|245125|245126|245127|245128|245129|245130|245131|245132|245133|245134|245135|245136|245137|245138|245141|249211|249214|252051|252053|252054|252055|252056|253060|254369|254370|254371|265353|266620|268889|271276|271543|271643|273691|295960|295964|295986|295990|296025|296062|296065|296070|296089|296111|296171|296204|296207|296219|296228|296232|296233|297782|297787|297812|297863|297876|297904|297905|297912|297914|297945|297952|297971|298007|298013|298024|298029|298040|298054|298731|298732|301206|301209|301214|301223|301689|301698|301702|301726|301859|301872|301874|301875|301921|301947|301978|301993|301995|302004|302040|302043|302044|302047|302062|302063|302065|302072|302074|302092|302093|302125|302157|302158|302171|302259|302260|302266|302267|302288|302289|302308|304394|304399|304401|304405|305569|305570|305571|305582|312023|312026|312046|313161|313229|313234|313235|313237|313254|315524|315544|315549|315550|315557|315559|315561|315574|315578|315609|315614|315625|315627|315647|315650|316820|316833|316836|316840|316862|316865|316874|316878|322409|322422|322452|322471|322492|322493|323641|323734|324393|324433|324449|328559|328574|328591|328676|328677|328679|328695|328697|328709|328710|329848|329861|329862|329895|329909|329915|329916|330495|330497|330499|330561|330562|331861|331919|331957|333520|333522|333524|333539|333547|333552|333554|333557|333558|343605|343607|343613|348903|348907|348913|348940|348944|348945|349847|349849|349854|349855|349859|349862|349866|349867|349869|353221|359582|361316|361545|361550|363899|367981|367993|368003|368271|368280|368281|368286|368451|369375|369648|369651|369653|369713|370067|371569|371772|371926|373199|374398|374401|374431|374439|374469|374472|376502|376503|376505|376509|377486|377643|379571|379572|379573|379574|379575|379576|384516|394287|394833|394834|394891|394898|394899|394902|394999|395001|395010|395015|395077|395089|395093|395094|395172|395174|395176|395340|395342|395346|395428|395429|395643|395913|395915|396573|396581|396584|397584|397989|398404|398405|398409|398417|398485|398487|398490|398497|398498|398790|398791|398933|398936|398938|398958|399125|399670|399675|400053|403251|403294|403301|403703|403705|403713|403714|403719|403722|403724|403725|403755|406657|406786|406787|407316|408630|410607|410608|413692|415124|415314|415316|421892|421918|429340|433569|438108|440868|440870|440871|440872|440873|440874|440875|440901|440904|440905|441171|441174|441392|441490|441491|441493|441494|441495|441497|442226|442229|442230|443710|443711|443712|443714|443715|443716|444218|444219|444695|444900|454723|454724|454727|454731|454738|454739|454741|454796|454798|454799|454800|454802|454804|454808|455142|455144|455146|455148|455259|455264|455267|455273|455279|455280|455281|455282|455285|455287|455294|455299|455304|455573|455578|455581|455584|455589|455590|455592|455751|455771|455779|456005|456006|456008|456013|456016|456019|456020|456025|457223|457231|457812|457814|457832|457835|458235|458238|460759|460762|461546|461551|461552|461554|461556|461579|461732|461740|461749|461755|461758|461760|461763|461764|462053|462054|462061|462065|462076|462080|462082|462083|462087|462088|462089|462096|462105|462125|462129|462180|462363|462365|462375|462377|462379|462385|462387|462388|462389|462892|462894|463021|463022|463031|468800|468801|468804|468809|468810|468816|468820|469817|469819|469823|469824|469829|469837|469842|469844|470216|470221|470222|470223|470226|470228|470233|470240|470241|470244|470245|470843|470847|470866|470867|470874|470890|470893|470895|470899|470910|470912|481748|492021|500715|501039|501059|502298|502593|503824|504087|504490|504836|506945|506949|506956|507764|520896|520898|520902|520909|520911|520913|520918|520919|520921|520923|521147|521153|521155|521157|521159|521161|521162|521166|521281|521283|521296|521297|521301|521305|521318|521331|521333|521342|521343|521344|521346|521352|521354|521359|521361|521365|521368|521371|521374|521380|521572|521580|521584|521588|521592|521600|521602|521606|521659|521666|521672|521675|521915|521916|521921|521925|521927|521928|522828|523024|523029|523283|523284|523286|523291|523299|523309|523509|523511|523518|523519|523522|523526|523637|523642|523646|523648|525609|525615|525683|525686|525688|525690|525852|525855|526019|526022|526553|526557|526559|526563|526567|526577|526578|526579|526586|526592|526597|526598|526599|526602|526604|526606|526607|526614|526812|526814|526833|526838|526840|526842|526845|526852|526853|526867|527091|527098|527099|527104|527105|527111|527112|527115|527130|527132|527137|527140|527141|527143|527147|527148|527155|527163|527164|527169|527176|527179|527184|527186|527187|527190|527192|527198|527202|527203|527342|527348|527352|527356|527368|527608|527609|532368|532972|532990|532991|532993|532994|532997|533001|533009|533011|533014|533016|533019|533025|533028|533034|533035|533043|533061|533070|533072|533073|533074|533075|533078|533079|533086|533091|533093|533096|533099|533100|533103|533104|533108|533109|533111|533119|533481|533483|533487|533491|533494|533506|533509|533523|533524|533527|533532|536685|537147|537474|538486|556897|560193|560195|560197|560199|560201|560203|560205|560207|560209|560211|560310|560312|560314|560316|560318|560320|560322|560324|560326|560328|560330|560332|560403|560405|560407|560409|560411|560524|560528|561956|562378|562942|562944|562946|562952|562960|562969|562971|562979|562989|563299|563303|563304|563307|563309|564097|564099|564659|564664|564668|564670|564672|564931|564936|564937|564938|564941|564958|564959|564964|564965|564968|564970|564972|564974|564975|564980|564984|564986|565005|565009|565043|565215|565221|565262|565282|565284|565286|565297|565298|565425|565426|566239|566243|566246|566247|566258|566260|566264|566267|566268|566271|566274|566734|566735|566795|566796|566799|567390|567396|567584|567585|567588|567590|567591|567600|567603|567605|567607|567609|567611|567614|567992|567994|567995|569963|569964|569966|570779|570783|570786|570787|570791|570793|570797|571053|571056|571074|571080|571089|571096|571097|571100|571108|571122|571123|571129|571134|571775|571785|571792|572503|572505|572508|572509|572511|572513|572517|572518|572521|573102|573103|573107|573109|573110|573111|573114|573115|573116|573117|573119|573123|573124|573125|573130|573134|573138|573139|574969|574970|574971|574972|574973|574974|574975|574976|574977|576832|576833|576834|577807|578440|578495|586757|587695|587732|609584|612699|612701|612702|612722|621654|622460|625112|625118|625125|625267|625424|633601|633602|633603|633604|633605|633606|633607|633608|633609|633610|633611|633612|633613|633614|633615|633616|633617|633618|633619|633620|633621|633622|633623|633624|633625|633626|633627|633628|633629|634476|634477|634478|634479|634480|634481|634482|634483|634484|634485|634486|634487|634488|636610|636611|636612|636613|636614|636615|636616|636617|636618|636619|636620|636621|636622|636623|639354|639355|639356|639357|640534|640535|640536|640537|640538|640539|640540|640541|640542|640543|640544|640545|640546|640547|640548|640549|640550|640551|640552|640553|640554|640555|640556|640557|640558|640559|640560|640561|640562|640563|640564|640565|640566|640567|640568|640569|640570|640571|640572|640573|640574|640575|640576|640577|640578|640579|641063|641064|641065|641066|641067|641068|641069|641070|641071|641072|641073|641074|641075|641076|641077|641078|648086|648087|648088|648089|648090|648091|648092|648093|648094|648095|648096|648097|648098|648099|648100|648101|648102|648103|648104|648105|648106|648107|648108|648109|648110|648111|648112|648113|648114|648115|648116|648117|648118|648119|648120|648121|648122|648123|648124|648125|648126|648127|648128|648129|648130|648131|648132|648133|648134|648135|651231|651377|651503|651574|651610|651617|651748|651852|652051|652105|652149|652209|652255|652321|652359|652612|653577|655699|677279|682959|682960|682978|682992|683031|683038|683083|683097|683105|683115|683120|683122|683130|683719|683720|683721|683722|683723|683724|683725|683749|683750|683751|683752|683977|683978|683979|684271|684272|684273|684274|684276|684322|684810|684811|684812|684813|684817|685297|685298|685300|686708|686709|686710|686772|686777|686778|686779|686780|687188|687189|687191|687192|687193|687195|687198|687199|687200|687680|687681|687683|687840|687841|687842|687843|687844|687845|687846|687847|687848|687849|687850|687855|687856|687857|687858|689045|689050|689051|689052|689053|689054|689056|689057|689059|689805|689904|689905|689906|691779|692352|692355|692914|693123|693124|693128|693129|693130|693131|693189|693191|693193|694422|694423|695306|695378|695561|695562|704991|722865|736463|738372|744773|749740|752374|757025|759620|764958|766552|769096|772694|775442|782209|782407|782997|782999|786197|787731|793790|793791|793793|796671|819566|819648|819947|820286|820425|820492|820493|821255|821905|830473|830474|830475|830476|830477|830478|830479|830480|830481|830482|830483|830484|830485|830486|830487|830488|830489|830490|830491|830492|830493|830494|830495|830496|830497|830498|830499|830500|831383|831384|831385|831386|831387|831388|831389|831390|831391|831392|831393|831394|831395|831396|831397|831398|831399|831400|831401|831402|831403|831404|831405|831406|831407|831408|831409|831410|831411|834147|834148|834149|834150|834151|834152|834153|834154|834155|834156|834157|837577|837578|837579|837580|837581|837582|837585|839190|839191|839192|839193|839194|839195|839196|839197|839198|839199|839200|839201|839202|839203|839204|839205|839206|839207|839208|839209|839210|839211|839212|839213|839214|839215|839216|839217|839218|839219|839220|839221|839222|839223|839224|839225|839226|839227|839228|839229|839230|839231|839232|839233|839234|839235|839236|839237|839238|839239|839841|839842|839843|839844|839845|839846|839847|839848|839849|839850|839851|839852|839853|839854|839855|839856|839857|839858|847680|847681|847682|847683|847684|847685|847686|847687|847688|847689|847690|847691|847692|847693|847694|847695|847696|847697|847698|847699|847700|847701|847702|847703|847704|847705|847706|847707|847708|847709|847710|847711|847712|847713|847714|847715|847716|847717|851308|851470|851472|851501|851925|851947|851978|852114|852413|852415|852416|852421|852650|852870|859398|869005|869006|869007|882053|899011|899014|903635|905146|905162|905164|905179|905209|905213|905360|905432|905458|905466|905611|918992|920731|923935|923936|923937|923938|923939|923940|923941|923942|923943|923944|924212|924213|924214|924215|924216|924217|924218|924219|925022|925023|925024|925998|926427|926428|926429|926430|926431|926432|926433|926434|926435|926436|926437|926438|926439|926440|926441|926442|926443|926602|926603|926604|926605|926606|926607|926608|926609|926610|928964|928965|928966|928967|928968|928969|928970|928971|928972|928973|932772|932773|932774|932775|932776|932777|932778|933119|933120|933121|933122|933123|933124|933125|934099|934100|934101|934102|934103|934104|934105|935266|935267|935268|935269|935875|935876|935877|935878|935879|935880|935881|935882|935883|935884|935885|935886|935887|935888|935889|935890|935891|935892|935893|935894|935895|936089|936090|936091|936092|936093|936094|938681|938682|938683|938684|938685|938686|938687|938688|938689|938690|938691|938692|938693|938694|938695|938696|938697|940024|940025|940092|940189|940806|940807|940808|940829|940830|944459|944460|944461|944462|944463|944464|944465|944466|944467|944468|944469|944470|944471|944472|944846|944847|944848|944849|944850|945856|945857|945858|947172|947173|947748|947749|947750|947751|947752|947753|947754|947755|947756|947757|947758|947759|947760|947761|947762|947763|947764|947987|947988|947989|947990|950784|950785|950786|950787|950788|950789|950790|950791|950792|950793|950794|950795|950796|950797|950798|954079|954080|954320|954321|954322|954323|955294|955295|955296|955297|955298|955299|955300|955301|955302|955303|956298|956299|956301|956722|956723|956724|956725|956726|956727|956728|956729|956730|956856|958636|958637|958638|958639|958640|958641|958642|958643|959758|959788|959957|960642|960768|960769|960786|961518|978411|978412|978413|978414|978415|978416", + "upstreamId": "16055|16760|16762|17317|17517|17520|17521|17522|17524|17950|17951|19826|19828|19830|19831|19833|20159|21270|34541|34542|34548|47004|47011|65666|82291|135494|135495|135496|135497|135498|135499|135743|135744|135745|135746|135747|135748|141071|141072|141077|141078|141079|141080|141974|142136|142137|142520|142666|142667|142668|142804|142805|165818|167394|167395|167398|186051|186052|186053|186089|186126|186160|186161|186162|186163|186164|186165|186285|191093|191094|191430|191431|191443|191579|191601|192151|194468|194535|212505|212506|212507|212508|212509|212510|212511|212513|212515|212628|212629|212630|212631|212972|212973|212974|212975|212976|212977|212978|213453|213454|213455|213456|213457|213458|213459|213460|213461|213504|213812|213839|215727|221605|221606|221607|221608|221609|221610|221611|221612|221613|221614|221615|221616|221621|221622|221623|221754|221755|222193|222194|222195|222196|222197|222198|222199|222807|222808|222809|226815|226827|231639|231643|231652|231689|231812|231813|231814|231815|237130|239774|239775|239776|239777|239778|239779|239868|239869|240233|240234|240899|241218|241219|241220|241221|241223|241224|241225|243333|243334|243335|243336|243337|243338|243339|243340|243341|243342|243836|244462|244463|244464|244465|244468|244471|244472|244476|244488|244489|244490|244511|244512|244513|244698|244700|244701|244702|244703|244704|244707|244817|244818|244819|244821|244823|244824|244825|245123|245124|245125|245126|245127|245128|245129|245130|245131|245132|245133|245134|245135|245136|245137|245138|245141|249211|249214|252051|252053|252054|252055|252056|253060|254369|254370|254371|265353|266620|268889|271276|271543|271643|273691|295960|295964|295986|295990|296025|296062|296065|296070|296089|296111|296171|296204|296207|296219|296228|296232|296233|297782|297787|297812|297863|297876|297904|297905|297912|297914|297945|297952|297971|298007|298013|298024|298029|298040|298054|298731|298732|301206|301209|301214|301223|301689|301698|301702|301726|301859|301872|301874|301875|301921|301947|301978|301993|301995|302004|302040|302043|302044|302047|302062|302063|302065|302072|302074|302092|302093|302125|302157|302158|302171|302259|302260|302266|302267|302288|302289|302308|304394|304399|304401|304405|305569|305570|305571|305582|312023|312026|312046|313161|313229|313234|313235|313237|313254|315524|315544|315549|315550|315557|315559|315561|315574|315578|315609|315614|315625|315627|315647|315650|316820|316833|316836|316840|316862|316865|316874|316878|322409|322422|322452|322471|322492|322493|323641|323734|324393|324433|324449|328559|328574|328591|328676|328677|328679|328695|328697|328709|328710|329848|329861|329862|329895|329909|329915|329916|330495|330497|330499|330561|330562|331861|331919|331957|333520|333522|333524|333539|333547|333552|333554|333557|333558|343605|343607|343613|348903|348907|348913|348940|348944|348945|349847|349849|349854|349855|349859|349862|349866|349867|349869|353221|359582|361316|361545|361550|363899|367981|367993|368003|368271|368280|368281|368286|368451|369375|369648|369651|369653|369713|370067|371569|371772|371926|373199|374398|374401|374431|374439|374469|374472|376502|376503|376505|376509|377486|377643|379571|379572|379573|379574|379575|379576|384516|394287|394833|394834|394891|394898|394899|394902|394999|395001|395010|395015|395077|395089|395093|395094|395172|395174|395176|395340|395342|395346|395428|395429|395643|395913|395915|396573|396581|396584|397584|397989|398404|398405|398409|398417|398485|398487|398490|398497|398498|398790|398791|398933|398936|398938|398958|399125|399670|399675|400053|403251|403294|403301|403703|403705|403713|403714|403719|403722|403724|403725|403755|406657|406786|406787|407316|408630|410607|410608|413692|415124|415314|415316|421892|421918|429340|433569|438108|440868|440870|440871|440872|440873|440874|440875|440901|440904|440905|441171|441174|441392|441490|441491|441493|441494|441495|441497|442226|442229|442230|443710|443711|443712|443714|443715|443716|444218|444219|444695|444900|454723|454724|454727|454731|454738|454739|454741|454796|454798|454799|454800|454802|454804|454808|455142|455144|455146|455148|455259|455264|455267|455273|455279|455280|455281|455282|455285|455287|455294|455299|455304|455573|455578|455581|455584|455589|455590|455592|455751|455771|455779|456005|456006|456008|456013|456016|456019|456020|456025|457223|457231|457812|457814|457832|457835|458235|458238|460759|460762|461546|461551|461552|461554|461556|461579|461732|461740|461749|461755|461758|461760|461763|461764|462053|462054|462061|462065|462076|462080|462082|462083|462087|462088|462089|462096|462105|462125|462129|462180|462363|462365|462375|462377|462379|462385|462387|462388|462389|462892|462894|463021|463022|463031|468800|468801|468804|468809|468810|468816|468820|469817|469819|469823|469824|469829|469837|469842|469844|470216|470221|470222|470223|470226|470228|470233|470240|470241|470244|470245|470843|470847|470866|470867|470874|470890|470893|470895|470899|470910|470912|481748|492021|500715|501039|501059|502298|502593|503824|504087|504490|504836|506945|506949|506956|507764|520896|520898|520902|520909|520911|520913|520918|520919|520921|520923|521147|521153|521155|521157|521159|521161|521162|521166|521281|521283|521296|521297|521301|521305|521318|521331|521333|521342|521343|521344|521346|521352|521354|521359|521361|521365|521368|521371|521374|521380|521572|521580|521584|521588|521592|521600|521602|521606|521659|521666|521672|521675|521915|521916|521921|521925|521927|521928|522828|523024|523029|523283|523284|523286|523291|523299|523309|523509|523511|523518|523519|523522|523526|523637|523642|523646|523648|525609|525615|525683|525686|525688|525690|525852|525855|526019|526022|526553|526557|526559|526563|526567|526577|526578|526579|526586|526592|526597|526598|526599|526602|526604|526606|526607|526614|526812|526814|526833|526838|526840|526842|526845|526852|526853|526867|527091|527098|527099|527104|527105|527111|527112|527115|527130|527132|527137|527140|527141|527143|527147|527148|527155|527163|527164|527169|527176|527179|527184|527186|527187|527190|527192|527198|527202|527203|527342|527348|527352|527356|527368|527608|527609|532368|532972|532990|532991|532993|532994|532997|533001|533009|533011|533014|533016|533019|533025|533028|533034|533035|533043|533061|533070|533072|533073|533074|533075|533078|533079|533086|533091|533093|533096|533099|533100|533103|533104|533108|533109|533111|533119|533481|533483|533487|533491|533494|533506|533509|533523|533524|533527|533532|536685|537147|537474|538486|556897|560193|560195|560197|560199|560201|560203|560205|560207|560209|560211|560310|560312|560314|560316|560318|560320|560322|560324|560326|560328|560330|560332|560403|560405|560407|560409|560411|560524|560528|561956|562378|562942|562944|562946|562952|562960|562969|562971|562979|562989|563299|563303|563304|563307|563309|564097|564099|564659|564664|564668|564670|564672|564931|564936|564937|564938|564941|564958|564959|564964|564965|564968|564970|564972|564974|564975|564980|564984|564986|565005|565009|565043|565215|565221|565262|565282|565284|565286|565297|565298|565425|565426|566239|566243|566246|566247|566258|566260|566264|566267|566268|566271|566274|566734|566735|566795|566796|566799|567390|567396|567584|567585|567588|567590|567591|567600|567603|567605|567607|567609|567611|567614|567992|567994|567995|569963|569964|569966|570779|570783|570786|570787|570791|570793|570797|571053|571056|571074|571080|571089|571096|571097|571100|571108|571122|571123|571129|571134|571775|571785|571792|572503|572505|572508|572509|572511|572513|572517|572518|572521|573102|573103|573107|573109|573110|573111|573114|573115|573116|573117|573119|573123|573124|573125|573130|573134|573138|573139|574969|574970|574971|574972|574973|574974|574975|574976|574977|576832|576833|576834|577807|578440|578495|586757|587695|587732|609584|612699|612701|612702|612722|621654|622460|625112|625118|625125|625267|625424|633601|633602|633603|633604|633605|633606|633607|633608|633609|633610|633611|633612|633613|633614|633615|633616|633617|633618|633619|633620|633621|633622|633623|633624|633625|633626|633627|633628|633629|634476|634477|634478|634479|634480|634481|634482|634483|634484|634485|634486|634487|634488|636610|636611|636612|636613|636614|636615|636616|636617|636618|636619|636620|636621|636622|636623|639354|639355|639356|639357|640534|640535|640536|640537|640538|640539|640540|640541|640542|640543|640544|640545|640546|640547|640548|640549|640550|640551|640552|640553|640554|640555|640556|640557|640558|640559|640560|640561|640562|640563|640564|640565|640566|640567|640568|640569|640570|640571|640572|640573|640574|640575|640576|640577|640578|640579|641063|641064|641065|641066|641067|641068|641069|641070|641071|641072|641073|641074|641075|641076|641077|641078|648086|648087|648088|648089|648090|648091|648092|648093|648094|648095|648096|648097|648098|648099|648100|648101|648102|648103|648104|648105|648106|648107|648108|648109|648110|648111|648112|648113|648114|648115|648116|648117|648118|648119|648120|648121|648122|648123|648124|648125|648126|648127|648128|648129|648130|648131|648132|648133|648134|648135|651231|651377|651503|651574|651610|651617|651748|651852|652051|652105|652149|652209|652255|652321|652359|652612|653577|655699|677279|682959|682960|682978|682992|683031|683038|683083|683097|683105|683115|683120|683122|683130|683719|683720|683721|683722|683723|683724|683725|683749|683750|683751|683752|683977|683978|683979|684271|684272|684273|684274|684276|684322|684810|684811|684812|684813|684817|685297|685298|685300|686708|686709|686710|686772|686777|686778|686779|686780|687188|687189|687191|687192|687193|687195|687198|687199|687200|687680|687681|687683|687840|687841|687842|687843|687844|687845|687846|687847|687848|687849|687850|687855|687856|687857|687858|689045|689050|689051|689052|689053|689054|689056|689057|689059|689805|689904|689905|689906|691779|692352|692355|692914|693123|693124|693128|693129|693130|693131|693189|693191|693193|694422|694423|695306|695378|695561|695562|704991|722865|736463|738372|744773|749740|752374|757025|759620|764958|766552|769096|772694|775442|782209|782407|782997|782999|786197|787731|793790|793791|793793|796671|819566|819648|819947|820286|820425|820492|820493|821255|821905|830473|830474|830475|830476|830477|830478|830479|830480|830481|830482|830483|830484|830485|830486|830487|830488|830489|830490|830491|830492|830493|830494|830495|830496|830497|830498|830499|830500|831383|831384|831385|831386|831387|831388|831389|831390|831391|831392|831393|831394|831395|831396|831397|831398|831399|831400|831401|831402|831403|831404|831405|831406|831407|831408|831409|831410|831411|834147|834148|834149|834150|834151|834152|834153|834154|834155|834156|834157|837577|837578|837579|837580|837581|837582|837585|839190|839191|839192|839193|839194|839195|839196|839197|839198|839199|839200|839201|839202|839203|839204|839205|839206|839207|839208|839209|839210|839211|839212|839213|839214|839215|839216|839217|839218|839219|839220|839221|839222|839223|839224|839225|839226|839227|839228|839229|839230|839231|839232|839233|839234|839235|839236|839237|839238|839239|839841|839842|839843|839844|839845|839846|839847|839848|839849|839850|839851|839852|839853|839854|839855|839856|839857|839858|847680|847681|847682|847683|847684|847685|847686|847687|847688|847689|847690|847691|847692|847693|847694|847695|847696|847697|847698|847699|847700|847701|847702|847703|847704|847705|847706|847707|847708|847709|847710|847711|847712|847713|847714|847715|847716|847717|851308|851470|851472|851501|851925|851947|851978|852114|852413|852415|852416|852421|852650|852870|859398|869005|869006|869007|882053|899011|899014|903635|905146|905162|905164|905179|905209|905213|905360|905432|905458|905466|905611|918992|920731|923935|923936|923937|923938|923939|923940|923941|923942|923943|923944|924212|924213|924214|924215|924216|924217|924218|924219|925022|925023|925024|925998|926427|926428|926429|926430|926431|926432|926433|926434|926435|926436|926437|926438|926439|926440|926441|926442|926443|926602|926603|926604|926605|926606|926607|926608|926609|926610|928964|928965|928966|928967|928968|928969|928970|928971|928972|928973|932772|932773|932774|932775|932776|932777|932778|933119|933120|933121|933122|933123|933124|933125|934099|934100|934101|934102|934103|934104|934105|935266|935267|935268|935269|935875|935876|935877|935878|935879|935880|935881|935882|935883|935884|935885|935886|935887|935888|935889|935890|935891|935892|935893|935894|935895|936089|936090|936091|936092|936093|936094|938681|938682|938683|938684|938685|938686|938687|938688|938689|938690|938691|938692|938693|938694|938695|938696|938697|940024|940025|940092|940189|940806|940807|940808|940829|940830|944459|944460|944461|944462|944463|944464|944465|944466|944467|944468|944469|944470|944471|944472|944846|944847|944848|944849|944850|945856|945857|945858|947172|947173|947748|947749|947750|947751|947752|947753|947754|947755|947756|947757|947758|947759|947760|947761|947762|947763|947764|947987|947988|947989|947990|950784|950785|950786|950787|950788|950789|950790|950791|950792|950793|950794|950795|950796|950797|950798|954079|954080|954320|954321|954322|954323|955294|955295|955296|955297|955298|955299|955300|955301|955302|955303|956298|956299|956301|956722|956723|956724|956725|956726|956727|956728|956729|956730|956856|958636|958637|958638|958639|958640|958641|958642|958643|959758|959788|959957|960642|960768|960769|960786|961518|978411|978412|978413|978414|978415|978416", "text": "Charcot-Marie-Tooth disease type 4" }, { - "baseId": "16057|39837|39838|39839|39840|39841|139955|139956|139957|139958|139959|177460|177461|210915|210916|210919|210923|210927|210933|210935|213547|214383|214388|288663|288664|288672|288675|288682|288683|288687|288691|288692|289392|289395|289397|289398|289401|289404|292405|292406|292409|292412|292413|292414|292418|292420|292559|292563|292574|292606|292607|292609|359154|359155|359481|367178|368215|406111|549905|620751|626135|744011|759196|763608|763611|763615|790328|795323|805079|827524|851274|857613|857614|887894|887895|887896|887897|887898|887899|887900|887901|887902|887903|887904|887905|887906|887907|887908|887909|891560|891561|977793|977794|977795|977796", + "upstreamId": "16057|39837|39838|39839|39840|39841|139955|139956|139957|139958|139959|177460|177461|210915|210916|210919|210923|210927|210933|210935|213547|214383|214388|288663|288664|288672|288675|288682|288683|288687|288691|288692|289392|289395|289397|289398|289401|289404|292405|292406|292409|292412|292413|292414|292418|292420|292559|292563|292574|292606|292607|292609|359154|359155|359481|367178|368215|406111|549905|620751|626135|744011|759196|763608|763611|763615|790328|795323|805079|827524|851274|857613|857614|887894|887895|887896|887897|887898|887899|887900|887901|887902|887903|887904|887905|887906|887907|887908|887909|891560|891561|977793|977794|977795|977796", "text": "Acyl-CoA dehydrogenase family, member 9, deficiency of" }, { - "baseId": "16058|75319|84781|142399|191716|191716|191832|191940|192043|192139|192140|192687|192687|192688|192689|193660|195741|195741|196054|196054|196055|196056|196056|231497|231498|231498|236918|236918|244278|244279|244281|244282|244283|244283|244284|244285|244287|244288|244288|244289|244290|244290|244291|244292|244292|244293|244294|244294|265896|265896|265963|265963|266960|268743|268743|268885|268885|269804|269805|271724|271724|271725|271725|272148|272148|274250|275302|275506|281043|281048|281049|281054|281055|281060|281060|281062|281068|281068|281069|281077|281079|281079|281083|281083|281086|281091|281093|281093|281100|281101|281101|281650|281654|281658|281660|281661|281663|281666|281668|281668|281669|281687|281688|281689|281689|281695|281696|281698|281698|281708|281708|281720|281722|281723|281723|281727|282863|282864|282865|282866|282869|282872|282874|282874|282876|282883|282883|282886|282886|282891|282891|282892|282893|282894|282894|282896|282896|282899|282899|282904|282904|282906|282906|282913|282913|282914|282914|283149|283150|283151|283153|283155|283156|283157|283173|283176|283176|283179|283208|283208|283210|283210|283213|283213|359270|365178|365179|365179|365185|365185|365189|365189|365195|365197|365199|365201|365363|365363|365380|365385|365448|365460|365461|365461|365464|365464|405228|414805|414807|421254|442882|448208|448212|448214|448215|448219|448277|448288|448303|448308|448309|448314|448319|448323|448325|448334|448338|448343|448344|448346|448347|448354|448402|448404|448405|448409|448411|448413|448417|448426|481599|485980|498817|516031|516037|516051|516053|516057|516060|516067|516068|516069|516072|516073|516074|516082|516084|516092|516097|516099|516194|516202|516205|516209|516213|516218|516218|516223|516226|536598|540440|557356|557358|557360|557362|557364|557366|557368|557405|557407|557409|557411|557413|557415|557417|557419|557421|558024|558026|558028|558030|558032|558034|558036|558038|558040|558573|558575|558577|558579|558581|558583|612539|628212|628212|628213|628214|628215|628216|628217|628217|628218|628219|628220|628221|628222|628223|628224|628225|628226|628227|628228|628229|628230|628231|628232|628233|628234|628235|628236|628237|628238|628239|628240|628241|628242|628243|628244|628245|650769|690658|690659|690660|690661|695061|696837|696840|696841|746620|746623|762055|762057|778838|780758|787165|818989|818990|824354|824355|824356|824357|824358|824359|824360|824361|824362|824363|824364|824365|824366|824367|824368|824369|824369|824370|824371|824372|824373|824374|824375|824376|824377|824378|824379|824380|824381|824382|824383|850783|864719|864720|864721|864722|864723|864724|864725|864726|864727|864728|864729|864730|864731|864732|864733|864734|864735|864736|864737|864738|865201|922147|922148|922149|922150|922151|922152|922153|922154|922155|930644|930645|930646|930647|930648|930649|930650|930651|930652|939824|940647|942083|942084|942085|942086|942087|942088|942089|942090|942091|952502|952503|952504|952505|952506", + "upstreamId": "16058|75319|84781|142399|191716|191716|191832|191940|192043|192139|192140|192687|192687|192688|192689|193660|195741|195741|196054|196054|196055|196056|196056|231497|231498|231498|236918|236918|244278|244279|244281|244282|244283|244283|244284|244285|244287|244288|244288|244289|244290|244290|244291|244292|244292|244293|244294|244294|265896|265896|265963|265963|266960|268743|268743|268885|268885|269804|269805|271724|271724|271725|271725|272148|272148|274250|275302|275506|281043|281048|281049|281054|281055|281060|281060|281062|281068|281068|281069|281077|281079|281079|281083|281083|281086|281091|281093|281093|281100|281101|281101|281650|281654|281658|281660|281661|281663|281666|281668|281668|281669|281687|281688|281689|281689|281695|281696|281698|281698|281708|281708|281720|281722|281723|281723|281727|282863|282864|282865|282866|282869|282872|282874|282874|282876|282883|282883|282886|282886|282891|282891|282892|282893|282894|282894|282896|282896|282899|282899|282904|282904|282906|282906|282913|282913|282914|282914|283149|283150|283151|283153|283155|283156|283157|283173|283176|283176|283179|283208|283208|283210|283210|283213|283213|359270|365178|365179|365179|365185|365185|365189|365189|365195|365197|365199|365201|365363|365363|365380|365385|365448|365460|365461|365461|365464|365464|405228|414805|414807|421254|442882|448208|448212|448214|448215|448219|448277|448288|448303|448308|448309|448314|448319|448323|448325|448334|448338|448343|448344|448346|448347|448354|448402|448404|448405|448409|448411|448413|448417|448426|481599|485980|498817|516031|516037|516051|516053|516057|516060|516067|516068|516069|516072|516073|516074|516082|516084|516092|516097|516099|516194|516202|516205|516209|516213|516218|516218|516223|516226|536598|540440|557356|557358|557360|557362|557364|557366|557368|557405|557407|557409|557411|557413|557415|557417|557419|557421|558024|558026|558028|558030|558032|558034|558036|558038|558040|558573|558575|558577|558579|558581|558583|612539|628212|628212|628213|628214|628215|628216|628217|628217|628218|628219|628220|628221|628222|628223|628224|628225|628226|628227|628228|628229|628230|628231|628232|628233|628234|628235|628236|628237|628238|628239|628240|628241|628242|628243|628244|628245|650769|690658|690659|690660|690661|695061|696837|696840|696841|746620|746623|762055|762057|778838|780758|787165|818989|818990|824354|824355|824356|824357|824358|824359|824360|824361|824362|824363|824364|824365|824366|824367|824368|824369|824369|824370|824371|824372|824373|824374|824375|824376|824377|824378|824379|824380|824381|824382|824383|850783|864719|864720|864721|864722|864723|864724|864725|864726|864727|864728|864729|864730|864731|864732|864733|864734|864735|864736|864737|864738|865201|922147|922148|922149|922150|922151|922152|922153|922154|922155|930644|930645|930646|930647|930648|930649|930650|930651|930652|939824|940647|942083|942084|942085|942086|942087|942088|942089|942090|942091|952502|952503|952504|952505|952506", "text": "Distal spinal muscular atrophy, autosomal recessive 4" }, { - "baseId": "16058|20041|23440|441227|443712|452516|556613|558202|562065|625100|625143|625194|625292", + "upstreamId": "16058|20041|23440|441227|443712|452516|556613|558202|562065|625100|625143|625194|625292", "text": "Hereditary motor neuron disease" }, { - "baseId": "16059|16060", + "upstreamId": "16059|16060", "text": "MYOPATHY, CENTRONUCLEAR, AUTOSOMAL DOMINANT, MODIFIER OF" }, { - "baseId": "16061|18998|21835|22033|22034|23405|28597|29418|29419|29511|31633|32916|33100|44292", + "upstreamId": "16061|18998|21835|22033|22034|23405|28597|29418|29419|29511|31633|32916|33100|44292", "text": "Myocardial infarction" }, { - "baseId": "16062|16063|16064|16065|16066|16067|16068|16069|39832|39833|39834|39835|273506|390529|437666|919100", + "upstreamId": "16062|16063|16064|16065|16066|16067|16068|16069|39832|39833|39834|39835|273506|390529|437666|919100", "text": "Lethal osteosclerotic bone dysplasia" }, { - "baseId": "16070|16071|16071|16072|16073|16074|167422|167423|169418|169422|169423|169424|169425|169428|169430|169434|169435|208453|331271|331273|331289|331306|331316|331347|331351|341637|341652|347012|347041|348305|348318|348326|348361|434668|539080|694279|791859|791860|791861|976671|977290", + "upstreamId": "16070|16071|16071|16072|16073|16074|167422|167423|169418|169422|169423|169424|169425|169428|169430|169434|169435|208453|331271|331273|331289|331306|331316|331347|331351|341637|341652|347012|347041|348305|348318|348326|348361|434668|539080|694279|791859|791860|791861|976671|977290", "text": "Schinzel-Giedion syndrome" }, { - "baseId": "16070|40530|100020|100024|141332|169569|171233|189212|190135|190136|190137|254100|254103|254104|256045|263959|271555|312682|313489|313519|313520|313534|313535|313536|313543|313546|319125|319683|319725|319726|319733|319734|319749|319750|325800|325831|325853|325854|325896|325916|325917|325922|325923|326880|326881|327191|327244|337052|337081|413635|426749|426750|445387|448523|448545|488722|489879|511407|553412|556535|557414|578035|587787|610419|619849|620934|621026|623668|626464|655018|680083|680084|680085|680086|680087|680088|680089|680090|680091|680092|680093|680094|680095|680096|680097|680098|680099|680100|680101|680102|680103|680104|680105|680106|680107|680108|680109|680110|680111|680112|680113|680114|680115|680116|680117|680118|680119|680120|680121|680122|680123|680124|680125|680126|680127|680128|680129|680130|680131|680132|680133|680134|680135|680136|680137|706511|706513|707621|729896|731499|822351|824610|966695|966696", + "upstreamId": "16070|40530|100020|100024|141332|169569|171233|189212|190135|190136|190137|254100|254103|254104|256045|263959|271555|312682|313489|313519|313520|313534|313535|313536|313543|313546|319125|319683|319725|319726|319733|319734|319749|319750|325800|325831|325853|325854|325896|325916|325917|325922|325923|326880|326881|327191|327244|337052|337081|413635|426749|426750|445387|448523|448545|488722|489879|511407|553412|556535|557414|578035|587787|610419|619849|620934|621026|623668|626464|655018|680083|680084|680085|680086|680087|680088|680089|680090|680091|680092|680093|680094|680095|680096|680097|680098|680099|680100|680101|680102|680103|680104|680105|680106|680107|680108|680109|680110|680111|680112|680113|680114|680115|680116|680117|680118|680119|680120|680121|680122|680123|680124|680125|680126|680127|680128|680129|680130|680131|680132|680133|680134|680135|680136|680137|706511|706513|707621|729896|731499|822351|824610|966695|966696", "text": "Arthrogryposis multiplex congenita" }, { - "baseId": "16070|141332|169569|171233|181416|189212|263959|413635|445387|488722|489879|587787|610419|620934|680083|680084|680085|680086|680087|680088|680089|680090|680091|680092|680093|680094|680095|680096|680097|680098|680099|680100|680101|680102|680103|680104|680105|680106|680107|680108|680109|680110|680111|680112|680113|680114|680115|680115|680116|680117|680118|680119|680120|680121|680122|680123|680124|680125|680126|680127|680128|680129|680130|680131|680132|680133|680134|680135|680136|680137|801537", + "upstreamId": "16070|141332|169569|171233|181416|189212|263959|413635|445387|488722|489879|587787|610419|620934|680083|680084|680085|680086|680087|680088|680089|680090|680091|680092|680093|680094|680095|680096|680097|680098|680099|680100|680101|680102|680103|680104|680105|680106|680107|680108|680109|680110|680111|680112|680113|680114|680115|680115|680116|680117|680118|680119|680120|680121|680122|680123|680124|680125|680126|680127|680128|680129|680130|680131|680132|680133|680134|680135|680136|680137|801537", "text": "Fetal akinesia sequence" }, { - "baseId": "16070|16071|167418|167419|167420|167421|167422|167422|167423|167423|208453|264907|362448|482171|512352|512354|514090|539080|611888|611890|611891|626268|798736|919797|919798|919799|963857|964499|971102|972987|972988|972989|972990|972991|972992|972993|976671", + "upstreamId": "16070|16071|167418|167419|167420|167421|167422|167422|167423|167423|208453|264907|362448|482171|512352|512354|514090|539080|611888|611890|611891|626268|798736|919797|919798|919799|963857|964499|971102|972987|972988|972989|972990|972991|972992|972993|976671", "text": "Mental retardation, autosomal dominant 29" }, { - "baseId": "16074|27663|27665|27666|27667|27668|29701|48939|50038|152948|152949|152950|174177|204572|362963|362964|362965|362966|362967|362968|362969|362970|362971|362972|362973|362974|362975|362976|362996|362997|362998|362999|363000|363001|363002|363003|363004|363231", + "upstreamId": "16074|27663|27665|27666|27667|27668|29701|48939|50038|152948|152949|152950|174177|204572|362963|362964|362965|362966|362967|362968|362969|362970|362971|362972|362973|362974|362975|362976|362996|362997|362998|362999|363000|363001|363002|363003|363004|363231", "text": "Chronic myelogenous leukemia, BCR-ABL1 positive" }, { - "baseId": "16075", + "upstreamId": "16075", "text": "Deafness, autosomal dominant 44" }, { - "baseId": "16076|16077|16078|16079|16080|39831|187650|187651|187652|187653|208398|256183|256184|328639|328648|328650|328651|328652|338618|338619|338621|344679|344683|344691|344695|344696|344698|344699|344703|346082|346086|346090|531360|531415|571215|571508|571509|571521|574497|574498|614435|620590|646071|646072|646073|646074|646075|646076|646077|646078|646079|646080|715479|740805|740806|740807|755884|755885|755886|771566|845486|845487|845488|845489|852215|877679|877680|877681|877682|877683|877684|880527|880528|928330|928331|928332|928333|928334|937978|937979|937980|937981|949968|949969|949970|949971|949972|949973|958142|964482", + "upstreamId": "16076|16077|16078|16079|16080|39831|187650|187651|187652|187653|208398|256183|256184|328639|328648|328650|328651|328652|338618|338619|338621|344679|344683|344691|344695|344696|344698|344699|344703|346082|346086|346090|531360|531415|571215|571508|571509|571521|574497|574498|614435|620590|646071|646072|646073|646074|646075|646076|646077|646078|646079|646080|715479|740805|740806|740807|755884|755885|755886|771566|845486|845487|845488|845489|852215|877679|877680|877681|877682|877683|877684|880527|880528|928330|928331|928332|928333|928334|937978|937979|937980|937981|949968|949969|949970|949971|949972|949973|958142|964482", "text": "Severe congenital neutropenia 4, autosomal recessive" }, { - "baseId": "16081|679799|679830", + "upstreamId": "16081|679799|679830", "text": "Dursun syndrome" }, { - "baseId": "16082|16083|39827|39828|39829|39830|40302|40303|134473|134474|134475|134476|134477|134478|134479|213640|242500|326295|326301|326302|326310|326311|326312|326316|326317|326322|326323|326324|326325|326329|326331|336043|336047|336048|336049|336053|336056|342317|342319|342326|342327|342329|342330|342333|343920|343922|343923|343924|343927|343932|343940|343942|343943|343946|343947|343951|343955|353356|361645|375399|401319|438017|481380|506477|538454|575502|608908|608909|612314|685422|688645|688647|690147|791640|791641|798704|798705|875935|875936|875937|875938|875939|875940|875941|875942|875943|876721|927941", + "upstreamId": "16082|16083|39827|39828|39829|39830|40302|40303|134473|134474|134475|134476|134477|134478|134479|213640|242500|326295|326301|326302|326310|326311|326312|326316|326317|326322|326323|326324|326325|326329|326331|336043|336047|336048|336049|336053|336056|342317|342319|342326|342327|342329|342330|342333|343920|343922|343923|343924|343927|343932|343940|343942|343943|343946|343947|343951|343955|353356|361645|375399|401319|438017|481380|506477|538454|575502|608908|608909|612314|685422|688645|688647|690147|791640|791641|798704|798705|875935|875936|875937|875938|875939|875940|875941|875942|875943|876721|927941", "text": "Spastic paraplegia 35" }, { - "baseId": "16085|16086|16088|190546|190547|190548|191064|192134|192467|194466|195379|196295|227235|237089|267230|267232|267363|268578|268662|271727|271768|272251|273648|274366|284794|284802|284807|284809|284811|284823|284825|284827|284831|284833|284834|284839|284843|284845|284847|284850|284854|284855|284859|284865|284869|284870|285487|285488|285491|285492|285495|285496|285497|285498|285500|285501|285502|285503|285513|285522|285524|285530|287700|287701|287705|287707|287708|287726|287728|287738|287754|287761|287762|287767|287768|287769|287771|287772|287780|287784|287791|287793|287804|287805|287807|287816|287827|287978|287986|287989|287991|287992|287993|287997|288006|288017|288019|288031|288034|288042|288044|288045|288047|288060|288061|288065|288071|288074|288081|288105|288107|288108|361173|361174|405638|488352|513922|584937|588799|608874|620064|620065|697353|719661|719662|719665|719666|719667|733199|733202|733203|733205|733206|733208|733210|747366|747367|762967|790201|795176|858422|883812|883813|883814|883815|883816|883817|883818|883819|883820|883821|883822|883823|883824|883825|883826|883827|883828|883829|883830|883831|883832|883833|883834|883835|883836|883837|883838|883839|883840|883841|883842|883843|883844|883845|883846|883847|883848|883849|883850|883851|883852|883853|883854|883855|883856|883857|883858|883859|883860|883861|883862|883863|883864|883865|883866|883867|883868|883869|883870|883871|883872|883873|883874|883875|883876|883877|883878|883879|883880|883881|887278|887279|887280|887281|918743", + "upstreamId": "16085|16086|16088|190546|190547|190548|191064|192134|192467|194466|195379|196295|227235|237089|267230|267232|267363|268578|268662|271727|271768|272251|273648|274366|284794|284802|284807|284809|284811|284823|284825|284827|284831|284833|284834|284839|284843|284845|284847|284850|284854|284855|284859|284865|284869|284870|285487|285488|285491|285492|285495|285496|285497|285498|285500|285501|285502|285503|285513|285522|285524|285530|287700|287701|287705|287707|287708|287726|287728|287738|287754|287761|287762|287767|287768|287769|287771|287772|287780|287784|287791|287793|287804|287805|287807|287816|287827|287978|287986|287989|287991|287992|287993|287997|288006|288017|288019|288031|288034|288042|288044|288045|288047|288060|288061|288065|288071|288074|288081|288105|288107|288108|361173|361174|405638|488352|513922|584937|588799|608874|620064|620065|697353|719661|719662|719665|719666|719667|733199|733202|733203|733205|733206|733208|733210|747366|747367|762967|790201|795176|858422|883812|883813|883814|883815|883816|883817|883818|883819|883820|883821|883822|883823|883824|883825|883826|883827|883828|883829|883830|883831|883832|883833|883834|883835|883836|883837|883838|883839|883840|883841|883842|883843|883844|883845|883846|883847|883848|883849|883850|883851|883852|883853|883854|883855|883856|883857|883858|883859|883860|883861|883862|883863|883864|883865|883866|883867|883868|883869|883870|883871|883872|883873|883874|883875|883876|883877|883878|883879|883880|883881|887278|887279|887280|887281|918743", "text": "Three M syndrome 2" }, { - "baseId": "16089|16090|16090|16091|16092|16093|39823|244907|244909|244910|244910|244917|244917|254881|254881|254882|254883|254883|254889|254889|254893|254893|254894|254894|254895|254895|254896|254896|254897|254898|254899|254900|254900|254901|254901|254902|254902|254903|254904|254905|254906|254906|275317|320195|320196|320200|320201|320201|320210|320211|320211|320212|320212|320214|320214|320217|320217|320226|320228|320228|320229|320230|320239|320240|320246|328746|328751|328751|328753|328765|328765|328768|328769|328770|328770|328771|328771|328775|328776|335377|335377|335382|335395|335395|335398|335411|335411|335413|335413|335421|335422|335422|335424|335427|335427|335432|337256|337256|337261|337263|337264|337264|337265|337265|337266|337266|337271|337271|337276|337279|337280|337286|337289|337292|360155|372982|372982|372997|372997|374071|374080|374080|374086|374089|375881|375907|409064|415381|415382|421971|433643|433644|433644|433645|441642|463063|463074|463082|463090|463094|463096|463099|463106|463109|463111|463111|463389|463542|463549|463552|463556|463559|463562|463829|463837|463839|463847|463849|463852|463853|463857|463860|464022|464024|464026|464028|464031|464042|464049|464055|464057|464060|490223|492759|504427|504427|504441|504661|504661|504949|505343|505344|514037|527934|527939|527941|527943|527947|527948|527950|527953|527967|527972|527975|527977|527978|527983|527986|527989|527991|527993|528279|528281|528284|528285|528286|528288|528291|528293|528314|528320|528322|528330|528335|528342|528348|528437|528437|528440|528442|528443|528458|528458|528459|528462|528462|528464|528465|553591|566245|566253|566259|566261|566265|566269|566272|566273|566275|566281|566288|567825|567829|567835|567837|568721|568721|568724|568728|568729|572683|572684|572685|572687|572688|590306|590307|590308|609886|609886|620476|623317|625294|625299|642129|642130|642131|642131|642132|642133|642134|642135|642136|642137|642138|642139|642140|642141|642142|642143|642144|642145|642146|642147|642148|642149|642150|642151|642152|642153|642154|642155|642156|642157|642158|642159|642160|642161|642162|642163|642164|642165|642166|642167|642168|642169|642170|642171|642172|642173|642174|642174|642175|642176|642177|652299|652407|652455|656226|656226|684464|685393|693423|693424|693425|693426|693427|693428|693428|693429|693430|693434|693436|693440|693441|693442|693444|693445|693446|693446|695610|702774|714020|753937|769684|769684|769685|769687|769688|769690|769694|793499|798670|816000|818302|818303|818304|841092|841093|841094|841095|841096|841097|841098|841099|841100|841101|841102|841103|841104|841105|841105|841106|841107|841108|841108|841109|841110|841111|841112|841113|841114|841115|841116|841117|841118|841119|841120|841121|841122|841123|841124|841125|841126|841127|841128|841129|841130|841131|841132|841133|841134|841135|841136|841137|841138|852554|871645|871646|871647|871648|871649|871650|871651|871652|871653|871654|871655|871656|871657|871658|871659|871660|871661|871662|871663|871664|871665|871666|871667|871668|871669|871670|871671|872353|872354|872355|926968|926969|926970|926971|926972|926973|926974|936528|936529|936530|936531|936532|936533|936534|940297|948442|948443|948444|948445|948446|948447|948448|948449|948450|948451|948452|957158|957159|957160|960077|970061|980350", + "upstreamId": "16089|16090|16090|16091|16092|16093|39823|244907|244909|244910|244910|244917|244917|254881|254881|254882|254883|254883|254889|254889|254893|254893|254894|254894|254895|254895|254896|254896|254897|254898|254899|254900|254900|254901|254901|254902|254902|254903|254904|254905|254906|254906|275317|320195|320196|320200|320201|320201|320210|320211|320211|320212|320212|320214|320214|320217|320217|320226|320228|320228|320229|320230|320239|320240|320246|328746|328751|328751|328753|328765|328765|328768|328769|328770|328770|328771|328771|328775|328776|335377|335377|335382|335395|335395|335398|335411|335411|335413|335413|335421|335422|335422|335424|335427|335427|335432|337256|337256|337261|337263|337264|337264|337265|337265|337266|337266|337271|337271|337276|337279|337280|337286|337289|337292|360155|372982|372982|372997|372997|374071|374080|374080|374086|374089|375881|375907|409064|415381|415382|421971|433643|433644|433644|433645|441642|463063|463074|463082|463090|463094|463096|463099|463106|463109|463111|463111|463389|463542|463549|463552|463556|463559|463562|463829|463837|463839|463847|463849|463852|463853|463857|463860|464022|464024|464026|464028|464031|464042|464049|464055|464057|464060|490223|492759|504427|504427|504441|504661|504661|504949|505343|505344|514037|527934|527939|527941|527943|527947|527948|527950|527953|527967|527972|527975|527977|527978|527983|527986|527989|527991|527993|528279|528281|528284|528285|528286|528288|528291|528293|528314|528320|528322|528330|528335|528342|528348|528437|528437|528440|528442|528443|528458|528458|528459|528462|528462|528464|528465|553591|566245|566253|566259|566261|566265|566269|566272|566273|566275|566281|566288|567825|567829|567835|567837|568721|568721|568724|568728|568729|572683|572684|572685|572687|572688|590306|590307|590308|609886|609886|620476|623317|625294|625299|642129|642130|642131|642131|642132|642133|642134|642135|642136|642137|642138|642139|642140|642141|642142|642143|642144|642145|642146|642147|642148|642149|642150|642151|642152|642153|642154|642155|642156|642157|642158|642159|642160|642161|642162|642163|642164|642165|642166|642167|642168|642169|642170|642171|642172|642173|642174|642174|642175|642176|642177|652299|652407|652455|656226|656226|684464|685393|693423|693424|693425|693426|693427|693428|693428|693429|693430|693434|693436|693440|693441|693442|693444|693445|693446|693446|695610|702774|714020|753937|769684|769684|769685|769687|769688|769690|769694|793499|798670|816000|818302|818303|818304|841092|841093|841094|841095|841096|841097|841098|841099|841100|841101|841102|841103|841104|841105|841105|841106|841107|841108|841108|841109|841110|841111|841112|841113|841114|841115|841116|841117|841118|841119|841120|841121|841122|841123|841124|841125|841126|841127|841128|841129|841130|841131|841132|841133|841134|841135|841136|841137|841138|852554|871645|871646|871647|871648|871649|871650|871651|871652|871653|871654|871655|871656|871657|871658|871659|871660|871661|871662|871663|871664|871665|871666|871667|871668|871669|871670|871671|872353|872354|872355|926968|926969|926970|926971|926972|926973|926974|936528|936529|936530|936531|936532|936533|936534|940297|948442|948443|948444|948445|948446|948447|948448|948449|948450|948451|948452|957158|957159|957160|960077|970061|980350", "text": "Focal segmental glomerulosclerosis 5" }, { - "baseId": "16090|39821|39822|39823|39823|39824|39825|39826|244907|244909|244910|244917|254881|254883|254889|254893|254894|254895|254896|254900|254901|254902|254906|320201|320211|320212|320214|320217|320228|328746|328751|328765|328770|328771|335377|335395|335411|335413|335422|335427|337256|337264|337265|337266|337271|360155|372982|372997|374071|374080|374086|374089|375881|375907|409064|415381|421971|433643|433644|433645|441642|463063|463074|463082|463090|463094|463096|463099|463106|463109|463111|463389|463542|463549|463552|463556|463559|463562|463829|463837|463839|463841|463847|463849|463852|463853|463857|463860|464022|464024|464026|464028|464031|464042|464049|464055|464057|464060|490223|492759|504427|504441|504661|504949|505343|527934|527939|527941|527943|527947|527948|527950|527953|527967|527972|527975|527977|527978|527983|527986|527989|527991|527993|528279|528281|528284|528285|528286|528288|528291|528293|528314|528320|528322|528330|528335|528342|528348|528437|528440|528442|528443|528458|528459|528462|528465|566245|566253|566259|566261|566265|566269|566272|566273|566275|566281|566288|567825|567829|567835|567837|568721|568724|568728|568729|572683|572684|572685|572687|572688|609161|609886|625294|625299|642129|642130|642131|642132|642133|642134|642135|642136|642137|642138|642139|642140|642141|642142|642143|642144|642145|642146|642147|642148|642149|642150|642151|642152|642153|642154|642155|642156|642157|642158|642159|642160|642161|642162|642163|642164|642165|642166|642167|642168|642169|642170|642171|642172|642173|642174|642175|642176|642177|652299|652407|652455|656226|684464|685393|693423|693424|693426|693427|693428|693429|693430|693434|693436|693440|693441|693442|693444|693445|693446|695610|702774|714020|753937|769684|769685|769687|769688|769690|769694|793499|841092|841093|841094|841095|841096|841097|841098|841099|841100|841101|841102|841103|841104|841105|841106|841107|841108|841109|841110|841111|841112|841113|841114|841115|841116|841117|841118|841119|841120|841121|841122|841123|841124|841125|841126|841127|841128|841129|841130|841131|841132|841133|841134|841135|841136|841137|841138|852554|919509|926968|926969|926970|926971|926972|926973|926974|936528|936529|936530|936531|936532|936533|936534|940297|948442|948443|948444|948445|948446|948447|948448|948449|948450|948451|948452|957158|957159|957160|960077|964859|970989", + "upstreamId": "16090|39821|39822|39823|39823|39824|39825|39826|244907|244909|244910|244917|254881|254883|254889|254893|254894|254895|254896|254900|254901|254902|254906|320201|320211|320212|320214|320217|320228|328746|328751|328765|328770|328771|335377|335395|335411|335413|335422|335427|337256|337264|337265|337266|337271|360155|372982|372997|374071|374080|374086|374089|375881|375907|409064|415381|421971|433643|433644|433645|441642|463063|463074|463082|463090|463094|463096|463099|463106|463109|463111|463389|463542|463549|463552|463556|463559|463562|463829|463837|463839|463841|463847|463849|463852|463853|463857|463860|464022|464024|464026|464028|464031|464042|464049|464055|464057|464060|490223|492759|504427|504441|504661|504949|505343|527934|527939|527941|527943|527947|527948|527950|527953|527967|527972|527975|527977|527978|527983|527986|527989|527991|527993|528279|528281|528284|528285|528286|528288|528291|528293|528314|528320|528322|528330|528335|528342|528348|528437|528440|528442|528443|528458|528459|528462|528465|566245|566253|566259|566261|566265|566269|566272|566273|566275|566281|566288|567825|567829|567835|567837|568721|568724|568728|568729|572683|572684|572685|572687|572688|609161|609886|625294|625299|642129|642130|642131|642132|642133|642134|642135|642136|642137|642138|642139|642140|642141|642142|642143|642144|642145|642146|642147|642148|642149|642150|642151|642152|642153|642154|642155|642156|642157|642158|642159|642160|642161|642162|642163|642164|642165|642166|642167|642168|642169|642170|642171|642172|642173|642174|642175|642176|642177|652299|652407|652455|656226|684464|685393|693423|693424|693426|693427|693428|693429|693430|693434|693436|693440|693441|693442|693444|693445|693446|695610|702774|714020|753937|769684|769685|769687|769688|769690|769694|793499|841092|841093|841094|841095|841096|841097|841098|841099|841100|841101|841102|841103|841104|841105|841106|841107|841108|841109|841110|841111|841112|841113|841114|841115|841116|841117|841118|841119|841120|841121|841122|841123|841124|841125|841126|841127|841128|841129|841130|841131|841132|841133|841134|841135|841136|841137|841138|852554|919509|926968|926969|926970|926971|926972|926973|926974|936528|936529|936530|936531|936532|936533|936534|940297|948442|948443|948444|948445|948446|948447|948448|948449|948450|948451|948452|957158|957159|957160|960077|964859|970989", "text": "Charcot-Marie-Tooth disease, dominant intermediate E" }, { - "baseId": "16094|204571|325661|325662|325669|325670|325675|325678|325684|325685|325693|325695|325700|325707|325710|325712|325713|325721|325723|325724|325725|325727|325728|325729|335330|335341|335342|335344|335348|335363|335364|335368|335372|341809|341810|341819|341820|341821|341825|341827|341829|341830|341831|341832|341836|341840|341842|341843|341845|343297|343298|343300|343307|343308|343313|343315|343317|343322|343323|343325|343326|343330|343331|343333|343336|343339|343344|343345|438656|513360|620548|620549|703735|714972|726679|875446|875447|875448|875449|875450|875451|875452|875453|875454|875455|875456|875457|875458|875459|875460|875461|875462|875463|875464|875465|875466|875467|875468|875469|875470|875471|875472|875473|875474|875475|875476|875477|875478|875479|875480|875481|875482|875483|875484|875485", + "upstreamId": "16094|204571|325661|325662|325669|325670|325675|325678|325684|325685|325693|325695|325700|325707|325710|325712|325713|325721|325723|325724|325725|325727|325728|325729|335330|335341|335342|335344|335348|335363|335364|335368|335372|341809|341810|341819|341820|341821|341825|341827|341829|341830|341831|341832|341836|341840|341842|341843|341845|343297|343298|343300|343307|343308|343313|343315|343317|343322|343323|343325|343326|343330|343331|343333|343336|343339|343344|343345|438656|513360|620548|620549|703735|714972|726679|875446|875447|875448|875449|875450|875451|875452|875453|875454|875455|875456|875457|875458|875459|875460|875461|875462|875463|875464|875465|875466|875467|875468|875469|875470|875471|875472|875473|875474|875475|875476|875477|875478|875479|875480|875481|875482|875483|875484|875485", "text": "Growth retardation, developmental delay, coarse facies, and early death" }, { - "baseId": "16095|108175|108176|108177|108178|141637|141638|141640|205770|205771|211638|211639|316904|316907|316909|316912|316913|316916|324508|324510|324513|324515|324518|324522|330689|330692|330694|330699|330703|330705|330707|332072|332081|332087|332103|332107|332108|332112|738617|869721|869722|869723|869724|869725|869726", + "upstreamId": "16095|108175|108176|108177|108178|141637|141638|141640|205770|205771|211638|211639|316904|316907|316909|316912|316913|316916|324508|324510|324513|324515|324518|324522|330689|330692|330694|330699|330703|330705|330707|332072|332081|332087|332103|332107|332108|332112|738617|869721|869722|869723|869724|869725|869726", "text": "Myopathy, lactic acidosis, and sideroblastic anemia 2" }, { - "baseId": "16096|16097|16098|16099|16100|16101|16102|16103|16104|16105|16106|34398|34399|39819|39820|140768|140769|140773|140774|140775|277455|277460|277462|277469|277473|277660|277661|278545|278546|278547|278552|278574|278577|278579|278586|278589|278590|278591|278592|364624|364690|427664|442667|513498|620708|682589|789883|789884|789885|789886|861604|862827|862828|862829|862830|862831|862832|862833|862834|862835|862836|862837|865038|865039|865040", + "upstreamId": "16096|16097|16098|16099|16100|16101|16102|16103|16104|16105|16106|34398|34399|39819|39820|140768|140769|140773|140774|140775|277455|277460|277462|277469|277473|277660|277661|278545|278546|278547|278552|278574|278577|278579|278586|278589|278590|278591|278592|364624|364690|427664|442667|513498|620708|682589|789883|789884|789885|789886|861604|862827|862828|862829|862830|862831|862832|862833|862834|862835|862836|862837|865038|865039|865040", "text": "Leukoencephalopathy with brain stem and spinal cord involvement-high lactate syndrome" }, { - "baseId": "16096|16101|51184|225802|225802|361061|361062|402131|402131|514220|536183", + "upstreamId": "16096|16101|51184|225802|225802|361061|361062|402131|402131|514220|536183", "text": "Gait ataxia" }, { - "baseId": "16096|16101|360889", + "upstreamId": "16096|16101|360889", "text": "Gait imbalance" }, { - "baseId": "16096|16101", + "upstreamId": "16096|16101", "text": "Dysmetria" }, { - "baseId": "16096|16101|29017|39943|184571|192474|207388|226496|243994|263173|263216|263221|263245|263259|263263|263290|263386|263390|263395|263397|263408|286038|360910|361083|514000|514108|514144|514165|514172|514332|590033|590041|590045|590071|590072|590076|590083|590087|590088|590092|615237|792643|792644|797206|815876", + "upstreamId": "16096|16101|29017|39943|184571|192474|207388|226496|243994|263173|263216|263221|263245|263259|263263|263290|263386|263390|263395|263397|263408|286038|360910|361083|514000|514108|514144|514165|514172|514332|590033|590041|590045|590071|590072|590076|590083|590087|590088|590092|615237|792643|792644|797206|815876", "text": "10 conditions" }, { - "baseId": "16099|16101|427664", + "upstreamId": "16099|16101|427664", "text": "Leukoencephalopathy with brain stem and spinal cord involvement and lactate elevation" }, { - "baseId": "16107|16108|16109|16110|16113|16114|16115|16115|16116|16117|16118|16119|101586|101587|101588|101589|101590|131807|131809|131811|131812|177286|177418|178021|186227|190880|190880|191930|205194|208284|208285|208287|208288|214350|214351|214352|214353|214354|214355|221479|237020|237107|237317|237317|242442|255806|255807|255810|255815|255817|266004|268059|268166|269093|271215|273848|273848|325639|325640|325646|325648|325649|325653|325654|325657|335287|335289|335291|335292|335293|335300|335303|335305|335307|335309|335319|335320|335321|335322|335323|335325|341773|341774|341775|341779|341787|341788|341791|341795|341797|341803|341805|343259|343260|343262|343266|343269|343272|343273|343276|343282|343285|343286|343287|343287|343293|375212|401969|409651|415498|432330|530041|530184|622911|644749|688608|688615|797343|818305|875411|875412|875413|875414|875415|875416|875417|875418|875419|875420|875421|875422|875423|875424|875425|875426|875427|875428|875429|875430|875431|875432|875433|875434|875435|875436|875437|875438|875439|875440|875441|875442|875443|875444|875445|876677|876678|919662|919663|919664", + "upstreamId": "16107|16108|16109|16110|16113|16114|16115|16115|16116|16117|16118|16119|101586|101587|101588|101589|101590|131807|131809|131811|131812|177286|177418|178021|186227|190880|190880|191930|205194|208284|208285|208287|208288|214350|214351|214352|214353|214354|214355|221479|237020|237107|237317|237317|242442|255806|255807|255810|255815|255817|266004|268059|268166|269093|271215|273848|273848|325639|325640|325646|325648|325649|325653|325654|325657|335287|335289|335291|335292|335293|335300|335303|335305|335307|335309|335319|335320|335321|335322|335323|335325|341773|341774|341775|341779|341787|341788|341791|341795|341797|341803|341805|343259|343260|343262|343266|343269|343272|343273|343276|343282|343285|343286|343287|343287|343293|375212|401969|409651|415498|432330|530041|530184|622911|644749|688608|688615|797343|818305|875411|875412|875413|875414|875415|875416|875417|875418|875419|875420|875421|875422|875423|875424|875425|875426|875427|875428|875429|875430|875431|875432|875433|875434|875435|875436|875437|875438|875439|875440|875441|875442|875443|875444|875445|876677|876678|919662|919663|919664", "text": "Joubert syndrome 7" }, { - "baseId": "16107|16113|482045|568743|620477|620478|620479|620547", + "upstreamId": "16107|16113|482045|568743|620477|620478|620479|620547", "text": "RPGRIP1L-Related Disorders" }, { - "baseId": "16111|16112|16113|16113|16115|16117|71200|71201|101586|101587|101588|101589|101590|131807|131809|131811|131812|177286|177418|178021|190880|190880|191063|191930|208284|208285|208288|237020|237107|237317|237317|242442|255806|255807|255810|255815|255817|266004|268059|268166|269093|271215|273848|273848|325639|325640|325646|325648|325649|325653|325654|325657|335287|335289|335291|335292|335293|335300|335303|335305|335307|335309|335319|335320|335321|335322|335323|335325|341773|341774|341775|341779|341787|341788|341791|341795|341797|341803|341805|343259|343260|343262|343266|343269|343272|343273|343276|343282|343285|343286|343287|343287|343293|375212|401969|409651|415498|530041|530184|644749|688608|688615|797343|875411|875412|875413|875414|875415|875416|875417|875418|875419|875420|875421|875422|875423|875424|875425|875426|875427|875428|875429|875430|875431|875432|875433|875434|875435|875436|875437|875438|875439|875440|875441|875442|875443|875444|875445|876677|876678", + "upstreamId": "16111|16112|16113|16113|16115|16117|71200|71201|101586|101587|101588|101589|101590|131807|131809|131811|131812|177286|177418|178021|190880|190880|191063|191930|208284|208285|208288|237020|237107|237317|237317|242442|255806|255807|255810|255815|255817|266004|268059|268166|269093|271215|273848|273848|325639|325640|325646|325648|325649|325653|325654|325657|335287|335289|335291|335292|335293|335300|335303|335305|335307|335309|335319|335320|335321|335322|335323|335325|341773|341774|341775|341779|341787|341788|341791|341795|341797|341803|341805|343259|343260|343262|343266|343269|343272|343273|343276|343282|343285|343286|343287|343287|343293|375212|401969|409651|415498|530041|530184|644749|688608|688615|797343|875411|875412|875413|875414|875415|875416|875417|875418|875419|875420|875421|875422|875423|875424|875425|875426|875427|875428|875429|875430|875431|875432|875433|875434|875435|875436|875437|875438|875439|875440|875441|875442|875443|875444|875445|876677|876678", "text": "Meckel syndrome, type 5" }, { - "baseId": "16117", + "upstreamId": "16117", "text": "Retinitis pigmentosa in ciliopathies, modifier of" }, { - "baseId": "16117|16372|16376|16378|16381|16416|16422|16426|16869|16870|16872|17671|17675|17678|17679|18439|18443|18444|18548|18549|26998|27001|39735|39736|39892|71368|71372|71373|71377|71378|71379|90149|98623|98624|98626|98627|99374|101492|101493|101494|101495|101497|101498|101569|101570|101571|101572|101573|101574|101575|101576|101578|101579|101580|101582|101583|102031|102032|102062|102064|102066|102117|102118|102119|102402|102403|102404|102406|102407|102409|102410|105736|105739|105741|105746|105748|105749|105750|105753|106469|106470|106471|106738|131781|131783|131784|131787|131789|131790|131794|131801|132658|135259|135260|135261|136094|136095|136096|136097|136098|136099|136100|136101|136102|136103|136104|136105|136106|136107|140430|140431|140432|140433|152874|166167|166179|176932|176995|177011|177012|177013|177064|177086|177087|177143|177195|177218|177274|177275|177328|177349|177406|177407|177417|177571|177572|177610|177780|177881|177882|177883|177884|177885|177886|185958|186010|188781|188782|190668|190732|191062|191412|191413|191490|191568|191569|191570|191571|191574|191595|191726|191815|191822|191838|191844|191927|191928|191962|192029|192056|192150|192550|192691|192692|192769|192770|192771|192774|192938|192945|192989|192997|193137|193150|193156|193157|193193|193299|193627|193632|193792|193874|193875|193954|193955|193956|194205|194245|194246|194456|194735|194758|194813|194867|195042|195134|195418|195425|195426|195571|195605|195864|195865|196017|196029|196294|207045|207998|208003|212105|212106|212108|212109|212118|212119|212121|212122|212123|212287|212288|212289|212290|212656|213013|213014|213016|213192|213193|213503|214322|214325|214326|214327|214328|214329|214330|214335|214336|214337|214338|214340|215270|215459|221109|221110|221111|221112|221114|221116|221117|221358|221359|221360|221365|221366|221803|222267|222488|222489|226829|237104|237153|237156|238059|238061|238338|238339|238340|238341|238342|238343|238344|238354|238377|239057|239108|240436|240438|240439|240440|241226|241579|241580|241581|241582|242437|242438|242439|242617|243906|243907|243908|243909|243910|243911|243912|247084|250002|250003|250006|250008|250011|250087|250324|250325|250329|250332|250335|250337|250855|250857|250928|250930|250931|250932|250933|250934|250935|250936|250937|250938|250939|250944|250946|250948|250953|253235|253241|253242|253247|254740|254742|254760|254761|254762|254763|255742|264538|265418|265487|266212|266213|266590|266616|267000|267761|268040|268051|268559|268882|269236|269781|270185|270311|270776|270942|271014|271042|271099|271233|271239|271333|271349|271425|271582|272341|272410|272411|272606|272766|272959|272960|273216|273272|273564|273772|273785|273792|274111|274125|274214|274283|274311|274617|275140|275336|275337|275340|275342|275394|275431|275479|275514|275519|275528|280978|281536|281544|281551|281554|281560|281564|281578|281592|282229|282746|282761|282762|282778|282780|282783|282784|283018|283019|283022|283024|283025|283026|283040|283041|283060|283087|283088|283133|283158|283161|283553|283554|284715|284726|284730|288796|288805|288814|288821|289582|289587|289589|291965|292582|292583|292584|292586|292784|292789|292793|292795|292796|306008|306192|306205|306212|310312|310314|310316|315372|315595|315613|315616|315617|315621|315784|318585|318587|318602|318607|325335|325337|325641|325647|326805|326830|326833|326850|332974|332983|332990|332993|332994|334647|334649|334653|334658|334973|334992|334995|335008|341456|341459|341790|342955|342982|343298|360055|360113|361484|363660|364169|365832|365835|367191|367235|368222|372581|372585|373261|373475|373481|375447|375452|375454|389204|391373|391469|391503|393234|393751|393754|393759|396365|396652|396661|396782|399209|406118|408757|408759|408763|408764|408765|408768|408769|408770|408772|425527|426028|429461|429462|431772|433122|443008|443365|445093|445097|445099|448218|448220|448255|448260|448362|448383|448470|448544|448554|448755|448757|448813|448989|449094|449103|449109|451855|451862|452096|452190|452197|452199|452201|452203|452205|452309|452314|452317|458138|458669|458741|458743|458745|459177|462506|462513|462515|462516|462765|462769|463244|463251|463260|463263|463267|463268|463350|463355|463358|463360|465415|466452|466470|488263|488264|488341|488677|489043|489044|489186|489203|489294|489297|489298|489304|489361|489529|489555|489559|489564|490125|490213|490297|490655|490678|490684|490765|490790|490810|491014|491182|491223|491360|491412|491415|491589|491669|491760|491983|491997|492066|492074|492174|492185|492320|492399|492749|492789|492849|492853|493151|493373|493463|493743|493781|493938|493954|494208|496110|500529|504099|504663|504668|513323|514649|514650|515992|516055|516157|516292|516294|516306|516393|516396|516520|516603|516622|518899|518903|518930|519090|523817|523842|523843|523849|524117|524120|524121|524130|524414|524450|527372|527391|527394|527399|527405|527407|527409|527410|527670|527673|527675|527917|527929|527931|527940|527942|530109|536196|536612|539138|539148|539149|539155|553539|553550|557109|557328|557469|557488|557602|557647|558068|558701|558822|559279|559347|559349|559351|561210|561211|561213|562430|562440|562568|562618|562632|563264|565737|565744|567079|567083|567084|568142|568182|568185|568186|572093|572096|572100|582511|582794|583256|583704|584061|584237|584348|584405|584568|584630|584683|584746|584889|584912|584963|584973|585066|585125|585234|585277|585368|585392|585599|585858|586001|586003|586004|586108|586109|586278|586333|586423|586501|586741|586785|587156|587175|587205|587334|587373|587492|587556|587666|587816|587862|588092|588149|588198|588201|588242|588579|588678|588984|589270|589455|589706|589758|589759|589765|609863|622900|623936|628169|628170|628410|628411|628412|628798|628799|628800|630756|630757|630952|630953|630954|630955|630956|637550|637551|637552|637553|641414|641415|641416|641417|641418|641419|641420|641421|641422|641423|641424|641425|641426|641427|641428|641429|641430|641431|641432|641433|641434|641435|644686|650891|651877|651880|652345|652351|654523|655171|656190|667259|672202|672263|683376|683377|683378|683413|683526|683527|683540|684354|684355|684356|684357|684358|684359|684591|684593|685142|685384|685385|685386|685820|685824|685889|685891|685893|686280|686281|686282|686283|686284|686334|686335|687326|687328|688057|688058|688059|688061|688062|688063|688064|688065|688066|688067|688068|688069|688070|688072|688073|688075|688603|689668|689674|690055|690056|690652|690653|690707|690860|691309|692546|693293|693294|693295|693296|693297|693299|693875|693876|695056|695404|695585|696817|725297|725299|736793|738885|751289|753623|753624|753625|759040|760254|762354|769332|776130|777183|778845|784484|791285|796876|818725|818986|819028|819029|819030|819031|819032|819033|819034|819035|819313|819325|819327|820526|820527|824257|824258|824259|824260|824261|824262|824263|824264|824265|824266|824267|824268|824269|824270|824271|824272|824273|824274|824275|824276|824277|824278|824279|824280|824281|824282|824283|824284|824285|824286|824287|824288|824289|824290|824678|824679|824680|824681|824682|824683|824684|824685|824686|824687|824688|824689|825099|825100|825101|827323|827324|827325|827326|827327|827328|827329|827542|827543|827544|827545|827546|827547|827548|827549|827550|827551|827552|827553|827554|827555|827556|827557|827558|827559|827560|827561|827562|827563|827564|827565|835282|835283|835284|835285|835286|835287|835288|835289|835290|835291|835292|835293|835294|835295|835296|835297|835298|835299|835300|840342|840343|840344|840345|840346|840347|840348|840349|840350|840351|840352|840353|840354|840355|840356|840357|840358|840359|840360|840361|840362|840363|840364|840365|840366|840367|840368|840369|840370|840371|840372|840373|840374|840375|840376|840377|840378|840379|840380|840381|840382|840383|840384|840385|840386|840387|840388|840389|840390|840391|840392|840393|840394|840395|840396|840397|840398|840399|840400|843872|850808|850914|851017|851277|851279|851523|851525|851528|851959|852464|852501|852502|852506|852510|852702|856020|856758|856762|856766|856767|864667|864671|864672|864673|870502|870505|870508|870516|870517|875268|880842|888013|918482|920320|922120|922121|922122|922123|922124|922125|922126|922337|923050|923051|923052|923053|923054|923055|923056|923057|923058|923059|925306|925307|926752|926753|926754|926755|926756|926757|926758|926759|926760|926761|926762|926763|926764|926765|930605|930606|930607|930608|930609|930610|930611|930612|930613|930614|930615|930616|930617|930618|930619|930769|930770|930771|930772|930773|930774|930775|930910|930911|930912|930913|931691|931692|931693|931694|931695|931766|931767|931768|931769|931770|931771|931772|931773|931774|931775|934479|934480|934481|934482|934483|934484|934485|934486|934487|934488|936284|936285|936286|936287|936288|936289|936290|936291|936292|936293|936294|936295|936296|936297|936298|936299|939822|939840|939841|940275|940645|940662|940739|942039|942040|942041|942042|942043|942044|942045|942046|942047|942048|942049|942050|942051|942052|942053|942054|942055|942056|942196|942197|942198|942199|942200|942201|942202|942330|943258|943259|943260|943261|943262|943263|943264|943265|943266|943267|943327|943328|943329|943330|943331|943332|943333|943334|943335|943336|943337|943338|943339|943340|946278|946279|946280|946281|946282|948179|948180|948181|948182|948183|948184|948185|948186|948187|948188|948189|948190|948191|948192|948193|948194|948195|948196|948197|948198|948199|948200|948201|948202|948203|948204|948205|948206|948207|948208|948209|948210|948211|948212|948213|948214|948215|948216|949403|952475|952476|952477|952478|952479|952480|952481|952482|952483|952484|952485|952486|952487|952609|952610|952611|952612|952613|952614|952750|952751|952752|953299|953300|953301|953302|953303|953339|953340|955608|955609|955610|955611|955612|955613|955614|955615|955616|955617|956961|956962|956963|956964|956965|956966|956967|956968|956969|956970|956971|956972|956973|956974|956975|956976|956977|956978|956979|956980|956981|956982|956983|956984|956985|956986|956987|959566|959576|959577|959680|960061|960062|960063|960064|960793|965280", + "upstreamId": "16117|16372|16376|16378|16381|16416|16422|16426|16869|16870|16872|17671|17675|17678|17679|18439|18443|18444|18548|18549|26998|27001|39735|39736|39892|71368|71372|71373|71377|71378|71379|90149|98623|98624|98626|98627|99374|101492|101493|101494|101495|101497|101498|101569|101570|101571|101572|101573|101574|101575|101576|101578|101579|101580|101582|101583|102031|102032|102062|102064|102066|102117|102118|102119|102402|102403|102404|102406|102407|102409|102410|105736|105739|105741|105746|105748|105749|105750|105753|106469|106470|106471|106738|131781|131783|131784|131787|131789|131790|131794|131801|132658|135259|135260|135261|136094|136095|136096|136097|136098|136099|136100|136101|136102|136103|136104|136105|136106|136107|140430|140431|140432|140433|152874|166167|166179|176932|176995|177011|177012|177013|177064|177086|177087|177143|177195|177218|177274|177275|177328|177349|177406|177407|177417|177571|177572|177610|177780|177881|177882|177883|177884|177885|177886|185958|186010|188781|188782|190668|190732|191062|191412|191413|191490|191568|191569|191570|191571|191574|191595|191726|191815|191822|191838|191844|191927|191928|191962|192029|192056|192150|192550|192691|192692|192769|192770|192771|192774|192938|192945|192989|192997|193137|193150|193156|193157|193193|193299|193627|193632|193792|193874|193875|193954|193955|193956|194205|194245|194246|194456|194735|194758|194813|194867|195042|195134|195418|195425|195426|195571|195605|195864|195865|196017|196029|196294|207045|207998|208003|212105|212106|212108|212109|212118|212119|212121|212122|212123|212287|212288|212289|212290|212656|213013|213014|213016|213192|213193|213503|214322|214325|214326|214327|214328|214329|214330|214335|214336|214337|214338|214340|215270|215459|221109|221110|221111|221112|221114|221116|221117|221358|221359|221360|221365|221366|221803|222267|222488|222489|226829|237104|237153|237156|238059|238061|238338|238339|238340|238341|238342|238343|238344|238354|238377|239057|239108|240436|240438|240439|240440|241226|241579|241580|241581|241582|242437|242438|242439|242617|243906|243907|243908|243909|243910|243911|243912|247084|250002|250003|250006|250008|250011|250087|250324|250325|250329|250332|250335|250337|250855|250857|250928|250930|250931|250932|250933|250934|250935|250936|250937|250938|250939|250944|250946|250948|250953|253235|253241|253242|253247|254740|254742|254760|254761|254762|254763|255742|264538|265418|265487|266212|266213|266590|266616|267000|267761|268040|268051|268559|268882|269236|269781|270185|270311|270776|270942|271014|271042|271099|271233|271239|271333|271349|271425|271582|272341|272410|272411|272606|272766|272959|272960|273216|273272|273564|273772|273785|273792|274111|274125|274214|274283|274311|274617|275140|275336|275337|275340|275342|275394|275431|275479|275514|275519|275528|280978|281536|281544|281551|281554|281560|281564|281578|281592|282229|282746|282761|282762|282778|282780|282783|282784|283018|283019|283022|283024|283025|283026|283040|283041|283060|283087|283088|283133|283158|283161|283553|283554|284715|284726|284730|288796|288805|288814|288821|289582|289587|289589|291965|292582|292583|292584|292586|292784|292789|292793|292795|292796|306008|306192|306205|306212|310312|310314|310316|315372|315595|315613|315616|315617|315621|315784|318585|318587|318602|318607|325335|325337|325641|325647|326805|326830|326833|326850|332974|332983|332990|332993|332994|334647|334649|334653|334658|334973|334992|334995|335008|341456|341459|341790|342955|342982|343298|360055|360113|361484|363660|364169|365832|365835|367191|367235|368222|372581|372585|373261|373475|373481|375447|375452|375454|389204|391373|391469|391503|393234|393751|393754|393759|396365|396652|396661|396782|399209|406118|408757|408759|408763|408764|408765|408768|408769|408770|408772|425527|426028|429461|429462|431772|433122|443008|443365|445093|445097|445099|448218|448220|448255|448260|448362|448383|448470|448544|448554|448755|448757|448813|448989|449094|449103|449109|451855|451862|452096|452190|452197|452199|452201|452203|452205|452309|452314|452317|458138|458669|458741|458743|458745|459177|462506|462513|462515|462516|462765|462769|463244|463251|463260|463263|463267|463268|463350|463355|463358|463360|465415|466452|466470|488263|488264|488341|488677|489043|489044|489186|489203|489294|489297|489298|489304|489361|489529|489555|489559|489564|490125|490213|490297|490655|490678|490684|490765|490790|490810|491014|491182|491223|491360|491412|491415|491589|491669|491760|491983|491997|492066|492074|492174|492185|492320|492399|492749|492789|492849|492853|493151|493373|493463|493743|493781|493938|493954|494208|496110|500529|504099|504663|504668|513323|514649|514650|515992|516055|516157|516292|516294|516306|516393|516396|516520|516603|516622|518899|518903|518930|519090|523817|523842|523843|523849|524117|524120|524121|524130|524414|524450|527372|527391|527394|527399|527405|527407|527409|527410|527670|527673|527675|527917|527929|527931|527940|527942|530109|536196|536612|539138|539148|539149|539155|553539|553550|557109|557328|557469|557488|557602|557647|558068|558701|558822|559279|559347|559349|559351|561210|561211|561213|562430|562440|562568|562618|562632|563264|565737|565744|567079|567083|567084|568142|568182|568185|568186|572093|572096|572100|582511|582794|583256|583704|584061|584237|584348|584405|584568|584630|584683|584746|584889|584912|584963|584973|585066|585125|585234|585277|585368|585392|585599|585858|586001|586003|586004|586108|586109|586278|586333|586423|586501|586741|586785|587156|587175|587205|587334|587373|587492|587556|587666|587816|587862|588092|588149|588198|588201|588242|588579|588678|588984|589270|589455|589706|589758|589759|589765|609863|622900|623936|628169|628170|628410|628411|628412|628798|628799|628800|630756|630757|630952|630953|630954|630955|630956|637550|637551|637552|637553|641414|641415|641416|641417|641418|641419|641420|641421|641422|641423|641424|641425|641426|641427|641428|641429|641430|641431|641432|641433|641434|641435|644686|650891|651877|651880|652345|652351|654523|655171|656190|667259|672202|672263|683376|683377|683378|683413|683526|683527|683540|684354|684355|684356|684357|684358|684359|684591|684593|685142|685384|685385|685386|685820|685824|685889|685891|685893|686280|686281|686282|686283|686284|686334|686335|687326|687328|688057|688058|688059|688061|688062|688063|688064|688065|688066|688067|688068|688069|688070|688072|688073|688075|688603|689668|689674|690055|690056|690652|690653|690707|690860|691309|692546|693293|693294|693295|693296|693297|693299|693875|693876|695056|695404|695585|696817|725297|725299|736793|738885|751289|753623|753624|753625|759040|760254|762354|769332|776130|777183|778845|784484|791285|796876|818725|818986|819028|819029|819030|819031|819032|819033|819034|819035|819313|819325|819327|820526|820527|824257|824258|824259|824260|824261|824262|824263|824264|824265|824266|824267|824268|824269|824270|824271|824272|824273|824274|824275|824276|824277|824278|824279|824280|824281|824282|824283|824284|824285|824286|824287|824288|824289|824290|824678|824679|824680|824681|824682|824683|824684|824685|824686|824687|824688|824689|825099|825100|825101|827323|827324|827325|827326|827327|827328|827329|827542|827543|827544|827545|827546|827547|827548|827549|827550|827551|827552|827553|827554|827555|827556|827557|827558|827559|827560|827561|827562|827563|827564|827565|835282|835283|835284|835285|835286|835287|835288|835289|835290|835291|835292|835293|835294|835295|835296|835297|835298|835299|835300|840342|840343|840344|840345|840346|840347|840348|840349|840350|840351|840352|840353|840354|840355|840356|840357|840358|840359|840360|840361|840362|840363|840364|840365|840366|840367|840368|840369|840370|840371|840372|840373|840374|840375|840376|840377|840378|840379|840380|840381|840382|840383|840384|840385|840386|840387|840388|840389|840390|840391|840392|840393|840394|840395|840396|840397|840398|840399|840400|843872|850808|850914|851017|851277|851279|851523|851525|851528|851959|852464|852501|852502|852506|852510|852702|856020|856758|856762|856766|856767|864667|864671|864672|864673|870502|870505|870508|870516|870517|875268|880842|888013|918482|920320|922120|922121|922122|922123|922124|922125|922126|922337|923050|923051|923052|923053|923054|923055|923056|923057|923058|923059|925306|925307|926752|926753|926754|926755|926756|926757|926758|926759|926760|926761|926762|926763|926764|926765|930605|930606|930607|930608|930609|930610|930611|930612|930613|930614|930615|930616|930617|930618|930619|930769|930770|930771|930772|930773|930774|930775|930910|930911|930912|930913|931691|931692|931693|931694|931695|931766|931767|931768|931769|931770|931771|931772|931773|931774|931775|934479|934480|934481|934482|934483|934484|934485|934486|934487|934488|936284|936285|936286|936287|936288|936289|936290|936291|936292|936293|936294|936295|936296|936297|936298|936299|939822|939840|939841|940275|940645|940662|940739|942039|942040|942041|942042|942043|942044|942045|942046|942047|942048|942049|942050|942051|942052|942053|942054|942055|942056|942196|942197|942198|942199|942200|942201|942202|942330|943258|943259|943260|943261|943262|943263|943264|943265|943266|943267|943327|943328|943329|943330|943331|943332|943333|943334|943335|943336|943337|943338|943339|943340|946278|946279|946280|946281|946282|948179|948180|948181|948182|948183|948184|948185|948186|948187|948188|948189|948190|948191|948192|948193|948194|948195|948196|948197|948198|948199|948200|948201|948202|948203|948204|948205|948206|948207|948208|948209|948210|948211|948212|948213|948214|948215|948216|949403|952475|952476|952477|952478|952479|952480|952481|952482|952483|952484|952485|952486|952487|952609|952610|952611|952612|952613|952614|952750|952751|952752|953299|953300|953301|953302|953303|953339|953340|955608|955609|955610|955611|955612|955613|955614|955615|955616|955617|956961|956962|956963|956964|956965|956966|956967|956968|956969|956970|956971|956972|956973|956974|956975|956976|956977|956978|956979|956980|956981|956982|956983|956984|956985|956986|956987|959566|959576|959577|959680|960061|960062|960063|960064|960793|965280", "text": "Nephronophthisis" }, { - "baseId": "16117|101586|101587|101588|101589|101590|131807|131809|131811|131812|177286|177418|178021|190880|191930|208284|208285|208288|237020|237107|237317|242442|255806|255807|255810|255815|255817|266004|268059|268166|269093|271215|273848|325639|325640|325646|325648|325649|325653|325654|325657|335287|335289|335291|335292|335293|335300|335303|335305|335307|335309|335319|335320|335321|335322|335323|335325|341773|341774|341775|341779|341787|341788|341791|341795|341797|341803|341805|343259|343260|343262|343266|343269|343272|343273|343276|343282|343285|343286|343287|343293|375212|415498|530041|644749|688608|688615|797343|875411|875412|875413|875414|875415|875416|875417|875418|875419|875420|875421|875422|875423|875424|875425|875426|875427|875428|875429|875430|875431|875432|875433|875434|875435|875436|875437|875438|875439|875440|875441|875442|875443|875444|875445|876677|876678", + "upstreamId": "16117|101586|101587|101588|101589|101590|131807|131809|131811|131812|177286|177418|178021|190880|191930|208284|208285|208288|237020|237107|237317|242442|255806|255807|255810|255815|255817|266004|268059|268166|269093|271215|273848|325639|325640|325646|325648|325649|325653|325654|325657|335287|335289|335291|335292|335293|335300|335303|335305|335307|335309|335319|335320|335321|335322|335323|335325|341773|341774|341775|341779|341787|341788|341791|341795|341797|341803|341805|343259|343260|343262|343266|343269|343272|343273|343276|343282|343285|343286|343287|343293|375212|415498|530041|644749|688608|688615|797343|875411|875412|875413|875414|875415|875416|875417|875418|875419|875420|875421|875422|875423|875424|875425|875426|875427|875428|875429|875430|875431|875432|875433|875434|875435|875436|875437|875438|875439|875440|875441|875442|875443|875444|875445|876677|876678", "text": "Nephronophthisis 8" }, { - "baseId": "16118|16119", + "upstreamId": "16118|16119", "text": "COACH SYNDROME 3" }, { - "baseId": "16120|16121|308847|308848|308851|308852|313447|313450|313452|313470|313483|313493|319267|319276|319281|319878|319879|319887|319891|319896|319901|319902|319920|525188|620338|620815|790917|902435|902436|902437|902438|902439|902440|902441|902442|902443|902444|902445|902446|902447|902448|902450|902451|902452|902453|902454|902455|902456|902457|902458|902459|902460|903440|964743|964744", + "upstreamId": "16120|16121|308847|308848|308851|308852|313447|313450|313452|313470|313483|313493|319267|319276|319281|319878|319879|319887|319891|319896|319901|319902|319920|525188|620338|620815|790917|902435|902436|902437|902438|902439|902440|902441|902442|902443|902444|902445|902446|902447|902448|902450|902451|902452|902453|902454|902455|902456|902457|902458|902459|902460|903440|964743|964744", "text": "Phosphoserine aminotransferase deficiency" }, { - "baseId": "16122|142238|142239|178173|178174|178175|178176|178177|270762|302069|302073|302083|302084|302089|302090|302096|302097|302098|305247|305248|305254|305255|305256|309999|310001|310002|310003|310018|310019|310020|310031|310084|310092|310093|310094|310105|310106|310107|710846|730473|800378|897593|897594|897595|897596|897597|897598|897599|897600|897601|897602|897603|897604|897605|897606|900327|900328|900329|900330|900331", + "upstreamId": "16122|142238|142239|178173|178174|178175|178176|178177|270762|302069|302073|302083|302084|302089|302090|302096|302097|302098|305247|305248|305254|305255|305256|309999|310001|310002|310003|310018|310019|310020|310031|310084|310092|310093|310094|310105|310106|310107|710846|730473|800378|897593|897594|897595|897596|897597|897598|897599|897600|897601|897602|897603|897604|897605|897606|900327|900328|900329|900330|900331", "text": "Premature ovarian failure 5" }, { - "baseId": "16123|27735|27736|27737|38861|428764|539140", + "upstreamId": "16123|27735|27736|27737|38861|428764|539140", "text": "Autoimmune thyroid disease 3" }, { - "baseId": "16124|16125|534064|848305", + "upstreamId": "16124|16125|534064|848305", "text": "Cataract 31 multiple types" }, { - "baseId": "16126|16127|16128|16129|16130|16131|16132|39813|321430|321433|337274|339228|339279|339300|513724|654757", + "upstreamId": "16126|16127|16128|16129|16130|16131|16132|39813|321430|321433|337274|339228|339279|339300|513724|654757", "text": "Proliferative vasculopathy and hydranencephaly-hydrocephaly syndrome" }, { - "baseId": "16127|16130|33457|33458|33459|39732|101714|101715|101716|101717|134548|134549|188854|278799|278801|278808|278809|278820|278821|278830|278831|278836|278838|278844|278846|278848|278849|278852|278857|278858|278863|278867|278870|278871|278873|278877|278879|278880|278965|278966|278967|278979|278980|278988|278994|279013|279015|279016|279017|279018|279022|279023|279024|279025|279026|279030|279032|279033|279034|279037|279039|280153|280164|280183|280186|280203|280209|280223|280225|280231|280232|280251|280253|280265|280266|280275|280283|280285|280287|280288|280292|280293|280294|280296|280297|280298|280300|280303|280304|280305|280306|280307|280309|280310|280314|280315|280317|280320|280321|280325|280329|280336|280342|280359|280360|280361|280369|280371|280372|280376|280377|321408|321413|321416|321418|330643|330644|330647|330660|330665|337284|337288|337301|337302|337303|339235|339238|339246|339249|339254|339259|339268|339271|339273|339274|339278|339294|353094|361654|440444|442710|481580|508766|512887|620491|620492|620493|702995|789915|794562|858898|861614|863473|863474|863475|863476|863477|863478|863479|863480|863481|863482|863483|863484|863485|863486|863487|863488|863489|863490|863491|863492|863493|863494|863495|863496|863497|863498|863499|863500|863501|863502|863503|863504|863505|863506|863507|863508|863509|863510|863511|863512|865108|872674|872675|872676|872677|872678|872679|872680|872681|872682|872683|872684|872685|872686|872687|872688|872689|872690|872691|872692|872693|872694|872695|872696|872697|876451|876452", + "upstreamId": "16127|16130|33457|33458|33459|39732|101714|101715|101716|101717|134548|134549|188854|278799|278801|278808|278809|278820|278821|278830|278831|278836|278838|278844|278846|278848|278849|278852|278857|278858|278863|278867|278870|278871|278873|278877|278879|278880|278965|278966|278967|278979|278980|278988|278994|279013|279015|279016|279017|279018|279022|279023|279024|279025|279026|279030|279032|279033|279034|279037|279039|280153|280164|280183|280186|280203|280209|280223|280225|280231|280232|280251|280253|280265|280266|280275|280283|280285|280287|280288|280292|280293|280294|280296|280297|280298|280300|280303|280304|280305|280306|280307|280309|280310|280314|280315|280317|280320|280321|280325|280329|280336|280342|280359|280360|280361|280369|280371|280372|280376|280377|321408|321413|321416|321418|330643|330644|330647|330660|330665|337284|337288|337301|337302|337303|339235|339238|339246|339249|339254|339259|339268|339271|339273|339274|339278|339294|353094|361654|440444|442710|481580|508766|512887|620491|620492|620493|702995|789915|794562|858898|861614|863473|863474|863475|863476|863477|863478|863479|863480|863481|863482|863483|863484|863485|863486|863487|863488|863489|863490|863491|863492|863493|863494|863495|863496|863497|863498|863499|863500|863501|863502|863503|863504|863505|863506|863507|863508|863509|863510|863511|863512|865108|872674|872675|872676|872677|872678|872679|872680|872681|872682|872683|872684|872685|872686|872687|872688|872689|872690|872691|872692|872693|872694|872695|872696|872697|876451|876452", "text": "Posterior column ataxia-retinitis pigmentosa syndrome" }, { - "baseId": "16133|16137|16138|16139|16140|16141|16142|16145|16147|186640|186643|193447|425390|623127|623128|623172|623173|623174|623175", + "upstreamId": "16133|16137|16138|16139|16140|16141|16142|16145|16147|186640|186643|193447|425390|623127|623128|623172|623173|623174|623175", "text": "Glycogen storage disease IIIa" }, { - "baseId": "16133|16134|16135|16137|16138|16139|16142|16144|16145|16147|34067|34068|186637|186638|186639|186640|186641|186642|186643|186644|186645|186646|186647|192257|192258|193022|193447|193830|194847|195593|196194|198606|250043|250044|250045|250048|250049|250050|250052|250054|250055|250056|250057|250058|250059|250060|250062|250066|250067|250069|250071|250073|260780|260781|265466|265570|268647|269620|271341|271713|273867|281404|281411|281412|281415|281416|281422|281432|281433|281435|281436|282055|282056|282063|282064|282066|282067|282070|282071|282074|282083|282087|282090|282093|282095|282098|283366|283367|283383|283384|283393|283396|283397|283398|283403|283406|283410|283421|283426|283428|283524|283529|283534|283535|283536|283537|283543|283544|283545|283552|283564|283565|283570|283573|357187|357188|357189|357190|357191|357192|357193|357194|357195|357196|357197|357198|357199|357200|357201|357202|357203|357204|357205|357206|357207|357208|357209|357210|357211|357212|357213|357214|357215|357216|357217|357218|357219|357220|357221|357222|357223|357224|361161|361162|364070|365270|365296|365298|365466|365481|365482|365484|365563|365564|405277|413239|413240|421264|425390|433353|438829|446966|448282|448283|448285|448289|448292|448297|448315|448321|448327|448332|448337|448340|448342|448349|448351|448359|448407|448410|448412|448414|448418|448419|448421|448424|448425|448429|448431|448434|448435|448436|448438|448441|448443|448445|448446|448447|448448|448449|448450|448451|448452|448454|448455|448457|448458|448460|448468|448469|448473|448475|448482|448485|448486|448487|448491|448496|448497|448498|448501|448502|448503|448505|448507|448512|448514|448515|448519|448520|448521|488548|492311|498632|498816|498870|498878|513017|513245|516108|516110|516119|516121|516123|516126|516127|516128|516130|516134|516136|516140|516141|516142|516144|516146|516148|516149|516150|516154|516155|516159|516161|516163|516164|516166|516168|516169|516172|516173|516174|516176|516177|516178|516180|516181|516183|516185|516187|516190|516191|516192|516197|516199|516258|516259|516261|516264|516267|516280|516281|516282|516284|516287|536600|541355|541357|541361|541364|541367|541368|541373|541374|541376|541378|541379|541380|541383|541384|541386|541388|541392|541393|541395|541396|541403|541405|541406|541408|541409|541417|541418|541419|541421|541422|541423|541424|541427|541428|541430|541431|541433|541434|541435|541439|541440|541441|541442|541443|541444|541445|541449|541451|541452|541453|541457|541462|541464|541467|541468|541469|541473|541474|541475|541481|541484|541486|541487|541488|549539|556533|557390|557392|557394|557396|557398|557400|557402|557404|557406|557408|557410|557412|557433|557435|557437|557439|557441|557443|557445|557447|557449|557451|557453|557455|557457|557459|557461|557463|557465|558048|558050|558052|558054|558056|558058|558060|558062|558064|558607|558609|558611|558613|558615|558617|558619|558621|558623|558625|583082|620022|620023|620730|621092|621093|628304|628305|628306|628307|628308|628309|628310|628311|628312|628313|628314|628315|628316|628317|628318|628319|628320|628321|628322|628323|628324|628325|628326|628327|628328|628329|628330|628331|628332|628333|628334|628335|628336|628337|628338|628339|628340|628341|628342|628343|628344|628345|628346|628347|628348|628349|628350|628351|628352|628353|628354|628355|628356|628357|628358|628359|628360|628361|650549|650598|650703|655131|690682|690683|690684|690685|695064|696929|707618|707619|707620|719156|719157|719158|732681|732682|746706|746707|746710|746711|746712|746713|758955|759094|762123|762125|762128|777117|777152|778847|780790|780792|780795|780796|780797|787031|787182|790021|790022|790023|790024|790025|790026|790027|792666|792678|801601|819009|819010|819011|819012|819013|824567|824568|824569|824570|824571|824572|824573|824574|824575|824576|824577|824578|824579|824580|824581|824582|824583|824584|824585|824586|824587|824588|824589|824590|824591|824592|824593|824594|824595|824596|824597|824598|824599|824600|824601|824602|824603|824604|824605|824606|824607|824608|824609|850828|851075|851329|858983|864907|864908|864909|864910|864911|864912|864913|864914|864915|864916|864917|864918|864919|864920|864921|864922|864923|864924|864925|864926|864927|864928|864929|864930|864931|864932|864933|864934|864935|864936|864937|864938|865225|865226|916830|922183|922184|922185|922186|922187|922188|922189|922190|922191|922192|922193|922194|922195|922196|922197|922198|922199|922200|922201|922202|930718|930719|930720|930721|930722|930723|930724|930725|930726|930727|930728|930729|930730|930731|930732|930733|930734|930735|930736|930737|930738|930739|930740|930741|939834|939835|939836|939837|940651|940652|942156|942157|942158|942159|942160|942161|942162|942163|942164|942165|942166|942167|942168|942169|942170|942171|942172|942173|952566|952567|952568|952569|952570|952571|952572|952573|952574|952575|952576|952577|952578|952579|952580|952581|952582|952583|952584|952585|952586|952587|952588|952589|952590|952591|952592|952593|952594|952595|952596|952597|952598|959574|960437|960438|960439|960440|960441|960442|961826|961827|961828|964805|969542|971686|971687|971688|971689|971690|971691|971692|971693|971694|971695|971696|971697|971698|971699|971700|971701|971702|971703|971704|971705|971706|971707|971708|977565|977566|977567|977568|977569|977570|977571|977572|977573", + "upstreamId": "16133|16134|16135|16137|16138|16139|16142|16144|16145|16147|34067|34068|186637|186638|186639|186640|186641|186642|186643|186644|186645|186646|186647|192257|192258|193022|193447|193830|194847|195593|196194|198606|250043|250044|250045|250048|250049|250050|250052|250054|250055|250056|250057|250058|250059|250060|250062|250066|250067|250069|250071|250073|260780|260781|265466|265570|268647|269620|271341|271713|273867|281404|281411|281412|281415|281416|281422|281432|281433|281435|281436|282055|282056|282063|282064|282066|282067|282070|282071|282074|282083|282087|282090|282093|282095|282098|283366|283367|283383|283384|283393|283396|283397|283398|283403|283406|283410|283421|283426|283428|283524|283529|283534|283535|283536|283537|283543|283544|283545|283552|283564|283565|283570|283573|357187|357188|357189|357190|357191|357192|357193|357194|357195|357196|357197|357198|357199|357200|357201|357202|357203|357204|357205|357206|357207|357208|357209|357210|357211|357212|357213|357214|357215|357216|357217|357218|357219|357220|357221|357222|357223|357224|361161|361162|364070|365270|365296|365298|365466|365481|365482|365484|365563|365564|405277|413239|413240|421264|425390|433353|438829|446966|448282|448283|448285|448289|448292|448297|448315|448321|448327|448332|448337|448340|448342|448349|448351|448359|448407|448410|448412|448414|448418|448419|448421|448424|448425|448429|448431|448434|448435|448436|448438|448441|448443|448445|448446|448447|448448|448449|448450|448451|448452|448454|448455|448457|448458|448460|448468|448469|448473|448475|448482|448485|448486|448487|448491|448496|448497|448498|448501|448502|448503|448505|448507|448512|448514|448515|448519|448520|448521|488548|492311|498632|498816|498870|498878|513017|513245|516108|516110|516119|516121|516123|516126|516127|516128|516130|516134|516136|516140|516141|516142|516144|516146|516148|516149|516150|516154|516155|516159|516161|516163|516164|516166|516168|516169|516172|516173|516174|516176|516177|516178|516180|516181|516183|516185|516187|516190|516191|516192|516197|516199|516258|516259|516261|516264|516267|516280|516281|516282|516284|516287|536600|541355|541357|541361|541364|541367|541368|541373|541374|541376|541378|541379|541380|541383|541384|541386|541388|541392|541393|541395|541396|541403|541405|541406|541408|541409|541417|541418|541419|541421|541422|541423|541424|541427|541428|541430|541431|541433|541434|541435|541439|541440|541441|541442|541443|541444|541445|541449|541451|541452|541453|541457|541462|541464|541467|541468|541469|541473|541474|541475|541481|541484|541486|541487|541488|549539|556533|557390|557392|557394|557396|557398|557400|557402|557404|557406|557408|557410|557412|557433|557435|557437|557439|557441|557443|557445|557447|557449|557451|557453|557455|557457|557459|557461|557463|557465|558048|558050|558052|558054|558056|558058|558060|558062|558064|558607|558609|558611|558613|558615|558617|558619|558621|558623|558625|583082|620022|620023|620730|621092|621093|628304|628305|628306|628307|628308|628309|628310|628311|628312|628313|628314|628315|628316|628317|628318|628319|628320|628321|628322|628323|628324|628325|628326|628327|628328|628329|628330|628331|628332|628333|628334|628335|628336|628337|628338|628339|628340|628341|628342|628343|628344|628345|628346|628347|628348|628349|628350|628351|628352|628353|628354|628355|628356|628357|628358|628359|628360|628361|650549|650598|650703|655131|690682|690683|690684|690685|695064|696929|707618|707619|707620|719156|719157|719158|732681|732682|746706|746707|746710|746711|746712|746713|758955|759094|762123|762125|762128|777117|777152|778847|780790|780792|780795|780796|780797|787031|787182|790021|790022|790023|790024|790025|790026|790027|792666|792678|801601|819009|819010|819011|819012|819013|824567|824568|824569|824570|824571|824572|824573|824574|824575|824576|824577|824578|824579|824580|824581|824582|824583|824584|824585|824586|824587|824588|824589|824590|824591|824592|824593|824594|824595|824596|824597|824598|824599|824600|824601|824602|824603|824604|824605|824606|824607|824608|824609|850828|851075|851329|858983|864907|864908|864909|864910|864911|864912|864913|864914|864915|864916|864917|864918|864919|864920|864921|864922|864923|864924|864925|864926|864927|864928|864929|864930|864931|864932|864933|864934|864935|864936|864937|864938|865225|865226|916830|922183|922184|922185|922186|922187|922188|922189|922190|922191|922192|922193|922194|922195|922196|922197|922198|922199|922200|922201|922202|930718|930719|930720|930721|930722|930723|930724|930725|930726|930727|930728|930729|930730|930731|930732|930733|930734|930735|930736|930737|930738|930739|930740|930741|939834|939835|939836|939837|940651|940652|942156|942157|942158|942159|942160|942161|942162|942163|942164|942165|942166|942167|942168|942169|942170|942171|942172|942173|952566|952567|952568|952569|952570|952571|952572|952573|952574|952575|952576|952577|952578|952579|952580|952581|952582|952583|952584|952585|952586|952587|952588|952589|952590|952591|952592|952593|952594|952595|952596|952597|952598|959574|960437|960438|960439|960440|960441|960442|961826|961827|961828|964805|969542|971686|971687|971688|971689|971690|971691|971692|971693|971694|971695|971696|971697|971698|971699|971700|971701|971702|971703|971704|971705|971706|971707|971708|977565|977566|977567|977568|977569|977570|977571|977572|977573", "text": "Glycogen storage disease type III" }, { - "baseId": "16134|16135|16138|16143|16144|192258", + "upstreamId": "16134|16135|16138|16143|16144|192258", "text": "Glycogen storage disease IIIb" }, { - "baseId": "16146", + "upstreamId": "16146", "text": "Glycogen storage disease IIIc" }, { - "baseId": "16148|16148|16149|16150|16151|16152|16153|16154|16155|16156|49692|49693|49694|49695|49696|49697|49698|49699|49702|49703|49704|49705|49706|49707|49708|49709|49710|49711|49712|49713|49714|49715|49717|49718|49719|49720|49721|49722|49723|49724|49725|49727|49728|49729|49730|49731|49732|49733|49734|49735|49736|49737|49738|49739|49741|49742|49743|49744|49746|49747|49748|49749|49750|49751|49752|49753|49754|49755|49756|49757|49758|49759|49760|49761|49763|49764|49765|49766|49767|49768|49769|49770|49771|49772|49773|49774|49775|49777|49778|49779|49780|49781|49782|49783|49784|49785|49786|49788|49790|49791|49792|49823|49827|135810|135811|135812|135813|135814|186198|186199|186200|186201|186202|186203|186204|191839|199801|208197|208198|213128|213129|213130|213131|213132|213133|213134|213135|213136|214790|214791|222419|222420|222421|222422|222423|222424|222425|222426|227366|237049|237525|237526|242045|242046|242047|242048|242049|242050|242051|242052|242053|242054|242056|242057|266495|268255|268998|275329|322569|322571|322572|322573|322579|322580|322583|332009|332010|332017|332021|332024|332028|332037|332038|332040|332041|332045|332047|332054|332055|332057|332058|338989|338991|338993|338994|338999|339000|339004|339006|339012|339013|339015|339019|339019|339021|340572|340573|340576|340579|340580|340581|340582|340583|340587|340588|340592|360265|360970|360971|363868|363887|373433|373435|374085|374516|376425|389161|400026|400031|400093|400100|400101|400104|400109|400111|400113|400119|400120|400256|400263|400270|400273|400281|400285|400287|400532|400581|400583|400585|400592|400594|400600|400601|400603|400605|400608|400608|400609|400613|400615|400852|400855|400902|400905|400907|400911|400916|400918|400920|400921|400928|400929|409235|409240|413401|415420|426099|439035|441743|441746|441749|441752|464230|464234|464237|464240|464245|464247|464254|464259|464266|464268|464270|464271|464274|464278|464287|464517|464772|464781|464783|464787|464789|464794|464797|464801|464803|464805|464810|464811|464814|465023|465027|465030|465032|465035|465035|465039|465042|465043|465044|465046|465049|465050|465051|465052|465056|465059|465061|465061|465068|465071|465072|465073|465075|465077|465081|465083|465085|465088|465091|465093|465094|465098|465100|465103|465104|465109|465113|465114|465120|465122|465125|482069|482070|482070|491234|495776|504782|512942|512943|512980|513452|528600|528602|528799|528805|528807|528815|528818|528820|528823|528824|528826|528829|528830|528832|528833|528835|528837|528840|528841|528843|528848|528853|528855|528859|528862|528863|528864|528865|528868|528869|528872|528875|528876|528877|528879|528887|528895|529185|529186|529190|529192|529194|529202|529205|529207|529220|529222|529226|529235|529236|529240|529242|529244|529314|529315|529317|529319|529322|529323|529325|529329|529333|529335|529342|529344|529355|529356|529365|529369|529370|529371|529378|529384|529385|529387|529391|529397|529401|529409|529411|529413|535706|552181|552181|552182|566869|567020|567021|567024|567028|567029|567043|567044|567046|567058|567059|567064|567067|567068|567075|567076|567081|567085|567086|568796|568798|568800|568802|568803|568811|568819|568820|568823|568832|568836|568855|568856|568858|569203|569354|569358|569369|569370|569372|569374|569374|569380|569382|569384|569390|569391|569395|569396|569401|569402|569404|569407|569408|569412|569413|569416|569417|573237|573243|573246|573252|573254|573255|573256|573263|573267|573270|573271|573273|573280|573281|573284|573288|573291|573300|573304|573310|573311|573317|611795|613011|620515|620868|643188|643189|643190|643191|643192|643193|643194|643195|643196|643197|643198|643199|643200|643201|643202|643203|643204|643205|643206|643207|643208|643209|643210|643211|643212|643213|643214|643215|643216|643217|643218|643219|643220|643221|643222|643223|643224|643225|643226|643227|643228|643229|643230|643231|643232|643233|643234|643235|643236|643237|643238|643239|643240|643241|643242|643243|643244|643245|643246|643247|643248|643249|643250|643251|643252|643253|643254|643255|643256|643257|643258|643259|643260|643261|643262|643263|643264|643265|643266|643267|643268|643269|643270|643271|643272|643273|643274|643275|643276|643277|643278|643279|643280|652410|652520|652561|652666|652735|652740|652743|652744|684534|684535|684536|684537|684538|684539|684540|684541|688417|688419|688423|688428|688429|688431|688433|688434|688435|690099|690100|690102|690104|690105|693676|693678|693682|693683|693684|695643|726088|754470|770161|770167|770169|770172|770173|776077|784930|784934|784937|787951|789082|789129|791450|791451|791452|791453|792796|802202|820699|820700|820702|820703|820704|820705|820706|842328|842329|842330|842331|842332|842333|842334|842335|842336|842337|842338|842339|842340|842341|842342|842343|842344|842345|842346|842347|842348|842349|842350|842351|842352|842353|842354|842355|842356|842357|842358|842359|842360|842361|842362|842363|842364|842365|842366|842367|842368|842369|842370|842371|842372|842373|842374|842375|842376|842377|842378|842379|842380|842381|842382|842383|842384|842385|842386|842387|842388|842389|842390|842391|842392|842393|842394|842395|842396|842397|842398|842399|842400|842401|842402|842403|842404|842405|842406|842407|842408|842409|842410|842411|842412|851615|851617|852037|852039|852588|852589|852590|852765|858411|873552|873553|873554|873555|873556|873557|873558|873559|873560|873561|873562|873563|873564|873565|873566|873567|873568|873569|873570|873571|873572|873573|873574|873575|873576|873577|873578|873579|873580|873581|873582|873583|873584|873585|873586|876515|876516|876517|876518|919570|920343|920344|927314|927315|927316|927317|927318|927319|927320|927321|927322|927323|927324|927325|927326|927327|927328|927329|927330|927331|927332|927333|927334|927335|927336|927337|927338|927339|927340|927341|936924|936925|936926|936927|936928|936929|936930|936931|936932|936933|936934|936935|936936|936937|936938|936939|936940|936941|936942|936943|936944|936945|936946|936947|936948|936949|936950|936951|936952|936953|941088|941089|948884|948885|948886|948887|948888|948889|948890|948891|948892|948893|948894|948895|948896|948897|948898|948899|948900|948901|948902|948903|948904|948905|948906|948907|957424|957425|957426|957427|957428|957429|957430|957431|957432|957433|957434|957435|957436|957437|957438|960111|960112|961324|963074|963170|963171|964420|966054", + "upstreamId": "16148|16148|16149|16150|16151|16152|16153|16154|16155|16156|49692|49693|49694|49695|49696|49697|49698|49699|49702|49703|49704|49705|49706|49707|49708|49709|49710|49711|49712|49713|49714|49715|49717|49718|49719|49720|49721|49722|49723|49724|49725|49727|49728|49729|49730|49731|49732|49733|49734|49735|49736|49737|49738|49739|49741|49742|49743|49744|49746|49747|49748|49749|49750|49751|49752|49753|49754|49755|49756|49757|49758|49759|49760|49761|49763|49764|49765|49766|49767|49768|49769|49770|49771|49772|49773|49774|49775|49777|49778|49779|49780|49781|49782|49783|49784|49785|49786|49788|49790|49791|49792|49823|49827|135810|135811|135812|135813|135814|186198|186199|186200|186201|186202|186203|186204|191839|199801|208197|208198|213128|213129|213130|213131|213132|213133|213134|213135|213136|214790|214791|222419|222420|222421|222422|222423|222424|222425|222426|227366|237049|237525|237526|242045|242046|242047|242048|242049|242050|242051|242052|242053|242054|242056|242057|266495|268255|268998|275329|322569|322571|322572|322573|322579|322580|322583|332009|332010|332017|332021|332024|332028|332037|332038|332040|332041|332045|332047|332054|332055|332057|332058|338989|338991|338993|338994|338999|339000|339004|339006|339012|339013|339015|339019|339019|339021|340572|340573|340576|340579|340580|340581|340582|340583|340587|340588|340592|360265|360970|360971|363868|363887|373433|373435|374085|374516|376425|389161|400026|400031|400093|400100|400101|400104|400109|400111|400113|400119|400120|400256|400263|400270|400273|400281|400285|400287|400532|400581|400583|400585|400592|400594|400600|400601|400603|400605|400608|400608|400609|400613|400615|400852|400855|400902|400905|400907|400911|400916|400918|400920|400921|400928|400929|409235|409240|413401|415420|426099|439035|441743|441746|441749|441752|464230|464234|464237|464240|464245|464247|464254|464259|464266|464268|464270|464271|464274|464278|464287|464517|464772|464781|464783|464787|464789|464794|464797|464801|464803|464805|464810|464811|464814|465023|465027|465030|465032|465035|465035|465039|465042|465043|465044|465046|465049|465050|465051|465052|465056|465059|465061|465061|465068|465071|465072|465073|465075|465077|465081|465083|465085|465088|465091|465093|465094|465098|465100|465103|465104|465109|465113|465114|465120|465122|465125|482069|482070|482070|491234|495776|504782|512942|512943|512980|513452|528600|528602|528799|528805|528807|528815|528818|528820|528823|528824|528826|528829|528830|528832|528833|528835|528837|528840|528841|528843|528848|528853|528855|528859|528862|528863|528864|528865|528868|528869|528872|528875|528876|528877|528879|528887|528895|529185|529186|529190|529192|529194|529202|529205|529207|529220|529222|529226|529235|529236|529240|529242|529244|529314|529315|529317|529319|529322|529323|529325|529329|529333|529335|529342|529344|529355|529356|529365|529369|529370|529371|529378|529384|529385|529387|529391|529397|529401|529409|529411|529413|535706|552181|552181|552182|566869|567020|567021|567024|567028|567029|567043|567044|567046|567058|567059|567064|567067|567068|567075|567076|567081|567085|567086|568796|568798|568800|568802|568803|568811|568819|568820|568823|568832|568836|568855|568856|568858|569203|569354|569358|569369|569370|569372|569374|569374|569380|569382|569384|569390|569391|569395|569396|569401|569402|569404|569407|569408|569412|569413|569416|569417|573237|573243|573246|573252|573254|573255|573256|573263|573267|573270|573271|573273|573280|573281|573284|573288|573291|573300|573304|573310|573311|573317|611795|613011|620515|620868|643188|643189|643190|643191|643192|643193|643194|643195|643196|643197|643198|643199|643200|643201|643202|643203|643204|643205|643206|643207|643208|643209|643210|643211|643212|643213|643214|643215|643216|643217|643218|643219|643220|643221|643222|643223|643224|643225|643226|643227|643228|643229|643230|643231|643232|643233|643234|643235|643236|643237|643238|643239|643240|643241|643242|643243|643244|643245|643246|643247|643248|643249|643250|643251|643252|643253|643254|643255|643256|643257|643258|643259|643260|643261|643262|643263|643264|643265|643266|643267|643268|643269|643270|643271|643272|643273|643274|643275|643276|643277|643278|643279|643280|652410|652520|652561|652666|652735|652740|652743|652744|684534|684535|684536|684537|684538|684539|684540|684541|688417|688419|688423|688428|688429|688431|688433|688434|688435|690099|690100|690102|690104|690105|693676|693678|693682|693683|693684|695643|726088|754470|770161|770167|770169|770172|770173|776077|784930|784934|784937|787951|789082|789129|791450|791451|791452|791453|792796|802202|820699|820700|820702|820703|820704|820705|820706|842328|842329|842330|842331|842332|842333|842334|842335|842336|842337|842338|842339|842340|842341|842342|842343|842344|842345|842346|842347|842348|842349|842350|842351|842352|842353|842354|842355|842356|842357|842358|842359|842360|842361|842362|842363|842364|842365|842366|842367|842368|842369|842370|842371|842372|842373|842374|842375|842376|842377|842378|842379|842380|842381|842382|842383|842384|842385|842386|842387|842388|842389|842390|842391|842392|842393|842394|842395|842396|842397|842398|842399|842400|842401|842402|842403|842404|842405|842406|842407|842408|842409|842410|842411|842412|851615|851617|852037|852039|852588|852589|852590|852765|858411|873552|873553|873554|873555|873556|873557|873558|873559|873560|873561|873562|873563|873564|873565|873566|873567|873568|873569|873570|873571|873572|873573|873574|873575|873576|873577|873578|873579|873580|873581|873582|873583|873584|873585|873586|876515|876516|876517|876518|919570|920343|920344|927314|927315|927316|927317|927318|927319|927320|927321|927322|927323|927324|927325|927326|927327|927328|927329|927330|927331|927332|927333|927334|927335|927336|927337|927338|927339|927340|927341|936924|936925|936926|936927|936928|936929|936930|936931|936932|936933|936934|936935|936936|936937|936938|936939|936940|936941|936942|936943|936944|936945|936946|936947|936948|936949|936950|936951|936952|936953|941088|941089|948884|948885|948886|948887|948888|948889|948890|948891|948892|948893|948894|948895|948896|948897|948898|948899|948900|948901|948902|948903|948904|948905|948906|948907|957424|957425|957426|957427|957428|957429|957430|957431|957432|957433|957434|957435|957436|957437|957438|960111|960112|961324|963074|963170|963171|964420|966054", "text": "Spastic paraplegia 11, autosomal recessive" }, { - "baseId": "16148|16148|16149|16150|49728|214790|214791|237525|237526|339019|400608|465035|465061|482070|569374|792796", + "upstreamId": "16148|16148|16149|16150|49728|214790|214791|237525|237526|339019|400608|465035|465061|482070|569374|792796", "text": "Charcot-Marie-Tooth disease, axonal type 2X" }, { - "baseId": "16150|16151|49711|49718|49757|49782|339019|374516|400608|465035|465061|482070|552181|552182|569374|792796|861398|861399|861400", + "upstreamId": "16150|16151|49711|49718|49757|49782|339019|374516|400608|465035|465061|482070|552181|552182|569374|792796|861398|861399|861400", "text": "Amyotrophic lateral sclerosis type 5" }, { - "baseId": "16151|17562|21144|21146|45791|49924|49929|51184|135812|181460|181467|185949|190660|190870|205789|211769|212511|236923|266622|284698|285646|358179|375819|389217|392272|401365|402131|411550|411551|411552|411553|411554|411555|411556|411557|411558|411559|411560|411561|411562|411563|411564|411565|411566|411567|411568|411569|411570|411571|411572|411573|411574|411575|411576|411577|411578|411579|411580|411581|411582|411583|411585|411586|411588|411589|411590|411591|411592|411593|411594|411595|411596|411597|411598|464396|464398|464989|465100|465172|465178|465183|465193|465255|497082|528928|529032|529036|529373|529374|529379|529542|567194|567197|568580|573406|643420|643421|643422|682752|693694|693695|693696|693700|693701|693702|693703|695650|695652|714479|739671|815844|842546|918407|927376|936994|936995|936996|948947|957457", + "upstreamId": "16151|17562|21144|21146|45791|49924|49929|51184|135812|181460|181467|185949|190660|190870|205789|211769|212511|236923|266622|284698|285646|358179|375819|389217|392272|401365|402131|411550|411551|411552|411553|411554|411555|411556|411557|411558|411559|411560|411561|411562|411563|411564|411565|411566|411567|411568|411569|411570|411571|411572|411573|411574|411575|411576|411577|411578|411579|411580|411581|411582|411583|411585|411586|411588|411589|411590|411591|411592|411593|411594|411595|411596|411597|411598|464396|464398|464989|465100|465172|465178|465183|465193|465255|497082|528928|529032|529036|529373|529374|529379|529542|567194|567197|568580|573406|643420|643421|643422|682752|693694|693695|693696|693700|693701|693702|693703|695650|695652|714479|739671|815844|842546|918407|927376|936994|936995|936996|948947|957457", "text": "Hereditary spastic paraplegia" }, { - "baseId": "16157|16158|16159|16160|16161|265917|290283|290284|290285|290290|290291|290295|291116|291117|291118|291128|291136|291140|291141|291142|294419|294428|294431|294437|294438|294446|294758|294759|294768|294783|294793|294807|294827|367543|367565|500253|552073|620125|620126|698078|792736|888873|888874|888875|888876|888877|888878|888879|888880|888881|888882|888883|888884|888885|888886|888887|888888|888889|891640|891641", + "upstreamId": "16157|16158|16159|16160|16161|265917|290283|290284|290285|290290|290291|290295|291116|291117|291118|291128|291136|291140|291141|291142|294419|294428|294431|294437|294438|294446|294758|294759|294768|294783|294793|294807|294827|367543|367565|500253|552073|620125|620126|698078|792736|888873|888874|888875|888876|888877|888878|888879|888880|888881|888882|888883|888884|888885|888886|888887|888888|888889|891640|891641", "text": "Anemia, sideroblastic, 2, pyridoxine-refractory" }, { - "baseId": "16158|620124", + "upstreamId": "16158|620124", "text": "SLC25A38-Related Disorders" }, { - "baseId": "16162|16163|16164|16165|16166|16167|16168|433925|516104|628249|628250|628251|730021|732567|762062|799223|824388|824389|952508|952509", + "upstreamId": "16162|16163|16164|16165|16166|16167|16168|433925|516104|628249|628250|628251|730021|732567|762062|799223|824388|824389|952508|952509", "text": "Schneckenbecken dysplasia" }, { - "baseId": "16169", + "upstreamId": "16169", "text": "Inflammatory bowel disease 10, susceptibility to" }, { - "baseId": "16170|16171|39807|39808|39809|101542|101544|101545|106536|177679|229664|229665|229666|229667|229668|229669|229671|229672|229674|307025|307026|307027|311138|311144|316734|316738|316741|316744|316748|316751|316752|316754|317139|317140|317141|317143|317157|317159|364144|369915|370416|370418|370683|372286|372310|444372|444373|444375|458412|458414|458874|458876|458878|458882|458919|458923|459410|459412|459417|459418|459421|496504|496937|524064|524069|524072|524355|524363|524577|524581|524583|524586|524622|562830|562832|562845|563540|563552|565339|565568|565570|568543|568546|568547|568549|637769|637770|637771|637772|637773|637774|637775|637776|637777|637778|637779|637780|655900|692589|692590|692591|692592|736921|751429|751430|767150|767152|767154|783295|820075|835554|835555|835556|835557|835558|835559|835560|835561|835562|835563|835564|835565|835566|901164|901165|901166|901167|901168|901169|901170|901171|901172|925404|925405|934565|934566|934567|934568|934569|946395|946396|955703|955704|955705|955706|955707", + "upstreamId": "16170|16171|39807|39808|39809|101542|101544|101545|106536|177679|229664|229665|229666|229667|229668|229669|229671|229672|229674|307025|307026|307027|311138|311144|316734|316738|316741|316744|316748|316751|316752|316754|317139|317140|317141|317143|317157|317159|364144|369915|370416|370418|370683|372286|372310|444372|444373|444375|458412|458414|458874|458876|458878|458882|458919|458923|459410|459412|459417|459418|459421|496504|496937|524064|524069|524072|524355|524363|524577|524581|524583|524586|524622|562830|562832|562845|563540|563552|565339|565568|565570|568543|568546|568547|568549|637769|637770|637771|637772|637773|637774|637775|637776|637777|637778|637779|637780|655900|692589|692590|692591|692592|736921|751429|751430|767150|767152|767154|783295|820075|835554|835555|835556|835557|835558|835559|835560|835561|835562|835563|835564|835565|835566|901164|901165|901166|901167|901168|901169|901170|901171|901172|925404|925405|934565|934566|934567|934568|934569|946395|946396|955703|955704|955705|955706|955707", "text": "Congenital disorder of glycosylation type 1M" }, { - "baseId": "16172|16173|16174|16175|16176|16177|16178|16179|16180|16181|48341|48591|48592|94345|191592|255359|255360|271580|323347|323348|323353|323356|323358|323376|323379|323382|323383|332999|333003|333008|333021|333022|333028|333029|333032|333035|333039|333041|333044|333046|333047|339868|339869|339872|339873|339876|339877|339880|339881|339882|339883|341281|341282|341283|341287|341288|341291|431508|439522|464530|464537|465167|465174|465305|465420|573538|587548|703324|703326|703329|703331|714597|726240|754665|778195|785010|874139|874140|874141|874142|874143|874144|874145|874146|874147|874148|874149|874150|874151|874152|874153|874154|874155|874156|874157|874158|874159|874160|876567|876568|876569|876570|876571|903605|919595|919596|937073|937074|940330|941095|949012|960121|973038|973039", + "upstreamId": "16172|16173|16174|16175|16176|16177|16178|16179|16180|16181|48341|48591|48592|94345|191592|255359|255360|271580|323347|323348|323353|323356|323358|323376|323379|323382|323383|332999|333003|333008|333021|333022|333028|333029|333032|333035|333039|333041|333044|333046|333047|339868|339869|339872|339873|339876|339877|339880|339881|339882|339883|341281|341282|341283|341287|341288|341291|431508|439522|464530|464537|465167|465174|465305|465420|573538|587548|703324|703326|703329|703331|714597|726240|754665|778195|785010|874139|874140|874141|874142|874143|874144|874145|874146|874147|874148|874149|874150|874151|874152|874153|874154|874155|874156|874157|874158|874159|874160|876567|876568|876569|876570|876571|903605|919595|919596|937073|937074|940330|941095|949012|960121|973038|973039", "text": "Matthew-Wood syndrome" }, { - "baseId": "16182|313115|313119|319168|319170|319174|319177|325309|325310|325311|326158|326167|326173|326176|326183|326188|545814|712698|724288|783902|978866|978867|978868|978869|978870|978871|978872|978873|978874|978875|978876", + "upstreamId": "16182|313115|313119|319168|319170|319174|319177|325309|325310|325311|326158|326167|326173|326176|326183|326188|545814|712698|724288|783902|978866|978867|978868|978869|978870|978871|978872|978873|978874|978875|978876", "text": "Hydrolethalus syndrome" }, { - "baseId": "16182|313120|545808|545811|545814|546109|546111|546161|546165|546435|546437|546439", + "upstreamId": "16182|313120|545808|545811|545814|546109|546111|546161|546165|546435|546437|546439", "text": "Hydrolethalus syndrome 1" }, { - "baseId": "16183|16184|16185|185756|188107|205049|205050|213970|237274|243978|366235|366274|366276|366277|366800|405524|421351|481398|481399|499680|499696|629237|629238|629239|629240|677411|730094|743857|789112|952868|961231|961232|961752|961753|961754|961755|961756", + "upstreamId": "16183|16184|16185|185756|188107|205049|205050|213970|237274|243978|366235|366274|366276|366277|366800|405524|421351|481398|481399|499680|499696|629237|629238|629239|629240|677411|730094|743857|789112|952868|961231|961232|961752|961753|961754|961755|961756", "text": "Beta-hydroxyisobutyryl-CoA deacylase deficiency" }, { - "baseId": "16186|16187|16188|16189|16190|102398|106441|106442|176959|177222|177507|177508|177509|177510|186021|192577|212353|212354|212355|221433|221434|251323|251324|251325|251326|251327|251329|251330|265833|265834|292197|292198|292203|292204|292209|292211|292219|292220|293631|293632|293634|293637|293643|293647|296969|296970|296971|296972|296974|296977|296978|296980|296984|296985|357327|428271|428272|428273|438279|453263|520007|543041|543046|543048|543050|543051|543057|543058|543060|543070|543257|543262|543273|543274|543287|543298|543300|543302|543304|543307|543322|543324|543327|543330|543334|543342|543346|543350|543353|543355|543357|543358|543360|543363|543367|543369|543371|543373|543375|543384|543386|543387|551531|615888|620147|620148|631913|683620|683621|686492|686495|691508|698361|764292|828732|828734|828735|828739|828744|856311|890077|890078|890079|890080|890081|890082|890083|890084|890085|890086|890087|962699|978012|978013|978014|978015", + "upstreamId": "16186|16187|16188|16189|16190|102398|106441|106442|176959|177222|177507|177508|177509|177510|186021|192577|212353|212354|212355|221433|221434|251323|251324|251325|251326|251327|251329|251330|265833|265834|292197|292198|292203|292204|292209|292211|292219|292220|293631|293632|293634|293637|293643|293647|296969|296970|296971|296972|296974|296977|296978|296980|296984|296985|357327|428271|428272|428273|438279|453263|520007|543041|543046|543048|543050|543051|543057|543058|543060|543070|543257|543262|543273|543274|543287|543298|543300|543302|543304|543307|543322|543324|543327|543330|543334|543342|543346|543350|543353|543355|543357|543358|543360|543363|543367|543369|543371|543373|543375|543384|543386|543387|551531|615888|620147|620148|631913|683620|683621|686492|686495|691508|698361|764292|828732|828734|828735|828739|828744|856311|890077|890078|890079|890080|890081|890082|890083|890084|890085|890086|890087|962699|978012|978013|978014|978015", "text": "Bardet-Biedl syndrome 12" }, { - "baseId": "16186|17586|28369|39169|165814|165815|188428|207171|207172|207173|226235|226236|406053|514069|514070", + "upstreamId": "16186|17586|28369|39169|165814|165815|188428|207171|207172|207173|226235|226236|406053|514069|514070", "text": "Abnormality of cardiovascular system morphology" }, { - "baseId": "16186|203840|203843|260323|263250|263309|360933|360934", + "upstreamId": "16186|203840|203843|260323|263250|263309|360933|360934", "text": "Inability to walk" }, { - "baseId": "16186|28855|28860|39217|259861|259864|361188|380284|428715|514122|590738|590739|625969|625969|625971|625972", + "upstreamId": "16186|28855|28860|39217|259861|259864|361188|380284|428715|514122|590738|590739|625969|625969|625971|625972", "text": "Postaxial polydactyly type A1" }, { - "baseId": "16186|18513|24396|98778|188865|360815|360816|360817|361392|362165|415139|513965|513966|514039|514150|801185|801225|980736", + "upstreamId": "16186|18513|24396|98778|188865|360815|360816|360817|361392|362165|415139|513965|513966|514039|514150|801185|801225|980736", "text": "Visual impairment" }, { - "baseId": "16191|16192|16193|16194|16195|16196|16197|16198|187120|254568|254569|254570|254572|254580|254581|254585|254586|254587|317279|317280|317286|317287|317293|317294|325024|325025|325033|325036|325043|325044|325045|331177|331185|331195|331196|331198|331199|331205|332695|332696|332701|373089|408669|434767|492451|504496|527182|547012|565485|566840|566841|576154|588750|609833|620443|641141|641142|641143|641144|656166|667102|713545|725111|738657|738659|738660|753393|760200|760202|769133|769135|769136|769138|775900|784395|787788|787806|787812|796775|799684|839964|839965|839966|869907|869908|869909|869910|869911|869912|869913|869914|869915|869916|869917|869918|869919|936135|936136|941033|941034|956886|960787|979283|979284|979285|979286|979287|981802|981803|981804|981805|981806", + "upstreamId": "16191|16192|16193|16194|16195|16196|16197|16198|187120|254568|254569|254570|254572|254580|254581|254585|254586|254587|317279|317280|317286|317287|317293|317294|325024|325025|325033|325036|325043|325044|325045|331177|331185|331195|331196|331198|331199|331205|332695|332696|332701|373089|408669|434767|492451|504496|527182|547012|565485|566840|566841|576154|588750|609833|620443|641141|641142|641143|641144|656166|667102|713545|725111|738657|738659|738660|753393|760200|760202|769133|769135|769136|769138|775900|784395|787788|787806|787812|796775|799684|839964|839965|839966|869907|869908|869909|869910|869911|869912|869913|869914|869915|869916|869917|869918|869919|936135|936136|941033|941034|956886|960787|979283|979284|979285|979286|979287|981802|981803|981804|981805|981806", "text": "Glycogen storage disease, type VII" }, { - "baseId": "16200|16200|16201|16202|47611|76621|134822|134822|134823|134823|186088|186088|189035|192927|192927|194463|212626|215376|221753|221753|240231|273689|304107|304116|304117|304117|304122|304124|304124|304132|307707|307707|307717|307719|307719|307723|307730|307730|307733|307735|307735|307738|307738|307739|312730|312745|312746|312746|312753|312759|312760|312761|312864|312865|312866|312868|312872|312875|312877|312877|312884|312885|312886|312886|312893|312899|312900|361439|361439|369691|371499|395886|396283|396284|425775|425775|441168|457793|457807|457807|457808|457808|458179|458181|486611|486611|489373|522977|522984|522989|523617|561941|562349|562351|564606|564611|564614|564620|564623|564630|567355|567356|567360|567360|622349|622385|622411|622417|622448|636577|636578|636579|636580|636581|636582|683972|683973|683974|683975|683976|683976|685233|685234|685236|687175|687181|687182|692345|722840|782989|796116|819944|834108|834109|834110|834111|834111|834112|834113|898806|898807|898808|898809|898810|898811|898812|898813|898814|898815|898816|898817|898818|898819|898820|898821|898822|900436|900437|900438|925008|925009|925010|925011|934087|934088|945849|955287", + "upstreamId": "16200|16200|16201|16202|47611|76621|134822|134822|134823|134823|186088|186088|189035|192927|192927|194463|212626|215376|221753|221753|240231|273689|304107|304116|304117|304117|304122|304124|304124|304132|307707|307707|307717|307719|307719|307723|307730|307730|307733|307735|307735|307738|307738|307739|312730|312745|312746|312746|312753|312759|312760|312761|312864|312865|312866|312868|312872|312875|312877|312877|312884|312885|312886|312886|312893|312899|312900|361439|361439|369691|371499|395886|396283|396284|425775|425775|441168|457793|457807|457807|457808|457808|458179|458181|486611|486611|489373|522977|522984|522989|523617|561941|562349|562351|564606|564611|564614|564620|564623|564630|567355|567356|567360|567360|622349|622385|622411|622417|622448|636577|636578|636579|636580|636581|636582|683972|683973|683974|683975|683976|683976|685233|685234|685236|687175|687181|687182|692345|722840|782989|796116|819944|834108|834109|834110|834111|834111|834112|834113|898806|898807|898808|898809|898810|898811|898812|898813|898814|898815|898816|898817|898818|898819|898820|898821|898822|900436|900437|900438|925008|925009|925010|925011|934087|934088|945849|955287", "text": "Hereditary spastic paraplegia 8" }, { - "baseId": "16200|97556|214760|214761|361439|396283|457793|458179|522977|522989|523617|561941|562349|562351|564606|564611|564614|564620|564623|564630|567355|567356|621019|636577|636579|636580|636581|636582|790780|970873", + "upstreamId": "16200|97556|214760|214761|361439|396283|457793|458179|522977|522989|523617|561941|562349|562351|564606|564611|564614|564620|564623|564630|567355|567356|621019|636577|636579|636580|636581|636582|790780|970873", "text": "Ritscher-Schinzel syndrome 1" }, { - "baseId": "16203", + "upstreamId": "16203", "text": "FACTOR XII (WASHINGTON D.C.)" }, { - "baseId": "16204", + "upstreamId": "16204", "text": "FACTOR XII (LOCARNO)" }, { - "baseId": "16205|16206|16207|16208|16209|227284|251868|251869|297104|297110|297117|297118|297132|297134|299039|299040|299041|299042|299043|299067|299070|303255|303259|303260|303268|303269|303284|303290|303292|303301|303307|303308|303438|303439|303440|303444|303445|353691|353692|893997|893998|893999|894000|894001|894002|894003|894004|894005|896080|896081|896082|896083|896084", + "upstreamId": "16205|16206|16207|16208|16209|227284|251868|251869|297104|297110|297117|297118|297132|297134|299039|299040|299041|299042|299043|299067|299070|303255|303259|303260|303268|303269|303284|303290|303292|303301|303307|303308|303438|303439|303440|303444|303445|353691|353692|893997|893998|893999|894000|894001|894002|894003|894004|894005|896080|896081|896082|896083|896084", "text": "Factor XII deficiency disease" }, { - "baseId": "16205|251868|297104|297110|299039|299040|299041|299042|303255|303259|303260|303268|303269|303435|303438", + "upstreamId": "16205|251868|297104|297110|299039|299040|299041|299042|303255|303259|303260|303268|303269|303435|303438", "text": "Nephrolithiasis/osteoporosis, hypophosphatemic" }, { - "baseId": "16205", + "upstreamId": "16205", "text": "F12-Related Disorders" }, { - "baseId": "16206", + "upstreamId": "16206", "text": "FACTOR XII POLYMORPHISM" }, { - "baseId": "16206|16207|16208|16208|16209|251868|251869|297117|297118|297132|297134|299041|299042|299043|299067|299070|303268|303269|303284|303290|303292|303301|303307|303308|303439|303440|303444|303445|390679|435195|700335|893997|893998|893999|894000|894001|894002|894003|894004|894005|896080|896081|896082|896083|896084|967291|971506|971507|971508|971509|971510", + "upstreamId": "16206|16207|16208|16208|16209|251868|251869|297117|297118|297132|297134|299041|299042|299043|299067|299070|303268|303269|303284|303290|303292|303301|303307|303308|303439|303440|303444|303445|390679|435195|700335|893997|893998|893999|894000|894001|894002|894003|894004|894005|896080|896081|896082|896083|896084|967291|971506|971507|971508|971509|971510", "text": "Hereditary angioedema type 3" }, { - "baseId": "16207", + "upstreamId": "16207", "text": "FACTOR XII (TENRI)" }, { - "baseId": "16208|251868|297104|297110|299039|299040|299041|299042|303255|303259|303260|303268|303269|303438|314325|353691|353692|581232", + "upstreamId": "16208|251868|297104|297110|299039|299040|299041|299042|303255|303259|303260|303268|303269|303438|314325|353691|353692|581232", "text": "Hereditary angioneurotic edema" }, { - "baseId": "16209|362153|417648|677237|677238|677239", + "upstreamId": "16209|362153|417648|677237|677238|677239", "text": "Angioedema" }, { - "baseId": "16209", + "upstreamId": "16209", "text": "Urticaria (disease)" }, { - "baseId": "16209|27320|168041|168042|168043|168044|168045|168046|168047|168048|168049|168050|168051|168052|206950|206951|206952", + "upstreamId": "16209|27320|168041|168042|168043|168044|168045|168046|168047|168048|168049|168050|168051|168052|206950|206951|206952", "text": "Hyperbilirubinemia" }, { - "baseId": "16209|35796|223747|250588|360836|360862|360987|360988|360989|360993|513923|514037|622024|622025|622026|622027", + "upstreamId": "16209|35796|223747|250588|360836|360862|360987|360988|360989|360993|513923|514037|622024|622025|622026|622027", "text": "Hypertensive disorder" }, { - "baseId": "16210|16212|16213|16214|16215|16216|16217|16218|16219|16220|16221|16222|16223|16224|16225|16226|44641|44645|44648|44649|44651|44653|44655|71453|71453|71454|71455|71456|71457|71458|88099|237358|304470|304472|304478|304479|304480|304485|304487|304491|304492|304495|304508|304509|304510|304511|304516|304518|304519|304520|304527|304528|304541|304542|308223|308224|308249|308254|308256|308261|308264|308270|308280|308281|308283|308284|308285|313236|313242|313245|313247|313248|313270|313277|313278|313281|313283|313285|313286|313297|313327|313328|313332|313333|313335|313338|313339|313341|313342|313343|313351|313359|313369|313381|313384|313398|313400|313404|428801|441176|441178|441179|513068|513069|544374|544381|544384|544387|544390|544392|544394|544396|544398|544651|544654|544659|544660|544661|544665|544673|544674|544676|544677|544678|544681|544685|544686|544688|544693|544694|544696|544696|544703|544705|544710|544712|544716|544718|544732|544735|544737|544738|544740|544741|544743|620294|695381|899026|899027|899028|899029|899030|899031|899032|899033|899034|899035|899036|899037|899038|899039|899040|899041|899042|899043|899044|899045|899046|899047|899048|899049|899050|899051|899052|899053|899054|899055|899056|899057|899058|899059|899060|899061|899062|899063|900452|900453|961817|961818|972009|972010|972011|983570|983571", + "upstreamId": "16210|16212|16213|16214|16215|16216|16217|16218|16219|16220|16221|16222|16223|16224|16225|16226|44641|44645|44648|44649|44651|44653|44655|71453|71453|71454|71455|71456|71457|71458|88099|237358|304470|304472|304478|304479|304480|304485|304487|304491|304492|304495|304508|304509|304510|304511|304516|304518|304519|304520|304527|304528|304541|304542|308223|308224|308249|308254|308256|308261|308264|308270|308280|308281|308283|308284|308285|313236|313242|313245|313247|313248|313270|313277|313278|313281|313283|313285|313286|313297|313327|313328|313332|313333|313335|313338|313339|313341|313342|313343|313351|313359|313369|313381|313384|313398|313400|313404|428801|441176|441178|441179|513068|513069|544374|544381|544384|544387|544390|544392|544394|544396|544398|544651|544654|544659|544660|544661|544665|544673|544674|544676|544677|544678|544681|544685|544686|544688|544693|544694|544696|544696|544703|544705|544710|544712|544716|544718|544732|544735|544737|544738|544740|544741|544743|620294|695381|899026|899027|899028|899029|899030|899031|899032|899033|899034|899035|899036|899037|899038|899039|899040|899041|899042|899043|899044|899045|899046|899047|899048|899049|899050|899051|899052|899053|899054|899055|899056|899057|899058|899059|899060|899061|899062|899063|900452|900453|961817|961818|972009|972010|972011|983570|983571", "text": "Deficiency of steroid 11-beta-monooxygenase" }, { - "baseId": "16210|16211|31916|44641|44645|44649|44651|44653|71453|304470|304472|304478|304479|304480|304484|304485|304487|304491|304492|304495|304508|304509|304510|304511|304516|304518|304519|304520|304527|304528|304541|304542|304547|304548|304552|304553|304554|304555|304569|304570|304571|304572|304573|304577|304580|304581|304583|304593|304594|304596|304598|304602|304605|308223|308224|308249|308254|308256|308261|308264|308270|308280|308281|308283|308284|308285|308289|308296|308310|308312|308315|308316|308321|308322|308323|313236|313241|313242|313245|313247|313248|313270|313277|313278|313281|313283|313285|313286|313297|313327|313328|313332|313333|313334|313335|313338|313339|313341|313342|313343|313344|313345|313346|313347|313348|313349|313350|313351|313355|313359|313361|313362|313369|313381|313384|313398|313400|313404|313407|313411|313418|313425|313428|313433|313445|313446|313448|313449|313454|313455|313456|313457|313462|313464|313467|313479|353825|428801|544674|544678|544696|620294|695381|711339|722896|750943|750948|766574|783007|899026|899027|899028|899029|899030|899031|899032|899033|899034|899035|899036|899037|899038|899039|899040|899041|899042|899043|899044|899045|899046|899047|899048|899049|899050|899051|899052|899053|899054|899055|899056|899057|899058|899059|899060|899061|899062|899063|899064|899065|899066|899067|899068|899069|899070|899071|899072|899073|899074|899075|899076|899077|899078|899079|899080|899081|899082|899083|899084|899085|899086|899087|900452|900453|900454|900455|919141|920251", + "upstreamId": "16210|16211|31916|44641|44645|44649|44651|44653|71453|304470|304472|304478|304479|304480|304484|304485|304487|304491|304492|304495|304508|304509|304510|304511|304516|304518|304519|304520|304527|304528|304541|304542|304547|304548|304552|304553|304554|304555|304569|304570|304571|304572|304573|304577|304580|304581|304583|304593|304594|304596|304598|304602|304605|308223|308224|308249|308254|308256|308261|308264|308270|308280|308281|308283|308284|308285|308289|308296|308310|308312|308315|308316|308321|308322|308323|313236|313241|313242|313245|313247|313248|313270|313277|313278|313281|313283|313285|313286|313297|313327|313328|313332|313333|313334|313335|313338|313339|313341|313342|313343|313344|313345|313346|313347|313348|313349|313350|313351|313355|313359|313361|313362|313369|313381|313384|313398|313400|313404|313407|313411|313418|313425|313428|313433|313445|313446|313448|313449|313454|313455|313456|313457|313462|313464|313467|313479|353825|428801|544674|544678|544696|620294|695381|711339|722896|750943|750948|766574|783007|899026|899027|899028|899029|899030|899031|899032|899033|899034|899035|899036|899037|899038|899039|899040|899041|899042|899043|899044|899045|899046|899047|899048|899049|899050|899051|899052|899053|899054|899055|899056|899057|899058|899059|899060|899061|899062|899063|899064|899065|899066|899067|899068|899069|899070|899071|899072|899073|899074|899075|899076|899077|899078|899079|899080|899081|899082|899083|899084|899085|899086|899087|900452|900453|900454|900455|919141|920251", "text": "Hyperaldosteronism, familial, type I" }, { - "baseId": "16218|16225|27193|44641|44642|44643|44644|44646|44647|44648|44649|44650|44651|44652|44653|44654|44655|44656|44657|44658|44659|44660|276415|276799|304484|308905|309342|313241|313334|314024|314138|314160|314161|319911|320450|975788", + "upstreamId": "16218|16225|27193|44641|44642|44643|44644|44646|44647|44648|44649|44650|44651|44652|44653|44654|44655|44656|44657|44658|44659|44660|276415|276799|304484|308905|309342|313241|313334|314024|314138|314160|314161|319911|320450|975788", "text": "Congenital adrenal hyperplasia" }, { - "baseId": "16227|45727|152813", + "upstreamId": "16227|45727|152813", "text": "Retinitis pigmentosa 36" }, { - "baseId": "16228", + "upstreamId": "16228", "text": "Coronary artery spasm 3, susceptibility to" }, { - "baseId": "16229|16230|16231|16232|16233|38590|39802|39803|39804|360853|514082", + "upstreamId": "16229|16230|16231|16232|16233|38590|39802|39803|39804|360853|514082", "text": "Anonychia" }, { - "baseId": "16234|16235|16236|16237|53012|53013|53016|174282|174283|174422|192270|229303|229307|271525|275022|297985|297986|297987|297991|300184|300185|300187|300190|300193|300194|300195|300201|304395|304402|304403|304409|304720|304725|304741|304746|304748|404768|496825|894616|894617|894618|894619|894620|894621|894622|894623|894624|894625|894626|894627|894628|896126", + "upstreamId": "16234|16235|16236|16237|53012|53013|53016|174282|174283|174422|192270|229303|229307|271525|275022|297985|297986|297987|297991|300184|300185|300187|300190|300193|300194|300195|300201|304395|304402|304403|304409|304720|304725|304741|304746|304748|404768|496825|894616|894617|894618|894619|894620|894621|894622|894623|894624|894625|894626|894627|894628|896126", "text": "Deafness, autosomal recessive 49" }, { - "baseId": "16237", + "upstreamId": "16237", "text": "Deafness, neurosensory, autosomal recessive 49" }, { - "baseId": "16239|16240|211198|513281", + "upstreamId": "16239|16240|211198|513281", "text": "Coenzyme Q10 deficiency, primary, 3" }, { - "baseId": "16241|16242|16243|16244|16245|16246|16247|16248|16249|16250|253866|253867|253868|253869|253870|253871|253872|264435|268603|311254|311258|311263|311270|311271|311276|311281|311293|316667|316689|316690|316692|316693|316699|316710|316711|316724|316727|316742|316745|316746|316747|316749|316750|316762|316765|316770|316772|316775|322697|322698|322716|322718|322719|322735|322741|322748|322750|322751|322753|322755|322759|322764|322765|323404|323406|323415|323418|323419|323429|323430|323431|323432|323433|359871|407916|407917|415233|421802|425217|425218|460173|460972|525437|525521|525524|525662|525664|525798|563966|564749|566512|566516|566520|569772|569774|639182|639183|639184|701448|837334|837335|837336|837337|837338|866353|866354|866355|866356|866357|866358|866359|866360|866361|866362|866363|866364|866365|866366|866367|866368|866369|866370|866371|866372|866373|866374|866375|866376|866377|866378|866379|866380|866381|868514|868515|868516|925943|935190|959946", + "upstreamId": "16241|16242|16243|16244|16245|16246|16247|16248|16249|16250|253866|253867|253868|253869|253870|253871|253872|264435|268603|311254|311258|311263|311270|311271|311276|311281|311293|316667|316689|316690|316692|316693|316699|316710|316711|316724|316727|316742|316745|316746|316747|316749|316750|316762|316765|316770|316772|316775|322697|322698|322716|322718|322719|322735|322741|322748|322750|322751|322753|322755|322759|322764|322765|323404|323406|323415|323418|323419|323429|323430|323431|323432|323433|359871|407916|407917|415233|421802|425217|425218|460173|460972|525437|525521|525524|525662|525664|525798|563966|564749|566512|566516|566520|569772|569774|639182|639183|639184|701448|837334|837335|837336|837337|837338|866353|866354|866355|866356|866357|866358|866359|866360|866361|866362|866363|866364|866365|866366|866367|866368|866369|866370|866371|866372|866373|866374|866375|866376|866377|866378|866379|866380|866381|868514|868515|868516|925943|935190|959946", "text": "Hepatic methionine adenosyltransferase deficiency" }, { - "baseId": "16251|21188|30977|30993|30995|30999|138212|336004|336005|336007|336014|336016|336017|336021|336026|336027|336030|336035|336044|336045|336051|336052|336060|336069|336070|336074|336075|336076|336086|336088|336091|345757|345767|345770|345777|345781|345782|345785|345787|345790|345794|345805|345806|345808|345819|345821|345822|345831|350232|350234|350238|350240|350242|350244|350245|350246|350247|350250|350251|350254|350255|350257|350258|350261|350262|350265|350266|350269|350270|350273|350276|350278|351284|351287|351288|351291|351293|351297|351298|351301|351302|351305|351306|361065|610611|613921|742476|861666|886402|886403|886404|886405|886406|886407|886408|886409|886410|886411|886412|886413|886414|886415|886416|886417|886418|886419|886420|886421|886422|886423|886424|886425|886426|886427|886428|886429|886430|886431|886432|886433|886434|886435|886436|886437|886438|886439|886440|886441|886442|919922|919923|920083|920111|966169|971151", + "upstreamId": "16251|21188|30977|30993|30995|30999|138212|336004|336005|336007|336014|336016|336017|336021|336026|336027|336030|336035|336044|336045|336051|336052|336060|336069|336070|336074|336075|336076|336086|336088|336091|345757|345767|345770|345777|345781|345782|345785|345787|345790|345794|345805|345806|345808|345819|345821|345822|345831|350232|350234|350238|350240|350242|350244|350245|350246|350247|350250|350251|350254|350255|350257|350258|350261|350262|350265|350266|350269|350270|350273|350276|350278|351284|351287|351288|351291|351293|351297|351298|351301|351302|351305|351306|361065|610611|613921|742476|861666|886402|886403|886404|886405|886406|886407|886408|886409|886410|886411|886412|886413|886414|886415|886416|886417|886418|886419|886420|886421|886422|886423|886424|886425|886426|886427|886428|886429|886430|886431|886432|886433|886434|886435|886436|886437|886438|886439|886440|886441|886442|919922|919923|920083|920111|966169|971151", "text": "Pseudohypoparathyroidism type 1B" }, { - "baseId": "16252", + "upstreamId": "16252", "text": "Memory quantitative trait locus" }, { - "baseId": "16253|16254|16255|16256|34577|34578|166128|283866|302509|302514|302515|302520|302523|302525|302529|302533|302538|302539|302544|302545|302546|302547|302551|302553|305782|305783|305792|305794|305816|305818|305836|305845|305847|305849|305876|305881|305883|305884|305886|305887|305888|305898|305901|305902|305903|305918|305920|305923|305930|310584|310585|310591|310597|310598|310601|310605|310608|310616|310620|310621|310628|310629|310634|310638|310639|310647|310648|310649|310652|310821|310823|310824|310828|310836|310840|310861|310863|310872|310876|310888|310894|310896|310898|310900|310913|364075|421629|425747|457036|457671|522844|522846|561146|561865|622887|687036|687037|687038|687039|692215|692216|700003|736078|782834|782836|833493|897872|897873|897874|897875|897876|897877|897878|897879|897880|897881|897882|897883|897884|897885|897886|897887|897888|897889|897890|897891|897892|897893|897894|897895|897896|897897|897898|897899|897900|897901|897902|897903|897904|897905|897906|897907|897908|897909|900345|900346|900347|900348", + "upstreamId": "16253|16254|16255|16256|34577|34578|166128|283866|302509|302514|302515|302520|302523|302525|302529|302533|302538|302539|302544|302545|302546|302547|302551|302553|305782|305783|305792|305794|305816|305818|305836|305845|305847|305849|305876|305881|305883|305884|305886|305887|305888|305898|305901|305902|305903|305918|305920|305923|305930|310584|310585|310591|310597|310598|310601|310605|310608|310616|310620|310621|310628|310629|310634|310638|310639|310647|310648|310649|310652|310821|310823|310824|310828|310836|310840|310861|310863|310872|310876|310888|310894|310896|310898|310900|310913|364075|421629|425747|457036|457671|522844|522846|561146|561865|622887|687036|687037|687038|687039|692215|692216|700003|736078|782834|782836|833493|897872|897873|897874|897875|897876|897877|897878|897879|897880|897881|897882|897883|897884|897885|897886|897887|897888|897889|897890|897891|897892|897893|897894|897895|897896|897897|897898|897899|897900|897901|897902|897903|897904|897905|897906|897907|897908|897909|900345|900346|900347|900348", "text": "Hypomyelination and Congenital Cataract" }, { - "baseId": "16257|16258|16259|16260|39790|39791|77000|77001|79917|133912|133912|133913|133913|133914|133915|133916|133916|133917|133918|133918|133919|133920|133921|133921|133922|133923|133924|133925|133925|152914|191276|191276|205722|205723|206728|206728|206730|206730|249528|249528|249529|249529|277295|277296|277299|277305|277309|277309|277311|277312|277313|277323|277326|277326|277328|277331|277331|277332|277347|277510|277511|277511|277512|277512|277520|277520|277530|277530|277532|277539|277544|277544|277547|277547|277550|277550|277552|277554|277554|278365|278366|278367|278370|278375|278380|278381|278381|278382|278382|278387|278388|278389|278390|278390|278392|278392|278393|278393|278394|278396|278400|278402|278410|278410|278413|278413|278414|278414|278416|278429|364534|434562|437799|447270|447277|447278|447279|447369|447410|447418|447421|447430|447466|447466|447469|447471|447476|447484|485986|492028|515262|515264|515265|515265|515274|515276|515306|515315|515351|515352|515354|536569|536569|537080|549502|556682|556684|556686|556688|556737|556737|556739|556741|557034|557036|557038|558222|558224|558226|558228|558230|558232|558234|576078|576078|576438|576441|578778|578784|578790|578790|578793|578794|578794|578803|578803|578804|578804|578811|578811|584195|584195|614196|614196|614197|614198|614199|614200|619965|619966|627059|627060|627061|627062|627063|627064|627065|627066|627067|627068|627069|627070|627071|627072|627073|627074|627075|627076|627076|650536|650592|677123|690409|690409|690412|690412|690415|690416|695016|695017|695019|695019|696253|696254|696256|696258|696261|718381|729937|731862|789877|794490|794490|822980|822981|822982|822983|822984|822985|822986|822987|822988|822989|822990|822991|822992|851237|858872|861588|861603|862754|862755|862756|862757|862758|862759|862760|862761|862762|862763|862764|862765|862766|862767|862768|862769|862770|862771|862772|862772|862773|862774|862775|865029|865030|865031|921739|921740|921741|930152|930153|930154|930155|941568|941569|941570|941571|941572|952138|952139|966155", + "upstreamId": "16257|16258|16259|16260|39790|39791|77000|77001|79917|133912|133912|133913|133913|133914|133915|133916|133916|133917|133918|133918|133919|133920|133921|133921|133922|133923|133924|133925|133925|152914|191276|191276|205722|205723|206728|206728|206730|206730|249528|249528|249529|249529|277295|277296|277299|277305|277309|277309|277311|277312|277313|277323|277326|277326|277328|277331|277331|277332|277347|277510|277511|277511|277512|277512|277520|277520|277530|277530|277532|277539|277544|277544|277547|277547|277550|277550|277552|277554|277554|278365|278366|278367|278370|278375|278380|278381|278381|278382|278382|278387|278388|278389|278390|278390|278392|278392|278393|278393|278394|278396|278400|278402|278410|278410|278413|278413|278414|278414|278416|278429|364534|434562|437799|447270|447277|447278|447279|447369|447410|447418|447421|447430|447466|447466|447469|447471|447476|447484|485986|492028|515262|515264|515265|515265|515274|515276|515306|515315|515351|515352|515354|536569|536569|537080|549502|556682|556684|556686|556688|556737|556737|556739|556741|557034|557036|557038|558222|558224|558226|558228|558230|558232|558234|576078|576078|576438|576441|578778|578784|578790|578790|578793|578794|578794|578803|578803|578804|578804|578811|578811|584195|584195|614196|614196|614197|614198|614199|614200|619965|619966|627059|627060|627061|627062|627063|627064|627065|627066|627067|627068|627069|627070|627071|627072|627073|627074|627075|627076|627076|650536|650592|677123|690409|690409|690412|690412|690415|690416|695016|695017|695019|695019|696253|696254|696256|696258|696261|718381|729937|731862|789877|794490|794490|822980|822981|822982|822983|822984|822985|822986|822987|822988|822989|822990|822991|822992|851237|858872|861588|861603|862754|862755|862756|862757|862758|862759|862760|862761|862762|862763|862764|862765|862766|862767|862768|862769|862770|862771|862772|862772|862773|862774|862775|865029|865030|865031|921739|921740|921741|930152|930153|930154|930155|941568|941569|941570|941571|941572|952138|952139|966155", "text": "Kufor-Rakeb syndrome" }, { - "baseId": "16261|16261|16262|16262|16263|16264|16265|16266|101278|101279|101280|101281|101282|101282|101285|101285|101286|101286|101287|101287|101288|101288|177167|177299|177299|177431|194946|194946|195702|257332|257332|257333|257333|257335|257335|271293|271293|334835|334840|344709|344711|344713|344715|344715|349690|349693|349695|349695|349696|349696|349698|349701|349702|350689|350690|350690|350692|471367|533466|534028|571157|572868|575077|575077|620652|620653|648587|648588|648589|653118|653191|695841|695841|695842|695842|695843|695845|705393|705394|705395|705395|716866|757387|773012|800168|801196|848233|848234|852898|885829|885830|885831|885832|885833|885834|885835|885836|885837|885838|885839|885840|885841|885842|887428|919906|919907|958790", + "upstreamId": "16261|16261|16262|16262|16263|16264|16265|16266|101278|101279|101280|101281|101282|101282|101285|101285|101286|101286|101287|101287|101288|101288|177167|177299|177299|177431|194946|194946|195702|257332|257332|257333|257333|257335|257335|271293|271293|334835|334840|344709|344711|344713|344715|344715|349690|349693|349695|349695|349696|349696|349698|349701|349702|350689|350690|350690|350692|471367|533466|534028|571157|572868|575077|575077|620652|620653|648587|648588|648589|653118|653191|695841|695841|695842|695842|695843|695845|705393|705394|705395|705395|716866|757387|773012|800168|801196|848233|848234|852898|885829|885830|885831|885832|885833|885834|885835|885836|885837|885838|885839|885840|885841|885842|887428|919906|919907|958790", "text": "Congenital dyserythropoietic anemia, type II" }, { - "baseId": "16261|16262|101282|101285|101286|101287|101287|101288|177299|194946|226247|257332|257333|257335|271293|344715|349695|349696|350690|533466|534028|571157|572868|575077|648587|648588|648589|653118|653191|695841|695842|695843|695845|705394|705395|716866|757387|848233|848234|852898|958790", + "upstreamId": "16261|16262|101282|101285|101286|101287|101287|101288|177299|194946|226247|257332|257333|257335|271293|344715|349695|349696|350690|533466|534028|571157|572868|575077|648587|648588|648589|653118|653191|695841|695842|695843|695845|705394|705395|716866|757387|848233|848234|852898|958790", "text": "Cowden syndrome 7" }, { - "baseId": "16267|48120|464037|572784|702868|725663|725664|739207|739208|779716|779719|920332", + "upstreamId": "16267|48120|464037|572784|702868|725663|725664|739207|739208|779716|779719|920332", "text": "Craniolenticulosutural dysplasia" }, { - "baseId": "16268|227312|227313|544362|544363|544365|544372|544646|544648|544727|544729|544731|622382|917580", + "upstreamId": "16268|227312|227313|544362|544363|544365|544372|544646|544648|544727|544729|544731|622382|917580", "text": "Tumoral calcinosis, familial, normophosphatemic" }, { - "baseId": "16269|16269|16270|16271|16271|16272|16273|16274|16275|16275|16276|16276|16277|39789|39789|102394|102394|102395|102396|102396|102397|176990|176990|177253|177253|205376|205376|205377|205377|205378|247363|259899|259899|305403|305407|305409|305409|305411|305416|305417|305418|305420|305421|309247|309255|309255|309257|309258|309274|309279|309289|309290|309301|309302|309314|314506|314506|314511|314513|314515|314515|314517|314517|314531|314533|314535|314536|314537|314539|314542|314548|314554|314555|314558|314589|314589|314592|314592|314595|314595|314596|314597|314597|314601|314601|314602|314603|314605|314606|314610|314611|314612|314614|314623|314625|361294|407393|407394|407394|413894|415132|415132|488261|488261|495386|495386|513428|523172|523582|539012|544421|544423|544423|544430|544443|544447|544450|544728|544733|544734|544742|544747|544754|544754|544767|544772|544772|544774|544775|544779|544781|544782|544782|544783|544787|544789|544792|544795|544817|544820|544826|544830|544833|544833|544842|544843|544843|552124|562427|562958|565143|567933|621282|626178|637223|637224|637224|637225|637226|637227|711544|711544|711545|711545|711546|711546|711547|711548|711548|723110|723110|723111|723112|723112|723113|723113|723114|723115|723115|730577|736686|736686|736687|736687|744365|751172|751173|751175|751176|751176|751177|751177|751178|759728|766827|766827|766828|766831|766832|766832|775276|775334|783117|787737|790803|819962|819963|819964|819965|819966|819967|834781|834781|834782|834783|834783|834784|834785|834786|834786|834787|834788|834789|834790|834790|834791|834792|834793|834794|834795|856589|899645|899646|899647|899648|899648|899649|899650|899651|899652|899653|899654|899655|899656|899657|899658|899659|899660|899661|899662|899663|899664|899665|899666|899667|899668|899669|899670|899671|899672|899673|899674|899675|899676|899677|899678|899679|899680|899681|899682|899683|899684|899685|899686|899687|899688|899689|899690|899691|899692|899693|899694|899695|899696|900502|900503|925209|934318|934319|934320|934321|934322|934323|940105|940106|946077|946078|946079|946080|946081|946082|946083|946084|946085|946086|955422|955423|955424|955425|955426|955427|955428|955429|955430|963083|972012|972013|972014|972015|972016|972017|972018|972019|972020|972021|972022|972023|978471", + "upstreamId": "16269|16269|16270|16271|16271|16272|16273|16274|16275|16275|16276|16276|16277|39789|39789|102394|102394|102395|102396|102396|102397|176990|176990|177253|177253|205376|205376|205377|205377|205378|247363|259899|259899|305403|305407|305409|305409|305411|305416|305417|305418|305420|305421|309247|309255|309255|309257|309258|309274|309279|309289|309290|309301|309302|309314|314506|314506|314511|314513|314515|314515|314517|314517|314531|314533|314535|314536|314537|314539|314542|314548|314554|314555|314558|314589|314589|314592|314592|314595|314595|314596|314597|314597|314601|314601|314602|314603|314605|314606|314610|314611|314612|314614|314623|314625|361294|407393|407394|407394|413894|415132|415132|488261|488261|495386|495386|513428|523172|523582|539012|544421|544423|544423|544430|544443|544447|544450|544728|544733|544734|544742|544747|544754|544754|544767|544772|544772|544774|544775|544779|544781|544782|544782|544783|544787|544789|544792|544795|544817|544820|544826|544830|544833|544833|544842|544843|544843|552124|562427|562958|565143|567933|621282|626178|637223|637224|637224|637225|637226|637227|711544|711544|711545|711545|711546|711546|711547|711548|711548|723110|723110|723111|723112|723112|723113|723113|723114|723115|723115|730577|736686|736686|736687|736687|744365|751172|751173|751175|751176|751176|751177|751177|751178|759728|766827|766827|766828|766831|766832|766832|775276|775334|783117|787737|790803|819962|819963|819964|819965|819966|819967|834781|834781|834782|834783|834783|834784|834785|834786|834786|834787|834788|834789|834790|834790|834791|834792|834793|834794|834795|856589|899645|899646|899647|899648|899648|899649|899650|899651|899652|899653|899654|899655|899656|899657|899658|899659|899660|899661|899662|899663|899664|899665|899666|899667|899668|899669|899670|899671|899672|899673|899674|899675|899676|899677|899678|899679|899680|899681|899682|899683|899684|899685|899686|899687|899688|899689|899690|899691|899692|899693|899694|899695|899696|900502|900503|925209|934318|934319|934320|934321|934322|934323|940105|940106|946077|946078|946079|946080|946081|946082|946083|946084|946085|946086|955422|955423|955424|955425|955426|955427|955428|955429|955430|963083|972012|972013|972014|972015|972016|972017|972018|972019|972020|972021|972022|972023|978471", "text": "Mucopolysaccharidosis, MPS-III-C" }, { - "baseId": "16269|16270|16271|16275|16276|39789|102394|102396|176990|177253|205375|205376|205376|205377|205377|259899|305409|309255|309255|314506|314515|314517|314589|314592|314595|314597|314601|407394|415132|488261|495386|523172|523582|539012|544423|544754|544772|544782|544833|544843|562427|562958|565143|567933|621282|637223|637224|637225|637226|637227|711544|711545|711546|711547|711548|723110|723111|723112|723113|723114|723115|730577|736686|736687|744365|751172|751173|751175|751176|751177|751178|766827|766828|766831|766832|775276|783117|787737|819962|819963|819964|819965|819966|819967|834781|834782|834783|834784|834785|834786|834786|834787|834788|834789|834790|834791|834792|834793|834794|834795|899648|915033|919158|925209|934318|934319|934320|934321|934322|934323|940105|940106|946077|946078|946079|946080|946081|946082|946083|946084|946085|946086|955422|955423|955424|955425|955426|955427|955427|955428|955429|955430|962889|962890|962891|962892|962893", + "upstreamId": "16269|16270|16271|16275|16276|39789|102394|102396|176990|177253|205375|205376|205376|205377|205377|259899|305409|309255|309255|314506|314515|314517|314589|314592|314595|314597|314601|407394|415132|488261|495386|523172|523582|539012|544423|544754|544772|544782|544833|544843|562427|562958|565143|567933|621282|637223|637224|637225|637226|637227|711544|711545|711546|711547|711548|723110|723111|723112|723113|723114|723115|730577|736686|736687|744365|751172|751173|751175|751176|751177|751178|766827|766828|766831|766832|775276|783117|787737|819962|819963|819964|819965|819966|819967|834781|834782|834783|834784|834785|834786|834786|834787|834788|834789|834790|834791|834792|834793|834794|834795|899648|915033|919158|925209|934318|934319|934320|934321|934322|934323|940105|940106|946077|946078|946079|946080|946081|946082|946083|946084|946085|946086|955422|955423|955424|955425|955426|955427|955427|955428|955429|955430|962889|962890|962891|962892|962893", "text": "Retinitis pigmentosa 73" }, { - "baseId": "16269|16275|20146|20150|39416|39752|39789|102394|195855|259899|265225|309255|309284|314503|314556|318311|326267|326268|326347|328513|332578|332641|334163|334224|338454|338457|338462|338481|344536|344539|344543|344545|345940|345941|345945|346332|346359|347721|358524|487839|544423|544781|562427|915033", + "upstreamId": "16269|16275|20146|20150|39416|39752|39789|102394|195855|259899|265225|309255|309284|314503|314556|318311|326267|326268|326347|328513|332578|332641|334163|334224|338454|338457|338462|338481|344536|344539|344543|344545|345940|345941|345945|346332|346359|347721|358524|487839|544423|544781|562427|915033", "text": "Sanfilippo syndrome" }, { - "baseId": "16276|16601|16604|16605|20146|20147|20150|39416|247363|264874|508893|513465|548897|620589|818746|818747|818748|818749", + "upstreamId": "16276|16601|16604|16605|20146|20147|20150|39416|247363|264874|508893|513465|548897|620589|818746|818747|818748|818749", "text": "Mucopolysaccharidosis" }, { - "baseId": "16278|980437", + "upstreamId": "16278|980437", "text": "Immunodeficiency due to defect in mapbp-interacting protein" }, { - "baseId": "16279|102123|102124|192553|256893|333267|333275|333277|333278|333282|333283|333284|343367|343371|343378|343379|343382|343383|343385|348648|348651|348658|348659|348661|348664|348665|348666|348673|348675|348678|348679|349718|349721|349722|349728|349729|349731|349732|349735|847554|880387|880388|880389|880390|880391|880392|880393|880394|880395|880396|880397|880398|880399|880400|880401|880402|880403|880404|880405|880406|880407|880408|880409|880410|880411|880412|880413|880742", + "upstreamId": "16279|102123|102124|192553|256893|333267|333275|333277|333278|333282|333283|333284|343367|343371|343378|343379|343382|343383|343385|348648|348651|348658|348659|348661|348664|348665|348666|348673|348675|348678|348679|349718|349721|349722|349728|349729|349731|349732|349735|847554|880387|880388|880389|880390|880391|880392|880393|880394|880395|880396|880397|880398|880399|880400|880401|880402|880403|880404|880405|880406|880407|880408|880409|880410|880411|880412|880413|880742", "text": "Age-related macular degeneration 6" }, { - "baseId": "16279|16280|16281|102123|102124|192553|204391|256893|333267|333275|333277|333278|333282|333283|333284|343367|343371|343378|343379|343382|343383|343385|348648|348651|348658|348659|348661|348664|348665|348666|348673|348675|348678|348679|349718|349721|349722|349728|349729|349731|349732|349735|590329|623353|880387|880388|880389|880390|880391|880392|880393|880394|880395|880396|880397|880398|880399|880400|880401|880402|880403|880404|880405|880406|880407|880408|880409|880410|880411|880412|880413|880742", + "upstreamId": "16279|16280|16281|102123|102124|192553|204391|256893|333267|333275|333277|333278|333282|333283|333284|343367|343371|343378|343379|343382|343383|343385|348648|348651|348658|348659|348661|348664|348665|348666|348673|348675|348678|348679|349718|349721|349722|349728|349729|349731|349732|349735|590329|623353|880387|880388|880389|880390|880391|880392|880393|880394|880395|880396|880397|880398|880399|880400|880401|880402|880403|880404|880405|880406|880407|880408|880409|880410|880411|880412|880413|880742", "text": "Cone-rod dystrophy 11" }, { - "baseId": "16282|16283|16284|16285|132077|132081|132088|132090|132092|132102|132103|132114|132118|132123|132124|132140|132147|132161|132171|132179|132182|132191|132191|132192|132193|132201|132204|132208|132208|132209|132218|132225|132237|132237|132240|132244|132250|132251|132255|132258|132268|132271|132278|132286|132288|132290|132291|133574|133576|133587|133590|133593|133601|133601|139840|142278|150970|151242|151249|151423|151688|153698|180735|180736|180742|180754|184177|184202|184207|184211|184213|184235|184239|184249|184286|186212|186220|186222|213153|214572|235150|235197|235209|235265|235280|242367|242396|334406|334409|342534|374972|377394|389266|389283|401785|466261|466269|466348|477581|478191|482931|484720|812845|818451|818569|818570|874991|874992|874993", + "upstreamId": "16282|16283|16284|16285|132077|132081|132088|132090|132092|132102|132103|132114|132118|132123|132124|132140|132147|132161|132171|132179|132182|132191|132191|132192|132193|132201|132204|132208|132208|132209|132218|132225|132237|132237|132240|132244|132250|132251|132255|132258|132268|132271|132278|132286|132288|132290|132291|133574|133576|133587|133590|133593|133601|133601|139840|142278|150970|151242|151249|151423|151688|153698|180735|180736|180742|180754|184177|184202|184207|184211|184213|184235|184239|184249|184286|186212|186220|186222|213153|214572|235150|235197|235209|235265|235280|242367|242396|334406|334409|342534|374972|377394|389266|389283|401785|466261|466269|466348|477581|478191|482931|484720|812845|818451|818569|818570|874991|874992|874993", "text": "Fanconi anemia, complementation group N" }, { - "baseId": "16282|16284|16285|18058|18062|18062|18064|18072|18075|18076|18077|18083|18083|19775|19775|19776|19777|19777|19777|20630|20631|20633|20635|20636|20637|20637|20638|20639|20639|20642|20642|23084|23221|24359|24361|24364|24365|24368|24381|27272|27395|28166|28975|32700|32700|32701|32709|32710|32711|32712|32713|32714|32714|32714|32716|32720|32732|32732|39492|45973|45981|45982|45982|46005|46022|46045|46072|46087|46090|46091|46098|46116|46121|46122|46135|46137|46144|46150|46152|46154|46163|46172|46231|46247|46249|46254|46257|46258|46290|46386|46390|46411|46415|46419|46423|46458|46510|46513|46531|46540|46544|46554|46567|46599|46630|46632|46633|46666|46669|46682|46735|46764|46785|46789|46816|48348|49979|49982|49984|49995|49997|50001|50006|50008|50009|50011|50242|50247|50250|50251|50254|50254|50256|50257|50260|50266|50269|50270|52759|65702|65705|65709|65711|65713|65729|65743|65744|65757|65761|65767|65771|65772|65776|65781|65782|65783|65787|65791|65795|65797|65801|65807|65815|65819|65823|65830|65833|65848|65852|65854|65855|65861|65869|65870|65875|65881|65885|65887|65888|65891|65898|65926|65931|65937|65941|65948|65961|65979|65983|65984|65987|65995|65999|66009|66010|66022|66023|66038|66044|66051|66054|66076|66078|66086|66087|66089|66097|66103|66104|66114|66122|66134|66150|66151|66155|66167|66190|66201|66213|66216|66222|66233|66246|66252|66257|66260|66263|66265|66271|66331|66334|66343|66345|66348|66356|66361|66363|66364|66365|66391|66394|66401|66407|66410|66421|66427|66440|66441|66445|66456|66460|66467|66472|66477|66481|66482|66497|66505|66517|66521|66529|66547|66551|66560|66566|66577|66580|66588|66602|66609|66614|66615|66619|66635|66638|66642|66643|66656|66660|66665|66694|66699|66705|66712|66718|66721|66736|66746|66747|66752|66760|66763|66771|66772|66774|66785|66788|66793|66798|66809|66815|66816|66825|66837|66855|66857|66858|66902|66909|66917|66929|66930|66932|66944|66950|66953|66956|66960|66971|66981|66985|67016|67036|67037|67040|67043|67048|67052|67056|67070|67098|67117|67136|67156|67169|67182|67187|67193|67198|67207|67212|67217|67221|67226|67243|67246|67247|67248|67256|67262|67281|67282|67301|67308|67310|67315|67316|67317|67326|67334|67353|67363|67367|67375|67378|67381|67394|67397|67413|67418|67424|67431|67458|67463|67475|67482|67483|67488|67494|67518|67521|67525|67538|67551|67560|67563|67566|67576|67591|67592|68773|68777|68778|68781|68785|68786|68793|68794|68798|68800|68805|68810|68813|68816|68817|68823|68826|68832|68834|68847|68848|68852|68856|68859|68860|68865|68867|68873|68883|68888|68892|68894|68906|68926|68937|68939|68940|68944|68949|68950|68955|68961|68963|68969|68975|68981|68986|68987|68988|68991|68992|68993|68994|69000|69006|69007|69017|69024|69037|69049|69062|69065|69070|69077|69082|69087|69089|69091|69101|69107|69108|69113|69114|69119|69125|69128|69130|69147|69149|69160|69168|69171|69175|69178|69193|69195|69197|69198|69202|69220|69229|69232|69238|69250|69263|69264|69265|69270|69271|69282|69283|69297|69300|69304|69305|69308|69315|69324|69329|69333|69336|69349|69353|69355|69365|69366|69369|69372|69374|69375|69388|69390|69400|69408|69432|69433|69436|69441|69442|69448|69450|69451|69452|69455|69460|69464|69470|69489|69492|69494|69524|69537|69539|69541|69544|69545|69552|69555|69556|69557|69559|69560|69564|69565|69567|69571|69577|69581|69586|69596|69604|69606|69611|69618|69620|69621|69643|69644|69647|69657|69666|69667|69670|69685|69686|69700|69701|69704|69706|69719|69736|69737|69739|69745|69763|69769|69773|69784|69789|69790|69792|69793|69801|69815|69817|69820|69827|69832|69842|69848|69853|69856|69857|69867|69869|69874|69880|69882|69888|69892|69899|69903|69915|69923|69934|69940|69944|69949|69953|69960|69965|69975|69982|70010|70018|70033|70037|70040|70044|70045|70048|70051|70052|70058|70063|70074|70077|70089|70093|70095|70097|70112|70113|70118|70119|70121|70122|70124|70138|70141|70142|70145|70147|70147|70154|70155|70159|70161|70162|70163|70164|70165|70170|70171|70178|70192|70196|70198|70199|70205|70214|70217|70221|70222|70223|70224|70236|70247|70253|70254|70256|70262|70266|70268|70284|70297|70302|70303|70311|70317|70318|70320|70325|70327|70331|70347|70350|70351|70353|70358|70359|70361|70362|70366|70367|70368|70370|70371|70379|70385|70389|70390|70395|70406|70413|70415|70417|70432|70440|90951|92829|94585|94591|94592|94598|94600|94602|94604|94605|94606|94608|94609|94610|94611|94612|97097|97112|97118|97122|97241|102755|131074|131092|131092|131212|131241|131247|131381|131474|131481|131503|131517|131541|131548|131560|131601|131651|131660|131671|131696|131716|132077|132078|132079|132080|132081|132082|132083|132085|132086|132087|132088|132089|132090|132091|132092|132093|132094|132095|132096|132097|132098|132099|132100|132101|132102|132103|132103|132104|132105|132107|132108|132109|132110|132111|132112|132113|132114|132115|132116|132117|132118|132119|132120|132121|132122|132123|132125|132126|132127|132128|132129|132130|132131|132132|132133|132134|132135|132136|132137|132138|132139|132140|132141|132142|132143|132144|132145|132146|132147|132148|132150|132151|132152|132153|132154|132155|132156|132157|132158|132159|132162|132163|132164|132165|132166|132167|132167|132170|132170|132171|132172|132173|132174|132175|132176|132177|132179|132180|132181|132182|132183|132184|132185|132186|132187|132188|132189|132190|132191|132191|132191|132192|132193|132194|132195|132196|132197|132198|132198|132199|132200|132201|132202|132203|132204|132204|132205|132206|132207|132208|132209|132210|132211|132212|132213|132214|132215|132216|132217|132218|132219|132220|132221|132221|132222|132223|132224|132225|132226|132227|132228|132229|132230|132231|132232|132233|132234|132236|132237|132237|132238|132239|132240|132241|132242|132243|132244|132245|132246|132247|132248|132249|132250|132250|132251|132251|132252|132253|132254|132255|132257|132258|132259|132260|132261|132262|132263|132264|132265|132267|132268|132269|132270|132271|132272|132273|132274|132275|132276|132277|132278|132279|132280|132281|132282|132283|132284|132285|132286|132287|132288|132289|132290|132291|132292|132293|132365|132366|132367|132368|132369|132370|132371|132372|132373|132374|132375|132376|132411|132413|132420|132421|132422|132422|132423|132424|132427|132522|132628|132629|132630|132631|132785|132796|132797|132798|132800|132801|132803|132804|132812|132814|132815|132821|132823|132824|132825|132826|132827|132828|132834|132842|132842|132843|132844|132847|132847|132849|132849|132851|132857|132858|132865|132869|132870|132871|132872|132873|132876|132885|132897|132903|132904|132904|132906|132913|132913|132916|132920|132928|133169|133170|133171|133172|133173|133174|133175|133176|133177|133178|133179|133180|133181|133182|133184|133185|133187|133188|133189|133190|133191|133192|133193|133194|133195|133196|133197|133198|133199|133200|133201|133202|133203|133204|133205|133206|133207|133372|133374|133385|133496|133498|133499|133499|133501|133501|133502|133503|133503|133504|133505|133506|133507|133507|133508|133509|133510|133511|133511|133513|133513|133514|133516|133516|133516|133517|133518|133519|133520|133520|133521|133522|133523|133523|133524|133525|133526|133527|133527|133528|133529|133529|133530|133531|133532|133532|133532|133533|133534|133535|133536|133538|133539|133541|133542|133543|133544|133545|133546|133547|133549|133549|133573|133574|133574|133575|133576|133576|133577|133578|133579|133580|133581|133582|133583|133585|133586|133587|133590|133592|133593|133593|133594|133595|133596|133597|133599|133600|133601|133601|133601|133602|133603|133604|133605|133606|133607|133608|133609|133610|133610|133611|133612|133613|133613|133614|133615|133617|133618|133619|133620|133621|133622|133623|133624|133625|133626|133627|133627|133629|133630|133631|133632|133634|133636|133637|133640|133641|133641|133642|133643|133644|133644|133646|133647|133648|133649|133649|133650|133650|133651|133652|133652|133653|133654|133655|133655|133656|136460|136460|136499|136500|136505|136512|136527|136528|136529|136569|136693|136695|136696|136699|136703|136704|136705|136710|136711|136712|136714|136718|137018|137019|137020|137342|137347|137362|137364|137371|137375|137377|137379|137379|137380|137380|137484|137487|137489|137490|137491|137491|137492|137493|137494|137495|137495|137496|137497|137497|137498|137499|137500|137500|137625|137626|137627|137627|137628|137629|137630|137631|138731|138732|138733|138734|138735|139459|139488|139515|139778|139803|139838|139839|139840|139841|139842|139843|139844|139845|139846|139847|139848|139849|139850|139851|139852|139853|139854|139855|139856|139856|139857|139858|139859|139859|139860|139861|139862|139863|139864|139865|139866|140199|140200|140201|140202|140203|140204|140240|140243|140250|140254|140257|140261|140263|140271|140276|140278|140279|140282|140283|140283|140284|140285|140287|140443|140444|140445|140446|140447|140448|140450|142277|142278|142279|142280|150134|150279|150280|150281|150282|150283|150284|150471|150485|150486|150502|150504|150509|150522|150526|150533|150539|150548|150549|150556|150566|150572|150575|150585|150589|150595|150608|150629|150630|150641|150642|150646|150646|150647|150652|150652|150659|150673|150673|150679|150688|150692|150698|150698|150699|150709|150716|150719|150721|150741|150749|150750|150760|150764|150765|150767|150773|150777|150819|150823|150847|150848|150850|150881|150892|150896|150897|150898|150899|150900|150915|150941|150945|150947|150952|150953|150962|150970|150984|151019|151028|151029|151032|151033|151034|151050|151051|151054|151064|151086|151088|151095|151095|151096|151096|151098|151099|151101|151103|151104|151116|151116|151118|151122|151149|151179|151201|151213|151215|151217|151241|151242|151249|151259|151260|151268|151274|151275|151302|151304|151304|151307|151322|151327|151338|151341|151348|151361|151380|151380|151408|151412|151412|151416|151423|151423|151432|151447|151452|151453|151458|151459|151463|151467|151468|151475|151477|151487|151491|151493|151497|151498|151499|151518|151526|151531|151532|151541|151543|151550|151552|151570|151570|151574|151575|151575|151580|151587|151594|151598|151604|151643|151649|151650|151651|151661|151661|151686|151687|151688|151688|151689|151691|151691|151695|151707|151739|151746|151749|151755|151755|151760|151762|151763|151767|151784|151792|151793|151817|151827|151828|151831|151833|151837|151840|151841|151847|151849|151853|151861|151865|151870|151884|151892|151893|151898|151910|151923|151930|151936|151936|151939|151945|151947|151961|151980|151981|151994|152014|152024|152040|152042|152050|152054|152056|152057|152060|152060|152066|152066|152069|152072|152075|152080|152082|152085|152087|152089|152090|152094|152104|152114|152115|152117|152120|152122|152126|152144|152146|152147|152150|152159|152162|152162|152164|152165|152170|152172|152177|152179|152181|152182|152187|152193|152193|152202|152206|152213|152218|152236|152238|152243|152247|152247|152254|152255|152259|152265|152268|152269|152278|152282|152285|152287|152293|152298|152300|152305|152309|152310|152314|152414|152419|152420|152425|152437|152442|152446|152446|152447|152448|152451|152460|152470|152474|152480|152483|152486|152514|152520|152523|152523|152564|152565|152612|152614|152615|152623|152624|152627|152628|152629|152631|152649|152656|152659|152662|152663|152670|152670|152679|152722|152731|152733|152735|153592|153593|153594|153595|153596|153597|153598|153601|153602|153603|153605|153608|153609|153610|153611|153613|153615|153617|153619|153620|153621|153622|153623|153624|153627|153641|153642|153643|153691|153692|153693|153694|153695|153696|153697|153698|153698|153699|153702|153704|153705|153707|153708|153709|153710|165476|166265|166266|167479|167480|167481|167482|167483|167484|167485|167487|167488|167489|167490|167492|167493|167494|167495|167496|167497|167498|167499|167500|171818|171819|171820|171822|179942|179944|179946|179947|179948|179949|179951|179952|179953|179954|179955|179956|179957|179958|179959|179960|179961|179962|179963|179965|179968|179969|179970|179971|179974|179976|180382|180391|180391|180411|180411|180463|180464|180464|180465|180483|180483|180484|180491|180494|180519|180522|180558|180597|180604|180628|180647|180660|180668|180697|180706|180707|180708|180709|180710|180711|180712|180713|180714|180715|180716|180718|180719|180720|180721|180722|180723|180724|180727|180728|180729|180730|180731|180732|180733|180734|180735|180736|180737|180738|180739|180740|180741|180742|180742|180743|180744|180745|180746|180748|180749|180750|180751|180752|180753|180754|180754|180755|180756|180757|180758|180849|180859|180873|180880|180923|180924|180925|180925|180926|180927|180928|180929|180932|180934|180935|180935|180936|180936|180938|180940|180941|180942|180943|180944|180947|180948|180949|180950|180951|180952|180954|180956|180957|180958|180959|180960|180960|180961|181089|181090|181091|181092|181093|181095|181096|181097|181098|181099|181100|181100|181101|181102|181103|181104|181105|181106|181106|181107|181108|181110|181112|181113|181116|181116|181117|181118|181120|181121|181122|181122|181123|181129|181130|181133|181139|181144|181146|181746|181749|181750|181753|181754|181755|181756|181758|181759|181761|181762|181763|181764|181766|181769|181770|181771|181772|181773|181774|181776|181777|181778|181779|181780|181781|181783|181785|181786|181787|181789|181790|181791|181792|181793|181794|181797|181800|181805|181807|181809|181810|181811|181812|181813|181814|181815|181816|181817|181818|181820|181821|181822|181823|181824|181825|181826|181827|181828|181830|181832|181833|181834|181835|181836|181837|181838|181839|181840|181841|181842|181843|181844|181845|181846|181849|181850|181851|181852|181853|181855|181856|181857|181858|182250|183085|183104|183106|183113|183176|183194|183202|183215|183230|183245|183260|183319|183360|183380|183384|183391|183401|183401|183448|183467|183693|183739|183894|183990|184093|184151|184152|184153|184154|184155|184156|184157|184158|184159|184160|184161|184162|184163|184165|184166|184167|184168|184169|184170|184171|184173|184176|184177|184179|184180|184182|184183|184185|184186|184188|184191|184192|184193|184194|184195|184197|184198|184199|184200|184201|184202|184203|184204|184205|184206|184207|184208|184209|184210|184211|184212|184213|184214|184217|184218|184219|184220|184221|184222|184223|184224|184225|184226|184228|184229|184230|184231|184233|184234|184235|184236|184237|184239|184239|184240|184243|184246|184247|184248|184249|184250|184251|184252|184253|184255|184256|184258|184259|184260|184261|184262|184263|184264|184265|184268|184269|184271|184272|184273|184274|184276|184277|184278|184279|184280|184281|184282|184284|184285|184286|184287|184288|184289|184290|184291|184293|184295|184297|184298|184299|184300|184301|184302|184303|184304|184305|184306|184379|184420|185052|185093|185131|185186|185187|185188|185189|185190|185190|185192|185194|185195|185197|185198|185199|185200|185201|185203|185204|185205|185207|185207|185210|185211|185212|185213|185213|185214|185215|185216|185218|185222|185223|185224|185225|185226|185227|185228|185230|185231|185233|185236|185237|185238|185240|185242|185243|185244|185245|185246|185246|185247|185250|185251|185253|185254|185254|185256|185257|185257|185258|185259|185260|185260|185261|185263|185264|185266|185267|185268|185270|185272|185273|185275|185277|185278|185279|185280|185281|185283|185284|185285|185286|185287|185289|185290|185292|185293|185294|185295|185296|185296|185297|185297|185298|185300|185302|185303|185304|185305|185306|185308|185309|185310|185311|185312|185314|185315|185316|185317|185319|185320|185321|185322|185323|185326|185327|185328|185329|185330|185343|185421|185570|185571|185573|185574|185575|185576|185577|185578|185580|185582|185586|185587|185588|185589|185591|185592|185594|185595|185597|185599|185601|185603|185604|185605|185606|185608|185609|185610|185611|185612|185613|185616|185618|185619|185620|185621|185622|185623|185624|185626|185628|185629|185630|185631|185633|185634|185635|185636|185637|185638|185639|185641|185642|185643|185644|185647|185648|185649|185651|185653|185654|185655|185656|185658|185659|185660|185661|185662|186141|186143|186206|186208|186210|186211|186212|186213|186214|186215|186216|186217|186218|186219|186220|186220|186221|186222|186222|186223|186224|186242|186266|186267|186268|186269|186270|186271|186872|194513|195020|198622|204580|212111|212127|212128|212129|212130|212131|212132|212133|212134|212135|212136|212137|212139|212140|212141|212142|212143|212851|212910|213142|213143|213144|213149|213150|213151|213152|213153|213153|213154|213155|213156|213157|213159|213160|213161|213162|213163|213164|213165|213166|213167|213168|213169|213170|213171|213172|213174|213175|213176|213177|213178|213179|213180|213181|213182|213183|213184|213185|213186|213240|213311|213356|213357|213358|213359|213360|213361|213362|213363|213364|213365|213368|213369|213370|213371|213372|213373|213374|213375|213376|213377|213378|213379|213380|213474|213475|213476|213477|213478|213479|213480|213481|213482|213482|213483|213483|213484|213485|213486|213487|213488|213489|213490|213491|213492|213493|213512|214572|221137|221138|221139|221140|221141|221142|221143|221144|221145|221146|221147|221148|221149|221150|221151|221152|221153|221154|221155|221156|221157|221158|221159|221160|221161|221162|221163|221164|221165|221166|221167|221168|221169|221170|221171|221172|221174|222036|222037|222059|222103|222132|222311|222331|222440|222454|222455|222456|222457|222458|222459|222460|222461|222462|222463|222464|222465|222466|222467|222468|222470|222471|222472|222473|222474|222475|222476|222477|222478|222479|222480|222481|222482|222483|222484|222485|222555|222698|222699|222700|222701|222702|222703|222704|222705|222706|222707|222708|222710|222710|222712|222713|222714|222715|222716|222717|222718|222719|222720|222722|222723|222724|222725|222726|222727|222856|222857|222858|222859|222860|222861|222862|222864|222865|222866|222867|222868|222869|222870|222871|222872|222873|222874|222875|222876|222877|222878|223302|223303|223304|223305|223306|223307|223362|223602|226342|226359|226365|226367|226812|227551|227570|227661|227662|227664|227665|227666|227667|227668|227669|227670|227671|227672|227673|227674|227675|227676|227677|227678|231993|231993|231995|231996|231997|231997|231998|231999|232000|232001|232001|232002|232003|232005|232006|232006|232007|232008|232009|232011|232012|232013|232112|232117|232119|232121|232122|232123|232124|232125|232127|232128|232129|232130|232132|232133|232134|232135|232138|232142|232143|232144|232302|232304|232305|232306|232307|232310|232311|232314|232315|232317|232319|232321|232322|232324|232325|232327|232328|232331|232333|232337|232341|232343|232344|232345|232347|232349|232352|232354|232355|232356|232357|232360|232363|232365|232368|232369|232370|232371|232372|232377|232378|232380|232383|232384|232388|232389|232391|232392|232393|232394|232395|232396|232397|232398|232400|232401|232402|232403|232404|232405|232408|232410|232411|232414|232416|232417|232418|232419|232421|232422|232423|232424|232425|232426|232427|232431|232433|232434|232435|232436|232437|232438|232439|232440|232441|232445|232446|232448|232449|232451|232452|232454|232455|232456|232457|232458|232459|232460|233900|233966|234008|234015|234099|234197|234284|234298|234321|234343|234353|234923|234933|235148|235150|235153|235155|235156|235157|235158|235160|235161|235163|235164|235165|235168|235169|235170|235172|235175|235176|235178|235179|235180|235181|235185|235187|235188|235189|235190|235191|235195|235197|235203|235207|235208|235211|235213|235214|235215|235216|235217|235218|235220|235221|235222|235223|235224|235226|235227|235228|235229|235230|235231|235232|235235|235239|235241|235242|235244|235245|235246|235247|235249|235250|235251|235252|235253|235254|235256|235257|235260|235262|235263|235265|235267|235268|235269|235270|235274|235276|235276|235278|235280|235288|235289|235291|235292|235293|235294|235296|235297|235298|235299|235301|235302|235304|235305|235306|235307|235309|235310|235311|235313|235316|235318|235321|235323|235324|235325|235328|235329|235335|235336|235338|235341|235343|235344|235345|235348|236066|236141|236254|236254|236255|236256|236256|236257|236260|236264|236266|236268|236269|236270|236272|236273|236275|236276|236277|236278|236280|236283|236284|236285|236287|236291|236294|236295|236296|236297|236298|236299|236300|236301|236302|236303|236304|236305|236306|236306|236307|236309|236311|236312|236313|236314|236315|236317|236318|236319|236320|236324|236325|236329|236330|236331|236332|236332|236335|236335|236338|236339|236340|236341|236343|236345|236346|236347|236348|236350|236352|236353|236355|236356|236358|236358|236359|236360|236361|236362|236363|236364|236365|236368|236369|236370|236372|236373|236375|236377|236379|236380|236381|236384|236386|236387|236388|236389|236390|236391|236392|236393|236395|236396|236397|236399|236400|236402|236403|236404|236407|236409|236410|236411|236413|236414|236415|236416|236418|236421|236423|236426|236427|236430|236431|236432|236433|236435|236586|236587|236588|236589|236592|236593|236594|236595|236596|236597|236598|236599|236602|236604|236605|236606|236606|236607|236608|236611|236613|236614|236615|236616|236617|236619|236622|236623|236624|236625|236626|236628|236631|236632|236633|236634|236634|236635|236638|236639|236641|236642|236644|236645|236646|236648|236649|236650|236651|236653|236654|236655|236656|236662|236665|236666|236668|236669|236673|236674|236675|236676|236677|236678|236679|236681|236685|236686|236687|236688|236689|236690|236691|236692|236693|236694|236695|236697|236698|236700|236702|236703|236704|236705|236710|236711|236712|236713|236714|238355|238620|238621|238622|238623|238624|238626|238627|238629|238630|238631|238633|238634|238635|238636|238637|238638|238639|238640|238641|238642|238643|238644|238645|238646|238647|238649|238650|238652|238654|238655|238656|240964|240981|241643|242185|242186|242346|242347|242349|242350|242351|242352|242354|242355|242356|242357|242358|242359|242360|242361|242362|242363|242364|242365|242366|242367|242368|242369|242370|242371|242372|242373|242374|242375|242376|242377|242378|242380|242381|242382|242383|242384|242385|242386|242387|242389|242390|242391|242392|242393|242394|242395|242396|242785|242842|242843|242844|242845|242846|242847|242848|242849|242850|242850|242851|242852|242853|242854|242856|242857|242858|242859|242860|242861|242862|242863|242864|242864|242865|242866|242867|242868|242869|242870|242871|242872|242873|242874|242875|242876|242877|242878|242879|242880|242881|242882|242883|242884|242886|243640|243641|243656|243657|243658|243659|243660|243661|243662|243663|243664|243666|243667|243668|243669|243670|243671|243672|243673|243674|243675|243676|243677|243678|243679|243680|243681|243682|243683|243685|243686|243687|243688|244325|244329|244332|244333|244334|244335|244336|244337|244338|244339|244622|244943|244944|244946|244947|244949|244950|244951|244954|244955|244956|244957|244958|244959|244960|244963|244966|244968|244971|244972|244973|244976|244977|244978|244979|244980|246821|246834|246835|246838|246839|246840|246842|246843|246847|246851|248515|248521|248531|248537|248949|248995|250542|259718|259971|260094|260096|260098|260101|260102|260105|260107|260108|260252|260253|260255|260256|260257|260258|260259|260357|261117|261203|261965|261987|262837|263870|264074|264620|264690|264696|264776|264779|264786|264925|264992|265126|284585|285282|287450|287453|287660|287661|287665|287667|287668|318057|334406|334409|339496|339511|345292|346687|358702|358703|358704|358705|358706|358899|358900|358901|358902|358903|358904|358905|358906|358907|358908|358909|358910|358911|358955|358959|358959|359004|359005|359006|359007|359008|360833|361023|363478|363625|366135|366137|366141|366146|366149|366157|366316|366318|366324|366360|366367|366376|366377|366384|366405|366962|366964|366965|366971|368244|374259|374274|374279|374922|374925|374942|374950|374959|374964|375246|375250|375259|375266|375268|375274|375404|375412|375416|375416|375438|375732|376305|376323|376323|376329|376340|376342|376412|376414|376416|376428|376435|376447|376459|377362|377365|377368|377394|377402|377423|377425|377442|377444|377447|377452|377456|378577|378582|378586|378592|378593|378599|378621|378623|378623|378668|378694|378700|378701|378703|378736|378749|378759|379828|379829|379839|379840|389257|389259|389260|389261|389266|389268|389269|389272|389273|389274|389275|389278|389279|389281|389282|389283|390688|390690|392305|392307|392309|392314|392315|392319|392324|392329|392331|392335|392337|392341|392342|392346|392357|392395|392404|392405|392411|392418|392419|392424|392434|392435|392437|392440|392441|392449|392451|392461|392463|392466|392467|392474|392498|392499|392504|392509|392511|392514|392517|392519|392521|392524|392527|392529|392531|392536|392538|392543|392548|392556|392577|392584|392587|392589|392591|392597|392608|392613|392617|392619|392621|392624|392627|392635|392645|392650|392658|392661|392666|392672|392678|392679|392684|392685|392687|397861|397920|400207|400498|400499|400503|400505|400510|400993|400995|400997|400998|401001|401003|401004|401011|401017|401018|401025|401027|401028|401032|401036|401038|401042|401043|401045|401048|401049|401050|401051|401055|401056|401058|401059|401060|401061|401063|401064|401066|401070|401071|401075|401076|401077|401079|401081|401082|401083|401084|401085|401086|401087|401089|401090|401093|401094|401095|401099|401101|401102|401105|401107|401109|401111|401114|401115|401118|401122|401129|401133|401137|401141|401142|401146|401150|401153|401156|401464|401470|401480|401481|401491|401495|401498|401500|401501|401505|401509|401513|401516|401521|401524|401525|401530|401535|401542|401544|401545|401546|401550|401552|401554|401558|401571|401572|401579|401580|401585|401586|401593|401596|401730|401733|401736|401741|401744|401749|401751|401755|401756|401761|401764|401769|401770|401773|401778|401780|401785|401785|401790|401799|401801|401806|401810|401814|401824|401827|401834|401841|401848|401850|401853|401854|401864|401878|402191|402197|402202|402207|402210|402211|402212|402215|402216|402217|402218|402222|402224|402226|402232|402234|402237|402238|402239|402241|402243|402244|402245|402246|402249|402250|402251|402252|402254|402258|402262|402263|402265|402267|402268|402270|402271|402277|402278|402286|402292|402295|402297|402301|402307|402312|402314|402317|402319|402321|402324|402646|402655|402659|402664|402667|402669|402671|402677|402681|402681|402684|402686|402693|402697|402699|402710|402718|402721|402730|402736|402740|402741|402748|402750|402762|402764|402776|402781|402782|402784|402785|402786|402789|402790|402792|402797|402798|402802|402803|402805|402806|402808|402809|402811|402812|402814|402816|402818|402820|402823|402824|402825|402829|402830|402832|402835|402841|402842|402845|402848|402850|402853|402855|402858|402877|402880|402882|402882|402885|402887|403745|403747|403748|403790|403793|403796|403802|403806|403807|403808|403811|403814|403819|403821|403823|403829|403832|403834|403836|403842|403843|403845|403848|403852|403853|403855|403857|403860|403867|403869|403872|403877|403878|403880|403883|403884|403885|403886|403890|403891|403893|403895|403899|403900|403901|403907|403910|403911|404268|404305|404311|404312|404313|404316|404319|404321|404322|404324|404325|404326|404328|404330|404332|404334|404335|404336|404337|404338|404339|404340|404341|404342|404343|404344|404345|404346|404347|404348|404349|404350|404351|404352|404354|404359|404360|404360|404361|404363|404365|404367|404371|404372|404377|404379|404382|404384|404599|404700|405203|405558|405559|405560|405561|405562|405563|405564|405566|405567|405569|405572|405573|405575|405578|405585|405586|405588|405594|405595|405596|405597|405598|405599|405600|405602|405603|405604|405605|405607|405608|408138|408191|408822|408911|409011|409511|409513|409514|409515|409517|409519|409522|409526|409527|409528|409530|409531|409533|409535|409536|409537|409539|409541|409542|409544|409547|409548|409550|409551|409552|409553|409554|409555|409557|409560|409562|409565|409567|409569|409574|410113|410114|410115|410118|410119|410120|410122|410123|410125|410126|410128|410130|410133|410136|410137|410138|410139|410142|410145|410152|410155|410157|410161|410163|410927|410928|410929|410930|410931|410932|410933|410937|410938|410939|410945|410947|410948|410948|410950|410953|410957|410958|410964|410965|410967|410967|410968|410970|410972|410973|410974|413325|420729|420730|420731|420995|420996|421079|423239|423243|424225|424778|427542|429997|432499|432500|432501|432502|432503|432504|432506|432508|432874|432877|432878|432879|432880|432881|432931|432933|432935|432936|432936|432968|432970|432970|432971|435087|439582|443157|443159|444711|444719|445546|445547|445548|445549|445849|446383|446384|446385|446388|446390|446391|446392|446393|448366|448368|448381|448483|448484|448532|448577|450320|450321|450324|450330|450333|450336|450339|450341|450342|450344|450347|450352|450354|450355|450359|450367|450373|450377|450380|450463|450474|450476|450477|450481|450482|450485|450486|450489|450499|450500|450503|450504|450508|450510|450511|450515|450516|450518|450519|450521|450523|450527|450532|450534|450543|450548|450550|450554|450557|450561|450584|450591|450594|450599|450601|450603|450605|450606|450607|450610|450613|450620|450629|450630|450633|450641|450645|450647|450650|450651|450653|450656|450657|450659|450660|450662|450664|450667|450672|450675|450681|450689|450691|460485|461076|461289|462741|464819|465394|465434|465439|465440|465443|465446|465449|465455|465461|465469|465472|465474|465480|465481|465487|465491|465498|465503|465504|465509|465510|465520|465531|465534|465539|465549|465550|465552|465554|465555|465559|465562|465566|465567|465572|465574|466097|466098|466104|466105|466111|466114|466120|466131|466138|466145|466154|466159|466160|466162|466164|466165|466169|466173|466176|466178|466184|466186|466187|466188|466189|466190|466196|466198|466200|466202|466203|466205|466206|466210|466211|466213|466215|466216|466217|466219|466223|466225|466226|466227|466228|466230|466231|466233|466236|466239|466240|466242|466245|466247|466249|466250|466251|466252|466253|466254|466256|466257|466258|466259|466261|466263|466268|466269|466270|466275|466277|466279|466280|466283|466284|466285|466291|466297|466303|466305|466306|466312|466316|466319|466322|466326|466348|466351|466355|466358|466361|466373|466374|466385|466386|466394|466398|466399|466410|466412|466415|466418|466425|466431|466432|466435|466439|466443|466449|466453|466482|466484|466488|466496|466499|466509|466510|466514|466518|466520|466521|466522|466523|466524|466525|466527|466535|466547|466550|467062|467094|467095|467103|467104|467107|467113|467117|467121|467126|467129|467132|467141|467144|467146|467150|467152|467153|467156|467158|467165|467167|467170|467172|467175|467180|467181|467186|467187|467187|467189|467192|467192|467379|468045|468047|468049|468052|468053|468055|468056|468060|468061|468061|468064|468070|468074|468080|468081|468084|468087|468088|468091|468092|468093|468098|468099|468101|468104|468105|468109|468110|468111|468114|468116|468118|468119|468125|468126|468137|468138|468300|468317|468319|468321|468321|468323|468335|468342|468344|468347|468351|468354|468365|468377|468393|468398|468402|468407|468408|468409|468410|468413|468415|468429|468431|468440|468445|468448|468453|468459|468460|468462|468467|468473|468485|468489|468498|468499|468499|468505|468506|468521|468524|468526|468556|468557|468558|468560|468561|468568|468569|468579|468587|468589|468592|468603|468605|468618|468621|468622|468627|468631|468635|468653|468655|468662|468668|468668|468676|468682|468684|468692|468695|468700|468702|468706|468714|468718|468725|468731|468732|468734|468738|469117|469847|469849|469853|469859|469997|470000|470003|470005|470009|470015|470017|470018|470021|470024|470025|470033|470034|470045|470052|470053|470055|470064|470067|470068|470070|470071|470076|470077|470079|470086|470088|470092|470850|470852|470853|470925|470935|470936|470938|470944|470950|470951|470955|470957|470960|470962|470966|470971|470973|470983|470990|470991|470993|471011|471012|471016|471023|471305|471307|471309|471410|471413|471414|471416|471419|471429|471430|471432|471433|471438|471441|471442|471444|471445|471449|471450|471451|471453|471459|471468|471469|471472|471778|471779|471780|471816|471821|471822|471824|471825|471826|471828|471829|471831|471837|471839|471842|471845|471846|471850|471859|471860|471861|471864|471874|471876|471879|472442|472444|472455|472479|472480|472493|472497|472498|472499|472501|472503|472512|472513|472515|472517|472518|472525|472526|472529|472532|472533|472538|472539|472542|472543|472544|472549|472550|472552|472554|472555|472562|472563|472564|472565|472566|472568|472572|472573|472575|472576|472579|472582|472583|472585|472587|472591|472592|472596|472598|472601|472607|472608|472609|472612|472613|472614|472615|472616|472619|472620|472622|472624|472629|472631|472632|472636|472638|472641|472642|472644|472645|472649|472653|472654|472656|472658|472659|472662|472663|472665|472668|472671|472674|472676|472677|472678|472680|472681|472685|472690|472693|472696|472697|472699|472724|472730|472734|472752|474927|475708|475787|476089|476870|477422|477433|477442|477449|477464|477465|477469|477478|477481|477484|477493|477496|477503|477504|477505|477506|477507|477531|477533|477536|477542|477544|477545|477547|477559|477561|477569|477570|477571|477578|477581|477581|477582|477584|477589|477590|477591|477593|477595|477597|477599|477603|477612|477616|477619|477621|477623|477628|477634|477638|477639|477642|477645|477647|477652|477654|477655|477656|477658|477668|477672|477673|477677|477682|477688|477689|477697|477700|477704|477706|477708|477709|477711|477714|477716|477723|477724|477729|477733|477734|477736|477740|477741|477744|477758|477761|477793|477795|477798|477806|477809|477813|478015|478020|478027|478039|478047|478062|478069|478077|478080|478095|478109|478113|478122|478128|478130|478143|478145|478168|478170|478189|478191|478191|478195|478245|478249|478270|478285|478300|478309|478310|478325|478892|479014|479023|479025|479030|479032|479037|479044|479050|479055|479058|479059|479062|479063|479064|479066|479067|479068|479070|479076|479084|479086|479087|479089|479090|479100|479107|479109|479110|479114|479116|479119|479120|479122|479124|479125|479128|479130|479136|479139|479141|479143|479145|479148|479150|479152|479157|479162|479163|479166|479168|479176|479185|479190|479196|479197|479198|479201|479201|479210|479219|479224|479226|479227|479229|479237|479239|479246|479254|479255|479260|479262|479262|479730|479730|479745|479753|479770|479786|479793|479797|479803|479813|479815|479824|479842|479860|479871|479872|479882|479897|479927|479949|479950|479956|479959|479975|479991|480001|480006|480017|480019|480023|480028|480037|480040|480046|480047|480050|480051|480052|480056|480058|480059|480068|480073|480074|480075|480078|480083|480087|480092|480095|480097|480102|480103|480105|480110|480113|480114|480120|480122|480128|480130|480131|480132|480135|480138|480139|480140|480144|480151|480153|480155|480157|480162|480165|480169|480175|480181|480184|480186|480341|480349|480352|480353|480358|480360|480365|480369|480370|480373|480374|480375|480377|480377|480378|480382|480383|480386|480387|480388|480461|480477|480478|480479|480480|480481|480488|480491|480492|480493|480494|480501|480740|482349|482359|482360|482364|482370|482378|482384|482385|482386|482391|482392|482395|482403|482878|482881|482886|482896|482898|482916|482922|482928|482937|482948|483023|483025|483026|483029|483040|483050|483054|483056|483058|483062|483065|483066|483067|483087|483103|483104|483106|483230|483232|483234|483239|483242|483248|483252|483263|483265|483269|483277|483284|483288|483298|484375|484638|484651|484660|484665|484680|484685|484691|484702|484718|484732|484736|484751|484759|484803|484805|484807|484808|484833|484837|484843|484855|484860|484861|484979|484987|485009|485029|485030|485032|485043|485051|485052|485060|485064|485066|485084|485199|485199|485210|485210|485225|485226|485233|485256|485257|485259|485268|485274|485275|485275|485276|485355|485357|485365|485368|485375|485382|485401|485409|485445|485454|485463|485467|485468|485474|485479|485488|485493|485496|485497|485517|485520|485537|485556|485569|485570|485573|485574|485575|485582|485584|486643|486644|486650|486652|486885|486912|486931|486942|487660|487661|487778|487882|487901|487936|487976|487980|488006|488017|506211|506216|506281|508111|508390|514061|516179|517620|517621|517623|517626|517630|517631|517645|517653|517655|517657|517661|517665|517668|517669|517672|517673|517675|517707|517709|517713|517717|517718|517727|517735|517736|517737|517740|517742|517746|517747|517748|517752|517753|517757|517759|517761|517763|517764|517768|517769|517772|517774|517776|517777|517778|517781|517790|517792|517799|517801|517806|517807|517809|517810|517812|517883|517886|517887|517890|517892|517899|517901|517907|517911|517913|517915|517916|528518|529753|529757|529762|529766|529767|529768|529780|529782|529784|529785|529793|529806|529809|529811|529816|529818|529820|529823|529825|529826|529827|529830|529832|529834|529836|529837|529839|529840|529842|529843|529844|529845|529846|529851|529852|529857|529858|529870|529872|529880|529883|529890|529891|529895|529899|529901|529905|529917|529920|529921|529933|529934|529937|529939|530108|530111|530115|530116|530123|530125|530128|530132|530133|530135|530139|530148|530153|530167|530169|530175|530180|530181|530190|530193|530321|530322|530333|530335|530348|530349|530353|530357|530362|530368|530369|530374|530375|530376|530377|530379|530384|530386|530387|530389|530512|530514|530840|530844|531041|531046|531047|531064|531318|531322|531324|531326|531328|531329|531331|531341|531345|531347|531361|531376|531380|531392|531395|531405|531413|531416|531419|531424|531426|531429|531436|531438|531439|531480|531483|531486|531492|531494|531498|531499|531504|531506|531508|531514|531515|531518|531522|531525|531529|531534|531536|531539|531539|531548|531551|531562|531568|531572|531573|531576|531577|531581|531585|531590|531595|531602|531603|531605|531611|531615|531622|531625|531635|531637|531639|531644|531645|531650|531651|531654|531655|531658|531668|531669|531797|531802|531812|531815|531820|531824|531834|531836|531840|531846|531850|531853|531856|531858|531869|531874|531879|534097|534098|534100|534102|534105|534110|534111|534113|534114|534119|534120|534123|534124|534125|534128|534130|534131|534133|534136|534137|534138|534139|534140|534149|534150|534152|534154|534157|534162|534163|534166|534173|534174|534178|534179|534205|534215|534220|534224|534225|534229|534233|534235|534237|534240|534244|534249|534253|534257|534262|534263|534270|534273|534274|534275|534277|534279|534283|534286|534289|534291|534550|534631|534638|534640|534645|534647|534650|534654|534663|534666|534669|534670|534672|534676|534681|536166|536166|536431|536456|536457|536461|536462|536463|536468|536508|536537|536538|538692|539202|539203|539341|539342|539343|539344|539345|539408|539409|539410|539411|539412|545728|545730|545967|551913|551916|551936|557430|557432|557479|557481|557483|557485|557836|557838|557840|557842|557844|557846|557848|557850|557852|557854|557856|557858|557860|557862|557864|557866|557868|557870|557872|557874|557876|557893|557895|557897|557899|557901|557903|557905|557907|557909|557911|557913|557915|557917|557919|557921|558080|559071|559073|559075|559077|559079|559081|559083|559085|559087|559089|559091|559093|559095|559097|559099|559101|560824|560828|560829|560830|560833|560839|560870|560874|560875|560879|560882|565258|565464|567475|567477|567482|567936|567937|567939|567940|567947|567948|567952|567953|567957|567959|567963|567965|567967|567975|567983|567985|567989|567996|567999|568000|568002|568007|568009|568011|568012|568016|568017|568027|568028|568034|568035|568649|568650|568653|569362|569364|569368|569376|569377|569379|569381|569383|569386|569389|569393|569398|569403|569406|569411|569418|569419|569421|569425|569427|569432|569435|569441|569445|569450|569451|569458|569465|569788|569794|569800|569804|569921|569926|569928|569937|569938|569942|569950|569956|569957|569960|569977|569979|569984|569985|569991|569993|570007|570008|570009|570010|570018|570021|570024|570025|570027|570158|570160|570161|570163|570164|570167|570169|570171|570173|570175|570176|570178|570184|570188|570189|570195|570201|570203|570209|570210|570212|570213|570214|570714|570716|570718|570720|570822|570826|570832|570834|571360|571362|571363|571368|571369|571371|571373|571374|571377|571379|571381|571384|571386|571389|571390|571392|571395|571398|571401|571402|571405|571406|571409|571414|571417|571421|571422|571425|571667|571670|571673|571759|571760|571762|571772|571777|571779|571780|571782|571783|571787|571788|571789|571795|571797|571799|571803|571804|571807|571811|571813|571817|571819|571821|571828|571830|571831|571836|571838|571843|571845|571847|571848|571853|571854|571855|571861|571868|571870|571877|571886|571887|571892|571894|571897|571899|571906|571915|571918|571928|571929|571939|571948|571955|571961|571966|573207|573211|573212|573214|573295|573297|573298|573302|573303|573306|573313|573318|573322|573325|573326|573330|573334|573335|573337|573338|573342|573649|573652|573653|573902|573906|573907|573908|573910|573911|573912|573914|573918|573919|573920|573924|573926|573927|573928|573931|573932|573935|573937|573939|573949|573950|573951|573955|573959|573961|573962|573963|573968|573975|573976|573977|573978|573979|573981|573982|573983|573984|573986|573987|573988|573990|573991|573992|573993|573995|574003|574008|574012|574014|574021|574023|574026|574031|574033|574036|574039|574042|574044|574047|574048|574053|574054|574057|574059|574277|574544|574545|574546|574547|574548|574549|574550|574551|574552|574553|574554|574555|574556|574557|574558|574559|574560|574561|575204|575205|575206|575224|575225|575226|575227|575228|575229|575230|575231|575232|575233|575234|575235|575236|575237|575238|575239|575240|575241|575242|575518|575599|575601|575619|575620|575621|575623|575661|575662|575663|575664|575665|575666|575667|575956|575957|575958|575959|575961|575962|575964|575965|575966|575967|576014|576016|576019|576019|576020|576020|576021|576022|576023|576024|576024|576025|576026|576027|576045|576046|576047|576048|576049|576050|576051|576272|576273|576274|578400|578414|611219|611220|611224|614353|616517|616522|616528|616529|616534|616536|616542|616546|616551|616558|616559|616562|616565|616568|616570|616578|616579|616585|616593|616594|617773|618370|618377|618388|618393|618395|618401|618406|618407|618410|618413|618414|618419|618421|618422|618425|618442|618443|618447|618448|618449|618454|618455|618457|618742|618746|618747|618760|618764|618768|618770|618771|618772|618787|618794|618796|618802|618803|618815|618817|619015|619026|619028|619030|619039|619127|619487|619492|619513|619556|619567|619612|619702|619733|619748|619756|619799|619806|619901|621527|621529|621530|621531|621533|621534|621592|621593|621650|621862|625973|625976|629360|629361|629362|629363|629364|629365|629366|629367|629368|629369|629370|629371|629372|629373|629374|629375|629376|629377|629378|629379|629380|629381|629382|629383|629384|629385|629386|629387|629388|629389|629390|629391|629392|629393|629394|629395|629396|629397|629398|629399|629400|629401|629402|629403|629404|629405|629406|629407|629408|629409|629410|629411|629412|629413|629414|629415|629416|629417|629418|629419|629420|629421|629422|629423|629424|629425|629426|629427|629428|629429|629430|629431|629432|629433|629434|629435|644378|644379|644380|644381|644382|644383|644384|644385|644386|644387|644388|644389|644390|644391|644392|644393|644394|644395|644396|644397|644398|644399|644400|644401|644402|644403|644404|644405|644406|644407|644408|644409|644410|644411|644412|644413|644414|644415|644416|644417|644418|644419|644420|644421|644422|644423|644424|644425|644426|644427|644428|644429|644430|644431|644432|644433|644434|644435|644436|644437|644438|644439|644440|644441|644442|644443|644444|644445|644446|644447|644448|644449|644450|644451|644452|644453|644454|644455|644456|644457|644458|644459|644460|644461|644462|644463|644464|644465|644466|644467|644468|644469|644470|644471|644472|644473|644474|644475|644476|644477|644478|644479|644480|644481|644482|644483|644484|644485|644486|644487|644488|644489|644490|644491|644492|644493|644494|644495|646268|646269|646270|646271|646272|646273|646274|646275|646276|646277|646278|646279|646280|646281|646282|646283|646284|646285|646286|646287|646288|646289|646290|646291|646292|646293|646294|646295|646296|646297|646298|646299|646300|646301|646302|646303|646304|646305|646306|646307|646308|646309|646310|646311|646312|646313|646314|646315|646316|646317|646318|646319|646320|646321|646322|646323|646324|646325|646326|646327|646328|646329|646330|646331|646332|646333|646334|646335|646336|646337|646338|646339|646340|646341|646342|646343|646344|646345|646346|646347|646348|646349|646350|646351|646352|646353|646354|646355|646356|646357|646358|646359|646360|646361|646362|646363|646364|646365|646366|646367|646368|646369|646370|646371|646372|646373|646374|646375|646376|646377|649234|649235|649236|649237|649238|649239|649240|649241|649242|649243|649244|649245|649246|649247|649248|649249|649250|649251|649252|649253|649254|649255|649256|649257|649258|649259|649260|649261|649262|649263|649264|649265|649266|649267|649268|649269|649270|649271|649272|649273|649274|649275|649276|649277|649278|649279|649280|649281|649282|649283|649284|649285|649286|649287|649288|649289|649290|649291|649292|649293|649294|649295|649296|649297|649298|649299|649300|649301|649302|649303|649304|649305|649306|649307|649308|649309|649310|649311|649312|649313|649314|649315|649316|649317|649318|649319|649320|649321|649322|649323|649324|649325|649326|649327|649328|649329|650727|650728|650741|650742|650787|650790|650791|650793|650794|650926|650930|652467|652470|652473|652474|652555|652557|652614|652718|652725|652819|652823|652825|652826|652832|652834|652848|652852|652854|652857|652861|652979|652985|652992|652994|653001|653127|653160|653162|653172|653190|653192|653194|653195|653198|653201|653203|653232|653234|653238|653241|653243|653274|653277|653279|653282|653307|653309|653311|653484|653486|653489|653495|653498|653599|653600|653613|653614|653692|653693|653694|653701|653702|653705|653707|653708|677971|677972|682632|688804|693831|694139|695762|704262|719580|731171|747250|755030|755031|755032|756004|756005|758023|759198|760472|760625|760939|762865|762868|762869|762870|762873|762874|770771|770774|770783|770785|770793|771687|771688|771690|771700|771702|771704|773483|773486|773488|776377|776741|778246|781147|781148|781149|781154|785217|785222|785224|785227|785228|785233|785665|785667|785669|785671|785672|785673|785679|787095|788168|789250|789600|789663|790173|790174|790175|790176|790177|790178|790179|790180|790181|790182|790183|790184|790185|790186|790187|790188|790189|790190|790191|790192|791562|791563|791564|791565|791566|791567|791568|791569|791570|791571|791572|791573|791574|791575|791576|791577|791578|791802|791803|791803|791804|791805|791806|791807|791808|791809|791810|791811|791812|791813|791814|791815|791816|792024|792025|792026|792027|792028|792029|792030|792031|792032|792033|792034|792035|792036|792037|792780|806707|806711|806713|806715|806717|806718|806720|806721|806734|806742|806747|806749|806752|806754|806760|806769|806770|806773|806780|806794|806801|806802|806804|806805|806807|806822|806825|806832|806837|806842|806860|806861|806872|812638|812644|812655|812657|812668|812671|812674|812680|812683|812684|812691|812696|812708|812709|812712|812718|812735|812742|812745|812746|812747|812751|812772|812777|812778|812781|812784|812787|812788|812796|812801|812803|812813|812817|812819|812821|812822|812831|812835|812840|812843|812847|812850|812852|812856|812986|814183|814184|814185|814205|814225|814230|814239|814241|814253|814261|814264|814270|814282|814283|814284|814287|814294|814299|814304|814305|814308|814318|814322|814324|814327|814335|814339|814342|814364|814367|814371|814373|815010|815013|815014|815018|815023|815031|815039|815040|815044|815050|815073|815076|815084|815085|815089|815091|815094|815100|815116|815120|815123|815131|815136|815629|815702|815703|815760|815763|815765|815766|818445|818454|818455|818459|818460|818462|818466|818472|818477|818482|818486|818489|818493|818494|818496|818497|818505|818517|818519|818533|818535|818538|818559|818568|818571|818572|819014|819107|819109|819110|819111|819112|819113|819114|819115|819116|819117|819118|819119|819120|819121|819122|819123|820798|820799|820800|820801|820802|820803|820804|820805|820806|820807|820808|820809|820810|820811|820812|820813|820814|821129|821130|821131|821132|821134|821135|821136|821137|821138|821139|821140|821141|821142|821143|821144|821145|821146|821147|821393|821394|821412|821413|821414|821415|821416|821417|821418|821419|821420|821421|821423|821424|821425|821426|821427|821428|821429|821430|821431|821432|821433|821434|821435|821436|825661|825662|825663|825664|825665|825666|825667|825668|825669|825670|825671|825672|825673|825674|825675|825676|825677|825678|825679|825680|825681|825682|825683|825684|825685|825686|825687|825688|825689|825690|825691|825692|825693|825694|825695|825696|825697|825698|825699|825700|825701|825702|825703|825704|825705|825706|825707|825708|825709|825710|825711|825712|825713|825714|825715|843551|843552|843553|843554|843555|843556|843557|843558|843559|843560|843561|843562|843563|843564|843565|843566|843567|843568|843569|843570|843571|843572|843573|843574|843575|843576|843577|843578|843579|843580|843581|843582|843583|843584|843585|843586|843587|843588|843589|843590|843591|843592|843593|843594|843595|843596|843597|843598|843599|843600|843601|843602|843603|843604|843605|843606|843607|843608|843609|843610|843611|843612|843613|843614|843615|843616|843617|843618|843619|843620|843621|843622|843623|843624|843625|843626|843627|843628|843629|843630|843631|843632|843633|843634|843635|843636|843637|843638|843639|843640|843641|843642|843643|843644|843645|843646|843647|843648|843649|845726|845727|845728|845729|845730|845731|845732|845733|845734|845735|845736|845737|845738|845739|845740|845741|845742|845743|845744|845745|845746|845747|845748|845749|845750|845751|845752|845753|845754|845755|845756|845757|845758|845759|845760|845761|845762|845763|845764|845765|845766|845767|845768|845769|845770|845771|845772|845773|845774|845775|845776|845777|845778|845779|845780|845781|845782|845783|845784|845785|845786|845787|845788|845789|845790|845791|845792|845793|845794|845795|845796|845797|845798|845799|845800|845801|845802|845803|845804|845805|845806|845807|845808|845809|845810|845811|845812|845813|845814|845815|845816|845817|845818|845819|845820|845821|845822|845823|845824|845825|845826|845827|845828|845829|845830|845831|845832|845833|845834|849108|849109|849110|849111|849112|849113|849114|849115|849116|849117|849118|849119|849120|849121|849122|849123|849124|849125|849126|849127|849128|849129|849130|849131|849132|849133|849134|849135|849136|849137|849138|849139|849140|849141|849142|849143|849144|849145|849146|849147|849148|849149|849150|849151|849152|849153|849154|849155|849156|849157|849158|849159|849160|849161|849162|849163|849164|849165|849166|849167|849168|849169|849170|849171|849172|849173|849174|849175|849176|849177|849178|849179|849180|849181|850833|850835|850837|850839|850878|851147|851396|851879|851908|851910|851912|852233|852426|852649|852773|852774|852776|852780|852782|852783|852810|852811|852813|852899|852903|852905|853016|853017|853018|853019|853020|853021|858413|858418|858434|858462|858798|858799|858800|858801|858802|858803|858804|858805|858806|858810|858812|858813|861551|874991|883671|883672|883673|883674|903622|903644|908647|908654|908689|908693|911543|913595|913608|913630|913633|913642|913648|913677|914043|914050|914064|914065|914091|914096|914097|914102|914142|914146|914151|914935|914936|914966|915261|915568|917219|917840|917857|917866|918108|919316|919635|919754|919755|919756|920208|920293|920330|920359|922543|922544|922545|922546|922547|922548|922549|922550|922551|922552|922553|922554|922555|922556|922557|922558|922559|922560|922561|922562|922563|922564|922565|922566|927698|927699|927700|927701|927702|927703|927704|927705|927706|927707|927708|927709|927710|927711|927712|927713|927714|927715|927716|927717|927718|927719|927720|927721|927722|927723|927724|927725|927726|927727|927728|927729|927730|927731|927732|927733|927734|927735|927736|927737|927738|927739|927740|927741|927742|927743|927744|927745|927746|927747|927748|928400|928401|928402|928403|928404|928405|928406|928407|928408|928409|928410|928411|928412|928413|928414|928415|928416|928417|928418|928419|928420|928421|928422|928423|928424|928425|928426|928427|928428|928429|928430|929422|929423|929424|929425|929426|929427|929428|929429|929430|929431|929432|929433|929434|929435|929436|929437|929438|929439|929440|929441|929442|929443|929444|929445|929446|929447|929448|929449|929450|929451|931108|931109|931110|931111|931112|931113|931114|931115|931116|931117|931118|931119|931120|931121|931122|931123|931124|931125|931126|931127|931128|931129|931130|931131|931132|931133|937354|937355|937356|937357|937358|937359|937360|937361|937362|937363|937364|937365|937366|937367|937368|937369|937370|937371|937372|937373|937374|937375|937376|937377|937378|937379|937380|937381|937382|937383|937384|937385|937386|938065|938066|938067|938068|938069|938070|938071|938072|938073|938074|938075|938076|938077|938078|938079|938080|938081|938082|938083|938084|938085|938086|938087|938088|938089|938090|938091|938092|938093|938094|938095|938096|938097|938098|938099|938100|938101|938102|938103|938104|938105|938106|938107|938108|939227|939228|939229|939230|939231|939232|939233|939234|939235|939236|939237|939238|939239|939240|939241|939242|939243|939244|939245|939246|939247|939248|939249|939250|939251|939252|939874|940355|940356|940424|940425|940526|940689|940690|940691|940692|940693|941130|941131|941132|941188|941189|941190|941191|941275|941276|941277|941278|942581|942582|942583|942584|942585|942586|942587|942588|942589|942590|942591|942592|942593|942594|942595|942596|942597|942598|942599|942600|942601|942602|942603|949300|949301|949302|949303|949304|949305|949306|949307|949308|949309|949310|949311|949312|949313|949314|949315|949316|949317|949318|949319|949320|949321|949322|949323|949324|949325|949326|949327|949328|949329|950089|950090|950091|950092|950093|950094|950095|950096|950097|950098|950099|950100|950101|950102|950103|950104|950105|950106|950107|950108|950109|950110|950111|950112|950113|950114|950115|950116|950117|950118|950119|950120|950121|950122|950123|950124|950125|950126|950127|950128|950313|951367|951368|951369|951370|951371|951372|951373|951374|951375|951376|951377|951378|951379|951380|951381|951382|951383|951384|951385|951386|951387|951388|951389|951390|951391|951392|951393|951394|951395|951396|951397|951398|951399|951400|951401|951402|951403|951404|952910|952911|952912|952913|952914|952915|952916|952917|952918|952919|952920|952921|952922|952923|957694|957695|957696|957697|957698|957699|957700|957701|957702|957703|957704|957705|957706|957707|957708|957709|958217|958218|958219|958220|958221|958222|958223|958224|958225|958226|958227|958228|958229|958230|958231|959042|959043|959044|959045|959046|959047|959048|959049|959050|959051|959052|959053|959054|959055|959056|959057|959624|959625|959626|959627|960150|960228|960229|960230|960338|960339|960462|960891|960962|960963|960964|962061|962063|964192|964354|964489|964490|964551|964653|966623|966680|966852|966854|970982|970983|970984|971055|973091|973092|976547|976549|980513|980717", + "upstreamId": "16282|16284|16285|18058|18062|18062|18064|18072|18075|18076|18077|18083|18083|19775|19775|19776|19777|19777|19777|20630|20631|20633|20635|20636|20637|20637|20638|20639|20639|20642|20642|23084|23221|24359|24361|24364|24365|24368|24381|27272|27395|28166|28975|32700|32700|32701|32709|32710|32711|32712|32713|32714|32714|32714|32716|32720|32732|32732|39492|45973|45981|45982|45982|46005|46022|46045|46072|46087|46090|46091|46098|46116|46121|46122|46135|46137|46144|46150|46152|46154|46163|46172|46231|46247|46249|46254|46257|46258|46290|46386|46390|46411|46415|46419|46423|46458|46510|46513|46531|46540|46544|46554|46567|46599|46630|46632|46633|46666|46669|46682|46735|46764|46785|46789|46816|48348|49979|49982|49984|49995|49997|50001|50006|50008|50009|50011|50242|50247|50250|50251|50254|50254|50256|50257|50260|50266|50269|50270|52759|65702|65705|65709|65711|65713|65729|65743|65744|65757|65761|65767|65771|65772|65776|65781|65782|65783|65787|65791|65795|65797|65801|65807|65815|65819|65823|65830|65833|65848|65852|65854|65855|65861|65869|65870|65875|65881|65885|65887|65888|65891|65898|65926|65931|65937|65941|65948|65961|65979|65983|65984|65987|65995|65999|66009|66010|66022|66023|66038|66044|66051|66054|66076|66078|66086|66087|66089|66097|66103|66104|66114|66122|66134|66150|66151|66155|66167|66190|66201|66213|66216|66222|66233|66246|66252|66257|66260|66263|66265|66271|66331|66334|66343|66345|66348|66356|66361|66363|66364|66365|66391|66394|66401|66407|66410|66421|66427|66440|66441|66445|66456|66460|66467|66472|66477|66481|66482|66497|66505|66517|66521|66529|66547|66551|66560|66566|66577|66580|66588|66602|66609|66614|66615|66619|66635|66638|66642|66643|66656|66660|66665|66694|66699|66705|66712|66718|66721|66736|66746|66747|66752|66760|66763|66771|66772|66774|66785|66788|66793|66798|66809|66815|66816|66825|66837|66855|66857|66858|66902|66909|66917|66929|66930|66932|66944|66950|66953|66956|66960|66971|66981|66985|67016|67036|67037|67040|67043|67048|67052|67056|67070|67098|67117|67136|67156|67169|67182|67187|67193|67198|67207|67212|67217|67221|67226|67243|67246|67247|67248|67256|67262|67281|67282|67301|67308|67310|67315|67316|67317|67326|67334|67353|67363|67367|67375|67378|67381|67394|67397|67413|67418|67424|67431|67458|67463|67475|67482|67483|67488|67494|67518|67521|67525|67538|67551|67560|67563|67566|67576|67591|67592|68773|68777|68778|68781|68785|68786|68793|68794|68798|68800|68805|68810|68813|68816|68817|68823|68826|68832|68834|68847|68848|68852|68856|68859|68860|68865|68867|68873|68883|68888|68892|68894|68906|68926|68937|68939|68940|68944|68949|68950|68955|68961|68963|68969|68975|68981|68986|68987|68988|68991|68992|68993|68994|69000|69006|69007|69017|69024|69037|69049|69062|69065|69070|69077|69082|69087|69089|69091|69101|69107|69108|69113|69114|69119|69125|69128|69130|69147|69149|69160|69168|69171|69175|69178|69193|69195|69197|69198|69202|69220|69229|69232|69238|69250|69263|69264|69265|69270|69271|69282|69283|69297|69300|69304|69305|69308|69315|69324|69329|69333|69336|69349|69353|69355|69365|69366|69369|69372|69374|69375|69388|69390|69400|69408|69432|69433|69436|69441|69442|69448|69450|69451|69452|69455|69460|69464|69470|69489|69492|69494|69524|69537|69539|69541|69544|69545|69552|69555|69556|69557|69559|69560|69564|69565|69567|69571|69577|69581|69586|69596|69604|69606|69611|69618|69620|69621|69643|69644|69647|69657|69666|69667|69670|69685|69686|69700|69701|69704|69706|69719|69736|69737|69739|69745|69763|69769|69773|69784|69789|69790|69792|69793|69801|69815|69817|69820|69827|69832|69842|69848|69853|69856|69857|69867|69869|69874|69880|69882|69888|69892|69899|69903|69915|69923|69934|69940|69944|69949|69953|69960|69965|69975|69982|70010|70018|70033|70037|70040|70044|70045|70048|70051|70052|70058|70063|70074|70077|70089|70093|70095|70097|70112|70113|70118|70119|70121|70122|70124|70138|70141|70142|70145|70147|70147|70154|70155|70159|70161|70162|70163|70164|70165|70170|70171|70178|70192|70196|70198|70199|70205|70214|70217|70221|70222|70223|70224|70236|70247|70253|70254|70256|70262|70266|70268|70284|70297|70302|70303|70311|70317|70318|70320|70325|70327|70331|70347|70350|70351|70353|70358|70359|70361|70362|70366|70367|70368|70370|70371|70379|70385|70389|70390|70395|70406|70413|70415|70417|70432|70440|90951|92829|94585|94591|94592|94598|94600|94602|94604|94605|94606|94608|94609|94610|94611|94612|97097|97112|97118|97122|97241|102755|131074|131092|131092|131212|131241|131247|131381|131474|131481|131503|131517|131541|131548|131560|131601|131651|131660|131671|131696|131716|132077|132078|132079|132080|132081|132082|132083|132085|132086|132087|132088|132089|132090|132091|132092|132093|132094|132095|132096|132097|132098|132099|132100|132101|132102|132103|132103|132104|132105|132107|132108|132109|132110|132111|132112|132113|132114|132115|132116|132117|132118|132119|132120|132121|132122|132123|132125|132126|132127|132128|132129|132130|132131|132132|132133|132134|132135|132136|132137|132138|132139|132140|132141|132142|132143|132144|132145|132146|132147|132148|132150|132151|132152|132153|132154|132155|132156|132157|132158|132159|132162|132163|132164|132165|132166|132167|132167|132170|132170|132171|132172|132173|132174|132175|132176|132177|132179|132180|132181|132182|132183|132184|132185|132186|132187|132188|132189|132190|132191|132191|132191|132192|132193|132194|132195|132196|132197|132198|132198|132199|132200|132201|132202|132203|132204|132204|132205|132206|132207|132208|132209|132210|132211|132212|132213|132214|132215|132216|132217|132218|132219|132220|132221|132221|132222|132223|132224|132225|132226|132227|132228|132229|132230|132231|132232|132233|132234|132236|132237|132237|132238|132239|132240|132241|132242|132243|132244|132245|132246|132247|132248|132249|132250|132250|132251|132251|132252|132253|132254|132255|132257|132258|132259|132260|132261|132262|132263|132264|132265|132267|132268|132269|132270|132271|132272|132273|132274|132275|132276|132277|132278|132279|132280|132281|132282|132283|132284|132285|132286|132287|132288|132289|132290|132291|132292|132293|132365|132366|132367|132368|132369|132370|132371|132372|132373|132374|132375|132376|132411|132413|132420|132421|132422|132422|132423|132424|132427|132522|132628|132629|132630|132631|132785|132796|132797|132798|132800|132801|132803|132804|132812|132814|132815|132821|132823|132824|132825|132826|132827|132828|132834|132842|132842|132843|132844|132847|132847|132849|132849|132851|132857|132858|132865|132869|132870|132871|132872|132873|132876|132885|132897|132903|132904|132904|132906|132913|132913|132916|132920|132928|133169|133170|133171|133172|133173|133174|133175|133176|133177|133178|133179|133180|133181|133182|133184|133185|133187|133188|133189|133190|133191|133192|133193|133194|133195|133196|133197|133198|133199|133200|133201|133202|133203|133204|133205|133206|133207|133372|133374|133385|133496|133498|133499|133499|133501|133501|133502|133503|133503|133504|133505|133506|133507|133507|133508|133509|133510|133511|133511|133513|133513|133514|133516|133516|133516|133517|133518|133519|133520|133520|133521|133522|133523|133523|133524|133525|133526|133527|133527|133528|133529|133529|133530|133531|133532|133532|133532|133533|133534|133535|133536|133538|133539|133541|133542|133543|133544|133545|133546|133547|133549|133549|133573|133574|133574|133575|133576|133576|133577|133578|133579|133580|133581|133582|133583|133585|133586|133587|133590|133592|133593|133593|133594|133595|133596|133597|133599|133600|133601|133601|133601|133602|133603|133604|133605|133606|133607|133608|133609|133610|133610|133611|133612|133613|133613|133614|133615|133617|133618|133619|133620|133621|133622|133623|133624|133625|133626|133627|133627|133629|133630|133631|133632|133634|133636|133637|133640|133641|133641|133642|133643|133644|133644|133646|133647|133648|133649|133649|133650|133650|133651|133652|133652|133653|133654|133655|133655|133656|136460|136460|136499|136500|136505|136512|136527|136528|136529|136569|136693|136695|136696|136699|136703|136704|136705|136710|136711|136712|136714|136718|137018|137019|137020|137342|137347|137362|137364|137371|137375|137377|137379|137379|137380|137380|137484|137487|137489|137490|137491|137491|137492|137493|137494|137495|137495|137496|137497|137497|137498|137499|137500|137500|137625|137626|137627|137627|137628|137629|137630|137631|138731|138732|138733|138734|138735|139459|139488|139515|139778|139803|139838|139839|139840|139841|139842|139843|139844|139845|139846|139847|139848|139849|139850|139851|139852|139853|139854|139855|139856|139856|139857|139858|139859|139859|139860|139861|139862|139863|139864|139865|139866|140199|140200|140201|140202|140203|140204|140240|140243|140250|140254|140257|140261|140263|140271|140276|140278|140279|140282|140283|140283|140284|140285|140287|140443|140444|140445|140446|140447|140448|140450|142277|142278|142279|142280|150134|150279|150280|150281|150282|150283|150284|150471|150485|150486|150502|150504|150509|150522|150526|150533|150539|150548|150549|150556|150566|150572|150575|150585|150589|150595|150608|150629|150630|150641|150642|150646|150646|150647|150652|150652|150659|150673|150673|150679|150688|150692|150698|150698|150699|150709|150716|150719|150721|150741|150749|150750|150760|150764|150765|150767|150773|150777|150819|150823|150847|150848|150850|150881|150892|150896|150897|150898|150899|150900|150915|150941|150945|150947|150952|150953|150962|150970|150984|151019|151028|151029|151032|151033|151034|151050|151051|151054|151064|151086|151088|151095|151095|151096|151096|151098|151099|151101|151103|151104|151116|151116|151118|151122|151149|151179|151201|151213|151215|151217|151241|151242|151249|151259|151260|151268|151274|151275|151302|151304|151304|151307|151322|151327|151338|151341|151348|151361|151380|151380|151408|151412|151412|151416|151423|151423|151432|151447|151452|151453|151458|151459|151463|151467|151468|151475|151477|151487|151491|151493|151497|151498|151499|151518|151526|151531|151532|151541|151543|151550|151552|151570|151570|151574|151575|151575|151580|151587|151594|151598|151604|151643|151649|151650|151651|151661|151661|151686|151687|151688|151688|151689|151691|151691|151695|151707|151739|151746|151749|151755|151755|151760|151762|151763|151767|151784|151792|151793|151817|151827|151828|151831|151833|151837|151840|151841|151847|151849|151853|151861|151865|151870|151884|151892|151893|151898|151910|151923|151930|151936|151936|151939|151945|151947|151961|151980|151981|151994|152014|152024|152040|152042|152050|152054|152056|152057|152060|152060|152066|152066|152069|152072|152075|152080|152082|152085|152087|152089|152090|152094|152104|152114|152115|152117|152120|152122|152126|152144|152146|152147|152150|152159|152162|152162|152164|152165|152170|152172|152177|152179|152181|152182|152187|152193|152193|152202|152206|152213|152218|152236|152238|152243|152247|152247|152254|152255|152259|152265|152268|152269|152278|152282|152285|152287|152293|152298|152300|152305|152309|152310|152314|152414|152419|152420|152425|152437|152442|152446|152446|152447|152448|152451|152460|152470|152474|152480|152483|152486|152514|152520|152523|152523|152564|152565|152612|152614|152615|152623|152624|152627|152628|152629|152631|152649|152656|152659|152662|152663|152670|152670|152679|152722|152731|152733|152735|153592|153593|153594|153595|153596|153597|153598|153601|153602|153603|153605|153608|153609|153610|153611|153613|153615|153617|153619|153620|153621|153622|153623|153624|153627|153641|153642|153643|153691|153692|153693|153694|153695|153696|153697|153698|153698|153699|153702|153704|153705|153707|153708|153709|153710|165476|166265|166266|167479|167480|167481|167482|167483|167484|167485|167487|167488|167489|167490|167492|167493|167494|167495|167496|167497|167498|167499|167500|171818|171819|171820|171822|179942|179944|179946|179947|179948|179949|179951|179952|179953|179954|179955|179956|179957|179958|179959|179960|179961|179962|179963|179965|179968|179969|179970|179971|179974|179976|180382|180391|180391|180411|180411|180463|180464|180464|180465|180483|180483|180484|180491|180494|180519|180522|180558|180597|180604|180628|180647|180660|180668|180697|180706|180707|180708|180709|180710|180711|180712|180713|180714|180715|180716|180718|180719|180720|180721|180722|180723|180724|180727|180728|180729|180730|180731|180732|180733|180734|180735|180736|180737|180738|180739|180740|180741|180742|180742|180743|180744|180745|180746|180748|180749|180750|180751|180752|180753|180754|180754|180755|180756|180757|180758|180849|180859|180873|180880|180923|180924|180925|180925|180926|180927|180928|180929|180932|180934|180935|180935|180936|180936|180938|180940|180941|180942|180943|180944|180947|180948|180949|180950|180951|180952|180954|180956|180957|180958|180959|180960|180960|180961|181089|181090|181091|181092|181093|181095|181096|181097|181098|181099|181100|181100|181101|181102|181103|181104|181105|181106|181106|181107|181108|181110|181112|181113|181116|181116|181117|181118|181120|181121|181122|181122|181123|181129|181130|181133|181139|181144|181146|181746|181749|181750|181753|181754|181755|181756|181758|181759|181761|181762|181763|181764|181766|181769|181770|181771|181772|181773|181774|181776|181777|181778|181779|181780|181781|181783|181785|181786|181787|181789|181790|181791|181792|181793|181794|181797|181800|181805|181807|181809|181810|181811|181812|181813|181814|181815|181816|181817|181818|181820|181821|181822|181823|181824|181825|181826|181827|181828|181830|181832|181833|181834|181835|181836|181837|181838|181839|181840|181841|181842|181843|181844|181845|181846|181849|181850|181851|181852|181853|181855|181856|181857|181858|182250|183085|183104|183106|183113|183176|183194|183202|183215|183230|183245|183260|183319|183360|183380|183384|183391|183401|183401|183448|183467|183693|183739|183894|183990|184093|184151|184152|184153|184154|184155|184156|184157|184158|184159|184160|184161|184162|184163|184165|184166|184167|184168|184169|184170|184171|184173|184176|184177|184179|184180|184182|184183|184185|184186|184188|184191|184192|184193|184194|184195|184197|184198|184199|184200|184201|184202|184203|184204|184205|184206|184207|184208|184209|184210|184211|184212|184213|184214|184217|184218|184219|184220|184221|184222|184223|184224|184225|184226|184228|184229|184230|184231|184233|184234|184235|184236|184237|184239|184239|184240|184243|184246|184247|184248|184249|184250|184251|184252|184253|184255|184256|184258|184259|184260|184261|184262|184263|184264|184265|184268|184269|184271|184272|184273|184274|184276|184277|184278|184279|184280|184281|184282|184284|184285|184286|184287|184288|184289|184290|184291|184293|184295|184297|184298|184299|184300|184301|184302|184303|184304|184305|184306|184379|184420|185052|185093|185131|185186|185187|185188|185189|185190|185190|185192|185194|185195|185197|185198|185199|185200|185201|185203|185204|185205|185207|185207|185210|185211|185212|185213|185213|185214|185215|185216|185218|185222|185223|185224|185225|185226|185227|185228|185230|185231|185233|185236|185237|185238|185240|185242|185243|185244|185245|185246|185246|185247|185250|185251|185253|185254|185254|185256|185257|185257|185258|185259|185260|185260|185261|185263|185264|185266|185267|185268|185270|185272|185273|185275|185277|185278|185279|185280|185281|185283|185284|185285|185286|185287|185289|185290|185292|185293|185294|185295|185296|185296|185297|185297|185298|185300|185302|185303|185304|185305|185306|185308|185309|185310|185311|185312|185314|185315|185316|185317|185319|185320|185321|185322|185323|185326|185327|185328|185329|185330|185343|185421|185570|185571|185573|185574|185575|185576|185577|185578|185580|185582|185586|185587|185588|185589|185591|185592|185594|185595|185597|185599|185601|185603|185604|185605|185606|185608|185609|185610|185611|185612|185613|185616|185618|185619|185620|185621|185622|185623|185624|185626|185628|185629|185630|185631|185633|185634|185635|185636|185637|185638|185639|185641|185642|185643|185644|185647|185648|185649|185651|185653|185654|185655|185656|185658|185659|185660|185661|185662|186141|186143|186206|186208|186210|186211|186212|186213|186214|186215|186216|186217|186218|186219|186220|186220|186221|186222|186222|186223|186224|186242|186266|186267|186268|186269|186270|186271|186872|194513|195020|198622|204580|212111|212127|212128|212129|212130|212131|212132|212133|212134|212135|212136|212137|212139|212140|212141|212142|212143|212851|212910|213142|213143|213144|213149|213150|213151|213152|213153|213153|213154|213155|213156|213157|213159|213160|213161|213162|213163|213164|213165|213166|213167|213168|213169|213170|213171|213172|213174|213175|213176|213177|213178|213179|213180|213181|213182|213183|213184|213185|213186|213240|213311|213356|213357|213358|213359|213360|213361|213362|213363|213364|213365|213368|213369|213370|213371|213372|213373|213374|213375|213376|213377|213378|213379|213380|213474|213475|213476|213477|213478|213479|213480|213481|213482|213482|213483|213483|213484|213485|213486|213487|213488|213489|213490|213491|213492|213493|213512|214572|221137|221138|221139|221140|221141|221142|221143|221144|221145|221146|221147|221148|221149|221150|221151|221152|221153|221154|221155|221156|221157|221158|221159|221160|221161|221162|221163|221164|221165|221166|221167|221168|221169|221170|221171|221172|221174|222036|222037|222059|222103|222132|222311|222331|222440|222454|222455|222456|222457|222458|222459|222460|222461|222462|222463|222464|222465|222466|222467|222468|222470|222471|222472|222473|222474|222475|222476|222477|222478|222479|222480|222481|222482|222483|222484|222485|222555|222698|222699|222700|222701|222702|222703|222704|222705|222706|222707|222708|222710|222710|222712|222713|222714|222715|222716|222717|222718|222719|222720|222722|222723|222724|222725|222726|222727|222856|222857|222858|222859|222860|222861|222862|222864|222865|222866|222867|222868|222869|222870|222871|222872|222873|222874|222875|222876|222877|222878|223302|223303|223304|223305|223306|223307|223362|223602|226342|226359|226365|226367|226812|227551|227570|227661|227662|227664|227665|227666|227667|227668|227669|227670|227671|227672|227673|227674|227675|227676|227677|227678|231993|231993|231995|231996|231997|231997|231998|231999|232000|232001|232001|232002|232003|232005|232006|232006|232007|232008|232009|232011|232012|232013|232112|232117|232119|232121|232122|232123|232124|232125|232127|232128|232129|232130|232132|232133|232134|232135|232138|232142|232143|232144|232302|232304|232305|232306|232307|232310|232311|232314|232315|232317|232319|232321|232322|232324|232325|232327|232328|232331|232333|232337|232341|232343|232344|232345|232347|232349|232352|232354|232355|232356|232357|232360|232363|232365|232368|232369|232370|232371|232372|232377|232378|232380|232383|232384|232388|232389|232391|232392|232393|232394|232395|232396|232397|232398|232400|232401|232402|232403|232404|232405|232408|232410|232411|232414|232416|232417|232418|232419|232421|232422|232423|232424|232425|232426|232427|232431|232433|232434|232435|232436|232437|232438|232439|232440|232441|232445|232446|232448|232449|232451|232452|232454|232455|232456|232457|232458|232459|232460|233900|233966|234008|234015|234099|234197|234284|234298|234321|234343|234353|234923|234933|235148|235150|235153|235155|235156|235157|235158|235160|235161|235163|235164|235165|235168|235169|235170|235172|235175|235176|235178|235179|235180|235181|235185|235187|235188|235189|235190|235191|235195|235197|235203|235207|235208|235211|235213|235214|235215|235216|235217|235218|235220|235221|235222|235223|235224|235226|235227|235228|235229|235230|235231|235232|235235|235239|235241|235242|235244|235245|235246|235247|235249|235250|235251|235252|235253|235254|235256|235257|235260|235262|235263|235265|235267|235268|235269|235270|235274|235276|235276|235278|235280|235288|235289|235291|235292|235293|235294|235296|235297|235298|235299|235301|235302|235304|235305|235306|235307|235309|235310|235311|235313|235316|235318|235321|235323|235324|235325|235328|235329|235335|235336|235338|235341|235343|235344|235345|235348|236066|236141|236254|236254|236255|236256|236256|236257|236260|236264|236266|236268|236269|236270|236272|236273|236275|236276|236277|236278|236280|236283|236284|236285|236287|236291|236294|236295|236296|236297|236298|236299|236300|236301|236302|236303|236304|236305|236306|236306|236307|236309|236311|236312|236313|236314|236315|236317|236318|236319|236320|236324|236325|236329|236330|236331|236332|236332|236335|236335|236338|236339|236340|236341|236343|236345|236346|236347|236348|236350|236352|236353|236355|236356|236358|236358|236359|236360|236361|236362|236363|236364|236365|236368|236369|236370|236372|236373|236375|236377|236379|236380|236381|236384|236386|236387|236388|236389|236390|236391|236392|236393|236395|236396|236397|236399|236400|236402|236403|236404|236407|236409|236410|236411|236413|236414|236415|236416|236418|236421|236423|236426|236427|236430|236431|236432|236433|236435|236586|236587|236588|236589|236592|236593|236594|236595|236596|236597|236598|236599|236602|236604|236605|236606|236606|236607|236608|236611|236613|236614|236615|236616|236617|236619|236622|236623|236624|236625|236626|236628|236631|236632|236633|236634|236634|236635|236638|236639|236641|236642|236644|236645|236646|236648|236649|236650|236651|236653|236654|236655|236656|236662|236665|236666|236668|236669|236673|236674|236675|236676|236677|236678|236679|236681|236685|236686|236687|236688|236689|236690|236691|236692|236693|236694|236695|236697|236698|236700|236702|236703|236704|236705|236710|236711|236712|236713|236714|238355|238620|238621|238622|238623|238624|238626|238627|238629|238630|238631|238633|238634|238635|238636|238637|238638|238639|238640|238641|238642|238643|238644|238645|238646|238647|238649|238650|238652|238654|238655|238656|240964|240981|241643|242185|242186|242346|242347|242349|242350|242351|242352|242354|242355|242356|242357|242358|242359|242360|242361|242362|242363|242364|242365|242366|242367|242368|242369|242370|242371|242372|242373|242374|242375|242376|242377|242378|242380|242381|242382|242383|242384|242385|242386|242387|242389|242390|242391|242392|242393|242394|242395|242396|242785|242842|242843|242844|242845|242846|242847|242848|242849|242850|242850|242851|242852|242853|242854|242856|242857|242858|242859|242860|242861|242862|242863|242864|242864|242865|242866|242867|242868|242869|242870|242871|242872|242873|242874|242875|242876|242877|242878|242879|242880|242881|242882|242883|242884|242886|243640|243641|243656|243657|243658|243659|243660|243661|243662|243663|243664|243666|243667|243668|243669|243670|243671|243672|243673|243674|243675|243676|243677|243678|243679|243680|243681|243682|243683|243685|243686|243687|243688|244325|244329|244332|244333|244334|244335|244336|244337|244338|244339|244622|244943|244944|244946|244947|244949|244950|244951|244954|244955|244956|244957|244958|244959|244960|244963|244966|244968|244971|244972|244973|244976|244977|244978|244979|244980|246821|246834|246835|246838|246839|246840|246842|246843|246847|246851|248515|248521|248531|248537|248949|248995|250542|259718|259971|260094|260096|260098|260101|260102|260105|260107|260108|260252|260253|260255|260256|260257|260258|260259|260357|261117|261203|261965|261987|262837|263870|264074|264620|264690|264696|264776|264779|264786|264925|264992|265126|284585|285282|287450|287453|287660|287661|287665|287667|287668|318057|334406|334409|339496|339511|345292|346687|358702|358703|358704|358705|358706|358899|358900|358901|358902|358903|358904|358905|358906|358907|358908|358909|358910|358911|358955|358959|358959|359004|359005|359006|359007|359008|360833|361023|363478|363625|366135|366137|366141|366146|366149|366157|366316|366318|366324|366360|366367|366376|366377|366384|366405|366962|366964|366965|366971|368244|374259|374274|374279|374922|374925|374942|374950|374959|374964|375246|375250|375259|375266|375268|375274|375404|375412|375416|375416|375438|375732|376305|376323|376323|376329|376340|376342|376412|376414|376416|376428|376435|376447|376459|377362|377365|377368|377394|377402|377423|377425|377442|377444|377447|377452|377456|378577|378582|378586|378592|378593|378599|378621|378623|378623|378668|378694|378700|378701|378703|378736|378749|378759|379828|379829|379839|379840|389257|389259|389260|389261|389266|389268|389269|389272|389273|389274|389275|389278|389279|389281|389282|389283|390688|390690|392305|392307|392309|392314|392315|392319|392324|392329|392331|392335|392337|392341|392342|392346|392357|392395|392404|392405|392411|392418|392419|392424|392434|392435|392437|392440|392441|392449|392451|392461|392463|392466|392467|392474|392498|392499|392504|392509|392511|392514|392517|392519|392521|392524|392527|392529|392531|392536|392538|392543|392548|392556|392577|392584|392587|392589|392591|392597|392608|392613|392617|392619|392621|392624|392627|392635|392645|392650|392658|392661|392666|392672|392678|392679|392684|392685|392687|397861|397920|400207|400498|400499|400503|400505|400510|400993|400995|400997|400998|401001|401003|401004|401011|401017|401018|401025|401027|401028|401032|401036|401038|401042|401043|401045|401048|401049|401050|401051|401055|401056|401058|401059|401060|401061|401063|401064|401066|401070|401071|401075|401076|401077|401079|401081|401082|401083|401084|401085|401086|401087|401089|401090|401093|401094|401095|401099|401101|401102|401105|401107|401109|401111|401114|401115|401118|401122|401129|401133|401137|401141|401142|401146|401150|401153|401156|401464|401470|401480|401481|401491|401495|401498|401500|401501|401505|401509|401513|401516|401521|401524|401525|401530|401535|401542|401544|401545|401546|401550|401552|401554|401558|401571|401572|401579|401580|401585|401586|401593|401596|401730|401733|401736|401741|401744|401749|401751|401755|401756|401761|401764|401769|401770|401773|401778|401780|401785|401785|401790|401799|401801|401806|401810|401814|401824|401827|401834|401841|401848|401850|401853|401854|401864|401878|402191|402197|402202|402207|402210|402211|402212|402215|402216|402217|402218|402222|402224|402226|402232|402234|402237|402238|402239|402241|402243|402244|402245|402246|402249|402250|402251|402252|402254|402258|402262|402263|402265|402267|402268|402270|402271|402277|402278|402286|402292|402295|402297|402301|402307|402312|402314|402317|402319|402321|402324|402646|402655|402659|402664|402667|402669|402671|402677|402681|402681|402684|402686|402693|402697|402699|402710|402718|402721|402730|402736|402740|402741|402748|402750|402762|402764|402776|402781|402782|402784|402785|402786|402789|402790|402792|402797|402798|402802|402803|402805|402806|402808|402809|402811|402812|402814|402816|402818|402820|402823|402824|402825|402829|402830|402832|402835|402841|402842|402845|402848|402850|402853|402855|402858|402877|402880|402882|402882|402885|402887|403745|403747|403748|403790|403793|403796|403802|403806|403807|403808|403811|403814|403819|403821|403823|403829|403832|403834|403836|403842|403843|403845|403848|403852|403853|403855|403857|403860|403867|403869|403872|403877|403878|403880|403883|403884|403885|403886|403890|403891|403893|403895|403899|403900|403901|403907|403910|403911|404268|404305|404311|404312|404313|404316|404319|404321|404322|404324|404325|404326|404328|404330|404332|404334|404335|404336|404337|404338|404339|404340|404341|404342|404343|404344|404345|404346|404347|404348|404349|404350|404351|404352|404354|404359|404360|404360|404361|404363|404365|404367|404371|404372|404377|404379|404382|404384|404599|404700|405203|405558|405559|405560|405561|405562|405563|405564|405566|405567|405569|405572|405573|405575|405578|405585|405586|405588|405594|405595|405596|405597|405598|405599|405600|405602|405603|405604|405605|405607|405608|408138|408191|408822|408911|409011|409511|409513|409514|409515|409517|409519|409522|409526|409527|409528|409530|409531|409533|409535|409536|409537|409539|409541|409542|409544|409547|409548|409550|409551|409552|409553|409554|409555|409557|409560|409562|409565|409567|409569|409574|410113|410114|410115|410118|410119|410120|410122|410123|410125|410126|410128|410130|410133|410136|410137|410138|410139|410142|410145|410152|410155|410157|410161|410163|410927|410928|410929|410930|410931|410932|410933|410937|410938|410939|410945|410947|410948|410948|410950|410953|410957|410958|410964|410965|410967|410967|410968|410970|410972|410973|410974|413325|420729|420730|420731|420995|420996|421079|423239|423243|424225|424778|427542|429997|432499|432500|432501|432502|432503|432504|432506|432508|432874|432877|432878|432879|432880|432881|432931|432933|432935|432936|432936|432968|432970|432970|432971|435087|439582|443157|443159|444711|444719|445546|445547|445548|445549|445849|446383|446384|446385|446388|446390|446391|446392|446393|448366|448368|448381|448483|448484|448532|448577|450320|450321|450324|450330|450333|450336|450339|450341|450342|450344|450347|450352|450354|450355|450359|450367|450373|450377|450380|450463|450474|450476|450477|450481|450482|450485|450486|450489|450499|450500|450503|450504|450508|450510|450511|450515|450516|450518|450519|450521|450523|450527|450532|450534|450543|450548|450550|450554|450557|450561|450584|450591|450594|450599|450601|450603|450605|450606|450607|450610|450613|450620|450629|450630|450633|450641|450645|450647|450650|450651|450653|450656|450657|450659|450660|450662|450664|450667|450672|450675|450681|450689|450691|460485|461076|461289|462741|464819|465394|465434|465439|465440|465443|465446|465449|465455|465461|465469|465472|465474|465480|465481|465487|465491|465498|465503|465504|465509|465510|465520|465531|465534|465539|465549|465550|465552|465554|465555|465559|465562|465566|465567|465572|465574|466097|466098|466104|466105|466111|466114|466120|466131|466138|466145|466154|466159|466160|466162|466164|466165|466169|466173|466176|466178|466184|466186|466187|466188|466189|466190|466196|466198|466200|466202|466203|466205|466206|466210|466211|466213|466215|466216|466217|466219|466223|466225|466226|466227|466228|466230|466231|466233|466236|466239|466240|466242|466245|466247|466249|466250|466251|466252|466253|466254|466256|466257|466258|466259|466261|466263|466268|466269|466270|466275|466277|466279|466280|466283|466284|466285|466291|466297|466303|466305|466306|466312|466316|466319|466322|466326|466348|466351|466355|466358|466361|466373|466374|466385|466386|466394|466398|466399|466410|466412|466415|466418|466425|466431|466432|466435|466439|466443|466449|466453|466482|466484|466488|466496|466499|466509|466510|466514|466518|466520|466521|466522|466523|466524|466525|466527|466535|466547|466550|467062|467094|467095|467103|467104|467107|467113|467117|467121|467126|467129|467132|467141|467144|467146|467150|467152|467153|467156|467158|467165|467167|467170|467172|467175|467180|467181|467186|467187|467187|467189|467192|467192|467379|468045|468047|468049|468052|468053|468055|468056|468060|468061|468061|468064|468070|468074|468080|468081|468084|468087|468088|468091|468092|468093|468098|468099|468101|468104|468105|468109|468110|468111|468114|468116|468118|468119|468125|468126|468137|468138|468300|468317|468319|468321|468321|468323|468335|468342|468344|468347|468351|468354|468365|468377|468393|468398|468402|468407|468408|468409|468410|468413|468415|468429|468431|468440|468445|468448|468453|468459|468460|468462|468467|468473|468485|468489|468498|468499|468499|468505|468506|468521|468524|468526|468556|468557|468558|468560|468561|468568|468569|468579|468587|468589|468592|468603|468605|468618|468621|468622|468627|468631|468635|468653|468655|468662|468668|468668|468676|468682|468684|468692|468695|468700|468702|468706|468714|468718|468725|468731|468732|468734|468738|469117|469847|469849|469853|469859|469997|470000|470003|470005|470009|470015|470017|470018|470021|470024|470025|470033|470034|470045|470052|470053|470055|470064|470067|470068|470070|470071|470076|470077|470079|470086|470088|470092|470850|470852|470853|470925|470935|470936|470938|470944|470950|470951|470955|470957|470960|470962|470966|470971|470973|470983|470990|470991|470993|471011|471012|471016|471023|471305|471307|471309|471410|471413|471414|471416|471419|471429|471430|471432|471433|471438|471441|471442|471444|471445|471449|471450|471451|471453|471459|471468|471469|471472|471778|471779|471780|471816|471821|471822|471824|471825|471826|471828|471829|471831|471837|471839|471842|471845|471846|471850|471859|471860|471861|471864|471874|471876|471879|472442|472444|472455|472479|472480|472493|472497|472498|472499|472501|472503|472512|472513|472515|472517|472518|472525|472526|472529|472532|472533|472538|472539|472542|472543|472544|472549|472550|472552|472554|472555|472562|472563|472564|472565|472566|472568|472572|472573|472575|472576|472579|472582|472583|472585|472587|472591|472592|472596|472598|472601|472607|472608|472609|472612|472613|472614|472615|472616|472619|472620|472622|472624|472629|472631|472632|472636|472638|472641|472642|472644|472645|472649|472653|472654|472656|472658|472659|472662|472663|472665|472668|472671|472674|472676|472677|472678|472680|472681|472685|472690|472693|472696|472697|472699|472724|472730|472734|472752|474927|475708|475787|476089|476870|477422|477433|477442|477449|477464|477465|477469|477478|477481|477484|477493|477496|477503|477504|477505|477506|477507|477531|477533|477536|477542|477544|477545|477547|477559|477561|477569|477570|477571|477578|477581|477581|477582|477584|477589|477590|477591|477593|477595|477597|477599|477603|477612|477616|477619|477621|477623|477628|477634|477638|477639|477642|477645|477647|477652|477654|477655|477656|477658|477668|477672|477673|477677|477682|477688|477689|477697|477700|477704|477706|477708|477709|477711|477714|477716|477723|477724|477729|477733|477734|477736|477740|477741|477744|477758|477761|477793|477795|477798|477806|477809|477813|478015|478020|478027|478039|478047|478062|478069|478077|478080|478095|478109|478113|478122|478128|478130|478143|478145|478168|478170|478189|478191|478191|478195|478245|478249|478270|478285|478300|478309|478310|478325|478892|479014|479023|479025|479030|479032|479037|479044|479050|479055|479058|479059|479062|479063|479064|479066|479067|479068|479070|479076|479084|479086|479087|479089|479090|479100|479107|479109|479110|479114|479116|479119|479120|479122|479124|479125|479128|479130|479136|479139|479141|479143|479145|479148|479150|479152|479157|479162|479163|479166|479168|479176|479185|479190|479196|479197|479198|479201|479201|479210|479219|479224|479226|479227|479229|479237|479239|479246|479254|479255|479260|479262|479262|479730|479730|479745|479753|479770|479786|479793|479797|479803|479813|479815|479824|479842|479860|479871|479872|479882|479897|479927|479949|479950|479956|479959|479975|479991|480001|480006|480017|480019|480023|480028|480037|480040|480046|480047|480050|480051|480052|480056|480058|480059|480068|480073|480074|480075|480078|480083|480087|480092|480095|480097|480102|480103|480105|480110|480113|480114|480120|480122|480128|480130|480131|480132|480135|480138|480139|480140|480144|480151|480153|480155|480157|480162|480165|480169|480175|480181|480184|480186|480341|480349|480352|480353|480358|480360|480365|480369|480370|480373|480374|480375|480377|480377|480378|480382|480383|480386|480387|480388|480461|480477|480478|480479|480480|480481|480488|480491|480492|480493|480494|480501|480740|482349|482359|482360|482364|482370|482378|482384|482385|482386|482391|482392|482395|482403|482878|482881|482886|482896|482898|482916|482922|482928|482937|482948|483023|483025|483026|483029|483040|483050|483054|483056|483058|483062|483065|483066|483067|483087|483103|483104|483106|483230|483232|483234|483239|483242|483248|483252|483263|483265|483269|483277|483284|483288|483298|484375|484638|484651|484660|484665|484680|484685|484691|484702|484718|484732|484736|484751|484759|484803|484805|484807|484808|484833|484837|484843|484855|484860|484861|484979|484987|485009|485029|485030|485032|485043|485051|485052|485060|485064|485066|485084|485199|485199|485210|485210|485225|485226|485233|485256|485257|485259|485268|485274|485275|485275|485276|485355|485357|485365|485368|485375|485382|485401|485409|485445|485454|485463|485467|485468|485474|485479|485488|485493|485496|485497|485517|485520|485537|485556|485569|485570|485573|485574|485575|485582|485584|486643|486644|486650|486652|486885|486912|486931|486942|487660|487661|487778|487882|487901|487936|487976|487980|488006|488017|506211|506216|506281|508111|508390|514061|516179|517620|517621|517623|517626|517630|517631|517645|517653|517655|517657|517661|517665|517668|517669|517672|517673|517675|517707|517709|517713|517717|517718|517727|517735|517736|517737|517740|517742|517746|517747|517748|517752|517753|517757|517759|517761|517763|517764|517768|517769|517772|517774|517776|517777|517778|517781|517790|517792|517799|517801|517806|517807|517809|517810|517812|517883|517886|517887|517890|517892|517899|517901|517907|517911|517913|517915|517916|528518|529753|529757|529762|529766|529767|529768|529780|529782|529784|529785|529793|529806|529809|529811|529816|529818|529820|529823|529825|529826|529827|529830|529832|529834|529836|529837|529839|529840|529842|529843|529844|529845|529846|529851|529852|529857|529858|529870|529872|529880|529883|529890|529891|529895|529899|529901|529905|529917|529920|529921|529933|529934|529937|529939|530108|530111|530115|530116|530123|530125|530128|530132|530133|530135|530139|530148|530153|530167|530169|530175|530180|530181|530190|530193|530321|530322|530333|530335|530348|530349|530353|530357|530362|530368|530369|530374|530375|530376|530377|530379|530384|530386|530387|530389|530512|530514|530840|530844|531041|531046|531047|531064|531318|531322|531324|531326|531328|531329|531331|531341|531345|531347|531361|531376|531380|531392|531395|531405|531413|531416|531419|531424|531426|531429|531436|531438|531439|531480|531483|531486|531492|531494|531498|531499|531504|531506|531508|531514|531515|531518|531522|531525|531529|531534|531536|531539|531539|531548|531551|531562|531568|531572|531573|531576|531577|531581|531585|531590|531595|531602|531603|531605|531611|531615|531622|531625|531635|531637|531639|531644|531645|531650|531651|531654|531655|531658|531668|531669|531797|531802|531812|531815|531820|531824|531834|531836|531840|531846|531850|531853|531856|531858|531869|531874|531879|534097|534098|534100|534102|534105|534110|534111|534113|534114|534119|534120|534123|534124|534125|534128|534130|534131|534133|534136|534137|534138|534139|534140|534149|534150|534152|534154|534157|534162|534163|534166|534173|534174|534178|534179|534205|534215|534220|534224|534225|534229|534233|534235|534237|534240|534244|534249|534253|534257|534262|534263|534270|534273|534274|534275|534277|534279|534283|534286|534289|534291|534550|534631|534638|534640|534645|534647|534650|534654|534663|534666|534669|534670|534672|534676|534681|536166|536166|536431|536456|536457|536461|536462|536463|536468|536508|536537|536538|538692|539202|539203|539341|539342|539343|539344|539345|539408|539409|539410|539411|539412|545728|545730|545967|551913|551916|551936|557430|557432|557479|557481|557483|557485|557836|557838|557840|557842|557844|557846|557848|557850|557852|557854|557856|557858|557860|557862|557864|557866|557868|557870|557872|557874|557876|557893|557895|557897|557899|557901|557903|557905|557907|557909|557911|557913|557915|557917|557919|557921|558080|559071|559073|559075|559077|559079|559081|559083|559085|559087|559089|559091|559093|559095|559097|559099|559101|560824|560828|560829|560830|560833|560839|560870|560874|560875|560879|560882|565258|565464|567475|567477|567482|567936|567937|567939|567940|567947|567948|567952|567953|567957|567959|567963|567965|567967|567975|567983|567985|567989|567996|567999|568000|568002|568007|568009|568011|568012|568016|568017|568027|568028|568034|568035|568649|568650|568653|569362|569364|569368|569376|569377|569379|569381|569383|569386|569389|569393|569398|569403|569406|569411|569418|569419|569421|569425|569427|569432|569435|569441|569445|569450|569451|569458|569465|569788|569794|569800|569804|569921|569926|569928|569937|569938|569942|569950|569956|569957|569960|569977|569979|569984|569985|569991|569993|570007|570008|570009|570010|570018|570021|570024|570025|570027|570158|570160|570161|570163|570164|570167|570169|570171|570173|570175|570176|570178|570184|570188|570189|570195|570201|570203|570209|570210|570212|570213|570214|570714|570716|570718|570720|570822|570826|570832|570834|571360|571362|571363|571368|571369|571371|571373|571374|571377|571379|571381|571384|571386|571389|571390|571392|571395|571398|571401|571402|571405|571406|571409|571414|571417|571421|571422|571425|571667|571670|571673|571759|571760|571762|571772|571777|571779|571780|571782|571783|571787|571788|571789|571795|571797|571799|571803|571804|571807|571811|571813|571817|571819|571821|571828|571830|571831|571836|571838|571843|571845|571847|571848|571853|571854|571855|571861|571868|571870|571877|571886|571887|571892|571894|571897|571899|571906|571915|571918|571928|571929|571939|571948|571955|571961|571966|573207|573211|573212|573214|573295|573297|573298|573302|573303|573306|573313|573318|573322|573325|573326|573330|573334|573335|573337|573338|573342|573649|573652|573653|573902|573906|573907|573908|573910|573911|573912|573914|573918|573919|573920|573924|573926|573927|573928|573931|573932|573935|573937|573939|573949|573950|573951|573955|573959|573961|573962|573963|573968|573975|573976|573977|573978|573979|573981|573982|573983|573984|573986|573987|573988|573990|573991|573992|573993|573995|574003|574008|574012|574014|574021|574023|574026|574031|574033|574036|574039|574042|574044|574047|574048|574053|574054|574057|574059|574277|574544|574545|574546|574547|574548|574549|574550|574551|574552|574553|574554|574555|574556|574557|574558|574559|574560|574561|575204|575205|575206|575224|575225|575226|575227|575228|575229|575230|575231|575232|575233|575234|575235|575236|575237|575238|575239|575240|575241|575242|575518|575599|575601|575619|575620|575621|575623|575661|575662|575663|575664|575665|575666|575667|575956|575957|575958|575959|575961|575962|575964|575965|575966|575967|576014|576016|576019|576019|576020|576020|576021|576022|576023|576024|576024|576025|576026|576027|576045|576046|576047|576048|576049|576050|576051|576272|576273|576274|578400|578414|611219|611220|611224|614353|616517|616522|616528|616529|616534|616536|616542|616546|616551|616558|616559|616562|616565|616568|616570|616578|616579|616585|616593|616594|617773|618370|618377|618388|618393|618395|618401|618406|618407|618410|618413|618414|618419|618421|618422|618425|618442|618443|618447|618448|618449|618454|618455|618457|618742|618746|618747|618760|618764|618768|618770|618771|618772|618787|618794|618796|618802|618803|618815|618817|619015|619026|619028|619030|619039|619127|619487|619492|619513|619556|619567|619612|619702|619733|619748|619756|619799|619806|619901|621527|621529|621530|621531|621533|621534|621592|621593|621650|621862|625973|625976|629360|629361|629362|629363|629364|629365|629366|629367|629368|629369|629370|629371|629372|629373|629374|629375|629376|629377|629378|629379|629380|629381|629382|629383|629384|629385|629386|629387|629388|629389|629390|629391|629392|629393|629394|629395|629396|629397|629398|629399|629400|629401|629402|629403|629404|629405|629406|629407|629408|629409|629410|629411|629412|629413|629414|629415|629416|629417|629418|629419|629420|629421|629422|629423|629424|629425|629426|629427|629428|629429|629430|629431|629432|629433|629434|629435|644378|644379|644380|644381|644382|644383|644384|644385|644386|644387|644388|644389|644390|644391|644392|644393|644394|644395|644396|644397|644398|644399|644400|644401|644402|644403|644404|644405|644406|644407|644408|644409|644410|644411|644412|644413|644414|644415|644416|644417|644418|644419|644420|644421|644422|644423|644424|644425|644426|644427|644428|644429|644430|644431|644432|644433|644434|644435|644436|644437|644438|644439|644440|644441|644442|644443|644444|644445|644446|644447|644448|644449|644450|644451|644452|644453|644454|644455|644456|644457|644458|644459|644460|644461|644462|644463|644464|644465|644466|644467|644468|644469|644470|644471|644472|644473|644474|644475|644476|644477|644478|644479|644480|644481|644482|644483|644484|644485|644486|644487|644488|644489|644490|644491|644492|644493|644494|644495|646268|646269|646270|646271|646272|646273|646274|646275|646276|646277|646278|646279|646280|646281|646282|646283|646284|646285|646286|646287|646288|646289|646290|646291|646292|646293|646294|646295|646296|646297|646298|646299|646300|646301|646302|646303|646304|646305|646306|646307|646308|646309|646310|646311|646312|646313|646314|646315|646316|646317|646318|646319|646320|646321|646322|646323|646324|646325|646326|646327|646328|646329|646330|646331|646332|646333|646334|646335|646336|646337|646338|646339|646340|646341|646342|646343|646344|646345|646346|646347|646348|646349|646350|646351|646352|646353|646354|646355|646356|646357|646358|646359|646360|646361|646362|646363|646364|646365|646366|646367|646368|646369|646370|646371|646372|646373|646374|646375|646376|646377|649234|649235|649236|649237|649238|649239|649240|649241|649242|649243|649244|649245|649246|649247|649248|649249|649250|649251|649252|649253|649254|649255|649256|649257|649258|649259|649260|649261|649262|649263|649264|649265|649266|649267|649268|649269|649270|649271|649272|649273|649274|649275|649276|649277|649278|649279|649280|649281|649282|649283|649284|649285|649286|649287|649288|649289|649290|649291|649292|649293|649294|649295|649296|649297|649298|649299|649300|649301|649302|649303|649304|649305|649306|649307|649308|649309|649310|649311|649312|649313|649314|649315|649316|649317|649318|649319|649320|649321|649322|649323|649324|649325|649326|649327|649328|649329|650727|650728|650741|650742|650787|650790|650791|650793|650794|650926|650930|652467|652470|652473|652474|652555|652557|652614|652718|652725|652819|652823|652825|652826|652832|652834|652848|652852|652854|652857|652861|652979|652985|652992|652994|653001|653127|653160|653162|653172|653190|653192|653194|653195|653198|653201|653203|653232|653234|653238|653241|653243|653274|653277|653279|653282|653307|653309|653311|653484|653486|653489|653495|653498|653599|653600|653613|653614|653692|653693|653694|653701|653702|653705|653707|653708|677971|677972|682632|688804|693831|694139|695762|704262|719580|731171|747250|755030|755031|755032|756004|756005|758023|759198|760472|760625|760939|762865|762868|762869|762870|762873|762874|770771|770774|770783|770785|770793|771687|771688|771690|771700|771702|771704|773483|773486|773488|776377|776741|778246|781147|781148|781149|781154|785217|785222|785224|785227|785228|785233|785665|785667|785669|785671|785672|785673|785679|787095|788168|789250|789600|789663|790173|790174|790175|790176|790177|790178|790179|790180|790181|790182|790183|790184|790185|790186|790187|790188|790189|790190|790191|790192|791562|791563|791564|791565|791566|791567|791568|791569|791570|791571|791572|791573|791574|791575|791576|791577|791578|791802|791803|791803|791804|791805|791806|791807|791808|791809|791810|791811|791812|791813|791814|791815|791816|792024|792025|792026|792027|792028|792029|792030|792031|792032|792033|792034|792035|792036|792037|792780|806707|806711|806713|806715|806717|806718|806720|806721|806734|806742|806747|806749|806752|806754|806760|806769|806770|806773|806780|806794|806801|806802|806804|806805|806807|806822|806825|806832|806837|806842|806860|806861|806872|812638|812644|812655|812657|812668|812671|812674|812680|812683|812684|812691|812696|812708|812709|812712|812718|812735|812742|812745|812746|812747|812751|812772|812777|812778|812781|812784|812787|812788|812796|812801|812803|812813|812817|812819|812821|812822|812831|812835|812840|812843|812847|812850|812852|812856|812986|814183|814184|814185|814205|814225|814230|814239|814241|814253|814261|814264|814270|814282|814283|814284|814287|814294|814299|814304|814305|814308|814318|814322|814324|814327|814335|814339|814342|814364|814367|814371|814373|815010|815013|815014|815018|815023|815031|815039|815040|815044|815050|815073|815076|815084|815085|815089|815091|815094|815100|815116|815120|815123|815131|815136|815629|815702|815703|815760|815763|815765|815766|818445|818454|818455|818459|818460|818462|818466|818472|818477|818482|818486|818489|818493|818494|818496|818497|818505|818517|818519|818533|818535|818538|818559|818568|818571|818572|819014|819107|819109|819110|819111|819112|819113|819114|819115|819116|819117|819118|819119|819120|819121|819122|819123|820798|820799|820800|820801|820802|820803|820804|820805|820806|820807|820808|820809|820810|820811|820812|820813|820814|821129|821130|821131|821132|821134|821135|821136|821137|821138|821139|821140|821141|821142|821143|821144|821145|821146|821147|821393|821394|821412|821413|821414|821415|821416|821417|821418|821419|821420|821421|821423|821424|821425|821426|821427|821428|821429|821430|821431|821432|821433|821434|821435|821436|825661|825662|825663|825664|825665|825666|825667|825668|825669|825670|825671|825672|825673|825674|825675|825676|825677|825678|825679|825680|825681|825682|825683|825684|825685|825686|825687|825688|825689|825690|825691|825692|825693|825694|825695|825696|825697|825698|825699|825700|825701|825702|825703|825704|825705|825706|825707|825708|825709|825710|825711|825712|825713|825714|825715|843551|843552|843553|843554|843555|843556|843557|843558|843559|843560|843561|843562|843563|843564|843565|843566|843567|843568|843569|843570|843571|843572|843573|843574|843575|843576|843577|843578|843579|843580|843581|843582|843583|843584|843585|843586|843587|843588|843589|843590|843591|843592|843593|843594|843595|843596|843597|843598|843599|843600|843601|843602|843603|843604|843605|843606|843607|843608|843609|843610|843611|843612|843613|843614|843615|843616|843617|843618|843619|843620|843621|843622|843623|843624|843625|843626|843627|843628|843629|843630|843631|843632|843633|843634|843635|843636|843637|843638|843639|843640|843641|843642|843643|843644|843645|843646|843647|843648|843649|845726|845727|845728|845729|845730|845731|845732|845733|845734|845735|845736|845737|845738|845739|845740|845741|845742|845743|845744|845745|845746|845747|845748|845749|845750|845751|845752|845753|845754|845755|845756|845757|845758|845759|845760|845761|845762|845763|845764|845765|845766|845767|845768|845769|845770|845771|845772|845773|845774|845775|845776|845777|845778|845779|845780|845781|845782|845783|845784|845785|845786|845787|845788|845789|845790|845791|845792|845793|845794|845795|845796|845797|845798|845799|845800|845801|845802|845803|845804|845805|845806|845807|845808|845809|845810|845811|845812|845813|845814|845815|845816|845817|845818|845819|845820|845821|845822|845823|845824|845825|845826|845827|845828|845829|845830|845831|845832|845833|845834|849108|849109|849110|849111|849112|849113|849114|849115|849116|849117|849118|849119|849120|849121|849122|849123|849124|849125|849126|849127|849128|849129|849130|849131|849132|849133|849134|849135|849136|849137|849138|849139|849140|849141|849142|849143|849144|849145|849146|849147|849148|849149|849150|849151|849152|849153|849154|849155|849156|849157|849158|849159|849160|849161|849162|849163|849164|849165|849166|849167|849168|849169|849170|849171|849172|849173|849174|849175|849176|849177|849178|849179|849180|849181|850833|850835|850837|850839|850878|851147|851396|851879|851908|851910|851912|852233|852426|852649|852773|852774|852776|852780|852782|852783|852810|852811|852813|852899|852903|852905|853016|853017|853018|853019|853020|853021|858413|858418|858434|858462|858798|858799|858800|858801|858802|858803|858804|858805|858806|858810|858812|858813|861551|874991|883671|883672|883673|883674|903622|903644|908647|908654|908689|908693|911543|913595|913608|913630|913633|913642|913648|913677|914043|914050|914064|914065|914091|914096|914097|914102|914142|914146|914151|914935|914936|914966|915261|915568|917219|917840|917857|917866|918108|919316|919635|919754|919755|919756|920208|920293|920330|920359|922543|922544|922545|922546|922547|922548|922549|922550|922551|922552|922553|922554|922555|922556|922557|922558|922559|922560|922561|922562|922563|922564|922565|922566|927698|927699|927700|927701|927702|927703|927704|927705|927706|927707|927708|927709|927710|927711|927712|927713|927714|927715|927716|927717|927718|927719|927720|927721|927722|927723|927724|927725|927726|927727|927728|927729|927730|927731|927732|927733|927734|927735|927736|927737|927738|927739|927740|927741|927742|927743|927744|927745|927746|927747|927748|928400|928401|928402|928403|928404|928405|928406|928407|928408|928409|928410|928411|928412|928413|928414|928415|928416|928417|928418|928419|928420|928421|928422|928423|928424|928425|928426|928427|928428|928429|928430|929422|929423|929424|929425|929426|929427|929428|929429|929430|929431|929432|929433|929434|929435|929436|929437|929438|929439|929440|929441|929442|929443|929444|929445|929446|929447|929448|929449|929450|929451|931108|931109|931110|931111|931112|931113|931114|931115|931116|931117|931118|931119|931120|931121|931122|931123|931124|931125|931126|931127|931128|931129|931130|931131|931132|931133|937354|937355|937356|937357|937358|937359|937360|937361|937362|937363|937364|937365|937366|937367|937368|937369|937370|937371|937372|937373|937374|937375|937376|937377|937378|937379|937380|937381|937382|937383|937384|937385|937386|938065|938066|938067|938068|938069|938070|938071|938072|938073|938074|938075|938076|938077|938078|938079|938080|938081|938082|938083|938084|938085|938086|938087|938088|938089|938090|938091|938092|938093|938094|938095|938096|938097|938098|938099|938100|938101|938102|938103|938104|938105|938106|938107|938108|939227|939228|939229|939230|939231|939232|939233|939234|939235|939236|939237|939238|939239|939240|939241|939242|939243|939244|939245|939246|939247|939248|939249|939250|939251|939252|939874|940355|940356|940424|940425|940526|940689|940690|940691|940692|940693|941130|941131|941132|941188|941189|941190|941191|941275|941276|941277|941278|942581|942582|942583|942584|942585|942586|942587|942588|942589|942590|942591|942592|942593|942594|942595|942596|942597|942598|942599|942600|942601|942602|942603|949300|949301|949302|949303|949304|949305|949306|949307|949308|949309|949310|949311|949312|949313|949314|949315|949316|949317|949318|949319|949320|949321|949322|949323|949324|949325|949326|949327|949328|949329|950089|950090|950091|950092|950093|950094|950095|950096|950097|950098|950099|950100|950101|950102|950103|950104|950105|950106|950107|950108|950109|950110|950111|950112|950113|950114|950115|950116|950117|950118|950119|950120|950121|950122|950123|950124|950125|950126|950127|950128|950313|951367|951368|951369|951370|951371|951372|951373|951374|951375|951376|951377|951378|951379|951380|951381|951382|951383|951384|951385|951386|951387|951388|951389|951390|951391|951392|951393|951394|951395|951396|951397|951398|951399|951400|951401|951402|951403|951404|952910|952911|952912|952913|952914|952915|952916|952917|952918|952919|952920|952921|952922|952923|957694|957695|957696|957697|957698|957699|957700|957701|957702|957703|957704|957705|957706|957707|957708|957709|958217|958218|958219|958220|958221|958222|958223|958224|958225|958226|958227|958228|958229|958230|958231|959042|959043|959044|959045|959046|959047|959048|959049|959050|959051|959052|959053|959054|959055|959056|959057|959624|959625|959626|959627|960150|960228|960229|960230|960338|960339|960462|960891|960962|960963|960964|962061|962063|964192|964354|964489|964490|964551|964653|966623|966680|966852|966854|970982|970983|970984|971055|973091|973092|976547|976549|980513|980717", "text": "Familial cancer of breast" }, { - "baseId": "16284|132182|132221|132239|132267|153702", + "upstreamId": "16284|132182|132221|132239|132267|153702", "text": "PALB2-Related Disorders" }, { - "baseId": "16292|16293|16294|16295|16296|16297|16298|191720|266317|267759|268769|272369|272443|274096|365079|365080|365083|365084|365092|365163|365167|365174|365182|365254|365272|414799|421243|433768|433769|433772|433773|442843|447899|447903|447904|447910|447911|448048|448050|448057|448060|448065|448071|448080|448116|448118|448123|448126|448129|448132|448136|448197|448199|448209|448225|448227|448229|488684|492430|498470|513014|513243|515869|515872|515882|515889|515890|515894|515895|515898|515924|515927|515931|515935|515940|515995|515997|538947|557057|557266|557268|557270|557319|557321|557323|557325|557327|557329|557331|558511|558513|558515|623234|627843|627844|627845|627846|627847|627848|627849|627850|627851|627852|627853|627854|627855|627856|627857|627858|627859|627860|650661|650662|650751|685732|690598|690599|690600|690602|696745|707412|732456|788738|799220|823967|823968|823969|823970|823971|823972|823973|823974|823975|823976|823977|823978|823979|823980|851301|864414|864415|864417|864418|864420|864423|864425|864426|864427|864428|864429|864432|864434|922018|922019|922020|922021|922022|930487|930488|930489|939813|941941|941942|941943|941944|952412|952413|970168|970691|970692|981323|981324|981325|981326|981327", + "upstreamId": "16292|16293|16294|16295|16296|16297|16298|191720|266317|267759|268769|272369|272443|274096|365079|365080|365083|365084|365092|365163|365167|365174|365182|365254|365272|414799|421243|433768|433769|433772|433773|442843|447899|447903|447904|447910|447911|448048|448050|448057|448060|448065|448071|448080|448116|448118|448123|448126|448129|448132|448136|448197|448199|448209|448225|448227|448229|488684|492430|498470|513014|513243|515869|515872|515882|515889|515890|515894|515895|515898|515924|515927|515931|515935|515940|515995|515997|538947|557057|557266|557268|557270|557319|557321|557323|557325|557327|557329|557331|558511|558513|558515|623234|627843|627844|627845|627846|627847|627848|627849|627850|627851|627852|627853|627854|627855|627856|627857|627858|627859|627860|650661|650662|650751|685732|690598|690599|690600|690602|696745|707412|732456|788738|799220|823967|823968|823969|823970|823971|823972|823973|823974|823975|823976|823977|823978|823979|823980|851301|864414|864415|864417|864418|864420|864423|864425|864426|864427|864428|864429|864432|864434|922018|922019|922020|922021|922022|930487|930488|930489|939813|941941|941942|941943|941944|952412|952413|970168|970691|970692|981323|981324|981325|981326|981327", "text": "Osteogenesis imperfecta type 8" }, { - "baseId": "16299|16300|199797|199798|254245|314553|314559|314560|314570|314576|314582|314583|314586|314590|314591|314598|314599|321252|321253|321258|321259|321260|321268|321270|321272|321273|321280|321282|321285|321287|327403|327413|327420|327432|327435|327436|327440|327456|327457|327461|327463|328458|328462|328463|328466|328481|328482|328492|328493|328501|328502|328506|328512|361534|439163|461348|566056|566066|570828|624449|640325|640326|640327|738150|784090|838758|838759|838760|838761|868264|868265|868266|868267|868268|868269|868270|868271|868272|868273|868274|868275|868276|868277|868671|926343|935689|935690|947581|947582|947583|947584|969709|971504", + "upstreamId": "16299|16300|199797|199798|254245|314553|314559|314560|314570|314576|314582|314583|314586|314590|314591|314598|314599|321252|321253|321258|321259|321260|321268|321270|321272|321273|321280|321282|321285|321287|327403|327413|327420|327432|327435|327436|327440|327456|327457|327461|327463|328458|328462|328463|328466|328481|328482|328492|328493|328501|328502|328506|328512|361534|439163|461348|566056|566066|570828|624449|640325|640326|640327|738150|784090|838758|838759|838760|838761|868264|868265|868266|868267|868268|868269|868270|868271|868272|868273|868274|868275|868276|868277|868671|926343|935689|935690|947581|947582|947583|947584|969709|971504", "text": "Aicardi Goutieres syndrome 3" }, { - "baseId": "16299|40348|67271|181292|214847|244018|389153|536164|567199|581716|590734|612486|626060|626270|626445|626446|676962|676969|679673|679675|679676|679677|679679|679680|679681|679682|679683|679685|679686|679688|679689|682748|682758|789258|802086|802087|802089|802095|805083|805137|964209|964234|964287|964300|964342|964380|964452|964478|964522|964597|964679|971283|983454|983680|983681", + "upstreamId": "16299|40348|67271|181292|214847|244018|389153|536164|567199|581716|590734|612486|626060|626270|626445|626446|676962|676969|679673|679675|679676|679677|679679|679680|679681|679682|679683|679685|679686|679688|679689|682748|682758|789258|802086|802087|802089|802095|805083|805137|964209|964234|964287|964300|964342|964380|964452|964478|964522|964597|964679|971283|983454|983680|983681", "text": "Neurodevelopmental delay" }, { - "baseId": "16301|16302|188848|227352|254859|270631|319927|319929|319933|319935|319936|319937|319941|319944|319948|328473|328475|328476|328483|334977|334980|336819|336831|336834|360007|373859|527818|528154|528317|566169|567722|568619|568621|568625|577339|620473|642018|642019|642020|642021|642022|642023|642024|642025|642026|642027|642028|652296|652377|652406|652842|693393|693394|695602|702720|739065|769587|840978|840979|858760|871398|871399|871400|871401|871402|871403|871404|871405|871406|871407|871408|871409|871410|926940|926941|926942|936478|940292|948406|948407|957119|970145|980473", + "upstreamId": "16301|16302|188848|227352|254859|270631|319927|319929|319933|319935|319936|319937|319941|319944|319948|328473|328475|328476|328483|334977|334980|336819|336831|336834|360007|373859|527818|528154|528317|566169|567722|568619|568621|568625|577339|620473|642018|642019|642020|642021|642022|642023|642024|642025|642026|642027|642028|652296|652377|652406|652842|693393|693394|695602|702720|739065|769587|840978|840979|858760|871398|871399|871400|871401|871402|871403|871404|871405|871406|871407|871408|871409|871410|926940|926941|926942|936478|940292|948406|948407|957119|970145|980473", "text": "Aicardi Goutieres syndrome 2" }, { - "baseId": "16301|39562|76972|102135|102136|131928|251190|265435|290894|290897|291832|291833|291841|295022|295410|295418|295421|295439|328464|328494|328502|328506|334944|335369|345200|348153|349391|349941|441638|571210|648644|648648|648656|731341|757494|757496|757497|757501|773096|780209|848369|848379|980019|980020", + "upstreamId": "16301|39562|76972|102135|102136|131928|251190|265435|290894|290897|291832|291833|291841|295022|295410|295418|295421|295439|328464|328494|328502|328506|334944|335369|345200|348153|349391|349941|441638|571210|648644|648648|648656|731341|757494|757496|757497|757501|773096|780209|848369|848379|980019|980020", "text": "Aicardi Goutieres syndrome" }, { - "baseId": "16303|16304|16306|16307|34717|102516|102517|102518|102520|102521|102522|102523|177276|177503|177504|191110|254845|265391|268147|373338|413358|413359|429488|445137|489314|489420|535721|567225|572250|585857|641632|688158|693349|695595|702661|702662|725450|753782|820551|840619|840620|840621|840622|871000|871001|871002|871003|871004|871005|871006|871007|871008|871009|871010|871011|871012|871013|871014|871015|871016|871017|871018|871019|871020|871021|871022|871023|871024|871025|871026|871027|871028|871029|871030|871031|871032|871033|871034|871035|871036|871037|871038|871039|871040|871041|871042|871043|871044|871045|871046|871047|871048|871049|871050|871051|871052|871053|871054|871055|871056|871057|871058|871059|871060|871061|871062|871063|871064|871065|871066|871067|871068|871069|872323|872324|872325|926823|976015", + "upstreamId": "16303|16304|16306|16307|34717|102516|102517|102518|102520|102521|102522|102523|177276|177503|177504|191110|254845|265391|268147|373338|413358|413359|429488|445137|489314|489420|535721|567225|572250|585857|641632|688158|693349|695595|702661|702662|725450|753782|820551|840619|840620|840621|840622|871000|871001|871002|871003|871004|871005|871006|871007|871008|871009|871010|871011|871012|871013|871014|871015|871016|871017|871018|871019|871020|871021|871022|871023|871024|871025|871026|871027|871028|871029|871030|871031|871032|871033|871034|871035|871036|871037|871038|871039|871040|871041|871042|871043|871044|871045|871046|871047|871048|871049|871050|871051|871052|871053|871054|871055|871056|871057|871058|871059|871060|871061|871062|871063|871064|871065|871066|871067|871068|871069|872323|872324|872325|926823|976015", "text": "Peters plus syndrome" }, { - "baseId": "16308", + "upstreamId": "16308", "text": "Association with systemic lupus erythematosus" }, { - "baseId": "16309|16310|16311|221934|397304|397474|475211|475220|475221|475245", + "upstreamId": "16309|16310|16311|221934|397304|397474|475211|475220|475221|475245", "text": "Colorectal cancer 1" }, { - "baseId": "16312|16312|16313|16313|16314|16315|16315|16316|16317|16318|16319|16321|16321|134353|134356|134357|134359|134360|134362|134364|193756|193758|195784|195785|195786|195788|195789|205737|205737|205738|205738|207118|246964|251442|251449|251450|251451|251468|251469|251470|251471|265661|265854|267408|269333|269335|270556|359625|406429|406430|406431|421486|421486|428295|428296|440848|443612|443613|443614|452822|453125|453129|453131|453133|453135|453137|453138|453147|453149|453390|453395|453397|453498|453503|453506|453519|453527|453610|453881|453888|453891|453895|453896|453896|453905|453907|500822|513273|519878|519881|519887|519888|519891|519892|519896|519897|519901|519902|519904|519912|520134|520136|520142|520144|520147|520166|520170|520174|520175|535238|535270|538369|538369|552078|552079|552079|559659|559661|559663|559665|559667|559669|559671|559822|559824|559826|559828|559830|561997|561998|562001|563662|563663|563667|563675|563681|632159|632160|632161|632162|632163|632164|632165|632166|632167|632168|632169|632170|632171|632172|632173|632174|632175|632176|632177|632178|632179|632180|632181|632182|632183|632184|632185|632186|632187|632188|632189|632190|632191|632192|632193|651111|676959|689753|689754|691550|691551|691553|691554|691555|691556|691560|691561|691562|695230|695231|695232|695234|698498|698499|698500|720950|720951|730286|748925|748929|764453|764456|777445|792748|792749|800954|801607|819479|819480|829074|829075|829076|829077|829078|829079|829080|829081|829082|829083|829084|829085|829086|829087|829088|829089|829090|829091|829092|829093|829094|829095|829096|829097|829098|829099|850984|851498|851602|923493|923494|923495|923496|923497|923498|923499|923500|923501|923502|932297|932298|932299|932300|932301|932302|932303|932304|932305|943961|943962|943963|943964|943965|943966|953762|953763|959722|959723|960536", + "upstreamId": "16312|16312|16313|16313|16314|16315|16315|16316|16317|16318|16319|16321|16321|134353|134356|134357|134359|134360|134362|134364|193756|193758|195784|195785|195786|195788|195789|205737|205737|205738|205738|207118|246964|251442|251449|251450|251451|251468|251469|251470|251471|265661|265854|267408|269333|269335|270556|359625|406429|406430|406431|421486|421486|428295|428296|440848|443612|443613|443614|452822|453125|453129|453131|453133|453135|453137|453138|453147|453149|453390|453395|453397|453498|453503|453506|453519|453527|453610|453881|453888|453891|453895|453896|453896|453905|453907|500822|513273|519878|519881|519887|519888|519891|519892|519896|519897|519901|519902|519904|519912|520134|520136|520142|520144|520147|520166|520170|520174|520175|535238|535270|538369|538369|552078|552079|552079|559659|559661|559663|559665|559667|559669|559671|559822|559824|559826|559828|559830|561997|561998|562001|563662|563663|563667|563675|563681|632159|632160|632161|632162|632163|632164|632165|632166|632167|632168|632169|632170|632171|632172|632173|632174|632175|632176|632177|632178|632179|632180|632181|632182|632183|632184|632185|632186|632187|632188|632189|632190|632191|632192|632193|651111|676959|689753|689754|691550|691551|691553|691554|691555|691556|691560|691561|691562|695230|695231|695232|695234|698498|698499|698500|720950|720951|730286|748925|748929|764453|764456|777445|792748|792749|800954|801607|819479|819480|829074|829075|829076|829077|829078|829079|829080|829081|829082|829083|829084|829085|829086|829087|829088|829089|829090|829091|829092|829093|829094|829095|829096|829097|829098|829099|850984|851498|851602|923493|923494|923495|923496|923497|923498|923499|923500|923501|923502|932297|932298|932299|932300|932301|932302|932303|932304|932305|943961|943962|943963|943964|943965|943966|953762|953763|959722|959723|960536", "text": "Myasthenia, limb-girdle, familial" }, { - "baseId": "16312|16313|20953|21691|23085|23090|23094|32552|33280|33387|33396|33399|34013|48714|75121|132068|132069|134182|134183|134184|134204|134205|134206|134209|134210|134211|134212|134213|134214|134215|134216|134217|135535|135536|135537|135538|190766|191135|191169|192261|194410|195200|195909|206906|244110|244111|244112|244113|244114|244115|244116|244117|244118|244119|244122|250660|254191|254194|254196|254197|256232|256233|256234|256235|256236|256240|256241|256245|256250|256251|259249|264430|265660|266273|267375|269662|272149|272153|272237|272295|282956|282959|283772|283773|283774|283775|283797|283803|283808|285265|285276|285277|285281|285284|285294|285296|285404|285409|285413|285430|285431|285435|285437|285438|285819|285820|285822|285832|285833|285838|285906|285917|285922|285932|285940|285941|285943|285949|285950|285951|285956|288234|288235|288236|288242|288262|288264|288657|288667|288668|288669|288670|288680|288681|288686|288688|314302|326961|326964|328008|328017|329037|329041|329044|329046|329050|329052|329060|329063|329064|339080|339088|339093|339094|339096|339109|339111|339112|339113|339125|345071|345072|345073|345074|345076|345077|345081|345082|345083|345087|345092|345093|346403|346404|346406|346408|346410|346416|346417|346419|346420|346429|346436|346437|346439|346441|346444|346448|346453|346456|346457|346460|360460|361049|361050|367085|376285|413452|415568|422179|429984|445795|448988|450493|450517|461171|466961|467864|467869|467880|467895|468358|486265|517965|518034|518516|526258|526260|531216|531397|536399|538964|540459|557729|564737|571592|574510|577648|620594|620595|620886|624114|629016|640135|640147|646147|646148|646150|646154|646161|646163|654166|654225|676959|682756|682757|693055|693056|693057|694100|694103|694105|694106|701788|701789|719712|738014|738016|740840|760070|771611|771613|771615|771621|784020|784024|838550|838551|845583|845584|851439|868108|868109|868110|877867|877868|877869|877870|877871|877872|877873|877874|877875|877876|877877|877878|877879|877880|881618|881619|881620|881621|881622|881623|881624|881625|881626|881627|881628|881629|881630|884121|884122|884123|884124|884125|884126|884127|884128|884129|884130|884131|884132|884133|884134|884135|884136|884137|884138|884139|887315|887316|956527|958175|978998|978999|979000|979001|979002|979003|979004|979005|979006|979007|979008|979009|979010|979909|979910|979911|979912|980211", + "upstreamId": "16312|16313|20953|21691|23085|23090|23094|32552|33280|33387|33396|33399|34013|48714|75121|132068|132069|134182|134183|134184|134204|134205|134206|134209|134210|134211|134212|134213|134214|134215|134216|134217|135535|135536|135537|135538|190766|191135|191169|192261|194410|195200|195909|206906|244110|244111|244112|244113|244114|244115|244116|244117|244118|244119|244122|250660|254191|254194|254196|254197|256232|256233|256234|256235|256236|256240|256241|256245|256250|256251|259249|264430|265660|266273|267375|269662|272149|272153|272237|272295|282956|282959|283772|283773|283774|283775|283797|283803|283808|285265|285276|285277|285281|285284|285294|285296|285404|285409|285413|285430|285431|285435|285437|285438|285819|285820|285822|285832|285833|285838|285906|285917|285922|285932|285940|285941|285943|285949|285950|285951|285956|288234|288235|288236|288242|288262|288264|288657|288667|288668|288669|288670|288680|288681|288686|288688|314302|326961|326964|328008|328017|329037|329041|329044|329046|329050|329052|329060|329063|329064|339080|339088|339093|339094|339096|339109|339111|339112|339113|339125|345071|345072|345073|345074|345076|345077|345081|345082|345083|345087|345092|345093|346403|346404|346406|346408|346410|346416|346417|346419|346420|346429|346436|346437|346439|346441|346444|346448|346453|346456|346457|346460|360460|361049|361050|367085|376285|413452|415568|422179|429984|445795|448988|450493|450517|461171|466961|467864|467869|467880|467895|468358|486265|517965|518034|518516|526258|526260|531216|531397|536399|538964|540459|557729|564737|571592|574510|577648|620594|620595|620886|624114|629016|640135|640147|646147|646148|646150|646154|646161|646163|654166|654225|676959|682756|682757|693055|693056|693057|694100|694103|694105|694106|701788|701789|719712|738014|738016|740840|760070|771611|771613|771615|771621|784020|784024|838550|838551|845583|845584|851439|868108|868109|868110|877867|877868|877869|877870|877871|877872|877873|877874|877875|877876|877877|877878|877879|877880|881618|881619|881620|881621|881622|881623|881624|881625|881626|881627|881628|881629|881630|884121|884122|884123|884124|884125|884126|884127|884128|884129|884130|884131|884132|884133|884134|884135|884136|884137|884138|884139|887315|887316|956527|958175|978998|978999|979000|979001|979002|979003|979004|979005|979006|979007|979008|979009|979010|979909|979910|979911|979912|980211", "text": "Congenital myasthenic syndrome" }, { - "baseId": "16312|16313|16313|16315|16321|23085|23085|23090|23094|23095|23278|134353|134356|134357|134358|134359|134360|134362|134364|135077|135078|135079|135080|135535|135536|135537|135538|188285|188286|193756|193758|193758|194410|194417|194418|194419|195784|195785|195786|195788|195789|196271|205737|205738|207598|207599|215099|236991|236991|246964|251442|251449|251450|251451|251468|251469|251470|251471|253268|253271|253273|253276|253279|253280|254190|254191|254191|254193|254194|254194|254196|254196|254197|254199|254199|259249|265645|265661|265854|267408|269333|269335|269662|270310|270556|272237|272237|273473|306486|310665|310670|314291|314298|314302|314302|314303|314304|314310|314311|316033|316039|316043|316056|316060|316061|316362|316370|316372|320894|320895|320896|326952|326961|326961|326964|326964|326966|326966|326967|326967|326969|327989|327990|327992|327993|328006|328006|328007|328008|328008|328017|328017|328018|328020|359625|359884|360903|406429|406430|406431|421486|425810|425811|425812|428892|429242|440848|441429|443613|443614|452822|453125|453129|453131|453133|453135|453137|453138|453147|453149|453390|453395|453397|453498|453503|453506|453519|453527|453610|453881|453888|453891|453895|453895|453896|453905|453907|458118|458200|458202|458724|458728|458730|458731|458813|458815|458818|458820|458821|458823|458824|459228|459231|459233|459237|459241|459247|461171|461173|461192|461192|461196|461377|461384|461384|461702|461704|461705|462027|462028|500822|503668|519878|519881|519887|519888|519891|519892|519896|519897|519901|519902|519904|519912|520134|520136|520142|520144|520147|520166|520170|520174|520175|523905|524180|524182|524185|524187|524190|524464|524496|524500|524505|524513|524514|524519|525851|526258|526259|526260|526291|526292|526294|526479|538369|538423|546445|550615|552078|552078|552079|552080|559659|559661|559663|559665|559667|559669|559671|559822|559824|559826|559828|559830|561997|561998|562001|562680|562686|563372|563662|563663|563667|563675|563681|564725|564727|564728|564734|564737|565317|565322|565420|565422|565864|567327|567332|568401|568408|570703|610419|620404|632159|632160|632161|632162|632163|632164|632165|632166|632167|632168|632169|632170|632171|632172|632173|632174|632175|632176|632177|632178|632179|632180|632181|632182|632183|632184|632185|632186|632187|632188|632189|632190|632191|632192|632193|637618|637619|637620|637621|637622|637623|637624|637625|637626|637627|637628|637629|637630|637631|637632|637633|637634|640135|640136|640137|640138|640139|640140|640141|640142|640143|640144|640145|640146|640147|640148|640149|651111|651963|651973|651974|652084|677435|677436|677436|689753|689754|691550|691551|691553|691554|691555|691556|691560|691561|691562|692562|692563|692566|693055|693056|693057|693058|695230|695231|695232|695234|695410|695411|698498|698499|698500|701788|701788|711692|720950|720951|730286|738012|738013|738014|738015|738016|738017|748925|748929|751303|752698|764453|764456|767000|767001|767004|768481|777445|783220|784019|784022|784023|790469|791143|791143|819479|819480|820380|820381|829074|829075|829076|829077|829078|829079|829080|829081|829082|829083|829084|829085|829086|829087|829088|829089|829090|829091|829092|829093|829094|829095|829096|829097|829098|829099|835370|835371|835372|835373|835374|835375|835376|835377|835378|835379|835380|835381|835382|835383|835384|835385|835386|838547|838548|838549|838550|838551|838552|838553|838554|838555|850984|851439|851498|851602|868105|868106|868107|868108|868109|868110|868111|868112|868659|868660|868660|900849|900851|923493|923494|923495|923496|923497|923498|923499|923500|923501|923502|925333|925334|925335|925336|926266|926267|926268|926269|932297|932298|932299|932300|932301|932302|932303|932304|932305|934506|934507|934508|934509|935592|941000|943961|943962|943963|943964|943965|943966|946307|946308|946309|946310|946311|946312|946313|946314|947496|947497|947498|953762|953763|955653|955654|955655|956525|956526|956527|956528|956529|956530|959722|959723|960536", + "upstreamId": "16312|16313|16313|16315|16321|23085|23085|23090|23094|23095|23278|134353|134356|134357|134358|134359|134360|134362|134364|135077|135078|135079|135080|135535|135536|135537|135538|188285|188286|193756|193758|193758|194410|194417|194418|194419|195784|195785|195786|195788|195789|196271|205737|205738|207598|207599|215099|236991|236991|246964|251442|251449|251450|251451|251468|251469|251470|251471|253268|253271|253273|253276|253279|253280|254190|254191|254191|254193|254194|254194|254196|254196|254197|254199|254199|259249|265645|265661|265854|267408|269333|269335|269662|270310|270556|272237|272237|273473|306486|310665|310670|314291|314298|314302|314302|314303|314304|314310|314311|316033|316039|316043|316056|316060|316061|316362|316370|316372|320894|320895|320896|326952|326961|326961|326964|326964|326966|326966|326967|326967|326969|327989|327990|327992|327993|328006|328006|328007|328008|328008|328017|328017|328018|328020|359625|359884|360903|406429|406430|406431|421486|425810|425811|425812|428892|429242|440848|441429|443613|443614|452822|453125|453129|453131|453133|453135|453137|453138|453147|453149|453390|453395|453397|453498|453503|453506|453519|453527|453610|453881|453888|453891|453895|453895|453896|453905|453907|458118|458200|458202|458724|458728|458730|458731|458813|458815|458818|458820|458821|458823|458824|459228|459231|459233|459237|459241|459247|461171|461173|461192|461192|461196|461377|461384|461384|461702|461704|461705|462027|462028|500822|503668|519878|519881|519887|519888|519891|519892|519896|519897|519901|519902|519904|519912|520134|520136|520142|520144|520147|520166|520170|520174|520175|523905|524180|524182|524185|524187|524190|524464|524496|524500|524505|524513|524514|524519|525851|526258|526259|526260|526291|526292|526294|526479|538369|538423|546445|550615|552078|552078|552079|552080|559659|559661|559663|559665|559667|559669|559671|559822|559824|559826|559828|559830|561997|561998|562001|562680|562686|563372|563662|563663|563667|563675|563681|564725|564727|564728|564734|564737|565317|565322|565420|565422|565864|567327|567332|568401|568408|570703|610419|620404|632159|632160|632161|632162|632163|632164|632165|632166|632167|632168|632169|632170|632171|632172|632173|632174|632175|632176|632177|632178|632179|632180|632181|632182|632183|632184|632185|632186|632187|632188|632189|632190|632191|632192|632193|637618|637619|637620|637621|637622|637623|637624|637625|637626|637627|637628|637629|637630|637631|637632|637633|637634|640135|640136|640137|640138|640139|640140|640141|640142|640143|640144|640145|640146|640147|640148|640149|651111|651963|651973|651974|652084|677435|677436|677436|689753|689754|691550|691551|691553|691554|691555|691556|691560|691561|691562|692562|692563|692566|693055|693056|693057|693058|695230|695231|695232|695234|695410|695411|698498|698499|698500|701788|701788|711692|720950|720951|730286|738012|738013|738014|738015|738016|738017|748925|748929|751303|752698|764453|764456|767000|767001|767004|768481|777445|783220|784019|784022|784023|790469|791143|791143|819479|819480|820380|820381|829074|829075|829076|829077|829078|829079|829080|829081|829082|829083|829084|829085|829086|829087|829088|829089|829090|829091|829092|829093|829094|829095|829096|829097|829098|829099|835370|835371|835372|835373|835374|835375|835376|835377|835378|835379|835380|835381|835382|835383|835384|835385|835386|838547|838548|838549|838550|838551|838552|838553|838554|838555|850984|851439|851498|851602|868105|868106|868107|868108|868109|868110|868111|868112|868659|868660|868660|900849|900851|923493|923494|923495|923496|923497|923498|923499|923500|923501|923502|925333|925334|925335|925336|926266|926267|926268|926269|932297|932298|932299|932300|932301|932302|932303|932304|932305|934506|934507|934508|934509|935592|941000|943961|943962|943963|943964|943965|943966|946307|946308|946309|946310|946311|946312|946313|946314|947496|947497|947498|953762|953763|955653|955654|955655|956525|956526|956527|956528|956529|956530|959722|959723|960536", "text": "Pena-Shokeir syndrome type I" }, { - "baseId": "16313|251471|443612", + "upstreamId": "16313|251471|443612", "text": "Fetal akinesia deformation sequence 3" }, { - "baseId": "16322|190079|190080|190081|190633|371851|372605|372869|374641|421908|461651|461865|462211|503563|526694|526695|526698|526712|526941|527267|565087|565089|640658|640659|640660|640661|640662|640663|640664|713388|713389|724948|738502|753162|779751|784291|839359|839360|839362|839363|839364|839365|839366|839367|839368|839369|850699|851931|926479|926480|926481|935931|935932|935933|947800|947801|947802|947803|947804|947805|947806|956762", + "upstreamId": "16322|190079|190080|190081|190633|371851|372605|372869|374641|421908|461651|461865|462211|503563|526694|526695|526698|526712|526941|527267|565087|565089|640658|640659|640660|640661|640662|640663|640664|713388|713389|724948|738502|753162|779751|784291|839359|839360|839362|839363|839364|839365|839366|839367|839368|839369|850699|851931|926479|926480|926481|935931|935932|935933|947800|947801|947802|947803|947804|947805|947806|956762", "text": "Combined immunodeficiency due to ORAI1 deficiency" }, { - "baseId": "16323|16324|16325|16326|39778|139380|194475|227472|272473|273439|280357|280358|280363|280364|280367|280368|280727|280730|280731|280732|282057|282060|282061|282062|282075|282076|282077|282082|282171|282179|282186|282188|365211|365212|405151|414791|442807|442808|498391|538334|552184|614216|682814|732359|858941|864284|864285|864286|864287|864288|864289|864290|864291|864292|864293|864294|864295|864296|864297|865175", + "upstreamId": "16323|16324|16325|16326|39778|139380|194475|227472|272473|273439|280357|280358|280363|280364|280367|280368|280727|280730|280731|280732|282057|282060|282061|282062|282075|282076|282077|282082|282171|282179|282186|282188|365211|365212|405151|414791|442807|442808|498391|538334|552184|614216|682814|732359|858941|864284|864285|864286|864287|864288|864289|864290|864291|864292|864293|864294|864295|864296|864297|865175", "text": "Hyperphosphatasia with mental retardation syndrome 1" }, { - "baseId": "16323|270363|282089|353102|513588|654540", + "upstreamId": "16323|270363|282089|353102|513588|654540", "text": "Hyperphosphatasia-intellectual disability syndrome" }, { - "baseId": "16327|190662|495084|583330|622442|626982|626983|650550|696204|952114", + "upstreamId": "16327|190662|495084|583330|622442|626982|626983|650550|696204|952114", "text": "Hypercoagulability syndrome due to glycosylphosphatidylinositol deficiency" }, { - "baseId": "16328|136231|136232|136233|222007|240895|311846|311848|311849|311850|311861|311862|311863|311864|311869|311872|311873|311874|311875|317461|317478|317486|317487|317491|323498|323501|323504|323506|323509|323511|323512|324135|324137|324140|324143|324149|324152|324163|324170|324172|324174|324176|324192|324193|324194|324202|837570|866674|866675|866676|866677|866678|866679|866680|866681|866682|866683|866684|866685|866686|866687|866688|866689|866690|866691|866692|866693|866694|866695|868547|868548|868549|919310", + "upstreamId": "16328|136231|136232|136233|222007|240895|311846|311848|311849|311850|311861|311862|311863|311864|311869|311872|311873|311874|311875|317461|317478|317486|317487|317491|323498|323501|323504|323506|323509|323511|323512|324135|324137|324140|324143|324149|324152|324163|324170|324172|324174|324176|324192|324193|324194|324202|837570|866674|866675|866676|866677|866678|866679|866680|866681|866682|866683|866684|866685|866686|866687|866688|866689|866690|866691|866692|866693|866694|866695|868547|868548|868549|919310", "text": "Spastic paraplegia 33, autosomal dominant" }, { - "baseId": "16328|971426", + "upstreamId": "16328|971426", "text": "Spastic tetraparesis" }, { - "baseId": "16329", + "upstreamId": "16329", "text": "Deafness, mitochondrial, modifier of" }, { - "baseId": "16329|16330|16331|16332|16333|39776|39777|141411|141412|141413|141414|141416|141417|141418|141419|141420|141422|141423|141424|191073|211945|211946|211948|211950|211951|211954|211955|211956|213662|271100|338448|338450|338451|338452|338459|338463|338464|338467|338470|338473|338476|348064|348068|348069|348071|348073|348075|348079|348082|348087|351775|351781|351783|351784|351785|351787|351788|352639|352640|352641|352642|352643|352644|352645|352646|352647|352648|352649|352650|379866|415721|434687|491567|549073|549077|549079|552233|584105|584342|587178|620695|773591|776754|776834|786618|788096|798773|849393|891429|891430|891431|891432|891433|891434|891435|891436|891437|891851|891852|961793|980058|980059|980060|980061|980062", + "upstreamId": "16329|16330|16331|16332|16333|39776|39777|141411|141412|141413|141414|141416|141417|141418|141419|141420|141422|141423|141424|191073|211945|211946|211948|211950|211951|211954|211955|211956|213662|271100|338448|338450|338451|338452|338459|338463|338464|338467|338470|338473|338476|348064|348068|348069|348071|348073|348075|348079|348082|348087|351775|351781|351783|351784|351785|351787|351788|352639|352640|352641|352642|352643|352644|352645|352646|352647|352648|352649|352650|379866|415721|434687|491567|549073|549077|549079|552233|584105|584342|587178|620695|773591|776754|776834|786618|788096|798773|849393|891429|891430|891431|891432|891433|891434|891435|891436|891437|891851|891852|961793|980058|980059|980060|980061|980062", "text": "Acute infantile liver failure due to synthesis defect of mtDNA-encoded proteins" }, { - "baseId": "16334", + "upstreamId": "16334", "text": "Seborrhea-like dermatitis with psoriasiform elements" }, { - "baseId": "16335|45584|141330|361330|581733|792816", + "upstreamId": "16335|45584|141330|361330|581733|792816", "text": "Macrocephaly, alopecia, cutis laxa, and scoliosis" }, { - "baseId": "16336|16337|16338|16339|16340|16341|16342|53037|53039|53040|53041|53042|172797|172799|172937|228548|273171|275039|283174|283175|283184|283186|283190|283901|283903|283904|285666|285668|285673|285674|285676|286059|286066|286071|353548|490780|553250|881714|881715|881716|881717|881718|881719|881720|881721", + "upstreamId": "16336|16337|16338|16339|16340|16341|16342|53037|53039|53040|53041|53042|172797|172799|172937|228548|273171|275039|283174|283175|283184|283186|283190|283901|283903|283904|285666|285668|285673|285674|285676|286059|286066|286071|353548|490780|553250|881714|881715|881716|881717|881718|881719|881720|881721", "text": "Deafness, autosomal recessive 59" }, { - "baseId": "16343|16344|16345|16346|16347|16348|16349|16350|205190|227410|654900|980967", + "upstreamId": "16343|16344|16345|16346|16347|16348|16349|16350|205190|227410|654900|980967", "text": "Corneal endothelial dystrophy" }, { - "baseId": "16346|16351|16352|16353|16354|16355|16356|16357|16358|257347|335150|335155|335160|335162|344936|344949|344951|349799|350819|350823|350828|350829|350833|513381|705428|705429|705430|705432|716899|716900|716901|728589|742316|742318|742319|742320|742324|745107|757418|757421|757423|757425|757426|760649|760946|773037|773038|773040|773041|773048|773052|773054|773055|776769|780043|786336|786348|793835|793836|885959|980017|980018", + "upstreamId": "16346|16351|16352|16353|16354|16355|16356|16357|16358|257347|335150|335155|335160|335162|344936|344949|344951|349799|350819|350823|350828|350829|350833|513381|705428|705429|705430|705432|716899|716900|716901|728589|742316|742318|742319|742320|742324|745107|757418|757421|757423|757425|757426|760649|760946|773037|773038|773040|773041|773048|773052|773054|773055|776769|780043|786336|786348|793835|793836|885959|980017|980018", "text": "Corneal dystrophy-perceptive deafness syndrome" }, { - "baseId": "16359|16360|16361|16362", + "upstreamId": "16359|16360|16361|16362", "text": "Corneal dystrophy, Fuchs endothelial, 4" }, { - "baseId": "16363|188053|213463|222816|410649|847886|961634|962984", + "upstreamId": "16363|188053|213463|222816|410649|847886|961634|962984", "text": "Charcot-Marie-Tooth disease type 2B2" }, { - "baseId": "16363|17307|17308|17309|17310|17313|17314|17315|17317|17319|17320|17321|19582|19583|19585|19699|19700|23505|24243|29517|29520|29522|29524|29525|29526|29528|29533|29534|29537|29538|29539|29542|29543|29547|29556|29558|29559|29563|29564|29566|39693|45135|45138|45139|45141|57194|57195|57196|57199|57201|57202|57204|57205|57207|57208|57209|57210|57211|57212|57213|57215|57216|57218|57219|57220|57225|57226|57227|57229|57230|57234|57235|57238|57239|57240|57241|57242|57244|57246|57247|57252|57254|57256|57257|57259|57260|57261|57262|77655|77656|77657|77659|77662|77664|77666|77669|77674|77675|77677|77683|77687|77688|77689|77691|77692|77694|77695|77696|77697|77698|77699|77701|77702|77703|77704|77708|77712|77714|77716|77717|77746|77747|77750|77756|77757|77759|77761|77764|77765|77767|77774|77775|77779|77781|77798|77799|77803|77805|77807|77808|77813|77818|77821|77822|77825|77826|77828|77836|77843|77849|77852|77856|77857|101186|133981|133982|134845|134846|134847|141142|141143|141144|141145|141146|141147|141903|141913|141914|141915|141917|141918|141919|141920|141921|141922|141923|153583|165484|165485|165487|165488|165489|165503|165504|165644|167393|167399|171048|171050|172341|172345|172346|172348|172465|172481|172483|172484|172489|172490|178432|181570|185950|186075|186076|186077|186078|186153|187938|189383|190878|191101|191254|191366|191572|192098|192545|192546|193949|194120|194890|194937|196028|196270|196292|196335|196456|196457|196460|196461|196463|196467|196468|196470|196476|196477|196479|196488|198602|205754|206726|207867|207868|210581|210582|210583|210584|210585|210587|210588|210589|210590|210594|210597|210598|210601|210602|210603|210604|210605|212060|212062|212063|212065|212066|212067|212068|212069|212070|212071|212578|213216|213217|213218|213219|213220|213221|213462|213463|213464|213788|213789|213790|215103|221072|221073|221074|221076|221078|221079|221697|221698|221699|222148|222150|222151|222532|222533|222534|222535|222815|222816|222817|222818|224181|224183|226437|228272|228277|228278|228279|228280|228282|238110|238112|238113|238114|238115|238116|238117|238136|238137|238138|238145|238146|238147|238148|238149|238150|238151|241164|241165|241166|242492|242493|242494|242495|243383|243384|244149|244186|244190|244192|244195|244199|244201|244207|244209|244210|244217|244221|244224|244225|244226|244230|244231|244232|244238|244239|244499|244501|244659|244660|244662|244664|244666|244667|244984|244986|244988|244989|244990|244991|244992|244994|244995|244996|244998|244999|245001|245260|245261|245262|249266|252786|252788|252789|252793|252795|257926|257936|260125|263976|265790|265812|266058|266396|267009|267234|267407|268422|268423|268456|268457|269185|269705|270175|270495|271542|272177|272210|272364|272513|272902|273698|274737|274897|275617|275618|275620|275648|275649|275671|275677|275679|275703|275733|275737|275742|275746|275747|275750|275751|275754|275758|275760|275761|275762|275763|275764|275766|275773|275785|275787|275792|275799|275802|275832|275842|275887|275897|275902|275904|275960|276217|276218|276219|276220|276223|276224|276238|276239|276240|276243|276245|276253|276260|276268|276269|276473|276475|276476|276482|276485|276486|276487|276488|276496|276497|276514|276601|276610|276614|276860|276879|276884|276885|276886|276889|276898|276899|276903|276905|276906|276907|276908|276909|276951|276952|276953|276954|276965|276969|276970|276972|276977|276978|276992|277008|277039|277430|277433|277434|277445|277447|277456|288623|288635|288638|292393|292395|292510|302796|302805|303437|306110|306131|306135|306839|310904|310905|310906|311001|311081|311087|311089|311091|311092|311094|314466|314467|316173|316570|316614|316872|320150|320157|321112|323452|326184|326195|326197|326198|328232|329273|330859|334076|334077|334082|334083|334099|334101|335871|335876|335888|335893|335895|335897|342248|342254|343812|343816|343818|343834|343842|343847|343849|344009|349263|350227|353022|353023|353062|353209|359204|360396|361488|364339|364342|364400|364422|364423|364425|364426|364429|364449|364520|364525|364527|369141|369717|371096|371108|371120|371503|371504|372259|374546|374548|375563|375593|375596|375606|377737|377740|377743|379613|380250|380252|390725|390730|390731|390732|390740|390745|390751|390783|390790|390792|390794|390796|390797|390799|390801|390802|390804|390807|390809|390815|390816|390818|390819|390820|390821|390823|390824|390826|390827|390830|390832|390834|390837|390838|390839|390851|395619|395622|395625|395627|395634|395871|396002|396004|396286|398262|398342|398344|398347|401310|401314|401318|401808|401813|401815|403327|403332|403333|403348|403846|403850|404898|407124|407126|408397|409719|409720|409722|410649|411573|413249|413313|421176|421866|425314|425751|427647|427654|427655|427656|432972|433332|433691|433692|437797|440347|440351|440360|441080|442603|442607|442609|442638|444840|446907|446943|446947|446949|446950|446957|446958|446983|446988|446989|446991|446992|446998|446999|447004|447007|447068|447072|447073|447159|447163|447169|447173|447174|447180|447189|447196|447227|447230|447234|447236|447237|447238|447239|447243|447252|447253|447254|447255|447258|447266|447307|447315|447317|456697|456698|456702|456704|457153|457154|457156|457158|457164|457338|457340|457343|457752|457756|457766|457767|457772|457773|461232|461415|461419|461427|461753|462047|462060|462063|462068|465940|465941|466628|466634|466640|466643|466674|466686|466703|466959|466963|466966|466970|466974|468986|468987|469959|469963|469968|470418|470422|470423|470425|470431|470438|470448|470455|471097|471104|471108|480668|481568|488416|490402|491150|491488|491900|493495|493976|495086|497999|498005|498035|498064|498125|502025|502032|502367|505736|506457|509110|509111|509115|509119|509120|509122|509124|511044|514858|514862|514867|514868|514869|514876|514881|514902|514903|514908|514909|514910|514917|514920|514921|514928|514930|514933|515014|515016|515021|515022|515030|515033|515034|515035|515038|515039|515042|515045|515046|515048|515078|515085|515086|515088|515092|515094|515099|515102|515103|515112|515113|515114|515118|515122|515124|515125|515131|515135|515136|515137|515138|515149|515150|515157|515159|515161|515162|515166|515170|515171|515279|515280|515282|515284|522301|522633|522635|522638|522641|522646|522653|522907|522909|522911|523072|523076|523079|523081|523288|523290|523294|523295|523297|526005|526011|526282|526513|526518|526799|526807|526810|529856|530185|530187|530200|530211|530219|530257|530259|530261|530263|530269|530271|530278|530511|530513|530518|530520|530523|530726|530730|530732|530734|530736|532390|533131|533134|533231|533235|533244|533247|533250|533251|533255|533257|533258|533266|533275|533660|533665|533671|533674|533681|533683|533687|536562|537077|540437|540448|556493|556513|556518|556520|556522|556543|556545|556547|556574|556576|556578|556580|556582|556584|556586|556611|556613|556614|556615|556616|556617|556618|556619|556620|556621|556622|556624|556669|556671|556673|556675|556677|556679|556681|556683|556808|556888|556890|556897|556900|556903|556905|556907|556909|556955|556959|556961|556963|556965|556967|556969|558011|558079|558084|558086|558088|558090|558092|558094|558096|558098|558140|558142|558144|558146|561576|561580|561581|561585|561918|561924|561926|561936|561937|561943|564289|564291|564772|564777|564779|565901|565909|565911|565918|565923|566831|566847|566851|566854|567369|567372|567539|568275|568288|568289|568291|570399|570404|570407|570409|570410|570412|570415|570419|570422|570424|570459|570461|570462|570475|570479|570487|570492|570494|570497|570503|570937|570941|570943|572613|572616|572618|573240|573244|573245|573249|573250|573251|573257|573259|573260|574135|574137|574146|574147|574148|574149|574150|575008|575009|575010|575011|575012|575013|576406|576412|576972|576973|576974|583277|589194|589611|589638|609799|612779|613043|619948|621704|624892|624894|624917|624922|624925|624937|624939|624958|624960|624971|625140|625724|626484|626485|626486|626487|626488|626489|626490|626491|626492|626493|626494|626495|626497|626734|626735|626738|626740|626741|626742|626743|626744|626745|626746|626747|626748|626749|626750|626751|626752|626753|626754|626755|626756|626757|626758|626759|626760|626761|626762|626763|626764|626765|626901|626902|626903|626904|626905|626906|626907|626908|626909|626910|626911|626912|626913|626914|626915|626916|626917|626918|626919|626920|626921|626922|626923|626924|626925|626926|626927|626928|626929|626930|626931|636128|636129|636130|636131|636132|636133|636134|636135|636136|636137|636138|636139|636140|640200|640201|640202|640203|640204|640205|640206|640207|640208|640209|640210|644920|644921|644922|644923|644924|644925|644926|644927|644928|644929|644930|644931|644932|644933|644934|644935|644936|644937|644938|644939|644940|644941|644942|644943|644944|644945|648259|648260|648261|648262|648263|648264|648265|648266|648267|648268|648269|648270|648271|648272|648273|648274|648275|648276|648277|648278|648279|648280|648281|648282|648283|648284|648285|650527|650530|650531|650534|650538|650548|650553|650582|650588|650601|650632|650636|650653|651807|652220|652648|652658|652659|653147|679362|681874|682977|683002|683007|683074|683227|683228|683230|683231|683285|683286|683888|684262|684263|684613|684614|684615|684616|684846|684847|684848|684849|684850|685079|685293|685421|685503|685505|685507|685573|685575|687042|687798|687800|687801|687803|688635|688636|688639|688640|689127|689128|689129|689130|689132|689134|689136|689137|689140|689141|689613|690006|690007|690225|690284|690286|690351|690378|693917|693918|693924|694494|694500|694501|694502|695006|695703|695704|695835|703786|716612|724537|730778|745494|745734|758864|759546|774391|774395|775706|777019|780346|782855|784038|784039|784040|786257|787005|794398|797368|799084|818833|819871|819872|820868|820869|822361|822362|822363|822365|822366|822367|822368|822369|822371|822372|822373|822374|822375|822376|822377|822379|822380|822381|822382|822383|822384|822385|822386|822387|822626|822627|822628|822629|822630|822631|822632|822633|822634|822635|822636|822637|822638|822639|822640|822641|822642|822643|822644|822645|822646|822647|822648|822649|822650|822651|822652|822653|822789|822790|822791|822792|822793|822794|822795|822796|822797|822798|822799|822800|822801|822802|822803|822804|822805|822806|822807|822808|822809|822810|822811|822812|822813|833563|833564|833565|833566|833567|833568|833569|833570|833571|833572|838639|838640|838641|838642|838643|838644|838645|838646|838647|838648|838649|838650|844215|844216|844217|844218|844219|844220|844221|844222|844223|844224|844225|844226|844227|844228|844229|844230|844231|844232|844233|844234|844235|844236|844237|844238|847864|847865|847866|847867|847868|847869|847870|847871|847872|847873|847874|847875|847876|847877|847878|847879|847880|847881|847882|847883|847884|850713|850720|850728|850729|850734|851103|851152|852127|852347|852369|852825|861810|862127|862128|862129|862130|862131|862132|862133|862134|862135|862136|862137|862138|862139|862140|862141|862142|862143|862144|862145|862146|862147|862148|864970|864971|864972|897981|905084|906433|906450|906451|920956|921535|921536|921537|921538|921539|921540|921611|921616|921618|921664|921665|921666|921667|921668|921669|921670|921671|921672|921673|924842|924843|924844|924845|924846|924847|926293|926294|926295|926296|926297|926298|926299|926300|927915|927916|927917|927918|927919|927920|927921|927922|927923|927924|927925|927926|929031|929032|929033|929034|929035|929036|929037|929038|929039|929040|929041|929042|929043|929044|929045|929046|929891|929892|929893|929894|929895|929896|929897|929898|929899|929900|929901|930003|930004|930006|930007|930008|930009|930010|930011|930012|930013|930059|930060|930061|930062|930063|930064|930065|930066|930067|930068|930069|930070|930071|933869|933870|933871|933872|933873|933874|933875|933876|933877|935638|935639|935640|935641|935642|935643|937573|937574|937575|937576|937577|937578|938778|938779|938780|938781|938782|938783|938784|938785|940226|940596|940877|941002|941325|941326|941327|941328|941329|941330|941331|941332|941333|941334|941335|941415|941416|941417|941418|941419|941420|941421|941422|941423|941424|941425|941490|941491|941492|941493|941494|941495|941496|941497|941498|941499|941500|941501|941502|941503|941504|941505|945616|945617|945618|945619|945620|947543|949523|949524|949525|949526|949527|949528|949529|949530|949531|949532|950860|950861|950862|950863|950864|950865|950866|950867|950868|950869|951982|951983|951984|951985|951986|951987|952039|952041|952042|952043|952090|952091|955145|955146|955147|955148|956555|957853|957854|958692|958693|958694|958695|958696|958697|959521|959523|959524|959525|959997|960175|960176|960298|960397|960851", + "upstreamId": "16363|17307|17308|17309|17310|17313|17314|17315|17317|17319|17320|17321|19582|19583|19585|19699|19700|23505|24243|29517|29520|29522|29524|29525|29526|29528|29533|29534|29537|29538|29539|29542|29543|29547|29556|29558|29559|29563|29564|29566|39693|45135|45138|45139|45141|57194|57195|57196|57199|57201|57202|57204|57205|57207|57208|57209|57210|57211|57212|57213|57215|57216|57218|57219|57220|57225|57226|57227|57229|57230|57234|57235|57238|57239|57240|57241|57242|57244|57246|57247|57252|57254|57256|57257|57259|57260|57261|57262|77655|77656|77657|77659|77662|77664|77666|77669|77674|77675|77677|77683|77687|77688|77689|77691|77692|77694|77695|77696|77697|77698|77699|77701|77702|77703|77704|77708|77712|77714|77716|77717|77746|77747|77750|77756|77757|77759|77761|77764|77765|77767|77774|77775|77779|77781|77798|77799|77803|77805|77807|77808|77813|77818|77821|77822|77825|77826|77828|77836|77843|77849|77852|77856|77857|101186|133981|133982|134845|134846|134847|141142|141143|141144|141145|141146|141147|141903|141913|141914|141915|141917|141918|141919|141920|141921|141922|141923|153583|165484|165485|165487|165488|165489|165503|165504|165644|167393|167399|171048|171050|172341|172345|172346|172348|172465|172481|172483|172484|172489|172490|178432|181570|185950|186075|186076|186077|186078|186153|187938|189383|190878|191101|191254|191366|191572|192098|192545|192546|193949|194120|194890|194937|196028|196270|196292|196335|196456|196457|196460|196461|196463|196467|196468|196470|196476|196477|196479|196488|198602|205754|206726|207867|207868|210581|210582|210583|210584|210585|210587|210588|210589|210590|210594|210597|210598|210601|210602|210603|210604|210605|212060|212062|212063|212065|212066|212067|212068|212069|212070|212071|212578|213216|213217|213218|213219|213220|213221|213462|213463|213464|213788|213789|213790|215103|221072|221073|221074|221076|221078|221079|221697|221698|221699|222148|222150|222151|222532|222533|222534|222535|222815|222816|222817|222818|224181|224183|226437|228272|228277|228278|228279|228280|228282|238110|238112|238113|238114|238115|238116|238117|238136|238137|238138|238145|238146|238147|238148|238149|238150|238151|241164|241165|241166|242492|242493|242494|242495|243383|243384|244149|244186|244190|244192|244195|244199|244201|244207|244209|244210|244217|244221|244224|244225|244226|244230|244231|244232|244238|244239|244499|244501|244659|244660|244662|244664|244666|244667|244984|244986|244988|244989|244990|244991|244992|244994|244995|244996|244998|244999|245001|245260|245261|245262|249266|252786|252788|252789|252793|252795|257926|257936|260125|263976|265790|265812|266058|266396|267009|267234|267407|268422|268423|268456|268457|269185|269705|270175|270495|271542|272177|272210|272364|272513|272902|273698|274737|274897|275617|275618|275620|275648|275649|275671|275677|275679|275703|275733|275737|275742|275746|275747|275750|275751|275754|275758|275760|275761|275762|275763|275764|275766|275773|275785|275787|275792|275799|275802|275832|275842|275887|275897|275902|275904|275960|276217|276218|276219|276220|276223|276224|276238|276239|276240|276243|276245|276253|276260|276268|276269|276473|276475|276476|276482|276485|276486|276487|276488|276496|276497|276514|276601|276610|276614|276860|276879|276884|276885|276886|276889|276898|276899|276903|276905|276906|276907|276908|276909|276951|276952|276953|276954|276965|276969|276970|276972|276977|276978|276992|277008|277039|277430|277433|277434|277445|277447|277456|288623|288635|288638|292393|292395|292510|302796|302805|303437|306110|306131|306135|306839|310904|310905|310906|311001|311081|311087|311089|311091|311092|311094|314466|314467|316173|316570|316614|316872|320150|320157|321112|323452|326184|326195|326197|326198|328232|329273|330859|334076|334077|334082|334083|334099|334101|335871|335876|335888|335893|335895|335897|342248|342254|343812|343816|343818|343834|343842|343847|343849|344009|349263|350227|353022|353023|353062|353209|359204|360396|361488|364339|364342|364400|364422|364423|364425|364426|364429|364449|364520|364525|364527|369141|369717|371096|371108|371120|371503|371504|372259|374546|374548|375563|375593|375596|375606|377737|377740|377743|379613|380250|380252|390725|390730|390731|390732|390740|390745|390751|390783|390790|390792|390794|390796|390797|390799|390801|390802|390804|390807|390809|390815|390816|390818|390819|390820|390821|390823|390824|390826|390827|390830|390832|390834|390837|390838|390839|390851|395619|395622|395625|395627|395634|395871|396002|396004|396286|398262|398342|398344|398347|401310|401314|401318|401808|401813|401815|403327|403332|403333|403348|403846|403850|404898|407124|407126|408397|409719|409720|409722|410649|411573|413249|413313|421176|421866|425314|425751|427647|427654|427655|427656|432972|433332|433691|433692|437797|440347|440351|440360|441080|442603|442607|442609|442638|444840|446907|446943|446947|446949|446950|446957|446958|446983|446988|446989|446991|446992|446998|446999|447004|447007|447068|447072|447073|447159|447163|447169|447173|447174|447180|447189|447196|447227|447230|447234|447236|447237|447238|447239|447243|447252|447253|447254|447255|447258|447266|447307|447315|447317|456697|456698|456702|456704|457153|457154|457156|457158|457164|457338|457340|457343|457752|457756|457766|457767|457772|457773|461232|461415|461419|461427|461753|462047|462060|462063|462068|465940|465941|466628|466634|466640|466643|466674|466686|466703|466959|466963|466966|466970|466974|468986|468987|469959|469963|469968|470418|470422|470423|470425|470431|470438|470448|470455|471097|471104|471108|480668|481568|488416|490402|491150|491488|491900|493495|493976|495086|497999|498005|498035|498064|498125|502025|502032|502367|505736|506457|509110|509111|509115|509119|509120|509122|509124|511044|514858|514862|514867|514868|514869|514876|514881|514902|514903|514908|514909|514910|514917|514920|514921|514928|514930|514933|515014|515016|515021|515022|515030|515033|515034|515035|515038|515039|515042|515045|515046|515048|515078|515085|515086|515088|515092|515094|515099|515102|515103|515112|515113|515114|515118|515122|515124|515125|515131|515135|515136|515137|515138|515149|515150|515157|515159|515161|515162|515166|515170|515171|515279|515280|515282|515284|522301|522633|522635|522638|522641|522646|522653|522907|522909|522911|523072|523076|523079|523081|523288|523290|523294|523295|523297|526005|526011|526282|526513|526518|526799|526807|526810|529856|530185|530187|530200|530211|530219|530257|530259|530261|530263|530269|530271|530278|530511|530513|530518|530520|530523|530726|530730|530732|530734|530736|532390|533131|533134|533231|533235|533244|533247|533250|533251|533255|533257|533258|533266|533275|533660|533665|533671|533674|533681|533683|533687|536562|537077|540437|540448|556493|556513|556518|556520|556522|556543|556545|556547|556574|556576|556578|556580|556582|556584|556586|556611|556613|556614|556615|556616|556617|556618|556619|556620|556621|556622|556624|556669|556671|556673|556675|556677|556679|556681|556683|556808|556888|556890|556897|556900|556903|556905|556907|556909|556955|556959|556961|556963|556965|556967|556969|558011|558079|558084|558086|558088|558090|558092|558094|558096|558098|558140|558142|558144|558146|561576|561580|561581|561585|561918|561924|561926|561936|561937|561943|564289|564291|564772|564777|564779|565901|565909|565911|565918|565923|566831|566847|566851|566854|567369|567372|567539|568275|568288|568289|568291|570399|570404|570407|570409|570410|570412|570415|570419|570422|570424|570459|570461|570462|570475|570479|570487|570492|570494|570497|570503|570937|570941|570943|572613|572616|572618|573240|573244|573245|573249|573250|573251|573257|573259|573260|574135|574137|574146|574147|574148|574149|574150|575008|575009|575010|575011|575012|575013|576406|576412|576972|576973|576974|583277|589194|589611|589638|609799|612779|613043|619948|621704|624892|624894|624917|624922|624925|624937|624939|624958|624960|624971|625140|625724|626484|626485|626486|626487|626488|626489|626490|626491|626492|626493|626494|626495|626497|626734|626735|626738|626740|626741|626742|626743|626744|626745|626746|626747|626748|626749|626750|626751|626752|626753|626754|626755|626756|626757|626758|626759|626760|626761|626762|626763|626764|626765|626901|626902|626903|626904|626905|626906|626907|626908|626909|626910|626911|626912|626913|626914|626915|626916|626917|626918|626919|626920|626921|626922|626923|626924|626925|626926|626927|626928|626929|626930|626931|636128|636129|636130|636131|636132|636133|636134|636135|636136|636137|636138|636139|636140|640200|640201|640202|640203|640204|640205|640206|640207|640208|640209|640210|644920|644921|644922|644923|644924|644925|644926|644927|644928|644929|644930|644931|644932|644933|644934|644935|644936|644937|644938|644939|644940|644941|644942|644943|644944|644945|648259|648260|648261|648262|648263|648264|648265|648266|648267|648268|648269|648270|648271|648272|648273|648274|648275|648276|648277|648278|648279|648280|648281|648282|648283|648284|648285|650527|650530|650531|650534|650538|650548|650553|650582|650588|650601|650632|650636|650653|651807|652220|652648|652658|652659|653147|679362|681874|682977|683002|683007|683074|683227|683228|683230|683231|683285|683286|683888|684262|684263|684613|684614|684615|684616|684846|684847|684848|684849|684850|685079|685293|685421|685503|685505|685507|685573|685575|687042|687798|687800|687801|687803|688635|688636|688639|688640|689127|689128|689129|689130|689132|689134|689136|689137|689140|689141|689613|690006|690007|690225|690284|690286|690351|690378|693917|693918|693924|694494|694500|694501|694502|695006|695703|695704|695835|703786|716612|724537|730778|745494|745734|758864|759546|774391|774395|775706|777019|780346|782855|784038|784039|784040|786257|787005|794398|797368|799084|818833|819871|819872|820868|820869|822361|822362|822363|822365|822366|822367|822368|822369|822371|822372|822373|822374|822375|822376|822377|822379|822380|822381|822382|822383|822384|822385|822386|822387|822626|822627|822628|822629|822630|822631|822632|822633|822634|822635|822636|822637|822638|822639|822640|822641|822642|822643|822644|822645|822646|822647|822648|822649|822650|822651|822652|822653|822789|822790|822791|822792|822793|822794|822795|822796|822797|822798|822799|822800|822801|822802|822803|822804|822805|822806|822807|822808|822809|822810|822811|822812|822813|833563|833564|833565|833566|833567|833568|833569|833570|833571|833572|838639|838640|838641|838642|838643|838644|838645|838646|838647|838648|838649|838650|844215|844216|844217|844218|844219|844220|844221|844222|844223|844224|844225|844226|844227|844228|844229|844230|844231|844232|844233|844234|844235|844236|844237|844238|847864|847865|847866|847867|847868|847869|847870|847871|847872|847873|847874|847875|847876|847877|847878|847879|847880|847881|847882|847883|847884|850713|850720|850728|850729|850734|851103|851152|852127|852347|852369|852825|861810|862127|862128|862129|862130|862131|862132|862133|862134|862135|862136|862137|862138|862139|862140|862141|862142|862143|862144|862145|862146|862147|862148|864970|864971|864972|897981|905084|906433|906450|906451|920956|921535|921536|921537|921538|921539|921540|921611|921616|921618|921664|921665|921666|921667|921668|921669|921670|921671|921672|921673|924842|924843|924844|924845|924846|924847|926293|926294|926295|926296|926297|926298|926299|926300|927915|927916|927917|927918|927919|927920|927921|927922|927923|927924|927925|927926|929031|929032|929033|929034|929035|929036|929037|929038|929039|929040|929041|929042|929043|929044|929045|929046|929891|929892|929893|929894|929895|929896|929897|929898|929899|929900|929901|930003|930004|930006|930007|930008|930009|930010|930011|930012|930013|930059|930060|930061|930062|930063|930064|930065|930066|930067|930068|930069|930070|930071|933869|933870|933871|933872|933873|933874|933875|933876|933877|935638|935639|935640|935641|935642|935643|937573|937574|937575|937576|937577|937578|938778|938779|938780|938781|938782|938783|938784|938785|940226|940596|940877|941002|941325|941326|941327|941328|941329|941330|941331|941332|941333|941334|941335|941415|941416|941417|941418|941419|941420|941421|941422|941423|941424|941425|941490|941491|941492|941493|941494|941495|941496|941497|941498|941499|941500|941501|941502|941503|941504|941505|945616|945617|945618|945619|945620|947543|949523|949524|949525|949526|949527|949528|949529|949530|949531|949532|950860|950861|950862|950863|950864|950865|950866|950867|950868|950869|951982|951983|951984|951985|951986|951987|952039|952041|952042|952043|952090|952091|955145|955146|955147|955148|956555|957853|957854|958692|958693|958694|958695|958696|958697|959521|959523|959524|959525|959997|960175|960176|960298|960397|960851", "text": "Charcot-Marie-Tooth disease, type 2" }, { - "baseId": "16363|141903|141904|199858|213462|213463|213464|222816|222817|222818|379613|410649|471108|610574|610575|800146|800147|961634|982190|982191", + "upstreamId": "16363|141903|141904|199858|213462|213463|213464|222816|222817|222818|379613|410649|471108|610574|610575|800146|800147|961634|982190|982191", "text": "Basel-Vanagaite-Smirin-Yosef syndrome" }, { - "baseId": "16364|134601|134602|134604|134605|134606|193742|247454|247455|247456|253560|308365|308366|308368|308373|308374|308380|308384|308385|308390|308391|308393|308397|308401|308405|308414|308422|308435|308449|308453|308455|308461|308463|308470|308471|308484|308486|308487|308488|308492|312828|312831|312832|312833|312840|312842|312843|312844|312867|312869|312871|312873|312874|312892|312904|312905|312930|312931|312932|312933|312934|312936|312938|312941|312943|318663|318665|318668|318669|318670|318679|318680|318690|318700|318714|318738|318741|318750|318751|318754|318760|318762|318763|318765|318766|318793|318800|318801|318803|318806|318813|318826|318829|318837|318842|319275|319278|319283|319285|319287|319290|319292|319295|319300|319302|319303|319305|319306|319308|319309|319311|319323|319337|319348|319352|319354|319366|319368|319369|319425|319427|319450|319451|319457|319460|319462|319473|380235|380236|380238|429021|429023|540018|620812|654541|723579|737143|737147|737148|783416|902093|902094|902095|902096|902097|902098|902099|902100|902101|902102|902103|902104|902105|902106|902107|902108|902109|902110|902111|902112|902114|902115|902116|902117|902118|902119|902120|902121|902122|902123|902124|902125|902126|902128|902130|902131|902132|902133|902134|902135|902136|902137|902138|902139|902140|902141|902142|902143|902144|902145|902146|902147|902148|902149|902150|902151|902152|902153|902154|902155|902156|902157|902158|902159|902160|902161|902162|902163|902164|902165|902166|902167|902168|902169|902170|902171|902172|902174|902175|902176|902177|902179|902180|902181|902182|902183|902184|902185|902186|902187|902188|902189|902190|902191|902193|902194|902195|902196|902197|902198|902199|902200|902201|902202|902203|902204|902205|903410|903411|903412", + "upstreamId": "16364|134601|134602|134604|134605|134606|193742|247454|247455|247456|253560|308365|308366|308368|308373|308374|308380|308384|308385|308390|308391|308393|308397|308401|308405|308414|308422|308435|308449|308453|308455|308461|308463|308470|308471|308484|308486|308487|308488|308492|312828|312831|312832|312833|312840|312842|312843|312844|312867|312869|312871|312873|312874|312892|312904|312905|312930|312931|312932|312933|312934|312936|312938|312941|312943|318663|318665|318668|318669|318670|318679|318680|318690|318700|318714|318738|318741|318750|318751|318754|318760|318762|318763|318765|318766|318793|318800|318801|318803|318806|318813|318826|318829|318837|318842|319275|319278|319283|319285|319287|319290|319292|319295|319300|319302|319303|319305|319306|319308|319309|319311|319323|319337|319348|319352|319354|319366|319368|319369|319425|319427|319450|319451|319457|319460|319462|319473|380235|380236|380238|429021|429023|540018|620812|654541|723579|737143|737147|737148|783416|902093|902094|902095|902096|902097|902098|902099|902100|902101|902102|902103|902104|902105|902106|902107|902108|902109|902110|902111|902112|902114|902115|902116|902117|902118|902119|902120|902121|902122|902123|902124|902125|902126|902128|902130|902131|902132|902133|902134|902135|902136|902137|902138|902139|902140|902141|902142|902143|902144|902145|902146|902147|902148|902149|902150|902151|902152|902153|902154|902155|902156|902157|902158|902159|902160|902161|902162|902163|902164|902165|902166|902167|902168|902169|902170|902171|902172|902174|902175|902176|902177|902179|902180|902181|902182|902183|902184|902185|902186|902187|902188|902189|902190|902191|902193|902194|902195|902196|902197|902198|902199|902200|902201|902202|902203|902204|902205|903410|903411|903412", "text": "Diabetes mellitus, neonatal, with congenital hypothyroidism" }, { - "baseId": "16365|17080|20359", + "upstreamId": "16365|17080|20359", "text": "Bardet-Biedl syndrome 1, modifier of" }, { - "baseId": "16366|239515|239516|239517|294803|294805|294810|294811|294812|294813|294819|294820|294821|294828|294830|296437|296444|296446|296452|296462|296468|296469|296479|296482|296487|296492|296494|296495|296511|296522|296524|300192|300196|300209|300212|300216|300219|300228|300230|300231|300234|300236|300246|300249|300261|300281|300284|300286|394662|453628|453635|453898|453903|454432|454442|454448|454449|520165|520171|520173|520308|520546|520551|520594|538982|559841|559843|632536|632537|632538|685164|686567|799388|829562|829563|892593|892594|892595|892596|892597|892598|892599|892600|892601|892602|892603|892604|892605|892606|892607|892608|892609|892610|892611|892612|892613|892614|892615|892616|892617|892618|892619|892620|892621|892622|892623|892624|892625|892626|892627|892628|892629|892630|896011|896012|896013|918913|923625|932485|944156", + "upstreamId": "16366|239515|239516|239517|294803|294805|294810|294811|294812|294813|294819|294820|294821|294828|294830|296437|296444|296446|296452|296462|296468|296469|296479|296482|296487|296492|296494|296495|296511|296522|296524|300192|300196|300209|300212|300216|300219|300228|300230|300231|300234|300236|300246|300249|300261|300281|300284|300286|394662|453628|453635|453898|453903|454432|454442|454448|454449|520165|520171|520173|520308|520546|520551|520594|538982|559841|559843|632536|632537|632538|685164|686567|799388|829562|829563|892593|892594|892595|892596|892597|892598|892599|892600|892601|892602|892603|892604|892605|892606|892607|892608|892609|892610|892611|892612|892613|892614|892615|892616|892617|892618|892619|892620|892621|892622|892623|892624|892625|892626|892627|892628|892629|892630|896011|896012|896013|918913|923625|932485|944156", "text": "Neuropathy, hereditary sensory, with spastic paraplegia, autosomal recessive" }, { - "baseId": "16367|16368|16370|16371|39774|39775|44415|44416|78954|177141|177273|177405|177505|186848|186849|186850|186851|186852|192540|213010|213011|213012|214075|214076|214077|226933|237357|254720|254721|254723|260913|268121|272492|318501|318502|318504|318505|318508|318509|318510|326670|326679|326684|326687|326688|326690|326693|326694|332885|332890|332893|332894|332898|332900|332909|332911|332912|332914|334567|334569|334570|334573|334581|334588|334589|334590|358107|358108|358109|358110|358111|358112|358113|358114|358115|358116|358117|358118|358119|358120|358121|358122|358123|358124|358125|358126|358127|399055|399208|404810|408745|426019|426020|429449|429451|481238|487588|491371|493542|512858|527371|546695|546697|546711|546712|546713|546715|546722|546724|546729|546735|546736|546855|546857|546858|546861|546865|546877|546879|546881|546882|547014|547027|547039|547044|547048|547205|547209|547210|547213|547221|547234|547238|547241|547244|547255|547260|547264|547266|552165|572037|572041|572062|587963|621383|621384|641389|672028|684346|684348|684349|684353|688047|688050|688052|688053|693286|753614|769310|791276|791277|870453|870454|870455|870456|870457|870458|870459|870460|870461|870462|870463|870464|870465|870466|870467|870468|870469|870470|870471|870472|963363|974496|979294|979295|979296|979297|979298|979299|979300|979301", + "upstreamId": "16367|16368|16370|16371|39774|39775|44415|44416|78954|177141|177273|177405|177505|186848|186849|186850|186851|186852|192540|213010|213011|213012|214075|214076|214077|226933|237357|254720|254721|254723|260913|268121|272492|318501|318502|318504|318505|318508|318509|318510|326670|326679|326684|326687|326688|326690|326693|326694|332885|332890|332893|332894|332898|332900|332909|332911|332912|332914|334567|334569|334570|334573|334581|334588|334589|334590|358107|358108|358109|358110|358111|358112|358113|358114|358115|358116|358117|358118|358119|358120|358121|358122|358123|358124|358125|358126|358127|399055|399208|404810|408745|426019|426020|429449|429451|481238|487588|491371|493542|512858|527371|546695|546697|546711|546712|546713|546715|546722|546724|546729|546735|546736|546855|546857|546858|546861|546865|546877|546879|546881|546882|547014|547027|547039|547044|547048|547205|547209|547210|547213|547221|547234|547238|547241|547244|547255|547260|547264|547266|552165|572037|572041|572062|587963|621383|621384|641389|672028|684346|684348|684349|684353|688047|688050|688052|688053|693286|753614|769310|791276|791277|870453|870454|870455|870456|870457|870458|870459|870460|870461|870462|870463|870464|870465|870466|870467|870468|870469|870470|870471|870472|963363|974496|979294|979295|979296|979297|979298|979299|979300|979301", "text": "Bardet-Biedl syndrome 10" }, { - "baseId": "16367", + "upstreamId": "16367", "text": "Bardet-biedl syndrome 6/10, digenic" }, { - "baseId": "16367|17701|27182|27183|27184|27185|27186|27187|27188|34559|34586|44416|44420|101641|102025|102026|102100|102398|102540|106441|106442|106468|106472|131912|131913|131914|176959|177222|177250|177505|177507|177508|177510|177512|177514|186836|186838|190621|191287|191594|191848|192577|193731|207477|212952|214073|214074|221320|227345|237357|237445|241206|251316|251317|251321|251325|251327|251330|252807|252809|252810|252814|252816|254256|254260|254262|255348|255822|255825|268120|269617|270214|272301|272771|273557|292180|314715|314716|314717|314721|314722|314726|314729|314731|314739|314744|321437|321440|321441|321442|321450|321451|321452|321454|321459|321461|327571|327576|327581|327599|328643|328647|328656|328657|358031|358032|358033|358034|358035|358036|358037|358038|358039|358040|358041|358042|358043|358044|358045|358046|358047|358048|358049|371619|372535|390016|398348|398446|428273|429277|429278|429279|437899|453263|461402|512811|512824|512858|513096|546141|546143|546144|546146|546149|546150|546154|546160|546453|546459|546467|546475|546478|546583|546585|546589|546591|546594|546595|546597|546600|546798|546802|546808|546810|546820|551566|566095|612094|640363|640364|684267|687817|687818|687821|690011|690012|693098|695539|752844|791156|791157|801718|838813|838814|838818|838820|838822|838824|852623|857426|868333|868334|868335|868336|868337|868338|868339|868340|868341|868342|868343|868344|868345|868346|868347|868348|868349|868350|868351|868352|868353|868354|906256|906287|906288|926358|961007|969325|972103|972104|972105|972106|972107|972108|972109|972110|979058|979059|979060|979061|979062|979063|979064|979065|979066|979067|979068|979069", + "upstreamId": "16367|17701|27182|27183|27184|27185|27186|27187|27188|34559|34586|44416|44420|101641|102025|102026|102100|102398|102540|106441|106442|106468|106472|131912|131913|131914|176959|177222|177250|177505|177507|177508|177510|177512|177514|186836|186838|190621|191287|191594|191848|192577|193731|207477|212952|214073|214074|221320|227345|237357|237445|241206|251316|251317|251321|251325|251327|251330|252807|252809|252810|252814|252816|254256|254260|254262|255348|255822|255825|268120|269617|270214|272301|272771|273557|292180|314715|314716|314717|314721|314722|314726|314729|314731|314739|314744|321437|321440|321441|321442|321450|321451|321452|321454|321459|321461|327571|327576|327581|327599|328643|328647|328656|328657|358031|358032|358033|358034|358035|358036|358037|358038|358039|358040|358041|358042|358043|358044|358045|358046|358047|358048|358049|371619|372535|390016|398348|398446|428273|429277|429278|429279|437899|453263|461402|512811|512824|512858|513096|546141|546143|546144|546146|546149|546150|546154|546160|546453|546459|546467|546475|546478|546583|546585|546589|546591|546594|546595|546597|546600|546798|546802|546808|546810|546820|551566|566095|612094|640363|640364|684267|687817|687818|687821|690011|690012|693098|695539|752844|791156|791157|801718|838813|838814|838818|838820|838822|838824|852623|857426|868333|868334|868335|868336|868337|868338|868339|868340|868341|868342|868343|868344|868345|868346|868347|868348|868349|868350|868351|868352|868353|868354|906256|906287|906288|926358|961007|969325|972103|972104|972105|972106|972107|972108|972109|972110|979058|979059|979060|979061|979062|979063|979064|979065|979066|979067|979068|979069", "text": "Bardet-Biedl syndrome 1" }, { - "baseId": "16369", + "upstreamId": "16369", "text": "Bardet-biedl syndrome 1/10, digenic" }, { - "baseId": "16372|16372|16372|16373|16374|16376|16376|16378|16378|16384|22927|71368|71372|71377|71378|102062|102066|105739|105741|106469|106470|106471|131783|131784|131789|131790|131794|131801|140430|140432|140433|152874|166166|177012|177012|177013|177143|177274|177571|177572|191726|193150|193874|193875|194245|194245|194246|195425|209353|214321|214322|214323|214324|214325|214325|214326|214327|214327|214328|214329|214330|214330|214331|214332|214333|214334|214335|214336|214337|214338|214339|214340|214341|215459|237416|241579|241580|241581|241582|254740|254742|254760|254761|254763|264538|265486|265486|265487|266616|268040|270185|271034|271034|274283|318575|318578|318583|318585|318587|318599|318602|318607|318610|326795|326802|326805|326809|326815|326818|326819|326830|326832|326833|326838|326844|326848|326850|326860|326862|326882|326888|332974|332976|332982|332983|332987|332988|332990|332993|332994|333001|333002|334647|334649|334653|334657|334658|334659|334671|334674|334680|334684|360055|360950|363660|364169|373481|375454|389204|408763|408772|408772|432311|433122|442556|462516|463244|488743|514649|527675|572093|576354|622900|622901|622902|641416|684357|688062|688063|688070|688072|760254|792790|840370|840371|840383|870494|870495|870496|870497|870498|870499|870500|870501|870502|870503|870504|870505|870506|870507|870508|870509|870510|870511|870512|870513|870514|870515|870516|870517|870518|870519|870520|872295|919469|919470|919471|919472|920320|962819|965740|970232|980946", + "upstreamId": "16372|16372|16372|16373|16374|16376|16376|16378|16378|16384|22927|71368|71372|71377|71378|102062|102066|105739|105741|106469|106470|106471|131783|131784|131789|131790|131794|131801|140430|140432|140433|152874|166166|177012|177012|177013|177143|177274|177571|177572|191726|193150|193874|193875|194245|194245|194246|195425|209353|214321|214322|214323|214324|214325|214325|214326|214327|214327|214328|214329|214330|214330|214331|214332|214333|214334|214335|214336|214337|214338|214339|214340|214341|215459|237416|241579|241580|241581|241582|254740|254742|254760|254761|254763|264538|265486|265486|265487|266616|268040|270185|271034|271034|274283|318575|318578|318583|318585|318587|318599|318602|318607|318610|326795|326802|326805|326809|326815|326818|326819|326830|326832|326833|326838|326844|326848|326850|326860|326862|326882|326888|332974|332976|332982|332983|332987|332988|332990|332993|332994|333001|333002|334647|334649|334653|334657|334658|334659|334671|334674|334680|334684|360055|360950|363660|364169|373481|375454|389204|408763|408772|408772|432311|433122|442556|462516|463244|488743|514649|527675|572093|576354|622900|622901|622902|641416|684357|688062|688063|688070|688072|760254|792790|840370|840371|840383|870494|870495|870496|870497|870498|870499|870500|870501|870502|870503|870504|870505|870506|870507|870508|870509|870510|870511|870512|870513|870514|870515|870516|870517|870518|870519|870520|872295|919469|919470|919471|919472|920320|962819|965740|970232|980946", "text": "Joubert syndrome 5" }, { - "baseId": "16372|16376|16378|16384|16422|102062|102066|106469|106470|106471|131783|131784|131789|131790|131794|131801|131836|140430|140432|140433|152874|177012|177012|177013|177143|177274|177572|191726|193150|193874|193875|194245|194245|194246|195425|214280|214282|214322|214325|214327|214330|215459|237416|241579|241580|241581|241582|254740|254742|254761|254763|265486|265486|265487|266616|268040|270185|271034|271034|318575|318578|318583|318585|318587|318599|318602|318607|318610|326795|326802|326805|326809|326815|326818|326819|326830|326832|326833|326838|326844|326848|326850|326860|326862|326882|326888|332974|332976|332982|332983|332987|332988|332990|332993|332994|333001|333002|334647|334649|334653|334657|334658|334659|334671|334674|334680|334684|360055|363660|364169|373481|375454|408763|408772|408772|433122|462516|463244|489341|513323|514649|527675|572093|684357|688062|688063|688070|688072|760254|792790|840370|840383|870494|870495|870496|870497|870498|870499|870500|870501|870502|870503|870504|870505|870506|870507|870508|870509|870510|870511|870512|870513|870514|870515|870516|870517|870518|870519|870520|872295", + "upstreamId": "16372|16376|16378|16384|16422|102062|102066|106469|106470|106471|131783|131784|131789|131790|131794|131801|131836|140430|140432|140433|152874|177012|177012|177013|177143|177274|177572|191726|193150|193874|193875|194245|194245|194246|195425|214280|214282|214322|214325|214327|214330|215459|237416|241579|241580|241581|241582|254740|254742|254761|254763|265486|265486|265487|266616|268040|270185|271034|271034|318575|318578|318583|318585|318587|318599|318602|318607|318610|326795|326802|326805|326809|326815|326818|326819|326830|326832|326833|326838|326844|326848|326850|326860|326862|326882|326888|332974|332976|332982|332983|332987|332988|332990|332993|332994|333001|333002|334647|334649|334653|334657|334658|334659|334671|334674|334680|334684|360055|363660|364169|373481|375454|408763|408772|408772|433122|462516|463244|489341|513323|514649|527675|572093|684357|688062|688063|688070|688072|760254|792790|840370|840383|870494|870495|870496|870497|870498|870499|870500|870501|870502|870503|870504|870505|870506|870507|870508|870509|870510|870511|870512|870513|870514|870515|870516|870517|870518|870519|870520|872295", "text": "Bardet-Biedl syndrome 14" }, { - "baseId": "16372|16372|16376|16378|16379|16380|16381|16383|71368|71369|71370|71371|71372|71373|71374|71375|71376|71377|71378|71379|102062|102066|106469|106470|106471|131783|131784|131789|131790|131794|131801|140430|140432|140433|152874|177012|177012|177013|177143|177274|177572|191726|193150|193874|193875|194245|194245|194246|195425|209353|214325|214327|214330|214330|214337|214339|215459|237416|241579|241580|241581|241582|254740|254742|254761|254763|260915|265486|265486|265487|266616|268040|270185|271034|271034|318575|318578|318583|318585|318587|318599|318602|318607|318610|326795|326802|326805|326809|326815|326818|326819|326830|326832|326833|326838|326844|326848|326850|326860|326862|326882|326888|332974|332976|332982|332983|332987|332988|332990|332993|332994|333001|333002|334647|334649|334653|334657|334658|334659|334671|334674|334680|334684|363660|364169|373481|375454|408763|408772|408772|433122|462516|463244|514649|527675|536196|572093|609863|672202|672203|684357|688062|688063|688070|688072|760254|792790|840370|840383|870494|870495|870496|870497|870498|870499|870500|870501|870502|870503|870504|870505|870506|870507|870508|870509|870510|870511|870512|870513|870514|870515|870516|870517|870518|870519|870520|872295|948198|971593|971594", + "upstreamId": "16372|16372|16376|16378|16379|16380|16381|16383|71368|71369|71370|71371|71372|71373|71374|71375|71376|71377|71378|71379|102062|102066|106469|106470|106471|131783|131784|131789|131790|131794|131801|140430|140432|140433|152874|177012|177012|177013|177143|177274|177572|191726|193150|193874|193875|194245|194245|194246|195425|209353|214325|214327|214330|214330|214337|214339|215459|237416|241579|241580|241581|241582|254740|254742|254761|254763|260915|265486|265486|265487|266616|268040|270185|271034|271034|318575|318578|318583|318585|318587|318599|318602|318607|318610|326795|326802|326805|326809|326815|326818|326819|326830|326832|326833|326838|326844|326848|326850|326860|326862|326882|326888|332974|332976|332982|332983|332987|332988|332990|332993|332994|333001|333002|334647|334649|334653|334657|334658|334659|334671|334674|334680|334684|363660|364169|373481|375454|408763|408772|408772|433122|462516|463244|514649|527675|536196|572093|609863|672202|672203|684357|688062|688063|688070|688072|760254|792790|840370|840383|870494|870495|870496|870497|870498|870499|870500|870501|870502|870503|870504|870505|870506|870507|870508|870509|870510|870511|870512|870513|870514|870515|870516|870517|870518|870519|870520|872295|948198|971593|971594", "text": "Meckel syndrome, type 4" }, { - "baseId": "16372|16372|16375|16376|16378|16378|102062|102066|106469|106470|106471|131783|131784|131789|131790|131794|131801|140430|140432|140433|152874|177012|177012|177013|177143|177274|177572|191726|193150|193874|193875|194245|194245|194246|195425|209353|214322|214325|214327|214330|215459|237416|241579|241580|241581|241582|254740|254742|254761|254763|265486|265486|265487|266616|268040|270185|271034|271034|318575|318578|318583|318585|318587|318599|318602|318607|318610|326795|326802|326805|326809|326815|326818|326819|326830|326832|326833|326838|326844|326848|326850|326860|326862|326882|326888|332974|332976|332982|332983|332987|332988|332990|332993|332994|333001|333002|334647|334649|334653|334657|334658|334659|334671|334674|334680|334684|363660|364169|373481|375454|408763|408772|408772|433122|462516|463244|514649|527675|572093|684357|688062|688063|688070|688072|760254|792790|840370|840383|870494|870495|870496|870497|870498|870499|870500|870501|870502|870503|870504|870505|870506|870507|870508|870509|870510|870511|870512|870513|870514|870515|870516|870517|870518|870519|870520|872295", + "upstreamId": "16372|16372|16375|16376|16378|16378|102062|102066|106469|106470|106471|131783|131784|131789|131790|131794|131801|140430|140432|140433|152874|177012|177012|177013|177143|177274|177572|191726|193150|193874|193875|194245|194245|194246|195425|209353|214322|214325|214327|214330|215459|237416|241579|241580|241581|241582|254740|254742|254761|254763|265486|265486|265487|266616|268040|270185|271034|271034|318575|318578|318583|318585|318587|318599|318602|318607|318610|326795|326802|326805|326809|326815|326818|326819|326830|326832|326833|326838|326844|326848|326850|326860|326862|326882|326888|332974|332976|332982|332983|332987|332988|332990|332993|332994|333001|333002|334647|334649|334653|334657|334658|334659|334671|334674|334680|334684|363660|364169|373481|375454|408763|408772|408772|433122|462516|463244|514649|527675|572093|684357|688062|688063|688070|688072|760254|792790|840370|840383|870494|870495|870496|870497|870498|870499|870500|870501|870502|870503|870504|870505|870506|870507|870508|870509|870510|870511|870512|870513|870514|870515|870516|870517|870518|870519|870520|872295", "text": "Senior-Loken syndrome 6" }, { - "baseId": "16372|16376|16376|16377|16378|16378|16379|16382|102062|102066|106469|106470|106471|131783|131784|131789|131790|131794|131801|140430|140432|140433|152874|166158|166159|166166|166167|177012|177012|177013|177143|177274|177572|191726|193150|193874|193875|194245|194245|194246|195425|209353|214325|214327|214330|215459|237416|241579|241580|241581|241582|254740|254742|254761|254763|265486|265486|265487|266616|268040|270185|271034|271034|318575|318578|318583|318585|318587|318599|318602|318607|318610|326795|326802|326805|326809|326815|326818|326819|326830|326832|326833|326838|326844|326848|326850|326860|326862|326882|326888|332974|332976|332982|332983|332987|332988|332990|332993|332994|333001|333002|334647|334649|334653|334657|334658|334659|334671|334674|334680|334684|363660|364169|373481|375454|408763|408772|408772|433122|445093|462516|463244|514649|527675|551568|572093|684357|688062|688063|688070|688072|760254|792790|802180|818301|840370|840383|870494|870495|870496|870497|870498|870499|870500|870501|870502|870503|870504|870505|870506|870507|870508|870509|870510|870511|870512|870513|870514|870515|870516|870517|870518|870519|870520|872295", + "upstreamId": "16372|16376|16376|16377|16378|16378|16379|16382|102062|102066|106469|106470|106471|131783|131784|131789|131790|131794|131801|140430|140432|140433|152874|166158|166159|166166|166167|177012|177012|177013|177143|177274|177572|191726|193150|193874|193875|194245|194245|194246|195425|209353|214325|214327|214330|215459|237416|241579|241580|241581|241582|254740|254742|254761|254763|265486|265486|265487|266616|268040|270185|271034|271034|318575|318578|318583|318585|318587|318599|318602|318607|318610|326795|326802|326805|326809|326815|326818|326819|326830|326832|326833|326838|326844|326848|326850|326860|326862|326882|326888|332974|332976|332982|332983|332987|332988|332990|332993|332994|333001|333002|334647|334649|334653|334657|334658|334659|334671|334674|334680|334684|363660|364169|373481|375454|408763|408772|408772|433122|445093|462516|463244|514649|527675|551568|572093|684357|688062|688063|688070|688072|760254|792790|802180|818301|840370|840383|870494|870495|870496|870497|870498|870499|870500|870501|870502|870503|870504|870505|870506|870507|870508|870509|870510|870511|870512|870513|870514|870515|870516|870517|870518|870519|870520|872295", "text": "Leber congenital amaurosis 10" }, { - "baseId": "16378|360950", + "upstreamId": "16378|360950", "text": "Molar tooth sign on MRI" }, { - "baseId": "16378|360941|360950", + "upstreamId": "16378|360941|360950", "text": "Central hypotonia" }, { - "baseId": "16378|16432|18513|18846|45840|105416|243993|260323|267852|360901|360950|361027|361067|361069|361097|361107|496932|513979|514086|514138|568036|624881|792733|800988|822308", + "upstreamId": "16378|16432|18513|18846|45840|105416|243993|260323|267852|360901|360950|361027|361067|361069|361097|361107|496932|513979|514086|514138|568036|624881|792733|800988|822308", "text": "Nystagmus" }, { - "baseId": "16378|17397|105349|181401|214327|263309|270311|360950|361108|513929", + "upstreamId": "16378|17397|105349|181401|214327|263309|270311|360950|361108|513929", "text": "Blindness" }, { - "baseId": "16381|25032|45818|683339|966695|966696|966699|966722|966733|966734|966735", + "upstreamId": "16381|25032|45818|683339|966695|966696|966699|966722|966733|966734|966735", "text": "Severe hydrocephalus" }, { - "baseId": "16381|17203|19147|19147|102335|186709|186713|186713|186718|221366|255586|360861|360862|360862|360863|360880|360881|360987|360990|360991|360992|360993|417656|427500|439930|513954|514054|514055|514056|514058|514059|514085|514102|551414|551415|611473|624327|683810|686889|816408|816410|861051|861509|861524|906257|965434|965435|965436|965437|966705|966706|966722|976700", + "upstreamId": "16381|17203|19147|19147|102335|186709|186713|186713|186718|221366|255586|360861|360862|360862|360863|360880|360881|360987|360990|360991|360992|360993|417656|427500|439930|513954|514054|514055|514056|514058|514059|514085|514102|551414|551415|611473|624327|683810|686889|816408|816410|861051|861509|861524|906257|965434|965435|965436|965437|966705|966706|966722|976700", "text": "Polycystic kidney disease" }, { - "baseId": "16381|683339|966699|966705|966706|966707|966708|966722", + "upstreamId": "16381|683339|966699|966705|966706|966707|966708|966722", "text": "Encephalocele" }, { - "baseId": "16385", + "upstreamId": "16385", "text": "Caudal regression syndrome" }, { - "baseId": "16386|16387|23220|24091|24092|40597|40598|40599|181532|181533|181536", + "upstreamId": "16386|16387|23220|24091|24092|40597|40598|40599|181532|181533|181536", "text": "Neural tube defects, susceptibility to" }, { - "baseId": "16388|48153|48154|48155|48156|48156|48157|249387|249388|249389|249390|249391|249392|276354|276355|276360|276362|276363|276366|276368|276369|276372|276375|276377|276387|276580|276583|276584|276586|276592|276592|276594|276595|276596|276611|276612|276615|277052|277063|277065|277066|277069|277072|277079|277083|277093|277096|277105|277110|277118|277124|277125|277126|277127|277153|277154|277155|277171|277172|277174|277175|277176|277181|277183|277184|277186|277197|277198|277199|277201|277203|277206|277207|277224|277227|277233|586023|614182|614183|614184|614185|614186|614186|619951|620705|622300|718192|731704|745669|816300|862206|862207|862208|862209|862210|862211|862212|862213|862214|862215|862216|862217|862218|862219|862220|862221|862222|862223|862224|862225|862226|862227|862228|862229|862230|862231|862232|862233|862234|862235|862236|862237|862238|862239|862240|862241|862242|862243|862244|862245|862246|862247|862248|862249|862250|862251|862252|864974|864975|864976|864977|980433", + "upstreamId": "16388|48153|48154|48155|48156|48156|48157|249387|249388|249389|249390|249391|249392|276354|276355|276360|276362|276363|276366|276368|276369|276372|276375|276377|276387|276580|276583|276584|276586|276592|276592|276594|276595|276596|276611|276612|276615|277052|277063|277065|277066|277069|277072|277079|277083|277093|277096|277105|277110|277118|277124|277125|277126|277127|277153|277154|277155|277171|277172|277174|277175|277176|277181|277183|277184|277186|277197|277198|277199|277201|277203|277206|277207|277224|277227|277233|586023|614182|614183|614184|614185|614186|614186|619951|620705|622300|718192|731704|745669|816300|862206|862207|862208|862209|862210|862211|862212|862213|862214|862215|862216|862217|862218|862219|862220|862221|862222|862223|862224|862225|862226|862227|862228|862229|862230|862231|862232|862233|862234|862235|862236|862237|862238|862239|862240|862241|862242|862243|862244|862245|862246|862247|862248|862249|862250|862251|862252|864974|864975|864976|864977|980433", "text": "Ectopia lentis 2, isolated, autosomal recessive" }, { - "baseId": "16389|16390|16391|16392", + "upstreamId": "16389|16390|16391|16392", "text": "Autoimmune disease 6" }, { - "baseId": "16393|134067|208545|208553|208555|208558|230984|580481|622451|816491|919832|919833|971119|972798", + "upstreamId": "16393|134067|208545|208553|208555|208558|230984|580481|622451|816491|919832|919833|971119|972798", "text": "Mental retardation, autosomal recessive 3" }, { - "baseId": "16394|16395|16396|16397|16398|16399|133792|133793|215335|227703|237193|237246|237311|268309|268444|268563|268564|268779|268833|268955|270020|270927|271115|271327|272063|272940|273656|299657|299661|299663|299665|299666|299668|299673|299675|299683|299684|299688|299690|299696|299698|299711|299712|299715|299716|299719|302257|302263|302268|302273|302277|302278|302282|302283|302291|302300|302302|302303|302311|306654|306656|306663|306666|306667|306674|306683|306687|306688|306692|306694|306695|306705|306706|306718|306719|306720|306721|306730|306732|306955|306957|306964|306965|306966|306968|306970|306971|306972|306974|306976|306977|306978|306980|306994|307008|363666|368543|368544|370313|415038|428605|443937|455467|455476|455478|455479|455482|455483|455561|455572|455574|455579|455580|456071|456087|456089|456092|456305|456311|456312|456314|456317|456322|490849|511649|521512|521514|521520|521522|521526|521530|521536|521537|521811|521817|521818|521820|521822|521888|521891|522189|522190|522196|522197|522200|522205|522210|522212|522218|560513|560670|560672|560674|560676|560751|560753|563491|563500|563504|565248|565538|565539|565542|578445|586561|634785|634786|634787|634788|634789|634790|634791|634792|634793|634794|634795|634796|634797|634798|634799|634800|634801|634802|699478|710357|710358|735555|735556|735557|735558|765603|765607|765608|782500|782501|782502|787377|790607|792759|831762|831763|831764|831765|831766|831767|831768|831769|831770|831771|831772|831773|831774|831775|831776|831777|831778|831779|831780|831781|831782|831783|831784|831785|831786|851068|895680|895681|895682|895683|895684|895685|895686|895687|895688|895689|895690|895691|895692|895693|895694|895695|895696|895697|895698|895699|895700|895701|895702|895703|895704|895705|895706|895707|895708|895709|895710|895711|895712|895713|895714|895715|895716|895717|895718|895719|895720|896215|924309|924310|924311|924312|924313|924314|933256|933257|933258|933259|933260|933261|933262|933263|933264|933265|944954|944955|944956|944957|944958|944959|944960|944961|954406|954407|959801|972789|980897", + "upstreamId": "16394|16395|16396|16397|16398|16399|133792|133793|215335|227703|237193|237246|237311|268309|268444|268563|268564|268779|268833|268955|270020|270927|271115|271327|272063|272940|273656|299657|299661|299663|299665|299666|299668|299673|299675|299683|299684|299688|299690|299696|299698|299711|299712|299715|299716|299719|302257|302263|302268|302273|302277|302278|302282|302283|302291|302300|302302|302303|302311|306654|306656|306663|306666|306667|306674|306683|306687|306688|306692|306694|306695|306705|306706|306718|306719|306720|306721|306730|306732|306955|306957|306964|306965|306966|306968|306970|306971|306972|306974|306976|306977|306978|306980|306994|307008|363666|368543|368544|370313|415038|428605|443937|455467|455476|455478|455479|455482|455483|455561|455572|455574|455579|455580|456071|456087|456089|456092|456305|456311|456312|456314|456317|456322|490849|511649|521512|521514|521520|521522|521526|521530|521536|521537|521811|521817|521818|521820|521822|521888|521891|522189|522190|522196|522197|522200|522205|522210|522212|522218|560513|560670|560672|560674|560676|560751|560753|563491|563500|563504|565248|565538|565539|565542|578445|586561|634785|634786|634787|634788|634789|634790|634791|634792|634793|634794|634795|634796|634797|634798|634799|634800|634801|634802|699478|710357|710358|735555|735556|735557|735558|765603|765607|765608|782500|782501|782502|787377|790607|792759|831762|831763|831764|831765|831766|831767|831768|831769|831770|831771|831772|831773|831774|831775|831776|831777|831778|831779|831780|831781|831782|831783|831784|831785|831786|851068|895680|895681|895682|895683|895684|895685|895686|895687|895688|895689|895690|895691|895692|895693|895694|895695|895696|895697|895698|895699|895700|895701|895702|895703|895704|895705|895706|895707|895708|895709|895710|895711|895712|895713|895714|895715|895716|895717|895718|895719|895720|896215|924309|924310|924311|924312|924313|924314|933256|933257|933258|933259|933260|933261|933262|933263|933264|933265|944954|944955|944956|944957|944958|944959|944960|944961|954406|954407|959801|972789|980897", "text": "Succinate-semialdehyde dehydrogenase deficiency" }, { - "baseId": "16400|16401|16402|280525|280526|280531|280532|280539|280540|280544|280545|280546|280962|280983|280987|281001|281005|281006|281010|281011|282281|282282|282283|282284|282288|282307|282498|282499|282515|282526|282535|282537|282543|282544|282550|539120|539121|551674|823965|864383|864384|864385|864386|864387|864388|864389|864390|864391|864392|864393|864394|864395|864396|864397|864398|864399|864400|864401|864402|864403|864404|864405|864406|864407|864408|864409|864410|864411|864412|864413|918532|962667", + "upstreamId": "16400|16401|16402|280525|280526|280531|280532|280539|280540|280544|280545|280546|280962|280983|280987|281001|281005|281006|281010|281011|282281|282282|282283|282284|282288|282307|282498|282499|282515|282526|282535|282537|282543|282544|282550|539120|539121|551674|823965|864383|864384|864385|864386|864387|864388|864389|864390|864391|864392|864393|864394|864395|864396|864397|864398|864399|864400|864401|864402|864403|864404|864405|864406|864407|864408|864409|864410|864411|864412|864413|918532|962667", "text": "Hypomagnesemia 5, renal, with ocular involvement" }, { - "baseId": "16403", + "upstreamId": "16403", "text": "Prostate cancer, hereditary, 12" }, { - "baseId": "16404|16405|16406|16408|16409|16412|16415|16416|16417|16422|70570|71401|71402|71403|71404|71405|71406|71407|71408|71409|71410|71411|71412|71413|71414|71415|71416|71417|71418|71419|71421|71422|71423|71426|71427|71428|102422|102423|131831|131833|131834|131836|131839|212651|214280|214282|214287|243906|253194|253195|253203|253209|253212|253213|270862|306007|306009|306010|306015|306017|306035|310036|310037|310038|310039|315373|315374|315375|315376|315377|315516|315517|315527|315531|315532|315535|315541|444309|489341|552127|637489|672205|900150|900151|900152|900153|900154|900155|900156|900157|900518|900519|900541|900542|900543|900544|900545|900546|900547|900548|900549|903276|903277|961004|970888", + "upstreamId": "16404|16405|16406|16408|16409|16412|16415|16416|16417|16422|70570|71401|71402|71403|71404|71405|71406|71407|71408|71409|71410|71411|71412|71413|71414|71415|71416|71417|71418|71419|71421|71422|71423|71426|71427|71428|102422|102423|131831|131833|131834|131836|131839|212651|214280|214282|214287|243906|253194|253195|253203|253209|253212|253213|270862|306007|306009|306010|306015|306017|306035|310036|310037|310038|310039|315373|315374|315375|315376|315377|315516|315517|315527|315531|315532|315535|315541|444309|489341|552127|637489|672205|900150|900151|900152|900153|900154|900155|900156|900157|900518|900519|900541|900542|900543|900544|900545|900546|900547|900548|900549|903276|903277|961004|970888", "text": "Meckel syndrome, type 3" }, { - "baseId": "16407|16410|16411|16412|16413|16414|16415|16416|16417|16418|16420|16421|16422|16422|16424|16425|16426|39765|71401|71412|71422|71426|102422|102423|131833|131834|131836|207574|212651|212652|214270|214271|214272|214273|214274|214275|214276|214277|214278|214279|214280|214280|214281|214282|214282|214283|214284|214285|214286|214287|214288|214289|214290|214291|214292|214293|214294|227327|243906|253194|253195|253203|253209|253212|253213|270862|306007|306009|306010|306015|306017|306035|310036|310037|310038|310039|315373|315374|315375|315376|315377|315516|315517|315527|315531|315532|315535|315541|370404|444309|486823|486834|486835|489341|511772|623148|637489|680065|802166|900150|900151|900152|900153|900154|900155|900156|900157|900518|900519|900541|900542|900543|900544|900545|900546|900547|900548|900549|903276|903277|906253", + "upstreamId": "16407|16410|16411|16412|16413|16414|16415|16416|16417|16418|16420|16421|16422|16422|16424|16425|16426|39765|71401|71412|71422|71426|102422|102423|131833|131834|131836|207574|212651|212652|214270|214271|214272|214273|214274|214275|214276|214277|214278|214279|214280|214280|214281|214282|214282|214283|214284|214285|214286|214287|214288|214289|214290|214291|214292|214293|214294|227327|243906|253194|253195|253203|253209|253212|253213|270862|306007|306009|306010|306015|306017|306035|310036|310037|310038|310039|315373|315374|315375|315376|315377|315516|315517|315527|315531|315532|315535|315541|370404|444309|486823|486834|486835|489341|511772|623148|637489|680065|802166|900150|900151|900152|900153|900154|900155|900156|900157|900518|900519|900541|900542|900543|900544|900545|900546|900547|900548|900549|903276|903277|906253", "text": "Joubert syndrome 6" }, { - "baseId": "16415|16422|71401|71422|620309", + "upstreamId": "16415|16422|71401|71422|620309", "text": "TMEM67-Related Disorders" }, { - "baseId": "16415|16416|16422|444309|583167|919176|919177|920257", + "upstreamId": "16415|16416|16422|444309|583167|919176|919177|920257", "text": "RHYNS syndrome" }, { - "baseId": "16416", + "upstreamId": "16416", "text": "Bardet-Biedl syndrome 14, modifier of" }, { - "baseId": "16416|16421|16422|16422|16423|16424|102422|102423|131833|131834|131836|212651|214280|214282|214287|221800|243906|253194|253195|253203|253209|253212|253213|270862|306007|306009|306010|306015|306017|306035|310036|310037|310038|310039|315373|315374|315375|315376|315377|315516|315517|315527|315531|315532|315535|315541|444309|489341|637489|900150|900151|900152|900153|900154|900155|900156|900157|900518|900519|900541|900542|900543|900544|900545|900546|900547|900548|900549|903276|903277|962718|962719", + "upstreamId": "16416|16421|16422|16422|16423|16424|102422|102423|131833|131834|131836|212651|214280|214282|214287|221800|243906|253194|253195|253203|253209|253212|253213|270862|306007|306009|306010|306015|306017|306035|310036|310037|310038|310039|315373|315374|315375|315376|315377|315516|315517|315527|315531|315532|315535|315541|444309|489341|637489|900150|900151|900152|900153|900154|900155|900156|900157|900518|900519|900541|900542|900543|900544|900545|900546|900547|900548|900549|903276|903277|962718|962719", "text": "Nephronophthisis 11" }, { - "baseId": "16422|186713|214282|360844|360880|360915|360988|360994|971020", + "upstreamId": "16422|186713|214282|360844|360880|360915|360988|360994|971020", "text": "Renal cyst" }, { - "baseId": "16422|19147|214282|360881", + "upstreamId": "16422|19147|214282|360881", "text": "Oligohydramnios" }, { - "baseId": "16422|17315|31366|31371|31377|31378|31379|32405|32434|32501|32502|53428|76763|192309|214282|215768|226497|263204|263208|263226|263258|263278|263301|263313|263402|263406|325021|361089|407722|453069|511532|514190|536665|590060|590063|590095|679598|679599", + "upstreamId": "16422|17315|31366|31371|31377|31378|31379|32405|32434|32501|32502|53428|76763|192309|214282|215768|226497|263204|263208|263226|263258|263278|263301|263313|263402|263406|325021|361089|407722|453069|511532|514190|536665|590060|590063|590095|679598|679599", "text": "14 conditions" }, { - "baseId": "16428|16429|16429|16430|16430|16431|16431|16432|71252|71253|71254|71256|71257|71258|71258|71259|71261|71262|71263|71263|71264|71264|71266|71266|131803|131804|131806|181163|181164|186262|186263|191265|191933|192033|193638|196045|208403|208405|208405|214363|214364|214364|214367|214367|222686|222686|222687|237090|237473|237473|242824|242825|242825|256280|256281|256283|256284|256285|256287|256288|256290|256292|260473|265360|265781|265781|265876|271121|271440|271734|272946|275520|329155|329156|329157|329161|339301|339303|339303|345175|345176|345181|345182|346571|346573|346576|346576|346578|346579|346580|346583|346584|346586|358457|358458|429991|429994|438996|438996|445833|468480|493136|536949|536950|548215|548216|548218|548253|548261|548273|548279|548558|548563|548566|548568|548571|548577|548579|548579|548992|548999|549000|549001|549004|549005|585568|588985|646234|688796|688799|688802|690181|845657|845660|852892|877946|877947|877948|877949|877950|877951|877952|877953|877954|877955|877956|877957|877958|880551|880552|880553|880554|906269|938039|979913", + "upstreamId": "16428|16429|16429|16430|16430|16431|16431|16432|71252|71253|71254|71256|71257|71258|71258|71259|71261|71262|71263|71263|71264|71264|71266|71266|131803|131804|131806|181163|181164|186262|186263|191265|191933|192033|193638|196045|208403|208405|208405|214363|214364|214364|214367|214367|222686|222686|222687|237090|237473|237473|242824|242825|242825|256280|256281|256283|256284|256285|256287|256288|256290|256292|260473|265360|265781|265781|265876|271121|271440|271734|272946|275520|329155|329156|329157|329161|339301|339303|339303|345175|345176|345181|345182|346571|346573|346576|346576|346578|346579|346580|346583|346584|346586|358457|358458|429991|429994|438996|438996|445833|468480|493136|536949|536950|548215|548216|548218|548253|548261|548273|548279|548558|548563|548566|548568|548571|548577|548579|548579|548992|548999|549000|549001|549004|549005|585568|588985|646234|688796|688799|688802|690181|845657|845660|852892|877946|877947|877948|877949|877950|877951|877952|877953|877954|877955|877956|877957|877958|880551|880552|880553|880554|906269|938039|979913", "text": "Meckel syndrome type 1" }, { - "baseId": "16429|16430|16431|16431|16432|16432|16433|71256|71258|71263|71264|131803|131804|131806|181163|181163|181164|186263|191265|191933|192033|193638|208403|208405|214363|214364|214364|214367|214367|222686|222687|237090|237473|237473|242824|242825|242825|256280|256281|256283|256284|256285|256288|256290|256292|265360|265781|271121|329155|329156|329157|329161|339301|339303|339303|345175|345176|345181|345182|346571|346573|346576|346576|346578|346579|346580|346583|346584|346586|358457|358458|429994|438996|438996|490946|548215|548216|548218|548253|548261|548273|548279|548558|548563|548566|548568|548571|548577|548579|548992|548999|549000|549001|549004|549005|588985|688796|688799|877946|877947|877948|877949|877950|877951|877952|877953|877954|877955|877956|877957|877958|880551|880552|880553|880554", + "upstreamId": "16429|16430|16431|16431|16432|16432|16433|71256|71258|71263|71264|131803|131804|131806|181163|181163|181164|186263|191265|191933|192033|193638|208403|208405|214363|214364|214364|214367|214367|222686|222687|237090|237473|237473|242824|242825|242825|256280|256281|256283|256284|256285|256288|256290|256292|265360|265781|271121|329155|329156|329157|329161|339301|339303|339303|345175|345176|345181|345182|346571|346573|346576|346576|346578|346579|346580|346583|346584|346586|358457|358458|429994|438996|438996|490946|548215|548216|548218|548253|548261|548273|548279|548558|548563|548566|548568|548571|548577|548579|548992|548999|549000|549001|549004|549005|588985|688796|688799|877946|877947|877948|877949|877950|877951|877952|877953|877954|877955|877956|877957|877958|880551|880552|880553|880554", "text": "Bardet-Biedl syndrome 13" }, { - "baseId": "16429|16430|16431|16432|71256|71258|71263|71264|131803|181163|186262|186263|191265|208405|214363|214364|214364|214367|222686|222687|237090|237473|242825|249226|249228|256280|256281|256284|256288|265781|339303|346576|346583|358457|358458|438996|548215|548216|548218|548253|548261|548273|548279|548558|548563|548566|548568|548571|548577|548579|548992|548999|549000|549001|549004|549005", + "upstreamId": "16429|16430|16431|16432|71256|71258|71263|71264|131803|181163|186262|186263|191265|208405|214363|214364|214364|214367|222686|222687|237090|237473|242825|249226|249228|256280|256281|256284|256288|265781|339303|346576|346583|358457|358458|438996|548215|548216|548218|548253|548261|548273|548279|548558|548563|548566|548568|548571|548577|548579|548992|548999|549000|549001|549004|549005", "text": "Joubert syndrome 28" }, { - "baseId": "16432|40348|137063|137064|137065|178412|178416|181434|181447|209338|226495|226500|226502|243981|243988|263200|263231|263248|263249|263252|263254|263255|263262|263323|263332|263335|263388|263782|263783|264319|360955|361130|406053|408757|415099|417657|514041|514086|514182|514185|514194|514210|551445|581716|583203|583204|677223|682488|961915|961916|961917|969264|969266", + "upstreamId": "16432|40348|137063|137064|137065|178412|178416|181434|181447|209338|226495|226500|226502|243981|243988|263200|263231|263248|263249|263252|263254|263255|263262|263323|263332|263335|263388|263782|263783|264319|360955|361130|406053|408757|415099|417657|514041|514086|514182|514185|514194|514210|551445|581716|583203|583204|677223|682488|961915|961916|961917|969264|969266", "text": "Muscular hypotonia" }, { - "baseId": "16432|28860|46777|70943|141188|141189|191624|191625|191626|207480|214364|236899|252842|252844|252845|252846|252847|252848|252849|252850|252854|252855|252856|252860|252864|252866|252868|252873|252874|252875|252876|252880|252881|259861|259864|263337|267367|268321|268762|269149|272221|273308|302938|302939|302940|302941|302943|302944|302947|302952|302961|302966|302968|302970|302973|302977|302978|302982|302983|302990|302992|302994|303006|303007|303011|303020|303022|303024|303026|303029|303033|303034|303040|303041|303046|303047|303048|303049|303053|306259|306260|306264|306265|306266|306267|306268|306269|306271|306272|306273|306274|306275|306276|306287|306290|306294|310985|310988|310989|311012|311032|311033|311042|311058|311061|311068|311070|311071|311099|311107|311108|311109|311112|311114|311133|311135|311142|311143|311146|311148|311149|311156|311157|311164|311245|311246|311248|311252|311257|311259|311260|311261|311262|311264|311265|311266|311267|311268|311269|311272|311274|311277|311278|311279|311280|311282|311283|311284|311285|311286|311287|311288|311289|311290|311295|353817|353818|502039|514086|540582|692239|700067|700070|898063|898064|898065|898066|898067|898068|898069|898070|898071|898072|898073|898074|898075|898076|898077|898078|898079|898080|898081|898082|898083|898084|898085|898086|898087|898088|898089|898090|898091|898092|898093|898094|898095|898096|898097|898098|898099|898100|898101|898102|898103|898104|898105|898106|898107|900361|900362|900363|900364|966707|966708", + "upstreamId": "16432|28860|46777|70943|141188|141189|191624|191625|191626|207480|214364|236899|252842|252844|252845|252846|252847|252848|252849|252850|252854|252855|252856|252860|252864|252866|252868|252873|252874|252875|252876|252880|252881|259861|259864|263337|267367|268321|268762|269149|272221|273308|302938|302939|302940|302941|302943|302944|302947|302952|302961|302966|302968|302970|302973|302977|302978|302982|302983|302990|302992|302994|303006|303007|303011|303020|303022|303024|303026|303029|303033|303034|303040|303041|303046|303047|303048|303049|303053|306259|306260|306264|306265|306266|306267|306268|306269|306271|306272|306273|306274|306275|306276|306287|306290|306294|310985|310988|310989|311012|311032|311033|311042|311058|311061|311068|311070|311071|311099|311107|311108|311109|311112|311114|311133|311135|311142|311143|311146|311148|311149|311156|311157|311164|311245|311246|311248|311252|311257|311259|311260|311261|311262|311264|311265|311266|311267|311268|311269|311272|311274|311277|311278|311279|311280|311282|311283|311284|311285|311286|311287|311288|311289|311290|311295|353817|353818|502039|514086|540582|692239|700067|700070|898063|898064|898065|898066|898067|898068|898069|898070|898071|898072|898073|898074|898075|898076|898077|898078|898079|898080|898081|898082|898083|898084|898085|898086|898087|898088|898089|898090|898091|898092|898093|898094|898095|898096|898097|898098|898099|898100|898101|898102|898103|898104|898105|898106|898107|900361|900362|900363|900364|966707|966708", "text": "Polydactyly" }, { - "baseId": "16434|16435|16436|16437|39761|39762|39763|101803|101804|177411|187123|191269|194996|194997|195392|270912|271103|273548|321680|321683|321684|321685|321689|321692|330943|330945|330948|337642|337643|337647|337650|337655|337659|337663|337680|337685|339718|339720|339721|339725|339729|339734|409162|409163|482057|489407|528852|551577|703007|714258|725846|778113|820659|841879|841880|841881|841882|841883|841884|841885|841886|841887|841888|841889|841890|841891|841892|841893|872852|872853|872854|872855|872856|872857|872858|872859|872860|872861|872862|872863|872864|872865|876462|920338|927192|936759|936760|940317|948713|948714|948715|948716|948717|957330|957331|957332|966101|966102|966103|966106|966107|966108|966145", + "upstreamId": "16434|16435|16436|16437|39761|39762|39763|101803|101804|177411|187123|191269|194996|194997|195392|270912|271103|273548|321680|321683|321684|321685|321689|321692|330943|330945|330948|337642|337643|337647|337650|337655|337659|337663|337680|337685|339718|339720|339721|339725|339729|339734|409162|409163|482057|489407|528852|551577|703007|714258|725846|778113|820659|841879|841880|841881|841882|841883|841884|841885|841886|841887|841888|841889|841890|841891|841892|841893|872852|872853|872854|872855|872856|872857|872858|872859|872860|872861|872862|872863|872864|872865|876462|920338|927192|936759|936760|940317|948713|948714|948715|948716|948717|957330|957331|957332|966101|966102|966103|966106|966107|966108|966145", "text": "Leber congenital amaurosis 3" }, { - "baseId": "16434|39763|620496", + "upstreamId": "16434|39763|620496", "text": "SPATA7-Related Disorders" }, { - "baseId": "16438|16439|16440|16441|16442|16443|16444|16445|16446|16447|16448|16449|39759|237221|257668|257669|257670|257671|257672|257673|257674|257675|257676|257677|257678|338084|338088|338089|338093|338098|338099|338101|338109|347720|347723|347724|347726|347735|347736|351565|351568|351569|351572|351573|351576|351577|351581|351582|351584|352528|352529|352530|352531|352532|352533|352534|352535|352536|352537|352538|352539|352540|352541|352542|353608|514211|608921|615947|620689|620690|717433|778648|891241|891242|891243|891244|891245|891246|891247|891248|891249|891250|891251|891252|891253|891254|891255|891256|891257|891258|891259|891260|891261|891262|891263|891264|891265|891266|891267|891268|891269|891270|891271|891272|891273|891274|891275|891276|891277|891278|891279|891280|891281|891831|891832|905733|905735", + "upstreamId": "16438|16439|16440|16441|16442|16443|16444|16445|16446|16447|16448|16449|39759|237221|257668|257669|257670|257671|257672|257673|257674|257675|257676|257677|257678|338084|338088|338089|338093|338098|338099|338101|338109|347720|347723|347724|347726|347735|347736|351565|351568|351569|351572|351573|351576|351577|351581|351582|351584|352528|352529|352530|352531|352532|352533|352534|352535|352536|352537|352538|352539|352540|352541|352542|353608|514211|608921|615947|620689|620690|717433|778648|891241|891242|891243|891244|891245|891246|891247|891248|891249|891250|891251|891252|891253|891254|891255|891256|891257|891258|891259|891260|891261|891262|891263|891264|891265|891266|891267|891268|891269|891270|891271|891272|891273|891274|891275|891276|891277|891278|891279|891280|891281|891831|891832|905733|905735", "text": "Microcytic anemia" }, { - "baseId": "16450|289538|289543|289546|289548|289553|289560|290312|290314|290316|290318|290319|290323|290325|290326|290327|293394|293395|293397|293398|293400|293409|293410|293860|293861|293862|293864|293866|620761|697935|708688|888416|888417|888418|888419|888420|888421|888422|888423|888424|888425|888426|888427|888428|888429|888430|888431|891620|891621", + "upstreamId": "16450|289538|289543|289546|289548|289553|289560|290312|290314|290316|290318|290319|290323|290325|290326|290327|293394|293395|293397|293398|293400|293409|293410|293860|293861|293862|293864|293866|620761|697935|708688|888416|888417|888418|888419|888420|888421|888422|888423|888424|888425|888426|888427|888428|888429|888430|888431|891620|891621", "text": "Globozoospermia" }, { - "baseId": "16451|16452|16453|16454|16455|16456|16457|16458|259752|289305|289313|289316|289317|289325|289326|289334|289336|289341|289348|289355|289359|289363|289367|289368|289369|289374|289381|289383|289384|289396|289399|289400|289410|289413|289414|289416|290096|290105|290113|290117|290125|290130|290131|290144|290152|290154|290158|290167|290169|290170|290171|290172|290175|290181|290195|293187|293188|293189|293196|293209|293210|293228|293241|293245|293246|293248|293249|293250|293251|293260|293264|293267|293278|293656|293657|293659|293662|293663|293664|293668|293669|293670|293672|293673|293681|293682|293683|293693|293695|293696|293699|293706|293709|363835|406140|439201|496339|620116|620117|720286|790356|888294|888295|888296|888297|888298|888299|888300|888301|888302|888303|888304|888305|888306|888307|888308|888309|888310|888311|888312|888313|888314|888315|888316|888317|888318|888319|888320|888321|888322|888323|888324|888325|888326|888327|888328|888329|888330|888331|888332|888333|888334|888335|888336|888337|888338|888339|891602|891603|891604|891605|891606|891607|891608|891609|891610|891611|891612|891613|891614|973018", + "upstreamId": "16451|16452|16453|16454|16455|16456|16457|16458|259752|289305|289313|289316|289317|289325|289326|289334|289336|289341|289348|289355|289359|289363|289367|289368|289369|289374|289381|289383|289384|289396|289399|289400|289410|289413|289414|289416|290096|290105|290113|290117|290125|290130|290131|290144|290152|290154|290158|290167|290169|290170|290171|290172|290175|290181|290195|293187|293188|293189|293196|293209|293210|293228|293241|293245|293246|293248|293249|293250|293251|293260|293264|293267|293278|293656|293657|293659|293662|293663|293664|293668|293669|293670|293672|293673|293681|293682|293683|293693|293695|293696|293699|293706|293709|363835|406140|439201|496339|620116|620117|720286|790356|888294|888295|888296|888297|888298|888299|888300|888301|888302|888303|888304|888305|888306|888307|888308|888309|888310|888311|888312|888313|888314|888315|888316|888317|888318|888319|888320|888321|888322|888323|888324|888325|888326|888327|888328|888329|888330|888331|888332|888333|888334|888335|888336|888337|888338|888339|891602|891603|891604|891605|891606|891607|891608|891609|891610|891611|891612|891613|891614|973018", "text": "Sucrase-isomaltase deficiency" }, { - "baseId": "16459", + "upstreamId": "16459", "text": "Skin/hair/eye pigmentation, variation in, 6" }, { - "baseId": "16460|16461|16462|16463|16464|39757|77870|101600|101601|101602|101603|101604|141941|141942|170961|170962|170963|194467|199944|199945|199946|199947|199948|199949|199950|199951|199952|199953|199954|199956|204443|265244|272481|280700|280701|281166|282449|282450|282737|282747|282748|282752|365277|365337|365372|404748|404749|432280|433696|433698|448353|448355|481595|486859|486903|492708|498713|515996|516019|541098|541100|541102|541103|541114|541116|541119|541122|541132|541135|541138|541141|541146|541161|541167|541169|541170|541172|541175|541176|541185|541206|541208|541212|541216|541219|541222|541225|541228|541232|541234|541236|541237|541240|541241|541242|541244|541245|541246|541247|541252|541253|541256|541259|541261|541263|541265|541267|541269|541276|541278|541281|557089|557314|557316|557367|622036|628114|690627|690628|690629|690630|696774|696775|696776|746529|746530|761986|761989|761990|780716|780717|780720|801593|801594|801595|801596|801597|801598|801599|805136|818977|818978|818979|824199|824200|824201|824202|850777|851313|905868|922107|922108|922109|930582|942016|942017|952456|961750|964801|966757|980905", + "upstreamId": "16460|16461|16462|16463|16464|39757|77870|101600|101601|101602|101603|101604|141941|141942|170961|170962|170963|194467|199944|199945|199946|199947|199948|199949|199950|199951|199952|199953|199954|199956|204443|265244|272481|280700|280701|281166|282449|282450|282737|282747|282748|282752|365277|365337|365372|404748|404749|432280|433696|433698|448353|448355|481595|486859|486903|492708|498713|515996|516019|541098|541100|541102|541103|541114|541116|541119|541122|541132|541135|541138|541141|541146|541161|541167|541169|541170|541172|541175|541176|541185|541206|541208|541212|541216|541219|541222|541225|541228|541232|541234|541236|541237|541240|541241|541242|541244|541245|541246|541247|541252|541253|541256|541259|541261|541263|541265|541267|541269|541276|541278|541281|557089|557314|557316|557367|622036|628114|690627|690628|690629|690630|696774|696775|696776|746529|746530|761986|761989|761990|780716|780717|780720|801593|801594|801595|801596|801597|801598|801599|805136|818977|818978|818979|824199|824200|824201|824202|850777|851313|905868|922107|922108|922109|930582|942016|942017|952456|961750|964801|966757|980905", "text": "Cobalamin C disease" }, { - "baseId": "16460|22068|29317|101599|141941|141942|141985|141986|141987|141988|141989|141990|141991|141992|141993|141994|141995|141996|141997|141999|142000|142002|142003|142004|142005|142006|142007|142008|142009|196160|199943|199945|199947|199952|199954|199983|199984|199985|200103|200104|200105|204443|215216|227302|249967|270084|279775|279781|279782|279783|279787|279799|279800|279801|279804|279805|279806|279810|279813|279817|279818|279822|279824|279826|279833|279835|279844|279845|279848|279852|279853|279859|279864|279866|279875|279877|279881|279883|279887|279889|279894|279899|279901|279902|279903|279907|279914|279917|279920|279921|279922|279930|279931|279936|280095|280096|280110|280113|280114|280115|280118|280120|280121|280122|280124|280127|280140|280142|280148|280150|280151|280152|280154|280162|280180|280184|280190|280196|280197|280202|280205|280206|280208|280210|280230|280233|280235|280240|280241|280245|280256|280259|280260|280695|280700|280701|280707|280713|280714|280720|280721|280728|280729|280734|280736|280740|280742|280743|281165|281166|281167|281172|281179|281180|281183|281184|281185|281199|281200|281202|281204|281386|281387|281403|281405|281406|281407|281419|281420|281424|281427|281428|281437|281438|281439|281443|281445|281447|281458|281459|281463|281465|281467|281468|281469|281472|281479|281480|281481|281483|281484|281487|281489|281490|281500|281501|281512|281517|281528|281530|281541|281542|281563|281566|281567|281568|281576|281579|281581|281582|281585|281587|281635|281636|281637|281639|281642|281644|281652|281653|281657|281659|281662|281671|281673|281674|281675|281683|281701|281703|281705|281706|281707|281709|281714|281716|281719|281728|281729|282028|282035|282037|282047|282049|282051|282052|282448|282449|282450|282452|282455|282456|282457|282475|282476|282478|282481|282487|282488|282489|282710|282712|282718|282719|282720|282722|282730|282731|282732|282733|282737|282747|282748|282752|282754|282755|282756|282767|282771|282786|282787|284333|284334|284337|284556|284557|284564|284565|284566|298104|298105|298108|298109|298114|298161|298186|298199|298203|298206|298207|298209|300395|300403|300406|300452|300462|300466|300502|300511|300515|300516|300517|300519|300925|300934|300939|303874|303892|304678|304679|304681|304721|304722|304723|304727|304780|304782|304976|304981|304982|304985|304986|305029|305039|305041|305043|305045|308536|363942|364968|365003|365008|365441|368255|368260|368547|368554|368719|369947|425347|433709|455965|486859|498247|498255|498448|498494|498713|515703|541281|558389|560494|619993|620032|620200|620716|620717|620784|627537|690627|690749|691880|707239|765216|864013|864014|864015|864016|864017|864018|864019|864020|864021|864022|864023|864024|864025|864026|864027|864028|864029|864030|864031|864032|864033|864034|864035|864036|864037|864038|864039|864040|864041|864042|864043|864044|864045|864046|864047|864048|864049|864050|864051|864052|864053|864054|864055|864056|864057|864058|864059|864060|864061|864062|864063|864064|864065|864066|864067|864068|864069|864070|864071|864072|864073|864074|864075|864076|864077|864078|864079|864080|864081|864082|864083|864084|864508|864509|864510|864511|864512|864513|864514|864515|864516|864517|864518|864519|864520|864521|864522|864523|864524|864525|864526|864527|864528|864529|864530|864531|865150|865151|865152|881123|881124|881125|881126|882805|882806|894702|894703|894704|894705|894706|894707|894708|894743|894747|894748|894749|894750|894751|894752|894753|894754|894757|894758|894759|894760|894761|894762|894763|894764|894765|894766|894767|894768|894769|894770|894771|894772|894773|896138", + "upstreamId": "16460|22068|29317|101599|141941|141942|141985|141986|141987|141988|141989|141990|141991|141992|141993|141994|141995|141996|141997|141999|142000|142002|142003|142004|142005|142006|142007|142008|142009|196160|199943|199945|199947|199952|199954|199983|199984|199985|200103|200104|200105|204443|215216|227302|249967|270084|279775|279781|279782|279783|279787|279799|279800|279801|279804|279805|279806|279810|279813|279817|279818|279822|279824|279826|279833|279835|279844|279845|279848|279852|279853|279859|279864|279866|279875|279877|279881|279883|279887|279889|279894|279899|279901|279902|279903|279907|279914|279917|279920|279921|279922|279930|279931|279936|280095|280096|280110|280113|280114|280115|280118|280120|280121|280122|280124|280127|280140|280142|280148|280150|280151|280152|280154|280162|280180|280184|280190|280196|280197|280202|280205|280206|280208|280210|280230|280233|280235|280240|280241|280245|280256|280259|280260|280695|280700|280701|280707|280713|280714|280720|280721|280728|280729|280734|280736|280740|280742|280743|281165|281166|281167|281172|281179|281180|281183|281184|281185|281199|281200|281202|281204|281386|281387|281403|281405|281406|281407|281419|281420|281424|281427|281428|281437|281438|281439|281443|281445|281447|281458|281459|281463|281465|281467|281468|281469|281472|281479|281480|281481|281483|281484|281487|281489|281490|281500|281501|281512|281517|281528|281530|281541|281542|281563|281566|281567|281568|281576|281579|281581|281582|281585|281587|281635|281636|281637|281639|281642|281644|281652|281653|281657|281659|281662|281671|281673|281674|281675|281683|281701|281703|281705|281706|281707|281709|281714|281716|281719|281728|281729|282028|282035|282037|282047|282049|282051|282052|282448|282449|282450|282452|282455|282456|282457|282475|282476|282478|282481|282487|282488|282489|282710|282712|282718|282719|282720|282722|282730|282731|282732|282733|282737|282747|282748|282752|282754|282755|282756|282767|282771|282786|282787|284333|284334|284337|284556|284557|284564|284565|284566|298104|298105|298108|298109|298114|298161|298186|298199|298203|298206|298207|298209|300395|300403|300406|300452|300462|300466|300502|300511|300515|300516|300517|300519|300925|300934|300939|303874|303892|304678|304679|304681|304721|304722|304723|304727|304780|304782|304976|304981|304982|304985|304986|305029|305039|305041|305043|305045|308536|363942|364968|365003|365008|365441|368255|368260|368547|368554|368719|369947|425347|433709|455965|486859|498247|498255|498448|498494|498713|515703|541281|558389|560494|619993|620032|620200|620716|620717|620784|627537|690627|690749|691880|707239|765216|864013|864014|864015|864016|864017|864018|864019|864020|864021|864022|864023|864024|864025|864026|864027|864028|864029|864030|864031|864032|864033|864034|864035|864036|864037|864038|864039|864040|864041|864042|864043|864044|864045|864046|864047|864048|864049|864050|864051|864052|864053|864054|864055|864056|864057|864058|864059|864060|864061|864062|864063|864064|864065|864066|864067|864068|864069|864070|864071|864072|864073|864074|864075|864076|864077|864078|864079|864080|864081|864082|864083|864084|864508|864509|864510|864511|864512|864513|864514|864515|864516|864517|864518|864519|864520|864521|864522|864523|864524|864525|864526|864527|864528|864529|864530|864531|865150|865151|865152|881123|881124|881125|881126|882805|882806|894702|894703|894704|894705|894706|894707|894708|894743|894747|894748|894749|894750|894751|894752|894753|894754|894757|894758|894759|894760|894761|894762|894763|894764|894765|894766|894767|894768|894769|894770|894771|894772|894773|896138", "text": "Disorders of Intracellular Cobalamin Metabolism" }, { - "baseId": "16460|486708|486709|486714|486715", + "upstreamId": "16460|486708|486709|486714|486715", "text": "METHYLMALONIC ACIDURIA AND HOMOCYSTINURIA, cblC TYPE, DIGENIC" }, { - "baseId": "16460|16462|16463|16464|39757|101600|101601|101602|101603|101604|194467|199944|199945|199946|199947|199948|199951|199952|199953|265244|280700|282450|282737|282748|282752|365277|365372|448353|481595|486903|498500|541098|541135|541138|541228|541244|541246|541281|557367|690627|690630|696775|746529|761986|761989|761990|780717|780720|801598|864510", + "upstreamId": "16460|16462|16463|16464|39757|101600|101601|101602|101603|101604|194467|199944|199945|199946|199947|199948|199951|199952|199953|265244|280700|282450|282737|282748|282752|365277|365372|448353|481595|486903|498500|541098|541135|541138|541228|541244|541246|541281|557367|690627|690630|696775|746529|761986|761989|761990|780717|780720|801598|864510", "text": "Methylmalonic aciduria with homocystinuria cblC type" }, { - "baseId": "16462|16464|16916|16917|16919|16920|16921|16923|16925|16926|16927|98587|98588|98589|98590|98591|98592|98594|98595|106562|106572|177367|193400|200109|200110|200111|200112|200114|200115|200116|200117|200121|200122|200123|200124|200126|216037|216038|216039|216040|216041|216042|216043|216044|216045|216046|216047|216048|216049|216050|216051|216052|216053|216054|224618|224619|224620|224621|224622|224623|224624|224625|224626|224627|224628|224629|224630|224631|224632|224633|224634|224635|224636|224637|224638|224639|224640|224641|224642|224643|224644|224645|224646|224647|224648|224649|224650|224651|224652|224653|224654|224655|224656|224657|224658|227101|227102|236987|268472|272964|274267|274558|300512|300513|300522|300524|303372|303374|303377|303378|303384|303385|303387|303389|303391|307916|307925|307927|307928|307940|307942|307943|307952|307953|308058|308066|308067|308073|308080|308083|361113|361114|368676|370483|406880|406882|406883|415053|415056|438323|439145|443970|455818|455819|456214|481422|481423|487143|487201|490207|502013|512823|513283|513284|513569|521632|521676|522000|522002|522062|543667|543675|543688|543689|543691|543694|543707|543717|543721|543729|543738|543968|543976|543985|543991|543994|543997|543999|544001|544007|544008|544012|544014|544016|544017|544018|544019|544021|544023|544024|544025|544026|544041|544043|544047|544049|544052|544057|544058|544064|544065|544066|544068|544125|544133|544134|544137|544140|544141|544144|544145|544153|544154|560734|560736|560738|563617|565693|565694|581755|581756|581776|582291|620792|634938|634939|634940|634941|634942|634943|634944|634945|634946|634947|651553|651561|679751|699613|722064|722065|735698|744217|765711|765712|765714|765715|765716|765719|790636|790637|790638|798576|818250|819693|831990|831991|831992|831993|831994|831995|831996|831997|852278|896561|896562|896563|896564|896565|896566|896567|896568|896569|896570|896571|896572|896573|896574|896575|896576|896577|896578|896579|896580|896581|896582|896583|896584|903545|924365|924366|933345|933346|933347|933348|940845|945046|945047|945048|945049|954473|954474|954475|954477|954478|954479|954480|961775|961776|961787|966758|966759|966760|966761|966762|966763|966764|966765|966766|966767|966768|966769|966770|966771|966772|966773|970218|970219|971953|971954|971955|971956|971957|971958|971959|971960|971961|971962|971963|971964|971965|971966|971967|980329|980923", + "upstreamId": "16462|16464|16916|16917|16919|16920|16921|16923|16925|16926|16927|98587|98588|98589|98590|98591|98592|98594|98595|106562|106572|177367|193400|200109|200110|200111|200112|200114|200115|200116|200117|200121|200122|200123|200124|200126|216037|216038|216039|216040|216041|216042|216043|216044|216045|216046|216047|216048|216049|216050|216051|216052|216053|216054|224618|224619|224620|224621|224622|224623|224624|224625|224626|224627|224628|224629|224630|224631|224632|224633|224634|224635|224636|224637|224638|224639|224640|224641|224642|224643|224644|224645|224646|224647|224648|224649|224650|224651|224652|224653|224654|224655|224656|224657|224658|227101|227102|236987|268472|272964|274267|274558|300512|300513|300522|300524|303372|303374|303377|303378|303384|303385|303387|303389|303391|307916|307925|307927|307928|307940|307942|307943|307952|307953|308058|308066|308067|308073|308080|308083|361113|361114|368676|370483|406880|406882|406883|415053|415056|438323|439145|443970|455818|455819|456214|481422|481423|487143|487201|490207|502013|512823|513283|513284|513569|521632|521676|522000|522002|522062|543667|543675|543688|543689|543691|543694|543707|543717|543721|543729|543738|543968|543976|543985|543991|543994|543997|543999|544001|544007|544008|544012|544014|544016|544017|544018|544019|544021|544023|544024|544025|544026|544041|544043|544047|544049|544052|544057|544058|544064|544065|544066|544068|544125|544133|544134|544137|544140|544141|544144|544145|544153|544154|560734|560736|560738|563617|565693|565694|581755|581756|581776|582291|620792|634938|634939|634940|634941|634942|634943|634944|634945|634946|634947|651553|651561|679751|699613|722064|722065|735698|744217|765711|765712|765714|765715|765716|765719|790636|790637|790638|798576|818250|819693|831990|831991|831992|831993|831994|831995|831996|831997|852278|896561|896562|896563|896564|896565|896566|896567|896568|896569|896570|896571|896572|896573|896574|896575|896576|896577|896578|896579|896580|896581|896582|896583|896584|903545|924365|924366|933345|933346|933347|933348|940845|945046|945047|945048|945049|954473|954474|954475|954477|954478|954479|954480|961775|961776|961787|966758|966759|966760|966761|966762|966763|966764|966765|966766|966767|966768|966769|966770|966771|966772|966773|970218|970219|971953|971954|971955|971956|971957|971958|971959|971960|971961|971962|971963|971964|971965|971966|971967|980329|980923", "text": "Methylmalonic aciduria due to methylmalonyl-CoA mutase deficiency" }, { - "baseId": "16462", + "upstreamId": "16462", "text": "cblC type of combined methylmalonic aciduria and homocystinuria" }, { - "baseId": "16465|16466|16467|16468|16469|16470|16471|16472|16473|16474|191441|191442|195771|265451|269096|384486|432302|437700|437701|437702|437703|437704|438959|513078|513079|790875|818267|818268|818269|818270|818271|818272|835948|919211", + "upstreamId": "16465|16466|16467|16468|16469|16470|16471|16472|16473|16474|191441|191442|195771|265451|269096|384486|432302|437700|437701|437702|437703|437704|438959|513078|513079|790875|818267|818268|818269|818270|818271|818272|835948|919211", "text": "Autosomal recessive hypophosphatemic bone disease" }, { - "baseId": "16468|438959", + "upstreamId": "16468|438959", "text": "Hypophosphatemic rickets with hypercalciuria" }, { - "baseId": "16475|16477|16478|16479|134277|134278|134279|140681|211104|362100|513055|581745|581746|581747|581753|581762|798548|802153|818234|918198", + "upstreamId": "16475|16477|16478|16479|134277|134278|134279|140681|211104|362100|513055|581745|581746|581747|581753|581762|798548|802153|818234|918198", "text": "Coenzyme Q10 deficiency, primary 1" }, { - "baseId": "16475|16477|16478|16479|75117|75119|142389|211447|295996|298511|299717|305208|305215|305397|321198|321757|335546|342017|343530|362100|362101|362102|620176", + "upstreamId": "16475|16477|16478|16479|75117|75119|142389|211447|295996|298511|299717|305208|305215|305397|321198|321757|335546|342017|343530|362100|362101|362102|620176", "text": "Coenzyme Q10 deficiency, primary" }, { - "baseId": "16480|16483|16520|16521|16523", + "upstreamId": "16480|16483|16520|16521|16523", "text": "Porphyria, acute intermittent, nonerythroid variant" }, { - "baseId": "16481|16482|16484|16485|16486|16487|16488|16489|16490|16491|16492|16493|16494|16495|16496|16497|16498|16499|16500|16501|16502|16503|16504|16505|16506|16507|16508|16509|16510|16511|16512|16513|16514|16515|16516|16517|16518|16519|16522|16524|16525|99631|171128|171129|171130|171131|171132|177396|254014|254015|254016|312560|312568|318548|324646|324649|324652|324664|324667|324668|324675|324687|325412|325413|325419|325424|325425|325428|325432|325433|325434|353169|359912|360926|361868|444737|444738|444739|503169|513190|540142|609296|639780|639782|677433|682125|724240|867120|867121|867122|867123|867124|867125|867126|867127|867128|904069|919323|920294|935409", + "upstreamId": "16481|16482|16484|16485|16486|16487|16488|16489|16490|16491|16492|16493|16494|16495|16496|16497|16498|16499|16500|16501|16502|16503|16504|16505|16506|16507|16508|16509|16510|16511|16512|16513|16514|16515|16516|16517|16518|16519|16522|16524|16525|99631|171128|171129|171130|171131|171132|177396|254014|254015|254016|312560|312568|318548|324646|324649|324652|324664|324667|324668|324675|324687|325412|325413|325419|325424|325425|325428|325432|325433|325434|353169|359912|360926|361868|444737|444738|444739|503169|513190|540142|609296|639780|639782|677433|682125|724240|867120|867121|867122|867123|867124|867125|867126|867127|867128|904069|919323|920294|935409", "text": "Acute intermittent porphyria" }, { - "baseId": "16526|75132|615964", + "upstreamId": "16526|75132|615964", "text": "Skin/hair/eye pigmentation, variation in, 4" }, { - "baseId": "16527|191732|195791|195791|222561|242616|242617|256108|256109|327902|327906|327910|327911|327915|327919|327921|337719|337723|337725|337729|337736|337738|337743|343939|343941|343945|343950|343953|343957|343958|345397|345400|345402|345410|345413|345417|402077|467207|467210|467385|483114|530653|530655|530659|530813|530910|530912|570830|570914|584316|610470|620577|620578|620579|645429|645430|645431|684666|688752|688754|688755|844837|844838|844839|851697|877092|877093|877094|877095|877096|877097|877098|877099|877100|877101|877102|877103|877104|877105|877106|877107|877108|877109|877110|877111|877112|877113|877114|877115|877116|880491|880492|928091|928092|937759|958017|958018|958019|958020", + "upstreamId": "16527|191732|195791|195791|222561|242616|242617|256108|256109|327902|327906|327910|327911|327915|327919|327921|337719|337723|337725|337729|337736|337738|337743|343939|343941|343945|343950|343953|343957|343958|345397|345400|345402|345410|345413|345417|402077|467207|467210|467385|483114|530653|530655|530659|530813|530910|530912|570830|570914|584316|610470|620577|620578|620579|645429|645430|645431|684666|688752|688754|688755|844837|844838|844839|851697|877092|877093|877094|877095|877096|877097|877098|877099|877100|877101|877102|877103|877104|877105|877106|877107|877108|877109|877110|877111|877112|877113|877114|877115|877116|880491|880492|928091|928092|937759|958017|958018|958019|958020", "text": "Nephronophthisis 9" }, { - "baseId": "16528|424690|858306|858792|918181", + "upstreamId": "16528|424690|858306|858792|918181", "text": "Hermansky-Pudlak syndrome 8" }, { - "baseId": "16529|16530|16531|16532|16533|16534|16535|16536|165838|176306|176411|176412|176426|195608|227416|231209|231217|270035|270996|271877|275023|389254|389255|443697|486666|508414|513668|538499|553273|614609|614610|615831|615832|615833|615834|626285|758085|800188|800189|816496|919952", + "upstreamId": "16529|16530|16531|16532|16533|16534|16535|16536|165838|176306|176411|176412|176426|195608|227416|231209|231217|270035|270996|271877|275023|389254|389255|443697|486666|508414|513668|538499|553273|614609|614610|615831|615832|615833|615834|626285|758085|800188|800189|816496|919952", "text": "Deafness, autosomal recessive 28" }, { - "baseId": "16537|16538|16539|16540|16541|16542|16543|205187|213647|237439|256457|256458|256459|256460|330042|330047|330049|330052|330060|330062|330066|330067|330073|330079|330080|330081|330085|330087|330091|330093|330102|330104|330105|330106|330119|330121|330129|330134|330135|330138|330144|340265|340268|340271|340273|340275|340277|340278|340283|340285|340290|340293|340295|340301|340302|340304|340309|340317|340318|340320|340325|340326|340330|340331|340334|340335|340343|346021|346029|346030|346036|346038|346040|346041|346042|346043|346044|346046|346047|346050|346054|346055|346060|346061|346062|346064|346065|346071|346072|346074|346075|346077|346078|346079|346080|347330|347331|347336|347338|347341|347342|347345|347349|347350|347357|347358|347360|347362|347364|347365|347369|347371|347372|347373|347376|347378|347380|347381|347384|438965|538470|568672|569757|571606|646722|715717|715718|715719|715720|727451|727452|727453|741047|741048|741050|741051|756144|756145|756147|756148|756149|771849|771850|771851|771852|776400|776401|785750|785752|788184|792810|821157|821158|846244|846245|846246|852793|878530|878531|878532|878533|878534|878535|878536|878537|878538|878539|878540|878541|878542|878543|878544|878545|878546|878547|878548|878549|878550|878551|878552|878553|878554|878555|878556|878557|878558|878559|878560|878561|878562|878563|878564|878565|878566|878567|878568|878569|878570|878571|878572|878573|878574|878575|878576|878577|878578|878579|878580|878581|878582|878583|878584|878585|878586|878587|878588|880599|880600|880601|880602|940439|962053|965605|965656|979923|979924|979925", + "upstreamId": "16537|16538|16539|16540|16541|16542|16543|205187|213647|237439|256457|256458|256459|256460|330042|330047|330049|330052|330060|330062|330066|330067|330073|330079|330080|330081|330085|330087|330091|330093|330102|330104|330105|330106|330119|330121|330129|330134|330135|330138|330144|340265|340268|340271|340273|340275|340277|340278|340283|340285|340290|340293|340295|340301|340302|340304|340309|340317|340318|340320|340325|340326|340330|340331|340334|340335|340343|346021|346029|346030|346036|346038|346040|346041|346042|346043|346044|346046|346047|346050|346054|346055|346060|346061|346062|346064|346065|346071|346072|346074|346075|346077|346078|346079|346080|347330|347331|347336|347338|347341|347342|347345|347349|347350|347357|347358|347360|347362|347364|347365|347369|347371|347372|347373|347376|347378|347380|347381|347384|438965|538470|568672|569757|571606|646722|715717|715718|715719|715720|727451|727452|727453|741047|741048|741050|741051|756144|756145|756147|756148|756149|771849|771850|771851|771852|776400|776401|785750|785752|788184|792810|821157|821158|846244|846245|846246|852793|878530|878531|878532|878533|878534|878535|878536|878537|878538|878539|878540|878541|878542|878543|878544|878545|878546|878547|878548|878549|878550|878551|878552|878553|878554|878555|878556|878557|878558|878559|878560|878561|878562|878563|878564|878565|878566|878567|878568|878569|878570|878571|878572|878573|878574|878575|878576|878577|878578|878579|878580|878581|878582|878583|878584|878585|878586|878587|878588|880599|880600|880601|880602|940439|962053|965605|965656|979923|979924|979925", "text": "Peroxisomal acyl-CoA oxidase deficiency" }, { - "baseId": "16544|16545|16546|16548|16549|16550|16552|16552|16553|16554|16555|16556|16557|227202|237092|237092|249415|249416|263974|263974|276575|276576|276577|276589|276590|276835|276838|276844|276845|276846|276864|276865|276866|276870|276872|277385|277387|277390|277393|277397|277406|277412|277425|277493|277496|277500|277507|277515|277531|277533|277534|277535|277536|442635|513235|578365|614553|619954|619955|619956|696141|789854|804879|862398|862399|862400|862401|862402|862403|862404|862405|862406|862407|862408|862409|862410|862411|862412|862413|862414|862415|862416|862417|862418|864989|864990|864991|864992|864993|864994|970662", + "upstreamId": "16544|16545|16546|16548|16549|16550|16552|16552|16553|16554|16555|16556|16557|227202|237092|237092|249415|249416|263974|263974|276575|276576|276577|276589|276590|276835|276838|276844|276845|276846|276864|276865|276866|276870|276872|277385|277387|277390|277393|277397|277406|277412|277425|277493|277496|277500|277507|277515|277531|277533|277534|277535|277536|442635|513235|578365|614553|619954|619955|619956|696141|789854|804879|862398|862399|862400|862401|862402|862403|862404|862405|862406|862407|862408|862409|862410|862411|862412|862413|862414|862415|862416|862417|862418|864989|864990|864991|864992|864993|864994|970662", "text": "Pyruvate kinase deficiency of red cells" }, { - "baseId": "16551|16552|16552|237092|263974|442635", + "upstreamId": "16551|16552|16552|237092|263974|442635", "text": "Adenosine triphosphate, elevated, of erythrocytes" }, { - "baseId": "16558|16559|16560|16561|16561|16562|16563|16564|16565|16566|16567|16568|16569|16570|16571|16572|16573|16574|16575|16576|16577|16578|16579|16580|16581|16582|16583|16584|16585|16586|16587|16589|16590|16591|16592|16593|16595|16596|16597|48634|167953|167957|228248|228249|304769|304770|304771|304779|304781|304784|304786|308436|308437|308438|308439|308441|308445|308447|308451|308459|308469|308479|308485|308491|308493|308496|308498|308517|308525|313559|313561|313563|313575|313598|313599|313600|313602|313603|313605|313609|313610|313618|313650|313651|313655|313656|313657|313660|313664|313668|313670|313671|313672|313676|313677|313690|313699|313703|313721|313722|313723|487330|487375|487383|513294|514566|620297|722988|722989|736574|751056|751057|751059|766711|766712|766713|766714|766722|783066|783071|899228|899229|899230|899231|899232|899233|899234|899235|899236|899237|899238|899239|899240|899241|899242|899243|899244|899245|899246|899247|899248|899249|899250|899251|899252|899253|899254|899255|899256|899257|899258|899259|899260|899261|899262|899263|900464|961855|961856|966454|967100|978461|978462|978463|978464", + "upstreamId": "16558|16559|16560|16561|16561|16562|16563|16564|16565|16566|16567|16568|16569|16570|16571|16572|16573|16574|16575|16576|16577|16578|16579|16580|16581|16582|16583|16584|16585|16586|16587|16589|16590|16591|16592|16593|16595|16596|16597|48634|167953|167957|228248|228249|304769|304770|304771|304779|304781|304784|304786|308436|308437|308438|308439|308441|308445|308447|308451|308459|308469|308479|308485|308491|308493|308496|308498|308517|308525|313559|313561|313563|313575|313598|313599|313600|313602|313603|313605|313609|313610|313618|313650|313651|313655|313656|313657|313660|313664|313668|313670|313671|313672|313676|313677|313690|313699|313703|313721|313722|313723|487330|487375|487383|513294|514566|620297|722988|722989|736574|751056|751057|751059|766711|766712|766713|766714|766722|783066|783071|899228|899229|899230|899231|899232|899233|899234|899235|899236|899237|899238|899239|899240|899241|899242|899243|899244|899245|899246|899247|899248|899249|899250|899251|899252|899253|899254|899255|899256|899257|899258|899259|899260|899261|899262|899263|900464|961855|961856|966454|967100|978461|978462|978463|978464", "text": "Hyperlipoproteinemia, type I" }, { - "baseId": "16561|16561|16566|16568|16569|16579|16589|411513|511752|970879", + "upstreamId": "16561|16561|16566|16568|16569|16579|16589|411513|511752|970879", "text": "Hyperlipidemia, familial combined, LPL related" }, { - "baseId": "16573", + "upstreamId": "16573", "text": "LIPOPROTEIN LIPASE POLYMORPHISM" }, { - "baseId": "16577", + "upstreamId": "16577", "text": "Lpl-arita" }, { - "baseId": "16588|16589|16591|16594|27333|27334", + "upstreamId": "16588|16589|16591|16594|27333|27334", "text": "Hyperlipidemia, familial combined, susceptibility to" }, { - "baseId": "16591|32943|143193|143194|143195", + "upstreamId": "16591|32943|143193|143194|143195", "text": "Coronary heart disease" }, { - "baseId": "16595", + "upstreamId": "16595", "text": "LIPOPROTEIN LIPASE (OLBIA)" }, { - "baseId": "16598|48634", + "upstreamId": "16598|48634", "text": "High density lipoprotein cholesterol level quantitative trait locus 11" }, { - "baseId": "16599|16599|16600|16600|16601|16601|16602|16602|16603|16603|16604|16604|16605|16605|16606|16606|16607|16608|16609|16610|16610|16611|16611|39752|39752|98599|98600|98601|98602|98604|98604|152905|152906|152906|177157|177853|237435|237435|260811|260812|265243|265243|272255|272277|272277|274557|274557|274815|274815|328519|328519|328521|328521|328522|328522|328524|328524|338465|338468|338469|338469|338479|338479|344551|344551|345949|345951|345951|345952|345954|345958|345958|358436|358436|358437|431000|468077|468077|487839|487839|488906|512959|512959|513465|513465|513466|531265|539071|539071|548134|548138|548140|548143|548145|548147|548149|548151|548152|548153|548154|548155|548156|548157|548160|548160|548161|548163|548165|548168|548170|548171|548175|548176|548177|548185|548187|548392|548399|548411|548416|548417|548417|548421|548425|548425|548427|548432|548441|548443|548445|548453|548453|548454|548454|548463|548470|548470|548473|548477|548478|548480|548483|548488|548496|548497|548497|548507|548845|548850|548852|548854|548856|548866|548868|548886|548888|548895|548897|548899|548901|548902|548904|548904|548910|548916|548916|548921|548925|548926|548930|548939|548939|548941|569051|569053|569053|574461|574462|578545|581774|612319|620588|620589|620589|623161|623162|625884|625885|645901|645902|645903|645904|645905|704146|704146|715460|715460|715461|715461|715462|715462|727184|727184|727185|727185|727186|727186|731150|731150|740757|740757|740758|740758|740759|740759|744975|755854|755854|755855|755856|771507|771508|771509|771509|771510|771511|771513|771516|771517|771518|771519|771520|771520|785566|785569|785572|785573|785574|791745|791746|791747|845342|845343|845344|845345|845346|845347|852743|877553|877554|877555|877556|877557|877558|877559|877560|877561|877562|877563|877564|937932|937933|937934|937935|949921|949922|958107|958108|958109|958110|958111|958112|962245|972273|972274|972275|979899|979900|979901|979902", + "upstreamId": "16599|16599|16600|16600|16601|16601|16602|16602|16603|16603|16604|16604|16605|16605|16606|16606|16607|16608|16609|16610|16610|16611|16611|39752|39752|98599|98600|98601|98602|98604|98604|152905|152906|152906|177157|177853|237435|237435|260811|260812|265243|265243|272255|272277|272277|274557|274557|274815|274815|328519|328519|328521|328521|328522|328522|328524|328524|338465|338468|338469|338469|338479|338479|344551|344551|345949|345951|345951|345952|345954|345958|345958|358436|358436|358437|431000|468077|468077|487839|487839|488906|512959|512959|513465|513465|513466|531265|539071|539071|548134|548138|548140|548143|548145|548147|548149|548151|548152|548153|548154|548155|548156|548157|548160|548160|548161|548163|548165|548168|548170|548171|548175|548176|548177|548185|548187|548392|548399|548411|548416|548417|548417|548421|548425|548425|548427|548432|548441|548443|548445|548453|548453|548454|548454|548463|548470|548470|548473|548477|548478|548480|548483|548488|548496|548497|548497|548507|548845|548850|548852|548854|548856|548866|548868|548886|548888|548895|548897|548899|548901|548902|548904|548904|548910|548916|548916|548921|548925|548926|548930|548939|548939|548941|569051|569053|569053|574461|574462|578545|581774|612319|620588|620589|620589|623161|623162|625884|625885|645901|645902|645903|645904|645905|704146|704146|715460|715460|715461|715461|715462|715462|727184|727184|727185|727185|727186|727186|731150|731150|740757|740757|740758|740758|740759|740759|744975|755854|755854|755855|755856|771507|771508|771509|771509|771510|771511|771513|771516|771517|771518|771519|771520|771520|785566|785569|785572|785573|785574|791745|791746|791747|845342|845343|845344|845345|845346|845347|852743|877553|877554|877555|877556|877557|877558|877559|877560|877561|877562|877563|877564|937932|937933|937934|937935|949921|949922|958107|958108|958109|958110|958111|958112|962245|972273|972274|972275|979899|979900|979901|979902", "text": "Mucopolysaccharidosis, MPS-III-B" }, { - "baseId": "16599|16600|16601|16602|16603|16604|16605|16606|16610|16611|39752|98604|152906|177157|200975|237435|265243|272277|274557|274815|328519|328521|328522|328524|338469|338479|344551|345951|345958|358436|468077|487839|488906|512959|513465|531265|539071|539071|548160|548417|548425|548453|548454|548470|548497|548904|548916|548939|569051|569053|574461|574462|620589|645901|645902|645903|645904|645905|704146|715460|715461|715462|727184|727185|727186|731150|740757|740758|740759|744975|755854|755855|755856|771507|771508|771509|771510|771511|771513|771516|771517|771518|771519|771520|785566|785569|785572|785573|845342|845343|845344|845345|845346|845347|852743|937932|937933|937934|937935|949921|949922|958107|958108|958109|958110|958111|958112", + "upstreamId": "16599|16600|16601|16602|16603|16604|16605|16606|16610|16611|39752|98604|152906|177157|200975|237435|265243|272277|274557|274815|328519|328521|328522|328524|338469|338479|344551|345951|345958|358436|468077|487839|488906|512959|513465|531265|539071|539071|548160|548417|548425|548453|548454|548470|548497|548904|548916|548939|569051|569053|574461|574462|620589|645901|645902|645903|645904|645905|704146|715460|715461|715462|727184|727185|727186|731150|740757|740758|740759|744975|755854|755855|755856|771507|771508|771509|771510|771511|771513|771516|771517|771518|771519|771520|785566|785569|785572|785573|845342|845343|845344|845345|845346|845347|852743|937932|937933|937934|937935|949921|949922|958107|958108|958109|958110|958111|958112", "text": "Charcot-Marie-Tooth disease, axonal type 2V" }, { - "baseId": "16603|17577|18513|18536|18820|19260|20874|23435|23993|24680|26862|28958|30966|31490|31500|32040|32041|32044|32046|32048|32055|32062|32068|32660|39003|39501|44706|44738|44739|44742|44746|44771|44794|46362|46375|46446|46492|46568|46632|46720|46743|46771|46785|48043|51454|51459|51525|51526|51540|51604|53896|53902|53907|53916|53930|53931|53932|57587|57643|65709|65786|65914|66202|66329|66607|66687|66817|66833|66884|66924|67002|67098|67130|67183|67447|67476|67494|67533|71284|78529|78674|78697|78817|78895|78901|78903|78910|78945|96907|98319|102667|102683|102731|102743|102758|103449|131517|131583|151171|151719|170101|173777|173934|175763|175906|175979|175988|178699|180661|181441|183666|184005|186861|196831|196929|197650|197688|197723|197743|197755|224272|226499|231864|233846|234768|234820|234954|235048|242076|243997|244001|258823|260039|260073|263184|263220|263253|263261|263267|263286|263292|263318|263319|263384|263401|263863|264055|264422|264749|287152|340675|342667|358436|359267|360800|360951|360968|361006|361055|361065|361065|361100|361105|362139|373504|403333|404845|404846|409256|414704|422039|433558|435058|461285|463766|464306|465146|487849|487854|493078|510615|511075|513888|513892|513973|514014|514030|514038|514051|514066|514067|514068|514089|514120|514141|514152|514153|514167|514204|514206|514219|529011|539719|539842|547329|559457|590037|590091|614396|614397|614398|614399|614400|615920|672319|672321|801262|816327|816328|858541|975888|980477", + "upstreamId": "16603|17577|18513|18536|18820|19260|20874|23435|23993|24680|26862|28958|30966|31490|31500|32040|32041|32044|32046|32048|32055|32062|32068|32660|39003|39501|44706|44738|44739|44742|44746|44771|44794|46362|46375|46446|46492|46568|46632|46720|46743|46771|46785|48043|51454|51459|51525|51526|51540|51604|53896|53902|53907|53916|53930|53931|53932|57587|57643|65709|65786|65914|66202|66329|66607|66687|66817|66833|66884|66924|67002|67098|67130|67183|67447|67476|67494|67533|71284|78529|78674|78697|78817|78895|78901|78903|78910|78945|96907|98319|102667|102683|102731|102743|102758|103449|131517|131583|151171|151719|170101|173777|173934|175763|175906|175979|175988|178699|180661|181441|183666|184005|186861|196831|196929|197650|197688|197723|197743|197755|224272|226499|231864|233846|234768|234820|234954|235048|242076|243997|244001|258823|260039|260073|263184|263220|263253|263261|263267|263286|263292|263318|263319|263384|263401|263863|264055|264422|264749|287152|340675|342667|358436|359267|360800|360951|360968|361006|361055|361065|361065|361100|361105|362139|373504|403333|404845|404846|409256|414704|422039|433558|435058|461285|463766|464306|465146|487849|487854|493078|510615|511075|513888|513892|513973|514014|514030|514038|514051|514066|514067|514068|514089|514120|514141|514152|514153|514167|514204|514206|514219|529011|539719|539842|547329|559457|590037|590091|614396|614397|614398|614399|614400|615920|672319|672321|801262|816327|816328|858541|975888|980477", "text": "8 conditions" }, { - "baseId": "16612|16613|16614|16615|16615|16616|236948|316202|316206|316206|323517|323518|323518|323528|323533|323536|323537|323538|329699|329699|329701|329701|329707|330953|330956|462460|503564|526618|526707|526710|526876|526949|526956|526956|527273|527273|565093|565098|566391|640665|640666|640667|713390|730843|738506|753167|820447|839370|839371|839372|839373|839374|839375|869414|869415|869416|869417|869418|869419|869420|869421|869422|869423|872195|872196|935934|935935|935936|947807|947808|956763|956764", + "upstreamId": "16612|16613|16614|16615|16615|16616|236948|316202|316206|316206|323517|323518|323518|323528|323533|323536|323537|323538|329699|329699|329701|329701|329707|330953|330956|462460|503564|526618|526707|526710|526876|526949|526956|526956|527273|527273|565093|565098|566391|640665|640666|640667|713390|730843|738506|753167|820447|839370|839371|839372|839373|839374|839375|869414|869415|869416|869417|869418|869419|869420|869421|869422|869423|872195|872196|935934|935935|935936|947807|947808|956763|956764", "text": "Tyrosinemia type 3" }, { - "baseId": "16615|16615|16616|16616|236948|316202|316206|316206|316211|323517|323518|323518|323528|323533|323536|323537|323538|329699|329699|329701|329701|329707|330953|330956|353210|353211|462460|503564|526618|526707|526710|526876|526949|526956|526956|527273|565093|565098|566391|640665|640666|640667|713390|730843|738506|753167|791201|820447|839370|839371|839372|839373|839374|839375|869414|869415|869416|869417|869418|869419|869420|869421|869422|869423|872195|872196|935934|935935|935936|947807|947808|956763|956764|967245", + "upstreamId": "16615|16615|16616|16616|236948|316202|316206|316206|316211|323517|323518|323518|323528|323533|323536|323537|323538|329699|329699|329701|329701|329707|330953|330956|353210|353211|462460|503564|526618|526707|526710|526876|526949|526956|526956|527273|565093|565098|566391|640665|640666|640667|713390|730843|738506|753167|791201|820447|839370|839371|839372|839373|839374|839375|869414|869415|869416|869417|869418|869419|869420|869421|869422|869423|872195|872196|935934|935935|935936|947807|947808|956763|956764|967245", "text": "Hawkinsinuria" }, { - "baseId": "16617|16618|29951|320043|320044|320049|320055|320057|320066|320068|320072|320082|320083|320085|320086|328595|328598|328599|328607|328608|328612|328614|328616|328617|328623|328625|328627|328631|328632|335072|335077|335078|335084|335085|335086|335087|335096|335100|335102|335104|335118|335123|335134|335148|335153|335156|335164|335166|335188|337042|337045|337047|337050|337055|337061|337062|337064|337075|337076|683201|713979|725525|753898|871526|871527|871528|871529|871530|871531|871532|871533|871534|871536|871537|871538|871539|871540|871541|871542|871543|871544|871545|871546|871547|871548|871549|871550|871551|871552|871553|871555|871556|871557|871559|871560|871561|871562|871563|871564|871565|871566|871567|871568|871569", + "upstreamId": "16617|16618|29951|320043|320044|320049|320055|320057|320066|320068|320072|320082|320083|320085|320086|328595|328598|328599|328607|328608|328612|328614|328616|328617|328623|328625|328627|328631|328632|335072|335077|335078|335084|335085|335086|335087|335096|335100|335102|335104|335118|335123|335134|335148|335153|335156|335164|335166|335188|337042|337045|337047|337050|337055|337061|337062|337064|337075|337076|683201|713979|725525|753898|871526|871527|871528|871529|871530|871531|871532|871533|871534|871536|871537|871538|871539|871540|871541|871542|871543|871544|871545|871546|871547|871548|871549|871550|871551|871552|871553|871555|871556|871557|871559|871560|871561|871562|871563|871564|871565|871566|871567|871568|871569", "text": "Tourette syndrome" }, { - "baseId": "16617", + "upstreamId": "16617", "text": "Trichotillomania" }, { - "baseId": "16619|16620|16621|16622", + "upstreamId": "16619|16620|16621|16622", "text": "Glaucoma 1, open angle, G" }, { - "baseId": "16621|21837|21837|21838|21839|21840|21841|21842|21843|21844|55409|55411|55413|55414|55416|55417|55418|55420|55422|55423|55424|55425|55426|55427|55429|55432|55433|55434|55435|55436|55438|55439|55444|55445|55447|55448|55449|55450|55451|55453|55455|55456|55458|55459|55462|55463|55464|55465|55466|55468|55469|55470|55471|55472|55473|55475|55476|55477|55478|55479|55480|55481|55482|55483|55483|55484|55485|55486|55487|55489|55490|55491|55492|55494|55495|55496|55498|55499|55500|55502|55503|55504|55505|55506|55507|55508|55509|55510|55511|55513|55515|55516|55517|55519|55521|55523|55524|55525|55526|55528|55529|55530|55531|55532|55533|55538|55539|55541|55542|55544|55545|55546|55547|55548|55548|55551|55552|55554|55555|55558|55560|55561|55565|55567|55568|55569|55571|55572|55573|55574|106479|115776|141201|141203|141204|152876|152877|152878|168544|168545|168546|168548|168550|168552|168556|174292|174294|174295|174296|174297|174300|174301|174305|174306|174306|174309|174313|174314|174316|174320|174321|174327|174331|174433|174434|174436|174442|174443|174447|174448|174452|174453|174454|174455|174455|174456|174460|174462|174468|174469|174475|177755|190912|192696|192785|193724|194148|194654|195169|195465|195465|195538|195622|195827|196072|226526|226538|229327|229338|229344|229347|229349|229349|229351|229357|229359|229361|229367|229369|229375|246883|260785|267208|267429|267749|268781|268828|269624|269624|272062|273234|275060|275062|362174|363866|363866|389222|389223|389493|404769|415013|425651|433350|443833|488627|488666|490842|491555|495293|495297|496394|496397|496400|496403|496403|496405|496409|496410|496445|496449|496828|496833|496846|501459|513560|535680|537464|537464|551542|585004|587192|587555|588227|588228|589213|590278|590279|590280|609606|612130|615791|615792|615793|615794|615795|615836|620201|623286|654397|654400|654409|654412|655685|655687|655693|699211|721585|735263|735265|735271|744171|749659|749677|765375|765380|782385|782392|788786|790566|790567|790568|790569|793098|793104|793106|800354|800355|800369|800370|815983|818240|831261|831266|831272|831283|831300|831303|831309|831315|831318|831347|856394|856395|856410|894854|894855|894856|894857|894858|894859|894860|894861|894862|894863|894864|894865|894866|894867|894868|894869|894870|894871|894872|894873|894874|894875|894876|894877|894878|894879|894880|894881|894882|894883|894884|894885|894886|894887|894888|894889|894890|894891|894892|894893|894894|894895|894896|894897|894898|894899|894900|894901|894902|894903|894904|894905|894906|894907|894908|894909|894910|894911|894912|894913|894914|894915|894916|894917|894918|894919|894920|894921|894922|894923|894924|894925|894926|894927|894928|894929|894930|894931|894932|894933|894934|894935|894936|894937|894938|894939|894940|894941|894942|894943|894944|894945|894946|894947|894948|894949|894950|894951|894952|894953|894954|894955|894956|894957|894958|894959|894960|894961|894962|894963|894964|894965|894966|894967|894968|894969|894970|894971|894972|894973|894974|894975|894976|894977|894978|894979|894980|894981|894982|894983|894984|894985|894986|894987|894988|894989|894990|894991|894992|894993|894994|894995|896145|896146|896147|896148|896149|896150|896151|896152|896153|896154|896155|896156|896157|896158|896159|896160|896161|963140", + "upstreamId": "16621|21837|21837|21838|21839|21840|21841|21842|21843|21844|55409|55411|55413|55414|55416|55417|55418|55420|55422|55423|55424|55425|55426|55427|55429|55432|55433|55434|55435|55436|55438|55439|55444|55445|55447|55448|55449|55450|55451|55453|55455|55456|55458|55459|55462|55463|55464|55465|55466|55468|55469|55470|55471|55472|55473|55475|55476|55477|55478|55479|55480|55481|55482|55483|55483|55484|55485|55486|55487|55489|55490|55491|55492|55494|55495|55496|55498|55499|55500|55502|55503|55504|55505|55506|55507|55508|55509|55510|55511|55513|55515|55516|55517|55519|55521|55523|55524|55525|55526|55528|55529|55530|55531|55532|55533|55538|55539|55541|55542|55544|55545|55546|55547|55548|55548|55551|55552|55554|55555|55558|55560|55561|55565|55567|55568|55569|55571|55572|55573|55574|106479|115776|141201|141203|141204|152876|152877|152878|168544|168545|168546|168548|168550|168552|168556|174292|174294|174295|174296|174297|174300|174301|174305|174306|174306|174309|174313|174314|174316|174320|174321|174327|174331|174433|174434|174436|174442|174443|174447|174448|174452|174453|174454|174455|174455|174456|174460|174462|174468|174469|174475|177755|190912|192696|192785|193724|194148|194654|195169|195465|195465|195538|195622|195827|196072|226526|226538|229327|229338|229344|229347|229349|229349|229351|229357|229359|229361|229367|229369|229375|246883|260785|267208|267429|267749|268781|268828|269624|269624|272062|273234|275060|275062|362174|363866|363866|389222|389223|389493|404769|415013|425651|433350|443833|488627|488666|490842|491555|495293|495297|496394|496397|496400|496403|496403|496405|496409|496410|496445|496449|496828|496833|496846|501459|513560|535680|537464|537464|551542|585004|587192|587555|588227|588228|589213|590278|590279|590280|609606|612130|615791|615792|615793|615794|615795|615836|620201|623286|654397|654400|654409|654412|655685|655687|655693|699211|721585|735263|735265|735271|744171|749659|749677|765375|765380|782385|782392|788786|790566|790567|790568|790569|793098|793104|793106|800354|800355|800369|800370|815983|818240|831261|831266|831272|831283|831300|831303|831309|831315|831318|831347|856394|856395|856410|894854|894855|894856|894857|894858|894859|894860|894861|894862|894863|894864|894865|894866|894867|894868|894869|894870|894871|894872|894873|894874|894875|894876|894877|894878|894879|894880|894881|894882|894883|894884|894885|894886|894887|894888|894889|894890|894891|894892|894893|894894|894895|894896|894897|894898|894899|894900|894901|894902|894903|894904|894905|894906|894907|894908|894909|894910|894911|894912|894913|894914|894915|894916|894917|894918|894919|894920|894921|894922|894923|894924|894925|894926|894927|894928|894929|894930|894931|894932|894933|894934|894935|894936|894937|894938|894939|894940|894941|894942|894943|894944|894945|894946|894947|894948|894949|894950|894951|894952|894953|894954|894955|894956|894957|894958|894959|894960|894961|894962|894963|894964|894965|894966|894967|894968|894969|894970|894971|894972|894973|894974|894975|894976|894977|894978|894979|894980|894981|894982|894983|894984|894985|894986|894987|894988|894989|894990|894991|894992|894993|894994|894995|896145|896146|896147|896148|896149|896150|896151|896152|896153|896154|896155|896156|896157|896158|896159|896160|896161|963140", "text": "Usher syndrome, type 2C" }, { - "baseId": "16623|16624|16625|16626|16627|16628|16629|16630|16631|16632|49833|49834|103605|103606|103607|103608|103609|103610|103611|103612|103613|103614|103615|103616|103617|103618|103619|103620|103621|103622|103623|103624|103626|103627|103628|103629|103630|103631|103632|103633|103634|103635|103636|103637|103638|103639|103640|103641|103642|103643|103644|103645|103646|103647|103648|103650|103651|103652|103653|103654|103655|103656|103657|103658|103659|103660|103661|103662|103663|103664|103665|103666|103667|103668|103669|103670|103671|103672|103673|103674|103675|103676|103677|103678|103679|103680|103681|103682|103683|103684|103685|103686|103687|103688|103689|103691|103692|103693|103694|103695|103696|103697|103698|103699|103700|103786|103787|103788|103789|103790|103791|103792|103793|132717|132720|132721|271343|271712|272489|274560|274744|334310|334316|334321|334322|334335|334337|334350|334352|334357|334358|334361|334365|334375|334379|334383|334384|344240|344241|344251|344252|344253|344254|344261|344263|344268|349374|349377|349378|349381|349382|349385|349386|349389|349390|349392|350394|350395|350398|620914|800949|818722|822325|882494|882495|882496|882497|882498|882499|882500|882501|882502|882503|882504|882505|882506|882507|882508|882509|882510|882511|882512|882513|882514|882515|882516|882517|882518|882519|882520|882521|882522|882523|882524|882525|882526|882527|882528|882529|882530|882531|882532|882533|882534|882535|882536|882537|882538|882539|882540|882935", + "upstreamId": "16623|16624|16625|16626|16627|16628|16629|16630|16631|16632|49833|49834|103605|103606|103607|103608|103609|103610|103611|103612|103613|103614|103615|103616|103617|103618|103619|103620|103621|103622|103623|103624|103626|103627|103628|103629|103630|103631|103632|103633|103634|103635|103636|103637|103638|103639|103640|103641|103642|103643|103644|103645|103646|103647|103648|103650|103651|103652|103653|103654|103655|103656|103657|103658|103659|103660|103661|103662|103663|103664|103665|103666|103667|103668|103669|103670|103671|103672|103673|103674|103675|103676|103677|103678|103679|103680|103681|103682|103683|103684|103685|103686|103687|103688|103689|103691|103692|103693|103694|103695|103696|103697|103698|103699|103700|103786|103787|103788|103789|103790|103791|103792|103793|132717|132720|132721|271343|271712|272489|274560|274744|334310|334316|334321|334322|334335|334337|334350|334352|334357|334358|334361|334365|334375|334379|334383|334384|344240|344241|344251|344252|344253|344254|344261|344263|344268|349374|349377|349378|349381|349382|349385|349386|349389|349390|349392|350394|350395|350398|620914|800949|818722|822325|882494|882495|882496|882497|882498|882499|882500|882501|882502|882503|882504|882505|882506|882507|882508|882509|882510|882511|882512|882513|882514|882515|882516|882517|882518|882519|882520|882521|882522|882523|882524|882525|882526|882527|882528|882529|882530|882531|882532|882533|882534|882535|882536|882537|882538|882539|882540|882935", "text": "Hydatidiform mole, recurrent, 1" }, { - "baseId": "16633|16634|142160|406756|488088|488090", + "upstreamId": "16633|16634|142160|406756|488088|488090", "text": "Mitochondrial complex 1 deficiency, nuclear type 10" }, { - "baseId": "16633|21926|21927|21928|21929|24093|29095|48741|101651|134558|135131|135132|135134|135135|135136|135137|135138|135139|135141|135142|135143|135144|135145|135146|135147|135148|135149|141102|141103|141104|141105|142139|142140|142143|142146|142148|142156|142157|142158|142160|142161|142162|142164|142176|142177|142178|142179|142182|142183|142185|142186|142187|142188|142189|142190|142191|142192|142193|142194|142195|142196|142197|142200|142201|142202|142204|142205|142207|142210|142270|188131|208193|210613|210616|210617|210618|210619|210741|210796|210803|210805|210807|211015|211149|211155|211156|211157|211166|211170|211499|211501|211505|211507|211515|211515|211536|211537|211538|211541|211544|211554|211555|211559|211564|211664|211667|211671|211674|211675|211676|211677|211687|211690|211691|211692|211693|211864|211866|211906|211908|211925|246907|267035|274971|276891|276895|276896|276901|277177|277178|277185|277188|277868|277871|277872|277873|277890|277896|277920|277930|277931|277939|277942|277953|277960|277973|277987|284146|284148|284149|284167|284909|284911|284912|284913|284926|285460|285461|285462|285470|285471|285475|285478|285479|285480|285483|285484|286125|286127|286135|286147|286154|286156|286160|286161|286162|286166|286169|286170|286171|286177|286179|286181|286185|286188|286189|286832|286835|286843|286845|286846|286850|287226|287235|287236|287237|287239|287244|287247|288485|288497|288500|288518|288521|288522|288523|288823|288824|288825|288857|288861|288864|288869|288875|288896|288897|288898|288906|291994|291996|292006|292014|295351|295352|295356|295361|295363|295371|295372|295373|295381|295585|295586|295589|295647|295653|297291|297431|297433|297435|297438|297950|300102|300108|301235|301237|301238|301239|301248|301249|301255|301256|301301|301496|301511|301513|303478|303479|303494|303495|303685|303686|303687|304216|304369|304378|304379|304386|304387|304389|304396|304408|304425|304446|304450|304530|304535|304546|304695|309013|309018|309023|309028|309031|309033|309037|309120|309122|309125|309126|309127|309128|309131|309132|309133|309134|313196|313198|313199|313200|313202|313203|313214|313216|314319|314894|314895|314907|314908|314921|314922|314925|314927|319341|319342|319345|319347|320420|320421|320422|320426|320427|320433|320435|320437|320898|320904|320906|321681|321682|321691|321693|321700|321701|321702|321709|321712|321713|321716|321719|321722|321729|322455|322457|325485|325493|325495|325496|325498|326413|326416|326422|326424|326425|326970|327777|327781|327783|327793|327802|327803|327807|328025|328026|328866|328867|328868|328884|328888|328891|328894|329170|329177|329178|329180|329181|329185|329205|329207|329215|329216|329219|329220|331807|331811|331812|331819|331821|332306|332702|332703|334435|334437|335775|335781|335787|335789|335792|335793|335806|335809|337593|337604|337606|337618|337620|337632|337651|337656|337657|337658|337671|337673|337674|337691|337707|337727|337731|338816|338818|340402|340406|340413|340415|342445|342878|344305|344311|344313|344315|347865|347866|347868|347869|348214|349203|349413|349414|349418|349419|349422|350422|350425|359994|364593|366321|366901|368205|372344|372357|372359|374237|374250|377189|379485|408448|438800|444873|486374|487060|491356|500765|501494|503185|503671|504122|511916|614598|614599|620134|620626|620830|620903|695499|706810|731822|735050|738219|744084|749527|752884|752888|757286|789359|791160|862586|867536|867537|867538|867539|867540|867541|867542|867543|867544|867545|867546|868113|868114|868115|868116|868117|868118|868416|868417|868418|868419|868420|868421|868422|868423|868424|868619|868684|868685|868692|868693|871792|871793|871794|871795|871796|871797|871798|871799|871800|871801|871802|871803|871804|871805|871806|871807|871808|871809|871810|871811|871812|871813|871814|871815|871816|871817|871818|873419|873420|873421|873422|873423|873424|873425|873426|873427|873428|879739|879740|879741|879742|879743|880000|880001|880002|880003|880004|880677|880703|882564|882565|882566|882567|882568|882569|883447|883448|883449|883450|883451|883452|883453|883454|883455|883456|883457|883458|883459|883460|883461|883462|883463|883464|883465|883466|883467|883468|883469|883470|883471|883472|883473|883474|883475|883476|884264|884265|884266|884267|884268|884269|884270|884271|884272|884273|884274|884275|884276|884277|884278|884279|884280|884281|884282|884283|884284|884285|884286|884287|884288|884289|884290|884291|884292|884293|884294|884295|884296|884297|884298|884299|884300|884301|884302|884303|884304|884305|884306|884307|884308|884309|884310|884311|884312|884313|884314|884315|884316|884317|884318|884319|884320|884321|884322|884323|884324|884325|884326|884327|884328|884329|884330|884331|884332|884333|884334|884335|884336|884337|884338|884339|884340|884341|884342|884343|884344|884345|884346|887243|887244|887325|887326|889341|889342|889343|889344|889345|889346|889347|889348|889349|889350|889351|893111|893112|894082|894083|894084|894515|894516|894517|894518|894519|894595|894596|894597|896117|897009|897010|897011|897012|897013|897014|897015|897016|897017|897018|897019|897020|897021|897022|897023|897024|897025|897026|897027|918497|969137", + "upstreamId": "16633|21926|21927|21928|21929|24093|29095|48741|101651|134558|135131|135132|135134|135135|135136|135137|135138|135139|135141|135142|135143|135144|135145|135146|135147|135148|135149|141102|141103|141104|141105|142139|142140|142143|142146|142148|142156|142157|142158|142160|142161|142162|142164|142176|142177|142178|142179|142182|142183|142185|142186|142187|142188|142189|142190|142191|142192|142193|142194|142195|142196|142197|142200|142201|142202|142204|142205|142207|142210|142270|188131|208193|210613|210616|210617|210618|210619|210741|210796|210803|210805|210807|211015|211149|211155|211156|211157|211166|211170|211499|211501|211505|211507|211515|211515|211536|211537|211538|211541|211544|211554|211555|211559|211564|211664|211667|211671|211674|211675|211676|211677|211687|211690|211691|211692|211693|211864|211866|211906|211908|211925|246907|267035|274971|276891|276895|276896|276901|277177|277178|277185|277188|277868|277871|277872|277873|277890|277896|277920|277930|277931|277939|277942|277953|277960|277973|277987|284146|284148|284149|284167|284909|284911|284912|284913|284926|285460|285461|285462|285470|285471|285475|285478|285479|285480|285483|285484|286125|286127|286135|286147|286154|286156|286160|286161|286162|286166|286169|286170|286171|286177|286179|286181|286185|286188|286189|286832|286835|286843|286845|286846|286850|287226|287235|287236|287237|287239|287244|287247|288485|288497|288500|288518|288521|288522|288523|288823|288824|288825|288857|288861|288864|288869|288875|288896|288897|288898|288906|291994|291996|292006|292014|295351|295352|295356|295361|295363|295371|295372|295373|295381|295585|295586|295589|295647|295653|297291|297431|297433|297435|297438|297950|300102|300108|301235|301237|301238|301239|301248|301249|301255|301256|301301|301496|301511|301513|303478|303479|303494|303495|303685|303686|303687|304216|304369|304378|304379|304386|304387|304389|304396|304408|304425|304446|304450|304530|304535|304546|304695|309013|309018|309023|309028|309031|309033|309037|309120|309122|309125|309126|309127|309128|309131|309132|309133|309134|313196|313198|313199|313200|313202|313203|313214|313216|314319|314894|314895|314907|314908|314921|314922|314925|314927|319341|319342|319345|319347|320420|320421|320422|320426|320427|320433|320435|320437|320898|320904|320906|321681|321682|321691|321693|321700|321701|321702|321709|321712|321713|321716|321719|321722|321729|322455|322457|325485|325493|325495|325496|325498|326413|326416|326422|326424|326425|326970|327777|327781|327783|327793|327802|327803|327807|328025|328026|328866|328867|328868|328884|328888|328891|328894|329170|329177|329178|329180|329181|329185|329205|329207|329215|329216|329219|329220|331807|331811|331812|331819|331821|332306|332702|332703|334435|334437|335775|335781|335787|335789|335792|335793|335806|335809|337593|337604|337606|337618|337620|337632|337651|337656|337657|337658|337671|337673|337674|337691|337707|337727|337731|338816|338818|340402|340406|340413|340415|342445|342878|344305|344311|344313|344315|347865|347866|347868|347869|348214|349203|349413|349414|349418|349419|349422|350422|350425|359994|364593|366321|366901|368205|372344|372357|372359|374237|374250|377189|379485|408448|438800|444873|486374|487060|491356|500765|501494|503185|503671|504122|511916|614598|614599|620134|620626|620830|620903|695499|706810|731822|735050|738219|744084|749527|752884|752888|757286|789359|791160|862586|867536|867537|867538|867539|867540|867541|867542|867543|867544|867545|867546|868113|868114|868115|868116|868117|868118|868416|868417|868418|868419|868420|868421|868422|868423|868424|868619|868684|868685|868692|868693|871792|871793|871794|871795|871796|871797|871798|871799|871800|871801|871802|871803|871804|871805|871806|871807|871808|871809|871810|871811|871812|871813|871814|871815|871816|871817|871818|873419|873420|873421|873422|873423|873424|873425|873426|873427|873428|879739|879740|879741|879742|879743|880000|880001|880002|880003|880004|880677|880703|882564|882565|882566|882567|882568|882569|883447|883448|883449|883450|883451|883452|883453|883454|883455|883456|883457|883458|883459|883460|883461|883462|883463|883464|883465|883466|883467|883468|883469|883470|883471|883472|883473|883474|883475|883476|884264|884265|884266|884267|884268|884269|884270|884271|884272|884273|884274|884275|884276|884277|884278|884279|884280|884281|884282|884283|884284|884285|884286|884287|884288|884289|884290|884291|884292|884293|884294|884295|884296|884297|884298|884299|884300|884301|884302|884303|884304|884305|884306|884307|884308|884309|884310|884311|884312|884313|884314|884315|884316|884317|884318|884319|884320|884321|884322|884323|884324|884325|884326|884327|884328|884329|884330|884331|884332|884333|884334|884335|884336|884337|884338|884339|884340|884341|884342|884343|884344|884345|884346|887243|887244|887325|887326|889341|889342|889343|889344|889345|889346|889347|889348|889349|889350|889351|893111|893112|894082|894083|894084|894515|894516|894517|894518|894519|894595|894596|894597|896117|897009|897010|897011|897012|897013|897014|897015|897016|897017|897018|897019|897020|897021|897022|897023|897024|897025|897026|897027|918497|969137", "text": "Mitochondrial complex I deficiency, nuclear type 1" }, { - "baseId": "16635|16636|103778|103781|103782|103783|103796|257201|257202|257203|257204|257205|257206|257207|334185|334186|334188|334189|334191|334193|334195|334198|334214|334216|334220|334221|334222|334223|334227|334230|344064|344067|344068|344070|344074|344075|344078|344080|344082|344094|344095|344106|344107|344113|344117|344123|344127|344141|349306|349309|349313|349314|349318|349321|349322|349325|349326|349328|349329|349332|349333|349336|349337|349340|350304|350309|350312|350313|350314|350315|350318|350321|350323|350324|350326|350328|350331|350333|350334|350335|390434|410711|434676|438122|446183|468174|469263|469271|470234|470766|470770|470779|471282|471283|471286|486231|486232|495545|513478|514301|514302|514304|532491|532829|533367|533376|533378|533385|533387|533404|533406|533408|533443|533444|533446|533448|533880|533881|533895|533900|533902|533911|533914|533918|533919|533923|533933|533935|533943|571070|571071|571072|571076|571077|571081|571087|572714|572788|572790|572794|572797|572800|573401|573405|573410|573412|575048|575049|575050|575051|575052|575053|575054|575055|590803|613150|619929|620646|648447|648448|648449|648450|648451|648452|648453|648454|648455|648456|648457|648458|648459|648460|648461|648462|648463|648464|648465|648466|648467|648468|648469|648470|648471|648472|648473|648474|648475|648476|648477|648478|648479|648480|648481|648482|648483|648484|648485|648486|648487|652954|652963|652965|653585|716670|728391|728392|728395|728396|742106|742108|742109|742110|757240|757245|772887|772888|772894|772896|772900|776907|800152|800153|800154|800155|800156|821287|821288|821289|821290|848042|848043|848044|848045|848046|848047|848048|848049|848050|848051|848052|848053|848054|848055|848056|848057|848058|848059|848060|848061|848062|848063|848064|848065|848066|848067|848068|848069|848070|848071|848072|848073|848074|848075|848076|848077|860603|882420|882421|882422|882423|882424|882425|882426|882427|882428|882429|882430|882431|882432|882433|882434|882435|882436|882437|882438|882439|882440|882441|882442|882443|882444|882445|929104|929105|929106|929107|929108|929109|929110|929111|929112|929113|938844|938845|938846|938847|938848|938849|938850|938851|941246|950912|950913|950914|950915|950916|950917|950918|950919|950920|958729|958730|958731|958732|958733|958734|958735|958736|958737|961370|975895|982197|982198|982199|982200|982201|982202", + "upstreamId": "16635|16636|103778|103781|103782|103783|103796|257201|257202|257203|257204|257205|257206|257207|334185|334186|334188|334189|334191|334193|334195|334198|334214|334216|334220|334221|334222|334223|334227|334230|344064|344067|344068|344070|344074|344075|344078|344080|344082|344094|344095|344106|344107|344113|344117|344123|344127|344141|349306|349309|349313|349314|349318|349321|349322|349325|349326|349328|349329|349332|349333|349336|349337|349340|350304|350309|350312|350313|350314|350315|350318|350321|350323|350324|350326|350328|350331|350333|350334|350335|390434|410711|434676|438122|446183|468174|469263|469271|470234|470766|470770|470779|471282|471283|471286|486231|486232|495545|513478|514301|514302|514304|532491|532829|533367|533376|533378|533385|533387|533404|533406|533408|533443|533444|533446|533448|533880|533881|533895|533900|533902|533911|533914|533918|533919|533923|533933|533935|533943|571070|571071|571072|571076|571077|571081|571087|572714|572788|572790|572794|572797|572800|573401|573405|573410|573412|575048|575049|575050|575051|575052|575053|575054|575055|590803|613150|619929|620646|648447|648448|648449|648450|648451|648452|648453|648454|648455|648456|648457|648458|648459|648460|648461|648462|648463|648464|648465|648466|648467|648468|648469|648470|648471|648472|648473|648474|648475|648476|648477|648478|648479|648480|648481|648482|648483|648484|648485|648486|648487|652954|652963|652965|653585|716670|728391|728392|728395|728396|742106|742108|742109|742110|757240|757245|772887|772888|772894|772896|772900|776907|800152|800153|800154|800155|800156|821287|821288|821289|821290|848042|848043|848044|848045|848046|848047|848048|848049|848050|848051|848052|848053|848054|848055|848056|848057|848058|848059|848060|848061|848062|848063|848064|848065|848066|848067|848068|848069|848070|848071|848072|848073|848074|848075|848076|848077|860603|882420|882421|882422|882423|882424|882425|882426|882427|882428|882429|882430|882431|882432|882433|882434|882435|882436|882437|882438|882439|882440|882441|882442|882443|882444|882445|929104|929105|929106|929107|929108|929109|929110|929111|929112|929113|938844|938845|938846|938847|938848|938849|938850|938851|941246|950912|950913|950914|950915|950916|950917|950918|950919|950920|958729|958730|958731|958732|958733|958734|958735|958736|958737|961370|975895|982197|982198|982199|982200|982201|982202", "text": "Familial cold autoinflammatory syndrome 2" }, { - "baseId": "16637|16638|400211", + "upstreamId": "16637|16638|400211", "text": "Fanconi anemia, complementation group M" }, { - "baseId": "16639|16640|16641|39751|404967|413892|413893|798457", + "upstreamId": "16639|16640|16641|39751|404967|413892|413893|798457", "text": "Ectodermal dysplasia-syndactyly syndrome 1" }, { - "baseId": "16642|16643", + "upstreamId": "16642|16643", "text": "Palmoplantar hyperkeratosis with squamous cell carcinoma of skin and 46,XX sex reversal" }, { - "baseId": "16644", + "upstreamId": "16644", "text": "Palmoplantar hyperkeratosis and true hermaphroditism" }, { - "baseId": "16645|226288|226289|904120|904121", + "upstreamId": "16645|226288|226289|904120|904121", "text": "Sideroblastic anemia 3, pyridoxine-refractory" }, { - "baseId": "16646|16647|16648|16649|16650|16651|39750|169067|169069|196332|208099|208101|208103|376074|429562|429563|429566|429571|429573|550016|566489|566490|568081|568089|568936|572810|642483|714142|714143|725677|739217|769815|820624|841537|841538|841539|841540|861133|861139|919528|927092|957229|961416|961873", + "upstreamId": "16646|16647|16648|16649|16650|16651|39750|169067|169069|196332|208099|208101|208103|376074|429562|429563|429566|429571|429573|550016|566489|566490|568081|568089|568936|572810|642483|714142|714143|725677|739217|769815|820624|841537|841538|841539|841540|861133|861139|919528|927092|957229|961416|961873", "text": "L-2-hydroxyglutaric aciduria" }, { - "baseId": "16652|16653|16654|16657|16658|132701|189014|191253|191701|191820|192130|192460|192461|192463|193056|194460|194461|195373|215088|252364|252365|252366|252367|252369|252370|252371|252372|266149|266328|266570|267180|268589|273625|274980|300205|300211|300218|300220|300221|300223|300227|300229|300232|300233|300237|302974|302976|302979|302981|302984|302987|302993|307411|307414|307416|307419|307421|307432|307435|307438|307441|307443|307444|307445|307449|307451|307617|307618|307620|307623|307624|307625|307631|307632|307641|307647|307649|307658|307659|307662|307667|307669|307671|307672|307674|406874|488849|578450|588076|590361|590362|590443|590446|590447|590448|590516|590517|612275|612276|620231|620788|722043|735674|750083|765699|788801|789167|790634|816463|896320|896321|896322|896323|896324|896325|896326|896327|896328|896329|896330|896331|896332|896333|896334|896335|896336|896337|896338|896339|896340|896341|896342|896343|896344|896345|896346|896347|896348|896349|896350|896351|896352|896353|896354|896355|896356|896357|896358|900231|900232|917756|959504|973024", + "upstreamId": "16652|16653|16654|16657|16658|132701|189014|191253|191701|191820|192130|192460|192461|192463|193056|194460|194461|195373|215088|252364|252365|252366|252367|252369|252370|252371|252372|266149|266328|266570|267180|268589|273625|274980|300205|300211|300218|300220|300221|300223|300227|300229|300232|300233|300237|302974|302976|302979|302981|302984|302987|302993|307411|307414|307416|307419|307421|307432|307435|307438|307441|307443|307444|307445|307449|307451|307617|307618|307620|307623|307624|307625|307631|307632|307641|307647|307649|307658|307659|307662|307667|307669|307671|307672|307674|406874|488849|578450|588076|590361|590362|590443|590446|590447|590448|590516|590517|612275|612276|620231|620788|722043|735674|750083|765699|788801|789167|790634|816463|896320|896321|896322|896323|896324|896325|896326|896327|896328|896329|896330|896331|896332|896333|896334|896335|896336|896337|896338|896339|896340|896341|896342|896343|896344|896345|896346|896347|896348|896349|896350|896351|896352|896353|896354|896355|896356|896357|896358|900231|900232|917756|959504|973024", "text": "Three M syndrome 1" }, { - "baseId": "16655", + "upstreamId": "16655", "text": "Yakut short stature syndrome" }, { - "baseId": "16660|16661|16662|16663|16665|16667|16670|16671|16672|16673|33864|33865|33866|33867|33868|33869|33870|33871|33873|33874|33875|33876|33877|38417|98180|98181|98184|98185|98187|98188|98189|98190|98191|98192|98193|98194|98197|98198|98199|98200|98201|98203|98204|139964|177029|177030|177160|177292|177423|177424|177462|177465|178720|186983|186984|186985|186986|190705|190949|191476|191478|191479|191480|192609|195844|196140|200317|200318|200320|200321|200322|200323|200324|200325|200326|200327|200329|200330|200331|200332|200333|200334|200335|200336|200338|200339|200340|200341|200342|200343|217195|236943|236994|256363|256364|256367|256371|256372|265279|267159|267165|270089|271751|275400|287268|329729|329730|329732|329733|339994|339997|340008|340011|340017|340019|345706|345709|345710|345717|345719|345720|347105|347106|347107|347109|347111|358459|358460|358461|358462|358463|358464|358465|358466|358467|358468|358469|358470|358471|358472|358473|358474|358475|358476|358477|358478|358479|358480|358481|358482|360274|360329|361026|363795|375681|376557|376645|376650|376656|378747|378754|378757|404834|410235|410237|410240|415585|415586|415587|422195|422196|426249|426251|433278|433279|433282|433283|433284|433285|433286|433288|445883|445885|445886|467439|467441|467445|467448|467450|468310|468313|468315|468773|468777|468790|468802|468805|468807|468808|468817|469011|469013|469030|469033|469035|469036|469043|469048|469050|487774|492737|506361|506374|506378|506383|507134|513140|531740|531744|531746|531750|531752|531808|531814|531816|531822|531823|531857|531871|531876|532100|532102|532119|532121|532126|548226|548228|548229|548234|548236|548238|548241|548246|548247|548248|548250|548255|548258|548266|548267|548269|548272|548277|548280|548281|548283|548292|548293|548296|548297|548298|548300|548301|548302|548305|548306|548307|548308|548309|548310|548312|548313|548315|548317|548319|548320|548321|548323|548325|548330|548332|548334|548336|548339|548341|548343|548345|548347|548349|548352|548585|548608|548609|548616|548617|548627|548628|548633|548636|548637|548641|548642|548644|548652|548661|548662|548664|548673|548677|548679|548686|548693|548696|548706|548712|548713|548715|549008|549009|549012|549018|549019|549021|549022|549024|549025|549033|549037|549041|549056|549063|549071|549074|549075|549076|549078|549082|549087|549096|549100|569696|569701|569704|569705|571574|571578|572201|572212|572214|572216|572218|572219|572225|572227|572229|572234|574610|583285|586672|610100|610101|610102|610103|610105|610107|610111|610112|612358|620054|620055|646644|646645|646646|646647|646648|646649|646650|646651|646652|646653|646654|646655|646656|646657|646658|646659|646660|646661|652841|653025|653029|653362|653499|653502|653503|653505|694178|694179|694180|694181|694182|695771|704336|715663|715664|740997|756105|756106|756107|760652|771786|771788|771791|776392|776725|785722|785723|785724|785725|785726|791823|791824|798724|800061|800062|800063|800064|800065|800066|800067|800068|800069|800070|816489|846140|846141|846142|846143|846144|846145|846146|846147|846148|846149|846150|846151|846152|846153|846154|846155|846156|846157|846158|846159|846160|846161|846162|846163|846164|857327|857328|857329|878326|878327|878328|878329|878330|878331|878332|878333|878334|878335|878336|880571|920504|921034|921035|921036|921037|921038|921039|921040|921041|921042|921043|921044|921045|921046|921047|921048|921049|921050|921051|921052|921053|921054|921055|921056|921057|921058|921059|921060|921061|921062|921063|921064|921065|921066|921067|921068|921069|921070|921071|921072|921073|921074|921075|921076|921077|921078|921079|921080|921081|921082|921083|921084|921085|921086|921087|921088|921089|921090|921091|921092|921093|921094|921095|921096|921097|921098|921099|921100|921101|921102|921103|921104|921105|921106|921107|921108|921109|921110|921111|921112|921113|921114|921115|921116|921117|921118|921119|921120|921121|921122|921123|921124|921125|921126|921127|921128|921129|921130|921131|921132|921133|921134|921135|921136|921137|921138|921139|921140|921141|921142|921143|921144|921145|921146|921147|921148|921149|921150|921151|921152|921153|921154|921155|921156|921157|921158|921159|921160|921161|921162|921163|921164|921165|921166|921167|921168|921169|921170|921171|921172|921173|921174|921175|921176|921177|921178|921179|921180|921181|921182|921183|921184|921185|921186|921187|921188|921189|921190|921191|921192|921193|928522|928523|938206|938207|938208|938209|938210|938211|940435|940436|940437|950262|950263|950264|950265|950266|950267|950268|950269|950270|958290|958291|958292|960241|960242|960897|960898|979914|979915|979916|979917|982124|982125|982126|982127|982128|982129|982130", + "upstreamId": "16660|16661|16662|16663|16665|16667|16670|16671|16672|16673|33864|33865|33866|33867|33868|33869|33870|33871|33873|33874|33875|33876|33877|38417|98180|98181|98184|98185|98187|98188|98189|98190|98191|98192|98193|98194|98197|98198|98199|98200|98201|98203|98204|139964|177029|177030|177160|177292|177423|177424|177462|177465|178720|186983|186984|186985|186986|190705|190949|191476|191478|191479|191480|192609|195844|196140|200317|200318|200320|200321|200322|200323|200324|200325|200326|200327|200329|200330|200331|200332|200333|200334|200335|200336|200338|200339|200340|200341|200342|200343|217195|236943|236994|256363|256364|256367|256371|256372|265279|267159|267165|270089|271751|275400|287268|329729|329730|329732|329733|339994|339997|340008|340011|340017|340019|345706|345709|345710|345717|345719|345720|347105|347106|347107|347109|347111|358459|358460|358461|358462|358463|358464|358465|358466|358467|358468|358469|358470|358471|358472|358473|358474|358475|358476|358477|358478|358479|358480|358481|358482|360274|360329|361026|363795|375681|376557|376645|376650|376656|378747|378754|378757|404834|410235|410237|410240|415585|415586|415587|422195|422196|426249|426251|433278|433279|433282|433283|433284|433285|433286|433288|445883|445885|445886|467439|467441|467445|467448|467450|468310|468313|468315|468773|468777|468790|468802|468805|468807|468808|468817|469011|469013|469030|469033|469035|469036|469043|469048|469050|487774|492737|506361|506374|506378|506383|507134|513140|531740|531744|531746|531750|531752|531808|531814|531816|531822|531823|531857|531871|531876|532100|532102|532119|532121|532126|548226|548228|548229|548234|548236|548238|548241|548246|548247|548248|548250|548255|548258|548266|548267|548269|548272|548277|548280|548281|548283|548292|548293|548296|548297|548298|548300|548301|548302|548305|548306|548307|548308|548309|548310|548312|548313|548315|548317|548319|548320|548321|548323|548325|548330|548332|548334|548336|548339|548341|548343|548345|548347|548349|548352|548585|548608|548609|548616|548617|548627|548628|548633|548636|548637|548641|548642|548644|548652|548661|548662|548664|548673|548677|548679|548686|548693|548696|548706|548712|548713|548715|549008|549009|549012|549018|549019|549021|549022|549024|549025|549033|549037|549041|549056|549063|549071|549074|549075|549076|549078|549082|549087|549096|549100|569696|569701|569704|569705|571574|571578|572201|572212|572214|572216|572218|572219|572225|572227|572229|572234|574610|583285|586672|610100|610101|610102|610103|610105|610107|610111|610112|612358|620054|620055|646644|646645|646646|646647|646648|646649|646650|646651|646652|646653|646654|646655|646656|646657|646658|646659|646660|646661|652841|653025|653029|653362|653499|653502|653503|653505|694178|694179|694180|694181|694182|695771|704336|715663|715664|740997|756105|756106|756107|760652|771786|771788|771791|776392|776725|785722|785723|785724|785725|785726|791823|791824|798724|800061|800062|800063|800064|800065|800066|800067|800068|800069|800070|816489|846140|846141|846142|846143|846144|846145|846146|846147|846148|846149|846150|846151|846152|846153|846154|846155|846156|846157|846158|846159|846160|846161|846162|846163|846164|857327|857328|857329|878326|878327|878328|878329|878330|878331|878332|878333|878334|878335|878336|880571|920504|921034|921035|921036|921037|921038|921039|921040|921041|921042|921043|921044|921045|921046|921047|921048|921049|921050|921051|921052|921053|921054|921055|921056|921057|921058|921059|921060|921061|921062|921063|921064|921065|921066|921067|921068|921069|921070|921071|921072|921073|921074|921075|921076|921077|921078|921079|921080|921081|921082|921083|921084|921085|921086|921087|921088|921089|921090|921091|921092|921093|921094|921095|921096|921097|921098|921099|921100|921101|921102|921103|921104|921105|921106|921107|921108|921109|921110|921111|921112|921113|921114|921115|921116|921117|921118|921119|921120|921121|921122|921123|921124|921125|921126|921127|921128|921129|921130|921131|921132|921133|921134|921135|921136|921137|921138|921139|921140|921141|921142|921143|921144|921145|921146|921147|921148|921149|921150|921151|921152|921153|921154|921155|921156|921157|921158|921159|921160|921161|921162|921163|921164|921165|921166|921167|921168|921169|921170|921171|921172|921173|921174|921175|921176|921177|921178|921179|921180|921181|921182|921183|921184|921185|921186|921187|921188|921189|921190|921191|921192|921193|928522|928523|938206|938207|938208|938209|938210|938211|940435|940436|940437|950262|950263|950264|950265|950266|950267|950268|950269|950270|958290|958291|958292|960241|960242|960897|960898|979914|979915|979916|979917|982124|982125|982126|982127|982128|982129|982130", "text": "Very long chain acyl-CoA dehydrogenase deficiency" }, { - "baseId": "16673|20938|23992|27992|187120|200340|208349|361026|512449|539122|539137|539161|792691|801182", + "upstreamId": "16673|20938|23992|27992|187120|200340|208349|361026|512449|539122|539137|539161|792691|801182", "text": "Rhabdomyolysis" }, { - "baseId": "16673|801182", + "upstreamId": "16673|801182", "text": "Abnormality of circulating enzyme level" }, { - "baseId": "16675|16676|16677|16678|16679|16680|16681|16682|16683|186955|186956|186957|186958|186959|186960|260160|260161|264755|267970|327649|327655|327659|327661|327665|327671|327676|327677|327678|327682|327683|327687|327702|337460|337461|337468|337470|337471|337473|337476|337480|343715|343717|343719|343721|343726|343728|343732|343733|343734|343738|345177|345178|345179|345180|345183|345185|345186|345201|345204|345207|358393|358394|358395|358396|358397|358398|358399|358400|358401|358402|358403|358404|358405|358406|358407|358408|358409|358410|431883|431884|431885|487670|487677|487679|513368|547979|547988|547995|548003|548007|548011|548016|548024|548026|548031|548033|548038|548039|548276|548282|548287|548288|548290|548291|548755|548758|548760|548761|548763|548764|548769|578538|610422|612318|620576|740643|740644|755701|771310|771311|771312|771315|785484|791687|792803|804830|876996|876997|876998|876999|877000|877001|877002|877003|877004|877005|877006|877007|877008|877009|877010|877011|877012|877013|877014|877015|877016|877017|877018|877019|877020|877021|880487|965860|972262|972263|972264|972265|972266|972267|972268|972269|979886", + "upstreamId": "16675|16676|16677|16678|16679|16680|16681|16682|16683|186955|186956|186957|186958|186959|186960|260160|260161|264755|267970|327649|327655|327659|327661|327665|327671|327676|327677|327678|327682|327683|327687|327702|337460|337461|337468|337470|337471|337473|337476|337480|343715|343717|343719|343721|343726|343728|343732|343733|343734|343738|345177|345178|345179|345180|345183|345185|345186|345201|345204|345207|358393|358394|358395|358396|358397|358398|358399|358400|358401|358402|358403|358404|358405|358406|358407|358408|358409|358410|431883|431884|431885|487670|487677|487679|513368|547979|547988|547995|548003|548007|548011|548016|548024|548026|548031|548033|548038|548039|548276|548282|548287|548288|548290|548291|548755|548758|548760|548761|548763|548764|548769|578538|610422|612318|620576|740643|740644|755701|771310|771311|771312|771315|785484|791687|792803|804830|876996|876997|876998|876999|877000|877001|877002|877003|877004|877005|877006|877007|877008|877009|877010|877011|877012|877013|877014|877015|877016|877017|877018|877019|877020|877021|880487|965860|972262|972263|972264|972265|972266|972267|972268|972269|979886", "text": "Sj\u00f6gren-Larsson syndrome" }, { - "baseId": "16684|16685|16686|16687|16688|16689|16690|40310|40311|227322|305387|305388|305390|305391|305393|305399|305402|309195|309198|309216|309220|309232|309234|309242|314476|314484|314490|314497|314498|314510|314524|314525|314557|314564|314568|314585|353839|413775|421679|438390|438391|441237|457855|457864|458508|458514|458918|511756|523898|523907|524172|562420|562422|565135|565139|567930|637218|637219|651971|651978|679760|679957|687293|798600|798601|805577|834768|834769|834770|899632|899633|899634|899635|899636|899637|899638|899639|899640|899641|899642|899643|899644|919156|920255|925204|946075|955415|960653|964667", + "upstreamId": "16684|16685|16686|16687|16688|16689|16690|40310|40311|227322|305387|305388|305390|305391|305393|305399|305402|309195|309198|309216|309220|309232|309234|309242|314476|314484|314490|314497|314498|314510|314524|314525|314557|314564|314568|314585|353839|413775|421679|438390|438391|441237|457855|457864|458508|458514|458918|511756|523898|523907|524172|562420|562422|565135|565139|567930|637218|637219|651971|651978|679760|679957|687293|798600|798601|805577|834768|834769|834770|899632|899633|899634|899635|899636|899637|899638|899639|899640|899641|899642|899643|899644|919156|920255|925204|946075|955415|960653|964667", "text": "Torsion dystonia 6" }, { - "baseId": "16691|16692|16693|16694|34357|34358|34359|34359|44141|103891|103892|103893|251291|251291|291683|291688|291692|291692|291700|291703|291704|293021|293023|293023|293025|293025|293028|293029|293042|293046|296287|296308|296310|296311|296342|296355|296355|296357|296364|296365|559682|691486|691486|695217|709053|720645|828574|859301|889721|889722|889723|889724|889725|889726|889727|889728|889729|889730|889731|889732|889733|889734|889735|889736|889737|891709|923359", + "upstreamId": "16691|16692|16693|16694|34357|34358|34359|34359|44141|103891|103892|103893|251291|251291|291683|291688|291692|291692|291700|291703|291704|293021|293023|293023|293025|293025|293028|293029|293042|293046|296287|296308|296310|296311|296342|296355|296355|296357|296364|296365|559682|691486|691486|695217|709053|720645|828574|859301|889721|889722|889723|889724|889725|889726|889727|889728|889729|889730|889731|889732|889733|889734|889735|889736|889737|891709|923359", "text": "Frontotemporal dementia, chromosome 3-linked" }, { - "baseId": "16695|268646|431738|481856|513993|513994|551560|590286|609733|799591|919227", + "upstreamId": "16695|268646|431738|481856|513993|513994|551560|590286|609733|799591|919227", "text": "Retinitis pigmentosa 31" }, { - "baseId": "16697|16708|17173|264701|318161|318162|318163|318167|326143|326148|326151|326165|332322|332326|332328|332329|332331|333912|333913|333932|333933|333936|372536|513614|620448|760040|791268|870232|870233|870234|870235|870236|870237|870238|870239|870240|870241|870242|870243|870244|870245|870246", + "upstreamId": "16697|16708|17173|264701|318161|318162|318163|318167|326143|326148|326151|326165|332322|332326|332328|332329|332331|333912|333913|333932|333933|333936|372536|513614|620448|760040|791268|870232|870233|870234|870235|870236|870237|870238|870239|870240|870241|870242|870243|870244|870245|870246", "text": "Vitamin D-dependent rickets, type 1" }, { - "baseId": "16697|16698|16699|16700|16701|16702|16703|16704|16705|16706|16707|16708|16709|16710|16711|16712|16713", + "upstreamId": "16697|16698|16699|16700|16701|16702|16703|16704|16705|16706|16707|16708|16709|16710|16711|16712|16713", "text": "Vitamin D-dependent rickets type 1A" }, { - "baseId": "16714|16715|16716|16717|16718|16719|16720|16721|16722|101218|101219|291847|291851|291853|291854|291855|291862|291864|291868|291877|291879|293216|293217|293221|293222|293223|293238|293239|293240|293242|293257|293259|293266|293269|293275|296532|296533|296534|296536|296539|296540|296563|296575|296580|296587|296590|296592|296593|296594|439302|452826|453189|513265|519686|519688|519945|576109|581872|620769|621166|631846|631847|709098|709099|709100|709101|774868|779080|819435|828645|828646|851582|889818|889819|889820|889821|889822|889823|889824|889825|889826|889827|889828|889829|889830|889831|889832|889833|889834|891722|891723|891724|916921|932108|932109|963560|973009", + "upstreamId": "16714|16715|16716|16717|16718|16719|16720|16721|16722|101218|101219|291847|291851|291853|291854|291855|291862|291864|291868|291877|291879|293216|293217|293221|293222|293223|293238|293239|293240|293242|293257|293259|293266|293269|293275|296532|296533|296534|296536|296539|296540|296563|296575|296580|296587|296590|296592|296593|296594|439302|452826|453189|513265|519686|519688|519945|576109|581872|620769|621166|631846|631847|709098|709099|709100|709101|774868|779080|819435|828645|828646|851582|889818|889819|889820|889821|889822|889823|889824|889825|889826|889827|889828|889829|889830|889831|889832|889833|889834|891722|891723|891724|916921|932108|932109|963560|973009", "text": "Beta-D-mannosidosis" }, { - "baseId": "16723|16724|16725|16726|16727|34059|34060|34061|34062|99114|99117|99121|99122|99124|99125|135030|187033|187034|192626|193442|194844|194845|204485|204486|204487|204488|204489|204490|204491|204492|204493|204494|204495|204496|204497|204498|204499|204500|204501|204502|204503|204504|204505|204506|204507|204508|204509|204510|204511|204512|204513|204514|204515|204516|204517|204518|204519|204520|215562|237252|237427|265389|270901|271823|274266|332610|332611|332618|332625|332627|332629|332630|332631|332636|332638|332640|332643|332646|332649|342815|342816|342819|342824|342825|342838|342841|348129|348130|348131|348138|348141|348144|348147|348148|348149|348152|349376|349379|349380|349383|349384|349387|349388|358566|358567|358568|358569|358570|358571|358572|358573|358574|358575|358576|358577|358578|358579|358580|358581|358582|358583|358584|358585|410474|426282|433679|446031|446032|469809|470446|512381|532700|532716|538483|548669|548672|548675|548678|548683|548684|548685|548687|548688|548689|548690|548691|548692|548694|548695|548697|548699|548700|549043|549044|549046|549050|549052|549064|549065|549067|549069|549322|549323|549324|549325|549326|549327|549328|549329|549330|549783|549785|549787|550635|572910|572918|578563|612329|620627|620628|621629|647696|647697|647698|647699|647700|647701|647702|652941|653146|653490|653597|653598|653896|716169|716170|716171|716172|716173|716174|716175|716176|716177|727902|727903|727904|727905|727906|727907|731244|731245|741578|741579|741580|741581|741582|741583|741584|745215|756710|756711|756712|756713|756714|756715|756716|760797|760801|772397|772398|772399|772400|772403|772405|772408|772409|772410|772411|772414|776557|776664|776667|776669|776843|776844|786054|786055|786056|786058|786061|788250|800621|801736|847279|847280|847281|847282|847283|847284|847285|847286|847287|847288|847289|847290|847291|847292|852853|879946|879947|879948|879949|879950|879951|879952|879953|879954|879955|879956|879957|879958|879959|879960|879961|879962|879963|879964|879965|879966|879967|879968|879969|880693|880694|880695|880696|880697|880698|928841|928842|928843|928844|928845|928846|928847|928848|928849|938576|938577|938578|940470|950670|950671|958533|958534|958535|958536|958537|961888|963304|963870|965867|972307|972308|972309|972310|972311|972312|972313|972314|972315|972316|972317|972318|972319|972320|972321|972322|972323|972324|972325|972326|979962|979963|979964|979965|979966|979967|979968|979969|979970", + "upstreamId": "16723|16724|16725|16726|16727|34059|34060|34061|34062|99114|99117|99121|99122|99124|99125|135030|187033|187034|192626|193442|194844|194845|204485|204486|204487|204488|204489|204490|204491|204492|204493|204494|204495|204496|204497|204498|204499|204500|204501|204502|204503|204504|204505|204506|204507|204508|204509|204510|204511|204512|204513|204514|204515|204516|204517|204518|204519|204520|215562|237252|237427|265389|270901|271823|274266|332610|332611|332618|332625|332627|332629|332630|332631|332636|332638|332640|332643|332646|332649|342815|342816|342819|342824|342825|342838|342841|348129|348130|348131|348138|348141|348144|348147|348148|348149|348152|349376|349379|349380|349383|349384|349387|349388|358566|358567|358568|358569|358570|358571|358572|358573|358574|358575|358576|358577|358578|358579|358580|358581|358582|358583|358584|358585|410474|426282|433679|446031|446032|469809|470446|512381|532700|532716|538483|548669|548672|548675|548678|548683|548684|548685|548687|548688|548689|548690|548691|548692|548694|548695|548697|548699|548700|549043|549044|549046|549050|549052|549064|549065|549067|549069|549322|549323|549324|549325|549326|549327|549328|549329|549330|549783|549785|549787|550635|572910|572918|578563|612329|620627|620628|621629|647696|647697|647698|647699|647700|647701|647702|652941|653146|653490|653597|653598|653896|716169|716170|716171|716172|716173|716174|716175|716176|716177|727902|727903|727904|727905|727906|727907|731244|731245|741578|741579|741580|741581|741582|741583|741584|745215|756710|756711|756712|756713|756714|756715|756716|760797|760801|772397|772398|772399|772400|772403|772405|772408|772409|772410|772411|772414|776557|776664|776667|776669|776843|776844|786054|786055|786056|786058|786061|788250|800621|801736|847279|847280|847281|847282|847283|847284|847285|847286|847287|847288|847289|847290|847291|847292|852853|879946|879947|879948|879949|879950|879951|879952|879953|879954|879955|879956|879957|879958|879959|879960|879961|879962|879963|879964|879965|879966|879967|879968|879969|880693|880694|880695|880696|880697|880698|928841|928842|928843|928844|928845|928846|928847|928848|928849|938576|938577|938578|940470|950670|950671|958533|958534|958535|958536|958537|961888|963304|963870|965867|972307|972308|972309|972310|972311|972312|972313|972314|972315|972316|972317|972318|972319|972320|972321|972322|972323|972324|972325|972326|979962|979963|979964|979965|979966|979967|979968|979969|979970", "text": "Deficiency of alpha-mannosidase" }, { - "baseId": "16728|16729|16730|16731|227693|318709|318710|318717|318719|318720|318721|318723|318725|318728|318730|318731|318733|318736|318737|327036|327046|327068|327069|327072|327073|327074|327076|327078|327080|327081|327083|327087|327088|333121|333139|333140|333141|333142|333143|333159|333166|333171|333174|333176|333180|333182|333183|333185|333187|333188|333194|333196|333201|333202|334861|334870|334871|334874|334889|334890|334894|334903|334905|334906|334917|334923|334924|334931|334932|334936|353259|620461|620853|620854|702555|738904|779576|870562|870563|870564|870565|870566|870567|870568|870569|870570|870571|870572|870573|870574|870575|870576|870577|870578|870579|870580|870581|870582|870583|870584|870585|870586|870587|870588|870589|870590|870591|870592|870593|870594|870595|870596|870597|870598|870599|870600|872296", + "upstreamId": "16728|16729|16730|16731|227693|318709|318710|318717|318719|318720|318721|318723|318725|318728|318730|318731|318733|318736|318737|327036|327046|327068|327069|327072|327073|327074|327076|327078|327080|327081|327083|327087|327088|333121|333139|333140|333141|333142|333143|333159|333166|333171|333174|333176|333180|333182|333183|333185|333187|333188|333194|333196|333201|333202|334861|334870|334871|334874|334889|334890|334894|334903|334905|334906|334917|334923|334924|334931|334932|334936|353259|620461|620853|620854|702555|738904|779576|870562|870563|870564|870565|870566|870567|870568|870569|870570|870571|870572|870573|870574|870575|870576|870577|870578|870579|870580|870581|870582|870583|870584|870585|870586|870587|870588|870589|870590|870591|870592|870593|870594|870595|870596|870597|870598|870599|870600|872296", "text": "Histidinemia" }, { - "baseId": "16732", + "upstreamId": "16732", "text": "Hurthle cell carcinoma of thyroid" }, { - "baseId": "16733|16734|16735|16736|229480|299946|299948|299957|299961|299968|299969|299974|299979|299989|300015|300018|302621|302623|302631|302635|302636|302640|302641|302644|302645|302647|302662|302686|302693|302699|306993|306995|306997|307002|307006|307007|307020|307047|307049|307257|307265|307269|307284|307310|307320|362595|389224|553258|578448|735641|895878|895879|895880|895881|895882|895883|895884|895885|895886|895887|895888|895889|895890|895891|895892|895893|895894|895895|895896|895897|895898|895899|895900|895901|895902|895903", + "upstreamId": "16733|16734|16735|16736|229480|299946|299948|299957|299961|299968|299969|299974|299979|299989|300015|300018|302621|302623|302631|302635|302636|302640|302641|302644|302645|302647|302662|302686|302693|302699|306993|306995|306997|307002|307006|307007|307020|307047|307049|307257|307265|307269|307284|307310|307320|362595|389224|553258|578448|735641|895878|895879|895880|895881|895882|895883|895884|895885|895886|895887|895888|895889|895890|895891|895892|895893|895894|895895|895896|895897|895898|895899|895900|895901|895902|895903", "text": "Deafness, autosomal recessive 67" }, { - "baseId": "16737|16738|51092|224980|224981|227233|284270|284273|284274|284282|284283|284288|284302|284314|284315|284319|284323|284324|284327|284328|284329|284331|284336|284338|284342|284345|284346|284352|284354|284359|284360|284364|284366|284367|284369|284996|285003|285005|285011|285012|285013|285014|285016|285020|285022|285023|285024|285026|285028|285032|285036|285038|285039|285040|285042|285043|285046|285047|285048|285050|286979|286984|286994|287000|287005|287006|287007|287009|287010|287015|287022|287023|287025|287029|287030|287032|287040|287041|287053|287055|287075|287080|287083|287084|287101|287110|287119|287349|287351|287352|287363|287364|287365|287369|287373|287376|287392|287396|287398|287399|287461|287466|287467|287468|287469|287475|287476|287480|287490|287492|353555|353556|620051|697274|883543|883544|883545|883546|883547|883548|883549|883550|883551|883552|883553|883554|883555|883556|883557|883558|883559|883560|883561|883562|883563|883564|883565|883566|883567|883568|883569|883570|883571|883572|883573|883574|883575|883576|883577|883578|883579|883580|883581|883582|883583|883584|883585|883586|883587|883588|883589|883590|883591|883592|887247|887248|887249|887250|887251|887252|887253|887254|887255|887256", + "upstreamId": "16737|16738|51092|224980|224981|227233|284270|284273|284274|284282|284283|284288|284302|284314|284315|284319|284323|284324|284327|284328|284329|284331|284336|284338|284342|284345|284346|284352|284354|284359|284360|284364|284366|284367|284369|284996|285003|285005|285011|285012|285013|285014|285016|285020|285022|285023|285024|285026|285028|285032|285036|285038|285039|285040|285042|285043|285046|285047|285048|285050|286979|286984|286994|287000|287005|287006|287007|287009|287010|287015|287022|287023|287025|287029|287030|287032|287040|287041|287053|287055|287075|287080|287083|287084|287101|287110|287119|287349|287351|287352|287363|287364|287365|287369|287373|287376|287392|287396|287398|287399|287461|287466|287467|287468|287469|287475|287476|287480|287490|287492|353555|353556|620051|697274|883543|883544|883545|883546|883547|883548|883549|883550|883551|883552|883553|883554|883555|883556|883557|883558|883559|883560|883561|883562|883563|883564|883565|883566|883567|883568|883569|883570|883571|883572|883573|883574|883575|883576|883577|883578|883579|883580|883581|883582|883583|883584|883585|883586|883587|883588|883589|883590|883591|883592|887247|887248|887249|887250|887251|887252|887253|887254|887255|887256", "text": "Fleck corneal dystrophy" }, { - "baseId": "16739|16740|16742|16742|16743|16744|16746|16747|16749|40257|40257|88864|152904|187986|187987|187988|187988|187989|187990|187991|187991|187992|187992|187993|187993|187994|187996|187997|187997|187999|188000|188000|188001|188002|188004|188004|188005|188006|188008|188009|188010|188011|188012|188013|188042|190720|191315|191858|191859|207742|207742|207743|209352|227716|253771|267792|273204|310393|310398|310409|310411|310413|310417|310422|310422|310424|310428|310434|310435|310437|310439|310447|310447|310450|310452|310452|310456|310457|310458|310460|315486|315487|315492|315497|315512|315513|315528|315536|315545|315546|315551|315552|315553|315553|315554|315556|315570|315571|315576|315577|315579|315580|315583|315583|315584|321486|321490|321494|321495|321506|321507|321508|321509|321511|321522|321540|321541|321541|321548|321557|321558|321563|321566|321568|321569|321576|321577|321580|321580|321586|321589|322296|322297|322298|322299|322303|322306|322307|322307|322308|322309|322317|322318|322323|322324|322326|322330|322340|322344|429066|429067|439215|444606|491919|493589|513306|545050|545054|545059|545062|545064|545066|545076|545081|545082|545084|545092|545094|545387|545389|545392|545394|545400|545403|545412|545422|545422|545427|545429|545431|545432|545433|545434|545435|545437|545446|545449|545452|545454|545459|545472|545474|545475|545477|545669|545670|545685|545688|545689|545690|545695|545698|545700|545702|545703|545704|545706|545708|545710|545723|578484|586213|589799|679828|744510|818719|836913|857676|865905|865906|865907|865908|865909|865910|865911|865912|865913|865914|865915|865916|865917|865918|865919|865920|865921|865922|865923|865924|865925|865926|865927|865928|865929|865930|865931|865932|865933|865934|865935|865936|865937|865938|865939|865941|865942|865943|865944|865945|865946|865947|865948|865949|865950|865951|865952|865953|865954|868473|868474|868475|868476|868477|963154|972077|972078|972079|972080|972081|972082|972083|972084|972085|972086|972087|972088|972089|972090|972091|972092|972093|972094|972095|972096|972097|972098", + "upstreamId": "16739|16740|16742|16742|16743|16744|16746|16747|16749|40257|40257|88864|152904|187986|187987|187988|187988|187989|187990|187991|187991|187992|187992|187993|187993|187994|187996|187997|187997|187999|188000|188000|188001|188002|188004|188004|188005|188006|188008|188009|188010|188011|188012|188013|188042|190720|191315|191858|191859|207742|207742|207743|209352|227716|253771|267792|273204|310393|310398|310409|310411|310413|310417|310422|310422|310424|310428|310434|310435|310437|310439|310447|310447|310450|310452|310452|310456|310457|310458|310460|315486|315487|315492|315497|315512|315513|315528|315536|315545|315546|315551|315552|315553|315553|315554|315556|315570|315571|315576|315577|315579|315580|315583|315583|315584|321486|321490|321494|321495|321506|321507|321508|321509|321511|321522|321540|321541|321541|321548|321557|321558|321563|321566|321568|321569|321576|321577|321580|321580|321586|321589|322296|322297|322298|322299|322303|322306|322307|322307|322308|322309|322317|322318|322323|322324|322326|322330|322340|322344|429066|429067|439215|444606|491919|493589|513306|545050|545054|545059|545062|545064|545066|545076|545081|545082|545084|545092|545094|545387|545389|545392|545394|545400|545403|545412|545422|545422|545427|545429|545431|545432|545433|545434|545435|545437|545446|545449|545452|545454|545459|545472|545474|545475|545477|545669|545670|545685|545688|545689|545690|545695|545698|545700|545702|545703|545704|545706|545708|545710|545723|578484|586213|589799|679828|744510|818719|836913|857676|865905|865906|865907|865908|865909|865910|865911|865912|865913|865914|865915|865916|865917|865918|865919|865920|865921|865922|865923|865924|865925|865926|865927|865928|865929|865930|865931|865932|865933|865934|865935|865936|865937|865938|865939|865941|865942|865943|865944|865945|865946|865947|865948|865949|865950|865951|865952|865953|865954|868473|868474|868475|868476|868477|963154|972077|972078|972079|972080|972081|972082|972083|972084|972085|972086|972087|972088|972089|972090|972091|972092|972093|972094|972095|972096|972097|972098", "text": "Cockayne syndrome B" }, { - "baseId": "16740|16742|16746|16750|40257|88864|187986|187988|187991|187992|187993|187995|187996|187997|187999|188000|188004|188006|188009|207742|209352|227716|267792|310413|310422|310447|310452|315528|315553|315583|321541|321580|322307|322309|421792|491919|493589|545050|545054|545059|545062|545064|545066|545076|545081|545082|545084|545092|545094|545387|545389|545392|545394|545400|545403|545412|545422|545427|545429|545431|545432|545433|545434|545435|545437|545446|545449|545452|545454|545459|545472|545474|545475|545477|545669|545670|545685|545688|545689|545690|545695|545698|545700|545702|545703|545704|545706|545708|545710|545723|790960|790961|790962|818719", + "upstreamId": "16740|16742|16746|16750|40257|88864|187986|187988|187991|187992|187993|187995|187996|187997|187999|188000|188004|188006|188009|207742|209352|227716|267792|310413|310422|310447|310452|315528|315553|315583|321541|321580|322307|322309|421792|491919|493589|545050|545054|545059|545062|545064|545066|545076|545081|545082|545084|545092|545094|545387|545389|545392|545394|545400|545403|545412|545422|545427|545429|545431|545432|545433|545434|545435|545437|545446|545449|545452|545454|545459|545472|545474|545475|545477|545669|545670|545685|545688|545689|545690|545695|545698|545700|545702|545703|545704|545706|545708|545710|545723|790960|790961|790962|818719", "text": "DE SANCTIS-CACCHIONE SYNDROME" }, { - "baseId": "16740|16750|187999|322325|620362|620363|620364|626197", + "upstreamId": "16740|16750|187999|322325|620362|620363|620364|626197", "text": "ERCC6-Related Disorders" }, { - "baseId": "16740|16742|16745|16746|16750|16751|16752|40257|40257|88864|137838|187986|187988|187991|187992|187993|187994|187997|188000|188004|188006|188008|188012|188013|190720|191315|191858|191859|207742|227716|253771|267792|273204|310393|310398|310409|310411|310413|310417|310422|310422|310424|310428|310434|310435|310437|310439|310447|310447|310450|310452|310452|310456|310457|310458|310460|315486|315487|315492|315497|315512|315513|315528|315536|315545|315546|315551|315552|315553|315553|315554|315556|315570|315571|315576|315577|315579|315580|315583|315583|315584|321486|321490|321494|321495|321506|321507|321508|321509|321511|321522|321540|321541|321541|321548|321557|321558|321563|321566|321568|321569|321576|321577|321580|321580|321586|321589|322296|322297|322298|322299|322303|322306|322307|322307|322308|322309|322317|322318|322323|322324|322326|322330|322340|322344|360919|439215|444606|491919|493589|513593|545050|545054|545059|545062|545064|545066|545076|545081|545082|545084|545092|545094|545387|545389|545392|545394|545400|545403|545412|545422|545427|545429|545431|545432|545433|545434|545435|545437|545446|545449|545452|545454|545459|545472|545474|545475|545477|545669|545670|545685|545688|545689|545690|545695|545698|545700|545702|545703|545704|545706|545708|545710|545723|578484|586213|744510|818719|865905|865906|865907|865908|865909|865910|865911|865912|865913|865914|865915|865916|865917|865918|865919|865920|865921|865922|865923|865924|865925|865926|865927|865928|865929|865930|865931|865932|865933|865934|865935|865936|865937|865938|865939|865940|865941|865942|865943|865944|865945|865946|865947|865948|865949|865950|865951|865952|865953|865954|868473|868474|868475|868476|868477|919271|919272", + "upstreamId": "16740|16742|16745|16746|16750|16751|16752|40257|40257|88864|137838|187986|187988|187991|187992|187993|187994|187997|188000|188004|188006|188008|188012|188013|190720|191315|191858|191859|207742|227716|253771|267792|273204|310393|310398|310409|310411|310413|310417|310422|310422|310424|310428|310434|310435|310437|310439|310447|310447|310450|310452|310452|310456|310457|310458|310460|315486|315487|315492|315497|315512|315513|315528|315536|315545|315546|315551|315552|315553|315553|315554|315556|315570|315571|315576|315577|315579|315580|315583|315583|315584|321486|321490|321494|321495|321506|321507|321508|321509|321511|321522|321540|321541|321541|321548|321557|321558|321563|321566|321568|321569|321576|321577|321580|321580|321586|321589|322296|322297|322298|322299|322303|322306|322307|322307|322308|322309|322317|322318|322323|322324|322326|322330|322340|322344|360919|439215|444606|491919|493589|513593|545050|545054|545059|545062|545064|545066|545076|545081|545082|545084|545092|545094|545387|545389|545392|545394|545400|545403|545412|545422|545427|545429|545431|545432|545433|545434|545435|545437|545446|545449|545452|545454|545459|545472|545474|545475|545477|545669|545670|545685|545688|545689|545690|545695|545698|545700|545702|545703|545704|545706|545708|545710|545723|578484|586213|744510|818719|865905|865906|865907|865908|865909|865910|865911|865912|865913|865914|865915|865916|865917|865918|865919|865920|865921|865922|865923|865924|865925|865926|865927|865928|865929|865930|865931|865932|865933|865934|865935|865936|865937|865938|865939|865940|865941|865942|865943|865944|865945|865946|865947|865948|865949|865950|865951|865952|865953|865954|868473|868474|868475|868476|868477|919271|919272", "text": "Cerebrooculofacioskeletal syndrome 1" }, { - "baseId": "16746|16748|187994|188008|188012|188013|190720|191315|191858|191859|253771|273204|310393|310398|310409|310411|310417|310422|310424|310428|310434|310435|310437|310439|310447|310450|310452|310456|310457|310458|310460|315486|315487|315492|315497|315512|315513|315528|315536|315545|315546|315551|315552|315553|315554|315556|315570|315571|315576|315577|315579|315580|315583|315584|321486|321490|321494|321495|321506|321507|321508|321509|321511|321522|321540|321541|321548|321557|321558|321563|321566|321568|321569|321576|321577|321580|321586|321589|322296|322297|322298|322299|322303|322306|322307|322308|322317|322318|322323|322324|322326|322330|322340|322344|439215|444606|586213|744510|865905|865906|865907|865908|865909|865910|865911|865912|865913|865914|865915|865916|865917|865918|865919|865920|865921|865922|865923|865924|865925|865926|865927|865928|865929|865930|865931|865932|865933|865934|865935|865936|865937|865938|865939|865941|865942|865943|865944|865945|865946|865947|865948|865949|865950|865951|865952|865953|865954|868473|868474|868475|868476|868477", + "upstreamId": "16746|16748|187994|188008|188012|188013|190720|191315|191858|191859|253771|273204|310393|310398|310409|310411|310417|310422|310424|310428|310434|310435|310437|310439|310447|310450|310452|310456|310457|310458|310460|315486|315487|315492|315497|315512|315513|315528|315536|315545|315546|315551|315552|315553|315554|315556|315570|315571|315576|315577|315579|315580|315583|315584|321486|321490|321494|321495|321506|321507|321508|321509|321511|321522|321540|321541|321548|321557|321558|321563|321566|321568|321569|321576|321577|321580|321586|321589|322296|322297|322298|322299|322303|322306|322307|322308|322317|322318|322323|322324|322326|322330|322340|322344|439215|444606|586213|744510|865905|865906|865907|865908|865909|865910|865911|865912|865913|865914|865915|865916|865917|865918|865919|865920|865921|865922|865923|865924|865925|865926|865927|865928|865929|865930|865931|865932|865933|865934|865935|865936|865937|865938|865939|865941|865942|865943|865944|865945|865946|865947|865948|865949|865950|865951|865952|865953|865954|868473|868474|868475|868476|868477", "text": "Age-related macular degeneration 5" }, { - "baseId": "16747", + "upstreamId": "16747", "text": "UV-sensitive syndrome 1" }, { - "baseId": "16748|31535|31556", + "upstreamId": "16748|31535|31556", "text": "LUNG CANCER, SUSCEPTIBILITY TO" }, { - "baseId": "16753|16754|16755|16756|16757|79645|187981|187982|187983|190958|196149|272557|297902|297911|297917|297919|297922|297923|297927|297930|297931|297932|300093|300097|300098|300099|300100|304328|304331|304354|304356|304360|304368|304691|304692|357419|384613|406755|406756|421550|423862|536698|536698|543431|543433|543435|543437|543438|543443|543445|543446|543449|543701|543702|543704|543753|543771|543775|543778|543780|543782|543786|543788|543789|543861|543866|543867|543869|543869|543873|543875|543876|543879|578013|581726|609081|623140|686762|691875|765160|798562|858721|894577|894578|894579|894580|894581|894582|894583|894584|894585|894586|894587|894588|894589|894590|894591|894592|894593|894594|896122|962059|963236|971870|971871|971872|971873|971874|971875|971876", + "upstreamId": "16753|16754|16755|16756|16757|79645|187981|187982|187983|190958|196149|272557|297902|297911|297917|297919|297922|297923|297927|297930|297931|297932|300093|300097|300098|300099|300100|304328|304331|304354|304356|304360|304368|304691|304692|357419|384613|406755|406756|421550|423862|536698|536698|543431|543433|543435|543437|543438|543443|543445|543446|543449|543701|543702|543704|543753|543771|543775|543778|543780|543782|543786|543788|543789|543861|543866|543867|543869|543869|543873|543875|543876|543879|578013|581726|609081|623140|686762|691875|765160|798562|858721|894577|894578|894579|894580|894581|894582|894583|894584|894585|894586|894587|894588|894589|894590|894591|894592|894593|894594|896122|962059|963236|971870|971871|971872|971873|971874|971875|971876", "text": "Cockayne syndrome type A" }, { - "baseId": "16755|31619|31817|70482|70487|134454|134459|134460|134461|134462|134463|134464|134465|134466|135137|137870|137873|137874|137876|137877|137880|137881|137882|137883|137884|137887|137889|137891|137892|137897|187995|188003|188007|188009|191753|193374|215505|237323|242189|242190|242191|242192|247041|255456|255457|259255|271456|297932|297944|300095|304363|310384|310391|310392|310405|310413|310414|310463|315483|315490|315526|315555|321491|321510|321549|321588|322273|322279|322288|322302|322309|322331|333738|340492|341868|341877|341879|353732|360919|400521|400523|400529|400665|400667|401098|401100|401337|413430|429758|429759|465041|465045|465053|465057|465726|465919|529246|529434|529436|529444|529465|529466|529467|529771|529772|529774|567671|567677|567678|569972|569973|573713|643908|643909|643910|643911|643912|643913|643914|643915|643916|643917|643918|643919|643920|643921|652453|684573|684574|684577|688527|692846|739952|754899|797245|820765|843092|843093|843094|843095|843096|843097|843098|843099|843100|843101|843102|843103|843104|843105|843106|843107|843108|843109|843110|843111|843112|851649|851651|852620|927558|927559|927560|927561|927562|927563|927564|937217|937218|937219|937220|940343|949164|949165|949166|949167|957624|957625|957626|957627|960834|970356", + "upstreamId": "16755|31619|31817|70482|70487|134454|134459|134460|134461|134462|134463|134464|134465|134466|135137|137870|137873|137874|137876|137877|137880|137881|137882|137883|137884|137887|137889|137891|137892|137897|187995|188003|188007|188009|191753|193374|215505|237323|242189|242190|242191|242192|247041|255456|255457|259255|271456|297932|297944|300095|304363|310384|310391|310392|310405|310413|310414|310463|315483|315490|315526|315555|321491|321510|321549|321588|322273|322279|322288|322302|322309|322331|333738|340492|341868|341877|341879|353732|360919|400521|400523|400529|400665|400667|401098|401100|401337|413430|429758|429759|465041|465045|465053|465057|465726|465919|529246|529434|529436|529444|529465|529466|529467|529771|529772|529774|567671|567677|567678|569972|569973|573713|643908|643909|643910|643911|643912|643913|643914|643915|643916|643917|643918|643919|643920|643921|652453|684573|684574|684577|688527|692846|739952|754899|797245|820765|843092|843093|843094|843095|843096|843097|843098|843099|843100|843101|843102|843103|843104|843105|843106|843107|843108|843109|843110|843111|843112|851649|851651|852620|927558|927559|927560|927561|927562|927563|927564|937217|937218|937219|937220|940343|949164|949165|949166|949167|957624|957625|957626|957627|960834|970356", "text": "Cockayne syndrome" }, { - "baseId": "16758|16759", + "upstreamId": "16758|16759", "text": "Preeclampsia/eclampsia 4" }, { - "baseId": "16760|16761|16762|16763|141077|141077|141078|141078|141079|141080|165818|165819|165820|212515|213812|221621|231652|249211|249214|252051|252053|252054|252054|252055|252056|252057|298724|298725|298731|298744|301199|301202|301203|301204|301206|301208|301209|301210|301213|301214|301219|305557|305565|305566|305567|305569|305570|305571|305582|305587|305686|305687|305691|368286|368638|395001|406786|440905|521666|521916|578440|626307|651610|683001|683751|895193|895194|895195|895196|896177|896178|896179", + "upstreamId": "16760|16761|16762|16763|141077|141077|141078|141078|141079|141080|165818|165819|165820|212515|213812|221621|231652|249211|249214|252051|252053|252054|252054|252055|252056|252057|298724|298725|298731|298744|301199|301202|301203|301204|301206|301208|301209|301210|301213|301214|301219|305557|305565|305566|305567|305569|305570|305571|305582|305587|305686|305687|305691|368286|368638|395001|406786|440905|521666|521916|578440|626307|651610|683001|683751|895193|895194|895195|895196|896177|896178|896179", "text": "Charcot-Marie-Tooth disease, type 4J" }, { - "baseId": "16760|16762|16766|16767|141077|141077|141078|141078|141079|141080|212515|221621|231652|249211|249212|249213|249214|249215|252051|252053|252054|252054|252055|252056|252057|298724|298725|298731|298744|301199|301202|301203|301204|301206|301208|301209|301210|301213|301214|301219|305557|305565|305566|305567|305568|305569|305570|305571|305582|305587|305686|305687|305691|368286|368638|395001|406786|521666|521916|578440|651610|683001|683751|790574|895193|895194|895195|895196|896177|896178|896179", + "upstreamId": "16760|16762|16766|16767|141077|141077|141078|141078|141079|141080|212515|221621|231652|249211|249212|249213|249214|249215|252051|252053|252054|252054|252055|252056|252057|298724|298725|298731|298744|301199|301202|301203|301204|301206|301208|301209|301210|301213|301214|301219|305557|305565|305566|305567|305568|305569|305570|305571|305582|305587|305686|305687|305691|368286|368638|395001|406786|521666|521916|578440|651610|683001|683751|790574|895193|895194|895195|895196|896177|896178|896179", "text": "Amyotrophic lateral sclerosis type 11" }, { - "baseId": "16760|16762|38909|104217|165502|191839|213136|222425|237049|241567|242045|250808|264531|284698|288008|333845|384443|400111|400608|441283|481797|513590|610538|633837|683149|697294|719843|848494|861332|861333|861334|861335|861337|861339|861340|861341|861342|861345|861356|861357|861358|861387|861388|861390|861391|861394|861401|861402|861403|861404|861405|861406|861407|861408|861418|861422|861423|861425|873576|964785|964787|964788|964789|964790|964791|969094|969095|969096|969097|969098|969099|969100|969101|969102|969103|969104|969105|969106|969107|969108|969109|969110", + "upstreamId": "16760|16762|38909|104217|165502|191839|213136|222425|237049|241567|242045|250808|264531|284698|288008|333845|384443|400111|400608|441283|481797|513590|610538|633837|683149|697294|719843|848494|861332|861333|861334|861335|861337|861339|861340|861341|861342|861345|861356|861357|861358|861387|861388|861390|861391|861394|861401|861402|861403|861404|861405|861406|861407|861408|861418|861422|861423|861425|873576|964785|964787|964788|964789|964790|964791|969094|969095|969096|969097|969098|969099|969100|969101|969102|969103|969104|969105|969106|969107|969108|969109|969110", "text": "Amyotrophic lateral sclerosis" }, { - "baseId": "16760|16761|65664|65665|65666|65667|301209|384430|384431|395001|395176|406786|440905|626307|788789|918992|920218", + "upstreamId": "16760|16761|65664|65665|65666|65667|301209|384430|384431|395001|395176|406786|440905|626307|788789|918992|920218", "text": "Yunis-Varon syndrome" }, { - "baseId": "16768|16769|16770|16771|251833|251834|251835|251836|296684|296686|296687|296689|296695|296705|296706|296711|296712|296714|298536|298542|298543|298548|298549|298555|298557|298562|298563|302672|302675|302676|302678|302682|302684|302695|302696|302697|302965|302967|302971|302980|302989|302991|302995|303000|303001|303008|303013|303014|359546|622225|622226|626323|626324|626325|626326|626327|626328|626329|626330|626331|626332|626333|626334|626335|626336|626337|626338|626339|626340|626341|626342|626343|893739|893740|893741|893742|893743|893744|893745|893746|893747|893748|893749|893750|893751|893752|893753|893754|893755|893756|893757|893758|893759|893760|893761|896073", + "upstreamId": "16768|16769|16770|16771|251833|251834|251835|251836|296684|296686|296687|296689|296695|296705|296706|296711|296712|296714|298536|298542|298543|298548|298549|298555|298557|298562|298563|302672|302675|302676|302678|302682|302684|302695|302696|302697|302965|302967|302971|302980|302989|302991|302995|303000|303001|303008|303013|303014|359546|622225|622226|626323|626324|626325|626326|626327|626328|626329|626330|626331|626332|626333|626334|626335|626336|626337|626338|626339|626340|626341|626342|626343|893739|893740|893741|893742|893743|893744|893745|893746|893747|893748|893749|893750|893751|893752|893753|893754|893755|893756|893757|893758|893759|893760|893761|896073", "text": "Autosomal recessive congenital ichthyosis 6" }, { - "baseId": "16772|16773|45848|45849|45850|45851|45852|45853|48382|48383|48384|48385|142814|142815|142816|142817|142818|142819|142820|181281|181282|181283|190412|190413|195317|209446|209448|209449|209451|209452|209453|209454|209456|209457|209458|209459|209462|209463|209465|209466|209467|209469|209470|209472|209473|209474|209475|209480|209481|209482|209484|209486|209489|209491|209492|221089|224190|224191|226716|226717|228357|228358|238212|238217|249764|257944|257945|257946|359313|359326|364080|364674|364724|364811|364819|364908|364915|364920|364924|390973|390987|390988|390989|391048|391061|391067|391069|391073|391083|391086|405082|414765|425338|425342|433915|447532|447533|447643|447644|447682|447787|447788|447789|447792|447795|447797|447807|447808|447810|447833|447852|447853|498275|509137|509144|509149|509152|509157|509159|509160|511243|515461|515463|515502|515550|515551|515556|515567|515578|515587|515615|515617|556858|556860|556862|556874|557001|557003|557155|557162|557171|557173|557175|558357|614208|614209|627381|627382|627383|627384|627385|627386|627387|627388|627420|627421|627422|627423|627424|627425|627426|627427|627428|627429|650517|679733|683310|683312|685090|685625|685633|685635|695028|718766|718768|780597|799199|823485|823486|823487|823488|823489|823513|823514|823515|823516|823517|823518|823519|823520|823521|823522|921849|921850|921851|921852|921862|930330|930339|930340|930341|930342|930343|941775|941776|941777|952303|952306|952307", + "upstreamId": "16772|16773|45848|45849|45850|45851|45852|45853|48382|48383|48384|48385|142814|142815|142816|142817|142818|142819|142820|181281|181282|181283|190412|190413|195317|209446|209448|209449|209451|209452|209453|209454|209456|209457|209458|209459|209462|209463|209465|209466|209467|209469|209470|209472|209473|209474|209475|209480|209481|209482|209484|209486|209489|209491|209492|221089|224190|224191|226716|226717|228357|228358|238212|238217|249764|257944|257945|257946|359313|359326|364080|364674|364724|364811|364819|364908|364915|364920|364924|390973|390987|390988|390989|391048|391061|391067|391069|391073|391083|391086|405082|414765|425338|425342|433915|447532|447533|447643|447644|447682|447787|447788|447789|447792|447795|447797|447807|447808|447810|447833|447852|447853|498275|509137|509144|509149|509152|509157|509159|509160|511243|515461|515463|515502|515550|515551|515556|515567|515578|515587|515615|515617|556858|556860|556862|556874|557001|557003|557155|557162|557171|557173|557175|558357|614208|614209|627381|627382|627383|627384|627385|627386|627387|627388|627420|627421|627422|627423|627424|627425|627426|627427|627428|627429|650517|679733|683310|683312|685090|685625|685633|685635|695028|718766|718768|780597|799199|823485|823486|823487|823488|823489|823513|823514|823515|823516|823517|823518|823519|823520|823521|823522|921849|921850|921851|921852|921862|930330|930339|930340|930341|930342|930343|941775|941776|941777|952303|952306|952307", "text": "Shprintzen-Goldberg syndrome" }, { - "baseId": "16774|16775|16776|16777|16778|16779|34083|34084|34085|34086|34087|34088|34089|34090|34091|34092|34093|34094|34095|34096|34097|34098|34099|34101|34102|34103|34104|168585|168586|168587|168588|193459|193461|195273|207539|207540|253098|265638|271769|273926|305058|305062|305067|305068|305069|305075|305084|305085|305096|305098|305099|305101|305103|305105|308791|308793|308794|308805|308811|308813|313969|313973|313984|313985|313986|313987|313989|313993|313994|313999|314003|314006|314009|314035|314041|314052|314067|314074|314090|314099|314100|314103|314104|314105|314108|584600|711480|766752|766754|766756|787568|787570|788827|792773|899409|899410|899411|899412|899413|899414|899415|899416|899417|899418|899419|899420|899421|899422|900476|978465|978466|978467|978468|978469", + "upstreamId": "16774|16775|16776|16777|16778|16779|34083|34084|34085|34086|34087|34088|34089|34090|34091|34092|34093|34094|34095|34096|34097|34098|34099|34101|34102|34103|34104|168585|168586|168587|168588|193459|193461|195273|207539|207540|253098|265638|271769|273926|305058|305062|305067|305068|305069|305075|305084|305085|305096|305098|305099|305101|305103|305105|308791|308793|308794|308805|308811|308813|313969|313973|313984|313985|313986|313987|313989|313993|313994|313999|314003|314006|314009|314035|314041|314052|314067|314074|314090|314099|314100|314103|314104|314105|314108|584600|711480|766752|766754|766756|787568|787570|788827|792773|899409|899410|899411|899412|899413|899414|899415|899416|899417|899418|899419|899420|899421|899422|900476|978465|978466|978467|978468|978469", "text": "Roberts-SC phocomelia syndrome" }, { - "baseId": "16781", + "upstreamId": "16781", "text": "Intrinsic factor deficiency, congenital, susceptibility to" }, { - "baseId": "16781|16784|16785|16786|16787|204450|204451|204452|314343|314344|314347|314348|314350|320941|320964|320966|327032|327033|327037|328083|328088|328089|328090|328097|328102|433589|564748|564750|567344|570707|609795|620406|640159|640160|701822|712901|730774|752714|768494|768495|787990|818291|868145|868146|868147|868148|868149|868662|926276|926277|947504|956533", + "upstreamId": "16781|16784|16785|16786|16787|204450|204451|204452|314343|314344|314347|314348|314350|320941|320964|320966|327032|327033|327037|328083|328088|328089|328090|328097|328102|433589|564748|564750|567344|570707|609795|620406|640159|640160|701822|712901|730774|752714|768494|768495|787990|818291|868145|868146|868147|868148|868149|868662|926276|926277|947504|956533", "text": "Intrinsic factor deficiency" }, { - "baseId": "16788", + "upstreamId": "16788", "text": "Dopamine beta-hydroxylase activity" }, { - "baseId": "16789|16790|16791|38418|214408|214409|214410|214411|214412|214413|214414|227065|227067|307374|307375|307377|307401|307402|307406|307407|307409|307410|307417|307418|307422|307424|307428|307440|311661|311662|311665|311666|311670|311673|311675|311677|311680|311684|311692|311694|317163|317176|317181|317186|317190|317191|317196|317198|317200|317212|317214|317218|317219|317221|317224|317226|317228|317240|317244|317245|317250|317586|317591|317592|317594|317595|317596|317597|317607|317608|317609|317614|317620|317621|317622|317623|317636|317641|317658|439060|524253|524255|524516|524520|563697|563698|637935|637936|637937|637938|700875|700876|711829|711831|711832|711833|711835|723420|723422|723424|723425|723426|723427|736987|751521|751524|767238|835738|835739|835740|835741|835742|835743|901439|901440|901441|901442|901443|901444|901445|901446|901447|901448|901449|901450|901451|901452|901453|901454|901455|901456|901457|901458|901459|901460|901461|901462|901463|901464|901465|901466|901467|901468|901469|901470|901471|901472|901473|901474|901475|901476|901477|901478|901479|903348|903349|925464|925465|946471", + "upstreamId": "16789|16790|16791|38418|214408|214409|214410|214411|214412|214413|214414|227065|227067|307374|307375|307377|307401|307402|307406|307407|307409|307410|307417|307418|307422|307424|307428|307440|311661|311662|311665|311666|311670|311673|311675|311677|311680|311684|311692|311694|317163|317176|317181|317186|317190|317191|317196|317198|317200|317212|317214|317218|317219|317221|317224|317226|317228|317240|317244|317245|317250|317586|317591|317592|317594|317595|317596|317597|317607|317608|317609|317614|317620|317621|317622|317623|317636|317641|317658|439060|524253|524255|524516|524520|563697|563698|637935|637936|637937|637938|700875|700876|711829|711831|711832|711833|711835|723420|723422|723424|723425|723426|723427|736987|751521|751524|767238|835738|835739|835740|835741|835742|835743|901439|901440|901441|901442|901443|901444|901445|901446|901447|901448|901449|901450|901451|901452|901453|901454|901455|901456|901457|901458|901459|901460|901461|901462|901463|901464|901465|901466|901467|901468|901469|901470|901471|901472|901473|901474|901475|901476|901477|901478|901479|903348|903349|925464|925465|946471", "text": "Orthostatic hypotension 1" }, { - "baseId": "16792|16793|16794|16794|16795|16796|16798|16799|16801|16803|16803|16804|16806|16813|32119|32126|32128|32133|38609|45201|45203|45207|45208|45209|45217|45219|45224|45227|45228|45229|45230|45231|45232|45233|45234|45235|45237|45238|45239|45242|45243|45244|45346|45349|45350|45352|49845|49846|50027|50071|50080|50081|50083|50084|50085|50085|50087|50089|50090|50144|50146|50152|50155|50305|51640|51666|94667|94672|94753|94763|94826|94831|94832|94890|94974|94992|94993|95008|95014|95087|95088|95136|95137|95156|95170|95172|95218|95292|95310|95371|95380|95386|95421|95427|95431|95444|95453|95468|95488|95516|95522|95523|95542|95547|95575|95580|95589|95590|95607|95609|95610|95612|95615|95616|95617|95652|95685|95703|95717|95748|95772|95777|95792|95838|95841|95926|95934|95953|95954|95955|95960|95963|95967|95970|95971|95975|95985|95987|95987|95988|95994|96003|96028|96029|96029|96030|96032|96039|96044|96044|96052|96058|96071|96094|96094|96098|96103|96123|96129|96129|96137|96145|96149|96150|96154|96157|96160|96169|96173|96182|96188|96194|96195|96201|96205|96219|96220|96225|96257|96272|96273|96279|96279|96287|96297|96307|96308|96318|96319|96330|96350|96355|96362|96378|96381|96385|96408|96430|96431|96439|96440|96447|96461|96463|96465|96465|96468|96470|96473|96474|96478|96480|96490|96503|96505|96506|96508|96510|96512|96514|96516|96517|96520|96522|96525|96526|96528|96529|96535|96536|96537|96565|96567|96572|96572|96573|96575|96576|96579|96580|96583|96587|96590|96594|96597|96608|96615|96620|96623|96649|96656|96660|96664|96675|96681|96683|96697|96710|96717|96718|96729|96735|96739|96742|96744|96746|96748|96792|96798|96802|96803|96805|98572|133011|133078|133081|133084|133085|133086|133088|133089|133093|133094|133096|133098|133100|133101|133103|133104|133105|133111|133227|133255|133258|133348|138579|138585|138808|139547|139569|139571|139572|139574|139576|139577|139655|139745|141956|141957|141958|150499|150557|150578|150746|150756|150772|150783|150793|150862|152230|152438|152590|152724|166267|166268|166269|166270|166271|166272|166275|171076|171077|179978|179981|179986|179987|179989|179989|179990|179993|179997|179998|180000|180007|180008|180009|180010|180014|180017|180023|180026|180029|181861|181873|181882|181888|181892|181894|181895|181896|181900|181902|181907|181909|181916|181922|181928|181931|181953|181954|181959|181960|181964|181967|181968|181971|181978|181980|181981|181982|185970|185974|185980|185982|185987|190022|190023|190024|190025|195590|198613|212166|212185|212191|212192|212193|212196|212198|212200|212202|212203|212204|212205|212210|214577|214582|220983|220984|221206|221211|221214|221220|221221|221229|221236|221237|221238|221248|221723|226299|231565|232484|232498|232502|232517|232530|232531|232542|232551|232555|232556|232566|232572|232574|232587|232589|232597|232602|232622|232641|232719|232890|232923|238808|238826|238834|238835|238850|238864|238865|244365|246923|286665|286668|286670|286676|287401|290165|290183|290187|290188|290189|311622|358707|358708|358709|358710|358711|358712|358713|358714|358715|358716|358717|361855|361856|366696|367382|392727|392738|392774|392794|392810|392842|392860|393000|405771|416956|416957|416958|416959|419395|419421|424486|427208|432377|432516|432521|433701|443423|451097|451120|451332|451338|451369|472775|472804|473489|473652|483365|483377|483383|483416|485590|500169|511144|511145|539204|539205|539206|539207|539208|539209|539210|539211|539212|552275|552276|552277|552278|552279|552280|552281|561621|575670|609011|609163|609164|609165|609168|609178|613497|626130|626440|626442|630125|630144|685134|747675|790245|790246|790247|790248|790249|790250|790251|790252|790253|790254|790255|790256|790257|790258|790259|790260|790261|790262|790263|790264|807102|807583|827915|861168|861169|861170|861171|861172|861173|861174|861175|861176|861177|861178|861179|861180|861181|861215|861216|861217|885117|885118|885119|885120|887377|918723|964202|965455|970744", + "upstreamId": "16792|16793|16794|16794|16795|16796|16798|16799|16801|16803|16803|16804|16806|16813|32119|32126|32128|32133|38609|45201|45203|45207|45208|45209|45217|45219|45224|45227|45228|45229|45230|45231|45232|45233|45234|45235|45237|45238|45239|45242|45243|45244|45346|45349|45350|45352|49845|49846|50027|50071|50080|50081|50083|50084|50085|50085|50087|50089|50090|50144|50146|50152|50155|50305|51640|51666|94667|94672|94753|94763|94826|94831|94832|94890|94974|94992|94993|95008|95014|95087|95088|95136|95137|95156|95170|95172|95218|95292|95310|95371|95380|95386|95421|95427|95431|95444|95453|95468|95488|95516|95522|95523|95542|95547|95575|95580|95589|95590|95607|95609|95610|95612|95615|95616|95617|95652|95685|95703|95717|95748|95772|95777|95792|95838|95841|95926|95934|95953|95954|95955|95960|95963|95967|95970|95971|95975|95985|95987|95987|95988|95994|96003|96028|96029|96029|96030|96032|96039|96044|96044|96052|96058|96071|96094|96094|96098|96103|96123|96129|96129|96137|96145|96149|96150|96154|96157|96160|96169|96173|96182|96188|96194|96195|96201|96205|96219|96220|96225|96257|96272|96273|96279|96279|96287|96297|96307|96308|96318|96319|96330|96350|96355|96362|96378|96381|96385|96408|96430|96431|96439|96440|96447|96461|96463|96465|96465|96468|96470|96473|96474|96478|96480|96490|96503|96505|96506|96508|96510|96512|96514|96516|96517|96520|96522|96525|96526|96528|96529|96535|96536|96537|96565|96567|96572|96572|96573|96575|96576|96579|96580|96583|96587|96590|96594|96597|96608|96615|96620|96623|96649|96656|96660|96664|96675|96681|96683|96697|96710|96717|96718|96729|96735|96739|96742|96744|96746|96748|96792|96798|96802|96803|96805|98572|133011|133078|133081|133084|133085|133086|133088|133089|133093|133094|133096|133098|133100|133101|133103|133104|133105|133111|133227|133255|133258|133348|138579|138585|138808|139547|139569|139571|139572|139574|139576|139577|139655|139745|141956|141957|141958|150499|150557|150578|150746|150756|150772|150783|150793|150862|152230|152438|152590|152724|166267|166268|166269|166270|166271|166272|166275|171076|171077|179978|179981|179986|179987|179989|179989|179990|179993|179997|179998|180000|180007|180008|180009|180010|180014|180017|180023|180026|180029|181861|181873|181882|181888|181892|181894|181895|181896|181900|181902|181907|181909|181916|181922|181928|181931|181953|181954|181959|181960|181964|181967|181968|181971|181978|181980|181981|181982|185970|185974|185980|185982|185987|190022|190023|190024|190025|195590|198613|212166|212185|212191|212192|212193|212196|212198|212200|212202|212203|212204|212205|212210|214577|214582|220983|220984|221206|221211|221214|221220|221221|221229|221236|221237|221238|221248|221723|226299|231565|232484|232498|232502|232517|232530|232531|232542|232551|232555|232556|232566|232572|232574|232587|232589|232597|232602|232622|232641|232719|232890|232923|238808|238826|238834|238835|238850|238864|238865|244365|246923|286665|286668|286670|286676|287401|290165|290183|290187|290188|290189|311622|358707|358708|358709|358710|358711|358712|358713|358714|358715|358716|358717|361855|361856|366696|367382|392727|392738|392774|392794|392810|392842|392860|393000|405771|416956|416957|416958|416959|419395|419421|424486|427208|432377|432516|432521|433701|443423|451097|451120|451332|451338|451369|472775|472804|473489|473652|483365|483377|483383|483416|485590|500169|511144|511145|539204|539205|539206|539207|539208|539209|539210|539211|539212|552275|552276|552277|552278|552279|552280|552281|561621|575670|609011|609163|609164|609165|609168|609178|613497|626130|626440|626442|630125|630144|685134|747675|790245|790246|790247|790248|790249|790250|790251|790252|790253|790254|790255|790256|790257|790258|790259|790260|790261|790262|790263|790264|807102|807583|827915|861168|861169|861170|861171|861172|861173|861174|861175|861176|861177|861178|861179|861180|861181|861215|861216|861217|885117|885118|885119|885120|887377|918723|964202|965455|970744", "text": "Lynch syndrome I" }, { - "baseId": "16792|16794|16795|16796|16797|16798|16799|16800|16801|16803|16807|23970|23971|24273|24274|24276|24279|24281|24284|32118|32119|32124|32126|32127|32128|32129|32133|32135|32136|32137|32138|32144|32145|38609|38612|45201|45202|45203|45204|45205|45206|45208|45209|45210|45211|45212|45213|45214|45215|45216|45217|45218|45219|45220|45221|45222|45223|45224|45225|45226|45227|45228|45229|45230|45231|45232|45233|45234|45235|45237|45238|45239|45240|45241|45242|45243|45244|45245|45246|45247|45248|45249|45251|45252|45254|45255|45256|45257|45258|45259|45260|45261|45262|45346|45347|45348|45349|45350|45351|45352|45353|45354|50027|50029|50030|50032|50035|50071|50073|50074|50075|50076|50078|50079|50080|50083|50084|50085|50089|50090|50091|50140|50141|50142|50143|50144|50145|50147|50148|50149|50152|50153|50154|50155|50160|50161|51362|51637|51638|51639|51641|51642|51666|79740|94623|94624|94625|94626|94627|94630|94632|94634|94635|94636|94637|94639|94642|94643|94645|94646|94648|94649|94652|94653|94658|94659|94662|94663|94665|94666|94667|94668|94670|94671|94672|94676|94677|94678|94679|94680|94681|94682|94683|94684|94685|94687|94688|94692|94694|94695|94697|94698|94699|94701|94704|94705|94706|94707|94708|94709|94716|94717|94719|94720|94721|94727|94728|94729|94730|94735|94736|94741|94742|94743|94745|94748|94751|94753|94755|94756|94759|94760|94764|94768|94769|94770|94774|94775|94777|94779|94781|94782|94784|94785|94786|94788|94789|94790|94792|94794|94797|94798|94800|94802|94803|94804|94805|94808|94810|94812|94813|94814|94815|94817|94818|94819|94821|94822|94823|94824|94825|94826|94828|94830|94831|94832|94835|94836|94837|94838|94839|94840|94841|94843|94844|94845|94846|94847|94848|94849|94850|94851|94856|94858|94860|94862|94863|94864|94865|94873|94874|94875|94877|94878|94879|94881|94882|94884|94885|94889|94892|94893|94899|94901|94903|94904|94906|94907|94908|94909|94910|94914|94918|94924|94927|94928|94930|94932|94933|94936|94937|94941|94943|94945|94946|94947|94948|94949|94952|94953|94954|94955|94957|94958|94959|94960|94961|94962|94964|94966|94968|94969|94970|94971|94972|94973|94974|94975|94976|94980|94981|94982|94984|94985|94986|94988|94991|94992|94993|94995|94996|94998|94999|95000|95005|95006|95007|95008|95011|95013|95016|95017|95018|95020|95021|95024|95025|95026|95030|95031|95032|95033|95034|95035|95036|95037|95040|95041|95043|95044|95046|95047|95048|95050|95051|95053|95054|95055|95056|95057|95059|95061|95062|95064|95066|95068|95070|95072|95073|95074|95075|95076|95077|95078|95079|95080|95081|95082|95083|95084|95085|95087|95088|95089|95090|95091|95092|95093|95094|95095|95096|95097|95098|95099|95100|95101|95102|95103|95104|95105|95106|95107|95109|95110|95111|95113|95114|95115|95116|95117|95118|95119|95121|95122|95124|95125|95126|95127|95130|95132|95134|95135|95139|95140|95141|95142|95144|95145|95146|95147|95148|95150|95152|95153|95154|95155|95157|95158|95160|95163|95165|95166|95167|95169|95170|95171|95173|95175|95176|95177|95178|95179|95180|95181|95182|95183|95185|95186|95187|95190|95191|95192|95193|95194|95196|95198|95199|95200|95201|95202|95204|95205|95207|95208|95209|95210|95212|95213|95214|95218|95220|95221|95222|95223|95224|95226|95227|95228|95229|95230|95231|95232|95233|95235|95236|95237|95238|95239|95240|95241|95242|95243|95246|95247|95248|95249|95250|95252|95253|95254|95255|95256|95257|95258|95259|95261|95262|95263|95264|95265|95267|95268|95269|95270|95271|95272|95273|95274|95275|95276|95277|95279|95280|95281|95282|95283|95287|95288|95289|95294|95296|95297|95298|95299|95300|95301|95302|95303|95304|95305|95306|95307|95308|95309|95312|95313|95314|95315|95319|95320|95321|95322|95323|95324|95325|95326|95327|95328|95329|95330|95331|95333|95334|95335|95336|95338|95339|95340|95341|95345|95346|95347|95348|95352|95353|95354|95356|95357|95358|95359|95360|95361|95362|95363|95364|95365|95367|95368|95369|95370|95372|95373|95374|95376|95377|95378|95380|95381|95382|95383|95384|95385|95386|95388|95390|95391|95394|95395|95396|95398|95399|95400|95401|95402|95404|95405|95406|95407|95408|95409|95410|95412|95415|95416|95417|95418|95419|95420|95421|95422|95423|95424|95428|95429|95430|95432|95433|95435|95436|95437|95439|95440|95441|95442|95443|95446|95447|95448|95449|95451|95454|95455|95456|95457|95458|95459|95460|95461|95463|95465|95466|95467|95469|95471|95472|95473|95474|95475|95478|95479|95480|95482|95483|95484|95486|95488|95489|95490|95491|95492|95493|95494|95495|95496|95497|95498|95499|95500|95502|95503|95504|95505|95506|95507|95509|95510|95511|95512|95513|95514|95515|95516|95517|95518|95519|95520|95523|95526|95528|95529|95531|95533|95534|95535|95536|95537|95539|95540|95541|95542|95543|95544|95545|95546|95547|95549|95553|95556|95557|95558|95561|95562|95565|95566|95567|95568|95570|95571|95572|95573|95574|95575|95576|95578|95581|95582|95583|95584|95585|95586|95587|95588|95590|95591|95592|95594|95595|95597|95598|95604|95606|95608|95611|95614|95620|95621|95622|95624|95625|95626|95627|95628|95629|95630|95631|95632|95633|95634|95636|95640|95641|95645|95647|95648|95649|95653|95655|95656|95657|95660|95661|95663|95664|95665|95666|95667|95668|95669|95670|95672|95673|95674|95675|95676|95678|95680|95681|95682|95683|95684|95687|95688|95690|95691|95693|95695|95697|95698|95700|95701|95703|95704|95705|95706|95707|95708|95709|95710|95711|95712|95713|95715|95716|95719|95720|95721|95723|95724|95726|95727|95728|95729|95730|95732|95733|95734|95735|95738|95739|95740|95741|95742|95743|95744|95745|95746|95748|95750|95752|95753|95754|95755|95756|95759|95760|95761|95764|95765|95768|95769|95770|95771|95773|95775|95777|95778|95779|95780|95781|95782|95783|95784|95785|95786|95787|95789|95792|95793|95794|95795|95796|95797|95798|95800|95801|95802|95803|95805|95806|95807|95808|95811|95812|95813|95814|95815|95816|95817|95818|95819|95821|95822|95824|95826|95828|95829|95830|95831|95832|95833|95834|95835|95836|95837|95840|95842|95843|95844|95845|95846|95847|95848|95849|95850|95851|95853|95854|95856|95857|95858|95859|95860|95862|95863|95864|95865|95866|95867|95869|95870|95872|95873|95875|95876|95877|95881|95882|95883|95885|95886|95888|95889|95890|95891|95892|95893|95894|95895|95896|95897|95898|95899|95901|95902|95903|95904|95905|95906|95908|95909|95910|95913|95915|95917|95920|95922|95923|95925|95926|95927|95930|95932|95935|95936|95939|95940|95942|95943|95944|95945|95946|95947|95948|95949|95951|95952|95953|95954|95955|95956|95957|95959|95960|95961|95963|95964|95965|95966|95967|95968|95969|95971|95972|95973|95976|95977|95978|95979|95980|95981|95982|95984|95985|95986|95987|95989|95990|95992|95994|95995|95996|95998|95999|96000|96001|96002|96004|96005|96007|96008|96009|96010|96012|96013|96014|96015|96018|96019|96020|96021|96022|96023|96024|96025|96026|96027|96029|96032|96033|96034|96036|96037|96038|96039|96040|96041|96042|96043|96047|96048|96052|96055|96056|96057|96058|96059|96062|96063|96065|96066|96067|96068|96070|96071|96072|96073|96074|96075|96076|96077|96078|96079|96080|96081|96082|96083|96084|96085|96086|96087|96088|96089|96090|96091|96092|96093|96094|96095|96096|96097|96099|96100|96104|96106|96107|96108|96110|96111|96113|96114|96115|96116|96117|96118|96120|96121|96122|96124|96125|96126|96127|96128|96129|96130|96131|96132|96134|96137|96138|96139|96140|96141|96142|96143|96144|96145|96146|96147|96148|96149|96151|96152|96153|96154|96155|96156|96157|96158|96162|96163|96164|96165|96168|96170|96171|96172|96173|96174|96177|96178|96179|96181|96182|96183|96185|96186|96187|96192|96193|96194|96195|96196|96197|96198|96199|96201|96202|96203|96204|96205|96206|96208|96210|96211|96213|96214|96216|96217|96218|96219|96221|96223|96225|96226|96227|96228|96230|96231|96232|96233|96234|96235|96236|96237|96238|96240|96241|96242|96243|96244|96245|96246|96247|96248|96249|96250|96251|96252|96253|96254|96255|96256|96258|96259|96260|96262|96263|96265|96266|96267|96269|96271|96274|96275|96277|96278|96279|96281|96283|96284|96286|96287|96288|96289|96291|96296|96298|96299|96300|96301|96302|96303|96304|96305|96306|96307|96308|96309|96310|96311|96312|96314|96315|96316|96318|96320|96321|96322|96326|96327|96329|96331|96334|96335|96336|96337|96340|96342|96343|96345|96346|96349|96352|96353|96354|96356|96357|96358|96359|96360|96361|96364|96366|96367|96368|96369|96370|96371|96372|96373|96374|96375|96376|96378|96379|96380|96383|96384|96385|96386|96387|96390|96393|96394|96395|96396|96397|96398|96399|96403|96404|96405|96406|96407|96408|96409|96410|96413|96414|96415|96417|96418|96419|96420|96421|96422|96423|96424|96426|96427|96428|96429|96430|96431|96432|96434|96435|96436|96437|96438|96439|96441|96442|96444|96445|96446|96448|96449|96450|96451|96452|96453|96454|96456|96458|96459|96460|96461|96462|96464|96465|96467|96468|96469|96470|96471|96472|96476|96477|96479|96480|96481|96482|96483|96484|96488|96489|96490|96491|96492|96494|96495|96496|96497|96498|96499|96502|96504|96514|96515|96519|96520|96521|96524|96525|96528|96529|96530|96533|96534|96535|96537|96541|96542|96543|96544|96545|96546|96550|96551|96552|96553|96554|96555|96556|96557|96558|96559|96560|96561|96563|96564|96565|96568|96569|96570|96571|96572|96576|96577|96578|96580|96582|96584|96586|96590|96591|96592|96593|96595|96596|96597|96598|96601|96603|96604|96605|96607|96609|96610|96611|96614|96615|96616|96617|96619|96620|96621|96624|96625|96626|96627|96628|96629|96630|96631|96633|96634|96635|96636|96637|96638|96639|96640|96642|96643|96644|96645|96647|96648|96650|96651|96652|96653|96654|96655|96656|96657|96658|96659|96660|96661|96662|96663|96665|96667|96668|96670|96671|96672|96673|96674|96676|96677|96679|96680|96682|96685|96687|96688|96690|96691|96692|96694|96696|96697|96700|96701|96702|96703|96704|96706|96707|96708|96709|96710|96711|96712|96713|96714|96715|96716|96717|96718|96719|96720|96721|96722|96724|96725|96726|96727|96728|96729|96730|96731|96732|96733|96736|96737|96738|96739|96740|96741|96743|96744|96745|96748|96749|96750|96751|96752|96753|96755|96756|96757|96758|96759|96761|96764|96765|96766|96767|96769|96770|96771|96774|96775|96776|96778|96779|96781|96782|96783|96784|96785|96787|96789|96790|96791|96792|96793|96795|96796|96798|96799|96801|96802|96803|96804|96805|96806|96807|96808|96809|96810|96811|96812|96813|96816|96817|96818|96820|96821|96825|96828|96829|96830|96831|96832|96833|96835|96837|96838|96839|96840|96841|96842|96844|96846|96847|96848|96849|96850|96851|96852|96853|96854|96855|96857|96858|96860|96861|96862|98484|98485|99143|132403|132404|133011|133012|133027|133037|133042|133046|133070|133071|133072|133074|133080|133091|133093|133094|133101|133208|133210|133220|133221|133227|133243|133247|133248|133250|133255|133305|136458|136516|138591|138808|139542|139562|139648|139655|139656|139728|139731|139732|139734|139736|139737|139738|139740|139741|139742|139743|139744|141958|142406|150473|150493|150494|150499|150578|150602|150675|150686|150836|150846|150891|150979|150995|151041|151303|151381|151465|151492|151559|151599|151632|151895|151933|151990|152019|152055|152227|152275|152291|152364|152372|152377|152388|152412|152422|152435|152452|152479|152491|152495|152570|152673|152674|152683|152694|152705|152721|152737|166272|172174|179981|179983|179998|180003|180015|180017|180023|180031|180044|180048|180053|180056|180059|180062|180063|180065|180066|180078|180097|180099|180128|180157|180263|180268|181200|181204|181873|181892|181949|181953|181960|181998|182018|182038|182039|182044|182045|182054|182063|182088|182097|182101|182124|182129|182140|182152|182162|182183|182191|182194|182226|182255|182256|182257|182278|182280|182687|182697|182719|182774|182777|182785|182793|182807|185960|185962|185969|185971|185972|185973|185976|185977|185978|185981|185985|185993|185994|185995|185999|186084|186310|186312|186313|186317|190025|195590|198613|212112|212113|212114|212115|212117|212150|212151|212152|212154|212160|212162|212163|212165|212169|212170|212172|212174|212175|212179|212180|212183|212189|212193|212195|212208|212217|212220|212222|212229|212231|212233|212234|212238|212243|212245|212247|212255|212259|212263|212270|212298|212300|212302|212321|212328|212528|212529|212591|212596|212597|212600|212604|212606|214581|214597|214598|214603|214606|214607|214615|214626|214629|214639|215258|215365|215366|220980|220982|221113|221181|221184|221185|221188|221190|221192|221194|221195|221196|221198|221199|221200|221202|221215|221218|221221|221224|221226|221229|221233|221240|221246|221250|221259|221265|221266|221270|221278|221279|221280|221284|221285|221294|221299|221300|221303|221310|221312|221314|221377|221380|221383|221398|221399|221400|221403|221404|221406|221409|221412|221641|221709|221717|221718|221729|221730|221731|221732|221737|226296|226297|226298|226299|226300|226301|226302|226303|226304|226305|226306|226307|226308|226310|226314|226315|226327|226328|226329|228967|231527|231529|231545|231555|231567|231582|231600|231624|231675|231681|232512|232544|232574|232611|232617|232622|232632|232647|232651|232654|232698|232705|232717|232721|232729|232747|232761|232793|232807|232820|232828|232842|232880|232884|232969|232975|233496|233513|233522|233545|233549|233553|233579|233599|233606|233609|238356|238357|238776|238778|238779|238780|238782|238783|238785|238787|238791|238792|238794|238795|238796|238797|238798|238799|238800|238805|238810|238811|238812|238813|238834|238837|238843|238846|238848|238849|238855|238857|238858|238859|238863|238870|238881|238882|238885|238888|238890|238891|238898|238899|238903|238906|238907|238910|238911|238915|238916|238920|238931|238936|238942|238944|238945|238946|238948|238949|238952|238953|238957|238958|239030|239142|239149|239155|239157|239161|239163|239169|239173|239175|239176|239182|239186|239189|239954|240099|240100|240103|240105|240106|240111|240115|240117|240122|240125|240127|240133|240136|240144|240146|240148|240154|244372|244380|244390|244397|246922|246923|246925|248480|248481|248482|248483|248485|248491|248495|248498|248502|255062|259741|262399|262400|262401|262406|286667|286690|287401|289750|289786|289811|289826|289830|290145|290163|290919|290924|294547|306559|311641|321363|321373|321382|330608|330620|330631|337219|337231|337243|339147|339151|339170|353551|353819|358738|358744|359365|361860|369550|369556|369828|391353|391360|391362|391363|391384|391386|391390|391393|391400|391467|391468|391470|391472|391477|391478|391483|391490|391491|391555|391557|391560|391565|391579|391581|392704|392705|392723|392728|392731|392742|392743|392749|392752|392762|392764|392765|392774|392777|392790|392791|392795|392800|392825|392833|392836|392839|392845|392855|392858|392860|392866|392870|392874|392882|392883|392884|392885|392893|392896|392897|392905|392906|392914|392916|392918|392920|392923|392924|392927|392933|392942|392943|392944|392951|392958|392962|392963|392969|392975|392976|392981|392986|392990|392992|392997|393000|393004|393005|393007|393010|393014|393015|393031|393032|393037|393039|393052|393062|393067|393068|393074|393080|393086|393087|393093|393104|393116|393119|393121|393134|393144|393149|393164|393172|393177|393180|393195|393204|393222|393241|393263|393287|393289|393313|393316|393339|393349|393352|393362|393402|393437|393442|393453|393460|393486|393497|393501|393506|393515|393519|393548|393550|393649|393650|393686|393833|393834|393843|393871|393880|393896|393927|395248|395249|395501|395621|395681|395698|395705|395707|395730|395737|395739|395744|395749|395763|395766|395911|395914|395928|395932|395968|395971|395978|396024|396025|396049|396069|396073|396114|396334|396336|396342|396356|396360|396366|396375|396384|405769|405878|405910|405940|405943|405960|405972|406211|406238|406263|407165|407211|416961|419309|419336|419364|419370|419379|419385|419392|419395|419410|419418|419448|419463|419480|419494|419517|419532|419562|419565|419567|419571|419578|419586|420989|420991|427134|427135|427136|427137|427138|427141|427142|427143|427147|427148|427149|427151|427152|427154|427155|427157|427158|427159|427160|427161|427162|427164|427165|427166|427167|427170|427171|427174|427175|427176|427179|427181|427183|427184|427187|427188|427189|427190|427192|427193|427194|427195|427196|427197|427199|427200|427201|427203|427204|427205|427207|427209|427210|427211|427212|427213|427217|427218|427219|427220|427221|427222|427223|427224|427322|427323|427324|427326|427327|427328|427329|427330|427331|427334|427589|427590|427591|427592|427593|427594|427595|427596|427597|427598|427601|432566|432567|440016|443255|443264|451137|451233|451314|451338|451501|451579|452139|456817|457228|457356|472715|472813|472833|472865|472932|472967|473081|473108|473165|473179|473212|473377|474599|482522|482697|483382|483406|483474|483555|483586|485602|486902|486937|486983|486989|486996|487220|487223|487316|487320|487322|496233|496280|496281|496497|496586|496704|496760|496764|497094|518386|518537|518547|518578|522994|523114|540528|558123|558183|558205|561427|561604|561641|561652|561662|561664|561805|562694|567035|575668|575670|575671|575673|575674|575675|575676|575677|575678|575679|575680|575681|575682|575683|575684|575685|575688|575698|575699|575700|575701|575702|575703|575705|575706|575707|575781|575782|575783|576258|609082|610416|610900|610901|610902|610903|610904|610905|610906|610907|610908|610909|610910|610911|610912|610913|610914|610915|610916|610917|610918|610919|610920|610921|610922|610923|610924|610925|610926|610927|610928|610929|610930|610931|610932|610933|610934|610935|610936|610937|610938|610939|610940|610941|610942|610943|610944|610945|610946|610947|610948|610949|610950|610951|610952|610953|610954|610955|610956|610957|610958|610959|610960|610961|610962|610963|610964|610965|610966|610967|610968|610969|610970|610971|610972|610973|610974|610975|610976|610977|610978|610979|610980|610981|610982|610983|610984|610985|610987|611989|611990|611991|616598|616712|621134|621135|621153|621270|621271|621276|621925|621926|621927|621928|621929|621930|621931|621932|650973|654286|654289|654290|654494|654981|672143|861546|861548|905895|972457|977402|977403", + "upstreamId": "16792|16794|16795|16796|16797|16798|16799|16800|16801|16803|16807|23970|23971|24273|24274|24276|24279|24281|24284|32118|32119|32124|32126|32127|32128|32129|32133|32135|32136|32137|32138|32144|32145|38609|38612|45201|45202|45203|45204|45205|45206|45208|45209|45210|45211|45212|45213|45214|45215|45216|45217|45218|45219|45220|45221|45222|45223|45224|45225|45226|45227|45228|45229|45230|45231|45232|45233|45234|45235|45237|45238|45239|45240|45241|45242|45243|45244|45245|45246|45247|45248|45249|45251|45252|45254|45255|45256|45257|45258|45259|45260|45261|45262|45346|45347|45348|45349|45350|45351|45352|45353|45354|50027|50029|50030|50032|50035|50071|50073|50074|50075|50076|50078|50079|50080|50083|50084|50085|50089|50090|50091|50140|50141|50142|50143|50144|50145|50147|50148|50149|50152|50153|50154|50155|50160|50161|51362|51637|51638|51639|51641|51642|51666|79740|94623|94624|94625|94626|94627|94630|94632|94634|94635|94636|94637|94639|94642|94643|94645|94646|94648|94649|94652|94653|94658|94659|94662|94663|94665|94666|94667|94668|94670|94671|94672|94676|94677|94678|94679|94680|94681|94682|94683|94684|94685|94687|94688|94692|94694|94695|94697|94698|94699|94701|94704|94705|94706|94707|94708|94709|94716|94717|94719|94720|94721|94727|94728|94729|94730|94735|94736|94741|94742|94743|94745|94748|94751|94753|94755|94756|94759|94760|94764|94768|94769|94770|94774|94775|94777|94779|94781|94782|94784|94785|94786|94788|94789|94790|94792|94794|94797|94798|94800|94802|94803|94804|94805|94808|94810|94812|94813|94814|94815|94817|94818|94819|94821|94822|94823|94824|94825|94826|94828|94830|94831|94832|94835|94836|94837|94838|94839|94840|94841|94843|94844|94845|94846|94847|94848|94849|94850|94851|94856|94858|94860|94862|94863|94864|94865|94873|94874|94875|94877|94878|94879|94881|94882|94884|94885|94889|94892|94893|94899|94901|94903|94904|94906|94907|94908|94909|94910|94914|94918|94924|94927|94928|94930|94932|94933|94936|94937|94941|94943|94945|94946|94947|94948|94949|94952|94953|94954|94955|94957|94958|94959|94960|94961|94962|94964|94966|94968|94969|94970|94971|94972|94973|94974|94975|94976|94980|94981|94982|94984|94985|94986|94988|94991|94992|94993|94995|94996|94998|94999|95000|95005|95006|95007|95008|95011|95013|95016|95017|95018|95020|95021|95024|95025|95026|95030|95031|95032|95033|95034|95035|95036|95037|95040|95041|95043|95044|95046|95047|95048|95050|95051|95053|95054|95055|95056|95057|95059|95061|95062|95064|95066|95068|95070|95072|95073|95074|95075|95076|95077|95078|95079|95080|95081|95082|95083|95084|95085|95087|95088|95089|95090|95091|95092|95093|95094|95095|95096|95097|95098|95099|95100|95101|95102|95103|95104|95105|95106|95107|95109|95110|95111|95113|95114|95115|95116|95117|95118|95119|95121|95122|95124|95125|95126|95127|95130|95132|95134|95135|95139|95140|95141|95142|95144|95145|95146|95147|95148|95150|95152|95153|95154|95155|95157|95158|95160|95163|95165|95166|95167|95169|95170|95171|95173|95175|95176|95177|95178|95179|95180|95181|95182|95183|95185|95186|95187|95190|95191|95192|95193|95194|95196|95198|95199|95200|95201|95202|95204|95205|95207|95208|95209|95210|95212|95213|95214|95218|95220|95221|95222|95223|95224|95226|95227|95228|95229|95230|95231|95232|95233|95235|95236|95237|95238|95239|95240|95241|95242|95243|95246|95247|95248|95249|95250|95252|95253|95254|95255|95256|95257|95258|95259|95261|95262|95263|95264|95265|95267|95268|95269|95270|95271|95272|95273|95274|95275|95276|95277|95279|95280|95281|95282|95283|95287|95288|95289|95294|95296|95297|95298|95299|95300|95301|95302|95303|95304|95305|95306|95307|95308|95309|95312|95313|95314|95315|95319|95320|95321|95322|95323|95324|95325|95326|95327|95328|95329|95330|95331|95333|95334|95335|95336|95338|95339|95340|95341|95345|95346|95347|95348|95352|95353|95354|95356|95357|95358|95359|95360|95361|95362|95363|95364|95365|95367|95368|95369|95370|95372|95373|95374|95376|95377|95378|95380|95381|95382|95383|95384|95385|95386|95388|95390|95391|95394|95395|95396|95398|95399|95400|95401|95402|95404|95405|95406|95407|95408|95409|95410|95412|95415|95416|95417|95418|95419|95420|95421|95422|95423|95424|95428|95429|95430|95432|95433|95435|95436|95437|95439|95440|95441|95442|95443|95446|95447|95448|95449|95451|95454|95455|95456|95457|95458|95459|95460|95461|95463|95465|95466|95467|95469|95471|95472|95473|95474|95475|95478|95479|95480|95482|95483|95484|95486|95488|95489|95490|95491|95492|95493|95494|95495|95496|95497|95498|95499|95500|95502|95503|95504|95505|95506|95507|95509|95510|95511|95512|95513|95514|95515|95516|95517|95518|95519|95520|95523|95526|95528|95529|95531|95533|95534|95535|95536|95537|95539|95540|95541|95542|95543|95544|95545|95546|95547|95549|95553|95556|95557|95558|95561|95562|95565|95566|95567|95568|95570|95571|95572|95573|95574|95575|95576|95578|95581|95582|95583|95584|95585|95586|95587|95588|95590|95591|95592|95594|95595|95597|95598|95604|95606|95608|95611|95614|95620|95621|95622|95624|95625|95626|95627|95628|95629|95630|95631|95632|95633|95634|95636|95640|95641|95645|95647|95648|95649|95653|95655|95656|95657|95660|95661|95663|95664|95665|95666|95667|95668|95669|95670|95672|95673|95674|95675|95676|95678|95680|95681|95682|95683|95684|95687|95688|95690|95691|95693|95695|95697|95698|95700|95701|95703|95704|95705|95706|95707|95708|95709|95710|95711|95712|95713|95715|95716|95719|95720|95721|95723|95724|95726|95727|95728|95729|95730|95732|95733|95734|95735|95738|95739|95740|95741|95742|95743|95744|95745|95746|95748|95750|95752|95753|95754|95755|95756|95759|95760|95761|95764|95765|95768|95769|95770|95771|95773|95775|95777|95778|95779|95780|95781|95782|95783|95784|95785|95786|95787|95789|95792|95793|95794|95795|95796|95797|95798|95800|95801|95802|95803|95805|95806|95807|95808|95811|95812|95813|95814|95815|95816|95817|95818|95819|95821|95822|95824|95826|95828|95829|95830|95831|95832|95833|95834|95835|95836|95837|95840|95842|95843|95844|95845|95846|95847|95848|95849|95850|95851|95853|95854|95856|95857|95858|95859|95860|95862|95863|95864|95865|95866|95867|95869|95870|95872|95873|95875|95876|95877|95881|95882|95883|95885|95886|95888|95889|95890|95891|95892|95893|95894|95895|95896|95897|95898|95899|95901|95902|95903|95904|95905|95906|95908|95909|95910|95913|95915|95917|95920|95922|95923|95925|95926|95927|95930|95932|95935|95936|95939|95940|95942|95943|95944|95945|95946|95947|95948|95949|95951|95952|95953|95954|95955|95956|95957|95959|95960|95961|95963|95964|95965|95966|95967|95968|95969|95971|95972|95973|95976|95977|95978|95979|95980|95981|95982|95984|95985|95986|95987|95989|95990|95992|95994|95995|95996|95998|95999|96000|96001|96002|96004|96005|96007|96008|96009|96010|96012|96013|96014|96015|96018|96019|96020|96021|96022|96023|96024|96025|96026|96027|96029|96032|96033|96034|96036|96037|96038|96039|96040|96041|96042|96043|96047|96048|96052|96055|96056|96057|96058|96059|96062|96063|96065|96066|96067|96068|96070|96071|96072|96073|96074|96075|96076|96077|96078|96079|96080|96081|96082|96083|96084|96085|96086|96087|96088|96089|96090|96091|96092|96093|96094|96095|96096|96097|96099|96100|96104|96106|96107|96108|96110|96111|96113|96114|96115|96116|96117|96118|96120|96121|96122|96124|96125|96126|96127|96128|96129|96130|96131|96132|96134|96137|96138|96139|96140|96141|96142|96143|96144|96145|96146|96147|96148|96149|96151|96152|96153|96154|96155|96156|96157|96158|96162|96163|96164|96165|96168|96170|96171|96172|96173|96174|96177|96178|96179|96181|96182|96183|96185|96186|96187|96192|96193|96194|96195|96196|96197|96198|96199|96201|96202|96203|96204|96205|96206|96208|96210|96211|96213|96214|96216|96217|96218|96219|96221|96223|96225|96226|96227|96228|96230|96231|96232|96233|96234|96235|96236|96237|96238|96240|96241|96242|96243|96244|96245|96246|96247|96248|96249|96250|96251|96252|96253|96254|96255|96256|96258|96259|96260|96262|96263|96265|96266|96267|96269|96271|96274|96275|96277|96278|96279|96281|96283|96284|96286|96287|96288|96289|96291|96296|96298|96299|96300|96301|96302|96303|96304|96305|96306|96307|96308|96309|96310|96311|96312|96314|96315|96316|96318|96320|96321|96322|96326|96327|96329|96331|96334|96335|96336|96337|96340|96342|96343|96345|96346|96349|96352|96353|96354|96356|96357|96358|96359|96360|96361|96364|96366|96367|96368|96369|96370|96371|96372|96373|96374|96375|96376|96378|96379|96380|96383|96384|96385|96386|96387|96390|96393|96394|96395|96396|96397|96398|96399|96403|96404|96405|96406|96407|96408|96409|96410|96413|96414|96415|96417|96418|96419|96420|96421|96422|96423|96424|96426|96427|96428|96429|96430|96431|96432|96434|96435|96436|96437|96438|96439|96441|96442|96444|96445|96446|96448|96449|96450|96451|96452|96453|96454|96456|96458|96459|96460|96461|96462|96464|96465|96467|96468|96469|96470|96471|96472|96476|96477|96479|96480|96481|96482|96483|96484|96488|96489|96490|96491|96492|96494|96495|96496|96497|96498|96499|96502|96504|96514|96515|96519|96520|96521|96524|96525|96528|96529|96530|96533|96534|96535|96537|96541|96542|96543|96544|96545|96546|96550|96551|96552|96553|96554|96555|96556|96557|96558|96559|96560|96561|96563|96564|96565|96568|96569|96570|96571|96572|96576|96577|96578|96580|96582|96584|96586|96590|96591|96592|96593|96595|96596|96597|96598|96601|96603|96604|96605|96607|96609|96610|96611|96614|96615|96616|96617|96619|96620|96621|96624|96625|96626|96627|96628|96629|96630|96631|96633|96634|96635|96636|96637|96638|96639|96640|96642|96643|96644|96645|96647|96648|96650|96651|96652|96653|96654|96655|96656|96657|96658|96659|96660|96661|96662|96663|96665|96667|96668|96670|96671|96672|96673|96674|96676|96677|96679|96680|96682|96685|96687|96688|96690|96691|96692|96694|96696|96697|96700|96701|96702|96703|96704|96706|96707|96708|96709|96710|96711|96712|96713|96714|96715|96716|96717|96718|96719|96720|96721|96722|96724|96725|96726|96727|96728|96729|96730|96731|96732|96733|96736|96737|96738|96739|96740|96741|96743|96744|96745|96748|96749|96750|96751|96752|96753|96755|96756|96757|96758|96759|96761|96764|96765|96766|96767|96769|96770|96771|96774|96775|96776|96778|96779|96781|96782|96783|96784|96785|96787|96789|96790|96791|96792|96793|96795|96796|96798|96799|96801|96802|96803|96804|96805|96806|96807|96808|96809|96810|96811|96812|96813|96816|96817|96818|96820|96821|96825|96828|96829|96830|96831|96832|96833|96835|96837|96838|96839|96840|96841|96842|96844|96846|96847|96848|96849|96850|96851|96852|96853|96854|96855|96857|96858|96860|96861|96862|98484|98485|99143|132403|132404|133011|133012|133027|133037|133042|133046|133070|133071|133072|133074|133080|133091|133093|133094|133101|133208|133210|133220|133221|133227|133243|133247|133248|133250|133255|133305|136458|136516|138591|138808|139542|139562|139648|139655|139656|139728|139731|139732|139734|139736|139737|139738|139740|139741|139742|139743|139744|141958|142406|150473|150493|150494|150499|150578|150602|150675|150686|150836|150846|150891|150979|150995|151041|151303|151381|151465|151492|151559|151599|151632|151895|151933|151990|152019|152055|152227|152275|152291|152364|152372|152377|152388|152412|152422|152435|152452|152479|152491|152495|152570|152673|152674|152683|152694|152705|152721|152737|166272|172174|179981|179983|179998|180003|180015|180017|180023|180031|180044|180048|180053|180056|180059|180062|180063|180065|180066|180078|180097|180099|180128|180157|180263|180268|181200|181204|181873|181892|181949|181953|181960|181998|182018|182038|182039|182044|182045|182054|182063|182088|182097|182101|182124|182129|182140|182152|182162|182183|182191|182194|182226|182255|182256|182257|182278|182280|182687|182697|182719|182774|182777|182785|182793|182807|185960|185962|185969|185971|185972|185973|185976|185977|185978|185981|185985|185993|185994|185995|185999|186084|186310|186312|186313|186317|190025|195590|198613|212112|212113|212114|212115|212117|212150|212151|212152|212154|212160|212162|212163|212165|212169|212170|212172|212174|212175|212179|212180|212183|212189|212193|212195|212208|212217|212220|212222|212229|212231|212233|212234|212238|212243|212245|212247|212255|212259|212263|212270|212298|212300|212302|212321|212328|212528|212529|212591|212596|212597|212600|212604|212606|214581|214597|214598|214603|214606|214607|214615|214626|214629|214639|215258|215365|215366|220980|220982|221113|221181|221184|221185|221188|221190|221192|221194|221195|221196|221198|221199|221200|221202|221215|221218|221221|221224|221226|221229|221233|221240|221246|221250|221259|221265|221266|221270|221278|221279|221280|221284|221285|221294|221299|221300|221303|221310|221312|221314|221377|221380|221383|221398|221399|221400|221403|221404|221406|221409|221412|221641|221709|221717|221718|221729|221730|221731|221732|221737|226296|226297|226298|226299|226300|226301|226302|226303|226304|226305|226306|226307|226308|226310|226314|226315|226327|226328|226329|228967|231527|231529|231545|231555|231567|231582|231600|231624|231675|231681|232512|232544|232574|232611|232617|232622|232632|232647|232651|232654|232698|232705|232717|232721|232729|232747|232761|232793|232807|232820|232828|232842|232880|232884|232969|232975|233496|233513|233522|233545|233549|233553|233579|233599|233606|233609|238356|238357|238776|238778|238779|238780|238782|238783|238785|238787|238791|238792|238794|238795|238796|238797|238798|238799|238800|238805|238810|238811|238812|238813|238834|238837|238843|238846|238848|238849|238855|238857|238858|238859|238863|238870|238881|238882|238885|238888|238890|238891|238898|238899|238903|238906|238907|238910|238911|238915|238916|238920|238931|238936|238942|238944|238945|238946|238948|238949|238952|238953|238957|238958|239030|239142|239149|239155|239157|239161|239163|239169|239173|239175|239176|239182|239186|239189|239954|240099|240100|240103|240105|240106|240111|240115|240117|240122|240125|240127|240133|240136|240144|240146|240148|240154|244372|244380|244390|244397|246922|246923|246925|248480|248481|248482|248483|248485|248491|248495|248498|248502|255062|259741|262399|262400|262401|262406|286667|286690|287401|289750|289786|289811|289826|289830|290145|290163|290919|290924|294547|306559|311641|321363|321373|321382|330608|330620|330631|337219|337231|337243|339147|339151|339170|353551|353819|358738|358744|359365|361860|369550|369556|369828|391353|391360|391362|391363|391384|391386|391390|391393|391400|391467|391468|391470|391472|391477|391478|391483|391490|391491|391555|391557|391560|391565|391579|391581|392704|392705|392723|392728|392731|392742|392743|392749|392752|392762|392764|392765|392774|392777|392790|392791|392795|392800|392825|392833|392836|392839|392845|392855|392858|392860|392866|392870|392874|392882|392883|392884|392885|392893|392896|392897|392905|392906|392914|392916|392918|392920|392923|392924|392927|392933|392942|392943|392944|392951|392958|392962|392963|392969|392975|392976|392981|392986|392990|392992|392997|393000|393004|393005|393007|393010|393014|393015|393031|393032|393037|393039|393052|393062|393067|393068|393074|393080|393086|393087|393093|393104|393116|393119|393121|393134|393144|393149|393164|393172|393177|393180|393195|393204|393222|393241|393263|393287|393289|393313|393316|393339|393349|393352|393362|393402|393437|393442|393453|393460|393486|393497|393501|393506|393515|393519|393548|393550|393649|393650|393686|393833|393834|393843|393871|393880|393896|393927|395248|395249|395501|395621|395681|395698|395705|395707|395730|395737|395739|395744|395749|395763|395766|395911|395914|395928|395932|395968|395971|395978|396024|396025|396049|396069|396073|396114|396334|396336|396342|396356|396360|396366|396375|396384|405769|405878|405910|405940|405943|405960|405972|406211|406238|406263|407165|407211|416961|419309|419336|419364|419370|419379|419385|419392|419395|419410|419418|419448|419463|419480|419494|419517|419532|419562|419565|419567|419571|419578|419586|420989|420991|427134|427135|427136|427137|427138|427141|427142|427143|427147|427148|427149|427151|427152|427154|427155|427157|427158|427159|427160|427161|427162|427164|427165|427166|427167|427170|427171|427174|427175|427176|427179|427181|427183|427184|427187|427188|427189|427190|427192|427193|427194|427195|427196|427197|427199|427200|427201|427203|427204|427205|427207|427209|427210|427211|427212|427213|427217|427218|427219|427220|427221|427222|427223|427224|427322|427323|427324|427326|427327|427328|427329|427330|427331|427334|427589|427590|427591|427592|427593|427594|427595|427596|427597|427598|427601|432566|432567|440016|443255|443264|451137|451233|451314|451338|451501|451579|452139|456817|457228|457356|472715|472813|472833|472865|472932|472967|473081|473108|473165|473179|473212|473377|474599|482522|482697|483382|483406|483474|483555|483586|485602|486902|486937|486983|486989|486996|487220|487223|487316|487320|487322|496233|496280|496281|496497|496586|496704|496760|496764|497094|518386|518537|518547|518578|522994|523114|540528|558123|558183|558205|561427|561604|561641|561652|561662|561664|561805|562694|567035|575668|575670|575671|575673|575674|575675|575676|575677|575678|575679|575680|575681|575682|575683|575684|575685|575688|575698|575699|575700|575701|575702|575703|575705|575706|575707|575781|575782|575783|576258|609082|610416|610900|610901|610902|610903|610904|610905|610906|610907|610908|610909|610910|610911|610912|610913|610914|610915|610916|610917|610918|610919|610920|610921|610922|610923|610924|610925|610926|610927|610928|610929|610930|610931|610932|610933|610934|610935|610936|610937|610938|610939|610940|610941|610942|610943|610944|610945|610946|610947|610948|610949|610950|610951|610952|610953|610954|610955|610956|610957|610958|610959|610960|610961|610962|610963|610964|610965|610966|610967|610968|610969|610970|610971|610972|610973|610974|610975|610976|610977|610978|610979|610980|610981|610982|610983|610984|610985|610987|611989|611990|611991|616598|616712|621134|621135|621153|621270|621271|621276|621925|621926|621927|621928|621929|621930|621931|621932|650973|654286|654289|654290|654494|654981|672143|861546|861548|905895|972457|977402|977403", "text": "Lynch syndrome" }, { - "baseId": "16792|16794|16795|16796|16797|16798|16799|16801|16803|23970|23971|23980|24273|24276|24279|24281|24284|32119|32126|32128|32129|32133|32135|32136|32137|32138|32145|38609|45201|45202|45207|45208|45209|45210|45212|45215|45219|45220|45222|45223|45224|45225|45227|45228|45230|45231|45232|45233|45234|45235|45237|45238|45239|45240|45241|45242|45243|45244|45245|45246|45247|45249|45251|45255|45257|45258|45259|45261|45262|45346|45347|45348|45349|45350|45351|45352|45354|50026|50027|50028|50029|50030|50032|50033|50035|50071|50072|50073|50074|50075|50076|50077|50078|50079|50080|50081|50082|50083|50084|50085|50086|50087|50089|50090|50091|50140|50141|50142|50143|50144|50145|50146|50147|50148|50150|50151|50152|50153|50154|50155|50156|50157|50158|50159|50160|50161|51637|51638|51639|51640|51642|51666|94639|94641|94642|94646|94647|94648|94649|94650|94652|94654|94656|94657|94660|94661|94663|94665|94666|94667|94668|94669|94671|94672|94674|94676|94678|94682|94685|94687|94690|94691|94692|94693|94694|94698|94702|94703|94705|94706|94707|94708|94709|94711|94713|94714|94719|94720|94721|94722|94725|94727|94729|94730|94731|94733|94734|94735|94736|94737|94738|94739|94740|94741|94742|94743|94748|94750|94752|94753|94754|94755|94756|94759|94760|94761|94762|94763|94765|94778|94779|94781|94783|94786|94788|94795|94796|94799|94802|94804|94807|94810|94811|94812|94813|94814|94815|94816|94818|94821|94826|94829|94831|94832|94833|94834|94836|94837|94838|94840|94842|94843|94844|94845|94851|94852|94855|94856|94857|94861|94864|94865|94869|94871|94873|94874|94876|94877|94878|94883|94886|94888|94889|94895|94897|94898|94902|94908|94916|94917|94921|94922|94923|94924|94931|94932|94934|94935|94937|94943|94944|94946|94947|94948|94949|94950|94951|94953|94955|94956|94958|94959|94960|94962|94964|94968|94970|94971|94972|94974|94975|94980|94981|94989|94992|95008|95009|95010|95012|95014|95015|95019|95020|95021|95022|95025|95026|95028|95029|95033|95036|95037|95038|95039|95042|95044|95045|95046|95047|95048|95063|95067|95075|95078|95079|95090|95093|95103|95104|95107|95114|95117|95119|95122|95123|95125|95127|95132|95135|95146|95147|95150|95151|95152|95157|95158|95159|95160|95162|95164|95165|95170|95172|95179|95183|95186|95188|95192|95201|95207|95209|95211|95212|95213|95215|95218|95219|95224|95225|95226|95227|95229|95231|95233|95234|95235|95242|95253|95254|95255|95256|95257|95265|95266|95267|95268|95276|95283|95286|95292|95294|95298|95300|95308|95312|95313|95315|95316|95320|95323|95324|95326|95328|95329|95331|95332|95337|95342|95343|95344|95351|95355|95360|95362|95366|95369|95374|95376|95377|95380|95381|95383|95384|95385|95389|95391|95394|95399|95400|95404|95406|95414|95419|95420|95421|95425|95426|95427|95428|95429|95431|95433|95436|95438|95439|95442|95447|95448|95449|95451|95453|95454|95455|95461|95466|95468|95475|95477|95479|95480|95481|95483|95484|95485|95486|95487|95488|95490|95494|95497|95503|95506|95512|95514|95516|95522|95523|95535|95539|95541|95542|95545|95550|95552|95555|95556|95557|95558|95561|95562|95564|95565|95568|95571|95574|95575|95576|95581|95586|95588|95590|95592|95594|95596|95600|95601|95602|95603|95606|95611|95614|95615|95616|95621|95622|95623|95624|95625|95640|95645|95646|95650|95652|95657|95658|95660|95662|95663|95665|95666|95668|95669|95681|95685|95690|95691|95694|95697|95703|95704|95717|95718|95724|95725|95728|95731|95732|95734|95741|95747|95748|95756|95759|95760|95764|95765|95767|95770|95771|95774|95775|95777|95780|95784|95785|95786|95789|95792|95793|95799|95804|95805|95806|95809|95812|95813|95814|95815|95816|95823|95829|95830|95834|95835|95841|95846|95854|95855|95856|95861|95871|95878|95881|95882|95887|95888|95889|95890|95895|95898|95904|95909|95912|95915|95916|95918|95919|95923|95926|95927|95930|95977|95982|95983|95984|95987|95988|95989|95991|95994|96003|96004|96014|96016|96025|96028|96029|96030|96031|96032|96035|96038|96039|96040|96041|96044|96045|96047|96048|96049|96052|96058|96061|96064|96065|96067|96091|96094|96098|96099|96102|96103|96105|96111|96112|96116|96123|96129|96132|96135|96137|96143|96145|96149|96150|96152|96154|96157|96160|96169|96171|96172|96173|96176|96177|96182|96187|96188|96189|96194|96195|96196|96202|96203|96205|96212|96219|96220|96222|96223|96225|96231|96238|96241|96242|96243|96246|96248|96256|96257|96258|96264|96269|96271|96272|96273|96274|96277|96279|96280|96283|96286|96287|96290|96291|96293|96297|96300|96307|96308|96310|96318|96329|96330|96331|96341|96343|96346|96348|96349|96350|96353|96356|96361|96362|96367|96378|96379|96381|96382|96384|96385|96388|96394|96396|96402|96407|96408|96412|96417|96420|96421|96423|96424|96425|96428|96430|96432|96433|96437|96439|96440|96443|96447|96449|96451|96458|96460|96461|96462|96463|96465|96466|96468|96470|96471|96473|96474|96475|96478|96479|96481|96490|96491|96494|96496|96497|96498|96503|96505|96506|96510|96512|96513|96514|96516|96517|96518|96520|96522|96525|96526|96528|96529|96530|96531|96535|96536|96537|96538|96539|96543|96545|96546|96564|96565|96567|96569|96571|96572|96573|96574|96575|96576|96578|96580|96581|96585|96586|96587|96588|96589|96590|96592|96594|96600|96601|96608|96609|96610|96614|96615|96616|96623|96624|96625|96632|96636|96646|96647|96649|96652|96653|96655|96656|96657|96660|96664|96669|96671|96675|96678|96680|96681|96695|96697|96707|96708|96711|96714|96717|96718|96720|96721|96722|96724|96727|96728|96729|96735|96736|96739|96742|96743|96744|96746|96747|96748|96764|96765|96774|96776|96778|96779|96780|96781|96785|96786|96787|96788|96790|96792|96793|96794|96795|96796|96798|96799|96802|96803|96804|96805|96806|96808|96809|96812|96813|96815|96816|96818|96825|96826|96830|96836|96837|96841|96843|96844|96845|96850|96851|96852|96856|96857|96858|96861|98484|98485|98486|98572|99143|132404|132489|132493|132498|132502|133009|133011|133012|133014|133015|133017|133018|133019|133020|133021|133022|133023|133024|133025|133026|133027|133028|133029|133030|133031|133032|133033|133034|133035|133036|133037|133038|133039|133041|133042|133043|133044|133045|133046|133048|133049|133050|133051|133052|133053|133054|133055|133057|133060|133061|133062|133063|133064|133065|133066|133067|133068|133069|133070|133071|133072|133073|133074|133075|133076|133077|133078|133079|133080|133082|133083|133084|133085|133086|133087|133088|133089|133090|133091|133093|133094|133095|133096|133097|133098|133099|133100|133101|133103|133104|133105|133106|133107|133108|133110|133111|133112|133208|133209|133210|133211|133212|133213|133214|133215|133216|133217|133218|133219|133220|133221|133222|133223|133224|133225|133226|133227|133228|133230|133231|133232|133233|133234|133235|133236|133237|133238|133239|133240|133245|133246|133247|133248|133249|133250|133251|133252|133253|133254|133255|133256|133257|133258|133259|133305|133307|133308|136445|136478|136496|136506|136509|136519|136520|138395|138396|138397|138579|138580|138581|138582|138583|138584|138585|138587|138588|138589|138590|138591|138592|138594|138595|138801|138803|138804|138805|138806|138808|138809|138810|138811|139540|139541|139542|139544|139545|139546|139547|139548|139549|139550|139551|139552|139553|139554|139555|139556|139557|139558|139559|139560|139561|139563|139564|139565|139566|139567|139568|139569|139570|139571|139572|139573|139574|139575|139576|139577|139644|139645|139646|139647|139649|139650|139651|139652|139653|139654|139655|139656|139657|139658|139659|139729|139730|139739|139745|140919|141933|141957|141958|141959|141960|141961|141962|142400|142403|142404|142406|142408|142409|150472|150473|150488|150493|150494|150499|150506|150511|150518|150524|150543|150550|150552|150557|150561|150562|150578|150580|150594|150598|150602|150606|150616|150637|150651|150661|150674|150675|150714|150746|150756|150772|150792|150794|150799|150808|150829|150835|150836|150861|150877|150880|150886|150891|150894|150902|150911|150946|150950|150972|150979|150980|150988|150994|150995|151010|151013|151036|151041|151042|151065|151078|151079|151108|151109|151110|151120|151144|151148|151151|151156|151189|151214|151216|151237|151239|151255|151299|151303|151317|151320|151364|151365|151369|151374|151378|151381|151397|151427|151465|151472|151483|151484|151546|151585|151588|151599|151605|151621|151622|151627|151630|151632|151638|151722|151723|151731|151780|151824|151843|151877|151882|151883|151888|151895|151932|151946|151948|151949|151958|151965|151971|151974|151978|151984|151986|151990|151991|151993|152019|152041|152049|152055|152063|152074|152127|152135|152140|152153|152161|152175|152178|152204|152209|152210|152222|152223|152230|152239|152253|152275|152277|152283|152286|152290|152291|152301|152311|152327|152332|152334|152337|152339|152349|152364|152372|152377|152378|152379|152384|152385|152386|152389|152394|152399|152402|152412|152422|152429|152432|152435|152452|152479|152481|152482|152487|152491|152492|152495|152552|152556|152570|152586|152589|152591|152593|152604|152609|152611|152621|152643|152650|152660|152673|152674|152675|152676|152678|152684|152694|152716|152721|152724|152732|166272|166275|167463|171076|171077|172174|179979|179980|179981|179982|179984|179985|179986|179988|179989|179990|179991|179993|179994|179995|179997|179998|180000|180001|180002|180005|180007|180009|180010|180011|180012|180014|180015|180016|180017|180020|180021|180022|180023|180024|180027|180028|180029|180031|180033|180034|180036|180037|180038|180039|180040|180042|180044|180045|180046|180048|180049|180050|180051|180053|180054|180055|180056|180057|180058|180059|180060|180061|180062|180063|180064|180066|180067|180068|180069|180070|180071|180072|180073|180074|180075|180077|180078|180079|180080|180081|180082|180083|180084|180085|180086|180087|180088|180089|180090|180092|180093|180095|180096|180098|180099|180100|180103|180104|180128|180129|180132|180133|180134|180135|180138|180139|180140|180143|180144|180148|180149|180150|180151|180153|180154|180157|180158|180254|180255|180256|180257|180259|180260|180261|180263|180264|180265|180267|180271|180272|180273|181201|181202|181203|181861|181886|181888|181889|181890|181891|181892|181894|181895|181896|181897|181898|181899|181900|181901|181904|181905|181907|181908|181909|181913|181915|181916|181917|181918|181922|181923|181927|181928|181929|181930|181931|181933|181934|181935|181936|181937|181938|181939|181940|181941|181942|181943|181944|181946|181948|181949|181951|181952|181953|181954|181955|181957|181958|181959|181960|181963|181964|181965|181967|181968|181969|181970|181971|181972|181973|181975|181976|181977|181978|181979|181980|181981|181982|181984|181985|181986|181988|181989|181990|181991|181992|181993|181995|181996|181998|182000|182001|182002|182003|182004|182005|182008|182009|182010|182014|182015|182016|182017|182018|182019|182020|182023|182025|182027|182028|182029|182030|182031|182032|182033|182034|182037|182038|182039|182040|182042|182043|182045|182046|182048|182053|182055|182058|182060|182061|182062|182063|182065|182066|182068|182070|182072|182073|182074|182075|182077|182079|182080|182082|182083|182084|182085|182086|182087|182088|182089|182090|182091|182095|182097|182098|182099|182100|182101|182103|182104|182105|182106|182107|182109|182110|182111|182114|182115|182116|182118|182120|182123|182124|182125|182126|182127|182129|182130|182133|182134|182135|182136|182138|182139|182140|182142|182143|182144|182145|182146|182147|182148|182150|182152|182153|182154|182155|182156|182157|182159|182160|182161|182162|182163|182164|182165|182166|182167|182168|182169|182170|182171|182173|182174|182175|182176|182177|182178|182179|182182|182183|182184|182185|182188|182189|182190|182191|182192|182194|182195|182196|182197|182214|182216|182217|182218|182220|182221|182223|182224|182225|182226|182227|182228|182229|182230|182231|182234|182235|182236|182239|182243|182244|182247|182248|182250|182251|182252|182253|182254|182255|182256|182257|182258|182259|182261|182262|182263|182264|182265|182268|182269|182270|182271|182274|182275|182276|182277|182278|182279|182280|182281|182282|182283|182284|182285|182287|182288|182290|182291|182294|182296|182300|182301|182302|182306|182307|182308|182682|182683|182684|182685|182686|182687|182689|182690|182691|182692|182694|182696|182697|182698|182699|182700|182701|182702|182703|182705|182706|182708|182709|182710|182713|182714|182716|182717|182718|182719|182721|182722|182723|182724|182726|182727|182728|182729|182730|182732|182733|182734|182735|182736|182737|182738|182740|182741|182742|182743|182744|182745|182746|182747|182748|182749|182751|182752|182753|182754|182756|182758|182759|182760|182761|182762|182763|182764|182765|182766|182767|182768|182769|182770|182771|182772|182773|182774|182775|182776|182777|182779|182780|182781|182782|182783|182784|182785|182786|182787|182789|182790|182791|182792|182793|182794|182795|182796|182797|182798|182799|182801|182802|182803|182805|182806|182807|182808|182810|182811|182812|182813|182814|182815|182816|182817|182818|182819|182820|182821|182823|185974|185975|185977|185979|185980|185982|185983|185984|185986|185987|185989|185990|185991|185992|185995|185997|185998|186000|186001|186004|186005|186013|186014|186015|186016|186017|186079|186080|186081|186082|186083|186085|186086|186313|186317|190022|190024|190025|190109|191164|194275|194276|195590|198613|198614|212153|212155|212158|212161|212166|212171|212176|212182|212185|212186|212187|212188|212190|212191|212192|212193|212196|212197|212198|212199|212200|212201|212202|212203|212204|212205|212206|212207|212209|212210|212211|212212|212213|212214|212215|212216|212218|212219|212221|212222|212223|212224|212225|212226|212227|212228|212233|212235|212236|212237|212239|212240|212241|212246|212248|212249|212250|212253|212254|212257|212258|212261|212262|212264|212268|212269|212297|212300|212301|212303|212304|212305|212306|212308|212309|212310|212311|212312|212313|212314|212315|212316|212317|212318|212320|212322|212323|212324|212325|212326|212327|212329|212330|212586|212587|212588|212589|212590|212592|212593|212594|212598|212599|212601|212602|212603|212605|212607|212609|212610|212611|212612|212613|214575|214577|214582|214586|214589|214590|214591|214593|214594|214596|214597|214598|214600|214603|214606|214607|214608|214615|214616|214625|214628|214632|214639|214642|215258|220980|221182|221183|221202|221204|221205|221206|221207|221208|221209|221210|221211|221212|221213|221214|221216|221217|221219|221220|221222|221223|221225|221227|221228|221231|221232|221235|221236|221237|221238|221239|221241|221242|221243|221244|221245|221246|221247|221248|221249|221251|221252|221253|221254|221255|221256|221257|221258|221259|221260|221261|221262|221263|221264|221267|221268|221269|221271|221272|221274|221275|221276|221277|221281|221282|221283|221284|221286|221287|221288|221289|221290|221291|221292|221293|221295|221296|221297|221298|221299|221301|221302|221303|221304|221305|221306|221307|221308|221309|221311|221313|221314|221376|221378|221379|221381|221382|221383|221385|221386|221387|221388|221389|221391|221392|221393|221394|221395|221396|221397|221398|221401|221402|221403|221405|221407|221408|221410|221411|221703|221705|221706|221707|221708|221710|221712|221713|221714|221715|221716|221719|221720|221721|221722|221723|221724|221725|221726|221727|221728|221733|221734|221735|221736|226296|226298|226299|226300|226301|226302|226303|226304|226305|226306|226307|226314|226315|226327|226328|226329|228967|231520|231526|231527|231528|231532|231535|231537|231541|231544|231547|231549|231550|231551|231552|231553|231554|231555|231556|231564|231565|231567|231569|231570|231572|231573|231574|231576|231577|231580|231581|231582|231584|231585|231586|231587|231590|231592|231594|231599|231607|231609|231610|231612|231613|231614|231616|231617|231618|231619|231621|231623|231624|231625|231626|231627|231628|231655|231656|231657|231658|231659|231660|231662|231663|231664|231666|231668|231669|231670|231671|231673|231675|231676|231677|231678|231680|231681|231682|231683|231684|231686|231687|231688|231691|231692|231694|231695|231698|232502|232504|232505|232506|232508|232509|232511|232512|232513|232515|232516|232517|232522|232524|232525|232528|232530|232535|232536|232538|232540|232542|232544|232545|232547|232550|232551|232553|232554|232555|232556|232558|232559|232560|232562|232564|232566|232568|232570|232571|232572|232574|232576|232578|232579|232580|232583|232584|232587|232588|232589|232590|232591|232592|232593|232595|232597|232601|232602|232603|232606|232607|232608|232609|232610|232611|232612|232615|232616|232618|232620|232621|232622|232624|232625|232626|232629|232630|232631|232633|232635|232639|232640|232641|232643|232644|232646|232647|232648|232650|232652|232653|232654|232655|232656|232657|232660|232662|232664|232665|232667|232668|232669|232670|232671|232674|232677|232679|232680|232682|232683|232684|232691|232692|232693|232694|232695|232697|232698|232699|232700|232701|232702|232705|232707|232708|232712|232713|232714|232715|232716|232717|232718|232719|232721|232722|232723|232726|232727|232728|232732|232733|232736|232737|232740|232741|232742|232744|232747|232748|232750|232752|232754|232755|232757|232761|232762|232763|232764|232765|232766|232767|232769|232770|232771|232772|232774|232775|232777|232778|232780|232781|232784|232785|232786|232787|232789|232791|232792|232793|232794|232795|232796|232797|232798|232800|232801|232802|232804|232806|232807|232808|232809|232812|232813|232815|232816|232817|232818|232819|232820|232821|232822|232823|232824|232825|232826|232827|232829|232831|232832|232833|232834|232835|232836|232837|232840|232841|232842|232843|232844|232845|232847|232850|232851|232852|232853|232854|232855|232857|232873|232876|232877|232880|232885|232886|232888|232890|232893|232894|232897|232898|232899|232905|232911|232912|232915|232916|232917|232918|232919|232921|232923|232926|232927|232928|232931|232933|232937|232941|232942|232943|232944|232946|232947|232948|232953|232954|232956|232957|232959|232962|232964|232966|232967|232970|232973|232974|232975|232977|232978|232979|232980|233471|233473|233474|233475|233477|233479|233480|233481|233483|233484|233485|233487|233488|233489|233490|233492|233493|233494|233497|233500|233502|233503|233504|233505|233506|233507|233509|233512|233513|233514|233515|233516|233518|233519|233520|233521|233522|233525|233526|233527|233530|233531|233532|233533|233535|233536|233537|233538|233539|233541|233542|233544|233545|233549|233550|233551|233552|233554|233555|233556|233558|233560|233562|233564|233565|233566|233567|233568|233569|233571|233572|233574|233577|233578|233579|233580|233581|233584|233585|233586|233588|233589|233590|233591|233594|233595|233597|233598|233599|233600|233601|233602|233605|233607|233610|233611|233612|233614|233615|238802|238803|238804|238806|238807|238808|238809|238810|238814|238815|238816|238817|238818|238819|238820|238821|238822|238823|238824|238826|238827|238828|238829|238831|238833|238834|238835|238836|238838|238839|238840|238841|238842|238844|238845|238847|238850|238851|238852|238853|238854|238860|238861|238862|238864|238865|238866|238867|238868|238869|238871|238872|238873|238874|238875|238877|238878|238879|238880|238881|238882|238883|238884|238887|238889|238893|238896|238900|238901|238902|238904|238905|238907|238908|238909|238911|238912|238913|238914|238917|238918|238919|238921|238922|238923|238924|238925|238926|238928|238929|238932|238933|238934|238935|238937|238938|238939|238941|238942|238943|238946|238950|238951|238954|238955|238956|238959|239140|239141|239143|239145|239146|239147|239148|239149|239152|239154|239156|239159|239160|239162|239164|239166|239167|239168|239170|239171|239172|239174|239175|239177|239179|239180|239183|239184|239185|239187|239188|239190|239191|240101|240102|240107|240108|240109|240110|240113|240114|240116|240118|240119|240120|240121|240123|240124|240126|240128|240129|240130|240131|240132|240133|240134|240135|240138|240139|240140|240141|240142|240145|240147|240149|240150|240151|240152|240153|240155|240156|240157|244366|244367|244370|244372|244373|244376|244377|244378|244379|244381|244383|244385|244389|244391|244392|244393|244394|244395|244398|244399|244409|246922|246925|250742|251099|259738|259740|259741|259761|259868|262407|270566|275543|286667|286681|286690|287401|289830|289831|290191|290207|290924|294554|306559|311471|311622|358720|358722|358727|358738|358743|358744|358747|358803|359365|359501|359650|359807|361856|366411|366418|366419|366420|366430|366450|366479|366480|366492|366494|366517|366530|366535|366547|366549|366556|366577|366582|366635|366641|366651|366654|366666|366676|366678|366696|366708|366710|366712|366715|366725|366726|366728|366739|366741|366744|366745|366750|366752|366753|366762|366766|366768|366771|366773|366774|366776|366783|366785|366792|366796|366805|366812|366827|366848|366851|366854|367119|367127|367132|367139|367147|367155|367162|367181|367182|367382|367390|367392|367399|367400|367402|367404|367410|367412|367418|367425|367431|367434|367435|367437|367439|367446|367448|367450|367459|367460|367461|367488|367498|367506|367519|367534|367537|367564|367569|367578|367579|367582|368406|368416|368417|368424|368446|368470|369171|369177|369184|369189|369192|369210|369213|369218|369234|369505|369523|369531|369533|369541|369554|369557|369813|369823|369828|369830|369836|369838|369872|369873|369886|371191|371194|371209|371227|371246|389527|392670|392675|392681|392686|392692|392697|392698|392699|392701|392703|392710|392713|392721|392724|392727|392733|392735|392736|392738|392739|392744|392747|392755|392759|392763|392767|392768|392771|392774|392775|392779|392780|392784|392793|392794|392796|392804|392805|392808|392810|392813|392814|392817|392820|392825|392827|392829|392830|392832|392837|392838|392840|392841|392842|392843|392844|392846|392847|392848|392849|392851|392853|392857|392859|392860|392863|392864|392867|392868|392869|392876|392878|392879|392880|392881|392886|392887|392888|392889|392890|392892|392894|392895|392898|392902|392904|392907|392908|392910|392919|392922|392925|392930|392931|392932|392936|392937|392939|392941|392945|392946|392947|392948|392949|392951|392952|392954|392956|392957|392964|392965|392967|392968|392971|392977|392978|392982|392983|392984|392985|392988|392989|392991|392993|392994|392995|392998|393001|393002|393003|393008|393009|393013|393014|393017|393019|393022|393024|393026|393027|393029|393033|393034|393040|393041|393042|393043|393045|393046|393047|393049|393051|393053|393054|393055|393056|393057|393065|393069|393073|393077|393078|393083|393084|393088|393089|393094|393095|393097|393101|393103|393108|393110|393124|393126|393128|393130|393132|393138|393140|393142|393145|393148|393154|393155|393161|393162|393164|393170|393172|393182|393184|393192|393193|393197|393199|393201|393202|393207|393214|393215|393237|393239|393246|393251|393253|393265|393268|393290|393302|393305|393308|393318|393323|393336|393340|393344|393348|393356|393364|393366|393376|393377|393381|393382|393386|393398|393399|393422|393425|393428|393430|393444|393459|393462|393464|393473|393478|393480|393482|393488|393490|393492|393497|393502|393507|393509|393512|393513|393517|393524|393526|393527|393528|393532|393536|393539|393543|393546|393548|393655|393663|393666|393670|393672|393681|393687|393705|393706|393717|393731|393736|393741|393832|393837|393843|393850|393857|393861|393864|393885|393889|393892|393894|393897|393904|393913|393915|393937|395688|395702|395710|395714|395718|395732|395740|395745|395746|395753|395756|395769|395918|395923|395925|395929|395935|395940|395941|395947|395953|395955|395958|395963|395965|395972|395976|395978|395992|395999|396000|396001|396023|396026|396031|396042|396044|396048|396058|396062|396070|396076|396087|396094|396095|396106|396111|396117|396118|396333|396336|396340|396341|396343|396349|396358|396360|396364|396372|396398|405746|405747|405748|405749|405750|405751|405752|405756|405757|405759|405761|405762|405767|405768|405769|405771|405773|405776|405780|405781|405782|405787|405788|405791|405792|405797|405798|405799|405800|405802|405804|405807|405809|405810|405812|405817|405818|405824|405825|405830|405831|405832|405833|405834|405835|405836|405837|405839|405840|405843|405844|405846|405847|405856|405859|405861|405862|405864|405866|405869|405870|405871|405874|405878|405879|405880|405882|405883|405884|405886|405887|405890|405892|405896|405897|405898|405900|405902|405903|405905|405906|405907|405909|405910|405913|405914|405917|405919|405920|405923|405924|405927|405928|405930|405932|405934|405935|405936|405940|405941|405942|405946|405947|405948|405949|405950|405951|405952|405953|405958|405959|405960|405961|405962|405965|405966|405970|405972|405974|405975|405976|406192|406195|406196|406197|406198|406203|406204|406206|406207|406209|406211|406213|406215|406216|406218|406222|406224|406227|406233|406234|406238|406240|406241|406242|406247|406251|406252|406254|406258|406259|406260|406263|407166|407167|407168|407169|407170|407171|407175|407176|407177|407179|407181|407182|407184|407186|407188|407189|407190|407192|407195|407196|407197|407198|407201|407204|407207|407208|407211|407212|407213|407215|407218|407221|407222|407223|407224|407226|407229|407230|407233|407234|407236|416961|416964|417649|419309|419314|419316|419321|419322|419323|419330|419340|419342|419344|419345|419347|419349|419353|419355|419357|419368|419388|419390|419392|419395|419397|419416|419417|419419|419422|419425|419428|419431|419435|419436|419437|419438|419439|419441|419443|419444|419446|419449|419455|419457|419458|419463|419465|419467|419469|419470|419471|419472|419473|419475|419476|419478|419480|419484|419486|419497|419503|419505|419507|419509|419511|419520|419522|419532|419541|419543|419545|419548|419549|419558|419562|419568|419569|419572|419573|419578|419580|419582|419584|419587|427152|427153|427155|427157|427159|427162|427167|427171|427181|427184|427193|427208|427213|427214|427327|428061|428062|432509|432510|432511|432513|432514|432516|432520|432522|432523|432525|432531|432534|432559|432561|432571|432572|432643|432646|432648|432650|433701|443258|443262|443263|443264|443265|443266|443267|443417|443419|443421|443422|443423|443424|443425|444148|448400|448415|448416|448506|448509|448526|448536|448541|448542|448548|448553|448557|448568|448573|448575|448579|448592|448602|448605|448649|448654|450944|450949|450952|450955|450967|450972|450977|450980|450981|450984|450985|450988|450991|450993|450996|451003|451012|451014|451018|451031|451036|451042|451062|451063|451066|451067|451070|451073|451075|451077|451082|451084|451085|451086|451087|451088|451089|451090|451092|451093|451096|451097|451102|451103|451108|451109|451111|451114|451116|451119|451120|451121|451123|451129|451130|451131|451132|451133|451137|451138|451141|451142|451143|451149|451150|451151|451155|451156|451159|451164|451165|451166|451167|451168|451170|451172|451174|451175|451176|451177|451179|451181|451184|451186|451189|451191|451193|451195|451197|451199|451200|451201|451202|451203|451208|451209|451211|451213|451215|451218|451220|451221|451223|451227|451228|451229|451232|451233|451234|451237|451242|451243|451244|451246|451247|451248|451249|451250|451252|451253|451254|451255|451257|451258|451259|451260|451261|451262|451263|451264|451265|451266|451267|451268|451269|451270|451271|451272|451273|451274|451275|451276|451277|451278|451279|451280|451281|451282|451283|451284|451285|451286|451287|451288|451289|451290|451291|451292|451293|451294|451295|451296|451297|451298|451299|451300|451301|451302|451303|451304|451305|451306|451307|451308|451309|451310|451311|451312|451313|451314|451315|451316|451317|451318|451319|451320|451321|451322|451323|451324|451325|451326|451327|451328|451329|451330|451331|451332|451333|451334|451335|451336|451337|451338|451339|451340|451341|451342|451343|451344|451345|451346|451347|451348|451349|451350|451351|451352|451353|451354|451355|451356|451357|451358|451359|451361|451362|451363|451364|451365|451368|451369|451370|451371|451372|451375|451377|451379|451380|451381|451382|451383|451385|451386|451387|451390|451391|451392|451398|451401|451404|451406|451408|451411|451413|451414|451415|451418|451419|451420|451424|451425|451426|451427|451432|451433|451435|451436|451439|451440|451442|451444|451445|451447|451448|451450|451451|451453|451454|451455|451456|451457|451458|451460|451463|451465|451466|451469|451470|451471|451473|451474|451475|451476|451478|451479|451481|451482|451484|451485|451487|451488|451489|451490|451493|451494|451495|451496|451498|451500|451501|451502|451503|451504|451505|451507|451509|451511|451513|451514|451515|451517|451518|451519|451522|451523|451524|451526|451528|451531|451532|451537|451538|451541|451543|451544|451546|451547|451548|451550|451551|451552|451553|451554|451555|451556|451560|451568|451569|451571|451573|451574|451575|451576|451579|451582|451585|451587|451589|451594|451596|451598|451601|451604|451608|451609|451611|451614|451615|451620|451622|451624|451626|451628|451630|451633|451635|451636|451638|451639|451640|451641|451642|451646|451651|451653|451655|451657|451658|451659|451661|451664|451667|451670|451671|451675|451676|451677|451678|451679|451682|451683|451685|451686|451696|451697|451698|451702|451803|451885|452022|452024|452076|452079|452084|452087|452089|452090|452093|452095|452097|452098|452100|452102|452105|452106|452108|452112|452115|452117|452125|452127|452133|452135|452137|452139|452140|452143|452146|452148|452341|452343|452345|452348|452351|452352|452353|452354|452369|452371|452373|452375|452376|452382|452384|452385|452387|452389|452390|452392|452394|452400|452401|452402|452404|452405|452407|452409|452411|452413|452428|452431|452433|452435|452442|452444|452447|452453|452458|452469|452477|452482|452485|452494|452521|452524|452528|452548|452560|452563|452568|452574|452575|452578|452594|452612|452616|452618|452620|452622|452625|452627|452630|452632|452639|452641|452643|452645|452647|452649|452665|452671|452672|452676|452681|452684|455868|455879|456123|456126|456133|456139|456141|456470|456473|456479|456760|456764|456768|456770|456774|456778|456783|456792|456794|456798|456802|456804|456817|456826|456827|456828|456829|456833|456835|456837|456838|456841|456852|456858|456860|456866|457179|457190|457195|457197|457201|457203|457207|457210|457214|457221|457222|457228|457229|457242|457251|457256|457260|457262|457269|457270|457285|457292|457293|457295|457304|457309|457314|457318|457325|457329|457330|457334|457339|457342|457344|457345|457356|457365|457373|457377|457395|457396|457413|457415|457417|457419|457421|457432|457434|457439|457443|457449|457452|457454|457459|457480|457484|457487|457489|457491|457494|457497|457500|457505|457507|457518|457520|457522|457813|457822|457824|457825|457828|457831|457834|457841|457842|457845|457848|457852|457853|457854|457858|457859|457861|457863|457871|457877|457881|457889|457891|457897|457899|457903|457905|472718|472727|472736|472738|472756|472758|472765|472768|472774|472775|472779|472781|472782|472785|472786|472788|472789|472794|472797|472798|472804|472806|472808|472810|472812|472814|472815|472816|472820|472822|472823|472825|472830|472831|472833|472834|472839|472849|472852|472853|472865|472866|472869|472872|472873|472874|472875|472876|472877|472878|472882|472883|472889|472891|472894|472895|472897|472905|472910|472913|472914|472916|472917|472922|472924|472925|472926|472927|472932|472934|472935|472939|472942|472945|472946|472947|472950|472952|472955|472956|472959|472961|472967|472973|472974|472978|472983|472986|472987|472988|472995|472996|473000|473001|473003|473005|473006|473008|473009|473011|473013|473015|473017|473018|473020|473025|473027|473032|473033|473035|473036|473041|473045|473049|473051|473055|473058|473063|473065|473067|473077|473080|473083|473084|473085|473086|473088|473090|473093|473097|473099|473105|473108|473109|473111|473114|473115|473116|473117|473118|473120|473124|473125|473133|473136|473137|473139|473140|473146|473147|473148|473149|473151|473152|473153|473154|473155|473156|473159|473163|473164|473166|473168|473173|473174|473175|473176|473177|473178|473190|473193|473196|473197|473198|473199|473202|473204|473205|473208|473209|473210|473211|473218|473219|473220|473221|473222|473228|473234|473236|473237|473239|473240|473245|473251|473254|473256|473257|473258|473259|473260|473265|473270|473284|473285|473291|473292|473294|473295|473299|473303|473306|473316|473318|473319|473320|473324|473328|473331|473333|473335|473338|473339|473341|473342|473351|473354|473360|473361|473364|473369|473370|473376|473377|473378|473379|473385|473386|473394|473398|473399|473400|473401|473402|473403|473408|473410|473411|473413|473417|473420|473421|473426|473429|473430|473434|473436|473442|473448|473460|473466|473476|473477|473481|473482|473486|473488|473492|473493|473495|473510|473516|473517|473526|473549|473558|473567|473568|473575|473593|473599|473623|473640|473642|473643|473649|473661|474500|474501|474510|474515|474518|474521|474533|474534|474538|474540|474541|474547|474555|474561|474567|474569|474573|474577|474578|474580|474581|474583|474584|474585|474586|474588|474589|474594|474599|474600|474601|474605|474609|474610|474611|474612|474615|474616|474620|474626|474636|474642|474643|474645|474647|474648|474649|474650|474651|474656|474657|474658|474661|474666|474670|474676|474677|474678|474679|474680|474681|474686|474687|474688|474689|474691|474692|474705|474706|474711|474712|474714|474717|474719|474726|474733|474748|474752|474761|474766|474769|474772|474774|474778|474784|474796|474805|474833|474834|474843|474855|482394|482396|482397|482398|482405|482407|482409|482410|482413|482415|482416|482418|482423|482424|482427|482431|482432|482433|482434|482436|482440|482442|482447|482449|482450|482452|482453|482454|482455|482456|482458|482459|482463|482466|482470|482471|482472|482478|482480|482482|482483|482485|482486|482489|482491|482495|482500|482505|482506|482518|482522|482530|482549|482550|482563|482589|482653|482665|482668|482704|482715|483296|483299|483320|483321|483341|483342|483344|483347|483349|483355|483357|483365|483366|483371|483382|483388|483399|483414|483418|483423|483431|483440|483451|483456|483457|483458|483461|483465|483468|483469|483471|483474|483476|483481|483483|483486|483487|483490|483493|483495|483497|483504|483520|483527|483531|483533|483548|483557|483564|483568|483577|483579|483586|483589|483595|483601|483606|483616|483632|483634|483639|483886|483893|483898|483922|483942|483947|483948|483958|483970|483979|483996|484009|484121|484132|484145|485596|485597|485602|485609|486239|486919|486923|486933|486966|486969|486982|486989|486996|486999|487002|487003|487006|487010|487082|487094|487220|487225|487307|487316|487320|487353|489475|496233|496281|496704|496888|499753|499799|499821|499828|500011|500167|500174|500175|500196|500236|500257|500268|500468|501768|502067|502070|502090|502415|502426|516195|516196|516203|516204|516207|516214|516222|516229|516231|516235|516240|516241|516245|516328|516333|516341|518262|518269|518270|518274|518275|518277|518281|518282|518285|518288|518293|518294|518295|518297|518299|518300|518303|518304|518307|518308|518309|518310|518312|518313|518314|518315|518316|518318|518319|518320|518322|518324|518325|518326|518332|518333|518334|518335|518336|518337|518338|518340|518341|518342|518346|518347|518348|518349|518350|518351|518352|518353|518355|518357|518359|518360|518363|518365|518367|518368|518369|518370|518371|518372|518373|518374|518376|518378|518379|518380|518381|518382|518383|518384|518385|518386|518388|518389|518390|518391|518392|518393|518394|518395|518396|518397|518398|518399|518400|518401|518403|518404|518405|518406|518407|518408|518409|518410|518411|518412|518413|518414|518415|518416|518417|518418|518419|518420|518421|518422|518423|518424|518425|518426|518427|518428|518429|518430|518431|518432|518433|518434|518435|518436|518437|518438|518439|518440|518441|518442|518443|518444|518445|518446|518447|518448|518449|518450|518451|518452|518453|518454|518455|518456|518458|518459|518460|518461|518462|518463|518464|518465|518467|518468|518469|518470|518471|518472|518473|518474|518475|518476|518477|518478|518479|518480|518481|518482|518483|518485|518487|518488|518490|518491|518492|518502|518504|518506|518507|518509|518511|518513|518515|518518|518522|518523|518524|518527|518529|518530|518532|518533|518537|518538|518545|518546|518547|518549|518552|518553|518555|518559|518560|518570|518572|518574|518576|518578|518586|518589|518596|518605|518608|518612|518812|518813|518891|519086|519087|519088|519093|519097|519098|519100|519104|519111|519112|519114|519119|519123|519124|519130|519132|519141|519145|519150|519165|519168|519174|519182|519183|519186|519188|519262|519264|519274|519275|519276|519278|519280|519282|519285|519286|519287|519288|519289|519291|519293|519294|519298|519300|519309|519311|519313|519314|519315|519318|519320|519322|519323|519324|519328|519330|519331|519336|519337|519339|519340|521889|521900|522261|522304|522640|522713|522718|522721|522723|522742|522750|522751|522752|522754|522757|522758|522760|522766|522968|522972|522979|522980|522982|522986|522988|522992|522994|522995|523007|523008|523010|523018|523020|523027|523028|523110|523114|523122|523123|523129|523131|523135|523143|523144|523145|523152|523169|523170|523185|523188|523190|523193|523195|523196|523203|523210|523213|523219|523222|523319|523324|523330|523332|523335|523337|523343|523344|523346|523347|523350|523352|523354|523360|523362|523364|536247|536250|536252|536258|536279|536326|536331|537753|539206|539217|539221|539228|539264|539266|539268|539271|551836|551839|551840|551848|552276|557444|557448|557450|557452|557497|557499|557501|557507|557509|558119|558121|558123|558125|558127|558129|558131|558133|558135|558137|558139|558141|558143|558145|558147|558149|558151|558153|558155|558157|558159|558161|558163|558165|558167|558169|558171|558173|558175|558177|558179|558181|558183|558185|558187|558189|558191|558193|558195|558197|558199|558201|558203|558207|558209|558211|558213|558215|558217|558219|558221|558223|558225|558227|558229|558231|558233|558235|558237|558306|558308|558482|558484|558486|558488|558490|558492|558494|558496|558498|558500|558502|558504|558506|558508|558510|558512|558514|558516|558518|558520|558522|558524|558526|558528|558530|558532|558534|558536|558538|558540|558542|558544|558546|558548|558550|558552|558554|558556|558558|558560|558562|558564|558566|558568|558570|558572|558574|558576|558578|558580|558582|558584|558586|558588|558590|558592|558594|558596|558598|558600|558602|558604|558606|558608|558645|558647|558657|558659|558661|558663|558702|558704|558708|558884|558886|558888|558890|558892|558894|558896|558898|558900|558902|558904|558906|558908|558910|558912|558914|558916|559137|559142|559144|559146|559154|559223|559225|559229|559429|559431|559433|559435|559437|559439|559441|559443|559445|559447|559449|560653|560655|560657|560659|560661|560663|560665|560667|560669|560671|560673|560675|560677|560679|560681|560683|560685|560687|560689|560691|560693|560695|560697|560699|560701|560703|560705|560707|560709|560711|560713|560715|560717|560719|560721|560723|560725|560727|560729|560731|560733|560735|560737|560739|560741|560743|560745|560747|560749|560754|560764|560766|560769|560770|560778|560780|560782|560784|560786|560789|560792|560794|560796|560799|560802|560805|560807|560810|560813|560814|560818|560822|560825|560827|560831|560832|560834|561048|561050|561076|561082|561151|561154|561156|561158|561390|561393|561395|561397|561399|561409|561411|561413|561415|561417|561418|561420|561422|561427|561428|561434|561436|561441|561551|561555|561561|561568|561574|561577|561578|561579|561592|561595|561603|561604|561620|561621|561625|561628|561631|561632|561633|561641|561643|561645|561647|561651|561652|561654|561655|561657|561660|561662|561664|561666|561668|561669|561671|561672|561673|561674|561675|561677|561680|561682|561683|561684|561688|561690|561691|561694|561697|561698|561699|561701|561703|561706|561707|561708|561711|561713|561714|561715|561716|561719|561720|561721|561731|561733|561735|561736|561747|561751|561752|561761|561764|561766|561772|561775|561784|561792|561801|561804|561805|561806|561810|561816|562005|562006|562009|562010|562016|562037|562044|562045|562048|562051|562052|562053|562061|562066|562072|562073|562082|562083|562084|562089|562103|562104|562105|562107|562108|562123|562125|562181|562182|562187|562188|562674|562679|562692|562694|562695|562697|562699|562700|562707|562714|562722|562724|562729|562731|562740|562741|563859|563865|563867|563880|564318|564319|564328|564336|564339|564342|564343|564348|564359|564360|564365|564367|564373|564374|564378|564385|564386|564388|564390|566078|566080|566083|566106|566108|566109|566113|566114|566118|566912|566913|566916|566918|566921|566923|566928|566934|566938|566962|566982|566986|566993|566994|567003|567004|567012|567016|567022|567025|567031|567035|567038|567040|567042|567045|567051|567057|567062|567077|567089|567090|567104|567106|575527|575545|575546|575668|575673|575676|575680|575684|575700|575703|575783|576258|576260|582331|610931|610932|610966|610987|611029|611035|611076|611289|611683|611989|613497|616603|616605|616608|616610|616612|616614|616617|616621|616630|616633|616634|616641|616651|616652|616656|616664|616678|616681|616686|616687|616690|616694|616703|616707|616709|616712|616715|616720|616732|616738|616739|616744|616745|616750|616752|616759|616767|616784|616785|616787|616840|616843|616846|616848|616852|616861|616867|616869|616870|616876|616880|616881|616883|617373|617375|617377|617378|617384|617391|617392|617393|617394|617397|617398|617400|617406|617408|619168|621136|621154|621156|621157|621265|621268|621273|621275|630074|630075|630076|630077|630078|630079|630080|630081|630082|630083|630084|630085|630086|630087|630088|630089|630090|630091|630092|630093|630094|630095|630096|630097|630098|630099|630100|630101|630102|630103|630104|630105|630106|630107|630108|630109|630110|630111|630112|630113|630114|630115|630116|630117|630118|630119|630120|630121|630122|630123|630124|630125|630126|630127|630128|630129|630130|630131|630132|630133|630134|630135|630136|630137|630138|630139|630140|630141|630142|630143|630144|630145|630146|630147|630148|630149|630150|630151|630152|630153|630154|630155|630156|630157|630158|630159|630160|630161|630162|630163|630164|630165|630166|630167|630168|630169|630170|630171|630172|630173|630174|630175|630176|630177|630178|630179|630180|630181|630182|630183|630184|630185|630186|630187|630188|630189|630190|630191|630192|630193|630194|630195|630196|630197|630198|630199|630200|630201|630202|630203|630204|630205|630206|630207|630208|630209|630210|630211|630212|630213|630214|630215|630216|630217|630218|630219|630220|630221|630222|630223|630224|630225|630226|630227|630228|630229|630230|630231|630232|630233|630234|630235|630236|630237|630238|630239|630240|630241|630242|630243|630244|630245|630246|630247|630248|630249|630250|630251|630252|630253|630254|630255|630256|630257|630258|630259|630260|630261|630262|630263|630264|630265|630266|630267|630268|630269|630270|630271|630272|630273|630274|630275|630276|630277|630278|630279|630280|630281|630282|630283|630284|630285|630286|630287|630288|630289|630290|630291|630292|630293|630294|630295|630296|630297|630298|630299|630300|630301|630302|630303|630304|630305|630306|630307|630308|630309|630310|630311|630312|630313|630314|630315|630316|630317|630318|630319|630320|630321|630322|630323|630324|630325|630326|630327|630328|630329|630330|630331|630332|630333|630334|630335|630336|630337|630338|630339|630340|630341|630342|630343|630344|630345|630346|630347|630348|630349|630350|630351|630352|630353|630354|630355|630356|630357|630358|630359|630360|630361|630362|630363|630364|630365|630366|630367|630368|630369|631191|631192|631193|631194|631195|631196|631197|631198|631199|631200|631201|631202|631203|631204|631205|631206|631207|631208|631209|631210|631211|631212|631213|631214|631215|631216|631217|631218|631219|631220|631221|631222|631223|631224|631225|631226|631227|631228|631229|631230|631231|631232|631233|631234|631235|631236|631237|631238|631239|631240|631241|631242|631243|631244|631245|631246|631247|631248|631249|631250|631251|631252|631253|631254|631255|631256|631257|631258|631259|631260|631261|631262|631263|631264|636205|636206|636207|636208|636209|636210|636211|636212|636213|636214|636215|636216|636217|636218|636219|636220|636221|636222|636223|636224|636225|636226|636227|636228|636229|636230|636231|636232|636233|636234|636235|636236|636237|636238|636239|636240|636241|636242|636243|636244|636245|636246|636247|636248|636249|636250|636251|636252|636253|636254|636255|636256|636257|636258|636259|636260|636261|636262|636263|636264|636265|636266|636267|636268|636269|636270|636271|636272|636273|636274|636275|636276|636277|636278|636279|636280|636281|636282|636283|636284|636285|636286|636287|636288|636289|636290|636291|636292|636293|636294|636295|636296|636297|636298|636299|636300|636301|636302|636303|636304|650759|650760|650761|650771|650773|650779|650784|650786|650789|650792|650795|650799|650803|650805|650807|650808|650810|650819|650820|650824|650825|650830|650834|650838|650840|650841|650842|650843|650844|650845|650847|650848|650850|650854|650860|650867|650937|650940|650963|650964|650973|650986|650988|650991|650992|650993|650996|650997|651034|651046|651048|651056|651059|651063|651064|651068|651073|651075|651078|651081|651082|651091|651101|651123|651125|651131|651178|651601|651605|651607|651615|651616|651618|651619|651621|651625|651640|651676|651678|651681|651691|651718|651721|651726|651733|651744|651747|651750|651821|651826|654287|655460|655796|683502|683503|686215|686217|686218|686219|687084|687085|687086|687087|687088|691179|691180|691379|692253|692254|692255|692256|692257|692258|695147|695365|719895|722593|743953|744062|747675|747678|747679|747681|747682|750710|750713|759126|759693|763268|763269|763270|763274|763275|763278|763279|763285|763287|763290|763300|763303|763318|763322|763323|763326|763331|763334|763337|763340|763341|763343|763832|763835|766326|766329|766330|766335|766342|766347|774754|774774|774810|774851|774852|775385|781361|781363|781389|781391|781392|781393|781394|781395|781645|781649|781651|782883|782885|782887|782888|782889|782893|787147|787225|787296|787304|787314|787373|787523|787524|789429|789431|789432|789434|789446|790250|790256|790739|790740|799302|806941|806950|806963|806964|806985|806987|806992|806995|806998|807019|807041|807042|807047|807050|807060|807067|807073|807082|807089|807092|807097|807118|807126|807128|807132|807134|807136|807158|807176|807180|807185|807187|807194|807195|807196|807206|807207|807215|807220|807224|807226|807238|807246|807252|807262|807263|807264|807266|807270|807276|807283|807291|807296|807302|807304|807308|807311|807328|807345|807352|807354|807357|807370|807376|807378|807380|807388|807393|807408|807410|807414|807419|807427|807432|807527|807528|807537|807545|807553|807562|807565|807574|807598|807599|807600|807609|807611|807615|807627|807631|807636|809034|809035|809040|809044|809064|809068|809075|809082|809087|809090|809093|809102|809106|809108|809111|809112|809121|809132|809146|809150|809152|809179|809183|809184|809188|815236|815238|815239|815303|815311|815384|819175|819176|819177|819178|819179|819180|819181|819182|819183|819184|819185|819186|819187|819188|819189|819190|819191|819192|819193|819194|819195|819196|819198|819199|819200|819201|819202|819203|819204|819205|819206|819207|819208|819209|819214|819215|819216|819217|819218|819219|819220|819222|819223|819225|819226|819228|819230|819231|819232|819233|819234|819235|819236|819237|819238|819239|819240|819241|819242|819243|819244|819245|819246|819247|819248|819249|819250|819251|819253|819254|819255|819256|819368|819369|819370|819371|819372|819373|819374|819379|819380|819381|819382|819383|819386|819387|819388|819389|819390|819391|819392|819393|819394|819395|819396|819883|819884|819885|819887|819888|819889|819890|819891|819892|819893|819894|819895|819896|819897|819898|819899|819901|819902|819903|826548|826549|826550|826551|826552|826553|826554|826555|826556|826557|826558|826559|826560|826561|826562|826563|826564|826565|826566|826567|826568|826569|826570|826571|826572|826573|826574|826575|826576|826577|826578|826579|826580|826581|826582|826583|826584|826585|826586|826587|826588|826589|826590|826591|826592|826593|826594|826595|826596|826597|826598|826599|826600|826601|826602|826603|826604|826605|826606|826607|826608|826609|826610|826611|826612|826613|826614|826615|826616|826617|826618|826619|826620|826621|826622|826623|826624|826625|826626|826627|826628|826629|826630|826631|826632|826633|826634|826635|826636|826637|826638|826639|826640|826641|826642|826643|826644|826645|826646|826647|826648|826649|826650|826651|826652|826653|826654|826655|826656|826657|826658|826659|826660|826661|826662|826663|826664|826665|826666|826667|826668|826669|826670|826671|826672|826673|826674|826675|826676|826677|826678|826679|826680|826681|826682|826683|826684|826685|826686|826687|826688|826689|826690|826691|826692|826693|826694|826695|826696|826697|826698|826699|826700|826701|826702|826703|826704|826705|826706|826707|826708|826709|826710|826711|826712|826713|826714|826715|826716|826717|826718|826719|826720|826721|826722|826723|826724|826725|826726|826727|826728|826729|826730|826731|826732|826733|826734|826735|826736|826737|826738|826739|826740|826741|826742|826743|826744|826745|826746|826747|826748|826749|826750|826751|826752|826753|826754|826755|826756|826757|826758|826759|826760|826761|826762|826763|826764|826765|826766|826767|826768|826769|826770|826771|826772|826773|826774|826775|826777|826778|826779|826780|826781|826782|826783|826784|826785|826786|826787|826788|826789|826790|826791|826792|826793|826794|827915|827916|827917|827918|827919|827920|827921|827922|827923|827924|827925|827926|827927|827928|827929|827930|827931|827932|827933|827934|827935|827936|827937|827938|827939|827940|827941|827942|827943|827944|827945|827946|827947|827948|827949|827950|827951|827952|827953|827954|827955|827956|827957|827958|827959|827960|827961|827962|827963|827964|827965|827966|827967|827968|827969|827970|827971|827972|827973|827974|827975|827976|827977|827978|833730|833731|833732|833733|833734|833735|833736|833737|833738|833739|833740|833741|833742|833743|833744|833745|833746|833747|833748|833749|833750|833751|833752|833753|833754|833755|833756|833757|833758|833759|833760|833761|833762|833763|833764|833765|833766|833767|833768|833769|833770|833771|833772|833773|833774|833775|833776|833777|833778|833779|833780|833781|833782|833783|833784|833785|833786|833787|833788|833789|833790|833791|833792|833793|833794|833795|850865|850867|850869|850907|850908|850911|850926|850927|850928|850930|850932|850934|851159|851182|851184|851186|851188|851190|851194|851336|851432|851556|851558|851560|851648|851650|852094|852096|852098|852100|852372|858403|858457|858461|858472|885123|908798|908808|908881|908890|908894|908904|908915|908937|908946|908952|908953|908992|909006|909067|909302|909329|909330|910919|910942|910953|910960|910967|910975|915517|916872|916877|921456|922793|922794|922795|922796|922797|922798|922799|922800|922801|922802|922803|922804|922805|922806|922807|922808|922809|922810|922811|922812|922813|922814|922815|922816|922817|922818|922819|922820|922821|922822|922823|922824|922825|922826|922827|922828|922829|922830|922831|922832|922833|922834|922835|922836|922837|922838|922839|922840|922841|922842|922843|922844|922845|922846|922847|922848|922849|922850|922851|922852|922853|922854|922855|922856|922857|922858|922859|922860|922861|922862|922863|922864|922865|922866|922867|922868|922869|923144|923145|923146|923147|923148|923149|923150|923151|923152|923153|923154|923155|923156|923157|924880|924881|924882|924883|924884|924885|924886|924887|924888|924889|924890|924891|924892|924893|924894|924895|924896|924897|931426|931427|931428|931429|931430|931431|931432|931433|931434|931435|931436|931437|931438|931439|931440|931441|931442|931443|931444|931445|931446|931447|931448|931449|931450|931451|931452|931453|931454|931455|931456|931457|931458|931459|931460|931461|931462|931463|931464|931465|931466|931467|931468|931469|931470|931471|931472|931473|931474|931475|931476|931477|931478|931479|931480|931481|931482|931483|931484|931485|931486|931487|931488|931489|931490|931491|931492|931493|931494|931495|931496|931497|931498|931499|931500|931501|931502|931503|931504|931505|931506|931507|931508|931509|931510|931511|931512|931513|931514|931515|931516|931517|931518|931890|931891|931892|931893|931894|931895|931896|931897|931898|931899|931900|931901|931902|931903|931904|931905|931906|931907|931908|931909|931910|931911|933943|933944|933945|933946|933947|933948|933949|933950|933951|933952|933953|933954|933955|933956|933957|933958|933959|933960|933961|933962|933963|933964|933965|933966|933967|933968|933969|933970|933971|933972|933973|933974|933975|933976|939899|939900|939901|939902|939903|939904|939905|939935|939936|940082|940713|940714|940715|940716|940717|940718|940719|940720|940749|940879|940880|940881|942954|942955|942956|942957|942958|942959|942960|942961|942962|942963|942964|942965|942966|942967|942968|942969|942970|942971|942972|942973|942974|942975|942976|942977|942978|942979|942980|942981|942982|942983|942984|942985|942986|942987|942988|942989|942990|942991|942992|942993|942994|942995|942996|942997|942998|942999|943000|943001|943002|943003|943004|943005|943006|943007|943008|943009|943010|943011|943012|943013|943014|943015|943016|943017|943018|943019|943020|943021|943022|943023|943024|943025|943026|943027|943028|943029|943030|943031|943032|943033|943034|943035|943480|943481|943482|943483|943484|943485|943486|943487|943488|943489|943490|943491|943492|943493|943494|943495|943496|943497|943498|943499|943500|943501|943502|945720|945721|945722|945723|945724|945725|945726|945727|945728|945729|945730|945731|945732|945733|945734|945735|945736|945737|945738|945739|945740|945741|945742|945743|945744|945745|945746|945747|953106|953107|953108|953109|953110|953111|953112|953113|953114|953115|953116|953117|953118|953119|953120|953121|953122|953123|953124|953125|953126|953127|953128|953129|953131|953132|953133|953134|953135|953136|953137|953138|953139|953140|953141|953439|953440|953441|953442|953443|953444|953445|953446|953447|953448|955183|955184|955185|955186|955187|955188|955189|955190|955191|955192|955193|955194|955195|955196|955197|955198|955199|955200|955201|955202|955203|959645|959646|959647|959648|959695|959696|959862|959863|960479|960480|960481|960482|960483|960484|960485|960486|960636", + "upstreamId": "16792|16794|16795|16796|16797|16798|16799|16801|16803|23970|23971|23980|24273|24276|24279|24281|24284|32119|32126|32128|32129|32133|32135|32136|32137|32138|32145|38609|45201|45202|45207|45208|45209|45210|45212|45215|45219|45220|45222|45223|45224|45225|45227|45228|45230|45231|45232|45233|45234|45235|45237|45238|45239|45240|45241|45242|45243|45244|45245|45246|45247|45249|45251|45255|45257|45258|45259|45261|45262|45346|45347|45348|45349|45350|45351|45352|45354|50026|50027|50028|50029|50030|50032|50033|50035|50071|50072|50073|50074|50075|50076|50077|50078|50079|50080|50081|50082|50083|50084|50085|50086|50087|50089|50090|50091|50140|50141|50142|50143|50144|50145|50146|50147|50148|50150|50151|50152|50153|50154|50155|50156|50157|50158|50159|50160|50161|51637|51638|51639|51640|51642|51666|94639|94641|94642|94646|94647|94648|94649|94650|94652|94654|94656|94657|94660|94661|94663|94665|94666|94667|94668|94669|94671|94672|94674|94676|94678|94682|94685|94687|94690|94691|94692|94693|94694|94698|94702|94703|94705|94706|94707|94708|94709|94711|94713|94714|94719|94720|94721|94722|94725|94727|94729|94730|94731|94733|94734|94735|94736|94737|94738|94739|94740|94741|94742|94743|94748|94750|94752|94753|94754|94755|94756|94759|94760|94761|94762|94763|94765|94778|94779|94781|94783|94786|94788|94795|94796|94799|94802|94804|94807|94810|94811|94812|94813|94814|94815|94816|94818|94821|94826|94829|94831|94832|94833|94834|94836|94837|94838|94840|94842|94843|94844|94845|94851|94852|94855|94856|94857|94861|94864|94865|94869|94871|94873|94874|94876|94877|94878|94883|94886|94888|94889|94895|94897|94898|94902|94908|94916|94917|94921|94922|94923|94924|94931|94932|94934|94935|94937|94943|94944|94946|94947|94948|94949|94950|94951|94953|94955|94956|94958|94959|94960|94962|94964|94968|94970|94971|94972|94974|94975|94980|94981|94989|94992|95008|95009|95010|95012|95014|95015|95019|95020|95021|95022|95025|95026|95028|95029|95033|95036|95037|95038|95039|95042|95044|95045|95046|95047|95048|95063|95067|95075|95078|95079|95090|95093|95103|95104|95107|95114|95117|95119|95122|95123|95125|95127|95132|95135|95146|95147|95150|95151|95152|95157|95158|95159|95160|95162|95164|95165|95170|95172|95179|95183|95186|95188|95192|95201|95207|95209|95211|95212|95213|95215|95218|95219|95224|95225|95226|95227|95229|95231|95233|95234|95235|95242|95253|95254|95255|95256|95257|95265|95266|95267|95268|95276|95283|95286|95292|95294|95298|95300|95308|95312|95313|95315|95316|95320|95323|95324|95326|95328|95329|95331|95332|95337|95342|95343|95344|95351|95355|95360|95362|95366|95369|95374|95376|95377|95380|95381|95383|95384|95385|95389|95391|95394|95399|95400|95404|95406|95414|95419|95420|95421|95425|95426|95427|95428|95429|95431|95433|95436|95438|95439|95442|95447|95448|95449|95451|95453|95454|95455|95461|95466|95468|95475|95477|95479|95480|95481|95483|95484|95485|95486|95487|95488|95490|95494|95497|95503|95506|95512|95514|95516|95522|95523|95535|95539|95541|95542|95545|95550|95552|95555|95556|95557|95558|95561|95562|95564|95565|95568|95571|95574|95575|95576|95581|95586|95588|95590|95592|95594|95596|95600|95601|95602|95603|95606|95611|95614|95615|95616|95621|95622|95623|95624|95625|95640|95645|95646|95650|95652|95657|95658|95660|95662|95663|95665|95666|95668|95669|95681|95685|95690|95691|95694|95697|95703|95704|95717|95718|95724|95725|95728|95731|95732|95734|95741|95747|95748|95756|95759|95760|95764|95765|95767|95770|95771|95774|95775|95777|95780|95784|95785|95786|95789|95792|95793|95799|95804|95805|95806|95809|95812|95813|95814|95815|95816|95823|95829|95830|95834|95835|95841|95846|95854|95855|95856|95861|95871|95878|95881|95882|95887|95888|95889|95890|95895|95898|95904|95909|95912|95915|95916|95918|95919|95923|95926|95927|95930|95977|95982|95983|95984|95987|95988|95989|95991|95994|96003|96004|96014|96016|96025|96028|96029|96030|96031|96032|96035|96038|96039|96040|96041|96044|96045|96047|96048|96049|96052|96058|96061|96064|96065|96067|96091|96094|96098|96099|96102|96103|96105|96111|96112|96116|96123|96129|96132|96135|96137|96143|96145|96149|96150|96152|96154|96157|96160|96169|96171|96172|96173|96176|96177|96182|96187|96188|96189|96194|96195|96196|96202|96203|96205|96212|96219|96220|96222|96223|96225|96231|96238|96241|96242|96243|96246|96248|96256|96257|96258|96264|96269|96271|96272|96273|96274|96277|96279|96280|96283|96286|96287|96290|96291|96293|96297|96300|96307|96308|96310|96318|96329|96330|96331|96341|96343|96346|96348|96349|96350|96353|96356|96361|96362|96367|96378|96379|96381|96382|96384|96385|96388|96394|96396|96402|96407|96408|96412|96417|96420|96421|96423|96424|96425|96428|96430|96432|96433|96437|96439|96440|96443|96447|96449|96451|96458|96460|96461|96462|96463|96465|96466|96468|96470|96471|96473|96474|96475|96478|96479|96481|96490|96491|96494|96496|96497|96498|96503|96505|96506|96510|96512|96513|96514|96516|96517|96518|96520|96522|96525|96526|96528|96529|96530|96531|96535|96536|96537|96538|96539|96543|96545|96546|96564|96565|96567|96569|96571|96572|96573|96574|96575|96576|96578|96580|96581|96585|96586|96587|96588|96589|96590|96592|96594|96600|96601|96608|96609|96610|96614|96615|96616|96623|96624|96625|96632|96636|96646|96647|96649|96652|96653|96655|96656|96657|96660|96664|96669|96671|96675|96678|96680|96681|96695|96697|96707|96708|96711|96714|96717|96718|96720|96721|96722|96724|96727|96728|96729|96735|96736|96739|96742|96743|96744|96746|96747|96748|96764|96765|96774|96776|96778|96779|96780|96781|96785|96786|96787|96788|96790|96792|96793|96794|96795|96796|96798|96799|96802|96803|96804|96805|96806|96808|96809|96812|96813|96815|96816|96818|96825|96826|96830|96836|96837|96841|96843|96844|96845|96850|96851|96852|96856|96857|96858|96861|98484|98485|98486|98572|99143|132404|132489|132493|132498|132502|133009|133011|133012|133014|133015|133017|133018|133019|133020|133021|133022|133023|133024|133025|133026|133027|133028|133029|133030|133031|133032|133033|133034|133035|133036|133037|133038|133039|133041|133042|133043|133044|133045|133046|133048|133049|133050|133051|133052|133053|133054|133055|133057|133060|133061|133062|133063|133064|133065|133066|133067|133068|133069|133070|133071|133072|133073|133074|133075|133076|133077|133078|133079|133080|133082|133083|133084|133085|133086|133087|133088|133089|133090|133091|133093|133094|133095|133096|133097|133098|133099|133100|133101|133103|133104|133105|133106|133107|133108|133110|133111|133112|133208|133209|133210|133211|133212|133213|133214|133215|133216|133217|133218|133219|133220|133221|133222|133223|133224|133225|133226|133227|133228|133230|133231|133232|133233|133234|133235|133236|133237|133238|133239|133240|133245|133246|133247|133248|133249|133250|133251|133252|133253|133254|133255|133256|133257|133258|133259|133305|133307|133308|136445|136478|136496|136506|136509|136519|136520|138395|138396|138397|138579|138580|138581|138582|138583|138584|138585|138587|138588|138589|138590|138591|138592|138594|138595|138801|138803|138804|138805|138806|138808|138809|138810|138811|139540|139541|139542|139544|139545|139546|139547|139548|139549|139550|139551|139552|139553|139554|139555|139556|139557|139558|139559|139560|139561|139563|139564|139565|139566|139567|139568|139569|139570|139571|139572|139573|139574|139575|139576|139577|139644|139645|139646|139647|139649|139650|139651|139652|139653|139654|139655|139656|139657|139658|139659|139729|139730|139739|139745|140919|141933|141957|141958|141959|141960|141961|141962|142400|142403|142404|142406|142408|142409|150472|150473|150488|150493|150494|150499|150506|150511|150518|150524|150543|150550|150552|150557|150561|150562|150578|150580|150594|150598|150602|150606|150616|150637|150651|150661|150674|150675|150714|150746|150756|150772|150792|150794|150799|150808|150829|150835|150836|150861|150877|150880|150886|150891|150894|150902|150911|150946|150950|150972|150979|150980|150988|150994|150995|151010|151013|151036|151041|151042|151065|151078|151079|151108|151109|151110|151120|151144|151148|151151|151156|151189|151214|151216|151237|151239|151255|151299|151303|151317|151320|151364|151365|151369|151374|151378|151381|151397|151427|151465|151472|151483|151484|151546|151585|151588|151599|151605|151621|151622|151627|151630|151632|151638|151722|151723|151731|151780|151824|151843|151877|151882|151883|151888|151895|151932|151946|151948|151949|151958|151965|151971|151974|151978|151984|151986|151990|151991|151993|152019|152041|152049|152055|152063|152074|152127|152135|152140|152153|152161|152175|152178|152204|152209|152210|152222|152223|152230|152239|152253|152275|152277|152283|152286|152290|152291|152301|152311|152327|152332|152334|152337|152339|152349|152364|152372|152377|152378|152379|152384|152385|152386|152389|152394|152399|152402|152412|152422|152429|152432|152435|152452|152479|152481|152482|152487|152491|152492|152495|152552|152556|152570|152586|152589|152591|152593|152604|152609|152611|152621|152643|152650|152660|152673|152674|152675|152676|152678|152684|152694|152716|152721|152724|152732|166272|166275|167463|171076|171077|172174|179979|179980|179981|179982|179984|179985|179986|179988|179989|179990|179991|179993|179994|179995|179997|179998|180000|180001|180002|180005|180007|180009|180010|180011|180012|180014|180015|180016|180017|180020|180021|180022|180023|180024|180027|180028|180029|180031|180033|180034|180036|180037|180038|180039|180040|180042|180044|180045|180046|180048|180049|180050|180051|180053|180054|180055|180056|180057|180058|180059|180060|180061|180062|180063|180064|180066|180067|180068|180069|180070|180071|180072|180073|180074|180075|180077|180078|180079|180080|180081|180082|180083|180084|180085|180086|180087|180088|180089|180090|180092|180093|180095|180096|180098|180099|180100|180103|180104|180128|180129|180132|180133|180134|180135|180138|180139|180140|180143|180144|180148|180149|180150|180151|180153|180154|180157|180158|180254|180255|180256|180257|180259|180260|180261|180263|180264|180265|180267|180271|180272|180273|181201|181202|181203|181861|181886|181888|181889|181890|181891|181892|181894|181895|181896|181897|181898|181899|181900|181901|181904|181905|181907|181908|181909|181913|181915|181916|181917|181918|181922|181923|181927|181928|181929|181930|181931|181933|181934|181935|181936|181937|181938|181939|181940|181941|181942|181943|181944|181946|181948|181949|181951|181952|181953|181954|181955|181957|181958|181959|181960|181963|181964|181965|181967|181968|181969|181970|181971|181972|181973|181975|181976|181977|181978|181979|181980|181981|181982|181984|181985|181986|181988|181989|181990|181991|181992|181993|181995|181996|181998|182000|182001|182002|182003|182004|182005|182008|182009|182010|182014|182015|182016|182017|182018|182019|182020|182023|182025|182027|182028|182029|182030|182031|182032|182033|182034|182037|182038|182039|182040|182042|182043|182045|182046|182048|182053|182055|182058|182060|182061|182062|182063|182065|182066|182068|182070|182072|182073|182074|182075|182077|182079|182080|182082|182083|182084|182085|182086|182087|182088|182089|182090|182091|182095|182097|182098|182099|182100|182101|182103|182104|182105|182106|182107|182109|182110|182111|182114|182115|182116|182118|182120|182123|182124|182125|182126|182127|182129|182130|182133|182134|182135|182136|182138|182139|182140|182142|182143|182144|182145|182146|182147|182148|182150|182152|182153|182154|182155|182156|182157|182159|182160|182161|182162|182163|182164|182165|182166|182167|182168|182169|182170|182171|182173|182174|182175|182176|182177|182178|182179|182182|182183|182184|182185|182188|182189|182190|182191|182192|182194|182195|182196|182197|182214|182216|182217|182218|182220|182221|182223|182224|182225|182226|182227|182228|182229|182230|182231|182234|182235|182236|182239|182243|182244|182247|182248|182250|182251|182252|182253|182254|182255|182256|182257|182258|182259|182261|182262|182263|182264|182265|182268|182269|182270|182271|182274|182275|182276|182277|182278|182279|182280|182281|182282|182283|182284|182285|182287|182288|182290|182291|182294|182296|182300|182301|182302|182306|182307|182308|182682|182683|182684|182685|182686|182687|182689|182690|182691|182692|182694|182696|182697|182698|182699|182700|182701|182702|182703|182705|182706|182708|182709|182710|182713|182714|182716|182717|182718|182719|182721|182722|182723|182724|182726|182727|182728|182729|182730|182732|182733|182734|182735|182736|182737|182738|182740|182741|182742|182743|182744|182745|182746|182747|182748|182749|182751|182752|182753|182754|182756|182758|182759|182760|182761|182762|182763|182764|182765|182766|182767|182768|182769|182770|182771|182772|182773|182774|182775|182776|182777|182779|182780|182781|182782|182783|182784|182785|182786|182787|182789|182790|182791|182792|182793|182794|182795|182796|182797|182798|182799|182801|182802|182803|182805|182806|182807|182808|182810|182811|182812|182813|182814|182815|182816|182817|182818|182819|182820|182821|182823|185974|185975|185977|185979|185980|185982|185983|185984|185986|185987|185989|185990|185991|185992|185995|185997|185998|186000|186001|186004|186005|186013|186014|186015|186016|186017|186079|186080|186081|186082|186083|186085|186086|186313|186317|190022|190024|190025|190109|191164|194275|194276|195590|198613|198614|212153|212155|212158|212161|212166|212171|212176|212182|212185|212186|212187|212188|212190|212191|212192|212193|212196|212197|212198|212199|212200|212201|212202|212203|212204|212205|212206|212207|212209|212210|212211|212212|212213|212214|212215|212216|212218|212219|212221|212222|212223|212224|212225|212226|212227|212228|212233|212235|212236|212237|212239|212240|212241|212246|212248|212249|212250|212253|212254|212257|212258|212261|212262|212264|212268|212269|212297|212300|212301|212303|212304|212305|212306|212308|212309|212310|212311|212312|212313|212314|212315|212316|212317|212318|212320|212322|212323|212324|212325|212326|212327|212329|212330|212586|212587|212588|212589|212590|212592|212593|212594|212598|212599|212601|212602|212603|212605|212607|212609|212610|212611|212612|212613|214575|214577|214582|214586|214589|214590|214591|214593|214594|214596|214597|214598|214600|214603|214606|214607|214608|214615|214616|214625|214628|214632|214639|214642|215258|220980|221182|221183|221202|221204|221205|221206|221207|221208|221209|221210|221211|221212|221213|221214|221216|221217|221219|221220|221222|221223|221225|221227|221228|221231|221232|221235|221236|221237|221238|221239|221241|221242|221243|221244|221245|221246|221247|221248|221249|221251|221252|221253|221254|221255|221256|221257|221258|221259|221260|221261|221262|221263|221264|221267|221268|221269|221271|221272|221274|221275|221276|221277|221281|221282|221283|221284|221286|221287|221288|221289|221290|221291|221292|221293|221295|221296|221297|221298|221299|221301|221302|221303|221304|221305|221306|221307|221308|221309|221311|221313|221314|221376|221378|221379|221381|221382|221383|221385|221386|221387|221388|221389|221391|221392|221393|221394|221395|221396|221397|221398|221401|221402|221403|221405|221407|221408|221410|221411|221703|221705|221706|221707|221708|221710|221712|221713|221714|221715|221716|221719|221720|221721|221722|221723|221724|221725|221726|221727|221728|221733|221734|221735|221736|226296|226298|226299|226300|226301|226302|226303|226304|226305|226306|226307|226314|226315|226327|226328|226329|228967|231520|231526|231527|231528|231532|231535|231537|231541|231544|231547|231549|231550|231551|231552|231553|231554|231555|231556|231564|231565|231567|231569|231570|231572|231573|231574|231576|231577|231580|231581|231582|231584|231585|231586|231587|231590|231592|231594|231599|231607|231609|231610|231612|231613|231614|231616|231617|231618|231619|231621|231623|231624|231625|231626|231627|231628|231655|231656|231657|231658|231659|231660|231662|231663|231664|231666|231668|231669|231670|231671|231673|231675|231676|231677|231678|231680|231681|231682|231683|231684|231686|231687|231688|231691|231692|231694|231695|231698|232502|232504|232505|232506|232508|232509|232511|232512|232513|232515|232516|232517|232522|232524|232525|232528|232530|232535|232536|232538|232540|232542|232544|232545|232547|232550|232551|232553|232554|232555|232556|232558|232559|232560|232562|232564|232566|232568|232570|232571|232572|232574|232576|232578|232579|232580|232583|232584|232587|232588|232589|232590|232591|232592|232593|232595|232597|232601|232602|232603|232606|232607|232608|232609|232610|232611|232612|232615|232616|232618|232620|232621|232622|232624|232625|232626|232629|232630|232631|232633|232635|232639|232640|232641|232643|232644|232646|232647|232648|232650|232652|232653|232654|232655|232656|232657|232660|232662|232664|232665|232667|232668|232669|232670|232671|232674|232677|232679|232680|232682|232683|232684|232691|232692|232693|232694|232695|232697|232698|232699|232700|232701|232702|232705|232707|232708|232712|232713|232714|232715|232716|232717|232718|232719|232721|232722|232723|232726|232727|232728|232732|232733|232736|232737|232740|232741|232742|232744|232747|232748|232750|232752|232754|232755|232757|232761|232762|232763|232764|232765|232766|232767|232769|232770|232771|232772|232774|232775|232777|232778|232780|232781|232784|232785|232786|232787|232789|232791|232792|232793|232794|232795|232796|232797|232798|232800|232801|232802|232804|232806|232807|232808|232809|232812|232813|232815|232816|232817|232818|232819|232820|232821|232822|232823|232824|232825|232826|232827|232829|232831|232832|232833|232834|232835|232836|232837|232840|232841|232842|232843|232844|232845|232847|232850|232851|232852|232853|232854|232855|232857|232873|232876|232877|232880|232885|232886|232888|232890|232893|232894|232897|232898|232899|232905|232911|232912|232915|232916|232917|232918|232919|232921|232923|232926|232927|232928|232931|232933|232937|232941|232942|232943|232944|232946|232947|232948|232953|232954|232956|232957|232959|232962|232964|232966|232967|232970|232973|232974|232975|232977|232978|232979|232980|233471|233473|233474|233475|233477|233479|233480|233481|233483|233484|233485|233487|233488|233489|233490|233492|233493|233494|233497|233500|233502|233503|233504|233505|233506|233507|233509|233512|233513|233514|233515|233516|233518|233519|233520|233521|233522|233525|233526|233527|233530|233531|233532|233533|233535|233536|233537|233538|233539|233541|233542|233544|233545|233549|233550|233551|233552|233554|233555|233556|233558|233560|233562|233564|233565|233566|233567|233568|233569|233571|233572|233574|233577|233578|233579|233580|233581|233584|233585|233586|233588|233589|233590|233591|233594|233595|233597|233598|233599|233600|233601|233602|233605|233607|233610|233611|233612|233614|233615|238802|238803|238804|238806|238807|238808|238809|238810|238814|238815|238816|238817|238818|238819|238820|238821|238822|238823|238824|238826|238827|238828|238829|238831|238833|238834|238835|238836|238838|238839|238840|238841|238842|238844|238845|238847|238850|238851|238852|238853|238854|238860|238861|238862|238864|238865|238866|238867|238868|238869|238871|238872|238873|238874|238875|238877|238878|238879|238880|238881|238882|238883|238884|238887|238889|238893|238896|238900|238901|238902|238904|238905|238907|238908|238909|238911|238912|238913|238914|238917|238918|238919|238921|238922|238923|238924|238925|238926|238928|238929|238932|238933|238934|238935|238937|238938|238939|238941|238942|238943|238946|238950|238951|238954|238955|238956|238959|239140|239141|239143|239145|239146|239147|239148|239149|239152|239154|239156|239159|239160|239162|239164|239166|239167|239168|239170|239171|239172|239174|239175|239177|239179|239180|239183|239184|239185|239187|239188|239190|239191|240101|240102|240107|240108|240109|240110|240113|240114|240116|240118|240119|240120|240121|240123|240124|240126|240128|240129|240130|240131|240132|240133|240134|240135|240138|240139|240140|240141|240142|240145|240147|240149|240150|240151|240152|240153|240155|240156|240157|244366|244367|244370|244372|244373|244376|244377|244378|244379|244381|244383|244385|244389|244391|244392|244393|244394|244395|244398|244399|244409|246922|246925|250742|251099|259738|259740|259741|259761|259868|262407|270566|275543|286667|286681|286690|287401|289830|289831|290191|290207|290924|294554|306559|311471|311622|358720|358722|358727|358738|358743|358744|358747|358803|359365|359501|359650|359807|361856|366411|366418|366419|366420|366430|366450|366479|366480|366492|366494|366517|366530|366535|366547|366549|366556|366577|366582|366635|366641|366651|366654|366666|366676|366678|366696|366708|366710|366712|366715|366725|366726|366728|366739|366741|366744|366745|366750|366752|366753|366762|366766|366768|366771|366773|366774|366776|366783|366785|366792|366796|366805|366812|366827|366848|366851|366854|367119|367127|367132|367139|367147|367155|367162|367181|367182|367382|367390|367392|367399|367400|367402|367404|367410|367412|367418|367425|367431|367434|367435|367437|367439|367446|367448|367450|367459|367460|367461|367488|367498|367506|367519|367534|367537|367564|367569|367578|367579|367582|368406|368416|368417|368424|368446|368470|369171|369177|369184|369189|369192|369210|369213|369218|369234|369505|369523|369531|369533|369541|369554|369557|369813|369823|369828|369830|369836|369838|369872|369873|369886|371191|371194|371209|371227|371246|389527|392670|392675|392681|392686|392692|392697|392698|392699|392701|392703|392710|392713|392721|392724|392727|392733|392735|392736|392738|392739|392744|392747|392755|392759|392763|392767|392768|392771|392774|392775|392779|392780|392784|392793|392794|392796|392804|392805|392808|392810|392813|392814|392817|392820|392825|392827|392829|392830|392832|392837|392838|392840|392841|392842|392843|392844|392846|392847|392848|392849|392851|392853|392857|392859|392860|392863|392864|392867|392868|392869|392876|392878|392879|392880|392881|392886|392887|392888|392889|392890|392892|392894|392895|392898|392902|392904|392907|392908|392910|392919|392922|392925|392930|392931|392932|392936|392937|392939|392941|392945|392946|392947|392948|392949|392951|392952|392954|392956|392957|392964|392965|392967|392968|392971|392977|392978|392982|392983|392984|392985|392988|392989|392991|392993|392994|392995|392998|393001|393002|393003|393008|393009|393013|393014|393017|393019|393022|393024|393026|393027|393029|393033|393034|393040|393041|393042|393043|393045|393046|393047|393049|393051|393053|393054|393055|393056|393057|393065|393069|393073|393077|393078|393083|393084|393088|393089|393094|393095|393097|393101|393103|393108|393110|393124|393126|393128|393130|393132|393138|393140|393142|393145|393148|393154|393155|393161|393162|393164|393170|393172|393182|393184|393192|393193|393197|393199|393201|393202|393207|393214|393215|393237|393239|393246|393251|393253|393265|393268|393290|393302|393305|393308|393318|393323|393336|393340|393344|393348|393356|393364|393366|393376|393377|393381|393382|393386|393398|393399|393422|393425|393428|393430|393444|393459|393462|393464|393473|393478|393480|393482|393488|393490|393492|393497|393502|393507|393509|393512|393513|393517|393524|393526|393527|393528|393532|393536|393539|393543|393546|393548|393655|393663|393666|393670|393672|393681|393687|393705|393706|393717|393731|393736|393741|393832|393837|393843|393850|393857|393861|393864|393885|393889|393892|393894|393897|393904|393913|393915|393937|395688|395702|395710|395714|395718|395732|395740|395745|395746|395753|395756|395769|395918|395923|395925|395929|395935|395940|395941|395947|395953|395955|395958|395963|395965|395972|395976|395978|395992|395999|396000|396001|396023|396026|396031|396042|396044|396048|396058|396062|396070|396076|396087|396094|396095|396106|396111|396117|396118|396333|396336|396340|396341|396343|396349|396358|396360|396364|396372|396398|405746|405747|405748|405749|405750|405751|405752|405756|405757|405759|405761|405762|405767|405768|405769|405771|405773|405776|405780|405781|405782|405787|405788|405791|405792|405797|405798|405799|405800|405802|405804|405807|405809|405810|405812|405817|405818|405824|405825|405830|405831|405832|405833|405834|405835|405836|405837|405839|405840|405843|405844|405846|405847|405856|405859|405861|405862|405864|405866|405869|405870|405871|405874|405878|405879|405880|405882|405883|405884|405886|405887|405890|405892|405896|405897|405898|405900|405902|405903|405905|405906|405907|405909|405910|405913|405914|405917|405919|405920|405923|405924|405927|405928|405930|405932|405934|405935|405936|405940|405941|405942|405946|405947|405948|405949|405950|405951|405952|405953|405958|405959|405960|405961|405962|405965|405966|405970|405972|405974|405975|405976|406192|406195|406196|406197|406198|406203|406204|406206|406207|406209|406211|406213|406215|406216|406218|406222|406224|406227|406233|406234|406238|406240|406241|406242|406247|406251|406252|406254|406258|406259|406260|406263|407166|407167|407168|407169|407170|407171|407175|407176|407177|407179|407181|407182|407184|407186|407188|407189|407190|407192|407195|407196|407197|407198|407201|407204|407207|407208|407211|407212|407213|407215|407218|407221|407222|407223|407224|407226|407229|407230|407233|407234|407236|416961|416964|417649|419309|419314|419316|419321|419322|419323|419330|419340|419342|419344|419345|419347|419349|419353|419355|419357|419368|419388|419390|419392|419395|419397|419416|419417|419419|419422|419425|419428|419431|419435|419436|419437|419438|419439|419441|419443|419444|419446|419449|419455|419457|419458|419463|419465|419467|419469|419470|419471|419472|419473|419475|419476|419478|419480|419484|419486|419497|419503|419505|419507|419509|419511|419520|419522|419532|419541|419543|419545|419548|419549|419558|419562|419568|419569|419572|419573|419578|419580|419582|419584|419587|427152|427153|427155|427157|427159|427162|427167|427171|427181|427184|427193|427208|427213|427214|427327|428061|428062|432509|432510|432511|432513|432514|432516|432520|432522|432523|432525|432531|432534|432559|432561|432571|432572|432643|432646|432648|432650|433701|443258|443262|443263|443264|443265|443266|443267|443417|443419|443421|443422|443423|443424|443425|444148|448400|448415|448416|448506|448509|448526|448536|448541|448542|448548|448553|448557|448568|448573|448575|448579|448592|448602|448605|448649|448654|450944|450949|450952|450955|450967|450972|450977|450980|450981|450984|450985|450988|450991|450993|450996|451003|451012|451014|451018|451031|451036|451042|451062|451063|451066|451067|451070|451073|451075|451077|451082|451084|451085|451086|451087|451088|451089|451090|451092|451093|451096|451097|451102|451103|451108|451109|451111|451114|451116|451119|451120|451121|451123|451129|451130|451131|451132|451133|451137|451138|451141|451142|451143|451149|451150|451151|451155|451156|451159|451164|451165|451166|451167|451168|451170|451172|451174|451175|451176|451177|451179|451181|451184|451186|451189|451191|451193|451195|451197|451199|451200|451201|451202|451203|451208|451209|451211|451213|451215|451218|451220|451221|451223|451227|451228|451229|451232|451233|451234|451237|451242|451243|451244|451246|451247|451248|451249|451250|451252|451253|451254|451255|451257|451258|451259|451260|451261|451262|451263|451264|451265|451266|451267|451268|451269|451270|451271|451272|451273|451274|451275|451276|451277|451278|451279|451280|451281|451282|451283|451284|451285|451286|451287|451288|451289|451290|451291|451292|451293|451294|451295|451296|451297|451298|451299|451300|451301|451302|451303|451304|451305|451306|451307|451308|451309|451310|451311|451312|451313|451314|451315|451316|451317|451318|451319|451320|451321|451322|451323|451324|451325|451326|451327|451328|451329|451330|451331|451332|451333|451334|451335|451336|451337|451338|451339|451340|451341|451342|451343|451344|451345|451346|451347|451348|451349|451350|451351|451352|451353|451354|451355|451356|451357|451358|451359|451361|451362|451363|451364|451365|451368|451369|451370|451371|451372|451375|451377|451379|451380|451381|451382|451383|451385|451386|451387|451390|451391|451392|451398|451401|451404|451406|451408|451411|451413|451414|451415|451418|451419|451420|451424|451425|451426|451427|451432|451433|451435|451436|451439|451440|451442|451444|451445|451447|451448|451450|451451|451453|451454|451455|451456|451457|451458|451460|451463|451465|451466|451469|451470|451471|451473|451474|451475|451476|451478|451479|451481|451482|451484|451485|451487|451488|451489|451490|451493|451494|451495|451496|451498|451500|451501|451502|451503|451504|451505|451507|451509|451511|451513|451514|451515|451517|451518|451519|451522|451523|451524|451526|451528|451531|451532|451537|451538|451541|451543|451544|451546|451547|451548|451550|451551|451552|451553|451554|451555|451556|451560|451568|451569|451571|451573|451574|451575|451576|451579|451582|451585|451587|451589|451594|451596|451598|451601|451604|451608|451609|451611|451614|451615|451620|451622|451624|451626|451628|451630|451633|451635|451636|451638|451639|451640|451641|451642|451646|451651|451653|451655|451657|451658|451659|451661|451664|451667|451670|451671|451675|451676|451677|451678|451679|451682|451683|451685|451686|451696|451697|451698|451702|451803|451885|452022|452024|452076|452079|452084|452087|452089|452090|452093|452095|452097|452098|452100|452102|452105|452106|452108|452112|452115|452117|452125|452127|452133|452135|452137|452139|452140|452143|452146|452148|452341|452343|452345|452348|452351|452352|452353|452354|452369|452371|452373|452375|452376|452382|452384|452385|452387|452389|452390|452392|452394|452400|452401|452402|452404|452405|452407|452409|452411|452413|452428|452431|452433|452435|452442|452444|452447|452453|452458|452469|452477|452482|452485|452494|452521|452524|452528|452548|452560|452563|452568|452574|452575|452578|452594|452612|452616|452618|452620|452622|452625|452627|452630|452632|452639|452641|452643|452645|452647|452649|452665|452671|452672|452676|452681|452684|455868|455879|456123|456126|456133|456139|456141|456470|456473|456479|456760|456764|456768|456770|456774|456778|456783|456792|456794|456798|456802|456804|456817|456826|456827|456828|456829|456833|456835|456837|456838|456841|456852|456858|456860|456866|457179|457190|457195|457197|457201|457203|457207|457210|457214|457221|457222|457228|457229|457242|457251|457256|457260|457262|457269|457270|457285|457292|457293|457295|457304|457309|457314|457318|457325|457329|457330|457334|457339|457342|457344|457345|457356|457365|457373|457377|457395|457396|457413|457415|457417|457419|457421|457432|457434|457439|457443|457449|457452|457454|457459|457480|457484|457487|457489|457491|457494|457497|457500|457505|457507|457518|457520|457522|457813|457822|457824|457825|457828|457831|457834|457841|457842|457845|457848|457852|457853|457854|457858|457859|457861|457863|457871|457877|457881|457889|457891|457897|457899|457903|457905|472718|472727|472736|472738|472756|472758|472765|472768|472774|472775|472779|472781|472782|472785|472786|472788|472789|472794|472797|472798|472804|472806|472808|472810|472812|472814|472815|472816|472820|472822|472823|472825|472830|472831|472833|472834|472839|472849|472852|472853|472865|472866|472869|472872|472873|472874|472875|472876|472877|472878|472882|472883|472889|472891|472894|472895|472897|472905|472910|472913|472914|472916|472917|472922|472924|472925|472926|472927|472932|472934|472935|472939|472942|472945|472946|472947|472950|472952|472955|472956|472959|472961|472967|472973|472974|472978|472983|472986|472987|472988|472995|472996|473000|473001|473003|473005|473006|473008|473009|473011|473013|473015|473017|473018|473020|473025|473027|473032|473033|473035|473036|473041|473045|473049|473051|473055|473058|473063|473065|473067|473077|473080|473083|473084|473085|473086|473088|473090|473093|473097|473099|473105|473108|473109|473111|473114|473115|473116|473117|473118|473120|473124|473125|473133|473136|473137|473139|473140|473146|473147|473148|473149|473151|473152|473153|473154|473155|473156|473159|473163|473164|473166|473168|473173|473174|473175|473176|473177|473178|473190|473193|473196|473197|473198|473199|473202|473204|473205|473208|473209|473210|473211|473218|473219|473220|473221|473222|473228|473234|473236|473237|473239|473240|473245|473251|473254|473256|473257|473258|473259|473260|473265|473270|473284|473285|473291|473292|473294|473295|473299|473303|473306|473316|473318|473319|473320|473324|473328|473331|473333|473335|473338|473339|473341|473342|473351|473354|473360|473361|473364|473369|473370|473376|473377|473378|473379|473385|473386|473394|473398|473399|473400|473401|473402|473403|473408|473410|473411|473413|473417|473420|473421|473426|473429|473430|473434|473436|473442|473448|473460|473466|473476|473477|473481|473482|473486|473488|473492|473493|473495|473510|473516|473517|473526|473549|473558|473567|473568|473575|473593|473599|473623|473640|473642|473643|473649|473661|474500|474501|474510|474515|474518|474521|474533|474534|474538|474540|474541|474547|474555|474561|474567|474569|474573|474577|474578|474580|474581|474583|474584|474585|474586|474588|474589|474594|474599|474600|474601|474605|474609|474610|474611|474612|474615|474616|474620|474626|474636|474642|474643|474645|474647|474648|474649|474650|474651|474656|474657|474658|474661|474666|474670|474676|474677|474678|474679|474680|474681|474686|474687|474688|474689|474691|474692|474705|474706|474711|474712|474714|474717|474719|474726|474733|474748|474752|474761|474766|474769|474772|474774|474778|474784|474796|474805|474833|474834|474843|474855|482394|482396|482397|482398|482405|482407|482409|482410|482413|482415|482416|482418|482423|482424|482427|482431|482432|482433|482434|482436|482440|482442|482447|482449|482450|482452|482453|482454|482455|482456|482458|482459|482463|482466|482470|482471|482472|482478|482480|482482|482483|482485|482486|482489|482491|482495|482500|482505|482506|482518|482522|482530|482549|482550|482563|482589|482653|482665|482668|482704|482715|483296|483299|483320|483321|483341|483342|483344|483347|483349|483355|483357|483365|483366|483371|483382|483388|483399|483414|483418|483423|483431|483440|483451|483456|483457|483458|483461|483465|483468|483469|483471|483474|483476|483481|483483|483486|483487|483490|483493|483495|483497|483504|483520|483527|483531|483533|483548|483557|483564|483568|483577|483579|483586|483589|483595|483601|483606|483616|483632|483634|483639|483886|483893|483898|483922|483942|483947|483948|483958|483970|483979|483996|484009|484121|484132|484145|485596|485597|485602|485609|486239|486919|486923|486933|486966|486969|486982|486989|486996|486999|487002|487003|487006|487010|487082|487094|487220|487225|487307|487316|487320|487353|489475|496233|496281|496704|496888|499753|499799|499821|499828|500011|500167|500174|500175|500196|500236|500257|500268|500468|501768|502067|502070|502090|502415|502426|516195|516196|516203|516204|516207|516214|516222|516229|516231|516235|516240|516241|516245|516328|516333|516341|518262|518269|518270|518274|518275|518277|518281|518282|518285|518288|518293|518294|518295|518297|518299|518300|518303|518304|518307|518308|518309|518310|518312|518313|518314|518315|518316|518318|518319|518320|518322|518324|518325|518326|518332|518333|518334|518335|518336|518337|518338|518340|518341|518342|518346|518347|518348|518349|518350|518351|518352|518353|518355|518357|518359|518360|518363|518365|518367|518368|518369|518370|518371|518372|518373|518374|518376|518378|518379|518380|518381|518382|518383|518384|518385|518386|518388|518389|518390|518391|518392|518393|518394|518395|518396|518397|518398|518399|518400|518401|518403|518404|518405|518406|518407|518408|518409|518410|518411|518412|518413|518414|518415|518416|518417|518418|518419|518420|518421|518422|518423|518424|518425|518426|518427|518428|518429|518430|518431|518432|518433|518434|518435|518436|518437|518438|518439|518440|518441|518442|518443|518444|518445|518446|518447|518448|518449|518450|518451|518452|518453|518454|518455|518456|518458|518459|518460|518461|518462|518463|518464|518465|518467|518468|518469|518470|518471|518472|518473|518474|518475|518476|518477|518478|518479|518480|518481|518482|518483|518485|518487|518488|518490|518491|518492|518502|518504|518506|518507|518509|518511|518513|518515|518518|518522|518523|518524|518527|518529|518530|518532|518533|518537|518538|518545|518546|518547|518549|518552|518553|518555|518559|518560|518570|518572|518574|518576|518578|518586|518589|518596|518605|518608|518612|518812|518813|518891|519086|519087|519088|519093|519097|519098|519100|519104|519111|519112|519114|519119|519123|519124|519130|519132|519141|519145|519150|519165|519168|519174|519182|519183|519186|519188|519262|519264|519274|519275|519276|519278|519280|519282|519285|519286|519287|519288|519289|519291|519293|519294|519298|519300|519309|519311|519313|519314|519315|519318|519320|519322|519323|519324|519328|519330|519331|519336|519337|519339|519340|521889|521900|522261|522304|522640|522713|522718|522721|522723|522742|522750|522751|522752|522754|522757|522758|522760|522766|522968|522972|522979|522980|522982|522986|522988|522992|522994|522995|523007|523008|523010|523018|523020|523027|523028|523110|523114|523122|523123|523129|523131|523135|523143|523144|523145|523152|523169|523170|523185|523188|523190|523193|523195|523196|523203|523210|523213|523219|523222|523319|523324|523330|523332|523335|523337|523343|523344|523346|523347|523350|523352|523354|523360|523362|523364|536247|536250|536252|536258|536279|536326|536331|537753|539206|539217|539221|539228|539264|539266|539268|539271|551836|551839|551840|551848|552276|557444|557448|557450|557452|557497|557499|557501|557507|557509|558119|558121|558123|558125|558127|558129|558131|558133|558135|558137|558139|558141|558143|558145|558147|558149|558151|558153|558155|558157|558159|558161|558163|558165|558167|558169|558171|558173|558175|558177|558179|558181|558183|558185|558187|558189|558191|558193|558195|558197|558199|558201|558203|558207|558209|558211|558213|558215|558217|558219|558221|558223|558225|558227|558229|558231|558233|558235|558237|558306|558308|558482|558484|558486|558488|558490|558492|558494|558496|558498|558500|558502|558504|558506|558508|558510|558512|558514|558516|558518|558520|558522|558524|558526|558528|558530|558532|558534|558536|558538|558540|558542|558544|558546|558548|558550|558552|558554|558556|558558|558560|558562|558564|558566|558568|558570|558572|558574|558576|558578|558580|558582|558584|558586|558588|558590|558592|558594|558596|558598|558600|558602|558604|558606|558608|558645|558647|558657|558659|558661|558663|558702|558704|558708|558884|558886|558888|558890|558892|558894|558896|558898|558900|558902|558904|558906|558908|558910|558912|558914|558916|559137|559142|559144|559146|559154|559223|559225|559229|559429|559431|559433|559435|559437|559439|559441|559443|559445|559447|559449|560653|560655|560657|560659|560661|560663|560665|560667|560669|560671|560673|560675|560677|560679|560681|560683|560685|560687|560689|560691|560693|560695|560697|560699|560701|560703|560705|560707|560709|560711|560713|560715|560717|560719|560721|560723|560725|560727|560729|560731|560733|560735|560737|560739|560741|560743|560745|560747|560749|560754|560764|560766|560769|560770|560778|560780|560782|560784|560786|560789|560792|560794|560796|560799|560802|560805|560807|560810|560813|560814|560818|560822|560825|560827|560831|560832|560834|561048|561050|561076|561082|561151|561154|561156|561158|561390|561393|561395|561397|561399|561409|561411|561413|561415|561417|561418|561420|561422|561427|561428|561434|561436|561441|561551|561555|561561|561568|561574|561577|561578|561579|561592|561595|561603|561604|561620|561621|561625|561628|561631|561632|561633|561641|561643|561645|561647|561651|561652|561654|561655|561657|561660|561662|561664|561666|561668|561669|561671|561672|561673|561674|561675|561677|561680|561682|561683|561684|561688|561690|561691|561694|561697|561698|561699|561701|561703|561706|561707|561708|561711|561713|561714|561715|561716|561719|561720|561721|561731|561733|561735|561736|561747|561751|561752|561761|561764|561766|561772|561775|561784|561792|561801|561804|561805|561806|561810|561816|562005|562006|562009|562010|562016|562037|562044|562045|562048|562051|562052|562053|562061|562066|562072|562073|562082|562083|562084|562089|562103|562104|562105|562107|562108|562123|562125|562181|562182|562187|562188|562674|562679|562692|562694|562695|562697|562699|562700|562707|562714|562722|562724|562729|562731|562740|562741|563859|563865|563867|563880|564318|564319|564328|564336|564339|564342|564343|564348|564359|564360|564365|564367|564373|564374|564378|564385|564386|564388|564390|566078|566080|566083|566106|566108|566109|566113|566114|566118|566912|566913|566916|566918|566921|566923|566928|566934|566938|566962|566982|566986|566993|566994|567003|567004|567012|567016|567022|567025|567031|567035|567038|567040|567042|567045|567051|567057|567062|567077|567089|567090|567104|567106|575527|575545|575546|575668|575673|575676|575680|575684|575700|575703|575783|576258|576260|582331|610931|610932|610966|610987|611029|611035|611076|611289|611683|611989|613497|616603|616605|616608|616610|616612|616614|616617|616621|616630|616633|616634|616641|616651|616652|616656|616664|616678|616681|616686|616687|616690|616694|616703|616707|616709|616712|616715|616720|616732|616738|616739|616744|616745|616750|616752|616759|616767|616784|616785|616787|616840|616843|616846|616848|616852|616861|616867|616869|616870|616876|616880|616881|616883|617373|617375|617377|617378|617384|617391|617392|617393|617394|617397|617398|617400|617406|617408|619168|621136|621154|621156|621157|621265|621268|621273|621275|630074|630075|630076|630077|630078|630079|630080|630081|630082|630083|630084|630085|630086|630087|630088|630089|630090|630091|630092|630093|630094|630095|630096|630097|630098|630099|630100|630101|630102|630103|630104|630105|630106|630107|630108|630109|630110|630111|630112|630113|630114|630115|630116|630117|630118|630119|630120|630121|630122|630123|630124|630125|630126|630127|630128|630129|630130|630131|630132|630133|630134|630135|630136|630137|630138|630139|630140|630141|630142|630143|630144|630145|630146|630147|630148|630149|630150|630151|630152|630153|630154|630155|630156|630157|630158|630159|630160|630161|630162|630163|630164|630165|630166|630167|630168|630169|630170|630171|630172|630173|630174|630175|630176|630177|630178|630179|630180|630181|630182|630183|630184|630185|630186|630187|630188|630189|630190|630191|630192|630193|630194|630195|630196|630197|630198|630199|630200|630201|630202|630203|630204|630205|630206|630207|630208|630209|630210|630211|630212|630213|630214|630215|630216|630217|630218|630219|630220|630221|630222|630223|630224|630225|630226|630227|630228|630229|630230|630231|630232|630233|630234|630235|630236|630237|630238|630239|630240|630241|630242|630243|630244|630245|630246|630247|630248|630249|630250|630251|630252|630253|630254|630255|630256|630257|630258|630259|630260|630261|630262|630263|630264|630265|630266|630267|630268|630269|630270|630271|630272|630273|630274|630275|630276|630277|630278|630279|630280|630281|630282|630283|630284|630285|630286|630287|630288|630289|630290|630291|630292|630293|630294|630295|630296|630297|630298|630299|630300|630301|630302|630303|630304|630305|630306|630307|630308|630309|630310|630311|630312|630313|630314|630315|630316|630317|630318|630319|630320|630321|630322|630323|630324|630325|630326|630327|630328|630329|630330|630331|630332|630333|630334|630335|630336|630337|630338|630339|630340|630341|630342|630343|630344|630345|630346|630347|630348|630349|630350|630351|630352|630353|630354|630355|630356|630357|630358|630359|630360|630361|630362|630363|630364|630365|630366|630367|630368|630369|631191|631192|631193|631194|631195|631196|631197|631198|631199|631200|631201|631202|631203|631204|631205|631206|631207|631208|631209|631210|631211|631212|631213|631214|631215|631216|631217|631218|631219|631220|631221|631222|631223|631224|631225|631226|631227|631228|631229|631230|631231|631232|631233|631234|631235|631236|631237|631238|631239|631240|631241|631242|631243|631244|631245|631246|631247|631248|631249|631250|631251|631252|631253|631254|631255|631256|631257|631258|631259|631260|631261|631262|631263|631264|636205|636206|636207|636208|636209|636210|636211|636212|636213|636214|636215|636216|636217|636218|636219|636220|636221|636222|636223|636224|636225|636226|636227|636228|636229|636230|636231|636232|636233|636234|636235|636236|636237|636238|636239|636240|636241|636242|636243|636244|636245|636246|636247|636248|636249|636250|636251|636252|636253|636254|636255|636256|636257|636258|636259|636260|636261|636262|636263|636264|636265|636266|636267|636268|636269|636270|636271|636272|636273|636274|636275|636276|636277|636278|636279|636280|636281|636282|636283|636284|636285|636286|636287|636288|636289|636290|636291|636292|636293|636294|636295|636296|636297|636298|636299|636300|636301|636302|636303|636304|650759|650760|650761|650771|650773|650779|650784|650786|650789|650792|650795|650799|650803|650805|650807|650808|650810|650819|650820|650824|650825|650830|650834|650838|650840|650841|650842|650843|650844|650845|650847|650848|650850|650854|650860|650867|650937|650940|650963|650964|650973|650986|650988|650991|650992|650993|650996|650997|651034|651046|651048|651056|651059|651063|651064|651068|651073|651075|651078|651081|651082|651091|651101|651123|651125|651131|651178|651601|651605|651607|651615|651616|651618|651619|651621|651625|651640|651676|651678|651681|651691|651718|651721|651726|651733|651744|651747|651750|651821|651826|654287|655460|655796|683502|683503|686215|686217|686218|686219|687084|687085|687086|687087|687088|691179|691180|691379|692253|692254|692255|692256|692257|692258|695147|695365|719895|722593|743953|744062|747675|747678|747679|747681|747682|750710|750713|759126|759693|763268|763269|763270|763274|763275|763278|763279|763285|763287|763290|763300|763303|763318|763322|763323|763326|763331|763334|763337|763340|763341|763343|763832|763835|766326|766329|766330|766335|766342|766347|774754|774774|774810|774851|774852|775385|781361|781363|781389|781391|781392|781393|781394|781395|781645|781649|781651|782883|782885|782887|782888|782889|782893|787147|787225|787296|787304|787314|787373|787523|787524|789429|789431|789432|789434|789446|790250|790256|790739|790740|799302|806941|806950|806963|806964|806985|806987|806992|806995|806998|807019|807041|807042|807047|807050|807060|807067|807073|807082|807089|807092|807097|807118|807126|807128|807132|807134|807136|807158|807176|807180|807185|807187|807194|807195|807196|807206|807207|807215|807220|807224|807226|807238|807246|807252|807262|807263|807264|807266|807270|807276|807283|807291|807296|807302|807304|807308|807311|807328|807345|807352|807354|807357|807370|807376|807378|807380|807388|807393|807408|807410|807414|807419|807427|807432|807527|807528|807537|807545|807553|807562|807565|807574|807598|807599|807600|807609|807611|807615|807627|807631|807636|809034|809035|809040|809044|809064|809068|809075|809082|809087|809090|809093|809102|809106|809108|809111|809112|809121|809132|809146|809150|809152|809179|809183|809184|809188|815236|815238|815239|815303|815311|815384|819175|819176|819177|819178|819179|819180|819181|819182|819183|819184|819185|819186|819187|819188|819189|819190|819191|819192|819193|819194|819195|819196|819198|819199|819200|819201|819202|819203|819204|819205|819206|819207|819208|819209|819214|819215|819216|819217|819218|819219|819220|819222|819223|819225|819226|819228|819230|819231|819232|819233|819234|819235|819236|819237|819238|819239|819240|819241|819242|819243|819244|819245|819246|819247|819248|819249|819250|819251|819253|819254|819255|819256|819368|819369|819370|819371|819372|819373|819374|819379|819380|819381|819382|819383|819386|819387|819388|819389|819390|819391|819392|819393|819394|819395|819396|819883|819884|819885|819887|819888|819889|819890|819891|819892|819893|819894|819895|819896|819897|819898|819899|819901|819902|819903|826548|826549|826550|826551|826552|826553|826554|826555|826556|826557|826558|826559|826560|826561|826562|826563|826564|826565|826566|826567|826568|826569|826570|826571|826572|826573|826574|826575|826576|826577|826578|826579|826580|826581|826582|826583|826584|826585|826586|826587|826588|826589|826590|826591|826592|826593|826594|826595|826596|826597|826598|826599|826600|826601|826602|826603|826604|826605|826606|826607|826608|826609|826610|826611|826612|826613|826614|826615|826616|826617|826618|826619|826620|826621|826622|826623|826624|826625|826626|826627|826628|826629|826630|826631|826632|826633|826634|826635|826636|826637|826638|826639|826640|826641|826642|826643|826644|826645|826646|826647|826648|826649|826650|826651|826652|826653|826654|826655|826656|826657|826658|826659|826660|826661|826662|826663|826664|826665|826666|826667|826668|826669|826670|826671|826672|826673|826674|826675|826676|826677|826678|826679|826680|826681|826682|826683|826684|826685|826686|826687|826688|826689|826690|826691|826692|826693|826694|826695|826696|826697|826698|826699|826700|826701|826702|826703|826704|826705|826706|826707|826708|826709|826710|826711|826712|826713|826714|826715|826716|826717|826718|826719|826720|826721|826722|826723|826724|826725|826726|826727|826728|826729|826730|826731|826732|826733|826734|826735|826736|826737|826738|826739|826740|826741|826742|826743|826744|826745|826746|826747|826748|826749|826750|826751|826752|826753|826754|826755|826756|826757|826758|826759|826760|826761|826762|826763|826764|826765|826766|826767|826768|826769|826770|826771|826772|826773|826774|826775|826777|826778|826779|826780|826781|826782|826783|826784|826785|826786|826787|826788|826789|826790|826791|826792|826793|826794|827915|827916|827917|827918|827919|827920|827921|827922|827923|827924|827925|827926|827927|827928|827929|827930|827931|827932|827933|827934|827935|827936|827937|827938|827939|827940|827941|827942|827943|827944|827945|827946|827947|827948|827949|827950|827951|827952|827953|827954|827955|827956|827957|827958|827959|827960|827961|827962|827963|827964|827965|827966|827967|827968|827969|827970|827971|827972|827973|827974|827975|827976|827977|827978|833730|833731|833732|833733|833734|833735|833736|833737|833738|833739|833740|833741|833742|833743|833744|833745|833746|833747|833748|833749|833750|833751|833752|833753|833754|833755|833756|833757|833758|833759|833760|833761|833762|833763|833764|833765|833766|833767|833768|833769|833770|833771|833772|833773|833774|833775|833776|833777|833778|833779|833780|833781|833782|833783|833784|833785|833786|833787|833788|833789|833790|833791|833792|833793|833794|833795|850865|850867|850869|850907|850908|850911|850926|850927|850928|850930|850932|850934|851159|851182|851184|851186|851188|851190|851194|851336|851432|851556|851558|851560|851648|851650|852094|852096|852098|852100|852372|858403|858457|858461|858472|885123|908798|908808|908881|908890|908894|908904|908915|908937|908946|908952|908953|908992|909006|909067|909302|909329|909330|910919|910942|910953|910960|910967|910975|915517|916872|916877|921456|922793|922794|922795|922796|922797|922798|922799|922800|922801|922802|922803|922804|922805|922806|922807|922808|922809|922810|922811|922812|922813|922814|922815|922816|922817|922818|922819|922820|922821|922822|922823|922824|922825|922826|922827|922828|922829|922830|922831|922832|922833|922834|922835|922836|922837|922838|922839|922840|922841|922842|922843|922844|922845|922846|922847|922848|922849|922850|922851|922852|922853|922854|922855|922856|922857|922858|922859|922860|922861|922862|922863|922864|922865|922866|922867|922868|922869|923144|923145|923146|923147|923148|923149|923150|923151|923152|923153|923154|923155|923156|923157|924880|924881|924882|924883|924884|924885|924886|924887|924888|924889|924890|924891|924892|924893|924894|924895|924896|924897|931426|931427|931428|931429|931430|931431|931432|931433|931434|931435|931436|931437|931438|931439|931440|931441|931442|931443|931444|931445|931446|931447|931448|931449|931450|931451|931452|931453|931454|931455|931456|931457|931458|931459|931460|931461|931462|931463|931464|931465|931466|931467|931468|931469|931470|931471|931472|931473|931474|931475|931476|931477|931478|931479|931480|931481|931482|931483|931484|931485|931486|931487|931488|931489|931490|931491|931492|931493|931494|931495|931496|931497|931498|931499|931500|931501|931502|931503|931504|931505|931506|931507|931508|931509|931510|931511|931512|931513|931514|931515|931516|931517|931518|931890|931891|931892|931893|931894|931895|931896|931897|931898|931899|931900|931901|931902|931903|931904|931905|931906|931907|931908|931909|931910|931911|933943|933944|933945|933946|933947|933948|933949|933950|933951|933952|933953|933954|933955|933956|933957|933958|933959|933960|933961|933962|933963|933964|933965|933966|933967|933968|933969|933970|933971|933972|933973|933974|933975|933976|939899|939900|939901|939902|939903|939904|939905|939935|939936|940082|940713|940714|940715|940716|940717|940718|940719|940720|940749|940879|940880|940881|942954|942955|942956|942957|942958|942959|942960|942961|942962|942963|942964|942965|942966|942967|942968|942969|942970|942971|942972|942973|942974|942975|942976|942977|942978|942979|942980|942981|942982|942983|942984|942985|942986|942987|942988|942989|942990|942991|942992|942993|942994|942995|942996|942997|942998|942999|943000|943001|943002|943003|943004|943005|943006|943007|943008|943009|943010|943011|943012|943013|943014|943015|943016|943017|943018|943019|943020|943021|943022|943023|943024|943025|943026|943027|943028|943029|943030|943031|943032|943033|943034|943035|943480|943481|943482|943483|943484|943485|943486|943487|943488|943489|943490|943491|943492|943493|943494|943495|943496|943497|943498|943499|943500|943501|943502|945720|945721|945722|945723|945724|945725|945726|945727|945728|945729|945730|945731|945732|945733|945734|945735|945736|945737|945738|945739|945740|945741|945742|945743|945744|945745|945746|945747|953106|953107|953108|953109|953110|953111|953112|953113|953114|953115|953116|953117|953118|953119|953120|953121|953122|953123|953124|953125|953126|953127|953128|953129|953131|953132|953133|953134|953135|953136|953137|953138|953139|953140|953141|953439|953440|953441|953442|953443|953444|953445|953446|953447|953448|955183|955184|955185|955186|955187|955188|955189|955190|955191|955192|955193|955194|955195|955196|955197|955198|955199|955200|955201|955202|955203|959645|959646|959647|959648|959695|959696|959862|959863|960479|960480|960481|960482|960483|960484|960485|960486|960636", "text": "Hereditary nonpolyposis colorectal neoplasms" }, { - "baseId": "16794|16803|23978|23980|24273|24276|24284|24284|32119|32126|32127|32130|32136|32138|32144|45202|45233|45350|50032|50071|50072|50084|50085|50148|50152|50153|51362|94679|94763|94786|94812|94816|94826|94834|94836|94843|94898|94947|94971|95036|95079|95127|95179|95218|95225|95362|95406|95427|95485|95488|95506|95556|95606|95622|95650|95759|95780|95916|95926|95987|95994|96029|96044|96049|96094|96129|96220|96279|96330|96378|96465|96516|96572|96611|96710|96775|96792|96795|96805|96815|96818|96841|96841|96850|96857|133027|133050|133072|133076|133086|133227|133237|133248|133249|133252|133253|133255|138590|139651|150473|150877|150979|151013|151078|151946|152204|152291|152364|152385|171076|179989|180098|180145|180148|180263|180273|181907|181971|181998|181998|182130|182257|182281|182738|182807|212191|212214|212225|221236|221251|221252|221295|221394|221405|221705|221713|231655|231678|231692|232602|232837|233515|233544|233555|239148|259868|361855|369830|392813|392893|395935|405879|405897|406198|406222|407204|432523|451404|452376|472775|473109|473493|474621|474639|483975|487316|518546|523007|562700|789372|919108|920243|920244|964664|965451", + "upstreamId": "16794|16803|23978|23980|24273|24276|24284|24284|32119|32126|32127|32130|32136|32138|32144|45202|45233|45350|50032|50071|50072|50084|50085|50148|50152|50153|51362|94679|94763|94786|94812|94816|94826|94834|94836|94843|94898|94947|94971|95036|95079|95127|95179|95218|95225|95362|95406|95427|95485|95488|95506|95556|95606|95622|95650|95759|95780|95916|95926|95987|95994|96029|96044|96049|96094|96129|96220|96279|96330|96378|96465|96516|96572|96611|96710|96775|96792|96795|96805|96815|96818|96841|96841|96850|96857|133027|133050|133072|133076|133086|133227|133237|133248|133249|133252|133253|133255|138590|139651|150473|150877|150979|151013|151078|151946|152204|152291|152364|152385|171076|179989|180098|180145|180148|180263|180273|181907|181971|181998|181998|182130|182257|182281|182738|182807|212191|212214|212225|221236|221251|221252|221295|221394|221405|221705|221713|231655|231678|231692|232602|232837|233515|233544|233555|239148|259868|361855|369830|392813|392893|395935|405879|405897|406198|406222|407204|432523|451404|452376|472775|473109|473493|474621|474639|483975|487316|518546|523007|562700|789372|919108|920243|920244|964664|965451", "text": "Turcot syndrome" }, { - "baseId": "16794|16797|16800|16803|16813|32138|45202|50071|50072|50084|50085|95054|95079|95127|95179|95218|95225|95406|95421|95427|95485|95488|95506|95556|95606|95622|95650|95759|95780|95916|95926|95987|95994|96029|96044|96094|96129|96279|96330|96378|96465|96572|96710|133072|133076|133086|150473|171076|179989|180145|180148|181907|182257|182281|212191|221236|221394|221405|232602|239148|406198|406222|452376|472775|473493|562700|613998", + "upstreamId": "16794|16797|16800|16803|16813|32138|45202|50071|50072|50084|50085|95054|95079|95127|95179|95218|95225|95406|95421|95427|95485|95488|95506|95556|95606|95622|95650|95759|95780|95916|95926|95987|95994|96029|96044|96094|96129|96279|96330|96378|96465|96572|96710|133072|133076|133086|150473|171076|179989|180145|180148|181907|182257|182281|212191|221236|221394|221405|232602|239148|406198|406222|452376|472775|473493|562700|613998", "text": "Muir-Torr\u00e9 syndrome" }, { - "baseId": "16798|16799|24281|45255|94646|94694|94804|94807|94812|94813|94814|94818|95037|95201|95227|95255|95310|95313|95360|95374|95384|95404|95419|95466|95576|95581|95584|95615|95759|95786|95805|95806|95855|95985|96029|96093|96116|96187|96241|96265|96343|96428|96496|96577|96580|96648|96652|96729|96737|96765|96774|96793|96798|96818|96851|133112|133253|150580|150772|150994|152364|152570|180099|180273|182030|182160|182782|182807|185992|186313|212611|214607|214608|221222|228967|231656|232847|233486|233596|238932|240100|244380|359365|359807|392853|392918|393047|405910|405949|405952|419548|427162|451200|451635|474770|484101|487006|518417|518434|610916|809090|915020|916866|916871|916872|916875|916878|917008|917426|920527|921457|964738|964739|969148|970062|970063|970064|970065|970066|970067|970068|970070|970071|970072|972530|972549|975755|975756|975770|983930|983950", + "upstreamId": "16798|16799|24281|45255|94646|94694|94804|94807|94812|94813|94814|94818|95037|95201|95227|95255|95310|95313|95360|95374|95384|95404|95419|95466|95576|95581|95584|95615|95759|95786|95805|95806|95855|95985|96029|96093|96116|96187|96241|96265|96343|96428|96496|96577|96580|96648|96652|96729|96737|96765|96774|96793|96798|96818|96851|133112|133253|150580|150772|150994|152364|152570|180099|180273|182030|182160|182782|182807|185992|186313|212611|214607|214608|221222|228967|231656|232847|233486|233596|238932|240100|244380|359365|359807|392853|392918|393047|405910|405949|405952|419548|427162|451200|451635|474770|484101|487006|518417|518434|610916|809090|915020|916866|916871|916872|916875|916878|917008|917426|920527|921457|964738|964739|969148|970062|970063|970064|970065|970066|970067|970068|970070|970071|970072|972530|972549|975755|975756|975770|983930|983950", "text": "Hereditary nonpolyposis colon cancer" }, { - "baseId": "16801", + "upstreamId": "16801", "text": "MSH2 POLYMORPHISM" }, { - "baseId": "16801|21985|24368|31619|32700|45243|45982|46604|47727|49984|50006|50089|50199|50251|50254|50257|50266|50270|66533|94815|94834|96346|96428|96572|133160|133610|139629|150591|151001|151773|167486|167491|180144|182185|182304|185548|238862|286667|360962|405963|457119|468105|475637|485590|514061|551416|551419|624834|677245|790251|809656|970742|970743|970915", + "upstreamId": "16801|21985|24368|31619|32700|45243|45982|46604|47727|49984|50006|50089|50199|50251|50254|50257|50266|50270|66533|94815|94834|96346|96428|96572|133160|133610|139629|150591|151001|151773|167486|167491|180144|182185|182304|185548|238862|286667|360962|405963|457119|468105|475637|485590|514061|551416|551419|624834|677245|790251|809656|970742|970743|970915", "text": "Breast carcinoma" }, { - "baseId": "16806|16807|96202|96324", + "upstreamId": "16806|16807|96202|96324", "text": "MISMATCH REPAIR CANCER SYNDROME 2" }, { - "baseId": "16814|16815|125902|142831|142832|142833|142834|142838|142839|142840|142841|142842|142843|142844|142845|142847|142848|142850|153738|168882|168883|168884|168885|168886|168888|168889|202631|202639|202644|207916|262351|269133|315273|315274|315276|315279|315281|315290|315307|315312|315313|315323|315331|315333|315336|315337|322123|322127|322131|322132|322136|322137|322138|322144|322149|322150|322156|322163|322177|322178|328198|328199|328200|328202|328217|328218|328219|328230|328235|328243|328244|328249|329515|329517|329525|329526|329550|329563|329570|329572|329577|429321|456110|456372|456374|456375|456380|456382|456384|456660|456667|457028|457031|459965|459976|459977|459986|459988|459991|459993|460002|460004|460011|460016|460018|460026|460100|460107|460109|460111|460117|460118|460120|460123|460125|460128|460131|460133|460139|460142|460144|460146|460149|460150|460152|460157|460163|460368|460373|460374|460396|460400|460402|460404|460406|460409|460410|460412|460417|460429|460430|460439|460440|460446|460796|460797|460802|460817|460818|460836|460838|460840|460857|460858|460862|460863|460865|460877|460879|460882|460884|460887|460888|460893|460896|460905|460906|522087|522090|522091|522803|522809|525211|525220|525221|525222|525223|525231|525234|525240|525383|525391|525392|525393|525397|525494|525496|525498|525500|525503|525508|525513|525684|525689|525693|525707|525710|525712|525713|525714|525717|525719|525722|561142|561244|561319|561326|563804|563811|563816|563817|563818|563823|563829|563832|563840|563844|563848|563985|564637|564648|564649|564650|564652|564660|564663|564665|564666|566333|566336|566337|566340|566375|566376|566380|566381|566385|566388|566390|567554|569706|569713|569720|569730|571009|579797|610292|614552|635565|635566|635567|635568|635569|635570|635571|635572|635573|638994|638995|638996|638997|638998|638999|639000|639001|639002|639003|639004|639005|639006|639007|639008|639009|639010|639011|639012|639013|639014|639015|639016|639017|639018|639019|639020|639021|639022|639023|639024|639025|639026|639027|639028|639029|639030|639031|639032|639033|639034|639035|639036|639037|639038|639039|639040|639041|639042|639043|639044|639045|639046|639047|639048|639049|639050|651702|652110|652143|652240|692870|692872|692873|692874|692875|699777|699778|699779|699780|699781|701394|701395|701396|701397|701398|701399|701400|701401|701402|712422|712425|712427|712428|724002|724003|724004|724005|724006|724007|737546|737547|737548|744622|750367|750369|750370|752167|752170|752173|752174|752176|752179|759944|766031|767843|767846|767848|767849|767851|767852|767853|767854|767858|767859|775549|778097|778101|783652|783653|796426|820225|832904|832905|832906|832907|837004|837005|837006|837007|837008|837009|837010|837011|837012|837013|837014|837015|837016|837017|837018|837019|837020|837021|837022|837023|837024|837025|837026|837027|837028|837029|837030|837031|837032|837033|837034|837035|837036|837037|837038|837039|837040|837041|837042|837043|837044|837045|837046|837047|837048|837049|837050|837051|837052|837053|837054|837055|837056|837057|837058|837059|837060|837061|837062|837063|837064|837065|837066|837067|837068|837069|837070|837071|837072|837073|837074|851780|851782|852050|852318|852555|868850|868851|868852|868853|868854|868855|868856|868857|868858|868859|868860|868861|868862|868863|868864|868865|868866|868867|868868|872145|924622|924623|925847|925848|925849|925850|925851|925852|925853|925854|925855|925856|925857|925858|925859|925860|925861|925862|925863|925864|925865|925866|925867|925868|925869|925870|925871|925872|925873|925874|925875|925876|925877|925878|925879|925880|925881|925882|925883|933611|933612|935087|935088|935089|935090|935091|935092|935093|935094|935095|935096|935097|935098|935099|935100|935101|935102|935103|935104|935105|935106|935107|935108|935109|935110|935111|935112|935113|935114|935115|935116|935117|935118|935119|935120|935121|935122|940961|945352|945353|946961|946962|946963|946964|946965|946966|946967|946968|946969|946970|946971|946972|946973|946974|946975|946976|946977|946978|946979|946980|946981|946982|946983|946984|946985|946986|946987|956117|956118|956119|956120|956121|956122|956123|956124|956125|956126|956127|956128|956129|956130|956131|956132|960721", + "upstreamId": "16814|16815|125902|142831|142832|142833|142834|142838|142839|142840|142841|142842|142843|142844|142845|142847|142848|142850|153738|168882|168883|168884|168885|168886|168888|168889|202631|202639|202644|207916|262351|269133|315273|315274|315276|315279|315281|315290|315307|315312|315313|315323|315331|315333|315336|315337|322123|322127|322131|322132|322136|322137|322138|322144|322149|322150|322156|322163|322177|322178|328198|328199|328200|328202|328217|328218|328219|328230|328235|328243|328244|328249|329515|329517|329525|329526|329550|329563|329570|329572|329577|429321|456110|456372|456374|456375|456380|456382|456384|456660|456667|457028|457031|459965|459976|459977|459986|459988|459991|459993|460002|460004|460011|460016|460018|460026|460100|460107|460109|460111|460117|460118|460120|460123|460125|460128|460131|460133|460139|460142|460144|460146|460149|460150|460152|460157|460163|460368|460373|460374|460396|460400|460402|460404|460406|460409|460410|460412|460417|460429|460430|460439|460440|460446|460796|460797|460802|460817|460818|460836|460838|460840|460857|460858|460862|460863|460865|460877|460879|460882|460884|460887|460888|460893|460896|460905|460906|522087|522090|522091|522803|522809|525211|525220|525221|525222|525223|525231|525234|525240|525383|525391|525392|525393|525397|525494|525496|525498|525500|525503|525508|525513|525684|525689|525693|525707|525710|525712|525713|525714|525717|525719|525722|561142|561244|561319|561326|563804|563811|563816|563817|563818|563823|563829|563832|563840|563844|563848|563985|564637|564648|564649|564650|564652|564660|564663|564665|564666|566333|566336|566337|566340|566375|566376|566380|566381|566385|566388|566390|567554|569706|569713|569720|569730|571009|579797|610292|614552|635565|635566|635567|635568|635569|635570|635571|635572|635573|638994|638995|638996|638997|638998|638999|639000|639001|639002|639003|639004|639005|639006|639007|639008|639009|639010|639011|639012|639013|639014|639015|639016|639017|639018|639019|639020|639021|639022|639023|639024|639025|639026|639027|639028|639029|639030|639031|639032|639033|639034|639035|639036|639037|639038|639039|639040|639041|639042|639043|639044|639045|639046|639047|639048|639049|639050|651702|652110|652143|652240|692870|692872|692873|692874|692875|699777|699778|699779|699780|699781|701394|701395|701396|701397|701398|701399|701400|701401|701402|712422|712425|712427|712428|724002|724003|724004|724005|724006|724007|737546|737547|737548|744622|750367|750369|750370|752167|752170|752173|752174|752176|752179|759944|766031|767843|767846|767848|767849|767851|767852|767853|767854|767858|767859|775549|778097|778101|783652|783653|796426|820225|832904|832905|832906|832907|837004|837005|837006|837007|837008|837009|837010|837011|837012|837013|837014|837015|837016|837017|837018|837019|837020|837021|837022|837023|837024|837025|837026|837027|837028|837029|837030|837031|837032|837033|837034|837035|837036|837037|837038|837039|837040|837041|837042|837043|837044|837045|837046|837047|837048|837049|837050|837051|837052|837053|837054|837055|837056|837057|837058|837059|837060|837061|837062|837063|837064|837065|837066|837067|837068|837069|837070|837071|837072|837073|837074|851780|851782|852050|852318|852555|868850|868851|868852|868853|868854|868855|868856|868857|868858|868859|868860|868861|868862|868863|868864|868865|868866|868867|868868|872145|924622|924623|925847|925848|925849|925850|925851|925852|925853|925854|925855|925856|925857|925858|925859|925860|925861|925862|925863|925864|925865|925866|925867|925868|925869|925870|925871|925872|925873|925874|925875|925876|925877|925878|925879|925880|925881|925882|925883|933611|933612|935087|935088|935089|935090|935091|935092|935093|935094|935095|935096|935097|935098|935099|935100|935101|935102|935103|935104|935105|935106|935107|935108|935109|935110|935111|935112|935113|935114|935115|935116|935117|935118|935119|935120|935121|935122|940961|945352|945353|946961|946962|946963|946964|946965|946966|946967|946968|946969|946970|946971|946972|946973|946974|946975|946976|946977|946978|946979|946980|946981|946982|946983|946984|946985|946986|946987|956117|956118|956119|956120|956121|956122|956123|956124|956125|956126|956127|956128|956129|956130|956131|956132|960721", "text": "Early myoclonic encephalopathy" }, { - "baseId": "16816|16818|16819|16820|16824|16825|16828|16829|16830|16831|16835|16836|16837|16838|16840|16841|16842|16843|16844|16847", + "upstreamId": "16816|16818|16819|16820|16824|16825|16828|16829|16830|16831|16835|16836|16837|16838|16840|16841|16842|16843|16844|16847", "text": "Complete combined 17-alpha-hydroxylase/17,20-lyase deficiency" }, { - "baseId": "16816|16819|16821|16824|16826|309338|309339|309341|314007|314008|314016|314017|314018|314022|319908|319911|319917|320451|320457|404785|425860|429040|620342|737315|767606|767607|767608|783527|865317|865318|865319|865320|865321|865322|865323|865324|865325|868430|978615|978616|978617|978618|978619|978620|978621|978622|978623", + "upstreamId": "16816|16819|16821|16824|16826|309338|309339|309341|314007|314008|314016|314017|314018|314022|319908|319911|319917|320451|320457|404785|425860|429040|620342|737315|767606|767607|767608|783527|865317|865318|865319|865320|865321|865322|865323|865324|865325|868430|978615|978616|978617|978618|978619|978620|978621|978622|978623", "text": "Deficiency of steroid 17-alpha-monooxygenase" }, { - "baseId": "16817|16821|16822|16823|16832|16833|16834|16839|16845|16846", + "upstreamId": "16817|16821|16822|16823|16832|16833|16834|16839|16845|16846", "text": "Combined partial 17-alpha-hydroxylase/17,20-lyase deficiency" }, { - "baseId": "16826|16827", + "upstreamId": "16826|16827", "text": "Isolated 17,20-lyase deficiency" }, { - "baseId": "16848|16849|16850|16851|16852|16853|16854|16855|39741|49794|49795|49796|49797|49890|49891|57129|57130|57131|57132|57133|57134|175959|176103|222418|230561|242033|242034|242035|242036|242038|264838|322322|322328|322333|322334|322338|322343|322345|322347|322350|322351|322352|322356|322362|322364|322367|322368|322369|322371|322372|322386|322393|331649|331651|331652|331655|331665|331666|331674|331675|331687|331688|331693|331697|331699|331702|338625|338629|338637|338639|338645|338652|338654|338657|338664|338666|338669|338674|338676|338678|338680|338682|338686|340338|340339|340344|340345|340347|340351|340353|340355|340357|340362|340363|340364|340367|340368|340370|340372|340373|360244|361214|373383|373387|373388|400071|400528|400554|400555|400558|422010|464153|464168|464172|464174|464176|464697|464706|464708|464710|464715|464717|464720|464721|464975|464981|464988|464993|485754|485755|497043|504728|512136|528724|528727|528782|528785|529110|529111|529116|529252|529256|529257|529263|529266|538024|538025|538026|538027|538028|552852|566864|566978|566981|566987|566991|566992|568569|569323|569328|573217|573221|624494|624495|643113|643114|643115|643116|643117|643118|643119|643120|643121|643122|643123|643124|643125|643126|653035|688401|805820|820688|820689|842240|842241|842242|842243|842244|842245|842246|842247|873292|873293|873294|873295|873296|873297|873298|873299|873300|873301|873302|873303|873304|873305|873306|873307|873308|873309|873310|873311|873312|873313|873314|873315|873316|873317|873318|873319|873320|873321|873322|873323|873324|873325|873326|873327|873328|873329|873330|873331|873332|873333|873334|873335|873336|873337|873338|873339|873340|873341|873342|873343|873344|873345|873346|919568|927300|936899|936900|948850|948851|948852|948853|948854|948855|948856|948857|948858|957396|957397|957398|957399|957400|960820", + "upstreamId": "16848|16849|16850|16851|16852|16853|16854|16855|39741|49794|49795|49796|49797|49890|49891|57129|57130|57131|57132|57133|57134|175959|176103|222418|230561|242033|242034|242035|242036|242038|264838|322322|322328|322333|322334|322338|322343|322345|322347|322350|322351|322352|322356|322362|322364|322367|322368|322369|322371|322372|322386|322393|331649|331651|331652|331655|331665|331666|331674|331675|331687|331688|331693|331697|331699|331702|338625|338629|338637|338639|338645|338652|338654|338657|338664|338666|338669|338674|338676|338678|338680|338682|338686|340338|340339|340344|340345|340347|340351|340353|340355|340357|340362|340363|340364|340367|340368|340370|340372|340373|360244|361214|373383|373387|373388|400071|400528|400554|400555|400558|422010|464153|464168|464172|464174|464176|464697|464706|464708|464710|464715|464717|464720|464721|464975|464981|464988|464993|485754|485755|497043|504728|512136|528724|528727|528782|528785|529110|529111|529116|529252|529256|529257|529263|529266|538024|538025|538026|538027|538028|552852|566864|566978|566981|566987|566991|566992|568569|569323|569328|573217|573221|624494|624495|643113|643114|643115|643116|643117|643118|643119|643120|643121|643122|643123|643124|643125|643126|653035|688401|805820|820688|820689|842240|842241|842242|842243|842244|842245|842246|842247|873292|873293|873294|873295|873296|873297|873298|873299|873300|873301|873302|873303|873304|873305|873306|873307|873308|873309|873310|873311|873312|873313|873314|873315|873316|873317|873318|873319|873320|873321|873322|873323|873324|873325|873326|873327|873328|873329|873330|873331|873332|873333|873334|873335|873336|873337|873338|873339|873340|873341|873342|873343|873344|873345|873346|919568|927300|936899|936900|948850|948851|948852|948853|948854|948855|948856|948857|948858|957396|957397|957398|957399|957400|960820", "text": "Legius syndrome" }, { - "baseId": "16856|16857|16858|34511|34512|34513|34514|34515|34516|34517|34518|39740|101805|140421|169015|169015|169018|169019|169020|169021|169022|169023|169024|169025|169026|169027|169028|169031|169031|169032|169032|169033|169034|169036|169037|169038|169038|169039|169039|169040|169041|169042|169043|169044|169045|191939|194480|208029|208038|254844|319318|319320|319324|319331|319335|319339|319340|319344|327833|327837|327838|327860|327863|327872|327873|327877|327879|327880|327888|327890|327892|327893|334132|334133|334135|334148|334152|334165|334170|335735|335772|335797|335804|335810|335820|335829|335830|335833|335838|335845|335846|404812|426039|429484|437953|437953|488204|488238|490846|513331|587191|870972|870973|870974|870975|870976|870977|870978|870979|870980|870981|870982|870983|870984|870985|870986|870987|870988|870989|870990|870991|870992|870993|870994|870995|870996|870997|870998|870999|872321|872322|965989", + "upstreamId": "16856|16857|16858|34511|34512|34513|34514|34515|34516|34517|34518|39740|101805|140421|169015|169015|169018|169019|169020|169021|169022|169023|169024|169025|169026|169027|169028|169031|169031|169032|169032|169033|169034|169036|169037|169038|169038|169039|169039|169040|169041|169042|169043|169044|169045|191939|194480|208029|208038|254844|319318|319320|319324|319331|319335|319339|319340|319344|327833|327837|327838|327860|327863|327872|327873|327877|327879|327880|327888|327890|327892|327893|334132|334133|334135|334148|334152|334165|334170|335735|335772|335797|335804|335810|335820|335829|335830|335833|335838|335845|335846|404812|426039|429484|437953|437953|488204|488238|490846|513331|587191|870972|870973|870974|870975|870976|870977|870978|870979|870980|870981|870982|870983|870984|870985|870986|870987|870988|870989|870990|870991|870992|870993|870994|870995|870996|870997|870998|870999|872321|872322|965989", "text": "Primary autosomal recessive microcephaly 6" }, { - "baseId": "16856|18493|18494|18495|34421|34422|34458|34554|34555|34556|34557|39596|39597|39598|39599|102020|102022|102023|141888|168642|168643|168644|168645|168647|168648|168649|168650|168651|168653|168654|168655|168656|168657|168658|168659|168660|168661|168662|168663|168664|168665|168666|168667|168668|168669|168670|168671|168672|168674|168675|168676|168677|168684|168685|168686|168687|168689|168692|168693|168694|168695|168696|168697|168698|168700|168701|168702|168703|168705|177255|177832|191095|191285|193676|195416|196068|204410|207565|207566|207567|207568|263004|268492|269728|269760|271359|305726|305728|305729|305737|305738|305762|305766|305767|305768|309735|309736|309737|309765|309766|309771|314972|314987|315019|315021|315082|315086|315104|315106|315107|315136|315137|315146|407440|425803|428850|428852|428853|428854|490847|491170|538402|577066|620807|626179|682798|682799|723165|736734|801848|861607|899924|899925|899926|899927|899928|899929|899930|899931|899932|899933|899934|899935|899936|899937|899946|899950|899951|899952|899953|899954|899955|899956|899957|899958|899959|899960|899961|899962|899963|900511|904224|904225|919172|970885|975861", + "upstreamId": "16856|18493|18494|18495|34421|34422|34458|34554|34555|34556|34557|39596|39597|39598|39599|102020|102022|102023|141888|168642|168643|168644|168645|168647|168648|168649|168650|168651|168653|168654|168655|168656|168657|168658|168659|168660|168661|168662|168663|168664|168665|168666|168667|168668|168669|168670|168671|168672|168674|168675|168676|168677|168684|168685|168686|168687|168689|168692|168693|168694|168695|168696|168697|168698|168700|168701|168702|168703|168705|177255|177832|191095|191285|193676|195416|196068|204410|207565|207566|207567|207568|263004|268492|269728|269760|271359|305726|305728|305729|305737|305738|305762|305766|305767|305768|309735|309736|309737|309765|309766|309771|314972|314987|315019|315021|315082|315086|315104|315106|315107|315136|315137|315146|407440|425803|428850|428852|428853|428854|490847|491170|538402|577066|620807|626179|682798|682799|723165|736734|801848|861607|899924|899925|899926|899927|899928|899929|899930|899931|899932|899933|899934|899935|899936|899937|899946|899950|899951|899952|899953|899954|899955|899956|899957|899958|899959|899960|899961|899962|899963|900511|904224|904225|919172|970885|975861", "text": "Primary autosomal recessive microcephaly 1" }, { - "baseId": "16859|106652|106652|135519|135520|135521|135521|135523|135523|135524|135524|135525|135526|206757|206757|206758|206758|206762|206762|237363|237363|270346|271432|271432|271433|279278|279279|279280|279285|279286|279295|279300|279301|279308|279309|279310|279311|279318|279318|279324|279324|279325|279329|279329|279330|279343|279490|279491|279493|279494|279496|279497|279498|279502|279506|279507|279508|279508|279509|279512|279512|279534|279535|279536|279545|279545|279549|280795|280797|280798|280799|280804|280805|280809|280810|280813|280822|280823|280825|280825|280830|280835|280837|280839|280845|280846|280847|280850|280851|280855|280860|280863|280872|280873|280874|280875|280876|280877|280878|280887|280887|280897|280909|280913|280923|280924|280924|280939|280940|280956|280957|280958|364904|364905|425336|427712|447500|447631|447634|447736|447738|447738|447743|447746|498243|515542|515555|535673|556790|557153|558347|558347|627378|627379|627380|650679|690489|690489|690490|696474|696475|696475|696477|777096|780569|801776|823482|823483|823484|858672|858673|863719|863720|863721|863722|863723|863724|863725|863726|863727|863728|863729|863730|863731|863732|863733|863734|863735|863736|863737|863738|863739|863740|863741|863742|863743|863744|863745|863746|863747|863748|863749|863750|863751|863752|863753|863754|863755|863756|863757|863758|863759|865128|865129|865130|921848|930328|930329|940619|941768|941769|941770|969093", + "upstreamId": "16859|106652|106652|135519|135520|135521|135521|135523|135523|135524|135524|135525|135526|206757|206757|206758|206758|206762|206762|237363|237363|270346|271432|271432|271433|279278|279279|279280|279285|279286|279295|279300|279301|279308|279309|279310|279311|279318|279318|279324|279324|279325|279329|279329|279330|279343|279490|279491|279493|279494|279496|279497|279498|279502|279506|279507|279508|279508|279509|279512|279512|279534|279535|279536|279545|279545|279549|280795|280797|280798|280799|280804|280805|280809|280810|280813|280822|280823|280825|280825|280830|280835|280837|280839|280845|280846|280847|280850|280851|280855|280860|280863|280872|280873|280874|280875|280876|280877|280878|280887|280887|280897|280909|280913|280923|280924|280924|280939|280940|280956|280957|280958|364904|364905|425336|427712|447500|447631|447634|447736|447738|447738|447743|447746|498243|515542|515555|535673|556790|557153|558347|558347|627378|627379|627380|650679|690489|690489|690490|696474|696475|696475|696477|777096|780569|801776|823482|823483|823484|858672|858673|863719|863720|863721|863722|863723|863724|863725|863726|863727|863728|863729|863730|863731|863732|863733|863734|863735|863736|863737|863738|863739|863740|863741|863742|863743|863744|863745|863746|863747|863748|863749|863750|863751|863752|863753|863754|863755|863756|863757|863758|863759|865128|865129|865130|921848|930328|930329|940619|941768|941769|941770|969093", "text": "Cataract-intellectual disability-hypogonadism syndrome" }, { - "baseId": "16860|205733|972782", + "upstreamId": "16860|205733|972782", "text": "Mental retardation, autosomal recessive 2" }, { - "baseId": "16861|19441|19442|21008|132639", + "upstreamId": "16861|19441|19442|21008|132639", "text": "Hypertriglyceridemia, susceptibility to" }, { - "baseId": "16862|39738|44164|44165|44166|44167|54729|54730|54732|54733|54734|54735|54736|54737|54738|172328|172466|206697|275806|275807|275810|275811|275824|275825|275826|275829|275913|275916|275921|275932|275942|275950|275953|276010|276015|276035|276036|276038|276039|276040|276041|276042|276043|276044|364350|496145|497969|513485|578357|609341|620703|731539|855104|861862|861863|861864|861865|861866|861867|861868|861869|861870|861871|861872|861873|861874|864955|864956|864957", + "upstreamId": "16862|39738|44164|44165|44166|44167|54729|54730|54732|54733|54734|54735|54736|54737|54738|172328|172466|206697|275806|275807|275810|275811|275824|275825|275826|275829|275913|275916|275921|275932|275942|275950|275953|276010|276015|276035|276036|276038|276039|276040|276041|276042|276043|276044|364350|496145|497969|513485|578357|609341|620703|731539|855104|861862|861863|861864|861865|861866|861867|861868|861869|861870|861871|861872|861873|861874|864955|864956|864957", "text": "Chudley-McCullough syndrome" }, { - "baseId": "16862|21526|21527|32043|246783|262397|389218|389253|514275|682182|905841|905845", + "upstreamId": "16862|21526|21527|32043|246783|262397|389218|389253|514275|682182|905841|905845", "text": "Autosomal recessive non-syndromic sensorineural deafness type DFNB" }, { - "baseId": "16863|16864|16865|16867|16868|39737|213953|214140|583120", + "upstreamId": "16863|16864|16865|16867|16868|39737|213953|214140|583120", "text": "Hypotrichosis 8" }, { - "baseId": "16865|16866", + "upstreamId": "16865|16866", "text": "Autosomal recessive woolly hair 1, with or without hypotrichosis" }, { - "baseId": "16869|16870|16871|16872|16873|39733|39735|39736|99374|166160|177086|195605|196206|212287|221358|221359|250855|250857|288263|288275|288277|288288|288289|289045|289046|289048|289058|289061|291958|291966|291985|291988|291999|292001|292003|292109|292110|292115|393234|620099|683527|686282|790317|790318|800368|827325|887716|887717|887718|887719|887720|887721|887722|887723|887724|887725|887726|887727|887728|891556", + "upstreamId": "16869|16870|16871|16872|16873|39733|39735|39736|99374|166160|177086|195605|196206|212287|221358|221359|250855|250857|288263|288275|288277|288288|288289|289045|289046|289048|289058|289061|291958|291966|291985|291988|291999|292001|292003|292109|292110|292115|393234|620099|683527|686282|790317|790318|800368|827325|887716|887717|887718|887719|887720|887721|887722|887723|887724|887725|887726|887727|887728|891556", "text": "Senior-Loken syndrome 5" }, { - "baseId": "16869|39892|102064|177569|177574|195571|221112|222267|254734|280562|280564|281544|281592|281829|281981|282784|283087|283088|288278|289062|291965|291998|292112|318604|326794|326807|326864|326876|332978|334650|443009|496723|800445|800485", + "upstreamId": "16869|39892|102064|177569|177574|195571|221112|222267|254734|280562|280564|281544|281592|281829|281981|282784|283087|283088|288278|289062|291965|291998|292112|318604|326794|326807|326864|326876|332978|334650|443009|496723|800445|800485", "text": "Renal dysplasia and retinal aplasia" }, { - "baseId": "16874", + "upstreamId": "16874", "text": "Combined oxidative phosphorylation deficiency 2" }, { - "baseId": "16875|16876|16877|16878|16879|16880|16881|16882|336576|336579|336580|336584|336586|336590|346287|346291|346296|350538|350541|350542|350545|351586|351587|351590|886679|886680|886681|886682|886683|886684|886685|886686|887501", + "upstreamId": "16875|16876|16877|16878|16879|16880|16881|16882|336576|336579|336580|336584|336586|336590|346287|346291|346296|350538|350541|350542|350545|351586|351587|351590|886679|886680|886681|886682|886683|886684|886685|886686|887501", "text": "Glucocorticoid deficiency 2" }, { - "baseId": "16880|18297|18298|18299|18300|18301|18302|18303|18304|18305|33464|330751|330758|330760|330789|330800|330801|330807|330809|330812|330813|340969|340971|340981|340986|340990|341000|341003|341015|341017|341022|341031|341033|341035|341040|341044|341049|341050|346567|346568|346585|346588|346589|346590|346596|346601|346603|346605|346607|346612|346613|346614|346616|346624|346625|347888|347889|347892|347895|347897|347900|347902|347909|347917|347918|347925|347928|347931|347934|437707|437708|437709|437710|437711|437735|485789|620616|704544|741303|878933|878934|878935|878936|878937|878938|878939|878940|878941|878942|878943|878944|878945|878946|878947|878948|878949|878950|878951|878952|878953|878954|878955|878956|878957|878958|878959|878960|878961|878962|878963|878964|878965|878966|878967|878968|878969|878970", + "upstreamId": "16880|18297|18298|18299|18300|18301|18302|18303|18304|18305|33464|330751|330758|330760|330789|330800|330801|330807|330809|330812|330813|340969|340971|340981|340986|340990|341000|341003|341015|341017|341022|341031|341033|341035|341040|341044|341049|341050|346567|346568|346585|346588|346589|346590|346596|346601|346603|346605|346607|346612|346613|346614|346616|346624|346625|347888|347889|347892|347895|347897|347900|347902|347909|347917|347918|347925|347928|347931|347934|437707|437708|437709|437710|437711|437735|485789|620616|704544|741303|878933|878934|878935|878936|878937|878938|878939|878940|878941|878942|878943|878944|878945|878946|878947|878948|878949|878950|878951|878952|878953|878954|878955|878956|878957|878958|878959|878960|878961|878962|878963|878964|878965|878966|878967|878968|878969|878970", "text": "ACTH resistance" }, { - "baseId": "16883|16884|16885|16886|16887|226712|539007", + "upstreamId": "16883|16884|16885|16886|16887|226712|539007", "text": "Trichothiodystrophy, nonphotosensitive 1" }, { - "baseId": "16888|16889|16890|622379", + "upstreamId": "16888|16889|16890|622379", "text": "Glutaryl-CoA oxidase deficiency" }, { - "baseId": "16891|16892|16893|16894|16895|16896|16897|168054|168055|168056|168060|168062|168063|168064|168065|168066|168067|168068|168069|168070|168072|168073|186291|206987|206990|206991|215255|285583|285585|285586|285591|285592|285594|285600|285602|285603|285607|285608|286279|286280|286282|286283|286284|286299|286301|286302|286306|286322|286335|286337|286338|288594|288597|288599|288601|288607|288608|288611|288639|288640|289003|289009|289011|289016|289019|289020|289031|289033|289034|289035|289037|289039|425483|428033|428039|516224|557982|560551|561240|620075|620743|620744|629747|629748|629749|629750|708190|719783|733369|743904|743925|747488|747491|774691|790222|819148|826109|826110|826111|884421|884422|884423|884424|884425|884426|884427|884428|884429|884430|884431|884432|884433|884434|884435|884436|884437|884438|884439|884440|884441|884442|884443|884444|884445|884446|884447|884448|884449|884450|884451|884452|884453|884454|884455|884456|887331|887332|887333|887334|887335|922676|931262|931263|961758", + "upstreamId": "16891|16892|16893|16894|16895|16896|16897|168054|168055|168056|168060|168062|168063|168064|168065|168066|168067|168068|168069|168070|168072|168073|186291|206987|206990|206991|215255|285583|285585|285586|285591|285592|285594|285600|285602|285603|285607|285608|286279|286280|286282|286283|286284|286299|286301|286302|286306|286322|286335|286337|286338|288594|288597|288599|288601|288607|288608|288611|288639|288640|289003|289009|289011|289016|289019|289020|289031|289033|289034|289035|289037|289039|425483|428033|428039|516224|557982|560551|561240|620075|620743|620744|629747|629748|629749|629750|708190|719783|733369|743904|743925|747488|747491|774691|790222|819148|826109|826110|826111|884421|884422|884423|884424|884425|884426|884427|884428|884429|884430|884431|884432|884433|884434|884435|884436|884437|884438|884439|884440|884441|884442|884443|884444|884445|884446|884447|884448|884449|884450|884451|884452|884453|884454|884455|884456|887331|887332|887333|887334|887335|922676|931262|931263|961758", "text": "D-2-hydroxyglutaric aciduria 1" }, { - "baseId": "16898|16899|16900|16901|16902|135554|167389|186007|210907|210908|210911|221341|221342|226729|244400|265654|287484|287491|287494|287495|287504|287505|287508|288253|288254|288256|288258|288259|288260|288270|288272|288273|290927|290939|290942|290969|290980|290982|291169|291171|291172|291173|291177|291193|291196|291197|291201|291222|366824|367046|367984|391499|393125|393136|393259|393485|393487|448552|451733|451735|451826|518650|518664|518674|518676|518727|518730|518731|518836|518839|518843|557513|559193|559195|559197|559199|559201|560991|562097|562099|588014|609146|630605|630606|630607|630608|650812|650822|651096|819278|819279|827086|827087|827088|827089|827090|827091|827092|827093|885602|885603|885604|885605|885606|885607|885608|885609|885610|885611|885612|885613|885614|885615|885616|885617|885618|885619|885620|885621|885622|885623|885624|885625|885626|885627|885628|885629|922941|922942|931612|931613|939917|940726|953249|959658|962032|964208", + "upstreamId": "16898|16899|16900|16901|16902|135554|167389|186007|210907|210908|210911|221341|221342|226729|244400|265654|287484|287491|287494|287495|287504|287505|287508|288253|288254|288256|288258|288259|288260|288270|288272|288273|290927|290939|290942|290969|290980|290982|291169|291171|291172|291173|291177|291193|291196|291197|291201|291222|366824|367046|367984|391499|393125|393136|393259|393485|393487|448552|451733|451735|451826|518650|518664|518674|518676|518727|518730|518731|518836|518839|518843|557513|559193|559195|559197|559199|559201|560991|562097|562099|588014|609146|630605|630606|630607|630608|650812|650822|651096|819278|819279|827086|827087|827088|827089|827090|827091|827092|827093|885602|885603|885604|885605|885606|885607|885608|885609|885610|885611|885612|885613|885614|885615|885616|885617|885618|885619|885620|885621|885622|885623|885624|885625|885626|885627|885628|885629|922941|922942|931612|931613|939917|940726|953249|959658|962032|964208", "text": "Spastic paraplegia 31, autosomal dominant" }, { - "baseId": "16903|16904|16905|16906|16907|16908|16909|289432|289441|289442|289450|289451|289465|290220|290223|293305|293316|293747|293748|359498|418983|418987|418993|418994|418995|418997|418998|419000|419001|452119|452270|452274|452276|452357|452358|518945|553153|559365|561232|561236|581296|631024|651039|819344|819345|819346|819348|827655|850918|888358|888359|888360|891616|918812|940741|943395|970759", + "upstreamId": "16903|16904|16905|16906|16907|16908|16909|289432|289441|289442|289450|289451|289465|290220|290223|293305|293316|293747|293748|359498|418983|418987|418993|418994|418995|418997|418998|419000|419001|452119|452270|452274|452276|452357|452358|518945|553153|559365|561232|561236|581296|631024|651039|819344|819345|819346|819348|827655|850918|888358|888359|888360|891616|918812|940741|943395|970759", "text": "Cerebral cavernous malformations 3" }, { - "baseId": "16910|16911", + "upstreamId": "16910|16911", "text": "Wilms tumor 5" }, { - "baseId": "16912|16913|16914|16915|48464|48465|48466|48467|76349|76350|76351|247067|254339|254340|254341|254342|254343|254344|254346|254348|254349|254351|254352|254353|254354|254355|254356|254357|254358|315338|315342|315344|315348|315349|315352|315358|322187|322188|322189|322201|322205|322210|322211|328250|328260|328261|328265|328267|328270|328271|328278|328281|328294|328300|328307|328308|329603|329608|329609|329610|425945|461471|461474|461477|461479|461485|461682|461684|461686|461687|461689|462002|462008|462009|462015|462016|462019|462311|462313|462316|462322|462327|462328|462331|526491|526498|526503|526547|526554|526555|526558|526790|526791|526796|527074|527076|564916|564917|564924|564926|566203|566205|566207|567558|567560|571010|571023|571035|571037|571043|620423|640479|640480|640481|640482|640483|640484|640485|640486|640487|640488|652135|652603|687830|687831|693116|693118|693119|702011|702012|713218|713219|724771|738334|753005|768817|768820|787840|820419|839115|839116|839117|839118|839119|839120|839121|839122|839123|839124|839125|839126|839127|839128|839129|839130|839131|839132|839133|839134|839135|839136|851463|868869|868870|868871|868872|868873|868874|868875|868876|868877|868878|868879|868880|868881|868882|868883|868884|868885|868886|868887|868888|872146|872147|872148|872149|919397|926402|926403|926404|926405|926406|926407|926408|935835|935836|935837|935838|935839|935840|947720|947721|947722|947723|956704|956705|956706|956707|965653|965654", + "upstreamId": "16912|16913|16914|16915|48464|48465|48466|48467|76349|76350|76351|247067|254339|254340|254341|254342|254343|254344|254346|254348|254349|254351|254352|254353|254354|254355|254356|254357|254358|315338|315342|315344|315348|315349|315352|315358|322187|322188|322189|322201|322205|322210|322211|328250|328260|328261|328265|328267|328270|328271|328278|328281|328294|328300|328307|328308|329603|329608|329609|329610|425945|461471|461474|461477|461479|461485|461682|461684|461686|461687|461689|462002|462008|462009|462015|462016|462019|462311|462313|462316|462322|462327|462328|462331|526491|526498|526503|526547|526554|526555|526558|526790|526791|526796|527074|527076|564916|564917|564924|564926|566203|566205|566207|567558|567560|571010|571023|571035|571037|571043|620423|640479|640480|640481|640482|640483|640484|640485|640486|640487|640488|652135|652603|687830|687831|693116|693118|693119|702011|702012|713218|713219|724771|738334|753005|768817|768820|787840|820419|839115|839116|839117|839118|839119|839120|839121|839122|839123|839124|839125|839126|839127|839128|839129|839130|839131|839132|839133|839134|839135|839136|851463|868869|868870|868871|868872|868873|868874|868875|868876|868877|868878|868879|868880|868881|868882|868883|868884|868885|868886|868887|868888|872146|872147|872148|872149|919397|926402|926403|926404|926405|926406|926407|926408|935835|935836|935837|935838|935839|935840|947720|947721|947722|947723|956704|956705|956706|956707|965653|965654", "text": "Neutral lipid storage myopathy" }, { - "baseId": "16916|16917|16918|16919|16923|16924|16925|16926|16927|16928|16929|106572|224657", + "upstreamId": "16916|16917|16918|16919|16923|16924|16925|16926|16927|16928|16929|106572|224657", "text": "METHYLMALONIC ACIDURIA, mut(0) TYPE" }, { - "baseId": "16917|16920|16923|16925|16926|98587|98588|98589|98591|98592|98594|106572|177367|193400|200114|200117|200122|200123|200124|216037|216044|216045|236987|274267|274558|303391|307943|308067|415056|439145|487201|490207|501673|522062|543691|544017|544019|544021|544043|544144|560736|565694|634940|699613|722064|722065|765712|765715|782553|978223", + "upstreamId": "16917|16920|16923|16925|16926|98587|98588|98589|98591|98592|98594|106572|177367|193400|200114|200117|200122|200123|200124|216037|216044|216045|236987|274267|274558|303391|307943|308067|415056|439145|487201|490207|501673|522062|543691|544017|544019|544021|544043|544144|560736|565694|634940|699613|722064|722065|765712|765715|782553|978223", "text": "Methylmalonic aciduria due to complete methylmalonyl-CoA mutase deficiency" }, { - "baseId": "16919|16920|16925|16926|18134|18199|40093|40094|98595|102137|106572|135084|139972|139973|139974|139976|139977|139978|139979|177367|200054|200055|200110|200111|200114|200116|200121|200123|200124|200226|200304|200305|215029|216025|216037|216039|216044|216045|216058|216059|224619|254395|254396|287871|290415|292317|292318|292319|292341|292348|292367|293762|293773|297053|297067|297093|297097|297169|297190|300514|300520|300527|303401|308052|315908|315917|315921|315923|315924|315935|315941|315943|323051|323053|323082|323083|323084|323095|323115|323134|323137|323148|329123|329195|329197|329199|329206|329208|330322|330325|330357|330362|330381|353576|374720|409781|409783|415056|422125|439337|453275|487063|487143|487190|487201|505854|543081|543691|544019|544026|544041|544043|544057|544133|544137|544140|544144|546844|565694|621750|634947|645125|656395|715199|748753|755535|771186|771192|844484|916967|979819|979820|979821|979822|979823|979824|979825|979826|979827|979828|979829|979830|979831|979832|979833|979834|979835|979836|979837|979838|979839|979840|979841|979842|979843|979844|979845|979846|979847|979848|979849|979850|979851|979852|979853|979854|979855|979856|979857|979858|979859|979860|979861|979862|979863|979864|979865|979866|979867|979868|979869|979870|979871|979872|979873|979874", + "upstreamId": "16919|16920|16925|16926|18134|18199|40093|40094|98595|102137|106572|135084|139972|139973|139974|139976|139977|139978|139979|177367|200054|200055|200110|200111|200114|200116|200121|200123|200124|200226|200304|200305|215029|216025|216037|216039|216044|216045|216058|216059|224619|254395|254396|287871|290415|292317|292318|292319|292341|292348|292367|293762|293773|297053|297067|297093|297097|297169|297190|300514|300520|300527|303401|308052|315908|315917|315921|315923|315924|315935|315941|315943|323051|323053|323082|323083|323084|323095|323115|323134|323137|323148|329123|329195|329197|329199|329206|329208|330322|330325|330357|330362|330381|353576|374720|409781|409783|415056|422125|439337|453275|487063|487143|487190|487201|505854|543081|543691|544019|544026|544041|544043|544057|544133|544137|544140|544144|546844|565694|621750|634947|645125|656395|715199|748753|755535|771186|771192|844484|916967|979819|979820|979821|979822|979823|979824|979825|979826|979827|979828|979829|979830|979831|979832|979833|979834|979835|979836|979837|979838|979839|979840|979841|979842|979843|979844|979845|979846|979847|979848|979849|979850|979851|979852|979853|979854|979855|979856|979857|979858|979859|979860|979861|979862|979863|979864|979865|979866|979867|979868|979869|979870|979871|979872|979873|979874", "text": "Methylmalonic acidemia" }, { - "baseId": "16920|16921|16922", + "upstreamId": "16920|16921|16922", "text": "METHYLMALONIC ACIDURIA, mut(-) TYPE" }, { - "baseId": "16930", + "upstreamId": "16930", "text": "Pseudofolliculitis barbae, susceptibility to" }, { - "baseId": "16931|16932|16933|76666|190882|238658|250572|250573|284653|284658|284659|284662|284665|284666|284667|284672|284676|284677|284681|284686|284688|284690|285339|285345|285346|285349|285350|285351|285352|285363|285370|285373|285375|285377|285378|287514|287517|287530|287531|287547|287557|287562|287569|287588|287597|287604|287605|287778|287786|287795|287796|287800|287801|287832|287836|287847|353558|363930|392689|425468|450383|450388|450695|450702|450705|450707|450712|508776|513522|517702|517710|517719|517830|517924|517926|559105|559107|559109|559111|560930|883734|883735|883736|883737|883738|883739|883740|883741|883742|883743|883744|883745|883746|883747|883748|918736|918737|918738|964193|964403", + "upstreamId": "16931|16932|16933|76666|190882|238658|250572|250573|284653|284658|284659|284662|284665|284666|284667|284672|284676|284677|284681|284686|284688|284690|285339|285345|285346|285349|285350|285351|285352|285363|285370|285373|285375|285377|285378|287514|287517|287530|287531|287547|287557|287562|287569|287588|287597|287604|287605|287778|287786|287795|287796|287800|287801|287832|287836|287847|353558|363930|392689|425468|450383|450388|450695|450702|450705|450707|450712|508776|513522|517702|517710|517719|517830|517924|517926|559105|559107|559109|559111|560930|883734|883735|883736|883737|883738|883739|883740|883741|883742|883743|883744|883745|883746|883747|883748|918736|918737|918738|964193|964403", "text": "Paroxysmal nonkinesigenic dyskinesia 1" }, { - "baseId": "16931", + "upstreamId": "16931", "text": "Episodic hemiplegia" }, { - "baseId": "16931|169841|590085|801114", + "upstreamId": "16931|169841|590085|801114", "text": "Paroxysmal dyskinesia" }, { - "baseId": "16931|360813|966891", + "upstreamId": "16931|360813|966891", "text": "Paroxysmal dystonia" }, { - "baseId": "16932|16933|238657|250572|284658|284659|284665|284667|285339|285345|285346|285351|287547|287562|287796|287800|287801|363930|392580|392689|392706|450391|450536|450621|450623|450695|450706|450712|450713|450715|514459|517712|517723|517800|517802|517814|517824|517827|517926|517928|557882|557929|560895|560913|560923|629452|629453|629454|629455|629456|629457|629458|629459|629460|629461|629462|629463|650913|686142|686143|686144|686145|774662|781169|819124|825728|825729|825730|825731|825732|825733|825734|825735|825736|825737|825738|825739|825740|825741|851398|922570|922571|922572|922573|922574|922575|922576|922577|931142|931143|931144|931145|931146|931147|931148|931149|931150|931151|939875|939876|942607|942608|942609|942610|952931|952932|952933|952934", + "upstreamId": "16932|16933|238657|250572|284658|284659|284665|284667|285339|285345|285346|285351|287547|287562|287796|287800|287801|363930|392580|392689|392706|450391|450536|450621|450623|450695|450706|450712|450713|450715|514459|517712|517723|517800|517802|517814|517824|517827|517926|517928|557882|557929|560895|560913|560923|629452|629453|629454|629455|629456|629457|629458|629459|629460|629461|629462|629463|650913|686142|686143|686144|686145|774662|781169|819124|825728|825729|825730|825731|825732|825733|825734|825735|825736|825737|825738|825739|825740|825741|851398|922570|922571|922572|922573|922574|922575|922576|922577|931142|931143|931144|931145|931146|931147|931148|931149|931150|931151|939875|939876|942607|942608|942609|942610|952931|952932|952933|952934", "text": "Paroxysmal non-kinesigenic dyskinesia" }, { - "baseId": "16934|16935|16936|16937|16938|16939|16940|16941|16942|16943|16944|36182|36312|36313|36314|36315|36317|36318|36319|36320|36322|36323|36324|36327|36329|36330|36331|36332|36333|36334|36335|36336|36337|36338|36339|36340|36342|36343|36344|36345|36346|36347|36348|36349|36350|36351|36353|36354|36355|36357|36358|36359|36360|36363|36364|36365|36366|36367|36368|36369|36370|36371|36372|36373|36374|36376|36377|36378|36379|36380|36381|36382|36383|36384|36385|36386|36387|36388|36389|36390|36391|36393|36394|36395|36396|36398|36401|36402|36405|36406|36407|36409|36410|36411|36412|36413|36414|36415|36416|36417|36418|36419|36421|36422|36423|36424|36425|36426|36427|36428|36429|36430|36431|36432|36433|36434|36435|36436|36437|36438|36439|36440|36441|36442|46830|46832|46833|46836|46844|46845|46846|46848|46849|46851|46852|46853|47043|47160|47162|47163|47164|47165|47166|47167|47168|47197|98310|98311|165804|165805|165806|165807|165808|165809|165810|186677|186678|193364|200042|264145|267157|270601|273348|274306|289227|289229|289230|289238|289243|289255|290016|290036|290037|293069|293082|293088|293089|293092|293101|293118|357290|357291|357292|357293|357294|357295|357296|357297|357298|357299|357300|357301|359456|360849|367000|367247|368264|406135|406136|421424|432545|432546|451903|452116|452259|452267|491712|518944|518948|519125|542845|542846|542857|542858|542860|542865|542866|542868|542870|542877|542887|542888|542892|542895|542897|543034|543042|543043|543045|543053|543054|543056|543085|543086|543090|543108|543112|543119|543121|543128|543131|543132|543133|543138|543139|543146|559363|561229|578666|578667|578668|578669|578670|578671|578672|578673|578674|578675|578676|578677|578678|578679|578680|578681|578682|578683|578684|578685|578686|578687|578688|578689|578690|578691|578692|578694|578695|578697|578698|578700|581751|609502|620115|650307|650308|650309|650316|650317|650327|694976|694980|743519|743520|758689|758690|758691|758692|758693|774287|774289|786946|788761|790346|790347|790348|790349|790350|790351|790352|790353|818383|819342|920182|929853|939713|959389|963320|963321|977814|977815", + "upstreamId": "16934|16935|16936|16937|16938|16939|16940|16941|16942|16943|16944|36182|36312|36313|36314|36315|36317|36318|36319|36320|36322|36323|36324|36327|36329|36330|36331|36332|36333|36334|36335|36336|36337|36338|36339|36340|36342|36343|36344|36345|36346|36347|36348|36349|36350|36351|36353|36354|36355|36357|36358|36359|36360|36363|36364|36365|36366|36367|36368|36369|36370|36371|36372|36373|36374|36376|36377|36378|36379|36380|36381|36382|36383|36384|36385|36386|36387|36388|36389|36390|36391|36393|36394|36395|36396|36398|36401|36402|36405|36406|36407|36409|36410|36411|36412|36413|36414|36415|36416|36417|36418|36419|36421|36422|36423|36424|36425|36426|36427|36428|36429|36430|36431|36432|36433|36434|36435|36436|36437|36438|36439|36440|36441|36442|46830|46832|46833|46836|46844|46845|46846|46848|46849|46851|46852|46853|47043|47160|47162|47163|47164|47165|47166|47167|47168|47197|98310|98311|165804|165805|165806|165807|165808|165809|165810|186677|186678|193364|200042|264145|267157|270601|273348|274306|289227|289229|289230|289238|289243|289255|290016|290036|290037|293069|293082|293088|293089|293092|293101|293118|357290|357291|357292|357293|357294|357295|357296|357297|357298|357299|357300|357301|359456|360849|367000|367247|368264|406135|406136|421424|432545|432546|451903|452116|452259|452267|491712|518944|518948|519125|542845|542846|542857|542858|542860|542865|542866|542868|542870|542877|542887|542888|542892|542895|542897|543034|543042|543043|543045|543053|543054|543056|543085|543086|543090|543108|543112|543119|543121|543128|543131|543132|543133|543138|543139|543146|559363|561229|578666|578667|578668|578669|578670|578671|578672|578673|578674|578675|578676|578677|578678|578679|578680|578681|578682|578683|578684|578685|578686|578687|578688|578689|578690|578691|578692|578694|578695|578697|578698|578700|581751|609502|620115|650307|650308|650309|650316|650317|650327|694976|694980|743519|743520|758689|758690|758691|758692|758693|774287|774289|786946|788761|790346|790347|790348|790349|790350|790351|790352|790353|818383|819342|920182|929853|939713|959389|963320|963321|977814|977815", "text": "Biotinidase deficiency" }, { - "baseId": "16939|17051|17159|17159|18935|21235|21406|23091|26378|26867|27024|28542|28544|31232|39226|39422|40353|44169|45778|48099|48180|48278|48413|48423|48430|48495|48983|51108|76995|79323|79470|94274|95421|99628|102019|137063|137064|137065|166182|166183|166184|166185|166186|166187|166188|166189|166190|166191|166192|169007|171866|178380|178416|181397|181398|181404|181409|181418|181421|181422|181423|181424|181431|181433|181435|181440|181445|181447|181448|181451|181452|181454|181455|181456|181462|181464|181465|181468|188114|190110|190806|194348|200273|203022|203232|203726|204032|205216|205263|214205|214208|214224|214327|214364|215004|223024|226235|226236|226495|226500|226502|227149|227467|243981|243985|243986|243987|243988|243988|243993|247328|247329|247330|247331|247332|248477|263187|263190|263224|263234|263246|263247|263249|263251|263252|263255|263262|263264|263271|263275|263276|263279|263280|263282|263295|263305|263307|263323|263332|263333|263335|263339|263351|263359|263365|263366|263369|263370|263374|263377|263389|263393|263398|263421|263782|263783|264105|264749|264914|265026|265506|270311|282658|287840|288925|354299|360812|360849|360870|360874|360877|360878|360894|360912|360923|360955|360957|360996|360998|361016|361036|361041|361071|361073|361074|361075|361076|361084|361088|361101|361251|361271|361343|362165|362226|364179|380289|384510|384511|384513|384514|384517|384518|384519|384520|384521|384525|389103|389117|389133|389134|389176|389178|389193|389194|408757|415601|424588|424589|424590|424591|424592|424593|424594|424595|424596|424597|426751|438553|444072|444125|446250|446889|485951|511550|511686|512868|513939|513945|513964|513983|514007|514022|514032|514091|514111|514130|514136|514138|514162|514163|514164|514175|514182|514183|514186|514193|514194|514197|514199|514201|514210|514213|514214|514218|536013|536014|536136|539435|540616|540617|540618|550131|551445|556790|576134|578026|580794|583203|583204|590046|590047|590048|590061|590093|590716|590717|590718|608984|610521|610564|610591|613496|614542|622041|622128|622207|623597|623598|624127|624128|624129|624130|624131|624132|624133|624134|624135|624136|624137|624138|626018|626019|628836|654125|677211|677252|678055|679520|679521|682488|682737|682850|682863|682863|737527|789737|798746|800984|800985|800988|800991|801070|801072|801074|801079|801103|801104|801109|801159|801184|801185|801199|801200|801216|801225|801227|801257|801514|801518|801519|802098|802099|802115|805065|805067|805091|805133|806406|816010|818709|831356|858271|858513|859391|861055|861056|861144|861283|861284|861668|880277|904239|904355|905848|906188|921253|921254|921255|921256|921257|921258|921259|921260|921448|962045|962147|965430|965472|965506|965528|965547|965552|965752|965753|965754|965755|965756|965757|965758|965759|965760|965761|965762|965763|965764|965765|965766|965767|965768|965769|965770|965771|966222|966244|966251|966256|966275|966276|966279|966297|966312|971394|971406|971411|971421|971443|971444|971445|971451|971475|971479|971482|971490|971500|980677|980678|980695|980696|980728|980731|980742|983855|984026|984027|984028|984029|984030|984031|984032|984033|984034|984035", + "upstreamId": "16939|17051|17159|17159|18935|21235|21406|23091|26378|26867|27024|28542|28544|31232|39226|39422|40353|44169|45778|48099|48180|48278|48413|48423|48430|48495|48983|51108|76995|79323|79470|94274|95421|99628|102019|137063|137064|137065|166182|166183|166184|166185|166186|166187|166188|166189|166190|166191|166192|169007|171866|178380|178416|181397|181398|181404|181409|181418|181421|181422|181423|181424|181431|181433|181435|181440|181445|181447|181448|181451|181452|181454|181455|181456|181462|181464|181465|181468|188114|190110|190806|194348|200273|203022|203232|203726|204032|205216|205263|214205|214208|214224|214327|214364|215004|223024|226235|226236|226495|226500|226502|227149|227467|243981|243985|243986|243987|243988|243988|243993|247328|247329|247330|247331|247332|248477|263187|263190|263224|263234|263246|263247|263249|263251|263252|263255|263262|263264|263271|263275|263276|263279|263280|263282|263295|263305|263307|263323|263332|263333|263335|263339|263351|263359|263365|263366|263369|263370|263374|263377|263389|263393|263398|263421|263782|263783|264105|264749|264914|265026|265506|270311|282658|287840|288925|354299|360812|360849|360870|360874|360877|360878|360894|360912|360923|360955|360957|360996|360998|361016|361036|361041|361071|361073|361074|361075|361076|361084|361088|361101|361251|361271|361343|362165|362226|364179|380289|384510|384511|384513|384514|384517|384518|384519|384520|384521|384525|389103|389117|389133|389134|389176|389178|389193|389194|408757|415601|424588|424589|424590|424591|424592|424593|424594|424595|424596|424597|426751|438553|444072|444125|446250|446889|485951|511550|511686|512868|513939|513945|513964|513983|514007|514022|514032|514091|514111|514130|514136|514138|514162|514163|514164|514175|514182|514183|514186|514193|514194|514197|514199|514201|514210|514213|514214|514218|536013|536014|536136|539435|540616|540617|540618|550131|551445|556790|576134|578026|580794|583203|583204|590046|590047|590048|590061|590093|590716|590717|590718|608984|610521|610564|610591|613496|614542|622041|622128|622207|623597|623598|624127|624128|624129|624130|624131|624132|624133|624134|624135|624136|624137|624138|626018|626019|628836|654125|677211|677252|678055|679520|679521|682488|682737|682850|682863|682863|737527|789737|798746|800984|800985|800988|800991|801070|801072|801074|801079|801103|801104|801109|801159|801184|801185|801199|801200|801216|801225|801227|801257|801514|801518|801519|802098|802099|802115|805065|805067|805091|805133|806406|816010|818709|831356|858271|858513|859391|861055|861056|861144|861283|861284|861668|880277|904239|904355|905848|906188|921253|921254|921255|921256|921257|921258|921259|921260|921448|962045|962147|965430|965472|965506|965528|965547|965552|965752|965753|965754|965755|965756|965757|965758|965759|965760|965761|965762|965763|965764|965765|965766|965767|965768|965769|965770|965771|966222|966244|966251|966256|966275|966276|966279|966297|966312|971394|971406|971411|971421|971443|971444|971445|971451|971475|971479|971482|971490|971500|980677|980678|980695|980696|980728|980731|980742|983855|984026|984027|984028|984029|984030|984031|984032|984033|984034|984035", "text": "Global developmental delay" }, { - "baseId": "16945|16946|16947|16948|16949|16950|16951|16952|16953|98822|98823|141248|141249|141250|141251|141252|141253|141254|141255|141256|200360|200362|200363|200364|200366|200368|200370|200371|200372|200373|200374|200375|200376|200377|200378|200383|257460|336772|336773|336782|336784|336785|336787|336788|336791|336795|336796|336798|336800|336801|336805|336810|336812|336815|336826|336828|346430|346433|346440|346442|346446|346449|346451|346458|346459|346461|346465|346467|346470|346472|346476|346481|346482|346484|350652|350655|350656|350658|350660|350662|350664|350666|350667|350670|350672|350675|350679|350681|350682|350685|350686|350688|350691|351716|351717|351722|351723|351724|351727|351730|351732|351733|351734|351739|351743|351745|351747|351750|351751|351754|351755|351758|351759|353591|353911|358631|358632|364097|377230|378489|379770|410853|415700|415701|420143|469612|469617|471639|487964|507913|508298|508299|508300|508303|533869|533883|534428|549002|549014|549016|549017|549020|549028|549030|549090|549091|549093|549098|549253|549254|549255|549258|549259|549416|549417|549418|549419|549420|549421|573786|573790|575164|581778|648984|648985|648986|648987|648988|648989|653567|694630|694631|694632|728897|728898|728899|728901|731372|742627|742628|745445|757795|757796|773320|773321|773323|773324|773329|773330|773331|773333|773334|773335|776722|786488|792007|821370|821371|821372|848786|848787|848788|848789|848790|848791|848792|848793|851859|886767|886768|886769|886770|886771|886772|886773|886774|886775|886776|886777|886778|886779|886780|886781|886782|886783|886784|886785|886786|886787|886788|886789|886790|886791|886792|886793|886794|886795|886796|886797|887505|887506|887507|887508|887509|929319|929320|951234|951235|958956|958957|958958|958959|958960|958961|958962|972344|972345|972346|972347|972348|972349|972350|972351|972352|972353|972354|972355|972356|980033|980034|980035|980036|980037|980038|980039|980040", + "upstreamId": "16945|16946|16947|16948|16949|16950|16951|16952|16953|98822|98823|141248|141249|141250|141251|141252|141253|141254|141255|141256|200360|200362|200363|200364|200366|200368|200370|200371|200372|200373|200374|200375|200376|200377|200378|200383|257460|336772|336773|336782|336784|336785|336787|336788|336791|336795|336796|336798|336800|336801|336805|336810|336812|336815|336826|336828|346430|346433|346440|346442|346446|346449|346451|346458|346459|346461|346465|346467|346470|346472|346476|346481|346482|346484|350652|350655|350656|350658|350660|350662|350664|350666|350667|350670|350672|350675|350679|350681|350682|350685|350686|350688|350691|351716|351717|351722|351723|351724|351727|351730|351732|351733|351734|351739|351743|351745|351747|351750|351751|351754|351755|351758|351759|353591|353911|358631|358632|364097|377230|378489|379770|410853|415700|415701|420143|469612|469617|471639|487964|507913|508298|508299|508300|508303|533869|533883|534428|549002|549014|549016|549017|549020|549028|549030|549090|549091|549093|549098|549253|549254|549255|549258|549259|549416|549417|549418|549419|549420|549421|573786|573790|575164|581778|648984|648985|648986|648987|648988|648989|653567|694630|694631|694632|728897|728898|728899|728901|731372|742627|742628|745445|757795|757796|773320|773321|773323|773324|773329|773330|773331|773333|773334|773335|776722|786488|792007|821370|821371|821372|848786|848787|848788|848789|848790|848791|848792|848793|851859|886767|886768|886769|886770|886771|886772|886773|886774|886775|886776|886777|886778|886779|886780|886781|886782|886783|886784|886785|886786|886787|886788|886789|886790|886791|886792|886793|886794|886795|886796|886797|887505|887506|887507|887508|887509|929319|929320|951234|951235|958956|958957|958958|958959|958960|958961|958962|972344|972345|972346|972347|972348|972349|972350|972351|972352|972353|972354|972355|972356|980033|980034|980035|980036|980037|980038|980039|980040", "text": "Holocarboxylase synthetase deficiency" }, { - "baseId": "16954", + "upstreamId": "16954", "text": "SCIANNA BLOOD GROUP SYSTEM, SC:-1,-2" }, { - "baseId": "16955", + "upstreamId": "16955", "text": "SCIANNA BLOOD GROUP SYSTEM, SC:-1,2" }, { - "baseId": "16956", + "upstreamId": "16956", "text": "Radin blood group" }, { - "baseId": "16957", + "upstreamId": "16957", "text": "Antigen in Scianna blood group system" }, { - "baseId": "16958|16959|16960|16961|16962|16963|16964|16965|16966|16967|101923|101924|101926|177099|177230|191719|195411|195413|200097|200099|200100|200101|200102|251975|251980|251982|271170|297992|297999|298004|298011|298012|298017|298022|298028|300202|300206|300207|300210|300213|300217|300235|304413|304414|304418|304430|304432|304434|304749|304750|304757|304758|304759|304762|368227|368708|443820|454072|455056|455238|455245|455703|455704|455711|455712|455947|455951|455958|481743|490822|501398|501410|501649|513060|521241|521521|521531|521595|521846|521850|560367|560369|560371|560373|560375|560377|560484|563213|563217|565170|565182|586274|620199|634000|634001|634002|634003|634004|634005|634006|634007|651335|661243|691876|691877|735165|735167|749566|749567|759386|765187|765189|819604|819605|830935|830936|830937|830938|830939|830940|830941|894629|894630|894631|894632|894633|894634|894635|894636|894637|894638|894639|894640|894641|894642|894643|894644|894645|894646|894647|894648|894649|894650|894651|894652|894653|894654|894655|894656|896127|896128|924097|924098|924099|932941|932942|932943|932944|932945|932946|940008|940009|944644|944645|944646|944647|944648|944649|954188|954189|964260|970814", + "upstreamId": "16958|16959|16960|16961|16962|16963|16964|16965|16966|16967|101923|101924|101926|177099|177230|191719|195411|195413|200097|200099|200100|200101|200102|251975|251980|251982|271170|297992|297999|298004|298011|298012|298017|298022|298028|300202|300206|300207|300210|300213|300217|300235|304413|304414|304418|304430|304432|304434|304749|304750|304757|304758|304759|304762|368227|368708|443820|454072|455056|455238|455245|455703|455704|455711|455712|455947|455951|455958|481743|490822|501398|501410|501649|513060|521241|521521|521531|521595|521846|521850|560367|560369|560371|560373|560375|560377|560484|563213|563217|565170|565182|586274|620199|634000|634001|634002|634003|634004|634005|634006|634007|651335|661243|691876|691877|735165|735167|749566|749567|759386|765187|765189|819604|819605|830935|830936|830937|830938|830939|830940|830941|894629|894630|894631|894632|894633|894634|894635|894636|894637|894638|894639|894640|894641|894642|894643|894644|894645|894646|894647|894648|894649|894650|894651|894652|894653|894654|894655|894656|896127|896128|924097|924098|924099|932941|932942|932943|932944|932945|932946|940008|940009|944644|944645|944646|944647|944648|944649|954188|954189|964260|970814", "text": "3-methylcrotonyl CoA carboxylase 2 deficiency" }, { - "baseId": "16968|16969|16970|16971|16972|16973|16974|101834|101836|101837|101839|141882|141883|141884|177088|177821|177822|177823|177824|191076|195739|200045|200046|200047|200050|251038|251043|251044|259755|289630|289632|289638|289640|290370|290371|290373|290376|293450|293453|293463|293977|293996|293997|367017|367272|368297|406159|425534|430991|451990|451995|451996|452001|452224|452226|452330|452333|452336|452340|452486|452491|481680|481681|489554|495181|500104|500406|500595|500598|513260|513261|519026|519031|519036|519038|519044|519200|519212|558860|558862|558864|559401|559403|559405|559407|561302|561306|562620|562621|562626|631083|631084|631085|631086|631087|631088|631089|631090|631091|631092|631093|631094|631095|631096|631097|631098|631099|631100|631101|631102|631103|631104|631105|631106|631107|631108|650979|651041|651043|651071|686378|686379|691342|691343|691345|733927|733928|763747|763749|781616|781617|781618|781620|781621|790368|819357|819358|819359|827758|827759|827760|827761|827762|827763|827764|827765|827766|827767|827768|851033|851552|861591|888453|888454|888455|888456|888457|888458|888459|888460|888461|920189|923106|923107|923108|923109|923110|931853|931854|939933|943435|953401|953402|953403|953404|953405|953406", + "upstreamId": "16968|16969|16970|16971|16972|16973|16974|101834|101836|101837|101839|141882|141883|141884|177088|177821|177822|177823|177824|191076|195739|200045|200046|200047|200050|251038|251043|251044|259755|289630|289632|289638|289640|290370|290371|290373|290376|293450|293453|293463|293977|293996|293997|367017|367272|368297|406159|425534|430991|451990|451995|451996|452001|452224|452226|452330|452333|452336|452340|452486|452491|481680|481681|489554|495181|500104|500406|500595|500598|513260|513261|519026|519031|519036|519038|519044|519200|519212|558860|558862|558864|559401|559403|559405|559407|561302|561306|562620|562621|562626|631083|631084|631085|631086|631087|631088|631089|631090|631091|631092|631093|631094|631095|631096|631097|631098|631099|631100|631101|631102|631103|631104|631105|631106|631107|631108|650979|651041|651043|651071|686378|686379|691342|691343|691345|733927|733928|763747|763749|781616|781617|781618|781620|781621|790368|819357|819358|819359|827758|827759|827760|827761|827762|827763|827764|827765|827766|827767|827768|851033|851552|861591|888453|888454|888455|888456|888457|888458|888459|888460|888461|920189|923106|923107|923108|923109|923110|931853|931854|939933|943435|953401|953402|953403|953404|953405|953406", "text": "3 Methylcrotonyl-CoA carboxylase 1 deficiency" }, { - "baseId": "16968|16969|16973|101924|141882|141884|177099|177822|177823|177824|191076|191719|195739|200045|200047|200099|200100|200102|251982|289632|293997|452001|452224|452226|455711|455947|455958|481743|490822|521595|560377|562620|563217|565182|631090|631092|631096|631102|686378|691342|735165|735167|749567|759386|830939|888458|894631|944649|953403|977821|977822|977823|977824|977825|977826|977827|977828|977829|977830|977831|977832|977833|977834|977835|977836|977837|978185|978186|978187|978188|978189|978190|978191|978192|978193|978194|978195|978196|978197|978198|978199|978200|978201|978202", + "upstreamId": "16968|16969|16973|101924|141882|141884|177099|177822|177823|177824|191076|191719|195739|200045|200047|200099|200100|200102|251982|289632|293997|452001|452224|452226|455711|455947|455958|481743|490822|521595|560377|562620|563217|565182|631090|631092|631096|631102|686378|691342|735165|735167|749567|759386|830939|888458|894631|944649|953403|977821|977822|977823|977824|977825|977826|977827|977828|977829|977830|977831|977832|977833|977834|977835|977836|977837|978185|978186|978187|978188|978189|978190|978191|978192|978193|978194|978195|978196|978197|978198|978199|978200|978201|978202", "text": "Methylcrotonyl-CoA carboxylase deficiency" }, { - "baseId": "16975|16976|16977|16978|16979|16980|16981|16982|23412|47734|47735|47736|47737|47738|47739|47740|47741|47742|47743|47744|47745|47746|47747|47748|47749|47750|47751|47752|47753|47754|47755|47756|47757|47758|47759|47760|47761|47762|47763|47764|47765|47766|47767|47768|47769|47770|47771|47772|47773|47774|47775|47776|47777|47778|47779|47780|47781|47782|47783|47784|47785|47786|47787|47788|47789|47790|47791|47792|47793|47794|47795|47796|47797|47798|47799|47800|47801|47802|47803|47804|47804|47805|47806|47807|47808|47809|47810|47811|47812|47813|47814|47815|47816|47817|47818|47819|47820|47821|47822|47823|47824|47825|47826|47827|47828|47829|47830|47831|47832|47833|47834|47835|47836|47837|47838|47839|47840|47841|47842|47843|47844|47845|47846|47847|47848|47849|47850|47851|47852|47884|227175|237840|237841|237842|237843|237844|237845|237846|237847|237848|237849|237850|237851|237852|237853|317019|317020|317022|317028|317029|317030|317036|317038|317043|317047|317049|324682|324683|324685|324686|324688|324690|324694|324695|324696|324697|324698|324704|324706|324707|324713|324716|324728|324729|324744|324745|324746|324748|324757|324759|324760|324764|324765|330850|330854|330863|330868|330872|330873|330877|330896|330897|330898|332317|332319|332320|332321|332330|332334|332335|332341|332342|332351|332353|332354|332363|332364|332370|332380|332383|332384|332388|332390|332395|332396|332397|332404|353245|437927|462143|462146|462432|463050|527134|527135|527161|527162|527165|527626|537191|565444|566828|568025|568026|568030|571834|571841|571842|577259|619925|620442|641104|641105|641106|641107|641108|641109|641110|641111|652698|684325|684326|684327|685380|693195|693196|693198|693199|695565|738632|738633|753348|769104|778090|793420|839880|839881|839882|839883|839884|839885|839886|869764|869765|869766|869767|869768|869769|869770|869771|869772|869773|869774|869775|869776|869777|869778|869779|869780|869781|869782|869783|869784|869785|869786|869787|869788|869789|869790|869791|869792|869793|869794|869795|869796|869797|869798|869799|869800|872237|872238|872239|919428|919429|919430|919431|926615|936109|936110|936111|940267|948001|948002|948003|948004", + "upstreamId": "16975|16976|16977|16978|16979|16980|16981|16982|23412|47734|47735|47736|47737|47738|47739|47740|47741|47742|47743|47744|47745|47746|47747|47748|47749|47750|47751|47752|47753|47754|47755|47756|47757|47758|47759|47760|47761|47762|47763|47764|47765|47766|47767|47768|47769|47770|47771|47772|47773|47774|47775|47776|47777|47778|47779|47780|47781|47782|47783|47784|47785|47786|47787|47788|47789|47790|47791|47792|47793|47794|47795|47796|47797|47798|47799|47800|47801|47802|47803|47804|47804|47805|47806|47807|47808|47809|47810|47811|47812|47813|47814|47815|47816|47817|47818|47819|47820|47821|47822|47823|47824|47825|47826|47827|47828|47829|47830|47831|47832|47833|47834|47835|47836|47837|47838|47839|47840|47841|47842|47843|47844|47845|47846|47847|47848|47849|47850|47851|47852|47884|227175|237840|237841|237842|237843|237844|237845|237846|237847|237848|237849|237850|237851|237852|237853|317019|317020|317022|317028|317029|317030|317036|317038|317043|317047|317049|324682|324683|324685|324686|324688|324690|324694|324695|324696|324697|324698|324704|324706|324707|324713|324716|324728|324729|324744|324745|324746|324748|324757|324759|324760|324764|324765|330850|330854|330863|330868|330872|330873|330877|330896|330897|330898|332317|332319|332320|332321|332330|332334|332335|332341|332342|332351|332353|332354|332363|332364|332370|332380|332383|332384|332388|332390|332395|332396|332397|332404|353245|437927|462143|462146|462432|463050|527134|527135|527161|527162|527165|527626|537191|565444|566828|568025|568026|568030|571834|571841|571842|577259|619925|620442|641104|641105|641106|641107|641108|641109|641110|641111|652698|684325|684326|684327|685380|693195|693196|693198|693199|695565|738632|738633|753348|769104|778090|793420|839880|839881|839882|839883|839884|839885|839886|869764|869765|869766|869767|869768|869769|869770|869771|869772|869773|869774|869775|869776|869777|869778|869779|869780|869781|869782|869783|869784|869785|869786|869787|869788|869789|869790|869791|869792|869793|869794|869795|869796|869797|869798|869799|869800|872237|872238|872239|919428|919429|919430|919431|926615|936109|936110|936111|940267|948001|948002|948003|948004", "text": "Parkinson disease 8, autosomal dominant" }, { - "baseId": "16979|22089", + "upstreamId": "16979|22089", "text": "Young-onset Parkinson disease" }, { - "baseId": "16983|16984|16985|16986|16987|16988|16989|45768|344604|508932|614468|614469|614470", + "upstreamId": "16983|16984|16985|16986|16987|16988|16989|45768|344604|508932|614468|614469|614470", "text": "Weill-Marchesani syndrome 1" }, { - "baseId": "16990|125789|140823|140824|210976|293959|293966|293967|452475|519022|695187|779047|827755|931852|943433|980911", + "upstreamId": "16990|125789|140823|140824|210976|293959|293966|293967|452475|519022|695187|779047|827755|931852|943433|980911", "text": "3-methylglutaconic aciduria type V" }, { - "baseId": "16991|16992|177530|188766|188767|254273|314839|314840|314841|314848|314850|314851|314855|314856|314866|314881|314882|314886|314889|321579|321581|321591|321593|321594|321595|321605|321606|321613|321614|321623|321651|321655|327684|327689|327690|327693|327694|327695|327698|327699|327700|327712|327716|327719|327731|327735|327752|327753|327756|328782|328790|328799|328801|328804|328806|328807|328809|328810|328811|328818|328822|328824|328832|328834|328836|328841|431757|623308|693100|791159|838825|868378|868379|868380|868381|868382|868383|868384|868385|868386|868387|868388|868389|868390|868391|868392|868393|868394|868395|868396|868397|868398|868399|868400|868401|868402|868403|868404|868405|868406|868407|868408|868409|868410|868411|868412|868683", + "upstreamId": "16991|16992|177530|188766|188767|254273|314839|314840|314841|314848|314850|314851|314855|314856|314866|314881|314882|314886|314889|321579|321581|321591|321593|321594|321595|321605|321606|321613|321614|321623|321651|321655|327684|327689|327690|327693|327694|327695|327698|327699|327700|327712|327716|327719|327731|327735|327752|327753|327756|328782|328790|328799|328801|328804|328806|328807|328809|328810|328811|328818|328822|328824|328832|328834|328836|328841|431757|623308|693100|791159|838825|868378|868379|868380|868381|868382|868383|868384|868385|868386|868387|868388|868389|868390|868391|868392|868393|868394|868395|868396|868397|868398|868399|868400|868401|868402|868403|868404|868405|868406|868407|868408|868409|868410|868411|868412|868683", "text": "Congenital stationary night blindness, type 2B" }, { - "baseId": "16993|16994|16995|16996|16997|16998|16999|17000|17001|17002|17003|17004|17005|17006|17007|17008|17009|17010|17012|17013|17014|17015|17016|17018|17019|17023|44317|44318|79148|79149|79150|79151|79152|79153|79154|79155|79156|79157|79158|79159|190708|231104|257361|257362|260230|335525|335529|335531|335536|335560|345310|350014|351027|351029|351030|351031|351032|351035|377038|378044|390341|390343|430318|470393|471393|497336|507775|533534|533536|533544|533569|533570|533571|533575|533613|533619|548891|548893|548898|548909|548912|548913|548968|548970|548972|548973|549211|549381|549382|549383|549384|549385|549386|549387|549388|549389|549390|549391|571135|571245|572904|572912|610158|613994|623167|648699|648700|648701|648702|648703|648704|648705|648706|653129|653559|694553|694554|694555|695846|705499|705500|705501|728671|728672|731348|745304|757538|757539|757541|757542|760899|773111|773112|773114|773115|773117|786378|786380|786381|821327|821328|821329|848413|848414|848415|848416|848417|848418|848419|848420|848421|848422|848423|848424|852908|852999|886147|886148|886149|886150|886151|886152|886153|886154|886155|886156|886157|886158|886159|929196|929197|951102|951103|951104|951105|958842|958843|958844|958845|958846|958847|958848|960940|972340|972341|972342|972343|980021|980022", + "upstreamId": "16993|16994|16995|16996|16997|16998|16999|17000|17001|17002|17003|17004|17005|17006|17007|17008|17009|17010|17012|17013|17014|17015|17016|17018|17019|17023|44317|44318|79148|79149|79150|79151|79152|79153|79154|79155|79156|79157|79158|79159|190708|231104|257361|257362|260230|335525|335529|335531|335536|335560|345310|350014|351027|351029|351030|351031|351032|351035|377038|378044|390341|390343|430318|470393|471393|497336|507775|533534|533536|533544|533569|533570|533571|533575|533613|533619|548891|548893|548898|548909|548912|548913|548968|548970|548972|548973|549211|549381|549382|549383|549384|549385|549386|549387|549388|549389|549390|549391|571135|571245|572904|572912|610158|613994|623167|648699|648700|648701|648702|648703|648704|648705|648706|653129|653559|694553|694554|694555|695846|705499|705500|705501|728671|728672|731348|745304|757538|757539|757541|757542|760899|773111|773112|773114|773115|773117|786378|786380|786381|821327|821328|821329|848413|848414|848415|848416|848417|848418|848419|848420|848421|848422|848423|848424|852908|852999|886147|886148|886149|886150|886151|886152|886153|886154|886155|886156|886157|886158|886159|929196|929197|951102|951103|951104|951105|958842|958843|958844|958845|958846|958847|958848|960940|972340|972341|972342|972343|980021|980022", "text": "Severe combined immunodeficiency due to ADA deficiency" }, { - "baseId": "16998|28168|28169|28169|28170|28172|28172|28174|28174|28174|28175|28177|28185|28187|28193|28198|28199|28200|45371|45372|45372|45373|45374|45375|45376|45376|45377|45380|45381|79572|79572|79573|79574|79575|79576|79581|79582|142585|142585|142586|142587|142587|142588|142588|142589|142589|142590|142590|142590|254148|254148|254149|254150|254151|254151|269282|313990|313990|313992|313992|313995|314000|314002|314012|314013|314014|314015|314025|314026|314032|320368|320369|320387|320387|320393|320393|320401|320401|320417|320431|320432|320452|320453|320454|320456|320463|320476|320489|320490|320497|320500|326350|326360|326369|326374|326377|326378|326380|326382|326382|326384|326384|326399|326401|326415|326421|326429|326430|326430|326434|326434|326435|326435|326435|326443|326452|327380|327381|327381|327390|327392|327406|327407|327408|327412|327430|327431|327441|327443|327444|327446|327450|327451|327455|327462|327462|327462|327474|327474|327480|359878|359938|359941|371408|408342|415266|415267|425922|425922|433888|433888|433888|444800|461092|461092|461100|461295|461298|461300|461304|461574|461576|461576|461890|461890|461904|461904|461907|461907|481990|488104|488104|488113|488113|488119|488119|491899|513657|513658|526182|526185|526190|526194|526194|526666|526667|526671|526676|526676|526679|526682|564612|564613|567235|567235|567235|567239|567241|567241|567244|567245|567249|570614|570620|570629|612909|614356|614357|624428|640003|640004|640005|640006|640007|640008|640009|640010|640011|640012|640013|640014|640015|640016|640017|640018|640019|640020|640021|640022|640022|640023|640023|640024|640025|640025|640026|640027|640028|687777|687778|693020|693020|693021|693021|701752|701752|712815|737960|737962|768438|768440|768442|783988|783989|783990|820362|838357|838358|838359|838360|838361|838362|838363|838364|838365|838365|838366|838367|838368|838368|838369|838370|838371|838372|838373|838373|838374|838375|838376|838377|838378|838379|838380|838381|838382|838383|838384|838385|838386|838387|838388|838389|838390|838391|838392|838393|838394|838395|838396|838397|838398|838399|838400|838401|838402|867886|867887|867888|867889|867890|867891|867892|867893|867894|867895|867896|867897|867898|867899|867900|867901|867902|867903|867904|867905|867906|867907|867908|867909|867910|867911|867912|867913|867914|867915|867916|867917|867918|867919|867920|867921|867922|867923|867924|867925|867926|867927|867928|867929|867930|867931|867932|926215|926216|926217|926218|926219|926220|926221|926222|926223|926224|926225|935514|935515|935516|935517|935518|935519|935520|935521|947432|947433|947434|947435|947436|947437|947438|947439|947440|947441|947442|947443|947444|947445|956477|956478|956479|956480|956481|956482|956483|956484|956485|956486|956487|956488|956489|956490|956491|956492|956493|961958|961959|961960|961961|961962", + "upstreamId": "16998|28168|28169|28169|28170|28172|28172|28174|28174|28174|28175|28177|28185|28187|28193|28198|28199|28200|45371|45372|45372|45373|45374|45375|45376|45376|45377|45380|45381|79572|79572|79573|79574|79575|79576|79581|79582|142585|142585|142586|142587|142587|142588|142588|142589|142589|142590|142590|142590|254148|254148|254149|254150|254151|254151|269282|313990|313990|313992|313992|313995|314000|314002|314012|314013|314014|314015|314025|314026|314032|320368|320369|320387|320387|320393|320393|320401|320401|320417|320431|320432|320452|320453|320454|320456|320463|320476|320489|320490|320497|320500|326350|326360|326369|326374|326377|326378|326380|326382|326382|326384|326384|326399|326401|326415|326421|326429|326430|326430|326434|326434|326435|326435|326435|326443|326452|327380|327381|327381|327390|327392|327406|327407|327408|327412|327430|327431|327441|327443|327444|327446|327450|327451|327455|327462|327462|327462|327474|327474|327480|359878|359938|359941|371408|408342|415266|415267|425922|425922|433888|433888|433888|444800|461092|461092|461100|461295|461298|461300|461304|461574|461576|461576|461890|461890|461904|461904|461907|461907|481990|488104|488104|488113|488113|488119|488119|491899|513657|513658|526182|526185|526190|526194|526194|526666|526667|526671|526676|526676|526679|526682|564612|564613|567235|567235|567235|567239|567241|567241|567244|567245|567249|570614|570620|570629|612909|614356|614357|624428|640003|640004|640005|640006|640007|640008|640009|640010|640011|640012|640013|640014|640015|640016|640017|640018|640019|640020|640021|640022|640022|640023|640023|640024|640025|640025|640026|640027|640028|687777|687778|693020|693020|693021|693021|701752|701752|712815|737960|737962|768438|768440|768442|783988|783989|783990|820362|838357|838358|838359|838360|838361|838362|838363|838364|838365|838365|838366|838367|838368|838368|838369|838370|838371|838372|838373|838373|838374|838375|838376|838377|838378|838379|838380|838381|838382|838383|838384|838385|838386|838387|838388|838389|838390|838391|838392|838393|838394|838395|838396|838397|838398|838399|838400|838401|838402|867886|867887|867888|867889|867890|867891|867892|867893|867894|867895|867896|867897|867898|867899|867900|867901|867902|867903|867904|867905|867906|867907|867908|867909|867910|867911|867912|867913|867914|867915|867916|867917|867918|867919|867920|867921|867922|867923|867924|867925|867926|867927|867928|867929|867930|867931|867932|926215|926216|926217|926218|926219|926220|926221|926222|926223|926224|926225|935514|935515|935516|935517|935518|935519|935520|935521|947432|947433|947434|947435|947436|947437|947438|947439|947440|947441|947442|947443|947444|947445|956477|956478|956479|956480|956481|956482|956483|956484|956485|956486|956487|956488|956489|956490|956491|956492|956493|961958|961959|961960|961961|961962", "text": "Severe combined immunodeficiency, autosomal recessive, T cell-negative, B cell-negative, NK cell-positive" }, { - "baseId": "17000|17001|17002|17003|17005|17006|17018|17019", + "upstreamId": "17000|17001|17002|17003|17005|17006|17018|17019", "text": "Partial adenosine deaminase deficiency" }, { - "baseId": "17004|17018|17023|28177|44474|260230|291325|297340|299357|299373|312525|314019|314021|320474|320491|325324|327380|327410|327417|327426|327480|332796|342993|342997|348310|348336|348355|349518|353163|353188|353488|353489|481990|548898|548913|972607|983949", + "upstreamId": "17004|17018|17023|28177|44474|260230|291325|297340|299357|299373|312525|314019|314021|320474|320491|325324|327380|327410|327417|327426|327480|332796|342993|342997|348310|348336|348355|349518|353163|353188|353488|353489|481990|548898|548913|972607|983949", "text": "Severe Combined Immune Deficiency" }, { - "baseId": "17009|44318|44319|44469|44470|44471|44472|44473|44474|44663|44664|45054|45055|45056|45057|45059|45060|45078|45079|45080|45081|45082|45083|45084|45085|45086|45372|45373|45375|45376|45377|45380|45381|45575|79585|363593|390341|434671|487945|497336|549388|590646|974489", + "upstreamId": "17009|44318|44319|44469|44470|44471|44472|44473|44474|44663|44664|45054|45055|45056|45057|45059|45060|45078|45079|45080|45081|45082|45083|45084|45085|45086|45372|45373|45375|45376|45377|45380|45381|45575|79585|363593|390341|434671|487945|497336|549388|590646|974489", "text": "Severe combined immunodeficiency disease" }, { - "baseId": "17011|17021|17022|17023", + "upstreamId": "17011|17021|17022|17023", "text": "SCID due to ADA deficiency, delayed onset" }, { - "baseId": "17012", + "upstreamId": "17012", "text": "Adenosine deaminase 2 allozyme" }, { - "baseId": "17024|17025|190688|190689|190691|190692|190693|190694|190696|190697|190698|190699|190700|190701|190702|191453|192950|237269|237411|237422|254848|254849|254850|265784|265785|267426|268038|268941|270623|271818|273858|319604|319605|319607|319610|319611|319612|319616|319618|319619|319621|319625|319631|319632|319636|319637|319638|319643|319645|319647|319651|319652|319656|319658|319659|319660|319662|319663|319664|319674|319679|319690|319692|319693|319694|319696|319699|319704|319706|319707|319713|319715|319716|319717|319727|319731|319732|319745|319746|319751|319767|328125|328127|328128|328133|328134|328135|328137|328146|328147|328150|328153|328156|328173|328175|328179|328180|328187|328188|328192|328194|328195|328203|328226|328227|328236|328237|328238|328245|328247|328252|328254|328258|328262|328263|328264|328272|328274|328283|328287|328291|328293|328295|334520|334521|334525|334539|334545|334552|334553|334555|334564|334568|334571|334572|334576|334579|334583|334584|334592|334594|334599|334601|334607|334619|334620|334624|334641|334642|334643|334660|334662|334663|334668|334675|334676|334677|334678|334692|334706|334710|334716|334721|334728|334729|334744|336286|336287|336290|336297|336298|336308|336314|336315|336323|336333|336337|336338|336341|336342|336344|336346|336347|336350|336354|336356|336361|336364|336365|336366|336376|336380|336382|336384|336388|336393|336394|336395|336399|336408|336414|336428|336434|336436|336437|336445|336448|336477|336489|336496|336498|336500|429502|489673|492814|513100|513101|539051|584919|613524|620471|620472|688163|688165|688166|688167|688168|688169|693357|693359|693360|693362|693365|693366|693371|693372|739048|739049|753838|871180|871181|871182|871183|871184|871185|871186|871187|871188|871189|871190|871191|871192|871193|871194|871195|871196|871197|871198|871199|871200|871201|871202|871203|871204|871205|871206|871207|871208|871209|871210|871211|871212|871213|871214|871215|871216|871217|871218|871219|871220|871221|871222|871223|871224|871225|871226|871227|871228|871229|871230|871231|871232|871233|871234|871235|871236|871237|871238|871239|871240|871241|871242|871243|871244|871245|871246|871247|871248|871249|871250|871251|871252|871253|871254|871255|871256|871257|871258|871259|871260|871261|871262|871263|871264|871265|871266|871267|871268|871269|871270|871271|871272|871273|871274|871275|871276|871277|871278|871279|871280|871281|871282|871283|871284|871285|872329|872330|872331|872332|872333|872334|904991|904992|904993|904994|904995|971581|971582", + "upstreamId": "17024|17025|190688|190689|190691|190692|190693|190694|190696|190697|190698|190699|190700|190701|190702|191453|192950|237269|237411|237422|254848|254849|254850|265784|265785|267426|268038|268941|270623|271818|273858|319604|319605|319607|319610|319611|319612|319616|319618|319619|319621|319625|319631|319632|319636|319637|319638|319643|319645|319647|319651|319652|319656|319658|319659|319660|319662|319663|319664|319674|319679|319690|319692|319693|319694|319696|319699|319704|319706|319707|319713|319715|319716|319717|319727|319731|319732|319745|319746|319751|319767|328125|328127|328128|328133|328134|328135|328137|328146|328147|328150|328153|328156|328173|328175|328179|328180|328187|328188|328192|328194|328195|328203|328226|328227|328236|328237|328238|328245|328247|328252|328254|328258|328262|328263|328264|328272|328274|328283|328287|328291|328293|328295|334520|334521|334525|334539|334545|334552|334553|334555|334564|334568|334571|334572|334576|334579|334583|334584|334592|334594|334599|334601|334607|334619|334620|334624|334641|334642|334643|334660|334662|334663|334668|334675|334676|334677|334678|334692|334706|334710|334716|334721|334728|334729|334744|336286|336287|336290|336297|336298|336308|336314|336315|336323|336333|336337|336338|336341|336342|336344|336346|336347|336350|336354|336356|336361|336364|336365|336366|336376|336380|336382|336384|336388|336393|336394|336395|336399|336408|336414|336428|336434|336436|336437|336445|336448|336477|336489|336496|336498|336500|429502|489673|492814|513100|513101|539051|584919|613524|620471|620472|688163|688165|688166|688167|688168|688169|693357|693359|693360|693362|693365|693366|693371|693372|739048|739049|753838|871180|871181|871182|871183|871184|871185|871186|871187|871188|871189|871190|871191|871192|871193|871194|871195|871196|871197|871198|871199|871200|871201|871202|871203|871204|871205|871206|871207|871208|871209|871210|871211|871212|871213|871214|871215|871216|871217|871218|871219|871220|871221|871222|871223|871224|871225|871226|871227|871228|871229|871230|871231|871232|871233|871234|871235|871236|871237|871238|871239|871240|871241|871242|871243|871244|871245|871246|871247|871248|871249|871250|871251|871252|871253|871254|871255|871256|871257|871258|871259|871260|871261|871262|871263|871264|871265|871266|871267|871268|871269|871270|871271|871272|871273|871274|871275|871276|871277|871278|871279|871280|871281|871282|871283|871284|871285|872329|872330|872331|872332|872333|872334|904991|904992|904993|904994|904995|971581|971582", "text": "Fraser syndrome 2" }, { - "baseId": "17027|17028|17029|413788", + "upstreamId": "17027|17028|17029|413788", "text": "BNAR syndrome" }, { - "baseId": "17030|17031|17032|133901|133902|196356|214168|214169|214762|271907|291765|293111|293112|296408|367421|367743|368828|393771|393817|406366|452801|453564|519614|536654|559535|563313|620138|622334|622335|622336|685154|686467|764186|764187|781815|819421|819424|819425|828588|828589|828590|828591|828592|828593|828594|851578|851580|923365|923366|932091|932092|932093|943709|943710|943711|943712|943713|943714|943715|943716|953597|953598|953599|953600|953601", + "upstreamId": "17030|17031|17032|133901|133902|196356|214168|214169|214762|271907|291765|293111|293112|296408|367421|367743|368828|393771|393817|406366|452801|453564|519614|536654|559535|563313|620138|622334|622335|622336|685154|686467|764186|764187|781815|819421|819424|819425|828588|828589|828590|828591|828592|828593|828594|851578|851580|923365|923366|932091|932092|932093|943709|943710|943711|943712|943713|943714|943715|943716|953597|953598|953599|953600|953601", "text": "Joubert syndrome 8" }, { - "baseId": "17033|102096|177028|191435|191436|192057|193721|195431|196333|256341|256342|256345|256346|256347|256348|256349|329459|329460|329465|329488|329490|329494|329504|329505|329512|329518|329522|329527|329529|329533|329535|329544|329545|329546|329547|329551|329553|329592|329593|339753|339763|339765|339767|339782|339783|339789|339791|339793|339797|339801|339802|339804|339810|339815|339816|339818|339820|339822|345484|345496|345506|345510|345520|345521|345526|345534|345537|345541|345548|345554|345559|345564|345566|345569|345571|345574|346824|346825|346836|346844|346851|346857|346858|346859|346862|346867|346870|346871|346872|346876|346877|346882|346883|346889|346893|346929|346930|845926|845927|845938|878194|878195|878196|878197|878198|878199|878200|878201|878202|878203|878204|878205|878206|878207|878208|878209|878210|878211|878212|878213|878214|878215|878216|878217|878218|878219|878220|878221|878222|878223|878224|878225|878226|878227|878228|878229|878230|878231|878232|878233|878234|878235|878236|878237|878238|878239|878240|878241|878242|878243|878244|878245|878264|878265|919763", + "upstreamId": "17033|102096|177028|191435|191436|192057|193721|195431|196333|256341|256342|256345|256346|256347|256348|256349|329459|329460|329465|329488|329490|329494|329504|329505|329512|329518|329522|329527|329529|329533|329535|329544|329545|329546|329547|329551|329553|329592|329593|339753|339763|339765|339767|339782|339783|339789|339791|339793|339797|339801|339802|339804|339810|339815|339816|339818|339820|339822|345484|345496|345506|345510|345520|345521|345526|345534|345537|345541|345548|345554|345559|345564|345566|345569|345571|345574|346824|346825|346836|346844|346851|346857|346858|346859|346862|346867|346870|346871|346872|346876|346877|346882|346883|346889|346893|346929|346930|845926|845927|845938|878194|878195|878196|878197|878198|878199|878200|878201|878202|878203|878204|878205|878206|878207|878208|878209|878210|878211|878212|878213|878214|878215|878216|878217|878218|878219|878220|878221|878222|878223|878224|878225|878226|878227|878228|878229|878230|878231|878232|878233|878234|878235|878236|878237|878238|878239|878240|878241|878242|878243|878244|878245|878264|878265|919763", "text": "Cone-rod dystrophy 5" }, { - "baseId": "17034|140169|140170|140171|140172|211799|211802|211806|211807|327514|327518|327519|337350|337355|343627|343629|343635|343639|343640|345122|345129|409847|622915|876908|876909|876910|876911|876912|876913|876914|876915|876916|876917|876918|876919|876920|880479|919713", + "upstreamId": "17034|140169|140170|140171|140172|211799|211802|211806|211807|327514|327518|327519|337350|337355|343627|343629|343635|343639|343640|345122|345129|409847|622915|876908|876909|876910|876911|876912|876913|876914|876915|876916|876917|876918|876919|876920|880479|919713", "text": "Nuclearly-encoded mitochondrial complex V (ATP synthase) deficiency 1" }, { - "baseId": "17035|17036|17037|17038|17039|17040|17041|17042|227397|227398|237010|237321|237368|256414|256415|256416|256417|256418|256420|256423|256426|256427|256428|256429|256430|256431|256437|256439|256440|256441|256446|256447|256450|256451|256453|256454|329958|329959|329966|329968|329975|329978|329990|329994|329997|330000|330002|330014|330017|330022|330024|330026|330027|330028|330032|340221|340227|340231|340233|340235|340240|340241|340243|340245|340247|340260|345957|345963|345964|345968|345976|345977|345985|345987|345988|345992|345995|346003|346005|346008|346009|347296|347299|347301|347303|347307|347308|347309|347310|347311|347312|375709|390239|410246|422202|434394|434457|445900|467475|467476|467479|468333|468340|468846|468851|468852|469093|469095|531771|531778|531780|531782|531789|531852|531855|531894|531897|531903|531904|531908|531913|531914|531915|532152|532155|532157|532164|532166|532168|569747|569748|569752|569753|569755|569756|571594|571597|571598|572249|572251|572257|572261|572262|572267|572272|572274|574615|574616|574617|574618|574619|587269|614444|620607|620608|646697|646698|646699|646700|646701|646702|646703|646704|646705|646706|646707|646708|646709|646710|646711|646712|646713|646714|646715|646716|646717|646718|646719|646720|646721|652844|653031|653364|653516|653518|715712|727448|727449|727450|731180|741045|745082|756134|756135|756137|756138|756140|760670|771841|771842|771844|771845|771846|776734|785747|785748|785749|792809|846200|846201|846202|846203|846204|846205|846206|846207|846208|846209|846210|846211|846212|846213|846214|846215|846216|846217|846218|846219|846220|846221|846222|846223|846224|846225|846226|846227|846228|846229|846230|846231|846232|846233|846234|846235|846236|846237|846238|846239|846240|846241|851755|852909|858755|878498|878499|878500|878501|878502|878503|878504|878505|878506|878507|878508|878509|878510|878511|878512|878513|878514|878515|878518|878519|878520|878521|880591|880592|880593|880594|880595|880596|880597|880598|928533|928534|928535|928536|928537|928538|928539|928540|928541|928542|928543|928544|938223|938224|938225|938226|938227|938228|938229|938230|938231|941198|941199|950290|950291|950292|950293|950294|950295|950296|950297|950298|950299|950300|958313|958314|958315|958316|958317|958318|958319|958320|958321|958322|958323|958324|960245|960246|961977|980485", + "upstreamId": "17035|17036|17037|17038|17039|17040|17041|17042|227397|227398|237010|237321|237368|256414|256415|256416|256417|256418|256420|256423|256426|256427|256428|256429|256430|256431|256437|256439|256440|256441|256446|256447|256450|256451|256453|256454|329958|329959|329966|329968|329975|329978|329990|329994|329997|330000|330002|330014|330017|330022|330024|330026|330027|330028|330032|340221|340227|340231|340233|340235|340240|340241|340243|340245|340247|340260|345957|345963|345964|345968|345976|345977|345985|345987|345988|345992|345995|346003|346005|346008|346009|347296|347299|347301|347303|347307|347308|347309|347310|347311|347312|375709|390239|410246|422202|434394|434457|445900|467475|467476|467479|468333|468340|468846|468851|468852|469093|469095|531771|531778|531780|531782|531789|531852|531855|531894|531897|531903|531904|531908|531913|531914|531915|532152|532155|532157|532164|532166|532168|569747|569748|569752|569753|569755|569756|571594|571597|571598|572249|572251|572257|572261|572262|572267|572272|572274|574615|574616|574617|574618|574619|587269|614444|620607|620608|646697|646698|646699|646700|646701|646702|646703|646704|646705|646706|646707|646708|646709|646710|646711|646712|646713|646714|646715|646716|646717|646718|646719|646720|646721|652844|653031|653364|653516|653518|715712|727448|727449|727450|731180|741045|745082|756134|756135|756137|756138|756140|760670|771841|771842|771844|771845|771846|776734|785747|785748|785749|792809|846200|846201|846202|846203|846204|846205|846206|846207|846208|846209|846210|846211|846212|846213|846214|846215|846216|846217|846218|846219|846220|846221|846222|846223|846224|846225|846226|846227|846228|846229|846230|846231|846232|846233|846234|846235|846236|846237|846238|846239|846240|846241|851755|852909|858755|878498|878499|878500|878501|878502|878503|878504|878505|878506|878507|878508|878509|878510|878511|878512|878513|878514|878515|878518|878519|878520|878521|880591|880592|880593|880594|880595|880596|880597|880598|928533|928534|928535|928536|928537|928538|928539|928540|928541|928542|928543|928544|938223|938224|938225|938226|938227|938228|938229|938230|938231|941198|941199|950290|950291|950292|950293|950294|950295|950296|950297|950298|950299|950300|958313|958314|958315|958316|958317|958318|958319|958320|958321|958322|958323|958324|960245|960246|961977|980485", "text": "Familial hemophagocytic lymphohistiocytosis 3" }, { - "baseId": "17043|17044|17045|17046|17047|17048|98559|98560|98561|98562|98564|117265|135742|178066|187121|192209|194807|194808|195568|205173|228218|254825|254829|254830|265322|265525|266407|266527|267944|268189|269008|269208|269214|269291|269367|269472|269833|270070|270437|272665|273800|274472|274581|275451|319224|319226|327724|327754|327763|334017|335632|335639|335640|353291|372663|462610|462891|463382|463383|490527|492123|492730|527427|527489|527490|527492|527745|527749|528013|539048|546795|546796|546797|546954|546956|546962|546967|546969|547115|547119|547124|547345|547346|567120|567125|568269|608906|641582|641583|641584|641585|641586|641587|652283|652352|652525|652768|679459|681848|693327|693328|787944|794047|799734|802183|820548|820549|840579|840580|840581|840582|840583|840584|840585|852529|852712|926813|936355|936356|948273|948274|948275|957028|957029|957030|957031|957032|957033|966349|979360|979361", + "upstreamId": "17043|17044|17045|17046|17047|17048|98559|98560|98561|98562|98564|117265|135742|178066|187121|192209|194807|194808|195568|205173|228218|254825|254829|254830|265322|265525|266407|266527|267944|268189|269008|269208|269214|269291|269367|269472|269833|270070|270437|272665|273800|274472|274581|275451|319224|319226|327724|327754|327763|334017|335632|335639|335640|353291|372663|462610|462891|463382|463383|490527|492123|492730|527427|527489|527490|527492|527745|527749|528013|539048|546795|546796|546797|546954|546956|546962|546967|546969|547115|547119|547124|547345|547346|567120|567125|568269|608906|641582|641583|641584|641585|641586|641587|652283|652352|652525|652768|679459|681848|693327|693328|787944|794047|799734|802183|820548|820549|840579|840580|840581|840582|840583|840584|840585|852529|852712|926813|936355|936356|948273|948274|948275|957028|957029|957030|957031|957032|957033|966349|979360|979361", "text": "Severe autosomal recessive muscular dystrophy of childhood - North African type" }, { - "baseId": "17049|17050|17051|17052|17053|17054|17055|39717|39718|49167|75116|101652|101653|101654|133771|133772|133773|133774|133775|133776|133777|152870|166163|166164|177234|191418|191827|192032|192679|192931|193197|196042|198627|207325|207326|212518|212519|214230|214231|214232|214233|214234|214235|214236|214237|214238|214239|214240|214241|214242|214243|214244|214245|214246|214247|214248|214249|214250|214251|214252|214253|214254|214255|214256|214257|214258|237019|252116|252123|252128|252130|252135|252139|264200|268659|299154|299162|299166|299167|299169|299170|301557|301558|301560|301562|301563|301567|301569|301576|305939|305942|305954|305955|305965|305969|305977|305978|305980|306211|306213|306214|306217|306228|306240|306247|306248|306258|306262|306281|306283|368348|368357|368862|438708|455967|501165|620215|620216|622883|623142|626308|634642|678064|683761|683762|683764|802159|831586|895420|895421|895422|895423|895424|895425|895426|895427|895428|895429|895430|895431|895432|895433|895434|895435|895436|895437|895438|895439|895440|895441|895442|895443|895444|895445|895446|895447|895448|895449|896193|896194|896195|896196|896197|896198|896199|906245|906283|962050|963595|963596|972788", + "upstreamId": "17049|17050|17051|17052|17053|17054|17055|39717|39718|49167|75116|101652|101653|101654|133771|133772|133773|133774|133775|133776|133777|152870|166163|166164|177234|191418|191827|192032|192679|192931|193197|196042|198627|207325|207326|212518|212519|214230|214231|214232|214233|214234|214235|214236|214237|214238|214239|214240|214241|214242|214243|214244|214245|214246|214247|214248|214249|214250|214251|214252|214253|214254|214255|214256|214257|214258|237019|252116|252123|252128|252130|252135|252139|264200|268659|299154|299162|299166|299167|299169|299170|301557|301558|301560|301562|301563|301567|301569|301576|305939|305942|305954|305955|305965|305969|305977|305978|305980|306211|306213|306214|306217|306228|306240|306247|306248|306258|306262|306281|306283|368348|368357|368862|438708|455967|501165|620215|620216|622883|623142|626308|634642|678064|683761|683762|683764|802159|831586|895420|895421|895422|895423|895424|895425|895426|895427|895428|895429|895430|895431|895432|895433|895434|895435|895436|895437|895438|895439|895440|895441|895442|895443|895444|895445|895446|895447|895448|895449|896193|896194|896195|896196|896197|896198|896199|906245|906283|962050|963595|963596|972788", "text": "Joubert syndrome 3" }, { - "baseId": "17051|181421|181433", + "upstreamId": "17051|181421|181433", "text": "Typical Joubert syndrome MRI findings" }, { - "baseId": "17054|39717|904949|904950|904951", + "upstreamId": "17054|39717|904949|904950|904951", "text": "Joubert syndrome with ocular defect" }, { - "baseId": "17057|17058|17058|17059|443654|513552|626146|904267|904268|906011|961768|961769", + "upstreamId": "17057|17058|17058|17059|443654|513552|626146|904267|904268|906011|961768|961769", "text": "Neutral 1 amino acid transport defect" }, { - "baseId": "17058|17424|918914|961768|961769", + "upstreamId": "17058|17424|918914|961768|961769", "text": "Iminoglycinuria" }, { - "baseId": "17058|17060|17423|17424|19884|290474|290478|290483|290496|290509|290514|290515|290521|290529|290530|290539|290540|290548|290550|290552|290557|290559|290569|290570|290571|290573|290578|290579|290586|291372|291373|291374|291382|291383|291385|291389|291390|291391|291396|291397|291398|291401|291403|291407|291411|291412|291413|291418|291426|291436|291437|291438|291459|291460|291461|291467|294599|294602|294608|294620|294622|294629|294631|294635|294639|294643|294644|294646|294647|294648|294650|294652|294653|294657|294659|294678|294680|294699|294700|294713|294715|294716|295036|295037|295052|295054|295058|295061|295065|295066|295067|295068|295069|295073|295082|295084|295086|295087|295088|295089|583095|612428|620763|620764|888977|888978|888979|888980|888981|888982|888983|888984|888985|888986|888987|888988|888989|888990|888991|888992|888993|888994|888995|888996|888997|888998|888999|889000|889001|889002|889003|889004|889005|889006|889007|889008|889009|889010|889011|889012|889013|889014|889015|889016|889017|889018|889019|889020|889021|889022|889023|889024|889025|889026|889027|889028|889029|889030|889031|889032|889033|889034|889035|889036|891648|891649|961768|961769", + "upstreamId": "17058|17060|17423|17424|19884|290474|290478|290483|290496|290509|290514|290515|290521|290529|290530|290539|290540|290548|290550|290552|290557|290559|290569|290570|290571|290573|290578|290579|290586|291372|291373|291374|291382|291383|291385|291389|291390|291391|291396|291397|291398|291401|291403|291407|291411|291412|291413|291418|291426|291436|291437|291438|291459|291460|291461|291467|294599|294602|294608|294620|294622|294629|294631|294635|294639|294643|294644|294646|294647|294648|294650|294652|294653|294657|294659|294678|294680|294699|294700|294713|294715|294716|295036|295037|295052|295054|295058|295061|295065|295066|295067|295068|295069|295073|295082|295084|295086|295087|295088|295089|583095|612428|620763|620764|888977|888978|888979|888980|888981|888982|888983|888984|888985|888986|888987|888988|888989|888990|888991|888992|888993|888994|888995|888996|888997|888998|888999|889000|889001|889002|889003|889004|889005|889006|889007|889008|889009|889010|889011|889012|889013|889014|889015|889016|889017|889018|889019|889020|889021|889022|889023|889024|889025|889026|889027|889028|889029|889030|889031|889032|889033|889034|889035|889036|891648|891649|961768|961769", "text": "Hyperglycinuria" }, { - "baseId": "17060|17423|19884", + "upstreamId": "17060|17423|19884", "text": "Iminoglycinuria, digenic" }, { - "baseId": "17061|17061|17062|17063|17066|17067|17068|17070|17071|17072|17073|17076|17077|17544|101670|101671|101673|101674|101675|101676|101677|101678|101679|101680|101681|101685|101685|101686|101687|101688|101689|101691|101692|101693|101695|101696|101697|101698|101699|101700|101701|101702|101703|101704|101705|101706|101707|101708|101709|101711|101712|101713|168589|168591|168592|168593|168594|168595|168597|168599|168601|168602|168603|168604|168606|168609|168610|168611|168613|168614|168615|168617|168618|168619|168620|168621|168622|168623|168623|168624|168625|168626|168627|168629|168630|168632|168633|168634|168635|168636|168637|168638|168640|176992|177386|177595|177602|186090|186091|190888|191582|191582|191709|191710|191828|192482|192483|192486|192487|192488|192489|192491|192494|193060|193139|193139|193342|193639|193870|193950|194031|194076|194077|194077|194174|194197|194198|194202|194203|195384|195384|196301|196302|207549|207550|207551|207553|207555|207556|207558|207559|207560|207561|207562|207563|212634|212635|212636|213580|215174|215372|215385|221760|221761|221762|221763|223369|227917|237524|240183|240392|240393|240394|240395|247033|252945|252947|252948|253149|253150|253158|253167|253168|253174|259903|262638|262639|262640|262641|262642|262643|262644|262645|262646|262647|262648|262648|262649|262650|262651|262652|262653|262654|262655|262656|262657|262658|262659|262660|262661|262662|262663|262664|262665|262666|264397|264411|265843|266798|266825|270747|271865|272720|275025|305618|305623|305633|305650|305652|305652|305662|305669|305672|305676|309529|309530|309550|309551|309564|309586|309627|309652|309666|309679|309713|314854|314860|314904|314906|314911|314912|314913|314916|314918|314924|314937|314940|314969|314978|315029|353841|359863|361191|361547|362385|370299|370306|371931|371942|390672|390691|396067|396169|396250|396259|396262|396534|396538|396539|396545|396549|396666|396667|396671|396674|396912|396920|396922|396928|405245|407403|407414|407426|407433|407437|408674|420428|420429|421685|424375|424563|425798|428849|434798|438510|456159|456960|456961|457493|457495|457501|457620|457910|457911|457929|457933|457934|457940|457942|458484|458486|458488|458488|458489|458490|458493|458496|458501|458565|458567|458569|458572|458581|458583|458971|458975|458976|458980|481211|481212|481213|481214|481215|481216|481217|481218|481219|481220|481221|481222|481223|481225|481235|481347|481348|481823|487402|490083|495395|502479|513977|514270|514575|522849|523069|523070|523175|523289|523292|523396|523406|523645|523649|523657|523659|523661|523664|523664|523670|523670|523672|523679|523969|523970|523971|523973|523984|523985|524237|524239|524246|524251|524252|524254|524256|524258|524259|524261|524262|524263|524264|524265|524265|524267|524272|524272|524273|524283|524285|537508|537829|537830|537831|537832|537833|537834|537835|537836|537837|537838|539430|550149|552125|552126|561770|561771|562220|562471|562471|562473|562478|562481|562483|562988|562992|562993|562994|562998|563010|563014|563017|563024|563037|563038|565180|565185|565191|565194|565198|565200|565200|565203|567144|567152|567154|567167|567997|568003|568006|568013|568015|568022|568032|568037|568045|568046|568051|578469|578470|579417|579450|579453|579454|579458|579459|579461|579468|579478|579614|579620|579651|581845|582466|583103|584199|588572|589840|590780|610693|610694|611398|611703|612822|614164|614324|614325|614514|615267|615268|622105|625871|625966|626022|636357|636358|636359|636360|636361|636362|636363|636364|636365|636366|636367|636368|636369|636370|637303|637304|637305|637306|637307|637308|637309|637310|637311|637312|637313|637314|637315|637316|637317|637318|637319|637320|637321|637322|637323|637324|637325|637326|637327|637328|637329|637330|637331|637332|637333|637334|637335|637336|637337|637338|637339|637340|637341|637342|637343|637344|637345|637346|637347|637348|637349|637350|637351|637352|637353|637354|637355|637356|637357|637358|651792|651795|651797|651906|651995|654513|677293|677294|677315|677321|677982|679761|679762|679763|682732|682810|682811|683941|684013|684014|684016|684019|684022|684024|685228|687120|687121|687122|687123|687124|687126|687127|687294|687295|687296|687297|687299|687300|687302|687303|687304|687305|687306|687307|687308|687309|687311|687313|687314|687315|689922|689924|692305|692309|692505|692508|692510|692511|692517|695393|695395|723156|759585|766412|777633|783140|783142|787561|788829|788954|790807|790808|790809|790810|790811|790812|792672|796082|805138|819971|819972|833855|833856|833857|833858|833859|833860|833861|833862|833863|833864|833865|833866|833867|833868|833869|833870|833871|833872|834920|834921|834922|834923|834924|834925|834926|834927|834928|834929|834930|834931|834932|834933|834934|834935|834936|834937|834938|834939|834940|834941|834942|834943|834944|834945|834946|834947|834948|834949|834950|834951|834952|834953|834954|834955|834956|834957|834958|834959|834960|834961|834962|834963|834964|834965|834966|834967|834968|834969|834970|834971|834972|834973|834974|834975|834976|834977|834978|834979|851207|851698|852142|852144|852146|859681|899879|903554|918296|918297|919163|919164|919165|919166|919167|919168|919169|919170|919171|920256|924913|924914|924915|925239|925240|925241|925242|925243|925244|925245|925246|925247|925248|925249|925250|925251|925252|934002|934003|934372|934373|934374|934375|934376|934377|934378|934379|934380|934381|934382|934383|934384|934385|934386|934387|934388|934389|934390|934391|934392|934393|934394|940110|940111|940909|940910|940911|945766|945767|945768|945769|945770|945771|945772|946137|946138|946139|946140|946141|946142|946143|946144|946145|946146|946147|946148|946149|946150|946151|946152|946153|946154|946155|946156|955219|955220|955221|955469|955470|955471|955472|955473|955474|955475|955476|955477|955478|955479|955480|955481|955482|955483|955484|955485|959866|959867|959897|959898|959899|960655|960656|961611|961955|964303|969282|969780|969782|969785|970883|970884|975664|980509", + "upstreamId": "17061|17061|17062|17063|17066|17067|17068|17070|17071|17072|17073|17076|17077|17544|101670|101671|101673|101674|101675|101676|101677|101678|101679|101680|101681|101685|101685|101686|101687|101688|101689|101691|101692|101693|101695|101696|101697|101698|101699|101700|101701|101702|101703|101704|101705|101706|101707|101708|101709|101711|101712|101713|168589|168591|168592|168593|168594|168595|168597|168599|168601|168602|168603|168604|168606|168609|168610|168611|168613|168614|168615|168617|168618|168619|168620|168621|168622|168623|168623|168624|168625|168626|168627|168629|168630|168632|168633|168634|168635|168636|168637|168638|168640|176992|177386|177595|177602|186090|186091|190888|191582|191582|191709|191710|191828|192482|192483|192486|192487|192488|192489|192491|192494|193060|193139|193139|193342|193639|193870|193950|194031|194076|194077|194077|194174|194197|194198|194202|194203|195384|195384|196301|196302|207549|207550|207551|207553|207555|207556|207558|207559|207560|207561|207562|207563|212634|212635|212636|213580|215174|215372|215385|221760|221761|221762|221763|223369|227917|237524|240183|240392|240393|240394|240395|247033|252945|252947|252948|253149|253150|253158|253167|253168|253174|259903|262638|262639|262640|262641|262642|262643|262644|262645|262646|262647|262648|262648|262649|262650|262651|262652|262653|262654|262655|262656|262657|262658|262659|262660|262661|262662|262663|262664|262665|262666|264397|264411|265843|266798|266825|270747|271865|272720|275025|305618|305623|305633|305650|305652|305652|305662|305669|305672|305676|309529|309530|309550|309551|309564|309586|309627|309652|309666|309679|309713|314854|314860|314904|314906|314911|314912|314913|314916|314918|314924|314937|314940|314969|314978|315029|353841|359863|361191|361547|362385|370299|370306|371931|371942|390672|390691|396067|396169|396250|396259|396262|396534|396538|396539|396545|396549|396666|396667|396671|396674|396912|396920|396922|396928|405245|407403|407414|407426|407433|407437|408674|420428|420429|421685|424375|424563|425798|428849|434798|438510|456159|456960|456961|457493|457495|457501|457620|457910|457911|457929|457933|457934|457940|457942|458484|458486|458488|458488|458489|458490|458493|458496|458501|458565|458567|458569|458572|458581|458583|458971|458975|458976|458980|481211|481212|481213|481214|481215|481216|481217|481218|481219|481220|481221|481222|481223|481225|481235|481347|481348|481823|487402|490083|495395|502479|513977|514270|514575|522849|523069|523070|523175|523289|523292|523396|523406|523645|523649|523657|523659|523661|523664|523664|523670|523670|523672|523679|523969|523970|523971|523973|523984|523985|524237|524239|524246|524251|524252|524254|524256|524258|524259|524261|524262|524263|524264|524265|524265|524267|524272|524272|524273|524283|524285|537508|537829|537830|537831|537832|537833|537834|537835|537836|537837|537838|539430|550149|552125|552126|561770|561771|562220|562471|562471|562473|562478|562481|562483|562988|562992|562993|562994|562998|563010|563014|563017|563024|563037|563038|565180|565185|565191|565194|565198|565200|565200|565203|567144|567152|567154|567167|567997|568003|568006|568013|568015|568022|568032|568037|568045|568046|568051|578469|578470|579417|579450|579453|579454|579458|579459|579461|579468|579478|579614|579620|579651|581845|582466|583103|584199|588572|589840|590780|610693|610694|611398|611703|612822|614164|614324|614325|614514|615267|615268|622105|625871|625966|626022|636357|636358|636359|636360|636361|636362|636363|636364|636365|636366|636367|636368|636369|636370|637303|637304|637305|637306|637307|637308|637309|637310|637311|637312|637313|637314|637315|637316|637317|637318|637319|637320|637321|637322|637323|637324|637325|637326|637327|637328|637329|637330|637331|637332|637333|637334|637335|637336|637337|637338|637339|637340|637341|637342|637343|637344|637345|637346|637347|637348|637349|637350|637351|637352|637353|637354|637355|637356|637357|637358|651792|651795|651797|651906|651995|654513|677293|677294|677315|677321|677982|679761|679762|679763|682732|682810|682811|683941|684013|684014|684016|684019|684022|684024|685228|687120|687121|687122|687123|687124|687126|687127|687294|687295|687296|687297|687299|687300|687302|687303|687304|687305|687306|687307|687308|687309|687311|687313|687314|687315|689922|689924|692305|692309|692505|692508|692510|692511|692517|695393|695395|723156|759585|766412|777633|783140|783142|787561|788829|788954|790807|790808|790809|790810|790811|790812|792672|796082|805138|819971|819972|833855|833856|833857|833858|833859|833860|833861|833862|833863|833864|833865|833866|833867|833868|833869|833870|833871|833872|834920|834921|834922|834923|834924|834925|834926|834927|834928|834929|834930|834931|834932|834933|834934|834935|834936|834937|834938|834939|834940|834941|834942|834943|834944|834945|834946|834947|834948|834949|834950|834951|834952|834953|834954|834955|834956|834957|834958|834959|834960|834961|834962|834963|834964|834965|834966|834967|834968|834969|834970|834971|834972|834973|834974|834975|834976|834977|834978|834979|851207|851698|852142|852144|852146|859681|899879|903554|918296|918297|919163|919164|919165|919166|919167|919168|919169|919170|919171|920256|924913|924914|924915|925239|925240|925241|925242|925243|925244|925245|925246|925247|925248|925249|925250|925251|925252|934002|934003|934372|934373|934374|934375|934376|934377|934378|934379|934380|934381|934382|934383|934384|934385|934386|934387|934388|934389|934390|934391|934392|934393|934394|940110|940111|940909|940910|940911|945766|945767|945768|945769|945770|945771|945772|946137|946138|946139|946140|946141|946142|946143|946144|946145|946146|946147|946148|946149|946150|946151|946152|946153|946154|946155|946156|955219|955220|955221|955469|955470|955471|955472|955473|955474|955475|955476|955477|955478|955479|955480|955481|955482|955483|955484|955485|959866|959867|959897|959898|959899|960655|960656|961611|961955|964303|969282|969780|969782|969785|970883|970884|975664|980509", "text": "CHARGE association" }, { - "baseId": "17061|17073|17074|17075|101670|101671|101674|101675|101678|101679|101681|101683|101685|101687|101688|101689|101691|101692|101693|101695|101696|101697|101698|101699|101700|101701|101702|101703|101704|101705|101707|101708|101709|101711|101713|168592|168608|168613|168621|168622|168623|168633|168639|177595|189028|191582|191828|192486|193139|193639|194076|194077|194174|194203|195384|195384|196301|207550|207556|240392|240393|253150|253174|260790|262560|262648|271380|271865|275025|305624|305627|305647|305650|305652|305652|305657|305662|305669|305671|305672|305683|305684|305697|305698|309528|309547|309565|309566|309568|309578|309586|309595|309597|309615|309624|309631|309637|309648|309652|309664|309666|309668|309679|309680|309688|309690|309702|309714|309718|314836|314868|314869|314870|314874|314875|314876|314899|314900|314904|314905|314913|314915|314918|314920|314923|314929|314930|314934|314936|314937|314939|314945|314960|314969|314973|314974|314975|314983|314984|315003|315011|315014|315015|315016|315017|315018|371931|371942|396922|407414|423254|458484|458488|502343|513071|523664|523670|523984|524237|524252|524265|524272|524273|562471|565200|579417|579453|579454|579649|611398|614324|614325|624149|637321|637339|637346|684014|684024|687299|687309|692518|793285|806423|834973|899855|899856|899857|899858|899859|899860|899861|899862|899863|899864|899865|899866|899867|899868|899869|899870|899871|899872|899873|899874|899875|899876|899877|899878|899879|899880|899881|899882|899883|899884|899885|899886|899887|899888|899889|899890|899891|899892|899893|899894|899895|899896|899897|899898|899899|899900|899901|900508|900509|961611", + "upstreamId": "17061|17073|17074|17075|101670|101671|101674|101675|101678|101679|101681|101683|101685|101687|101688|101689|101691|101692|101693|101695|101696|101697|101698|101699|101700|101701|101702|101703|101704|101705|101707|101708|101709|101711|101713|168592|168608|168613|168621|168622|168623|168633|168639|177595|189028|191582|191828|192486|193139|193639|194076|194077|194174|194203|195384|195384|196301|207550|207556|240392|240393|253150|253174|260790|262560|262648|271380|271865|275025|305624|305627|305647|305650|305652|305652|305657|305662|305669|305671|305672|305683|305684|305697|305698|309528|309547|309565|309566|309568|309578|309586|309595|309597|309615|309624|309631|309637|309648|309652|309664|309666|309668|309679|309680|309688|309690|309702|309714|309718|314836|314868|314869|314870|314874|314875|314876|314899|314900|314904|314905|314913|314915|314918|314920|314923|314929|314930|314934|314936|314937|314939|314945|314960|314969|314973|314974|314975|314983|314984|315003|315011|315014|315015|315016|315017|315018|371931|371942|396922|407414|423254|458484|458488|502343|513071|523664|523670|523984|524237|524252|524265|524272|524273|562471|565200|579417|579453|579454|579649|611398|614324|614325|624149|637321|637339|637346|684014|684024|687299|687309|692518|793285|806423|834973|899855|899856|899857|899858|899859|899860|899861|899862|899863|899864|899865|899866|899867|899868|899869|899870|899871|899872|899873|899874|899875|899876|899877|899878|899879|899880|899881|899882|899883|899884|899885|899886|899887|899888|899889|899890|899891|899892|899893|899894|899895|899896|899897|899898|899899|899900|899901|900508|900509|961611", "text": "Hypogonadotropic hypogonadism 5 with or without anosmia" }, { - "baseId": "17069", + "upstreamId": "17069", "text": "Scoliosis, idiopathic 3" }, { - "baseId": "17072", + "upstreamId": "17072", "text": "Hypogonadotropic hypogonadism 5 without anosmia" }, { - "baseId": "17078", + "upstreamId": "17078", "text": "PPARGC1B polymorphism" }, { - "baseId": "17079|17080|17081|17082|17083|17083|251300|251300|291791|291792|291793|291802|291802|291806|293133|296451|296453|296455|296466|354273|561830|631804|651246|685157|686472|781822|819427|828596|828597|828598|828599|889783|889784|889785|889786|889787|889788|889789|889790|889791|889792|891714|932095|932096|943720", + "upstreamId": "17079|17080|17081|17082|17083|17083|251300|251300|291791|291792|291793|291802|291802|291806|293133|296451|296453|296455|296466|354273|561830|631804|651246|685157|686472|781822|819427|828596|828597|828598|828599|889783|889784|889785|889786|889787|889788|889789|889790|889791|889792|891714|932095|932096|943720", "text": "Bardet-Biedl syndrome 3" }, { - "baseId": "17083|17084|251300|291802|561830|631804|651246|685157|686472|781822|819427|828596|828597|828598|828599|932095|932096|943720|965642", + "upstreamId": "17083|17084|251300|291802|561830|631804|651246|685157|686472|781822|819427|828596|828597|828598|828599|932095|932096|943720|965642", "text": "Retinitis pigmentosa 55" }, { - "baseId": "17085|17086|17087|17088|17089|17090|17091|17092|17093|17094|17095|17096|17097|17098|17100|152881|195036|195038|195039|199800|238071|238072|269446|321023|321024|321026|330122|336640|482052|528788|550250|612157|642639|642640|642641|642642|642643|652613|693561|702958|702959|702960|702961|725770|739288|739289|769878|778300|784749|784750|784752|791418|791419|791420|794252|794253|794254|794255|794256|794258|818306|841678|841679|841680|841681|841682|841683|841684|841685|841686|841687|841688|841689|841690|851575|856786|856787|856788|856790|919540|927151|936691|936692|936693|936694|936695|936696|948641|957270|957271|957272|957273|957274|960807|960808|965937|965938|965939|965940|965941|965942|965943|965944|965945", + "upstreamId": "17085|17086|17087|17088|17089|17090|17091|17092|17093|17094|17095|17096|17097|17098|17100|152881|195036|195038|195039|199800|238071|238072|269446|321023|321024|321026|330122|336640|482052|528788|550250|612157|642639|642640|642641|642642|642643|652613|693561|702958|702959|702960|702961|725770|739288|739289|769878|778300|784749|784750|784752|791418|791419|791420|794252|794253|794254|794255|794256|794258|818306|841678|841679|841680|841681|841682|841683|841684|841685|841686|841687|841688|841689|841690|851575|856786|856787|856788|856790|919540|927151|936691|936692|936693|936694|936695|936696|948641|957270|957271|957272|957273|957274|960807|960808|965937|965938|965939|965940|965941|965942|965943|965944|965945", "text": "Leber congenital amaurosis 13" }, { - "baseId": "17086|20264|21608|101737|101744|152872|205170|205460|259747|263389|417109|426811|431556|431656|431661|431735|431744|431769|431774|431785|431831|431834|431839|431849|431852|431877", + "upstreamId": "17086|20264|21608|101737|101744|152872|205170|205460|259747|263389|417109|426811|431556|431656|431661|431735|431744|431769|431774|431785|431831|431834|431839|431849|431852|431877", "text": "Abnormality of the eye" }, { - "baseId": "17086", + "upstreamId": "17086", "text": "RDH12-Related Disorders" }, { - "baseId": "17088|17403|21917|21918|75295|105181|205138|237652|237678|247774|247775|359177|359178|431847|488481|569886|642639|800449|800457|800471|800474|800481|800535|800554|800558|800559|800571|800581|800617|800618|800625|800693|800696|800707|800708", + "upstreamId": "17088|17403|21917|21918|75295|105181|205138|237652|237678|247774|247775|359177|359178|431847|488481|569886|642639|800449|800457|800471|800474|800481|800535|800554|800558|800559|800571|800581|800617|800618|800625|800693|800696|800707|800708", "text": "Cone-rod degeneration" }, { - "baseId": "17099|17100", + "upstreamId": "17099|17100", "text": "Retinitis pigmentosa 53" }, { - "baseId": "17101", + "upstreamId": "17101", "text": "Diabetes mellitus, insulin-dependent, 5" }, { - "baseId": "17102|17103|17104|17105|17109|207420", + "upstreamId": "17102|17103|17104|17105|17109|207420", "text": "Myoclonic Epilepsy, Juvenile, 1" }, { - "baseId": "17102|17103|17104|17106|22647|38421|101782|101782|134010|134011|134012|134407|134408|134409|134409|134410|134410|134411|134411|134412|134413|134414|134414|134415|134416|134417|134417|134418|134418|140354|140358|140359|140895|140895|140896|140896|140897|140898|140899|140899|140900|190285|190889|191506|193645|194994|196048|201269|201270|201851|201972|201973|201975|201977|201978|201979|201979|201980|201981|201982|201984|201988|201989|201991|201991|201993|201993|201995|201996|201997|201997|201998|202003|202003|202005|202005|202007|202008|202008|202009|202010|202011|202012|207419|268415|270295|271613|282202|282203|282204|282210|282211|282215|282225|282228|282238|282249|282262|282263|282264|282265|282273|282275|282285|282287|282291|282292|282867|282873|282884|282889|282890|282897|282908|282909|282910|282911|282912|282915|282916|282937|282940|282941|282942|282946|282949|282954|282983|282984|282985|282986|282987|282988|282989|282994|284475|284478|284479|284480|284481|284482|284486|284491|284492|284493|284498|284501|284503|284519|284520|284781|284799|284801|284803|284815|284818|284819|284822|284851|284852|284875|284876|284882|284883|284884|284885|284889|284892|284893|284898|284904|284921|284923|284924|284925|284930|284934|284935|285431|298623|300707|300708|300713|300714|300719|300721|300722|300723|300734|300738|300739|300751|300752|302845|303045|303061|303064|303627|303628|303629|303632|303633|303635|303651|303652|303659|303660|303670|303671|303672|303675|303677|303678|308173|308174|308174|308180|308182|308199|308201|308210|308222|308225|308226|308231|308233|308236|308237|308238|308239|308240|308241|308242|308245|308250|308251|308252|308253|308263|308267|353540|368987|370496|389791|395192|395194|395421|395552|395557|395841|395842|445828|455651|455654|455845|455849|456246|456250|521697|521700|522042|522046|522051|522071|522073|522392|522396|522399|522407|560748|560750|560752|560755|560761|560880|560881|560888|560890|560896|560897|560903|565718|565718|565738|565747|634982|634983|634984|634985|634986|634987|634988|634989|634990|634991|634992|634993|634994|634995|634996|634997|634998|634999|635000|635001|635002|686900|686901|686902|692012|710557|722069|777747|790532|790533|818378|818381|819699|819700|821936|821937|821938|822261|832037|832038|832039|832040|832041|832042|832043|832044|832045|832046|832047|832048|832049|832050|832051|832052|832053|832054|832055|832056|832057|832058|832059|832060|832061|832062|832063|851078|924380|924381|933357|933358|933359|933360|933361|933362|933363|933364|945065|945066|945067|945068|945069|945070|954500|954501|954502|954503", + "upstreamId": "17102|17103|17104|17106|22647|38421|101782|101782|134010|134011|134012|134407|134408|134409|134409|134410|134410|134411|134411|134412|134413|134414|134414|134415|134416|134417|134417|134418|134418|140354|140358|140359|140895|140895|140896|140896|140897|140898|140899|140899|140900|190285|190889|191506|193645|194994|196048|201269|201270|201851|201972|201973|201975|201977|201978|201979|201979|201980|201981|201982|201984|201988|201989|201991|201991|201993|201993|201995|201996|201997|201997|201998|202003|202003|202005|202005|202007|202008|202008|202009|202010|202011|202012|207419|268415|270295|271613|282202|282203|282204|282210|282211|282215|282225|282228|282238|282249|282262|282263|282264|282265|282273|282275|282285|282287|282291|282292|282867|282873|282884|282889|282890|282897|282908|282909|282910|282911|282912|282915|282916|282937|282940|282941|282942|282946|282949|282954|282983|282984|282985|282986|282987|282988|282989|282994|284475|284478|284479|284480|284481|284482|284486|284491|284492|284493|284498|284501|284503|284519|284520|284781|284799|284801|284803|284815|284818|284819|284822|284851|284852|284875|284876|284882|284883|284884|284885|284889|284892|284893|284898|284904|284921|284923|284924|284925|284930|284934|284935|285431|298623|300707|300708|300713|300714|300719|300721|300722|300723|300734|300738|300739|300751|300752|302845|303045|303061|303064|303627|303628|303629|303632|303633|303635|303651|303652|303659|303660|303670|303671|303672|303675|303677|303678|308173|308174|308174|308180|308182|308199|308201|308210|308222|308225|308226|308231|308233|308236|308237|308238|308239|308240|308241|308242|308245|308250|308251|308252|308253|308263|308267|353540|368987|370496|389791|395192|395194|395421|395552|395557|395841|395842|445828|455651|455654|455845|455849|456246|456250|521697|521700|522042|522046|522051|522071|522073|522392|522396|522399|522407|560748|560750|560752|560755|560761|560880|560881|560888|560890|560896|560897|560903|565718|565718|565738|565747|634982|634983|634984|634985|634986|634987|634988|634989|634990|634991|634992|634993|634994|634995|634996|634997|634998|634999|635000|635001|635002|686900|686901|686902|692012|710557|722069|777747|790532|790533|818378|818381|819699|819700|821936|821937|821938|822261|832037|832038|832039|832040|832041|832042|832043|832044|832045|832046|832047|832048|832049|832050|832051|832052|832053|832054|832055|832056|832057|832058|832059|832060|832061|832062|832063|851078|924380|924381|933357|933358|933359|933360|933361|933362|933363|933364|945065|945066|945067|945068|945069|945070|954500|954501|954502|954503", "text": "Juvenile myoclonic epilepsy" }, { - "baseId": "17103|17106|38421|101782|134407|134408|134409|134410|134411|134412|134414|134417|134418|140895|140896|140897|140898|140899|140900|190889|193645|194994|196048|201972|201977|201978|201979|201981|201984|201988|201991|201993|201995|201996|201997|201998|202003|202005|202007|202008|202011|207419|270295|271613|308174|368987|370496|389791|395194|395421|395552|395557|455845|455849|456250|522042|522046|522071|522073|522407|560752|565718|565738|634983|634992|634994|634996|635000|686900|686901|686902|692012|710557|722069|777747|819699|819700|821936|821937|821938|822261|832037|832038|832039|832040|832041|832042|832043|832044|832045|832046|832047|832048|832049|832050|832051|832052|832053|832054|832055|832056|832057|832058|832059|832060|832061|832062|832063|851078|924380|924381|933357|933358|933359|933360|933361|933362|933363|933364|945065|945066|945067|945068|945069|945070|954500|954501|954502|954503", + "upstreamId": "17103|17106|38421|101782|134407|134408|134409|134410|134411|134412|134414|134417|134418|140895|140896|140897|140898|140899|140900|190889|193645|194994|196048|201972|201977|201978|201979|201981|201984|201988|201991|201993|201995|201996|201997|201998|202003|202005|202007|202008|202011|207419|270295|271613|308174|368987|370496|389791|395194|395421|395552|395557|455845|455849|456250|522042|522046|522071|522073|522407|560752|565718|565738|634983|634992|634994|634996|635000|686900|686901|686902|692012|710557|722069|777747|819699|819700|821936|821937|821938|822261|832037|832038|832039|832040|832041|832042|832043|832044|832045|832046|832047|832048|832049|832050|832051|832052|832053|832054|832055|832056|832057|832058|832059|832060|832061|832062|832063|851078|924380|924381|933357|933358|933359|933360|933361|933362|933363|933364|945065|945066|945067|945068|945069|945070|954500|954501|954502|954503", "text": "Typical absence seizures" }, { - "baseId": "17107|17108|134410|201975|201979|201980|201982|201993|201997|202012|268415|395192|395841|395842|455651|455654|456246|521697|521700|522051|522392|522396|522399|560748|560750|560755|560761|560880|560881|560888|560890|560896|560897|560903|565718|565747|634982|634984|634985|634986|634987|634988|634989|634990|634991|634993|634995|634997|634998|634999|635001|635002", + "upstreamId": "17107|17108|134410|201975|201979|201980|201982|201993|201997|202012|268415|395192|395841|395842|455651|455654|456246|521697|521700|522051|522392|522396|522399|560748|560750|560755|560761|560880|560881|560888|560890|560896|560897|560903|565718|565747|634982|634984|634985|634986|634987|634988|634989|634990|634991|634993|634995|634997|634998|634999|635001|635002", "text": "Epilepsy, juvenile absence, susceptibility to, 1" }, { - "baseId": "17110|17111|17112|17113|17114|17115|17116|39716|75257|143207|260933|264773|264778|427721|439182|439182|622311|627401|683308|789107|789938|789939|858698|861132|861134|861137|921275|969126|969128|970140|971518", + "upstreamId": "17110|17111|17112|17113|17114|17115|17116|39716|75257|143207|260933|264773|264778|427721|439182|439182|622311|627401|683308|789107|789938|789939|858698|861132|861134|861137|921275|969126|969128|970140|971518", "text": "Leukodystrophy, hypomyelinating, 2" }, { - "baseId": "17117|434566|439182|918614", + "upstreamId": "17117|434566|439182|918614", "text": "Spastic paraplegia 44, autosomal recessive" }, { - "baseId": "17118|17119|439182", + "upstreamId": "17118|17119|439182", "text": "Lymphatic malformation 3" }, { - "baseId": "17120|17121|17122|17123|17124|17125|17126|17127|17128|98436|98437|98438|98440|98443|177296|187035|187036|187037|187038|187039|187040|187041|187042|187043|187044|187045|189178|189179|189180|190724|190725|190961|190962|191139|195557|205029|205030|223592|223593|223594|223595|223596|223597|228219|237278|237297|237513|237514|237515|237516|237752|256782|270210|270478|272485|332698|342852|342861|342865|342869|342870|348213|349416|349417|358586|358587|358588|358589|358590|358591|358592|358593|358594|358595|358596|358597|358598|358599|358600|358601|358602|358603|361321|376167|376170|377186|377192|377194|377198|377199|377203|379279|410475|422235|422236|422238|424376|425226|468492|468496|468497|468501|469399|469400|469402|469404|469812|487990|488039|488041|506733|507122|507495|507502|507508|507511|513374|514843|532707|532710|532724|532747|532756|533135|533136|548698|548702|548703|548704|548705|548707|548708|548709|548711|548714|548718|548719|548720|548722|548723|548724|548726|548727|548729|548734|548735|548738|549070|549080|549084|549089|549092|549097|549099|549101|549103|549111|549112|549115|549116|549331|549332|549333|549334|549335|549336|549337|549338|549339|549340|549341|549342|570509|570510|572230|572922|572925|574878|613624|613625|613626|613627|613628|622854|622855|623164|623165|647708|647709|647710|647711|647712|647713|647714|647715|647716|647717|647718|653601|679214|694331|694332|694333|695810|704759|716183|727910|727911|741588|741590|741591|756720|756721|756722|772419|772420|772421|772423|772425|776553|786064|786066|788198|788257|789104|791896|791897|801737|847307|847308|847309|847310|847311|847312|847313|847314|847315|847316|847317|847318|847319|847320|847321|852308|879986|879987|879988|879989|879990|879991|879992|879993|879994|879995|879996|879997|879999|880702|919822|928855|928856|928857|928858|928859|928860|940471|950677|950678|950679|950680|950681|950682|958541|958542|958543|958544|960283|965657|972327|972328|972329|972330|972331|972332|972333|972334|979971|980387", + "upstreamId": "17120|17121|17122|17123|17124|17125|17126|17127|17128|98436|98437|98438|98440|98443|177296|187035|187036|187037|187038|187039|187040|187041|187042|187043|187044|187045|189178|189179|189180|190724|190725|190961|190962|191139|195557|205029|205030|223592|223593|223594|223595|223596|223597|228219|237278|237297|237513|237514|237515|237516|237752|256782|270210|270478|272485|332698|342852|342861|342865|342869|342870|348213|349416|349417|358586|358587|358588|358589|358590|358591|358592|358593|358594|358595|358596|358597|358598|358599|358600|358601|358602|358603|361321|376167|376170|377186|377192|377194|377198|377199|377203|379279|410475|422235|422236|422238|424376|425226|468492|468496|468497|468501|469399|469400|469402|469404|469812|487990|488039|488041|506733|507122|507495|507502|507508|507511|513374|514843|532707|532710|532724|532747|532756|533135|533136|548698|548702|548703|548704|548705|548707|548708|548709|548711|548714|548718|548719|548720|548722|548723|548724|548726|548727|548729|548734|548735|548738|549070|549080|549084|549089|549092|549097|549099|549101|549103|549111|549112|549115|549116|549331|549332|549333|549334|549335|549336|549337|549338|549339|549340|549341|549342|570509|570510|572230|572922|572925|574878|613624|613625|613626|613627|613628|622854|622855|623164|623165|647708|647709|647710|647711|647712|647713|647714|647715|647716|647717|647718|653601|679214|694331|694332|694333|695810|704759|716183|727910|727911|741588|741590|741591|756720|756721|756722|772419|772420|772421|772423|772425|776553|786064|786066|788198|788257|789104|791896|791897|801737|847307|847308|847309|847310|847311|847312|847313|847314|847315|847316|847317|847318|847319|847320|847321|852308|879986|879987|879988|879989|879990|879991|879992|879993|879994|879995|879996|879997|879999|880702|919822|928855|928856|928857|928858|928859|928860|940471|950677|950678|950679|950680|950681|950682|958541|958542|958543|958544|960283|965657|972327|972328|972329|972330|972331|972332|972333|972334|979971|980387", "text": "Glutaric aciduria, type 1" }, { - "baseId": "17129|17130|17131|17132|54005|54006|54007|54008|54009|54010|54011|54012|54013|54014|54015|174084|174085|174088|174089|227308|229594|302579|302580|302584|302586|302600|302608|302610|302614|302616|302617|305960|305962|305963|305966|305967|305968|305981|305986|305987|305989|305990|305993|310680|310682|310683|310689|310690|310692|310709|310710|310715|310961|310962|310963|310964|310976|496491|513971|897923|897924|897925|897926|897927|897928|897929|897930|897931|897932|897933|897934|897935|897936|900350", + "upstreamId": "17129|17130|17131|17132|54005|54006|54007|54008|54009|54010|54011|54012|54013|54014|54015|174084|174085|174088|174089|227308|229594|302579|302580|302584|302586|302600|302608|302610|302614|302616|302617|305960|305962|305963|305966|305967|305968|305981|305986|305987|305989|305990|305993|310680|310682|310683|310689|310690|310692|310709|310710|310715|310961|310962|310963|310964|310976|496491|513971|897923|897924|897925|897926|897927|897928|897929|897930|897931|897932|897933|897934|897935|897936|900350", "text": "Deafness, autosomal dominant 5" }, { - "baseId": "17133|17134|17135|17136|17137|17138|17139|17140|17141|34071|34072|34073|34074|34075|34076|34077|34078|34079|34080|34081|34082|135325|142281|142282|142283|142284|142286|142288|200186|200187|200188|200189|200190|200192|200200|200201|200202|200203|200205|200208|200209|200210|200212|200213|200214|200215|200216|314816|314820|314823|314825|314837|321550|321553|321559|321562|321571|321572|321574|321575|327657|327660|327664|327666|327670|327673|327674|327681|328744|328747|328749|328750|328760|328762|328766|328772|328773|328774|371632|372332|372333|372336|372540|372550|372554|372558|374215|415297|429287|442480|480411|503405|503725|503936|503951|526728|546167|546176|546179|546184|546186|546479|546480|546484|546601|546603|546606|546609|546613|546830|546832|546834|549979|566110|570902|578493|609806|620835|622406|640366|640367|640368|640369|640370|640371|640372|665984|713095|724659|724660|724661|724662|730794|738202|738203|738204|738205|738206|738207|738208|738209|738210|738211|744554|752867|752868|752869|752870|752871|752872|752873|752874|752875|760033|760036|768652|768655|768656|768657|768658|768660|768661|768663|768664|768665|768667|768668|768669|768670|768671|775867|778163|784115|784119|784121|784123|784126|784128|784130|787699|787710|791158|868355|868356|868357|868358|868359|868360|868361|868362|868363|868364|868365|868366|868367|868368|868369|868370|868371|868372|868373|868374|868375|868376|868377|868675|868676|868677|868678|868679|868680|868681|868682|919384|919385|926359|935713|935714|940231|941010|956609|956610|956611|956612|956613|964847|970228", + "upstreamId": "17133|17134|17135|17136|17137|17138|17139|17140|17141|34071|34072|34073|34074|34075|34076|34077|34078|34079|34080|34081|34082|135325|142281|142282|142283|142284|142286|142288|200186|200187|200188|200189|200190|200192|200200|200201|200202|200203|200205|200208|200209|200210|200212|200213|200214|200215|200216|314816|314820|314823|314825|314837|321550|321553|321559|321562|321571|321572|321574|321575|327657|327660|327664|327666|327670|327673|327674|327681|328744|328747|328749|328750|328760|328762|328766|328772|328773|328774|371632|372332|372333|372336|372540|372550|372554|372558|374215|415297|429287|442480|480411|503405|503725|503936|503951|526728|546167|546176|546179|546184|546186|546479|546480|546484|546601|546603|546606|546609|546613|546830|546832|546834|549979|566110|570902|578493|609806|620835|622406|640366|640367|640368|640369|640370|640371|640372|665984|713095|724659|724660|724661|724662|730794|738202|738203|738204|738205|738206|738207|738208|738209|738210|738211|744554|752867|752868|752869|752870|752871|752872|752873|752874|752875|760033|760036|768652|768655|768656|768657|768658|768660|768661|768663|768664|768665|768667|768668|768669|768670|768671|775867|778163|784115|784119|784121|784123|784126|784128|784130|787699|787710|791158|868355|868356|868357|868358|868359|868360|868361|868362|868363|868364|868365|868366|868367|868368|868369|868370|868371|868372|868373|868374|868375|868376|868377|868675|868676|868677|868678|868679|868680|868681|868682|919384|919385|926359|935713|935714|940231|941010|956609|956610|956611|956612|956613|964847|970228", "text": "Pyruvate carboxylase deficiency" }, { - "baseId": "17142|17143|578443|963441|963442|963443", + "upstreamId": "17142|17143|578443|963441|963442|963443", "text": "Trichothiodystrophy 3, photosensitive" }, { - "baseId": "17144", + "upstreamId": "17144", "text": "Dopamine receptor d2, reduced brain density of" }, { - "baseId": "17144|24577", + "upstreamId": "17144|24577", "text": "ethanol response - Toxicity/ADR" }, { - "baseId": "17144|227797|227815", + "upstreamId": "17144|227797|227815", "text": "clozapine response - Toxicity/ADR" }, { - "baseId": "17144", + "upstreamId": "17144", "text": "bupropion response - Efficacy" }, { - "baseId": "17144|227797|227815", + "upstreamId": "17144|227797|227815", "text": "olanzapine response - Toxicity/ADR" }, { - "baseId": "17144|227765|227796|227814|227815", + "upstreamId": "17144|227765|227796|227814|227815", "text": "antipsychotics response - Toxicity/ADR" }, { - "baseId": "17144|227797|227815", + "upstreamId": "17144|227797|227815", "text": "risperidone response - Toxicity/ADR" }, { - "baseId": "17145|17146|17147|241241|241242|241243|241244|241245|241246|398456|398477|398486|398492|398526|398527|398844|398845|398847|398971|418971|425952|434766|461636|461640|461642|461644|461770|461858|462193|462195|462199|462433|462433|462434|462437|526688|526693|526931|527254|527261|527262|565058|565069|565077|566356|566362|567681|567683|571282|571283|588709|611408|611409|640644|640645|640646|640647|640648|652650|684289|684293|684294|684296|684297|684298|684299|684302|684303|684304|687902|695551|702149|724906|738461|784277|784278|784280|789405|820446|822057|839337|839338|839339|839340|839341|839342|839343|839344|852657|926471|926472|935925|935926|935927|947792|947793|956752|956753|961617", + "upstreamId": "17145|17146|17147|241241|241242|241243|241244|241245|241246|398456|398477|398486|398492|398526|398527|398844|398845|398847|398971|418971|425952|434766|461636|461640|461642|461644|461770|461858|462193|462195|462199|462433|462433|462434|462437|526688|526693|526931|527254|527261|527262|565058|565069|565077|566356|566362|567681|567683|571282|571283|588709|611408|611409|640644|640645|640646|640647|640648|652650|684289|684293|684294|684296|684297|684298|684299|684302|684303|684304|687902|695551|702149|724906|738461|784277|784278|784280|789405|820446|822057|839337|839338|839339|839340|839341|839342|839343|839344|852657|926471|926472|935925|935926|935927|947792|947793|956752|956753|961617", "text": "Transposition of the great arteries, dextro-looped 1" }, { - "baseId": "17148|17149|140788|140789|140790|140792|140793|140794|205266|211483|211485|312369|325111|361584|372166|425901|429171|512847|525969|525972|538418|620385|752424|752425|820427|837945|837946|837947|919318|947300|947301", + "upstreamId": "17148|17149|140788|140789|140790|140792|140793|140794|205266|211483|211485|312369|325111|361584|372166|425901|429171|512847|525969|525972|538418|620385|752424|752425|820427|837945|837946|837947|919318|947300|947301", "text": "Pyruvate dehydrogenase E2 deficiency" }, { - "baseId": "17150|17151|17152|17153|17154|17155|17156|17157|17158|39709|142357|142359|142360|142361|142362|142363|142365|142366|142367|142368|142369|171910|211519|211521|211522|211524|211526|211527|211531|211534|266574|270374|270583|270584|270585|313943|313944|313946|313947|313949|313950|313960|313965|313967|313974|313975|313976|313980|320291|320293|320297|320299|320311|320313|320315|320324|320325|320330|320335|320345|326299|326304|326309|326313|326314|326326|326327|326333|326334|326344|326346|327358|327359|327369|327373|327376|327377|408337|482271|620399|759998|867870|867871|867872|867873|867874|867875|867876|867877|867878|867879|867880|867881|867882|867883|867884|867885|919356|919357", + "upstreamId": "17150|17151|17152|17153|17154|17155|17156|17157|17158|39709|142357|142359|142360|142361|142362|142363|142365|142366|142367|142368|142369|171910|211519|211521|211522|211524|211526|211527|211531|211534|266574|270374|270583|270584|270585|313943|313944|313946|313947|313949|313950|313960|313965|313967|313974|313975|313976|313980|320291|320293|320297|320299|320311|320313|320315|320324|320325|320330|320335|320345|326299|326304|326309|326313|326314|326326|326327|326333|326334|326344|326346|327358|327359|327369|327373|327376|327377|408337|482271|620399|759998|867870|867871|867872|867873|867874|867875|867876|867877|867878|867879|867880|867881|867882|867883|867884|867885|919356|919357", "text": "Pyruvate dehydrogenase E3-binding protein deficiency" }, { - "baseId": "17159|17159|195798|208414|208416|208419|208420|486768|552207|625982", + "upstreamId": "17159|17159|195798|208414|208416|208419|208420|486768|552207|625982", "text": "Pontocerebellar hypoplasia type 2A" }, { - "baseId": "17159|169400|169404|169408|169410|169411|169412|169415|169417", + "upstreamId": "17159|169400|169404|169408|169410|169411|169412|169415|169417", "text": "Olivopontocerebellar hypoplasia" }, { - "baseId": "17159|17159|17161|17162|38422|39708|102564|102567|169409|195798|208414|486768|552207", + "upstreamId": "17159|17159|17161|17162|38422|39708|102564|102567|169409|195798|208414|486768|552207", "text": "Pontocerebellar hypoplasia type 4" }, { - "baseId": "17159|17161|178840|195798|208414|919770", + "upstreamId": "17159|17161|178840|195798|208414|919770", "text": "Pontocerebellar hypoplasia type 5" }, { - "baseId": "17159|18235|21235|21826|21979|22501|23434|25099|26019|26767|39058|48983|65676|77012|79451|99015|99447|132972|133661|137296|137449|137941|151908|166525|170145|171866|171866|171867|171874|177103|178415|181164|181417|181418|181423|181431|181440|181447|181456|201030|201142|201184|210519|214881|214882|226497|243988|243988|247055|263250|263257|263279|263302|268582|268631|279874|280440|280550|288723|294012|315393|319879|326608|326850|328175|329767|334331|334553|340102|342025|342289|346923|351979|354286|354287|354288|359349|360812|360923|360957|361137|361150|363728|369878|389111|389112|389113|389158|389163|389193|389194|398391|400086|400370|401909|422187|426097|444151|454760|467355|478363|513945|513949|513958|513961|513984|514013|514032|514109|514137|514213|514282|540880|548618|556790|571602|590046|590093|610521|613534|613536|613536|613537|613537|623671|623782|623783|625828|625988|626420|627663|648728|656512|672009|676961|676968|677265|679688|684936|686553|704290|709709|712134|722118|724494|739622|746128|748554|768844|784007|784152|792733|799162|801082|801084|801105|801167|801257|801768|801769|801770|801771|801772|801773|801774|801775|801776|801777|801778|801779|801780|801781|801782|801783|801784|801785|801786|801787|801788|801789|801790|801791|801792|801793|801794|801795|801796|801797|801798|801799|801800|801801|801802|801803|801804|801805|801806|801807|801808|801809|801810|801811|801812|801813|801814|801815|801816|801817|801818|801819|801820|801821|801822|801823|801824|801825|801826|801827|801828|801829|801830|801831|801832|801833|801834|801835|801836|801837|801838|801839|801840|801841|801842|801843|801844|801845|801846|801847|801848|801849|801850|801851|801852|801853|801854|801855|801856|801857|801858|801859|801860|801861|801862|801863|801864|801865|801866|801867|801868|801869|801870|801871|801872|801873|801874|801875|801876|801877|801878|801879|801880|801881|801882|801883|801884|801885|801886|801887|801888|801889|801890|801891|801892|801893|801894|801895|801896|801897|801898|801899|801900|801901|801902|801903|801904|801905|801906|801907|801908|801909|801910|801911|801912|801913|801914|801915|801916|801917|801918|801919|801920|801921|801922|801923|801924|801925|801926|801927|801928|801929|801930|801931|801932|801933|801934|801935|801936|801937|801938|801939|801940|801941|801942|801943|801944|801945|801946|801947|801948|801949|801950|801951|801952|801953|801954|801955|801956|801957|801958|801959|801960|801961|801962|801963|801964|801965|801966|801967|858271|858513|861144|921245|961911|963085|963086|963087|965446|965462|965560|970283|980554|980659|980683|980731|983725|983747|983851", + "upstreamId": "17159|18235|21235|21826|21979|22501|23434|25099|26019|26767|39058|48983|65676|77012|79451|99015|99447|132972|133661|137296|137449|137941|151908|166525|170145|171866|171866|171867|171874|177103|178415|181164|181417|181418|181423|181431|181440|181447|181456|201030|201142|201184|210519|214881|214882|226497|243988|243988|247055|263250|263257|263279|263302|268582|268631|279874|280440|280550|288723|294012|315393|319879|326608|326850|328175|329767|334331|334553|340102|342025|342289|346923|351979|354286|354287|354288|359349|360812|360923|360957|361137|361150|363728|369878|389111|389112|389113|389158|389163|389193|389194|398391|400086|400370|401909|422187|426097|444151|454760|467355|478363|513945|513949|513958|513961|513984|514013|514032|514109|514137|514213|514282|540880|548618|556790|571602|590046|590093|610521|613534|613536|613536|613537|613537|623671|623782|623783|625828|625988|626420|627663|648728|656512|672009|676961|676968|677265|679688|684936|686553|704290|709709|712134|722118|724494|739622|746128|748554|768844|784007|784152|792733|799162|801082|801084|801105|801167|801257|801768|801769|801770|801771|801772|801773|801774|801775|801776|801777|801778|801779|801780|801781|801782|801783|801784|801785|801786|801787|801788|801789|801790|801791|801792|801793|801794|801795|801796|801797|801798|801799|801800|801801|801802|801803|801804|801805|801806|801807|801808|801809|801810|801811|801812|801813|801814|801815|801816|801817|801818|801819|801820|801821|801822|801823|801824|801825|801826|801827|801828|801829|801830|801831|801832|801833|801834|801835|801836|801837|801838|801839|801840|801841|801842|801843|801844|801845|801846|801847|801848|801849|801850|801851|801852|801853|801854|801855|801856|801857|801858|801859|801860|801861|801862|801863|801864|801865|801866|801867|801868|801869|801870|801871|801872|801873|801874|801875|801876|801877|801878|801879|801880|801881|801882|801883|801884|801885|801886|801887|801888|801889|801890|801891|801892|801893|801894|801895|801896|801897|801898|801899|801900|801901|801902|801903|801904|801905|801906|801907|801908|801909|801910|801911|801912|801913|801914|801915|801916|801917|801918|801919|801920|801921|801922|801923|801924|801925|801926|801927|801928|801929|801930|801931|801932|801933|801934|801935|801936|801937|801938|801939|801940|801941|801942|801943|801944|801945|801946|801947|801948|801949|801950|801951|801952|801953|801954|801955|801956|801957|801958|801959|801960|801961|801962|801963|801964|801965|801966|801967|858271|858513|861144|921245|961911|963085|963086|963087|965446|965462|965560|970283|980554|980659|980683|980731|983725|983747|983851", "text": "Microcephaly" }, { - "baseId": "17159|21235|22745|22745|25040|33995|100016|132609|136147|136149|136150|136151|136152|136153|136155|136156|136158|136159|136161|181399|191375|192361|196242|200983|200986|204050|207089|207711|207713|207717|207719|263284|272060|274730|307964|307965|307970|307972|307974|307975|307981|307986|307987|307989|307990|307992|307993|307997|312309|312311|312323|312326|312327|312337|312339|312341|312342|317994|318001|318004|318005|318006|318007|318020|318033|318035|318047|318559|318563|318566|318569|318574|318586|318591|318598|367600|379257|421712|434634|490210|514137|514138|514213|621017|621018|621020|621021|621024|621025|621026|621027|621031|621033|621035|621036|621037|621038|621039|621040|621041|624841|682313|682315|801165|801225|967144", + "upstreamId": "17159|21235|22745|22745|25040|33995|100016|132609|136147|136149|136150|136151|136152|136153|136155|136156|136158|136159|136161|181399|191375|192361|196242|200983|200986|204050|207089|207711|207713|207717|207719|263284|272060|274730|307964|307965|307970|307972|307974|307975|307981|307986|307987|307989|307990|307992|307993|307997|312309|312311|312323|312326|312327|312337|312339|312341|312342|317994|318001|318004|318005|318006|318007|318020|318033|318035|318047|318559|318563|318566|318569|318574|318586|318591|318598|367600|379257|421712|434634|490210|514137|514138|514213|621017|621018|621020|621021|621024|621025|621026|621027|621031|621033|621035|621036|621037|621038|621039|621040|621041|624841|682313|682315|801165|801225|967144", "text": "Congenital cerebellar hypoplasia" }, { - "baseId": "17159|361099", + "upstreamId": "17159|361099", "text": "Amblyopia" }, { - "baseId": "17159|426751|514138", + "upstreamId": "17159|426751|514138", "text": "Hypertonia" }, { - "baseId": "17159|101293|102069|102562|102563|102564|102565|102566|102567|134470|135541|141452|141453|141454|141455|141456|141457|141458|141459|141461|141462|141463|168082|168086|168087|168088|168089|168093|168095|168096|168097|169402|169406|169409|169410|169413|169414|169415|169416|169604|169605|169607|178107|190930|194562|195429|196096|196098|207036|208414|208418|208624|211268|211274|257208|271314|288534|288539|288541|288543|288544|288548|288549|289283|289300|289302|289306|289307|289308|289309|292259|292260|292265|292271|292275|292276|292280|292282|292283|292284|292295|292313|292407|292408|292410|292415|292416|292428|292432|292437|292438|292439|292441|292454|292457|293243|293268|294605|294606|298111|298127|298225|298237|298240|301220|304351|304355|304359|308980|312824|329821|329822|329823|329827|329829|329832|331247|331250|334276|334279|334281|334283|334296|334297|334309|340123|340125|340134|340135|340148|340152|340154|344219|344221|344223|344227|344228|344231|344233|344234|344236|344239|345840|345843|345844|345845|345846|345849|347220|349358|349361|349362|349365|349366|349369|349370|349373|350378|350379|350382|350383|350386|350387|350390|350391|353314|353454|353521|353522|353613|353798|379665|384448|384449|384450|422199|500014|507174|620101|620647|747946|793702|798920|861668|878419|878420|878421|878422|878423|878424|878425|878426|878427|878428|878429|878430|878431|878432|878433|880577|880578|882476|882477|882478|882479|882480|882481|882482|882483|882484|882485|882486|882487|882488|882489|882490|882491|882492|882493|887820|887821|887822|887823|887824|887825|887826|887827|887828|887829|887830|887831|887832|887833|887834|887835|891558", + "upstreamId": "17159|101293|102069|102562|102563|102564|102565|102566|102567|134470|135541|141452|141453|141454|141455|141456|141457|141458|141459|141461|141462|141463|168082|168086|168087|168088|168089|168093|168095|168096|168097|169402|169406|169409|169410|169413|169414|169415|169416|169604|169605|169607|178107|190930|194562|195429|196096|196098|207036|208414|208418|208624|211268|211274|257208|271314|288534|288539|288541|288543|288544|288548|288549|289283|289300|289302|289306|289307|289308|289309|292259|292260|292265|292271|292275|292276|292280|292282|292283|292284|292295|292313|292407|292408|292410|292415|292416|292428|292432|292437|292438|292439|292441|292454|292457|293243|293268|294605|294606|298111|298127|298225|298237|298240|301220|304351|304355|304359|308980|312824|329821|329822|329823|329827|329829|329832|331247|331250|334276|334279|334281|334283|334296|334297|334309|340123|340125|340134|340135|340148|340152|340154|344219|344221|344223|344227|344228|344231|344233|344234|344236|344239|345840|345843|345844|345845|345846|345849|347220|349358|349361|349362|349365|349366|349369|349370|349373|350378|350379|350382|350383|350386|350387|350390|350391|353314|353454|353521|353522|353613|353798|379665|384448|384449|384450|422199|500014|507174|620101|620647|747946|793702|798920|861668|878419|878420|878421|878422|878423|878424|878425|878426|878427|878428|878429|878430|878431|878432|878433|880577|880578|882476|882477|882478|882479|882480|882481|882482|882483|882484|882485|882486|882487|882488|882489|882490|882491|882492|882493|887820|887821|887822|887823|887824|887825|887826|887827|887828|887829|887830|887831|887832|887833|887834|887835|891558", "text": "Pontoneocerebellar hypoplasia" }, { - "baseId": "17163|169606|208624|791960", + "upstreamId": "17163|169606|208624|791960", "text": "Pontocerebellar hypoplasia type 2C" }, { - "baseId": "17164|168087|168090|168091|168093|168094|168097|178837|178838|178839|207034|207038|486741|486742", + "upstreamId": "17164|168087|168090|168091|168093|168094|168097|178837|178838|178839|207034|207038|486741|486742", "text": "Pontocerebellar hypoplasia type 2B" }, { - "baseId": "17165|177836|191707|193723|194518|195432|272280|312750|312754|312755|312766|312767|312770|312772|312776|312778|312779|312783|312784|312789|312795|312796|312801|312802|318744|318745|318758|318788|318789|318798|318815|318817|318818|318820|318822|318823|318827|324842|324846|324848|324853|324854|324870|324871|324872|324877|324884|324894|324897|325705|325708|325714|325719|325720|325734|325737|325745|325753|325754|325762|325763|325769|325770|325774|325782|488632|620829|701610|800426|802174|802175|838078|867200|867201|867202|867203|867204|867205|867206|867207|867208|867209|867210|867211|867212|867213|867214|867215|867216|867217|867218|868610|868611", + "upstreamId": "17165|177836|191707|193723|194518|195432|272280|312750|312754|312755|312766|312767|312770|312772|312776|312778|312779|312783|312784|312789|312795|312796|312801|312802|318744|318745|318758|318788|318789|318798|318815|318817|318818|318820|318822|318823|318827|324842|324846|324848|324853|324854|324870|324871|324872|324877|324884|324894|324897|325705|325708|325714|325719|325720|325734|325737|325745|325753|325754|325762|325763|325769|325770|325774|325782|488632|620829|701610|800426|802174|802175|838078|867200|867201|867202|867203|867204|867205|867206|867207|867208|867209|867210|867211|867212|867213|867214|867215|867216|867217|867218|868610|868611", "text": "Late-onset retinal degeneration" }, { - "baseId": "17166|17167|17168|17169|17170|177351|251047|289665|289669|289670|290393|290400|290411|290412|290413|293498|293500|293503|293505|293509|293510|293514|294058|294059|294061|294062|294063|367019|452002|500678|538974|608838|608876|608877|608880|609076|609077|622832|631110|720322|730200|748137|827771|888474|888475|888476|888477|888478|888479|888480|888481|888482|888483|888484|888485|891628|920190|943436", + "upstreamId": "17166|17167|17168|17169|17170|177351|251047|289665|289669|289670|290393|290400|290411|290412|290413|293498|293500|293503|293505|293509|293510|293514|294058|294059|294061|294062|294063|367019|452002|500678|538974|608838|608876|608877|608880|609076|609077|622832|631110|720322|730200|748137|827771|888474|888475|888476|888477|888478|888479|888480|888481|888482|888483|888484|888485|891628|920190|943436", "text": "ALG3-CDG" }, { - "baseId": "17171|17172|193740|195035|195440|268322|271392|273967|372461|390052|444827|444828|444830|461367|461371|461375|461698|462023|503666|503840|503846|526283|526285|526288|565862|567322|640130|640131|640132|640133|640134|652329|693054|701785|701786|738010|738011|752697|838542|838543|838544|838545|838546|852355|926263|926264|926265|935591", + "upstreamId": "17171|17172|193740|195035|195440|268322|271392|273967|372461|390052|444827|444828|444830|461367|461371|461375|461698|462023|503666|503840|503846|526283|526285|526288|565862|567322|640130|640131|640132|640133|640134|652329|693054|701785|701786|738010|738011|752697|838542|838543|838544|838545|838546|852355|926263|926264|926265|935591", "text": "Spondylocheirodysplasia, Ehlers-Danlos syndrome-like" }, { - "baseId": "17173|919342|965315|965316|965317", + "upstreamId": "17173|919342|965315|965316|965317", "text": "Vitamin d hydroxylation-deficient rickets, type 1b" }, { - "baseId": "17174|17175|792797", + "upstreamId": "17174|17175|792797", "text": "Dyslexia 1" }, { - "baseId": "17176|17177|194859|194860|287099|287105|287106|287844|290293|290301|290305|290660|290665|290704|622966|885388|885389|885390|885391|885392|885393|885394|885395|887387", + "upstreamId": "17176|17177|194859|194860|287099|287105|287106|287844|290293|290301|290305|290660|290665|290704|622966|885388|885389|885390|885391|885392|885393|885394|885395|887387", "text": "Premature ovarian failure 6" }, { - "baseId": "17178|17179|17180|17181|17182|17183|17185|17186|17187|17188|17189|17190|102224|102225|102226|102227|102228|102229|102230|102231|102233|102235|102236|102237|102238|102242|102243|102246|102249|105808|105809|105810|105812|105813|105814|105815|105816|105817|105818|105819|105820|105821|105822|105823|105824|105825|105826|105827|105828|105829|105831|105832|137044|168298|168299|168300|168301|168302|168303|168305|168306|168307|168308|168309|168310|168311|168312|168313|168314|168315|168316|168317|168318|168319|168320|168321|168322|168323|168324|168325|168326|168327|168328|168329|168330|168331|168332|168333|168334|168336|168337|168338|168339|168340|168341|168342|168343|168344|168345|168346|168347|168348|168349|168350|168351|168352|168353|168354|168356|168357|168359|168360|168361|168362|168363|168364|168365|168367|168368|168369|168370|168371|168372|168373|168374|168375|168376|168377|168378|168379|168380|168381|168382|168383|168384|168385|168386|168387|168389|168390|168391|168392|168393|168394|168395|168396|168397|168398|168399|168400|168401|168402|168403|168404|168405|168406|168407|168408|168409|168410|168411|168412|168414|168416|168417|168418|168419|168421|168422|168423|168426|168427|168429|168430|168435|168436|168437|168438|168439|168440|168441|168442|168443|168444|168445|168446|168447|168448|168450|168451|168453|168454|168455|168456|168457|168458|168459|168460|168461|168462|168463|168464|168465|168466|168468|168469|168470|168471|168473|168474|168475|168476|168478|168479|168480|168482|168483|168484|168485|168486|168487|168488|168490|168491|168492|168493|168494|168495|168496|168497|168498|168499|168500|168501|168502|168503|168504|168505|168506|168507|168508|168509|168510|168511|168512|168513|168514|168515|168516|168517|168518|168519|168520|168522|168523|168525|168526|168527|168528|177608|178372|178373|178374|178375|178376|178377|178378|178379|178381|178383|190922|196341|207214|207215|207216|207217|207218|207220|207221|207222|207223|207224|207225|207226|207227|207228|207229|207231|207232|207233|207234|207236|207237|207238|207239|207240|207241|207242|207243|207247|207248|207250|207251|207252|207254|207255|207256|207257|207258|207259|207260|207261|264212|265061|265985|297425|297426|297434|297447|299486|299488|299494|299501|299520|299524|299526|299528|299530|299534|299535|303645|303649|303650|303653|303654|303657|303674|303710|303711|303949|303958|303963|303964|303975|303986|303995|304003|353895|360869|368481|369876|428418|428419|428420|428421|428423|428426|428428|428429|428430|439808|439877|443787|453890|454421|454996|454998|455005|455007|455168|455170|455178|455179|455181|455189|455620|455625|455629|455875|455877|491797|511597|513817|513818|513819|520593|521185|521187|521193|521201|521451|521794|521795|536158|536692|549466|550599|560321|560323|560325|560327|560454|560456|562298|576816|579073|579157|610517|622351|624150|625869|633947|633948|633949|633950|633951|633952|633953|633954|651347|651349|654126|679747|682844|691855|691857|695292|699078|709903|765112|782285|790554|790555|790556|790557|805440|819589|830848|830849|830850|830851|830852|830853|830854|830855|830856|830857|830858|852213|857672|894201|894202|894203|894204|894205|894206|894207|894208|894209|894210|894211|894212|894213|894214|894215|894216|894217|894218|896097|896098|896099|903536|918955|918957|918958|918959|918960|918961|918962|924070|924071|924072|932910|932911|932912|940816|944622|944623|944624|944625|944626|944627|954173|961276|964255|964256|964257|969776|970805|970806|970807|976650|977214|977242|980920", + "upstreamId": "17178|17179|17180|17181|17182|17183|17185|17186|17187|17188|17189|17190|102224|102225|102226|102227|102228|102229|102230|102231|102233|102235|102236|102237|102238|102242|102243|102246|102249|105808|105809|105810|105812|105813|105814|105815|105816|105817|105818|105819|105820|105821|105822|105823|105824|105825|105826|105827|105828|105829|105831|105832|137044|168298|168299|168300|168301|168302|168303|168305|168306|168307|168308|168309|168310|168311|168312|168313|168314|168315|168316|168317|168318|168319|168320|168321|168322|168323|168324|168325|168326|168327|168328|168329|168330|168331|168332|168333|168334|168336|168337|168338|168339|168340|168341|168342|168343|168344|168345|168346|168347|168348|168349|168350|168351|168352|168353|168354|168356|168357|168359|168360|168361|168362|168363|168364|168365|168367|168368|168369|168370|168371|168372|168373|168374|168375|168376|168377|168378|168379|168380|168381|168382|168383|168384|168385|168386|168387|168389|168390|168391|168392|168393|168394|168395|168396|168397|168398|168399|168400|168401|168402|168403|168404|168405|168406|168407|168408|168409|168410|168411|168412|168414|168416|168417|168418|168419|168421|168422|168423|168426|168427|168429|168430|168435|168436|168437|168438|168439|168440|168441|168442|168443|168444|168445|168446|168447|168448|168450|168451|168453|168454|168455|168456|168457|168458|168459|168460|168461|168462|168463|168464|168465|168466|168468|168469|168470|168471|168473|168474|168475|168476|168478|168479|168480|168482|168483|168484|168485|168486|168487|168488|168490|168491|168492|168493|168494|168495|168496|168497|168498|168499|168500|168501|168502|168503|168504|168505|168506|168507|168508|168509|168510|168511|168512|168513|168514|168515|168516|168517|168518|168519|168520|168522|168523|168525|168526|168527|168528|177608|178372|178373|178374|178375|178376|178377|178378|178379|178381|178383|190922|196341|207214|207215|207216|207217|207218|207220|207221|207222|207223|207224|207225|207226|207227|207228|207229|207231|207232|207233|207234|207236|207237|207238|207239|207240|207241|207242|207243|207247|207248|207250|207251|207252|207254|207255|207256|207257|207258|207259|207260|207261|264212|265061|265985|297425|297426|297434|297447|299486|299488|299494|299501|299520|299524|299526|299528|299530|299534|299535|303645|303649|303650|303653|303654|303657|303674|303710|303711|303949|303958|303963|303964|303975|303986|303995|304003|353895|360869|368481|369876|428418|428419|428420|428421|428423|428426|428428|428429|428430|439808|439877|443787|453890|454421|454996|454998|455005|455007|455168|455170|455178|455179|455181|455189|455620|455625|455629|455875|455877|491797|511597|513817|513818|513819|520593|521185|521187|521193|521201|521451|521794|521795|536158|536692|549466|550599|560321|560323|560325|560327|560454|560456|562298|576816|579073|579157|610517|622351|624150|625869|633947|633948|633949|633950|633951|633952|633953|633954|651347|651349|654126|679747|682844|691855|691857|695292|699078|709903|765112|782285|790554|790555|790556|790557|805440|819589|830848|830849|830850|830851|830852|830853|830854|830855|830856|830857|830858|852213|857672|894201|894202|894203|894204|894205|894206|894207|894208|894209|894210|894211|894212|894213|894214|894215|894216|894217|894218|896097|896098|896099|903536|918955|918957|918958|918959|918960|918961|918962|924070|924071|924072|932910|932911|932912|940816|944622|944623|944624|944625|944626|944627|954173|961276|964255|964256|964257|969776|970805|970806|970807|976650|977214|977242|980920", "text": "Cornelia de Lange syndrome 1" }, { - "baseId": "17191|17191|17193|17193|17195|17196|17197|101774|101776|192498|194477|265813|267825|269777|271334|271603|271603|272010|272698|347065|446353|489599|489816|491813|492858|494182|575212|584856|584967|586318|588541|821398|849023|849024|849025|849026|849027|939187|939188|939189|939190|941272|951322|951323|951324|951325|951326|951327|951328|959016|959017|959018|959019|959020", + "upstreamId": "17191|17191|17193|17193|17195|17196|17197|101774|101776|192498|194477|265813|267825|269777|271334|271603|271603|272010|272698|347065|446353|489599|489816|491813|492858|494182|575212|584856|584967|586318|588541|821398|849023|849024|849025|849026|849027|939187|939188|939189|939190|941272|951322|951323|951324|951325|951326|951327|951328|959016|959017|959018|959019|959020", "text": "Peroxisome biogenesis disorder 7B" }, { - "baseId": "17191|17193|19209|21809|21813|22555|22558|22559|22813|23161|28743|98683|98685|98687|98689|98690|98697|99009|143213|177943|177944|186750|186751|186752|186753|186755|186758|190969|191328|191329|193558|195684|195870|214063|226048|237362|252357|252359|252360|252362|259881|266214|266215|267043|267618|269776|271125|271218|271736|273218|273977|274317|281791|300203|307373|307376|307381|307590|307592|307593|320695|320708|357074|357606|357620|357627|358425|358427|439298|442785|485898|487075|487137|487200|487227|488062|489029|489213|489234|490120|490260|490272|490638|491019|491046|492179|492365|492366|492367|492387|493070|493770|493841|493948|493986|494209|539070|543634|543636|543958|543959|543960|543962|544083|544091|544108|544643|544760|548344|548348|549610|552151|560857|560860|563613|563615|564500|584468|584911|585437|585627|586251|586617|587376|587440|587441|588204|589223|621279|621562|621749|621781|634931|634932|634933|634934|636452|654449|699596|701770|710522|730769|735667|735669|735670|750073|750074|750076|760021|765685|765687|765693|765694|765696|775094|775096|775193|782539|782542|782543|782544|782548|782549|784006|784007|819690|819691|819692|831971|831972|831973|831974|831975|831976|831977|831978|831979|831980|831981|831982|838449|838450|838451|838452|838453|838454|838455|852277|896310|917016|917017|917314|917461|924360|924361|924362|924363|933340|933341|933342|933343|933344|935551|935552|935553|935554|940039|940844|945038|945039|945040|945041|945042|945043|947462|947463|947464|947465|947466|954462|954463|954464|954465|954466|954467|954468|954469|954470|954471|954472|956501|956502|959807|960585|969159", + "upstreamId": "17191|17193|19209|21809|21813|22555|22558|22559|22813|23161|28743|98683|98685|98687|98689|98690|98697|99009|143213|177943|177944|186750|186751|186752|186753|186755|186758|190969|191328|191329|193558|195684|195870|214063|226048|237362|252357|252359|252360|252362|259881|266214|266215|267043|267618|269776|271125|271218|271736|273218|273977|274317|281791|300203|307373|307376|307381|307590|307592|307593|320695|320708|357074|357606|357620|357627|358425|358427|439298|442785|485898|487075|487137|487200|487227|488062|489029|489213|489234|490120|490260|490272|490638|491019|491046|492179|492365|492366|492367|492387|493070|493770|493841|493948|493986|494209|539070|543634|543636|543958|543959|543960|543962|544083|544091|544108|544643|544760|548344|548348|549610|552151|560857|560860|563613|563615|564500|584468|584911|585437|585627|586251|586617|587376|587440|587441|588204|589223|621279|621562|621749|621781|634931|634932|634933|634934|636452|654449|699596|701770|710522|730769|735667|735669|735670|750073|750074|750076|760021|765685|765687|765693|765694|765696|775094|775096|775193|782539|782542|782543|782544|782548|782549|784006|784007|819690|819691|819692|831971|831972|831973|831974|831975|831976|831977|831978|831979|831980|831981|831982|838449|838450|838451|838452|838453|838454|838455|852277|896310|917016|917017|917314|917461|924360|924361|924362|924363|933340|933341|933342|933343|933344|935551|935552|935553|935554|940039|940844|945038|945039|945040|945041|945042|945043|947462|947463|947464|947465|947466|954462|954463|954464|954465|954466|954467|954468|954469|954470|954471|954472|956501|956502|959807|960585|969159", "text": "Peroxisome biogenesis disorders, Zellweger syndrome spectrum" }, { - "baseId": "17191|17192|17193|17193|17194|17195|17196|17197|17198|101774|101774|101776|101776|177937|192498|192498|194477|194477|265813|265813|267825|269777|269777|271334|271334|271603|271603|272010|272010|272698|272698|337464|337466|337492|337498|337499|337503|337510|337513|337515|337520|337522|337523|337530|337538|347062|347064|347065|347065|347066|347070|347071|347074|347075|347076|347077|347080|347081|347082|347085|347091|347095|347096|347108|347114|351111|351112|351115|351118|351122|351123|351126|351127|351130|351131|351133|351134|351137|351138|351140|351142|351144|351147|352135|352136|352137|352138|352139|352140|352141|352142|352143|352144|352145|352148|352149|352150|352151|352152|352153|352154|362314|446353|489599|489599|489816|491813|492858|494182|575212|584856|584856|584967|586318|588065|588276|588541|588541|821398|849023|849024|849025|849026|849027|887213|887214|887215|887216|890849|890850|890851|890852|890853|890854|890855|890856|890857|890858|890859|890860|890861|890862|890863|890864|890865|890866|890867|890868|890869|890870|890871|890872|890873|890874|890875|890876|890877|890878|890879|890880|891805|939187|939188|939189|939190|941272|951322|951323|951324|951325|951326|951327|951328|959016|959017|959018|959019|959020", + "upstreamId": "17191|17192|17193|17193|17194|17195|17196|17197|17198|101774|101774|101776|101776|177937|192498|192498|194477|194477|265813|265813|267825|269777|269777|271334|271334|271603|271603|272010|272010|272698|272698|337464|337466|337492|337498|337499|337503|337510|337513|337515|337520|337522|337523|337530|337538|347062|347064|347065|347065|347066|347070|347071|347074|347075|347076|347077|347080|347081|347082|347085|347091|347095|347096|347108|347114|351111|351112|351115|351118|351122|351123|351126|351127|351130|351131|351133|351134|351137|351138|351140|351142|351144|351147|352135|352136|352137|352138|352139|352140|352141|352142|352143|352144|352145|352148|352149|352150|352151|352152|352153|352154|362314|446353|489599|489599|489816|491813|492858|494182|575212|584856|584856|584967|586318|588065|588276|588541|588541|821398|849023|849024|849025|849026|849027|887213|887214|887215|887216|890849|890850|890851|890852|890853|890854|890855|890856|890857|890858|890859|890860|890861|890862|890863|890864|890865|890866|890867|890868|890869|890870|890871|890872|890873|890874|890875|890876|890877|890878|890879|890880|891805|939187|939188|939189|939190|941272|951322|951323|951324|951325|951326|951327|951328|959016|959017|959018|959019|959020", "text": "Peroxisome biogenesis disorder 7A" }, { - "baseId": "17200|17201|17202|17203|17203|17204|17204|17204|17205|75263|102570|102578|102581|102581|133838|133839|133839|133840|133840|150228|150231|150233|191740|191968|191968|192166|192166|192704|192704|192795|192866|192867|194563|194564|194564|195068|213817|230189|254117|254125|254126|264605|264605|265545|265695|266391|266402|266417|266437|266552|266631|266634|266733|266733|266734|266734|267080|267436|267746|267983|268176|268204|269056|269308|269436|269458|269559|269575|269711|269789|269865|269906|269924|269979|270179|270428|270687|270687|270704|270711|272667|272754|273090|273182|273400|273464|273889|274566|274780|313663|319863|319881|327003|327012|360929|371340|372129|408319|408321|408322|425917|425919|429236|430997|444776|444777|444778|460424|460961|461065|461071|461074|461086|461091|461095|461379|461383|461385|461388|461388|461392|461394|461403|461406|461413|461417|461771|461774|461775|488826|489642|490435|492080|492529|493161|493392|493833|495273|526031|526102|526183|526193|526195|526537|526538|539033|564541|564542|564546|565007|565018|565605|565609|565610|565617|565621|567135|567145|569945|570455|570456|570463|585089|585974|588717|589608|608959|622896|639877|639878|639879|639880|639881|639882|639883|639884|639885|639886|639887|639888|639889|639890|639891|677236|692982|695504|752620|752622|768394|768395|791125|791126|792781|820348|820349|820350|820351|820352|838201|838202|838203|838204|838205|838206|838207|838208|838209|838210|838211|838212|838213|838214|838215|838216|838217|838218|838219|838220|838221|838222|851837|852340|919351|919352|920298|926174|926175|926176|926177|935458|935459|935460|935461|935462|935463|935464|940993|947386|947387|956447|956448", + "upstreamId": "17200|17201|17202|17203|17203|17204|17204|17204|17205|75263|102570|102578|102581|102581|133838|133839|133839|133840|133840|150228|150231|150233|191740|191968|191968|192166|192166|192704|192704|192795|192866|192867|194563|194564|194564|195068|213817|230189|254117|254125|254126|264605|264605|265545|265695|266391|266402|266417|266437|266552|266631|266634|266733|266733|266734|266734|267080|267436|267746|267983|268176|268204|269056|269308|269436|269458|269559|269575|269711|269789|269865|269906|269924|269979|270179|270428|270687|270687|270704|270711|272667|272754|273090|273182|273400|273464|273889|274566|274780|313663|319863|319881|327003|327012|360929|371340|372129|408319|408321|408322|425917|425919|429236|430997|444776|444777|444778|460424|460961|461065|461071|461074|461086|461091|461095|461379|461383|461385|461388|461388|461392|461394|461403|461406|461413|461417|461771|461774|461775|488826|489642|490435|492080|492529|493161|493392|493833|495273|526031|526102|526183|526193|526195|526537|526538|539033|564541|564542|564546|565007|565018|565605|565609|565610|565617|565621|567135|567145|569945|570455|570456|570463|585089|585974|588717|589608|608959|622896|639877|639878|639879|639880|639881|639882|639883|639884|639885|639886|639887|639888|639889|639890|639891|677236|692982|695504|752620|752622|768394|768395|791125|791126|792781|820348|820349|820350|820351|820352|838201|838202|838203|838204|838205|838206|838207|838208|838209|838210|838211|838212|838213|838214|838215|838216|838217|838218|838219|838220|838221|838222|851837|852340|919351|919352|920298|926174|926175|926176|926177|935458|935459|935460|935461|935462|935463|935464|940993|947386|947387|956447|956448", "text": "Gnathodiaphyseal dysplasia" }, { - "baseId": "17202|17202|17203|17203|17204|17204|17204|17205|17205|47882|47883|48349|102570|102578|102578|102581|102581|102581|133838|133839|133840|150228|150231|150233|191740|191740|191968|191968|191968|192166|192704|192795|192866|192867|194563|194563|194564|195068|213817|213817|213818|226474|230189|254117|254125|254126|264605|264605|265545|265695|266391|266402|266417|266437|266552|266631|266631|266634|266733|266734|267080|267436|267746|267983|268176|268204|269056|269308|269436|269458|269559|269575|269711|269789|269865|269906|269924|269979|270179|270179|270428|270428|270687|270704|270711|272667|272754|273069|273090|273182|273400|273464|273889|274566|274780|313663|319881|327003|327012|371340|372129|408319|408321|408322|425917|425919|429236|440222|444776|444777|444778|460424|460961|461062|461065|461071|461074|461086|461091|461095|461379|461383|461385|461388|461388|461392|461394|461403|461406|461413|461417|461771|461774|461775|488826|489642|490435|492080|492529|493161|493392|493833|494011|495273|526031|526102|526183|526193|526195|526537|526538|539033|539472|539975|564541|564542|564546|565007|565018|565605|565609|565610|565617|565621|567135|567145|569945|570455|570456|570463|585089|585974|588717|589608|608959|610424|622896|622896|639877|639878|639879|639880|639881|639882|639883|639884|639885|639886|639887|639888|639889|639890|639891|677236|681855|681859|692982|695504|752620|752622|768394|768395|802176|802177|820348|820349|820350|820351|820352|838201|838202|838203|838204|838205|838206|838207|838208|838209|838210|838211|838212|838213|838214|838215|838216|838217|838218|838219|838220|838221|838222|851837|852340|926174|926175|926176|926177|935458|935459|935460|935461|935462|935463|935464|940993|947386|947387|956447|956448", + "upstreamId": "17202|17202|17203|17203|17204|17204|17204|17205|17205|47882|47883|48349|102570|102578|102578|102581|102581|102581|133838|133839|133840|150228|150231|150233|191740|191740|191968|191968|191968|192166|192704|192795|192866|192867|194563|194563|194564|195068|213817|213817|213818|226474|230189|254117|254125|254126|264605|264605|265545|265695|266391|266402|266417|266437|266552|266631|266631|266634|266733|266734|267080|267436|267746|267983|268176|268204|269056|269308|269436|269458|269559|269575|269711|269789|269865|269906|269924|269979|270179|270179|270428|270428|270687|270704|270711|272667|272754|273069|273090|273182|273400|273464|273889|274566|274780|313663|319881|327003|327012|371340|372129|408319|408321|408322|425917|425919|429236|440222|444776|444777|444778|460424|460961|461062|461065|461071|461074|461086|461091|461095|461379|461383|461385|461388|461388|461392|461394|461403|461406|461413|461417|461771|461774|461775|488826|489642|490435|492080|492529|493161|493392|493833|494011|495273|526031|526102|526183|526193|526195|526537|526538|539033|539472|539975|564541|564542|564546|565007|565018|565605|565609|565610|565617|565621|567135|567145|569945|570455|570456|570463|585089|585974|588717|589608|608959|610424|622896|622896|639877|639878|639879|639880|639881|639882|639883|639884|639885|639886|639887|639888|639889|639890|639891|677236|681855|681859|692982|695504|752620|752622|768394|768395|802176|802177|820348|820349|820350|820351|820352|838201|838202|838203|838204|838205|838206|838207|838208|838209|838210|838211|838212|838213|838214|838215|838216|838217|838218|838219|838220|838221|838222|851837|852340|926174|926175|926176|926177|935458|935459|935460|935461|935462|935463|935464|940993|947386|947387|956447|956448", "text": "Limb-girdle muscular dystrophy, type 2L" }, { - "baseId": "17202|17203|17204|17205|48349|102581|191968|194563|264605|266631|425917|444778|461388|539033|610424|964846", + "upstreamId": "17202|17203|17204|17205|48349|102581|191968|194563|264605|266631|425917|444778|461388|539033|610424|964846", "text": "Miyoshi muscular dystrophy 3" }, { - "baseId": "17203|19066|20958|22321|22389|23085|23093|24609|24653|32584|32660|38596|56569|172652|172813|175617|189619|198685|199454|200340|206724|206924|206928|206954|208086|208584|208585|208586|208588|208589|208592|208723|208725|208726|270687|354302|360803|360829|360855|360929|360953|360956|361026|361045|361046|361052|361093|446892|513912|514049|514128|514175|623605|623606|625198|676966|677218|677235|677236|677240|677266|677273|788956|792691|801221|822323|857409|857415|969267|969268|972892|980758", + "upstreamId": "17203|19066|20958|22321|22389|23085|23093|24609|24653|32584|32660|38596|56569|172652|172813|175617|189619|198685|199454|200340|206724|206924|206928|206954|208086|208584|208585|208586|208588|208589|208592|208723|208725|208726|270687|354302|360803|360829|360855|360929|360953|360956|361026|361045|361046|361052|361093|446892|513912|514049|514128|514175|623605|623606|625198|676966|677218|677235|677236|677240|677266|677273|788956|792691|801221|822323|857409|857415|969267|969268|972892|980758", "text": "Myopathy" }, { - "baseId": "17203|513970|514056", + "upstreamId": "17203|513970|514056", "text": "Achilles tendon contracture" }, { - "baseId": "17203|19239|23318|23320|23322|23325|23326|98887|226138|270687|272349|275546|275548|275551|353883|360414|417651|417654|439919|439925|439928|501808|514010|514056|514095|514132|514135|514181|551401|551432|682500|961601|969272|980755|980756", + "upstreamId": "17203|19239|23318|23320|23322|23325|23326|98887|226138|270687|272349|275546|275548|275551|353883|360414|417651|417654|439919|439925|439928|501808|514010|514056|514095|514132|514135|514181|551401|551432|682500|961601|969272|980755|980756", "text": "Elevated serum creatine phosphokinase" }, { - "baseId": "17203|198685|198685|360933|360934|361020|514056|514181|682738|801539", + "upstreamId": "17203|198685|198685|360933|360934|361020|514056|514181|682738|801539", "text": "Lower limb muscle weakness" }, { - "baseId": "17203|28028|39430|514056", + "upstreamId": "17203|28028|39430|514056", "text": "Lower limb amyotrophy" }, { - "baseId": "17203|17204|192165|192866|266631|269575|620832", + "upstreamId": "17203|17204|192165|192866|266631|269575|620832", "text": "ANO5-Related Disorders" }, { - "baseId": "17206|17207|17208|101373|252048|298566|298570|298576|298578|298582|298583|298584|298588|298598|298601|298608|298609|298624|298627|300890|300893|300895|300900|300932|300935|300936|300944|300954|300972|300981|300986|300987|300993|300995|300996|301023|301024|305277|305284|305286|305297|305298|305316|305329|305346|305347|305370|305372|305373|305408|305410|305412|305413|305414|305415|305419|305433|305483|305485|305486|305487|305492|305493|305494|305496|305499|305512|305514|305515|305516|305523|305530|305537|305541|305542|305547|305550|305561|305564|305577|305578|305585|305589|305591|513061|895102|895103|895104|895105|895106|895107|895108|895109|895110|895111|895112|895113|895114|895115|895116|895117|895118|895119|895120|895121|895122|895123|895124|895125|895126|895127|895128|895129|895130|895131|895132|895133|895134|895135|895136|895137|895138|895139|895140|895141|895142|895143|895144|895145|895146|895147|895148|895149|895150|896172|896173|896174|918989|980326", + "upstreamId": "17206|17207|17208|101373|252048|298566|298570|298576|298578|298582|298583|298584|298588|298598|298601|298608|298609|298624|298627|300890|300893|300895|300900|300932|300935|300936|300944|300954|300972|300981|300986|300987|300993|300995|300996|301023|301024|305277|305284|305286|305297|305298|305316|305329|305346|305347|305370|305372|305373|305408|305410|305412|305413|305414|305415|305419|305433|305483|305485|305486|305487|305492|305493|305494|305496|305499|305512|305514|305515|305516|305523|305530|305537|305541|305542|305547|305550|305561|305564|305577|305578|305585|305589|305591|513061|895102|895103|895104|895105|895106|895107|895108|895109|895110|895111|895112|895113|895114|895115|895116|895117|895118|895119|895120|895121|895122|895123|895124|895125|895126|895127|895128|895129|895130|895131|895132|895133|895134|895135|895136|895137|895138|895139|895140|895141|895142|895143|895144|895145|895146|895147|895148|895149|895150|896172|896173|896174|918989|980326", "text": "Polycystic liver disease 2" }, { - "baseId": "17211|17212|17213|17214|17215|17216|17217|17218|17219|17220|17221|17222|17223|17224|89137|226925|313015|313016|313020|313023|313024|313025|313031|313034|313039|313050|313051|313058|313060|313067|313068|313069|313071|313072|313074|319013|319017|319021|319024|319034|319036|319039|319045|319049|319053|319054|319077|319079|319089|319090|319098|319111|319112|319115|319118|319123|319126|319128|319131|325198|325200|325202|325203|325204|325205|325220|325224|325239|325243|325246|325248|325249|326046|326055|326057|326058|326061|326068|326074|326075|326079|326080|326083|326084|326085|326087|326090|326091|552150|583110|620388|620389|620390|620391|724280|737835|752511|858563|867428|867429|867430|867431|867432|867433|867434|867435|867436|867437|867438|867439|867440|867441|867442|867443|867444|867445|867446|867447|867448|867449|867450|867451|867452|867453|867454|867455|867456|867457|868613|868614|963157|963158|983808|983809|983811|983812|983813|983814|983815|983818|983825|983826", + "upstreamId": "17211|17212|17213|17214|17215|17216|17217|17218|17219|17220|17221|17222|17223|17224|89137|226925|313015|313016|313020|313023|313024|313025|313031|313034|313039|313050|313051|313058|313060|313067|313068|313069|313071|313072|313074|319013|319017|319021|319024|319034|319036|319039|319045|319049|319053|319054|319077|319079|319089|319090|319098|319111|319112|319115|319118|319123|319126|319128|319131|325198|325200|325202|325203|325204|325205|325220|325224|325239|325243|325246|325248|325249|326046|326055|326057|326058|326061|326068|326074|326075|326079|326080|326083|326084|326085|326087|326090|326091|552150|583110|620388|620389|620390|620391|724280|737835|752511|858563|867428|867429|867430|867431|867432|867433|867434|867435|867436|867437|867438|867439|867440|867441|867442|867443|867444|867445|867446|867447|867448|867449|867450|867451|867452|867453|867454|867455|867456|867457|868613|868614|963157|963158|983808|983809|983811|983812|983813|983814|983815|983818|983825|983826", "text": "Gaze palsy, familial horizontal, with progressive scoliosis 1" }, { - "baseId": "17225|208410|248751|429999|445851|467193|468141|468148|468532|468742|468745|468749|468755|508888|530535|531443|531559|531561|531673|531675|531682|531683|531694|531893|531895|531896|531900|531901|569466|569467|569468|569474|569475|571429|571433|571434|571972|571979|571981|571994|571996|574562|574563|574564|574565|646378|646379|646380|646381|646382|646383|652831|694140|695763|704281|715618|715619|727340|756019|756021|771714|771716|789385|845836|845837|845838|845839|845840|845841|845842|845843|845844|845845|845846|928431|928432|928433|928434|928435|928436|928437|938109|938110|938111|938112|938113|938114|938115|938116|941192|950129|950130|950131|950132|950133|958232|958233|958234|958235|958236|960231", + "upstreamId": "17225|208410|248751|429999|445851|467193|468141|468148|468532|468742|468745|468749|468755|508888|530535|531443|531559|531561|531673|531675|531682|531683|531694|531893|531895|531896|531900|531901|569466|569467|569468|569474|569475|571429|571433|571434|571972|571979|571981|571994|571996|574562|574563|574564|574565|646378|646379|646380|646381|646382|646383|652831|694140|695763|704281|715618|715619|727340|756019|756021|771714|771716|789385|845836|845837|845838|845839|845840|845841|845842|845843|845844|845845|845846|928431|928432|928433|928434|928435|928436|928437|938109|938110|938111|938112|938113|938114|938115|938116|941192|950129|950130|950131|950132|950133|958232|958233|958234|958235|958236|960231", "text": "Polyhydramnios, megalencephaly, and symptomatic epilepsy" }, { - "baseId": "17226|17227|17228|17229|17230|47854|47855|47856|47857|47858|47859|47860|47861|47862|47863|47864|47865|47866|47867|47868|47869|47870|47871|47872|47873|47874|47875|47876|47877|47878|47879|47880|47881|177662|177663|177664|177666|191114|206572|251427|251428|292967|292968|292978|292980|292981|292982|292993|292995|292996|293003|293008|293009|293012|293015|293018|293022|293032|293034|293040|294375|294393|294398|294407|294411|294415|294416|294417|294418|294421|294424|294425|294426|294429|294432|294433|294435|294439|294445|294448|297815|297824|297840|297842|297854|297855|297856|297857|297866|297867|297868|297869|297870|297871|297882|297883|297885|297889|297890|297891|297892|297894|297898|297899|297903|297908|297909|297913|297916|297920|297929|297941|297942|297955|297956|297961|297962|297969|297970|297973|297990|359278|486367|488711|624031|709273|790462|800495|800496|890529|890530|890531|890532|890533|890534|890535|890536|890537|890538|890539|890540|890541|890542|890543|890544|890545|890546|890547|890548|890549|890550|890551|890552|890553|890554|890555|890556|890557|890558|890559|890560|890561|890562|890563|890564|890565|890566|890567|890568|890569|890570|890571|890572|890573|890574|890575|890576|891778|891779|891780|918246", + "upstreamId": "17226|17227|17228|17229|17230|47854|47855|47856|47857|47858|47859|47860|47861|47862|47863|47864|47865|47866|47867|47868|47869|47870|47871|47872|47873|47874|47875|47876|47877|47878|47879|47880|47881|177662|177663|177664|177666|191114|206572|251427|251428|292967|292968|292978|292980|292981|292982|292993|292995|292996|293003|293008|293009|293012|293015|293018|293022|293032|293034|293040|294375|294393|294398|294407|294411|294415|294416|294417|294418|294421|294424|294425|294426|294429|294432|294433|294435|294439|294445|294448|297815|297824|297840|297842|297854|297855|297856|297857|297866|297867|297868|297869|297870|297871|297882|297883|297885|297889|297890|297891|297892|297894|297898|297899|297903|297908|297909|297913|297916|297920|297929|297941|297942|297955|297956|297961|297962|297969|297970|297973|297990|359278|486367|488711|624031|709273|790462|800495|800496|890529|890530|890531|890532|890533|890534|890535|890536|890537|890538|890539|890540|890541|890542|890543|890544|890545|890546|890547|890548|890549|890550|890551|890552|890553|890554|890555|890556|890557|890558|890559|890560|890561|890562|890563|890564|890565|890566|890567|890568|890569|890570|890571|890572|890573|890574|890575|890576|891778|891779|891780|918246", "text": "Bietti crystalline corneoretinal dystrophy" }, { - "baseId": "17231", + "upstreamId": "17231", "text": "Asthma-related traits, susceptibility to, 2" }, { - "baseId": "17232|17233|87970|102447|102448|152884|227315|227316|227317|260789|267740|303772|303780|303781|303787|303788|303794|303795|303797|303798|303800|303804|303812|303814|303817|303818|303820|303821|303822|303826|303827|303829|303830|303835|303836|303837|303841|303844|303845|303854|303855|303863|303865|303866|303868|303870|303879|303884|303886|303890|303895|303896|303903|303904|303907|303908|303911|303912|303914|303918|303920|303921|303923|303927|303934|303943|303944|303945|303947|307271|307273|307277|307278|307279|307291|307295|307296|307297|307316|307317|307318|307331|307332|307336|307340|307345|307346|307347|307350|307351|307352|307358|307359|307360|307362|307365|307371|307372|307378|307382|307384|307385|307387|307388|307389|307390|307391|307393|307394|307396|307398|307399|307400|307405|307408|307415|307427|307429|307430|307431|307433|307434|307442|307446|307447|307448|307458|307464|307479|307481|307482|307483|307484|312129|312130|312133|312135|312139|312140|312143|312150|312151|312156|312161|312166|312170|312177|312179|312180|312181|312196|312200|312214|312221|312222|312233|312235|312239|312241|312243|312245|312247|312251|312254|312260|312261|312266|312269|312270|312271|312273|312274|312283|312285|312287|312288|312289|312291|312296|312298|312301|312302|312304|312312|312313|312315|312316|312317|312319|312320|312321|312322|312328|312331|312335|312336|312349|312351|312354|312356|312357|312360|312363|312366|312367|312368|312371|312379|312381|312383|312385|312386|312390|312393|312399|312406|312408|312410|312413|312414|312415|312416|312418|312423|312427|312433|312435|312440|312441|312442|312444|312445|312446|312447|312448|312450|312451|312452|312456|312457|312458|312462|312463|312467|312469|312474|312478|312479|312482|312484|312488|312490|312491|312492|312494|312497|312501|312504|312513|312514|312518|312520|312523|312535|312538|312542|361319|361489|413764|413765|413767|413769|438379|486430|486431|486434|486435|490785|513293|612800|612804|619921|620283|620284|620285|620286|711228|736394|790770|790771|790772|859642|898609|898610|898611|898612|898613|898614|898615|898616|898617|898618|898619|898620|898621|898622|898623|898624|898625|898626|898627|898628|898629|898630|898631|898632|898633|898634|898635|898636|898637|898638|898639|898640|898641|898642|898643|898644|898645|898646|898647|898648|898649|898650|898651|898652|898653|898654|898655|898656|898657|898658|898659|898660|898661|898662|898663|898664|898665|898666|898667|898668|898669|898670|898671|898672|898673|898674|898675|898676|898677|898678|898679|898680|898681|898682|898683|898684|898685|898686|898687|898688|898689|898690|898691|898692|898693|898694|898695|898696|898697|898698|898699|898700|898701|898702|898703|898704|898705|898706|898707|898708|898709|898710|898711|898712|898713|898714|898715|898716|898717|898718|898719|898720|898721|898722|898723|898724|898725|898726|898727|898728|898729|898730|898731|898732|898733|898734|898735|898736|898737|898738|898739|898740|898741|898742|898743|898744|898745|898746|898747|898748|953335|980929", + "upstreamId": "17232|17233|87970|102447|102448|152884|227315|227316|227317|260789|267740|303772|303780|303781|303787|303788|303794|303795|303797|303798|303800|303804|303812|303814|303817|303818|303820|303821|303822|303826|303827|303829|303830|303835|303836|303837|303841|303844|303845|303854|303855|303863|303865|303866|303868|303870|303879|303884|303886|303890|303895|303896|303903|303904|303907|303908|303911|303912|303914|303918|303920|303921|303923|303927|303934|303943|303944|303945|303947|307271|307273|307277|307278|307279|307291|307295|307296|307297|307316|307317|307318|307331|307332|307336|307340|307345|307346|307347|307350|307351|307352|307358|307359|307360|307362|307365|307371|307372|307378|307382|307384|307385|307387|307388|307389|307390|307391|307393|307394|307396|307398|307399|307400|307405|307408|307415|307427|307429|307430|307431|307433|307434|307442|307446|307447|307448|307458|307464|307479|307481|307482|307483|307484|312129|312130|312133|312135|312139|312140|312143|312150|312151|312156|312161|312166|312170|312177|312179|312180|312181|312196|312200|312214|312221|312222|312233|312235|312239|312241|312243|312245|312247|312251|312254|312260|312261|312266|312269|312270|312271|312273|312274|312283|312285|312287|312288|312289|312291|312296|312298|312301|312302|312304|312312|312313|312315|312316|312317|312319|312320|312321|312322|312328|312331|312335|312336|312349|312351|312354|312356|312357|312360|312363|312366|312367|312368|312371|312379|312381|312383|312385|312386|312390|312393|312399|312406|312408|312410|312413|312414|312415|312416|312418|312423|312427|312433|312435|312440|312441|312442|312444|312445|312446|312447|312448|312450|312451|312452|312456|312457|312458|312462|312463|312467|312469|312474|312478|312479|312482|312484|312488|312490|312491|312492|312494|312497|312501|312504|312513|312514|312518|312520|312523|312535|312538|312542|361319|361489|413764|413765|413767|413769|438379|486430|486431|486434|486435|490785|513293|612800|612804|619921|620283|620284|620285|620286|711228|736394|790770|790771|790772|859642|898609|898610|898611|898612|898613|898614|898615|898616|898617|898618|898619|898620|898621|898622|898623|898624|898625|898626|898627|898628|898629|898630|898631|898632|898633|898634|898635|898636|898637|898638|898639|898640|898641|898642|898643|898644|898645|898646|898647|898648|898649|898650|898651|898652|898653|898654|898655|898656|898657|898658|898659|898660|898661|898662|898663|898664|898665|898666|898667|898668|898669|898670|898671|898672|898673|898674|898675|898676|898677|898678|898679|898680|898681|898682|898683|898684|898685|898686|898687|898688|898689|898690|898691|898692|898693|898694|898695|898696|898697|898698|898699|898700|898701|898702|898703|898704|898705|898706|898707|898708|898709|898710|898711|898712|898713|898714|898715|898716|898717|898718|898719|898720|898721|898722|898723|898724|898725|898726|898727|898728|898729|898730|898731|898732|898733|898734|898735|898736|898737|898738|898739|898740|898741|898742|898743|898744|898745|898746|898747|898748|953335|980929", "text": "Occult macular dystrophy" }, { - "baseId": "17232|59496|513293|612797|816398|816399|816400|919131|919132|919133|919134", + "upstreamId": "17232|59496|513293|612797|816398|816399|816400|919131|919132|919133|919134", "text": "Retinitis pigmentosa 88" }, { - "baseId": "17234|97553", + "upstreamId": "17234|97553", "text": "Deafness, autosomal dominant 28" }, { - "baseId": "17235|17236|17237|17238|17239|53211|53212|53213|53214|53217|53218|53219|53220|53223|53224|53225|53226|53227|53228|53229|53230|53231|53233|53234|53235|53236|53237|53238|53239|53240|53241|53243|53244|53246|53247|53249|176036|176037|176039|176043|176046|176049|176052|176053|176058|176062|176182|176183|176190|176191|176193|176198|176199|176203|176204|176205|199809|231050|231053|231055|231062|231067|231068|231071|231073|231075|270993|271198|271836|334107|334109|334112|334115|334116|334118|334130|334134|334140|334142|334145|334157|334159|334161|334166|334168|334172|344014|344015|344017|344020|344022|344024|344026|344028|344030|344030|344032|344033|344036|344039|344047|344050|349269|349270|349271|349272|349275|349278|349282|349285|349287|349289|349290|349293|349294|349297|350249|350252|350253|350259|350260|350263|350264|350268|350271|350272|350274|350277|350279|350284|350285|350288|350291|350292|350296|497322|497779|536994|578570|614516|620913|622469|624869|625878|742078|745258|786259|793803|800150|861598|882335|882336|882337|882338|882339|882340|882341|882342|882343|882344|882345|882346|882347|882348|882349|882350|882351|882352|882353|882354|882355|882356|882357|882358|882359|882360|882361|882362|882363|882364|882365|882366|882367|882368|882369|882370|882371|882372|882373|882374|882375|882376|882377|882378|882379|882380|882381|882382|882383|882384|882385|882386|882387|882388|882389|882390|882391|882392|882393|882394|882395|882396|882397|882398|882399|882400|882401|882919|882920|882921|882922|961349", + "upstreamId": "17235|17236|17237|17238|17239|53211|53212|53213|53214|53217|53218|53219|53220|53223|53224|53225|53226|53227|53228|53229|53230|53231|53233|53234|53235|53236|53237|53238|53239|53240|53241|53243|53244|53246|53247|53249|176036|176037|176039|176043|176046|176049|176052|176053|176058|176062|176182|176183|176190|176191|176193|176198|176199|176203|176204|176205|199809|231050|231053|231055|231062|231067|231068|231071|231073|231075|270993|271198|271836|334107|334109|334112|334115|334116|334118|334130|334134|334140|334142|334145|334157|334159|334161|334166|334168|334172|344014|344015|344017|344020|344022|344024|344026|344028|344030|344030|344032|344033|344036|344039|344047|344050|349269|349270|349271|349272|349275|349278|349282|349285|349287|349289|349290|349293|349294|349297|350249|350252|350253|350259|350260|350263|350264|350268|350271|350272|350274|350277|350279|350284|350285|350288|350291|350292|350296|497322|497779|536994|578570|614516|620913|622469|624869|625878|742078|745258|786259|793803|800150|861598|882335|882336|882337|882338|882339|882340|882341|882342|882343|882344|882345|882346|882347|882348|882349|882350|882351|882352|882353|882354|882355|882356|882357|882358|882359|882360|882361|882362|882363|882364|882365|882366|882367|882368|882369|882370|882371|882372|882373|882374|882375|882376|882377|882378|882379|882380|882381|882382|882383|882384|882385|882386|882387|882388|882389|882390|882391|882392|882393|882394|882395|882396|882397|882398|882399|882400|882401|882919|882920|882921|882922|961349", "text": "Deafness, autosomal dominant 4" }, { - "baseId": "17240|17241|17242|17243|94426|94427|94428|190560|192502|192503|192855|194998|221061|255429|255431|255432|255435|255437|255438|255440|273438|323584|323587|323591|323594|323596|323600|333314|333316|333322|333327|340094|340095|340098|340102|340109|340110|340114|341541|341543|341550|341552|341554|429751|491044|491452|492181|493464|493758|513106|514682|578522|582601|615892|623160|623179|682127|703427|776113|874324|874325|874326|874327|874328|874329|874330|874331|874332|874333|874334|874335|876593|876594|876595|876596", + "upstreamId": "17240|17241|17242|17243|94426|94427|94428|190560|192502|192503|192855|194998|221061|255429|255431|255432|255435|255437|255438|255440|273438|323584|323587|323591|323594|323596|323600|333314|333316|333322|333327|340094|340095|340098|340102|340109|340110|340114|341541|341543|341550|341552|341554|429751|491044|491452|492181|493464|493758|513106|514682|578522|582601|615892|623160|623179|682127|703427|776113|874324|874325|874326|874327|874328|874329|874330|874331|874332|874333|874334|874335|876593|876594|876595|876596", "text": "Arthrogryposis, renal dysfunction, and cholestasis 1" }, { - "baseId": "17244", + "upstreamId": "17244", "text": "MACULAR DEGENERATION, AGE-RELATED, 1, SUSCEPTIBILITY TO" }, { - "baseId": "17244|102101|102102|102103|102104|106473|106474|106477|177769|196397|196398|214519|277759|277784|277788|277789|277791|277820|277821|277822|277845|277846|277847|277849|277851|277856|277858|277878|277879|277880|277881|277882|277883|277884|277885|277887|277888|277889|277901|277902|277904|277909|277911|277918|277919|277921|277922|277923|277924|277925|277926|277928|277932|277933|277934|277935|277936|277937|277941|277943|277944|277950|277951|277954|277955|277956|277957|277958|277959|277961|277962|277963|277964|277965|277967|277968|277969|277970|277971|277972|277974|277976|277977|277978|277979|277980|277981|277982|277983|277985|277988|277990|277991|277992|277993|277996|277999|278000|278006|278007|278017|278018|278020|278021|278022|278023|278024|278025|278026|278028|278029|278030|278034|278036|278039|278040|278041|278042|278043|278044|278045|278046|278047|278048|278050|278051|278053|278054|278057|278058|278060|278062|278063|278064|278070|278072|278073|278818|278825|278826|278835|278837|278842|278850|278851|278853|278854|278856|278859|278860|278861|278864|278866|278868|278869|278883|278898|278899|278900|278901|278902|278905|278906|278907|278921|278924|278925|278926|278927|278934|278935|278938|278941|278942|278946|278952|278955|278956|278957|278963|278968|278973|278974|278975|278976|278978|278981|278982|278983|278984|278985|278986|278992|278993|278996|279000|279001|279002|279003|279006|279007|279008|279009|279010|279019|279027|279028|279043|279046|279047|279056|279059|279062|279069|279081|279082|279083|279089|279096|279097|279105|279118|279119|279121|279122|279133|279134|279136|279140|279141|279157|279158|279162|279163|279167|279214|279215|279216|279230|279238|279239|513499|619974|619975|696314|696315|696316|706929|706931|706932|706935|718435|718436|718440|718441|731914|731918|745903|758844|786984|862953|862954|862955|862956|862957|862958|862959|862960|862961|862962|862963|862964|862965|862966|862967|862968|862969|862970|862971|862972|862973|862974|862975|862976|862977|862978|862979|862980|862981|862982|862983|862984|862985|862986|862987|862988|862989|862990|862991|862992|862993|862994|862995|862996|862997|862998|862999|863000|863001|863002|863003|863004|863005|863006|863007|863008|863009|863010|863011|863012|863013|863014|863015|863016|863017|863018|863019|863020|863021|863022|863023|863024|863025|863026|863027|863028|863029|863030|863031|863032|863033|863034|863035|863036|863037|863038|863039|863040|863041|863042|863043|863044|863045|863046|863047|863048|863049|863050|863051|863052|863053|863054|863055|863056|863057|863058|863059|863060|863061|863062|863063|865047|865048|865049|865050|865051|865052|865053|865054|865055|865056|865057|865058|865059|865060|865061|865062|865063|865064|865065|865066", + "upstreamId": "17244|102101|102102|102103|102104|106473|106474|106477|177769|196397|196398|214519|277759|277784|277788|277789|277791|277820|277821|277822|277845|277846|277847|277849|277851|277856|277858|277878|277879|277880|277881|277882|277883|277884|277885|277887|277888|277889|277901|277902|277904|277909|277911|277918|277919|277921|277922|277923|277924|277925|277926|277928|277932|277933|277934|277935|277936|277937|277941|277943|277944|277950|277951|277954|277955|277956|277957|277958|277959|277961|277962|277963|277964|277965|277967|277968|277969|277970|277971|277972|277974|277976|277977|277978|277979|277980|277981|277982|277983|277985|277988|277990|277991|277992|277993|277996|277999|278000|278006|278007|278017|278018|278020|278021|278022|278023|278024|278025|278026|278028|278029|278030|278034|278036|278039|278040|278041|278042|278043|278044|278045|278046|278047|278048|278050|278051|278053|278054|278057|278058|278060|278062|278063|278064|278070|278072|278073|278818|278825|278826|278835|278837|278842|278850|278851|278853|278854|278856|278859|278860|278861|278864|278866|278868|278869|278883|278898|278899|278900|278901|278902|278905|278906|278907|278921|278924|278925|278926|278927|278934|278935|278938|278941|278942|278946|278952|278955|278956|278957|278963|278968|278973|278974|278975|278976|278978|278981|278982|278983|278984|278985|278986|278992|278993|278996|279000|279001|279002|279003|279006|279007|279008|279009|279010|279019|279027|279028|279043|279046|279047|279056|279059|279062|279069|279081|279082|279083|279089|279096|279097|279105|279118|279119|279121|279122|279133|279134|279136|279140|279141|279157|279158|279162|279163|279167|279214|279215|279216|279230|279238|279239|513499|619974|619975|696314|696315|696316|706929|706931|706932|706935|718435|718436|718440|718441|731914|731918|745903|758844|786984|862953|862954|862955|862956|862957|862958|862959|862960|862961|862962|862963|862964|862965|862966|862967|862968|862969|862970|862971|862972|862973|862974|862975|862976|862977|862978|862979|862980|862981|862982|862983|862984|862985|862986|862987|862988|862989|862990|862991|862992|862993|862994|862995|862996|862997|862998|862999|863000|863001|863002|863003|863004|863005|863006|863007|863008|863009|863010|863011|863012|863013|863014|863015|863016|863017|863018|863019|863020|863021|863022|863023|863024|863025|863026|863027|863028|863029|863030|863031|863032|863033|863034|863035|863036|863037|863038|863039|863040|863041|863042|863043|863044|863045|863046|863047|863048|863049|863050|863051|863052|863053|863054|863055|863056|863057|863058|863059|863060|863061|863062|863063|865047|865048|865049|865050|865051|865052|865053|865054|865055|865056|865057|865058|865059|865060|865061|865062|865063|865064|865065|865066", "text": "Age-related macular degeneration 1" }, { - "baseId": "17245|17251|227783|325116|325118|334771|341254|679794|714884|875107|875108|875109|875110|875111|875112|875113|875114|875115|875116|875117|875118|875119|876653", + "upstreamId": "17245|17251|227783|325116|325118|334771|341254|679794|714884|875107|875108|875109|875110|875111|875112|875113|875114|875115|875116|875117|875118|875119|876653", "text": "Vitamin K-dependent clotting factors, combined deficiency of, 2" }, { - "baseId": "17246|17247|17248|17249|17250|17251|23447|23448|23449|32008|32012|32887|32903|38302|75246|133867|133869|133871|133874|176160|250533|611348|611349|611350|679794", + "upstreamId": "17246|17247|17248|17249|17250|17251|23447|23448|23449|32008|32012|32887|32903|38302|75246|133867|133869|133871|133874|176160|250533|611348|611349|611350|679794", "text": "Warfarin response" }, { - "baseId": "17251|23447|23448|38302|227760|227769|227772|227774|227781|227782|227783|227784|227785|227786|227787|227800|362496|362502|538602", + "upstreamId": "17251|23447|23448|38302|227760|227769|227772|227774|227781|227782|227783|227784|227785|227786|227787|227800|362496|362502|538602", "text": "warfarin response - Dosage" }, { - "baseId": "17252|102117|102118|102119|132658|177417|192550|213192|213193|222488|222489|255741|255742|266590|325333|325334|325335|325338|325342|325346|325354|334963|334969|334972|334973|334978|334981|334984|334990|334992|334995|334996|334999|335020|335021|335027|335030|335031|341455|341456|341459|341462|341465|341466|341472|341474|341475|341477|341478|341480|341482|341484|341486|341487|342953|342954|342955|342958|342959|342962|342965|342971|342972|342974|342978|342980|342981|342983|342985|843872|875259|875260|875261|875262|875263|875264|875265|875266|875267|875268|875269|875270|875271|875272|875273|875274|875275|875276|875277|875278|875279|875280|875281|875282|875283|875284|875285|875286|875287|875288|875289|876668|876669", + "upstreamId": "17252|102117|102118|102119|132658|177417|192550|213192|213193|222488|222489|255741|255742|266590|325333|325334|325335|325338|325342|325346|325354|334963|334969|334972|334973|334978|334981|334984|334990|334992|334995|334996|334999|335020|335021|335027|335030|335031|341455|341456|341459|341462|341465|341466|341472|341474|341475|341477|341478|341480|341482|341484|341486|341487|342953|342954|342955|342958|342959|342962|342965|342971|342972|342974|342978|342980|342981|342983|342985|843872|875259|875260|875261|875262|875263|875264|875265|875266|875267|875268|875269|875270|875271|875272|875273|875274|875275|875276|875277|875278|875279|875280|875281|875282|875283|875284|875285|875286|875287|875288|875289|876668|876669", "text": "Nephronophthisis 7" }, { - "baseId": "17253|17254|17254|17255|17255|17256|17256|17257|17257|17257|17258|17258|17259|17260|17261|17261|17262|17262|17263|17264|17264|17265|17265|17266|17267|17268|17268|17269|17270|17271|17271|17272|17272|17273|17274|17275|17276|17276|17277|17277|45560|45560|45561|45561|45562|45562|45563|45564|45565|45566|45566|45567|45567|45568|50304|52765|52765|52766|52766|52767|52768|52768|52769|52769|52770|52771|52772|52772|52773|52774|99233|99233|99234|99234|99235|99236|99236|99237|99237|133285|133285|133286|133287|133287|136455|136455|139144|139144|139145|139145|139146|139663|139663|139664|139665|139665|139666|139667|139668|139668|141607|141608|141608|150758|150758|171078|171078|171079|171079|171080|171080|171081|171081|173676|173736|173736|173876|178148|180107|180107|180109|180109|180111|180112|180114|180115|180116|180117|180117|180118|180119|180119|180120|180120|180121|180121|180122|180123|180125|180125|182205|182206|182208|182208|186008|186009|190283|192254|192254|193445|212277|212277|212278|212278|212279|212279|212280|212281|212283|212283|212284|212285|212286|212286|217068|217068|221343|221343|221344|221344|221347|221347|221348|221349|221350|221350|221351|221351|221352|221353|221354|221354|221356|221357|221357|224889|224889|224890|224891|224892|224892|224893|224894|224895|224895|224896|224897|224897|224898|224899|224899|224900|224900|224901|224901|224902|224902|224903|224904|224905|224905|224906|224907|224907|224908|224909|224910|224911|224912|224913|224914|224915|224916|224917|224918|224918|224919|224919|224920|224921|224922|224922|224923|224924|224924|224925|224926|224926|224927|224928|224929|224929|224930|224931|224931|224932|224933|224933|224934|224935|224936|224936|224937|224937|224938|224938|224939|224940|224940|224941|224942|224943|224944|224945|224946|224947|224948|224949|224950|224950|224951|224952|224953|224954|224955|224956|224956|224957|224957|224958|224958|224959|224960|224960|224961|224962|224962|224963|224964|224965|224966|232860|232861|232862|232864|239029|239043|239043|239044|239045|239045|239046|239047|239048|239048|239049|239050|239050|239051|239052|239053|239054|239055|239055|239056|244404|244405|244406|244407|250850|264141|272986|287952|287957|287959|287964|287967|287972|287973|287974|287977|287979|287980|287981|287983|287984|287987|287990|287998|288000|288007|288012|288018|288020|288022|288023|288026|288030|288032|288033|288039|288046|288049|288660|288671|288673|288676|288684|288693|288694|288695|288696|288699|288701|288709|288711|288717|288722|288742|288743|288747|288751|288752|288753|288761|288762|288763|288765|288771|288779|291561|291569|291573|291574|291576|291582|291584|291585|291586|291590|291593|291595|291599|291601|291602|291618|291619|291628|291630|291632|291636|291639|291642|291643|291644|291654|291655|291656|291662|291666|291707|291708|291708|291709|291711|291714|291715|291716|291727|291728|291731|291732|291745|291747|291750|291751|291752|291755|291759|291760|291761|291770|291771|291772|291777|291778|291781|291782|291783|291786|291787|358729|358729|358730|358730|358731|358731|358732|358732|358732|358733|358733|358734|361857|361857|363101|366863|366866|367095|367098|367100|367103|367126|367133|368080|368104|368104|368107|368137|393129|393147|393165|393165|393169|393171|393173|393174|393175|393176|393178|393181|393183|393185|393187|393188|393191|393194|393196|393198|393200|393206|393212|393212|393216|393219|393223|393224|393229|393232|393301|393307|393347|393350|393358|393367|393370|393374|393378|393521|393522|393531|393533|393535|393535|393551|393563|393564|393565|393569|393572|406057|406058|406059|406061|406062|406063|406065|406066|406066|406067|406069|406071|406072|406074|406074|406075|406075|420438|420439|420439|420441|420443|420444|420449|420449|420451|420453|420453|420455|420456|427115|434038|451527|451599|451602|451603|451605|451610|451613|451617|451617|451860|451864|451864|451866|451869|451870|451870|451876|451887|451889|451891|451919|451919|451920|451924|451929|451937|451938|452005|452072|452077|452080|452081|452086|452088|452091|452091|452101|452101|452120|452121|452124|472246|473279|473281|473309|473321|473326|473327|473337|473349|473440|473451|473461|473470|486941|486951|486953|486958|486978|486979|486985|486985|486986|487011|487012|487013|487013|487015|487017|487017|487024|487024|487031|487032|500395|500402|500410|500412|518665|518667|518671|518681|518683|518692|518693|518695|518723|518728|518729|518732|518734|518735|518739|518741|518742|518746|518749|518901|518908|518912|518914|518916|518918|518920|518921|518939|518940|518940|518949|518950|518952|518954|518954|518960|536270|536271|537735|537737|539230|539230|539231|539232|551810|551810|551820|558700|558724|558726|558728|558728|558730|558732|558734|558736|559217|559253|559255|559257|559259|559261|559263|559265|559267|559269|561070|561074|561079|561083|561087|561088|561090|562171|562228|562231|562232|562236|562248|575528|575529|575529|613553|613553|613554|613555|613555|613556|613557|613558|613559|613560|613561|613562|613562|613563|613564|613565|613566|613567|613568|613569|613570|613571|613572|613572|613573|613574|613575|613576|613577|613578|613579|613580|613581|613582|613583|613584|613585|613586|613587|613588|613589|613590|613591|613592|613593|613594|613595|613596|613597|613598|613599|613600|613601|613602|613603|613603|621143|621143|621144|621144|630696|630697|630698|630699|630700|630701|630702|630703|630704|630705|630706|630707|630708|630709|630710|630711|630712|630713|630714|630715|630716|630717|630718|630719|630720|630721|630722|630723|630724|630725|630726|630727|630728|630729|630730|630731|650954|650960|650965|651014|651028|651030|651054|651060|651065|651102|651103|651105|651150|682317|686277|686278|686279|691251|697727|697728|697730|733663|744001|747856|747858|747860|763496|763497|763500|763501|763502|763503|777301|781500|790313|804891|804892|804895|807484|807488|807491|816447|819296|819297|819298|819299|819302|819303|819304|819305|819306|819307|819308|819309|819310|822257|822258|827274|827275|827276|827277|827278|827279|827280|827281|827282|827283|827284|827285|827286|827287|827288|827289|827290|827291|827292|827293|827294|827295|827296|827297|827298|827299|850893|850895|850897|850899|850901|850981|850983|850985|850987|850989|850991|850993|850995|851009|851011|851013|851015|851218|851220|851222|851224|851226|851228|851231|851233|851235|851238|851241|851246|851248|851252|851254|851257|851456|851458|851497|851514|851518|851522|851526|887650|887651|887652|887653|887654|887655|887656|887657|887658|887659|887660|887661|887662|887663|887664|887665|887666|887667|887668|887669|887670|887671|887672|887673|887674|887675|887676|887677|887678|887679|887680|887681|887682|887683|887684|887685|887686|887687|887688|887689|887690|887691|887692|887693|887694|887695|887696|887697|887698|887699|887700|887701|916887|922978|922979|922980|922981|922982|922983|922984|931669|931670|931671|931672|931673|931674|931675|931676|931677|931678|931679|931680|939921|939922|939923|939924|939925|940727|940728|940729|940730|940731|940732|940733|943243|943244|943245|943246|943247|943248|943249|953289|953290|953291|953292|953293|953294|959665|959666|959667|959668|959669|959670|959671|959672|959673|960496|960497|960498|960499|960500|960501|960502|960503", + "upstreamId": "17253|17254|17254|17255|17255|17256|17256|17257|17257|17257|17258|17258|17259|17260|17261|17261|17262|17262|17263|17264|17264|17265|17265|17266|17267|17268|17268|17269|17270|17271|17271|17272|17272|17273|17274|17275|17276|17276|17277|17277|45560|45560|45561|45561|45562|45562|45563|45564|45565|45566|45566|45567|45567|45568|50304|52765|52765|52766|52766|52767|52768|52768|52769|52769|52770|52771|52772|52772|52773|52774|99233|99233|99234|99234|99235|99236|99236|99237|99237|133285|133285|133286|133287|133287|136455|136455|139144|139144|139145|139145|139146|139663|139663|139664|139665|139665|139666|139667|139668|139668|141607|141608|141608|150758|150758|171078|171078|171079|171079|171080|171080|171081|171081|173676|173736|173736|173876|178148|180107|180107|180109|180109|180111|180112|180114|180115|180116|180117|180117|180118|180119|180119|180120|180120|180121|180121|180122|180123|180125|180125|182205|182206|182208|182208|186008|186009|190283|192254|192254|193445|212277|212277|212278|212278|212279|212279|212280|212281|212283|212283|212284|212285|212286|212286|217068|217068|221343|221343|221344|221344|221347|221347|221348|221349|221350|221350|221351|221351|221352|221353|221354|221354|221356|221357|221357|224889|224889|224890|224891|224892|224892|224893|224894|224895|224895|224896|224897|224897|224898|224899|224899|224900|224900|224901|224901|224902|224902|224903|224904|224905|224905|224906|224907|224907|224908|224909|224910|224911|224912|224913|224914|224915|224916|224917|224918|224918|224919|224919|224920|224921|224922|224922|224923|224924|224924|224925|224926|224926|224927|224928|224929|224929|224930|224931|224931|224932|224933|224933|224934|224935|224936|224936|224937|224937|224938|224938|224939|224940|224940|224941|224942|224943|224944|224945|224946|224947|224948|224949|224950|224950|224951|224952|224953|224954|224955|224956|224956|224957|224957|224958|224958|224959|224960|224960|224961|224962|224962|224963|224964|224965|224966|232860|232861|232862|232864|239029|239043|239043|239044|239045|239045|239046|239047|239048|239048|239049|239050|239050|239051|239052|239053|239054|239055|239055|239056|244404|244405|244406|244407|250850|264141|272986|287952|287957|287959|287964|287967|287972|287973|287974|287977|287979|287980|287981|287983|287984|287987|287990|287998|288000|288007|288012|288018|288020|288022|288023|288026|288030|288032|288033|288039|288046|288049|288660|288671|288673|288676|288684|288693|288694|288695|288696|288699|288701|288709|288711|288717|288722|288742|288743|288747|288751|288752|288753|288761|288762|288763|288765|288771|288779|291561|291569|291573|291574|291576|291582|291584|291585|291586|291590|291593|291595|291599|291601|291602|291618|291619|291628|291630|291632|291636|291639|291642|291643|291644|291654|291655|291656|291662|291666|291707|291708|291708|291709|291711|291714|291715|291716|291727|291728|291731|291732|291745|291747|291750|291751|291752|291755|291759|291760|291761|291770|291771|291772|291777|291778|291781|291782|291783|291786|291787|358729|358729|358730|358730|358731|358731|358732|358732|358732|358733|358733|358734|361857|361857|363101|366863|366866|367095|367098|367100|367103|367126|367133|368080|368104|368104|368107|368137|393129|393147|393165|393165|393169|393171|393173|393174|393175|393176|393178|393181|393183|393185|393187|393188|393191|393194|393196|393198|393200|393206|393212|393212|393216|393219|393223|393224|393229|393232|393301|393307|393347|393350|393358|393367|393370|393374|393378|393521|393522|393531|393533|393535|393535|393551|393563|393564|393565|393569|393572|406057|406058|406059|406061|406062|406063|406065|406066|406066|406067|406069|406071|406072|406074|406074|406075|406075|420438|420439|420439|420441|420443|420444|420449|420449|420451|420453|420453|420455|420456|427115|434038|451527|451599|451602|451603|451605|451610|451613|451617|451617|451860|451864|451864|451866|451869|451870|451870|451876|451887|451889|451891|451919|451919|451920|451924|451929|451937|451938|452005|452072|452077|452080|452081|452086|452088|452091|452091|452101|452101|452120|452121|452124|472246|473279|473281|473309|473321|473326|473327|473337|473349|473440|473451|473461|473470|486941|486951|486953|486958|486978|486979|486985|486985|486986|487011|487012|487013|487013|487015|487017|487017|487024|487024|487031|487032|500395|500402|500410|500412|518665|518667|518671|518681|518683|518692|518693|518695|518723|518728|518729|518732|518734|518735|518739|518741|518742|518746|518749|518901|518908|518912|518914|518916|518918|518920|518921|518939|518940|518940|518949|518950|518952|518954|518954|518960|536270|536271|537735|537737|539230|539230|539231|539232|551810|551810|551820|558700|558724|558726|558728|558728|558730|558732|558734|558736|559217|559253|559255|559257|559259|559261|559263|559265|559267|559269|561070|561074|561079|561083|561087|561088|561090|562171|562228|562231|562232|562236|562248|575528|575529|575529|613553|613553|613554|613555|613555|613556|613557|613558|613559|613560|613561|613562|613562|613563|613564|613565|613566|613567|613568|613569|613570|613571|613572|613572|613573|613574|613575|613576|613577|613578|613579|613580|613581|613582|613583|613584|613585|613586|613587|613588|613589|613590|613591|613592|613593|613594|613595|613596|613597|613598|613599|613600|613601|613602|613603|613603|621143|621143|621144|621144|630696|630697|630698|630699|630700|630701|630702|630703|630704|630705|630706|630707|630708|630709|630710|630711|630712|630713|630714|630715|630716|630717|630718|630719|630720|630721|630722|630723|630724|630725|630726|630727|630728|630729|630730|630731|650954|650960|650965|651014|651028|651030|651054|651060|651065|651102|651103|651105|651150|682317|686277|686278|686279|691251|697727|697728|697730|733663|744001|747856|747858|747860|763496|763497|763500|763501|763502|763503|777301|781500|790313|804891|804892|804895|807484|807488|807491|816447|819296|819297|819298|819299|819302|819303|819304|819305|819306|819307|819308|819309|819310|822257|822258|827274|827275|827276|827277|827278|827279|827280|827281|827282|827283|827284|827285|827286|827287|827288|827289|827290|827291|827292|827293|827294|827295|827296|827297|827298|827299|850893|850895|850897|850899|850901|850981|850983|850985|850987|850989|850991|850993|850995|851009|851011|851013|851015|851218|851220|851222|851224|851226|851228|851231|851233|851235|851238|851241|851246|851248|851252|851254|851257|851456|851458|851497|851514|851518|851522|851526|887650|887651|887652|887653|887654|887655|887656|887657|887658|887659|887660|887661|887662|887663|887664|887665|887666|887667|887668|887669|887670|887671|887672|887673|887674|887675|887676|887677|887678|887679|887680|887681|887682|887683|887684|887685|887686|887687|887688|887689|887690|887691|887692|887693|887694|887695|887696|887697|887698|887699|887700|887701|916887|922978|922979|922980|922981|922982|922983|922984|931669|931670|931671|931672|931673|931674|931675|931676|931677|931678|931679|931680|939921|939922|939923|939924|939925|940727|940728|940729|940730|940731|940732|940733|943243|943244|943245|943246|943247|943248|943249|953289|953290|953291|953292|953293|953294|959665|959666|959667|959668|959669|959670|959671|959672|959673|960496|960497|960498|960499|960500|960501|960502|960503", "text": "Von Hippel-Lindau syndrome" }, { - "baseId": "17254|17256|17257|18076|22868|27397|27398|27403|27422|28691|28692|28694|28695|28698|28920|28921|28922|28923|28924|28925|28926|28939|45429|48304|50047|50049|50050|50051|50052|50055|50059|50060|50061|50062|50063|50064|50065|50066|50067|50068|50069|83949|95987|99468|99469|99470|99471|99473|99474|99475|99476|99477|99478|99479|99480|99481|99482|99483|133276|136437|136442|136465|136489|136490|136513|136521|138381|138382|138383|138384|138385|138386|138387|138388|138389|138390|138391|138392|138393|138394|139098|139669|139670|139671|139672|139673|139674|139675|139677|139678|139679|139680|139681|139682|139683|139684|139685|139686|139687|139688|139689|139690|139691|150515|150535|150855|151603|151732|151773|151773|151774|152613|166563|176503|176984|177247|180995|182661|182662|182663|182665|182666|182667|182668|182669|182669|182670|182671|182672|182673|182674|182675|182676|182677|182678|185350|185371|185394|186059|186060|186061|186062|186063|186064|186065|186066|186067|186068|186069|186070|186071|187953|191187|195617|212531|212532|212533|212534|212535|212536|212537|212538|212539|212541|212542|212543|212544|212544|212545|212546|212548|212549|212550|212553|212554|212555|212556|212557|212558|212559|212560|212561|212563|212564|213392|213402|213943|221639|221647|221648|221649|221650|221651|221652|221653|221654|221655|221656|221657|221658|221659|221660|221661|221662|221663|221664|221665|236462|236471|236477|236479|242978|245215|245225|245226|245227|245228|245229|245231|245232|245233|245234|245235|245236|245237|245238|245239|245240|245241|245242|245243|245244|245245|245246|245247|245248|245249|245250|245251|245253|245254|245255|245256|247303|247304|263939|301595|301603|301605|301609|301611|301619|301620|301630|301631|301643|301651|301652|301654|301655|301656|301663|301668|304869|304870|304871|304872|304878|304879|304880|304884|304887|304895|304897|304901|304904|309444|309444|309446|309455|309456|309462|309463|309465|309468|309478|309479|309493|309495|309596|309598|309605|309609|309610|309612|309613|309614|309616|309619|309620|309621|359197|361700|362753|362775|362837|362926|362927|363008|363332|363333|363334|363335|363336|363340|363341|363342|363343|363357|363360|363388|363394|363395|363409|363412|363435|363436|363437|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363461|363462|363463|363464|363465|363466|363467|363468|363494|363495|363516|363517|363529|363530|363538|363542|363543|363544|363545|363546|363552|363560|363561|363562|363563|363564|363565|363566|363567|363568|369444|369446|395297|395300|395305|395313|395316|395334|395337|395344|395351|395354|395355|395359|395363|395366|395373|395381|395383|395385|395388|395389|395570|395576|395581|395586|395589|395590|395593|395596|395610|395614|395620|395725|395727|395738|395741|395750|395752|395755|395759|395764|395768|395770|395775|395784|395805|395993|395996|395996|395997|395998|396008|396010|396013|396013|396017|396020|396021|396029|396037|396039|396046|396054|396057|396059|396061|396064|432395|444046|455983|455993|455993|455999|456002|456007|456011|456017|456024|456027|456029|456032|456033|456036|456041|456044|456048|456049|456054|456056|456067|456068|456073|456075|456232|456235|456237|456245|456247|456252|456259|456264|456265|456267|456268|456271|456273|456275|456285|456288|456298|456299|456300|456301|456313|456315|456319|456534|456541|456563|456566|456568|456572|456573|456581|456587|456589|456592|456595|456598|456599|456613|456617|456627|456632|456635|456934|456936|456938|456946|456948|456951|456955|456957|456959|456967|456968|456969|456976|456978|456981|456990|456992|456996|474404|474413|474415|474423|474424|474425|474426|474427|474434|474437|474440|474441|474450|474453|474459|474461|474469|474472|474476|474479|474481|474482|474513|474514|474524|474528|474530|474536|474558|474570|474572|481177|501542|521966|521984|521988|521989|521999|522008|522010|522014|522015|522021|522033|522035|522037|522038|522049|522050|522052|522058|522065|522068|522072|522279|522302|522306|522313|522314|522318|522325|522333|522334|522336|522339|522341|522345|522347|522370|522373|522375|522379|522388|522397|522398|522403|522406|522415|522418|522422|522426|522439|522447|522712|522725|522728|522732|522734|522734|522735|522738|522741|522743|522744|522748|522765|522768|522771|522773|522773|561138|561139|561185|561188|561190|561195|561196|561199|561200|561201|561202|561203|561204|561206|561207|561208|561209|561212|561216|561218|561219|561223|561224|561246|561254|561256|561263|561267|563834|563930|563932|563934|563936|563938|563940|563942|563944|563945|563953|563954|563956|563959|563960|563963|563964|563968|566299|566301|566301|566305|566306|566307|566312|566315|566321|566324|566328|566329|566330|575737|575738|575739|575740|575741|575742|575743|575744|575745|575746|575747|575748|575749|575750|575751|575752|575753|575754|621225|635451|635452|635453|635454|635455|635456|635457|635458|635459|635460|635461|635462|635463|635464|635465|635466|635467|635468|635469|635470|635471|635472|635473|635474|635475|635476|635477|635478|635479|635480|635481|635482|635483|635484|635485|635486|635487|635488|635489|635490|635491|635492|635493|635494|635495|635496|635497|635498|635499|635500|635501|635502|635503|635504|635505|635506|635507|635508|635509|635510|635511|635512|635513|635514|635515|635516|635517|635518|635519|635520|635521|635522|635523|635524|635525|635526|635527|635528|635529|635530|635531|635532|635533|635534|635535|635536|651631|651632|651636|651646|651649|651693|651695|651697|651701|655770|682317|686955|686956|686957|686958|686959|686960|686963|686964|689850|689852|692103|692104|692106|692108|692110|699766|699768|699769|699770|710724|750356|750357|750361|750364|765996|766000|766001|766008|766012|766013|766016|782735|782736|782737|782739|782742|782743|782744|782745|782746|782747|789820|789821|790672|790673|790674|790675|790676|790677|790678|790679|790680|790681|790682|790683|808725|808726|808732|808738|808741|808742|808743|808747|808748|808749|808751|808755|808756|808764|808772|808775|808783|808786|808787|808788|808793|808795|808796|808799|808801|808803|808804|808807|808813|808818|808822|808830|808834|808835|808839|819780|819781|819782|819783|832785|832786|832787|832788|832789|832790|832791|832792|832793|832794|832795|832796|832797|832798|832799|832800|832801|832802|832803|832804|832805|832806|832807|832808|832809|832810|832811|832812|832813|832814|832815|832816|832817|832818|832819|832820|832821|832822|832823|832824|832825|832826|832827|832828|832829|832830|832831|832832|832833|832834|832835|832836|832837|832838|832839|832840|832841|832842|832843|832844|832845|832846|832847|832848|832849|832850|832851|832852|832853|832854|832855|832856|832857|832858|832859|832860|832861|832862|832863|832864|832865|832866|832867|832868|851117|851124|851611|851614|897281|897282|897283|897284|897285|897286|897287|897288|897289|897290|897291|897292|897293|897294|897295|897296|897297|897298|897299|897300|897301|897302|897303|897304|897305|897306|897307|897308|897309|897310|897311|897312|897313|897314|924581|924582|924583|924584|924585|924586|924587|924588|924589|924590|924591|924592|924593|924594|924595|924596|924597|924598|924599|924600|924601|924602|924603|924604|924605|924606|924607|924608|924609|924610|924611|933587|933588|933589|933590|933591|933592|933593|933594|933595|933596|933597|933598|933599|933600|933601|933602|933603|933604|933605|940056|940866|940867|945312|945313|945314|945315|945316|945317|945318|945319|945320|945321|945322|945323|945324|945325|945326|945327|945328|945329|945330|945331|945332|945333|945334|945335|945336|945337|945338|945339|945340|945341|945342|945343|945344|945345|945346|945347|954981|954982|954983|954984|954985|954986|959825|960620|960621", + "upstreamId": "17254|17256|17257|18076|22868|27397|27398|27403|27422|28691|28692|28694|28695|28698|28920|28921|28922|28923|28924|28925|28926|28939|45429|48304|50047|50049|50050|50051|50052|50055|50059|50060|50061|50062|50063|50064|50065|50066|50067|50068|50069|83949|95987|99468|99469|99470|99471|99473|99474|99475|99476|99477|99478|99479|99480|99481|99482|99483|133276|136437|136442|136465|136489|136490|136513|136521|138381|138382|138383|138384|138385|138386|138387|138388|138389|138390|138391|138392|138393|138394|139098|139669|139670|139671|139672|139673|139674|139675|139677|139678|139679|139680|139681|139682|139683|139684|139685|139686|139687|139688|139689|139690|139691|150515|150535|150855|151603|151732|151773|151773|151774|152613|166563|176503|176984|177247|180995|182661|182662|182663|182665|182666|182667|182668|182669|182669|182670|182671|182672|182673|182674|182675|182676|182677|182678|185350|185371|185394|186059|186060|186061|186062|186063|186064|186065|186066|186067|186068|186069|186070|186071|187953|191187|195617|212531|212532|212533|212534|212535|212536|212537|212538|212539|212541|212542|212543|212544|212544|212545|212546|212548|212549|212550|212553|212554|212555|212556|212557|212558|212559|212560|212561|212563|212564|213392|213402|213943|221639|221647|221648|221649|221650|221651|221652|221653|221654|221655|221656|221657|221658|221659|221660|221661|221662|221663|221664|221665|236462|236471|236477|236479|242978|245215|245225|245226|245227|245228|245229|245231|245232|245233|245234|245235|245236|245237|245238|245239|245240|245241|245242|245243|245244|245245|245246|245247|245248|245249|245250|245251|245253|245254|245255|245256|247303|247304|263939|301595|301603|301605|301609|301611|301619|301620|301630|301631|301643|301651|301652|301654|301655|301656|301663|301668|304869|304870|304871|304872|304878|304879|304880|304884|304887|304895|304897|304901|304904|309444|309444|309446|309455|309456|309462|309463|309465|309468|309478|309479|309493|309495|309596|309598|309605|309609|309610|309612|309613|309614|309616|309619|309620|309621|359197|361700|362753|362775|362837|362926|362927|363008|363332|363333|363334|363335|363336|363340|363341|363342|363343|363357|363360|363388|363394|363395|363409|363412|363435|363436|363437|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363461|363462|363463|363464|363465|363466|363467|363468|363494|363495|363516|363517|363529|363530|363538|363542|363543|363544|363545|363546|363552|363560|363561|363562|363563|363564|363565|363566|363567|363568|369444|369446|395297|395300|395305|395313|395316|395334|395337|395344|395351|395354|395355|395359|395363|395366|395373|395381|395383|395385|395388|395389|395570|395576|395581|395586|395589|395590|395593|395596|395610|395614|395620|395725|395727|395738|395741|395750|395752|395755|395759|395764|395768|395770|395775|395784|395805|395993|395996|395996|395997|395998|396008|396010|396013|396013|396017|396020|396021|396029|396037|396039|396046|396054|396057|396059|396061|396064|432395|444046|455983|455993|455993|455999|456002|456007|456011|456017|456024|456027|456029|456032|456033|456036|456041|456044|456048|456049|456054|456056|456067|456068|456073|456075|456232|456235|456237|456245|456247|456252|456259|456264|456265|456267|456268|456271|456273|456275|456285|456288|456298|456299|456300|456301|456313|456315|456319|456534|456541|456563|456566|456568|456572|456573|456581|456587|456589|456592|456595|456598|456599|456613|456617|456627|456632|456635|456934|456936|456938|456946|456948|456951|456955|456957|456959|456967|456968|456969|456976|456978|456981|456990|456992|456996|474404|474413|474415|474423|474424|474425|474426|474427|474434|474437|474440|474441|474450|474453|474459|474461|474469|474472|474476|474479|474481|474482|474513|474514|474524|474528|474530|474536|474558|474570|474572|481177|501542|521966|521984|521988|521989|521999|522008|522010|522014|522015|522021|522033|522035|522037|522038|522049|522050|522052|522058|522065|522068|522072|522279|522302|522306|522313|522314|522318|522325|522333|522334|522336|522339|522341|522345|522347|522370|522373|522375|522379|522388|522397|522398|522403|522406|522415|522418|522422|522426|522439|522447|522712|522725|522728|522732|522734|522734|522735|522738|522741|522743|522744|522748|522765|522768|522771|522773|522773|561138|561139|561185|561188|561190|561195|561196|561199|561200|561201|561202|561203|561204|561206|561207|561208|561209|561212|561216|561218|561219|561223|561224|561246|561254|561256|561263|561267|563834|563930|563932|563934|563936|563938|563940|563942|563944|563945|563953|563954|563956|563959|563960|563963|563964|563968|566299|566301|566301|566305|566306|566307|566312|566315|566321|566324|566328|566329|566330|575737|575738|575739|575740|575741|575742|575743|575744|575745|575746|575747|575748|575749|575750|575751|575752|575753|575754|621225|635451|635452|635453|635454|635455|635456|635457|635458|635459|635460|635461|635462|635463|635464|635465|635466|635467|635468|635469|635470|635471|635472|635473|635474|635475|635476|635477|635478|635479|635480|635481|635482|635483|635484|635485|635486|635487|635488|635489|635490|635491|635492|635493|635494|635495|635496|635497|635498|635499|635500|635501|635502|635503|635504|635505|635506|635507|635508|635509|635510|635511|635512|635513|635514|635515|635516|635517|635518|635519|635520|635521|635522|635523|635524|635525|635526|635527|635528|635529|635530|635531|635532|635533|635534|635535|635536|651631|651632|651636|651646|651649|651693|651695|651697|651701|655770|682317|686955|686956|686957|686958|686959|686960|686963|686964|689850|689852|692103|692104|692106|692108|692110|699766|699768|699769|699770|710724|750356|750357|750361|750364|765996|766000|766001|766008|766012|766013|766016|782735|782736|782737|782739|782742|782743|782744|782745|782746|782747|789820|789821|790672|790673|790674|790675|790676|790677|790678|790679|790680|790681|790682|790683|808725|808726|808732|808738|808741|808742|808743|808747|808748|808749|808751|808755|808756|808764|808772|808775|808783|808786|808787|808788|808793|808795|808796|808799|808801|808803|808804|808807|808813|808818|808822|808830|808834|808835|808839|819780|819781|819782|819783|832785|832786|832787|832788|832789|832790|832791|832792|832793|832794|832795|832796|832797|832798|832799|832800|832801|832802|832803|832804|832805|832806|832807|832808|832809|832810|832811|832812|832813|832814|832815|832816|832817|832818|832819|832820|832821|832822|832823|832824|832825|832826|832827|832828|832829|832830|832831|832832|832833|832834|832835|832836|832837|832838|832839|832840|832841|832842|832843|832844|832845|832846|832847|832848|832849|832850|832851|832852|832853|832854|832855|832856|832857|832858|832859|832860|832861|832862|832863|832864|832865|832866|832867|832868|851117|851124|851611|851614|897281|897282|897283|897284|897285|897286|897287|897288|897289|897290|897291|897292|897293|897294|897295|897296|897297|897298|897299|897300|897301|897302|897303|897304|897305|897306|897307|897308|897309|897310|897311|897312|897313|897314|924581|924582|924583|924584|924585|924586|924587|924588|924589|924590|924591|924592|924593|924594|924595|924596|924597|924598|924599|924600|924601|924602|924603|924604|924605|924606|924607|924608|924609|924610|924611|933587|933588|933589|933590|933591|933592|933593|933594|933595|933596|933597|933598|933599|933600|933601|933602|933603|933604|933605|940056|940866|940867|945312|945313|945314|945315|945316|945317|945318|945319|945320|945321|945322|945323|945324|945325|945326|945327|945328|945329|945330|945331|945332|945333|945334|945335|945336|945337|945338|945339|945340|945341|945342|945343|945344|945345|945346|945347|954981|954982|954983|954984|954985|954986|959825|960620|960621", "text": "Renal cell carcinoma, papillary, 1" }, { - "baseId": "17254|17255|17256|17257|17257|17258|17261|17262|17264|17264|17265|17266|17268|17268|17269|17269|17270|17271|17271|17272|17273|17273|17274|17274|17276|17277|45560|45561|45562|45566|45567|50304|52765|52766|52768|52769|52772|99233|99234|99236|99237|133285|133287|136455|139144|139145|139146|139663|139664|139665|139666|139667|139668|141608|150758|150758|171078|171079|171080|171081|173736|180107|180109|180117|180119|180120|180121|180123|180125|182205|182206|182208|186008|186009|192254|212277|212278|212279|212280|212283|212285|212286|217068|221343|221344|221347|221350|221351|221352|221354|221356|221357|224889|224892|224895|224897|224899|224900|224901|224902|224905|224907|224918|224919|224922|224924|224926|224929|224931|224933|224936|224937|224938|224940|224950|224956|224957|224958|224960|224962|232860|232862|232864|239029|239043|239044|239045|239046|239047|239048|239049|239050|239051|239052|239053|239054|239055|239056|244404|244405|244406|244407|291708|358729|358730|358731|358732|358732|358733|361857|363101|366863|366866|367095|367098|367100|367103|367126|367133|368080|368104|368107|368137|393129|393147|393165|393169|393171|393173|393174|393175|393176|393178|393181|393183|393185|393187|393188|393191|393194|393196|393198|393200|393206|393212|393216|393219|393223|393224|393224|393229|393232|393301|393307|393347|393350|393358|393367|393370|393374|393378|393521|393522|393531|393533|393535|393551|393563|393564|393565|393569|393572|406057|406058|406059|406061|406062|406063|406065|406066|406067|406069|406071|406074|406075|406075|420439|420444|420449|420453|420455|434038|451527|451599|451602|451603|451605|451610|451613|451617|451860|451864|451864|451866|451869|451870|451876|451889|451891|451919|451920|451924|451929|451937|451938|452005|452072|452077|452080|452081|452086|452088|452091|452101|452120|452121|452124|473279|473281|473309|473326|473327|473337|473349|473440|473451|473461|473470|486979|486985|487013|487017|487024|487031|500395|500402|500410|500412|518665|518667|518671|518681|518683|518692|518693|518695|518723|518728|518729|518732|518734|518735|518739|518741|518742|518746|518749|518901|518908|518912|518914|518916|518918|518920|518921|518939|518940|518949|518950|518952|518954|518960|536270|539230|551810|551820|558700|558724|558726|558728|558728|558730|558732|558734|558736|559217|559253|559255|559257|559259|559261|559263|559265|559267|559269|561070|561074|561079|561083|561087|561088|561090|562171|562228|562231|562232|562236|562248|575528|575529|613553|613555|613562|613572|613603|621143|621144|623184|630696|630697|630698|630699|630700|630701|630702|630703|630704|630705|630706|630707|630708|630709|630710|630711|630712|630713|630714|630715|630716|630717|630718|630719|630720|630721|630722|630723|630724|630725|630726|630727|630728|630729|630730|630731|650954|650960|650965|651014|651028|651030|651054|651060|651065|651102|651103|651105|651150|686277|686278|686279|691251|697727|697728|697730|733663|744001|747856|747858|747860|763496|763497|763500|763501|763502|763503|777301|781500|804891|804891|804892|804892|804895|804895|807484|807488|807491|819296|819297|819298|819299|819302|819303|819304|819305|819306|819307|819308|819309|819310|822257|822258|827274|827275|827276|827277|827278|827279|827280|827281|827282|827283|827284|827285|827286|827287|827288|827289|827290|827291|827292|827293|827294|827295|827296|827297|827298|827299|850893|850895|850897|850899|850901|850981|850983|850985|850987|850989|850991|850993|850995|851009|851011|851013|851015|851218|851220|851222|851224|851226|851228|851231|851233|851235|851238|851241|851246|851248|851252|851254|851257|851456|851458|851497|851514|851518|851522|851526|922978|922979|922980|922981|922982|922983|922984|931669|931670|931671|931672|931673|931674|931675|931676|931677|931678|931679|931680|939921|939922|939923|939924|939925|940727|940728|940729|940730|940731|940732|940733|943243|943244|943245|943246|943247|943248|943249|953289|953290|953291|953292|953293|953294|959665|959666|959667|959668|959669|959670|959671|959672|959673|960496|960497|960498|960499|960500|960501|960502|960503", + "upstreamId": "17254|17255|17256|17257|17257|17258|17261|17262|17264|17264|17265|17266|17268|17268|17269|17269|17270|17271|17271|17272|17273|17273|17274|17274|17276|17277|45560|45561|45562|45566|45567|50304|52765|52766|52768|52769|52772|99233|99234|99236|99237|133285|133287|136455|139144|139145|139146|139663|139664|139665|139666|139667|139668|141608|150758|150758|171078|171079|171080|171081|173736|180107|180109|180117|180119|180120|180121|180123|180125|182205|182206|182208|186008|186009|192254|212277|212278|212279|212280|212283|212285|212286|217068|221343|221344|221347|221350|221351|221352|221354|221356|221357|224889|224892|224895|224897|224899|224900|224901|224902|224905|224907|224918|224919|224922|224924|224926|224929|224931|224933|224936|224937|224938|224940|224950|224956|224957|224958|224960|224962|232860|232862|232864|239029|239043|239044|239045|239046|239047|239048|239049|239050|239051|239052|239053|239054|239055|239056|244404|244405|244406|244407|291708|358729|358730|358731|358732|358732|358733|361857|363101|366863|366866|367095|367098|367100|367103|367126|367133|368080|368104|368107|368137|393129|393147|393165|393169|393171|393173|393174|393175|393176|393178|393181|393183|393185|393187|393188|393191|393194|393196|393198|393200|393206|393212|393216|393219|393223|393224|393224|393229|393232|393301|393307|393347|393350|393358|393367|393370|393374|393378|393521|393522|393531|393533|393535|393551|393563|393564|393565|393569|393572|406057|406058|406059|406061|406062|406063|406065|406066|406067|406069|406071|406074|406075|406075|420439|420444|420449|420453|420455|434038|451527|451599|451602|451603|451605|451610|451613|451617|451860|451864|451864|451866|451869|451870|451876|451889|451891|451919|451920|451924|451929|451937|451938|452005|452072|452077|452080|452081|452086|452088|452091|452101|452120|452121|452124|473279|473281|473309|473326|473327|473337|473349|473440|473451|473461|473470|486979|486985|487013|487017|487024|487031|500395|500402|500410|500412|518665|518667|518671|518681|518683|518692|518693|518695|518723|518728|518729|518732|518734|518735|518739|518741|518742|518746|518749|518901|518908|518912|518914|518916|518918|518920|518921|518939|518940|518949|518950|518952|518954|518960|536270|539230|551810|551820|558700|558724|558726|558728|558728|558730|558732|558734|558736|559217|559253|559255|559257|559259|559261|559263|559265|559267|559269|561070|561074|561079|561083|561087|561088|561090|562171|562228|562231|562232|562236|562248|575528|575529|613553|613555|613562|613572|613603|621143|621144|623184|630696|630697|630698|630699|630700|630701|630702|630703|630704|630705|630706|630707|630708|630709|630710|630711|630712|630713|630714|630715|630716|630717|630718|630719|630720|630721|630722|630723|630724|630725|630726|630727|630728|630729|630730|630731|650954|650960|650965|651014|651028|651030|651054|651060|651065|651102|651103|651105|651150|686277|686278|686279|691251|697727|697728|697730|733663|744001|747856|747858|747860|763496|763497|763500|763501|763502|763503|777301|781500|804891|804891|804892|804892|804895|804895|807484|807488|807491|819296|819297|819298|819299|819302|819303|819304|819305|819306|819307|819308|819309|819310|822257|822258|827274|827275|827276|827277|827278|827279|827280|827281|827282|827283|827284|827285|827286|827287|827288|827289|827290|827291|827292|827293|827294|827295|827296|827297|827298|827299|850893|850895|850897|850899|850901|850981|850983|850985|850987|850989|850991|850993|850995|851009|851011|851013|851015|851218|851220|851222|851224|851226|851228|851231|851233|851235|851238|851241|851246|851248|851252|851254|851257|851456|851458|851497|851514|851518|851522|851526|922978|922979|922980|922981|922982|922983|922984|931669|931670|931671|931672|931673|931674|931675|931676|931677|931678|931679|931680|939921|939922|939923|939924|939925|940727|940728|940729|940730|940731|940732|940733|943243|943244|943245|943246|943247|943248|943249|953289|953290|953291|953292|953293|953294|959665|959666|959667|959668|959669|959670|959671|959672|959673|960496|960497|960498|960499|960500|960501|960502|960503", "text": "Erythrocytosis, familial, 2" }, { - "baseId": "17256|32544|32545|32546|32547|32548|32549|32550|32551|32552|32553|32554|134164|134165|134166|134167|134169|134170|134171|134174|134175|134176|191271|191585|196053|196316|196317|207744|253776|253778|253781|253783|253788|264430|269344|272147|274181|359962|404787|407859|407860|421793|425878|429068|441375|459902|459905|459907|459910|459912|459917|460078|460080|460084|460331|460334|460339|460342|460348|460350|460354|460757|460765|460766|460774|460778|488721|489165|490064|513998|525181|525183|525352|525357|525476|525659|525661|538412|538413|563787|563789|563790|563792|564599|564601|566313|566314|566318|566325|566326|566331|566339|569671|569673|569675|576137|612481|612482|638951|638952|638953|638954|638955|638956|638957|638958|638959|638960|638961|638962|638963|638964|638965|638966|638967|651966|652002|652104|652138|692853|692854|692856|692857|692859|692860|692861|692862|695480|701366|737511|737512|752120|767772|778085|783615|790963|836918|836919|836920|836921|836922|836923|836924|836925|836926|836927|836928|836929|836930|836931|836932|836933|836934|836935|836936|836937|836938|836939|836940|852257|852546|925818|925819|925820|925821|925822|925823|925824|925825|925826|925827|925828|925829|935059|935060|935061|935062|935063|935064|935065|935066|946923|946924|946925|946926|946927|946928|946929|946930|946931|946932|946933|946934|956078", + "upstreamId": "17256|32544|32545|32546|32547|32548|32549|32550|32551|32552|32553|32554|134164|134165|134166|134167|134169|134170|134171|134174|134175|134176|191271|191585|196053|196316|196317|207744|253776|253778|253781|253783|253788|264430|269344|272147|274181|359962|404787|407859|407860|421793|425878|429068|441375|459902|459905|459907|459910|459912|459917|460078|460080|460084|460331|460334|460339|460342|460348|460350|460354|460757|460765|460766|460774|460778|488721|489165|490064|513998|525181|525183|525352|525357|525476|525659|525661|538412|538413|563787|563789|563790|563792|564599|564601|566313|566314|566318|566325|566326|566331|566339|569671|569673|569675|576137|612481|612482|638951|638952|638953|638954|638955|638956|638957|638958|638959|638960|638961|638962|638963|638964|638965|638966|638967|651966|652002|652104|652138|692853|692854|692856|692857|692859|692860|692861|692862|695480|701366|737511|737512|752120|767772|778085|783615|790963|836918|836919|836920|836921|836922|836923|836924|836925|836926|836927|836928|836929|836930|836931|836932|836933|836934|836935|836936|836937|836938|836939|836940|852257|852546|925818|925819|925820|925821|925822|925823|925824|925825|925826|925827|925828|925829|935059|935060|935061|935062|935063|935064|935065|935066|946923|946924|946925|946926|946927|946928|946929|946930|946931|946932|946933|946934|956078", "text": "Familial infantile myasthenia" }, { - "baseId": "17257|52768|138162|235483|247653|327448|358732|406075|451864|467353|512896|530769|551810|558728", + "upstreamId": "17257|52768|138162|235483|247653|327448|358732|406075|451864|467353|512896|530769|551810|558728", "text": "Renal cell carcinoma, nonpapillary" }, { - "baseId": "17270", + "upstreamId": "17270", "text": "Renal cell carcinoma with paraneoplastic erythrocytosis" }, { - "baseId": "17271", + "upstreamId": "17271", "text": "Acute leukemia of ambiguous lineage" }, { - "baseId": "17272|22494|22868|27386|27395|27404|27405|27413|27612|27614|27645|28117|28129|28691|28918|28924|28928|28948|28970|29000|29003|29005|29008|29010|30972|30973|48834|48858|50062|50063|52763|53970|53979|132320|151829|170209|174042|180313|182676|183040|186283|206650|206652|362755|362943|362944|362945|362946|363067|363068|363069|363070|363071|363072|363073|363074|363075|363076|363077|363078|363079|363080|363081|363101|363115|363117|363118|363133|363136|363137|363138|363139|363140|363141|363142|363143|363144|363145|363146|363147|363148|363149|363150|363151|363152|363153|363170|363171|363172|363173|363175|363176|363177|363178|363179|363180|363181|363182|363183|363184|363185|363186|363187|363188|363189|363197|363198|363199|363200|363201|363202|363213|363214|363216|363217|363218|551405|551406|567807", + "upstreamId": "17272|22494|22868|27386|27395|27404|27405|27413|27612|27614|27645|28117|28129|28691|28918|28924|28928|28948|28970|29000|29003|29005|29008|29010|30972|30973|48834|48858|50062|50063|52763|53970|53979|132320|151829|170209|174042|180313|182676|183040|186283|206650|206652|362755|362943|362944|362945|362946|363067|363068|363069|363070|363071|363072|363073|363074|363075|363076|363077|363078|363079|363080|363081|363101|363115|363117|363118|363133|363136|363137|363138|363139|363140|363141|363142|363143|363144|363145|363146|363147|363148|363149|363150|363151|363152|363153|363170|363171|363172|363173|363175|363176|363177|363178|363179|363180|363181|363182|363183|363184|363185|363186|363187|363188|363189|363197|363198|363199|363200|363201|363202|363213|363214|363216|363217|363218|551405|551406|567807", "text": "Neoplasm" }, { - "baseId": "17272|29000|32615|32627|97610|185444|313895|313897|313901|313913|313932|320206|320208|320209|320216|320220|320227|320232|320235|320282|320286|320288|320289|326279|326280|326283|326285|326288|326290|326296|327287|327288|327326|327346|327353|398614|432376|432389|432396|432403|432420|961568", + "upstreamId": "17272|29000|32615|32627|97610|185444|313895|313897|313901|313913|313932|320206|320208|320209|320216|320220|320227|320232|320235|320282|320286|320288|320289|326279|326280|326283|326285|326288|326290|326296|327287|327288|327326|327346|327353|398614|432376|432389|432396|432403|432420|961568", "text": "Nephroblastoma" }, { - "baseId": "17278|17280|17281|17282|17283|17284|17285|17286|17287|79377|79378|79379|79380|79382|79383|79384|79385|79386|79387|79388|79389|194829|249581|249582|249583|265448|265556|271388|277753|277754|277757|277758|277859|277860|277861|277863|277869|277870|278804|278806|278807|278813|278814|278865|278882|278897|364643|447325|447538|447556|489335|514875|515321|515346|515402|515403|556710|556712|556714|556759|556761|557066|557068|620710|627146|627147|627148|627149|627150|627151|627152|627153|627154|627155|627156|627157|627158|627159|627160|650697|706920|718429|731913|745889|745891|745892|745894|745896|761388|761389|761390|761391|761392|818876|823046|823047|823048|823049|823050|823051|823052|823053|850746|850941|850943|851255|862944|862945|862946|862947|862948|862949|862950|862951|862952|921765|921766|921767|930181|930182|930183|930184|940612|941594|941595|959533|961923", + "upstreamId": "17278|17280|17281|17282|17283|17284|17285|17286|17287|79377|79378|79379|79380|79382|79383|79384|79385|79386|79387|79388|79389|194829|249581|249582|249583|265448|265556|271388|277753|277754|277757|277758|277859|277860|277861|277863|277869|277870|278804|278806|278807|278813|278814|278865|278882|278897|364643|447325|447538|447556|489335|514875|515321|515346|515402|515403|556710|556712|556714|556759|556761|557066|557068|620710|627146|627147|627148|627149|627150|627151|627152|627153|627154|627155|627156|627157|627158|627159|627160|650697|706920|718429|731913|745889|745891|745892|745894|745896|761388|761389|761390|761391|761392|818876|823046|823047|823048|823049|823050|823051|823052|823053|850746|850941|850943|851255|862944|862945|862946|862947|862948|862949|862950|862951|862952|921765|921766|921767|930181|930182|930183|930184|940612|941594|941595|959533|961923", "text": "Chronic granulomatous disease, autosomal recessive cytochrome b-positive, type 2" }, { - "baseId": "17288|17289|17290|17291|17292|17293|17294|415113|614314|624360|961954", + "upstreamId": "17288|17289|17290|17291|17292|17293|17294|415113|614314|624360|961954", "text": "Chronic granulomatous disease, autosomal recessive cytochrome b-positive, type 1" }, { - "baseId": "17295|17297|17298|17299|17300|17301|17302|17303|17304|17305|17306|79102|247122|255945|255946|268891|270031|273728|409771|445656|466099|466880|467155|467157|530378|530680|530689|530907|530909|530913|548610|568452|570585|574198|589145|610427|610428|645104|645105|645106|645107|645108|645109|645110|645111|645112|645113|645114|652489|652595|652771|653073|731106|740441|740442|771138|771141|771142|771143|771144|771145|771146|771147|771148|771149|776406|820907|820908|820909|844464|844465|844466|844467|844468|844469|844470|844471|844472|851685|927999|928000|928001|937653|937654|937655|941151|949622|949623|957910|957911|957912|960183|960184|960858", + "upstreamId": "17295|17297|17298|17299|17300|17301|17302|17303|17304|17305|17306|79102|247122|255945|255946|268891|270031|273728|409771|445656|466099|466880|467155|467157|530378|530680|530689|530907|530909|530913|548610|568452|570585|574198|589145|610427|610428|645104|645105|645106|645107|645108|645109|645110|645111|645112|645113|645114|652489|652595|652771|653073|731106|740441|740442|771138|771141|771142|771143|771144|771145|771146|771147|771148|771149|776406|820907|820908|820909|844464|844465|844466|844467|844468|844469|844470|844471|844472|851685|927999|928000|928001|937653|937654|937655|941151|949622|949623|957910|957911|957912|960183|960184|960858", "text": "Granulomatous disease, chronic, autosomal recessive, cytochrome b-negative" }, { - "baseId": "17299|17304|38924|38925|39150|79102|224721|255945|255946|268891|277749|277751|277752|277850|277853|277857|277875|278841|278843|278845|409771|422469|445656|467157|470778|530378|574198|645105|645106|645107|645108|645111|652595|729577|729578|731106|740441|740442|771141|771144|771146|776406|785412|844465|844466|844469|844470|844471|850027|979811|979812|979813|979814|979815|979816|979817|979818|980101|980102|980103|980104|980105|980106|980107", + "upstreamId": "17299|17304|38924|38925|39150|79102|224721|255945|255946|268891|277749|277751|277752|277850|277853|277857|277875|278841|278843|278845|409771|422469|445656|467157|470778|530378|574198|645105|645106|645107|645108|645111|652595|729577|729578|731106|740441|740442|771141|771144|771146|776406|785412|844465|844466|844469|844470|844471|850027|979811|979812|979813|979814|979815|979816|979817|979818|980101|980102|980103|980104|980105|980106|980107", "text": "Chronic granulomatous disease" }, { - "baseId": "17302", + "upstreamId": "17302", "text": "CYBA POLYMORPHISM" }, { - "baseId": "17302|590651", + "upstreamId": "17302|590651", "text": "Very early onset inflammatory bowel disease" }, { - "baseId": "17307|17308|17308|17309|17310|17311|17312|17313|17314|17315|17316|17317|17319|17319|17320|17320|17321|39692|39695|165484|196292|198602|213787|213788|213789|213790|213791|244137|244147|244148|244149|244150|244188|439809|513488|513489|556900|624971|789828|789829|789830|789831|789834|789835|921527|966391|977168", + "upstreamId": "17307|17308|17308|17309|17310|17311|17312|17313|17314|17315|17316|17317|17319|17319|17320|17320|17321|39692|39695|165484|196292|198602|213787|213788|213789|213790|213791|244137|244147|244148|244149|244150|244188|439809|513488|513489|556900|624971|789828|789829|789830|789831|789834|789835|921527|966391|977168", "text": "Charcot-Marie-Tooth disease, type 2A2A" }, { - "baseId": "17308|17319|17319|17320|39691|39693|39694|39695|244148|439809|539959|540436|540437|578360|798912", + "upstreamId": "17308|17319|17319|17320|39691|39693|39694|39695|244148|439809|539959|540436|540437|578360|798912", "text": "Charcot-Marie-Tooth disease, axonal, autosomal recessive, type 2A2B" }, { - "baseId": "17308|17315|17316|17317|17318|17319|17320|17320|17321|39695|141913|141914|141915|141917|141918|141920|141921|141922|141923|190878|191572|196028|196292|210581|210582|210589|210590|210597|210602|210603|210605|212071|221079|238137|244186|276217|276218|276219|276220|276223|276224|276238|276239|276240|276245|276253|276260|276268|276269|276473|276475|276482|276485|276487|276488|276860|276879|276884|276885|276886|276889|276898|276899|276903|276905|276906|276907|276908|276951|276952|276953|276954|276965|276969|276970|276977|276978|276992|277008|277039|359204|364342|364422|430974|439809|481414|497999|515038|862127|862128|862129|862130|862131|862132|862133|862134|862135|862136|862137|862138|862139|862140|862141|862142|862143|862144|862145|862146|862147|862148|864970|864971|864972|918549", + "upstreamId": "17308|17315|17316|17317|17318|17319|17320|17320|17321|39695|141913|141914|141915|141917|141918|141920|141921|141922|141923|190878|191572|196028|196292|210581|210582|210589|210590|210597|210602|210603|210605|212071|221079|238137|244186|276217|276218|276219|276220|276223|276224|276238|276239|276240|276245|276253|276260|276268|276269|276473|276475|276482|276485|276487|276488|276860|276879|276884|276885|276886|276889|276898|276899|276903|276905|276906|276907|276908|276951|276952|276953|276954|276965|276969|276970|276977|276978|276992|277008|277039|359204|364342|364422|430974|439809|481414|497999|515038|862127|862128|862129|862130|862131|862132|862133|862134|862135|862136|862137|862138|862139|862140|862141|862142|862143|862144|862145|862146|862147|862148|864970|864971|864972|918549", "text": "Hereditary motor and sensory neuropathy with optic atrophy" }, { - "baseId": "17319", + "upstreamId": "17319", "text": "MFN2-Related Disorders" }, { - "baseId": "17322|39686|39687|82413|102399|102401|135471|135472|135473|135474|135475|135476|142505|142506|142507|142509|142510|142511|177978|178388|181292|195041|195782|196078|196080|202684|202685|202686|202688|202689|202690|202693|202696|202697|202699|202704|202706|202707|202708|241552|241553|244138|265444|269130|317066|317070|317084|324780|324811|324820|330902|330914|360943|373027|373033|373035|373037|373251|375109|375126|398985|399142|399143|399456|399457|408653|444995|444996|462162|462164|462171|462174|462445|462449|462452|462455|462459|462950|462957|462966|463087|463095|463097|463101|491613|493645|504424|527150|527157|527172|527178|527418|527428|527436|527664|527666|527669|527688|527693|527695|527697|565465|565474|565476|566287|566835|566836|568043|568044|568050|571851|579810|579820|641127|641128|641129|641130|641131|641132|652323|687989|687990|687991|687993|769115|793423|839904|839905|839906|839907|839908|839909|839910|839911|839912|839913|839914|839915|839916|839917|839918|839919|839920|839921|839922|839923|839924|839925|839926|926623|926624|926625|926626|926627|926628|926629|926630|936113|936114|936115|936116|936117|936118|936119|936120|936121|936122|948013|948014|948015|948016|948017|948018|948019|956868|956869|956870|956871|970960", + "upstreamId": "17322|39686|39687|82413|102399|102401|135471|135472|135473|135474|135475|135476|142505|142506|142507|142509|142510|142511|177978|178388|181292|195041|195782|196078|196080|202684|202685|202686|202688|202689|202690|202693|202696|202697|202699|202704|202706|202707|202708|241552|241553|244138|265444|269130|317066|317070|317084|324780|324811|324820|330902|330914|360943|373027|373033|373035|373037|373251|375109|375126|398985|399142|399143|399456|399457|408653|444995|444996|462162|462164|462171|462174|462445|462449|462452|462455|462459|462950|462957|462966|463087|463095|463097|463101|491613|493645|504424|527150|527157|527172|527178|527418|527428|527436|527664|527666|527669|527688|527693|527695|527697|565465|565474|565476|566287|566835|566836|568043|568044|568050|571851|579810|579820|641127|641128|641129|641130|641131|641132|652323|687989|687990|687991|687993|769115|793423|839904|839905|839906|839907|839908|839909|839910|839911|839912|839913|839914|839915|839916|839917|839918|839919|839920|839921|839922|839923|839924|839925|839926|926623|926624|926625|926626|926627|926628|926629|926630|936113|936114|936115|936116|936117|936118|936119|936120|936121|936122|948013|948014|948015|948016|948017|948018|948019|956868|956869|956870|956871|970960", "text": "Progressive myoclonus epilepsy with ataxia" }, { - "baseId": "17323|17324|17325|17326|17327|17328|17331|17332|17334|17335|17336|38424|101555|101556|101557|101557|101558|101559|101560|101562|101564|101565|101566|165496|165497|165499|165499|165500|165502|165502|167386|167386|167387|167387|190879|193136|205757|205758|244159|253350|253350|253353|253356|253356|253357|253359|253359|253360|253360|253361|253363|253363|270115|270117|270117|307125|307126|307130|307131|307134|307135|307136|307141|307142|307146|307150|307153|307153|307167|307167|307168|307171|307174|307175|307176|307176|307183|307184|307187|307190|307193|311247|311250|311273|311308|311314|311316|311316|311320|311322|311323|311324|311328|311333|311333|311334|311334|311335|311335|311351|311352|316834|316846|316847|316848|316852|316855|316866|316877|316880|316880|316882|316886|316887|316896|316914|316914|316915|316917|316918|316918|316919|316919|316922|316922|316925|316926|317275|317281|317282|317283|317284|317285|317292|317295|317296|317299|317307|317308|317308|317319|317323|317324|317324|317333|317346|317346|317350|317350|317351|411570|411570|411571|411571|415165|433911|433912|433913|441269|441270|441271|441274|441277|441282|441283|441286|441287|441287|441290|441293|441298|441302|441305|441307|441308|441311|441311|441312|441312|441314|458502|458513|458524|458525|458535|458535|458553|458553|458555|458558|458558|458571|458573|458575|458576|458929|458933|458941|458952|458952|458959|458959|458964|458965|458967|458967|458968|458973|458974|458977|458979|458981|458982|458985|458985|458987|458987|458988|458988|458990|458992|458994|458998|459005|459007|459439|459441|459446|459447|459448|459448|459455|481843|481843|513297|524098|524108|524109|524114|524115|524119|524123|524124|524388|524390|524392|524393|524399|524399|524401|524403|524603|524614|524616|524623|524627|524629|524651|524653|524656|524661|524666|524677|524681|524686|524703|524706|524711|524717|524717|552134|552135|562850|562855|562856|562857|562862|562864|562866|562868|562872|563595|563596|563600|563603|563604|565598|565600|565606|565611|565612|565615|565616|565616|568588|568595|568597|568599|568605|568607|568612|577104|577107|577109|577111|577112|609722|620322|637802|637803|637804|637804|637805|637806|637806|637807|637808|637809|637810|637811|637812|637813|637814|637815|637816|637817|637818|692603|692604|692605|692605|692606|692609|692611|692612|692615|692616|692618|692619|692620|692621|736971|736972|736973|787602|793305|793307|793311|793323|793324|793328|793330|798614|798615|798616|799585|800789|820080|820081|821983|835609|835610|835611|835612|835613|835613|835614|835615|835616|835617|835618|835619|835620|835621|835622|835623|835624|835625|835625|835626|835627|835628|852492|859729|861358|861359|861632|901212|901213|901214|901215|901216|901217|901218|901219|901220|901221|901222|901223|901224|901225|901226|901227|901228|901229|901230|901231|901232|901233|901234|901235|901236|901237|901238|901239|901240|901241|901242|901243|901244|901245|901246|901247|901248|901249|901250|901251|901252|901253|901254|901255|901256|901257|901258|901259|901260|901261|901262|901263|901263|901264|901265|901266|901267|901268|901269|901270|901271|901272|903327|903328|903329|903330|919193|925415|925416|925417|925418|925419|925420|925421|925422|925423|934585|934586|934587|934588|934589|934590|934591|934592|946410|946411|946412|946413|946414|946415|946416|946417|955717|955718|955719|955720|955721|970898|970899", + "upstreamId": "17323|17324|17325|17326|17327|17328|17331|17332|17334|17335|17336|38424|101555|101556|101557|101557|101558|101559|101560|101562|101564|101565|101566|165496|165497|165499|165499|165500|165502|165502|167386|167386|167387|167387|190879|193136|205757|205758|244159|253350|253350|253353|253356|253356|253357|253359|253359|253360|253360|253361|253363|253363|270115|270117|270117|307125|307126|307130|307131|307134|307135|307136|307141|307142|307146|307150|307153|307153|307167|307167|307168|307171|307174|307175|307176|307176|307183|307184|307187|307190|307193|311247|311250|311273|311308|311314|311316|311316|311320|311322|311323|311324|311328|311333|311333|311334|311334|311335|311335|311351|311352|316834|316846|316847|316848|316852|316855|316866|316877|316880|316880|316882|316886|316887|316896|316914|316914|316915|316917|316918|316918|316919|316919|316922|316922|316925|316926|317275|317281|317282|317283|317284|317285|317292|317295|317296|317299|317307|317308|317308|317319|317323|317324|317324|317333|317346|317346|317350|317350|317351|411570|411570|411571|411571|415165|433911|433912|433913|441269|441270|441271|441274|441277|441282|441283|441286|441287|441287|441290|441293|441298|441302|441305|441307|441308|441311|441311|441312|441312|441314|458502|458513|458524|458525|458535|458535|458553|458553|458555|458558|458558|458571|458573|458575|458576|458929|458933|458941|458952|458952|458959|458959|458964|458965|458967|458967|458968|458973|458974|458977|458979|458981|458982|458985|458985|458987|458987|458988|458988|458990|458992|458994|458998|459005|459007|459439|459441|459446|459447|459448|459448|459455|481843|481843|513297|524098|524108|524109|524114|524115|524119|524123|524124|524388|524390|524392|524393|524399|524399|524401|524403|524603|524614|524616|524623|524627|524629|524651|524653|524656|524661|524666|524677|524681|524686|524703|524706|524711|524717|524717|552134|552135|562850|562855|562856|562857|562862|562864|562866|562868|562872|563595|563596|563600|563603|563604|565598|565600|565606|565611|565612|565615|565616|565616|568588|568595|568597|568599|568605|568607|568612|577104|577107|577109|577111|577112|609722|620322|637802|637803|637804|637804|637805|637806|637806|637807|637808|637809|637810|637811|637812|637813|637814|637815|637816|637817|637818|692603|692604|692605|692605|692606|692609|692611|692612|692615|692616|692618|692619|692620|692621|736971|736972|736973|787602|793305|793307|793311|793323|793324|793328|793330|798614|798615|798616|799585|800789|820080|820081|821983|835609|835610|835611|835612|835613|835613|835614|835615|835616|835617|835618|835619|835620|835621|835622|835623|835624|835625|835625|835626|835627|835628|852492|859729|861358|861359|861632|901212|901213|901214|901215|901216|901217|901218|901219|901220|901221|901222|901223|901224|901225|901226|901227|901228|901229|901230|901231|901232|901233|901234|901235|901236|901237|901238|901239|901240|901241|901242|901243|901244|901245|901246|901247|901248|901249|901250|901251|901252|901253|901254|901255|901256|901257|901258|901259|901260|901261|901262|901263|901263|901264|901265|901266|901267|901268|901269|901270|901271|901272|903327|903328|903329|903330|919193|925415|925416|925417|925418|925419|925420|925421|925422|925423|934585|934586|934587|934588|934589|934590|934591|934592|946410|946411|946412|946413|946414|946415|946416|946417|955717|955718|955719|955720|955721|970898|970899", "text": "Spinocerebellar ataxia, autosomal recessive, with axonal neuropathy 2" }, { - "baseId": "17328|17328|17329|17330|17332|38424|101555|101556|101557|101557|101558|101559|101560|101562|101564|101565|101565|101566|165496|165497|165499|165499|165500|165500|165502|165502|167386|167386|167387|167387|190879|193136|253350|253350|253353|253356|253356|253357|253359|253359|253360|253360|253361|253363|253363|270115|270117|270117|307125|307126|307130|307131|307134|307135|307136|307141|307142|307146|307150|307153|307153|307167|307167|307168|307171|307174|307175|307176|307176|307183|307184|307187|307190|307193|311247|311250|311273|311308|311314|311316|311316|311320|311322|311323|311324|311328|311333|311333|311334|311334|311335|311335|311351|311352|316834|316846|316847|316848|316852|316855|316866|316877|316880|316880|316882|316886|316887|316896|316914|316914|316915|316917|316918|316918|316919|316919|316922|316922|316925|316926|317275|317281|317282|317283|317284|317285|317292|317295|317296|317299|317307|317308|317308|317319|317323|317324|317324|317333|317346|317346|317350|317350|317351|411570|411570|411571|411571|415165|433911|433912|433913|441269|441270|441271|441274|441277|441282|441286|441287|441287|441290|441293|441295|441298|441302|441305|441307|441308|441311|441311|441312|441312|441314|458502|458513|458524|458525|458535|458535|458553|458553|458555|458558|458558|458571|458573|458575|458576|458929|458933|458941|458952|458952|458959|458959|458964|458965|458967|458967|458968|458973|458974|458977|458979|458981|458982|458985|458985|458987|458987|458988|458988|458990|458992|458994|458998|459005|459007|459439|459441|459446|459447|459448|459455|481843|481843|524098|524108|524109|524114|524115|524119|524123|524124|524388|524390|524392|524393|524399|524399|524401|524403|524603|524614|524616|524623|524627|524629|524651|524653|524656|524661|524666|524677|524681|524686|524703|524706|524711|524717|524717|540455|562850|562855|562856|562857|562862|562864|562866|562868|562872|563595|563596|563600|563603|563604|565598|565600|565606|565611|565612|565615|565616|565616|568588|568595|568597|568599|568605|568607|568612|577104|577107|577109|577111|577112|609722|620322|637802|637803|637804|637804|637805|637806|637806|637807|637808|637809|637810|637811|637812|637813|637814|637815|637816|637817|637818|692603|692604|692605|692605|692606|692609|692611|692612|692615|692616|692618|692619|692620|692621|736971|736972|736973|787602|790848|790849|793305|793307|793311|793323|793324|793328|799585|820080|820081|821983|835609|835610|835611|835612|835613|835613|835614|835615|835616|835617|835618|835619|835620|835621|835622|835623|835624|835625|835625|835626|835627|835628|852492|859729|861358|861359|861359|901212|901213|901214|901215|901216|901217|901218|901219|901220|901221|901222|901223|901224|901225|901226|901227|901228|901229|901230|901231|901232|901233|901234|901235|901236|901237|901238|901239|901240|901241|901242|901243|901244|901245|901246|901247|901248|901249|901250|901251|901252|901253|901254|901255|901256|901257|901258|901259|901260|901261|901262|901263|901263|901264|901265|901266|901267|901268|901269|901270|901271|901272|903327|903328|903329|903330|925415|925416|925417|925418|925419|925420|925421|925422|925423|934585|934586|934587|934588|934589|934590|934591|934592|946410|946411|946412|946413|946414|946415|946416|946417|955717|955718|955719|955720|955721", + "upstreamId": "17328|17328|17329|17330|17332|38424|101555|101556|101557|101557|101558|101559|101560|101562|101564|101565|101565|101566|165496|165497|165499|165499|165500|165500|165502|165502|167386|167386|167387|167387|190879|193136|253350|253350|253353|253356|253356|253357|253359|253359|253360|253360|253361|253363|253363|270115|270117|270117|307125|307126|307130|307131|307134|307135|307136|307141|307142|307146|307150|307153|307153|307167|307167|307168|307171|307174|307175|307176|307176|307183|307184|307187|307190|307193|311247|311250|311273|311308|311314|311316|311316|311320|311322|311323|311324|311328|311333|311333|311334|311334|311335|311335|311351|311352|316834|316846|316847|316848|316852|316855|316866|316877|316880|316880|316882|316886|316887|316896|316914|316914|316915|316917|316918|316918|316919|316919|316922|316922|316925|316926|317275|317281|317282|317283|317284|317285|317292|317295|317296|317299|317307|317308|317308|317319|317323|317324|317324|317333|317346|317346|317350|317350|317351|411570|411570|411571|411571|415165|433911|433912|433913|441269|441270|441271|441274|441277|441282|441286|441287|441287|441290|441293|441295|441298|441302|441305|441307|441308|441311|441311|441312|441312|441314|458502|458513|458524|458525|458535|458535|458553|458553|458555|458558|458558|458571|458573|458575|458576|458929|458933|458941|458952|458952|458959|458959|458964|458965|458967|458967|458968|458973|458974|458977|458979|458981|458982|458985|458985|458987|458987|458988|458988|458990|458992|458994|458998|459005|459007|459439|459441|459446|459447|459448|459455|481843|481843|524098|524108|524109|524114|524115|524119|524123|524124|524388|524390|524392|524393|524399|524399|524401|524403|524603|524614|524616|524623|524627|524629|524651|524653|524656|524661|524666|524677|524681|524686|524703|524706|524711|524717|524717|540455|562850|562855|562856|562857|562862|562864|562866|562868|562872|563595|563596|563600|563603|563604|565598|565600|565606|565611|565612|565615|565616|565616|568588|568595|568597|568599|568605|568607|568612|577104|577107|577109|577111|577112|609722|620322|637802|637803|637804|637804|637805|637806|637806|637807|637808|637809|637810|637811|637812|637813|637814|637815|637816|637817|637818|692603|692604|692605|692605|692606|692609|692611|692612|692615|692616|692618|692619|692620|692621|736971|736972|736973|787602|790848|790849|793305|793307|793311|793323|793324|793328|799585|820080|820081|821983|835609|835610|835611|835612|835613|835613|835614|835615|835616|835617|835618|835619|835620|835621|835622|835623|835624|835625|835625|835626|835627|835628|852492|859729|861358|861359|861359|901212|901213|901214|901215|901216|901217|901218|901219|901220|901221|901222|901223|901224|901225|901226|901227|901228|901229|901230|901231|901232|901233|901234|901235|901236|901237|901238|901239|901240|901241|901242|901243|901244|901245|901246|901247|901248|901249|901250|901251|901252|901253|901254|901255|901256|901257|901258|901259|901260|901261|901262|901263|901263|901264|901265|901266|901267|901268|901269|901270|901271|901272|903327|903328|903329|903330|925415|925416|925417|925418|925419|925420|925421|925422|925423|934585|934586|934587|934588|934589|934590|934591|934592|946410|946411|946412|946413|946414|946415|946416|946417|955717|955718|955719|955720|955721", "text": "Amyotrophic lateral sclerosis type 4" }, { - "baseId": "17328|17329|17330|20041|24246|24247|141142|141143|141144|141145|141146|141147|171902|171903|186076|191530|192141|212511|212578|215003|221697|221699|230227|237453|244499|244678|244732|252786|252788|252790|252795|281044|281097|281645|281648|281667|281669|281687|282892|283165|283172|302780|302781|302785|302795|302796|302798|302805|306103|306109|306110|306131|306135|306149|306154|310897|310901|310902|310903|310904|310905|310906|310908|310909|311055|311072|311080|311081|311082|311085|311086|311087|311089|311090|311091|311092|311094|395634|402131|407124|425751|455267|457158|457340|482001|509044|512853|521333|528356|531096|540442|540445|540446|540455|540458|540464|552154|564895|565041|570939|609186|610418|611754|625137|625139|625205|625208|625209|625211|625217|625218|625219|625220|625222|625223|625228|625233|625234|625235|625240|625244|625245|625246|625248|625250|625251|625252|625254|625751|625752|636133|651628|683004|683006|683009|683044|683045|683046|683051|683063|683064|683069|683076|683099|683101|683102|683104|683115|815845|815846|833570|897972|897973|897974|897975|897976|897977|897978|897979|897980|897981|897982|897983|900352", + "upstreamId": "17328|17329|17330|20041|24246|24247|141142|141143|141144|141145|141146|141147|171902|171903|186076|191530|192141|212511|212578|215003|221697|221699|230227|237453|244499|244678|244732|252786|252788|252790|252795|281044|281097|281645|281648|281667|281669|281687|282892|283165|283172|302780|302781|302785|302795|302796|302798|302805|306103|306109|306110|306131|306135|306149|306154|310897|310901|310902|310903|310904|310905|310906|310908|310909|311055|311072|311080|311081|311082|311085|311086|311087|311089|311090|311091|311092|311094|395634|402131|407124|425751|455267|457158|457340|482001|509044|512853|521333|528356|531096|540442|540445|540446|540455|540458|540464|552154|564895|565041|570939|609186|610418|611754|625137|625139|625205|625208|625209|625211|625217|625218|625219|625220|625222|625223|625228|625233|625234|625235|625240|625244|625245|625246|625248|625250|625251|625252|625254|625751|625752|636133|651628|683004|683006|683009|683044|683045|683046|683051|683063|683064|683069|683076|683099|683101|683102|683104|683115|815845|815846|833570|897972|897973|897974|897975|897976|897977|897978|897979|897980|897981|897982|897983|900352", "text": "Distal spinal muscular atrophy" }, { - "baseId": "17337|17338|17339|17341|17342|17343|17344|17345|17346|17347|17348|17349|17350|17351|17352|17353|17355|48554|48555|101188|101189|101190|101191|101192|101193|101194|101195|101196|101197|101198|101199|143230|143231|143232|143233|143234|166121|177268|186829|186830|186831|186832|190481|190844|190845|191048|191396|191552|191911|192660|194938|195991|199796|254232|254235|254237|254238|254239|265282|265626|265979|266820|266821|267655|269450|272802|274272|275306|314518|314519|314521|314522|314523|314527|321218|321219|321226|321227|321232|321241|321242|321245|327317|327318|327324|327332|327350|327352|327362|327363|327364|327366|327378|327379|328384|328393|328398|328408|328412|328414|357999|358000|358001|358002|358003|358004|358005|358006|358007|358008|358009|358010|358011|358012|358013|358014|358015|358016|358017|358018|358019|371520|371530|372278|372496|372504|408400|408401|408402|415285|421868|421870|426717|444844|444847|444849|462106|488299|503894|503896|503907|504282|504291|526859|536817|537158|546093|546095|546104|546110|546117|546123|546374|546377|546392|546400|546401|546402|546519|546539|546542|546546|546547|546552|546553|546564|546569|546759|546765|546768|546769|546770|546772|546775|564797|564803|565956|565967|567408|567410|570768|582676|583829|612155|620414|622405|623155|626207|640248|640249|640250|640251|640252|640253|652222|713003|724570|730783|730784|730785|730786|738101|738102|738103|738104|744597|752771|752772|752773|752774|759915|768551|768553|768555|768557|768558|768559|768561|768562|775766|775767|775921|775924|775927|784057|784058|784061|784062|784064|784065|784066|791148|791149|792782|796615|798643|820395|820396|820397|820398|820399|838696|838697|838698|838699|838700|838701|838702|838703|838704|851883|852374|852617|868242|868243|868244|868245|868246|868247|868248|868249|868250|868251|868252|868253|868254|868669|868670|926315|926316|926317|926318|926319|935659|935660|935661|935662|935663|935664|947559|947560|956568|956569|956570|956571|956572|956573|956574|956575|956576|956577|956578|974892|979026|979027|979028|979029|979030|979031|979032|979033|979034|979035|979036|979037|979038|979039|979040|979041|979042|979043|979044|979045|979046|979047", + "upstreamId": "17337|17338|17339|17341|17342|17343|17344|17345|17346|17347|17348|17349|17350|17351|17352|17353|17355|48554|48555|101188|101189|101190|101191|101192|101193|101194|101195|101196|101197|101198|101199|143230|143231|143232|143233|143234|166121|177268|186829|186830|186831|186832|190481|190844|190845|191048|191396|191552|191911|192660|194938|195991|199796|254232|254235|254237|254238|254239|265282|265626|265979|266820|266821|267655|269450|272802|274272|275306|314518|314519|314521|314522|314523|314527|321218|321219|321226|321227|321232|321241|321242|321245|327317|327318|327324|327332|327350|327352|327362|327363|327364|327366|327378|327379|328384|328393|328398|328408|328412|328414|357999|358000|358001|358002|358003|358004|358005|358006|358007|358008|358009|358010|358011|358012|358013|358014|358015|358016|358017|358018|358019|371520|371530|372278|372496|372504|408400|408401|408402|415285|421868|421870|426717|444844|444847|444849|462106|488299|503894|503896|503907|504282|504291|526859|536817|537158|546093|546095|546104|546110|546117|546123|546374|546377|546392|546400|546401|546402|546519|546539|546542|546546|546547|546552|546553|546564|546569|546759|546765|546768|546769|546770|546772|546775|564797|564803|565956|565967|567408|567410|570768|582676|583829|612155|620414|622405|623155|626207|640248|640249|640250|640251|640252|640253|652222|713003|724570|730783|730784|730785|730786|738101|738102|738103|738104|744597|752771|752772|752773|752774|759915|768551|768553|768555|768557|768558|768559|768561|768562|775766|775767|775921|775924|775927|784057|784058|784061|784062|784064|784065|784066|791148|791149|792782|796615|798643|820395|820396|820397|820398|820399|838696|838697|838698|838699|838700|838701|838702|838703|838704|851883|852374|852617|868242|868243|868244|868245|868246|868247|868248|868249|868250|868251|868252|868253|868254|868669|868670|926315|926316|926317|926318|926319|935659|935660|935661|935662|935663|935664|947559|947560|956568|956569|956570|956571|956572|956573|956574|956575|956576|956577|956578|974892|979026|979027|979028|979029|979030|979031|979032|979033|979034|979035|979036|979037|979038|979039|979040|979041|979042|979043|979044|979045|979046|979047", "text": "Glycogen storage disease, type V" }, { - "baseId": "17354|17355", + "upstreamId": "17354|17355", "text": "McArdle disease, mild" }, { - "baseId": "17356|17357|17358|17359|17360|17361|39682|140940|140941|140942|140943|211889|211890|211891|211892|211893|211894|211895|257139|333729|333732|333733|333736|343706|349053|349054|349055|349058|349945|349947|349948|361262|376595|424283|426319|430239|430240|471010|481376|481377|487822|487823|496113|496114|496115|496116|496117|496118|496119|496120|496121|496122|496123|496124|496125|496126|496127|496128|506854|533188|550091|570844|573182|590458|609188|620641|648171|648172|652951|694465|694466|716506|716507|745414|757092|772735|772736|786219|821262|821263|882108|882109|882110|882111|882112|882113|882904|904213|938726|938727|950819|958653|958654|960293|979986", + "upstreamId": "17356|17357|17358|17359|17360|17361|39682|140940|140941|140942|140943|211889|211890|211891|211892|211893|211894|211895|257139|333729|333732|333733|333736|343706|349053|349054|349055|349058|349945|349947|349948|361262|376595|424283|426319|430239|430240|471010|481376|481377|487822|487823|496113|496114|496115|496116|496117|496118|496119|496120|496121|496122|496123|496124|496125|496126|496127|496128|506854|533188|550091|570844|573182|590458|609188|620641|648171|648172|652951|694465|694466|716506|716507|745414|757092|772735|772736|786219|821262|821263|882108|882109|882110|882111|882112|882113|882904|904213|938726|938727|950819|958653|958654|960293|979986", "text": "Ethylmalonic encephalopathy" }, { - "baseId": "17363|135902|135903|135904|135905|135906|135907|135908|135909|135910|135911|135912|135913|135914|135915|135916|135917|135919|135920|135921|135922|135923|135924|135925|135926|135927|135928|135929|135930|135931|135932|135933|135934|135935|135936|135937|135938|135939|135940|135941|135942|135943|135944|135945|135946|135947|135948|135949|135950|135951|135952|135953|135954|135955|135956|135957|135958|135959|135960|135961|135962|135963|135964|135965|135966|135967|181471|190934|190937|190942|191116|191117|191118|191119|191120|193075|194040|194214|194697|194764|194765|194766|194767|194774|195157|195500|195805|195824|195843|196113|196124|196125|196135|196138|196379|196406|208122|247097|265388|265429|265433|265510|265521|265540|265544|265547|265907|266027|266061|266081|266247|266267|266337|266338|266340|266341|266344|266355|266403|266426|266441|266442|266508|266514|266526|266540|266646|266695|266701|266714|266739|266747|266751|266753|266759|266781|266855|266856|266858|266898|266901|267053|267109|267116|267119|267129|267132|267298|267299|267377|267379|267404|267444|267445|267453|267472|267507|267508|267540|267554|267561|267630|267644|267645|267648|267672|267730|267856|267857|267858|267905|267939|267940|267956|267960|267978|268183|268194|268200|268218|268225|268497|268537|269402|269703|270065|270176|270181|270391|270420|270424|271002|271997|272134|274000|274164|274166|320785|320792|320797|320802|320805|320806|320807|320809|320811|320812|320815|320816|320819|320823|320824|320829|320833|320835|320836|320838|320841|320844|320845|320851|320854|320857|320858|320859|320860|320867|320872|320878|320879|320882|320889|320890|320891|320897|320899|320900|320902|320903|320910|320915|320917|320921|320925|320927|329661|329673|329676|329686|329689|329702|329703|329710|329711|329714|329715|329726|329744|329746|329747|329748|329756|329770|329775|329785|329786|329795|329804|329805|329818|329824|329825|329826|329828|329830|329831|329833|329834|329844|329847|329850|329853|329855|329857|329871|329884|329897|329898|329910|329911|329913|329914|329919|329931|329932|329933|329935|329936|329945|329946|329954|329956|329957|329960|329963|329964|329970|336242|336250|336254|336257|336261|336262|336264|336268|336273|336282|336283|336288|336289|336316|336317|336319|336321|336326|336330|336331|336332|336339|336340|336343|336355|336359|336362|336373|336374|336402|336403|336406|336412|336413|336416|336418|336421|336427|336435|336439|336443|336451|336459|336460|336480|336482|336484|336487|336488|336494|336499|338179|338182|338183|338189|338199|338211|338216|338220|338233|338235|338238|338244|338248|338252|338253|338261|338267|338268|338274|338284|338286|338288|338290|338292|338299|338303|338304|338309|338314|338335|338337|338338|338342|338343|338349|338351|338356|338362|338378|338379|338391|338392|338393|338397|338399|338400|338406|338426|338427|338434|338435|338437|338439|363843|429586|429589|441654|441656|441657|441659|441660|441662|441663|441664|441666|441668|445245|463359|463362|463367|463371|463373|463375|463379|463381|463384|463386|463388|463390|463399|463402|463415|463883|463885|463888|463890|463904|463906|463908|463926|463928|463930|463933|463936|463938|463947|463950|463955|463960|463961|463970|463985|464225|464231|464232|464236|464238|464242|464246|464249|464250|464252|464255|464258|464262|464264|464269|464272|464276|464282|464284|464286|464288|464293|464296|464305|464310|464316|464317|464365|464366|464368|464371|464372|464376|464380|464385|464391|464404|464420|464424|464427|464429|464433|491839|513620|513621|528239|528240|528245|528254|528255|528256|528257|528258|528260|528261|528262|528263|528266|528271|528273|528276|528278|528280|528290|528294|528306|528308|528312|528605|528607|528615|528620|528621|528625|528632|528635|528645|528654|528656|528660|528662|528666|528670|528679|528683|528684|528715|528718|528722|528726|528730|528732|528735|528738|528741|528744|528746|528749|528753|528756|528757|528765|539054|566509|566515|566517|566519|566524|566527|566530|566533|566535|566537|566540|566545|566549|566553|566554|566557|566559|568179|568187|568189|568192|568194|568197|568203|568204|568205|568208|568211|568213|568218|568219|568221|568223|568224|568971|568974|568980|568981|568983|568986|568992|568993|568997|572844|572847|572854|572856|572858|572859|572860|572861|572862|572863|572869|572872|572873|572876|577353|577357|578513|578514|612992|626231|642537|642538|642539|642540|642541|642542|642543|642544|642545|642546|642547|642548|642549|642550|642551|642552|642553|642554|642555|642556|642557|642558|642559|642560|642561|642562|642563|642564|642565|642566|642567|642568|642569|642570|642571|642572|642573|642574|642575|642576|642577|642578|642579|642580|642581|642582|642583|642584|642585|642586|642587|642588|642589|642590|642591|642592|642593|642594|642595|642596|642597|642598|642599|642600|642601|642602|642603|642604|642605|642606|642607|642608|642609|642610|642611|642612|642613|642614|642615|642616|642617|642618|642619|642620|642621|642622|642623|642624|642625|642626|642627|652471|652602|652607|652610|652959|688324|688325|688326|688327|688329|688331|693522|693530|693531|693532|693533|693535|693537|693538|693539|693541|693543|693544|693545|693547|693549|693550|693551|693552|693554|693555|693557|693558|693559|693560|695623|695625|695626|695627|702937|702938|702940|702941|702943|702946|702948|714185|714186|714189|725740|725741|754104|769844|769851|769852|769860|776280|787879|793513|841579|841580|841581|841582|841583|841584|841585|841586|841587|841588|841589|841590|841591|841592|841593|841594|841595|841596|841597|841598|841599|841600|841601|841602|841603|841604|841605|841606|841607|841608|841609|841610|841611|841612|841613|841614|841615|841616|841617|841618|841619|841620|841621|841622|841623|841624|841625|841626|841627|841628|841629|841630|841631|841632|841633|841634|841635|841636|841637|841638|841639|841640|841641|841642|841643|841644|841645|841646|841647|841648|841649|841650|841651|841652|851563|851565|851567|852005|852007|852009|852560|852561|852562|852564|852748|871997|871998|871999|872000|872001|872002|872003|872004|872005|872006|872007|872008|872009|872010|872011|872012|872013|872014|872015|872016|872017|872018|872019|872020|872021|872022|872023|872024|872025|872026|872027|872028|872029|872030|872031|872032|872033|872034|872035|872036|872037|872038|872039|872040|872041|872042|872043|872044|872045|872046|872047|872048|872049|872050|872051|872052|872053|872054|872055|872056|872057|872058|872059|872060|872061|872062|872063|872064|872065|872066|872067|872068|872069|872070|872071|872072|872073|872074|872075|872076|872077|872078|872079|872080|872081|872082|872083|872372|872373|872374|872375|872376|872377|872378|872379|872380|872381|872382|872383|872384|872385|872386|872387|919534|919535|919536|919537|919538|919539|920336|927116|927117|927118|927119|927120|927121|927122|927123|927124|927125|927126|927127|927128|927129|927130|927131|927132|927133|927134|927135|927136|927137|927138|927139|927140|927141|927142|927143|936651|936652|936653|936654|936655|936656|936657|936658|936659|936660|936661|936662|936663|936664|936665|936666|936667|936668|936669|936670|936671|936672|936673|936674|936675|936676|936677|936678|936679|936680|936681|936682|936683|940307|940308|940309|941062|941063|948600|948601|948602|948603|948604|948605|948606|948607|948608|948609|948610|948611|948612|948613|948614|948615|948616|948617|948618|948619|948620|948621|948622|948623|948624|948625|948626|957242|957243|957244|957245|957246|957247|957248|957249|957250|957251|957252|957253|957254|957255|957256|957257|957258|957259|957260|957261|957262|957263|960095|960806|970997", + "upstreamId": "17363|135902|135903|135904|135905|135906|135907|135908|135909|135910|135911|135912|135913|135914|135915|135916|135917|135919|135920|135921|135922|135923|135924|135925|135926|135927|135928|135929|135930|135931|135932|135933|135934|135935|135936|135937|135938|135939|135940|135941|135942|135943|135944|135945|135946|135947|135948|135949|135950|135951|135952|135953|135954|135955|135956|135957|135958|135959|135960|135961|135962|135963|135964|135965|135966|135967|181471|190934|190937|190942|191116|191117|191118|191119|191120|193075|194040|194214|194697|194764|194765|194766|194767|194774|195157|195500|195805|195824|195843|196113|196124|196125|196135|196138|196379|196406|208122|247097|265388|265429|265433|265510|265521|265540|265544|265547|265907|266027|266061|266081|266247|266267|266337|266338|266340|266341|266344|266355|266403|266426|266441|266442|266508|266514|266526|266540|266646|266695|266701|266714|266739|266747|266751|266753|266759|266781|266855|266856|266858|266898|266901|267053|267109|267116|267119|267129|267132|267298|267299|267377|267379|267404|267444|267445|267453|267472|267507|267508|267540|267554|267561|267630|267644|267645|267648|267672|267730|267856|267857|267858|267905|267939|267940|267956|267960|267978|268183|268194|268200|268218|268225|268497|268537|269402|269703|270065|270176|270181|270391|270420|270424|271002|271997|272134|274000|274164|274166|320785|320792|320797|320802|320805|320806|320807|320809|320811|320812|320815|320816|320819|320823|320824|320829|320833|320835|320836|320838|320841|320844|320845|320851|320854|320857|320858|320859|320860|320867|320872|320878|320879|320882|320889|320890|320891|320897|320899|320900|320902|320903|320910|320915|320917|320921|320925|320927|329661|329673|329676|329686|329689|329702|329703|329710|329711|329714|329715|329726|329744|329746|329747|329748|329756|329770|329775|329785|329786|329795|329804|329805|329818|329824|329825|329826|329828|329830|329831|329833|329834|329844|329847|329850|329853|329855|329857|329871|329884|329897|329898|329910|329911|329913|329914|329919|329931|329932|329933|329935|329936|329945|329946|329954|329956|329957|329960|329963|329964|329970|336242|336250|336254|336257|336261|336262|336264|336268|336273|336282|336283|336288|336289|336316|336317|336319|336321|336326|336330|336331|336332|336339|336340|336343|336355|336359|336362|336373|336374|336402|336403|336406|336412|336413|336416|336418|336421|336427|336435|336439|336443|336451|336459|336460|336480|336482|336484|336487|336488|336494|336499|338179|338182|338183|338189|338199|338211|338216|338220|338233|338235|338238|338244|338248|338252|338253|338261|338267|338268|338274|338284|338286|338288|338290|338292|338299|338303|338304|338309|338314|338335|338337|338338|338342|338343|338349|338351|338356|338362|338378|338379|338391|338392|338393|338397|338399|338400|338406|338426|338427|338434|338435|338437|338439|363843|429586|429589|441654|441656|441657|441659|441660|441662|441663|441664|441666|441668|445245|463359|463362|463367|463371|463373|463375|463379|463381|463384|463386|463388|463390|463399|463402|463415|463883|463885|463888|463890|463904|463906|463908|463926|463928|463930|463933|463936|463938|463947|463950|463955|463960|463961|463970|463985|464225|464231|464232|464236|464238|464242|464246|464249|464250|464252|464255|464258|464262|464264|464269|464272|464276|464282|464284|464286|464288|464293|464296|464305|464310|464316|464317|464365|464366|464368|464371|464372|464376|464380|464385|464391|464404|464420|464424|464427|464429|464433|491839|513620|513621|528239|528240|528245|528254|528255|528256|528257|528258|528260|528261|528262|528263|528266|528271|528273|528276|528278|528280|528290|528294|528306|528308|528312|528605|528607|528615|528620|528621|528625|528632|528635|528645|528654|528656|528660|528662|528666|528670|528679|528683|528684|528715|528718|528722|528726|528730|528732|528735|528738|528741|528744|528746|528749|528753|528756|528757|528765|539054|566509|566515|566517|566519|566524|566527|566530|566533|566535|566537|566540|566545|566549|566553|566554|566557|566559|568179|568187|568189|568192|568194|568197|568203|568204|568205|568208|568211|568213|568218|568219|568221|568223|568224|568971|568974|568980|568981|568983|568986|568992|568993|568997|572844|572847|572854|572856|572858|572859|572860|572861|572862|572863|572869|572872|572873|572876|577353|577357|578513|578514|612992|626231|642537|642538|642539|642540|642541|642542|642543|642544|642545|642546|642547|642548|642549|642550|642551|642552|642553|642554|642555|642556|642557|642558|642559|642560|642561|642562|642563|642564|642565|642566|642567|642568|642569|642570|642571|642572|642573|642574|642575|642576|642577|642578|642579|642580|642581|642582|642583|642584|642585|642586|642587|642588|642589|642590|642591|642592|642593|642594|642595|642596|642597|642598|642599|642600|642601|642602|642603|642604|642605|642606|642607|642608|642609|642610|642611|642612|642613|642614|642615|642616|642617|642618|642619|642620|642621|642622|642623|642624|642625|642626|642627|652471|652602|652607|652610|652959|688324|688325|688326|688327|688329|688331|693522|693530|693531|693532|693533|693535|693537|693538|693539|693541|693543|693544|693545|693547|693549|693550|693551|693552|693554|693555|693557|693558|693559|693560|695623|695625|695626|695627|702937|702938|702940|702941|702943|702946|702948|714185|714186|714189|725740|725741|754104|769844|769851|769852|769860|776280|787879|793513|841579|841580|841581|841582|841583|841584|841585|841586|841587|841588|841589|841590|841591|841592|841593|841594|841595|841596|841597|841598|841599|841600|841601|841602|841603|841604|841605|841606|841607|841608|841609|841610|841611|841612|841613|841614|841615|841616|841617|841618|841619|841620|841621|841622|841623|841624|841625|841626|841627|841628|841629|841630|841631|841632|841633|841634|841635|841636|841637|841638|841639|841640|841641|841642|841643|841644|841645|841646|841647|841648|841649|841650|841651|841652|851563|851565|851567|852005|852007|852009|852560|852561|852562|852564|852748|871997|871998|871999|872000|872001|872002|872003|872004|872005|872006|872007|872008|872009|872010|872011|872012|872013|872014|872015|872016|872017|872018|872019|872020|872021|872022|872023|872024|872025|872026|872027|872028|872029|872030|872031|872032|872033|872034|872035|872036|872037|872038|872039|872040|872041|872042|872043|872044|872045|872046|872047|872048|872049|872050|872051|872052|872053|872054|872055|872056|872057|872058|872059|872060|872061|872062|872063|872064|872065|872066|872067|872068|872069|872070|872071|872072|872073|872074|872075|872076|872077|872078|872079|872080|872081|872082|872083|872372|872373|872374|872375|872376|872377|872378|872379|872380|872381|872382|872383|872384|872385|872386|872387|919534|919535|919536|919537|919538|919539|920336|927116|927117|927118|927119|927120|927121|927122|927123|927124|927125|927126|927127|927128|927129|927130|927131|927132|927133|927134|927135|927136|927137|927138|927139|927140|927141|927142|927143|936651|936652|936653|936654|936655|936656|936657|936658|936659|936660|936661|936662|936663|936664|936665|936666|936667|936668|936669|936670|936671|936672|936673|936674|936675|936676|936677|936678|936679|936680|936681|936682|936683|940307|940308|940309|941062|941063|948600|948601|948602|948603|948604|948605|948606|948607|948608|948609|948610|948611|948612|948613|948614|948615|948616|948617|948618|948619|948620|948621|948622|948623|948624|948625|948626|957242|957243|957244|957245|957246|957247|957248|957249|957250|957251|957252|957253|957254|957255|957256|957257|957258|957259|957260|957261|957262|957263|960095|960806|970997", "text": "Emery-Dreifuss muscular dystrophy 5, autosomal dominant" }, { - "baseId": "17365|17365|17366|17367|17368|17369|17370|17373|17373|87088|87088|87089|97550|97551|97551|97552|97552|135834|135834|135835|135836|135836|135837|135837|135838|135838|135839|135840|135841|135841|135842|135842|135843|135843|135844|135845|135846|135847|135848|135848|135849|135849|135850|135850|135851|135852|135853|135853|135854|135854|135855|135856|135856|135857|135857|135858|135858|135859|135860|135860|135861|135862|135862|135863|135863|135864|135864|135865|135866|135866|135867|135867|135868|135868|135869|135870|135870|135871|135871|135872|135873|135874|135875|135876|135877|135877|135878|135878|135879|135880|135881|135881|135882|135883|135884|135885|135886|135887|135887|135888|135889|135889|135890|135890|135891|135891|135892|135892|135894|135894|135895|135895|135896|135896|135897|135897|135898|135899|135900|135900|135901|135901|167504|190913|190936|190938|190938|190940|190940|191288|191310|191310|191311|191438|191438|191456|191462|191462|191463|191466|191466|191468|191468|191469|191612|191612|191613|191614|191614|192062|192062|192153|192153|192555|192555|192940|192940|192998|192998|193151|193208|193208|193350|193350|193960|193960|194179|194179|194247|194247|194248|194248|194606|194606|194736|194736|194737|194737|195090|195101|195101|195116|195116|195175|195175|195487|195496|195496|195497|195497|195510|195524|195524|195532|195539|195539|195814|195815|195815|195828|195828|195832|195832|195833|195833|195834|195834|195836|195836|195842|195842|196102|196107|196107|196129|196337|196378|196378|196385|196385|196386|196386|196410|200696|205149|207327|207328|207328|207329|207330|207333|207335|213565|213566|213569|214106|215329|252164|252164|252168|252169|252170|252175|252180|252180|252183|252187|252187|252188|252189|252191|252194|252194|252196|252196|252197|252211|252211|264275|264275|265371|265372|265372|265373|265373|265397|265397|265470|265515|265530|265532|265534|265534|265543|265543|265901|265921|265921|265928|265928|265929|265929|266020|266090|266190|266190|266351|266351|266352|266366|266366|266416|266416|266430|266443|266443|266473|266473|266478|266478|266483|266483|266521|266521|266532|266551|266555|266556|266557|266560|266561|266640|266640|266643|266675|266675|266693|266696|266711|266726|266726|266765|266768|266768|266873|266884|266902|266902|266919|266935|266935|266959|266959|267012|267012|267114|267114|267125|267125|267130|267258|267258|267263|267263|267267|267267|267272|267272|267342|267342|267380|267440|267440|267483|267483|267493|267538|267550|267550|267569|267628|267676|267676|267691|267693|267855|267855|267879|267898|267902|267903|267911|267911|267913|267913|267914|267920|267923|267923|267930|267930|267935|267935|267936|267945|267946|267988|268173|268268|268268|268325|268369|268371|268374|268374|268494|268494|268517|268517|268518|268518|268626|268626|268692|268696|268696|268711|268735|268735|268736|268811|268811|268838|268838|268867|268918|268918|268925|268925|268927|269004|269004|269006|269022|269022|269024|269048|269172|269211|269288|269289|269289|269294|269294|269302|269309|269314|269317|269332|269336|269379|269383|269388|269398|269423|269423|269431|269431|269473|269532|269534|269535|269535|269541|269558|269565|269565|269566|269572|269572|269586|269592|269592|269596|269602|269691|269691|269709|269709|269715|269828|269828|269837|269837|269872|269872|269877|269879|269879|269881|269881|269883|269911|269914|269914|269925|269925|269926|269942|269943|269960|269969|269969|270048|270051|270051|270052|270052|270172|270174|270174|270223|270223|270237|270239|270245|270257|270279|270279|270385|270399|270399|270435|270436|270472|270472|270488|270493|270493|270507|270507|270693|270701|270719|270719|270728|270823|270832|270833|270949|271054|271054|271063|271147|271159|271160|271160|271166|271421|271702|271894|271948|271948|272187|272254|272311|272314|272368|272422|272539|272539|272543|272621|272623|272623|272628|272628|272632|272632|272637|272662|272666|272735|272744|272812|272834|272836|272841|272841|272843|272843|272872|272872|272873|272873|272875|272886|272904|272925|272978|273052|273065|273085|273085|273086|273086|273092|273092|273095|273102|273108|273179|273179|273190|273212|273317|273349|273353|273382|273394|273406|273406|273582|273589|273607|273795|273795|273803|273814|273821|273874|273874|273878|273885|273910|273910|273993|273993|274013|274020|274077|274328|274337|274391|274408|274409|274419|274457|274505|274506|274565|274573|274583|274634|274681|274686|274692|274692|274724|274738|274739|274751|274768|274788|274808|274827|274830|274837|274837|274842|274855|274906|274947|275118|275154|275163|275171|275314|275450|299385|299388|299390|299399|299400|299402|299403|299403|299404|299409|299415|299416|299416|299420|299421|299429|299431|299431|299432|299440|299441|299441|299442|299442|299443|299448|299458|299460|299463|299475|299480|299481|299485|299485|299487|299495|299495|299496|299497|299497|299506|299511|299515|299518|299521|299522|299523|301860|301882|301883|301884|301884|301885|301886|301887|301887|301898|301901|301901|301907|301910|301910|301911|301911|301915|301916|301917|301917|301923|301924|301924|301925|301925|301932|301932|301940|301943|301943|301950|301962|301963|301963|301972|301979|301980|301989|301989|301992|301992|301994|301996|301996|301997|301997|302015|302024|302025|302028|302029|302030|302039|306313|306317|306323|306325|306327|306328|306333|306336|306337|306350|306351|306355|306360|306362|306362|306372|306385|306392|306392|306394|306397|306397|306403|306403|306404|306404|306408|306408|306409|306411|306412|306412|306431|306431|306440|306445|306445|306446|306446|306447|306451|306451|306454|306455|306499|306600|306605|306606|306618|306638|306640|306646|306650|306650|306651|306652|306661|306662|306676|306676|306677|306678|306681|306690|306698|306700|306701|306702|306709|306711|306712|306712|306714|306723|306726|306727|306727|306728|306736|306745|306745|306749|306749|306750|306754|306754|306755|306757|306757|306758|306759|306765|306766|306766|306767|306767|359609|363979|368394|368394|368421|368448|368448|368458|368752|368766|368787|368908|368910|368927|368962|368973|370232|370244|389126|406830|406831|406831|415031|425673|425674|425676|428529|428530|428531|428532|428533|428534|440937|440938|440940|440944|440947|440949|440956|440959|440961|440963|440966|440972|440972|440975|440986|440997|441001|441005|441007|441012|441013|441017|441019|443902|443908|443915|443916|443917|455319|455320|455325|455329|455337|455338|455340|455340|455345|455355|455357|455358|455359|455370|455371|455372|455376|455380|455382|455386|455409|455410|455413|455421|455429|455438|455444|455445|455447|455452|455460|455463|455466|455468|455469|455470|455472|455475|455480|455481|455494|455496|455497|455973|455977|455982|455984|455989|455989|455991|455992|456000|456003|456021|456022|456030|456040|456045|456050|456057|456060|456164|456167|456172|456177|456178|456181|456185|456189|456202|456212|456221|456225|456229|488501|488729|488798|489005|489251|489262|489265|489269|489355|489609|489641|489785|489997|490048|490331|490353|490397|490431|490472|490514|490797|491119|491122|491394|491515|491595|491736|491786|491831|492235|492241|492322|492461|492863|492865|492984|493065|493200|493583|493588|493963|494010|494085|501201|501233|501491|501524|501591|501595|501595|501622|501842|501854|501880|511008|513419|513567|521457|521459|521462|521463|521464|521470|521472|521475|521477|521478|521481|521482|521625|521742|521747|521763|521766|521767|521776|521810|521813|521814|521814|521824|521825|521826|521832|521833|521835|521839|521841|521847|521851|521853|521857|521858|521861|521868|522070|522074|522076|522080|522084|522094|522099|522100|522103|522108|522109|522119|522120|522140|522150|538384|538995|540447|560477|560479|560481|560483|560485|560487|560489|560491|560493|560495|560497|560499|560614|560616|560618|560620|560622|560624|560626|560628|560630|560632|560634|560636|560638|563416|563417|563432|563433|563435|563436|563438|563439|563443|563444|563448|563454|563455|563456|565460|565461|565462|565468|565469|565472|565475|565477|565495|565496|565497|565498|576865|576873|576876|576879|576885|576886|576897|576904|578441|584364|584881|585255|585771|585921|585928|586396|586451|586453|586670|586881|586968|586968|587055|587133|587135|587321|587485|587611|587653|587988|588450|588731|589074|589249|589744|609621|620221|622357|622358|622359|622360|622505|622506|623615|626159|634675|634676|634677|634678|634679|634680|634681|634682|634683|634684|634685|634686|634687|634688|634689|634690|634691|634692|634693|634694|634695|634696|634697|634698|634699|634700|634701|634702|634703|634704|634705|634706|634707|634708|634709|634710|634711|634712|634713|634714|634715|634716|634717|634718|634719|634720|634721|634722|634723|634724|634725|634726|634727|634728|634729|634730|634731|634732|634733|634734|634735|634736|634737|634738|634739|634740|634741|634742|634743|634744|634745|634746|634747|651483|651527|651527|651528|651534|651535|651537|651543|651593|651600|654425|655724|672065|691944|691946|691949|691952|691954|691957|691958|691964|699395|699399|710271|710271|710272|721817|721823|735485|735486|735487|735488|735492|749923|759452|759462|765546|765558|775262|782476|782481|782482|790601|793136|793138|795773|795775|798569|798570|831648|831649|831650|831651|831652|831653|831654|831655|831656|831657|831658|831659|831660|831660|831661|831662|831663|831664|831665|831666|831667|831668|831669|831670|831671|831672|831673|831674|831675|831676|831677|831678|831679|831680|831681|831682|831683|831684|831685|831686|831687|831688|831689|831690|831691|831692|831693|831694|831695|831696|831697|831698|831699|831700|831701|831702|831703|831704|831705|831706|831707|831708|831709|831710|831711|831712|831713|831714|831715|831716|831717|831718|831719|831720|831721|831722|831723|831724|851066|851318|852016|852018|852249|859475|895541|895542|895543|895544|895545|895546|895547|895548|895549|895550|895551|895551|895552|895553|895554|895555|895556|895557|895558|895559|895560|895561|895562|895563|895564|895565|895566|895566|895567|895568|895569|895570|895571|895572|895573|895574|895575|895576|895577|895578|895579|895580|895581|895582|895583|895584|895585|895586|895587|895587|895588|895589|895590|895591|895592|895593|895594|895595|895596|895597|895598|895599|895600|895601|895602|895603|895604|895605|895606|895607|895608|895609|895610|895611|895612|895613|895614|895615|895616|895617|895618|895619|895620|896201|896202|896203|896204|896205|896206|896207|896208|896209|896210|896210|896211|896212|905859|919002|919003|919004|919005|920222|920223|924282|924283|924284|924285|924286|924287|924288|924289|924290|924291|924292|924293|924294|924295|924296|924297|924298|924299|924300|933206|933207|933208|933209|933210|933211|933212|933213|933214|933215|933216|933217|933218|933219|933220|933221|933222|933223|933224|933225|933226|933227|933228|933229|933230|933231|933232|933233|933234|933235|933236|933237|933238|933239|933240|940031|940032|940033|944915|944916|944917|944918|944919|944920|944921|944922|944923|944924|944925|944926|944927|944928|944929|944930|944931|944932|944933|944934|944935|944936|944937|944938|944939|944940|944941|944942|944943|944944|944945|944946|944947|954393|954394|954395|954396|954397|954398|954399|954400|954401|954402|954403|969705|969706|970139|970410|971578|983460|983461", + "upstreamId": "17365|17365|17366|17367|17368|17369|17370|17373|17373|87088|87088|87089|97550|97551|97551|97552|97552|135834|135834|135835|135836|135836|135837|135837|135838|135838|135839|135840|135841|135841|135842|135842|135843|135843|135844|135845|135846|135847|135848|135848|135849|135849|135850|135850|135851|135852|135853|135853|135854|135854|135855|135856|135856|135857|135857|135858|135858|135859|135860|135860|135861|135862|135862|135863|135863|135864|135864|135865|135866|135866|135867|135867|135868|135868|135869|135870|135870|135871|135871|135872|135873|135874|135875|135876|135877|135877|135878|135878|135879|135880|135881|135881|135882|135883|135884|135885|135886|135887|135887|135888|135889|135889|135890|135890|135891|135891|135892|135892|135894|135894|135895|135895|135896|135896|135897|135897|135898|135899|135900|135900|135901|135901|167504|190913|190936|190938|190938|190940|190940|191288|191310|191310|191311|191438|191438|191456|191462|191462|191463|191466|191466|191468|191468|191469|191612|191612|191613|191614|191614|192062|192062|192153|192153|192555|192555|192940|192940|192998|192998|193151|193208|193208|193350|193350|193960|193960|194179|194179|194247|194247|194248|194248|194606|194606|194736|194736|194737|194737|195090|195101|195101|195116|195116|195175|195175|195487|195496|195496|195497|195497|195510|195524|195524|195532|195539|195539|195814|195815|195815|195828|195828|195832|195832|195833|195833|195834|195834|195836|195836|195842|195842|196102|196107|196107|196129|196337|196378|196378|196385|196385|196386|196386|196410|200696|205149|207327|207328|207328|207329|207330|207333|207335|213565|213566|213569|214106|215329|252164|252164|252168|252169|252170|252175|252180|252180|252183|252187|252187|252188|252189|252191|252194|252194|252196|252196|252197|252211|252211|264275|264275|265371|265372|265372|265373|265373|265397|265397|265470|265515|265530|265532|265534|265534|265543|265543|265901|265921|265921|265928|265928|265929|265929|266020|266090|266190|266190|266351|266351|266352|266366|266366|266416|266416|266430|266443|266443|266473|266473|266478|266478|266483|266483|266521|266521|266532|266551|266555|266556|266557|266560|266561|266640|266640|266643|266675|266675|266693|266696|266711|266726|266726|266765|266768|266768|266873|266884|266902|266902|266919|266935|266935|266959|266959|267012|267012|267114|267114|267125|267125|267130|267258|267258|267263|267263|267267|267267|267272|267272|267342|267342|267380|267440|267440|267483|267483|267493|267538|267550|267550|267569|267628|267676|267676|267691|267693|267855|267855|267879|267898|267902|267903|267911|267911|267913|267913|267914|267920|267923|267923|267930|267930|267935|267935|267936|267945|267946|267988|268173|268268|268268|268325|268369|268371|268374|268374|268494|268494|268517|268517|268518|268518|268626|268626|268692|268696|268696|268711|268735|268735|268736|268811|268811|268838|268838|268867|268918|268918|268925|268925|268927|269004|269004|269006|269022|269022|269024|269048|269172|269211|269288|269289|269289|269294|269294|269302|269309|269314|269317|269332|269336|269379|269383|269388|269398|269423|269423|269431|269431|269473|269532|269534|269535|269535|269541|269558|269565|269565|269566|269572|269572|269586|269592|269592|269596|269602|269691|269691|269709|269709|269715|269828|269828|269837|269837|269872|269872|269877|269879|269879|269881|269881|269883|269911|269914|269914|269925|269925|269926|269942|269943|269960|269969|269969|270048|270051|270051|270052|270052|270172|270174|270174|270223|270223|270237|270239|270245|270257|270279|270279|270385|270399|270399|270435|270436|270472|270472|270488|270493|270493|270507|270507|270693|270701|270719|270719|270728|270823|270832|270833|270949|271054|271054|271063|271147|271159|271160|271160|271166|271421|271702|271894|271948|271948|272187|272254|272311|272314|272368|272422|272539|272539|272543|272621|272623|272623|272628|272628|272632|272632|272637|272662|272666|272735|272744|272812|272834|272836|272841|272841|272843|272843|272872|272872|272873|272873|272875|272886|272904|272925|272978|273052|273065|273085|273085|273086|273086|273092|273092|273095|273102|273108|273179|273179|273190|273212|273317|273349|273353|273382|273394|273406|273406|273582|273589|273607|273795|273795|273803|273814|273821|273874|273874|273878|273885|273910|273910|273993|273993|274013|274020|274077|274328|274337|274391|274408|274409|274419|274457|274505|274506|274565|274573|274583|274634|274681|274686|274692|274692|274724|274738|274739|274751|274768|274788|274808|274827|274830|274837|274837|274842|274855|274906|274947|275118|275154|275163|275171|275314|275450|299385|299388|299390|299399|299400|299402|299403|299403|299404|299409|299415|299416|299416|299420|299421|299429|299431|299431|299432|299440|299441|299441|299442|299442|299443|299448|299458|299460|299463|299475|299480|299481|299485|299485|299487|299495|299495|299496|299497|299497|299506|299511|299515|299518|299521|299522|299523|301860|301882|301883|301884|301884|301885|301886|301887|301887|301898|301901|301901|301907|301910|301910|301911|301911|301915|301916|301917|301917|301923|301924|301924|301925|301925|301932|301932|301940|301943|301943|301950|301962|301963|301963|301972|301979|301980|301989|301989|301992|301992|301994|301996|301996|301997|301997|302015|302024|302025|302028|302029|302030|302039|306313|306317|306323|306325|306327|306328|306333|306336|306337|306350|306351|306355|306360|306362|306362|306372|306385|306392|306392|306394|306397|306397|306403|306403|306404|306404|306408|306408|306409|306411|306412|306412|306431|306431|306440|306445|306445|306446|306446|306447|306451|306451|306454|306455|306499|306600|306605|306606|306618|306638|306640|306646|306650|306650|306651|306652|306661|306662|306676|306676|306677|306678|306681|306690|306698|306700|306701|306702|306709|306711|306712|306712|306714|306723|306726|306727|306727|306728|306736|306745|306745|306749|306749|306750|306754|306754|306755|306757|306757|306758|306759|306765|306766|306766|306767|306767|359609|363979|368394|368394|368421|368448|368448|368458|368752|368766|368787|368908|368910|368927|368962|368973|370232|370244|389126|406830|406831|406831|415031|425673|425674|425676|428529|428530|428531|428532|428533|428534|440937|440938|440940|440944|440947|440949|440956|440959|440961|440963|440966|440972|440972|440975|440986|440997|441001|441005|441007|441012|441013|441017|441019|443902|443908|443915|443916|443917|455319|455320|455325|455329|455337|455338|455340|455340|455345|455355|455357|455358|455359|455370|455371|455372|455376|455380|455382|455386|455409|455410|455413|455421|455429|455438|455444|455445|455447|455452|455460|455463|455466|455468|455469|455470|455472|455475|455480|455481|455494|455496|455497|455973|455977|455982|455984|455989|455989|455991|455992|456000|456003|456021|456022|456030|456040|456045|456050|456057|456060|456164|456167|456172|456177|456178|456181|456185|456189|456202|456212|456221|456225|456229|488501|488729|488798|489005|489251|489262|489265|489269|489355|489609|489641|489785|489997|490048|490331|490353|490397|490431|490472|490514|490797|491119|491122|491394|491515|491595|491736|491786|491831|492235|492241|492322|492461|492863|492865|492984|493065|493200|493583|493588|493963|494010|494085|501201|501233|501491|501524|501591|501595|501595|501622|501842|501854|501880|511008|513419|513567|521457|521459|521462|521463|521464|521470|521472|521475|521477|521478|521481|521482|521625|521742|521747|521763|521766|521767|521776|521810|521813|521814|521814|521824|521825|521826|521832|521833|521835|521839|521841|521847|521851|521853|521857|521858|521861|521868|522070|522074|522076|522080|522084|522094|522099|522100|522103|522108|522109|522119|522120|522140|522150|538384|538995|540447|560477|560479|560481|560483|560485|560487|560489|560491|560493|560495|560497|560499|560614|560616|560618|560620|560622|560624|560626|560628|560630|560632|560634|560636|560638|563416|563417|563432|563433|563435|563436|563438|563439|563443|563444|563448|563454|563455|563456|565460|565461|565462|565468|565469|565472|565475|565477|565495|565496|565497|565498|576865|576873|576876|576879|576885|576886|576897|576904|578441|584364|584881|585255|585771|585921|585928|586396|586451|586453|586670|586881|586968|586968|587055|587133|587135|587321|587485|587611|587653|587988|588450|588731|589074|589249|589744|609621|620221|622357|622358|622359|622360|622505|622506|623615|626159|634675|634676|634677|634678|634679|634680|634681|634682|634683|634684|634685|634686|634687|634688|634689|634690|634691|634692|634693|634694|634695|634696|634697|634698|634699|634700|634701|634702|634703|634704|634705|634706|634707|634708|634709|634710|634711|634712|634713|634714|634715|634716|634717|634718|634719|634720|634721|634722|634723|634724|634725|634726|634727|634728|634729|634730|634731|634732|634733|634734|634735|634736|634737|634738|634739|634740|634741|634742|634743|634744|634745|634746|634747|651483|651527|651527|651528|651534|651535|651537|651543|651593|651600|654425|655724|672065|691944|691946|691949|691952|691954|691957|691958|691964|699395|699399|710271|710271|710272|721817|721823|735485|735486|735487|735488|735492|749923|759452|759462|765546|765558|775262|782476|782481|782482|790601|793136|793138|795773|795775|798569|798570|831648|831649|831650|831651|831652|831653|831654|831655|831656|831657|831658|831659|831660|831660|831661|831662|831663|831664|831665|831666|831667|831668|831669|831670|831671|831672|831673|831674|831675|831676|831677|831678|831679|831680|831681|831682|831683|831684|831685|831686|831687|831688|831689|831690|831691|831692|831693|831694|831695|831696|831697|831698|831699|831700|831701|831702|831703|831704|831705|831706|831707|831708|831709|831710|831711|831712|831713|831714|831715|831716|831717|831718|831719|831720|831721|831722|831723|831724|851066|851318|852016|852018|852249|859475|895541|895542|895543|895544|895545|895546|895547|895548|895549|895550|895551|895551|895552|895553|895554|895555|895556|895557|895558|895559|895560|895561|895562|895563|895564|895565|895566|895566|895567|895568|895569|895570|895571|895572|895573|895574|895575|895576|895577|895578|895579|895580|895581|895582|895583|895584|895585|895586|895587|895587|895588|895589|895590|895591|895592|895593|895594|895595|895596|895597|895598|895599|895600|895601|895602|895603|895604|895605|895606|895607|895608|895609|895610|895611|895612|895613|895614|895615|895616|895617|895618|895619|895620|896201|896202|896203|896204|896205|896206|896207|896208|896209|896210|896210|896211|896212|905859|919002|919003|919004|919005|920222|920223|924282|924283|924284|924285|924286|924287|924288|924289|924290|924291|924292|924293|924294|924295|924296|924297|924298|924299|924300|933206|933207|933208|933209|933210|933211|933212|933213|933214|933215|933216|933217|933218|933219|933220|933221|933222|933223|933224|933225|933226|933227|933228|933229|933230|933231|933232|933233|933234|933235|933236|933237|933238|933239|933240|940031|940032|940033|944915|944916|944917|944918|944919|944920|944921|944922|944923|944924|944925|944926|944927|944928|944929|944930|944931|944932|944933|944934|944935|944936|944937|944938|944939|944940|944941|944942|944943|944944|944945|944946|944947|954393|954394|954395|954396|954397|954398|954399|954400|954401|954402|954403|969705|969706|970139|970410|971578|983460|983461", "text": "Spinocerebellar ataxia, autosomal recessive 8" }, { - "baseId": "17365|17371|17372|17373|17373|87088|87088|87089|97550|97551|97551|97552|97552|135834|135834|135835|135836|135836|135837|135837|135838|135838|135839|135840|135841|135841|135842|135842|135843|135843|135844|135845|135846|135847|135848|135848|135849|135849|135850|135850|135851|135852|135853|135853|135854|135854|135855|135856|135856|135857|135857|135858|135858|135859|135860|135860|135861|135862|135862|135863|135863|135864|135864|135865|135866|135866|135867|135867|135868|135868|135869|135870|135870|135871|135871|135872|135873|135874|135875|135876|135877|135877|135878|135878|135879|135880|135881|135881|135882|135883|135884|135885|135886|135887|135887|135888|135889|135889|135890|135890|135891|135891|135892|135892|135894|135894|135895|135895|135896|135896|135897|135897|135898|135899|135900|135900|135901|135901|190913|190936|190938|190938|190940|190940|191288|191310|191310|191311|191438|191438|191456|191462|191462|191463|191466|191466|191468|191468|191469|191612|191612|191613|191614|191614|192062|192062|192153|192153|192555|192555|192940|192940|192998|192998|193151|193208|193208|193350|193350|193960|193960|194179|194179|194247|194247|194248|194248|194606|194606|194736|194736|194737|194737|195090|195101|195101|195116|195116|195175|195175|195487|195496|195496|195497|195497|195510|195524|195524|195532|195539|195539|195814|195815|195815|195828|195828|195832|195832|195833|195833|195834|195834|195836|195836|195842|195842|196102|196107|196107|196129|196337|196378|196378|196385|196385|196386|196386|196410|204974|207328|207328|207329|207333|214106|215329|252164|252164|252168|252169|252170|252175|252180|252180|252183|252187|252187|252189|252191|252194|252194|252196|252196|252197|252211|252211|264275|264275|265371|265372|265372|265373|265373|265397|265397|265470|265515|265530|265532|265534|265534|265543|265543|265901|265921|265921|265928|265928|265929|265929|266020|266090|266190|266190|266351|266351|266352|266366|266366|266416|266416|266430|266443|266443|266473|266473|266478|266478|266483|266483|266521|266521|266532|266551|266555|266556|266557|266560|266561|266640|266640|266643|266675|266675|266693|266696|266711|266726|266726|266765|266768|266768|266873|266884|266902|266902|266919|266935|266935|266959|266959|267012|267012|267114|267114|267125|267125|267130|267258|267258|267263|267263|267267|267267|267272|267272|267342|267342|267380|267440|267440|267483|267483|267493|267538|267550|267550|267569|267628|267676|267676|267691|267693|267855|267855|267879|267898|267902|267903|267911|267911|267913|267913|267914|267920|267923|267923|267930|267930|267935|267935|267936|267945|267946|267988|268173|268268|268268|268325|268369|268371|268374|268374|268494|268494|268517|268517|268518|268518|268626|268626|268692|268696|268696|268711|268735|268735|268736|268811|268811|268838|268838|268867|268918|268918|268925|268925|268927|269004|269004|269006|269022|269022|269024|269048|269172|269211|269288|269289|269289|269294|269294|269302|269309|269314|269317|269332|269336|269379|269383|269388|269398|269423|269423|269431|269431|269473|269532|269534|269535|269535|269541|269558|269565|269565|269566|269572|269572|269586|269592|269592|269596|269602|269691|269691|269709|269709|269715|269828|269828|269837|269837|269872|269872|269877|269879|269879|269881|269881|269883|269911|269914|269914|269925|269925|269926|269942|269943|269960|269969|269969|270048|270051|270051|270052|270052|270172|270174|270174|270223|270223|270237|270239|270245|270257|270279|270279|270385|270399|270399|270435|270436|270472|270472|270488|270493|270493|270507|270507|270693|270701|270719|270719|270728|270823|270832|270833|270949|271054|271054|271063|271147|271159|271160|271160|271166|271421|271702|271894|271948|271948|272187|272254|272311|272314|272368|272539|272539|272543|272621|272623|272623|272628|272628|272632|272632|272637|272662|272666|272735|272744|272812|272834|272836|272841|272841|272843|272843|272872|272872|272873|272873|272875|272886|272904|272925|272978|273052|273085|273085|273086|273086|273092|273092|273095|273102|273108|273179|273179|273190|273212|273317|273349|273353|273382|273394|273406|273406|273582|273589|273607|273795|273795|273803|273814|273821|273874|273874|273878|273885|273910|273910|273993|273993|274013|274020|274077|274328|274337|274391|274408|274409|274419|274457|274505|274506|274565|274573|274583|274634|274681|274686|274692|274692|274724|274738|274739|274751|274768|274788|274808|274827|274830|274837|274837|274842|274855|274906|274947|275118|275154|275163|275171|275450|299385|299388|299390|299399|299400|299402|299403|299403|299404|299409|299415|299416|299416|299420|299421|299429|299431|299431|299432|299440|299441|299441|299442|299442|299443|299448|299458|299460|299463|299475|299480|299481|299485|299485|299487|299495|299495|299496|299497|299497|299506|299511|299515|299518|299521|299522|299523|301860|301882|301883|301884|301884|301885|301886|301887|301887|301898|301901|301901|301907|301910|301910|301911|301911|301915|301916|301917|301917|301923|301924|301924|301925|301925|301932|301932|301940|301943|301943|301950|301962|301963|301963|301972|301979|301980|301989|301989|301992|301992|301994|301996|301996|301997|301997|302015|302024|302025|302028|302029|302030|302039|306313|306317|306323|306325|306327|306328|306333|306336|306337|306350|306351|306355|306360|306362|306362|306372|306385|306392|306392|306394|306397|306397|306403|306403|306404|306404|306408|306408|306409|306411|306412|306412|306431|306431|306440|306445|306445|306446|306446|306447|306451|306451|306454|306455|306499|306600|306605|306606|306618|306638|306640|306646|306650|306650|306651|306652|306661|306662|306676|306676|306677|306678|306681|306690|306698|306700|306701|306702|306709|306711|306712|306712|306714|306723|306726|306727|306727|306728|306736|306745|306745|306749|306749|306750|306754|306754|306755|306757|306757|306758|306759|306765|306766|306766|306767|306767|359609|363979|368394|368394|368421|368448|368448|368458|368752|368766|368787|368908|368910|368927|368962|368973|370232|370244|389126|406830|406831|406831|415031|425673|425674|425676|440937|440938|440940|440944|440947|440949|440956|440959|440961|440963|440966|440972|440972|440975|440986|440997|441001|441005|441007|441012|441013|441017|441019|443908|443915|443916|443917|455319|455320|455325|455329|455337|455338|455340|455340|455345|455355|455357|455358|455359|455370|455371|455372|455376|455380|455382|455386|455409|455410|455413|455421|455429|455438|455444|455445|455447|455452|455460|455463|455468|455469|455470|455472|455475|455480|455494|455496|455497|455973|455977|455982|455984|455989|455989|455991|455992|456000|456003|456021|456022|456030|456040|456045|456050|456057|456060|456164|456167|456172|456177|456178|456181|456185|456189|456202|456212|456221|456225|456229|488501|488729|488798|489005|489251|489262|489265|489269|489355|489609|489641|489785|489997|490048|490331|490353|490397|490431|490472|490514|490797|491119|491122|491394|491515|491595|491736|491786|491831|492235|492241|492322|492461|492863|492865|492984|493065|493200|493583|493588|493963|494010|494085|501201|501233|501491|501524|501591|501595|501595|501622|501842|501854|501880|513566|521457|521459|521462|521463|521464|521470|521472|521475|521477|521478|521481|521482|521625|521742|521747|521763|521766|521767|521776|521810|521813|521814|521814|521824|521825|521826|521832|521833|521835|521839|521841|521847|521851|521853|521857|521858|521861|521868|522070|522074|522076|522080|522084|522094|522099|522100|522103|522108|522109|522119|522120|522140|522150|560477|560479|560481|560483|560485|560487|560489|560491|560493|560495|560497|560499|560614|560616|560618|560620|560622|560624|560626|560628|560630|560632|560634|560636|560638|563416|563417|563432|563433|563435|563436|563438|563439|563443|563444|563448|563454|563455|563456|565460|565461|565462|565468|565469|565472|565475|565477|565495|565496|565497|565498|576865|576873|576876|576879|576885|576886|576897|576904|584364|584881|585255|585771|585921|586396|586451|586453|586670|586881|586968|586968|587055|587133|587135|587321|587485|587611|587653|587988|588450|588731|589074|589249|589744|609621|620221|622361|626309|634675|634676|634677|634678|634679|634680|634681|634682|634683|634684|634685|634686|634687|634688|634689|634690|634691|634692|634693|634694|634695|634696|634697|634698|634699|634700|634701|634702|634703|634704|634705|634706|634707|634708|634709|634710|634711|634712|634713|634714|634715|634716|634717|634718|634719|634720|634721|634722|634723|634724|634725|634726|634727|634728|634729|634730|634731|634732|634733|634734|634735|634736|634737|634738|634739|634740|634741|634742|634743|634744|634745|634746|634747|651483|651527|651527|651528|651534|651535|651537|651543|651593|651600|655724|691944|691946|691949|691952|691954|691957|691958|691964|699395|699399|710271|710271|710272|721817|721823|735485|735486|735487|735488|735492|749923|759452|759462|765546|765558|775262|782476|782481|782482|793136|793138|795773|795775|831648|831649|831650|831651|831652|831653|831654|831655|831656|831657|831658|831659|831660|831660|831661|831662|831663|831664|831665|831666|831667|831668|831669|831670|831671|831672|831673|831674|831675|831676|831677|831678|831679|831680|831681|831682|831683|831684|831685|831686|831687|831688|831689|831690|831691|831692|831693|831694|831695|831696|831697|831698|831699|831700|831701|831702|831703|831704|831705|831706|831707|831708|831709|831710|831711|831712|831713|831714|831715|831716|831717|831718|831719|831720|831721|831722|831723|831724|851066|851318|852016|852018|852249|859475|895541|895542|895543|895544|895545|895546|895547|895548|895549|895550|895551|895551|895552|895553|895554|895555|895556|895557|895558|895559|895560|895561|895562|895563|895564|895565|895566|895566|895567|895568|895569|895570|895571|895572|895573|895574|895575|895576|895577|895578|895579|895580|895581|895582|895583|895584|895585|895586|895587|895587|895588|895589|895590|895591|895592|895593|895594|895595|895596|895597|895598|895599|895600|895601|895602|895603|895604|895605|895606|895607|895608|895609|895610|895611|895612|895613|895614|895615|895616|895617|895618|895619|895620|896201|896202|896203|896204|896205|896206|896207|896208|896209|896210|896210|896211|896212|903538|916963|924282|924283|924284|924285|924286|924287|924288|924289|924290|924291|924292|924293|924294|924295|924296|924297|924298|924299|924300|933206|933207|933208|933209|933210|933211|933212|933213|933214|933215|933216|933217|933218|933219|933220|933221|933222|933223|933224|933225|933226|933227|933228|933229|933230|933231|933232|933233|933234|933235|933236|933237|933238|933239|933240|940031|940032|940033|944915|944916|944917|944918|944919|944920|944921|944922|944923|944924|944925|944926|944927|944928|944929|944930|944931|944932|944933|944934|944935|944936|944937|944938|944939|944940|944941|944942|944943|944944|944945|944946|944947|954393|954394|954395|954396|954397|954398|954399|954400|954401|954402|954403", + "upstreamId": "17365|17371|17372|17373|17373|87088|87088|87089|97550|97551|97551|97552|97552|135834|135834|135835|135836|135836|135837|135837|135838|135838|135839|135840|135841|135841|135842|135842|135843|135843|135844|135845|135846|135847|135848|135848|135849|135849|135850|135850|135851|135852|135853|135853|135854|135854|135855|135856|135856|135857|135857|135858|135858|135859|135860|135860|135861|135862|135862|135863|135863|135864|135864|135865|135866|135866|135867|135867|135868|135868|135869|135870|135870|135871|135871|135872|135873|135874|135875|135876|135877|135877|135878|135878|135879|135880|135881|135881|135882|135883|135884|135885|135886|135887|135887|135888|135889|135889|135890|135890|135891|135891|135892|135892|135894|135894|135895|135895|135896|135896|135897|135897|135898|135899|135900|135900|135901|135901|190913|190936|190938|190938|190940|190940|191288|191310|191310|191311|191438|191438|191456|191462|191462|191463|191466|191466|191468|191468|191469|191612|191612|191613|191614|191614|192062|192062|192153|192153|192555|192555|192940|192940|192998|192998|193151|193208|193208|193350|193350|193960|193960|194179|194179|194247|194247|194248|194248|194606|194606|194736|194736|194737|194737|195090|195101|195101|195116|195116|195175|195175|195487|195496|195496|195497|195497|195510|195524|195524|195532|195539|195539|195814|195815|195815|195828|195828|195832|195832|195833|195833|195834|195834|195836|195836|195842|195842|196102|196107|196107|196129|196337|196378|196378|196385|196385|196386|196386|196410|204974|207328|207328|207329|207333|214106|215329|252164|252164|252168|252169|252170|252175|252180|252180|252183|252187|252187|252189|252191|252194|252194|252196|252196|252197|252211|252211|264275|264275|265371|265372|265372|265373|265373|265397|265397|265470|265515|265530|265532|265534|265534|265543|265543|265901|265921|265921|265928|265928|265929|265929|266020|266090|266190|266190|266351|266351|266352|266366|266366|266416|266416|266430|266443|266443|266473|266473|266478|266478|266483|266483|266521|266521|266532|266551|266555|266556|266557|266560|266561|266640|266640|266643|266675|266675|266693|266696|266711|266726|266726|266765|266768|266768|266873|266884|266902|266902|266919|266935|266935|266959|266959|267012|267012|267114|267114|267125|267125|267130|267258|267258|267263|267263|267267|267267|267272|267272|267342|267342|267380|267440|267440|267483|267483|267493|267538|267550|267550|267569|267628|267676|267676|267691|267693|267855|267855|267879|267898|267902|267903|267911|267911|267913|267913|267914|267920|267923|267923|267930|267930|267935|267935|267936|267945|267946|267988|268173|268268|268268|268325|268369|268371|268374|268374|268494|268494|268517|268517|268518|268518|268626|268626|268692|268696|268696|268711|268735|268735|268736|268811|268811|268838|268838|268867|268918|268918|268925|268925|268927|269004|269004|269006|269022|269022|269024|269048|269172|269211|269288|269289|269289|269294|269294|269302|269309|269314|269317|269332|269336|269379|269383|269388|269398|269423|269423|269431|269431|269473|269532|269534|269535|269535|269541|269558|269565|269565|269566|269572|269572|269586|269592|269592|269596|269602|269691|269691|269709|269709|269715|269828|269828|269837|269837|269872|269872|269877|269879|269879|269881|269881|269883|269911|269914|269914|269925|269925|269926|269942|269943|269960|269969|269969|270048|270051|270051|270052|270052|270172|270174|270174|270223|270223|270237|270239|270245|270257|270279|270279|270385|270399|270399|270435|270436|270472|270472|270488|270493|270493|270507|270507|270693|270701|270719|270719|270728|270823|270832|270833|270949|271054|271054|271063|271147|271159|271160|271160|271166|271421|271702|271894|271948|271948|272187|272254|272311|272314|272368|272539|272539|272543|272621|272623|272623|272628|272628|272632|272632|272637|272662|272666|272735|272744|272812|272834|272836|272841|272841|272843|272843|272872|272872|272873|272873|272875|272886|272904|272925|272978|273052|273085|273085|273086|273086|273092|273092|273095|273102|273108|273179|273179|273190|273212|273317|273349|273353|273382|273394|273406|273406|273582|273589|273607|273795|273795|273803|273814|273821|273874|273874|273878|273885|273910|273910|273993|273993|274013|274020|274077|274328|274337|274391|274408|274409|274419|274457|274505|274506|274565|274573|274583|274634|274681|274686|274692|274692|274724|274738|274739|274751|274768|274788|274808|274827|274830|274837|274837|274842|274855|274906|274947|275118|275154|275163|275171|275450|299385|299388|299390|299399|299400|299402|299403|299403|299404|299409|299415|299416|299416|299420|299421|299429|299431|299431|299432|299440|299441|299441|299442|299442|299443|299448|299458|299460|299463|299475|299480|299481|299485|299485|299487|299495|299495|299496|299497|299497|299506|299511|299515|299518|299521|299522|299523|301860|301882|301883|301884|301884|301885|301886|301887|301887|301898|301901|301901|301907|301910|301910|301911|301911|301915|301916|301917|301917|301923|301924|301924|301925|301925|301932|301932|301940|301943|301943|301950|301962|301963|301963|301972|301979|301980|301989|301989|301992|301992|301994|301996|301996|301997|301997|302015|302024|302025|302028|302029|302030|302039|306313|306317|306323|306325|306327|306328|306333|306336|306337|306350|306351|306355|306360|306362|306362|306372|306385|306392|306392|306394|306397|306397|306403|306403|306404|306404|306408|306408|306409|306411|306412|306412|306431|306431|306440|306445|306445|306446|306446|306447|306451|306451|306454|306455|306499|306600|306605|306606|306618|306638|306640|306646|306650|306650|306651|306652|306661|306662|306676|306676|306677|306678|306681|306690|306698|306700|306701|306702|306709|306711|306712|306712|306714|306723|306726|306727|306727|306728|306736|306745|306745|306749|306749|306750|306754|306754|306755|306757|306757|306758|306759|306765|306766|306766|306767|306767|359609|363979|368394|368394|368421|368448|368448|368458|368752|368766|368787|368908|368910|368927|368962|368973|370232|370244|389126|406830|406831|406831|415031|425673|425674|425676|440937|440938|440940|440944|440947|440949|440956|440959|440961|440963|440966|440972|440972|440975|440986|440997|441001|441005|441007|441012|441013|441017|441019|443908|443915|443916|443917|455319|455320|455325|455329|455337|455338|455340|455340|455345|455355|455357|455358|455359|455370|455371|455372|455376|455380|455382|455386|455409|455410|455413|455421|455429|455438|455444|455445|455447|455452|455460|455463|455468|455469|455470|455472|455475|455480|455494|455496|455497|455973|455977|455982|455984|455989|455989|455991|455992|456000|456003|456021|456022|456030|456040|456045|456050|456057|456060|456164|456167|456172|456177|456178|456181|456185|456189|456202|456212|456221|456225|456229|488501|488729|488798|489005|489251|489262|489265|489269|489355|489609|489641|489785|489997|490048|490331|490353|490397|490431|490472|490514|490797|491119|491122|491394|491515|491595|491736|491786|491831|492235|492241|492322|492461|492863|492865|492984|493065|493200|493583|493588|493963|494010|494085|501201|501233|501491|501524|501591|501595|501595|501622|501842|501854|501880|513566|521457|521459|521462|521463|521464|521470|521472|521475|521477|521478|521481|521482|521625|521742|521747|521763|521766|521767|521776|521810|521813|521814|521814|521824|521825|521826|521832|521833|521835|521839|521841|521847|521851|521853|521857|521858|521861|521868|522070|522074|522076|522080|522084|522094|522099|522100|522103|522108|522109|522119|522120|522140|522150|560477|560479|560481|560483|560485|560487|560489|560491|560493|560495|560497|560499|560614|560616|560618|560620|560622|560624|560626|560628|560630|560632|560634|560636|560638|563416|563417|563432|563433|563435|563436|563438|563439|563443|563444|563448|563454|563455|563456|565460|565461|565462|565468|565469|565472|565475|565477|565495|565496|565497|565498|576865|576873|576876|576879|576885|576886|576897|576904|584364|584881|585255|585771|585921|586396|586451|586453|586670|586881|586968|586968|587055|587133|587135|587321|587485|587611|587653|587988|588450|588731|589074|589249|589744|609621|620221|622361|626309|634675|634676|634677|634678|634679|634680|634681|634682|634683|634684|634685|634686|634687|634688|634689|634690|634691|634692|634693|634694|634695|634696|634697|634698|634699|634700|634701|634702|634703|634704|634705|634706|634707|634708|634709|634710|634711|634712|634713|634714|634715|634716|634717|634718|634719|634720|634721|634722|634723|634724|634725|634726|634727|634728|634729|634730|634731|634732|634733|634734|634735|634736|634737|634738|634739|634740|634741|634742|634743|634744|634745|634746|634747|651483|651527|651527|651528|651534|651535|651537|651543|651593|651600|655724|691944|691946|691949|691952|691954|691957|691958|691964|699395|699399|710271|710271|710272|721817|721823|735485|735486|735487|735488|735492|749923|759452|759462|765546|765558|775262|782476|782481|782482|793136|793138|795773|795775|831648|831649|831650|831651|831652|831653|831654|831655|831656|831657|831658|831659|831660|831660|831661|831662|831663|831664|831665|831666|831667|831668|831669|831670|831671|831672|831673|831674|831675|831676|831677|831678|831679|831680|831681|831682|831683|831684|831685|831686|831687|831688|831689|831690|831691|831692|831693|831694|831695|831696|831697|831698|831699|831700|831701|831702|831703|831704|831705|831706|831707|831708|831709|831710|831711|831712|831713|831714|831715|831716|831717|831718|831719|831720|831721|831722|831723|831724|851066|851318|852016|852018|852249|859475|895541|895542|895543|895544|895545|895546|895547|895548|895549|895550|895551|895551|895552|895553|895554|895555|895556|895557|895558|895559|895560|895561|895562|895563|895564|895565|895566|895566|895567|895568|895569|895570|895571|895572|895573|895574|895575|895576|895577|895578|895579|895580|895581|895582|895583|895584|895585|895586|895587|895587|895588|895589|895590|895591|895592|895593|895594|895595|895596|895597|895598|895599|895600|895601|895602|895603|895604|895605|895606|895607|895608|895609|895610|895611|895612|895613|895614|895615|895616|895617|895618|895619|895620|896201|896202|896203|896204|896205|896206|896207|896208|896209|896210|896210|896211|896212|903538|916963|924282|924283|924284|924285|924286|924287|924288|924289|924290|924291|924292|924293|924294|924295|924296|924297|924298|924299|924300|933206|933207|933208|933209|933210|933211|933212|933213|933214|933215|933216|933217|933218|933219|933220|933221|933222|933223|933224|933225|933226|933227|933228|933229|933230|933231|933232|933233|933234|933235|933236|933237|933238|933239|933240|940031|940032|940033|944915|944916|944917|944918|944919|944920|944921|944922|944923|944924|944925|944926|944927|944928|944929|944930|944931|944932|944933|944934|944935|944936|944937|944938|944939|944940|944941|944942|944943|944944|944945|944946|944947|954393|954394|954395|954396|954397|954398|954399|954400|954401|954402|954403", "text": "Emery-Dreifuss muscular dystrophy 4, autosomal dominant" }, { - "baseId": "17374|264275|268173|268749|623618|793124|970824|970825", + "upstreamId": "17374|264275|268173|268749|623618|793124|970824|970825", "text": "Arthrogryposis multiplex congenita 3, myogenic type" }, { - "baseId": "17375|17376|17378|17379|208176|255174|271609|360186|429647|434646|445312|464206|464208|528771|528774|528821|567014|568742|568753|568758|643156|643157|643158|643159|643160|693669|703156|739579|804914|816478|842289|842290|842291|842292|936915|936916|948871|957407|957408|957409|971014", + "upstreamId": "17375|17376|17378|17379|208176|255174|271609|360186|429647|434646|445312|464206|464208|528771|528774|528821|567014|568742|568753|568758|643156|643157|643158|643159|643160|693669|703156|739579|804914|816478|842289|842290|842291|842292|936915|936916|948871|957407|957408|957409|971014", "text": "Ehlers-Danlos syndrome, musculocontractural type" }, { - "baseId": "17375|17376|17378|17379|17380|17381|33460|65663|439521", + "upstreamId": "17375|17376|17378|17379|17380|17381|33460|65663|439521", "text": "Ehlers-Danlos syndrome, musculocontractural type 1" }, { - "baseId": "17382|141885|141886|192552|200012|200013|287138|287143|290398|290404|290408|290707|290710|630415|630416|630417|733547|781432|819268|885404|885405|885406|885407|885408|887390", + "upstreamId": "17382|141885|141886|192552|200012|200013|287138|287143|290398|290404|290408|290707|290710|630415|630416|630417|733547|781432|819268|885404|885405|885406|885407|885408|887390", "text": "Methylmalonyl-CoA epimerase deficiency" }, { - "baseId": "17383|17384|17385|17386|17387|17388|17389|33461|33462|33463|253925|253926|253928|253929|253930|253931|253932|253934|253935|253936|253937|253938|253940|253941|253942|253943|253945|253946|253947|260791|274360|311735|311737|311740|311742|311743|311747|311748|311750|311752|311753|311754|311756|311758|311760|311761|311766|311768|311769|311771|311773|317302|317306|317312|317315|317316|317317|317328|317331|317334|317335|317336|317338|317339|317340|317343|317353|317357|317359|317361|317362|317363|317365|323351|323355|323368|323369|323387|323396|323398|323400|323405|323409|323410|323411|323939|323946|323948|323949|323950|323952|323955|323956|323972|323973|323976|323980|323981|323984|323986|323991|323994|323995|323997|324000|324019|324022|415241|441386|441387|493316|577163|620371|622894|623151|623304|701484|701485|737651|737652|788843|788844|791017|792779|866584|866585|866586|866587|866588|866589|866590|866591|866592|866593|866594|866595|866596|866597|866598|866599|866600|866601|866602|866603|866604|866605|866606|866607|866608|866609|866610|866611|866612|866613|866614|866615|866616|866617|866618|866619|866620|866621|866622|866623|866624|866625|866626|866627|866628|866629|866630|866631|866632|866633|868538|868539|868540|868541|868542", + "upstreamId": "17383|17384|17385|17386|17387|17388|17389|33461|33462|33463|253925|253926|253928|253929|253930|253931|253932|253934|253935|253936|253937|253938|253940|253941|253942|253943|253945|253946|253947|260791|274360|311735|311737|311740|311742|311743|311747|311748|311750|311752|311753|311754|311756|311758|311760|311761|311766|311768|311769|311771|311773|317302|317306|317312|317315|317316|317317|317328|317331|317334|317335|317336|317338|317339|317340|317343|317353|317357|317359|317361|317362|317363|317365|323351|323355|323368|323369|323387|323396|323398|323400|323405|323409|323410|323411|323939|323946|323948|323949|323950|323952|323955|323956|323972|323973|323976|323980|323981|323984|323986|323991|323994|323995|323997|324000|324019|324022|415241|441386|441387|493316|577163|620371|622894|623151|623304|701484|701485|737651|737652|788843|788844|791017|792779|866584|866585|866586|866587|866588|866589|866590|866591|866592|866593|866594|866595|866596|866597|866598|866599|866600|866601|866602|866603|866604|866605|866606|866607|866608|866609|866610|866611|866612|866613|866614|866615|866616|866617|866618|866619|866620|866621|866622|866623|866624|866625|866626|866627|866628|866629|866630|866631|866632|866633|868538|868539|868540|868541|868542", "text": "Nephrotic syndrome, type 3" }, { - "baseId": "17390|17391|17391|17392|17393|17394|17395|17396|17397|17397|17398|17399|17400|19961|39679|39679|39680|39681|39940|57504|57506|57509|57510|57511|57512|57514|57514|57515|57516|57517|57517|57519|57520|57521|57523|57524|57525|57525|57529|57532|57532|57539|57540|57541|57542|57543|57545|57546|57547|57548|57549|57550|57551|57552|57552|57553|57554|57558|57559|57560|57562|57565|57566|57566|57570|57571|57572|57574|57575|57579|57579|57581|57584|57585|57589|57590|57591|57592|57593|57595|57595|57599|57600|57601|57602|57602|57604|57606|57607|57608|57611|57612|57615|57617|57617|57619|57624|57625|57626|57627|57627|57629|57630|57631|57633|57634|57635|57636|57638|57638|57639|57639|57640|57643|57644|57645|57646|57647|57647|57648|57649|57650|57651|57653|57657|57658|57661|57661|57662|57664|57665|57666|57667|57668|57668|57669|57670|57671|57672|57673|57674|57677|57678|57680|57681|57682|57684|57685|57686|57687|57689|57690|57694|57697|57698|57698|57699|57700|57702|57705|57707|57708|57708|57709|57709|57712|57715|57715|57717|57718|57720|57723|57724|57727|57730|57731|57732|57732|57733|57734|57736|57737|57738|57738|57739|57739|57740|57742|57743|57743|57744|57744|57745|57746|57748|57749|57750|57751|57753|57754|57755|57755|57756|57756|57757|57759|57759|57760|57760|57761|57763|57764|57765|57766|57766|57768|57769|57771|57773|57773|57774|57774|57777|57778|57779|57780|57782|57784|57785|57786|57789|57790|57790|57793|57795|57796|57797|80007|84450|97374|102558|102559|102559|109938|109941|137048|137049|137049|137050|152886|152888|152888|152889|152890|152893|152895|152895|152897|152898|152899|166173|166173|166176|172371|172375|172375|172376|172377|172382|172383|172384|172385|172387|172390|172508|172509|172510|172511|172512|172518|172520|172520|172521|172522|172523|172524|172526|172742|172743|172743|172746|172746|172747|172747|172748|172749|172751|172751|172752|172756|172756|172758|172759|172760|172762|172771|172772|172773|172774|172775|172776|172779|172780|172782|172783|172784|172882|172884|172886|172887|172888|172893|172896|172902|172903|172904|172904|172905|172905|172906|172907|172908|172909|172909|172911|172912|172912|172913|172914|172914|172918|172920|172921|172922|172923|172925|187108|187108|191966|192949|193158|194608|195093|195093|195105|195479|195505|195505|195527|195527|195622|205129|205725|205725|205726|205726|213519|226519|226520|226521|226540|227209|227210|227210|228240|228290|228290|228291|228292|228293|228295|228295|228301|228302|228304|228306|228306|228307|228310|228316|228317|228318|228320|228322|228323|228323|228324|228327|228330|228331|228331|228332|228337|228342|228343|228344|228346|228348|228349|228349|228352|237598|237978|237980|237981|237981|237986|237990|237993|259651|259652|259653|260776|260776|260777|263977|265965|266055|268108|270036|270305|270541|270869|271073|271073|271288|273627|275046|278928|278931|278932|278939|278940|278944|278947|278953|278954|278959|278969|278970|278971|278972|278977|278987|279068|279086|279087|279088|279095|279102|279103|280365|280366|280379|280380|280386|280391|280398|280400|280404|280405|280406|280408|280411|280412|280415|280417|280418|280419|280420|280421|280423|280425|357061|357073|359230|360808|361477|361560|364628|364634|364778|405037|405042|405043|413266|413268|413269|418815|418816|421207|425333|430976|431572|431575|431578|431580|431586|431587|431592|431593|431594|431598|431599|431600|431600|431601|431601|431602|431602|431604|431610|431610|437843|442714|481515|481582|486831|486831|488344|488838|489896|489896|490149|490281|496156|496156|496179|496182|496601|496604|496611|508746|508746|511226|513012|540725|540727|540732|540733|540735|540739|540751|540758|540761|540763|540765|540766|540766|540772|540772|540773|540775|540780|540785|540787|540790|540791|540795|540800|540801|540804|540805|540806|540809|540811|540813|540814|540815|540816|540819|540820|540821|540823|540825|540825|540826|540827|540828|540829|540830|540831|540832|540832|540834|540835|540836|540837|540838|540840|540841|540841|540842|540843|540844|540845|540846|540847|540848|540849|540850|540851|540852|540853|540854|540855|540856|540857|540858|540859|540860|540862|540864|540866|540869|540871|540872|540873|540874|540875|540876|540878|540878|540882|540882|540883|540885|540886|540887|540889|540891|540892|540893|540895|540897|540898|540899|540901|540903|540904|540905|540906|540907|540908|540909|540910|540911|540912|540913|540914|540915|540916|540917|540918|540919|540920|540920|540921|540922|540923|540924|540925|540926|540927|540928|540929|540930|540931|540932|540933|540934|540935|540936|540937|540938|540940|540941|540942|540944|540946|540948|540949|540950|540951|540952|540953|540954|540954|540955|540956|540958|540960|540961|540962|540963|540964|540964|540965|540966|540966|540967|540968|540969|540970|540971|540972|540973|540974|540975|540976|540977|540978|540979|540980|540981|540982|540983|540984|540985|540987|540988|540989|540991|540992|540993|540994|540995|540996|540997|540997|540998|540998|541000|541005|541007|541010|541012|541013|541014|541017|541018|541020|541020|541022|541023|541024|541025|541026|541027|541028|541029|541030|541031|541032|541034|541035|541036|541036|541037|541039|541043|541044|541045|541046|541047|541048|541049|541050|541050|541051|541053|541055|541056|541057|541059|541060|541060|541061|541062|541063|541064|541065|541065|541066|541067|541067|541069|541070|541071|541071|541073|541074|541076|541077|541079|541080|541081|541082|541083|541084|541085|541086|541086|541087|541088|541089|541090|541092|541093|541094|541095|541096|541096|541097|541099|541101|541104|541105|541106|541107|541108|541109|541110|541111|541112|541115|541125|541127|550865|551511|551513|551517|551619|551756|551776|552400|590236|609371|609373|609375|610612|619989|622310|623244|623800|623803|627362|654178|654179|654186|654188|654191|654196|655061|679901|696464|707090|718634|718638|718639|732101|732106|732107|732111|732112|732113|732115|732116|732117|732118|732121|732122|746099|746102|746103|746107|746110|746117|746118|758861|761555|761562|761567|761568|761572|761581|761585|761589|761596|761597|761599|761602|761603|761611|761613|761615|761617|761619|761621|761623|774452|778794|780495|780501|780512|780519|780529|780539|780540|780543|780552|780557|789916|789917|789918|789919|789920|789921|789922|789923|789924|789925|789926|789927|789928|789929|789930|789931|794566|800348|800365|800366|800367|801589|801590|801591|801592|821835|821836|821837|823328|823329|823330|823335|823338|823340|823346|823349|823361|823363|823370|823374|823378|823385|823388|823392|823399|823403|823404|823406|823410|823417|823418|823421|823428|823435|823436|823437|823440|823443|823446|823447|823449|823459|823463|823467|823468|850756|851273|855909|857405|857671|863530|863531|863532|863533|863534|863535|863536|863537|863538|863539|863540|863541|863542|863543|863544|863545|863546|863547|863548|863549|863550|863551|863552|863553|863554|863555|865109|865110|906121|906122|906123|906124|906125|906126|906127|918601|918602|918603|918604|918606|918607|918608|918609|920133|920134|962914|967257|969092|977479|977480|977481|977482|977483|977484|977485|977486|977487|977489|977490|977492|977496|977497|977498|977499|977500|977501|977502|977503|977504|977505|977506|977507|977508|977509|977510|977511|977512|977513|977514|977515|977516|977517|977518|977519", + "upstreamId": "17390|17391|17391|17392|17393|17394|17395|17396|17397|17397|17398|17399|17400|19961|39679|39679|39680|39681|39940|57504|57506|57509|57510|57511|57512|57514|57514|57515|57516|57517|57517|57519|57520|57521|57523|57524|57525|57525|57529|57532|57532|57539|57540|57541|57542|57543|57545|57546|57547|57548|57549|57550|57551|57552|57552|57553|57554|57558|57559|57560|57562|57565|57566|57566|57570|57571|57572|57574|57575|57579|57579|57581|57584|57585|57589|57590|57591|57592|57593|57595|57595|57599|57600|57601|57602|57602|57604|57606|57607|57608|57611|57612|57615|57617|57617|57619|57624|57625|57626|57627|57627|57629|57630|57631|57633|57634|57635|57636|57638|57638|57639|57639|57640|57643|57644|57645|57646|57647|57647|57648|57649|57650|57651|57653|57657|57658|57661|57661|57662|57664|57665|57666|57667|57668|57668|57669|57670|57671|57672|57673|57674|57677|57678|57680|57681|57682|57684|57685|57686|57687|57689|57690|57694|57697|57698|57698|57699|57700|57702|57705|57707|57708|57708|57709|57709|57712|57715|57715|57717|57718|57720|57723|57724|57727|57730|57731|57732|57732|57733|57734|57736|57737|57738|57738|57739|57739|57740|57742|57743|57743|57744|57744|57745|57746|57748|57749|57750|57751|57753|57754|57755|57755|57756|57756|57757|57759|57759|57760|57760|57761|57763|57764|57765|57766|57766|57768|57769|57771|57773|57773|57774|57774|57777|57778|57779|57780|57782|57784|57785|57786|57789|57790|57790|57793|57795|57796|57797|80007|84450|97374|102558|102559|102559|109938|109941|137048|137049|137049|137050|152886|152888|152888|152889|152890|152893|152895|152895|152897|152898|152899|166173|166173|166176|172371|172375|172375|172376|172377|172382|172383|172384|172385|172387|172390|172508|172509|172510|172511|172512|172518|172520|172520|172521|172522|172523|172524|172526|172742|172743|172743|172746|172746|172747|172747|172748|172749|172751|172751|172752|172756|172756|172758|172759|172760|172762|172771|172772|172773|172774|172775|172776|172779|172780|172782|172783|172784|172882|172884|172886|172887|172888|172893|172896|172902|172903|172904|172904|172905|172905|172906|172907|172908|172909|172909|172911|172912|172912|172913|172914|172914|172918|172920|172921|172922|172923|172925|187108|187108|191966|192949|193158|194608|195093|195093|195105|195479|195505|195505|195527|195527|195622|205129|205725|205725|205726|205726|213519|226519|226520|226521|226540|227209|227210|227210|228240|228290|228290|228291|228292|228293|228295|228295|228301|228302|228304|228306|228306|228307|228310|228316|228317|228318|228320|228322|228323|228323|228324|228327|228330|228331|228331|228332|228337|228342|228343|228344|228346|228348|228349|228349|228352|237598|237978|237980|237981|237981|237986|237990|237993|259651|259652|259653|260776|260776|260777|263977|265965|266055|268108|270036|270305|270541|270869|271073|271073|271288|273627|275046|278928|278931|278932|278939|278940|278944|278947|278953|278954|278959|278969|278970|278971|278972|278977|278987|279068|279086|279087|279088|279095|279102|279103|280365|280366|280379|280380|280386|280391|280398|280400|280404|280405|280406|280408|280411|280412|280415|280417|280418|280419|280420|280421|280423|280425|357061|357073|359230|360808|361477|361560|364628|364634|364778|405037|405042|405043|413266|413268|413269|418815|418816|421207|425333|430976|431572|431575|431578|431580|431586|431587|431592|431593|431594|431598|431599|431600|431600|431601|431601|431602|431602|431604|431610|431610|437843|442714|481515|481582|486831|486831|488344|488838|489896|489896|490149|490281|496156|496156|496179|496182|496601|496604|496611|508746|508746|511226|513012|540725|540727|540732|540733|540735|540739|540751|540758|540761|540763|540765|540766|540766|540772|540772|540773|540775|540780|540785|540787|540790|540791|540795|540800|540801|540804|540805|540806|540809|540811|540813|540814|540815|540816|540819|540820|540821|540823|540825|540825|540826|540827|540828|540829|540830|540831|540832|540832|540834|540835|540836|540837|540838|540840|540841|540841|540842|540843|540844|540845|540846|540847|540848|540849|540850|540851|540852|540853|540854|540855|540856|540857|540858|540859|540860|540862|540864|540866|540869|540871|540872|540873|540874|540875|540876|540878|540878|540882|540882|540883|540885|540886|540887|540889|540891|540892|540893|540895|540897|540898|540899|540901|540903|540904|540905|540906|540907|540908|540909|540910|540911|540912|540913|540914|540915|540916|540917|540918|540919|540920|540920|540921|540922|540923|540924|540925|540926|540927|540928|540929|540930|540931|540932|540933|540934|540935|540936|540937|540938|540940|540941|540942|540944|540946|540948|540949|540950|540951|540952|540953|540954|540954|540955|540956|540958|540960|540961|540962|540963|540964|540964|540965|540966|540966|540967|540968|540969|540970|540971|540972|540973|540974|540975|540976|540977|540978|540979|540980|540981|540982|540983|540984|540985|540987|540988|540989|540991|540992|540993|540994|540995|540996|540997|540997|540998|540998|541000|541005|541007|541010|541012|541013|541014|541017|541018|541020|541020|541022|541023|541024|541025|541026|541027|541028|541029|541030|541031|541032|541034|541035|541036|541036|541037|541039|541043|541044|541045|541046|541047|541048|541049|541050|541050|541051|541053|541055|541056|541057|541059|541060|541060|541061|541062|541063|541064|541065|541065|541066|541067|541067|541069|541070|541071|541071|541073|541074|541076|541077|541079|541080|541081|541082|541083|541084|541085|541086|541086|541087|541088|541089|541090|541092|541093|541094|541095|541096|541096|541097|541099|541101|541104|541105|541106|541107|541108|541109|541110|541111|541112|541115|541125|541127|550865|551511|551513|551517|551619|551756|551776|552400|590236|609371|609373|609375|610612|619989|622310|623244|623800|623803|627362|654178|654179|654186|654188|654191|654196|655061|679901|696464|707090|718634|718638|718639|732101|732106|732107|732111|732112|732113|732115|732116|732117|732118|732121|732122|746099|746102|746103|746107|746110|746117|746118|758861|761555|761562|761567|761568|761572|761581|761585|761589|761596|761597|761599|761602|761603|761611|761613|761615|761617|761619|761621|761623|774452|778794|780495|780501|780512|780519|780529|780539|780540|780543|780552|780557|789916|789917|789918|789919|789920|789921|789922|789923|789924|789925|789926|789927|789928|789929|789930|789931|794566|800348|800365|800366|800367|801589|801590|801591|801592|821835|821836|821837|823328|823329|823330|823335|823338|823340|823346|823349|823361|823363|823370|823374|823378|823385|823388|823392|823399|823403|823404|823406|823410|823417|823418|823421|823428|823435|823436|823437|823440|823443|823446|823447|823449|823459|823463|823467|823468|850756|851273|855909|857405|857671|863530|863531|863532|863533|863534|863535|863536|863537|863538|863539|863540|863541|863542|863543|863544|863545|863546|863547|863548|863549|863550|863551|863552|863553|863554|863555|865109|865110|906121|906122|906123|906124|906125|906126|906127|918601|918602|918603|918604|918606|918607|918608|918609|920133|920134|962914|967257|969092|977479|977480|977481|977482|977483|977484|977485|977486|977487|977489|977490|977492|977496|977497|977498|977499|977500|977501|977502|977503|977504|977505|977506|977507|977508|977509|977510|977511|977512|977513|977514|977515|977516|977517|977518|977519", "text": "Usher syndrome, type 2A" }, { - "baseId": "17390|17391|17392|17395|17396|17397|17397|17398|17399|17400|17401|39679|57504|57505|57509|57510|57511|57512|57514|57515|57516|57517|57519|57524|57525|57532|57537|57541|57550|57551|57552|57552|57554|57557|57560|57566|57570|57571|57574|57579|57589|57591|57592|57595|57602|57608|57611|57612|57617|57619|57627|57631|57633|57635|57638|57638|57639|57647|57651|57653|57658|57661|57665|57666|57668|57673|57685|57686|57697|57698|57700|57705|57706|57707|57708|57709|57712|57715|57720|57723|57726|57732|57736|57738|57739|57743|57744|57745|57749|57750|57754|57755|57756|57757|57759|57760|57763|57765|57766|57766|57773|57774|57777|57779|57784|57790|57796|80007|84450|97374|102558|102559|109938|109941|137049|152888|152888|152890|152893|152895|152897|166173|172375|172376|172377|172382|172384|172385|172390|172508|172510|172511|172517|172518|172520|172521|172522|172523|172743|172746|172747|172748|172751|172756|172758|172759|172762|172772|172779|172780|172782|172783|172882|172884|172886|172902|172903|172904|172905|172906|172907|172909|172912|172914|172914|172921|172923|187108|194608|194671|195093|195093|195479|195505|195527|205725|205725|205726|205726|227210|228240|228290|228291|228292|228293|228295|228304|228306|228310|228312|228316|228320|228321|228322|228323|228324|228330|228331|228342|228343|228346|228348|228349|228352|237978|237980|237981|237986|237993|259652|260776|260777|263977|266055|266055|268648|270341|271073|357061|357073|359230|359230|361560|364778|364778|364867|405037|405043|413266|413268|431572|431574|431578|431580|431586|431587|431592|431593|431594|431598|431599|431600|431601|431602|431604|431606|431610|437843|486824|486831|488344|489150|489896|490149|492739|496156|508746|513009|513010|513011|513013|538928|540725|540727|540732|540733|540735|540739|540751|540758|540758|540761|540763|540765|540766|540772|540773|540775|540780|540785|540787|540790|540791|540795|540800|540801|540804|540805|540806|540809|540811|540813|540814|540815|540816|540819|540820|540821|540823|540825|540826|540827|540828|540829|540830|540831|540832|540834|540835|540836|540837|540838|540840|540841|540841|540842|540843|540844|540845|540846|540847|540848|540849|540850|540851|540852|540853|540854|540855|540856|540857|540858|540859|540860|540862|540864|540866|540869|540871|540872|540873|540874|540875|540876|540878|540882|540883|540885|540886|540887|540889|540891|540892|540893|540895|540897|540898|540899|540901|540903|540904|540905|540906|540907|540908|540909|540910|540911|540912|540913|540914|540915|540916|540917|540918|540919|540920|540921|540922|540923|540924|540925|540926|540927|540928|540929|540930|540931|540932|540933|540934|540935|540936|540937|540938|540940|540941|540942|540944|540946|540948|540949|540950|540951|540952|540953|540954|540955|540956|540958|540960|540961|540962|540963|540964|540965|540966|540967|540968|540969|540970|540971|540972|540973|540974|540975|540976|540977|540978|540979|540980|540981|540982|540983|540984|540985|540987|540988|540989|540991|540992|540993|540994|540995|540996|540997|540998|541000|541005|541007|541010|541012|541013|541014|541017|541018|541020|541022|541023|541024|541025|541026|541027|541028|541029|541030|541031|541032|541034|541035|541036|541037|541039|541043|541044|541045|541046|541047|541048|541049|541050|541051|541053|541055|541056|541057|541059|541060|541061|541062|541063|541064|541065|541066|541067|541069|541070|541071|541073|541074|541076|541077|541079|541080|541081|541082|541083|541084|541085|541086|541087|541088|541089|541090|541092|541093|541094|541095|541096|541097|541099|541101|541104|541105|541106|541107|541108|541109|541110|541111|541112|541115|541125|541127|550865|551507|551509|551512|551514|551516|551620|611974|623245|818169|970674|970675", + "upstreamId": "17390|17391|17392|17395|17396|17397|17397|17398|17399|17400|17401|39679|57504|57505|57509|57510|57511|57512|57514|57515|57516|57517|57519|57524|57525|57532|57537|57541|57550|57551|57552|57552|57554|57557|57560|57566|57570|57571|57574|57579|57589|57591|57592|57595|57602|57608|57611|57612|57617|57619|57627|57631|57633|57635|57638|57638|57639|57647|57651|57653|57658|57661|57665|57666|57668|57673|57685|57686|57697|57698|57700|57705|57706|57707|57708|57709|57712|57715|57720|57723|57726|57732|57736|57738|57739|57743|57744|57745|57749|57750|57754|57755|57756|57757|57759|57760|57763|57765|57766|57766|57773|57774|57777|57779|57784|57790|57796|80007|84450|97374|102558|102559|109938|109941|137049|152888|152888|152890|152893|152895|152897|166173|172375|172376|172377|172382|172384|172385|172390|172508|172510|172511|172517|172518|172520|172521|172522|172523|172743|172746|172747|172748|172751|172756|172758|172759|172762|172772|172779|172780|172782|172783|172882|172884|172886|172902|172903|172904|172905|172906|172907|172909|172912|172914|172914|172921|172923|187108|194608|194671|195093|195093|195479|195505|195527|205725|205725|205726|205726|227210|228240|228290|228291|228292|228293|228295|228304|228306|228310|228312|228316|228320|228321|228322|228323|228324|228330|228331|228342|228343|228346|228348|228349|228352|237978|237980|237981|237986|237993|259652|260776|260777|263977|266055|266055|268648|270341|271073|357061|357073|359230|359230|361560|364778|364778|364867|405037|405043|413266|413268|431572|431574|431578|431580|431586|431587|431592|431593|431594|431598|431599|431600|431601|431602|431604|431606|431610|437843|486824|486831|488344|489150|489896|490149|492739|496156|508746|513009|513010|513011|513013|538928|540725|540727|540732|540733|540735|540739|540751|540758|540758|540761|540763|540765|540766|540772|540773|540775|540780|540785|540787|540790|540791|540795|540800|540801|540804|540805|540806|540809|540811|540813|540814|540815|540816|540819|540820|540821|540823|540825|540826|540827|540828|540829|540830|540831|540832|540834|540835|540836|540837|540838|540840|540841|540841|540842|540843|540844|540845|540846|540847|540848|540849|540850|540851|540852|540853|540854|540855|540856|540857|540858|540859|540860|540862|540864|540866|540869|540871|540872|540873|540874|540875|540876|540878|540882|540883|540885|540886|540887|540889|540891|540892|540893|540895|540897|540898|540899|540901|540903|540904|540905|540906|540907|540908|540909|540910|540911|540912|540913|540914|540915|540916|540917|540918|540919|540920|540921|540922|540923|540924|540925|540926|540927|540928|540929|540930|540931|540932|540933|540934|540935|540936|540937|540938|540940|540941|540942|540944|540946|540948|540949|540950|540951|540952|540953|540954|540955|540956|540958|540960|540961|540962|540963|540964|540965|540966|540967|540968|540969|540970|540971|540972|540973|540974|540975|540976|540977|540978|540979|540980|540981|540982|540983|540984|540985|540987|540988|540989|540991|540992|540993|540994|540995|540996|540997|540998|541000|541005|541007|541010|541012|541013|541014|541017|541018|541020|541022|541023|541024|541025|541026|541027|541028|541029|541030|541031|541032|541034|541035|541036|541037|541039|541043|541044|541045|541046|541047|541048|541049|541050|541051|541053|541055|541056|541057|541059|541060|541061|541062|541063|541064|541065|541066|541067|541069|541070|541071|541073|541074|541076|541077|541079|541080|541081|541082|541083|541084|541085|541086|541087|541088|541089|541090|541092|541093|541094|541095|541096|541097|541099|541101|541104|541105|541106|541107|541108|541109|541110|541111|541112|541115|541125|541127|550865|551507|551509|551512|551514|551516|551620|611974|623245|818169|970674|970675", "text": "Retinitis pigmentosa 39" }, { - "baseId": "17390|17390|17392|17394|17395|17396|17398|19965|19966|20180|20182|21837|24190|26891|27182|39679|52339|52355|52388|52393|52462|52468|52495|52505|55179|55241|55481|55539|57509|57514|57557|57571|57579|57621|57626|57630|57643|57659|57665|57671|57683|57697|57706|57743|57754|57759|57766|57773|57777|57788|84447|137049|172375|172388|172390|172520|172526|172740|172743|172882|172902|172905|172906|172913|175222|175253|175286|175524|176880|176888|178187|178248|178280|193260|194583|194608|194671|195093|195527|226519|226532|228240|228299|228311|228321|229846|229854|230249|231427|237980|259652|260777|266055|266381|405046|408481|421203|425880|431571|431572|431573|431579|431580|431582|431584|431586|431590|431599|431603|431604|431606|431608|431609|431684|431685|431686|431687|431752|431753|431760|431761|431762|431763|431764|431765|431766|431767|431768|431869|431870|431879|431881|488838|489150|494952|494953|494954|494979|496182|540920|541060|541096|546425|551533|551534|576301|612044|620779|622995|624027|654597|655061|918364|918488|969547", + "upstreamId": "17390|17390|17392|17394|17395|17396|17398|19965|19966|20180|20182|21837|24190|26891|27182|39679|52339|52355|52388|52393|52462|52468|52495|52505|55179|55241|55481|55539|57509|57514|57557|57571|57579|57621|57626|57630|57643|57659|57665|57671|57683|57697|57706|57743|57754|57759|57766|57773|57777|57788|84447|137049|172375|172388|172390|172520|172526|172740|172743|172882|172902|172905|172906|172913|175222|175253|175286|175524|176880|176888|178187|178248|178280|193260|194583|194608|194671|195093|195527|226519|226532|228240|228299|228311|228321|229846|229854|230249|231427|237980|259652|260777|266055|266381|405046|408481|421203|425880|431571|431572|431573|431579|431580|431582|431584|431586|431590|431599|431603|431604|431606|431608|431609|431684|431685|431686|431687|431752|431753|431760|431761|431762|431763|431764|431765|431766|431767|431768|431869|431870|431879|431881|488838|489150|494952|494953|494954|494979|496182|540920|541060|541096|546425|551533|551534|576301|612044|620779|622995|624027|654597|655061|918364|918488|969547", "text": "Usher syndrome" }, { - "baseId": "17390|31371|48304|67621|205216|223281|223282|263195|263212|263223|263228|263237|263243|263265|263382|393365|395696|513960|513988|514121|514166|514198|519149|540141|590036|590057|590081|590097", + "upstreamId": "17390|31371|48304|67621|205216|223281|223282|263195|263212|263223|263228|263237|263243|263265|263382|393365|395696|513960|513988|514121|514166|514198|519149|540141|590036|590057|590081|590097", "text": "13 conditions" }, { - "baseId": "17390|18588|20649|20771|22927|22933|22940|24189|24190|24396|28206|31971|32680|76340|98777|102552|104588|104593|104952|104995|105071|105135|105177|105181|105317|105337|105394|105402|105625|105653|105777|237685|259643|287942|321026|417082|431558|431618|431622|431630|431635|431693|431694|431716|431804|431818|431833|439631|439632|488680|513915|513929|513951|514169|528800|544286|551545|551549|623817|623848|623849|623852|623871|623877|623961|623972|624042|794253|794257|794258|794259|794260", + "upstreamId": "17390|18588|20649|20771|22927|22933|22940|24189|24190|24396|28206|31971|32680|76340|98777|102552|104588|104593|104952|104995|105071|105135|105177|105181|105317|105337|105394|105402|105625|105653|105777|237685|259643|287942|321026|417082|431558|431618|431622|431630|431635|431693|431694|431716|431804|431818|431833|439631|439632|488680|513915|513929|513951|514169|528800|544286|551545|551549|623817|623848|623849|623852|623871|623877|623961|623972|624042|794253|794257|794258|794259|794260", "text": "Macular dystrophy" }, { - "baseId": "17390|20883|26654|26656|40161|227365|271052|274282|431612|431625|431682|431683|431739|431779|431780|431781|431782|431783|431784|431829|431832|431837|431840|431841|431842|431843|431844|431845|431846|431847|431848|434600|497708|584920|613267|623838|623880|623949|623969|623970|798325|800589|800590|800643|800644|800645|800646|800647|800648|800654|800655|800656|800657|800658|800659|800660|800706|801496", + "upstreamId": "17390|20883|26654|26656|40161|227365|271052|274282|431612|431625|431682|431683|431739|431779|431780|431781|431782|431783|431784|431829|431832|431837|431840|431841|431842|431843|431844|431845|431846|431847|431848|434600|497708|584920|613267|623838|623880|623949|623969|623970|798325|800589|800590|800643|800644|800645|800646|800647|800648|800654|800655|800656|800657|800658|800659|800660|800706|801496", "text": "Congenital stationary night blindness" }, { - "baseId": "17390|17392|17395|17398|57638|57665|57706|626104|861589", + "upstreamId": "17390|17392|17395|17398|57638|57665|57706|626104|861589", "text": "USH2A-Related Disorders" }, { - "baseId": "17396|19890|29315|32041|32043|32043|32043|32044|32045|32048|32049|32053|32055|32055|32062|32068|32071|34239|38617|53902|53904|53907|53909|53916|53930|57649|67271|76712|168624|169009|169010|169011|169012|169013|169014|181454|191764|223747|247054|263239|268648|354284|354286|354286|354287|354287|354288|354295|360840|360860|360885|360886|360906|361056|361392|362144|362151|406053|492270|513923|513952|513977|514006|514113|514116|514152|514154|514168|581871|581872|581873|581874|581875|581876|581877|581878|581879|581880|581881|610530|610531|624879|800396|800402|800403|800404|800413|801081|966399|983303", + "upstreamId": "17396|19890|29315|32041|32043|32043|32043|32044|32045|32048|32049|32053|32055|32055|32062|32068|32071|34239|38617|53902|53904|53907|53909|53916|53930|57649|67271|76712|168624|169009|169010|169011|169012|169013|169014|181454|191764|223747|247054|263239|268648|354284|354286|354286|354287|354287|354288|354295|360840|360860|360885|360886|360906|361056|361392|362144|362151|406053|492270|513923|513952|513977|514006|514113|514116|514152|514154|514168|581871|581872|581873|581874|581875|581876|581877|581878|581879|581880|581881|610530|610531|624879|800396|800402|800403|800404|800413|801081|966399|983303", "text": "Hearing impairment" }, { - "baseId": "17396|226957|230000|263404|359493|360808|360866|429949|513936|514071|514072|553143", + "upstreamId": "17396|226957|230000|263404|359493|360808|360866|429949|513936|514071|514072|553143", "text": "Congenital sensorineural hearing impairment" }, { - "baseId": "17396|17397|17400|39679|55440|55455|55569|57552|57754|57788|86942|152897|172522|228337|228349|361628|413262|413264|413271|413273|413306|437845|540912|540961|541105|541109|683137|683138|800429|800431|800433|800435|800436|800440|800441|800442|800506|800507|801277|801279|801281|801284|801286|801291|801294|801296|801298|801299|801302|801304|801305|801306|801307|801382|801383|801423|801424|801425|801426|801430|801431", + "upstreamId": "17396|17397|17400|39679|55440|55455|55569|57552|57754|57788|86942|152897|172522|228337|228349|361628|413262|413264|413271|413273|413306|437845|540912|540961|541105|541109|683137|683138|800429|800431|800433|800435|800436|800440|800441|800442|800506|800507|801277|801279|801281|801284|801286|801291|801294|801296|801298|801299|801302|801304|801305|801306|801307|801382|801383|801423|801424|801425|801426|801430|801431", "text": "Usher syndrome type 2" }, { - "baseId": "17397|104561|513994", + "upstreamId": "17397|104561|513994", "text": "Pigmentary retinopathy" }, { - "baseId": "17397|22918|105002", + "upstreamId": "17397|22918|105002", "text": "Abnormal macular morphology" }, { - "baseId": "17397|200983|200986|297377|370448|404617|418811|418812|431877|513934|513935|513966|623968|681597|800988|818725|858652|965405", + "upstreamId": "17397|200983|200986|297377|370448|404617|418811|418812|431877|513934|513935|513966|623968|681597|800988|818725|858652|965405", "text": "Rod-cone dystrophy" }, { - "baseId": "17397|17403|415139|513916|513929", + "upstreamId": "17397|17403|415139|513916|513929", "text": "Retinal pigment epithelial atrophy" }, { - "baseId": "17402", + "upstreamId": "17402", "text": "Autism 16" }, { - "baseId": "17403|96868|96869|96870|176946|177209|177577|177578|190683|190684|195274|238003|250437|250438|264085|286043|286044|286056|366713|431648|431649|431650|512892|513022|513023|513915|513916|541791|629180|707887|719468|747105|762720|781090|787254|790135|799268|799269|818180|825451|825453|825460|850821|952849|952851|977657|977658|977659|977660|977661", + "upstreamId": "17403|96868|96869|96870|176946|177209|177577|177578|190683|190684|195274|238003|250437|250438|264085|286043|286044|286056|366713|431648|431649|431650|512892|513022|513023|513915|513916|541791|629180|707887|719468|747105|762720|781090|787254|790135|799268|799269|818180|825451|825453|825460|850821|952849|952851|977657|977658|977659|977660|977661", "text": "Retinitis pigmentosa 26" }, { - "baseId": "17403|22923|24220|24394|24396|24949|28222|102019|104480|105365|106482|152960|177450|191956|252354|259677|268269|300123|300126|300134|300137|302858|302861|302865|302867|302869|302871|307243|307263|307275|307276|307289|307471|307480|307508|307515|307521|307522|361572|420007|431645|431646|431657|431757|431800|431854|431867|432018|513916|551590|612235|612240|800561|801316|801318|801321|801338|801347|801349|801388|801415|801416|801417|801439|801455", + "upstreamId": "17403|22923|24220|24394|24396|24949|28222|102019|104480|105365|106482|152960|177450|191956|252354|259677|268269|300123|300126|300134|300137|302858|302861|302865|302867|302869|302871|307243|307263|307275|307276|307289|307471|307480|307508|307515|307521|307522|361572|420007|431645|431646|431657|431757|431800|431854|431867|432018|513916|551590|612235|612240|800561|801316|801318|801321|801338|801347|801349|801388|801415|801416|801417|801439|801455", "text": "Cone dystrophy" }, { - "baseId": "17404|17405|17406|17407|17408|17409|17410|17411|17412|212072|212073|212074|221080|221081|221082|276270|276275|276281|276285|276515|276516|276518|276519|276528|276915|276918|276939|276940|276941|277040|277055|277058|277067|277068|390720|447268|514856|515059|515153|535732|550878|556484|556487|581864|626777|626778|626779|626780|862149|862150|862151|862152|862153|862154|862155|862156|862157|862158|862159|862160|862161|862162|862163|862164|862165|862166|862167", + "upstreamId": "17404|17405|17406|17407|17408|17409|17410|17411|17412|212072|212073|212074|221080|221081|221082|276270|276275|276281|276285|276515|276516|276518|276519|276528|276915|276918|276939|276940|276941|277040|277055|277058|277067|277068|390720|447268|514856|515059|515153|535732|550878|556484|556487|581864|626777|626778|626779|626780|862149|862150|862151|862152|862153|862154|862155|862156|862157|862158|862159|862160|862161|862162|862163|862164|862165|862166|862167", "text": "Hemochromatosis type 2A" }, { - "baseId": "17413|433676|433677|433678|700819|700821|723348|789745|789746|799580", + "upstreamId": "17413|433676|433677|433678|700819|700821|723348|789745|789746|799580", "text": "Agammaglobulinemia 5, autosomal dominant" }, { - "baseId": "17414|17416|17417|17418|17419|17420|17421|17422|99244|99245|99248|99249|99251|99252|99258|99259|99260|99262|99266|99268|99269|99273|99276|99279|99282|99292|99295|99297|195594|225801|333630|349906|426317|648139|694431|728206|728207|741915|741916|741918|741919|772710|772711|772713|786202|786206|979983|979984|979985", + "upstreamId": "17414|17416|17417|17418|17419|17420|17421|17422|99244|99245|99248|99249|99251|99252|99258|99259|99260|99262|99266|99268|99269|99273|99276|99279|99282|99292|99295|99297|195594|225801|333630|349906|426317|648139|694431|728206|728207|741915|741916|741918|741919|772710|772711|772713|786202|786206|979983|979984|979985", "text": "Maple syrup urine disease type 1A" }, { - "baseId": "17414|17416|17419|26976|26982|26985|26988|26989|76678|76679|99241|99242|99243|99244|99245|99248|99249|99250|99251|99252|99258|99259|99260|99261|99262|99264|99266|99268|99269|99272|99273|99274|99275|99276|99278|99279|99282|99283|99284|99289|99290|99291|99292|99295|99297|99884|99887|99889|99892|99893|99894|99895|99896|99908|99909|99910|99911|99912|99913|99914|99915|99918|99919|102454|102455|102456|102457|102461|102465|102469|102471|102472|102475|102479|102480|102483|102484|102485|102486|102492|102495|102497|102498|102500|102501|102502|102504|102508|102509|102514|102515|116675|134332|176981|177515|177516|177667|186721|190799|192318|195594|195908|199937|200129|200344|200771|200772|200773|200774|206688|206689|225782|225783|225784|225785|225786|225787|225788|225789|225800|225801|227303|252539|265476|265571|268007|275553|275554|275555|275556|275557|275558|275559|275560|275561|275562|275563|275564|275565|275566|275567|275568|275569|275570|275571|275572|275573|275574|275575|275576|275577|275578|275579|275580|275581|275582|275583|275584|275585|275586|275587|275588|275589|275590|275591|275592|275593|275594|275595|275596|275597|275598|275599|275600|275601|275602|275603|275604|275605|275606|275607|275608|275609|275610|275611|275612|275613|275614|275619|275621|275623|275624|275625|275626|275627|275628|275629|275630|275631|275632|275633|275634|275635|275636|275637|275638|275639|275640|275641|275642|301176|301182|301184|301189|301191|301194|301195|301200|301201|301205|301207|301480|304272|304273|304282|304288|304289|304303|304304|304311|304317|304324|304332|304336|304341|304345|304346|304347|304349|304744|308957|308960|308961|308974|308975|308976|309046|309048|309049|309050|309058|309062|309063|309064|309080|309085|309086|309088|309090|333630|333635|333637|333641|333643|333646|333662|333674|343673|343679|343680|343683|349007|349008|349012|349018|349906|349908|349910|349912|349913|349914|349915|353804|356979|357516|357517|357518|357519|357520|357521|357522|357523|357524|357525|358619|361834|368762|368765|369081|369320|376568|376574|377548|379596|379597|379598|384484|384485|421147|425715|426316|426317|430989|433480|433481|444020|446912|446935|446938|446980|456100|456437|468824|469856|470251|470256|497317|497915|502100|506843|506845|507846|513375|513376|514893|514911|521867|522220|522228|522231|522251|522264|522618|533054|540623|540624|540625|540626|540627|540628|540629|540630|540631|540632|540633|540634|540635|540636|540637|540639|540641|540643|540648|540654|540655|540659|540664|543978|543979|543981|543983|543988|544000|544243|544244|544264|544265|544267|544268|544273|544274|544276|544321|544323|544327|544328|544329|544330|544332|544336|544349|544353|544356|544358|548791|548795|548799|548802|548803|548804|548805|548820|548829|548838|548839|548842|549164|549165|549167|549173|549175|549177|549359|549360|549361|549362|549363|556510|556537|556539|561122|563824|563826|570808|574981|581742|609633|612251|612278|612330|612331|612341|620701|622463|626466|626467|635310|635311|635312|635313|648139|648140|648141|650521|651570|692073|694431|695825|699678|710620|710621|718037|718038|722152|728206|728207|728208|731504|741915|741916|741917|741918|741919|741920|743646|743647|745488|745490|750244|757047|758786|758787|758791|761011|765879|765880|765883|765886|772707|772710|772711|772713|772714|774353|776985|780242|780245|780246|782671|782674|786203|786204|786967|789811|789812|790660|790661|790662|818825|818826|818827|818828|819756|819757|819758|819759|821257|821258|822355|822356|822357|832583|832584|832585|832586|832587|832588|832589|847726|851102|852040|861686|861687|861688|861689|861690|861691|861692|861693|861694|861695|861696|861697|861698|861699|861700|861701|861702|861703|861704|861705|861706|861707|861708|861709|861710|861711|861712|861713|861714|861715|861716|861717|861718|861719|861720|861721|861722|861723|861724|861725|861726|861727|861728|861729|861730|861731|861732|861733|861734|861735|861736|861737|861738|861739|861740|861741|861742|861743|861744|861745|861746|861747|861748|861749|861750|861751|861752|861753|861754|861755|864939|882081|882082|882083|882084|882085|882086|882087|882088|882089|882090|882091|882092|882093|882894|882895|896989|896990|896991|896992|896993|896994|896995|896996|896997|896998|896999|897000|897001|897002|897003|897004|897005|897006|897007|905914|916978|918537|920408|921532|921533|924519|924520|924521|928975|928976|928977|928978|928979|929888|933525|933526|933527|933528|933529|933530|938698|938699|938700|938701|945250|945251|945252|950804|950805|951978|951979|954929|954930|958645|958646|958647|958648|958649|958650|959514|959820|960395|960614|960919|961791|965749|965750|965751|971135|971629|971630|971631|971632|971633|971634|971635|971636|971968|971969|971970|971971|971972|971973|972335|972336|972337|972338|972339", + "upstreamId": "17414|17416|17419|26976|26982|26985|26988|26989|76678|76679|99241|99242|99243|99244|99245|99248|99249|99250|99251|99252|99258|99259|99260|99261|99262|99264|99266|99268|99269|99272|99273|99274|99275|99276|99278|99279|99282|99283|99284|99289|99290|99291|99292|99295|99297|99884|99887|99889|99892|99893|99894|99895|99896|99908|99909|99910|99911|99912|99913|99914|99915|99918|99919|102454|102455|102456|102457|102461|102465|102469|102471|102472|102475|102479|102480|102483|102484|102485|102486|102492|102495|102497|102498|102500|102501|102502|102504|102508|102509|102514|102515|116675|134332|176981|177515|177516|177667|186721|190799|192318|195594|195908|199937|200129|200344|200771|200772|200773|200774|206688|206689|225782|225783|225784|225785|225786|225787|225788|225789|225800|225801|227303|252539|265476|265571|268007|275553|275554|275555|275556|275557|275558|275559|275560|275561|275562|275563|275564|275565|275566|275567|275568|275569|275570|275571|275572|275573|275574|275575|275576|275577|275578|275579|275580|275581|275582|275583|275584|275585|275586|275587|275588|275589|275590|275591|275592|275593|275594|275595|275596|275597|275598|275599|275600|275601|275602|275603|275604|275605|275606|275607|275608|275609|275610|275611|275612|275613|275614|275619|275621|275623|275624|275625|275626|275627|275628|275629|275630|275631|275632|275633|275634|275635|275636|275637|275638|275639|275640|275641|275642|301176|301182|301184|301189|301191|301194|301195|301200|301201|301205|301207|301480|304272|304273|304282|304288|304289|304303|304304|304311|304317|304324|304332|304336|304341|304345|304346|304347|304349|304744|308957|308960|308961|308974|308975|308976|309046|309048|309049|309050|309058|309062|309063|309064|309080|309085|309086|309088|309090|333630|333635|333637|333641|333643|333646|333662|333674|343673|343679|343680|343683|349007|349008|349012|349018|349906|349908|349910|349912|349913|349914|349915|353804|356979|357516|357517|357518|357519|357520|357521|357522|357523|357524|357525|358619|361834|368762|368765|369081|369320|376568|376574|377548|379596|379597|379598|384484|384485|421147|425715|426316|426317|430989|433480|433481|444020|446912|446935|446938|446980|456100|456437|468824|469856|470251|470256|497317|497915|502100|506843|506845|507846|513375|513376|514893|514911|521867|522220|522228|522231|522251|522264|522618|533054|540623|540624|540625|540626|540627|540628|540629|540630|540631|540632|540633|540634|540635|540636|540637|540639|540641|540643|540648|540654|540655|540659|540664|543978|543979|543981|543983|543988|544000|544243|544244|544264|544265|544267|544268|544273|544274|544276|544321|544323|544327|544328|544329|544330|544332|544336|544349|544353|544356|544358|548791|548795|548799|548802|548803|548804|548805|548820|548829|548838|548839|548842|549164|549165|549167|549173|549175|549177|549359|549360|549361|549362|549363|556510|556537|556539|561122|563824|563826|570808|574981|581742|609633|612251|612278|612330|612331|612341|620701|622463|626466|626467|635310|635311|635312|635313|648139|648140|648141|650521|651570|692073|694431|695825|699678|710620|710621|718037|718038|722152|728206|728207|728208|731504|741915|741916|741917|741918|741919|741920|743646|743647|745488|745490|750244|757047|758786|758787|758791|761011|765879|765880|765883|765886|772707|772710|772711|772713|772714|774353|776985|780242|780245|780246|782671|782674|786203|786204|786967|789811|789812|790660|790661|790662|818825|818826|818827|818828|819756|819757|819758|819759|821257|821258|822355|822356|822357|832583|832584|832585|832586|832587|832588|832589|847726|851102|852040|861686|861687|861688|861689|861690|861691|861692|861693|861694|861695|861696|861697|861698|861699|861700|861701|861702|861703|861704|861705|861706|861707|861708|861709|861710|861711|861712|861713|861714|861715|861716|861717|861718|861719|861720|861721|861722|861723|861724|861725|861726|861727|861728|861729|861730|861731|861732|861733|861734|861735|861736|861737|861738|861739|861740|861741|861742|861743|861744|861745|861746|861747|861748|861749|861750|861751|861752|861753|861754|861755|864939|882081|882082|882083|882084|882085|882086|882087|882088|882089|882090|882091|882092|882093|882894|882895|896989|896990|896991|896992|896993|896994|896995|896996|896997|896998|896999|897000|897001|897002|897003|897004|897005|897006|897007|905914|916978|918537|920408|921532|921533|924519|924520|924521|928975|928976|928977|928978|928979|929888|933525|933526|933527|933528|933529|933530|938698|938699|938700|938701|945250|945251|945252|950804|950805|951978|951979|954929|954930|958645|958646|958647|958648|958649|958650|959514|959820|960395|960614|960919|961791|965749|965750|965751|971135|971629|971630|971631|971632|971633|971634|971635|971636|971968|971969|971970|971971|971972|971973|972335|972336|972337|972338|972339", "text": "Maple syrup urine disease" }, { - "baseId": "17416|17417", + "upstreamId": "17416|17417", "text": "MAPLE SYRUP URINE DISEASE, INTERMEDIATE, TYPE IA" }, { - "baseId": "17425|17426|17427|17428|17429|17430|17431|17432|17433|17434|17435|17436|140122|200106|298991|298995|301405|305774|305790|305791|305796|305801|306021|306022|406814|406816|406817|455277|501451|501540|501825|521434|521768|543611|543614|543616|543619|543916|543918|543919|543920|543922|543924|543925|543926|543927|543928|543929|543931|543932|543933|543935|543936|544003|544010|544011|544013|544020|544022|544028|544030|560461|560463|560598|563388|565433|620213|634617|634618|634619|634620|651480|686799|686800|686801|691939|721718|744263|749814|759629|782451|790585|790586|790587|831554|831555|831556|831557|831558|852008|895322|895323|895324|895325|895326|904751|944886|954369|954370|980327", + "upstreamId": "17425|17426|17427|17428|17429|17430|17431|17432|17433|17434|17435|17436|140122|200106|298991|298995|301405|305774|305790|305791|305796|305801|306021|306022|406814|406816|406817|455277|501451|501540|501825|521434|521768|543611|543614|543616|543619|543916|543918|543919|543920|543922|543924|543925|543926|543927|543928|543929|543931|543932|543933|543935|543936|544003|544010|544011|544013|544020|544022|544028|544030|560461|560463|560598|563388|565433|620213|634617|634618|634619|634620|651480|686799|686800|686801|691939|721718|744263|749814|759629|782451|790585|790586|790587|831554|831555|831556|831557|831558|852008|895322|895323|895324|895325|895326|904751|944886|954369|954370|980327", "text": "Arginase deficiency" }, { - "baseId": "17437|17438|17439|17440|17441|17442|34105|34106|98269|98270|98271|98272|98273|98274|98275|98276|140125|177119|195545|200146|200147|200148|200149|200150|200152|200153|200154|200158|200161|226851|226852|226853|226854|226855|226856|226857|226858|226859|226860|226862|228216|252905|273007|303265|303267|303271|303274|306584|306585|306587|306589|306604|306609|306611|311483|311653|359828|369259|369262|369902|371309|371324|371334|415107|415108|457529|457530|457535|457536|487358|502452|522780|523035|523038|523226|523229|523230|544227|544230|544232|544237|544239|544245|544253|544263|544289|544526|544532|544534|544541|544564|544566|544567|544568|544572|544576|544578|544580|544581|544587|544588|544590|544591|544593|544595|544598|544624|544625|544629|544631|544632|544634|544640|544645|544647|544653|544657|544658|561725|562137|564395|636307|636308|636309|636310|636311|636312|651642|651694|651728|651729|651759|679756|692266|692267|692268|692269|692270|692271|695368|722609|722610|736220|736221|736222|744307|750721|766350|766351|766352|766356|775274|775403|779435|782905|782907|782908|782911|819905|819908|819909|819910|819911|821948|833799|833800|833801|833802|833803|833804|833805|833806|833807|851652|898300|898301|898302|898303|898304|898305|898306|898307|898308|898309|898310|898311|898312|898313|898314|900387|921466|933978|940083|945748|945749|955204|955205|955206|959508|972003|972004|972005|972006|972007|972008|978398|978399|978400|978401", + "upstreamId": "17437|17438|17439|17440|17441|17442|34105|34106|98269|98270|98271|98272|98273|98274|98275|98276|140125|177119|195545|200146|200147|200148|200149|200150|200152|200153|200154|200158|200161|226851|226852|226853|226854|226855|226856|226857|226858|226859|226860|226862|228216|252905|273007|303265|303267|303271|303274|306584|306585|306587|306589|306604|306609|306611|311483|311653|359828|369259|369262|369902|371309|371324|371334|415107|415108|457529|457530|457535|457536|487358|502452|522780|523035|523038|523226|523229|523230|544227|544230|544232|544237|544239|544245|544253|544263|544289|544526|544532|544534|544541|544564|544566|544567|544568|544572|544576|544578|544580|544581|544587|544588|544590|544591|544593|544595|544598|544624|544625|544629|544631|544632|544634|544640|544645|544647|544653|544657|544658|561725|562137|564395|636307|636308|636309|636310|636311|636312|651642|651694|651728|651729|651759|679756|692266|692267|692268|692269|692270|692271|695368|722609|722610|736220|736221|736222|744307|750721|766350|766351|766352|766356|775274|775403|779435|782905|782907|782908|782911|819905|819908|819909|819910|819911|821948|833799|833800|833801|833802|833803|833804|833805|833806|833807|851652|898300|898301|898302|898303|898304|898305|898306|898307|898308|898309|898310|898311|898312|898313|898314|900387|921466|933978|940083|945748|945749|955204|955205|955206|959508|972003|972004|972005|972006|972007|972008|978398|978399|978400|978401", "text": "Argininosuccinate lyase deficiency" }, { - "baseId": "17443|17444|17445|17446|17447|17448|17449|17450|17451|17452|17453|17454|17456|24734|24744|181392|187107|249676|249677|249678|270627|271018|273199|273569|278529|278531|278532|278534|278541|278542|278543|278550|278551|278559|278643|278644|278645|278656|278657|278658|278672|278676|278678|279796|279797|279798|279803|279809|279812|279953|279962|279965|279966|279967|361485|361486|425331|439180|440432|440434|447474|447721|485989|491572|515409|515514|556768|609368|619985|619986|619987|619988|627313|627314|627315|627316|627317|690471|690472|690473|690474|690475|690476|707026|718571|718573|794551|823272|823273|863341|863342|863343|863344|863345|863346|863347|863348|863349|863350|863351|863352|863353|863354|863355|863356|863357|863358|863359|863360|863361|863362|863363|863364|863365|863366|865097|865098|918593|930252|939792|952221|959540", + "upstreamId": "17443|17444|17445|17446|17447|17448|17449|17450|17451|17452|17453|17454|17456|24734|24744|181392|187107|249676|249677|249678|270627|271018|273199|273569|278529|278531|278532|278534|278541|278542|278543|278550|278551|278559|278643|278644|278645|278656|278657|278658|278672|278676|278678|279796|279797|279798|279803|279809|279812|279953|279962|279965|279966|279967|361485|361486|425331|439180|440432|440434|447474|447721|485989|491572|515409|515514|556768|609368|619985|619986|619987|619988|627313|627314|627315|627316|627317|690471|690472|690473|690474|690475|690476|707026|718571|718573|794551|823272|823273|863341|863342|863343|863344|863345|863346|863347|863348|863349|863350|863351|863352|863353|863354|863355|863356|863357|863358|863359|863360|863361|863362|863363|863364|863365|863366|865097|865098|918593|930252|939792|952221|959540", "text": "Parkinson disease 6, autosomal recessive early-onset" }, { - "baseId": "17455", + "upstreamId": "17455", "text": "Parkinson disease 6" }, { - "baseId": "17456|22108", + "upstreamId": "17456|22108", "text": "Parkinson disease, autosomal recessive early-onset, digenic, PINK1/DJ1" }, { - "baseId": "17457|17458|17459|17460|17461|17463|17464|17465|39677|111328|134297|134298|134299|134300|134301|140726|140727|140728|140729|172198|194135|194135|199986|199987|199988|199989|199990|199993|206940|236961|237339|237339|250535|250537|250540|250541|264072|265568|284536|284537|284541|284542|284547|284558|284559|284560|284562|284567|284568|284577|284578|285222|285223|285225|285232|285233|285239|285240|285242|285243|285245|285250|285254|285255|285258|287384|287386|287393|287394|287416|287418|287419|287420|287422|287425|287437|287441|287446|287448|287449|287644|287646|287647|287651|287656|287657|287658|287659|366120|366130|366283|366284|366285|366293|366344|366346|366939|366960|404756|405557|421361|443154|443155|450313|450317|450452|450459|450461|450502|450507|450597|481357|486956|499515|499901|499959|499964|517704|517734|517880|541668|541670|541672|541674|541676|541678|541681|541686|541691|541693|541698|541700|541702|541704|541705|541712|541713|541716|541724|541725|541734|541735|541741|541745|541747|541748|541752|541756|541758|541760|541763|541764|541765|541769|541770|541772|541773|541776|541779|541784|541785|541787|541788|541788|541792|541793|541795|541796|541797|541799|541806|541807|541814|541816|541818|541820|541822|541824|541825|541828|541829|541830|541833|541835|541836|541840|541844|541847|541848|541849|541852|541854|541862|541863|541866|541868|541875|541877|541887|557834|557889|557891|559069|560809|560811|560815|560817|560817|560821|560823|620056|620739|620740|621108|629352|629353|629354|629355|629356|629357|629358|629359|650910|650917|650945|650950|655413|655414|655415|655416|658873|686141|691022|691023|691024|691025|691026|707996|719576|719577|743846|743850|747239|747240|747241|759015|759194|762847|762849|762850|762852|762853|762854|762856|762857|774652|781139|787093|790165|790166|790167|790168|790169|790170|790171|819106|825644|825645|825646|825647|825648|825649|825650|825651|825652|825653|825654|825655|825656|825657|825658|825659|825660|850831|861617|861618|883641|883642|883643|883644|883645|883646|883647|883648|883649|883650|883651|883652|883653|883654|883655|883656|883657|883658|883659|883660|883661|883662|883663|883664|883665|883666|883667|883668|883669|883670|887257|887258|887259|887260|887261|906067|916858|922541|922542|931103|931104|931105|931106|931107|939873|942576|942577|942578|942579|942580|952896|952897|952898|952899|952900|952901|952902|952903|952904|952905|952906|952907|952908|952909|971709|971710|971711|971712|971713|971714|971715|971716|971717|971718|971719|971720|971721|971722|971723|971724|971725|971726|971727|971728|971729|971730|971731|971732|971733|971734", + "upstreamId": "17457|17458|17459|17460|17461|17463|17464|17465|39677|111328|134297|134298|134299|134300|134301|140726|140727|140728|140729|172198|194135|194135|199986|199987|199988|199989|199990|199993|206940|236961|237339|237339|250535|250537|250540|250541|264072|265568|284536|284537|284541|284542|284547|284558|284559|284560|284562|284567|284568|284577|284578|285222|285223|285225|285232|285233|285239|285240|285242|285243|285245|285250|285254|285255|285258|287384|287386|287393|287394|287416|287418|287419|287420|287422|287425|287437|287441|287446|287448|287449|287644|287646|287647|287651|287656|287657|287658|287659|366120|366130|366283|366284|366285|366293|366344|366346|366939|366960|404756|405557|421361|443154|443155|450313|450317|450452|450459|450461|450502|450507|450597|481357|486956|499515|499901|499959|499964|517704|517734|517880|541668|541670|541672|541674|541676|541678|541681|541686|541691|541693|541698|541700|541702|541704|541705|541712|541713|541716|541724|541725|541734|541735|541741|541745|541747|541748|541752|541756|541758|541760|541763|541764|541765|541769|541770|541772|541773|541776|541779|541784|541785|541787|541788|541788|541792|541793|541795|541796|541797|541799|541806|541807|541814|541816|541818|541820|541822|541824|541825|541828|541829|541830|541833|541835|541836|541840|541844|541847|541848|541849|541852|541854|541862|541863|541866|541868|541875|541877|541887|557834|557889|557891|559069|560809|560811|560815|560817|560817|560821|560823|620056|620739|620740|621108|629352|629353|629354|629355|629356|629357|629358|629359|650910|650917|650945|650950|655413|655414|655415|655416|658873|686141|691022|691023|691024|691025|691026|707996|719576|719577|743846|743850|747239|747240|747241|759015|759194|762847|762849|762850|762852|762853|762854|762856|762857|774652|781139|787093|790165|790166|790167|790168|790169|790170|790171|819106|825644|825645|825646|825647|825648|825649|825650|825651|825652|825653|825654|825655|825656|825657|825658|825659|825660|850831|861617|861618|883641|883642|883643|883644|883645|883646|883647|883648|883649|883650|883651|883652|883653|883654|883655|883656|883657|883658|883659|883660|883661|883662|883663|883664|883665|883666|883667|883668|883669|883670|887257|887258|887259|887260|887261|906067|916858|922541|922542|931103|931104|931105|931106|931107|939873|942576|942577|942578|942579|942580|952896|952897|952898|952899|952900|952901|952902|952903|952904|952905|952906|952907|952908|952909|971709|971710|971711|971712|971713|971714|971715|971716|971717|971718|971719|971720|971721|971722|971723|971724|971725|971726|971727|971728|971729|971730|971731|971732|971733|971734", "text": "Congenital hyperammonemia, type I" }, { - "baseId": "17462", + "upstreamId": "17462", "text": "CARBAMOYL PHOSPHATE SYNTHETASE I POLYMORPHISM" }, { - "baseId": "17462|194135|237339|404756|541788|560817", + "upstreamId": "17462|194135|237339|404756|541788|560817", "text": "Pulmonary hypertension, neonatal, susceptibility to" }, { - "baseId": "17466|17467|17468|17469|17470|17471|17472|17473|200314|200315|256179|256180|256181|328630|328633|328634|328636|338615|338616|344663|344666|344668|344676|364128|375140|376056|376142|376144|378306|410040|415563|506870|531138|531406|571213|574496|581775|612181|646068|646069|646070|653276|715478|727200|727201|740799|740800|740801|740802|740804|771561|785604|785605|785606|785607|785609|785610|845482|845483|845484|845485|877667|877668|877669|877670|877671|877672|877673|877674|877675|877676|877677|877678|920372|928328|928329|949966|949967|958141|960888|979906|979907|979908", + "upstreamId": "17466|17467|17468|17469|17470|17471|17472|17473|200314|200315|256179|256180|256181|328630|328633|328634|328636|338615|338616|344663|344666|344668|344676|364128|375140|376056|376142|376144|378306|410040|415563|506870|531138|531406|571213|574496|581775|612181|646068|646069|646070|653276|715478|727200|727201|740799|740800|740801|740802|740804|771561|785604|785605|785606|785607|785609|785610|845482|845483|845484|845485|877667|877668|877669|877670|877671|877672|877673|877674|877675|877676|877677|877678|920372|928328|928329|949966|949967|958141|960888|979906|979907|979908", "text": "Hyperammonemia, type III" }, { - "baseId": "17475|17476|17477|17478|17479|17480|217277|316957|316961|316980|316981|316983|316984|316986|316987|316988|316992|316994|316995|317001|317002|317009|317013|324575|324576|324579|324599|324605|324606|324609|324610|324611|324616|324622|324623|324626|324629|324630|324635|324636|324637|324657|324658|324662|324663|324676|330780|330781|330785|330787|330788|330796|330804|330805|330815|330819|330825|330827|330828|330829|330833|330838|330845|330846|332181|332199|332201|332206|332217|332227|332228|332229|332231|332235|332242|332244|332256|332257|332274|332276|332281|332292|332293|332300|332313|620440|620441|620848|725083|738626|753346|769102|869741|869742|869743|869744|869745|869746|869747|869748|869749|869750|869751|869752|869753|869754|869755|869756|869757|869758|869759|869760|869761|869762|869763|872233|872234|872235|872236", + "upstreamId": "17475|17476|17477|17478|17479|17480|217277|316957|316961|316980|316981|316983|316984|316986|316987|316988|316992|316994|316995|317001|317002|317009|317013|324575|324576|324579|324599|324605|324606|324609|324610|324611|324616|324622|324623|324626|324629|324630|324635|324636|324637|324657|324658|324662|324663|324676|330780|330781|330785|330787|330788|330796|330804|330805|330815|330819|330825|330827|330828|330829|330833|330838|330845|330846|332181|332199|332201|332206|332217|332227|332228|332229|332231|332235|332242|332244|332256|332257|332274|332276|332281|332292|332293|332300|332313|620440|620441|620848|725083|738626|753346|769102|869741|869742|869743|869744|869745|869746|869747|869748|869749|869750|869751|869752|869753|869754|869755|869756|869757|869758|869759|869760|869761|869762|869763|872233|872234|872235|872236", "text": "Fibrosis of extraocular muscles, congenital, 1" }, { - "baseId": "17475|17476|17481", + "upstreamId": "17475|17476|17481", "text": "Fibrosis of extraocular muscles, congenital, 3b" }, { - "baseId": "17482|17488|17489|17493", + "upstreamId": "17482|17488|17489|17493", "text": "Sialidosis type I" }, { - "baseId": "17483|17484|17485|17486|17487|17490|17491|17492|17494|17495|17496|17497|215038|215039|273412|299753|299758|299759|299762|299763|302344|302345|302346|302349|302360|302367|306753|306760|307067|307077|307078|307085|549604|620225|721957|721958|858593|895745|895746|895747|895748|895749|895750|895751|895752|895753|895754|895755|895756", + "upstreamId": "17483|17484|17485|17486|17487|17490|17491|17492|17494|17495|17496|17497|215038|215039|273412|299753|299758|299759|299762|299763|302344|302345|302346|302349|302360|302367|306753|306760|307067|307077|307078|307085|549604|620225|721957|721958|858593|895745|895746|895747|895748|895749|895750|895751|895752|895753|895754|895755|895756", "text": "Sialidosis type 2" }, { - "baseId": "17498|142739|142740|188493|188498|188500|188501|189321|189322|189323|241058|372002|398399|398509|510255|526012|526421|551780|564446|625808|639736|639737|652157|680063|689998|838019|838020|838021|926133|926134|935403|947333|947334|956397", + "upstreamId": "17498|142739|142740|188493|188498|188500|188501|189321|189322|189323|241058|372002|398399|398509|510255|526012|526421|551780|564446|625808|639736|639737|652157|680063|689998|838019|838020|838021|926133|926134|935403|947333|947334|956397", "text": "Long QT syndrome 10" }, { - "baseId": "17499|77865", + "upstreamId": "17499|77865", "text": "Woolly hair, autosomal dominant" }, { - "baseId": "17500|17501|17502|17503|17504|17505|17506|17507|98216|98217|133725|133726|133727|140010|140011|140012|140013|140014|177473|190709|192169|194780|196141|203836|203839|203840|203841|203843|203845|203846|203851|203852|203853|203854|203856|203858|203859|203860|203863|203864|205025|215599|237095|243715|257684|265993|267588|267768|273616|274158|338124|338129|338130|347772|351611|352562|352563|377512|377516|377521|377536|378728|378730|378732|378797|378815|379856|379857|403985|411019|411020|426378|446422|470306|470309|471148|471151|471313|471596|471597|471978|534340|534344|534345|534352|534355|534362|534477|534836|534839|572000|572004|573411|574139|574140|575272|575273|614493|614494|649513|649514|649515|649516|649517|649518|649519|649520|649521|649522|649523|649524|649525|649526|653724|653725|684922|731424|788093|792070|792071|798771|821461|821462|821463|821464|849362|849363|849364|849365|849366|849367|849368|849369|849370|849371|849372|849373|851928|852940|891310|891311|891312|891313|891314|891838|891839|891840|929490|929491|929492|929493|929494|929495|939319|939320|939321|939322|939323|940534|951481|951482|951483|951484|951485|951486|959100|960968|971161", + "upstreamId": "17500|17501|17502|17503|17504|17505|17506|17507|98216|98217|133725|133726|133727|140010|140011|140012|140013|140014|177473|190709|192169|194780|196141|203836|203839|203840|203841|203843|203845|203846|203851|203852|203853|203854|203856|203858|203859|203860|203863|203864|205025|215599|237095|243715|257684|265993|267588|267768|273616|274158|338124|338129|338130|347772|351611|352562|352563|377512|377516|377521|377536|378728|378730|378732|378797|378815|379856|379857|403985|411019|411020|426378|446422|470306|470309|471148|471151|471313|471596|471597|471978|534340|534344|534345|534352|534355|534362|534477|534836|534839|572000|572004|573411|574139|574140|575272|575273|614493|614494|649513|649514|649515|649516|649517|649518|649519|649520|649521|649522|649523|649524|649525|649526|653724|653725|684922|731424|788093|792070|792071|798771|821461|821462|821463|821464|849362|849363|849364|849365|849366|849367|849368|849369|849370|849371|849372|849373|851928|852940|891310|891311|891312|891313|891314|891838|891839|891840|929490|929491|929492|929493|929494|929495|939319|939320|939321|939322|939323|940534|951481|951482|951483|951484|951485|951486|959100|960968|971161", "text": "Adenylosuccinate lyase deficiency" }, { - "baseId": "17508|39810|39811|39812|207737|207738|207740|253721|253722|253723|253724|253725|253726|253727|253728|253729|253732|253734|253736|253737|253738|253739|253740|253741|310109|310113|310115|310124|310125|310136|310137|310139|310141|310144|310145|310150|310153|310154|310162|315192|315197|315198|315207|315226|315227|315247|315248|315254|315266|315267|321220|321230|321255|321261|321263|321266|321274|321278|321279|321283|321284|321294|321777|321778|321780|321782|321788|321795|321816|321830|321831|321832|321850|321851|321869|321880|321899|321904|425871|429053|429057|429060|429061|429062|578483|615436|701301|723897|723898|723899|723900|816472|865761|865762|865763|865764|865765|865766|865767|865768|865769|865770|865771|865772|865773|865774|865775|865776|865777|865778|865779|865780|865781|865782|865783|865784|865785|865786|865787|865788|865789|865790|865791|865792|865793|865794|865795|865796|865797|865798|865799|865800|868466|868467|868468|868469|919266|980938", + "upstreamId": "17508|39810|39811|39812|207737|207738|207740|253721|253722|253723|253724|253725|253726|253727|253728|253729|253732|253734|253736|253737|253738|253739|253740|253741|310109|310113|310115|310124|310125|310136|310137|310139|310141|310144|310145|310150|310153|310154|310162|315192|315197|315198|315207|315226|315227|315247|315248|315254|315266|315267|321220|321230|321255|321261|321263|321266|321274|321278|321279|321283|321284|321294|321777|321778|321780|321782|321788|321795|321816|321830|321831|321832|321850|321851|321869|321880|321899|321904|425871|429053|429057|429060|429061|429062|578483|615436|701301|723897|723898|723899|723900|816472|865761|865762|865763|865764|865765|865766|865767|865768|865769|865770|865771|865772|865773|865774|865775|865776|865777|865778|865779|865780|865781|865782|865783|865784|865785|865786|865787|865788|865789|865790|865791|865792|865793|865794|865795|865796|865797|865798|865799|865800|868466|868467|868468|868469|919266|980938", "text": "Thrombocytopenia 2" }, { - "baseId": "17509|142736|150288|188504|188505|188506|188507|254022|258685|398081|461292|510259|564502|564503|639813|639814|639815|684238|759940|926151|947354", + "upstreamId": "17509|142736|150288|188504|188505|188506|188507|254022|258685|398081|461292|510259|564502|564503|639813|639814|639815|684238|759940|926151|947354", "text": "Brugada syndrome 7" }, { - "baseId": "17509|150289|150290|150291", + "upstreamId": "17509|150289|150290|150291", "text": "Atrial fibrillation, familial, 16" }, { - "baseId": "17510|17511|17511|17512|17513|17514|17515|17516|137943|137944|137946|137947|137950|137951|137953|137954|137954|137955|137956|137957|190929|192606|192607|215653|254166|254170|259984|259986|259987|264541|264544|275005|314033|314037|314039|314040|314042|314043|314045|314046|314050|314053|314054|314055|320503|320506|320508|320511|320512|320524|320525|326459|326466|326473|326483|326487|326491|326492|326493|326495|326496|326500|326501|326502|326504|327488|327489|327492|327506|327507|327508|327525|327527|327529|327531|327544|353189|374068|408349|444802|460433|461215|461611|461620|461621|461927|495713|525675|526206|526210|526215|526390|526396|538422|564095|564626|564631|564633|564633|565025|565765|565770|565774|612092|626205|640051|640052|640053|640054|640055|640056|640057|640058|652126|701764|712825|712826|724437|724438|737972|796573|805692|820367|820368|820369|820370|820371|820372|822306|838422|838423|838424|838425|838426|838427|838428|838429|838430|838431|838432|838433|838434|838435|838436|838437|838438|852350|867933|867934|867935|867936|867937|867938|867939|867940|867941|867942|867943|867944|867945|867946|867947|867948|867949|867950|867951|867952|867953|867954|867955|867956|867957|867958|868648|906203|919362|926239|926240|926241|926242|926243|926244|926245|926246|935533|935534|935535|935536|935537|935538|935539|935540|935541|935542|935543|935544|935545|940213|940997|947454|947455|947456|947457|947458|956494|956495|956496|959988|959989|960751|962988|970935|971619|971620|980556", + "upstreamId": "17510|17511|17511|17512|17513|17514|17515|17516|137943|137944|137946|137947|137950|137951|137953|137954|137954|137955|137956|137957|190929|192606|192607|215653|254166|254170|259984|259986|259987|264541|264544|275005|314033|314037|314039|314040|314042|314043|314045|314046|314050|314053|314054|314055|320503|320506|320508|320511|320512|320524|320525|326459|326466|326473|326483|326487|326491|326492|326493|326495|326496|326500|326501|326502|326504|327488|327489|327492|327506|327507|327508|327525|327527|327529|327531|327544|353189|374068|408349|444802|460433|461215|461611|461620|461621|461927|495713|525675|526206|526210|526215|526390|526396|538422|564095|564626|564631|564633|564633|565025|565765|565770|565774|612092|626205|640051|640052|640053|640054|640055|640056|640057|640058|652126|701764|712825|712826|724437|724438|737972|796573|805692|820367|820368|820369|820370|820371|820372|822306|838422|838423|838424|838425|838426|838427|838428|838429|838430|838431|838432|838433|838434|838435|838436|838437|838438|852350|867933|867934|867935|867936|867937|867938|867939|867940|867941|867942|867943|867944|867945|867946|867947|867948|867949|867950|867951|867952|867953|867954|867955|867956|867957|867958|868648|906203|919362|926239|926240|926241|926242|926243|926244|926245|926246|935533|935534|935535|935536|935537|935538|935539|935540|935541|935542|935543|935544|935545|940213|940997|947454|947455|947456|947457|947458|956494|956495|956496|959988|959989|960751|962988|970935|971619|971620|980556", "text": "Multiple exostoses type 2" }, { - "baseId": "17511|17513|137944|137954|137957|326466|538422|564633|626205|626395|805097", + "upstreamId": "17511|17513|137944|137954|137957|326466|538422|564633|626205|626395|805097", "text": "Seizures, scoliosis, and macrocephaly syndrome" }, { - "baseId": "17517|17518|17519|17520|17521|17521|17522|17524|34540|34541|34542|34543|34544|34545|34546|34547|34548|34549|34550|34551|34552|34553|135743|135744|135745|135746|135747|135748|142804|142805|167394|186051|186052|191093|191094|212505|215727|221606|221607|221610|221611|221612|221613|221615|221616|231639|231643|239776|239779|239780|244156|244464|265353|271543|295973|295974|295976|295977|295978|295979|295985|295991|296005|296006|296012|296013|296018|296019|296022|296023|296024|296029|296034|296035|296041|296042|296056|296061|296071|296072|296078|296079|296082|296083|296084|296088|296094|296099|296100|296102|296106|296107|296109|296110|296115|296116|296120|296125|296130|296132|296135|296138|296139|296161|296162|296166|296167|296169|296170|296172|296176|296177|296181|296183|296184|296185|296190|296191|296196|296197|296198|296199|296204|296207|296216|296219|296227|296232|296233|296237|297777|297778|297783|297784|297789|297791|297795|297801|297816|297821|297822|297825|297826|297828|297830|297831|297833|297835|297843|297845|297846|297847|297878|297879|297881|297897|297900|297906|297907|297910|297915|297918|297926|297928|297933|297934|297935|297936|297938|297940|297943|297949|297957|297958|297959|297960|297963|297965|297974|297977|297978|297981|297983|297984|297995|297996|297997|298003|298006|298014|298015|298019|298027|298029|298053|298054|298069|301674|301677|301682|301686|301690|301697|301703|301704|301706|301707|301709|301718|301727|301728|301729|301735|301736|301745|301761|301766|301769|301770|301788|301795|301803|301804|301805|301829|301830|301831|301837|301841|301842|301843|301849|301852|301854|301855|301856|301857|301861|301863|301864|301865|301868|301870|301873|301876|301877|301879|301880|301881|301893|301894|301895|301896|301899|301902|301904|301905|301906|301909|301918|301929|301930|301931|301937|301938|301939|301941|301942|301946|301948|301949|301953|301954|301955|301957|301958|301964|301966|301969|301974|301975|301976|301981|301982|301983|301985|301987|301988|301999|302000|302002|302007|302008|302010|302012|302017|302018|302019|302020|302031|302033|302036|302040|302044|302049|302050|302052|302053|302054|302055|302059|302061|302063|302065|302066|302072|302074|302077|302080|302081|302091|302109|302113|302114|302115|302120|302121|302126|302127|302137|302145|302153|302159|302170|302174|302175|302185|302186|302199|302200|302211|302213|302219|302220|302221|302230|302232|302233|302237|302238|302243|302252|302253|302254|302258|302274|302279|302287|302288|302289|302308|302315|361545|368281|368451|394833|394899|395428|414993|440868|440870|454724|454798|455285|455299|521155|521380|535735|537474|608950|625125|625777|633609|653867|683722|683724|790522|790523|804739|815980|893295|893296|893297|893298|893299|893300|893301|893302|893303|893304|893305|893306|893307|893308|893309|893310|893311|893312|893313|893314|893315|893316|893317|893318|893319|893320|893321|893322|893323|893324|893325|893326|893327|893328|893329|893330|893331|893332|893333|893334|893335|893336|893337|893338|893339|893340|893341|893342|893343|893344|893345|893346|893347|893348|893349|893350|893351|893352|893353|893354|893355|893356|893357|893358|893359|893360|893361|893362|893363|893364|893365|893366|893367|893368|893369|893370|893371|893372|893373|893374|893375|893376|893377|893378|893379|893380|893381|893382|893383|893384|893385|893386|893387|893388|893389|893390|893391|893392|893393|893394|893395|893396|893397|893398|893399|893400|893401|893402|893403|893404|893405|893406|893407|893408|893409|893410|893411|893412|893413|893414|893415|893416|893417|893418|893419|893420|893421|893422|893423|893424|893425|893426|893427|893428|893429|893430|893431|893432|893433|893434|893435|893436|893437|893438|893439|893440|893441|893442|893443|893444|893445|893446|893447|893448|893449|893450|893451|893452|893453|893454|893455|893456|893457|893458|893459|893460|893461|893462|893463|893464|893465|893466|893467|893468|893469|893470|893471|893472|896060|963396", + "upstreamId": "17517|17518|17519|17520|17521|17521|17522|17524|34540|34541|34542|34543|34544|34545|34546|34547|34548|34549|34550|34551|34552|34553|135743|135744|135745|135746|135747|135748|142804|142805|167394|186051|186052|191093|191094|212505|215727|221606|221607|221610|221611|221612|221613|221615|221616|231639|231643|239776|239779|239780|244156|244464|265353|271543|295973|295974|295976|295977|295978|295979|295985|295991|296005|296006|296012|296013|296018|296019|296022|296023|296024|296029|296034|296035|296041|296042|296056|296061|296071|296072|296078|296079|296082|296083|296084|296088|296094|296099|296100|296102|296106|296107|296109|296110|296115|296116|296120|296125|296130|296132|296135|296138|296139|296161|296162|296166|296167|296169|296170|296172|296176|296177|296181|296183|296184|296185|296190|296191|296196|296197|296198|296199|296204|296207|296216|296219|296227|296232|296233|296237|297777|297778|297783|297784|297789|297791|297795|297801|297816|297821|297822|297825|297826|297828|297830|297831|297833|297835|297843|297845|297846|297847|297878|297879|297881|297897|297900|297906|297907|297910|297915|297918|297926|297928|297933|297934|297935|297936|297938|297940|297943|297949|297957|297958|297959|297960|297963|297965|297974|297977|297978|297981|297983|297984|297995|297996|297997|298003|298006|298014|298015|298019|298027|298029|298053|298054|298069|301674|301677|301682|301686|301690|301697|301703|301704|301706|301707|301709|301718|301727|301728|301729|301735|301736|301745|301761|301766|301769|301770|301788|301795|301803|301804|301805|301829|301830|301831|301837|301841|301842|301843|301849|301852|301854|301855|301856|301857|301861|301863|301864|301865|301868|301870|301873|301876|301877|301879|301880|301881|301893|301894|301895|301896|301899|301902|301904|301905|301906|301909|301918|301929|301930|301931|301937|301938|301939|301941|301942|301946|301948|301949|301953|301954|301955|301957|301958|301964|301966|301969|301974|301975|301976|301981|301982|301983|301985|301987|301988|301999|302000|302002|302007|302008|302010|302012|302017|302018|302019|302020|302031|302033|302036|302040|302044|302049|302050|302052|302053|302054|302055|302059|302061|302063|302065|302066|302072|302074|302077|302080|302081|302091|302109|302113|302114|302115|302120|302121|302126|302127|302137|302145|302153|302159|302170|302174|302175|302185|302186|302199|302200|302211|302213|302219|302220|302221|302230|302232|302233|302237|302238|302243|302252|302253|302254|302258|302274|302279|302287|302288|302289|302308|302315|361545|368281|368451|394833|394899|395428|414993|440868|440870|454724|454798|455285|455299|521155|521380|535735|537474|608950|625125|625777|633609|653867|683722|683724|790522|790523|804739|815980|893295|893296|893297|893298|893299|893300|893301|893302|893303|893304|893305|893306|893307|893308|893309|893310|893311|893312|893313|893314|893315|893316|893317|893318|893319|893320|893321|893322|893323|893324|893325|893326|893327|893328|893329|893330|893331|893332|893333|893334|893335|893336|893337|893338|893339|893340|893341|893342|893343|893344|893345|893346|893347|893348|893349|893350|893351|893352|893353|893354|893355|893356|893357|893358|893359|893360|893361|893362|893363|893364|893365|893366|893367|893368|893369|893370|893371|893372|893373|893374|893375|893376|893377|893378|893379|893380|893381|893382|893383|893384|893385|893386|893387|893388|893389|893390|893391|893392|893393|893394|893395|893396|893397|893398|893399|893400|893401|893402|893403|893404|893405|893406|893407|893408|893409|893410|893411|893412|893413|893414|893415|893416|893417|893418|893419|893420|893421|893422|893423|893424|893425|893426|893427|893428|893429|893430|893431|893432|893433|893434|893435|893436|893437|893438|893439|893440|893441|893442|893443|893444|893445|893446|893447|893448|893449|893450|893451|893452|893453|893454|893455|893456|893457|893458|893459|893460|893461|893462|893463|893464|893465|893466|893467|893468|893469|893470|893471|893472|896060|963396", "text": "Charcot-Marie-Tooth disease, type 4C" }, { - "baseId": "17521|17521|17524|34542|135743|135744|135745|135746|135747|135748|142804|142805|167394|186051|186052|191093|191094|212505|221606|221607|221610|221611|221612|221613|221615|221616|231639|231643|239776|239779|239780|244464|265353|271543|295973|295974|295976|295977|295978|295979|295985|295991|296005|296006|296012|296013|296018|296019|296022|296023|296024|296029|296034|296035|296041|296042|296056|296061|296071|296072|296078|296079|296082|296083|296084|296088|296094|296099|296100|296102|296106|296107|296109|296110|296115|296116|296120|296125|296130|296132|296135|296138|296139|296161|296162|296166|296167|296169|296170|296172|296176|296177|296181|296183|296184|296185|296190|296191|296196|296197|296198|296199|296204|296207|296216|296219|296227|296232|296233|296237|297777|297778|297783|297784|297789|297791|297795|297801|297816|297821|297822|297825|297826|297828|297830|297831|297833|297835|297843|297845|297846|297847|297878|297879|297881|297897|297900|297906|297907|297910|297915|297918|297926|297928|297933|297934|297935|297936|297938|297940|297943|297949|297957|297958|297959|297960|297963|297965|297974|297977|297978|297981|297983|297984|297995|297996|297997|298003|298006|298014|298015|298019|298027|298029|298053|298054|298069|301674|301677|301682|301686|301690|301697|301703|301704|301706|301707|301709|301718|301727|301728|301729|301735|301736|301745|301761|301766|301769|301770|301788|301795|301803|301804|301805|301829|301830|301831|301837|301841|301842|301843|301849|301852|301854|301855|301856|301857|301861|301863|301864|301865|301868|301870|301873|301876|301877|301879|301880|301881|301893|301894|301895|301896|301899|301902|301904|301905|301906|301909|301918|301929|301930|301931|301937|301938|301939|301941|301942|301946|301948|301949|301953|301954|301955|301957|301958|301964|301966|301969|301974|301975|301976|301981|301982|301983|301985|301987|301988|301999|302000|302002|302007|302008|302010|302012|302017|302018|302019|302020|302031|302033|302036|302040|302044|302049|302050|302052|302053|302054|302055|302059|302061|302063|302065|302066|302072|302074|302077|302080|302081|302091|302109|302113|302114|302115|302120|302121|302126|302127|302137|302145|302153|302159|302170|302174|302175|302185|302186|302199|302200|302211|302213|302219|302220|302221|302230|302232|302233|302237|302238|302243|302252|302253|302254|302258|302274|302279|302287|302288|302289|302308|302315|361545|368281|368451|394833|394899|395428|440870|454724|454798|455285|455299|521155|521380|537474|633609|683722|683724|893295|893296|893297|893298|893299|893300|893301|893302|893303|893304|893305|893306|893307|893308|893309|893310|893311|893312|893313|893314|893315|893316|893317|893318|893319|893320|893321|893322|893323|893324|893325|893326|893327|893328|893329|893330|893331|893332|893333|893334|893335|893336|893337|893338|893339|893340|893341|893342|893343|893344|893345|893346|893347|893348|893349|893350|893351|893352|893353|893354|893355|893356|893357|893358|893359|893360|893361|893362|893363|893364|893365|893366|893367|893368|893369|893370|893371|893372|893373|893374|893375|893376|893377|893378|893379|893380|893381|893382|893383|893384|893385|893386|893387|893388|893389|893390|893391|893392|893393|893394|893395|893396|893397|893398|893399|893400|893401|893402|893403|893404|893405|893406|893407|893408|893409|893410|893411|893412|893413|893414|893415|893416|893417|893418|893419|893420|893421|893422|893423|893424|893425|893426|893427|893428|893429|893430|893431|893432|893433|893434|893435|893436|893437|893438|893439|893440|893441|893442|893443|893444|893445|893446|893447|893448|893449|893450|893451|893452|893453|893454|893455|893456|893457|893458|893459|893460|893461|893462|893463|893464|893465|893466|893467|893468|893469|893470|893471|893472|896060", + "upstreamId": "17521|17521|17524|34542|135743|135744|135745|135746|135747|135748|142804|142805|167394|186051|186052|191093|191094|212505|221606|221607|221610|221611|221612|221613|221615|221616|231639|231643|239776|239779|239780|244464|265353|271543|295973|295974|295976|295977|295978|295979|295985|295991|296005|296006|296012|296013|296018|296019|296022|296023|296024|296029|296034|296035|296041|296042|296056|296061|296071|296072|296078|296079|296082|296083|296084|296088|296094|296099|296100|296102|296106|296107|296109|296110|296115|296116|296120|296125|296130|296132|296135|296138|296139|296161|296162|296166|296167|296169|296170|296172|296176|296177|296181|296183|296184|296185|296190|296191|296196|296197|296198|296199|296204|296207|296216|296219|296227|296232|296233|296237|297777|297778|297783|297784|297789|297791|297795|297801|297816|297821|297822|297825|297826|297828|297830|297831|297833|297835|297843|297845|297846|297847|297878|297879|297881|297897|297900|297906|297907|297910|297915|297918|297926|297928|297933|297934|297935|297936|297938|297940|297943|297949|297957|297958|297959|297960|297963|297965|297974|297977|297978|297981|297983|297984|297995|297996|297997|298003|298006|298014|298015|298019|298027|298029|298053|298054|298069|301674|301677|301682|301686|301690|301697|301703|301704|301706|301707|301709|301718|301727|301728|301729|301735|301736|301745|301761|301766|301769|301770|301788|301795|301803|301804|301805|301829|301830|301831|301837|301841|301842|301843|301849|301852|301854|301855|301856|301857|301861|301863|301864|301865|301868|301870|301873|301876|301877|301879|301880|301881|301893|301894|301895|301896|301899|301902|301904|301905|301906|301909|301918|301929|301930|301931|301937|301938|301939|301941|301942|301946|301948|301949|301953|301954|301955|301957|301958|301964|301966|301969|301974|301975|301976|301981|301982|301983|301985|301987|301988|301999|302000|302002|302007|302008|302010|302012|302017|302018|302019|302020|302031|302033|302036|302040|302044|302049|302050|302052|302053|302054|302055|302059|302061|302063|302065|302066|302072|302074|302077|302080|302081|302091|302109|302113|302114|302115|302120|302121|302126|302127|302137|302145|302153|302159|302170|302174|302175|302185|302186|302199|302200|302211|302213|302219|302220|302221|302230|302232|302233|302237|302238|302243|302252|302253|302254|302258|302274|302279|302287|302288|302289|302308|302315|361545|368281|368451|394833|394899|395428|440870|454724|454798|455285|455299|521155|521380|537474|633609|683722|683724|893295|893296|893297|893298|893299|893300|893301|893302|893303|893304|893305|893306|893307|893308|893309|893310|893311|893312|893313|893314|893315|893316|893317|893318|893319|893320|893321|893322|893323|893324|893325|893326|893327|893328|893329|893330|893331|893332|893333|893334|893335|893336|893337|893338|893339|893340|893341|893342|893343|893344|893345|893346|893347|893348|893349|893350|893351|893352|893353|893354|893355|893356|893357|893358|893359|893360|893361|893362|893363|893364|893365|893366|893367|893368|893369|893370|893371|893372|893373|893374|893375|893376|893377|893378|893379|893380|893381|893382|893383|893384|893385|893386|893387|893388|893389|893390|893391|893392|893393|893394|893395|893396|893397|893398|893399|893400|893401|893402|893403|893404|893405|893406|893407|893408|893409|893410|893411|893412|893413|893414|893415|893416|893417|893418|893419|893420|893421|893422|893423|893424|893425|893426|893427|893428|893429|893430|893431|893432|893433|893434|893435|893436|893437|893438|893439|893440|893441|893442|893443|893444|893445|893446|893447|893448|893449|893450|893451|893452|893453|893454|893455|893456|893457|893458|893459|893460|893461|893462|893463|893464|893465|893466|893467|893468|893469|893470|893471|893472|896060", "text": "Mononeuropathy of the median nerve, mild" }, { - "baseId": "17521|231645|620191|620192", + "upstreamId": "17521|231645|620191|620192", "text": "SH3TC2-Related Disorders" }, { - "baseId": "17525|17526|21701|390020|453117|453122|453375|453378|453487|453492|453497|453867|453869|461407|461409|461410|461412|461577|461585|461586|461914|461917|461920|461921|461924|462247|486807|486809|519864|519865|519866|519867|519877|520103|520113|520155|520156|520157|526424|526426|526454|526733|526735|526972|526975|526978|526980|526984|526986|559649|559651|559810|559812|559814|561984|563342|564866|566727|567479|570909|570910|570911|614366|632125|632126|632127|632128|632129|632130|632131|632132|632133|632134|632135|632136|632137|632138|640373|640374|640375|640376|640377|640378|640379|640380|640381|640382|640383|640384|640385|640386|640387|640388|640389|651184|652131|652386|709271|709272|713100|713101|713102|713103|713104|720876|720877|720879|724670|724672|730796|748849|748851|748852|752887|764409|768678|779465|779580|781919|784136|787372|829000|829001|829002|829003|829004|829005|829006|829007|829008|829009|829010|829011|829012|829013|829014|829015|838854|838855|838856|838857|838858|838859|838860|838861|838862|838863|838864|838865|838866|838867|838868|838869|851455|923480|923481|923482|926362|926363|926364|932262|932263|932264|932265|935729|935730|935731|935732|940232|941011|943919|943920|943921|943922|943923|943924|943925|943926|947609|947610|947611|947612|947613|953737|956619|956620|956621", + "upstreamId": "17525|17526|21701|390020|453117|453122|453375|453378|453487|453492|453497|453867|453869|461407|461409|461410|461412|461577|461585|461586|461914|461917|461920|461921|461924|462247|486807|486809|519864|519865|519866|519867|519877|520103|520113|520155|520156|520157|526424|526426|526454|526733|526735|526972|526975|526978|526980|526984|526986|559649|559651|559810|559812|559814|561984|563342|564866|566727|567479|570909|570910|570911|614366|632125|632126|632127|632128|632129|632130|632131|632132|632133|632134|632135|632136|632137|632138|640373|640374|640375|640376|640377|640378|640379|640380|640381|640382|640383|640384|640385|640386|640387|640388|640389|651184|652131|652386|709271|709272|713100|713101|713102|713103|713104|720876|720877|720879|724670|724672|730796|748849|748851|748852|752887|764409|768678|779465|779580|781919|784136|787372|829000|829001|829002|829003|829004|829005|829006|829007|829008|829009|829010|829011|829012|829013|829014|829015|838854|838855|838856|838857|838858|838859|838860|838861|838862|838863|838864|838865|838866|838867|838868|838869|851455|923480|923481|923482|926362|926363|926364|932262|932263|932264|932265|935729|935730|935731|935732|940232|941011|943919|943920|943921|943922|943923|943924|943925|943926|947609|947610|947611|947612|947613|953737|956619|956620|956621", "text": "Herpes simplex encephalitis 1" }, { - "baseId": "17527|17528|34494|34496|34497|34498|34499|34500|34501|34502|34503|34504|34505|34506|34507|34508|34509|34510|96882|96883|96884|101791|101792|132680|140408|167979|168711|168713|168714|168715|168716|168717|168719|168720|168721|168722|168723|168724|168725|168726|168727|168728|168729|168730|168731|168733|168735|168736|168739|168741|168742|168745|168746|168747|168750|206557|206558|207602|207605|207608|237196|272767|306596|306607|306620|306622|306624|306625|306627|306629|306632|306641|306642|310800|310802|310810|310816|310818|310819|310822|310826|316199|316208|316209|316213|316215|316216|316218|316219|316222|316239|316241|316247|316250|316260|316263|316526|316540|316541|316542|316556|316557|316558|316561|316563|316568|316573|361515|369685|370187|372098|423859|428896|428897|428903|439881|576128|681826|681827|711733|799562|861595|900943|900944|900945|900946|900947|900948|900949|900950|900951|900952|900953|900954|900955|900956|900957|900958|900959|900960|900961|900962|900963|900964|900965|900966|900967|900968|900969|900970|903303|903304|903305|903306|919182|920260|965976|966037", + "upstreamId": "17527|17528|34494|34496|34497|34498|34499|34500|34501|34502|34503|34504|34505|34506|34507|34508|34509|34510|96882|96883|96884|101791|101792|132680|140408|167979|168711|168713|168714|168715|168716|168717|168719|168720|168721|168722|168723|168724|168725|168726|168727|168728|168729|168730|168731|168733|168735|168736|168739|168741|168742|168745|168746|168747|168750|206557|206558|207602|207605|207608|237196|272767|306596|306607|306620|306622|306624|306625|306627|306629|306632|306641|306642|310800|310802|310810|310816|310818|310819|310822|310826|316199|316208|316209|316213|316215|316216|316218|316219|316222|316239|316241|316247|316250|316260|316263|316526|316540|316541|316542|316556|316557|316558|316561|316563|316568|316573|361515|369685|370187|372098|423859|428896|428897|428903|439881|576128|681826|681827|711733|799562|861595|900943|900944|900945|900946|900947|900948|900949|900950|900951|900952|900953|900954|900955|900956|900957|900958|900959|900960|900961|900962|900963|900964|900965|900966|900967|900968|900969|900970|903303|903304|903305|903306|919182|920260|965976|966037", "text": "Primary autosomal recessive microcephaly 3" }, { - "baseId": "17529|132593|186205|213137|222431|242092|323041|323046|323047|323048|332653|339619|339635|339640|339641|339645|339646|339651|339659|339666|341010|341018|341019|341025|341026|400788|401074|567216|569033|643456|643457|643458|653063|684550|688463|851629|852065|852602|873955|873956|873957|873958|873959|873960|873961|873962|873963|873964|920347|948958", + "upstreamId": "17529|132593|186205|213137|222431|242092|323041|323046|323047|323048|332653|339619|339635|339640|339641|339645|339646|339651|339659|339666|341010|341018|341019|341025|341026|400788|401074|567216|569033|643456|643457|643458|653063|684550|688463|851629|852065|852602|873955|873956|873957|873958|873959|873960|873961|873962|873963|873964|920347|948958", "text": "Mast syndrome" }, { - "baseId": "17530|333464|333466|333480|333487|333488|333492|333494|333497|333498|333501|333504|333507|333508|333513|343497|343499|343521|343524|343525|343528|343529|343536|343537|343540|343541|343542|343550|343551|343552|343553|343561|343562|343567|343568|343574|343575|343579|343581|343583|343585|343589|343590|343595|348830|348831|348841|348842|348847|348849|348850|348852|348855|348859|348860|348867|348869|348870|348871|349813|349816|349817|349820|349821|349824|349825|349828|349829|349832|349833|349836|349837|508925|716422|716423|728162|731277|731279|756994|779999|880459|880460|880461|880752|881961|881962|881963|881964|881965|881966|881967|881968|881969|881970|881971|881972|881973|881974|881975|881976|881977|881978|881979|881980|881981|881982|881983|881984|881985|881986|881987|881988|881989|881990|881991|881992|881993|881994|881995|881996|881997|881998|881999|882000|882001|882002|882003|882004|882005|882006|882007|882008|882009|882010|882011|882882|882883|882884|882885", + "upstreamId": "17530|333464|333466|333480|333487|333488|333492|333494|333497|333498|333501|333504|333507|333508|333513|343497|343499|343521|343524|343525|343528|343529|343536|343537|343540|343541|343542|343550|343551|343552|343553|343561|343562|343567|343568|343574|343575|343579|343581|343583|343585|343589|343590|343595|348830|348831|348841|348842|348847|348849|348850|348852|348855|348859|348860|348867|348869|348870|348871|349813|349816|349817|349820|349821|349824|349825|349828|349829|349832|349833|349836|349837|508925|716422|716423|728162|731277|731279|756994|779999|880459|880460|880461|880752|881961|881962|881963|881964|881965|881966|881967|881968|881969|881970|881971|881972|881973|881974|881975|881976|881977|881978|881979|881980|881981|881982|881983|881984|881985|881986|881987|881988|881989|881990|881991|881992|881993|881994|881995|881996|881997|881998|881999|882000|882001|882002|882003|882004|882005|882006|882007|882008|882009|882010|882011|882882|882883|882884|882885", "text": "Cerebellar ataxia, Cayman type" }, { - "baseId": "17531|17532|17533|17534|17537|17538|17539|17540|17541|17542|193376|227031|259889|259892|442479|486610|626349|790775|790776", + "upstreamId": "17531|17532|17533|17534|17537|17538|17539|17540|17541|17542|193376|227031|259889|259892|442479|486610|626349|790775|790776", "text": "Multiple exostoses type 1" }, { - "baseId": "17534|17537|17539|17540|137936|137939|189033|193376|253019|253021|253022|253025|253026|259888|259889|259890|259892|259893|259895|264357|267038|304056|304061|304074|304076|304082|304083|304087|307646|307648|307650|307652|307655|312690|312691|312694|312700|312702|312704|312706|312708|312718|312800|312813|312814|312815|312822|312823|312834|312836|312845|369682|371474|407298|442479|444204|444205|457175|457181|457792|457804|458170|458176|458178|481799|481801|481803|495227|495365|522969|522976|523252|523255|523454|523456|523468|523472|523515|523597|523599|523605|523611|523612|561912|561914|561920|561922|561927|561934|561939|562339|562347|564592|564596|564600|564605|567304|567333|567348|621280|636560|636561|636562|636563|636564|636565|636566|636567|636568|636569|636570|636571|636572|636573|636574|636575|636576|651736|651738|651739|651749|651757|651769|651841|651844|692342|692343|692344|711249|722811|736408|736409|750888|792536|805558|805562|818382|819939|819940|819941|819942|819943|834067|834068|834069|834070|834071|834072|834073|834074|834075|834076|834077|834078|834079|834080|834081|834082|834083|834084|834085|834086|834087|834088|834089|834090|834091|834092|834093|834094|834095|834096|834097|834098|834099|834100|834101|834102|834103|834104|834105|834106|834107|851171|851173|851175|851177|851668|851670|852412|858616|859645|859647|898774|898775|898776|898777|898778|898779|898780|898781|898782|898783|898784|898785|898786|900435|924988|924989|924990|924991|924992|924993|924994|924995|924996|924997|924998|924999|925000|925001|925002|925003|925004|925005|925006|925007|934071|934072|934073|934074|934075|934076|934077|934078|934079|934080|934081|934082|934083|934084|934085|934086|940091|945827|945828|945829|945830|945831|945832|945833|945834|945835|945836|945837|945838|945839|945840|945841|945842|945843|945844|945845|945846|945847|945848|955281|955282|955283|955284|955285|955286|959874|959875|959876|959877|960641|961025|970129|970872", + "upstreamId": "17534|17537|17539|17540|137936|137939|189033|193376|253019|253021|253022|253025|253026|259888|259889|259890|259892|259893|259895|264357|267038|304056|304061|304074|304076|304082|304083|304087|307646|307648|307650|307652|307655|312690|312691|312694|312700|312702|312704|312706|312708|312718|312800|312813|312814|312815|312822|312823|312834|312836|312845|369682|371474|407298|442479|444204|444205|457175|457181|457792|457804|458170|458176|458178|481799|481801|481803|495227|495365|522969|522976|523252|523255|523454|523456|523468|523472|523515|523597|523599|523605|523611|523612|561912|561914|561920|561922|561927|561934|561939|562339|562347|564592|564596|564600|564605|567304|567333|567348|621280|636560|636561|636562|636563|636564|636565|636566|636567|636568|636569|636570|636571|636572|636573|636574|636575|636576|651736|651738|651739|651749|651757|651769|651841|651844|692342|692343|692344|711249|722811|736408|736409|750888|792536|805558|805562|818382|819939|819940|819941|819942|819943|834067|834068|834069|834070|834071|834072|834073|834074|834075|834076|834077|834078|834079|834080|834081|834082|834083|834084|834085|834086|834087|834088|834089|834090|834091|834092|834093|834094|834095|834096|834097|834098|834099|834100|834101|834102|834103|834104|834105|834106|834107|851171|851173|851175|851177|851668|851670|852412|858616|859645|859647|898774|898775|898776|898777|898778|898779|898780|898781|898782|898783|898784|898785|898786|900435|924988|924989|924990|924991|924992|924993|924994|924995|924996|924997|924998|924999|925000|925001|925002|925003|925004|925005|925006|925007|934071|934072|934073|934074|934075|934076|934077|934078|934079|934080|934081|934082|934083|934084|934085|934086|940091|945827|945828|945829|945830|945831|945832|945833|945834|945835|945836|945837|945838|945839|945840|945841|945842|945843|945844|945845|945846|945847|945848|955281|955282|955283|955284|955285|955286|959874|959875|959876|959877|960641|961025|970129|970872", "text": "Multiple congenital exostosis" }, { - "baseId": "17535|17536|919136|919137|919138", + "upstreamId": "17535|17536|919136|919137|919138", "text": "Chondrosarcoma" }, { - "baseId": "17543|102428|102429|102430|106483|106484|177542|177543|191448|192946|192947|193307|194123|194212|205170|254454|254455|254456|254457|254458|254459|254460|254461|254462|254463|254464|254465|254466|273136|274974|274977|316440|316441|316446|316448|316449|316452|316454|316456|316460|316471|316472|316476|316479|316480|316490|316492|316500|316501|316507|316512|316513|316515|323943|323945|323953|323954|323957|323959|323961|323969|323970|323971|323974|323989|323990|324001|324008|324010|324012|324013|324014|324031|324032|329962|329965|329967|329969|329971|329973|329974|329976|329980|329983|329984|329985|329986|329988|329993|329995|329996|329998|329999|330001|330004|331328|331329|331330|331331|331336|331342|331350|331357|331360|331362|331363|331364|331366|331368|331375|331376|362084|408608|512929|512930|620429|620430|620431|620841|713468|730857|738579|738580|753286|753289|839742|839743|869562|869563|869564|869565|869566|869567|869568|869569|869570|869571|869572|869573|869574|869575|869576|869577|869578|869579|869580|869581|869582|869583|869584|869585|869586|869587|869588|869589|869590|869591|869592|872209|872210|872211|872212|872213|872214|872215|872216|872217|919423", + "upstreamId": "17543|102428|102429|102430|106483|106484|177542|177543|191448|192946|192947|193307|194123|194212|205170|254454|254455|254456|254457|254458|254459|254460|254461|254462|254463|254464|254465|254466|273136|274974|274977|316440|316441|316446|316448|316449|316452|316454|316456|316460|316471|316472|316476|316479|316480|316490|316492|316500|316501|316507|316512|316513|316515|323943|323945|323953|323954|323957|323959|323961|323969|323970|323971|323974|323989|323990|324001|324008|324010|324012|324013|324014|324031|324032|329962|329965|329967|329969|329971|329973|329974|329976|329980|329983|329984|329985|329986|329988|329993|329995|329996|329998|329999|330001|330004|331328|331329|331330|331331|331336|331342|331350|331357|331360|331362|331363|331364|331366|331368|331375|331376|362084|408608|512929|512930|620429|620430|620431|620841|713468|730857|738579|738580|753286|753289|839742|839743|869562|869563|869564|869565|869566|869567|869568|869569|869570|869571|869572|869573|869574|869575|869576|869577|869578|869579|869580|869581|869582|869583|869584|869585|869586|869587|869588|869589|869590|869591|869592|872209|872210|872211|872212|872213|872214|872215|872216|872217|919423", "text": "Retinal cone dystrophy 4" }, { - "baseId": "17545|17548|17549|17554|17555|17557|34015|34016|192231|193418|237540|271211|329700|329713|329720|329727|339968|339992|345697|345701|345702|347053|347078|347087|347103|360346|361229|378744|445882|467419|467433|481471|481472|509041|531737|531801|550632|609024|656468|679837|679838|679839|684705|684706|688825|791822|919767|941195|950261|961541|974499", + "upstreamId": "17545|17548|17549|17554|17555|17557|34015|34016|192231|193418|237540|271211|329700|329713|329720|329727|339968|339992|345697|345701|345702|347053|347078|347087|347103|360346|361229|378744|445882|467419|467433|481471|481472|509041|531737|531801|550632|609024|656468|679837|679838|679839|684705|684706|688825|791822|919767|941195|950261|961541|974499", "text": "Camptomelic dysplasia" }, { - "baseId": "17546|17547|17548|17549|17551|17556|17557|550632|679800", + "upstreamId": "17546|17547|17548|17549|17551|17556|17557|550632|679800", "text": "Campomelic dysplasia with autosomal sex reversal" }, { - "baseId": "17550|17552|17553", + "upstreamId": "17550|17552|17553", "text": "Acampomelic campomelic dysplasia" }, { - "baseId": "17558|205228|213534|213969|214752|225861|237528|264070|264091|359408|366251|405534|424642|427982|431458|448529|450177|450179|450180|450185|450188|450196|450199|450203|450206|450220|450227|450237|450358|450384|450386|450396|450399|450401|450402|450407|450470|450473|450479|450480|450484|450487|512805|517486|517500|517507|517573|517574|517581|517604|517607|517617|517767|517770|517773|536032|557808|557853|557855|557859|558074|559025|559027|559031|559518|559520|575476|575477|575478|575479|575480|575481|575482|575483|578963|578998|611461|614079|629258|629259|629260|629261|629262|629263|629264|629265|629266|629267|629269|629270|629271|629272|629273|650908|653808|654117|678936|691005|697231|719509|733065|747146|747147|747149|747154|759104|762766|762770|762772|762774|790147|790148|798492|798493|798494|816443|818181|819095|821872|821873|821874|821875|821876|825541|825543|825544|825546|825547|825549|825550|825551|825552|918725|918726|918727|920170|922504|922505|922507|931067|931068|931070|942539|942540|942541|942542|942543|942544|942545|952875|961505|961594|961595|964189|965919|971378", + "upstreamId": "17558|205228|213534|213969|214752|225861|237528|264070|264091|359408|366251|405534|424642|427982|431458|448529|450177|450179|450180|450185|450188|450196|450199|450203|450206|450220|450227|450237|450358|450384|450386|450396|450399|450401|450402|450407|450470|450473|450479|450480|450484|450487|512805|517486|517500|517507|517573|517574|517581|517604|517607|517617|517767|517770|517773|536032|557808|557853|557855|557859|558074|559025|559027|559031|559518|559520|575476|575477|575478|575479|575480|575481|575482|575483|578963|578998|611461|614079|629258|629259|629260|629261|629262|629263|629264|629265|629266|629267|629269|629270|629271|629272|629273|650908|653808|654117|678936|691005|697231|719509|733065|747146|747147|747149|747154|759104|762766|762770|762772|762774|790147|790148|798492|798493|798494|816443|818181|819095|821872|821873|821874|821875|821876|825541|825543|825544|825546|825547|825549|825550|825551|825552|918725|918726|918727|920170|922504|922505|922507|931067|931068|931070|942539|942540|942541|942542|942543|942544|942545|952875|961505|961594|961595|964189|965919|971378", "text": "Chromosome 2q32-q33 deletion syndrome" }, { - "baseId": "17558|18456|26794|208522|287840|361119|364179|513958|514147|536136|610529|610563|610564|610565|682749|969772", + "upstreamId": "17558|18456|26794|208522|287840|361119|364179|513958|514147|536136|610529|610563|610564|610565|682749|969772", "text": "Cleft palate" }, { - "baseId": "17559|17560|17562|135250|190659|190660|242026|242027|273695|322019|322021|322022|322029|322031|322035|322040|322042|322046|322056|322057|322058|322060|322065|322069|322070|322074|322077|322078|322092|331296|331297|331299|331305|331314|331317|331318|331319|331323|331325|331337|331338|331339|331344|331352|331359|331367|331369|331370|331373|338137|338152|338156|338158|338159|338164|338174|338175|338176|338180|338181|338187|338191|338192|338209|338212|338223|338224|338226|338231|338234|338251|338254|338255|338263|340041|340045|340047|340048|340051|340064|340065|340076|340077|340080|340081|340084|340087|340088|340093|340096|374432|376300|400223|400522|400535|464795|528585|528610|528613|529025|529027|529030|566862|566884|573112|573131|642988|642989|642990|642991|642992|652370|652376|652635|684530|688385|688386|688387|784850|842078|842079|873073|873074|873075|873076|873077|873078|873079|873080|873081|873082|873083|873084|873085|873086|873087|873088|873089|873090|873091|873092|873093|873094|873095|873096|873097|873098|873099|873100|873101|873102|873103|873104|873105|873106|873107|873108|873109|873110|873111|873112|873113|873114|873115|873116|873117|873118|873119|873120|873121|920340|927255|927256|927257|971007", + "upstreamId": "17559|17560|17562|135250|190659|190660|242026|242027|273695|322019|322021|322022|322029|322031|322035|322040|322042|322046|322056|322057|322058|322060|322065|322069|322070|322074|322077|322078|322092|331296|331297|331299|331305|331314|331317|331318|331319|331323|331325|331337|331338|331339|331344|331352|331359|331367|331369|331370|331373|338137|338152|338156|338158|338159|338164|338174|338175|338176|338180|338181|338187|338191|338192|338209|338212|338223|338224|338226|338231|338234|338251|338254|338255|338263|340041|340045|340047|340048|340051|340064|340065|340076|340077|340080|340081|340084|340087|340088|340093|340096|374432|376300|400223|400522|400535|464795|528585|528610|528613|529025|529027|529030|566862|566884|573112|573131|642988|642989|642990|642991|642992|652370|652376|652635|684530|688385|688386|688387|784850|842078|842079|873073|873074|873075|873076|873077|873078|873079|873080|873081|873082|873083|873084|873085|873086|873087|873088|873089|873090|873091|873092|873093|873094|873095|873096|873097|873098|873099|873100|873101|873102|873103|873104|873105|873106|873107|873108|873109|873110|873111|873112|873113|873114|873115|873116|873117|873118|873119|873120|873121|920340|927255|927256|927257|971007", "text": "Hereditary spastic paraplegia 6" }, { - "baseId": "17563|17564|626009|919214|964324", + "upstreamId": "17563|17564|626009|919214|964324", "text": "Hypogonadotropic hypogonadism 9 with or without anosmia" }, { - "baseId": "17565|361190|433365|433367|446856|508828|508829|508830|508831|508832|512831|512832|512833|581867|609686|609687|622388|711437|736565|779296|799527|799528|800400|919144|919145|981617", + "upstreamId": "17565|361190|433365|433367|446856|508828|508829|508830|508831|508832|512831|512832|512833|581867|609686|609687|622388|711437|736565|779296|799527|799528|800400|919144|919145|981617", "text": "Slowed nerve conduction velocity, autosomal dominant" }, { - "baseId": "17566", + "upstreamId": "17566", "text": "Osteoarthritis susceptibility 3" }, { - "baseId": "17566", + "upstreamId": "17566", "text": "Lumbar disc degeneration, susceptibility to" }, { - "baseId": "17567|17568|17569|17570|106485|193760|193761|213126|213127|255107|255108|255110|255111|255112|321695|321697|321698|321699|330950|330955|337690|337695|337703|337704|337713|337714|337715|339735|339744|409164|429604|528800|528800|792793|872866|872867|872868|872869|872870|872871|872872|872873|872874|872875|872876|872877|872878|872879|906262|962738|962854", + "upstreamId": "17567|17568|17569|17570|106485|193760|193761|213126|213127|255107|255108|255110|255111|255112|321695|321697|321698|321699|330950|330955|337690|337695|337703|337704|337713|337714|337715|339735|339744|409164|429604|528800|528800|792793|872866|872867|872868|872869|872870|872871|872872|872873|872874|872875|872876|872877|872878|872879|906262|962738|962854", "text": "Bardet-Biedl syndrome 8" }, { - "baseId": "17569", + "upstreamId": "17569", "text": "Postaxial foot polydactyly" }, { - "baseId": "17569|203766|225810|225811|225812|264781|404617|418811|418812|495314|514021|514169|514201|581713|678050|801160|858423|858424|921259|921448", + "upstreamId": "17569|203766|225810|225811|225812|264781|404617|418811|418812|495314|514021|514169|514201|581713|678050|801160|858423|858424|921259|921448", "text": "Intellectual disability, moderate" }, { - "baseId": "17569|181431", + "upstreamId": "17569|181431", "text": "Truncal obesity" }, { - "baseId": "17569|17571|236865|409164|528800|792793|919549", + "upstreamId": "17569|17571|236865|409164|528800|792793|919549", "text": "Retinitis pigmentosa 51" }, { - "baseId": "17572|17573", + "upstreamId": "17572|17573", "text": "Pseudoxanthoma elasticum, modifier of severity of" }, { - "baseId": "17572|204220|204221|538930|792806|963075", + "upstreamId": "17572|204220|204221|538930|792806|963075", "text": "Spondyloocular syndrome, autosomal recessive" }, { - "baseId": "17574|39658|39659|205671|205672|207011|221315|221316|221319|238964|238966|238969|250750|250752|250753|286877|286883|287620|287621|287622|287624|287626|290403|290416|393035|393060|393070|393231|393432|451729|518635|614248|614249|799093|799094|826856|885234|885235|885236|885237|885238|885239|885240|885241|885242|885243|885244|885245|885246|885247|885248|885249|885250|885251|918140|918141", + "upstreamId": "17574|39658|39659|205671|205672|207011|221315|221316|221319|238964|238966|238969|250750|250752|250753|286877|286883|287620|287621|287622|287624|287626|290403|290416|393035|393060|393070|393231|393432|451729|518635|614248|614249|799093|799094|826856|885234|885235|885236|885237|885238|885239|885240|885241|885242|885243|885244|885245|885246|885247|885248|885249|885250|885251|918140|918141", "text": "Fanconi anemia, complementation group L" }, { - "baseId": "17575|17576|142555|142556|142557|142560|142561|142562|209411|211583|211585|211588|211592|211593|211595|211596|223670|316359|316361|316368|316369|316377|323782|323783|323785|323787|323788|329881|329891|329892|329899|331160|331182|331184|331188|331191|331192|372891|374660|389202|503924|578498|609823|679710|713438|738546|753202|768943|768946|768947|768948|768949|768950|768951|784306|869538|869539|869540|869541|869542|869543|869544|869545|869546|869547|869548|869549|869550|869551|869552|872208", + "upstreamId": "17575|17576|142555|142556|142557|142560|142561|142562|209411|211583|211585|211588|211592|211593|211595|211596|223670|316359|316361|316368|316369|316377|323782|323783|323785|323787|323788|329881|329891|329892|329899|331160|331182|331184|331188|331191|331192|372891|374660|389202|503924|578498|609823|679710|713438|738546|753202|768943|768946|768947|768948|768949|768950|768951|784306|869538|869539|869540|869541|869542|869543|869544|869545|869546|869547|869548|869549|869550|869551|869552|872208", "text": "Myopathy, lactic acidosis, and sideroblastic anemia 1" }, { - "baseId": "17577|17577|17578|17578|17579|17579|17581|17581|17582|17583|17584|17586|17586|17587|17587|17588|17588|17589|17589|17590|17591|17592|17593|17595|17596|45159|45160|45160|45161|45161|45162|45163|45164|45165|45166|45167|45168|45169|45169|45170|45171|45172|45173|45174|45175|45176|45177|45178|45178|70784|70785|70786|70787|70788|70789|70790|70791|70792|102885|103317|103318|103319|103320|103321|103322|103323|103324|103325|103326|103327|103328|103329|103330|103331|103332|103333|103333|103334|103335|103336|103337|103338|103339|103340|103341|103342|103343|103344|103345|103346|103347|103348|103349|103350|103351|103352|103353|103354|103355|103356|103357|103358|103359|103359|103360|103361|103362|103363|103364|103365|103366|103367|103368|103369|103370|103370|103371|103372|103373|103374|103375|103376|103377|103378|103379|103381|103382|103383|103384|103385|103386|103387|103388|103389|103390|103391|103392|103393|103394|103395|103396|103397|103398|103399|103400|103401|103402|103403|103404|103405|103406|103407|103407|103408|103409|103410|103411|103412|103413|103414|103415|103416|103417|103418|103419|103420|103421|103422|103423|103424|103425|103426|103427|103428|103429|103429|103430|103431|103432|103433|103434|103435|103436|103437|103438|103439|103440|103440|103441|103442|103443|103444|103445|103446|103447|103448|103449|103449|103784|136621|136622|136623|141909|141910|141911|170203|170212|170936|190090|192212|225792|225793|225794|231932|231934|231937|231938|231944|231947|231950|231951|231955|231956|247431|255706|264707|264709|267205|274103|325214|325218|325222|325223|325229|325234|325237|325247|325253|334864|334876|334878|334885|334887|334896|334898|334902|334908|341340|341344|341346|341347|341348|341349|341352|341356|341358|342837|342840|342842|342854|342855|342857|342859|342860|342863|354189|377549|377552|433685|438802|439142|445574|465658|465666|466376|466378|466403|466405|466408|466414|466416|466641|487783|487887|487909|487914|505624|505624|529935|530013|530020|530022|530253|530255|530454|530455|530457|530464|568107|568109|570143|570263|570264|570266|570272|570273|610025|614423|620539|621536|621542|644624|644625|644626|644627|644628|644629|644630|644630|644631|644632|644633|644634|644635|644636|644637|644638|644639|644640|656373|693851|695692|740173|740174|755155|755156|755157|755159|755160|770887|770888|770890|770891|770892|770894|770895|785270|785271|791588|791589|791590|791591|791592|791593|791594|791595|791596|791597|791598|791599|791600|791601|791602|791603|791604|799955|816337|820826|843777|843778|843779|843780|843781|843782|843783|843784|843785|843786|843787|843788|843789|843790|843791|843792|843793|843794|875193|875194|875195|875196|875197|875198|875199|875200|875201|875202|875203|875204|875205|875206|875207|875208|875209|875210|875211|875212|875213|875214|875215|875216|906319|906320|927786|927787|927788|927789|927790|927791|937418|937419|937420|937421|937422|937423|937424|941134|949377|949378|949379|957740|957741|957742|957743|957744|957745|957746|957747|957748|975887|979763|979764|979765|979766|979767", + "upstreamId": "17577|17577|17578|17578|17579|17579|17581|17581|17582|17583|17584|17586|17586|17587|17587|17588|17588|17589|17589|17590|17591|17592|17593|17595|17596|45159|45160|45160|45161|45161|45162|45163|45164|45165|45166|45167|45168|45169|45169|45170|45171|45172|45173|45174|45175|45176|45177|45178|45178|70784|70785|70786|70787|70788|70789|70790|70791|70792|102885|103317|103318|103319|103320|103321|103322|103323|103324|103325|103326|103327|103328|103329|103330|103331|103332|103333|103333|103334|103335|103336|103337|103338|103339|103340|103341|103342|103343|103344|103345|103346|103347|103348|103349|103350|103351|103352|103353|103354|103355|103356|103357|103358|103359|103359|103360|103361|103362|103363|103364|103365|103366|103367|103368|103369|103370|103370|103371|103372|103373|103374|103375|103376|103377|103378|103379|103381|103382|103383|103384|103385|103386|103387|103388|103389|103390|103391|103392|103393|103394|103395|103396|103397|103398|103399|103400|103401|103402|103403|103404|103405|103406|103407|103407|103408|103409|103410|103411|103412|103413|103414|103415|103416|103417|103418|103419|103420|103421|103422|103423|103424|103425|103426|103427|103428|103429|103429|103430|103431|103432|103433|103434|103435|103436|103437|103438|103439|103440|103440|103441|103442|103443|103444|103445|103446|103447|103448|103449|103449|103784|136621|136622|136623|141909|141910|141911|170203|170212|170936|190090|192212|225792|225793|225794|231932|231934|231937|231938|231944|231947|231950|231951|231955|231956|247431|255706|264707|264709|267205|274103|325214|325218|325222|325223|325229|325234|325237|325247|325253|334864|334876|334878|334885|334887|334896|334898|334902|334908|341340|341344|341346|341347|341348|341349|341352|341356|341358|342837|342840|342842|342854|342855|342857|342859|342860|342863|354189|377549|377552|433685|438802|439142|445574|465658|465666|466376|466378|466403|466405|466408|466414|466416|466641|487783|487887|487909|487914|505624|505624|529935|530013|530020|530022|530253|530255|530454|530455|530457|530464|568107|568109|570143|570263|570264|570266|570272|570273|610025|614423|620539|621536|621542|644624|644625|644626|644627|644628|644629|644630|644630|644631|644632|644633|644634|644635|644636|644637|644638|644639|644640|656373|693851|695692|740173|740174|755155|755156|755157|755159|755160|770887|770888|770890|770891|770892|770894|770895|785270|785271|791588|791589|791590|791591|791592|791593|791594|791595|791596|791597|791598|791599|791600|791601|791602|791603|791604|799955|816337|820826|843777|843778|843779|843780|843781|843782|843783|843784|843785|843786|843787|843788|843789|843790|843791|843792|843793|843794|875193|875194|875195|875196|875197|875198|875199|875200|875201|875202|875203|875204|875205|875206|875207|875208|875209|875210|875211|875212|875213|875214|875215|875216|906319|906320|927786|927787|927788|927789|927790|927791|937418|937419|937420|937421|937422|937423|937424|941134|949377|949378|949379|957740|957741|957742|957743|957744|957745|957746|957747|957748|975887|979763|979764|979765|979766|979767", "text": "Familial Mediterranean fever" }, { - "baseId": "17577|19210|23852|30440|30441|30475|30477|30486|30489|30493|30496|30508|31397|44949|46491|46545|46655|46771|48386|65797|66620|66924|71274|99659|102757|168250|181388|181429|195294|208964|210535|210979|214099|229443|263189|263222|263229|263230|263235|263287|263308|263392|263400|360834|360847|360848|360869|360902|360932|360958|361044|361096|377906|380597|426433|430720|472097|511931|514001|514046|514098|514157|514171|514189|514191|514202|514203|514207|534684|568718|580883|590050|590062|614501|614502|614503|614504|672020|679684|919573", + "upstreamId": "17577|19210|23852|30440|30441|30475|30477|30486|30489|30493|30496|30508|31397|44949|46491|46545|46655|46771|48386|65797|66620|66924|71274|99659|102757|168250|181388|181429|195294|208964|210535|210979|214099|229443|263189|263222|263229|263230|263235|263287|263308|263392|263400|360834|360847|360848|360869|360902|360932|360958|361044|361096|377906|380597|426433|430720|472097|511931|514001|514046|514098|514157|514171|514189|514191|514202|514203|514207|534684|568718|580883|590050|590062|614501|614502|614503|614504|672020|679684|919573", "text": "9 conditions" }, { - "baseId": "17577|17577|17578|17578|17579|17579|17581|17581|17582|17586|17587|17588|17589|17589|17595|17596|45160|45161|45169|45178|45178|50062|103333|103359|103370|103406|103407|103429|103440|103449|103784|465667|487887|505624|614423|644625|644630|816337|843784|975887", + "upstreamId": "17577|17577|17578|17578|17579|17579|17581|17581|17582|17586|17587|17588|17589|17589|17595|17596|45160|45161|45169|45178|45178|50062|103333|103359|103370|103406|103407|103429|103440|103449|103784|465667|487887|505624|614423|644625|644630|816337|843784|975887", "text": "Familial mediterranean fever, autosomal dominant" }, { - "baseId": "17577|45168|45169|103433|905840", + "upstreamId": "17577|45168|45169|103433|905840", "text": "Acute febrile neutrophilic dermatosis" }, { - "baseId": "17586|23034|54002|150126|150127|150128|150129|150130|176733|229300|489148|536059|540582|551288|805098|905852|905853|905854|966698|966714|966715|966716|966717|966718|966719|966723|966724|966735|966737|980653|980681|980690|983684|983686|983687", + "upstreamId": "17586|23034|54002|150126|150127|150128|150129|150130|176733|229300|489148|536059|540582|551288|805098|905852|905853|905854|966698|966714|966715|966716|966717|966718|966719|966723|966724|966735|966737|980653|980681|980690|983684|983686|983687", "text": "Heart, malformation of" }, { - "baseId": "17586|58297|514037|611473|677257", + "upstreamId": "17586|58297|514037|611473|677257", "text": "Renal insufficiency" }, { - "baseId": "17597|17598|17599|17600|17601|17602|101982|101986|101987|177137|196065|215439|247064|268878|268878|315260|315262|315263|315264|315271|322096|322115|328185|328186|328189|328190|329454|329464|329466|329468|329469|329482|374348|482005|526783|640469|687825|693115|724751|724752|738309|738311|752993|839087|851461|868843|868844|868845|868846|868847|868848|868849|919394|935820|947704", + "upstreamId": "17597|17598|17599|17600|17601|17602|101982|101986|101987|177137|196065|215439|247064|268878|268878|315260|315262|315263|315264|315271|322096|322115|328185|328186|328189|328190|329454|329464|329466|329468|329469|329482|374348|482005|526783|640469|687825|693115|724751|724752|738309|738311|752993|839087|851461|868843|868844|868845|868846|868847|868848|868849|919394|935820|947704", "text": "ALG8-CDG" }, { - "baseId": "17603|17604|17605|17606|17607|17608|17609|17610|71164|71165|71166|71167|71168|71169|71171|71172|71173|71174|71175|71176|71177|71178|71179|71180|71181|71182|71183|71184|71185|71186|101295|101297|134227|134228|134229|134230|134231|134232|134233|140496|140497|177145|181190|186913|188052|190506|193599|198634|202762|202766|202767|202773|202775|202776|202777|202778|202781|202782|202783|202784|202785|202787|202792|226244|241763|269249|320006|320007|320010|320014|320016|328567|328568|328571|328572|328578|335053|335056|336965|336972|358244|358245|358246|358247|358248|358249|360008|399578|399590|409046|429511|445158|445159|463956|505225|513214|536865|547098|547116|547117|547122|547256|547258|547268|547271|547412|547413|547417|547424|547426|547428|547430|547765|547768|547772|547777|547793|547795|566180|567743|568635|572584|612303|622421|623159|626224|642059|642060|642064|688184|693396|801722|841007|871476|871477|871478|871479|871480|871481|871482|871483|871484|871485|871486|871487|871488|871489|871490|871491|871492|871493|917517|979418|979419|979420|979421|979422", + "upstreamId": "17603|17604|17605|17606|17607|17608|17609|17610|71164|71165|71166|71167|71168|71169|71171|71172|71173|71174|71175|71176|71177|71178|71179|71180|71181|71182|71183|71184|71185|71186|101295|101297|134227|134228|134229|134230|134231|134232|134233|140496|140497|177145|181190|186913|188052|190506|193599|198634|202762|202766|202767|202773|202775|202776|202777|202778|202781|202782|202783|202784|202785|202787|202792|226244|241763|269249|320006|320007|320010|320014|320016|328567|328568|328571|328572|328578|335053|335056|336965|336972|358244|358245|358246|358247|358248|358249|360008|399578|399590|409046|429511|445158|445159|463956|505225|513214|536865|547098|547116|547117|547122|547256|547258|547268|547271|547412|547413|547417|547424|547426|547428|547430|547765|547768|547772|547777|547793|547795|566180|567743|568635|572584|612303|622421|623159|626224|642059|642060|642064|688184|693396|801722|841007|871476|871477|871478|871479|871480|871481|871482|871483|871484|871485|871486|871487|871488|871489|871490|871491|871492|871493|917517|979418|979419|979420|979421|979422", "text": "Neuronal ceroid lipofuscinosis 5" }, { - "baseId": "17603|17604|17605|17606|17608|17680|17681|17682|17683|17684|17686|17688|17841|17843|18595|18596|19116|19121|19122|19125|23938|23943|39850|70821|70832|70838|70847|70849|70882|70883|70886|70888|70892|70897|70901|70907|70908|70924|70926|70927|70928|70929|70931|70932|71167|71168|71169|71172|71173|71174|71178|71179|71182|71183|71343|71354|71356|78985|78987|79626|79629|79630|79633|79637|79640|94620|98791|98792|99410|101295|101297|101820|106597|106601|134224|134226|134227|134228|134229|134230|134231|134232|134233|134234|134235|134237|134318|134320|134322|134325|136051|136052|136053|136055|136056|140483|140485|140486|140487|140488|140489|140491|140492|140493|140494|140495|140496|140497|140499|140500|140501|140502|140503|140504|140505|140506|140509|140510|140742|140743|140744|140745|140748|140753|140754|140756|140760|140763|140764|141401|141402|141404|141405|141406|141407|141408|141409|141410|142496|177145|186834|186913|188052|190506|190553|190554|190746|190778|190779|191332|191640|192317|192505|192506|192509|193642|193654|193688|194476|194825|194871|194872|194873|195236|195237|195734|195886|198634|202199|202200|202201|202202|202206|202207|202208|202209|202210|202211|202212|202213|202215|202216|202217|202218|202219|202524|202527|202530|202531|202532|202533|202536|202537|202538|202539|202545|202548|202549|202550|202552|202553|202554|202555|202559|202562|202564|202566|202567|202568|202570|202573|202576|202577|202578|202579|202580|202581|202582|202583|202584|202586|202587|202589|202591|202592|202593|202594|202596|202600|202601|202603|202604|202605|202607|202765|202766|202767|202768|202772|202773|202774|202775|202776|202777|202778|202779|202780|202781|202782|202783|202784|202785|202786|202787|202788|202792|202867|202868|202869|202870|202871|202872|202880|202884|202885|202886|202887|202889|202890|202891|202892|202893|202895|202896|203257|203258|203259|203260|203262|203263|203264|203265|203267|203269|203271|203272|203276|203277|203279|203280|203281|203283|203285|203286|203288|203289|203290|203812|203814|203818|203819|203823|203824|214538|240333|240336|241763|242108|243591|253088|264493|264631|266311|266966|268009|269249|270292|271722|271803|271938|272553|275228|321424|323221|323222|323226|323230|323231|323234|323235|323241|323244|323245|323246|324886|324887|324895|324896|325731|325740|326749|328567|328568|328621|328622|332879|332880|332883|332897|332907|332920|332929|334506|336301|336304|339787|339790|339792|339803|339805|341217|341222|341223|341230|341238|342620|358022|358025|358366|360008|360108|360170|369455|369885|369889|370191|371317|371321|371609|371613|371752|371753|371761|371762|372095|372099|372307|372309|372317|373662|373960|373976|373988|374201|374204|374288|374313|374316|375036|375314|375704|376610|376614|377468|378350|378458|378464|378469|396146|396496|398100|398101|398103|398104|398107|398109|398118|398339|398346|398420|398431|398443|398765|398769|398896|399578|399584|399586|399590|400047|400215|400469|400474|400810|400811|401126|401154|401157|401607|401610|401613|404151|404212|404221|407350|407352|407354|407358|408313|408425|409044|409046|409049|409051|409329|409332|409584|409585|409587|409588|409590|409596|409597|409599|415291|426118|426357|426358|429783|429784|441433|444258|444260|444261|444765|445159|445160|445413|445556|457688|458115|458287|458349|458651|458656|460927|460931|461008|461011|461015|461020|461305|461368|461369|461374|461376|461381|461537|461540|461550|461750|461896|462230|462234|462236|462238|462967|463376|463952|463956|464479|464484|464490|464820|465129|465132|465133|465267|465268|465363|465593|466315|466344|466591|466592|466595|466598|466600|480573|487317|488832|488903|489664|489911|490688|493093|493533|493878|503201|503368|503378|503920|504314|505226|505321|505351|505547|506268|506282|507329|512151|513349|523398|523402|523404|523688|523691|523713|523960|523977|525993|526001|526006|526045|526047|526050|526055|526412|526416|526439|526440|526441|526445|526446|526486|526496|526497|526500|526704|526709|526716|526950|527817|527830|527832|527834|528167|528169|528172|528326|528328|529091|529094|529610|529613|529847|529889|530205|530213|530398|533721|533722|534268|534271|534288|544753|546140|546434|546449|546576|547505|547772|548148|548482|549647|549725|549813|551717|562256|562782|564507|564511|564852|564960|564961|566073|566075|566091|566093|566180|567238|567463|567465|567467|567488|567743|567746|567750|568056|568059|568061|568635|568636|569102|569106|569589|570070|570079|570392|570393|570405|570408|570870|570883|571410|571411|572584|572590|572591|572846|572984|572985|573496|573498|573504|573657|573658|573659|573670|573999|574000|574004|574005|574007|577538|577539|579374|579726|579834|579942|580070|580277|586356|590164|622421|637011|637012|637013|637014|637015|637016|637017|637018|639834|639835|639836|639837|639838|639839|639840|639841|639842|639843|639844|640340|640341|640342|640343|640344|640345|640346|640347|640348|640349|640350|640351|640352|640353|640354|640355|640356|640357|640358|642056|642057|642058|642059|642060|642061|642062|642063|642064|643513|643514|643515|643516|643517|643518|643519|644532|644533|644534|644535|644536|644537|644538|644539|644540|644541|644542|648847|648848|651761|652230|652513|652518|652535|652537|652618|652835|652837|653006|653009|653255|656048|656300|684420|685407|685408|685417|685418|687252|687253|687254|687255|687256|687258|687724|687814|687815|687816|688180|688183|688184|688478|688479|688480|688481|688560|688561|689227|690010|690137|690138|692475|693732|693735|693832|693833|714843|714844|724338|724618|731059|740080|740081|753887|754640|754642|766704|766705|766707|768365|768621|770298|770300|770820|770822|770825|775719|775721|776179|776403|783063|783965|784094|784095|784630|784631|784632|784989|784990|785245|785246|786465|788006|790791|791155|791481|791482|791579|798012|801722|816322|820432|820433|820589|820590|820591|820731|820815|820816|820817|820818|820819|821346|822174|822175|834527|834528|834529|834530|834531|834532|834533|834534|834535|834536|834537|834538|834539|834540|834541|834542|838146|838147|838148|838149|838150|838151|838152|838153|838154|838155|838156|838157|838158|838786|838787|838788|838789|838790|838791|838792|838793|838794|838795|838796|838797|838798|838799|838800|838801|838802|838803|838804|841005|841006|841007|841008|841009|841010|841011|841012|842627|842628|842629|842630|842631|842632|842633|842634|842635|842636|842637|842638|842639|843691|843692|843693|843694|843695|843696|843697|843698|843699|843700|843701|843702|843703|843704|848596|848597|848598|848599|851904|851981|852067|852105|852607|852622|852652|852817|874039|874040|874041|874042|874043|874044|874045|874046|874047|874048|874049|874050|874051|874052|874053|874054|874055|874056|874057|874058|874059|876560|876561|876562|925135|925136|925137|925138|925139|925140|926160|926161|926162|926163|926347|926348|926349|926350|926351|926949|926950|926951|927406|927407|927408|927757|927758|927759|927760|929264|929265|934229|934230|934231|934232|935697|935698|935699|935700|935701|935702|935703|935704|935705|936487|936488|936489|936490|936491|937035|937036|937037|937038|937398|937399|939054|940357|941006|941007|941008|941055|941133|945996|945997|945998|945999|947371|947372|947373|947374|947375|947376|947586|947587|947588|947589|947590|947591|947592|947593|948418|948419|948420|948986|948987|948988|949345|949346|949347|949348|949349|949350|951171|951172|955378|955379|955380|955381|955382|956437|956438|956439|956591|956592|956593|956594|956595|956596|956597|957133|957134|957135|957136|957137|957138|957139|957140|957479|957480|957481|957482|957717|957718|957719|957720|957721|957722|957723|957724|960005|960006|960007|960151|960152|960754|960755|960756|963298", + "upstreamId": "17603|17604|17605|17606|17608|17680|17681|17682|17683|17684|17686|17688|17841|17843|18595|18596|19116|19121|19122|19125|23938|23943|39850|70821|70832|70838|70847|70849|70882|70883|70886|70888|70892|70897|70901|70907|70908|70924|70926|70927|70928|70929|70931|70932|71167|71168|71169|71172|71173|71174|71178|71179|71182|71183|71343|71354|71356|78985|78987|79626|79629|79630|79633|79637|79640|94620|98791|98792|99410|101295|101297|101820|106597|106601|134224|134226|134227|134228|134229|134230|134231|134232|134233|134234|134235|134237|134318|134320|134322|134325|136051|136052|136053|136055|136056|140483|140485|140486|140487|140488|140489|140491|140492|140493|140494|140495|140496|140497|140499|140500|140501|140502|140503|140504|140505|140506|140509|140510|140742|140743|140744|140745|140748|140753|140754|140756|140760|140763|140764|141401|141402|141404|141405|141406|141407|141408|141409|141410|142496|177145|186834|186913|188052|190506|190553|190554|190746|190778|190779|191332|191640|192317|192505|192506|192509|193642|193654|193688|194476|194825|194871|194872|194873|195236|195237|195734|195886|198634|202199|202200|202201|202202|202206|202207|202208|202209|202210|202211|202212|202213|202215|202216|202217|202218|202219|202524|202527|202530|202531|202532|202533|202536|202537|202538|202539|202545|202548|202549|202550|202552|202553|202554|202555|202559|202562|202564|202566|202567|202568|202570|202573|202576|202577|202578|202579|202580|202581|202582|202583|202584|202586|202587|202589|202591|202592|202593|202594|202596|202600|202601|202603|202604|202605|202607|202765|202766|202767|202768|202772|202773|202774|202775|202776|202777|202778|202779|202780|202781|202782|202783|202784|202785|202786|202787|202788|202792|202867|202868|202869|202870|202871|202872|202880|202884|202885|202886|202887|202889|202890|202891|202892|202893|202895|202896|203257|203258|203259|203260|203262|203263|203264|203265|203267|203269|203271|203272|203276|203277|203279|203280|203281|203283|203285|203286|203288|203289|203290|203812|203814|203818|203819|203823|203824|214538|240333|240336|241763|242108|243591|253088|264493|264631|266311|266966|268009|269249|270292|271722|271803|271938|272553|275228|321424|323221|323222|323226|323230|323231|323234|323235|323241|323244|323245|323246|324886|324887|324895|324896|325731|325740|326749|328567|328568|328621|328622|332879|332880|332883|332897|332907|332920|332929|334506|336301|336304|339787|339790|339792|339803|339805|341217|341222|341223|341230|341238|342620|358022|358025|358366|360008|360108|360170|369455|369885|369889|370191|371317|371321|371609|371613|371752|371753|371761|371762|372095|372099|372307|372309|372317|373662|373960|373976|373988|374201|374204|374288|374313|374316|375036|375314|375704|376610|376614|377468|378350|378458|378464|378469|396146|396496|398100|398101|398103|398104|398107|398109|398118|398339|398346|398420|398431|398443|398765|398769|398896|399578|399584|399586|399590|400047|400215|400469|400474|400810|400811|401126|401154|401157|401607|401610|401613|404151|404212|404221|407350|407352|407354|407358|408313|408425|409044|409046|409049|409051|409329|409332|409584|409585|409587|409588|409590|409596|409597|409599|415291|426118|426357|426358|429783|429784|441433|444258|444260|444261|444765|445159|445160|445413|445556|457688|458115|458287|458349|458651|458656|460927|460931|461008|461011|461015|461020|461305|461368|461369|461374|461376|461381|461537|461540|461550|461750|461896|462230|462234|462236|462238|462967|463376|463952|463956|464479|464484|464490|464820|465129|465132|465133|465267|465268|465363|465593|466315|466344|466591|466592|466595|466598|466600|480573|487317|488832|488903|489664|489911|490688|493093|493533|493878|503201|503368|503378|503920|504314|505226|505321|505351|505547|506268|506282|507329|512151|513349|523398|523402|523404|523688|523691|523713|523960|523977|525993|526001|526006|526045|526047|526050|526055|526412|526416|526439|526440|526441|526445|526446|526486|526496|526497|526500|526704|526709|526716|526950|527817|527830|527832|527834|528167|528169|528172|528326|528328|529091|529094|529610|529613|529847|529889|530205|530213|530398|533721|533722|534268|534271|534288|544753|546140|546434|546449|546576|547505|547772|548148|548482|549647|549725|549813|551717|562256|562782|564507|564511|564852|564960|564961|566073|566075|566091|566093|566180|567238|567463|567465|567467|567488|567743|567746|567750|568056|568059|568061|568635|568636|569102|569106|569589|570070|570079|570392|570393|570405|570408|570870|570883|571410|571411|572584|572590|572591|572846|572984|572985|573496|573498|573504|573657|573658|573659|573670|573999|574000|574004|574005|574007|577538|577539|579374|579726|579834|579942|580070|580277|586356|590164|622421|637011|637012|637013|637014|637015|637016|637017|637018|639834|639835|639836|639837|639838|639839|639840|639841|639842|639843|639844|640340|640341|640342|640343|640344|640345|640346|640347|640348|640349|640350|640351|640352|640353|640354|640355|640356|640357|640358|642056|642057|642058|642059|642060|642061|642062|642063|642064|643513|643514|643515|643516|643517|643518|643519|644532|644533|644534|644535|644536|644537|644538|644539|644540|644541|644542|648847|648848|651761|652230|652513|652518|652535|652537|652618|652835|652837|653006|653009|653255|656048|656300|684420|685407|685408|685417|685418|687252|687253|687254|687255|687256|687258|687724|687814|687815|687816|688180|688183|688184|688478|688479|688480|688481|688560|688561|689227|690010|690137|690138|692475|693732|693735|693832|693833|714843|714844|724338|724618|731059|740080|740081|753887|754640|754642|766704|766705|766707|768365|768621|770298|770300|770820|770822|770825|775719|775721|776179|776403|783063|783965|784094|784095|784630|784631|784632|784989|784990|785245|785246|786465|788006|790791|791155|791481|791482|791579|798012|801722|816322|820432|820433|820589|820590|820591|820731|820815|820816|820817|820818|820819|821346|822174|822175|834527|834528|834529|834530|834531|834532|834533|834534|834535|834536|834537|834538|834539|834540|834541|834542|838146|838147|838148|838149|838150|838151|838152|838153|838154|838155|838156|838157|838158|838786|838787|838788|838789|838790|838791|838792|838793|838794|838795|838796|838797|838798|838799|838800|838801|838802|838803|838804|841005|841006|841007|841008|841009|841010|841011|841012|842627|842628|842629|842630|842631|842632|842633|842634|842635|842636|842637|842638|842639|843691|843692|843693|843694|843695|843696|843697|843698|843699|843700|843701|843702|843703|843704|848596|848597|848598|848599|851904|851981|852067|852105|852607|852622|852652|852817|874039|874040|874041|874042|874043|874044|874045|874046|874047|874048|874049|874050|874051|874052|874053|874054|874055|874056|874057|874058|874059|876560|876561|876562|925135|925136|925137|925138|925139|925140|926160|926161|926162|926163|926347|926348|926349|926350|926351|926949|926950|926951|927406|927407|927408|927757|927758|927759|927760|929264|929265|934229|934230|934231|934232|935697|935698|935699|935700|935701|935702|935703|935704|935705|936487|936488|936489|936490|936491|937035|937036|937037|937038|937398|937399|939054|940357|941006|941007|941008|941055|941133|945996|945997|945998|945999|947371|947372|947373|947374|947375|947376|947586|947587|947588|947589|947590|947591|947592|947593|948418|948419|948420|948986|948987|948988|949345|949346|949347|949348|949349|949350|951171|951172|955378|955379|955380|955381|955382|956437|956438|956439|956591|956592|956593|956594|956595|956596|956597|957133|957134|957135|957136|957137|957138|957139|957140|957479|957480|957481|957482|957717|957718|957719|957720|957721|957722|957723|957724|960005|960006|960007|960151|960152|960754|960755|960756|963298", "text": "Neuronal ceroid lipofuscinosis" }, { - "baseId": "17611|133551|133552|133553|133554|133556|133558|133568|133570|133571|133572|136494|139712|139723|139726|180159|180161|212379|212380|292715|292720|292725|292728|292729|292731|292738|292739|292746|292747|292761|292763|292773|294083|294084|294085|294087|294105|294106|294117|294118|294119|294121|294124|294126|297523|297524|297542|297544|297545|297548|297571|297574|297575|297578|297579|297586|297623|297624|297625|297634|297635|297636|297638|297657|297658|297659|297662|297665|297668|297683|389590|389616|795558|890388|890389|890390|890391|890392|890393|890394|890395|890396|890397|890398|890399|890400|890401|890402|890403|890404|890405|890406|890407|890408|890409|890410|890411|890412|890413|890414|890415|890416|890417|890418|890419|890420|890421|890422|891769|891770", + "upstreamId": "17611|133551|133552|133553|133554|133556|133558|133568|133570|133571|133572|136494|139712|139723|139726|180159|180161|212379|212380|292715|292720|292725|292728|292729|292731|292738|292739|292746|292747|292761|292763|292773|294083|294084|294085|294087|294105|294106|294117|294118|294119|294121|294124|294126|297523|297524|297542|297544|297545|297548|297571|297574|297575|297578|297579|297586|297623|297624|297625|297634|297635|297636|297638|297657|297658|297659|297662|297665|297668|297683|389590|389616|795558|890388|890389|890390|890391|890392|890393|890394|890395|890396|890397|890398|890399|890400|890401|890402|890403|890404|890405|890406|890407|890408|890409|890410|890411|890412|890413|890414|890415|890416|890417|890418|890419|890420|890421|890422|891769|891770", "text": "Pancreatic cancer 1" }, { - "baseId": "17611|23312|23582|23584|27386|27388|27394|27395|27397|27398|27403|27404|27405|27408|27409|27422|27641|27642|27645|27652|28691|28692|28694|28695|28698|30972|30973|32616|32619|32622|32626|36171|36173|44227|48304|54284|133271|133272|133274|133276|133277|133558|133560|133563|133566|136494|139098|139706|139707|139708|139709|139710|139711|139712|139713|139714|139715|139716|139717|139718|139719|139720|139721|139722|139723|139724|139725|139726|139727|150515|150535|150855|151476|151595|151897|151955|152428|166218|171614|173901|176503|179419|180160|180161|180995|181000|181001|181005|185345|185350|185366|185367|185371|185375|185394|186022|186023|186024|206650|212342|212358|212359|212360|212361|212362|212363|212364|212365|212366|212368|212370|212371|212372|212373|212374|212376|212377|212378|212379|212380|212381|213392|213398|213402|213943|221435|221436|221438|221439|221440|221441|221443|221446|221447|221448|221449|221451|221452|221453|221454|221455|221456|221457|222738|232035|233761|236459|236461|236462|236463|236468|236469|236477|236479|236481|239343|239344|239346|239347|239348|239349|239350|239351|239352|242978|242980|245074|260191|260192|292762|297542|297544|362775|362873|362894|362895|362896|362904|362905|362912|363110|363186|363201|363258|363259|363260|363263|363264|363270|363271|363272|363273|363322|363323|363328|363330|363331|363339|363360|363364|363365|363366|363379|363380|363381|363407|363408|363412|363416|363417|363418|363419|363420|363438|363439|363440|363441|363442|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363453|363454|363455|363456|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363494|363495|363496|363497|363498|363499|363500|363501|363502|363503|363504|363505|363506|363507|363508|363512|363513|363514|363515|363518|363519|363520|363521|363522|363523|363524|363525|363528|363529|363530|363531|363532|363533|363534|363535|363538|363539|363540|363541|363542|363543|363544|363545|363546|363547|363548|363549|363550|363551|363552|363553|363554|363555|363556|363557|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|363572|363573|393886|393888|393890|393891|393899|393900|393906|394142|394145|394309|394310|394313|394314|453038|453041|453043|453045|453322|453327|453330|453332|453417|453418|453419|453424|453425|453820|453824|519804|519808|519810|519814|519833|519838|519842|520074|520107|520111|520114|520122|520137|520138|520145|559627|559629|559631|559633|559784|559786|559788|561967|561969|561970|563575|563587|632077|632078|632079|632080|632081|632082|632083|632084|632085|632086|632087|686509|686510|686513|691529|691530|720833|819463|819464|828942|828943|828944|828945|828946|828947|828948|828949|828950|828951|828952|828953|828954|828955|828956|890412|923460|923461|923462|923463|923464|923465|932247|932248|932249|932250|943892|943893|943894|943895|943896|943897|943898|943899|953723", + "upstreamId": "17611|23312|23582|23584|27386|27388|27394|27395|27397|27398|27403|27404|27405|27408|27409|27422|27641|27642|27645|27652|28691|28692|28694|28695|28698|30972|30973|32616|32619|32622|32626|36171|36173|44227|48304|54284|133271|133272|133274|133276|133277|133558|133560|133563|133566|136494|139098|139706|139707|139708|139709|139710|139711|139712|139713|139714|139715|139716|139717|139718|139719|139720|139721|139722|139723|139724|139725|139726|139727|150515|150535|150855|151476|151595|151897|151955|152428|166218|171614|173901|176503|179419|180160|180161|180995|181000|181001|181005|185345|185350|185366|185367|185371|185375|185394|186022|186023|186024|206650|212342|212358|212359|212360|212361|212362|212363|212364|212365|212366|212368|212370|212371|212372|212373|212374|212376|212377|212378|212379|212380|212381|213392|213398|213402|213943|221435|221436|221438|221439|221440|221441|221443|221446|221447|221448|221449|221451|221452|221453|221454|221455|221456|221457|222738|232035|233761|236459|236461|236462|236463|236468|236469|236477|236479|236481|239343|239344|239346|239347|239348|239349|239350|239351|239352|242978|242980|245074|260191|260192|292762|297542|297544|362775|362873|362894|362895|362896|362904|362905|362912|363110|363186|363201|363258|363259|363260|363263|363264|363270|363271|363272|363273|363322|363323|363328|363330|363331|363339|363360|363364|363365|363366|363379|363380|363381|363407|363408|363412|363416|363417|363418|363419|363420|363438|363439|363440|363441|363442|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363453|363454|363455|363456|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363494|363495|363496|363497|363498|363499|363500|363501|363502|363503|363504|363505|363506|363507|363508|363512|363513|363514|363515|363518|363519|363520|363521|363522|363523|363524|363525|363528|363529|363530|363531|363532|363533|363534|363535|363538|363539|363540|363541|363542|363543|363544|363545|363546|363547|363548|363549|363550|363551|363552|363553|363554|363555|363556|363557|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|363572|363573|393886|393888|393890|393891|393899|393900|393906|394142|394145|394309|394310|394313|394314|453038|453041|453043|453045|453322|453327|453330|453332|453417|453418|453419|453424|453425|453820|453824|519804|519808|519810|519814|519833|519838|519842|520074|520107|520111|520114|520122|520137|520138|520145|559627|559629|559631|559633|559784|559786|559788|561967|561969|561970|563575|563587|632077|632078|632079|632080|632081|632082|632083|632084|632085|632086|632087|686509|686510|686513|691529|691530|720833|819463|819464|828942|828943|828944|828945|828946|828947|828948|828949|828950|828951|828952|828953|828954|828955|828956|890412|923460|923461|923462|923463|923464|923465|932247|932248|932249|932250|943892|943893|943894|943895|943896|943897|943898|943899|953723", "text": "Pancreatic adenocarcinoma" }, { - "baseId": "17612", + "upstreamId": "17612", "text": "APOLIPOPROTEIN C-II (AFRICAN)" }, { - "baseId": "17612|17613|17614|17615|17616|17617|17618|17619|17620|17621|17622|17623|333740|333752|343711|343712|343714|343716|349061|349063|349064|349069|349950|349951|349953|349956|622464|779910|882114|882115|882116|882117|882118|882905", + "upstreamId": "17612|17613|17614|17615|17616|17617|17618|17619|17620|17621|17622|17623|333740|333752|343711|343712|343714|343716|349061|349063|349064|349069|349950|349951|349953|349956|622464|779910|882114|882115|882116|882117|882118|882905", "text": "Apolipoprotein C2 deficiency" }, { - "baseId": "17613", + "upstreamId": "17613", "text": "APOLIPOPROTEIN C-II (PADOVA)" }, { - "baseId": "17614", + "upstreamId": "17614", "text": "APOLIPOPROTEIN C-II (ST. MICHAEL)" }, { - "baseId": "17615", + "upstreamId": "17615", "text": "APOLIPOPROTEIN C-II (TORONTO)" }, { - "baseId": "17616", + "upstreamId": "17616", "text": "APOLIPOPROTEIN C-II (HAMBURG)" }, { - "baseId": "17617", + "upstreamId": "17617", "text": "APOLIPOPROTEIN C-II (NIJMEGEN)" }, { - "baseId": "17618", + "upstreamId": "17618", "text": "APOLIPOPROTEIN C-II (PARIS)" }, { - "baseId": "17619", + "upstreamId": "17619", "text": "APOLIPOPROTEIN C-II (BARI)" }, { - "baseId": "17620", + "upstreamId": "17620", "text": "Apolipoprotein c-ii variant" }, { - "baseId": "17621", + "upstreamId": "17621", "text": "APOLIPOPROTEIN C-II (SAN FRANCISCO)" }, { - "baseId": "17622", + "upstreamId": "17622", "text": "APOLIPOPROTEIN C-II (WAKAYAMA)" }, { - "baseId": "17623", + "upstreamId": "17623", "text": "APOLIPOPROTEIN C-II (AUCKLAND)" }, { - "baseId": "17625|17626|17627|17628|17629|17630|17631", + "upstreamId": "17625|17626|17627|17628|17629|17630|17631", "text": "Epilepsy, progressive myoclonic 2b" }, { - "baseId": "17625|17626|17627|17630|18137|18138|18139|18140|18141|18145|18146|101205|134449|134451|135212|135213|142225|172293|172294|176972|190490|190682|201931|201943|201949|201950|201951|201953|201954|201956|201957|201958|201959|201960|201961|201965|201968|264259|273612|299623|299625|299626|299631|302191|302192|302197|302202|302206|302222|302223|306566|306575|306576|306579|306580|306581|306586|306593|306594|306603|306608|306610|306863|306873|306876|306878|370201|395081|395082|395084|395687|415037|443935|455536|455545|455553|456282|501254|522169|522178|522182|560505|560662|560664|560666|563488|565537|579396|614298|634776|634777|634778|634779|634780|634781|634782|655727|686817|735549|765596|801990|802161|831750|831751|831752|831753|831754|831755|831756|831757|831758|895671|895672|895673|895674|895675|895676|895677|895678|895679|919001|924305|924306|924307|924308|933245|933246|933247|933248|933249|933250|933251|933252|933253|933254|944952|944953|954405", + "upstreamId": "17625|17626|17627|17630|18137|18138|18139|18140|18141|18145|18146|101205|134449|134451|135212|135213|142225|172293|172294|176972|190490|190682|201931|201943|201949|201950|201951|201953|201954|201956|201957|201958|201959|201960|201961|201965|201968|264259|273612|299623|299625|299626|299631|302191|302192|302197|302202|302206|302222|302223|306566|306575|306576|306579|306580|306581|306586|306593|306594|306603|306608|306610|306863|306873|306876|306878|370201|395081|395082|395084|395687|415037|443935|455536|455545|455553|456282|501254|522169|522178|522182|560505|560662|560664|560666|563488|565537|579396|614298|634776|634777|634778|634779|634780|634781|634782|655727|686817|735549|765596|801990|802161|831750|831751|831752|831753|831754|831755|831756|831757|831758|895671|895672|895673|895674|895675|895676|895677|895678|895679|919001|924305|924306|924307|924308|933245|933246|933247|933248|933249|933250|933251|933252|933253|933254|944952|944953|954405", "text": "Lafora disease" }, { - "baseId": "17632|17633|17634|17635|17636", + "upstreamId": "17632|17633|17634|17635|17636", "text": "Glutaric acidemia IIA" }, { - "baseId": "17633|27067|27069|31755|40255|40285|40286|98351|98352|99920|100971|100972|100975|140929|140935|140936|140937|140938|140939|177021|177354|177696|191220|192383|196253|200059|200062|200064|200068|200076|200077|200078|200293|200295|200297|200298|200299|200346|200347|200348|200349|200350|200354|200356|200358|226510|226511|226512|226513|226514|226515|226516|226517|226518|237327|237375|259784|260080|268471|292678|292681|292682|294047|294048|297464|297466|297470|297510|297530|297534|323399|333069|333071|333074|333075|333078|333079|339909|339913|341322|341328|361463|367910|367969|369049|373685|406420|414967|422046|425603|453321|453411|453416|453813|453818|453819|465316|465428|469260|470224|471276|500502|500778|501089|513050|519800|519831|520065|520070|520105|533393|533437|559625|563558|563564|563567|563571|569153|569599|569601|572774|581772|581777|582813|620157|620774|632064|632065|632066|632067|632068|632069|632070|632071|632072|632073|632074|632075|643549|643550|643551|643552|643553|648437|651098|651162|651271|652432|660242|689155|714618|716648|720813|728375|730269|734506|764366|764367|764369|764370|764372|764373|764374|778348|781892|781893|781897|785025|785026|785027|785028|787424|787905|788172|788891|788931|789852|790448|790449|790450|790451|790452|820737|828914|828915|828916|828917|828918|828919|828920|828921|828922|828923|828924|828925|828926|828927|828928|842710|842711|848028|850972|852609|874187|874188|874189|874190|874191|874192|876575|876576|876577|890350|890351|890352|890353|890354|890355|890356|890357|890358|890359|890360|890361|890362|891761|891762|891763|906264|919598|923452|923453|923454|923455|927426|932233|932234|932235|938841|939961|940776|943878|943879|943880|943881|953708|953709|953710|953711|953712|953713|953714|957513|958725|958726|959715|978036|978037|978038|978039|978040|978041|978042|978043|978044|978045|978046|978047|978048|978049|978050|978051|978052|978053|978054|978055|978056|978057|978058|979670|979671|979672|979673|979674|979675|979676|979677|979678|979679|979680", + "upstreamId": "17633|27067|27069|31755|40255|40285|40286|98351|98352|99920|100971|100972|100975|140929|140935|140936|140937|140938|140939|177021|177354|177696|191220|192383|196253|200059|200062|200064|200068|200076|200077|200078|200293|200295|200297|200298|200299|200346|200347|200348|200349|200350|200354|200356|200358|226510|226511|226512|226513|226514|226515|226516|226517|226518|237327|237375|259784|260080|268471|292678|292681|292682|294047|294048|297464|297466|297470|297510|297530|297534|323399|333069|333071|333074|333075|333078|333079|339909|339913|341322|341328|361463|367910|367969|369049|373685|406420|414967|422046|425603|453321|453411|453416|453813|453818|453819|465316|465428|469260|470224|471276|500502|500778|501089|513050|519800|519831|520065|520070|520105|533393|533437|559625|563558|563564|563567|563571|569153|569599|569601|572774|581772|581777|582813|620157|620774|632064|632065|632066|632067|632068|632069|632070|632071|632072|632073|632074|632075|643549|643550|643551|643552|643553|648437|651098|651162|651271|652432|660242|689155|714618|716648|720813|728375|730269|734506|764366|764367|764369|764370|764372|764373|764374|778348|781892|781893|781897|785025|785026|785027|785028|787424|787905|788172|788891|788931|789852|790448|790449|790450|790451|790452|820737|828914|828915|828916|828917|828918|828919|828920|828921|828922|828923|828924|828925|828926|828927|828928|842710|842711|848028|850972|852609|874187|874188|874189|874190|874191|874192|876575|876576|876577|890350|890351|890352|890353|890354|890355|890356|890357|890358|890359|890360|890361|890362|891761|891762|891763|906264|919598|923452|923453|923454|923455|927426|932233|932234|932235|938841|939961|940776|943878|943879|943880|943881|953708|953709|953710|953711|953712|953713|953714|957513|958725|958726|959715|978036|978037|978038|978039|978040|978041|978042|978043|978044|978045|978046|978047|978048|978049|978050|978051|978052|978053|978054|978055|978056|978057|978058|979670|979671|979672|979673|979674|979675|979676|979677|979678|979679|979680", "text": "Multiple acyl-CoA dehydrogenase deficiency" }, { - "baseId": "17637|17638|17639|17640|17641|17642|17643|48108|205741|205742|260936|264207|294464|294465|294480|294482|294483|294484|294488|294490|294491|295946|295947|295968|295969|295972|295975|295983|295992|295993|295994|299686|299693|299697|299699|299700|299701|299703|299704|299709|299713|299718|299724|299726|299727|406466|440043|612351|734738|764624|792751|801535|892339|892340|892341|892342|892343|892344|892345|892346|892347|892348|892349|892350|892351|892352|892353|892354|892355|892356|892357|892358|892359|892360|892361|892362|892363|892364|892365|892366|892367|892368|892369|892370|892371|892372|892373|892374|892375|892376|892377|892378|892379|892380|892381|892382|892383|892384|892385|892386|892387|892388|892389|892390|892391|892392|892393|892394|892395|892396|892397|892398|892399|892400|892401|892402|892403|892404|892405|892406|892407|892408|892409|892410|892411|892412|892413|892414|892415|892416|892417|892418|892419|892420|892421|892422|892423|892424|892425|892426|892427|892428|892429|892430|892431|892432|892433|892434|892435|892436|892437|892438|892439|892440|892441|892442|892443|892444|892445|892446|896003|896004|896005|963134|970211|970212", + "upstreamId": "17637|17638|17639|17640|17641|17642|17643|48108|205741|205742|260936|264207|294464|294465|294480|294482|294483|294484|294488|294490|294491|295946|295947|295968|295969|295972|295975|295983|295992|295993|295994|299686|299693|299697|299699|299700|299701|299703|299704|299709|299713|299718|299724|299726|299727|406466|440043|612351|734738|764624|792751|801535|892339|892340|892341|892342|892343|892344|892345|892346|892347|892348|892349|892350|892351|892352|892353|892354|892355|892356|892357|892358|892359|892360|892361|892362|892363|892364|892365|892366|892367|892368|892369|892370|892371|892372|892373|892374|892375|892376|892377|892378|892379|892380|892381|892382|892383|892384|892385|892386|892387|892388|892389|892390|892391|892392|892393|892394|892395|892396|892397|892398|892399|892400|892401|892402|892403|892404|892405|892406|892407|892408|892409|892410|892411|892412|892413|892414|892415|892416|892417|892418|892419|892420|892421|892422|892423|892424|892425|892426|892427|892428|892429|892430|892431|892432|892433|892434|892435|892436|892437|892438|892439|892440|892441|892442|892443|892444|892445|892446|896003|896004|896005|963134|970211|970212", "text": "Hyaline fibromatosis syndrome" }, { - "baseId": "17644|17645|17646|17647|17648|17649|17650|17651|17652|17653|17654|17655|186961|186962|186963|186964|186965|186966|186967|194782|195198|237185|327991|327995|337825|337828|337832|344085|344086|345473|358411|358412|358413|358414|358415|358416|358417|358418|358419|358420|358421|358422|358423|358424|360237|378116|401919|422161|481084|548018|548020|548022|548032|548037|548040|548041|548044|548045|548046|548049|548050|548052|548054|548066|548294|548299|548311|548314|548316|548322|548327|548771|548773|548779|548782|548787|548806|570780|620582|645790|645791|645792|652804|685056|685057|685061|685063|689587|690165|774284|786943|801730|801731|801732|802216|850362|850364|850365|852848|858699|861141|903659|929848|959384|961033|972270|979887|979888", + "upstreamId": "17644|17645|17646|17647|17648|17649|17650|17651|17652|17653|17654|17655|186961|186962|186963|186964|186965|186966|186967|194782|195198|237185|327991|327995|337825|337828|337832|344085|344086|345473|358411|358412|358413|358414|358415|358416|358417|358418|358419|358420|358421|358422|358423|358424|360237|378116|401919|422161|481084|548018|548020|548022|548032|548037|548040|548041|548044|548045|548046|548049|548050|548052|548054|548066|548294|548299|548311|548314|548316|548322|548327|548771|548773|548779|548782|548787|548806|570780|620582|645790|645791|645792|652804|685056|685057|685061|685063|689587|690165|774284|786943|801730|801731|801732|802216|850362|850364|850365|852848|858699|861141|903659|929848|959384|961033|972270|979887|979888", "text": "Spongy degeneration of central nervous system" }, { - "baseId": "17644|17646|17647|17648|186962|186963|186967|358413|487928|548018|548044|917378", + "upstreamId": "17644|17646|17647|17648|186962|186963|186967|358413|487928|548018|548044|917378", "text": "Canavan Disease, Familial Form" }, { - "baseId": "17655", + "upstreamId": "17655", "text": "Canavan disease, mild" }, { - "baseId": "17656|17657|254428|254429|316163|316164|316165|316167|316168|316170|316172|323445|323447|323449|323450|329662|329667|329668|329670|329674|330835|330842|330848|330851|330858|374613|444932|462442|551463|551464|566364|566364|869371|869372|869373|869374|869375|869376|869377|965284", + "upstreamId": "17656|17657|254428|254429|316163|316164|316165|316167|316168|316170|316172|323445|323447|323449|323450|329662|329667|329668|329670|329674|330835|330842|330848|330851|330858|374613|444932|462442|551463|551464|566364|566364|869371|869372|869373|869374|869375|869376|869377|965284", "text": "Distal hereditary motor neuronopathy type 2A" }, { - "baseId": "17657|17658|212989|212990|241247|241248|254428|254429|316163|316164|316165|316167|316168|316170|316172|323445|323447|323449|323450|329662|329667|329668|329670|329674|330835|330842|330848|330851|330858|374613|444932|461647|462203|462440|462442|526934|527263|551465|565079|565081|565082|566364|566364|566365|566369|566377|566378|566384|567685|571293|576150|640649|640650|640651|640652|640653|684305|793410|799667|839345|839346|839347|839348|839349|839350|839351|869371|869372|869373|869374|869375|869376|869377|920312|926474|926475|926476|935928|935929|947794|947795|947796|956754|956755|956756|956757|961303", + "upstreamId": "17657|17658|212989|212990|241247|241248|254428|254429|316163|316164|316165|316167|316168|316170|316172|323445|323447|323449|323450|329662|329667|329668|329670|329674|330835|330842|330848|330851|330858|374613|444932|461647|462203|462440|462442|526934|527263|551465|565079|565081|565082|566364|566364|566365|566369|566377|566378|566384|567685|571293|576150|640649|640650|640651|640652|640653|684305|793410|799667|839345|839346|839347|839348|839349|839350|839351|869371|869372|869373|869374|869375|869376|869377|920312|926474|926475|926476|935928|935929|947794|947795|947796|956754|956755|956756|956757|961303", "text": "Charcot-Marie-Tooth disease, type 2L" }, { - "baseId": "17659|17660", + "upstreamId": "17659|17660", "text": "Ezetimibe response" }, { - "baseId": "17661|17662|17663|17664|17665|17666|17667|17668|17669|17670|101979|101980|196327|215309|237214|251769|251775|251778|265853|270136|270774|271094|295556|295557|295562|295569|297318|297331|297332|297339|301162|301168|301169|301174|301175|301190|301347|301359|301363|301376|301381|301418|301422|301425|301430|364112|369638|440859|440866|454689|500679|584198|620185|620186|633466|709647|749248|790517|830343|830344|830348|893063|893064|893065|893066|893067|893068|893069|893070|893075|896042|932726|961647|970798", + "upstreamId": "17661|17662|17663|17664|17665|17666|17667|17668|17669|17670|101979|101980|196327|215309|237214|251769|251775|251778|265853|270136|270774|271094|295556|295557|295562|295569|297318|297331|297332|297339|301162|301168|301169|301174|301175|301190|301347|301359|301363|301376|301381|301418|301422|301425|301430|364112|369638|440859|440866|454689|500679|584198|620185|620186|633466|709647|749248|790517|830343|830344|830348|893063|893064|893065|893066|893067|893068|893069|893070|893075|896042|932726|961647|970798", "text": "Marinesco-Sj\u00f6gren syndrome" }, { - "baseId": "17671|17672|17673|17679|102402|102403|102404|102406|102407|177087|177218|177881|177886|186010|190668|192584|192945|193157|195042|207045|212289|215270|221365|221366|239108|250930|250931|250936|250946|250950|250953|268559|270942|273792|275290|275431|288781|288784|288792|288793|288802|288805|288807|288813|288820|289574|289575|289585|289586|289587|289588|289589|289590|289597|292578|292579|292580|292581|292585|292755|292758|292781|292783|292785|292787|292788|292790|292793|292795|292795|292798|368222|390680|424264|443365|489298|492320|518899|558822|582572|583256|620105|620753|622874|630956|683540|788760|800916|800917|827553|888002|888003|888004|888005|888006|888007|888008|888009|888010|888011|888012|888013|888014|888015|888016|888017|891569|891570|891571|906236|962695|962696|962697", + "upstreamId": "17671|17672|17673|17679|102402|102403|102404|102406|102407|177087|177218|177881|177886|186010|190668|192584|192945|193157|195042|207045|212289|215270|221365|221366|239108|250930|250931|250936|250946|250950|250953|268559|270942|273792|275290|275431|288781|288784|288792|288793|288802|288805|288807|288813|288820|289574|289575|289585|289586|289587|289588|289589|289590|289597|292578|292579|292580|292581|292585|292755|292758|292781|292783|292785|292787|292788|292790|292793|292795|292795|292798|368222|390680|424264|443365|489298|492320|518899|558822|582572|583256|620105|620753|622874|630956|683540|788760|800916|800917|827553|888002|888003|888004|888005|888006|888007|888008|888009|888010|888011|888012|888013|888014|888015|888016|888017|891569|891570|891571|906236|962695|962696|962697", "text": "Nephronophthisis 3" }, { - "baseId": "17673|17675|102402|102403|102404|102406|102407|177087|177218|177881|177886|186010|190668|192945|193157|195042|207045|212289|215270|221365|221366|239108|250930|250931|250936|250946|250950|250953|268559|270942|273792|275290|275431|288781|288784|288792|288793|288802|288805|288807|288813|288820|289574|289575|289585|289586|289587|289588|289589|289590|289597|292578|292579|292580|292581|292585|292755|292758|292781|292783|292785|292787|292788|292790|292793|292795|292795|292798|368222|443365|489298|492320|518899|583256|681804|681805|683540|827553|888002|888003|888004|888005|888006|888007|888008|888009|888010|888011|888012|888013|888014|888015|888016|888017|891569|891570|891571|920187", + "upstreamId": "17673|17675|102402|102403|102404|102406|102407|177087|177218|177881|177886|186010|190668|192945|193157|195042|207045|212289|215270|221365|221366|239108|250930|250931|250936|250946|250950|250953|268559|270942|273792|275290|275431|288781|288784|288792|288793|288802|288805|288807|288813|288820|289574|289575|289585|289586|289587|289588|289589|289590|289597|292578|292579|292580|292581|292585|292755|292758|292781|292783|292785|292787|292788|292790|292793|292795|292795|292798|368222|443365|489298|492320|518899|583256|681804|681805|683540|827553|888002|888003|888004|888005|888006|888007|888008|888009|888010|888011|888012|888013|888014|888015|888016|888017|891569|891570|891571|920187", "text": "Meckel syndrome type 7" }, { - "baseId": "17676|17677|17678|102402|102403|102404|102406|102407|177087|177218|177881|177886|186010|190668|192945|193157|195042|207045|212289|215270|221365|221366|239108|250930|250931|250936|250938|250946|250950|250953|268559|268882|270942|273792|275290|275342|275431|288781|288784|288792|288793|288796|288802|288805|288807|288813|288814|288820|288821|289574|289575|289582|289585|289586|289587|289588|289589|289590|289597|292578|292579|292580|292581|292582|292583|292584|292585|292586|292755|292758|292781|292783|292784|292785|292787|292788|292789|292790|292793|292795|292795|292796|292798|368222|443365|489298|492320|518899|583256|683540|790334|827553|888002|888003|888004|888005|888006|888007|888008|888009|888010|888011|888012|888013|888014|888015|888016|888017|891569|891570|891571", + "upstreamId": "17676|17677|17678|102402|102403|102404|102406|102407|177087|177218|177881|177886|186010|190668|192945|193157|195042|207045|212289|215270|221365|221366|239108|250930|250931|250936|250938|250946|250950|250953|268559|268882|270942|273792|275290|275342|275431|288781|288784|288792|288793|288796|288802|288805|288807|288813|288814|288820|288821|289574|289575|289582|289585|289586|289587|289588|289589|289590|289597|292578|292579|292580|292581|292582|292583|292584|292585|292586|292755|292758|292781|292783|292784|292785|292787|292788|292789|292790|292793|292795|292795|292796|292798|368222|443365|489298|492320|518899|583256|683540|790334|827553|888002|888003|888004|888005|888006|888007|888008|888009|888010|888011|888012|888013|888014|888015|888016|888017|891569|891570|891571", "text": "Renal-hepatic-pancreatic dysplasia 1" }, { - "baseId": "17680|17681|17682|17682|17683|17683|17684|17685|17686|17686|17687|17688|79626|79627|79628|79629|79630|79631|79632|79633|79634|79635|79636|79637|79638|79639|79640|79641|79642|98791|98791|98792|136051|136052|136053|136054|136055|136056|141401|141404|141405|141406|141407|186833|186834|186835|190746|190746|191332|193424|194825|195237|195886|202558|202559|202559|202566|202567|202569|202569|202573|202575|202576|202577|202578|202579|202579|202581|202584|202586|202587|202588|202591|202591|202592|202592|202593|202594|202595|202601|202603|202603|202605|202607|215044|222994|243904|243905|264493|264631|314695|314700|314702|314710|321386|321396|321397|321424|321428|327528|327552|327555|327556|327564|328593|328597|328601|328604|328609|328610|328621|328622|358020|358021|358022|358023|358024|358025|358026|358027|358028|358029|358030|371610|398765|398896|408426|415291|441433|461540|462234|481494|487317|493093|503368|513604|546125|546128|546135|546136|546138|546140|546410|546414|546416|546427|546434|546441|546447|546449|546450|546571|546574|546576|546578|546776|546786|546789|546791|550201|550221|552152|566073|567467|576142|579711|590164|610532|640341|640350|640356|687815|816322|838800|838801|868314|868315|868316|868317|868318|868319|868320|868321|868322|868323|868324|868325|868326|868327|868328|868329|868330|868331|868332|868674|947593|962864|970941|979048|979049|979050|979051|979052|979053|979054|979055|979056|979057|983741|983742", + "upstreamId": "17680|17681|17682|17682|17683|17683|17684|17685|17686|17686|17687|17688|79626|79627|79628|79629|79630|79631|79632|79633|79634|79635|79636|79637|79638|79639|79640|79641|79642|98791|98791|98792|136051|136052|136053|136054|136055|136056|141401|141404|141405|141406|141407|186833|186834|186835|190746|190746|191332|193424|194825|195237|195886|202558|202559|202559|202566|202567|202569|202569|202573|202575|202576|202577|202578|202579|202579|202581|202584|202586|202587|202588|202591|202591|202592|202592|202593|202594|202595|202601|202603|202603|202605|202607|215044|222994|243904|243905|264493|264631|314695|314700|314702|314710|321386|321396|321397|321424|321428|327528|327552|327555|327556|327564|328593|328597|328601|328604|328609|328610|328621|328622|358020|358021|358022|358023|358024|358025|358026|358027|358028|358029|358030|371610|398765|398896|408426|415291|441433|461540|462234|481494|487317|493093|503368|513604|546125|546128|546135|546136|546138|546140|546410|546414|546416|546427|546434|546441|546447|546449|546450|546571|546574|546576|546578|546776|546786|546789|546791|550201|550221|552152|566073|567467|576142|579711|590164|610532|640341|640350|640356|687815|816322|838800|838801|868314|868315|868316|868317|868318|868319|868320|868321|868322|868323|868324|868325|868326|868327|868328|868329|868330|868331|868332|868674|947593|962864|970941|979048|979049|979050|979051|979052|979053|979054|979055|979056|979057|983741|983742", "text": "Ceroid lipofuscinosis neuronal 2" }, { - "baseId": "17682|17683|17683|17686|79630|94620|98791|190746|202559|202566|202569|202579|202591|202592|202603|227507|576142|610532|816322|964036", + "upstreamId": "17682|17683|17683|17686|79630|94620|98791|190746|202559|202566|202569|202579|202591|202592|202603|227507|576142|610532|816322|964036", "text": "Childhood-onset autosomal recessive slowly progressive spinocerebellar ataxia" }, { - "baseId": "17689|17690|17691|17692|17693|214774|227204|249533|272403|277359|277360|277362|277370|277372|277379|277380|277394|277395|277396|277398|277560|277561|277567|277569|277576|277577|277578|277579|277588|277590|277591|278412|278430|278433|278436|278437|278439|278441|278443|278444|278445|278447|278449|278455|278456|278459|513497|612253|619967|619968|706868|788730|792712|805072|862776|862777|862778|862779|862780|862781|862782|862783|862784|865033|918580", + "upstreamId": "17689|17690|17691|17692|17693|214774|227204|249533|272403|277359|277360|277362|277370|277372|277379|277380|277394|277395|277396|277398|277560|277561|277567|277569|277576|277577|277578|277579|277588|277590|277591|278412|278430|278433|278436|278437|278439|278441|278443|278444|278445|278447|278449|278455|278456|278459|513497|612253|619967|619968|706868|788730|792712|805072|862776|862777|862778|862779|862780|862781|862782|862783|862784|865033|918580", "text": "Geroderma osteodysplastica" }, { - "baseId": "17694|349793|800170", + "upstreamId": "17694|349793|800170", "text": "Exocrine pancreatic insufficiency, dyserythropoietic anemia, and calvarial hyperostosis" }, { - "baseId": "17695|17696|17697|17698|17699|17700|17701|40301|102540|191301|191847|192793|207477|212584|212585|214072|237291|240081|252796|252801|252802|252803|252804|252806|252807|252809|252810|252811|252812|252813|260446|260787|302812|302813|302835|302840|302842|302846|302850|302853|302856|302857|302859|306173|306176|306177|306180|306183|306185|306186|306187|306189|306191|306193|306194|310925|310927|310932|310933|310934|310936|311127|311131|311136|311175|311177|311181|369720|369721|456709|512824|513580|620261|683889|683890|685219|687047|788815|790719|833582|861628|861629|898007|898008|898009|898010|898011|898012|898013|898014|898015|898016|898017|898018|898019|898020|898021|898022|898023|898024|898025|898026|898027|900357|900358|963359|970857|970858", + "upstreamId": "17695|17696|17697|17698|17699|17700|17701|40301|102540|191301|191847|192793|207477|212584|212585|214072|237291|240081|252796|252801|252802|252803|252804|252806|252807|252809|252810|252811|252812|252813|260446|260787|302812|302813|302835|302840|302842|302846|302850|302853|302856|302857|302859|306173|306176|306177|306180|306183|306185|306186|306187|306189|306191|306193|306194|310925|310927|310932|310933|310934|310936|311127|311131|311136|311175|311177|311181|369720|369721|456709|512824|513580|620261|683889|683890|685219|687047|788815|790719|833582|861628|861629|898007|898008|898009|898010|898011|898012|898013|898014|898015|898016|898017|898018|898019|898020|898021|898022|898023|898024|898025|898026|898027|900357|900358|963359|970857|970858", "text": "Bardet-Biedl syndrome 9" }, { - "baseId": "17702|17703|17704|17705|17706|17707|17708|17709|17710|17711|17712|17713|17714|17715|17716|17717|17718|39646|102450|102451|102452|227720|251140|251147|290330|290341|290464|290465|290467|291198|291199|291208|291210|291214|291215|291216|291220|291221|291353|291354|291358|294472|294474|294475|294476|294477|294485|294486|294494|294572|294580|294582|294590|294887|294891|294907|294908|294909|294919|294928|294930|294933|295012|295013|295020|295021|295024|295028|295029|357324|406308|452640|481480|486318|542981|543229|549554|631448|631449|631450|631451|651045|651114|651199|698100|708864|720450|720451|734070|734072|748272|748273|748274|748275|763906|774817|781676|781681|781682|819399|819400|819401|819402|819403|819404|819405|828180|828181|828182|851053|888909|888910|888911|888912|888913|888914|888915|888916|888917|888918|888919|888920|888921|888922|888923|888924|888925|888926|888927|888928|888965|888966|888967|888968|888969|888970|888971|888972|891646|891647|903522|916913|916914|953491|953492|959698|960511|975778|977839|977840|977841|977842|977843", + "upstreamId": "17702|17703|17704|17705|17706|17707|17708|17709|17710|17711|17712|17713|17714|17715|17716|17717|17718|39646|102450|102451|102452|227720|251140|251147|290330|290341|290464|290465|290467|291198|291199|291208|291210|291214|291215|291216|291220|291221|291353|291354|291358|294472|294474|294475|294476|294477|294485|294486|294494|294572|294580|294582|294590|294887|294891|294907|294908|294909|294919|294928|294930|294933|295012|295013|295020|295021|295024|295028|295029|357324|406308|452640|481480|486318|542981|543229|549554|631448|631449|631450|631451|651045|651114|651199|698100|708864|720450|720451|734070|734072|748272|748273|748274|748275|763906|774817|781676|781681|781682|819399|819400|819401|819402|819403|819404|819405|828180|828181|828182|851053|888909|888910|888911|888912|888913|888914|888915|888916|888917|888918|888919|888920|888921|888922|888923|888924|888925|888926|888927|888928|888965|888966|888967|888968|888969|888970|888971|888972|891646|891647|903522|916913|916914|953491|953492|959698|960511|975778|977839|977840|977841|977842|977843", "text": "Multiple sulfatase deficiency" }, { - "baseId": "17719|17720|17722|17723|17724|17725|17727|39645|190627|247409|252887|252890|252892|252893|252895|252896|418982|418985|418986|418988|418990|418991|418996|418999|441131|456738|456743|456824|457171|457783|512825|553154|561954|561958|563857|566876|577000|577001|581314|581318|581330|581333|581334|609662|636170|636171|636172|636173|651809|687054|687055|687056|689871|695363|736154|799511|819876|833621|833622|833623|833624|833625|861568|924857|924858|959857|963148", + "upstreamId": "17719|17720|17722|17723|17724|17725|17727|39645|190627|247409|252887|252890|252892|252893|252895|252896|418982|418985|418986|418988|418990|418991|418996|418999|441131|456738|456743|456824|457171|457783|512825|553154|561954|561958|563857|566876|577000|577001|581314|581318|581330|581333|581334|609662|636170|636171|636172|636173|651809|687054|687055|687056|689871|695363|736154|799511|819876|833621|833622|833623|833624|833625|861568|924857|924858|959857|963148", "text": "Cerebral cavernous malformations 2" }, { - "baseId": "17728|54806|54807|54809|54812|54813|54814|54815|54817|54819|54820|54823|54825|54826|54828|54829|54829|54830|54831|54834|54836|54837|54838|54839|54840|54841|54842|54845|54846|165839|174126|174265|174543|174545|174546|174684|174824|190881|191257|199790|204465|229648|229651|229654|272116|273159|273252|306539|306540|306544|306553|306555|306558|306561|306562|310735|310737|310738|310740|310755|310756|310758|310763|310769|316101|316102|316104|316105|316118|316119|316125|316127|316132|316135|316136|316473|316474|316482|316486|316489|316491|316497|316498|316505|316506|316508|316509|497050|497111|584172|615804|654527|799561|900881|900882|900883|900884|900885|900886|900887|900888|900889|900890|900891|900892|900893|900894|900895|900896|900897|900898|900899|900900|900901|900902|900903|900904|900905|900906|900907|900908|900909|900910|900911|900912|900913|900914|900915|900916|900917|903301|903302", + "upstreamId": "17728|54806|54807|54809|54812|54813|54814|54815|54817|54819|54820|54823|54825|54826|54828|54829|54829|54830|54831|54834|54836|54837|54838|54839|54840|54841|54842|54845|54846|165839|174126|174265|174543|174545|174546|174684|174824|190881|191257|199790|204465|229648|229651|229654|272116|273159|273252|306539|306540|306544|306553|306555|306558|306561|306562|310735|310737|310738|310740|310755|310756|310758|310763|310769|316101|316102|316104|316105|316118|316119|316125|316127|316132|316135|316136|316473|316474|316482|316486|316489|316491|316497|316498|316505|316506|316508|316509|497050|497111|584172|615804|654527|799561|900881|900882|900883|900884|900885|900886|900887|900888|900889|900890|900891|900892|900893|900894|900895|900896|900897|900898|900899|900900|900901|900902|900903|900904|900905|900906|900907|900908|900909|900910|900911|900912|900913|900914|900915|900916|900917|903301|903302", "text": "Deafness, autosomal recessive 31" }, { - "baseId": "17729|17730|40364|40365|54806|54807|54809|54812|54813|54814|54815|54817|54819|54820|54823|54825|54826|54828|54829|54829|54830|54831|54834|54836|54837|54838|54839|54840|54841|54842|54845|54846|174126|174265|174543|174545|174546|174684|174824|190881|191257|199790|229648|229651|229654|272116|273159|273252|306539|306540|306544|306553|306555|306558|306561|306562|310735|310737|310738|310740|310755|310756|310758|310763|310769|316101|316102|316104|316105|316118|316119|316125|316127|316132|316135|316136|316473|316474|316482|316486|316489|316491|316497|316498|316505|316506|316508|316509|497050|497111|584172|654527|799561|818260|900881|900882|900883|900884|900885|900886|900887|900888|900889|900890|900891|900892|900893|900894|900895|900896|900897|900898|900899|900900|900901|900902|900903|900904|900905|900906|900907|900908|900909|900910|900911|900912|900913|900914|900915|900916|900917|903301|903302", + "upstreamId": "17729|17730|40364|40365|54806|54807|54809|54812|54813|54814|54815|54817|54819|54820|54823|54825|54826|54828|54829|54829|54830|54831|54834|54836|54837|54838|54839|54840|54841|54842|54845|54846|174126|174265|174543|174545|174546|174684|174824|190881|191257|199790|229648|229651|229654|272116|273159|273252|306539|306540|306544|306553|306555|306558|306561|306562|310735|310737|310738|310740|310755|310756|310758|310763|310769|316101|316102|316104|316105|316118|316119|316125|316127|316132|316135|316136|316473|316474|316482|316486|316489|316491|316497|316498|316505|316506|316508|316509|497050|497111|584172|654527|799561|818260|900881|900882|900883|900884|900885|900886|900887|900888|900889|900890|900891|900892|900893|900894|900895|900896|900897|900898|900899|900900|900901|900902|900903|900904|900905|900906|900907|900908|900909|900910|900911|900912|900913|900914|900915|900916|900917|903301|903302", "text": "Usher syndrome, type 2D" }, { - "baseId": "17731|17732|17733|17734|17735|17736|21672|21673|21674|21675|48036", + "upstreamId": "17731|17732|17733|17734|17735|17736|21672|21673|21674|21675|48036", "text": "p phenotype" }, { - "baseId": "17738|17738|17739|102132|177392|190637|237332|253660|259932|309157|313891|313896|313898|319780|320305|320319|371461|371463|371470|373256|459538|459792|460007|460010|460012|460436|524859|525094|525099|525403|525405|563486|563486|563489|563490|564387|564389|564399|569388|569394|626192|638641|638642|638643|638644|638645|638646|638647|638648|638649|638650|638651|638652|692755|692756|692757|712107|751889|767582|767585|783514|836507|836508|836509|903563|906083|925713|925714|925715|925716|925717|925718|934902|934903|934904|934905|934906|934907|934908|946766|955951|955952|955953|955954", + "upstreamId": "17738|17738|17739|102132|177392|190637|237332|253660|259932|309157|313891|313896|313898|319780|320305|320319|371461|371463|371470|373256|459538|459792|460007|460010|460012|460436|524859|525094|525099|525403|525405|563486|563486|563489|563490|564387|564389|564399|569388|569394|626192|638641|638642|638643|638644|638645|638646|638647|638648|638649|638650|638651|638652|692755|692756|692757|712107|751889|767582|767585|783514|836507|836508|836509|903563|906083|925713|925714|925715|925716|925717|925718|934902|934903|934904|934905|934906|934907|934908|946766|955951|955952|955953|955954", "text": "ALG2-CDG" }, { - "baseId": "17738|102132|177392|181169|181170|190637|237332|253660|259932|309157|313891|313896|313898|319780|320305|320319|371461|371463|371470|373256|459538|459792|460007|460010|460012|460436|524859|525094|525099|525403|525405|563486|563489|563490|564387|564389|564399|569388|569394|626192|638641|638642|638643|638644|638645|638646|638647|638648|638649|638650|638651|638652|692755|692756|692757|712107|751889|767582|767585|783514|836507|836508|836509|906083|925713|925714|925715|925716|925717|925718|934902|934903|934904|934905|934906|934907|934908|946766|955951|955952|955953|955954|980210", + "upstreamId": "17738|102132|177392|181169|181170|190637|237332|253660|259932|309157|313891|313896|313898|319780|320305|320319|371461|371463|371470|373256|459538|459792|460007|460010|460012|460436|524859|525094|525099|525403|525405|563486|563489|563490|564387|564389|564399|569388|569394|626192|638641|638642|638643|638644|638645|638646|638647|638648|638649|638650|638651|638652|692755|692756|692757|712107|751889|767582|767585|783514|836507|836508|836509|906083|925713|925714|925715|925716|925717|925718|934902|934903|934904|934905|934906|934907|934908|946766|955951|955952|955953|955954|980210", "text": "Myasthenic syndrome, congenital, 14" }, { - "baseId": "17740|17741|17742|101900|101905|101910|101912|264606|363702|409441|439884|465526|465674|465693|465717|465730|465748|465849|508885|529308|529327|529389|529623|538450|538451|569498|569533|569879|569931|785114", + "upstreamId": "17740|17741|17742|101900|101905|101910|101912|264606|363702|409441|439884|465526|465674|465693|465717|465730|465748|465849|508885|529308|529327|529389|529623|538450|538451|569498|569533|569879|569931|785114", "text": "Epilepsy, childhood absence 6" }, { - "baseId": "17741|17743|17744|17745|22647|31252|99339|101896|101899|101902|101904|101906|101907|101911|132585|134011|134012|134571|140353|140355|140356|140358|141112|141113|141114|141115|141116|141117|141118|141119|177152|190285|193450|194328|195911|201250|201251|201252|201257|201258|201260|201268|201269|201270|201852|201853|201860|201861|201862|215187|223057|224873|236995|237390|242502|242503|242504|242505|242506|242995|242996|242997|242998|259817|259818|259819|260083|264650|359301|359664|362315|363680|363702|364108|365539|365547|368035|368330|369730|374600|374606|374609|374622|377014|391382|391431|391612|401324|401326|401329|401350|401352|401818|401831|401840|401852|401856|402106|402113|402575|402616|402618|403063|403065|403068|406687|409441|413416|426685|438955|440428|440429|440430|440431|440537|440540|440542|441766|441769|441771|441772|441774|445614|446922|447427|447432|447557|447558|447653|447663|447670|447672|447681|447683|447685|447688|447690|447710|447712|447714|447724|447731|448750|449032|454795|454797|454898|454906|454911|454916|454921|454923|455387|455392|464868|464870|464871|464874|464877|464881|464886|464899|464900|464913|464914|464920|464921|464923|464924|464933|464938|464939|464943|464946|464948|464950|464963|464964|464965|464968|464970|464972|464977|464979|464983|464985|464991|464992|464995|464998|465006|465011|465013|465014|465020|465028|465029|465034|465493|465501|465505|465513|465521|465526|465529|465536|465540|465547|465553|465558|465560|465561|465571|465577|465580|465582|465584|465586|465597|465600|465602|465604|465605|465609|465610|465611|465613|465616|465617|465620|465622|465624|465625|465626|465632|465635|465637|465638|465639|465641|465642|465643|465646|465648|465650|465652|465653|465654|465655|465656|465657|465661|465663|465664|465665|465672|465673|465674|465676|465693|465695|465698|465707|465709|465711|465714|465717|465720|465723|465725|465729|465730|465736|465739|465748|465762|465767|465769|465772|465773|465775|465781|465787|465813|465824|465827|465830|465839|465840|465843|465846|465849|465857|465861|465863|465873|465876|465878|465879|465881|465891|465895|465897|465901|465904|465906|465912|465969|465976|465978|465979|466695|466701|466766|466993|466995|467606|468932|469195|469197|469204|469207|469215|488955|515394|515405|515488|515490|515495|515497|515499|515500|515552|515554|516467|516468|516470|516565|516580|516594|520982|521214|521221|521404|529279|529283|529289|529290|529296|529304|529305|529308|529310|529316|529318|529321|529324|529326|529327|529330|529332|529334|529336|529339|529340|529341|529343|529347|529349|529350|529351|529352|529353|529354|529357|529358|529360|529361|529362|529366|529372|529375|529376|529377|529380|529381|529383|529388|529389|529390|529392|529395|529398|529399|529403|529405|529406|529410|529415|529418|529421|529423|529424|529430|529431|529432|529439|529440|529442|529447|529449|529455|529595|529597|529607|529608|529611|529612|529614|529617|529620|529623|529627|529628|529629|529634|529640|529653|529661|529663|529676|529680|529682|529684|529689|529692|529697|529699|529707|529709|529710|529712|529713|529715|529727|529730|529733|529734|529738|529742|529743|529754|529758|529763|529897|529904|529908|529909|529910|529911|529914|529918|529928|529930|529940|529943|529955|529959|529965|529969|529972|529974|529984|529986|529992|529994|529999|530006|530014|530016|530018|530024|530026|530028|530035|530242|530249|530250|530323|530324|530326|530330|530340|530532|530543|530548|530751|531878|531880|531919|531921|531925|531989|531996|532272|532275|538451|556491|556756|556758|556793|556795|556797|557116|557580|557582|557637|558323|558325|558327|558809|558811|559292|559294|560360|560362|563011|563015|563016|565000|567578|567598|567601|567602|567604|567606|567608|567610|567617|567618|567620|567622|567626|567630|567631|567633|567636|567637|567639|567641|567643|567646|567648|567650|567651|567656|567657|567659|567663|567669|568307|568316|568329|568335|569462|569479|569483|569484|569492|569494|569498|569501|569506|569511|569522|569526|569527|569529|569533|569830|569854|569862|569865|569869|569871|569876|569879|569883|569889|569891|569894|569899|569902|569912|569913|569915|569920|569925|569927|569929|569931|569935|569936|569939|569944|569947|569954|569955|569958|569965|569967|569969|570457|570465|571690|571691|573690|573692|573693|573694|573696|573699|573700|573702|573703|573706|573707|573709|574164|574166|574655|576459|576799|577422|577425|577428|577435|577438|577445|579039|579119|627284|627285|627286|627287|627288|627289|627290|627291|627292|628678|628679|628680|628681|628682|633696|633697|633698|633699|633700|643807|643808|643809|643810|643825|643826|643827|643828|643829|643830|643831|643832|643833|643834|643835|643836|643837|643838|643839|643840|643841|643842|643843|643844|643845|643846|643847|643848|643849|643850|643851|643852|643853|643854|643855|643856|643857|643858|643859|643860|643861|643862|643863|643864|643865|643866|643867|643868|643869|643870|643871|643872|643873|643874|643875|643876|643877|643878|643879|643880|643881|643882|643883|643884|643885|643886|643887|643888|643889|643890|643891|643892|643893|643894|643895|643896|643897|643898|643899|643900|644968|644972|644973|644974|644980|644981|644982|644983|644984|646831|646832|646833|646834|646835|646836|646837|646838|646839|650616|650869|652507|652584|652866|652919|652922|653208|653212|653367|668539|684617|684618|684623|684624|684625|684626|684717|685183|685854|685855|686713|686715|688651|688655|688656|688845|688848|690454|693783|693784|693785|693786|693787|693933|695672|695675|696390|696391|696393|696394|696396|696397|703451|703452|703453|703454|703457|703458|703460|703462|703463|703464|703465|703466|703467|703468|703469|703470|703471|703472|703473|703475|703476|703477|703478|703479|703482|703483|703484|703485|703487|703488|703489|703490|703491|703492|707000|707001|714720|714722|714723|714724|714726|714727|714728|714729|714730|714731|715080|718529|718536|718538|718539|726398|726399|726400|726401|726403|726405|726406|726408|726413|726414|726415|726416|726417|726418|731036|731038|739934|739936|739937|739938|739939|739940|739945|739946|741098|744796|744990|745194|749397|754849|754851|754852|754853|754855|754856|754857|754859|754860|754866|754868|754869|754871|754873|754875|754877|754880|754885|760253|760384|761470|761474|765001|770493|770497|770498|770508|770516|770518|770520|770521|770522|770523|770529|770530|770533|770535|770537|771065|771066|771068|776119|776123|776431|777075|778164|778221|778224|778369|778373|779745|779747|779839|780901|782239|785110|785112|785114|785115|785116|785117|785118|785119|785121|785124|785129|785130|786974|788010|788174|791630|792914|793565|797241|797242|818895|818896|819056|819641|820762|820763|820872|820975|820976|821909|821910|821911|821912|823233|823234|823235|823236|823237|823238|823239|823242|823243|823248|823249|823250|824972|824973|824974|824975|824976|830594|830595|830596|830597|842978|842989|842990|842991|842992|842993|842994|842995|842996|842997|842998|842999|843000|843001|843002|843003|843004|843005|843006|843007|843008|843009|843010|843011|843012|843013|843014|843015|843016|843017|843018|843019|843020|843021|843022|843023|843024|843025|843026|843027|843028|843029|843030|843031|843032|843033|843034|843035|843036|843037|843038|843039|843040|843041|843042|843043|843044|843045|843046|843047|843048|843049|843050|843051|843052|843053|843054|843055|843056|843057|843058|843059|843060|843061|843062|843063|843064|843065|843066|843067|844282|844283|844289|844292|844293|844294|844295|846348|846349|846350|846351|846352|846353|846354|850799|851265|851639|851641|851643|851679|851896|852198|852795|852796|852801|921805|921806|921807|921808|921809|922298|923975|923976|923977|923978|923979|923980|923981|927529|927533|927534|927535|927536|927537|927538|927539|927540|927541|927542|927543|927544|927545|927546|927547|927548|927549|927550|927551|927552|927553|927554|927555|927944|927945|927946|930245|930246|930247|930863|930864|930865|930866|932820|932821|932822|932823|932824|937179|937180|937181|937182|937183|937184|937185|937186|937187|937188|937189|937190|937191|937192|937193|937194|937195|937196|937197|937198|937199|937200|937201|937202|937203|937204|937205|937206|937207|937208|937209|937210|937211|937212|937598|937603|937604|937605|937606|938265|938266|940341|940342|940371|941106|941107|941108|941109|941110|941145|941657|941658|941663|942294|944517|944518|944519|944520|944521|944522|949132|949133|949136|949137|949138|949139|949140|949141|949142|949143|949144|949145|949146|949147|949148|949149|949150|949151|949152|949153|949154|949155|949156|949157|949158|949159|949552|949558|949559|949560|949561|949562|950339|950340|950341|950342|954105|957596|957597|957598|957599|957600|957601|957602|957603|957604|957605|957606|957607|957608|957609|957610|957611|957870|957873|957874|959539|960130|960131|960559|960829|960830|960831|964213", + "upstreamId": "17741|17743|17744|17745|22647|31252|99339|101896|101899|101902|101904|101906|101907|101911|132585|134011|134012|134571|140353|140355|140356|140358|141112|141113|141114|141115|141116|141117|141118|141119|177152|190285|193450|194328|195911|201250|201251|201252|201257|201258|201260|201268|201269|201270|201852|201853|201860|201861|201862|215187|223057|224873|236995|237390|242502|242503|242504|242505|242506|242995|242996|242997|242998|259817|259818|259819|260083|264650|359301|359664|362315|363680|363702|364108|365539|365547|368035|368330|369730|374600|374606|374609|374622|377014|391382|391431|391612|401324|401326|401329|401350|401352|401818|401831|401840|401852|401856|402106|402113|402575|402616|402618|403063|403065|403068|406687|409441|413416|426685|438955|440428|440429|440430|440431|440537|440540|440542|441766|441769|441771|441772|441774|445614|446922|447427|447432|447557|447558|447653|447663|447670|447672|447681|447683|447685|447688|447690|447710|447712|447714|447724|447731|448750|449032|454795|454797|454898|454906|454911|454916|454921|454923|455387|455392|464868|464870|464871|464874|464877|464881|464886|464899|464900|464913|464914|464920|464921|464923|464924|464933|464938|464939|464943|464946|464948|464950|464963|464964|464965|464968|464970|464972|464977|464979|464983|464985|464991|464992|464995|464998|465006|465011|465013|465014|465020|465028|465029|465034|465493|465501|465505|465513|465521|465526|465529|465536|465540|465547|465553|465558|465560|465561|465571|465577|465580|465582|465584|465586|465597|465600|465602|465604|465605|465609|465610|465611|465613|465616|465617|465620|465622|465624|465625|465626|465632|465635|465637|465638|465639|465641|465642|465643|465646|465648|465650|465652|465653|465654|465655|465656|465657|465661|465663|465664|465665|465672|465673|465674|465676|465693|465695|465698|465707|465709|465711|465714|465717|465720|465723|465725|465729|465730|465736|465739|465748|465762|465767|465769|465772|465773|465775|465781|465787|465813|465824|465827|465830|465839|465840|465843|465846|465849|465857|465861|465863|465873|465876|465878|465879|465881|465891|465895|465897|465901|465904|465906|465912|465969|465976|465978|465979|466695|466701|466766|466993|466995|467606|468932|469195|469197|469204|469207|469215|488955|515394|515405|515488|515490|515495|515497|515499|515500|515552|515554|516467|516468|516470|516565|516580|516594|520982|521214|521221|521404|529279|529283|529289|529290|529296|529304|529305|529308|529310|529316|529318|529321|529324|529326|529327|529330|529332|529334|529336|529339|529340|529341|529343|529347|529349|529350|529351|529352|529353|529354|529357|529358|529360|529361|529362|529366|529372|529375|529376|529377|529380|529381|529383|529388|529389|529390|529392|529395|529398|529399|529403|529405|529406|529410|529415|529418|529421|529423|529424|529430|529431|529432|529439|529440|529442|529447|529449|529455|529595|529597|529607|529608|529611|529612|529614|529617|529620|529623|529627|529628|529629|529634|529640|529653|529661|529663|529676|529680|529682|529684|529689|529692|529697|529699|529707|529709|529710|529712|529713|529715|529727|529730|529733|529734|529738|529742|529743|529754|529758|529763|529897|529904|529908|529909|529910|529911|529914|529918|529928|529930|529940|529943|529955|529959|529965|529969|529972|529974|529984|529986|529992|529994|529999|530006|530014|530016|530018|530024|530026|530028|530035|530242|530249|530250|530323|530324|530326|530330|530340|530532|530543|530548|530751|531878|531880|531919|531921|531925|531989|531996|532272|532275|538451|556491|556756|556758|556793|556795|556797|557116|557580|557582|557637|558323|558325|558327|558809|558811|559292|559294|560360|560362|563011|563015|563016|565000|567578|567598|567601|567602|567604|567606|567608|567610|567617|567618|567620|567622|567626|567630|567631|567633|567636|567637|567639|567641|567643|567646|567648|567650|567651|567656|567657|567659|567663|567669|568307|568316|568329|568335|569462|569479|569483|569484|569492|569494|569498|569501|569506|569511|569522|569526|569527|569529|569533|569830|569854|569862|569865|569869|569871|569876|569879|569883|569889|569891|569894|569899|569902|569912|569913|569915|569920|569925|569927|569929|569931|569935|569936|569939|569944|569947|569954|569955|569958|569965|569967|569969|570457|570465|571690|571691|573690|573692|573693|573694|573696|573699|573700|573702|573703|573706|573707|573709|574164|574166|574655|576459|576799|577422|577425|577428|577435|577438|577445|579039|579119|627284|627285|627286|627287|627288|627289|627290|627291|627292|628678|628679|628680|628681|628682|633696|633697|633698|633699|633700|643807|643808|643809|643810|643825|643826|643827|643828|643829|643830|643831|643832|643833|643834|643835|643836|643837|643838|643839|643840|643841|643842|643843|643844|643845|643846|643847|643848|643849|643850|643851|643852|643853|643854|643855|643856|643857|643858|643859|643860|643861|643862|643863|643864|643865|643866|643867|643868|643869|643870|643871|643872|643873|643874|643875|643876|643877|643878|643879|643880|643881|643882|643883|643884|643885|643886|643887|643888|643889|643890|643891|643892|643893|643894|643895|643896|643897|643898|643899|643900|644968|644972|644973|644974|644980|644981|644982|644983|644984|646831|646832|646833|646834|646835|646836|646837|646838|646839|650616|650869|652507|652584|652866|652919|652922|653208|653212|653367|668539|684617|684618|684623|684624|684625|684626|684717|685183|685854|685855|686713|686715|688651|688655|688656|688845|688848|690454|693783|693784|693785|693786|693787|693933|695672|695675|696390|696391|696393|696394|696396|696397|703451|703452|703453|703454|703457|703458|703460|703462|703463|703464|703465|703466|703467|703468|703469|703470|703471|703472|703473|703475|703476|703477|703478|703479|703482|703483|703484|703485|703487|703488|703489|703490|703491|703492|707000|707001|714720|714722|714723|714724|714726|714727|714728|714729|714730|714731|715080|718529|718536|718538|718539|726398|726399|726400|726401|726403|726405|726406|726408|726413|726414|726415|726416|726417|726418|731036|731038|739934|739936|739937|739938|739939|739940|739945|739946|741098|744796|744990|745194|749397|754849|754851|754852|754853|754855|754856|754857|754859|754860|754866|754868|754869|754871|754873|754875|754877|754880|754885|760253|760384|761470|761474|765001|770493|770497|770498|770508|770516|770518|770520|770521|770522|770523|770529|770530|770533|770535|770537|771065|771066|771068|776119|776123|776431|777075|778164|778221|778224|778369|778373|779745|779747|779839|780901|782239|785110|785112|785114|785115|785116|785117|785118|785119|785121|785124|785129|785130|786974|788010|788174|791630|792914|793565|797241|797242|818895|818896|819056|819641|820762|820763|820872|820975|820976|821909|821910|821911|821912|823233|823234|823235|823236|823237|823238|823239|823242|823243|823248|823249|823250|824972|824973|824974|824975|824976|830594|830595|830596|830597|842978|842989|842990|842991|842992|842993|842994|842995|842996|842997|842998|842999|843000|843001|843002|843003|843004|843005|843006|843007|843008|843009|843010|843011|843012|843013|843014|843015|843016|843017|843018|843019|843020|843021|843022|843023|843024|843025|843026|843027|843028|843029|843030|843031|843032|843033|843034|843035|843036|843037|843038|843039|843040|843041|843042|843043|843044|843045|843046|843047|843048|843049|843050|843051|843052|843053|843054|843055|843056|843057|843058|843059|843060|843061|843062|843063|843064|843065|843066|843067|844282|844283|844289|844292|844293|844294|844295|846348|846349|846350|846351|846352|846353|846354|850799|851265|851639|851641|851643|851679|851896|852198|852795|852796|852801|921805|921806|921807|921808|921809|922298|923975|923976|923977|923978|923979|923980|923981|927529|927533|927534|927535|927536|927537|927538|927539|927540|927541|927542|927543|927544|927545|927546|927547|927548|927549|927550|927551|927552|927553|927554|927555|927944|927945|927946|930245|930246|930247|930863|930864|930865|930866|932820|932821|932822|932823|932824|937179|937180|937181|937182|937183|937184|937185|937186|937187|937188|937189|937190|937191|937192|937193|937194|937195|937196|937197|937198|937199|937200|937201|937202|937203|937204|937205|937206|937207|937208|937209|937210|937211|937212|937598|937603|937604|937605|937606|938265|938266|940341|940342|940371|941106|941107|941108|941109|941110|941145|941657|941658|941663|942294|944517|944518|944519|944520|944521|944522|949132|949133|949136|949137|949138|949139|949140|949141|949142|949143|949144|949145|949146|949147|949148|949149|949150|949151|949152|949153|949154|949155|949156|949157|949158|949159|949552|949558|949559|949560|949561|949562|950339|950340|950341|950342|954105|957596|957597|957598|957599|957600|957601|957602|957603|957604|957605|957606|957607|957608|957609|957610|957611|957870|957873|957874|959539|960130|960131|960559|960829|960830|960831|964213", "text": "Idiopathic generalized epilepsy" }, { - "baseId": "17741|17743|17744|17745|101896|101899|101902|101904|101906|101907|101911|177152|187648|223057|237390|260083|264606|264650|363680|363702|363702|364108|374600|374606|374609|374622|377014|409441|413416|438955|441766|441769|441771|441772|441774|464868|464870|464871|464874|464877|464881|464886|464899|464900|464913|464914|464920|464921|464923|464924|464933|464938|464939|464943|464946|464948|464950|464963|464964|464965|464968|464970|464972|464977|464979|464983|464985|464991|464992|464995|464998|465006|465011|465013|465014|465020|465028|465029|465034|465493|465501|465505|465513|465521|465526|465529|465536|465540|465547|465553|465558|465560|465561|465571|465577|465580|465582|465584|465586|465597|465600|465602|465604|465605|465609|465610|465611|465613|465616|465617|465620|465622|465624|465625|465626|465632|465635|465637|465638|465639|465641|465642|465643|465646|465648|465650|465652|465653|465654|465655|465656|465657|465661|465663|465664|465665|465672|465673|465674|465676|465693|465693|465695|465698|465707|465709|465711|465714|465717|465717|465720|465723|465725|465729|465730|465736|465739|465748|465762|465767|465769|465772|465773|465775|465781|465787|465813|465824|465827|465830|465839|465840|465843|465846|465849|465849|465857|465861|465863|465873|465876|465878|465879|465881|465891|465895|465897|465901|465904|465906|465912|529279|529283|529289|529290|529296|529304|529305|529308|529308|529310|529316|529318|529321|529324|529326|529327|529327|529330|529332|529334|529336|529339|529340|529341|529343|529347|529349|529350|529351|529352|529353|529354|529357|529358|529360|529361|529362|529366|529372|529375|529376|529377|529380|529381|529383|529388|529389|529389|529390|529392|529395|529398|529399|529403|529405|529406|529410|529415|529418|529421|529423|529424|529430|529431|529432|529439|529440|529442|529447|529449|529455|529595|529597|529607|529608|529611|529612|529614|529617|529620|529623|529623|529627|529628|529629|529634|529640|529653|529661|529663|529676|529680|529682|529684|529689|529692|529697|529699|529707|529709|529710|529712|529713|529715|529727|529730|529733|529734|529738|529742|529743|529754|529758|529763|529897|529904|529908|529909|529910|529911|529914|529918|529928|529930|529940|529943|529955|529959|529965|529969|529972|529974|529984|529986|529992|529994|529999|530006|530014|530016|530018|530024|530026|530028|530035|538451|567578|567598|567601|567602|567604|567606|567608|567610|567617|567618|567620|567622|567626|567630|567631|567633|567636|567637|567639|567641|567643|567646|567648|567650|567651|567656|567657|567659|567663|567669|569462|569479|569483|569484|569492|569494|569498|569498|569501|569506|569511|569522|569526|569527|569529|569533|569533|569854|569862|569865|569869|569871|569876|569879|569879|569883|569889|569891|569894|569899|569902|569912|569913|569915|569920|569925|569927|569929|569931|569931|569935|569936|569939|569944|569947|569954|569955|569958|569965|569967|569969|573690|573692|573693|573694|573696|573699|573700|573702|573703|573706|573707|573709|577422|577425|577428|577435|577438|577445|643807|643808|643809|643810|643825|643826|643827|643828|643829|643830|643831|643832|643833|643834|643835|643836|643837|643838|643839|643840|643841|643842|643843|643844|643845|643846|643847|643848|643849|643850|643851|643852|643853|643854|643855|643856|643857|643858|643859|643860|643861|643862|643863|643864|643865|643866|643867|643868|643869|643870|643871|643872|643873|643874|643875|643876|643877|643878|643879|643880|643881|643882|643883|643884|643885|643886|643887|643888|643889|643890|643891|643892|643893|643894|643895|643896|643897|643898|643899|643900|652507|652919|652922|653208|653212|668539|693783|693784|693785|693786|693787|695672|695675|703451|703452|703453|703454|703457|703458|703460|703462|703463|703464|703465|703466|703467|703468|703469|703470|703471|703472|703473|703475|703476|703477|703478|703479|703482|703483|703484|703485|703487|703488|703489|703490|703491|703492|714720|714722|714723|714724|714726|714727|714728|714729|714730|714731|726398|726399|726400|726401|726403|726405|726406|726408|726413|726414|726415|726416|726417|726418|731036|731038|739934|739936|739937|739938|739939|739940|739945|739946|744796|745194|754849|754851|754852|754853|754855|754856|754857|754859|754860|754866|754868|754869|754871|754873|754875|754877|754880|754885|760253|760384|770493|770497|770498|770508|770516|770518|770520|770521|770522|770523|770529|770530|770533|770535|770537|776119|776123|778164|778221|778224|778369|778373|779745|779747|779839|785110|785112|785114|785115|785116|785117|785118|785119|785121|785124|785129|785130|788010|788174|793565|797241|797242|820762|820763|820975|842978|842989|842990|842991|842992|842993|842994|842995|842996|842997|842998|842999|843000|843001|843002|843003|843004|843005|843006|843007|843008|843009|843010|843011|843012|843013|843014|843015|843016|843017|843018|843019|843020|843021|843022|843023|843024|843025|843026|843027|843028|843029|843030|843031|843032|843033|843034|843035|843036|843037|843038|843039|843040|843041|843042|843043|843044|843045|843046|843047|843048|843049|843050|843051|843052|843053|843054|843055|843056|843057|843058|843059|843060|843061|843062|843063|843064|843065|843066|843067|851639|851641|851643|852795|852796|927529|927533|927534|927535|927536|927537|927538|927539|927540|927541|927542|927543|927544|927545|927546|927547|927548|927549|927550|927551|927552|927553|927554|927555|937179|937180|937181|937182|937183|937184|937185|937186|937187|937188|937189|937190|937191|937192|937193|937194|937195|937196|937197|937198|937199|937200|937201|937202|937203|937204|937205|937206|937207|937208|937209|937210|937211|937212|940341|940342|941106|941107|941108|941109|941110|949132|949133|949136|949137|949138|949139|949140|949141|949142|949143|949144|949145|949146|949147|949148|949149|949150|949151|949152|949153|949154|949155|949156|949157|949158|949159|957596|957597|957598|957599|957600|957601|957602|957603|957604|957605|957606|957607|957608|957609|957610|957611|960130|960131|960829|960830|960831", + "upstreamId": "17741|17743|17744|17745|101896|101899|101902|101904|101906|101907|101911|177152|187648|223057|237390|260083|264606|264650|363680|363702|363702|364108|374600|374606|374609|374622|377014|409441|413416|438955|441766|441769|441771|441772|441774|464868|464870|464871|464874|464877|464881|464886|464899|464900|464913|464914|464920|464921|464923|464924|464933|464938|464939|464943|464946|464948|464950|464963|464964|464965|464968|464970|464972|464977|464979|464983|464985|464991|464992|464995|464998|465006|465011|465013|465014|465020|465028|465029|465034|465493|465501|465505|465513|465521|465526|465529|465536|465540|465547|465553|465558|465560|465561|465571|465577|465580|465582|465584|465586|465597|465600|465602|465604|465605|465609|465610|465611|465613|465616|465617|465620|465622|465624|465625|465626|465632|465635|465637|465638|465639|465641|465642|465643|465646|465648|465650|465652|465653|465654|465655|465656|465657|465661|465663|465664|465665|465672|465673|465674|465676|465693|465693|465695|465698|465707|465709|465711|465714|465717|465717|465720|465723|465725|465729|465730|465736|465739|465748|465762|465767|465769|465772|465773|465775|465781|465787|465813|465824|465827|465830|465839|465840|465843|465846|465849|465849|465857|465861|465863|465873|465876|465878|465879|465881|465891|465895|465897|465901|465904|465906|465912|529279|529283|529289|529290|529296|529304|529305|529308|529308|529310|529316|529318|529321|529324|529326|529327|529327|529330|529332|529334|529336|529339|529340|529341|529343|529347|529349|529350|529351|529352|529353|529354|529357|529358|529360|529361|529362|529366|529372|529375|529376|529377|529380|529381|529383|529388|529389|529389|529390|529392|529395|529398|529399|529403|529405|529406|529410|529415|529418|529421|529423|529424|529430|529431|529432|529439|529440|529442|529447|529449|529455|529595|529597|529607|529608|529611|529612|529614|529617|529620|529623|529623|529627|529628|529629|529634|529640|529653|529661|529663|529676|529680|529682|529684|529689|529692|529697|529699|529707|529709|529710|529712|529713|529715|529727|529730|529733|529734|529738|529742|529743|529754|529758|529763|529897|529904|529908|529909|529910|529911|529914|529918|529928|529930|529940|529943|529955|529959|529965|529969|529972|529974|529984|529986|529992|529994|529999|530006|530014|530016|530018|530024|530026|530028|530035|538451|567578|567598|567601|567602|567604|567606|567608|567610|567617|567618|567620|567622|567626|567630|567631|567633|567636|567637|567639|567641|567643|567646|567648|567650|567651|567656|567657|567659|567663|567669|569462|569479|569483|569484|569492|569494|569498|569498|569501|569506|569511|569522|569526|569527|569529|569533|569533|569854|569862|569865|569869|569871|569876|569879|569879|569883|569889|569891|569894|569899|569902|569912|569913|569915|569920|569925|569927|569929|569931|569931|569935|569936|569939|569944|569947|569954|569955|569958|569965|569967|569969|573690|573692|573693|573694|573696|573699|573700|573702|573703|573706|573707|573709|577422|577425|577428|577435|577438|577445|643807|643808|643809|643810|643825|643826|643827|643828|643829|643830|643831|643832|643833|643834|643835|643836|643837|643838|643839|643840|643841|643842|643843|643844|643845|643846|643847|643848|643849|643850|643851|643852|643853|643854|643855|643856|643857|643858|643859|643860|643861|643862|643863|643864|643865|643866|643867|643868|643869|643870|643871|643872|643873|643874|643875|643876|643877|643878|643879|643880|643881|643882|643883|643884|643885|643886|643887|643888|643889|643890|643891|643892|643893|643894|643895|643896|643897|643898|643899|643900|652507|652919|652922|653208|653212|668539|693783|693784|693785|693786|693787|695672|695675|703451|703452|703453|703454|703457|703458|703460|703462|703463|703464|703465|703466|703467|703468|703469|703470|703471|703472|703473|703475|703476|703477|703478|703479|703482|703483|703484|703485|703487|703488|703489|703490|703491|703492|714720|714722|714723|714724|714726|714727|714728|714729|714730|714731|726398|726399|726400|726401|726403|726405|726406|726408|726413|726414|726415|726416|726417|726418|731036|731038|739934|739936|739937|739938|739939|739940|739945|739946|744796|745194|754849|754851|754852|754853|754855|754856|754857|754859|754860|754866|754868|754869|754871|754873|754875|754877|754880|754885|760253|760384|770493|770497|770498|770508|770516|770518|770520|770521|770522|770523|770529|770530|770533|770535|770537|776119|776123|778164|778221|778224|778369|778373|779745|779747|779839|785110|785112|785114|785115|785116|785117|785118|785119|785121|785124|785129|785130|788010|788174|793565|797241|797242|820762|820763|820975|842978|842989|842990|842991|842992|842993|842994|842995|842996|842997|842998|842999|843000|843001|843002|843003|843004|843005|843006|843007|843008|843009|843010|843011|843012|843013|843014|843015|843016|843017|843018|843019|843020|843021|843022|843023|843024|843025|843026|843027|843028|843029|843030|843031|843032|843033|843034|843035|843036|843037|843038|843039|843040|843041|843042|843043|843044|843045|843046|843047|843048|843049|843050|843051|843052|843053|843054|843055|843056|843057|843058|843059|843060|843061|843062|843063|843064|843065|843066|843067|851639|851641|851643|852795|852796|927529|927533|927534|927535|927536|927537|927538|927539|927540|927541|927542|927543|927544|927545|927546|927547|927548|927549|927550|927551|927552|927553|927554|927555|937179|937180|937181|937182|937183|937184|937185|937186|937187|937188|937189|937190|937191|937192|937193|937194|937195|937196|937197|937198|937199|937200|937201|937202|937203|937204|937205|937206|937207|937208|937209|937210|937211|937212|940341|940342|941106|941107|941108|941109|941110|949132|949133|949136|949137|949138|949139|949140|949141|949142|949143|949144|949145|949146|949147|949148|949149|949150|949151|949152|949153|949154|949155|949156|949157|949158|949159|957596|957597|957598|957599|957600|957601|957602|957603|957604|957605|957606|957607|957608|957609|957610|957611|960130|960131|960829|960830|960831", "text": "Hyperaldosteronism, familial, type IV" }, { - "baseId": "17744|17745", + "upstreamId": "17744|17745", "text": "Epilepsy, idiopathic generalized 6" }, { - "baseId": "17747|17748|17749|17750|17751|39644|40201|190909|191727|191728|192548|192549|194520|271610|273897|404803|461255|461445|461448|488701|512851|526321|526357|526360|526362|526570|526836|526847|526848|526849|564793|564795|565944|565945|565948|565955|567407|570766|570767|614361|614362|614363|640236|640237|640238|640239|640240|640241|640242|640243|640244|640245|640246|640247|652554|701856|712988|724554|724555|724556|724557|724558|724559|730779|730780|738093|744726|752757|760075|760079|768545|775860|779700|784051|838679|838680|838681|838682|838683|838684|838685|838686|838687|838688|838689|838690|838691|838692|838693|838694|926311|926312|926313|926314|935650|935651|935652|935653|935654|935655|935656|935657|941004|947552|947553|947554|947555|947556|947557|947558|960001|960753", + "upstreamId": "17747|17748|17749|17750|17751|39644|40201|190909|191727|191728|192548|192549|194520|271610|273897|404803|461255|461445|461448|488701|512851|526321|526357|526360|526362|526570|526836|526847|526848|526849|564793|564795|565944|565945|565948|565955|567407|570766|570767|614361|614362|614363|640236|640237|640238|640239|640240|640241|640242|640243|640244|640245|640246|640247|652554|701856|712988|724554|724555|724556|724557|724558|724559|730779|730780|738093|744726|752757|760075|760079|768545|775860|779700|784051|838679|838680|838681|838682|838683|838684|838685|838686|838687|838688|838689|838690|838691|838692|838693|838694|926311|926312|926313|926314|935650|935651|935652|935653|935654|935655|935656|935657|941004|947552|947553|947554|947555|947556|947557|947558|960001|960753", "text": "Leukocyte adhesion deficiency, type III" }, { - "baseId": "17752|17753|17754|17755|17756|17757|225892|225893|225894|225895|225896|225897|225898|225899|225900|225901|225902|225903|225904|225905|225906|225907|225908|225909|225910|225911|225912|225913|225914|257380|257381|257382|257383|257384|257385|336138|336140|336144|336152|336153|336155|336156|336159|336173|336175|336178|336180|336181|336195|336201|336202|336205|336210|336212|336216|336220|336223|345875|345878|345879|345881|345887|345893|345894|345897|345899|345912|345913|345921|345922|345924|345926|345930|345932|345933|345934|345938|345939|345942|345943|345946|345947|345950|345953|345955|345960|350299|350302|350303|350306|350307|350310|350311|350316|350317|350319|350320|350322|350325|350327|350329|350330|350332|350337|350338|350339|350340|350341|350344|350345|350348|350349|351323|351325|351327|351328|351332|351333|351335|351336|351337|351338|351340|351345|351346|351349|351350|351353|351354|351357|351358|351361|351362|351365|410782|717091|728759|728760|886463|886464|886465|886466|886467|886468|886469|886470|886471|886472|886473|886474|886475|886476|886477|886478|886479|886480|886481|886482|886483|886484|886485|886486|886487|886488|886489|886490|886491|886492|886493|886494|886495|886496|886497|886498|886499|886500|886501|886502|886503|886504|886505|886506|886507|887480|887481|887482", + "upstreamId": "17752|17753|17754|17755|17756|17757|225892|225893|225894|225895|225896|225897|225898|225899|225900|225901|225902|225903|225904|225905|225906|225907|225908|225909|225910|225911|225912|225913|225914|257380|257381|257382|257383|257384|257385|336138|336140|336144|336152|336153|336155|336156|336159|336173|336175|336178|336180|336181|336195|336201|336202|336205|336210|336212|336216|336220|336223|345875|345878|345879|345881|345887|345893|345894|345897|345899|345912|345913|345921|345922|345924|345926|345930|345932|345933|345934|345938|345939|345942|345943|345946|345947|345950|345953|345955|345960|350299|350302|350303|350306|350307|350310|350311|350316|350317|350319|350320|350322|350325|350327|350329|350330|350332|350337|350338|350339|350340|350341|350344|350345|350348|350349|351323|351325|351327|351328|351332|351333|351335|351336|351337|351338|351340|351345|351346|351349|351350|351353|351354|351357|351358|351361|351362|351365|410782|717091|728759|728760|886463|886464|886465|886466|886467|886468|886469|886470|886471|886472|886473|886474|886475|886476|886477|886478|886479|886480|886481|886482|886483|886484|886485|886486|886487|886488|886489|886490|886491|886492|886493|886494|886495|886496|886497|886498|886499|886500|886501|886502|886503|886504|886505|886506|886507|887480|887481|887482", "text": "Kindler's syndrome" }, { - "baseId": "17758|17759|17760|17761|17762|17763|17764|17765|237228|331112|331113|331116|331120|331122|331124|331134|331139|331141|331145|331147|331151|341360|341368|341369|341372|341374|341376|341377|341379|341383|341386|341393|341394|341395|341402|341403|341405|341413|341414|346881|346884|346892|346896|346897|346900|346902|346903|348145|348146|348150|348151|348154|348157|348159|348161|348163|348164|348166|348168|348170|348171|348172|348173|576181|620618|620619|704575|715937|715938|715939|715940|727695|727696|727697|727700|741336|741338|879113|879114|879115|879116|879117|879118|879119|879120|879121|879122|879123|879124|879125|879126|879127|879128|879129|879130|879131|879132|879133|879134|879135|879136|879137|879138|879139|880648|880649|880650|880651", + "upstreamId": "17758|17759|17760|17761|17762|17763|17764|17765|237228|331112|331113|331116|331120|331122|331124|331134|331139|331141|331145|331147|331151|341360|341368|341369|341372|341374|341376|341377|341379|341383|341386|341393|341394|341395|341402|341403|341405|341413|341414|346881|346884|346892|346896|346897|346900|346902|346903|348145|348146|348150|348151|348154|348157|348159|348161|348163|348164|348166|348168|348170|348171|348172|348173|576181|620618|620619|704575|715937|715938|715939|715940|727695|727696|727697|727700|741336|741338|879113|879114|879115|879116|879117|879118|879119|879120|879121|879122|879123|879124|879125|879126|879127|879128|879129|879130|879131|879132|879133|879134|879135|879136|879137|879138|879139|880648|880649|880650|880651", "text": "Hypotrichosis 6" }, { - "baseId": "17766|17767|17768|17769|17770|17771|17772|17773|17774|17775|17776|17777|17778|17779|17788|28209|28212|104576|104580|104603|104607|105565|105567|105569|105571|105573|105574|105575|105580|105582|105598|105616|105621|105624|105624|105625|105628|105632|105641|105644|105653|105655|105658|171760|177398|177522|190829|190830|259990|273553|291539|314401|314403|314405|314406|314422|314440|321031|321035|321036|321037|321044|321045|321046|321067|321070|327121|327122|327129|327135|327145|327146|327159|327160|327164|327166|327167|327195|328206|328207|328208|328209|328210|372472|432105|432200|437896|488171|535223|535224|535225|538935|550222|612093|612292|620407|623870|623871|623872|623873|623874|623875|791145|800516|800565|800566|800567|800569|801355|801390|801402|801427|801428|856446|856460|868173|868174|868175|868176|868177|868178|868179|868180|868665|919370|919371|919372|919373|943224|962009|962018", + "upstreamId": "17766|17767|17768|17769|17770|17771|17772|17773|17774|17775|17776|17777|17778|17779|17788|28209|28212|104576|104580|104603|104607|105565|105567|105569|105571|105573|105574|105575|105580|105582|105598|105616|105621|105624|105624|105625|105628|105632|105641|105644|105653|105655|105658|171760|177398|177522|190829|190830|259990|273553|291539|314401|314403|314405|314406|314422|314440|321031|321035|321036|321037|321044|321045|321046|321067|321070|327121|327122|327129|327135|327145|327146|327159|327160|327164|327166|327167|327195|328206|328207|328208|328209|328210|372472|432105|432200|437896|488171|535223|535224|535225|538935|550222|612093|612292|620407|623870|623871|623872|623873|623874|623875|791145|800516|800565|800566|800567|800569|801355|801390|801402|801427|801428|856446|856460|868173|868174|868175|868176|868177|868178|868179|868180|868665|919370|919371|919372|919373|943224|962009|962018", "text": "Vitelliform macular dystrophy type 2" }, { - "baseId": "17779|17780|17781|17782|102552|105614|105615|105624|408395|418961|497622|513092|513093|513094|513095|590304|818292", + "upstreamId": "17779|17780|17781|17782|102552|105614|105615|105624|408395|418961|497622|513092|513093|513094|513095|590304|818292", "text": "Bestrophinopathy, autosomal recessive" }, { - "baseId": "17779|18401|22919|22923|22924|22942|22952|101232|101480|101481|104927|104930|104931|104938|104954|104974|104990|105042|105058|105068|105082|105135|105147|105160|105200|105279|105285|105296|105297|105302|105329|105330|105332|105333|105337|105343|105380|105381|105383|105387|105565|105569|105571|105573|105575|105678|105685|105686|105690|105695|105697|139937|139938|139942|139944|152793|172769|177019|177056|177282|177450|177472|177923|190742|190829|190830|191153|191424|191525|192532|193625|193777|194353|194617|195036|196223|237686|237695|237696|237704|249423|250031|250033|255338|256338|265947|266046|267623|267624|268054|271417|276617|276618|276621|276622|276623|276624|276625|276627|276628|276629|276630|276631|276634|276635|276881|276882|276883|276888|276892|276893|276894|277463|277475|277477|277478|277540|277541|277551|277559|277562|278313|278929|278958|279100|279548|279565|280392|280397|280424|280712|280725|281153|281326|281328|281329|281332|281340|281341|281342|281346|281351|281359|281361|281367|281368|281373|281375|281378|281381|281972|281973|281986|281988|281995|281996|282000|282001|282006|282031|282032|282043|282148|282154|282159|282951|283241|283246|283260|283261|283265|283266|283281|283282|283286|283290|283291|283298|283299|283386|283388|283391|283392|283399|283400|283402|283415|283422|283423|283434|283437|283438|283441|283442|283447|283587|283765|283784|284121|285910|286007|286017|286032|286033|286044|286409|286686|286921|286935|287717|287855|287885|287887|287942|287951|288619|288859|289343|289346|290094|291462|291493|291494|291495|291496|291651|291665|291677|292542|292592|292712|293468|293469|293947|293974|294863|295405|296247|296248|296253|296450|296459|296467|297351|297355|297385|297388|297538|297540|297567|298532|298533|298537|298539|298544|298556|298639|298693|299220|300866|300868|300870|300876|300883|300885|300886|300888|300901|301039|301122|301128|302078|302103|302117|302132|302167|302350|302355|302390|302595|303842|303843|305262|305263|305276|305428|305438|305439|305455|305459|305460|305462|305465|305468|305534|305546|305583|305594|305661|307247|308474|308490|308521|308528|310098|310128|310374|314401|314405|314406|314422|314440|315482|321021|321023|321024|321027|321031|321035|321046|321067|321070|322171|322175|323008|323250|323251|323259|323260|323266|323267|323270|323277|323283|323284|323473|325962|325963|325972|326042|327121|327122|327129|327164|327167|327195|328206|328209|328210|329401|329412|329414|329418|329421|329426|329430|329440|329441|329442|329443|329444|329449|329455|330117|330120|330122|330123|332935|332936|332942|332943|332946|332951|332952|332960|332962|332965|332968|333163|335089|335709|335712|335720|336631|336633|336639|336640|336642|338598|338600|338603|339690|339707|339715|339719|339722|339724|339732|339733|339736|339737|339740|339742|339743|339806|339813|339814|339821|339823|340826|341239|341242|341243|341247|341248|341375|342032|342035|343539|345426|345432|345436|345437|345443|345449|345454|345456|345458|345462|345465|345466|346151|346447|346798|346799|346800|346801|346803|346805|346816|346818|346819|347440|347441|347780|353063|353346|353347|353348|353349|353350|353450|353451|353549|725770|794254|872095|872098|872100", + "upstreamId": "17779|18401|22919|22923|22924|22942|22952|101232|101480|101481|104927|104930|104931|104938|104954|104974|104990|105042|105058|105068|105082|105135|105147|105160|105200|105279|105285|105296|105297|105302|105329|105330|105332|105333|105337|105343|105380|105381|105383|105387|105565|105569|105571|105573|105575|105678|105685|105686|105690|105695|105697|139937|139938|139942|139944|152793|172769|177019|177056|177282|177450|177472|177923|190742|190829|190830|191153|191424|191525|192532|193625|193777|194353|194617|195036|196223|237686|237695|237696|237704|249423|250031|250033|255338|256338|265947|266046|267623|267624|268054|271417|276617|276618|276621|276622|276623|276624|276625|276627|276628|276629|276630|276631|276634|276635|276881|276882|276883|276888|276892|276893|276894|277463|277475|277477|277478|277540|277541|277551|277559|277562|278313|278929|278958|279100|279548|279565|280392|280397|280424|280712|280725|281153|281326|281328|281329|281332|281340|281341|281342|281346|281351|281359|281361|281367|281368|281373|281375|281378|281381|281972|281973|281986|281988|281995|281996|282000|282001|282006|282031|282032|282043|282148|282154|282159|282951|283241|283246|283260|283261|283265|283266|283281|283282|283286|283290|283291|283298|283299|283386|283388|283391|283392|283399|283400|283402|283415|283422|283423|283434|283437|283438|283441|283442|283447|283587|283765|283784|284121|285910|286007|286017|286032|286033|286044|286409|286686|286921|286935|287717|287855|287885|287887|287942|287951|288619|288859|289343|289346|290094|291462|291493|291494|291495|291496|291651|291665|291677|292542|292592|292712|293468|293469|293947|293974|294863|295405|296247|296248|296253|296450|296459|296467|297351|297355|297385|297388|297538|297540|297567|298532|298533|298537|298539|298544|298556|298639|298693|299220|300866|300868|300870|300876|300883|300885|300886|300888|300901|301039|301122|301128|302078|302103|302117|302132|302167|302350|302355|302390|302595|303842|303843|305262|305263|305276|305428|305438|305439|305455|305459|305460|305462|305465|305468|305534|305546|305583|305594|305661|307247|308474|308490|308521|308528|310098|310128|310374|314401|314405|314406|314422|314440|315482|321021|321023|321024|321027|321031|321035|321046|321067|321070|322171|322175|323008|323250|323251|323259|323260|323266|323267|323270|323277|323283|323284|323473|325962|325963|325972|326042|327121|327122|327129|327164|327167|327195|328206|328209|328210|329401|329412|329414|329418|329421|329426|329430|329440|329441|329442|329443|329444|329449|329455|330117|330120|330122|330123|332935|332936|332942|332943|332946|332951|332952|332960|332962|332965|332968|333163|335089|335709|335712|335720|336631|336633|336639|336640|336642|338598|338600|338603|339690|339707|339715|339719|339722|339724|339732|339733|339736|339737|339740|339742|339743|339806|339813|339814|339821|339823|340826|341239|341242|341243|341247|341248|341375|342032|342035|343539|345426|345432|345436|345437|345443|345449|345454|345456|345458|345462|345465|345466|346151|346447|346798|346799|346800|346801|346803|346805|346816|346818|346819|347440|347441|347780|353063|353346|353347|353348|353349|353350|353450|353451|353549|725770|794254|872095|872098|872100", "text": "Retinitis Pigmentosa, Recessive" }, { - "baseId": "17779|17783|17785|17790|105565|105567|105569|105571|105573|105574|105575|105580|105582|105615|105616|105621|105624|105632|177522|190829|190830|273553|314401|314403|314405|314406|314422|314440|321031|321035|321036|321037|321044|321045|321046|321067|321070|327121|327122|327129|327135|327145|327146|327159|327160|327164|327166|327167|327195|328206|328207|328208|328209|328210|372472|868173|868174|868175|868176|868177|868178|868179|868180|868665", + "upstreamId": "17779|17783|17785|17790|105565|105567|105569|105571|105573|105574|105575|105580|105582|105615|105616|105621|105624|105632|177522|190829|190830|273553|314401|314403|314405|314406|314422|314440|321031|321035|321036|321037|321044|321045|321046|321067|321070|327121|327122|327129|327135|327145|327146|327159|327160|327164|327166|327167|327195|328206|328207|328208|328209|328210|372472|868173|868174|868175|868176|868177|868178|868179|868180|868665", "text": "Vitreoretinochoroidopathy" }, { - "baseId": "17779|20649|22918|22919|22921|22927|22931|22932|22933|22937|22940|22943|22946|22950|22952|28206|28209|28212|28216|28217|28218|28222|98774|98777|104556|104558|104561|104582|104593|104603|104605|104611|104612|104942|104955|104976|105009|105014|105024|105081|105172|105190|105192|105200|105210|105219|105220|105256|105264|105274|105279|105287|105292|105292|105320|105327|105357|152788|177398|190248|192224|237651|237655|237658|237670|237685|237694|267624|273547|405254|406868|406870|413234|413712|431613|431618|431634|431694|431695|511211|543956|551504|612550|623247|623813|623814|623815|623817|623818|623819|623820|623821|623822|623824|623851|623876|623896|623898|623922|623948|623954|623955|623956|623984|623991|624029|624034|672055|672067|672072|691989|790017|794733|800450|800452|800453|800455|800456|800458|800459|800460|800461|800462|800463|800464|800685|800697|801310|801314|801319|801327|801329|801386|801502|831959|856454|856459|856470|905881|933337|940038|945035|945036|962010|962014|962015|962017|962018|962020|962022|962025|962026|962027|962028", + "upstreamId": "17779|20649|22918|22919|22921|22927|22931|22932|22933|22937|22940|22943|22946|22950|22952|28206|28209|28212|28216|28217|28218|28222|98774|98777|104556|104558|104561|104582|104593|104603|104605|104611|104612|104942|104955|104976|105009|105014|105024|105081|105172|105190|105192|105200|105210|105219|105220|105256|105264|105274|105279|105287|105292|105292|105320|105327|105357|152788|177398|190248|192224|237651|237655|237658|237670|237685|237694|267624|273547|405254|406868|406870|413234|413712|431613|431618|431634|431694|431695|511211|543956|551504|612550|623247|623813|623814|623815|623817|623818|623819|623820|623821|623822|623824|623851|623876|623896|623898|623922|623948|623954|623955|623956|623984|623991|624029|624034|672055|672067|672072|691989|790017|794733|800450|800452|800453|800455|800456|800458|800459|800460|800461|800462|800463|800464|800685|800697|801310|801314|801319|801327|801329|801386|801502|831959|856454|856459|856470|905881|933337|940038|945035|945036|962010|962014|962015|962017|962018|962020|962022|962025|962026|962027|962028", "text": "Stargardt disease" }, { - "baseId": "17784", + "upstreamId": "17784", "text": "Microcornea, rod-cone dystrophy, cataract, and posterior staphyloma 2" }, { - "baseId": "17786|17787|17788|17789|105624", + "upstreamId": "17786|17787|17788|17789|105624", "text": "Retinitis pigmentosa 50" }, { - "baseId": "17791|17795|17796", + "upstreamId": "17791|17795|17796", "text": "Osteopoikilosis" }, { - "baseId": "17792|17793|17796|17797|268449|271611|273660|318314|318315|318320|318322|318328|318329|318330|318332|326356|326358|326359|326362|326364|326365|326372|326373|326387|326388|326389|326390|326391|332644|332652|332656|332662|332663|332676|332677|332680|332681|332682|332686|332688|332691|332694|332699|334243|334258|334259|334273|334275|334277|334278|334282|334284|334298|334299|334306|493084|583118|588792|611979|612097|620456|702470|730881|738829|870315|870316|870317|870318|870319|870320|870321|870322|870323|870324|870325|870326|870327|870328|870329|870330|870331|870332|870333|870334|870335|870336|870337|870338|870339|870340|919464", + "upstreamId": "17792|17793|17796|17797|268449|271611|273660|318314|318315|318320|318322|318328|318329|318330|318332|326356|326358|326359|326362|326364|326365|326372|326373|326387|326388|326389|326390|326391|332644|332652|332656|332662|332663|332676|332677|332680|332681|332682|332686|332688|332691|332694|332699|334243|334258|334259|334273|334275|334277|334278|334282|334284|334298|334299|334306|493084|583118|588792|611979|612097|620456|702470|730881|738829|870315|870316|870317|870318|870319|870320|870321|870322|870323|870324|870325|870326|870327|870328|870329|870330|870331|870332|870333|870334|870335|870336|870337|870338|870339|870340|919464", "text": "Dermatofibrosis lenticularis disseminata" }, { - "baseId": "17794|17798", + "upstreamId": "17794|17798", "text": "Osteopoikilosis with melorheostosis" }, { - "baseId": "17798|17799", + "upstreamId": "17798|17799", "text": "Dermatofibrosis lenticularis disseminata, isolated" }, { - "baseId": "17800", + "upstreamId": "17800", "text": "Mucolipidosis III alpha/beta, atypical" }, { - "baseId": "17800|17801|17803|17803|17807|17807|17808|17808|17810|17810|17812|17812|17813|17813|17814|46972|46972|46973|46975|46976|46988|46988|46990|46991|46992|47620|47620|47621|47622|47623|47623|47624|47625|47625|47629|47631|47632|47632|47634|47636|47637|47638|47638|47641|47643|47644|47652|47653|47656|47658|47660|47661|47661|47662|47662|47663|47664|47665|47668|47674|47674|47676|47677|47677|47678|47681|47682|47684|47685|47686|47689|78998|78998|102012|102013|102015|102016|106602|106603|177007|177007|177753|177753|190902|191427|191428|191429|191950|192537|192690|228217|228217|237191|237191|254386|254387|265256|265256|265257|265257|268432|315728|315729|315732|315734|315736|315737|315739|315740|315740|315743|315743|315746|315746|315752|315752|315753|315764|315766|315771|322722|322723|322724|322744|322745|322746|322747|322756|322758|322763|322763|322771|322771|322774|322809|322809|322824|322824|322825|322825|322836|322837|322837|322841|322841|322842|322843|328856|328861|328863|328864|328865|328865|328879|328879|328880|330054|330063|330075|330096|330100|330107|330107|330109|330113|330113|330116|330124|372495|384451|384452|384453|384454|384455|384456|384457|384458|384459|384460|384462|384463|384464|384465|384466|384467|384468|384469|487318|487325|487325|511952|526633|546531|546535|546537|546540|546549|546554|546560|546561|546566|546750|546752|546753|546774|546779|546782|546788|546799|546876|546878|546885|546887|546888|547081|547083|547085|547086|547097|547099|547108|547118|547120|547121|547126|549690|549691|549693|549693|549698|549698|567619|567642|571167|640580|640581|640582|652195|652278|672258|713281|713282|713282|713283|713283|724837|724838|724839|730818|738383|738386|738386|738387|738387|738389|738390|738391|738392|738392|738393|744704|753040|753041|753042|753045|753046|753047|753048|760131|760137|768855|768856|768857|768858|768859|768860|768861|768862|768863|784247|784248|784249|784250|784253|820438|839240|839241|839242|839243|839244|839245|839246|839247|839248|839249|851474|851927|852422|869059|869060|869061|869062|869063|869064|869065|869066|869067|869068|869069|869070|869071|869072|869073|869074|869075|869076|869077|869078|869079|869080|869081|869082|869083|869084|869085|872172|872173|872174|872175|872176|906154|906155|906156|906157|906158|906159|906160|906161|906162|926444|926445|935896|935897|935898|941017|941018|941019|947765|947766|947767|947768|947769|956731|956732|956733|956734|960770|972162|972163|972164|972165|972166|972167|972168|972169|972170|972171|972172|972173|972174|972175|972176|972177|972178|972179|972180|972181|972182|972183|972184", + "upstreamId": "17800|17801|17803|17803|17807|17807|17808|17808|17810|17810|17812|17812|17813|17813|17814|46972|46972|46973|46975|46976|46988|46988|46990|46991|46992|47620|47620|47621|47622|47623|47623|47624|47625|47625|47629|47631|47632|47632|47634|47636|47637|47638|47638|47641|47643|47644|47652|47653|47656|47658|47660|47661|47661|47662|47662|47663|47664|47665|47668|47674|47674|47676|47677|47677|47678|47681|47682|47684|47685|47686|47689|78998|78998|102012|102013|102015|102016|106602|106603|177007|177007|177753|177753|190902|191427|191428|191429|191950|192537|192690|228217|228217|237191|237191|254386|254387|265256|265256|265257|265257|268432|315728|315729|315732|315734|315736|315737|315739|315740|315740|315743|315743|315746|315746|315752|315752|315753|315764|315766|315771|322722|322723|322724|322744|322745|322746|322747|322756|322758|322763|322763|322771|322771|322774|322809|322809|322824|322824|322825|322825|322836|322837|322837|322841|322841|322842|322843|328856|328861|328863|328864|328865|328865|328879|328879|328880|330054|330063|330075|330096|330100|330107|330107|330109|330113|330113|330116|330124|372495|384451|384452|384453|384454|384455|384456|384457|384458|384459|384460|384462|384463|384464|384465|384466|384467|384468|384469|487318|487325|487325|511952|526633|546531|546535|546537|546540|546549|546554|546560|546561|546566|546750|546752|546753|546774|546779|546782|546788|546799|546876|546878|546885|546887|546888|547081|547083|547085|547086|547097|547099|547108|547118|547120|547121|547126|549690|549691|549693|549693|549698|549698|567619|567642|571167|640580|640581|640582|652195|652278|672258|713281|713282|713282|713283|713283|724837|724838|724839|730818|738383|738386|738386|738387|738387|738389|738390|738391|738392|738392|738393|744704|753040|753041|753042|753045|753046|753047|753048|760131|760137|768855|768856|768857|768858|768859|768860|768861|768862|768863|784247|784248|784249|784250|784253|820438|839240|839241|839242|839243|839244|839245|839246|839247|839248|839249|851474|851927|852422|869059|869060|869061|869062|869063|869064|869065|869066|869067|869068|869069|869070|869071|869072|869073|869074|869075|869076|869077|869078|869079|869080|869081|869082|869083|869084|869085|872172|872173|872174|872175|872176|906154|906155|906156|906157|906158|906159|906160|906161|906162|926444|926445|935896|935897|935898|941017|941018|941019|947765|947766|947767|947768|947769|956731|956732|956733|956734|960770|972162|972163|972164|972165|972166|972167|972168|972169|972170|972171|972172|972173|972174|972175|972176|972177|972178|972179|972180|972181|972182|972183|972184", "text": "Pseudo-Hurler polydystrophy" }, { - "baseId": "17802|17803|17803|17804|17805|17806|17807|17807|17808|17809|17810|17810|17811|17812|17812|17813|17814|46971|46972|46973|46973|46974|46976|46977|46978|46979|46980|46981|46982|46983|46984|46985|46987|46988|46988|46989|46990|46991|46991|46992|46993|47620|47622|47622|47623|47623|47624|47624|47625|47625|47626|47627|47628|47630|47632|47633|47634|47634|47635|47637|47637|47638|47639|47640|47642|47643|47643|47644|47644|47645|47646|47647|47648|47649|47650|47651|47652|47652|47654|47655|47657|47658|47658|47659|47660|47660|47661|47662|47666|47667|47668|47668|47669|47670|47671|47672|47673|47674|47674|47675|47676|47676|47677|47679|47680|47681|47682|47682|47687|47688|47689|47689|47690|47691|47692|47693|47694|47695|49677|49678|49679|49680|49681|76433|78998|78998|102012|102013|102015|102016|106602|177007|177007|177753|177753|190902|191427|191428|191429|191950|192537|192690|228217|228217|237191|237191|254386|254387|254388|265256|265256|265257|265257|268432|268432|315724|315727|315728|315729|315732|315734|315736|315737|315739|315740|315740|315743|315743|315746|315746|315752|315752|315753|315764|315766|315771|322722|322723|322724|322744|322745|322746|322747|322754|322756|322757|322758|322763|322763|322771|322771|322774|322809|322809|322824|322824|322825|322825|322836|322837|322837|322841|322841|322842|322843|328843|328856|328861|328863|328864|328865|328865|328879|328879|328880|330053|330054|330063|330071|330075|330082|330096|330100|330107|330107|330109|330113|330113|330116|330124|372495|384451|384452|384453|384454|384455|384456|384457|384458|384459|384460|384462|384463|384464|384465|384466|384467|384468|384469|487318|487318|487325|487325|513608|526633|546531|546535|546537|546540|546549|546554|546560|546561|546566|546750|546752|546753|546774|546779|546782|546788|546799|546876|546878|546885|546887|546888|547081|547083|547085|547086|547097|547099|547108|547118|547120|547121|547126|549690|549690|549691|549693|549693|549698|549698|567619|567642|567642|571167|571167|589798|612231|623156|640580|640581|640582|640582|652195|652195|652278|713281|713281|713282|713282|713283|713283|724837|724838|724838|724839|730818|730818|738383|738383|738385|738386|738386|738387|738387|738389|738389|738390|738391|738391|738392|738392|738393|744704|744704|753040|753041|753041|753042|753042|753045|753045|753046|753047|753048|760131|760137|768855|768856|768856|768857|768857|768858|768858|768859|768860|768860|768861|768861|768862|768863|768864|784247|784248|784249|784250|784250|784253|791186|801716|801717|820438|839240|839241|839241|839242|839243|839244|839245|839245|839246|839246|839247|839248|839249|851474|851927|852422|852422|869059|869060|869061|869062|869063|869064|869065|869066|869067|869068|869069|869070|869071|869072|869073|869074|869075|869076|869077|869078|869079|869080|869081|869082|869083|869084|869085|872172|872173|872174|872175|872176|906154|906155|906156|906157|906158|906159|906160|906161|906162|926444|926445|935896|935897|935897|935898|941017|941018|941019|947765|947766|947767|947768|947769|956731|956731|956732|956733|956733|956734|960770|963163|970947|972162|972163|972164|972165|972166|972167|972168|972169|972170|972171|972172|972173|972174|972175|972176|972177|972178|972179|972180|972181|972182|972183|972184|979231|979232|979233|979234|979235|979236|979237|979238|979239|979240|979241|979242|979243|979244|979245|979246|979247|979248|979249|979250|979251|979252|979253|979254|980343", + "upstreamId": "17802|17803|17803|17804|17805|17806|17807|17807|17808|17809|17810|17810|17811|17812|17812|17813|17814|46971|46972|46973|46973|46974|46976|46977|46978|46979|46980|46981|46982|46983|46984|46985|46987|46988|46988|46989|46990|46991|46991|46992|46993|47620|47622|47622|47623|47623|47624|47624|47625|47625|47626|47627|47628|47630|47632|47633|47634|47634|47635|47637|47637|47638|47639|47640|47642|47643|47643|47644|47644|47645|47646|47647|47648|47649|47650|47651|47652|47652|47654|47655|47657|47658|47658|47659|47660|47660|47661|47662|47666|47667|47668|47668|47669|47670|47671|47672|47673|47674|47674|47675|47676|47676|47677|47679|47680|47681|47682|47682|47687|47688|47689|47689|47690|47691|47692|47693|47694|47695|49677|49678|49679|49680|49681|76433|78998|78998|102012|102013|102015|102016|106602|177007|177007|177753|177753|190902|191427|191428|191429|191950|192537|192690|228217|228217|237191|237191|254386|254387|254388|265256|265256|265257|265257|268432|268432|315724|315727|315728|315729|315732|315734|315736|315737|315739|315740|315740|315743|315743|315746|315746|315752|315752|315753|315764|315766|315771|322722|322723|322724|322744|322745|322746|322747|322754|322756|322757|322758|322763|322763|322771|322771|322774|322809|322809|322824|322824|322825|322825|322836|322837|322837|322841|322841|322842|322843|328843|328856|328861|328863|328864|328865|328865|328879|328879|328880|330053|330054|330063|330071|330075|330082|330096|330100|330107|330107|330109|330113|330113|330116|330124|372495|384451|384452|384453|384454|384455|384456|384457|384458|384459|384460|384462|384463|384464|384465|384466|384467|384468|384469|487318|487318|487325|487325|513608|526633|546531|546535|546537|546540|546549|546554|546560|546561|546566|546750|546752|546753|546774|546779|546782|546788|546799|546876|546878|546885|546887|546888|547081|547083|547085|547086|547097|547099|547108|547118|547120|547121|547126|549690|549690|549691|549693|549693|549698|549698|567619|567642|567642|571167|571167|589798|612231|623156|640580|640581|640582|640582|652195|652195|652278|713281|713281|713282|713282|713283|713283|724837|724838|724838|724839|730818|730818|738383|738383|738385|738386|738386|738387|738387|738389|738389|738390|738391|738391|738392|738392|738393|744704|744704|753040|753041|753041|753042|753042|753045|753045|753046|753047|753048|760131|760137|768855|768856|768856|768857|768857|768858|768858|768859|768860|768860|768861|768861|768862|768863|768864|784247|784248|784249|784250|784250|784253|791186|801716|801717|820438|839240|839241|839241|839242|839243|839244|839245|839245|839246|839246|839247|839248|839249|851474|851927|852422|852422|869059|869060|869061|869062|869063|869064|869065|869066|869067|869068|869069|869070|869071|869072|869073|869074|869075|869076|869077|869078|869079|869080|869081|869082|869083|869084|869085|872172|872173|872174|872175|872176|906154|906155|906156|906157|906158|906159|906160|906161|906162|926444|926445|935896|935897|935897|935898|941017|941018|941019|947765|947766|947767|947768|947769|956731|956731|956732|956733|956733|956734|960770|963163|970947|972162|972163|972164|972165|972166|972167|972168|972169|972170|972171|972172|972173|972174|972175|972176|972177|972178|972179|972180|972181|972182|972183|972184|979231|979232|979233|979234|979235|979236|979237|979238|979239|979240|979241|979242|979243|979244|979245|979246|979247|979248|979249|979250|979251|979252|979253|979254|980343", "text": "Mucolipidosis type II" }, { - "baseId": "17803|17807|20170|46988|46991|47624|47637|47660|47668|47676|47690|49681|384471|497409|654786|969173", + "upstreamId": "17803|17807|20170|46988|46991|47624|47637|47660|47668|47676|47690|49681|384471|497409|654786|969173", "text": "Mucolipidosis" }, { - "baseId": "17807|17810|47625|619924", + "upstreamId": "17807|17810|47625|619924", "text": "GNPTAB-Related Disorders" }, { - "baseId": "17812|17813|20146|20147|20148|20149|20150|20151|20152|20153|20154|20155|20156|20157|39416|46976|46986|46990|46992|98515|98516|98517|98518|98520|98521|195855|237044|237319|256535|256536|256537|256538|256541|260197|264874|265041|265225|268475|271274|274269|330478|330481|330484|330486|330494|330496|330505|330509|330519|340705|340707|340708|340710|340711|340713|340717|340735|340737|340739|340742|340747|346322|346323|346326|346328|346331|346338|346353|346355|346358|347699|347700|347701|347704|347705|347706|347709|347718|358524|360293|360474|375756|376651|410305|422209|431001|482159|508893|508894|513371|513648|513649|532014|532089|536959|548451|548457|548458|548462|548465|548466|548467|548468|548471|548472|548474|548475|548479|548485|548491|548498|548836|548837|548846|548847|548849|548855|548857|548860|548861|548864|548865|548867|548871|548873|548874|549207|549208|549212|549214|549215|549219|549221|549225|549226|549763|549764|549765|549767|549769|569940|569943|571747|574683|610522|622512|625886|625887|625888|625889|625890|646960|646961|646962|646963|646964|646965|646966|646967|646968|682851|704429|715784|727505|727506|727507|727508|727509|727510|727511|727512|727513|731185|741120|741121|741122|741123|741124|741125|741126|741127|741129|741130|745103|745126|756214|756215|756216|756217|756218|756219|756220|760495|760684|771933|771934|771935|771936|771937|771938|771939|771941|771942|771944|771945|771946|771947|771948|771949|771950|771951|771953|771954|771955|776409|776743|778412|785799|785801|785802|821175|846487|846488|861650|861651|878763|878764|878765|878766|878767|878768|878769|878770|878771|878772|878773|878774|878775|878776|878777|878778|878779|878780|878781|878782|878783|878784|878785|878786|878787|878788|878789|880616|880617|906106|917279|938316|940446|950385|950386|950387|958384|958385|958386|958387|971097|979934|979935|979936", + "upstreamId": "17812|17813|20146|20147|20148|20149|20150|20151|20152|20153|20154|20155|20156|20157|39416|46976|46986|46990|46992|98515|98516|98517|98518|98520|98521|195855|237044|237319|256535|256536|256537|256538|256541|260197|264874|265041|265225|268475|271274|274269|330478|330481|330484|330486|330494|330496|330505|330509|330519|340705|340707|340708|340710|340711|340713|340717|340735|340737|340739|340742|340747|346322|346323|346326|346328|346331|346338|346353|346355|346358|347699|347700|347701|347704|347705|347706|347709|347718|358524|360293|360474|375756|376651|410305|422209|431001|482159|508893|508894|513371|513648|513649|532014|532089|536959|548451|548457|548458|548462|548465|548466|548467|548468|548471|548472|548474|548475|548479|548485|548491|548498|548836|548837|548846|548847|548849|548855|548857|548860|548861|548864|548865|548867|548871|548873|548874|549207|549208|549212|549214|549215|549219|549221|549225|549226|549763|549764|549765|549767|549769|569940|569943|571747|574683|610522|622512|625886|625887|625888|625889|625890|646960|646961|646962|646963|646964|646965|646966|646967|646968|682851|704429|715784|727505|727506|727507|727508|727509|727510|727511|727512|727513|731185|741120|741121|741122|741123|741124|741125|741126|741127|741129|741130|745103|745126|756214|756215|756216|756217|756218|756219|756220|760495|760684|771933|771934|771935|771936|771937|771938|771939|771941|771942|771944|771945|771946|771947|771948|771949|771950|771951|771953|771954|771955|776409|776743|778412|785799|785801|785802|821175|846487|846488|861650|861651|878763|878764|878765|878766|878767|878768|878769|878770|878771|878772|878773|878774|878775|878776|878777|878778|878779|878780|878781|878782|878783|878784|878785|878786|878787|878788|878789|880616|880617|906106|917279|938316|940446|950385|950386|950387|958384|958385|958386|958387|971097|979934|979935|979936", "text": "Mucopolysaccharidosis, MPS-III-A" }, { - "baseId": "17815|17822|17825|17826|17829|17830|17831|17832", + "upstreamId": "17815|17822|17825|17826|17829|17830|17831|17832", "text": "Glycogen storage disease IV, congenital neuromuscular" }, { - "baseId": "17816|17817", + "upstreamId": "17816|17817", "text": "Glycogen storage disease IV, nonprogressive hepatic" }, { - "baseId": "17816|17816|17816|17817|17817|17818|17818|17819|17820|17820|17821|17821|17822|17823|17824|17825|17827|17831|17832|76826|76827|178812|178812|194797|205142|205142|205142|207091|207091|237241|237241|237441|251279|251279|251281|251281|251283|251283|251285|251287|251288|251288|251289|251290|251290|291664|291664|291674|291675|291675|291676|291682|292986|292988|293004|293011|293020|293020|296258|296261|296275|296275|296277|296304|296305|296307|296318|296320|296321|296321|296329|296336|296338|296338|296340|357325|357325|357326|357326|361403|361403|367385|367406|367414|367729|367733|367733|367734|424441|428221|430978|434587|434587|434587|438253|438253|443515|443515|443517|443517|452788|472256|500841|500841|511513|511514|519598|519890|538363|538363|538363|538364|549555|549555|552403|559231|559678|559680|561057|561818|561818|631793|631794|631794|631795|651052|651128|651147|698295|709048|709048|720643|734303|734303|734304|734304|734305|734305|748534|748534|748535|764168|764169|764169|764170|764170|764174|764175|764175|764176|764176|764178|774865|774865|774904|774904|781805|781808|781810|781812|787404|790422|805000|805001|819415|819416|819417|819418|819419|819420|828568|828569|828570|828571|828572|828573|889704|889705|889706|889707|889708|889709|889710|889711|889712|889713|889714|889715|889716|889717|889718|889719|889720|891707|891708|923356|923357|923358|932086|940765|943704|953592|953593|953594|977993|977994|977995|977996|977997|977998|977999|978000|978001|978002", + "upstreamId": "17816|17816|17816|17817|17817|17818|17818|17819|17820|17820|17821|17821|17822|17823|17824|17825|17827|17831|17832|76826|76827|178812|178812|194797|205142|205142|205142|207091|207091|237241|237241|237441|251279|251279|251281|251281|251283|251283|251285|251287|251288|251288|251289|251290|251290|291664|291664|291674|291675|291675|291676|291682|292986|292988|293004|293011|293020|293020|296258|296261|296275|296275|296277|296304|296305|296307|296318|296320|296321|296321|296329|296336|296338|296338|296340|357325|357325|357326|357326|361403|361403|367385|367406|367414|367729|367733|367733|367734|424441|428221|430978|434587|434587|434587|438253|438253|443515|443515|443517|443517|452788|472256|500841|500841|511513|511514|519598|519890|538363|538363|538363|538364|549555|549555|552403|559231|559678|559680|561057|561818|561818|631793|631794|631794|631795|651052|651128|651147|698295|709048|709048|720643|734303|734303|734304|734304|734305|734305|748534|748534|748535|764168|764169|764169|764170|764170|764174|764175|764175|764176|764176|764178|774865|774865|774904|774904|781805|781808|781810|781812|787404|790422|805000|805001|819415|819416|819417|819418|819419|819420|828568|828569|828570|828571|828572|828573|889704|889705|889706|889707|889708|889709|889710|889711|889712|889713|889714|889715|889716|889717|889718|889719|889720|891707|891708|923356|923357|923358|932086|940765|943704|953592|953593|953594|977993|977994|977995|977996|977997|977998|977999|978000|978001|978002", "text": "Glycogen storage disease, type IV" }, { - "baseId": "17816|17817|17821|178812|227045", + "upstreamId": "17816|17817|17821|178812|227045", "text": "Adult polyglucosan body neuropathy" }, { - "baseId": "17816|205142|291664|291672|620137|620768", + "upstreamId": "17816|205142|291664|291672|620137|620768", "text": "GBE1-Related Disorders" }, { - "baseId": "17816|17817|17818|17818|17819|17820|17820|17821|178812|205142|207091|237241|237441|251279|251281|251283|251288|251290|291664|291675|293020|296275|296321|296338|357325|357326|361403|367385|367729|367733|434587|438253|443515|443517|452788|500841|519598|519890|538363|549555|559231|559678|559680|561057|561818|631793|631794|631795|651052|651128|651147|698295|709048|720643|734303|734304|734305|748534|748535|764168|764169|764170|764174|764175|764176|764178|774865|774904|781805|781808|781810|781812|787404|819415|819416|819417|819418|819419|819420|828568|828569|828570|828571|828572|828573|923356|923357|923358|932086|940765|943704|953592|953593|953594", + "upstreamId": "17816|17817|17818|17818|17819|17820|17820|17821|178812|205142|207091|237241|237441|251279|251281|251283|251288|251290|291664|291675|293020|296275|296321|296338|357325|357326|361403|367385|367729|367733|434587|438253|443515|443517|452788|500841|519598|519890|538363|549555|559231|559678|559680|561057|561818|631793|631794|631795|651052|651128|651147|698295|709048|720643|734303|734304|734305|748534|748535|764168|764169|764170|764174|764175|764176|764178|774865|774904|781805|781808|781810|781812|787404|819415|819416|819417|819418|819419|819420|828568|828569|828570|828571|828572|828573|923356|923357|923358|932086|940765|943704|953592|953593|953594", "text": "Glycogen storage disease IV, classic hepatic" }, { - "baseId": "17816|17816|17830|194797|205142|207091|237241|251279|251281|251283|251285|251287|251288|251289|251290|291674|291675|291676|291682|292986|292988|293004|293011|293020|296258|296261|296275|296277|296304|296305|296307|296318|296320|296321|296329|296336|296338|296340|357325|361403|367406|367414|367733|367734|430978|434587|434587|438253|500841|511514|538363|538363|538364|561818|720643|748534|764176|889704|889705|889706|889707|889708|889709|889710|889711|889712|889713|889714|889715|889716|889717|889718|889719|889720|891707|891708", + "upstreamId": "17816|17816|17830|194797|205142|207091|237241|251279|251281|251283|251285|251287|251288|251289|251290|291674|291675|291676|291682|292986|292988|293004|293011|293020|296258|296261|296275|296277|296304|296305|296307|296318|296320|296321|296329|296336|296338|296340|357325|361403|367406|367414|367733|367734|430978|434587|434587|438253|500841|511514|538363|538363|538364|561818|720643|748534|764176|889704|889705|889706|889707|889708|889709|889710|889711|889712|889713|889714|889715|889716|889717|889718|889719|889720|891707|891708", "text": "Adult polyglucosan body disease" }, { - "baseId": "17820|17827", + "upstreamId": "17820|17827", "text": "Glycogen storage disease IV, childhood neuromuscular" }, { - "baseId": "17821|17828", + "upstreamId": "17821|17828", "text": "Glycogen storage disease IV, combined hepatic and myopathic" }, { - "baseId": "17823|17824", + "upstreamId": "17823|17824", "text": "Glycogen storage disease IV, fatal perinatal neuromuscular" }, { - "baseId": "17833|17834|17835|17836|17837|17838|17839|17840|34565|34566|34567|34568|34569|34570|34571|34572|34573|34574|34575|34576|39642|47683|78999|324084|324089|324096|324097|324103|324108|333708|333711|333712|333718|333721|333724|333726|333727|333728|340469|340471|340473|340474|340478|340480|340482|340483|341852|341853|341864|353336|384470|384471|431017|445491|512945|547668|547669|547670|547672|547673|547676|547682|547692|547702|547717|547719|547720|547722|547724|547727|547729|547733|547735|547742|547746|547976|547980|547981|547987|547990|547993|547996|547997|547998|548410|548412|548420|548422|548424|548428|548430|548437|548442|548448|548449|548452|548456|548459|643904|714735|714736|726423|726425|726426|739950|739951|745196|754888|754889|754893|754897|754898|770538|770539|770540|770543|770544|770546|770547|776127|779750|785136|843070|843076|843078|843081|843082|843084|874619|874620|874621|874622|874623|874624|874625|874626|874627|874628|874629|874630|874631|874632|876610|876611|905846|906163|906164|979747|979748|979749|979750|979751|979752|979753|979754|979755|979756|979757|979758|979759", + "upstreamId": "17833|17834|17835|17836|17837|17838|17839|17840|34565|34566|34567|34568|34569|34570|34571|34572|34573|34574|34575|34576|39642|47683|78999|324084|324089|324096|324097|324103|324108|333708|333711|333712|333718|333721|333724|333726|333727|333728|340469|340471|340473|340474|340478|340480|340482|340483|341852|341853|341864|353336|384470|384471|431017|445491|512945|547668|547669|547670|547672|547673|547676|547682|547692|547702|547717|547719|547720|547722|547724|547727|547729|547733|547735|547742|547746|547976|547980|547981|547987|547990|547993|547996|547997|547998|548410|548412|548420|548422|548424|548428|548430|548437|548442|548448|548449|548452|548456|548459|643904|714735|714736|726423|726425|726426|739950|739951|745196|754888|754889|754893|754897|754898|770538|770539|770540|770543|770544|770546|770547|776127|779750|785136|843070|843076|843078|843081|843082|843084|874619|874620|874621|874622|874623|874624|874625|874626|874627|874628|874629|874630|874631|874632|876610|876611|905846|906163|906164|979747|979748|979749|979750|979751|979752|979753|979754|979755|979756|979757|979758|979759", "text": "Mucolipidosis type III gamma" }, { - "baseId": "17841|17843|193654|202217|614318", + "upstreamId": "17841|17843|193654|202217|614318", "text": "Ceroid lipofuscinosis, neuronal, 8, northern epilepsy variant" }, { - "baseId": "17841|17842|17843|17843|17845|71342|71343|71344|71345|71346|71347|71348|71349|71350|71351|71352|71353|71354|71355|71356|71357|71358|71359|101820|106601|186761|192506|193654|193654|202200|202206|202207|202209|202213|202217|202217|207537|357629|357630|357631|407357|407358|458656|480573|523713|523977|544401|544403|544404|544689|544692|544695|544698|544700|544702|544720|544744|544745|544748|544749|544753|579373|614318|687252|834527|955381|978455|978456|978457|978458|978459|978460", + "upstreamId": "17841|17842|17843|17843|17845|71342|71343|71344|71345|71346|71347|71348|71349|71350|71351|71352|71353|71354|71355|71356|71357|71358|71359|101820|106601|186761|192506|193654|193654|202200|202206|202207|202209|202213|202217|202217|207537|357629|357630|357631|407357|407358|458656|480573|523713|523977|544401|544403|544404|544689|544692|544695|544698|544700|544702|544720|544744|544745|544748|544749|544753|579373|614318|687252|834527|955381|978455|978456|978457|978458|978459|978460", "text": "Neuronal ceroid lipofuscinosis 8" }, { - "baseId": "17848|17849|17850|17851|17852|17853|17854|17855|190689|190700|190701|191087|191953|192858|192950|193202|193203|194089|194204|194244|194516|194713|195022|195076|195184|195485|195509|196072|217208|217209|237166|237437|251564|251566|251567|251568|251569|251570|251571|251572|251573|251574|251575|251576|251577|251578|251579|251580|251581|251582|251583|251584|251585|251586|251587|251588|251589|251590|251591|254710|254711|254712|254713|254714|254848|254849|265701|265702|265703|265704|265705|265706|268043|268153|270660|270973|272090|272499|273861|274285|294175|294188|294189|294200|294203|294204|294209|294211|294216|294218|294219|294220|294228|294229|294238|294240|294241|294242|294250|294251|294259|294260|294263|294265|294267|294268|294270|294275|294277|294281|294283|294291|294293|294297|294299|294303|294305|294307|294315|294318|294319|294322|294331|294333|294339|294341|294348|294349|294360|294370|294371|294374|294378|294390|294403|294404|294408|294410|294420|294423|294427|294430|294434|294436|294440|294442|294443|294444|294452|294458|294461|294462|295706|295710|295711|295712|295718|295720|295728|295735|295737|295738|295740|295741|295742|295745|295746|295747|295750|295756|295759|295760|295761|295763|295764|295771|295772|295781|295782|295783|295785|295794|295796|295806|295807|295808|295819|295822|295826|295831|295861|295871|295872|295873|295875|295883|295885|295886|295887|295889|295892|295898|295909|295929|295930|299445|299446|299452|299453|299461|299462|299467|299468|299469|299472|299474|299482|299483|299489|299491|299492|299493|299498|299499|299500|299502|299503|299504|299505|299507|299508|299509|299510|299512|299513|299514|299516|299517|299519|299527|299532|299533|299536|299537|299539|299548|299549|299553|299554|299555|299557|299559|299560|299561|299562|299563|299568|299572|299573|299574|299584|299586|299587|299588|299591|299592|299593|299594|299595|299598|299599|299600|299601|299602|299604|299606|299607|299608|299609|299612|299613|299614|299619|299620|299621|299624|299634|299635|299639|299640|299641|299647|299658|299659|299662|299664|299672|299674|299676|299677|299678|299679|299680|299682|299685|299689|299691|299692|318334|318336|318339|318340|318349|319646|319709|319752|319753|326405|326406|326408|326419|326420|326436|326438|328251|328276|328284|332700|332709|332710|334308|334315|334324|334328|334669|334730|336267|336293|336420|336433|336453|336478|336491|336493|353672|421497|428320|428321|438637|508796|508797|538370|539051|585700|587538|588437|612086|614652|620175|620775|622047|622216|622217|623139|654741|686549|686553|686554|686555|686558|686559|691607|691609|691612|691613|691614|691616|691618|691619|691621|691622|695245|721082|734726|734734|743995|744177|790485|892220|892221|892222|892223|892224|892225|892226|892227|892228|892229|892230|892231|892232|892233|892234|892235|892236|892237|892238|892239|892240|892241|892242|892243|892244|892245|892246|892247|892248|892249|892250|892251|892252|892253|892254|892255|892256|892257|892258|892259|892260|892261|892262|892263|892264|892265|892266|892267|892268|892269|892270|892271|892272|892273|892274|892275|892276|892277|892278|892279|892280|892281|892282|892283|892284|892285|892286|892287|892288|892289|892290|892291|892292|892293|892294|892295|892296|892297|892298|892299|892300|892301|892302|892303|892304|892305|892306|892307|892308|892309|892310|892311|892312|892313|892314|892315|892316|892317|892318|892319|892320|892321|892322|892323|892324|892325|892326|892327|892328|892329|892330|892331|892332|892333|892334|892335|892336|892337|892338|895996|895997|895998|895999|896000|896001|896002|904967|904968|904969|904970|904971|904972|904973|904974|904975|904976|904977|904978|904979|904980|904981|904982|904983|904984|904985|904986|904987|904988|904989|904990|904996|904997|904998|904999|905000|905001|905002|905003|918904|980916|980917", + "upstreamId": "17848|17849|17850|17851|17852|17853|17854|17855|190689|190700|190701|191087|191953|192858|192950|193202|193203|194089|194204|194244|194516|194713|195022|195076|195184|195485|195509|196072|217208|217209|237166|237437|251564|251566|251567|251568|251569|251570|251571|251572|251573|251574|251575|251576|251577|251578|251579|251580|251581|251582|251583|251584|251585|251586|251587|251588|251589|251590|251591|254710|254711|254712|254713|254714|254848|254849|265701|265702|265703|265704|265705|265706|268043|268153|270660|270973|272090|272499|273861|274285|294175|294188|294189|294200|294203|294204|294209|294211|294216|294218|294219|294220|294228|294229|294238|294240|294241|294242|294250|294251|294259|294260|294263|294265|294267|294268|294270|294275|294277|294281|294283|294291|294293|294297|294299|294303|294305|294307|294315|294318|294319|294322|294331|294333|294339|294341|294348|294349|294360|294370|294371|294374|294378|294390|294403|294404|294408|294410|294420|294423|294427|294430|294434|294436|294440|294442|294443|294444|294452|294458|294461|294462|295706|295710|295711|295712|295718|295720|295728|295735|295737|295738|295740|295741|295742|295745|295746|295747|295750|295756|295759|295760|295761|295763|295764|295771|295772|295781|295782|295783|295785|295794|295796|295806|295807|295808|295819|295822|295826|295831|295861|295871|295872|295873|295875|295883|295885|295886|295887|295889|295892|295898|295909|295929|295930|299445|299446|299452|299453|299461|299462|299467|299468|299469|299472|299474|299482|299483|299489|299491|299492|299493|299498|299499|299500|299502|299503|299504|299505|299507|299508|299509|299510|299512|299513|299514|299516|299517|299519|299527|299532|299533|299536|299537|299539|299548|299549|299553|299554|299555|299557|299559|299560|299561|299562|299563|299568|299572|299573|299574|299584|299586|299587|299588|299591|299592|299593|299594|299595|299598|299599|299600|299601|299602|299604|299606|299607|299608|299609|299612|299613|299614|299619|299620|299621|299624|299634|299635|299639|299640|299641|299647|299658|299659|299662|299664|299672|299674|299676|299677|299678|299679|299680|299682|299685|299689|299691|299692|318334|318336|318339|318340|318349|319646|319709|319752|319753|326405|326406|326408|326419|326420|326436|326438|328251|328276|328284|332700|332709|332710|334308|334315|334324|334328|334669|334730|336267|336293|336420|336433|336453|336478|336491|336493|353672|421497|428320|428321|438637|508796|508797|538370|539051|585700|587538|588437|612086|614652|620175|620775|622047|622216|622217|623139|654741|686549|686553|686554|686555|686558|686559|691607|691609|691612|691613|691614|691616|691618|691619|691621|691622|695245|721082|734726|734734|743995|744177|790485|892220|892221|892222|892223|892224|892225|892226|892227|892228|892229|892230|892231|892232|892233|892234|892235|892236|892237|892238|892239|892240|892241|892242|892243|892244|892245|892246|892247|892248|892249|892250|892251|892252|892253|892254|892255|892256|892257|892258|892259|892260|892261|892262|892263|892264|892265|892266|892267|892268|892269|892270|892271|892272|892273|892274|892275|892276|892277|892278|892279|892280|892281|892282|892283|892284|892285|892286|892287|892288|892289|892290|892291|892292|892293|892294|892295|892296|892297|892298|892299|892300|892301|892302|892303|892304|892305|892306|892307|892308|892309|892310|892311|892312|892313|892314|892315|892316|892317|892318|892319|892320|892321|892322|892323|892324|892325|892326|892327|892328|892329|892330|892331|892332|892333|892334|892335|892336|892337|892338|895996|895997|895998|895999|896000|896001|896002|904967|904968|904969|904970|904971|904972|904973|904974|904975|904976|904977|904978|904979|904980|904981|904982|904983|904984|904985|904986|904987|904988|904989|904990|904996|904997|904998|904999|905000|905001|905002|905003|918904|980916|980917", "text": "Fraser syndrome 1" }, { - "baseId": "17856", + "upstreamId": "17856", "text": "Uric acid nephrolithiasis, susceptibility to" }, { - "baseId": "17857|17858|17859|17860|17861|17862|17863|17864|17865|17866|17867|17868|17869|71267|71268|71269|71270|71271|71272|71273|71274|71275|71276|71277|71278|71279|71280|71281|71282|71283|71284|71285|71286|71287|71288|71289|71290|71291|71292|71293|71294|71295|71296|71297|71298|71299|71300|71301|71302|71303|71304|71305|71306|71307|71308|71309|71310|71311|71312|71313|71314|71315|71316|71317|71318|71319|71320|71321|71322|71323|71324|71325|71326|71327|71328|71329|71330|71331|71332|71333|71334|71335|71336|71337|71338|71339|71340|71341|71431|78971|78974|78977|78980|87952|87953|101718|101720|101721|101722|101723|101725|101726|101727|101728|101729|101731|101732|101733|101734|101735|101736|101738|101739|101741|101742|101743|101745|101746|101747|101748|101749|101751|101752|101754|101755|101758|101759|101760|101761|101762|101763|101764|101765|101766|101767|101768|101769|101770|101771|101772|101773|126251|126253|136162|136163|136164|136165|136167|136168|136169|136170|136171|136172|136173|136174|136175|136543|136544|176994|177126|177256|177257|177388|178150|178151|186772|186773|186774|187088|191069|191070|191071|191419|191420|191711|191712|191935|191936|192497|192994|193061|193344|193951|194078|194079|194080|194081|194082|194146|194582|194605|194633|194690|195075|195099|195114|195155|195156|195174|195470|196046|196047|205460|207578|207581|207584|207585|207587|207590|207593|207594|207595|207596|226910|226911|227918|236905|237231|237271|253219|253221|253222|253228|253229|253231|253232|259908|264296|264375|264404|264439|264450|264452|265990|266946|267794|268013|268126|269256|269515|270900|271131|271204|271719|272069|272234|272429|272992|273455|274279|274931|306123|306126|306127|306133|306136|306140|306148|306150|306157|306159|306160|306161|306168|306170|306174|306175|306178|306179|306181|306182|306184|306190|310178|310202|310208|310214|310215|310216|310217|310218|310220|310223|310225|310243|310245|310253|310258|310259|310260|310262|310264|310267|310278|310279|310281|310285|310286|310289|310291|310294|310296|310298|310304|310306|310310|315508|315518|315520|315522|315523|315525|315533|315538|315539|315540|315547|315548|315558|315560|315563|315565|315670|315675|315681|315684|315687|315689|315693|315697|315701|315704|315711|315714|315716|315718|315730|315735|315738|315745|315750|353821|353898|357675|357676|357677|357678|357679|357680|357681|357682|357683|357684|357685|357686|357687|357688|357689|357690|357691|357692|357693|357694|357695|357696|357697|357698|357699|357700|357701|357702|357703|357704|357705|357706|357707|357708|357709|357710|357711|357712|357713|357714|357715|357716|357717|357718|357719|357720|357721|357722|357723|357724|357725|357726|357727|357728|357729|357730|357731|357732|357733|357734|357735|357736|357737|357738|357739|357740|357741|357742|357743|357744|357745|357746|357747|357748|357749|357750|357751|357752|357753|357754|357755|357756|360902|361421|361530|363706|369643|421691|421692|425806|428865|428866|428868|428871|428874|428876|428878|428880|428883|428884|428885|428887|428888|432216|432217|438863|438915|441245|441247|441248|441249|441250|444319|444321|457745|458110|458111|458643|459117|459120|459138|459142|481829|490211|495617|512835|514581|523181|523529|523772|523791|523796|523799|523800|523801|523808|523809|523811|523812|524079|524080|524081|524085|524086|524087|524093|524345|524348|524357|524359|524362|524373|524375|524379|524400|524416|524421|524423|524428|524433|536753|539015|539016|544505|544506|544508|544512|544514|544521|544528|544537|544540|544542|544545|544547|544549|544552|544555|544557|544559|544561|544562|544565|544570|544574|544575|544577|544579|544583|544584|544586|544589|544592|544594|544791|544794|544800|544816|544821|544822|544825|544828|544829|544832|544834|544836|544837|544838|544839|544840|544841|544845|544846|544847|544849|544855|544856|544858|544859|544863|544865|544866|544867|544873|544875|544876|544879|544880|544881|544884|544885|544888|544889|544891|544895|544897|544898|544899|544900|544901|544902|544904|544906|544907|544909|544911|544921|544922|544923|544926|544927|544931|544933|544934|544935|544937|544939|544943|544944|544947|544948|544949|544953|544954|544955|544959|544961|544966|544969|544973|544974|544978|544979|544980|544983|544985|544989|544993|544998|544999|545000|545003|545005|545007|545008|545012|545013|545015|545018|545020|545023|545025|545027|545029|545032|545043|545048|545067|545070|545072|545074|545075|545085|545086|545087|545088|550610|550612|550613|550614|550661|552128|553172|561864|562333|562549|562553|562554|562556|562557|562560|562561|563179|563181|563189|563194|563195|563198|563200|563201|563202|563206|564559|564561|564566|564568|565283|565290|565296|565299|565303|565305|565309|565310|567308|567309|568265|568276|568277|568284|568287|576285|577073|577076|577077|577078|578472|579470|579471|579476|579480|579505|579514|579519|579526|579527|579530|579531|579533|579535|579536|579544|579551|579554|579568|579569|579701|579716|579729|589055|612149|612835|614327|614328|614329|614330|614331|614332|614333|620311|622889|626181|626182|637495|637496|637497|637498|637499|637500|637501|637502|637503|637504|637505|637506|637507|637508|637509|637510|637511|637512|637513|637514|637515|637516|637517|637518|637519|637520|637521|637522|637523|637524|637525|637526|637527|637528|637529|637530|637531|637532|637533|637534|637535|637536|637537|637538|637539|637540|637541|637542|637543|637544|637545|637546|637547|637548|637549|651727|651730|651768|651815|651827|651830|651831|651833|651878|651919|651927|652013|652014|692529|692530|692531|692532|692533|692534|692535|692536|692537|692538|692539|692540|692541|692542|692543|692544|695402|695403|700698|700699|700700|700701|700702|700703|700704|711671|711672|711673|723222|723224|723225|723226|723227|736786|736787|736788|736789|736791|744413|751277|751279|751281|751282|751285|751286|751287|759675|759717|759721|759839|766939|766941|766945|766946|766949|766951|766953|766956|766957|766958|766959|766960|766961|775295|775302|775440|775446|777790|783178|783180|783183|783188|783190|783193|783194|783195|787500|787501|787751|789124|790827|790828|790829|790830|790831|792775|793292|796200|800357|800358|800371|800543|801549|801577|805592|820002|820003|820004|820005|820006|820007|820008|820009|820010|820011|820012|820013|820014|820015|820016|820017|820018|820019|820020|820021|820022|820023|820024|820025|820026|820027|820028|820029|835167|835168|835169|835170|835171|835172|835173|835174|835175|835176|835177|835178|835179|835180|835181|835182|835183|835184|835185|835186|835187|835188|835189|835190|835191|835192|835193|835194|835195|835196|835197|835198|835199|835200|835201|835202|835203|835204|835205|835206|835207|835208|835209|835210|835211|835212|835213|835214|835215|835216|835217|835218|835219|835220|835221|835222|835223|835224|835225|835226|835227|835228|835229|835230|835231|835232|835233|835234|835235|835236|835237|835238|835239|835240|835241|835242|835243|835244|835245|835246|835247|835248|835249|835250|835251|835252|835253|835254|835255|835256|835257|835258|835259|835260|835261|835262|835263|835264|835265|835266|835267|835268|835269|835270|835271|835272|835273|835274|835275|835276|835277|835278|835279|835280|835281|851211|851213|852451|852452|852457|852458|852463|859688|900158|900159|900160|900161|900162|900163|900164|900165|900166|900167|900168|900169|900170|900171|900172|900173|900174|900175|900176|900177|900178|900179|900180|900181|900182|900183|900184|900185|900186|900187|900188|900189|900190|900191|900192|900193|900194|900195|900196|900197|900198|900199|900200|900201|900202|900203|900204|900205|900206|900207|900208|900209|900210|900211|900212|900213|900214|900215|900216|900217|900218|900219|900220|900221|900222|900223|900224|900225|900226|900227|900520|900521|900522|900523|900524|900525|900526|900527|900528|904192|904193|904194|904195|904196|904197|904198|904915|905849|919181|925282|925283|925284|925285|925286|925287|925288|925289|925290|925291|925292|925293|925294|925295|925296|925297|925298|925299|925300|925301|925302|925303|925304|925305|934452|934453|934454|934455|934456|934457|934458|934459|934460|934461|934462|934463|934464|934465|934466|934467|934468|934469|934470|934471|934472|934473|934474|934475|934476|934477|934478|940117|940118|940119|940890|940915|940916|946236|946237|946238|946239|946240|946241|946242|946243|946244|946245|946246|946247|946248|946249|946250|946251|946252|946253|946254|946255|946256|946257|946258|946259|946260|946261|946262|946263|946264|946265|946266|946267|946268|946269|946270|946271|946272|946273|946274|946275|946276|946277|955531|955532|955533|955534|955535|955536|955537|955538|955539|955540|955541|955542|955543|955544|955545|955546|955547|955548|955549|955550|955551|955552|955553|955554|955555|955556|955557|955558|955559|955560|955561|955562|955563|955564|955565|955566|955567|955568|955569|955570|955571|955572|955573|955574|955575|955576|955577|955578|955579|955580|955581|955582|955583|955584|955585|955586|955587|955588|955589|955590|955591|955592|955593|955594|955595|955596|955597|955598|955599|955600|955601|955602|955603|955604|955605|955606|955607|959872|959904|960662|960663|960664|960665|963151|963670|963671|965973|965974|965975|966036|978485|978486|978487|978488|978489|978490|978491|978492|978493|978494|978495|978496|978497|978498|978499|978500|978501|978502|978503|978504", + "upstreamId": "17857|17858|17859|17860|17861|17862|17863|17864|17865|17866|17867|17868|17869|71267|71268|71269|71270|71271|71272|71273|71274|71275|71276|71277|71278|71279|71280|71281|71282|71283|71284|71285|71286|71287|71288|71289|71290|71291|71292|71293|71294|71295|71296|71297|71298|71299|71300|71301|71302|71303|71304|71305|71306|71307|71308|71309|71310|71311|71312|71313|71314|71315|71316|71317|71318|71319|71320|71321|71322|71323|71324|71325|71326|71327|71328|71329|71330|71331|71332|71333|71334|71335|71336|71337|71338|71339|71340|71341|71431|78971|78974|78977|78980|87952|87953|101718|101720|101721|101722|101723|101725|101726|101727|101728|101729|101731|101732|101733|101734|101735|101736|101738|101739|101741|101742|101743|101745|101746|101747|101748|101749|101751|101752|101754|101755|101758|101759|101760|101761|101762|101763|101764|101765|101766|101767|101768|101769|101770|101771|101772|101773|126251|126253|136162|136163|136164|136165|136167|136168|136169|136170|136171|136172|136173|136174|136175|136543|136544|176994|177126|177256|177257|177388|178150|178151|186772|186773|186774|187088|191069|191070|191071|191419|191420|191711|191712|191935|191936|192497|192994|193061|193344|193951|194078|194079|194080|194081|194082|194146|194582|194605|194633|194690|195075|195099|195114|195155|195156|195174|195470|196046|196047|205460|207578|207581|207584|207585|207587|207590|207593|207594|207595|207596|226910|226911|227918|236905|237231|237271|253219|253221|253222|253228|253229|253231|253232|259908|264296|264375|264404|264439|264450|264452|265990|266946|267794|268013|268126|269256|269515|270900|271131|271204|271719|272069|272234|272429|272992|273455|274279|274931|306123|306126|306127|306133|306136|306140|306148|306150|306157|306159|306160|306161|306168|306170|306174|306175|306178|306179|306181|306182|306184|306190|310178|310202|310208|310214|310215|310216|310217|310218|310220|310223|310225|310243|310245|310253|310258|310259|310260|310262|310264|310267|310278|310279|310281|310285|310286|310289|310291|310294|310296|310298|310304|310306|310310|315508|315518|315520|315522|315523|315525|315533|315538|315539|315540|315547|315548|315558|315560|315563|315565|315670|315675|315681|315684|315687|315689|315693|315697|315701|315704|315711|315714|315716|315718|315730|315735|315738|315745|315750|353821|353898|357675|357676|357677|357678|357679|357680|357681|357682|357683|357684|357685|357686|357687|357688|357689|357690|357691|357692|357693|357694|357695|357696|357697|357698|357699|357700|357701|357702|357703|357704|357705|357706|357707|357708|357709|357710|357711|357712|357713|357714|357715|357716|357717|357718|357719|357720|357721|357722|357723|357724|357725|357726|357727|357728|357729|357730|357731|357732|357733|357734|357735|357736|357737|357738|357739|357740|357741|357742|357743|357744|357745|357746|357747|357748|357749|357750|357751|357752|357753|357754|357755|357756|360902|361421|361530|363706|369643|421691|421692|425806|428865|428866|428868|428871|428874|428876|428878|428880|428883|428884|428885|428887|428888|432216|432217|438863|438915|441245|441247|441248|441249|441250|444319|444321|457745|458110|458111|458643|459117|459120|459138|459142|481829|490211|495617|512835|514581|523181|523529|523772|523791|523796|523799|523800|523801|523808|523809|523811|523812|524079|524080|524081|524085|524086|524087|524093|524345|524348|524357|524359|524362|524373|524375|524379|524400|524416|524421|524423|524428|524433|536753|539015|539016|544505|544506|544508|544512|544514|544521|544528|544537|544540|544542|544545|544547|544549|544552|544555|544557|544559|544561|544562|544565|544570|544574|544575|544577|544579|544583|544584|544586|544589|544592|544594|544791|544794|544800|544816|544821|544822|544825|544828|544829|544832|544834|544836|544837|544838|544839|544840|544841|544845|544846|544847|544849|544855|544856|544858|544859|544863|544865|544866|544867|544873|544875|544876|544879|544880|544881|544884|544885|544888|544889|544891|544895|544897|544898|544899|544900|544901|544902|544904|544906|544907|544909|544911|544921|544922|544923|544926|544927|544931|544933|544934|544935|544937|544939|544943|544944|544947|544948|544949|544953|544954|544955|544959|544961|544966|544969|544973|544974|544978|544979|544980|544983|544985|544989|544993|544998|544999|545000|545003|545005|545007|545008|545012|545013|545015|545018|545020|545023|545025|545027|545029|545032|545043|545048|545067|545070|545072|545074|545075|545085|545086|545087|545088|550610|550612|550613|550614|550661|552128|553172|561864|562333|562549|562553|562554|562556|562557|562560|562561|563179|563181|563189|563194|563195|563198|563200|563201|563202|563206|564559|564561|564566|564568|565283|565290|565296|565299|565303|565305|565309|565310|567308|567309|568265|568276|568277|568284|568287|576285|577073|577076|577077|577078|578472|579470|579471|579476|579480|579505|579514|579519|579526|579527|579530|579531|579533|579535|579536|579544|579551|579554|579568|579569|579701|579716|579729|589055|612149|612835|614327|614328|614329|614330|614331|614332|614333|620311|622889|626181|626182|637495|637496|637497|637498|637499|637500|637501|637502|637503|637504|637505|637506|637507|637508|637509|637510|637511|637512|637513|637514|637515|637516|637517|637518|637519|637520|637521|637522|637523|637524|637525|637526|637527|637528|637529|637530|637531|637532|637533|637534|637535|637536|637537|637538|637539|637540|637541|637542|637543|637544|637545|637546|637547|637548|637549|651727|651730|651768|651815|651827|651830|651831|651833|651878|651919|651927|652013|652014|692529|692530|692531|692532|692533|692534|692535|692536|692537|692538|692539|692540|692541|692542|692543|692544|695402|695403|700698|700699|700700|700701|700702|700703|700704|711671|711672|711673|723222|723224|723225|723226|723227|736786|736787|736788|736789|736791|744413|751277|751279|751281|751282|751285|751286|751287|759675|759717|759721|759839|766939|766941|766945|766946|766949|766951|766953|766956|766957|766958|766959|766960|766961|775295|775302|775440|775446|777790|783178|783180|783183|783188|783190|783193|783194|783195|787500|787501|787751|789124|790827|790828|790829|790830|790831|792775|793292|796200|800357|800358|800371|800543|801549|801577|805592|820002|820003|820004|820005|820006|820007|820008|820009|820010|820011|820012|820013|820014|820015|820016|820017|820018|820019|820020|820021|820022|820023|820024|820025|820026|820027|820028|820029|835167|835168|835169|835170|835171|835172|835173|835174|835175|835176|835177|835178|835179|835180|835181|835182|835183|835184|835185|835186|835187|835188|835189|835190|835191|835192|835193|835194|835195|835196|835197|835198|835199|835200|835201|835202|835203|835204|835205|835206|835207|835208|835209|835210|835211|835212|835213|835214|835215|835216|835217|835218|835219|835220|835221|835222|835223|835224|835225|835226|835227|835228|835229|835230|835231|835232|835233|835234|835235|835236|835237|835238|835239|835240|835241|835242|835243|835244|835245|835246|835247|835248|835249|835250|835251|835252|835253|835254|835255|835256|835257|835258|835259|835260|835261|835262|835263|835264|835265|835266|835267|835268|835269|835270|835271|835272|835273|835274|835275|835276|835277|835278|835279|835280|835281|851211|851213|852451|852452|852457|852458|852463|859688|900158|900159|900160|900161|900162|900163|900164|900165|900166|900167|900168|900169|900170|900171|900172|900173|900174|900175|900176|900177|900178|900179|900180|900181|900182|900183|900184|900185|900186|900187|900188|900189|900190|900191|900192|900193|900194|900195|900196|900197|900198|900199|900200|900201|900202|900203|900204|900205|900206|900207|900208|900209|900210|900211|900212|900213|900214|900215|900216|900217|900218|900219|900220|900221|900222|900223|900224|900225|900226|900227|900520|900521|900522|900523|900524|900525|900526|900527|900528|904192|904193|904194|904195|904196|904197|904198|904915|905849|919181|925282|925283|925284|925285|925286|925287|925288|925289|925290|925291|925292|925293|925294|925295|925296|925297|925298|925299|925300|925301|925302|925303|925304|925305|934452|934453|934454|934455|934456|934457|934458|934459|934460|934461|934462|934463|934464|934465|934466|934467|934468|934469|934470|934471|934472|934473|934474|934475|934476|934477|934478|940117|940118|940119|940890|940915|940916|946236|946237|946238|946239|946240|946241|946242|946243|946244|946245|946246|946247|946248|946249|946250|946251|946252|946253|946254|946255|946256|946257|946258|946259|946260|946261|946262|946263|946264|946265|946266|946267|946268|946269|946270|946271|946272|946273|946274|946275|946276|946277|955531|955532|955533|955534|955535|955536|955537|955538|955539|955540|955541|955542|955543|955544|955545|955546|955547|955548|955549|955550|955551|955552|955553|955554|955555|955556|955557|955558|955559|955560|955561|955562|955563|955564|955565|955566|955567|955568|955569|955570|955571|955572|955573|955574|955575|955576|955577|955578|955579|955580|955581|955582|955583|955584|955585|955586|955587|955588|955589|955590|955591|955592|955593|955594|955595|955596|955597|955598|955599|955600|955601|955602|955603|955604|955605|955606|955607|959872|959904|960662|960663|960664|960665|963151|963670|963671|965973|965974|965975|966036|978485|978486|978487|978488|978489|978490|978491|978492|978493|978494|978495|978496|978497|978498|978499|978500|978501|978502|978503|978504", "text": "Cohen syndrome" }, { - "baseId": "17860|21766|23942|23943|25867|25924|26033|26225|26669|26734|26755|26763|26783|26848|26850|26853|26867|26868|27440|27922|27928|33920|34124|34175|34312|34314|38997|44305|44308|44431|45158|45369|45412|45413|45414|45415|45630|48981|49040|49510|50327|53583|53593|53599|53601|53604|53612|58529|58699|58839|70500|71281|75664|75739|76049|76631|76632|76633|76635|76646|76666|78451|79311|79317|79318|79319|79323|79426|79450|79466|79480|79481|79508|89851|98224|98227|98292|98293|98295|98527|98530|98570|98571|98632|98679|98780|98785|98786|98788|98831|98832|98835|98837|98839|98841|99039|99041|99042|99043|99044|99045|99047|99049|99139|99298|99300|99305|99306|99309|99310|99311|99314|99316|99317|99319|99320|99321|99322|99323|99324|99326|99330|99373|99389|99390|99446|99448|99449|99462|99463|99464|99465|99466|99467|99488|99489|99491|99493|99494|99495|99496|99497|99501|99503|99504|99506|99507|99530|99546|99547|99553|99559|99561|99564|99565|99573|99574|99575|99576|99577|99578|99580|99581|99582|99583|99609|99610|99611|99612|99613|99616|99617|99618|99619|99622|99623|99626|99627|99628|99629|99651|99654|99656|99666|99668|99669|99670|99673|99674|99675|99680|99923|99925|99975|99976|100006|100010|100011|100012|100015|100017|100278|100771|100777|100782|100923|100926|100934|100935|100936|100937|100939|100940|100942|100944|100949|100950|100952|100954|100956|100957|100958|100959|100961|100962|100963|100964|100965|100966|100967|100970|100977|100978|100981|100983|100986|100989|100991|100992|100994|101000|101047|101052|101085|101087|101088|101089|101092|101094|101097|101098|101102|101105|101147|101153|101155|101163|101164|101167|101201|101202|101203|101208|101210|101226|101264|101275|101305|101306|101307|101310|101311|101312|101313|101317|101330|101377|101378|101379|101380|101381|101382|101383|101384|101385|101388|101452|101453|101454|101455|101460|101463|101464|101468|101471|101472|101475|101476|101503|101505|101506|101507|101508|101509|101511|101516|101517|101519|101520|101525|101527|101528|101530|101534|101535|101540|101541|101647|101662|101664|101669|101670|101671|101673|101674|101675|101679|101680|101681|101688|101689|101691|101693|101697|101699|101700|101702|101703|101704|101705|101707|101708|101711|101712|101713|101718|101720|101721|101722|101723|101725|101728|101732|101735|101736|101741|101742|101748|101749|101754|101755|101758|101760|101761|101763|101764|101765|101769|101770|101771|101772|101773|101795|101797|101821|101822|101823|101868|101870|101873|101876|101877|101878|101879|101881|101883|101894|101914|101928|101929|101930|101932|101934|101936|101937|101941|101943|101945|101946|101947|101949|101951|101952|101957|101964|101965|101967|101968|101973|101976|102033|102034|102038|102039|102045|102046|102052|102054|102070|102071|102072|102073|102076|102077|102080|102081|102084|102085|102086|102088|102089|102090|102092|102094|102097|102150|102152|102156|102157|102158|102159|102225|102227|102229|102233|102242|102243|102257|102258|102345|102347|102348|102388|102414|102440|102441|102525|102526|102527|102528|102531|103054|104323|104324|104325|104329|104330|104333|104335|104348|104356|104360|105813|105816|131846|131848|131850|131852|131855|131858|131859|131860|131861|131865|131866|131867|131868|131869|131870|131871|131872|131873|131874|131875|131876|131877|131878|131879|131880|131881|131883|131885|131886|133896|133898|133900|133912|133913|133914|133915|133916|133917|133918|133919|133920|133921|133922|133923|133924|133925|133935|133936|133941|133944|133972|133980|133988|133989|133990|133991|133993|133994|133995|133996|133997|133998|133999|134000|134001|134002|134003|134004|134005|134006|134007|134009|134062|134064|134066|134067|134068|134069|134071|134072|134073|134247|134248|134249|134251|134252|134253|134254|134311|134371|134374|134375|134376|134378|134380|134382|134383|134384|134385|134386|134387|134388|134389|134390|134391|134422|134423|134424|134426|134428|134429|134511|134513|134515|134516|134517|134518|134519|134521|134522|134523|134550|134554|134555|134565|134583|134584|134594|134595|134596|134612|134613|134626|134627|134628|134629|134635|134636|134638|134639|134640|134641|134642|134645|134646|134647|134648|134649|134650|134651|134653|134654|134661|134690|134692|134693|134694|134695|134697|134698|134699|134700|134701|134702|134726|134728|134730|134762|134763|134764|134819|134828|134829|134830|134831|134832|134833|134834|134835|134836|134838|134839|134841|134842|134844|134929|134930|135015|135016|135017|135019|135020|135022|135023|135024|135025|135026|135027|135031|135036|135039|135053|135058|135215|135219|135220|135221|135222|135263|135264|135265|135266|135268|135269|135270|135273|135284|135285|135286|135287|135288|135296|135297|135313|135314|135316|135318|135319|135332|135333|135334|135336|135421|135467|135468|135469|135484|135485|135529|135532|135533|135534|135658|135660|135661|135663|135664|135665|135666|135670|135671|135672|135673|135689|135691|135693|135694|135695|135697|135698|135700|135754|135755|135757|135758|135760|135802|135827|135833|135969|135970|135972|135973|135975|135976|135977|136058|136059|136063|136067|136068|136070|136071|136075|136076|136077|136078|136079|136080|136081|136082|136084|136085|136086|136087|136088|136090|136091|136138|136162|136163|136164|136167|136168|136169|136170|136171|136272|136273|136287|136295|136297|136298|136299|136300|136301|136302|136303|137396|137398|137399|137663|137665|137671|137672|137673|137676|138240|139114|140124|140166|140316|140318|140326|140333|140335|140336|140338|140414|140415|140416|140417|140419|140513|140515|140520|140521|140523|140525|140531|140534|140535|140537|140542|141089|141090|141091|141092|141093|141094|141095|141137|141138|141152|141153|141156|141193|141208|141209|141211|141212|141216|141218|141221|141222|141223|141587|141588|141589|141646|141647|141650|141653|141655|141684|141875|141877|141878|141880|141889|141890|141891|141894|141896|141898|141900|142138|142248|142249|142250|142252|142253|142260|142262|142276|142293|142294|142296|142299|142301|142304|142411|142412|142414|142415|142420|142421|142423|142426|142428|142429|142430|142496|142517|142546|142676|142682|142683|142685|142687|142688|142689|142714|142716|142721|142722|142725|142727|142730|142732|142735|142772|142774|142775|142778|142858|142861|142863|142868|142869|142870|142903|142906|142910|142911|142912|142913|143046|143049|143051|143052|143054|143057|143058|143087|143107|143108|143110|143114|143118|143255|153030|153190|153273|153289|153352|153359|153389|153411|153413|153418|153441|153443|153482|153496|153507|153540|165528|165932|166523|167562|167565|167566|167568|167570|167571|167574|167575|167591|167603|167610|167920|167997|168029|168035|168110|168113|168116|168124|168125|168127|168129|168134|168136|168156|168163|168166|168187|168189|168190|168191|168293|168315|168324|168332|168354|168359|168364|168386|168427|168489|168517|168519|168582|168592|168597|168622|168627|168633|168634|168640|168813|168817|168822|168823|168825|168827|168829|168831|168834|168838|168840|169047|169050|169051|169056|169078|169206|169214|169217|169241|169249|169257|169446|169455|169599|169601|169874|169937|169945|169946|169949|169950|169951|169953|170087|170093|170137|170139|170152|170153|170166|170169|170175|171686|175395|175543|176313|176951|177006|177054|177069|177082|177163|177184|177214|177257|177285|177308|177379|177420|177427|177428|177453|177456|177532|177533|177550|177589|177596|177599|177601|177621|177650|177669|177670|177693|177704|177714|177721|177726|177727|177756|177760|177763|177807|177830|177831|177878|177995|178024|178064|178069|178073|178084|178088|178151|178994|178998|179007|187728|187773|187828|187874|188021|188023|188539|188562|188588|188616|189019|189338|189341|189342|190199|190259|190351|190352|190361|190450|190472|190473|190484|190486|190512|190605|190606|190607|190785|190837|190838|191008|191070|191074|191200|191214|191221|191251|191292|191303|191359|191411|191419|191522|191674|191692|191695|191709|191793|191794|191800|191801|191883|191936|192013|192055|192090|192129|192184|192232|192453|192477|192488|192491|192585|192587|192589|192628|192632|192694|192741|192742|192750|192831|192900|192932|192971|192994|193061|193093|193103|193104|193186|193191|193290|193325|193342|193349|193478|193620|193637|193639|193667|193679|193681|193690|193713|193717|193719|193720|193751|193752|193753|193789|193831|193832|194076|194078|194079|194082|194104|194146|194156|194174|194189|194197|194203|194292|194300|194407|194443|194451|194514|194533|194605|194633|194660|194679|194690|194703|194880|194886|194887|194953|195066|195156|195162|195174|195218|195338|195356|195384|195389|195450|195455|195513|195566|195629|195650|195674|195710|195722|195862|195912|195968|196000|196002|196003|196046|196047|196051|196058|196147|196169|196179|196225|196280|196301|196305|196310|201049|201061|201062|201109|201149|201189|201192|201194|201200|201209|201228|201241|201243|201273|201274|201306|201325|201353|201356|201403|201436|201466|201477|201510|201539|201597|201657|201662|201669|201675|201678|201683|201685|201686|201689|201691|201708|201720|202033|202036|202047|202060|202065|202069|202071|202075|202077|202107|202111|202114|202122|202284|202285|202325|202477|202610|202614|202652|202656|202658|202661|202662|202676|202717|202720|202722|202755|202758|202761|202809|202817|202819|202852|202858|203082|203309|203310|203319|203324|203328|203351|203369|203371|203374|203502|203514|203522|203526|203532|203533|203555|203558|203578|203590|203603|203608|203897|203904|203925|203932|203965|204011|204027|204029|204060|205325|206728|206811|206872|206874|206883|206886|206957|206960|206961|206963|206965|206967|206969|206970|206973|206977|207002|207003|207082|207086|207089|207265|207266|207268|207274|207317|207318|207341|207343|207346|207347|207349|207351|207352|207353|207355|207356|207360|207366|207367|207370|207376|207379|207386|207389|207390|207402|207409|207411|207413|207507|207509|207510|207512|207522|207524|207526|207527|207530|207548|207550|207581|207584|207585|207595|207664|207665|207667|207669|207673|207676|207677|207681|207683|207686|207692|207694|207696|207697|207945|207979|207980|208056|208058|208060|208062|208063|208065|208067|208070|208073|208077|208080|208150|208151|208152|208154|208237|208238|208258|208296|208297|208299|208353|208355|208357|208358|208363|208365|208367|208539|208545|208547|208548|208549|208552|208553|208617|208721|208819|208840|208842|208853|208881|208886|208887|208890|208921|208925|208930|208933|208979|208984|208987|208989|208990|208995|208996|208999|209001|209004|209021|209040|209045|209047|209085|209089|209099|209110|209122|209123|209125|209129|209132|209133|209149|209153|209160|209180|209184|209187|209204|209208|209218|209253|209307|210458|210465|210471|210476|210477|210478|210483|210484|210504|210515|210516|210531|210533|210551|210576|210578|212003|212999|215180|215327|215516|215559|215560|215614|215616|215617|215618|221075|222248|222886|231515|232150|236905|237006|237189|237231|237271|238152|238365|239850|239898|239899|239900|240392|240393|240506|240591|241528|241530|241764|241769|241772|241774|242175|242176|242177|242178|242179|242180|242181|242252|242297|242307|242321|242324|242445|242446|243730|243731|243733|243734|243750|243764|243765|243771|243817|243823|244344|244353|244356|244773|244777|244778|244791|244794|244797|244858|245199|245218|245219|247180|247192|247202|247209|249528|249529|250169|251853|253149|253150|253168|253221|253307|253371|254316|255441|255443|255445|255446|255448|255449|255450|255489|256091|256092|256093|256787|256788|257755|257770|257776|257784|257833|258741|259703|259921|260147|264530|265479|265733|265740|265758|265767|265778|265916|265958|266114|266150|266279|266798|266816|266829|266946|266969|267044|267206|267413|267447|267449|267450|267590|267747|267772|267794|267824|268024|268250|268395|268419|268459|268461|268933|268934|268938|268980|269077|269241|269722|269731|270296|270522|270621|270747|271301|271305|271447|271496|271636|271799|271846|272069|272155|272202|272372|272429|272497|272980|273200|273390|273653|274036|274277|274280|274930|277331|277520|277550|278382|278393|278413|281999|282022|282375|283182|284291|284651|285085|285095|285553|285565|285567|286232|286252|288970|297425|297966|297967|299530|299534|300142|300144|300175|302112|302751|302756|304433|304661|304708|304709|305650|305662|306082|306087|307714|307763|307904|307911|307957|308148|308150|308162|309627|309652|309679|310208|310217|310835|311956|311979|311994|311995|312169|313180|313290|313324|314166|314918|315127|315518|315533|315538|315675|316730|316733|316905|317545|317547|317563|317566|317577|317579|317849|317853|317858|317859|317895|317910|318069|318085|318087|318112|318355|318382|318522|320125|320133|320136|320141|320152|320175|323834|323848|324233|324619|327951|328722|328724|328743|329086|329923|330590|331689|335351|336960|337211|337249|339267|339363|348580|348725|348727|348796|348815|349104|352102|352107|352261|352788|352827|352874|352876|352877|352928|352971|359708|360063|360082|360515|361317|362606|363655|363682|363705|363833|363838|363873|363912|363920|363943|364042|364181|364370|364538|364563|365276|365377|365557|365572|365583|365624|365771|365791|365803|365819|365851|365858|366487|366508|366524|366856|366857|366883|367598|367626|367722|367732|369539|369579|369776|369876|370245|370250|370251|370256|370266|370280|370301|370318|370499|370591|370807|370815|370910|370916|371144|371931|372139|372145|372147|372170|372407|372416|372430|372436|372872|372921|372942|373082|373325|373374|373596|373616|373822|373831|373838|373849|373867|373894|373912|373913|374078|374140|374151|374216|374547|374563|374576|374577|374738|374818|374830|374876|374907|374930|374940|374947|375132|375157|375158|375719|375746|375792|375808|375812|375839|375920|376273|376288|376326|376858|376895|376901|376919|376954|376962|376965|376967|377235|377240|377242|377244|377248|377261|377389|377461|377470|377501|377505|377682|377694|377731|377791|377855|377877|377900|377981|378028|378046|378152|378363|378374|378376|378397|378412|378421|378441|378451|378452|378466|378820|378840|378869|378925|378937|378940|378965|378981|379035|379047|379071|379082|379164|379176|379177|379278|379305|379328|379361|379377|379406|379423|379431|379440|379477|379488|379508|379616|379897|379904|379929|380062|380082|380086|380103|389192|390256|390326|390331|390332|390335|390337|390366|390374|390379|390445|390489|390841|391124|391222|391252|391301|391308|391419|391604|394945|395140|395244|395246|395247|395325|395448|395695|395833|396109|396540|398955|398999|399031|399069|399375|399480|399484|399506|400221|400222|400248|400669|400751|400875|400878|400941|401172|401196|401407|401419|401423|401446|401472|401574|401659|401979|401989|403106|403353|403779|404074|404098|404110|404114|404140|404146|404156|404176|404178|404488|404510|404534|404584|404593|407014|407408|407642|408610|409114|409194|409429|410484|410486|410490|410491|410493|410520|410527|411149|411193|413410|413411|413413|413561|413805|413837|413848|415626|415665|421625|422065|422239|422422|425669|425943|426102|426285|426289|426291|426670|428010|428354|428357|428384|428445|428518|428545|428546|428547|428548|428551|428552|428557|428568|428572|428579|428773|428775|428776|428777|428882|428888|428958|428961|428964|428966|428967|428986|428987|429268|429410|429544|429610|429611|429612|429828|429930|429931|429934|429945|429948|430073|430136|430143|430150|430153|430365|430369|430370|430598|430620|430622|430635|430651|430691|430717|430726|430760|430765|430791|430793|430849|430859|430935|431505|433098|433576|437998|438042|438319|438344|438432|438443|438578|438709|438813|438884|438896|438915|438926|438931|438957|438986|439116|439135|439339|439852|439854|440361|440688|440738|441257|441362|441946|442036|442048|442059|442439|442929|442983|443021|443211|443760|443919|443928|445519|446066|446576|446655|446776|447217|447369|447421|447469|447484|448117|448712|448717|448792|449088|450177|450179|450185|450188|450237|450384|450399|450401|450487|450639|450710|450727|450884|450910|451625|451631|451687|451896|451915|451954|451955|451972|452132|452136|452138|452145|452160|454720|455008|455018|455087|455183|455198|455434|455453|455629|455665|455696|455926|458725|459036|459052|459106|459142|459363|459373|459924|461667|462975|463019|463207|463468|463482|463705|463732|463745|463755|463768|463805|464763|465704|465780|466023|466201|466463|466749|468085|468112|468122|468509|469021|469049|469424|469446|469618|469621|469866|469904|470164|470619|470642|470810|470967|471003|471007|471021|471050|471058|471070|471342|471350|471381|471388|471391|471436|471634|471649|471727|471731|471732|471733|471789|471792|471983|471987|471997|472011|472047|472051|472069|472073|472077|472089|472090|472153|472158|472166|472170|472205|472223|486408|486517|486914|488369|489079|489093|489115|489120|489122|490083|490287|490288|490316|490783|491350|491358|492028|492407|492801|493005|493274|493432|493854|494058|498499|499061|499844|500058|500209|500300|500781|501009|501240|502170|502348|502477|502920|503713|504271|504280|504329|504331|504385|504533|504723|504893|504899|504932|505050|505270|505536|506225|506356|506786|507176|507182|507186|507580|507766|507782|507861|507880|508000|508014|508171|508176|508222|508254|508257|508441|508451|508467|508602|508647|508906|510378|510918|510923|511166|511259|511351|511443|511560|511609|511661|512030|512112|512592|512645|512720|512767|512805|512822|514570|515044|515262|515265|515820|515910|516483|516525|517974|518026|518050|518117|518125|518499|518752|518762|518924|521961|522282|522299|523218|523664|523772|523811|524237|524252|524259|524264|524292|524312|524348|524379|524421|524746|524895|525032|527242|527463|527879|528224|532365|532743|533146|533278|533908|534570|534657|534673|534772|534894|534937|534962|534996|535000|535001|535086|535096|535179|535201|537041|537080|537258|537412|537418|538288|538399|538515|546307|551349|551665|553168|557284|558839|559318|560169|560791|560867|562924|562988|563112|564828|565167|565826|566195|568634|568657|568866|572666|573651|573701|573896|574891|574905|575019|575316|576438|576534|576710|576816|577415|577548|577613|577616|577937|578703|578704|578705|578706|578710|578711|578712|578713|578714|578715|578716|578717|578718|578719|578720|578721|578722|578723|578724|578725|578726|578727|578728|578729|578730|578731|578732|578733|578734|578735|578736|578737|578738|578739|578740|578741|578742|578743|578744|578745|578746|578747|578748|578749|578750|578751|578752|578753|578754|578755|578757|578758|578759|578760|578761|578764|578765|578766|578767|578768|578771|578772|578773|578775|578776|578778|578779|578780|578782|578783|578784|578785|578786|578787|578788|578790|578791|578792|578793|578794|578797|578799|578800|578801|578802|578803|578804|578805|578806|578807|578808|578809|578811|578815|578817|578821|578822|578824|578825|578826|578830|578835|578837|578838|578842|578843|578887|578888|578892|578893|578896|578897|578899|578900|578901|578906|578907|578909|578910|578911|578917|578918|578919|578920|578922|578923|578924|578925|578926|578927|578928|578929|578930|578931|578932|578933|578934|578935|578936|578937|578938|578939|578940|578942|578944|578945|578946|578947|578948|578949|578950|578951|578952|578953|578954|578955|578956|578957|578958|578959|578960|578961|578962|578963|578964|578965|578966|578967|578968|578969|578970|578971|578972|578973|578974|578975|578976|578977|578978|578979|578980|578981|578982|578983|578984|578985|578987|578988|578989|578990|578991|578992|578993|578994|578996|578997|578998|578999|579000|579001|579002|579003|579005|579006|579007|579009|579010|579012|579013|579015|579016|579018|579019|579021|579022|579023|579025|579026|579027|579028|579029|579030|579031|579032|579033|579034|579035|579036|579037|579038|579040|579041|579042|579043|579046|579047|579048|579049|579052|579053|579054|579055|579056|579057|579058|579059|579061|579062|579064|579065|579066|579067|579069|579070|579071|579072|579073|579074|579075|579076|579077|579078|579079|579080|579081|579082|579083|579085|579086|579087|579089|579090|579099|579100|579109|579111|579113|579115|579118|579123|579124|579126|579127|579128|579129|579130|579131|579132|579133|579134|579135|579136|579137|579138|579139|579140|579141|579142|579143|579144|579145|579146|579147|579148|579149|579150|579151|579152|579153|579154|579155|579156|579157|579158|579159|579160|579161|579162|579163|579164|579165|579166|579167|579168|579169|579170|579171|579172|579173|579174|579175|579176|579177|579178|579179|579180|579181|579182|579183|579184|579185|579186|579187|579188|579189|579190|579191|579192|579193|579194|579195|579196|579197|579198|579199|579200|579201|579202|579203|579204|579205|579206|579207|579208|579209|579210|579211|579212|579213|579214|579215|579216|579220|579221|579222|579223|579224|579225|579226|579227|579228|579229|579230|579231|579232|579233|579234|579235|579236|579237|579239|579240|579241|579242|579243|579244|579245|579246|579247|579248|579249|579250|579251|579252|579253|579254|579255|579256|579257|579258|579259|579260|579261|579262|579264|579265|579266|579267|579268|579269|579270|579271|579272|579273|579274|579275|579276|579277|579278|579279|579280|579281|579282|579283|579284|579285|579286|579287|579288|579289|579290|579291|579292|579293|579294|579295|579296|579297|579298|579299|579300|579301|579302|579303|579304|579305|579306|579307|579308|579309|579310|579311|579312|579313|579314|579315|579316|579317|579318|579319|579320|579322|579323|579324|579326|579327|579328|579329|579330|579331|579332|579333|579334|579335|579336|579337|579338|579339|579340|579341|579342|579343|579344|579345|579347|579348|579349|579350|579351|579352|579353|579354|579355|579356|579357|579358|579359|579360|579361|579362|579363|579364|579365|579366|579367|579368|579369|579370|579371|579372|579375|579378|579379|579380|579381|579382|579384|579385|579386|579390|579391|579392|579393|579394|579397|579398|579400|579402|579403|579404|579405|579406|579407|579408|579409|579410|579411|579412|579413|579414|579415|579416|579417|579418|579419|579420|579421|579422|579423|579424|579425|579426|579427|579428|579429|579430|579431|579432|579433|579434|579435|579436|579437|579438|579439|579440|579441|579442|579443|579444|579445|579446|579447|579448|579449|579450|579451|579452|579453|579454|579455|579456|579457|579458|579459|579460|579461|579462|579463|579464|579465|579467|579468|579469|579470|579471|579472|579473|579474|579475|579476|579477|579478|579479|579480|579482|579483|579484|579486|579487|579488|579489|579490|579492|579494|579495|579497|579498|579499|579500|579501|579502|579504|579505|579506|579507|579509|579510|579511|579512|579513|579514|579515|579516|579517|579518|579519|579520|579521|579522|579523|579524|579525|579526|579527|579528|579529|579530|579531|579532|579533|579534|579535|579536|579537|579538|579541|579542|579544|579545|579549|579551|579552|579553|579554|579557|579559|579561|579562|579563|579565|579568|579569|579570|579572|579573|579574|579575|579576|579577|579578|579581|579582|579583|579585|579586|579587|579588|579589|579593|579595|579598|579600|579602|579605|579607|579608|579609|579610|579611|579612|579613|579614|579616|579617|579618|579619|579620|579622|579625|579628|579629|579630|579631|579633|579634|579636|579637|579638|579639|579640|579641|579642|579643|579644|579645|579646|579647|579648|579649|579650|579651|579652|579653|579654|579655|579657|579658|579659|579660|579661|579662|579663|579664|579665|579666|579667|579668|579669|579670|579671|579672|579673|579674|579675|579676|579677|579678|579679|579680|579681|579682|579683|579684|579685|579686|579688|579689|579690|579695|579696|579700|579701|579703|579706|579709|579710|579715|579716|579720|579721|579722|579725|579727|579729|579730|579732|579735|579736|579737|579738|579739|579745|579746|579747|579748|579749|579751|579752|579753|579754|579755|579756|579757|579758|579759|579760|579761|579762|579763|579764|579765|579766|579767|579768|579769|579770|579771|579772|579773|579774|579775|579776|579777|579778|579780|579781|579782|579783|579785|579786|579788|579789|579791|579795|579796|579798|579799|579800|579801|579802|579804|579806|579808|579811|579812|579813|579814|579815|579817|579818|579819|579821|579822|579823|579824|579825|579826|579827|579828|579829|579830|579831|579832|579833|579835|579837|579838|579839|579840|579841|579842|579843|579844|579845|579846|579847|579848|579849|579850|579851|579852|579854|579855|579856|579857|579858|579859|579860|579861|579862|579863|579864|579865|579866|579867|579868|579869|579870|579871|579872|579873|579874|579875|579876|579877|579878|579879|579880|579881|579882|579883|579884|579885|579886|579887|579888|579889|579890|579891|579892|579893|579894|579895|579896|579897|579898|579899|579900|579901|579902|579903|579904|579905|579906|579907|579908|579909|579910|579911|579912|579914|579916|579917|579918|579920|579921|579922|579923|579925|579926|579927|579928|579930|579931|579932|579933|579934|579935|579936|579937|579938|579939|579940|579941|579943|579945|579946|579947|579952|579953|579954|579955|579956|579957|579959|579961|579962|579963|579964|579965|579966|579967|579968|579969|579970|579971|579972|579973|579974|579975|579976|579978|579979|579980|579981|579982|579986|579987|579989|579990|579991|579992|579993|579995|579997|579999|580000|580001|580002|580003|580004|580005|580006|580008|580011|580012|580013|580014|580015|580017|580018|580022|580023|580024|580025|580026|580027|580028|580029|580030|580031|580032|580033|580034|580035|580036|580037|580039|580040|580041|580042|580043|580044|580046|580047|580048|580051|580052|580053|580054|580060|580062|580066|580071|580072|580073|580075|580077|580079|580081|580085|580087|580088|580089|580090|580091|580092|580093|580095|580096|580097|580098|580101|580102|580103|580104|580105|580106|580108|580109|580111|580114|580115|580116|580117|580118|580119|580120|580121|580122|580123|580124|580125|580126|580127|580128|580129|580130|580131|580132|580135|580137|580138|580140|580141|580142|580146|580148|580154|580157|580158|580163|580166|580168|580172|580175|580176|580177|580180|580185|580188|580190|580191|580194|580198|580199|580201|580202|580204|580207|580210|580212|580213|580215|580217|580223|580224|580226|580227|580230|580241|580242|580244|580251|580256|580257|580258|580261|580264|580265|580267|580269|580270|580271|580272|580273|580274|580276|580278|580280|580281|580282|580283|580284|580286|580287|580288|580289|580290|580291|580292|580293|580294|580295|580296|580297|580298|580299|580300|580301|580302|580303|580304|580305|580306|580307|580308|580309|580310|580311|580312|580313|580314|580315|580316|580317|580318|580319|580320|580321|580322|580323|580324|580325|580326|580327|580328|580329|580330|580332|580333|580335|580337|580339|580340|580341|580342|580343|580344|580345|580347|580348|580352|580355|580356|580357|580358|580360|580362|580363|580364|580365|580368|580369|580370|580375|580377|580378|580379|580380|580382|580383|580386|580390|580391|580392|580395|580397|580399|580401|580402|580403|580404|580406|580407|580409|580411|580412|580413|580414|580415|580417|580418|580419|580423|580424|580425|580429|580431|580432|580434|580435|580437|580438|580440|580444|580446|580448|580449|580453|580456|580458|580459|580460|580461|580462|580463|580465|580466|580468|580469|580470|580471|580472|580473|580475|580476|580478|580480|580481|580482|580483|580485|580487|580488|580489|580490|580491|580492|580496|580498|580499|580500|580501|580502|580503|580504|580506|580507|580508|580509|580510|580511|580513|580514|580516|580518|580519|580520|580521|580522|580523|580524|580525|580526|580527|580528|580529|580530|580531|580532|580533|580534|580535|580536|580537|580538|580539|580540|580541|580542|580543|580544|580545|580546|580547|580548|580549|580550|580551|580552|580553|580555|580556|580557|580558|580559|580560|580561|580563|580565|580566|580567|580569|580571|580573|580574|580575|580576|580577|580578|580580|580581|580584|580585|580587|580590|580591|580592|580594|580598|580600|580602|580604|580605|580606|580608|580609|580613|580615|580616|580620|580621|580622|580624|580625|580627|580628|580629|580630|580631|580632|580634|580635|580636|580637|580640|580641|580643|580646|580647|580649|580650|580652|580654|580656|580660|580662|580663|580664|580665|580666|580667|580668|580670|580672|580673|580674|580675|580676|580677|580678|580679|580680|580681|580682|580685|580687|580688|580689|580690|580692|580693|580694|580695|580696|580697|580699|580701|580702|580703|580704|580705|580706|580707|580708|580709|580710|580711|580712|580713|580714|580715|580716|580717|580718|580719|580720|580721|580724|580725|580727|580728|580729|580730|580731|580732|580733|580735|580737|580738|580740|580741|580742|580743|580745|580747|580748|580749|580750|580751|580752|580753|580754|580755|580756|580757|580758|580759|580760|580761|580762|580763|580764|580765|580767|580769|580771|580772|580773|580774|580775|580776|580777|580778|580779|580781|580782|580784|580787|580788|580789|580790|580791|580792|580793|580794|580795|580796|580797|580798|580799|580800|580801|580802|580803|580804|580805|580806|580807|580808|580809|580810|580811|580812|580813|580814|580815|580816|580817|580818|580819|580820|580821|580822|580823|580824|580825|580826|580827|580828|580829|580830|580831|580832|580833|580834|580835|580836|580837|580838|580839|580840|580841|580842|580843|580844|580845|580846|580847|580848|580849|580850|580851|580852|580853|580854|580855|580856|580857|580858|580859|580860|580861|580862|580863|580864|580865|580866|580867|580868|580869|580870|580871|580872|580873|580874|580875|580876|580877|580878|580879|580880|580881|580882|580883|580884|580885|580886|580887|580888|580889|580890|580891|580892|580893|580894|580895|580896|580897|580898|580899|580901|580902|580903|580904|580905|580906|580907|580908|580909|580910|580911|580912|580913|580914|580915|580916|580917|580918|580919|580920|580921|580922|580923|580924|580925|580926|580927|580928|580929|580930|580931|580932|580933|580934|580935|580936|580937|580938|580939|580940|580941|580942|580943|580944|580945|580946|580947|580948|580949|580950|580951|580952|580953|580954|580955|580956|580957|580958|580959|580960|580961|580962|580963|580964|580965|580966|580967|580968|580969|580970|580971|580972|580973|580974|580975|580976|580977|580978|580979|580980|580981|580982|580983|580984|580985|580986|580987|580988|580989|580990|580991|580992|580993|580994|580995|580996|580997|580998|580999|581000|581001|581002|581003|581004|581005|581006|581007|581008|581009|581010|581011|581012|581013|581014|581015|581016|581017|581018|581019|581020|581021|581022|581023|581024|581025|581026|581027|581028|581029|581030|581031|581032|581033|581034|581036|581037|581038|581039|581040|581041|581042|581043|581044|581045|581046|581047|581048|581049|581050|581051|581052|581053|581054|581055|581056|581057|581058|581059|581060|581061|581062|581063|581064|581065|581066|581067|581068|581069|581070|581071|581072|581073|581074|581075|581076|581077|581078|581079|581080|581081|581082|581083|581084|581085|581086|581087|581088|581089|581090|581091|581092|581093|581094|581095|581096|581097|581098|581099|581100|581101|581102|581103|581104|581105|581106|581107|581108|581109|581110|581111|581112|581113|581114|581115|581116|581117|581118|581119|581120|581121|581122|581123|581124|581125|581126|581127|581128|581129|581130|581131|581132|581133|581134|581135|581136|581137|581138|581139|581140|581141|581142|581143|581144|581145|581146|581147|581148|581149|581150|581151|581152|581153|581154|581155|581156|581157|581158|581159|581160|581161|581162|581163|581164|581165|581166|581167|581168|581169|581170|581171|581172|581173|581174|581175|581176|581177|581178|581179|581180|581181|581182|581183|581184|581185|581186|581187|581188|581189|581190|581191|581192|581193|581194|581195|581196|581197|581198|581199|581200|904875", + "upstreamId": "17860|21766|23942|23943|25867|25924|26033|26225|26669|26734|26755|26763|26783|26848|26850|26853|26867|26868|27440|27922|27928|33920|34124|34175|34312|34314|38997|44305|44308|44431|45158|45369|45412|45413|45414|45415|45630|48981|49040|49510|50327|53583|53593|53599|53601|53604|53612|58529|58699|58839|70500|71281|75664|75739|76049|76631|76632|76633|76635|76646|76666|78451|79311|79317|79318|79319|79323|79426|79450|79466|79480|79481|79508|89851|98224|98227|98292|98293|98295|98527|98530|98570|98571|98632|98679|98780|98785|98786|98788|98831|98832|98835|98837|98839|98841|99039|99041|99042|99043|99044|99045|99047|99049|99139|99298|99300|99305|99306|99309|99310|99311|99314|99316|99317|99319|99320|99321|99322|99323|99324|99326|99330|99373|99389|99390|99446|99448|99449|99462|99463|99464|99465|99466|99467|99488|99489|99491|99493|99494|99495|99496|99497|99501|99503|99504|99506|99507|99530|99546|99547|99553|99559|99561|99564|99565|99573|99574|99575|99576|99577|99578|99580|99581|99582|99583|99609|99610|99611|99612|99613|99616|99617|99618|99619|99622|99623|99626|99627|99628|99629|99651|99654|99656|99666|99668|99669|99670|99673|99674|99675|99680|99923|99925|99975|99976|100006|100010|100011|100012|100015|100017|100278|100771|100777|100782|100923|100926|100934|100935|100936|100937|100939|100940|100942|100944|100949|100950|100952|100954|100956|100957|100958|100959|100961|100962|100963|100964|100965|100966|100967|100970|100977|100978|100981|100983|100986|100989|100991|100992|100994|101000|101047|101052|101085|101087|101088|101089|101092|101094|101097|101098|101102|101105|101147|101153|101155|101163|101164|101167|101201|101202|101203|101208|101210|101226|101264|101275|101305|101306|101307|101310|101311|101312|101313|101317|101330|101377|101378|101379|101380|101381|101382|101383|101384|101385|101388|101452|101453|101454|101455|101460|101463|101464|101468|101471|101472|101475|101476|101503|101505|101506|101507|101508|101509|101511|101516|101517|101519|101520|101525|101527|101528|101530|101534|101535|101540|101541|101647|101662|101664|101669|101670|101671|101673|101674|101675|101679|101680|101681|101688|101689|101691|101693|101697|101699|101700|101702|101703|101704|101705|101707|101708|101711|101712|101713|101718|101720|101721|101722|101723|101725|101728|101732|101735|101736|101741|101742|101748|101749|101754|101755|101758|101760|101761|101763|101764|101765|101769|101770|101771|101772|101773|101795|101797|101821|101822|101823|101868|101870|101873|101876|101877|101878|101879|101881|101883|101894|101914|101928|101929|101930|101932|101934|101936|101937|101941|101943|101945|101946|101947|101949|101951|101952|101957|101964|101965|101967|101968|101973|101976|102033|102034|102038|102039|102045|102046|102052|102054|102070|102071|102072|102073|102076|102077|102080|102081|102084|102085|102086|102088|102089|102090|102092|102094|102097|102150|102152|102156|102157|102158|102159|102225|102227|102229|102233|102242|102243|102257|102258|102345|102347|102348|102388|102414|102440|102441|102525|102526|102527|102528|102531|103054|104323|104324|104325|104329|104330|104333|104335|104348|104356|104360|105813|105816|131846|131848|131850|131852|131855|131858|131859|131860|131861|131865|131866|131867|131868|131869|131870|131871|131872|131873|131874|131875|131876|131877|131878|131879|131880|131881|131883|131885|131886|133896|133898|133900|133912|133913|133914|133915|133916|133917|133918|133919|133920|133921|133922|133923|133924|133925|133935|133936|133941|133944|133972|133980|133988|133989|133990|133991|133993|133994|133995|133996|133997|133998|133999|134000|134001|134002|134003|134004|134005|134006|134007|134009|134062|134064|134066|134067|134068|134069|134071|134072|134073|134247|134248|134249|134251|134252|134253|134254|134311|134371|134374|134375|134376|134378|134380|134382|134383|134384|134385|134386|134387|134388|134389|134390|134391|134422|134423|134424|134426|134428|134429|134511|134513|134515|134516|134517|134518|134519|134521|134522|134523|134550|134554|134555|134565|134583|134584|134594|134595|134596|134612|134613|134626|134627|134628|134629|134635|134636|134638|134639|134640|134641|134642|134645|134646|134647|134648|134649|134650|134651|134653|134654|134661|134690|134692|134693|134694|134695|134697|134698|134699|134700|134701|134702|134726|134728|134730|134762|134763|134764|134819|134828|134829|134830|134831|134832|134833|134834|134835|134836|134838|134839|134841|134842|134844|134929|134930|135015|135016|135017|135019|135020|135022|135023|135024|135025|135026|135027|135031|135036|135039|135053|135058|135215|135219|135220|135221|135222|135263|135264|135265|135266|135268|135269|135270|135273|135284|135285|135286|135287|135288|135296|135297|135313|135314|135316|135318|135319|135332|135333|135334|135336|135421|135467|135468|135469|135484|135485|135529|135532|135533|135534|135658|135660|135661|135663|135664|135665|135666|135670|135671|135672|135673|135689|135691|135693|135694|135695|135697|135698|135700|135754|135755|135757|135758|135760|135802|135827|135833|135969|135970|135972|135973|135975|135976|135977|136058|136059|136063|136067|136068|136070|136071|136075|136076|136077|136078|136079|136080|136081|136082|136084|136085|136086|136087|136088|136090|136091|136138|136162|136163|136164|136167|136168|136169|136170|136171|136272|136273|136287|136295|136297|136298|136299|136300|136301|136302|136303|137396|137398|137399|137663|137665|137671|137672|137673|137676|138240|139114|140124|140166|140316|140318|140326|140333|140335|140336|140338|140414|140415|140416|140417|140419|140513|140515|140520|140521|140523|140525|140531|140534|140535|140537|140542|141089|141090|141091|141092|141093|141094|141095|141137|141138|141152|141153|141156|141193|141208|141209|141211|141212|141216|141218|141221|141222|141223|141587|141588|141589|141646|141647|141650|141653|141655|141684|141875|141877|141878|141880|141889|141890|141891|141894|141896|141898|141900|142138|142248|142249|142250|142252|142253|142260|142262|142276|142293|142294|142296|142299|142301|142304|142411|142412|142414|142415|142420|142421|142423|142426|142428|142429|142430|142496|142517|142546|142676|142682|142683|142685|142687|142688|142689|142714|142716|142721|142722|142725|142727|142730|142732|142735|142772|142774|142775|142778|142858|142861|142863|142868|142869|142870|142903|142906|142910|142911|142912|142913|143046|143049|143051|143052|143054|143057|143058|143087|143107|143108|143110|143114|143118|143255|153030|153190|153273|153289|153352|153359|153389|153411|153413|153418|153441|153443|153482|153496|153507|153540|165528|165932|166523|167562|167565|167566|167568|167570|167571|167574|167575|167591|167603|167610|167920|167997|168029|168035|168110|168113|168116|168124|168125|168127|168129|168134|168136|168156|168163|168166|168187|168189|168190|168191|168293|168315|168324|168332|168354|168359|168364|168386|168427|168489|168517|168519|168582|168592|168597|168622|168627|168633|168634|168640|168813|168817|168822|168823|168825|168827|168829|168831|168834|168838|168840|169047|169050|169051|169056|169078|169206|169214|169217|169241|169249|169257|169446|169455|169599|169601|169874|169937|169945|169946|169949|169950|169951|169953|170087|170093|170137|170139|170152|170153|170166|170169|170175|171686|175395|175543|176313|176951|177006|177054|177069|177082|177163|177184|177214|177257|177285|177308|177379|177420|177427|177428|177453|177456|177532|177533|177550|177589|177596|177599|177601|177621|177650|177669|177670|177693|177704|177714|177721|177726|177727|177756|177760|177763|177807|177830|177831|177878|177995|178024|178064|178069|178073|178084|178088|178151|178994|178998|179007|187728|187773|187828|187874|188021|188023|188539|188562|188588|188616|189019|189338|189341|189342|190199|190259|190351|190352|190361|190450|190472|190473|190484|190486|190512|190605|190606|190607|190785|190837|190838|191008|191070|191074|191200|191214|191221|191251|191292|191303|191359|191411|191419|191522|191674|191692|191695|191709|191793|191794|191800|191801|191883|191936|192013|192055|192090|192129|192184|192232|192453|192477|192488|192491|192585|192587|192589|192628|192632|192694|192741|192742|192750|192831|192900|192932|192971|192994|193061|193093|193103|193104|193186|193191|193290|193325|193342|193349|193478|193620|193637|193639|193667|193679|193681|193690|193713|193717|193719|193720|193751|193752|193753|193789|193831|193832|194076|194078|194079|194082|194104|194146|194156|194174|194189|194197|194203|194292|194300|194407|194443|194451|194514|194533|194605|194633|194660|194679|194690|194703|194880|194886|194887|194953|195066|195156|195162|195174|195218|195338|195356|195384|195389|195450|195455|195513|195566|195629|195650|195674|195710|195722|195862|195912|195968|196000|196002|196003|196046|196047|196051|196058|196147|196169|196179|196225|196280|196301|196305|196310|201049|201061|201062|201109|201149|201189|201192|201194|201200|201209|201228|201241|201243|201273|201274|201306|201325|201353|201356|201403|201436|201466|201477|201510|201539|201597|201657|201662|201669|201675|201678|201683|201685|201686|201689|201691|201708|201720|202033|202036|202047|202060|202065|202069|202071|202075|202077|202107|202111|202114|202122|202284|202285|202325|202477|202610|202614|202652|202656|202658|202661|202662|202676|202717|202720|202722|202755|202758|202761|202809|202817|202819|202852|202858|203082|203309|203310|203319|203324|203328|203351|203369|203371|203374|203502|203514|203522|203526|203532|203533|203555|203558|203578|203590|203603|203608|203897|203904|203925|203932|203965|204011|204027|204029|204060|205325|206728|206811|206872|206874|206883|206886|206957|206960|206961|206963|206965|206967|206969|206970|206973|206977|207002|207003|207082|207086|207089|207265|207266|207268|207274|207317|207318|207341|207343|207346|207347|207349|207351|207352|207353|207355|207356|207360|207366|207367|207370|207376|207379|207386|207389|207390|207402|207409|207411|207413|207507|207509|207510|207512|207522|207524|207526|207527|207530|207548|207550|207581|207584|207585|207595|207664|207665|207667|207669|207673|207676|207677|207681|207683|207686|207692|207694|207696|207697|207945|207979|207980|208056|208058|208060|208062|208063|208065|208067|208070|208073|208077|208080|208150|208151|208152|208154|208237|208238|208258|208296|208297|208299|208353|208355|208357|208358|208363|208365|208367|208539|208545|208547|208548|208549|208552|208553|208617|208721|208819|208840|208842|208853|208881|208886|208887|208890|208921|208925|208930|208933|208979|208984|208987|208989|208990|208995|208996|208999|209001|209004|209021|209040|209045|209047|209085|209089|209099|209110|209122|209123|209125|209129|209132|209133|209149|209153|209160|209180|209184|209187|209204|209208|209218|209253|209307|210458|210465|210471|210476|210477|210478|210483|210484|210504|210515|210516|210531|210533|210551|210576|210578|212003|212999|215180|215327|215516|215559|215560|215614|215616|215617|215618|221075|222248|222886|231515|232150|236905|237006|237189|237231|237271|238152|238365|239850|239898|239899|239900|240392|240393|240506|240591|241528|241530|241764|241769|241772|241774|242175|242176|242177|242178|242179|242180|242181|242252|242297|242307|242321|242324|242445|242446|243730|243731|243733|243734|243750|243764|243765|243771|243817|243823|244344|244353|244356|244773|244777|244778|244791|244794|244797|244858|245199|245218|245219|247180|247192|247202|247209|249528|249529|250169|251853|253149|253150|253168|253221|253307|253371|254316|255441|255443|255445|255446|255448|255449|255450|255489|256091|256092|256093|256787|256788|257755|257770|257776|257784|257833|258741|259703|259921|260147|264530|265479|265733|265740|265758|265767|265778|265916|265958|266114|266150|266279|266798|266816|266829|266946|266969|267044|267206|267413|267447|267449|267450|267590|267747|267772|267794|267824|268024|268250|268395|268419|268459|268461|268933|268934|268938|268980|269077|269241|269722|269731|270296|270522|270621|270747|271301|271305|271447|271496|271636|271799|271846|272069|272155|272202|272372|272429|272497|272980|273200|273390|273653|274036|274277|274280|274930|277331|277520|277550|278382|278393|278413|281999|282022|282375|283182|284291|284651|285085|285095|285553|285565|285567|286232|286252|288970|297425|297966|297967|299530|299534|300142|300144|300175|302112|302751|302756|304433|304661|304708|304709|305650|305662|306082|306087|307714|307763|307904|307911|307957|308148|308150|308162|309627|309652|309679|310208|310217|310835|311956|311979|311994|311995|312169|313180|313290|313324|314166|314918|315127|315518|315533|315538|315675|316730|316733|316905|317545|317547|317563|317566|317577|317579|317849|317853|317858|317859|317895|317910|318069|318085|318087|318112|318355|318382|318522|320125|320133|320136|320141|320152|320175|323834|323848|324233|324619|327951|328722|328724|328743|329086|329923|330590|331689|335351|336960|337211|337249|339267|339363|348580|348725|348727|348796|348815|349104|352102|352107|352261|352788|352827|352874|352876|352877|352928|352971|359708|360063|360082|360515|361317|362606|363655|363682|363705|363833|363838|363873|363912|363920|363943|364042|364181|364370|364538|364563|365276|365377|365557|365572|365583|365624|365771|365791|365803|365819|365851|365858|366487|366508|366524|366856|366857|366883|367598|367626|367722|367732|369539|369579|369776|369876|370245|370250|370251|370256|370266|370280|370301|370318|370499|370591|370807|370815|370910|370916|371144|371931|372139|372145|372147|372170|372407|372416|372430|372436|372872|372921|372942|373082|373325|373374|373596|373616|373822|373831|373838|373849|373867|373894|373912|373913|374078|374140|374151|374216|374547|374563|374576|374577|374738|374818|374830|374876|374907|374930|374940|374947|375132|375157|375158|375719|375746|375792|375808|375812|375839|375920|376273|376288|376326|376858|376895|376901|376919|376954|376962|376965|376967|377235|377240|377242|377244|377248|377261|377389|377461|377470|377501|377505|377682|377694|377731|377791|377855|377877|377900|377981|378028|378046|378152|378363|378374|378376|378397|378412|378421|378441|378451|378452|378466|378820|378840|378869|378925|378937|378940|378965|378981|379035|379047|379071|379082|379164|379176|379177|379278|379305|379328|379361|379377|379406|379423|379431|379440|379477|379488|379508|379616|379897|379904|379929|380062|380082|380086|380103|389192|390256|390326|390331|390332|390335|390337|390366|390374|390379|390445|390489|390841|391124|391222|391252|391301|391308|391419|391604|394945|395140|395244|395246|395247|395325|395448|395695|395833|396109|396540|398955|398999|399031|399069|399375|399480|399484|399506|400221|400222|400248|400669|400751|400875|400878|400941|401172|401196|401407|401419|401423|401446|401472|401574|401659|401979|401989|403106|403353|403779|404074|404098|404110|404114|404140|404146|404156|404176|404178|404488|404510|404534|404584|404593|407014|407408|407642|408610|409114|409194|409429|410484|410486|410490|410491|410493|410520|410527|411149|411193|413410|413411|413413|413561|413805|413837|413848|415626|415665|421625|422065|422239|422422|425669|425943|426102|426285|426289|426291|426670|428010|428354|428357|428384|428445|428518|428545|428546|428547|428548|428551|428552|428557|428568|428572|428579|428773|428775|428776|428777|428882|428888|428958|428961|428964|428966|428967|428986|428987|429268|429410|429544|429610|429611|429612|429828|429930|429931|429934|429945|429948|430073|430136|430143|430150|430153|430365|430369|430370|430598|430620|430622|430635|430651|430691|430717|430726|430760|430765|430791|430793|430849|430859|430935|431505|433098|433576|437998|438042|438319|438344|438432|438443|438578|438709|438813|438884|438896|438915|438926|438931|438957|438986|439116|439135|439339|439852|439854|440361|440688|440738|441257|441362|441946|442036|442048|442059|442439|442929|442983|443021|443211|443760|443919|443928|445519|446066|446576|446655|446776|447217|447369|447421|447469|447484|448117|448712|448717|448792|449088|450177|450179|450185|450188|450237|450384|450399|450401|450487|450639|450710|450727|450884|450910|451625|451631|451687|451896|451915|451954|451955|451972|452132|452136|452138|452145|452160|454720|455008|455018|455087|455183|455198|455434|455453|455629|455665|455696|455926|458725|459036|459052|459106|459142|459363|459373|459924|461667|462975|463019|463207|463468|463482|463705|463732|463745|463755|463768|463805|464763|465704|465780|466023|466201|466463|466749|468085|468112|468122|468509|469021|469049|469424|469446|469618|469621|469866|469904|470164|470619|470642|470810|470967|471003|471007|471021|471050|471058|471070|471342|471350|471381|471388|471391|471436|471634|471649|471727|471731|471732|471733|471789|471792|471983|471987|471997|472011|472047|472051|472069|472073|472077|472089|472090|472153|472158|472166|472170|472205|472223|486408|486517|486914|488369|489079|489093|489115|489120|489122|490083|490287|490288|490316|490783|491350|491358|492028|492407|492801|493005|493274|493432|493854|494058|498499|499061|499844|500058|500209|500300|500781|501009|501240|502170|502348|502477|502920|503713|504271|504280|504329|504331|504385|504533|504723|504893|504899|504932|505050|505270|505536|506225|506356|506786|507176|507182|507186|507580|507766|507782|507861|507880|508000|508014|508171|508176|508222|508254|508257|508441|508451|508467|508602|508647|508906|510378|510918|510923|511166|511259|511351|511443|511560|511609|511661|512030|512112|512592|512645|512720|512767|512805|512822|514570|515044|515262|515265|515820|515910|516483|516525|517974|518026|518050|518117|518125|518499|518752|518762|518924|521961|522282|522299|523218|523664|523772|523811|524237|524252|524259|524264|524292|524312|524348|524379|524421|524746|524895|525032|527242|527463|527879|528224|532365|532743|533146|533278|533908|534570|534657|534673|534772|534894|534937|534962|534996|535000|535001|535086|535096|535179|535201|537041|537080|537258|537412|537418|538288|538399|538515|546307|551349|551665|553168|557284|558839|559318|560169|560791|560867|562924|562988|563112|564828|565167|565826|566195|568634|568657|568866|572666|573651|573701|573896|574891|574905|575019|575316|576438|576534|576710|576816|577415|577548|577613|577616|577937|578703|578704|578705|578706|578710|578711|578712|578713|578714|578715|578716|578717|578718|578719|578720|578721|578722|578723|578724|578725|578726|578727|578728|578729|578730|578731|578732|578733|578734|578735|578736|578737|578738|578739|578740|578741|578742|578743|578744|578745|578746|578747|578748|578749|578750|578751|578752|578753|578754|578755|578757|578758|578759|578760|578761|578764|578765|578766|578767|578768|578771|578772|578773|578775|578776|578778|578779|578780|578782|578783|578784|578785|578786|578787|578788|578790|578791|578792|578793|578794|578797|578799|578800|578801|578802|578803|578804|578805|578806|578807|578808|578809|578811|578815|578817|578821|578822|578824|578825|578826|578830|578835|578837|578838|578842|578843|578887|578888|578892|578893|578896|578897|578899|578900|578901|578906|578907|578909|578910|578911|578917|578918|578919|578920|578922|578923|578924|578925|578926|578927|578928|578929|578930|578931|578932|578933|578934|578935|578936|578937|578938|578939|578940|578942|578944|578945|578946|578947|578948|578949|578950|578951|578952|578953|578954|578955|578956|578957|578958|578959|578960|578961|578962|578963|578964|578965|578966|578967|578968|578969|578970|578971|578972|578973|578974|578975|578976|578977|578978|578979|578980|578981|578982|578983|578984|578985|578987|578988|578989|578990|578991|578992|578993|578994|578996|578997|578998|578999|579000|579001|579002|579003|579005|579006|579007|579009|579010|579012|579013|579015|579016|579018|579019|579021|579022|579023|579025|579026|579027|579028|579029|579030|579031|579032|579033|579034|579035|579036|579037|579038|579040|579041|579042|579043|579046|579047|579048|579049|579052|579053|579054|579055|579056|579057|579058|579059|579061|579062|579064|579065|579066|579067|579069|579070|579071|579072|579073|579074|579075|579076|579077|579078|579079|579080|579081|579082|579083|579085|579086|579087|579089|579090|579099|579100|579109|579111|579113|579115|579118|579123|579124|579126|579127|579128|579129|579130|579131|579132|579133|579134|579135|579136|579137|579138|579139|579140|579141|579142|579143|579144|579145|579146|579147|579148|579149|579150|579151|579152|579153|579154|579155|579156|579157|579158|579159|579160|579161|579162|579163|579164|579165|579166|579167|579168|579169|579170|579171|579172|579173|579174|579175|579176|579177|579178|579179|579180|579181|579182|579183|579184|579185|579186|579187|579188|579189|579190|579191|579192|579193|579194|579195|579196|579197|579198|579199|579200|579201|579202|579203|579204|579205|579206|579207|579208|579209|579210|579211|579212|579213|579214|579215|579216|579220|579221|579222|579223|579224|579225|579226|579227|579228|579229|579230|579231|579232|579233|579234|579235|579236|579237|579239|579240|579241|579242|579243|579244|579245|579246|579247|579248|579249|579250|579251|579252|579253|579254|579255|579256|579257|579258|579259|579260|579261|579262|579264|579265|579266|579267|579268|579269|579270|579271|579272|579273|579274|579275|579276|579277|579278|579279|579280|579281|579282|579283|579284|579285|579286|579287|579288|579289|579290|579291|579292|579293|579294|579295|579296|579297|579298|579299|579300|579301|579302|579303|579304|579305|579306|579307|579308|579309|579310|579311|579312|579313|579314|579315|579316|579317|579318|579319|579320|579322|579323|579324|579326|579327|579328|579329|579330|579331|579332|579333|579334|579335|579336|579337|579338|579339|579340|579341|579342|579343|579344|579345|579347|579348|579349|579350|579351|579352|579353|579354|579355|579356|579357|579358|579359|579360|579361|579362|579363|579364|579365|579366|579367|579368|579369|579370|579371|579372|579375|579378|579379|579380|579381|579382|579384|579385|579386|579390|579391|579392|579393|579394|579397|579398|579400|579402|579403|579404|579405|579406|579407|579408|579409|579410|579411|579412|579413|579414|579415|579416|579417|579418|579419|579420|579421|579422|579423|579424|579425|579426|579427|579428|579429|579430|579431|579432|579433|579434|579435|579436|579437|579438|579439|579440|579441|579442|579443|579444|579445|579446|579447|579448|579449|579450|579451|579452|579453|579454|579455|579456|579457|579458|579459|579460|579461|579462|579463|579464|579465|579467|579468|579469|579470|579471|579472|579473|579474|579475|579476|579477|579478|579479|579480|579482|579483|579484|579486|579487|579488|579489|579490|579492|579494|579495|579497|579498|579499|579500|579501|579502|579504|579505|579506|579507|579509|579510|579511|579512|579513|579514|579515|579516|579517|579518|579519|579520|579521|579522|579523|579524|579525|579526|579527|579528|579529|579530|579531|579532|579533|579534|579535|579536|579537|579538|579541|579542|579544|579545|579549|579551|579552|579553|579554|579557|579559|579561|579562|579563|579565|579568|579569|579570|579572|579573|579574|579575|579576|579577|579578|579581|579582|579583|579585|579586|579587|579588|579589|579593|579595|579598|579600|579602|579605|579607|579608|579609|579610|579611|579612|579613|579614|579616|579617|579618|579619|579620|579622|579625|579628|579629|579630|579631|579633|579634|579636|579637|579638|579639|579640|579641|579642|579643|579644|579645|579646|579647|579648|579649|579650|579651|579652|579653|579654|579655|579657|579658|579659|579660|579661|579662|579663|579664|579665|579666|579667|579668|579669|579670|579671|579672|579673|579674|579675|579676|579677|579678|579679|579680|579681|579682|579683|579684|579685|579686|579688|579689|579690|579695|579696|579700|579701|579703|579706|579709|579710|579715|579716|579720|579721|579722|579725|579727|579729|579730|579732|579735|579736|579737|579738|579739|579745|579746|579747|579748|579749|579751|579752|579753|579754|579755|579756|579757|579758|579759|579760|579761|579762|579763|579764|579765|579766|579767|579768|579769|579770|579771|579772|579773|579774|579775|579776|579777|579778|579780|579781|579782|579783|579785|579786|579788|579789|579791|579795|579796|579798|579799|579800|579801|579802|579804|579806|579808|579811|579812|579813|579814|579815|579817|579818|579819|579821|579822|579823|579824|579825|579826|579827|579828|579829|579830|579831|579832|579833|579835|579837|579838|579839|579840|579841|579842|579843|579844|579845|579846|579847|579848|579849|579850|579851|579852|579854|579855|579856|579857|579858|579859|579860|579861|579862|579863|579864|579865|579866|579867|579868|579869|579870|579871|579872|579873|579874|579875|579876|579877|579878|579879|579880|579881|579882|579883|579884|579885|579886|579887|579888|579889|579890|579891|579892|579893|579894|579895|579896|579897|579898|579899|579900|579901|579902|579903|579904|579905|579906|579907|579908|579909|579910|579911|579912|579914|579916|579917|579918|579920|579921|579922|579923|579925|579926|579927|579928|579930|579931|579932|579933|579934|579935|579936|579937|579938|579939|579940|579941|579943|579945|579946|579947|579952|579953|579954|579955|579956|579957|579959|579961|579962|579963|579964|579965|579966|579967|579968|579969|579970|579971|579972|579973|579974|579975|579976|579978|579979|579980|579981|579982|579986|579987|579989|579990|579991|579992|579993|579995|579997|579999|580000|580001|580002|580003|580004|580005|580006|580008|580011|580012|580013|580014|580015|580017|580018|580022|580023|580024|580025|580026|580027|580028|580029|580030|580031|580032|580033|580034|580035|580036|580037|580039|580040|580041|580042|580043|580044|580046|580047|580048|580051|580052|580053|580054|580060|580062|580066|580071|580072|580073|580075|580077|580079|580081|580085|580087|580088|580089|580090|580091|580092|580093|580095|580096|580097|580098|580101|580102|580103|580104|580105|580106|580108|580109|580111|580114|580115|580116|580117|580118|580119|580120|580121|580122|580123|580124|580125|580126|580127|580128|580129|580130|580131|580132|580135|580137|580138|580140|580141|580142|580146|580148|580154|580157|580158|580163|580166|580168|580172|580175|580176|580177|580180|580185|580188|580190|580191|580194|580198|580199|580201|580202|580204|580207|580210|580212|580213|580215|580217|580223|580224|580226|580227|580230|580241|580242|580244|580251|580256|580257|580258|580261|580264|580265|580267|580269|580270|580271|580272|580273|580274|580276|580278|580280|580281|580282|580283|580284|580286|580287|580288|580289|580290|580291|580292|580293|580294|580295|580296|580297|580298|580299|580300|580301|580302|580303|580304|580305|580306|580307|580308|580309|580310|580311|580312|580313|580314|580315|580316|580317|580318|580319|580320|580321|580322|580323|580324|580325|580326|580327|580328|580329|580330|580332|580333|580335|580337|580339|580340|580341|580342|580343|580344|580345|580347|580348|580352|580355|580356|580357|580358|580360|580362|580363|580364|580365|580368|580369|580370|580375|580377|580378|580379|580380|580382|580383|580386|580390|580391|580392|580395|580397|580399|580401|580402|580403|580404|580406|580407|580409|580411|580412|580413|580414|580415|580417|580418|580419|580423|580424|580425|580429|580431|580432|580434|580435|580437|580438|580440|580444|580446|580448|580449|580453|580456|580458|580459|580460|580461|580462|580463|580465|580466|580468|580469|580470|580471|580472|580473|580475|580476|580478|580480|580481|580482|580483|580485|580487|580488|580489|580490|580491|580492|580496|580498|580499|580500|580501|580502|580503|580504|580506|580507|580508|580509|580510|580511|580513|580514|580516|580518|580519|580520|580521|580522|580523|580524|580525|580526|580527|580528|580529|580530|580531|580532|580533|580534|580535|580536|580537|580538|580539|580540|580541|580542|580543|580544|580545|580546|580547|580548|580549|580550|580551|580552|580553|580555|580556|580557|580558|580559|580560|580561|580563|580565|580566|580567|580569|580571|580573|580574|580575|580576|580577|580578|580580|580581|580584|580585|580587|580590|580591|580592|580594|580598|580600|580602|580604|580605|580606|580608|580609|580613|580615|580616|580620|580621|580622|580624|580625|580627|580628|580629|580630|580631|580632|580634|580635|580636|580637|580640|580641|580643|580646|580647|580649|580650|580652|580654|580656|580660|580662|580663|580664|580665|580666|580667|580668|580670|580672|580673|580674|580675|580676|580677|580678|580679|580680|580681|580682|580685|580687|580688|580689|580690|580692|580693|580694|580695|580696|580697|580699|580701|580702|580703|580704|580705|580706|580707|580708|580709|580710|580711|580712|580713|580714|580715|580716|580717|580718|580719|580720|580721|580724|580725|580727|580728|580729|580730|580731|580732|580733|580735|580737|580738|580740|580741|580742|580743|580745|580747|580748|580749|580750|580751|580752|580753|580754|580755|580756|580757|580758|580759|580760|580761|580762|580763|580764|580765|580767|580769|580771|580772|580773|580774|580775|580776|580777|580778|580779|580781|580782|580784|580787|580788|580789|580790|580791|580792|580793|580794|580795|580796|580797|580798|580799|580800|580801|580802|580803|580804|580805|580806|580807|580808|580809|580810|580811|580812|580813|580814|580815|580816|580817|580818|580819|580820|580821|580822|580823|580824|580825|580826|580827|580828|580829|580830|580831|580832|580833|580834|580835|580836|580837|580838|580839|580840|580841|580842|580843|580844|580845|580846|580847|580848|580849|580850|580851|580852|580853|580854|580855|580856|580857|580858|580859|580860|580861|580862|580863|580864|580865|580866|580867|580868|580869|580870|580871|580872|580873|580874|580875|580876|580877|580878|580879|580880|580881|580882|580883|580884|580885|580886|580887|580888|580889|580890|580891|580892|580893|580894|580895|580896|580897|580898|580899|580901|580902|580903|580904|580905|580906|580907|580908|580909|580910|580911|580912|580913|580914|580915|580916|580917|580918|580919|580920|580921|580922|580923|580924|580925|580926|580927|580928|580929|580930|580931|580932|580933|580934|580935|580936|580937|580938|580939|580940|580941|580942|580943|580944|580945|580946|580947|580948|580949|580950|580951|580952|580953|580954|580955|580956|580957|580958|580959|580960|580961|580962|580963|580964|580965|580966|580967|580968|580969|580970|580971|580972|580973|580974|580975|580976|580977|580978|580979|580980|580981|580982|580983|580984|580985|580986|580987|580988|580989|580990|580991|580992|580993|580994|580995|580996|580997|580998|580999|581000|581001|581002|581003|581004|581005|581006|581007|581008|581009|581010|581011|581012|581013|581014|581015|581016|581017|581018|581019|581020|581021|581022|581023|581024|581025|581026|581027|581028|581029|581030|581031|581032|581033|581034|581036|581037|581038|581039|581040|581041|581042|581043|581044|581045|581046|581047|581048|581049|581050|581051|581052|581053|581054|581055|581056|581057|581058|581059|581060|581061|581062|581063|581064|581065|581066|581067|581068|581069|581070|581071|581072|581073|581074|581075|581076|581077|581078|581079|581080|581081|581082|581083|581084|581085|581086|581087|581088|581089|581090|581091|581092|581093|581094|581095|581096|581097|581098|581099|581100|581101|581102|581103|581104|581105|581106|581107|581108|581109|581110|581111|581112|581113|581114|581115|581116|581117|581118|581119|581120|581121|581122|581123|581124|581125|581126|581127|581128|581129|581130|581131|581132|581133|581134|581135|581136|581137|581138|581139|581140|581141|581142|581143|581144|581145|581146|581147|581148|581149|581150|581151|581152|581153|581154|581155|581156|581157|581158|581159|581160|581161|581162|581163|581164|581165|581166|581167|581168|581169|581170|581171|581172|581173|581174|581175|581176|581177|581178|581179|581180|581181|581182|581183|581184|581185|581186|581187|581188|581189|581190|581191|581192|581193|581194|581195|581196|581197|581198|581199|581200|904875", "text": "History of neurodevelopmental disorder" }, { - "baseId": "17870|20901|513659|622917|980965", + "upstreamId": "17870|20901|513659|622917|980965", "text": "Bradyopsia" }, { - "baseId": "17871|17872|17874|17876|17877|17878|17879|17880|17881|17882|17883|17884|17885|98205|98206|98207|98208|98209|177467|177468|177469|190196|190706|195189|195190|195191|195542|195845|204576|247327|264388|265263|268015|312220|312224|312226|312227|312228|312234|312236|317980|317983|317988|317997|317999|318000|318013|318014|324036|324037|324038|324040|324041|324042|324044|324047|324049|324050|324051|324056|324867|324875|324876|324880|324881|324891|324902|324905|324906|324909|324915|324916|324920|353161|359905|363710|421815|421816|432201|460447|514616|525708|525868|569968|581765|621324|639364|639365|639366|652057|652175|654019|654020|654021|654022|654023|654024|654025|654026|654027|654028|654029|654030|654031|654032|654033|654034|654035|654036|654037|654038|654039|654040|654041|654042|654043|654044|654045|654046|654047|654048|654049|654050|654051|654052|654053|654054|654055|654056|654057|654058|654059|654060|654061|654062|654063|654064|654065|654066|654067|654068|654069|654070|654071|654072|654073|654074|654075|654076|654077|654078|654079|654080|654081|654082|654083|654084|654085|654086|654087|654088|654089|654090|654091|654096|654097|654098|654099|695492|712577|737712|744578|768116|768117|775587|777924|783813|783814|783815|787711|788845|820290|837595|837596|837597|837598|851796|852292|866936|866937|866938|866939|866940|866941|866942|866943|866944|866945|866946|866947|868597|868598|919315|920292|935280|947180|956309|956310|956311|978847|978848|978849|978850|978851|978852|978853|978854|978855", + "upstreamId": "17871|17872|17874|17876|17877|17878|17879|17880|17881|17882|17883|17884|17885|98205|98206|98207|98208|98209|177467|177468|177469|190196|190706|195189|195190|195191|195542|195845|204576|247327|264388|265263|268015|312220|312224|312226|312227|312228|312234|312236|317980|317983|317988|317997|317999|318000|318013|318014|324036|324037|324038|324040|324041|324042|324044|324047|324049|324050|324051|324056|324867|324875|324876|324880|324881|324891|324902|324905|324906|324909|324915|324916|324920|353161|359905|363710|421815|421816|432201|460447|514616|525708|525868|569968|581765|621324|639364|639365|639366|652057|652175|654019|654020|654021|654022|654023|654024|654025|654026|654027|654028|654029|654030|654031|654032|654033|654034|654035|654036|654037|654038|654039|654040|654041|654042|654043|654044|654045|654046|654047|654048|654049|654050|654051|654052|654053|654054|654055|654056|654057|654058|654059|654060|654061|654062|654063|654064|654065|654066|654067|654068|654069|654070|654071|654072|654073|654074|654075|654076|654077|654078|654079|654080|654081|654082|654083|654084|654085|654086|654087|654088|654089|654090|654091|654096|654097|654098|654099|695492|712577|737712|744578|768116|768117|775587|777924|783813|783814|783815|787711|788845|820290|837595|837596|837597|837598|851796|852292|866936|866937|866938|866939|866940|866941|866942|866943|866944|866945|866946|866947|868597|868598|919315|920292|935280|947180|956309|956310|956311|978847|978848|978849|978850|978851|978852|978853|978854|978855", "text": "Deficiency of acetyl-CoA acetyltransferase" }, { - "baseId": "17886|17887|17888|17889|17890|17891|17892|101840|190588|195397|247333|250819|273022|287702|287703|287706|287710|287712|287713|287714|287718|287720|287730|287739|287741|287745|287749|288407|288417|288422|288423|288427|288429|288430|288433|288434|288435|288436|291248|291250|291262|291270|291280|291282|291283|291284|291287|291292|291394|291400|291417|291428|291429|291432|291444|291445|291447|291453|428105|509046|615923|623272|697709|697710|730166|790304|800477|818218|885713|885714|885715|885716|885717|885718|885719|885720|885721|885722|885723|885724|885725|885726|885727|885728|885729|885730|885731|885732|885733|885734|885735|885736|885737|885738|885739|885740|885741|885742|885743|885744", + "upstreamId": "17886|17887|17888|17889|17890|17891|17892|101840|190588|195397|247333|250819|273022|287702|287703|287706|287710|287712|287713|287714|287718|287720|287730|287739|287741|287745|287749|288407|288417|288422|288423|288427|288429|288430|288433|288434|288435|288436|291248|291250|291262|291270|291280|291282|291283|291284|291287|291292|291394|291400|291417|291428|291429|291432|291444|291445|291447|291453|428105|509046|615923|623272|697709|697710|730166|790304|800477|818218|885713|885714|885715|885716|885717|885718|885719|885720|885721|885722|885723|885724|885725|885726|885727|885728|885729|885730|885731|885732|885733|885734|885735|885736|885737|885738|885739|885740|885741|885742|885743|885744", "text": "Jalili syndrome" }, { - "baseId": "17893|17894|17894|17895|17896|17897|259726|550877", + "upstreamId": "17893|17894|17894|17895|17896|17897|259726|550877", "text": "Autosomal recessive congenital ichthyosis 4A" }, { - "baseId": "17894|17898|17899|17900|17901|17902|17903|259726|405611|423860|481231|609014|622218|622219|622220|622221|622222|622223|622224|792727|918733|918734", + "upstreamId": "17894|17898|17899|17900|17901|17902|17903|259726|405611|423860|481231|609014|622218|622219|622220|622221|622222|622223|622224|792727|918733|918734", "text": "Autosomal recessive congenital ichthyosis 4B" }, { - "baseId": "17900|236997|237008|237067|237268|237450|250545|250546|250548|250550|250551|250552|250553|250554|250555|250556|250557|284587|284588|284596|284598|284605|284608|284611|284612|284614|284617|284627|284629|284635|284636|284639|285285|285286|285289|285290|285293|285297|285300|285301|285302|285304|285307|285308|285309|285310|285313|285314|285320|285323|285326|285327|285328|287460|287462|287463|287464|287465|287471|287472|287473|287474|287477|287478|287483|287487|287488|287673|287675|287676|287677|287678|287697|287704|287715|287723|287724|287725|287729|287731|287732|287733|287734|287735|287736|287737|287740|287742|438190|481459|612594|612595|620057|620058|620741|622232|622233|697296|697297|708002|719581|719582|719589|719590|743855|747256|762881|778924|883675|883676|883677|883678|883679|883680|883681|883682|883683|883684|883685|883686|883687|883688|883689|883690|883691|883692|883693|883694|883695|883696|883697|883698|883699|883700|883701|883702|883703|883704|883705|883706|883707|883708|883709|883710|883711|883712|883713|883714|883715|883716|883717|883718|883719|883720|883721|883722|883723|887262|887263|887264|887265|887266|887267|887268|887269|887270|887271|887272", + "upstreamId": "17900|236997|237008|237067|237268|237450|250545|250546|250548|250550|250551|250552|250553|250554|250555|250556|250557|284587|284588|284596|284598|284605|284608|284611|284612|284614|284617|284627|284629|284635|284636|284639|285285|285286|285289|285290|285293|285297|285300|285301|285302|285304|285307|285308|285309|285310|285313|285314|285320|285323|285326|285327|285328|287460|287462|287463|287464|287465|287471|287472|287473|287474|287477|287478|287483|287487|287488|287673|287675|287676|287677|287678|287697|287704|287715|287723|287724|287725|287729|287731|287732|287733|287734|287735|287736|287737|287740|287742|438190|481459|612594|612595|620057|620058|620741|622232|622233|697296|697297|708002|719581|719582|719589|719590|743855|747256|762881|778924|883675|883676|883677|883678|883679|883680|883681|883682|883683|883684|883685|883686|883687|883688|883689|883690|883691|883692|883693|883694|883695|883696|883697|883698|883699|883700|883701|883702|883703|883704|883705|883706|883707|883708|883709|883710|883711|883712|883713|883714|883715|883716|883717|883718|883719|883720|883721|883722|883723|887262|887263|887264|887265|887266|887267|887268|887269|887270|887271|887272", "text": "Congenital ichthyosis of skin" }, { - "baseId": "17904|17905|17906|17907|17908|17909|17910|17911|286586|286593|286595|286596|286603|286606|286613|286614|286624|286625|286633|286634|286637|286638|287306|287312|287313|287314|287317|287319|287321|287324|287325|287332|287335|287341|287353|287356|287357|287358|287366|289647|289648|289657|289658|289659|289661|289664|289667|289668|289684|289685|290072|290073|290074|290078|290079|290080|290092|290098|290100|290101|290102|290107|290108|290110|290114|290133|290141|290142|788755|885073|885074|885075|885076|885077|885078|885079|885080|885081|885082|885083|885084|885085|885086|885087|885088|885089|885090|885091|885092|885093|885094|885095|885096|885097|885098|885099|885100|885101|885102|885103|885104|885105|885106|885107|885108|885109|885110|885111|885112|885113|885114|885115|885116", + "upstreamId": "17904|17905|17906|17907|17908|17909|17910|17911|286586|286593|286595|286596|286603|286606|286613|286614|286624|286625|286633|286634|286637|286638|287306|287312|287313|287314|287317|287319|287321|287324|287325|287332|287335|287341|287353|287356|287357|287358|287366|289647|289648|289657|289658|289659|289661|289664|289667|289668|289684|289685|290072|290073|290074|290078|290079|290080|290092|290098|290100|290101|290102|290107|290108|290110|290114|290133|290141|290142|788755|885073|885074|885075|885076|885077|885078|885079|885080|885081|885082|885083|885084|885085|885086|885087|885088|885089|885090|885091|885092|885093|885094|885095|885096|885097|885098|885099|885100|885101|885102|885103|885104|885105|885106|885107|885108|885109|885110|885111|885112|885113|885114|885115|885116", "text": "Factor v and factor viii, combined deficiency of, 2" }, { - "baseId": "17904|23101|23102|23103|23104|23105|256704|256705|256707|256708|286640|287359|289645|289646|289694|289695|289719|289722|290093|331983|331985|331997|331998|332005|332013|332016|342208|342210|342211|342217|342218|347566|347568|347572|347576|347584|347591|347592|347593|347599|347600|347604|347607|347608|347609|347610|347613|347617|347618|347623|348942|348948|348953|348955|348956|348960|348963|348964|348965|348968|348971|348973|348974|615328|615604|788955|879556|879557|879558|879559|879560|879561|879562|879563|879564|879565|879566|879567|879568|879569|879570|879571|879572|879573|879574|879575|879576|879577|879578|879579|879580|879581|879582|879583|879584|879585|879586|879587|879588|879589|879590|879591|879592|879593|879594|879595|879596|879597|879598|879599|880670", + "upstreamId": "17904|23101|23102|23103|23104|23105|256704|256705|256707|256708|286640|287359|289645|289646|289694|289695|289719|289722|290093|331983|331985|331997|331998|332005|332013|332016|342208|342210|342211|342217|342218|347566|347568|347572|347576|347584|347591|347592|347593|347599|347600|347604|347607|347608|347609|347610|347613|347617|347618|347623|348942|348948|348953|348955|348956|348960|348963|348964|348965|348968|348971|348973|348974|615328|615604|788955|879556|879557|879558|879559|879560|879561|879562|879563|879564|879565|879566|879567|879568|879569|879570|879571|879572|879573|879574|879575|879576|879577|879578|879579|879580|879581|879582|879583|879584|879585|879586|879587|879588|879589|879590|879591|879592|879593|879594|879595|879596|879597|879598|879599|880670", "text": "Combined deficiency of factor V and factor VIII, 1" }, { - "baseId": "17912|17913|17914|17915|17916|17917|45327|45330|45331|45332|45333|187183|196754|196755|196756|196757|196758|236749|238334|238335|238336|246888|249983|249984|249986|249987|249988|249989|249990|260587|260588|260592|260593|260608|260609|260620|260626|280890|280891|280895|280902|280908|280911|280925|280929|280937|280941|280946|280951|281418|281421|281423|281431|281441|281446|281453|281456|281460|281473|282664|282665|282667|282690|282694|282939|282943|282945|282961|282962|282969|282970|282973|282975|354066|354068|362650|362651|362652|362653|362654|362655|362656|362657|362658|362659|362660|389422|391339|391346|391356|391359|391368|391371|391411|391518|391525|391530|391531|424995|424996|424997|424998|424999|431937|431938|431944|434136|434137|434140|442868|446937|448217|448243|448246|448250|448373|448374|483166|486860|486880|486881|486886|486915|486918|486922|498542|498556|508771|515983|515985|515988|516028|516048|516054|516137|516139|516151|516153|516156|538521|538526|538527|557107|557385|558559|588440|609293|612369|612370|616147|616151|616154|616162|616170|616172|616174|616178|616185|616190|616192|616199|616203|621085|621086|628162|628163|628164|628165|628166|628167|628168|650768|672392|683374|685108|685816|685819|690647|696802|780743|789411|824253|824254|824255|824256|864631|864632|864633|864634|864635|864636|864637|864638|864639|864640|864641|864642|864643|864644|864645|864646|864647|864648|864649|864650|864651|907280|907371|907396|907419|907456|916828|922119|930604|942037|942038|952474|970696|970697|976694|976695|976697|976698", + "upstreamId": "17912|17913|17914|17915|17916|17917|45327|45330|45331|45332|45333|187183|196754|196755|196756|196757|196758|236749|238334|238335|238336|246888|249983|249984|249986|249987|249988|249989|249990|260587|260588|260592|260593|260608|260609|260620|260626|280890|280891|280895|280902|280908|280911|280925|280929|280937|280941|280946|280951|281418|281421|281423|281431|281441|281446|281453|281456|281460|281473|282664|282665|282667|282690|282694|282939|282943|282945|282961|282962|282969|282970|282973|282975|354066|354068|362650|362651|362652|362653|362654|362655|362656|362657|362658|362659|362660|389422|391339|391346|391356|391359|391368|391371|391411|391518|391525|391530|391531|424995|424996|424997|424998|424999|431937|431938|431944|434136|434137|434140|442868|446937|448217|448243|448246|448250|448373|448374|483166|486860|486880|486881|486886|486915|486918|486922|498542|498556|508771|515983|515985|515988|516028|516048|516054|516137|516139|516151|516153|516156|538521|538526|538527|557107|557385|558559|588440|609293|612369|612370|616147|616151|616154|616162|616170|616172|616174|616178|616185|616190|616192|616199|616203|621085|621086|628162|628163|628164|628165|628166|628167|628168|650768|672392|683374|685108|685816|685819|690647|696802|780743|789411|824253|824254|824255|824256|864631|864632|864633|864634|864635|864636|864637|864638|864639|864640|864641|864642|864643|864644|864645|864646|864647|864648|864649|864650|864651|907280|907371|907396|907419|907456|916828|922119|930604|942037|942038|952474|970696|970697|976694|976695|976697|976698", "text": "Familial hypercholesterolemia 3" }, { - "baseId": "17912|17914|17917|18722|18724|18725|18727|18728|18729|18730|18731|18733|18734|18735|18736|18737|18738|18739|18740|18741|18742|18743|18744|18745|18748|18749|18750|18751|18752|18754|18755|18756|18758|18760|18761|18762|18763|18765|18766|18767|18768|18769|18770|18771|18772|18773|18774|18775|18776|18777|18778|18779|18780|18781|18782|18783|18784|18785|18786|23676|23697|31642|32929|32936|32975|39584|45113|45114|45115|45116|45117|45118|45119|45120|45121|45122|45123|45124|45125|45126|45127|45327|45328|45329|45330|45331|45332|45333|48709|71434|78990|78991|78993|78994|78995|80399|85303|133865|133866|133867|133868|133869|133870|133871|133872|133873|133874|133875|171195|171196|171197|171198|171199|171200|171201|171202|171203|171204|171205|171206|171207|171208|171209|171210|171211|171212|171213|171214|171215|171216|171217|171218|171219|171220|171221|171222|171223|171224|172183|178500|178502|178503|178733|178734|181222|181223|181224|181226|181228|181229|181231|181232|181233|181234|181238|181239|181240|181243|181244|181246|181247|181249|181250|181251|181252|181253|181255|181256|181257|181258|181259|181261|181262|181264|181265|181266|181268|181269|181270|181271|181272|181275|187182|187183|187184|187185|187186|187188|187189|187190|187191|187192|187193|187194|187195|196754|196755|196756|196757|196758|196823|198010|198011|198012|198013|198014|198015|198016|198017|198018|215237|215238|215239|215240|215241|215242|215243|215244|215245|215246|215247|215248|215561|224548|224549|226398|226399|226400|226401|226402|226972|227094|227095|227096|227097|227098|227328|227401|228101|228102|228103|228104|228105|228106|228107|228108|228109|228110|228111|228112|228113|228114|228115|228116|228117|228118|228119|228120|228121|228122|228123|228124|228125|228126|228127|228128|228129|228130|228131|228132|228133|228134|228135|228136|228137|228138|228139|228140|228141|228142|228143|228144|228145|228146|228147|228148|228149|228150|228151|228152|228153|228154|228155|228156|228157|228158|228159|228160|228161|228162|228163|228164|228165|228166|228167|228168|228169|228170|228171|228172|228173|228174|228175|228176|228177|228178|228179|228180|228181|228182|228183|228184|228185|228186|228187|228188|228189|228190|228191|228192|228193|228194|228195|228196|228197|228198|228199|228200|228201|228202|228203|228204|228205|228206|228207|228208|230978|230979|230980|230981|230982|236749|236950|237306|238334|238335|238336|238599|238600|238603|238604|238608|238609|238613|238615|238616|243265|243266|243267|243268|243269|243270|243271|243272|243273|243274|243275|243276|243277|243279|245299|245300|245301|245302|245303|245304|245305|245307|245308|245309|245310|245311|245312|245313|245314|245315|245316|245317|245318|245319|245320|245321|245322|245323|245324|245325|245326|245327|245328|245329|245330|245331|245332|245333|245334|245335|245336|245337|245338|245339|245340|245341|245342|245343|245344|245345|245346|245347|245348|245349|245350|245351|245352|245353|245354|245355|245356|245357|245358|245359|245360|245361|245362|245363|245364|245365|245366|245367|245368|245369|245370|245371|245372|245373|245374|245375|245376|245377|245378|245379|245380|245381|245382|245383|245384|245385|245386|245387|245388|245389|245390|245391|245392|245393|245394|245395|245396|245397|245398|245399|245400|245401|245402|245403|245404|245405|245406|245407|245408|245409|245410|245411|245412|245413|245415|245416|245417|245418|245419|245420|245421|245422|245423|245424|245425|245426|245427|245428|245429|245430|245431|245432|245433|245434|245435|245436|245437|245438|245439|245440|245441|245442|245443|245444|245445|245446|245447|245448|245449|245450|245451|245452|245453|245454|245455|245456|245457|245458|245459|245460|245461|245462|245463|245464|245465|245466|245467|245468|245469|245470|245471|245472|245473|245474|245475|245476|245477|245478|245479|245480|245481|245482|245483|245484|245485|245486|245487|245488|245489|245490|245491|245492|245493|245494|245495|245496|245497|245498|245499|245500|245501|245502|245503|245504|245505|245506|245507|245508|245509|245510|245511|245512|245513|245514|245515|245516|245517|245518|245519|245520|245521|245522|245523|245524|245525|245526|245527|245528|245529|245530|245531|245532|245533|245534|245535|245536|245537|245538|245539|245540|245541|245542|245543|245544|245545|245546|245547|245548|245549|245550|245551|245552|245553|245554|245555|245556|245557|245558|245559|245560|245561|245562|245563|245564|245565|245566|245567|245568|245569|245570|245571|245572|245573|245574|245575|245576|245577|245578|245579|245580|245581|245582|245583|245584|245585|245586|245587|245588|245589|245590|245591|245592|245593|245594|245595|245596|245597|245598|245599|245600|245601|245602|245603|245604|245605|245606|245607|245608|245609|245610|245611|245612|245613|245614|245615|245616|245617|245618|245619|245620|245621|245622|245623|245624|245625|245626|245627|245628|245629|245630|245631|245632|245633|245634|245635|245636|245637|245638|245639|245640|245641|245642|245643|245644|245645|245646|245647|245648|245649|245650|245651|245652|245653|245654|245655|245656|245657|245658|245659|245660|245661|245662|245663|245664|245665|245666|245667|245668|245669|245670|245671|245672|245673|245674|245675|245676|245677|245678|245679|245680|245681|245682|245683|245684|245685|245686|245687|245689|245690|245691|245693|245694|245695|245696|245697|245698|245699|245700|245701|245702|245703|245704|245705|245706|245707|245708|245709|245710|245711|245712|245713|245714|245715|245716|245717|245718|245719|245720|245721|245722|245723|245724|245725|245726|245727|245728|245729|245730|245731|245732|245733|245734|245735|245736|245737|245738|245739|245740|245741|245742|245743|245744|245745|245746|245747|245748|245749|245750|245751|245752|245753|245754|245755|245756|245757|245758|245759|245760|245761|245762|245763|245764|245765|245766|245767|245768|245769|245770|245771|245772|245773|245774|245775|245776|245777|245778|245779|245780|245781|245782|245783|245784|245785|245786|245787|245788|245789|245790|245791|245792|245793|245794|245795|245796|245797|245798|245799|245800|245801|245802|245803|245804|245805|245806|245807|245808|245809|245810|245811|245812|245813|245814|245815|245816|245817|245818|245819|245820|245821|245822|245823|245824|245825|245826|245827|245828|245829|245830|245831|245832|245833|245834|245835|245836|245837|245838|245839|245840|245841|245842|245843|245844|245845|245846|245847|245848|245849|245850|245851|245852|245853|245854|245855|245856|245857|245858|245859|245860|245861|245862|245863|245864|245865|245866|245867|245868|245869|245870|245871|245872|245873|245874|245875|245876|245877|245878|245879|245880|245881|245882|245883|245884|245885|245886|245887|245888|245889|245890|245891|245892|245893|245894|245895|245896|245897|245898|245899|245900|245901|245902|245903|245904|245905|245906|245907|245908|245909|245910|245911|245912|245913|245914|245915|245916|245917|245918|245919|245920|245921|245922|245923|245924|245925|245926|245927|245928|245929|245930|245931|245932|245933|245934|245935|245936|245937|245938|245939|245940|245941|245942|245943|245944|245945|245946|245947|245948|245949|245950|245951|245952|245953|245954|245955|245956|245957|245958|245959|245960|245961|245964|245965|245966|245967|245968|245969|245970|245971|245972|245973|245974|245975|245976|245977|245978|245979|245980|245981|245982|245983|245984|245985|245986|245987|245988|245989|245990|245991|245992|245993|245994|245995|245996|245997|245998|245999|246000|246001|246002|246003|246004|246005|246006|246007|246008|246009|246010|246011|246012|246013|246014|246015|246016|246017|246018|246019|246020|246021|246022|246023|246024|246025|246026|246027|246028|246029|246030|246031|246032|246033|246034|246035|246036|246037|246038|246039|246040|246041|246042|246043|246044|246045|246046|246047|246048|246049|246050|246051|246052|246053|246054|246055|246056|246057|246058|246059|246060|246061|246062|246063|246064|246065|246066|246067|246068|246069|246070|246071|246072|246073|246074|246075|246076|246077|246078|246079|246080|246081|246082|246083|246084|246085|246086|246087|246088|246089|246090|246091|246092|246093|246094|246095|246096|246097|246098|246099|246100|246101|246102|246103|246104|246105|246106|246107|246108|246109|246110|246111|246112|246113|246114|246115|246116|246117|246118|246119|246120|246121|246122|246123|246124|246125|246126|246127|246128|246129|246130|246131|246132|246133|246134|246135|246136|246137|246138|246139|246140|246141|246142|246143|246144|246145|246146|246147|246148|246149|246150|246151|246152|246153|246154|246155|246156|246157|246158|246159|246160|246161|246162|246163|246164|246165|246166|246167|246168|246169|246170|246171|246172|246173|246174|246175|246176|246177|246178|246179|246180|246181|246182|246183|246184|246185|246186|246187|246188|246189|246190|246191|246192|246193|246194|246195|246196|246197|246198|246199|246200|246201|246202|246203|246204|246205|246206|246207|246208|246209|246210|246211|246212|246213|246214|246215|246216|246217|246218|246219|246220|246221|246222|246223|246224|246225|246226|246227|246228|246229|246230|246231|246232|246233|246234|246235|246236|246237|246238|246239|246240|246241|246242|246243|246244|246245|246246|246247|246248|246249|246250|246251|246252|246253|246254|246255|246256|246257|246258|246259|246260|246261|246262|246263|246264|246265|246266|246267|246268|246269|246270|246271|246272|246273|246274|246275|246276|246277|246278|246279|246280|246281|246282|246283|246285|246286|246287|246288|246289|246290|246291|246292|246293|246294|246295|246296|246297|246298|246299|246300|246301|246302|246303|246304|246305|246306|246307|246308|246309|246310|246311|246312|246313|246314|246315|246316|246317|246318|246319|246320|246321|246322|246323|246324|246325|246326|246327|246328|246329|246330|246331|246332|246333|246334|246335|246336|246337|246338|246339|246340|246341|246342|246343|246344|246345|246346|246347|246348|246349|246350|246351|246352|246353|246354|246355|246356|246357|246358|246359|246360|246361|246362|246363|246364|246365|246366|246367|246368|246369|246370|246371|246372|246373|246374|246375|246376|246377|246378|246379|246380|246381|246382|246383|246384|246385|246386|246387|246388|246389|246390|246391|246392|246393|246394|246395|246396|246397|246398|246399|246400|246401|246402|246403|246404|246405|246406|246407|246408|246409|246410|246411|246412|246413|246414|246415|246416|246417|246418|246419|246420|246421|246422|246423|246424|246425|246426|246427|246428|246429|246430|246431|246432|246433|246434|246435|246436|246437|246438|246439|246440|246441|246442|246443|246444|246445|246446|246447|246448|246449|246450|246451|246452|246453|246454|246455|246456|246457|246458|246459|246460|246461|246462|246463|246464|246465|246466|246467|246468|246469|246470|246471|246472|246473|246474|246475|246476|246477|246478|246479|246480|246481|246482|246483|246484|246485|246486|246487|246488|246489|246490|246491|246492|246493|246494|246495|246496|246497|246498|246499|246500|246501|246502|246503|246504|246505|246506|246507|246508|246509|246510|246511|246512|246513|246514|246515|246516|246517|246518|246519|246520|246521|246522|246523|246524|246525|246526|246527|246528|246529|246530|246531|246532|246533|246534|246535|246536|246537|246538|246539|246540|246541|246542|246543|246544|246545|246546|246547|246548|246549|246550|246551|246552|246553|246554|246555|246556|246557|246558|246559|246560|246561|246562|246563|246564|246565|246566|246567|246568|246569|246570|246571|246572|246573|246574|246575|246576|246577|246578|246579|246580|246581|246582|246583|246584|246585|246586|246587|246588|246589|246590|246591|246592|246593|246594|246595|246596|246597|246598|246599|246600|246601|246602|246603|246604|246605|246606|246607|246608|246609|246610|246611|246612|246613|246614|246615|246616|246617|246618|246619|246620|246621|246622|246623|246624|246625|246626|246627|246628|246629|246630|246631|246632|246633|246634|246635|246636|246637|246638|246639|246640|246641|246642|246643|246644|246645|246646|246647|246648|246649|246650|246651|246652|246653|246654|246655|246656|246657|246658|246659|246660|246661|246662|246663|246664|246665|246666|246667|246668|246669|246670|246671|246672|246673|246674|246675|246676|246677|246678|246679|246680|246681|246682|246683|246684|246685|246686|246687|246688|246689|246690|246691|246692|246693|246694|246695|246696|246697|246698|246699|246700|246701|246702|246703|246704|246705|246706|246707|246708|246709|246710|246711|246712|246713|246714|246715|246716|246717|246718|246719|246720|246721|246722|246723|246724|246725|246726|246727|246728|246729|246730|246731|246732|246733|246734|246735|246736|246737|246738|246739|246740|246741|246909|246910|246911|246912|246913|246914|246915|248533|249983|249984|249986|249987|249988|249989|249990|250516|250517|250518|250519|250520|250522|250523|250525|250526|250527|250529|250530|250531|250532|250533|250534|256753|256754|260587|260588|260589|260590|260591|260592|260593|260594|260595|260596|260597|260598|260599|260600|260601|260602|260603|260604|260605|260606|260607|260608|260609|260610|260611|260612|260613|260614|260615|260616|260617|260618|260619|260620|260621|260622|260623|260624|260625|260626|260627|260628|260629|260630|260631|260632|260633|260634|260635|260636|260637|260638|260639|260640|260641|260642|260643|260644|260645|260646|260647|260648|260649|260650|260651|260652|260654|260656|260657|260658|260659|260660|260661|260662|260663|260664|260665|260666|265379|280237|280258|280644|280907|280912|280921|280922|280927|280928|280943|280947|281413|281414|281418|281421|281423|281462|281464|281482|281488|281491|281492|281950|282654|282656|282659|282664|282665|282680|282688|282691|282692|282936|282943|282952|282971|282972|282974|282976|282977|284402|284413|284416|284421|284434|284445|284451|284454|284455|284456|284508|284513|284515|284527|284529|284531|285073|285074|285075|285090|285091|285092|285100|285117|285119|285145|285188|285193|285207|285211|287134|287185|287196|287224|287248|287249|287258|287262|287263|287264|287276|287316|287326|287334|287372|287496|287497|287500|287501|287521|287529|287554|287575|287583|287586|287591|287593|332455|332458|332460|332463|332467|332469|332470|332472|332476|332482|332484|332486|332488|332490|332491|332493|342625|342628|342630|342638|342639|342642|342647|342649|342654|342658|342660|342664|342676|342679|342685|342690|342694|342696|342698|342700|342703|348002|348004|348007|348008|348009|348010|348011|348015|348025|348029|348032|348033|348037|348049|348051|348052|348054|348063|349291|349292|349295|349296|349302|349303|349307|349308|349311|349312|349315|349316|349319|349320|349323|349324|349327|349330|349331|349334|349335|349338|349339|349342|349343|349345|354066|354067|354068|354069|354070|354071|354072|354073|354074|354075|354076|354077|354078|354079|354080|354081|354082|354083|354084|354085|354087|354088|354089|354090|354091|354092|354093|354094|354095|354096|354097|354098|354099|354100|354102|359028|359029|360376|361884|361885|362654|362659|362660|362661|362662|362663|362664|362665|362666|362667|362668|362669|362670|362671|362672|362673|362674|362675|362676|362677|362678|362679|362680|362681|362682|362683|362684|362685|362686|362687|362688|362689|362690|362691|362692|362693|362694|362695|362696|362697|362698|362699|362700|362701|362702|362703|362704|362705|362706|362707|362708|362709|362710|362711|362712|362713|362714|362715|362716|362717|362718|362719|362720|362721|362722|362723|362724|362725|362726|362727|362728|362729|362730|362731|362732|362733|366106|366335|389420|389422|389486|389492|389497|389499|389506|390608|390609|390610|390611|390612|390613|390614|390615|390616|390617|390618|390619|390620|390621|390622|390623|390624|390625|390626|390627|390628|390629|390630|390631|390632|390633|390634|390635|390636|390637|390638|390639|390640|390641|390642|390643|390644|390645|391339|391356|391359|391518|392299|392380|392470|392489|392541|402815|402817|402821|402822|403130|403133|403134|403140|403364|403593|403607|403615|424286|424287|424288|424289|424290|424291|424292|424293|424294|424295|424296|424297|424298|424299|424300|424301|424302|424303|424304|424305|424306|424307|424308|424309|424310|424311|424312|424313|424314|424315|424316|424317|424318|424319|424320|424321|424322|424323|424324|424325|424326|424327|424328|424329|424330|424331|424332|424333|424334|424335|424336|424337|424338|424339|424340|424341|424342|424343|424345|424346|424994|424995|424996|424997|424998|424999|425000|425001|425002|425003|425004|425005|425006|425007|425008|425009|425010|425011|425012|425013|425014|425015|425016|425017|425018|425019|425020|425021|425022|425023|425024|425025|425026|425027|425028|425029|425030|425031|425032|425033|425034|425035|425036|425037|425038|425039|425040|425041|425042|425043|425044|425045|425046|425047|425048|425049|425050|425051|425052|425053|425054|425055|425056|425057|425058|425059|425060|425061|425062|425063|425064|425065|425464|426727|426728|431937|431938|431939|431940|431941|431942|431943|431944|431945|431946|431947|431948|431949|431950|431951|431952|431953|431954|431955|431956|431957|431958|431959|431960|431961|431962|431963|431964|431965|431966|432340|432341|434113|434132|434133|434134|434135|434136|434137|434139|434140|434141|434142|434143|434144|434145|434147|434148|434149|434150|434151|434152|434153|434154|434155|434156|434157|434158|434159|434160|434161|434162|434163|434165|434166|434167|434168|434169|434170|434173|434178|434179|434181|434182|434183|434184|434185|434186|434187|434188|434189|434190|434191|434192|434193|434194|434195|434196|434197|434198|434199|434200|434201|434202|434203|434204|434205|434206|434207|434208|434209|434210|434211|434212|434213|434214|434215|434216|434217|434218|434219|434220|434221|434222|434223|434224|434225|434226|434227|434228|434229|434230|434231|434232|434233|434234|434235|434236|434237|434238|434239|434240|434241|434242|434243|434244|434245|434246|434247|434248|434249|434250|434251|434252|434253|434254|434255|434256|434257|434258|434259|434260|434261|434262|434263|434264|434265|434266|434267|434268|434269|434270|434271|434272|434273|434274|434275|434276|434277|434278|434279|434280|434281|434282|434283|434284|434285|434286|434287|434288|434289|434290|434291|434292|434293|434294|434295|434296|434297|434298|434299|434300|434301|434302|434303|434304|434305|434306|434307|434308|434309|434310|434311|434312|434313|434314|434315|434316|434317|434318|434319|434320|434321|434322|434323|434324|434325|434326|434327|434328|434329|434330|434331|434332|434333|434334|434335|434336|434337|434338|434339|434340|434341|434342|434343|434344|434345|434346|434347|434348|434349|434350|434351|434352|434353|434799|434800|434801|434802|434804|434805|434806|434807|434808|434809|434810|434811|434812|434813|434814|434816|434817|434818|434819|434820|434821|434822|434823|434824|434825|434826|434827|434828|434829|434830|434831|434832|434833|434834|434835|434836|434837|434838|434839|434840|434841|434842|434843|434844|434845|434846|434847|434848|434849|434850|434851|434852|434853|434854|434855|434856|434857|434858|434859|434860|439496|443153|448374|450308|450435|450442|450471|450571|450581|468135|468139|468144|468439|469072|469454|469711|469713|470338|483166|483168|483170|483174|483177|483179|483180|483181|483184|483188|483198|483200|483203|483206|483208|483209|483210|483213|483214|483218|483219|483220|483222|483223|483225|483227|483228|483229|483249|485254|485258|485450|485551|485552|486884|486922|486938|488034|498556|506479|514364|514365|514366|514367|514368|514369|514370|514371|514372|514373|514374|514375|514376|514377|514378|514379|514380|514381|514382|514383|514384|514385|514386|517658|517691|532348|532355|532648|532649|532657|532667|532676|532822|533080|538521|538522|538523|538524|538525|538526|538527|538528|538529|538530|538531|538532|538533|538534|538535|538536|538537|538538|538539|538540|538541|538542|538543|538544|538545|538546|538547|538548|538549|538550|538551|538552|538553|538554|538555|538556|538557|538558|538559|538560|538561|538562|538563|538564|538565|538566|538567|538568|538572|538573|538575|538576|538577|538578|538579|538580|538584|538585|538586|538587|538588|538589|538590|538591|538592|538593|538594|538595|538596|538597|538598|539017|570262|570268|570466|570469|572695|572698|572700|572701|572866|572867|572871|574858|612328|616240|616464|618955|618971|672016|672154|672155|672156|672380|672452|672453|676937|676938|676939|676940|676941|676942|676943|676944|688957|790164|799096|799097|799098|816444|857605|857606|857607|857608|857609|858485|858486|879825|879826|879827|879828|879829|879830|879831|879832|879833|879834|879835|879836|879837|879838|879839|879840|879841|879842|879843|879844|879845|879846|879847|879848|879849|879850|879851|879852|879853|879854|879855|879856|879857|879858|879859|879860|879861|879862|879863|879864|879865|879866|879867|879868|880688|907345|914692|914728|961224|961225|964503|964693|966109|966110|966111|966112|966113|966114|966115|966116|966117|966118|966119|966120|966121|966122|966123|966124|966125|966126|966127|966421|966422|966424|967247|971110|974890|976696|980838", + "upstreamId": "17912|17914|17917|18722|18724|18725|18727|18728|18729|18730|18731|18733|18734|18735|18736|18737|18738|18739|18740|18741|18742|18743|18744|18745|18748|18749|18750|18751|18752|18754|18755|18756|18758|18760|18761|18762|18763|18765|18766|18767|18768|18769|18770|18771|18772|18773|18774|18775|18776|18777|18778|18779|18780|18781|18782|18783|18784|18785|18786|23676|23697|31642|32929|32936|32975|39584|45113|45114|45115|45116|45117|45118|45119|45120|45121|45122|45123|45124|45125|45126|45127|45327|45328|45329|45330|45331|45332|45333|48709|71434|78990|78991|78993|78994|78995|80399|85303|133865|133866|133867|133868|133869|133870|133871|133872|133873|133874|133875|171195|171196|171197|171198|171199|171200|171201|171202|171203|171204|171205|171206|171207|171208|171209|171210|171211|171212|171213|171214|171215|171216|171217|171218|171219|171220|171221|171222|171223|171224|172183|178500|178502|178503|178733|178734|181222|181223|181224|181226|181228|181229|181231|181232|181233|181234|181238|181239|181240|181243|181244|181246|181247|181249|181250|181251|181252|181253|181255|181256|181257|181258|181259|181261|181262|181264|181265|181266|181268|181269|181270|181271|181272|181275|187182|187183|187184|187185|187186|187188|187189|187190|187191|187192|187193|187194|187195|196754|196755|196756|196757|196758|196823|198010|198011|198012|198013|198014|198015|198016|198017|198018|215237|215238|215239|215240|215241|215242|215243|215244|215245|215246|215247|215248|215561|224548|224549|226398|226399|226400|226401|226402|226972|227094|227095|227096|227097|227098|227328|227401|228101|228102|228103|228104|228105|228106|228107|228108|228109|228110|228111|228112|228113|228114|228115|228116|228117|228118|228119|228120|228121|228122|228123|228124|228125|228126|228127|228128|228129|228130|228131|228132|228133|228134|228135|228136|228137|228138|228139|228140|228141|228142|228143|228144|228145|228146|228147|228148|228149|228150|228151|228152|228153|228154|228155|228156|228157|228158|228159|228160|228161|228162|228163|228164|228165|228166|228167|228168|228169|228170|228171|228172|228173|228174|228175|228176|228177|228178|228179|228180|228181|228182|228183|228184|228185|228186|228187|228188|228189|228190|228191|228192|228193|228194|228195|228196|228197|228198|228199|228200|228201|228202|228203|228204|228205|228206|228207|228208|230978|230979|230980|230981|230982|236749|236950|237306|238334|238335|238336|238599|238600|238603|238604|238608|238609|238613|238615|238616|243265|243266|243267|243268|243269|243270|243271|243272|243273|243274|243275|243276|243277|243279|245299|245300|245301|245302|245303|245304|245305|245307|245308|245309|245310|245311|245312|245313|245314|245315|245316|245317|245318|245319|245320|245321|245322|245323|245324|245325|245326|245327|245328|245329|245330|245331|245332|245333|245334|245335|245336|245337|245338|245339|245340|245341|245342|245343|245344|245345|245346|245347|245348|245349|245350|245351|245352|245353|245354|245355|245356|245357|245358|245359|245360|245361|245362|245363|245364|245365|245366|245367|245368|245369|245370|245371|245372|245373|245374|245375|245376|245377|245378|245379|245380|245381|245382|245383|245384|245385|245386|245387|245388|245389|245390|245391|245392|245393|245394|245395|245396|245397|245398|245399|245400|245401|245402|245403|245404|245405|245406|245407|245408|245409|245410|245411|245412|245413|245415|245416|245417|245418|245419|245420|245421|245422|245423|245424|245425|245426|245427|245428|245429|245430|245431|245432|245433|245434|245435|245436|245437|245438|245439|245440|245441|245442|245443|245444|245445|245446|245447|245448|245449|245450|245451|245452|245453|245454|245455|245456|245457|245458|245459|245460|245461|245462|245463|245464|245465|245466|245467|245468|245469|245470|245471|245472|245473|245474|245475|245476|245477|245478|245479|245480|245481|245482|245483|245484|245485|245486|245487|245488|245489|245490|245491|245492|245493|245494|245495|245496|245497|245498|245499|245500|245501|245502|245503|245504|245505|245506|245507|245508|245509|245510|245511|245512|245513|245514|245515|245516|245517|245518|245519|245520|245521|245522|245523|245524|245525|245526|245527|245528|245529|245530|245531|245532|245533|245534|245535|245536|245537|245538|245539|245540|245541|245542|245543|245544|245545|245546|245547|245548|245549|245550|245551|245552|245553|245554|245555|245556|245557|245558|245559|245560|245561|245562|245563|245564|245565|245566|245567|245568|245569|245570|245571|245572|245573|245574|245575|245576|245577|245578|245579|245580|245581|245582|245583|245584|245585|245586|245587|245588|245589|245590|245591|245592|245593|245594|245595|245596|245597|245598|245599|245600|245601|245602|245603|245604|245605|245606|245607|245608|245609|245610|245611|245612|245613|245614|245615|245616|245617|245618|245619|245620|245621|245622|245623|245624|245625|245626|245627|245628|245629|245630|245631|245632|245633|245634|245635|245636|245637|245638|245639|245640|245641|245642|245643|245644|245645|245646|245647|245648|245649|245650|245651|245652|245653|245654|245655|245656|245657|245658|245659|245660|245661|245662|245663|245664|245665|245666|245667|245668|245669|245670|245671|245672|245673|245674|245675|245676|245677|245678|245679|245680|245681|245682|245683|245684|245685|245686|245687|245689|245690|245691|245693|245694|245695|245696|245697|245698|245699|245700|245701|245702|245703|245704|245705|245706|245707|245708|245709|245710|245711|245712|245713|245714|245715|245716|245717|245718|245719|245720|245721|245722|245723|245724|245725|245726|245727|245728|245729|245730|245731|245732|245733|245734|245735|245736|245737|245738|245739|245740|245741|245742|245743|245744|245745|245746|245747|245748|245749|245750|245751|245752|245753|245754|245755|245756|245757|245758|245759|245760|245761|245762|245763|245764|245765|245766|245767|245768|245769|245770|245771|245772|245773|245774|245775|245776|245777|245778|245779|245780|245781|245782|245783|245784|245785|245786|245787|245788|245789|245790|245791|245792|245793|245794|245795|245796|245797|245798|245799|245800|245801|245802|245803|245804|245805|245806|245807|245808|245809|245810|245811|245812|245813|245814|245815|245816|245817|245818|245819|245820|245821|245822|245823|245824|245825|245826|245827|245828|245829|245830|245831|245832|245833|245834|245835|245836|245837|245838|245839|245840|245841|245842|245843|245844|245845|245846|245847|245848|245849|245850|245851|245852|245853|245854|245855|245856|245857|245858|245859|245860|245861|245862|245863|245864|245865|245866|245867|245868|245869|245870|245871|245872|245873|245874|245875|245876|245877|245878|245879|245880|245881|245882|245883|245884|245885|245886|245887|245888|245889|245890|245891|245892|245893|245894|245895|245896|245897|245898|245899|245900|245901|245902|245903|245904|245905|245906|245907|245908|245909|245910|245911|245912|245913|245914|245915|245916|245917|245918|245919|245920|245921|245922|245923|245924|245925|245926|245927|245928|245929|245930|245931|245932|245933|245934|245935|245936|245937|245938|245939|245940|245941|245942|245943|245944|245945|245946|245947|245948|245949|245950|245951|245952|245953|245954|245955|245956|245957|245958|245959|245960|245961|245964|245965|245966|245967|245968|245969|245970|245971|245972|245973|245974|245975|245976|245977|245978|245979|245980|245981|245982|245983|245984|245985|245986|245987|245988|245989|245990|245991|245992|245993|245994|245995|245996|245997|245998|245999|246000|246001|246002|246003|246004|246005|246006|246007|246008|246009|246010|246011|246012|246013|246014|246015|246016|246017|246018|246019|246020|246021|246022|246023|246024|246025|246026|246027|246028|246029|246030|246031|246032|246033|246034|246035|246036|246037|246038|246039|246040|246041|246042|246043|246044|246045|246046|246047|246048|246049|246050|246051|246052|246053|246054|246055|246056|246057|246058|246059|246060|246061|246062|246063|246064|246065|246066|246067|246068|246069|246070|246071|246072|246073|246074|246075|246076|246077|246078|246079|246080|246081|246082|246083|246084|246085|246086|246087|246088|246089|246090|246091|246092|246093|246094|246095|246096|246097|246098|246099|246100|246101|246102|246103|246104|246105|246106|246107|246108|246109|246110|246111|246112|246113|246114|246115|246116|246117|246118|246119|246120|246121|246122|246123|246124|246125|246126|246127|246128|246129|246130|246131|246132|246133|246134|246135|246136|246137|246138|246139|246140|246141|246142|246143|246144|246145|246146|246147|246148|246149|246150|246151|246152|246153|246154|246155|246156|246157|246158|246159|246160|246161|246162|246163|246164|246165|246166|246167|246168|246169|246170|246171|246172|246173|246174|246175|246176|246177|246178|246179|246180|246181|246182|246183|246184|246185|246186|246187|246188|246189|246190|246191|246192|246193|246194|246195|246196|246197|246198|246199|246200|246201|246202|246203|246204|246205|246206|246207|246208|246209|246210|246211|246212|246213|246214|246215|246216|246217|246218|246219|246220|246221|246222|246223|246224|246225|246226|246227|246228|246229|246230|246231|246232|246233|246234|246235|246236|246237|246238|246239|246240|246241|246242|246243|246244|246245|246246|246247|246248|246249|246250|246251|246252|246253|246254|246255|246256|246257|246258|246259|246260|246261|246262|246263|246264|246265|246266|246267|246268|246269|246270|246271|246272|246273|246274|246275|246276|246277|246278|246279|246280|246281|246282|246283|246285|246286|246287|246288|246289|246290|246291|246292|246293|246294|246295|246296|246297|246298|246299|246300|246301|246302|246303|246304|246305|246306|246307|246308|246309|246310|246311|246312|246313|246314|246315|246316|246317|246318|246319|246320|246321|246322|246323|246324|246325|246326|246327|246328|246329|246330|246331|246332|246333|246334|246335|246336|246337|246338|246339|246340|246341|246342|246343|246344|246345|246346|246347|246348|246349|246350|246351|246352|246353|246354|246355|246356|246357|246358|246359|246360|246361|246362|246363|246364|246365|246366|246367|246368|246369|246370|246371|246372|246373|246374|246375|246376|246377|246378|246379|246380|246381|246382|246383|246384|246385|246386|246387|246388|246389|246390|246391|246392|246393|246394|246395|246396|246397|246398|246399|246400|246401|246402|246403|246404|246405|246406|246407|246408|246409|246410|246411|246412|246413|246414|246415|246416|246417|246418|246419|246420|246421|246422|246423|246424|246425|246426|246427|246428|246429|246430|246431|246432|246433|246434|246435|246436|246437|246438|246439|246440|246441|246442|246443|246444|246445|246446|246447|246448|246449|246450|246451|246452|246453|246454|246455|246456|246457|246458|246459|246460|246461|246462|246463|246464|246465|246466|246467|246468|246469|246470|246471|246472|246473|246474|246475|246476|246477|246478|246479|246480|246481|246482|246483|246484|246485|246486|246487|246488|246489|246490|246491|246492|246493|246494|246495|246496|246497|246498|246499|246500|246501|246502|246503|246504|246505|246506|246507|246508|246509|246510|246511|246512|246513|246514|246515|246516|246517|246518|246519|246520|246521|246522|246523|246524|246525|246526|246527|246528|246529|246530|246531|246532|246533|246534|246535|246536|246537|246538|246539|246540|246541|246542|246543|246544|246545|246546|246547|246548|246549|246550|246551|246552|246553|246554|246555|246556|246557|246558|246559|246560|246561|246562|246563|246564|246565|246566|246567|246568|246569|246570|246571|246572|246573|246574|246575|246576|246577|246578|246579|246580|246581|246582|246583|246584|246585|246586|246587|246588|246589|246590|246591|246592|246593|246594|246595|246596|246597|246598|246599|246600|246601|246602|246603|246604|246605|246606|246607|246608|246609|246610|246611|246612|246613|246614|246615|246616|246617|246618|246619|246620|246621|246622|246623|246624|246625|246626|246627|246628|246629|246630|246631|246632|246633|246634|246635|246636|246637|246638|246639|246640|246641|246642|246643|246644|246645|246646|246647|246648|246649|246650|246651|246652|246653|246654|246655|246656|246657|246658|246659|246660|246661|246662|246663|246664|246665|246666|246667|246668|246669|246670|246671|246672|246673|246674|246675|246676|246677|246678|246679|246680|246681|246682|246683|246684|246685|246686|246687|246688|246689|246690|246691|246692|246693|246694|246695|246696|246697|246698|246699|246700|246701|246702|246703|246704|246705|246706|246707|246708|246709|246710|246711|246712|246713|246714|246715|246716|246717|246718|246719|246720|246721|246722|246723|246724|246725|246726|246727|246728|246729|246730|246731|246732|246733|246734|246735|246736|246737|246738|246739|246740|246741|246909|246910|246911|246912|246913|246914|246915|248533|249983|249984|249986|249987|249988|249989|249990|250516|250517|250518|250519|250520|250522|250523|250525|250526|250527|250529|250530|250531|250532|250533|250534|256753|256754|260587|260588|260589|260590|260591|260592|260593|260594|260595|260596|260597|260598|260599|260600|260601|260602|260603|260604|260605|260606|260607|260608|260609|260610|260611|260612|260613|260614|260615|260616|260617|260618|260619|260620|260621|260622|260623|260624|260625|260626|260627|260628|260629|260630|260631|260632|260633|260634|260635|260636|260637|260638|260639|260640|260641|260642|260643|260644|260645|260646|260647|260648|260649|260650|260651|260652|260654|260656|260657|260658|260659|260660|260661|260662|260663|260664|260665|260666|265379|280237|280258|280644|280907|280912|280921|280922|280927|280928|280943|280947|281413|281414|281418|281421|281423|281462|281464|281482|281488|281491|281492|281950|282654|282656|282659|282664|282665|282680|282688|282691|282692|282936|282943|282952|282971|282972|282974|282976|282977|284402|284413|284416|284421|284434|284445|284451|284454|284455|284456|284508|284513|284515|284527|284529|284531|285073|285074|285075|285090|285091|285092|285100|285117|285119|285145|285188|285193|285207|285211|287134|287185|287196|287224|287248|287249|287258|287262|287263|287264|287276|287316|287326|287334|287372|287496|287497|287500|287501|287521|287529|287554|287575|287583|287586|287591|287593|332455|332458|332460|332463|332467|332469|332470|332472|332476|332482|332484|332486|332488|332490|332491|332493|342625|342628|342630|342638|342639|342642|342647|342649|342654|342658|342660|342664|342676|342679|342685|342690|342694|342696|342698|342700|342703|348002|348004|348007|348008|348009|348010|348011|348015|348025|348029|348032|348033|348037|348049|348051|348052|348054|348063|349291|349292|349295|349296|349302|349303|349307|349308|349311|349312|349315|349316|349319|349320|349323|349324|349327|349330|349331|349334|349335|349338|349339|349342|349343|349345|354066|354067|354068|354069|354070|354071|354072|354073|354074|354075|354076|354077|354078|354079|354080|354081|354082|354083|354084|354085|354087|354088|354089|354090|354091|354092|354093|354094|354095|354096|354097|354098|354099|354100|354102|359028|359029|360376|361884|361885|362654|362659|362660|362661|362662|362663|362664|362665|362666|362667|362668|362669|362670|362671|362672|362673|362674|362675|362676|362677|362678|362679|362680|362681|362682|362683|362684|362685|362686|362687|362688|362689|362690|362691|362692|362693|362694|362695|362696|362697|362698|362699|362700|362701|362702|362703|362704|362705|362706|362707|362708|362709|362710|362711|362712|362713|362714|362715|362716|362717|362718|362719|362720|362721|362722|362723|362724|362725|362726|362727|362728|362729|362730|362731|362732|362733|366106|366335|389420|389422|389486|389492|389497|389499|389506|390608|390609|390610|390611|390612|390613|390614|390615|390616|390617|390618|390619|390620|390621|390622|390623|390624|390625|390626|390627|390628|390629|390630|390631|390632|390633|390634|390635|390636|390637|390638|390639|390640|390641|390642|390643|390644|390645|391339|391356|391359|391518|392299|392380|392470|392489|392541|402815|402817|402821|402822|403130|403133|403134|403140|403364|403593|403607|403615|424286|424287|424288|424289|424290|424291|424292|424293|424294|424295|424296|424297|424298|424299|424300|424301|424302|424303|424304|424305|424306|424307|424308|424309|424310|424311|424312|424313|424314|424315|424316|424317|424318|424319|424320|424321|424322|424323|424324|424325|424326|424327|424328|424329|424330|424331|424332|424333|424334|424335|424336|424337|424338|424339|424340|424341|424342|424343|424345|424346|424994|424995|424996|424997|424998|424999|425000|425001|425002|425003|425004|425005|425006|425007|425008|425009|425010|425011|425012|425013|425014|425015|425016|425017|425018|425019|425020|425021|425022|425023|425024|425025|425026|425027|425028|425029|425030|425031|425032|425033|425034|425035|425036|425037|425038|425039|425040|425041|425042|425043|425044|425045|425046|425047|425048|425049|425050|425051|425052|425053|425054|425055|425056|425057|425058|425059|425060|425061|425062|425063|425064|425065|425464|426727|426728|431937|431938|431939|431940|431941|431942|431943|431944|431945|431946|431947|431948|431949|431950|431951|431952|431953|431954|431955|431956|431957|431958|431959|431960|431961|431962|431963|431964|431965|431966|432340|432341|434113|434132|434133|434134|434135|434136|434137|434139|434140|434141|434142|434143|434144|434145|434147|434148|434149|434150|434151|434152|434153|434154|434155|434156|434157|434158|434159|434160|434161|434162|434163|434165|434166|434167|434168|434169|434170|434173|434178|434179|434181|434182|434183|434184|434185|434186|434187|434188|434189|434190|434191|434192|434193|434194|434195|434196|434197|434198|434199|434200|434201|434202|434203|434204|434205|434206|434207|434208|434209|434210|434211|434212|434213|434214|434215|434216|434217|434218|434219|434220|434221|434222|434223|434224|434225|434226|434227|434228|434229|434230|434231|434232|434233|434234|434235|434236|434237|434238|434239|434240|434241|434242|434243|434244|434245|434246|434247|434248|434249|434250|434251|434252|434253|434254|434255|434256|434257|434258|434259|434260|434261|434262|434263|434264|434265|434266|434267|434268|434269|434270|434271|434272|434273|434274|434275|434276|434277|434278|434279|434280|434281|434282|434283|434284|434285|434286|434287|434288|434289|434290|434291|434292|434293|434294|434295|434296|434297|434298|434299|434300|434301|434302|434303|434304|434305|434306|434307|434308|434309|434310|434311|434312|434313|434314|434315|434316|434317|434318|434319|434320|434321|434322|434323|434324|434325|434326|434327|434328|434329|434330|434331|434332|434333|434334|434335|434336|434337|434338|434339|434340|434341|434342|434343|434344|434345|434346|434347|434348|434349|434350|434351|434352|434353|434799|434800|434801|434802|434804|434805|434806|434807|434808|434809|434810|434811|434812|434813|434814|434816|434817|434818|434819|434820|434821|434822|434823|434824|434825|434826|434827|434828|434829|434830|434831|434832|434833|434834|434835|434836|434837|434838|434839|434840|434841|434842|434843|434844|434845|434846|434847|434848|434849|434850|434851|434852|434853|434854|434855|434856|434857|434858|434859|434860|439496|443153|448374|450308|450435|450442|450471|450571|450581|468135|468139|468144|468439|469072|469454|469711|469713|470338|483166|483168|483170|483174|483177|483179|483180|483181|483184|483188|483198|483200|483203|483206|483208|483209|483210|483213|483214|483218|483219|483220|483222|483223|483225|483227|483228|483229|483249|485254|485258|485450|485551|485552|486884|486922|486938|488034|498556|506479|514364|514365|514366|514367|514368|514369|514370|514371|514372|514373|514374|514375|514376|514377|514378|514379|514380|514381|514382|514383|514384|514385|514386|517658|517691|532348|532355|532648|532649|532657|532667|532676|532822|533080|538521|538522|538523|538524|538525|538526|538527|538528|538529|538530|538531|538532|538533|538534|538535|538536|538537|538538|538539|538540|538541|538542|538543|538544|538545|538546|538547|538548|538549|538550|538551|538552|538553|538554|538555|538556|538557|538558|538559|538560|538561|538562|538563|538564|538565|538566|538567|538568|538572|538573|538575|538576|538577|538578|538579|538580|538584|538585|538586|538587|538588|538589|538590|538591|538592|538593|538594|538595|538596|538597|538598|539017|570262|570268|570466|570469|572695|572698|572700|572701|572866|572867|572871|574858|612328|616240|616464|618955|618971|672016|672154|672155|672156|672380|672452|672453|676937|676938|676939|676940|676941|676942|676943|676944|688957|790164|799096|799097|799098|816444|857605|857606|857607|857608|857609|858485|858486|879825|879826|879827|879828|879829|879830|879831|879832|879833|879834|879835|879836|879837|879838|879839|879840|879841|879842|879843|879844|879845|879846|879847|879848|879849|879850|879851|879852|879853|879854|879855|879856|879857|879858|879859|879860|879861|879862|879863|879864|879865|879866|879867|879868|880688|907345|914692|914728|961224|961225|964503|964693|966109|966110|966111|966112|966113|966114|966115|966116|966117|966118|966119|966120|966121|966122|966123|966124|966125|966126|966127|966421|966422|966424|967247|971110|974890|976696|980838", "text": "Familial hypercholesterolemia 1" }, { - "baseId": "17915|17916|17917|17919", + "upstreamId": "17915|17916|17917|17919", "text": "Low density lipoprotein cholesterol level quantitative trait locus 1" }, { - "baseId": "17915|17916|18722|18724|18725|18727|18728|18729|18730|18731|18733|18734|18735|18736|18737|18738|18741|18765|18766|18768|18769|18770|18772|18774|18775|18776|18777|18778|18779|18780|18783|18785|19815|19820|32923|32926|32929|32934|32935|32936|45113|45114|45115|45116|45117|45118|45119|45122|45123|45124|45125|45127|45329|48709|71434|78990|78991|78992|78993|78994|78995|85303|85305|85309|133865|133866|133867|133868|133869|133870|133871|133872|133873|133874|133875|171195|171196|171197|171198|171199|171200|171201|171202|171203|171204|171205|171206|171207|171208|171209|171210|171211|171212|171213|171214|171215|171216|171217|171218|171219|171220|171221|171222|171223|171224|172183|178500|178503|178734|181222|181224|181226|181228|181229|181232|181233|181236|181238|181240|181242|181243|181244|181245|181246|181247|181248|181249|181250|181251|181252|181253|181256|181257|181258|181259|181262|181263|181265|181268|181269|181270|181272|181275|181277|187182|187183|187189|187190|187191|187193|187194|196756|196758|196823|196824|198011|198012|198013|198014|198015|198016|198018|215238|215240|215241|215242|215243|215244|215245|215246|215247|215248|215561|224548|226398|226399|226400|226401|226402|226972|227097|227401|228114|228115|228116|228117|228119|228120|228125|228127|228128|228129|228130|228131|228132|228135|228140|228142|228143|228144|228145|228146|228147|228149|228150|228155|228156|228157|228160|228161|228162|228163|228164|228169|228172|228173|228174|228176|228179|228180|228184|228189|228192|228193|228195|228197|228201|228202|228203|228204|228206|230978|230980|236749|236950|238334|238336|238598|238599|238600|238601|238602|238603|238604|238605|238607|238608|238609|238610|238612|238613|238615|238616|238617|238618|243266|243268|243269|243276|243277|243278|245300|245302|245308|245310|245311|245322|245323|245329|245330|245334|245337|245339|245347|245351|245364|245367|245368|245373|245376|245391|245413|245417|245420|245422|245424|245425|245428|245440|245448|245450|245457|245460|245461|245464|245466|245469|245470|245475|245480|245485|245492|245519|245542|245549|245551|245554|245555|245557|245561|245574|245589|245592|245593|245595|245597|245598|245601|245609|245614|245624|245645|245646|245648|245665|245666|245672|245683|245694|245696|245698|245709|245713|245725|245730|245735|245741|245745|245751|245757|245761|245769|245773|245782|245791|245793|245802|245804|245805|245808|245821|245822|245832|245834|245847|245864|245865|245872|245873|245881|245887|245888|245891|245896|245901|245904|245907|245914|245916|245918|245923|245924|245927|245928|245945|245946|245949|245958|245960|245961|245966|245971|245975|245980|245985|245988|245991|245996|245999|246002|246008|246019|246029|246031|246041|246042|246052|246054|246061|246062|246066|246070|246072|246076|246078|246089|246092|246097|246098|246102|246106|246112|246120|246122|246124|246138|246139|246140|246150|246152|246161|246167|246170|246171|246178|246184|246188|246190|246194|246200|246205|246209|246219|246223|246227|246232|246250|246253|246265|246278|246280|246293|246294|246297|246298|246300|246301|246322|246323|246330|246347|246356|246364|246366|246371|246373|246375|246378|246384|246388|246391|246393|246395|246397|246403|246407|246411|246427|246430|246432|246438|246448|246458|246468|246470|246478|246486|246513|246518|246522|246530|246551|246552|246555|246558|246585|246591|246599|246601|246612|246615|246621|246627|246628|246635|246637|246645|246888|246909|246910|246911|246912|246914|246915|249990|249992|250517|250518|250520|250521|250523|250524|250525|250526|250527|250528|250529|250531|250533|256754|260591|260592|260609|260620|260625|260627|260630|260633|260634|260635|260636|260637|260638|260640|260642|260643|260645|260647|260649|265379|280227|280228|280603|280604|280615|280902|281418|281421|281423|281431|281930|282664|282667|282943|282945|282961|282962|284396|284408|284413|284416|284417|284418|284420|284421|284424|284426|284429|284442|284445|284450|284451|284456|284507|284513|284515|284527|284529|284530|285067|285072|285073|285074|285075|285086|285087|285090|285091|285092|285098|285119|285120|285153|285167|285188|285193|285196|285207|285211|285218|285221|287134|287155|287185|287196|287206|287208|287217|287224|287234|287248|287250|287258|287259|287262|287263|287276|287316|287334|287361|287372|287521|287524|287529|287532|287538|287554|287572|287575|287583|287586|287589|287591|287592|287601|287608|287610|332455|332458|342625|342628|348002|348004|354066|354067|354070|354071|354072|354073|354077|354078|354080|354081|354087|354088|354091|354095|354097|354099|359413|360376|361884|361885|362650|362653|362654|362655|362656|362657|362658|362659|362660|362669|362670|362690|362701|362707|362713|362725|362727|362732|362735|366100|366106|366281|366335|366341|366934|366937|389418|389420|389421|389422|389465|389476|389479|389480|389484|389485|389492|389494|389497|389499|389506|390611|390623|390627|390628|390630|391368|391518|391525|391530|392294|392296|392299|392377|392480|392486|392541|392547|392557|392562|403128|403130|403131|403134|403135|403140|403585|403598|403603|403605|403607|403610|405552|410433|410434|421359|424286|424288|424289|424291|424308|424318|424342|424344|424995|424996|424997|424998|424999|425004|425008|425009|425011|425012|425014|425029|425030|425041|425047|425052|425059|425464|425465|431944|431946|431956|434136|434137|434140|434143|434147|434148|434153|434156|434163|434164|434165|434167|434168|434169|434170|434171|434180|434192|434200|434208|434210|434212|434215|434219|434224|434226|434229|434233|434237|434240|434242|434245|434249|434257|434260|434268|434274|434278|434285|434288|434292|434297|434303|434306|434315|434316|434325|434329|434342|434347|434819|434846|442802|442868|443150|443151|443152|443153|446028|446029|447740|448217|448243|448246|448250|448373|448374|450283|450285|450291|450292|450308|450405|450421|450435|450437|450439|450442|450444|450445|450447|450456|450464|450471|450478|450488|450495|450498|450540|450551|450562|450563|450571|450573|450579|450581|468439|470338|481122|483166|483168|483170|483177|483187|483194|483198|483203|483210|483211|483214|483216|483219|483223|483224|483225|483226|483227|483233|483236|483238|483249|483253|485552|486860|486880|486881|486886|486915|486918|486922|486924|486938|487794|488023|488024|488031|488033|498542|498556|498743|499491|499500|499510|499712|499717|499894|499896|499933|499950|508771|511390|514364|514366|514371|514379|514382|514383|515983|515990|516028|516048|516054|516137|516139|516151|516156|517546|517552|517565|517576|517579|517590|517595|517603|517613|517646|517658|517662|517664|517666|517676|517685|517686|517690|517692|517694|517696|517701|517714|517725|517728|517730|517803|517808|517818|517821|517829|517842|517848|517854|517856|517858|517865|517869|532485|532646|532648|532649|532650|532659|532672|532676|533077|533083|538521|538522|538523|538524|538525|538526|538527|538530|538531|538533|538534|538535|538536|538537|538538|538542|538546|538547|538548|538549|538551|538552|538553|538554|538556|538559|538560|538561|538562|538563|538575|538579|539018|557107|557279|557385|557826|557830|557832|557873|557879|557883|557885|558469|558559|559057|559059|559063|559065|560775|560798|560803|570267|572173|572852|572853|572855|572864|572866|574859|585794|588440|611008|611009|611010|611012|611282|616135|616136|616137|616138|616139|616140|616141|616142|616143|616144|616145|616146|616147|616148|616149|616150|616151|616152|616153|616154|616155|616156|616157|616158|616159|616160|616161|616162|616163|616164|616165|616166|616167|616168|616169|616170|616171|616172|616173|616174|616175|616176|616177|616178|616179|616180|616181|616182|616183|616184|616185|616186|616187|616188|616189|616190|616191|616192|616193|616194|616195|616196|616197|616198|616199|616200|616201|616202|616203|616204|616227|616228|616229|616230|616231|616232|616233|616234|616235|616236|616237|616238|616239|616240|616241|616242|616243|616244|616245|616246|616247|616248|616249|616250|616251|616252|616253|616254|616255|616256|616257|616258|616259|616260|616261|616262|616263|616264|616265|616266|616267|616268|616269|616270|616271|616272|616273|616274|616275|616276|616277|616278|616279|616280|616281|616282|616283|616284|616285|616286|616287|616288|616289|616290|616291|616292|616293|616294|616295|616296|616297|616298|616299|616300|616301|616302|616303|616304|616305|616306|616307|616308|616309|616310|616311|616312|616313|616314|616315|616316|616317|616318|616319|616320|616321|616322|616323|616324|616325|616326|616327|616328|616329|616330|616331|616332|616333|616334|616335|616336|616337|616338|616339|616340|616341|616342|616343|616344|616345|616346|616347|616348|616349|616350|616351|616352|616353|616354|616355|616356|616357|616358|616359|616360|616361|616362|616363|616364|616365|616366|616367|616368|616369|616370|616371|616372|616373|616374|616375|616376|616377|616378|616379|616380|616381|616382|616383|616384|616385|616386|616387|616388|616389|616390|616391|616392|616393|616394|616395|616396|616397|616398|616399|616400|616401|616402|616403|616404|616405|616406|616407|616408|616409|616410|616411|616412|616413|616414|616415|616416|616417|616418|616419|616420|616421|616422|616423|616424|616425|616426|616427|616428|616429|616430|616431|616432|616433|616434|616435|616436|616437|616438|616439|616440|616441|616442|616443|616444|616445|616446|616447|616448|616449|616450|616451|616452|616453|616454|616455|616456|616457|616458|616459|616460|616461|616462|616463|616464|616465|616466|616467|616468|616469|616470|616471|616472|616473|616474|616475|616476|616477|616478|616479|616480|616481|616482|616483|616484|616485|616486|616487|616488|616489|616490|616491|616492|616493|616494|616495|616496|616497|616498|616499|616500|616501|616502|616503|616504|616505|616506|616507|616508|616509|616510|616511|616512|616513|616514|616515|616516|618928|618929|618930|618931|618932|618933|618934|618935|618936|618937|618938|618939|618940|618941|618942|618943|618944|618945|618946|618947|618948|618949|618950|618951|618952|618953|618954|618955|618956|618957|618958|618959|618960|618961|618962|618963|618964|618965|618966|618967|618968|618969|618970|618971|619075|619078|619082|619086|619090|619092|619093|619094|619095|619096|619098|619100|619102|619103|619110|619112|619114|619119|619120|619122|619135|619138|619150|619152|619673|619675|619681|619682|619686|619688|619781|619782|619791|619792|619797|619801|619805|619811|619918|620007|621085|621086|621622|621624|627720|627722|627725|628162|628164|628165|628168|629326|629327|629329|629330|629331|629333|629334|629335|629337|629338|629340|629346|629348|647613|647614|647615|647616|647617|647618|647619|647620|647621|647622|647623|647624|647625|647626|647627|647628|652912|652916|652920|652938|652940|652990|653102|653108|653119|653139|653424|653431|653435|653442|653478|653558|653560|653561|653564|653593|653594|655117|655411|655412|672394|676939|683319|683374|683475|683478|683479|683480|683481|683482|683483|683484|684777|685108|685697|685700|685816|685818|685819|686123|686124|686126|686130|686131|686132|686134|686135|686136|686137|686138|686139|688957|688958|688959|688961|688962|688963|689705|689706|690203|690576|690577|690647|691018|691019|691020|691021|694322|694323|694324|694325|694326|694327|696802|707466|719575|730103|732519|732520|741543|746574|747233|747235|756666|756667|760557|762828|762830|762834|762837|762845|772354|772356|772357|772358|778495|780652|780742|781124|781125|781126|786035|786036|786038|786040|789411|789413|789414|789415|789649|794699|794700|795134|795136|795138|795140|795142|795147|795149|797719|797721|799096|821214|821215|821216|821217|821218|821219|821220|821221|821222|821223|821224|821225|821226|821227|821228|821229|824254|824255|825619|825623|825624|825626|825629|825630|825632|825636|825637|825639|825641|847197|847198|847199|847200|847201|847202|847203|847204|847205|847206|847207|847208|847209|847210|847211|847212|847213|847214|847215|847216|847217|847218|847219|847220|851793|857609|864637|864638|864640|864641|864642|864643|879825|879829|879833|879834|879835|883601|883606|883618|883623|883624|883625|883629|883634|906167|907275|907276|907277|907278|907279|907280|907281|907282|907283|907284|907285|907286|907287|907288|907289|907290|907291|907292|907293|907294|907295|907296|907297|907298|907299|907300|907301|907302|907303|907304|907305|907306|907307|907308|907309|907310|907311|907312|907313|907314|907315|907316|907317|907318|907319|907320|907321|907322|907323|907324|907325|907326|907327|907328|907329|907330|907331|907332|907333|907334|907335|907336|907337|907338|907339|907340|907341|907342|907343|907344|907345|907346|907347|907348|907349|907350|907351|907352|907353|907354|907355|907356|907357|907358|907359|907360|907361|907362|907363|907364|907365|907366|907367|907368|907369|907370|907371|907372|907373|907374|907375|907376|907377|907378|907379|907380|907381|907382|907383|907384|907385|907386|907387|907388|907389|907390|907391|907392|907393|907394|907395|907396|907397|907398|907399|907400|907401|907402|907403|907404|907405|907406|907407|907408|907409|907410|907411|907412|907413|907414|907415|907416|907417|907418|907419|907420|907421|907422|907423|907424|907425|907426|907427|907428|907429|907430|907431|907432|907433|907434|907435|907436|907437|907438|907439|907440|907441|907442|907443|907444|907445|907446|907447|907448|907449|907450|907451|907452|907453|907454|907455|907456|907457|907458|907459|907460|907461|907462|907463|907464|907465|907466|907467|907468|907469|907470|907471|907472|907473|907474|907475|907476|907477|907478|907479|907480|907481|907482|907483|907484|907485|907486|907487|907488|907489|907490|907491|907492|907493|907494|907495|907496|907497|907498|907499|907500|907501|907502|907503|907504|907505|907506|907507|907508|907509|907510|907511|907512|907513|907514|907515|907516|907517|907762|907763|907764|907765|907766|907767|907768|907769|907770|907771|907772|907773|907774|907775|907776|907777|907778|907779|907780|907781|907782|907783|907784|907785|907786|907787|907788|907789|907790|907791|907792|907793|907794|907795|907796|907797|907798|907799|907800|907801|907802|907803|907804|907805|907806|907807|907808|907809|907810|907811|907812|907813|907814|907815|907816|907817|907818|907819|907820|907821|907822|907823|907824|907825|907826|907827|907828|907829|907830|907831|907832|907833|907834|907835|907836|907837|907838|907839|907840|907841|907842|907843|907844|907845|907846|907847|907848|907849|907850|907851|907852|907853|907854|907855|907856|907857|907858|907859|907860|907861|907862|907863|907864|907865|907866|907867|907868|907869|907870|907871|907872|907873|907874|907875|907876|907877|907878|907879|907880|907881|907882|907883|907884|907885|907886|907887|907888|907889|907890|907891|907892|907893|907894|907895|907896|907897|907898|907899|907900|907901|907902|907903|907904|907905|907906|907907|907908|907909|907910|907911|907912|907913|907914|907915|907916|907917|907918|907919|907920|907921|907922|907923|907924|907925|907926|907927|907928|907929|907930|907931|907932|907933|907934|907935|907936|907937|907938|907939|907940|907941|907942|907943|907944|907945|907946|907947|907948|907949|907950|907951|907952|907953|907954|907955|907956|907957|907958|907959|907960|907961|907962|907963|907964|907965|907966|907967|907968|907969|907970|907971|907972|907973|907974|907975|907976|907977|907978|907979|907980|907981|907982|907983|907984|907985|907986|907987|907988|907989|907990|907991|907992|907993|907994|907995|907996|907997|907998|907999|908000|908001|908002|908003|908004|908005|908006|908007|908008|908009|908010|908011|908012|908013|908014|908015|908016|908017|908018|908019|908020|908021|908022|908023|908024|908025|908026|908027|908028|908029|908030|908031|908032|908033|908034|908035|908036|908037|908038|908039|908040|908041|908042|908043|908044|908045|908046|908047|908048|908049|908050|908051|908052|908053|908054|908055|908056|908057|908058|908059|908060|908061|908062|908063|908064|908065|908066|908067|908068|908069|908070|908071|908072|908073|908074|908075|908076|908077|908078|908079|908080|908081|908082|908083|908084|908085|908086|908087|908088|908089|908090|908091|908092|908093|908094|908095|908096|908097|908098|908099|908100|908101|908102|908103|908104|908105|908106|908107|908108|908109|908110|908111|908112|908113|908114|908115|908116|908117|908118|908119|908120|908121|908122|908123|908124|908125|908126|908127|908128|908129|908130|908131|908132|908133|908134|908135|908136|908137|908138|908139|908140|908141|908142|908143|908144|908145|908146|908147|908148|908149|908150|908151|908152|908153|908154|908155|908156|908157|908158|908159|908160|908161|908162|908163|908164|908165|908166|908167|908168|908169|908170|908171|908172|908173|908174|908175|908176|908177|908178|908179|908180|908181|908182|908183|908184|908185|908186|908187|908188|908189|908190|908191|908192|908193|908194|908195|908196|908197|908198|908199|908200|908201|908202|908203|908204|908205|908206|908207|908208|908209|908210|908211|908212|908213|908214|908215|908216|908217|908218|908219|908220|908221|908222|908223|908224|908225|908226|908227|908228|908229|908230|908231|908232|908233|908234|908235|908236|908237|908238|908239|908240|908241|908242|908243|908244|908245|908246|908247|908248|908249|908250|908251|908252|908253|908254|908255|908256|908257|908258|908259|908260|908261|908262|908263|908264|908265|908266|908267|908268|908269|908270|908271|908272|908273|908274|908275|908276|908277|908278|908279|908280|908281|908282|908283|908284|908285|908286|908287|908288|908289|908290|908291|908292|908293|908294|908295|908296|908297|908298|908299|908300|908301|908302|908303|908304|908305|908306|908307|908308|908309|908310|908311|908312|908313|908314|908315|908316|908317|908318|908319|908320|908321|908322|908323|908324|908325|908326|908327|908328|908329|908330|908331|908332|908333|908334|908335|908336|908337|908338|908339|908340|908341|908342|908343|908344|908345|908346|908347|908348|908349|908350|908351|908352|908353|908354|908355|908356|908357|908358|908359|908360|908361|908362|908363|908364|908365|908366|908367|908368|908369|908370|908371|908372|908373|908374|908375|908376|908377|908378|908379|908380|908381|908382|908383|908384|908385|908386|908387|908388|908389|908390|908391|908392|908393|908394|908395|908396|908397|908398|908399|908400|908401|908402|908403|908404|908405|908406|908407|908408|908409|908410|908411|908412|908413|908414|908415|908416|908417|908418|908419|908420|908421|908422|908423|908424|908425|908426|908427|908428|908429|908430|908431|908432|908433|908434|908435|908436|908437|908438|908439|908440|908441|908442|908443|908444|908445|908446|908447|908448|908449|908450|908451|908452|908453|908454|908455|908456|908457|908458|908459|908460|908461|908462|908463|908464|908465|908466|908467|908468|908469|908470|908471|908472|908473|908474|908475|908476|908477|908478|908479|908480|908481|908482|908483|908484|908485|908486|908487|908488|908489|908490|908491|908492|908493|908494|908495|908496|908497|908498|908499|908500|908501|908502|908503|908504|908505|908506|908507|908508|908509|908510|908511|908512|908513|908514|908515|908516|908517|908518|908519|908520|908521|908522|908523|908524|908525|908526|908527|908528|908529|908530|908531|908532|908533|908534|908535|908536|908537|908538|908539|908540|908541|908542|908543|908544|908545|908546|908547|908548|908549|908550|908551|908552|908553|908554|908555|908556|908557|908558|908559|908560|908561|908562|908563|908564|908565|908566|908567|908568|908569|908570|908571|908572|908573|908574|908575|908576|908577|908578|908579|908580|908581|908582|908583|908584|908585|908586|908587|908588|908589|908590|908591|908592|908593|908594|908595|908596|908597|908598|908599|908600|908601|908602|908603|908604|908605|908606|908607|908608|908609|908610|908611|908612|908613|908614|914649|914650|914651|914652|914653|914654|914655|914656|914657|914658|914659|914660|914661|914662|914663|914664|914665|914666|914667|914668|914669|914670|914671|914672|914673|914674|914675|914676|914677|914678|914679|914680|914681|914682|914683|914684|914685|914686|914687|914688|914689|914690|914691|914692|914693|914694|914695|914696|914697|914698|914699|914700|914701|914702|914703|914704|914705|914706|914707|914708|914709|914710|914711|914712|914713|914714|914715|914716|914717|914718|914719|914720|914721|914722|914723|914724|914725|914726|914727|914728|914729|914730|914731|914732|914733|914734|914735|914736|914737|914738|914739|914740|914741|914742|914743|914744|914745|914746|914747|914748|914749|914750|914751|914752|914753|914754|914755|914756|914757|914758|914759|914760|914761|914762|914763|914764|914765|914766|914767|914768|914769|914770|914771|914772|914773|914774|914775|914776|914777|914778|914779|914780|914781|914782|914783|914784|914785|914786|914787|914788|914789|914790|914791|914792|914793|914794|914795|914796|914797|914798|914799|914800|914801|914802|914803|914804|914805|914806|914807|914808|914809|914810|914811|914812|914813|914814|914815|914816|914817|914818|914819|914820|914821|914822|914823|915195|915197|915199|915201|915203|915205|915207|915209|915241|915247|915249|915251|915253|915255|915257|915266|915270|915274|915276|915280|915284|915327|915331|915335|915337|915341|915400|915402|915408|915410|915413|915415|915418|915422|915489|915492|915494|915495|915497|915498|915500|915505|915507|915509|915512|915516|915519|915524|915538|915542|915544|915546|915548|915551|915554|916070|916072|916074|916076|916606|916608|916612|916613|916615|916616|916617|916647|916648|916649|916650|916651|916653|916654|916657|916658|916659|916661|916767|916768|916769|916770|916771|916772|917287|928818|928819|928820|938557|938558|938559|941222|950644|950645|950646|950647|950648|950649|950650|950651|950652|950653|950654|958526|967158|967159|967170|967171|967172|967173|967174|967175|967212|967213|977533|979958|979959|979960|979961", + "upstreamId": "17915|17916|18722|18724|18725|18727|18728|18729|18730|18731|18733|18734|18735|18736|18737|18738|18741|18765|18766|18768|18769|18770|18772|18774|18775|18776|18777|18778|18779|18780|18783|18785|19815|19820|32923|32926|32929|32934|32935|32936|45113|45114|45115|45116|45117|45118|45119|45122|45123|45124|45125|45127|45329|48709|71434|78990|78991|78992|78993|78994|78995|85303|85305|85309|133865|133866|133867|133868|133869|133870|133871|133872|133873|133874|133875|171195|171196|171197|171198|171199|171200|171201|171202|171203|171204|171205|171206|171207|171208|171209|171210|171211|171212|171213|171214|171215|171216|171217|171218|171219|171220|171221|171222|171223|171224|172183|178500|178503|178734|181222|181224|181226|181228|181229|181232|181233|181236|181238|181240|181242|181243|181244|181245|181246|181247|181248|181249|181250|181251|181252|181253|181256|181257|181258|181259|181262|181263|181265|181268|181269|181270|181272|181275|181277|187182|187183|187189|187190|187191|187193|187194|196756|196758|196823|196824|198011|198012|198013|198014|198015|198016|198018|215238|215240|215241|215242|215243|215244|215245|215246|215247|215248|215561|224548|226398|226399|226400|226401|226402|226972|227097|227401|228114|228115|228116|228117|228119|228120|228125|228127|228128|228129|228130|228131|228132|228135|228140|228142|228143|228144|228145|228146|228147|228149|228150|228155|228156|228157|228160|228161|228162|228163|228164|228169|228172|228173|228174|228176|228179|228180|228184|228189|228192|228193|228195|228197|228201|228202|228203|228204|228206|230978|230980|236749|236950|238334|238336|238598|238599|238600|238601|238602|238603|238604|238605|238607|238608|238609|238610|238612|238613|238615|238616|238617|238618|243266|243268|243269|243276|243277|243278|245300|245302|245308|245310|245311|245322|245323|245329|245330|245334|245337|245339|245347|245351|245364|245367|245368|245373|245376|245391|245413|245417|245420|245422|245424|245425|245428|245440|245448|245450|245457|245460|245461|245464|245466|245469|245470|245475|245480|245485|245492|245519|245542|245549|245551|245554|245555|245557|245561|245574|245589|245592|245593|245595|245597|245598|245601|245609|245614|245624|245645|245646|245648|245665|245666|245672|245683|245694|245696|245698|245709|245713|245725|245730|245735|245741|245745|245751|245757|245761|245769|245773|245782|245791|245793|245802|245804|245805|245808|245821|245822|245832|245834|245847|245864|245865|245872|245873|245881|245887|245888|245891|245896|245901|245904|245907|245914|245916|245918|245923|245924|245927|245928|245945|245946|245949|245958|245960|245961|245966|245971|245975|245980|245985|245988|245991|245996|245999|246002|246008|246019|246029|246031|246041|246042|246052|246054|246061|246062|246066|246070|246072|246076|246078|246089|246092|246097|246098|246102|246106|246112|246120|246122|246124|246138|246139|246140|246150|246152|246161|246167|246170|246171|246178|246184|246188|246190|246194|246200|246205|246209|246219|246223|246227|246232|246250|246253|246265|246278|246280|246293|246294|246297|246298|246300|246301|246322|246323|246330|246347|246356|246364|246366|246371|246373|246375|246378|246384|246388|246391|246393|246395|246397|246403|246407|246411|246427|246430|246432|246438|246448|246458|246468|246470|246478|246486|246513|246518|246522|246530|246551|246552|246555|246558|246585|246591|246599|246601|246612|246615|246621|246627|246628|246635|246637|246645|246888|246909|246910|246911|246912|246914|246915|249990|249992|250517|250518|250520|250521|250523|250524|250525|250526|250527|250528|250529|250531|250533|256754|260591|260592|260609|260620|260625|260627|260630|260633|260634|260635|260636|260637|260638|260640|260642|260643|260645|260647|260649|265379|280227|280228|280603|280604|280615|280902|281418|281421|281423|281431|281930|282664|282667|282943|282945|282961|282962|284396|284408|284413|284416|284417|284418|284420|284421|284424|284426|284429|284442|284445|284450|284451|284456|284507|284513|284515|284527|284529|284530|285067|285072|285073|285074|285075|285086|285087|285090|285091|285092|285098|285119|285120|285153|285167|285188|285193|285196|285207|285211|285218|285221|287134|287155|287185|287196|287206|287208|287217|287224|287234|287248|287250|287258|287259|287262|287263|287276|287316|287334|287361|287372|287521|287524|287529|287532|287538|287554|287572|287575|287583|287586|287589|287591|287592|287601|287608|287610|332455|332458|342625|342628|348002|348004|354066|354067|354070|354071|354072|354073|354077|354078|354080|354081|354087|354088|354091|354095|354097|354099|359413|360376|361884|361885|362650|362653|362654|362655|362656|362657|362658|362659|362660|362669|362670|362690|362701|362707|362713|362725|362727|362732|362735|366100|366106|366281|366335|366341|366934|366937|389418|389420|389421|389422|389465|389476|389479|389480|389484|389485|389492|389494|389497|389499|389506|390611|390623|390627|390628|390630|391368|391518|391525|391530|392294|392296|392299|392377|392480|392486|392541|392547|392557|392562|403128|403130|403131|403134|403135|403140|403585|403598|403603|403605|403607|403610|405552|410433|410434|421359|424286|424288|424289|424291|424308|424318|424342|424344|424995|424996|424997|424998|424999|425004|425008|425009|425011|425012|425014|425029|425030|425041|425047|425052|425059|425464|425465|431944|431946|431956|434136|434137|434140|434143|434147|434148|434153|434156|434163|434164|434165|434167|434168|434169|434170|434171|434180|434192|434200|434208|434210|434212|434215|434219|434224|434226|434229|434233|434237|434240|434242|434245|434249|434257|434260|434268|434274|434278|434285|434288|434292|434297|434303|434306|434315|434316|434325|434329|434342|434347|434819|434846|442802|442868|443150|443151|443152|443153|446028|446029|447740|448217|448243|448246|448250|448373|448374|450283|450285|450291|450292|450308|450405|450421|450435|450437|450439|450442|450444|450445|450447|450456|450464|450471|450478|450488|450495|450498|450540|450551|450562|450563|450571|450573|450579|450581|468439|470338|481122|483166|483168|483170|483177|483187|483194|483198|483203|483210|483211|483214|483216|483219|483223|483224|483225|483226|483227|483233|483236|483238|483249|483253|485552|486860|486880|486881|486886|486915|486918|486922|486924|486938|487794|488023|488024|488031|488033|498542|498556|498743|499491|499500|499510|499712|499717|499894|499896|499933|499950|508771|511390|514364|514366|514371|514379|514382|514383|515983|515990|516028|516048|516054|516137|516139|516151|516156|517546|517552|517565|517576|517579|517590|517595|517603|517613|517646|517658|517662|517664|517666|517676|517685|517686|517690|517692|517694|517696|517701|517714|517725|517728|517730|517803|517808|517818|517821|517829|517842|517848|517854|517856|517858|517865|517869|532485|532646|532648|532649|532650|532659|532672|532676|533077|533083|538521|538522|538523|538524|538525|538526|538527|538530|538531|538533|538534|538535|538536|538537|538538|538542|538546|538547|538548|538549|538551|538552|538553|538554|538556|538559|538560|538561|538562|538563|538575|538579|539018|557107|557279|557385|557826|557830|557832|557873|557879|557883|557885|558469|558559|559057|559059|559063|559065|560775|560798|560803|570267|572173|572852|572853|572855|572864|572866|574859|585794|588440|611008|611009|611010|611012|611282|616135|616136|616137|616138|616139|616140|616141|616142|616143|616144|616145|616146|616147|616148|616149|616150|616151|616152|616153|616154|616155|616156|616157|616158|616159|616160|616161|616162|616163|616164|616165|616166|616167|616168|616169|616170|616171|616172|616173|616174|616175|616176|616177|616178|616179|616180|616181|616182|616183|616184|616185|616186|616187|616188|616189|616190|616191|616192|616193|616194|616195|616196|616197|616198|616199|616200|616201|616202|616203|616204|616227|616228|616229|616230|616231|616232|616233|616234|616235|616236|616237|616238|616239|616240|616241|616242|616243|616244|616245|616246|616247|616248|616249|616250|616251|616252|616253|616254|616255|616256|616257|616258|616259|616260|616261|616262|616263|616264|616265|616266|616267|616268|616269|616270|616271|616272|616273|616274|616275|616276|616277|616278|616279|616280|616281|616282|616283|616284|616285|616286|616287|616288|616289|616290|616291|616292|616293|616294|616295|616296|616297|616298|616299|616300|616301|616302|616303|616304|616305|616306|616307|616308|616309|616310|616311|616312|616313|616314|616315|616316|616317|616318|616319|616320|616321|616322|616323|616324|616325|616326|616327|616328|616329|616330|616331|616332|616333|616334|616335|616336|616337|616338|616339|616340|616341|616342|616343|616344|616345|616346|616347|616348|616349|616350|616351|616352|616353|616354|616355|616356|616357|616358|616359|616360|616361|616362|616363|616364|616365|616366|616367|616368|616369|616370|616371|616372|616373|616374|616375|616376|616377|616378|616379|616380|616381|616382|616383|616384|616385|616386|616387|616388|616389|616390|616391|616392|616393|616394|616395|616396|616397|616398|616399|616400|616401|616402|616403|616404|616405|616406|616407|616408|616409|616410|616411|616412|616413|616414|616415|616416|616417|616418|616419|616420|616421|616422|616423|616424|616425|616426|616427|616428|616429|616430|616431|616432|616433|616434|616435|616436|616437|616438|616439|616440|616441|616442|616443|616444|616445|616446|616447|616448|616449|616450|616451|616452|616453|616454|616455|616456|616457|616458|616459|616460|616461|616462|616463|616464|616465|616466|616467|616468|616469|616470|616471|616472|616473|616474|616475|616476|616477|616478|616479|616480|616481|616482|616483|616484|616485|616486|616487|616488|616489|616490|616491|616492|616493|616494|616495|616496|616497|616498|616499|616500|616501|616502|616503|616504|616505|616506|616507|616508|616509|616510|616511|616512|616513|616514|616515|616516|618928|618929|618930|618931|618932|618933|618934|618935|618936|618937|618938|618939|618940|618941|618942|618943|618944|618945|618946|618947|618948|618949|618950|618951|618952|618953|618954|618955|618956|618957|618958|618959|618960|618961|618962|618963|618964|618965|618966|618967|618968|618969|618970|618971|619075|619078|619082|619086|619090|619092|619093|619094|619095|619096|619098|619100|619102|619103|619110|619112|619114|619119|619120|619122|619135|619138|619150|619152|619673|619675|619681|619682|619686|619688|619781|619782|619791|619792|619797|619801|619805|619811|619918|620007|621085|621086|621622|621624|627720|627722|627725|628162|628164|628165|628168|629326|629327|629329|629330|629331|629333|629334|629335|629337|629338|629340|629346|629348|647613|647614|647615|647616|647617|647618|647619|647620|647621|647622|647623|647624|647625|647626|647627|647628|652912|652916|652920|652938|652940|652990|653102|653108|653119|653139|653424|653431|653435|653442|653478|653558|653560|653561|653564|653593|653594|655117|655411|655412|672394|676939|683319|683374|683475|683478|683479|683480|683481|683482|683483|683484|684777|685108|685697|685700|685816|685818|685819|686123|686124|686126|686130|686131|686132|686134|686135|686136|686137|686138|686139|688957|688958|688959|688961|688962|688963|689705|689706|690203|690576|690577|690647|691018|691019|691020|691021|694322|694323|694324|694325|694326|694327|696802|707466|719575|730103|732519|732520|741543|746574|747233|747235|756666|756667|760557|762828|762830|762834|762837|762845|772354|772356|772357|772358|778495|780652|780742|781124|781125|781126|786035|786036|786038|786040|789411|789413|789414|789415|789649|794699|794700|795134|795136|795138|795140|795142|795147|795149|797719|797721|799096|821214|821215|821216|821217|821218|821219|821220|821221|821222|821223|821224|821225|821226|821227|821228|821229|824254|824255|825619|825623|825624|825626|825629|825630|825632|825636|825637|825639|825641|847197|847198|847199|847200|847201|847202|847203|847204|847205|847206|847207|847208|847209|847210|847211|847212|847213|847214|847215|847216|847217|847218|847219|847220|851793|857609|864637|864638|864640|864641|864642|864643|879825|879829|879833|879834|879835|883601|883606|883618|883623|883624|883625|883629|883634|906167|907275|907276|907277|907278|907279|907280|907281|907282|907283|907284|907285|907286|907287|907288|907289|907290|907291|907292|907293|907294|907295|907296|907297|907298|907299|907300|907301|907302|907303|907304|907305|907306|907307|907308|907309|907310|907311|907312|907313|907314|907315|907316|907317|907318|907319|907320|907321|907322|907323|907324|907325|907326|907327|907328|907329|907330|907331|907332|907333|907334|907335|907336|907337|907338|907339|907340|907341|907342|907343|907344|907345|907346|907347|907348|907349|907350|907351|907352|907353|907354|907355|907356|907357|907358|907359|907360|907361|907362|907363|907364|907365|907366|907367|907368|907369|907370|907371|907372|907373|907374|907375|907376|907377|907378|907379|907380|907381|907382|907383|907384|907385|907386|907387|907388|907389|907390|907391|907392|907393|907394|907395|907396|907397|907398|907399|907400|907401|907402|907403|907404|907405|907406|907407|907408|907409|907410|907411|907412|907413|907414|907415|907416|907417|907418|907419|907420|907421|907422|907423|907424|907425|907426|907427|907428|907429|907430|907431|907432|907433|907434|907435|907436|907437|907438|907439|907440|907441|907442|907443|907444|907445|907446|907447|907448|907449|907450|907451|907452|907453|907454|907455|907456|907457|907458|907459|907460|907461|907462|907463|907464|907465|907466|907467|907468|907469|907470|907471|907472|907473|907474|907475|907476|907477|907478|907479|907480|907481|907482|907483|907484|907485|907486|907487|907488|907489|907490|907491|907492|907493|907494|907495|907496|907497|907498|907499|907500|907501|907502|907503|907504|907505|907506|907507|907508|907509|907510|907511|907512|907513|907514|907515|907516|907517|907762|907763|907764|907765|907766|907767|907768|907769|907770|907771|907772|907773|907774|907775|907776|907777|907778|907779|907780|907781|907782|907783|907784|907785|907786|907787|907788|907789|907790|907791|907792|907793|907794|907795|907796|907797|907798|907799|907800|907801|907802|907803|907804|907805|907806|907807|907808|907809|907810|907811|907812|907813|907814|907815|907816|907817|907818|907819|907820|907821|907822|907823|907824|907825|907826|907827|907828|907829|907830|907831|907832|907833|907834|907835|907836|907837|907838|907839|907840|907841|907842|907843|907844|907845|907846|907847|907848|907849|907850|907851|907852|907853|907854|907855|907856|907857|907858|907859|907860|907861|907862|907863|907864|907865|907866|907867|907868|907869|907870|907871|907872|907873|907874|907875|907876|907877|907878|907879|907880|907881|907882|907883|907884|907885|907886|907887|907888|907889|907890|907891|907892|907893|907894|907895|907896|907897|907898|907899|907900|907901|907902|907903|907904|907905|907906|907907|907908|907909|907910|907911|907912|907913|907914|907915|907916|907917|907918|907919|907920|907921|907922|907923|907924|907925|907926|907927|907928|907929|907930|907931|907932|907933|907934|907935|907936|907937|907938|907939|907940|907941|907942|907943|907944|907945|907946|907947|907948|907949|907950|907951|907952|907953|907954|907955|907956|907957|907958|907959|907960|907961|907962|907963|907964|907965|907966|907967|907968|907969|907970|907971|907972|907973|907974|907975|907976|907977|907978|907979|907980|907981|907982|907983|907984|907985|907986|907987|907988|907989|907990|907991|907992|907993|907994|907995|907996|907997|907998|907999|908000|908001|908002|908003|908004|908005|908006|908007|908008|908009|908010|908011|908012|908013|908014|908015|908016|908017|908018|908019|908020|908021|908022|908023|908024|908025|908026|908027|908028|908029|908030|908031|908032|908033|908034|908035|908036|908037|908038|908039|908040|908041|908042|908043|908044|908045|908046|908047|908048|908049|908050|908051|908052|908053|908054|908055|908056|908057|908058|908059|908060|908061|908062|908063|908064|908065|908066|908067|908068|908069|908070|908071|908072|908073|908074|908075|908076|908077|908078|908079|908080|908081|908082|908083|908084|908085|908086|908087|908088|908089|908090|908091|908092|908093|908094|908095|908096|908097|908098|908099|908100|908101|908102|908103|908104|908105|908106|908107|908108|908109|908110|908111|908112|908113|908114|908115|908116|908117|908118|908119|908120|908121|908122|908123|908124|908125|908126|908127|908128|908129|908130|908131|908132|908133|908134|908135|908136|908137|908138|908139|908140|908141|908142|908143|908144|908145|908146|908147|908148|908149|908150|908151|908152|908153|908154|908155|908156|908157|908158|908159|908160|908161|908162|908163|908164|908165|908166|908167|908168|908169|908170|908171|908172|908173|908174|908175|908176|908177|908178|908179|908180|908181|908182|908183|908184|908185|908186|908187|908188|908189|908190|908191|908192|908193|908194|908195|908196|908197|908198|908199|908200|908201|908202|908203|908204|908205|908206|908207|908208|908209|908210|908211|908212|908213|908214|908215|908216|908217|908218|908219|908220|908221|908222|908223|908224|908225|908226|908227|908228|908229|908230|908231|908232|908233|908234|908235|908236|908237|908238|908239|908240|908241|908242|908243|908244|908245|908246|908247|908248|908249|908250|908251|908252|908253|908254|908255|908256|908257|908258|908259|908260|908261|908262|908263|908264|908265|908266|908267|908268|908269|908270|908271|908272|908273|908274|908275|908276|908277|908278|908279|908280|908281|908282|908283|908284|908285|908286|908287|908288|908289|908290|908291|908292|908293|908294|908295|908296|908297|908298|908299|908300|908301|908302|908303|908304|908305|908306|908307|908308|908309|908310|908311|908312|908313|908314|908315|908316|908317|908318|908319|908320|908321|908322|908323|908324|908325|908326|908327|908328|908329|908330|908331|908332|908333|908334|908335|908336|908337|908338|908339|908340|908341|908342|908343|908344|908345|908346|908347|908348|908349|908350|908351|908352|908353|908354|908355|908356|908357|908358|908359|908360|908361|908362|908363|908364|908365|908366|908367|908368|908369|908370|908371|908372|908373|908374|908375|908376|908377|908378|908379|908380|908381|908382|908383|908384|908385|908386|908387|908388|908389|908390|908391|908392|908393|908394|908395|908396|908397|908398|908399|908400|908401|908402|908403|908404|908405|908406|908407|908408|908409|908410|908411|908412|908413|908414|908415|908416|908417|908418|908419|908420|908421|908422|908423|908424|908425|908426|908427|908428|908429|908430|908431|908432|908433|908434|908435|908436|908437|908438|908439|908440|908441|908442|908443|908444|908445|908446|908447|908448|908449|908450|908451|908452|908453|908454|908455|908456|908457|908458|908459|908460|908461|908462|908463|908464|908465|908466|908467|908468|908469|908470|908471|908472|908473|908474|908475|908476|908477|908478|908479|908480|908481|908482|908483|908484|908485|908486|908487|908488|908489|908490|908491|908492|908493|908494|908495|908496|908497|908498|908499|908500|908501|908502|908503|908504|908505|908506|908507|908508|908509|908510|908511|908512|908513|908514|908515|908516|908517|908518|908519|908520|908521|908522|908523|908524|908525|908526|908527|908528|908529|908530|908531|908532|908533|908534|908535|908536|908537|908538|908539|908540|908541|908542|908543|908544|908545|908546|908547|908548|908549|908550|908551|908552|908553|908554|908555|908556|908557|908558|908559|908560|908561|908562|908563|908564|908565|908566|908567|908568|908569|908570|908571|908572|908573|908574|908575|908576|908577|908578|908579|908580|908581|908582|908583|908584|908585|908586|908587|908588|908589|908590|908591|908592|908593|908594|908595|908596|908597|908598|908599|908600|908601|908602|908603|908604|908605|908606|908607|908608|908609|908610|908611|908612|908613|908614|914649|914650|914651|914652|914653|914654|914655|914656|914657|914658|914659|914660|914661|914662|914663|914664|914665|914666|914667|914668|914669|914670|914671|914672|914673|914674|914675|914676|914677|914678|914679|914680|914681|914682|914683|914684|914685|914686|914687|914688|914689|914690|914691|914692|914693|914694|914695|914696|914697|914698|914699|914700|914701|914702|914703|914704|914705|914706|914707|914708|914709|914710|914711|914712|914713|914714|914715|914716|914717|914718|914719|914720|914721|914722|914723|914724|914725|914726|914727|914728|914729|914730|914731|914732|914733|914734|914735|914736|914737|914738|914739|914740|914741|914742|914743|914744|914745|914746|914747|914748|914749|914750|914751|914752|914753|914754|914755|914756|914757|914758|914759|914760|914761|914762|914763|914764|914765|914766|914767|914768|914769|914770|914771|914772|914773|914774|914775|914776|914777|914778|914779|914780|914781|914782|914783|914784|914785|914786|914787|914788|914789|914790|914791|914792|914793|914794|914795|914796|914797|914798|914799|914800|914801|914802|914803|914804|914805|914806|914807|914808|914809|914810|914811|914812|914813|914814|914815|914816|914817|914818|914819|914820|914821|914822|914823|915195|915197|915199|915201|915203|915205|915207|915209|915241|915247|915249|915251|915253|915255|915257|915266|915270|915274|915276|915280|915284|915327|915331|915335|915337|915341|915400|915402|915408|915410|915413|915415|915418|915422|915489|915492|915494|915495|915497|915498|915500|915505|915507|915509|915512|915516|915519|915524|915538|915542|915544|915546|915548|915551|915554|916070|916072|916074|916076|916606|916608|916612|916613|916615|916616|916617|916647|916648|916649|916650|916651|916653|916654|916657|916658|916659|916661|916767|916768|916769|916770|916771|916772|917287|928818|928819|928820|938557|938558|938559|941222|950644|950645|950646|950647|950648|950649|950650|950651|950652|950653|950654|958526|967158|967159|967170|967171|967172|967173|967174|967175|967212|967213|977533|979958|979959|979960|979961", "text": "Familial hypercholesterolemia" }, { - "baseId": "17916|17917|434138|434146", + "upstreamId": "17916|17917|434138|434146", "text": "Hypocholesterolemia" }, { - "baseId": "17917|32929|45327|45330|45331|45332|45333|196755|196756|196757|196758|206939|228912|238334|249983|249984|249986|249987|249988|249989|249990|260587|260588|260608|260609|260620|260626|280890|280891|280895|280902|280908|280911|280925|280929|280937|280941|280946|280951|281418|281431|281441|281446|281453|281456|281460|281473|282665|282667|282690|282694|282939|282943|282945|282961|282962|282969|282970|282973|282975|361171|391339|391359|391368|391518|424996|424997|427985|427986|431937|434137|448374|486886|486915|486918|498542|516028|516048|516151|538526|538527|557107|616178|616190|616199|621086|696802|789411|864631|864632|864633|864634|864635|864636|864637|864638|864639|864640|864641|864642|864643|864644|864645|864646|864647|864648|864649|864650|864651", + "upstreamId": "17917|32929|45327|45330|45331|45332|45333|196755|196756|196757|196758|206939|228912|238334|249983|249984|249986|249987|249988|249989|249990|260587|260588|260608|260609|260620|260626|280890|280891|280895|280902|280908|280911|280925|280929|280937|280941|280946|280951|281418|281431|281441|281446|281453|281456|281460|281473|282665|282667|282690|282694|282939|282943|282945|282961|282962|282969|282970|282973|282975|361171|391339|391359|391368|391518|424996|424997|427985|427986|431937|434137|448374|486886|486915|486918|498542|516028|516048|516151|538526|538527|557107|616178|616190|616199|621086|696802|789411|864631|864632|864633|864634|864635|864636|864637|864638|864639|864640|864641|864642|864643|864644|864645|864646|864647|864648|864649|864650|864651", "text": "Hypobetalipoproteinemia" }, { - "baseId": "17920|17921|17922|17923|17924", + "upstreamId": "17920|17921|17922|17923|17924", "text": "Congenital bile acid synthesis defect 1" }, { - "baseId": "17925|17926|17927|362444|576139", + "upstreamId": "17925|17926|17927|362444|576139", "text": "Mental retardation, autosomal dominant 4" }, { - "baseId": "17928|17929|17930|17931|17932|17933|17934|17935|17937|17938|17939|17940|17941|17942|28592|28593|28594|28595|28596|28597|28599|28600|28601|28602|28603|28604|28605|28606|28607|28608|59386|59387|213645|227393|227393|227425|236945|237001|256203|256204|256205|256223|256224|256225|256226|256227|256228|256230|328692|328696|328700|328707|328708|328712|328714|328716|328718|328721|328969|328974|328991|328993|328996|328998|328999|329000|329004|329007|329010|329013|329014|338679|338681|338687|338689|338692|338695|338702|338703|338711|338983|338988|338990|339008|339014|339020|339023|339025|339027|344745|344747|344748|344755|344758|344767|344768|344772|344993|345000|345003|345007|345009|345018|345020|345022|345024|345026|345027|345032|345034|346140|346143|346147|346149|346155|346156|346159|346160|346342|346345|346346|346348|346362|346364|346367|346368|346374|346379|378307|378308|404831|404831|404832|404832|415564|429974|429981|429982|468281|574499|612107|612136|615566|615568|615569|615571|615572|615573|615574|615576|615577|615578|615579|615580|615581|615582|615583|615586|615587|615589|615747|615748|615749|615750|615751|615752|615753|620592|620593|620885|679346|684676|684677|684682|684683|684685|684688|684690|688773|688774|688784|788911|801169|801170|801250|845494|845495|877749|877750|877751|877752|877753|877754|877755|877756|877757|877758|877759|877760|877761|877762|877763|877764|877765|877766|877767|877768|877769|877770|877771|877772|877773|877822|877823|877824|877825|877826|877827|877828|877829|877830|877831|877832|877833|877834|877835|877836|877837|877838|877839|877840|877841|877842|877843|877844|877845|877846|877847|877848|877849|880538|880539|880540|880541|880542|880544|958144|958145|959435|959436|959437|959438|959439|959440|959441|959442|959443|959444|959445|959446|959447|959448|959449|959450|959451|959452|959453|959454|959455|959456|959457|959458|959459|959460|959461|959462|959463|959464|959465|959466|959467|959468|959469|959470|959471|959472|959473|959474|959475|959476|959477|959478|959479|959480|959481|959482|959483|959484|959485|959486|959487|959488|959489|959490|959491|959492|959493|959494|959495|959496|959497|959498|959499|959500|959501|959502|959503|960222|965256|965257|965258|965259|965260|965261|965262|965263|983869|983870|983871|983872|983873|983874|983875|983876|983877|983878|983879|983880|983881|983882|983883|983884|983885|983886|983887|983888|983889|983890|983891|983892|983893|983894|983895|983896|983897|983898|983899|983900|983901|983902|983903|983904|983905|983906|983907|983908|983909|983910|983911|983912|983913|983914|983915|983916|983917|983918|983919|983920|983921|983922|983923|983924|983925", + "upstreamId": "17928|17929|17930|17931|17932|17933|17934|17935|17937|17938|17939|17940|17941|17942|28592|28593|28594|28595|28596|28597|28599|28600|28601|28602|28603|28604|28605|28606|28607|28608|59386|59387|213645|227393|227393|227425|236945|237001|256203|256204|256205|256223|256224|256225|256226|256227|256228|256230|328692|328696|328700|328707|328708|328712|328714|328716|328718|328721|328969|328974|328991|328993|328996|328998|328999|329000|329004|329007|329010|329013|329014|338679|338681|338687|338689|338692|338695|338702|338703|338711|338983|338988|338990|339008|339014|339020|339023|339025|339027|344745|344747|344748|344755|344758|344767|344768|344772|344993|345000|345003|345007|345009|345018|345020|345022|345024|345026|345027|345032|345034|346140|346143|346147|346149|346155|346156|346159|346160|346342|346345|346346|346348|346362|346364|346367|346368|346374|346379|378307|378308|404831|404831|404832|404832|415564|429974|429981|429982|468281|574499|612107|612136|615566|615568|615569|615571|615572|615573|615574|615576|615577|615578|615579|615580|615581|615582|615583|615586|615587|615589|615747|615748|615749|615750|615751|615752|615753|620592|620593|620885|679346|684676|684677|684682|684683|684685|684688|684690|688773|688774|688784|788911|801169|801170|801250|845494|845495|877749|877750|877751|877752|877753|877754|877755|877756|877757|877758|877759|877760|877761|877762|877763|877764|877765|877766|877767|877768|877769|877770|877771|877772|877773|877822|877823|877824|877825|877826|877827|877828|877829|877830|877831|877832|877833|877834|877835|877836|877837|877838|877839|877840|877841|877842|877843|877844|877845|877846|877847|877848|877849|880538|880539|880540|880541|880542|880544|958144|958145|959435|959436|959437|959438|959439|959440|959441|959442|959443|959444|959445|959446|959447|959448|959449|959450|959451|959452|959453|959454|959455|959456|959457|959458|959459|959460|959461|959462|959463|959464|959465|959466|959467|959468|959469|959470|959471|959472|959473|959474|959475|959476|959477|959478|959479|959480|959481|959482|959483|959484|959485|959486|959487|959488|959489|959490|959491|959492|959493|959494|959495|959496|959497|959498|959499|959500|959501|959502|959503|960222|965256|965257|965258|965259|965260|965261|965262|965263|983869|983870|983871|983872|983873|983874|983875|983876|983877|983878|983879|983880|983881|983882|983883|983884|983885|983886|983887|983888|983889|983890|983891|983892|983893|983894|983895|983896|983897|983898|983899|983900|983901|983902|983903|983904|983905|983906|983907|983908|983909|983910|983911|983912|983913|983914|983915|983916|983917|983918|983919|983920|983921|983922|983923|983924|983925", "text": "Glanzmann thrombasthenia" }, { - "baseId": "17930", + "upstreamId": "17930", "text": "BAK PLATELET-SPECIFIC ANTIGEN" }, { - "baseId": "17943|17944|17945", + "upstreamId": "17943|17944|17945", "text": "Phenylthiocarbamide tasting" }, { - "baseId": "17946|21759|31645|31646|174555|174828|189039|194360|253249|253250|253251|268286|273834|274187|306215|306216|306218|306231|306234|306238|306251|306252|306256|306257|310320|310326|310331|310332|310350|310354|310355|310356|310361|310368|315624|315676|315677|315679|315680|315685|315686|315691|315692|315733|315741|315801|315804|315805|315808|315809|319672|481859|552038|620313|900632|900633|900634|900635|900636|900637|900638|900639|900640|900641|900642|900643|900644|900645|900646|900647|900648|900649|900650|900651|900652|900653|900654|900655|900656|900657|900658|900659|900660|900661|900662|900663|900664|900665|900666|900667", + "upstreamId": "17946|21759|31645|31646|174555|174828|189039|194360|253249|253250|253251|268286|273834|274187|306215|306216|306218|306231|306234|306238|306251|306252|306256|306257|310320|310326|310331|310332|310350|310354|310355|310356|310361|310368|315624|315676|315677|315679|315680|315685|315686|315691|315692|315733|315741|315801|315804|315805|315808|315809|319672|481859|552038|620313|900632|900633|900634|900635|900636|900637|900638|900639|900640|900641|900642|900643|900644|900645|900646|900647|900648|900649|900650|900651|900652|900653|900654|900655|900656|900657|900658|900659|900660|900661|900662|900663|900664|900665|900666|900667", "text": "Hypercholanemia, familial" }, { - "baseId": "17947|404783|425216|583105|920275", + "upstreamId": "17947|404783|425216|583105|920275", "text": "Cerebral palsy, spastic quadriplegic, 2" }, { - "baseId": "17948|82291|142666|142667|142668|142669|192151|212975|212977|222194|222196|222198|222199|241222|241223|241225|244701|244702|244704|254371|312026|312046|312075|315582|315590|315591|315596|315597|315598|315604|315606|315608|315609|315614|315615|315619|315627|315646|315647|315650|315652|317682|317724|317727|322423|322424|322425|322438|322441|322443|322447|322450|322452|322453|322462|322471|322472|322492|322493|323641|323734|323765|323770|324393|324481|328619|328659|328663|328664|328665|328675|328676|328677|328679|328695|328697|328709|328710|328713|329870|329879|329880|329888|329889|329890|329893|329895|329909|329912|329915|329916|371932|372773|374431|384516|415315|421892|441490|441493|444695|461556|504490|508858|526572|564984|571122|578495|620425|620426|625755|640560|684271|687683|791185|799661|839216|839237|866766|866767|866768|866820|866821|866822|868577|868686|868989|868990|868991|868992|868993|868994|868995|868996|868997|868998|868999|869000|869001|869002|869003|869004|869005|869006|869007|872154|872155|872156|919402|935889|970925", + "upstreamId": "17948|82291|142666|142667|142668|142669|192151|212975|212977|222194|222196|222198|222199|241222|241223|241225|244701|244702|244704|254371|312026|312046|312075|315582|315590|315591|315596|315597|315598|315604|315606|315608|315609|315614|315615|315619|315627|315646|315647|315650|315652|317682|317724|317727|322423|322424|322425|322438|322441|322443|322447|322450|322452|322453|322462|322471|322472|322492|322493|323641|323734|323765|323770|324393|324481|328619|328659|328663|328664|328665|328675|328676|328677|328679|328695|328697|328709|328710|328713|329870|329879|329880|329888|329889|329890|329893|329895|329909|329912|329915|329916|371932|372773|374431|384516|415315|421892|441490|441493|444695|461556|504490|508858|526572|564984|571122|578495|620425|620426|625755|640560|684271|687683|791185|799661|839216|839237|866766|866767|866768|866820|866821|866822|868577|868686|868989|868990|868991|868992|868993|868994|868995|868996|868997|868998|868999|869000|869001|869002|869003|869004|869005|869006|869007|872154|872155|872156|919402|935889|970925", "text": "Charcot-Marie-Tooth disease, type 4B2" }, { - "baseId": "17949|17950|17951", + "upstreamId": "17949|17950|17951", "text": "Charcot-Marie-Tooth disease type 4B2 with early-onset glaucoma" }, { - "baseId": "17953|17954|17955|17956|17957|19972|40256|57290|57294|57295|57296|57298|57303|76647|176636|176637|230790|267403|271628|329798|329799|329801|329802|329811|329813|340090|340092|340103|340108|340115|340120|340121|345789|345795|345797|345800|345801|345809|345810|345814|345818|345820|347194|347198|347203|347204|347205|506389|552027|615827|620606|846182|846191|878385|878386|878387|878388|878389|878390|878391|878392|878393|878394|878395|878396|878397|878398|878399|878400|878401|878402|878403|878404|878405|878406|878407|878408|878409|878410", + "upstreamId": "17953|17954|17955|17956|17957|19972|40256|57290|57294|57295|57296|57298|57303|76647|176636|176637|230790|267403|271628|329798|329799|329801|329802|329811|329813|340090|340092|340103|340108|340115|340120|340121|345789|345795|345797|345800|345801|345809|345810|345814|345818|345820|347194|347198|347203|347204|347205|506389|552027|615827|620606|846182|846191|878385|878386|878387|878388|878389|878390|878391|878392|878393|878394|878395|878396|878397|878398|878399|878400|878401|878402|878403|878404|878405|878406|878407|878408|878409|878410", "text": "Usher syndrome, type 1G" }, { - "baseId": "17955|17956|19955|19962|19964|19965|19966|19972|20179|20180|20181|20182|20182|20185|26887|26887|26889|26891|26898|26899|26901|48026|48287|52303|52304|52304|52305|52305|52306|52308|52309|52311|52312|52313|52315|52319|52320|52321|52321|52323|52326|52328|52330|52331|52332|52333|52334|52334|52336|52338|52339|52339|52340|52343|52345|52346|52346|52347|52348|52348|52349|52350|52351|52352|52353|52354|52355|52356|52357|52358|52359|52360|52361|52362|52363|52364|52365|52367|52369|52370|52371|52373|52373|52378|52378|52383|52385|52385|52388|52388|52390|52392|52393|52394|52394|52395|52396|52397|52399|52400|52401|52403|52404|52407|52411|52411|52412|52414|52414|52416|52417|52418|52421|52422|52424|52425|52426|52427|52428|52430|52431|52432|52435|52437|52438|52439|52440|52441|52442|52444|52446|52448|52449|52453|52456|52457|52458|52460|52461|52463|52464|52465|52466|52467|52468|52469|52470|52472|52473|52474|52475|52475|52477|52479|52483|52486|52487|52488|52488|52492|52493|52494|52495|52496|52497|52497|52498|52499|52501|52504|52505|52508|52509|52513|52514|53126|53126|53279|53280|53281|55024|55034|55040|55041|55047|55048|55050|55052|55055|55056|55058|55059|55061|55062|55063|55069|55070|55071|55073|55074|55077|55078|55080|55081|55083|55090|55092|55093|55095|55096|55102|55104|55107|55109|55110|55112|55114|55118|55120|55122|55124|55125|55127|55129|55130|55131|55132|55136|55138|55141|55142|55143|55145|55147|55151|55152|55157|55162|55166|55167|55172|55173|55175|55177|55180|55183|55184|55186|55191|55192|55193|55194|55196|55197|55199|55207|55208|55210|55211|55213|55217|55223|55224|55230|55231|55233|55237|55239|55243|55244|55245|55246|55247|55599|55601|55602|55604|55605|55606|55607|55608|55609|55611|55612|55613|55617|55618|55619|55621|55622|55623|55626|55631|55634|55635|55639|55640|55642|55643|55644|55645|55647|55649|55650|55651|55656|55657|55662|55663|55664|55665|55666|55667|55668|55669|55670|55671|55672|55674|55676|55678|57154|57671|88929|101919|129781|137043|142289|174331|174667|174673|174674|174676|174683|174705|174711|174713|174715|174717|174718|174810|174811|174812|174813|174814|174818|174819|174820|174945|174950|174959|174965|174966|174971|174988|174989|174991|174992|174996|175000|175001|175007|175118|175127|175221|175222|175223|175225|175226|175227|175233|175236|175238|175238|175243|175246|175257|175266|175275|175279|175281|175285|175287|175379|175519|175522|175818|176872|176872|176880|176881|176882|176890|176894|176897|177262|177394|177561|178183|178183|178185|178187|178187|178187|178237|178238|178239|178240|178241|178242|178245|178248|178280|178282|178299|178300|178301|178301|188830|188830|188830|191834|191947|192050|193147|193201|193260|193260|194566|194658|194667|195531|214846|226532|228230|228231|228232|228233|228234|228235|228236|228237|228238|228239|228240|228242|229805|229810|229855|229864|229865|229867|229871|229873|229874|229891|230238|230244|230245|230245|230249|230250|231364|231364|231366|231368|231369|231384|231384|231385|231417|231419|231420|231420|231421|231423|231424|231425|231426|231427|237612|237614|237614|238052|238053|266037|266983|268060|269641|269755|270155|270156|271130|272763|275242|310509|310514|310518|310530|310536|310538|310539|310544|310548|310713|315220|315224|315230|315231|315242|315243|315244|315250|315250|315252|315256|315257|315258|315259|315632|315635|315637|315640|315641|315642|315643|315651|315658|315663|315667|315672|315673|315707|321643|321648|321652|321658|321661|321667|321674|321686|321687|321694|321703|321704|321705|321706|321714|321718|321721|321725|321739|321758|322002|322004|322005|322010|322038|322039|322043|322044|322049|322052|322054|322055|322071|322072|322075|322076|322079|322080|322082|322083|322084|322085|322086|322088|322091|322094|322095|322389|322396|322404|322426|322428|322433|322435|322448|322704|322709|328157|328159|328161|328164|328165|328171|328172|328177|328181|328182|328183|328184|329415|329417|329419|329420|329422|329423|329424|329425|329427|329429|329431|329432|329437|329438|329439|329446|329447|329453|353137|358080|358081|359920|360049|360049|361501|361502|374343|384490|389240|389242|389242|407896|407898|407900|407901|408476|413286|415230|425944|431531|431762|431763|431766|431767|432307|444639|486183|488902|489956|491741|493338|493921|496950|496958|497099|497165|497166|497208|497209|497399|497403|497625|497811|497812|497820|497822|497860|508737|508743|511946|513314|514390|514401|546382|546385|546387|546394|546395|546399|546403|546404|546408|546409|546413|546417|546423|546425|546425|546426|546428|546431|546436|546438|546440|546446|546457|546461|546463|546466|546469|546494|546496|546508|546520|546526|546527|546530|546599|546607|546611|546612|546614|546614|546625|546628|546637|546642|546645|546659|546664|546673|546674|546687|546688|546691|546693|546694|546696|546696|546698|546700|546702|546702|546705|546708|546709|546710|546716|546716|546718|546720|546721|546723|546725|546726|546727|546731|546733|546734|546742|546742|546744|546746|546747|546754|546755|546756|546758|546761|546763|546766|546767|546780|546784|546790|546793|546803|546811|546814|546815|546824|546826|546828|546836|546838|546845|546856|546866|546867|546870|546873|547003|547006|547013|547015|547021|547031|547033|547034|547035|547038|547041|547042|547045|547046|547052|547055|547058|547060|547072|547079|547079|551614|552405|587534|609760|609761|609763|611734|612882|612884|620367|654603|654611|654612|654617|654618|654619|654620|654690|656009|656012|656013|713192|737576|737581|737584|737586|737587|738305|752138|752220|752221|752225|752227|752235|752236|752241|752242|752246|760047|767802|767806|767896|767898|767901|767904|767906|767910|767918|767919|767920|767925|767926|767930|767934|767935|767939|767940|767945|767946|767949|767958|768788|768806|775562|775689|775714|783675|783682|783687|783691|783696|783702|783706|783717|783718|784189|784220|787671|787689|800360|800555|800572|800573|800613|800695|801422|801432|801688|801689|801711|801712|801713|801714|801715|818293|836980|837193|837197|837200|837201|837206|837212|837216|837217|837219|837220|837223|837227|837233|837236|837237|837240|837242|837243|837252|837256|837263|837266|837269|839045|839075|859808|865985|865986|865987|865988|865989|865990|865991|865992|865993|865994|865995|865996|865997|865998|865999|866000|866001|866002|866003|866004|866005|866006|866007|866008|866009|866010|868479|868480|868803|868804|868805|868806|868807|868808|868809|868810|868811|868812|868813|868814|868815|868816|868817|868818|868819|868820|868821|868822|868823|868824|868825|868826|868827|868828|868829|868830|868831|868832|868833|868834|868835|868836|868837|868838|868839|868840|868841|868842|872137|872138|872139|872140|872141|872142|872143|872144|919343|956182|956189|972115|972116|972117|972118|972119|972120|972121|972122|972123|972124|972125|972126|972127|972128|972129|972130|972131|972132|972133|972134|972135|972136|972137|972138|972139|972140|972141|972142|972143|972144|972145|972146|972147|972148|972149|972150|972151|972152|972153|972154|972155|972156|972157|972158|972159|972160|972161|978683|978684|978685|978686|978687|978688|978689|978690|978691|978692|978693|978694|978695|978696|978697|978698|978699|978700|978701|978702|978703|978704|978705|978706|978707|978708|978709|978710|978711|978712|978713|978714|978715|978716|978717|978718|978719|978720|978721|978722|978723|978724|978725|978726|978727|978728|978729|978730|978731|978732|978733|978734|978735|978736|978737|978738|978739|978740|978741|978742|978743|978744|978745|978746|978747|978748|978749|978750|978751|978752|978753|978754|978755|978756|978757|978758|978759|978760|978761|978762|978763|978764|978765|978766|978767|978768|978769|978770|978771|978772|978773|978774|978775", + "upstreamId": "17955|17956|19955|19962|19964|19965|19966|19972|20179|20180|20181|20182|20182|20185|26887|26887|26889|26891|26898|26899|26901|48026|48287|52303|52304|52304|52305|52305|52306|52308|52309|52311|52312|52313|52315|52319|52320|52321|52321|52323|52326|52328|52330|52331|52332|52333|52334|52334|52336|52338|52339|52339|52340|52343|52345|52346|52346|52347|52348|52348|52349|52350|52351|52352|52353|52354|52355|52356|52357|52358|52359|52360|52361|52362|52363|52364|52365|52367|52369|52370|52371|52373|52373|52378|52378|52383|52385|52385|52388|52388|52390|52392|52393|52394|52394|52395|52396|52397|52399|52400|52401|52403|52404|52407|52411|52411|52412|52414|52414|52416|52417|52418|52421|52422|52424|52425|52426|52427|52428|52430|52431|52432|52435|52437|52438|52439|52440|52441|52442|52444|52446|52448|52449|52453|52456|52457|52458|52460|52461|52463|52464|52465|52466|52467|52468|52469|52470|52472|52473|52474|52475|52475|52477|52479|52483|52486|52487|52488|52488|52492|52493|52494|52495|52496|52497|52497|52498|52499|52501|52504|52505|52508|52509|52513|52514|53126|53126|53279|53280|53281|55024|55034|55040|55041|55047|55048|55050|55052|55055|55056|55058|55059|55061|55062|55063|55069|55070|55071|55073|55074|55077|55078|55080|55081|55083|55090|55092|55093|55095|55096|55102|55104|55107|55109|55110|55112|55114|55118|55120|55122|55124|55125|55127|55129|55130|55131|55132|55136|55138|55141|55142|55143|55145|55147|55151|55152|55157|55162|55166|55167|55172|55173|55175|55177|55180|55183|55184|55186|55191|55192|55193|55194|55196|55197|55199|55207|55208|55210|55211|55213|55217|55223|55224|55230|55231|55233|55237|55239|55243|55244|55245|55246|55247|55599|55601|55602|55604|55605|55606|55607|55608|55609|55611|55612|55613|55617|55618|55619|55621|55622|55623|55626|55631|55634|55635|55639|55640|55642|55643|55644|55645|55647|55649|55650|55651|55656|55657|55662|55663|55664|55665|55666|55667|55668|55669|55670|55671|55672|55674|55676|55678|57154|57671|88929|101919|129781|137043|142289|174331|174667|174673|174674|174676|174683|174705|174711|174713|174715|174717|174718|174810|174811|174812|174813|174814|174818|174819|174820|174945|174950|174959|174965|174966|174971|174988|174989|174991|174992|174996|175000|175001|175007|175118|175127|175221|175222|175223|175225|175226|175227|175233|175236|175238|175238|175243|175246|175257|175266|175275|175279|175281|175285|175287|175379|175519|175522|175818|176872|176872|176880|176881|176882|176890|176894|176897|177262|177394|177561|178183|178183|178185|178187|178187|178187|178237|178238|178239|178240|178241|178242|178245|178248|178280|178282|178299|178300|178301|178301|188830|188830|188830|191834|191947|192050|193147|193201|193260|193260|194566|194658|194667|195531|214846|226532|228230|228231|228232|228233|228234|228235|228236|228237|228238|228239|228240|228242|229805|229810|229855|229864|229865|229867|229871|229873|229874|229891|230238|230244|230245|230245|230249|230250|231364|231364|231366|231368|231369|231384|231384|231385|231417|231419|231420|231420|231421|231423|231424|231425|231426|231427|237612|237614|237614|238052|238053|266037|266983|268060|269641|269755|270155|270156|271130|272763|275242|310509|310514|310518|310530|310536|310538|310539|310544|310548|310713|315220|315224|315230|315231|315242|315243|315244|315250|315250|315252|315256|315257|315258|315259|315632|315635|315637|315640|315641|315642|315643|315651|315658|315663|315667|315672|315673|315707|321643|321648|321652|321658|321661|321667|321674|321686|321687|321694|321703|321704|321705|321706|321714|321718|321721|321725|321739|321758|322002|322004|322005|322010|322038|322039|322043|322044|322049|322052|322054|322055|322071|322072|322075|322076|322079|322080|322082|322083|322084|322085|322086|322088|322091|322094|322095|322389|322396|322404|322426|322428|322433|322435|322448|322704|322709|328157|328159|328161|328164|328165|328171|328172|328177|328181|328182|328183|328184|329415|329417|329419|329420|329422|329423|329424|329425|329427|329429|329431|329432|329437|329438|329439|329446|329447|329453|353137|358080|358081|359920|360049|360049|361501|361502|374343|384490|389240|389242|389242|407896|407898|407900|407901|408476|413286|415230|425944|431531|431762|431763|431766|431767|432307|444639|486183|488902|489956|491741|493338|493921|496950|496958|497099|497165|497166|497208|497209|497399|497403|497625|497811|497812|497820|497822|497860|508737|508743|511946|513314|514390|514401|546382|546385|546387|546394|546395|546399|546403|546404|546408|546409|546413|546417|546423|546425|546425|546426|546428|546431|546436|546438|546440|546446|546457|546461|546463|546466|546469|546494|546496|546508|546520|546526|546527|546530|546599|546607|546611|546612|546614|546614|546625|546628|546637|546642|546645|546659|546664|546673|546674|546687|546688|546691|546693|546694|546696|546696|546698|546700|546702|546702|546705|546708|546709|546710|546716|546716|546718|546720|546721|546723|546725|546726|546727|546731|546733|546734|546742|546742|546744|546746|546747|546754|546755|546756|546758|546761|546763|546766|546767|546780|546784|546790|546793|546803|546811|546814|546815|546824|546826|546828|546836|546838|546845|546856|546866|546867|546870|546873|547003|547006|547013|547015|547021|547031|547033|547034|547035|547038|547041|547042|547045|547046|547052|547055|547058|547060|547072|547079|547079|551614|552405|587534|609760|609761|609763|611734|612882|612884|620367|654603|654611|654612|654617|654618|654619|654620|654690|656009|656012|656013|713192|737576|737581|737584|737586|737587|738305|752138|752220|752221|752225|752227|752235|752236|752241|752242|752246|760047|767802|767806|767896|767898|767901|767904|767906|767910|767918|767919|767920|767925|767926|767930|767934|767935|767939|767940|767945|767946|767949|767958|768788|768806|775562|775689|775714|783675|783682|783687|783691|783696|783702|783706|783717|783718|784189|784220|787671|787689|800360|800555|800572|800573|800613|800695|801422|801432|801688|801689|801711|801712|801713|801714|801715|818293|836980|837193|837197|837200|837201|837206|837212|837216|837217|837219|837220|837223|837227|837233|837236|837237|837240|837242|837243|837252|837256|837263|837266|837269|839045|839075|859808|865985|865986|865987|865988|865989|865990|865991|865992|865993|865994|865995|865996|865997|865998|865999|866000|866001|866002|866003|866004|866005|866006|866007|866008|866009|866010|868479|868480|868803|868804|868805|868806|868807|868808|868809|868810|868811|868812|868813|868814|868815|868816|868817|868818|868819|868820|868821|868822|868823|868824|868825|868826|868827|868828|868829|868830|868831|868832|868833|868834|868835|868836|868837|868838|868839|868840|868841|868842|872137|872138|872139|872140|872141|872142|872143|872144|919343|956182|956189|972115|972116|972117|972118|972119|972120|972121|972122|972123|972124|972125|972126|972127|972128|972129|972130|972131|972132|972133|972134|972135|972136|972137|972138|972139|972140|972141|972142|972143|972144|972145|972146|972147|972148|972149|972150|972151|972152|972153|972154|972155|972156|972157|972158|972159|972160|972161|978683|978684|978685|978686|978687|978688|978689|978690|978691|978692|978693|978694|978695|978696|978697|978698|978699|978700|978701|978702|978703|978704|978705|978706|978707|978708|978709|978710|978711|978712|978713|978714|978715|978716|978717|978718|978719|978720|978721|978722|978723|978724|978725|978726|978727|978728|978729|978730|978731|978732|978733|978734|978735|978736|978737|978738|978739|978740|978741|978742|978743|978744|978745|978746|978747|978748|978749|978750|978751|978752|978753|978754|978755|978756|978757|978758|978759|978760|978761|978762|978763|978764|978765|978766|978767|978768|978769|978770|978771|978772|978773|978774|978775", "text": "Usher syndrome type 1" }, { - "baseId": "17958|17959|17960|214523|626354", + "upstreamId": "17958|17959|17960|214523|626354", "text": "Thyroid hormone metabolism, abnormal" }, { - "baseId": "17961|17962|17963|17964|17965|17966|17967|17968|512900", + "upstreamId": "17961|17962|17963|17964|17965|17966|17967|17968|512900", "text": "Chylomicron retention disease" }, { - "baseId": "17969|17970|34355|34356|48167|539037", + "upstreamId": "17969|17970|34355|34356|48167|539037", "text": "Cold-induced sweating syndrome 2" }, { - "baseId": "17971|17972|17973|17974|17975|99931|99932|190386|254709|267600|318289|318294|318295|318296|318300|318301|318305|318306|318308|318309|326274|326305|326307|326308|326315|326318|326319|326320|326328|332552|332553|332577|332579|332581|332584|332601|332602|332605|332612|332616|332623|332632|334160|334171|334176|334177|334201|334206|334208|334210|334211|334212|334225|334233|334234|334242|408733|504073|565703|578510|625883|641371|652737|713708|713709|738825|738826|738827|744914|753550|753551|769278|775864|784456|784458|784460|820515|820516|820517|840220|840221|851957|870290|870291|870292|870293|870294|870295|870296|870297|870298|870299|870300|870301|870302|870303|870304|870305|870306|870307|870308|870309|870310|870311|870312|870313|870314|872284|926720|948138|960791|964398", + "upstreamId": "17971|17972|17973|17974|17975|99931|99932|190386|254709|267600|318289|318294|318295|318296|318300|318301|318305|318306|318308|318309|326274|326305|326307|326308|326315|326318|326319|326320|326328|332552|332553|332577|332579|332581|332584|332601|332602|332605|332612|332616|332623|332632|334160|334171|334176|334177|334201|334206|334208|334210|334211|334212|334225|334233|334234|334242|408733|504073|565703|578510|625883|641371|652737|713708|713709|738825|738826|738827|744914|753550|753551|769278|775864|784456|784458|784460|820515|820516|820517|840220|840221|851957|870290|870291|870292|870293|870294|870295|870296|870297|870298|870299|870300|870301|870302|870303|870304|870305|870306|870307|870308|870309|870310|870311|870312|870313|870314|872284|926720|948138|960791|964398", "text": "Mucopolysaccharidosis, MPS-III-D" }, { - "baseId": "17976|17977|17978|17979|17980|227217|281164|281168|281174|281176|281186|281188|281192|281772|281783|281785|281786|281787|281792|281795|281796|281803|282967|282968|282998|283001|283002|283003|283030|283034|283036|283048|283049|283264|283272|283273|283276|353108|620013|620727|620728|864795|864796|864797|864798|864799|864800|864801|864802|864803|864804|864805|864806|864807|864808|864809|865208|865209", + "upstreamId": "17976|17977|17978|17979|17980|227217|281164|281168|281174|281176|281186|281188|281192|281772|281783|281785|281786|281787|281792|281795|281796|281803|282967|282968|282998|283001|283002|283003|283030|283034|283036|283048|283049|283264|283272|283273|283276|353108|620013|620727|620728|864795|864796|864797|864798|864799|864800|864801|864802|864803|864804|864805|864806|864807|864808|864809|865208|865209", "text": "Cystathioninuria" }, { - "baseId": "17980", + "upstreamId": "17980", "text": "Homocysteine, total plasma, elevated" }, { - "baseId": "17981|17983|190532|190533|192452|268079|298640|298641|298653|298655|298656|298664|298666|298667|298669|298676|298677|298682|298684|301041|301043|301045|301047|301050|301052|301054|301056|301061|301076|301078|301085|301086|301093|301095|301096|301105|301117|301120|301121|305473|305488|305489|305510|305517|305520|305521|305525|305528|305529|305531|305533|305596|305597|305598|305604|305620|305622|305628|305629|305631|305637|305638|481434|584809|620207|710102|721629|779128|790573|895151|895152|895153|895154|895155|895156|895157|895158|895159|895160|895161|895162|895163|895164|895165|895166|895167|895168|895169|895170|895171|895172|895173|895174|895175|895176|895177|895178", + "upstreamId": "17981|17983|190532|190533|192452|268079|298640|298641|298653|298655|298656|298664|298666|298667|298669|298676|298677|298682|298684|301041|301043|301045|301047|301050|301052|301054|301056|301061|301076|301078|301085|301086|301093|301095|301096|301105|301117|301120|301121|305473|305488|305489|305510|305517|305520|305521|305525|305528|305529|305531|305533|305596|305597|305598|305604|305620|305622|305628|305629|305631|305637|305638|481434|584809|620207|710102|721629|779128|790573|895151|895152|895153|895154|895155|895156|895157|895158|895159|895160|895161|895162|895163|895164|895165|895166|895167|895168|895169|895170|895171|895172|895173|895174|895175|895176|895177|895178", "text": "Osteopetrosis, autosomal recessive 5" }, { - "baseId": "17984|106438|177729|268041|271289|364010|512960|626265|727570|846508", + "upstreamId": "17984|106438|177729|268041|271289|364010|512960|626265|727570|846508", "text": "Retinitis pigmentosa 30" }, { - "baseId": "17984|22919|22923|22924|22942|22952|24520|31114|31115|31116|34176|34177|34178|98778|104561|104927|104930|104931|104938|104954|104974|104990|105042|105058|105068|105082|105135|105147|105160|105279|105285|105296|105297|105302|105329|105330|105332|105333|105337|105343|105349|105380|105381|105383|105387|106449|134459|134460|134461|134462|134463|134464|134465|134466|139937|139938|139942|139944|152793|177450|187995|188003|188007|190742|191153|191753|193374|227292|227293|237323|237686|237695|237696|237704|247041|250031|250033|267624|271456|277787|277877|277940|278069|278074|278181|278855|278862|278949|279011|279014|279142|279153|279159|279170|279232|281326|281328|281329|281332|281340|281341|281342|281346|281351|281359|281361|281367|281368|281373|281375|281378|281381|281972|281973|281986|281988|281995|281996|282000|282001|282006|283241|283246|283260|283261|283265|283266|283281|283282|283286|283290|283291|283298|283299|283386|283388|283391|283392|283399|283400|283402|283415|283422|283423|283434|283437|283438|283441|283442|299768|299776|299781|299782|299793|299794|299798|299800|299801|299802|299808|299809|299810|299817|299818|299823|299824|299825|299832|302372|302387|302388|302389|302401|302405|302413|302414|306762|306777|306778|306782|306810|306818|306821|306823|306824|306825|306828|306830|307093|307103|307110|307117|307120|307123|307132|309611|309617|309623|309625|309626|309628|309632|309634|309635|310384|310391|310392|310405|310413|310414|310463|314433|314435|314436|314437|314439|314441|315483|315490|315526|315555|320486|320494|320495|320496|320958|320969|320970|320973|320983|320985|321000|321491|321510|321549|321588|322273|322279|322288|322302|322309|322331|333272|334509|337801|337826|339798|343356|343374|343375|344343|344359|344383|348650|349452|350459|353493|353745|360817|513994|723822|737385|752008|859786|859787|865523|865524|865525|865526|865527|865528|865529|865530|865531|865532|865533|868454|895776|895782|895783|895784|895785|895786|895787|895788|895789|895790|895791|895792|895793|896219", + "upstreamId": "17984|22919|22923|22924|22942|22952|24520|31114|31115|31116|34176|34177|34178|98778|104561|104927|104930|104931|104938|104954|104974|104990|105042|105058|105068|105082|105135|105147|105160|105279|105285|105296|105297|105302|105329|105330|105332|105333|105337|105343|105349|105380|105381|105383|105387|106449|134459|134460|134461|134462|134463|134464|134465|134466|139937|139938|139942|139944|152793|177450|187995|188003|188007|190742|191153|191753|193374|227292|227293|237323|237686|237695|237696|237704|247041|250031|250033|267624|271456|277787|277877|277940|278069|278074|278181|278855|278862|278949|279011|279014|279142|279153|279159|279170|279232|281326|281328|281329|281332|281340|281341|281342|281346|281351|281359|281361|281367|281368|281373|281375|281378|281381|281972|281973|281986|281988|281995|281996|282000|282001|282006|283241|283246|283260|283261|283265|283266|283281|283282|283286|283290|283291|283298|283299|283386|283388|283391|283392|283399|283400|283402|283415|283422|283423|283434|283437|283438|283441|283442|299768|299776|299781|299782|299793|299794|299798|299800|299801|299802|299808|299809|299810|299817|299818|299823|299824|299825|299832|302372|302387|302388|302389|302401|302405|302413|302414|306762|306777|306778|306782|306810|306818|306821|306823|306824|306825|306828|306830|307093|307103|307110|307117|307120|307123|307132|309611|309617|309623|309625|309626|309628|309632|309634|309635|310384|310391|310392|310405|310413|310414|310463|314433|314435|314436|314437|314439|314441|315483|315490|315526|315555|320486|320494|320495|320496|320958|320969|320970|320973|320983|320985|321000|321491|321510|321549|321588|322273|322279|322288|322302|322309|322331|333272|334509|337801|337826|339798|343356|343374|343375|344343|344359|344383|348650|349452|350459|353493|353745|360817|513994|723822|737385|752008|859786|859787|865523|865524|865525|865526|865527|865528|865529|865530|865531|865532|865533|868454|895776|895782|895783|895784|895785|895786|895787|895788|895789|895790|895791|895792|895793|896219", "text": "Macular degeneration" }, { - "baseId": "17985|17986|17987|17988|17989|17990|17991|102073|102077|102078|102081|102084|102085|102086|102088|102089|152915|177420|181491|244142|361967|424665|429938|429944|429948|481322|513464|577616|580293|611446|613831|614034|622441|788905|791682|798711|919710|919711|919712|961333|961628|964469|964470|971069|971070", + "upstreamId": "17985|17986|17987|17988|17989|17990|17991|102073|102077|102078|102081|102084|102085|102086|102088|102089|152915|177420|181491|244142|361967|424665|429938|429944|429948|481322|513464|577616|580293|611446|613831|614034|622441|788905|791682|798711|919710|919711|919712|961333|961628|964469|964470|971069|971070", "text": "Smith-Magenis syndrome" }, { - "baseId": "17992|553276|614644|626139|626140|918855", + "upstreamId": "17992|553276|614644|626139|626140|918855", "text": "Spinocerebellar ataxia 7" }, { - "baseId": "17993|17994|17995|85479|189103|250725|250726|250727|250728|250729|286023|286024|286029|286031|286035|286037|286038|286040|286045|286047|286051|286057|286061|286063|286065|286067|286072|286075|286768|286784|286787|286788|286801|286803|286805|286808|286811|286825|286826|286836|286837|286847|286849|286851|289080|289081|289083|289086|289094|289096|289097|289098|289105|289108|289109|289129|289436|289438|289439|289443|289444|289445|289448|289460|289461|289462|289468|289470|289471|289472|289475|289476|289477|289480|496231|496702|518175|561465|561466|561471|623270|629946|629947|708234|708235|708238|708239|708241|708242|708243|719844|719845|719846|719850|719851|747594|781312|826415|826416|884703|884704|884705|884706|884707|884708|884709|884710|884711|884712|884713|884714|884715|884716|884717|884718|884719|884720|884721|884722|884723|884724|884725|884726|884727|884728|884729|884730|884731|884732|884733|884734|884735|884736|884737|884738|884739|884740|884741|884742|884743|884744|884745|884746|884747|884748|884749|884750|884751|884752|884753|884754|884755|884756|884757|884758|884759|884760|884761|884762|884763|884764|884765|884766|884767|884768|884769|884770|884771|884772|887349|887350|887351|887352|887353|887354|887355|887356|887357|887358|887359|887360", + "upstreamId": "17993|17994|17995|85479|189103|250725|250726|250727|250728|250729|286023|286024|286029|286031|286035|286037|286038|286040|286045|286047|286051|286057|286061|286063|286065|286067|286072|286075|286768|286784|286787|286788|286801|286803|286805|286808|286811|286825|286826|286836|286837|286847|286849|286851|289080|289081|289083|289086|289094|289096|289097|289098|289105|289108|289109|289129|289436|289438|289439|289443|289444|289445|289448|289460|289461|289462|289468|289470|289471|289472|289475|289476|289477|289480|496231|496702|518175|561465|561466|561471|623270|629946|629947|708234|708235|708238|708239|708241|708242|708243|719844|719845|719846|719850|719851|747594|781312|826415|826416|884703|884704|884705|884706|884707|884708|884709|884710|884711|884712|884713|884714|884715|884716|884717|884718|884719|884720|884721|884722|884723|884724|884725|884726|884727|884728|884729|884730|884731|884732|884733|884734|884735|884736|884737|884738|884739|884740|884741|884742|884743|884744|884745|884746|884747|884748|884749|884750|884751|884752|884753|884754|884755|884756|884757|884758|884759|884760|884761|884762|884763|884764|884765|884766|884767|884768|884769|884770|884771|884772|887349|887350|887351|887352|887353|887354|887355|887356|887357|887358|887359|887360", "text": "Hereditary xanthinuria type 1" }, { - "baseId": "17996|17997|17998|17999|18002|18003|18005|18006|18007|18008|18009|18010|18011|18012|18013|18014|18015|18016|18017|18018|33985|33986|33987|33988|33989|33990|33992|33994|91670|98607|98608|98609|98610|98611|98612|98613|98614|98616|98618|98619|98620|98621|98622|106599|135257|136637|136638|136639|136640|136641|136642|136643|136644|136645|136646|136647|136648|136649|136650|138599|179793|179794|179795|179796|179798|179799|187020|187022|187023|187024|187025|187026|187027|187028|187029|187030|187031|191145|191321|191322|191972|191973|192884|192885|194812|194949|195863|196161|196162|208444|213648|213649|236859|237046|237454|247146|255054|256596|256598|256601|256603|256607|256608|260201|263804|265268|265286|265287|266176|266178|266182|266608|268883|268899|269233|272008|272074|272343|272387|273494|273495|273976|274042|274371|330510|330513|330847|330849|330852|330856|330857|330865|339011|339016|339018|341110|341113|341115|341119|341122|341128|341130|341132|341134|341135|341136|341149|341151|341153|341155|341160|341165|341166|341168|341170|346689|346690|346695|346698|346699|347945|347946|347956|347958|347968|347969|347970|347973|347976|347981|358525|358526|358527|358528|358529|358530|358531|358532|358533|358534|358535|358536|358537|358538|358539|358540|358541|358542|358543|358544|358545|358546|360308|360321|360478|361031|361231|361232|361634|376732|376743|390247|404603|410326|410327|410328|410330|410331|422213|431002|433760|445944|445945|467901|467904|467906|469596|469602|480509|486196|487967|487968|489195|489385|489578|490682|490751|490761|490772|491363|491579|492370|492377|492780|492948|493698|493700|493771|493787|494126|495854|497495|506884|508899|508900|508901|512873|512874|512981|513372|532151|532153|532171|532264|532541|532545|537304|538474|538475|548481|548487|548490|548492|548493|548495|548499|548501|548502|548503|548505|548510|548513|548515|548516|548517|548518|548521|548523|548524|548526|548529|548531|548533|548536|548538|548539|548540|548547|548548|548550|548551|548553|548559|548561|548565|548567|548570|548572|548576|548877|548882|548883|548890|548892|548900|548903|548905|548907|548911|548914|548915|548918|548920|548927|548934|549227|549228|549230|549231|549232|549234|549235|549237|549241|549245|549248|549249|549250|549251|549252|549256|549257|549260|549262|549264|549265|549270|549271|549781|552209|571846|571849|572547|572557|574712|584406|584624|584819|584869|585055|585625|585773|586007|586050|587099|588473|588653|589498|620894|647094|647095|647096|653379|694252|695790|695791|704552|715910|725798|727659|731208|741313|741315|741316|745017|745020|745022|756394|756395|756396|756397|760713|772049|772051|772052|772054|772055|772057|772058|772059|772060|772064|772069|776438|776441|776474|776476|776477|778432|785846|785847|785848|785852|785854|788200|788201|791851|791852|791853|798732|802222|802223|822140|822141|822338|822339|846692|846693|846694|846695|846696|846697|846698|846699|846700|846701|846702|846703|846704|846705|846706|846707|846708|846709|851765|851767|852267|852806|872542|872543|872544|878971|878972|878973|878974|878975|878976|878977|878978|878979|878980|878981|878982|878983|878984|878985|878986|878987|878988|878989|878990|878991|878992|878993|878994|880635|880636|880637|880638|919790|920389|928660|928661|928662|938384|941205|941206|950459|950460|950461|950462|950463|950464|958438|958439|958440|958441|958442|958443|961024|961883|961884|961885|963179|970244|972288|972289|972290|972291|972292|972293|972294|972295|972296|972297|972298|972299|972300|972301|972302|972303|972304|972305|972306|979937|979938|979939|979940|979941|979942|979943|979944|983467|983559", + "upstreamId": "17996|17997|17998|17999|18002|18003|18005|18006|18007|18008|18009|18010|18011|18012|18013|18014|18015|18016|18017|18018|33985|33986|33987|33988|33989|33990|33992|33994|91670|98607|98608|98609|98610|98611|98612|98613|98614|98616|98618|98619|98620|98621|98622|106599|135257|136637|136638|136639|136640|136641|136642|136643|136644|136645|136646|136647|136648|136649|136650|138599|179793|179794|179795|179796|179798|179799|187020|187022|187023|187024|187025|187026|187027|187028|187029|187030|187031|191145|191321|191322|191972|191973|192884|192885|194812|194949|195863|196161|196162|208444|213648|213649|236859|237046|237454|247146|255054|256596|256598|256601|256603|256607|256608|260201|263804|265268|265286|265287|266176|266178|266182|266608|268883|268899|269233|272008|272074|272343|272387|273494|273495|273976|274042|274371|330510|330513|330847|330849|330852|330856|330857|330865|339011|339016|339018|341110|341113|341115|341119|341122|341128|341130|341132|341134|341135|341136|341149|341151|341153|341155|341160|341165|341166|341168|341170|346689|346690|346695|346698|346699|347945|347946|347956|347958|347968|347969|347970|347973|347976|347981|358525|358526|358527|358528|358529|358530|358531|358532|358533|358534|358535|358536|358537|358538|358539|358540|358541|358542|358543|358544|358545|358546|360308|360321|360478|361031|361231|361232|361634|376732|376743|390247|404603|410326|410327|410328|410330|410331|422213|431002|433760|445944|445945|467901|467904|467906|469596|469602|480509|486196|487967|487968|489195|489385|489578|490682|490751|490761|490772|491363|491579|492370|492377|492780|492948|493698|493700|493771|493787|494126|495854|497495|506884|508899|508900|508901|512873|512874|512981|513372|532151|532153|532171|532264|532541|532545|537304|538474|538475|548481|548487|548490|548492|548493|548495|548499|548501|548502|548503|548505|548510|548513|548515|548516|548517|548518|548521|548523|548524|548526|548529|548531|548533|548536|548538|548539|548540|548547|548548|548550|548551|548553|548559|548561|548565|548567|548570|548572|548576|548877|548882|548883|548890|548892|548900|548903|548905|548907|548911|548914|548915|548918|548920|548927|548934|549227|549228|549230|549231|549232|549234|549235|549237|549241|549245|549248|549249|549250|549251|549252|549256|549257|549260|549262|549264|549265|549270|549271|549781|552209|571846|571849|572547|572557|574712|584406|584624|584819|584869|585055|585625|585773|586007|586050|587099|588473|588653|589498|620894|647094|647095|647096|653379|694252|695790|695791|704552|715910|725798|727659|731208|741313|741315|741316|745017|745020|745022|756394|756395|756396|756397|760713|772049|772051|772052|772054|772055|772057|772058|772059|772060|772064|772069|776438|776441|776474|776476|776477|778432|785846|785847|785848|785852|785854|788200|788201|791851|791852|791853|798732|802222|802223|822140|822141|822338|822339|846692|846693|846694|846695|846696|846697|846698|846699|846700|846701|846702|846703|846704|846705|846706|846707|846708|846709|851765|851767|852267|852806|872542|872543|872544|878971|878972|878973|878974|878975|878976|878977|878978|878979|878980|878981|878982|878983|878984|878985|878986|878987|878988|878989|878990|878991|878992|878993|878994|880635|880636|880637|880638|919790|920389|928660|928661|928662|938384|941205|941206|950459|950460|950461|950462|950463|950464|958438|958439|958440|958441|958442|958443|961024|961883|961884|961885|963179|970244|972288|972289|972290|972291|972292|972293|972294|972295|972296|972297|972298|972299|972300|972301|972302|972303|972304|972305|972306|979937|979938|979939|979940|979941|979942|979943|979944|983467|983559", "text": "Niemann-Pick disease type C1" }, { - "baseId": "17997|18005|18006|18008|18012|23516|23519|34307|179794|179798|187022|187023|187024|187026|187031|191973|260201|321300|330843|330861|330871|339032|341146|341147|346676|346683|346701|346703|346708|347945|347983|358544|358545|410330|480509|487967|495854|497495|572547|621868|654839|654840|905956", + "upstreamId": "17997|18005|18006|18008|18012|23516|23519|34307|179794|179798|187022|187023|187024|187026|187031|191973|260201|321300|330843|330861|330871|339032|341146|341147|346676|346683|346701|346703|346708|347945|347983|358544|358545|410330|480509|487967|495854|497495|572547|621868|654839|654840|905956", "text": "Niemann-Pick disease, type C" }, { - "baseId": "17999", + "upstreamId": "17999", "text": "Niemann-Pick disease, type D" }, { - "baseId": "18001|18002", + "upstreamId": "18001|18002", "text": "Niemann-Pick disease, type C1, adult form" }, { - "baseId": "18003|18004|272074|548561", + "upstreamId": "18003|18004|272074|548561", "text": "Niemann-Pick disease, type C1, juvenile form" }, { - "baseId": "18019|18019|18021|18023|18024|18025|18028|18029|18029|18030|18030|18031|18031|18032|18032|18033|18033|18034|18035|99217|99217|99218|99219|99220|99221|99222|99222|99224|99225|99225|99226|99227|99227|99228|99229|106596|106596|177005|177267|177267|178085|178085|178086|178086|186823|186823|186824|186824|186825|186825|186826|186827|186827|186828|186828|190279|190280|192246|192246|192247|192247|192248|192248|192252|192252|194320|195253|195253|195254|195254|195255|195255|195256|195256|199816|214803|227454|227455|227456|227457|227458|227459|227460|236951|236951|237172|237172|254227|254228|254230|265222|265222|265283|265283|265566|265942|265942|266123|266123|267144|267144|269652|269654|269654|269655|269655|270485|270485|271133|271133|271270|271270|272309|272309|272310|272310|274117|274185|274185|274186|274186|275339|314473|314491|314496|314499|314499|314500|314500|314501|321148|321148|321155|321155|321158|321160|327239|327239|327240|327247|328253|328259|328266|328275|328289|328290|328311|328312|357977|357977|357978|357979|357980|357981|357981|357982|357983|357983|357984|357985|357985|357986|357987|357987|357988|357989|357990|357990|357991|357992|357993|357994|357995|357996|357997|357998|361948|372490|390057|390057|425936|431015|439104|439104|461245|461245|462081|488247|488281|488718|489451|490008|491917|493996|526300|526300|526543|526551|526556|546042|546046|546054|546057|546059|546062|546070|546071|546078|546080|546081|546086|546087|546089|546090|546092|546332|546334|546336|546338|546340|546342|546344|546349|546349|546354|546356|546361|546361|546363|546366|546369|546371|546476|546481|546483|546483|546487|546489|546491|546498|546506|546509|546513|546513|546515|546692|546699|546701|546703|546704|546707|546728|546730|546732|546737|546740|546748|546751|564786|565935|565935|583298|584116|584233|584233|584496|587377|588679|588868|589157|589470|620410|621364|640225|640226|640227|640227|640228|640229|640230|712980|712981|724549|724550|724550|738090|752750|752751|768527|768529|768530|768532|768534|768538|768539|784046|784047|784049|784050|787800|791147|801692|801693|801694|801695|801696|801697|801698|801699|801699|801700|801701|801701|816413|838668|838669|838670|838671|838672|868202|868203|868204|868205|868206|868207|868208|868209|868210|868211|868211|868212|868213|868213|868214|868215|868216|906130|926307|926308|935648|947548|956559|956560|956561|956562|956563|956564|956565|956566|970939|980612|980613|980614|980615|980616|980617|980618|980619|980620|980621|980622|980623|980624|980625|980626|980627|980628|980629|980630|980631|980632|980633|980634|980635|980636|980637|980638|980639|980640|980641|980642|980643|980644|980645|980646|980647|980648|980649|980650|980651", + "upstreamId": "18019|18019|18021|18023|18024|18025|18028|18029|18029|18030|18030|18031|18031|18032|18032|18033|18033|18034|18035|99217|99217|99218|99219|99220|99221|99222|99222|99224|99225|99225|99226|99227|99227|99228|99229|106596|106596|177005|177267|177267|178085|178085|178086|178086|186823|186823|186824|186824|186825|186825|186826|186827|186827|186828|186828|190279|190280|192246|192246|192247|192247|192248|192248|192252|192252|194320|195253|195253|195254|195254|195255|195255|195256|195256|199816|214803|227454|227455|227456|227457|227458|227459|227460|236951|236951|237172|237172|254227|254228|254230|265222|265222|265283|265283|265566|265942|265942|266123|266123|267144|267144|269652|269654|269654|269655|269655|270485|270485|271133|271133|271270|271270|272309|272309|272310|272310|274117|274185|274185|274186|274186|275339|314473|314491|314496|314499|314499|314500|314500|314501|321148|321148|321155|321155|321158|321160|327239|327239|327240|327247|328253|328259|328266|328275|328289|328290|328311|328312|357977|357977|357978|357979|357980|357981|357981|357982|357983|357983|357984|357985|357985|357986|357987|357987|357988|357989|357990|357990|357991|357992|357993|357994|357995|357996|357997|357998|361948|372490|390057|390057|425936|431015|439104|439104|461245|461245|462081|488247|488281|488718|489451|490008|491917|493996|526300|526300|526543|526551|526556|546042|546046|546054|546057|546059|546062|546070|546071|546078|546080|546081|546086|546087|546089|546090|546092|546332|546334|546336|546338|546340|546342|546344|546349|546349|546354|546356|546361|546361|546363|546366|546369|546371|546476|546481|546483|546483|546487|546489|546491|546498|546506|546509|546513|546513|546515|546692|546699|546701|546703|546704|546707|546728|546730|546732|546737|546740|546748|546751|564786|565935|565935|583298|584116|584233|584233|584496|587377|588679|588868|589157|589470|620410|621364|640225|640226|640227|640227|640228|640229|640230|712980|712981|724549|724550|724550|738090|752750|752751|768527|768529|768530|768532|768534|768538|768539|784046|784047|784049|784050|787800|791147|801692|801693|801694|801695|801696|801697|801698|801699|801699|801700|801701|801701|816413|838668|838669|838670|838671|838672|868202|868203|868204|868205|868206|868207|868208|868209|868210|868211|868211|868212|868213|868213|868214|868215|868216|906130|926307|926308|935648|947548|956559|956560|956561|956562|956563|956564|956565|956566|970939|980612|980613|980614|980615|980616|980617|980618|980619|980620|980621|980622|980623|980624|980625|980626|980627|980628|980629|980630|980631|980632|980633|980634|980635|980636|980637|980638|980639|980640|980641|980642|980643|980644|980645|980646|980647|980648|980649|980650|980651", "text": "Niemann-Pick disease, type A" }, { - "baseId": "18019|18021|18023|18026|18027|18028|18029|18030|18031|18032|18033|18034|99217|99219|99222|99225|99227|106596|177005|177267|178086|186824|186825|186827|186828|192246|192247|195254|195255|195256|199815|199816|199817|199818|199819|199820|199841|254227|265222|265942|266123|269654|271133|271270|272309|272310|274185|274208|275339|275438|314491|314496|321155|327239|357979|357983|357985|357986|357987|357990|357991|357994|372490|390057|439104|461245|488247|488281|488336|490008|491917|526551|546070|546338|546361|564786|588679|589470|640227|640229|712981|738090|768539|974500|974501|979016|979017|979018|979019|979020|979021|979022|979023|979024|979025", + "upstreamId": "18019|18021|18023|18026|18027|18028|18029|18030|18031|18032|18033|18034|99217|99219|99222|99225|99227|106596|177005|177267|178086|186824|186825|186827|186828|192246|192247|195254|195255|195256|199815|199816|199817|199818|199819|199820|199841|254227|265222|265942|266123|269654|271133|271270|272309|272310|274185|274208|275339|275438|314491|314496|321155|327239|357979|357983|357985|357986|357987|357990|357991|357994|372490|390057|439104|461245|488247|488281|488336|490008|491917|526551|546070|546338|546361|564786|588679|589470|640227|640229|712981|738090|768539|974500|974501|979016|979017|979018|979019|979020|979021|979022|979023|979024|979025", "text": "Sphingomyelin/cholesterol lipidosis" }, { - "baseId": "18019|18019|18022|18026|18027|18028|18029|18029|18030|18031|18031|18032|18032|18033|18033|99217|99220|99222|99225|99225|99227|99227|99229|106596|177005|177267|177267|178085|178086|178086|186823|186823|186824|186825|186827|186828|190279|190280|192246|192247|192247|192248|192252|194320|195253|195254|195254|195255|195256|199816|236951|237172|254227|254228|265222|265283|265566|265942|266123|267144|269654|269655|270485|271133|271270|272309|272310|274117|274185|274186|275339|314491|314499|314500|321148|321155|327239|357977|357981|357983|357983|357985|357987|357990|372490|390057|439104|461245|462081|488718|489451|490008|491917|493996|526300|526543|526551|526556|546349|546361|546483|546513|564786|565935|584116|584233|584496|587377|588679|588868|589157|589470|621364|640225|640226|640227|640228|640229|640230|712980|712981|724549|724550|738090|752750|752751|768527|768529|768530|768532|768534|768538|768539|784046|784047|784049|784050|787800|801697|801699|801701|838668|838669|838670|838671|838672|868211|868213|906130|926307|926308|935648|947548|956559|956560|956561|956562|956563|956564|956565|956566|980612|980613|980614|980615|980616|980617|980618|980619|980620|980621|980622|980623|980624|980625|980626|980627|980628|980629|980630|980631|980632|980633|980634|980635|980636|980637|980638|980639|980640|980641|980642|980643|980644|980645|980646|980647|980648|980649|980650|980651", + "upstreamId": "18019|18019|18022|18026|18027|18028|18029|18029|18030|18031|18031|18032|18032|18033|18033|99217|99220|99222|99225|99225|99227|99227|99229|106596|177005|177267|177267|178085|178086|178086|186823|186823|186824|186825|186827|186828|190279|190280|192246|192247|192247|192248|192252|194320|195253|195254|195254|195255|195256|199816|236951|237172|254227|254228|265222|265283|265566|265942|266123|267144|269654|269655|270485|271133|271270|272309|272310|274117|274185|274186|275339|314491|314499|314500|321148|321155|327239|357977|357981|357983|357983|357985|357987|357990|372490|390057|439104|461245|462081|488718|489451|490008|491917|493996|526300|526543|526551|526556|546349|546361|546483|546513|564786|565935|584116|584233|584496|587377|588679|588868|589157|589470|621364|640225|640226|640227|640228|640229|640230|712980|712981|724549|724550|738090|752750|752751|768527|768529|768530|768532|768534|768538|768539|784046|784047|784049|784050|787800|801697|801699|801701|838668|838669|838670|838671|838672|868211|868213|906130|926307|926308|935648|947548|956559|956560|956561|956562|956563|956564|956565|956566|980612|980613|980614|980615|980616|980617|980618|980619|980620|980621|980622|980623|980624|980625|980626|980627|980628|980629|980630|980631|980632|980633|980634|980635|980636|980637|980638|980639|980640|980641|980642|980643|980644|980645|980646|980647|980648|980649|980650|980651", "text": "Niemann-Pick disease, type B" }, { - "baseId": "18030|18033", + "upstreamId": "18030|18033", "text": "Niemann-pick disease, intermediate, protracted neurovisceral" }, { - "baseId": "18036|18037|18038|18039|18040|18041|18042|18043|18044|18045|18046|30959|77042|77048|328379|328380|328381|328390|328391|328392|328394|328400|328401|328406|338312|338313|338318|338320|338322|338327|338330|338334|338340|344384|344385|344394|344395|344396|344399|344405|344406|344409|344410|344411|344412|344413|344414|345817|345824|345825|345827|345828|578544|620884|877420|877421|877422|877423|877424|877425|877426|877427|877428|877429|877430|877431|877432|877433|877434|877435|877436|877437|877438|877439|877440|877441|877442|877443|877444|877445|877446|877447|877448|877449|877450|880514|964477", + "upstreamId": "18036|18037|18038|18039|18040|18041|18042|18043|18044|18045|18046|30959|77042|77048|328379|328380|328381|328390|328391|328392|328394|328400|328401|328406|338312|338313|338318|338320|338322|338327|338330|338334|338340|344384|344385|344394|344395|344396|344399|344405|344406|344409|344410|344411|344412|344413|344414|345817|345824|345825|345827|345828|578544|620884|877420|877421|877422|877423|877424|877425|877426|877427|877428|877429|877430|877431|877432|877433|877434|877435|877436|877437|877438|877439|877440|877441|877442|877443|877444|877445|877446|877447|877448|877449|877450|880514|964477", "text": "Epidermolytic palmoplantar keratoderma" }, { - "baseId": "18036|18047|18048", + "upstreamId": "18036|18047|18048", "text": "Palmoplantar keratoderma, epidermolytic, with knuckle pads" }, { - "baseId": "18036|165961|360835|360981", + "upstreamId": "18036|165961|360835|360981", "text": "Palmoplantar keratoderma" }, { - "baseId": "18049|18050|18051|18052|18053|45840|45842|48409|48410|48411|48412|102250|102251|102252|102253|102254|102255|102256|152880|177788|177789|177790|190649|190650|253502|253503|253504|253506|253507|308009|308013|308015|308019|308020|308024|308026|308027|308032|308065|308069|308070|312355|312358|312359|312361|312364|312429|318130|318131|318134|318138|318144|318632|318645|318646|318653|318746|489728|620327|623984|700970|737096|767373|801415|836026|901800|901801|901802|901803|901804|901805|901806|901807|901808|901809|901810|901811|901812|901813|901814|901815|901817|901818|901820|901821|901822|901823|901825|901826|901827|901828|901829|901830|901832|901845|901846|901847|901848|901849|903383|966597|970911", + "upstreamId": "18049|18050|18051|18052|18053|45840|45842|48409|48410|48411|48412|102250|102251|102252|102253|102254|102255|102256|152880|177788|177789|177790|190649|190650|253502|253503|253504|253506|253507|308009|308013|308015|308019|308020|308024|308026|308027|308032|308065|308069|308070|312355|312358|312359|312361|312364|312429|318130|318131|318134|318138|318144|318632|318645|318646|318653|318746|489728|620327|623984|700970|737096|767373|801415|836026|901800|901801|901802|901803|901804|901805|901806|901807|901808|901809|901810|901811|901812|901813|901814|901815|901817|901818|901820|901821|901822|901823|901825|901826|901827|901828|901829|901830|901832|901845|901846|901847|901848|901849|903383|966597|970911", "text": "Cone dystrophy with supernormal rod response" }, { - "baseId": "18054|18056|39637|171804|177353|177514|186020|212352|214071|251316|271205|292180|292181|292184|292189|292191|293616|293619|293626|293627|293628|293629|293630|296934|296936|296941|296942|296946|296947|296954|296955|296956|296957|296958|296959|296961|296962|296968|362073|428269|453712|513267|513268|519717|620146|792743|800353|828723|828724|890064|890065|890066|890067|890068|890069|890070|890071|890072|890073|890074|890075|890076|891748|891749|903531|906237|906238|970783", + "upstreamId": "18054|18056|39637|171804|177353|177514|186020|212352|214071|251316|271205|292180|292181|292184|292189|292191|293616|293619|293626|293627|293628|293629|293630|296934|296936|296941|296942|296946|296947|296954|296955|296956|296957|296958|296959|296961|296962|296968|362073|428269|453712|513267|513268|519717|620146|792743|800353|828723|828724|890064|890065|890066|890067|890068|890069|890070|890071|890072|890073|890074|890075|890076|891748|891749|903531|906237|906238|970783", "text": "Bardet-Biedl syndrome 7" }, { - "baseId": "18055", + "upstreamId": "18055", "text": "Bardet-Biedl syndrome 1/7, digenic" }, { - "baseId": "18057|18058|18059|18060|18061|18062|18062|18064|18064|18066|18068|18069|18072|18072|18073|18074|18075|18077|18080|18081|18082|18083|18083|18084|18086|18087|48348|48348|132784|132785|132786|132787|132788|132789|132790|132791|132792|132794|132794|132795|132796|132796|132797|132798|132798|132799|132800|132801|132801|132802|132803|132803|132804|132804|132805|132806|132807|132808|132809|132810|132811|132812|132812|132813|132814|132815|132815|132817|132818|132819|132820|132821|132821|132822|132823|132823|132824|132824|132825|132825|132826|132827|132827|132828|132828|132829|132830|132831|132832|132833|132834|132834|132836|132837|132838|132839|132840|132841|132842|132842|132843|132844|132844|132845|132846|132847|132847|132848|132849|132849|132850|132851|132852|132854|132855|132856|132857|132857|132858|132859|132860|132861|132862|132864|132865|132865|132866|132867|132868|132869|132869|132870|132870|132871|132871|132871|132872|132872|132873|132874|132875|132876|132876|132877|132878|132879|132880|132881|132882|132883|132884|132885|132886|132887|132888|132889|132890|132891|132892|132893|132894|132895|132897|132897|132898|132899|132900|132902|132903|132904|132904|132905|132906|132907|132908|132909|132910|132911|132912|132913|132913|132914|132915|132916|132917|132918|132919|132920|132920|132921|132922|132923|132925|132926|132928|133903|133904|133905|133906|133907|133908|133909|136433|136443|136444|136454|136462|136463|136473|136484|136498|136505|137341|137342|137342|137343|137344|137345|137346|137347|137349|137350|137351|137354|137355|137356|137357|137358|137359|137360|137362|137363|137364|137364|137366|137367|137368|137369|137370|137371|137371|137372|137373|137374|137375|137376|137376|137377|137377|137378|137379|137379|137380|137380|137381|137382|139442|139443|139444|139445|139446|139447|139448|139449|139450|139451|139452|139453|139454|139455|139456|139457|139458|139459|139459|139460|139461|139462|139463|139464|139465|139466|139468|139469|139470|139471|139472|139473|139474|139475|139476|139477|139478|139479|139480|139481|139482|139483|139484|139485|139486|139487|139488|139489|139490|139492|139494|139495|139496|139497|139498|139499|139500|140132|140133|140135|140136|140137|140138|140139|140140|140144|140145|140146|140147|140148|140149|150475|150476|150480|150483|150484|150527|150532|150537|150546|150565|150570|150571|150581|150593|150603|150610|150611|150619|150621|150624|150626|150629|150630|150630|150634|150639|150640|150663|150695|150696|150745|150750|150751|150831|150837|150851|150896|150896|150897|150897|150903|150929|150931|150932|150947|150947|150952|150952|150954|150955|150965|150969|150985|150998|151003|151006|151029|151030|151039|151058|151061|151066|151076|151087|151103|151103|151118|151118|151118|151130|151146|151159|151160|151161|151188|151200|151202|151204|151210|151228|151232|151234|151236|151248|151257|151260|151260|151270|151271|151273|151275|151293|151296|151305|151310|151348|151352|151358|151361|151363|151367|151386|151390|151400|151410|151414|151418|151428|151435|151440|151448|151456|151464|151466|151471|151474|151477|151477|151479|151480|151489|151514|151536|151539|151554|151560|151598|151601|151623|151646|151653|151654|151655|151658|151672|151682|151690|151706|151727|151753|151757|151760|151760|151765|151769|151771|151785|151803|151804|151810|151818|151821|151840|151840|151842|151844|151854|151855|151861|151876|151878|151881|151896|151901|151902|151908|151925|151938|151957|151963|151964|151968|152036|152053|152059|152062|152068|152069|152073|152092|152121|152129|152132|152147|152147|152148|152160|152174|152186|152201|152212|152215|152217|152221|152231|152236|152246|152249|152255|152255|152257|152281|152289|152396|152414|152417|152423|152440|152463|152505|152517|152531|152607|152610|152622|152627|152647|152668|152680|152706|152726|152730|152739|180376|180378|180379|180381|180382|180382|180383|180384|180385|180386|180387|180388|180389|180390|180391|180391|180394|180395|180396|180397|180399|180400|180401|180402|180403|180405|180406|180407|180408|180409|180411|180411|180412|180413|180415|180416|180418|180419|180421|180422|180423|180424|180427|180428|180429|180431|180432|180433|180433|180434|180436|180437|180439|180440|180442|180443|180444|180447|180448|180449|180450|180451|180452|180454|180455|180457|180458|180459|180461|180462|180463|180464|180464|180465|180465|180466|180467|180468|180469|180471|180472|180474|180475|180476|180478|180479|180480|180482|180483|180483|180484|180486|180487|180489|180490|180491|180491|180493|180494|180494|180495|180498|180499|180500|180501|180502|180503|180504|180505|180507|180508|180509|180510|180511|180513|180514|180515|180516|180518|180519|180519|180521|180522|180522|180523|180524|180525|180526|180528|180529|180531|180532|180533|180534|180535|180538|181215|183067|183068|183070|183071|183073|183074|183075|183076|183077|183078|183079|183080|183081|183082|183083|183084|183085|183085|183086|183087|183088|183089|183090|183091|183092|183094|183095|183097|183098|183099|183100|183101|183103|183104|183104|183106|183107|183108|183109|183111|183112|183113|183113|183117|183118|183119|183120|183121|183122|183123|183124|183126|183127|183128|183129|183130|183132|183135|183136|183137|183138|183139|183140|183141|183145|183146|183147|183151|183152|183153|183154|183155|183156|183157|183158|183159|183160|183163|183164|183165|183166|183167|183169|183170|183171|183172|183173|183174|183175|183176|183176|183177|183179|183180|183181|183182|183183|183184|183185|183186|183187|183188|183189|183190|183192|183193|183194|183194|183196|183197|183198|183199|183200|183201|183202|183202|183203|183204|183205|183206|183207|183208|183209|183210|183212|183213|183214|183215|183215|183216|183217|183218|183219|183221|183222|183224|183225|183226|183227|183228|183230|183230|183231|183232|183233|183234|183235|183236|183237|183238|183239|183241|183242|183243|183244|183245|183245|183246|183248|183249|183250|183251|183252|183253|183254|183257|183258|183259|183260|183260|183265|183266|183267|183268|183269|183270|183271|183272|183273|183274|183275|183276|183277|183278|183280|183281|183282|183283|183284|183286|183287|183288|183289|183290|183292|183293|183294|183295|183297|183298|183299|183300|183301|183303|183304|183305|183306|183307|183308|183311|183315|183316|183318|183319|183320|183321|183322|183324|183326|183328|183329|183330|183332|183333|183334|183335|183336|183337|183338|183339|183340|183341|183342|183343|183344|183345|183346|183347|183348|183349|183351|183352|183353|183356|183357|183358|183359|183360|183360|183361|183362|183363|183364|183365|183366|183368|183369|183370|183371|183372|183373|183374|183375|183376|183377|183378|183379|183380|183381|183382|183383|183384|183384|183385|183386|183387|183388|183389|183390|183391|183391|183392|183392|183394|183395|183398|183399|183400|183401|183401|183402|183406|183407|183408|183409|183411|183412|183413|183414|183415|183416|183418|183419|183420|183421|183422|183423|183426|183428|183430|183431|183432|183433|183434|183435|183436|183437|183438|183439|183440|183441|183442|183445|183446|183448|183449|183451|183453|183455|183456|183458|183459|183460|183461|183462|183463|183464|183465|183466|183467|183467|183468|183470|183471|183471|183472|183473|183474|183476|186132|186133|186134|186135|186136|186137|186138|186139|186141|186141|186142|186143|186143|186144|186145|186146|186147|186148|186150|186796|186797|186798|186799|186800|186801|186802|186803|186804|186805|196445|205207|205766|212834|212835|212836|212837|212838|212839|212842|212843|212844|212845|212846|212847|212848|212849|212850|212851|212851|212852|212853|212854|212855|212856|212857|212858|212861|212862|212863|212864|212865|212866|212867|212868|212869|212870|212871|212872|212873|212874|212875|212876|212877|212878|212879|212880|212881|212882|212883|212884|212886|212887|212888|212889|212890|212891|212892|212893|212894|212895|212896|212897|212898|212899|212900|212902|212903|212904|212905|212906|212907|212908|212909|212910|212912|212913|212914|212915|212917|214914|222008|222009|222020|222021|222022|222023|222024|222025|222026|222027|222028|222029|222030|222031|222032|222033|222034|222035|222036|222036|222037|222037|222038|222040|222042|222043|222044|222045|222046|222047|222048|222049|222050|222051|222052|222053|222054|222055|222056|222057|222058|222059|222059|222060|222061|222063|222064|222065|222066|222067|222068|222069|222070|222071|222072|222073|222074|222075|222076|222077|222078|222079|222080|222081|222083|222084|222085|222086|222088|222089|222090|222091|222092|222094|222095|222096|222097|222098|222099|222100|222101|222102|222103|222103|222104|222106|222107|222108|222109|222110|222111|222112|222113|222114|222115|222116|222117|222118|222119|222120|222121|222122|222123|222124|222125|222126|222127|222128|222129|222130|222131|222132|222133|223599|226343|226344|227920|231791|231793|231795|231796|231797|231798|233882|233885|233886|233887|233888|233890|233894|233895|233896|233898|233899|233900|233903|233905|233906|233907|233908|233909|233913|233915|233916|233919|233921|233922|233925|233930|233931|233933|233935|233936|233937|233938|233939|233940|233941|233942|233943|233944|233945|233947|233948|233949|233951|233952|233953|233954|233957|233959|233961|233962|233963|233966|233967|233968|233969|233970|233971|233972|233973|233974|233975|233976|233978|233979|233980|233982|233984|233987|233988|233989|233990|233991|233993|233994|233995|234002|234003|234004|234005|234006|234008|234008|234010|234014|234015|234015|234016|234017|234018|234020|234021|234022|234024|234026|234028|234029|234030|234032|234034|234035|234036|234037|234038|234039|234040|234041|234042|234043|234044|234045|234046|234049|234050|234051|234052|234054|234055|234057|234058|234059|234060|234062|234063|234064|234065|234066|234067|234068|234069|234070|234071|234072|234074|234075|234076|234077|234078|234079|234080|234082|234083|234085|234086|234087|234088|234089|234091|234093|234095|234096|234097|234099|234099|234100|234104|234105|234106|234107|234108|234110|234111|234112|234116|234118|234119|234120|234122|234123|234124|234125|234126|234127|234129|234130|234131|234132|234133|234134|234136|234138|234139|234140|234141|234142|234143|234144|234145|234147|234149|234150|234151|234152|234155|234157|234158|234161|234162|234163|234165|234166|234167|234168|234169|234170|234171|234174|234176|234177|234179|234181|234184|234185|234187|234188|234190|234194|234195|234196|234197|234197|234198|234200|234205|234206|234208|234209|234211|234212|234213|234214|234215|234216|234217|234218|234219|234220|234222|234223|234227|234228|234229|234231|234232|234234|234235|234236|234238|234239|234241|234242|234243|234244|234245|234246|234247|234248|234249|234250|234251|234252|234253|234254|234255|234256|234258|234259|234261|234262|234263|234264|234265|234266|234267|234268|234269|234270|234272|234274|234275|234277|234278|234280|234281|234282|234284|234284|234288|234289|234290|234291|234292|234293|234294|234298|234298|234299|234300|234301|234302|234306|234307|234309|234310|234311|234313|234314|234315|234316|234317|234318|234319|234320|234321|234321|234323|234324|234325|234326|234329|234330|234331|234332|234336|234338|234339|234341|234342|234343|234343|234347|234348|234349|234350|234351|234353|234353|234354|234355|234357|234358|234359|234360|234361|234362|234364|234366|234368|234369|234370|234372|234373|234374|234376|234377|234378|234379|234380|234382|234384|234385|234387|234388|234390|234391|234392|234394|234395|234398|234399|234400|234403|234404|234405|234406|234407|234409|234410|234411|234412|234413|234414|234415|234416|234418|234420|234421|234422|234426|234427|234428|234429|234430|234432|234433|234434|237325|240904|240905|240906|240907|240909|240911|240912|240913|240914|240915|240916|240917|240918|240919|240920|240921|240922|240923|240924|240926|240927|240928|240929|240930|240931|240932|240933|240934|240935|240936|240937|240939|240940|240941|240943|240944|240945|240946|240947|240948|240949|240950|240951|240953|240954|240955|240956|240957|240958|240959|240960|240961|240962|240963|240964|240964|240965|240966|240969|240970|240971|240972|240973|240974|240975|240976|240977|240978|240979|240980|240981|240981|240982|240983|240984|240985|240986|240987|240988|240989|240990|240991|240993|240994|240995|240996|240997|240998|240999|241000|241002|241003|241004|241005|241006|241008|241009|241010|241011|241013|241014|241015|241016|241017|241018|241019|241020|241021|241022|241023|241024|241025|241026|241027|241028|241029|241030|241031|241032|241033|241034|241036|241037|244572|244573|244577|244578|244579|244580|244581|244583|244585|244586|244587|244589|244593|244594|244595|244596|244599|244601|244604|244605|244606|244607|244609|244610|244612|244614|244615|244617|244619|244621|244622|244622|244623|244625|244626|244627|244628|244629|244631|244632|244634|244636|244640|244641|244643|244644|244645|244647|244649|244651|244652|244654|244657|244658|248500|248507|248508|253988|259261|259948|259949|259955|259956|259957|259963|259967|259970|259971|259971|259973|262601|262602|262603|262604|262605|262606|262607|262608|262609|262610|262611|262613|262614|262615|262616|262619|262621|262622|262626|262628|262629|262630|262631|262633|262635|264392|264571|268678|312240|312244|312246|312249|312250|312252|312253|312255|312256|312258|312259|312262|312263|312267|312268|312272|318025|318027|318028|318041|318042|318044|318057|318057|318058|318064|318065|318066|318072|318076|318078|318083|318094|318095|318102|318103|318108|318109|318111|324058|324071|324073|324088|324090|324093|324094|324107|324110|324111|324122|324124|324125|324126|324130|324136|324138|324930|324934|324936|324937|324949|324952|324953|324956|324957|324958|324962|324972|357875|357876|357877|357878|357879|357880|357881|357882|357883|357884|357885|357886|357887|357888|357889|357890|357891|357892|357893|357894|357895|357896|357897|357898|357899|357900|357901|357902|357903|357904|357905|357906|357907|357908|357909|357910|357911|357912|357913|357914|357915|357916|357917|357918|357919|357920|357921|357922|357923|357924|357925|357926|357927|357928|357929|360925|361425|361492|361946|361947|371037|371041|371046|371059|371084|371085|371093|371104|371105|371143|371151|371153|371164|371174|371176|371189|371198|371205|371210|371232|371737|371741|371769|371777|371788|371804|371807|371819|371862|371869|371876|371885|371908|371975|371977|371982|372000|372001|372006|372007|372029|372030|372042|372043|372049|372050|372058|372067|372075|372079|372105|372110|372130|372132|372135|372144|373672|373695|373709|373734|373737|373739|373740|373743|373747|373767|373773|373793|373833|373843|373866|397550|397594|397605|397612|397614|397623|397624|397626|397628|397632|397636|397643|397644|397645|397656|397661|397665|397666|397669|397676|397687|397692|397696|397701|397705|397706|397707|397709|397718|397722|397724|397727|397730|397738|397742|397743|397745|397746|397747|397750|397754|397755|397758|397766|397767|397769|397770|397771|397772|397774|397781|397782|397784|397785|397786|397788|397789|397791|397792|397796|397797|397798|397800|397802|397803|397804|397806|397808|397809|397811|397812|397816|397817|397819|397820|397821|397822|397823|397826|397827|397829|397830|397831|397833|397834|397838|397840|397842|397844|397845|397848|397849|397852|397854|397855|397856|397859|397861|397861|397863|397864|397865|397866|397867|397869|397870|397871|397872|397873|397874|397875|397877|397878|397879|397882|397883|397884|397887|397887|397889|397891|397893|397894|397895|397896|397897|397898|397899|397900|397905|397906|397907|397908|397910|397913|397914|397915|397916|397919|397920|397920|397921|397922|397924|397925|397926|397928|397936|397938|397939|397941|397942|397943|397944|397945|397947|397949|397950|397952|397956|397957|397960|397961|397962|397963|397965|397967|397968|397969|397970|397972|397974|397982|397987|397988|397990|397993|397994|397995|397997|397999|398000|398001|398002|398003|398004|398011|398012|398015|398018|398023|398025|398028|398030|398032|398037|398038|398039|398041|398043|398049|398051|398054|398056|398058|398059|398064|398067|398077|398082|398085|398087|398089|398091|398093|398095|398097|398105|398108|398110|398113|398115|398116|398117|398121|398133|398134|398137|398138|398141|398143|398145|398150|398152|398154|398155|398158|398159|398161|398162|398163|398166|398168|398170|398171|398173|398174|398175|398178|398182|398183|398186|398188|398190|398191|398192|398193|398195|398201|398204|398209|398210|398211|398214|398217|398220|398223|398225|398228|398231|398233|398236|398237|398239|398241|398243|398244|398245|398246|398248|398252|398253|398255|398258|398260|398261|398270|398271|398279|398281|398282|398285|398286|398287|398288|398289|398290|398292|398293|398295|398296|398297|398298|398301|398302|398304|398308|398310|398311|398313|398314|398323|398325|398326|398328|398329|398331|398333|398334|398335|398336|398340|398341|398343|398353|398356|398358|398361|398362|398364|398366|398367|398368|398369|398370|398371|398374|398375|398377|398378|398379|398382|398385|398400|398403|398410|398412|398429|398430|398433|398434|398436|398439|398444|398445|398447|398450|398452|398454|398464|398468|398470|398471|398474|398479|398484|398491|398493|398496|398499|398503|404599|408040|408041|408042|408043|408044|408047|408049|408050|408051|408054|408056|408059|408060|408062|408063|408064|408066|408067|408068|408072|408078|408082|408085|408086|408087|408089|408090|408091|408095|408096|408097|408098|408099|408100|408101|408102|408104|408106|408107|408108|408109|408110|408111|408114|408115|408116|408117|408121|408122|408126|408127|408133|408138|408138|408139|408141|408142|408143|408144|408147|408148|408153|408154|408155|408157|408158|408160|408163|408165|408166|408167|408168|408169|408172|408173|408174|408175|408178|408179|408182|408185|408189|408190|408191|408196|408199|408200|408202|408204|408205|408207|408210|408216|408221|408224|408227|408229|408230|408231|408232|408234|408235|408236|408242|408243|408244|408246|408247|408248|408249|408251|408254|408255|408257|408259|408260|408261|408262|408264|408265|413181|413325|413328|415247|421066|421068|421069|421073|421076|421077|421079|421079|421080|421081|421083|421084|421089|421820|421821|429167|429168|433369|437910|444705|444706|444708|444710|444711|444712|444716|444717|444719|460411|460413|460422|460432|460438|460445|460448|460450|460455|460457|460473|460474|460475|460476|460478|460479|460480|460483|460484|460485|460487|460490|460491|460494|460495|460496|460497|460499|460501|460510|460511|460513|460516|460517|460518|460519|460521|460523|460524|460525|460527|460528|460529|460531|460533|460536|460537|460538|460540|460543|460544|460546|460551|460553|460556|460557|460560|460561|460562|460566|460567|460569|460570|460572|460573|460575|460577|460578|460579|460581|460582|460584|460585|460586|460588|460589|460590|460593|460595|460597|460599|460600|460602|460603|460604|460605|460611|460614|460616|460618|460620|460624|460625|460626|460628|460630|460632|460637|460641|460644|460645|460647|460648|460650|460652|460654|460656|460657|460660|460663|460665|460667|460668|460672|460673|460674|460675|460676|460678|460679|460680|460681|460683|460684|460687|460689|460690|460692|460693|460694|460696|460698|460702|460705|460706|460707|460708|460709|460711|460712|460713|460714|460718|460720|460721|460725|460728|460730|460732|460734|460735|460736|460737|460739|460740|460743|460744|460745|460746|460747|460749|460750|460751|460752|460754|460755|460758|460760|460761|460763|460764|460767|460768|460770|460771|460773|460775|460776|460777|460779|460780|460781|460782|460783|460785|460787|460788|460789|460791|460792|460794|460795|460798|460799|460800|460801|460803|460804|460805|460806|460807|460808|460809|460810|460811|460812|460813|460814|460815|460816|460819|460820|460821|460822|460823|460824|460825|460826|460827|460828|460829|460830|460831|460832|460833|460834|460835|460837|460839|460841|460842|460843|460844|460845|460846|460847|460848|460849|460850|460852|460853|460854|460855|460856|460859|460860|460861|460864|460866|460868|460869|460871|460878|460891|460892|460901|460903|460907|460909|460912|460918|460921|460925|460928|460937|460940|460947|460952|460953|460956|460962|460970|460975|460976|460978|460980|460981|460983|460992|460995|460997|461014|461018|461025|461028|461030|461036|461037|461042|461048|461055|461057|461060|461067|461069|461076|461076|461079|461085|461088|461097|461099|461102|461104|461114|461123|461126|461127|461135|461143|461144|461147|461155|461159|461160|461161|461208|461211|461223|461226|461230|461233|461239|461240|461246|461247|461250|461258|461270|461272|461279|461289|461289|461291|461293|461296|461307|461309|461311|461312|461313|461320|461325|461329|461330|461334|461337|461341|461344|461347|461351|461362|461365|461370|461372|461378|461380|461382|461387|461390|461393|461401|461404|461405|461408|461416|461420|461425|461429|461437|461441|461446|461447|461452|461454|461457|461461|461465|461469|461472|461473|461478|461481|461483|461488|461490|461493|461500|461506|461507|461516|461517|461524|461525|461528|461529|461534|461536|461538|461539|461542|461543|461549|461553|461555|461557|461561|461563|461565|461568|461572|461578|461580|461593|461595|461597|461599|461603|461604|461612|461613|461615|461637|461641|461643|461645|461648|461649|475277|475278|475284|475288|475291|475316|475321|475324|475326|475335|475337|475342|475348|475350|475352|475355|475366|475379|475380|475384|475385|475389|475393|475394|475403|475405|475408|475410|475411|475413|475414|475428|475429|475434|475435|475439|475443|475444|475454|475457|475460|475461|475463|475464|475465|475466|475467|475468|475469|475472|475478|475479|475481|475483|475485|475486|475495|475500|475503|475505|475506|475510|475520|475522|475524|475527|475528|475530|475533|475545|475546|475547|475548|475552|475553|475555|475561|475562|475564|475571|475572|475573|475574|475577|475580|475583|475585|475589|475592|475594|475595|475597|475600|475601|475604|475612|475614|475619|475628|475632|475633|475634|475635|475640|475645|475650|475656|475657|475660|475661|475663|475667|475668|475670|475671|475672|475673|475675|475676|475677|475678|475682|475683|475685|475687|475688|475690|475691|475692|475693|475698|475699|475701|475703|475705|475708|475711|475712|475714|475715|475718|475720|475721|475723|475726|475729|475730|475731|475733|475734|475736|475739|475742|475744|475745|475748|475749|475752|475753|475755|475757|475758|475759|475760|475761|475767|475772|475777|475778|475779|475783|475787|475787|475791|475792|475793|475801|475803|475805|475806|475808|475809|475811|475814|475816|475820|475821|475822|475823|475825|475827|475829|475831|475832|475839|475840|475841|475842|475845|475848|475852|475853|475854|475858|475861|475863|475870|475873|475874|475876|475878|475879|475880|475882|475884|475886|475889|475891|475893|475896|475901|475902|475908|475913|475916|475917|475918|475920|475921|475922|475923|475924|475925|475926|475927|475932|475937|475938|475940|475941|475943|475946|475950|475951|475952|475953|475957|475960|475966|475968|475973|475978|475982|475984|475987|475988|476001|476007|476011|476013|476023|476030|476033|476034|476036|476049|476050|476053|476054|476057|476060|476066|476070|476072|476073|476075|476076|476077|476078|476079|476083|476084|476089|476089|476092|476094|476097|476102|476110|476114|476116|476118|476121|476126|476128|476135|476142|476150|476152|476157|476161|476164|476167|476168|476169|476178|476181|476185|476187|476190|476196|476198|476203|476206|476207|476212|476217|476222|476223|476231|476237|476240|476258|476264|476267|476278|476293|476297|476304|476310|476314|476318|476325|476329|476337|476341|476344|476366|476368|476370|476383|476385|476392|476395|476403|476405|476419|480499|480500|480501|480502|480503|480504|480505|482713|482749|482753|482755|482761|482763|482767|482775|482780|482786|482787|482808|482809|482813|482821|482833|482834|482836|482837|482838|482842|482852|482857|482859|482864|482875|482876|482879|482880|482882|482892|484133|484137|484159|484161|484178|484180|484181|484196|484200|484201|484204|484210|484214|484216|484227|484230|484233|484249|484277|484284|484293|484296|484300|484301|484302|484320|484332|484337|484343|484347|484348|484354|484375|484380|484386|484388|484390|484391|484405|484408|484410|484413|484415|484430|484435|484437|484444|484447|484448|484449|484450|484452|484459|484461|484465|484474|484490|484493|484495|484496|484499|484512|484513|484515|484517|484518|484536|484558|484563|484580|484583|484592|484609|484610|484615|484630|484631|484643|484666|484698|484709|487427|487476|487481|487484|503048|503091|503375|503380|503383|503423|503602|503617|503923|503933|503937|503977|512846|525584|525591|525622|525625|525628|525630|525631|525634|525636|525638|525649|525650|525656|525658|525660|525663|525670|525672|525679|525691|525695|525696|525698|525702|525703|525711|525715|525721|525723|525724|525726|525728|525730|525735|525736|525737|525738|525741|525746|525747|525749|525750|525751|525752|525758|525760|525761|525762|525763|525766|525771|525773|525774|525776|525777|525778|525780|525783|525784|525791|525794|525795|525797|525801|525803|525806|525808|525809|525812|525815|525817|525818|525821|525826|525829|525831|525833|525834|525835|525836|525837|525838|525839|525840|525842|525847|525848|525850|525853|525854|525856|525857|525859|525860|525862|525863|525864|525865|525866|525867|525869|525875|525877|525880|525881|525884|525885|525888|525889|525892|525893|525894|525895|525896|525899|525900|525901|525904|525906|525908|525909|525910|525913|525914|525915|525916|525917|525920|525925|525926|525927|525930|525931|525932|525934|525936|525938|525939|525942|525944|525946|525947|525951|525956|525957|525959|525960|525962|525963|525965|525966|525967|525973|525975|525976|525979|525983|525985|525988|525989|525990|525992|525998|525999|526002|526009|526010|526020|526028|526030|526032|526033|526036|526042|526043|526044|526046|526049|526051|526053|526054|526056|526057|526058|526060|526061|526062|526063|526068|526069|526075|526080|526081|526084|526085|526087|526093|526097|526100|526108|526111|526114|526121|526123|526129|526131|526134|526136|526139|526142|526146|526151|526165|526167|526176|526179|526187|526188|526198|526200|526204|526205|526208|526209|526225|526231|526233|526241|526244|526251|526253|526257|526262|526269|526271|526274|526276|526280|526287|526289|526301|526302|526304|526307|526309|526311|526314|526317|526322|526340|526343|526348|526349|526351|526355|526356|526366|526377|536377|536378|536383|536390|536394|536395|537176|545333|545339|545342|545348|545350|545353|545365|545370|545373|545375|545396|545397|545682|545683|545687|545693|545696|545697|545707|545709|545711|545712|545713|545714|545715|545716|545718|545719|545720|545721|545724|545726|545728|545730|545732|545734|545735|545738|545740|545743|545745|545753|545766|545768|545770|545773|545774|545789|545792|545804|545809|545813|545815|545967|545967|545975|545980|545982|545986|545989|545994|546007|546009|546018|546024|546036|546038|550264|550663|551877|551884|552148|552290|564087|564088|564090|564116|564119|564124|564125|564127|564129|564134|564136|564139|564143|564145|564147|564149|564151|564153|564155|564163|564165|564167|564170|564171|564173|564182|564184|564186|564188|564190|564191|564192|564196|564198|564200|564202|564208|564211|564217|564220|564232|564233|564235|564237|564239|564245|564247|564250|564251|564254|564255|564257|564262|564263|564267|564273|564274|564282|564283|564284|564294|564300|564302|564303|564304|564312|564315|564321|564325|564326|564330|564331|564333|564334|564338|564345|564350|564353|564354|564356|564357|564361|564370|564370|564372|564376|564982|564989|564990|564998|565054|565061|565062|565064|565065|565070|565080|565085|565086|565092|565094|565096|565097|565099|565103|565104|565109|565115|565116|565118|565123|565126|565129|565130|565132|565156|565173|565178|565179|565183|565187|565189|565190|565193|565206|565217|565218|565223|565238|565242|565246|565251|565257|565258|565258|565275|565276|565278|565280|565281|565291|565293|565294|565295|565301|565302|565315|565316|565318|565330|565344|565345|565346|565350|565363|565367|565371|565373|565378|565380|565387|565388|565393|565395|565401|565403|565405|565412|565414|565415|565423|565427|565431|565439|565451|565452|565455|565456|565464|565466|565470|565471|566702|566714|566749|566759|566762|566764|566770|566772|566774|566776|566778|566782|566785|566787|566789|566791|566803|566804|566806|566807|566809|566813|566818|566820|566822|566826|566834|566837|566838|566843|566844|566846|566848|566853|566855|566857|566865|566868|566870|566873|566881|566883|566888|566889|566891|566894|566896|566897|566899|566900|566906|566908|566910|566920|566922|566925|566927|566929|566939|566942|566944|566945|566949|566953|566955|566957|566967|566969|566971|566972|566984|566988|566989|566997|566998|567001|567006|567008|567009|567011|567023|567026|567027|567032|567034|567037|569932|569933|569971|569976|569980|569982|569986|569988|569990|569992|569993|569993|569999|570002|570003|570006|570011|570012|570023|570026|570031|570032|570034|570046|570047|570049|570051|570054|570056|570057|570060|570065|570068|570084|570090|570093|570094|570096|570097|570098|570104|570109|570113|570117|570122|570123|570126|570132|570141|570142|570165|570168|570170|570182|570183|570185|570191|570196|570199|570202|570204|570207|570208|570217|570235|570236|570241|570242|570247|570255|570257|570259|570265|570271|570282|570285|570288|570289|575559|575562|575571|575573|575812|575813|575814|575815|575816|575817|575818|575819|575820|575821|575822|575823|575824|575825|575826|575827|575828|575829|575830|575831|575832|575833|575835|575836|575837|575838|575839|575840|577167|609170|609171|609781|611740|614353|615925|617619|617625|617628|617631|617633|617637|617641|617653|617655|617659|617661|617671|617676|617696|617697|617698|617708|617710|617715|617717|617723|617724|617727|617730|617732|617738|617741|617752|617761|617764|617767|617773|617776|617787|617795|617796|617797|617799|617800|617802|617803|617806|617808|617809|617811|617817|617820|617822|617824|617827|617828|617831|617833|617841|617842|617844|619350|619363|619379|619406|619429|619456|621326|621327|621329|621330|621331|621338|621798|621799|621800|621802|621804|622397|624417|624418|624792|639367|639368|639369|639370|639371|639372|639373|639374|639375|639376|639377|639378|639379|639380|639381|639382|639383|639384|639385|639386|639387|639388|639389|639390|639391|639392|639393|639394|639395|639396|639397|639398|639399|639400|639401|639402|639403|639404|639405|639406|639407|639408|639409|639410|639411|639412|639413|639414|639415|639416|639417|639418|639419|639420|639421|639422|639423|639424|639425|639426|639427|639428|639429|639430|639431|639432|639433|639434|639435|639436|639437|639438|639439|639440|639441|639442|639443|639444|639445|639446|639447|639448|639449|639450|639451|639452|639453|639454|639455|639456|639457|639458|639459|639460|639461|639462|639463|639464|639465|639466|639467|639468|639469|639470|639471|639472|639473|639474|639475|639476|639477|639478|639479|639480|639481|639482|639483|639484|639485|639486|639487|639488|639489|639490|639491|639492|639493|639494|639495|639496|639497|639498|639499|639500|639501|639502|639503|639504|639505|639506|639507|639508|639509|639510|639511|639512|639513|639514|639515|639516|639517|639518|639519|639520|639521|639522|639523|639524|639525|639526|639527|639528|639529|639530|639531|639532|639533|639534|639535|639536|639537|639538|639539|639540|639541|639542|639543|639544|639545|639546|639547|639548|639549|639550|639551|639552|639553|639554|639555|639556|639557|639558|639559|639560|639561|639562|639563|639564|639565|639566|639567|639568|639569|639570|639571|639572|639573|639574|639575|639576|639577|639578|639579|639580|639581|639582|639583|639584|639585|639586|639587|639588|639589|639590|639591|639592|639593|639594|639595|639596|639597|639598|639599|639600|639601|639602|639603|639604|639605|639606|639607|639608|639609|639610|639611|639612|639613|639614|639615|639616|639617|639618|639619|639620|639621|639622|639623|639624|639625|639626|639627|639628|639629|639630|639631|639632|639633|639634|639635|639636|639637|639638|639639|639640|639641|639642|639643|639644|639645|639646|639647|639648|639649|639650|639651|639652|639653|639654|639655|639656|639657|639658|639659|639660|639661|639662|639663|639664|639665|639666|639667|639668|639669|639670|639671|639672|639673|639674|639675|639676|639677|639678|639679|639680|639681|639682|639683|639684|639685|652022|652030|652035|652036|652044|652046|652049|652059|652066|652068|652069|652071|652073|652074|652075|652078|652079|652081|652082|652083|652087|652090|652092|652093|652106|652111|652114|652120|652123|652133|652134|652136|652137|652148|652152|652176|652178|652181|652185|652229|652236|652237|652243|652244|652251|652254|652262|652273|652275|652276|652280|652290|652294|652302|652304|652357|652361|652372|652373|652400|652405|652411|652412|652415|652422|652441|652442|652444|652450|652459|652477|664902|665769|672038|682728|684221|687705|692921|692923|692924|692925|692926|695493|724183|730724|744544|752402|752404|752405|752411|752416|759908|768119|768124|768126|768128|768130|768146|768151|768157|768158|768163|768169|768170|768171|768173|768174|768175|768177|768178|768182|775593|775594|775613|775616|775740|775743|775747|775749|775762|775773|777895|783818|783821|783822|783826|783827|783833|783836|783837|783841|783844|783847|783848|783851|783852|783853|783854|783856|783858|783861|783862|787695|787697|787718|787888|787899|791026|791027|791028|791029|791030|791031|791032|791033|791034|791035|791036|791037|791038|791039|791040|791041|791042|791043|791044|791045|791046|791047|791048|791049|791050|791051|791052|791053|791054|791055|791056|791057|791058|791059|791060|791061|791062|791063|791064|791065|791066|791067|791068|791069|791070|791071|791072|791073|791074|791075|791076|791077|791078|791079|791080|791081|791082|791083|791084|791085|791086|791087|791088|791089|791090|791091|791092|791093|791094|791095|791096|791097|791098|791099|791100|791101|792780|792780|796512|798633|798634|798635|810154|810156|810159|810165|810167|810172|810173|810189|810218|810222|810244|810246|810246|810247|810250|810254|810256|810267|810268|810283|810289|810295|810298|810299|810300|810309|810313|810319|810323|810328|810333|810342|810348|810354|810358|810362|810373|810379|810396|810405|810408|810409|810412|810415|810417|810424|810442|810446|810448|810453|810460|810461|810462|810464|810467|810471|810479|810485|810486|810489|810502|810506|810510|810518|810531|810532|810537|810540|810541|810545|810546|810547|810550|810555|810564|810567|810576|810580|810588|810595|810597|810604|810608|810617|810624|810641|810642|810659|810660|810665|810670|810673|810683|810684|810690|810692|810694|810697|810701|810720|810725|810726|810740|810752|815470|815475|815479|815480|815481|815484|815492|815494|815501|820289|820291|820292|820293|820294|820295|820296|820297|820298|820299|820300|820301|820302|820303|820304|820305|820306|820307|820309|820310|820311|820312|820313|820314|820315|820316|820317|820318|820319|820320|820321|820322|820323|820324|820325|820326|820327|820328|822052|837599|837600|837601|837602|837603|837604|837605|837606|837607|837608|837609|837610|837611|837612|837613|837614|837615|837616|837617|837618|837619|837620|837621|837622|837623|837624|837625|837626|837627|837628|837629|837630|837631|837632|837633|837634|837635|837636|837637|837638|837639|837640|837641|837642|837643|837644|837645|837646|837647|837648|837649|837650|837651|837652|837653|837654|837655|837656|837657|837658|837659|837660|837661|837662|837663|837664|837665|837666|837667|837668|837669|837670|837671|837672|837673|837674|837675|837676|837677|837678|837679|837680|837681|837682|837683|837684|837685|837686|837687|837688|837689|837690|837691|837692|837693|837694|837695|837696|837697|837698|837699|837700|837701|837702|837703|837704|837705|837706|837707|837708|837709|837710|837711|837712|837713|837714|837715|837716|837717|837718|837719|837720|837721|837722|837723|837724|837725|837726|837727|837728|837729|837730|837731|837732|837733|837734|837735|837736|837737|837738|837739|837740|837741|837742|837743|837744|837745|837746|837747|837748|837749|837750|837751|837752|837753|837754|837755|837756|837757|837758|837759|837760|837761|837762|837763|837764|837765|837766|837767|837768|837769|837770|837771|837772|837773|837774|837775|837776|837777|837778|837779|837780|837781|837782|837783|837784|837785|837786|837787|837788|837789|837790|837791|837792|837793|837794|837795|837796|837797|837798|837799|837800|837801|837802|837803|837804|837805|837806|837807|837808|837809|837810|837811|837812|837813|837814|837815|837816|837817|837818|837819|837820|837821|837822|837823|837824|837825|837826|837827|837828|837829|837830|837831|837832|837833|837834|837835|837836|837837|837838|837839|837840|837841|837842|837843|837844|837845|837846|837847|837848|837849|837850|837851|837852|837853|837854|837855|837856|837857|837858|837859|837860|837861|837862|837863|837864|837865|837866|837867|837868|837869|837870|837871|837872|837873|837874|837875|837876|837877|837878|837879|837880|837881|837882|837883|837884|837885|837886|837887|837888|837889|837890|837891|837892|837893|837894|837895|837896|837897|837898|837899|837900|837901|837902|837903|837904|837905|837906|837907|837908|837909|837910|837911|837912|837913|837914|837915|837916|837917|837918|837919|837920|837921|837922|837923|837924|837925|837926|837927|837928|837929|837930|837931|837932|837933|837934|837935|837936|837937|851401|851403|851405|851407|851409|851411|851413|851415|851417|851419|851798|851800|851802|851804|851806|851808|851810|851812|851814|851816|851818|852293|852299|852302|852303|852304|852305|852309|852314|852315|852320|852321|852326|852566|852567|852569|852573|852575|852576|852577|852581|852583|852584|852585|852587|852591|852593|852594|852595|852597|852601|858406|858407|858408|858430|858436|858438|858444|858445|858453|858459|858473|866948|866949|866950|866951|866952|866953|866954|866955|866956|866957|866958|866959|866960|866961|866962|866963|866964|866965|866966|866967|866968|866969|866970|866971|866972|866973|866974|866975|866976|866977|866978|866979|866980|866981|866982|866983|866984|866985|866986|868599|868600|868601|906087|911286|911289|911296|911297|911336|911341|911367|911374|911386|911387|911393|911401|911416|911426|911518|911543|916059|916171|917762|926004|926005|926006|926007|926008|926009|926010|926011|926012|926013|926014|926015|926016|926017|926018|926019|926020|926021|926022|926023|926024|926025|926026|926027|926028|926029|926030|926031|926032|926033|926034|926035|926036|926037|926038|926039|926040|926041|926042|926043|926044|926045|926046|926047|926048|926049|926050|926051|926052|926053|926054|926055|926056|926057|926058|926059|926060|926061|926062|926063|926064|926065|926066|926067|926068|926069|926070|926071|926072|926073|926074|926075|926076|926077|926078|926079|926080|926081|926082|926083|926084|926085|926086|926087|926088|926089|926090|926091|926092|926093|926094|926095|926096|926097|926098|926100|926101|926102|926103|926104|926105|926106|926107|926108|926109|926110|926111|935281|935282|935283|935284|935285|935286|935287|935288|935289|935290|935291|935292|935293|935294|935295|935296|935297|935298|935299|935300|935301|935302|935303|935304|935305|935306|935307|935308|935309|935310|935311|935312|935313|935314|935315|935316|935317|935318|935319|935320|935321|935322|935323|935324|935325|935326|935327|935328|935329|935330|935331|935332|935333|935334|935335|935336|935337|935338|935339|935340|935341|935342|935343|935344|935345|935346|935347|935348|935349|935350|935351|935352|935353|935354|935355|935356|935357|935358|935359|935360|935361|935362|935363|935364|935365|935366|935367|935368|935369|935370|935371|935372|935373|935374|940191|940192|940193|940194|940195|940196|940197|940198|940199|940200|940201|940976|940977|940978|940979|940980|940981|940982|940983|940984|940985|940986|940987|940988|947181|947182|947183|947184|947185|947186|947187|947188|947189|947190|947191|947192|947193|947194|947195|947196|947197|947198|947199|947200|947201|947202|947203|947204|947205|947206|947207|947208|947209|947210|947211|947212|947213|947214|947215|947216|947217|947218|947219|947220|947221|947222|947223|947224|947225|947226|947227|947228|947229|947230|947231|947232|947233|947234|947235|947236|947237|947238|947239|947240|947241|947242|947243|947244|947245|947246|947247|947248|947249|947250|947251|947252|947253|947254|947255|947256|947257|947258|947259|947260|947261|947262|947263|947264|947265|947266|947267|947268|947269|947270|947271|947272|947273|947274|947275|947276|947277|947278|947279|947280|947281|947282|947283|947284|947285|947286|947287|947288|947289|947290|947291|947292|947293|947294|956312|956313|956314|956315|956316|956317|956318|956319|956320|956321|956322|956323|956324|956325|956326|956327|956328|956329|956330|956331|956332|956333|956334|956335|956336|956337|956338|956339|956340|956341|956342|956343|956344|956345|956346|956347|956348|956349|956350|956351|956352|956353|956354|956355|956356|956357|956358|956359|956360|956361|956362|956363|956364|956365|956366|956367|956368|956369|956370|956371|956372|956373|956374|956375|956376|959959|959960|959961|959962|959963|959965|959966|959967|959968|959969|959970|959971|959972|959973|960739|960740|960741|960742|960743|961862|961863|966058|970130|970137|978856|978857|978858|978859|978860", + "upstreamId": "18057|18058|18059|18060|18061|18062|18062|18064|18064|18066|18068|18069|18072|18072|18073|18074|18075|18077|18080|18081|18082|18083|18083|18084|18086|18087|48348|48348|132784|132785|132786|132787|132788|132789|132790|132791|132792|132794|132794|132795|132796|132796|132797|132798|132798|132799|132800|132801|132801|132802|132803|132803|132804|132804|132805|132806|132807|132808|132809|132810|132811|132812|132812|132813|132814|132815|132815|132817|132818|132819|132820|132821|132821|132822|132823|132823|132824|132824|132825|132825|132826|132827|132827|132828|132828|132829|132830|132831|132832|132833|132834|132834|132836|132837|132838|132839|132840|132841|132842|132842|132843|132844|132844|132845|132846|132847|132847|132848|132849|132849|132850|132851|132852|132854|132855|132856|132857|132857|132858|132859|132860|132861|132862|132864|132865|132865|132866|132867|132868|132869|132869|132870|132870|132871|132871|132871|132872|132872|132873|132874|132875|132876|132876|132877|132878|132879|132880|132881|132882|132883|132884|132885|132886|132887|132888|132889|132890|132891|132892|132893|132894|132895|132897|132897|132898|132899|132900|132902|132903|132904|132904|132905|132906|132907|132908|132909|132910|132911|132912|132913|132913|132914|132915|132916|132917|132918|132919|132920|132920|132921|132922|132923|132925|132926|132928|133903|133904|133905|133906|133907|133908|133909|136433|136443|136444|136454|136462|136463|136473|136484|136498|136505|137341|137342|137342|137343|137344|137345|137346|137347|137349|137350|137351|137354|137355|137356|137357|137358|137359|137360|137362|137363|137364|137364|137366|137367|137368|137369|137370|137371|137371|137372|137373|137374|137375|137376|137376|137377|137377|137378|137379|137379|137380|137380|137381|137382|139442|139443|139444|139445|139446|139447|139448|139449|139450|139451|139452|139453|139454|139455|139456|139457|139458|139459|139459|139460|139461|139462|139463|139464|139465|139466|139468|139469|139470|139471|139472|139473|139474|139475|139476|139477|139478|139479|139480|139481|139482|139483|139484|139485|139486|139487|139488|139489|139490|139492|139494|139495|139496|139497|139498|139499|139500|140132|140133|140135|140136|140137|140138|140139|140140|140144|140145|140146|140147|140148|140149|150475|150476|150480|150483|150484|150527|150532|150537|150546|150565|150570|150571|150581|150593|150603|150610|150611|150619|150621|150624|150626|150629|150630|150630|150634|150639|150640|150663|150695|150696|150745|150750|150751|150831|150837|150851|150896|150896|150897|150897|150903|150929|150931|150932|150947|150947|150952|150952|150954|150955|150965|150969|150985|150998|151003|151006|151029|151030|151039|151058|151061|151066|151076|151087|151103|151103|151118|151118|151118|151130|151146|151159|151160|151161|151188|151200|151202|151204|151210|151228|151232|151234|151236|151248|151257|151260|151260|151270|151271|151273|151275|151293|151296|151305|151310|151348|151352|151358|151361|151363|151367|151386|151390|151400|151410|151414|151418|151428|151435|151440|151448|151456|151464|151466|151471|151474|151477|151477|151479|151480|151489|151514|151536|151539|151554|151560|151598|151601|151623|151646|151653|151654|151655|151658|151672|151682|151690|151706|151727|151753|151757|151760|151760|151765|151769|151771|151785|151803|151804|151810|151818|151821|151840|151840|151842|151844|151854|151855|151861|151876|151878|151881|151896|151901|151902|151908|151925|151938|151957|151963|151964|151968|152036|152053|152059|152062|152068|152069|152073|152092|152121|152129|152132|152147|152147|152148|152160|152174|152186|152201|152212|152215|152217|152221|152231|152236|152246|152249|152255|152255|152257|152281|152289|152396|152414|152417|152423|152440|152463|152505|152517|152531|152607|152610|152622|152627|152647|152668|152680|152706|152726|152730|152739|180376|180378|180379|180381|180382|180382|180383|180384|180385|180386|180387|180388|180389|180390|180391|180391|180394|180395|180396|180397|180399|180400|180401|180402|180403|180405|180406|180407|180408|180409|180411|180411|180412|180413|180415|180416|180418|180419|180421|180422|180423|180424|180427|180428|180429|180431|180432|180433|180433|180434|180436|180437|180439|180440|180442|180443|180444|180447|180448|180449|180450|180451|180452|180454|180455|180457|180458|180459|180461|180462|180463|180464|180464|180465|180465|180466|180467|180468|180469|180471|180472|180474|180475|180476|180478|180479|180480|180482|180483|180483|180484|180486|180487|180489|180490|180491|180491|180493|180494|180494|180495|180498|180499|180500|180501|180502|180503|180504|180505|180507|180508|180509|180510|180511|180513|180514|180515|180516|180518|180519|180519|180521|180522|180522|180523|180524|180525|180526|180528|180529|180531|180532|180533|180534|180535|180538|181215|183067|183068|183070|183071|183073|183074|183075|183076|183077|183078|183079|183080|183081|183082|183083|183084|183085|183085|183086|183087|183088|183089|183090|183091|183092|183094|183095|183097|183098|183099|183100|183101|183103|183104|183104|183106|183107|183108|183109|183111|183112|183113|183113|183117|183118|183119|183120|183121|183122|183123|183124|183126|183127|183128|183129|183130|183132|183135|183136|183137|183138|183139|183140|183141|183145|183146|183147|183151|183152|183153|183154|183155|183156|183157|183158|183159|183160|183163|183164|183165|183166|183167|183169|183170|183171|183172|183173|183174|183175|183176|183176|183177|183179|183180|183181|183182|183183|183184|183185|183186|183187|183188|183189|183190|183192|183193|183194|183194|183196|183197|183198|183199|183200|183201|183202|183202|183203|183204|183205|183206|183207|183208|183209|183210|183212|183213|183214|183215|183215|183216|183217|183218|183219|183221|183222|183224|183225|183226|183227|183228|183230|183230|183231|183232|183233|183234|183235|183236|183237|183238|183239|183241|183242|183243|183244|183245|183245|183246|183248|183249|183250|183251|183252|183253|183254|183257|183258|183259|183260|183260|183265|183266|183267|183268|183269|183270|183271|183272|183273|183274|183275|183276|183277|183278|183280|183281|183282|183283|183284|183286|183287|183288|183289|183290|183292|183293|183294|183295|183297|183298|183299|183300|183301|183303|183304|183305|183306|183307|183308|183311|183315|183316|183318|183319|183320|183321|183322|183324|183326|183328|183329|183330|183332|183333|183334|183335|183336|183337|183338|183339|183340|183341|183342|183343|183344|183345|183346|183347|183348|183349|183351|183352|183353|183356|183357|183358|183359|183360|183360|183361|183362|183363|183364|183365|183366|183368|183369|183370|183371|183372|183373|183374|183375|183376|183377|183378|183379|183380|183381|183382|183383|183384|183384|183385|183386|183387|183388|183389|183390|183391|183391|183392|183392|183394|183395|183398|183399|183400|183401|183401|183402|183406|183407|183408|183409|183411|183412|183413|183414|183415|183416|183418|183419|183420|183421|183422|183423|183426|183428|183430|183431|183432|183433|183434|183435|183436|183437|183438|183439|183440|183441|183442|183445|183446|183448|183449|183451|183453|183455|183456|183458|183459|183460|183461|183462|183463|183464|183465|183466|183467|183467|183468|183470|183471|183471|183472|183473|183474|183476|186132|186133|186134|186135|186136|186137|186138|186139|186141|186141|186142|186143|186143|186144|186145|186146|186147|186148|186150|186796|186797|186798|186799|186800|186801|186802|186803|186804|186805|196445|205207|205766|212834|212835|212836|212837|212838|212839|212842|212843|212844|212845|212846|212847|212848|212849|212850|212851|212851|212852|212853|212854|212855|212856|212857|212858|212861|212862|212863|212864|212865|212866|212867|212868|212869|212870|212871|212872|212873|212874|212875|212876|212877|212878|212879|212880|212881|212882|212883|212884|212886|212887|212888|212889|212890|212891|212892|212893|212894|212895|212896|212897|212898|212899|212900|212902|212903|212904|212905|212906|212907|212908|212909|212910|212912|212913|212914|212915|212917|214914|222008|222009|222020|222021|222022|222023|222024|222025|222026|222027|222028|222029|222030|222031|222032|222033|222034|222035|222036|222036|222037|222037|222038|222040|222042|222043|222044|222045|222046|222047|222048|222049|222050|222051|222052|222053|222054|222055|222056|222057|222058|222059|222059|222060|222061|222063|222064|222065|222066|222067|222068|222069|222070|222071|222072|222073|222074|222075|222076|222077|222078|222079|222080|222081|222083|222084|222085|222086|222088|222089|222090|222091|222092|222094|222095|222096|222097|222098|222099|222100|222101|222102|222103|222103|222104|222106|222107|222108|222109|222110|222111|222112|222113|222114|222115|222116|222117|222118|222119|222120|222121|222122|222123|222124|222125|222126|222127|222128|222129|222130|222131|222132|222133|223599|226343|226344|227920|231791|231793|231795|231796|231797|231798|233882|233885|233886|233887|233888|233890|233894|233895|233896|233898|233899|233900|233903|233905|233906|233907|233908|233909|233913|233915|233916|233919|233921|233922|233925|233930|233931|233933|233935|233936|233937|233938|233939|233940|233941|233942|233943|233944|233945|233947|233948|233949|233951|233952|233953|233954|233957|233959|233961|233962|233963|233966|233967|233968|233969|233970|233971|233972|233973|233974|233975|233976|233978|233979|233980|233982|233984|233987|233988|233989|233990|233991|233993|233994|233995|234002|234003|234004|234005|234006|234008|234008|234010|234014|234015|234015|234016|234017|234018|234020|234021|234022|234024|234026|234028|234029|234030|234032|234034|234035|234036|234037|234038|234039|234040|234041|234042|234043|234044|234045|234046|234049|234050|234051|234052|234054|234055|234057|234058|234059|234060|234062|234063|234064|234065|234066|234067|234068|234069|234070|234071|234072|234074|234075|234076|234077|234078|234079|234080|234082|234083|234085|234086|234087|234088|234089|234091|234093|234095|234096|234097|234099|234099|234100|234104|234105|234106|234107|234108|234110|234111|234112|234116|234118|234119|234120|234122|234123|234124|234125|234126|234127|234129|234130|234131|234132|234133|234134|234136|234138|234139|234140|234141|234142|234143|234144|234145|234147|234149|234150|234151|234152|234155|234157|234158|234161|234162|234163|234165|234166|234167|234168|234169|234170|234171|234174|234176|234177|234179|234181|234184|234185|234187|234188|234190|234194|234195|234196|234197|234197|234198|234200|234205|234206|234208|234209|234211|234212|234213|234214|234215|234216|234217|234218|234219|234220|234222|234223|234227|234228|234229|234231|234232|234234|234235|234236|234238|234239|234241|234242|234243|234244|234245|234246|234247|234248|234249|234250|234251|234252|234253|234254|234255|234256|234258|234259|234261|234262|234263|234264|234265|234266|234267|234268|234269|234270|234272|234274|234275|234277|234278|234280|234281|234282|234284|234284|234288|234289|234290|234291|234292|234293|234294|234298|234298|234299|234300|234301|234302|234306|234307|234309|234310|234311|234313|234314|234315|234316|234317|234318|234319|234320|234321|234321|234323|234324|234325|234326|234329|234330|234331|234332|234336|234338|234339|234341|234342|234343|234343|234347|234348|234349|234350|234351|234353|234353|234354|234355|234357|234358|234359|234360|234361|234362|234364|234366|234368|234369|234370|234372|234373|234374|234376|234377|234378|234379|234380|234382|234384|234385|234387|234388|234390|234391|234392|234394|234395|234398|234399|234400|234403|234404|234405|234406|234407|234409|234410|234411|234412|234413|234414|234415|234416|234418|234420|234421|234422|234426|234427|234428|234429|234430|234432|234433|234434|237325|240904|240905|240906|240907|240909|240911|240912|240913|240914|240915|240916|240917|240918|240919|240920|240921|240922|240923|240924|240926|240927|240928|240929|240930|240931|240932|240933|240934|240935|240936|240937|240939|240940|240941|240943|240944|240945|240946|240947|240948|240949|240950|240951|240953|240954|240955|240956|240957|240958|240959|240960|240961|240962|240963|240964|240964|240965|240966|240969|240970|240971|240972|240973|240974|240975|240976|240977|240978|240979|240980|240981|240981|240982|240983|240984|240985|240986|240987|240988|240989|240990|240991|240993|240994|240995|240996|240997|240998|240999|241000|241002|241003|241004|241005|241006|241008|241009|241010|241011|241013|241014|241015|241016|241017|241018|241019|241020|241021|241022|241023|241024|241025|241026|241027|241028|241029|241030|241031|241032|241033|241034|241036|241037|244572|244573|244577|244578|244579|244580|244581|244583|244585|244586|244587|244589|244593|244594|244595|244596|244599|244601|244604|244605|244606|244607|244609|244610|244612|244614|244615|244617|244619|244621|244622|244622|244623|244625|244626|244627|244628|244629|244631|244632|244634|244636|244640|244641|244643|244644|244645|244647|244649|244651|244652|244654|244657|244658|248500|248507|248508|253988|259261|259948|259949|259955|259956|259957|259963|259967|259970|259971|259971|259973|262601|262602|262603|262604|262605|262606|262607|262608|262609|262610|262611|262613|262614|262615|262616|262619|262621|262622|262626|262628|262629|262630|262631|262633|262635|264392|264571|268678|312240|312244|312246|312249|312250|312252|312253|312255|312256|312258|312259|312262|312263|312267|312268|312272|318025|318027|318028|318041|318042|318044|318057|318057|318058|318064|318065|318066|318072|318076|318078|318083|318094|318095|318102|318103|318108|318109|318111|324058|324071|324073|324088|324090|324093|324094|324107|324110|324111|324122|324124|324125|324126|324130|324136|324138|324930|324934|324936|324937|324949|324952|324953|324956|324957|324958|324962|324972|357875|357876|357877|357878|357879|357880|357881|357882|357883|357884|357885|357886|357887|357888|357889|357890|357891|357892|357893|357894|357895|357896|357897|357898|357899|357900|357901|357902|357903|357904|357905|357906|357907|357908|357909|357910|357911|357912|357913|357914|357915|357916|357917|357918|357919|357920|357921|357922|357923|357924|357925|357926|357927|357928|357929|360925|361425|361492|361946|361947|371037|371041|371046|371059|371084|371085|371093|371104|371105|371143|371151|371153|371164|371174|371176|371189|371198|371205|371210|371232|371737|371741|371769|371777|371788|371804|371807|371819|371862|371869|371876|371885|371908|371975|371977|371982|372000|372001|372006|372007|372029|372030|372042|372043|372049|372050|372058|372067|372075|372079|372105|372110|372130|372132|372135|372144|373672|373695|373709|373734|373737|373739|373740|373743|373747|373767|373773|373793|373833|373843|373866|397550|397594|397605|397612|397614|397623|397624|397626|397628|397632|397636|397643|397644|397645|397656|397661|397665|397666|397669|397676|397687|397692|397696|397701|397705|397706|397707|397709|397718|397722|397724|397727|397730|397738|397742|397743|397745|397746|397747|397750|397754|397755|397758|397766|397767|397769|397770|397771|397772|397774|397781|397782|397784|397785|397786|397788|397789|397791|397792|397796|397797|397798|397800|397802|397803|397804|397806|397808|397809|397811|397812|397816|397817|397819|397820|397821|397822|397823|397826|397827|397829|397830|397831|397833|397834|397838|397840|397842|397844|397845|397848|397849|397852|397854|397855|397856|397859|397861|397861|397863|397864|397865|397866|397867|397869|397870|397871|397872|397873|397874|397875|397877|397878|397879|397882|397883|397884|397887|397887|397889|397891|397893|397894|397895|397896|397897|397898|397899|397900|397905|397906|397907|397908|397910|397913|397914|397915|397916|397919|397920|397920|397921|397922|397924|397925|397926|397928|397936|397938|397939|397941|397942|397943|397944|397945|397947|397949|397950|397952|397956|397957|397960|397961|397962|397963|397965|397967|397968|397969|397970|397972|397974|397982|397987|397988|397990|397993|397994|397995|397997|397999|398000|398001|398002|398003|398004|398011|398012|398015|398018|398023|398025|398028|398030|398032|398037|398038|398039|398041|398043|398049|398051|398054|398056|398058|398059|398064|398067|398077|398082|398085|398087|398089|398091|398093|398095|398097|398105|398108|398110|398113|398115|398116|398117|398121|398133|398134|398137|398138|398141|398143|398145|398150|398152|398154|398155|398158|398159|398161|398162|398163|398166|398168|398170|398171|398173|398174|398175|398178|398182|398183|398186|398188|398190|398191|398192|398193|398195|398201|398204|398209|398210|398211|398214|398217|398220|398223|398225|398228|398231|398233|398236|398237|398239|398241|398243|398244|398245|398246|398248|398252|398253|398255|398258|398260|398261|398270|398271|398279|398281|398282|398285|398286|398287|398288|398289|398290|398292|398293|398295|398296|398297|398298|398301|398302|398304|398308|398310|398311|398313|398314|398323|398325|398326|398328|398329|398331|398333|398334|398335|398336|398340|398341|398343|398353|398356|398358|398361|398362|398364|398366|398367|398368|398369|398370|398371|398374|398375|398377|398378|398379|398382|398385|398400|398403|398410|398412|398429|398430|398433|398434|398436|398439|398444|398445|398447|398450|398452|398454|398464|398468|398470|398471|398474|398479|398484|398491|398493|398496|398499|398503|404599|408040|408041|408042|408043|408044|408047|408049|408050|408051|408054|408056|408059|408060|408062|408063|408064|408066|408067|408068|408072|408078|408082|408085|408086|408087|408089|408090|408091|408095|408096|408097|408098|408099|408100|408101|408102|408104|408106|408107|408108|408109|408110|408111|408114|408115|408116|408117|408121|408122|408126|408127|408133|408138|408138|408139|408141|408142|408143|408144|408147|408148|408153|408154|408155|408157|408158|408160|408163|408165|408166|408167|408168|408169|408172|408173|408174|408175|408178|408179|408182|408185|408189|408190|408191|408196|408199|408200|408202|408204|408205|408207|408210|408216|408221|408224|408227|408229|408230|408231|408232|408234|408235|408236|408242|408243|408244|408246|408247|408248|408249|408251|408254|408255|408257|408259|408260|408261|408262|408264|408265|413181|413325|413328|415247|421066|421068|421069|421073|421076|421077|421079|421079|421080|421081|421083|421084|421089|421820|421821|429167|429168|433369|437910|444705|444706|444708|444710|444711|444712|444716|444717|444719|460411|460413|460422|460432|460438|460445|460448|460450|460455|460457|460473|460474|460475|460476|460478|460479|460480|460483|460484|460485|460487|460490|460491|460494|460495|460496|460497|460499|460501|460510|460511|460513|460516|460517|460518|460519|460521|460523|460524|460525|460527|460528|460529|460531|460533|460536|460537|460538|460540|460543|460544|460546|460551|460553|460556|460557|460560|460561|460562|460566|460567|460569|460570|460572|460573|460575|460577|460578|460579|460581|460582|460584|460585|460586|460588|460589|460590|460593|460595|460597|460599|460600|460602|460603|460604|460605|460611|460614|460616|460618|460620|460624|460625|460626|460628|460630|460632|460637|460641|460644|460645|460647|460648|460650|460652|460654|460656|460657|460660|460663|460665|460667|460668|460672|460673|460674|460675|460676|460678|460679|460680|460681|460683|460684|460687|460689|460690|460692|460693|460694|460696|460698|460702|460705|460706|460707|460708|460709|460711|460712|460713|460714|460718|460720|460721|460725|460728|460730|460732|460734|460735|460736|460737|460739|460740|460743|460744|460745|460746|460747|460749|460750|460751|460752|460754|460755|460758|460760|460761|460763|460764|460767|460768|460770|460771|460773|460775|460776|460777|460779|460780|460781|460782|460783|460785|460787|460788|460789|460791|460792|460794|460795|460798|460799|460800|460801|460803|460804|460805|460806|460807|460808|460809|460810|460811|460812|460813|460814|460815|460816|460819|460820|460821|460822|460823|460824|460825|460826|460827|460828|460829|460830|460831|460832|460833|460834|460835|460837|460839|460841|460842|460843|460844|460845|460846|460847|460848|460849|460850|460852|460853|460854|460855|460856|460859|460860|460861|460864|460866|460868|460869|460871|460878|460891|460892|460901|460903|460907|460909|460912|460918|460921|460925|460928|460937|460940|460947|460952|460953|460956|460962|460970|460975|460976|460978|460980|460981|460983|460992|460995|460997|461014|461018|461025|461028|461030|461036|461037|461042|461048|461055|461057|461060|461067|461069|461076|461076|461079|461085|461088|461097|461099|461102|461104|461114|461123|461126|461127|461135|461143|461144|461147|461155|461159|461160|461161|461208|461211|461223|461226|461230|461233|461239|461240|461246|461247|461250|461258|461270|461272|461279|461289|461289|461291|461293|461296|461307|461309|461311|461312|461313|461320|461325|461329|461330|461334|461337|461341|461344|461347|461351|461362|461365|461370|461372|461378|461380|461382|461387|461390|461393|461401|461404|461405|461408|461416|461420|461425|461429|461437|461441|461446|461447|461452|461454|461457|461461|461465|461469|461472|461473|461478|461481|461483|461488|461490|461493|461500|461506|461507|461516|461517|461524|461525|461528|461529|461534|461536|461538|461539|461542|461543|461549|461553|461555|461557|461561|461563|461565|461568|461572|461578|461580|461593|461595|461597|461599|461603|461604|461612|461613|461615|461637|461641|461643|461645|461648|461649|475277|475278|475284|475288|475291|475316|475321|475324|475326|475335|475337|475342|475348|475350|475352|475355|475366|475379|475380|475384|475385|475389|475393|475394|475403|475405|475408|475410|475411|475413|475414|475428|475429|475434|475435|475439|475443|475444|475454|475457|475460|475461|475463|475464|475465|475466|475467|475468|475469|475472|475478|475479|475481|475483|475485|475486|475495|475500|475503|475505|475506|475510|475520|475522|475524|475527|475528|475530|475533|475545|475546|475547|475548|475552|475553|475555|475561|475562|475564|475571|475572|475573|475574|475577|475580|475583|475585|475589|475592|475594|475595|475597|475600|475601|475604|475612|475614|475619|475628|475632|475633|475634|475635|475640|475645|475650|475656|475657|475660|475661|475663|475667|475668|475670|475671|475672|475673|475675|475676|475677|475678|475682|475683|475685|475687|475688|475690|475691|475692|475693|475698|475699|475701|475703|475705|475708|475711|475712|475714|475715|475718|475720|475721|475723|475726|475729|475730|475731|475733|475734|475736|475739|475742|475744|475745|475748|475749|475752|475753|475755|475757|475758|475759|475760|475761|475767|475772|475777|475778|475779|475783|475787|475787|475791|475792|475793|475801|475803|475805|475806|475808|475809|475811|475814|475816|475820|475821|475822|475823|475825|475827|475829|475831|475832|475839|475840|475841|475842|475845|475848|475852|475853|475854|475858|475861|475863|475870|475873|475874|475876|475878|475879|475880|475882|475884|475886|475889|475891|475893|475896|475901|475902|475908|475913|475916|475917|475918|475920|475921|475922|475923|475924|475925|475926|475927|475932|475937|475938|475940|475941|475943|475946|475950|475951|475952|475953|475957|475960|475966|475968|475973|475978|475982|475984|475987|475988|476001|476007|476011|476013|476023|476030|476033|476034|476036|476049|476050|476053|476054|476057|476060|476066|476070|476072|476073|476075|476076|476077|476078|476079|476083|476084|476089|476089|476092|476094|476097|476102|476110|476114|476116|476118|476121|476126|476128|476135|476142|476150|476152|476157|476161|476164|476167|476168|476169|476178|476181|476185|476187|476190|476196|476198|476203|476206|476207|476212|476217|476222|476223|476231|476237|476240|476258|476264|476267|476278|476293|476297|476304|476310|476314|476318|476325|476329|476337|476341|476344|476366|476368|476370|476383|476385|476392|476395|476403|476405|476419|480499|480500|480501|480502|480503|480504|480505|482713|482749|482753|482755|482761|482763|482767|482775|482780|482786|482787|482808|482809|482813|482821|482833|482834|482836|482837|482838|482842|482852|482857|482859|482864|482875|482876|482879|482880|482882|482892|484133|484137|484159|484161|484178|484180|484181|484196|484200|484201|484204|484210|484214|484216|484227|484230|484233|484249|484277|484284|484293|484296|484300|484301|484302|484320|484332|484337|484343|484347|484348|484354|484375|484380|484386|484388|484390|484391|484405|484408|484410|484413|484415|484430|484435|484437|484444|484447|484448|484449|484450|484452|484459|484461|484465|484474|484490|484493|484495|484496|484499|484512|484513|484515|484517|484518|484536|484558|484563|484580|484583|484592|484609|484610|484615|484630|484631|484643|484666|484698|484709|487427|487476|487481|487484|503048|503091|503375|503380|503383|503423|503602|503617|503923|503933|503937|503977|512846|525584|525591|525622|525625|525628|525630|525631|525634|525636|525638|525649|525650|525656|525658|525660|525663|525670|525672|525679|525691|525695|525696|525698|525702|525703|525711|525715|525721|525723|525724|525726|525728|525730|525735|525736|525737|525738|525741|525746|525747|525749|525750|525751|525752|525758|525760|525761|525762|525763|525766|525771|525773|525774|525776|525777|525778|525780|525783|525784|525791|525794|525795|525797|525801|525803|525806|525808|525809|525812|525815|525817|525818|525821|525826|525829|525831|525833|525834|525835|525836|525837|525838|525839|525840|525842|525847|525848|525850|525853|525854|525856|525857|525859|525860|525862|525863|525864|525865|525866|525867|525869|525875|525877|525880|525881|525884|525885|525888|525889|525892|525893|525894|525895|525896|525899|525900|525901|525904|525906|525908|525909|525910|525913|525914|525915|525916|525917|525920|525925|525926|525927|525930|525931|525932|525934|525936|525938|525939|525942|525944|525946|525947|525951|525956|525957|525959|525960|525962|525963|525965|525966|525967|525973|525975|525976|525979|525983|525985|525988|525989|525990|525992|525998|525999|526002|526009|526010|526020|526028|526030|526032|526033|526036|526042|526043|526044|526046|526049|526051|526053|526054|526056|526057|526058|526060|526061|526062|526063|526068|526069|526075|526080|526081|526084|526085|526087|526093|526097|526100|526108|526111|526114|526121|526123|526129|526131|526134|526136|526139|526142|526146|526151|526165|526167|526176|526179|526187|526188|526198|526200|526204|526205|526208|526209|526225|526231|526233|526241|526244|526251|526253|526257|526262|526269|526271|526274|526276|526280|526287|526289|526301|526302|526304|526307|526309|526311|526314|526317|526322|526340|526343|526348|526349|526351|526355|526356|526366|526377|536377|536378|536383|536390|536394|536395|537176|545333|545339|545342|545348|545350|545353|545365|545370|545373|545375|545396|545397|545682|545683|545687|545693|545696|545697|545707|545709|545711|545712|545713|545714|545715|545716|545718|545719|545720|545721|545724|545726|545728|545730|545732|545734|545735|545738|545740|545743|545745|545753|545766|545768|545770|545773|545774|545789|545792|545804|545809|545813|545815|545967|545967|545975|545980|545982|545986|545989|545994|546007|546009|546018|546024|546036|546038|550264|550663|551877|551884|552148|552290|564087|564088|564090|564116|564119|564124|564125|564127|564129|564134|564136|564139|564143|564145|564147|564149|564151|564153|564155|564163|564165|564167|564170|564171|564173|564182|564184|564186|564188|564190|564191|564192|564196|564198|564200|564202|564208|564211|564217|564220|564232|564233|564235|564237|564239|564245|564247|564250|564251|564254|564255|564257|564262|564263|564267|564273|564274|564282|564283|564284|564294|564300|564302|564303|564304|564312|564315|564321|564325|564326|564330|564331|564333|564334|564338|564345|564350|564353|564354|564356|564357|564361|564370|564370|564372|564376|564982|564989|564990|564998|565054|565061|565062|565064|565065|565070|565080|565085|565086|565092|565094|565096|565097|565099|565103|565104|565109|565115|565116|565118|565123|565126|565129|565130|565132|565156|565173|565178|565179|565183|565187|565189|565190|565193|565206|565217|565218|565223|565238|565242|565246|565251|565257|565258|565258|565275|565276|565278|565280|565281|565291|565293|565294|565295|565301|565302|565315|565316|565318|565330|565344|565345|565346|565350|565363|565367|565371|565373|565378|565380|565387|565388|565393|565395|565401|565403|565405|565412|565414|565415|565423|565427|565431|565439|565451|565452|565455|565456|565464|565466|565470|565471|566702|566714|566749|566759|566762|566764|566770|566772|566774|566776|566778|566782|566785|566787|566789|566791|566803|566804|566806|566807|566809|566813|566818|566820|566822|566826|566834|566837|566838|566843|566844|566846|566848|566853|566855|566857|566865|566868|566870|566873|566881|566883|566888|566889|566891|566894|566896|566897|566899|566900|566906|566908|566910|566920|566922|566925|566927|566929|566939|566942|566944|566945|566949|566953|566955|566957|566967|566969|566971|566972|566984|566988|566989|566997|566998|567001|567006|567008|567009|567011|567023|567026|567027|567032|567034|567037|569932|569933|569971|569976|569980|569982|569986|569988|569990|569992|569993|569993|569999|570002|570003|570006|570011|570012|570023|570026|570031|570032|570034|570046|570047|570049|570051|570054|570056|570057|570060|570065|570068|570084|570090|570093|570094|570096|570097|570098|570104|570109|570113|570117|570122|570123|570126|570132|570141|570142|570165|570168|570170|570182|570183|570185|570191|570196|570199|570202|570204|570207|570208|570217|570235|570236|570241|570242|570247|570255|570257|570259|570265|570271|570282|570285|570288|570289|575559|575562|575571|575573|575812|575813|575814|575815|575816|575817|575818|575819|575820|575821|575822|575823|575824|575825|575826|575827|575828|575829|575830|575831|575832|575833|575835|575836|575837|575838|575839|575840|577167|609170|609171|609781|611740|614353|615925|617619|617625|617628|617631|617633|617637|617641|617653|617655|617659|617661|617671|617676|617696|617697|617698|617708|617710|617715|617717|617723|617724|617727|617730|617732|617738|617741|617752|617761|617764|617767|617773|617776|617787|617795|617796|617797|617799|617800|617802|617803|617806|617808|617809|617811|617817|617820|617822|617824|617827|617828|617831|617833|617841|617842|617844|619350|619363|619379|619406|619429|619456|621326|621327|621329|621330|621331|621338|621798|621799|621800|621802|621804|622397|624417|624418|624792|639367|639368|639369|639370|639371|639372|639373|639374|639375|639376|639377|639378|639379|639380|639381|639382|639383|639384|639385|639386|639387|639388|639389|639390|639391|639392|639393|639394|639395|639396|639397|639398|639399|639400|639401|639402|639403|639404|639405|639406|639407|639408|639409|639410|639411|639412|639413|639414|639415|639416|639417|639418|639419|639420|639421|639422|639423|639424|639425|639426|639427|639428|639429|639430|639431|639432|639433|639434|639435|639436|639437|639438|639439|639440|639441|639442|639443|639444|639445|639446|639447|639448|639449|639450|639451|639452|639453|639454|639455|639456|639457|639458|639459|639460|639461|639462|639463|639464|639465|639466|639467|639468|639469|639470|639471|639472|639473|639474|639475|639476|639477|639478|639479|639480|639481|639482|639483|639484|639485|639486|639487|639488|639489|639490|639491|639492|639493|639494|639495|639496|639497|639498|639499|639500|639501|639502|639503|639504|639505|639506|639507|639508|639509|639510|639511|639512|639513|639514|639515|639516|639517|639518|639519|639520|639521|639522|639523|639524|639525|639526|639527|639528|639529|639530|639531|639532|639533|639534|639535|639536|639537|639538|639539|639540|639541|639542|639543|639544|639545|639546|639547|639548|639549|639550|639551|639552|639553|639554|639555|639556|639557|639558|639559|639560|639561|639562|639563|639564|639565|639566|639567|639568|639569|639570|639571|639572|639573|639574|639575|639576|639577|639578|639579|639580|639581|639582|639583|639584|639585|639586|639587|639588|639589|639590|639591|639592|639593|639594|639595|639596|639597|639598|639599|639600|639601|639602|639603|639604|639605|639606|639607|639608|639609|639610|639611|639612|639613|639614|639615|639616|639617|639618|639619|639620|639621|639622|639623|639624|639625|639626|639627|639628|639629|639630|639631|639632|639633|639634|639635|639636|639637|639638|639639|639640|639641|639642|639643|639644|639645|639646|639647|639648|639649|639650|639651|639652|639653|639654|639655|639656|639657|639658|639659|639660|639661|639662|639663|639664|639665|639666|639667|639668|639669|639670|639671|639672|639673|639674|639675|639676|639677|639678|639679|639680|639681|639682|639683|639684|639685|652022|652030|652035|652036|652044|652046|652049|652059|652066|652068|652069|652071|652073|652074|652075|652078|652079|652081|652082|652083|652087|652090|652092|652093|652106|652111|652114|652120|652123|652133|652134|652136|652137|652148|652152|652176|652178|652181|652185|652229|652236|652237|652243|652244|652251|652254|652262|652273|652275|652276|652280|652290|652294|652302|652304|652357|652361|652372|652373|652400|652405|652411|652412|652415|652422|652441|652442|652444|652450|652459|652477|664902|665769|672038|682728|684221|687705|692921|692923|692924|692925|692926|695493|724183|730724|744544|752402|752404|752405|752411|752416|759908|768119|768124|768126|768128|768130|768146|768151|768157|768158|768163|768169|768170|768171|768173|768174|768175|768177|768178|768182|775593|775594|775613|775616|775740|775743|775747|775749|775762|775773|777895|783818|783821|783822|783826|783827|783833|783836|783837|783841|783844|783847|783848|783851|783852|783853|783854|783856|783858|783861|783862|787695|787697|787718|787888|787899|791026|791027|791028|791029|791030|791031|791032|791033|791034|791035|791036|791037|791038|791039|791040|791041|791042|791043|791044|791045|791046|791047|791048|791049|791050|791051|791052|791053|791054|791055|791056|791057|791058|791059|791060|791061|791062|791063|791064|791065|791066|791067|791068|791069|791070|791071|791072|791073|791074|791075|791076|791077|791078|791079|791080|791081|791082|791083|791084|791085|791086|791087|791088|791089|791090|791091|791092|791093|791094|791095|791096|791097|791098|791099|791100|791101|792780|792780|796512|798633|798634|798635|810154|810156|810159|810165|810167|810172|810173|810189|810218|810222|810244|810246|810246|810247|810250|810254|810256|810267|810268|810283|810289|810295|810298|810299|810300|810309|810313|810319|810323|810328|810333|810342|810348|810354|810358|810362|810373|810379|810396|810405|810408|810409|810412|810415|810417|810424|810442|810446|810448|810453|810460|810461|810462|810464|810467|810471|810479|810485|810486|810489|810502|810506|810510|810518|810531|810532|810537|810540|810541|810545|810546|810547|810550|810555|810564|810567|810576|810580|810588|810595|810597|810604|810608|810617|810624|810641|810642|810659|810660|810665|810670|810673|810683|810684|810690|810692|810694|810697|810701|810720|810725|810726|810740|810752|815470|815475|815479|815480|815481|815484|815492|815494|815501|820289|820291|820292|820293|820294|820295|820296|820297|820298|820299|820300|820301|820302|820303|820304|820305|820306|820307|820309|820310|820311|820312|820313|820314|820315|820316|820317|820318|820319|820320|820321|820322|820323|820324|820325|820326|820327|820328|822052|837599|837600|837601|837602|837603|837604|837605|837606|837607|837608|837609|837610|837611|837612|837613|837614|837615|837616|837617|837618|837619|837620|837621|837622|837623|837624|837625|837626|837627|837628|837629|837630|837631|837632|837633|837634|837635|837636|837637|837638|837639|837640|837641|837642|837643|837644|837645|837646|837647|837648|837649|837650|837651|837652|837653|837654|837655|837656|837657|837658|837659|837660|837661|837662|837663|837664|837665|837666|837667|837668|837669|837670|837671|837672|837673|837674|837675|837676|837677|837678|837679|837680|837681|837682|837683|837684|837685|837686|837687|837688|837689|837690|837691|837692|837693|837694|837695|837696|837697|837698|837699|837700|837701|837702|837703|837704|837705|837706|837707|837708|837709|837710|837711|837712|837713|837714|837715|837716|837717|837718|837719|837720|837721|837722|837723|837724|837725|837726|837727|837728|837729|837730|837731|837732|837733|837734|837735|837736|837737|837738|837739|837740|837741|837742|837743|837744|837745|837746|837747|837748|837749|837750|837751|837752|837753|837754|837755|837756|837757|837758|837759|837760|837761|837762|837763|837764|837765|837766|837767|837768|837769|837770|837771|837772|837773|837774|837775|837776|837777|837778|837779|837780|837781|837782|837783|837784|837785|837786|837787|837788|837789|837790|837791|837792|837793|837794|837795|837796|837797|837798|837799|837800|837801|837802|837803|837804|837805|837806|837807|837808|837809|837810|837811|837812|837813|837814|837815|837816|837817|837818|837819|837820|837821|837822|837823|837824|837825|837826|837827|837828|837829|837830|837831|837832|837833|837834|837835|837836|837837|837838|837839|837840|837841|837842|837843|837844|837845|837846|837847|837848|837849|837850|837851|837852|837853|837854|837855|837856|837857|837858|837859|837860|837861|837862|837863|837864|837865|837866|837867|837868|837869|837870|837871|837872|837873|837874|837875|837876|837877|837878|837879|837880|837881|837882|837883|837884|837885|837886|837887|837888|837889|837890|837891|837892|837893|837894|837895|837896|837897|837898|837899|837900|837901|837902|837903|837904|837905|837906|837907|837908|837909|837910|837911|837912|837913|837914|837915|837916|837917|837918|837919|837920|837921|837922|837923|837924|837925|837926|837927|837928|837929|837930|837931|837932|837933|837934|837935|837936|837937|851401|851403|851405|851407|851409|851411|851413|851415|851417|851419|851798|851800|851802|851804|851806|851808|851810|851812|851814|851816|851818|852293|852299|852302|852303|852304|852305|852309|852314|852315|852320|852321|852326|852566|852567|852569|852573|852575|852576|852577|852581|852583|852584|852585|852587|852591|852593|852594|852595|852597|852601|858406|858407|858408|858430|858436|858438|858444|858445|858453|858459|858473|866948|866949|866950|866951|866952|866953|866954|866955|866956|866957|866958|866959|866960|866961|866962|866963|866964|866965|866966|866967|866968|866969|866970|866971|866972|866973|866974|866975|866976|866977|866978|866979|866980|866981|866982|866983|866984|866985|866986|868599|868600|868601|906087|911286|911289|911296|911297|911336|911341|911367|911374|911386|911387|911393|911401|911416|911426|911518|911543|916059|916171|917762|926004|926005|926006|926007|926008|926009|926010|926011|926012|926013|926014|926015|926016|926017|926018|926019|926020|926021|926022|926023|926024|926025|926026|926027|926028|926029|926030|926031|926032|926033|926034|926035|926036|926037|926038|926039|926040|926041|926042|926043|926044|926045|926046|926047|926048|926049|926050|926051|926052|926053|926054|926055|926056|926057|926058|926059|926060|926061|926062|926063|926064|926065|926066|926067|926068|926069|926070|926071|926072|926073|926074|926075|926076|926077|926078|926079|926080|926081|926082|926083|926084|926085|926086|926087|926088|926089|926090|926091|926092|926093|926094|926095|926096|926097|926098|926100|926101|926102|926103|926104|926105|926106|926107|926108|926109|926110|926111|935281|935282|935283|935284|935285|935286|935287|935288|935289|935290|935291|935292|935293|935294|935295|935296|935297|935298|935299|935300|935301|935302|935303|935304|935305|935306|935307|935308|935309|935310|935311|935312|935313|935314|935315|935316|935317|935318|935319|935320|935321|935322|935323|935324|935325|935326|935327|935328|935329|935330|935331|935332|935333|935334|935335|935336|935337|935338|935339|935340|935341|935342|935343|935344|935345|935346|935347|935348|935349|935350|935351|935352|935353|935354|935355|935356|935357|935358|935359|935360|935361|935362|935363|935364|935365|935366|935367|935368|935369|935370|935371|935372|935373|935374|940191|940192|940193|940194|940195|940196|940197|940198|940199|940200|940201|940976|940977|940978|940979|940980|940981|940982|940983|940984|940985|940986|940987|940988|947181|947182|947183|947184|947185|947186|947187|947188|947189|947190|947191|947192|947193|947194|947195|947196|947197|947198|947199|947200|947201|947202|947203|947204|947205|947206|947207|947208|947209|947210|947211|947212|947213|947214|947215|947216|947217|947218|947219|947220|947221|947222|947223|947224|947225|947226|947227|947228|947229|947230|947231|947232|947233|947234|947235|947236|947237|947238|947239|947240|947241|947242|947243|947244|947245|947246|947247|947248|947249|947250|947251|947252|947253|947254|947255|947256|947257|947258|947259|947260|947261|947262|947263|947264|947265|947266|947267|947268|947269|947270|947271|947272|947273|947274|947275|947276|947277|947278|947279|947280|947281|947282|947283|947284|947285|947286|947287|947288|947289|947290|947291|947292|947293|947294|956312|956313|956314|956315|956316|956317|956318|956319|956320|956321|956322|956323|956324|956325|956326|956327|956328|956329|956330|956331|956332|956333|956334|956335|956336|956337|956338|956339|956340|956341|956342|956343|956344|956345|956346|956347|956348|956349|956350|956351|956352|956353|956354|956355|956356|956357|956358|956359|956360|956361|956362|956363|956364|956365|956366|956367|956368|956369|956370|956371|956372|956373|956374|956375|956376|959959|959960|959961|959962|959963|959965|959966|959967|959968|959969|959970|959971|959972|959973|960739|960740|960741|960742|960743|961862|961863|966058|970130|970137|978856|978857|978858|978859|978860", "text": "Ataxia-telangiectasia syndrome" }, { - "baseId": "18058|18062|18065|18081", + "upstreamId": "18058|18062|18065|18081", "text": "T-cell prolymphocytic leukemia" }, { - "baseId": "18058|18062|19777|20642|22852|22868|23582|24361|24364|27386|27388|27393|27394|27395|27397|27398|27403|27404|27405|27407|27408|27409|27413|27418|27422|27640|27641|27642|27645|27651|27652|28691|28692|28693|28694|28695|28696|28698|28916|29022|30972|30973|32700|32710|32716|33122|36171|36173|40609|40610|44227|45948|45979|45994|46029|46042|46079|46093|46126|46150|46179|46215|46247|46275|46332|46355|46371|46373|46454|46488|46540|46546|46577|46593|46599|46632|46642|46709|46761|46788|46795|46807|46814|48304|48834|49979|49980|49981|49982|49983|49995|49999|50004|50008|50222|50248|50267|52763|54155|54158|54633|65786|65799|65854|65860|65917|65926|66022|66027|66101|66256|66274|66350|66363|66564|66646|66676|66687|66755|66774|66795|66994|67015|67021|67075|67175|67194|67227|67411|67494|67516|67566|68211|68810|68893|68894|68929|69038|69048|69099|69115|69122|69139|69189|69218|69225|69271|69274|69324|69447|69477|69554|69616|69624|69640|69654|69786|69828|69841|69863|69923|69926|69929|69936|69954|69957|69969|69973|70037|70044|70055|70074|70080|70147|70247|70258|70268|70271|70393|70439|96830|97022|97207|97280|97306|98735|102665|102669|102683|102755|102799|131163|131526|133271|133272|133274|133276|133277|133499|133499|133501|133517|137701|139098|139844|140244|140270|150515|150535|150855|150869|150977|151322|151476|151721|151732|151897|152021|152371|152428|152582|166215|166218|171613|171614|173901|176503|179419|180937|180995|181000|181001|181005|182783|183706|183802|183816|183974|184068|185267|185345|185350|185366|185367|185371|185375|185384|185394|187953|206650|208406|213392|213398|213402|213943|222311|222394|222738|226152|226153|226154|226155|226156|226157|226158|226159|226160|226161|226162|226163|226164|226165|226166|226167|226168|226169|226170|226171|226172|226173|226174|226175|226176|226177|226178|226179|226180|226181|226182|226183|226184|226185|226186|226187|226188|226189|226190|226191|226192|226193|226194|226195|226196|226197|226198|226199|226200|226201|226202|226203|226204|226205|226206|226207|226208|226209|226210|226211|226212|226213|226214|232035|234901|235190|236459|236461|236462|236463|236468|236469|236471|236477|236479|236481|236689|241649|242978|242980|244978|245074|246794|260191|260192|261167|261756|285273|287660|287661|329235|329239|329240|329250|339487|339491|339517|345274|345280|345282|346666|346669|346670|346680|346681|353557|358932|360710|360711|360712|360713|360714|360715|360716|360717|360718|361700|361709|362768|362770|362771|362772|362775|362776|362777|362778|362779|362813|362814|362815|362816|362837|362838|362853|362854|362855|362869|362870|362871|362872|362873|362874|362887|362894|362895|362896|362912|362914|362915|362928|362929|362930|362931|363036|363067|363068|363082|363083|363084|363085|363122|363123|363124|363125|363194|363197|363202|363212|363222|363223|363244|363282|363283|363285|363286|363287|363288|363289|363290|363293|363294|363295|363296|363297|363298|363299|363300|363301|363312|363330|363331|363332|363333|363334|363335|363348|363349|363350|363351|363352|363353|363354|363355|363356|363357|363360|363361|363362|363363|363364|363365|363366|363367|363368|363369|363370|363376|363377|363378|363379|363380|363381|363384|363385|363386|363388|363396|363397|363398|363399|363400|363410|363411|363412|363420|363438|363439|363440|363441|363442|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363473|363474|363475|363476|363477|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363496|363497|363498|363499|363500|363501|363502|363503|363504|363505|363506|363507|363508|363509|363510|363511|363512|363513|363514|363515|363516|363517|363518|363519|363520|363521|363522|363523|363524|363525|363526|363527|363528|363529|363530|363531|363534|363535|363536|363537|363538|363539|363540|363541|363542|363543|363544|363545|363546|363547|363548|363549|363550|363551|363552|363553|363554|363555|363556|363557|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|363572|363573|363574|363575|363576|363583|363616|363625|363626|397056|399686|404713|423237|423238|423239|423240|423241|423242|423243|423244|423245|423246|423247|423248|423249|423251|423252|423863|432763|439931|456783|468319|538651|550689|550696|550708|550718|550725|677269|903496|903497|970861|971006|973095", + "upstreamId": "18058|18062|19777|20642|22852|22868|23582|24361|24364|27386|27388|27393|27394|27395|27397|27398|27403|27404|27405|27407|27408|27409|27413|27418|27422|27640|27641|27642|27645|27651|27652|28691|28692|28693|28694|28695|28696|28698|28916|29022|30972|30973|32700|32710|32716|33122|36171|36173|40609|40610|44227|45948|45979|45994|46029|46042|46079|46093|46126|46150|46179|46215|46247|46275|46332|46355|46371|46373|46454|46488|46540|46546|46577|46593|46599|46632|46642|46709|46761|46788|46795|46807|46814|48304|48834|49979|49980|49981|49982|49983|49995|49999|50004|50008|50222|50248|50267|52763|54155|54158|54633|65786|65799|65854|65860|65917|65926|66022|66027|66101|66256|66274|66350|66363|66564|66646|66676|66687|66755|66774|66795|66994|67015|67021|67075|67175|67194|67227|67411|67494|67516|67566|68211|68810|68893|68894|68929|69038|69048|69099|69115|69122|69139|69189|69218|69225|69271|69274|69324|69447|69477|69554|69616|69624|69640|69654|69786|69828|69841|69863|69923|69926|69929|69936|69954|69957|69969|69973|70037|70044|70055|70074|70080|70147|70247|70258|70268|70271|70393|70439|96830|97022|97207|97280|97306|98735|102665|102669|102683|102755|102799|131163|131526|133271|133272|133274|133276|133277|133499|133499|133501|133517|137701|139098|139844|140244|140270|150515|150535|150855|150869|150977|151322|151476|151721|151732|151897|152021|152371|152428|152582|166215|166218|171613|171614|173901|176503|179419|180937|180995|181000|181001|181005|182783|183706|183802|183816|183974|184068|185267|185345|185350|185366|185367|185371|185375|185384|185394|187953|206650|208406|213392|213398|213402|213943|222311|222394|222738|226152|226153|226154|226155|226156|226157|226158|226159|226160|226161|226162|226163|226164|226165|226166|226167|226168|226169|226170|226171|226172|226173|226174|226175|226176|226177|226178|226179|226180|226181|226182|226183|226184|226185|226186|226187|226188|226189|226190|226191|226192|226193|226194|226195|226196|226197|226198|226199|226200|226201|226202|226203|226204|226205|226206|226207|226208|226209|226210|226211|226212|226213|226214|232035|234901|235190|236459|236461|236462|236463|236468|236469|236471|236477|236479|236481|236689|241649|242978|242980|244978|245074|246794|260191|260192|261167|261756|285273|287660|287661|329235|329239|329240|329250|339487|339491|339517|345274|345280|345282|346666|346669|346670|346680|346681|353557|358932|360710|360711|360712|360713|360714|360715|360716|360717|360718|361700|361709|362768|362770|362771|362772|362775|362776|362777|362778|362779|362813|362814|362815|362816|362837|362838|362853|362854|362855|362869|362870|362871|362872|362873|362874|362887|362894|362895|362896|362912|362914|362915|362928|362929|362930|362931|363036|363067|363068|363082|363083|363084|363085|363122|363123|363124|363125|363194|363197|363202|363212|363222|363223|363244|363282|363283|363285|363286|363287|363288|363289|363290|363293|363294|363295|363296|363297|363298|363299|363300|363301|363312|363330|363331|363332|363333|363334|363335|363348|363349|363350|363351|363352|363353|363354|363355|363356|363357|363360|363361|363362|363363|363364|363365|363366|363367|363368|363369|363370|363376|363377|363378|363379|363380|363381|363384|363385|363386|363388|363396|363397|363398|363399|363400|363410|363411|363412|363420|363438|363439|363440|363441|363442|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363473|363474|363475|363476|363477|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363496|363497|363498|363499|363500|363501|363502|363503|363504|363505|363506|363507|363508|363509|363510|363511|363512|363513|363514|363515|363516|363517|363518|363519|363520|363521|363522|363523|363524|363525|363526|363527|363528|363529|363530|363531|363534|363535|363536|363537|363538|363539|363540|363541|363542|363543|363544|363545|363546|363547|363548|363549|363550|363551|363552|363553|363554|363555|363556|363557|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|363572|363573|363574|363575|363576|363583|363616|363625|363626|397056|399686|404713|423237|423238|423239|423240|423241|423242|423243|423244|423245|423246|423247|423248|423249|423251|423252|423863|432763|439931|456783|468319|538651|550689|550696|550708|550718|550725|677269|903496|903497|970861|971006|973095", "text": "Breast neoplasm" }, { - "baseId": "18060|18061|18062|18084|18086|48348", + "upstreamId": "18060|18061|18062|18084|18086|48348", "text": "Ataxia-telangiectasia variant" }, { - "baseId": "18066", + "upstreamId": "18066", "text": "B-cell non-Hodgkin lymphoma" }, { - "baseId": "18067|18068", + "upstreamId": "18067|18068", "text": "Ataxia-telangiectasia without immunodeficiency" }, { - "baseId": "18075|21979|24357|24358|24359|24361|24364|24367|24381|24388|27388|32700|32701|32705|32706|32710|32712|32713|32714|32716|32720|32721|32722|32723|32733|39241|45942|45946|45972|45974|45979|45982|45986|45991|45997|46000|46002|46005|46006|46010|46015|46021|46022|46029|46034|46079|46098|46099|46101|46110|46116|46121|46122|46125|46134|46154|46168|46172|46176|46179|46191|46192|46194|46196|46210|46215|46228|46234|46237|46242|46249|46254|46258|46259|46265|46268|46278|46281|46290|46318|46324|46326|46340|46349|46354|46357|46362|46373|46382|46402|46415|46421|46427|46430|46434|46442|46448|46466|46468|46471|46473|46479|46485|46498|46499|46506|46510|46514|46519|46531|46539|46540|46545|46551|46563|46576|46583|46584|46593|46599|46602|46604|46616|46620|46633|46635|46642|46652|46653|46659|46681|46682|46690|46697|46698|46708|46717|46724|46748|46749|46750|46757|46759|46761|46763|46764|46767|46773|46776|46777|46783|46789|46796|46797|46798|46804|46807|46818|46822|49979|49980|49981|49982|49985|49987|49988|49998|50000|50001|50002|50003|50009|50011|50244|50248|50249|50250|50260|50268|50270|50274|65711|65731|65758|65789|65807|65837|65860|65861|65898|65914|65926|65928|65946|65967|65973|66005|66017|66034|66038|66045|66046|66063|66074|66077|66087|66094|66103|66129|66149|66213|66215|66238|66243|66247|66257|66260|66334|66336|66344|66345|66352|66481|66564|66565|66568|66571|66580|66599|66618|66620|66622|66673|66675|66726|66773|66802|66813|66844|66848|66849|66867|66890|66893|66907|66914|66917|66928|66966|66992|67010|67021|67069|67115|67130|67131|67151|67168|67183|67199|67215|67227|67232|67252|67274|67360|67424|67431|67468|67494|67529|67537|67543|67566|67584|67587|68769|68780|68783|68797|68807|68819|68824|68867|68897|68910|68945|68970|68977|69038|69083|69084|69091|69098|69109|69114|69128|69134|69136|69145|69183|69223|69232|69253|69271|69299|69319|69324|69331|69341|69361|69416|69420|69457|69483|69507|69553|69574|69597|69616|69617|69624|69627|69637|69654|69754|69759|69760|69778|69784|69792|69821|69840|69858|69883|69896|69912|69923|69960|70011|70034|70042|70068|70069|70088|70111|70132|70147|70148|70190|70209|70247|70268|70272|70276|70302|70305|70309|70355|70390|70411|70436|70442|95212|95227|96158|96275|96946|96969|96978|96988|97061|97113|97245|97252|102755|102763|131073|131182|131236|131263|131381|131418|131464|131466|131485|131654|132102|132133|132193|132267|132274|132871|132904|133177|133350|133499|133506|133525|133532|133549|133623|133658|136529|139509|140240|140264|150759|150809|151086|151166|151343|151347|151482|151581|151787|151882|151983|152009|152057|152261|152428|152588|165971|176641|180554|180620|181112|181842|181980|182906|183641|183647|183737|183754|183819|183833|183894|183936|183938|183940|184006|184047|184069|184430|184954|185011|185015|185046|185104|186176|186442|186449|186452|186456|186458|186540|186545|213065|213320|213398|221277|221577|222097|222118|222344|222348|232013|232302|233710|234125|234718|234777|234781|235005|235896|235935|236182|241681|241689|242788|242857|244627|244856|246842|249040|261086|261622|261962|262097|262098|262100|262104|262105|262957|338575|399292|399761|401997|402512|409981|410136|410163|424714|427530|427541|427542|427550|427560|429493|429494|434964|472498|474340|476710|477057|477171|478499|480120|528265|529827|590169|590170|590171|590172|590173|590174|615054|615055|615056|615057|615058|615059|615060|615142|615143|615144|615145|615231|618070|685134|815341|835108|845702|903952|904018|904019|977336|977337|977338|977339|977340|977341|977342|977343|977344|977345|977346|977347|977348|977349|977350|977351|977352|977353|977354|977355|977356|977357|977358", + "upstreamId": "18075|21979|24357|24358|24359|24361|24364|24367|24381|24388|27388|32700|32701|32705|32706|32710|32712|32713|32714|32716|32720|32721|32722|32723|32733|39241|45942|45946|45972|45974|45979|45982|45986|45991|45997|46000|46002|46005|46006|46010|46015|46021|46022|46029|46034|46079|46098|46099|46101|46110|46116|46121|46122|46125|46134|46154|46168|46172|46176|46179|46191|46192|46194|46196|46210|46215|46228|46234|46237|46242|46249|46254|46258|46259|46265|46268|46278|46281|46290|46318|46324|46326|46340|46349|46354|46357|46362|46373|46382|46402|46415|46421|46427|46430|46434|46442|46448|46466|46468|46471|46473|46479|46485|46498|46499|46506|46510|46514|46519|46531|46539|46540|46545|46551|46563|46576|46583|46584|46593|46599|46602|46604|46616|46620|46633|46635|46642|46652|46653|46659|46681|46682|46690|46697|46698|46708|46717|46724|46748|46749|46750|46757|46759|46761|46763|46764|46767|46773|46776|46777|46783|46789|46796|46797|46798|46804|46807|46818|46822|49979|49980|49981|49982|49985|49987|49988|49998|50000|50001|50002|50003|50009|50011|50244|50248|50249|50250|50260|50268|50270|50274|65711|65731|65758|65789|65807|65837|65860|65861|65898|65914|65926|65928|65946|65967|65973|66005|66017|66034|66038|66045|66046|66063|66074|66077|66087|66094|66103|66129|66149|66213|66215|66238|66243|66247|66257|66260|66334|66336|66344|66345|66352|66481|66564|66565|66568|66571|66580|66599|66618|66620|66622|66673|66675|66726|66773|66802|66813|66844|66848|66849|66867|66890|66893|66907|66914|66917|66928|66966|66992|67010|67021|67069|67115|67130|67131|67151|67168|67183|67199|67215|67227|67232|67252|67274|67360|67424|67431|67468|67494|67529|67537|67543|67566|67584|67587|68769|68780|68783|68797|68807|68819|68824|68867|68897|68910|68945|68970|68977|69038|69083|69084|69091|69098|69109|69114|69128|69134|69136|69145|69183|69223|69232|69253|69271|69299|69319|69324|69331|69341|69361|69416|69420|69457|69483|69507|69553|69574|69597|69616|69617|69624|69627|69637|69654|69754|69759|69760|69778|69784|69792|69821|69840|69858|69883|69896|69912|69923|69960|70011|70034|70042|70068|70069|70088|70111|70132|70147|70148|70190|70209|70247|70268|70272|70276|70302|70305|70309|70355|70390|70411|70436|70442|95212|95227|96158|96275|96946|96969|96978|96988|97061|97113|97245|97252|102755|102763|131073|131182|131236|131263|131381|131418|131464|131466|131485|131654|132102|132133|132193|132267|132274|132871|132904|133177|133350|133499|133506|133525|133532|133549|133623|133658|136529|139509|140240|140264|150759|150809|151086|151166|151343|151347|151482|151581|151787|151882|151983|152009|152057|152261|152428|152588|165971|176641|180554|180620|181112|181842|181980|182906|183641|183647|183737|183754|183819|183833|183894|183936|183938|183940|184006|184047|184069|184430|184954|185011|185015|185046|185104|186176|186442|186449|186452|186456|186458|186540|186545|213065|213320|213398|221277|221577|222097|222118|222344|222348|232013|232302|233710|234125|234718|234777|234781|235005|235896|235935|236182|241681|241689|242788|242857|244627|244856|246842|249040|261086|261622|261962|262097|262098|262100|262104|262105|262957|338575|399292|399761|401997|402512|409981|410136|410163|424714|427530|427541|427542|427550|427560|429493|429494|434964|472498|474340|476710|477057|477171|478499|480120|528265|529827|590169|590170|590171|590172|590173|590174|615054|615055|615056|615057|615058|615059|615060|615142|615143|615144|615145|615231|618070|685134|815341|835108|845702|903952|904018|904019|977336|977337|977338|977339|977340|977341|977342|977343|977344|977345|977346|977347|977348|977349|977350|977351|977352|977353|977354|977355|977356|977357|977358", "text": "Breast and/or ovarian cancer" }, { - "baseId": "18078|18079|18080", + "upstreamId": "18078|18079|18080", "text": "Mantle cell lymphoma" }, { - "baseId": "18086|20637|20642|21861|21985|24356|24357|24358|24359|24361|24364|24365|24367|24368|24379|24381|24383|24384|24385|24386|24387|24388|27285|27421|32699|32700|32701|32704|32705|32706|32708|32709|32710|32711|32712|32713|32714|32715|32716|32720|32721|32722|32723|32724|32732|32733|32734|39241|40236|45222|45942|45943|45944|45945|45946|45947|45948|45949|45954|45955|45957|45958|45960|45962|45965|45967|45968|45969|45970|45971|45972|45973|45974|45976|45977|45978|45979|45981|45982|45983|45986|45991|45992|45994|45996|45997|45999|46000|46001|46002|46002|46003|46005|46006|46007|46008|46010|46011|46012|46013|46015|46017|46018|46019|46020|46021|46022|46023|46024|46025|46026|46027|46028|46029|46030|46031|46032|46033|46034|46035|46036|46037|46039|46041|46042|46043|46044|46045|46046|46047|46049|46050|46055|46060|46061|46062|46063|46065|46066|46069|46072|46073|46077|46078|46079|46080|46081|46082|46083|46084|46085|46086|46087|46090|46091|46092|46093|46097|46098|46099|46100|46101|46102|46103|46104|46105|46109|46110|46111|46112|46115|46116|46117|46118|46119|46120|46121|46122|46125|46126|46127|46129|46130|46131|46132|46134|46136|46137|46138|46140|46141|46142|46144|46149|46150|46152|46154|46154|46155|46156|46157|46159|46160|46162|46163|46164|46167|46168|46169|46170|46171|46172|46175|46176|46177|46179|46180|46181|46183|46184|46184|46185|46186|46187|46188|46189|46190|46191|46192|46193|46194|46195|46196|46197|46198|46199|46200|46201|46202|46203|46204|46206|46207|46210|46210|46212|46213|46214|46215|46216|46217|46219|46220|46223|46227|46228|46229|46230|46231|46232|46233|46234|46235|46236|46237|46238|46239|46240|46241|46242|46242|46245|46247|46248|46249|46251|46252|46253|46254|46255|46256|46257|46258|46259|46262|46264|46265|46266|46268|46270|46271|46273|46274|46275|46276|46277|46278|46280|46281|46282|46283|46285|46286|46287|46289|46290|46291|46292|46293|46294|46295|46297|46298|46299|46300|46301|46302|46306|46307|46308|46309|46310|46311|46312|46314|46315|46316|46318|46319|46320|46321|46323|46324|46325|46326|46327|46328|46330|46331|46332|46334|46335|46337|46340|46341|46342|46343|46344|46347|46349|46350|46352|46354|46355|46356|46357|46359|46360|46362|46363|46365|46366|46367|46368|46370|46371|46372|46373|46375|46376|46380|46382|46384|46385|46386|46388|46389|46390|46391|46393|46395|46396|46397|46398|46399|46401|46402|46403|46404|46406|46407|46408|46409|46410|46411|46412|46413|46414|46415|46417|46418|46419|46421|46422|46423|46424|46427|46429|46431|46432|46433|46434|46436|46438|46439|46441|46442|46443|46445|46447|46448|46451|46453|46454|46455|46456|46458|46460|46461|46462|46464|46465|46466|46468|46469|46470|46471|46472|46473|46475|46476|46480|46481|46482|46483|46484|46485|46486|46487|46488|46491|46492|46493|46494|46495|46496|46497|46498|46499|46500|46501|46502|46504|46505|46506|46507|46508|46509|46510|46511|46512|46513|46514|46515|46516|46517|46519|46520|46521|46523|46524|46525|46528|46529|46530|46531|46531|46532|46533|46534|46535|46536|46537|46539|46540|46541|46542|46543|46544|46545|46546|46548|46549|46551|46552|46553|46554|46555|46557|46558|46559|46560|46561|46562|46563|46564|46565|46566|46567|46568|46569|46570|46571|46572|46574|46575|46576|46577|46578|46579|46580|46581|46582|46583|46584|46585|46586|46588|46589|46590|46592|46593|46594|46595|46597|46598|46599|46601|46602|46603|46604|46606|46607|46608|46609|46610|46615|46616|46617|46618|46619|46620|46621|46622|46623|46624|46625|46626|46627|46628|46629|46631|46632|46633|46634|46635|46637|46638|46639|46640|46641|46642|46645|46647|46649|46650|46651|46652|46653|46655|46656|46657|46658|46659|46660|46661|46662|46663|46664|46665|46666|46666|46667|46668|46669|46670|46672|46675|46677|46678|46679|46680|46681|46682|46687|46687|46688|46690|46691|46692|46693|46694|46695|46696|46697|46698|46699|46701|46702|46703|46704|46705|46707|46708|46711|46711|46713|46715|46717|46718|46719|46720|46722|46723|46724|46725|46726|46729|46731|46732|46733|46734|46735|46736|46739|46740|46741|46742|46744|46745|46746|46747|46748|46749|46750|46751|46752|46753|46754|46755|46756|46757|46758|46759|46760|46761|46763|46764|46765|46766|46767|46768|46769|46771|46771|46773|46774|46775|46776|46777|46778|46779|46780|46781|46783|46784|46785|46786|46787|46788|46789|46790|46791|46792|46793|46794|46795|46796|46797|46798|46799|46800|46802|46803|46804|46806|46807|46808|46809|46810|46811|46813|46814|46815|46816|46817|46818|46819|46820|46822|46823|49978|49979|49980|49981|49982|49983|49984|49985|49986|49987|49988|49990|49992|49995|49997|49998|49999|50000|50001|50002|50003|50004|50006|50007|50008|50009|50011|50087|50162|50242|50243|50244|50245|50246|50247|50248|50249|50250|50251|50252|50253|50254|50255|50256|50257|50260|50262|50264|50265|50266|50267|50268|50269|50270|50271|50274|51230|65706|65707|65709|65711|65713|65714|65715|65716|65717|65721|65722|65724|65725|65727|65728|65732|65733|65734|65735|65736|65738|65739|65742|65745|65748|65751|65753|65754|65755|65758|65760|65761|65762|65768|65770|65773|65776|65777|65781|65784|65788|65789|65796|65797|65798|65799|65803|65804|65827|65828|65831|65832|65834|65836|65837|65838|65843|65845|65846|65849|65850|65852|65853|65854|65855|65857|65858|65860|65861|65864|65865|65867|65868|65872|65874|65875|65876|65878|65880|65883|65884|65886|65888|65889|65898|65902|65903|65904|65912|65914|65916|65917|65919|65925|65926|65927|65928|65934|65935|65937|65942|65945|65946|65949|65950|65954|65956|65959|65960|65962|65966|65970|65973|65975|65976|65983|65985|65986|65990|65994|65996|65998|65999|66000|66008|66010|66011|66012|66013|66015|66017|66020|66021|66023|66024|66025|66030|66031|66034|66036|66038|66039|66040|66041|66043|66045|66046|66047|66049|66050|66052|66053|66057|66059|66061|66063|66065|66068|66071|66074|66077|66078|66080|66081|66082|66083|66085|66086|66087|66089|66090|66091|66094|66096|66100|66101|66103|66110|66114|66116|66118|66121|66124|66128|66129|66133|66135|66139|66147|66148|66149|66152|66153|66154|66156|66157|66158|66161|66163|66169|66170|66171|66172|66177|66183|66184|66191|66193|66198|66199|66202|66203|66205|66206|66211|66212|66213|66214|66215|66223|66230|66232|66245|66246|66247|66249|66251|66252|66254|66256|66257|66258|66260|66267|66270|66279|66282|66284|66285|66286|66287|66289|66291|66292|66295|66296|66299|66300|66301|66303|66304|66306|66308|66309|66310|66311|66312|66313|66314|66315|66316|66318|66319|66320|66321|66325|66328|66329|66337|66339|66342|66344|66345|66346|66350|66351|66352|66354|66355|66358|66360|66362|66363|66366|66369|66370|66372|66376|66377|66384|66385|66387|66389|66398|66400|66403|66404|66409|66411|66413|66414|66415|66418|66419|66423|66424|66425|66429|66433|66434|66435|66438|66441|66443|66447|66448|66449|66452|66454|66459|66462|66463|66465|66466|66467|66468|66469|66469|66470|66471|66478|66479|66481|66482|66486|66488|66490|66491|66492|66493|66494|66496|66499|66500|66501|66503|66504|66508|66509|66510|66514|66519|66520|66521|66523|66526|66527|66528|66530|66531|66532|66533|66539|66541|66543|66544|66546|66548|66549|66552|66553|66558|66559|66560|66563|66564|66565|66568|66571|66579|66580|66581|66587|66593|66595|66596|66598|66599|66601|66603|66604|66608|66611|66612|66616|66618|66620|66622|66625|66626|66627|66631|66640|66641|66647|66649|66650|66655|66658|66659|66663|66666|66669|66671|66673|66675|66683|66684|66685|66688|66690|66692|66693|66697|66700|66703|66714|66716|66722|66725|66726|66728|66737|66739|66742|66751|66754|66755|66762|66764|66765|66769|66770|66773|66774|66775|66776|66781|66783|66784|66787|66789|66790|66791|66794|66799|66802|66804|66806|66807|66813|66814|66817|66819|66823|66824|66827|66828|66829|66831|66832|66833|66842|66845|66846|66848|66850|66851|66852|66854|66855|66856|66859|66861|66864|66866|66867|66870|66871|66878|66880|66881|66882|66884|66885|66888|66890|66893|66894|66899|66900|66903|66905|66906|66907|66907|66909|66909|66910|66911|66913|66914|66915|66916|66917|66918|66919|66922|66924|66925|66926|66927|66928|66929|66945|66947|66949|66954|66955|66962|66966|66967|66968|66970|66974|66976|66977|66980|66983|66985|66989|66994|66995|66996|66998|67002|67003|67006|67007|67009|67010|67013|67015|67017|67021|67022|67028|67030|67031|67032|67033|67035|67040|67041|67042|67046|67050|67054|67060|67062|67063|67064|67068|67069|67073|67074|67077|67078|67080|67082|67085|67086|67087|67090|67091|67092|67093|67095|67098|67099|67101|67104|67105|67108|67109|67119|67121|67130|67131|67131|67134|67136|67138|67139|67139|67140|67142|67143|67146|67148|67149|67151|67153|67154|67155|67157|67161|67162|67163|67164|67165|67171|67172|67174|67175|67177|67178|67180|67181|67183|67184|67188|67189|67197|67203|67204|67205|67206|67214|67215|67218|67223|67224|67227|67228|67230|67231|67233|67234|67235|67236|67237|67241|67249|67250|67253|67254|67257|67258|67260|67262|67264|67266|67267|67270|67271|67273|67274|67275|67277|67278|67279|67283|67284|67285|67288|67290|67291|67292|67293|67294|67295|67299|67309|67310|67311|67323|67324|67326|67327|67330|67335|67336|67337|67339|67340|67341|67343|67350|67355|67357|67359|67360|67362|67365|67369|67371|67373|67376|67379|67382|67384|67389|67391|67393|67396|67399|67400|67407|67410|67411|67412|67417|67419|67421|67425|67427|67428|67431|67434|67435|67437|67438|67440|67441|67447|67448|67452|67453|67457|67458|67459|67461|67462|67466|67467|67468|67470|67472|67473|67476|67482|67485|67491|67493|67494|67496|67497|67498|67499|67505|67506|67507|67508|67509|67510|67515|67516|67517|67522|67524|67535|67537|67538|67539|67540|67541|67542|67543|67544|67545|67547|67548|67549|67550|67551|67552|67554|67556|67558|67559|67562|67563|67564|67565|67566|67570|67573|67574|67576|67578|67579|67583|67584|67585|67586|67587|67588|67592|68766|68768|68769|68770|68775|68776|68777|68780|68781|68784|68787|68789|68790|68791|68795|68797|68802|68808|68810|68812|68813|68818|68819|68821|68824|68825|68829|68833|68838|68840|68841|68844|68845|68853|68855|68857|68858|68861|68867|68868|68869|68870|68871|68874|68881|68882|68887|68889|68891|68893|68894|68897|68898|68899|68901|68902|68909|68913|68914|68915|68918|68919|68921|68922|68924|68925|68931|68933|68935|68941|68942|68944|68945|68956|68958|68959|68962|68964|68965|68970|68971|68976|68977|68978|68980|68985|68989|68996|68997|68998|69001|69002|69015|69016|69018|69020|69028|69031|69033|69034|69036|69038|69040|69043|69044|69046|69048|69050|69052|69054|69056|69060|69061|69063|69066|69067|69068|69071|69073|69074|69077|69078|69079|69083|69084|69090|69091|69092|69098|69099|69100|69105|69109|69110|69114|69119|69121|69123|69124|69126|69128|69129|69131|69132|69134|69136|69137|69138|69145|69151|69152|69158|69159|69162|69166|69170|69171|69172|69174|69175|69177|69178|69179|69183|69184|69185|69189|69194|69207|69211|69212|69213|69216|69218|69219|69223|69224|69225|69226|69227|69228|69230|69232|69234|69235|69237|69239|69242|69244|69249|69250|69251|69252|69257|69258|69267|69271|69276|69277|69279|69280|69281|69284|69286|69287|69289|69292|69296|69299|69301|69309|69312|69313|69319|69320|69322|69323|69324|69325|69327|69328|69330|69331|69332|69335|69340|69344|69345|69350|69355|69360|69361|69362|69363|69367|69368|69369|69370|69376|69393|69394|69395|69402|69403|69405|69409|69410|69411|69413|69414|69416|69417|69418|69420|69422|69424|69425|69428|69430|69435|69439|69443|69447|69451|69456|69463|69465|69471|69472|69473|69474|69477|69479|69482|69483|69486|69488|69491|69493|69494|69497|69499|69500|69503|69507|69508|69509|69512|69513|69514|69516|69517|69519|69521|69522|69525|69526|69527|69528|69535|69538|69540|69543|69552|69554|69557|69563|69569|69578|69580|69584|69587|69590|69593|69596|69597|69598|69599|69602|69608|69609|69615|69616|69617|69618|69620|69623|69624|69626|69627|69630|69636|69637|69639|69640|69645|69646|69648|69649|69652|69654|69659|69661|69662|69672|69675|69676|69677|69679|69682|69683|69687|69689|69694|69699|69702|69705|69706|69707|69710|69711|69712|69713|69716|69717|69720|69721|69726|69728|69729|69731|69737|69739|69744|69749|69752|69753|69759|69760|69761|69762|69766|69772|69774|69778|69779|69781|69782|69784|69787|69792|69794|69798|69802|69807|69812|69818|69821|69822|69823|69824|69831|69834|69835|69839|69841|69843|69845|69850|69854|69858|69860|69863|69864|69870|69871|69875|69877|69878|69880|69880|69881|69883|69886|69887|69888|69890|69891|69896|69897|69901|69902|69903|69904|69905|69906|69909|69910|69912|69914|69916|69918|69919|69920|69922|69923|69924|69926|69929|69930|69936|69938|69939|69941|69943|69945|69946|69947|69950|69951|69957|69960|69961|69968|69969|69971|69972|69976|69978|69981|69988|69989|69993|69994|69995|70000|70008|70008|70009|70011|70012|70013|70016|70017|70022|70025|70030|70031|70034|70035|70036|70037|70041|70044|70046|70050|70054|70055|70060|70061|70062|70063|70067|70068|70069|70070|70073|70074|70077|70078|70079|70082|70087|70088|70090|70091|70094|70096|70098|70100|70101|70105|70108|70113|70116|70117|70118|70118|70120|70123|70125|70127|70128|70129|70130|70132|70140|70145|70147|70148|70156|70167|70168|70169|70172|70174|70175|70177|70180|70182|70184|70189|70190|70191|70194|70197|70204|70206|70208|70210|70211|70212|70213|70219|70226|70228|70235|70238|70241|70244|70245|70247|70248|70251|70252|70256|70257|70258|70263|70265|70268|70271|70272|70274|70275|70276|70279|70280|70281|70282|70285|70288|70289|70294|70295|70299|70300|70301|70302|70304|70309|70313|70323|70326|70333|70334|70336|70337|70339|70341|70342|70343|70349|70350|70356|70358|70363|70374|70375|70376|70377|70386|70387|70388|70390|70392|70393|70394|70402|70410|70411|70412|70414|70420|70421|70422|70425|70426|70433|70434|70436|70438|70439|70442|70443|70447|70574|94582|94583|94585|94586|94587|94589|94590|94591|94592|94595|94597|94598|94599|94601|94602|94603|94604|94606|94607|94608|94609|94610|94974|95127|95343|95601|95777|96035|96058|96157|96350|96470|96590|96826|96886|96887|96888|96891|96892|96893|96895|96896|96898|96899|96900|96902|96903|96904|96905|96906|96907|96908|96909|96910|96912|96914|96915|96916|96917|96918|96919|96921|96924|96926|96927|96928|96929|96931|96932|96933|96934|96935|96936|96937|96938|96939|96940|96942|96943|96944|96946|96947|96949|96952|96953|96954|96955|96956|96958|96959|96960|96961|96962|96963|96964|96965|96966|96967|96968|96969|96970|96973|96975|96978|96979|96980|96981|96983|96985|96988|96991|96992|96995|96996|96997|96998|96999|97001|97002|97003|97004|97009|97010|97011|97013|97016|97017|97018|97019|97020|97021|97022|97024|97025|97027|97028|97029|97030|97031|97033|97034|97035|97036|97039|97043|97045|97047|97050|97051|97053|97054|97055|97058|97059|97060|97061|97064|97068|97069|97070|97071|97074|97079|97080|97081|97082|97083|97087|97088|97089|97091|97094|97099|97101|97104|97105|97106|97107|97108|97109|97111|97112|97113|97115|97116|97117|97118|97119|97121|97122|97124|97125|97126|97127|97128|97129|97130|97131|97132|97134|97135|97136|97138|97141|97143|97144|97145|97208|97209|97210|97211|97212|97213|97215|97221|97222|97224|97225|97227|97228|97229|97231|97232|97234|97235|97236|97237|97239|97241|97242|97244|97245|97248|97249|97250|97251|97252|97253|97256|97257|97261|97262|97264|97265|97266|97268|97270|97271|97273|97274|97275|97276|97277|97278|97279|97280|97281|97282|97283|97286|97287|97288|97289|97291|97292|97293|97294|97295|97298|97299|97304|97306|97307|97309|97310|97314|102661|102663|102664|102665|102666|102667|102669|102670|102671|102673|102674|102675|102680|102681|102682|102683|102684|102685|102686|102688|102689|102690|102691|102692|102695|102696|102698|102700|102701|102707|102708|102709|102710|102711|102713|102714|102715|102716|102717|102719|102720|102722|102724|102726|102728|102729|102730|102731|102732|102733|102735|102736|102738|102740|102741|102743|102744|102745|102747|102748|102750|102751|102752|102754|102755|102756|102757|102758|102763|102764|102765|102766|102767|102769|102770|102772|102774|102775|102776|102777|102778|102779|102780|102781|102782|102784|102785|102786|102787|102788|102790|102791|102792|102793|102797|102799|102806|102807|102808|102812|102813|102814|102815|102816|102820|102821|102823|102824|102825|102827|102830|102832|102834|102835|102837|102839|102841|102843|102844|102845|102846|102847|102851|102854|102856|102857|102858|131002|131003|131005|131009|131029|131033|131038|131039|131041|131042|131046|131051|131055|131057|131059|131061|131063|131074|131080|131084|131086|131090|131092|131093|131101|131104|131105|131108|131117|131127|131128|131131|131133|131139|131141|131148|131154|131158|131163|131168|131182|131189|131196|131202|131204|131210|131211|131213|131216|131218|131219|131220|131223|131235|131239|131241|131247|131248|131253|131260|131262|131263|131264|131265|131267|131271|131276|131278|131294|131297|131299|131306|131315|131316|131321|131324|131336|131341|131342|131348|131362|131363|131365|131369|131370|131381|131382|131383|131384|131389|131390|131393|131394|131394|131404|131411|131412|131418|131419|131421|131422|131423|131425|131434|131435|131438|131440|131445|131446|131464|131466|131471|131474|131481|131482|131483|131484|131485|131493|131494|131512|131514|131516|131517|131518|131522|131526|131527|131530|131533|131534|131536|131538|131539|131541|131548|131552|131554|131556|131560|131565|131567|131568|131570|131572|131573|131575|131583|131587|131597|131600|131602|131603|131604|131610|131611|131620|131626|131629|131634|131637|131638|131643|131651|131656|131661|131662|131663|131666|131671|131673|131677|131678|131693|131696|131698|131701|131706|131707|131712|131716|131719|131721|131726|131727|131733|131737|131739|131740|131741|131749|131751|131752|131754|131755|132108|132116|132133|132139|132206|132217|132218|132221|132239|132242|132244|132249|132792|132824|132834|132844|132846|132986|133073|133074|133177|133182|133211|133268|133284|133330|133339|133340|133341|133343|133347|133349|133350|133351|133352|133353|133355|133374|133447|133449|133501|133510|133521|133538|133546|133574|133590|133601|133637|133651|133658|133659|133661|133664|133666|133668|136435|136452|136476|136491|136507|136512|136518|136526|136527|136528|136529|136530|137379|137437|137449|137463|137464|137465|137467|137468|137469|137471|137472|137473|137474|137475|137476|137477|137481|137482|137492|137494|137585|138785|138794|138809|139097|139499|139502|139503|139505|139506|139507|139508|139509|139511|139513|139514|139515|139517|139518|139519|139520|139521|139522|139524|139525|139526|139527|139528|139529|139530|139531|139532|139533|139551|139660|139790|139791|139792|139793|139794|139796|139797|139798|139799|139800|139801|139802|139803|139804|139805|139844|139872|140240|140241|140242|140243|140244|140245|140246|140247|140248|140249|140250|140252|140253|140254|140254|140255|140256|140257|140258|140259|140260|140261|140262|140263|140264|140265|140266|140268|140269|140270|140271|140272|140273|140274|140275|140276|142580|142582|150558|150563|150566|150587|150589|150593|150644|150646|150672|150676|150680|150681|150689|150701|150703|150704|150705|150706|150711|150722|150723|150727|150731|150745|150748|150752|150782|150784|150786|150789|150790|150791|150798|150800|150801|150802|150804|150805|150806|150807|150811|150814|150817|150818|150829|150832|150840|150841|150842|150866|150867|150869|150876|150913|150926|150928|150936|150948|150957|150961|150968|150973|150974|150977|150985|150986|150997|151015|151022|151047|151049|151059|151071|151085|151106|151113|151142|151144|151171|151172|151173|151174|151175|151179|151182|151183|151192|151195|151212|151218|151219|151220|151221|151223|151242|151251|151253|151263|151278|151286|151292|151340|151343|151344|151347|151371|151372|151409|151416|151437|151443|151455|151458|151494|151496|151497|151500|151502|151503|151505|151506|151507|151508|151512|151513|151518|151520|151521|151522|151523|151525|151526|151528|151532|151536|151540|151562|151564|151567|151571|151577|151581|151583|151611|151613|151615|151620|151638|151664|151667|151675|151689|151699|151700|151701|151716|151718|151720|151733|151737|151740|151742|151744|151745|151746|151750|151768|151787|151796|151801|151807|151809|151816|151822|151823|151826|151828|151829|151839|151908|151929|151942|151972|151995|151996|152002|152004|152009|152011|152015|152017|152021|152022|152026|152027|152048|152080|152097|152099|152105|152109|152110|152112|152117|152136|152138|152142|152145|152162|152184|152190|152226|152234|152241|152248|152261|152282|152302|152312|152319|152321|152322|152325|152329|152330|152331|152340|152341|152342|152343|152344|152345|152348|152353|152356|152358|152360|152363|152369|152370|152376|152379|152387|152401|152408|152434|152442|152443|152448|152466|152474|152485|152489|152490|152496|152497|152498|152501|152506|152507|152508|152509|152511|152521|152527|152528|152543|152545|152546|152547|152548|152549|152550|152560|152561|152562|152569|152575|152576|152579|152580|152581|152582|152583|152587|152588|152599|152615|152632|152637|152640|152645|152664|152677|152685|152692|152699|152700|152701|152711|152712|152714|152715|152738|165962|165963|165965|165966|165969|165972|165974|165975|165978|165979|165980|165981|165983|165984|165985|165986|165987|165989|165990|165992|165993|165995|166252|166254|166256|172180|172181|179970|180040|180044|180056|180139|180408|180552|180554|180555|180557|180559|180560|180561|180562|180563|180564|180568|180569|180570|180571|180572|180573|180575|180576|180577|180578|180579|180580|180581|180582|180583|180585|180588|180590|180591|180592|180595|180597|180598|180600|180601|180602|180603|180606|180607|180608|180610|180612|180613|180615|180620|180621|180622|180623|180627|180630|180632|180634|180635|180636|180638|180639|180640|180641|180642|180643|180646|180648|180649|180650|180651|180655|180656|180657|180660|180661|180665|180667|180668|180669|180670|180671|180673|180676|180677|180678|180680|180681|180682|180683|180685|180686|180688|180689|180690|180691|180692|180693|180695|180696|180697|180699|180701|180702|180718|180736|180805|180806|180811|180812|180813|180814|180815|180816|180818|180819|180822|180824|180825|180828|180830|180831|180834|180835|180838|180839|180840|180842|180843|180845|180847|180851|180852|180853|180855|180857|180859|180861|180863|180866|180868|180870|180871|180876|180877|180880|180882|180884|180886|180888|180890|180891|180892|180894|180895|180896|180902|180903|180908|180920|180926|180934|180947|181090|181145|181218|181219|181314|181316|182551|182581|182598|182611|182841|183210|183280|183336|183467|183487|183505|183611|183612|183613|183614|183615|183616|183617|183618|183619|183621|183622|183623|183625|183627|183631|183632|183634|183635|183637|183638|183639|183641|183644|183645|183647|183649|183650|183651|183652|183653|183656|183657|183658|183660|183661|183662|183663|183664|183665|183666|183668|183669|183671|183672|183673|183674|183675|183678|183680|183682|183684|183686|183688|183691|183692|183693|183694|183697|183700|183701|183702|183703|183705|183706|183707|183708|183710|183711|183712|183714|183715|183717|183718|183719|183720|183722|183724|183725|183727|183728|183730|183731|183732|183733|183734|183735|183736|183737|183738|183739|183741|183742|183744|183746|183747|183749|183750|183751|183752|183753|183754|183756|183757|183759|183761|183764|183765|183766|183767|183768|183771|183773|183774|183777|183779|183781|183782|183783|183785|183786|183788|183791|183792|183794|183795|183796|183798|183800|183804|183805|183806|183808|183809|183811|183812|183813|183815|183816|183818|183819|183820|183821|183822|183823|183824|183825|183826|183827|183828|183829|183831|183832|183833|183834|183835|183836|183837|183838|183841|183842|183843|183844|183845|183846|183848|183850|183851|183852|183853|183855|183858|183859|183860|183861|183862|183863|183864|183865|183866|183867|183868|183870|183872|183873|183874|183875|183876|183879|183880|183881|183883|183884|183885|183890|183891|183892|183893|183894|183897|183900|183901|183902|183903|183904|183905|183911|183916|183917|183918|183920|183922|183924|183925|183926|183927|183928|183930|183933|183934|183935|183936|183938|183940|183942|183947|183948|183949|183951|183953|183954|183957|183958|183959|183960|183961|183962|183963|183964|183965|183966|183967|183968|183969|183970|183971|183973|183974|183975|183979|183980|183981|183983|183984|183990|183991|183991|183995|183997|183998|183999|184000|184002|184005|184006|184007|184008|184009|184010|184011|184013|184020|184021|184023|184024|184025|184027|184028|184029|184030|184031|184032|184034|184036|184040|184041|184043|184044|184045|184047|184055|184057|184058|184062|184063|184064|184065|184066|184068|184069|184071|184072|184073|184074|184075|184076|184077|184078|184080|184082|184083|184084|184085|184086|184087|184089|184093|184094|184095|184096|184097|184099|184101|184103|184104|184105|184207|184244|184249|184272|184342|184476|184733|184806|184818|184861|184862|184863|184864|184866|184867|184868|184869|184870|184871|184872|184874|184875|184876|184877|184883|184884|184885|184887|184890|184890|184894|184899|184900|184902|184904|184905|184906|184909|184910|184911|184912|184913|184918|184919|184920|184922|184923|184924|184929|184930|184932|184935|184936|184937|184942|184943|184944|184946|184947|184948|184953|184954|184955|184957|184960|184965|184966|184967|184968|184969|184970|184973|184976|184977|184978|184979|184980|184981|184982|184984|184986|184987|184988|184989|184990|184991|184993|184994|184995|184996|184997|184998|184999|185000|185001|185002|185004|185005|185007|185008|185009|185011|185013|185015|185016|185017|185021|185024|185025|185026|185028|185030|185031|185038|185043|185044|185045|185047|185048|185050|185051|185052|185053|185055|185056|185057|185060|185064|185065|185066|185067|185070|185071|185074|185075|185077|185079|185081|185085|185086|185087|185088|185089|185090|185091|185092|185093|185094|185096|185097|185098|185099|185100|185101|185102|185104|185106|185109|185111|185113|185115|185116|185117|185119|185120|185122|185123|185125|185127|185128|185131|185156|185157|185160|185165|185251|185282|185292|185305|185308|185622|185623|186168|186169|186170|186171|186172|186174|186175|186176|186179|186180|186181|186182|186183|186184|186185|186238|186239|186255|186256|186257|186258|186259|186260|186261|186441|186442|186443|186449|186451|186452|186454|186455|186457|186542|186544|186547|186548|186551|186872|190027|190716|190857|190859|190860|190952|190953|191244|191406|191407|194260|195361|204644|205810|208045|212851|213017|213018|213019|213020|213023|213024|213025|213026|213027|213028|213029|213030|213031|213033|213034|213036|213037|213038|213039|213041|213042|213043|213044|213045|213046|213047|213048|213050|213051|213052|213055|213056|213057|213058|213060|213061|213062|213064|213065|213066|213068|213070|213071|213072|213073|213074|213075|213078|213079|213080|213081|213082|213083|213086|213087|213088|213090|213091|213092|213093|213094|213095|213096|213097|213098|213099|213234|213235|213236|213237|213238|213239|213303|213304|213305|213306|213308|213309|213310|213311|213312|213313|213314|213315|213316|213317|213318|213319|213320|213321|213322|213323|213324|213325|213326|213327|213328|213329|213330|213331|213332|213333|213334|213335|213336|213337|213339|213340|213354|213370|214915|214916|221254|221576|222060|222124|222180|222269|222270|222272|222273|222274|222275|222276|222277|222278|222279|222280|222281|222282|222284|222286|222287|222288|222289|222290|222291|222292|222293|222294|222295|222296|222297|222298|222299|222300|222301|222302|222303|222304|222305|222306|222307|222308|222309|222310|222311|222312|222313|222315|222316|222317|222318|222319|222320|222321|222322|222323|222324|222325|222326|222327|222328|222329|222330|222331|222333|222334|222335|222336|222337|222339|222340|222341|222342|222343|222344|222345|222346|222347|222348|222349|222350|222352|222354|222355|222356|222458|222546|222547|222548|222549|222644|222645|222646|222647|222648|222649|222650|222651|222653|222654|222655|222656|222657|222658|222659|222660|222661|222662|222663|222664|222665|222666|222667|222668|222669|222670|222671|222673|222674|222675|222676|222677|222678|222679|222681|222682|222683|222684|223598|223599|223600|223601|223602|226155|226156|226159|226160|226162|226168|226169|226173|226175|226184|226189|226193|226201|226204|226207|226211|226352|226364|226810|226814|227195|227390|227519|227527|227529|227530|227531|227532|227533|227534|227535|227538|227539|227544|227551|227557|227559|227567|227577|230442|230443|231854|231855|231856|231858|231864|231866|231869|231871|231872|231873|231875|231876|231877|231879|231880|231881|231882|231884|231886|231887|231888|231891|231892|231893|231894|231896|231897|231898|231899|231900|231902|231903|231905|231907|231908|231910|231911|231995|231997|232123|232424|232522|233358|233995|234205|234341|234364|234590|234593|234594|234595|234598|234604|234607|234611|234612|234616|234618|234619|234620|234623|234629|234631|234635|234637|234638|234640|234644|234645|234646|234647|234650|234653|234656|234659|234660|234661|234662|234664|234665|234667|234670|234675|234676|234679|234681|234682|234685|234686|234690|234692|234694|234696|234699|234702|234705|234707|234709|234711|234712|234715|234718|234720|234722|234723|234727|234730|234732|234733|234741|234742|234748|234749|234750|234751|234752|234753|234755|234756|234760|234762|234763|234767|234771|234772|234774|234775|234777|234779|234780|234782|234783|234786|234787|234789|234790|234791|234792|234795|234796|234797|234801|234802|234807|234811|234813|234814|234815|234817|234818|234820|234825|234827|234829|234830|234831|234832|234839|234841|234842|234843|234850|234851|234853|234856|234862|234865|234868|234870|234873|234876|234881|234883|234887|234889|234891|234892|234897|234900|234902|234905|234909|234914|234915|234916|234919|234921|234923|234929|234931|234932|234933|234934|234935|234938|234939|234941|234942|234945|234946|234948|234949|234950|234951|234952|234954|234956|234957|234958|234959|234961|234962|234964|234966|234969|234970|234973|234974|234976|234977|234978|234982|234983|234983|234985|234991|234993|234994|234995|234999|235000|235001|235005|235006|235007|235008|235009|235012|235013|235015|235017|235018|235019|235020|235021|235022|235027|235036|235040|235044|235045|235046|235048|235049|235050|235052|235054|235059|235061|235063|235065|235066|235070|235072|235074|235076|235077|235078|235180|235689|235710|235726|235863|235871|235906|235912|235922|235927|235928|235932|235935|235939|235940|235941|235942|235943|235945|235946|235949|235953|235956|235958|235964|235965|235968|235972|235974|235976|235978|235980|235981|235982|235983|235984|235987|235993|235996|235997|235998|236000|236002|236003|236004|236006|236007|236008|236009|236014|236015|236018|236020|236021|236022|236027|236028|236029|236034|236040|236043|236044|236046|236048|236051|236053|236054|236055|236057|236060|236062|236066|236068|236073|236076|236078|236079|236080|236082|236086|236089|236093|236094|236095|236096|236099|236100|236101|236102|236103|236105|236107|236108|236109|236110|236111|236112|236116|236117|236120|236122|236123|236126|236127|236130|236131|236132|236133|236136|236137|236139|236140|236141|236142|236143|236148|236150|236152|236153|236154|236156|236157|236160|236161|236162|236163|236166|236167|236169|236172|236176|236177|236178|236179|236180|236181|236182|236183|236184|236185|236188|236210|236214|236223|236229|236622|236649|236715|237817|237822|237823|237829|237833|237835|237839|238846|240956|241633|241634|241635|241636|241637|241638|241639|241640|241641|241642|241643|241644|241645|241646|241647|241648|241649|241650|241651|241652|241653|241654|241655|241656|241657|241658|241659|241660|241662|241663|241664|241665|241666|241667|241668|241669|241670|241671|241672|241673|241674|241675|241676|241677|241678|241679|241680|241681|241682|241684|241685|241686|241687|241688|241689|241691|241692|241693|241694|241695|241696|241698|241699|241700|241701|241702|241703|241704|241705|241706|241710|241712|241713|241714|241715|241716|241717|241718|241719|241720|241721|241722|241723|241724|241725|241728|241731|241732|241733|241734|241736|241737|242362|242684|242718|242720|242729|242753|242756|242757|242758|242759|242760|242762|242763|242765|242767|242768|242770|242771|242773|242775|242777|242778|242779|242780|242781|242783|242784|242785|242786|242787|242788|242789|242790|242791|242792|242793|242794|242795|242796|242798|242799|242800|242801|242802|242803|242804|242806|242807|242808|242809|242810|242811|242812|242814|242815|242816|242818|242835|242836|244338|244612|244843|244844|244845|244849|244850|244851|244852|244853|244854|244856|245014|245017|245019|245022|245027|245028|245029|245030|245031|245033|245037|245038|245039|245041|245042|245043|245047|245051|245053|245054|245055|245056|245057|245058|246784|246788|246789|246791|246794|246795|246796|246797|246800|246802|246803|246805|246811|246812|246815|246820|246822|246823|246825|246827|246832|246838|246842|246845|246849|246851|246853|247086|247087|247214|247219|247220|247221|247223|247224|247226|247227|247228|247229|247230|247231|247232|247235|247236|247241|247245|247248|247249|247250|247254|247256|247257|247258|247260|247261|247264|247267|247272|247274|247275|247276|247277|247286|247288|247290|247292|247439|248505|248510|248516|248518|248519|248520|248522|248523|248524|248525|248526|248527|248529|248530|248534|248536|248908|248910|248911|248913|248926|248943|248950|248952|248962|248973|248980|248989|248990|248994|248995|248997|249004|249005|249013|249014|249020|249022|249028|249029|249035|249040|249054|249057|249059|249064|249065|249070|249073|249086|249087|249091|249096|249105|249124|249126|249127|249129|249151|249155|249160|249163|249164|249171|249179|249181|254847|259408|259529|259534|260043|260044|260045|260046|260047|260169|260170|260173|260257|260360|260986|260987|261008|261013|261038|261039|261045|261055|261056|261072|261073|261077|261086|261091|261099|261106|261107|261117|261119|261120|261128|261132|261139|261140|261147|261149|261152|261158|261165|261167|261168|261170|261174|261175|261181|261186|261191|261192|261195|261200|261210|261213|261216|261225|261228|261229|261235|261237|261239|261241|261244|261255|261259|261260|261269|261271|261273|261278|261281|261283|261285|261298|261306|261312|261313|261314|261316|261323|261332|261334|261335|261336|261344|261350|261352|261357|261358|261361|261362|261363|261365|261369|261370|261375|261387|261389|261395|261397|261409|261410|261413|261415|261417|261419|261423|261430|261434|261435|261437|261443|261445|261447|261456|261459|261467|261468|261479|261482|261490|261491|261494|261499|261503|261511|261515|261530|261541|261543|261546|261556|261557|261562|261572|261573|261597|261609|261611|261615|261632|261635|261638|261642|261644|261645|261660|261664|261668|261679|261684|261696|261723|261726|261727|261739|261763|261767|261778|261779|261786|261791|261795|261802|261806|261807|261813|261815|261821|261827|261828|261831|261835|261837|261838|261845|261852|261855|261873|261879|261887|261894|261907|261908|261918|261923|261941|261943|261954|261962|261971|261978|261984|261987|261997|262016|262020|262024|262098|262101|262808|262815|262822|262828|262833|262835|262841|262844|262845|262850|262852|262856|262860|262863|262879|262921|262923|262927|262946|262952|262953|262956|262957|262977|262978|262979|262981|262987|262989|262993|264514|264580|264668|264675|320553|327916|327918|328613|328624|329355|329374|334213|335896|335912|338560|345292|346052|346053|346056|346058|357674|357906|358704|358888|358890|358892|358925|358928|358934|358942|360711|360712|360714|360717|360718|361610|362213|362214|362215|362216|362217|362356|362357|372685|372687|372696|372699|372709|372717|372726|372732|372734|372739|372763|372775|372780|372802|373354|373371|373401|373412|373418|373422|373423|373436|373449|373454|373460|373464|373497|373503|373513|373516|373652|373658|373664|373673|373676|373678|373679|373681|373689|373691|373698|373703|373706|373712|373725|373727|373745|373759|373766|373768|373777|373794|373801|373806|373816|375046|375066|375071|375081|375090|375098|375101|375103|375112|375567|375576|375577|375592|375608|375612|375614|375628|375671|375961|375974|375977|375980|375983|375986|375993|376005|376012|376032|376035|376045|376082|376083|376085|376093|376095|376097|376098|376101|376102|376124|376133|378220|378226|378236|378243|378261|378263|378278|378283|378289|378295|378296|378301|378304|390695|392435|392548|393024|397874|398191|399092|399098|399124|399127|399129|399131|399135|399141|399144|399152|399155|399158|399161|399162|399168|399172|399173|399181|399183|399185|399190|399191|399199|399203|399207|399211|399213|399215|399216|399219|399221|399225|399227|399234|399248|399262|399263|399267|399268|399269|399275|399280|399281|399284|399287|399292|399299|399302|399308|399309|399311|399312|399320|399322|399324|399327|399331|399333|399334|399336|399337|399338|399339|399347|399348|399351|399353|399355|399361|399363|399364|399366|399367|399369|399370|399372|399373|399374|399378|399381|399382|399385|399387|399389|399392|399393|399394|399395|399396|399397|399400|399402|399404|399406|399407|399409|399411|399412|399413|399416|399418|399420|399423|399426|399430|399437|399442|399445|399447|399449|399452|399458|399460|399464|399465|399470|399477|399485|399488|399493|399497|399498|399604|399607|399629|399633|399642|399646|399649|399651|399656|399665|399677|399683|399686|399702|399710|399714|399717|399745|399753|399754|399759|399763|399773|399780|399786|399797|399804|399805|399823|399825|399828|399837|399842|399844|399848|399851|399854|399860|399861|399864|399867|399870|399872|399878|399880|399882|399883|399886|399888|399889|399890|399894|399895|399896|399898|399899|399903|399904|399907|399909|399914|399923|399924|399929|399931|399934|399936|399939|399941|399948|399951|399952|399955|399956|399960|399961|399963|399965|399967|399970|399979|399983|399986|399988|399990|399992|399995|399996|399997|400000|400003|400008|400014|400018|400023|400030|400032|400036|400038|400040|400048|400049|400050|400051|400058|400061|400063|400067|400069|400070|400077|400106|400107|400110|400114|400115|400116|400122|400123|400125|400132|400134|400141|400148|400154|400161|400163|400168|400169|400922|401115|401257|401496|401499|401504|401508|401512|401515|401520|401933|401936|401949|401958|401963|401968|401972|401973|401975|401976|401980|401983|401984|401986|401997|402015|402016|402018|402023|402025|402027|402037|402039|402042|402043|402044|402046|402047|402048|402049|402051|402052|402053|402054|402060|402061|402063|402067|402069|402071|402074|402078|402085|402086|402087|402095|402096|402100|402102|402103|402110|402112|402116|402120|402130|402134|402140|402143|402145|402146|402154|402155|402242|402248|402454|402459|402463|402467|402469|402476|402479|402480|402493|402494|402495|402499|402501|402507|402512|402520|402523|402532|402534|402540|402543|402549|402553|402556|402558|402561|402567|402573|402577|402606|402621|402623|402640|402644|402645|402648|402649|402650|402651|402653|402661|402676|402683|402688|402692|402694|402696|402700|402701|402708|402717|402719|402729|402732|402741|402742|402744|404709|404710|404715|405784|407083|408173|408820|408821|408822|408825|408827|408829|408831|408832|408838|408843|408846|408849|408851|408852|408854|408855|408858|408863|408866|408872|408876|408877|408878|408880|408884|408885|408888|408889|408892|408896|408897|408898|408899|408901|408902|408903|408904|408905|408907|408908|408909|408910|408914|408921|408923|408924|408925|408926|408931|408932|408935|408939|408940|408941|408942|408943|408944|408946|408947|408948|408949|408950|408955|408956|408958|408959|408964|408965|408966|408967|408972|408974|408977|408978|408980|408983|408984|408985|408986|408987|408988|408990|408995|408997|408998|409000|409003|409008|409009|409011|409017|409019|409940|409941|409942|409944|409949|409952|409953|409956|409957|409958|409959|409961|409962|409966|409967|409968|409973|409980|409982|409988|409989|409990|409993|409998|409999|410002|410003|410006|410008|410010|410014|410015|410016|410018|410020|410023|410024|410028|410030|410036|410037|413462|415562|416225|416231|416237|416240|416247|416272|416279|416284|416290|416292|416294|416305|416306|416310|416315|416322|416327|416330|416334|416336|416337|416345|416346|416348|416354|416356|416363|416366|416370|416375|416376|416377|416384|416390|416392|416396|416400|416402|416405|416415|416417|416424|416439|416448|416464|416466|416468|416478|416482|416484|416490|416493|416495|416498|416503|416507|416521|416522|416527|416529|416534|416538|418977|420994|420997|420998|421961|423245|424021|424497|424705|424706|424707|424708|424709|424710|424711|424712|424714|424715|424717|424720|424722|424724|424725|424726|424727|424729|424730|424734|424736|424737|424738|424739|424740|424742|424744|424745|424747|424749|424752|424756|424758|424761|424762|424763|424764|424765|424767|424768|424769|424770|424771|424772|424778|424779|424780|424782|424783|424784|424785|424789|424790|424791|424792|424793|424794|424795|424798|424799|424802|424803|424805|424806|424807|424808|424809|424810|424811|424812|424813|424814|424815|424816|424818|424819|424820|424821|424822|424823|424824|424825|424828|424829|424831|424834|424837|424839|424840|424841|424843|424844|424845|424848|424850|424852|424853|424855|424856|424857|424858|424859|424860|424861|424862|424864|424868|424876|424878|424880|424882|424883|424884|424885|424887|426563|427339|427340|427341|427349|427351|427352|427358|427360|427362|427369|427370|427371|427372|427373|427375|427376|427380|427385|427387|427388|427392|427396|427398|427400|427404|427409|427411|427429|427430|427431|427436|427517|427518|427519|427523|427528|427532|427536|427539|427540|427541|427542|427543|427546|427551|427553|427554|427556|427559|427560|427561|427564|427568|427574|427575|427578|427586|427588|429493|429494|429495|429496|429968|432370|432761|432762|432765|432766|432770|432777|432780|432782|432790|432791|432792|432793|432797|432798|432802|432803|432805|432806|432808|432809|432810|432811|432819|432822|432828|432829|432831|432833|432835|432890|432891|432893|432894|432896|432898|432900|432901|432903|432905|432910|432912|432913|432915|432920|432927|432943|433124|433270|434064|434065|434068|434070|434081|434082|434084|434085|434942|434943|434944|434945|434948|434954|434958|434963|434970|434972|434975|434977|434979|434981|434982|434988|434989|434992|434993|434995|434998|434999|435000|435003|435005|435006|435008|435011|435021|435027|435035|435046|435049|435050|435051|435054|435055|435057|435058|435060|435066|435071|435077|435079|435080|435081|435083|435085|435086|435097|435100|435106|435108|435109|435110|435111|435114|435115|435117|435119|435121|435123|435124|435126|435130|435131|435133|435134|435135|435153|435157|435159|435161|435162|435163|435170|435173|435177|435179|435181|435183|445140|445144|445777|451111|460709|460799|462544|462546|462551|462552|462553|462644|462660|462663|462667|462672|462673|462682|462685|462691|462693|462695|462697|462700|462702|462720|462729|462730|462733|462735|462736|462738|462740|462741|462743|462746|462748|462750|462752|462755|462757|462759|462764|462768|462771|462774|462778|462781|462785|462788|462791|462795|462797|462799|462801|462804|462805|462806|462812|462814|462815|462820|462822|462824|462829|462830|462832|462834|462836|462837|462839|462840|462842|462843|462846|462847|462849|462850|462852|462854|462857|462858|462859|462864|462865|462867|462872|462882|462888|462897|462899|462900|462902|462903|462906|462954|462965|462968|462971|462972|462981|462983|462986|462989|462990|462992|462996|462997|463001|463005|463007|463009|463014|463020|463024|463025|463028|463029|463036|463038|463040|463042|463045|463049|463052|463055|463057|463066|463067|463068|463069|463077|463078|463080|463085|463088|463091|463093|463098|463100|463103|463110|463115|463117|463123|463128|463133|463135|463137|463155|463159|463161|463163|463171|463173|463176|463187|463190|463196|463199|463202|463209|463213|463215|463218|463225|463231|463232|463241|463242|463245|463246|463253|463258|463306|463313|463314|463320|463391|463398|463401|463404|463407|463411|463417|463421|463422|463424|463426|463428|463430|463432|463438|463443|463446|463452|463454|463456|463458|463460|463462|463465|463466|463473|463474|463478|463481|463485|463487|463489|463496|463498|463502|463503|463504|463505|463506|463507|463510|463512|463513|463514|463516|463520|463521|463522|463523|463524|463525|463526|463527|463529|463532|463534|463535|463537|463540|463543|463544|463545|463547|463550|463551|463554|463555|463557|463558|463560|463561|463563|463564|463566|463567|463570|463571|463572|463576|463577|463581|463584|463588|463589|463592|463593|463595|463599|463604|463605|463606|463608|463610|463611|463612|463615|463620|463621|463624|463636|463637|463641|463642|463645|463646|463649|463650|463658|463661|463662|463663|463666|463671|463678|463681|463683|463688|463692|463698|463703|463707|463711|463712|463716|463724|463728|463738|463739|463741|463742|463747|463748|463750|463751|463757|463760|463766|463771|463772|463775|463776|463778|463779|463788|463790|463791|463792|463806|463810|463812|463815|463817|463822|463823|463825|463828|463832|463833|463834|463838|463842|464746|465318|465414|465421|465459|465588|466224|466229|466234|466271|466522|466644|466816|466821|466825|466827|466829|466831|466833|466847|466848|466853|466854|466859|466860|466862|466866|466868|466873|466874|466876|466881|466884|466886|466887|466890|466892|466895|466896|466904|466909|466910|466911|466915|466916|466917|466927|466933|467028|467029|467041|467091|467105|467115|467128|467138|467140|467347|467354|467369|467373|467669|467674|467675|467676|467679|467682|467684|467686|467687|467688|467689|467697|467699|467710|467712|467716|467719|467720|467722|467724|467725|467730|467732|467735|467736|467744|467747|467753|467758|467768|467776|467777|467782|467784|467801|467871|467873|467875|467884|467890|467891|467897|467899|467911|467923|467924|467927|467929|467930|467933|467939|467946|467954|467960|467964|467968|467974|467980|467982|467988|467992|467998|468002|468009|468012|468019|468020|468022|468026|468028|468034|468037|468040|468048|468056|468058|468071|468075|468079|468086|468103|468106|468113|468128|468129|468136|468140|468143|468145|468147|468154|468155|468157|468167|468170|468171|468178|468183|468194|468202|468208|468214|468218|468220|468226|468228|468232|468233|468240|468246|468250|468251|468256|468263|468276|468415|470951|472493|472548|473065|474207|474355|475427|475590|476054|476087|476238|476493|476515|476527|476531|476532|476533|476536|476540|476543|476552|476555|476570|476575|476585|476587|476596|476598|476602|476604|476611|476612|476621|476622|476630|476634|476636|476643|476644|476646|476657|476660|476665|476667|476673|476677|476686|476688|476695|476700|476710|476714|476720|476723|476728|476730|476749|476755|476756|476762|476767|476768|476776|476778|476791|476817|476823|476836|476839|476845|476849|476852|476859|476860|476861|476862|476863|476864|476870|476878|476882|476884|476898|476899|476900|476915|476917|476919|476922|476940|476941|476943|476960|476962|476967|476973|476976|476984|476992|477001|477002|477007|477009|477020|477033|477039|477047|477048|477054|477066|477080|477095|477096|477098|477105|477111|477112|477133|477139|477144|477153|477163|477167|477168|477169|477170|477172|477180|477182|477186|477189|477193|477198|477202|477208|477216|477233|477235|477236|477240|477249|477251|477257|477284|477294|477304|477319|477344|477354|477355|477371|477375|477381|477397|477401|477454|477491|477506|477510|477516|477520|477540|477548|477553|477557|477562|477576|477583|478030|478509|478516|478518|478538|478570|478578|478581|478584|478586|478595|478602|478621|478626|478633|478636|478644|478662|478666|478668|478669|478672|478678|478680|478681|478685|478687|478698|478700|478701|478704|478717|478726|478732|478734|478738|478739|478740|478744|478750|478765|478781|478792|478793|478794|478808|478813|478842|478848|478859|478872|478888|478892|479169|479205|479227|479229|479239|479253|479263|479275|479280|479300|479303|479304|479324|479332|479335|479370|479381|479382|479384|479401|479415|479422|479434|479444|479458|479459|479483|479543|479691|479784|480470|480471|480475|482499|482815|482823|482839|482844|482847|482855|482859|482863|482866|482870|482872|482887|482890|482905|482914|482925|482927|482929|482930|482932|482939|482944|482947|482953|482975|482987|482991|482993|483001|483006|483020|483029|483277|484450|484475|484488|484514|484526|484537|484550|484555|484559|484561|484566|484571|484575|484599|484600|484601|484603|484605|484628|484638|484646|484652|484687|484692|484696|484703|484704|484705|484710|484713|484726|484727|484745|484763|484768|484779|484787|484791|484815|484836|484851|484864|484865|484890|484894|484898|484899|484900|484912|484924|484944|484966|484967|484974|485096|485099|485120|485141|485142|485168|485320|485322|485341|485350|485389|485398|486645|486647|486959|487110|487345|487398|487405|487411|487414|487426|487432|487455|487465|487466|487468|487474|487486|487509|487511|487513|487521|487540|487542|487549|487556|487560|487571|487582|487584|487595|487640|487643|487645|487647|487648|487651|487658|487661|487663|487664|487667|487673|487675|487688|487691|487693|487699|487710|487711|487712|487713|487720|487721|487732|487733|487734|487739|487843|487863|487873|487879|487882|487891|487895|487931|487933|487934|487936|487961|487963|487989|487992|488139|504039|504173|504184|504509|504764|505154|505176|505948|505953|506103|506368|506384|506397|506855|512864|513363|514029|514338|514340|520954|525933|527430|527435|527437|527439|527449|527452|527518|527525|527528|527530|527539|527540|527541|527542|527543|527545|527547|527552|527554|527555|527559|527560|527561|527563|527564|527567|527569|527570|527571|527572|527573|527574|527575|527577|527578|527580|527582|527588|527589|527592|527593|527596|527597|527598|527600|527602|527603|527604|527611|527614|527615|527618|527619|527620|527622|527623|527624|527625|527627|527631|527633|527635|527638|527639|527642|527643|527644|527645|527647|527648|527650|527651|527653|527654|527656|527659|527660|527662|527671|527672|527674|527677|527680|527681|527682|527683|527685|527686|527687|527689|527690|527691|527692|527694|527696|527699|527701|527702|527704|527706|527709|527712|527714|527715|527716|527729|527731|527734|527740|527751|527784|527789|527791|527796|527799|527804|527805|527814|527819|527821|527846|527847|527849|527850|527869|527876|527881|527885|527887|527891|527893|527894|527896|527900|527902|527909|527912|527914|527920|527923|527925|527927|527936|527938|527949|527951|527955|527969|527971|527974|527976|527980|527982|527984|527987|527998|527999|528003|528004|528010|528014|528017|528025|528026|528030|528032|528034|528036|528038|528045|528046|528047|528050|528052|528053|528057|528060|528065|528067|528070|528071|528073|528074|528076|528082|528088|528091|528092|528095|528106|528111|528114|528117|528127|528132|528139|528147|528149|528150|528152|528153|528155|528159|528162|528165|528179|528182|528186|528194|528202|528203|528212|528214|528217|528221|528236|528243|528246|528248|528253|528259|528264|528265|529805|530482|530485|530487|530629|530633|530634|530638|530639|530660|530835|531019|531023|531024|531029|531031|531037|531048|531050|531055|531056|531064|531066|531068|531071|531074|531076|531078|531084|531086|531108|531119|531121|531124|531130|531135|531162|531175|531180|531181|531185|531191|531197|531204|531210|531211|531213|531215|531230|531231|531234|531245|531257|531260|531263|531264|531266|531268|531271|531274|531276|531277|531280|531281|531283|531284|531285|531287|531292|531294|531296|531297|531299|531300|531306|531308|531310|531312|531313|531314|531317|531319|531320|531325|531327|531332|531333|531334|531335|531337|531338|531340|531342|531346|531347|531350|531351|531352|531353|531354|531355|531357|531367|531375|531377|531379|531384|531385|531398|531401|531460|531537|531540|531540|531541|531542|531543|531550|531552|531554|531557|531563|531564|531567|531571|531582|531587|531588|531592|531597|531612|531614|531620|531623|531629|531631|531634|531638|535743|536420|536421|536427|536429|536438|536442|536465|536500|538668|538672|538691|538692|538702|538708|538711|538765|538789|538828|538871|538903|539268|539358|539360|540531|549465|550707|550717|551808|557872|564658|565784|565785|565798|565799|565804|565807|565810|565814|565824|565886|565894|565896|565904|565913|565914|565916|565917|565925|565927|565929|565931|565937|565939|565943|565947|565950|565951|565952|565962|565964|565969|565971|565981|565983|565985|565991|565998|566000|566006|566010|566011|566012|566014|566015|566017|566020|566023|566026|566033|566036|566039|566043|566049|566050|566052|566055|566057|566059|566063|566064|566074|566076|566079|566085|566088|566090|566092|566096|566097|566099|566101|566102|566104|567136|567139|567231|567232|567234|567246|567252|567253|567257|567264|567265|567266|567267|567274|567279|567300|567301|567302|567303|567310|567311|567314|567319|567323|567331|567337|567342|567343|567347|567350|567351|567353|567357|567368|567371|567376|567377|567385|567388|567389|567391|567393|567402|567412|567413|567432|567435|567438|567447|567451|567453|567461|567462|567468|567470|567481|567483|567486|567490|567505|567512|567517|567526|567528|567537|567544|567546|568047|568220|568295|568301|568302|568305|568308|568309|568312|568317|568319|568321|568330|568331|568340|568341|568343|568344|568347|568349|568352|568353|568355|568357|568359|568361|568363|568365|568367|568369|568372|568373|568375|568384|568385|568392|568393|568396|568398|568400|568403|568404|568409|568414|568415|568417|568421|568426|568429|568430|568434|568437|568439|568441|568443|568445|568451|568453|568457|568460|568463|568466|568476|568479|568483|568484|568490|568491|568493|568497|568498|568500|568503|568566|568584|568590|568591|568593|568594|568616|568618|568622|568623|568629|568637|568639|568872|569065|569072|569074|569075|569077|569079|569080|569086|569089|569094|569099|569107|569111|569117|569119|569124|569126|569127|569145|569147|569152|569154|569158|569159|569162|569164|569166|569168|569169|569173|569175|569177|569182|569193|569197|569198|569201|570681|570685|570686|570701|570705|570789|570795|570812|570813|570814|571137|571146|571153|571155|571158|571159|571161|571162|571168|571172|571178|571180|571189|571190|571193|571194|571198|571200|571204|571205|571207|571209|571211|571375|571378|571399|571413|571419|571426|571427|571431|571436|571438|571440|571443|571445|571447|571449|571453|571465|571474|571477|571482|571484|571495|571496|571497|571502|572160|572171|572254|572266|572270|572271|572276|572280|572285|572290|572294|572299|572301|572302|572305|572312|572313|572314|572322|572323|572324|572327|572337|572351|572357|572374|572378|572383|572393|572400|572401|572403|572406|572412|572423|572424|572431|572442|572448|572453|572455|572456|572457|572463|572466|572469|572473|572474|572477|572482|572485|574260|574267|574463|574464|574465|574466|574467|574468|574469|574470|574471|574472|574473|574474|574475|574476|574477|574478|574479|574480|574481|574482|574483|574484|574485|574486|574487|574488|574489|574490|574491|574492|574493|574495|575586|575872|575894|575896|575897|575899|575900|575901|575902|575903|575904|575905|575906|575907|575908|575909|575911|575912|575913|575914|575915|575917|575919|575920|575921|575922|575985|575986|575987|575988|575989|575990|575991|575992|575993|575994|575995|575996|575997|575998|575999|576000|576001|576002|576003|576004|576005|576006|576007|576008|576009|576011|576019|576050|589800|590022|590023|590024|590564|609868|610417|611160|611172|611177|611185|611188|611192|611194|611195|611201|611202|611229|611240|611323|615057|615145|615231|617912|617914|617923|617928|617933|617934|617938|617942|617946|617947|617953|617963|617967|617968|617970|617973|617974|617979|617985|617994|617996|618011|618017|618018|618022|618037|618039|618042|618049|618051|618055|618058|618071|618079|618084|618086|618089|618090|618097|618102|618108|618116|618119|618120|618132|618133|618134|618143|618144|618156|618157|618165|618172|618177|618183|618186|618191|618192|618198|618204|618547|618552|618554|618559|618560|618561|618569|618573|618576|618577|618578|618581|618591|618603|618616|618620|618626|618639|618643|618648|618651|618653|618654|618656|618667|618668|618675|618686|618687|618691|618692|618695|618698|618701|619438|619475|619505|619514|619561|619569|619571|619585|619678|619680|619687|619715|619719|621043|621044|621045|621046|621047|621048|621049|621050|621051|621390|621396|621397|621399|621400|621409|621411|621412|621413|621417|621420|621421|621425|621426|621432|621433|621435|621436|621440|621442|621452|621453|621571|621572|621577|621579|621582|621584|621589|621599|621829|621831|622040|622553|622707|624046|625975|630169|635396|635424|641633|641634|641635|641636|641637|641638|641639|641640|641641|641642|641643|641644|641645|641646|641647|641648|641649|641650|641651|641652|641653|641654|641655|641656|641657|641658|641659|641660|641661|641662|641663|641664|641665|641666|641667|641668|641669|641670|641671|641672|641673|641674|641675|641676|641677|641678|641679|641680|641681|641682|641683|641684|641685|641686|641687|641688|641689|641690|641691|641692|641693|641694|641695|641696|641697|641698|641699|641700|641701|641702|641703|641704|641705|641706|641707|641708|641709|641710|641711|641712|641713|641714|641715|641716|641717|641718|641719|641720|641721|641722|641723|641724|641725|641726|641727|641728|641729|641730|641731|641732|641733|641734|641735|641736|641737|641738|641739|641740|641741|641742|641743|641744|641745|641746|641747|641748|641749|641750|641751|641752|641753|641754|641755|641756|641757|641758|641759|641760|641761|641762|641763|641764|641765|641766|641767|641768|641769|641770|641771|641772|641773|641774|641775|641776|641777|641778|641779|641780|641781|641782|641783|641784|641785|641786|641787|641788|641789|641790|641791|641792|641793|641794|641795|641796|641797|641798|641799|641800|641801|641802|641803|641804|641805|641806|641807|641808|641809|641810|641811|641812|641813|641814|641815|641816|641817|641818|641819|641820|641821|641822|641823|641824|641825|641826|641827|641828|641829|641830|641831|641832|641833|641834|641835|641836|641837|641838|641839|641840|641841|641842|641843|641844|641845|641846|641847|641848|641849|641850|641851|641852|641853|641854|641855|641856|641857|641858|641859|641860|641861|641862|641863|641864|641865|641866|641867|641868|641869|641870|641871|641872|641873|641874|641875|641876|641877|641878|641879|641880|641881|641882|641883|641884|641885|641886|641887|641888|641889|641890|641891|641892|641893|641894|641895|641896|641897|641898|641899|641900|641901|641902|641903|641904|641905|641906|641907|641908|641909|641910|641911|641912|641913|641914|641915|641916|641917|641918|641919|641920|641921|641922|641923|641924|643711|645916|645917|645918|645919|645920|645921|645922|645923|645924|645925|645926|645927|645928|645929|645930|645931|645932|645933|645934|645935|645936|645937|645938|645939|645940|645941|645942|645943|645944|645945|645946|645947|645948|645949|645950|645951|645952|645953|645954|645955|645956|645957|645958|645959|645960|645961|645962|645963|645964|645965|645966|645967|645968|645969|645970|645971|645972|645973|645974|645975|645976|645977|645978|645979|645980|645981|645982|645983|645984|645985|645986|645987|645988|645989|645990|645991|645992|645993|645994|645995|645996|645997|645998|645999|646000|646001|646002|646003|646004|646005|646006|646007|646008|646009|646010|646011|646012|646013|646014|646015|646016|646017|646018|646019|646020|646021|646022|646023|646024|646025|646026|646027|646028|646029|646030|646031|646032|646033|646034|646035|646036|646037|646038|646039|646040|646041|646042|646043|646044|646045|646046|646047|646048|646049|646050|646051|646052|646053|646054|646055|646056|646057|646058|646059|646060|646061|646062|646063|646064|646065|646066|646067|646306|652272|652274|652277|652279|652284|652286|652287|652291|652354|652362|652389|652391|652509|652511|652532|652644|652646|652647|652657|652663|652770|652774|652778|652785|652791|652794|652800|652803|652805|652813|652814|652820|652821|652824|652827|652828|652829|652958|652960|652966|653113|653122|653134|653140|653141|653145|653275|653358|653363|653376|653381|654739|654740|654832|656202|682124|684487|688159|688770|688772|690064|695596|695743|702670|725467|738590|739031|753799|753801|753804|753812|755876|760213|760265|769466|769468|769476|769482|769483|769486|769488|769492|769495|769498|769500|769502|769508|769509|769513|769515|769522|769523|769529|771531|771536|771539|771540|771554|771556|775878|775880|775949|776019|776166|776200|776217|776304|776342|776677|778273|784567|784574|784575|784578|784580|784581|784585|784587|784588|784593|784595|784597|784598|785584|785585|785586|785592|785593|785594|785601|785603|787842|787956|788122|788124|788126|788130|788148|788245|789252|789554|789565|789568|789610|789613|789618|789620|789623|789629|789632|789635|790924|791313|791317|791338|791738|791755|806835|807272|807292|807339|807621|809073|810150|810194|810229|810434|810568|811042|811077|811352|811357|811367|811371|811377|811379|811389|811393|811404|811407|811417|811419|811420|811434|811437|811448|811469|811479|811491|811493|811506|811508|811519|811529|811535|811562|811567|811571|811580|811595|811611|811615|811624|811634|811642|811650|811652|811655|811697|811715|811724|811728|811740|811742|811753|811755|811763|811784|811793|811795|811804|811807|812403|812765|812770|813107|813175|813574|813637|813647|813649|813678|813684|813697|813724|813733|813735|813750|813762|813764|813767|813775|813792|813803|813815|813817|813818|813820|813823|813831|813845|813854|813863|813865|813867|813877|813882|813894|813897|813911|813918|813921|814092|814101|815028|815095|815705|818638|818639|818640|818641|818642|818643|818644|818645|818646|818647|818648|818649|818650|818651|818652|818653|818654|818655|818656|818657|818658|818659|818660|818661|818662|818663|818664|818665|818666|818667|818668|818669|818670|818671|818672|818673|818674|818675|818676|818677|818678|818679|818680|818681|818682|818683|818684|818685|818686|818687|818688|818689|818690|818691|818692|818693|818694|818695|818696|818697|818698|818699|818700|818701|818702|818703|818704|818705|818706|818707|818708|820552|820553|820554|820555|820556|820557|820558|820559|820561|820562|820563|820564|820565|820566|820567|820568|821045|821046|821047|821048|821049|821050|821051|821052|821053|821054|821055|821056|821057|821058|821059|821061|821062|821063|821066|821067|821068|821069|821071|821072|821075|821077|821079|821083|821084|821085|821086|821087|821088|821091|821092|821093|821095|821096|821097|822092|840623|840624|840625|840626|840627|840628|840629|840630|840631|840632|840633|840634|840635|840636|840637|840638|840639|840640|840641|840642|840643|840644|840645|840646|840647|840648|840649|840650|840651|840652|840653|840654|840655|840656|840657|840658|840659|840660|840661|840662|840663|840664|840665|840666|840667|840668|840669|840670|840671|840672|840673|840674|840675|840676|840677|840678|840679|840680|840681|840682|840683|840684|840685|840686|840687|840688|840689|840690|840691|840692|840693|840694|840695|840696|840697|840698|840699|840700|840701|840702|840703|840704|840705|840706|840707|840708|840709|840710|840711|840712|840713|840714|840715|840716|840717|840718|840719|840720|840721|840722|840723|840724|840725|840726|840727|840728|840729|840730|840731|840732|840733|840734|840735|840736|840737|840738|840739|840740|840741|840742|840743|840744|840745|840746|840747|840748|840749|840750|840751|840752|840753|840754|840755|840756|840757|840758|840759|840760|840761|840762|840763|840764|840765|840766|840767|840768|840769|840770|840771|840772|840773|840774|840775|840776|840777|840778|840779|840780|840781|840782|840783|840784|840785|840786|840787|840788|840789|840790|840791|840792|840793|840794|840795|840796|840797|840798|840799|840800|840801|840802|840803|840804|840805|840806|840807|840808|840809|840810|840811|840812|840813|840814|840815|840816|840817|840818|840819|840820|840821|840822|840823|840824|840825|840826|840827|840828|840829|840830|840831|840832|840833|840834|840835|840836|840837|840838|840839|840840|840841|840842|840843|840844|840845|840846|840847|840848|840849|840850|840851|840852|840853|840854|840855|840856|840857|840858|840859|840860|840861|840862|840863|840864|840865|840866|840867|840868|840869|840870|840871|840872|840873|840874|840875|845357|845358|845359|845360|845361|845362|845363|845364|845365|845366|845367|845368|845369|845370|845371|845372|845373|845374|845375|845376|845377|845378|845379|845380|845381|845382|845383|845384|845385|845386|845387|845388|845389|845390|845391|845392|845393|845394|845395|845396|845397|845398|845399|845400|845401|845402|845403|845404|845405|845406|845407|845408|845409|845410|845411|845412|845413|845414|845415|845416|845417|845418|845419|845420|845421|845422|845423|845424|845425|845426|845427|845428|845429|845430|845431|845432|845433|845434|845435|845436|845437|845438|845439|845440|845441|845442|845443|845444|845445|845446|845447|845448|845449|845450|845451|845452|845453|845454|845455|845456|845457|845458|845459|845460|845461|845462|845463|845464|845465|845466|845467|845468|845469|845470|845471|845472|845473|845474|845475|845476|845477|845478|845479|845480|845481|851527|851529|851967|851969|851971|852206|852210|852212|852532|852534|852538|852717|852744|852746|852750|852875|852877|853318|853375|853424|853457|853544|853703|853755|853807|853876|853877|853972|853994|854048|854102|854148|854203|854292|854474|854524|854533|854551|854587|854661|854706|854837|854861|854903|854938|854986|855344|855593|855639|855692|855715|855837|858409|858417|858425|858426|858437|858442|858451|858467|858476|860057|860391|861539|861552|904874|905940|905943|905945|912091|912102|912118|912164|912166|912188|912193|912203|912211|912261|912271|912280|912316|912320|912331|912349|913890|913934|913964|913976|915997|916197|916489|917137|917140|917143|917145|917146|917147|917152|917154|917155|917156|917157|917159|917162|917163|917246|917250|917252|917255|917507|917508|917511|917548|920533|921489|926824|926825|926826|926827|926828|926829|926830|926831|926832|926833|926834|926835|926836|926837|926838|926839|926840|926841|926842|926843|926844|926845|926846|926847|926848|926849|926850|926851|926852|926853|926854|926855|926856|926857|926858|926859|926860|926861|926862|926863|926864|926865|926866|926867|926868|926869|926870|926871|926872|926873|926874|926875|926876|926877|926878|926879|926880|926881|926882|926883|926884|926885|926886|926887|926888|926889|926890|926891|926892|926893|926894|926895|926896|926897|926898|926899|926900|926901|926902|926903|926904|926905|926906|926907|926908|926909|926910|926911|928272|928273|928274|928275|928276|928277|928278|928279|928280|928281|928282|928283|928284|928285|928286|928287|928288|928289|928290|928291|928292|928293|928294|928295|928296|928297|928298|928299|928300|928301|928302|928303|928304|928305|928306|928307|928308|928309|928310|928311|928312|928313|928314|928315|928316|928317|928318|928319|928320|928321|928322|928323|928324|928325|928326|928327|936365|936366|936367|936368|936369|936370|936371|936372|936373|936374|936375|936376|936377|936378|936379|936380|936381|936382|936383|936384|936385|936386|936387|936388|936389|936390|936391|936392|936393|936394|936395|936396|936397|936398|936399|936400|936401|936402|936403|936404|936405|936406|936407|936408|936409|936410|936411|936412|936413|936414|936415|936416|936417|936418|936419|936420|936421|936422|936423|936424|936425|936426|936427|936428|936429|936430|936431|936432|936433|936434|936435|936436|936437|936438|936439|936440|936441|936442|936443|937938|937939|937940|937941|937942|937943|937944|937945|937946|937947|937948|937949|937950|937951|937952|937953|937954|937955|937956|937957|937958|937959|937960|937961|937962|937963|937964|937965|937966|937967|937968|937969|937970|937971|937972|937973|937974|937975|937976|937977|940278|940279|940280|940281|940282|940283|940284|940285|940414|940415|941048|941049|941050|941051|941182|947242|948287|948288|948289|948290|948291|948292|948293|948294|948295|948296|948297|948298|948299|948300|948301|948302|948303|948304|948305|948306|948307|948308|948309|948310|948311|948312|948313|948314|948315|948316|948317|948318|948319|948320|948321|948322|948323|948324|948325|948326|948327|948328|948329|948330|948331|948332|948333|948334|948335|948336|948337|948338|948339|948340|948341|948342|948343|948344|948345|948346|948347|948348|948349|948350|948351|948352|948353|948354|948355|948356|948357|948358|948359|948360|948361|948362|948363|948364|948365|948366|948367|948368|948369|949924|949925|949926|949927|949928|949929|949930|949931|949932|949933|949934|949935|949936|949937|949938|949939|949940|949941|949942|949943|949944|949945|949946|949947|949948|949949|949950|949951|949952|949953|949954|949955|949956|949957|949958|949959|949960|949961|949962|949963|949964|949965|957049|957050|957051|957052|957053|957054|957055|957056|957057|957058|957059|957060|957061|957062|957063|957064|957065|957066|957067|957068|957069|957070|957071|957072|957073|957074|957075|957076|957077|957078|957079|957080|957081|957082|957083|957084|957085|957086|957087|957088|957089|957090|957091|957092|957093|957094|957095|957096|957097|957098|957099|957100|957101|957102|958115|958116|958117|958118|958119|958120|958121|958122|958123|958124|958125|958126|958127|958128|958129|958130|958131|958132|958133|958134|958135|958136|958137|958138|958139|958140|960219|960220|960221|960797|960887|961661|963301|963302|965849|970075|970076|970077|970078|970079|970080|970081|970082|970083|970084|970085|970086|970087|970088|970089|970090|970091|970092|970093|970094|970095|970096|970098|970100|975758|975815|975817|975830|975952|980133|980183|980196|983462|983646|983647|983648|983649|983650|983651|983933", + "upstreamId": "18086|20637|20642|21861|21985|24356|24357|24358|24359|24361|24364|24365|24367|24368|24379|24381|24383|24384|24385|24386|24387|24388|27285|27421|32699|32700|32701|32704|32705|32706|32708|32709|32710|32711|32712|32713|32714|32715|32716|32720|32721|32722|32723|32724|32732|32733|32734|39241|40236|45222|45942|45943|45944|45945|45946|45947|45948|45949|45954|45955|45957|45958|45960|45962|45965|45967|45968|45969|45970|45971|45972|45973|45974|45976|45977|45978|45979|45981|45982|45983|45986|45991|45992|45994|45996|45997|45999|46000|46001|46002|46002|46003|46005|46006|46007|46008|46010|46011|46012|46013|46015|46017|46018|46019|46020|46021|46022|46023|46024|46025|46026|46027|46028|46029|46030|46031|46032|46033|46034|46035|46036|46037|46039|46041|46042|46043|46044|46045|46046|46047|46049|46050|46055|46060|46061|46062|46063|46065|46066|46069|46072|46073|46077|46078|46079|46080|46081|46082|46083|46084|46085|46086|46087|46090|46091|46092|46093|46097|46098|46099|46100|46101|46102|46103|46104|46105|46109|46110|46111|46112|46115|46116|46117|46118|46119|46120|46121|46122|46125|46126|46127|46129|46130|46131|46132|46134|46136|46137|46138|46140|46141|46142|46144|46149|46150|46152|46154|46154|46155|46156|46157|46159|46160|46162|46163|46164|46167|46168|46169|46170|46171|46172|46175|46176|46177|46179|46180|46181|46183|46184|46184|46185|46186|46187|46188|46189|46190|46191|46192|46193|46194|46195|46196|46197|46198|46199|46200|46201|46202|46203|46204|46206|46207|46210|46210|46212|46213|46214|46215|46216|46217|46219|46220|46223|46227|46228|46229|46230|46231|46232|46233|46234|46235|46236|46237|46238|46239|46240|46241|46242|46242|46245|46247|46248|46249|46251|46252|46253|46254|46255|46256|46257|46258|46259|46262|46264|46265|46266|46268|46270|46271|46273|46274|46275|46276|46277|46278|46280|46281|46282|46283|46285|46286|46287|46289|46290|46291|46292|46293|46294|46295|46297|46298|46299|46300|46301|46302|46306|46307|46308|46309|46310|46311|46312|46314|46315|46316|46318|46319|46320|46321|46323|46324|46325|46326|46327|46328|46330|46331|46332|46334|46335|46337|46340|46341|46342|46343|46344|46347|46349|46350|46352|46354|46355|46356|46357|46359|46360|46362|46363|46365|46366|46367|46368|46370|46371|46372|46373|46375|46376|46380|46382|46384|46385|46386|46388|46389|46390|46391|46393|46395|46396|46397|46398|46399|46401|46402|46403|46404|46406|46407|46408|46409|46410|46411|46412|46413|46414|46415|46417|46418|46419|46421|46422|46423|46424|46427|46429|46431|46432|46433|46434|46436|46438|46439|46441|46442|46443|46445|46447|46448|46451|46453|46454|46455|46456|46458|46460|46461|46462|46464|46465|46466|46468|46469|46470|46471|46472|46473|46475|46476|46480|46481|46482|46483|46484|46485|46486|46487|46488|46491|46492|46493|46494|46495|46496|46497|46498|46499|46500|46501|46502|46504|46505|46506|46507|46508|46509|46510|46511|46512|46513|46514|46515|46516|46517|46519|46520|46521|46523|46524|46525|46528|46529|46530|46531|46531|46532|46533|46534|46535|46536|46537|46539|46540|46541|46542|46543|46544|46545|46546|46548|46549|46551|46552|46553|46554|46555|46557|46558|46559|46560|46561|46562|46563|46564|46565|46566|46567|46568|46569|46570|46571|46572|46574|46575|46576|46577|46578|46579|46580|46581|46582|46583|46584|46585|46586|46588|46589|46590|46592|46593|46594|46595|46597|46598|46599|46601|46602|46603|46604|46606|46607|46608|46609|46610|46615|46616|46617|46618|46619|46620|46621|46622|46623|46624|46625|46626|46627|46628|46629|46631|46632|46633|46634|46635|46637|46638|46639|46640|46641|46642|46645|46647|46649|46650|46651|46652|46653|46655|46656|46657|46658|46659|46660|46661|46662|46663|46664|46665|46666|46666|46667|46668|46669|46670|46672|46675|46677|46678|46679|46680|46681|46682|46687|46687|46688|46690|46691|46692|46693|46694|46695|46696|46697|46698|46699|46701|46702|46703|46704|46705|46707|46708|46711|46711|46713|46715|46717|46718|46719|46720|46722|46723|46724|46725|46726|46729|46731|46732|46733|46734|46735|46736|46739|46740|46741|46742|46744|46745|46746|46747|46748|46749|46750|46751|46752|46753|46754|46755|46756|46757|46758|46759|46760|46761|46763|46764|46765|46766|46767|46768|46769|46771|46771|46773|46774|46775|46776|46777|46778|46779|46780|46781|46783|46784|46785|46786|46787|46788|46789|46790|46791|46792|46793|46794|46795|46796|46797|46798|46799|46800|46802|46803|46804|46806|46807|46808|46809|46810|46811|46813|46814|46815|46816|46817|46818|46819|46820|46822|46823|49978|49979|49980|49981|49982|49983|49984|49985|49986|49987|49988|49990|49992|49995|49997|49998|49999|50000|50001|50002|50003|50004|50006|50007|50008|50009|50011|50087|50162|50242|50243|50244|50245|50246|50247|50248|50249|50250|50251|50252|50253|50254|50255|50256|50257|50260|50262|50264|50265|50266|50267|50268|50269|50270|50271|50274|51230|65706|65707|65709|65711|65713|65714|65715|65716|65717|65721|65722|65724|65725|65727|65728|65732|65733|65734|65735|65736|65738|65739|65742|65745|65748|65751|65753|65754|65755|65758|65760|65761|65762|65768|65770|65773|65776|65777|65781|65784|65788|65789|65796|65797|65798|65799|65803|65804|65827|65828|65831|65832|65834|65836|65837|65838|65843|65845|65846|65849|65850|65852|65853|65854|65855|65857|65858|65860|65861|65864|65865|65867|65868|65872|65874|65875|65876|65878|65880|65883|65884|65886|65888|65889|65898|65902|65903|65904|65912|65914|65916|65917|65919|65925|65926|65927|65928|65934|65935|65937|65942|65945|65946|65949|65950|65954|65956|65959|65960|65962|65966|65970|65973|65975|65976|65983|65985|65986|65990|65994|65996|65998|65999|66000|66008|66010|66011|66012|66013|66015|66017|66020|66021|66023|66024|66025|66030|66031|66034|66036|66038|66039|66040|66041|66043|66045|66046|66047|66049|66050|66052|66053|66057|66059|66061|66063|66065|66068|66071|66074|66077|66078|66080|66081|66082|66083|66085|66086|66087|66089|66090|66091|66094|66096|66100|66101|66103|66110|66114|66116|66118|66121|66124|66128|66129|66133|66135|66139|66147|66148|66149|66152|66153|66154|66156|66157|66158|66161|66163|66169|66170|66171|66172|66177|66183|66184|66191|66193|66198|66199|66202|66203|66205|66206|66211|66212|66213|66214|66215|66223|66230|66232|66245|66246|66247|66249|66251|66252|66254|66256|66257|66258|66260|66267|66270|66279|66282|66284|66285|66286|66287|66289|66291|66292|66295|66296|66299|66300|66301|66303|66304|66306|66308|66309|66310|66311|66312|66313|66314|66315|66316|66318|66319|66320|66321|66325|66328|66329|66337|66339|66342|66344|66345|66346|66350|66351|66352|66354|66355|66358|66360|66362|66363|66366|66369|66370|66372|66376|66377|66384|66385|66387|66389|66398|66400|66403|66404|66409|66411|66413|66414|66415|66418|66419|66423|66424|66425|66429|66433|66434|66435|66438|66441|66443|66447|66448|66449|66452|66454|66459|66462|66463|66465|66466|66467|66468|66469|66469|66470|66471|66478|66479|66481|66482|66486|66488|66490|66491|66492|66493|66494|66496|66499|66500|66501|66503|66504|66508|66509|66510|66514|66519|66520|66521|66523|66526|66527|66528|66530|66531|66532|66533|66539|66541|66543|66544|66546|66548|66549|66552|66553|66558|66559|66560|66563|66564|66565|66568|66571|66579|66580|66581|66587|66593|66595|66596|66598|66599|66601|66603|66604|66608|66611|66612|66616|66618|66620|66622|66625|66626|66627|66631|66640|66641|66647|66649|66650|66655|66658|66659|66663|66666|66669|66671|66673|66675|66683|66684|66685|66688|66690|66692|66693|66697|66700|66703|66714|66716|66722|66725|66726|66728|66737|66739|66742|66751|66754|66755|66762|66764|66765|66769|66770|66773|66774|66775|66776|66781|66783|66784|66787|66789|66790|66791|66794|66799|66802|66804|66806|66807|66813|66814|66817|66819|66823|66824|66827|66828|66829|66831|66832|66833|66842|66845|66846|66848|66850|66851|66852|66854|66855|66856|66859|66861|66864|66866|66867|66870|66871|66878|66880|66881|66882|66884|66885|66888|66890|66893|66894|66899|66900|66903|66905|66906|66907|66907|66909|66909|66910|66911|66913|66914|66915|66916|66917|66918|66919|66922|66924|66925|66926|66927|66928|66929|66945|66947|66949|66954|66955|66962|66966|66967|66968|66970|66974|66976|66977|66980|66983|66985|66989|66994|66995|66996|66998|67002|67003|67006|67007|67009|67010|67013|67015|67017|67021|67022|67028|67030|67031|67032|67033|67035|67040|67041|67042|67046|67050|67054|67060|67062|67063|67064|67068|67069|67073|67074|67077|67078|67080|67082|67085|67086|67087|67090|67091|67092|67093|67095|67098|67099|67101|67104|67105|67108|67109|67119|67121|67130|67131|67131|67134|67136|67138|67139|67139|67140|67142|67143|67146|67148|67149|67151|67153|67154|67155|67157|67161|67162|67163|67164|67165|67171|67172|67174|67175|67177|67178|67180|67181|67183|67184|67188|67189|67197|67203|67204|67205|67206|67214|67215|67218|67223|67224|67227|67228|67230|67231|67233|67234|67235|67236|67237|67241|67249|67250|67253|67254|67257|67258|67260|67262|67264|67266|67267|67270|67271|67273|67274|67275|67277|67278|67279|67283|67284|67285|67288|67290|67291|67292|67293|67294|67295|67299|67309|67310|67311|67323|67324|67326|67327|67330|67335|67336|67337|67339|67340|67341|67343|67350|67355|67357|67359|67360|67362|67365|67369|67371|67373|67376|67379|67382|67384|67389|67391|67393|67396|67399|67400|67407|67410|67411|67412|67417|67419|67421|67425|67427|67428|67431|67434|67435|67437|67438|67440|67441|67447|67448|67452|67453|67457|67458|67459|67461|67462|67466|67467|67468|67470|67472|67473|67476|67482|67485|67491|67493|67494|67496|67497|67498|67499|67505|67506|67507|67508|67509|67510|67515|67516|67517|67522|67524|67535|67537|67538|67539|67540|67541|67542|67543|67544|67545|67547|67548|67549|67550|67551|67552|67554|67556|67558|67559|67562|67563|67564|67565|67566|67570|67573|67574|67576|67578|67579|67583|67584|67585|67586|67587|67588|67592|68766|68768|68769|68770|68775|68776|68777|68780|68781|68784|68787|68789|68790|68791|68795|68797|68802|68808|68810|68812|68813|68818|68819|68821|68824|68825|68829|68833|68838|68840|68841|68844|68845|68853|68855|68857|68858|68861|68867|68868|68869|68870|68871|68874|68881|68882|68887|68889|68891|68893|68894|68897|68898|68899|68901|68902|68909|68913|68914|68915|68918|68919|68921|68922|68924|68925|68931|68933|68935|68941|68942|68944|68945|68956|68958|68959|68962|68964|68965|68970|68971|68976|68977|68978|68980|68985|68989|68996|68997|68998|69001|69002|69015|69016|69018|69020|69028|69031|69033|69034|69036|69038|69040|69043|69044|69046|69048|69050|69052|69054|69056|69060|69061|69063|69066|69067|69068|69071|69073|69074|69077|69078|69079|69083|69084|69090|69091|69092|69098|69099|69100|69105|69109|69110|69114|69119|69121|69123|69124|69126|69128|69129|69131|69132|69134|69136|69137|69138|69145|69151|69152|69158|69159|69162|69166|69170|69171|69172|69174|69175|69177|69178|69179|69183|69184|69185|69189|69194|69207|69211|69212|69213|69216|69218|69219|69223|69224|69225|69226|69227|69228|69230|69232|69234|69235|69237|69239|69242|69244|69249|69250|69251|69252|69257|69258|69267|69271|69276|69277|69279|69280|69281|69284|69286|69287|69289|69292|69296|69299|69301|69309|69312|69313|69319|69320|69322|69323|69324|69325|69327|69328|69330|69331|69332|69335|69340|69344|69345|69350|69355|69360|69361|69362|69363|69367|69368|69369|69370|69376|69393|69394|69395|69402|69403|69405|69409|69410|69411|69413|69414|69416|69417|69418|69420|69422|69424|69425|69428|69430|69435|69439|69443|69447|69451|69456|69463|69465|69471|69472|69473|69474|69477|69479|69482|69483|69486|69488|69491|69493|69494|69497|69499|69500|69503|69507|69508|69509|69512|69513|69514|69516|69517|69519|69521|69522|69525|69526|69527|69528|69535|69538|69540|69543|69552|69554|69557|69563|69569|69578|69580|69584|69587|69590|69593|69596|69597|69598|69599|69602|69608|69609|69615|69616|69617|69618|69620|69623|69624|69626|69627|69630|69636|69637|69639|69640|69645|69646|69648|69649|69652|69654|69659|69661|69662|69672|69675|69676|69677|69679|69682|69683|69687|69689|69694|69699|69702|69705|69706|69707|69710|69711|69712|69713|69716|69717|69720|69721|69726|69728|69729|69731|69737|69739|69744|69749|69752|69753|69759|69760|69761|69762|69766|69772|69774|69778|69779|69781|69782|69784|69787|69792|69794|69798|69802|69807|69812|69818|69821|69822|69823|69824|69831|69834|69835|69839|69841|69843|69845|69850|69854|69858|69860|69863|69864|69870|69871|69875|69877|69878|69880|69880|69881|69883|69886|69887|69888|69890|69891|69896|69897|69901|69902|69903|69904|69905|69906|69909|69910|69912|69914|69916|69918|69919|69920|69922|69923|69924|69926|69929|69930|69936|69938|69939|69941|69943|69945|69946|69947|69950|69951|69957|69960|69961|69968|69969|69971|69972|69976|69978|69981|69988|69989|69993|69994|69995|70000|70008|70008|70009|70011|70012|70013|70016|70017|70022|70025|70030|70031|70034|70035|70036|70037|70041|70044|70046|70050|70054|70055|70060|70061|70062|70063|70067|70068|70069|70070|70073|70074|70077|70078|70079|70082|70087|70088|70090|70091|70094|70096|70098|70100|70101|70105|70108|70113|70116|70117|70118|70118|70120|70123|70125|70127|70128|70129|70130|70132|70140|70145|70147|70148|70156|70167|70168|70169|70172|70174|70175|70177|70180|70182|70184|70189|70190|70191|70194|70197|70204|70206|70208|70210|70211|70212|70213|70219|70226|70228|70235|70238|70241|70244|70245|70247|70248|70251|70252|70256|70257|70258|70263|70265|70268|70271|70272|70274|70275|70276|70279|70280|70281|70282|70285|70288|70289|70294|70295|70299|70300|70301|70302|70304|70309|70313|70323|70326|70333|70334|70336|70337|70339|70341|70342|70343|70349|70350|70356|70358|70363|70374|70375|70376|70377|70386|70387|70388|70390|70392|70393|70394|70402|70410|70411|70412|70414|70420|70421|70422|70425|70426|70433|70434|70436|70438|70439|70442|70443|70447|70574|94582|94583|94585|94586|94587|94589|94590|94591|94592|94595|94597|94598|94599|94601|94602|94603|94604|94606|94607|94608|94609|94610|94974|95127|95343|95601|95777|96035|96058|96157|96350|96470|96590|96826|96886|96887|96888|96891|96892|96893|96895|96896|96898|96899|96900|96902|96903|96904|96905|96906|96907|96908|96909|96910|96912|96914|96915|96916|96917|96918|96919|96921|96924|96926|96927|96928|96929|96931|96932|96933|96934|96935|96936|96937|96938|96939|96940|96942|96943|96944|96946|96947|96949|96952|96953|96954|96955|96956|96958|96959|96960|96961|96962|96963|96964|96965|96966|96967|96968|96969|96970|96973|96975|96978|96979|96980|96981|96983|96985|96988|96991|96992|96995|96996|96997|96998|96999|97001|97002|97003|97004|97009|97010|97011|97013|97016|97017|97018|97019|97020|97021|97022|97024|97025|97027|97028|97029|97030|97031|97033|97034|97035|97036|97039|97043|97045|97047|97050|97051|97053|97054|97055|97058|97059|97060|97061|97064|97068|97069|97070|97071|97074|97079|97080|97081|97082|97083|97087|97088|97089|97091|97094|97099|97101|97104|97105|97106|97107|97108|97109|97111|97112|97113|97115|97116|97117|97118|97119|97121|97122|97124|97125|97126|97127|97128|97129|97130|97131|97132|97134|97135|97136|97138|97141|97143|97144|97145|97208|97209|97210|97211|97212|97213|97215|97221|97222|97224|97225|97227|97228|97229|97231|97232|97234|97235|97236|97237|97239|97241|97242|97244|97245|97248|97249|97250|97251|97252|97253|97256|97257|97261|97262|97264|97265|97266|97268|97270|97271|97273|97274|97275|97276|97277|97278|97279|97280|97281|97282|97283|97286|97287|97288|97289|97291|97292|97293|97294|97295|97298|97299|97304|97306|97307|97309|97310|97314|102661|102663|102664|102665|102666|102667|102669|102670|102671|102673|102674|102675|102680|102681|102682|102683|102684|102685|102686|102688|102689|102690|102691|102692|102695|102696|102698|102700|102701|102707|102708|102709|102710|102711|102713|102714|102715|102716|102717|102719|102720|102722|102724|102726|102728|102729|102730|102731|102732|102733|102735|102736|102738|102740|102741|102743|102744|102745|102747|102748|102750|102751|102752|102754|102755|102756|102757|102758|102763|102764|102765|102766|102767|102769|102770|102772|102774|102775|102776|102777|102778|102779|102780|102781|102782|102784|102785|102786|102787|102788|102790|102791|102792|102793|102797|102799|102806|102807|102808|102812|102813|102814|102815|102816|102820|102821|102823|102824|102825|102827|102830|102832|102834|102835|102837|102839|102841|102843|102844|102845|102846|102847|102851|102854|102856|102857|102858|131002|131003|131005|131009|131029|131033|131038|131039|131041|131042|131046|131051|131055|131057|131059|131061|131063|131074|131080|131084|131086|131090|131092|131093|131101|131104|131105|131108|131117|131127|131128|131131|131133|131139|131141|131148|131154|131158|131163|131168|131182|131189|131196|131202|131204|131210|131211|131213|131216|131218|131219|131220|131223|131235|131239|131241|131247|131248|131253|131260|131262|131263|131264|131265|131267|131271|131276|131278|131294|131297|131299|131306|131315|131316|131321|131324|131336|131341|131342|131348|131362|131363|131365|131369|131370|131381|131382|131383|131384|131389|131390|131393|131394|131394|131404|131411|131412|131418|131419|131421|131422|131423|131425|131434|131435|131438|131440|131445|131446|131464|131466|131471|131474|131481|131482|131483|131484|131485|131493|131494|131512|131514|131516|131517|131518|131522|131526|131527|131530|131533|131534|131536|131538|131539|131541|131548|131552|131554|131556|131560|131565|131567|131568|131570|131572|131573|131575|131583|131587|131597|131600|131602|131603|131604|131610|131611|131620|131626|131629|131634|131637|131638|131643|131651|131656|131661|131662|131663|131666|131671|131673|131677|131678|131693|131696|131698|131701|131706|131707|131712|131716|131719|131721|131726|131727|131733|131737|131739|131740|131741|131749|131751|131752|131754|131755|132108|132116|132133|132139|132206|132217|132218|132221|132239|132242|132244|132249|132792|132824|132834|132844|132846|132986|133073|133074|133177|133182|133211|133268|133284|133330|133339|133340|133341|133343|133347|133349|133350|133351|133352|133353|133355|133374|133447|133449|133501|133510|133521|133538|133546|133574|133590|133601|133637|133651|133658|133659|133661|133664|133666|133668|136435|136452|136476|136491|136507|136512|136518|136526|136527|136528|136529|136530|137379|137437|137449|137463|137464|137465|137467|137468|137469|137471|137472|137473|137474|137475|137476|137477|137481|137482|137492|137494|137585|138785|138794|138809|139097|139499|139502|139503|139505|139506|139507|139508|139509|139511|139513|139514|139515|139517|139518|139519|139520|139521|139522|139524|139525|139526|139527|139528|139529|139530|139531|139532|139533|139551|139660|139790|139791|139792|139793|139794|139796|139797|139798|139799|139800|139801|139802|139803|139804|139805|139844|139872|140240|140241|140242|140243|140244|140245|140246|140247|140248|140249|140250|140252|140253|140254|140254|140255|140256|140257|140258|140259|140260|140261|140262|140263|140264|140265|140266|140268|140269|140270|140271|140272|140273|140274|140275|140276|142580|142582|150558|150563|150566|150587|150589|150593|150644|150646|150672|150676|150680|150681|150689|150701|150703|150704|150705|150706|150711|150722|150723|150727|150731|150745|150748|150752|150782|150784|150786|150789|150790|150791|150798|150800|150801|150802|150804|150805|150806|150807|150811|150814|150817|150818|150829|150832|150840|150841|150842|150866|150867|150869|150876|150913|150926|150928|150936|150948|150957|150961|150968|150973|150974|150977|150985|150986|150997|151015|151022|151047|151049|151059|151071|151085|151106|151113|151142|151144|151171|151172|151173|151174|151175|151179|151182|151183|151192|151195|151212|151218|151219|151220|151221|151223|151242|151251|151253|151263|151278|151286|151292|151340|151343|151344|151347|151371|151372|151409|151416|151437|151443|151455|151458|151494|151496|151497|151500|151502|151503|151505|151506|151507|151508|151512|151513|151518|151520|151521|151522|151523|151525|151526|151528|151532|151536|151540|151562|151564|151567|151571|151577|151581|151583|151611|151613|151615|151620|151638|151664|151667|151675|151689|151699|151700|151701|151716|151718|151720|151733|151737|151740|151742|151744|151745|151746|151750|151768|151787|151796|151801|151807|151809|151816|151822|151823|151826|151828|151829|151839|151908|151929|151942|151972|151995|151996|152002|152004|152009|152011|152015|152017|152021|152022|152026|152027|152048|152080|152097|152099|152105|152109|152110|152112|152117|152136|152138|152142|152145|152162|152184|152190|152226|152234|152241|152248|152261|152282|152302|152312|152319|152321|152322|152325|152329|152330|152331|152340|152341|152342|152343|152344|152345|152348|152353|152356|152358|152360|152363|152369|152370|152376|152379|152387|152401|152408|152434|152442|152443|152448|152466|152474|152485|152489|152490|152496|152497|152498|152501|152506|152507|152508|152509|152511|152521|152527|152528|152543|152545|152546|152547|152548|152549|152550|152560|152561|152562|152569|152575|152576|152579|152580|152581|152582|152583|152587|152588|152599|152615|152632|152637|152640|152645|152664|152677|152685|152692|152699|152700|152701|152711|152712|152714|152715|152738|165962|165963|165965|165966|165969|165972|165974|165975|165978|165979|165980|165981|165983|165984|165985|165986|165987|165989|165990|165992|165993|165995|166252|166254|166256|172180|172181|179970|180040|180044|180056|180139|180408|180552|180554|180555|180557|180559|180560|180561|180562|180563|180564|180568|180569|180570|180571|180572|180573|180575|180576|180577|180578|180579|180580|180581|180582|180583|180585|180588|180590|180591|180592|180595|180597|180598|180600|180601|180602|180603|180606|180607|180608|180610|180612|180613|180615|180620|180621|180622|180623|180627|180630|180632|180634|180635|180636|180638|180639|180640|180641|180642|180643|180646|180648|180649|180650|180651|180655|180656|180657|180660|180661|180665|180667|180668|180669|180670|180671|180673|180676|180677|180678|180680|180681|180682|180683|180685|180686|180688|180689|180690|180691|180692|180693|180695|180696|180697|180699|180701|180702|180718|180736|180805|180806|180811|180812|180813|180814|180815|180816|180818|180819|180822|180824|180825|180828|180830|180831|180834|180835|180838|180839|180840|180842|180843|180845|180847|180851|180852|180853|180855|180857|180859|180861|180863|180866|180868|180870|180871|180876|180877|180880|180882|180884|180886|180888|180890|180891|180892|180894|180895|180896|180902|180903|180908|180920|180926|180934|180947|181090|181145|181218|181219|181314|181316|182551|182581|182598|182611|182841|183210|183280|183336|183467|183487|183505|183611|183612|183613|183614|183615|183616|183617|183618|183619|183621|183622|183623|183625|183627|183631|183632|183634|183635|183637|183638|183639|183641|183644|183645|183647|183649|183650|183651|183652|183653|183656|183657|183658|183660|183661|183662|183663|183664|183665|183666|183668|183669|183671|183672|183673|183674|183675|183678|183680|183682|183684|183686|183688|183691|183692|183693|183694|183697|183700|183701|183702|183703|183705|183706|183707|183708|183710|183711|183712|183714|183715|183717|183718|183719|183720|183722|183724|183725|183727|183728|183730|183731|183732|183733|183734|183735|183736|183737|183738|183739|183741|183742|183744|183746|183747|183749|183750|183751|183752|183753|183754|183756|183757|183759|183761|183764|183765|183766|183767|183768|183771|183773|183774|183777|183779|183781|183782|183783|183785|183786|183788|183791|183792|183794|183795|183796|183798|183800|183804|183805|183806|183808|183809|183811|183812|183813|183815|183816|183818|183819|183820|183821|183822|183823|183824|183825|183826|183827|183828|183829|183831|183832|183833|183834|183835|183836|183837|183838|183841|183842|183843|183844|183845|183846|183848|183850|183851|183852|183853|183855|183858|183859|183860|183861|183862|183863|183864|183865|183866|183867|183868|183870|183872|183873|183874|183875|183876|183879|183880|183881|183883|183884|183885|183890|183891|183892|183893|183894|183897|183900|183901|183902|183903|183904|183905|183911|183916|183917|183918|183920|183922|183924|183925|183926|183927|183928|183930|183933|183934|183935|183936|183938|183940|183942|183947|183948|183949|183951|183953|183954|183957|183958|183959|183960|183961|183962|183963|183964|183965|183966|183967|183968|183969|183970|183971|183973|183974|183975|183979|183980|183981|183983|183984|183990|183991|183991|183995|183997|183998|183999|184000|184002|184005|184006|184007|184008|184009|184010|184011|184013|184020|184021|184023|184024|184025|184027|184028|184029|184030|184031|184032|184034|184036|184040|184041|184043|184044|184045|184047|184055|184057|184058|184062|184063|184064|184065|184066|184068|184069|184071|184072|184073|184074|184075|184076|184077|184078|184080|184082|184083|184084|184085|184086|184087|184089|184093|184094|184095|184096|184097|184099|184101|184103|184104|184105|184207|184244|184249|184272|184342|184476|184733|184806|184818|184861|184862|184863|184864|184866|184867|184868|184869|184870|184871|184872|184874|184875|184876|184877|184883|184884|184885|184887|184890|184890|184894|184899|184900|184902|184904|184905|184906|184909|184910|184911|184912|184913|184918|184919|184920|184922|184923|184924|184929|184930|184932|184935|184936|184937|184942|184943|184944|184946|184947|184948|184953|184954|184955|184957|184960|184965|184966|184967|184968|184969|184970|184973|184976|184977|184978|184979|184980|184981|184982|184984|184986|184987|184988|184989|184990|184991|184993|184994|184995|184996|184997|184998|184999|185000|185001|185002|185004|185005|185007|185008|185009|185011|185013|185015|185016|185017|185021|185024|185025|185026|185028|185030|185031|185038|185043|185044|185045|185047|185048|185050|185051|185052|185053|185055|185056|185057|185060|185064|185065|185066|185067|185070|185071|185074|185075|185077|185079|185081|185085|185086|185087|185088|185089|185090|185091|185092|185093|185094|185096|185097|185098|185099|185100|185101|185102|185104|185106|185109|185111|185113|185115|185116|185117|185119|185120|185122|185123|185125|185127|185128|185131|185156|185157|185160|185165|185251|185282|185292|185305|185308|185622|185623|186168|186169|186170|186171|186172|186174|186175|186176|186179|186180|186181|186182|186183|186184|186185|186238|186239|186255|186256|186257|186258|186259|186260|186261|186441|186442|186443|186449|186451|186452|186454|186455|186457|186542|186544|186547|186548|186551|186872|190027|190716|190857|190859|190860|190952|190953|191244|191406|191407|194260|195361|204644|205810|208045|212851|213017|213018|213019|213020|213023|213024|213025|213026|213027|213028|213029|213030|213031|213033|213034|213036|213037|213038|213039|213041|213042|213043|213044|213045|213046|213047|213048|213050|213051|213052|213055|213056|213057|213058|213060|213061|213062|213064|213065|213066|213068|213070|213071|213072|213073|213074|213075|213078|213079|213080|213081|213082|213083|213086|213087|213088|213090|213091|213092|213093|213094|213095|213096|213097|213098|213099|213234|213235|213236|213237|213238|213239|213303|213304|213305|213306|213308|213309|213310|213311|213312|213313|213314|213315|213316|213317|213318|213319|213320|213321|213322|213323|213324|213325|213326|213327|213328|213329|213330|213331|213332|213333|213334|213335|213336|213337|213339|213340|213354|213370|214915|214916|221254|221576|222060|222124|222180|222269|222270|222272|222273|222274|222275|222276|222277|222278|222279|222280|222281|222282|222284|222286|222287|222288|222289|222290|222291|222292|222293|222294|222295|222296|222297|222298|222299|222300|222301|222302|222303|222304|222305|222306|222307|222308|222309|222310|222311|222312|222313|222315|222316|222317|222318|222319|222320|222321|222322|222323|222324|222325|222326|222327|222328|222329|222330|222331|222333|222334|222335|222336|222337|222339|222340|222341|222342|222343|222344|222345|222346|222347|222348|222349|222350|222352|222354|222355|222356|222458|222546|222547|222548|222549|222644|222645|222646|222647|222648|222649|222650|222651|222653|222654|222655|222656|222657|222658|222659|222660|222661|222662|222663|222664|222665|222666|222667|222668|222669|222670|222671|222673|222674|222675|222676|222677|222678|222679|222681|222682|222683|222684|223598|223599|223600|223601|223602|226155|226156|226159|226160|226162|226168|226169|226173|226175|226184|226189|226193|226201|226204|226207|226211|226352|226364|226810|226814|227195|227390|227519|227527|227529|227530|227531|227532|227533|227534|227535|227538|227539|227544|227551|227557|227559|227567|227577|230442|230443|231854|231855|231856|231858|231864|231866|231869|231871|231872|231873|231875|231876|231877|231879|231880|231881|231882|231884|231886|231887|231888|231891|231892|231893|231894|231896|231897|231898|231899|231900|231902|231903|231905|231907|231908|231910|231911|231995|231997|232123|232424|232522|233358|233995|234205|234341|234364|234590|234593|234594|234595|234598|234604|234607|234611|234612|234616|234618|234619|234620|234623|234629|234631|234635|234637|234638|234640|234644|234645|234646|234647|234650|234653|234656|234659|234660|234661|234662|234664|234665|234667|234670|234675|234676|234679|234681|234682|234685|234686|234690|234692|234694|234696|234699|234702|234705|234707|234709|234711|234712|234715|234718|234720|234722|234723|234727|234730|234732|234733|234741|234742|234748|234749|234750|234751|234752|234753|234755|234756|234760|234762|234763|234767|234771|234772|234774|234775|234777|234779|234780|234782|234783|234786|234787|234789|234790|234791|234792|234795|234796|234797|234801|234802|234807|234811|234813|234814|234815|234817|234818|234820|234825|234827|234829|234830|234831|234832|234839|234841|234842|234843|234850|234851|234853|234856|234862|234865|234868|234870|234873|234876|234881|234883|234887|234889|234891|234892|234897|234900|234902|234905|234909|234914|234915|234916|234919|234921|234923|234929|234931|234932|234933|234934|234935|234938|234939|234941|234942|234945|234946|234948|234949|234950|234951|234952|234954|234956|234957|234958|234959|234961|234962|234964|234966|234969|234970|234973|234974|234976|234977|234978|234982|234983|234983|234985|234991|234993|234994|234995|234999|235000|235001|235005|235006|235007|235008|235009|235012|235013|235015|235017|235018|235019|235020|235021|235022|235027|235036|235040|235044|235045|235046|235048|235049|235050|235052|235054|235059|235061|235063|235065|235066|235070|235072|235074|235076|235077|235078|235180|235689|235710|235726|235863|235871|235906|235912|235922|235927|235928|235932|235935|235939|235940|235941|235942|235943|235945|235946|235949|235953|235956|235958|235964|235965|235968|235972|235974|235976|235978|235980|235981|235982|235983|235984|235987|235993|235996|235997|235998|236000|236002|236003|236004|236006|236007|236008|236009|236014|236015|236018|236020|236021|236022|236027|236028|236029|236034|236040|236043|236044|236046|236048|236051|236053|236054|236055|236057|236060|236062|236066|236068|236073|236076|236078|236079|236080|236082|236086|236089|236093|236094|236095|236096|236099|236100|236101|236102|236103|236105|236107|236108|236109|236110|236111|236112|236116|236117|236120|236122|236123|236126|236127|236130|236131|236132|236133|236136|236137|236139|236140|236141|236142|236143|236148|236150|236152|236153|236154|236156|236157|236160|236161|236162|236163|236166|236167|236169|236172|236176|236177|236178|236179|236180|236181|236182|236183|236184|236185|236188|236210|236214|236223|236229|236622|236649|236715|237817|237822|237823|237829|237833|237835|237839|238846|240956|241633|241634|241635|241636|241637|241638|241639|241640|241641|241642|241643|241644|241645|241646|241647|241648|241649|241650|241651|241652|241653|241654|241655|241656|241657|241658|241659|241660|241662|241663|241664|241665|241666|241667|241668|241669|241670|241671|241672|241673|241674|241675|241676|241677|241678|241679|241680|241681|241682|241684|241685|241686|241687|241688|241689|241691|241692|241693|241694|241695|241696|241698|241699|241700|241701|241702|241703|241704|241705|241706|241710|241712|241713|241714|241715|241716|241717|241718|241719|241720|241721|241722|241723|241724|241725|241728|241731|241732|241733|241734|241736|241737|242362|242684|242718|242720|242729|242753|242756|242757|242758|242759|242760|242762|242763|242765|242767|242768|242770|242771|242773|242775|242777|242778|242779|242780|242781|242783|242784|242785|242786|242787|242788|242789|242790|242791|242792|242793|242794|242795|242796|242798|242799|242800|242801|242802|242803|242804|242806|242807|242808|242809|242810|242811|242812|242814|242815|242816|242818|242835|242836|244338|244612|244843|244844|244845|244849|244850|244851|244852|244853|244854|244856|245014|245017|245019|245022|245027|245028|245029|245030|245031|245033|245037|245038|245039|245041|245042|245043|245047|245051|245053|245054|245055|245056|245057|245058|246784|246788|246789|246791|246794|246795|246796|246797|246800|246802|246803|246805|246811|246812|246815|246820|246822|246823|246825|246827|246832|246838|246842|246845|246849|246851|246853|247086|247087|247214|247219|247220|247221|247223|247224|247226|247227|247228|247229|247230|247231|247232|247235|247236|247241|247245|247248|247249|247250|247254|247256|247257|247258|247260|247261|247264|247267|247272|247274|247275|247276|247277|247286|247288|247290|247292|247439|248505|248510|248516|248518|248519|248520|248522|248523|248524|248525|248526|248527|248529|248530|248534|248536|248908|248910|248911|248913|248926|248943|248950|248952|248962|248973|248980|248989|248990|248994|248995|248997|249004|249005|249013|249014|249020|249022|249028|249029|249035|249040|249054|249057|249059|249064|249065|249070|249073|249086|249087|249091|249096|249105|249124|249126|249127|249129|249151|249155|249160|249163|249164|249171|249179|249181|254847|259408|259529|259534|260043|260044|260045|260046|260047|260169|260170|260173|260257|260360|260986|260987|261008|261013|261038|261039|261045|261055|261056|261072|261073|261077|261086|261091|261099|261106|261107|261117|261119|261120|261128|261132|261139|261140|261147|261149|261152|261158|261165|261167|261168|261170|261174|261175|261181|261186|261191|261192|261195|261200|261210|261213|261216|261225|261228|261229|261235|261237|261239|261241|261244|261255|261259|261260|261269|261271|261273|261278|261281|261283|261285|261298|261306|261312|261313|261314|261316|261323|261332|261334|261335|261336|261344|261350|261352|261357|261358|261361|261362|261363|261365|261369|261370|261375|261387|261389|261395|261397|261409|261410|261413|261415|261417|261419|261423|261430|261434|261435|261437|261443|261445|261447|261456|261459|261467|261468|261479|261482|261490|261491|261494|261499|261503|261511|261515|261530|261541|261543|261546|261556|261557|261562|261572|261573|261597|261609|261611|261615|261632|261635|261638|261642|261644|261645|261660|261664|261668|261679|261684|261696|261723|261726|261727|261739|261763|261767|261778|261779|261786|261791|261795|261802|261806|261807|261813|261815|261821|261827|261828|261831|261835|261837|261838|261845|261852|261855|261873|261879|261887|261894|261907|261908|261918|261923|261941|261943|261954|261962|261971|261978|261984|261987|261997|262016|262020|262024|262098|262101|262808|262815|262822|262828|262833|262835|262841|262844|262845|262850|262852|262856|262860|262863|262879|262921|262923|262927|262946|262952|262953|262956|262957|262977|262978|262979|262981|262987|262989|262993|264514|264580|264668|264675|320553|327916|327918|328613|328624|329355|329374|334213|335896|335912|338560|345292|346052|346053|346056|346058|357674|357906|358704|358888|358890|358892|358925|358928|358934|358942|360711|360712|360714|360717|360718|361610|362213|362214|362215|362216|362217|362356|362357|372685|372687|372696|372699|372709|372717|372726|372732|372734|372739|372763|372775|372780|372802|373354|373371|373401|373412|373418|373422|373423|373436|373449|373454|373460|373464|373497|373503|373513|373516|373652|373658|373664|373673|373676|373678|373679|373681|373689|373691|373698|373703|373706|373712|373725|373727|373745|373759|373766|373768|373777|373794|373801|373806|373816|375046|375066|375071|375081|375090|375098|375101|375103|375112|375567|375576|375577|375592|375608|375612|375614|375628|375671|375961|375974|375977|375980|375983|375986|375993|376005|376012|376032|376035|376045|376082|376083|376085|376093|376095|376097|376098|376101|376102|376124|376133|378220|378226|378236|378243|378261|378263|378278|378283|378289|378295|378296|378301|378304|390695|392435|392548|393024|397874|398191|399092|399098|399124|399127|399129|399131|399135|399141|399144|399152|399155|399158|399161|399162|399168|399172|399173|399181|399183|399185|399190|399191|399199|399203|399207|399211|399213|399215|399216|399219|399221|399225|399227|399234|399248|399262|399263|399267|399268|399269|399275|399280|399281|399284|399287|399292|399299|399302|399308|399309|399311|399312|399320|399322|399324|399327|399331|399333|399334|399336|399337|399338|399339|399347|399348|399351|399353|399355|399361|399363|399364|399366|399367|399369|399370|399372|399373|399374|399378|399381|399382|399385|399387|399389|399392|399393|399394|399395|399396|399397|399400|399402|399404|399406|399407|399409|399411|399412|399413|399416|399418|399420|399423|399426|399430|399437|399442|399445|399447|399449|399452|399458|399460|399464|399465|399470|399477|399485|399488|399493|399497|399498|399604|399607|399629|399633|399642|399646|399649|399651|399656|399665|399677|399683|399686|399702|399710|399714|399717|399745|399753|399754|399759|399763|399773|399780|399786|399797|399804|399805|399823|399825|399828|399837|399842|399844|399848|399851|399854|399860|399861|399864|399867|399870|399872|399878|399880|399882|399883|399886|399888|399889|399890|399894|399895|399896|399898|399899|399903|399904|399907|399909|399914|399923|399924|399929|399931|399934|399936|399939|399941|399948|399951|399952|399955|399956|399960|399961|399963|399965|399967|399970|399979|399983|399986|399988|399990|399992|399995|399996|399997|400000|400003|400008|400014|400018|400023|400030|400032|400036|400038|400040|400048|400049|400050|400051|400058|400061|400063|400067|400069|400070|400077|400106|400107|400110|400114|400115|400116|400122|400123|400125|400132|400134|400141|400148|400154|400161|400163|400168|400169|400922|401115|401257|401496|401499|401504|401508|401512|401515|401520|401933|401936|401949|401958|401963|401968|401972|401973|401975|401976|401980|401983|401984|401986|401997|402015|402016|402018|402023|402025|402027|402037|402039|402042|402043|402044|402046|402047|402048|402049|402051|402052|402053|402054|402060|402061|402063|402067|402069|402071|402074|402078|402085|402086|402087|402095|402096|402100|402102|402103|402110|402112|402116|402120|402130|402134|402140|402143|402145|402146|402154|402155|402242|402248|402454|402459|402463|402467|402469|402476|402479|402480|402493|402494|402495|402499|402501|402507|402512|402520|402523|402532|402534|402540|402543|402549|402553|402556|402558|402561|402567|402573|402577|402606|402621|402623|402640|402644|402645|402648|402649|402650|402651|402653|402661|402676|402683|402688|402692|402694|402696|402700|402701|402708|402717|402719|402729|402732|402741|402742|402744|404709|404710|404715|405784|407083|408173|408820|408821|408822|408825|408827|408829|408831|408832|408838|408843|408846|408849|408851|408852|408854|408855|408858|408863|408866|408872|408876|408877|408878|408880|408884|408885|408888|408889|408892|408896|408897|408898|408899|408901|408902|408903|408904|408905|408907|408908|408909|408910|408914|408921|408923|408924|408925|408926|408931|408932|408935|408939|408940|408941|408942|408943|408944|408946|408947|408948|408949|408950|408955|408956|408958|408959|408964|408965|408966|408967|408972|408974|408977|408978|408980|408983|408984|408985|408986|408987|408988|408990|408995|408997|408998|409000|409003|409008|409009|409011|409017|409019|409940|409941|409942|409944|409949|409952|409953|409956|409957|409958|409959|409961|409962|409966|409967|409968|409973|409980|409982|409988|409989|409990|409993|409998|409999|410002|410003|410006|410008|410010|410014|410015|410016|410018|410020|410023|410024|410028|410030|410036|410037|413462|415562|416225|416231|416237|416240|416247|416272|416279|416284|416290|416292|416294|416305|416306|416310|416315|416322|416327|416330|416334|416336|416337|416345|416346|416348|416354|416356|416363|416366|416370|416375|416376|416377|416384|416390|416392|416396|416400|416402|416405|416415|416417|416424|416439|416448|416464|416466|416468|416478|416482|416484|416490|416493|416495|416498|416503|416507|416521|416522|416527|416529|416534|416538|418977|420994|420997|420998|421961|423245|424021|424497|424705|424706|424707|424708|424709|424710|424711|424712|424714|424715|424717|424720|424722|424724|424725|424726|424727|424729|424730|424734|424736|424737|424738|424739|424740|424742|424744|424745|424747|424749|424752|424756|424758|424761|424762|424763|424764|424765|424767|424768|424769|424770|424771|424772|424778|424779|424780|424782|424783|424784|424785|424789|424790|424791|424792|424793|424794|424795|424798|424799|424802|424803|424805|424806|424807|424808|424809|424810|424811|424812|424813|424814|424815|424816|424818|424819|424820|424821|424822|424823|424824|424825|424828|424829|424831|424834|424837|424839|424840|424841|424843|424844|424845|424848|424850|424852|424853|424855|424856|424857|424858|424859|424860|424861|424862|424864|424868|424876|424878|424880|424882|424883|424884|424885|424887|426563|427339|427340|427341|427349|427351|427352|427358|427360|427362|427369|427370|427371|427372|427373|427375|427376|427380|427385|427387|427388|427392|427396|427398|427400|427404|427409|427411|427429|427430|427431|427436|427517|427518|427519|427523|427528|427532|427536|427539|427540|427541|427542|427543|427546|427551|427553|427554|427556|427559|427560|427561|427564|427568|427574|427575|427578|427586|427588|429493|429494|429495|429496|429968|432370|432761|432762|432765|432766|432770|432777|432780|432782|432790|432791|432792|432793|432797|432798|432802|432803|432805|432806|432808|432809|432810|432811|432819|432822|432828|432829|432831|432833|432835|432890|432891|432893|432894|432896|432898|432900|432901|432903|432905|432910|432912|432913|432915|432920|432927|432943|433124|433270|434064|434065|434068|434070|434081|434082|434084|434085|434942|434943|434944|434945|434948|434954|434958|434963|434970|434972|434975|434977|434979|434981|434982|434988|434989|434992|434993|434995|434998|434999|435000|435003|435005|435006|435008|435011|435021|435027|435035|435046|435049|435050|435051|435054|435055|435057|435058|435060|435066|435071|435077|435079|435080|435081|435083|435085|435086|435097|435100|435106|435108|435109|435110|435111|435114|435115|435117|435119|435121|435123|435124|435126|435130|435131|435133|435134|435135|435153|435157|435159|435161|435162|435163|435170|435173|435177|435179|435181|435183|445140|445144|445777|451111|460709|460799|462544|462546|462551|462552|462553|462644|462660|462663|462667|462672|462673|462682|462685|462691|462693|462695|462697|462700|462702|462720|462729|462730|462733|462735|462736|462738|462740|462741|462743|462746|462748|462750|462752|462755|462757|462759|462764|462768|462771|462774|462778|462781|462785|462788|462791|462795|462797|462799|462801|462804|462805|462806|462812|462814|462815|462820|462822|462824|462829|462830|462832|462834|462836|462837|462839|462840|462842|462843|462846|462847|462849|462850|462852|462854|462857|462858|462859|462864|462865|462867|462872|462882|462888|462897|462899|462900|462902|462903|462906|462954|462965|462968|462971|462972|462981|462983|462986|462989|462990|462992|462996|462997|463001|463005|463007|463009|463014|463020|463024|463025|463028|463029|463036|463038|463040|463042|463045|463049|463052|463055|463057|463066|463067|463068|463069|463077|463078|463080|463085|463088|463091|463093|463098|463100|463103|463110|463115|463117|463123|463128|463133|463135|463137|463155|463159|463161|463163|463171|463173|463176|463187|463190|463196|463199|463202|463209|463213|463215|463218|463225|463231|463232|463241|463242|463245|463246|463253|463258|463306|463313|463314|463320|463391|463398|463401|463404|463407|463411|463417|463421|463422|463424|463426|463428|463430|463432|463438|463443|463446|463452|463454|463456|463458|463460|463462|463465|463466|463473|463474|463478|463481|463485|463487|463489|463496|463498|463502|463503|463504|463505|463506|463507|463510|463512|463513|463514|463516|463520|463521|463522|463523|463524|463525|463526|463527|463529|463532|463534|463535|463537|463540|463543|463544|463545|463547|463550|463551|463554|463555|463557|463558|463560|463561|463563|463564|463566|463567|463570|463571|463572|463576|463577|463581|463584|463588|463589|463592|463593|463595|463599|463604|463605|463606|463608|463610|463611|463612|463615|463620|463621|463624|463636|463637|463641|463642|463645|463646|463649|463650|463658|463661|463662|463663|463666|463671|463678|463681|463683|463688|463692|463698|463703|463707|463711|463712|463716|463724|463728|463738|463739|463741|463742|463747|463748|463750|463751|463757|463760|463766|463771|463772|463775|463776|463778|463779|463788|463790|463791|463792|463806|463810|463812|463815|463817|463822|463823|463825|463828|463832|463833|463834|463838|463842|464746|465318|465414|465421|465459|465588|466224|466229|466234|466271|466522|466644|466816|466821|466825|466827|466829|466831|466833|466847|466848|466853|466854|466859|466860|466862|466866|466868|466873|466874|466876|466881|466884|466886|466887|466890|466892|466895|466896|466904|466909|466910|466911|466915|466916|466917|466927|466933|467028|467029|467041|467091|467105|467115|467128|467138|467140|467347|467354|467369|467373|467669|467674|467675|467676|467679|467682|467684|467686|467687|467688|467689|467697|467699|467710|467712|467716|467719|467720|467722|467724|467725|467730|467732|467735|467736|467744|467747|467753|467758|467768|467776|467777|467782|467784|467801|467871|467873|467875|467884|467890|467891|467897|467899|467911|467923|467924|467927|467929|467930|467933|467939|467946|467954|467960|467964|467968|467974|467980|467982|467988|467992|467998|468002|468009|468012|468019|468020|468022|468026|468028|468034|468037|468040|468048|468056|468058|468071|468075|468079|468086|468103|468106|468113|468128|468129|468136|468140|468143|468145|468147|468154|468155|468157|468167|468170|468171|468178|468183|468194|468202|468208|468214|468218|468220|468226|468228|468232|468233|468240|468246|468250|468251|468256|468263|468276|468415|470951|472493|472548|473065|474207|474355|475427|475590|476054|476087|476238|476493|476515|476527|476531|476532|476533|476536|476540|476543|476552|476555|476570|476575|476585|476587|476596|476598|476602|476604|476611|476612|476621|476622|476630|476634|476636|476643|476644|476646|476657|476660|476665|476667|476673|476677|476686|476688|476695|476700|476710|476714|476720|476723|476728|476730|476749|476755|476756|476762|476767|476768|476776|476778|476791|476817|476823|476836|476839|476845|476849|476852|476859|476860|476861|476862|476863|476864|476870|476878|476882|476884|476898|476899|476900|476915|476917|476919|476922|476940|476941|476943|476960|476962|476967|476973|476976|476984|476992|477001|477002|477007|477009|477020|477033|477039|477047|477048|477054|477066|477080|477095|477096|477098|477105|477111|477112|477133|477139|477144|477153|477163|477167|477168|477169|477170|477172|477180|477182|477186|477189|477193|477198|477202|477208|477216|477233|477235|477236|477240|477249|477251|477257|477284|477294|477304|477319|477344|477354|477355|477371|477375|477381|477397|477401|477454|477491|477506|477510|477516|477520|477540|477548|477553|477557|477562|477576|477583|478030|478509|478516|478518|478538|478570|478578|478581|478584|478586|478595|478602|478621|478626|478633|478636|478644|478662|478666|478668|478669|478672|478678|478680|478681|478685|478687|478698|478700|478701|478704|478717|478726|478732|478734|478738|478739|478740|478744|478750|478765|478781|478792|478793|478794|478808|478813|478842|478848|478859|478872|478888|478892|479169|479205|479227|479229|479239|479253|479263|479275|479280|479300|479303|479304|479324|479332|479335|479370|479381|479382|479384|479401|479415|479422|479434|479444|479458|479459|479483|479543|479691|479784|480470|480471|480475|482499|482815|482823|482839|482844|482847|482855|482859|482863|482866|482870|482872|482887|482890|482905|482914|482925|482927|482929|482930|482932|482939|482944|482947|482953|482975|482987|482991|482993|483001|483006|483020|483029|483277|484450|484475|484488|484514|484526|484537|484550|484555|484559|484561|484566|484571|484575|484599|484600|484601|484603|484605|484628|484638|484646|484652|484687|484692|484696|484703|484704|484705|484710|484713|484726|484727|484745|484763|484768|484779|484787|484791|484815|484836|484851|484864|484865|484890|484894|484898|484899|484900|484912|484924|484944|484966|484967|484974|485096|485099|485120|485141|485142|485168|485320|485322|485341|485350|485389|485398|486645|486647|486959|487110|487345|487398|487405|487411|487414|487426|487432|487455|487465|487466|487468|487474|487486|487509|487511|487513|487521|487540|487542|487549|487556|487560|487571|487582|487584|487595|487640|487643|487645|487647|487648|487651|487658|487661|487663|487664|487667|487673|487675|487688|487691|487693|487699|487710|487711|487712|487713|487720|487721|487732|487733|487734|487739|487843|487863|487873|487879|487882|487891|487895|487931|487933|487934|487936|487961|487963|487989|487992|488139|504039|504173|504184|504509|504764|505154|505176|505948|505953|506103|506368|506384|506397|506855|512864|513363|514029|514338|514340|520954|525933|527430|527435|527437|527439|527449|527452|527518|527525|527528|527530|527539|527540|527541|527542|527543|527545|527547|527552|527554|527555|527559|527560|527561|527563|527564|527567|527569|527570|527571|527572|527573|527574|527575|527577|527578|527580|527582|527588|527589|527592|527593|527596|527597|527598|527600|527602|527603|527604|527611|527614|527615|527618|527619|527620|527622|527623|527624|527625|527627|527631|527633|527635|527638|527639|527642|527643|527644|527645|527647|527648|527650|527651|527653|527654|527656|527659|527660|527662|527671|527672|527674|527677|527680|527681|527682|527683|527685|527686|527687|527689|527690|527691|527692|527694|527696|527699|527701|527702|527704|527706|527709|527712|527714|527715|527716|527729|527731|527734|527740|527751|527784|527789|527791|527796|527799|527804|527805|527814|527819|527821|527846|527847|527849|527850|527869|527876|527881|527885|527887|527891|527893|527894|527896|527900|527902|527909|527912|527914|527920|527923|527925|527927|527936|527938|527949|527951|527955|527969|527971|527974|527976|527980|527982|527984|527987|527998|527999|528003|528004|528010|528014|528017|528025|528026|528030|528032|528034|528036|528038|528045|528046|528047|528050|528052|528053|528057|528060|528065|528067|528070|528071|528073|528074|528076|528082|528088|528091|528092|528095|528106|528111|528114|528117|528127|528132|528139|528147|528149|528150|528152|528153|528155|528159|528162|528165|528179|528182|528186|528194|528202|528203|528212|528214|528217|528221|528236|528243|528246|528248|528253|528259|528264|528265|529805|530482|530485|530487|530629|530633|530634|530638|530639|530660|530835|531019|531023|531024|531029|531031|531037|531048|531050|531055|531056|531064|531066|531068|531071|531074|531076|531078|531084|531086|531108|531119|531121|531124|531130|531135|531162|531175|531180|531181|531185|531191|531197|531204|531210|531211|531213|531215|531230|531231|531234|531245|531257|531260|531263|531264|531266|531268|531271|531274|531276|531277|531280|531281|531283|531284|531285|531287|531292|531294|531296|531297|531299|531300|531306|531308|531310|531312|531313|531314|531317|531319|531320|531325|531327|531332|531333|531334|531335|531337|531338|531340|531342|531346|531347|531350|531351|531352|531353|531354|531355|531357|531367|531375|531377|531379|531384|531385|531398|531401|531460|531537|531540|531540|531541|531542|531543|531550|531552|531554|531557|531563|531564|531567|531571|531582|531587|531588|531592|531597|531612|531614|531620|531623|531629|531631|531634|531638|535743|536420|536421|536427|536429|536438|536442|536465|536500|538668|538672|538691|538692|538702|538708|538711|538765|538789|538828|538871|538903|539268|539358|539360|540531|549465|550707|550717|551808|557872|564658|565784|565785|565798|565799|565804|565807|565810|565814|565824|565886|565894|565896|565904|565913|565914|565916|565917|565925|565927|565929|565931|565937|565939|565943|565947|565950|565951|565952|565962|565964|565969|565971|565981|565983|565985|565991|565998|566000|566006|566010|566011|566012|566014|566015|566017|566020|566023|566026|566033|566036|566039|566043|566049|566050|566052|566055|566057|566059|566063|566064|566074|566076|566079|566085|566088|566090|566092|566096|566097|566099|566101|566102|566104|567136|567139|567231|567232|567234|567246|567252|567253|567257|567264|567265|567266|567267|567274|567279|567300|567301|567302|567303|567310|567311|567314|567319|567323|567331|567337|567342|567343|567347|567350|567351|567353|567357|567368|567371|567376|567377|567385|567388|567389|567391|567393|567402|567412|567413|567432|567435|567438|567447|567451|567453|567461|567462|567468|567470|567481|567483|567486|567490|567505|567512|567517|567526|567528|567537|567544|567546|568047|568220|568295|568301|568302|568305|568308|568309|568312|568317|568319|568321|568330|568331|568340|568341|568343|568344|568347|568349|568352|568353|568355|568357|568359|568361|568363|568365|568367|568369|568372|568373|568375|568384|568385|568392|568393|568396|568398|568400|568403|568404|568409|568414|568415|568417|568421|568426|568429|568430|568434|568437|568439|568441|568443|568445|568451|568453|568457|568460|568463|568466|568476|568479|568483|568484|568490|568491|568493|568497|568498|568500|568503|568566|568584|568590|568591|568593|568594|568616|568618|568622|568623|568629|568637|568639|568872|569065|569072|569074|569075|569077|569079|569080|569086|569089|569094|569099|569107|569111|569117|569119|569124|569126|569127|569145|569147|569152|569154|569158|569159|569162|569164|569166|569168|569169|569173|569175|569177|569182|569193|569197|569198|569201|570681|570685|570686|570701|570705|570789|570795|570812|570813|570814|571137|571146|571153|571155|571158|571159|571161|571162|571168|571172|571178|571180|571189|571190|571193|571194|571198|571200|571204|571205|571207|571209|571211|571375|571378|571399|571413|571419|571426|571427|571431|571436|571438|571440|571443|571445|571447|571449|571453|571465|571474|571477|571482|571484|571495|571496|571497|571502|572160|572171|572254|572266|572270|572271|572276|572280|572285|572290|572294|572299|572301|572302|572305|572312|572313|572314|572322|572323|572324|572327|572337|572351|572357|572374|572378|572383|572393|572400|572401|572403|572406|572412|572423|572424|572431|572442|572448|572453|572455|572456|572457|572463|572466|572469|572473|572474|572477|572482|572485|574260|574267|574463|574464|574465|574466|574467|574468|574469|574470|574471|574472|574473|574474|574475|574476|574477|574478|574479|574480|574481|574482|574483|574484|574485|574486|574487|574488|574489|574490|574491|574492|574493|574495|575586|575872|575894|575896|575897|575899|575900|575901|575902|575903|575904|575905|575906|575907|575908|575909|575911|575912|575913|575914|575915|575917|575919|575920|575921|575922|575985|575986|575987|575988|575989|575990|575991|575992|575993|575994|575995|575996|575997|575998|575999|576000|576001|576002|576003|576004|576005|576006|576007|576008|576009|576011|576019|576050|589800|590022|590023|590024|590564|609868|610417|611160|611172|611177|611185|611188|611192|611194|611195|611201|611202|611229|611240|611323|615057|615145|615231|617912|617914|617923|617928|617933|617934|617938|617942|617946|617947|617953|617963|617967|617968|617970|617973|617974|617979|617985|617994|617996|618011|618017|618018|618022|618037|618039|618042|618049|618051|618055|618058|618071|618079|618084|618086|618089|618090|618097|618102|618108|618116|618119|618120|618132|618133|618134|618143|618144|618156|618157|618165|618172|618177|618183|618186|618191|618192|618198|618204|618547|618552|618554|618559|618560|618561|618569|618573|618576|618577|618578|618581|618591|618603|618616|618620|618626|618639|618643|618648|618651|618653|618654|618656|618667|618668|618675|618686|618687|618691|618692|618695|618698|618701|619438|619475|619505|619514|619561|619569|619571|619585|619678|619680|619687|619715|619719|621043|621044|621045|621046|621047|621048|621049|621050|621051|621390|621396|621397|621399|621400|621409|621411|621412|621413|621417|621420|621421|621425|621426|621432|621433|621435|621436|621440|621442|621452|621453|621571|621572|621577|621579|621582|621584|621589|621599|621829|621831|622040|622553|622707|624046|625975|630169|635396|635424|641633|641634|641635|641636|641637|641638|641639|641640|641641|641642|641643|641644|641645|641646|641647|641648|641649|641650|641651|641652|641653|641654|641655|641656|641657|641658|641659|641660|641661|641662|641663|641664|641665|641666|641667|641668|641669|641670|641671|641672|641673|641674|641675|641676|641677|641678|641679|641680|641681|641682|641683|641684|641685|641686|641687|641688|641689|641690|641691|641692|641693|641694|641695|641696|641697|641698|641699|641700|641701|641702|641703|641704|641705|641706|641707|641708|641709|641710|641711|641712|641713|641714|641715|641716|641717|641718|641719|641720|641721|641722|641723|641724|641725|641726|641727|641728|641729|641730|641731|641732|641733|641734|641735|641736|641737|641738|641739|641740|641741|641742|641743|641744|641745|641746|641747|641748|641749|641750|641751|641752|641753|641754|641755|641756|641757|641758|641759|641760|641761|641762|641763|641764|641765|641766|641767|641768|641769|641770|641771|641772|641773|641774|641775|641776|641777|641778|641779|641780|641781|641782|641783|641784|641785|641786|641787|641788|641789|641790|641791|641792|641793|641794|641795|641796|641797|641798|641799|641800|641801|641802|641803|641804|641805|641806|641807|641808|641809|641810|641811|641812|641813|641814|641815|641816|641817|641818|641819|641820|641821|641822|641823|641824|641825|641826|641827|641828|641829|641830|641831|641832|641833|641834|641835|641836|641837|641838|641839|641840|641841|641842|641843|641844|641845|641846|641847|641848|641849|641850|641851|641852|641853|641854|641855|641856|641857|641858|641859|641860|641861|641862|641863|641864|641865|641866|641867|641868|641869|641870|641871|641872|641873|641874|641875|641876|641877|641878|641879|641880|641881|641882|641883|641884|641885|641886|641887|641888|641889|641890|641891|641892|641893|641894|641895|641896|641897|641898|641899|641900|641901|641902|641903|641904|641905|641906|641907|641908|641909|641910|641911|641912|641913|641914|641915|641916|641917|641918|641919|641920|641921|641922|641923|641924|643711|645916|645917|645918|645919|645920|645921|645922|645923|645924|645925|645926|645927|645928|645929|645930|645931|645932|645933|645934|645935|645936|645937|645938|645939|645940|645941|645942|645943|645944|645945|645946|645947|645948|645949|645950|645951|645952|645953|645954|645955|645956|645957|645958|645959|645960|645961|645962|645963|645964|645965|645966|645967|645968|645969|645970|645971|645972|645973|645974|645975|645976|645977|645978|645979|645980|645981|645982|645983|645984|645985|645986|645987|645988|645989|645990|645991|645992|645993|645994|645995|645996|645997|645998|645999|646000|646001|646002|646003|646004|646005|646006|646007|646008|646009|646010|646011|646012|646013|646014|646015|646016|646017|646018|646019|646020|646021|646022|646023|646024|646025|646026|646027|646028|646029|646030|646031|646032|646033|646034|646035|646036|646037|646038|646039|646040|646041|646042|646043|646044|646045|646046|646047|646048|646049|646050|646051|646052|646053|646054|646055|646056|646057|646058|646059|646060|646061|646062|646063|646064|646065|646066|646067|646306|652272|652274|652277|652279|652284|652286|652287|652291|652354|652362|652389|652391|652509|652511|652532|652644|652646|652647|652657|652663|652770|652774|652778|652785|652791|652794|652800|652803|652805|652813|652814|652820|652821|652824|652827|652828|652829|652958|652960|652966|653113|653122|653134|653140|653141|653145|653275|653358|653363|653376|653381|654739|654740|654832|656202|682124|684487|688159|688770|688772|690064|695596|695743|702670|725467|738590|739031|753799|753801|753804|753812|755876|760213|760265|769466|769468|769476|769482|769483|769486|769488|769492|769495|769498|769500|769502|769508|769509|769513|769515|769522|769523|769529|771531|771536|771539|771540|771554|771556|775878|775880|775949|776019|776166|776200|776217|776304|776342|776677|778273|784567|784574|784575|784578|784580|784581|784585|784587|784588|784593|784595|784597|784598|785584|785585|785586|785592|785593|785594|785601|785603|787842|787956|788122|788124|788126|788130|788148|788245|789252|789554|789565|789568|789610|789613|789618|789620|789623|789629|789632|789635|790924|791313|791317|791338|791738|791755|806835|807272|807292|807339|807621|809073|810150|810194|810229|810434|810568|811042|811077|811352|811357|811367|811371|811377|811379|811389|811393|811404|811407|811417|811419|811420|811434|811437|811448|811469|811479|811491|811493|811506|811508|811519|811529|811535|811562|811567|811571|811580|811595|811611|811615|811624|811634|811642|811650|811652|811655|811697|811715|811724|811728|811740|811742|811753|811755|811763|811784|811793|811795|811804|811807|812403|812765|812770|813107|813175|813574|813637|813647|813649|813678|813684|813697|813724|813733|813735|813750|813762|813764|813767|813775|813792|813803|813815|813817|813818|813820|813823|813831|813845|813854|813863|813865|813867|813877|813882|813894|813897|813911|813918|813921|814092|814101|815028|815095|815705|818638|818639|818640|818641|818642|818643|818644|818645|818646|818647|818648|818649|818650|818651|818652|818653|818654|818655|818656|818657|818658|818659|818660|818661|818662|818663|818664|818665|818666|818667|818668|818669|818670|818671|818672|818673|818674|818675|818676|818677|818678|818679|818680|818681|818682|818683|818684|818685|818686|818687|818688|818689|818690|818691|818692|818693|818694|818695|818696|818697|818698|818699|818700|818701|818702|818703|818704|818705|818706|818707|818708|820552|820553|820554|820555|820556|820557|820558|820559|820561|820562|820563|820564|820565|820566|820567|820568|821045|821046|821047|821048|821049|821050|821051|821052|821053|821054|821055|821056|821057|821058|821059|821061|821062|821063|821066|821067|821068|821069|821071|821072|821075|821077|821079|821083|821084|821085|821086|821087|821088|821091|821092|821093|821095|821096|821097|822092|840623|840624|840625|840626|840627|840628|840629|840630|840631|840632|840633|840634|840635|840636|840637|840638|840639|840640|840641|840642|840643|840644|840645|840646|840647|840648|840649|840650|840651|840652|840653|840654|840655|840656|840657|840658|840659|840660|840661|840662|840663|840664|840665|840666|840667|840668|840669|840670|840671|840672|840673|840674|840675|840676|840677|840678|840679|840680|840681|840682|840683|840684|840685|840686|840687|840688|840689|840690|840691|840692|840693|840694|840695|840696|840697|840698|840699|840700|840701|840702|840703|840704|840705|840706|840707|840708|840709|840710|840711|840712|840713|840714|840715|840716|840717|840718|840719|840720|840721|840722|840723|840724|840725|840726|840727|840728|840729|840730|840731|840732|840733|840734|840735|840736|840737|840738|840739|840740|840741|840742|840743|840744|840745|840746|840747|840748|840749|840750|840751|840752|840753|840754|840755|840756|840757|840758|840759|840760|840761|840762|840763|840764|840765|840766|840767|840768|840769|840770|840771|840772|840773|840774|840775|840776|840777|840778|840779|840780|840781|840782|840783|840784|840785|840786|840787|840788|840789|840790|840791|840792|840793|840794|840795|840796|840797|840798|840799|840800|840801|840802|840803|840804|840805|840806|840807|840808|840809|840810|840811|840812|840813|840814|840815|840816|840817|840818|840819|840820|840821|840822|840823|840824|840825|840826|840827|840828|840829|840830|840831|840832|840833|840834|840835|840836|840837|840838|840839|840840|840841|840842|840843|840844|840845|840846|840847|840848|840849|840850|840851|840852|840853|840854|840855|840856|840857|840858|840859|840860|840861|840862|840863|840864|840865|840866|840867|840868|840869|840870|840871|840872|840873|840874|840875|845357|845358|845359|845360|845361|845362|845363|845364|845365|845366|845367|845368|845369|845370|845371|845372|845373|845374|845375|845376|845377|845378|845379|845380|845381|845382|845383|845384|845385|845386|845387|845388|845389|845390|845391|845392|845393|845394|845395|845396|845397|845398|845399|845400|845401|845402|845403|845404|845405|845406|845407|845408|845409|845410|845411|845412|845413|845414|845415|845416|845417|845418|845419|845420|845421|845422|845423|845424|845425|845426|845427|845428|845429|845430|845431|845432|845433|845434|845435|845436|845437|845438|845439|845440|845441|845442|845443|845444|845445|845446|845447|845448|845449|845450|845451|845452|845453|845454|845455|845456|845457|845458|845459|845460|845461|845462|845463|845464|845465|845466|845467|845468|845469|845470|845471|845472|845473|845474|845475|845476|845477|845478|845479|845480|845481|851527|851529|851967|851969|851971|852206|852210|852212|852532|852534|852538|852717|852744|852746|852750|852875|852877|853318|853375|853424|853457|853544|853703|853755|853807|853876|853877|853972|853994|854048|854102|854148|854203|854292|854474|854524|854533|854551|854587|854661|854706|854837|854861|854903|854938|854986|855344|855593|855639|855692|855715|855837|858409|858417|858425|858426|858437|858442|858451|858467|858476|860057|860391|861539|861552|904874|905940|905943|905945|912091|912102|912118|912164|912166|912188|912193|912203|912211|912261|912271|912280|912316|912320|912331|912349|913890|913934|913964|913976|915997|916197|916489|917137|917140|917143|917145|917146|917147|917152|917154|917155|917156|917157|917159|917162|917163|917246|917250|917252|917255|917507|917508|917511|917548|920533|921489|926824|926825|926826|926827|926828|926829|926830|926831|926832|926833|926834|926835|926836|926837|926838|926839|926840|926841|926842|926843|926844|926845|926846|926847|926848|926849|926850|926851|926852|926853|926854|926855|926856|926857|926858|926859|926860|926861|926862|926863|926864|926865|926866|926867|926868|926869|926870|926871|926872|926873|926874|926875|926876|926877|926878|926879|926880|926881|926882|926883|926884|926885|926886|926887|926888|926889|926890|926891|926892|926893|926894|926895|926896|926897|926898|926899|926900|926901|926902|926903|926904|926905|926906|926907|926908|926909|926910|926911|928272|928273|928274|928275|928276|928277|928278|928279|928280|928281|928282|928283|928284|928285|928286|928287|928288|928289|928290|928291|928292|928293|928294|928295|928296|928297|928298|928299|928300|928301|928302|928303|928304|928305|928306|928307|928308|928309|928310|928311|928312|928313|928314|928315|928316|928317|928318|928319|928320|928321|928322|928323|928324|928325|928326|928327|936365|936366|936367|936368|936369|936370|936371|936372|936373|936374|936375|936376|936377|936378|936379|936380|936381|936382|936383|936384|936385|936386|936387|936388|936389|936390|936391|936392|936393|936394|936395|936396|936397|936398|936399|936400|936401|936402|936403|936404|936405|936406|936407|936408|936409|936410|936411|936412|936413|936414|936415|936416|936417|936418|936419|936420|936421|936422|936423|936424|936425|936426|936427|936428|936429|936430|936431|936432|936433|936434|936435|936436|936437|936438|936439|936440|936441|936442|936443|937938|937939|937940|937941|937942|937943|937944|937945|937946|937947|937948|937949|937950|937951|937952|937953|937954|937955|937956|937957|937958|937959|937960|937961|937962|937963|937964|937965|937966|937967|937968|937969|937970|937971|937972|937973|937974|937975|937976|937977|940278|940279|940280|940281|940282|940283|940284|940285|940414|940415|941048|941049|941050|941051|941182|947242|948287|948288|948289|948290|948291|948292|948293|948294|948295|948296|948297|948298|948299|948300|948301|948302|948303|948304|948305|948306|948307|948308|948309|948310|948311|948312|948313|948314|948315|948316|948317|948318|948319|948320|948321|948322|948323|948324|948325|948326|948327|948328|948329|948330|948331|948332|948333|948334|948335|948336|948337|948338|948339|948340|948341|948342|948343|948344|948345|948346|948347|948348|948349|948350|948351|948352|948353|948354|948355|948356|948357|948358|948359|948360|948361|948362|948363|948364|948365|948366|948367|948368|948369|949924|949925|949926|949927|949928|949929|949930|949931|949932|949933|949934|949935|949936|949937|949938|949939|949940|949941|949942|949943|949944|949945|949946|949947|949948|949949|949950|949951|949952|949953|949954|949955|949956|949957|949958|949959|949960|949961|949962|949963|949964|949965|957049|957050|957051|957052|957053|957054|957055|957056|957057|957058|957059|957060|957061|957062|957063|957064|957065|957066|957067|957068|957069|957070|957071|957072|957073|957074|957075|957076|957077|957078|957079|957080|957081|957082|957083|957084|957085|957086|957087|957088|957089|957090|957091|957092|957093|957094|957095|957096|957097|957098|957099|957100|957101|957102|958115|958116|958117|958118|958119|958120|958121|958122|958123|958124|958125|958126|958127|958128|958129|958130|958131|958132|958133|958134|958135|958136|958137|958138|958139|958140|960219|960220|960221|960797|960887|961661|963301|963302|965849|970075|970076|970077|970078|970079|970080|970081|970082|970083|970084|970085|970086|970087|970088|970089|970090|970091|970092|970093|970094|970095|970096|970098|970100|975758|975815|975817|975830|975952|980133|980183|980196|983462|983646|983647|983648|983649|983650|983651|983933", "text": "Hereditary breast and ovarian cancer syndrome" }, { - "baseId": "18088|18106|18108|18118|18127", + "upstreamId": "18088|18106|18108|18118|18127", "text": "Arylsulfatase A pseudodeficiency" }, { - "baseId": "18089", + "upstreamId": "18089", "text": "ARYLSULFATASE A POLYMORPHISM" }, { - "baseId": "18090|18091|18096|18097|18133", + "upstreamId": "18090|18091|18096|18097|18133", "text": "Metachromatic leukodystrophy, juvenile type" }, { - "baseId": "18090|18091|18092|18096|18128|18129|18131", + "upstreamId": "18090|18091|18092|18096|18128|18129|18131", "text": "Metachromatic leukodystrophy, adult type" }, { - "baseId": "18091", + "upstreamId": "18091", "text": "Arylsulfatase a, allele a" }, { - "baseId": "18093|18094|18095|18099|18130|18132", + "upstreamId": "18093|18094|18095|18099|18130|18132", "text": "Metachromatic leukodystrophy, late infantile" }, { - "baseId": "18099", + "upstreamId": "18099", "text": "Pseudoarylsulfatase A deficiency" }, { - "baseId": "18100|18101|18103|18113|18114|18115|18117|18119|18120", + "upstreamId": "18100|18101|18103|18113|18114|18115|18117|18119|18120", "text": "Metachromatic leukodystrophy, severe" }, { - "baseId": "18119|181427|197521|361079|361392|590049|614156|677052|677053|677054|682863|682863", + "upstreamId": "18119|181427|197521|361079|361392|590049|614156|677052|677053|677054|682863|682863", "text": "Leukodystrophy" }, { - "baseId": "18121|18126", + "upstreamId": "18121|18126", "text": "Metachromatic leukodystrophy, mild" }, { - "baseId": "18122", + "upstreamId": "18122", "text": "Arylsulfatase a pseudodeficiency, severe" }, { - "baseId": "18123", + "upstreamId": "18123", "text": "Arylsulfatase a pseudodeficiency, intermediate" }, { - "baseId": "18134|18136|102137|102138|102139|195436|200226|200227|200228|200230|204444|204457|215029|215030|215031|215032|215033|215034|215035|216055|216056|216057|216058|216059|216060|227103|227104|254393|254395|254396|268593|272047|315890|315891|315892|315896|315898|315899|315901|315905|315909|315913|315915|315916|315944|315948|315950|315951|323049|323050|323052|323060|323098|323099|323124|323125|323127|323140|323141|323142|329122|329127|329129|329141|329143|329151|329153|329154|329171|329182|329183|329184|329189|329190|329196|329208|330304|330307|330314|330315|330324|330329|330331|330337|330347|330350|330354|330355|330358|330363|330364|371806|372789|425947|437947|438956|461813|503517|503835|504098|513097|526608|526634|526637|526881|546633|546635|546641|546647|546654|546655|546840|546842|546844|546850|546936|546938|546948|546959|547188|566308|640594|640595|640596|640597|640598|652203|652205|693136|713322|724878|738434|744727|768878|784261|784262|784263|784266|787792|839254|839255|839256|839257|839258|839259|869180|869181|869182|869183|869184|869185|869186|869187|869188|869189|869190|869191|869192|869193|869194|869195|869196|869197|869198|869199|869200|869201|869202|869203|869204|869205|869206|869207|869208|869209|869210|869211|869212|869213|869214|869215|869216|956740|956741|960771|979268|979269|979270|979271|979272|979273|979274|979275|979276|979277|979278|979279|979280", + "upstreamId": "18134|18136|102137|102138|102139|195436|200226|200227|200228|200230|204444|204457|215029|215030|215031|215032|215033|215034|215035|216055|216056|216057|216058|216059|216060|227103|227104|254393|254395|254396|268593|272047|315890|315891|315892|315896|315898|315899|315901|315905|315909|315913|315915|315916|315944|315948|315950|315951|323049|323050|323052|323060|323098|323099|323124|323125|323127|323140|323141|323142|329122|329127|329129|329141|329143|329151|329153|329154|329171|329182|329183|329184|329189|329190|329196|329208|330304|330307|330314|330315|330324|330329|330331|330337|330347|330350|330354|330355|330358|330363|330364|371806|372789|425947|437947|438956|461813|503517|503835|504098|513097|526608|526634|526637|526881|546633|546635|546641|546647|546654|546655|546840|546842|546844|546850|546936|546938|546948|546959|547188|566308|640594|640595|640596|640597|640598|652203|652205|693136|713322|724878|738434|744727|768878|784261|784262|784263|784266|787792|839254|839255|839256|839257|839258|839259|869180|869181|869182|869183|869184|869185|869186|869187|869188|869189|869190|869191|869192|869193|869194|869195|869196|869197|869198|869199|869200|869201|869202|869203|869204|869205|869206|869207|869208|869209|869210|869211|869212|869213|869214|869215|869216|956740|956741|960771|979268|979269|979270|979271|979272|979273|979274|979275|979276|979277|979278|979279|979280", "text": "Vitamin B12-responsive methylmalonic acidemia type cblB" }, { - "baseId": "18137|18141|22416|23434|39215|39363|39689|70599|134306|134449|134450|134452|134611|135478|135479|135480|135481|135584|140740|140920|140922|140923|140925|140926|141190|141191|141192|142670|142673|171263|172293|177103|177980|190210|190439|190490|192177|192375|192406|193573|193574|193575|195065|195792|196267|201779|201780|201782|201783|201784|201786|201789|201793|201794|201795|201796|201797|201798|201922|201926|201927|201929|201931|201933|201935|201937|201940|201941|201942|201943|201944|201946|203458|203461|203462|203466|203467|203825|203826|203827|203828|203829|203831|208401|251561|251562|251563|256222|259836|263767|266036|271353|291386|291387|291388|291393|291395|291399|291404|291405|291406|291408|291409|291410|291415|291419|291420|291423|291424|291425|291430|291431|291433|292543|292544|292545|292565|292566|292568|292571|292572|292575|292576|292577|292589|292602|292603|292605|292614|292621|292630|292650|292651|292655|292658|292673|292674|292676|292677|292679|292692|295927|295940|295942|295943|295945|295948|295951|295952|295953|295954|295956|295957|295958|295959|295961|295962|295963|295965|295966|295967|295970|295971|295980|295981|295982|296000|296001|296002|296004|296020|296021|303280|303313|306637|328931|328932|328936|328941|328942|328952|328953|328954|328956|328962|328964|328968|338929|338932|338937|338939|338949|338951|338955|338957|338965|338974|338979|344967|344974|344975|344984|344986|344987|344988|344990|344991|344992|346297|346302|346305|346313|346314|346319|346320|346333|346334|346341|360451|363937|367691|367693|367694|367989|367991|368050|368736|368872|368888|368890|369211|370201|376276|377303|378422|379788|394136|394344|394615|395063|395066|395071|395417|395686|402161|402600|402756|402757|404310|406461|406463|410883|421573|422176|426664|440828|440830|440831|443637|443638|445792|445793|453116|453130|453772|453774|453775|453780|454341|454343|454345|454347|454348|454352|454353|455303|455313|455317|455404|455407|455759|455970|456156|467846|468322|468326|468328|471240|500579|501072|501189|501565|507960|519942|520131|520132|520262|520498|520502|520524|520526|520528|521456|521803|521806|521808|522061|522063|522066|531449|533934|537010|559704|559809|559944|560473|560475|560612|562242|562244|563290|563399|563401|563403|563409|564056|564057|564060|565450|565458|569229|571560|571568|571595|573008|573148|573834|573836|573842|574504|575177|575178|579097|579110|579112|580610|614298|632454|632455|632456|632457|632458|632459|634667|634668|634669|634670|634671|634672|634673|634674|646129|646130|646131|646132|646133|646134|646135|646136|646137|646138|646139|649020|649021|651207|651219|651526|683768|685435|686809|689818|721782|749877|749878|749879|773372|782465|793058|795761|819669|821100|821356|821357|821377|828537|828538|829462|829463|829464|829465|829466|829467|829468|829469|831635|831636|831637|831638|831639|831640|831641|831642|831643|831644|831645|831646|831647|848857|848858|850658|850663|850664|850665|850666|850668|851852|886895|889554|889555|889556|889557|889558|889559|889560|889561|889562|889563|889564|889565|889566|889567|889568|889569|889570|889571|889572|889573|889574|889575|889576|889577|889578|889579|889580|889581|889582|889583|889584|889585|889586|889587|889588|889589|889590|889591|889592|889593|889594|889595|889596|889597|889598|889599|889600|889601|889602|889603|889604|889605|889606|889607|889608|889609|889610|889611|889612|923605|923606|923607|923608|923609|924276|924277|924278|924279|924280|924281|929344|929345|929867|929870|929871|929872|929873|932440|932441|933196|933197|933198|933199|933200|933201|933202|933203|933204|933205|939736|939738|939739|939740|940787|941263|944123|944124|944125|944910|944911|944912|944913|944914|951256|951257|951948|951949|953848|953849|953850|958971", + "upstreamId": "18137|18141|22416|23434|39215|39363|39689|70599|134306|134449|134450|134452|134611|135478|135479|135480|135481|135584|140740|140920|140922|140923|140925|140926|141190|141191|141192|142670|142673|171263|172293|177103|177980|190210|190439|190490|192177|192375|192406|193573|193574|193575|195065|195792|196267|201779|201780|201782|201783|201784|201786|201789|201793|201794|201795|201796|201797|201798|201922|201926|201927|201929|201931|201933|201935|201937|201940|201941|201942|201943|201944|201946|203458|203461|203462|203466|203467|203825|203826|203827|203828|203829|203831|208401|251561|251562|251563|256222|259836|263767|266036|271353|291386|291387|291388|291393|291395|291399|291404|291405|291406|291408|291409|291410|291415|291419|291420|291423|291424|291425|291430|291431|291433|292543|292544|292545|292565|292566|292568|292571|292572|292575|292576|292577|292589|292602|292603|292605|292614|292621|292630|292650|292651|292655|292658|292673|292674|292676|292677|292679|292692|295927|295940|295942|295943|295945|295948|295951|295952|295953|295954|295956|295957|295958|295959|295961|295962|295963|295965|295966|295967|295970|295971|295980|295981|295982|296000|296001|296002|296004|296020|296021|303280|303313|306637|328931|328932|328936|328941|328942|328952|328953|328954|328956|328962|328964|328968|338929|338932|338937|338939|338949|338951|338955|338957|338965|338974|338979|344967|344974|344975|344984|344986|344987|344988|344990|344991|344992|346297|346302|346305|346313|346314|346319|346320|346333|346334|346341|360451|363937|367691|367693|367694|367989|367991|368050|368736|368872|368888|368890|369211|370201|376276|377303|378422|379788|394136|394344|394615|395063|395066|395071|395417|395686|402161|402600|402756|402757|404310|406461|406463|410883|421573|422176|426664|440828|440830|440831|443637|443638|445792|445793|453116|453130|453772|453774|453775|453780|454341|454343|454345|454347|454348|454352|454353|455303|455313|455317|455404|455407|455759|455970|456156|467846|468322|468326|468328|471240|500579|501072|501189|501565|507960|519942|520131|520132|520262|520498|520502|520524|520526|520528|521456|521803|521806|521808|522061|522063|522066|531449|533934|537010|559704|559809|559944|560473|560475|560612|562242|562244|563290|563399|563401|563403|563409|564056|564057|564060|565450|565458|569229|571560|571568|571595|573008|573148|573834|573836|573842|574504|575177|575178|579097|579110|579112|580610|614298|632454|632455|632456|632457|632458|632459|634667|634668|634669|634670|634671|634672|634673|634674|646129|646130|646131|646132|646133|646134|646135|646136|646137|646138|646139|649020|649021|651207|651219|651526|683768|685435|686809|689818|721782|749877|749878|749879|773372|782465|793058|795761|819669|821100|821356|821357|821377|828537|828538|829462|829463|829464|829465|829466|829467|829468|829469|831635|831636|831637|831638|831639|831640|831641|831642|831643|831644|831645|831646|831647|848857|848858|850658|850663|850664|850665|850666|850668|851852|886895|889554|889555|889556|889557|889558|889559|889560|889561|889562|889563|889564|889565|889566|889567|889568|889569|889570|889571|889572|889573|889574|889575|889576|889577|889578|889579|889580|889581|889582|889583|889584|889585|889586|889587|889588|889589|889590|889591|889592|889593|889594|889595|889596|889597|889598|889599|889600|889601|889602|889603|889604|889605|889606|889607|889608|889609|889610|889611|889612|923605|923606|923607|923608|923609|924276|924277|924278|924279|924280|924281|929344|929345|929867|929870|929871|929872|929873|932440|932441|933196|933197|933198|933199|933200|933201|933202|933203|933204|933205|939736|939738|939739|939740|940787|941263|944123|944124|944125|944910|944911|944912|944913|944914|951256|951257|951948|951949|953848|953849|953850|958971", "text": "Progressive myoclonic epilepsy" }, { - "baseId": "18147", + "upstreamId": "18147", "text": "Inflammatory bowel disease 17, protection against" }, { - "baseId": "18147", + "upstreamId": "18147", "text": "Psoriasis, protection against" }, { - "baseId": "18148|57046|57047|57048|57049|175382|175526|175530|195778|227348|230251|315655|315659|315661|315662|315669|315671|315678|315682|315683|315688|315690|315698|315699|322494|322498|322520|322536|322537|322563|322591|328717|328740|328741|328748|328758|328759|329917|329934|329937|329938|329939|329947|329948|329949|444903|620838|869008|869009|869010|869011|869012|869013|869014|869015|869016|869017|869018|869019|869020|869021|869022|869023|869024|869025|869026|869027|869028|869029|869030|869031|869032|869033|869034|869035|869036|869037|872167", + "upstreamId": "18148|57046|57047|57048|57049|175382|175526|175530|195778|227348|230251|315655|315659|315661|315662|315669|315671|315678|315682|315683|315688|315690|315698|315699|322494|322498|322520|322536|322537|322563|322591|328717|328740|328741|328748|328758|328759|329917|329934|329937|329938|329939|329947|329948|329949|444903|620838|869008|869009|869010|869011|869012|869013|869014|869015|869016|869017|869018|869019|869020|869021|869022|869023|869024|869025|869026|869027|869028|869029|869030|869031|869032|869033|869034|869035|869036|869037|872167", "text": "Deafness, autosomal dominant 25" }, { - "baseId": "18149|18150|134993|134994|134995|141844|141847|141848|141849|141850|141851|141852|141853|141856|209344|210823|210824|210828|210829|210830|210831|210838|210840|210841|210844|210846|210847|210848|210849|210853|210854|210858|210866|210867|214817|214818|214819|214820|214821|227245|286375|286393|286395|286399|286401|286402|286410|286411|286420|286427|286428|286431|286444|286445|286454|286455|286458|286462|286463|287087|287091|287093|287094|287095|287097|287100|287107|287108|287109|287111|287113|287116|287117|287118|287120|287122|287126|287127|287128|287130|287131|287132|289419|289424|289434|289435|289440|289455|289464|289478|289482|289483|289496|289497|289499|289501|289504|289812|289813|289815|289817|289818|289820|289821|289822|289823|289825|289891|289893|289894|289895|289897|289898|289899|289905|289910|289919|366401|366403|366406|366590|367304|367312|389196|414886|414887|439265|443251|541986|541989|541993|541995|542006|542012|542013|542015|542024|542072|542077|542078|542082|542087|542090|542092|542097|542098|542100|542104|542108|542109|542113|542114|542116|542118|542119|542120|542122|542127|542129|542130|542132|542137|542139|542150|542181|542192|542249|542252|542255|542259|542263|542268|542274|542276|542278|542284|542288|542290|542291|621119|655450|655451|672037|733478|733479|733480|743959|747635|747642|747643|759062|763224|763234|763241|774758|774841|781331|781335|781337|781340|781347|781351|788754|801605|884962|884963|884964|884965|884966|884967|884968|884969|884970|884971|884972|884973|884974|884975|884976|884977|884978|884979|884980|884981|884982|884983|884984|884985|884986|884987|884988|884989|884990|884991|884992|884993|884994|884995|884996|884997|884998|884999|885000|885001|885002|885003|887368|887369|887370|977713|977714|977715|977716|977717|977718|977719|977720|977721|977722|977723", + "upstreamId": "18149|18150|134993|134994|134995|141844|141847|141848|141849|141850|141851|141852|141853|141856|209344|210823|210824|210828|210829|210830|210831|210838|210840|210841|210844|210846|210847|210848|210849|210853|210854|210858|210866|210867|214817|214818|214819|214820|214821|227245|286375|286393|286395|286399|286401|286402|286410|286411|286420|286427|286428|286431|286444|286445|286454|286455|286458|286462|286463|287087|287091|287093|287094|287095|287097|287100|287107|287108|287109|287111|287113|287116|287117|287118|287120|287122|287126|287127|287128|287130|287131|287132|289419|289424|289434|289435|289440|289455|289464|289478|289482|289483|289496|289497|289499|289501|289504|289812|289813|289815|289817|289818|289820|289821|289822|289823|289825|289891|289893|289894|289895|289897|289898|289899|289905|289910|289919|366401|366403|366406|366590|367304|367312|389196|414886|414887|439265|443251|541986|541989|541993|541995|542006|542012|542013|542015|542024|542072|542077|542078|542082|542087|542090|542092|542097|542098|542100|542104|542108|542109|542113|542114|542116|542118|542119|542120|542122|542127|542129|542130|542132|542137|542139|542150|542181|542192|542249|542252|542255|542259|542263|542268|542274|542276|542278|542284|542288|542290|542291|621119|655450|655451|672037|733478|733479|733480|743959|747635|747642|747643|759062|763224|763234|763241|774758|774841|781331|781335|781337|781340|781347|781351|788754|801605|884962|884963|884964|884965|884966|884967|884968|884969|884970|884971|884972|884973|884974|884975|884976|884977|884978|884979|884980|884981|884982|884983|884984|884985|884986|884987|884988|884989|884990|884991|884992|884993|884994|884995|884996|884997|884998|884999|885000|885001|885002|885003|887368|887369|887370|977713|977714|977715|977716|977717|977718|977719|977720|977721|977722|977723", "text": "Congenital lactic acidosis, Saguenay-Lac-Saint-Jean type" }, { - "baseId": "18152|18153|18154|18155|18156|18157|18158|18159|18160|18161|18162|18165|18167|18169|18170|18173|18174|18179|18179|18180|18181|18181|18183|18183|18184|23317|23318|23332|24416|29463|32673|45099|45100|45101|45102|45847|51654|51655|51656|51658|51659|51660|51663|67597|67599|67606|67614|67614|67615|67617|67620|67621|67621|67623|67631|67636|67638|67641|67643|67644|67647|67648|67648|67650|67652|67654|67655|67656|67658|67659|67664|67664|67666|67666|67674|67675|67678|67679|67681|67683|67685|67686|67689|67690|67691|67695|67696|67698|67699|67700|67706|67715|67718|67719|67720|67722|67726|67727|67729|67729|67730|67731|67732|67740|67740|67742|67750|67751|67754|67755|67755|67763|67768|67769|67775|67780|67782|67788|67796|67797|67808|67817|67818|67820|77900|77916|77922|77923|77925|77926|77933|77934|77937|77938|77939|77955|77957|77958|77974|77974|77978|77980|77981|78005|78013|78014|78075|78295|78322|78363|78545|78928|102607|102608|102609|102610|102611|141704|141707|141709|141711|141712|141713|141715|174724|175699|175700|175702|175840|175841|178592|186419|188734|189373|196942|197324|197416|197417|197419|197425|197427|197436|197441|197448|197473|197475|197488|197496|197500|197501|197504|204197|204198|204199|204200|204201|204202|204203|212927|215433|241093|247639|248631|259979|264150|313786|313790|313816|313822|313826|313828|313829|313831|313834|319993|319999|320013|320015|320017|320018|320026|320030|320031|320032|326163|326180|326191|326209|326210|326211|326212|326218|327103|327131|327132|327133|327139|327142|327143|327152|327157|327158|371355|390668|395447|395791|398114|398462|403309|419283|424564|424582|424896|424897|442548|442554|450938|450941|451235|451256|461128|487029|493165|509976|513199|551407|551782|551785|558117|561550|570847|572543|578603|617858|625809|625832|625833|752632|793392|800784|800926|838247|857651|857652|857653|857662|857663|867801|867802|867803|867804|867805|867806|867807|867808|867809|867810|867811|867812|868642|868643|868644|868645|868646|868647|906989|919353|966434|966435|966439|966441|966442|966443|966493|967192|967193|970932|970933|970934|980340", + "upstreamId": "18152|18153|18154|18155|18156|18157|18158|18159|18160|18161|18162|18165|18167|18169|18170|18173|18174|18179|18179|18180|18181|18181|18183|18183|18184|23317|23318|23332|24416|29463|32673|45099|45100|45101|45102|45847|51654|51655|51656|51658|51659|51660|51663|67597|67599|67606|67614|67614|67615|67617|67620|67621|67621|67623|67631|67636|67638|67641|67643|67644|67647|67648|67648|67650|67652|67654|67655|67656|67658|67659|67664|67664|67666|67666|67674|67675|67678|67679|67681|67683|67685|67686|67689|67690|67691|67695|67696|67698|67699|67700|67706|67715|67718|67719|67720|67722|67726|67727|67729|67729|67730|67731|67732|67740|67740|67742|67750|67751|67754|67755|67755|67763|67768|67769|67775|67780|67782|67788|67796|67797|67808|67817|67818|67820|77900|77916|77922|77923|77925|77926|77933|77934|77937|77938|77939|77955|77957|77958|77974|77974|77978|77980|77981|78005|78013|78014|78075|78295|78322|78363|78545|78928|102607|102608|102609|102610|102611|141704|141707|141709|141711|141712|141713|141715|174724|175699|175700|175702|175840|175841|178592|186419|188734|189373|196942|197324|197416|197417|197419|197425|197427|197436|197441|197448|197473|197475|197488|197496|197500|197501|197504|204197|204198|204199|204200|204201|204202|204203|212927|215433|241093|247639|248631|259979|264150|313786|313790|313816|313822|313826|313828|313829|313831|313834|319993|319999|320013|320015|320017|320018|320026|320030|320031|320032|326163|326180|326191|326209|326210|326211|326212|326218|327103|327131|327132|327133|327139|327142|327143|327152|327157|327158|371355|390668|395447|395791|398114|398462|403309|419283|424564|424582|424896|424897|442548|442554|450938|450941|451235|451256|461128|487029|493165|509976|513199|551407|551782|551785|558117|561550|570847|572543|578603|617858|625809|625832|625833|752632|793392|800784|800926|838247|857651|857652|857653|857662|857663|867801|867802|867803|867804|867805|867806|867807|867808|867809|867810|867811|867812|868642|868643|868644|868645|868646|868647|906989|919353|966434|966435|966439|966441|966442|966443|966493|967192|967193|970932|970933|970934|980340", "text": "Long QT syndrome 1" }, { - "baseId": "18152|18153|18154|18155|18156|18157|18158|18159|18161|18162|18165|18166|18170|18171|18177|18179|18180|18181|18183|18184|18189|21092|21095|23957|23958|23959|23962|23963|23964|23965|23967|24408|24409|24414|24415|24416|24416|24427|24428|24439|24441|28515|28516|28517|28518|29459|29460|29462|29463|29466|29467|29468|29469|29471|29472|29473|29474|29479|29480|29481|29482|29483|32671|32672|33095|38732|38733|39076|45102|45847|48043|57455|57457|57469|67596|67597|67600|67601|67602|67603|67604|67608|67609|67610|67611|67612|67613|67616|67619|67621|67622|67623|67624|67625|67626|67627|67628|67629|67632|67634|67635|67637|67638|67648|67649|67650|67652|67658|67659|67660|67661|67662|67663|67666|67668|67669|67670|67671|67673|67674|67675|67676|67677|67678|67680|67682|67683|67684|67685|67686|67687|67689|67690|67692|67695|67696|67699|67701|67703|67704|67705|67707|67708|67709|67710|67711|67712|67714|67717|67720|67721|67723|67725|67726|67727|67728|67729|67731|67732|67733|67734|67736|67738|67739|67740|67741|67743|67744|67745|67746|67747|67748|67749|67751|67753|67754|67755|67756|67757|67758|67759|67760|67762|67763|67764|67766|67767|67768|67769|67770|67771|67772|67773|67774|67776|67777|67778|67779|67783|67784|67785|67786|67788|67789|67790|67791|67792|67793|67798|67799|67800|67801|67802|67803|67804|67805|67806|67807|67808|67809|67810|67811|67812|67813|67814|67815|67816|67817|67818|67819|67820|77900|77901|77902|77903|77904|77905|77906|77907|77908|77910|77911|77912|77913|77914|77915|77917|77918|77921|77923|77924|77928|77930|77931|77932|77933|77935|77936|77937|77938|77939|77940|77941|77942|77943|77944|77945|77946|77947|77948|77949|77951|77953|77954|77955|77956|77958|77959|77960|77961|77963|77965|77966|77969|77972|77973|77974|77976|77977|77978|77979|77980|77981|77983|77985|77986|77987|77988|77989|77992|77993|77994|77995|77996|77997|77998|77999|78000|78001|78002|78003|78004|78005|78006|78007|78008|78009|78010|78011|78012|78013|78015|78017|78018|78019|78020|78021|78022|78023|78024|78025|78026|78057|78061|78062|78063|78064|78065|78066|78067|78068|78069|78070|78071|78072|78073|78074|78075|78076|78077|78078|78079|78080|78081|78082|78083|78085|78086|78087|78088|78089|78090|78091|78092|78093|78094|78095|78096|78097|78098|78099|78100|78101|78102|78103|78104|78105|78106|78108|78109|78110|78111|78112|78113|78114|78115|78116|78117|78118|78119|78120|78121|78122|78123|78124|78125|78126|78127|78128|78129|78130|78131|78132|78133|78134|78135|78136|78137|78138|78139|78140|78141|78142|78143|78144|78145|78146|78147|78148|78149|78150|78151|78152|78153|78154|78155|78156|78157|78158|78159|78160|78161|78162|78163|78164|78165|78166|78167|78168|78169|78170|78171|78172|78173|78174|78175|78176|78177|78178|78179|78180|78181|78182|78183|78184|78185|78186|78187|78188|78189|78190|78191|78192|78194|78195|78196|78197|78198|78199|78200|78201|78202|78203|78204|78205|78206|78207|78208|78209|78210|78211|78212|78213|78214|78215|78216|78217|78218|78219|78220|78221|78222|78223|78224|78225|78226|78227|78228|78229|78230|78231|78232|78233|78234|78235|78236|78237|78238|78239|78240|78241|78242|78243|78244|78245|78246|78247|78248|78249|78250|78251|78252|78253|78254|78255|78256|78257|78258|78259|78260|78262|78263|78264|78265|78266|78267|78269|78270|78271|78272|78274|78275|78276|78278|78279|78280|78281|78282|78283|78284|78285|78286|78287|78288|78289|78290|78292|78293|78294|78295|78296|78297|78298|78299|78300|78301|78302|78303|78304|78305|78306|78307|78308|78309|78310|78311|78312|78313|78314|78317|78318|78319|78320|78321|78324|78325|78329|78330|78331|78332|78333|78334|78336|78337|78338|78339|78341|78342|78343|78344|78345|78351|78353|78354|78355|78356|78357|78358|78359|78360|78361|78362|78363|78365|78367|78369|78370|78373|78374|78375|78377|78378|78379|78381|78383|78385|78386|78387|78390|78391|78392|78393|78396|78397|78398|78399|78402|78403|78404|78409|78412|78413|78415|78416|78417|78419|78420|78423|78424|78425|78426|78428|78429|78431|78432|78433|78434|78436|78437|78438|78439|78440|78441|78442|78443|78444|78445|78446|78447|78454|78455|78456|78457|78458|78459|78460|78461|78462|78463|78465|78467|78468|78469|78470|78471|78472|78473|78474|78475|78476|78477|78478|78479|78480|78481|78483|78484|78485|78486|78488|78489|78490|78491|78492|78493|78494|78496|78497|78498|78503|78507|78508|78510|78512|78514|78515|78518|78519|78521|78522|78529|78532|78540|78542|78544|78545|78546|78547|78548|78549|78550|78556|78557|78559|78561|78562|78564|78565|78567|78575|78576|78577|78578|78579|78580|78586|78591|78593|78594|78597|78600|78604|78606|78608|78611|78613|78617|78620|78623|78625|78628|78633|78634|78635|78646|78657|78660|78663|78667|78671|78672|78677|78679|78684|78687|78689|78691|78693|78694|78695|78697|78698|78700|78705|78707|78713|78715|78722|78725|78728|78729|78733|78734|78735|78736|78738|78740|78741|78771|78780|78783|78784|78785|78786|78788|78789|78790|78791|78793|78794|78795|78796|78797|78799|78800|78805|78808|78815|78816|78817|78818|78822|78825|78826|78827|78830|78833|78834|78836|78837|78838|78839|78841|78853|78854|78857|78861|78862|78864|78865|78866|78867|78869|78871|78872|78873|78874|78876|78877|78879|78881|78882|78884|78887|78888|78896|78897|78899|78900|78901|78905|78911|78914|78917|78919|78922|78924|78925|78929|78930|78931|78932|78934|78935|78941|78948|79375|136397|136398|136401|136402|136404|136405|136406|136407|136408|136409|136411|136413|136418|136419|136421|136423|136424|136425|136427|136428|136429|136430|136431|196886|197008|197424|197490|204198|217191|652529|654480|654678|654679", + "upstreamId": "18152|18153|18154|18155|18156|18157|18158|18159|18161|18162|18165|18166|18170|18171|18177|18179|18180|18181|18183|18184|18189|21092|21095|23957|23958|23959|23962|23963|23964|23965|23967|24408|24409|24414|24415|24416|24416|24427|24428|24439|24441|28515|28516|28517|28518|29459|29460|29462|29463|29466|29467|29468|29469|29471|29472|29473|29474|29479|29480|29481|29482|29483|32671|32672|33095|38732|38733|39076|45102|45847|48043|57455|57457|57469|67596|67597|67600|67601|67602|67603|67604|67608|67609|67610|67611|67612|67613|67616|67619|67621|67622|67623|67624|67625|67626|67627|67628|67629|67632|67634|67635|67637|67638|67648|67649|67650|67652|67658|67659|67660|67661|67662|67663|67666|67668|67669|67670|67671|67673|67674|67675|67676|67677|67678|67680|67682|67683|67684|67685|67686|67687|67689|67690|67692|67695|67696|67699|67701|67703|67704|67705|67707|67708|67709|67710|67711|67712|67714|67717|67720|67721|67723|67725|67726|67727|67728|67729|67731|67732|67733|67734|67736|67738|67739|67740|67741|67743|67744|67745|67746|67747|67748|67749|67751|67753|67754|67755|67756|67757|67758|67759|67760|67762|67763|67764|67766|67767|67768|67769|67770|67771|67772|67773|67774|67776|67777|67778|67779|67783|67784|67785|67786|67788|67789|67790|67791|67792|67793|67798|67799|67800|67801|67802|67803|67804|67805|67806|67807|67808|67809|67810|67811|67812|67813|67814|67815|67816|67817|67818|67819|67820|77900|77901|77902|77903|77904|77905|77906|77907|77908|77910|77911|77912|77913|77914|77915|77917|77918|77921|77923|77924|77928|77930|77931|77932|77933|77935|77936|77937|77938|77939|77940|77941|77942|77943|77944|77945|77946|77947|77948|77949|77951|77953|77954|77955|77956|77958|77959|77960|77961|77963|77965|77966|77969|77972|77973|77974|77976|77977|77978|77979|77980|77981|77983|77985|77986|77987|77988|77989|77992|77993|77994|77995|77996|77997|77998|77999|78000|78001|78002|78003|78004|78005|78006|78007|78008|78009|78010|78011|78012|78013|78015|78017|78018|78019|78020|78021|78022|78023|78024|78025|78026|78057|78061|78062|78063|78064|78065|78066|78067|78068|78069|78070|78071|78072|78073|78074|78075|78076|78077|78078|78079|78080|78081|78082|78083|78085|78086|78087|78088|78089|78090|78091|78092|78093|78094|78095|78096|78097|78098|78099|78100|78101|78102|78103|78104|78105|78106|78108|78109|78110|78111|78112|78113|78114|78115|78116|78117|78118|78119|78120|78121|78122|78123|78124|78125|78126|78127|78128|78129|78130|78131|78132|78133|78134|78135|78136|78137|78138|78139|78140|78141|78142|78143|78144|78145|78146|78147|78148|78149|78150|78151|78152|78153|78154|78155|78156|78157|78158|78159|78160|78161|78162|78163|78164|78165|78166|78167|78168|78169|78170|78171|78172|78173|78174|78175|78176|78177|78178|78179|78180|78181|78182|78183|78184|78185|78186|78187|78188|78189|78190|78191|78192|78194|78195|78196|78197|78198|78199|78200|78201|78202|78203|78204|78205|78206|78207|78208|78209|78210|78211|78212|78213|78214|78215|78216|78217|78218|78219|78220|78221|78222|78223|78224|78225|78226|78227|78228|78229|78230|78231|78232|78233|78234|78235|78236|78237|78238|78239|78240|78241|78242|78243|78244|78245|78246|78247|78248|78249|78250|78251|78252|78253|78254|78255|78256|78257|78258|78259|78260|78262|78263|78264|78265|78266|78267|78269|78270|78271|78272|78274|78275|78276|78278|78279|78280|78281|78282|78283|78284|78285|78286|78287|78288|78289|78290|78292|78293|78294|78295|78296|78297|78298|78299|78300|78301|78302|78303|78304|78305|78306|78307|78308|78309|78310|78311|78312|78313|78314|78317|78318|78319|78320|78321|78324|78325|78329|78330|78331|78332|78333|78334|78336|78337|78338|78339|78341|78342|78343|78344|78345|78351|78353|78354|78355|78356|78357|78358|78359|78360|78361|78362|78363|78365|78367|78369|78370|78373|78374|78375|78377|78378|78379|78381|78383|78385|78386|78387|78390|78391|78392|78393|78396|78397|78398|78399|78402|78403|78404|78409|78412|78413|78415|78416|78417|78419|78420|78423|78424|78425|78426|78428|78429|78431|78432|78433|78434|78436|78437|78438|78439|78440|78441|78442|78443|78444|78445|78446|78447|78454|78455|78456|78457|78458|78459|78460|78461|78462|78463|78465|78467|78468|78469|78470|78471|78472|78473|78474|78475|78476|78477|78478|78479|78480|78481|78483|78484|78485|78486|78488|78489|78490|78491|78492|78493|78494|78496|78497|78498|78503|78507|78508|78510|78512|78514|78515|78518|78519|78521|78522|78529|78532|78540|78542|78544|78545|78546|78547|78548|78549|78550|78556|78557|78559|78561|78562|78564|78565|78567|78575|78576|78577|78578|78579|78580|78586|78591|78593|78594|78597|78600|78604|78606|78608|78611|78613|78617|78620|78623|78625|78628|78633|78634|78635|78646|78657|78660|78663|78667|78671|78672|78677|78679|78684|78687|78689|78691|78693|78694|78695|78697|78698|78700|78705|78707|78713|78715|78722|78725|78728|78729|78733|78734|78735|78736|78738|78740|78741|78771|78780|78783|78784|78785|78786|78788|78789|78790|78791|78793|78794|78795|78796|78797|78799|78800|78805|78808|78815|78816|78817|78818|78822|78825|78826|78827|78830|78833|78834|78836|78837|78838|78839|78841|78853|78854|78857|78861|78862|78864|78865|78866|78867|78869|78871|78872|78873|78874|78876|78877|78879|78881|78882|78884|78887|78888|78896|78897|78899|78900|78901|78905|78911|78914|78917|78919|78922|78924|78925|78929|78930|78931|78932|78934|78935|78941|78948|79375|136397|136398|136401|136402|136404|136405|136406|136407|136408|136409|136411|136413|136418|136419|136421|136423|136424|136425|136427|136428|136429|136430|136431|196886|197008|197424|197490|204198|217191|652529|654480|654678|654679", "text": "Congenital long QT syndrome" }, { - "baseId": "18155|18156|18165|18167|18170|18179|24410|24413|24419|24420|24422|24426|24428|24429|24431|24432|24433|24435|24439|24441|24446|29472|29480|29482|32660|33096|33098|33099|38428|38446|38447|38448|39000|39001|39003|45091|45092|45100|45101|45420|45422|45424|45425|45426|45427|45428|48044|51654|51655|51656|51658|51659|51660|51661|51662|51663|53061|57443|57444|57445|57446|57447|57448|57449|57450|57451|57452|57453|57454|57455|57456|57457|57458|57459|57460|57461|57462|57463|57464|57465|57466|57467|57469|57470|57471|57472|57473|57474|57475|57476|57477|57478|57479|57481|67616|67618|67621|67629|67637|67638|67641|67643|67648|67664|67668|67675|67683|67684|67694|67695|67715|67720|67726|67731|67751|67752|67760|67769|67785|67786|67787|67788|77916|77921|77922|77923|77924|77925|77926|77927|77932|77933|77934|77937|77938|77939|77941|77949|77950|77953|77955|77957|77958|77971|77973|77974|77975|77980|77983|77984|77992|78005|78013|78014|78059|78080|78081|78100|78108|78111|78118|78157|78263|78276|78287|78297|78315|78316|78318|78319|78322|78323|78324|78325|78326|78328|78329|78330|78332|78333|78334|78336|78339|78340|78341|78345|78347|78348|78349|78350|78351|78352|78357|78359|78362|78363|78364|78365|78366|78367|78369|78371|78376|78381|78382|78384|78386|78387|78388|78393|78394|78395|78399|78400|78401|78443|78448|78487|78495|78499|78522|78523|78524|78532|78535|78548|78550|78552|78553|78554|78555|78556|78557|78558|78559|78562|78563|78564|78565|78566|78567|78571|78572|78573|78574|78575|78576|78578|78581|78582|78586|78587|78588|78589|78593|78599|78601|78603|78605|78606|78607|78608|78609|78610|78627|78629|78635|78656|78658|78659|78661|78662|78664|78665|78666|78667|78669|78670|78671|78674|78677|78683|78684|78686|78687|78690|78696|78697|78699|78705|78708|78712|78714|78715|78718|78723|78725|78727|78728|78729|78742|78750|78762|78771|78775|78779|78781|78788|78791|78797|78805|78813|78817|78819|78826|78834|78839|78841|78842|78844|78849|78854|78857|78870|78876|78877|78880|78886|78888|78890|78895|78896|78897|78900|78902|78903|78906|78907|78908|78910|78912|78913|78914|78916|78919|78924|78925|78926|78928|78930|78934|78940|78941|78942|78944|78945|78946|78947|78951|81524|85951|141704|141707|141708|141710|141711|141714|141715|142741|142742|142743|142744|142745|142746|142747|142748|142749|142750|142751|142752|142753|142754|142755|142756|142757|142758|142761|142762|142763|142764|142766|142767|142769|142770|172171|172539|173777|173778|173779|173780|173781|173783|173784|173786|173790|173792|173794|173917|173919|173920|173921|173923|173924|173925|173926|173927|173928|173929|173931|173932|173934|173935|174724|175135|175699|175700|175702|175841|175843|178052|178518|178520|178522|178523|178526|178527|178575|189212|189213|189214|189216|189217|189219|189256|189257|189258|189259|189260|189262|189328|190965|191320|191451|193308|196831|196832|196833|196834|196835|196838|196842|196852|196862|196874|196876|196877|196888|196890|196891|196896|196897|196904|196907|196908|196911|196913|196919|196921|196922|196923|196924|196926|196927|196928|196929|196940|196943|196948|196950|196957|196958|196963|196964|196965|196967|196971|196972|196973|196976|196980|196981|196983|196984|196985|196992|196993|197000|197002|197012|197016|197129|197130|197131|197135|197137|197138|197148|197149|197150|197152|197156|197157|197159|197164|197171|197172|197175|197181|197190|197192|197193|197194|197201|197204|197205|197207|197218|197224|197228|197235|197263|197266|197272|197278|197279|197282|197293|197298|197303|197304|197331|197340|197348|197371|197374|197375|197426|197427|197473|197475|197478|197481|197487|197488|197500|197510|197511|204196|204198|212332|212567|212569|212572|212927|215355|215433|221413|221414|221671|221672|221673|224266|224276|224347|226503|229044|229045|229046|229047|229048|229050|229052|229053|229054|229056|229059|229061|230191|230192|230193|230194|230196|230198|236759|239195|239196|239198|239199|239203|239207|239208|239210|239213|239992|239993|239994|239995|239996|239997|239998|239999|240001|240002|241093|241094|248628|251105|252648|254129|254130|258309|258313|258315|258318|258319|258321|258322|258328|258463|258692|258694|258696|265299|273617|290272|290275|290276|290282|291083|291086|291088|291098|294391|294399|294400|294413|294749|302179|302180|302190|302194|305381|305385|313787|326180|327103|359425|360883|360890|360930|360960|361035|361864|362737|367188|367192|367194|367203|367205|367206|367213|367462|367466|367467|367468|367469|367473|367484|367492|367494|367496|367504|367505|367516|367522|367523|368522|368533|368535|368539|368546|369016|369023|369044|369062|369314|369342|369343|369347|369605|369606|369612|369616|369621|370973|370976|370997|371001|372141|372346|372360|374039|374044|374060|389579|389583|389717|389774|393530|393534|393537|393544|393558|393587|393593|393594|393602|393753|393778|393785|393802|393806|393808|393952|393953|393965|393985|395482|395489|395490|395497|395668|395693|395703|395706|395716|395853|396157|396168|396181|396195|396203|398114|398184|398462|398520|398529|406265|406280|407052|407055|407064|414937|415264|419283|425554|437883|442550|442552|443426|443429|443433|443434|443437|444789|452175|452182|452195|452202|452210|452218|452228|452245|452417|452421|452424|452452|452454|452540|452545|452549|452551|452553|452579|452587|452714|452722|452756|452758|452767|452769|452770|456462|456463|456466|456494|456498|456787|456799|456805|456811|456825|456830|456831|456853|457045|457057|457063|457080|457097|457098|457515|457539|457545|457546|457557|461003|461004|461129|461145|461422|461792|480695|481691|495184|496341|496343|496994|496995|497392|500214|500474|500475|500680|500688|500690|500692|500696|500768|500782|500799|500800|501642|501942|501947|501969|502282|503246|503250|503581|503586|503587|503792|503796|504213|509585|509594|509600|509606|509611|509615|509623|509625|509628|509629|509848|509849|509851|509852|509863|509870|510275|510278|510279|511073|511075|513944|514020|514345|519115|519146|519158|519160|519203|519215|519221|519357|519360|519365|519367|519375|519392|519397|519402|519405|522440|522448|522454|522666|522669|522670|522702|522769|522796|523137|523140|523141|526035|526038|526237|526552|558926|558928|558932|558934|558938|558940|559457|559469|559471|561406|561449|561470|561493|561705|562788|562793|566581|570501|578417|584531|589841|616890|616891|616892|616893|616894|616895|616896|616897|616898|616899|616900|616901|616902|616903|616904|616905|616906|616907|616908|616909|616910|616911|616912|616913|616914|616915|616916|616917|616918|616919|616920|616921|616922|616923|616924|616925|616926|617334|617335|617336|617337|617338|617339|617340|617341|617342|617343|617344|617345|617346|617347|617348|617349|617350|617351|617352|617353|617354|617355|617356|617357|617851|617852|617853|617854|617855|617856|617857|617858|617859|617860|617861|617862|617863|619172|619174|619175|619178|619215|619245|619246|619249|619277|619278|619280|619281|619285|619374|619417|619453|619455|619544|621161|621350|631271|631290|631291|631293|631295|631297|631298|631305|631306|631307|631317|631318|635888|635891|635895|635896|635900|635907|635908|635915|635916|639908|651783|654677|654680|655541|655542|655545|655785|665670|677255|683574|683860|683861|684253|685210|685211|685212|686398|686399|686400|686402|686403|686404|686405|686998|687751|687758|689860|689863|691384|691385|691386|691387|691391|691392|692179|692180|692181|692182|692183|692184|692185|692186|692988|695506|722393|737928|744187|748225|748230|748232|750497|750498|750502|750504|752626|752632|759759|763854|763858|763860|787752|795404|795409|795987|795988|827982|827992|828010|828021|828024|828025|828026|828031|828045|828047|828048|833317|833330|833338|833341|833342|850936|851047|851144|858552|859261|888863|888864|897667|897669|897670|900333|909374|909375|909376|909377|909378|909379|909380|909381|909382|909383|909384|909385|909386|909387|909388|909389|909390|909391|909392|909393|909394|909395|909396|909397|909398|909399|909400|909401|909402|909403|909404|909405|909406|909407|909408|909409|909410|909411|909412|909413|909414|909415|909416|909417|909418|909419|909420|909421|909422|909423|909424|909425|909426|909427|909428|909429|909430|909431|909432|909433|909434|909435|909436|909437|909438|909439|909440|909441|909442|909443|909444|909445|909446|909447|909448|909449|909450|909451|909452|909453|909454|909455|909456|909457|909458|909459|909460|909461|909462|909463|909464|909465|909466|909467|909468|909469|909470|909471|909472|909473|909474|909475|909476|909477|909478|909479|909480|909481|909482|909483|909484|909485|909486|909487|909488|909489|909490|909491|909492|909493|909494|909495|909496|909497|909498|909499|909500|909501|909502|909503|909504|909505|909506|909507|909508|909509|909510|909511|909512|909513|909514|909515|909516|909517|909518|909519|909520|909521|909522|909523|909524|909525|909526|909527|909528|909529|909530|909531|909532|909533|909534|909535|909536|909537|909538|909539|909540|909541|909542|909543|909544|909545|909546|909547|909548|909549|909550|909551|909552|909553|909554|909555|909556|909557|909558|909559|909560|909561|909562|909563|909564|909565|909566|909567|909568|909569|909570|909571|909572|909573|909574|909575|909576|909577|909578|909579|909580|909581|909582|909583|909584|909585|909586|909587|909588|909589|909590|909591|909592|909593|909594|909595|909596|909597|909598|909599|909600|909601|909602|909603|909604|909605|909606|909607|909608|909609|909610|909611|909612|909613|909614|909615|909616|909617|909618|909619|909620|909621|909622|909623|909624|909625|909626|909627|909628|909629|909630|909631|909632|909633|909634|909635|909636|909637|909638|909639|909640|909641|909642|909643|909644|909645|909646|909647|910660|910661|910662|910663|910664|910665|910666|910667|910668|910669|910670|910671|910672|910673|910674|910675|910676|910677|910678|910679|910680|910681|910682|910683|910684|910685|910686|910687|910688|910689|910690|910691|910692|910693|910694|910695|910696|910697|910698|910699|910700|910701|910702|910703|910704|910705|910706|910707|910708|910709|910710|910711|910712|910713|910714|910715|910716|910717|910718|910719|910720|910721|910722|910723|910724|910725|910726|910727|910728|910729|910730|910731|910732|910733|910734|910735|910736|910737|910738|910739|910740|910741|910742|910743|910744|910745|910746|910747|910748|910749|910750|910751|910752|910753|910754|910755|910756|910757|910758|910759|910760|910761|910762|910763|910764|910765|910766|910767|910768|910769|910770|910771|910772|910773|910774|910775|910776|910777|910778|910779|910780|910781|910782|910783|910784|910785|910786|910787|910788|910789|910790|910791|910792|910793|910794|910795|910796|910797|910798|910799|910800|910801|910802|910803|910804|910805|910806|910807|910808|910809|910810|910811|910812|910813|910814|910815|910816|910817|910818|911549|911550|911551|911552|911553|911554|911555|911556|911557|911558|911559|911560|911561|911562|911563|911564|911565|911566|911567|911568|911569|911570|911571|911572|911573|911574|911575|911576|911577|911578|911579|911580|911581|911582|911583|911584|911585|911586|911587|911588|911589|911590|911591|911592|911593|911594|911595|911596|911597|911598|911599|911600|911601|911602|911603|911604|911605|911606|911607|911608|911609|911610|911611|911612|911613|911614|911615|911616|911617|911618|911619|911620|911621|911622|911623|911624|911625|911626|911627|911628|911629|911630|911631|911632|911633|911634|911635|911636|911637|911638|911639|911640|911641|911642|911643|911644|911645|911646|911647|911648|911649|911650|911651|911652|911653|911654|911655|911656|911657|911658|911659|911660|911661|911662|911663|911664|915351|915355|915357|915359|915361|915363|915365|915367|915369|915419|915421|915423|915425|915427|915429|915642|915644|915646|915648|915650|915652|915654|915657|915723|915725|915727|915729|915731|915733|915735|915737|915739|915741|915744|915745|915746|915748|915750|915752|915753|915754|915756|915757|915758|915760|915769|915855|915859|915861|915863|915864|915866|915868|915870|915872|915874|915876|915878|915880|915882|915884|915886|915887|915889|915891|915893|916118|916119|916123|916128|916152|916153|916154|916158|916160|916161|916170|916172|916177|916178|916179|916181|916364|916366|916370|916376|916384|916388", + "upstreamId": "18155|18156|18165|18167|18170|18179|24410|24413|24419|24420|24422|24426|24428|24429|24431|24432|24433|24435|24439|24441|24446|29472|29480|29482|32660|33096|33098|33099|38428|38446|38447|38448|39000|39001|39003|45091|45092|45100|45101|45420|45422|45424|45425|45426|45427|45428|48044|51654|51655|51656|51658|51659|51660|51661|51662|51663|53061|57443|57444|57445|57446|57447|57448|57449|57450|57451|57452|57453|57454|57455|57456|57457|57458|57459|57460|57461|57462|57463|57464|57465|57466|57467|57469|57470|57471|57472|57473|57474|57475|57476|57477|57478|57479|57481|67616|67618|67621|67629|67637|67638|67641|67643|67648|67664|67668|67675|67683|67684|67694|67695|67715|67720|67726|67731|67751|67752|67760|67769|67785|67786|67787|67788|77916|77921|77922|77923|77924|77925|77926|77927|77932|77933|77934|77937|77938|77939|77941|77949|77950|77953|77955|77957|77958|77971|77973|77974|77975|77980|77983|77984|77992|78005|78013|78014|78059|78080|78081|78100|78108|78111|78118|78157|78263|78276|78287|78297|78315|78316|78318|78319|78322|78323|78324|78325|78326|78328|78329|78330|78332|78333|78334|78336|78339|78340|78341|78345|78347|78348|78349|78350|78351|78352|78357|78359|78362|78363|78364|78365|78366|78367|78369|78371|78376|78381|78382|78384|78386|78387|78388|78393|78394|78395|78399|78400|78401|78443|78448|78487|78495|78499|78522|78523|78524|78532|78535|78548|78550|78552|78553|78554|78555|78556|78557|78558|78559|78562|78563|78564|78565|78566|78567|78571|78572|78573|78574|78575|78576|78578|78581|78582|78586|78587|78588|78589|78593|78599|78601|78603|78605|78606|78607|78608|78609|78610|78627|78629|78635|78656|78658|78659|78661|78662|78664|78665|78666|78667|78669|78670|78671|78674|78677|78683|78684|78686|78687|78690|78696|78697|78699|78705|78708|78712|78714|78715|78718|78723|78725|78727|78728|78729|78742|78750|78762|78771|78775|78779|78781|78788|78791|78797|78805|78813|78817|78819|78826|78834|78839|78841|78842|78844|78849|78854|78857|78870|78876|78877|78880|78886|78888|78890|78895|78896|78897|78900|78902|78903|78906|78907|78908|78910|78912|78913|78914|78916|78919|78924|78925|78926|78928|78930|78934|78940|78941|78942|78944|78945|78946|78947|78951|81524|85951|141704|141707|141708|141710|141711|141714|141715|142741|142742|142743|142744|142745|142746|142747|142748|142749|142750|142751|142752|142753|142754|142755|142756|142757|142758|142761|142762|142763|142764|142766|142767|142769|142770|172171|172539|173777|173778|173779|173780|173781|173783|173784|173786|173790|173792|173794|173917|173919|173920|173921|173923|173924|173925|173926|173927|173928|173929|173931|173932|173934|173935|174724|175135|175699|175700|175702|175841|175843|178052|178518|178520|178522|178523|178526|178527|178575|189212|189213|189214|189216|189217|189219|189256|189257|189258|189259|189260|189262|189328|190965|191320|191451|193308|196831|196832|196833|196834|196835|196838|196842|196852|196862|196874|196876|196877|196888|196890|196891|196896|196897|196904|196907|196908|196911|196913|196919|196921|196922|196923|196924|196926|196927|196928|196929|196940|196943|196948|196950|196957|196958|196963|196964|196965|196967|196971|196972|196973|196976|196980|196981|196983|196984|196985|196992|196993|197000|197002|197012|197016|197129|197130|197131|197135|197137|197138|197148|197149|197150|197152|197156|197157|197159|197164|197171|197172|197175|197181|197190|197192|197193|197194|197201|197204|197205|197207|197218|197224|197228|197235|197263|197266|197272|197278|197279|197282|197293|197298|197303|197304|197331|197340|197348|197371|197374|197375|197426|197427|197473|197475|197478|197481|197487|197488|197500|197510|197511|204196|204198|212332|212567|212569|212572|212927|215355|215433|221413|221414|221671|221672|221673|224266|224276|224347|226503|229044|229045|229046|229047|229048|229050|229052|229053|229054|229056|229059|229061|230191|230192|230193|230194|230196|230198|236759|239195|239196|239198|239199|239203|239207|239208|239210|239213|239992|239993|239994|239995|239996|239997|239998|239999|240001|240002|241093|241094|248628|251105|252648|254129|254130|258309|258313|258315|258318|258319|258321|258322|258328|258463|258692|258694|258696|265299|273617|290272|290275|290276|290282|291083|291086|291088|291098|294391|294399|294400|294413|294749|302179|302180|302190|302194|305381|305385|313787|326180|327103|359425|360883|360890|360930|360960|361035|361864|362737|367188|367192|367194|367203|367205|367206|367213|367462|367466|367467|367468|367469|367473|367484|367492|367494|367496|367504|367505|367516|367522|367523|368522|368533|368535|368539|368546|369016|369023|369044|369062|369314|369342|369343|369347|369605|369606|369612|369616|369621|370973|370976|370997|371001|372141|372346|372360|374039|374044|374060|389579|389583|389717|389774|393530|393534|393537|393544|393558|393587|393593|393594|393602|393753|393778|393785|393802|393806|393808|393952|393953|393965|393985|395482|395489|395490|395497|395668|395693|395703|395706|395716|395853|396157|396168|396181|396195|396203|398114|398184|398462|398520|398529|406265|406280|407052|407055|407064|414937|415264|419283|425554|437883|442550|442552|443426|443429|443433|443434|443437|444789|452175|452182|452195|452202|452210|452218|452228|452245|452417|452421|452424|452452|452454|452540|452545|452549|452551|452553|452579|452587|452714|452722|452756|452758|452767|452769|452770|456462|456463|456466|456494|456498|456787|456799|456805|456811|456825|456830|456831|456853|457045|457057|457063|457080|457097|457098|457515|457539|457545|457546|457557|461003|461004|461129|461145|461422|461792|480695|481691|495184|496341|496343|496994|496995|497392|500214|500474|500475|500680|500688|500690|500692|500696|500768|500782|500799|500800|501642|501942|501947|501969|502282|503246|503250|503581|503586|503587|503792|503796|504213|509585|509594|509600|509606|509611|509615|509623|509625|509628|509629|509848|509849|509851|509852|509863|509870|510275|510278|510279|511073|511075|513944|514020|514345|519115|519146|519158|519160|519203|519215|519221|519357|519360|519365|519367|519375|519392|519397|519402|519405|522440|522448|522454|522666|522669|522670|522702|522769|522796|523137|523140|523141|526035|526038|526237|526552|558926|558928|558932|558934|558938|558940|559457|559469|559471|561406|561449|561470|561493|561705|562788|562793|566581|570501|578417|584531|589841|616890|616891|616892|616893|616894|616895|616896|616897|616898|616899|616900|616901|616902|616903|616904|616905|616906|616907|616908|616909|616910|616911|616912|616913|616914|616915|616916|616917|616918|616919|616920|616921|616922|616923|616924|616925|616926|617334|617335|617336|617337|617338|617339|617340|617341|617342|617343|617344|617345|617346|617347|617348|617349|617350|617351|617352|617353|617354|617355|617356|617357|617851|617852|617853|617854|617855|617856|617857|617858|617859|617860|617861|617862|617863|619172|619174|619175|619178|619215|619245|619246|619249|619277|619278|619280|619281|619285|619374|619417|619453|619455|619544|621161|621350|631271|631290|631291|631293|631295|631297|631298|631305|631306|631307|631317|631318|635888|635891|635895|635896|635900|635907|635908|635915|635916|639908|651783|654677|654680|655541|655542|655545|655785|665670|677255|683574|683860|683861|684253|685210|685211|685212|686398|686399|686400|686402|686403|686404|686405|686998|687751|687758|689860|689863|691384|691385|691386|691387|691391|691392|692179|692180|692181|692182|692183|692184|692185|692186|692988|695506|722393|737928|744187|748225|748230|748232|750497|750498|750502|750504|752626|752632|759759|763854|763858|763860|787752|795404|795409|795987|795988|827982|827992|828010|828021|828024|828025|828026|828031|828045|828047|828048|833317|833330|833338|833341|833342|850936|851047|851144|858552|859261|888863|888864|897667|897669|897670|900333|909374|909375|909376|909377|909378|909379|909380|909381|909382|909383|909384|909385|909386|909387|909388|909389|909390|909391|909392|909393|909394|909395|909396|909397|909398|909399|909400|909401|909402|909403|909404|909405|909406|909407|909408|909409|909410|909411|909412|909413|909414|909415|909416|909417|909418|909419|909420|909421|909422|909423|909424|909425|909426|909427|909428|909429|909430|909431|909432|909433|909434|909435|909436|909437|909438|909439|909440|909441|909442|909443|909444|909445|909446|909447|909448|909449|909450|909451|909452|909453|909454|909455|909456|909457|909458|909459|909460|909461|909462|909463|909464|909465|909466|909467|909468|909469|909470|909471|909472|909473|909474|909475|909476|909477|909478|909479|909480|909481|909482|909483|909484|909485|909486|909487|909488|909489|909490|909491|909492|909493|909494|909495|909496|909497|909498|909499|909500|909501|909502|909503|909504|909505|909506|909507|909508|909509|909510|909511|909512|909513|909514|909515|909516|909517|909518|909519|909520|909521|909522|909523|909524|909525|909526|909527|909528|909529|909530|909531|909532|909533|909534|909535|909536|909537|909538|909539|909540|909541|909542|909543|909544|909545|909546|909547|909548|909549|909550|909551|909552|909553|909554|909555|909556|909557|909558|909559|909560|909561|909562|909563|909564|909565|909566|909567|909568|909569|909570|909571|909572|909573|909574|909575|909576|909577|909578|909579|909580|909581|909582|909583|909584|909585|909586|909587|909588|909589|909590|909591|909592|909593|909594|909595|909596|909597|909598|909599|909600|909601|909602|909603|909604|909605|909606|909607|909608|909609|909610|909611|909612|909613|909614|909615|909616|909617|909618|909619|909620|909621|909622|909623|909624|909625|909626|909627|909628|909629|909630|909631|909632|909633|909634|909635|909636|909637|909638|909639|909640|909641|909642|909643|909644|909645|909646|909647|910660|910661|910662|910663|910664|910665|910666|910667|910668|910669|910670|910671|910672|910673|910674|910675|910676|910677|910678|910679|910680|910681|910682|910683|910684|910685|910686|910687|910688|910689|910690|910691|910692|910693|910694|910695|910696|910697|910698|910699|910700|910701|910702|910703|910704|910705|910706|910707|910708|910709|910710|910711|910712|910713|910714|910715|910716|910717|910718|910719|910720|910721|910722|910723|910724|910725|910726|910727|910728|910729|910730|910731|910732|910733|910734|910735|910736|910737|910738|910739|910740|910741|910742|910743|910744|910745|910746|910747|910748|910749|910750|910751|910752|910753|910754|910755|910756|910757|910758|910759|910760|910761|910762|910763|910764|910765|910766|910767|910768|910769|910770|910771|910772|910773|910774|910775|910776|910777|910778|910779|910780|910781|910782|910783|910784|910785|910786|910787|910788|910789|910790|910791|910792|910793|910794|910795|910796|910797|910798|910799|910800|910801|910802|910803|910804|910805|910806|910807|910808|910809|910810|910811|910812|910813|910814|910815|910816|910817|910818|911549|911550|911551|911552|911553|911554|911555|911556|911557|911558|911559|911560|911561|911562|911563|911564|911565|911566|911567|911568|911569|911570|911571|911572|911573|911574|911575|911576|911577|911578|911579|911580|911581|911582|911583|911584|911585|911586|911587|911588|911589|911590|911591|911592|911593|911594|911595|911596|911597|911598|911599|911600|911601|911602|911603|911604|911605|911606|911607|911608|911609|911610|911611|911612|911613|911614|911615|911616|911617|911618|911619|911620|911621|911622|911623|911624|911625|911626|911627|911628|911629|911630|911631|911632|911633|911634|911635|911636|911637|911638|911639|911640|911641|911642|911643|911644|911645|911646|911647|911648|911649|911650|911651|911652|911653|911654|911655|911656|911657|911658|911659|911660|911661|911662|911663|911664|915351|915355|915357|915359|915361|915363|915365|915367|915369|915419|915421|915423|915425|915427|915429|915642|915644|915646|915648|915650|915652|915654|915657|915723|915725|915727|915729|915731|915733|915735|915737|915739|915741|915744|915745|915746|915748|915750|915752|915753|915754|915756|915757|915758|915760|915769|915855|915859|915861|915863|915864|915866|915868|915870|915872|915874|915876|915878|915880|915882|915884|915886|915887|915889|915891|915893|916118|916119|916123|916128|916152|916153|916154|916158|916160|916161|916170|916172|916177|916178|916179|916181|916364|916366|916370|916376|916384|916388", "text": "Arrhythmia" }, { - "baseId": "18159|18189|29477|29480|67735|197175", + "upstreamId": "18159|18189|29477|29480|67735|197175", "text": "Long QT syndrome 1/2, digenic" }, { - "baseId": "18165|29459|52852|78119|175694|384412|406276|419284|419285|419287|551407|961008|961009|980697|980712", + "upstreamId": "18165|29459|52852|78119|175694|384412|406276|419284|419285|419287|551407|961008|961009|980697|980712", "text": "Prolonged QT interval" }, { - "baseId": "18166|18167|18177|18178|18179|18179|18181|18183|28516|45099|45100|45101|51654|51655|51656|51658|51659|51660|51663|67614|67621|67633|67639|67648|67664|67666|67667|67672|67686|67689|67693|67713|67729|67737|67740|67740|67755|67761|67788|77916|77922|77923|77925|77926|77933|77934|77957|77958|77974|77974|78005|141704|141707|141709|141711|141712|141713|141715|174724|175699|175700|175702|175840|175841|197416|197473|197475|197488|197510|212927|241093|313786|313790|313816|313822|313826|313828|313829|313831|313834|319993|319999|320013|320015|320017|320018|320026|320030|320031|320032|326163|326180|326191|326209|326210|326211|326212|326218|327103|327131|327132|327133|327139|327142|327143|327152|327157|327158|362222|371355|398462|419283|424482|432231|461128|488172|508755|617858|752632|793392|867801|867802|867803|867804|867805|867806|867807|867808|867809|867810|867811|867812|868642|868643|868644|868645|868646|868647|967192|967193|971571", + "upstreamId": "18166|18167|18177|18178|18179|18179|18181|18183|28516|45099|45100|45101|51654|51655|51656|51658|51659|51660|51663|67614|67621|67633|67639|67648|67664|67666|67667|67672|67686|67689|67693|67713|67729|67737|67740|67740|67755|67761|67788|77916|77922|77923|77925|77926|77933|77934|77957|77958|77974|77974|78005|141704|141707|141709|141711|141712|141713|141715|174724|175699|175700|175702|175840|175841|197416|197473|197475|197488|197510|212927|241093|313786|313790|313816|313822|313826|313828|313829|313831|313834|319993|319999|320013|320015|320017|320018|320026|320030|320031|320032|326163|326180|326191|326209|326210|326211|326212|326218|327103|327131|327132|327133|327139|327142|327143|327152|327157|327158|362222|371355|398462|419283|424482|432231|461128|488172|508755|617858|752632|793392|867801|867802|867803|867804|867805|867806|867807|867808|867809|867810|867811|867812|868642|868643|868644|868645|868646|868647|967192|967193|971571", "text": "Jervell and Lange-Nielsen syndrome 1" }, { - "baseId": "18167|18170|18181|18183|18187|45099|45100|45101|51654|51655|51656|51658|51659|51660|51663|67621|67648|67664|67666|67689|67699|67755|67788|77916|77922|77923|77925|77926|77933|77934|77957|77958|77968|77974|77974|78005|141704|141707|141709|141711|141712|141713|141715|174724|175699|175700|175702|175840|175841|197416|197473|197475|197488|197510|212927|241093|313786|313790|313816|313822|313826|313828|313829|313831|313834|319993|319999|320013|320015|320017|320018|320026|320030|320031|320032|326163|326180|326191|326209|326210|326211|326212|326218|327103|327131|327132|327133|327139|327142|327143|327152|327157|327158|362405|371355|398462|419283|461128|589841|617858|752632|793392|867801|867802|867803|867804|867805|867806|867807|867808|867809|867810|867811|867812|868642|868643|868644|868645|868646|868647", + "upstreamId": "18167|18170|18181|18183|18187|45099|45100|45101|51654|51655|51656|51658|51659|51660|51663|67621|67648|67664|67666|67689|67699|67755|67788|77916|77922|77923|77925|77926|77933|77934|77957|77958|77968|77974|77974|78005|141704|141707|141709|141711|141712|141713|141715|174724|175699|175700|175702|175840|175841|197416|197473|197475|197488|197510|212927|241093|313786|313790|313816|313822|313826|313828|313829|313831|313834|319993|319999|320013|320015|320017|320018|320026|320030|320031|320032|326163|326180|326191|326209|326210|326211|326212|326218|327103|327131|327132|327133|327139|327142|327143|327152|327157|327158|362405|371355|398462|419283|461128|589841|617858|752632|793392|867801|867802|867803|867804|867805|867806|867807|867808|867809|867810|867811|867812|868642|868643|868644|868645|868646|868647", "text": "Short QT syndrome 2" }, { - "baseId": "18167|18170|18181|18182|18183|45099|45100|45101|51654|51655|51656|51657|51658|51659|51660|51663|67621|67648|67664|67666|67689|67753|67755|67755|67788|77916|77922|77923|77925|77926|77933|77934|77957|77958|77974|77974|77990|78005|141704|141707|141709|141711|141712|141713|141715|174724|175699|175700|175702|175840|175841|197416|197473|197475|197488|212927|241093|313786|313790|313816|313822|313826|313828|313829|313831|313834|319993|319999|320013|320015|320017|320018|320026|320030|320031|320032|326163|326180|326191|326209|326210|326211|326212|326218|327103|327131|327132|327133|327139|327142|327143|327152|327157|327158|371355|398462|419283|461128|617858|752632|793392|867801|867802|867803|867804|867805|867806|867807|867808|867809|867810|867811|867812|868642|868643|868644|868645|868646|868647", + "upstreamId": "18167|18170|18181|18182|18183|45099|45100|45101|51654|51655|51656|51657|51658|51659|51660|51663|67621|67648|67664|67666|67689|67753|67755|67755|67788|77916|77922|77923|77925|77926|77933|77934|77957|77958|77974|77974|77990|78005|141704|141707|141709|141711|141712|141713|141715|174724|175699|175700|175702|175840|175841|197416|197473|197475|197488|212927|241093|313786|313790|313816|313822|313826|313828|313829|313831|313834|319993|319999|320013|320015|320017|320018|320026|320030|320031|320032|326163|326180|326191|326209|326210|326211|326212|326218|327103|327131|327132|327133|327139|327142|327143|327152|327157|327158|371355|398462|419283|461128|617858|752632|793392|867801|867802|867803|867804|867805|867806|867807|867808|867809|867810|867811|867812|868642|868643|868644|868645|868646|868647", "text": "Atrial fibrillation, familial, 3" }, { - "baseId": "18170|18171", + "upstreamId": "18170|18171", "text": "Long QT syndrome 1, recessive" }, { - "baseId": "18170|197510", + "upstreamId": "18170|197510", "text": "KCNQ1-Related Disorders" }, { - "baseId": "18170|33095|45266|51826|54147|54243|54559|78401|78495|78729|171059|172420|189195|189203|224541|228379|229722|241797|377844|402722|406912|453664|510938|621566|642269|672379|672397|672400|672417|672425|672431|851993|966401|966406|966432|966438|966462|966473|966499|966502", + "upstreamId": "18170|33095|45266|51826|54147|54243|54559|78401|78495|78729|171059|172420|189195|189203|224541|228379|229722|241797|377844|402722|406912|453664|510938|621566|642269|672379|672397|672400|672417|672425|672431|851993|966401|966406|966432|966438|966462|966473|966499|966502", "text": "Conduction disorder of the heart" }, { - "baseId": "18174|21535|29459|29460|29462|29463|29465|29466|29467|29468|29469|29470|29471|29472|29473|29474|29479|29482|29483|38732|38733|45091|45092|78059|78086|78100|78121|78144|78157|78157|78175|78180|78188|78200|78211|78211|78219|78232|78248|78264|78277|78281|78287|78301|78303|78319|78322|78323|78325|78328|78333|78339|78346|78348|78351|78354|78362|78367|78377|78380|78381|78384|78392|78393|78393|78400|78401|78402|78404|78405|78408|78431|78431|78439|78443|78448|78906|81524|167508|171107|171108|178574|178576|178578|178585|189257|189262|197149|197154|197172|197175|197200|197201|197212|197230|197235|197243|197245|197263|197272|197273|197274|197319|197324|197324|197328|197332|197333|197334|197340|197348|197360|197371|212567|212569|214747|215355|221671|221672|224289|224342|224343|224344|224345|239993|239997|239999|240002|252648|263859|302179|302190|302194|305379|305381|305385|305389|305394|310179|310192|310194|310195|310201|310203|310300|310305|361864|361865|369342|369584|369621|369632|370973|389717|389774|395482|395489|395489|395490|395666|395716|396181|396190|419274|419275|419295|424268|424562|424894|439879|442550|442551|442552|456848|495332|501662|509854|511026|522772|536180|551774|551775|561705|576259|589836|589837|617351|621263|625801|625802|625977|680045|680046|680047|683140|683863|687002|805532|833340|833345|857647|857648|897660|897661|897662|897663|897664|897665|897666|897667|897668|897669|897670|897671|897672|897673|897674|897675|897676|897677|897678|897679|897680|897681|900332|900333|961000|961001|961283|967183|967184|967185|967270|970846", + "upstreamId": "18174|21535|29459|29460|29462|29463|29465|29466|29467|29468|29469|29470|29471|29472|29473|29474|29479|29482|29483|38732|38733|45091|45092|78059|78086|78100|78121|78144|78157|78157|78175|78180|78188|78200|78211|78211|78219|78232|78248|78264|78277|78281|78287|78301|78303|78319|78322|78323|78325|78328|78333|78339|78346|78348|78351|78354|78362|78367|78377|78380|78381|78384|78392|78393|78393|78400|78401|78402|78404|78405|78408|78431|78431|78439|78443|78448|78906|81524|167508|171107|171108|178574|178576|178578|178585|189257|189262|197149|197154|197172|197175|197200|197201|197212|197230|197235|197243|197245|197263|197272|197273|197274|197319|197324|197324|197328|197332|197333|197334|197340|197348|197360|197371|212567|212569|214747|215355|221671|221672|224289|224342|224343|224344|224345|239993|239997|239999|240002|252648|263859|302179|302190|302194|305379|305381|305385|305389|305394|310179|310192|310194|310195|310201|310203|310300|310305|361864|361865|369342|369584|369621|369632|370973|389717|389774|395482|395489|395489|395490|395666|395716|396181|396190|419274|419275|419295|424268|424562|424894|439879|442550|442551|442552|456848|495332|501662|509854|511026|522772|536180|551774|551775|561705|576259|589836|589837|617351|621263|625801|625802|625977|680045|680046|680047|683140|683863|687002|805532|833340|833345|857647|857648|897660|897661|897662|897663|897664|897665|897666|897667|897668|897669|897670|897671|897672|897673|897674|897675|897676|897677|897678|897679|897680|897681|900332|900333|961000|961001|961283|967183|967184|967185|967270|970846", "text": "Long QT syndrome 2" }, { - "baseId": "18181", + "upstreamId": "18181", "text": "Acquired susceptibility to long QT syndrome 1" }, { - "baseId": "18181|18183|19185|20864|23785|23786|23787|23788|33281|33282|33484|33485|67621|67648|67664|67666|67755|77926|77933|77957|77974|101930|101934|101939|101941|101943|101947|101948|101949|101952|101958|101960|101964|101965|101970|101971|101971|101972|101973|101976|102653|102654|102655|102656|102657|102658|102659|136597|136599|136603|136610|136617|136619|152978|166233|166404|168110|168113|168116|168123|168124|168125|168126|168127|168132|168134|168136|168139|168142|168151|168153|168156|168158|168162|168165|168166|168167|168168|168170|168182|168183|168187|168191|168212|168214|168221|168235|168242|168245|168246|168247|168249|168250|168254|168259|168264|168265|168269|168273|168279|168293|168880|168881|172166|172167|177228|190140|190141|190142|190143|190144|190145|190146|190205|190206|190207|191835|192936|195012|195016|197416|197475|205743|207186|207864|213557|213558|232066|239787|239789|239791|241096|241097|241098|241099|241100|241101|241102|241103|241104|241105|241106|241107|241108|241109|241110|241112|241113|241114|241115|241116|241117|241118|241119|241120|241121|241122|241124|241125|241125|245098|251847|251851|251854|251862|251864|254132|264188|264205|266982|267793|273454|297027|298925|303347|303352|368108|368109|368565|369788|369790|384489|394847|394849|394850|394921|394933|394936|394944|394959|394963|394967|395141|395147|395151|395155|395458|398129|398135|398139|398142|398144|398146|398148|398153|398156|398157|398160|398196|398198|398199|398202|398205|398207|398208|398215|398224|398535|398536|398545|398546|398549|398552|398553|398558|398565|398566|398571|398572|398580|398602|398619|398620|398622|398625|398628|398631|398634|398637|398639|398640|406704|419283|428384|428390|432019|443760|443764|443768|453624|454419|454840|454844|454847|454953|454957|454958|454964|454972|455434|455436|455440|455443|455685|455687|455690|455692|455700|461010|461013|461016|461017|461021|461022|461029|461033|461039|461043|461128|461154|461157|461162|461167|461172|461174|461182|461187|461189|461197|461198|461209|461214|461428|461431|461432|461433|461434|461438|461468|461470|461482|461491|461492|461495|461496|461497|461498|461502|461504|461513|461514|461806|461806|461807|461818|461821|461829|461831|461834|461835|461838|461842|500781|521076|521077|521080|521082|521084|521088|521321|521324|521330|521332|521339|521435|521439|521441|521446|521559|521570|521573|521578|521579|521585|521586|521598|526048|526052|526070|526078|526082|526088|526089|526095|526099|526101|526104|526106|526112|526115|526117|526119|526122|526125|526126|526128|526145|526149|526154|526158|526242|526247|526250|526252|526255|526265|526267|526272|526273|526279|526284|526295|526566|526576|526582|526584|526593|526601|526613|526615|526619|537784|537786|559839|560271|560273|560275|560277|560279|560281|560386|563063|563065|563067|563069|563071|563072|563074|563076|564579|564581|564586|564588|565024|565028|565037|565044|565047|565048|565050|565650|565651|565653|565661|565664|565671|565673|565675|565680|565681|565682|565683|565686|565690|567164|567166|567169|567171|567175|567177|567179|567182|567183|567185|567196|570502|570513|570518|570527|570529|570536|570538|570540|570541|570545|570547|570562|579137|612189|633762|633763|633764|633765|633766|633767|633768|633769|633770|633771|633772|633773|633774|633775|633776|633777|633778|633779|633780|633781|633782|633783|633784|633785|633786|633787|633788|633789|633790|639922|639923|639924|639925|639926|639927|639928|639929|639930|639931|639932|639933|639934|639935|639936|639937|639938|639939|639940|639941|639942|639943|639944|639945|639946|639947|639948|639949|639950|639951|639952|651238|651388|651393|684254|685186|685187|686728|686729|687759|687760|687762|687764|687765|691823|692991|692992|692993|692995|692997|692998|692999|693000|693001|701718|701719|712777|712778|721393|724381|724382|724383|724385|724386|735019|752634|752638|765036|765040|768407|768408|768413|768414|783979|819575|820358|830672|830673|830674|830675|830676|830677|830678|830679|830680|830681|830682|830683|830684|830685|830686|830688|830689|830690|838251|838252|838253|838254|838255|838256|838257|838258|838259|838260|838261|838262|838263|838264|838265|838266|838267|838268|838269|838270|838271|838272|838273|838274|838275|838276|838277|838278|838279|838280|838281|838282|838283|838284|838285|838286|838287|838288|838289|838290|851280|851899|858732|859416|924002|924003|924004|924005|924006|924007|924008|924009|924010|924011|926186|926187|926188|926189|926190|926191|926192|926193|926194|932856|932857|932858|932859|932860|935474|935475|935476|935477|935478|935479|935480|935481|935482|935483|935484|935485|935486|935487|935488|935489|935490|944544|944545|944546|944547|944548|944549|944550|944551|944552|944553|944554|944555|944556|944557|947396|947397|947398|947399|947400|947401|947402|947403|947404|947405|947406|947407|947408|947409|954111|954112|954113|954114|956457|956458|956459|956460|956461|956462|959762|966343|966855", + "upstreamId": "18181|18183|19185|20864|23785|23786|23787|23788|33281|33282|33484|33485|67621|67648|67664|67666|67755|77926|77933|77957|77974|101930|101934|101939|101941|101943|101947|101948|101949|101952|101958|101960|101964|101965|101970|101971|101971|101972|101973|101976|102653|102654|102655|102656|102657|102658|102659|136597|136599|136603|136610|136617|136619|152978|166233|166404|168110|168113|168116|168123|168124|168125|168126|168127|168132|168134|168136|168139|168142|168151|168153|168156|168158|168162|168165|168166|168167|168168|168170|168182|168183|168187|168191|168212|168214|168221|168235|168242|168245|168246|168247|168249|168250|168254|168259|168264|168265|168269|168273|168279|168293|168880|168881|172166|172167|177228|190140|190141|190142|190143|190144|190145|190146|190205|190206|190207|191835|192936|195012|195016|197416|197475|205743|207186|207864|213557|213558|232066|239787|239789|239791|241096|241097|241098|241099|241100|241101|241102|241103|241104|241105|241106|241107|241108|241109|241110|241112|241113|241114|241115|241116|241117|241118|241119|241120|241121|241122|241124|241125|241125|245098|251847|251851|251854|251862|251864|254132|264188|264205|266982|267793|273454|297027|298925|303347|303352|368108|368109|368565|369788|369790|384489|394847|394849|394850|394921|394933|394936|394944|394959|394963|394967|395141|395147|395151|395155|395458|398129|398135|398139|398142|398144|398146|398148|398153|398156|398157|398160|398196|398198|398199|398202|398205|398207|398208|398215|398224|398535|398536|398545|398546|398549|398552|398553|398558|398565|398566|398571|398572|398580|398602|398619|398620|398622|398625|398628|398631|398634|398637|398639|398640|406704|419283|428384|428390|432019|443760|443764|443768|453624|454419|454840|454844|454847|454953|454957|454958|454964|454972|455434|455436|455440|455443|455685|455687|455690|455692|455700|461010|461013|461016|461017|461021|461022|461029|461033|461039|461043|461128|461154|461157|461162|461167|461172|461174|461182|461187|461189|461197|461198|461209|461214|461428|461431|461432|461433|461434|461438|461468|461470|461482|461491|461492|461495|461496|461497|461498|461502|461504|461513|461514|461806|461806|461807|461818|461821|461829|461831|461834|461835|461838|461842|500781|521076|521077|521080|521082|521084|521088|521321|521324|521330|521332|521339|521435|521439|521441|521446|521559|521570|521573|521578|521579|521585|521586|521598|526048|526052|526070|526078|526082|526088|526089|526095|526099|526101|526104|526106|526112|526115|526117|526119|526122|526125|526126|526128|526145|526149|526154|526158|526242|526247|526250|526252|526255|526265|526267|526272|526273|526279|526284|526295|526566|526576|526582|526584|526593|526601|526613|526615|526619|537784|537786|559839|560271|560273|560275|560277|560279|560281|560386|563063|563065|563067|563069|563071|563072|563074|563076|564579|564581|564586|564588|565024|565028|565037|565044|565047|565048|565050|565650|565651|565653|565661|565664|565671|565673|565675|565680|565681|565682|565683|565686|565690|567164|567166|567169|567171|567175|567177|567179|567182|567183|567185|567196|570502|570513|570518|570527|570529|570536|570538|570540|570541|570545|570547|570562|579137|612189|633762|633763|633764|633765|633766|633767|633768|633769|633770|633771|633772|633773|633774|633775|633776|633777|633778|633779|633780|633781|633782|633783|633784|633785|633786|633787|633788|633789|633790|639922|639923|639924|639925|639926|639927|639928|639929|639930|639931|639932|639933|639934|639935|639936|639937|639938|639939|639940|639941|639942|639943|639944|639945|639946|639947|639948|639949|639950|639951|639952|651238|651388|651393|684254|685186|685187|686728|686729|687759|687760|687762|687764|687765|691823|692991|692992|692993|692995|692997|692998|692999|693000|693001|701718|701719|712777|712778|721393|724381|724382|724383|724385|724386|735019|752634|752638|765036|765040|768407|768408|768413|768414|783979|819575|820358|830672|830673|830674|830675|830676|830677|830678|830679|830680|830681|830682|830683|830684|830685|830686|830688|830689|830690|838251|838252|838253|838254|838255|838256|838257|838258|838259|838260|838261|838262|838263|838264|838265|838266|838267|838268|838269|838270|838271|838272|838273|838274|838275|838276|838277|838278|838279|838280|838281|838282|838283|838284|838285|838286|838287|838288|838289|838290|851280|851899|858732|859416|924002|924003|924004|924005|924006|924007|924008|924009|924010|924011|926186|926187|926188|926189|926190|926191|926192|926193|926194|932856|932857|932858|932859|932860|935474|935475|935476|935477|935478|935479|935480|935481|935482|935483|935484|935485|935486|935487|935488|935489|935490|944544|944545|944546|944547|944548|944549|944550|944551|944552|944553|944554|944555|944556|944557|947396|947397|947398|947399|947400|947401|947402|947403|947404|947405|947406|947407|947408|947409|954111|954112|954113|954114|956457|956458|956459|956460|956461|956462|959762|966343|966855", "text": "Beckwith-Wiedemann syndrome" }, { - "baseId": "18182|21094|23515|39000|39001|39002|39003|39004|39077|45426|55809|56175|56216|56430|56634|56797|56800|77968|77970|77990|78323|78513|78690|78758|78791|78886|78894|78906|141245|141530|174886|174893|188392|189264|400482|609143|679384|679390|679395|679396|679403|679406|965490|965581", + "upstreamId": "18182|21094|23515|39000|39001|39002|39003|39004|39077|45426|55809|56175|56216|56430|56634|56797|56800|77968|77970|77990|78323|78513|78690|78758|78791|78886|78894|78906|141245|141530|174886|174893|188392|189264|400482|609143|679384|679390|679395|679396|679403|679406|965490|965581", "text": "Atrial fibrillation" }, { - "baseId": "18187|23966|29475|29476|51661|67638|77926|78107|78193|78389|99326|141708|178746|258487|259021|313787|313794|313799|313800|313812|313813|313817|319980|319984|319986|319987|319988|320021|320022|320025|326169|326170|326178|326190|326206|326214|327120|327127|327130|329620|329636|329643|329650|329654|329660|329663|329672|329675|339908|339921|339927|339929|339930|345653|345672|345676|345677|347000|347021|347026|625803", + "upstreamId": "18187|23966|29475|29476|51661|67638|77926|78107|78193|78389|99326|141708|178746|258487|259021|313787|313794|313799|313800|313812|313813|313817|319980|319984|319986|319987|319988|320021|320022|320025|326169|326170|326178|326190|326206|326214|327120|327127|327130|329620|329636|329643|329650|329654|329660|329663|329672|329675|339908|339921|339927|339929|339930|345653|345672|345676|345677|347000|347021|347026|625803", "text": "short QT syndrome" }, { - "baseId": "18190|39628|39629|39630|39632|39633|39634|49394|174585|174863|205193|207733|253663|253665|253667|266459|266803|268437|270732|309267|309268|309270|309271|313952|313953|313956|313957|313958|313962|320384|320392|320402|424579|424580|429035|429037|429038|494109|612288|751910|801115|865270|865271|865272|865273|865274|865275|865276|865277|865278|865279|865280|865281|865282|865283|865284|865285|865286|865287|865288|865289|865290|865291|865292|865293|984076|984077|984078", + "upstreamId": "18190|39628|39629|39630|39632|39633|39634|49394|174585|174863|205193|207733|253663|253665|253667|266459|266803|268437|270732|309267|309268|309270|309271|313952|313953|313956|313957|313958|313962|320384|320392|320402|424579|424580|429035|429037|429038|494109|612288|751910|801115|865270|865271|865272|865273|865274|865275|865276|865277|865278|865279|865280|865281|865282|865283|865284|865285|865286|865287|865288|865289|865290|865291|865292|865293|984076|984077|984078", "text": "Hermansky-Pudlak syndrome 6" }, { - "baseId": "18191|34669|34670|34671|34672|34673|34674|175689|175690|175829|175830|195055|230185|230186|230187|254081|254085|264420|313466|313468|313469|313471|313472|313474|313475|313476|313480|319580|319590|319592|319608|319617|319620|319624|319626|319627|319628|319630|319633|319634|319661|319665|319666|319667|319670|319673|325748|325771|325772|325775|325776|325778|325784|325786|325787|326767|326772|326775|326780|326783|326792|326793|326796|326810|326813|326816|326823|326825|326828|326834|326836|326837|326851|326854|418951|418952|418953|418954|418955|418956|418957|418958|418959|418960|424687|424688|429220|429224|512926|724348|752609|788849|867671|867672|867673|867674|867675|867676|867677|867678|867679|867680|867681|867682|867683|867684|867685|867686|867687|867688|867689|867690|867691|867692|867693|867694|867695|867696|867697|867698|867699|867700", + "upstreamId": "18191|34669|34670|34671|34672|34673|34674|175689|175690|175829|175830|195055|230185|230186|230187|254081|254085|264420|313466|313468|313469|313471|313472|313474|313475|313476|313480|319580|319590|319592|319608|319617|319620|319624|319626|319627|319628|319630|319633|319634|319661|319665|319666|319667|319670|319673|325748|325771|325772|325775|325776|325778|325784|325786|325787|326767|326772|326775|326780|326783|326792|326793|326796|326810|326813|326816|326823|326825|326828|326834|326836|326837|326851|326854|418951|418952|418953|418954|418955|418956|418957|418958|418959|418960|424687|424688|429220|429224|512926|724348|752609|788849|867671|867672|867673|867674|867675|867676|867677|867678|867679|867680|867681|867682|867683|867684|867685|867686|867687|867688|867689|867690|867691|867692|867693|867694|867695|867696|867697|867698|867699|867700", "text": "Hermansky-Pudlak syndrome 5" }, { - "baseId": "18192|18193|18194|321959|321960|321965|321967|321968|321969|321974|321975|321979|321982|321983|321984|321988|321990|321991|321993|321994|321995|321999|322003|322006|322016|323846|323850|323851|323853|323854|323855|323859|323861|323863|323867|323871|323873|323874|323875|323879|323881|323885|323891|323895|323896|323898|323899|323900|323905|323910|323914|323915|323916|323920|323921|323926|323927|323931|323934|331258|331263|331264|331268|331269|331274|331276|331279|331282|331284|331286|331290|331291|331293|331294|333530|333542|333544|333545|333556|333561|333574|333577|333579|333583|333587|333588|333589|333598|333599|333600|333602|333605|333606|333607|333613|333617|333618|333620|333622|333625|338055|338059|338065|338075|338080|338081|338085|338090|338092|338094|338115|338119|338127|339990|339995|339998|340000|340001|340003|340004|340014|340015|340016|340018|340020|340027|340028|340030|340033|340037|340258|340259|340266|340267|340270|340272|340280|340284|340286|340287|340288|340289|340291|340292|340294|340296|340297|340300|340303|340307|340310|340313|340315|340319|340321|340322|340323|340324|340340|340341|340342|340346|340349|340354|340358|340360|340365|340366|340369|340371|340374|340380|341654|341659|341662|341666|341670|341672|341674|341675|341679|341687|341692|341694|341695|341701|341703|341705|341712|341714|341716|341717|341719|341722|341723|341724|341730|341731|341732|341733|341734|341738|341743|341746|341747|341752|341755|341764|480528|485879|485880|714300|714301|714709|725898|726386|739446|745054|754830|816326|816329|873035|873036|873037|873038|873039|873040|873041|873042|873043|873044|873045|873046|873047|873048|873049|873050|873051|873052|873053|873054|873055|873056|873057|873058|873059|873060|873061|873062|873063|873064|873065|873066|873067|873068|873069|873070|873071|873072|874484|874485|874486|874487|874488|874489|874490|874491|874492|874493|874494|874495|874496|874497|874498|874499|874500|874501|874502|874503|874504|874505|874506|874507|874508|874509|874510|874511|874512|874513|874514|874515|874516|874517|874518|874519|874520|874521|874522|874523|874524|874525|874526|874527|874528|874529|874530|874531|874532|874533|874534|874535|874536|874537|874538|874539|874540|874541|874542|874543|874544|874545|874546|874547|874548|874549|874550|874551|874552|874553|874554|874555|874556|874557|874558|874559|874560|876471|876472|876473|876474|876475|876476|876477|876478|876479|876602|876603|876604|980476", + "upstreamId": "18192|18193|18194|321959|321960|321965|321967|321968|321969|321974|321975|321979|321982|321983|321984|321988|321990|321991|321993|321994|321995|321999|322003|322006|322016|323846|323850|323851|323853|323854|323855|323859|323861|323863|323867|323871|323873|323874|323875|323879|323881|323885|323891|323895|323896|323898|323899|323900|323905|323910|323914|323915|323916|323920|323921|323926|323927|323931|323934|331258|331263|331264|331268|331269|331274|331276|331279|331282|331284|331286|331290|331291|331293|331294|333530|333542|333544|333545|333556|333561|333574|333577|333579|333583|333587|333588|333589|333598|333599|333600|333602|333605|333606|333607|333613|333617|333618|333620|333622|333625|338055|338059|338065|338075|338080|338081|338085|338090|338092|338094|338115|338119|338127|339990|339995|339998|340000|340001|340003|340004|340014|340015|340016|340018|340020|340027|340028|340030|340033|340037|340258|340259|340266|340267|340270|340272|340280|340284|340286|340287|340288|340289|340291|340292|340294|340296|340297|340300|340303|340307|340310|340313|340315|340319|340321|340322|340323|340324|340340|340341|340342|340346|340349|340354|340358|340360|340365|340366|340369|340371|340374|340380|341654|341659|341662|341666|341670|341672|341674|341675|341679|341687|341692|341694|341695|341701|341703|341705|341712|341714|341716|341717|341719|341722|341723|341724|341730|341731|341732|341733|341734|341738|341743|341746|341747|341752|341755|341764|480528|485879|485880|714300|714301|714709|725898|726386|739446|745054|754830|816326|816329|873035|873036|873037|873038|873039|873040|873041|873042|873043|873044|873045|873046|873047|873048|873049|873050|873051|873052|873053|873054|873055|873056|873057|873058|873059|873060|873061|873062|873063|873064|873065|873066|873067|873068|873069|873070|873071|873072|874484|874485|874486|874487|874488|874489|874490|874491|874492|874493|874494|874495|874496|874497|874498|874499|874500|874501|874502|874503|874504|874505|874506|874507|874508|874509|874510|874511|874512|874513|874514|874515|874516|874517|874518|874519|874520|874521|874522|874523|874524|874525|874526|874527|874528|874529|874530|874531|874532|874533|874534|874535|874536|874537|874538|874539|874540|874541|874542|874543|874544|874545|874546|874547|874548|874549|874550|874551|874552|874553|874554|874555|874556|874557|874558|874559|874560|876471|876472|876473|876474|876475|876476|876477|876478|876479|876602|876603|876604|980476", "text": "Weill-Marchesani syndrome 4" }, { - "baseId": "18196|18197|18198|18199|102426|102427|141939|141940|200053|200054|200055|216025|216026|216027|216028|216029|216030|216031|216033|216034|216035|216036|227099|227100|251332|292308|292309|292315|292317|292318|292319|292324|292329|292330|292334|292339|292346|292353|292360|292361|292365|292372|293749|293750|293754|293755|293756|293758|293759|293760|293789|293791|293793|293795|293796|297032|297033|297034|297037|297038|297044|297052|297061|297063|297064|297069|297073|297074|297075|297077|297080|297084|297085|297092|297098|297099|297101|297108|297115|297119|297120|297123|297124|297125|297126|297129|297135|297154|297158|297183|297184|297185|297188|367941|369033|433694|434424|434425|434426|434427|434428|434429|434430|434431|434432|434433|434434|434435|434436|434437|434438|434439|434440|434441|452967|453275|453742|487063|500497|513270|513271|513949|543074|543080|543081|543083|543333|543336|543338|543339|543374|543377|543380|543389|543393|543409|543414|543415|543417|543423|543425|559591|559740|631954|631955|691510|691511|698388|698389|720775|748753|764328|764331|764332|774922|774925|781878|819451|828815|850968|890144|890145|890146|890147|890148|890149|890150|890151|890152|890153|890154|890155|890156|890157|890158|890159|890160|890161|890162|890163|890164|890165|890166|890167|890168|890169|890170|890171|890172|890173|890174|890175|890176|890177|890178|890179|890180|890181|890182|890183|890184|890185|890186|890187|891751|903533|903534|932179|932180|943814|943815|953681|971852|978018|978019|978020|978021|978022|978023|978024|978025|978026|978027|978028|978029|978030|978031|978032|978033|978034|978035", + "upstreamId": "18196|18197|18198|18199|102426|102427|141939|141940|200053|200054|200055|216025|216026|216027|216028|216029|216030|216031|216033|216034|216035|216036|227099|227100|251332|292308|292309|292315|292317|292318|292319|292324|292329|292330|292334|292339|292346|292353|292360|292361|292365|292372|293749|293750|293754|293755|293756|293758|293759|293760|293789|293791|293793|293795|293796|297032|297033|297034|297037|297038|297044|297052|297061|297063|297064|297069|297073|297074|297075|297077|297080|297084|297085|297092|297098|297099|297101|297108|297115|297119|297120|297123|297124|297125|297126|297129|297135|297154|297158|297183|297184|297185|297188|367941|369033|433694|434424|434425|434426|434427|434428|434429|434430|434431|434432|434433|434434|434435|434436|434437|434438|434439|434440|434441|452967|453275|453742|487063|500497|513270|513271|513949|543074|543080|543081|543083|543333|543336|543338|543339|543374|543377|543380|543389|543393|543409|543414|543415|543417|543423|543425|559591|559740|631954|631955|691510|691511|698388|698389|720775|748753|764328|764331|764332|774922|774925|781878|819451|828815|850968|890144|890145|890146|890147|890148|890149|890150|890151|890152|890153|890154|890155|890156|890157|890158|890159|890160|890161|890162|890163|890164|890165|890166|890167|890168|890169|890170|890171|890172|890173|890174|890175|890176|890177|890178|890179|890180|890181|890182|890183|890184|890185|890186|890187|891751|903533|903534|932179|932180|943814|943815|953681|971852|978018|978019|978020|978021|978022|978023|978024|978025|978026|978027|978028|978029|978030|978031|978032|978033|978034|978035", "text": "Vitamin B12-responsive methylmalonic acidemia type cblA" }, { - "baseId": "18200", + "upstreamId": "18200", "text": "Hypotrichosis 1" }, { - "baseId": "18201", + "upstreamId": "18201", "text": "Unipolar depression, susceptibility to" }, { - "baseId": "18202", + "upstreamId": "18202", "text": "Attention deficit-hyperactivity disorder 7" }, { - "baseId": "18203", + "upstreamId": "18203", "text": "Bipolar affective disorder, susceptibility to" }, { - "baseId": "18203|318423|318432|318433|318438|318445|318449|318453|326574|326576|326578|326588|326592|326600|326604|332793|332794|332804|332812|332816|332823|332824|334427|334430|334434|334454|334461|334463|334464|725273|870416|870417|870418|870421|870422|870423|870424|870425|870426|870427|872290|872291", + "upstreamId": "18203|318423|318432|318433|318438|318445|318449|318453|326574|326576|326578|326588|326592|326600|326604|332793|332794|332804|332812|332816|332823|332824|334427|334430|334434|334454|334461|334463|334464|725273|870416|870417|870418|870421|870422|870423|870424|870425|870426|870427|872290|872291", "text": "Tryptophan 5-monooxygenase deficiency" }, { - "baseId": "18204|18205|18206|18207|18208|18209|18210|18211|18212|18214|76481|76482|76485|76486|166057|186669|186670|186671|186672|186673|186674|250852|288245|288246|288247|288249|288250|288255|288257|288261|289014|289017|289018|289023|289024|289025|289026|289027|289029|289040|289044|291939|291940|291941|291944|291956|292080|292082|292085|292087|292093|292095|292100|292104|292106|357267|357268|357269|357270|357271|357272|357273|357274|357275|357276|357277|357278|357279|357280|357281|357282|357283|357284|357285|357286|431010|443336|518931|542749|542750|542899|542904|542905|542930|542942|542943|542945|630755|651023|651058|708487|720097|720098|720099|720100|720101|733711|733712|743981|747916|763537|779013|779016|819312|827319|827320|827321|827322|857330|887704|887705|887706|887707|887708|887709|887710|887711|887712|887713|887714|887715|891553|891554|891555|917797|917798|917799|917800|917801|917802|922990|943257|953298|959675|960504", + "upstreamId": "18204|18205|18206|18207|18208|18209|18210|18211|18212|18214|76481|76482|76485|76486|166057|186669|186670|186671|186672|186673|186674|250852|288245|288246|288247|288249|288250|288255|288257|288261|289014|289017|289018|289023|289024|289025|289026|289027|289029|289040|289044|291939|291940|291941|291944|291956|292080|292082|292085|292087|292093|292095|292100|292104|292106|357267|357268|357269|357270|357271|357272|357273|357274|357275|357276|357277|357278|357279|357280|357281|357282|357283|357284|357285|357286|431010|443336|518931|542749|542750|542899|542904|542905|542930|542942|542943|542945|630755|651023|651058|708487|720097|720098|720099|720100|720101|733711|733712|743981|747916|763537|779013|779016|819312|827319|827320|827321|827322|857330|887704|887705|887706|887707|887708|887709|887710|887711|887712|887713|887714|887715|891553|891554|891555|917797|917798|917799|917800|917801|917802|922990|943257|953298|959675|960504", "text": "Alkaptonuria" }, { - "baseId": "18215|18216|18217|18218|18219|18220|18221|34598|34599|34600|34601|34602|34603|34604|237114|255196|255197|255198|255199|255200|255201|255202|255203|255204|255205|255206|255207|255208|322476|322477|322484|322486|322487|322489|322490|322491|322500|322501|331841|331855|331859|331862|331868|331870|331871|331876|331877|331885|338834|338839|338840|338850|338858|338862|338866|338873|338874|340439|340440|340445|340446|340447|340448|340451|340453|340459|340462|340472|340475|340476|340481|340491|340493|340494|340497|340498|340504|340506|620510|620511|620512|703207|703208|730991|744751|754440|754443|760339|760341|776151|798685|816003|873448|873449|873450|873451|873452|873453|873454|873455|873456|873457|873458|873459|873460|873461|873462|873463|873464|873465|873466|873467|873468|873469|873470|873471|873472|873473|873474|873475|873476|873477|873478|873479|873480|873481|873482|873483|873484|873485|873486|873487|873488|873489|873490|873491|873492|873493|873494|873495|873496|873497|873498|876499|876500|876501|876502|876503|876504|876505|876506|876507|876508|981905|981906|981907|981908|981909|981910", + "upstreamId": "18215|18216|18217|18218|18219|18220|18221|34598|34599|34600|34601|34602|34603|34604|237114|255196|255197|255198|255199|255200|255201|255202|255203|255204|255205|255206|255207|255208|322476|322477|322484|322486|322487|322489|322490|322491|322500|322501|331841|331855|331859|331862|331868|331870|331871|331876|331877|331885|338834|338839|338840|338850|338858|338862|338866|338873|338874|340439|340440|340445|340446|340447|340448|340451|340453|340459|340462|340472|340475|340476|340481|340491|340493|340494|340497|340498|340504|340506|620510|620511|620512|703207|703208|730991|744751|754440|754443|760339|760341|776151|798685|816003|873448|873449|873450|873451|873452|873453|873454|873455|873456|873457|873458|873459|873460|873461|873462|873463|873464|873465|873466|873467|873468|873469|873470|873471|873472|873473|873474|873475|873476|873477|873478|873479|873480|873481|873482|873483|873484|873485|873486|873487|873488|873489|873490|873491|873492|873493|873494|873495|873496|873497|873498|876499|876500|876501|876502|876503|876504|876505|876506|876507|876508|981905|981906|981907|981908|981909|981910", "text": "Congenital dyserythropoietic anemia, type I" }, { - "baseId": "18223|18224|18225|18226|18229|18230|18231|191263|196043|268075|268448|271762|274992|331416|331417|331418|331420|331425|331426|331428|331429|331434|341735|341736|341740|341742|341748|341749|347094|347098|347099|347100|347101|347104|347110|347113|347115|347116|348420|348421|348425|348426|348427|348429|348430|348431|348433|348439|745219|801767|971103|980383", + "upstreamId": "18223|18224|18225|18226|18229|18230|18231|191263|196043|268075|268448|271762|274992|331416|331417|331418|331420|331425|331426|331428|331429|331434|341735|341736|341740|341742|341748|341749|347094|347098|347099|347100|347101|347104|347110|347113|347115|347116|348420|348421|348425|348426|348427|348429|348430|348431|348433|348439|745219|801767|971103|980383", "text": "Dyggve-Melchior-Clausen syndrome" }, { - "baseId": "18228|18232|196043|271762|274992|348421|348427|745219", + "upstreamId": "18228|18232|196043|271762|274992|348421|348427|745219", "text": "Smith-McCort dysplasia 1" }, { - "baseId": "18233|726755|726758|731091|740317|875844|875845|875846|875847|875848|875849|875850|875851|875852|875853|875854|875855|875856|875857|875858|875859|875860|875861|875862|875863|875864|875865|875866|875867|875868|875869|875870|876710|876711|876712|876713|876714|876715|876716", + "upstreamId": "18233|726755|726758|731091|740317|875844|875845|875846|875847|875848|875849|875850|875851|875852|875853|875854|875855|875856|875857|875858|875859|875860|875861|875862|875863|875864|875865|875866|875867|875868|875869|875870|876710|876711|876712|876713|876714|876715|876716", "text": "North american indian childhood cirrhosis" }, { - "baseId": "18234|18235|18235|18236|18237|34388|34389|34390|34390|34391|34392|34393|34394|34395|34396|34397|219162|259872|359661|424393|424394|424395|444151|539969|539970|539971|798587|798588|799087|799088|917739", + "upstreamId": "18234|18235|18235|18236|18237|34388|34389|34390|34390|34391|34392|34393|34394|34395|34396|34397|219162|259872|359661|424393|424394|424395|444151|539969|539970|539971|798587|798588|799087|799088|917739", "text": "Shwachman-Diamond syndrome 1" }, { - "baseId": "18235|29761", + "upstreamId": "18235|29761", "text": "Aplastic anemia, susceptibility to" }, { - "baseId": "18235|24628|26378|26794|27037|28369|31377|31396|39135|49142|191253|191285|214736|225852|263345|263349|263350|263362|263372|271513|274206|360852|360853|361051|362158|362159|422029|424961|432334|444151|513922|514152|514161|514188|514195|590099|590815|590816|590817|590818|590819|590820|590821|590822|590823|590824|590825|590826|590827|590828|590829|590830|590831|590832|590833|590834|590835|590836|590837|590838|590839|590840|590841|590842|590843|590844|590845|590846|590847|590848|590849|590850|590851|590852|590853|590854|590855|590856|590857|590858|590859|590860|590861|590862|590863|590864|590865|590866|590867|590868|590869|590870|590871|590872|590873|590874|590875|590876|590877|590878|590879|590880|590881|590882|590883|590884|590885|590886|590887|590888|590889|590890|590891|590892|590893|590894|590895|590896|590897|590898|590899|590900|590901|590902|590903|590904|590905|590906|590907|590908|590909|590910|590911|590912|590913|590914|590915|590916|590917|590918|590919|590920|590921|590922|590923|590924|590925|590926|590927|590928|590929|590930|590931|590932|590933|590934|590935|590936|590937|590938|590939|590940|590941|590942|609036|609079|625988|632104|679688|742154|789799|802087|811184|861055|861056|861144|904239|904355|906373|917759|961035|961911|964072|965543|970283|980554", + "upstreamId": "18235|24628|26378|26794|27037|28369|31377|31396|39135|49142|191253|191285|214736|225852|263345|263349|263350|263362|263372|271513|274206|360852|360853|361051|362158|362159|422029|424961|432334|444151|513922|514152|514161|514188|514195|590099|590815|590816|590817|590818|590819|590820|590821|590822|590823|590824|590825|590826|590827|590828|590829|590830|590831|590832|590833|590834|590835|590836|590837|590838|590839|590840|590841|590842|590843|590844|590845|590846|590847|590848|590849|590850|590851|590852|590853|590854|590855|590856|590857|590858|590859|590860|590861|590862|590863|590864|590865|590866|590867|590868|590869|590870|590871|590872|590873|590874|590875|590876|590877|590878|590879|590880|590881|590882|590883|590884|590885|590886|590887|590888|590889|590890|590891|590892|590893|590894|590895|590896|590897|590898|590899|590900|590901|590902|590903|590904|590905|590906|590907|590908|590909|590910|590911|590912|590913|590914|590915|590916|590917|590918|590919|590920|590921|590922|590923|590924|590925|590926|590927|590928|590929|590930|590931|590932|590933|590934|590935|590936|590937|590938|590939|590940|590941|590942|609036|609079|625988|632104|679688|742154|789799|802087|811184|861055|861056|861144|904239|904355|906373|917759|961035|961911|964072|965543|970283|980554", "text": "Short stature" }, { - "baseId": "18235|171866|171867|171874|201030|444151", + "upstreamId": "18235|171866|171867|171874|201030|444151", "text": "Deeply set eye" }, { - "baseId": "18235|29701|30694|444151|513937|514003|578008|920542", + "upstreamId": "18235|29701|30694|444151|513937|514003|578008|920542", "text": "Splenomegaly" }, { - "baseId": "18235|444151", + "upstreamId": "18235|444151", "text": "Agenesis of permanent teeth" }, { - "baseId": "18235|21985|22362|22363|22364|27768|27769|27770|27771|27772|28758|28759|34390|47528|47713|47715|47720|47722|47724|47725|47726|47727|47731|47732|47887|47889|47890|47893|47895|47896|47897|47900|47902|116904|132522|132527|133309|133320|133322|133328|133329|133330|133331|150860|152273|173541|173543|173678|180277|180279|180298|182874|182897|188057|207165|221794|229237|229238|229239|229240|233702|239625|239629|239631|239634|239640|239641|239643|239645|239663|239675|251613|251614|251640|263518|295008|295009|295015|295110|295271|296781|296915|296945|300499|300506|300507|300508|300575|300731|300771|300775|300921|318362|318365|326480|326482|332736|332738|332744|334359|334360|334364|395064|395070|454179|454310|454390|455105|455107|458623|458714|474812|520445|521005|525349|564457|614326|620457|632878|639123|830021|870370|870371|870372|870373|870374|870375|872287|892690|892691|892692|892693|892694|892695|892732|892816|892865|892866|892867|892868|892869|966333", + "upstreamId": "18235|21985|22362|22363|22364|27768|27769|27770|27771|27772|28758|28759|34390|47528|47713|47715|47720|47722|47724|47725|47726|47727|47731|47732|47887|47889|47890|47893|47895|47896|47897|47900|47902|116904|132522|132527|133309|133320|133322|133328|133329|133330|133331|150860|152273|173541|173543|173678|180277|180279|180298|182874|182897|188057|207165|221794|229237|229238|229239|229240|233702|239625|239629|239631|239634|239640|239641|239643|239645|239663|239675|251613|251614|251640|263518|295008|295009|295015|295110|295271|296781|296915|296945|300499|300506|300507|300508|300575|300731|300771|300775|300921|318362|318365|326480|326482|332736|332738|332744|334359|334360|334364|395064|395070|454179|454310|454390|455105|455107|458623|458714|474812|520445|521005|525349|564457|614326|620457|632878|639123|830021|870370|870371|870372|870373|870374|870375|872287|892690|892691|892692|892693|892694|892695|892732|892816|892865|892866|892867|892868|892869|966333", "text": "Aplastic anemia" }, { - "baseId": "18235", + "upstreamId": "18235", "text": "Shwachman syndrome" }, { - "baseId": "18238|18239|18240|18241|18242|18244|18245|18251|18253|18254|18255", + "upstreamId": "18238|18239|18240|18241|18242|18244|18245|18251|18253|18254|18255", "text": "Congenital muscular dystrophy-dystroglycanopathy with brain and eye anomalies, type A4" }, { - "baseId": "18238|18248|18249|44800|44801|44802|44803|44804|99414|99415|99422|99423|99427|99430|141086|172234|177707|258524|267706|270708|270811|272253|274716|306414|306420|306421|306425|306429|306430|306435|306437|306441|306442|306448|306450|306453|310558|310560|310561|310562|310565|310566|310568|310570|315893|315894|315900|315902|315903|315932|315934|315936|315938|315953|315954|316150|316151|316159|316192|316193|316194|316203|316207|316212|316214|316217|316237|316238|370133|370429|425809|444327|487362|490975|493234|687329|900763|900764|900765|900766|900767|900768|900769|900770|900771|900772|900773|900774|900775|900776|900777|900778|900779|900780|900781|900782|900783|900784|900785|900786|900787|900788|900789|900790|900791|900792|900793|900794|900795|900796|900797|900798|900799|900800|900801|903288", + "upstreamId": "18238|18248|18249|44800|44801|44802|44803|44804|99414|99415|99422|99423|99427|99430|141086|172234|177707|258524|267706|270708|270811|272253|274716|306414|306420|306421|306425|306429|306430|306435|306437|306441|306442|306448|306450|306453|310558|310560|310561|310562|310565|310566|310568|310570|315893|315894|315900|315902|315903|315932|315934|315936|315938|315953|315954|316150|316151|316159|316192|316193|316194|316203|316207|316212|316214|316217|316237|316238|370133|370429|425809|444327|487362|490975|493234|687329|900763|900764|900765|900766|900767|900768|900769|900770|900771|900772|900773|900774|900775|900776|900777|900778|900779|900780|900781|900782|900783|900784|900785|900786|900787|900788|900789|900790|900791|900792|900793|900794|900795|900796|900797|900798|900799|900800|900801|903288", "text": "Dilated cardiomyopathy 1X" }, { - "baseId": "18239|18242|18245|18247|18250|18254|18255|18289|18294|19258|19260|19262|19265|19268|19271|19272|19274|44800|44801|44802|44803|44804|48203|88473|99418|99422|99423|99425|99426|99428|101351|101354|101357|101358|101361|101362|101365|101366|101369|102000|102001|102002|102004|102006|102007|102009|134502|134503|134504|135451|135452|135453|135454|135455|135456|135457|135458|135459|141083|172235|172237|172238|172240|172243|172256|177166|177258|177259|177298|177615|177707|192022|192124|192433|192664|192666|193612|194501|194503|194505|194508|194510|194511|207636|207637|207638|207639|208611|208612|215392|227329|240441|240442|243353|243354|243355|243356|243357|243358|253344|253346|253348|257156|258521|258523|258524|258525|258527|258528|259909|265500|265520|266068|266413|266482|266484|266518|266657|267103|267275|267302|267502|267542|267688|267706|267989|267996|268211|268292|268295|268719|269029|269035|269126|269292|269411|269533|269542|269696|269890|269937|269957|269961|270049|270072|270195|270267|270269|270337|270708|270955|271057|271136|271145|271954|272041|272240|272253|272424|272837|272898|273031|273167|273207|273327|273371|273478|273488|273581|273590|273709|273710|273802|273959|274327|274331|274414|274452|274716|274839|274840|274865|274914|275344|275362|275408|307098|311223|316159|316166|316819|316821|337988|347603|352488|357769|360906|369657|370133|370426|372055|372355|376625|376626|377578|377793|396373|396378|396381|396385|396662|396788|403271|403274|403314|403324|403336|403756|403763|403765|403783|403792|403795|403804|407567|415662|421718|425809|425827|425828|428891|428943|428945|430243|444328|444330|446151|446153|458142|458157|458171|458468|458469|458491|458499|458672|458677|458748|458752|458910|458920|458925|458927|458953|458956|458960|459180|459433|459435|468898|468907|468909|468910|468912|469917|469918|469919|470326|470334|470339|470342|470343|470347|470349|471029|471035|487362|488613|488654|489100|489644|489693|489774|490975|491064|491104|491348|492332|492979|493234|493415|493516|493619|493624|497113|502846|506906|507457|507890|509994|513986|523851|523854|523856|523857|524089|524091|524134|524136|524138|524381|524382|524386|524427|524430|524456|524459|524462|524465|524589|524601|524645|524647|524649|533082|533084|533085|533161|533164|533166|533170|533191|533194|533603|533605|533608|533609|536991|544599|544919|545153|548879|548952|549195|549376|562633|562639|562849|563267|563272|563283|563578|563582|563585|563586|565312|565360|565362|565364|565366|565589|565593|565595|568325|568328|568332|568333|568585|570852|570859|570864|570865|570868|570871|570873|570874|572544|572546|573189|573192|574995|577095|577811|585141|585328|587990|588970|589359|589399|589486|619935|637554|637555|637556|637557|637558|637559|637560|637561|637562|637563|637564|637565|637566|637567|637568|637569|637570|637571|637572|637792|637793|637794|637795|637796|637797|637798|637799|637800|637801|648182|648183|648184|648185|648186|648187|648188|648189|648190|648191|648192|648193|648194|648195|648196|648197|651861|651884|652026|653461|655879|684836|687329|687330|689106|689108|692548|692601|694467|694468|705103|705104|711808|716550|728286|742003|744461|757138|759853|766975|767172|772756|772757|772763|772764|772765|777724|777980|783205|789374|792576|820036|820037|820038|820079|821266|821267|835302|835303|835304|835305|835306|835307|835308|835309|835310|835311|835312|835313|835314|835315|835316|835591|835592|835593|835594|835595|835596|835597|835598|835599|835600|835601|835602|835603|835604|835605|835606|835607|835608|847768|847769|847770|847771|847772|847773|847774|847775|847776|847777|847778|847779|847780|847781|847782|925310|925311|925312|925313|925314|925315|925414|928995|928996|928997|928998|928999|934490|934491|934492|934493|934580|934581|934582|934583|934584|938731|938732|938733|938734|938735|938736|938737|940918|940927|946283|946284|946285|946286|946287|946288|946402|946403|946404|946405|946406|946407|946408|946409|950823|950824|950825|950826|950827|950828|950829|955619|955620|955621|955622|955715|955716|958659|958660|958661|958662|958663|958664|958665|958666|958667|958668|958669|958670|959915|974535|974536", + "upstreamId": "18239|18242|18245|18247|18250|18254|18255|18289|18294|19258|19260|19262|19265|19268|19271|19272|19274|44800|44801|44802|44803|44804|48203|88473|99418|99422|99423|99425|99426|99428|101351|101354|101357|101358|101361|101362|101365|101366|101369|102000|102001|102002|102004|102006|102007|102009|134502|134503|134504|135451|135452|135453|135454|135455|135456|135457|135458|135459|141083|172235|172237|172238|172240|172243|172256|177166|177258|177259|177298|177615|177707|192022|192124|192433|192664|192666|193612|194501|194503|194505|194508|194510|194511|207636|207637|207638|207639|208611|208612|215392|227329|240441|240442|243353|243354|243355|243356|243357|243358|253344|253346|253348|257156|258521|258523|258524|258525|258527|258528|259909|265500|265520|266068|266413|266482|266484|266518|266657|267103|267275|267302|267502|267542|267688|267706|267989|267996|268211|268292|268295|268719|269029|269035|269126|269292|269411|269533|269542|269696|269890|269937|269957|269961|270049|270072|270195|270267|270269|270337|270708|270955|271057|271136|271145|271954|272041|272240|272253|272424|272837|272898|273031|273167|273207|273327|273371|273478|273488|273581|273590|273709|273710|273802|273959|274327|274331|274414|274452|274716|274839|274840|274865|274914|275344|275362|275408|307098|311223|316159|316166|316819|316821|337988|347603|352488|357769|360906|369657|370133|370426|372055|372355|376625|376626|377578|377793|396373|396378|396381|396385|396662|396788|403271|403274|403314|403324|403336|403756|403763|403765|403783|403792|403795|403804|407567|415662|421718|425809|425827|425828|428891|428943|428945|430243|444328|444330|446151|446153|458142|458157|458171|458468|458469|458491|458499|458672|458677|458748|458752|458910|458920|458925|458927|458953|458956|458960|459180|459433|459435|468898|468907|468909|468910|468912|469917|469918|469919|470326|470334|470339|470342|470343|470347|470349|471029|471035|487362|488613|488654|489100|489644|489693|489774|490975|491064|491104|491348|492332|492979|493234|493415|493516|493619|493624|497113|502846|506906|507457|507890|509994|513986|523851|523854|523856|523857|524089|524091|524134|524136|524138|524381|524382|524386|524427|524430|524456|524459|524462|524465|524589|524601|524645|524647|524649|533082|533084|533085|533161|533164|533166|533170|533191|533194|533603|533605|533608|533609|536991|544599|544919|545153|548879|548952|549195|549376|562633|562639|562849|563267|563272|563283|563578|563582|563585|563586|565312|565360|565362|565364|565366|565589|565593|565595|568325|568328|568332|568333|568585|570852|570859|570864|570865|570868|570871|570873|570874|572544|572546|573189|573192|574995|577095|577811|585141|585328|587990|588970|589359|589399|589486|619935|637554|637555|637556|637557|637558|637559|637560|637561|637562|637563|637564|637565|637566|637567|637568|637569|637570|637571|637572|637792|637793|637794|637795|637796|637797|637798|637799|637800|637801|648182|648183|648184|648185|648186|648187|648188|648189|648190|648191|648192|648193|648194|648195|648196|648197|651861|651884|652026|653461|655879|684836|687329|687330|689106|689108|692548|692601|694467|694468|705103|705104|711808|716550|728286|742003|744461|757138|759853|766975|767172|772756|772757|772763|772764|772765|777724|777980|783205|789374|792576|820036|820037|820038|820079|821266|821267|835302|835303|835304|835305|835306|835307|835308|835309|835310|835311|835312|835313|835314|835315|835316|835591|835592|835593|835594|835595|835596|835597|835598|835599|835600|835601|835602|835603|835604|835605|835606|835607|835608|847768|847769|847770|847771|847772|847773|847774|847775|847776|847777|847778|847779|847780|847781|847782|925310|925311|925312|925313|925314|925315|925414|928995|928996|928997|928998|928999|934490|934491|934492|934493|934580|934581|934582|934583|934584|938731|938732|938733|938734|938735|938736|938737|940918|940927|946283|946284|946285|946286|946287|946288|946402|946403|946404|946405|946406|946407|946408|946409|950823|950824|950825|950826|950827|950828|950829|955619|955620|955621|955622|955715|955716|958659|958660|958661|958662|958663|958664|958665|958666|958667|958668|958669|958670|959915|974535|974536", "text": "Walker-Warburg congenital muscular dystrophy" }, { - "baseId": "18242|18243|18246|18247|18252|99427|227329|267706|270708|444327|487362|490975", + "upstreamId": "18242|18243|18246|18247|18252|99427|227329|267706|270708|444327|487362|490975", "text": "Limb-girdle muscular dystrophy-dystroglycanopathy, type C4" }, { - "baseId": "18242|18247|18250|18252|18254|18255|44800|44801|44802|44803|44804|99414|99415|99422|99423|99427|99427|99428|99430|141086|172233|172234|177258|177707|227329|227329|258524|266076|267706|270708|270811|272253|274716|306405|306413|306414|306420|306421|306425|306429|306430|306435|306437|306441|306442|306448|306450|306453|310558|310560|310561|310562|310565|310566|310567|310568|310570|315893|315894|315900|315902|315903|315932|315934|315936|315937|315938|315939|315953|315954|316150|316151|316159|316166|316192|316193|316194|316203|316207|316212|316214|316217|316237|316238|357764|357765|357766|357767|357768|357769|370133|370429|424236|425808|425809|444327|487362|487362|490975|493234|544599|544600|544602|544604|544612|544916|544919|544924|544929|544936|545040|545046|545052|545055|545153|545156|545158|545160|545169|654524|687329|900763|900764|900765|900766|900767|900768|900769|900770|900771|900772|900773|900774|900775|900776|900777|900778|900779|900780|900781|900782|900783|900784|900785|900786|900787|900788|900789|900790|900791|900792|900793|900794|900795|900796|900797|900798|900799|900800|900801|903288", + "upstreamId": "18242|18247|18250|18252|18254|18255|44800|44801|44802|44803|44804|99414|99415|99422|99423|99427|99427|99428|99430|141086|172233|172234|177258|177707|227329|227329|258524|266076|267706|270708|270811|272253|274716|306405|306413|306414|306420|306421|306425|306429|306430|306435|306437|306441|306442|306448|306450|306453|310558|310560|310561|310562|310565|310566|310567|310568|310570|315893|315894|315900|315902|315903|315932|315934|315936|315937|315938|315939|315953|315954|316150|316151|316159|316166|316192|316193|316194|316203|316207|316212|316214|316217|316237|316238|357764|357765|357766|357767|357768|357769|370133|370429|424236|425808|425809|444327|487362|487362|490975|493234|544599|544600|544602|544604|544612|544916|544919|544924|544929|544936|545040|545046|545052|545055|545153|545156|545158|545160|545169|654524|687329|900763|900764|900765|900766|900767|900768|900769|900770|900771|900772|900773|900774|900775|900776|900777|900778|900779|900780|900781|900782|900783|900784|900785|900786|900787|900788|900789|900790|900791|900792|900793|900794|900795|900796|900797|900798|900799|900800|900801|903288", "text": "Fukuyama congenital muscular dystrophy" }, { - "baseId": "18242", + "upstreamId": "18242", "text": "FKTN-Related Disorders" }, { - "baseId": "18243|18260|18277|18278|18279|18280|18291|18293|18294|19259|19260|101064|101354|101358|101366|101368|101370|101440|135452|169759|172243|181432|192127|207637|207638|209351|243357|266484|267706|269411|270072|270708|271145|273031|273802|273959|403314|438420|444327|458920|458925|468910|487362|490975|493648|572942|573399|623149|679729|789374|920265|961646|970897", + "upstreamId": "18243|18260|18277|18278|18279|18280|18291|18293|18294|19259|19260|101064|101354|101358|101366|101368|101370|101440|135452|169759|172243|181432|192127|207637|207638|209351|243357|266484|267706|269411|270072|270708|271145|273031|273802|273959|403314|438420|444327|458920|458925|468910|487362|490975|493648|572942|573399|623149|679729|789374|920265|961646|970897", "text": "Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A, 1" }, { - "baseId": "18247|18256|99427|227329|267706|270708|444327|487362|490975", + "upstreamId": "18247|18256|99427|227329|267706|270708|444327|487362|490975", "text": "Congenital muscular dystrophy-dystroglycanopathy without mental retardation, type B4" }, { - "baseId": "18257|18258|18258|18259|18260|18260|18260|18261|18263|18264|18264|18265|18266|18268|18270|18274|18275|90519|101434|101440|101440|101441|101442|101442|101444|135460|135462|142489|142491|172251|177619|191249|191410|191563|191811|192026|192127|192127|192128|194956|208125|208127|255075|266224|266480|266641|266684|267076|267270|267346|267714|268226|268293|268687|269207|269304|269387|269459|272179|272998|273355|273831|273920|274002|274442|330790|330792|337437|337445|373193|421995|429591|441683|441684|445254|445255|445256|463515|463517|463531|464142|464147|464150|464399|464401|464525|464527|464533|489095|491600|493925|505548|528311|528315|528385|528387|528770|528773|528775|528850|536875|566635|566641|566642|566653|566657|566658|566661|566666|566667|568306|568311|568313|568314|568318|569041|569046|572930|572932|572933|572942|572942|572943|578516|583398|586245|589116|642739|642740|642741|642742|642743|642744|642745|642746|642747|642748|642749|642750|642751|642752|642753|642754|642755|652981|672092|693602|693603|693604|693606|760116|778216|791424|797076|841845|841846|841847|841848|841849|841850|841851|841852|841853|841854|841855|841856|851589|927181|927182|927183|927184|927185|927186|927187|936750|936751|936752|936753|936754|941068|941069|948703|948704|948705|948706|948707|957320|957321|957322|957323|980951", + "upstreamId": "18257|18258|18258|18259|18260|18260|18260|18261|18263|18264|18264|18265|18266|18268|18270|18274|18275|90519|101434|101440|101440|101441|101442|101442|101444|135460|135462|142489|142491|172251|177619|191249|191410|191563|191811|192026|192127|192127|192128|194956|208125|208127|255075|266224|266480|266641|266684|267076|267270|267346|267714|268226|268293|268687|269207|269304|269387|269459|272179|272998|273355|273831|273920|274002|274442|330790|330792|337437|337445|373193|421995|429591|441683|441684|445254|445255|445256|463515|463517|463531|464142|464147|464150|464399|464401|464525|464527|464533|489095|491600|493925|505548|528311|528315|528385|528387|528770|528773|528775|528850|536875|566635|566641|566642|566653|566657|566658|566661|566666|566667|568306|568311|568313|568314|568318|569041|569046|572930|572932|572933|572942|572942|572943|578516|583398|586245|589116|642739|642740|642741|642742|642743|642744|642745|642746|642747|642748|642749|642750|642751|642752|642753|642754|642755|652981|672092|693602|693603|693604|693606|760116|778216|791424|797076|841845|841846|841847|841848|841849|841850|841851|841852|841853|841854|841855|841856|851589|927181|927182|927183|927184|927185|927186|927187|936750|936751|936752|936753|936754|941068|941069|948703|948704|948705|948706|948707|957320|957321|957322|957323|980951", "text": "Congenital muscular dystrophy-dystroglycanopathy with brain and eye anomalies, type A2" }, { - "baseId": "18258|18260|18260|18260|18261|18262|18263|18263|18264|18267|18268|18270|18273|90519|101434|101440|101440|101441|101442|101444|135460|135462|142489|142491|172251|177619|191249|191410|191563|191811|192026|192127|192127|192128|194956|208125|208127|255075|266224|266480|266641|266684|267076|267270|267346|267714|268226|268293|268687|269207|269304|269387|269459|272179|272998|273355|273831|273920|274002|274442|330790|330792|337437|337445|373193|421995|429591|441683|441684|445254|445255|445256|463515|463517|463531|464142|464147|464150|464399|464401|464525|464527|464533|489095|491600|493925|505548|528311|528315|528385|528387|528770|528773|528775|528850|536875|566635|566641|566642|566653|566657|566658|566661|566666|566667|568306|568311|568313|568314|568318|569041|569046|572930|572932|572933|572942|572942|572943|578516|583398|586245|589116|622905|642739|642740|642741|642742|642743|642744|642745|642746|642747|642748|642749|642750|642751|642752|642753|642754|642755|652981|672092|693602|693603|693604|693606|760116|778216|797076|841845|841846|841847|841848|841849|841850|841851|841852|841853|841854|841855|841856|851589|927181|927182|927183|927184|927185|927186|927187|936750|936751|936752|936753|936754|941068|941069|948703|948704|948705|948706|948707|957320|957321|957322|957323", + "upstreamId": "18258|18260|18260|18260|18261|18262|18263|18263|18264|18267|18268|18270|18273|90519|101434|101440|101440|101441|101442|101444|135460|135462|142489|142491|172251|177619|191249|191410|191563|191811|192026|192127|192127|192128|194956|208125|208127|255075|266224|266480|266641|266684|267076|267270|267346|267714|268226|268293|268687|269207|269304|269387|269459|272179|272998|273355|273831|273920|274002|274442|330790|330792|337437|337445|373193|421995|429591|441683|441684|445254|445255|445256|463515|463517|463531|464142|464147|464150|464399|464401|464525|464527|464533|489095|491600|493925|505548|528311|528315|528385|528387|528770|528773|528775|528850|536875|566635|566641|566642|566653|566657|566658|566661|566666|566667|568306|568311|568313|568314|568318|569041|569046|572930|572932|572933|572942|572942|572943|578516|583398|586245|589116|622905|642739|642740|642741|642742|642743|642744|642745|642746|642747|642748|642749|642750|642751|642752|642753|642754|642755|652981|672092|693602|693603|693604|693606|760116|778216|797076|841845|841846|841847|841848|841849|841850|841851|841852|841853|841854|841855|841856|851589|927181|927182|927183|927184|927185|927186|927187|936750|936751|936752|936753|936754|941068|941069|948703|948704|948705|948706|948707|957320|957321|957322|957323", "text": "Congenital muscular dystrophy-dystroglycanopathy with mental retardation, type B2" }, { - "baseId": "18258|18260|18260|18263|18264|18268|18268|18269|90519|101434|101435|101436|101440|101440|101440|101441|101442|101444|135460|135461|135462|135462|135463|142489|142491|142491|172251|172251|177619|177619|191249|191410|191410|191563|191811|191811|192026|192026|192127|192127|192128|194956|194956|195714|208125|208125|208127|255074|255075|255075|266224|266480|266641|266641|266684|267076|267270|267346|267714|268226|268293|268687|269207|269304|269387|269459|272179|272998|273355|273831|273920|274002|274442|321465|321472|321473|321479|321481|321482|321484|321488|321492|321493|321498|321502|321504|321505|321512|330734|330742|330747|330754|330756|330764|330773|330782|330784|330790|330790|330792|330792|330795|330799|330803|337383|337386|337387|337398|337406|337416|337418|337426|337437|337437|337438|337445|337445|337448|339411|339416|339428|339431|339432|339435|339442|339447|339449|339450|339451|339458|339461|339468|339470|339471|339472|339481|373193|421995|421995|429591|441683|441684|445254|445255|445256|463515|463517|463531|464142|464147|464150|464399|464401|464525|464527|464533|489095|491600|493925|493925|505548|528311|528315|528385|528387|528770|528773|528775|528850|536875|566635|566641|566642|566653|566657|566658|566661|566666|566667|568306|568311|568313|568314|568318|569041|569046|572930|572932|572933|572942|572942|572943|578516|583398|586245|589116|620494|642739|642740|642741|642742|642743|642743|642744|642745|642746|642747|642748|642749|642750|642751|642752|642753|642754|642755|652981|672092|693602|693603|693604|693606|760116|778216|797076|802194|841845|841846|841847|841848|841849|841850|841851|841852|841853|841854|841855|841856|851589|872716|872717|872718|872719|872720|872721|872722|872723|872724|872725|872726|872727|872728|872729|872730|872731|872732|872733|872734|872735|872736|872737|872738|872739|872740|872741|872742|872743|872744|872745|872746|872747|872748|872749|872750|872751|876454|876455|876456|876457|927181|927182|927183|927184|927185|927186|927187|936750|936751|936752|936753|936754|941068|941069|948703|948704|948705|948706|948707|957320|957321|957322|957323", + "upstreamId": "18258|18260|18260|18263|18264|18268|18268|18269|90519|101434|101435|101436|101440|101440|101440|101441|101442|101444|135460|135461|135462|135462|135463|142489|142491|142491|172251|172251|177619|177619|191249|191410|191410|191563|191811|191811|192026|192026|192127|192127|192128|194956|194956|195714|208125|208125|208127|255074|255075|255075|266224|266480|266641|266641|266684|267076|267270|267346|267714|268226|268293|268687|269207|269304|269387|269459|272179|272998|273355|273831|273920|274002|274442|321465|321472|321473|321479|321481|321482|321484|321488|321492|321493|321498|321502|321504|321505|321512|330734|330742|330747|330754|330756|330764|330773|330782|330784|330790|330790|330792|330792|330795|330799|330803|337383|337386|337387|337398|337406|337416|337418|337426|337437|337437|337438|337445|337445|337448|339411|339416|339428|339431|339432|339435|339442|339447|339449|339450|339451|339458|339461|339468|339470|339471|339472|339481|373193|421995|421995|429591|441683|441684|445254|445255|445256|463515|463517|463531|464142|464147|464150|464399|464401|464525|464527|464533|489095|491600|493925|493925|505548|528311|528315|528385|528387|528770|528773|528775|528850|536875|566635|566641|566642|566653|566657|566658|566661|566666|566667|568306|568311|568313|568314|568318|569041|569046|572930|572932|572933|572942|572942|572943|578516|583398|586245|589116|620494|642739|642740|642741|642742|642743|642743|642744|642745|642746|642747|642748|642749|642750|642751|642752|642753|642754|642755|652981|672092|693602|693603|693604|693606|760116|778216|797076|802194|841845|841846|841847|841848|841849|841850|841851|841852|841853|841854|841855|841856|851589|872716|872717|872718|872719|872720|872721|872722|872723|872724|872725|872726|872727|872728|872729|872730|872731|872732|872733|872734|872735|872736|872737|872738|872739|872740|872741|872742|872743|872744|872745|872746|872747|872748|872749|872750|872751|876454|876455|876456|876457|927181|927182|927183|927184|927185|927186|927187|936750|936751|936752|936753|936754|941068|941069|948703|948704|948705|948706|948707|957320|957321|957322|957323", "text": "Limb-girdle muscular dystrophy-dystroglycanopathy, type C2" }, { - "baseId": "18260|19274|19531|22745|29517|29534|29564|32660|32660|32660|39363|45812|55854|75127|77662|77669|77828|100211|169757|169759|171246|198685|206864|208124|208126|227736|231238|244072|260934|265299|267026|269979|360820|360828|361070|402756|427644|427646|427648|427649|427651|427652|427654|427656|431009|486836|497353|513914|514134|624113|676965|677274|801165|918201|977393", + "upstreamId": "18260|19274|19531|22745|29517|29534|29564|32660|32660|32660|39363|45812|55854|75127|77662|77669|77828|100211|169757|169759|171246|198685|206864|208124|208126|227736|231238|244072|260934|265299|267026|269979|360820|360828|361070|402756|427644|427646|427648|427649|427651|427652|427654|427656|431009|486836|497353|513914|514134|624113|676965|677274|801165|918201|977393", "text": "Muscular dystrophy" }, { - "baseId": "18276|142384|142386|142388|142390|211449|211454|211455|310102|310104|310108|315164|315174|315176|315186|315191|321181|321183|321197|321751|321752|321754|321756|321769|362103|362104|503326|620360|701300|865753|865754|865755|865756|865757|865758|865759|865760", + "upstreamId": "18276|142384|142386|142388|142390|211449|211454|211455|310102|310104|310108|315164|315174|315176|315186|315191|321181|321183|321197|321751|321752|321754|321756|321769|362103|362104|503326|620360|701300|865753|865754|865755|865756|865757|865758|865759|865760", "text": "Coenzyme Q10 deficiency, primary, 2" }, { - "baseId": "18281|18283|18284|18285|18287|18288|18289|18290", + "upstreamId": "18281|18283|18284|18285|18287|18288|18289|18290", "text": "MUSCULAR DYSTROPHY-DYSTROGLYCANOPATHY (CONGENITAL WITH IMPAIRED INTELLECTUAL DEVELOPMENT), TYPE B, 1" }, { - "baseId": "18282|18289|18294|48033|48034|88473|101351|101354|101354|101354|101356|101357|101357|101358|101358|101358|101359|101361|101361|101362|101362|101365|101365|101366|101366|101368|101369|101369|101370|101370|135451|135451|135452|135452|135452|135453|135453|135454|135454|135455|135455|135456|135456|135457|135457|135458|135459|135459|172243|172243|177259|177613|177615|177615|177977|192022|192124|192433|192664|192664|192666|193612|207636|207636|207637|207637|207638|207638|207639|207639|215392|253334|253344|253344|253346|253348|253348|253349|265500|265520|266413|267302|267688|268211|268211|268295|269126|269292|269292|269411|269411|269542|269890|269937|270049|270072|270072|270267|270267|270337|271145|271145|272240|272424|272664|272837|273031|273031|273031|273167|273581|274327|274865|274952|275344|307095|307096|307098|307098|307105|307106|307113|307114|307118|311220|311223|311223|311224|311225|311230|311235|311243|311244|316799|316800|316807|316812|316819|316819|316821|316821|316823|316827|317237|317239|317254|317258|317271|360906|360906|372355|407567|421718|425827|425827|425828|428943|428945|428945|458468|458469|458491|458499|458910|458920|458920|458925|458925|458927|458953|458956|458960|459433|459435|488613|489100|489100|489644|489774|490430|491064|492332|493415|493516|493516|493624|493648|513986|513986|524089|524091|524381|524382|524386|524589|524591|524601|524645|524647|524649|562849|562849|563578|563582|563585|563586|565589|565593|565595|568585|577095|585328|589486|619935|637792|637793|637794|637795|637796|637797|637798|637799|637800|637801|692601|711808|744461|767172|777724|777980|789374|790847|820079|835591|835592|835593|835594|835595|835596|835597|835598|835599|835600|835601|835602|835603|835604|835605|835606|835607|835608|901192|901193|901194|901195|901196|901197|901198|901199|901200|901201|901202|901203|901204|901205|901206|901207|901208|901209|901210|901211|903325|903326|925414|934580|934581|934582|934583|934584|940927|946402|946403|946404|946405|946406|946407|946408|946409|955715|955716|959915", + "upstreamId": "18282|18289|18294|48033|48034|88473|101351|101354|101354|101354|101356|101357|101357|101358|101358|101358|101359|101361|101361|101362|101362|101365|101365|101366|101366|101368|101369|101369|101370|101370|135451|135451|135452|135452|135452|135453|135453|135454|135454|135455|135455|135456|135456|135457|135457|135458|135459|135459|172243|172243|177259|177613|177615|177615|177977|192022|192124|192433|192664|192664|192666|193612|207636|207636|207637|207637|207638|207638|207639|207639|215392|253334|253344|253344|253346|253348|253348|253349|265500|265520|266413|267302|267688|268211|268211|268295|269126|269292|269292|269411|269411|269542|269890|269937|270049|270072|270072|270267|270267|270337|271145|271145|272240|272424|272664|272837|273031|273031|273031|273167|273581|274327|274865|274952|275344|307095|307096|307098|307098|307105|307106|307113|307114|307118|311220|311223|311223|311224|311225|311230|311235|311243|311244|316799|316800|316807|316812|316819|316819|316821|316821|316823|316827|317237|317239|317254|317258|317271|360906|360906|372355|407567|421718|425827|425827|425828|428943|428945|428945|458468|458469|458491|458499|458910|458920|458920|458925|458925|458927|458953|458956|458960|459433|459435|488613|489100|489100|489644|489774|490430|491064|492332|493415|493516|493516|493624|493648|513986|513986|524089|524091|524381|524382|524386|524589|524591|524601|524645|524647|524649|562849|562849|563578|563582|563585|563586|565589|565593|565595|568585|577095|585328|589486|619935|637792|637793|637794|637795|637796|637797|637798|637799|637800|637801|692601|711808|744461|767172|777724|777980|789374|790847|820079|835591|835592|835593|835594|835595|835596|835597|835598|835599|835600|835601|835602|835603|835604|835605|835606|835607|835608|901192|901193|901194|901195|901196|901197|901198|901199|901200|901201|901202|901203|901204|901205|901206|901207|901208|901209|901210|901211|903325|903326|925414|934580|934581|934582|934583|934584|940927|946402|946403|946404|946405|946406|946407|946408|946409|955715|955716|959915", "text": "Limb-girdle muscular dystrophy-dystroglycanopathy, type C1" }, { - "baseId": "18282|18289|18291|18294|88473|101351|101351|101354|101354|101357|101358|101358|101361|101362|101365|101366|101366|101368|101369|101370|135451|135452|135452|135453|135454|135455|135456|135457|135458|135459|172243|177259|177615|192022|192124|192433|192664|192666|193612|207636|207637|207637|207638|207638|207639|215392|253344|253346|253348|265500|265520|266413|267302|267688|268211|268295|269126|269292|269411|269411|269542|269890|269937|270049|270072|270072|270267|270337|271145|271145|272240|272424|272837|273031|273031|273167|273581|274327|274865|275344|307098|311223|316819|316821|360906|372355|407567|421718|425827|425828|428943|428945|458468|458469|458491|458499|458910|458920|458920|458925|458925|458927|458953|458956|458960|459433|459435|481449|488613|489100|489644|489774|491064|492332|493415|493516|493624|493648|513986|524089|524091|524381|524382|524386|524589|524601|524645|524647|524649|553357|562849|563578|563582|563585|563586|565589|565593|565595|568585|577095|585328|589486|619935|637792|637793|637794|637795|637796|637797|637798|637799|637800|637801|692601|711808|744461|767172|777724|777980|789374|820079|835591|835592|835593|835594|835595|835596|835597|835598|835599|835600|835601|835602|835603|835604|835605|835606|835607|835608|925414|934580|934581|934582|934583|934584|940927|946402|946403|946404|946405|946406|946407|946408|946409|955715|955716|959915", + "upstreamId": "18282|18289|18291|18294|88473|101351|101351|101354|101354|101357|101358|101358|101361|101362|101365|101366|101366|101368|101369|101370|135451|135452|135452|135453|135454|135455|135456|135457|135458|135459|172243|177259|177615|192022|192124|192433|192664|192666|193612|207636|207637|207637|207638|207638|207639|215392|253344|253346|253348|265500|265520|266413|267302|267688|268211|268295|269126|269292|269411|269411|269542|269890|269937|270049|270072|270072|270267|270337|271145|271145|272240|272424|272837|273031|273031|273167|273581|274327|274865|275344|307098|311223|316819|316821|360906|372355|407567|421718|425827|425828|428943|428945|458468|458469|458491|458499|458910|458920|458920|458925|458925|458927|458953|458956|458960|459433|459435|481449|488613|489100|489644|489774|491064|492332|493415|493516|493624|493648|513986|524089|524091|524381|524382|524386|524589|524601|524645|524647|524649|553357|562849|563578|563582|563585|563586|565589|565593|565595|568585|577095|585328|589486|619935|637792|637793|637794|637795|637796|637797|637798|637799|637800|637801|692601|711808|744461|767172|777724|777980|789374|820079|835591|835592|835593|835594|835595|835596|835597|835598|835599|835600|835601|835602|835603|835604|835605|835606|835607|835608|925414|934580|934581|934582|934583|934584|940927|946402|946403|946404|946405|946406|946407|946408|946409|955715|955716|959915", "text": "Congenital muscular dystrophy-dystroglycanopathy with mental retardation, type B1" }, { - "baseId": "18294|619935", + "upstreamId": "18294|619935", "text": "POMT1-Related Disorders" }, { - "baseId": "18295|18296|174227|191826|191932|195729|221701|229603|239953|240084|252826|252829|252833|252836|395644|395653|395883|396007|396300|396302|457167|457169|457350|457354|457775|457778|522655|522665|522667|522672|522673|522920|523089|523091|523300|561597|561599|561601|561607|561608|561946|561948|564295|564297|564308|636146|636147|636148|636149|636150|636151|636152|636153|683892|683895|683896|683897|685221|687049|687051|687052|687053|766266|833595|833596|833597|833598|833599|833600|933887|933888|940878|945631|945632|945633|945634|945635|955158", + "upstreamId": "18295|18296|174227|191826|191932|195729|221701|229603|239953|240084|252826|252829|252833|252836|395644|395653|395883|396007|396300|396302|457167|457169|457350|457354|457775|457778|522655|522665|522667|522672|522673|522920|523089|523091|523300|561597|561599|561601|561607|561608|561946|561948|564295|564297|564308|636146|636147|636148|636149|636150|636151|636152|636153|683892|683895|683896|683897|685221|687049|687051|687052|687053|766266|833595|833596|833597|833598|833599|833600|933887|933888|940878|945631|945632|945633|945634|945635|955158", "text": "Ciliary dyskinesia, primary, 6" }, { - "baseId": "18297|18304|91653|330763|330772|330774|330776|330786|330791|330797|330811|340979|340993|340997|341002|341011|341014|341016|346288|346574|346595|347885|347899|347903|347907|347916|347925|353478|353479|437708|485783|485784|485785|485786|485787|485788|485789", + "upstreamId": "18297|18304|91653|330763|330772|330774|330776|330786|330791|330797|330811|340979|340993|340997|341002|341011|341014|341016|346288|346574|346595|347885|347899|347903|347907|347916|347925|353478|353479|437708|485783|485784|485785|485786|485787|485788|485789", "text": "Glucocorticoid Deficiency" }, { - "baseId": "18306|18307|18308|18309|18316|18318|34532|34533|221088|227841|238199|238203|238204|238205|238207|249584|270565|278143|278144|278145|278146|278147|278148|278154|278155|278156|278157|278159|278160|278162|278163|278164|278165|278166|278167|278168|278169|278170|278171|278172|278173|278174|278175|278177|278179|278183|278189|278190|279123|279128|279130|279143|279148|279149|279150|279151|279168|279171|279172|279174|279176|279177|279178|279182|279183|279288|279289|279290|279291|279292|279293|279296|279302|279303|279304|279305|279306|279307|279312|279313|279323|279334|279341|279350|279352|279355|390964|498135|550797|863087|863088|863089|863090|863091|863092|863093|863094|863095|863096|863097|863098|863099|863100|863101|863102|863103|863104|863105|863106|863107|863108|863109|863110|863111", + "upstreamId": "18306|18307|18308|18309|18316|18318|34532|34533|221088|227841|238199|238203|238204|238205|238207|249584|270565|278143|278144|278145|278146|278147|278148|278154|278155|278156|278157|278159|278160|278162|278163|278164|278165|278166|278167|278168|278169|278170|278171|278172|278173|278174|278175|278177|278179|278183|278189|278190|279123|279128|279130|279143|279148|279149|279150|279151|279168|279171|279172|279174|279176|279177|279178|279182|279183|279288|279289|279290|279291|279292|279293|279296|279302|279303|279304|279305|279306|279307|279312|279313|279323|279334|279341|279350|279352|279355|390964|498135|550797|863087|863088|863089|863090|863091|863092|863093|863094|863095|863096|863097|863098|863099|863100|863101|863102|863103|863104|863105|863106|863107|863108|863109|863110|863111", "text": "Hyperparathyroidism 2" }, { - "baseId": "18309|18310|18313|18314|18315|18317|18319|18320|34532|34533|34534|34535|34536|34538|34539|50287|137580|137581|221088|238199|238200|238201|238202|238203|238204|238205|238206|238207|249584|263993|270565|278143|278144|278145|278146|278147|278148|278154|278155|278156|278157|278159|278160|278162|278163|278164|278165|278166|278167|278168|278169|278170|278171|278172|278173|278174|278175|278177|278179|278183|278189|278190|279123|279128|279130|279143|279148|279149|279150|279151|279168|279171|279172|279174|279176|279177|279178|279182|279183|279288|279289|279290|279291|279292|279293|279296|279302|279303|279304|279305|279306|279307|279312|279313|279323|279334|279341|279350|279352|279355|390715|390723|390726|390933|390937|390938|390941|390943|390946|390947|390948|390950|390952|390953|390954|390955|390956|390957|390958|390959|390961|390962|390964|390965|390966|390972|390974|390975|390979|390982|390983|390984|390986|390992|390997|390998|391006|391007|391008|391010|391014|391025|421191|446914|446953|447332|447337|447341|447342|447344|447349|447353|447441|447443|447450|447459|447461|447465|447472|447479|447480|447543|447547|447551|447560|447561|447564|447565|447566|447568|447575|447577|447579|447580|447581|447583|447586|447587|447596|447598|447600|447608|488909|498135|514884|515323|515326|515327|515331|515336|515350|515367|515368|515370|515374|515379|515380|515382|515383|515395|515396|515399|515404|515406|515408|515410|515411|515413|515414|515416|550797|556495|556496|556498|556716|556718|556720|556763|556765|556767|557072|557074|557076|557078|557080|558254|558256|558258|558260|558262|558264|558266|558268|621064|627165|627166|627167|627168|627169|627170|627171|627172|627173|627174|627175|627176|627177|627178|627179|627180|627181|627182|627183|627184|627185|627186|627187|627188|627189|627190|627191|627192|627193|627194|627195|650541|650568|650572|650602|650674|650699|650700|683294|683295|683296|685594|685596|685598|685599|685601|690432|690434|690435|690436|695020|696338|696340|718469|718470|718471|729946|731954|745932|761412|761415|761416|761418|777045|777048|778760|778795|780407|780408|787032|787035|789894|789895|818877|818878|818879|818880|818881|818882|818883|818884|818885|818886|818887|818888|818889|818890|823076|823077|823078|823079|823080|823081|823082|823083|823084|823085|823086|823087|823088|823089|823090|823091|823092|823093|823094|823095|823096|823097|823098|823099|823100|823101|823102|823103|823104|823105|823106|823107|850748|850947|850949|850951|851261|863087|863088|863089|863090|863091|863092|863093|863094|863095|863096|863097|863098|863099|863100|863101|863102|863103|863104|863105|863106|863107|863108|863109|863110|863111|921768|921769|921770|921771|921772|921773|921774|921775|921776|921777|921778|930195|930196|930197|930198|930199|930200|930201|930202|930203|930204|941610|941611|941612|941613|941614|941615|941616|941617|952168|952169|952170|952171|952172|952173|952174|952175|952176|952177|952178|952179|952180|960415|960416", + "upstreamId": "18309|18310|18313|18314|18315|18317|18319|18320|34532|34533|34534|34535|34536|34538|34539|50287|137580|137581|221088|238199|238200|238201|238202|238203|238204|238205|238206|238207|249584|263993|270565|278143|278144|278145|278146|278147|278148|278154|278155|278156|278157|278159|278160|278162|278163|278164|278165|278166|278167|278168|278169|278170|278171|278172|278173|278174|278175|278177|278179|278183|278189|278190|279123|279128|279130|279143|279148|279149|279150|279151|279168|279171|279172|279174|279176|279177|279178|279182|279183|279288|279289|279290|279291|279292|279293|279296|279302|279303|279304|279305|279306|279307|279312|279313|279323|279334|279341|279350|279352|279355|390715|390723|390726|390933|390937|390938|390941|390943|390946|390947|390948|390950|390952|390953|390954|390955|390956|390957|390958|390959|390961|390962|390964|390965|390966|390972|390974|390975|390979|390982|390983|390984|390986|390992|390997|390998|391006|391007|391008|391010|391014|391025|421191|446914|446953|447332|447337|447341|447342|447344|447349|447353|447441|447443|447450|447459|447461|447465|447472|447479|447480|447543|447547|447551|447560|447561|447564|447565|447566|447568|447575|447577|447579|447580|447581|447583|447586|447587|447596|447598|447600|447608|488909|498135|514884|515323|515326|515327|515331|515336|515350|515367|515368|515370|515374|515379|515380|515382|515383|515395|515396|515399|515404|515406|515408|515410|515411|515413|515414|515416|550797|556495|556496|556498|556716|556718|556720|556763|556765|556767|557072|557074|557076|557078|557080|558254|558256|558258|558260|558262|558264|558266|558268|621064|627165|627166|627167|627168|627169|627170|627171|627172|627173|627174|627175|627176|627177|627178|627179|627180|627181|627182|627183|627184|627185|627186|627187|627188|627189|627190|627191|627192|627193|627194|627195|650541|650568|650572|650602|650674|650699|650700|683294|683295|683296|685594|685596|685598|685599|685601|690432|690434|690435|690436|695020|696338|696340|718469|718470|718471|729946|731954|745932|761412|761415|761416|761418|777045|777048|778760|778795|780407|780408|787032|787035|789894|789895|818877|818878|818879|818880|818881|818882|818883|818884|818885|818886|818887|818888|818889|818890|823076|823077|823078|823079|823080|823081|823082|823083|823084|823085|823086|823087|823088|823089|823090|823091|823092|823093|823094|823095|823096|823097|823098|823099|823100|823101|823102|823103|823104|823105|823106|823107|850748|850947|850949|850951|851261|863087|863088|863089|863090|863091|863092|863093|863094|863095|863096|863097|863098|863099|863100|863101|863102|863103|863104|863105|863106|863107|863108|863109|863110|863111|921768|921769|921770|921771|921772|921773|921774|921775|921776|921777|921778|930195|930196|930197|930198|930199|930200|930201|930202|930203|930204|941610|941611|941612|941613|941614|941615|941616|941617|952168|952169|952170|952171|952172|952173|952174|952175|952176|952177|952178|952179|952180|960415|960416", "text": "Parathyroid carcinoma" }, { - "baseId": "18309|18311|18315|31746|34532|221088|238199|238203|238204|238205|238207|249584|278143|278144|278145|278146|278147|278148|278154|278155|278156|278157|278159|278160|278162|278163|278164|278165|278167|278168|278169|278170|278171|278172|278173|278174|278177|278179|278183|278189|278190|279123|279128|279130|279143|279148|279149|279151|279168|279171|279172|279174|279176|279178|279182|279288|279289|279290|279291|279292|279293|279296|279303|279304|279305|279306|279307|279312|279313|279323|279334|279341|279350|279355|362383|390964|498135|550797|823082|863087|863088|863089|863090|863091|863092|863093|863094|863095|863096|863097|863098|863099|863100|863101|863102|863103|863104|863105|863106|863107|863108|863109|863110|863111", + "upstreamId": "18309|18311|18315|31746|34532|221088|238199|238203|238204|238205|238207|249584|278143|278144|278145|278146|278147|278148|278154|278155|278156|278157|278159|278160|278162|278163|278164|278165|278167|278168|278169|278170|278171|278172|278173|278174|278177|278179|278183|278189|278190|279123|279128|279130|279143|279148|279149|279151|279168|279171|279172|279174|279176|279178|279182|279288|279289|279290|279291|279292|279293|279296|279303|279304|279305|279306|279307|279312|279313|279323|279334|279341|279350|279355|362383|390964|498135|550797|823082|863087|863088|863089|863090|863091|863092|863093|863094|863095|863096|863097|863098|863099|863100|863101|863102|863103|863104|863105|863106|863107|863108|863109|863110|863111", "text": "Hyperparathyroidism 1" }, { - "baseId": "18312", + "upstreamId": "18312", "text": "Cystic parathyroid adenoma" }, { - "baseId": "18315|31728", + "upstreamId": "18315|31728", "text": "Parathyroid adenoma, somatic" }, { - "baseId": "18317|360845", + "upstreamId": "18317|360845", "text": "Parathyroid adenoma" }, { - "baseId": "18321|18322|18324|18325|18326|18327|18328|18329|18330|18331|18332|18333|18334|18335|18336|50120|138631|138633|138634|138635|138636|139309|198037|243642|243689|243690|243691|243692|243693|243694|243695|243696|243697|243698|243699|243700|243701|243703|257596|257599|337717|337720|337721|337726|337728|337730|337737|337739|337740|337744|337745|337746|337748|337749|337754|337757|337767|337770|337773|337775|337781|337784|337785|337787|337790|337798|337799|337804|347294|347298|347300|347302|347314|347317|347319|347322|347324|347329|347334|347343|347344|347346|347348|347353|347354|347361|347363|347370|347374|347379|347383|347385|347391|347392|347395|347396|347398|347405|351280|351282|351285|351286|351289|351290|351292|351294|351295|351299|351300|351303|351304|351307|351308|351311|351317|351319|351322|351324|351326|351329|351330|351331|351334|351339|351341|351342|351343|351344|351347|352334|352335|352336|352337|352340|352341|352344|352345|352346|352347|352350|352351|352352|352353|352354|352356|352357|352360|352361|352362|352363|352364|352365|352366|352367|352370|352371|352372|352373|352376|352377|352380|378776|378781|379846|390486|403750|403757|403902|403903|403906|403908|403914|403918|403919|403921|403922|403925|403927|403928|403931|403932|403933|403938|403939|403946|403949|404353|404355|404356|404357|404358|404364|404366|404368|404387|404389|404391|404394|410982|430558|446394|446398|469860|470093|470100|470101|470102|470104|470109|470113|470115|470118|470120|470123|470129|470130|470130|470133|471028|471030|471032|471037|471039|471040|471052|471053|471476|471478|471481|471485|471488|471489|471493|471495|471786|471883|471886|471887|471888|471890|471892|471893|471894|471897|471901|471902|471904|471906|471907|480166|480172|480177|480196|480199|480394|480395|480396|485796|485797|534010|534011|534034|534142|534151|534164|534168|534177|534180|534181|534181|534183|534185|534186|534188|534189|534191|534196|534197|534199|534295|534300|534304|534305|534309|534310|534313|534317|534320|534325|534688|534691|534692|534698|534699|534705|534709|534711|534712|534714|538253|538254|538255|538256|538257|538258|538259|538260|552229|571857|571858|571860|571866|571879|571884|571891|571900|571901|571904|571905|571912|571913|573218|573219|573344|573346|573347|573350|573351|573936|574061|574062|574062|574063|574064|574065|574071|574073|574075|574077|574080|574080|574085|575243|575244|575245|575246|575247|575248|575249|575250|576052|576053|576054|576055|576056|576057|576058|576059|626284|649330|649331|649332|649333|649334|649335|649336|649337|649338|649339|649340|649341|649342|649343|649344|649345|649346|649347|649348|649349|649350|649351|649352|649353|649354|649355|649356|649357|649358|649359|649360|649361|649362|649363|649364|649365|649366|649367|653205|653251|653285|653312|653318|653616|653619|653696|653697|653709|670594|683212|689276|694701|694702|694703|694704|694706|695870|695871|695872|705876|705877|717395|729134|729135|758035|760836|773506|786575|786576|792038|792039|792040|792041|792042|792043|792044|792045|792046|792047|792048|792049|792050|792051|798083|815158|815161|815178|815192|815193|815198|815202|815775|821437|821438|821440|821442|821443|821444|821445|821446|821447|821448|821449|849182|849183|849184|849185|849186|849187|849188|849189|849190|849191|849192|849193|849194|849195|849196|849197|849198|849199|849200|849201|849202|849203|849204|849205|849206|849207|849208|849209|849210|849211|849212|849213|849214|849215|849216|851914|851916|852428|852432|852433|852924|852928|858764|891037|891038|891039|891040|891041|891042|891043|891044|891045|891046|891047|891048|891049|891050|891051|891052|891053|891054|891055|891056|891057|891058|891059|891060|891061|891062|891063|891064|891065|891066|891067|891068|891069|891070|891071|891072|891073|891074|891075|891076|891077|891078|891079|929452|929453|929454|929455|929456|929457|929458|929459|939253|939254|939255|939256|939257|939258|939259|939260|939261|939262|939263|939264|939265|939266|939267|940527|940528|940529|941279|951406|951407|951408|951409|951410|951411|951412|951413|951414|951415|951416|951417|951418|951419|951420|959058|959059|959060|959061|959062|959063|959064|959065|959066|959067|959068|959069|960340|960341|960342|960343|960344|960965|960966|960967|980396", + "upstreamId": "18321|18322|18324|18325|18326|18327|18328|18329|18330|18331|18332|18333|18334|18335|18336|50120|138631|138633|138634|138635|138636|139309|198037|243642|243689|243690|243691|243692|243693|243694|243695|243696|243697|243698|243699|243700|243701|243703|257596|257599|337717|337720|337721|337726|337728|337730|337737|337739|337740|337744|337745|337746|337748|337749|337754|337757|337767|337770|337773|337775|337781|337784|337785|337787|337790|337798|337799|337804|347294|347298|347300|347302|347314|347317|347319|347322|347324|347329|347334|347343|347344|347346|347348|347353|347354|347361|347363|347370|347374|347379|347383|347385|347391|347392|347395|347396|347398|347405|351280|351282|351285|351286|351289|351290|351292|351294|351295|351299|351300|351303|351304|351307|351308|351311|351317|351319|351322|351324|351326|351329|351330|351331|351334|351339|351341|351342|351343|351344|351347|352334|352335|352336|352337|352340|352341|352344|352345|352346|352347|352350|352351|352352|352353|352354|352356|352357|352360|352361|352362|352363|352364|352365|352366|352367|352370|352371|352372|352373|352376|352377|352380|378776|378781|379846|390486|403750|403757|403902|403903|403906|403908|403914|403918|403919|403921|403922|403925|403927|403928|403931|403932|403933|403938|403939|403946|403949|404353|404355|404356|404357|404358|404364|404366|404368|404387|404389|404391|404394|410982|430558|446394|446398|469860|470093|470100|470101|470102|470104|470109|470113|470115|470118|470120|470123|470129|470130|470130|470133|471028|471030|471032|471037|471039|471040|471052|471053|471476|471478|471481|471485|471488|471489|471493|471495|471786|471883|471886|471887|471888|471890|471892|471893|471894|471897|471901|471902|471904|471906|471907|480166|480172|480177|480196|480199|480394|480395|480396|485796|485797|534010|534011|534034|534142|534151|534164|534168|534177|534180|534181|534181|534183|534185|534186|534188|534189|534191|534196|534197|534199|534295|534300|534304|534305|534309|534310|534313|534317|534320|534325|534688|534691|534692|534698|534699|534705|534709|534711|534712|534714|538253|538254|538255|538256|538257|538258|538259|538260|552229|571857|571858|571860|571866|571879|571884|571891|571900|571901|571904|571905|571912|571913|573218|573219|573344|573346|573347|573350|573351|573936|574061|574062|574062|574063|574064|574065|574071|574073|574075|574077|574080|574080|574085|575243|575244|575245|575246|575247|575248|575249|575250|576052|576053|576054|576055|576056|576057|576058|576059|626284|649330|649331|649332|649333|649334|649335|649336|649337|649338|649339|649340|649341|649342|649343|649344|649345|649346|649347|649348|649349|649350|649351|649352|649353|649354|649355|649356|649357|649358|649359|649360|649361|649362|649363|649364|649365|649366|649367|653205|653251|653285|653312|653318|653616|653619|653696|653697|653709|670594|683212|689276|694701|694702|694703|694704|694706|695870|695871|695872|705876|705877|717395|729134|729135|758035|760836|773506|786575|786576|792038|792039|792040|792041|792042|792043|792044|792045|792046|792047|792048|792049|792050|792051|798083|815158|815161|815178|815192|815193|815198|815202|815775|821437|821438|821440|821442|821443|821444|821445|821446|821447|821448|821449|849182|849183|849184|849185|849186|849187|849188|849189|849190|849191|849192|849193|849194|849195|849196|849197|849198|849199|849200|849201|849202|849203|849204|849205|849206|849207|849208|849209|849210|849211|849212|849213|849214|849215|849216|851914|851916|852428|852432|852433|852924|852928|858764|891037|891038|891039|891040|891041|891042|891043|891044|891045|891046|891047|891048|891049|891050|891051|891052|891053|891054|891055|891056|891057|891058|891059|891060|891061|891062|891063|891064|891065|891066|891067|891068|891069|891070|891071|891072|891073|891074|891075|891076|891077|891078|891079|929452|929453|929454|929455|929456|929457|929458|929459|939253|939254|939255|939256|939257|939258|939259|939260|939261|939262|939263|939264|939265|939266|939267|940527|940528|940529|941279|951406|951407|951408|951409|951410|951411|951412|951413|951414|951415|951416|951417|951418|951419|951420|959058|959059|959060|959061|959062|959063|959064|959065|959066|959067|959068|959069|960340|960341|960342|960343|960344|960965|960966|960967|980396", "text": "Neurofibromatosis, type 2" }, { - "baseId": "18323|18324|22879|27637|622844|623015", + "upstreamId": "18323|18324|22879|27637|622844|623015", "text": "Meningioma" }, { - "baseId": "18337|18338|18339|23065|23067|23068|23069|23070|39158|131900|138996|243651|243652|243654|337610|337611|337626|347199|347201|347202|351195|351197|351200|351201|351204|352216|352217|352219|379825|403764|403825|403839|470130|534095|534181|574062|574080|626284|814999|890931|890932|890933|890934|890935|890936|890937|890938|890939|891811", + "upstreamId": "18337|18338|18339|23065|23067|23068|23069|23070|39158|131900|138996|243651|243652|243654|337610|337611|337626|347199|347201|347202|351195|351197|351200|351201|351204|352216|352217|352219|379825|403764|403825|403839|470130|534095|534181|574062|574080|626284|814999|890931|890932|890933|890934|890935|890936|890937|890938|890939|891811", "text": "Schwannomatosis 1" }, { - "baseId": "18340|18341|18342|18343|227256", + "upstreamId": "18340|18341|18342|18343|227256", "text": "Hypotrichosis 7" }, { - "baseId": "18342|18343|18344|18345|39626|227256", + "upstreamId": "18342|18343|18344|18345|39626|227256", "text": "Woolly hair, autosomal recessive 2, with or without hypotrichosis" }, { - "baseId": "18346|18347|18348|18349|18350|18351|18353|18354|18356|44322|44323|44324|44325|44326|44327|44328|44329|44330|44331|44332|44333|44334|70860|70861|70862|79109|79113|79116|79118|79119|79120|79123|92766|133778|133779|133781|133782|133783|133784|133785|133786|133787|133789|187064|187065|187066|237374|257475|260243|260244|264768|264972|269613|270113|272046|358649|358650|358651|358652|358653|358654|358655|358656|358657|358658|358659|358660|358661|358662|358663|378471|378564|378566|410884|439465|442315|469681|469686|469694|469696|470746|471557|471706|471707|471710|471711|480510|487965|533761|533944|533945|533954|533985|533987|533990|533994|534465|534468|534473|534474|549055|549058|549060|549062|549068|549072|549127|549129|549133|549134|549135|549139|549142|549143|549147|549149|549151|549278|549282|549283|549285|549286|549287|549290|549293|549294|549428|549429|549430|549431|549432|549433|549434|549435|549436|549461|571599|571601|571603|571605|571607|573149|573154|573156|573162|573848|573849|573850|575179|575180|575181|575182|575183|577902|612336|621648|624691|649022|649023|649024|649025|649026|649027|649028|649029|649030|649031|649032|649033|649034|649035|649036|649037|649038|649039|649040|649041|649042|649043|649044|653168|653253|653256|653576|653579|705729|717236|717237|717238|717239|717240|728933|728934|728935|728936|728937|728938|728939|728940|728941|742671|742672|742673|742674|742675|742676|742677|742678|742679|742680|742681|745138|745140|757852|757853|757854|757855|757856|757859|757860|760919|773373|773374|773375|773376|773377|773378|773379|773380|776701|776738|776820|776824|776950|780158|786510|786511|786512|786514|786516|786517|786522|786523|788083|792009|792010|794330|821378|848859|848860|848861|848862|848863|848864|848865|848866|848867|848868|848869|848870|848871|852402|852403|929346|929347|929348|929349|929350|939136|939137|939138|951258|951259|951260|951261|958972|958973|958974|958975|958976|958977|958978|958979|958980|958981|958982|958983|958984|958985|958986|958987|958988|958989|960951|960952|961986|961987|972362|972363|972364|972365|980046|980047|980048|980049|980050|980051|980052|980053|980054|980055|980056|980057|980969", + "upstreamId": "18346|18347|18348|18349|18350|18351|18353|18354|18356|44322|44323|44324|44325|44326|44327|44328|44329|44330|44331|44332|44333|44334|70860|70861|70862|79109|79113|79116|79118|79119|79120|79123|92766|133778|133779|133781|133782|133783|133784|133785|133786|133787|133789|187064|187065|187066|237374|257475|260243|260244|264768|264972|269613|270113|272046|358649|358650|358651|358652|358653|358654|358655|358656|358657|358658|358659|358660|358661|358662|358663|378471|378564|378566|410884|439465|442315|469681|469686|469694|469696|470746|471557|471706|471707|471710|471711|480510|487965|533761|533944|533945|533954|533985|533987|533990|533994|534465|534468|534473|534474|549055|549058|549060|549062|549068|549072|549127|549129|549133|549134|549135|549139|549142|549143|549147|549149|549151|549278|549282|549283|549285|549286|549287|549290|549293|549294|549428|549429|549430|549431|549432|549433|549434|549435|549436|549461|571599|571601|571603|571605|571607|573149|573154|573156|573162|573848|573849|573850|575179|575180|575181|575182|575183|577902|612336|621648|624691|649022|649023|649024|649025|649026|649027|649028|649029|649030|649031|649032|649033|649034|649035|649036|649037|649038|649039|649040|649041|649042|649043|649044|653168|653253|653256|653576|653579|705729|717236|717237|717238|717239|717240|728933|728934|728935|728936|728937|728938|728939|728940|728941|742671|742672|742673|742674|742675|742676|742677|742678|742679|742680|742681|745138|745140|757852|757853|757854|757855|757856|757859|757860|760919|773373|773374|773375|773376|773377|773378|773379|773380|776701|776738|776820|776824|776950|780158|786510|786511|786512|786514|786516|786517|786522|786523|788083|792009|792010|794330|821378|848859|848860|848861|848862|848863|848864|848865|848866|848867|848868|848869|848870|848871|852402|852403|929346|929347|929348|929349|929350|939136|939137|939138|951258|951259|951260|951261|958972|958973|958974|958975|958976|958977|958978|958979|958980|958981|958982|958983|958984|958985|958986|958987|958988|958989|960951|960952|961986|961987|972362|972363|972364|972365|980046|980047|980048|980049|980050|980051|980052|980053|980054|980055|980056|980057|980969", "text": "Polyglandular autoimmune syndrome, type 1" }, { - "baseId": "18348|18354", + "upstreamId": "18348|18354", "text": "Autoimmune polyglandular syndrome type 1, with reversible metaphyseal dysplasia" }, { - "baseId": "18352", + "upstreamId": "18352", "text": "Autoimmune polyglandular syndrome type 1, autosomal dominant" }, { - "baseId": "18357|18358|18359|18360|18361|18362|18363|18364|18365|18366|18367|18368|178178|192518|192520|192521|192522|192523|215781|257373|257376|265875|267619|270740|271079|271347|335795|335796|335799|335808|345499|345503|345508|350120|351165|351166|470471|491705|571309|575119|575120|585756|648776|648777|653103|694564|742464|848479|848480|848481|904881|919920|939010", + "upstreamId": "18357|18358|18359|18360|18361|18362|18363|18364|18365|18366|18367|18368|178178|192518|192520|192521|192522|192523|215781|257373|257376|265875|267619|270740|271079|271347|335795|335796|335799|335808|345499|345503|345508|350120|351165|351166|470471|491705|571309|575119|575120|585756|648776|648777|653103|694564|742464|848479|848480|848481|904881|919920|939010", "text": "Duane-radial ray syndrome" }, { - "baseId": "18369|613173|971150", + "upstreamId": "18369|613173|971150", "text": "IVIC syndrome" }, { - "baseId": "18371|203649|203656|203676|203679|363960|410787|446280|521089", + "upstreamId": "18371|203649|203656|203676|203679|363960|410787|446280|521089", "text": "Tobacco addiction, susceptibility to" }, { - "baseId": "18372|31801", + "upstreamId": "18372|31801", "text": "Nicotine dependence, protection against" }, { - "baseId": "18373|18374|177381|195456", + "upstreamId": "18373|18374|177381|195456", "text": "Retinitis pigmentosa 9" }, { - "baseId": "18375|18376|18377|18378|18379|18380|18381|18382|18383|18384|18385|18386|18387|18388|18390|85484|103278|103300|103306|103307|103309|103310|103311|286076|286077|286084|286097|286098|286103|286104|286113|286117|286118|286120|289134|289135|289136|289149|289161|289174|289485|289487|289495|359429|361962|390701|428054|434112|450852|450859|450861|450863|450986|451158|451161|451163|451173|485696|485697|485698|485699|485700|485701|485702|485703|485704|485705|485706|485707|518178|538628|538637|540523|540524|553315|558430|560619|613977|650798|818724|819019|884773|884774|884775|884776|884777|884778|884779|884780|884781|884782|884783|884784|884785|884786|884787|884788|884789|884790|906314|961421|961596|975669", + "upstreamId": "18375|18376|18377|18378|18379|18380|18381|18382|18383|18384|18385|18386|18387|18388|18390|85484|103278|103300|103306|103307|103309|103310|103311|286076|286077|286084|286097|286098|286103|286104|286113|286117|286118|286120|289134|289135|289136|289149|289161|289174|289485|289487|289495|359429|361962|390701|428054|434112|450852|450859|450861|450863|450986|451158|451161|451163|451173|485696|485697|485698|485699|485700|485701|485702|485703|485704|485705|485706|485707|518178|538628|538637|540523|540524|553315|558430|560619|613977|650798|818724|819019|884773|884774|884775|884776|884777|884778|884779|884780|884781|884782|884783|884784|884785|884786|884787|884788|884789|884790|906314|961421|961596|975669", "text": "3-Oxo-5 alpha-steroid delta 4-dehydrogenase deficiency" }, { - "baseId": "18386", + "upstreamId": "18386", "text": "STEROID 5-ALPHA-REDUCTASE POLYMORPHISM" }, { - "baseId": "18389|18390|966614", + "upstreamId": "18389|18390|966614", "text": "Micropenis" }, { - "baseId": "18391|18392|18393|789839|800347|918553|920125|970488", + "upstreamId": "18391|18392|18393|789839|800347|918553|920125|970488", "text": "Retinitis pigmentosa 18" }, { - "baseId": "18394|18395|18396|18397|18398|39623|39624|337230|337234|337281|343449|343460|343488|345040|345046|345047|361007|537271|791677|791678|800001|800002|800003|800004|800005|800006|919705|919706|919707|919708", + "upstreamId": "18394|18395|18396|18397|18398|39623|39624|337230|337234|337281|343449|343460|343488|345040|345046|345047|361007|537271|791677|791678|800001|800002|800003|800004|800005|800006|919705|919706|919707|919708", "text": "Retinitis pigmentosa 13" }, { - "baseId": "18399|18400|18401", + "upstreamId": "18399|18400|18401", "text": "Retinitis pigmentosa 35" }, { - "baseId": "18399|18400|18401|101927|177056|191424|192532|249423|270752|276617|276618|276621|276622|276623|276624|276625|276627|276628|276629|276630|276631|276634|276635|276881|276882|276883|276888|276892|276893|276894|277463|277475|277477|277478|277540|277541|277551|277562|587547|696153|696154|718275|731767|731768|745740|794454|862424|862425|862426|862427|862428|862429|862430|862431|862432|862433|862434|862435|862436|862437|864996", + "upstreamId": "18399|18400|18401|101927|177056|191424|192532|249423|270752|276617|276618|276621|276622|276623|276624|276625|276627|276628|276629|276630|276631|276634|276635|276881|276882|276883|276888|276892|276893|276894|277463|277475|277477|277478|277540|277541|277551|277562|587547|696153|696154|718275|731767|731768|745740|794454|862424|862425|862426|862427|862428|862429|862430|862431|862432|862433|862434|862435|862436|862437|864996", "text": "Cone-rod dystrophy 10" }, { - "baseId": "18402|18403|18406|18409|18410|18417|50295|50296|50298|50301|50302|91258|102362|102363|102364|102365|102366|102367|102368|102369|102370|102371|102372|102374|102375|102376|102377|102378|102379|102380|102382|102383|102386|102387|138161|138162|138162|138163|138164|138165|138166|138169|138170|138171|151266|151439|151579|171188|175931|177708|184478|184479|184481|184482|184483|184484|184485|184487|184488|184489|184490|184491|184492|184493|184494|222560|227196|230674|230675|235474|235476|235478|235479|235480|235481|235482|235483|235483|235484|235485|235486|235488|235489|235490|235492|242594|242595|242596|242597|242598|242599|242600|242601|242602|242603|242604|242605|242606|242607|242608|242609|242611|242612|242613|242614|247644|247645|247646|247647|247648|247649|247650|247651|247652|247653|247653|247654|247655|247656|247657|247658|247659|247660|247661|247662|247663|247664|247665|247666|247667|247668|247669|247670|247671|247672|247673|247674|247675|247676|247677|247678|256084|256085|260154|327428|327429|327433|327434|327438|327442|327445|327448|327448|327449|327454|327464|327465|327466|327467|337297|337300|337305|337309|337316|337319|337320|337326|337327|337331|343533|343538|343546|343547|343549|343554|343555|343556|343559|343560|343563|343564|343576|343577|343578|343580|343582|343584|343586|343587|343588|343597|345088|345090|345094|345100|345101|345104|345106|345109|345110|360794|374854|375779|375787|378101|401548|401551|401553|401556|401557|401559|401560|401561|401562|401563|401564|401565|401567|401569|401570|401577|401578|401582|401583|401587|401588|401590|401592|401598|402001|402005|402006|402010|402013|402022|402031|402032|402033|402038|402041|402055|402066|402068|402070|402266|402269|402272|402273|402275|402281|402282|402288|402289|402293|402296|402298|402300|402305|409838|409841|415539|420607|420611|420614|420622|420624|420628|422146|424584|433574|466349|466362|466364|466370|466372|466377|466379|466383|467070|467110|467111|467122|467125|467127|467131|467135|467139|467147|467154|467159|467160|467163|467171|467174|467177|467183|467184|467191|467195|467199|467205|467295|467301|467302|467307|467315|467316|467318|467323|467324|467329|467333|467336|467340|467341|467345|467349|467352|467353|467353|467361|467363|467367|467431|467434|467437|467440|467446|467452|467453|467458|467464|467466|467468|467470|467473|467477|477867|477870|477872|477886|477888|477894|477896|477946|477952|477954|477955|477959|477961|477964|477967|477969|477974|477983|477991|477996|477997|478530|478542|478543|478545|478558|478568|478579|478583|478607|478608|478617|482118|530614|530617|530618|530623|530628|530630|530631|530635|530759|530762|530765|530769|530769|530774|530776|530779|530785|530788|530796|530798|530805|530806|530807|530829|530880|530887|530890|530891|530894|530896|530898|531000|531003|531113|531115|531125|531133|531134|531136|531140|531143|531148|531153|531156|531159|531160|531163|531167|531169|568570|568571|568719|568723|568725|568727|568740|568746|568749|568751|568752|570796|570798|570800|570801|570802|570806|570809|570815|570816|570817|570863|570866|570872|570878|570887|570894|570900|570905|570907|574318|574320|574321|574324|574326|574328|574330|574332|574339|610059|610060|645341|645342|645343|645344|645345|645346|645347|645348|645349|645350|645351|645352|645353|645354|645355|645356|645357|645358|645359|645360|645361|645362|645363|645364|645365|645366|645367|645368|645369|645370|645371|645372|645373|645374|645375|645376|645377|645378|645379|645380|645381|645382|645383|645384|645385|645386|645387|645388|645389|645390|645391|645392|645393|645394|645395|645396|645397|645398|652617|652894|652899|653082|653086|653332|653338|653341|684663|685432|688746|688748|690170|694049|694053|695731|703989|703990|703991|715262|715263|715264|727013|740598|755637|755639|755643|771264|771266|771267|771269|771270|771271|771274|771278|785474|791680|791681|812999|813000|813009|813018|813023|813025|813026|813027|813036|813041|813044|813047|813048|813061|813065|818333|820985|820986|820987|820988|820989|820990|844742|844743|844744|844745|844746|844747|844748|844749|844750|844751|844752|844753|844754|844755|844756|844757|844758|844759|844760|844761|844762|844763|844764|844765|844766|844767|844768|844769|844770|844771|844772|844773|844774|844775|844776|844777|844778|844779|844780|844781|844782|844783|844784|844785|844786|844787|844788|844789|844790|844791|844792|844793|844794|844795|844796|844797|844798|844799|844800|844801|852851|852855|858470|876878|876879|876880|876881|876882|876883|876884|876885|876886|876887|876888|876889|876890|876891|928071|928072|928073|928074|928075|928076|928077|928078|928079|928080|928081|928082|928083|928084|928085|937738|937739|937740|937741|937742|937743|937744|937745|937746|937747|937748|937749|937750|940386|940387|940388|941159|941160|941161|949717|949718|949719|949720|949721|949722|949723|949724|949725|949726|949727|949728|949729|949730|949731|949732|949733|949734|949735|949736|957999|958000|958001|958002|958003|958004|958005|958006|958007|960192|960193|960874|977412", + "upstreamId": "18402|18403|18406|18409|18410|18417|50295|50296|50298|50301|50302|91258|102362|102363|102364|102365|102366|102367|102368|102369|102370|102371|102372|102374|102375|102376|102377|102378|102379|102380|102382|102383|102386|102387|138161|138162|138162|138163|138164|138165|138166|138169|138170|138171|151266|151439|151579|171188|175931|177708|184478|184479|184481|184482|184483|184484|184485|184487|184488|184489|184490|184491|184492|184493|184494|222560|227196|230674|230675|235474|235476|235478|235479|235480|235481|235482|235483|235483|235484|235485|235486|235488|235489|235490|235492|242594|242595|242596|242597|242598|242599|242600|242601|242602|242603|242604|242605|242606|242607|242608|242609|242611|242612|242613|242614|247644|247645|247646|247647|247648|247649|247650|247651|247652|247653|247653|247654|247655|247656|247657|247658|247659|247660|247661|247662|247663|247664|247665|247666|247667|247668|247669|247670|247671|247672|247673|247674|247675|247676|247677|247678|256084|256085|260154|327428|327429|327433|327434|327438|327442|327445|327448|327448|327449|327454|327464|327465|327466|327467|337297|337300|337305|337309|337316|337319|337320|337326|337327|337331|343533|343538|343546|343547|343549|343554|343555|343556|343559|343560|343563|343564|343576|343577|343578|343580|343582|343584|343586|343587|343588|343597|345088|345090|345094|345100|345101|345104|345106|345109|345110|360794|374854|375779|375787|378101|401548|401551|401553|401556|401557|401559|401560|401561|401562|401563|401564|401565|401567|401569|401570|401577|401578|401582|401583|401587|401588|401590|401592|401598|402001|402005|402006|402010|402013|402022|402031|402032|402033|402038|402041|402055|402066|402068|402070|402266|402269|402272|402273|402275|402281|402282|402288|402289|402293|402296|402298|402300|402305|409838|409841|415539|420607|420611|420614|420622|420624|420628|422146|424584|433574|466349|466362|466364|466370|466372|466377|466379|466383|467070|467110|467111|467122|467125|467127|467131|467135|467139|467147|467154|467159|467160|467163|467171|467174|467177|467183|467184|467191|467195|467199|467205|467295|467301|467302|467307|467315|467316|467318|467323|467324|467329|467333|467336|467340|467341|467345|467349|467352|467353|467353|467361|467363|467367|467431|467434|467437|467440|467446|467452|467453|467458|467464|467466|467468|467470|467473|467477|477867|477870|477872|477886|477888|477894|477896|477946|477952|477954|477955|477959|477961|477964|477967|477969|477974|477983|477991|477996|477997|478530|478542|478543|478545|478558|478568|478579|478583|478607|478608|478617|482118|530614|530617|530618|530623|530628|530630|530631|530635|530759|530762|530765|530769|530769|530774|530776|530779|530785|530788|530796|530798|530805|530806|530807|530829|530880|530887|530890|530891|530894|530896|530898|531000|531003|531113|531115|531125|531133|531134|531136|531140|531143|531148|531153|531156|531159|531160|531163|531167|531169|568570|568571|568719|568723|568725|568727|568740|568746|568749|568751|568752|570796|570798|570800|570801|570802|570806|570809|570815|570816|570817|570863|570866|570872|570878|570887|570894|570900|570905|570907|574318|574320|574321|574324|574326|574328|574330|574332|574339|610059|610060|645341|645342|645343|645344|645345|645346|645347|645348|645349|645350|645351|645352|645353|645354|645355|645356|645357|645358|645359|645360|645361|645362|645363|645364|645365|645366|645367|645368|645369|645370|645371|645372|645373|645374|645375|645376|645377|645378|645379|645380|645381|645382|645383|645384|645385|645386|645387|645388|645389|645390|645391|645392|645393|645394|645395|645396|645397|645398|652617|652894|652899|653082|653086|653332|653338|653341|684663|685432|688746|688748|690170|694049|694053|695731|703989|703990|703991|715262|715263|715264|727013|740598|755637|755639|755643|771264|771266|771267|771269|771270|771271|771274|771278|785474|791680|791681|812999|813000|813009|813018|813023|813025|813026|813027|813036|813041|813044|813047|813048|813061|813065|818333|820985|820986|820987|820988|820989|820990|844742|844743|844744|844745|844746|844747|844748|844749|844750|844751|844752|844753|844754|844755|844756|844757|844758|844759|844760|844761|844762|844763|844764|844765|844766|844767|844768|844769|844770|844771|844772|844773|844774|844775|844776|844777|844778|844779|844780|844781|844782|844783|844784|844785|844786|844787|844788|844789|844790|844791|844792|844793|844794|844795|844796|844797|844798|844799|844800|844801|852851|852855|858470|876878|876879|876880|876881|876882|876883|876884|876885|876886|876887|876888|876889|876890|876891|928071|928072|928073|928074|928075|928076|928077|928078|928079|928080|928081|928082|928083|928084|928085|937738|937739|937740|937741|937742|937743|937744|937745|937746|937747|937748|937749|937750|940386|940387|940388|941159|941160|941161|949717|949718|949719|949720|949721|949722|949723|949724|949725|949726|949727|949728|949729|949730|949731|949732|949733|949734|949735|949736|957999|958000|958001|958002|958003|958004|958005|958006|958007|960192|960193|960874|977412", "text": "Multiple fibrofolliculomas" }, { - "baseId": "18402|18406|18409|18410|18411|18412|18414|18418|50295|50296|50302|91258|102362|102368|102379|102380|102383|102387|138162|138165|151439|171188|177708|184490|184494|235483|242608|242613|247653|256084|327429|327433|327434|327438|327442|327445|327448|327449|327454|327464|327465|327466|327467|337300|337305|337309|337316|337319|337320|337326|337327|337331|343533|343538|343546|343547|343554|343555|343556|343559|343560|343563|343564|343576|343577|343578|343580|343584|343586|343587|343588|343597|345088|345090|345094|345100|345101|345104|345106|345109|345110|401553|402305|467111|467177|467353|478542|530769|531169|621851|813009|813048|876878|876879|876880|876881|876882|876883|876884|876885|876886|876887|876888|876889|876890|876891", + "upstreamId": "18402|18406|18409|18410|18411|18412|18414|18418|50295|50296|50302|91258|102362|102368|102379|102380|102383|102387|138162|138165|151439|171188|177708|184490|184494|235483|242608|242613|247653|256084|327429|327433|327434|327438|327442|327445|327448|327449|327454|327464|327465|327466|327467|337300|337305|337309|337316|337319|337320|337326|337327|337331|343533|343538|343546|343547|343554|343555|343556|343559|343560|343563|343564|343576|343577|343578|343580|343584|343586|343587|343588|343597|345088|345090|345094|345100|345101|345104|345106|345109|345110|401553|402305|467111|467177|467353|478542|530769|531169|621851|813009|813048|876878|876879|876880|876881|876882|876883|876884|876885|876886|876887|876888|876889|876890|876891", "text": "Pneumothorax, primary spontaneous" }, { - "baseId": "18402|420622|623700", + "upstreamId": "18402|420622|623700", "text": "Birt-Hogg-Dub\u00e9 Syndrome" }, { - "baseId": "18407|27687|29987", + "upstreamId": "18407|27687|29987", "text": "Chromophobe renal cell carcinoma" }, { - "baseId": "18419|18420|18421|18421|18422|18422|18423|18423|18424|18425|18425|18426|18426|20377|20378|20378|20379|20379|20380|20381|20381|20382|20383|39621|39622|177093|177698|177698|190666|190667|190667|190672|190672|190925|190925|190926|191296|191296|191445|191445|191446|191446|191604|191604|191605|191605|191606|191845|191845|191846|192586|192586|192700|192701|192701|192702|194543|194543|194544|194545|194545|195442|195443|195444|195444|196350|196350|217206|217207|237112|237112|237142|237142|251506|251506|251507|251507|251510|251510|251511|251511|251512|251513|251514|251514|251519|251519|251520|251521|251521|251522|251523|251524|251525|251526|251527|251527|251530|251532|251533|251534|251536|251537|251538|251538|251540|251541|251543|251544|251545|251545|251546|251546|251548|251549|251550|251550|251552|264195|264195|265359|265359|265939|265939|265940|265940|265941|265941|267316|267316|267360|267369|267614|268666|269089|269089|269145|269346|269346|270797|270797|270800|270800|272370|272381|272381|274903|274903|275031|275031|293698|293700|293701|293703|293703|293704|293710|293710|293711|293711|293717|293717|293721|293721|293722|293734|293734|293736|293737|293739|293739|293744|293746|293752|293752|293753|293753|293790|293792|293792|293794|293797|293800|293801|293801|293805|293805|293806|293806|293809|293809|293811|293813|293813|293814|293824|293824|293836|293836|293838|293838|293847|293848|293852|293853|293858|293865|293868|293881|293887|293889|293891|293892|293899|293900|293908|293910|293911|293919|293920|295103|295104|295104|295108|295109|295109|295111|295111|295115|295117|295118|295118|295120|295120|295121|295121|295174|295175|295176|295176|295178|295178|295179|295185|295185|295186|295186|295188|295188|295191|295197|295208|295209|295215|295229|295230|295231|295232|295233|295240|295251|295256|295263|298729|298742|298745|298756|298757|298757|298758|298758|298760|298760|298763|298763|298768|298769|298770|298770|298771|298773|298773|298777|298778|298778|298779|298779|298780|298788|298788|298789|298789|298802|298804|298848|298848|298853|298855|298855|298856|298859|298861|298863|298863|298866|298868|298868|298874|298874|298875|298898|298898|298901|298901|298902|298903|298905|298908|298912|298912|298914|298914|298915|298916|298916|298919|298920|298921|298921|298924|298924|298930|298930|298931|298931|298932|298932|298939|298940|298943|298944|298947|298947|298951|298952|298952|298953|298954|298954|298959|298959|298961|298964|298967|298967|298973|298973|298975|298976|298978|298978|298979|298981|298985|298987|298988|298990|298994|298996|299001|299003|299004|299005|299006|299007|299008|299011|299012|299014|299022|299024|299025|299026|299031|299035|299036|299037|299044|299045|299046|299047|299048|299049|299050|299051|299052|299053|299054|299061|299063|299069|299073|299087|357361|357362|359502|367645|367648|368025|368025|369161|369161|369164|369183|406448|414971|421490|421490|428300|428300|428315|428315|439075|439075|440096|440097|440100|440100|440101|440102|440102|440103|440104|440104|440105|443622|443623|443623|452209|453514|453514|453524|453526|453536|453537|453755|453761|453761|453766|453770|453967|453967|454331|454335|454337|454337|454339|481378|481378|488640|489350|489350|489929|490073|490073|490157|490157|491198|491698|493522|500552|500552|500849|500853|500853|513052|513053|520493|520495|520520|536669|536671|536672|536673|536673|543136|543136|543137|543141|543142|543144|543147|543147|543150|543152|543152|543157|543160|543165|543168|543169|543175|543178|543187|543196|543199|543204|543209|543211|543211|543225|543227|543228|543230|543231|543233|543235|543434|543436|543439|543440|543440|543442|543442|543448|543450|543454|543456|543457|543457|543459|543461|543461|543465|543466|543469|543472|543472|543473|543475|543477|543479|543481|543483|543485|543485|543488|543490|543491|543491|543493|543493|543494|543494|543496|543496|543498|543505|543507|543509|543510|543511|543511|543512|543512|543513|543514|543515|543517|543518|543519|543520|543520|543521|543521|543523|543525|543526|543527|543528|543529|543529|543530|543532|543534|543536|543541|543541|543543|543544|543548|543548|543550|543551|543553|543556|543556|543562|543563|543565|543566|543567|543567|543568|543569|543569|543571|543571|543573|543574|543575|543577|543577|543585|543586|543589|543590|543592|543595|543596|543599|543603|543612|543617|543628|543631|543633|543633|543635|543640|543642|543644|543646|543646|543650|543650|543655|543659|543660|543662|543669|549467|549468|549474|549475|552082|559803|559805|559807|559942|561849|562238|562240|564029|564044|584151|584155|586895|609545|609545|609550|612475|623138|632439|632440|632441|632442|632443|632444|632445|632446|632448|632449|632450|632451|632451|632452|632453|651117|651171|651201|651203|651278|691596|691596|691597|691598|691599|691600|691600|691601|691601|695242|698554|698555|698556|698556|698557|698557|698559|698560|698560|698561|698562|698563|698563|698564|698565|698566|698567|698568|698569|698570|698571|698572|698572|698573|698573|698574|698574|698575|698582|698583|698584|698585|698586|698586|698587|698587|698588|698588|698589|698590|698590|698591|698591|698592|698592|709394|709395|709396|709402|709402|709403|721007|721008|721009|721010|721010|721016|721017|721018|721028|721029|721030|721031|730294|730295|730295|734666|734666|734667|734673|734674|734678|734679|734679|734680|734682|734683|734684|734684|744111|744169|748988|748991|748996|748997|748998|748999|748999|749000|749000|749007|749008|749010|749010|749011|749012|749012|749013|749013|749014|749015|749016|749017|749018|749018|749019|749019|759317|759338|759338|759340|759536|759537|764561|764564|764566|764569|764572|764575|764576|764577|764578|764579|764580|764586|764586|764587|764589|764590|764593|764595|777338|777349|777349|777351|777460|777518|777522|777524|777524|777529|777529|781996|781997|782004|782006|782007|782008|782011|782012|782016|782017|782017|787216|787286|787386|792555|792556|799363|799367|819493|819494|819495|819496|829403|829404|829405|829406|829407|829408|829409|829410|829411|829412|829413|829429|829430|829431|829432|829433|829434|829435|850994|850996|851520|851524|890812|890813|890814|890815|890816|890817|890818|890819|890820|890821|890822|891801|891890|891891|891892|891893|891894|891895|891912|891913|891914|891915|891916|891917|891918|891919|891920|891920|891921|891922|891923|891924|891925|891926|891927|891928|891929|891930|891931|891932|891933|891934|891935|891936|891937|891938|891939|891940|891941|891942|891943|891944|891945|891946|891947|891948|891949|891950|891951|891952|891953|891954|891955|891956|891957|891958|891959|891960|891961|891962|891963|891964|891965|891966|891967|891968|891969|891970|891971|891972|891973|891974|891975|891976|891977|891978|891979|891980|891981|891982|891983|891984|891985|891986|891987|891988|891989|891990|891991|891992|891993|891994|891995|891996|891997|895981|895982|895983|895984|895985|906241|906282|923593|923594|923595|923596|923599|923600|932426|932427|939970|939971|939972|940783|940784|940785|940786|944093|944094|944095|944099|953827|953828|953829|953835|953836|953837|953838|953839|953840|953841|959735|960542|974484|978099|978100|978101|978102|978103|978104|978105|978106|978107", + "upstreamId": "18419|18420|18421|18421|18422|18422|18423|18423|18424|18425|18425|18426|18426|20377|20378|20378|20379|20379|20380|20381|20381|20382|20383|39621|39622|177093|177698|177698|190666|190667|190667|190672|190672|190925|190925|190926|191296|191296|191445|191445|191446|191446|191604|191604|191605|191605|191606|191845|191845|191846|192586|192586|192700|192701|192701|192702|194543|194543|194544|194545|194545|195442|195443|195444|195444|196350|196350|217206|217207|237112|237112|237142|237142|251506|251506|251507|251507|251510|251510|251511|251511|251512|251513|251514|251514|251519|251519|251520|251521|251521|251522|251523|251524|251525|251526|251527|251527|251530|251532|251533|251534|251536|251537|251538|251538|251540|251541|251543|251544|251545|251545|251546|251546|251548|251549|251550|251550|251552|264195|264195|265359|265359|265939|265939|265940|265940|265941|265941|267316|267316|267360|267369|267614|268666|269089|269089|269145|269346|269346|270797|270797|270800|270800|272370|272381|272381|274903|274903|275031|275031|293698|293700|293701|293703|293703|293704|293710|293710|293711|293711|293717|293717|293721|293721|293722|293734|293734|293736|293737|293739|293739|293744|293746|293752|293752|293753|293753|293790|293792|293792|293794|293797|293800|293801|293801|293805|293805|293806|293806|293809|293809|293811|293813|293813|293814|293824|293824|293836|293836|293838|293838|293847|293848|293852|293853|293858|293865|293868|293881|293887|293889|293891|293892|293899|293900|293908|293910|293911|293919|293920|295103|295104|295104|295108|295109|295109|295111|295111|295115|295117|295118|295118|295120|295120|295121|295121|295174|295175|295176|295176|295178|295178|295179|295185|295185|295186|295186|295188|295188|295191|295197|295208|295209|295215|295229|295230|295231|295232|295233|295240|295251|295256|295263|298729|298742|298745|298756|298757|298757|298758|298758|298760|298760|298763|298763|298768|298769|298770|298770|298771|298773|298773|298777|298778|298778|298779|298779|298780|298788|298788|298789|298789|298802|298804|298848|298848|298853|298855|298855|298856|298859|298861|298863|298863|298866|298868|298868|298874|298874|298875|298898|298898|298901|298901|298902|298903|298905|298908|298912|298912|298914|298914|298915|298916|298916|298919|298920|298921|298921|298924|298924|298930|298930|298931|298931|298932|298932|298939|298940|298943|298944|298947|298947|298951|298952|298952|298953|298954|298954|298959|298959|298961|298964|298967|298967|298973|298973|298975|298976|298978|298978|298979|298981|298985|298987|298988|298990|298994|298996|299001|299003|299004|299005|299006|299007|299008|299011|299012|299014|299022|299024|299025|299026|299031|299035|299036|299037|299044|299045|299046|299047|299048|299049|299050|299051|299052|299053|299054|299061|299063|299069|299073|299087|357361|357362|359502|367645|367648|368025|368025|369161|369161|369164|369183|406448|414971|421490|421490|428300|428300|428315|428315|439075|439075|440096|440097|440100|440100|440101|440102|440102|440103|440104|440104|440105|443622|443623|443623|452209|453514|453514|453524|453526|453536|453537|453755|453761|453761|453766|453770|453967|453967|454331|454335|454337|454337|454339|481378|481378|488640|489350|489350|489929|490073|490073|490157|490157|491198|491698|493522|500552|500552|500849|500853|500853|513052|513053|520493|520495|520520|536669|536671|536672|536673|536673|543136|543136|543137|543141|543142|543144|543147|543147|543150|543152|543152|543157|543160|543165|543168|543169|543175|543178|543187|543196|543199|543204|543209|543211|543211|543225|543227|543228|543230|543231|543233|543235|543434|543436|543439|543440|543440|543442|543442|543448|543450|543454|543456|543457|543457|543459|543461|543461|543465|543466|543469|543472|543472|543473|543475|543477|543479|543481|543483|543485|543485|543488|543490|543491|543491|543493|543493|543494|543494|543496|543496|543498|543505|543507|543509|543510|543511|543511|543512|543512|543513|543514|543515|543517|543518|543519|543520|543520|543521|543521|543523|543525|543526|543527|543528|543529|543529|543530|543532|543534|543536|543541|543541|543543|543544|543548|543548|543550|543551|543553|543556|543556|543562|543563|543565|543566|543567|543567|543568|543569|543569|543571|543571|543573|543574|543575|543577|543577|543585|543586|543589|543590|543592|543595|543596|543599|543603|543612|543617|543628|543631|543633|543633|543635|543640|543642|543644|543646|543646|543650|543650|543655|543659|543660|543662|543669|549467|549468|549474|549475|552082|559803|559805|559807|559942|561849|562238|562240|564029|564044|584151|584155|586895|609545|609545|609550|612475|623138|632439|632440|632441|632442|632443|632444|632445|632446|632448|632449|632450|632451|632451|632452|632453|651117|651171|651201|651203|651278|691596|691596|691597|691598|691599|691600|691600|691601|691601|695242|698554|698555|698556|698556|698557|698557|698559|698560|698560|698561|698562|698563|698563|698564|698565|698566|698567|698568|698569|698570|698571|698572|698572|698573|698573|698574|698574|698575|698582|698583|698584|698585|698586|698586|698587|698587|698588|698588|698589|698590|698590|698591|698591|698592|698592|709394|709395|709396|709402|709402|709403|721007|721008|721009|721010|721010|721016|721017|721018|721028|721029|721030|721031|730294|730295|730295|734666|734666|734667|734673|734674|734678|734679|734679|734680|734682|734683|734684|734684|744111|744169|748988|748991|748996|748997|748998|748999|748999|749000|749000|749007|749008|749010|749010|749011|749012|749012|749013|749013|749014|749015|749016|749017|749018|749018|749019|749019|759317|759338|759338|759340|759536|759537|764561|764564|764566|764569|764572|764575|764576|764577|764578|764579|764580|764586|764586|764587|764589|764590|764593|764595|777338|777349|777349|777351|777460|777518|777522|777524|777524|777529|777529|781996|781997|782004|782006|782007|782008|782011|782012|782016|782017|782017|787216|787286|787386|792555|792556|799363|799367|819493|819494|819495|819496|829403|829404|829405|829406|829407|829408|829409|829410|829411|829412|829413|829429|829430|829431|829432|829433|829434|829435|850994|850996|851520|851524|890812|890813|890814|890815|890816|890817|890818|890819|890820|890821|890822|891801|891890|891891|891892|891893|891894|891895|891912|891913|891914|891915|891916|891917|891918|891919|891920|891920|891921|891922|891923|891924|891925|891926|891927|891928|891929|891930|891931|891932|891933|891934|891935|891936|891937|891938|891939|891940|891941|891942|891943|891944|891945|891946|891947|891948|891949|891950|891951|891952|891953|891954|891955|891956|891957|891958|891959|891960|891961|891962|891963|891964|891965|891966|891967|891968|891969|891970|891971|891972|891973|891974|891975|891976|891977|891978|891979|891980|891981|891982|891983|891984|891985|891986|891987|891988|891989|891990|891991|891992|891993|891994|891995|891996|891997|895981|895982|895983|895984|895985|906241|906282|923593|923594|923595|923596|923599|923600|932426|932427|939970|939971|939972|940783|940784|940785|940786|944093|944094|944095|944099|953827|953828|953829|953835|953836|953837|953838|953839|953840|953841|959735|960542|974484|978099|978100|978101|978102|978103|978104|978105|978106|978107", "text": "Ellis-van Creveld syndrome" }, { - "baseId": "18421|18422|18423|18425|18426|18427|20378|20379|20381|20381|108172|108173|108174|177698|190666|190667|190667|190672|190925|191296|191445|191446|191604|191605|191606|191845|191846|192586|192701|192702|194543|194545|195444|196350|237112|237142|251506|251507|251510|251511|251514|251519|251521|251523|251524|251527|251538|251545|251546|251550|264195|265359|265939|265940|265941|267316|267360|267369|267614|269089|269145|269346|269346|270797|270800|272370|272381|274903|275031|293703|293710|293711|293717|293721|293734|293737|293739|293752|293753|293792|293800|293801|293805|293806|293809|293813|293824|293836|293838|293852|293853|295104|295109|295111|295115|295118|295120|295121|295174|295176|295178|295185|295186|295188|298757|298758|298760|298763|298770|298773|298778|298779|298788|298789|298848|298855|298863|298868|298874|298898|298901|298912|298914|298916|298921|298924|298930|298931|298932|298947|298952|298953|298954|298959|298964|298967|298973|298978|298979|299046|367645|367648|368025|369161|369164|406448|414971|421490|428300|428315|439075|440097|440100|440102|440103|440104|443623|453514|453524|453526|453755|453761|453770|453967|454335|454337|454339|481378|488640|489350|489929|490073|490157|491198|491698|493522|500552|500849|500853|520493|520495|520520|536669|536671|536673|543136|543147|543152|543168|543211|543440|543442|543457|543461|543472|543485|543491|543493|543494|543496|543511|543512|543520|543521|543529|543541|543548|543556|543567|543569|543571|543577|543633|543646|543650|559803|559805|559807|559942|561849|562238|562240|564029|564044|584151|584155|586895|609545|609550|632439|632440|632441|632442|632443|632444|632445|632446|632448|632449|632450|632451|632452|632453|651117|651171|651201|651203|651278|691596|691597|691598|691599|691600|691601|695242|698554|698555|698556|698557|698559|698560|698561|698562|698563|698564|698565|698566|698567|698568|698569|698570|698571|698572|698573|698574|698575|698582|698583|698584|698586|698587|698588|698589|698590|698591|698592|709394|709395|709396|709402|709403|721007|721008|721009|721010|721016|721017|721018|721028|721029|721030|721031|730294|730295|734666|734667|734673|734674|734678|734679|734680|734682|734683|734684|744111|744169|748988|748991|748996|748997|748998|748999|749000|749007|749008|749010|749011|749012|749013|749014|749015|749016|749018|749019|759317|759338|759340|759536|759537|764561|764564|764566|764569|764572|764575|764576|764577|764578|764579|764580|764586|764587|764590|764593|764595|777338|777349|777351|777460|777518|777522|777524|777529|781997|782004|782006|782007|782008|782011|782012|782016|782017|787216|787286|787386|819493|819494|819495|819496|829403|829404|829405|829406|829407|829408|829409|829410|829411|829412|829413|829429|829430|829431|829432|829433|829434|829435|850994|850996|851520|851524|891920|918898|923593|923594|923595|923596|923599|923600|932426|932427|939970|939971|939972|940783|940784|940785|940786|944093|944094|944095|944099|953827|953828|953829|953835|953836|953837|953838|953839|953840|953841|959735|960542", + "upstreamId": "18421|18422|18423|18425|18426|18427|20378|20379|20381|20381|108172|108173|108174|177698|190666|190667|190667|190672|190925|191296|191445|191446|191604|191605|191606|191845|191846|192586|192701|192702|194543|194545|195444|196350|237112|237142|251506|251507|251510|251511|251514|251519|251521|251523|251524|251527|251538|251545|251546|251550|264195|265359|265939|265940|265941|267316|267360|267369|267614|269089|269145|269346|269346|270797|270800|272370|272381|274903|275031|293703|293710|293711|293717|293721|293734|293737|293739|293752|293753|293792|293800|293801|293805|293806|293809|293813|293824|293836|293838|293852|293853|295104|295109|295111|295115|295118|295120|295121|295174|295176|295178|295185|295186|295188|298757|298758|298760|298763|298770|298773|298778|298779|298788|298789|298848|298855|298863|298868|298874|298898|298901|298912|298914|298916|298921|298924|298930|298931|298932|298947|298952|298953|298954|298959|298964|298967|298973|298978|298979|299046|367645|367648|368025|369161|369164|406448|414971|421490|428300|428315|439075|440097|440100|440102|440103|440104|443623|453514|453524|453526|453755|453761|453770|453967|454335|454337|454339|481378|488640|489350|489929|490073|490157|491198|491698|493522|500552|500849|500853|520493|520495|520520|536669|536671|536673|543136|543147|543152|543168|543211|543440|543442|543457|543461|543472|543485|543491|543493|543494|543496|543511|543512|543520|543521|543529|543541|543548|543556|543567|543569|543571|543577|543633|543646|543650|559803|559805|559807|559942|561849|562238|562240|564029|564044|584151|584155|586895|609545|609550|632439|632440|632441|632442|632443|632444|632445|632446|632448|632449|632450|632451|632452|632453|651117|651171|651201|651203|651278|691596|691597|691598|691599|691600|691601|695242|698554|698555|698556|698557|698559|698560|698561|698562|698563|698564|698565|698566|698567|698568|698569|698570|698571|698572|698573|698574|698575|698582|698583|698584|698586|698587|698588|698589|698590|698591|698592|709394|709395|709396|709402|709403|721007|721008|721009|721010|721016|721017|721018|721028|721029|721030|721031|730294|730295|734666|734667|734673|734674|734678|734679|734680|734682|734683|734684|744111|744169|748988|748991|748996|748997|748998|748999|749000|749007|749008|749010|749011|749012|749013|749014|749015|749016|749018|749019|759317|759338|759340|759536|759537|764561|764564|764566|764569|764572|764575|764576|764577|764578|764579|764580|764586|764587|764590|764593|764595|777338|777349|777351|777460|777518|777522|777524|777529|781997|782004|782006|782007|782008|782011|782012|782016|782017|787216|787286|787386|819493|819494|819495|819496|829403|829404|829405|829406|829407|829408|829409|829410|829411|829412|829413|829429|829430|829431|829432|829433|829434|829435|850994|850996|851520|851524|891920|918898|923593|923594|923595|923596|923599|923600|932426|932427|939970|939971|939972|940783|940784|940785|940786|944093|944094|944095|944099|953827|953828|953829|953835|953836|953837|953838|953839|953840|953841|959735|960542", "text": "Curry-Hall syndrome" }, { - "baseId": "18422|20377|20379|39385|39386|48583|101405|101406|101407|191055|196284|205144|205144|260870|260871|260872|260876|260878|260883|267604|267965|272806|292774|292775|292776|292794|292797|292810|292816|292821|292826|294135|294139|294152|294153|294158|294160|294161|294162|294164|294165|294174|294181|294186|294206|294210|294212|294213|294214|294224|294225|294227|297588|297589|297590|297599|297600|297603|297604|297610|297619|297627|297691|297702|297709|297710|297711|297713|297729|297731|297740|297742|297743|297744|297757|297758|353902|393400|406421|425298|428289|440056|440060|440061|440065|440066|440069|440070|440076|440077|440078|440079|440080|440081|440082|440084|440100|440102|440103|440116|440197|440212|440218|453053|453343|453344|453827|500505|500796|520076|520146|536036|536038|561972|561972|561973|563590|609533|632088|632089|632090|655598|698430|720836|734517|734518|748806|828957|828958|890423|890424|890425|890426|890427|890428|890429|890430|890431|890432|890433|890434|890435|890436|890437|890438|890439|890440|890441|890442|890443|890444|890445|890446|890447|890448|890449|890450|890451|890452|890453|890454|890455|891771|891772|891773|891774|891775|891776|918887|918888|918889|923466|923467|932251|943900|943901", + "upstreamId": "18422|20377|20379|39385|39386|48583|101405|101406|101407|191055|196284|205144|205144|260870|260871|260872|260876|260878|260883|267604|267965|272806|292774|292775|292776|292794|292797|292810|292816|292821|292826|294135|294139|294152|294153|294158|294160|294161|294162|294164|294165|294174|294181|294186|294206|294210|294212|294213|294214|294224|294225|294227|297588|297589|297590|297599|297600|297603|297604|297610|297619|297627|297691|297702|297709|297710|297711|297713|297729|297731|297740|297742|297743|297744|297757|297758|353902|393400|406421|425298|428289|440056|440060|440061|440065|440066|440069|440070|440076|440077|440078|440079|440080|440081|440082|440084|440100|440102|440103|440116|440197|440212|440218|453053|453343|453344|453827|500505|500796|520076|520146|536036|536038|561972|561972|561973|563590|609533|632088|632089|632090|655598|698430|720836|734517|734518|748806|828957|828958|890423|890424|890425|890426|890427|890428|890429|890430|890431|890432|890433|890434|890435|890436|890437|890438|890439|890440|890441|890442|890443|890444|890445|890446|890447|890448|890449|890450|890451|890452|890453|890454|890455|891771|891772|891773|891774|891775|891776|918887|918888|918889|923466|923467|932251|943900|943901", "text": "Short rib-polydactyly syndrome, Majewski type" }, { - "baseId": "18428|18429|18430|18431|18432|18433|57120|57123|57124|57126|173795|173936|229093|271879|290706|290708|290712|291620|291622|294814|294815|294816|294823|294825|295225|295228|295242|889102|889103|889104|889105|889106|889107|889108|889109|889110|889111|889112|889113|889114|889115|889116", + "upstreamId": "18428|18429|18430|18431|18432|18433|57120|57123|57124|57126|173795|173936|229093|271879|290706|290708|290712|291620|291622|294814|294815|294816|294823|294825|295225|295228|295242|889102|889103|889104|889105|889106|889107|889108|889109|889110|889111|889112|889113|889114|889115|889116", "text": "Deafness, autosomal recessive 6" }, { - "baseId": "18434", + "upstreamId": "18434", "text": "Inflammatory bowel disease 14, susceptibility to" }, { - "baseId": "18434|18435|18436", + "upstreamId": "18434|18435|18436", "text": "Systemic lupus erythematosus 10" }, { - "baseId": "18435|19934|20788|23514|23948|24585|556475|569444|581729|581829|816330|961210|961211|961212|961213|961214|961215|961216|961217|980478", + "upstreamId": "18435|19934|20788|23514|23948|24585|556475|569444|581729|581829|816330|961210|961211|961212|961213|961214|961215|961216|961217|980478", "text": "Rheumatoid arthritis" }, { - "baseId": "18437", + "upstreamId": "18437", "text": "Systemic lupus erythematosus, association with susceptibility to, 10" }, { - "baseId": "18438|18439|18440|18441|18442|18444|101568|101569|101570|101571|101572|101574|101575|101576|101578|101579|101580|101582|101583|166179|176932|176932|177195|177610|177884|177885|188781|191062|191574|191822|191927|191928|192769|192771|192774|193193|193299|193632|193632|193792|212105|212108|221109|221110|221111|227216|237104|238338|238339|238340|238341|238342|249993|250002|250006|250008|250010|250011|265418|266814|267000|268051|268051|269236|271042|271044|271333|271488|272410|272772|272959|273564|274125|274311|275340|275394|275394|280972|280973|280976|280977|280978|280979|280984|280985|280985|280988|281526|281527|281535|281536|281550|281551|281556|281559|281564|281565|281570|281571|281572|281573|281583|281588|282746|282749|282757|282760|282761|282762|282765|282769|282770|282778|282780|282783|283011|283015|283017|283018|283019|283022|283024|283025|283026|283037|283038|283040|283041|283060|283071|283079|283085|283086|448220|448255|448260|448383|488677|491412|492399|492399|492789|493121|493144|493743|493743|494108|494158|515992|583704|584746|585392|586278|620008|683376|683377|683378|685820|818171|818172|818173|824285|864664|864665|864666|864667|864668|864669|864670|864671|864672|864673|864674|864675|864676|864677|864678|864679|864680|864681|864682|864683|865195|865196|952487|962670|962822|962823|962824", + "upstreamId": "18438|18439|18440|18441|18442|18444|101568|101569|101570|101571|101572|101574|101575|101576|101578|101579|101580|101582|101583|166179|176932|176932|177195|177610|177884|177885|188781|191062|191574|191822|191927|191928|192769|192771|192774|193193|193299|193632|193632|193792|212105|212108|221109|221110|221111|227216|237104|238338|238339|238340|238341|238342|249993|250002|250006|250008|250010|250011|265418|266814|267000|268051|268051|269236|271042|271044|271333|271488|272410|272772|272959|273564|274125|274311|275340|275394|275394|280972|280973|280976|280977|280978|280979|280984|280985|280985|280988|281526|281527|281535|281536|281550|281551|281556|281559|281564|281565|281570|281571|281572|281573|281583|281588|282746|282749|282757|282760|282761|282762|282765|282769|282770|282778|282780|282783|283011|283015|283017|283018|283019|283022|283024|283025|283026|283037|283038|283040|283041|283060|283071|283079|283085|283086|448220|448255|448260|448383|488677|491412|492399|492399|492789|493121|493144|493743|493743|494108|494158|515992|583704|584746|585392|586278|620008|683376|683377|683378|685820|818171|818172|818173|824285|864664|864665|864666|864667|864668|864669|864670|864671|864672|864673|864674|864675|864676|864677|864678|864679|864680|864681|864682|864683|865195|865196|952487|962670|962822|962823|962824", "text": "Nephronophthisis 4" }, { - "baseId": "18440", + "upstreamId": "18440", "text": "Cerebello-oculo-renal syndrome (nephronophthisis, oculomotor apraxia and cerebellar abnormalities)" }, { - "baseId": "18440|54320|861136", + "upstreamId": "18440|54320|861136", "text": "Infertility" }, { - "baseId": "18443|18444|101568|101569|101570|101571|101574|101575|101576|101578|101579|101580|101582|101583|166179|176932|176932|177195|177610|177884|185958|188781|191062|191574|191822|191927|191928|192769|192771|192774|193193|193299|193632|193632|193792|212105|212108|221109|221110|221111|227216|237104|238338|238339|238340|238341|238342|249993|250002|250006|250008|250010|250011|265418|266814|267000|268051|268051|269236|271042|271044|271333|271488|272410|272772|272959|273564|274125|274311|275340|275394|275394|280972|280973|280976|280977|280978|280979|280984|280985|280985|280988|281526|281527|281535|281536|281550|281551|281556|281559|281564|281565|281570|281571|281572|281573|281583|281588|282746|282749|282757|282760|282761|282762|282765|282769|282770|282778|282780|282783|283011|283015|283017|283018|283019|283022|283024|283025|283026|283037|283038|283040|283041|283060|283071|283079|283085|283086|448220|448255|448260|448383|488677|490490|491412|492399|492789|493144|493743|493743|494108|494158|515992|583704|584746|585392|586278|620008|683376|683377|683378|685820|800349|824285|864664|864665|864666|864667|864668|864669|864670|864671|864672|864673|864674|864675|864676|864677|864678|864679|864680|864681|864682|864683|865195|865196|918643", + "upstreamId": "18443|18444|101568|101569|101570|101571|101574|101575|101576|101578|101579|101580|101582|101583|166179|176932|176932|177195|177610|177884|185958|188781|191062|191574|191822|191927|191928|192769|192771|192774|193193|193299|193632|193632|193792|212105|212108|221109|221110|221111|227216|237104|238338|238339|238340|238341|238342|249993|250002|250006|250008|250010|250011|265418|266814|267000|268051|268051|269236|271042|271044|271333|271488|272410|272772|272959|273564|274125|274311|275340|275394|275394|280972|280973|280976|280977|280978|280979|280984|280985|280985|280988|281526|281527|281535|281536|281550|281551|281556|281559|281564|281565|281570|281571|281572|281573|281583|281588|282746|282749|282757|282760|282761|282762|282765|282769|282770|282778|282780|282783|283011|283015|283017|283018|283019|283022|283024|283025|283026|283037|283038|283040|283041|283060|283071|283079|283085|283086|448220|448255|448260|448383|488677|490490|491412|492399|492789|493144|493743|493743|494108|494158|515992|583704|584746|585392|586278|620008|683376|683377|683378|685820|800349|824285|864664|864665|864666|864667|864668|864669|864670|864671|864672|864673|864674|864675|864676|864677|864678|864679|864680|864681|864682|864683|865195|865196|918643", "text": "Senior-Loken syndrome 4" }, { - "baseId": "18445|94419|94420|94421|94422|307585|307587|307595|307597|307599|307600|307604|307607|307609|307611|311847|311853|311854|311860|311868|311870|311878|311880|317409|317410|317411|317413|317420|317424|317431|317440|317441|317455|317460|317462|317881|317889|317894|317896|317905|317906|317914|317934|458907|458912|459257|459259|459324|459326|524346|524349|524353|524360|524361|524447|524646|524667|524811|524818|524821|524950|524959|563027|563029|563031|563033|563781|565756|565757|565759|565761|565772|620325|624382|624383|638032|638033|638034|638035|638036|638037|638038|638039|638040|638041|638042|638043|638044|638045|638046|700891|711862|723453|723454|723455|737007|751549|767283|767284|779310|787795|835829|835830|835831|835832|835833|835834|835835|835836|835837|835838|835839|835840|835841|835842|835843|835844|835845|835846|835847|901517|901518|901519|901520|901521|901522|901523|901524|901525|901526|901527|901528|901529|901530|903351|903352|903353|925493|925494|925495|925496|925497|925498|925499|925500|934649|934650|934651|934652|934653|934654|946497|946498|946499|946500|946501|946502|946503|946504|946505|946506|955755", + "upstreamId": "18445|94419|94420|94421|94422|307585|307587|307595|307597|307599|307600|307604|307607|307609|307611|311847|311853|311854|311860|311868|311870|311878|311880|317409|317410|317411|317413|317420|317424|317431|317440|317441|317455|317460|317462|317881|317889|317894|317896|317905|317906|317914|317934|458907|458912|459257|459259|459324|459326|524346|524349|524353|524360|524361|524447|524646|524667|524811|524818|524821|524950|524959|563027|563029|563031|563033|563781|565756|565757|565759|565761|565772|620325|624382|624383|638032|638033|638034|638035|638036|638037|638038|638039|638040|638041|638042|638043|638044|638045|638046|700891|711862|723453|723454|723455|737007|751549|767283|767284|779310|787795|835829|835830|835831|835832|835833|835834|835835|835836|835837|835838|835839|835840|835841|835842|835843|835844|835845|835846|835847|901517|901518|901519|901520|901521|901522|901523|901524|901525|901526|901527|901528|901529|901530|903351|903352|903353|925493|925494|925495|925496|925497|925498|925499|925500|934649|934650|934651|934652|934653|934654|946497|946498|946499|946500|946501|946502|946503|946504|946505|946506|955755", "text": "Candidiasis, familial, 2" }, { - "baseId": "18446|18447|18448|18449|48147|48149|48150|83245|213954|213955|256546|256549|264886|330548|330553|330556|330557|330560|330568|330569|330572|330575|330577|340789|340792|340795|340796|340799|340800|340802|340808|340810|340814|340815|340821|340824|346397|346398|346407|346409|346413|346421|346423|346424|346425|346426|346431|346432|346434|347740|347748|347757|347761|347765|347769|347771|378843|612325|620893|622254|727556|741196|878805|878806|878807|878808|878809|878810|878811|878812|878813|878814|878815|878816|878817|878818|878819|878820|878821|878822|880624|880625|880626|880627|880628|961341|971100|983336|983337|983338|983339|983340|983341|983342|983343|983344|983345|983346|983347|983348|983349|983350|983351|983352|983353|983354|983355|983356|983357|983358|983359|983360|983361|983362", + "upstreamId": "18446|18447|18448|18449|48147|48149|48150|83245|213954|213955|256546|256549|264886|330548|330553|330556|330557|330560|330568|330569|330572|330575|330577|340789|340792|340795|340796|340799|340800|340802|340808|340810|340814|340815|340821|340824|346397|346398|346407|346409|346413|346421|346423|346424|346425|346426|346431|346432|346434|347740|347748|347757|347761|347765|347769|347771|378843|612325|620893|622254|727556|741196|878805|878806|878807|878808|878809|878810|878811|878812|878813|878814|878815|878816|878817|878818|878819|878820|878821|878822|880624|880625|880626|880627|880628|961341|971100|983336|983337|983338|983339|983340|983341|983342|983343|983344|983345|983346|983347|983348|983349|983350|983351|983352|983353|983354|983355|983356|983357|983358|983359|983360|983361|983362", "text": "Autosomal recessive congenital ichthyosis 3" }, { - "baseId": "18450|18451|18453|18454|18454|18455|18456|18456|18457|18458|18458|18459|18460|18461|18462|39609|48590|48590|107258|214529|214529|249696|249696|249698|249699|249699|249701|249702|259649|278696|278697|278701|278704|278707|278710|278714|278714|278718|278718|278719|278726|278884|278885|278886|278887|278889|278890|278893|278894|278896|278908|278911|278912|278913|278913|278916|278917|280044|280045|280046|280047|280050|280052|280053|280054|280057|280058|280059|280060|280069|280070|280074|280086|280086|280087|280090|280160|280163|280168|280169|280171|280172|280173|280174|280175|353093|384611|442706|442706|447481|447486|447617|447621|447728|447730|447732|447734|447762|447762|447764|447771|488149|515460|515527|515530|515540|515570|550578|556782|556853|557145|558343|609015|627348|627349|627350|627351|627352|695024|696431|823304|823305|823306|823307|823308|823309|861039|863422|863423|863424|863425|863426|863427|863428|863429|863430|863431|863432|863433|863434|863435|863436|863437|863438|863439|863440|863441|863442|865106|865107|920552|920553|920554|930267|939794|941687|941688|952231|969768|983928", + "upstreamId": "18450|18451|18453|18454|18454|18455|18456|18456|18457|18458|18458|18459|18460|18461|18462|39609|48590|48590|107258|214529|214529|249696|249696|249698|249699|249699|249701|249702|259649|278696|278697|278701|278704|278707|278710|278714|278714|278718|278718|278719|278726|278884|278885|278886|278887|278889|278890|278893|278894|278896|278908|278911|278912|278913|278913|278916|278917|280044|280045|280046|280047|280050|280052|280053|280054|280057|280058|280059|280060|280069|280070|280074|280086|280086|280087|280090|280160|280163|280168|280169|280171|280172|280173|280174|280175|353093|384611|442706|442706|447481|447486|447617|447621|447728|447730|447732|447734|447762|447762|447764|447771|488149|515460|515527|515530|515540|515570|550578|556782|556853|557145|558343|609015|627348|627349|627350|627351|627352|695024|696431|823304|823305|823306|823307|823308|823309|861039|863422|863423|863424|863425|863426|863427|863428|863429|863430|863431|863432|863433|863434|863435|863436|863437|863438|863439|863440|863441|863442|865106|865107|920552|920553|920554|930267|939794|941687|941688|952231|969768|983928", "text": "Van der Woude syndrome" }, { - "baseId": "18452|18453|18453|18454|18454|18456|18458|18462|39609|39610|39611|48590|214529|249225|249696|249699|259649|278714|278718|278912|278913|280044|280086|280169|280171|346490|346491|350730|353093|442706|447481|447486|447728|447730|447734|447762|447764|515460|515527|515530|515540|515570|556782|556853|557145|558343|627348|627349|627350|627351|627352|695024|823304|823305|823306|823307|823308|823309|930267|939794|941687|941688|952231|964990", + "upstreamId": "18452|18453|18453|18454|18454|18456|18458|18462|39609|39610|39611|48590|214529|249225|249696|249699|259649|278714|278718|278912|278913|280044|280086|280169|280171|346490|346491|350730|353093|442706|447481|447486|447728|447730|447734|447762|447764|515460|515527|515530|515540|515570|556782|556853|557145|558343|627348|627349|627350|627351|627352|695024|823304|823305|823306|823307|823308|823309|930267|939794|941687|941688|952231|964990", "text": "Popliteal pterygium syndrome" }, { - "baseId": "18453|18454|18456|18458|48590|214529|249696|249696|249698|249699|249699|249701|259649|278696|278701|278704|278707|278710|278714|278714|278718|278718|278719|278884|278885|278886|278887|278889|278890|278893|278894|278896|278908|278911|278913|278913|278916|280045|280046|280047|280050|280052|280053|280054|280057|280058|280059|280060|280069|280070|280074|280086|280086|280087|280160|280163|280168|280172|280173|280174|280175|442706|447481|447486|447728|447730|447734|447762|447764|515460|515527|515530|515540|515570|556782|556853|557145|558343|627348|627349|627350|627351|627352|695024|696431|823304|823305|823306|823307|823308|823309|863422|863423|863424|863425|863426|863427|863428|863429|863430|863431|863432|863433|863434|863435|863436|863437|863438|863439|863440|863441|863442|865106|865107|930267|939794|941687|941688|952231|970008|970009|970010", + "upstreamId": "18453|18454|18456|18458|48590|214529|249696|249696|249698|249699|249699|249701|259649|278696|278701|278704|278707|278710|278714|278714|278718|278718|278719|278884|278885|278886|278887|278889|278890|278893|278894|278896|278908|278911|278913|278913|278916|280045|280046|280047|280050|280052|280053|280054|280057|280058|280059|280060|280069|280070|280074|280086|280086|280087|280160|280163|280168|280172|280173|280174|280175|442706|447481|447486|447728|447730|447734|447762|447764|515460|515527|515530|515540|515570|556782|556853|557145|558343|627348|627349|627350|627351|627352|695024|696431|823304|823305|823306|823307|823308|823309|863422|863423|863424|863425|863426|863427|863428|863429|863430|863431|863432|863433|863434|863435|863436|863437|863438|863439|863440|863441|863442|865106|865107|930267|939794|941687|941688|952231|970008|970009|970010", "text": "Orofacial cleft 6, susceptibility to" }, { - "baseId": "18463|193649|321711|321715|321717|321726|321727|321733|321740|321744|321745|321747|321748|330958|330972|330977|330978|330981|330985|330987|330989|330990|330995|331001|331002|331006|331007|331013|331016|337716|337722|337724|337733|337735|337741|337742|337747|337751|337758|337762|339746|339748|339750|339751|339756|339762|339772|590793|619926|620497|793519|793520|872880|872881|872882|872883|872884|872885|872886|872887|872888|872889|872890|872891|872892|872893|872894|872895|872896|872897|872898|872899|872900|872901|872902|872903|872904|872905|872906|872907|872908|872909|872910|872911|872912|876463", + "upstreamId": "18463|193649|321711|321715|321717|321726|321727|321733|321740|321744|321745|321747|321748|330958|330972|330977|330978|330981|330985|330987|330989|330990|330995|331001|331002|331006|331007|331013|331016|337716|337722|337724|337733|337735|337741|337742|337747|337751|337758|337762|339746|339748|339750|339751|339756|339762|339772|590793|619926|620497|793519|793520|872880|872881|872882|872883|872884|872885|872886|872887|872888|872889|872890|872891|872892|872893|872894|872895|872896|872897|872898|872899|872900|872901|872902|872903|872904|872905|872906|872907|872908|872909|872910|872911|872912|876463", "text": "Spinocerebellar ataxia, autosomal recessive, with axonal neuropathy 1" }, { - "baseId": "18464|18465|39608|135500|135500|135501|310050|310059|315063|315074|315092|321107|321110|321671|321672|321688|321690|321696|429047|444587|540020|865722|865723|865724|865725|865726|865727|865728|865729|865730|865731|865732", + "upstreamId": "18464|18465|39608|135500|135500|135501|310050|310059|315063|315074|315092|321107|321110|321671|321672|321688|321690|321696|429047|444587|540020|865722|865723|865724|865725|865726|865727|865728|865729|865730|865731|865732", "text": "Diabetes mellitus, permanent neonatal, with cerebellar agenesis" }, { - "baseId": "18466|18467|18468|18469|18470|140732|140734|140736|140737|239295|239296|393772|394187|394191|394208|452818|453596|453599|453600|519647|519922|621894|631840|631841|689747|734338|819426|828626|828627|828628|918866|923374|943731|943732|972513", + "upstreamId": "18466|18467|18468|18469|18470|140732|140734|140736|140737|239295|239296|393772|394187|394191|394208|452818|453596|453599|453600|519647|519922|621894|631840|631841|689747|734338|819426|828626|828627|828628|918866|923374|943731|943732|972513", "text": "Atrioventricular septal defect 2" }, { - "baseId": "18468", + "upstreamId": "18468", "text": "Atrioventricular septal defect, partial, with heterotaxy syndrome" }, { - "baseId": "18471|171814|428536|615412", + "upstreamId": "18471|171814|428536|615412", "text": "Hermansky-Pudlak syndrome 7" }, { - "baseId": "18472|18473|18474|18475|18476|18477|101989|101991|101992|101993|101994|101995|101996|177480|177481|243958|243959|257698|338487|338489|338492|338503|338506|338508|338510|338513|338525|338530|348089|348093|348095|348107|351792|351793|351794|351796|351797|351798|351799|351802|351803|351806|352651|352652|352653|352654|352655|352656|352657|352658|352659|352660|352661|352662|379867|471157|471158|471984|513672|539105|552234|572024|572030|574152|585471|588528|620696|624880|649539|649540|649541|649542|653606|689293|694749|717534|729275|742982|742984|758131|758132|853022|891438|891439|891440|891441|891442|891443|891444|891445|891446|891447|891448|891449|891450|891451|891452|891453|891454|891455|891853|951492|959106|959107|975874", + "upstreamId": "18472|18473|18474|18475|18476|18477|101989|101991|101992|101993|101994|101995|101996|177480|177481|243958|243959|257698|338487|338489|338492|338503|338506|338508|338510|338513|338525|338530|348089|348093|348095|348107|351792|351793|351794|351796|351797|351798|351799|351802|351803|351806|352651|352652|352653|352654|352655|352656|352657|352658|352659|352660|352661|352662|379867|471157|471158|471984|513672|539105|552234|572024|572030|574152|585471|588528|620696|624880|649539|649540|649541|649542|653606|689293|694749|717534|729275|742982|742984|758131|758132|853022|891438|891439|891440|891441|891442|891443|891444|891445|891446|891447|891448|891449|891450|891451|891452|891453|891454|891455|891853|951492|959106|959107|975874", "text": "ALG12-congenital disorder of glycosylation" }, { - "baseId": "18478|18479|18480|18481|18482|18483|18484|18485|18486|18487|49425|70063|132989|132994|132998|133001|133005|137975|137976|137977|137978|137979|137980|137981|137982|137983|137984|137986|137987|137988|137989|137991|137992|137993|137994|137995|137997|137998|137999|138000|138001|138002|138003|138004|138005|138008|138009|138010|138014|138017|138019|138020|138021|138023|138024|138026|138027|138028|138029|138030|138031|138032|138033|138035|138036|138040|138043|138044|138051|138053|138054|139278|139281|166180|180343|180352|180364|186234|186235|186236|186237|190171|190172|200394|200395|200396|205183|205212|205705|207011|208223|208320|208323|213187|213230|213231|213232|215265|221848|221862|222541|222542|222543|222544|226959|231728|240641|240642|242432|242532|242533|242534|242535|242537|242538|242540|242541|242542|242543|242545|242546|242548|242550|242552|242555|242556|242557|242558|242559|242560|242561|245218|250831|253596|255965|255969|255971|255977|255979|255981|255982|255987|255989|255991|255998|255999|256001|256005|256006|256008|260143|287840|288498|291537|326829|326831|326835|326839|326841|326845|326847|326849|326852|326856|326857|326865|336710|336712|336714|336715|336723|336727|336731|336735|336739|336741|336743|336746|336747|336749|336751|336752|336753|336756|342931|342938|342943|342956|342957|342960|342961|342966|342969|342970|342973|342977|342986|342994|342999|343002|343003|343004|344578|344579|344580|344581|344585|344586|344597|344598|344602|344607|344608|344610|344613|344614|344619|344620|344621|344625|344628|344629|344632|344634|358389|358390|358391|358392|363852|389213|389214|393226|397315|400207|400401|400883|401237|401372|401378|401380|401382|401400|401408|401411|401412|401416|401422|401430|401442|401450|401456|401458|401652|401676|401899|401909|401913|401917|401920|401938|401941|402142|402160|402171|402186|402204|402206|407733|407749|409804|422132|429894|429897|429898|429899|429900|429903|429909|433544|433545|444540|452037|459319|464041|465692|466109|466123|466129|466150|466168|466172|466856|466877|466900|466901|466914|466935|466950|466953|467179|467197|467201|467214|481382|512953|513365|530405|530409|530419|530421|530510|530515|530521|530538|530549|530553|530576|530723|530724|530733|530735|530758|530933|535378|535379|547836|547848|547852|547853|547857|547859|547862|547863|547865|547866|547870|547871|547872|547878|547879|547880|547881|547886|547887|547888|547889|547892|547894|547896|547898|547902|547904|547906|547908|547911|547912|547915|547918|547921|547924|547925|547926|547928|547930|547931|547932|547933|547936|547938|547939|547940|547941|547943|547947|547949|547951|547952|547953|547954|547955|547956|547957|547958|547959|547960|547961|547962|547964|547966|547967|547972|547973|547975|547977|547982|547983|547985|547989|547991|547994|548004|548008|548014|548019|548122|548129|548132|548135|548137|548139|548158|548172|548178|548179|548180|548182|548197|548200|548201|548204|548205|548210|548221|548231|548232|548235|548243|548245|548257|548260|548263|548264|548271|548274|548613|548615|548618|548620|548622|548625|548629|548631|548634|548638|548643|548645|548646|548648|548654|548657|548660|548670|548680|548681|548701|548710|548717|548721|548728|548730|548731|548733|548741|548743|548749|548751|548754|568469|568508|570626|570649|570655|574214|574215|574217|575792|575794|575796|578535|611365|612102|612103|612104|612126|612127|612134|612135|612196|612197|620567|623342|638438|645153|645154|645159|645164|645167|645170|645176|645180|645183|645189|645191|645195|645201|645202|645212|645214|645215|645217|645220|645221|652783|679905|683523|684640|684641|684642|685428|685429|685430|685431|688569|688683|688686|688687|688695|688696|688701|688702|688706|688709|688710|688711|688712|688714|688721|690157|690158|693980|693981|693998|694000|695455|695716|695721|790285|790286|790287|790306|790307|790308|790309|790310|790311|790312|790908|790909|790920|790921|790922|790923|790924|790925|790926|790927|790928|790929|791404|791405|791406|791407|791408|791496|791497|791498|791605|791606|791607|791608|791609|791610|791611|791612|791613|791614|791659|791660|791661|791662|791663|791664|844514|844519|844522|844528|844533|844538|844539|844543|844548|844555|844556|844558|844567|844576|844581|844584|844590|851693|852137|852680|852687|852837|852847|876204|876205|876206|876207|876208|876209|876210|876211|876212|876213|876214|876215|876216|876217|876218|876219|876220|876221|876222|876223|876224|876225|876226|876227|876228|876229|876230|876231|876232|876233|876234|876738|876739|876740|876741|876742|876743|904097|904098|904099|904100|904103|904104|904105|917985|928014|937679|937685|949647|957931|960867|961972|962276|962277|962278|962279|962280|962281|962282|962283|962284|962285|962286|962287|962288|962289|962290|962291|962292|962293|962294|962295|962296|962297|962298|962299|962300|962301|962302|962303|962305|962306|962307|962308|962309|962311|962312|962313|962315|962316|962317|962318|962319|962320|962321|962322|962323|962324|962325|962326|962327|962328|962329|962330|962331|962332|962333|962334|962335|962336|962337|962338|962339|962340|962341|962342|962343|962344|962345|962346|962347|962348|962349|962350|962351|962352|962354|962355|962356|962357|962358|962359|962360|962361|962362|962363|962365|962366|962367|962368|962369|962370|962371|962372|962373|962374|962375|962376|962377|962378|962379|962380|962381|962382|962383|962384|962385|962386|962387|962388|962389|962390|962391|962392|962393|962394|962395|962396|962397|962398|962399|962400|962401|962402|962403|962404|962405|962406|962407|962408|962409|962410|962411|962412|962413|962414|962415|962417|962418|962419|962420|962421|962422|962423|962424|962425|962426|962427|962428|962429|962430|962431|962432|962433|962434|962435|962436|962437|962438|962439|962440|962441|962442|962443|962444|962445|962446|962447|962448|962449|962450|962451|962452|962453|962454|962455|962456|962457|962458|962459|962460|962461|962462|962463|962464|962465|962466|962467|962468|962469|962470|962471|962472|962473|962474|962475|962476|962477|962478|962479|962480|962481|962482|962483|962484|962485|962486|962487|962488|962489|962490|962491|962492|962493|962494|962495|962496|962497|962498|962499|962500|962501|962502|962503|962504|962505|962506|962507|962508|962509|962510|962511|962512|962513|962514|962515|962516|962517|962518|962519|962520|962521|962522|962523|962524|962525|962526|962527|962528|962529|962530|962531|962532|962533|962534|962535|962536|962537|962538|962539|962540|962541|962542|962543|962544|962545|962546|962547|962548|962549|962550|962551|962552|962553|962554|962555|962556|962557|962558|962559|962560|962561|962562|962563|962564|962565|962566|962567|962568|962569|962570|962571|962572|962573|962574|962575|962576|962577|962578|962579|962580|962581|962582|962583|962584|962585|962586|962587|962588|962589|962590|962591|962592|962593|962594|962595|962596|962597|962598|962599|962600|962601|962602|962603|962604|962605|962606|962607|962608|962610|962611|962612|962613|962614|962615|962616|962617|962618|962619|962620|962621|962623|962624|962625|962626|962627|962628|962629|962630|962631|962633|962634|962635|962636|962637|962638|962639|962640|962641|962642|962643|962644|962645|962646|962647|962648|962649|962651|962652|962653|962654|962655|962656|962657|962658|962659|962660|962661|962662|962663|972239|972240|972241|972242|972243|972244|972245|972246|972247|972248|972249|972250|972251|972252|972253|972254|972255|972256|972257|972258|972259|972260|972261|979875|979876|979877|979878|979879|979880|979881|979882|979883|979884|979885", + "upstreamId": "18478|18479|18480|18481|18482|18483|18484|18485|18486|18487|49425|70063|132989|132994|132998|133001|133005|137975|137976|137977|137978|137979|137980|137981|137982|137983|137984|137986|137987|137988|137989|137991|137992|137993|137994|137995|137997|137998|137999|138000|138001|138002|138003|138004|138005|138008|138009|138010|138014|138017|138019|138020|138021|138023|138024|138026|138027|138028|138029|138030|138031|138032|138033|138035|138036|138040|138043|138044|138051|138053|138054|139278|139281|166180|180343|180352|180364|186234|186235|186236|186237|190171|190172|200394|200395|200396|205183|205212|205705|207011|208223|208320|208323|213187|213230|213231|213232|215265|221848|221862|222541|222542|222543|222544|226959|231728|240641|240642|242432|242532|242533|242534|242535|242537|242538|242540|242541|242542|242543|242545|242546|242548|242550|242552|242555|242556|242557|242558|242559|242560|242561|245218|250831|253596|255965|255969|255971|255977|255979|255981|255982|255987|255989|255991|255998|255999|256001|256005|256006|256008|260143|287840|288498|291537|326829|326831|326835|326839|326841|326845|326847|326849|326852|326856|326857|326865|336710|336712|336714|336715|336723|336727|336731|336735|336739|336741|336743|336746|336747|336749|336751|336752|336753|336756|342931|342938|342943|342956|342957|342960|342961|342966|342969|342970|342973|342977|342986|342994|342999|343002|343003|343004|344578|344579|344580|344581|344585|344586|344597|344598|344602|344607|344608|344610|344613|344614|344619|344620|344621|344625|344628|344629|344632|344634|358389|358390|358391|358392|363852|389213|389214|393226|397315|400207|400401|400883|401237|401372|401378|401380|401382|401400|401408|401411|401412|401416|401422|401430|401442|401450|401456|401458|401652|401676|401899|401909|401913|401917|401920|401938|401941|402142|402160|402171|402186|402204|402206|407733|407749|409804|422132|429894|429897|429898|429899|429900|429903|429909|433544|433545|444540|452037|459319|464041|465692|466109|466123|466129|466150|466168|466172|466856|466877|466900|466901|466914|466935|466950|466953|467179|467197|467201|467214|481382|512953|513365|530405|530409|530419|530421|530510|530515|530521|530538|530549|530553|530576|530723|530724|530733|530735|530758|530933|535378|535379|547836|547848|547852|547853|547857|547859|547862|547863|547865|547866|547870|547871|547872|547878|547879|547880|547881|547886|547887|547888|547889|547892|547894|547896|547898|547902|547904|547906|547908|547911|547912|547915|547918|547921|547924|547925|547926|547928|547930|547931|547932|547933|547936|547938|547939|547940|547941|547943|547947|547949|547951|547952|547953|547954|547955|547956|547957|547958|547959|547960|547961|547962|547964|547966|547967|547972|547973|547975|547977|547982|547983|547985|547989|547991|547994|548004|548008|548014|548019|548122|548129|548132|548135|548137|548139|548158|548172|548178|548179|548180|548182|548197|548200|548201|548204|548205|548210|548221|548231|548232|548235|548243|548245|548257|548260|548263|548264|548271|548274|548613|548615|548618|548620|548622|548625|548629|548631|548634|548638|548643|548645|548646|548648|548654|548657|548660|548670|548680|548681|548701|548710|548717|548721|548728|548730|548731|548733|548741|548743|548749|548751|548754|568469|568508|570626|570649|570655|574214|574215|574217|575792|575794|575796|578535|611365|612102|612103|612104|612126|612127|612134|612135|612196|612197|620567|623342|638438|645153|645154|645159|645164|645167|645170|645176|645180|645183|645189|645191|645195|645201|645202|645212|645214|645215|645217|645220|645221|652783|679905|683523|684640|684641|684642|685428|685429|685430|685431|688569|688683|688686|688687|688695|688696|688701|688702|688706|688709|688710|688711|688712|688714|688721|690157|690158|693980|693981|693998|694000|695455|695716|695721|790285|790286|790287|790306|790307|790308|790309|790310|790311|790312|790908|790909|790920|790921|790922|790923|790924|790925|790926|790927|790928|790929|791404|791405|791406|791407|791408|791496|791497|791498|791605|791606|791607|791608|791609|791610|791611|791612|791613|791614|791659|791660|791661|791662|791663|791664|844514|844519|844522|844528|844533|844538|844539|844543|844548|844555|844556|844558|844567|844576|844581|844584|844590|851693|852137|852680|852687|852837|852847|876204|876205|876206|876207|876208|876209|876210|876211|876212|876213|876214|876215|876216|876217|876218|876219|876220|876221|876222|876223|876224|876225|876226|876227|876228|876229|876230|876231|876232|876233|876234|876738|876739|876740|876741|876742|876743|904097|904098|904099|904100|904103|904104|904105|917985|928014|937679|937685|949647|957931|960867|961972|962276|962277|962278|962279|962280|962281|962282|962283|962284|962285|962286|962287|962288|962289|962290|962291|962292|962293|962294|962295|962296|962297|962298|962299|962300|962301|962302|962303|962305|962306|962307|962308|962309|962311|962312|962313|962315|962316|962317|962318|962319|962320|962321|962322|962323|962324|962325|962326|962327|962328|962329|962330|962331|962332|962333|962334|962335|962336|962337|962338|962339|962340|962341|962342|962343|962344|962345|962346|962347|962348|962349|962350|962351|962352|962354|962355|962356|962357|962358|962359|962360|962361|962362|962363|962365|962366|962367|962368|962369|962370|962371|962372|962373|962374|962375|962376|962377|962378|962379|962380|962381|962382|962383|962384|962385|962386|962387|962388|962389|962390|962391|962392|962393|962394|962395|962396|962397|962398|962399|962400|962401|962402|962403|962404|962405|962406|962407|962408|962409|962410|962411|962412|962413|962414|962415|962417|962418|962419|962420|962421|962422|962423|962424|962425|962426|962427|962428|962429|962430|962431|962432|962433|962434|962435|962436|962437|962438|962439|962440|962441|962442|962443|962444|962445|962446|962447|962448|962449|962450|962451|962452|962453|962454|962455|962456|962457|962458|962459|962460|962461|962462|962463|962464|962465|962466|962467|962468|962469|962470|962471|962472|962473|962474|962475|962476|962477|962478|962479|962480|962481|962482|962483|962484|962485|962486|962487|962488|962489|962490|962491|962492|962493|962494|962495|962496|962497|962498|962499|962500|962501|962502|962503|962504|962505|962506|962507|962508|962509|962510|962511|962512|962513|962514|962515|962516|962517|962518|962519|962520|962521|962522|962523|962524|962525|962526|962527|962528|962529|962530|962531|962532|962533|962534|962535|962536|962537|962538|962539|962540|962541|962542|962543|962544|962545|962546|962547|962548|962549|962550|962551|962552|962553|962554|962555|962556|962557|962558|962559|962560|962561|962562|962563|962564|962565|962566|962567|962568|962569|962570|962571|962572|962573|962574|962575|962576|962577|962578|962579|962580|962581|962582|962583|962584|962585|962586|962587|962588|962589|962590|962591|962592|962593|962594|962595|962596|962597|962598|962599|962600|962601|962602|962603|962604|962605|962606|962607|962608|962610|962611|962612|962613|962614|962615|962616|962617|962618|962619|962620|962621|962623|962624|962625|962626|962627|962628|962629|962630|962631|962633|962634|962635|962636|962637|962638|962639|962640|962641|962642|962643|962644|962645|962646|962647|962648|962649|962651|962652|962653|962654|962655|962656|962657|962658|962659|962660|962661|962662|962663|972239|972240|972241|972242|972243|972244|972245|972246|972247|972248|972249|972250|972251|972252|972253|972254|972255|972256|972257|972258|972259|972260|972261|979875|979876|979877|979878|979879|979880|979881|979882|979883|979884|979885", "text": "Fanconi anemia, complementation group A" }, { - "baseId": "18479|18482|18483|19777|21379|21380|21382|21751|21753|21754|21756|21757|21758|24388|27079|27082|27083|27084|27085|27086|27088|27090|34164|34168|46584|49425|65865|65898|66133|67040|67400|99372|99373|132280|132984|132985|132986|132987|132988|132989|132991|132992|132993|132994|132995|132996|132997|132998|132999|133000|133001|133004|133005|133007|133008|135439|136450|136518|137975|137976|137977|137978|137979|137980|137981|137982|137983|137986|137987|137988|137989|137990|137991|137992|137993|137995|137998|138000|138001|138002|138003|138004|138006|138007|138008|138009|138010|138014|138016|138017|138019|138020|138021|138022|138023|138024|138025|138026|138028|138029|138030|138031|138032|138033|138035|138036|138037|138038|138039|138040|138043|138044|138049|138050|138051|138052|138053|138054|138055|138057|138058|138059|138060|138063|138066|138067|138068|138087|138088|138090|138093|138094|138095|138096|138097|138099|138100|138101|138104|138105|138106|138108|138109|139506|139869|140978|140979|140980|140981|140983|140984|140987|140988|140989|140990|142457|152470|177703|180327|180329|180331|180332|180333|180336|180337|180338|180343|180344|180345|180346|180347|180349|180350|180352|180353|180354|180355|180357|180358|180359|180363|180571|180642|180937|185267|186096|186097|186225|186226|186234|186235|186236|186237|186792|186793|190171|194336|194866|195603|205183|205208|205210|205212|207011|207731|208096|208097|208098|208223|208224|208254|208255|208256|208257|208406|212271|212670|212671|212673|212674|212676|212677|212678|212679|212680|212681|212682|212683|212684|212685|212686|212687|212689|212690|212925|213140|213141|213145|213187|213188|213189|213190|213191|213230|213231|213232|215407|215479|221315|221316|221317|221319|221802|221829|221830|221831|221832|221833|221834|221835|221836|221837|221838|221839|221840|221841|221842|221843|221844|221846|221847|221848|221849|221850|221851|221852|221853|221854|221855|221856|221857|221858|221860|221861|221862|221863|222325|222433|222434|222435|222436|222486|222541|222542|222543|222544|226959|231721|231723|231724|231725|231728|231730|231731|231732|231737|231738|231881|236954|236960|237216|238962|238963|238964|238965|238966|238967|238969|239031|239032|239033|239034|239035|239036|239037|239038|239039|239040|239041|239042|240435|240614|240615|240616|240617|240618|240619|240620|240621|240627|240629|240630|240632|240633|240634|240635|240636|240637|240638|240639|240640|240641|240642|240643|241077|241078|241079|241080|241081|241083|241084|241831|241832|241833|241834|241835|241836|241837|241838|241839|241840|241841|241842|241843|242119|242120|242121|242122|242123|242124|242125|242126|242127|242129|242130|242132|242133|242134|242136|242137|242138|242139|242140|242141|242142|242400|242401|242402|242403|242404|242405|242406|242407|242408|242409|242410|242411|242413|242414|242415|242416|242417|242418|242419|242420|242421|242422|242424|242425|242426|242427|242428|242430|242431|242432|242433|242434|242435|242436|242532|242533|242534|242535|242536|242537|242540|242541|242542|242543|242544|242545|242546|242547|242548|242549|242550|242551|242552|242553|242554|242555|242556|242557|242558|242559|242560|242561|245217|245218|245219|245220|245221|245222|245223|245224|247056|248486|250750|250831|250832|250836|250838|250841|250842|253535|253536|253596|253598|254127|254941|254943|254946|254947|254952|254953|255378|255379|255384|255385|255386|255389|255708|255709|255711|255712|255713|255714|255715|255716|255718|255719|255722|255724|255725|255727|255729|255730|255731|255732|255733|255734|255735|255736|255965|255969|255971|255972|255979|255981|255982|255986|255987|255988|255989|255999|256001|256004|256005|257770|259408|259529|259928|260102|260143|265612|286872|287798|287808|287823|287837|287840|288498|288503|288508|290414|291422|291427|291439|291451|291535|291537|291542|291580|299934|299936|308258|308262|308265|308927|308945|312648|313683|313782|318555|318558|318560|318568|319067|319075|319961|319977|320047|320054|320542|320543|320546|320553|320566|320570|320576|320580|320594|320604|320607|323474|323475|323490|323491|323502|323507|325276|325281|325283|325299|325312|325322|326152|326839|326841|326849|326852|326863|326865|327062|327064|327095|327916|327918|329235|329239|329240|329250|329347|329349|329354|329355|329357|329361|329374|333181|333190|333199|333200|333206|333214|333215|333222|333231|333235|333236|333243|333247|334213|334921|334928|334937|334940|334947|334950|335896|335912|335923|335927|335945|335946|335949|335953|336727|336731|336739|336743|336747|336751|336752|336758|337894|337897|337911|337938|338987|338995|339313|339477|339487|339491|339517|340006|340007|340009|340010|340022|340024|340026|340031|340032|341380|341385|341389|341391|341399|341407|341408|341409|341415|341416|341418|341420|341422|341428|341435|341436|341437|341442|342896|342899|342909|342910|342917|342920|342923|342931|342949|342951|342952|342966|342969|342970|342973|342977|342986|342999|343002|343003|344590|344598|344608|344612|344613|344621|344628|344629|344632|345189|345274|345280|345282|346666|346669|346670|346680|346681|348562|352102|352104|352782|353858|357819|357835|358390|358392|360157|363821|363849|363852|370481|370522|370542|371011|371018|371022|371026|371373|371376|371384|371407|373207|393030|393035|393038|393050|393059|393060|393070|393135|393146|393150|393152|393156|393157|393158|393159|393160|393163|393166|393167|393226|393231|393334|393337|393345|393419|393421|393423|393424|393432|393516|396874|396876|396878|396899|396904|396906|396909|396914|397100|397106|397111|397112|397120|397128|397131|397143|397146|397149|397153|397293|397297|397301|397314|397317|397326|397333|397463|397476|397481|397485|397749|398126|398127|398131|398140|398457|398543|398557|398562|398564|398567|398569|399639|399643|399799|399800|399806|399808|399812|400039|400203|400205|400207|400211|400365|400369|400370|400373|400374|400376|400380|400381|400382|400384|400387|400393|400394|400398|400399|400401|400409|400411|400414|400419|400511|400512|400513|400516|400527|400530|400531|400539|400540|400659|400662|400865|400870|400876|400879|400883|400890|400895|401132|401138|401144|401145|401151|401159|401162|401163|401164|401167|401169|401170|401173|401175|401176|401177|401180|401183|401186|401189|401194|401197|401199|401203|401208|401209|401215|401217|401218|401220|401223|401226|401227|401228|401229|401231|401232|401233|401235|401236|401237|401240|401333|401372|401373|401375|401378|401380|401382|401384|401385|401395|401396|401398|401399|401400|401405|401408|401410|401411|401412|401416|401420|401421|401422|401425|401429|401430|401436|401439|401442|401450|401451|401456|401458|401625|401630|401632|401636|401639|401647|401649|401652|401654|401658|401660|401662|401669|401670|401676|401677|401679|401681|401682|401684|401690|401891|401894|401896|401897|401898|401899|401905|401909|401911|401913|401916|401917|401918|401920|401922|401924|401927|401934|401938|401939|401941|401942|401943|402142|402144|402156|402160|402169|402171|402174|402185|402186|402195|402200|402201|402204|402206|402213|404139|404144|404149|404501|407728|407733|407736|407738|407739|407740|407744|407749|407751|407753|407754|407757|407759|407760|407765|407768|409623|409804|409805|422132|422133|428080|428110|429016|429237|429559|429560|429561|429722|429727|429728|429729|429789|429792|429793|429794|429796|429798|429799|429800|429801|429806|429894|429896|429899|429906|429907|429908|433544|433550|437967|438666|438795|444537|444540|444543|444544|445230|445447|445448|445576|445578|445683|445684|451534|451564|451566|451577|451593|451711|451721|451725|451729|451731|451737|451817|451827|451839|451848|451859|451899|451900|451909|452027|452037|452041|452051|452068|452070|458132|458736|459156|459316|459317|459325|459331|459334|459335|459340|459345|459346|459348|459352|459456|459458|459460|459463|459465|459474|459551|459554|459555|459619|459712|459714|459720|459725|459732|459734|459735|459737|460019|460038|460039|460042|460043|460224|460225|460236|460241|460242|460244|460991|460994|461096|461108|461117|461119|463210|463214|463217|463219|463224|463229|463230|463734|463736|463740|463743|463746|464041|464043|464044|464051|464054|464059|464061|464063|464071|464073|464075|464084|464204|464207|464213|464218|464222|464224|464226|464228|464229|464540|464541|464542|464547|464549|464555|464558|464561|464563|464849|465205|465208|465213|465214|465217|465223|465228|465326|465333|465335|465338|465343|465347|465349|465432|465433|465442|465447|465451|465452|465457|465458|465460|465462|465468|465470|465475|465542|465557|465670|465675|465677|465680|465681|465686|465692|465706|465710|465716|465722|465727|466109|466112|466113|466116|466123|466124|466128|466129|466132|466137|466139|466142|466144|466149|466150|466153|466155|466156|466168|466170|466172|466177|466380|466381|466387|466391|466406|466409|466419|466421|466423|466424|466427|466428|466429|466430|466433|466436|466440|466441|466442|466444|466445|466455|466459|466462|466642|466647|466652|466653|466659|466662|466666|466668|466673|466675|466678|466680|466689|466694|466696|466698|466699|466851|466852|466856|466870|466871|466872|466877|466897|466899|466900|466901|466902|466905|466907|466912|466913|466914|466918|466919|466920|466921|466924|466925|466926|466928|466929|466930|466934|466935|466939|466942|466944|466948|466950|466953|466956|466965|466987|466990|467162|467168|467176|467179|467188|467190|467194|467197|467201|467206|467214|467218|467219|470516|470518|470523|471324|471328|471332|471760|471761|471767|471768|471770|471774|471777|471781|472071|472072|474922|474957|474964|475123|475130|475133|481382|489977|502698|502701|502993|503049|503210|512953|513303|518505|518564|518565|518579|518581|518630|518635|518660|518661|518703|518710|518712|518721|518830|518834|518841|518844|518862|518900|518905|524563|524565|524567|524570|524702|524705|524716|524938|524941|524943|524946|524947|524952|524956|525061|525063|525075|525110|525114|525115|525247|526202|526212|526540|526544|528130|528131|528133|528136|528139|528158|528166|528168|528173|528174|528505|528507|528517|528518|528637|528638|529062|529065|529070|529077|529079|529081|529083|529087|529119|529120|529132|529133|529135|529137|529138|529251|529286|529450|529451|529457|529458|529564|529576|529667|529670|529672|529674|529678|529936|529942|529947|529949|529952|529954|529957|529958|529963|529964|529968|529976|529977|530037|530042|530045|530046|530050|530056|530061|530072|530076|530082|530084|530090|530092|530096|530264|530266|530268|530275|530282|530285|530287|530293|530302|530401|530405|530409|530414|530419|530421|530425|530426|530434|530437|530444|530474|530478|530492|530494|530503|530506|530509|530510|530515|530516|530517|530521|530536|530538|530542|530547|530549|530550|530553|530572|530574|530576|530711|530715|530721|530723|530724|530728|530733|530735|530741|530744|530748|530754|530757|530758|530760|530930|530933|530935|530949|534559|534564|534593|534595|534596|534607|534611|534637|534639|535058|536353|536448|536781|537227|545632|547836|547852|547859|547862|547863|547871|547886|547892|547898|547904|547906|547924|547933|547941|547947|547951|547957|547958|547975|547983|547994|548008|548200|548201|548204|548210|548221|548260|548263|548618|548625|548634|548645|548648|548654|548657|548660|548680|548710|548728|548730|548731|548733|548743|552189|558245|558247|558249|558622|558716|558718|558722|559235|559237|559239|559247|559249|560871|560885|561042|561047|561059|561062|561064|561853|561856|561857|561859|562157|562199|562202|562212|562216|562225|562606|563221|563223|563228|563230|563232|563333|563334|563335|563337|563340|563341|563965|563967|563974|564174|564177|564179|564550|565890|566001|566002|566007|566413|566416|566418|566425|566432|566437|566442|567148|567150|567155|567294|567297|567316|567321|567324|567326|568033|568039|568042|568047|568048|568049|568058|568069|568111|568114|568115|568119|568120|568127|568130|568132|568134|568468|568469|568471|568474|568475|568481|568486|568487|568499|568502|568504|568508|568509|568512|568515|568872|568876|568877|568880|568881|568886|569011|569012|569029|569163|569172|569174|569187|569195|569196|569204|569217|569415|569431|569626|569628|569632|569638|569822|570145|570154|570162|570177|570179|570186|570192|570276|570277|570279|570280|570281|570283|570284|570290|570468|570624|570626|570628|570630|570631|570633|570645|570649|570651|570655|570658|570665|570672|570675|570676|572607|572786|572787|573443|573547|573548|573550|573552|573558|573562|573565|573612|573662|573665|574046|574049|574050|574051|574052|574055|574056|574214|574215|574216|574217|574222|574223|574224|574226|574325|574327|575340|575341|575342|575343|575797|576165|612134|612190|613056|614393|620531|620940|620941|620942|620943|623342|630399|630400|630401|630402|630403|630404|630405|630671|630672|630673|630674|630675|630676|630677|630678|630679|630680|630681|630694|630695|638222|638223|638224|638225|638226|638227|638228|638229|638230|638231|638232|638233|638234|638430|638431|638432|638433|638434|638435|638436|638437|638438|638439|638440|638441|638442|638443|638444|638445|638446|639892|639893|639894|639895|639896|639897|639898|642359|642360|642361|642362|642363|642364|642365|642366|642367|642368|642369|642370|642371|642372|642373|642374|642375|642376|642377|642378|642379|642380|642381|642382|642383|642384|642385|642386|642387|642388|642389|642390|642391|642392|642393|642394|642395|642396|642397|642398|642399|642400|642401|642402|642403|642404|642405|642406|642407|642408|642409|642410|642411|642412|642413|642414|642415|642416|642417|642418|642419|642420|642421|642422|642423|642424|642425|642426|642427|642428|642429|642430|642431|642432|642433|642434|642435|642436|642437|642438|642439|642440|642441|642442|642443|642444|642445|642446|642447|642448|642449|642450|642451|642452|642453|642454|642455|642456|643568|643569|643570|643571|643572|643573|643574|643575|643576|643577|643578|643579|643580|643581|643582|643583|643584|643585|643586|643587|643588|643589|643590|643591|643592|643593|643594|643595|643596|644641|644642|644643|644644|644645|644646|644647|644648|644649|644650|644651|644652|644653|644654|644655|644656|644657|644658|644659|644660|644661|644662|644663|644664|644665|644666|644667|644668|644669|644670|644671|644672|644673|644674|644675|645153|645154|645155|645156|645157|645158|645159|645161|645162|645163|645164|645165|645166|645167|645168|645169|645170|645171|645172|645173|645174|645175|645176|645177|645178|645179|645180|645181|645182|645183|645184|645185|645186|645187|645189|645190|645191|645192|645193|645194|645195|645196|645197|645198|645199|645200|645201|645202|645203|645204|645205|645206|645207|645208|645209|645210|645211|645212|645213|645214|645215|645216|645217|645218|645219|645220|645221|649736|649737|649738|649739|649740|649741|649742|650817|650818|651853|651926|651937|651958|652060|652308|652347|652413|652466|652468|652492|652501|652553|652597|652682|652685|652687|652772|652777|652783|652868|652887|652890|652896|652905|652950|653014|653077|653079|653178|653193|653199|653202|653319|653323|654309|654539|679905|683523|683524|683525|684097|684098|684099|684100|684247|684248|684483|684484|684486|684487|684488|684490|684560|684583|684584|684587|684588|684589|684590|684636|684637|684638|684639|684640|684641|684642|684644|684646|684958|684959|685428|685429|685430|685431|686227|686228|686229|686272|686273|686274|686275|686276|687488|687492|687493|687551|687746|687747|687748|687749|688281|688282|688283|688285|688287|688288|688289|688290|688292|688496|688568|688570|688578|688581|688582|688584|688586|688588|688595|688683|688684|688685|688686|688687|688688|688689|688690|688691|688692|688693|688696|688699|688701|688702|688704|688705|688706|688707|688708|688709|688711|688712|688714|688715|688717|688718|688719|688720|689358|689360|689361|689362|689363|689365|689366|689723|689950|690080|690081|690118|690140|690155|690156|690157|690158|690160|690162|690164|691185|692667|692668|692713|692715|692983|693478|693481|693482|693484|693485|693486|693487|693489|693490|693491|693748|693749|693852|693861|693863|693977|693980|693981|693982|693985|693988|693991|693993|693994|693995|693996|693998|694000|694797|695438|695455|695456|695616|695660|695714|695715|695716|695717|695718|695719|695720|695893|702876|702877|702880|703922|714131|714906|723669|723670|726951|726955|733653|737251|740528|740529|743880|754035|754036|754767|754770|755164|755167|755566|755567|760111|760510|767394|767520|769797|769804|770390|771212|775439|775570|776169|776246|777296|777792|778148|780085|781495|784721|785448|785451|788218|790908|790924|791405|791406|791408|791610|797034|797318|797319|797465|801682|809446|809466|809469|809492|809494|809498|815408|816308|818677|818681|818686|819263|819295|819300|820137|820171|820172|820173|820174|820175|820176|820177|820620|820621|820622|820827|820917|820918|820919|820920|820921|820922|820923|820924|820925|820926|820927|820928|820929|820930|820931|820932|820933|820934|820935|820936|820937|820938|820939|820940|820942|820943|820944|820945|820946|820947|820948|820949|820950|820951|820952|820953|820954|820955|820956|820957|820958|821565|826851|826852|826853|826854|826855|826856|826857|826858|826859|826860|826861|827203|827204|827205|827206|827207|827208|827209|827210|827211|827212|827213|827214|827215|827216|827217|827218|827222|827228|827230|827235|827236|827237|827238|827239|827240|827241|827242|827243|827244|827245|827246|836088|836089|836090|836091|836092|836093|836094|836095|836096|836097|836098|836099|836100|836331|836332|836333|836334|836335|836336|836337|836338|836339|836340|836341|836342|836343|836344|836345|836346|838223|838224|838225|838226|838227|838228|838229|838230|838231|841372|841373|841374|841375|841376|841377|841378|841379|841380|841381|841382|841383|841384|841385|841386|841387|841388|841389|841390|841391|841392|841393|841394|841395|841396|841397|841398|841399|841400|841401|841402|841403|841404|841405|841406|841407|841408|841409|841410|841411|841412|841413|841414|841415|841416|841417|841418|841419|841420|841421|841422|841423|841424|841425|841426|841427|841428|841429|841430|841431|841432|841433|841434|841435|841436|841437|841438|841439|841440|841441|841442|841443|841444|841445|841446|841447|841448|841449|841450|841451|841452|841453|841454|841455|841456|841457|841458|841459|841460|841461|841462|841463|841464|841465|841466|841467|841468|841469|841470|841471|841472|841473|841474|841475|841476|841477|841478|841479|841480|841481|841482|841483|841484|841485|841486|841487|841488|841489|841490|841491|841492|841493|841494|841495|841496|841497|841498|841499|841500|841501|841502|841503|841504|841505|841506|841507|841508|841509|841510|841511|841512|841513|841514|841515|841516|841517|841518|842749|842750|842751|842752|842753|842754|842755|842756|842757|842758|842759|842760|842761|842762|842763|842764|842765|842766|842767|842768|842769|842770|842771|843805|843806|843807|843808|843809|843810|843811|843812|843813|843814|843815|843816|843817|843818|843819|843820|843821|843822|843823|843824|843825|843826|843827|843828|843829|843830|843831|843832|843833|843834|843835|843836|843837|843838|843839|843840|843841|843842|843843|843844|843845|843846|843847|843848|843849|843850|843851|843852|843853|843854|843855|843856|843857|843858|843859|843860|843861|844508|844509|844510|844511|844512|844513|844514|844515|844516|844517|844518|844519|844520|844521|844522|844523|844524|844525|844526|844527|844528|844529|844532|844533|844534|844535|844536|844537|844538|844539|844540|844541|844542|844543|844544|844545|844546|844547|844548|844549|844550|844551|844552|844553|844554|844555|844556|844557|844558|844559|844560|844561|844562|844563|844564|844565|844566|844567|844568|844569|844570|844571|844572|844573|844574|844575|844576|844577|844578|844579|844581|844583|844584|844585|844586|844587|844588|844589|844590|844591|844592|844593|844594|844595|844597|844598|844599|844600|844601|844602|844603|849696|849697|849698|849699|849700|849701|850891|850929|851339|851551|851553|851555|851633|851693|851736|851995|851997|851999|852137|852139|852141|852143|852145|852211|852214|852219|852660|852680|852681|852683|852687|852738|852739|852785|852834|852835|852837|852841|852843|852847|858410|858469|874235|875234|875244|875251|876213|876216|876223|876741|885246|887576|901987|918010|918093|922885|922886|922887|922888|922889|922966|922967|922970|922972|922973|922974|925570|925571|925572|925647|925648|925649|925650|925651|925652|926178|926179|926180|927032|927033|927034|927035|927036|927037|927038|927039|927040|927041|927042|927043|927044|927045|927046|927047|927048|927049|927050|927051|927052|927053|927054|927055|927056|927057|927058|927059|927060|927061|927062|927063|927064|927065|927066|927067|927068|927069|927070|927071|927072|927073|927074|927433|927434|927435|927436|927437|927438|927439|927440|927441|927442|927443|927444|927445|927793|927794|927795|927796|927797|927798|927799|927800|927801|927802|927803|927804|927805|927806|927807|927808|927809|927810|927811|927812|927813|927814|928011|928012|928013|928014|928015|928017|928018|928019|928020|928021|928022|928023|928024|928025|928026|928027|928028|928029|929582|929583|929584|929585|929586|931533|931534|931535|931652|931653|931654|931655|931656|931657|931661|931662|934751|934752|934753|934833|934834|934835|934836|934837|934838|934839|934840|935465|935466|935467|936600|936601|936602|936603|936604|936605|936606|936607|936608|936609|936610|936611|936612|936613|936614|936615|936616|936617|936618|936619|936620|936621|936622|936623|936624|936625|936626|936627|937086|937087|937088|937089|937090|937091|937092|937093|937094|937095|937096|937434|937435|937436|937437|937438|937439|937440|937441|937442|937443|937444|937445|937446|937447|937448|937449|937450|937451|937452|937665|937666|937667|937668|937669|937670|937671|937672|937673|937674|937675|937676|937677|937678|937679|937681|937682|937683|937684|937685|939458|939459|939460|939906|939919|939920|940147|940302|940332|940359|940378|940944|941060|941135|941154|941155|941156|943050|943051|943052|943053|943054|943055|943203|943204|943205|943206|943207|943208|943213|943214|943215|946603|946604|946605|946690|946691|946692|946693|946694|946695|946696|946697|946698|947388|947389|947390|947391|947392|948539|948540|948541|948542|948543|948544|948545|948546|948547|948548|948549|948550|948551|948552|948553|948554|948555|948556|948557|948558|948559|948560|948561|948562|948563|948564|948565|948566|948567|948568|948569|948570|948571|948572|949036|949037|949038|949039|949040|949041|949042|949043|949044|949045|949046|949391|949392|949393|949394|949395|949396|949397|949398|949399|949642|949643|949644|949645|949646|949647|949648|949650|949651|949652|949653|949654|949655|949656|949657|949658|949659|949660|949661|949662|951630|951631|953277|953278|953279|953280|953281|953282|953283|955813|955814|955815|955816|955817|955907|955908|955909|955910|955911|955912|956449|956450|956451|956452|957204|957205|957206|957207|957208|957209|957210|957211|957212|957213|957214|957215|957216|957217|957218|957219|957220|957221|957525|957526|957527|957528|957754|957755|957756|957757|957758|957759|957760|957761|957926|957927|957928|957929|957930|957931|957932|957933|957934|957935|957936|957937|957938|957939|957940|957941|957942|957943|957944|957945|957946|957947|957948|957949|957950|957951|957952|957953|957954|957955|957956|957957|957958|957959|957960|957961|957962|957963|957964|957965|957966|957967|957968|957969|957970|959175|959662|960089|960090|960091|960092|960093|960123|960186|960187|960188|960493|960494|960685|960707|960828|960860|960861|960862|960863|960864|960865|960866|960867|960868|970358", + "upstreamId": "18479|18482|18483|19777|21379|21380|21382|21751|21753|21754|21756|21757|21758|24388|27079|27082|27083|27084|27085|27086|27088|27090|34164|34168|46584|49425|65865|65898|66133|67040|67400|99372|99373|132280|132984|132985|132986|132987|132988|132989|132991|132992|132993|132994|132995|132996|132997|132998|132999|133000|133001|133004|133005|133007|133008|135439|136450|136518|137975|137976|137977|137978|137979|137980|137981|137982|137983|137986|137987|137988|137989|137990|137991|137992|137993|137995|137998|138000|138001|138002|138003|138004|138006|138007|138008|138009|138010|138014|138016|138017|138019|138020|138021|138022|138023|138024|138025|138026|138028|138029|138030|138031|138032|138033|138035|138036|138037|138038|138039|138040|138043|138044|138049|138050|138051|138052|138053|138054|138055|138057|138058|138059|138060|138063|138066|138067|138068|138087|138088|138090|138093|138094|138095|138096|138097|138099|138100|138101|138104|138105|138106|138108|138109|139506|139869|140978|140979|140980|140981|140983|140984|140987|140988|140989|140990|142457|152470|177703|180327|180329|180331|180332|180333|180336|180337|180338|180343|180344|180345|180346|180347|180349|180350|180352|180353|180354|180355|180357|180358|180359|180363|180571|180642|180937|185267|186096|186097|186225|186226|186234|186235|186236|186237|186792|186793|190171|194336|194866|195603|205183|205208|205210|205212|207011|207731|208096|208097|208098|208223|208224|208254|208255|208256|208257|208406|212271|212670|212671|212673|212674|212676|212677|212678|212679|212680|212681|212682|212683|212684|212685|212686|212687|212689|212690|212925|213140|213141|213145|213187|213188|213189|213190|213191|213230|213231|213232|215407|215479|221315|221316|221317|221319|221802|221829|221830|221831|221832|221833|221834|221835|221836|221837|221838|221839|221840|221841|221842|221843|221844|221846|221847|221848|221849|221850|221851|221852|221853|221854|221855|221856|221857|221858|221860|221861|221862|221863|222325|222433|222434|222435|222436|222486|222541|222542|222543|222544|226959|231721|231723|231724|231725|231728|231730|231731|231732|231737|231738|231881|236954|236960|237216|238962|238963|238964|238965|238966|238967|238969|239031|239032|239033|239034|239035|239036|239037|239038|239039|239040|239041|239042|240435|240614|240615|240616|240617|240618|240619|240620|240621|240627|240629|240630|240632|240633|240634|240635|240636|240637|240638|240639|240640|240641|240642|240643|241077|241078|241079|241080|241081|241083|241084|241831|241832|241833|241834|241835|241836|241837|241838|241839|241840|241841|241842|241843|242119|242120|242121|242122|242123|242124|242125|242126|242127|242129|242130|242132|242133|242134|242136|242137|242138|242139|242140|242141|242142|242400|242401|242402|242403|242404|242405|242406|242407|242408|242409|242410|242411|242413|242414|242415|242416|242417|242418|242419|242420|242421|242422|242424|242425|242426|242427|242428|242430|242431|242432|242433|242434|242435|242436|242532|242533|242534|242535|242536|242537|242540|242541|242542|242543|242544|242545|242546|242547|242548|242549|242550|242551|242552|242553|242554|242555|242556|242557|242558|242559|242560|242561|245217|245218|245219|245220|245221|245222|245223|245224|247056|248486|250750|250831|250832|250836|250838|250841|250842|253535|253536|253596|253598|254127|254941|254943|254946|254947|254952|254953|255378|255379|255384|255385|255386|255389|255708|255709|255711|255712|255713|255714|255715|255716|255718|255719|255722|255724|255725|255727|255729|255730|255731|255732|255733|255734|255735|255736|255965|255969|255971|255972|255979|255981|255982|255986|255987|255988|255989|255999|256001|256004|256005|257770|259408|259529|259928|260102|260143|265612|286872|287798|287808|287823|287837|287840|288498|288503|288508|290414|291422|291427|291439|291451|291535|291537|291542|291580|299934|299936|308258|308262|308265|308927|308945|312648|313683|313782|318555|318558|318560|318568|319067|319075|319961|319977|320047|320054|320542|320543|320546|320553|320566|320570|320576|320580|320594|320604|320607|323474|323475|323490|323491|323502|323507|325276|325281|325283|325299|325312|325322|326152|326839|326841|326849|326852|326863|326865|327062|327064|327095|327916|327918|329235|329239|329240|329250|329347|329349|329354|329355|329357|329361|329374|333181|333190|333199|333200|333206|333214|333215|333222|333231|333235|333236|333243|333247|334213|334921|334928|334937|334940|334947|334950|335896|335912|335923|335927|335945|335946|335949|335953|336727|336731|336739|336743|336747|336751|336752|336758|337894|337897|337911|337938|338987|338995|339313|339477|339487|339491|339517|340006|340007|340009|340010|340022|340024|340026|340031|340032|341380|341385|341389|341391|341399|341407|341408|341409|341415|341416|341418|341420|341422|341428|341435|341436|341437|341442|342896|342899|342909|342910|342917|342920|342923|342931|342949|342951|342952|342966|342969|342970|342973|342977|342986|342999|343002|343003|344590|344598|344608|344612|344613|344621|344628|344629|344632|345189|345274|345280|345282|346666|346669|346670|346680|346681|348562|352102|352104|352782|353858|357819|357835|358390|358392|360157|363821|363849|363852|370481|370522|370542|371011|371018|371022|371026|371373|371376|371384|371407|373207|393030|393035|393038|393050|393059|393060|393070|393135|393146|393150|393152|393156|393157|393158|393159|393160|393163|393166|393167|393226|393231|393334|393337|393345|393419|393421|393423|393424|393432|393516|396874|396876|396878|396899|396904|396906|396909|396914|397100|397106|397111|397112|397120|397128|397131|397143|397146|397149|397153|397293|397297|397301|397314|397317|397326|397333|397463|397476|397481|397485|397749|398126|398127|398131|398140|398457|398543|398557|398562|398564|398567|398569|399639|399643|399799|399800|399806|399808|399812|400039|400203|400205|400207|400211|400365|400369|400370|400373|400374|400376|400380|400381|400382|400384|400387|400393|400394|400398|400399|400401|400409|400411|400414|400419|400511|400512|400513|400516|400527|400530|400531|400539|400540|400659|400662|400865|400870|400876|400879|400883|400890|400895|401132|401138|401144|401145|401151|401159|401162|401163|401164|401167|401169|401170|401173|401175|401176|401177|401180|401183|401186|401189|401194|401197|401199|401203|401208|401209|401215|401217|401218|401220|401223|401226|401227|401228|401229|401231|401232|401233|401235|401236|401237|401240|401333|401372|401373|401375|401378|401380|401382|401384|401385|401395|401396|401398|401399|401400|401405|401408|401410|401411|401412|401416|401420|401421|401422|401425|401429|401430|401436|401439|401442|401450|401451|401456|401458|401625|401630|401632|401636|401639|401647|401649|401652|401654|401658|401660|401662|401669|401670|401676|401677|401679|401681|401682|401684|401690|401891|401894|401896|401897|401898|401899|401905|401909|401911|401913|401916|401917|401918|401920|401922|401924|401927|401934|401938|401939|401941|401942|401943|402142|402144|402156|402160|402169|402171|402174|402185|402186|402195|402200|402201|402204|402206|402213|404139|404144|404149|404501|407728|407733|407736|407738|407739|407740|407744|407749|407751|407753|407754|407757|407759|407760|407765|407768|409623|409804|409805|422132|422133|428080|428110|429016|429237|429559|429560|429561|429722|429727|429728|429729|429789|429792|429793|429794|429796|429798|429799|429800|429801|429806|429894|429896|429899|429906|429907|429908|433544|433550|437967|438666|438795|444537|444540|444543|444544|445230|445447|445448|445576|445578|445683|445684|451534|451564|451566|451577|451593|451711|451721|451725|451729|451731|451737|451817|451827|451839|451848|451859|451899|451900|451909|452027|452037|452041|452051|452068|452070|458132|458736|459156|459316|459317|459325|459331|459334|459335|459340|459345|459346|459348|459352|459456|459458|459460|459463|459465|459474|459551|459554|459555|459619|459712|459714|459720|459725|459732|459734|459735|459737|460019|460038|460039|460042|460043|460224|460225|460236|460241|460242|460244|460991|460994|461096|461108|461117|461119|463210|463214|463217|463219|463224|463229|463230|463734|463736|463740|463743|463746|464041|464043|464044|464051|464054|464059|464061|464063|464071|464073|464075|464084|464204|464207|464213|464218|464222|464224|464226|464228|464229|464540|464541|464542|464547|464549|464555|464558|464561|464563|464849|465205|465208|465213|465214|465217|465223|465228|465326|465333|465335|465338|465343|465347|465349|465432|465433|465442|465447|465451|465452|465457|465458|465460|465462|465468|465470|465475|465542|465557|465670|465675|465677|465680|465681|465686|465692|465706|465710|465716|465722|465727|466109|466112|466113|466116|466123|466124|466128|466129|466132|466137|466139|466142|466144|466149|466150|466153|466155|466156|466168|466170|466172|466177|466380|466381|466387|466391|466406|466409|466419|466421|466423|466424|466427|466428|466429|466430|466433|466436|466440|466441|466442|466444|466445|466455|466459|466462|466642|466647|466652|466653|466659|466662|466666|466668|466673|466675|466678|466680|466689|466694|466696|466698|466699|466851|466852|466856|466870|466871|466872|466877|466897|466899|466900|466901|466902|466905|466907|466912|466913|466914|466918|466919|466920|466921|466924|466925|466926|466928|466929|466930|466934|466935|466939|466942|466944|466948|466950|466953|466956|466965|466987|466990|467162|467168|467176|467179|467188|467190|467194|467197|467201|467206|467214|467218|467219|470516|470518|470523|471324|471328|471332|471760|471761|471767|471768|471770|471774|471777|471781|472071|472072|474922|474957|474964|475123|475130|475133|481382|489977|502698|502701|502993|503049|503210|512953|513303|518505|518564|518565|518579|518581|518630|518635|518660|518661|518703|518710|518712|518721|518830|518834|518841|518844|518862|518900|518905|524563|524565|524567|524570|524702|524705|524716|524938|524941|524943|524946|524947|524952|524956|525061|525063|525075|525110|525114|525115|525247|526202|526212|526540|526544|528130|528131|528133|528136|528139|528158|528166|528168|528173|528174|528505|528507|528517|528518|528637|528638|529062|529065|529070|529077|529079|529081|529083|529087|529119|529120|529132|529133|529135|529137|529138|529251|529286|529450|529451|529457|529458|529564|529576|529667|529670|529672|529674|529678|529936|529942|529947|529949|529952|529954|529957|529958|529963|529964|529968|529976|529977|530037|530042|530045|530046|530050|530056|530061|530072|530076|530082|530084|530090|530092|530096|530264|530266|530268|530275|530282|530285|530287|530293|530302|530401|530405|530409|530414|530419|530421|530425|530426|530434|530437|530444|530474|530478|530492|530494|530503|530506|530509|530510|530515|530516|530517|530521|530536|530538|530542|530547|530549|530550|530553|530572|530574|530576|530711|530715|530721|530723|530724|530728|530733|530735|530741|530744|530748|530754|530757|530758|530760|530930|530933|530935|530949|534559|534564|534593|534595|534596|534607|534611|534637|534639|535058|536353|536448|536781|537227|545632|547836|547852|547859|547862|547863|547871|547886|547892|547898|547904|547906|547924|547933|547941|547947|547951|547957|547958|547975|547983|547994|548008|548200|548201|548204|548210|548221|548260|548263|548618|548625|548634|548645|548648|548654|548657|548660|548680|548710|548728|548730|548731|548733|548743|552189|558245|558247|558249|558622|558716|558718|558722|559235|559237|559239|559247|559249|560871|560885|561042|561047|561059|561062|561064|561853|561856|561857|561859|562157|562199|562202|562212|562216|562225|562606|563221|563223|563228|563230|563232|563333|563334|563335|563337|563340|563341|563965|563967|563974|564174|564177|564179|564550|565890|566001|566002|566007|566413|566416|566418|566425|566432|566437|566442|567148|567150|567155|567294|567297|567316|567321|567324|567326|568033|568039|568042|568047|568048|568049|568058|568069|568111|568114|568115|568119|568120|568127|568130|568132|568134|568468|568469|568471|568474|568475|568481|568486|568487|568499|568502|568504|568508|568509|568512|568515|568872|568876|568877|568880|568881|568886|569011|569012|569029|569163|569172|569174|569187|569195|569196|569204|569217|569415|569431|569626|569628|569632|569638|569822|570145|570154|570162|570177|570179|570186|570192|570276|570277|570279|570280|570281|570283|570284|570290|570468|570624|570626|570628|570630|570631|570633|570645|570649|570651|570655|570658|570665|570672|570675|570676|572607|572786|572787|573443|573547|573548|573550|573552|573558|573562|573565|573612|573662|573665|574046|574049|574050|574051|574052|574055|574056|574214|574215|574216|574217|574222|574223|574224|574226|574325|574327|575340|575341|575342|575343|575797|576165|612134|612190|613056|614393|620531|620940|620941|620942|620943|623342|630399|630400|630401|630402|630403|630404|630405|630671|630672|630673|630674|630675|630676|630677|630678|630679|630680|630681|630694|630695|638222|638223|638224|638225|638226|638227|638228|638229|638230|638231|638232|638233|638234|638430|638431|638432|638433|638434|638435|638436|638437|638438|638439|638440|638441|638442|638443|638444|638445|638446|639892|639893|639894|639895|639896|639897|639898|642359|642360|642361|642362|642363|642364|642365|642366|642367|642368|642369|642370|642371|642372|642373|642374|642375|642376|642377|642378|642379|642380|642381|642382|642383|642384|642385|642386|642387|642388|642389|642390|642391|642392|642393|642394|642395|642396|642397|642398|642399|642400|642401|642402|642403|642404|642405|642406|642407|642408|642409|642410|642411|642412|642413|642414|642415|642416|642417|642418|642419|642420|642421|642422|642423|642424|642425|642426|642427|642428|642429|642430|642431|642432|642433|642434|642435|642436|642437|642438|642439|642440|642441|642442|642443|642444|642445|642446|642447|642448|642449|642450|642451|642452|642453|642454|642455|642456|643568|643569|643570|643571|643572|643573|643574|643575|643576|643577|643578|643579|643580|643581|643582|643583|643584|643585|643586|643587|643588|643589|643590|643591|643592|643593|643594|643595|643596|644641|644642|644643|644644|644645|644646|644647|644648|644649|644650|644651|644652|644653|644654|644655|644656|644657|644658|644659|644660|644661|644662|644663|644664|644665|644666|644667|644668|644669|644670|644671|644672|644673|644674|644675|645153|645154|645155|645156|645157|645158|645159|645161|645162|645163|645164|645165|645166|645167|645168|645169|645170|645171|645172|645173|645174|645175|645176|645177|645178|645179|645180|645181|645182|645183|645184|645185|645186|645187|645189|645190|645191|645192|645193|645194|645195|645196|645197|645198|645199|645200|645201|645202|645203|645204|645205|645206|645207|645208|645209|645210|645211|645212|645213|645214|645215|645216|645217|645218|645219|645220|645221|649736|649737|649738|649739|649740|649741|649742|650817|650818|651853|651926|651937|651958|652060|652308|652347|652413|652466|652468|652492|652501|652553|652597|652682|652685|652687|652772|652777|652783|652868|652887|652890|652896|652905|652950|653014|653077|653079|653178|653193|653199|653202|653319|653323|654309|654539|679905|683523|683524|683525|684097|684098|684099|684100|684247|684248|684483|684484|684486|684487|684488|684490|684560|684583|684584|684587|684588|684589|684590|684636|684637|684638|684639|684640|684641|684642|684644|684646|684958|684959|685428|685429|685430|685431|686227|686228|686229|686272|686273|686274|686275|686276|687488|687492|687493|687551|687746|687747|687748|687749|688281|688282|688283|688285|688287|688288|688289|688290|688292|688496|688568|688570|688578|688581|688582|688584|688586|688588|688595|688683|688684|688685|688686|688687|688688|688689|688690|688691|688692|688693|688696|688699|688701|688702|688704|688705|688706|688707|688708|688709|688711|688712|688714|688715|688717|688718|688719|688720|689358|689360|689361|689362|689363|689365|689366|689723|689950|690080|690081|690118|690140|690155|690156|690157|690158|690160|690162|690164|691185|692667|692668|692713|692715|692983|693478|693481|693482|693484|693485|693486|693487|693489|693490|693491|693748|693749|693852|693861|693863|693977|693980|693981|693982|693985|693988|693991|693993|693994|693995|693996|693998|694000|694797|695438|695455|695456|695616|695660|695714|695715|695716|695717|695718|695719|695720|695893|702876|702877|702880|703922|714131|714906|723669|723670|726951|726955|733653|737251|740528|740529|743880|754035|754036|754767|754770|755164|755167|755566|755567|760111|760510|767394|767520|769797|769804|770390|771212|775439|775570|776169|776246|777296|777792|778148|780085|781495|784721|785448|785451|788218|790908|790924|791405|791406|791408|791610|797034|797318|797319|797465|801682|809446|809466|809469|809492|809494|809498|815408|816308|818677|818681|818686|819263|819295|819300|820137|820171|820172|820173|820174|820175|820176|820177|820620|820621|820622|820827|820917|820918|820919|820920|820921|820922|820923|820924|820925|820926|820927|820928|820929|820930|820931|820932|820933|820934|820935|820936|820937|820938|820939|820940|820942|820943|820944|820945|820946|820947|820948|820949|820950|820951|820952|820953|820954|820955|820956|820957|820958|821565|826851|826852|826853|826854|826855|826856|826857|826858|826859|826860|826861|827203|827204|827205|827206|827207|827208|827209|827210|827211|827212|827213|827214|827215|827216|827217|827218|827222|827228|827230|827235|827236|827237|827238|827239|827240|827241|827242|827243|827244|827245|827246|836088|836089|836090|836091|836092|836093|836094|836095|836096|836097|836098|836099|836100|836331|836332|836333|836334|836335|836336|836337|836338|836339|836340|836341|836342|836343|836344|836345|836346|838223|838224|838225|838226|838227|838228|838229|838230|838231|841372|841373|841374|841375|841376|841377|841378|841379|841380|841381|841382|841383|841384|841385|841386|841387|841388|841389|841390|841391|841392|841393|841394|841395|841396|841397|841398|841399|841400|841401|841402|841403|841404|841405|841406|841407|841408|841409|841410|841411|841412|841413|841414|841415|841416|841417|841418|841419|841420|841421|841422|841423|841424|841425|841426|841427|841428|841429|841430|841431|841432|841433|841434|841435|841436|841437|841438|841439|841440|841441|841442|841443|841444|841445|841446|841447|841448|841449|841450|841451|841452|841453|841454|841455|841456|841457|841458|841459|841460|841461|841462|841463|841464|841465|841466|841467|841468|841469|841470|841471|841472|841473|841474|841475|841476|841477|841478|841479|841480|841481|841482|841483|841484|841485|841486|841487|841488|841489|841490|841491|841492|841493|841494|841495|841496|841497|841498|841499|841500|841501|841502|841503|841504|841505|841506|841507|841508|841509|841510|841511|841512|841513|841514|841515|841516|841517|841518|842749|842750|842751|842752|842753|842754|842755|842756|842757|842758|842759|842760|842761|842762|842763|842764|842765|842766|842767|842768|842769|842770|842771|843805|843806|843807|843808|843809|843810|843811|843812|843813|843814|843815|843816|843817|843818|843819|843820|843821|843822|843823|843824|843825|843826|843827|843828|843829|843830|843831|843832|843833|843834|843835|843836|843837|843838|843839|843840|843841|843842|843843|843844|843845|843846|843847|843848|843849|843850|843851|843852|843853|843854|843855|843856|843857|843858|843859|843860|843861|844508|844509|844510|844511|844512|844513|844514|844515|844516|844517|844518|844519|844520|844521|844522|844523|844524|844525|844526|844527|844528|844529|844532|844533|844534|844535|844536|844537|844538|844539|844540|844541|844542|844543|844544|844545|844546|844547|844548|844549|844550|844551|844552|844553|844554|844555|844556|844557|844558|844559|844560|844561|844562|844563|844564|844565|844566|844567|844568|844569|844570|844571|844572|844573|844574|844575|844576|844577|844578|844579|844581|844583|844584|844585|844586|844587|844588|844589|844590|844591|844592|844593|844594|844595|844597|844598|844599|844600|844601|844602|844603|849696|849697|849698|849699|849700|849701|850891|850929|851339|851551|851553|851555|851633|851693|851736|851995|851997|851999|852137|852139|852141|852143|852145|852211|852214|852219|852660|852680|852681|852683|852687|852738|852739|852785|852834|852835|852837|852841|852843|852847|858410|858469|874235|875234|875244|875251|876213|876216|876223|876741|885246|887576|901987|918010|918093|922885|922886|922887|922888|922889|922966|922967|922970|922972|922973|922974|925570|925571|925572|925647|925648|925649|925650|925651|925652|926178|926179|926180|927032|927033|927034|927035|927036|927037|927038|927039|927040|927041|927042|927043|927044|927045|927046|927047|927048|927049|927050|927051|927052|927053|927054|927055|927056|927057|927058|927059|927060|927061|927062|927063|927064|927065|927066|927067|927068|927069|927070|927071|927072|927073|927074|927433|927434|927435|927436|927437|927438|927439|927440|927441|927442|927443|927444|927445|927793|927794|927795|927796|927797|927798|927799|927800|927801|927802|927803|927804|927805|927806|927807|927808|927809|927810|927811|927812|927813|927814|928011|928012|928013|928014|928015|928017|928018|928019|928020|928021|928022|928023|928024|928025|928026|928027|928028|928029|929582|929583|929584|929585|929586|931533|931534|931535|931652|931653|931654|931655|931656|931657|931661|931662|934751|934752|934753|934833|934834|934835|934836|934837|934838|934839|934840|935465|935466|935467|936600|936601|936602|936603|936604|936605|936606|936607|936608|936609|936610|936611|936612|936613|936614|936615|936616|936617|936618|936619|936620|936621|936622|936623|936624|936625|936626|936627|937086|937087|937088|937089|937090|937091|937092|937093|937094|937095|937096|937434|937435|937436|937437|937438|937439|937440|937441|937442|937443|937444|937445|937446|937447|937448|937449|937450|937451|937452|937665|937666|937667|937668|937669|937670|937671|937672|937673|937674|937675|937676|937677|937678|937679|937681|937682|937683|937684|937685|939458|939459|939460|939906|939919|939920|940147|940302|940332|940359|940378|940944|941060|941135|941154|941155|941156|943050|943051|943052|943053|943054|943055|943203|943204|943205|943206|943207|943208|943213|943214|943215|946603|946604|946605|946690|946691|946692|946693|946694|946695|946696|946697|946698|947388|947389|947390|947391|947392|948539|948540|948541|948542|948543|948544|948545|948546|948547|948548|948549|948550|948551|948552|948553|948554|948555|948556|948557|948558|948559|948560|948561|948562|948563|948564|948565|948566|948567|948568|948569|948570|948571|948572|949036|949037|949038|949039|949040|949041|949042|949043|949044|949045|949046|949391|949392|949393|949394|949395|949396|949397|949398|949399|949642|949643|949644|949645|949646|949647|949648|949650|949651|949652|949653|949654|949655|949656|949657|949658|949659|949660|949661|949662|951630|951631|953277|953278|953279|953280|953281|953282|953283|955813|955814|955815|955816|955817|955907|955908|955909|955910|955911|955912|956449|956450|956451|956452|957204|957205|957206|957207|957208|957209|957210|957211|957212|957213|957214|957215|957216|957217|957218|957219|957220|957221|957525|957526|957527|957528|957754|957755|957756|957757|957758|957759|957760|957761|957926|957927|957928|957929|957930|957931|957932|957933|957934|957935|957936|957937|957938|957939|957940|957941|957942|957943|957944|957945|957946|957947|957948|957949|957950|957951|957952|957953|957954|957955|957956|957957|957958|957959|957960|957961|957962|957963|957964|957965|957966|957967|957968|957969|957970|959175|959662|960089|960090|960091|960092|960093|960123|960186|960187|960188|960493|960494|960685|960707|960828|960860|960861|960862|960863|960864|960865|960866|960867|960868|970358", "text": "Fanconi anemia" }, { - "baseId": "18488|18489|18490|18491|18492|142515|166367|166368|166369|262052|266582|335812|335816|335818|345515|345516|345522|345523|345525|350125|350129|350131|350132|351175|351176|351178|626012|684889|791992|805115|806425|806426|886285|886286|886287|886288|886289|886290|886291|886292|886293|886294|886295|886296|886297|886298", + "upstreamId": "18488|18489|18490|18491|18492|142515|166367|166368|166369|262052|266582|335812|335816|335818|345515|345516|345522|345523|345525|350125|350129|350131|350132|351175|351176|351178|626012|684889|791992|805115|806425|806426|886285|886286|886287|886288|886289|886290|886291|886292|886293|886294|886295|886296|886297|886298", "text": "Kallmann syndrome 3" }, { - "baseId": "18496|18497|131958|135815|181436|186187|213100|213101|213102|241738|241739|319416|319420|319422|319423|319428|319429|319432|319440|319448|319449|319453|327971|327972|327994|328001|328002|328010|328011|334295|334302|334303|334304|334305|334312|334313|334314|334325|334326|334330|334339|334343|336018|336019|336029|336031|336032|336038|336039|336040|336041|336050|336057|373533|399424|400175|409023|462907|463264|463266|463616|463846|463848|504262|505178|527718|527721|528075|567565|620470|641925|684417|840877|871134|871135|871136|871137|871138|871139|871140|871141|871142|871143|871144|871145|871146|871147|871148|871149|871150|871151|871152|871153|871154|871155|871156|871157|871158|871159|871160|871161|871162|871163|871164|871165|872328", + "upstreamId": "18496|18497|131958|135815|181436|186187|213100|213101|213102|241738|241739|319416|319420|319422|319423|319428|319429|319432|319440|319448|319449|319453|327971|327972|327994|328001|328002|328010|328011|334295|334302|334303|334304|334305|334312|334313|334314|334325|334326|334330|334339|334343|336018|336019|336029|336031|336032|336038|336039|336040|336041|336050|336057|373533|399424|400175|409023|462907|463264|463266|463616|463846|463848|504262|505178|527718|527721|528075|567565|620470|641925|684417|840877|871134|871135|871136|871137|871138|871139|871140|871141|871142|871143|871144|871145|871146|871147|871148|871149|871150|871151|871152|871153|871154|871155|871156|871157|871158|871159|871160|871161|871162|871163|871164|871165|872328", "text": "Troyer syndrome" }, { - "baseId": "18498|18499|18500|18501|18502|18503|18504|18505|18505|18506|18506|18507|18507|18509|18511|18513|18513|18515|18519|18520|18521|18522|48596|98664|98665|98665|125923|213987|215434|254136|264422|264422|264534|268523|273854|274086|274286|274286|313856|313863|313867|313877|313885|313886|313886|313889|320069|320084|320102|320108|320134|320135|320166|320197|326246|326248|326255|326256|326258|326272|326276|327203|327206|327207|327222|327224|327242|327259|327276|327276|359933|359933|359935|360004|360006|360034|363631|363633|363634|363635|363636|363637|371403|408334|424510|424511|424512|424513|424514|424515|424516|424517|424518|424519|424520|424521|424521|424522|424523|424524|424525|424525|424526|424527|424528|424529|424530|424531|424532|424533|424534|424535|424536|424537|424538|424539|424540|424541|424542|424543|424544|424545|424545|424546|424547|424548|424548|424549|424550|432304|432305|461049|461052|461052|461054|461056|461519|461520|461523|461844|461848|485940|485941|485942|485943|485943|485944|485945|485946|511911|525668|525674|525994|526296|526626|537152|550137|550336|550337|550338|550339|550340|550341|550342|550343|564093|565700|567201|567201|567202|567205|567205|571142|609013|624856|639953|639953|639954|639955|639955|639956|639957|652056|652159|652188|679779|752647|787757|788978|788979|788980|788981|788982|788983|788984|788985|788986|788987|788988|788989|788990|788991|788992|788993|788994|788995|788996|788997|788998|788999|789000|789001|789002|789003|789004|789005|789006|789007|789008|789009|789010|789011|789012|789013|789014|789015|789017|789018|789018|789019|789020|789021|789022|789023|789024|789025|789026|789027|789028|789030|789031|789032|789033|789034|789035|789036|789037|789038|789039|789040|789040|789041|789042|789043|789044|789045|789046|789047|789048|789049|789050|789051|789052|789053|789054|789055|789056|789057|789058|789059|789060|789061|789062|789063|789064|789064|789065|789066|789067|789068|789069|789070|789071|789072|789073|789074|789075|789076|789077|789078|789079|789080|789081|791127|791128|822053|838291|838292|838293|838294|838295|838296|838297|838298|852651|867828|867836|867843|867850|867856|926195|935491|935492|947410|947411|956463|956464|961905|963159", + "upstreamId": "18498|18499|18500|18501|18502|18503|18504|18505|18505|18506|18506|18507|18507|18509|18511|18513|18513|18515|18519|18520|18521|18522|48596|98664|98665|98665|125923|213987|215434|254136|264422|264422|264534|268523|273854|274086|274286|274286|313856|313863|313867|313877|313885|313886|313886|313889|320069|320084|320102|320108|320134|320135|320166|320197|326246|326248|326255|326256|326258|326272|326276|327203|327206|327207|327222|327224|327242|327259|327276|327276|359933|359933|359935|360004|360006|360034|363631|363633|363634|363635|363636|363637|371403|408334|424510|424511|424512|424513|424514|424515|424516|424517|424518|424519|424520|424521|424521|424522|424523|424524|424525|424525|424526|424527|424528|424529|424530|424531|424532|424533|424534|424535|424536|424537|424538|424539|424540|424541|424542|424543|424544|424545|424545|424546|424547|424548|424548|424549|424550|432304|432305|461049|461052|461052|461054|461056|461519|461520|461523|461844|461848|485940|485941|485942|485943|485943|485944|485945|485946|511911|525668|525674|525994|526296|526626|537152|550137|550336|550337|550338|550339|550340|550341|550342|550343|564093|565700|567201|567201|567202|567205|567205|571142|609013|624856|639953|639953|639954|639955|639955|639956|639957|652056|652159|652188|679779|752647|787757|788978|788979|788980|788981|788982|788983|788984|788985|788986|788987|788988|788989|788990|788991|788992|788993|788994|788995|788996|788997|788998|788999|789000|789001|789002|789003|789004|789005|789006|789007|789008|789009|789010|789011|789012|789013|789014|789015|789017|789018|789018|789019|789020|789021|789022|789023|789024|789025|789026|789027|789028|789030|789031|789032|789033|789034|789035|789036|789037|789038|789039|789040|789040|789041|789042|789043|789044|789045|789046|789047|789048|789049|789050|789051|789052|789053|789054|789055|789056|789057|789058|789059|789060|789061|789062|789063|789064|789064|789065|789066|789067|789068|789069|789070|789071|789072|789073|789074|789075|789076|789077|789078|789079|789080|789081|791127|791128|822053|838291|838292|838293|838294|838295|838296|838297|838298|852651|867828|867836|867843|867850|867856|926195|935491|935492|947410|947411|956463|956464|961905|963159", "text": "Aniridia 1" }, { - "baseId": "18501", + "upstreamId": "18501", "text": "Cataracts, congenital, with late-onset corneal dystrophy" }, { - "baseId": "18502", + "upstreamId": "18502", "text": "ANTERIOR SEGMENT DYSGENESIS 5, PETERS ANOMALY SUBTYPE" }, { - "baseId": "18505|18506|18507|18513|18515|22776|22778|22783|39180|39724|79358|79359|79361|98344|98664|98665|136471|177657|177659|177660|177661|177947|181382|193745|195045|223604|223605|223616|223620|223629|223633|223639|223653|227244|251311|264422|267620|268523|274086|274286|286180|286182|286193|286194|286198|286203|286219|286222|286225|286231|286234|286936|286937|286939|286940|286946|286948|286949|286950|286952|286953|286957|286958|286959|286962|286963|286972|286981|286985|289251|289253|289257|289263|289265|289268|289274|289275|289276|289286|289289|289290|289291|289292|289293|289624|289628|289631|289633|289634|289635|289639|289655|289656|289660|289671|289672|292026|292032|292033|293465|296770|296771|296774|296776|296778|296779|296782|296783|296786|313870|313886|320062|320088|320089|320100|320112|320165|320174|320199|327204|327217|327218|327272|327276|359933|360034|371403|404760|424521|424525|424545|424548|461049|461052|461054|461056|461519|461520|461523|461844|461848|485943|492426|525668|525674|525994|526296|526626|550314|564093|565700|567201|567202|567205|571142|620087|639953|639954|639955|639956|639957|652056|652159|652188|691154|691155|691156|752647|781326|787757|789018|789040|789064|790957|822053|838291|838292|838293|838294|838295|838296|838297|838298|852651|884813|884814|884815|884816|884817|884818|884819|884820|884821|884822|884823|884824|884825|884826|884827|884828|884829|884830|884831|884832|884833|884834|884835|884836|884837|884838|884839|884840|884841|884842|884843|884844|884845|884846|884847|884848|884849|884850|884851|884852|884853|884854|884855|884856|884857|884858|884859|884860|884861|884862|884863|884864|889930|889931|889932|889933|889934|889935|889936|889937|889938|889939|889940|889941|889942|889943|889944|889945|889946|889947|889948|889949|889950|889951|889952|889953|889954|889955|889956|889957|889958|889959|889960|889961|889962|889963|889964|889965|889966|889967|889968|889969|889970|891736|891737|926195|935491|935492|947410|947411|956463|956464|976012|976013", + "upstreamId": "18505|18506|18507|18513|18515|22776|22778|22783|39180|39724|79358|79359|79361|98344|98664|98665|136471|177657|177659|177660|177661|177947|181382|193745|195045|223604|223605|223616|223620|223629|223633|223639|223653|227244|251311|264422|267620|268523|274086|274286|286180|286182|286193|286194|286198|286203|286219|286222|286225|286231|286234|286936|286937|286939|286940|286946|286948|286949|286950|286952|286953|286957|286958|286959|286962|286963|286972|286981|286985|289251|289253|289257|289263|289265|289268|289274|289275|289276|289286|289289|289290|289291|289292|289293|289624|289628|289631|289633|289634|289635|289639|289655|289656|289660|289671|289672|292026|292032|292033|293465|296770|296771|296774|296776|296778|296779|296782|296783|296786|313870|313886|320062|320088|320089|320100|320112|320165|320174|320199|327204|327217|327218|327272|327276|359933|360034|371403|404760|424521|424525|424545|424548|461049|461052|461054|461056|461519|461520|461523|461844|461848|485943|492426|525668|525674|525994|526296|526626|550314|564093|565700|567201|567202|567205|571142|620087|639953|639954|639955|639956|639957|652056|652159|652188|691154|691155|691156|752647|781326|787757|789018|789040|789064|790957|822053|838291|838292|838293|838294|838295|838296|838297|838298|852651|884813|884814|884815|884816|884817|884818|884819|884820|884821|884822|884823|884824|884825|884826|884827|884828|884829|884830|884831|884832|884833|884834|884835|884836|884837|884838|884839|884840|884841|884842|884843|884844|884845|884846|884847|884848|884849|884850|884851|884852|884853|884854|884855|884856|884857|884858|884859|884860|884861|884862|884863|884864|889930|889931|889932|889933|889934|889935|889936|889937|889938|889939|889940|889941|889942|889943|889944|889945|889946|889947|889948|889949|889950|889951|889952|889953|889954|889955|889956|889957|889958|889959|889960|889961|889962|889963|889964|889965|889966|889967|889968|889969|889970|891736|891737|926195|935491|935492|947410|947411|956463|956464|976012|976013", "text": "Irido-corneo-trabecular dysgenesis" }, { - "baseId": "18508", + "upstreamId": "18508", "text": "Keratitis, autosomal dominant" }, { - "baseId": "18509|18518|215434|254136|274286|313856|313857|313862|313863|313867|313870|313872|313873|313874|313877|313885|313886|313888|313889|320061|320062|320069|320071|320080|320084|320087|320088|320089|320100|320102|320108|320111|320112|320114|320134|320135|320138|320142|320143|320145|320146|320147|320163|320165|320166|320167|320174|320197|320198|320199|326222|326244|326245|326246|326248|326251|326252|326255|326256|326257|326258|326270|326272|326273|326276|326277|327197|327203|327204|327206|327207|327214|327217|327218|327222|327223|327224|327241|327242|327259|327263|327272|327273|327276|327282|327283|612908|624856|789029|867820|867821|867822|867823|867824|867825|867826|867827|867828|867829|867830|867831|867832|867833|867834|867835|867836|867837|867838|867839|867840|867841|867842|867843|867844|867845|867846|867847|867848|867849|867850|867851|867852|867853|867854|867855|867856|867857|867858|867859", + "upstreamId": "18509|18518|215434|254136|274286|313856|313857|313862|313863|313867|313870|313872|313873|313874|313877|313885|313886|313888|313889|320061|320062|320069|320071|320080|320084|320087|320088|320089|320100|320102|320108|320111|320112|320114|320134|320135|320138|320142|320143|320145|320146|320147|320163|320165|320166|320167|320174|320197|320198|320199|326222|326244|326245|326246|326248|326251|326252|326255|326256|326257|326258|326270|326272|326273|326276|326277|327197|327203|327204|327206|327207|327214|327217|327218|327222|327223|327224|327241|327242|327259|327263|327272|327273|327276|327282|327283|612908|624856|789029|867820|867821|867822|867823|867824|867825|867826|867827|867828|867829|867830|867831|867832|867833|867834|867835|867836|867837|867838|867839|867840|867841|867842|867843|867844|867845|867846|867847|867848|867849|867850|867851|867852|867853|867854|867855|867856|867857|867858|867859", "text": "Foveal hypoplasia and presenile cataract syndrome" }, { - "baseId": "18510", + "upstreamId": "18510", "text": "Aniridia, atypical" }, { - "baseId": "18511", + "upstreamId": "18511", "text": "Foveal hypoplasia 1 with cataract" }, { - "baseId": "18512", + "upstreamId": "18512", "text": "ANTERIOR SEGMENT DYSGENESIS 5, MULTIPLE SUBTYPES" }, { - "baseId": "18512", + "upstreamId": "18512", "text": "Foveal hypoplasia 1 with or without anterior segment anomalies" }, { - "baseId": "18513|176785|225852|263283|263314|263410|360879|363377|513989|514048|514112|514188|514221", + "upstreamId": "18513|176785|225852|263283|263314|263410|360879|363377|513989|514048|514112|514188|514221", "text": "Hypertelorism" }, { - "baseId": "18514|18516|625874|919355", + "upstreamId": "18514|18516|625874|919355", "text": "Coloboma of optic disc" }, { - "baseId": "18515|512990", + "upstreamId": "18515|512990", "text": "Optic nerve hypoplasia, bilateral" }, { - "baseId": "18516|22778|22783|79359|79360|79362|79363|79368|125921|361130|424443|625776|682221|682222|682223", + "upstreamId": "18516|22778|22783|79359|79360|79362|79363|79368|125921|361130|424443|625776|682221|682222|682223", "text": "Congenital ocular coloboma" }, { - "baseId": "18517", + "upstreamId": "18517", "text": "Optic nerve aplasia, bilateral" }, { - "baseId": "18523|18524|18526|18526|18527|18532|18532|18533|18533|18536|18536|18539|18539|18545|24381|24385|26728|26729|26730|26733|50286|50286|89226|89228|100999|101000|138239|138240|138241|139192|139192|139193|139194|139194|139195|141193|178637|190617|190617|190618|190618|195334|195751|195751|195752|195752|215614|241126|241127|241127|241128|241130|241130|241131|241132|241133|241134|241134|241135|241135|241136|241136|241137|241137|241138|241138|241139|241139|241140|243717|243719|243740|243741|243743|243744|243745|243746|243747|243748|243749|243750|243751|243752|243753|243754|254138|254138|254142|254142|254144|254144|254145|254145|254146|254146|254147|257755|259981|274962|313892|313893|313904|313905|313914|313915|313918|313918|313927|313928|313928|313933|313934|313935|313940|320204|320213|320218|320219|320234|320257|320268|320269|320269|320284|320287|326278|326282|326284|326289|326291|326292|326294|326294|326297|326298|327285|327286|327296|327299|327300|327313|327320|327325|327329|327331|327340|327340|327344|327344|377785|389922|398164|398167|398169|398169|398176|398176|398177|398179|398189|398197|398229|398232|398234|398235|398240|398242|398250|398251|398583|398585|398586|398587|398591|398608|398608|398611|398612|398614|398623|398623|398626|398646|398652|398668|398668|398680|398687|398688|398691|398693|398699|404008|404071|404073|404077|404084|404093|404095|404099|404105|404107|404110|404118|404441|404442|404443|404444|404445|404447|404486|404487|404489|420986|432382|444795|444795|460431|461059|461061|461063|461070|461072|461077|461078|461080|461081|461083|461090|461238|461243|461244|461248|461254|461256|461260|461262|461264|461266|461269|461277|461281|461285|461285|461287|461288|461294|461527|461531|461532|461545|461547|461548|461559|461560|461562|461564|461570|461571|461853|461855|461867|461869|461875|461881|461883|461887|470476|470481|470486|470494|470495|470498|470499|470501|471260|471263|471264|471266|471271|471694|471697|471701|471704|471709|471714|471715|471717|471718|471720|471989|472054|472055|472056|472057|472058|472059|472060|472061|472062|472063|503257|503257|507729|508494|525996|526132|526135|526140|526148|526152|526155|526156|526160|526161|526164|526166|526170|526172|526174|526175|526181|526184|526186|526189|526192|526303|526305|526308|526319|526320|526324|526326|526330|526332|526335|526337|526341|526342|526353|526359|526359|526363|526364|526369|526371|526632|526635|526639|526643|526648|526650|526661|526662|534497|534500|534502|534506|534510|534514|534516|534518|534519|534524|534527|534529|534603|534603|534605|534619|534621|535017|535018|535019|535020|535021|535023|535024|535027|535029|535033|535035|564594|564595|564597|564598|564602|564603|564607|565708|565714|565716|565722|565726|567207|567213|567214|567219|567224|567228|567233|570569|570569|570575|570581|570588|570594|570598|570612|572199|572202|572203|572210|572220|572223|573436|573532|573537|573541|573542|573545|573546|573551|574276|574278|574280|574282|574284|574286|574288|574290|574291|575326|575327|575328|575329|575330|575331|575332|575841|575842|575843|575843|575844|575845|575846|575847|575848|575849|575850|575851|575852|580925|611457|639958|639959|639960|639961|639962|639963|639964|639965|639966|639967|639968|639969|639970|639971|639972|639973|639974|639975|639976|639977|639978|639979|639980|639981|639982|639983|639984|639985|639986|639987|639988|639989|639990|639991|639992|639993|639994|639995|639996|639996|639997|639998|649681|649682|649683|649684|649685|649686|649687|649688|649689|649690|649691|649692|649693|649694|649695|649696|649697|649698|649699|649700|649701|649702|649703|649704|649705|649706|649707|649708|652058|652119|652190|652191|652534|653298|653736|653774|684256|684257|684258|684945|684946|684947|685480|685481|685482|687767|687768|687770|687771|687772|687773|687774|687775|687776|689336|689337|689338|689339|689340|689341|689342|693007|693008|693009|693011|693012|693013|694783|695508|695509|695511|695890|706108|712789|724403|737941|737942|737943|737943|737944|752650|752652|768419|768421|768422|768424|768427|773762|773766|777946|779535|783981|783983|783984|786702|796568|820359|820360|820361|821476|821478|821479|821555|821556|821557|822216|838299|838300|838301|838302|838303|838304|838305|838306|838307|838308|838309|838310|838311|838312|838313|838314|838315|838317|838318|838319|838320|838321|838321|838322|838323|838324|838325|838326|838327|838328|838329|838330|838331|838331|838332|838333|838334|838335|838336|838337|838338|838339|838340|838341|838342|838343|838344|838345|838346|838347|838348|838349|838350|849620|849621|849622|849623|849624|849625|849626|849627|849628|849629|849630|849631|849632|849633|849634|849635|849636|849637|849638|849639|849640|849641|849642|849643|849644|849645|849646|849647|849648|849649|849650|849651|849652|849653|849654|849655|849656|849657|849658|849659|849660|849661|851431|852465|852963|852967|852968|867860|867861|867862|867863|867864|867865|867866|867867|867868|867869|904718|919976|920999|926196|926197|926198|926199|926200|926201|926202|926203|926204|926205|926206|926207|926208|926209|926210|926211|926212|926213|929564|929565|929566|929567|929568|929569|929570|929571|929572|935493|935494|935495|935496|935497|935498|935499|935500|935501|935502|935503|935504|935505|935506|935507|935508|935509|935510|935511|935512|935513|939428|939429|939430|939431|939432|939433|939434|939435|939436|939437|939438|939439|939440|939441|940211|940212|940542|940994|947412|947413|947414|947415|947416|947417|947418|947419|947420|947421|947422|947423|947424|947425|947426|947427|947428|947429|947431|951598|951599|951600|951601|951602|951603|951604|951605|951606|951607|951608|951609|951610|951611|951612|951613|951614|956465|956466|956467|956468|956469|956470|956471|956472|956473|956474|956475|956476|959169|959170|959171|959172|967153", + "upstreamId": "18523|18524|18526|18526|18527|18532|18532|18533|18533|18536|18536|18539|18539|18545|24381|24385|26728|26729|26730|26733|50286|50286|89226|89228|100999|101000|138239|138240|138241|139192|139192|139193|139194|139194|139195|141193|178637|190617|190617|190618|190618|195334|195751|195751|195752|195752|215614|241126|241127|241127|241128|241130|241130|241131|241132|241133|241134|241134|241135|241135|241136|241136|241137|241137|241138|241138|241139|241139|241140|243717|243719|243740|243741|243743|243744|243745|243746|243747|243748|243749|243750|243751|243752|243753|243754|254138|254138|254142|254142|254144|254144|254145|254145|254146|254146|254147|257755|259981|274962|313892|313893|313904|313905|313914|313915|313918|313918|313927|313928|313928|313933|313934|313935|313940|320204|320213|320218|320219|320234|320257|320268|320269|320269|320284|320287|326278|326282|326284|326289|326291|326292|326294|326294|326297|326298|327285|327286|327296|327299|327300|327313|327320|327325|327329|327331|327340|327340|327344|327344|377785|389922|398164|398167|398169|398169|398176|398176|398177|398179|398189|398197|398229|398232|398234|398235|398240|398242|398250|398251|398583|398585|398586|398587|398591|398608|398608|398611|398612|398614|398623|398623|398626|398646|398652|398668|398668|398680|398687|398688|398691|398693|398699|404008|404071|404073|404077|404084|404093|404095|404099|404105|404107|404110|404118|404441|404442|404443|404444|404445|404447|404486|404487|404489|420986|432382|444795|444795|460431|461059|461061|461063|461070|461072|461077|461078|461080|461081|461083|461090|461238|461243|461244|461248|461254|461256|461260|461262|461264|461266|461269|461277|461281|461285|461285|461287|461288|461294|461527|461531|461532|461545|461547|461548|461559|461560|461562|461564|461570|461571|461853|461855|461867|461869|461875|461881|461883|461887|470476|470481|470486|470494|470495|470498|470499|470501|471260|471263|471264|471266|471271|471694|471697|471701|471704|471709|471714|471715|471717|471718|471720|471989|472054|472055|472056|472057|472058|472059|472060|472061|472062|472063|503257|503257|507729|508494|525996|526132|526135|526140|526148|526152|526155|526156|526160|526161|526164|526166|526170|526172|526174|526175|526181|526184|526186|526189|526192|526303|526305|526308|526319|526320|526324|526326|526330|526332|526335|526337|526341|526342|526353|526359|526359|526363|526364|526369|526371|526632|526635|526639|526643|526648|526650|526661|526662|534497|534500|534502|534506|534510|534514|534516|534518|534519|534524|534527|534529|534603|534603|534605|534619|534621|535017|535018|535019|535020|535021|535023|535024|535027|535029|535033|535035|564594|564595|564597|564598|564602|564603|564607|565708|565714|565716|565722|565726|567207|567213|567214|567219|567224|567228|567233|570569|570569|570575|570581|570588|570594|570598|570612|572199|572202|572203|572210|572220|572223|573436|573532|573537|573541|573542|573545|573546|573551|574276|574278|574280|574282|574284|574286|574288|574290|574291|575326|575327|575328|575329|575330|575331|575332|575841|575842|575843|575843|575844|575845|575846|575847|575848|575849|575850|575851|575852|580925|611457|639958|639959|639960|639961|639962|639963|639964|639965|639966|639967|639968|639969|639970|639971|639972|639973|639974|639975|639976|639977|639978|639979|639980|639981|639982|639983|639984|639985|639986|639987|639988|639989|639990|639991|639992|639993|639994|639995|639996|639996|639997|639998|649681|649682|649683|649684|649685|649686|649687|649688|649689|649690|649691|649692|649693|649694|649695|649696|649697|649698|649699|649700|649701|649702|649703|649704|649705|649706|649707|649708|652058|652119|652190|652191|652534|653298|653736|653774|684256|684257|684258|684945|684946|684947|685480|685481|685482|687767|687768|687770|687771|687772|687773|687774|687775|687776|689336|689337|689338|689339|689340|689341|689342|693007|693008|693009|693011|693012|693013|694783|695508|695509|695511|695890|706108|712789|724403|737941|737942|737943|737943|737944|752650|752652|768419|768421|768422|768424|768427|773762|773766|777946|779535|783981|783983|783984|786702|796568|820359|820360|820361|821476|821478|821479|821555|821556|821557|822216|838299|838300|838301|838302|838303|838304|838305|838306|838307|838308|838309|838310|838311|838312|838313|838314|838315|838317|838318|838319|838320|838321|838321|838322|838323|838324|838325|838326|838327|838328|838329|838330|838331|838331|838332|838333|838334|838335|838336|838337|838338|838339|838340|838341|838342|838343|838344|838345|838346|838347|838348|838349|838350|849620|849621|849622|849623|849624|849625|849626|849627|849628|849629|849630|849631|849632|849633|849634|849635|849636|849637|849638|849639|849640|849641|849642|849643|849644|849645|849646|849647|849648|849649|849650|849651|849652|849653|849654|849655|849656|849657|849658|849659|849660|849661|851431|852465|852963|852967|852968|867860|867861|867862|867863|867864|867865|867866|867867|867868|867869|904718|919976|920999|926196|926197|926198|926199|926200|926201|926202|926203|926204|926205|926206|926207|926208|926209|926210|926211|926212|926213|929564|929565|929566|929567|929568|929569|929570|929571|929572|935493|935494|935495|935496|935497|935498|935499|935500|935501|935502|935503|935504|935505|935506|935507|935508|935509|935510|935511|935512|935513|939428|939429|939430|939431|939432|939433|939434|939435|939436|939437|939438|939439|939440|939441|940211|940212|940542|940994|947412|947413|947414|947415|947416|947417|947418|947419|947420|947421|947422|947423|947424|947425|947426|947427|947428|947429|947431|951598|951599|951600|951601|951602|951603|951604|951605|951606|951607|951608|951609|951610|951611|951612|951613|951614|956465|956466|956467|956468|956469|956470|956471|956472|956473|956474|956475|956476|959169|959170|959171|959172|967153", "text": "Wilms tumor 1" }, { - "baseId": "18525|18526|18527|18532|18532|18533|18533|18536|18539|18539|18543|50286|89226|89228|89229|139192|139193|139194|139195|178637|190617|190618|195751|195752|241126|241127|241128|241130|241131|241132|241133|241134|241135|241136|241137|241138|241139|241140|254138|254142|254144|254145|254146|259981|274962|313918|313928|320269|326294|327340|327344|389922|398164|398167|398169|398176|398177|398179|398189|398197|398229|398232|398234|398235|398240|398242|398250|398251|398583|398585|398586|398587|398591|398608|398611|398612|398614|398623|398626|398646|398652|398668|398680|398687|398688|398691|398693|398699|444795|460431|461059|461061|461063|461070|461072|461077|461078|461080|461081|461083|461090|461238|461243|461244|461248|461254|461256|461260|461262|461264|461266|461269|461277|461281|461285|461287|461288|461294|461527|461531|461532|461545|461547|461548|461559|461560|461562|461564|461570|461571|461853|461855|461867|461869|461875|461881|461883|461887|503257|525996|526132|526135|526140|526148|526152|526155|526156|526160|526161|526164|526166|526170|526172|526174|526175|526181|526184|526186|526189|526192|526303|526305|526308|526319|526320|526324|526326|526330|526332|526335|526337|526341|526342|526353|526359|526363|526364|526369|526371|526632|526635|526639|526643|526648|526650|526661|526662|564594|564595|564597|564598|564602|564603|564607|565708|565714|565716|565722|565726|567207|567213|567214|567219|567224|567228|567233|570569|570575|570581|570588|570594|570598|570612|575843|639958|639959|639960|639961|639962|639963|639964|639965|639966|639967|639968|639969|639970|639971|639972|639973|639974|639975|639976|639977|639978|639979|639980|639981|639982|639983|639984|639985|639986|639987|639988|639989|639990|639991|639992|639993|639994|639995|639996|639997|639998|652058|652119|652190|652191|652534|684256|684257|684258|687767|687768|687770|687771|687772|687773|687774|687775|687776|693007|693008|693009|693011|693012|693013|695508|695509|695511|712789|724403|737941|737942|737943|737944|752650|752652|768419|768421|768422|768424|768427|777946|779535|783981|783983|783984|796568|820359|820360|820361|838299|838300|838301|838302|838303|838304|838305|838306|838307|838308|838309|838310|838311|838312|838313|838314|838315|838317|838318|838319|838320|838321|838322|838323|838324|838325|838326|838327|838328|838329|838330|838331|838332|838333|838334|838335|838336|838337|838338|838339|838340|838341|838342|838343|838344|838345|838346|838347|838348|838349|838350|851431|926196|926197|926198|926199|926200|926201|926202|926203|926204|926205|926206|926207|926208|926209|926210|926211|926212|926213|935493|935494|935495|935496|935497|935498|935499|935500|935501|935502|935503|935504|935505|935506|935507|935508|935509|935510|935511|935512|935513|940211|940212|940994|947412|947413|947414|947415|947416|947417|947418|947419|947420|947421|947422|947423|947424|947425|947426|947427|947428|947429|947431|956465|956466|956467|956468|956469|956470|956471|956472|956473|956474|956475|956476|961571", + "upstreamId": "18525|18526|18527|18532|18532|18533|18533|18536|18539|18539|18543|50286|89226|89228|89229|139192|139193|139194|139195|178637|190617|190618|195751|195752|241126|241127|241128|241130|241131|241132|241133|241134|241135|241136|241137|241138|241139|241140|254138|254142|254144|254145|254146|259981|274962|313918|313928|320269|326294|327340|327344|389922|398164|398167|398169|398176|398177|398179|398189|398197|398229|398232|398234|398235|398240|398242|398250|398251|398583|398585|398586|398587|398591|398608|398611|398612|398614|398623|398626|398646|398652|398668|398680|398687|398688|398691|398693|398699|444795|460431|461059|461061|461063|461070|461072|461077|461078|461080|461081|461083|461090|461238|461243|461244|461248|461254|461256|461260|461262|461264|461266|461269|461277|461281|461285|461287|461288|461294|461527|461531|461532|461545|461547|461548|461559|461560|461562|461564|461570|461571|461853|461855|461867|461869|461875|461881|461883|461887|503257|525996|526132|526135|526140|526148|526152|526155|526156|526160|526161|526164|526166|526170|526172|526174|526175|526181|526184|526186|526189|526192|526303|526305|526308|526319|526320|526324|526326|526330|526332|526335|526337|526341|526342|526353|526359|526363|526364|526369|526371|526632|526635|526639|526643|526648|526650|526661|526662|564594|564595|564597|564598|564602|564603|564607|565708|565714|565716|565722|565726|567207|567213|567214|567219|567224|567228|567233|570569|570575|570581|570588|570594|570598|570612|575843|639958|639959|639960|639961|639962|639963|639964|639965|639966|639967|639968|639969|639970|639971|639972|639973|639974|639975|639976|639977|639978|639979|639980|639981|639982|639983|639984|639985|639986|639987|639988|639989|639990|639991|639992|639993|639994|639995|639996|639997|639998|652058|652119|652190|652191|652534|684256|684257|684258|687767|687768|687770|687771|687772|687773|687774|687775|687776|693007|693008|693009|693011|693012|693013|695508|695509|695511|712789|724403|737941|737942|737943|737944|752650|752652|768419|768421|768422|768424|768427|777946|779535|783981|783983|783984|796568|820359|820360|820361|838299|838300|838301|838302|838303|838304|838305|838306|838307|838308|838309|838310|838311|838312|838313|838314|838315|838317|838318|838319|838320|838321|838322|838323|838324|838325|838326|838327|838328|838329|838330|838331|838332|838333|838334|838335|838336|838337|838338|838339|838340|838341|838342|838343|838344|838345|838346|838347|838348|838349|838350|851431|926196|926197|926198|926199|926200|926201|926202|926203|926204|926205|926206|926207|926208|926209|926210|926211|926212|926213|935493|935494|935495|935496|935497|935498|935499|935500|935501|935502|935503|935504|935505|935506|935507|935508|935509|935510|935511|935512|935513|940211|940212|940994|947412|947413|947414|947415|947416|947417|947418|947419|947420|947421|947422|947423|947424|947425|947426|947427|947428|947429|947431|956465|956466|956467|956468|956469|956470|956471|956472|956473|956474|956475|956476|961571", "text": "Frasier syndrome" }, { - "baseId": "18526|18526|18527|18527|18528|18529|18530|18531|18532|18532|18533|18534|18535|18536|18536|18537|18539|50286|89226|89228|139192|139193|139194|139195|178637|190617|190618|195751|195752|226222|226223|241126|241127|241128|241130|241130|241131|241132|241133|241134|241135|241136|241137|241138|241139|241140|254138|254142|254144|254145|254146|259981|274962|313918|313928|320269|326294|326297|327340|327344|389922|398164|398167|398169|398176|398177|398179|398189|398197|398229|398232|398234|398235|398240|398242|398250|398251|398583|398585|398586|398587|398591|398608|398611|398612|398614|398623|398623|398626|398646|398652|398668|398680|398687|398688|398691|398693|398699|444795|444795|460431|461059|461061|461063|461070|461072|461077|461078|461080|461081|461083|461090|461238|461243|461244|461248|461254|461256|461260|461262|461264|461266|461269|461277|461281|461285|461287|461288|461294|461527|461531|461532|461545|461547|461548|461559|461560|461562|461564|461570|461571|461853|461855|461867|461869|461875|461881|461883|461887|503257|525996|526132|526135|526140|526148|526152|526155|526156|526160|526161|526164|526166|526170|526172|526174|526175|526181|526184|526186|526189|526192|526303|526305|526308|526319|526320|526324|526326|526330|526332|526335|526337|526341|526342|526353|526359|526359|526363|526364|526369|526371|526632|526635|526639|526643|526648|526650|526661|526662|537657|564594|564595|564597|564598|564602|564603|564607|565708|565714|565716|565722|565726|567207|567213|567214|567219|567224|567228|567233|570569|570575|570581|570588|570594|570598|570612|575841|575843|575847|575849|575851|612154|639958|639959|639960|639961|639962|639963|639964|639965|639966|639967|639968|639969|639970|639971|639972|639973|639974|639975|639976|639977|639978|639979|639980|639981|639982|639983|639984|639985|639986|639987|639988|639989|639990|639991|639992|639993|639994|639995|639996|639997|639998|652058|652119|652190|652191|652534|684256|684257|684258|687767|687768|687770|687771|687772|687773|687774|687775|687776|693007|693008|693009|693011|693012|693013|695508|695509|695511|712789|724403|737941|737942|737943|737944|752650|752652|768419|768421|768422|768424|768427|777946|779535|783981|783983|783984|791129|791130|791131|791132|796568|798642|820359|820360|820361|838299|838300|838301|838302|838303|838304|838305|838306|838307|838308|838309|838310|838311|838312|838313|838314|838315|838317|838318|838319|838320|838321|838322|838323|838324|838325|838326|838327|838328|838329|838330|838331|838332|838333|838334|838335|838336|838337|838338|838339|838340|838341|838342|838343|838344|838345|838346|838347|838348|838349|838350|851431|926196|926197|926198|926199|926200|926201|926202|926203|926204|926205|926206|926207|926208|926209|926210|926211|926212|926213|935493|935494|935495|935496|935497|935498|935499|935500|935501|935502|935503|935504|935505|935506|935507|935508|935509|935510|935511|935512|935513|940211|940212|940994|947412|947413|947414|947415|947416|947417|947418|947419|947420|947421|947422|947423|947424|947425|947426|947427|947428|947429|947431|956465|956466|956467|956468|956469|956470|956471|956472|956473|956474|956475|956476|961571", + "upstreamId": "18526|18526|18527|18527|18528|18529|18530|18531|18532|18532|18533|18534|18535|18536|18536|18537|18539|50286|89226|89228|139192|139193|139194|139195|178637|190617|190618|195751|195752|226222|226223|241126|241127|241128|241130|241130|241131|241132|241133|241134|241135|241136|241137|241138|241139|241140|254138|254142|254144|254145|254146|259981|274962|313918|313928|320269|326294|326297|327340|327344|389922|398164|398167|398169|398176|398177|398179|398189|398197|398229|398232|398234|398235|398240|398242|398250|398251|398583|398585|398586|398587|398591|398608|398611|398612|398614|398623|398623|398626|398646|398652|398668|398680|398687|398688|398691|398693|398699|444795|444795|460431|461059|461061|461063|461070|461072|461077|461078|461080|461081|461083|461090|461238|461243|461244|461248|461254|461256|461260|461262|461264|461266|461269|461277|461281|461285|461287|461288|461294|461527|461531|461532|461545|461547|461548|461559|461560|461562|461564|461570|461571|461853|461855|461867|461869|461875|461881|461883|461887|503257|525996|526132|526135|526140|526148|526152|526155|526156|526160|526161|526164|526166|526170|526172|526174|526175|526181|526184|526186|526189|526192|526303|526305|526308|526319|526320|526324|526326|526330|526332|526335|526337|526341|526342|526353|526359|526359|526363|526364|526369|526371|526632|526635|526639|526643|526648|526650|526661|526662|537657|564594|564595|564597|564598|564602|564603|564607|565708|565714|565716|565722|565726|567207|567213|567214|567219|567224|567228|567233|570569|570575|570581|570588|570594|570598|570612|575841|575843|575847|575849|575851|612154|639958|639959|639960|639961|639962|639963|639964|639965|639966|639967|639968|639969|639970|639971|639972|639973|639974|639975|639976|639977|639978|639979|639980|639981|639982|639983|639984|639985|639986|639987|639988|639989|639990|639991|639992|639993|639994|639995|639996|639997|639998|652058|652119|652190|652191|652534|684256|684257|684258|687767|687768|687770|687771|687772|687773|687774|687775|687776|693007|693008|693009|693011|693012|693013|695508|695509|695511|712789|724403|737941|737942|737943|737944|752650|752652|768419|768421|768422|768424|768427|777946|779535|783981|783983|783984|791129|791130|791131|791132|796568|798642|820359|820360|820361|838299|838300|838301|838302|838303|838304|838305|838306|838307|838308|838309|838310|838311|838312|838313|838314|838315|838317|838318|838319|838320|838321|838322|838323|838324|838325|838326|838327|838328|838329|838330|838331|838332|838333|838334|838335|838336|838337|838338|838339|838340|838341|838342|838343|838344|838345|838346|838347|838348|838349|838350|851431|926196|926197|926198|926199|926200|926201|926202|926203|926204|926205|926206|926207|926208|926209|926210|926211|926212|926213|935493|935494|935495|935496|935497|935498|935499|935500|935501|935502|935503|935504|935505|935506|935507|935508|935509|935510|935511|935512|935513|940211|940212|940994|947412|947413|947414|947415|947416|947417|947418|947419|947420|947421|947422|947423|947424|947425|947426|947427|947428|947429|947431|956465|956466|956467|956468|956469|956470|956471|956472|956473|956474|956475|956476|961571", "text": "Drash syndrome" }, { - "baseId": "18526|18544|139192|139194|190617|190618|195751|195752|241127|241134|241135|241136|241137|241138|241139|254138|254142|254144|254145|254146|254147|313892|313893|313895|313897|313901|313904|313905|313913|313914|313915|313918|313927|313928|313932|313933|313934|313935|313940|320204|320206|320208|320209|320213|320216|320218|320219|320220|320227|320232|320234|320235|320257|320268|320269|320282|320284|320286|320287|320288|320289|326278|326279|326280|326282|326283|326284|326285|326288|326289|326290|326291|326292|326294|326296|326297|326298|327285|327286|327287|327288|327296|327299|327300|327313|327320|327325|327326|327329|327331|327340|327344|327346|327353|398169|398176|398608|398668|503257|526359|737943|838321|838331|867860|867861|867862|867863|867864|867865|867866|867867|867868|867869", + "upstreamId": "18526|18544|139192|139194|190617|190618|195751|195752|241127|241134|241135|241136|241137|241138|241139|254138|254142|254144|254145|254146|254147|313892|313893|313895|313897|313901|313904|313905|313913|313914|313915|313918|313927|313928|313932|313933|313934|313935|313940|320204|320206|320208|320209|320213|320216|320218|320219|320220|320227|320232|320234|320235|320257|320268|320269|320282|320284|320286|320287|320288|320289|326278|326279|326280|326282|326283|326284|326285|326288|326289|326290|326291|326292|326294|326296|326297|326298|327285|327286|327287|327288|327296|327299|327300|327313|327320|327325|327326|327329|327331|327340|327344|327346|327353|398169|398176|398608|398668|503257|526359|737943|838321|838331|867860|867861|867862|867863|867864|867865|867866|867867|867868|867869", "text": "Meacham syndrome" }, { - "baseId": "18526|18527|18529|18532|18534|18539|18541|139192|139194|190617|190618|190618|195751|195752|195752|241127|241134|241135|241136|241137|241138|241139|254138|254142|254144|254144|254145|254146|254147|313892|313893|313895|313897|313901|313904|313905|313913|313914|313915|313918|313927|313928|313932|313933|313934|313935|313940|320204|320206|320208|320209|320213|320216|320218|320219|320220|320227|320232|320234|320235|320257|320268|320269|320282|320284|320286|320287|320288|320289|326278|326279|326280|326282|326283|326284|326285|326288|326289|326290|326291|326292|326294|326296|326297|326298|327285|327286|327287|327288|327296|327299|327300|327313|327320|327325|327326|327329|327331|327340|327344|327346|327353|389922|398169|398176|398608|398668|432306|503257|513089|513090|526359|537657|590302|590303|623307|737943|838321|838331|861038|867860|867861|867862|867863|867864|867865|867866|867867|867868|867869|966658|966659", + "upstreamId": "18526|18527|18529|18532|18534|18539|18541|139192|139194|190617|190618|190618|195751|195752|195752|241127|241134|241135|241136|241137|241138|241139|254138|254142|254144|254144|254145|254146|254147|313892|313893|313895|313897|313901|313904|313905|313913|313914|313915|313918|313927|313928|313932|313933|313934|313935|313940|320204|320206|320208|320209|320213|320216|320218|320219|320220|320227|320232|320234|320235|320257|320268|320269|320282|320284|320286|320287|320288|320289|326278|326279|326280|326282|326283|326284|326285|326288|326289|326290|326291|326292|326294|326296|326297|326298|327285|327286|327287|327288|327296|327299|327300|327313|327320|327325|327326|327329|327331|327340|327344|327346|327353|389922|398169|398176|398608|398668|432306|503257|513089|513090|526359|537657|590302|590303|623307|737943|838321|838331|861038|867860|867861|867862|867863|867864|867865|867866|867867|867868|867869|966658|966659", "text": "Nephrotic syndrome, type 4" }, { - "baseId": "18526|18532|18533|18536|18539|50286|89226|89228|139192|139193|139194|139195|178637|190617|195751|215434|241126|241127|241128|241130|241131|241132|241133|241134|241135|241136|241137|241138|241139|241140|254136|254138|254142|254145|254146|259981|274286|274962|313856|313857|313862|313863|313867|313870|313872|313873|313874|313877|313885|313886|313888|313889|313895|313897|313901|313913|313918|313928|313932|320061|320062|320069|320071|320080|320084|320087|320088|320089|320100|320102|320108|320111|320112|320114|320134|320135|320138|320142|320143|320145|320146|320147|320163|320165|320166|320167|320174|320197|320198|320199|320206|320208|320216|320220|320227|320232|320235|320269|320282|320286|320288|320289|326222|326244|326245|326246|326248|326251|326252|326255|326256|326257|326258|326270|326272|326273|326276|326277|326279|326280|326283|326285|326288|326290|326294|326296|327197|327203|327204|327206|327207|327214|327217|327218|327222|327223|327224|327241|327242|327259|327263|327272|327273|327276|327282|327283|327288|327326|327340|327344|327346|327353|363632|389922|398164|398167|398169|398176|398177|398179|398189|398197|398229|398232|398234|398235|398240|398242|398250|398251|398583|398585|398586|398587|398608|398611|398612|398614|398623|398626|398646|398652|398668|398680|398687|398688|398691|398693|398699|444795|460431|461059|461061|461063|461070|461072|461077|461078|461080|461081|461083|461090|461238|461243|461244|461248|461254|461256|461260|461262|461264|461266|461269|461277|461281|461285|461287|461288|461294|461527|461531|461532|461545|461547|461548|461559|461560|461562|461564|461570|461571|461853|461855|461867|461869|461875|461881|461883|461887|503257|525996|526132|526135|526140|526148|526152|526155|526156|526160|526161|526164|526166|526170|526172|526174|526175|526181|526184|526186|526189|526192|526303|526305|526308|526319|526320|526324|526326|526330|526332|526335|526337|526341|526342|526353|526359|526363|526364|526369|526371|526632|526635|526639|526643|526648|526650|526661|526662|564594|564595|564597|564598|564602|564603|564607|565708|565714|565716|565722|565726|567207|567213|567214|567219|567224|567228|567233|570569|570575|570581|570588|570594|570598|570612|575843|613758|613865|639958|639959|639960|639961|639962|639963|639964|639965|639966|639967|639968|639969|639970|639971|639972|639973|639974|639975|639976|639977|639978|639979|639980|639981|639982|639983|639984|639985|639986|639987|639988|639989|639990|639991|639992|639993|639994|639995|639996|639997|639998|652058|652119|652190|652191|652534|684256|684257|684258|687767|687768|687770|687771|687772|687773|687774|687775|687776|693007|693008|693009|693011|693012|693013|695508|695509|695511|712789|724403|737941|737942|737943|737944|752650|752652|768419|768421|768422|768424|768427|777946|779535|783981|783983|783984|796568|820359|820360|820361|838299|838300|838301|838302|838303|838304|838305|838306|838307|838308|838309|838310|838311|838312|838313|838314|838315|838317|838318|838319|838320|838321|838322|838323|838324|838325|838326|838327|838328|838329|838330|838331|838332|838333|838334|838335|838336|838337|838338|838339|838340|838341|838342|838343|838344|838345|838346|838347|838348|838349|838350|851431|867828|867836|867842|867843|867849|867850|867856|926196|926197|926198|926199|926200|926201|926202|926203|926204|926205|926206|926207|926208|926209|926210|926211|926212|926213|935493|935494|935495|935496|935497|935498|935499|935500|935501|935502|935503|935504|935505|935506|935507|935508|935509|935510|935511|935512|935513|940211|940212|940994|947412|947413|947414|947415|947416|947417|947418|947419|947420|947421|947422|947423|947424|947425|947426|947427|947428|947429|947431|956465|956466|956467|956468|956469|956470|956471|956472|956473|956474|956475|956476", + "upstreamId": "18526|18532|18533|18536|18539|50286|89226|89228|139192|139193|139194|139195|178637|190617|195751|215434|241126|241127|241128|241130|241131|241132|241133|241134|241135|241136|241137|241138|241139|241140|254136|254138|254142|254145|254146|259981|274286|274962|313856|313857|313862|313863|313867|313870|313872|313873|313874|313877|313885|313886|313888|313889|313895|313897|313901|313913|313918|313928|313932|320061|320062|320069|320071|320080|320084|320087|320088|320089|320100|320102|320108|320111|320112|320114|320134|320135|320138|320142|320143|320145|320146|320147|320163|320165|320166|320167|320174|320197|320198|320199|320206|320208|320216|320220|320227|320232|320235|320269|320282|320286|320288|320289|326222|326244|326245|326246|326248|326251|326252|326255|326256|326257|326258|326270|326272|326273|326276|326277|326279|326280|326283|326285|326288|326290|326294|326296|327197|327203|327204|327206|327207|327214|327217|327218|327222|327223|327224|327241|327242|327259|327263|327272|327273|327276|327282|327283|327288|327326|327340|327344|327346|327353|363632|389922|398164|398167|398169|398176|398177|398179|398189|398197|398229|398232|398234|398235|398240|398242|398250|398251|398583|398585|398586|398587|398608|398611|398612|398614|398623|398626|398646|398652|398668|398680|398687|398688|398691|398693|398699|444795|460431|461059|461061|461063|461070|461072|461077|461078|461080|461081|461083|461090|461238|461243|461244|461248|461254|461256|461260|461262|461264|461266|461269|461277|461281|461285|461287|461288|461294|461527|461531|461532|461545|461547|461548|461559|461560|461562|461564|461570|461571|461853|461855|461867|461869|461875|461881|461883|461887|503257|525996|526132|526135|526140|526148|526152|526155|526156|526160|526161|526164|526166|526170|526172|526174|526175|526181|526184|526186|526189|526192|526303|526305|526308|526319|526320|526324|526326|526330|526332|526335|526337|526341|526342|526353|526359|526363|526364|526369|526371|526632|526635|526639|526643|526648|526650|526661|526662|564594|564595|564597|564598|564602|564603|564607|565708|565714|565716|565722|565726|567207|567213|567214|567219|567224|567228|567233|570569|570575|570581|570588|570594|570598|570612|575843|613758|613865|639958|639959|639960|639961|639962|639963|639964|639965|639966|639967|639968|639969|639970|639971|639972|639973|639974|639975|639976|639977|639978|639979|639980|639981|639982|639983|639984|639985|639986|639987|639988|639989|639990|639991|639992|639993|639994|639995|639996|639997|639998|652058|652119|652190|652191|652534|684256|684257|684258|687767|687768|687770|687771|687772|687773|687774|687775|687776|693007|693008|693009|693011|693012|693013|695508|695509|695511|712789|724403|737941|737942|737943|737944|752650|752652|768419|768421|768422|768424|768427|777946|779535|783981|783983|783984|796568|820359|820360|820361|838299|838300|838301|838302|838303|838304|838305|838306|838307|838308|838309|838310|838311|838312|838313|838314|838315|838317|838318|838319|838320|838321|838322|838323|838324|838325|838326|838327|838328|838329|838330|838331|838332|838333|838334|838335|838336|838337|838338|838339|838340|838341|838342|838343|838344|838345|838346|838347|838348|838349|838350|851431|867828|867836|867842|867843|867849|867850|867856|926196|926197|926198|926199|926200|926201|926202|926203|926204|926205|926206|926207|926208|926209|926210|926211|926212|926213|935493|935494|935495|935496|935497|935498|935499|935500|935501|935502|935503|935504|935505|935506|935507|935508|935509|935510|935511|935512|935513|940211|940212|940994|947412|947413|947414|947415|947416|947417|947418|947419|947420|947421|947422|947423|947424|947425|947426|947427|947428|947429|947431|956465|956466|956467|956468|956469|956470|956471|956472|956473|956474|956475|956476", "text": "Wilms tumor, aniridia, genitourinary anomalies, and mental retardation syndrome" }, { - "baseId": "18526|20399|20400|20404|20407|21119|71146|76004|178865|178866|186603|186605|249552|249553|249555|249558|249560|278593|278595|440413|496597|540658|540697|540699|540708|540722|587964|672259|672260|672261|672262|731895|731896|745857|758855|761348|774413|794271|794272|801218|862851|977467|977468|977469", + "upstreamId": "18526|20399|20400|20404|20407|21119|71146|76004|178865|178866|186603|186605|249552|249553|249555|249558|249560|278593|278595|440413|496597|540658|540697|540699|540708|540722|587964|672259|672260|672261|672262|731895|731896|745857|758855|761348|774413|794271|794272|801218|862851|977467|977468|977469", "text": "Steroid-resistant nephrotic syndrome" }, { - "baseId": "18526|18539|20399|21119|21120|71146|76004|186603|801123", + "upstreamId": "18526|18539|20399|21119|21120|71146|76004|186603|801123", "text": "Nephrotic range proteinuria" }, { - "baseId": "18532|18539|178740|224420|224550|496597", + "upstreamId": "18532|18539|178740|224420|224550|496597", "text": "Hereditary nephrotic syndrome" }, { - "baseId": "18538|21289|21302", + "upstreamId": "18538|21289|21302", "text": "Mesothelioma" }, { - "baseId": "18546|18548|18549|18550|98626|135259|135260|135261|166175|177328|177328|190732|191490|195864|212119|237153|238354|267761|271582|272606|281552|281554|281560|281574|281578|282227|282229|282230|283553|283553|283554|283555|283689|283710|283715|427871|446900|448554|448755|490032|557488|585870|614128|880833|880834|880835|880836|880837|880838|880839|880840|880841|880842|880843|880844|880845|882778|882779|882780|882781|962849", + "upstreamId": "18546|18548|18549|18550|98626|135259|135260|135261|166175|177328|177328|190732|191490|195864|212119|237153|238354|267761|271582|272606|281552|281554|281560|281574|281578|282227|282229|282230|283553|283553|283554|283555|283689|283710|283715|427871|446900|448554|448755|490032|557488|585870|614128|880833|880834|880835|880836|880837|880838|880839|880840|880841|880842|880843|880844|880845|882778|882779|882780|882781|962849", "text": "Nephronophthisis 1" }, { - "baseId": "18549|620733", + "upstreamId": "18549|620733", "text": "NPHP1-Related Disorders" }, { - "baseId": "18550|98626|135259|135260|135261|166175|177328|177328|190732|191490|195864|212119|237153|271582|272606|281552|281554|281560|281574|281578|282227|282229|282230|283553|283553|283554|283555|283689|283710|283715|448554|490032|557488|585870|880833|880834|880835|880836|880837|880838|880839|880840|880841|880842|880843|880844|880845|882778|882779|882780|882781", + "upstreamId": "18550|98626|135259|135260|135261|166175|177328|177328|190732|191490|195864|212119|237153|271582|272606|281552|281554|281560|281574|281578|282227|282229|282230|283553|283553|283554|283555|283689|283710|283715|448554|490032|557488|585870|880833|880834|880835|880836|880837|880838|880839|880840|880841|880842|880843|880844|880845|882778|882779|882780|882781", "text": "Senior-Loken syndrome 1" }, { - "baseId": "18550|98626|135259|135260|135261|166175|177328|177328|190732|191490|195864|212119|214377|237153|271582|272606|281552|281554|281560|281574|281578|282227|282229|282230|283553|283553|283554|283555|283689|283710|283715|448554|490032|557488|585870|628412|880833|880834|880835|880836|880837|880838|880839|880840|880841|880842|880843|880844|880845|882778|882779|882780|882781|961829|970705", + "upstreamId": "18550|98626|135259|135260|135261|166175|177328|177328|190732|191490|195864|212119|214377|237153|271582|272606|281552|281554|281560|281574|281578|282227|282229|282230|283553|283553|283554|283555|283689|283710|283715|448554|490032|557488|585870|628412|880833|880834|880835|880836|880837|880838|880839|880840|880841|880842|880843|880844|880845|882778|882779|882780|882781|961829|970705", "text": "Joubert syndrome 4" }, { - "baseId": "18551|18552|18553|18554|18555|18556|296509|314504|314505|314507|314508|314512|314516|321162|321164|321167|321168|321185|321186|321187|321191|321195|321196|321199|321203|321204|321206|321207|321208|327250|327257|327258|327262|327270|327271|327274|327275|327298|327309|327311|327312|328328|328329|328330|328332|328333|328334|328335|328343|328346|328349|328350|328366|328368|328376|328377|328378|620411|620412|620413|620834|724567|738096|868217|868218|868219|868220|868221|868222|868223|868224|868225|868226|868227|868228|868229|868230|868231|868232|868233|868234|868235|868236|868237|868238|868239|868240|868241|868668", + "upstreamId": "18551|18552|18553|18554|18555|18556|296509|314504|314505|314507|314508|314512|314516|321162|321164|321167|321168|321185|321186|321187|321191|321195|321196|321199|321203|321204|321206|321207|321208|327250|327257|327258|327262|327270|327271|327274|327275|327298|327309|327311|327312|328328|328329|328330|328332|328333|328334|328335|328343|328346|328349|328350|328366|328368|328376|328377|328378|620411|620412|620413|620834|724567|738096|868217|868218|868219|868220|868221|868222|868223|868224|868225|868226|868227|868228|868229|868230|868231|868232|868233|868234|868235|868236|868237|868238|868239|868240|868241|868668", "text": "Familial renal hypouricemia" }, { - "baseId": "18555", + "upstreamId": "18555", "text": "Hereditary renal hypouricemia" }, { - "baseId": "18557|18558|18559|18560|18561|18562|18563|18564|18565|18567|18568|177842|185766|185787|191234|265996|266128|271357|276137|276378|276690|276694|276709|493520|514997|515062|556597|626680|626681|683277|683278|683279|683280|683282|683283|683284|685552|685555|685557|685558|685559|780282|977421", + "upstreamId": "18557|18558|18559|18560|18561|18562|18563|18564|18565|18567|18568|177842|185766|185787|191234|265996|266128|271357|276137|276378|276690|276694|276709|493520|514997|515062|556597|626680|626681|683277|683278|683279|683280|683282|683283|683284|685552|685555|685557|685558|685559|780282|977421", "text": "Homocystinuria due to MTHFR deficiency" }, { - "baseId": "18557|18559|18560|18566|18567|185757|185758|185759|185760|185761|185762|185763|185764|185765|185766|185767|185768|185769|185770|185771|185772|185773|185774|185775|185776|185777|185778|185779|185780|185781|185782|185783|185784|185785|185786|185787|185788|185789|185790|185791|185792|185793|185794|185795|185796|185797|185798|190849|190849|193590|193591|196274|204439|204440|204441|224593|224594|224595|224596|224597|224598|265996|266128|270484|270967|271357|276136|276137|276378|276690|447010|447105|447135|489913|490856|491168|493520|513228|513229|514997|515060|515062|538939|556564|556597|556859|557004|581743|584639|626680|626681|626682|626683|626684|626685|626686|626687|626688|683277|683278|683279|683280|683281|683282|683283|683284|685085|685551|685552|685553|685554|685555|685557|685558|685559|685560|685561|689625|696017|706619|718127|718128|731622|745603|761103|761105|761107|774354|780282|788723|789826|816433|822590|822591|822592|822593|822594|850716|918546|929991|929992|952030|952031|961747|964643|969111|972777|983738", + "upstreamId": "18557|18559|18560|18566|18567|185757|185758|185759|185760|185761|185762|185763|185764|185765|185766|185767|185768|185769|185770|185771|185772|185773|185774|185775|185776|185777|185778|185779|185780|185781|185782|185783|185784|185785|185786|185787|185788|185789|185790|185791|185792|185793|185794|185795|185796|185797|185798|190849|190849|193590|193591|196274|204439|204440|204441|224593|224594|224595|224596|224597|224598|265996|266128|270484|270967|271357|276136|276137|276378|276690|447010|447105|447135|489913|490856|491168|493520|513228|513229|514997|515060|515062|538939|556564|556597|556859|557004|581743|584639|626680|626681|626682|626683|626684|626685|626686|626687|626688|683277|683278|683279|683280|683281|683282|683283|683284|685085|685551|685552|685553|685554|685555|685557|685558|685559|685560|685561|689625|696017|706619|718127|718128|731622|745603|761103|761105|761107|774354|780282|788723|789826|816433|822590|822591|822592|822593|822594|850716|918546|929991|929992|952030|952031|961747|964643|969111|972777|983738", "text": "Homocystinuria due to methylene tetrahydrofolate reductase deficiency" }, { - "baseId": "18559|18560", + "upstreamId": "18559|18560", "text": "MTHFR deficiency, thermolabile type" }, { - "baseId": "18559|18560|22068|22280|22281|22283|22283|27817|27818|27820|27820|27821|27822|27824|27830|27830|27831|27831|28582|28583|28584|28585|28586|28587|28588|28590|28885|28891|28893|28894|28895|28896|28899|28901|28902|28904|28905|29000|33493|38851|45429|45429|45430|45430|48183|48215|48216|48217|50036|50037|50038|50039|50040|50042|50043|50044|50045|50209|50210|50214|50215|50229|50230|50231|50232|50232|50233|50235|50236|50237|50238|50239|50240|50241|53809|53812|54289|86365|138360|138361|138363|138364|138366|138367|138368|138369|138751|138753|138754|138755|138756|138757|138758|138759|138760|138761|138763|138764|138765|138766|138767|138769|138931|138933|141992|141994|142003|142007|150487|151597|151825|152351|152367|152477|152478|152541|152618|152741|167450|167451|167452|167453|167454|171051|171052|171053|171097|171098|172353|172491|172492|172493|181595|181596|181598|181599|181600|181603|181604|181605|181606|181607|181608|181609|181610|181611|181613|181614|181616|181616|181617|181618|181619|181620|181621|181622|181623|181623|181624|181625|181627|181628|187698|194371|195315|196493|196494|215302|215302|221084|221085|221459|221460|221462|221463|221464|221465|221466|221467|221468|221469|221470|221471|221472|221473|221474|224676|227193|232167|232168|232173|232175|232176|232181|232183|232187|238107|238108|238109|238158|238159|238160|238161|238162|238163|238164|238164|238165|238166|238167|238168|238169|238170|238171|238173|238174|238175|238176|238177|238178|238179|238180|238181|238181|238183|238184|238185|238186|238186|238187|238187|238188|238189|238190|238191|238192|238193|238194|239368|239369|239370|239372|239373|239374|239375|239376|239377|239378|239379|239380|239381|239382|239383|239384|239385|239386|239387|239388|239389|239390|239391|239393|239394|239395|239397|239398|239399|239400|239401|239402|239403|239404|239405|239406|239407|239408|239409|239410|239411|239412|239413|239414|239415|239416|239417|239418|239419|239420|239421|239425|239426|239427|239428|239429|239430|239431|239432|239433|239434|239435|239436|239437|239438|239439|239440|239441|239442|239443|239444|239444|239445|239446|239447|239448|239449|239450|239451|239453|239454|239455|239456|239457|239458|239459|239460|239461|239462|239463|239464|239465|239466|239467|239468|239469|239470|239471|239472|239473|239474|239474|239475|239476|239477|239478|239479|239480|239481|239482|239483|239484|239485|239486|239487|239488|239489|239490|239491|239492|239493|239494|239495|239496|239497|239498|239498|239499|248478|251491|251492|251493|251495|251496|251497|251499|251500|251502|251504|251505|277358|277948|278420|293512|293521|293522|293526|293533|293538|293539|293544|293554|293556|293562|293567|293568|293572|293573|293576|293580|293581|293582|293587|293588|293595|293596|293612|294903|294904|294927|294932|294935|294941|294942|294943|294946|294948|294963|294970|294972|294981|294984|294985|294986|294995|294997|295030|295032|295038|295039|295040|298604|298605|298606|298612|298613|298632|298634|298642|298643|298647|298650|298651|298654|298658|298659|298660|298661|298662|298663|298670|298671|298672|298673|298674|298675|298678|298679|298680|298681|298683|298688|298691|298699|298700|298701|298703|298704|298711|353670|358695|358697|358698|358699|358701|358701|358768|359203|362780|362781|362787|362788|362790|362791|362793|362795|362798|362800|362801|362802|362803|362804|362809|362810|362811|362812|362934|362935|362937|362980|363128|363129|363130|363132|363133|363233|363609|363610|363611|363612|363613|363614|363615|390713|390718|390721|390733|390847|390853|390856|390861|390863|390864|390865|390866|390867|390868|390869|390870|390871|390872|390873|390874|390875|390876|390877|390878|390879|390880|390881|390882|390883|390884|390885|390886|390887|390888|390889|390890|390891|390892|390893|390893|390894|390895|390898|390899|390900|390901|390902|390903|390904|390905|390906|390907|390908|390909|390910|390911|390912|390913|390914|390915|390916|390917|390918|390919|390920|390921|390922|390923|390924|390925|390926|390927|390928|390929|390930|390931|390932|390934|390935|390936|390939|390940|393835|393922|393929|393930|393935|393936|393938|393939|393940|393942|393943|393948|393949|393951|393956|393957|393958|393959|393960|393962|393964|393968|393969|393971|393973|393975|393977|393980|393981|393983|393986|393988|393991|393992|393996|394000|394001|394002|394005|394006|394010|394011|394013|394014|394015|394019|394020|394021|394022|394026|394029|394032|394033|394034|394036|394038|394039|394041|394042|394048|394049|394051|394052|394053|394056|394062|394064|394065|394067|394068|394069|394070|394071|394073|394077|394078|394079|394080|394081|394083|394084|394086|394087|394088|394095|394098|394098|394101|394102|394103|394105|394106|394109|394110|394112|394113|394115|394119|394121|394122|394124|394125|394128|394131|394132|394135|394149|394153|394155|394156|394160|394168|394169|394172|394174|394182|394185|394186|394190|394192|394193|394195|394196|394198|394200|394203|394204|394205|394206|394207|394209|394211|394213|394214|394218|394219|394221|394222|394222|394223|394225|394228|394229|394230|394233|394234|394235|394239|394243|394248|394251|394253|394255|394258|394264|394266|394268|394269|394271|394273|394283|394285|394288|394290|394292|394298|394301|394303|394305|394307|394311|394315|394316|394320|394325|394326|394328|394332|394334|394336|394336|394339|394339|394367|394370|394371|394377|394379|394383|394386|394388|394391|394393|394400|394406|394406|394409|394414|394415|394415|394420|394423|394431|394437|394438|394441|394444|394447|394450|394452|394454|394454|394457|394458|394460|394468|394469|394472|394473|394477|394479|394487|394499|394501|394509|394510|394511|394517|394518|394519|394524|394530|394533|394539|394541|394545|394548|394550|394553|394558|394561|394563|394566|394578|394590|394592|394610|394612|404976|404979|404981|420733|420734|420736|420737|420743|420745|420746|420748|420750|420755|432026|432028|432034|432038|432042|432491|432988|442662|442663|442664|442665|443617|446908|446909|446921|446924|446940|447261|447263|447265|447286|447290|447293|447295|447296|447301|447305|447306|447326|447330|447331|447335|447336|447371|447377|447378|447379|447380|447381|447383|447384|447387|447388|447390|447397|447400|447403|447405|447409|447417|447440|447444|447448|447449|447451|447452|447454|447455|447456|447457|447458|447483|447485|447487|447489|447490|447492|447494|447501|447502|447504|447505|447508|447510|447512|447515|447517|447518|447529|447530|453240|453245|453246|453248|453249|453252|453260|453262|453266|453272|453277|453279|453287|453290|453293|453298|453303|453304|453309|453311|453317|453323|453324|453329|453331|453333|453335|453336|453339|453346|453351|453361|453370|453372|453373|453379|453381|453391|453394|453396|453398|453401|453402|453408|453409|453410|453412|453415|453426|453428|453439|453443|453445|453447|453450|453460|453463|453466|453469|453470|453472|453476|453478|453482|453488|453491|453496|453500|453502|453508|453508|453518|453521|453523|453528|453530|453532|453535|453542|453554|453557|453559|453570|453574|453582|453583|453586|453590|453597|453605|453608|453609|453617|453621|453623|453626|453627|453629|453631|453632|453634|453637|453640|453642|453643|453644|453645|453646|453647|453649|453651|453652|453653|453655|453656|453657|453658|453661|453666|453668|453670|453672|453674|453675|453676|453677|453679|453681|453683|453684|453685|453686|453687|453688|453690|453694|453699|453701|453706|453707|453709|453713|453717|453720|453721|453728|453730|453732|453734|453735|453736|453737|453738|453739|453743|453746|453747|453748|453749|453750|453752|453759|453762|453763|453765|453768|453769|453777|453778|453779|453782|453786|453794|453795|453807|453809|453809|453814|453816|453817|453821|453823|453829|453832|453836|453839|453841|453846|453849|453854|453856|453858|453861|453871|453883|453884|453885|453887|453894|453899|453899|453900|453902|453908|453917|453921|453923|453931|453937|453939|453943|453949|453952|453956|453961|454015|454016|454018|454020|454023|454025|454030|454033|454035|454038|454046|454047|454061|454066|454069|454071|454092|454095|454098|454099|454102|454110|454112|454115|454120|454121|454124|454136|454141|454144|454150|454157|454159|454161|454163|454165|454170|454173|454174|454184|454191|454196|454197|454208|454211|454216|454218|454220|454235|454236|454239|454242|454246|454256|454275|454291|454293|454296|454299|454302|454304|454307|454308|454315|454317|454319|454329|472265|472267|472268|472269|472270|472271|472272|472273|472274|472275|472276|472277|472278|472279|472280|472283|472284|472318|472323|472339|514292|514854|514871|514882|515238|515247|515248|515249|515251|515254|515255|515256|515266|515267|515268|515269|515271|515272|515273|515275|515277|515281|515283|515285|515287|515290|515291|515294|515295|515298|515302|515307|515310|515313|515314|515316|515322|515324|515328|515333|515334|515343|515347|515353|515355|515356|515357|515359|515362|515363|515364|515366|515369|515371|515372|515373|515375|519928|519933|519965|519966|519976|519977|519982|519986|519987|519989|519990|519992|519995|519999|520000|520002|520003|520004|520006|520008|520009|520011|520013|520014|520014|520016|520018|520019|520021|520022|520027|520029|520030|520031|520036|520038|520041|520042|520045|520047|520050|520052|520054|520055|520057|520058|520059|520060|520061|520062|520064|520068|520072|520073|520075|520078|520080|520083|520085|520089|520091|520093|520095|520096|520104|520106|520108|520109|520110|520112|520115|520117|520118|520120|520121|520123|520124|520125|520126|520127|520129|520130|520143|520168|520180|520181|520186|520193|520199|520203|520205|520209|520210|520215|520216|520222|520231|520233|520239|520240|520250|520252|520253|520254|520255|520256|520257|520258|520260|520265|520266|520267|520269|520271|520274|520278|520280|520281|520283|520285|520288|520290|520292|520293|520294|520297|520298|520299|520300|520302|520303|520305|520306|520307|520310|520311|520312|520313|520314|520316|520321|520325|520326|520327|520331|520334|520336|520338|520339|520342|520343|520345|520347|520352|520354|520355|520356|520359|520363|520364|520367|520368|520369|520370|520373|520375|520377|520378|520379|520380|520381|520382|520386|520388|520392|520393|520394|520398|520401|520402|520405|520410|520411|520412|520413|520415|520418|520420|520422|520427|520432|520434|520436|520440|520442|520444|520448|520450|520453|520454|520455|520456|520457|520458|520459|520461|520462|520465|520466|520470|520471|520473|520481|520485|520488|520489|520490|520496|520501|520511|556488|556492|556517|556519|556521|556668|556670|556672|556674|556676|556678|556680|556690|556692|556694|556696|556698|556700|556727|556729|556731|556743|556745|556747|556749|556863|556869|556870|556871|557016|557018|557020|557022|557024|557026|557028|557040|557042|557044|557046|557048|557050|557052|557054|557056|557058|558204|558206|558208|558210|558212|558214|558216|558236|558240|558242|558244|558246|558248|558250|559696|559711|559713|559715|559717|559719|559721|559723|559725|559727|559729|559731|559733|559735|559737|559739|559741|559743|559745|559747|559749|559751|559753|559755|559757|559759|559761|559763|559765|559767|559769|559771|559773|559775|559777|559779|559781|559783|559785|559787|559789|559791|559793|559795|559797|559799|559801|559864|559866|559868|559870|559872|559874|559876|559878|559880|559882|559884|559886|559888|559890|559892|559894|559896|559898|559900|559902|559904|559906|559908|559910|559912|559914|559916|559918|559920|559922|559924|559926|559928|559930|559932|559934|559936|559938|559940|561848|562046|562049|562056|562058|562068|562074|562076|562079|562081|562090|562094|562101|562102|562106|562111|562113|562115|562117|562121|562132|562134|562142|562144|562148|562152|562156|562159|562161|562162|562164|562166|562169|562172|562174|562175|562177|562189|562191|562196|562197|562207|562208|562210|562213|562218|562222|562224|562226|562227|562229|563336|563350|563801|563806|563810|563812|563821|563822|563830|563831|563835|563837|563838|563839|563846|563864|563875|563877|563878|563885|563889|563891|563893|563894|563897|563899|563909|563910|563913|563915|563916|563924|563939|563946|563950|563962|563970|563979|563987|563999|563999|564009|575654|575655|615992|615993|615994|615995|615996|615997|615998|615999|627029|627030|627031|627032|627033|627034|627035|627036|627037|627038|627040|627041|627042|627043|627044|627045|627046|627047|627048|627049|627050|627051|627052|627053|627054|627077|627078|627079|627080|627081|627082|627083|627084|627085|627086|627087|627088|627089|627090|627091|627092|627093|627094|627095|627096|627097|627098|627099|627100|627101|627102|627103|627104|627105|627106|627107|627108|627109|627110|627111|627112|627113|627114|627115|627116|627117|627118|627119|627120|632261|632262|632263|632264|632265|632266|632267|632268|632269|632270|632271|632272|632273|632274|632275|632276|632277|632278|632279|632280|632281|632282|632283|632284|632285|632286|632287|632288|632289|632290|632291|632292|632293|632294|632295|632296|632297|632298|632299|632300|632301|632302|632303|632304|632305|632306|632307|632308|632309|632310|632311|632312|632313|632314|632315|632316|632317|632318|632319|632320|632321|632322|632323|632324|632325|632326|632327|632328|632329|632330|632331|632332|632333|632334|632335|632336|632337|632338|632339|632340|632341|632342|632343|632344|632345|632346|632347|632348|632349|632350|632351|632352|632353|632354|632355|632356|632357|632358|632359|632360|632361|632362|632363|632364|632365|632366|632367|632368|632369|632370|632371|632372|632373|632374|632375|632376|632377|632378|632379|632380|632381|632382|632383|632384|632385|632386|632387|632388|632389|632390|632391|632392|632393|632394|632395|632396|632397|632398|632399|632400|632401|632402|632403|632404|632405|632406|632407|632408|632409|632410|632411|632412|632413|632414|632415|632416|632417|632418|632419|632420|632421|632422|632423|632424|632425|632426|632427|632428|632429|632430|632431|632432|632433|632434|632435|632436|650532|650537|650539|650551|650557|650563|650564|650566|650595|650596|650642|650644|650646|650649|650650|651116|651142|651148|651158|651159|651160|651161|651164|651180|651186|651187|651188|651193|651195|651197|651198|651200|651202|651213|651257|651261|651273|651277|657158|683293|683634|685162|686524|686527|686528|686529|686530|686531|686532|686533|686534|686535|686537|686538|686539|686540|686541|689755|690403|690404|690405|690406|690417|690420|690421|691573|691577|691579|691581|691583|691584|691585|691586|691587|691588|691589|691591|691592|691593|695239|698549|698550|698551|709391|720996|720997|720998|720999|721000|721001|721002|731863|734660|734661|745840|745844|748965|748967|748968|748969|748970|748971|748972|748973|748978|748979|748980|748982|758851|759310|759420|759425|759534|761325|761328|761331|761333|764495|764498|764500|764508|764509|764512|764513|764515|764516|764518|764522|764531|764534|764535|764537|764538|764545|764549|764551|764552|764553|764554|764555|774942|774959|774963|774968|774978|775111|777040|777482|779037|780365|780366|781972|781973|781974|781977|781978|781979|781980|781982|781984|781985|781987|781989|781991|781992|781994|787026|787214|787274|787284|787382|787457|789878|790478|806455|806457|806488|806490|806491|806492|806494|806495|806501|807745|807749|807751|807753|807757|807758|807762|807770|807781|815211|815319|818848|818851|818852|818853|818854|818855|818856|818857|818858|818859|818860|818863|818864|818865|818866|818867|818868|818869|818870|819430|819431|819432|819485|819486|819487|819488|819489|819490|819491|819492|822945|822946|822947|822948|822949|822950|822951|822952|822953|822954|822955|822956|822957|822958|822959|822960|822961|822962|822993|822994|822995|822996|822997|822998|822999|823000|823001|823002|823003|823004|823005|823006|823007|823008|823009|823010|823011|829224|829225|829226|829227|829228|829229|829230|829231|829232|829233|829234|829235|829236|829237|829238|829239|829240|829241|829242|829243|829244|829245|829246|829247|829248|829249|829250|829251|829252|829253|829254|829255|829256|829257|829258|829259|829260|829261|829262|829263|829264|829265|829266|829267|829268|829269|829270|829271|829272|829273|829274|829275|829276|829277|829278|829279|829280|829281|829282|829283|829284|829285|829286|829287|829288|829289|829290|829291|829292|829293|829294|829295|829296|829297|829298|829299|829300|829301|829302|829303|829304|829305|829306|829307|829308|829309|829310|829311|829312|829313|829314|829315|829316|829317|829318|829319|829320|829321|829322|829323|829324|829325|829326|829327|829328|829329|829330|829331|829332|829333|829334|829335|829336|829337|829338|829339|829340|829341|829342|829343|829344|829345|829346|829347|829348|829349|829350|829351|829352|829353|829354|829355|829356|829357|829358|829359|829360|829361|829362|829363|829364|829365|829366|829367|829368|829369|829370|829371|829372|829373|829374|829375|829376|829377|829378|829379|829380|829381|829382|829383|829384|829385|829386|829387|829388|829389|829390|829391|829392|829393|829394|829395|829396|829397|829398|829399|829400|829401|850733|850735|850742|850937|850990|850992|851126|851129|851131|851192|851506|851508|851510|851512|851516|851608|858441|890731|890732|890733|890734|890735|890736|890737|890738|890739|890740|890741|890742|890743|890744|890745|890746|890747|890748|890749|890750|890751|890752|890753|890754|890755|890756|890757|890758|890759|890760|890761|890762|890763|890764|890765|890766|890767|890768|890769|890770|890771|890772|890773|890774|890775|890776|890777|890778|890779|890780|890781|890782|890783|891799|891800|921722|921723|921724|921725|921726|921742|921743|921744|921745|921746|921747|921748|921749|921750|921751|921752|921753|921754|921755|921756|923534|923535|923536|923537|923538|923539|923540|923541|923542|923543|923544|923545|923546|923547|923548|923549|923550|923551|923552|923553|923554|923555|923556|923557|923558|923559|923560|923561|923562|923563|923564|923565|923566|923567|923568|923569|923570|923571|923572|923573|923574|923575|923576|923577|923578|923579|923580|923581|923582|923583|923584|923585|923586|923587|923588|923589|923590|923591|923592|930124|930125|930126|930127|930128|930129|930130|930131|930156|930157|930158|930159|930160|930161|930162|930163|930164|930165|930166|930167|930168|932373|932374|932375|932376|932377|932378|932379|932380|932381|932382|932383|932384|932385|932386|932387|932388|932389|932390|932391|932392|932393|932394|932395|932396|932397|932398|932399|932400|932401|932402|932403|932404|932405|932406|932407|932408|932409|932410|932411|932412|932413|932414|932415|932416|932417|932418|939780|939969|940607|940608|940609|940781|940782|941549|941550|941551|941552|941573|941574|941575|941576|941577|941578|941579|941580|944030|944031|944032|944033|944034|944035|944036|944037|944038|944039|944040|944041|944042|944043|944044|944045|944046|944047|944048|944049|944050|944051|944052|944053|944054|944055|944056|944057|944058|944059|944060|944061|944062|944063|944064|944065|944066|944067|944068|944069|944070|944071|944072|944073|944074|944075|944076|944077|944078|944079|944080|944081|944082|944083|944084|944085|944086|944087|944088|944089|944090|944091|944092|951977|952126|952127|952128|952129|952130|952131|952140|952141|952142|952143|952144|952145|952146|953792|953793|953794|953795|953796|953797|953798|953799|953800|953801|953802|953803|953804|953805|953806|953807|953808|953809|953810|953811|953812|953813|953814|953815|953816|953817|953818|953819|953820|953821|953822|953823|953824|953825|959527|959528|959531|959532|959726|959727|959728|959729|959730|959731|959732|959733|959734|960411|960540|960541", + "upstreamId": "18559|18560|22068|22280|22281|22283|22283|27817|27818|27820|27820|27821|27822|27824|27830|27830|27831|27831|28582|28583|28584|28585|28586|28587|28588|28590|28885|28891|28893|28894|28895|28896|28899|28901|28902|28904|28905|29000|33493|38851|45429|45429|45430|45430|48183|48215|48216|48217|50036|50037|50038|50039|50040|50042|50043|50044|50045|50209|50210|50214|50215|50229|50230|50231|50232|50232|50233|50235|50236|50237|50238|50239|50240|50241|53809|53812|54289|86365|138360|138361|138363|138364|138366|138367|138368|138369|138751|138753|138754|138755|138756|138757|138758|138759|138760|138761|138763|138764|138765|138766|138767|138769|138931|138933|141992|141994|142003|142007|150487|151597|151825|152351|152367|152477|152478|152541|152618|152741|167450|167451|167452|167453|167454|171051|171052|171053|171097|171098|172353|172491|172492|172493|181595|181596|181598|181599|181600|181603|181604|181605|181606|181607|181608|181609|181610|181611|181613|181614|181616|181616|181617|181618|181619|181620|181621|181622|181623|181623|181624|181625|181627|181628|187698|194371|195315|196493|196494|215302|215302|221084|221085|221459|221460|221462|221463|221464|221465|221466|221467|221468|221469|221470|221471|221472|221473|221474|224676|227193|232167|232168|232173|232175|232176|232181|232183|232187|238107|238108|238109|238158|238159|238160|238161|238162|238163|238164|238164|238165|238166|238167|238168|238169|238170|238171|238173|238174|238175|238176|238177|238178|238179|238180|238181|238181|238183|238184|238185|238186|238186|238187|238187|238188|238189|238190|238191|238192|238193|238194|239368|239369|239370|239372|239373|239374|239375|239376|239377|239378|239379|239380|239381|239382|239383|239384|239385|239386|239387|239388|239389|239390|239391|239393|239394|239395|239397|239398|239399|239400|239401|239402|239403|239404|239405|239406|239407|239408|239409|239410|239411|239412|239413|239414|239415|239416|239417|239418|239419|239420|239421|239425|239426|239427|239428|239429|239430|239431|239432|239433|239434|239435|239436|239437|239438|239439|239440|239441|239442|239443|239444|239444|239445|239446|239447|239448|239449|239450|239451|239453|239454|239455|239456|239457|239458|239459|239460|239461|239462|239463|239464|239465|239466|239467|239468|239469|239470|239471|239472|239473|239474|239474|239475|239476|239477|239478|239479|239480|239481|239482|239483|239484|239485|239486|239487|239488|239489|239490|239491|239492|239493|239494|239495|239496|239497|239498|239498|239499|248478|251491|251492|251493|251495|251496|251497|251499|251500|251502|251504|251505|277358|277948|278420|293512|293521|293522|293526|293533|293538|293539|293544|293554|293556|293562|293567|293568|293572|293573|293576|293580|293581|293582|293587|293588|293595|293596|293612|294903|294904|294927|294932|294935|294941|294942|294943|294946|294948|294963|294970|294972|294981|294984|294985|294986|294995|294997|295030|295032|295038|295039|295040|298604|298605|298606|298612|298613|298632|298634|298642|298643|298647|298650|298651|298654|298658|298659|298660|298661|298662|298663|298670|298671|298672|298673|298674|298675|298678|298679|298680|298681|298683|298688|298691|298699|298700|298701|298703|298704|298711|353670|358695|358697|358698|358699|358701|358701|358768|359203|362780|362781|362787|362788|362790|362791|362793|362795|362798|362800|362801|362802|362803|362804|362809|362810|362811|362812|362934|362935|362937|362980|363128|363129|363130|363132|363133|363233|363609|363610|363611|363612|363613|363614|363615|390713|390718|390721|390733|390847|390853|390856|390861|390863|390864|390865|390866|390867|390868|390869|390870|390871|390872|390873|390874|390875|390876|390877|390878|390879|390880|390881|390882|390883|390884|390885|390886|390887|390888|390889|390890|390891|390892|390893|390893|390894|390895|390898|390899|390900|390901|390902|390903|390904|390905|390906|390907|390908|390909|390910|390911|390912|390913|390914|390915|390916|390917|390918|390919|390920|390921|390922|390923|390924|390925|390926|390927|390928|390929|390930|390931|390932|390934|390935|390936|390939|390940|393835|393922|393929|393930|393935|393936|393938|393939|393940|393942|393943|393948|393949|393951|393956|393957|393958|393959|393960|393962|393964|393968|393969|393971|393973|393975|393977|393980|393981|393983|393986|393988|393991|393992|393996|394000|394001|394002|394005|394006|394010|394011|394013|394014|394015|394019|394020|394021|394022|394026|394029|394032|394033|394034|394036|394038|394039|394041|394042|394048|394049|394051|394052|394053|394056|394062|394064|394065|394067|394068|394069|394070|394071|394073|394077|394078|394079|394080|394081|394083|394084|394086|394087|394088|394095|394098|394098|394101|394102|394103|394105|394106|394109|394110|394112|394113|394115|394119|394121|394122|394124|394125|394128|394131|394132|394135|394149|394153|394155|394156|394160|394168|394169|394172|394174|394182|394185|394186|394190|394192|394193|394195|394196|394198|394200|394203|394204|394205|394206|394207|394209|394211|394213|394214|394218|394219|394221|394222|394222|394223|394225|394228|394229|394230|394233|394234|394235|394239|394243|394248|394251|394253|394255|394258|394264|394266|394268|394269|394271|394273|394283|394285|394288|394290|394292|394298|394301|394303|394305|394307|394311|394315|394316|394320|394325|394326|394328|394332|394334|394336|394336|394339|394339|394367|394370|394371|394377|394379|394383|394386|394388|394391|394393|394400|394406|394406|394409|394414|394415|394415|394420|394423|394431|394437|394438|394441|394444|394447|394450|394452|394454|394454|394457|394458|394460|394468|394469|394472|394473|394477|394479|394487|394499|394501|394509|394510|394511|394517|394518|394519|394524|394530|394533|394539|394541|394545|394548|394550|394553|394558|394561|394563|394566|394578|394590|394592|394610|394612|404976|404979|404981|420733|420734|420736|420737|420743|420745|420746|420748|420750|420755|432026|432028|432034|432038|432042|432491|432988|442662|442663|442664|442665|443617|446908|446909|446921|446924|446940|447261|447263|447265|447286|447290|447293|447295|447296|447301|447305|447306|447326|447330|447331|447335|447336|447371|447377|447378|447379|447380|447381|447383|447384|447387|447388|447390|447397|447400|447403|447405|447409|447417|447440|447444|447448|447449|447451|447452|447454|447455|447456|447457|447458|447483|447485|447487|447489|447490|447492|447494|447501|447502|447504|447505|447508|447510|447512|447515|447517|447518|447529|447530|453240|453245|453246|453248|453249|453252|453260|453262|453266|453272|453277|453279|453287|453290|453293|453298|453303|453304|453309|453311|453317|453323|453324|453329|453331|453333|453335|453336|453339|453346|453351|453361|453370|453372|453373|453379|453381|453391|453394|453396|453398|453401|453402|453408|453409|453410|453412|453415|453426|453428|453439|453443|453445|453447|453450|453460|453463|453466|453469|453470|453472|453476|453478|453482|453488|453491|453496|453500|453502|453508|453508|453518|453521|453523|453528|453530|453532|453535|453542|453554|453557|453559|453570|453574|453582|453583|453586|453590|453597|453605|453608|453609|453617|453621|453623|453626|453627|453629|453631|453632|453634|453637|453640|453642|453643|453644|453645|453646|453647|453649|453651|453652|453653|453655|453656|453657|453658|453661|453666|453668|453670|453672|453674|453675|453676|453677|453679|453681|453683|453684|453685|453686|453687|453688|453690|453694|453699|453701|453706|453707|453709|453713|453717|453720|453721|453728|453730|453732|453734|453735|453736|453737|453738|453739|453743|453746|453747|453748|453749|453750|453752|453759|453762|453763|453765|453768|453769|453777|453778|453779|453782|453786|453794|453795|453807|453809|453809|453814|453816|453817|453821|453823|453829|453832|453836|453839|453841|453846|453849|453854|453856|453858|453861|453871|453883|453884|453885|453887|453894|453899|453899|453900|453902|453908|453917|453921|453923|453931|453937|453939|453943|453949|453952|453956|453961|454015|454016|454018|454020|454023|454025|454030|454033|454035|454038|454046|454047|454061|454066|454069|454071|454092|454095|454098|454099|454102|454110|454112|454115|454120|454121|454124|454136|454141|454144|454150|454157|454159|454161|454163|454165|454170|454173|454174|454184|454191|454196|454197|454208|454211|454216|454218|454220|454235|454236|454239|454242|454246|454256|454275|454291|454293|454296|454299|454302|454304|454307|454308|454315|454317|454319|454329|472265|472267|472268|472269|472270|472271|472272|472273|472274|472275|472276|472277|472278|472279|472280|472283|472284|472318|472323|472339|514292|514854|514871|514882|515238|515247|515248|515249|515251|515254|515255|515256|515266|515267|515268|515269|515271|515272|515273|515275|515277|515281|515283|515285|515287|515290|515291|515294|515295|515298|515302|515307|515310|515313|515314|515316|515322|515324|515328|515333|515334|515343|515347|515353|515355|515356|515357|515359|515362|515363|515364|515366|515369|515371|515372|515373|515375|519928|519933|519965|519966|519976|519977|519982|519986|519987|519989|519990|519992|519995|519999|520000|520002|520003|520004|520006|520008|520009|520011|520013|520014|520014|520016|520018|520019|520021|520022|520027|520029|520030|520031|520036|520038|520041|520042|520045|520047|520050|520052|520054|520055|520057|520058|520059|520060|520061|520062|520064|520068|520072|520073|520075|520078|520080|520083|520085|520089|520091|520093|520095|520096|520104|520106|520108|520109|520110|520112|520115|520117|520118|520120|520121|520123|520124|520125|520126|520127|520129|520130|520143|520168|520180|520181|520186|520193|520199|520203|520205|520209|520210|520215|520216|520222|520231|520233|520239|520240|520250|520252|520253|520254|520255|520256|520257|520258|520260|520265|520266|520267|520269|520271|520274|520278|520280|520281|520283|520285|520288|520290|520292|520293|520294|520297|520298|520299|520300|520302|520303|520305|520306|520307|520310|520311|520312|520313|520314|520316|520321|520325|520326|520327|520331|520334|520336|520338|520339|520342|520343|520345|520347|520352|520354|520355|520356|520359|520363|520364|520367|520368|520369|520370|520373|520375|520377|520378|520379|520380|520381|520382|520386|520388|520392|520393|520394|520398|520401|520402|520405|520410|520411|520412|520413|520415|520418|520420|520422|520427|520432|520434|520436|520440|520442|520444|520448|520450|520453|520454|520455|520456|520457|520458|520459|520461|520462|520465|520466|520470|520471|520473|520481|520485|520488|520489|520490|520496|520501|520511|556488|556492|556517|556519|556521|556668|556670|556672|556674|556676|556678|556680|556690|556692|556694|556696|556698|556700|556727|556729|556731|556743|556745|556747|556749|556863|556869|556870|556871|557016|557018|557020|557022|557024|557026|557028|557040|557042|557044|557046|557048|557050|557052|557054|557056|557058|558204|558206|558208|558210|558212|558214|558216|558236|558240|558242|558244|558246|558248|558250|559696|559711|559713|559715|559717|559719|559721|559723|559725|559727|559729|559731|559733|559735|559737|559739|559741|559743|559745|559747|559749|559751|559753|559755|559757|559759|559761|559763|559765|559767|559769|559771|559773|559775|559777|559779|559781|559783|559785|559787|559789|559791|559793|559795|559797|559799|559801|559864|559866|559868|559870|559872|559874|559876|559878|559880|559882|559884|559886|559888|559890|559892|559894|559896|559898|559900|559902|559904|559906|559908|559910|559912|559914|559916|559918|559920|559922|559924|559926|559928|559930|559932|559934|559936|559938|559940|561848|562046|562049|562056|562058|562068|562074|562076|562079|562081|562090|562094|562101|562102|562106|562111|562113|562115|562117|562121|562132|562134|562142|562144|562148|562152|562156|562159|562161|562162|562164|562166|562169|562172|562174|562175|562177|562189|562191|562196|562197|562207|562208|562210|562213|562218|562222|562224|562226|562227|562229|563336|563350|563801|563806|563810|563812|563821|563822|563830|563831|563835|563837|563838|563839|563846|563864|563875|563877|563878|563885|563889|563891|563893|563894|563897|563899|563909|563910|563913|563915|563916|563924|563939|563946|563950|563962|563970|563979|563987|563999|563999|564009|575654|575655|615992|615993|615994|615995|615996|615997|615998|615999|627029|627030|627031|627032|627033|627034|627035|627036|627037|627038|627040|627041|627042|627043|627044|627045|627046|627047|627048|627049|627050|627051|627052|627053|627054|627077|627078|627079|627080|627081|627082|627083|627084|627085|627086|627087|627088|627089|627090|627091|627092|627093|627094|627095|627096|627097|627098|627099|627100|627101|627102|627103|627104|627105|627106|627107|627108|627109|627110|627111|627112|627113|627114|627115|627116|627117|627118|627119|627120|632261|632262|632263|632264|632265|632266|632267|632268|632269|632270|632271|632272|632273|632274|632275|632276|632277|632278|632279|632280|632281|632282|632283|632284|632285|632286|632287|632288|632289|632290|632291|632292|632293|632294|632295|632296|632297|632298|632299|632300|632301|632302|632303|632304|632305|632306|632307|632308|632309|632310|632311|632312|632313|632314|632315|632316|632317|632318|632319|632320|632321|632322|632323|632324|632325|632326|632327|632328|632329|632330|632331|632332|632333|632334|632335|632336|632337|632338|632339|632340|632341|632342|632343|632344|632345|632346|632347|632348|632349|632350|632351|632352|632353|632354|632355|632356|632357|632358|632359|632360|632361|632362|632363|632364|632365|632366|632367|632368|632369|632370|632371|632372|632373|632374|632375|632376|632377|632378|632379|632380|632381|632382|632383|632384|632385|632386|632387|632388|632389|632390|632391|632392|632393|632394|632395|632396|632397|632398|632399|632400|632401|632402|632403|632404|632405|632406|632407|632408|632409|632410|632411|632412|632413|632414|632415|632416|632417|632418|632419|632420|632421|632422|632423|632424|632425|632426|632427|632428|632429|632430|632431|632432|632433|632434|632435|632436|650532|650537|650539|650551|650557|650563|650564|650566|650595|650596|650642|650644|650646|650649|650650|651116|651142|651148|651158|651159|651160|651161|651164|651180|651186|651187|651188|651193|651195|651197|651198|651200|651202|651213|651257|651261|651273|651277|657158|683293|683634|685162|686524|686527|686528|686529|686530|686531|686532|686533|686534|686535|686537|686538|686539|686540|686541|689755|690403|690404|690405|690406|690417|690420|690421|691573|691577|691579|691581|691583|691584|691585|691586|691587|691588|691589|691591|691592|691593|695239|698549|698550|698551|709391|720996|720997|720998|720999|721000|721001|721002|731863|734660|734661|745840|745844|748965|748967|748968|748969|748970|748971|748972|748973|748978|748979|748980|748982|758851|759310|759420|759425|759534|761325|761328|761331|761333|764495|764498|764500|764508|764509|764512|764513|764515|764516|764518|764522|764531|764534|764535|764537|764538|764545|764549|764551|764552|764553|764554|764555|774942|774959|774963|774968|774978|775111|777040|777482|779037|780365|780366|781972|781973|781974|781977|781978|781979|781980|781982|781984|781985|781987|781989|781991|781992|781994|787026|787214|787274|787284|787382|787457|789878|790478|806455|806457|806488|806490|806491|806492|806494|806495|806501|807745|807749|807751|807753|807757|807758|807762|807770|807781|815211|815319|818848|818851|818852|818853|818854|818855|818856|818857|818858|818859|818860|818863|818864|818865|818866|818867|818868|818869|818870|819430|819431|819432|819485|819486|819487|819488|819489|819490|819491|819492|822945|822946|822947|822948|822949|822950|822951|822952|822953|822954|822955|822956|822957|822958|822959|822960|822961|822962|822993|822994|822995|822996|822997|822998|822999|823000|823001|823002|823003|823004|823005|823006|823007|823008|823009|823010|823011|829224|829225|829226|829227|829228|829229|829230|829231|829232|829233|829234|829235|829236|829237|829238|829239|829240|829241|829242|829243|829244|829245|829246|829247|829248|829249|829250|829251|829252|829253|829254|829255|829256|829257|829258|829259|829260|829261|829262|829263|829264|829265|829266|829267|829268|829269|829270|829271|829272|829273|829274|829275|829276|829277|829278|829279|829280|829281|829282|829283|829284|829285|829286|829287|829288|829289|829290|829291|829292|829293|829294|829295|829296|829297|829298|829299|829300|829301|829302|829303|829304|829305|829306|829307|829308|829309|829310|829311|829312|829313|829314|829315|829316|829317|829318|829319|829320|829321|829322|829323|829324|829325|829326|829327|829328|829329|829330|829331|829332|829333|829334|829335|829336|829337|829338|829339|829340|829341|829342|829343|829344|829345|829346|829347|829348|829349|829350|829351|829352|829353|829354|829355|829356|829357|829358|829359|829360|829361|829362|829363|829364|829365|829366|829367|829368|829369|829370|829371|829372|829373|829374|829375|829376|829377|829378|829379|829380|829381|829382|829383|829384|829385|829386|829387|829388|829389|829390|829391|829392|829393|829394|829395|829396|829397|829398|829399|829400|829401|850733|850735|850742|850937|850990|850992|851126|851129|851131|851192|851506|851508|851510|851512|851516|851608|858441|890731|890732|890733|890734|890735|890736|890737|890738|890739|890740|890741|890742|890743|890744|890745|890746|890747|890748|890749|890750|890751|890752|890753|890754|890755|890756|890757|890758|890759|890760|890761|890762|890763|890764|890765|890766|890767|890768|890769|890770|890771|890772|890773|890774|890775|890776|890777|890778|890779|890780|890781|890782|890783|891799|891800|921722|921723|921724|921725|921726|921742|921743|921744|921745|921746|921747|921748|921749|921750|921751|921752|921753|921754|921755|921756|923534|923535|923536|923537|923538|923539|923540|923541|923542|923543|923544|923545|923546|923547|923548|923549|923550|923551|923552|923553|923554|923555|923556|923557|923558|923559|923560|923561|923562|923563|923564|923565|923566|923567|923568|923569|923570|923571|923572|923573|923574|923575|923576|923577|923578|923579|923580|923581|923582|923583|923584|923585|923586|923587|923588|923589|923590|923591|923592|930124|930125|930126|930127|930128|930129|930130|930131|930156|930157|930158|930159|930160|930161|930162|930163|930164|930165|930166|930167|930168|932373|932374|932375|932376|932377|932378|932379|932380|932381|932382|932383|932384|932385|932386|932387|932388|932389|932390|932391|932392|932393|932394|932395|932396|932397|932398|932399|932400|932401|932402|932403|932404|932405|932406|932407|932408|932409|932410|932411|932412|932413|932414|932415|932416|932417|932418|939780|939969|940607|940608|940609|940781|940782|941549|941550|941551|941552|941573|941574|941575|941576|941577|941578|941579|941580|944030|944031|944032|944033|944034|944035|944036|944037|944038|944039|944040|944041|944042|944043|944044|944045|944046|944047|944048|944049|944050|944051|944052|944053|944054|944055|944056|944057|944058|944059|944060|944061|944062|944063|944064|944065|944066|944067|944068|944069|944070|944071|944072|944073|944074|944075|944076|944077|944078|944079|944080|944081|944082|944083|944084|944085|944086|944087|944088|944089|944090|944091|944092|951977|952126|952127|952128|952129|952130|952131|952140|952141|952142|952143|952144|952145|952146|953792|953793|953794|953795|953796|953797|953798|953799|953800|953801|953802|953803|953804|953805|953806|953807|953808|953809|953810|953811|953812|953813|953814|953815|953816|953817|953818|953819|953820|953821|953822|953823|953824|953825|959527|959528|959531|959532|959726|959727|959728|959729|959730|959731|959732|959733|959734|960411|960540|960541", "text": "Gastrointestinal stromal tumor" }, { - "baseId": "18559|352627", + "upstreamId": "18559|352627", "text": "cyclophosphamide response - Toxicity/ADR" }, { - "baseId": "18559|227806", + "upstreamId": "18559|227806", "text": "carboplatin response - Efficacy" }, { - "baseId": "18559|18560|190849|276134|276302|276341|276373|276374|276588|276599|276607|276639|276642|276655|276681|276682|276684|276708|276711|558389|789826", + "upstreamId": "18559|18560|190849|276134|276302|276341|276373|276374|276588|276599|276607|276639|276642|276655|276681|276682|276684|276708|276711|558389|789826", "text": "Neural tube defects, folate-sensitive" }, { - "baseId": "18559", + "upstreamId": "18559", "text": "methotrexate response - Dosage, Efficacy, Toxicity/ADR" }, { - "baseId": "18559|28341|28349|40578|153725|153726|190849|249498|249500|249502|249503|249504|249505|249506|249507|249508|249510|249511|249512|249513|249514|249515|249516|249517|249518|249520|249521|249522|249523|249524|249525|249526|254180|254181|254182|254183|254184|254185|277166|277168|277179|277180|277191|277192|277194|277195|277214|277219|277220|277221|277222|277225|277248|277249|277250|277252|277253|277254|277257|277260|277262|277263|277270|277272|277273|277294|277416|277422|277423|277427|277428|277435|277443|277444|277452|277454|277458|277459|277466|277467|277468|277471|277472|277474|277480|277482|277486|277489|277492|277494|277498|277504|277505|278219|278222|278240|278256|278260|278261|278262|278263|278264|278267|278268|278269|278270|278271|278278|278280|278281|278288|278289|278291|278295|278297|278298|278305|278307|278309|278310|278312|278316|278317|278318|278325|278328|278329|278330|278332|278334|278336|278338|278340|278341|278342|278343|278350|278351|278352|278360|278364|278373|278374|278383|314178|314179|314187|314188|314190|314191|320729|320749|320751|320758|320767|320768|326803|326804|326811|327765|327768|327769|327773|557032|558220|615287|619964|679780|706851|718365|718370|724459|745824|768463|777016|862698|862699|862700|862701|862702|862703|862704|862705|862706|862707|862708|862709|862710|862711|862712|862713|862714|862715|862716|862717|862718|862719|862720|862721|862722|862723|862724|862725|862726|862727|862728|862729|862730|862731|862732|862733|862734|862735|862736|862737|862738|862739|862740|862741|862742|862743|862744|862745|862746|862747|862748|862750|862751|862752|862753|865026|865027|865028|868030|868031|868032|868033|868034|868035|868650|868651|868652", + "upstreamId": "18559|28341|28349|40578|153725|153726|190849|249498|249500|249502|249503|249504|249505|249506|249507|249508|249510|249511|249512|249513|249514|249515|249516|249517|249518|249520|249521|249522|249523|249524|249525|249526|254180|254181|254182|254183|254184|254185|277166|277168|277179|277180|277191|277192|277194|277195|277214|277219|277220|277221|277222|277225|277248|277249|277250|277252|277253|277254|277257|277260|277262|277263|277270|277272|277273|277294|277416|277422|277423|277427|277428|277435|277443|277444|277452|277454|277458|277459|277466|277467|277468|277471|277472|277474|277480|277482|277486|277489|277492|277494|277498|277504|277505|278219|278222|278240|278256|278260|278261|278262|278263|278264|278267|278268|278269|278270|278271|278278|278280|278281|278288|278289|278291|278295|278297|278298|278305|278307|278309|278310|278312|278316|278317|278318|278325|278328|278329|278330|278332|278334|278336|278338|278340|278341|278342|278343|278350|278351|278352|278360|278364|278373|278374|278383|314178|314179|314187|314188|314190|314191|320729|320749|320751|320758|320767|320768|326803|326804|326811|327765|327768|327769|327773|557032|558220|615287|619964|679780|706851|718365|718370|724459|745824|768463|777016|862698|862699|862700|862701|862702|862703|862704|862705|862706|862707|862708|862709|862710|862711|862712|862713|862714|862715|862716|862717|862718|862719|862720|862721|862722|862723|862724|862725|862726|862727|862728|862729|862730|862731|862732|862733|862734|862735|862736|862737|862738|862739|862740|862741|862742|862743|862744|862745|862746|862747|862748|862750|862751|862752|862753|865026|865027|865028|868030|868031|868032|868033|868034|868035|868650|868651|868652", "text": "Thrombophilia due to thrombin defect" }, { - "baseId": "18560|19921|19922|27975|31809|32631", + "upstreamId": "18560|19921|19922|27975|31809|32631", "text": "Schizophrenia, susceptibility to" }, { - "baseId": "18569|18570|291146|291147|291154|291160|291161|291163|291165|291166|291174|291175|292123|292125|292127|292128|295512|295514|295515|295516|295518|295528|295530|295670|295671|295672|295674|295675|519428|586113|631587|708944|720536|720537|734167|748384|748385|748386|764022|764023|764024|764025|764026|781748|781749|819293|828357|889405|889406|889407|889408|889409|889410|889411|889412|889413|889414|889415|889416|923273|932024|943628|943629|953548|953549|977979|977980|977981|977982", + "upstreamId": "18569|18570|291146|291147|291154|291160|291161|291163|291165|291166|291174|291175|292123|292125|292127|292128|295512|295514|295515|295516|295518|295528|295530|295670|295671|295672|295674|295675|519428|586113|631587|708944|720536|720537|734167|748384|748385|748386|764022|764023|764024|764025|764026|781748|781749|819293|828357|889405|889406|889407|889408|889409|889410|889411|889412|889413|889414|889415|889416|923273|932024|943628|943629|953548|953549|977979|977980|977981|977982", "text": "Deficiency of hyaluronoglucosaminidase" }, { - "baseId": "18571|39554|39589|48441|49863|50336|270015|270016|432334|551264|818298", + "upstreamId": "18571|39554|39589|48441|49863|50336|270015|270016|432334|551264|818298", "text": "Osteogenesis imperfecta type 12" }, { - "baseId": "18573|18574|18575|18576|18577|18578|18579|18580|18581|18582|18583|18584|304606|304607|304611|304614|304615|304623|304624|304631|308325|308327|308340|308342|308343|308344|308346|308349|313367|313376|313378|313380|313390|313391|313401|313402|313406|313409|313485|313488|313491|313492|313495|313496|313497|313509|313510|313511|313518|313527|313529|313533|700483|711406|711407|722941|722942|722945|722947|736535|736536|736537|736538|736539|736540|736541|751008|751009|751010|751012|751014|751015|759623|766640|766643|766646|766647|766648|766653|766654|766655|766656|766657|766659|766662|775218|775307|775310|775453|783041|783044|783046|783047|787456|899088|899089|899090|899091|899092|899093|899094|899095|899096|899097|899099|899100|899101|899102|899103|899104|899105|899106|899107|899108|899109|899110|899111|899112|899113|899114|899115|899116|900456|900458|978445|978446|978447|978448|978449|978450|978451|978452|978453|978454", + "upstreamId": "18573|18574|18575|18576|18577|18578|18579|18580|18581|18582|18583|18584|304606|304607|304611|304614|304615|304623|304624|304631|308325|308327|308340|308342|308343|308344|308346|308349|313367|313376|313378|313380|313390|313391|313401|313402|313406|313409|313485|313488|313491|313492|313495|313496|313497|313509|313510|313511|313518|313527|313529|313533|700483|711406|711407|722941|722942|722945|722947|736535|736536|736537|736538|736539|736540|736541|751008|751009|751010|751012|751014|751015|759623|766640|766643|766646|766647|766648|766653|766654|766655|766656|766657|766659|766662|775218|775307|775310|775453|783041|783044|783046|783047|787456|899088|899089|899090|899091|899092|899093|899094|899095|899096|899097|899099|899100|899101|899102|899103|899104|899105|899106|899107|899108|899109|899110|899111|899112|899113|899114|899115|899116|900456|900458|978445|978446|978447|978448|978449|978450|978451|978452|978453|978454", "text": "Hereditary acrodermatitis enteropathica" }, { - "baseId": "18585|18586|18587|18588|513045|513046|918788|918789|918790|920184", + "upstreamId": "18585|18586|18587|18588|513045|513046|918788|918789|918790|920184", "text": "Retinitis pigmentosa 56" }, { - "baseId": "18589|152869|171853|188984|590270", + "upstreamId": "18589|152869|171853|188984|590270", "text": "Macular dystrophy, vitelliform, 5" }, { - "baseId": "18590|133964|206584|206585|919552", + "upstreamId": "18590|133964|206584|206585|919552", "text": "Azorean disease" }, { - "baseId": "18590|19327|19329|19334|19374|19924|21117|22718|22719|24765|29284|29286|29292|38891|70810|76576|99352|99354|102612|102613|102614|102615|102616|102617|104135|205699|205700|205701|209422|215776|215777|215778|227175|282298|282301|282313|282315|282316|282317|282318|282322|283004|283007|283008|284548|284551|284553|284563|284576|284952|284957|284958|284959|284969|422174|539073|553248|553277|590519|621703|801562|881245|881246|881247|881248|881249|881250|881251|881252|881253|881254|881255|881256|881257|881258|881259|881260|881261|881262|882817|917820|918675", + "upstreamId": "18590|19327|19329|19334|19374|19924|21117|22718|22719|24765|29284|29286|29292|38891|70810|76576|99352|99354|102612|102613|102614|102615|102616|102617|104135|205699|205700|205701|209422|215776|215777|215778|227175|282298|282301|282313|282315|282316|282317|282318|282322|283004|283007|283008|284548|284551|284553|284563|284576|284952|284957|284958|284959|284969|422174|539073|553248|553277|590519|621703|801562|881245|881246|881247|881248|881249|881250|881251|881252|881253|881254|881255|881256|881257|881258|881259|881260|881261|881262|882817|917820|918675", "text": "Parkinson disease, late-onset" }, { - "baseId": "18591|18592|18593|18594|18595|18596|70882|70883|70884|70885|70886|70887|70888|70889|70890|70891|70892|70893|70894|70895|70896|70897|70898|70899|70900|70901|70902|70903|70904|70905|70906|70907|70908|70909|70910|70911|70912|70913|70914|70915|70916|70917|70918|70919|70920|70921|70922|70923|70924|70925|70926|70927|70928|70929|70930|70931|70932|70933|70934|70935|99410|106584|134224|134225|134226|140483|140486|140488|140491|140492|190778|194871|194873|203258|203262|203273|203276|203280|203281|203288|203292|324885|324886|324887|324893|324895|324896|324903|324904|334497|334499|334502|334506|334507|334510|334518|341059|341060|341073|341075|342609|342612|342613|342620|358366|358367|358368|358369|358370|358371|358372|358373|358374|358375|409585|431789|431856|445556|466598|488832|488903|505547|506265|529889|547726|547744|547745|547747|547751|547757|547771|547999|548002|548476|548482|548484|574007|621850|653990|685418|801555|875048|875049|875050|875051|875052|875053|875054|875055|875056|875057|875058|876648|904206|972228", + "upstreamId": "18591|18592|18593|18594|18595|18596|70882|70883|70884|70885|70886|70887|70888|70889|70890|70891|70892|70893|70894|70895|70896|70897|70898|70899|70900|70901|70902|70903|70904|70905|70906|70907|70908|70909|70910|70911|70912|70913|70914|70915|70916|70917|70918|70919|70920|70921|70922|70923|70924|70925|70926|70927|70928|70929|70930|70931|70932|70933|70934|70935|99410|106584|134224|134225|134226|140483|140486|140488|140491|140492|190778|194871|194873|203258|203262|203273|203276|203280|203281|203288|203292|324885|324886|324887|324893|324895|324896|324903|324904|334497|334499|334502|334506|334507|334510|334518|341059|341060|341073|341075|342609|342612|342613|342620|358366|358367|358368|358369|358370|358371|358372|358373|358374|358375|409585|431789|431856|445556|466598|488832|488903|505547|506265|529889|547726|547744|547745|547747|547751|547757|547771|547999|548002|548476|548482|548484|574007|621850|653990|685418|801555|875048|875049|875050|875051|875052|875053|875054|875055|875056|875057|875058|876648|904206|972228", "text": "Neuronal ceroid lipofuscinosis 3" }, { - "baseId": "18595|18596|70928|181569", + "upstreamId": "18595|18596|70928|181569", "text": "Ceroid lipofuscinosis, neuronal, 3, protracted" }, { - "baseId": "18595|203258|976713|976720|976721|976722|976723", + "upstreamId": "18595|203258|976713|976720|976721|976722|976723", "text": "early onset and severe retinal dystrophy" }, { - "baseId": "18597|18598", + "upstreamId": "18597|18598", "text": "Apocrine gland secretion, variation in" }, { - "baseId": "18597", + "upstreamId": "18597", "text": "Axillary odor" }, { - "baseId": "18597", + "upstreamId": "18597", "text": "Colostrum secretion" }, { - "baseId": "18599|18600|57117|106526|106527|175784|175788|215510|215511|230615|389206|389247|612162|614517|622432|625877|626242|672206|857686", + "upstreamId": "18599|18600|57117|106526|106527|175784|175788|215510|215511|230615|389206|389247|612162|614517|622432|625877|626242|672206|857686", "text": "Deafness, autosomal recessive 22" }, { - "baseId": "18601|18602", + "upstreamId": "18601|18602", "text": "Isovaleric acidemia, type I" }, { - "baseId": "18602|18606|18607|99951|99952|99955|99956|99957|99958|99959|99960|177782|186929|186930|186931|186932|195641|200287|200289|200290|200291|200292|255171|260065|264619|268474|273440|322394|322398|322399|322405|322406|322411|322413|322414|322415|322419|322427|322429|322434|322436|322437|331703|331705|331706|331708|331712|331714|331723|331727|331730|331732|331734|331736|331738|331744|331745|338690|338691|338693|338698|338701|338704|338705|338706|338716|338723|338726|338734|340376|340378|340379|358294|358295|358296|358297|358298|358299|358300|358301|360185|373411|373417|374074|374076|374487|445310|464753|464758|465003|465005|465007|465017|465019|465021|482064|504741|504748|504750|504754|505233|505235|528766|529149|529159|529288|547389|547393|547395|547397|547399|547410|547415|547480|547483|547484|547677|547685|547687|547689|547691|548001|548005|548010|548012|567013|573225|578519|581771|612307|615781|623116|650365|650368|650370|650373|650374|650378|650379|650380|652500|695641|730985|739578|754401|770126|770127|776357|784905|791444|791445|791446|820691|820692|820693|820694|820757|842281|842282|842283|842284|842285|842286|842287|842288|851610|873347|873348|873349|873350|873351|873352|873353|873354|873355|873356|873357|873358|873359|873360|873361|873362|873363|873364|873365|873366|873367|873368|873369|873370|873371|873372|873373|873374|873375|873376|873377|873378|873379|873380|873381|873382|876493|903602|927309|936914|948869|948870|957405|957406|960821|966799|979593|979594|979595|979596|979597|979598|979599|979600", + "upstreamId": "18602|18606|18607|99951|99952|99955|99956|99957|99958|99959|99960|177782|186929|186930|186931|186932|195641|200287|200289|200290|200291|200292|255171|260065|264619|268474|273440|322394|322398|322399|322405|322406|322411|322413|322414|322415|322419|322427|322429|322434|322436|322437|331703|331705|331706|331708|331712|331714|331723|331727|331730|331732|331734|331736|331738|331744|331745|338690|338691|338693|338698|338701|338704|338705|338706|338716|338723|338726|338734|340376|340378|340379|358294|358295|358296|358297|358298|358299|358300|358301|360185|373411|373417|374074|374076|374487|445310|464753|464758|465003|465005|465007|465017|465019|465021|482064|504741|504748|504750|504754|505233|505235|528766|529149|529159|529288|547389|547393|547395|547397|547399|547410|547415|547480|547483|547484|547677|547685|547687|547689|547691|548001|548005|548010|548012|567013|573225|578519|581771|612307|615781|623116|650365|650368|650370|650373|650374|650378|650379|650380|652500|695641|730985|739578|754401|770126|770127|776357|784905|791444|791445|791446|820691|820692|820693|820694|820757|842281|842282|842283|842284|842285|842286|842287|842288|851610|873347|873348|873349|873350|873351|873352|873353|873354|873355|873356|873357|873358|873359|873360|873361|873362|873363|873364|873365|873366|873367|873368|873369|873370|873371|873372|873373|873374|873375|873376|873377|873378|873379|873380|873381|873382|876493|903602|927309|936914|948869|948870|957405|957406|960821|966799|979593|979594|979595|979596|979597|979598|979599|979600", "text": "Isovaleryl-CoA dehydrogenase deficiency" }, { - "baseId": "18603", + "upstreamId": "18603", "text": "Isovaleric acidemia, type III" }, { - "baseId": "18604", + "upstreamId": "18604", "text": "Isovaleric acidemia, type II" }, { - "baseId": "18608|18610|18613|20488|21184|24381|24385|27386|27395|27397|27405|28691|28692|28693|28696|28938|28940|32616|32617|32618|32620|32621|32622|32623|32625|48304|54633|100947|139019|139020|139021|139021|139022|139022|139023|139024|139024|139024|139025|151595|151955|166215|182945|185350|213595|226759|226760|236461|236462|236469|239271|240721|240721|240722|240722|240723|240724|240724|240725|240726|240727|240727|240728|240729|240729|240730|240731|240731|240732|240732|242980|245074|253669|309272|309280|309282|309283|309285|309286|309291|309296|309298|309299|309306|309308|309311|309312|309328|309329|313963|313979|313981|313983|313988|313996|314004|314005|319845|319852|319853|319855|319856|319860|319861|319862|319864|319865|319866|319870|319883|319897|319900|320407|320408|320411|320419|320419|320423|320424|320425|320429|320438|320442|320443|320445|320446|362755|362768|362770|362771|362772|362773|362777|362778|362817|362894|362933|363107|363108|363109|363110|363112|363113|363114|363265|363266|363267|363269|363270|363271|363272|363280|363281|363293|363294|363295|363296|363297|363307|363308|363309|363339|363357|363360|363370|363412|363528|363531|363532|363533|363534|363535|363552|397073|397077|397089|397092|397095|397098|397101|397103|397103|397335|397335|397340|397343|397349|397350|397351|397359|397360|397364|397369|397372|397525|397526|397528|397533|397533|397535|397537|397637|397637|397640|397642|397646|397646|397649|397651|397654|397658|397659|397662|397664|397670|432390|432392|432393|432397|432398|432399|432402|432415|432419|439503|448122|448169|459605|459611|459616|459617|459620|459622|459624|459632|459641|459647|459830|459831|459831|459839|459842|459844|459847|459854|459856|460058|460066|460071|460074|460079|460083|460089|460091|460470|460471|460481|460489|460493|460500|460502|460505|460507|460508|460514|460520|460522|460522|463691|475061|475063|475238|475240|475248|475248|503550|503554|515929|524863|524881|524894|524896|524904|524906|524907|524918|525119|525121|525125|525129|525134|525136|525250|525254|525257|525260|525261|525267|525269|525271|525274|525279|525286|525443|525448|525449|525451|525459|558529|563383|563517|563526|563529|563531|563537|563541|563548|563551|563554|563556|564403|564461|564462|564463|564464|564471|564472|564473|564477|566122|566126|566128|566133|566134|566136|569446|569447|569453|569454|569455|569456|569463|569464|620341|638673|638674|638675|638676|638677|638678|638679|638680|638681|638682|638683|638684|638685|638686|638687|638688|638689|638690|638691|638692|638693|638694|638695|638696|638697|638698|638699|638700|638701|638702|638703|638704|638705|651997|652024|652086|652122|652239|652310|677051|684126|687581|687584|687585|689969|692763|692766|695466|701150|701151|712131|723735|737311|737312|751925|759855|767597|767604|775455|783524|783525|809809|809810|809811|809818|809824|809828|809830|809834|809842|809843|809855|809859|809860|836564|836565|836566|836567|836568|836569|836570|836571|836572|836573|836574|836575|836576|836577|836578|836579|836580|836581|836582|836583|836584|836585|836586|836587|836588|836589|836590|836591|836592|836593|836594|836595|836596|851363|851365|852539|852543|852544|865294|865295|865296|865297|865298|865299|865300|865301|865302|865303|865304|865305|865306|865307|865308|865309|865310|865311|865312|865313|865314|865315|865316|868429|925724|925725|925726|925727|925728|925729|925730|925731|925732|925733|925734|934926|934927|934928|934929|934930|934931|934932|934933|934934|934935|934936|934937|946792|946793|946794|946795|946796|946797|946798|946799|946800|946801|946802|946803|955968|955969|955970|955971|959927|960711|960712", + "upstreamId": "18608|18610|18613|20488|21184|24381|24385|27386|27395|27397|27405|28691|28692|28693|28696|28938|28940|32616|32617|32618|32620|32621|32622|32623|32625|48304|54633|100947|139019|139020|139021|139021|139022|139022|139023|139024|139024|139024|139025|151595|151955|166215|182945|185350|213595|226759|226760|236461|236462|236469|239271|240721|240721|240722|240722|240723|240724|240724|240725|240726|240727|240727|240728|240729|240729|240730|240731|240731|240732|240732|242980|245074|253669|309272|309280|309282|309283|309285|309286|309291|309296|309298|309299|309306|309308|309311|309312|309328|309329|313963|313979|313981|313983|313988|313996|314004|314005|319845|319852|319853|319855|319856|319860|319861|319862|319864|319865|319866|319870|319883|319897|319900|320407|320408|320411|320419|320419|320423|320424|320425|320429|320438|320442|320443|320445|320446|362755|362768|362770|362771|362772|362773|362777|362778|362817|362894|362933|363107|363108|363109|363110|363112|363113|363114|363265|363266|363267|363269|363270|363271|363272|363280|363281|363293|363294|363295|363296|363297|363307|363308|363309|363339|363357|363360|363370|363412|363528|363531|363532|363533|363534|363535|363552|397073|397077|397089|397092|397095|397098|397101|397103|397103|397335|397335|397340|397343|397349|397350|397351|397359|397360|397364|397369|397372|397525|397526|397528|397533|397533|397535|397537|397637|397637|397640|397642|397646|397646|397649|397651|397654|397658|397659|397662|397664|397670|432390|432392|432393|432397|432398|432399|432402|432415|432419|439503|448122|448169|459605|459611|459616|459617|459620|459622|459624|459632|459641|459647|459830|459831|459831|459839|459842|459844|459847|459854|459856|460058|460066|460071|460074|460079|460083|460089|460091|460470|460471|460481|460489|460493|460500|460502|460505|460507|460508|460514|460520|460522|460522|463691|475061|475063|475238|475240|475248|475248|503550|503554|515929|524863|524881|524894|524896|524904|524906|524907|524918|525119|525121|525125|525129|525134|525136|525250|525254|525257|525260|525261|525267|525269|525271|525274|525279|525286|525443|525448|525449|525451|525459|558529|563383|563517|563526|563529|563531|563537|563541|563548|563551|563554|563556|564403|564461|564462|564463|564464|564471|564472|564473|564477|566122|566126|566128|566133|566134|566136|569446|569447|569453|569454|569455|569456|569463|569464|620341|638673|638674|638675|638676|638677|638678|638679|638680|638681|638682|638683|638684|638685|638686|638687|638688|638689|638690|638691|638692|638693|638694|638695|638696|638697|638698|638699|638700|638701|638702|638703|638704|638705|651997|652024|652086|652122|652239|652310|677051|684126|687581|687584|687585|689969|692763|692766|695466|701150|701151|712131|723735|737311|737312|751925|759855|767597|767604|775455|783524|783525|809809|809810|809811|809818|809824|809828|809830|809834|809842|809843|809855|809859|809860|836564|836565|836566|836567|836568|836569|836570|836571|836572|836573|836574|836575|836576|836577|836578|836579|836580|836581|836582|836583|836584|836585|836586|836587|836588|836589|836590|836591|836592|836593|836594|836595|836596|851363|851365|852539|852543|852544|865294|865295|865296|865297|865298|865299|865300|865301|865302|865303|865304|865305|865306|865307|865308|865309|865310|865311|865312|865313|865314|865315|865316|868429|925724|925725|925726|925727|925728|925729|925730|925731|925732|925733|925734|934926|934927|934928|934929|934930|934931|934932|934933|934934|934935|934936|934937|946792|946793|946794|946795|946796|946797|946798|946799|946800|946801|946802|946803|955968|955969|955970|955971|959927|960711|960712", "text": "Medulloblastoma" }, { - "baseId": "18609|18610|18611|18613", + "upstreamId": "18609|18610|18611|18613", "text": "Medulloblastoma, desmoplastic" }, { - "baseId": "18610|18610|18613|21184|21186|23250|23251|23252|23253|23254|23255|23256|23257|23260|23261|23262|23263|23265|45752|50093|50094|50095|50096|50098|50099|50100|50101|50102|50103|50104|50105|50106|98605|136432|136446|136447|136448|136467|136471|136474|136479|136483|136486|136501|136501|138832|138833|138834|138835|138836|138837|138838|138839|138840|138841|138842|138843|138844|138844|138845|138846|138848|138849|139019|139020|139021|139022|139022|139023|139024|139024|139025|139578|139579|139580|139581|139582|139583|139584|139585|139586|139587|139588|139589|139590|139591|139592|139593|139594|139595|139596|139597|139598|139599|139600|139601|139602|139603|139604|139605|139606|139607|139608|139609|139610|139611|139612|139613|139615|139616|139617|139618|139619|139620|142537|166132|171114|171115|171116|172176|177129|181212|181213|186098|186099|186099|186100|186101|186102|186103|186104|186105|186106|186107|186108|186108|186109|186110|186111|186112|186113|186113|192882|212691|212692|212694|212695|212696|212697|212698|212699|212700|212701|212702|212703|212704|212705|212706|212707|212708|212709|212710|212711|212713|212714|212715|212716|212717|212718|212719|212720|212720|212721|212722|212723|212725|212726|212728|212729|212730|212731|212732|212733|212734|212735|212736|212737|212738|212739|212741|212742|212743|212744|212745|212746|212747|212748|212749|212750|212751|212752|212753|212756|212757|212758|212759|212761|213945|213946|213947|213948|213949|214913|221864|221865|221866|221867|221868|221869|221870|221872|221873|221873|221874|221875|221876|221877|221878|221879|221880|221881|221882|221883|221884|221885|221886|221887|221888|221889|221890|221891|221892|221893|221894|221895|221896|221897|221898|221899|221900|221902|221902|221903|221905|221907|221908|221909|221911|221912|221913|221915|221916|221917|221918|221919|221920|221921|221922|221923|221924|221925|221926|221927|221928|221929|221930|221931|221932|223628|223629|227194|227846|238298|238299|238300|238301|238302|238303|238304|238305|238306|238307|238308|238309|240644|240645|240646|240647|240648|240649|240650|240651|240653|240654|240655|240656|240657|240658|240659|240660|240661|240662|240663|240664|240666|240667|240669|240670|240671|240673|240674|240675|240676|240677|240678|240679|240679|240680|240681|240682|240683|240684|240685|240686|240687|240688|240689|240690|240691|240693|240694|240695|240696|240697|240698|240699|240700|240701|240702|240721|240722|240723|240724|240725|240726|240727|240728|240729|240730|240731|240732|246887|253602|253604|253606|253609|253611|253612|253613|308953|308958|308959|308963|308970|308971|308972|308973|308984|308986|308996|308997|309001|309003|313687|313688|313689|313700|313707|313727|313728|313729|313730|313742|313752|313756|313757|313758|313762|313764|313765|313766|319438|319452|319454|319455|319456|319483|319485|319486|319488|319501|319506|319510|319512|319525|319564|319578|320059|320060|320065|320067|320070|320074|320096|320097|320120|320121|320126|320128|320137|320140|320156|320159|320419|361199|370547|370551|371061|371062|371070|371081|371416|371418|371419|371433|373245|391253|391256|391259|391262|391268|391273|391275|391282|391283|391285|391290|391293|391295|391318|391326|391423|391425|391426|391429|396359|396362|396919|396921|396927|396929|396940|396942|396943|396951|396958|396960|396963|396968|396971|396973|396974|396976|396979|396984|396990|396991|397003|397010|397012|397014|397017|397022|397023|397026|397026|397028|397031|397033|397034|397035|397073|397077|397089|397092|397095|397098|397101|397103|397163|397167|397168|397169|397170|397172|397175|397179|397182|397185|397188|397194|397204|397205|397210|397212|397216|397217|397218|397220|397222|397230|397232|397242|397247|397250|397254|397258|397265|397335|397335|397337|397340|397341|397342|397343|397344|397348|397349|397350|397351|397359|397359|397360|397361|397364|397365|397366|397369|397370|397372|397376|397380|397382|397385|397387|397390|397393|397394|397402|397411|397421|397423|397429|397431|397434|397435|397440|397440|397442|397446|397447|397448|397450|397454|397455|397457|397462|397466|397490|397491|397493|397495|397495|397498|397501|397503|397506|397507|397507|397510|397517|397521|397525|397526|397527|397528|397532|397533|397534|397535|397537|397542|397543|397547|397558|397560|397562|397563|397570|397572|397574|397577|397637|397640|397642|397646|397649|397651|397654|397658|397659|397662|397664|397670|407780|407781|407785|407790|420463|420470|420477|420480|420487|420488|420494|420495|420497|425376|439503|447917|447921|447924|447929|447934|447935|448119|448122|448122|448127|448128|448130|448147|448149|448150|448158|448167|448169|448169|448252|448263|448266|448267|448284|448286|448287|458665|459354|459356|459378|459380|459382|459383|459386|459388|459389|459393|459396|459399|459401|459406|459407|459414|459426|459430|459432|459434|459437|459445|459454|459457|459459|459461|459464|459466|459467|459473|459477|459479|459481|459485|459487|459488|459605|459611|459616|459617|459620|459621|459622|459624|459625|459627|459632|459635|459638|459640|459641|459642|459644|459647|459650|459655|459660|459662|459663|459666|459668|459670|459671|459675|459679|459684|459685|459694|459704|459706|459711|459713|459715|459722|459723|459726|459728|459729|459739|459748|459750|459753|459755|459757|459759|459760|459765|459773|459775|459781|459782|459788|459789|459795|459796|459800|459801|459802|459804|459806|459820|459824|459830|459831|459833|459834|459838|459839|459840|459842|459843|459844|459846|459847|459852|459853|459854|459856|459859|459864|459866|459869|459870|459874|459881|459883|459885|459891|459896|459899|459901|459928|459935|459937|459952|459953|459955|459957|460058|460066|460071|460074|460079|460083|460089|460091|460245|460249|460252|460256|460258|460260|460266|460269|460277|460279|460283|460286|460293|460295|460301|460306|460311|460321|460322|460323|460324|460333|460340|460341|460343|460345|460352|460353|460470|460471|460481|460489|460493|460500|460502|460505|460507|460508|460514|460520|460522|460522|474933|474934|474936|474937|474942|474951|474955|474958|474973|474981|474983|474983|474994|475004|475005|475011|475013|475013|475021|475023|475032|475061|475063|475138|475139|475140|475142|475145|475153|475154|475156|475157|475159|475161|475165|475169|475171|475172|475173|475181|475187|475238|475248|475248|481450|488135|493412|502712|503072|503550|503554|511847|513589|515919|515923|515925|515926|515928|515929|515929|515930|515932|515936|515968|515971|515973|515975|515976|515980|515982|515984|515989|515998|516015|516016|516018|516027|516029|516032|516034|516041|516047|516049|516052|524720|524725|524729|524729|524732|524735|524736|524737|524738|524751|524755|524756|524762|524766|524767|524773|524774|524778|524780|524784|524793|524794|524795|524798|524801|524806|524809|524815|524817|524823|524863|524881|524894|524896|524904|524906|524907|524918|524957|524960|524963|524967|524970|524971|524975|524977|524981|524988|524990|524996|525000|525005|525007|525022|525023|525027|525028|525031|525033|525036|525042|525043|525048|525051|525053|525080|525081|525083|525085|525091|525096|525097|525104|525117|525119|525121|525124|525125|525128|525129|525131|525134|525136|525140|525144|525145|525150|525152|525155|525156|525159|525168|525171|525173|525182|525185|525191|525191|525197|525202|525205|525207|525213|525216|525250|525254|525257|525260|525261|525267|525268|525269|525270|525271|525274|525275|525278|525279|525280|525285|525286|525289|525296|525298|525305|525307|525310|525311|525313|525316|525316|525318|525322|525327|525328|525330|525333|525339|525341|525344|525346|525351|525354|525355|525356|525360|525361|525362|525363|525367|525443|525448|525449|525451|525459|538411|551302|551302|552143|553156|557067|557069|557071|557073|557288|557290|557292|557294|557345|557347|557349|558523|558525|558527|558529|558529|558531|563220|563344|563347|563347|563357|563359|563361|563363|563368|563374|563377|563383|563391|563395|563398|563405|563407|563410|563411|563413|563419|563420|563422|563426|563429|563430|563437|563441|563442|563446|563517|563526|563529|563531|563537|563541|563548|563551|563554|563556|564181|564187|564189|564197|564214|564225|564225|564227|564229|564234|564236|564240|564241|564248|564256|564259|564260|564261|564272|564285|564287|564290|564296|564299|564309|564310|564311|564311|564322|564323|564327|564329|564337|564340|564346|564347|564403|564461|564462|564463|564464|564471|564472|564473|564477|566016|566019|566022|566028|566030|566034|566035|566037|566045|566051|566058|566060|566061|566062|566065|566069|566077|566081|566082|566122|566126|566128|566133|566134|566136|568292|569218|569225|569235|569240|569250|569253|569258|569264|569265|569269|569271|569281|569284|569287|569288|569290|569291|569300|569303|569312|569313|569318|569327|569329|569339|569446|569447|569453|569454|569455|569456|569463|569464|611977|612004|612005|612006|612007|612008|612056|615939|628033|628034|628035|628036|628037|628038|628039|628040|628041|628042|628043|628044|628045|628046|628047|628048|628049|628050|628051|628052|628053|628054|628055|628056|628057|628058|628059|628060|628061|628062|628063|628064|628065|638447|638448|638449|638450|638451|638452|638453|638454|638455|638456|638457|638458|638459|638460|638461|638462|638463|638464|638465|638466|638467|638468|638469|638470|638471|638472|638473|638474|638475|638476|638477|638478|638479|638480|638481|638482|638483|638484|638485|638486|638487|638488|638489|638490|638491|638492|638493|638494|638495|638496|638497|638498|638499|638500|638501|638502|638503|638504|638505|638506|638507|638508|638509|638510|638511|638512|638513|638514|638515|638516|638517|638518|638519|638520|638521|638522|638523|638524|638525|638526|638527|638528|638529|638530|638531|638532|638533|638534|638535|638536|638537|638538|638539|638540|638541|638542|638543|638544|638545|638546|638547|638548|638549|638550|638551|638552|638553|638554|638555|638556|638557|638558|638559|638560|638561|638562|638563|638564|638565|638566|638567|638568|638569|638570|638571|638572|638573|638574|638575|638576|638577|638578|638579|638580|638581|638582|638583|638584|638585|638586|638587|638588|638589|638590|638591|638592|638593|638594|638595|638596|638673|638674|638675|638676|638677|638678|638679|638680|638681|638682|638683|638684|638685|638686|638687|638688|638689|638690|638691|638692|638693|638694|638695|638696|638697|638698|638699|638700|638701|638702|638703|638704|638705|651870|651975|651981|651984|651985|651987|651997|652024|652063|652065|652072|652076|652086|652122|652228|652239|652310|679664|683360|683361|683362|683363|683364|683365|683366|683367|683368|683369|683370|683371|683372|683373|684121|684122|684123|684126|685105|685106|685797|685800|685801|685802|685803|685805|685806|685808|685809|685810|687554|687555|687558|687559|687561|687563|687564|687565|687566|687567|687581|687584|687585|689667|689969|690620|690621|692718|692720|692721|692722|692723|692724|692725|692727|692730|692732|692734|692735|692736|692737|692738|692740|692742|692744|692763|692766|695459|695460|695461|695462|695463|695466|701150|701151|712085|712086|712087|712088|712089|712131|723671|723672|723673|723735|730008|732487|737252|737311|737312|744528|744571|751844|751845|751847|751850|751851|751854|751855|751857|751925|759855|761963|767529|767532|767535|767539|767540|767544|767546|767553|767597|767604|775455|775586|778016|783488|783492|783495|783498|783524|783525|789971|790930|790931|790932|790936|790937|790938|798623|809510|809519|809528|809532|809541|809542|809547|809549|809550|809551|809552|809565|809568|809570|809572|809574|809586|809588|809590|809593|809596|809603|809604|809606|809609|809610|809612|809619|809620|809629|809644|809653|809655|809656|809660|809661|809662|809809|809810|809811|809818|809824|809828|809830|809834|809842|809843|809855|809859|809860|815414|818971|818972|820179|820180|820181|820182|822031|822032|824139|824140|824141|824142|824143|824144|824145|824146|824147|824148|824149|824150|824151|824152|824153|824154|824155|824156|824157|824158|824159|824160|824161|824162|824163|824164|836347|836348|836349|836350|836351|836352|836353|836354|836355|836356|836357|836358|836359|836360|836361|836362|836363|836364|836365|836366|836367|836368|836369|836370|836371|836372|836373|836374|836375|836376|836377|836378|836379|836380|836381|836382|836383|836384|836385|836386|836387|836388|836389|836390|836391|836392|836393|836394|836395|836396|836397|836398|836399|836400|836401|836402|836403|836404|836405|836406|836407|836408|836409|836410|836411|836412|836413|836414|836415|836416|836417|836418|836419|836420|836421|836422|836423|836424|836425|836426|836427|836428|836429|836430|836431|836432|836433|836434|836435|836436|836437|836438|836439|836440|836441|836442|836443|836444|836445|836446|836447|836448|836449|836450|836451|836452|836453|836454|836455|836456|836457|836458|836459|836564|836565|836566|836567|836568|836569|836570|836571|836572|836573|836574|836575|836576|836577|836578|836579|836580|836581|836582|836583|836584|836585|836586|836587|836588|836589|836590|836591|836592|836593|836594|836595|836596|850698|850790|850792|850794|850979|851307|851309|851359|851361|851363|851365|851750|851752|851754|851756|852220|852227|852530|852535|852539|852543|852544|902559|902560|902561|902562|902563|902564|902565|902566|902567|902568|902569|902570|902571|902572|902573|902574|902575|902576|902577|902578|902579|902580|902581|902582|902583|902584|902585|902586|902587|902588|902589|902590|902591|902592|902593|902594|903446|906284|922079|922080|922081|922082|922083|922084|922085|922086|922087|922088|922089|922090|922091|925653|925654|925655|925656|925657|925658|925659|925660|925661|925662|925663|925664|925665|925666|925667|925668|925669|925670|925671|925672|925673|925674|925675|925676|925677|925678|925679|925680|925681|925682|925683|925684|925685|925686|925687|925688|925689|925724|925725|925726|925727|925728|925729|925730|925731|925732|925733|925734|929887|930556|930557|930558|930559|930560|930561|930562|930563|930564|930565|934841|934842|934843|934844|934845|934846|934847|934848|934849|934850|934851|934852|934853|934854|934855|934856|934857|934858|934859|934860|934861|934862|934863|934864|934865|934866|934867|934868|934869|934870|934871|934872|934873|934874|934875|934876|934926|934927|934928|934929|934930|934931|934932|934933|934934|934935|934936|934937|940158|940159|940160|940161|940945|940946|940947|941997|941998|941999|942000|942001|942002|942003|942004|946699|946700|946701|946702|946703|946704|946705|946706|946707|946708|946709|946710|946711|946712|946713|946714|946715|946716|946717|946718|946719|946720|946721|946722|946723|946724|946725|946726|946727|946728|946729|946730|946731|946732|946733|946734|946735|946736|946737|946738|946739|946792|946793|946794|946795|946796|946797|946798|946799|946800|946801|946802|946803|952443|952444|952445|952446|952447|952448|952449|955913|955914|955915|955916|955917|955918|955919|955920|955921|955922|955923|955924|955925|955926|955927|955928|955929|955930|955931|955932|955933|955934|955935|955936|955937|955938|955939|955940|955941|955942|955943|955944|955945|955946|955968|955969|955970|955971|959924|959925|959927|960432|960708|960711|960712|961519|964335|964336|966345|974487", + "upstreamId": "18610|18610|18613|21184|21186|23250|23251|23252|23253|23254|23255|23256|23257|23260|23261|23262|23263|23265|45752|50093|50094|50095|50096|50098|50099|50100|50101|50102|50103|50104|50105|50106|98605|136432|136446|136447|136448|136467|136471|136474|136479|136483|136486|136501|136501|138832|138833|138834|138835|138836|138837|138838|138839|138840|138841|138842|138843|138844|138844|138845|138846|138848|138849|139019|139020|139021|139022|139022|139023|139024|139024|139025|139578|139579|139580|139581|139582|139583|139584|139585|139586|139587|139588|139589|139590|139591|139592|139593|139594|139595|139596|139597|139598|139599|139600|139601|139602|139603|139604|139605|139606|139607|139608|139609|139610|139611|139612|139613|139615|139616|139617|139618|139619|139620|142537|166132|171114|171115|171116|172176|177129|181212|181213|186098|186099|186099|186100|186101|186102|186103|186104|186105|186106|186107|186108|186108|186109|186110|186111|186112|186113|186113|192882|212691|212692|212694|212695|212696|212697|212698|212699|212700|212701|212702|212703|212704|212705|212706|212707|212708|212709|212710|212711|212713|212714|212715|212716|212717|212718|212719|212720|212720|212721|212722|212723|212725|212726|212728|212729|212730|212731|212732|212733|212734|212735|212736|212737|212738|212739|212741|212742|212743|212744|212745|212746|212747|212748|212749|212750|212751|212752|212753|212756|212757|212758|212759|212761|213945|213946|213947|213948|213949|214913|221864|221865|221866|221867|221868|221869|221870|221872|221873|221873|221874|221875|221876|221877|221878|221879|221880|221881|221882|221883|221884|221885|221886|221887|221888|221889|221890|221891|221892|221893|221894|221895|221896|221897|221898|221899|221900|221902|221902|221903|221905|221907|221908|221909|221911|221912|221913|221915|221916|221917|221918|221919|221920|221921|221922|221923|221924|221925|221926|221927|221928|221929|221930|221931|221932|223628|223629|227194|227846|238298|238299|238300|238301|238302|238303|238304|238305|238306|238307|238308|238309|240644|240645|240646|240647|240648|240649|240650|240651|240653|240654|240655|240656|240657|240658|240659|240660|240661|240662|240663|240664|240666|240667|240669|240670|240671|240673|240674|240675|240676|240677|240678|240679|240679|240680|240681|240682|240683|240684|240685|240686|240687|240688|240689|240690|240691|240693|240694|240695|240696|240697|240698|240699|240700|240701|240702|240721|240722|240723|240724|240725|240726|240727|240728|240729|240730|240731|240732|246887|253602|253604|253606|253609|253611|253612|253613|308953|308958|308959|308963|308970|308971|308972|308973|308984|308986|308996|308997|309001|309003|313687|313688|313689|313700|313707|313727|313728|313729|313730|313742|313752|313756|313757|313758|313762|313764|313765|313766|319438|319452|319454|319455|319456|319483|319485|319486|319488|319501|319506|319510|319512|319525|319564|319578|320059|320060|320065|320067|320070|320074|320096|320097|320120|320121|320126|320128|320137|320140|320156|320159|320419|361199|370547|370551|371061|371062|371070|371081|371416|371418|371419|371433|373245|391253|391256|391259|391262|391268|391273|391275|391282|391283|391285|391290|391293|391295|391318|391326|391423|391425|391426|391429|396359|396362|396919|396921|396927|396929|396940|396942|396943|396951|396958|396960|396963|396968|396971|396973|396974|396976|396979|396984|396990|396991|397003|397010|397012|397014|397017|397022|397023|397026|397026|397028|397031|397033|397034|397035|397073|397077|397089|397092|397095|397098|397101|397103|397163|397167|397168|397169|397170|397172|397175|397179|397182|397185|397188|397194|397204|397205|397210|397212|397216|397217|397218|397220|397222|397230|397232|397242|397247|397250|397254|397258|397265|397335|397335|397337|397340|397341|397342|397343|397344|397348|397349|397350|397351|397359|397359|397360|397361|397364|397365|397366|397369|397370|397372|397376|397380|397382|397385|397387|397390|397393|397394|397402|397411|397421|397423|397429|397431|397434|397435|397440|397440|397442|397446|397447|397448|397450|397454|397455|397457|397462|397466|397490|397491|397493|397495|397495|397498|397501|397503|397506|397507|397507|397510|397517|397521|397525|397526|397527|397528|397532|397533|397534|397535|397537|397542|397543|397547|397558|397560|397562|397563|397570|397572|397574|397577|397637|397640|397642|397646|397649|397651|397654|397658|397659|397662|397664|397670|407780|407781|407785|407790|420463|420470|420477|420480|420487|420488|420494|420495|420497|425376|439503|447917|447921|447924|447929|447934|447935|448119|448122|448122|448127|448128|448130|448147|448149|448150|448158|448167|448169|448169|448252|448263|448266|448267|448284|448286|448287|458665|459354|459356|459378|459380|459382|459383|459386|459388|459389|459393|459396|459399|459401|459406|459407|459414|459426|459430|459432|459434|459437|459445|459454|459457|459459|459461|459464|459466|459467|459473|459477|459479|459481|459485|459487|459488|459605|459611|459616|459617|459620|459621|459622|459624|459625|459627|459632|459635|459638|459640|459641|459642|459644|459647|459650|459655|459660|459662|459663|459666|459668|459670|459671|459675|459679|459684|459685|459694|459704|459706|459711|459713|459715|459722|459723|459726|459728|459729|459739|459748|459750|459753|459755|459757|459759|459760|459765|459773|459775|459781|459782|459788|459789|459795|459796|459800|459801|459802|459804|459806|459820|459824|459830|459831|459833|459834|459838|459839|459840|459842|459843|459844|459846|459847|459852|459853|459854|459856|459859|459864|459866|459869|459870|459874|459881|459883|459885|459891|459896|459899|459901|459928|459935|459937|459952|459953|459955|459957|460058|460066|460071|460074|460079|460083|460089|460091|460245|460249|460252|460256|460258|460260|460266|460269|460277|460279|460283|460286|460293|460295|460301|460306|460311|460321|460322|460323|460324|460333|460340|460341|460343|460345|460352|460353|460470|460471|460481|460489|460493|460500|460502|460505|460507|460508|460514|460520|460522|460522|474933|474934|474936|474937|474942|474951|474955|474958|474973|474981|474983|474983|474994|475004|475005|475011|475013|475013|475021|475023|475032|475061|475063|475138|475139|475140|475142|475145|475153|475154|475156|475157|475159|475161|475165|475169|475171|475172|475173|475181|475187|475238|475248|475248|481450|488135|493412|502712|503072|503550|503554|511847|513589|515919|515923|515925|515926|515928|515929|515929|515930|515932|515936|515968|515971|515973|515975|515976|515980|515982|515984|515989|515998|516015|516016|516018|516027|516029|516032|516034|516041|516047|516049|516052|524720|524725|524729|524729|524732|524735|524736|524737|524738|524751|524755|524756|524762|524766|524767|524773|524774|524778|524780|524784|524793|524794|524795|524798|524801|524806|524809|524815|524817|524823|524863|524881|524894|524896|524904|524906|524907|524918|524957|524960|524963|524967|524970|524971|524975|524977|524981|524988|524990|524996|525000|525005|525007|525022|525023|525027|525028|525031|525033|525036|525042|525043|525048|525051|525053|525080|525081|525083|525085|525091|525096|525097|525104|525117|525119|525121|525124|525125|525128|525129|525131|525134|525136|525140|525144|525145|525150|525152|525155|525156|525159|525168|525171|525173|525182|525185|525191|525191|525197|525202|525205|525207|525213|525216|525250|525254|525257|525260|525261|525267|525268|525269|525270|525271|525274|525275|525278|525279|525280|525285|525286|525289|525296|525298|525305|525307|525310|525311|525313|525316|525316|525318|525322|525327|525328|525330|525333|525339|525341|525344|525346|525351|525354|525355|525356|525360|525361|525362|525363|525367|525443|525448|525449|525451|525459|538411|551302|551302|552143|553156|557067|557069|557071|557073|557288|557290|557292|557294|557345|557347|557349|558523|558525|558527|558529|558529|558531|563220|563344|563347|563347|563357|563359|563361|563363|563368|563374|563377|563383|563391|563395|563398|563405|563407|563410|563411|563413|563419|563420|563422|563426|563429|563430|563437|563441|563442|563446|563517|563526|563529|563531|563537|563541|563548|563551|563554|563556|564181|564187|564189|564197|564214|564225|564225|564227|564229|564234|564236|564240|564241|564248|564256|564259|564260|564261|564272|564285|564287|564290|564296|564299|564309|564310|564311|564311|564322|564323|564327|564329|564337|564340|564346|564347|564403|564461|564462|564463|564464|564471|564472|564473|564477|566016|566019|566022|566028|566030|566034|566035|566037|566045|566051|566058|566060|566061|566062|566065|566069|566077|566081|566082|566122|566126|566128|566133|566134|566136|568292|569218|569225|569235|569240|569250|569253|569258|569264|569265|569269|569271|569281|569284|569287|569288|569290|569291|569300|569303|569312|569313|569318|569327|569329|569339|569446|569447|569453|569454|569455|569456|569463|569464|611977|612004|612005|612006|612007|612008|612056|615939|628033|628034|628035|628036|628037|628038|628039|628040|628041|628042|628043|628044|628045|628046|628047|628048|628049|628050|628051|628052|628053|628054|628055|628056|628057|628058|628059|628060|628061|628062|628063|628064|628065|638447|638448|638449|638450|638451|638452|638453|638454|638455|638456|638457|638458|638459|638460|638461|638462|638463|638464|638465|638466|638467|638468|638469|638470|638471|638472|638473|638474|638475|638476|638477|638478|638479|638480|638481|638482|638483|638484|638485|638486|638487|638488|638489|638490|638491|638492|638493|638494|638495|638496|638497|638498|638499|638500|638501|638502|638503|638504|638505|638506|638507|638508|638509|638510|638511|638512|638513|638514|638515|638516|638517|638518|638519|638520|638521|638522|638523|638524|638525|638526|638527|638528|638529|638530|638531|638532|638533|638534|638535|638536|638537|638538|638539|638540|638541|638542|638543|638544|638545|638546|638547|638548|638549|638550|638551|638552|638553|638554|638555|638556|638557|638558|638559|638560|638561|638562|638563|638564|638565|638566|638567|638568|638569|638570|638571|638572|638573|638574|638575|638576|638577|638578|638579|638580|638581|638582|638583|638584|638585|638586|638587|638588|638589|638590|638591|638592|638593|638594|638595|638596|638673|638674|638675|638676|638677|638678|638679|638680|638681|638682|638683|638684|638685|638686|638687|638688|638689|638690|638691|638692|638693|638694|638695|638696|638697|638698|638699|638700|638701|638702|638703|638704|638705|651870|651975|651981|651984|651985|651987|651997|652024|652063|652065|652072|652076|652086|652122|652228|652239|652310|679664|683360|683361|683362|683363|683364|683365|683366|683367|683368|683369|683370|683371|683372|683373|684121|684122|684123|684126|685105|685106|685797|685800|685801|685802|685803|685805|685806|685808|685809|685810|687554|687555|687558|687559|687561|687563|687564|687565|687566|687567|687581|687584|687585|689667|689969|690620|690621|692718|692720|692721|692722|692723|692724|692725|692727|692730|692732|692734|692735|692736|692737|692738|692740|692742|692744|692763|692766|695459|695460|695461|695462|695463|695466|701150|701151|712085|712086|712087|712088|712089|712131|723671|723672|723673|723735|730008|732487|737252|737311|737312|744528|744571|751844|751845|751847|751850|751851|751854|751855|751857|751925|759855|761963|767529|767532|767535|767539|767540|767544|767546|767553|767597|767604|775455|775586|778016|783488|783492|783495|783498|783524|783525|789971|790930|790931|790932|790936|790937|790938|798623|809510|809519|809528|809532|809541|809542|809547|809549|809550|809551|809552|809565|809568|809570|809572|809574|809586|809588|809590|809593|809596|809603|809604|809606|809609|809610|809612|809619|809620|809629|809644|809653|809655|809656|809660|809661|809662|809809|809810|809811|809818|809824|809828|809830|809834|809842|809843|809855|809859|809860|815414|818971|818972|820179|820180|820181|820182|822031|822032|824139|824140|824141|824142|824143|824144|824145|824146|824147|824148|824149|824150|824151|824152|824153|824154|824155|824156|824157|824158|824159|824160|824161|824162|824163|824164|836347|836348|836349|836350|836351|836352|836353|836354|836355|836356|836357|836358|836359|836360|836361|836362|836363|836364|836365|836366|836367|836368|836369|836370|836371|836372|836373|836374|836375|836376|836377|836378|836379|836380|836381|836382|836383|836384|836385|836386|836387|836388|836389|836390|836391|836392|836393|836394|836395|836396|836397|836398|836399|836400|836401|836402|836403|836404|836405|836406|836407|836408|836409|836410|836411|836412|836413|836414|836415|836416|836417|836418|836419|836420|836421|836422|836423|836424|836425|836426|836427|836428|836429|836430|836431|836432|836433|836434|836435|836436|836437|836438|836439|836440|836441|836442|836443|836444|836445|836446|836447|836448|836449|836450|836451|836452|836453|836454|836455|836456|836457|836458|836459|836564|836565|836566|836567|836568|836569|836570|836571|836572|836573|836574|836575|836576|836577|836578|836579|836580|836581|836582|836583|836584|836585|836586|836587|836588|836589|836590|836591|836592|836593|836594|836595|836596|850698|850790|850792|850794|850979|851307|851309|851359|851361|851363|851365|851750|851752|851754|851756|852220|852227|852530|852535|852539|852543|852544|902559|902560|902561|902562|902563|902564|902565|902566|902567|902568|902569|902570|902571|902572|902573|902574|902575|902576|902577|902578|902579|902580|902581|902582|902583|902584|902585|902586|902587|902588|902589|902590|902591|902592|902593|902594|903446|906284|922079|922080|922081|922082|922083|922084|922085|922086|922087|922088|922089|922090|922091|925653|925654|925655|925656|925657|925658|925659|925660|925661|925662|925663|925664|925665|925666|925667|925668|925669|925670|925671|925672|925673|925674|925675|925676|925677|925678|925679|925680|925681|925682|925683|925684|925685|925686|925687|925688|925689|925724|925725|925726|925727|925728|925729|925730|925731|925732|925733|925734|929887|930556|930557|930558|930559|930560|930561|930562|930563|930564|930565|934841|934842|934843|934844|934845|934846|934847|934848|934849|934850|934851|934852|934853|934854|934855|934856|934857|934858|934859|934860|934861|934862|934863|934864|934865|934866|934867|934868|934869|934870|934871|934872|934873|934874|934875|934876|934926|934927|934928|934929|934930|934931|934932|934933|934934|934935|934936|934937|940158|940159|940160|940161|940945|940946|940947|941997|941998|941999|942000|942001|942002|942003|942004|946699|946700|946701|946702|946703|946704|946705|946706|946707|946708|946709|946710|946711|946712|946713|946714|946715|946716|946717|946718|946719|946720|946721|946722|946723|946724|946725|946726|946727|946728|946729|946730|946731|946732|946733|946734|946735|946736|946737|946738|946739|946792|946793|946794|946795|946796|946797|946798|946799|946800|946801|946802|946803|952443|952444|952445|952446|952447|952448|952449|955913|955914|955915|955916|955917|955918|955919|955920|955921|955922|955923|955924|955925|955926|955927|955928|955929|955930|955931|955932|955933|955934|955935|955936|955937|955938|955939|955940|955941|955942|955943|955944|955945|955946|955968|955969|955970|955971|959924|959925|959927|960432|960708|960711|960712|961519|964335|964336|966345|974487", "text": "Gorlin syndrome" }, { - "baseId": "18610", + "upstreamId": "18610", "text": "SUFU-related disorders" }, { - "baseId": "18612|18613", + "upstreamId": "18612|18613", "text": "Medulloblastoma with extensive nodularity" }, { - "baseId": "18614|18616|18617|18618|18619|18620|18621|18622|18623|18624|206682|214870|215404|308685|308687|308689|308690|308692|308693|308695|308699|308701|308705|308709|308711|308713|308714|308716|308718|308719|308721|308725|308727|308728|308729|313271|313272|313279|313280|313282|313291|313295|313296|313302|313303|313304|313307|313308|319086|319087|319088|319092|319094|319096|319099|319101|319102|319103|319108|319117|319119|319121|319139|319146|319147|319148|319691|319698|319700|319701|319703|319705|319708|319712|319714|319739|319740|319755|319761|319763|319768|390703|418974|712019|723622|723623|737183|737185|737186|737192|751761|751763|759768|902305|902306|902307|902308|902309|902310|902311|902312|902313|902314|902315|902316|902317|902318|902319|902320|902321|902322|902323|902324|902325|902326|902327|902328|902329|902330|902331|902332|902333|902334|902335|902336|902337|902338|902339|902340|902341|902342|902343|902344|902345|902346|902347|902348|902349|902350|902351|902352|902353|902354|902355|902356|902357|902358|902359|902360|902361|902362|902363|902364|902365|902366|902367|903426|903427|903428|903429|903430|903561|963079", + "upstreamId": "18614|18616|18617|18618|18619|18620|18621|18622|18623|18624|206682|214870|215404|308685|308687|308689|308690|308692|308693|308695|308699|308701|308705|308709|308711|308713|308714|308716|308718|308719|308721|308725|308727|308728|308729|313271|313272|313279|313280|313282|313291|313295|313296|313302|313303|313304|313307|313308|319086|319087|319088|319092|319094|319096|319099|319101|319102|319103|319108|319117|319119|319121|319139|319146|319147|319148|319691|319698|319700|319701|319703|319705|319708|319712|319714|319739|319740|319755|319761|319763|319768|390703|418974|712019|723622|723623|737183|737185|737186|737192|751761|751763|759768|902305|902306|902307|902308|902309|902310|902311|902312|902313|902314|902315|902316|902317|902318|902319|902320|902321|902322|902323|902324|902325|902326|902327|902328|902329|902330|902331|902332|902333|902334|902335|902336|902337|902338|902339|902340|902341|902342|902343|902344|902345|902346|902347|902348|902349|902350|902351|902352|902353|902354|902355|902356|902357|902358|902359|902360|902361|902362|902363|902364|902365|902366|902367|903426|903427|903428|903429|903430|903561|963079", "text": "Hypomagnesemia 1, intestinal" }, { - "baseId": "18625|18626|18627|18628|18629|18630|18631|18632|18633|18634|18635|18636|18637|18638|98164|98165|98167|98168|98169|98170|98172|98174|98177|98178|98179|139960|139961|186628|186629|186630|186631|186632|186634|190703|194776|195186|195540|196139|199969|199974|199975|199976|199977|199978|199980|199981|199982|227855|227856|227857|227858|227859|227860|227861|227862|227863|227864|227865|227866|227867|227868|227869|227870|227871|227872|227873|227874|227875|227876|227877|227878|227879|227880|227881|227882|227883|227884|227885|227886|227887|227888|227889|227890|227891|227892|227893|227894|227895|227896|227897|227898|227899|227900|227901|227902|227903|227904|227905|227906|227907|227908|227909|227910|227911|227912|227913|227914|250014|250016|259675|259676|265252|265253|265292|265314|281203|281206|281210|281214|281215|281218|281807|281830|281831|283050|283051|283054|283055|283058|283069|283082|283279|283280|283283|283284|283285|283287|283288|283289|283292|357128|357129|357130|357131|357132|357133|357134|357135|357136|357137|357138|357139|357140|357141|357142|357143|357144|357145|357146|357147|361160|365217|365402|365487|365490|405232|405233|425382|432496|432497|448232|448357|448360|448432|481600|486892|486927|486935|488974|498590|514913|516071|516107|516112|541251|541254|541257|541260|541262|541272|541284|541295|541299|541300|541301|541303|541307|541314|541324|541326|541330|541333|541340|541343|541351|541353|541358|541359|541360|541362|541363|541365|541366|541369|541370|541371|541372|556508|556884|557370|558587|558589|558591|558593|584803|621089|628255|628256|628257|628258|650762|650775|655126|685826|707514|732582|743772|759061|762074|762076|762077|780764|780765|780766|780767|789996|789997|798478|799225|816405|818993|818994|818995|818996|818997|818998|824404|824405|824406|824407|824408|824409|824410|824411|824412|824413|824414|824415|824416|824417|824418|824419|824420|851003|864810|864811|864812|864813|864814|864815|864816|864817|916829|922157|922158|922159|922160|922161|930658|930659|930660|942098|942099|942100|942101|942102|952522|952523|952524|952525|952526|959570|977562|977563|977564", + "upstreamId": "18625|18626|18627|18628|18629|18630|18631|18632|18633|18634|18635|18636|18637|18638|98164|98165|98167|98168|98169|98170|98172|98174|98177|98178|98179|139960|139961|186628|186629|186630|186631|186632|186634|190703|194776|195186|195540|196139|199969|199974|199975|199976|199977|199978|199980|199981|199982|227855|227856|227857|227858|227859|227860|227861|227862|227863|227864|227865|227866|227867|227868|227869|227870|227871|227872|227873|227874|227875|227876|227877|227878|227879|227880|227881|227882|227883|227884|227885|227886|227887|227888|227889|227890|227891|227892|227893|227894|227895|227896|227897|227898|227899|227900|227901|227902|227903|227904|227905|227906|227907|227908|227909|227910|227911|227912|227913|227914|250014|250016|259675|259676|265252|265253|265292|265314|281203|281206|281210|281214|281215|281218|281807|281830|281831|283050|283051|283054|283055|283058|283069|283082|283279|283280|283283|283284|283285|283287|283288|283289|283292|357128|357129|357130|357131|357132|357133|357134|357135|357136|357137|357138|357139|357140|357141|357142|357143|357144|357145|357146|357147|361160|365217|365402|365487|365490|405232|405233|425382|432496|432497|448232|448357|448360|448432|481600|486892|486927|486935|488974|498590|514913|516071|516107|516112|541251|541254|541257|541260|541262|541272|541284|541295|541299|541300|541301|541303|541307|541314|541324|541326|541330|541333|541340|541343|541351|541353|541358|541359|541360|541362|541363|541365|541366|541369|541370|541371|541372|556508|556884|557370|558587|558589|558591|558593|584803|621089|628255|628256|628257|628258|650762|650775|655126|685826|707514|732582|743772|759061|762074|762076|762077|780764|780765|780766|780767|789996|789997|798478|799225|816405|818993|818994|818995|818996|818997|818998|824404|824405|824406|824407|824408|824409|824410|824411|824412|824413|824414|824415|824416|824417|824418|824419|824420|851003|864810|864811|864812|864813|864814|864815|864816|864817|916829|922157|922158|922159|922160|922161|930658|930659|930660|942098|942099|942100|942101|942102|952522|952523|952524|952525|952526|959570|977562|977563|977564", "text": "Medium-chain acyl-coenzyme A dehydrogenase deficiency" }, { - "baseId": "18640|18641|18642|18643|166364|166365|790421", + "upstreamId": "18640|18641|18642|18643|166364|166365|790421", "text": "Hypogonadotropic hypogonadism 4 with or without anosmia" }, { - "baseId": "18644|18645|18646|18647|44205|49691|76634|76636|76637|76638|76639|76640|76641|76642|76643|76644|76645|94453|102033|102034|102035|102038|102039|102040|102041|102044|102045|102046|102047|102049|102050|102052|102054|102055|102056|102057|102060|134422|134423|134424|134426|134427|134428|134429|177693|177694|191433|191951|192055|192541|192542|192693|192694|192781|193681|193683|193684|194514|195420|195421|205761|207680|207681|207682|207683|207686|207688|207689|207690|207692|207694|223668|247037|247390|263822|265807|267217|267657|268640|269257|270621|270654|271435|307714|307718|307721|307727|307729|307748|307763|307764|311976|311979|311981|311982|311995|317633|317634|317635|317637|317649|317651|317677|317687|318112|318121|318141|318160|318172|353854|360911|360912|407642|413808|425215|428972|428976|428977|428978|428979|428984|431918|439131|459056|459060|459061|459069|459073|459083|459086|459367|459369|459375|459377|459379|459385|459387|459390|459424|459428|459442|459915|459916|459918|459919|459924|459926|459929|459932|459934|488898|489180|513433|524451|524453|524460|524466|524480|524742|524743|524746|524748|524750|524752|524757|524758|524761|524765|524768|524770|524886|524887|524888|524889|524891|524895|524899|524901|524903|525029|525032|525039|525041|525044|525046|552139|562597|563101|563106|563110|563112|563116|563120|563124|563140|563141|563238|563852|563853|563861|563862|563869|563871|565817|565819|565821|565822|565823|565825|565826|565828|565829|568869|568870|568878|568882|568883|568884|568889|568895|568900|568903|568906|568907|568908|568910|568924|579609|579629|579636|579663|579847|590783|611400|611401|611468|638113|638114|638115|638116|638117|638118|638119|638120|638121|638122|638123|638124|638125|638126|638127|638128|638129|638130|638131|638132|638133|638134|638135|638136|638137|638138|638139|638140|638141|638142|638143|638144|638145|638146|652052|652061|654132|654133|654158|682342|682812|692658|700925|700926|700927|700928|700929|700930|711898|723495|723496|723497|723499|737058|737061|744537|751607|751608|751610|751613|751616|751617|751619|751620|751621|759817|759902|767325|767329|767334|767338|767340|767343|767347|767352|775410|777989|783377|783382|787633|790876|790877|790878|790879|790880|790881|820033|820106|820107|820108|820109|822003|822004|822005|822006|822007|822008|822009|822010|822011|822012|822013|822014|822015|822016|822017|822018|822019|822020|822021|822270|822271|835952|835953|835954|835955|835956|835957|835958|835959|835960|835961|835962|835963|835964|835965|835966|835967|835968|835969|835970|835971|835972|835973|835974|835975|835976|835977|835978|835979|835980|835981|835982|835983|835984|835985|835986|851734|852505|919215|919216|919217|919218|919219|925528|925529|925530|925531|925532|925533|925534|925535|925536|925537|925538|925539|925540|925541|925542|925543|925544|925545|934688|934689|934690|934691|934692|934693|934694|934695|934696|934697|934698|934699|934700|934701|934702|934703|934704|940143|946544|946545|946546|946547|946548|946549|946550|946551|946552|946553|946554|946555|955779|955780|955781|955782|961614|961615|963153|964838|965439|967271|969275|969561|969786|970904|972722|974902|976027|980169|980334|980335", + "upstreamId": "18644|18645|18646|18647|44205|49691|76634|76636|76637|76638|76639|76640|76641|76642|76643|76644|76645|94453|102033|102034|102035|102038|102039|102040|102041|102044|102045|102046|102047|102049|102050|102052|102054|102055|102056|102057|102060|134422|134423|134424|134426|134427|134428|134429|177693|177694|191433|191951|192055|192541|192542|192693|192694|192781|193681|193683|193684|194514|195420|195421|205761|207680|207681|207682|207683|207686|207688|207689|207690|207692|207694|223668|247037|247390|263822|265807|267217|267657|268640|269257|270621|270654|271435|307714|307718|307721|307727|307729|307748|307763|307764|311976|311979|311981|311982|311995|317633|317634|317635|317637|317649|317651|317677|317687|318112|318121|318141|318160|318172|353854|360911|360912|407642|413808|425215|428972|428976|428977|428978|428979|428984|431918|439131|459056|459060|459061|459069|459073|459083|459086|459367|459369|459375|459377|459379|459385|459387|459390|459424|459428|459442|459915|459916|459918|459919|459924|459926|459929|459932|459934|488898|489180|513433|524451|524453|524460|524466|524480|524742|524743|524746|524748|524750|524752|524757|524758|524761|524765|524768|524770|524886|524887|524888|524889|524891|524895|524899|524901|524903|525029|525032|525039|525041|525044|525046|552139|562597|563101|563106|563110|563112|563116|563120|563124|563140|563141|563238|563852|563853|563861|563862|563869|563871|565817|565819|565821|565822|565823|565825|565826|565828|565829|568869|568870|568878|568882|568883|568884|568889|568895|568900|568903|568906|568907|568908|568910|568924|579609|579629|579636|579663|579847|590783|611400|611401|611468|638113|638114|638115|638116|638117|638118|638119|638120|638121|638122|638123|638124|638125|638126|638127|638128|638129|638130|638131|638132|638133|638134|638135|638136|638137|638138|638139|638140|638141|638142|638143|638144|638145|638146|652052|652061|654132|654133|654158|682342|682812|692658|700925|700926|700927|700928|700929|700930|711898|723495|723496|723497|723499|737058|737061|744537|751607|751608|751610|751613|751616|751617|751619|751620|751621|759817|759902|767325|767329|767334|767338|767340|767343|767347|767352|775410|777989|783377|783382|787633|790876|790877|790878|790879|790880|790881|820033|820106|820107|820108|820109|822003|822004|822005|822006|822007|822008|822009|822010|822011|822012|822013|822014|822015|822016|822017|822018|822019|822020|822021|822270|822271|835952|835953|835954|835955|835956|835957|835958|835959|835960|835961|835962|835963|835964|835965|835966|835967|835968|835969|835970|835971|835972|835973|835974|835975|835976|835977|835978|835979|835980|835981|835982|835983|835984|835985|835986|851734|852505|919215|919216|919217|919218|919219|925528|925529|925530|925531|925532|925533|925534|925535|925536|925537|925538|925539|925540|925541|925542|925543|925544|925545|934688|934689|934690|934691|934692|934693|934694|934695|934696|934697|934698|934699|934700|934701|934702|934703|934704|940143|946544|946545|946546|946547|946548|946549|946550|946551|946552|946553|946554|946555|955779|955780|955781|955782|961614|961615|963153|964838|965439|967271|969275|969561|969786|970904|972722|974902|976027|980169|980334|980335", "text": "Kleefstra syndrome 1" }, { - "baseId": "18648|18649|18650|18651|18652|18653|18654|18655|18656|18657|18658|18659|18660|18661|18662|18663|36443|36444|36445|36446|36447|36448|36449|36450|36451|36452|36453|36454|36455|36456|36457|36458|36459|36460|36461|36462|36463|36465|36466|36467|36468|36469|36470|36471|36472|36473|36474|36475|36476|36477|36478|36479|36480|36481|36482|36483|36484|36485|36486|36487|36488|36489|36490|36491|36492|36493|36494|36495|36496|36497|36498|36499|36500|36501|36502|36503|36504|36505|36506|36507|36508|36509|36510|36511|36512|36513|36514|36515|36516|36517|36518|36519|36520|36521|36522|36523|36524|36525|36526|36527|36528|36529|36530|36531|36532|36533|36534|36535|36537|36538|36539|36540|36541|36542|36543|36544|36545|36546|36547|36548|36549|36550|36551|36552|36553|36554|36555|36556|36557|36558|36559|36560|36561|36562|36563|36564|36565|36566|36567|36568|36569|36570|36571|36573|36574|36575|36576|36577|36578|36579|36580|36581|36582|36583|36584|36585|36586|36587|36588|36589|36590|36591|36592|36593|36594|36595|36596|36597|36599|36600|36601|36602|36603|36604|36605|36606|36607|36608|36609|36610|36611|36612|36613|36614|36615|36617|36618|36619|36620|36621|36622|36623|36625|36626|36627|36628|36629|36630|36631|36632|36633|36634|36635|36636|36637|36638|36639|36640|36641|36642|36643|36644|36645|36647|36648|36649|36650|36651|36652|36653|36654|36655|36656|36657|36659|36660|36661|36662|36663|36664|36665|36666|36667|36668|36669|36670|36671|44187|44809|44811|44812|44819|44822|44824|45901|45902|45903|45904|45905|45906|45907|45908|45909|45910|45911|45912|46835|46837|46840|46843|46847|47143|47145|47151|47152|47154|47159|98425|98426|98430|98431|98432|106814|131978|186785|190722|195555|195556|200181|200182|200184|265208|265226|265233|265306|265311|312603|312605|312606|318507|318514|318523|319020|357784|357785|357786|357787|357788|357789|357790|370377|407690|421753|433070|459173|459536|487374|487387|489984|524448|524536|524545|544707|544708|544719|544726|544730|544736|544750|545014|545021|545148|545149|545151|545152|545155|545157|545164|545246|545254|545265|545266|545293|545295|545296|545304|545307|549463|563218|565885|621302|621306|621787|638216|651855|652017|730636|737114|737115|737116|737117|751683|767385|767386|767387|775380|783398|787632|790904|790905|790906|790907|799592|799593|801674|801675|801676|801677|801678|820135|820136|836076|836077|836078|836079|836080|836081|836082|901953|901954|901955|901956|901957|901958|901959|901960|901961|901962|901963|903393|903394|934746|940146|946599|955809|955810|959918|960684|972028|972029|972030|972031|972032|972033|972034", + "upstreamId": "18648|18649|18650|18651|18652|18653|18654|18655|18656|18657|18658|18659|18660|18661|18662|18663|36443|36444|36445|36446|36447|36448|36449|36450|36451|36452|36453|36454|36455|36456|36457|36458|36459|36460|36461|36462|36463|36465|36466|36467|36468|36469|36470|36471|36472|36473|36474|36475|36476|36477|36478|36479|36480|36481|36482|36483|36484|36485|36486|36487|36488|36489|36490|36491|36492|36493|36494|36495|36496|36497|36498|36499|36500|36501|36502|36503|36504|36505|36506|36507|36508|36509|36510|36511|36512|36513|36514|36515|36516|36517|36518|36519|36520|36521|36522|36523|36524|36525|36526|36527|36528|36529|36530|36531|36532|36533|36534|36535|36537|36538|36539|36540|36541|36542|36543|36544|36545|36546|36547|36548|36549|36550|36551|36552|36553|36554|36555|36556|36557|36558|36559|36560|36561|36562|36563|36564|36565|36566|36567|36568|36569|36570|36571|36573|36574|36575|36576|36577|36578|36579|36580|36581|36582|36583|36584|36585|36586|36587|36588|36589|36590|36591|36592|36593|36594|36595|36596|36597|36599|36600|36601|36602|36603|36604|36605|36606|36607|36608|36609|36610|36611|36612|36613|36614|36615|36617|36618|36619|36620|36621|36622|36623|36625|36626|36627|36628|36629|36630|36631|36632|36633|36634|36635|36636|36637|36638|36639|36640|36641|36642|36643|36644|36645|36647|36648|36649|36650|36651|36652|36653|36654|36655|36656|36657|36659|36660|36661|36662|36663|36664|36665|36666|36667|36668|36669|36670|36671|44187|44809|44811|44812|44819|44822|44824|45901|45902|45903|45904|45905|45906|45907|45908|45909|45910|45911|45912|46835|46837|46840|46843|46847|47143|47145|47151|47152|47154|47159|98425|98426|98430|98431|98432|106814|131978|186785|190722|195555|195556|200181|200182|200184|265208|265226|265233|265306|265311|312603|312605|312606|318507|318514|318523|319020|357784|357785|357786|357787|357788|357789|357790|370377|407690|421753|433070|459173|459536|487374|487387|489984|524448|524536|524545|544707|544708|544719|544726|544730|544736|544750|545014|545021|545148|545149|545151|545152|545155|545157|545164|545246|545254|545265|545266|545293|545295|545296|545304|545307|549463|563218|565885|621302|621306|621787|638216|651855|652017|730636|737114|737115|737116|737117|751683|767385|767386|767387|775380|783398|787632|790904|790905|790906|790907|799592|799593|801674|801675|801676|801677|801678|820135|820136|836076|836077|836078|836079|836080|836081|836082|901953|901954|901955|901956|901957|901958|901959|901960|901961|901962|901963|903393|903394|934746|940146|946599|955809|955810|959918|960684|972028|972029|972030|972031|972032|972033|972034", "text": "Deficiency of UDPglucose-hexose-1-phosphate uridylyltransferase" }, { - "baseId": "18651", + "upstreamId": "18651", "text": "GALT POLYMORPHISM" }, { - "baseId": "18652", + "upstreamId": "18652", "text": "GALT POLYMORPHISM (DUARTE, D2)" }, { - "baseId": "18652|18653|18661|36470|36498|36500|36526|36529|36537|36549|36559|36560|36586|36599|36643|44812|98432|200182|200184|265311|312603|318523|433070|487372|487373|487374|487385|487441|563218|621301|621306|737114|737116|767387|836079|978578", + "upstreamId": "18652|18653|18661|36470|36498|36500|36526|36529|36537|36549|36559|36560|36586|36599|36643|44812|98432|200182|200184|265311|312603|318523|433070|487372|487373|487374|487385|487441|563218|621301|621306|737114|737116|767387|836079|978578", "text": "Galactosemia" }, { - "baseId": "18665|18666|18667|18668|18669|18670|18671|18673|18674|983660", + "upstreamId": "18665|18666|18667|18668|18669|18670|18671|18673|18674|983660", "text": "Myeloperoxidase deficiency" }, { - "baseId": "18672", + "upstreamId": "18672", "text": "Lung cancer, protection against, in smokers" }, { - "baseId": "18675|18676|18677|18678|18679|18680|18681|18682|18683|18684|18685|133722|133723|133724|139997|139998|140000|140001|140002|140005|140006|140008|181400|206765|206766|210625|210626|210633|210638|210644|210646|214530|226874|227211|279404|279405|279408|279409|279410|279414|279416|279417|279418|279654|279657|279673|279677|279683|279702|279707|279714|279715|280918|280919|280920|280926|280930|280931|280932|280935|280949|280950|280952|281064|281067|281074|281075|281076|281087|281088|281089|281092|281095|281096|359234|362095|362096|362097|362098|362099|364687|364832|364922|427718|427719|427720|439688|508767|513505|538331|583079|653846|653847|653848|718704|718705|732199|758880|761672|789937|792878|798462|798463|798464|818154|863814|863815|863816|863817|863818|863819|863820|863821|863822|863823|863824|863825|863826|863827|863828|865134|904202|964149|974930|974931", + "upstreamId": "18675|18676|18677|18678|18679|18680|18681|18682|18683|18684|18685|133722|133723|133724|139997|139998|140000|140001|140002|140005|140006|140008|181400|206765|206766|210625|210626|210633|210638|210644|210646|214530|226874|227211|279404|279405|279408|279409|279410|279414|279416|279417|279418|279654|279657|279673|279677|279683|279702|279707|279714|279715|280918|280919|280920|280926|280930|280931|280932|280935|280949|280950|280952|281064|281067|281074|281075|281076|281087|281088|281089|281092|281095|281096|359234|362095|362096|362097|362098|362099|364687|364832|364922|427718|427719|427720|439688|508767|513505|538331|583079|653846|653847|653848|718704|718705|732199|758880|761672|789937|792878|798462|798463|798464|818154|863814|863815|863816|863817|863818|863819|863820|863821|863822|863823|863824|863825|863826|863827|863828|865134|904202|964149|974930|974931", "text": "Coenzyme Q10 deficiency, primary, 4" }, { - "baseId": "18675|21420|22089|24691|26568|31365|31971|35697|40616|40617|40621|40628|40632|40637|40639|40646|40655|40672|40675|40686|40722|40732|40734|40744|40745|40753|40764|40770|40791|40803|40818|40826|40830|40833|40839|40860|40861|40864|40887|40899|40904|40909|40918|40920|40924|40932|40948|40953|40982|40986|41018|41029|41045|41049|41061|41065|41082|41098|41099|41101|41104|41107|41113|41115|41128|41138|41141|41153|41156|41162|41169|41194|41223|41235|41266|41267|41303|41307|41308|41315|41338|41354|41382|41407|41444|41448|41454|41459|41475|41480|41483|41485|41486|41491|41493|41511|41535|41543|41553|41578|41586|41604|41606|41612|41613|41620|41626|41656|41663|41682|41689|41726|41737|41750|41761|41778|41781|41783|41785|41817|41839|41840|41850|41870|41890|41894|41900|41925|41930|41967|41973|42007|42017|42034|42043|42059|42069|42085|42087|42113|42128|42136|42169|42218|42249|42255|42339|42341|42398|42400|42408|42431|42464|42488|42491|42516|42538|42551|42591|42605|42634|42698|42728|42769|42790|42804|42815|42832|42833|42858|42886|42893|42941|42982|43028|43034|43049|43057|43096|43119|43123|43182|43203|43210|43270|43290|43304|43367|43375|43379|43389|43418|43519|43555|43575|43625|43648|43654|43656|43681|43709|43741|43838|43882|43904|43930|43977|44003|44081|51671|51905|52123|52268|54898|56325|56786|71580|71583|71584|71586|71587|71589|71590|71591|71593|71594|71596|71597|71598|71599|71600|71601|71602|71603|71604|71605|71606|71607|71608|71609|71610|71611|71612|71613|71614|71615|71616|71617|71619|71620|71621|71622|71623|71624|71625|71626|71627|71629|71630|71631|71633|71634|71635|71636|71637|71638|71639|71640|71641|71642|71643|71644|71645|71646|71647|71648|71649|71650|71651|71652|71653|71654|71655|71656|71657|71658|71660|71661|71662|71663|71664|71666|71667|71668|71669|71670|71671|71672|71673|71675|71676|71677|71678|71679|71680|71681|71682|71683|71684|71685|71686|71687|71688|71689|71690|71691|71692|71693|71694|71697|71698|71699|71700|71702|71703|71704|71705|71706|71708|71709|71710|71711|71712|71713|71714|71715|71716|71717|71718|71719|71720|71721|71722|71723|71724|71725|71726|71727|71728|71729|71730|71731|71732|71733|71735|71736|71737|71738|71739|71740|71741|71742|71743|71744|71745|71746|71747|71748|71749|71750|71751|71752|71753|71754|71755|71756|71757|71758|71759|71760|71761|71762|71763|71764|71765|71766|71767|71768|71769|71770|71771|71772|71773|71774|71775|71776|71777|71778|71779|71780|71781|71782|71783|71784|71785|71786|71787|71788|71789|71790|71791|71792|71793|71794|71795|71796|71797|71798|71799|71801|71802|71803|71804|71805|71806|71807|71808|71809|71810|71812|71813|71814|71815|71816|71817|71818|71819|71820|71821|71822|71823|71824|71825|71826|71827|71828|71830|71831|71832|71833|71834|71835|71836|71837|71838|71839|71840|71841|71842|71843|71844|71845|71846|71847|71849|71850|71851|71852|71853|71854|71855|71856|71857|71858|71859|71860|71861|71862|71864|71865|71866|71867|71868|71869|71870|71871|71872|71873|71874|71875|71876|71877|71878|71879|71881|71882|71883|71884|71885|71886|71887|71888|71889|71891|71892|71893|71894|71895|71896|71897|71898|71899|71900|71901|71902|71903|71904|71905|71906|71907|71908|71909|71910|71911|71912|71913|71914|71915|71916|71917|71918|71919|71920|71921|71922|71923|71924|71925|71926|71927|71928|71929|71930|71931|71932|71934|71935|71936|71937|71938|71939|71940|71941|71942|71944|71945|71946|71947|71948|71949|71950|71951|71952|71953|71954|71955|71956|71957|71958|71959|71960|71961|71962|71963|71965|71966|71967|71968|71969|71970|71971|71972|71973|71974|71975|71976|71977|71978|71979|71980|71981|71982|71983|71984|71985|71986|71987|71988|71989|71990|71991|71992|71993|71994|71995|71996|71997|71998|71999|72000|72001|72002|72003|72004|72005|72006|72007|72008|72009|72010|72011|72012|72013|72014|72015|72016|72017|72018|72019|72020|72021|72022|72023|72024|72026|72027|72028|72029|72030|72031|72032|72033|72034|72035|72036|72037|72038|72039|72040|72041|72042|72043|72044|72045|72046|72047|72048|72049|72050|72051|72052|72053|72054|72055|72056|72057|72058|72059|72060|72061|72062|72063|72064|72065|72066|72067|72068|72069|72070|72071|72072|72073|72074|72075|72076|72077|72078|72079|72080|72081|72082|72083|72084|72085|72086|72087|72088|72089|72090|72091|72092|72093|72094|72095|72096|72097|72098|72099|72100|72101|72102|72103|72104|72105|72106|72107|72108|72109|72110|72112|72113|72115|72117|72118|72119|72120|72121|72122|72123|72124|72125|72126|72127|72128|72129|72131|72132|72133|72134|72135|72136|72137|72138|72139|72140|72141|72142|72143|72145|72146|72147|72148|72149|72150|72151|72152|72153|72154|72155|72157|72158|72159|72160|72161|72162|72164|72165|72166|72167|72168|72169|72171|72172|72173|72174|72175|72176|72177|72178|72179|72181|72182|72183|72184|72185|72186|72187|72188|72189|72190|72191|72192|72194|72195|72196|72197|72199|72201|72202|72203|72204|72205|72206|72207|72210|72211|72212|72214|72215|72216|72217|72219|72220|72221|72222|72223|72224|72225|72227|72228|72229|72231|72232|72233|72234|72235|72236|72238|72239|72241|72242|72244|72245|72246|72247|72248|72249|72250|72251|72252|72253|72254|72255|72256|72257|72258|72260|72261|72262|72263|72264|72265|72266|72267|72268|72269|72270|72271|72273|72274|72275|72276|72277|72279|72280|72281|72283|72285|72286|72287|72288|72289|72290|72291|72292|72293|72294|72295|72296|72298|72299|72300|72302|72303|72304|72305|72306|72307|72308|72309|72312|72313|72314|72315|72316|72317|72318|72320|72321|72322|72323|72324|72325|72326|72327|72329|72330|72331|72332|72333|72334|72336|72337|72338|72340|72341|72342|72343|72344|72345|72347|72348|72349|72350|72352|72354|72355|72358|72360|72361|72363|72364|72365|72366|72367|72368|72369|72370|72371|72373|72374|72376|72377|72378|72379|72380|72382|72383|72384|72385|72386|72387|72388|72389|72390|72391|72392|72394|72395|72396|72397|72398|72399|72400|72401|72402|72403|72404|72406|72407|72409|72410|72411|72412|72413|72414|72415|72417|72418|72419|72420|72421|72422|72424|72426|72427|72428|72429|72430|72431|72433|72434|72435|72436|72437|72438|72439|72440|72442|72443|72444|72445|72446|72447|72448|72450|72451|72452|72455|72456|72457|72458|72460|72461|72462|72463|72464|72465|72466|72467|72468|72469|72470|72471|72472|72473|72474|72476|72477|72478|72479|72480|72482|72483|72484|72485|72487|72488|72489|72490|72491|72493|72495|72496|72497|72498|72499|72500|72502|72503|72505|72506|72507|72509|72510|72511|72512|72513|72514|72515|72516|72518|72519|72520|72521|72523|72524|72526|72528|72530|72531|72532|72533|72534|72535|72536|72537|72538|72539|72540|72542|72543|72544|72545|72546|72548|72549|72550|72551|72552|72553|72555|72556|72557|72558|72559|72560|72561|72562|72565|72566|72567|72568|72570|72572|72573|72574|72575|72577|72578|72579|72580|72581|72582|72583|72584|72585|72586|72587|72588|72589|72590|72591|72592|72593|72594|72595|72596|72597|72598|72601|72602|72603|72604|72606|72607|72608|72609|72610|72612|72613|72614|72615|72616|72618|72621|72622|72623|72624|72625|72626|72628|72629|72631|72632|72633|72635|72636|72637|72638|72639|72640|72642|72643|72645|72646|72649|72651|72653|72654|72655|72656|72657|72658|72660|72661|72662|72663|72664|72665|72666|72667|72668|72670|72673|72674|72675|72676|72678|72679|72680|72681|72682|72683|72684|72687|72688|72689|72691|72692|72693|72694|72695|72697|72698|72699|72700|72702|72703|72704|72705|72706|72707|72708|72709|72710|72711|72712|72713|72714|72716|72717|72718|72719|72720|72721|72722|72723|72724|72726|72727|72728|72729|72730|72731|72732|72734|72736|72737|72739|72740|72741|72742|72743|72745|72746|72749|72750|72752|72754|72755|72756|72757|72758|72759|72760|72761|72762|72763|72764|72765|72766|72767|72768|72769|72770|72771|72772|72773|72774|72775|72777|72778|72779|72780|72781|72782|72783|72784|72785|72786|72787|72788|72789|72790|72791|72792|72793|72795|72797|72799|72800|72801|72802|72803|72804|72805|72806|72807|72808|72809|72810|72811|72812|72813|72814|72815|72818|72819|72820|72821|72822|72823|72824|72825|72826|72827|72828|72829|72830|72831|72832|72833|72834|72835|72836|72837|72838|72839|72840|72841|72842|72843|72844|72845|72846|72847|72848|72850|72855|72856|72857|72858|72859|72861|72862|72864|72865|72866|72867|72869|72870|72873|72874|72875|72876|72877|72878|72880|72884|72887|72888|72889|72890|72891|72895|72896|72898|72900|72901|72902|72903|72904|72905|72906|72907|72908|72909|72910|72911|72913|72914|72915|72916|72917|72918|72919|72921|72923|72925|72926|72927|72928|72929|72930|72931|72933|72934|72935|72936|72937|72938|72939|72942|72943|72947|72948|72949|72950|72951|72952|72953|72954|72955|72956|72957|72958|72960|72961|72962|72964|72968|72969|72970|72971|72973|72974|72975|72976|72980|72981|72982|72983|72984|72985|72986|72988|72990|72991|72992|72994|72995|72997|72998|72999|73000|73002|73003|73004|73005|73006|73008|73009|73012|73014|73015|73016|73017|73018|73020|73022|73023|73024|73025|73026|73027|73028|73029|73030|73032|73033|73034|73035|73036|73037|73038|73039|73040|73041|73042|73043|73044|73046|73047|73048|73049|73050|73051|73053|73055|73056|73057|73058|73059|73060|73061|73062|73063|73064|73065|73066|73067|73069|73070|73071|73073|73074|73075|73076|73077|73078|73079|73080|73082|73083|73086|73087|73088|73089|73090|73091|73093|73094|73095|73097|73098|73099|73100|73101|73102|73103|73104|73105|73106|73107|73108|73109|73110|73111|73113|73115|73116|73118|73120|73121|73122|73125|73126|73127|73128|73129|73130|73131|73132|73133|73134|73135|73136|73137|73138|73139|73142|73143|73146|73147|73148|73149|73150|73151|73152|73154|73155|73157|73158|73159|73160|73161|73162|73163|73164|73165|73166|73168|73169|73171|73172|73173|73174|73175|73176|73177|73178|73179|73180|73181|73182|73184|73185|73186|73187|73189|73190|73191|73192|73193|73194|73195|73196|73197|73198|73199|73200|73201|73202|73203|73204|73205|73206|73207|73208|73209|73210|73211|73212|73213|73214|73215|73216|73217|73218|73221|73222|73223|73225|73226|73227|73228|73229|73230|73231|73232|73233|73234|73235|73236|73238|73239|73240|73241|73242|73243|73245|73246|73247|73248|73249|73250|73252|73254|73255|73256|73258|73259|73260|73261|73262|73263|73264|73265|73266|73267|73269|73270|73271|73272|73274|73276|73278|73279|73280|73281|73282|73283|73284|73285|73286|73287|73288|73289|73290|73291|73293|73296|73297|73298|73299|73300|73301|73303|73304|73305|73306|73307|73309|73311|73312|73313|73314|73315|73316|73318|73319|73320|73321|73322|73323|73324|73325|73326|73327|73328|73329|73330|73332|73333|73335|73336|73337|73338|73339|73340|73342|73343|73344|73345|73346|73347|73348|73349|73350|73351|73352|73353|73356|73357|73359|73360|73361|73362|73363|73365|73366|73367|73369|73371|73372|73373|73374|73375|73376|73377|73378|73379|73380|73382|73383|73384|73385|73386|73387|73388|73389|73390|73391|73392|73393|73394|73395|73396|73397|73398|73399|73400|73401|73402|73403|73404|73405|73406|73408|73411|73412|73414|73415|73416|73417|73418|73420|73422|73423|73424|73425|73426|73427|73428|73429|73430|73431|73432|73433|73434|73435|73436|73438|73439|73441|73442|73443|73445|73446|73447|73448|73449|73450|73451|73452|73453|73455|73456|73457|73458|73459|73461|73462|73463|73464|73465|73466|73467|73468|73469|73470|73471|73472|73473|73474|73475|73477|73478|73479|73480|73481|73482|73484|73486|73487|73488|73490|73491|73492|73493|73495|73496|73497|73498|73499|73501|73505|73506|73507|73509|73511|73512|73513|73514|73515|73516|73517|73518|73519|73522|73524|73525|73527|73528|73530|73531|73532|73533|73535|73536|73537|73538|73540|73541|73543|73544|73545|73546|73547|73548|73550|73551|73553|73555|73557|73558|73559|73560|73561|73562|73563|73565|73566|73568|73569|73570|73572|73574|73575|73576|73577|73578|73579|73580|73581|73582|73583|73585|73586|73587|73589|73592|73594|73595|73596|73597|73598|73599|73600|73601|73602|73604|73605|73606|73607|73608|73609|73611|73612|73613|73614|73615|73617|73618|73622|73623|73624|73625|73626|73627|73628|73629|73630|73631|73632|73633|73634|73636|73638|73640|73641|73642|73643|73644|73645|73646|73647|73648|73649|73650|73651|73652|73653|73654|73655|73656|73657|73658|73659|73660|73661|73662|73663|73664|73665|73666|73667|73668|73669|73670|73671|73672|73673|73675|73676|73677|73678|73680|73681|73682|73685|73686|73688|73689|73690|73691|73692|73693|73694|73696|73698|73699|73700|73701|73702|73703|73704|73705|73706|73707|73708|73709|73710|73711|73712|73713|73714|73715|73716|73717|73718|73719|73720|73721|73722|73723|73724|73725|73726|73727|73728|73729|73730|73731|73732|73734|73735|73736|73738|73739|73740|73741|73742|73743|73744|73745|73746|73747|73748|73749|73750|73751|73752|73753|73754|73756|73757|73758|73761|73762|73763|73764|73768|73769|73771|73772|73773|73774|73775|73776|73778|73781|73782|73783|73784|73785|73786|73789|73790|73791|73792|73794|73795|73796|73797|73798|73799|73800|73801|73802|73803|73804|73805|73806|73807|73808|73809|73810|73811|73812|73813|73814|73815|73816|73817|73818|73819|73820|73821|73822|73824|73825|73826|73827|73828|73829|73831|73832|73833|73835|73836|73837|73838|73839|73840|73841|73842|73843|73844|73845|73847|73848|73849|73850|73851|73853|73855|73858|73859|73860|73861|73862|73863|73864|73865|73867|73868|73869|73870|73871|73872|73874|73875|73876|73877|73878|73879|73880|73881|73882|73883|73884|73885|73887|73888|73889|73890|73891|73892|73895|73896|73897|73898|73899|73900|73901|73902|73903|73904|73905|73906|73908|73910|73911|73912|73913|73914|73915|73916|73917|73918|73919|73921|73922|73923|73924|73925|73926|73927|73928|73929|73932|73935|73936|73937|73938|73939|73941|73942|73944|73945|73946|73947|73948|73949|73950|73951|73952|73953|73954|73955|73956|73959|73961|73962|73963|73964|73965|73967|73969|73971|73972|73973|73974|73978|73979|73980|73983|73984|73985|73986|73987|73989|73990|73991|73992|73993|73994|73995|73996|73997|73998|73999|74000|74003|74004|74005|74006|74007|74008|74009|74010|74012|74013|74014|74015|74017|74018|74019|74020|74021|74022|74023|74024|74025|74026|74028|74029|74030|74031|74032|74033|74034|74035|74037|74038|74039|74040|74041|74042|74043|74044|74045|74046|74050|74051|74052|74053|74054|74055|74056|74057|74058|74059|74060|74062|74063|74064|74066|74067|74068|74069|74070|74074|74075|74076|74077|74079|74081|74082|74084|74085|74086|74088|74089|74090|74091|74092|74093|74094|74095|74096|74098|74099|74100|74101|74102|74103|74105|74106|74107|74108|74109|74110|74112|74113|74114|74115|74116|74117|74118|74119|74121|74122|74123|74124|74125|74127|74128|74131|74132|74133|74134|74135|74136|74137|74138|74140|74143|74144|74145|74146|74149|74150|74151|74152|74154|74155|74156|74157|74158|74160|74161|74162|74163|74164|74165|74166|74168|74171|74172|74173|74174|74175|74176|74177|74178|74179|74180|74181|74182|74183|74184|74185|74186|74189|74190|74191|74192|74193|74196|74198|74199|74200|74201|74202|74203|74204|74205|74207|74208|74209|74210|74211|74212|74213|74214|74216|74217|74218|74219|74220|74221|74222|74223|74225|74226|74227|74228|74229|74230|74231|74233|74234|74235|74236|74237|74238|74239|74240|74242|74244|74246|74247|74249|74250|74252|74253|74254|74257|74258|74259|74260|74261|74262|74264|74265|74266|74267|74268|74269|74270|74271|74273|74274|74275|74276|74277|74278|74279|74280|74281|74282|74283|74284|74286|74289|74290|74295|74296|74297|74298|74301|74302|74303|74304|74305|74306|74307|74308|74309|74310|74311|74313|74314|74315|74317|74318|74319|74320|74321|74322|74323|74324|74325|74327|74328|74329|74330|74331|74332|74333|74334|74337|74338|74339|74340|74341|74342|74343|74344|74345|74346|74347|74348|74349|74350|74351|74352|74353|74354|74355|74356|74358|74359|74361|74362|74363|74364|74365|74366|74367|74368|74369|74370|74372|74373|74377|74378|74379|74381|74382|74383|74384|74385|74388|74389|74390|74391|74393|74394|74395|74396|74399|74400|74401|74402|74407|74409|74411|74412|74413|74414|74415|74416|74417|74419|74421|74422|74423|74424|74425|74426|74427|74430|74431|74432|74434|74436|74437|74438|74439|74441|74442|74446|74447|74448|74450|74451|74452|74453|74455|74456|74458|74459|74461|74462|74463|74464|74465|74466|74467|74468|74469|74470|74471|74473|74476|74478|74479|74480|74482|74483|74484|74485|74486|74487|74488|74489|74490|74491|74493|74494|74495|74497|74498|74499|74501|74502|74503|74504|74505|74506|74507|74508|74511|74512|74513|74516|74517|74519|74520|74522|74523|74524|74525|74526|74527|74528|74529|74531|74532|74534|74537|74538|74539|74541|74544|74545|74546|74547|74548|74549|74552|74553|74554|74555|74559|74560|74561|74562|74563|74564|74565|74566|74567|74568|74571|74572|74573|74574|74575|74576|74577|74578|74579|74580|74581|74582|74584|74585|74586|74587|74588|74589|74590|74591|74593|74594|74595|74596|74598|74599|74600|74602|74603|74604|74605|74606|74607|74608|74609|74610|74611|74612|74613|74614|74616|74617|74618|74619|74620|74621|74622|74623|74624|74625|74627|74628|74629|74630|74631|74632|74633|74635|74637|74638|74640|74641|74642|74644|74645|74646|74647|74649|74650|74651|74652|74653|74654|74656|74658|74659|74660|74661|74662|74664|74665|74666|74668|74669|74671|74672|74673|74674|74675|74676|74677|74679|74680|74681|74683|74684|74685|74686|74688|74689|74690|74691|74692|74693|74694|74696|74697|74698|74699|74700|74701|74702|74703|74704|74705|74706|74707|74712|74714|74716|74717|74718|74719|74721|74722|74723|74724|74726|74727|74728|74729|74730|74732|74733|74734|74735|74737|74738|74739|74740|74741|74742|74743|74744|74745|74746|74747|74748|74749|74751|74752|74753|74754|74756|74757|74758|74760|74762|74765|74766|74767|74768|74769|74770|74771|74773|74774|74775|74776|74777|74778|74779|74780|74781|74782|74783|74785|74787|74788|74792|74793|74795|74796|74797|74798|74800|74801|74802|74803|74806|74807|74808|74809|74810|74811|74812|74814|74815|74816|74818|74819|74820|74821|74822|74823|74824|74826|74827|74828|74829|74830|74831|74832|74833|74835|74836|74838|74839|74840|74841|74842|74843|74844|74846|74847|74848|74849|74852|74853|74854|74855|74856|74857|74858|74859|74860|74861|74862|74863|74865|74866|74867|74868|74869|74870|74871|74872|74873|74874|74875|74876|74878|74879|74881|74882|74883|74884|74885|74886|74887|74889|74890|74892|74893|74895|74896|74897|74898|74899|74900|74901|74902|74903|74904|74905|74906|74907|74908|74909|74910|74911|74912|74914|74915|74916|74917|74918|74919|74920|74921|74922|74923|74924|74925|74926|74928|74929|74930|74931|74932|74933|74934|74936|74937|74941|74942|74943|74944|74945|74946|74947|74948|74949|74950|74952|74954|74955|74956|74957|74958|74959|74961|74963|74966|74967|74968|74969|74970|74971|74972|74973|74974|74975|74976|74977|74978|74979|74980|74981|74982|74983|74984|74985|74986|74988|74991|74992|74993|74995|74997|74998|74999|75000|75001|75002|75003|75004|75005|75006|75008|75009|75010|75011|75013|75014|75015|75016|75017|75018|75019|75020|75021|75022|75024|75025|75026|75028|75032|75034|75035|75036|75037|75038|75039|75041|75042|75044|75045|75046|75047|75048|75049|75050|75051|75052|75053|75055|75056|75057|75059|75060|75061|75062|75064|75065|75066|75067|75068|75069|75070|75072|101854|151323|153841|153845|153847|153849|153871|153872|153873|153874|153875|153876|153877|153878|153879|153880|153881|153882|153883|153884|153885|153886|153887|153888|153889|153890|153891|153892|153893|153894|153895|153896|153897|153898|153899|153900|153901|153902|153903|153904|153905|153906|153907|153908|153909|153910|153911|153912|153913|153914|153915|153916|153917|153918|153919|153920|153921|153922|153923|153924|153925|153926|153927|153928|153929|153930|153931|153932|153933|153934|153935|153936|153937|153938|153939|153940|153941|153942|153943|153944|153945|153946|153947|153948|153949|153950|153951|153952|153953|153954|153955|153956|153957|153958|153959|153960|153961|153962|153963|153964|153965|153966|153967|153968|153969|153970|153971|153972|153973|153974|153975|153976|153977|153978|153979|153980|153981|153982|153983|153984|153985|153986|153987|153988|153989|153990|153991|153992|153993|153994|153995|153996|153997|153998|153999|154000|154001|154002|154003|154004|154005|154006|154007|154008|154009|154010|154011|154012|154013|154014|154015|154016|154017|154018|154019|154020|154021|154022|154023|154024|154025|154026|154027|154028|154029|154030|154031|154032|154033|154034|154035|154036|154037|154038|154039|154040|154041|154042|154043|154044|154045|154046|154047|154048|154049|154050|154051|154052|154053|154054|154055|154056|154057|154058|154059|154060|154061|154062|154063|154064|154065|154066|154067|154068|154069|154070|154071|154072|154073|154074|154075|154076|154077|154078|154079|154080|154081|154082|154083|154084|154085|154086|154087|154088|154089|154090|154091|154092|154093|154094|154095|154096|154097|154098|154099|154100|154101|154102|154103|154104|154105|154106|154107|154108|154109|154110|154111|154112|154113|154114|154115|154116|154117|154118|154119|154120|154121|154122|154123|154124|154125|154126|154127|154128|154129|154130|154131|154132|154133|154134|154135|154136|154137|154138|154139|154140|154141|154142|154143|154144|154145|154146|154147|154148|154149|154150|154151|154152|154153|154154|154155|154156|154157|154158|154159|154160|154161|154162|154163|154164|154165|154166|154167|154168|154169|154170|154171|154172|154173|154174|154175|154176|154177|154178|154179|154180|154181|154182|154183|154184|154185|154186|154187|154188|154189|154190|154191|154192|154193|154194|154195|154196|154197|154198|154199|154200|154201|154202|154203|154204|154205|154206|154207|154208|154209|154210|154211|154212|154213|154214|154215|154216|154217|154218|154219|154220|154221|154222|154223|154224|154225|154226|154227|154228|154229|154230|154231|154232|154233|154234|154235|154236|154237|154238|154239|154240|154241|154242|154243|154244|154245|154246|154247|154248|154249|154250|154251|154252|154253|154254|154255|154256|154257|154258|154259|154260|154261|154262|154263|154264|154265|154266|154267|154268|154269|154270|154271|154272|154273|154274|154275|154276|154277|154278|154279|154280|154281|154282|154283|154284|154285|154286|154287|154288|154289|154290|154291|154292|154293|154294|154295|154296|154297|154298|154299|154300|154301|154302|154303|154304|154305|154306|154307|154308|154309|154310|154311|154312|154313|154314|154318|154319|154320|154321|154322|154323|154324|154325|154326|154327|154328|154329|154331|154332|154333|154334|154337|154338|154339|154340|154341|154342|154343|154344|154345|154347|154348|154350|154351|154353|154354|154358|154359|154360|154361|154363|154364|154365|154367|154368|154371|154372|154373|154374|154375|154376|154377|154379|154381|154382|154385|154388|154389|154392|154394|154395|154396|154397|154398|154399|154401|154402|154403|154404|154405|154408|154410|154411|154414|154418|154419|154423|154427|154428|154429|154431|154432|154434|154435|154436|154437|154438|154439|154440|154442|154445|154446|154447|154449|154450|154457|154458|154459|154460|154461|154463|154465|154466|154468|154472|154473|154476|154477|154478|154479|154481|154482|154484|154485|154486|154487|154488|154492|154494|154495|154496|154499|154500|154502|154503|154504|154505|154506|154507|154508|154509|154510|154512|154513|154515|154516|154517|154520|154524|154525|154528|154529|154530|154531|154532|154533|154534|154535|154536|154537|154538|154539|154540|154541|154542|154543|154544|154545|154546|154547|154548|154549|154550|154551|154552|154553|154554|154555|154556|154557|154558|154559|154560|154561|154562|154563|154564|154565|154566|154567|154568|154569|154570|154571|154572|154573|154574|154575|154576|154577|154578|154579|154580|154581|154582|154583|154584|154585|154586|154587|154588|154589|154590|154591|154592|154593|154594|154595|154596|154597|154598|154599|154600|154601|154602|154603|154604|154605|154606|154607|154608|154609|154610|154611|154612|154613|154614|154615|154616|154617|154618|154619|154620|154621|154622|154623|154624|154625|154626|154627|154628|154629|154630|154631|154632|154633|154634|154635|154636|154637|154638|154639|154640|154641|154642|154643|154644|154645|154646|154647|154648|154649|154650|154651|154652|154653|154654|154655|154656|154657|154658|154659|154660|154661|154662|154663|154664|154665|154666|154667|154668|154669|154670|154671|154672|154673|154674|154675|154676|154677|154678|154679|154680|154681|154682|154683|154684|154685|154686|154687|154688|154689|154690|154691|154692|154693|154694|154695|154696|154697|154698|154699|154700|154701|154702|154703|154704|154705|154706|154707|154708|154709|154710|154711|154712|154713|154714|154715|154716|154717|154718|154719|154720|154721|154722|154723|154724|154725|154726|154727|154728|154729|154730|154731|154732|154733|154735|154736|154737|154738|154739|154740|154741|154742|154743|154744|154745|154746|154747|154748|154749|154750|154751|154752|154753|154754|154755|154756|154757|154758|154759|154760|154761|154762|154763|154764|154765|154766|154767|154768|154769|154770|154771|154772|154773|154774|154775|154776|154777|154778|154779|154780|154781|154782|154783|154784|154785|154786|154787|154788|154789|154790|154791|154792|154793|154794|154795|154796|154797|154798|154799|154800|154801|154803|154804|154805|154806|154807|154808|154809|154810|154811|154812|154813|154814|154815|154816|154817|154818|154819|154820|154821|154822|154823|154824|154825|154826|154827|154828|154829|154830|154831|154832|154833|154834|154835|154836|154837|154838|154839|154840|154841|154842|154843|154844|154845|154846|154847|154848|154849|154850|154851|154852|154853|154854|154855|154856|154857|154858|154859|154860|154861|154862|154863|154864|154865|154866|154867|154868|154869|154870|154871|154872|154873|154874|154875|154876|154877|154878|154879|154880|154881|154882|154883|154884|154885|154886|154887|154888|154889|154890|154891|154892|154893|154894|154895|154896|154897|154898|154899|154900|154901|154902|154903|154904|154905|154906|154907|154908|154909|154910|154911|154912|154913|154914|154915|154916|154917|154918|154919|154920|154921|154922|154923|154924|154925|154926|154927|154928|154929|154930|154931|154932|154933|154934|154935|154936|154937|154938|154939|154940|154941|154942|154943|154944|154945|154946|154947|154948|154949|154950|154951|154952|154953|154954|154955|154956|154957|154958|154959|154960|154961|154962|154963|154964|154965|154966|154967|154968|154969|154970|154971|154972|154973|154974|154975|154976|154977|154978|154979|154980|154981|154982|154983|154984|154985|154986|154987|154988|154989|154990|154991|154992|154993|154994|154995|154996|154997|154998|154999|155000|155001|155002|155003|155004|155005|155006|155007|155008|155009|155010|155011|155012|155013|155014|155015|155016|155017|155018|155019|155020|155021|155022|155023|155024|155025|155026|155027|155028|155029|155030|155031|155032|155033|155034|155035|155036|155037|155038|155039|155040|155041|155042|155043|155044|155045|155046|155047|155048|155049|155050|155051|155052|155053|155054|155055|155056|155059|155061|155063|155064|155065|155066|155067|155068|155070|155071|155072|155073|155074|155075|155078|155079|155080|155081|155082|155083|155085|155086|155087|155088|155089|155090|155091|155092|155093|155094|155095|155096|155097|155098|155101|155103|155104|155105|155106|155107|155108|155110|155111|155112|155113|155114|155116|155117|155119|155120|155121|155122|155123|155124|155125|155126|155128|155129|155130|155131|155132|155133|155134|155135|155136|155137|155138|155139|155140|155142|155143|155145|155146|155148|155149|155150|155151|155152|155154|155156|155157|155158|155159|155160|155162|155163|155164|155165|155168|155169|155172|155173|155175|155176|155177|155178|155179|155180|155181|155183|155185|155187|155189|155190|155191|155192|155193|155194|155196|155197|155199|155200|155201|155202|155204|155205|155206|155207|155208|155209|155210|155211|155212|155214|155215|155216|155217|155218|155219|155220|155221|155222|155223|155224|155225|155226|155227|155228|155230|155231|155232|155233|155234|155235|155236|155237|155238|155239|155240|155241|155242|155247|155248|155250|155251|155252|155253|155254|155255|155256|155259|155260|155261|155262|155263|155265|155266|155269|155270|155273|155274|155276|155277|155280|155281|155282|155283|155284|155285|155286|155287|155288|155289|155290|155291|155292|155293|155297|155298|155300|155301|155302|155303|155304|155305|155306|155307|155309|155311|155313|155315|155318|155319|155321|155322|155323|155324|155325|155326|155327|155328|155329|155330|155333|155335|155336|155337|155338|155339|155340|155344|155345|155346|155347|155348|155349|155350|155351|155352|155353|155354|155355|155356|155357|155359|155360|155361|155362|155363|155364|155365|155366|155367|155368|155369|155370|155371|155372|155373|155374|155375|155376|155377|155378|155379|155383|155384|155385|155388|155389|155391|155392|155393|155394|155395|155396|155397|155398|155399|155400|155402|155403|155404|155405|155406|155407|155408|155409|155410|155411|155412|155414|155415|155416|155417|155418|155419|155420|155421|155422|155423|155424|155425|155426|155427|155428|155429|155430|155431|155432|155433|155434|155435|155436|155437|155438|155439|155440|155441|155442|155443|155444|155445|155446|155447|155448|155449|155450|155451|155452|155453|155454|155455|155456|155457|155458|155459|155460|155461|155462|155463|155464|155465|155466|155467|155468|155469|155470|155471|155472|155473|155474|155475|155476|155477|155478|155479|155480|155481|155482|155483|155484|155485|155486|155487|155488|155489|155490|155491|155492|155493|155494|155495|155496|155497|155498|155499|155500|155501|155502|155503|155504|155505|155506|155507|155508|155509|155510|155511|155512|155513|155514|155515|155516|155517|155518|155519|155520|155521|155522|155523|155524|155525|155526|155527|155528|155529|155530|155531|155532|155533|155534|155535|155536|155537|155538|155539|155540|155541|155542|155543|155544|155545|155546|155547|155548|155549|155550|155551|155552|155553|155554|155555|155556|155557|155558|155559|155560|155561|155562|155563|155564|155565|155566|155567|155568|155569|155570|155571|155572|155573|155574|155575|155576|155577|155578|155579|155580|155581|155582|155583|155584|155585|155586|155587|155588|155589|155590|155591|155592|155593|155594|155595|155596|155597|155598|155599|155600|155601|155602|155603|155604|155605|155606|155607|155608|155609|155610|155611|155612|155613|155614|155615|155616|155617|155618|155619|155620|155621|155622|155623|155624|155625|155626|155627|155628|155629|155630|155631|155632|155633|155634|155635|155636|155637|155638|155639|155640|155641|155642|155643|155644|155645|155646|155647|155648|155649|155650|155651|155652|155653|155654|155655|155656|155657|155658|155659|155660|155661|155662|155663|155664|155665|155666|155667|155668|155669|155670|155671|155672|155673|155674|155675|155676|155677|155678|155679|155680|155681|155682|155683|155684|155685|155686|155687|155688|155689|155690|155691|155692|155693|155694|155695|155696|155697|155698|155699|155700|155701|155702|155703|155704|155705|155706|155707|155708|155709|155710|155711|155712|155713|155714|155715|155716|155717|155718|155719|155720|155721|155722|155723|155724|155725|155726|155727|155728|155729|155730|155731|155732|155733|155734|155735|155736|155737|155738|155739|155740|155741|155742|155743|155744|155745|155746|155747|155748|155749|155750|155751|155752|155753|155754|155755|155756|155757|155758|155759|155760|155761|155762|155763|155764|155765|155766|155767|155768|155769|155770|155771|155772|155773|155774|155775|155776|155777|155778|155779|155780|155781|155782|155783|155784|155785|155786|155787|155788|155789|155790|155791|155792|155793|155794|155795|155796|155797|155798|155799|155800|155801|155802|155803|155804|155805|155806|155807|155808|155809|155810|155811|155812|155813|155814|155815|155816|155817|155818|155819|155820|155821|155822|155823|155824|155825|155826|155827|155828|155829|155830|155831|155832|155833|155834|155835|155836|155837|155838|155839|155840|155841|155842|155843|155844|155847|155848|155849|155850|155851|155852|155853|155854|155855|155856|155857|155858|155860|155861|155862|155863|155864|155865|155866|155867|155868|155869|155870|155871|155872|155873|155874|155875|155876|155877|155878|155879|155880|155881|155882|155883|155884|155885|155886|155887|155888|155889|155890|155891|155892|155893|155894|155895|155896|155897|155898|155899|155900|155901|155902|155903|155904|155905|155906|155907|155908|155909|155910|155911|155913|155914|155915|155916|155917|155918|155919|155920|155921|155922|155923|155924|155925|155926|155927|155928|155929|155930|155931|155932|155933|155935|155936|155937|155941|155942|155944|155945|155946|155947|155948|155949|155952|155953|155954|155955|155958|155959|155960|155962|155963|155964|155966|155968|155969|155970|155971|155972|155973|155974|155975|155976|155977|155978|155979|155980|155981|155982|155983|155984|155985|155986|155988|155989|155990|155991|155993|155994|155995|155998|155999|156000|156001|156002|156003|156004|156005|156006|156007|156008|156009|156010|156011|156012|156013|156014|156015|156016|156018|156020|156022|156023|156024|156026|156027|156028|156029|156030|156031|156032|156033|156034|156035|156036|156037|156038|156039|156040|156041|156042|156043|156044|156045|156046|156047|156048|156049|156050|156051|156052|156053|156054|156055|156056|156057|156058|156059|156060|156061|156062|156063|156064|156065|156066|156067|156068|156069|156070|156071|156072|156073|156074|156075|156076|156077|156078|156079|156080|156081|156082|156083|156084|156085|156086|156087|156088|156089|156090|156091|156092|156094|156095|156096|156097|156098|156099|156100|156101|156102|156103|156104|156105|156106|156107|156108|156109|156111|156113|156114|156115|156116|156117|156118|156119|156120|156121|156122|156123|156124|156126|156127|156128|156129|156130|156131|156132|156134|156136|156137|156138|156139|156140|156141|156142|156143|156144|156145|156146|156147|156148|156149|156150|156151|156152|156153|156154|156155|156156|156158|156159|156160|156161|156163|156164|156165|156167|156168|156169|156170|156173|156175|156176|156177|156178|156179|156181|156182|156183|156185|156186|156187|156188|156189|156190|156191|156192|156193|156194|156195|156196|156198|156199|156200|156203|156206|156207|156208|156209|156210|156212|156214|156217|156221|156222|156223|156225|156226|156227|156230|156231|156232|156233|156234|156235|156236|156237|156238|156243|156244|156246|156247|156248|156249|156250|156251|156252|156253|156255|156257|156258|156259|156260|156261|156262|156263|156264|156265|156266|156267|156268|156269|156270|156271|156274|156275|156277|156278|156280|156281|156285|156286|156287|156288|156289|156290|156291|156292|156294|156295|156296|156297|156298|156303|156304|156305|156306|156307|156308|156309|156310|156311|156314|156315|156316|156317|156318|156319|156321|156322|156323|156324|156325|156326|156327|156328|156329|156330|156331|156332|156333|156334|156335|156336|156337|156338|156339|156340|156341|156342|156343|156345|156346|156347|156348|156349|156351|156352|156353|156354|156355|156356|156357|156359|156360|156361|156362|156365|156366|156367|156368|156369|156370|156371|156372|156373|156374|156377|156378|156379|156380|156381|156382|156383|156384|156385|156386|156387|156388|156389|156390|156391|156392|156394|156395|156396|156397|156398|156399|156400|156401|156403|156404|156405|156406|156407|156408|156409|156410|156411|156414|156415|156416|156418|156419|156420|156421|156422|156423|156424|156426|156427|156429|156430|156431|156432|156433|156434|156435|156436|156437|156438|156439|156440|156441|156442|156443|156444|156445|156446|156447|156448|156449|156450|156451|156452|156453|156454|156455|156456|156457|156458|156460|156461|156462|156463|156464|156465|156466|156467|156469|156470|156473|156474|156475|156476|156477|156478|156479|156481|156482|156483|156484|156485|156486|156487|156488|156489|156490|156491|156493|156495|156496|156497|156498|156500|156501|156502|156503|156504|156505|156506|156507|156508|156511|156512|156513|156514|156515|156516|156517|156518|156519|156520|156521|156522|156524|156525|156526|156527|156528|156529|156530|156531|156532|156533|156534|156535|156536|156537|156538|156540|156541|156542|156543|156544|156545|156546|156547|156548|156549|156550|156551|156552|156553|156554|156555|156556|156557|156558|156559|156560|156561|156562|156563|156564|156565|156566|156567|156568|156569|156570|156571|156572|156573|156574|156576|156577|156578|156579|156580|156581|156582|156583|156584|156585|156586|156587|156588|156589|156590|156591|156592|156593|156594|156595|156596|156598|156599|156600|156601|156602|156603|156604|156605|156606|156607|156608|156609|156610|156612|156613|156614|156615|156616|156617|156618|156619|156620|156621|156622|156623|156624|156625|156626|156627|156628|156629|156630|156631|156632|156635|156636|156638|156639|156642|156645|156646|156647|156648|156649|156650|156651|156652|156656|156657|156658|156659|156662|156663|156664|156665|156667|156670|156671|156672|156673|156674|156675|156676|156677|156678|156679|156680|156681|156682|156683|156684|156685|156686|156687|156688|156689|156690|156691|156692|156693|156694|156695|156696|156697|156698|156699|156700|156701|156702|156703|156704|156705|156706|156707|156708|156709|156710|156711|156712|156713|156714|156715|156716|156717|156718|156719|156720|156721|156722|156723|156724|156725|156726|156727|156728|156729|156730|156731|156732|156733|156734|156735|156736|156737|156738|156739|156740|156741|156742|156743|156744|156745|156746|156747|156748|156749|156750|156751|156752|156753|156754|156755|156756|156757|156758|156759|156760|156761|156762|156763|156764|156765|156766|156767|156768|156769|156770|156771|156772|156773|156774|156775|156776|156777|156778|156779|156780|156781|156782|156783|156784|156785|156786|156787|156788|156789|156790|156791|156792|156793|156794|156795|156796|156797|156798|156799|156800|156801|156802|156803|156804|156805|156806|156807|156808|156809|156810|156811|156812|156813|156814|156815|156816|156817|156818|156819|156820|156821|156822|156823|156824|156825|156826|156827|156828|156829|156830|156831|156832|156833|156834|156835|156836|156837|156838|156839|156840|156841|156842|156843|156844|156845|156846|156847|156848|156849|156850|156851|156852|156853|156854|156855|156856|156857|156858|156859|156860|156861|156862|156863|156864|156865|156866|156867|156868|156869|156870|156871|156872|156873|156874|156875|156876|156877|156878|156879|156880|156881|156882|156883|156884|156885|156886|156887|156888|156889|156890|156891|156892|156893|156894|156895|156896|156897|156898|156899|156900|156901|156902|156903|156904|156905|156906|156907|156908|156909|156910|156911|156912|156913|156914|156915|156916|156917|156918|156919|156920|156921|156922|156923|156924|156925|156926|156927|156928|156929|156930|156931|156932|156933|156934|156935|156936|156937|156938|156939|156940|156941|156942|156943|156944|156945|156946|156947|156948|156949|156950|156951|156952|156953|156954|156955|156956|156957|156958|156959|156960|156961|156962|156963|156964|156965|156966|156967|156968|156969|156970|156971|156972|156973|156974|156975|156976|156977|156978|156979|156980|156981|156982|156983|156984|156985|156986|156987|156988|156989|156990|156991|156992|156993|156994|156995|156996|156997|156998|156999|157000|157001|157002|157003|157004|157005|157006|157007|157008|157009|157010|157011|157012|157013|157014|157015|157016|157017|157018|157019|157020|157021|157023|157024|157025|157026|157027|157028|157030|157031|157032|157034|157035|157036|157037|157038|157039|157040|157041|157042|157043|157044|157045|157046|157049|157050|157054|157057|157059|157060|157063|157064|157065|157066|157067|157068|157069|157071|157072|157074|157075|157076|157077|157078|157080|157081|157082|157083|157084|157087|157088|157090|157091|157092|157093|157094|157096|157098|157099|157100|157101|157102|157103|157104|157105|157106|157107|157108|157109|157111|157113|157114|157115|157116|157117|157118|157119|157120|157121|157122|157123|157125|157127|157128|157130|157131|157132|157133|157134|157135|157136|157137|157138|157140|157141|157142|157143|157144|157145|157146|157147|157148|157149|157150|157151|157152|157153|157154|157155|157156|157157|157158|157159|157160|157162|157163|157164|157165|157167|157168|157169|157170|157171|157172|157174|157175|157176|157177|157178|157179|157180|157181|157184|157185|157186|157187|157188|157189|157192|157193|157194|157195|157196|157197|157198|157199|157200|157201|157203|157204|157206|157207|157209|157210|157211|157212|157213|157215|157216|157217|157218|157219|157220|157221|157222|157225|157226|157227|157228|157230|157231|157232|157233|157235|157236|157237|157238|157239|157240|157241|157242|157243|157244|157245|157246|157247|157248|157249|157250|157251|157252|157253|157255|157256|157257|157258|157259|157260|157261|157262|157264|157265|157266|157268|157269|157272|157273|157275|157276|157277|157278|157279|157281|157282|157283|157285|157287|157288|157289|157290|157291|157292|157293|157294|157295|157296|157297|157298|157299|157301|157302|157303|157304|157305|157306|157308|157309|157310|157311|157312|157313|157314|157315|157316|157317|157318|157319|157320|157321|157322|157323|157324|157325|157326|157327|157328|157329|157331|157332|157333|157334|157335|157336|157337|157338|157339|157340|157341|157342|157343|157344|157345|157347|157348|157349|157350|157351|157352|157353|157354|157355|157356|157357|157358|157359|157360|157361|157362|157363|157364|157365|157366|157367|157369|157370|157372|157373|157374|157375|157376|157377|157378|157379|157380|157382|157383|157384|157385|157386|157387|157388|157389|157390|157391|157392|157393|157394|157395|157396|157397|157398|157399|157400|157402|157403|157404|157405|157406|157407|157408|157409|157410|157411|157412|157414|157415|157416|157417|157418|157419|157420|157421|157422|157424|157426|157427|157428|157429|157431|157433|157434|157435|157436|157437|157438|157439|157440|157441|157442|157443|157444|157446|157448|157449|157450|157451|157452|157453|157454|157455|157456|157457|157458|157459|157460|157461|157462|157463|157464|157466|157467|157468|157469|157470|157471|157472|157473|157474|157475|157477|157478|157479|157480|157481|157482|157485|157486|157487|157488|157489|157490|157491|157492|157494|157495|157496|157498|157499|157500|157501|157502|157503|157504|157505|157506|157507|157510|157511|157512|157513|157514|157515|157516|157517|157518|157520|157521|157522|157523|157524|157526|157527|157529|157530|157531|157532|157535|157537|157540|157542|157543|157544|157545|157549|157550|157551|157552|157554|157556|157557|157558|157559|157560|157561|157563|157564|157565|157566|157567|157570|157572|157573|157575|157576|157578|157579|157580|157582|157583|157584|157585|157586|157587|157588|157589|157590|157594|157595|157596|157598|157599|157600|157601|157602|157603|157604|157605|157606|157607|157608|157609|157610|157611|157612|157614|157615|157616|157617|157618|157619|157621|157622|157623|157624|157625|157626|157628|157631|157632|157633|157634|157635|157636|157638|157639|157640|157641|157644|157645|157646|157647|157648|157649|157650|157651|157653|157654|157655|157656|157657|157658|157659|157660|157661|157662|157663|157664|157665|157666|157667|157668|157669|157670|157671|157672|157673|157678|157679|157681|157682|157683|157684|157686|157687|157688|157690|157691|157693|157696|157697|157698|157699|157700|157701|157702|157703|157704|157705|157706|157707|157708|157709|157710|157711|157714|157715|157716|157717|157718|157719|157720|157721|157723|157724|157725|157726|157728|157729|157730|157731|157733|157734|157735|157737|157738|157739|157740|157741|157742|157743|157746|157747|157748|157749|157750|157751|157753|157754|157755|157756|157758|157759|157760|157761|157762|157763|157764|157765|157766|157767|157768|157769|157770|157771|157772|157773|157774|157776|157777|157778|157779|157780|157781|157782|157786|157787|157788|157789|157791|157793|157794|157795|157796|157799|157800|157801|157802|157803|157804|157805|157806|157808|157809|157810|157811|157812|157813|157814|157815|157816|157818|157819|157820|157821|157822|157823|157824|157825|157826|157827|157828|157829|157830|157831|157832|157833|157834|157836|157837|157838|157839|157840|157841|157842|157843|157845|157846|157847|157848|157849|157850|157851|157852|157853|157854|157855|157856|157857|157858|157859|157860|157861|157862|157863|157864|157865|157866|157867|157868|157869|157870|157871|157872|157873|157874|157877|157878|157879|157882|157883|157884|157885|157886|157887|157888|157889|157890|157892|157893|157894|157895|157896|157897|157898|157899|157900|157901|157902|157903|157904|157907|157908|157909|157910|157911|157913|157914|157915|157916|157917|157918|157919|157920|157921|157922|157923|157924|157925|157926|157927|157928|157929|157930|157931|157932|157933|157934|157935|157936|157937|157938|157939|157940|157941|157942|157943|157944|157945|157946|157947|157948|157949|157950|157951|157952|157953|157954|157955|157956|157957|157958|157959|157960|157961|157962|157963|157964|157965|157966|157967|157968|157969|157970|157971|157972|157973|157974|157975|157976|157977|157978|157979|157980|157981|157982|157983|157984|157985|157986|157987|157988|157989|157990|157991|157992|157993|157994|157995|157996|157997|157998|157999|158000|158001|158002|158003|158004|158005|158006|158007|158008|158009|158010|158011|158012|158013|158014|158015|158016|158017|158018|158019|158020|158021|158022|158023|158024|158025|158026|158027|158028|158029|158030|158031|158032|158033|158034|158035|158036|158037|158038|158039|158040|158041|158042|158043|158044|158045|158046|158047|158048|158049|158050|158051|158052|158053|158054|158055|158056|158057|158058|158061|158062|158063|158064|158065|158067|158068|158069|158071|158072|158073|158074|158075|158076|158077|158078|158079|158081|158082|158085|158086|158087|158088|158089|158090|158091|158092|158093|158094|158095|158096|158097|158098|158099|158100|158101|158102|158103|158104|158105|158106|158107|158108|158109|158110|158111|158112|158113|158114|158115|158116|158117|158118|158120|158121|158122|158123|158124|158125|158126|158127|158128|158129|158130|158131|158132|158133|158134|158135|158136|158137|158138|158139|158140|158141|158142|158143|158144|158145|158146|158147|158148|158149|158150|158151|158152|158153|158154|158155|158156|158157|158158|158159|158160|158161|158162|158163|158164|158165|158166|158167|158168|158169|158170|158171|158172|158173|158174|158175|158176|158177|158178|158179|158180|158181|158182|158183|158185|158187|158188|158189|158190|158191|158192|158193|158194|158195|158196|158197|158198|158199|158200|158201|158202|158203|158204|158205|158206|158207|158209|158210|158211|158212|158213|158214|158215|158216|158217|158218|158219|158220|158221|158222|158223|158224|158225|158226|158227|158228|158229|158230|158231|158232|158233|158234|158235|158236|158237|158238|158239|158240|158241|158242|158243|158244|158245|158246|158247|158248|158249|158250|158251|158252|158253|158254|158255|158256|158257|158258|158259|158260|158261|158262|158264|158265|158266|158267|158269|158270|158271|158272|158273|158274|158275|158276|158277|158278|158279|158280|158281|158283|158284|158285|158286|158287|158288|158289|158290|158291|158292|158293|158294|158295|158296|158297|158298|158300|158301|158302|158303|158304|158305|158306|158307|158308|158309|158310|158311|158312|158313|158314|158315|158316|158317|158318|158319|158320|158321|158322|158323|158324|158325|158326|158327|158328|158329|158330|158331|158333|158334|158335|158337|158338|158339|158340|158341|158342|158343|158344|158345|158346|158347|158348|158349|158350|158351|158352|158353|158354|158355|158356|158358|158359|158360|158361|158362|158363|158364|158365|158366|158368|158369|158370|158371|158372|158373|158374|158376|158377|158378|158379|158380|158381|158382|158383|158384|158385|158386|158387|158388|158389|158390|158391|158392|158393|158394|158395|158396|158397|158398|158399|158400|158401|158402|158403|158404|158405|158406|158407|158408|158409|158410|158411|158412|158413|158414|158416|158417|158418|158419|158420|158421|158422|158424|158425|158426|158427|158428|158429|158430|158433|158434|158436|158437|158438|158439|158440|158441|158442|158443|158444|158445|158447|158448|158449|158450|158451|158452|158453|158454|158455|158456|158457|158458|158459|158460|158461|158462|158465|158466|158467|158468|158469|158470|158471|158472|158473|158474|158475|158476|158477|158478|158479|158480|158481|158482|158483|158484|158485|158486|158487|158488|158489|158490|158491|158492|158493|158494|158495|158496|158497|158498|158499|158500|158501|158502|158503|158504|158505|158506|158507|158508|158509|158510|158511|158512|158513|158514|158515|158516|158517|158519|158520|158521|158522|158523|158524|158525|158526|158527|158528|158529|158530|158531|158532|158533|158534|158535|158536|158538|158539|158540|158541|158542|158543|158544|158545|158546|158547|158548|158549|158550|158552|158553|158554|158555|158556|158557|158559|158560|158561|158562|158563|158564|158565|158566|158567|158568|158569|158570|158571|158572|158573|158574|158575|158576|158577|158578|158579|158580|158581|158582|158583|158584|158585|158586|158587|158588|158589|158590|158591|158592|158593|158594|158595|158596|158597|158598|158599|158600|158601|158602|158603|158604|158605|158606|158607|158608|158609|158610|158612|158613|158614|158615|158616|158617|158618|158619|158620|158621|158622|158623|158624|158625|158626|158627|158628|158629|158630|158632|158634|158635|158636|158637|158638|158639|158640|158642|158643|158644|158645|158646|158647|158648|158649|158650|158651|158652|158653|158654|158655|158656|158657|158658|158659|158660|158661|158662|158663|158664|158665|158666|158667|158668|158669|158670|158671|158672|158673|158674|158675|158676|158677|158678|158679|158680|158681|158682|158683|158684|158685|158686|158687|158689|158690|158691|158692|158693|158694|158695|158696|158697|158698|158699|158700|158701|158702|158703|158704|158705|158706|158707|158708|158709|158710|158711|158712|158713|158714|158715|158716|158717|158718|158719|158720|158721|158722|158723|158724|158725|158726|158727|158728|158729|158731|158732|158734|158735|158736|158737|158738|158739|158740|158741|158742|158743|158744|158745|158746|158747|158748|158749|158750|158752|158753|158754|158755|158757|158758|158759|158760|158761|158762|158763|158764|158765|158766|158768|158769|158770|158772|158774|158775|158776|158777|158778|158779|158780|158781|158782|158783|158784|158785|158786|158787|158788|158789|158790|158791|158793|158794|158795|158796|158797|158798|158799|158800|158801|158802|158804|158805|158806|158807|158808|158809|158810|158811|158812|158815|158816|158817|158818|158819|158820|158822|158823|158824|158825|158826|158827|158828|158829|158830|158831|158832|158833|158834|158835|158836|158837|158838|158839|158840|158841|158842|158843|158845|158846|158847|158848|158849|158850|158851|158852|158853|158854|158855|158856|158857|158858|158859|158860|158861|158862|158863|158864|158865|158866|158867|158868|158869|158870|158871|158872|158873|158874|158875|158876|158877|158878|158879|158880|158881|158882|158883|158884|158885|158886|158887|158888|158889|158890|158893|158894|158895|158896|158897|158898|158899|158901|158902|158903|158904|158905|158906|158907|158908|158909|158910|158911|158914|158915|158916|158917|158918|158919|158920|158921|158922|158923|158924|158925|158926|158927|158928|158929|158931|158932|158933|158935|158936|158937|158938|158939|158940|158941|158942|158944|158945|158946|158947|158948|158949|158950|158951|158953|158954|158955|158956|158957|158958|158959|158960|158961|158962|158963|158964|158965|158966|158967|158968|158969|158970|158972|158973|158974|158975|158976|158978|158979|158980|158981|158982|158983|158984|158985|158986|158987|158989|158990|158991|158992|158993|158994|158995|158996|158997|158998|158999|159001|159002|159003|159004|159006|159007|159008|159009|159010|159011|159012|159013|159014|159015|159016|159017|159018|159019|159020|159021|159022|159023|159024|159025|159026|159027|159028|159029|159030|159031|159032|159033|159034|159035|159036|159037|159038|159039|159040|159041|159042|159043|159044|159047|159048|159049|159050|159051|159052|159053|159055|159056|159057|159058|159059|159060|159061|159064|159065|159066|159067|159068|159069|159070|159071|159072|159073|159074|159075|159076|159077|159078|159079|159080|159081|159082|159084|159085|159088|159089|159090|159091|159092|159093|159094|159095|159096|159097|159098|159099|159100|159101|159102|159103|159104|159105|159108|159110|159115|159118|159119|159121|159123|159127|159128|159129|159131|159132|159134|159135|159136|159137|159141|159142|159143|159144|159146|159147|159148|159149|159150|159151|159152|159154|159155|159157|159158|159159|159160|159161|159162|159163|159166|159168|159169|159170|159171|159172|159173|159175|159176|159177|159178|159179|159180|159181|159183|159184|159185|159186|159187|159188|159189|159190|159191|159192|159193|159194|159195|159196|159197|159198|159199|159200|159201|159202|159203|159204|159205|159206|159207|159208|159210|159211|159212|159213|159214|159215|159216|159217|159218|159219|159220|159221|159222|159223|159224|159225|159226|159227|159228|159229|159230|159231|159232|159233|159234|159235|159237|159238|159239|159240|159241|159242|159243|159244|159245|159246|159247|159249|159250|159251|159252|159253|159254|159255|159256|159263|159264|159267|159271|159272|159273|159274|159276|159277|159279|159280|159281|159282|159283|159285|159286|159287|159288|159289|159291|159293|159294|159295|159296|159297|159298|159299|159300|159301|159302|159303|159304|159305|159306|159307|159308|159309|159310|159311|159312|159313|159314|159315|159316|159317|159318|159319|159320|159321|159322|159323|159324|159325|159327|159328|159329|159330|159331|159332|159335|159336|159337|159338|159339|159340|159341|159342|159343|159344|159345|159346|159347|159348|159349|159350|159351|159352|159353|159354|159355|159356|159357|159358|159360|159361|159362|159363|159364|159365|159367|159368|159369|159370|159371|159372|159374|159376|159377|159378|159379|159380|159381|159382|159383|159384|159385|159386|159387|159388|159389|159390|159394|159395|159396|159397|159398|159399|159400|159401|159402|159403|159409|159410|159411|159412|159413|159414|159416|159417|159418|159419|159420|159421|159422|159423|159424|159425|159429|159430|159431|159432|159433|159436|159437|159438|159441|159443|159444|159445|159447|159448|159449|159450|159451|159452|159453|159454|159455|159456|159457|159458|159459|159460|159461|159463|159464|159465|159467|159468|159469|159470|159471|159472|159474|159475|159476|159477|159478|159479|159480|159481|159482|159484|159485|159490|159491|159492|159493|159495|159497|159498|159499|159500|159501|159503|159504|159505|159506|159507|159508|159509|159510|159511|159512|159513|159514|159515|159516|159517|159518|159519|159520|159521|159522|159523|159524|159525|159526|159527|159528|159529|159530|159531|159532|159533|159534|159535|159536|159537|159538|159540|159541|159542|159543|159544|159545|159546|159547|159548|159549|159550|159551|159552|159553|159554|159555|159556|159557|159558|159559|159560|159561|159562|159563|159564|159565|159569|159570|159571|159573|159575|159576|159578|159579|159580|159581|159584|159585|159586|159587|159588|159591|159592|159593|159594|159595|159596|159597|159598|159600|159601|159602|159603|159604|159605|159606|159607|159608|159609|159610|159611|159612|159613|159614|159615|159616|159617|159618|159619|159621|159622|159623|159624|159625|159626|159627|159628|159629|159630|159631|159632|159633|159639|159640|159641|159642|159643|159645|159646|159647|159648|159650|159651|159652|159653|159654|159655|159656|159657|159658|159659|159660|159661|159662|159663|159664|159665|159666|159667|159668|159669|159670|159673|159675|159677|159678|159679|159680|159681|159682|159683|159684|159685|159686|159687|159688|159689|159690|159691|159693|159694|159695|159697|159698|159701|159706|159707|159709|159710|159711|159712|159714|159715|159716|159717|159718|159719|159720|159721|159722|159723|159724|159725|159726|159727|159728|159729|159730|159731|159732|159733|159734|159735|159736|159737|159738|159739|159740|159748|159749|159750|159751|159752|159753|159754|159755|159756|159757|159758|159759|159761|159763|159764|159765|159766|159767|159768|159769|159770|159771|159772|159776|159777|159779|159780|159781|159782|159783|159784|159785|159786|159787|159790|159791|159792|159794|159795|159796|159797|159798|159799|159800|159801|159802|159806|159807|159808|159809|159810|159811|159812|159813|159814|159815|159816|159817|159818|159819|159820|159821|159822|159823|159824|159825|159826|159827|159828|159829|159830|159831|159832|159833|159834|159835|159836|159837|159840|159841|159842|159843|159844|159845|159846|159847|159850|159851|159854|159855|159856|159858|159859|159860|159863|159864|159866|159867|159868|159869|159872|159873|159875|159876|159877|159878|159879|159880|159881|159882|159883|159884|159885|159886|159887|159889|159890|159891|159892|159893|159894|159895|159896|159897|159898|159899|159900|159902|159903|159904|159905|159906|159907|159908|159909|159913|159914|159916|159917|159918|159919|159920|159921|159922|159923|159924|159925|159926|159927|159928|159929|159930|159931|159932|159933|159934|159935|159936|159938|159939|159940|159941|159942|159943|159944|159946|159947|159948|159949|159950|159951|159952|159953|159954|159955|159956|159957|159959|159960|159961|159962|159963|159964|159966|159967|159968|159969|159970|159971|159972|159973|159974|159975|159976|159977|159979|159981|159983|159984|159985|159986|159987|159989|159990|159991|159992|159993|159995|159996|159997|159998|159999|160000|160001|160002|160003|160004|160005|160006|160007|160008|160009|160010|160011|160013|160014|160015|160016|160017|160018|160019|160020|160021|160022|160023|160024|160025|160026|160027|160028|160029|160030|160031|160032|160033|160035|160036|160037|160038|160039|160040|160041|160042|160043|160044|160045|160046|160048|160056|160057|160058|160059|160060|160061|160067|160068|160069|160070|160072|160073|160074|160075|160076|160078|160079|160080|160081|160082|160083|160084|160085|160086|160087|160088|160089|160090|160091|160092|160093|160094|160095|160096|160097|160099|160100|160101|160102|160103|160104|160105|160106|160107|160109|160110|160111|160112|160113|160114|160118|160119|160122|160123|160124|160125|160126|160127|160128|160130|160131|160132|160133|160134|160136|160137|160138|160139|160140|160141|160142|160143|160144|160149|160150|160151|160152|160153|160154|160155|160156|160157|160158|160159|160160|160161|160162|160163|160164|160165|160166|160167|160168|160169|160170|160171|160172|160173|160174|160175|160176|160177|160179|160180|160181|160183|160184|160185|160186|160187|160188|160189|160190|160191|160192|160193|160194|160195|160196|160199|160200|160201|160202|160203|160204|160205|160206|160207|160208|160211|160212|160213|160214|160215|160216|160217|160218|160221|160222|160223|160224|160225|160226|160227|160228|160229|160230|160231|160232|160233|160234|160235|160237|160238|160239|160240|160241|160242|160243|160245|160246|160248|160249|160250|160253|160254|160255|160256|160257|160258|160260|160261|160263|160264|160265|160266|160267|160270|160271|160272|160273|160274|160275|160276|160277|160278|160279|160280|160281|160282|160283|160284|160285|160286|160287|160288|160289|160290|160291|160292|160293|160294|160295|160296|160297|160298|160299|160300|160301|160303|160305|160306|160307|160308|160309|160310|160311|160312|160313|160314|160315|160316|160317|160318|160319|160320|160321|160322|160325|160328|160329|160333|160334|160335|160340|160341|160342|160343|160344|160345|160346|160347|160348|160349|160350|160351|160352|160353|160355|160356|160357|160358|160359|160360|160361|160362|160363|160364|160365|160366|160367|160368|160369|160370|160371|160373|160375|160376|160377|160378|160379|160380|160381|160382|160383|160384|160385|160386|160387|160388|160389|160390|160391|160392|160393|160394|160395|160397|160398|160399|160400|160401|160402|160403|160404|160405|160406|160408|160409|160410|160411|160412|160413|160414|160415|160416|160417|160418|160419|160420|160421|160422|160423|160424|160425|160426|160427|160428|160429|160430|160434|160435|160436|160437|160438|160439|160440|160441|160442|160443|160444|160445|160446|160448|160449|160451|160452|160453|160454|160455|160456|160457|160458|160459|160460|160461|160463|160464|160465|160466|160467|160468|160469|160470|160471|160472|160473|160474|160475|160476|160477|160478|160479|160480|160481|160482|160483|160484|160485|160486|160487|160488|160489|160491|160492|160493|160494|160495|160496|160497|160498|160499|160500|160501|160502|160503|160504|160505|160506|160507|160508|160509|160510|160511|160512|160515|160517|160518|160519|160520|160521|160522|160523|160524|160525|160526|160527|160528|160529|160530|160531|160532|160533|160534|160535|160536|160537|160538|160539|160540|160541|160542|160545|160546|160547|160551|160552|160553|160557|160558|160559|160560|160561|160563|160564|160566|160567|160568|160569|160570|160571|160572|160573|160574|160577|160578|160579|160580|160581|160584|160585|160586|160587|160588|160589|160590|160591|160592|160594|160595|160596|160597|160598|160599|160600|160602|160603|160604|160605|160606|160607|160608|160609|160610|160611|160612|160613|160614|160615|160616|160617|160618|160619|160620|160621|160622|160623|160624|160625|160626|160627|160628|160629|160630|160631|160632|160633|160634|160635|160636|160637|160638|160639|160640|160641|160642|160643|160644|160645|160646|160647|160648|160649|160650|160651|160652|160653|160654|160655|160656|160657|160661|160662|160663|160664|160665|160667|160668|160669|160670|160671|160672|160673|160674|160675|160676|160677|160678|160679|160680|160681|160682|160683|160684|160685|160686|160687|160688|160689|160690|160691|160692|160693|160694|160695|160698|160699|160700|160701|160702|160703|160704|160705|160706|160707|160708|160709|160710|160711|160712|160714|160715|160716|160717|160718|160719|160720|160724|160725|160726|160727|160728|160729|160731|160732|160733|160734|160735|160736|160737|160738|160739|160740|160741|160742|160743|160744|160745|160746|160749|160750|160751|160753|160754|160755|160756|160757|160759|160760|160761|160762|160763|160764|160765|160766|160768|160769|160772|160773|160774|160775|160776|160777|160781|160782|160783|160784|160785|160786|160787|160788|160789|160790|160791|160792|160793|160794|160795|160796|160797|160798|160799|160800|160801|160802|160803|160807|160808|160809|160810|160812|160813|160814|160815|160816|160817|160819|160820|160821|160822|160823|160824|160825|160826|160827|160828|160829|160830|160831|160832|160833|160834|160835|160836|160837|160838|160839|160840|160841|160842|160843|160844|160845|160846|160847|160848|160849|160854|160856|160857|160861|160865|160867|160869|160871|160872|160874|160875|160876|160878|160879|160881|160882|160883|160884|160891|160894|160895|160896|160900|160901|160904|160906|160907|160909|160910|160911|160912|160913|160914|160915|160916|160918|160919|160920|160922|160923|160924|160927|160928|160929|160931|160932|160933|160934|160936|160937|160940|160941|160942|160943|160944|160945|160946|160947|160948|160950|160951|160952|160957|160958|160959|160961|160964|160965|160966|160968|160969|160970|160971|160972|160973|160974|160975|160976|160977|160978|160979|160980|160982|160983|160984|160985|160986|160987|160989|160990|160991|160992|160993|160994|160995|160996|160997|160998|160999|161000|161001|161002|161003|161004|161005|161006|161007|161008|161009|161010|161011|161012|161013|161014|161015|161016|161017|161018|161019|161020|161021|161023|161024|161025|161026|161027|161028|161029|161030|161032|161033|161034|161035|161036|161037|161038|161039|161040|161041|161042|161044|161045|161046|161049|161050|161051|161052|161054|161055|161056|161057|161058|161059|161060|161061|161062|161063|161064|161065|161066|161067|161068|161069|161070|161071|161072|161073|161074|161075|161076|161077|161078|161079|161080|161081|161082|161084|161085|161086|161087|161088|161089|161090|161092|161093|161094|161095|161096|161097|161098|161099|161100|161101|161102|161103|161104|161105|161106|161107|161108|161109|161110|161111|161112|161113|161114|161115|161116|161117|161118|161119|161120|161121|161122|161123|161124|161125|161126|161127|161128|161129|161130|161131|161132|161133|161134|161135|161136|161138|161139|161140|161141|161142|161143|161144|161145|161146|161147|161148|161149|161150|161151|161152|161153|161154|161155|161156|161157|161158|161159|161160|161161|161162|161163|161164|161165|161167|161168|161169|161170|161171|161172|161173|161174|161176|161177|161178|161179|161180|161181|161182|161183|161184|161185|161186|161187|161188|161189|161190|161191|161192|161193|161194|161195|161196|161197|161198|161199|161200|161201|161202|161203|161204|161205|161206|161207|161208|161209|161210|161211|161212|161213|161214|161215|161216|161217|161218|161219|161220|161221|161222|161223|161225|161226|161227|161228|161229|161230|161231|161232|161234|161235|161236|161237|161238|161239|161240|161241|161242|161243|161244|161245|161246|161247|161248|161249|161250|161251|161252|161253|161254|161255|161256|161257|161258|161259|161260|161261|161262|161263|161264|161265|161266|161267|161268|161269|161270|161273|161274|161275|161276|161278|161280|161282|161283|161285|161286|161287|161288|161289|161290|161291|161292|161293|161294|161295|161296|161297|161298|161299|161300|161301|161302|161303|161304|161305|161306|161307|161308|161309|161310|161311|161312|161313|161314|161315|161316|161317|161318|161319|161320|161321|161322|161323|161324|161325|161326|161327|161328|161329|161330|161331|161332|161333|161334|161335|161336|161337|161338|161339|161340|161341|161342|161343|161344|161345|161347|161348|161349|161350|161351|161352|161353|161354|161355|161356|161357|161358|161359|161360|161361|161362|161363|161364|161365|161366|161367|161368|161369|161370|161371|161372|161373|161374|161375|161376|161377|161378|161379|161380|161381|161382|161383|161384|161385|161386|161387|161388|161389|161390|161391|161392|161393|161394|161395|161396|161397|161398|161399|161400|161401|161402|161403|161404|161405|161406|161407|161408|161409|161410|161411|161412|161413|161414|161415|161416|161417|161418|161419|161420|161421|161422|161423|161424|161425|161426|161427|161428|161429|161430|161431|161432|161433|161434|161435|161436|161437|161438|161439|161440|161441|161442|161443|161444|161445|161446|161447|161448|161449|161450|161453|161454|161455|161459|161460|161461|161463|161464|161465|161466|161467|161468|161469|161470|161471|161472|161473|161474|161475|161476|161477|161478|161479|161480|161481|161482|161483|161484|161485|161486|161487|161488|161489|161491|161492|161493|161494|161499|161500|161501|161502|161503|161504|161505|161506|161507|161508|161509|161515|161516|161517|161519|161520|161521|161522|161524|161525|161526|161527|161528|161529|161530|161531|161532|161533|161534|161535|161536|161537|161538|161539|161540|161541|161542|161543|161544|161546|161547|161548|161549|161550|161551|161552|161553|161554|161555|161556|161557|161558|161559|161560|161561|161562|161563|161564|161565|161566|161567|161568|161569|161570|161571|161572|161573|161574|161575|161576|161577|161578|161579|161580|161581|161582|161583|161584|161585|161586|161587|161588|161589|161590|161591|161592|161593|161594|161595|161596|161597|161598|161599|161600|161601|161602|161603|161604|161605|161606|161607|161608|161609|161610|161611|161612|161613|161614|161615|161616|161617|161618|161619|161620|161621|161622|161623|161624|161625|161626|161627|161628|161629|161630|161631|161632|161633|161634|161635|161636|161637|161638|161639|161640|161641|161642|161643|161644|161645|161646|161647|161648|161649|161650|161651|161652|161653|161654|161655|161656|161657|161658|161659|161660|161661|161662|161663|161664|161665|161666|161667|161668|161669|161670|161671|161672|161673|161674|161675|161676|161677|161678|161679|161680|161681|161682|161683|161684|161685|161686|161687|161688|161689|161690|161691|161692|161693|161694|161695|161696|161697|161698|161699|161700|161701|161702|161703|161704|161705|161706|161707|161708|161709|161711|161712|161713|161714|161715|161717|161718|161720|161721|161722|161723|161724|161728|161730|161733|161734|161735|161736|161737|161738|161741|161742|161743|161744|161745|161746|161747|161748|161749|161750|161751|161752|161753|161754|161755|161756|161757|161758|161759|161760|161761|161762|161763|161764|161765|161766|161767|161771|161772|161773|161774|161775|161781|161782|161783|161784|161785|161790|161791|161794|161795|161796|161800|161801|161802|161803|161808|161809|161810|161812|161813|161814|161815|161816|161817|161818|161819|161821|161822|161826|161827|161828|161829|161831|161832|161833|161834|161835|161836|161837|161838|161839|161840|161841|161842|161843|161844|161845|161846|161848|161849|161850|161855|161856|161857|161859|161860|161862|161863|161864|161866|161868|161869|161871|161872|161875|161876|161879|161880|161881|161882|161883|161884|161885|161886|161887|161888|161889|161890|161891|161892|161893|161894|161895|161896|161897|161898|161899|161900|161901|161908|161909|161910|161911|161912|161919|161920|161921|161922|161923|161924|161932|161933|161935|161936|161937|161939|161941|161942|161943|161944|161945|161946|161947|161948|161949|161957|161960|161961|161962|161963|161964|161966|161967|161970|161971|161972|161975|161976|161977|161978|161979|161981|161983|161984|161987|161988|161989|161990|161993|161995|161996|161997|161998|161999|162000|162001|162002|162003|162004|162005|162006|162007|162008|162009|162010|162012|162017|162018|162019|162020|162021|162022|162027|162028|162029|162030|162032|162034|162035|162036|162037|162038|162039|162040|162041|162042|162044|162045|162048|162049|162050|162052|162053|162054|162055|162058|162059|162061|162062|162063|162066|162067|162073|162076|162077|162082|162083|162084|162085|162086|162087|162088|162089|162090|162091|162092|162095|162096|162097|162099|162100|162101|162102|162103|162104|162105|162106|162107|162108|162110|162113|162114|162115|162117|162118|162120|162121|162122|162123|162125|162127|162129|162130|162133|162134|162135|162136|162139|162140|162141|162146|162147|162148|162149|162150|162151|162152|162153|162154|162155|162156|162157|162158|162159|162160|162161|162162|162163|162165|162166|162167|162168|162169|162170|162171|162172|162173|162174|162175|162176|162177|162178|162179|162180|162181|162182|162183|162184|162185|162186|162187|162188|162189|162190|162191|162192|162193|162194|162195|162196|162197|162198|162199|162200|162201|162202|162203|162204|162205|162206|162207|162208|162209|162210|162211|162212|162213|162214|162215|162216|162217|162218|162219|162220|162221|162222|162223|162224|162225|162226|162227|162228|162229|162230|162231|162232|162233|162234|162235|162236|162237|162238|162239|162240|162241|162242|162243|162245|162246|162247|162248|162249|162250|162251|162252|162253|162254|162255|162256|162257|162258|162259|162260|162261|162262|162263|162265|162266|162267|162268|162269|162270|162271|162272|162273|162274|162275|162276|162277|162278|162279|162280|162281|162282|162283|162284|162285|162287|162288|162289|162290|162291|162292|162293|162294|162295|162296|162297|162298|162299|162300|162301|162302|162303|162304|162305|162307|162308|162309|162310|162311|162312|162313|162314|162315|162316|162317|162318|162319|162320|162321|162322|162323|162324|162325|162326|162327|162328|162329|162330|162331|162332|162333|162334|162335|162336|162337|162338|162339|162340|162341|162342|162343|162344|162345|162346|162347|162348|162349|162350|162352|162353|162354|162355|162356|162357|162358|162359|162360|162361|162362|162364|162365|162366|162367|162368|162369|162370|162371|162372|162373|162374|162375|162376|162377|162378|162379|162380|162381|162382|162383|162384|162385|162386|162388|162389|162390|162391|162392|162393|162394|162396|162397|162398|162399|162400|162401|162402|162403|162404|162405|162406|162407|162408|162409|162410|162411|162412|162413|162414|162415|162416|162417|162418|162419|162420|162421|162422|162423|162424|162425|162426|162427|162428|162429|162430|162431|162432|162433|162434|162435|162436|162437|162438|162439|162440|162441|162442|162443|162444|162446|162448|162450|162451|162454|162455|162456|162459|162461|162462|162463|162464|162465|162466|162467|162468|162470|162472|162473|162475|162476|162480|162482|162483|162484|162485|162486|162489|162491|162493|162494|162495|162496|162498|162499|162500|162501|162502|162503|162504|162505|162506|162507|162508|162509|162510|162511|162512|162513|162514|162515|162516|162517|162518|162520|162521|162522|162523|162524|162525|162526|162527|162528|162529|162530|162531|162532|162533|162534|162535|162536|162538|162539|162540|162541|162542|162543|162544|162545|162546|162547|162548|162549|162550|162551|162552|162553|162554|162555|162556|162557|162558|162559|162564|162565|162566|162567|162568|162569|162570|162571|162572|162573|162574|162575|162576|162577|162578|162579|162580|162581|162582|162583|162584|162585|162586|162587|162588|162589|162590|162591|162592|162593|162594|162595|162596|162597|162598|162599|162600|162601|162602|162603|162604|162605|162606|162607|162608|162609|162610|162611|162612|162613|162614|162615|162616|162617|162618|162621|162622|162623|162624|162625|162626|162627|162628|162629|162630|162631|162632|162633|162634|162635|162636|162637|162639|162640|162644|162645|162646|162647|162648|162649|162650|162651|162652|162653|162654|162655|162656|162657|162658|162659|162660|162661|162662|162663|162664|162665|162666|162667|162668|162669|162670|162671|162672|162673|162674|162675|162676|162677|162678|162679|162680|162681|162682|162683|162684|162685|162686|162687|162688|162690|162691|162692|162694|162695|162696|162697|162698|162699|162700|162701|162702|162703|162704|162705|162706|162707|162708|162709|162710|162711|162712|162713|162714|162715|162716|162717|162718|162719|162720|162721|162722|162723|162724|162725|162726|162727|162728|162729|162730|162731|162732|162733|162734|162735|162736|162737|162738|162739|162740|162741|162742|162743|162744|162745|162746|162747|162748|162749|162750|162751|162752|162753|162754|162755|162756|162757|162758|162759|162760|162761|162762|162763|162764|162765|162766|162767|162768|162769|162770|162771|162772|162773|162774|162775|162776|162777|162778|162779|162780|162781|162782|162783|162784|162785|162786|162787|162788|162789|162790|162791|162792|162793|162794|162795|162796|162797|162798|162799|162800|162801|162802|162803|162804|162805|162806|162807|162808|162809|162810|162811|162812|162813|162814|162815|162816|162817|162818|162819|162820|162821|162822|162823|162824|162825|162826|162827|162828|162829|162830|162831|162832|162833|162834|162835|162836|162837|162838|162839|162840|162841|162842|162843|162844|162845|162846|162847|162848|162849|162850|162851|162852|162853|162854|162855|162856|162857|162858|162859|162860|162861|162862|162863|162864|162865|162866|162867|162868|162869|162870|162871|162872|162873|162874|162875|162876|162877|162878|162879|162880|162881|162882|162883|162884|162885|162886|162887|162889|162890|162891|162892|162893|162895|162896|162897|162898|162900|162901|162902|162910|162912|162915|162916|162917|162919|162920|162921|162923|162927|162928|162929|162930|162934|162935|162936|162942|162943|162944|162945|162946|162947|162948|162950|162951|162954|162955|162957|162958|162959|162960|162961|162962|162963|162967|162968|162969|162971|162972|162973|162975|162976|162977|162979|162980|162981|162982|162983|162984|162985|162986|162988|162990|162991|162992|162993|162996|162997|162999|163000|163001|163003|163004|163005|163006|163007|163009|163010|163011|163013|163014|163015|163016|163018|163021|163022|163027|163028|163030|163031|163032|163033|163034|163035|163036|163037|163038|163039|163040|163043|163045|163046|163048|163053|163054|163055|163056|163057|163059|163060|163061|163062|163065|163066|163068|163069|163070|163071|163072|163075|163076|163077|163078|163080|163081|163082|163083|163085|163086|163087|163088|163089|163090|163092|163093|163094|163100|163102|163103|163104|163106|163108|163110|163111|163112|163113|163115|163116|163120|163121|163122|163124|163125|163126|163130|163131|163132|163136|163137|163141|163145|163146|163147|163148|163150|163153|163154|163155|163158|163159|163164|163165|163166|163167|163168|163170|163174|163175|163177|163178|163179|163181|163182|163183|163184|163185|163186|163187|163188|163189|163190|163192|163193|163195|163197|163198|163199|163200|163201|163203|163204|163205|163206|163207|163208|163210|163213|163217|163218|163219|163221|163226|163227|163228|163232|163233|163236|163237|163238|163239|163241|163242|163243|163244|163245|163247|163249|163250|163252|163253|163256|163257|163259|163260|163261|163262|163265|163266|163269|163271|163274|163275|163276|163280|163281|163283|163284|163286|163287|163288|163289|163290|163291|163293|163294|163295|163298|163299|163300|163302|163304|163305|163308|163309|163310|163311|163312|163314|163316|163317|163318|163322|163323|163324|163325|163326|163327|163328|163329|163333|163334|163337|163338|163340|163342|163343|163344|163345|163346|163347|163349|163350|163351|163352|163353|163355|163359|163361|163362|163363|163367|163368|163370|163372|163373|163376|163379|163380|163381|163382|163383|163384|163385|163386|163389|163390|163392|163393|163394|163395|163396|163397|163400|163401|163402|163403|163404|163405|163407|163408|163412|163413|163414|163416|163417|163418|163419|163422|163423|163424|163427|163429|163430|163431|163432|163433|163434|163435|163436|163438|163439|163441|163442|163445|163446|163449|163450|163453|163457|163459|163462|163463|163464|163465|163466|163467|163468|163469|163470|163471|163472|163473|163474|163475|163476|163477|163478|163480|163481|163482|163484|163485|163487|163488|163491|163492|163493|163494|163495|163496|163497|163498|163499|163500|163501|163502|163503|163504|163506|163507|163509|163511|163512|163516|163517|163518|163519|163521|163522|163523|163527|163534|163535|163538|163539|163540|163541|163542|163544|163545|163546|163548|163551|163556|163557|163559|163561|163562|163563|163564|163565|163566|163567|163568|163569|163571|163572|163573|163576|163579|163580|163582|163583|163584|163588|163589|163592|163593|163594|163597|163601|163603|163606|163608|163609|163611|163615|163618|163624|163628|163629|163631|163632|163633|163634|163635|163636|163637|163639|163644|163645|163647|163648|163649|163650|163651|163652|163656|163657|163659|163660|163661|163663|163664|163665|163666|163667|163668|163674|163675|163676|163681|163683|163684|163685|163687|163688|163689|163690|163691|163692|163698|163699|163700|163701|163703|163704|163705|163706|163708|163711|163713|163714|163717|163719|163720|163722|163723|163724|163725|163726|163729|163730|163732|163733|163735|163736|163737|163738|163739|163740|163741|163744|163745|163747|163748|163749|163750|163751|163752|163754|163755|163756|163757|163761|163762|163764|163767|163768|163769|163770|163772|163773|163774|163775|163776|163777|163778|163780|163781|163782|163783|163784|163785|163786|163787|163788|163789|163791|163792|163793|163795|163796|163798|163800|163802|163806|163807|163812|163814|163815|163816|163818|163819|163820|163821|163822|163823|163824|163825|163826|163827|163831|163832|163833|163834|163835|163839|163840|163841|163846|163848|163849|163850|163855|163856|163857|163859|163860|163861|163862|163863|163866|163868|163869|163870|163871|163872|163874|163875|163877|163878|163879|163880|163883|163886|163888|163890|163891|163893|163896|163897|163898|163903|163904|163905|163906|163907|163908|163909|163910|163911|163912|163913|163917|163925|163926|163927|163928|163929|163931|163932|163934|163937|163938|163939|163940|163941|163942|163943|163944|163945|163946|163947|163950|163951|163952|163953|163954|163957|163960|163961|163964|163965|163968|163970|163971|163972|163973|163974|163975|163976|163977|163980|163981|163983|163985|163986|163987|163989|163990|163991|163993|163994|163997|163998|164000|164001|164002|164003|164004|164005|164009|164010|164011|164013|164014|164015|164016|164017|164018|164020|164021|164022|164023|164024|164026|164029|164031|164032|164033|164034|164035|164037|164039|164040|164043|164048|164049|164050|164051|164052|164053|164054|164055|164056|164057|164058|164059|164060|164061|164062|164063|164064|164065|164066|164067|164068|164069|164070|164071|164079|164080|164081|164082|164083|164084|164085|164086|164087|164088|164089|164090|164091|164092|164093|164094|164095|164096|164097|164098|164099|164100|164101|164102|164103|164104|164105|164106|164107|164108|164109|164110|164111|164112|164113|164114|164115|164116|164117|164118|164119|164120|164121|164122|164123|164124|164125|164126|164127|164128|164129|164130|164131|164132|164133|164134|164135|164136|164137|164138|164139|164140|164141|164142|164143|164144|164145|164146|164147|164148|164149|164150|164151|164152|164153|164154|164155|164156|164157|164158|164159|164160|164161|164162|164163|164164|164165|164166|164167|164168|164169|164170|164171|164172|164173|164174|164175|164176|164177|164178|164179|164180|164181|164182|164183|164184|164185|164186|164187|164188|164189|164190|164191|164192|164193|164194|164195|164196|164197|164198|164199|164200|164201|164202|164203|164204|164205|164206|164207|164208|164209|164210|164211|164212|164213|164214|164215|164216|164217|164218|164219|164220|164221|164222|164223|164224|164225|164226|164227|164228|164229|164230|164231|164232|164233|164234|164235|164236|164237|164238|164239|164240|164241|164242|164243|164244|164245|164246|164247|164248|164249|164250|164251|164252|164253|164254|164255|164256|164257|164258|164259|164260|164261|164262|164263|164264|164265|164266|164267|164268|164269|164270|164271|164272|164273|164274|164275|164276|164277|164278|164279|164280|164281|164282|164283|164284|164285|164286|164287|164288|164289|164290|164291|164292|164293|164294|164295|164296|164297|164298|164299|164300|164301|164302|164303|164304|164305|164306|164307|164308|164309|164310|164311|164312|164313|164314|164315|164316|164317|164318|164319|164320|164321|164322|164323|164324|164325|164326|164327|164328|164329|164330|164331|164332|164333|164334|164335|164336|164337|164338|164339|164340|164341|164342|164343|164344|164345|164346|164347|164348|164349|164350|164351|164352|164353|164354|164355|164356|164357|164358|164359|164360|164361|164362|164363|164364|164365|164366|164367|164368|164369|164370|164371|164372|164373|164374|164375|164376|164377|164378|164379|164380|164381|164382|164383|164384|164385|164386|164387|164388|164389|164390|164391|164392|164393|164394|164395|164396|164397|164398|164399|164400|164401|164402|164403|164404|164405|164406|164407|164408|164409|164410|164411|164412|164413|164414|164415|164416|164417|164418|164419|164420|164421|164422|164423|164424|164425|164426|164427|164428|164429|164430|164431|164432|164433|164434|164435|164436|164437|164438|164439|164440|164441|164442|164443|164444|164445|164446|164447|164448|164449|164450|164451|164452|164453|164454|164455|164456|164457|164458|164459|164460|164461|164462|164463|164464|164465|164466|164467|164468|164469|164470|164471|164472|164473|164474|164475|164476|164477|164478|164479|164480|164481|164482|164483|164484|164485|164486|164487|164488|164489|164490|164491|164492|164495|164496|164497|164498|164499|164500|164501|164502|164503|164504|164505|164506|164507|164508|164509|164510|164511|164512|164513|164514|164515|164516|164517|164518|164519|164520|164521|164522|164523|164524|164525|164526|164527|164528|164529|164530|164531|164532|164533|164534|164535|164536|164537|164538|164539|164540|164541|164542|164543|164544|164545|164546|164547|164548|164549|164550|164551|164552|164553|164554|164555|164556|164557|164558|164559|164560|164561|164562|164563|164564|164565|164566|164567|164568|164569|164570|164571|164572|164573|164574|164575|164576|164577|164578|164579|164580|164581|164582|164583|164584|164585|164586|164587|164588|164589|164590|164591|164592|164593|164594|164595|164596|164597|164598|164599|164600|164601|164602|164603|164604|164605|164606|164607|164608|164609|164610|164611|164612|164613|164614|164615|164616|164617|164618|164619|164620|164621|164622|164623|164624|164625|164626|164627|164628|164629|164630|164631|164632|164633|164634|164635|164636|164637|164638|164639|164640|164641|164642|164643|164644|164645|164647|164648|164649|164650|164651|164652|164653|164654|164655|164656|164657|164658|164659|164660|164661|164662|164663|164664|164665|164666|164667|164669|164670|164671|164672|164673|164674|164675|164676|164677|164678|164679|164680|164681|164682|164683|164684|164685|164686|164687|164688|164689|164690|164691|164692|164693|164694|164695|164696|164697|164698|164699|164700|164701|164702|164703|164704|164705|164706|164707|164708|164709|164710|164711|164712|164713|164714|164715|164716|164717|164718|164719|164720|164721|164722|164723|164724|164725|164726|164727|164728|164729|164730|164731|164732|164733|164734|164735|164736|164737|164738|164739|164740|164741|164742|164743|164744|164745|164747|164748|164749|164750|164751|164752|164753|164754|164755|164756|164757|164758|164759|164760|164761|164762|164763|164764|164765|164766|164767|164768|164769|164770|164771|164772|164773|164774|164775|164776|164777|164778|164779|164780|164781|164782|164783|164784|164785|164786|164787|164788|164789|164790|164791|164792|164793|164794|164795|164796|164797|164798|164799|164800|164801|164802|164803|164804|164805|164806|164807|164808|164809|164810|164811|164812|164813|164814|164815|164816|164817|164818|164819|164820|164821|164822|164823|164824|164825|164826|164827|164828|164829|164830|164831|164832|164833|164834|164835|164836|164837|164838|164839|164840|164841|164842|164843|164844|164845|164846|164847|164848|164849|164850|164851|164852|164853|164854|164855|164856|164857|164858|164859|164860|164861|164862|164863|164864|164865|164866|164867|164868|164869|164870|164871|164872|164873|164874|164875|164876|164877|164878|164880|164881|164882|164883|164884|164885|164886|164887|164888|164889|164890|164891|164892|164893|164894|164895|164896|164897|164898|164899|164900|164901|164902|164903|164904|164905|164906|164907|164908|164909|164910|164911|164912|164913|164914|164915|164916|164917|164918|164919|164920|164921|164922|164923|164924|164925|164926|164927|164928|164929|164930|164931|164932|164933|164934|164935|164936|164937|164938|164939|164940|164941|164942|164943|164944|164945|164946|164947|164948|164949|164950|164951|164952|164953|164954|164955|164956|164957|164958|164959|164960|164961|164962|164963|164964|164965|164966|164967|164968|164969|164970|164971|164972|164973|164974|164975|164976|164977|164978|164979|164980|164981|164982|164983|164984|164985|164986|164987|164988|164989|164990|164991|164992|164993|164994|164995|164996|164997|164998|164999|165000|165001|165002|165003|165004|165005|165006|165007|165008|165009|165010|165011|165012|165013|165014|165015|165016|165017|165018|165019|165020|165021|165022|165023|165024|165025|165026|165027|165028|165029|165030|165031|165032|165033|165034|165035|165036|165037|165038|165039|165040|165041|165042|165043|165044|165045|165046|165047|165048|165049|165050|165051|165052|165053|165054|165055|165056|165057|165058|165059|165060|165061|165062|165063|165064|165065|165066|165067|165068|165069|165070|165071|165072|165073|165074|165075|165076|165077|165078|165079|165080|165081|165082|165083|165084|165085|165086|165087|165088|165089|165090|165091|165092|165093|165094|165095|165096|165097|165098|165099|165100|165101|165102|165103|165104|165105|165106|165107|165108|165109|165110|165111|165112|165113|165114|165115|165116|165117|165118|165119|165120|165121|165122|165123|165124|165125|165126|165127|165128|165129|165130|165131|165132|165133|165134|165135|165136|165137|165138|165139|165140|165141|165142|165143|165144|165145|165146|165147|165148|165149|165150|165151|165152|165153|165154|165155|165156|165157|165158|165159|165160|165161|165162|165163|165164|165165|165166|165167|165168|165169|165170|165171|165172|165173|165174|165175|165176|165177|165178|165179|165180|165181|165182|165183|165184|165185|165186|165187|165188|165189|165190|165191|165192|165193|165194|165195|165196|165197|165198|165199|165200|165201|165202|165203|165204|165205|165206|165207|165208|165209|165210|165211|165212|165213|165214|165215|165216|165217|165218|165219|165220|165221|165222|165223|165224|165225|165226|165227|165228|165229|165230|165231|165232|165233|165234|165235|165236|165237|165238|165239|165240|165241|165242|165243|165244|165245|165246|165247|165248|165249|165250|165251|165252|165253|165254|165255|165256|165257|165258|165259|165260|165261|165262|165263|165264|165265|165266|165267|165268|165269|165270|165271|165272|165273|165274|165275|165276|165277|165278|165279|165280|165281|165282|165283|165284|165285|165286|165287|165288|165289|165290|165291|165292|165293|165294|165295|165296|165297|165298|165299|165300|165301|165302|165303|165304|165305|165306|165307|165308|165309|165310|165311|165312|165313|165314|165315|165316|165317|165318|165319|165320|165321|165322|165323|165324|165325|165326|165327|165328|165329|165330|165331|165332|165333|165334|165335|165336|165337|165338|165339|165340|165341|165342|165343|165344|165345|165346|165347|165348|165349|165350|165351|165352|165353|165354|165355|165356|165357|165358|165359|165360|165361|165362|165363|165364|165365|165366|165367|165368|165369|165370|165371|165372|165373|165374|165375|165376|165377|165378|165379|165380|165381|165382|165384|165385|165386|165387|165388|165389|165390|165391|165392|165393|165394|165395|165396|165397|165398|165399|165400|165401|165402|165403|165404|165405|165406|165407|165408|165409|165410|165411|165412|165413|165414|165415|165416|165417|165418|165419|165420|165421|165422|165423|165424|165425|165426|165427|165428|165429|165430|165431|165432|165433|165434|165435|165436|165437|165438|165439|165440|165441|165442|165443|165444|165445|165446|165447|165448|165449|165450|165451|165452|165453|165454|165455|165456|165457|165458|165459|165460|165461|165462|165463|165464|165465|165466|165467|165468|165469|170625|170626|170636|170640|170641|170642|170645|170646|170647|170648|170651|170654|170665|170666|170667|170674|170675|170677|170680|170682|170683|170684|170685|170686|170687|170688|170689|170690|170691|170692|170693|170696|170698|170706|170707|170708|170709|170710|170715|170718|170722|170723|170724|170725|170727|170728|170729|170730|170733|170734|170735|170737|170741|170742|170752|170753|170754|170755|170756|170757|170758|170759|170760|170761|170762|170763|170764|170765|170766|170767|170768|170769|170770|170771|170772|170773|170774|170775|170776|170777|170778|170779|170780|170781|170782|170783|170784|170785|170786|170787|170788|170789|170790|170791|170792|170793|170794|170795|170796|170797|170798|170799|170800|170801|170802|170803|170804|170805|170806|170807|170808|170809|170810|170811|170812|170813|170814|170815|170816|170817|170818|170819|170820|170821|170822|170823|170824|170825|170826|170827|170828|170829|170830|170831|170832|170833|170834|170835|170836|170837|170838|170839|170840|170841|170842|170843|170844|170845|170846|170847|170848|170849|170850|170851|170852|170853|170854|170855|170856|170857|170858|170859|170860|170861|170862|170863|170864|170865|170866|170867|170868|170869|170870|170871|170872|170873|170874|170875|170876|170877|170878|170879|170880|170881|170882|170884|170885|170886|170887|170888|170889|170890|170891|170892|170893|170894|170895|170896|170897|170898|170899|170900|170901|170902|170903|170904|170905|170906|170907|170908|170909|170910|170911|170912|170913|170914|170915|170916|170917|170918|170919|170920|170921|170922|170923|170924|170925|170926|170927|170928|170929|170930|170931|170932|170933|170934|170935|171854|173631|176682|178472|179482|179700|185724|185725|185726|185727|185728|185729|185730|187098|187099|188069|190190|198655|198656|198657|198658|198659|198660|198661|198662|198663|198664|198665|198666|198667|198668|198669|198670|198671|198672|198673|198674|198675|198676|198677|198678|198679|198680|198681|199036|199825|199826|199827|199828|199829|214205|216066|216067|216068|216069|216070|216071|216072|216073|216074|216075|216076|216077|216078|216079|216080|216081|216082|216083|216084|216085|216086|216087|216088|216089|216090|216091|216092|216093|216094|216095|216096|216097|216098|223672|223673|223674|223675|223676|223677|223678|223679|223680|223681|223682|223683|223684|238515|243946|243947|243948|243950|243951|243952|243954|243957|247369|247370|247371|247372|247373|247374|247375|247376|247377|247378|247379|247380|247381|247382|247383|247384|247385|247386|247780|247781|247782|247783|247784|247785|247786|247787|247788|247789|247790|247791|247792|247793|247794|247795|247796|247797|247798|247799|247800|247801|247802|247803|247804|247805|247806|247807|247808|247809|247810|247811|247812|247813|247814|247815|247816|247817|247818|247819|247820|247821|247822|247823|247824|247825|247826|247827|247828|247829|247830|247831|247832|247833|247834|247835|247836|247837|247838|247839|247840|247841|247842|247843|247844|247845|247846|247847|247848|247849|247850|247851|247852|247853|247854|247855|247856|247857|247858|247859|247860|247861|247862|247863|247864|247865|247866|247867|247868|247869|247870|247871|247872|247873|247874|247875|247876|247877|247878|247879|247880|247881|247882|247883|247884|247885|247886|247887|247888|247889|247890|247891|247892|247893|247894|247895|247896|247897|247898|247899|247900|247901|247902|247903|247904|247905|247906|247907|247908|247909|247910|247911|247912|247913|247914|247915|247916|247917|247918|247919|247920|247921|247922|247923|247924|247925|247926|247927|247928|247929|247930|247931|247932|247933|247934|247935|247936|247937|247938|247939|247940|247941|247942|247943|247944|247945|247946|247947|247948|247949|247950|247951|247952|247953|247954|247955|247956|247957|247958|247959|247960|247961|247962|247963|247964|247965|247966|247967|247968|247969|247970|247971|247972|247973|247974|247975|247976|247977|247978|247979|247980|247981|247982|247983|247984|247985|247986|247987|247988|247989|247990|247991|247992|247993|247994|247995|247996|247997|247998|247999|248000|248001|248002|248003|248004|248005|248006|248007|248008|248009|248010|248011|248012|248013|248014|248015|248016|248017|248018|248019|248020|248021|248022|248023|248024|248025|248026|248027|248028|248029|248030|248031|248032|248033|248034|248035|248036|248037|248038|248039|248040|248041|248042|248043|248044|248045|248046|248047|248048|248049|248050|248051|248052|248053|248054|248055|248056|248057|248058|248059|248060|248061|248062|248063|248064|248065|248066|248067|248068|248069|248070|248071|248072|248073|248074|248075|248076|248077|248078|248079|248080|248081|248082|248083|248084|248085|248086|248087|248088|248089|248090|248091|248092|248093|248094|248095|248096|248097|248098|248099|248100|248101|248102|248103|248104|248105|248106|248107|248108|248109|248110|248111|248112|248113|248114|248115|248116|248117|248118|248119|248120|248121|248122|248123|248124|248125|248126|248127|248128|248129|248130|248131|248132|248133|248134|248135|248136|248137|248138|248139|248140|248141|248142|248143|248144|248145|248146|248147|248148|248149|248150|248151|248152|248153|248154|248155|248156|248157|248158|248159|248160|248161|248162|248163|248164|248165|248166|248167|248168|248169|248170|248171|248172|248173|248174|248175|248176|248177|248178|248179|248180|248181|248182|248183|248184|248185|248186|248187|248188|248189|248190|248191|248192|248193|248194|248195|248196|248197|248198|248199|248200|248201|248202|248203|248204|248205|248206|248207|248208|248209|248210|248211|248212|248213|248214|248215|248216|248217|248218|248219|248220|248221|248222|248223|248224|248225|248226|248227|248228|248229|248230|248231|248232|248233|248234|248235|248236|248237|248238|248239|248240|248241|248242|248243|248244|248245|248246|248247|248248|248249|248250|248251|248252|248253|248254|248255|248256|248257|248258|248259|248260|248261|248262|248263|248264|248265|248266|248267|248268|248269|248270|248271|248272|248273|248274|248275|248276|248277|248278|248279|248280|248281|248282|248283|248284|248285|248286|248287|248288|248289|248290|248291|248292|248293|248294|248295|248296|248297|248298|248299|248300|248301|248302|248303|248304|248305|248306|248307|248308|248309|248310|248311|248312|248313|248314|248315|248316|248317|248318|248319|248320|248321|248322|248323|248324|248325|248326|248327|248328|248329|248330|248331|248332|248333|248334|248335|248336|248337|248338|248339|248340|248341|248342|248343|248344|248345|248346|248347|248348|248349|248350|248351|248352|248353|248354|248355|248356|248357|248358|248359|248360|248361|248362|248363|248364|248365|248366|248367|248368|248369|248370|248371|248372|248373|248374|248375|248376|248377|248378|248379|248380|248381|248382|248383|248384|248385|248386|248387|248388|248389|248390|248391|248392|248393|248394|248395|248396|248397|248398|248399|248400|248401|248402|248403|248404|248405|248406|248407|248408|248409|248410|248411|248412|248413|248414|248415|248416|248417|248418|248419|248420|248421|248422|248423|248424|248425|248426|248427|248428|248429|248430|248431|248432|248433|248434|248435|248436|248437|248438|248439|248440|248441|248442|248443|248444|248445|248446|248447|248448|248449|248450|248451|248452|248453|248454|248455|248456|248457|248458|248459|248460|248461|248462|248463|248464|248465|248466|248467|248468|248469|248470|248471|248472|248473|248474|248475|263499|263500|263501|263502|263503|263504|263505|263506|263507|263508|263509|263510|263511|263512|263513|263514|263515|263516|360810|360858|360909|360947|364125|367314|380483|380484|380485|380486|380487|380488|380489|380490|380491|380492|380493|380494|380495|380496|380497|380498|380499|380500|380501|380502|380503|380504|380505|380506|380507|380508|380509|380510|380511|380512|380513|380514|380515|380516|380517|380518|380519|380520|380521|380522|380523|380524|380525|380526|380527|380528|380529|380530|380531|380532|380533|380534|380535|380536|380537|380538|380539|380540|380541|380542|380543|380544|380545|380546|380547|380548|380549|380550|380551|380552|380553|380554|380555|380556|380557|380558|380559|380560|380561|380562|380563|380564|380565|380566|380567|380568|380569|380570|380571|380572|380573|380574|380575|380576|380577|380578|380579|380580|380581|380582|380583|380584|380585|380586|380587|380588|380589|380590|380602|380603|380604|380605|380606|380607|380608|380609|380610|380611|380612|380613|380614|380615|380616|380617|380618|380619|380620|380621|380622|380623|380624|380625|380626|380627|380628|380629|380630|380631|380632|380633|380634|380635|380636|380637|380638|380639|380640|380641|380642|380643|380644|380645|380646|380647|380648|380649|380650|380651|380652|380653|380654|380655|380656|380657|380658|380659|380660|380661|380662|380663|380664|380665|380666|380667|380668|380669|380670|380671|380672|380673|380674|380675|380676|380677|380678|380679|380680|380681|380682|380683|380684|380685|380686|380687|380688|380689|380690|380691|380692|380693|380694|380695|380696|380697|380698|380699|380700|380701|380702|380703|380704|380705|380706|380707|380708|380709|380710|380711|380712|380713|380714|380715|380716|380717|380718|380719|380720|380721|380722|380723|380724|380725|380726|380727|380728|380729|380730|380731|380732|380733|380734|380735|380736|380737|380738|380739|380740|380741|380742|380743|380744|380745|380746|380747|380748|380749|380750|380751|380752|380753|380754|380755|380756|380757|380758|380759|380760|380761|380762|380763|380764|380765|380766|380767|380768|380769|380770|380771|380772|380773|380774|380775|380776|380777|380778|380779|380780|380781|380782|380783|380784|380785|380786|380787|380788|380789|380790|380791|380792|380793|380794|380795|380796|380797|380798|380799|380800|380801|380802|380803|380804|380805|380806|380807|380808|380809|380810|380811|380812|380813|380814|380815|380816|380817|380818|380819|380820|380821|380822|380823|380824|380825|380826|380827|380828|380829|380830|380831|380832|380833|380834|380835|380836|380837|380838|380839|380840|380841|380842|380843|380844|380845|380846|380847|380848|380849|380850|380851|380852|380853|380854|380855|380856|380857|380858|380859|380860|380861|380862|380863|380864|380865|380866|380867|380868|380869|380870|380871|380872|380873|380874|380875|380876|380877|380878|380879|380880|380881|380882|380883|380884|380885|380886|380887|380888|380889|380890|380891|380892|380893|380894|380895|380896|380897|380898|380899|380900|380901|380902|380903|380904|380905|380906|380907|380908|380909|380910|380911|380912|380913|380914|380915|380916|380917|380918|380919|380920|380921|380922|380923|380924|380925|380926|380927|380928|380929|380930|380931|380932|380933|380934|380935|380936|380937|380938|380939|380940|380941|380942|380943|380944|380945|380946|380947|380948|380949|380950|380951|380952|380953|380954|380955|380956|380957|380958|380959|380960|380961|380962|380963|380964|380965|380966|380967|380968|380969|380970|380971|380972|380973|380974|380975|380976|380977|380978|380979|380980|380981|380982|380983|380984|380985|380986|380987|380988|380989|380990|380991|380992|380993|380994|380995|380996|380997|380998|380999|381000|381001|381002|381003|381004|381005|381006|381007|381008|381009|381010|381011|381012|381013|381014|381015|381016|381017|381018|381019|381020|381021|381022|381023|381024|381025|381026|381027|381028|381029|381030|381031|381032|381033|381034|381035|381036|381037|381038|381039|381040|381041|381042|381043|381044|381045|381046|381047|381048|381049|381050|381051|381052|381053|381054|381055|381056|381057|381058|381059|381060|381061|381062|381063|381064|381065|381066|381067|381068|381069|381070|381071|381072|381073|381074|381075|381076|381077|381078|381079|381080|381081|381082|381083|381084|381085|381086|381087|381088|381089|381090|381091|381092|381093|381094|381095|381096|381097|381098|381099|381100|381101|381102|381103|381104|381105|381106|381107|381108|381109|381110|381111|381112|381113|381114|381115|381116|381117|381118|381119|381120|381121|381122|381123|381124|381125|381126|381127|381128|381129|381130|381131|381132|381133|381134|381135|381136|381137|381138|381139|381140|381141|381142|381143|381144|381145|381146|381147|381148|381149|381150|381151|381152|381153|381154|381155|381156|381157|381158|381159|381160|381161|381162|381163|381164|381165|381166|381167|381168|381169|381170|381171|381172|381173|381174|381175|381176|381177|381178|381179|381180|381181|381182|381183|381184|381185|381186|381187|381188|381189|381190|381191|381192|381193|381194|381195|381196|381197|381198|381199|381200|381201|381202|381203|381204|381205|381206|381207|381208|381209|381210|381211|381212|381213|381214|381215|381216|381217|381218|381219|381220|381221|381222|381223|381224|381225|381226|381227|381228|381229|381230|381231|381232|381233|381234|381235|381236|381237|381238|381239|381240|381241|381242|381243|381244|381245|381246|381247|381248|381249|381250|381251|381252|381253|381254|381255|381256|381257|381258|381259|381260|381261|381262|381263|381264|381265|381266|381267|381268|381269|381270|381271|381272|381273|381274|381275|381276|381277|381278|381279|381280|381281|381282|381283|381284|381285|381286|381287|381288|381289|381290|381291|381292|381293|381294|381295|381296|381297|381298|381299|381300|381301|381302|381303|381304|381305|381306|381307|381308|381309|381310|381311|381312|381313|381314|381315|381316|381317|381318|381319|381320|381321|381322|381323|381324|381325|381326|381327|381328|381329|381330|381331|381332|381333|381334|381335|381336|381337|381338|381339|381340|381341|381342|381343|381344|381345|381346|381347|381348|381349|381350|381351|381352|381353|381354|381355|381356|381357|381358|381359|381360|381361|381362|381363|381364|381365|381366|381367|381368|381369|381370|381371|381372|381373|381374|381375|381376|381377|381378|381379|381380|381381|381382|381383|381384|381385|381386|381387|381388|381389|381390|381391|381392|381393|381394|381395|381396|381397|381398|381399|381400|381401|381402|381403|381404|381405|381406|381407|381408|381409|381410|381411|381412|381413|381414|381415|381416|381417|381418|381419|381420|381421|381422|381423|381424|381425|381426|381427|381428|381429|381430|381431|381432|381433|381434|381435|381436|381437|381438|381439|381440|381441|381442|381443|381444|381445|381446|381447|381448|381449|381450|381451|381452|381453|381454|381455|381456|381457|381458|381459|381460|381461|381462|381463|381464|381465|381466|381467|381468|381469|381470|381471|381472|381473|381474|381475|381476|381477|381478|381479|381480|381481|381482|381483|381484|381485|381486|381487|381488|381489|381490|381491|381492|381493|381494|381495|381496|381497|381498|381499|381500|381501|381502|381503|381504|381505|381506|381507|381508|381509|381510|381511|381512|381513|381514|381515|381516|381517|381518|381519|381520|381521|381522|381523|381524|381525|381526|381527|381528|381529|381530|381531|381532|381533|381534|381535|381536|381537|381538|381539|381540|381541|381542|381543|381544|381545|381546|381547|381548|381549|381550|381551|381552|381553|381554|381555|381556|381557|381558|381559|381560|381561|381562|381563|381564|381565|381566|381567|381568|381569|381570|381571|381572|381573|381574|381575|381576|381577|381578|381579|381580|381581|381582|381583|381584|381585|381586|381587|381588|381589|381590|381591|381592|381593|381594|381595|381596|381597|381598|381599|381600|381601|381602|381603|381604|381605|381606|381607|381608|381609|381610|381611|381612|381613|381614|381615|381616|381617|381618|381619|381620|381621|381622|381623|381624|381625|381626|381627|381628|381629|381630|381631|381632|381633|381634|381635|381636|381637|381638|381639|381640|381641|381642|381643|381644|381645|381646|381647|381648|381649|381650|381651|381652|381653|381654|381655|381656|381657|381658|381659|381660|381661|381662|381663|381664|381665|381666|381667|381668|381669|381670|381671|381672|381673|381674|381675|381676|381677|381678|381679|381680|381681|381682|381683|381684|381685|381686|381687|381688|381689|381690|381691|381692|381693|381694|381695|381696|381697|381698|381699|381700|381701|381702|381703|381704|381705|381706|381707|381708|381709|381710|381711|381712|381713|381714|381715|381716|381717|381718|381719|381720|381721|381722|381723|381724|381725|381726|381727|381728|381729|381730|381731|381732|381733|381734|381735|381736|381737|381738|381739|381740|381741|381742|381743|381744|381745|381746|381747|381748|381749|381750|381751|381752|381753|381754|381755|381756|381757|381758|381759|381760|381761|381762|381763|381764|381765|381766|381767|381768|381769|381770|381771|381772|381773|381774|381775|381776|381777|381778|381779|381780|381781|381782|381783|381784|381785|381786|381787|381788|381789|381790|381791|381792|381793|381794|381795|381796|381797|381798|381799|381800|381801|381802|381803|381804|381805|381806|381807|381808|381809|381810|381811|381812|381813|381814|381815|381816|381817|381818|381819|381820|381821|381822|381823|381824|381825|381826|381827|381828|381829|381830|381831|381832|381833|381834|381835|381836|381837|381838|381839|381840|381841|381842|381843|381844|381845|381846|381847|381848|381849|381850|381851|381852|381853|381854|381855|381856|381857|381858|381859|381860|381861|381862|381863|381864|381865|381866|381867|381868|381869|381870|381871|381872|381873|381874|381875|381876|381877|381878|381879|381880|381881|381882|381883|381884|381885|381886|381887|381888|381889|381890|381891|381892|381893|381894|381895|381896|381897|381898|381899|381900|381901|381902|381903|381904|381905|381906|381907|381908|381909|381910|381911|381912|381913|381914|381915|381916|381917|381918|381919|381920|381921|381922|381923|381924|381925|381926|381927|381928|381929|381930|381931|381932|381933|381934|381935|381936|381937|381938|381939|381940|381941|381942|381943|381944|381945|381946|381947|381948|381949|381950|381951|381952|381953|381954|381955|381956|381957|381958|381959|381960|381961|381962|381963|381964|381965|381966|381967|381968|381969|381970|381971|381972|381973|381974|381975|381976|381977|381978|381979|381980|381981|381982|381983|381984|381985|381986|381987|381988|381989|381990|381991|381992|381993|381994|381995|381996|381997|381998|381999|382000|382001|382002|382003|382004|382005|382006|382007|382008|382009|382010|382011|382012|382013|382014|382015|382016|382017|382018|382019|382020|382021|382022|382023|382024|382025|382026|382027|382028|382029|382030|382031|382032|382033|382034|382035|382036|382037|382038|382039|382040|382041|382042|382043|382044|382045|382046|382047|382048|382049|382050|382051|382052|382053|382054|382055|382056|382057|382058|382059|382060|382061|382062|382063|382064|382065|382066|382067|382068|382069|382070|382071|382072|382073|382074|382075|382076|382077|382078|382079|382080|382081|382082|382083|382084|382085|382086|382087|382088|382089|382090|382091|382092|382093|382094|382095|382096|382097|382098|382099|382100|382101|382102|382103|382104|382105|382106|382107|382108|382109|382110|382111|382112|382113|382114|382115|382116|382117|382118|382119|382120|382121|382122|382123|382124|382125|382126|382127|382128|382129|382130|382131|382132|382133|382134|382135|382136|382137|382138|382139|382140|382141|382142|382143|382144|382145|382146|382147|382148|382149|382150|382151|382152|382153|382154|382155|382156|382157|382158|382159|382160|382161|382162|382163|382164|382165|382166|382167|382168|382169|382170|382171|382172|382173|382174|382175|382176|382177|382178|382179|382180|382181|382182|382183|382184|382185|382186|382187|382188|382189|382190|382191|382192|382193|382194|382195|382196|382197|382198|382199|382200|382201|382202|382203|382204|382205|382206|382207|382208|382209|382210|382211|382212|382213|382214|382215|382216|382217|382218|382219|382220|382221|382222|382223|382224|382225|382226|382227|382228|382229|382230|382231|382232|382233|382234|382235|382236|382237|382238|382239|382240|382241|382242|382243|382244|382245|382246|382247|382248|382249|382250|382251|382252|382253|382254|382255|382256|382257|382258|382259|382260|382261|382262|382263|382264|382265|382266|382267|382268|382269|382270|382271|382272|382273|382274|382275|382276|382277|382278|382279|382280|382281|382282|382283|382284|382285|382286|382287|382288|382289|382290|382291|382292|382293|382294|382295|382296|382297|382298|382299|382300|382301|382302|382303|382304|382305|382306|382307|382308|382309|382310|382311|382312|382313|382314|382315|382316|382317|382318|382319|382320|382321|382322|382323|382324|382325|382326|382327|382328|382329|382330|382331|382332|382333|382334|382335|382336|382337|382338|382339|382340|382341|382342|382343|382344|382345|382346|382347|382348|382349|382350|382351|382352|382353|382354|382355|382356|382357|382358|382359|382360|382361|382362|382363|382364|382365|382366|382367|382368|382369|382370|382371|382372|382373|382374|382375|382376|382377|382378|382379|382380|382381|382382|382383|382384|382385|382386|382387|382388|382389|382390|382391|382392|382393|382394|382395|382396|382398|382399|382400|382401|382402|382403|382404|382405|382406|382407|382408|382409|382410|382411|382412|382413|382414|382415|382416|382417|382418|382419|382420|382421|382422|382423|382424|382425|382426|382427|382428|382429|382430|382431|382432|382433|382434|382435|382436|382437|382438|382439|382440|382441|382442|382443|382444|382445|382446|382447|382448|382449|382450|382451|382452|382453|382454|382455|382456|382457|382458|382459|382460|382461|382462|382463|382464|382465|382466|382467|382468|382469|382470|382471|382472|382473|382474|382475|382476|382477|382478|382479|382480|382481|382482|382483|382484|382485|382486|382487|382488|382489|382490|382491|382492|382493|382494|382495|382496|382497|382498|382499|382500|382501|382502|382503|382504|382505|382506|382507|382508|382509|382510|382511|382512|382513|382514|382515|382516|382517|382518|382519|382520|382521|382522|382523|382524|382525|382526|382527|382528|382529|382530|382531|382532|382533|382534|382535|382536|382537|382538|382539|382540|382541|382542|382543|382544|382545|382546|382547|382548|382549|382550|382551|382552|382553|382554|382555|382556|382557|382558|382559|382560|382561|382562|382563|382564|382565|382566|382567|382568|382569|382570|382571|382572|382573|382574|382575|382576|382577|382578|382579|382580|382581|382582|382583|382584|382585|382586|382587|382588|382589|382590|382591|382592|382593|382594|382595|382596|382597|382598|382599|382600|382601|382602|382603|382604|382605|382606|382607|382608|382609|382610|382611|382612|382613|382614|382615|382616|382617|382618|382619|382620|382621|382622|382623|382624|382625|382626|382627|382628|382629|382630|382631|382632|382633|382634|382635|382636|382637|382638|382639|382641|382643|382644|382645|382646|382647|382649|382650|382651|382652|382653|382655|382656|382657|382658|382659|382660|382661|382662|382663|382664|382665|382666|382667|382669|382670|382671|382672|382673|382674|382675|382676|382677|382678|382679|382680|382681|382682|382683|382684|382685|382686|382688|382689|382691|382692|382693|382694|382695|382696|382698|382699|382700|382701|382702|382703|382704|382705|382706|382707|382708|382709|382710|382711|382712|382713|382714|382715|382716|382717|382718|382719|382720|382721|382722|382723|382724|382726|382727|382728|382730|382731|382732|382733|382734|382735|382736|382737|382738|382739|382740|382741|382742|382743|382744|382745|382746|382747|382748|382749|382750|382751|382752|382753|382754|382755|382756|382758|382759|382760|382761|382762|382763|382764|382765|382766|382767|382768|382769|382770|382771|382772|382773|382774|382775|382776|382777|382778|382779|382780|382781|382782|382783|382784|382785|382786|382787|382788|382789|382790|382791|382792|382793|382794|382795|382796|382797|382798|382799|382800|382801|382802|382803|382805|382806|382807|382808|382809|382810|382811|382812|382813|382814|382815|382816|382817|382818|382820|382821|382822|382823|382824|382825|382827|382828|382829|382830|382831|382832|382833|382834|382835|382836|382837|382838|382839|382840|382841|382842|382843|382844|382845|382846|382847|382848|382850|382851|382852|382853|382854|382855|382856|382858|382859|382860|382861|382862|382863|382864|382865|382866|382867|382868|382869|382870|382871|382872|382873|382874|382875|382876|382877|382878|382879|382880|382881|382882|382883|382885|382886|382887|382888|382889|382890|382891|382892|382893|382894|382896|382897|382898|382899|382900|382901|382902|382903|382904|382905|382906|382907|382908|382909|382910|382911|382912|382913|382914|382915|382916|382917|382918|382919|382920|382921|382922|382923|382924|382925|382926|382927|382928|382929|382930|382931|382932|382933|382934|382935|382936|382937|382938|382939|382940|382941|382942|382943|382944|382945|382946|382947|382948|382949|382950|382951|382952|382953|382954|382955|382956|382957|382958|382959|382960|382961|382962|382963|382964|382965|382966|382967|382968|382969|382970|382971|382972|382973|382974|382975|382977|382978|382979|382980|382981|382982|382983|382984|382985|382986|382987|382988|382989|382990|382991|382992|382993|382994|382995|382996|382997|382998|382999|383000|383002|383003|383004|383005|383006|383007|383008|383009|383010|383011|383014|383015|383016|383017|383018|383019|383020|383021|383022|383023|383024|383025|383026|383027|383028|383029|383030|383031|383032|383033|383034|383035|383036|383037|383038|383039|383040|383041|383043|383044|383045|383046|383047|383048|383049|383050|383051|383052|383053|383054|383055|383056|383057|383058|383059|383060|383061|383062|383063|383064|383065|383066|383067|383068|383069|383070|383071|383072|383074|383075|383076|383077|383078|383079|383080|383081|383082|383083|383084|383085|383087|383088|383089|383090|383091|383092|383093|383094|383095|383096|383097|383098|383099|383100|383101|383102|383103|383105|383106|383107|383108|383109|383110|383111|383113|383114|383115|383117|383118|383119|383120|383121|383122|383123|383124|383125|383126|383127|383128|383129|383130|383133|383134|383135|383136|383137|383138|383139|383140|383141|383143|383144|383145|383146|383148|383149|383150|383151|383152|383153|383154|383155|383156|383157|383158|383160|383161|383162|383163|383164|383165|383166|383167|383168|383170|383171|383172|383173|383174|383175|383176|383177|383178|383179|383180|383181|383182|383183|383184|383185|383186|383187|383188|383189|383190|383191|383193|383194|383195|383196|383197|383198|383199|383200|383201|383202|383203|383204|383205|383206|383207|383208|383209|383210|383211|383212|383213|383214|383215|383216|383217|383218|383219|383220|383221|383222|383223|383224|383225|383227|383228|383229|383230|383231|383232|383233|383234|383235|383236|383237|383238|383239|383240|383241|383243|383244|383245|383246|383247|383248|383249|383250|383251|383252|383253|383254|383255|383256|383257|383258|383259|383260|383261|383262|383263|383264|383265|383266|383267|383268|383270|383271|383272|383273|383274|383275|383276|383277|383278|383279|383280|383281|383282|383283|383284|383285|383286|383287|383288|383289|383290|383291|383292|383293|383294|383295|383296|383297|383298|383300|383301|383302|383303|383304|383306|383308|383309|383310|383311|383312|383313|383314|383315|383316|383317|383318|383319|383320|383321|383322|383323|383324|383325|383326|383327|383328|383329|383330|383331|383332|383333|383334|383335|383336|383337|383338|383339|383340|383341|383342|383343|383344|383345|383346|383347|383348|383349|383351|383352|383354|383355|383356|383357|383359|383360|383362|383363|383364|383365|383366|383367|383368|383369|383370|383371|383372|383373|383374|383375|383376|383377|383378|383379|383380|383381|383382|383383|383384|383385|383386|383387|383388|383389|383390|383391|383392|383393|383394|383395|383396|383397|383398|383399|383400|383401|383402|383403|383404|383405|383406|383407|383408|383409|383410|383412|383413|383414|383415|383416|383417|383418|383419|383420|383421|383422|383423|383424|383425|383426|383427|383428|383430|383431|383432|383433|383435|383436|383437|383438|383439|383440|383441|383442|383443|383444|383445|383446|383447|383449|383450|383451|383452|383453|383454|383455|383456|383457|383458|383459|383461|383462|383463|383464|383465|383466|383467|383468|383469|383470|383471|383472|383473|383474|383475|383476|383477|383478|383479|383480|383482|383483|383484|383485|383486|383487|383488|383489|383490|383491|383492|383493|383494|383495|383496|383497|383498|383499|383500|383503|383504|383507|383508|383509|383511|383512|383513|383514|383515|383517|383519|383520|383521|383522|383524|383525|383526|383527|383528|383529|383530|383531|383532|383533|383534|383535|383536|383537|383538|383539|383540|383541|383542|383543|383544|383545|383546|383547|383548|383549|383550|383552|383553|383555|383556|383557|383558|383559|383560|383561|383562|383563|383564|383565|383566|383567|383568|383569|383570|383571|383572|383573|383574|383575|383576|383577|383578|383579|383581|383582|383583|383584|383585|383586|383587|383588|383589|383590|383591|383592|383593|383594|383595|383596|383597|383598|383599|383600|383601|383602|383603|383604|383605|383606|383607|383608|383609|383611|383612|383613|383614|383615|383616|383617|383619|383620|383621|383622|383623|383624|383625|383626|383627|383628|383629|383630|383631|383632|383633|383634|383635|383636|383637|383638|383639|383640|383641|383642|383643|383644|383645|383646|383647|383648|383649|383650|383651|383652|383653|383654|383655|383656|383657|383658|383659|383660|383661|383662|383663|383664|383665|383666|383667|383668|383669|383670|383671|383672|383673|383674|383675|383676|383677|383679|383680|383681|383682|383683|383684|383685|383686|383687|383688|383689|383690|383691|383692|383693|383694|383695|383696|383697|383698|383699|383700|383701|383702|383703|383704|383705|383706|383707|383708|383710|383711|383712|383713|383714|383715|383716|383717|383718|383719|383720|383721|383723|383724|383725|383726|383727|383728|383729|383730|383731|383732|383733|383735|383736|383738|383739|383740|383742|383743|383744|383747|383748|383749|383750|383751|383752|383753|383754|383755|383756|383757|383758|383759|383760|383761|383762|383763|383764|383765|383766|383767|383768|383769|383770|383771|383772|383773|383774|383775|383777|383778|383779|383780|383781|383782|383783|383784|383785|383786|383787|383788|383789|383790|383791|383792|383793|383794|383795|383796|383797|383798|383799|383800|383801|383802|383803|383804|383805|383806|383807|383808|383809|383810|383811|383812|383813|383814|383815|383816|383817|383818|383819|383820|383821|383822|383823|383824|383825|383826|383827|383829|383830|383831|383832|383833|383834|383835|383836|383837|383838|383839|383840|383841|383842|383844|383845|383846|383847|383848|383850|383851|383852|383853|383855|383856|383857|383858|383859|383860|383861|383862|383863|383864|383865|383866|383867|383869|383870|383871|383872|383873|383874|383875|383876|383877|383878|383880|383881|383882|383883|383884|383885|383886|383887|383888|383889|383891|383892|383893|383895|383896|383897|383898|383899|383900|383901|383902|383903|383904|383905|383906|383907|383908|383909|383910|383911|383912|383913|383914|383916|383917|383918|383919|383920|383922|383923|383924|383925|383926|383927|383928|383929|383930|383931|383932|383933|383934|383936|383937|383938|383939|383940|383942|383943|383944|383945|383946|383947|383948|383949|383950|383951|383952|383953|383954|383955|383956|383957|383958|383959|383960|383961|383962|383963|383964|383965|383966|383967|383968|383969|383970|383972|383973|383974|383975|383976|383977|383978|383979|383980|383981|383982|383983|383984|383985|383986|383987|383988|383989|383990|383991|383992|383993|383994|383995|383996|383997|383998|383999|384000|384001|384002|384003|384004|384005|384006|384007|384008|384010|384012|384013|384014|384015|384016|384017|384018|384019|384020|384021|384022|384023|384024|384025|384027|384028|384029|384030|384031|384032|384033|384034|384035|384036|384037|384038|384039|384040|384041|384042|384043|384044|384045|384046|384048|384049|384050|384051|384052|384053|384054|384055|384056|384057|384058|384059|384060|384061|384062|384063|384064|384065|384066|384067|384068|384069|384070|384071|384072|384074|384075|384076|384077|384078|384079|384080|384081|384082|384083|384085|384086|384087|384088|384089|384091|384092|384093|384094|384095|384096|384097|384098|384099|384100|384101|384102|384103|384104|384105|384106|384107|384108|384109|384110|384111|384112|384113|384114|384116|384117|384118|384119|384120|384121|384122|384123|384124|384125|384126|384127|384128|384129|384130|384131|384132|384133|384134|384135|384136|384137|384138|384139|384140|384141|384142|384143|384145|384146|384147|384148|384149|384150|384151|384152|384153|384154|384155|384156|384157|384158|384159|384160|384161|384162|384164|384165|384166|384167|384168|384169|384170|384171|384172|384173|384174|384176|384177|384178|384179|384180|384181|384182|384183|384184|384185|384186|384187|384188|384189|384190|384191|384192|384193|384194|384195|384196|384197|384198|384199|384200|384201|384202|384204|384205|384206|384207|384208|384209|384210|384211|384212|384214|384215|384216|384217|384218|384219|384220|384221|384222|384223|384224|384225|384226|384227|384228|384229|384231|384233|384234|384235|384236|384237|384238|384239|384240|384241|384242|384243|384244|384245|384246|384247|384248|384249|384250|384251|384252|384253|384254|384255|384256|384257|384258|384259|384260|384261|384262|384263|384264|384265|384266|384267|384268|384269|384270|384271|384272|384273|384274|384275|384276|384277|384278|384279|384280|384281|384282|384283|384284|384285|384286|384287|384288|384291|384292|384293|384294|384295|384296|384297|384298|384299|384300|384301|384302|384303|384304|384305|384306|384307|384308|384309|384310|384311|384312|384313|384314|384315|384316|384317|384318|384319|384320|384321|384322|384324|384325|384326|384327|384328|384329|384330|384331|384332|384333|384334|384335|384336|384340|384341|384342|384343|384344|384345|384346|384347|384348|384349|384350|384351|384352|384353|384354|384355|384356|384357|384358|384359|384360|384361|384362|384363|384364|384365|384366|384367|384368|384369|384370|384372|384373|384374|384375|384376|384377|384378|384379|384382|384383|384384|384385|384387|384388|384389|384390|384740|384741|384742|384743|384744|384745|384746|384747|384748|384749|384750|384751|384752|384753|384754|384755|384756|384757|384758|384759|384760|384761|384762|384763|384764|384765|384766|384767|384768|384769|384770|384771|384772|384773|384774|384775|384776|384777|384778|384779|384780|384781|384782|384783|384784|384785|384786|384787|384788|384789|384790|384791|384792|384793|384794|384795|384796|384797|384798|384799|384800|384801|384802|384803|384804|384805|384806|384807|384808|384809|384810|384811|384812|384813|384814|384815|384816|384817|384818|384819|384820|384821|384822|384823|384824|384825|384826|384827|384828|384829|384830|384831|384832|384833|384834|384835|384836|384837|384838|384839|384840|384841|384842|384843|384844|384845|384846|384847|384848|384849|384850|384851|384852|384853|384854|384855|384856|384857|384858|384859|384860|384861|384862|384863|384864|384865|384866|384867|384868|384869|384870|384871|384872|384873|384874|384875|384876|384877|384878|384879|384880|384881|384882|384883|384884|384885|384886|384887|384888|384889|384890|384891|384892|384893|384894|384895|384896|384897|384898|384899|384900|384901|384902|384903|384904|384905|384906|384907|384908|384909|384910|384911|384912|384913|384914|384915|384916|384917|384918|384919|384920|384921|384922|384923|384924|384925|384926|384927|384928|384929|384930|384931|384932|384933|384934|384935|384936|384937|384938|384939|384940|384941|384942|384943|384944|384945|384946|384947|384948|384949|384950|384951|384952|384953|384954|384955|384956|384957|384958|384959|384960|384961|384962|384963|384964|384965|384966|384967|384968|384969|384970|384971|384972|384973|384974|384975|384976|384977|384978|384979|384980|384981|384982|384983|384984|384985|384986|384987|384988|384989|384990|384991|384992|384993|384994|384995|384996|384997|384998|384999|385000|385001|385002|385003|385004|385005|385006|385007|385008|385009|385010|385011|385012|385013|385014|385015|385016|385017|385018|385019|385020|385021|385022|385023|385024|385025|385026|385027|385028|385029|385030|385031|385032|385033|385034|385035|385036|385037|385038|385039|385040|385041|385042|385043|385044|385045|385046|385047|385048|385049|385050|385051|385052|385053|385054|385055|385056|385057|385058|385059|385060|385061|385062|385063|385064|385065|385066|385067|385068|385069|385070|385071|385072|385073|385074|385075|385076|385077|385078|385079|385080|385081|385082|385083|385084|385085|385086|385087|385088|385089|385090|385091|385092|385093|385094|385095|385096|385097|385098|385099|385100|385101|385102|385103|385104|385105|385106|385107|385108|385109|385110|385111|385112|385113|385114|385115|385116|385117|385118|385119|385120|385121|385122|385123|385124|385125|385126|385127|385128|385129|385130|385131|385132|385133|385134|385135|385136|385137|385138|385139|385140|385141|385142|385143|385144|385145|385146|385147|385148|385149|385150|385151|385152|385153|385154|385155|385156|385157|385158|385159|385160|385161|385162|385163|385164|385165|385166|385167|385168|385169|385170|385171|385172|385173|385174|385175|385176|385177|385178|385179|385180|385181|385182|385183|385184|385185|385186|385187|385188|385189|385190|385191|385192|385193|385194|385195|385196|385197|385198|385199|385200|385201|385202|385203|385204|385205|385206|385207|385208|385209|385210|385211|385212|385213|385214|385215|385216|385217|385218|385219|385220|385221|385222|385223|385224|385225|385226|385227|385228|385229|385230|385231|385232|385233|385234|385235|385236|385237|385238|385239|385240|385241|385242|385243|385244|385245|385246|385247|385248|385249|385250|385251|385252|385253|385254|385255|385256|385257|385258|385259|385260|385261|385262|385263|385264|385265|385266|385267|385268|385269|385270|385271|385272|385273|385274|385275|385276|385277|385278|385279|385280|385281|385282|385283|385284|385285|385286|385287|385288|385289|385290|385291|385292|385293|385294|385295|385296|385297|385298|385299|385300|385301|385302|385303|385304|385305|385306|385307|385308|385309|385310|385311|385312|385313|385314|385315|385316|385317|385318|385319|385320|385321|385322|385323|385324|385325|385326|385327|385328|385329|385330|385331|385332|385333|385334|385335|385336|385337|385338|385339|385340|385341|385342|385343|385344|385345|385346|385347|385348|385349|385350|385351|385352|385353|385354|385355|385356|385357|385358|385359|385360|385361|385362|385363|385364|385365|385366|385367|385368|385369|385370|385371|385372|385373|385374|385375|385376|385377|385378|385379|385380|385381|385382|385383|385384|385385|385386|385387|385388|385389|385390|385391|385392|385393|385394|385395|385396|385397|385398|385399|385400|385401|385402|385403|385404|385405|385406|385407|385408|385409|385410|385411|385412|385413|385414|385415|385416|385417|385418|385419|385420|385421|385422|385423|385424|385425|385426|385427|385428|385429|385430|385431|385432|385433|385434|385435|385436|385437|385438|385439|385440|385441|385442|385443|385444|385445|385446|385447|385448|385449|385450|385451|385452|385453|385454|385455|385456|385457|385458|385459|385460|385461|385462|385463|385464|385465|385466|385467|385468|385469|385470|385471|385472|385473|385474|385475|385476|385477|385478|385479|385480|385481|385482|385483|385484|385485|385486|385487|385488|385489|385490|385491|385492|385493|385494|385495|385496|385497|385498|385499|385500|385501|385502|385503|385504|385505|385506|385507|385508|385509|385510|385511|385512|385513|385514|385515|385516|385517|385518|385519|385520|385521|385522|385523|385524|385525|385526|385527|385528|385529|385530|385531|385532|385533|385534|385535|385536|385537|385538|385539|385540|385541|385542|385543|385544|385545|385546|385547|385548|385549|385550|385551|385552|385553|385554|385555|385556|385557|385558|385559|385560|385561|385562|385563|385564|385565|385566|385567|385568|385569|385570|385571|385572|385573|385574|385575|385576|385577|385578|385579|385580|385581|385582|385583|385584|385585|385586|385587|385588|385589|385590|385591|385592|385593|385594|385595|385596|385597|385598|385599|385600|385601|385602|385603|385604|385605|385606|385607|385608|385609|385610|385611|385612|385613|385614|385615|385616|385617|385618|385619|385620|385621|385622|385623|385624|385625|385626|385627|385628|385629|385630|385631|385632|385633|385634|385635|385636|385637|385638|385639|385640|385641|385642|385643|385644|385645|385646|385647|385648|385649|385650|385651|385652|385653|385654|385655|385656|385657|385658|385659|385660|385661|385662|385663|385664|385665|385666|385667|385668|385669|385670|385671|385672|385673|385674|385675|385676|385677|385678|385679|385680|385681|385682|385683|385684|385685|385686|385687|385688|385689|385690|385691|385692|385693|385694|385695|385696|385697|385698|385699|385700|385701|385702|385703|385704|385705|385706|385707|385708|385709|385710|385711|385712|385713|385714|385715|385716|385717|385718|385719|385720|385721|385722|385723|385724|385725|385726|385727|385728|385729|385730|385731|385732|385733|385734|385735|385736|385737|385738|385739|385740|385741|385742|385743|385744|385745|385746|385747|385748|385749|385750|385751|385752|385753|385754|385755|385756|385757|385758|385759|385760|385761|385762|385763|385764|385765|385766|385767|385768|385769|385770|385771|385772|385773|385774|385775|385776|385777|385778|385779|385780|385781|385782|385783|385784|385785|385786|385787|385788|385789|385790|385791|385792|385793|385794|385795|385796|385797|385798|385799|385800|385801|385802|385803|385804|385805|385806|385807|385808|385809|385810|385811|385812|385813|385814|385815|385816|385817|385818|385819|385820|385821|385822|385823|385824|385825|385826|385827|385828|385829|385830|385831|385832|385833|385834|385835|385836|385837|385838|385839|385840|385841|385842|385843|385844|385845|385846|385847|385848|385849|385850|385851|385852|385853|385854|385855|385856|385857|385858|385859|385860|385861|385862|385863|385864|385865|385866|385867|385868|385869|385870|385871|385872|385873|385874|385875|385876|385877|385878|385879|385880|385881|385882|385883|385884|385885|385886|385887|385888|385889|385890|385891|385892|385893|385894|385895|385896|385897|385898|385899|385900|385901|385902|385903|385904|385905|385906|385907|385908|385909|385910|385911|385912|385913|385914|385915|385916|385917|385918|385919|385920|385921|385922|385923|385924|385925|385926|385927|385928|385929|385930|385931|385932|385933|385934|385935|385936|385937|385938|385939|385940|385941|385942|385943|385944|385945|385946|385947|385948|385949|385950|385951|385952|385953|385954|385955|385956|385957|385958|385959|385960|385961|385962|385963|385964|385965|385966|385967|385968|385969|385970|385971|385972|385973|385974|385975|385976|385977|385978|385979|385980|385981|385982|385983|385984|385985|385986|385987|385988|385989|385990|385991|385992|385993|385994|385995|385996|385997|385998|385999|386000|386001|386002|386003|386004|386005|386006|386007|386008|386009|386010|386011|386012|386013|386014|386015|386016|386017|386018|386019|386020|386021|386022|386023|386024|386025|386026|386027|386028|386029|386030|386031|386032|386033|386034|386035|386036|386037|386038|386039|386040|386041|386042|386043|386044|386045|386046|386047|386048|386049|386050|386051|386052|386053|386054|386055|386056|386057|386058|386059|386060|386061|386062|386063|386064|386065|386066|386067|386068|386069|386070|386071|386072|386073|386074|386075|386076|386077|386078|386079|386080|386081|386082|386083|386084|386085|386086|386087|386088|386089|386090|386091|386092|386093|386094|386095|386096|386097|386098|386099|386100|386101|386102|386103|386104|386105|386106|386107|386108|386109|386110|386111|386112|386113|386114|386115|386116|386117|386118|386119|386120|386121|386122|386123|386124|386125|386126|386127|386128|386129|386130|386131|386132|386133|386134|386135|386136|386137|386138|386139|386140|386141|386142|386143|386144|386145|386146|386147|386148|386149|386150|386151|386152|386153|386154|386155|386156|386157|386158|386159|386160|386161|386162|386163|386164|386165|386166|386167|386168|386169|386170|386171|386172|386173|386174|386175|386176|386177|386178|386179|386180|386181|386182|386183|386184|386185|386186|386187|386188|386189|386190|386191|386192|386193|386194|386195|386196|386197|386198|386199|386200|386201|386202|386203|386204|386205|386206|386207|386208|386209|386210|386211|386212|386213|386214|386215|386216|386217|386218|386219|386220|386221|386222|386223|386224|386225|386226|386227|386228|386229|386230|386231|386232|386233|386234|386235|386236|386237|386238|386239|386240|386241|386242|386243|386244|386245|386246|386247|386248|386249|386250|386251|386252|386253|386254|386255|386256|386257|386258|386259|386260|386261|386262|386263|386264|386265|386266|386267|386268|386269|386270|386271|386272|386273|386274|386275|386276|386277|386278|386279|386280|386281|386282|386283|386284|386285|386286|386287|386288|386289|386290|386291|386292|386293|386294|386295|386296|386297|386298|386299|386300|386301|386302|386303|386304|386305|386306|386307|386308|386309|386310|386311|386312|386313|386314|386315|386316|386317|386318|386319|386320|386321|386322|386323|386324|386325|386326|386327|386328|386329|386330|386331|386332|386333|386334|386335|386336|386337|386338|386339|386340|386341|386342|386343|386344|386345|386346|386347|386348|386349|386350|386351|386352|386353|386354|386355|386356|386357|386358|386359|386360|386361|386362|386363|386364|386365|386366|386367|386368|386369|386370|386371|386372|386373|386374|386375|386376|386377|386378|386379|386380|386381|386382|386383|386384|386385|386386|386387|386388|386389|386390|386391|386392|386393|386394|386395|386396|386397|386398|386399|386400|386401|386402|386403|386404|386405|386406|386407|386408|386409|386410|386411|386412|386413|386414|386415|386416|386417|386418|386419|386420|386421|386422|386423|386424|386425|386426|386427|386428|386429|386430|386431|386432|386433|386434|386435|386436|386437|386438|386439|386440|386441|386442|386443|386444|386445|386446|386447|386448|386449|386450|386451|386452|386453|386454|386455|386456|386457|386458|386459|386460|386461|386462|386463|386464|386465|386466|386467|386468|386469|386470|386471|386472|386473|386474|386475|386476|386477|386478|386479|386480|386481|386482|386483|386484|386485|386486|386487|386488|386489|386490|386491|386492|386493|386494|386495|386496|386497|386498|386499|386500|386501|386502|386503|386504|386505|386506|386507|386508|386509|386510|386511|386512|386513|386514|386515|386516|386517|386518|386519|386520|386521|386522|386523|386524|386525|386526|386527|386528|386529|386530|386531|386532|386533|386534|386535|386536|386537|386538|386539|386540|386541|386542|386543|386544|386545|386546|386547|386548|386549|386550|386551|386552|386553|386554|386555|386556|386557|386558|386559|386560|386561|386562|386563|386564|386565|386566|386567|386568|386569|386570|386571|386572|386573|386574|386575|386576|386577|386578|386579|386580|386581|386582|386583|386584|386585|386586|386587|386588|386589|386590|386591|386592|386593|386594|386595|386596|386597|386598|386599|386600|386601|386602|386603|386604|386605|386606|386607|386608|386609|386610|386611|386612|386613|386614|386615|386616|386617|386618|386619|386620|386621|386622|386623|386624|386625|386626|386627|386628|386629|386630|386631|386632|386633|386634|386635|386636|386637|386638|386639|386640|386641|386642|386643|386644|386645|386646|386647|386648|386649|386650|386651|386652|386653|386654|386655|386656|386657|386658|386659|386660|386661|386662|386663|386664|386665|386666|386667|386668|386669|386670|386671|386672|386673|386674|386675|386676|386677|386678|386679|386680|386681|386682|386683|386684|386685|386686|386687|386688|386689|386690|386691|386692|386693|386694|386695|386696|386697|386698|386699|386700|386701|386702|386703|386704|386705|386706|386707|386708|386709|386710|386711|386712|386713|386714|386715|386716|386717|386718|386719|386720|386721|386722|386723|386724|386725|386726|386727|386728|386729|386730|386731|386732|386733|386734|386735|386736|386737|386738|386739|386740|386741|386742|386743|386744|386745|386746|386747|386748|386749|386750|386751|386752|386753|386754|386755|386756|386757|386758|386759|386760|386761|386762|386763|386764|386765|386766|386767|386768|386769|386770|386771|386772|386773|386774|386775|386776|386777|386778|386779|386780|386781|386782|386783|386784|386785|386786|386787|386788|386789|386790|386791|386792|386793|386794|386795|386796|386797|386798|386799|386800|386801|386802|386803|386804|386805|386806|386807|386808|386809|386810|386811|386812|386813|386814|386815|386816|386817|386818|386819|386820|386821|386822|386823|386824|386825|386826|386827|386828|386829|386830|386831|386832|386833|386834|386835|386836|386837|386838|386839|386840|386841|386842|386843|386844|386845|386846|386847|386848|386849|386850|386851|386852|386853|386854|386855|386856|386857|386858|386859|386860|386861|386862|386863|386864|386865|386866|386867|386868|386869|386870|386871|386872|386873|386874|386875|386876|386877|386878|386879|386880|386881|386882|386883|386884|386885|386886|386887|386888|386889|386890|386891|386892|386893|386894|386895|386896|386897|386898|386899|386900|386901|386902|386903|386904|386905|386906|386907|386908|386909|386910|386911|386912|386913|386914|386915|386916|386917|386918|386919|386920|386921|386922|386923|386924|386925|386926|386927|386928|386929|386930|386931|386932|386933|386934|386935|386936|386937|386938|386939|386940|386941|386942|386943|386944|386945|386946|386947|386948|386949|386950|386951|386952|386953|386954|386955|386956|386957|386958|386959|386960|386961|386962|386963|386964|386965|386966|386967|386968|386969|386970|386971|386972|386973|386974|386975|386976|386977|386978|386979|386980|386981|386982|386983|386984|386985|386986|386987|386988|386989|386990|386991|386992|386993|386994|386995|386996|386997|386998|386999|387000|387001|387002|387003|387004|387005|387006|387007|387008|387009|387010|387011|387012|387013|387014|387015|387016|387017|387018|387019|387020|387021|387022|387023|387024|387025|387026|387027|387028|387029|387030|387031|387032|387033|387034|387035|387036|387037|387038|387039|387040|387041|387042|387043|387044|387045|387046|387047|387048|387049|387050|387051|387052|387053|387054|387055|387056|387057|387058|387059|387060|387061|387062|387063|387064|387065|387066|387067|387068|387069|387070|387071|387072|387073|387074|387075|387076|387077|387078|387079|387080|387081|387082|387083|387084|387085|387086|387087|387088|387089|387090|387091|387092|387093|387094|387095|387096|387097|387098|387099|387100|387101|387102|387103|387104|387105|387106|387107|387108|387109|387110|387111|387112|387113|387114|387115|387116|387117|387118|387119|387120|387121|387122|387123|387124|387125|387126|387127|387128|387129|387130|387131|387132|387133|387134|387135|387136|387137|387138|387139|387140|387141|387142|387143|387144|387145|387146|387147|387148|387149|387150|387151|387152|387153|387154|387155|387156|387157|387158|387159|387160|387161|387162|387163|387164|387165|387166|387167|387168|387169|387170|387171|387172|387173|387174|387175|387176|387177|387178|387179|387180|387181|387182|387183|387184|387185|387186|387187|387188|387189|387190|387191|387192|387193|387194|387195|387196|387197|387198|387199|387200|387201|387202|387203|387204|387205|387206|387207|387208|387209|387210|387211|387212|387213|387214|387215|387216|387217|387218|387219|387220|387221|387222|387223|387224|387225|387226|387227|387228|387229|387230|387231|387232|387233|387234|387235|387236|387237|387238|387239|387240|387241|387242|387243|387244|387245|387246|387247|387248|387249|387250|387251|387252|387253|387254|387255|387256|387257|387258|387259|387260|387261|387262|387263|387264|387265|387266|387267|387268|387269|387270|387271|387272|387273|387274|387275|387276|387277|387278|387279|387280|387281|387282|387283|387284|387285|387286|387287|387288|387289|387290|387291|387292|387293|387294|387295|387296|387297|387298|387299|387300|387301|387302|387303|387304|387305|387306|387307|387308|387309|387310|387311|387312|387313|387314|387315|387316|387317|387318|387319|387320|387321|387322|387323|387324|387325|387326|387327|387328|387329|387330|387331|387332|387333|387334|387335|387336|387337|387338|387339|387340|387341|387342|387343|387344|387345|387346|387347|387348|387349|387350|387351|387352|387353|387354|387355|387356|387357|387358|387359|387360|387361|387362|387363|387364|387365|387366|387367|387368|387369|387370|387371|387372|387373|387374|387375|387376|387377|387378|387379|387380|387381|387382|387383|387384|387385|387386|387387|387388|387389|387390|387391|387392|387393|387394|387395|387396|387397|387398|387399|387400|387401|387402|387403|387404|387405|387406|387407|387408|387409|387410|387411|387412|387413|387414|387415|387416|387417|387418|387419|387420|387421|387422|387423|387424|387425|387426|387427|387428|387429|387430|387431|387432|387433|387434|387435|387436|387437|387438|387439|387440|387441|387442|387443|387444|387445|387446|387447|387448|387449|387450|387451|387452|387453|387454|387455|387456|387457|387458|387459|387460|387461|387462|387463|387464|387465|387466|387467|387468|387469|387470|387471|387472|387473|387474|387475|387476|387477|387478|387479|387480|387481|387482|387483|387484|387485|387486|387487|387488|387489|387490|387491|387492|387493|387494|387495|387496|387497|387498|387499|387500|387501|387502|387503|387504|387505|387506|387507|387508|387509|387510|387511|387512|387513|387514|387515|387516|387517|387518|387519|387520|387521|387522|387523|387524|387525|387526|387527|387528|387529|387530|387531|387532|387533|387534|387535|387536|387537|387538|387539|387540|387541|387542|387543|387544|387545|387546|387547|387548|387549|387550|387551|387552|387553|387554|387555|387556|387557|387558|387559|387560|387561|387562|387563|387564|387565|387566|387567|387568|387569|387570|387571|387572|387573|387574|387575|387576|387577|387578|387579|387580|387581|387582|387583|387584|387585|387586|387587|387588|387589|387590|387591|387592|387593|387594|387595|387596|387597|387598|387599|387600|387601|387602|387603|387604|387605|387606|387607|387608|387609|387610|387611|387612|387613|387614|387615|387616|387617|387618|387619|387620|387621|387622|387623|387624|387625|387626|387627|387628|387629|387630|387631|387632|387633|387634|387635|387636|387637|387638|387639|387640|387641|387642|387643|387644|387645|387646|387647|387648|387649|387650|387651|387652|387653|387654|387655|387656|387657|387658|387659|387660|387661|387662|387663|387664|387665|387666|387667|387668|387669|387670|387671|387672|387673|387674|387675|387676|387677|387678|387679|387680|387681|387682|387683|387684|387685|387686|387687|387688|387689|387690|387691|387692|387693|387694|387695|387696|387697|387698|387699|387700|387701|387702|387703|387704|387705|387706|387707|387708|387709|387710|387711|387712|387713|387714|387715|387716|387717|387718|387719|387720|387721|387722|387723|387724|387725|387726|387727|387728|387729|387730|387731|387732|387733|387734|387735|387736|387737|387738|387739|387740|387741|387742|387743|387744|387745|387746|387747|387748|387749|387750|387751|387752|387753|387754|387755|387756|387757|387758|387759|387760|387761|387762|387763|387764|387765|387766|387767|387768|387769|387770|387771|387772|387773|387774|387775|387776|387777|387778|387779|387780|387781|387782|387783|387784|387785|387786|387787|387788|387789|387790|387791|387792|387793|387794|387795|387796|387797|387798|387799|387800|387801|387802|387803|387804|387805|387806|387807|387808|387809|387810|387811|387812|387813|387814|387815|387816|387817|387818|387819|387820|387821|387822|387823|387824|387825|387826|387827|387828|387829|387830|387831|387832|387833|387834|387835|387836|387837|387838|387839|387840|387841|387842|387843|387844|387845|387846|387847|387848|387849|387850|387851|387852|387853|387854|387855|387856|387857|387858|387859|387860|387861|387862|387863|387864|387865|387866|387867|387868|387869|387870|387871|387872|387873|387874|387875|387876|387877|387878|387879|387880|387881|387882|387883|387884|387885|387886|387887|387888|387889|387890|387891|387892|387893|387894|387895|387896|387897|387898|387899|387900|387901|387902|387903|387904|387905|387906|387907|387908|387909|387910|387911|387912|387913|387914|387915|387916|387917|387918|387919|387920|387921|387922|387923|387924|387925|387926|387927|387928|387929|387930|387931|387932|387933|387934|387935|387936|387937|387938|387939|387940|387941|387942|387943|387944|387945|387946|387947|387948|387949|387950|387951|387952|387953|387954|387955|387956|387957|387958|387959|387960|387961|387962|387963|387964|387965|387966|387967|387968|387969|387970|387971|387972|387973|387974|387975|387976|387977|387978|387979|387980|387981|387982|387983|387984|387985|387986|387987|387988|387989|387990|387991|387992|387993|387994|387995|387996|387997|387998|387999|388000|388001|388002|388003|388004|388005|388006|388007|388008|388009|388010|388011|388012|388013|388014|388015|388016|388017|388018|388019|388020|388021|388022|388023|388024|388025|388026|388027|388028|388029|388030|388031|388032|388033|388034|388035|388036|388037|388038|388039|388040|388041|388042|388043|388044|388045|388046|388047|388048|388049|388050|388051|388052|388053|388054|388055|388056|388057|388058|388059|388060|388061|388062|388063|388064|388065|388066|388067|388068|388069|388070|388071|388072|388073|388074|388075|388076|388077|388078|388079|388080|388081|388082|388083|388084|388085|388086|388087|388088|388089|388090|388091|388092|388093|388094|388095|388096|388097|388098|388099|388100|388101|388102|388103|388104|388105|388106|388107|388108|388109|388110|388111|388112|388113|388114|388115|388116|388117|388118|388119|388120|388121|388122|388123|388124|388125|388126|388127|388128|388129|388130|388131|388132|388133|388134|388135|388136|388137|388138|388139|388140|388141|388142|388143|388144|388145|388146|388147|388148|388149|388150|388151|388152|388153|388154|388155|388156|388157|388158|388159|388160|388161|388162|388163|388164|388165|388166|388167|388168|388169|388170|388171|388172|388173|388174|388175|388176|388177|388178|388179|388180|388181|388182|388183|388184|388185|388186|388187|388188|388189|388190|388191|388192|388193|388194|388195|388196|388197|388198|388199|388200|388201|388202|388203|388204|388205|388206|388207|388208|388209|388210|388211|388212|388213|388214|388215|388216|388217|388218|388219|388220|388221|388222|388223|388224|388225|388226|388227|388228|388229|388230|388231|388232|388233|388234|388235|388236|388237|388238|388239|388240|388241|388242|388243|388244|388245|388246|388247|388248|388249|388250|388251|388252|388253|388254|388255|388256|388257|388258|388259|388260|388261|388262|388263|388264|388265|388266|388267|388268|388269|388270|388271|388272|388273|388274|388275|388276|388277|388278|388279|388280|388281|388282|388283|388284|388285|388286|388287|388288|388289|388290|388291|388292|388293|388294|388295|388296|388297|388298|388299|388300|388301|388302|388303|388304|388305|388306|388307|388308|388309|388310|388311|388312|388313|388314|388315|388316|388317|388318|388319|388320|388321|388322|388323|388324|388325|388326|388327|388328|388329|388330|388331|388332|388333|388334|388335|388336|388337|388338|388339|388340|388341|388342|388343|388344|388345|388346|388347|388348|388349|388350|388351|388352|388353|388354|388355|388356|388357|388358|388359|388360|388361|388362|388363|388364|388365|388366|388367|388368|388369|388370|388371|388372|388373|388374|388375|388376|388377|388378|388379|388380|388381|388382|388383|388384|388385|388386|388387|388388|388389|388390|388391|388392|388393|388394|388395|388396|388397|388398|388399|388400|388401|388402|388403|388404|388405|388406|388407|388408|388409|388410|388411|388412|388413|388414|388415|388416|388417|388418|388419|388420|388421|388422|388423|388424|388425|388426|388427|388428|388429|388430|388431|388432|388433|388434|388435|388436|388437|388438|388439|388440|388441|388442|388443|388444|388445|388446|388447|388448|388449|388450|388451|388452|388453|388454|388455|388456|388457|388458|388459|388460|388461|388462|388463|388464|388465|388466|388467|388468|388469|388470|388471|388472|388473|388474|388475|388476|388477|388478|388479|388480|388481|388482|388483|388484|388485|388486|388487|388488|388489|388490|388491|388492|388493|388494|388495|388496|388497|388498|388499|388500|388501|388502|388503|388504|388505|388506|388507|388508|388509|388510|388511|388512|388513|388514|388515|388516|388517|388518|388519|388520|388521|388522|388523|388524|388525|388526|388527|388528|388529|388530|388531|388532|388533|388534|388535|388536|388537|388538|388539|388540|388541|388542|388543|388544|388545|388546|388547|388548|388549|388550|388551|388552|388553|388554|388555|388556|388557|388558|388559|388560|388561|388562|388563|388564|388565|388566|388567|388568|388569|388570|388571|388572|388573|388574|388575|388576|388577|388578|388579|388580|388581|388582|388583|388584|388585|388586|388587|388588|388589|388590|388591|388592|388593|388594|388595|388596|388597|388598|388599|388600|388601|388602|388603|388604|388605|388606|388607|388608|388609|388610|388611|388612|388613|388614|388615|388616|388617|388618|388619|388620|388621|388622|388623|388624|388625|388626|388627|388628|388629|388630|388631|388632|388633|388634|388635|388636|388637|388638|388639|388640|388641|388642|388643|388644|388645|388646|388647|388648|388649|388650|388651|388652|388653|388654|388655|388656|388657|388658|388659|388660|388661|388662|388663|388664|388665|388666|388667|388668|388669|388670|388671|388672|388673|388674|388675|388676|388677|388678|388679|388680|388681|388682|388683|388684|388685|388686|388687|388688|388689|388690|388691|388692|388693|388694|388695|388696|388697|388698|388699|388700|388701|388702|388703|388704|388705|388706|388707|388708|388709|388710|388711|388712|388713|388714|388715|388716|388717|388718|388719|388720|388721|388722|388723|388724|388725|388726|388727|388728|388729|388730|388731|388732|388733|388734|388735|388736|388737|388738|388739|388740|388741|388742|388743|388744|388745|388746|388747|388748|388749|388750|388751|388752|388753|388754|388755|388756|388757|388758|388759|388760|388761|388762|388763|388764|388765|388766|388767|388768|388769|388770|388771|388772|388773|388774|388775|388776|388777|388778|388779|388780|388781|388782|388783|388784|388785|388786|388787|388788|388789|388790|388791|388792|388793|388794|388795|388796|388797|388798|388799|388800|388801|388802|388803|388804|388805|388806|388807|388808|388809|388810|388811|388812|388813|388814|388815|388816|388817|388818|388819|388820|388821|388822|388823|388824|388825|388826|388827|388828|388829|388830|388831|388832|388833|388834|388835|388836|388837|388838|388839|388840|388841|388842|388843|388844|388845|388846|388847|388848|388849|388850|388851|388852|388853|388854|388855|388856|388857|388858|388859|388860|388861|388862|388863|388864|388865|388866|388867|388868|388869|388870|388871|388872|388873|388874|388875|388876|388877|388878|388879|388880|388881|388882|388883|388884|388885|388886|388887|388888|388889|388890|388891|388892|388893|388894|388895|388896|388897|388898|388899|388900|388901|388902|388903|388904|388905|388906|388907|388908|388909|388910|388911|388912|388913|388914|388915|388916|388917|388918|388919|388920|388921|388922|388923|388924|388925|388926|388927|388928|388929|388930|388931|388932|388933|388934|388935|388936|388937|388938|388939|388940|388941|388942|388943|388944|388945|388946|388947|388948|388949|388950|388951|388952|388953|388954|388955|388956|388957|388958|388959|388960|388961|388962|388963|388964|388965|388966|388967|388968|388969|388970|388971|388972|388973|388974|388975|388976|388977|388978|388979|388980|388981|388982|388983|388984|388985|388986|388987|388988|388989|388990|388991|388992|388993|388994|388995|388996|388997|388998|388999|389000|389001|389002|389003|389004|389005|389006|389007|389008|389009|389010|389011|389012|389013|389014|389015|389016|389017|389018|389019|389020|389021|389022|389023|389024|389025|389026|389027|389028|389029|389030|389031|389032|389033|389034|389035|389036|389037|389038|389039|389040|389041|389042|389043|389044|389045|389046|389047|389048|389049|389050|389051|389052|389053|389054|389055|389056|389057|389058|389059|389060|389061|389062|389063|389064|389065|389066|389067|389068|389069|389070|389071|389072|389073|389074|389075|389076|389077|389078|389079|389080|389081|389082|389083|389084|389085|389086|389087|389088|389092|389093|389094|389095|389096|389097|389098|389099|389100|389101|390677|390678|403112|413172|413183|431651|433589|434934|435197|435198|435199|435200|435201|435202|435203|435204|435205|435206|435207|435208|435209|435210|435211|435212|435213|435214|435215|435216|435217|435218|435219|435220|435221|435222|435223|435224|435225|435226|435227|435228|435229|435230|435231|435232|435233|435234|435235|435236|435237|435238|435239|435240|435241|435242|435243|435244|435245|435246|435247|435248|435249|435250|435251|435252|435253|435254|435255|435256|435257|435258|435259|435260|435261|435262|435263|435264|435265|435266|435267|435268|435269|435270|435271|435272|435273|435274|435275|435276|435277|435278|435279|435280|435281|435282|435283|435284|435285|435286|435287|435288|435289|435290|435291|435292|435293|435294|435295|435296|435297|435298|435299|435300|435301|435302|435303|435304|435305|435306|435307|435308|435309|435310|435311|435312|435313|435314|435315|435316|435317|435318|435319|435320|435321|435322|435323|435324|435325|435326|435327|435328|435329|435330|435331|435332|435333|435334|435335|435336|435337|435338|435339|435340|435341|435342|435343|435344|435345|435346|435347|435348|435349|435350|435351|435352|435353|435354|435355|435356|435357|435358|435359|435360|435361|435362|435363|435364|435365|435366|435367|435368|435369|435370|435371|435372|435373|435374|435375|435376|435377|435378|435379|435380|435381|435382|435383|435384|435385|435386|435387|435388|435389|435390|435391|435392|435393|435394|435395|435396|435397|435398|435399|435400|435401|435402|435403|435404|435405|435406|435407|435408|435409|435410|435411|435412|435413|435414|435415|435416|435417|435418|435419|435420|435421|435422|435423|435424|435425|435426|435427|435428|435429|435430|435431|435432|435433|435434|435435|435436|435437|435438|435439|435440|435441|435442|435443|435444|435445|435446|435447|435448|435449|435450|435451|435452|435453|435454|435455|435456|435457|435458|435459|435460|435461|435462|435463|435464|435465|435466|435467|435468|435469|435470|435471|435472|435473|435474|435475|435476|435477|435478|435479|435480|435481|435482|435483|435484|435485|435486|435487|435488|435489|435490|435491|435492|435493|435494|435495|435496|435497|435498|435499|435500|435501|435502|435503|435504|435505|435506|435507|435508|435509|435510|435511|435512|435513|435514|435515|435516|435517|435518|435519|435520|435521|435522|435523|435524|435525|435526|435527|435528|435529|435530|435531|435532|435533|435534|435535|435536|435537|435538|435539|435540|435541|435542|435543|435544|435545|435546|435547|435548|435549|435550|435551|435552|435553|435554|435555|435556|435557|435558|435559|435560|435561|435562|435563|435564|435565|435566|435567|435568|435569|435570|435571|435572|435573|435574|435575|435576|435577|435578|435579|435580|435581|435582|435583|435584|435585|435586|435587|435588|435589|435590|435591|435592|435593|435594|435595|435596|435597|435598|435599|435600|435601|435602|435603|435604|435605|435606|435607|435608|435609|435610|435611|435612|435613|435614|435615|435616|435617|435618|435619|435620|435621|435622|435623|435624|435625|435626|435627|435628|435629|435630|435631|435632|435633|435634|435635|435636|435637|435638|435639|435640|435641|435642|435643|435644|435645|435646|435647|435648|435649|435650|435651|435652|435653|435654|435655|435656|435657|435658|435659|435660|435661|435662|435663|435664|435665|435666|435667|435668|435669|435670|435671|435672|435673|435674|435675|435676|435677|435678|435679|435680|435681|435682|435683|435684|435685|435686|435687|435688|435689|435690|435691|435692|435693|435694|435695|435696|435697|435698|435699|435700|435701|435702|435703|435704|435705|435706|435707|435708|435709|435710|435711|435712|435713|435714|435715|435716|435717|435718|435719|435720|435721|435722|435723|435724|435725|435726|435727|435728|435729|435730|435731|435732|435733|435734|435735|435736|435737|435738|435739|435740|435741|435742|435743|435744|435745|435746|435747|435748|435749|435750|435751|435752|435753|435754|435755|435756|435757|435758|435759|435760|435761|435762|435763|435764|435765|435766|435767|435768|435769|435770|435771|435772|435773|435774|435775|435776|435777|435778|435779|435780|435781|435782|435783|435784|435785|435786|435787|435788|435789|435790|435791|435792|435793|435794|435795|435796|435797|435798|435799|435800|435801|435802|435803|435804|435805|435806|435807|435808|435809|435810|435811|435812|435813|435814|435815|435816|435817|435818|435819|435820|435821|435822|435823|435824|435825|435826|435827|435828|435829|435830|435831|435832|435833|435834|435835|435836|435837|435838|435839|435840|435841|435842|435843|435844|435845|435846|435847|435848|435849|435850|435851|435852|435853|435854|435855|435856|435857|435858|435859|435860|435861|435862|435863|435864|435865|435866|435867|435868|435869|435870|435871|435872|435873|435874|435875|435876|435877|435878|435879|435880|435881|435882|435883|435884|435885|435886|435887|435888|435889|435890|435891|435892|435893|435894|435895|435896|435897|435898|435899|435900|435901|435902|435903|435904|435905|435906|435907|435908|435909|435910|435911|435912|435913|435914|435915|435916|435917|435918|435919|435920|435921|435922|435923|435924|435925|435926|435927|435928|435929|435930|435931|435932|435933|435934|435935|435936|435937|435938|435939|435940|435941|435942|435943|435944|435945|435946|435947|435948|435949|435950|435951|435952|435953|435954|435955|435956|435957|435958|435959|435960|435961|435962|435963|435964|435965|435966|435967|435968|435969|435970|435971|435972|435973|435974|435975|435976|435977|435978|435979|435980|435981|435982|435983|435984|435985|435986|435987|435988|435989|435990|435991|435992|435993|435994|435995|435996|435997|435998|435999|436000|436001|436002|436003|436004|436005|436006|436007|436008|436009|436010|436011|436012|436013|436014|436015|436016|436017|436018|436019|436020|436021|436022|436023|436024|436025|436026|436027|436028|436029|436030|436031|436032|436033|436034|436035|436036|436037|436038|436039|436040|436041|436042|436043|436044|436045|436046|436047|436048|436049|436050|436051|436052|436053|436054|436055|436056|436057|436058|436059|436060|436061|436062|436063|436064|436065|436066|436067|436068|436069|436070|436071|436072|436073|436074|436075|436076|436077|436078|436079|436080|436081|436082|436083|436084|436085|436086|436087|436088|436089|436090|436091|436092|436093|436094|436095|436096|436097|436098|436099|436100|436101|436102|436103|436104|436105|436106|436107|436108|436109|436110|436111|436112|436113|436114|436115|436116|436117|436118|436119|436120|436121|436122|436123|436124|436125|436126|436127|436128|436129|436130|436131|436132|436133|436134|436135|436136|436137|436138|436139|436140|436141|436142|436143|436144|436145|436146|436147|436148|436149|436150|436151|436152|436153|436154|436155|436156|436157|436158|436159|436160|436161|436162|436163|436164|436165|436166|436167|436168|436169|436170|436171|436172|436173|436174|436175|436176|436177|436178|436179|436180|436181|436182|436183|436184|436185|436186|436187|436188|436189|436190|436191|436192|436193|436194|436195|436196|436197|436198|436199|436200|436201|436202|436203|436204|436205|436206|436207|436208|436209|436210|436211|436212|436213|436214|436215|436216|436217|436218|436219|436220|436221|436222|436223|436224|436225|436226|436227|436228|436229|436230|436231|436232|436233|436234|436235|436236|436237|436238|436239|436240|436241|436242|436243|436244|436245|436246|436247|436248|436249|436250|436251|436252|436253|436254|436255|436256|436257|436258|436259|436260|436261|436262|436263|436264|436265|436266|436267|436268|436269|436270|436271|436272|436273|436274|436275|436276|436277|436278|436279|436280|436281|436282|436283|436284|436285|436286|436287|436288|436289|436290|436291|436292|436293|436294|436295|436296|436297|436298|436299|436300|436301|436302|436303|436304|436305|436306|436307|436308|436309|436310|436311|436312|436313|436314|436315|436316|436317|436318|436319|436320|436321|436322|436323|436324|436325|436326|436327|436328|436329|436330|436331|436332|436333|436334|436335|436336|436337|436338|436339|436340|436341|436342|436343|436344|436345|436346|436347|436348|436349|436350|436351|436352|436353|436354|436355|436356|436357|436358|436359|436360|436361|436362|436363|436364|436365|436366|436367|436368|436369|436370|436371|436372|436373|436374|436375|436376|436377|436378|436379|436380|436381|436382|436383|436384|436385|436386|436387|436388|436389|436390|436391|436392|436393|436394|436395|436396|436397|436398|436399|436400|436401|436402|436403|436404|436405|436406|436407|436408|436409|436410|436411|436412|436413|436414|436415|436416|436417|436418|436419|436420|436421|436422|436423|436424|436425|436426|436427|436428|436429|436430|436431|436432|436433|436434|436435|436436|436437|436438|436439|436440|436441|436442|436443|436444|436445|436446|436447|436448|436449|436450|436451|436452|436453|436454|436455|436456|436457|436458|436459|436460|436461|436462|436463|436464|436465|436466|436467|436468|436469|436470|436471|436472|436473|436474|436475|436476|436477|436478|436479|436480|436481|436482|436483|436484|436485|436486|436487|436488|436489|436490|436491|436492|436493|436494|436495|436496|436497|436498|436499|436500|436501|436502|436503|436504|436505|436506|436507|436508|436509|436510|436511|436512|436513|436514|436515|436516|436517|436518|436519|436520|436521|436522|436523|436524|436525|436526|436527|436528|436529|436530|436531|436532|436533|436534|436535|436536|436537|436538|436539|436540|436541|436542|436543|436544|436545|436546|436547|436548|436549|436550|436551|436552|436553|436554|436555|436556|436557|436558|436559|436560|436561|436562|436563|436564|436565|436566|436567|436568|436569|436570|436571|436572|436573|436574|436575|436576|436577|436578|436579|436580|436581|436582|436583|436584|436585|436586|436587|436588|436589|436590|436591|436592|436593|436594|436595|436596|436597|436598|436599|436600|436601|436602|436603|436604|436605|436606|436607|436608|436609|436610|436611|436612|436613|436614|436615|436616|436617|436618|436619|436620|436621|436622|436623|436624|436625|436626|436627|436628|436629|436630|436631|436632|436633|436634|436635|436636|436637|436638|436639|436640|436641|436642|436643|436644|436645|436646|436647|436648|436649|436650|436651|436652|436653|436654|436655|436656|436657|436658|436659|436660|436661|436662|436663|436664|436665|436666|436667|436668|436669|436670|436671|436672|436673|436674|436675|436676|436677|436678|436679|436680|436681|436682|436683|436684|436685|436686|436687|436688|436689|436690|436691|436692|436693|436694|436695|436696|436697|436698|436699|436700|436701|436702|436703|436704|436705|436706|436707|436708|436709|436710|436711|436712|436713|436714|436715|436716|436717|436718|436719|436720|436721|436722|436723|436724|436725|436726|436727|436728|436729|436730|436731|436732|436733|436734|436735|436736|436737|436738|436739|436740|436741|436742|436743|436744|436745|436746|436747|436748|436749|436750|436751|436752|436753|436754|436755|436756|436757|436758|436759|436760|436761|436762|436763|436764|436765|436766|436767|436768|436769|436770|436771|436772|436773|436774|436775|436776|436777|436778|436779|436780|436781|436782|436783|436784|436785|436786|436787|436788|436789|436790|436791|436792|436793|436794|436795|436796|436797|436798|436799|436800|436801|436802|436803|436804|436805|436806|436807|436808|436809|436810|436811|436812|436813|436814|436815|436816|436817|436818|436819|436820|436821|436822|436823|436824|436825|436826|436827|436828|436829|436830|436831|436832|436833|436834|436835|436836|436837|436838|436839|436840|436841|436842|436843|436844|436845|436846|436847|436848|436849|436850|436851|436852|436853|436854|436855|436856|436857|436858|436859|436860|436861|436862|436863|436864|436865|436866|436867|436868|436869|436870|436871|436872|436873|436874|436875|436876|436877|436878|436879|436880|436881|436882|436883|436884|436885|436886|436887|436888|436889|436890|436891|436892|436893|436894|436895|436896|436897|436898|436899|436900|436901|436902|436903|436904|436905|436906|436907|436908|436909|436910|436911|436912|436913|436914|436915|436916|436917|436918|436919|436920|436921|436922|436923|436924|436925|436926|436927|436928|436929|436930|436931|436932|436933|436934|436935|436936|436937|436938|436939|436940|436941|436942|436943|436944|436945|436946|436947|436948|436949|436950|436951|436952|436953|436954|436955|436956|436957|436958|436959|436960|436961|436962|436963|436964|436965|436966|436967|436968|436969|436970|436971|436972|436973|436974|436975|436976|436977|436978|436979|436980|436981|436982|436983|436984|436985|436986|436987|436988|436989|436990|436991|436992|436993|436994|436995|436996|436997|436998|436999|437000|437001|437002|437003|437004|437005|437006|437007|437008|437009|437010|437011|437012|437013|437014|437015|437016|437017|437018|437019|437020|437021|437022|437023|437024|437025|437026|437027|437028|437029|437030|437031|437032|437033|437034|437035|437036|437037|437038|437039|437040|437041|437042|437043|437044|437045|437046|437047|437048|437049|437050|437051|437052|437053|437054|437055|437056|437057|437058|437059|437060|437061|437062|437063|437064|437065|437066|437067|437068|437069|437070|437071|437072|437073|437074|437075|437076|437077|437078|437079|437080|437081|437082|437083|437084|437085|437086|437087|437088|437089|437090|437091|437092|437093|437094|437095|437096|437097|437098|437099|437100|437101|437102|437103|437104|437105|437106|437107|437108|437109|437110|437111|437112|437113|437114|437115|437116|437117|437118|437119|437120|437121|437122|437123|437124|437125|437126|437127|437128|437129|437130|437131|437132|437133|437134|437135|437136|437137|437138|437139|437140|437141|437142|437143|437144|437145|437146|437147|437148|437149|437150|437151|437152|437153|437154|437155|437156|437157|437158|437159|437160|437161|437162|437163|437164|437165|437166|437167|437168|437169|437170|437171|437172|437173|437174|437175|437176|437177|437178|437179|437180|437181|437182|437183|437184|437185|437186|437187|437188|437189|437190|437191|437192|437193|437194|437195|437196|437197|437198|437199|437200|437201|437202|437203|437204|437205|437206|437207|437208|437209|437210|437211|437212|437213|437214|437215|437216|437217|437218|437219|437220|437221|437222|437223|437224|437225|437226|437227|437228|437229|437230|437231|437232|437233|437234|437235|437236|437237|437238|437239|437240|437241|437242|437243|437244|437245|437246|437247|437248|437249|437250|437251|437252|437253|437254|437255|437256|437257|437258|437259|437260|437261|437262|437263|437264|437265|437266|437267|437268|437269|437270|437271|437272|437273|437274|437275|437276|437277|437278|437279|437280|437281|437282|437283|437284|437285|437286|437287|437288|437289|437290|437291|437292|437293|437294|437295|437296|437297|437298|437299|437300|437301|437302|437303|437304|437305|437306|437307|437308|437309|437310|437311|437312|437313|437314|437315|437316|437317|437318|437319|437320|437321|437322|437323|437324|437325|437326|437327|437328|437329|437330|437331|437332|437333|437334|437335|437336|437337|437338|437339|437340|437341|437342|437343|437344|437345|437346|437347|437348|437349|437350|437351|437352|437353|437354|437355|437356|437357|437358|437359|437360|437361|437362|437363|437364|437365|437366|437367|437368|437369|437370|437371|437372|437373|437374|437375|437376|437377|437378|437379|437380|437381|437382|437383|437384|437385|437386|437387|437388|437389|437390|437391|437392|437393|437394|437395|437396|437397|437398|437399|437400|437401|437402|437403|437404|437405|437406|437407|437408|437409|437410|437411|437412|437413|437414|437415|437416|437417|437418|437419|437420|437421|437422|437423|437424|437425|437426|437427|437428|437429|437430|437431|437432|437433|437434|437435|437436|437437|437438|437439|437440|437441|437442|437443|437444|437445|437446|437447|437448|437449|437450|437451|437452|437453|437454|437455|437456|437457|437458|437459|437460|437461|437462|437463|437464|437465|437466|437467|437468|437469|437470|437471|437472|437473|437474|437475|437476|437477|437478|437479|437480|437481|437482|437483|437484|437485|437486|437487|437488|437489|437490|437491|437492|437493|437494|437495|437496|437497|437498|437499|437500|437501|437502|437503|437504|437505|437506|437507|437508|437509|437510|437511|437512|437513|437514|437515|437516|437517|437518|437519|437520|437521|437522|437523|437524|437525|437526|437527|437528|437529|437530|437531|437532|437533|437534|437535|437536|437537|437538|437539|437540|437541|437542|437543|437544|437545|437546|437547|437548|437549|437550|437551|437552|437553|437554|437555|437556|437557|437558|437559|437560|437561|437562|437563|437564|437565|437566|437567|437568|437569|437570|437571|437572|437573|437574|437575|437576|437577|437578|437579|437580|437581|437582|437583|437584|437585|437586|437587|437588|437589|437590|437591|437592|437593|437594|437595|437596|437597|437598|437599|437600|437601|437602|437603|437604|437605|437606|437607|437608|437609|437610|437611|437612|437613|437614|437615|437616|437617|437618|437619|437620|437621|437622|437623|437624|437625|437626|437627|437628|437629|437630|437631|437632|437633|437634|437635|437636|437637|437638|437639|437640|437641|437642|437643|437644|437645|437646|437647|437648|437649|437650|437651|437652|437653|437654|437655|437656|437657|437658|439758|439759|439760|439761|439762|439763|439764|439765|439766|439767|439768|439769|439770|439771|439772|439773|439774|439775|439776|439777|439778|439779|439780|439781|439782|439783|439784|439785|439786|439787|439788|439789|439790|439791|439792|439793|439794|439795|439796|439797|439798|439799|439800|439801|439802|439803|439804|439805|439806|440221|442470|444039|464005|481568|495012|495013|495014|495015|495016|495017|495018|495019|495020|495021|495022|495023|495024|495025|495026|495027|495028|495029|495030|495031|495032|495033|495034|495035|495036|495037|495038|495039|495040|514087|539446|539447|539448|539449|539450|539451|539452|539453|539454|539455|539456|539457|539458|539459|539460|539461|539462|539463|539464|539465|539466|570424|608933|608934|610268|625916|625917|625918|625919|625920|625921|625922|625923|625924|625925|625926|625927|625928|625929|625930|625931|625932|625933|625934|625935|625936|625937|625938|625939|625940|625941|625942|625943|625944|625945|625946|625947|625948|625949|625950|625951|625952|625953|625954|625955|625956|625957|625958|625959|625960|625961|625962|625963|625964|625965|625993|625994|625997|625998|640108|677561|677864|677959|680941|681598|681717|794226|794227|794228|794229|794230|794231|794232|794233|794234|794235|794236|794237|794238|794239|794240|794241|794242|794243|794244|794245|794246|794247|794248|794249|794250|794262|794263|794264|804684|804685|804686|804687|804688|804689|804690|804691|804692|804693|804694|804695|804696|804697|804698|804699|804700|804701|804702|804703|804704|804705|804706|804707|804708|804709|804710|804711|804712|804713|804714|804715|804716|804717|804718|804719|804720|804721|804722|804723|804724|804725|804726|804727|804728|804729|804730|804731|861668|912411|917632|917634|917635|917636|917637|917638|917639|917640|917641|917642|917643|917644|917645|917646|917647|917648|917649|917651|917652|917654|917655|917656|917657|917658|917659|917661|917662|917664|917665|917666|917667|917668|917669|917670|917671|917672|917673|917674|917675|917676|917677|917678|917679|917680|917681|917682|917683|917684|917685|917686|917688|917689|917690|917691|917692|917693|917694|917695|917696|917697|917698|917699|917700|917701|917702|917703|917705|917706|917707|917708|917709|917710|917711|917712|917713|917714|917715|917716|917717|917718|917719|917720|917722|917723|917724|917725|917726|917727|918143|918144|918145|918146|918147|918148|918149|918150|918151|918568|918613|918631|918647|918694|918696|918704|918705|918755|918759|918774|918861|918869|918930|918938|918963|918970|918986|918987|919018|919023|919040|919101|919102|919139|919188|919189|919241|919247|919248|919250|919251|919264|919285|919364|919381|919382|919383|919460|919495|919498|919565|919566|919591|919599|919644|919666|919669|919674|919697|919773|919810|919846|919977|920066|920067|920076|920077|920078|920079|920080|920099|920110|920119|920120|920139|920147|920158|920167|920181|920188|920197|920217|920250|920264|920299|920321|920327|920333|920364|920381|920385|920423|971239|971240|971241|971242|971243|971244|971245|971246|971247|971248|971249|971250|971251|971252|971253|971254|971255|971256|971257|971258|971259|971260|971261|971262|971263|971264|971265|971266|971267|971268|971269|971270|971271|971272|971273|971274|971275|971276|971277|971278|971348|971349|971350|972514|972516|972517|972518|972519|973053|974453|974568|975718|976535|976536|976537|976538|976539|976540|976541|976542|976543|976544|976545|976546|980833", + "upstreamId": "18675|21420|22089|24691|26568|31365|31971|35697|40616|40617|40621|40628|40632|40637|40639|40646|40655|40672|40675|40686|40722|40732|40734|40744|40745|40753|40764|40770|40791|40803|40818|40826|40830|40833|40839|40860|40861|40864|40887|40899|40904|40909|40918|40920|40924|40932|40948|40953|40982|40986|41018|41029|41045|41049|41061|41065|41082|41098|41099|41101|41104|41107|41113|41115|41128|41138|41141|41153|41156|41162|41169|41194|41223|41235|41266|41267|41303|41307|41308|41315|41338|41354|41382|41407|41444|41448|41454|41459|41475|41480|41483|41485|41486|41491|41493|41511|41535|41543|41553|41578|41586|41604|41606|41612|41613|41620|41626|41656|41663|41682|41689|41726|41737|41750|41761|41778|41781|41783|41785|41817|41839|41840|41850|41870|41890|41894|41900|41925|41930|41967|41973|42007|42017|42034|42043|42059|42069|42085|42087|42113|42128|42136|42169|42218|42249|42255|42339|42341|42398|42400|42408|42431|42464|42488|42491|42516|42538|42551|42591|42605|42634|42698|42728|42769|42790|42804|42815|42832|42833|42858|42886|42893|42941|42982|43028|43034|43049|43057|43096|43119|43123|43182|43203|43210|43270|43290|43304|43367|43375|43379|43389|43418|43519|43555|43575|43625|43648|43654|43656|43681|43709|43741|43838|43882|43904|43930|43977|44003|44081|51671|51905|52123|52268|54898|56325|56786|71580|71583|71584|71586|71587|71589|71590|71591|71593|71594|71596|71597|71598|71599|71600|71601|71602|71603|71604|71605|71606|71607|71608|71609|71610|71611|71612|71613|71614|71615|71616|71617|71619|71620|71621|71622|71623|71624|71625|71626|71627|71629|71630|71631|71633|71634|71635|71636|71637|71638|71639|71640|71641|71642|71643|71644|71645|71646|71647|71648|71649|71650|71651|71652|71653|71654|71655|71656|71657|71658|71660|71661|71662|71663|71664|71666|71667|71668|71669|71670|71671|71672|71673|71675|71676|71677|71678|71679|71680|71681|71682|71683|71684|71685|71686|71687|71688|71689|71690|71691|71692|71693|71694|71697|71698|71699|71700|71702|71703|71704|71705|71706|71708|71709|71710|71711|71712|71713|71714|71715|71716|71717|71718|71719|71720|71721|71722|71723|71724|71725|71726|71727|71728|71729|71730|71731|71732|71733|71735|71736|71737|71738|71739|71740|71741|71742|71743|71744|71745|71746|71747|71748|71749|71750|71751|71752|71753|71754|71755|71756|71757|71758|71759|71760|71761|71762|71763|71764|71765|71766|71767|71768|71769|71770|71771|71772|71773|71774|71775|71776|71777|71778|71779|71780|71781|71782|71783|71784|71785|71786|71787|71788|71789|71790|71791|71792|71793|71794|71795|71796|71797|71798|71799|71801|71802|71803|71804|71805|71806|71807|71808|71809|71810|71812|71813|71814|71815|71816|71817|71818|71819|71820|71821|71822|71823|71824|71825|71826|71827|71828|71830|71831|71832|71833|71834|71835|71836|71837|71838|71839|71840|71841|71842|71843|71844|71845|71846|71847|71849|71850|71851|71852|71853|71854|71855|71856|71857|71858|71859|71860|71861|71862|71864|71865|71866|71867|71868|71869|71870|71871|71872|71873|71874|71875|71876|71877|71878|71879|71881|71882|71883|71884|71885|71886|71887|71888|71889|71891|71892|71893|71894|71895|71896|71897|71898|71899|71900|71901|71902|71903|71904|71905|71906|71907|71908|71909|71910|71911|71912|71913|71914|71915|71916|71917|71918|71919|71920|71921|71922|71923|71924|71925|71926|71927|71928|71929|71930|71931|71932|71934|71935|71936|71937|71938|71939|71940|71941|71942|71944|71945|71946|71947|71948|71949|71950|71951|71952|71953|71954|71955|71956|71957|71958|71959|71960|71961|71962|71963|71965|71966|71967|71968|71969|71970|71971|71972|71973|71974|71975|71976|71977|71978|71979|71980|71981|71982|71983|71984|71985|71986|71987|71988|71989|71990|71991|71992|71993|71994|71995|71996|71997|71998|71999|72000|72001|72002|72003|72004|72005|72006|72007|72008|72009|72010|72011|72012|72013|72014|72015|72016|72017|72018|72019|72020|72021|72022|72023|72024|72026|72027|72028|72029|72030|72031|72032|72033|72034|72035|72036|72037|72038|72039|72040|72041|72042|72043|72044|72045|72046|72047|72048|72049|72050|72051|72052|72053|72054|72055|72056|72057|72058|72059|72060|72061|72062|72063|72064|72065|72066|72067|72068|72069|72070|72071|72072|72073|72074|72075|72076|72077|72078|72079|72080|72081|72082|72083|72084|72085|72086|72087|72088|72089|72090|72091|72092|72093|72094|72095|72096|72097|72098|72099|72100|72101|72102|72103|72104|72105|72106|72107|72108|72109|72110|72112|72113|72115|72117|72118|72119|72120|72121|72122|72123|72124|72125|72126|72127|72128|72129|72131|72132|72133|72134|72135|72136|72137|72138|72139|72140|72141|72142|72143|72145|72146|72147|72148|72149|72150|72151|72152|72153|72154|72155|72157|72158|72159|72160|72161|72162|72164|72165|72166|72167|72168|72169|72171|72172|72173|72174|72175|72176|72177|72178|72179|72181|72182|72183|72184|72185|72186|72187|72188|72189|72190|72191|72192|72194|72195|72196|72197|72199|72201|72202|72203|72204|72205|72206|72207|72210|72211|72212|72214|72215|72216|72217|72219|72220|72221|72222|72223|72224|72225|72227|72228|72229|72231|72232|72233|72234|72235|72236|72238|72239|72241|72242|72244|72245|72246|72247|72248|72249|72250|72251|72252|72253|72254|72255|72256|72257|72258|72260|72261|72262|72263|72264|72265|72266|72267|72268|72269|72270|72271|72273|72274|72275|72276|72277|72279|72280|72281|72283|72285|72286|72287|72288|72289|72290|72291|72292|72293|72294|72295|72296|72298|72299|72300|72302|72303|72304|72305|72306|72307|72308|72309|72312|72313|72314|72315|72316|72317|72318|72320|72321|72322|72323|72324|72325|72326|72327|72329|72330|72331|72332|72333|72334|72336|72337|72338|72340|72341|72342|72343|72344|72345|72347|72348|72349|72350|72352|72354|72355|72358|72360|72361|72363|72364|72365|72366|72367|72368|72369|72370|72371|72373|72374|72376|72377|72378|72379|72380|72382|72383|72384|72385|72386|72387|72388|72389|72390|72391|72392|72394|72395|72396|72397|72398|72399|72400|72401|72402|72403|72404|72406|72407|72409|72410|72411|72412|72413|72414|72415|72417|72418|72419|72420|72421|72422|72424|72426|72427|72428|72429|72430|72431|72433|72434|72435|72436|72437|72438|72439|72440|72442|72443|72444|72445|72446|72447|72448|72450|72451|72452|72455|72456|72457|72458|72460|72461|72462|72463|72464|72465|72466|72467|72468|72469|72470|72471|72472|72473|72474|72476|72477|72478|72479|72480|72482|72483|72484|72485|72487|72488|72489|72490|72491|72493|72495|72496|72497|72498|72499|72500|72502|72503|72505|72506|72507|72509|72510|72511|72512|72513|72514|72515|72516|72518|72519|72520|72521|72523|72524|72526|72528|72530|72531|72532|72533|72534|72535|72536|72537|72538|72539|72540|72542|72543|72544|72545|72546|72548|72549|72550|72551|72552|72553|72555|72556|72557|72558|72559|72560|72561|72562|72565|72566|72567|72568|72570|72572|72573|72574|72575|72577|72578|72579|72580|72581|72582|72583|72584|72585|72586|72587|72588|72589|72590|72591|72592|72593|72594|72595|72596|72597|72598|72601|72602|72603|72604|72606|72607|72608|72609|72610|72612|72613|72614|72615|72616|72618|72621|72622|72623|72624|72625|72626|72628|72629|72631|72632|72633|72635|72636|72637|72638|72639|72640|72642|72643|72645|72646|72649|72651|72653|72654|72655|72656|72657|72658|72660|72661|72662|72663|72664|72665|72666|72667|72668|72670|72673|72674|72675|72676|72678|72679|72680|72681|72682|72683|72684|72687|72688|72689|72691|72692|72693|72694|72695|72697|72698|72699|72700|72702|72703|72704|72705|72706|72707|72708|72709|72710|72711|72712|72713|72714|72716|72717|72718|72719|72720|72721|72722|72723|72724|72726|72727|72728|72729|72730|72731|72732|72734|72736|72737|72739|72740|72741|72742|72743|72745|72746|72749|72750|72752|72754|72755|72756|72757|72758|72759|72760|72761|72762|72763|72764|72765|72766|72767|72768|72769|72770|72771|72772|72773|72774|72775|72777|72778|72779|72780|72781|72782|72783|72784|72785|72786|72787|72788|72789|72790|72791|72792|72793|72795|72797|72799|72800|72801|72802|72803|72804|72805|72806|72807|72808|72809|72810|72811|72812|72813|72814|72815|72818|72819|72820|72821|72822|72823|72824|72825|72826|72827|72828|72829|72830|72831|72832|72833|72834|72835|72836|72837|72838|72839|72840|72841|72842|72843|72844|72845|72846|72847|72848|72850|72855|72856|72857|72858|72859|72861|72862|72864|72865|72866|72867|72869|72870|72873|72874|72875|72876|72877|72878|72880|72884|72887|72888|72889|72890|72891|72895|72896|72898|72900|72901|72902|72903|72904|72905|72906|72907|72908|72909|72910|72911|72913|72914|72915|72916|72917|72918|72919|72921|72923|72925|72926|72927|72928|72929|72930|72931|72933|72934|72935|72936|72937|72938|72939|72942|72943|72947|72948|72949|72950|72951|72952|72953|72954|72955|72956|72957|72958|72960|72961|72962|72964|72968|72969|72970|72971|72973|72974|72975|72976|72980|72981|72982|72983|72984|72985|72986|72988|72990|72991|72992|72994|72995|72997|72998|72999|73000|73002|73003|73004|73005|73006|73008|73009|73012|73014|73015|73016|73017|73018|73020|73022|73023|73024|73025|73026|73027|73028|73029|73030|73032|73033|73034|73035|73036|73037|73038|73039|73040|73041|73042|73043|73044|73046|73047|73048|73049|73050|73051|73053|73055|73056|73057|73058|73059|73060|73061|73062|73063|73064|73065|73066|73067|73069|73070|73071|73073|73074|73075|73076|73077|73078|73079|73080|73082|73083|73086|73087|73088|73089|73090|73091|73093|73094|73095|73097|73098|73099|73100|73101|73102|73103|73104|73105|73106|73107|73108|73109|73110|73111|73113|73115|73116|73118|73120|73121|73122|73125|73126|73127|73128|73129|73130|73131|73132|73133|73134|73135|73136|73137|73138|73139|73142|73143|73146|73147|73148|73149|73150|73151|73152|73154|73155|73157|73158|73159|73160|73161|73162|73163|73164|73165|73166|73168|73169|73171|73172|73173|73174|73175|73176|73177|73178|73179|73180|73181|73182|73184|73185|73186|73187|73189|73190|73191|73192|73193|73194|73195|73196|73197|73198|73199|73200|73201|73202|73203|73204|73205|73206|73207|73208|73209|73210|73211|73212|73213|73214|73215|73216|73217|73218|73221|73222|73223|73225|73226|73227|73228|73229|73230|73231|73232|73233|73234|73235|73236|73238|73239|73240|73241|73242|73243|73245|73246|73247|73248|73249|73250|73252|73254|73255|73256|73258|73259|73260|73261|73262|73263|73264|73265|73266|73267|73269|73270|73271|73272|73274|73276|73278|73279|73280|73281|73282|73283|73284|73285|73286|73287|73288|73289|73290|73291|73293|73296|73297|73298|73299|73300|73301|73303|73304|73305|73306|73307|73309|73311|73312|73313|73314|73315|73316|73318|73319|73320|73321|73322|73323|73324|73325|73326|73327|73328|73329|73330|73332|73333|73335|73336|73337|73338|73339|73340|73342|73343|73344|73345|73346|73347|73348|73349|73350|73351|73352|73353|73356|73357|73359|73360|73361|73362|73363|73365|73366|73367|73369|73371|73372|73373|73374|73375|73376|73377|73378|73379|73380|73382|73383|73384|73385|73386|73387|73388|73389|73390|73391|73392|73393|73394|73395|73396|73397|73398|73399|73400|73401|73402|73403|73404|73405|73406|73408|73411|73412|73414|73415|73416|73417|73418|73420|73422|73423|73424|73425|73426|73427|73428|73429|73430|73431|73432|73433|73434|73435|73436|73438|73439|73441|73442|73443|73445|73446|73447|73448|73449|73450|73451|73452|73453|73455|73456|73457|73458|73459|73461|73462|73463|73464|73465|73466|73467|73468|73469|73470|73471|73472|73473|73474|73475|73477|73478|73479|73480|73481|73482|73484|73486|73487|73488|73490|73491|73492|73493|73495|73496|73497|73498|73499|73501|73505|73506|73507|73509|73511|73512|73513|73514|73515|73516|73517|73518|73519|73522|73524|73525|73527|73528|73530|73531|73532|73533|73535|73536|73537|73538|73540|73541|73543|73544|73545|73546|73547|73548|73550|73551|73553|73555|73557|73558|73559|73560|73561|73562|73563|73565|73566|73568|73569|73570|73572|73574|73575|73576|73577|73578|73579|73580|73581|73582|73583|73585|73586|73587|73589|73592|73594|73595|73596|73597|73598|73599|73600|73601|73602|73604|73605|73606|73607|73608|73609|73611|73612|73613|73614|73615|73617|73618|73622|73623|73624|73625|73626|73627|73628|73629|73630|73631|73632|73633|73634|73636|73638|73640|73641|73642|73643|73644|73645|73646|73647|73648|73649|73650|73651|73652|73653|73654|73655|73656|73657|73658|73659|73660|73661|73662|73663|73664|73665|73666|73667|73668|73669|73670|73671|73672|73673|73675|73676|73677|73678|73680|73681|73682|73685|73686|73688|73689|73690|73691|73692|73693|73694|73696|73698|73699|73700|73701|73702|73703|73704|73705|73706|73707|73708|73709|73710|73711|73712|73713|73714|73715|73716|73717|73718|73719|73720|73721|73722|73723|73724|73725|73726|73727|73728|73729|73730|73731|73732|73734|73735|73736|73738|73739|73740|73741|73742|73743|73744|73745|73746|73747|73748|73749|73750|73751|73752|73753|73754|73756|73757|73758|73761|73762|73763|73764|73768|73769|73771|73772|73773|73774|73775|73776|73778|73781|73782|73783|73784|73785|73786|73789|73790|73791|73792|73794|73795|73796|73797|73798|73799|73800|73801|73802|73803|73804|73805|73806|73807|73808|73809|73810|73811|73812|73813|73814|73815|73816|73817|73818|73819|73820|73821|73822|73824|73825|73826|73827|73828|73829|73831|73832|73833|73835|73836|73837|73838|73839|73840|73841|73842|73843|73844|73845|73847|73848|73849|73850|73851|73853|73855|73858|73859|73860|73861|73862|73863|73864|73865|73867|73868|73869|73870|73871|73872|73874|73875|73876|73877|73878|73879|73880|73881|73882|73883|73884|73885|73887|73888|73889|73890|73891|73892|73895|73896|73897|73898|73899|73900|73901|73902|73903|73904|73905|73906|73908|73910|73911|73912|73913|73914|73915|73916|73917|73918|73919|73921|73922|73923|73924|73925|73926|73927|73928|73929|73932|73935|73936|73937|73938|73939|73941|73942|73944|73945|73946|73947|73948|73949|73950|73951|73952|73953|73954|73955|73956|73959|73961|73962|73963|73964|73965|73967|73969|73971|73972|73973|73974|73978|73979|73980|73983|73984|73985|73986|73987|73989|73990|73991|73992|73993|73994|73995|73996|73997|73998|73999|74000|74003|74004|74005|74006|74007|74008|74009|74010|74012|74013|74014|74015|74017|74018|74019|74020|74021|74022|74023|74024|74025|74026|74028|74029|74030|74031|74032|74033|74034|74035|74037|74038|74039|74040|74041|74042|74043|74044|74045|74046|74050|74051|74052|74053|74054|74055|74056|74057|74058|74059|74060|74062|74063|74064|74066|74067|74068|74069|74070|74074|74075|74076|74077|74079|74081|74082|74084|74085|74086|74088|74089|74090|74091|74092|74093|74094|74095|74096|74098|74099|74100|74101|74102|74103|74105|74106|74107|74108|74109|74110|74112|74113|74114|74115|74116|74117|74118|74119|74121|74122|74123|74124|74125|74127|74128|74131|74132|74133|74134|74135|74136|74137|74138|74140|74143|74144|74145|74146|74149|74150|74151|74152|74154|74155|74156|74157|74158|74160|74161|74162|74163|74164|74165|74166|74168|74171|74172|74173|74174|74175|74176|74177|74178|74179|74180|74181|74182|74183|74184|74185|74186|74189|74190|74191|74192|74193|74196|74198|74199|74200|74201|74202|74203|74204|74205|74207|74208|74209|74210|74211|74212|74213|74214|74216|74217|74218|74219|74220|74221|74222|74223|74225|74226|74227|74228|74229|74230|74231|74233|74234|74235|74236|74237|74238|74239|74240|74242|74244|74246|74247|74249|74250|74252|74253|74254|74257|74258|74259|74260|74261|74262|74264|74265|74266|74267|74268|74269|74270|74271|74273|74274|74275|74276|74277|74278|74279|74280|74281|74282|74283|74284|74286|74289|74290|74295|74296|74297|74298|74301|74302|74303|74304|74305|74306|74307|74308|74309|74310|74311|74313|74314|74315|74317|74318|74319|74320|74321|74322|74323|74324|74325|74327|74328|74329|74330|74331|74332|74333|74334|74337|74338|74339|74340|74341|74342|74343|74344|74345|74346|74347|74348|74349|74350|74351|74352|74353|74354|74355|74356|74358|74359|74361|74362|74363|74364|74365|74366|74367|74368|74369|74370|74372|74373|74377|74378|74379|74381|74382|74383|74384|74385|74388|74389|74390|74391|74393|74394|74395|74396|74399|74400|74401|74402|74407|74409|74411|74412|74413|74414|74415|74416|74417|74419|74421|74422|74423|74424|74425|74426|74427|74430|74431|74432|74434|74436|74437|74438|74439|74441|74442|74446|74447|74448|74450|74451|74452|74453|74455|74456|74458|74459|74461|74462|74463|74464|74465|74466|74467|74468|74469|74470|74471|74473|74476|74478|74479|74480|74482|74483|74484|74485|74486|74487|74488|74489|74490|74491|74493|74494|74495|74497|74498|74499|74501|74502|74503|74504|74505|74506|74507|74508|74511|74512|74513|74516|74517|74519|74520|74522|74523|74524|74525|74526|74527|74528|74529|74531|74532|74534|74537|74538|74539|74541|74544|74545|74546|74547|74548|74549|74552|74553|74554|74555|74559|74560|74561|74562|74563|74564|74565|74566|74567|74568|74571|74572|74573|74574|74575|74576|74577|74578|74579|74580|74581|74582|74584|74585|74586|74587|74588|74589|74590|74591|74593|74594|74595|74596|74598|74599|74600|74602|74603|74604|74605|74606|74607|74608|74609|74610|74611|74612|74613|74614|74616|74617|74618|74619|74620|74621|74622|74623|74624|74625|74627|74628|74629|74630|74631|74632|74633|74635|74637|74638|74640|74641|74642|74644|74645|74646|74647|74649|74650|74651|74652|74653|74654|74656|74658|74659|74660|74661|74662|74664|74665|74666|74668|74669|74671|74672|74673|74674|74675|74676|74677|74679|74680|74681|74683|74684|74685|74686|74688|74689|74690|74691|74692|74693|74694|74696|74697|74698|74699|74700|74701|74702|74703|74704|74705|74706|74707|74712|74714|74716|74717|74718|74719|74721|74722|74723|74724|74726|74727|74728|74729|74730|74732|74733|74734|74735|74737|74738|74739|74740|74741|74742|74743|74744|74745|74746|74747|74748|74749|74751|74752|74753|74754|74756|74757|74758|74760|74762|74765|74766|74767|74768|74769|74770|74771|74773|74774|74775|74776|74777|74778|74779|74780|74781|74782|74783|74785|74787|74788|74792|74793|74795|74796|74797|74798|74800|74801|74802|74803|74806|74807|74808|74809|74810|74811|74812|74814|74815|74816|74818|74819|74820|74821|74822|74823|74824|74826|74827|74828|74829|74830|74831|74832|74833|74835|74836|74838|74839|74840|74841|74842|74843|74844|74846|74847|74848|74849|74852|74853|74854|74855|74856|74857|74858|74859|74860|74861|74862|74863|74865|74866|74867|74868|74869|74870|74871|74872|74873|74874|74875|74876|74878|74879|74881|74882|74883|74884|74885|74886|74887|74889|74890|74892|74893|74895|74896|74897|74898|74899|74900|74901|74902|74903|74904|74905|74906|74907|74908|74909|74910|74911|74912|74914|74915|74916|74917|74918|74919|74920|74921|74922|74923|74924|74925|74926|74928|74929|74930|74931|74932|74933|74934|74936|74937|74941|74942|74943|74944|74945|74946|74947|74948|74949|74950|74952|74954|74955|74956|74957|74958|74959|74961|74963|74966|74967|74968|74969|74970|74971|74972|74973|74974|74975|74976|74977|74978|74979|74980|74981|74982|74983|74984|74985|74986|74988|74991|74992|74993|74995|74997|74998|74999|75000|75001|75002|75003|75004|75005|75006|75008|75009|75010|75011|75013|75014|75015|75016|75017|75018|75019|75020|75021|75022|75024|75025|75026|75028|75032|75034|75035|75036|75037|75038|75039|75041|75042|75044|75045|75046|75047|75048|75049|75050|75051|75052|75053|75055|75056|75057|75059|75060|75061|75062|75064|75065|75066|75067|75068|75069|75070|75072|101854|151323|153841|153845|153847|153849|153871|153872|153873|153874|153875|153876|153877|153878|153879|153880|153881|153882|153883|153884|153885|153886|153887|153888|153889|153890|153891|153892|153893|153894|153895|153896|153897|153898|153899|153900|153901|153902|153903|153904|153905|153906|153907|153908|153909|153910|153911|153912|153913|153914|153915|153916|153917|153918|153919|153920|153921|153922|153923|153924|153925|153926|153927|153928|153929|153930|153931|153932|153933|153934|153935|153936|153937|153938|153939|153940|153941|153942|153943|153944|153945|153946|153947|153948|153949|153950|153951|153952|153953|153954|153955|153956|153957|153958|153959|153960|153961|153962|153963|153964|153965|153966|153967|153968|153969|153970|153971|153972|153973|153974|153975|153976|153977|153978|153979|153980|153981|153982|153983|153984|153985|153986|153987|153988|153989|153990|153991|153992|153993|153994|153995|153996|153997|153998|153999|154000|154001|154002|154003|154004|154005|154006|154007|154008|154009|154010|154011|154012|154013|154014|154015|154016|154017|154018|154019|154020|154021|154022|154023|154024|154025|154026|154027|154028|154029|154030|154031|154032|154033|154034|154035|154036|154037|154038|154039|154040|154041|154042|154043|154044|154045|154046|154047|154048|154049|154050|154051|154052|154053|154054|154055|154056|154057|154058|154059|154060|154061|154062|154063|154064|154065|154066|154067|154068|154069|154070|154071|154072|154073|154074|154075|154076|154077|154078|154079|154080|154081|154082|154083|154084|154085|154086|154087|154088|154089|154090|154091|154092|154093|154094|154095|154096|154097|154098|154099|154100|154101|154102|154103|154104|154105|154106|154107|154108|154109|154110|154111|154112|154113|154114|154115|154116|154117|154118|154119|154120|154121|154122|154123|154124|154125|154126|154127|154128|154129|154130|154131|154132|154133|154134|154135|154136|154137|154138|154139|154140|154141|154142|154143|154144|154145|154146|154147|154148|154149|154150|154151|154152|154153|154154|154155|154156|154157|154158|154159|154160|154161|154162|154163|154164|154165|154166|154167|154168|154169|154170|154171|154172|154173|154174|154175|154176|154177|154178|154179|154180|154181|154182|154183|154184|154185|154186|154187|154188|154189|154190|154191|154192|154193|154194|154195|154196|154197|154198|154199|154200|154201|154202|154203|154204|154205|154206|154207|154208|154209|154210|154211|154212|154213|154214|154215|154216|154217|154218|154219|154220|154221|154222|154223|154224|154225|154226|154227|154228|154229|154230|154231|154232|154233|154234|154235|154236|154237|154238|154239|154240|154241|154242|154243|154244|154245|154246|154247|154248|154249|154250|154251|154252|154253|154254|154255|154256|154257|154258|154259|154260|154261|154262|154263|154264|154265|154266|154267|154268|154269|154270|154271|154272|154273|154274|154275|154276|154277|154278|154279|154280|154281|154282|154283|154284|154285|154286|154287|154288|154289|154290|154291|154292|154293|154294|154295|154296|154297|154298|154299|154300|154301|154302|154303|154304|154305|154306|154307|154308|154309|154310|154311|154312|154313|154314|154318|154319|154320|154321|154322|154323|154324|154325|154326|154327|154328|154329|154331|154332|154333|154334|154337|154338|154339|154340|154341|154342|154343|154344|154345|154347|154348|154350|154351|154353|154354|154358|154359|154360|154361|154363|154364|154365|154367|154368|154371|154372|154373|154374|154375|154376|154377|154379|154381|154382|154385|154388|154389|154392|154394|154395|154396|154397|154398|154399|154401|154402|154403|154404|154405|154408|154410|154411|154414|154418|154419|154423|154427|154428|154429|154431|154432|154434|154435|154436|154437|154438|154439|154440|154442|154445|154446|154447|154449|154450|154457|154458|154459|154460|154461|154463|154465|154466|154468|154472|154473|154476|154477|154478|154479|154481|154482|154484|154485|154486|154487|154488|154492|154494|154495|154496|154499|154500|154502|154503|154504|154505|154506|154507|154508|154509|154510|154512|154513|154515|154516|154517|154520|154524|154525|154528|154529|154530|154531|154532|154533|154534|154535|154536|154537|154538|154539|154540|154541|154542|154543|154544|154545|154546|154547|154548|154549|154550|154551|154552|154553|154554|154555|154556|154557|154558|154559|154560|154561|154562|154563|154564|154565|154566|154567|154568|154569|154570|154571|154572|154573|154574|154575|154576|154577|154578|154579|154580|154581|154582|154583|154584|154585|154586|154587|154588|154589|154590|154591|154592|154593|154594|154595|154596|154597|154598|154599|154600|154601|154602|154603|154604|154605|154606|154607|154608|154609|154610|154611|154612|154613|154614|154615|154616|154617|154618|154619|154620|154621|154622|154623|154624|154625|154626|154627|154628|154629|154630|154631|154632|154633|154634|154635|154636|154637|154638|154639|154640|154641|154642|154643|154644|154645|154646|154647|154648|154649|154650|154651|154652|154653|154654|154655|154656|154657|154658|154659|154660|154661|154662|154663|154664|154665|154666|154667|154668|154669|154670|154671|154672|154673|154674|154675|154676|154677|154678|154679|154680|154681|154682|154683|154684|154685|154686|154687|154688|154689|154690|154691|154692|154693|154694|154695|154696|154697|154698|154699|154700|154701|154702|154703|154704|154705|154706|154707|154708|154709|154710|154711|154712|154713|154714|154715|154716|154717|154718|154719|154720|154721|154722|154723|154724|154725|154726|154727|154728|154729|154730|154731|154732|154733|154735|154736|154737|154738|154739|154740|154741|154742|154743|154744|154745|154746|154747|154748|154749|154750|154751|154752|154753|154754|154755|154756|154757|154758|154759|154760|154761|154762|154763|154764|154765|154766|154767|154768|154769|154770|154771|154772|154773|154774|154775|154776|154777|154778|154779|154780|154781|154782|154783|154784|154785|154786|154787|154788|154789|154790|154791|154792|154793|154794|154795|154796|154797|154798|154799|154800|154801|154803|154804|154805|154806|154807|154808|154809|154810|154811|154812|154813|154814|154815|154816|154817|154818|154819|154820|154821|154822|154823|154824|154825|154826|154827|154828|154829|154830|154831|154832|154833|154834|154835|154836|154837|154838|154839|154840|154841|154842|154843|154844|154845|154846|154847|154848|154849|154850|154851|154852|154853|154854|154855|154856|154857|154858|154859|154860|154861|154862|154863|154864|154865|154866|154867|154868|154869|154870|154871|154872|154873|154874|154875|154876|154877|154878|154879|154880|154881|154882|154883|154884|154885|154886|154887|154888|154889|154890|154891|154892|154893|154894|154895|154896|154897|154898|154899|154900|154901|154902|154903|154904|154905|154906|154907|154908|154909|154910|154911|154912|154913|154914|154915|154916|154917|154918|154919|154920|154921|154922|154923|154924|154925|154926|154927|154928|154929|154930|154931|154932|154933|154934|154935|154936|154937|154938|154939|154940|154941|154942|154943|154944|154945|154946|154947|154948|154949|154950|154951|154952|154953|154954|154955|154956|154957|154958|154959|154960|154961|154962|154963|154964|154965|154966|154967|154968|154969|154970|154971|154972|154973|154974|154975|154976|154977|154978|154979|154980|154981|154982|154983|154984|154985|154986|154987|154988|154989|154990|154991|154992|154993|154994|154995|154996|154997|154998|154999|155000|155001|155002|155003|155004|155005|155006|155007|155008|155009|155010|155011|155012|155013|155014|155015|155016|155017|155018|155019|155020|155021|155022|155023|155024|155025|155026|155027|155028|155029|155030|155031|155032|155033|155034|155035|155036|155037|155038|155039|155040|155041|155042|155043|155044|155045|155046|155047|155048|155049|155050|155051|155052|155053|155054|155055|155056|155059|155061|155063|155064|155065|155066|155067|155068|155070|155071|155072|155073|155074|155075|155078|155079|155080|155081|155082|155083|155085|155086|155087|155088|155089|155090|155091|155092|155093|155094|155095|155096|155097|155098|155101|155103|155104|155105|155106|155107|155108|155110|155111|155112|155113|155114|155116|155117|155119|155120|155121|155122|155123|155124|155125|155126|155128|155129|155130|155131|155132|155133|155134|155135|155136|155137|155138|155139|155140|155142|155143|155145|155146|155148|155149|155150|155151|155152|155154|155156|155157|155158|155159|155160|155162|155163|155164|155165|155168|155169|155172|155173|155175|155176|155177|155178|155179|155180|155181|155183|155185|155187|155189|155190|155191|155192|155193|155194|155196|155197|155199|155200|155201|155202|155204|155205|155206|155207|155208|155209|155210|155211|155212|155214|155215|155216|155217|155218|155219|155220|155221|155222|155223|155224|155225|155226|155227|155228|155230|155231|155232|155233|155234|155235|155236|155237|155238|155239|155240|155241|155242|155247|155248|155250|155251|155252|155253|155254|155255|155256|155259|155260|155261|155262|155263|155265|155266|155269|155270|155273|155274|155276|155277|155280|155281|155282|155283|155284|155285|155286|155287|155288|155289|155290|155291|155292|155293|155297|155298|155300|155301|155302|155303|155304|155305|155306|155307|155309|155311|155313|155315|155318|155319|155321|155322|155323|155324|155325|155326|155327|155328|155329|155330|155333|155335|155336|155337|155338|155339|155340|155344|155345|155346|155347|155348|155349|155350|155351|155352|155353|155354|155355|155356|155357|155359|155360|155361|155362|155363|155364|155365|155366|155367|155368|155369|155370|155371|155372|155373|155374|155375|155376|155377|155378|155379|155383|155384|155385|155388|155389|155391|155392|155393|155394|155395|155396|155397|155398|155399|155400|155402|155403|155404|155405|155406|155407|155408|155409|155410|155411|155412|155414|155415|155416|155417|155418|155419|155420|155421|155422|155423|155424|155425|155426|155427|155428|155429|155430|155431|155432|155433|155434|155435|155436|155437|155438|155439|155440|155441|155442|155443|155444|155445|155446|155447|155448|155449|155450|155451|155452|155453|155454|155455|155456|155457|155458|155459|155460|155461|155462|155463|155464|155465|155466|155467|155468|155469|155470|155471|155472|155473|155474|155475|155476|155477|155478|155479|155480|155481|155482|155483|155484|155485|155486|155487|155488|155489|155490|155491|155492|155493|155494|155495|155496|155497|155498|155499|155500|155501|155502|155503|155504|155505|155506|155507|155508|155509|155510|155511|155512|155513|155514|155515|155516|155517|155518|155519|155520|155521|155522|155523|155524|155525|155526|155527|155528|155529|155530|155531|155532|155533|155534|155535|155536|155537|155538|155539|155540|155541|155542|155543|155544|155545|155546|155547|155548|155549|155550|155551|155552|155553|155554|155555|155556|155557|155558|155559|155560|155561|155562|155563|155564|155565|155566|155567|155568|155569|155570|155571|155572|155573|155574|155575|155576|155577|155578|155579|155580|155581|155582|155583|155584|155585|155586|155587|155588|155589|155590|155591|155592|155593|155594|155595|155596|155597|155598|155599|155600|155601|155602|155603|155604|155605|155606|155607|155608|155609|155610|155611|155612|155613|155614|155615|155616|155617|155618|155619|155620|155621|155622|155623|155624|155625|155626|155627|155628|155629|155630|155631|155632|155633|155634|155635|155636|155637|155638|155639|155640|155641|155642|155643|155644|155645|155646|155647|155648|155649|155650|155651|155652|155653|155654|155655|155656|155657|155658|155659|155660|155661|155662|155663|155664|155665|155666|155667|155668|155669|155670|155671|155672|155673|155674|155675|155676|155677|155678|155679|155680|155681|155682|155683|155684|155685|155686|155687|155688|155689|155690|155691|155692|155693|155694|155695|155696|155697|155698|155699|155700|155701|155702|155703|155704|155705|155706|155707|155708|155709|155710|155711|155712|155713|155714|155715|155716|155717|155718|155719|155720|155721|155722|155723|155724|155725|155726|155727|155728|155729|155730|155731|155732|155733|155734|155735|155736|155737|155738|155739|155740|155741|155742|155743|155744|155745|155746|155747|155748|155749|155750|155751|155752|155753|155754|155755|155756|155757|155758|155759|155760|155761|155762|155763|155764|155765|155766|155767|155768|155769|155770|155771|155772|155773|155774|155775|155776|155777|155778|155779|155780|155781|155782|155783|155784|155785|155786|155787|155788|155789|155790|155791|155792|155793|155794|155795|155796|155797|155798|155799|155800|155801|155802|155803|155804|155805|155806|155807|155808|155809|155810|155811|155812|155813|155814|155815|155816|155817|155818|155819|155820|155821|155822|155823|155824|155825|155826|155827|155828|155829|155830|155831|155832|155833|155834|155835|155836|155837|155838|155839|155840|155841|155842|155843|155844|155847|155848|155849|155850|155851|155852|155853|155854|155855|155856|155857|155858|155860|155861|155862|155863|155864|155865|155866|155867|155868|155869|155870|155871|155872|155873|155874|155875|155876|155877|155878|155879|155880|155881|155882|155883|155884|155885|155886|155887|155888|155889|155890|155891|155892|155893|155894|155895|155896|155897|155898|155899|155900|155901|155902|155903|155904|155905|155906|155907|155908|155909|155910|155911|155913|155914|155915|155916|155917|155918|155919|155920|155921|155922|155923|155924|155925|155926|155927|155928|155929|155930|155931|155932|155933|155935|155936|155937|155941|155942|155944|155945|155946|155947|155948|155949|155952|155953|155954|155955|155958|155959|155960|155962|155963|155964|155966|155968|155969|155970|155971|155972|155973|155974|155975|155976|155977|155978|155979|155980|155981|155982|155983|155984|155985|155986|155988|155989|155990|155991|155993|155994|155995|155998|155999|156000|156001|156002|156003|156004|156005|156006|156007|156008|156009|156010|156011|156012|156013|156014|156015|156016|156018|156020|156022|156023|156024|156026|156027|156028|156029|156030|156031|156032|156033|156034|156035|156036|156037|156038|156039|156040|156041|156042|156043|156044|156045|156046|156047|156048|156049|156050|156051|156052|156053|156054|156055|156056|156057|156058|156059|156060|156061|156062|156063|156064|156065|156066|156067|156068|156069|156070|156071|156072|156073|156074|156075|156076|156077|156078|156079|156080|156081|156082|156083|156084|156085|156086|156087|156088|156089|156090|156091|156092|156094|156095|156096|156097|156098|156099|156100|156101|156102|156103|156104|156105|156106|156107|156108|156109|156111|156113|156114|156115|156116|156117|156118|156119|156120|156121|156122|156123|156124|156126|156127|156128|156129|156130|156131|156132|156134|156136|156137|156138|156139|156140|156141|156142|156143|156144|156145|156146|156147|156148|156149|156150|156151|156152|156153|156154|156155|156156|156158|156159|156160|156161|156163|156164|156165|156167|156168|156169|156170|156173|156175|156176|156177|156178|156179|156181|156182|156183|156185|156186|156187|156188|156189|156190|156191|156192|156193|156194|156195|156196|156198|156199|156200|156203|156206|156207|156208|156209|156210|156212|156214|156217|156221|156222|156223|156225|156226|156227|156230|156231|156232|156233|156234|156235|156236|156237|156238|156243|156244|156246|156247|156248|156249|156250|156251|156252|156253|156255|156257|156258|156259|156260|156261|156262|156263|156264|156265|156266|156267|156268|156269|156270|156271|156274|156275|156277|156278|156280|156281|156285|156286|156287|156288|156289|156290|156291|156292|156294|156295|156296|156297|156298|156303|156304|156305|156306|156307|156308|156309|156310|156311|156314|156315|156316|156317|156318|156319|156321|156322|156323|156324|156325|156326|156327|156328|156329|156330|156331|156332|156333|156334|156335|156336|156337|156338|156339|156340|156341|156342|156343|156345|156346|156347|156348|156349|156351|156352|156353|156354|156355|156356|156357|156359|156360|156361|156362|156365|156366|156367|156368|156369|156370|156371|156372|156373|156374|156377|156378|156379|156380|156381|156382|156383|156384|156385|156386|156387|156388|156389|156390|156391|156392|156394|156395|156396|156397|156398|156399|156400|156401|156403|156404|156405|156406|156407|156408|156409|156410|156411|156414|156415|156416|156418|156419|156420|156421|156422|156423|156424|156426|156427|156429|156430|156431|156432|156433|156434|156435|156436|156437|156438|156439|156440|156441|156442|156443|156444|156445|156446|156447|156448|156449|156450|156451|156452|156453|156454|156455|156456|156457|156458|156460|156461|156462|156463|156464|156465|156466|156467|156469|156470|156473|156474|156475|156476|156477|156478|156479|156481|156482|156483|156484|156485|156486|156487|156488|156489|156490|156491|156493|156495|156496|156497|156498|156500|156501|156502|156503|156504|156505|156506|156507|156508|156511|156512|156513|156514|156515|156516|156517|156518|156519|156520|156521|156522|156524|156525|156526|156527|156528|156529|156530|156531|156532|156533|156534|156535|156536|156537|156538|156540|156541|156542|156543|156544|156545|156546|156547|156548|156549|156550|156551|156552|156553|156554|156555|156556|156557|156558|156559|156560|156561|156562|156563|156564|156565|156566|156567|156568|156569|156570|156571|156572|156573|156574|156576|156577|156578|156579|156580|156581|156582|156583|156584|156585|156586|156587|156588|156589|156590|156591|156592|156593|156594|156595|156596|156598|156599|156600|156601|156602|156603|156604|156605|156606|156607|156608|156609|156610|156612|156613|156614|156615|156616|156617|156618|156619|156620|156621|156622|156623|156624|156625|156626|156627|156628|156629|156630|156631|156632|156635|156636|156638|156639|156642|156645|156646|156647|156648|156649|156650|156651|156652|156656|156657|156658|156659|156662|156663|156664|156665|156667|156670|156671|156672|156673|156674|156675|156676|156677|156678|156679|156680|156681|156682|156683|156684|156685|156686|156687|156688|156689|156690|156691|156692|156693|156694|156695|156696|156697|156698|156699|156700|156701|156702|156703|156704|156705|156706|156707|156708|156709|156710|156711|156712|156713|156714|156715|156716|156717|156718|156719|156720|156721|156722|156723|156724|156725|156726|156727|156728|156729|156730|156731|156732|156733|156734|156735|156736|156737|156738|156739|156740|156741|156742|156743|156744|156745|156746|156747|156748|156749|156750|156751|156752|156753|156754|156755|156756|156757|156758|156759|156760|156761|156762|156763|156764|156765|156766|156767|156768|156769|156770|156771|156772|156773|156774|156775|156776|156777|156778|156779|156780|156781|156782|156783|156784|156785|156786|156787|156788|156789|156790|156791|156792|156793|156794|156795|156796|156797|156798|156799|156800|156801|156802|156803|156804|156805|156806|156807|156808|156809|156810|156811|156812|156813|156814|156815|156816|156817|156818|156819|156820|156821|156822|156823|156824|156825|156826|156827|156828|156829|156830|156831|156832|156833|156834|156835|156836|156837|156838|156839|156840|156841|156842|156843|156844|156845|156846|156847|156848|156849|156850|156851|156852|156853|156854|156855|156856|156857|156858|156859|156860|156861|156862|156863|156864|156865|156866|156867|156868|156869|156870|156871|156872|156873|156874|156875|156876|156877|156878|156879|156880|156881|156882|156883|156884|156885|156886|156887|156888|156889|156890|156891|156892|156893|156894|156895|156896|156897|156898|156899|156900|156901|156902|156903|156904|156905|156906|156907|156908|156909|156910|156911|156912|156913|156914|156915|156916|156917|156918|156919|156920|156921|156922|156923|156924|156925|156926|156927|156928|156929|156930|156931|156932|156933|156934|156935|156936|156937|156938|156939|156940|156941|156942|156943|156944|156945|156946|156947|156948|156949|156950|156951|156952|156953|156954|156955|156956|156957|156958|156959|156960|156961|156962|156963|156964|156965|156966|156967|156968|156969|156970|156971|156972|156973|156974|156975|156976|156977|156978|156979|156980|156981|156982|156983|156984|156985|156986|156987|156988|156989|156990|156991|156992|156993|156994|156995|156996|156997|156998|156999|157000|157001|157002|157003|157004|157005|157006|157007|157008|157009|157010|157011|157012|157013|157014|157015|157016|157017|157018|157019|157020|157021|157023|157024|157025|157026|157027|157028|157030|157031|157032|157034|157035|157036|157037|157038|157039|157040|157041|157042|157043|157044|157045|157046|157049|157050|157054|157057|157059|157060|157063|157064|157065|157066|157067|157068|157069|157071|157072|157074|157075|157076|157077|157078|157080|157081|157082|157083|157084|157087|157088|157090|157091|157092|157093|157094|157096|157098|157099|157100|157101|157102|157103|157104|157105|157106|157107|157108|157109|157111|157113|157114|157115|157116|157117|157118|157119|157120|157121|157122|157123|157125|157127|157128|157130|157131|157132|157133|157134|157135|157136|157137|157138|157140|157141|157142|157143|157144|157145|157146|157147|157148|157149|157150|157151|157152|157153|157154|157155|157156|157157|157158|157159|157160|157162|157163|157164|157165|157167|157168|157169|157170|157171|157172|157174|157175|157176|157177|157178|157179|157180|157181|157184|157185|157186|157187|157188|157189|157192|157193|157194|157195|157196|157197|157198|157199|157200|157201|157203|157204|157206|157207|157209|157210|157211|157212|157213|157215|157216|157217|157218|157219|157220|157221|157222|157225|157226|157227|157228|157230|157231|157232|157233|157235|157236|157237|157238|157239|157240|157241|157242|157243|157244|157245|157246|157247|157248|157249|157250|157251|157252|157253|157255|157256|157257|157258|157259|157260|157261|157262|157264|157265|157266|157268|157269|157272|157273|157275|157276|157277|157278|157279|157281|157282|157283|157285|157287|157288|157289|157290|157291|157292|157293|157294|157295|157296|157297|157298|157299|157301|157302|157303|157304|157305|157306|157308|157309|157310|157311|157312|157313|157314|157315|157316|157317|157318|157319|157320|157321|157322|157323|157324|157325|157326|157327|157328|157329|157331|157332|157333|157334|157335|157336|157337|157338|157339|157340|157341|157342|157343|157344|157345|157347|157348|157349|157350|157351|157352|157353|157354|157355|157356|157357|157358|157359|157360|157361|157362|157363|157364|157365|157366|157367|157369|157370|157372|157373|157374|157375|157376|157377|157378|157379|157380|157382|157383|157384|157385|157386|157387|157388|157389|157390|157391|157392|157393|157394|157395|157396|157397|157398|157399|157400|157402|157403|157404|157405|157406|157407|157408|157409|157410|157411|157412|157414|157415|157416|157417|157418|157419|157420|157421|157422|157424|157426|157427|157428|157429|157431|157433|157434|157435|157436|157437|157438|157439|157440|157441|157442|157443|157444|157446|157448|157449|157450|157451|157452|157453|157454|157455|157456|157457|157458|157459|157460|157461|157462|157463|157464|157466|157467|157468|157469|157470|157471|157472|157473|157474|157475|157477|157478|157479|157480|157481|157482|157485|157486|157487|157488|157489|157490|157491|157492|157494|157495|157496|157498|157499|157500|157501|157502|157503|157504|157505|157506|157507|157510|157511|157512|157513|157514|157515|157516|157517|157518|157520|157521|157522|157523|157524|157526|157527|157529|157530|157531|157532|157535|157537|157540|157542|157543|157544|157545|157549|157550|157551|157552|157554|157556|157557|157558|157559|157560|157561|157563|157564|157565|157566|157567|157570|157572|157573|157575|157576|157578|157579|157580|157582|157583|157584|157585|157586|157587|157588|157589|157590|157594|157595|157596|157598|157599|157600|157601|157602|157603|157604|157605|157606|157607|157608|157609|157610|157611|157612|157614|157615|157616|157617|157618|157619|157621|157622|157623|157624|157625|157626|157628|157631|157632|157633|157634|157635|157636|157638|157639|157640|157641|157644|157645|157646|157647|157648|157649|157650|157651|157653|157654|157655|157656|157657|157658|157659|157660|157661|157662|157663|157664|157665|157666|157667|157668|157669|157670|157671|157672|157673|157678|157679|157681|157682|157683|157684|157686|157687|157688|157690|157691|157693|157696|157697|157698|157699|157700|157701|157702|157703|157704|157705|157706|157707|157708|157709|157710|157711|157714|157715|157716|157717|157718|157719|157720|157721|157723|157724|157725|157726|157728|157729|157730|157731|157733|157734|157735|157737|157738|157739|157740|157741|157742|157743|157746|157747|157748|157749|157750|157751|157753|157754|157755|157756|157758|157759|157760|157761|157762|157763|157764|157765|157766|157767|157768|157769|157770|157771|157772|157773|157774|157776|157777|157778|157779|157780|157781|157782|157786|157787|157788|157789|157791|157793|157794|157795|157796|157799|157800|157801|157802|157803|157804|157805|157806|157808|157809|157810|157811|157812|157813|157814|157815|157816|157818|157819|157820|157821|157822|157823|157824|157825|157826|157827|157828|157829|157830|157831|157832|157833|157834|157836|157837|157838|157839|157840|157841|157842|157843|157845|157846|157847|157848|157849|157850|157851|157852|157853|157854|157855|157856|157857|157858|157859|157860|157861|157862|157863|157864|157865|157866|157867|157868|157869|157870|157871|157872|157873|157874|157877|157878|157879|157882|157883|157884|157885|157886|157887|157888|157889|157890|157892|157893|157894|157895|157896|157897|157898|157899|157900|157901|157902|157903|157904|157907|157908|157909|157910|157911|157913|157914|157915|157916|157917|157918|157919|157920|157921|157922|157923|157924|157925|157926|157927|157928|157929|157930|157931|157932|157933|157934|157935|157936|157937|157938|157939|157940|157941|157942|157943|157944|157945|157946|157947|157948|157949|157950|157951|157952|157953|157954|157955|157956|157957|157958|157959|157960|157961|157962|157963|157964|157965|157966|157967|157968|157969|157970|157971|157972|157973|157974|157975|157976|157977|157978|157979|157980|157981|157982|157983|157984|157985|157986|157987|157988|157989|157990|157991|157992|157993|157994|157995|157996|157997|157998|157999|158000|158001|158002|158003|158004|158005|158006|158007|158008|158009|158010|158011|158012|158013|158014|158015|158016|158017|158018|158019|158020|158021|158022|158023|158024|158025|158026|158027|158028|158029|158030|158031|158032|158033|158034|158035|158036|158037|158038|158039|158040|158041|158042|158043|158044|158045|158046|158047|158048|158049|158050|158051|158052|158053|158054|158055|158056|158057|158058|158061|158062|158063|158064|158065|158067|158068|158069|158071|158072|158073|158074|158075|158076|158077|158078|158079|158081|158082|158085|158086|158087|158088|158089|158090|158091|158092|158093|158094|158095|158096|158097|158098|158099|158100|158101|158102|158103|158104|158105|158106|158107|158108|158109|158110|158111|158112|158113|158114|158115|158116|158117|158118|158120|158121|158122|158123|158124|158125|158126|158127|158128|158129|158130|158131|158132|158133|158134|158135|158136|158137|158138|158139|158140|158141|158142|158143|158144|158145|158146|158147|158148|158149|158150|158151|158152|158153|158154|158155|158156|158157|158158|158159|158160|158161|158162|158163|158164|158165|158166|158167|158168|158169|158170|158171|158172|158173|158174|158175|158176|158177|158178|158179|158180|158181|158182|158183|158185|158187|158188|158189|158190|158191|158192|158193|158194|158195|158196|158197|158198|158199|158200|158201|158202|158203|158204|158205|158206|158207|158209|158210|158211|158212|158213|158214|158215|158216|158217|158218|158219|158220|158221|158222|158223|158224|158225|158226|158227|158228|158229|158230|158231|158232|158233|158234|158235|158236|158237|158238|158239|158240|158241|158242|158243|158244|158245|158246|158247|158248|158249|158250|158251|158252|158253|158254|158255|158256|158257|158258|158259|158260|158261|158262|158264|158265|158266|158267|158269|158270|158271|158272|158273|158274|158275|158276|158277|158278|158279|158280|158281|158283|158284|158285|158286|158287|158288|158289|158290|158291|158292|158293|158294|158295|158296|158297|158298|158300|158301|158302|158303|158304|158305|158306|158307|158308|158309|158310|158311|158312|158313|158314|158315|158316|158317|158318|158319|158320|158321|158322|158323|158324|158325|158326|158327|158328|158329|158330|158331|158333|158334|158335|158337|158338|158339|158340|158341|158342|158343|158344|158345|158346|158347|158348|158349|158350|158351|158352|158353|158354|158355|158356|158358|158359|158360|158361|158362|158363|158364|158365|158366|158368|158369|158370|158371|158372|158373|158374|158376|158377|158378|158379|158380|158381|158382|158383|158384|158385|158386|158387|158388|158389|158390|158391|158392|158393|158394|158395|158396|158397|158398|158399|158400|158401|158402|158403|158404|158405|158406|158407|158408|158409|158410|158411|158412|158413|158414|158416|158417|158418|158419|158420|158421|158422|158424|158425|158426|158427|158428|158429|158430|158433|158434|158436|158437|158438|158439|158440|158441|158442|158443|158444|158445|158447|158448|158449|158450|158451|158452|158453|158454|158455|158456|158457|158458|158459|158460|158461|158462|158465|158466|158467|158468|158469|158470|158471|158472|158473|158474|158475|158476|158477|158478|158479|158480|158481|158482|158483|158484|158485|158486|158487|158488|158489|158490|158491|158492|158493|158494|158495|158496|158497|158498|158499|158500|158501|158502|158503|158504|158505|158506|158507|158508|158509|158510|158511|158512|158513|158514|158515|158516|158517|158519|158520|158521|158522|158523|158524|158525|158526|158527|158528|158529|158530|158531|158532|158533|158534|158535|158536|158538|158539|158540|158541|158542|158543|158544|158545|158546|158547|158548|158549|158550|158552|158553|158554|158555|158556|158557|158559|158560|158561|158562|158563|158564|158565|158566|158567|158568|158569|158570|158571|158572|158573|158574|158575|158576|158577|158578|158579|158580|158581|158582|158583|158584|158585|158586|158587|158588|158589|158590|158591|158592|158593|158594|158595|158596|158597|158598|158599|158600|158601|158602|158603|158604|158605|158606|158607|158608|158609|158610|158612|158613|158614|158615|158616|158617|158618|158619|158620|158621|158622|158623|158624|158625|158626|158627|158628|158629|158630|158632|158634|158635|158636|158637|158638|158639|158640|158642|158643|158644|158645|158646|158647|158648|158649|158650|158651|158652|158653|158654|158655|158656|158657|158658|158659|158660|158661|158662|158663|158664|158665|158666|158667|158668|158669|158670|158671|158672|158673|158674|158675|158676|158677|158678|158679|158680|158681|158682|158683|158684|158685|158686|158687|158689|158690|158691|158692|158693|158694|158695|158696|158697|158698|158699|158700|158701|158702|158703|158704|158705|158706|158707|158708|158709|158710|158711|158712|158713|158714|158715|158716|158717|158718|158719|158720|158721|158722|158723|158724|158725|158726|158727|158728|158729|158731|158732|158734|158735|158736|158737|158738|158739|158740|158741|158742|158743|158744|158745|158746|158747|158748|158749|158750|158752|158753|158754|158755|158757|158758|158759|158760|158761|158762|158763|158764|158765|158766|158768|158769|158770|158772|158774|158775|158776|158777|158778|158779|158780|158781|158782|158783|158784|158785|158786|158787|158788|158789|158790|158791|158793|158794|158795|158796|158797|158798|158799|158800|158801|158802|158804|158805|158806|158807|158808|158809|158810|158811|158812|158815|158816|158817|158818|158819|158820|158822|158823|158824|158825|158826|158827|158828|158829|158830|158831|158832|158833|158834|158835|158836|158837|158838|158839|158840|158841|158842|158843|158845|158846|158847|158848|158849|158850|158851|158852|158853|158854|158855|158856|158857|158858|158859|158860|158861|158862|158863|158864|158865|158866|158867|158868|158869|158870|158871|158872|158873|158874|158875|158876|158877|158878|158879|158880|158881|158882|158883|158884|158885|158886|158887|158888|158889|158890|158893|158894|158895|158896|158897|158898|158899|158901|158902|158903|158904|158905|158906|158907|158908|158909|158910|158911|158914|158915|158916|158917|158918|158919|158920|158921|158922|158923|158924|158925|158926|158927|158928|158929|158931|158932|158933|158935|158936|158937|158938|158939|158940|158941|158942|158944|158945|158946|158947|158948|158949|158950|158951|158953|158954|158955|158956|158957|158958|158959|158960|158961|158962|158963|158964|158965|158966|158967|158968|158969|158970|158972|158973|158974|158975|158976|158978|158979|158980|158981|158982|158983|158984|158985|158986|158987|158989|158990|158991|158992|158993|158994|158995|158996|158997|158998|158999|159001|159002|159003|159004|159006|159007|159008|159009|159010|159011|159012|159013|159014|159015|159016|159017|159018|159019|159020|159021|159022|159023|159024|159025|159026|159027|159028|159029|159030|159031|159032|159033|159034|159035|159036|159037|159038|159039|159040|159041|159042|159043|159044|159047|159048|159049|159050|159051|159052|159053|159055|159056|159057|159058|159059|159060|159061|159064|159065|159066|159067|159068|159069|159070|159071|159072|159073|159074|159075|159076|159077|159078|159079|159080|159081|159082|159084|159085|159088|159089|159090|159091|159092|159093|159094|159095|159096|159097|159098|159099|159100|159101|159102|159103|159104|159105|159108|159110|159115|159118|159119|159121|159123|159127|159128|159129|159131|159132|159134|159135|159136|159137|159141|159142|159143|159144|159146|159147|159148|159149|159150|159151|159152|159154|159155|159157|159158|159159|159160|159161|159162|159163|159166|159168|159169|159170|159171|159172|159173|159175|159176|159177|159178|159179|159180|159181|159183|159184|159185|159186|159187|159188|159189|159190|159191|159192|159193|159194|159195|159196|159197|159198|159199|159200|159201|159202|159203|159204|159205|159206|159207|159208|159210|159211|159212|159213|159214|159215|159216|159217|159218|159219|159220|159221|159222|159223|159224|159225|159226|159227|159228|159229|159230|159231|159232|159233|159234|159235|159237|159238|159239|159240|159241|159242|159243|159244|159245|159246|159247|159249|159250|159251|159252|159253|159254|159255|159256|159263|159264|159267|159271|159272|159273|159274|159276|159277|159279|159280|159281|159282|159283|159285|159286|159287|159288|159289|159291|159293|159294|159295|159296|159297|159298|159299|159300|159301|159302|159303|159304|159305|159306|159307|159308|159309|159310|159311|159312|159313|159314|159315|159316|159317|159318|159319|159320|159321|159322|159323|159324|159325|159327|159328|159329|159330|159331|159332|159335|159336|159337|159338|159339|159340|159341|159342|159343|159344|159345|159346|159347|159348|159349|159350|159351|159352|159353|159354|159355|159356|159357|159358|159360|159361|159362|159363|159364|159365|159367|159368|159369|159370|159371|159372|159374|159376|159377|159378|159379|159380|159381|159382|159383|159384|159385|159386|159387|159388|159389|159390|159394|159395|159396|159397|159398|159399|159400|159401|159402|159403|159409|159410|159411|159412|159413|159414|159416|159417|159418|159419|159420|159421|159422|159423|159424|159425|159429|159430|159431|159432|159433|159436|159437|159438|159441|159443|159444|159445|159447|159448|159449|159450|159451|159452|159453|159454|159455|159456|159457|159458|159459|159460|159461|159463|159464|159465|159467|159468|159469|159470|159471|159472|159474|159475|159476|159477|159478|159479|159480|159481|159482|159484|159485|159490|159491|159492|159493|159495|159497|159498|159499|159500|159501|159503|159504|159505|159506|159507|159508|159509|159510|159511|159512|159513|159514|159515|159516|159517|159518|159519|159520|159521|159522|159523|159524|159525|159526|159527|159528|159529|159530|159531|159532|159533|159534|159535|159536|159537|159538|159540|159541|159542|159543|159544|159545|159546|159547|159548|159549|159550|159551|159552|159553|159554|159555|159556|159557|159558|159559|159560|159561|159562|159563|159564|159565|159569|159570|159571|159573|159575|159576|159578|159579|159580|159581|159584|159585|159586|159587|159588|159591|159592|159593|159594|159595|159596|159597|159598|159600|159601|159602|159603|159604|159605|159606|159607|159608|159609|159610|159611|159612|159613|159614|159615|159616|159617|159618|159619|159621|159622|159623|159624|159625|159626|159627|159628|159629|159630|159631|159632|159633|159639|159640|159641|159642|159643|159645|159646|159647|159648|159650|159651|159652|159653|159654|159655|159656|159657|159658|159659|159660|159661|159662|159663|159664|159665|159666|159667|159668|159669|159670|159673|159675|159677|159678|159679|159680|159681|159682|159683|159684|159685|159686|159687|159688|159689|159690|159691|159693|159694|159695|159697|159698|159701|159706|159707|159709|159710|159711|159712|159714|159715|159716|159717|159718|159719|159720|159721|159722|159723|159724|159725|159726|159727|159728|159729|159730|159731|159732|159733|159734|159735|159736|159737|159738|159739|159740|159748|159749|159750|159751|159752|159753|159754|159755|159756|159757|159758|159759|159761|159763|159764|159765|159766|159767|159768|159769|159770|159771|159772|159776|159777|159779|159780|159781|159782|159783|159784|159785|159786|159787|159790|159791|159792|159794|159795|159796|159797|159798|159799|159800|159801|159802|159806|159807|159808|159809|159810|159811|159812|159813|159814|159815|159816|159817|159818|159819|159820|159821|159822|159823|159824|159825|159826|159827|159828|159829|159830|159831|159832|159833|159834|159835|159836|159837|159840|159841|159842|159843|159844|159845|159846|159847|159850|159851|159854|159855|159856|159858|159859|159860|159863|159864|159866|159867|159868|159869|159872|159873|159875|159876|159877|159878|159879|159880|159881|159882|159883|159884|159885|159886|159887|159889|159890|159891|159892|159893|159894|159895|159896|159897|159898|159899|159900|159902|159903|159904|159905|159906|159907|159908|159909|159913|159914|159916|159917|159918|159919|159920|159921|159922|159923|159924|159925|159926|159927|159928|159929|159930|159931|159932|159933|159934|159935|159936|159938|159939|159940|159941|159942|159943|159944|159946|159947|159948|159949|159950|159951|159952|159953|159954|159955|159956|159957|159959|159960|159961|159962|159963|159964|159966|159967|159968|159969|159970|159971|159972|159973|159974|159975|159976|159977|159979|159981|159983|159984|159985|159986|159987|159989|159990|159991|159992|159993|159995|159996|159997|159998|159999|160000|160001|160002|160003|160004|160005|160006|160007|160008|160009|160010|160011|160013|160014|160015|160016|160017|160018|160019|160020|160021|160022|160023|160024|160025|160026|160027|160028|160029|160030|160031|160032|160033|160035|160036|160037|160038|160039|160040|160041|160042|160043|160044|160045|160046|160048|160056|160057|160058|160059|160060|160061|160067|160068|160069|160070|160072|160073|160074|160075|160076|160078|160079|160080|160081|160082|160083|160084|160085|160086|160087|160088|160089|160090|160091|160092|160093|160094|160095|160096|160097|160099|160100|160101|160102|160103|160104|160105|160106|160107|160109|160110|160111|160112|160113|160114|160118|160119|160122|160123|160124|160125|160126|160127|160128|160130|160131|160132|160133|160134|160136|160137|160138|160139|160140|160141|160142|160143|160144|160149|160150|160151|160152|160153|160154|160155|160156|160157|160158|160159|160160|160161|160162|160163|160164|160165|160166|160167|160168|160169|160170|160171|160172|160173|160174|160175|160176|160177|160179|160180|160181|160183|160184|160185|160186|160187|160188|160189|160190|160191|160192|160193|160194|160195|160196|160199|160200|160201|160202|160203|160204|160205|160206|160207|160208|160211|160212|160213|160214|160215|160216|160217|160218|160221|160222|160223|160224|160225|160226|160227|160228|160229|160230|160231|160232|160233|160234|160235|160237|160238|160239|160240|160241|160242|160243|160245|160246|160248|160249|160250|160253|160254|160255|160256|160257|160258|160260|160261|160263|160264|160265|160266|160267|160270|160271|160272|160273|160274|160275|160276|160277|160278|160279|160280|160281|160282|160283|160284|160285|160286|160287|160288|160289|160290|160291|160292|160293|160294|160295|160296|160297|160298|160299|160300|160301|160303|160305|160306|160307|160308|160309|160310|160311|160312|160313|160314|160315|160316|160317|160318|160319|160320|160321|160322|160325|160328|160329|160333|160334|160335|160340|160341|160342|160343|160344|160345|160346|160347|160348|160349|160350|160351|160352|160353|160355|160356|160357|160358|160359|160360|160361|160362|160363|160364|160365|160366|160367|160368|160369|160370|160371|160373|160375|160376|160377|160378|160379|160380|160381|160382|160383|160384|160385|160386|160387|160388|160389|160390|160391|160392|160393|160394|160395|160397|160398|160399|160400|160401|160402|160403|160404|160405|160406|160408|160409|160410|160411|160412|160413|160414|160415|160416|160417|160418|160419|160420|160421|160422|160423|160424|160425|160426|160427|160428|160429|160430|160434|160435|160436|160437|160438|160439|160440|160441|160442|160443|160444|160445|160446|160448|160449|160451|160452|160453|160454|160455|160456|160457|160458|160459|160460|160461|160463|160464|160465|160466|160467|160468|160469|160470|160471|160472|160473|160474|160475|160476|160477|160478|160479|160480|160481|160482|160483|160484|160485|160486|160487|160488|160489|160491|160492|160493|160494|160495|160496|160497|160498|160499|160500|160501|160502|160503|160504|160505|160506|160507|160508|160509|160510|160511|160512|160515|160517|160518|160519|160520|160521|160522|160523|160524|160525|160526|160527|160528|160529|160530|160531|160532|160533|160534|160535|160536|160537|160538|160539|160540|160541|160542|160545|160546|160547|160551|160552|160553|160557|160558|160559|160560|160561|160563|160564|160566|160567|160568|160569|160570|160571|160572|160573|160574|160577|160578|160579|160580|160581|160584|160585|160586|160587|160588|160589|160590|160591|160592|160594|160595|160596|160597|160598|160599|160600|160602|160603|160604|160605|160606|160607|160608|160609|160610|160611|160612|160613|160614|160615|160616|160617|160618|160619|160620|160621|160622|160623|160624|160625|160626|160627|160628|160629|160630|160631|160632|160633|160634|160635|160636|160637|160638|160639|160640|160641|160642|160643|160644|160645|160646|160647|160648|160649|160650|160651|160652|160653|160654|160655|160656|160657|160661|160662|160663|160664|160665|160667|160668|160669|160670|160671|160672|160673|160674|160675|160676|160677|160678|160679|160680|160681|160682|160683|160684|160685|160686|160687|160688|160689|160690|160691|160692|160693|160694|160695|160698|160699|160700|160701|160702|160703|160704|160705|160706|160707|160708|160709|160710|160711|160712|160714|160715|160716|160717|160718|160719|160720|160724|160725|160726|160727|160728|160729|160731|160732|160733|160734|160735|160736|160737|160738|160739|160740|160741|160742|160743|160744|160745|160746|160749|160750|160751|160753|160754|160755|160756|160757|160759|160760|160761|160762|160763|160764|160765|160766|160768|160769|160772|160773|160774|160775|160776|160777|160781|160782|160783|160784|160785|160786|160787|160788|160789|160790|160791|160792|160793|160794|160795|160796|160797|160798|160799|160800|160801|160802|160803|160807|160808|160809|160810|160812|160813|160814|160815|160816|160817|160819|160820|160821|160822|160823|160824|160825|160826|160827|160828|160829|160830|160831|160832|160833|160834|160835|160836|160837|160838|160839|160840|160841|160842|160843|160844|160845|160846|160847|160848|160849|160854|160856|160857|160861|160865|160867|160869|160871|160872|160874|160875|160876|160878|160879|160881|160882|160883|160884|160891|160894|160895|160896|160900|160901|160904|160906|160907|160909|160910|160911|160912|160913|160914|160915|160916|160918|160919|160920|160922|160923|160924|160927|160928|160929|160931|160932|160933|160934|160936|160937|160940|160941|160942|160943|160944|160945|160946|160947|160948|160950|160951|160952|160957|160958|160959|160961|160964|160965|160966|160968|160969|160970|160971|160972|160973|160974|160975|160976|160977|160978|160979|160980|160982|160983|160984|160985|160986|160987|160989|160990|160991|160992|160993|160994|160995|160996|160997|160998|160999|161000|161001|161002|161003|161004|161005|161006|161007|161008|161009|161010|161011|161012|161013|161014|161015|161016|161017|161018|161019|161020|161021|161023|161024|161025|161026|161027|161028|161029|161030|161032|161033|161034|161035|161036|161037|161038|161039|161040|161041|161042|161044|161045|161046|161049|161050|161051|161052|161054|161055|161056|161057|161058|161059|161060|161061|161062|161063|161064|161065|161066|161067|161068|161069|161070|161071|161072|161073|161074|161075|161076|161077|161078|161079|161080|161081|161082|161084|161085|161086|161087|161088|161089|161090|161092|161093|161094|161095|161096|161097|161098|161099|161100|161101|161102|161103|161104|161105|161106|161107|161108|161109|161110|161111|161112|161113|161114|161115|161116|161117|161118|161119|161120|161121|161122|161123|161124|161125|161126|161127|161128|161129|161130|161131|161132|161133|161134|161135|161136|161138|161139|161140|161141|161142|161143|161144|161145|161146|161147|161148|161149|161150|161151|161152|161153|161154|161155|161156|161157|161158|161159|161160|161161|161162|161163|161164|161165|161167|161168|161169|161170|161171|161172|161173|161174|161176|161177|161178|161179|161180|161181|161182|161183|161184|161185|161186|161187|161188|161189|161190|161191|161192|161193|161194|161195|161196|161197|161198|161199|161200|161201|161202|161203|161204|161205|161206|161207|161208|161209|161210|161211|161212|161213|161214|161215|161216|161217|161218|161219|161220|161221|161222|161223|161225|161226|161227|161228|161229|161230|161231|161232|161234|161235|161236|161237|161238|161239|161240|161241|161242|161243|161244|161245|161246|161247|161248|161249|161250|161251|161252|161253|161254|161255|161256|161257|161258|161259|161260|161261|161262|161263|161264|161265|161266|161267|161268|161269|161270|161273|161274|161275|161276|161278|161280|161282|161283|161285|161286|161287|161288|161289|161290|161291|161292|161293|161294|161295|161296|161297|161298|161299|161300|161301|161302|161303|161304|161305|161306|161307|161308|161309|161310|161311|161312|161313|161314|161315|161316|161317|161318|161319|161320|161321|161322|161323|161324|161325|161326|161327|161328|161329|161330|161331|161332|161333|161334|161335|161336|161337|161338|161339|161340|161341|161342|161343|161344|161345|161347|161348|161349|161350|161351|161352|161353|161354|161355|161356|161357|161358|161359|161360|161361|161362|161363|161364|161365|161366|161367|161368|161369|161370|161371|161372|161373|161374|161375|161376|161377|161378|161379|161380|161381|161382|161383|161384|161385|161386|161387|161388|161389|161390|161391|161392|161393|161394|161395|161396|161397|161398|161399|161400|161401|161402|161403|161404|161405|161406|161407|161408|161409|161410|161411|161412|161413|161414|161415|161416|161417|161418|161419|161420|161421|161422|161423|161424|161425|161426|161427|161428|161429|161430|161431|161432|161433|161434|161435|161436|161437|161438|161439|161440|161441|161442|161443|161444|161445|161446|161447|161448|161449|161450|161453|161454|161455|161459|161460|161461|161463|161464|161465|161466|161467|161468|161469|161470|161471|161472|161473|161474|161475|161476|161477|161478|161479|161480|161481|161482|161483|161484|161485|161486|161487|161488|161489|161491|161492|161493|161494|161499|161500|161501|161502|161503|161504|161505|161506|161507|161508|161509|161515|161516|161517|161519|161520|161521|161522|161524|161525|161526|161527|161528|161529|161530|161531|161532|161533|161534|161535|161536|161537|161538|161539|161540|161541|161542|161543|161544|161546|161547|161548|161549|161550|161551|161552|161553|161554|161555|161556|161557|161558|161559|161560|161561|161562|161563|161564|161565|161566|161567|161568|161569|161570|161571|161572|161573|161574|161575|161576|161577|161578|161579|161580|161581|161582|161583|161584|161585|161586|161587|161588|161589|161590|161591|161592|161593|161594|161595|161596|161597|161598|161599|161600|161601|161602|161603|161604|161605|161606|161607|161608|161609|161610|161611|161612|161613|161614|161615|161616|161617|161618|161619|161620|161621|161622|161623|161624|161625|161626|161627|161628|161629|161630|161631|161632|161633|161634|161635|161636|161637|161638|161639|161640|161641|161642|161643|161644|161645|161646|161647|161648|161649|161650|161651|161652|161653|161654|161655|161656|161657|161658|161659|161660|161661|161662|161663|161664|161665|161666|161667|161668|161669|161670|161671|161672|161673|161674|161675|161676|161677|161678|161679|161680|161681|161682|161683|161684|161685|161686|161687|161688|161689|161690|161691|161692|161693|161694|161695|161696|161697|161698|161699|161700|161701|161702|161703|161704|161705|161706|161707|161708|161709|161711|161712|161713|161714|161715|161717|161718|161720|161721|161722|161723|161724|161728|161730|161733|161734|161735|161736|161737|161738|161741|161742|161743|161744|161745|161746|161747|161748|161749|161750|161751|161752|161753|161754|161755|161756|161757|161758|161759|161760|161761|161762|161763|161764|161765|161766|161767|161771|161772|161773|161774|161775|161781|161782|161783|161784|161785|161790|161791|161794|161795|161796|161800|161801|161802|161803|161808|161809|161810|161812|161813|161814|161815|161816|161817|161818|161819|161821|161822|161826|161827|161828|161829|161831|161832|161833|161834|161835|161836|161837|161838|161839|161840|161841|161842|161843|161844|161845|161846|161848|161849|161850|161855|161856|161857|161859|161860|161862|161863|161864|161866|161868|161869|161871|161872|161875|161876|161879|161880|161881|161882|161883|161884|161885|161886|161887|161888|161889|161890|161891|161892|161893|161894|161895|161896|161897|161898|161899|161900|161901|161908|161909|161910|161911|161912|161919|161920|161921|161922|161923|161924|161932|161933|161935|161936|161937|161939|161941|161942|161943|161944|161945|161946|161947|161948|161949|161957|161960|161961|161962|161963|161964|161966|161967|161970|161971|161972|161975|161976|161977|161978|161979|161981|161983|161984|161987|161988|161989|161990|161993|161995|161996|161997|161998|161999|162000|162001|162002|162003|162004|162005|162006|162007|162008|162009|162010|162012|162017|162018|162019|162020|162021|162022|162027|162028|162029|162030|162032|162034|162035|162036|162037|162038|162039|162040|162041|162042|162044|162045|162048|162049|162050|162052|162053|162054|162055|162058|162059|162061|162062|162063|162066|162067|162073|162076|162077|162082|162083|162084|162085|162086|162087|162088|162089|162090|162091|162092|162095|162096|162097|162099|162100|162101|162102|162103|162104|162105|162106|162107|162108|162110|162113|162114|162115|162117|162118|162120|162121|162122|162123|162125|162127|162129|162130|162133|162134|162135|162136|162139|162140|162141|162146|162147|162148|162149|162150|162151|162152|162153|162154|162155|162156|162157|162158|162159|162160|162161|162162|162163|162165|162166|162167|162168|162169|162170|162171|162172|162173|162174|162175|162176|162177|162178|162179|162180|162181|162182|162183|162184|162185|162186|162187|162188|162189|162190|162191|162192|162193|162194|162195|162196|162197|162198|162199|162200|162201|162202|162203|162204|162205|162206|162207|162208|162209|162210|162211|162212|162213|162214|162215|162216|162217|162218|162219|162220|162221|162222|162223|162224|162225|162226|162227|162228|162229|162230|162231|162232|162233|162234|162235|162236|162237|162238|162239|162240|162241|162242|162243|162245|162246|162247|162248|162249|162250|162251|162252|162253|162254|162255|162256|162257|162258|162259|162260|162261|162262|162263|162265|162266|162267|162268|162269|162270|162271|162272|162273|162274|162275|162276|162277|162278|162279|162280|162281|162282|162283|162284|162285|162287|162288|162289|162290|162291|162292|162293|162294|162295|162296|162297|162298|162299|162300|162301|162302|162303|162304|162305|162307|162308|162309|162310|162311|162312|162313|162314|162315|162316|162317|162318|162319|162320|162321|162322|162323|162324|162325|162326|162327|162328|162329|162330|162331|162332|162333|162334|162335|162336|162337|162338|162339|162340|162341|162342|162343|162344|162345|162346|162347|162348|162349|162350|162352|162353|162354|162355|162356|162357|162358|162359|162360|162361|162362|162364|162365|162366|162367|162368|162369|162370|162371|162372|162373|162374|162375|162376|162377|162378|162379|162380|162381|162382|162383|162384|162385|162386|162388|162389|162390|162391|162392|162393|162394|162396|162397|162398|162399|162400|162401|162402|162403|162404|162405|162406|162407|162408|162409|162410|162411|162412|162413|162414|162415|162416|162417|162418|162419|162420|162421|162422|162423|162424|162425|162426|162427|162428|162429|162430|162431|162432|162433|162434|162435|162436|162437|162438|162439|162440|162441|162442|162443|162444|162446|162448|162450|162451|162454|162455|162456|162459|162461|162462|162463|162464|162465|162466|162467|162468|162470|162472|162473|162475|162476|162480|162482|162483|162484|162485|162486|162489|162491|162493|162494|162495|162496|162498|162499|162500|162501|162502|162503|162504|162505|162506|162507|162508|162509|162510|162511|162512|162513|162514|162515|162516|162517|162518|162520|162521|162522|162523|162524|162525|162526|162527|162528|162529|162530|162531|162532|162533|162534|162535|162536|162538|162539|162540|162541|162542|162543|162544|162545|162546|162547|162548|162549|162550|162551|162552|162553|162554|162555|162556|162557|162558|162559|162564|162565|162566|162567|162568|162569|162570|162571|162572|162573|162574|162575|162576|162577|162578|162579|162580|162581|162582|162583|162584|162585|162586|162587|162588|162589|162590|162591|162592|162593|162594|162595|162596|162597|162598|162599|162600|162601|162602|162603|162604|162605|162606|162607|162608|162609|162610|162611|162612|162613|162614|162615|162616|162617|162618|162621|162622|162623|162624|162625|162626|162627|162628|162629|162630|162631|162632|162633|162634|162635|162636|162637|162639|162640|162644|162645|162646|162647|162648|162649|162650|162651|162652|162653|162654|162655|162656|162657|162658|162659|162660|162661|162662|162663|162664|162665|162666|162667|162668|162669|162670|162671|162672|162673|162674|162675|162676|162677|162678|162679|162680|162681|162682|162683|162684|162685|162686|162687|162688|162690|162691|162692|162694|162695|162696|162697|162698|162699|162700|162701|162702|162703|162704|162705|162706|162707|162708|162709|162710|162711|162712|162713|162714|162715|162716|162717|162718|162719|162720|162721|162722|162723|162724|162725|162726|162727|162728|162729|162730|162731|162732|162733|162734|162735|162736|162737|162738|162739|162740|162741|162742|162743|162744|162745|162746|162747|162748|162749|162750|162751|162752|162753|162754|162755|162756|162757|162758|162759|162760|162761|162762|162763|162764|162765|162766|162767|162768|162769|162770|162771|162772|162773|162774|162775|162776|162777|162778|162779|162780|162781|162782|162783|162784|162785|162786|162787|162788|162789|162790|162791|162792|162793|162794|162795|162796|162797|162798|162799|162800|162801|162802|162803|162804|162805|162806|162807|162808|162809|162810|162811|162812|162813|162814|162815|162816|162817|162818|162819|162820|162821|162822|162823|162824|162825|162826|162827|162828|162829|162830|162831|162832|162833|162834|162835|162836|162837|162838|162839|162840|162841|162842|162843|162844|162845|162846|162847|162848|162849|162850|162851|162852|162853|162854|162855|162856|162857|162858|162859|162860|162861|162862|162863|162864|162865|162866|162867|162868|162869|162870|162871|162872|162873|162874|162875|162876|162877|162878|162879|162880|162881|162882|162883|162884|162885|162886|162887|162889|162890|162891|162892|162893|162895|162896|162897|162898|162900|162901|162902|162910|162912|162915|162916|162917|162919|162920|162921|162923|162927|162928|162929|162930|162934|162935|162936|162942|162943|162944|162945|162946|162947|162948|162950|162951|162954|162955|162957|162958|162959|162960|162961|162962|162963|162967|162968|162969|162971|162972|162973|162975|162976|162977|162979|162980|162981|162982|162983|162984|162985|162986|162988|162990|162991|162992|162993|162996|162997|162999|163000|163001|163003|163004|163005|163006|163007|163009|163010|163011|163013|163014|163015|163016|163018|163021|163022|163027|163028|163030|163031|163032|163033|163034|163035|163036|163037|163038|163039|163040|163043|163045|163046|163048|163053|163054|163055|163056|163057|163059|163060|163061|163062|163065|163066|163068|163069|163070|163071|163072|163075|163076|163077|163078|163080|163081|163082|163083|163085|163086|163087|163088|163089|163090|163092|163093|163094|163100|163102|163103|163104|163106|163108|163110|163111|163112|163113|163115|163116|163120|163121|163122|163124|163125|163126|163130|163131|163132|163136|163137|163141|163145|163146|163147|163148|163150|163153|163154|163155|163158|163159|163164|163165|163166|163167|163168|163170|163174|163175|163177|163178|163179|163181|163182|163183|163184|163185|163186|163187|163188|163189|163190|163192|163193|163195|163197|163198|163199|163200|163201|163203|163204|163205|163206|163207|163208|163210|163213|163217|163218|163219|163221|163226|163227|163228|163232|163233|163236|163237|163238|163239|163241|163242|163243|163244|163245|163247|163249|163250|163252|163253|163256|163257|163259|163260|163261|163262|163265|163266|163269|163271|163274|163275|163276|163280|163281|163283|163284|163286|163287|163288|163289|163290|163291|163293|163294|163295|163298|163299|163300|163302|163304|163305|163308|163309|163310|163311|163312|163314|163316|163317|163318|163322|163323|163324|163325|163326|163327|163328|163329|163333|163334|163337|163338|163340|163342|163343|163344|163345|163346|163347|163349|163350|163351|163352|163353|163355|163359|163361|163362|163363|163367|163368|163370|163372|163373|163376|163379|163380|163381|163382|163383|163384|163385|163386|163389|163390|163392|163393|163394|163395|163396|163397|163400|163401|163402|163403|163404|163405|163407|163408|163412|163413|163414|163416|163417|163418|163419|163422|163423|163424|163427|163429|163430|163431|163432|163433|163434|163435|163436|163438|163439|163441|163442|163445|163446|163449|163450|163453|163457|163459|163462|163463|163464|163465|163466|163467|163468|163469|163470|163471|163472|163473|163474|163475|163476|163477|163478|163480|163481|163482|163484|163485|163487|163488|163491|163492|163493|163494|163495|163496|163497|163498|163499|163500|163501|163502|163503|163504|163506|163507|163509|163511|163512|163516|163517|163518|163519|163521|163522|163523|163527|163534|163535|163538|163539|163540|163541|163542|163544|163545|163546|163548|163551|163556|163557|163559|163561|163562|163563|163564|163565|163566|163567|163568|163569|163571|163572|163573|163576|163579|163580|163582|163583|163584|163588|163589|163592|163593|163594|163597|163601|163603|163606|163608|163609|163611|163615|163618|163624|163628|163629|163631|163632|163633|163634|163635|163636|163637|163639|163644|163645|163647|163648|163649|163650|163651|163652|163656|163657|163659|163660|163661|163663|163664|163665|163666|163667|163668|163674|163675|163676|163681|163683|163684|163685|163687|163688|163689|163690|163691|163692|163698|163699|163700|163701|163703|163704|163705|163706|163708|163711|163713|163714|163717|163719|163720|163722|163723|163724|163725|163726|163729|163730|163732|163733|163735|163736|163737|163738|163739|163740|163741|163744|163745|163747|163748|163749|163750|163751|163752|163754|163755|163756|163757|163761|163762|163764|163767|163768|163769|163770|163772|163773|163774|163775|163776|163777|163778|163780|163781|163782|163783|163784|163785|163786|163787|163788|163789|163791|163792|163793|163795|163796|163798|163800|163802|163806|163807|163812|163814|163815|163816|163818|163819|163820|163821|163822|163823|163824|163825|163826|163827|163831|163832|163833|163834|163835|163839|163840|163841|163846|163848|163849|163850|163855|163856|163857|163859|163860|163861|163862|163863|163866|163868|163869|163870|163871|163872|163874|163875|163877|163878|163879|163880|163883|163886|163888|163890|163891|163893|163896|163897|163898|163903|163904|163905|163906|163907|163908|163909|163910|163911|163912|163913|163917|163925|163926|163927|163928|163929|163931|163932|163934|163937|163938|163939|163940|163941|163942|163943|163944|163945|163946|163947|163950|163951|163952|163953|163954|163957|163960|163961|163964|163965|163968|163970|163971|163972|163973|163974|163975|163976|163977|163980|163981|163983|163985|163986|163987|163989|163990|163991|163993|163994|163997|163998|164000|164001|164002|164003|164004|164005|164009|164010|164011|164013|164014|164015|164016|164017|164018|164020|164021|164022|164023|164024|164026|164029|164031|164032|164033|164034|164035|164037|164039|164040|164043|164048|164049|164050|164051|164052|164053|164054|164055|164056|164057|164058|164059|164060|164061|164062|164063|164064|164065|164066|164067|164068|164069|164070|164071|164079|164080|164081|164082|164083|164084|164085|164086|164087|164088|164089|164090|164091|164092|164093|164094|164095|164096|164097|164098|164099|164100|164101|164102|164103|164104|164105|164106|164107|164108|164109|164110|164111|164112|164113|164114|164115|164116|164117|164118|164119|164120|164121|164122|164123|164124|164125|164126|164127|164128|164129|164130|164131|164132|164133|164134|164135|164136|164137|164138|164139|164140|164141|164142|164143|164144|164145|164146|164147|164148|164149|164150|164151|164152|164153|164154|164155|164156|164157|164158|164159|164160|164161|164162|164163|164164|164165|164166|164167|164168|164169|164170|164171|164172|164173|164174|164175|164176|164177|164178|164179|164180|164181|164182|164183|164184|164185|164186|164187|164188|164189|164190|164191|164192|164193|164194|164195|164196|164197|164198|164199|164200|164201|164202|164203|164204|164205|164206|164207|164208|164209|164210|164211|164212|164213|164214|164215|164216|164217|164218|164219|164220|164221|164222|164223|164224|164225|164226|164227|164228|164229|164230|164231|164232|164233|164234|164235|164236|164237|164238|164239|164240|164241|164242|164243|164244|164245|164246|164247|164248|164249|164250|164251|164252|164253|164254|164255|164256|164257|164258|164259|164260|164261|164262|164263|164264|164265|164266|164267|164268|164269|164270|164271|164272|164273|164274|164275|164276|164277|164278|164279|164280|164281|164282|164283|164284|164285|164286|164287|164288|164289|164290|164291|164292|164293|164294|164295|164296|164297|164298|164299|164300|164301|164302|164303|164304|164305|164306|164307|164308|164309|164310|164311|164312|164313|164314|164315|164316|164317|164318|164319|164320|164321|164322|164323|164324|164325|164326|164327|164328|164329|164330|164331|164332|164333|164334|164335|164336|164337|164338|164339|164340|164341|164342|164343|164344|164345|164346|164347|164348|164349|164350|164351|164352|164353|164354|164355|164356|164357|164358|164359|164360|164361|164362|164363|164364|164365|164366|164367|164368|164369|164370|164371|164372|164373|164374|164375|164376|164377|164378|164379|164380|164381|164382|164383|164384|164385|164386|164387|164388|164389|164390|164391|164392|164393|164394|164395|164396|164397|164398|164399|164400|164401|164402|164403|164404|164405|164406|164407|164408|164409|164410|164411|164412|164413|164414|164415|164416|164417|164418|164419|164420|164421|164422|164423|164424|164425|164426|164427|164428|164429|164430|164431|164432|164433|164434|164435|164436|164437|164438|164439|164440|164441|164442|164443|164444|164445|164446|164447|164448|164449|164450|164451|164452|164453|164454|164455|164456|164457|164458|164459|164460|164461|164462|164463|164464|164465|164466|164467|164468|164469|164470|164471|164472|164473|164474|164475|164476|164477|164478|164479|164480|164481|164482|164483|164484|164485|164486|164487|164488|164489|164490|164491|164492|164495|164496|164497|164498|164499|164500|164501|164502|164503|164504|164505|164506|164507|164508|164509|164510|164511|164512|164513|164514|164515|164516|164517|164518|164519|164520|164521|164522|164523|164524|164525|164526|164527|164528|164529|164530|164531|164532|164533|164534|164535|164536|164537|164538|164539|164540|164541|164542|164543|164544|164545|164546|164547|164548|164549|164550|164551|164552|164553|164554|164555|164556|164557|164558|164559|164560|164561|164562|164563|164564|164565|164566|164567|164568|164569|164570|164571|164572|164573|164574|164575|164576|164577|164578|164579|164580|164581|164582|164583|164584|164585|164586|164587|164588|164589|164590|164591|164592|164593|164594|164595|164596|164597|164598|164599|164600|164601|164602|164603|164604|164605|164606|164607|164608|164609|164610|164611|164612|164613|164614|164615|164616|164617|164618|164619|164620|164621|164622|164623|164624|164625|164626|164627|164628|164629|164630|164631|164632|164633|164634|164635|164636|164637|164638|164639|164640|164641|164642|164643|164644|164645|164647|164648|164649|164650|164651|164652|164653|164654|164655|164656|164657|164658|164659|164660|164661|164662|164663|164664|164665|164666|164667|164669|164670|164671|164672|164673|164674|164675|164676|164677|164678|164679|164680|164681|164682|164683|164684|164685|164686|164687|164688|164689|164690|164691|164692|164693|164694|164695|164696|164697|164698|164699|164700|164701|164702|164703|164704|164705|164706|164707|164708|164709|164710|164711|164712|164713|164714|164715|164716|164717|164718|164719|164720|164721|164722|164723|164724|164725|164726|164727|164728|164729|164730|164731|164732|164733|164734|164735|164736|164737|164738|164739|164740|164741|164742|164743|164744|164745|164747|164748|164749|164750|164751|164752|164753|164754|164755|164756|164757|164758|164759|164760|164761|164762|164763|164764|164765|164766|164767|164768|164769|164770|164771|164772|164773|164774|164775|164776|164777|164778|164779|164780|164781|164782|164783|164784|164785|164786|164787|164788|164789|164790|164791|164792|164793|164794|164795|164796|164797|164798|164799|164800|164801|164802|164803|164804|164805|164806|164807|164808|164809|164810|164811|164812|164813|164814|164815|164816|164817|164818|164819|164820|164821|164822|164823|164824|164825|164826|164827|164828|164829|164830|164831|164832|164833|164834|164835|164836|164837|164838|164839|164840|164841|164842|164843|164844|164845|164846|164847|164848|164849|164850|164851|164852|164853|164854|164855|164856|164857|164858|164859|164860|164861|164862|164863|164864|164865|164866|164867|164868|164869|164870|164871|164872|164873|164874|164875|164876|164877|164878|164880|164881|164882|164883|164884|164885|164886|164887|164888|164889|164890|164891|164892|164893|164894|164895|164896|164897|164898|164899|164900|164901|164902|164903|164904|164905|164906|164907|164908|164909|164910|164911|164912|164913|164914|164915|164916|164917|164918|164919|164920|164921|164922|164923|164924|164925|164926|164927|164928|164929|164930|164931|164932|164933|164934|164935|164936|164937|164938|164939|164940|164941|164942|164943|164944|164945|164946|164947|164948|164949|164950|164951|164952|164953|164954|164955|164956|164957|164958|164959|164960|164961|164962|164963|164964|164965|164966|164967|164968|164969|164970|164971|164972|164973|164974|164975|164976|164977|164978|164979|164980|164981|164982|164983|164984|164985|164986|164987|164988|164989|164990|164991|164992|164993|164994|164995|164996|164997|164998|164999|165000|165001|165002|165003|165004|165005|165006|165007|165008|165009|165010|165011|165012|165013|165014|165015|165016|165017|165018|165019|165020|165021|165022|165023|165024|165025|165026|165027|165028|165029|165030|165031|165032|165033|165034|165035|165036|165037|165038|165039|165040|165041|165042|165043|165044|165045|165046|165047|165048|165049|165050|165051|165052|165053|165054|165055|165056|165057|165058|165059|165060|165061|165062|165063|165064|165065|165066|165067|165068|165069|165070|165071|165072|165073|165074|165075|165076|165077|165078|165079|165080|165081|165082|165083|165084|165085|165086|165087|165088|165089|165090|165091|165092|165093|165094|165095|165096|165097|165098|165099|165100|165101|165102|165103|165104|165105|165106|165107|165108|165109|165110|165111|165112|165113|165114|165115|165116|165117|165118|165119|165120|165121|165122|165123|165124|165125|165126|165127|165128|165129|165130|165131|165132|165133|165134|165135|165136|165137|165138|165139|165140|165141|165142|165143|165144|165145|165146|165147|165148|165149|165150|165151|165152|165153|165154|165155|165156|165157|165158|165159|165160|165161|165162|165163|165164|165165|165166|165167|165168|165169|165170|165171|165172|165173|165174|165175|165176|165177|165178|165179|165180|165181|165182|165183|165184|165185|165186|165187|165188|165189|165190|165191|165192|165193|165194|165195|165196|165197|165198|165199|165200|165201|165202|165203|165204|165205|165206|165207|165208|165209|165210|165211|165212|165213|165214|165215|165216|165217|165218|165219|165220|165221|165222|165223|165224|165225|165226|165227|165228|165229|165230|165231|165232|165233|165234|165235|165236|165237|165238|165239|165240|165241|165242|165243|165244|165245|165246|165247|165248|165249|165250|165251|165252|165253|165254|165255|165256|165257|165258|165259|165260|165261|165262|165263|165264|165265|165266|165267|165268|165269|165270|165271|165272|165273|165274|165275|165276|165277|165278|165279|165280|165281|165282|165283|165284|165285|165286|165287|165288|165289|165290|165291|165292|165293|165294|165295|165296|165297|165298|165299|165300|165301|165302|165303|165304|165305|165306|165307|165308|165309|165310|165311|165312|165313|165314|165315|165316|165317|165318|165319|165320|165321|165322|165323|165324|165325|165326|165327|165328|165329|165330|165331|165332|165333|165334|165335|165336|165337|165338|165339|165340|165341|165342|165343|165344|165345|165346|165347|165348|165349|165350|165351|165352|165353|165354|165355|165356|165357|165358|165359|165360|165361|165362|165363|165364|165365|165366|165367|165368|165369|165370|165371|165372|165373|165374|165375|165376|165377|165378|165379|165380|165381|165382|165384|165385|165386|165387|165388|165389|165390|165391|165392|165393|165394|165395|165396|165397|165398|165399|165400|165401|165402|165403|165404|165405|165406|165407|165408|165409|165410|165411|165412|165413|165414|165415|165416|165417|165418|165419|165420|165421|165422|165423|165424|165425|165426|165427|165428|165429|165430|165431|165432|165433|165434|165435|165436|165437|165438|165439|165440|165441|165442|165443|165444|165445|165446|165447|165448|165449|165450|165451|165452|165453|165454|165455|165456|165457|165458|165459|165460|165461|165462|165463|165464|165465|165466|165467|165468|165469|170625|170626|170636|170640|170641|170642|170645|170646|170647|170648|170651|170654|170665|170666|170667|170674|170675|170677|170680|170682|170683|170684|170685|170686|170687|170688|170689|170690|170691|170692|170693|170696|170698|170706|170707|170708|170709|170710|170715|170718|170722|170723|170724|170725|170727|170728|170729|170730|170733|170734|170735|170737|170741|170742|170752|170753|170754|170755|170756|170757|170758|170759|170760|170761|170762|170763|170764|170765|170766|170767|170768|170769|170770|170771|170772|170773|170774|170775|170776|170777|170778|170779|170780|170781|170782|170783|170784|170785|170786|170787|170788|170789|170790|170791|170792|170793|170794|170795|170796|170797|170798|170799|170800|170801|170802|170803|170804|170805|170806|170807|170808|170809|170810|170811|170812|170813|170814|170815|170816|170817|170818|170819|170820|170821|170822|170823|170824|170825|170826|170827|170828|170829|170830|170831|170832|170833|170834|170835|170836|170837|170838|170839|170840|170841|170842|170843|170844|170845|170846|170847|170848|170849|170850|170851|170852|170853|170854|170855|170856|170857|170858|170859|170860|170861|170862|170863|170864|170865|170866|170867|170868|170869|170870|170871|170872|170873|170874|170875|170876|170877|170878|170879|170880|170881|170882|170884|170885|170886|170887|170888|170889|170890|170891|170892|170893|170894|170895|170896|170897|170898|170899|170900|170901|170902|170903|170904|170905|170906|170907|170908|170909|170910|170911|170912|170913|170914|170915|170916|170917|170918|170919|170920|170921|170922|170923|170924|170925|170926|170927|170928|170929|170930|170931|170932|170933|170934|170935|171854|173631|176682|178472|179482|179700|185724|185725|185726|185727|185728|185729|185730|187098|187099|188069|190190|198655|198656|198657|198658|198659|198660|198661|198662|198663|198664|198665|198666|198667|198668|198669|198670|198671|198672|198673|198674|198675|198676|198677|198678|198679|198680|198681|199036|199825|199826|199827|199828|199829|214205|216066|216067|216068|216069|216070|216071|216072|216073|216074|216075|216076|216077|216078|216079|216080|216081|216082|216083|216084|216085|216086|216087|216088|216089|216090|216091|216092|216093|216094|216095|216096|216097|216098|223672|223673|223674|223675|223676|223677|223678|223679|223680|223681|223682|223683|223684|238515|243946|243947|243948|243950|243951|243952|243954|243957|247369|247370|247371|247372|247373|247374|247375|247376|247377|247378|247379|247380|247381|247382|247383|247384|247385|247386|247780|247781|247782|247783|247784|247785|247786|247787|247788|247789|247790|247791|247792|247793|247794|247795|247796|247797|247798|247799|247800|247801|247802|247803|247804|247805|247806|247807|247808|247809|247810|247811|247812|247813|247814|247815|247816|247817|247818|247819|247820|247821|247822|247823|247824|247825|247826|247827|247828|247829|247830|247831|247832|247833|247834|247835|247836|247837|247838|247839|247840|247841|247842|247843|247844|247845|247846|247847|247848|247849|247850|247851|247852|247853|247854|247855|247856|247857|247858|247859|247860|247861|247862|247863|247864|247865|247866|247867|247868|247869|247870|247871|247872|247873|247874|247875|247876|247877|247878|247879|247880|247881|247882|247883|247884|247885|247886|247887|247888|247889|247890|247891|247892|247893|247894|247895|247896|247897|247898|247899|247900|247901|247902|247903|247904|247905|247906|247907|247908|247909|247910|247911|247912|247913|247914|247915|247916|247917|247918|247919|247920|247921|247922|247923|247924|247925|247926|247927|247928|247929|247930|247931|247932|247933|247934|247935|247936|247937|247938|247939|247940|247941|247942|247943|247944|247945|247946|247947|247948|247949|247950|247951|247952|247953|247954|247955|247956|247957|247958|247959|247960|247961|247962|247963|247964|247965|247966|247967|247968|247969|247970|247971|247972|247973|247974|247975|247976|247977|247978|247979|247980|247981|247982|247983|247984|247985|247986|247987|247988|247989|247990|247991|247992|247993|247994|247995|247996|247997|247998|247999|248000|248001|248002|248003|248004|248005|248006|248007|248008|248009|248010|248011|248012|248013|248014|248015|248016|248017|248018|248019|248020|248021|248022|248023|248024|248025|248026|248027|248028|248029|248030|248031|248032|248033|248034|248035|248036|248037|248038|248039|248040|248041|248042|248043|248044|248045|248046|248047|248048|248049|248050|248051|248052|248053|248054|248055|248056|248057|248058|248059|248060|248061|248062|248063|248064|248065|248066|248067|248068|248069|248070|248071|248072|248073|248074|248075|248076|248077|248078|248079|248080|248081|248082|248083|248084|248085|248086|248087|248088|248089|248090|248091|248092|248093|248094|248095|248096|248097|248098|248099|248100|248101|248102|248103|248104|248105|248106|248107|248108|248109|248110|248111|248112|248113|248114|248115|248116|248117|248118|248119|248120|248121|248122|248123|248124|248125|248126|248127|248128|248129|248130|248131|248132|248133|248134|248135|248136|248137|248138|248139|248140|248141|248142|248143|248144|248145|248146|248147|248148|248149|248150|248151|248152|248153|248154|248155|248156|248157|248158|248159|248160|248161|248162|248163|248164|248165|248166|248167|248168|248169|248170|248171|248172|248173|248174|248175|248176|248177|248178|248179|248180|248181|248182|248183|248184|248185|248186|248187|248188|248189|248190|248191|248192|248193|248194|248195|248196|248197|248198|248199|248200|248201|248202|248203|248204|248205|248206|248207|248208|248209|248210|248211|248212|248213|248214|248215|248216|248217|248218|248219|248220|248221|248222|248223|248224|248225|248226|248227|248228|248229|248230|248231|248232|248233|248234|248235|248236|248237|248238|248239|248240|248241|248242|248243|248244|248245|248246|248247|248248|248249|248250|248251|248252|248253|248254|248255|248256|248257|248258|248259|248260|248261|248262|248263|248264|248265|248266|248267|248268|248269|248270|248271|248272|248273|248274|248275|248276|248277|248278|248279|248280|248281|248282|248283|248284|248285|248286|248287|248288|248289|248290|248291|248292|248293|248294|248295|248296|248297|248298|248299|248300|248301|248302|248303|248304|248305|248306|248307|248308|248309|248310|248311|248312|248313|248314|248315|248316|248317|248318|248319|248320|248321|248322|248323|248324|248325|248326|248327|248328|248329|248330|248331|248332|248333|248334|248335|248336|248337|248338|248339|248340|248341|248342|248343|248344|248345|248346|248347|248348|248349|248350|248351|248352|248353|248354|248355|248356|248357|248358|248359|248360|248361|248362|248363|248364|248365|248366|248367|248368|248369|248370|248371|248372|248373|248374|248375|248376|248377|248378|248379|248380|248381|248382|248383|248384|248385|248386|248387|248388|248389|248390|248391|248392|248393|248394|248395|248396|248397|248398|248399|248400|248401|248402|248403|248404|248405|248406|248407|248408|248409|248410|248411|248412|248413|248414|248415|248416|248417|248418|248419|248420|248421|248422|248423|248424|248425|248426|248427|248428|248429|248430|248431|248432|248433|248434|248435|248436|248437|248438|248439|248440|248441|248442|248443|248444|248445|248446|248447|248448|248449|248450|248451|248452|248453|248454|248455|248456|248457|248458|248459|248460|248461|248462|248463|248464|248465|248466|248467|248468|248469|248470|248471|248472|248473|248474|248475|263499|263500|263501|263502|263503|263504|263505|263506|263507|263508|263509|263510|263511|263512|263513|263514|263515|263516|360810|360858|360909|360947|364125|367314|380483|380484|380485|380486|380487|380488|380489|380490|380491|380492|380493|380494|380495|380496|380497|380498|380499|380500|380501|380502|380503|380504|380505|380506|380507|380508|380509|380510|380511|380512|380513|380514|380515|380516|380517|380518|380519|380520|380521|380522|380523|380524|380525|380526|380527|380528|380529|380530|380531|380532|380533|380534|380535|380536|380537|380538|380539|380540|380541|380542|380543|380544|380545|380546|380547|380548|380549|380550|380551|380552|380553|380554|380555|380556|380557|380558|380559|380560|380561|380562|380563|380564|380565|380566|380567|380568|380569|380570|380571|380572|380573|380574|380575|380576|380577|380578|380579|380580|380581|380582|380583|380584|380585|380586|380587|380588|380589|380590|380602|380603|380604|380605|380606|380607|380608|380609|380610|380611|380612|380613|380614|380615|380616|380617|380618|380619|380620|380621|380622|380623|380624|380625|380626|380627|380628|380629|380630|380631|380632|380633|380634|380635|380636|380637|380638|380639|380640|380641|380642|380643|380644|380645|380646|380647|380648|380649|380650|380651|380652|380653|380654|380655|380656|380657|380658|380659|380660|380661|380662|380663|380664|380665|380666|380667|380668|380669|380670|380671|380672|380673|380674|380675|380676|380677|380678|380679|380680|380681|380682|380683|380684|380685|380686|380687|380688|380689|380690|380691|380692|380693|380694|380695|380696|380697|380698|380699|380700|380701|380702|380703|380704|380705|380706|380707|380708|380709|380710|380711|380712|380713|380714|380715|380716|380717|380718|380719|380720|380721|380722|380723|380724|380725|380726|380727|380728|380729|380730|380731|380732|380733|380734|380735|380736|380737|380738|380739|380740|380741|380742|380743|380744|380745|380746|380747|380748|380749|380750|380751|380752|380753|380754|380755|380756|380757|380758|380759|380760|380761|380762|380763|380764|380765|380766|380767|380768|380769|380770|380771|380772|380773|380774|380775|380776|380777|380778|380779|380780|380781|380782|380783|380784|380785|380786|380787|380788|380789|380790|380791|380792|380793|380794|380795|380796|380797|380798|380799|380800|380801|380802|380803|380804|380805|380806|380807|380808|380809|380810|380811|380812|380813|380814|380815|380816|380817|380818|380819|380820|380821|380822|380823|380824|380825|380826|380827|380828|380829|380830|380831|380832|380833|380834|380835|380836|380837|380838|380839|380840|380841|380842|380843|380844|380845|380846|380847|380848|380849|380850|380851|380852|380853|380854|380855|380856|380857|380858|380859|380860|380861|380862|380863|380864|380865|380866|380867|380868|380869|380870|380871|380872|380873|380874|380875|380876|380877|380878|380879|380880|380881|380882|380883|380884|380885|380886|380887|380888|380889|380890|380891|380892|380893|380894|380895|380896|380897|380898|380899|380900|380901|380902|380903|380904|380905|380906|380907|380908|380909|380910|380911|380912|380913|380914|380915|380916|380917|380918|380919|380920|380921|380922|380923|380924|380925|380926|380927|380928|380929|380930|380931|380932|380933|380934|380935|380936|380937|380938|380939|380940|380941|380942|380943|380944|380945|380946|380947|380948|380949|380950|380951|380952|380953|380954|380955|380956|380957|380958|380959|380960|380961|380962|380963|380964|380965|380966|380967|380968|380969|380970|380971|380972|380973|380974|380975|380976|380977|380978|380979|380980|380981|380982|380983|380984|380985|380986|380987|380988|380989|380990|380991|380992|380993|380994|380995|380996|380997|380998|380999|381000|381001|381002|381003|381004|381005|381006|381007|381008|381009|381010|381011|381012|381013|381014|381015|381016|381017|381018|381019|381020|381021|381022|381023|381024|381025|381026|381027|381028|381029|381030|381031|381032|381033|381034|381035|381036|381037|381038|381039|381040|381041|381042|381043|381044|381045|381046|381047|381048|381049|381050|381051|381052|381053|381054|381055|381056|381057|381058|381059|381060|381061|381062|381063|381064|381065|381066|381067|381068|381069|381070|381071|381072|381073|381074|381075|381076|381077|381078|381079|381080|381081|381082|381083|381084|381085|381086|381087|381088|381089|381090|381091|381092|381093|381094|381095|381096|381097|381098|381099|381100|381101|381102|381103|381104|381105|381106|381107|381108|381109|381110|381111|381112|381113|381114|381115|381116|381117|381118|381119|381120|381121|381122|381123|381124|381125|381126|381127|381128|381129|381130|381131|381132|381133|381134|381135|381136|381137|381138|381139|381140|381141|381142|381143|381144|381145|381146|381147|381148|381149|381150|381151|381152|381153|381154|381155|381156|381157|381158|381159|381160|381161|381162|381163|381164|381165|381166|381167|381168|381169|381170|381171|381172|381173|381174|381175|381176|381177|381178|381179|381180|381181|381182|381183|381184|381185|381186|381187|381188|381189|381190|381191|381192|381193|381194|381195|381196|381197|381198|381199|381200|381201|381202|381203|381204|381205|381206|381207|381208|381209|381210|381211|381212|381213|381214|381215|381216|381217|381218|381219|381220|381221|381222|381223|381224|381225|381226|381227|381228|381229|381230|381231|381232|381233|381234|381235|381236|381237|381238|381239|381240|381241|381242|381243|381244|381245|381246|381247|381248|381249|381250|381251|381252|381253|381254|381255|381256|381257|381258|381259|381260|381261|381262|381263|381264|381265|381266|381267|381268|381269|381270|381271|381272|381273|381274|381275|381276|381277|381278|381279|381280|381281|381282|381283|381284|381285|381286|381287|381288|381289|381290|381291|381292|381293|381294|381295|381296|381297|381298|381299|381300|381301|381302|381303|381304|381305|381306|381307|381308|381309|381310|381311|381312|381313|381314|381315|381316|381317|381318|381319|381320|381321|381322|381323|381324|381325|381326|381327|381328|381329|381330|381331|381332|381333|381334|381335|381336|381337|381338|381339|381340|381341|381342|381343|381344|381345|381346|381347|381348|381349|381350|381351|381352|381353|381354|381355|381356|381357|381358|381359|381360|381361|381362|381363|381364|381365|381366|381367|381368|381369|381370|381371|381372|381373|381374|381375|381376|381377|381378|381379|381380|381381|381382|381383|381384|381385|381386|381387|381388|381389|381390|381391|381392|381393|381394|381395|381396|381397|381398|381399|381400|381401|381402|381403|381404|381405|381406|381407|381408|381409|381410|381411|381412|381413|381414|381415|381416|381417|381418|381419|381420|381421|381422|381423|381424|381425|381426|381427|381428|381429|381430|381431|381432|381433|381434|381435|381436|381437|381438|381439|381440|381441|381442|381443|381444|381445|381446|381447|381448|381449|381450|381451|381452|381453|381454|381455|381456|381457|381458|381459|381460|381461|381462|381463|381464|381465|381466|381467|381468|381469|381470|381471|381472|381473|381474|381475|381476|381477|381478|381479|381480|381481|381482|381483|381484|381485|381486|381487|381488|381489|381490|381491|381492|381493|381494|381495|381496|381497|381498|381499|381500|381501|381502|381503|381504|381505|381506|381507|381508|381509|381510|381511|381512|381513|381514|381515|381516|381517|381518|381519|381520|381521|381522|381523|381524|381525|381526|381527|381528|381529|381530|381531|381532|381533|381534|381535|381536|381537|381538|381539|381540|381541|381542|381543|381544|381545|381546|381547|381548|381549|381550|381551|381552|381553|381554|381555|381556|381557|381558|381559|381560|381561|381562|381563|381564|381565|381566|381567|381568|381569|381570|381571|381572|381573|381574|381575|381576|381577|381578|381579|381580|381581|381582|381583|381584|381585|381586|381587|381588|381589|381590|381591|381592|381593|381594|381595|381596|381597|381598|381599|381600|381601|381602|381603|381604|381605|381606|381607|381608|381609|381610|381611|381612|381613|381614|381615|381616|381617|381618|381619|381620|381621|381622|381623|381624|381625|381626|381627|381628|381629|381630|381631|381632|381633|381634|381635|381636|381637|381638|381639|381640|381641|381642|381643|381644|381645|381646|381647|381648|381649|381650|381651|381652|381653|381654|381655|381656|381657|381658|381659|381660|381661|381662|381663|381664|381665|381666|381667|381668|381669|381670|381671|381672|381673|381674|381675|381676|381677|381678|381679|381680|381681|381682|381683|381684|381685|381686|381687|381688|381689|381690|381691|381692|381693|381694|381695|381696|381697|381698|381699|381700|381701|381702|381703|381704|381705|381706|381707|381708|381709|381710|381711|381712|381713|381714|381715|381716|381717|381718|381719|381720|381721|381722|381723|381724|381725|381726|381727|381728|381729|381730|381731|381732|381733|381734|381735|381736|381737|381738|381739|381740|381741|381742|381743|381744|381745|381746|381747|381748|381749|381750|381751|381752|381753|381754|381755|381756|381757|381758|381759|381760|381761|381762|381763|381764|381765|381766|381767|381768|381769|381770|381771|381772|381773|381774|381775|381776|381777|381778|381779|381780|381781|381782|381783|381784|381785|381786|381787|381788|381789|381790|381791|381792|381793|381794|381795|381796|381797|381798|381799|381800|381801|381802|381803|381804|381805|381806|381807|381808|381809|381810|381811|381812|381813|381814|381815|381816|381817|381818|381819|381820|381821|381822|381823|381824|381825|381826|381827|381828|381829|381830|381831|381832|381833|381834|381835|381836|381837|381838|381839|381840|381841|381842|381843|381844|381845|381846|381847|381848|381849|381850|381851|381852|381853|381854|381855|381856|381857|381858|381859|381860|381861|381862|381863|381864|381865|381866|381867|381868|381869|381870|381871|381872|381873|381874|381875|381876|381877|381878|381879|381880|381881|381882|381883|381884|381885|381886|381887|381888|381889|381890|381891|381892|381893|381894|381895|381896|381897|381898|381899|381900|381901|381902|381903|381904|381905|381906|381907|381908|381909|381910|381911|381912|381913|381914|381915|381916|381917|381918|381919|381920|381921|381922|381923|381924|381925|381926|381927|381928|381929|381930|381931|381932|381933|381934|381935|381936|381937|381938|381939|381940|381941|381942|381943|381944|381945|381946|381947|381948|381949|381950|381951|381952|381953|381954|381955|381956|381957|381958|381959|381960|381961|381962|381963|381964|381965|381966|381967|381968|381969|381970|381971|381972|381973|381974|381975|381976|381977|381978|381979|381980|381981|381982|381983|381984|381985|381986|381987|381988|381989|381990|381991|381992|381993|381994|381995|381996|381997|381998|381999|382000|382001|382002|382003|382004|382005|382006|382007|382008|382009|382010|382011|382012|382013|382014|382015|382016|382017|382018|382019|382020|382021|382022|382023|382024|382025|382026|382027|382028|382029|382030|382031|382032|382033|382034|382035|382036|382037|382038|382039|382040|382041|382042|382043|382044|382045|382046|382047|382048|382049|382050|382051|382052|382053|382054|382055|382056|382057|382058|382059|382060|382061|382062|382063|382064|382065|382066|382067|382068|382069|382070|382071|382072|382073|382074|382075|382076|382077|382078|382079|382080|382081|382082|382083|382084|382085|382086|382087|382088|382089|382090|382091|382092|382093|382094|382095|382096|382097|382098|382099|382100|382101|382102|382103|382104|382105|382106|382107|382108|382109|382110|382111|382112|382113|382114|382115|382116|382117|382118|382119|382120|382121|382122|382123|382124|382125|382126|382127|382128|382129|382130|382131|382132|382133|382134|382135|382136|382137|382138|382139|382140|382141|382142|382143|382144|382145|382146|382147|382148|382149|382150|382151|382152|382153|382154|382155|382156|382157|382158|382159|382160|382161|382162|382163|382164|382165|382166|382167|382168|382169|382170|382171|382172|382173|382174|382175|382176|382177|382178|382179|382180|382181|382182|382183|382184|382185|382186|382187|382188|382189|382190|382191|382192|382193|382194|382195|382196|382197|382198|382199|382200|382201|382202|382203|382204|382205|382206|382207|382208|382209|382210|382211|382212|382213|382214|382215|382216|382217|382218|382219|382220|382221|382222|382223|382224|382225|382226|382227|382228|382229|382230|382231|382232|382233|382234|382235|382236|382237|382238|382239|382240|382241|382242|382243|382244|382245|382246|382247|382248|382249|382250|382251|382252|382253|382254|382255|382256|382257|382258|382259|382260|382261|382262|382263|382264|382265|382266|382267|382268|382269|382270|382271|382272|382273|382274|382275|382276|382277|382278|382279|382280|382281|382282|382283|382284|382285|382286|382287|382288|382289|382290|382291|382292|382293|382294|382295|382296|382297|382298|382299|382300|382301|382302|382303|382304|382305|382306|382307|382308|382309|382310|382311|382312|382313|382314|382315|382316|382317|382318|382319|382320|382321|382322|382323|382324|382325|382326|382327|382328|382329|382330|382331|382332|382333|382334|382335|382336|382337|382338|382339|382340|382341|382342|382343|382344|382345|382346|382347|382348|382349|382350|382351|382352|382353|382354|382355|382356|382357|382358|382359|382360|382361|382362|382363|382364|382365|382366|382367|382368|382369|382370|382371|382372|382373|382374|382375|382376|382377|382378|382379|382380|382381|382382|382383|382384|382385|382386|382387|382388|382389|382390|382391|382392|382393|382394|382395|382396|382398|382399|382400|382401|382402|382403|382404|382405|382406|382407|382408|382409|382410|382411|382412|382413|382414|382415|382416|382417|382418|382419|382420|382421|382422|382423|382424|382425|382426|382427|382428|382429|382430|382431|382432|382433|382434|382435|382436|382437|382438|382439|382440|382441|382442|382443|382444|382445|382446|382447|382448|382449|382450|382451|382452|382453|382454|382455|382456|382457|382458|382459|382460|382461|382462|382463|382464|382465|382466|382467|382468|382469|382470|382471|382472|382473|382474|382475|382476|382477|382478|382479|382480|382481|382482|382483|382484|382485|382486|382487|382488|382489|382490|382491|382492|382493|382494|382495|382496|382497|382498|382499|382500|382501|382502|382503|382504|382505|382506|382507|382508|382509|382510|382511|382512|382513|382514|382515|382516|382517|382518|382519|382520|382521|382522|382523|382524|382525|382526|382527|382528|382529|382530|382531|382532|382533|382534|382535|382536|382537|382538|382539|382540|382541|382542|382543|382544|382545|382546|382547|382548|382549|382550|382551|382552|382553|382554|382555|382556|382557|382558|382559|382560|382561|382562|382563|382564|382565|382566|382567|382568|382569|382570|382571|382572|382573|382574|382575|382576|382577|382578|382579|382580|382581|382582|382583|382584|382585|382586|382587|382588|382589|382590|382591|382592|382593|382594|382595|382596|382597|382598|382599|382600|382601|382602|382603|382604|382605|382606|382607|382608|382609|382610|382611|382612|382613|382614|382615|382616|382617|382618|382619|382620|382621|382622|382623|382624|382625|382626|382627|382628|382629|382630|382631|382632|382633|382634|382635|382636|382637|382638|382639|382641|382643|382644|382645|382646|382647|382649|382650|382651|382652|382653|382655|382656|382657|382658|382659|382660|382661|382662|382663|382664|382665|382666|382667|382669|382670|382671|382672|382673|382674|382675|382676|382677|382678|382679|382680|382681|382682|382683|382684|382685|382686|382688|382689|382691|382692|382693|382694|382695|382696|382698|382699|382700|382701|382702|382703|382704|382705|382706|382707|382708|382709|382710|382711|382712|382713|382714|382715|382716|382717|382718|382719|382720|382721|382722|382723|382724|382726|382727|382728|382730|382731|382732|382733|382734|382735|382736|382737|382738|382739|382740|382741|382742|382743|382744|382745|382746|382747|382748|382749|382750|382751|382752|382753|382754|382755|382756|382758|382759|382760|382761|382762|382763|382764|382765|382766|382767|382768|382769|382770|382771|382772|382773|382774|382775|382776|382777|382778|382779|382780|382781|382782|382783|382784|382785|382786|382787|382788|382789|382790|382791|382792|382793|382794|382795|382796|382797|382798|382799|382800|382801|382802|382803|382805|382806|382807|382808|382809|382810|382811|382812|382813|382814|382815|382816|382817|382818|382820|382821|382822|382823|382824|382825|382827|382828|382829|382830|382831|382832|382833|382834|382835|382836|382837|382838|382839|382840|382841|382842|382843|382844|382845|382846|382847|382848|382850|382851|382852|382853|382854|382855|382856|382858|382859|382860|382861|382862|382863|382864|382865|382866|382867|382868|382869|382870|382871|382872|382873|382874|382875|382876|382877|382878|382879|382880|382881|382882|382883|382885|382886|382887|382888|382889|382890|382891|382892|382893|382894|382896|382897|382898|382899|382900|382901|382902|382903|382904|382905|382906|382907|382908|382909|382910|382911|382912|382913|382914|382915|382916|382917|382918|382919|382920|382921|382922|382923|382924|382925|382926|382927|382928|382929|382930|382931|382932|382933|382934|382935|382936|382937|382938|382939|382940|382941|382942|382943|382944|382945|382946|382947|382948|382949|382950|382951|382952|382953|382954|382955|382956|382957|382958|382959|382960|382961|382962|382963|382964|382965|382966|382967|382968|382969|382970|382971|382972|382973|382974|382975|382977|382978|382979|382980|382981|382982|382983|382984|382985|382986|382987|382988|382989|382990|382991|382992|382993|382994|382995|382996|382997|382998|382999|383000|383002|383003|383004|383005|383006|383007|383008|383009|383010|383011|383014|383015|383016|383017|383018|383019|383020|383021|383022|383023|383024|383025|383026|383027|383028|383029|383030|383031|383032|383033|383034|383035|383036|383037|383038|383039|383040|383041|383043|383044|383045|383046|383047|383048|383049|383050|383051|383052|383053|383054|383055|383056|383057|383058|383059|383060|383061|383062|383063|383064|383065|383066|383067|383068|383069|383070|383071|383072|383074|383075|383076|383077|383078|383079|383080|383081|383082|383083|383084|383085|383087|383088|383089|383090|383091|383092|383093|383094|383095|383096|383097|383098|383099|383100|383101|383102|383103|383105|383106|383107|383108|383109|383110|383111|383113|383114|383115|383117|383118|383119|383120|383121|383122|383123|383124|383125|383126|383127|383128|383129|383130|383133|383134|383135|383136|383137|383138|383139|383140|383141|383143|383144|383145|383146|383148|383149|383150|383151|383152|383153|383154|383155|383156|383157|383158|383160|383161|383162|383163|383164|383165|383166|383167|383168|383170|383171|383172|383173|383174|383175|383176|383177|383178|383179|383180|383181|383182|383183|383184|383185|383186|383187|383188|383189|383190|383191|383193|383194|383195|383196|383197|383198|383199|383200|383201|383202|383203|383204|383205|383206|383207|383208|383209|383210|383211|383212|383213|383214|383215|383216|383217|383218|383219|383220|383221|383222|383223|383224|383225|383227|383228|383229|383230|383231|383232|383233|383234|383235|383236|383237|383238|383239|383240|383241|383243|383244|383245|383246|383247|383248|383249|383250|383251|383252|383253|383254|383255|383256|383257|383258|383259|383260|383261|383262|383263|383264|383265|383266|383267|383268|383270|383271|383272|383273|383274|383275|383276|383277|383278|383279|383280|383281|383282|383283|383284|383285|383286|383287|383288|383289|383290|383291|383292|383293|383294|383295|383296|383297|383298|383300|383301|383302|383303|383304|383306|383308|383309|383310|383311|383312|383313|383314|383315|383316|383317|383318|383319|383320|383321|383322|383323|383324|383325|383326|383327|383328|383329|383330|383331|383332|383333|383334|383335|383336|383337|383338|383339|383340|383341|383342|383343|383344|383345|383346|383347|383348|383349|383351|383352|383354|383355|383356|383357|383359|383360|383362|383363|383364|383365|383366|383367|383368|383369|383370|383371|383372|383373|383374|383375|383376|383377|383378|383379|383380|383381|383382|383383|383384|383385|383386|383387|383388|383389|383390|383391|383392|383393|383394|383395|383396|383397|383398|383399|383400|383401|383402|383403|383404|383405|383406|383407|383408|383409|383410|383412|383413|383414|383415|383416|383417|383418|383419|383420|383421|383422|383423|383424|383425|383426|383427|383428|383430|383431|383432|383433|383435|383436|383437|383438|383439|383440|383441|383442|383443|383444|383445|383446|383447|383449|383450|383451|383452|383453|383454|383455|383456|383457|383458|383459|383461|383462|383463|383464|383465|383466|383467|383468|383469|383470|383471|383472|383473|383474|383475|383476|383477|383478|383479|383480|383482|383483|383484|383485|383486|383487|383488|383489|383490|383491|383492|383493|383494|383495|383496|383497|383498|383499|383500|383503|383504|383507|383508|383509|383511|383512|383513|383514|383515|383517|383519|383520|383521|383522|383524|383525|383526|383527|383528|383529|383530|383531|383532|383533|383534|383535|383536|383537|383538|383539|383540|383541|383542|383543|383544|383545|383546|383547|383548|383549|383550|383552|383553|383555|383556|383557|383558|383559|383560|383561|383562|383563|383564|383565|383566|383567|383568|383569|383570|383571|383572|383573|383574|383575|383576|383577|383578|383579|383581|383582|383583|383584|383585|383586|383587|383588|383589|383590|383591|383592|383593|383594|383595|383596|383597|383598|383599|383600|383601|383602|383603|383604|383605|383606|383607|383608|383609|383611|383612|383613|383614|383615|383616|383617|383619|383620|383621|383622|383623|383624|383625|383626|383627|383628|383629|383630|383631|383632|383633|383634|383635|383636|383637|383638|383639|383640|383641|383642|383643|383644|383645|383646|383647|383648|383649|383650|383651|383652|383653|383654|383655|383656|383657|383658|383659|383660|383661|383662|383663|383664|383665|383666|383667|383668|383669|383670|383671|383672|383673|383674|383675|383676|383677|383679|383680|383681|383682|383683|383684|383685|383686|383687|383688|383689|383690|383691|383692|383693|383694|383695|383696|383697|383698|383699|383700|383701|383702|383703|383704|383705|383706|383707|383708|383710|383711|383712|383713|383714|383715|383716|383717|383718|383719|383720|383721|383723|383724|383725|383726|383727|383728|383729|383730|383731|383732|383733|383735|383736|383738|383739|383740|383742|383743|383744|383747|383748|383749|383750|383751|383752|383753|383754|383755|383756|383757|383758|383759|383760|383761|383762|383763|383764|383765|383766|383767|383768|383769|383770|383771|383772|383773|383774|383775|383777|383778|383779|383780|383781|383782|383783|383784|383785|383786|383787|383788|383789|383790|383791|383792|383793|383794|383795|383796|383797|383798|383799|383800|383801|383802|383803|383804|383805|383806|383807|383808|383809|383810|383811|383812|383813|383814|383815|383816|383817|383818|383819|383820|383821|383822|383823|383824|383825|383826|383827|383829|383830|383831|383832|383833|383834|383835|383836|383837|383838|383839|383840|383841|383842|383844|383845|383846|383847|383848|383850|383851|383852|383853|383855|383856|383857|383858|383859|383860|383861|383862|383863|383864|383865|383866|383867|383869|383870|383871|383872|383873|383874|383875|383876|383877|383878|383880|383881|383882|383883|383884|383885|383886|383887|383888|383889|383891|383892|383893|383895|383896|383897|383898|383899|383900|383901|383902|383903|383904|383905|383906|383907|383908|383909|383910|383911|383912|383913|383914|383916|383917|383918|383919|383920|383922|383923|383924|383925|383926|383927|383928|383929|383930|383931|383932|383933|383934|383936|383937|383938|383939|383940|383942|383943|383944|383945|383946|383947|383948|383949|383950|383951|383952|383953|383954|383955|383956|383957|383958|383959|383960|383961|383962|383963|383964|383965|383966|383967|383968|383969|383970|383972|383973|383974|383975|383976|383977|383978|383979|383980|383981|383982|383983|383984|383985|383986|383987|383988|383989|383990|383991|383992|383993|383994|383995|383996|383997|383998|383999|384000|384001|384002|384003|384004|384005|384006|384007|384008|384010|384012|384013|384014|384015|384016|384017|384018|384019|384020|384021|384022|384023|384024|384025|384027|384028|384029|384030|384031|384032|384033|384034|384035|384036|384037|384038|384039|384040|384041|384042|384043|384044|384045|384046|384048|384049|384050|384051|384052|384053|384054|384055|384056|384057|384058|384059|384060|384061|384062|384063|384064|384065|384066|384067|384068|384069|384070|384071|384072|384074|384075|384076|384077|384078|384079|384080|384081|384082|384083|384085|384086|384087|384088|384089|384091|384092|384093|384094|384095|384096|384097|384098|384099|384100|384101|384102|384103|384104|384105|384106|384107|384108|384109|384110|384111|384112|384113|384114|384116|384117|384118|384119|384120|384121|384122|384123|384124|384125|384126|384127|384128|384129|384130|384131|384132|384133|384134|384135|384136|384137|384138|384139|384140|384141|384142|384143|384145|384146|384147|384148|384149|384150|384151|384152|384153|384154|384155|384156|384157|384158|384159|384160|384161|384162|384164|384165|384166|384167|384168|384169|384170|384171|384172|384173|384174|384176|384177|384178|384179|384180|384181|384182|384183|384184|384185|384186|384187|384188|384189|384190|384191|384192|384193|384194|384195|384196|384197|384198|384199|384200|384201|384202|384204|384205|384206|384207|384208|384209|384210|384211|384212|384214|384215|384216|384217|384218|384219|384220|384221|384222|384223|384224|384225|384226|384227|384228|384229|384231|384233|384234|384235|384236|384237|384238|384239|384240|384241|384242|384243|384244|384245|384246|384247|384248|384249|384250|384251|384252|384253|384254|384255|384256|384257|384258|384259|384260|384261|384262|384263|384264|384265|384266|384267|384268|384269|384270|384271|384272|384273|384274|384275|384276|384277|384278|384279|384280|384281|384282|384283|384284|384285|384286|384287|384288|384291|384292|384293|384294|384295|384296|384297|384298|384299|384300|384301|384302|384303|384304|384305|384306|384307|384308|384309|384310|384311|384312|384313|384314|384315|384316|384317|384318|384319|384320|384321|384322|384324|384325|384326|384327|384328|384329|384330|384331|384332|384333|384334|384335|384336|384340|384341|384342|384343|384344|384345|384346|384347|384348|384349|384350|384351|384352|384353|384354|384355|384356|384357|384358|384359|384360|384361|384362|384363|384364|384365|384366|384367|384368|384369|384370|384372|384373|384374|384375|384376|384377|384378|384379|384382|384383|384384|384385|384387|384388|384389|384390|384740|384741|384742|384743|384744|384745|384746|384747|384748|384749|384750|384751|384752|384753|384754|384755|384756|384757|384758|384759|384760|384761|384762|384763|384764|384765|384766|384767|384768|384769|384770|384771|384772|384773|384774|384775|384776|384777|384778|384779|384780|384781|384782|384783|384784|384785|384786|384787|384788|384789|384790|384791|384792|384793|384794|384795|384796|384797|384798|384799|384800|384801|384802|384803|384804|384805|384806|384807|384808|384809|384810|384811|384812|384813|384814|384815|384816|384817|384818|384819|384820|384821|384822|384823|384824|384825|384826|384827|384828|384829|384830|384831|384832|384833|384834|384835|384836|384837|384838|384839|384840|384841|384842|384843|384844|384845|384846|384847|384848|384849|384850|384851|384852|384853|384854|384855|384856|384857|384858|384859|384860|384861|384862|384863|384864|384865|384866|384867|384868|384869|384870|384871|384872|384873|384874|384875|384876|384877|384878|384879|384880|384881|384882|384883|384884|384885|384886|384887|384888|384889|384890|384891|384892|384893|384894|384895|384896|384897|384898|384899|384900|384901|384902|384903|384904|384905|384906|384907|384908|384909|384910|384911|384912|384913|384914|384915|384916|384917|384918|384919|384920|384921|384922|384923|384924|384925|384926|384927|384928|384929|384930|384931|384932|384933|384934|384935|384936|384937|384938|384939|384940|384941|384942|384943|384944|384945|384946|384947|384948|384949|384950|384951|384952|384953|384954|384955|384956|384957|384958|384959|384960|384961|384962|384963|384964|384965|384966|384967|384968|384969|384970|384971|384972|384973|384974|384975|384976|384977|384978|384979|384980|384981|384982|384983|384984|384985|384986|384987|384988|384989|384990|384991|384992|384993|384994|384995|384996|384997|384998|384999|385000|385001|385002|385003|385004|385005|385006|385007|385008|385009|385010|385011|385012|385013|385014|385015|385016|385017|385018|385019|385020|385021|385022|385023|385024|385025|385026|385027|385028|385029|385030|385031|385032|385033|385034|385035|385036|385037|385038|385039|385040|385041|385042|385043|385044|385045|385046|385047|385048|385049|385050|385051|385052|385053|385054|385055|385056|385057|385058|385059|385060|385061|385062|385063|385064|385065|385066|385067|385068|385069|385070|385071|385072|385073|385074|385075|385076|385077|385078|385079|385080|385081|385082|385083|385084|385085|385086|385087|385088|385089|385090|385091|385092|385093|385094|385095|385096|385097|385098|385099|385100|385101|385102|385103|385104|385105|385106|385107|385108|385109|385110|385111|385112|385113|385114|385115|385116|385117|385118|385119|385120|385121|385122|385123|385124|385125|385126|385127|385128|385129|385130|385131|385132|385133|385134|385135|385136|385137|385138|385139|385140|385141|385142|385143|385144|385145|385146|385147|385148|385149|385150|385151|385152|385153|385154|385155|385156|385157|385158|385159|385160|385161|385162|385163|385164|385165|385166|385167|385168|385169|385170|385171|385172|385173|385174|385175|385176|385177|385178|385179|385180|385181|385182|385183|385184|385185|385186|385187|385188|385189|385190|385191|385192|385193|385194|385195|385196|385197|385198|385199|385200|385201|385202|385203|385204|385205|385206|385207|385208|385209|385210|385211|385212|385213|385214|385215|385216|385217|385218|385219|385220|385221|385222|385223|385224|385225|385226|385227|385228|385229|385230|385231|385232|385233|385234|385235|385236|385237|385238|385239|385240|385241|385242|385243|385244|385245|385246|385247|385248|385249|385250|385251|385252|385253|385254|385255|385256|385257|385258|385259|385260|385261|385262|385263|385264|385265|385266|385267|385268|385269|385270|385271|385272|385273|385274|385275|385276|385277|385278|385279|385280|385281|385282|385283|385284|385285|385286|385287|385288|385289|385290|385291|385292|385293|385294|385295|385296|385297|385298|385299|385300|385301|385302|385303|385304|385305|385306|385307|385308|385309|385310|385311|385312|385313|385314|385315|385316|385317|385318|385319|385320|385321|385322|385323|385324|385325|385326|385327|385328|385329|385330|385331|385332|385333|385334|385335|385336|385337|385338|385339|385340|385341|385342|385343|385344|385345|385346|385347|385348|385349|385350|385351|385352|385353|385354|385355|385356|385357|385358|385359|385360|385361|385362|385363|385364|385365|385366|385367|385368|385369|385370|385371|385372|385373|385374|385375|385376|385377|385378|385379|385380|385381|385382|385383|385384|385385|385386|385387|385388|385389|385390|385391|385392|385393|385394|385395|385396|385397|385398|385399|385400|385401|385402|385403|385404|385405|385406|385407|385408|385409|385410|385411|385412|385413|385414|385415|385416|385417|385418|385419|385420|385421|385422|385423|385424|385425|385426|385427|385428|385429|385430|385431|385432|385433|385434|385435|385436|385437|385438|385439|385440|385441|385442|385443|385444|385445|385446|385447|385448|385449|385450|385451|385452|385453|385454|385455|385456|385457|385458|385459|385460|385461|385462|385463|385464|385465|385466|385467|385468|385469|385470|385471|385472|385473|385474|385475|385476|385477|385478|385479|385480|385481|385482|385483|385484|385485|385486|385487|385488|385489|385490|385491|385492|385493|385494|385495|385496|385497|385498|385499|385500|385501|385502|385503|385504|385505|385506|385507|385508|385509|385510|385511|385512|385513|385514|385515|385516|385517|385518|385519|385520|385521|385522|385523|385524|385525|385526|385527|385528|385529|385530|385531|385532|385533|385534|385535|385536|385537|385538|385539|385540|385541|385542|385543|385544|385545|385546|385547|385548|385549|385550|385551|385552|385553|385554|385555|385556|385557|385558|385559|385560|385561|385562|385563|385564|385565|385566|385567|385568|385569|385570|385571|385572|385573|385574|385575|385576|385577|385578|385579|385580|385581|385582|385583|385584|385585|385586|385587|385588|385589|385590|385591|385592|385593|385594|385595|385596|385597|385598|385599|385600|385601|385602|385603|385604|385605|385606|385607|385608|385609|385610|385611|385612|385613|385614|385615|385616|385617|385618|385619|385620|385621|385622|385623|385624|385625|385626|385627|385628|385629|385630|385631|385632|385633|385634|385635|385636|385637|385638|385639|385640|385641|385642|385643|385644|385645|385646|385647|385648|385649|385650|385651|385652|385653|385654|385655|385656|385657|385658|385659|385660|385661|385662|385663|385664|385665|385666|385667|385668|385669|385670|385671|385672|385673|385674|385675|385676|385677|385678|385679|385680|385681|385682|385683|385684|385685|385686|385687|385688|385689|385690|385691|385692|385693|385694|385695|385696|385697|385698|385699|385700|385701|385702|385703|385704|385705|385706|385707|385708|385709|385710|385711|385712|385713|385714|385715|385716|385717|385718|385719|385720|385721|385722|385723|385724|385725|385726|385727|385728|385729|385730|385731|385732|385733|385734|385735|385736|385737|385738|385739|385740|385741|385742|385743|385744|385745|385746|385747|385748|385749|385750|385751|385752|385753|385754|385755|385756|385757|385758|385759|385760|385761|385762|385763|385764|385765|385766|385767|385768|385769|385770|385771|385772|385773|385774|385775|385776|385777|385778|385779|385780|385781|385782|385783|385784|385785|385786|385787|385788|385789|385790|385791|385792|385793|385794|385795|385796|385797|385798|385799|385800|385801|385802|385803|385804|385805|385806|385807|385808|385809|385810|385811|385812|385813|385814|385815|385816|385817|385818|385819|385820|385821|385822|385823|385824|385825|385826|385827|385828|385829|385830|385831|385832|385833|385834|385835|385836|385837|385838|385839|385840|385841|385842|385843|385844|385845|385846|385847|385848|385849|385850|385851|385852|385853|385854|385855|385856|385857|385858|385859|385860|385861|385862|385863|385864|385865|385866|385867|385868|385869|385870|385871|385872|385873|385874|385875|385876|385877|385878|385879|385880|385881|385882|385883|385884|385885|385886|385887|385888|385889|385890|385891|385892|385893|385894|385895|385896|385897|385898|385899|385900|385901|385902|385903|385904|385905|385906|385907|385908|385909|385910|385911|385912|385913|385914|385915|385916|385917|385918|385919|385920|385921|385922|385923|385924|385925|385926|385927|385928|385929|385930|385931|385932|385933|385934|385935|385936|385937|385938|385939|385940|385941|385942|385943|385944|385945|385946|385947|385948|385949|385950|385951|385952|385953|385954|385955|385956|385957|385958|385959|385960|385961|385962|385963|385964|385965|385966|385967|385968|385969|385970|385971|385972|385973|385974|385975|385976|385977|385978|385979|385980|385981|385982|385983|385984|385985|385986|385987|385988|385989|385990|385991|385992|385993|385994|385995|385996|385997|385998|385999|386000|386001|386002|386003|386004|386005|386006|386007|386008|386009|386010|386011|386012|386013|386014|386015|386016|386017|386018|386019|386020|386021|386022|386023|386024|386025|386026|386027|386028|386029|386030|386031|386032|386033|386034|386035|386036|386037|386038|386039|386040|386041|386042|386043|386044|386045|386046|386047|386048|386049|386050|386051|386052|386053|386054|386055|386056|386057|386058|386059|386060|386061|386062|386063|386064|386065|386066|386067|386068|386069|386070|386071|386072|386073|386074|386075|386076|386077|386078|386079|386080|386081|386082|386083|386084|386085|386086|386087|386088|386089|386090|386091|386092|386093|386094|386095|386096|386097|386098|386099|386100|386101|386102|386103|386104|386105|386106|386107|386108|386109|386110|386111|386112|386113|386114|386115|386116|386117|386118|386119|386120|386121|386122|386123|386124|386125|386126|386127|386128|386129|386130|386131|386132|386133|386134|386135|386136|386137|386138|386139|386140|386141|386142|386143|386144|386145|386146|386147|386148|386149|386150|386151|386152|386153|386154|386155|386156|386157|386158|386159|386160|386161|386162|386163|386164|386165|386166|386167|386168|386169|386170|386171|386172|386173|386174|386175|386176|386177|386178|386179|386180|386181|386182|386183|386184|386185|386186|386187|386188|386189|386190|386191|386192|386193|386194|386195|386196|386197|386198|386199|386200|386201|386202|386203|386204|386205|386206|386207|386208|386209|386210|386211|386212|386213|386214|386215|386216|386217|386218|386219|386220|386221|386222|386223|386224|386225|386226|386227|386228|386229|386230|386231|386232|386233|386234|386235|386236|386237|386238|386239|386240|386241|386242|386243|386244|386245|386246|386247|386248|386249|386250|386251|386252|386253|386254|386255|386256|386257|386258|386259|386260|386261|386262|386263|386264|386265|386266|386267|386268|386269|386270|386271|386272|386273|386274|386275|386276|386277|386278|386279|386280|386281|386282|386283|386284|386285|386286|386287|386288|386289|386290|386291|386292|386293|386294|386295|386296|386297|386298|386299|386300|386301|386302|386303|386304|386305|386306|386307|386308|386309|386310|386311|386312|386313|386314|386315|386316|386317|386318|386319|386320|386321|386322|386323|386324|386325|386326|386327|386328|386329|386330|386331|386332|386333|386334|386335|386336|386337|386338|386339|386340|386341|386342|386343|386344|386345|386346|386347|386348|386349|386350|386351|386352|386353|386354|386355|386356|386357|386358|386359|386360|386361|386362|386363|386364|386365|386366|386367|386368|386369|386370|386371|386372|386373|386374|386375|386376|386377|386378|386379|386380|386381|386382|386383|386384|386385|386386|386387|386388|386389|386390|386391|386392|386393|386394|386395|386396|386397|386398|386399|386400|386401|386402|386403|386404|386405|386406|386407|386408|386409|386410|386411|386412|386413|386414|386415|386416|386417|386418|386419|386420|386421|386422|386423|386424|386425|386426|386427|386428|386429|386430|386431|386432|386433|386434|386435|386436|386437|386438|386439|386440|386441|386442|386443|386444|386445|386446|386447|386448|386449|386450|386451|386452|386453|386454|386455|386456|386457|386458|386459|386460|386461|386462|386463|386464|386465|386466|386467|386468|386469|386470|386471|386472|386473|386474|386475|386476|386477|386478|386479|386480|386481|386482|386483|386484|386485|386486|386487|386488|386489|386490|386491|386492|386493|386494|386495|386496|386497|386498|386499|386500|386501|386502|386503|386504|386505|386506|386507|386508|386509|386510|386511|386512|386513|386514|386515|386516|386517|386518|386519|386520|386521|386522|386523|386524|386525|386526|386527|386528|386529|386530|386531|386532|386533|386534|386535|386536|386537|386538|386539|386540|386541|386542|386543|386544|386545|386546|386547|386548|386549|386550|386551|386552|386553|386554|386555|386556|386557|386558|386559|386560|386561|386562|386563|386564|386565|386566|386567|386568|386569|386570|386571|386572|386573|386574|386575|386576|386577|386578|386579|386580|386581|386582|386583|386584|386585|386586|386587|386588|386589|386590|386591|386592|386593|386594|386595|386596|386597|386598|386599|386600|386601|386602|386603|386604|386605|386606|386607|386608|386609|386610|386611|386612|386613|386614|386615|386616|386617|386618|386619|386620|386621|386622|386623|386624|386625|386626|386627|386628|386629|386630|386631|386632|386633|386634|386635|386636|386637|386638|386639|386640|386641|386642|386643|386644|386645|386646|386647|386648|386649|386650|386651|386652|386653|386654|386655|386656|386657|386658|386659|386660|386661|386662|386663|386664|386665|386666|386667|386668|386669|386670|386671|386672|386673|386674|386675|386676|386677|386678|386679|386680|386681|386682|386683|386684|386685|386686|386687|386688|386689|386690|386691|386692|386693|386694|386695|386696|386697|386698|386699|386700|386701|386702|386703|386704|386705|386706|386707|386708|386709|386710|386711|386712|386713|386714|386715|386716|386717|386718|386719|386720|386721|386722|386723|386724|386725|386726|386727|386728|386729|386730|386731|386732|386733|386734|386735|386736|386737|386738|386739|386740|386741|386742|386743|386744|386745|386746|386747|386748|386749|386750|386751|386752|386753|386754|386755|386756|386757|386758|386759|386760|386761|386762|386763|386764|386765|386766|386767|386768|386769|386770|386771|386772|386773|386774|386775|386776|386777|386778|386779|386780|386781|386782|386783|386784|386785|386786|386787|386788|386789|386790|386791|386792|386793|386794|386795|386796|386797|386798|386799|386800|386801|386802|386803|386804|386805|386806|386807|386808|386809|386810|386811|386812|386813|386814|386815|386816|386817|386818|386819|386820|386821|386822|386823|386824|386825|386826|386827|386828|386829|386830|386831|386832|386833|386834|386835|386836|386837|386838|386839|386840|386841|386842|386843|386844|386845|386846|386847|386848|386849|386850|386851|386852|386853|386854|386855|386856|386857|386858|386859|386860|386861|386862|386863|386864|386865|386866|386867|386868|386869|386870|386871|386872|386873|386874|386875|386876|386877|386878|386879|386880|386881|386882|386883|386884|386885|386886|386887|386888|386889|386890|386891|386892|386893|386894|386895|386896|386897|386898|386899|386900|386901|386902|386903|386904|386905|386906|386907|386908|386909|386910|386911|386912|386913|386914|386915|386916|386917|386918|386919|386920|386921|386922|386923|386924|386925|386926|386927|386928|386929|386930|386931|386932|386933|386934|386935|386936|386937|386938|386939|386940|386941|386942|386943|386944|386945|386946|386947|386948|386949|386950|386951|386952|386953|386954|386955|386956|386957|386958|386959|386960|386961|386962|386963|386964|386965|386966|386967|386968|386969|386970|386971|386972|386973|386974|386975|386976|386977|386978|386979|386980|386981|386982|386983|386984|386985|386986|386987|386988|386989|386990|386991|386992|386993|386994|386995|386996|386997|386998|386999|387000|387001|387002|387003|387004|387005|387006|387007|387008|387009|387010|387011|387012|387013|387014|387015|387016|387017|387018|387019|387020|387021|387022|387023|387024|387025|387026|387027|387028|387029|387030|387031|387032|387033|387034|387035|387036|387037|387038|387039|387040|387041|387042|387043|387044|387045|387046|387047|387048|387049|387050|387051|387052|387053|387054|387055|387056|387057|387058|387059|387060|387061|387062|387063|387064|387065|387066|387067|387068|387069|387070|387071|387072|387073|387074|387075|387076|387077|387078|387079|387080|387081|387082|387083|387084|387085|387086|387087|387088|387089|387090|387091|387092|387093|387094|387095|387096|387097|387098|387099|387100|387101|387102|387103|387104|387105|387106|387107|387108|387109|387110|387111|387112|387113|387114|387115|387116|387117|387118|387119|387120|387121|387122|387123|387124|387125|387126|387127|387128|387129|387130|387131|387132|387133|387134|387135|387136|387137|387138|387139|387140|387141|387142|387143|387144|387145|387146|387147|387148|387149|387150|387151|387152|387153|387154|387155|387156|387157|387158|387159|387160|387161|387162|387163|387164|387165|387166|387167|387168|387169|387170|387171|387172|387173|387174|387175|387176|387177|387178|387179|387180|387181|387182|387183|387184|387185|387186|387187|387188|387189|387190|387191|387192|387193|387194|387195|387196|387197|387198|387199|387200|387201|387202|387203|387204|387205|387206|387207|387208|387209|387210|387211|387212|387213|387214|387215|387216|387217|387218|387219|387220|387221|387222|387223|387224|387225|387226|387227|387228|387229|387230|387231|387232|387233|387234|387235|387236|387237|387238|387239|387240|387241|387242|387243|387244|387245|387246|387247|387248|387249|387250|387251|387252|387253|387254|387255|387256|387257|387258|387259|387260|387261|387262|387263|387264|387265|387266|387267|387268|387269|387270|387271|387272|387273|387274|387275|387276|387277|387278|387279|387280|387281|387282|387283|387284|387285|387286|387287|387288|387289|387290|387291|387292|387293|387294|387295|387296|387297|387298|387299|387300|387301|387302|387303|387304|387305|387306|387307|387308|387309|387310|387311|387312|387313|387314|387315|387316|387317|387318|387319|387320|387321|387322|387323|387324|387325|387326|387327|387328|387329|387330|387331|387332|387333|387334|387335|387336|387337|387338|387339|387340|387341|387342|387343|387344|387345|387346|387347|387348|387349|387350|387351|387352|387353|387354|387355|387356|387357|387358|387359|387360|387361|387362|387363|387364|387365|387366|387367|387368|387369|387370|387371|387372|387373|387374|387375|387376|387377|387378|387379|387380|387381|387382|387383|387384|387385|387386|387387|387388|387389|387390|387391|387392|387393|387394|387395|387396|387397|387398|387399|387400|387401|387402|387403|387404|387405|387406|387407|387408|387409|387410|387411|387412|387413|387414|387415|387416|387417|387418|387419|387420|387421|387422|387423|387424|387425|387426|387427|387428|387429|387430|387431|387432|387433|387434|387435|387436|387437|387438|387439|387440|387441|387442|387443|387444|387445|387446|387447|387448|387449|387450|387451|387452|387453|387454|387455|387456|387457|387458|387459|387460|387461|387462|387463|387464|387465|387466|387467|387468|387469|387470|387471|387472|387473|387474|387475|387476|387477|387478|387479|387480|387481|387482|387483|387484|387485|387486|387487|387488|387489|387490|387491|387492|387493|387494|387495|387496|387497|387498|387499|387500|387501|387502|387503|387504|387505|387506|387507|387508|387509|387510|387511|387512|387513|387514|387515|387516|387517|387518|387519|387520|387521|387522|387523|387524|387525|387526|387527|387528|387529|387530|387531|387532|387533|387534|387535|387536|387537|387538|387539|387540|387541|387542|387543|387544|387545|387546|387547|387548|387549|387550|387551|387552|387553|387554|387555|387556|387557|387558|387559|387560|387561|387562|387563|387564|387565|387566|387567|387568|387569|387570|387571|387572|387573|387574|387575|387576|387577|387578|387579|387580|387581|387582|387583|387584|387585|387586|387587|387588|387589|387590|387591|387592|387593|387594|387595|387596|387597|387598|387599|387600|387601|387602|387603|387604|387605|387606|387607|387608|387609|387610|387611|387612|387613|387614|387615|387616|387617|387618|387619|387620|387621|387622|387623|387624|387625|387626|387627|387628|387629|387630|387631|387632|387633|387634|387635|387636|387637|387638|387639|387640|387641|387642|387643|387644|387645|387646|387647|387648|387649|387650|387651|387652|387653|387654|387655|387656|387657|387658|387659|387660|387661|387662|387663|387664|387665|387666|387667|387668|387669|387670|387671|387672|387673|387674|387675|387676|387677|387678|387679|387680|387681|387682|387683|387684|387685|387686|387687|387688|387689|387690|387691|387692|387693|387694|387695|387696|387697|387698|387699|387700|387701|387702|387703|387704|387705|387706|387707|387708|387709|387710|387711|387712|387713|387714|387715|387716|387717|387718|387719|387720|387721|387722|387723|387724|387725|387726|387727|387728|387729|387730|387731|387732|387733|387734|387735|387736|387737|387738|387739|387740|387741|387742|387743|387744|387745|387746|387747|387748|387749|387750|387751|387752|387753|387754|387755|387756|387757|387758|387759|387760|387761|387762|387763|387764|387765|387766|387767|387768|387769|387770|387771|387772|387773|387774|387775|387776|387777|387778|387779|387780|387781|387782|387783|387784|387785|387786|387787|387788|387789|387790|387791|387792|387793|387794|387795|387796|387797|387798|387799|387800|387801|387802|387803|387804|387805|387806|387807|387808|387809|387810|387811|387812|387813|387814|387815|387816|387817|387818|387819|387820|387821|387822|387823|387824|387825|387826|387827|387828|387829|387830|387831|387832|387833|387834|387835|387836|387837|387838|387839|387840|387841|387842|387843|387844|387845|387846|387847|387848|387849|387850|387851|387852|387853|387854|387855|387856|387857|387858|387859|387860|387861|387862|387863|387864|387865|387866|387867|387868|387869|387870|387871|387872|387873|387874|387875|387876|387877|387878|387879|387880|387881|387882|387883|387884|387885|387886|387887|387888|387889|387890|387891|387892|387893|387894|387895|387896|387897|387898|387899|387900|387901|387902|387903|387904|387905|387906|387907|387908|387909|387910|387911|387912|387913|387914|387915|387916|387917|387918|387919|387920|387921|387922|387923|387924|387925|387926|387927|387928|387929|387930|387931|387932|387933|387934|387935|387936|387937|387938|387939|387940|387941|387942|387943|387944|387945|387946|387947|387948|387949|387950|387951|387952|387953|387954|387955|387956|387957|387958|387959|387960|387961|387962|387963|387964|387965|387966|387967|387968|387969|387970|387971|387972|387973|387974|387975|387976|387977|387978|387979|387980|387981|387982|387983|387984|387985|387986|387987|387988|387989|387990|387991|387992|387993|387994|387995|387996|387997|387998|387999|388000|388001|388002|388003|388004|388005|388006|388007|388008|388009|388010|388011|388012|388013|388014|388015|388016|388017|388018|388019|388020|388021|388022|388023|388024|388025|388026|388027|388028|388029|388030|388031|388032|388033|388034|388035|388036|388037|388038|388039|388040|388041|388042|388043|388044|388045|388046|388047|388048|388049|388050|388051|388052|388053|388054|388055|388056|388057|388058|388059|388060|388061|388062|388063|388064|388065|388066|388067|388068|388069|388070|388071|388072|388073|388074|388075|388076|388077|388078|388079|388080|388081|388082|388083|388084|388085|388086|388087|388088|388089|388090|388091|388092|388093|388094|388095|388096|388097|388098|388099|388100|388101|388102|388103|388104|388105|388106|388107|388108|388109|388110|388111|388112|388113|388114|388115|388116|388117|388118|388119|388120|388121|388122|388123|388124|388125|388126|388127|388128|388129|388130|388131|388132|388133|388134|388135|388136|388137|388138|388139|388140|388141|388142|388143|388144|388145|388146|388147|388148|388149|388150|388151|388152|388153|388154|388155|388156|388157|388158|388159|388160|388161|388162|388163|388164|388165|388166|388167|388168|388169|388170|388171|388172|388173|388174|388175|388176|388177|388178|388179|388180|388181|388182|388183|388184|388185|388186|388187|388188|388189|388190|388191|388192|388193|388194|388195|388196|388197|388198|388199|388200|388201|388202|388203|388204|388205|388206|388207|388208|388209|388210|388211|388212|388213|388214|388215|388216|388217|388218|388219|388220|388221|388222|388223|388224|388225|388226|388227|388228|388229|388230|388231|388232|388233|388234|388235|388236|388237|388238|388239|388240|388241|388242|388243|388244|388245|388246|388247|388248|388249|388250|388251|388252|388253|388254|388255|388256|388257|388258|388259|388260|388261|388262|388263|388264|388265|388266|388267|388268|388269|388270|388271|388272|388273|388274|388275|388276|388277|388278|388279|388280|388281|388282|388283|388284|388285|388286|388287|388288|388289|388290|388291|388292|388293|388294|388295|388296|388297|388298|388299|388300|388301|388302|388303|388304|388305|388306|388307|388308|388309|388310|388311|388312|388313|388314|388315|388316|388317|388318|388319|388320|388321|388322|388323|388324|388325|388326|388327|388328|388329|388330|388331|388332|388333|388334|388335|388336|388337|388338|388339|388340|388341|388342|388343|388344|388345|388346|388347|388348|388349|388350|388351|388352|388353|388354|388355|388356|388357|388358|388359|388360|388361|388362|388363|388364|388365|388366|388367|388368|388369|388370|388371|388372|388373|388374|388375|388376|388377|388378|388379|388380|388381|388382|388383|388384|388385|388386|388387|388388|388389|388390|388391|388392|388393|388394|388395|388396|388397|388398|388399|388400|388401|388402|388403|388404|388405|388406|388407|388408|388409|388410|388411|388412|388413|388414|388415|388416|388417|388418|388419|388420|388421|388422|388423|388424|388425|388426|388427|388428|388429|388430|388431|388432|388433|388434|388435|388436|388437|388438|388439|388440|388441|388442|388443|388444|388445|388446|388447|388448|388449|388450|388451|388452|388453|388454|388455|388456|388457|388458|388459|388460|388461|388462|388463|388464|388465|388466|388467|388468|388469|388470|388471|388472|388473|388474|388475|388476|388477|388478|388479|388480|388481|388482|388483|388484|388485|388486|388487|388488|388489|388490|388491|388492|388493|388494|388495|388496|388497|388498|388499|388500|388501|388502|388503|388504|388505|388506|388507|388508|388509|388510|388511|388512|388513|388514|388515|388516|388517|388518|388519|388520|388521|388522|388523|388524|388525|388526|388527|388528|388529|388530|388531|388532|388533|388534|388535|388536|388537|388538|388539|388540|388541|388542|388543|388544|388545|388546|388547|388548|388549|388550|388551|388552|388553|388554|388555|388556|388557|388558|388559|388560|388561|388562|388563|388564|388565|388566|388567|388568|388569|388570|388571|388572|388573|388574|388575|388576|388577|388578|388579|388580|388581|388582|388583|388584|388585|388586|388587|388588|388589|388590|388591|388592|388593|388594|388595|388596|388597|388598|388599|388600|388601|388602|388603|388604|388605|388606|388607|388608|388609|388610|388611|388612|388613|388614|388615|388616|388617|388618|388619|388620|388621|388622|388623|388624|388625|388626|388627|388628|388629|388630|388631|388632|388633|388634|388635|388636|388637|388638|388639|388640|388641|388642|388643|388644|388645|388646|388647|388648|388649|388650|388651|388652|388653|388654|388655|388656|388657|388658|388659|388660|388661|388662|388663|388664|388665|388666|388667|388668|388669|388670|388671|388672|388673|388674|388675|388676|388677|388678|388679|388680|388681|388682|388683|388684|388685|388686|388687|388688|388689|388690|388691|388692|388693|388694|388695|388696|388697|388698|388699|388700|388701|388702|388703|388704|388705|388706|388707|388708|388709|388710|388711|388712|388713|388714|388715|388716|388717|388718|388719|388720|388721|388722|388723|388724|388725|388726|388727|388728|388729|388730|388731|388732|388733|388734|388735|388736|388737|388738|388739|388740|388741|388742|388743|388744|388745|388746|388747|388748|388749|388750|388751|388752|388753|388754|388755|388756|388757|388758|388759|388760|388761|388762|388763|388764|388765|388766|388767|388768|388769|388770|388771|388772|388773|388774|388775|388776|388777|388778|388779|388780|388781|388782|388783|388784|388785|388786|388787|388788|388789|388790|388791|388792|388793|388794|388795|388796|388797|388798|388799|388800|388801|388802|388803|388804|388805|388806|388807|388808|388809|388810|388811|388812|388813|388814|388815|388816|388817|388818|388819|388820|388821|388822|388823|388824|388825|388826|388827|388828|388829|388830|388831|388832|388833|388834|388835|388836|388837|388838|388839|388840|388841|388842|388843|388844|388845|388846|388847|388848|388849|388850|388851|388852|388853|388854|388855|388856|388857|388858|388859|388860|388861|388862|388863|388864|388865|388866|388867|388868|388869|388870|388871|388872|388873|388874|388875|388876|388877|388878|388879|388880|388881|388882|388883|388884|388885|388886|388887|388888|388889|388890|388891|388892|388893|388894|388895|388896|388897|388898|388899|388900|388901|388902|388903|388904|388905|388906|388907|388908|388909|388910|388911|388912|388913|388914|388915|388916|388917|388918|388919|388920|388921|388922|388923|388924|388925|388926|388927|388928|388929|388930|388931|388932|388933|388934|388935|388936|388937|388938|388939|388940|388941|388942|388943|388944|388945|388946|388947|388948|388949|388950|388951|388952|388953|388954|388955|388956|388957|388958|388959|388960|388961|388962|388963|388964|388965|388966|388967|388968|388969|388970|388971|388972|388973|388974|388975|388976|388977|388978|388979|388980|388981|388982|388983|388984|388985|388986|388987|388988|388989|388990|388991|388992|388993|388994|388995|388996|388997|388998|388999|389000|389001|389002|389003|389004|389005|389006|389007|389008|389009|389010|389011|389012|389013|389014|389015|389016|389017|389018|389019|389020|389021|389022|389023|389024|389025|389026|389027|389028|389029|389030|389031|389032|389033|389034|389035|389036|389037|389038|389039|389040|389041|389042|389043|389044|389045|389046|389047|389048|389049|389050|389051|389052|389053|389054|389055|389056|389057|389058|389059|389060|389061|389062|389063|389064|389065|389066|389067|389068|389069|389070|389071|389072|389073|389074|389075|389076|389077|389078|389079|389080|389081|389082|389083|389084|389085|389086|389087|389088|389092|389093|389094|389095|389096|389097|389098|389099|389100|389101|390677|390678|403112|413172|413183|431651|433589|434934|435197|435198|435199|435200|435201|435202|435203|435204|435205|435206|435207|435208|435209|435210|435211|435212|435213|435214|435215|435216|435217|435218|435219|435220|435221|435222|435223|435224|435225|435226|435227|435228|435229|435230|435231|435232|435233|435234|435235|435236|435237|435238|435239|435240|435241|435242|435243|435244|435245|435246|435247|435248|435249|435250|435251|435252|435253|435254|435255|435256|435257|435258|435259|435260|435261|435262|435263|435264|435265|435266|435267|435268|435269|435270|435271|435272|435273|435274|435275|435276|435277|435278|435279|435280|435281|435282|435283|435284|435285|435286|435287|435288|435289|435290|435291|435292|435293|435294|435295|435296|435297|435298|435299|435300|435301|435302|435303|435304|435305|435306|435307|435308|435309|435310|435311|435312|435313|435314|435315|435316|435317|435318|435319|435320|435321|435322|435323|435324|435325|435326|435327|435328|435329|435330|435331|435332|435333|435334|435335|435336|435337|435338|435339|435340|435341|435342|435343|435344|435345|435346|435347|435348|435349|435350|435351|435352|435353|435354|435355|435356|435357|435358|435359|435360|435361|435362|435363|435364|435365|435366|435367|435368|435369|435370|435371|435372|435373|435374|435375|435376|435377|435378|435379|435380|435381|435382|435383|435384|435385|435386|435387|435388|435389|435390|435391|435392|435393|435394|435395|435396|435397|435398|435399|435400|435401|435402|435403|435404|435405|435406|435407|435408|435409|435410|435411|435412|435413|435414|435415|435416|435417|435418|435419|435420|435421|435422|435423|435424|435425|435426|435427|435428|435429|435430|435431|435432|435433|435434|435435|435436|435437|435438|435439|435440|435441|435442|435443|435444|435445|435446|435447|435448|435449|435450|435451|435452|435453|435454|435455|435456|435457|435458|435459|435460|435461|435462|435463|435464|435465|435466|435467|435468|435469|435470|435471|435472|435473|435474|435475|435476|435477|435478|435479|435480|435481|435482|435483|435484|435485|435486|435487|435488|435489|435490|435491|435492|435493|435494|435495|435496|435497|435498|435499|435500|435501|435502|435503|435504|435505|435506|435507|435508|435509|435510|435511|435512|435513|435514|435515|435516|435517|435518|435519|435520|435521|435522|435523|435524|435525|435526|435527|435528|435529|435530|435531|435532|435533|435534|435535|435536|435537|435538|435539|435540|435541|435542|435543|435544|435545|435546|435547|435548|435549|435550|435551|435552|435553|435554|435555|435556|435557|435558|435559|435560|435561|435562|435563|435564|435565|435566|435567|435568|435569|435570|435571|435572|435573|435574|435575|435576|435577|435578|435579|435580|435581|435582|435583|435584|435585|435586|435587|435588|435589|435590|435591|435592|435593|435594|435595|435596|435597|435598|435599|435600|435601|435602|435603|435604|435605|435606|435607|435608|435609|435610|435611|435612|435613|435614|435615|435616|435617|435618|435619|435620|435621|435622|435623|435624|435625|435626|435627|435628|435629|435630|435631|435632|435633|435634|435635|435636|435637|435638|435639|435640|435641|435642|435643|435644|435645|435646|435647|435648|435649|435650|435651|435652|435653|435654|435655|435656|435657|435658|435659|435660|435661|435662|435663|435664|435665|435666|435667|435668|435669|435670|435671|435672|435673|435674|435675|435676|435677|435678|435679|435680|435681|435682|435683|435684|435685|435686|435687|435688|435689|435690|435691|435692|435693|435694|435695|435696|435697|435698|435699|435700|435701|435702|435703|435704|435705|435706|435707|435708|435709|435710|435711|435712|435713|435714|435715|435716|435717|435718|435719|435720|435721|435722|435723|435724|435725|435726|435727|435728|435729|435730|435731|435732|435733|435734|435735|435736|435737|435738|435739|435740|435741|435742|435743|435744|435745|435746|435747|435748|435749|435750|435751|435752|435753|435754|435755|435756|435757|435758|435759|435760|435761|435762|435763|435764|435765|435766|435767|435768|435769|435770|435771|435772|435773|435774|435775|435776|435777|435778|435779|435780|435781|435782|435783|435784|435785|435786|435787|435788|435789|435790|435791|435792|435793|435794|435795|435796|435797|435798|435799|435800|435801|435802|435803|435804|435805|435806|435807|435808|435809|435810|435811|435812|435813|435814|435815|435816|435817|435818|435819|435820|435821|435822|435823|435824|435825|435826|435827|435828|435829|435830|435831|435832|435833|435834|435835|435836|435837|435838|435839|435840|435841|435842|435843|435844|435845|435846|435847|435848|435849|435850|435851|435852|435853|435854|435855|435856|435857|435858|435859|435860|435861|435862|435863|435864|435865|435866|435867|435868|435869|435870|435871|435872|435873|435874|435875|435876|435877|435878|435879|435880|435881|435882|435883|435884|435885|435886|435887|435888|435889|435890|435891|435892|435893|435894|435895|435896|435897|435898|435899|435900|435901|435902|435903|435904|435905|435906|435907|435908|435909|435910|435911|435912|435913|435914|435915|435916|435917|435918|435919|435920|435921|435922|435923|435924|435925|435926|435927|435928|435929|435930|435931|435932|435933|435934|435935|435936|435937|435938|435939|435940|435941|435942|435943|435944|435945|435946|435947|435948|435949|435950|435951|435952|435953|435954|435955|435956|435957|435958|435959|435960|435961|435962|435963|435964|435965|435966|435967|435968|435969|435970|435971|435972|435973|435974|435975|435976|435977|435978|435979|435980|435981|435982|435983|435984|435985|435986|435987|435988|435989|435990|435991|435992|435993|435994|435995|435996|435997|435998|435999|436000|436001|436002|436003|436004|436005|436006|436007|436008|436009|436010|436011|436012|436013|436014|436015|436016|436017|436018|436019|436020|436021|436022|436023|436024|436025|436026|436027|436028|436029|436030|436031|436032|436033|436034|436035|436036|436037|436038|436039|436040|436041|436042|436043|436044|436045|436046|436047|436048|436049|436050|436051|436052|436053|436054|436055|436056|436057|436058|436059|436060|436061|436062|436063|436064|436065|436066|436067|436068|436069|436070|436071|436072|436073|436074|436075|436076|436077|436078|436079|436080|436081|436082|436083|436084|436085|436086|436087|436088|436089|436090|436091|436092|436093|436094|436095|436096|436097|436098|436099|436100|436101|436102|436103|436104|436105|436106|436107|436108|436109|436110|436111|436112|436113|436114|436115|436116|436117|436118|436119|436120|436121|436122|436123|436124|436125|436126|436127|436128|436129|436130|436131|436132|436133|436134|436135|436136|436137|436138|436139|436140|436141|436142|436143|436144|436145|436146|436147|436148|436149|436150|436151|436152|436153|436154|436155|436156|436157|436158|436159|436160|436161|436162|436163|436164|436165|436166|436167|436168|436169|436170|436171|436172|436173|436174|436175|436176|436177|436178|436179|436180|436181|436182|436183|436184|436185|436186|436187|436188|436189|436190|436191|436192|436193|436194|436195|436196|436197|436198|436199|436200|436201|436202|436203|436204|436205|436206|436207|436208|436209|436210|436211|436212|436213|436214|436215|436216|436217|436218|436219|436220|436221|436222|436223|436224|436225|436226|436227|436228|436229|436230|436231|436232|436233|436234|436235|436236|436237|436238|436239|436240|436241|436242|436243|436244|436245|436246|436247|436248|436249|436250|436251|436252|436253|436254|436255|436256|436257|436258|436259|436260|436261|436262|436263|436264|436265|436266|436267|436268|436269|436270|436271|436272|436273|436274|436275|436276|436277|436278|436279|436280|436281|436282|436283|436284|436285|436286|436287|436288|436289|436290|436291|436292|436293|436294|436295|436296|436297|436298|436299|436300|436301|436302|436303|436304|436305|436306|436307|436308|436309|436310|436311|436312|436313|436314|436315|436316|436317|436318|436319|436320|436321|436322|436323|436324|436325|436326|436327|436328|436329|436330|436331|436332|436333|436334|436335|436336|436337|436338|436339|436340|436341|436342|436343|436344|436345|436346|436347|436348|436349|436350|436351|436352|436353|436354|436355|436356|436357|436358|436359|436360|436361|436362|436363|436364|436365|436366|436367|436368|436369|436370|436371|436372|436373|436374|436375|436376|436377|436378|436379|436380|436381|436382|436383|436384|436385|436386|436387|436388|436389|436390|436391|436392|436393|436394|436395|436396|436397|436398|436399|436400|436401|436402|436403|436404|436405|436406|436407|436408|436409|436410|436411|436412|436413|436414|436415|436416|436417|436418|436419|436420|436421|436422|436423|436424|436425|436426|436427|436428|436429|436430|436431|436432|436433|436434|436435|436436|436437|436438|436439|436440|436441|436442|436443|436444|436445|436446|436447|436448|436449|436450|436451|436452|436453|436454|436455|436456|436457|436458|436459|436460|436461|436462|436463|436464|436465|436466|436467|436468|436469|436470|436471|436472|436473|436474|436475|436476|436477|436478|436479|436480|436481|436482|436483|436484|436485|436486|436487|436488|436489|436490|436491|436492|436493|436494|436495|436496|436497|436498|436499|436500|436501|436502|436503|436504|436505|436506|436507|436508|436509|436510|436511|436512|436513|436514|436515|436516|436517|436518|436519|436520|436521|436522|436523|436524|436525|436526|436527|436528|436529|436530|436531|436532|436533|436534|436535|436536|436537|436538|436539|436540|436541|436542|436543|436544|436545|436546|436547|436548|436549|436550|436551|436552|436553|436554|436555|436556|436557|436558|436559|436560|436561|436562|436563|436564|436565|436566|436567|436568|436569|436570|436571|436572|436573|436574|436575|436576|436577|436578|436579|436580|436581|436582|436583|436584|436585|436586|436587|436588|436589|436590|436591|436592|436593|436594|436595|436596|436597|436598|436599|436600|436601|436602|436603|436604|436605|436606|436607|436608|436609|436610|436611|436612|436613|436614|436615|436616|436617|436618|436619|436620|436621|436622|436623|436624|436625|436626|436627|436628|436629|436630|436631|436632|436633|436634|436635|436636|436637|436638|436639|436640|436641|436642|436643|436644|436645|436646|436647|436648|436649|436650|436651|436652|436653|436654|436655|436656|436657|436658|436659|436660|436661|436662|436663|436664|436665|436666|436667|436668|436669|436670|436671|436672|436673|436674|436675|436676|436677|436678|436679|436680|436681|436682|436683|436684|436685|436686|436687|436688|436689|436690|436691|436692|436693|436694|436695|436696|436697|436698|436699|436700|436701|436702|436703|436704|436705|436706|436707|436708|436709|436710|436711|436712|436713|436714|436715|436716|436717|436718|436719|436720|436721|436722|436723|436724|436725|436726|436727|436728|436729|436730|436731|436732|436733|436734|436735|436736|436737|436738|436739|436740|436741|436742|436743|436744|436745|436746|436747|436748|436749|436750|436751|436752|436753|436754|436755|436756|436757|436758|436759|436760|436761|436762|436763|436764|436765|436766|436767|436768|436769|436770|436771|436772|436773|436774|436775|436776|436777|436778|436779|436780|436781|436782|436783|436784|436785|436786|436787|436788|436789|436790|436791|436792|436793|436794|436795|436796|436797|436798|436799|436800|436801|436802|436803|436804|436805|436806|436807|436808|436809|436810|436811|436812|436813|436814|436815|436816|436817|436818|436819|436820|436821|436822|436823|436824|436825|436826|436827|436828|436829|436830|436831|436832|436833|436834|436835|436836|436837|436838|436839|436840|436841|436842|436843|436844|436845|436846|436847|436848|436849|436850|436851|436852|436853|436854|436855|436856|436857|436858|436859|436860|436861|436862|436863|436864|436865|436866|436867|436868|436869|436870|436871|436872|436873|436874|436875|436876|436877|436878|436879|436880|436881|436882|436883|436884|436885|436886|436887|436888|436889|436890|436891|436892|436893|436894|436895|436896|436897|436898|436899|436900|436901|436902|436903|436904|436905|436906|436907|436908|436909|436910|436911|436912|436913|436914|436915|436916|436917|436918|436919|436920|436921|436922|436923|436924|436925|436926|436927|436928|436929|436930|436931|436932|436933|436934|436935|436936|436937|436938|436939|436940|436941|436942|436943|436944|436945|436946|436947|436948|436949|436950|436951|436952|436953|436954|436955|436956|436957|436958|436959|436960|436961|436962|436963|436964|436965|436966|436967|436968|436969|436970|436971|436972|436973|436974|436975|436976|436977|436978|436979|436980|436981|436982|436983|436984|436985|436986|436987|436988|436989|436990|436991|436992|436993|436994|436995|436996|436997|436998|436999|437000|437001|437002|437003|437004|437005|437006|437007|437008|437009|437010|437011|437012|437013|437014|437015|437016|437017|437018|437019|437020|437021|437022|437023|437024|437025|437026|437027|437028|437029|437030|437031|437032|437033|437034|437035|437036|437037|437038|437039|437040|437041|437042|437043|437044|437045|437046|437047|437048|437049|437050|437051|437052|437053|437054|437055|437056|437057|437058|437059|437060|437061|437062|437063|437064|437065|437066|437067|437068|437069|437070|437071|437072|437073|437074|437075|437076|437077|437078|437079|437080|437081|437082|437083|437084|437085|437086|437087|437088|437089|437090|437091|437092|437093|437094|437095|437096|437097|437098|437099|437100|437101|437102|437103|437104|437105|437106|437107|437108|437109|437110|437111|437112|437113|437114|437115|437116|437117|437118|437119|437120|437121|437122|437123|437124|437125|437126|437127|437128|437129|437130|437131|437132|437133|437134|437135|437136|437137|437138|437139|437140|437141|437142|437143|437144|437145|437146|437147|437148|437149|437150|437151|437152|437153|437154|437155|437156|437157|437158|437159|437160|437161|437162|437163|437164|437165|437166|437167|437168|437169|437170|437171|437172|437173|437174|437175|437176|437177|437178|437179|437180|437181|437182|437183|437184|437185|437186|437187|437188|437189|437190|437191|437192|437193|437194|437195|437196|437197|437198|437199|437200|437201|437202|437203|437204|437205|437206|437207|437208|437209|437210|437211|437212|437213|437214|437215|437216|437217|437218|437219|437220|437221|437222|437223|437224|437225|437226|437227|437228|437229|437230|437231|437232|437233|437234|437235|437236|437237|437238|437239|437240|437241|437242|437243|437244|437245|437246|437247|437248|437249|437250|437251|437252|437253|437254|437255|437256|437257|437258|437259|437260|437261|437262|437263|437264|437265|437266|437267|437268|437269|437270|437271|437272|437273|437274|437275|437276|437277|437278|437279|437280|437281|437282|437283|437284|437285|437286|437287|437288|437289|437290|437291|437292|437293|437294|437295|437296|437297|437298|437299|437300|437301|437302|437303|437304|437305|437306|437307|437308|437309|437310|437311|437312|437313|437314|437315|437316|437317|437318|437319|437320|437321|437322|437323|437324|437325|437326|437327|437328|437329|437330|437331|437332|437333|437334|437335|437336|437337|437338|437339|437340|437341|437342|437343|437344|437345|437346|437347|437348|437349|437350|437351|437352|437353|437354|437355|437356|437357|437358|437359|437360|437361|437362|437363|437364|437365|437366|437367|437368|437369|437370|437371|437372|437373|437374|437375|437376|437377|437378|437379|437380|437381|437382|437383|437384|437385|437386|437387|437388|437389|437390|437391|437392|437393|437394|437395|437396|437397|437398|437399|437400|437401|437402|437403|437404|437405|437406|437407|437408|437409|437410|437411|437412|437413|437414|437415|437416|437417|437418|437419|437420|437421|437422|437423|437424|437425|437426|437427|437428|437429|437430|437431|437432|437433|437434|437435|437436|437437|437438|437439|437440|437441|437442|437443|437444|437445|437446|437447|437448|437449|437450|437451|437452|437453|437454|437455|437456|437457|437458|437459|437460|437461|437462|437463|437464|437465|437466|437467|437468|437469|437470|437471|437472|437473|437474|437475|437476|437477|437478|437479|437480|437481|437482|437483|437484|437485|437486|437487|437488|437489|437490|437491|437492|437493|437494|437495|437496|437497|437498|437499|437500|437501|437502|437503|437504|437505|437506|437507|437508|437509|437510|437511|437512|437513|437514|437515|437516|437517|437518|437519|437520|437521|437522|437523|437524|437525|437526|437527|437528|437529|437530|437531|437532|437533|437534|437535|437536|437537|437538|437539|437540|437541|437542|437543|437544|437545|437546|437547|437548|437549|437550|437551|437552|437553|437554|437555|437556|437557|437558|437559|437560|437561|437562|437563|437564|437565|437566|437567|437568|437569|437570|437571|437572|437573|437574|437575|437576|437577|437578|437579|437580|437581|437582|437583|437584|437585|437586|437587|437588|437589|437590|437591|437592|437593|437594|437595|437596|437597|437598|437599|437600|437601|437602|437603|437604|437605|437606|437607|437608|437609|437610|437611|437612|437613|437614|437615|437616|437617|437618|437619|437620|437621|437622|437623|437624|437625|437626|437627|437628|437629|437630|437631|437632|437633|437634|437635|437636|437637|437638|437639|437640|437641|437642|437643|437644|437645|437646|437647|437648|437649|437650|437651|437652|437653|437654|437655|437656|437657|437658|439758|439759|439760|439761|439762|439763|439764|439765|439766|439767|439768|439769|439770|439771|439772|439773|439774|439775|439776|439777|439778|439779|439780|439781|439782|439783|439784|439785|439786|439787|439788|439789|439790|439791|439792|439793|439794|439795|439796|439797|439798|439799|439800|439801|439802|439803|439804|439805|439806|440221|442470|444039|464005|481568|495012|495013|495014|495015|495016|495017|495018|495019|495020|495021|495022|495023|495024|495025|495026|495027|495028|495029|495030|495031|495032|495033|495034|495035|495036|495037|495038|495039|495040|514087|539446|539447|539448|539449|539450|539451|539452|539453|539454|539455|539456|539457|539458|539459|539460|539461|539462|539463|539464|539465|539466|570424|608933|608934|610268|625916|625917|625918|625919|625920|625921|625922|625923|625924|625925|625926|625927|625928|625929|625930|625931|625932|625933|625934|625935|625936|625937|625938|625939|625940|625941|625942|625943|625944|625945|625946|625947|625948|625949|625950|625951|625952|625953|625954|625955|625956|625957|625958|625959|625960|625961|625962|625963|625964|625965|625993|625994|625997|625998|640108|677561|677864|677959|680941|681598|681717|794226|794227|794228|794229|794230|794231|794232|794233|794234|794235|794236|794237|794238|794239|794240|794241|794242|794243|794244|794245|794246|794247|794248|794249|794250|794262|794263|794264|804684|804685|804686|804687|804688|804689|804690|804691|804692|804693|804694|804695|804696|804697|804698|804699|804700|804701|804702|804703|804704|804705|804706|804707|804708|804709|804710|804711|804712|804713|804714|804715|804716|804717|804718|804719|804720|804721|804722|804723|804724|804725|804726|804727|804728|804729|804730|804731|861668|912411|917632|917634|917635|917636|917637|917638|917639|917640|917641|917642|917643|917644|917645|917646|917647|917648|917649|917651|917652|917654|917655|917656|917657|917658|917659|917661|917662|917664|917665|917666|917667|917668|917669|917670|917671|917672|917673|917674|917675|917676|917677|917678|917679|917680|917681|917682|917683|917684|917685|917686|917688|917689|917690|917691|917692|917693|917694|917695|917696|917697|917698|917699|917700|917701|917702|917703|917705|917706|917707|917708|917709|917710|917711|917712|917713|917714|917715|917716|917717|917718|917719|917720|917722|917723|917724|917725|917726|917727|918143|918144|918145|918146|918147|918148|918149|918150|918151|918568|918613|918631|918647|918694|918696|918704|918705|918755|918759|918774|918861|918869|918930|918938|918963|918970|918986|918987|919018|919023|919040|919101|919102|919139|919188|919189|919241|919247|919248|919250|919251|919264|919285|919364|919381|919382|919383|919460|919495|919498|919565|919566|919591|919599|919644|919666|919669|919674|919697|919773|919810|919846|919977|920066|920067|920076|920077|920078|920079|920080|920099|920110|920119|920120|920139|920147|920158|920167|920181|920188|920197|920217|920250|920264|920299|920321|920327|920333|920364|920381|920385|920423|971239|971240|971241|971242|971243|971244|971245|971246|971247|971248|971249|971250|971251|971252|971253|971254|971255|971256|971257|971258|971259|971260|971261|971262|971263|971264|971265|971266|971267|971268|971269|971270|971271|971272|971273|971274|971275|971276|971277|971278|971348|971349|971350|972514|972516|972517|972518|972519|973053|974453|974568|975718|976535|976536|976537|976538|976539|976540|976541|976542|976543|976544|976545|976546|980833", "text": "See cases" }, { - "baseId": "18684|34005|40176|40177|40177|40178|40179|40180|40180|40181|167374|167374|167376|167873|167873|167874|167874|167875|167875|167876|167877|167877|167878|167879|167880|167880|167882|167882|167883|167883|167884|167884|167885|167885|167886|167886|167887|167888|167888|167889|167889|167892|167892|167893|167894|167894|167895|167896|167897|167898|167898|167899|167899|167900|167901|167902|167902|167903|167903|167904|167905|167905|167906|167906|167907|167907|167908|167909|181421|191091|191092|191724|192147|192857|192857|193065|193347|193872|193872|194083|194083|194498|194653|194692|194712|196329|207263|207263|207264|214197|214197|214198|214199|214200|214201|214202|214203|214204|214204|214205|214206|214207|214208|214208|214209|214210|214211|214212|214213|214214|214215|214216|214217|214218|214219|214220|214221|214222|214223|214224|214224|214225|214226|214227|214228|214229|251950|251953|251954|251954|251957|251957|251958|251958|251959|251959|251960|251962|251962|251963|251963|259826|259826|264270|264270|272778|287347|297460|297465|297467|297468|297471|297473|297473|297474|297478|297479|297483|297485|299540|299542|299543|299544|299544|299546|299556|299564|299565|299570|299571|299577|299578|299580|299581|299585|299603|299605|299615|299618|299627|299627|299629|303712|303714|303717|303718|303719|303719|303723|303726|303729|303730|303744|303744|303745|303745|303747|303747|303749|303753|304022|304023|304024|304060|304062|304066|304067|304067|304089|304091|304094|304095|304098|304109|304125|304126|304127|304127|304128|304129|304136|304137|304138|304138|363746|368168|368170|368486|368487|368653|369882|369882|369909|418964|418965|418966|418967|455192|455193|455194|455631|455638|455640|455643|455647|455653|455878|455885|455896|501209|501350|501355|521204|521461|521469|521796|521797|560329|560331|560333|560333|560335|560337|560339|560341|560343|560345|560458|560460|560462|560464|563172|563173|565134|565136|565141|565142|565154|565158|620196|620197|622879|622880|622881|633955|633957|655663|655663|677420|677420|677421|691858|691859|699082|699082|699084|699084|709906|709906|721448|721448|730360|735090|777461|777461|802155|802156|802157|894219|894220|894221|894222|894223|894224|894225|894226|894227|894228|894229|894230|894231|894232|894233|894234|894235|894236|894237|894238|894239|894240|894241|894242|894243|894244|894245|894246|894247|894248|894249|894250|894251|894252|894253|894254|894255|894256|894257|894258|894259|894260|894261|894262|894263|894264|896100|896101|896102|896103|896104|896105|896106|906243|906244|932913|964822|970418|970483|973007|974485", + "upstreamId": "18684|34005|40176|40177|40177|40178|40179|40180|40180|40181|167374|167374|167376|167873|167873|167874|167874|167875|167875|167876|167877|167877|167878|167879|167880|167880|167882|167882|167883|167883|167884|167884|167885|167885|167886|167886|167887|167888|167888|167889|167889|167892|167892|167893|167894|167894|167895|167896|167897|167898|167898|167899|167899|167900|167901|167902|167902|167903|167903|167904|167905|167905|167906|167906|167907|167907|167908|167909|181421|191091|191092|191724|192147|192857|192857|193065|193347|193872|193872|194083|194083|194498|194653|194692|194712|196329|207263|207263|207264|214197|214197|214198|214199|214200|214201|214202|214203|214204|214204|214205|214206|214207|214208|214208|214209|214210|214211|214212|214213|214214|214215|214216|214217|214218|214219|214220|214221|214222|214223|214224|214224|214225|214226|214227|214228|214229|251950|251953|251954|251954|251957|251957|251958|251958|251959|251959|251960|251962|251962|251963|251963|259826|259826|264270|264270|272778|287347|297460|297465|297467|297468|297471|297473|297473|297474|297478|297479|297483|297485|299540|299542|299543|299544|299544|299546|299556|299564|299565|299570|299571|299577|299578|299580|299581|299585|299603|299605|299615|299618|299627|299627|299629|303712|303714|303717|303718|303719|303719|303723|303726|303729|303730|303744|303744|303745|303745|303747|303747|303749|303753|304022|304023|304024|304060|304062|304066|304067|304067|304089|304091|304094|304095|304098|304109|304125|304126|304127|304127|304128|304129|304136|304137|304138|304138|363746|368168|368170|368486|368487|368653|369882|369882|369909|418964|418965|418966|418967|455192|455193|455194|455631|455638|455640|455643|455647|455653|455878|455885|455896|501209|501350|501355|521204|521461|521469|521796|521797|560329|560331|560333|560333|560335|560337|560339|560341|560343|560345|560458|560460|560462|560464|563172|563173|565134|565136|565141|565142|565154|565158|620196|620197|622879|622880|622881|633955|633957|655663|655663|677420|677420|677421|691858|691859|699082|699082|699084|699084|709906|709906|721448|721448|730360|735090|777461|777461|802155|802156|802157|894219|894220|894221|894222|894223|894224|894225|894226|894227|894228|894229|894230|894231|894232|894233|894234|894235|894236|894237|894238|894239|894240|894241|894242|894243|894244|894245|894246|894247|894248|894249|894250|894251|894252|894253|894254|894255|894256|894257|894258|894259|894260|894261|894262|894263|894264|896100|896101|896102|896103|896104|896105|896106|906243|906244|932913|964822|970418|970483|973007|974485", "text": "Joubert syndrome 17" }, { - "baseId": "18686|18687|18688|102114|193728|193729|236920|236953|270109|270767|326179|335856|335857|342228|342231|342237|342245|343772|343778|343779|343781|343792|343793|343795|364111|377727|377728|465923|465926|505708|588555|644890|644891|644892|653055|688630|693912|693913|740319|875871|875872|875873|875874|875875|875876|875877|875878|875879|875880|875881|875882|875883|876717|921236|957850|957851", + "upstreamId": "18686|18687|18688|102114|193728|193729|236920|236953|270109|270767|326179|335856|335857|342228|342231|342237|342245|343772|343778|343779|343781|343792|343793|343795|364111|377727|377728|465923|465926|505708|588555|644890|644891|644892|653055|688630|693912|693913|740319|875871|875872|875873|875874|875875|875876|875877|875878|875879|875880|875881|875882|875883|876717|921236|957850|957851", "text": "Congenital disorder of glycosylation type 2H" }, { - "baseId": "18689|18690|102416|102417|191963|324738|324741|324743|324749|324755|324758|324761|324762|334329|334332|334338|334351|334353|334354|334362|334363|334369|340973|340976|340982|340983|342439|342441|342447|342448|342452|342470|342471|342472|342475|342478|342479|342488|374208|374222|375222|375233|377345|466338|491141|505254|506200|530104|539192|539193|569919|644374|644375|644376|644377|652552|656356|668432|688554|690136|693828|703566|726507|740034|874956|874957|874958|874959|874960|874961|874962|874963|874964|874965|874966|874967|876645|876646|920358|937353", + "upstreamId": "18689|18690|102416|102417|191963|324738|324741|324743|324749|324755|324758|324761|324762|334329|334332|334338|334351|334353|334354|334362|334363|334369|340973|340976|340982|340983|342439|342441|342447|342448|342452|342470|342471|342472|342475|342478|342479|342488|374208|374222|375222|375233|377345|466338|491141|505254|506200|530104|539192|539193|569919|644374|644375|644376|644377|652552|656356|668432|688554|690136|693828|703566|726507|740034|874956|874957|874958|874959|874960|874961|874962|874963|874964|874965|874966|874967|876645|876646|920358|937353", "text": "COG7 congenital disorder of glycosylation" }, { - "baseId": "18691|18692|40584|40585|101593|101594|101595|192136|205182|335913|335934|335936|342273|342275|343855|374551|375381|375618|445607|466655|505908|568293|570426|570512|570516|644946|644947|644948|644949|688643|726767|755360|771046|785367|791639|844239|844240|844241|903614|919675|949533|949534|960852", + "upstreamId": "18691|18692|40584|40585|101593|101594|101595|192136|205182|335913|335934|335936|342273|342275|343855|374551|375381|375618|445607|466655|505908|568293|570426|570512|570516|644946|644947|644948|644949|688643|726767|755360|771046|785367|791639|844239|844240|844241|903614|919675|949533|949534|960852", "text": "Congenital disorder of glycosylation type 2J" }, { - "baseId": "18691|136760|153138|165849|188286|263276|360903|360957|361048|361051|514173|590984", + "upstreamId": "18691|136760|153138|165849|188286|263276|360903|360957|361048|361051|514173|590984", "text": "Delayed gross motor development" }, { - "baseId": "18693|18694|101806|101807|101808|101809|101810|101813|101814|101815|101816|177623|190561|215543|237184|247139|329735|329736|329737|329741|329745|329752|340023|340035|340043|345725|345726|345729|345733|345736|345737|345741|347121|347131|347132|347134|347138|347143|347146|363851|439037|469054|490998|531758|585912|620603|620604|646662|646663|646664|688827|694183|694184|715669|715670|715671|727399|779830|785730|791825|846165|846166|846167|878337|878338|878339|878340|878341|878342|878343|878344|878345|878346|878347|878348|878349|878350|878351|878352|878353|878354|878355|878356|878357|880572|938212|958293|958294", + "upstreamId": "18693|18694|101806|101807|101808|101809|101810|101813|101814|101815|101816|177623|190561|215543|237184|247139|329735|329736|329737|329741|329745|329752|340023|340035|340043|345725|345726|345729|345733|345736|345737|345741|347121|347131|347132|347134|347138|347143|347146|363851|439037|469054|490998|531758|585912|620603|620604|646662|646663|646664|688827|694183|694184|715669|715670|715671|727399|779830|785730|791825|846165|846166|846167|878337|878338|878339|878340|878341|878342|878343|878344|878345|878346|878347|878348|878349|878350|878351|878352|878353|878354|878355|878356|878357|880572|938212|958293|958294", "text": "COG1 congenital disorder of glycosylation" }, { - "baseId": "18695|18696|18697|18698|18700|18704|18705|18707|18708|18709|18710|326105|326110|335786|342147|342148|343667|343668|614689|614690|620559|875790|875791|875792|875793|875794|875795|875796|875797|875798|875799|875800|875801|875802|875803|875804|876705", + "upstreamId": "18695|18696|18697|18698|18700|18704|18705|18707|18708|18709|18710|326105|326110|335786|342147|342148|343667|343668|614689|614690|620559|875790|875791|875792|875793|875794|875795|875796|875797|875798|875799|875800|875801|875802|875803|875804|876705", "text": "Norum disease" }, { - "baseId": "18699|18701|18703|18711|18712|18713", + "upstreamId": "18699|18701|18703|18711|18712|18713", "text": "Fish-eye disease" }, { - "baseId": "18714|18715|18716|18717|18718|18719|18720|18721|34023|34024|34025|98795|98796|98798|177324|196175|196176|271860|280056|280063|280067|280072|280077|280078|280403|280407|280409|280410|281724|281726|281735|281737|281738|281885|281886|281890|281891|389429|515730|515791|557251|587748|587749|627616|627617|627618|627619|627620|627621|695039|729986|729987|746338|789952|823748|823749|823750|823751|823752|864128|864129|864130|864131|864132|864133|864134|864135|864136|864137|865159|865160|865161|865162|921937|941859|973015", + "upstreamId": "18714|18715|18716|18717|18718|18719|18720|18721|34023|34024|34025|98795|98796|98798|177324|196175|196176|271860|280056|280063|280067|280072|280077|280078|280403|280407|280409|280410|281724|281726|281735|281737|281738|281885|281886|281890|281891|389429|515730|515791|557251|587748|587749|627616|627617|627618|627619|627620|627621|695039|729986|729987|746338|789952|823748|823749|823750|823751|823752|864128|864129|864130|864131|864132|864133|864134|864135|864136|864137|865159|865160|865161|865162|921937|941859|973015", "text": "UDPglucose-4-epimerase deficiency" }, { - "baseId": "18721", + "upstreamId": "18721", "text": "Galactose epimerase deficiency, severe" }, { - "baseId": "18724|18725|18727|18729|18730|18731|18735|18738|18741|18770|18775|18778|18779|18780|32929|45116|45118|48709|78994|80399|171199|171201|171204|171213|171217|172183|181222|181228|181233|181246|181247|181252|181258|187193|198011|198012|198013|198015|228126|228135|228146|228149|228151|228160|228179|228192|228206|230978|230982|243268|245525|245645|245773|245832|245946|246106|246122|246306|246513|281418|354088|354099|402821|434337", + "upstreamId": "18724|18725|18727|18729|18730|18731|18735|18738|18741|18770|18775|18778|18779|18780|32929|45116|45118|48709|78994|80399|171199|171201|171204|171213|171217|172183|181222|181228|181233|181246|181247|181252|181258|187193|198011|198012|198013|198015|228126|228135|228146|228149|228151|228160|228179|228192|228206|230978|230982|243268|245525|245645|245773|245832|245946|246106|246122|246306|246513|281418|354088|354099|402821|434337", "text": "Homozygous familial hypercholesterolemia" }, { - "baseId": "18730|509534", + "upstreamId": "18730|509534", "text": "Internal carotid artery dissection" }, { - "baseId": "18730|31479|360973|360979|485694|509534|677254", + "upstreamId": "18730|31479|360973|360979|485694|509534|677254", "text": "Aortic dissection" }, { - "baseId": "18730|509534", + "upstreamId": "18730|509534", "text": "Carotid artery dissection" }, { - "baseId": "18730|509534", + "upstreamId": "18730|509534", "text": "Carotid artery occlusion" }, { - "baseId": "18730|24258|24628|28692|509534|577760|794275|801188", + "upstreamId": "18730|24258|24628|28692|509534|577760|794275|801188", "text": "Stroke" }, { - "baseId": "18731|18779|45115|45116|45125|78990|171195|171196|171197|171198|171199|171200|171201|171202|171203|171204|171205|171206|171207|171208|171209|171210|171211|171212|171213|171214|171215|171216|171217|171218|171219|171220|171221|171222|171223|171224|172183", + "upstreamId": "18731|18779|45115|45116|45125|78990|171195|171196|171197|171198|171199|171200|171201|171202|171203|171204|171205|171206|171207|171208|171209|171210|171211|171212|171213|171214|171215|171216|171217|171218|171219|171220|171221|171222|171223|171224|172183", "text": "Hypercholesterolaemia" }, { - "baseId": "18740", + "upstreamId": "18740", "text": "FH LEIDEN 1" }, { - "baseId": "18787|18788|101415|101416|101417|101420|102028|102029|102030|177264|177270|192025|207942|236963|237091|268988|270351|270637|312324|312325|312330|312332|312333|312334|312338|312344|312345|318190|318194|318197|318211|318230|318232|318233|323637|323662|323664|324294|324295|324302|324303|324304|324312|324313|324348|324349|324351|324354|324355|324356|324363|325008|325019|325026|325052|325054|325058|325060|325061|325062|325065|329780|329783|331071|331073|361619|371237|371961|371963|372150|372151|372878|373874|441534|481251|489736|503438|514617|525871|526711|526714|577255|584329|589444|639686|640670|656110|687706|692928|692929|702192|768195|784295|787746|837938|839379|839380|839381|867019|867020|867021|867022|867023|867024|867025|867026|867027|867028|867029|867030|867031|867032|867033|867034|867035|867036|867037|867038|867039|867040|867041|926483|940202|956765|960776", + "upstreamId": "18787|18788|101415|101416|101417|101420|102028|102029|102030|177264|177270|192025|207942|236963|237091|268988|270351|270637|312324|312325|312330|312332|312333|312334|312338|312344|312345|318190|318194|318197|318211|318230|318232|318233|323637|323662|323664|324294|324295|324302|324303|324304|324312|324313|324348|324349|324351|324354|324355|324356|324363|325008|325019|325026|325052|325054|325058|325060|325061|325062|325065|329780|329783|331071|331073|361619|371237|371961|371963|372150|372151|372878|373874|441534|481251|489736|503438|514617|525871|526711|526714|577255|584329|589444|639686|640670|656110|687706|692928|692929|702192|768195|784295|787746|837938|839379|839380|839381|867019|867020|867021|867022|867023|867024|867025|867026|867027|867028|867029|867030|867031|867032|867033|867034|867035|867036|867037|867038|867039|867040|867041|926483|940202|956765|960776", "text": "ALG9 congenital disorder of glycosylation" }, { - "baseId": "18789|18790|18791|18792|18793|18794|18795|18796|18797|18798|18799|18800|18801|18802|18803|18804|18805|18806|18807|18808|39583|76508|76509|227033|309712|309715|309716|309717|314566|314567|314569|314571|314572|314573|320639|320640|321156|321157|321166|321169|321178|682859|730676|865585|865586|865587|865588|865589|865590|865591|865592|865593|865594", + "upstreamId": "18789|18790|18791|18792|18793|18794|18795|18796|18797|18798|18799|18800|18801|18802|18803|18804|18805|18806|18807|18808|39583|76508|76509|227033|309712|309715|309716|309717|314566|314567|314569|314571|314572|314573|320639|320640|321156|321157|321166|321169|321178|682859|730676|865585|865586|865587|865588|865589|865590|865591|865592|865593|865594", "text": "Congenital erythropoietic porphyria" }, { - "baseId": "18809|44159|44160|44161|44162|44163|178747|178748|222810|222811|222812|222813|222814|224554|224555|227408|243372|243373|243374|243375|243376|243377|243378|243379|243380|243381|243382|257190|259034|259037|259041|334051|334052|334054|334064|334067|334068|334074|343979|343983|343989|343991|343992|343993|344000|344001|344007|349247|349248|349251|349253|349255|349256|349259|349260|350202|350205|350206|350209|350213|350216|350217|350218|350219|350222|350225|350226|360403|376641|376642|377589|377817|377819|377844|403298|403304|403317|403360|403362|403368|403370|403771|403776|403777|403817|403826|403833|403837|403838|404840|410647|410648|424964|446168|446169|468160|468947|468951|468952|469458|469925|469930|470372|470375|470377|470378|470379|470390|470392|470395|471071|471075|471078|471081|471084|482196|506927|507098|507485|507503|507915|510805|512429|513378|514766|533114|533116|533120|533201|533221|533223|533637|533642|533644|570904|570908|570919|570920|572604|572606|573223|573227|573229|575004|575005|610143|620645|620908|620909|620910|648233|648234|648235|648236|648237|648238|648239|648240|648241|648242|648243|648244|648245|648246|648247|648248|648249|648250|653509|653622|656585|679475|689118|689123|689125|690222|742049|772801|800140|800141|800142|800143|800144|800145|821278|821279|821280|847829|847830|847831|847832|847833|847834|847835|847836|847837|847838|847839|847840|847841|847842|847843|847844|847845|847846|847847|847848|847849|847850|847851|847852|852983|882298|882299|882300|882301|882302|882303|882304|882305|882306|882307|882308|882309|882310|882311|882312|882313|882314|882315|882316|882317|882318|882319|882320|882321|882322|882323|882324|882325|882326|882327|882916|919882|919883|919884|929024|929025|929026|929027|929028|929029|938770|938771|938772|938773|938774|938775|938776|940488|941237|950847|950848|950849|950850|950851|950852|950853|950854|950855|950856|950857|950858|958686|958687|958688|958689|960296|960297|964524|964694", + "upstreamId": "18809|44159|44160|44161|44162|44163|178747|178748|222810|222811|222812|222813|222814|224554|224555|227408|243372|243373|243374|243375|243376|243377|243378|243379|243380|243381|243382|257190|259034|259037|259041|334051|334052|334054|334064|334067|334068|334074|343979|343983|343989|343991|343992|343993|344000|344001|344007|349247|349248|349251|349253|349255|349256|349259|349260|350202|350205|350206|350209|350213|350216|350217|350218|350219|350222|350225|350226|360403|376641|376642|377589|377817|377819|377844|403298|403304|403317|403360|403362|403368|403370|403771|403776|403777|403817|403826|403833|403837|403838|404840|410647|410648|424964|446168|446169|468160|468947|468951|468952|469458|469925|469930|470372|470375|470377|470378|470379|470390|470392|470395|471071|471075|471078|471081|471084|482196|506927|507098|507485|507503|507915|510805|512429|513378|514766|533114|533116|533120|533201|533221|533223|533637|533642|533644|570904|570908|570919|570920|572604|572606|573223|573227|573229|575004|575005|610143|620645|620908|620909|620910|648233|648234|648235|648236|648237|648238|648239|648240|648241|648242|648243|648244|648245|648246|648247|648248|648249|648250|653509|653622|656585|679475|689118|689123|689125|690222|742049|772801|800140|800141|800142|800143|800144|800145|821278|821279|821280|847829|847830|847831|847832|847833|847834|847835|847836|847837|847838|847839|847840|847841|847842|847843|847844|847845|847846|847847|847848|847849|847850|847851|847852|852983|882298|882299|882300|882301|882302|882303|882304|882305|882306|882307|882308|882309|882310|882311|882312|882313|882314|882315|882316|882317|882318|882319|882320|882321|882322|882323|882324|882325|882326|882327|882916|919882|919883|919884|929024|929025|929026|929027|929028|929029|938770|938771|938772|938773|938774|938775|938776|940488|941237|950847|950848|950849|950850|950851|950852|950853|950854|950855|950856|950857|950858|958686|958687|958688|958689|960296|960297|964524|964694", "text": "Progressive familial heart block type IB" }, { - "baseId": "18810|18811|18812|18812|18813|18813|18814|18814|18814|18815|18816|18816|18817|18818|18820|18822|18823|18825|18826|18827|18828|18829|18829|18830|18831|18832|18833|18833|18834|18834|18835|18837|18838|18839|18840|18841|18842|18843|18844|18845|18846|18846|48497|105415|105416|105416|105421|105430|105430|105431|105437|105442|105454|105454|105459|105461|105464|105471|105472|105472|105476|153856|153857|153858|153858|207917|207918|207919|207920|207921|207922|209323|360937|408495|408495|429322|429323|429324|429325|429328|429330|514014|576335|576336|576337|609215|609265|611978|614155|615954|615955|615956|615957|615966|624840|677125|983703", + "upstreamId": "18810|18811|18812|18812|18813|18813|18814|18814|18814|18815|18816|18816|18817|18818|18820|18822|18823|18825|18826|18827|18828|18829|18829|18830|18831|18832|18833|18833|18834|18834|18835|18837|18838|18839|18840|18841|18842|18843|18844|18845|18846|18846|48497|105415|105416|105416|105421|105430|105430|105431|105437|105442|105454|105454|105459|105461|105464|105471|105472|105472|105476|153856|153857|153858|153858|207917|207918|207919|207920|207921|207922|209323|360937|408495|408495|429322|429323|429324|429325|429328|429330|514014|576335|576336|576337|609215|609265|611978|614155|615954|615955|615956|615957|615966|624840|677125|983703", "text": "Tyrosinase-negative oculocutaneous albinism" }, { - "baseId": "18811|18846|18846|32632|104537|105416|360967|428912|429631|431770|431778|431850|431868|918182|918183|918502", + "upstreamId": "18811|18846|18846|32632|104537|105416|360967|428912|429631|431770|431778|431850|431868|918182|918183|918502", "text": "Albinism" }, { - "baseId": "18811|18812|18813|18816|18817|18818|18829|18840|105416|105437|105464|105472|133809|207921|254366|254367|272488|297312|299316|299318|303721|303762|303767|303809|303815|303828|303850|310952|310965|310975|315471|315472|316559|322332|328465|329772|329774|331409|337677|408495|429326|490993|491129|576336|587519|620424|654776|713243|868937|868938|868939|868940|868941|868942|868943|868944|868945|868946|868947", + "upstreamId": "18811|18812|18813|18816|18817|18818|18829|18840|105416|105437|105464|105472|133809|207921|254366|254367|272488|297312|299316|299318|303721|303762|303767|303809|303815|303828|303850|310952|310965|310975|315471|315472|316559|322332|328465|329772|329774|331409|337677|408495|429326|490993|491129|576336|587519|620424|654776|713243|868937|868938|868939|868940|868941|868942|868943|868944|868945|868946|868947", "text": "Oculocutaneous albinism" }, { - "baseId": "18811|18812|18812|18813|18814|18814|18815|18816|18816|18818|18829|18833|18833|18834|18846|18846|105416|105416|105430|105437|105454|105472|153856|153857|153858|408495|609265|677125|789139|789144", + "upstreamId": "18811|18812|18812|18813|18814|18814|18815|18816|18816|18818|18829|18833|18833|18834|18846|18846|105416|105416|105430|105437|105454|105472|153856|153857|153858|408495|609265|677125|789139|789144", "text": "Oculocutaneous albinism type 1B" }, { - "baseId": "18812|18813|18814|18816|18829|18833|18834|18846|105416|105430|105437|105454|105472|408495|682800", + "upstreamId": "18812|18813|18814|18816|18829|18833|18834|18846|105416|105430|105437|105454|105472|408495|682800", "text": "Albinism, ocular, with sensorineural deafness" }, { - "baseId": "18812|18813|18814|18816|18817|18818|18829|18833|18834|18846|105416|105430|105437|105454|105472|408495", + "upstreamId": "18812|18813|18814|18816|18817|18818|18829|18833|18834|18846|105416|105430|105437|105454|105472|408495", "text": "Skin/hair/eye pigmentation, variation in, 3" }, { - "baseId": "18818|18821", + "upstreamId": "18818|18821", "text": "Oculocutaneous albinism type 1, temperature sensitive" }, { - "baseId": "18818|38747|38747|229145|229146|229149|631792|828567|851093", + "upstreamId": "18818|38747|38747|229145|229146|229149|631792|828567|851093", "text": "Cutaneous malignant melanoma 8" }, { - "baseId": "18818", + "upstreamId": "18818", "text": "Skin/hair/eye pigmentation 3, blue/green eyes" }, { - "baseId": "18818", + "upstreamId": "18818", "text": "Autosomal recessive ocular albinism" }, { - "baseId": "18818|19699|19775|23388|23970|27831|28977|29349|29350|32712|39492|45219|46807|46822|47519|47731|50009|50078|50139|50242|50254|50266|50269|50284|66867|67139|67230|69099|69417|70148|97210|132096|132140|132179|132799|133157|133194|133401|133513|133528|133578|133652|133668|138033|138052|138088|138731|139188|139490|150524|151816|151840|152117|152722|180449|180494|180571|180715|181603|222845|241992|242393|242417|242432|245218|252373|267391|273927|299920|332443|338575|364161|398967|400520|402859|404368|408130|429594|457512|457879|460575|475258|488134|614353|623687|639417|645920|672038|677966|677967|677969|677980|781576|791049|921485|963277|963279|965841|969188|974882|975913|975914|976514", + "upstreamId": "18818|19699|19775|23388|23970|27831|28977|29349|29350|32712|39492|45219|46807|46822|47519|47731|50009|50078|50139|50242|50254|50266|50269|50284|66867|67139|67230|69099|69417|70148|97210|132096|132140|132179|132799|133157|133194|133401|133513|133528|133578|133652|133668|138033|138052|138088|138731|139188|139490|150524|151816|151840|152117|152722|180449|180494|180571|180715|181603|222845|241992|242393|242417|242432|245218|252373|267391|273927|299920|332443|338575|364161|398967|400520|402859|404368|408130|429594|457512|457879|460575|475258|488134|614353|623687|639417|645920|672038|677966|677967|677969|677980|781576|791049|921485|963277|963279|965841|969188|974882|975913|975914|976514", "text": "Malignant tumor of breast" }, { - "baseId": "18846", + "upstreamId": "18846", "text": "Hypopigmentation of hair" }, { - "baseId": "18846|188865|513965|514039", + "upstreamId": "18846|188865|513965|514039", "text": "Horizontal nystagmus" }, { - "baseId": "18846", + "upstreamId": "18846", "text": "Hypopigmentation of the skin" }, { - "baseId": "18846", + "upstreamId": "18846", "text": "Iris transillumination defect" }, { - "baseId": "18846|32418|33288|105416|223747|354298|360977|360978|360984|361099|513923|513982", + "upstreamId": "18846|32418|33288|105416|223747|354298|360977|360978|360984|361099|513923|513982", "text": "Myopia (disease)" }, { - "baseId": "18847|18849|18850|18851|18852|18853|18854", + "upstreamId": "18847|18849|18850|18851|18852|18853|18854", "text": "Chediak-Higashi syndrome, childhood type" }, { - "baseId": "18847|18848|18849|18850|18851|18852|18853|18854|18855|18856|49401|76437|76438|76441|76443|76444|76446|76447|76448|76449|76450|76451|76452|76453|76454|76455|76456|76457|76458|76460|178787|178788|178789|178790|178791|178792|178793|178794|178795|178796|178797|206772|206773|206775|206776|206778|206780|236927|237053|237263|237316|249778|249779|249780|249781|249782|249783|249785|249786|249787|249788|249790|249791|249795|249797|249798|249800|249801|249802|249803|249804|249805|249806|249807|249808|249809|249810|249811|279647|279648|279650|279651|279652|279655|279656|279660|279662|279666|279668|279669|279670|279674|279678|279680|279684|279686|279690|279692|279693|279695|279696|279698|279703|279704|279708|279710|279879|279880|279882|279884|279885|279886|279888|279890|279891|279892|279896|279898|279900|279906|279908|279909|279910|279911|279912|279916|279918|279925|279926|279929|279939|279951|279954|279957|279958|279959|279969|279971|279972|279980|279981|279983|279993|279996|279997|279998|279999|281246|281247|281248|281252|281254|281265|281270|281272|281273|281276|281281|281282|281283|281290|281291|281293|281301|281303|281304|281308|281309|281310|281313|281314|281315|281316|281318|281343|281344|281357|281363|281369|281374|281376|281392|281394|281395|281408|281409|281417|281425|281426|281429|281430|281434|281442|281444|281449|281451|281452|281455|281471|281476|281486|281493|281498|281499|281503|281514|281515|281516|389398|405089|414777|414778|427726|427727|427728|427729|442745|442748|447572|447578|447582|447742|447745|447751|447755|447860|447864|493091|512802|512803|512888|512889|515515|515516|515522|515524|515525|515529|515535|515536|515539|515543|515545|515546|515574|515575|515579|515580|515582|515584|515592|515593|515597|515599|515600|515601|515602|515603|515605|515607|515608|515610|515616|515618|515620|515622|515628|515630|515632|515635|515636|515640|515646|515648|515650|515655|515660|515665|515666|515675|515680|515681|515683|515685|515686|553133|553134|556804|556806|556807|556809|556811|556813|556815|556817|556819|557132|557134|557136|557138|557140|557142|557144|557146|557148|557150|557152|557183|557185|557187|557189|557191|557193|557195|557197|557199|558365|558367|558369|558371|558373|614210|614211|614212|614213|619992|624181|627447|627448|627449|627450|627451|627452|627453|627454|627455|627456|627457|627458|627459|627460|627461|627462|627463|627464|627465|627466|627467|627468|627469|627470|627471|627472|627473|627474|627475|627476|627477|627478|627479|627480|627481|627482|627483|627484|627485|627486|627487|627488|627489|627490|627491|627492|627493|627494|627495|627496|627497|627498|627499|627500|627501|627502|627503|627504|627505|627506|627507|627508|650688|690517|690519|690520|690523|690524|690525|690526|690527|690528|690531|690532|690534|695034|695035|696583|696584|696586|707223|707224|707226|707227|707231|718807|718810|718811|729983|732277|732280|732281|732282|746297|746299|758891|761722|761724|761730|780604|780609|780610|789945|789946|789947|792715|794611|794612|802119|816438|818935|823548|823549|823550|823551|823552|823553|823554|823555|823556|823557|823558|823559|823560|823561|823562|823563|823564|823565|823566|823567|823568|823569|823570|823571|823572|823573|823574|823575|823576|823577|823578|823579|823580|823581|823582|823583|823584|823585|823586|823587|823588|823589|823590|823591|823592|823593|823594|823595|823596|823597|823598|823599|823600|823601|823602|823603|823604|823605|823606|823607|823608|823609|823610|850755|850757|851289|863920|863921|863922|863923|863924|863925|863927|863928|863929|863930|863931|863932|863933|863934|863935|863936|863937|863938|863939|863940|863941|863942|863943|863944|863945|863946|863947|863948|863949|863950|863951|863952|863953|863954|863955|863956|863957|863958|863959|863960|863961|863962|863963|863964|863965|863966|863967|863968|865140|865141|865142|865143|865144|865145|865146|920141|921870|921871|921872|921873|921874|921875|921876|921877|921878|921879|921880|921881|921882|921883|921884|921885|921886|921887|921888|930356|930357|930358|930359|930360|930361|930362|930363|930364|930365|930366|930367|930368|930369|930370|930371|930372|930373|930374|930375|930376|930377|930378|940622|940623|941783|941784|941785|941786|941787|941788|941789|941790|941791|941792|941793|941794|941795|941796|941797|941798|941799|941800|941801|941802|941803|941804|941805|941806|941807|952309|952310|952311|952312|952313|952314|952315|952316|952317|952318|952319|952320|952321|952322|952323|960423|961924", + "upstreamId": "18847|18848|18849|18850|18851|18852|18853|18854|18855|18856|49401|76437|76438|76441|76443|76444|76446|76447|76448|76449|76450|76451|76452|76453|76454|76455|76456|76457|76458|76460|178787|178788|178789|178790|178791|178792|178793|178794|178795|178796|178797|206772|206773|206775|206776|206778|206780|236927|237053|237263|237316|249778|249779|249780|249781|249782|249783|249785|249786|249787|249788|249790|249791|249795|249797|249798|249800|249801|249802|249803|249804|249805|249806|249807|249808|249809|249810|249811|279647|279648|279650|279651|279652|279655|279656|279660|279662|279666|279668|279669|279670|279674|279678|279680|279684|279686|279690|279692|279693|279695|279696|279698|279703|279704|279708|279710|279879|279880|279882|279884|279885|279886|279888|279890|279891|279892|279896|279898|279900|279906|279908|279909|279910|279911|279912|279916|279918|279925|279926|279929|279939|279951|279954|279957|279958|279959|279969|279971|279972|279980|279981|279983|279993|279996|279997|279998|279999|281246|281247|281248|281252|281254|281265|281270|281272|281273|281276|281281|281282|281283|281290|281291|281293|281301|281303|281304|281308|281309|281310|281313|281314|281315|281316|281318|281343|281344|281357|281363|281369|281374|281376|281392|281394|281395|281408|281409|281417|281425|281426|281429|281430|281434|281442|281444|281449|281451|281452|281455|281471|281476|281486|281493|281498|281499|281503|281514|281515|281516|389398|405089|414777|414778|427726|427727|427728|427729|442745|442748|447572|447578|447582|447742|447745|447751|447755|447860|447864|493091|512802|512803|512888|512889|515515|515516|515522|515524|515525|515529|515535|515536|515539|515543|515545|515546|515574|515575|515579|515580|515582|515584|515592|515593|515597|515599|515600|515601|515602|515603|515605|515607|515608|515610|515616|515618|515620|515622|515628|515630|515632|515635|515636|515640|515646|515648|515650|515655|515660|515665|515666|515675|515680|515681|515683|515685|515686|553133|553134|556804|556806|556807|556809|556811|556813|556815|556817|556819|557132|557134|557136|557138|557140|557142|557144|557146|557148|557150|557152|557183|557185|557187|557189|557191|557193|557195|557197|557199|558365|558367|558369|558371|558373|614210|614211|614212|614213|619992|624181|627447|627448|627449|627450|627451|627452|627453|627454|627455|627456|627457|627458|627459|627460|627461|627462|627463|627464|627465|627466|627467|627468|627469|627470|627471|627472|627473|627474|627475|627476|627477|627478|627479|627480|627481|627482|627483|627484|627485|627486|627487|627488|627489|627490|627491|627492|627493|627494|627495|627496|627497|627498|627499|627500|627501|627502|627503|627504|627505|627506|627507|627508|650688|690517|690519|690520|690523|690524|690525|690526|690527|690528|690531|690532|690534|695034|695035|696583|696584|696586|707223|707224|707226|707227|707231|718807|718810|718811|729983|732277|732280|732281|732282|746297|746299|758891|761722|761724|761730|780604|780609|780610|789945|789946|789947|792715|794611|794612|802119|816438|818935|823548|823549|823550|823551|823552|823553|823554|823555|823556|823557|823558|823559|823560|823561|823562|823563|823564|823565|823566|823567|823568|823569|823570|823571|823572|823573|823574|823575|823576|823577|823578|823579|823580|823581|823582|823583|823584|823585|823586|823587|823588|823589|823590|823591|823592|823593|823594|823595|823596|823597|823598|823599|823600|823601|823602|823603|823604|823605|823606|823607|823608|823609|823610|850755|850757|851289|863920|863921|863922|863923|863924|863925|863927|863928|863929|863930|863931|863932|863933|863934|863935|863936|863937|863938|863939|863940|863941|863942|863943|863944|863945|863946|863947|863948|863949|863950|863951|863952|863953|863954|863955|863956|863957|863958|863959|863960|863961|863962|863963|863964|863965|863966|863967|863968|865140|865141|865142|865143|865144|865145|865146|920141|921870|921871|921872|921873|921874|921875|921876|921877|921878|921879|921880|921881|921882|921883|921884|921885|921886|921887|921888|930356|930357|930358|930359|930360|930361|930362|930363|930364|930365|930366|930367|930368|930369|930370|930371|930372|930373|930374|930375|930376|930377|930378|940622|940623|941783|941784|941785|941786|941787|941788|941789|941790|941791|941792|941793|941794|941795|941796|941797|941798|941799|941800|941801|941802|941803|941804|941805|941806|941807|952309|952310|952311|952312|952313|952314|952315|952316|952317|952318|952319|952320|952321|952322|952323|960423|961924", "text": "Ch\u00e9diak-Higashi syndrome" }, { - "baseId": "18848|18855|18856", + "upstreamId": "18848|18855|18856", "text": "Chediak-Higashi syndrome, adult type" }, { - "baseId": "18857|18858|39571|39572|39573|39574|39575|39576|39577|39578|55236|55237|55239|55244|55245|55246|55247|98402|98403|98404|98405|98406|98407|98408|98409|98411|98412|98413|98414|98415|98416|98417|98418|98419|98421|98422|99987|137043|175007|175287|175289|177147|186914|186915|186916|186917|186918|186919|186920|186921|186922|186923|190219|191485|192182|194271|196153|204567|208128|208129|227363|253829|253830|255097|255100|255102|255106|260059|260060|265194|265196|270775|270902|271824|274192|310742|310745|310771|310806|310808|310811|316006|316010|316044|316047|316063|321644|321645|321646|321654|321666|321668|321669|321670|321675|321677|322088|322102|322108|322109|322147|322165|322166|322713|322714|322725|322726|322729|322738|322776|330918|330920|330922|330924|330925|330929|330932|330933|330942|337614|337616|337617|337621|337625|337628|337629|337634|337636|337638|337640|339667|339668|339676|339677|339682|339688|339691|339693|339694|339704|339705|339708|339713|339714|353137|353139|353147|353148|353153|353950|358250|358251|358252|358253|358254|358255|358256|358257|358258|358259|358260|358261|358262|358263|358264|358265|358266|358267|358268|358269|358270|360963|360964|361555|373233|376263|389160|409161|421997|426078|426079|426080|427116|437975|445261|462970|463553|463573|463579|464160|464162|464165|487742|488223|513346|527841|536217|540599|547295|547298|547300|547308|547309|547311|547313|547315|547320|547321|547335|547352|547353|547355|547358|547363|547366|547367|547370|547372|547373|547374|547378|547384|547392|547400|547401|547402|547403|547416|547433|547435|547437|547440|547447|547448|547587|547597|547600|547602|547604|547608|547612|547621|547625|547629|547634|547636|547644|547651|547653|547868|547875|547884|547885|547890|547891|547895|547900|547910|547913|547914|547919|547920|547923|547929|547935|549457|549458|549460|549464|549718|549723|569058|569063|583123|612306|612999|620863|621479|621480|621481|622906|642770|642771|642772|642773|642774|642775|642776|652326|652480|652895|693615|693616|693617|693618|703005|714257|725845|730959|739362|754187|754188|754191|769936|769937|769938|769939|769940|769941|769942|769944|769945|775958|775960|776030|776032|784800|784801|784802|784804|784805|784806|787978|788146|791426|791427|791428|792674|818398|818399|818711|820653|820654|820655|820656|820657|820658|841872|841873|841874|841875|841876|841877|841878|851591|852570|858696|861138|872826|872827|872828|872829|872830|872831|872832|872833|872834|872835|872836|872837|872838|872839|872840|872841|872842|872843|872844|872845|872846|872847|872848|872849|872850|872851|876460|876461|904182|904217|919548|920337|927190|927191|936756|936757|936758|948711|948712|957326|957327|957328|957329|964417|969127|979532|979533|979534|979535|979536|979537|979538|979539|979540|979541|979542|979543|979544|979545|979546|979547|979548|979549|979550|979551|979552|984266", + "upstreamId": "18857|18858|39571|39572|39573|39574|39575|39576|39577|39578|55236|55237|55239|55244|55245|55246|55247|98402|98403|98404|98405|98406|98407|98408|98409|98411|98412|98413|98414|98415|98416|98417|98418|98419|98421|98422|99987|137043|175007|175287|175289|177147|186914|186915|186916|186917|186918|186919|186920|186921|186922|186923|190219|191485|192182|194271|196153|204567|208128|208129|227363|253829|253830|255097|255100|255102|255106|260059|260060|265194|265196|270775|270902|271824|274192|310742|310745|310771|310806|310808|310811|316006|316010|316044|316047|316063|321644|321645|321646|321654|321666|321668|321669|321670|321675|321677|322088|322102|322108|322109|322147|322165|322166|322713|322714|322725|322726|322729|322738|322776|330918|330920|330922|330924|330925|330929|330932|330933|330942|337614|337616|337617|337621|337625|337628|337629|337634|337636|337638|337640|339667|339668|339676|339677|339682|339688|339691|339693|339694|339704|339705|339708|339713|339714|353137|353139|353147|353148|353153|353950|358250|358251|358252|358253|358254|358255|358256|358257|358258|358259|358260|358261|358262|358263|358264|358265|358266|358267|358268|358269|358270|360963|360964|361555|373233|376263|389160|409161|421997|426078|426079|426080|427116|437975|445261|462970|463553|463573|463579|464160|464162|464165|487742|488223|513346|527841|536217|540599|547295|547298|547300|547308|547309|547311|547313|547315|547320|547321|547335|547352|547353|547355|547358|547363|547366|547367|547370|547372|547373|547374|547378|547384|547392|547400|547401|547402|547403|547416|547433|547435|547437|547440|547447|547448|547587|547597|547600|547602|547604|547608|547612|547621|547625|547629|547634|547636|547644|547651|547653|547868|547875|547884|547885|547890|547891|547895|547900|547910|547913|547914|547919|547920|547923|547929|547935|549457|549458|549460|549464|549718|549723|569058|569063|583123|612306|612999|620863|621479|621480|621481|622906|642770|642771|642772|642773|642774|642775|642776|652326|652480|652895|693615|693616|693617|693618|703005|714257|725845|730959|739362|754187|754188|754191|769936|769937|769938|769939|769940|769941|769942|769944|769945|775958|775960|776030|776032|784800|784801|784802|784804|784805|784806|787978|788146|791426|791427|791428|792674|818398|818399|818711|820653|820654|820655|820656|820657|820658|841872|841873|841874|841875|841876|841877|841878|851591|852570|858696|861138|872826|872827|872828|872829|872830|872831|872832|872833|872834|872835|872836|872837|872838|872839|872840|872841|872842|872843|872844|872845|872846|872847|872848|872849|872850|872851|876460|876461|904182|904217|919548|920337|927190|927191|936756|936757|936758|948711|948712|957326|957327|957328|957329|964417|969127|979532|979533|979534|979535|979536|979537|979538|979539|979540|979541|979542|979543|979544|979545|979546|979547|979548|979549|979550|979551|979552|984266", "text": "Galactosylceramide beta-galactosidase deficiency" }, { - "baseId": "18859|18860|18861|18862|18863|135830|198633|207983|318038|318043|318045|318046|318048|318049|318051|318052|318054|325941|325951|325952|325954|325955|325956|325958|332173|332177|332183|332193|332202|332205|332207|332209|332216|333664|333668|333678|333682|333689|364038|527277|527816|565627|571934|587801|609848|610989|610990|610991|612297|626219|641279|641280|641281|713637|738748|753503|753504|791260|791261|791262|840109|840110|840111|852693|870179|870180|870181|870182|870183|870184|870185|870186|870187|870188|870189|872269|872270|919457|936193|948108|948109|966600|976593|977258|980126", + "upstreamId": "18859|18860|18861|18862|18863|135830|198633|207983|318038|318043|318045|318046|318048|318049|318051|318052|318054|325941|325951|325952|325954|325955|325956|325958|332173|332177|332183|332193|332202|332205|332207|332209|332216|333664|333668|333678|333682|333689|364038|527277|527816|565627|571934|587801|609848|610989|610990|610991|612297|626219|641279|641280|641281|713637|738748|753503|753504|791260|791261|791262|840109|840110|840111|852693|870179|870180|870181|870182|870183|870184|870185|870186|870187|870188|870189|872269|872270|919457|936193|948108|948109|966600|976593|977258|980126", "text": "Isolated sulfite oxidase deficiency" }, { - "baseId": "18864|18865|18866|18867|18868|18869|18870|18871|18872|18873|18874|18875|18876|39568|39569|39570|139962|139963|187076|187077|190704|193358|194253|200232|200233|200235|200238|200239|200240|200242|200243|200244|200245|200246|200249|254431|254432|264511|316178|316179|316182|316183|316184|323453|323454|323457|323467|329678|329680|329681|329685|330864|330879|330885|330887|330889|330893|330895|330899|358092|358093|358094|358095|358096|358097|358098|358099|358100|358101|358102|358103|358104|358105|358106|371838|372575|372579|372583|374627|408539|415324|425953|425954|425955|444933|461861|462210|462446|462448|462457|526689|526696|526703|526705|526938|526939|527265|527266|546657|546660|546661|546663|546670|546675|546681|546684|546689|546851|546853|546960|546964|546971|546973|546975|546986|546995|546998|547004|547005|547009|547011|547191|547193|547195|547197|547199|547201|547203|566280|571301|612095|640654|640655|640656|640657|652211|702167|738495|753156|839352|839353|839354|839355|839356|839357|851929|852438|869378|869379|869380|869381|869382|869383|869384|869385|869386|869387|869388|869389|869390|869391|869392|869393|869394|872193|872194|926477|926478|935930|940245|947797|947798|947799|956758|956759|956760|956761|961803", + "upstreamId": "18864|18865|18866|18867|18868|18869|18870|18871|18872|18873|18874|18875|18876|39568|39569|39570|139962|139963|187076|187077|190704|193358|194253|200232|200233|200235|200238|200239|200240|200242|200243|200244|200245|200246|200249|254431|254432|264511|316178|316179|316182|316183|316184|323453|323454|323457|323467|329678|329680|329681|329685|330864|330879|330885|330887|330889|330893|330895|330899|358092|358093|358094|358095|358096|358097|358098|358099|358100|358101|358102|358103|358104|358105|358106|371838|372575|372579|372583|374627|408539|415324|425953|425954|425955|444933|461861|462210|462446|462448|462457|526689|526696|526703|526705|526938|526939|527265|527266|546657|546660|546661|546663|546670|546675|546681|546684|546689|546851|546853|546960|546964|546971|546973|546975|546986|546995|546998|547004|547005|547009|547011|547191|547193|547195|547197|547199|547201|547203|566280|571301|612095|640654|640655|640656|640657|652211|702167|738495|753156|839352|839353|839354|839355|839356|839357|851929|852438|869378|869379|869380|869381|869382|869383|869384|869385|869386|869387|869388|869389|869390|869391|869392|869393|869394|872193|872194|926477|926478|935930|940245|947797|947798|947799|956758|956759|956760|956761|961803", "text": "Deficiency of butyryl-CoA dehydrogenase" }, { - "baseId": "18877|18878|18879|18881|39566|39567|317122|317130|317132|317133|317142|317144|317145|317147|317148|317155|317165|324863|324864|324865|324868|324869|324882|324888|324889|324890|324892|324898|330964|330968|330973|330974|330979|330980|330993|330997|330998|331003|331004|331015|331026|332474|332478|332483|332492|332502|332509|332517|332519|332521|332522|332535|332544|332554|332556|332559|332560|462136|462177|462461|462467|462973|527166|527171|527705|527710|527713|527720|527727|565482|566839|571864|571871|641133|641134|641135|641136|641137|641138|641139|652490|652491|725089|725090|753364|769120|839927|839928|839929|839930|839931|839932|839933|858638|869817|869818|869819|869820|869821|869822|869823|869824|869825|869826|869827|869828|869829|869830|869831|869832|869833|869834|869835|869836|869837|869838|869839|869840|869841|872240|872241|918164|918165|926631|926632|936123|948020|948021|948022|948023|948024|956872", + "upstreamId": "18877|18878|18879|18881|39566|39567|317122|317130|317132|317133|317142|317144|317145|317147|317148|317155|317165|324863|324864|324865|324868|324869|324882|324888|324889|324890|324892|324898|330964|330968|330973|330974|330979|330980|330993|330997|330998|331003|331004|331015|331026|332474|332478|332483|332492|332502|332509|332517|332519|332521|332522|332535|332544|332554|332556|332559|332560|462136|462177|462461|462467|462973|527166|527171|527705|527710|527713|527720|527727|565482|566839|571864|571871|641133|641134|641135|641136|641137|641138|641139|652490|652491|725089|725090|753364|769120|839927|839928|839929|839930|839931|839932|839933|858638|869817|869818|869819|869820|869821|869822|869823|869824|869825|869826|869827|869828|869829|869830|869831|869832|869833|869834|869835|869836|869837|869838|869839|869840|869841|872240|872241|918164|918165|926631|926632|936123|948020|948021|948022|948023|948024|956872", "text": "Immunodeficiency due to interleukin-1 receptor-associated kinase-4 deficiency" }, { - "baseId": "18880", + "upstreamId": "18880", "text": "Invasive pneumococcal disease, recurrent isolated" }, { - "baseId": "18881", + "upstreamId": "18881", "text": "Invasive pneumococcal disease, recurrent isolated, 1" }, { - "baseId": "18882|18885|18886|18887|18888|18889|18890|18891|18892|18893|18894|18895|18896|18897|18898|18899|18900|18901|18902|18903|18904|18905|44363|44364|44365|44366|44367|44368|44369|44370|44371|44372|44373|44374|44375|44376|44377|44378|44379|44380|44381|44382|44383|44384|44385|44386|44387|44388|44389|44391|44392|44393|44394|44395|44396|44397|44398|44399|44400|94514|94515|98297|98298|98299|98300|98301|98302|166061|166063|166064|166065|167775|167777|167779|167780|167781|167783|167784|167785|167786|167789|167790|167792|167794|167798|167799|167801|167802|167803|167804|171156|186873|186874|186875|186876|186877|186878|186879|186880|186881|186882|186883|186884|186885|186886|186887|186888|186889|186890|186891|186892|186893|186894|186895|186896|186897|186898|186899|186900|186901|186902|186903|186904|186905|186906|186907|186908|186909|186910|186911|186912|191132|194784|205174|208046|208047|208048|208049|227353|247315|254862|254863|254864|254865|254866|254870|254871|267145|267152|268909|270118|270120|272479|273702|319950|319951|319959|319960|319971|319973|319974|319978|319981|319985|328486|328488|328496|328499|328503|328505|328507|328509|328511|328530|328532|328533|328541|328542|328544|328545|328546|328547|328550|334987|334989|334993|334994|335004|335006|335007|335009|335010|335011|335019|335026|335032|335033|335037|335040|335041|335046|336837|336841|336847|336848|336857|336858|336859|336871|336872|336878|336880|336885|336886|336892|336898|336899|336904|336912|336914|336917|336934|358211|358212|358213|358214|358215|358216|358217|358218|358219|358220|358221|358222|358223|358224|358225|358226|358227|358228|358229|358230|358231|358232|358233|358234|358235|358236|358237|358238|358239|358240|358241|358242|358243|360952|372860|372863|373572|373583|373861|373869|375694|375695|375697|404813|409035|409037|409038|411516|415377|421962|421963|424263|426047|433130|433132|433133|437956|437957|462961|462964|463322|463368|463372|463374|463931|463937|463941|487515|487522|487523|487525|487532|487600|487603|487606|487611|487612|487706|487715|487729|487755|487764|487771|492114|504277|504294|504566|505197|512064|514657|527794|527795|527801|527802|527820|527823|527824|527826|527827|528156|528160|528164|540598|546955|546961|546963|546965|546966|546968|546978|546980|546985|546994|546999|547000|547002|547007|547008|547010|547019|547022|547024|547026|547030|547032|547043|547047|547049|547051|547053|547056|547057|547061|547062|547066|547068|547071|547073|547075|547093|547095|547148|547157|547163|547167|547171|547174|547176|547179|547181|547182|547184|547190|547194|547196|547198|547200|547204|547214|547216|547218|547220|547225|547228|547230|547232|547243|547249|547250|547275|547277|547279|547283|547285|547286|547288|547297|547299|547305|547312|547318|547322|547325|547326|547332|547334|547336|547340|547341|547344|547347|547349|547360|547362|547364|547368|547369|547371|547375|547377|547379|547381|547394|547396|547398|547406|547407|547408|547409|547558|547560|547565|547574|547584|547590|547591|547596|547605|547610|547613|547614|547618|547620|547622|547632|547638|547641|547646|547650|547656|547681|547684|547693|547695|547697|547699|547701|547703|547706|547709|547711|547725|547738|547740|547741|547743|547748|547763|566175|566177|567723|567742|568626|568632|568633|581768|581769|609310|609311|609312|609313|609314|609872|609873|609876|609877|612098|612356|620474|620859|621454|621456|621457|621458|621460|621462|621463|621464|621467|621470|621471|621472|621473|621474|626222|626223|642029|642030|642031|642032|642033|642034|642035|642036|642037|642038|642039|642040|642041|642042|642043|642044|642045|642046|642047|642048|642049|642050|642051|642052|642053|652517|652542|652545|652799|652845|656207|688177|688178|688179|693395|702722|725509|725510|725511|753864|753866|753868|753869|753870|753871|753872|760083|760277|769588|769589|769593|769597|769598|769599|769601|769602|769603|769605|769606|769608|769609|769610|769611|769613|769614|775950|776227|776233|784616|784617|784619|784622|784623|784624|784625|784626|784627|784628|787961|788128|788877|791375|791376|791377|796948|796949|796954|796960|799741|799742|799743|799744|799745|799746|799747|799748|799749|799750|800960|801721|820584|820585|820586|820587|820588|840980|840981|840982|840983|840984|840985|840986|840987|840988|840989|840990|840991|840992|840993|840994|840995|840996|840997|840998|840999|841000|841001|841002|841003|841004|851539|851541|851979|871411|871412|871413|871414|871415|871416|871417|871418|871419|871420|871421|871422|871423|871424|871425|871426|871427|871428|871429|871430|871431|871432|871433|871434|871435|871436|871437|871438|871439|871440|871441|871442|871443|871444|871445|871446|871447|871448|871449|871450|871451|871452|871453|871454|871455|871456|872346|905946|905947|906027|906029|906031|915047|917172|917175|917177|917515|919500|920326|926943|926944|926945|926946|926947|936479|936480|936481|936482|936483|936484|936485|936486|940293|948408|948409|948410|948411|948412|948413|948414|948415|948416|957120|957121|957122|957123|957124|957125|957126|957127|957128|957129|957130|957131|957132|961872|963291|965207|969177|972185|972186|972187|972188|972189|972190|972191|972192|972193|972194|972195|972196|972197|974454|979384|979385|979386|979387|979388|979389|979390|979391|979392|979393|979394|979395|979396|979397|979398|979399|979400|979401|979402|979403|979404|979405|979406|979407|979408|979409|979410|979411|979412|979413|979414|979415|979416|979417|980186|980187|981838|981839|981840|981841|981842|981843|981844|983700|983764|983985", + "upstreamId": "18882|18885|18886|18887|18888|18889|18890|18891|18892|18893|18894|18895|18896|18897|18898|18899|18900|18901|18902|18903|18904|18905|44363|44364|44365|44366|44367|44368|44369|44370|44371|44372|44373|44374|44375|44376|44377|44378|44379|44380|44381|44382|44383|44384|44385|44386|44387|44388|44389|44391|44392|44393|44394|44395|44396|44397|44398|44399|44400|94514|94515|98297|98298|98299|98300|98301|98302|166061|166063|166064|166065|167775|167777|167779|167780|167781|167783|167784|167785|167786|167789|167790|167792|167794|167798|167799|167801|167802|167803|167804|171156|186873|186874|186875|186876|186877|186878|186879|186880|186881|186882|186883|186884|186885|186886|186887|186888|186889|186890|186891|186892|186893|186894|186895|186896|186897|186898|186899|186900|186901|186902|186903|186904|186905|186906|186907|186908|186909|186910|186911|186912|191132|194784|205174|208046|208047|208048|208049|227353|247315|254862|254863|254864|254865|254866|254870|254871|267145|267152|268909|270118|270120|272479|273702|319950|319951|319959|319960|319971|319973|319974|319978|319981|319985|328486|328488|328496|328499|328503|328505|328507|328509|328511|328530|328532|328533|328541|328542|328544|328545|328546|328547|328550|334987|334989|334993|334994|335004|335006|335007|335009|335010|335011|335019|335026|335032|335033|335037|335040|335041|335046|336837|336841|336847|336848|336857|336858|336859|336871|336872|336878|336880|336885|336886|336892|336898|336899|336904|336912|336914|336917|336934|358211|358212|358213|358214|358215|358216|358217|358218|358219|358220|358221|358222|358223|358224|358225|358226|358227|358228|358229|358230|358231|358232|358233|358234|358235|358236|358237|358238|358239|358240|358241|358242|358243|360952|372860|372863|373572|373583|373861|373869|375694|375695|375697|404813|409035|409037|409038|411516|415377|421962|421963|424263|426047|433130|433132|433133|437956|437957|462961|462964|463322|463368|463372|463374|463931|463937|463941|487515|487522|487523|487525|487532|487600|487603|487606|487611|487612|487706|487715|487729|487755|487764|487771|492114|504277|504294|504566|505197|512064|514657|527794|527795|527801|527802|527820|527823|527824|527826|527827|528156|528160|528164|540598|546955|546961|546963|546965|546966|546968|546978|546980|546985|546994|546999|547000|547002|547007|547008|547010|547019|547022|547024|547026|547030|547032|547043|547047|547049|547051|547053|547056|547057|547061|547062|547066|547068|547071|547073|547075|547093|547095|547148|547157|547163|547167|547171|547174|547176|547179|547181|547182|547184|547190|547194|547196|547198|547200|547204|547214|547216|547218|547220|547225|547228|547230|547232|547243|547249|547250|547275|547277|547279|547283|547285|547286|547288|547297|547299|547305|547312|547318|547322|547325|547326|547332|547334|547336|547340|547341|547344|547347|547349|547360|547362|547364|547368|547369|547371|547375|547377|547379|547381|547394|547396|547398|547406|547407|547408|547409|547558|547560|547565|547574|547584|547590|547591|547596|547605|547610|547613|547614|547618|547620|547622|547632|547638|547641|547646|547650|547656|547681|547684|547693|547695|547697|547699|547701|547703|547706|547709|547711|547725|547738|547740|547741|547743|547748|547763|566175|566177|567723|567742|568626|568632|568633|581768|581769|609310|609311|609312|609313|609314|609872|609873|609876|609877|612098|612356|620474|620859|621454|621456|621457|621458|621460|621462|621463|621464|621467|621470|621471|621472|621473|621474|626222|626223|642029|642030|642031|642032|642033|642034|642035|642036|642037|642038|642039|642040|642041|642042|642043|642044|642045|642046|642047|642048|642049|642050|642051|642052|642053|652517|652542|652545|652799|652845|656207|688177|688178|688179|693395|702722|725509|725510|725511|753864|753866|753868|753869|753870|753871|753872|760083|760277|769588|769589|769593|769597|769598|769599|769601|769602|769603|769605|769606|769608|769609|769610|769611|769613|769614|775950|776227|776233|784616|784617|784619|784622|784623|784624|784625|784626|784627|784628|787961|788128|788877|791375|791376|791377|796948|796949|796954|796960|799741|799742|799743|799744|799745|799746|799747|799748|799749|799750|800960|801721|820584|820585|820586|820587|820588|840980|840981|840982|840983|840984|840985|840986|840987|840988|840989|840990|840991|840992|840993|840994|840995|840996|840997|840998|840999|841000|841001|841002|841003|841004|851539|851541|851979|871411|871412|871413|871414|871415|871416|871417|871418|871419|871420|871421|871422|871423|871424|871425|871426|871427|871428|871429|871430|871431|871432|871433|871434|871435|871436|871437|871438|871439|871440|871441|871442|871443|871444|871445|871446|871447|871448|871449|871450|871451|871452|871453|871454|871455|871456|872346|905946|905947|906027|906029|906031|915047|917172|917175|917177|917515|919500|920326|926943|926944|926945|926946|926947|936479|936480|936481|936482|936483|936484|936485|936486|940293|948408|948409|948410|948411|948412|948413|948414|948415|948416|957120|957121|957122|957123|957124|957125|957126|957127|957128|957129|957130|957131|957132|961872|963291|965207|969177|972185|972186|972187|972188|972189|972190|972191|972192|972193|972194|972195|972196|972197|974454|979384|979385|979386|979387|979388|979389|979390|979391|979392|979393|979394|979395|979396|979397|979398|979399|979400|979401|979402|979403|979404|979405|979406|979407|979408|979409|979410|979411|979412|979413|979414|979415|979416|979417|980186|980187|981838|981839|981840|981841|981842|981843|981844|983700|983764|983985", "text": "Wilson disease" }, { - "baseId": "18906|18907|18908|18909|18909|18910|18910|18911|143179|263935|276165|276166|276179|276180|276181|276183|276185|276193|276439|276441|276442|276451|276452|276822|276826|276827|276828|276839|276840|276862|276867|276871|276873|276874|276875|276900|353052|360801|440346|442598|442600|486843|513230|513231|515070|515071|515107|556570|558007|578359|621055|622857|626716|626718|626719|626720|626721|626722|706625|706626|718140|718141|718144|731632|731633|731634|743686|745613|745614|745615|745616|761125|761128|761129|761130|761131|761132|761134|761135|774384|778728|778765|780292|780293|780298|780299|786991|818843|822614|822615|822616|850730|862101|862102|862103|862104|862105|862106|862107|862108|862109|862110|864966|864967|904757|904758|930002|952036|952037|960402|977426|977427|977428|977429", + "upstreamId": "18906|18907|18908|18909|18909|18910|18910|18911|143179|263935|276165|276166|276179|276180|276181|276183|276185|276193|276439|276441|276442|276451|276452|276822|276826|276827|276828|276839|276840|276862|276867|276871|276873|276874|276875|276900|353052|360801|440346|442598|442600|486843|513230|513231|515070|515071|515107|556570|558007|578359|621055|622857|626716|626718|626719|626720|626721|626722|706625|706626|718140|718141|718144|731632|731633|731634|743686|745613|745614|745615|745616|761125|761128|761129|761130|761131|761132|761134|761135|774384|778728|778765|780292|780293|780298|780299|786991|818843|822614|822615|822616|850730|862101|862102|862103|862104|862105|862106|862107|862108|862109|862110|864966|864967|904757|904758|930002|952036|952037|960402|977426|977427|977428|977429", "text": "Phosphoglycerate dehydrogenase deficiency" }, { - "baseId": "18907|18909|18910|18911|143178|143179|143179|166140|166141|513231|558007|578359", + "upstreamId": "18907|18909|18910|18911|143178|143179|143179|166140|166141|513231|558007|578359", "text": "Neu-Laxova syndrome 1" }, { - "baseId": "18912|18913|18916|18917|18918|18920|18921|18923|18926|99101|99102|99104|99106|99109|99110|134669|134670|177100|177767|191343|192243|207281|237264|243984|252009|252014|259827|264274|265212|265239|273442|298037|298039|298041|298042|298045|300238|300239|300240|300243|304435|304439|304473|304767|304772|353735|353736|359710|361184|369935|384482|428465|428466|487070|488409|508808|520537|521242|521532|540588|543451|543460|543463|543468|543470|543474|543476|543478|543712|543714|543715|543716|543719|543723|543724|543726|543728|543730|543733|543735|543746|543804|543805|543807|543813|543817|543819|543821|543825|543829|543885|543886|543892|543894|543899|543907|543909|543911|543913|543923|543930|560486|562300|563219|565192|612273|612441|621203|621746|623141|634008|634009|634010|634011|634012|651266|691878|691879|695302|709996|749582|749583|765197|765199|775031|775043|782332|782333|788784|789251|795722|830942|830943|830944|830945|830946|830947|851036|851290|857404|858719|894657|894658|894659|894660|896129|896130|896131|906363|916959|916960|916961|924100|924101|932947|944650|954190|954191|954192|954193|954194|954195|954196|959771|971877|971878|971879|971880|971881|971882|971883|971884|971885|971886|972774|975786|978203|978204|978205|983740", + "upstreamId": "18912|18913|18916|18917|18918|18920|18921|18923|18926|99101|99102|99104|99106|99109|99110|134669|134670|177100|177767|191343|192243|207281|237264|243984|252009|252014|259827|264274|265212|265239|273442|298037|298039|298041|298042|298045|300238|300239|300240|300243|304435|304439|304473|304767|304772|353735|353736|359710|361184|369935|384482|428465|428466|487070|488409|508808|520537|521242|521532|540588|543451|543460|543463|543468|543470|543474|543476|543478|543712|543714|543715|543716|543719|543723|543724|543726|543728|543730|543733|543735|543746|543804|543805|543807|543813|543817|543819|543821|543825|543829|543885|543886|543892|543894|543899|543907|543909|543911|543913|543923|543930|560486|562300|563219|565192|612273|612441|621203|621746|623141|634008|634009|634010|634011|634012|651266|691878|691879|695302|709996|749582|749583|765197|765199|775031|775043|782332|782333|788784|789251|795722|830942|830943|830944|830945|830946|830947|851036|851290|857404|858719|894657|894658|894659|894660|896129|896130|896131|906363|916959|916960|916961|924100|924101|932947|944650|954190|954191|954192|954193|954194|954195|954196|959771|971877|971878|971879|971880|971881|971882|971883|971884|971885|971886|972774|975786|978203|978204|978205|983740", "text": "Sandhoff disease" }, { - "baseId": "18913|99109", + "upstreamId": "18913|99109", "text": "HEXB POLYMORPHISM" }, { - "baseId": "18914|18916|18917", + "upstreamId": "18914|18916|18917", "text": "Sandhoff disease, juvenile type" }, { - "baseId": "18915", + "upstreamId": "18915", "text": "Hexosaminidase B (paris)" }, { - "baseId": "18917|18918", + "upstreamId": "18917|18918", "text": "Sandhoff disease, adult type" }, { - "baseId": "18920", + "upstreamId": "18920", "text": "HEXOSAMINIDASE B, HEAT-LABILE POLYMORPHISM" }, { - "baseId": "18921|18922|18924|18925|18926|543813", + "upstreamId": "18921|18922|18924|18925|18926|543813", "text": "Sandhoff disease, infantile type" }, { - "baseId": "18923", + "upstreamId": "18923", "text": "Sandhoff disease, chronic" }, { - "baseId": "18928|18928|18929|18930|18931|18932|18933|18934|18935|18936|18937|18938|18939|18940|18943|18944|18945|18946|18947|18948|18949|18950|18951|18952|18953|18954|18956|18957|18958|18959|18961|18963|18964|18965|18966|18967|18968|18969|18970|18971|18972|18972|18973|18974|18975|18976|18977|18980|18981|38431|39563|99095|99096|99097|99098|99099|99100|106593|106594|106595|132034|186933|186934|186935|186936|186937|186938|186939|186940|191502|205779|214781|215043|215045|222992|222993|255344|255345|271317|272306|323287|323296|323309|332971|332973|332975|332980|339827|339828|339830|339842|339844|339848|339849|339851|341250|341255|341256|341257|341260|341265|341266|341267|341270|358302|358303|358304|358305|358306|358307|358308|358309|358310|358311|358312|358313|358314|358315|358316|361391|362115|362116|362117|362118|362119|362120|362121|362122|362123|362124|362125|362126|362127|362128|362129|362130|362131|373669|376623|400224|404823|409341|432438|432439|432440|432441|433602|438669|445415|465273|486124|487657|487757|487870|513352|529097|547520|547522|547525|547527|547529|547534|547537|547538|547540|547542|547545|547547|547549|547552|547553|547554|547559|547561|547562|547563|547564|547566|547567|547568|547570|547572|547579|547583|547585|547588|547594|547758|547760|547761|547766|547767|547769|547770|547773|547775|547778|547781|547783|547785|547787|547789|547794|547804|547805|547807|547815|547815|547817|547824|547825|547827|548183|548186|548188|548190|548193|548199|548202|548209|548211|548212|548214|548220|548222|548223|548225|548230|548237|548239|548251|548252|548254|548256|553391|569113|569591|610619|610620|650338|650344|650348|650349|650350|650351|650354|650355|650356|652704|685064|685068|685071|685072|689609|689610|689612|690127|690128|787911|791483|799818|818710|820732|820734|820735|850395|850397|850399|850404|850405|850406|850408|850409|850410|850418|861131|905953|906394|906395|917386|917538|920351|929858|939716|939717|939720|939721|940337|940338|951927|959397|959398|959399|960129|969129|972213|972214|972215|972216|972217|972218|972219|972220|972221|972222|972599|972776|975828|979657|979658|979659|979660", + "upstreamId": "18928|18928|18929|18930|18931|18932|18933|18934|18935|18936|18937|18938|18939|18940|18943|18944|18945|18946|18947|18948|18949|18950|18951|18952|18953|18954|18956|18957|18958|18959|18961|18963|18964|18965|18966|18967|18968|18969|18970|18971|18972|18972|18973|18974|18975|18976|18977|18980|18981|38431|39563|99095|99096|99097|99098|99099|99100|106593|106594|106595|132034|186933|186934|186935|186936|186937|186938|186939|186940|191502|205779|214781|215043|215045|222992|222993|255344|255345|271317|272306|323287|323296|323309|332971|332973|332975|332980|339827|339828|339830|339842|339844|339848|339849|339851|341250|341255|341256|341257|341260|341265|341266|341267|341270|358302|358303|358304|358305|358306|358307|358308|358309|358310|358311|358312|358313|358314|358315|358316|361391|362115|362116|362117|362118|362119|362120|362121|362122|362123|362124|362125|362126|362127|362128|362129|362130|362131|373669|376623|400224|404823|409341|432438|432439|432440|432441|433602|438669|445415|465273|486124|487657|487757|487870|513352|529097|547520|547522|547525|547527|547529|547534|547537|547538|547540|547542|547545|547547|547549|547552|547553|547554|547559|547561|547562|547563|547564|547566|547567|547568|547570|547572|547579|547583|547585|547588|547594|547758|547760|547761|547766|547767|547769|547770|547773|547775|547778|547781|547783|547785|547787|547789|547794|547804|547805|547807|547815|547815|547817|547824|547825|547827|548183|548186|548188|548190|548193|548199|548202|548209|548211|548212|548214|548220|548222|548223|548225|548230|548237|548239|548251|548252|548254|548256|553391|569113|569591|610619|610620|650338|650344|650348|650349|650350|650351|650354|650355|650356|652704|685064|685068|685071|685072|689609|689610|689612|690127|690128|787911|791483|799818|818710|820732|820734|820735|850395|850397|850399|850404|850405|850406|850408|850409|850410|850418|861131|905953|906394|906395|917386|917538|920351|929858|939716|939717|939720|939721|940337|940338|951927|959397|959398|959399|960129|969129|972213|972214|972215|972216|972217|972218|972219|972220|972221|972222|972599|972776|975828|979657|979658|979659|979660", "text": "Tay-Sachs disease" }, { - "baseId": "18934|18938", + "upstreamId": "18934|18938", "text": "Gm2-gangliosidosis, juvenile" }, { - "baseId": "18935|18936|18960|18963", + "upstreamId": "18935|18936|18960|18963", "text": "Tay-Sachs disease, B1 variant" }, { - "baseId": "18935", + "upstreamId": "18935", "text": "Hexa, dn allele" }, { - "baseId": "18936", + "upstreamId": "18936", "text": "HEXA, Czechoslovakian allele" }, { - "baseId": "18937", + "upstreamId": "18937", "text": "Gm2-gangliosidosis, adult" }, { - "baseId": "18941", + "upstreamId": "18941", "text": "Tay-sachs disease, juvenile" }, { - "baseId": "18945|205779", + "upstreamId": "18945|205779", "text": "Gm2-gangliosidosis, chronic" }, { - "baseId": "18954", + "upstreamId": "18954", "text": "Gm2-gangliosidosis, adult-onset" }, { - "baseId": "18955", + "upstreamId": "18955", "text": "Gm2-gangliosidosis, variant b1" }, { - "baseId": "18961", + "upstreamId": "18961", "text": "Beta-hexosaminidase a, pseudodeficiency of" }, { - "baseId": "18966|18977|18978", + "upstreamId": "18966|18977|18978", "text": "Gm2-gangliosidosis, late onset" }, { - "baseId": "18967", + "upstreamId": "18967", "text": "Tay-sachs disease, juvenile/adult" }, { - "baseId": "18980|18982", + "upstreamId": "18980|18982", "text": "Gm2-gangliosidosis, subacute" }, { - "baseId": "18983|18985|18986|18988|18989|18990|18991|18995|18996|79141|79144|97584|97586|247342|247343|247344|254213|254214|314326|314327|314331|314340|320923|320924|320933|320933|320935|327001|327002|327010|327014|327019|327020|327022|327023|328074|328075|328082|372234|480575|480576|480577|495533|550316|610570|610571|614679|614680|614681|614682|614683|614684|614685|614686|614687|614688|622209|678025|678026|678027|678028|678029|678030|678031|678032|678033|678034|678035|678036|678037|679845|682856|685292|818637|858612|858613|868129|868130|868131|868132|868133|868134|868135|868136|868137|868138|868139|868140|868141|868142|868143|868144|868661|964366|967292|967293|967294|967295|967296|967297|967298|971298|971299|971300|971301|971302|971303|971304|971305|971306|971307|971308|971309|971310|971311|971312|971313|971314|971315|971316|971317|971318|971319|971320|971321|971322|971323|971324|971325|971326|971327|971328|971329", + "upstreamId": "18983|18985|18986|18988|18989|18990|18991|18995|18996|79141|79144|97584|97586|247342|247343|247344|254213|254214|314326|314327|314331|314340|320923|320924|320933|320933|320935|327001|327002|327010|327014|327019|327020|327022|327023|328074|328075|328082|372234|480575|480576|480577|495533|550316|610570|610571|614679|614680|614681|614682|614683|614684|614685|614686|614687|614688|622209|678025|678026|678027|678028|678029|678030|678031|678032|678033|678034|678035|678036|678037|679845|682856|685292|818637|858612|858613|868129|868130|868131|868132|868133|868134|868135|868136|868137|868138|868139|868140|868141|868142|868143|868144|868661|964366|967292|967293|967294|967295|967296|967297|967298|971298|971299|971300|971301|971302|971303|971304|971305|971306|971307|971308|971309|971310|971311|971312|971313|971314|971315|971316|971317|971318|971319|971320|971321|971322|971323|971324|971325|971326|971327|971328|971329", "text": "Hereditary angioedema type 1" }, { - "baseId": "18984|18985|18986|18987|18992|18993", + "upstreamId": "18984|18985|18986|18987|18992|18993", "text": "Hereditary C1 esterase inhibitor deficiency - dysfunctional factor" }, { - "baseId": "18994", + "upstreamId": "18994", "text": "Complement component 4, partial deficiency of, due to dysfunctional c1 inhibitor" }, { - "baseId": "18997|919042", + "upstreamId": "18997|919042", "text": "Gamma-glutamylcysteine synthetase deficiency, hemolytic anemia due to" }, { - "baseId": "18999|19000|19001|19002|19003|19004|19005|19006|19007|132591|132592|136009|136013|136014|136016|136019|136021|205571|205572|205573|205574|205575|205576|205577|205578|205579|205580|205581|205582|205583|205584|205585|205586|205587|205588|205589|205590|205591|205592|205593|205594|205595|205596|207166|207167|227281|251823|251826|264246|296428|296432|296434|296439|296447|296448|298255|298288|298295|298297|302407|302409|302417|302432|302447|302453|302454|302674|302689|368456|406663|425627|427123|428360|443725|443729|453886|454757|454758|454760|455608|455619|491478|492306|493014|495256|501366|513557|520536|520935|521172|521367|521403|521405|521411|560217|560219|560336|560338|562999|563000|564113|589686|633645|633646|633647|633648|633649|633650|633651|633652|633653|633654|651318|682733|691802|691803|691804|691805|691808|698945|698946|698947|698948|698949|698950|709735|782224|782225|782227|790527|790528|790529|790530|804847|821906|830545|830546|851026|906309|918935|918936|923951|923952|923953|923954|923955|932799|932800|932801|932802|932803|944497|954096|964247|965622|969775|971589|980323", + "upstreamId": "18999|19000|19001|19002|19003|19004|19005|19006|19007|132591|132592|136009|136013|136014|136016|136019|136021|205571|205572|205573|205574|205575|205576|205577|205578|205579|205580|205581|205582|205583|205584|205585|205586|205587|205588|205589|205590|205591|205592|205593|205594|205595|205596|207166|207167|227281|251823|251826|264246|296428|296432|296434|296439|296447|296448|298255|298288|298295|298297|302407|302409|302417|302432|302447|302453|302454|302674|302689|368456|406663|425627|427123|428360|443725|443729|453886|454757|454758|454760|455608|455619|491478|492306|493014|495256|501366|513557|520536|520935|521172|521367|521403|521405|521411|560217|560219|560336|560338|562999|563000|564113|589686|633645|633646|633647|633648|633649|633650|633651|633652|633653|633654|651318|682733|691802|691803|691804|691805|691808|698945|698946|698947|698948|698949|698950|709735|782224|782225|782227|790527|790528|790529|790530|804847|821906|830545|830546|851026|906309|918935|918936|923951|923952|923953|923954|923955|932799|932800|932801|932802|932803|944497|954096|964247|965622|969775|971589|980323", "text": "Treacher Collins syndrome 1" }, { - "baseId": "19008|19009|19010|19011|19013|19014|44341|45839|48347|85588|85590|97580|97581|97582|97583|98152|188918|190191|190541|190542|190543|191823|196030|196032|196033|196034|196036|207017|207018|207019|207020|207021|207022|207023|207024|209346|215261|221322|221323|221324|221325|221326|221327|221328|221329|221330|221331|221332|221333|221334|221335|221336|221337|221338|221339|221340|226620|227247|237135|237219|237276|237302|238972|238973|238974|238975|238976|238977|238978|238979|238980|238981|238982|238983|238984|238985|238986|238987|238988|238989|238990|238991|238992|238993|238994|238995|238996|238997|238998|238999|239000|239001|239002|239003|239004|239005|239006|239007|239008|239009|239010|239011|239012|239013|239014|239015|239016|239017|239018|239019|250795|250798|250799|250800|250802|264140|268055|287204|287209|287210|287219|287220|287225|287227|287229|287230|287232|287917|287918|287919|287929|287936|287938|287939|287940|287945|287946|290505|290506|290507|290511|290512|290513|290519|290520|290788|290800|290802|290807|290808|290809|290811|290823|290825|290829|290832|357266|359370|359414|359465|359467|359509|361392|361394|363831|364013|364034|366684|366694|366698|366702|366709|366718|366730|366751|366756|366757|366758|366761|366780|366922|366940|366943|366944|366946|366953|366959|366963|366975|366976|366980|366982|366988|366989|366993|366997|366998|366999|367002|367005|367007|367014|367021|367026|367028|367041|367043|367049|367798|367805|367806|367812|367847|367860|367861|367863|367864|367866|367873|367891|367893|367900|367904|367916|367920|367921|367925|367929|367933|367934|380190|380192|380193|380194|380196|380198|380199|380200|393066|393071|393072|393075|393079|393081|393082|393085|393090|393091|393092|393098|393099|393100|393102|393105|393106|393107|393109|393112|393113|393114|393236|393242|393244|393245|393247|393252|393257|393258|393434|393438|393443|393445|393450|393455|393456|393457|393458|393468|393471|393475|393476|393484|404761|406013|406015|406020|406021|406022|406023|406024|406025|406026|414894|414897|414898|414899|421404|421406|421407|425505|425510|428091|428092|428095|428097|428098|431545|431904|431905|438148|443294|443295|443299|443300|443303|443304|443305|443306|443308|451417|451421|451422|451428|451430|451431|451434|451437|451438|451623|451627|451629|451634|451637|451643|451645|451647|451648|451650|451652|451654|451662|451663|451666|451668|451767|451769|451773|451781|451786|451790|451792|451800|451832|451834|451835|451840|451845|451851|451856|451858|451861|451867|451868|451871|451874|451875|451878|481124|481125|481663|481664|489071|489422|491200|491202|491203|496235|496236|497906|499893|499900|499904|499907|499919|499922|500137|500139|500151|500292|500302|500304|500319|500329|500342|500343|500345|500360|513526|518556|518558|518562|518567|518568|518569|518571|518573|518575|518577|518580|518582|518583|518585|518587|518591|518593|518594|518595|518641|518643|518645|518653|518655|518662|518668|518709|518713|518715|518718|518724|518725|518733|518744|518745|518747|518754|518755|518757|518763|518768|518774|535697|535698|542124|542128|542134|542138|542141|542143|542146|542148|542151|542152|542155|542156|542158|542163|542165|542167|542169|542171|542175|542190|542194|542195|542197|542201|542203|542204|542205|542207|542208|542210|542211|542212|542215|542216|542218|542219|542220|542221|542222|542223|542224|542226|542228|542229|542230|542233|542234|542235|542239|542240|542241|542242|542243|542244|542245|542246|542247|542250|542251|542253|542257|542261|542265|542267|542271|542273|542275|542280|542281|542282|542286|542287|542289|542292|542294|542295|542296|542301|542302|542303|542304|542305|542306|542307|542308|542309|542310|542311|542312|542313|542314|542316|542318|542320|542321|542322|542326|542327|542329|542331|542333|542334|542337|542338|542339|542340|542341|542343|542344|542345|542346|542347|542348|542349|542350|542351|542352|542353|542354|542355|542356|542358|542359|542360|542361|542363|542364|542365|542367|542369|542370|542371|542372|542374|542375|542376|542377|542378|542379|542380|542381|542383|542384|542385|542386|542388|542392|542393|542394|542395|542396|542397|542398|542399|542400|542401|542402|542403|542404|542405|542406|542407|542408|542409|542410|542411|542412|542413|542414|542415|542416|542417|542418|542419|542420|542421|542422|542423|542424|542425|542426|542427|542428|542429|542430|542431|542432|542433|542434|542435|542436|542437|542438|542439|542440|542441|542442|542443|542444|542445|542446|542447|542448|542449|542450|542451|542452|542453|542454|542455|542456|542457|542458|542459|542460|542461|542462|542463|542464|542465|542466|542467|542468|542469|542470|542471|542472|542473|542474|542475|542476|542477|542478|542479|542480|542481|542482|542483|542484|542485|542486|542487|542488|542489|542490|542491|542492|542493|542494|542495|542496|542497|542498|542499|542500|542501|542502|542503|542504|542505|542506|542507|542508|542509|542510|542511|542512|542513|542514|542515|542516|542517|542518|542519|542520|542521|542522|542523|542524|542525|542526|542527|542528|542529|542530|542531|542532|542533|542534|542535|542536|542537|542538|542539|542540|542541|542542|542543|542544|542545|542546|542547|542548|542549|542550|542551|542552|542553|542554|542555|542556|542557|542558|542559|542560|542561|542562|542563|542564|542565|542566|542567|542568|542569|542570|542571|542572|542573|542574|542575|542576|542577|542578|542579|542580|542581|542582|542583|542584|542585|542586|542587|542588|542589|542590|542591|542592|542593|542594|542595|542596|542597|542598|542599|542600|542601|542602|542603|542604|542605|542606|542607|542608|542609|542610|542611|542612|542613|542614|542615|542616|542617|542618|542619|542620|542621|542622|542623|542624|542625|542626|542627|542628|542629|542630|542631|542632|542633|542634|542635|542636|542637|542638|542639|542640|542641|542642|542643|542644|542645|542646|542647|542648|542649|542650|542651|542652|542653|542654|542655|542656|542657|542658|542659|542660|542661|542662|542663|542664|542665|542666|542667|542668|542669|542670|542671|542672|542673|542674|542675|542676|542677|542678|542679|542680|542681|542682|542683|542684|542685|542686|542687|542688|542689|542690|542691|542692|542693|542694|542695|542696|542697|542698|542699|542700|542701|542702|542703|542704|542705|542706|542707|542708|542709|542710|542711|542712|542713|542714|542715|542716|542717|542718|542719|542720|542721|542722|542723|542724|542725|542726|542727|542728|542729|542730|542731|542732|542733|542734|542735|542736|542737|542738|542739|542740|542741|542742|542743|542744|542745|542746|542747|542748|542753|542754|542755|542757|542759|542760|542761|542762|542763|542765|542766|542769|542771|542772|542773|542776|542777|542778|542779|542781|542782|542784|542785|542787|542788|542789|542791|542792|542793|542794|542795|542796|542799|542800|542801|542802|542804|542806|542807|542810|542811|542814|542816|542817|542818|542819|542820|542821|542822|542824|542825|542826|542828|542830|542831|542833|542834|542835|542836|542838|542839|542841|542842|542843|542844|542847|542848|542849|542850|542851|542852|542853|542854|542855|542856|542859|542861|542862|542863|542864|542867|542869|542871|542872|542873|542874|542875|542876|542878|542879|542880|542881|542882|542883|542884|542885|542886|542889|542891|542893|542894|542896|542898|542902|542906|542908|542911|542914|542917|542919|542922|542925|542928|542933|542935|542940|542953|550589|550590|551615|558269|558271|558273|558275|558277|558279|558281|558283|558285|558644|558646|558648|558650|558652|558654|558656|558658|558660|560943|560945|560947|560953|560959|560966|561961|561962|561964|561986|561987|561999|562019|562023|562024|562025|583087|587416|590553|590558|611575|626367|630478|630479|630480|630481|630482|630483|630484|630485|630486|630487|630488|630489|630490|630491|630492|630493|630494|630495|630496|630497|630498|630499|630500|630501|630502|630503|630504|630505|630506|630507|630508|630509|630510|630511|630512|630513|630514|630515|630516|630517|630518|630519|630520|630521|630522|630523|651006|655476|655477|655481|655482|655483|672040|672041|679741|679742|683508|683509|683510|683511|683512|683513|683514|683515|683516|683517|685139|686236|686237|686238|686239|686241|686242|686244|686246|686248|686251|686252|686253|686254|686256|686257|686258|686259|686260|686261|686262|686263|686264|686265|691206|691207|691211|691212|691213|691214|697658|708356|708358|719961|733568|733569|747770|747772|763415|763416|763417|763420|763426|763428|774782|781449|781451|781452|781457|781458|781459|781460|781462|781466|781468|787231|790290|790291|790292|790293|792732|794251|795275|800475|801342|801343|818216|818217|819020|819274|819275|826975|826976|826977|826978|826979|826980|826981|826982|826983|826984|826985|826986|826987|826988|826989|826990|826991|826992|826993|826994|826995|826996|826997|826998|826999|827000|827001|827002|827003|827004|827005|827006|827007|827008|827009|827010|827011|827012|827013|827014|827015|827016|827017|827018|827019|827020|827021|827022|827023|827024|827025|827026|827027|850885|850921|850923|851210|856192|856195|856202|857348|858460|859195|885449|885450|885451|905045|906234|906235|918782|922912|922913|922914|922915|922916|922917|922918|922919|922920|931568|931569|931570|931571|931572|931573|931574|931575|931576|931577|931578|931579|931580|931581|931582|931583|931584|931585|939912|939913|943113|943114|943115|943116|943117|943118|943119|943120|943121|943122|943123|943124|943125|943126|953194|953195|953196|953197|953198|953199|953200|953201|953202|953203|953204|953205|953206|953207|953208|953209|953210|953211|953212|953213|953214|953215|953216|953217|953218|953219|953220|953221|953222|953223|953224|953225|953226|953227|959656|963257|964206|966072|966075|966076|966077|966078|966079|966080|966081|966082|966084|966085|966087|966088|966089|966090|966091|966092|966093|966094|966105|970747|975771|977763|977764|977765|977766|977767|977768|977769|977770|977771|977772|977773|977774|977775|977776|977777|977778|977779|977780|977781|977782|977783|977784|977785|977786|977787|977788|977789|977790|977791|977792", + "upstreamId": "19008|19009|19010|19011|19013|19014|44341|45839|48347|85588|85590|97580|97581|97582|97583|98152|188918|190191|190541|190542|190543|191823|196030|196032|196033|196034|196036|207017|207018|207019|207020|207021|207022|207023|207024|209346|215261|221322|221323|221324|221325|221326|221327|221328|221329|221330|221331|221332|221333|221334|221335|221336|221337|221338|221339|221340|226620|227247|237135|237219|237276|237302|238972|238973|238974|238975|238976|238977|238978|238979|238980|238981|238982|238983|238984|238985|238986|238987|238988|238989|238990|238991|238992|238993|238994|238995|238996|238997|238998|238999|239000|239001|239002|239003|239004|239005|239006|239007|239008|239009|239010|239011|239012|239013|239014|239015|239016|239017|239018|239019|250795|250798|250799|250800|250802|264140|268055|287204|287209|287210|287219|287220|287225|287227|287229|287230|287232|287917|287918|287919|287929|287936|287938|287939|287940|287945|287946|290505|290506|290507|290511|290512|290513|290519|290520|290788|290800|290802|290807|290808|290809|290811|290823|290825|290829|290832|357266|359370|359414|359465|359467|359509|361392|361394|363831|364013|364034|366684|366694|366698|366702|366709|366718|366730|366751|366756|366757|366758|366761|366780|366922|366940|366943|366944|366946|366953|366959|366963|366975|366976|366980|366982|366988|366989|366993|366997|366998|366999|367002|367005|367007|367014|367021|367026|367028|367041|367043|367049|367798|367805|367806|367812|367847|367860|367861|367863|367864|367866|367873|367891|367893|367900|367904|367916|367920|367921|367925|367929|367933|367934|380190|380192|380193|380194|380196|380198|380199|380200|393066|393071|393072|393075|393079|393081|393082|393085|393090|393091|393092|393098|393099|393100|393102|393105|393106|393107|393109|393112|393113|393114|393236|393242|393244|393245|393247|393252|393257|393258|393434|393438|393443|393445|393450|393455|393456|393457|393458|393468|393471|393475|393476|393484|404761|406013|406015|406020|406021|406022|406023|406024|406025|406026|414894|414897|414898|414899|421404|421406|421407|425505|425510|428091|428092|428095|428097|428098|431545|431904|431905|438148|443294|443295|443299|443300|443303|443304|443305|443306|443308|451417|451421|451422|451428|451430|451431|451434|451437|451438|451623|451627|451629|451634|451637|451643|451645|451647|451648|451650|451652|451654|451662|451663|451666|451668|451767|451769|451773|451781|451786|451790|451792|451800|451832|451834|451835|451840|451845|451851|451856|451858|451861|451867|451868|451871|451874|451875|451878|481124|481125|481663|481664|489071|489422|491200|491202|491203|496235|496236|497906|499893|499900|499904|499907|499919|499922|500137|500139|500151|500292|500302|500304|500319|500329|500342|500343|500345|500360|513526|518556|518558|518562|518567|518568|518569|518571|518573|518575|518577|518580|518582|518583|518585|518587|518591|518593|518594|518595|518641|518643|518645|518653|518655|518662|518668|518709|518713|518715|518718|518724|518725|518733|518744|518745|518747|518754|518755|518757|518763|518768|518774|535697|535698|542124|542128|542134|542138|542141|542143|542146|542148|542151|542152|542155|542156|542158|542163|542165|542167|542169|542171|542175|542190|542194|542195|542197|542201|542203|542204|542205|542207|542208|542210|542211|542212|542215|542216|542218|542219|542220|542221|542222|542223|542224|542226|542228|542229|542230|542233|542234|542235|542239|542240|542241|542242|542243|542244|542245|542246|542247|542250|542251|542253|542257|542261|542265|542267|542271|542273|542275|542280|542281|542282|542286|542287|542289|542292|542294|542295|542296|542301|542302|542303|542304|542305|542306|542307|542308|542309|542310|542311|542312|542313|542314|542316|542318|542320|542321|542322|542326|542327|542329|542331|542333|542334|542337|542338|542339|542340|542341|542343|542344|542345|542346|542347|542348|542349|542350|542351|542352|542353|542354|542355|542356|542358|542359|542360|542361|542363|542364|542365|542367|542369|542370|542371|542372|542374|542375|542376|542377|542378|542379|542380|542381|542383|542384|542385|542386|542388|542392|542393|542394|542395|542396|542397|542398|542399|542400|542401|542402|542403|542404|542405|542406|542407|542408|542409|542410|542411|542412|542413|542414|542415|542416|542417|542418|542419|542420|542421|542422|542423|542424|542425|542426|542427|542428|542429|542430|542431|542432|542433|542434|542435|542436|542437|542438|542439|542440|542441|542442|542443|542444|542445|542446|542447|542448|542449|542450|542451|542452|542453|542454|542455|542456|542457|542458|542459|542460|542461|542462|542463|542464|542465|542466|542467|542468|542469|542470|542471|542472|542473|542474|542475|542476|542477|542478|542479|542480|542481|542482|542483|542484|542485|542486|542487|542488|542489|542490|542491|542492|542493|542494|542495|542496|542497|542498|542499|542500|542501|542502|542503|542504|542505|542506|542507|542508|542509|542510|542511|542512|542513|542514|542515|542516|542517|542518|542519|542520|542521|542522|542523|542524|542525|542526|542527|542528|542529|542530|542531|542532|542533|542534|542535|542536|542537|542538|542539|542540|542541|542542|542543|542544|542545|542546|542547|542548|542549|542550|542551|542552|542553|542554|542555|542556|542557|542558|542559|542560|542561|542562|542563|542564|542565|542566|542567|542568|542569|542570|542571|542572|542573|542574|542575|542576|542577|542578|542579|542580|542581|542582|542583|542584|542585|542586|542587|542588|542589|542590|542591|542592|542593|542594|542595|542596|542597|542598|542599|542600|542601|542602|542603|542604|542605|542606|542607|542608|542609|542610|542611|542612|542613|542614|542615|542616|542617|542618|542619|542620|542621|542622|542623|542624|542625|542626|542627|542628|542629|542630|542631|542632|542633|542634|542635|542636|542637|542638|542639|542640|542641|542642|542643|542644|542645|542646|542647|542648|542649|542650|542651|542652|542653|542654|542655|542656|542657|542658|542659|542660|542661|542662|542663|542664|542665|542666|542667|542668|542669|542670|542671|542672|542673|542674|542675|542676|542677|542678|542679|542680|542681|542682|542683|542684|542685|542686|542687|542688|542689|542690|542691|542692|542693|542694|542695|542696|542697|542698|542699|542700|542701|542702|542703|542704|542705|542706|542707|542708|542709|542710|542711|542712|542713|542714|542715|542716|542717|542718|542719|542720|542721|542722|542723|542724|542725|542726|542727|542728|542729|542730|542731|542732|542733|542734|542735|542736|542737|542738|542739|542740|542741|542742|542743|542744|542745|542746|542747|542748|542753|542754|542755|542757|542759|542760|542761|542762|542763|542765|542766|542769|542771|542772|542773|542776|542777|542778|542779|542781|542782|542784|542785|542787|542788|542789|542791|542792|542793|542794|542795|542796|542799|542800|542801|542802|542804|542806|542807|542810|542811|542814|542816|542817|542818|542819|542820|542821|542822|542824|542825|542826|542828|542830|542831|542833|542834|542835|542836|542838|542839|542841|542842|542843|542844|542847|542848|542849|542850|542851|542852|542853|542854|542855|542856|542859|542861|542862|542863|542864|542867|542869|542871|542872|542873|542874|542875|542876|542878|542879|542880|542881|542882|542883|542884|542885|542886|542889|542891|542893|542894|542896|542898|542902|542906|542908|542911|542914|542917|542919|542922|542925|542928|542933|542935|542940|542953|550589|550590|551615|558269|558271|558273|558275|558277|558279|558281|558283|558285|558644|558646|558648|558650|558652|558654|558656|558658|558660|560943|560945|560947|560953|560959|560966|561961|561962|561964|561986|561987|561999|562019|562023|562024|562025|583087|587416|590553|590558|611575|626367|630478|630479|630480|630481|630482|630483|630484|630485|630486|630487|630488|630489|630490|630491|630492|630493|630494|630495|630496|630497|630498|630499|630500|630501|630502|630503|630504|630505|630506|630507|630508|630509|630510|630511|630512|630513|630514|630515|630516|630517|630518|630519|630520|630521|630522|630523|651006|655476|655477|655481|655482|655483|672040|672041|679741|679742|683508|683509|683510|683511|683512|683513|683514|683515|683516|683517|685139|686236|686237|686238|686239|686241|686242|686244|686246|686248|686251|686252|686253|686254|686256|686257|686258|686259|686260|686261|686262|686263|686264|686265|691206|691207|691211|691212|691213|691214|697658|708356|708358|719961|733568|733569|747770|747772|763415|763416|763417|763420|763426|763428|774782|781449|781451|781452|781457|781458|781459|781460|781462|781466|781468|787231|790290|790291|790292|790293|792732|794251|795275|800475|801342|801343|818216|818217|819020|819274|819275|826975|826976|826977|826978|826979|826980|826981|826982|826983|826984|826985|826986|826987|826988|826989|826990|826991|826992|826993|826994|826995|826996|826997|826998|826999|827000|827001|827002|827003|827004|827005|827006|827007|827008|827009|827010|827011|827012|827013|827014|827015|827016|827017|827018|827019|827020|827021|827022|827023|827024|827025|827026|827027|850885|850921|850923|851210|856192|856195|856202|857348|858460|859195|885449|885450|885451|905045|906234|906235|918782|922912|922913|922914|922915|922916|922917|922918|922919|922920|931568|931569|931570|931571|931572|931573|931574|931575|931576|931577|931578|931579|931580|931581|931582|931583|931584|931585|939912|939913|943113|943114|943115|943116|943117|943118|943119|943120|943121|943122|943123|943124|943125|943126|953194|953195|953196|953197|953198|953199|953200|953201|953202|953203|953204|953205|953206|953207|953208|953209|953210|953211|953212|953213|953214|953215|953216|953217|953218|953219|953220|953221|953222|953223|953224|953225|953226|953227|959656|963257|964206|966072|966075|966076|966077|966078|966079|966080|966081|966082|966084|966085|966087|966088|966089|966090|966091|966092|966093|966094|966105|970747|975771|977763|977764|977765|977766|977767|977768|977769|977770|977771|977772|977773|977774|977775|977776|977777|977778|977779|977780|977781|977782|977783|977784|977785|977786|977787|977788|977789|977790|977791|977792", "text": "Alstrom syndrome" }, { - "baseId": "19015|19016|22015|27408|27409|27619|28691|28692|28693|28694|29022", + "upstreamId": "19015|19016|22015|27408|27409|27619|28691|28692|28693|28694|29022", "text": "Breast adenocarcinoma" }, { - "baseId": "19018|19019|19020|19021|19022|19023|19024|552302", + "upstreamId": "19018|19019|19020|19021|19022|19023|19024|552302", "text": "Friedreich's ataxia" }, { - "baseId": "19025|19026|19027|19028|19029|19031|19032|19033|19034|19035|71230", + "upstreamId": "19025|19026|19027|19028|19029|19031|19032|19033|19034|19035|71230", "text": "Congenital muscular dystrophy-dystroglycanopathy with brain and eye anomalies, type A3" }, { - "baseId": "19027|19028|19031|19032|19036|19037|19038|19039|19039|71214|71216|71217|71218|71219|71220|71221|71221|71222|71223|71225|71226|71227|71228|71229|71230|71231|71232|71233|71234|71235|71236|71237|71238|71239|71240|71241|71242|71243|71245|71246|71247|71248|71249|71250|101656|101658|135450|172203|172204|172205|172205|177974|186624|195383|195732|206823|259673|267066|267566|267575|269177|269429|272350|272833|273163|273827|274517|274517|275297|275411|357094|357095|357096|357097|357098|357099|357100|357101|357102|357103|357104|357105|357106|357107|357108|357109|357110|357111|357112|365373|405212|405214|427839|448090|489006|515974|541148|541152|541154|541163|541165|541168|541174|541177|541179|541182|541189|541193|541195|541200|541202|541270|541271|541273|541279|541280|541282|541283|541285|541286|541287|541289|541290|541291|541293|541294|541296|541297|541298|541305|552046|557318|557371|628117|628118|628121|628124|628131|650690|685813|690631|690633|695053|696779|696780|707439|777139|789984|824212|824213|824215|864535|973097|977543|977544|977545|977546|977547|977548", + "upstreamId": "19027|19028|19031|19032|19036|19037|19038|19039|19039|71214|71216|71217|71218|71219|71220|71221|71221|71222|71223|71225|71226|71227|71228|71229|71230|71231|71232|71233|71234|71235|71236|71237|71238|71239|71240|71241|71242|71243|71245|71246|71247|71248|71249|71250|101656|101658|135450|172203|172204|172205|172205|177974|186624|195383|195732|206823|259673|267066|267566|267575|269177|269429|272350|272833|273163|273827|274517|274517|275297|275411|357094|357095|357096|357097|357098|357099|357100|357101|357102|357103|357104|357105|357106|357107|357108|357109|357110|357111|357112|365373|405212|405214|427839|448090|489006|515974|541148|541152|541154|541163|541165|541168|541174|541177|541179|541182|541189|541193|541195|541200|541202|541270|541271|541273|541279|541280|541282|541283|541285|541286|541287|541289|541290|541291|541293|541294|541296|541297|541298|541305|552046|557318|557371|628117|628118|628121|628124|628131|650690|685813|690631|690633|695053|696779|696780|707439|777139|789984|824212|824213|824215|864535|973097|977543|977544|977545|977546|977547|977548", "text": "Muscle eye brain disease" }, { - "baseId": "19031|19031|19036|19037|19037|19038|19039|19039|19039|71214|71221|71221|71221|71225|71226|71231|71232|71243|71243|71249|71249|101656|135450|172203|172204|172204|172205|172205|177975|195383|195732|206819|206821|206823|259673|259673|265294|267066|267551|267566|267575|269177|269306|269429|269471|269959|270384|270402|270427|270503|271148|272350|272833|272864|273163|273823|273827|274248|274517|274517|274683|274722|275297|275297|275411|280745|282511|359364|365125|405212|405214|405214|427839|440513|442860|442861|442862|446963|448087|448090|448095|448182|448184|448190|448206|448211|448213|448216|448224|448356|448358|491875|492078|492161|492526|493660|498501|498524|498532|515972|515974|515978|516004|516022|516036|516040|516105|516109|516111|538948|541179|541285|541296|556506|557091|557093|557095|557097|557318|557369|557371|557373|585546|587082|587489|588487|628115|628116|628117|628118|628119|628120|628121|628122|628123|628124|628125|628126|628127|628128|628129|628130|628131|628132|628133|628134|628135|650603|650604|650690|685813|690631|690633|690634|695053|696780|707438|707439|718991|718993|732494|732495|761996|761997|761998|774529|774537|774542|777082|777139|778833|780721|818980|818981|824203|824204|824205|824206|824207|824208|824209|824210|824211|824212|824213|824214|824215|824216|824217|850802|864538|922110|922111|922112|930583|930584|930585|930586|930587|930588|942018|942019|942020|942021|942022|942023|942024|952457|952458|952459|952460|952461|952462|959561|959562|959563|959564|959565", + "upstreamId": "19031|19031|19036|19037|19037|19038|19039|19039|19039|71214|71221|71221|71221|71225|71226|71231|71232|71243|71243|71249|71249|101656|135450|172203|172204|172204|172205|172205|177975|195383|195732|206819|206821|206823|259673|259673|265294|267066|267551|267566|267575|269177|269306|269429|269471|269959|270384|270402|270427|270503|271148|272350|272833|272864|273163|273823|273827|274248|274517|274517|274683|274722|275297|275297|275411|280745|282511|359364|365125|405212|405214|405214|427839|440513|442860|442861|442862|446963|448087|448090|448095|448182|448184|448190|448206|448211|448213|448216|448224|448356|448358|491875|492078|492161|492526|493660|498501|498524|498532|515972|515974|515978|516004|516022|516036|516040|516105|516109|516111|538948|541179|541285|541296|556506|557091|557093|557095|557097|557318|557369|557371|557373|585546|587082|587489|588487|628115|628116|628117|628118|628119|628120|628121|628122|628123|628124|628125|628126|628127|628128|628129|628130|628131|628132|628133|628134|628135|650603|650604|650690|685813|690631|690633|690634|695053|696780|707438|707439|718991|718993|732494|732495|761996|761997|761998|774529|774537|774542|777082|777139|778833|780721|818980|818981|824203|824204|824205|824206|824207|824208|824209|824210|824211|824212|824213|824214|824215|824216|824217|850802|864538|922110|922111|922112|930583|930584|930585|930586|930587|930588|942018|942019|942020|942021|942022|942023|942024|952457|952458|952459|952460|952461|952462|959561|959562|959563|959564|959565", "text": "Congenital muscular dystrophy-dystroglycanopathy with mental retardation, type B3" }, { - "baseId": "19031|19031|19036|19036|19037|19039|19039|48318|71214|71217|71221|71221|71221|71225|71226|71231|71232|71232|71243|71243|71249|71249|101655|101656|101656|101658|135450|135450|142488|172203|172203|172204|172204|172205|172205|177975|195383|195383|195732|206819|206821|206823|206823|249977|259673|259673|265294|265294|267066|267551|267551|267566|267575|269177|269177|269306|269429|269471|269959|270384|270384|270402|270427|270503|271148|272350|272833|272864|273163|273823|273827|274248|274517|274517|274683|274722|275297|275297|275411|280745|280745|280746|280747|281212|281227|282490|282501|282502|282511|282511|359364|359364|365125|405212|405214|405214|427839|440513|442860|442860|442861|442862|446963|448087|448090|448090|448095|448182|448184|448190|448206|448211|448213|448216|448216|448224|448356|448358|491875|492078|492150|492161|492526|493660|498501|498524|498532|515972|515974|515978|516004|516022|516036|516040|516105|516109|516111|538948|541179|541285|541296|541296|556506|557091|557093|557095|557097|557318|557369|557371|557373|585546|587082|587489|588487|628115|628116|628117|628118|628119|628120|628121|628122|628123|628124|628125|628126|628127|628128|628129|628130|628130|628131|628131|628132|628133|628134|628135|650603|650604|650690|685813|690631|690633|690634|695053|696780|696780|707438|707439|718991|718993|732494|732494|732495|761996|761997|761998|774529|774537|774542|777082|777139|778833|780721|804984|818980|818981|824203|824204|824205|824206|824207|824208|824209|824210|824211|824212|824213|824214|824215|824216|824217|850802|864532|864533|864534|864535|864536|864537|864538|864538|864539|864540|865188|865189|922110|922111|922112|930583|930584|930585|930586|930587|930588|942018|942019|942020|942021|942022|942023|942024|952457|952458|952459|952460|952461|952462|959561|959562|959563|959564|959565", + "upstreamId": "19031|19031|19036|19036|19037|19039|19039|48318|71214|71217|71221|71221|71221|71225|71226|71231|71232|71232|71243|71243|71249|71249|101655|101656|101656|101658|135450|135450|142488|172203|172203|172204|172204|172205|172205|177975|195383|195383|195732|206819|206821|206823|206823|249977|259673|259673|265294|265294|267066|267551|267551|267566|267575|269177|269177|269306|269429|269471|269959|270384|270384|270402|270427|270503|271148|272350|272833|272864|273163|273823|273827|274248|274517|274517|274683|274722|275297|275297|275411|280745|280745|280746|280747|281212|281227|282490|282501|282502|282511|282511|359364|359364|365125|405212|405214|405214|427839|440513|442860|442860|442861|442862|446963|448087|448090|448090|448095|448182|448184|448190|448206|448211|448213|448216|448216|448224|448356|448358|491875|492078|492150|492161|492526|493660|498501|498524|498532|515972|515974|515978|516004|516022|516036|516040|516105|516109|516111|538948|541179|541285|541296|541296|556506|557091|557093|557095|557097|557318|557369|557371|557373|585546|587082|587489|588487|628115|628116|628117|628118|628119|628120|628121|628122|628123|628124|628125|628126|628127|628128|628129|628130|628130|628131|628131|628132|628133|628134|628135|650603|650604|650690|685813|690631|690633|690634|695053|696780|696780|707438|707439|718991|718993|732494|732494|732495|761996|761997|761998|774529|774537|774542|777082|777139|778833|780721|804984|818980|818981|824203|824204|824205|824206|824207|824208|824209|824210|824211|824212|824213|824214|824215|824216|824217|850802|864532|864533|864534|864535|864536|864537|864538|864538|864539|864540|865188|865189|922110|922111|922112|930583|930584|930585|930586|930587|930588|942018|942019|942020|942021|942022|942023|942024|952457|952458|952459|952460|952461|952462|959561|959562|959563|959564|959565", "text": "Limb-girdle muscular dystrophy-dystroglycanopathy, type C3" }, { - "baseId": "19031|19033|19039|71217|71221|71221|71231|71232|71243|71249|172204|172205|248803|248805|248807|248808|259673|269429|274517|275297|405212|405214|587057", + "upstreamId": "19031|19033|19039|71217|71221|71221|71231|71232|71243|71249|172204|172205|248803|248805|248807|248808|259673|269429|274517|275297|405212|405214|587057", "text": "Retinitis pigmentosa 76" }, { - "baseId": "19036|71232|101655|101656|101658|134731|134732|134733|134734|134735|135450|142488|172203|190323|195281|195383|195615|195925|195926|206823|229570|229571|249977|252661|265294|266194|266398|267551|269177|269303|270384|272620|273054|273827|273914|273915|280745|280746|280747|281212|281227|282490|282501|282502|282511|302341|302351|302352|302353|302363|302364|302368|302369|302374|302375|302377|302378|302385|302386|302391|302392|302397|302399|302400|302402|302406|302408|302410|305558|305560|305562|305563|305574|305575|305576|305579|305580|305588|305590|305592|305595|305613|305615|305616|305621|305625|305626|305632|305634|305641|305642|305643|305644|305646|305648|305649|305651|305653|305654|305656|305658|310371|310372|310382|310383|310385|310387|310390|310394|310396|310416|310426|310441|310445|310449|310451|310455|310459|310461|310482|310483|310489|310495|310498|310499|310500|310501|310508|310511|310513|310519|310523|310557|310564|310569|310587|310588|310590|310593|310596|310599|310602|310607|310627|310630|310632|310650|310654|310656|310657|310667|310669|310671|310672|310676|310678|337988|347603|352488|359364|369131|492150|501707|541296|588507|589630|619919|628130|628131|696780|732494|777643|864532|864533|864534|864535|864536|864537|864538|864539|864540|865188|865189|897756|897757|897758|897759|897760|897761|897762|897763|897764|897765|897766|897767|897768|897769|897770|897771|897772|897773|897774|897775|897776|897777|897778|897779|897780|897781|897782|897783|897784|897785|897786|897787|897788|897789|897790|897791|897792|897793|897794|897795|897796|897797|897798|897799|897800|897801|897802|897803|897804|897805|897806|897807|897808|897809|897810|897811|897812|897813|897814|897815|897816|897817|897818|897819|897820|897821|897822|897823|897824|897825|897826|897827|897828|897829|897830|900336", + "upstreamId": "19036|71232|101655|101656|101658|134731|134732|134733|134734|134735|135450|142488|172203|190323|195281|195383|195615|195925|195926|206823|229570|229571|249977|252661|265294|266194|266398|267551|269177|269303|270384|272620|273054|273827|273914|273915|280745|280746|280747|281212|281227|282490|282501|282502|282511|302341|302351|302352|302353|302363|302364|302368|302369|302374|302375|302377|302378|302385|302386|302391|302392|302397|302399|302400|302402|302406|302408|302410|305558|305560|305562|305563|305574|305575|305576|305579|305580|305588|305590|305592|305595|305613|305615|305616|305621|305625|305626|305632|305634|305641|305642|305643|305644|305646|305648|305649|305651|305653|305654|305656|305658|310371|310372|310382|310383|310385|310387|310390|310394|310396|310416|310426|310441|310445|310449|310451|310455|310459|310461|310482|310483|310489|310495|310498|310499|310500|310501|310508|310511|310513|310519|310523|310557|310564|310569|310587|310588|310590|310593|310596|310599|310602|310607|310627|310630|310632|310650|310654|310656|310657|310667|310669|310671|310672|310676|310678|337988|347603|352488|359364|369131|492150|501707|541296|588507|589630|619919|628130|628131|696780|732494|777643|864532|864533|864534|864535|864536|864537|864538|864539|864540|865188|865189|897756|897757|897758|897759|897760|897761|897762|897763|897764|897765|897766|897767|897768|897769|897770|897771|897772|897773|897774|897775|897776|897777|897778|897779|897780|897781|897782|897783|897784|897785|897786|897787|897788|897789|897790|897791|897792|897793|897794|897795|897796|897797|897798|897799|897800|897801|897802|897803|897804|897805|897806|897807|897808|897809|897810|897811|897812|897813|897814|897815|897816|897817|897818|897819|897820|897821|897822|897823|897824|897825|897826|897827|897828|897829|897830|900336", "text": "Congenital Muscular Dystrophy, alpha-dystroglycan related" }, { - "baseId": "19040|101273|177625|191238|227306|270301|301375|301390|301393|301397|301398|301402|301407|304561|304564|304566|304584|304589|304590|304591|304592|304595|304600|304601|304603|304608|304609|304610|304621|304622|309194|309199|309209|309212|309214|309224|309230|309231|309238|309239|309240|309241|309244|309246|309248|309251|309252|309253|309404|309413|309414|309416|309421|309426|309430|309431|309432|309440|368827|368831|369119|369417|370651|424652|424653|444040|455974|455978|456529|494135|502151|514549|521952|522360|561183|566256|583101|620246|620247|622373|626169|635441|635442|635443|635444|651629|655762|692097|692098|699734|710693|744257|765967|789118|805521|832774|832775|832776|832777|897133|897134|897135|897136|897137|897138|897139|897140|897141|897142|897143|897144|897145|897146|897147|897148|897149|897150|897151|897152|897153|897154|897155|897156|897157|897158|897159|897160|897161|897162|897163|897164|897165|897166|897167|897168|897169|897170|897171|897172|897173|897174|897175|900294|900295|900296|920234|921226|921227|921228|921230|921231|921232|921234|921235|940055|954978|960618", + "upstreamId": "19040|101273|177625|191238|227306|270301|301375|301390|301393|301397|301398|301402|301407|304561|304564|304566|304584|304589|304590|304591|304592|304595|304600|304601|304603|304608|304609|304610|304621|304622|309194|309199|309209|309212|309214|309224|309230|309231|309238|309239|309240|309241|309244|309246|309248|309251|309252|309253|309404|309413|309414|309416|309421|309426|309430|309431|309432|309440|368827|368831|369119|369417|370651|424652|424653|444040|455974|455978|456529|494135|502151|514549|521952|522360|561183|566256|583101|620246|620247|622373|626169|635441|635442|635443|635444|651629|655762|692097|692098|699734|710693|744257|765967|789118|805521|832774|832775|832776|832777|897133|897134|897135|897136|897137|897138|897139|897140|897141|897142|897143|897144|897145|897146|897147|897148|897149|897150|897151|897152|897153|897154|897155|897156|897157|897158|897159|897160|897161|897162|897163|897164|897165|897166|897167|897168|897169|897170|897171|897172|897173|897174|897175|900294|900295|900296|920234|921226|921227|921228|921230|921231|921232|921234|921235|940055|954978|960618", "text": "Congenital disorder of glycosylation type 2i" }, { - "baseId": "19041|19042|19043|278071|278075|278077|278079|278082|278083|278084|278087|278091|278092|278095|278096|278099|278100|278106|278107|278108|278109|278115|278118|278120|278121|278122|278123|278125|278126|278127|278129|278142|278149|278150|279035|279042|279044|279045|279049|279061|279070|279071|279073|279074|279078|279090|279091|279093|279108|279110|279112|279115|279240|279247|279248|279251|279252|279264|279265|279266|279269|279271|279272|279273|279276|279284|279287|432426|447327|447439|447541|447559|557070|627161|627162|627163|627164|650561|685590|685591|685592|685593|690429|690430|696328|731929|794509|801975|823054|823055|823056|823057|823058|863064|863065|863066|863067|863068|863069|863070|863071|863072|863073|863074|863075|863076|863077|863078|863079|863080|863081|863082|863083|863084|863085|863086|865067|865068|865069|865070|865071|865072|865073|865074|930185|952158|961748", + "upstreamId": "19041|19042|19043|278071|278075|278077|278079|278082|278083|278084|278087|278091|278092|278095|278096|278099|278100|278106|278107|278108|278109|278115|278118|278120|278121|278122|278123|278125|278126|278127|278129|278142|278149|278150|279035|279042|279044|279045|279049|279061|279070|279071|279073|279074|279078|279090|279091|279093|279108|279110|279112|279115|279240|279247|279248|279251|279252|279264|279265|279266|279269|279271|279272|279273|279276|279284|279287|432426|447327|447439|447541|447559|557070|627161|627162|627163|627164|650561|685590|685591|685592|685593|690429|690430|696328|731929|794509|801975|823054|823055|823056|823057|823058|863064|863065|863066|863067|863068|863069|863070|863071|863072|863073|863074|863075|863076|863077|863078|863079|863080|863081|863082|863083|863084|863085|863086|865067|865068|865069|865070|865071|865072|865073|865074|930185|952158|961748", "text": "Deficiency of pyrroline-5-carboxylate reductase" }, { - "baseId": "19044|19045|19046|19047|19048|19049|19050|19051|19052|469838|469884|469887|469889|469889|469891|470841|470907|470908|471319|471321|471326|471330|471334|471795|471796|534055|538494|538495|571658|573199|649178|649179|689259|689260|689262|694667|694668|773425|849028|849029|849030|849031|929396|939191|939192|951329|959021|959022|959023", + "upstreamId": "19044|19045|19046|19047|19048|19049|19050|19051|19052|469838|469884|469887|469889|469889|469891|470841|470907|470908|471319|471321|471326|471330|471334|471795|471796|534055|538494|538495|571658|573199|649178|649179|689259|689260|689262|694667|694668|773425|849028|849029|849030|849031|929396|939191|939192|951329|959021|959022|959023", "text": "Proline dehydrogenase deficiency" }, { - "baseId": "19044|19045|19046|19047|19048|19049|19050|19052|469889", + "upstreamId": "19044|19045|19046|19047|19048|19049|19050|19052|469889", "text": "Schizophrenia 4" }, { - "baseId": "19053|19054|19055|54956|54957|54958|54959|54961|54962|54963|54964|54965|54966|54967|54968|54969|54970|54971|54972|54973|54974|54975|54976|54978|54980|54981|54982|54983|54984|54985|54986|54987|54988|88805|174654|174655|174656|174659|174661|174662|174663|174665|174924|174925|174927|174929|174932|174933|174934|174936|174937|174938|174940|174941|227337|229771|229776|229777|229781|229782|229783|229789|229790|265828|275061|310065|310066|310072|310075|310086|310089|310090|310096|310097|310099|315093|315095|315097|315103|315112|315118|315119|315120|315122|315153|315155|315162|321126|321133|321134|321141|321142|321144|321149|321152|321159|321163|321165|321170|321171|321172|321173|321176|321708|321720|321723|321724|321730|321735|321741|321742|321743|438767|444595|609748|615808|615809|615837|620354|620355|620356|620357|620358|620359|638842|790956|793366|865733|865734|865735|865736|865737|865738|865739|865740|865741|865742|865743|865744|865745|865746|865747|865748|865749|865750|865751|865752|868465", + "upstreamId": "19053|19054|19055|54956|54957|54958|54959|54961|54962|54963|54964|54965|54966|54967|54968|54969|54970|54971|54972|54973|54974|54975|54976|54978|54980|54981|54982|54983|54984|54985|54986|54987|54988|88805|174654|174655|174656|174659|174661|174662|174663|174665|174924|174925|174927|174929|174932|174933|174934|174936|174937|174938|174940|174941|227337|229771|229776|229777|229781|229782|229783|229789|229790|265828|275061|310065|310066|310072|310075|310086|310089|310090|310096|310097|310099|315093|315095|315097|315103|315112|315118|315119|315120|315122|315153|315155|315162|321126|321133|321134|321141|321142|321144|321149|321152|321159|321163|321165|321170|321171|321172|321173|321176|321708|321720|321723|321724|321730|321735|321741|321742|321743|438767|444595|609748|615808|615809|615837|620354|620355|620356|620357|620358|620359|638842|790956|793366|865733|865734|865735|865736|865737|865738|865739|865740|865741|865742|865743|865744|865745|865746|865747|865748|865749|865750|865751|865752|868465", "text": "Deafness, autosomal recessive 30" }, { - "baseId": "19056|19057|19058|99846|99847|99850|99852|99854|134263|134264|191241|191558|205796|266934|337138|337146|337152|337156|337166|346875|346885|346886|346888|346890|346901|346904|350939|350943|350946|350949|350952|350957|350961|351937|351941|351944|351954|378513|469836|470829|482221|493775|534022|534106|571656|620676|620677|620678|620679|649131|649132|649133|649134|649135|649136|694662|742710|742712|786537|821385|848982|848983|852417|852917|929387|951293|951294|951295|959012", + "upstreamId": "19056|19057|19058|99846|99847|99850|99852|99854|134263|134264|191241|191558|205796|266934|337138|337146|337152|337156|337166|346875|346885|346886|346888|346890|346901|346904|350939|350943|350946|350949|350952|350957|350961|351937|351941|351944|351954|378513|469836|470829|482221|493775|534022|534106|571656|620676|620677|620678|620679|649131|649132|649133|649134|649135|649136|694662|742710|742712|786537|821385|848982|848983|852417|852917|929387|951293|951294|951295|959012", "text": "GLUTAMATE FORMIMINOTRANSFERASE DEFICIENCY" }, { - "baseId": "19059", + "upstreamId": "19059", "text": "Acid alpha-glucosidase, allele 2" }, { - "baseId": "19059|19060|19061|19062|19063|19064|19066|19068|19069|19070|19071|19072|19073|19074|19075|19076|98368|98369|98370|98371|98372|98373|98374|98375|98376|98377|98379|98381|98382|98383|98384|98385|98386|98387|98388|98389|98390|98391|98392|98393|98394|98395|98396|98397|98398|98399|98400|101777|134567|134568|176511|176512|176648|176649|177162|177735|178323|178324|178325|185936|186552|186553|186554|186555|186556|186557|186560|186561|186562|186563|186987|186988|186989|186990|186991|186992|186993|186994|186995|186996|186997|186998|186999|187000|187001|187002|187003|187004|187005|187006|187007|187008|187009|187010|187011|187012|187013|187014|187015|187016|187017|187018|187019|191138|191317|191484|191621|191622|191860|192076|192181|193383|193384|194794|195208|195553|195554|226966|247145|256514|256515|256516|256517|256520|256522|256523|256525|256526|256527|256530|260196|265030|265034|265191|265192|265193|265289|265293|265334|265469|265477|265478|265511|265536|265567|265987|265988|266231|266375|266479|266491|266599|266870|266879|267079|267456|267467|267732|267733|267735|268003|268131|268208|268330|268348|268469|268470|268483|268594|268686|268717|268720|268734|269012|269013|269103|269123|269394|269434|269531|269581|269603|269693|269826|269886|269913|269971|270058|270230|270255|270400|270447|270456|270465|270466|270487|270505|270554|270672|270695|270706|270718|270815|270842|271374|271651|272229|272639|272668|272742|272871|272910|273000|273593|273598|273604|273725|273872|273913|274399|274423|274460|274462|274503|274508|274536|274564|274677|275161|275301|275449|275460|330436|330442|330443|330447|330451|330453|330456|330459|330464|330465|330471|330474|340632|340638|340639|340642|340643|340645|340647|340661|340669|340670|340684|340686|340693|340700|340701|340702|346306|346307|346308|346310|346311|346312|346317|346318|346321|347657|347661|347665|347666|347669|347675|347677|347680|347689|354179|354180|358483|358484|358485|358486|358487|358488|358489|358490|358491|358492|358493|358494|358495|358496|358497|358498|358499|358500|358501|358502|358503|358504|358505|358506|358507|358508|358509|358510|358511|358512|358513|358514|358515|358516|358517|358518|358519|358520|358521|358522|358523|360286|375741|375742|375747|375754|376649|376738|376764|376768|376770|376772|378819|378821|390687|410290|410291|410292|410294|410296|410297|410298|415589|415590|422205|422207|422208|426256|426257|433585|445910|445911|466300|467629|467632|467633|467634|467639|467641|467643|467645|467654|467656|467659|467660|467671|468475|468487|468493|468494|468503|468508|468516|468518|468523|468533|468534|468537|468538|468549|468552|468554|468559|468563|468565|468566|468567|468571|468573|468575|468577|468970|468974|468980|468981|468988|468991|468993|468999|469001|469002|469007|469010|469012|469014|469025|469230|469231|469234|469238|469239|469240|469244|469246|469252|469256|469264|469265|469267|469273|469274|469291|469297|469304|469305|469307|469324|469330|469335|486830|487782|487917|488012|488324|488456|488457|488591|488801|489097|489541|489548|489705|489991|490330|490513|490717|490804|491098|491246|491302|491513|492095|492126|492452|492718|493201|493217|506202|506463|506466|506769|506770|507202|507211|512334|513141|530557|530854|530856|531910|531911|531920|531928|531931|531933|531936|531948|531951|531952|531955|531960|531962|531965|531967|531968|531970|531972|531978|531979|531982|532010|532021|532022|532035|532036|532038|532047|532050|532054|532057|532059|532292|532300|532301|532308|532316|532318|532322|532331|532345|548360|548369|548371|548372|548379|548380|548382|548388|548389|548394|548395|548398|548400|548402|548403|548405|548408|548409|548413|548414|548415|548418|548419|548423|548426|548429|548431|548433|548434|548435|548436|548438|548439|548440|548444|548446|548447|548450|548455|548461|548464|548765|548768|548775|548777|548778|548780|548781|548784|548786|548788|548790|548792|548797|548800|548801|548809|548811|548815|548817|548824|548830|548832|548834|549140|549141|549144|549145|549150|549152|549154|549157|549158|549162|549168|549171|549174|549181|549182|549188|549189|549190|549191|549194|549198|549200|549201|549202|549205|551432|552208|569838|569842|569844|569847|569866|569872|569875|569878|569881|569882|569884|571697|571698|571708|571710|571716|571723|571726|571727|571729|571734|572386|572387|572391|572397|572402|572410|574665|574666|574667|574668|574669|574670|574671|574672|574673|574674|574675|584307|584550|585768|586531|587056|587075|587207|588208|588442|588443|589005|589023|589256|589261|621607|621608|621609|621866|621867|625779|625781|625782|625783|625835|646860|646861|646862|646863|646864|646865|646866|646867|646868|646869|646870|646871|646872|646873|646874|646875|646876|646877|646878|646879|646880|646881|646882|646883|646884|646885|646886|646887|646888|646889|646890|646891|646892|646893|646894|646895|646896|646897|646898|646899|646900|646901|646902|646903|646904|646905|646906|646907|646908|646909|646910|646911|646912|646913|652862|652872|653052|653056|653060|653062|653183|653542|681815|682391|682392|694216|694217|694218|695780|695781|695782|715778|727493|727494|727495|727497|741106|741108|756200|756202|756203|756204|760671|771903|771906|771910|771911|771913|771915|771917|776550|785783|785784|785790|785792|785793|788141|788915|798952|798953|821173|821174|846379|846380|846381|846382|846383|846384|846385|846386|846387|846388|846389|846390|846391|846392|846393|846394|846395|846396|846397|846398|846399|846400|846401|846402|846403|846404|846405|846406|846407|846408|846409|846410|846411|846412|846413|846414|846415|846416|846417|846418|846419|846420|846421|846422|846423|846424|846425|846426|846427|846428|846429|846430|846431|846432|846433|846434|851761|852262|852923|852925|852926|878736|878742|878743|878744|878745|878746|878747|878748|878749|878750|878751|878752|878753|878754|878755|878756|878757|878758|878759|878760|878761|878762|880615|905955|915010|917274|917275|917277|917278|917771|919780|920384|920505|921196|921197|921198|921199|921200|921201|921202|921203|921204|921205|921206|921207|928584|928585|928586|928587|928588|928589|928590|928591|928592|928593|928594|928595|928596|928597|928598|928599|938282|938283|938284|938285|938286|938287|938288|938289|938290|938291|938292|938293|938294|938295|938296|950354|950355|950356|950357|950358|950359|950360|950361|950362|950363|950364|950365|950366|950367|958350|958351|958352|958353|958354|958355|958356|958357|958358|958359|958360|958361|958362|958363|958364|958365|958366|958367|958368|958369|958370|958371|958372|960252|960901|960902|961109|961110|961111|961112|961113|961114|961115|961116|961117|961118|961119|961120|961121|961122|961123|961124|961126|961127|961128|961129|961130|961131|961132|961133|961134|961135|961136|970243|970411|970412|970479|970480|970481|971096|972281|972282|972283|972284|972285|972286|972287|972896|972897|972898|972899|972900|976693|979926|979927|979928|979929|979930|979931|979932|979933|982132", + "upstreamId": "19059|19060|19061|19062|19063|19064|19066|19068|19069|19070|19071|19072|19073|19074|19075|19076|98368|98369|98370|98371|98372|98373|98374|98375|98376|98377|98379|98381|98382|98383|98384|98385|98386|98387|98388|98389|98390|98391|98392|98393|98394|98395|98396|98397|98398|98399|98400|101777|134567|134568|176511|176512|176648|176649|177162|177735|178323|178324|178325|185936|186552|186553|186554|186555|186556|186557|186560|186561|186562|186563|186987|186988|186989|186990|186991|186992|186993|186994|186995|186996|186997|186998|186999|187000|187001|187002|187003|187004|187005|187006|187007|187008|187009|187010|187011|187012|187013|187014|187015|187016|187017|187018|187019|191138|191317|191484|191621|191622|191860|192076|192181|193383|193384|194794|195208|195553|195554|226966|247145|256514|256515|256516|256517|256520|256522|256523|256525|256526|256527|256530|260196|265030|265034|265191|265192|265193|265289|265293|265334|265469|265477|265478|265511|265536|265567|265987|265988|266231|266375|266479|266491|266599|266870|266879|267079|267456|267467|267732|267733|267735|268003|268131|268208|268330|268348|268469|268470|268483|268594|268686|268717|268720|268734|269012|269013|269103|269123|269394|269434|269531|269581|269603|269693|269826|269886|269913|269971|270058|270230|270255|270400|270447|270456|270465|270466|270487|270505|270554|270672|270695|270706|270718|270815|270842|271374|271651|272229|272639|272668|272742|272871|272910|273000|273593|273598|273604|273725|273872|273913|274399|274423|274460|274462|274503|274508|274536|274564|274677|275161|275301|275449|275460|330436|330442|330443|330447|330451|330453|330456|330459|330464|330465|330471|330474|340632|340638|340639|340642|340643|340645|340647|340661|340669|340670|340684|340686|340693|340700|340701|340702|346306|346307|346308|346310|346311|346312|346317|346318|346321|347657|347661|347665|347666|347669|347675|347677|347680|347689|354179|354180|358483|358484|358485|358486|358487|358488|358489|358490|358491|358492|358493|358494|358495|358496|358497|358498|358499|358500|358501|358502|358503|358504|358505|358506|358507|358508|358509|358510|358511|358512|358513|358514|358515|358516|358517|358518|358519|358520|358521|358522|358523|360286|375741|375742|375747|375754|376649|376738|376764|376768|376770|376772|378819|378821|390687|410290|410291|410292|410294|410296|410297|410298|415589|415590|422205|422207|422208|426256|426257|433585|445910|445911|466300|467629|467632|467633|467634|467639|467641|467643|467645|467654|467656|467659|467660|467671|468475|468487|468493|468494|468503|468508|468516|468518|468523|468533|468534|468537|468538|468549|468552|468554|468559|468563|468565|468566|468567|468571|468573|468575|468577|468970|468974|468980|468981|468988|468991|468993|468999|469001|469002|469007|469010|469012|469014|469025|469230|469231|469234|469238|469239|469240|469244|469246|469252|469256|469264|469265|469267|469273|469274|469291|469297|469304|469305|469307|469324|469330|469335|486830|487782|487917|488012|488324|488456|488457|488591|488801|489097|489541|489548|489705|489991|490330|490513|490717|490804|491098|491246|491302|491513|492095|492126|492452|492718|493201|493217|506202|506463|506466|506769|506770|507202|507211|512334|513141|530557|530854|530856|531910|531911|531920|531928|531931|531933|531936|531948|531951|531952|531955|531960|531962|531965|531967|531968|531970|531972|531978|531979|531982|532010|532021|532022|532035|532036|532038|532047|532050|532054|532057|532059|532292|532300|532301|532308|532316|532318|532322|532331|532345|548360|548369|548371|548372|548379|548380|548382|548388|548389|548394|548395|548398|548400|548402|548403|548405|548408|548409|548413|548414|548415|548418|548419|548423|548426|548429|548431|548433|548434|548435|548436|548438|548439|548440|548444|548446|548447|548450|548455|548461|548464|548765|548768|548775|548777|548778|548780|548781|548784|548786|548788|548790|548792|548797|548800|548801|548809|548811|548815|548817|548824|548830|548832|548834|549140|549141|549144|549145|549150|549152|549154|549157|549158|549162|549168|549171|549174|549181|549182|549188|549189|549190|549191|549194|549198|549200|549201|549202|549205|551432|552208|569838|569842|569844|569847|569866|569872|569875|569878|569881|569882|569884|571697|571698|571708|571710|571716|571723|571726|571727|571729|571734|572386|572387|572391|572397|572402|572410|574665|574666|574667|574668|574669|574670|574671|574672|574673|574674|574675|584307|584550|585768|586531|587056|587075|587207|588208|588442|588443|589005|589023|589256|589261|621607|621608|621609|621866|621867|625779|625781|625782|625783|625835|646860|646861|646862|646863|646864|646865|646866|646867|646868|646869|646870|646871|646872|646873|646874|646875|646876|646877|646878|646879|646880|646881|646882|646883|646884|646885|646886|646887|646888|646889|646890|646891|646892|646893|646894|646895|646896|646897|646898|646899|646900|646901|646902|646903|646904|646905|646906|646907|646908|646909|646910|646911|646912|646913|652862|652872|653052|653056|653060|653062|653183|653542|681815|682391|682392|694216|694217|694218|695780|695781|695782|715778|727493|727494|727495|727497|741106|741108|756200|756202|756203|756204|760671|771903|771906|771910|771911|771913|771915|771917|776550|785783|785784|785790|785792|785793|788141|788915|798952|798953|821173|821174|846379|846380|846381|846382|846383|846384|846385|846386|846387|846388|846389|846390|846391|846392|846393|846394|846395|846396|846397|846398|846399|846400|846401|846402|846403|846404|846405|846406|846407|846408|846409|846410|846411|846412|846413|846414|846415|846416|846417|846418|846419|846420|846421|846422|846423|846424|846425|846426|846427|846428|846429|846430|846431|846432|846433|846434|851761|852262|852923|852925|852926|878736|878742|878743|878744|878745|878746|878747|878748|878749|878750|878751|878752|878753|878754|878755|878756|878757|878758|878759|878760|878761|878762|880615|905955|915010|917274|917275|917277|917278|917771|919780|920384|920505|921196|921197|921198|921199|921200|921201|921202|921203|921204|921205|921206|921207|928584|928585|928586|928587|928588|928589|928590|928591|928592|928593|928594|928595|928596|928597|928598|928599|938282|938283|938284|938285|938286|938287|938288|938289|938290|938291|938292|938293|938294|938295|938296|950354|950355|950356|950357|950358|950359|950360|950361|950362|950363|950364|950365|950366|950367|958350|958351|958352|958353|958354|958355|958356|958357|958358|958359|958360|958361|958362|958363|958364|958365|958366|958367|958368|958369|958370|958371|958372|960252|960901|960902|961109|961110|961111|961112|961113|961114|961115|961116|961117|961118|961119|961120|961121|961122|961123|961124|961126|961127|961128|961129|961130|961131|961132|961133|961134|961135|961136|970243|970411|970412|970479|970480|970481|971096|972281|972282|972283|972284|972285|972286|972287|972896|972897|972898|972899|972900|976693|979926|979927|979928|979929|979930|979931|979932|979933|982132", "text": "Glycogen storage disease, type II" }, { - "baseId": "19060|19061|19064|19067|19068|610587", + "upstreamId": "19060|19061|19064|19067|19068|610587", "text": "Glycogen storage disease type II, infantile" }, { - "baseId": "19062|19063|19065|19066|19071|19074|19075", + "upstreamId": "19062|19063|19065|19066|19071|19074|19075", "text": "Glycogen storage disease II, adult form" }, { - "baseId": "19066|21965|27037|27039|31088|260196|358501|448519|620443|654717", + "upstreamId": "19066|21965|27037|27039|31088|260196|358501|448519|620443|654717", "text": "Glycogen storage disease" }, { - "baseId": "19069", + "upstreamId": "19069", "text": "Acid alpha-glucosidase, allele 4" }, { - "baseId": "19077|19078|131951|131952|508861|508862|967125", + "upstreamId": "19077|19078|131951|131952|508861|508862|967125", "text": "Ichthyosis, congenital, autosomal recessive 11" }, { - "baseId": "19079|19080|19081|19082|19083|19084|19085|19086|19087|19088|19089|19090|19091|19092|19093|85021|227221|250164|250165|250166|250167|250168|250170|250173|250174|250175|250292|281897|281899|281900|281992|281993|282058|282059|282078|282079|282084|282293|282528|282529|282630|282631|282633|282685|282693|282708|282739|282740|282742|282745|282996|282997|284188|284193|284202|284295|284298|284299|284300|284304|284339|284436|284439|284440|284444|284526|284528|284532|284533|284534|284535|284554|284555|284572|284575|284938|284947|284948|360819|361166|421275|576091|612258|612259|620033|697043|697044|697046|707747|707748|719276|719282|732794|762198|778886|790066|857345|881106|881107|881108|881109|881110|881111|881112|881113|881114|881115|881116|881117|881118|881119|881120|881121|881122|881127|881189|881190|881191|881194|881238|881239|881240|881241|881242|881243|881244|882802|882803|882804|882807|904876|918671|918674", + "upstreamId": "19079|19080|19081|19082|19083|19084|19085|19086|19087|19088|19089|19090|19091|19092|19093|85021|227221|250164|250165|250166|250167|250168|250170|250173|250174|250175|250292|281897|281899|281900|281992|281993|282058|282059|282078|282079|282084|282293|282528|282529|282630|282631|282633|282685|282693|282708|282739|282740|282742|282745|282996|282997|284188|284193|284202|284295|284298|284299|284300|284304|284339|284436|284439|284440|284444|284526|284528|284532|284533|284534|284535|284554|284555|284572|284575|284938|284947|284948|360819|361166|421275|576091|612258|612259|620033|697043|697044|697046|707747|707748|719276|719282|732794|762198|778886|790066|857345|881106|881107|881108|881109|881110|881111|881112|881113|881114|881115|881116|881117|881118|881119|881120|881121|881122|881127|881189|881190|881191|881194|881238|881239|881240|881241|881242|881243|881244|882802|882803|882804|882807|904876|918671|918674", "text": "Deficiency of iodide peroxidase" }, { - "baseId": "19094|19095|19096|19097|19098|19099|19100|101399|101400|101401|101402|101404|141935|141936|141937|141938|200300|247120|326464|326467|326476|326477|326481|326484|336230|336237|336238|336243|336247|336251|336259|336263|336265|336269|336271|336272|336274|336278|336281|336285|342469|342473|342476|342477|342480|342481|342482|342484|342486|342492|344131|344133|344134|344137|344138|344139|344142|344143|374618|375507|375520|375531|375532|375686|375687|409746|426185|466056|466065|466824|466832|467109|505543|530341|530344|530430|530435|530602|568428|569400|570537|570584|574190|645062|645063|645064|645065|688667|695707|740390|755428|820888|844413|844414|844415|844416|844417|844418|857403|876035|876036|876037|876038|876039|876040|876041|876042|876043|876044|876045|876046|876047|876048|876049|876050|876051|876052|876053|876054|876055|876056|876057|876058|876723|927977|927978|927979|927980|937643|937644|957902|957903", + "upstreamId": "19094|19095|19096|19097|19098|19099|19100|101399|101400|101401|101402|101404|141935|141936|141937|141938|200300|247120|326464|326467|326476|326477|326481|326484|336230|336237|336238|336243|336247|336251|336259|336263|336265|336269|336271|336272|336274|336278|336281|336285|342469|342473|342476|342477|342480|342481|342482|342484|342486|342492|344131|344133|344134|344137|344138|344139|344142|344143|374618|375507|375520|375531|375532|375686|375687|409746|426185|466056|466065|466824|466832|467109|505543|530341|530344|530430|530435|530602|568428|569400|570537|570584|574190|645062|645063|645064|645065|688667|695707|740390|755428|820888|844413|844414|844415|844416|844417|844418|857403|876035|876036|876037|876038|876039|876040|876041|876042|876043|876044|876045|876046|876047|876048|876049|876050|876051|876052|876053|876054|876055|876056|876057|876058|876723|927977|927978|927979|927980|937643|937644|957902|957903", "text": "Deficiency of malonyl-CoA decarboxylase" }, { - "baseId": "19101|19102|19103|19104|187124|187125|227367|227368|237177|255228|255229|255230|255231|255232|255233|255234|255235|255236|255237|255238|255239|255240|255241|264574|271316|322584|322586|322587|322589|322590|322592|322604|322605|322607|322608|322612|322614|322618|322620|322621|322622|322624|322629|322632|322633|332060|332064|332068|332071|332074|332075|332080|332082|332084|332086|332092|332099|332110|332111|332127|332129|332138|332140|332145|332148|332152|332155|339022|339029|339031|339034|339040|339046|339047|339051|339063|339064|339065|339067|339070|339071|339087|339098|339102|339105|339106|339110|340593|340597|340603|340605|340607|340608|340609|340618|340619|340621|340634|340636|340637|340644|340646|364107|409243|409247|445329|512140|538442|609269|609270|620516|620517|620518|620519|620520|620521|620522|621483|626316|703228|703229|703230|714464|714465|726101|726104|730999|731001|739640|739646|739647|754473|754474|754476|754481|754483|770181|770183|778245|791454|873587|873588|873589|873590|873591|873592|873593|873594|873595|873596|873597|873598|873599|873600|873601|873602|873603|873604|873605|873606|873607|873608|873609|873610|873611|873612|873613|873614|873615|873616|873617|873618|873619|873620|873621|873622|873623|873624|873625|873626|873627|873628|873629|873630|873631|873632|873633|873634|873635|873636|873637|873638|873639|873640|873641|873642|873643|873644|873645|873646|873647|873648|873649|873650|873651|873652|873653|873654|873655|876519|876520|876521|876522|876523|876524|876525|876526|876527|903688|903691|903692|906176|973036", + "upstreamId": "19101|19102|19103|19104|187124|187125|227367|227368|237177|255228|255229|255230|255231|255232|255233|255234|255235|255236|255237|255238|255239|255240|255241|264574|271316|322584|322586|322587|322589|322590|322592|322604|322605|322607|322608|322612|322614|322618|322620|322621|322622|322624|322629|322632|322633|332060|332064|332068|332071|332074|332075|332080|332082|332084|332086|332092|332099|332110|332111|332127|332129|332138|332140|332145|332148|332152|332155|339022|339029|339031|339034|339040|339046|339047|339051|339063|339064|339065|339067|339070|339071|339087|339098|339102|339105|339106|339110|340593|340597|340603|340605|340607|340608|340609|340618|340619|340621|340634|340636|340637|340644|340646|364107|409243|409247|445329|512140|538442|609269|609270|620516|620517|620518|620519|620520|620521|620522|621483|626316|703228|703229|703230|714464|714465|726101|726104|730999|731001|739640|739646|739647|754473|754474|754476|754481|754483|770181|770183|778245|791454|873587|873588|873589|873590|873591|873592|873593|873594|873595|873596|873597|873598|873599|873600|873601|873602|873603|873604|873605|873606|873607|873608|873609|873610|873611|873612|873613|873614|873615|873616|873617|873618|873619|873620|873621|873622|873623|873624|873625|873626|873627|873628|873629|873630|873631|873632|873633|873634|873635|873636|873637|873638|873639|873640|873641|873642|873643|873644|873645|873646|873647|873648|873649|873650|873651|873652|873653|873654|873655|876519|876520|876521|876522|876523|876524|876525|876526|876527|903688|903691|903692|906176|973036", "text": "Thyroid dyshormonogenesis 6" }, { - "baseId": "19105|19106|19108|19109|19110|19111|19112|39560|39561|39562|131935|131936|131937|131938|131939|131940|131941|131942|131943|131944|131945|131946|274485|335338|335358|335359|335360|335361|335369|335371|335374|335378|345199|345200|345203|345205|349932|349936|349937|349940|349941|349943|349944|350941|350942|350945|350947|350950|350951|350954|350955|350958|442289|471355|533596|537001|550312|571202|571210|572881|572886|573455|575091|575091|575092|575093|575094|583131|624677|648644|648645|648646|648647|648648|648649|648650|648651|648652|648653|648654|648655|648656|648657|648658|648659|653099|653196|653541|716950|731341|757494|757495|757496|757497|757500|757501|760951|773095|773096|776936|780209|786367|788077|788937|789389|791979|821319|821320|821321|821322|821323|821324|848363|848364|848365|848366|848367|848368|848369|848370|848371|848372|848373|848374|848375|848376|848377|848378|848379|851849|886058|886059|886060|886061|886062|886063|886064|886065|886066|886067|886068|886069|886070|886071|887457|887458|929174|929175|929176|929177|929178|938969|938970|938971|938972|940508|951087|951088|951089|958830|958831|958832|958833|958834|965449", + "upstreamId": "19105|19106|19108|19109|19110|19111|19112|39560|39561|39562|131935|131936|131937|131938|131939|131940|131941|131942|131943|131944|131945|131946|274485|335338|335358|335359|335360|335361|335369|335371|335374|335378|345199|345200|345203|345205|349932|349936|349937|349940|349941|349943|349944|350941|350942|350945|350947|350950|350951|350954|350955|350958|442289|471355|533596|537001|550312|571202|571210|572881|572886|573455|575091|575091|575092|575093|575094|583131|624677|648644|648645|648646|648647|648648|648649|648650|648651|648652|648653|648654|648655|648656|648657|648658|648659|653099|653196|653541|716950|731341|757494|757495|757496|757497|757500|757501|760951|773095|773096|776936|780209|786367|788077|788937|789389|791979|821319|821320|821321|821322|821323|821324|848363|848364|848365|848366|848367|848368|848369|848370|848371|848372|848373|848374|848375|848376|848377|848378|848379|851849|886058|886059|886060|886061|886062|886063|886064|886065|886066|886067|886068|886069|886070|886071|887457|887458|929174|929175|929176|929177|929178|938969|938970|938971|938972|940508|951087|951088|951089|958830|958831|958832|958833|958834|965449", "text": "Aicardi Goutieres syndrome 5" }, { - "baseId": "19113|19114|19115|678038", + "upstreamId": "19113|19114|19115|678038", "text": "Atrial septal defect 6" }, { - "baseId": "19116|19117|19118|19119|19120|19121|19122|19123|19124|19125|39557|39558|78985|78987|78989|106596|134235|134236|140505|190553|195734|202867|202869|202871|202871|202880|202895|202896|217194|332905|361660|445413|465133|489664|513349|513350|513351|513633|547494|547496|547501|547502|547504|547505|547512|547515|547518|547519|547521|547731|547732|547734|547736|547737|548146|548148|548159|551390|551391|551392|551393|569589|612357|802207|858717|906332|972210|972211|972212", + "upstreamId": "19116|19117|19118|19119|19120|19121|19122|19123|19124|19125|39557|39558|78985|78987|78989|106596|134235|134236|140505|190553|195734|202867|202869|202871|202871|202880|202895|202896|217194|332905|361660|445413|465133|489664|513349|513350|513351|513633|547494|547496|547501|547502|547504|547505|547512|547515|547518|547519|547521|547731|547732|547734|547736|547737|548146|548148|548159|551390|551391|551392|551393|569589|612357|802207|858717|906332|972210|972211|972212", "text": "Neuronal ceroid lipofuscinosis 6" }, { - "baseId": "19126|19126|19127|19128|19128|19130|19131|19131|19132|19133|19135|19136|19136|19137|19137|19138|19139|70651|70652|70653|70654|70655|70655|70657|70658|70659|70660|70661|70662|70662|70663|70664|70665|70666|70667|70668|75348|76466|76466|76467|76467|76468|193370|193372|193372|251814|251814|251815|251815|251816|251816|251817|251817|265354|265354|265355|265355|267147|267147|268613|274270|274270|296301|296302|296303|296306|296306|296314|296316|296323|296325|296328|296332|296335|296337|296339|296341|296346|296347|296348|296354|296356|296360|298117|298139|298140|298144|298145|298146|298149|298150|298151|298155|298163|298164|298165|298166|298167|298173|298181|298182|298188|302172|302178|302181|302182|302183|302183|302184|302187|302188|302193|302193|302195|302198|302203|302205|302208|302209|302240|302241|302245|302246|302248|302250|302251|302270|302275|302276|302293|302298|302424|302427|302428|302433|302433|302435|302436|302437|302438|302439|302440|302443|302450|302455|302466|302467|302480|302481|302486|302487|302495|302498|357392|357393|357394|357395|357396|357396|357397|357398|357399|357400|357401|357402|357403|357403|357404|357405|357406|357407|357408|357409|357410|357411|414994|414994|487047|500718|543337|633630|633631|633632|633633|633634|655645|698914|709729|734929|734930|734932|805005|830533|830534|830535|893524|893525|893526|893527|893528|893529|893530|893531|893532|893533|893534|893535|893536|893537|893538|893539|893540|893541|893542|893543|893544|893545|893546|893547|893548|893549|893550|893551|893552|893553|893554|893555|893556|893557|893558|893559|893560|893561|893562|893563|893564|893565|893566|893567|893568|893569|893570|893571|893572|893573|893574|893575|923947|932794|932795|944488|944489|944490|954090|954091|954092", + "upstreamId": "19126|19126|19127|19128|19128|19130|19131|19131|19132|19133|19135|19136|19136|19137|19137|19138|19139|70651|70652|70653|70654|70655|70655|70657|70658|70659|70660|70661|70662|70662|70663|70664|70665|70666|70667|70668|75348|76466|76466|76467|76467|76468|193370|193372|193372|251814|251814|251815|251815|251816|251816|251817|251817|265354|265354|265355|265355|267147|267147|268613|274270|274270|296301|296302|296303|296306|296306|296314|296316|296323|296325|296328|296332|296335|296337|296339|296341|296346|296347|296348|296354|296356|296360|298117|298139|298140|298144|298145|298146|298149|298150|298151|298155|298163|298164|298165|298166|298167|298173|298181|298182|298188|302172|302178|302181|302182|302183|302183|302184|302187|302188|302193|302193|302195|302198|302203|302205|302208|302209|302240|302241|302245|302246|302248|302250|302251|302270|302275|302276|302293|302298|302424|302427|302428|302433|302433|302435|302436|302437|302438|302439|302440|302443|302450|302455|302466|302467|302480|302481|302486|302487|302495|302498|357392|357393|357394|357395|357396|357396|357397|357398|357399|357400|357401|357402|357403|357403|357404|357405|357406|357407|357408|357409|357410|357411|414994|414994|487047|500718|543337|633630|633631|633632|633633|633634|655645|698914|709729|734929|734930|734932|805005|830533|830534|830535|893524|893525|893526|893527|893528|893529|893530|893531|893532|893533|893534|893535|893536|893537|893538|893539|893540|893541|893542|893543|893544|893545|893546|893547|893548|893549|893550|893551|893552|893553|893554|893555|893556|893557|893558|893559|893560|893561|893562|893563|893564|893565|893566|893567|893568|893569|893570|893571|893572|893573|893574|893575|923947|932794|932795|944488|944489|944490|954090|954091|954092", "text": "Diastrophic dysplasia" }, { - "baseId": "19126|19126|19127|19128|19128|19129|19130|19130|19131|19131|19136|19136|19137|19137|70653|70655|70657|70662|75348|76466|76466|76467|76467|76468|193370|193372|193372|228215|251814|251814|251815|251815|251816|251816|251817|251817|265354|265354|265355|265355|267147|267147|268613|274270|274270|296301|296302|296303|296306|296306|296314|296316|296323|296325|296328|296332|296335|296337|296339|296341|296346|296347|296348|296354|296356|296360|298117|298139|298140|298144|298145|298146|298150|298151|298155|298163|298166|298167|298181|298182|298188|302172|302178|302181|302182|302183|302183|302184|302187|302188|302193|302193|302195|302198|302203|302205|302209|302240|302241|302245|302246|302248|302250|302251|302270|302275|302276|302293|302298|302424|302427|302428|302433|302433|302435|302436|302437|302438|302440|302443|302450|302455|302466|302467|302481|302495|302498|357392|357393|357394|357395|357396|357396|357397|357398|357399|357400|357401|357402|357403|357403|357404|357405|357406|357407|357408|357409|357410|357411|414994|414994|487047|500718|543337|633630|633631|633632|633633|633634|655645|698914|709729|734929|734930|734932|830533|830534|830535|893524|893525|893526|893527|893528|893529|893530|893531|893532|893533|893534|893535|893536|893537|893538|893539|893540|893541|893542|893543|893544|893545|893546|893547|893548|893549|893550|893551|893552|893553|893554|893555|893556|893557|893558|893559|893560|893561|893562|893563|893564|893565|893566|893567|893568|893569|893570|893571|893572|893573|893574|893575|923947|932794|932795|944488|944489|944490|954090|954091|954092", + "upstreamId": "19126|19126|19127|19128|19128|19129|19130|19130|19131|19131|19136|19136|19137|19137|70653|70655|70657|70662|75348|76466|76466|76467|76467|76468|193370|193372|193372|228215|251814|251814|251815|251815|251816|251816|251817|251817|265354|265354|265355|265355|267147|267147|268613|274270|274270|296301|296302|296303|296306|296306|296314|296316|296323|296325|296328|296332|296335|296337|296339|296341|296346|296347|296348|296354|296356|296360|298117|298139|298140|298144|298145|298146|298150|298151|298155|298163|298166|298167|298181|298182|298188|302172|302178|302181|302182|302183|302183|302184|302187|302188|302193|302193|302195|302198|302203|302205|302209|302240|302241|302245|302246|302248|302250|302251|302270|302275|302276|302293|302298|302424|302427|302428|302433|302433|302435|302436|302437|302438|302440|302443|302450|302455|302466|302467|302481|302495|302498|357392|357393|357394|357395|357396|357396|357397|357398|357399|357400|357401|357402|357403|357403|357404|357405|357406|357407|357408|357409|357410|357411|414994|414994|487047|500718|543337|633630|633631|633632|633633|633634|655645|698914|709729|734929|734930|734932|830533|830534|830535|893524|893525|893526|893527|893528|893529|893530|893531|893532|893533|893534|893535|893536|893537|893538|893539|893540|893541|893542|893543|893544|893545|893546|893547|893548|893549|893550|893551|893552|893553|893554|893555|893556|893557|893558|893559|893560|893561|893562|893563|893564|893565|893566|893567|893568|893569|893570|893571|893572|893573|893574|893575|923947|932794|932795|944488|944489|944490|954090|954091|954092", "text": "Atelosteogenesis type II" }, { - "baseId": "19126|19126|19127|19128|19128|19130|19131|19131|19132|19133|19136|19136|19137|19137|70653|70655|70657|70662|75348|75348|76466|76466|76467|76467|76468|193370|193372|193372|251814|251814|251815|251815|251816|251816|251817|251817|265354|265354|265355|265355|267147|267147|268613|268613|274270|274270|296301|296302|296303|296306|296306|296314|296316|296323|296325|296328|296332|296335|296337|296339|296341|296346|296347|296348|296354|296356|296360|298117|298139|298140|298144|298145|298146|298150|298151|298155|298163|298166|298167|298181|298182|298188|302172|302178|302181|302182|302183|302183|302184|302187|302188|302193|302193|302195|302198|302203|302205|302209|302240|302241|302245|302246|302248|302250|302251|302270|302275|302276|302293|302298|302424|302427|302428|302433|302433|302435|302436|302437|302438|302440|302443|302450|302455|302466|302467|302481|302495|302498|357392|357393|357394|357395|357396|357396|357397|357398|357399|357400|357401|357402|357403|357403|357404|357405|357406|357407|357408|357409|357410|357411|414994|414994|487047|500718|543337|633630|633631|633632|633633|633634|633634|655645|655645|698914|709729|709729|734929|734929|734930|734932|782214|805081|830533|830534|830535|893524|893525|893526|893527|893528|893529|893530|893531|893532|893533|893534|893535|893536|893537|893538|893539|893540|893541|893542|893543|893544|893545|893546|893547|893548|893549|893550|893551|893552|893553|893554|893555|893556|893557|893558|893559|893560|893561|893562|893563|893564|893565|893566|893567|893568|893569|893570|893571|893572|893573|893574|893575|923947|932794|932795|944488|944489|944490|954090|954091|954092|964243|978156|978157|978158|978159", + "upstreamId": "19126|19126|19127|19128|19128|19130|19131|19131|19132|19133|19136|19136|19137|19137|70653|70655|70657|70662|75348|75348|76466|76466|76467|76467|76468|193370|193372|193372|251814|251814|251815|251815|251816|251816|251817|251817|265354|265354|265355|265355|267147|267147|268613|268613|274270|274270|296301|296302|296303|296306|296306|296314|296316|296323|296325|296328|296332|296335|296337|296339|296341|296346|296347|296348|296354|296356|296360|298117|298139|298140|298144|298145|298146|298150|298151|298155|298163|298166|298167|298181|298182|298188|302172|302178|302181|302182|302183|302183|302184|302187|302188|302193|302193|302195|302198|302203|302205|302209|302240|302241|302245|302246|302248|302250|302251|302270|302275|302276|302293|302298|302424|302427|302428|302433|302433|302435|302436|302437|302438|302440|302443|302450|302455|302466|302467|302481|302495|302498|357392|357393|357394|357395|357396|357396|357397|357398|357399|357400|357401|357402|357403|357403|357404|357405|357406|357407|357408|357409|357410|357411|414994|414994|487047|500718|543337|633630|633631|633632|633633|633634|633634|655645|655645|698914|709729|709729|734929|734929|734930|734932|782214|805081|830533|830534|830535|893524|893525|893526|893527|893528|893529|893530|893531|893532|893533|893534|893535|893536|893537|893538|893539|893540|893541|893542|893543|893544|893545|893546|893547|893548|893549|893550|893551|893552|893553|893554|893555|893556|893557|893558|893559|893560|893561|893562|893563|893564|893565|893566|893567|893568|893569|893570|893571|893572|893573|893574|893575|923947|932794|932795|944488|944489|944490|954090|954091|954092|964243|978156|978157|978158|978159", "text": "Achondrogenesis, type IB" }, { - "baseId": "19126|19128|19131|19136|19137|70665|70666|76466|76467|76468|186695|193370|193372|251814|251815|251816|251817|265354|265355|267147|274270|296301|296302|296303|296306|296314|296316|296323|296325|296328|296332|296335|296337|296339|296341|296346|296347|296348|296354|296356|296360|298117|298139|298140|298144|298145|298146|298149|298150|298151|298155|298163|298164|298165|298166|298167|298173|298181|298182|298188|302172|302178|302181|302182|302183|302184|302187|302188|302193|302195|302198|302203|302205|302208|302209|302240|302241|302245|302246|302248|302250|302251|302270|302275|302276|302293|302298|302424|302427|302428|302433|302435|302436|302437|302438|302439|302440|302443|302450|302455|302466|302467|302480|302481|302486|302487|302495|302498|357396|414994|487047|543810|610502|610503|610504|610505|610506|610507|610508|610509|893524|893525|893526|893527|893528|893529|893530|893531|893532|893533|893534|893535|893536|893537|893538|893539|893540|893541|893542|893543|893544|893545|893546|893547|893548|893549|893550|893551|893552|893553|893554|893555|893556|893557|893558|893559|893560|893561|893562|893563|893564|893565|893566|893567|893568|893569|893570|893571|893572|893573|893574|893575|916952|916953|965835", + "upstreamId": "19126|19128|19131|19136|19137|70665|70666|76466|76467|76468|186695|193370|193372|251814|251815|251816|251817|265354|265355|267147|274270|296301|296302|296303|296306|296314|296316|296323|296325|296328|296332|296335|296337|296339|296341|296346|296347|296348|296354|296356|296360|298117|298139|298140|298144|298145|298146|298149|298150|298151|298155|298163|298164|298165|298166|298167|298173|298181|298182|298188|302172|302178|302181|302182|302183|302184|302187|302188|302193|302195|302198|302203|302205|302208|302209|302240|302241|302245|302246|302248|302250|302251|302270|302275|302276|302293|302298|302424|302427|302428|302433|302435|302436|302437|302438|302439|302440|302443|302450|302455|302466|302467|302480|302481|302486|302487|302495|302498|357396|414994|487047|543810|610502|610503|610504|610505|610506|610507|610508|610509|893524|893525|893526|893527|893528|893529|893530|893531|893532|893533|893534|893535|893536|893537|893538|893539|893540|893541|893542|893543|893544|893545|893546|893547|893548|893549|893550|893551|893552|893553|893554|893555|893556|893557|893558|893559|893560|893561|893562|893563|893564|893565|893566|893567|893568|893569|893570|893571|893572|893573|893574|893575|916952|916953|965835", "text": "Osteochondrodysplasia" }, { - "baseId": "19126|19127|19128|19128|19129|19130|19130|19131|19131|19133|19136|19136|19137|19137|70653|70655|70655|70657|70662|70666|75348|76466|76466|76467|76467|76468|186695|193370|193372|193372|251814|251814|251815|251815|251816|251816|251817|251817|265354|265354|265355|265355|267147|267147|268613|274270|274270|296301|296302|296303|296306|296306|296314|296316|296323|296325|296328|296332|296335|296337|296339|296341|296346|296347|296348|296354|296356|296360|298117|298139|298140|298144|298145|298146|298149|298150|298151|298155|298163|298164|298165|298166|298167|298173|298181|298182|298188|302172|302178|302181|302182|302183|302183|302184|302187|302188|302193|302193|302195|302198|302203|302205|302208|302209|302240|302241|302245|302246|302248|302250|302251|302270|302275|302276|302293|302298|302424|302427|302428|302433|302433|302435|302436|302437|302438|302439|302440|302443|302450|302455|302466|302467|302480|302481|302486|302487|302495|302498|357392|357393|357394|357395|357396|357396|357397|357398|357399|357400|357401|357402|357403|357403|357404|357405|357406|357407|357408|357409|357410|357411|414994|414994|487047|500718|543326|543337|543337|543341|543348|543351|543354|543356|543359|543362|543602|543605|543608|543613|543615|543624|543703|543705|543706|543708|543710|543711|543718|543725|543795|543796|543797|543798|543801|543806|543809|543810|543812|612468|633630|633631|633632|633633|633634|655645|698914|709729|734929|734930|734932|830533|830534|830535|893524|893525|893526|893527|893528|893529|893530|893531|893532|893533|893534|893535|893536|893537|893538|893539|893540|893541|893542|893543|893544|893545|893546|893547|893548|893549|893550|893551|893552|893553|893554|893555|893556|893557|893558|893559|893560|893561|893562|893563|893564|893565|893566|893567|893568|893569|893570|893571|893572|893573|893574|893575|923947|932794|932795|944488|944489|944490|954090|954091|954092", + "upstreamId": "19126|19127|19128|19128|19129|19130|19130|19131|19131|19133|19136|19136|19137|19137|70653|70655|70655|70657|70662|70666|75348|76466|76466|76467|76467|76468|186695|193370|193372|193372|251814|251814|251815|251815|251816|251816|251817|251817|265354|265354|265355|265355|267147|267147|268613|274270|274270|296301|296302|296303|296306|296306|296314|296316|296323|296325|296328|296332|296335|296337|296339|296341|296346|296347|296348|296354|296356|296360|298117|298139|298140|298144|298145|298146|298149|298150|298151|298155|298163|298164|298165|298166|298167|298173|298181|298182|298188|302172|302178|302181|302182|302183|302183|302184|302187|302188|302193|302193|302195|302198|302203|302205|302208|302209|302240|302241|302245|302246|302248|302250|302251|302270|302275|302276|302293|302298|302424|302427|302428|302433|302433|302435|302436|302437|302438|302439|302440|302443|302450|302455|302466|302467|302480|302481|302486|302487|302495|302498|357392|357393|357394|357395|357396|357396|357397|357398|357399|357400|357401|357402|357403|357403|357404|357405|357406|357407|357408|357409|357410|357411|414994|414994|487047|500718|543326|543337|543337|543341|543348|543351|543354|543356|543359|543362|543602|543605|543608|543613|543615|543624|543703|543705|543706|543708|543710|543711|543718|543725|543795|543796|543797|543798|543801|543806|543809|543810|543812|612468|633630|633631|633632|633633|633634|655645|698914|709729|734929|734930|734932|830533|830534|830535|893524|893525|893526|893527|893528|893529|893530|893531|893532|893533|893534|893535|893536|893537|893538|893539|893540|893541|893542|893543|893544|893545|893546|893547|893548|893549|893550|893551|893552|893553|893554|893555|893556|893557|893558|893559|893560|893561|893562|893563|893564|893565|893566|893567|893568|893569|893570|893571|893572|893573|893574|893575|923947|932794|932795|944488|944489|944490|954090|954091|954092", "text": "Multiple epiphyseal dysplasia type 4" }, { - "baseId": "19128|19131|19136|70655|543810", + "upstreamId": "19128|19131|19136|70655|543810", "text": "SLC26A2-Related Disorders" }, { - "baseId": "19128|19131|19136|19137|39925|39926|39927|39928|39929|39930|626129|980445", + "upstreamId": "19128|19131|19136|19137|39925|39926|39927|39928|39929|39930|626129|980445", "text": "3MC syndrome 2" }, { - "baseId": "19135", + "upstreamId": "19135", "text": "Diastrophic dysplasia, broad bone-platyspondylic variant" }, { - "baseId": "19138", + "upstreamId": "19138", "text": "de la Chapelle dysplasia" }, { - "baseId": "19140|135486|135487|135488|207097|207102|207105|292107|292108|292111|292116|292120|292132|292133|292140|292141|293542|293547|293551|293552|293553|293555|293561|296835|296843|296853|296856|296857|296860|296867|296869|296872|296874|296875|296876|296879|296881|296882|428256|428262|434590|439129|620143|620144|620145|620772|622337|709136|720719|720720|748686|890023|890024|890025|890026|890027|890028|890029|890030|890031|890032|890033|890034|890035|890036|890037|890038|890039|890040|890041|890042|890043|890044|890045|890046|890047|890048|890049|890050|890051|890052|890053|890054|890055|890056|890057|890058|890059|890060|890061|890062|890063|891743|891744|891745|891746|891747", + "upstreamId": "19140|135486|135487|135488|207097|207102|207105|292107|292108|292111|292116|292120|292132|292133|292140|292141|293542|293547|293551|293552|293553|293555|293561|296835|296843|296853|296856|296857|296860|296867|296869|296872|296874|296875|296876|296879|296881|296882|428256|428262|434590|439129|620143|620144|620145|620772|622337|709136|720719|720720|748686|890023|890024|890025|890026|890027|890028|890029|890030|890031|890032|890033|890034|890035|890036|890037|890038|890039|890040|890041|890042|890043|890044|890045|890046|890047|890048|890049|890050|890051|890052|890053|890054|890055|890056|890057|890058|890059|890060|890061|890062|890063|891743|891744|891745|891746|891747", "text": "Mental retardation, autosomal recessive 1" }, { - "baseId": "19141|19144|57024|57025|57027|57032|57033|57035|57037|57038|57041|88600|174571|174574|174847|174849|181568|270989|308677|308678|308681|308682|308683|313238|313243|313249|313250|313251|313261|313269|319058|319061|319062|319063|319071|319072|319073|319074|319680|319687|319688|404781|404782|497055|536777|585701|796330|902290|902291|902292|902293|902294|902295|902296|902297|902298|902299|902300|902301|902302|902303|902304", + "upstreamId": "19141|19144|57024|57025|57027|57032|57033|57035|57037|57038|57041|88600|174571|174574|174847|174849|181568|270989|308677|308678|308681|308682|308683|313238|313243|313249|313250|313251|313261|313269|319058|319061|319062|319063|319071|319072|319073|319074|319680|319687|319688|404781|404782|497055|536777|585701|796330|902290|902291|902292|902293|902294|902295|902296|902297|902298|902299|902300|902301|902302|902303|902304", "text": "Deafness, autosomal dominant 36" }, { - "baseId": "19142|19143|19145|19146|57024|57025|57027|57028|57032|57033|57035|57037|57038|57041|88600|174571|174574|174847|174849|229701|229709|237604|237605|270989|272121|308677|308678|308681|308682|308683|313238|313243|313249|313250|313251|313261|313269|319058|319061|319062|319063|319071|319072|319073|319074|319680|319687|319688|389230|404781|404782|497055|536777|553259|553260|585701|610566|611985|615807|622690|790916|796330|902290|902291|902292|902293|902294|902295|902296|902297|902298|902299|902300|902301|902302|902303|902304|919238", + "upstreamId": "19142|19143|19145|19146|57024|57025|57027|57028|57032|57033|57035|57037|57038|57041|88600|174571|174574|174847|174849|229701|229709|237604|237605|270989|272121|308677|308678|308681|308682|308683|313238|313243|313249|313250|313251|313261|313269|319058|319061|319062|319063|319071|319072|319073|319074|319680|319687|319688|389230|404781|404782|497055|536777|553259|553260|585701|610566|611985|615807|622690|790916|796330|902290|902291|902292|902293|902294|902295|902296|902297|902298|902299|902300|902301|902302|902303|902304|919238", "text": "Deafness, autosomal recessive 7" }, { - "baseId": "19147|19148|19149|19150|19151|19152|19153|19154|87316|102259|102260|102261|102262|102263|102264|102265|102266|102267|102268|102269|102270|102271|102272|102275|102277|102278|102279|102280|102281|102282|102285|102287|102288|102290|102291|102292|102293|102295|102296|102297|102298|102299|102300|102304|102305|102306|102308|102309|102310|102313|102314|102315|102316|102317|102318|102319|102320|102321|102323|102325|102326|102328|102329|102330|102333|102334|102335|102336|102337|102338|102339|116425|171423|176973|176975|177105|177107|177236|177237|177238|177239|177240|177368|177369|177371|177948|177949|177950|177951|177952|177953|177954|177955|177956|186054|186055|186056|186704|186705|186706|186707|186708|186709|186710|186711|186712|186713|186714|186715|186716|186717|186718|186719|186720|191600|192699|192860|192861|193072|193213|193306|193797|193963|193964|193965|193966|193968|194150|194151|194181|194210|194211|194528|194636|194696|194716|194763|195031|195103|195119|195176|195438|195467|195475|195477|195529|195776|195777|196344|205151|212522|212523|212524|212525|212526|221620|221632|221633|221634|221635|221636|221637|221638|237391|239938|239939|239940|239941|239942|239943|239944|239945|239946|252401|252410|252411|252412|252413|252418|252420|252421|252423|252424|252425|252431|252433|252443|260786|264271|265614|266031|266291|267765|267888|267889|268288|269482|269740|269998|270593|270888|270921|271038|271324|271337|271340|271438|271742|271756|272334|272389|272708|272711|272825|272930|272956|272957|273780|274051|274060|274118|274120|274122|274123|274127|275135|275189|275212|275214|275266|275386|300610|300613|300614|300616|300617|300621|300628|300630|300631|300634|300638|300650|300651|300664|300670|300672|300676|300683|300686|300687|300688|303521|303523|303525|303531|303533|303534|303536|303537|303539|303548|303550|303551|303553|303554|303555|303569|303578|303580|303583|303584|303585|303586|303587|303588|303589|303590|303591|303593|303596|303597|303598|303599|303603|303605|303619|308047|308048|308049|308051|308053|308057|308059|308062|308063|308064|308071|308074|308077|308088|308090|308095|308099|308100|308101|308102|308114|308116|308117|308118|308120|308123|308134|308136|308138|308144|308145|308149|308155|308157|308158|308160|308176|308178|308179|308183|308186|308189|308190|308191|308195|308197|308198|308205|308213|308216|308218|308219|354168|357435|357436|357437|357438|357439|357440|357441|357442|357443|357444|357445|357446|357447|357448|357449|357450|357451|357452|357453|357454|357455|357456|357457|357458|357459|357460|357461|357462|357463|357464|357465|357466|357467|357468|357469|357470|357471|357472|357473|357474|357475|357476|357477|357478|357479|357480|357481|357482|357483|357484|357485|357486|357487|357488|357489|357490|357491|357492|357493|357494|357495|357496|357497|357498|357499|361364|361365|363896|364147|364232|384483|395188|395190|395403|395412|395413|395415|395416|395418|395542|395545|395549|395828|395832|395836|421593|426535|427227|427228|427318|427321|427440|427442|427443|427444|427445|427446|427447|427449|427451|427456|427460|427468|427474|427475|427476|427477|427480|427481|427482|427490|427500|427503|427506|427599|427600|432297|432298|434611|434612|455634|455639|455644|455646|455649|455821|455822|455828|455833|455834|455836|456216|456219|456222|456226|456228|456239|456241|456539|456548|456550|456557|456560|456564|456571|456580|456583|481447|487081|487145|487146|487148|487150|487157|487191|487216|487219|487221|488309|488322|489025|489027|489233|489442|489560|489582|489852|489903|489968|490016|490102|490135|490266|490676|490702|490775|490952|491228|491230|491231|491811|491925|492318|492392|492393|492395|492578|492753|492755|492773|493033|493335|493456|493467|493767|494017|494018|494160|494169|494194|495200|511684|513064|521680|521688|521690|522006|522009|522013|522019|522026|522032|522064|522069|522384|522385|522386|538387|543740|543742|543745|543750|543757|543760|543764|543766|543774|543783|543791|543794|543800|543808|543811|543820|543822|543824|543828|543830|543832|543836|543837|543839|543841|543846|543848|543850|543855|543856|543863|543864|543870|543877|543882|544027|544029|544033|544037|544038|544040|544044|544046|544055|544059|544061|544062|544070|544071|544075|544078|544079|544082|544084|544085|544088|544094|544097|544099|544103|544105|544106|544109|544110|544112|544115|544116|544117|544121|544122|544124|544126|544129|544132|544136|544139|544142|544143|544147|544149|544152|544155|544157|544158|544160|544161|544162|544163|544165|544166|544168|544169|544170|544171|544172|544175|544177|544179|544181|544182|544183|544184|544185|544186|544187|544188|544190|544192|544195|544196|544197|544199|544200|544202|544204|544205|544206|544207|544210|544212|544213|544214|544219|544221|544222|544224|544225|544226|544228|544231|544233|544234|544235|544236|544238|544242|544246|544247|544248|544249|544250|544251|544252|544254|544255|544256|544257|544258|544259|544260|544261|544262|544266|544269|544270|544271|544277|544279|544281|544288|550602|550603|560740|560742|560744|560863|560869|560872|560873|560878|563621|563622|563624|563626|565697|565702|565706|583288|583310|584635|584677|584755|584758|584953|585396|585403|585444|585514|585529|585740|585938|586148|586198|586322|586421|586709|586845|586966|587240|587250|587335|587524|587673|587716|587974|588021|588133|588310|588363|588469|589135|589152|589198|589224|589273|589408|589412|589459|589499|589574|589654|589731|612756|613498|615937|620235|620236|620237|621208|621209|621210|621211|621213|621214|621216|621217|621751|621752|621754|622908|622909|623291|623292|623293|624316|624323|624327|624328|624329|624331|624778|624852|634948|634949|634950|634951|634952|634953|634954|634955|634956|634957|634958|634959|634960|634961|634962|634963|634964|634965|634966|634967|634968|634969|634970|634971|634972|634973|634974|634975|634976|634977|634978|651479|651485|651545|651560|651566|651568|683809|683810|683811|683812|683813|683814|683815|683816|683817|683818|685199|686867|686868|686869|686871|686872|686873|686874|686875|686876|686877|686878|686879|686881|686882|686883|686884|686885|686886|686887|686888|686889|686890|686891|686893|686894|686896|686897|686898|686899|689830|689831|689833|689834|689836|689837|691990|691991|691992|691994|691995|691996|691999|692000|692002|692003|692004|692005|692006|692007|692008|692010|692011|695319|695320|710555|722067|744293|750112|750113|750114|750115|750117|750118|765722|765726|765730|765736|765739|775287|782555|782557|782560|782561|782562|782565|782567|782572|782575|782576|782577|782578|782584|787403|787406|787411|787469|788802|788803|790639|790640|790641|790642|790643|790644|792669|798577|798578|800397|801616|801617|801618|801619|801620|801621|801622|801623|801624|801625|801626|801627|801628|801629|801630|801631|801632|801633|801634|801635|801636|801637|801638|801639|801640|801641|801642|801643|815965|819694|819695|819696|819697|831998|831999|832000|832001|832002|832003|832004|832005|832006|832007|832008|832009|832010|832011|832012|832013|832014|832015|832016|832017|832018|832019|832020|832021|832022|832023|832024|832025|832026|832027|832028|832029|832030|832031|851326|852024|858640|859537|896585|896586|896587|896588|896589|896590|896591|896592|896593|896594|896595|896596|896597|896598|896599|896600|896601|896602|896603|896604|896605|896606|896607|896608|896609|896610|896611|896612|896613|896614|896615|896616|896617|896618|896619|896620|896621|896622|896623|896624|896625|896626|896627|896628|896629|896630|896631|896632|896633|896634|896635|896636|896637|896638|896639|896640|896641|896642|896643|896644|896645|896646|896647|896648|896649|896650|896651|896652|896653|896654|896655|896656|896657|896658|896659|896660|896661|896662|896663|896664|900241|900242|900243|900244|900245|900246|900247|904226|906013|906014|906247|906248|906249|906250|916968|916969|916970|916973|920494|924367|924368|924369|924370|924371|924372|924373|924374|924375|924376|933349|933350|933351|933352|933353|933354|933355|940042|940846|940847|940848|940849|940850|945050|945051|945052|945053|945054|945055|945056|945057|945058|945059|945060|954481|954482|954483|954484|954485|954486|954488|954489|954490|954491|954492|954493|954494|954495|954496|954497|960586|960587|960588|962706|962707|962708|962709|962710|962711|962712|962713|962714|962715|963358|963393|966861|966862|966863|966865|966872|966873|966874|966875|966876|966882|969155|978224|978225|978226|978227|978228|978229|978230|978231|978232|978233|978234|978235|978236|978237|978238|978239|978240|978241|978242|978243|983864", + "upstreamId": "19147|19148|19149|19150|19151|19152|19153|19154|87316|102259|102260|102261|102262|102263|102264|102265|102266|102267|102268|102269|102270|102271|102272|102275|102277|102278|102279|102280|102281|102282|102285|102287|102288|102290|102291|102292|102293|102295|102296|102297|102298|102299|102300|102304|102305|102306|102308|102309|102310|102313|102314|102315|102316|102317|102318|102319|102320|102321|102323|102325|102326|102328|102329|102330|102333|102334|102335|102336|102337|102338|102339|116425|171423|176973|176975|177105|177107|177236|177237|177238|177239|177240|177368|177369|177371|177948|177949|177950|177951|177952|177953|177954|177955|177956|186054|186055|186056|186704|186705|186706|186707|186708|186709|186710|186711|186712|186713|186714|186715|186716|186717|186718|186719|186720|191600|192699|192860|192861|193072|193213|193306|193797|193963|193964|193965|193966|193968|194150|194151|194181|194210|194211|194528|194636|194696|194716|194763|195031|195103|195119|195176|195438|195467|195475|195477|195529|195776|195777|196344|205151|212522|212523|212524|212525|212526|221620|221632|221633|221634|221635|221636|221637|221638|237391|239938|239939|239940|239941|239942|239943|239944|239945|239946|252401|252410|252411|252412|252413|252418|252420|252421|252423|252424|252425|252431|252433|252443|260786|264271|265614|266031|266291|267765|267888|267889|268288|269482|269740|269998|270593|270888|270921|271038|271324|271337|271340|271438|271742|271756|272334|272389|272708|272711|272825|272930|272956|272957|273780|274051|274060|274118|274120|274122|274123|274127|275135|275189|275212|275214|275266|275386|300610|300613|300614|300616|300617|300621|300628|300630|300631|300634|300638|300650|300651|300664|300670|300672|300676|300683|300686|300687|300688|303521|303523|303525|303531|303533|303534|303536|303537|303539|303548|303550|303551|303553|303554|303555|303569|303578|303580|303583|303584|303585|303586|303587|303588|303589|303590|303591|303593|303596|303597|303598|303599|303603|303605|303619|308047|308048|308049|308051|308053|308057|308059|308062|308063|308064|308071|308074|308077|308088|308090|308095|308099|308100|308101|308102|308114|308116|308117|308118|308120|308123|308134|308136|308138|308144|308145|308149|308155|308157|308158|308160|308176|308178|308179|308183|308186|308189|308190|308191|308195|308197|308198|308205|308213|308216|308218|308219|354168|357435|357436|357437|357438|357439|357440|357441|357442|357443|357444|357445|357446|357447|357448|357449|357450|357451|357452|357453|357454|357455|357456|357457|357458|357459|357460|357461|357462|357463|357464|357465|357466|357467|357468|357469|357470|357471|357472|357473|357474|357475|357476|357477|357478|357479|357480|357481|357482|357483|357484|357485|357486|357487|357488|357489|357490|357491|357492|357493|357494|357495|357496|357497|357498|357499|361364|361365|363896|364147|364232|384483|395188|395190|395403|395412|395413|395415|395416|395418|395542|395545|395549|395828|395832|395836|421593|426535|427227|427228|427318|427321|427440|427442|427443|427444|427445|427446|427447|427449|427451|427456|427460|427468|427474|427475|427476|427477|427480|427481|427482|427490|427500|427503|427506|427599|427600|432297|432298|434611|434612|455634|455639|455644|455646|455649|455821|455822|455828|455833|455834|455836|456216|456219|456222|456226|456228|456239|456241|456539|456548|456550|456557|456560|456564|456571|456580|456583|481447|487081|487145|487146|487148|487150|487157|487191|487216|487219|487221|488309|488322|489025|489027|489233|489442|489560|489582|489852|489903|489968|490016|490102|490135|490266|490676|490702|490775|490952|491228|491230|491231|491811|491925|492318|492392|492393|492395|492578|492753|492755|492773|493033|493335|493456|493467|493767|494017|494018|494160|494169|494194|495200|511684|513064|521680|521688|521690|522006|522009|522013|522019|522026|522032|522064|522069|522384|522385|522386|538387|543740|543742|543745|543750|543757|543760|543764|543766|543774|543783|543791|543794|543800|543808|543811|543820|543822|543824|543828|543830|543832|543836|543837|543839|543841|543846|543848|543850|543855|543856|543863|543864|543870|543877|543882|544027|544029|544033|544037|544038|544040|544044|544046|544055|544059|544061|544062|544070|544071|544075|544078|544079|544082|544084|544085|544088|544094|544097|544099|544103|544105|544106|544109|544110|544112|544115|544116|544117|544121|544122|544124|544126|544129|544132|544136|544139|544142|544143|544147|544149|544152|544155|544157|544158|544160|544161|544162|544163|544165|544166|544168|544169|544170|544171|544172|544175|544177|544179|544181|544182|544183|544184|544185|544186|544187|544188|544190|544192|544195|544196|544197|544199|544200|544202|544204|544205|544206|544207|544210|544212|544213|544214|544219|544221|544222|544224|544225|544226|544228|544231|544233|544234|544235|544236|544238|544242|544246|544247|544248|544249|544250|544251|544252|544254|544255|544256|544257|544258|544259|544260|544261|544262|544266|544269|544270|544271|544277|544279|544281|544288|550602|550603|560740|560742|560744|560863|560869|560872|560873|560878|563621|563622|563624|563626|565697|565702|565706|583288|583310|584635|584677|584755|584758|584953|585396|585403|585444|585514|585529|585740|585938|586148|586198|586322|586421|586709|586845|586966|587240|587250|587335|587524|587673|587716|587974|588021|588133|588310|588363|588469|589135|589152|589198|589224|589273|589408|589412|589459|589499|589574|589654|589731|612756|613498|615937|620235|620236|620237|621208|621209|621210|621211|621213|621214|621216|621217|621751|621752|621754|622908|622909|623291|623292|623293|624316|624323|624327|624328|624329|624331|624778|624852|634948|634949|634950|634951|634952|634953|634954|634955|634956|634957|634958|634959|634960|634961|634962|634963|634964|634965|634966|634967|634968|634969|634970|634971|634972|634973|634974|634975|634976|634977|634978|651479|651485|651545|651560|651566|651568|683809|683810|683811|683812|683813|683814|683815|683816|683817|683818|685199|686867|686868|686869|686871|686872|686873|686874|686875|686876|686877|686878|686879|686881|686882|686883|686884|686885|686886|686887|686888|686889|686890|686891|686893|686894|686896|686897|686898|686899|689830|689831|689833|689834|689836|689837|691990|691991|691992|691994|691995|691996|691999|692000|692002|692003|692004|692005|692006|692007|692008|692010|692011|695319|695320|710555|722067|744293|750112|750113|750114|750115|750117|750118|765722|765726|765730|765736|765739|775287|782555|782557|782560|782561|782562|782565|782567|782572|782575|782576|782577|782578|782584|787403|787406|787411|787469|788802|788803|790639|790640|790641|790642|790643|790644|792669|798577|798578|800397|801616|801617|801618|801619|801620|801621|801622|801623|801624|801625|801626|801627|801628|801629|801630|801631|801632|801633|801634|801635|801636|801637|801638|801639|801640|801641|801642|801643|815965|819694|819695|819696|819697|831998|831999|832000|832001|832002|832003|832004|832005|832006|832007|832008|832009|832010|832011|832012|832013|832014|832015|832016|832017|832018|832019|832020|832021|832022|832023|832024|832025|832026|832027|832028|832029|832030|832031|851326|852024|858640|859537|896585|896586|896587|896588|896589|896590|896591|896592|896593|896594|896595|896596|896597|896598|896599|896600|896601|896602|896603|896604|896605|896606|896607|896608|896609|896610|896611|896612|896613|896614|896615|896616|896617|896618|896619|896620|896621|896622|896623|896624|896625|896626|896627|896628|896629|896630|896631|896632|896633|896634|896635|896636|896637|896638|896639|896640|896641|896642|896643|896644|896645|896646|896647|896648|896649|896650|896651|896652|896653|896654|896655|896656|896657|896658|896659|896660|896661|896662|896663|896664|900241|900242|900243|900244|900245|900246|900247|904226|906013|906014|906247|906248|906249|906250|916968|916969|916970|916973|920494|924367|924368|924369|924370|924371|924372|924373|924374|924375|924376|933349|933350|933351|933352|933353|933354|933355|940042|940846|940847|940848|940849|940850|945050|945051|945052|945053|945054|945055|945056|945057|945058|945059|945060|954481|954482|954483|954484|954485|954486|954488|954489|954490|954491|954492|954493|954494|954495|954496|954497|960586|960587|960588|962706|962707|962708|962709|962710|962711|962712|962713|962714|962715|963358|963393|966861|966862|966863|966865|966872|966873|966874|966875|966876|966882|969155|978224|978225|978226|978227|978228|978229|978230|978231|978232|978233|978234|978235|978236|978237|978238|978239|978240|978241|978242|978243|983864", "text": "Autosomal recessive polycystic kidney disease" }, { - "baseId": "19147", + "upstreamId": "19147", "text": "Colorectal cancer, protection against" }, { - "baseId": "19147|360881", + "upstreamId": "19147|360881", "text": "Periportal fibrosis" }, { - "baseId": "19147|19153|102029|186711|195475|581284|581285|581286|581287|581289|581290|581292|581293|619856|620235|626409|626410|626411|672253|672254|672303", + "upstreamId": "19147|19153|102029|186711|195475|581284|581285|581286|581287|581289|581290|581292|581293|619856|620235|626409|626410|626411|672253|672254|672303", "text": "Polycystic liver disease" }, { - "baseId": "19156|19157|19158|19159|19162|19163|19375|19376|19379|19476|19477|19478|19479|20981|20982|20983|20984|20985|20986|20988|20989|20990|20991|48675|48676|48677|100281|101633|101634|101635|101841|101842|101843|134436|134437|177695|192364|205176|206818|213924|213925|213926|213927|213928|213929|249959|249961|251046|254441|255062|271696|280634|280635|280641|280643|280646|280650|280652|280656|281143|281147|281148|281149|282420|282422|282684|285828|285835|285837|286563|286584|286585|286594|288808|288811|288818|288827|289218|289220|289221|289222|289223|289224|289225|289649|289651|289662|289663|290378|290384|290385|290386|290387|293471|293485|293488|293489|293490|294002|294006|294009|294035|294049|294051|294054|294057|316235|316236|316240|316248|316249|316251|316254|321350|321352|321363|321372|321373|323582|323583|323585|323586|323588|323589|323599|323601|329725|329728|329731|329738|329739|330581|330587|330593|330598|330975|330986|330991|331008|331009|331011|331020|337214|337216|337219|339139|339140|339142|339143|339146|339147|339151|359528|367277|405711|406161|413354|425377|438614|486604|492274|513345|539043|551286|551287|552045|552071|576678|581882|581915|609080|609137|620082|620489|620490|631109|679861|679862|708698|708699|718985|719817|720319|720320|730198|733930|739331|748128|763752|763757|763759|763760|763764|763766|769916|788883|790369|790370|795219|798681|801606|801882|858722|861142|864476|864477|864478|864479|864480|864481|864482|864483|864484|864485|864486|864487|864488|864489|864490|864491|864492|864493|864494|865185|869444|869445|869446|869447|869448|869449|869450|869451|869452|869453|869454|869455|869456|872197|872198|872199|872200|872623|872624|872625|872626|872627|872628|872629|872630|872631|884572|884573|884574|884575|884576|884577|884578|884579|884580|884581|884582|884583|884584|884585|887347|887348|888462|888463|888464|888465|888466|888467|888468|888469|888470|888471|888472|888473|891625|891626|891627|903589|918767|918768|918815|920516|961037|964219|964570|965853|966394|970954|973034|973035|977838|980592|983643", + "upstreamId": "19156|19157|19158|19159|19162|19163|19375|19376|19379|19476|19477|19478|19479|20981|20982|20983|20984|20985|20986|20988|20989|20990|20991|48675|48676|48677|100281|101633|101634|101635|101841|101842|101843|134436|134437|177695|192364|205176|206818|213924|213925|213926|213927|213928|213929|249959|249961|251046|254441|255062|271696|280634|280635|280641|280643|280646|280650|280652|280656|281143|281147|281148|281149|282420|282422|282684|285828|285835|285837|286563|286584|286585|286594|288808|288811|288818|288827|289218|289220|289221|289222|289223|289224|289225|289649|289651|289662|289663|290378|290384|290385|290386|290387|293471|293485|293488|293489|293490|294002|294006|294009|294035|294049|294051|294054|294057|316235|316236|316240|316248|316249|316251|316254|321350|321352|321363|321372|321373|323582|323583|323585|323586|323588|323589|323599|323601|329725|329728|329731|329738|329739|330581|330587|330593|330598|330975|330986|330991|331008|331009|331011|331020|337214|337216|337219|339139|339140|339142|339143|339146|339147|339151|359528|367277|405711|406161|413354|425377|438614|486604|492274|513345|539043|551286|551287|552045|552071|576678|581882|581915|609080|609137|620082|620489|620490|631109|679861|679862|708698|708699|718985|719817|720319|720320|730198|733930|739331|748128|763752|763757|763759|763760|763764|763766|769916|788883|790369|790370|795219|798681|801606|801882|858722|861142|864476|864477|864478|864479|864480|864481|864482|864483|864484|864485|864486|864487|864488|864489|864490|864491|864492|864493|864494|865185|869444|869445|869446|869447|869448|869449|869450|869451|869452|869453|869454|869455|869456|872197|872198|872199|872200|872623|872624|872625|872626|872627|872628|872629|872630|872631|884572|884573|884574|884575|884576|884577|884578|884579|884580|884581|884582|884583|884584|884585|887347|887348|888462|888463|888464|888465|888466|888467|888468|888469|888470|888471|888472|888473|891625|891626|891627|903589|918767|918768|918815|920516|961037|964219|964570|965853|966394|970954|973034|973035|977838|980592|983643", "text": "Leukoencephalopathy with vanishing white matter" }, { - "baseId": "19160|19161|19375|19377|19378|19379|20984|20987", + "upstreamId": "19160|19161|19375|19377|19378|19379|20984|20987", "text": "Ovarioleukodystrophy" }, { - "baseId": "19164|19165|19166|19167|19168|19169|19170|19171|19172|34528|34530|34531|208781|208783|208784|231136|231137|257586|257587|271892|274088|337646|337654|337662|337664|337666|337668|337672|337675|337677|337679|337684|337697|337698|337701|347221|347246|347247|347249|347252|347255|347257|347261|347268|351232|351235|351239|351240|351243|351247|351248|351253|351254|351257|351258|351260|351264|351265|351268|352275|352309|352310|352311|352312|352313|352314|352315|352317|352319|352325|493526|729115|742832|745341|758018|758019|890977|890978|890979|890980|890981|890982|890984|890985|890986|890987|890988|890989|890990|890991|890993|890994|890996|890997|890998|890999|891000|891001|891002|891003|891004|891005|891006|891007|891008|891009|891010|891011|891012|891013|891014|891015|891016|891017|891018|891019|891020|891021|891022|891023|891814|891815", + "upstreamId": "19164|19165|19166|19167|19168|19169|19170|19171|19172|34528|34530|34531|208781|208783|208784|231136|231137|257586|257587|271892|274088|337646|337654|337662|337664|337666|337668|337672|337675|337677|337679|337684|337697|337698|337701|347221|347246|347247|347249|347252|347255|347257|347261|347268|351232|351235|351239|351240|351243|351247|351248|351253|351254|351257|351258|351260|351264|351265|351268|352275|352309|352310|352311|352312|352313|352314|352315|352317|352319|352325|493526|729115|742832|745341|758018|758019|890977|890978|890979|890980|890981|890982|890984|890985|890986|890987|890988|890989|890990|890991|890993|890994|890996|890997|890998|890999|891000|891001|891002|891003|891004|891005|891006|891007|891008|891009|891010|891011|891012|891013|891014|891015|891016|891017|891018|891019|891020|891021|891022|891023|891814|891815", "text": "Hermansky-Pudlak syndrome 4" }, { - "baseId": "19173|19174|19175|19176|19177|19178|19179|19180|19181|19182|19183|19184|19185|101931|101940|101941|101949|101952|101953|101955|101956|101957|101971|101971|101976|168108|168109|168115|168116|168117|168118|168119|168120|168121|168122|168124|168126|168128|168130|168131|168132|168133|168135|168138|168140|168141|168142|168143|168144|168146|168147|168149|168150|168151|168152|168153|168155|168157|168158|168160|168161|168162|168164|168165|168168|168170|168171|168172|168174|168175|168176|168177|168178|168179|168180|168180|168181|168182|168183|168184|168185|168186|168187|168188|168190|168192|168193|168194|168195|168196|168197|168198|168199|168200|168202|168203|168204|168205|168206|168207|168208|168210|168211|168212|168213|168214|168215|168216|168217|168218|168219|168220|168221|168222|168223|168224|168225|168226|168227|168228|168229|168230|168231|168232|168233|168235|168236|168237|168238|168239|168240|168241|168242|168243|168243|168244|168246|168247|168248|168249|168250|168251|168252|168253|168254|168255|168256|168257|168258|168259|168260|168261|168262|168263|168264|168265|168266|168267|168269|168270|168271|168272|168273|168274|168275|168276|168278|168279|168280|168281|168282|168283|168284|168285|168286|168287|168288|168289|168294|168295|168296|168297|191835|191835|198625|205743|205744|207177|207178|207180|207181|207182|207183|207184|207185|207186|207187|207188|207189|207190|207191|207192|207193|207194|207195|207196|207197|207198|207199|207200|207201|207202|207203|207204|207205|207206|207207|209314|213557|213558|244157|264188|264205|298941|353894|368100|394967|424561|424893|428385|428387|428388|428390|428391|455687|481233|481433|500781|513278|521082|521439|521559|536308|537656|537776|537777|537778|537779|537780|537781|537782|537783|537784|537785|537786|552086|552087|611388|612189|624848|624849|625796|626150|633789|653868|653869|788776|789248|790539|790540|790541|790542|790543|790544|790545|790546|790547|798558|798559|830687|918944|918945|918946|918947|918948|918949|961648|963579|963581|964250|964251|966152|969736|970803|970804|971548|971549|976639|980324|980325", + "upstreamId": "19173|19174|19175|19176|19177|19178|19179|19180|19181|19182|19183|19184|19185|101931|101940|101941|101949|101952|101953|101955|101956|101957|101971|101971|101976|168108|168109|168115|168116|168117|168118|168119|168120|168121|168122|168124|168126|168128|168130|168131|168132|168133|168135|168138|168140|168141|168142|168143|168144|168146|168147|168149|168150|168151|168152|168153|168155|168157|168158|168160|168161|168162|168164|168165|168168|168170|168171|168172|168174|168175|168176|168177|168178|168179|168180|168180|168181|168182|168183|168184|168185|168186|168187|168188|168190|168192|168193|168194|168195|168196|168197|168198|168199|168200|168202|168203|168204|168205|168206|168207|168208|168210|168211|168212|168213|168214|168215|168216|168217|168218|168219|168220|168221|168222|168223|168224|168225|168226|168227|168228|168229|168230|168231|168232|168233|168235|168236|168237|168238|168239|168240|168241|168242|168243|168243|168244|168246|168247|168248|168249|168250|168251|168252|168253|168254|168255|168256|168257|168258|168259|168260|168261|168262|168263|168264|168265|168266|168267|168269|168270|168271|168272|168273|168274|168275|168276|168278|168279|168280|168281|168282|168283|168284|168285|168286|168287|168288|168289|168294|168295|168296|168297|191835|191835|198625|205743|205744|207177|207178|207180|207181|207182|207183|207184|207185|207186|207187|207188|207189|207190|207191|207192|207193|207194|207195|207196|207197|207198|207199|207200|207201|207202|207203|207204|207205|207206|207207|209314|213557|213558|244157|264188|264205|298941|353894|368100|394967|424561|424893|428385|428387|428388|428390|428391|455687|481233|481433|500781|513278|521082|521439|521559|536308|537656|537776|537777|537778|537779|537780|537781|537782|537783|537784|537785|537786|552086|552087|611388|612189|624848|624849|625796|626150|633789|653868|653869|788776|789248|790539|790540|790541|790542|790543|790544|790545|790546|790547|798558|798559|830687|918944|918945|918946|918947|918948|918949|961648|963579|963581|964250|964251|966152|969736|970803|970804|971548|971549|976639|980324|980325", "text": "Sotos syndrome 1" }, { - "baseId": "19186|19187|19188|19189|106031|106032|106036|106037|106038|106040|106041|227414|337627|337635|337637|337639|337641|347206|347207|347210|347212|351205|351206|351208|351211|351212|351215|351216|351219|351220|352222|352223|352225|352234|352235|352236|438924|439218|539103|620684|705837|717366|717367|792023|890940|890941|890942|890943|890944|890945|890946|890947|890948|890949|890950|890951|890952|890953|890954|890955|890956|890957|890958|890959|891812|961792", + "upstreamId": "19186|19187|19188|19189|106031|106032|106036|106037|106038|106040|106041|227414|337627|337635|337637|337639|337641|347206|347207|347210|347212|351205|351206|351208|351211|351212|351215|351216|351219|351220|352222|352223|352225|352234|352235|352236|438924|439218|539103|620684|705837|717366|717367|792023|890940|890941|890942|890943|890944|890945|890946|890947|890948|890949|890950|890951|890952|890953|890954|890955|890956|890957|890958|890959|891812|961792", "text": "Deficiency of beta-ureidopropionase" }, { - "baseId": "19190|19195|19196|429985", + "upstreamId": "19190|19195|19196|429985", "text": "Bernard-Soulier syndrome, type A1" }, { - "baseId": "19191", + "upstreamId": "19191", "text": "PLATELET GLYCOPROTEIN Ib POLYMORPHISM" }, { - "baseId": "19191|404833", + "upstreamId": "19191|404833", "text": "Nonarteritic anterior ischemic optic neuropathy, susceptibility to" }, { - "baseId": "19192|19194|404833|576180", + "upstreamId": "19192|19194|404833|576180", "text": "Pseudo von Willebrand disease" }, { - "baseId": "19193|19195|404833|576180", + "upstreamId": "19193|19195|404833|576180", "text": "Bernard-Soulier syndrome, type A2, autosomal dominant" }, { - "baseId": "19194", + "upstreamId": "19194", "text": "Impaired ristocetin-induced platelet aggregation" }, { - "baseId": "19198|26767|29868|29869|29870|29871|45767|205017|360849|424978", + "upstreamId": "19198|26767|29868|29869|29870|29871|45767|205017|360849|424978", "text": "Cryptorchidism" }, { - "baseId": "19199|19200|19201|39555|141164|141165|141166|141167|141168|141169|141171|141172|141173|210949|210951|210952|210956|210958|210959|210961|210964|210968|210970|289258|289259|289270|289271|289272|290038|290039|290042|290043|290044|290054|293119|293120|293121|293122|293125|293129|293141|293147|293519|293528|293531|293532|293543|293569|293571|293574|293575|293589|293590|293593|293594|361581|367003|513259|513606|513607|549907|578411|578446|620757|620758|626127|631021|654317|720276|720277|733888|748088|748089|748090|763713|763718|774813|790354|790355|800333|800334|800336|800337|800338|800339|800340|857615|888242|888243|888244|888245|888246|888247|888248|888249|888250|888251|888252|888253|888254|888255|888256|891597|918810|918811|977816|977817|977818|977819|977820", + "upstreamId": "19199|19200|19201|39555|141164|141165|141166|141167|141168|141169|141171|141172|141173|210949|210951|210952|210956|210958|210959|210961|210964|210968|210970|289258|289259|289270|289271|289272|290038|290039|290042|290043|290044|290054|293119|293120|293121|293122|293125|293129|293141|293147|293519|293528|293531|293532|293543|293569|293571|293574|293575|293589|293590|293593|293594|361581|367003|513259|513606|513607|549907|578411|578446|620757|620758|626127|631021|654317|720276|720277|733888|748088|748089|748090|763713|763718|774813|790354|790355|800333|800334|800336|800337|800338|800339|800340|857615|888242|888243|888244|888245|888246|888247|888248|888249|888250|888251|888252|888253|888254|888255|888256|891597|918810|918811|977816|977817|977818|977819|977820", "text": "Combined oxidative phosphorylation deficiency 1" }, { - "baseId": "19202", + "upstreamId": "19202", "text": "Vitiligo-associated multiple autoimmune disease susceptibility 1" }, { - "baseId": "19203|19204|19205|19206|198643|513725|961892|961893", + "upstreamId": "19203|19204|19205|19206|198643|513725|961892|961893", "text": "Enterokinase deficiency" }, { - "baseId": "19207|101552|101553|166171|191821|252482|252483|252484|252485|252486|252487|252489|272085|300963|300970|300971|300973|300974|300976|300977|300983|300984|300994|301000|301011|301012|301013|303905|303906|303909|303917|303926|303931|303933|303935|303961|303969|303973|303974|303981|303983|303987|308591|308592|308594|308603|308614|308616|308617|308618|308619|308623|308624|308626|308628|308629|308630|308633|308634|308635|308638|308640|308642|308644|308645|308650|308655|308658|308659|308663|308664|308669|308676|308679|308680|308686|308694|489127|489884|620243|626165|699647|750170|750175|750196|816506|832311|832312|832315|832328|859554|896791|896792|896793|896794|896795|896796|896797|896798|896799|896800|896801|896802|896803|896804|896805|896806|896807|896808|896809|896810|896811|896812|896813|896814|896815|896816|896817|896818|896819|896820|896821|896822|896823|896824|896825|896826|896827|896828|900261|900262|900263|900264|900265|900266|900267|919047|919048|919049|919050", + "upstreamId": "19207|101552|101553|166171|191821|252482|252483|252484|252485|252486|252487|252489|272085|300963|300970|300971|300973|300974|300976|300977|300983|300984|300994|301000|301011|301012|301013|303905|303906|303909|303917|303926|303931|303933|303935|303961|303969|303973|303974|303981|303983|303987|308591|308592|308594|308603|308614|308616|308617|308618|308619|308623|308624|308626|308628|308629|308630|308633|308634|308635|308638|308640|308642|308644|308645|308650|308655|308658|308659|308663|308664|308669|308676|308679|308680|308686|308694|489127|489884|620243|626165|699647|750170|750175|750196|816506|832311|832312|832315|832328|859554|896791|896792|896793|896794|896795|896796|896797|896798|896799|896800|896801|896802|896803|896804|896805|896806|896807|896808|896809|896810|896811|896812|896813|896814|896815|896816|896817|896818|896819|896820|896821|896822|896823|896824|896825|896826|896827|896828|900261|900262|900263|900264|900265|900266|900267|919047|919048|919049|919050", "text": "Cone-rod dystrophy 7" }, { - "baseId": "19208|19209|215757", + "upstreamId": "19208|19209|215757", "text": "Glycine N-methyltransferase deficiency" }, { - "baseId": "19210|19211|19212|19213|19214|19215|19216|19217|191057|193617|193619|194958|194959|194960|195363|215101|250558|250559|250560|250562|250564|250565|250566|250568|266001|266016|266451|266925|267317|272109|272358|275006|284640|284645|284647|284648|285330|285335|285336|285337|285338|287489|287502|287503|287506|287507|287510|287511|287512|287743|287747|287764|287766|287770|287774|287776|360834|414867|450381|450530|450609|450619|450693|486833|488124|488851|489418|492831|513024|517693|517697|517700|517794|517795|517796|517822|553541|553542|557878|557880|557923|557925|557927|560883|560884|560887|589673|590239|614241|620059|620060|629437|629438|629439|629440|629441|629442|629443|629444|629445|629446|629447|629448|629449|629450|629451|650746|650796|708020|708021|708022|733153|733154|733155|743868|747282|747283|747285|762895|762898|762901|762902|762903|762904|762905|762906|762907|762909|762910|762912|774699|781161|781162|781166|781167|792728|815895|825716|825717|825718|825719|825720|825721|825722|825723|825724|825725|825726|825727|850880|851149|858547|883724|883725|883726|883727|883728|883729|883730|883731|883732|883733|887273|918735|922567|922568|922569|931134|931135|931136|931137|931138|931139|931140|931141|942604|942605|942606|952924|952925|952926|952927|952928|952929|952930|962857|977676|977677|977678|977679|977680|977681|977682|977683|977684|980306", + "upstreamId": "19210|19211|19212|19213|19214|19215|19216|19217|191057|193617|193619|194958|194959|194960|195363|215101|250558|250559|250560|250562|250564|250565|250566|250568|266001|266016|266451|266925|267317|272109|272358|275006|284640|284645|284647|284648|285330|285335|285336|285337|285338|287489|287502|287503|287506|287507|287510|287511|287512|287743|287747|287764|287766|287770|287774|287776|360834|414867|450381|450530|450609|450619|450693|486833|488124|488851|489418|492831|513024|517693|517697|517700|517794|517795|517796|517822|553541|553542|557878|557880|557923|557925|557927|560883|560884|560887|589673|590239|614241|620059|620060|629437|629438|629439|629440|629441|629442|629443|629444|629445|629446|629447|629448|629449|629450|629451|650746|650796|708020|708021|708022|733153|733154|733155|743868|747282|747283|747285|762895|762898|762901|762902|762903|762904|762905|762906|762907|762909|762910|762912|774699|781161|781162|781166|781167|792728|815895|825716|825717|825718|825719|825720|825721|825722|825723|825724|825725|825726|825727|850880|851149|858547|883724|883725|883726|883727|883728|883729|883730|883731|883732|883733|887273|918735|922567|922568|922569|931134|931135|931136|931137|931138|931139|931140|931141|942604|942605|942606|952924|952925|952926|952927|952928|952929|952930|962857|977676|977677|977678|977679|977680|977681|977682|977683|977684|980306", "text": "Schimke immuno-osseous dysplasia" }, { - "baseId": "19218|19218|19219|19220|19220|19221|19223|19224|19224|102136|131917|131918|131919|131919|131920|131921|131922|131923|131924|131925|131926|131926|131927|131927|205734|205735|205735|227260|227261|227261|251190|267003|290906|290910|290911|290911|290916|290916|290917|290917|291839|291839|291840|291840|295050|295056|295056|295083|353892|361357|361357|440822|443470|452738|452739|513538|513538|513538|519366|519372|519561|559016|559018|563013|563020|576706|576707|576708|608780|612264|612656|620765|631490|631491|631492|631493|631494|679823|698152|698153|698154|708908|720509|748330|748330|790399|795443|795443|804999|804999|828232|828233|828234|828235|828236|828237|828238|828239|828240|828241|828242|828243|828244|828245|889237|889237|889238|889239|889240|889241|903526|923236|931982|931983|931984|943590|943591|943592|943593|943594|953509|953510|970772", + "upstreamId": "19218|19218|19219|19220|19220|19221|19223|19224|19224|102136|131917|131918|131919|131919|131920|131921|131922|131923|131924|131925|131926|131926|131927|131927|205734|205735|205735|227260|227261|227261|251190|267003|290906|290910|290911|290911|290916|290916|290917|290917|291839|291839|291840|291840|295050|295056|295056|295083|353892|361357|361357|440822|443470|452738|452739|513538|513538|513538|519366|519372|519561|559016|559018|563013|563020|576706|576707|576708|608780|612264|612656|620765|631490|631491|631492|631493|631494|679823|698152|698153|698154|708908|720509|748330|748330|790399|795443|795443|804999|804999|828232|828233|828234|828235|828236|828237|828238|828239|828240|828241|828242|828243|828244|828245|889237|889237|889238|889239|889240|889241|903526|923236|931982|931983|931984|943590|943591|943592|943593|943594|953509|953510|970772", "text": "Aicardi Goutieres syndrome 1" }, { - "baseId": "19218|20505|20506|23948|27427|31890|31891|31960", + "upstreamId": "19218|20505|20506|23948|27427|31890|31891|31960", "text": "Systemic lupus erythematosus, susceptibility to" }, { - "baseId": "19218|19218|19220|19224|19226|102135|102136|102136|131919|131926|131927|205735|227261|251190|251190|290894|290897|290906|290910|290911|290911|290916|290916|290917|290917|291832|291833|291839|291839|291840|291840|291841|295022|295050|295056|295056|295083|295410|295418|295421|295439|361357|361357|440822|443470|443470|452738|452739|513538|513538|519366|519372|519561|559016|559018|563013|563020|576706|576707|576708|612656|620765|631490|631491|631492|631493|631494|698152|698153|698154|708908|720509|748330|748330|795443|795443|804999|828232|828233|828234|828235|828236|828237|828238|828239|828240|828241|828242|828243|828244|828245|889237|889237|889238|889239|889240|889241|923236|931982|931983|931984|943590|943591|943592|943593|943594|953509|953510", + "upstreamId": "19218|19218|19220|19224|19226|102135|102136|102136|131919|131926|131927|205735|227261|251190|251190|290894|290897|290906|290910|290911|290911|290916|290916|290917|290917|291832|291833|291839|291839|291840|291840|291841|295022|295050|295056|295056|295083|295410|295418|295421|295439|361357|361357|440822|443470|443470|452738|452739|513538|513538|519366|519372|519561|559016|559018|563013|563020|576706|576707|576708|612656|620765|631490|631491|631492|631493|631494|698152|698153|698154|708908|720509|748330|748330|795443|795443|804999|828232|828233|828234|828235|828236|828237|828238|828239|828240|828241|828242|828243|828244|828245|889237|889237|889238|889239|889240|889241|923236|931982|931983|931984|943590|943591|943592|943593|943594|953509|953510", "text": "Retinal vasculopathy with cerebral leukoencephalopathy and systemic manifestations" }, { - "baseId": "19218|19220|19222|19224|19224|102136|131919|131926|205735|227261|251190|290911|290916|290917|291839|291840|295056|361357|361357|443470|452738|452739|513538|513538|519366|519561|559016|559018|576706|576707|576708|612656|631490|631491|631492|631493|631494|698152|698153|698154|708908|720509|748330|795443|804999|828232|828233|828234|828235|828236|828237|828238|828239|828240|828241|828242|828243|828244|828245|889237|923236|931982|931983|931984|943590|943591|943592|943593|943594|953509|953510", + "upstreamId": "19218|19220|19222|19224|19224|102136|131919|131926|205735|227261|251190|290911|290916|290917|291839|291840|295056|361357|361357|443470|452738|452739|513538|513538|519366|519561|559016|559018|576706|576707|576708|612656|631490|631491|631492|631493|631494|698152|698153|698154|708908|720509|748330|795443|804999|828232|828233|828234|828235|828236|828237|828238|828239|828240|828241|828242|828243|828244|828245|889237|923236|931982|931983|931984|943590|943591|943592|943593|943594|953509|953510", "text": "Chilblain lupus 1" }, { - "baseId": "19223|19224", + "upstreamId": "19223|19224", "text": "Aicardi Goutieres syndrome 1, autosomal dominant" }, { - "baseId": "19227|247504|249815|266292|447817|515626|515629|556821|823611", + "upstreamId": "19227|247504|249815|266292|447817|515626|515629|556821|823611", "text": "Ectodermal dysplasia 11b, hypohidrotic/hair/tooth type, autosomal recessive" }, { - "baseId": "19227|20887|20888|20888|20889|20890|20890|20891|20892|20893|20894|20895|20898|20899|76662|250081|250082|250083|250084|259688|268021|280019|281531|281537|283532|283546|442904|448537|448540|448635|448647|448659|448661|448663|448751|448754|513511|516303|516309|516315|516391|516392|516392|557486|557539|557541|558697|558699|622270|622271|628405|628406|628407|628408|628409|650695|650781|685832|690701|690702|690705|780808|816440|824670|824671|824672|824673|824674|824675|824676|824677|863970|863978|863987|922224|930767|930768|939839|942195|952608", + "upstreamId": "19227|20887|20888|20888|20889|20890|20890|20891|20892|20893|20894|20895|20898|20899|76662|250081|250082|250083|250084|259688|268021|280019|281531|281537|283532|283546|442904|448537|448540|448635|448647|448659|448661|448663|448751|448754|513511|516303|516309|516315|516391|516392|516392|557486|557539|557541|558697|558699|622270|622271|628405|628406|628407|628408|628409|650695|650781|685832|690701|690702|690705|780808|816440|824670|824671|824672|824673|824674|824675|824676|824677|863970|863978|863987|922224|930767|930768|939839|942195|952608", "text": "Autosomal recessive hypohidrotic ectodermal dysplasia syndrome" }, { - "baseId": "19228|249815|266292|447817|515626|515629|556821|823611", + "upstreamId": "19228|249815|266292|447817|515626|515629|556821|823611", "text": "Ectodermal dysplasia 11a, hypohidrotic/hair/tooth type, autosomal dominant" }, { - "baseId": "19228|20888|20888|20890|20891|20892|20892|250081|250082|250083|250084|259688|263002|268021|281537|283532|283546|404752|442904|448537|448540|448635|448647|448659|448661|448663|448751|448754|516303|516309|516315|516391|516392|557486|557539|557541|558697|558699|620024|620732|628405|628406|628407|628408|628409|650695|650781|685832|690701|690702|690705|780808|824670|824671|824672|824673|824674|824675|824676|824677|922224|930767|930768|939839|942195|952608|961039", + "upstreamId": "19228|20888|20888|20890|20891|20892|20892|250081|250082|250083|250084|259688|263002|268021|281537|283532|283546|404752|442904|448537|448540|448635|448647|448659|448661|448663|448751|448754|516303|516309|516315|516391|516392|557486|557539|557541|558697|558699|620024|620732|628405|628406|628407|628408|628409|650695|650781|685832|690701|690702|690705|780808|824670|824671|824672|824673|824674|824675|824676|824677|922224|930767|930768|939839|942195|952608|961039", "text": "Ectodermal dysplasia 10A, hypohidrotic/hair/nail type, autosomal dominant" }, { - "baseId": "19229|19230|19231|19232|19232|19234|19237|19237|19238|19239|19241|46970|48563|59596|165506|212638|212639|213815|221768|240400|240401|240402|244523|244524|244525|244526|244527|244528|253176|253176|370335|371968|396265|396279|396551|396683|396685|396688|396930|415146|444305|457966|457969|457976|457979|457987|458529|458531|458539|458540|458541|458542|458610|458625|459011|459012|459018|459025|459027|459029|459032|459037|459045|459046|459046|502368|523701|523703|523708|523709|524298|524304|562502|563070|563073|565214|565215|565224|565225|565227|568100|568105|590031|609702|625159|625186|637390|637391|637392|637393|637394|637395|637396|637397|637398|637399|637400|637401|651763|651996|683019|684027|687318|687319|790814|790815|819986|835038|835039|835040|835041|835042|835043|835044|835045|835046|835047|835048|835049|835050|851706|851708|905246|925261|934419|940113|946177|946178|946179|946180|946181|946182", + "upstreamId": "19229|19230|19231|19232|19232|19234|19237|19237|19238|19239|19241|46970|48563|59596|165506|212638|212639|213815|221768|240400|240401|240402|244523|244524|244525|244526|244527|244528|253176|253176|370335|371968|396265|396279|396551|396683|396685|396688|396930|415146|444305|457966|457969|457976|457979|457987|458529|458531|458539|458540|458541|458542|458610|458625|459011|459012|459018|459025|459027|459029|459032|459037|459045|459046|459046|502368|523701|523703|523708|523709|524298|524304|562502|563070|563073|565214|565215|565224|565225|565227|568100|568105|590031|609702|625159|625186|637390|637391|637392|637393|637394|637395|637396|637397|637398|637399|637400|637401|651763|651996|683019|684027|687318|687319|790814|790815|819986|835038|835039|835040|835041|835042|835043|835044|835045|835046|835047|835048|835049|835050|851706|851708|905246|925261|934419|940113|946177|946178|946179|946180|946181|946182", "text": "Charcot-Marie-Tooth disease, type 4A" }, { - "baseId": "19230|19232|19237|19237|19238|19239|19240|19241|19242|19243|59595|59596|59597|213815|214841|253176|459046|550866|788830|804741|804742|962982|970887", + "upstreamId": "19230|19232|19237|19237|19238|19239|19240|19241|19242|19243|59595|59596|59597|213815|214841|253176|459046|550866|788830|804741|804742|962982|970887", "text": "Charcot-Marie-Tooth disease type 2K" }, { - "baseId": "19230|19232|19232|212639|253176|305846|305851|305852|305855|305861|305865|305866|305869|305874|305878|309933|309934|309941|309942|309943|309944|309950|309951|309952|315143|315149|315151|315152|315161|315165|315172|315173|315177|315178|315188|315208|315210|315265|315268|315275|315280|315285|315291|315292|315294|315296|315298|371968|458542|459037|459046|835046|835050|900018|900019|900020|900021|900022|900023|900024|900025|900026|900027|900028|900029|900030|900031|900032|900033|900034|900035|900036|900037|900038|900039|900040|900041|900042|900043|900044|900045|900046|900047|900048|900049|900050|900051", + "upstreamId": "19230|19232|19232|212639|253176|305846|305851|305852|305855|305861|305865|305866|305869|305874|305878|309933|309934|309941|309942|309943|309944|309950|309951|309952|315143|315149|315151|315152|315161|315165|315172|315173|315177|315178|315188|315208|315210|315265|315268|315275|315280|315285|315291|315292|315294|315296|315298|371968|458542|459037|459046|835046|835050|900018|900019|900020|900021|900022|900023|900024|900025|900026|900027|900028|900029|900030|900031|900032|900033|900034|900035|900036|900037|900038|900039|900040|900041|900042|900043|900044|900045|900046|900047|900048|900049|900050|900051", "text": "Charcot-Marie-Tooth disease, axonal, with vocal cord paresis, autosomal recessive" }, { - "baseId": "19232|19233", + "upstreamId": "19232|19233", "text": "Neuropathy, axonal, with vocal cord paresis, autosomal recessive" }, { - "baseId": "19232|19234|19236|19237|19239|48563|212639|213815|244526|253176|305846|305851|305852|305855|305861|305865|305866|305869|305874|305878|309933|309934|309941|309942|309943|309944|309950|309951|309952|315143|315149|315151|315152|315161|315165|315172|315173|315177|315178|315188|315208|315210|315265|315268|315275|315280|315285|315291|315292|315294|315296|315298|371968|458542|459037|459046|540453|625167|835046|835050|900018|900019|900020|900021|900022|900023|900024|900025|900026|900027|900028|900029|900030|900031|900032|900033|900034|900035|900036|900037|900038|900039|900040|900041|900042|900043|900044|900045|900046|900047|900048|900049|900050|900051", + "upstreamId": "19232|19234|19236|19237|19239|48563|212639|213815|244526|253176|305846|305851|305852|305855|305861|305865|305866|305869|305874|305878|309933|309934|309941|309942|309943|309944|309950|309951|309952|315143|315149|315151|315152|315161|315165|315172|315173|315177|315178|315188|315208|315210|315265|315268|315275|315280|315285|315291|315292|315294|315296|315298|371968|458542|459037|459046|540453|625167|835046|835050|900018|900019|900020|900021|900022|900023|900024|900025|900026|900027|900028|900029|900030|900031|900032|900033|900034|900035|900036|900037|900038|900039|900040|900041|900042|900043|900044|900045|900046|900047|900048|900049|900050|900051", "text": "Charcot-Marie-Tooth disease, recessive intermediate A" }, { - "baseId": "19239|29215|244165|360906|361106|686427", + "upstreamId": "19239|29215|244165|360906|361106|686427", "text": "Sensory neuropathy" }, { - "baseId": "19239", + "upstreamId": "19239", "text": "Elevated alkaline phosphatase" }, { - "baseId": "19239|222818|430295|677208|677246|677256|677259|677267|677268|682751|962129|962130|971043", + "upstreamId": "19239|222818|430295|677208|677246|677256|677259|677267|677268|682751|962129|962130|971043", "text": "Polyneuropathy" }, { - "baseId": "19239|213789|283972|302805|311091|311092|311094|360832|514154|638747|677221|804737|804740|804745", + "upstreamId": "19239|213789|283972|302805|311091|311092|311094|360832|514154|638747|677221|804737|804740|804745", "text": "Peripheral axonal neuropathy" }, { - "baseId": "19239", + "upstreamId": "19239", "text": "GDAP1-Related Disorders" }, { - "baseId": "19244|19245|19246|19247|19248|19249|19250|19251|19256|39552|39553|137045|215772|228936|236857|264092|264095|481047|481048|481049|481050|481051|481052|481053|481054|495125|496224|496265|496686|535279|535281|535282|537710|537711|537712|537713|537714|537715|537716|537717|537718|537719|537720|537721|537722|537723|537724|537725|537727|537728|537729|537730|537731|537732|537733|788750|789351|790202|815856|964194|983612|983616|983617|983618|983619|983620|983621|983622", + "upstreamId": "19244|19245|19246|19247|19248|19249|19250|19251|19256|39552|39553|137045|215772|228936|236857|264092|264095|481047|481048|481049|481050|481051|481052|481053|481054|495125|496224|496265|496686|535279|535281|535282|537710|537711|537712|537713|537714|537715|537716|537717|537718|537719|537720|537721|537722|537723|537724|537725|537727|537728|537729|537730|537731|537732|537733|788750|789351|790202|815856|964194|983612|983616|983617|983618|983619|983620|983621|983622", "text": "Waardenburg syndrome type 1" }, { - "baseId": "19251|19253|19254|19255|496224|496686|537726", + "upstreamId": "19251|19253|19254|19255|496224|496686|537726", "text": "Klein-Waardenberg's syndrome" }, { - "baseId": "19252|192593|215772|228928|228929|228930|228931|228936|228937|228938|284872|284880|284881|284886|285534|285535|287842|287843|287860|287879|287881|287886|288118|288125|288126|288127|288130|496224|496263|496686|496686|747372|747374|883882|883883|883884|883885|883886|883887|883888|883889|883890|883891|883892", + "upstreamId": "19252|192593|215772|228928|228929|228930|228931|228936|228937|228938|284872|284880|284881|284886|285534|285535|287842|287843|287860|287879|287881|287886|288118|288125|288126|288127|288130|496224|496263|496686|496686|747372|747374|883882|883883|883884|883885|883886|883887|883888|883889|883890|883891|883892", "text": "Craniofacial-deafness-hand syndrome" }, { - "baseId": "19257|19258|19259|19274", + "upstreamId": "19257|19258|19259|19274", "text": "MUSCULAR DYSTROPHY-DYSTROGLYCANOPATHY (CONGENITAL WITHOUT IMPAIRED INTELLECTUAL DEVELOPMENT), TYPE B, 5" }, { - "baseId": "19259|19260|19260|19260|19263|19264|19265|19266|19274|102006|134502|243357|266484|273802|273959|403314|446153|468910|481141|533194|533194|919879|919880", + "upstreamId": "19259|19260|19260|19260|19263|19264|19265|19266|19274|102006|134502|243357|266484|273802|273959|403314|446153|468910|481141|533194|533194|919879|919880", "text": "Congenital muscular dystrophy-dystroglycanopathy (with or without mental retardation) type B5" }, { - "baseId": "19259|19260|19260|19260|19261|19262|19263|19265|19267|19268|19269|19270|19271|19272|19274|101999|102001|102002|102003|102004|102006|102008|102009|134502|134502|134503|141083|177298|194503|194507|208610|243355|243356|243357|243357|257157|257158|266484|266484|267061|267103|267275|267542|268719|269533|269670|271057|271954|273488|273710|273802|273802|273959|273959|274840|376626|403314|403314|403324|446151|446153|468907|468910|468910|480541|481141|489693|493619|513477|533164|533170|533194|533194|548858|548862|548869|548875|548876|548878|548879|548881|548884|548896|548906|548908|548924|548932|548935|548936|548940|548945|548952|549195|549196|549197|549199|549203|549204|549206|549368|549369|549370|549371|549372|549373|549374|549375|549376|549377|549378|570859|570868|577811|648189|648194|681847|684836|689107|742004|788929|847769|847771|979989|979990|979991", + "upstreamId": "19259|19260|19260|19260|19261|19262|19263|19265|19267|19268|19269|19270|19271|19272|19274|101999|102001|102002|102003|102004|102006|102008|102009|134502|134502|134503|141083|177298|194503|194507|208610|243355|243356|243357|243357|257157|257158|266484|266484|267061|267103|267275|267542|268719|269533|269670|271057|271954|273488|273710|273802|273802|273959|273959|274840|376626|403314|403314|403324|446151|446153|468907|468910|468910|480541|481141|489693|493619|513477|533164|533170|533194|533194|548858|548862|548869|548875|548876|548878|548879|548881|548884|548896|548906|548908|548924|548932|548935|548936|548940|548945|548952|549195|549196|549197|549199|549203|549204|549206|549368|549369|549370|549371|549372|549373|549374|549375|549376|549377|549378|570859|570868|577811|648189|648194|681847|684836|689107|742004|788929|847769|847771|979989|979990|979991", "text": "Limb-girdle muscular dystrophy-dystroglycanopathy, type C5" }, { - "baseId": "19259|19260|19260|19272|19273|102006|125788|134502|243357|263007|266484|273802|273959|403314|468910|481141|533194|906272", + "upstreamId": "19259|19260|19260|19272|19273|102006|125788|134502|243357|263007|266484|273802|273959|403314|468910|481141|533194|906272", "text": "Congenital muscular dystrophy-dystroglycanopathy with brain and eye anomalies type A5" }, { - "baseId": "19260|19262|40244|75124|75128|428699", + "upstreamId": "19260|19262|40244|75124|75128|428699", "text": "Muscular dystrophy-dystroglycanopathy" }, { - "baseId": "19260|23317|23318|56173|192866|198685|360828|453359|489500|553132|614646|965282", + "upstreamId": "19260|23317|23318|56173|192866|198685|360828|453359|489500|553132|614646|965282", "text": "Limb-girdle muscular dystrophy" }, { - "baseId": "19272", + "upstreamId": "19272", "text": "FKRP-Related Disorder" }, { - "baseId": "19275|19276|19277|361835|508753", + "upstreamId": "19275|19276|19277|361835|508753", "text": "Amelogenesis imperfecta - hypoplastic autosomal dominant - local" }, { - "baseId": "19277|481537", + "upstreamId": "19277|481537", "text": "Amelogenesis imperfecta, type IC" }, { - "baseId": "19278|19278|19280|19281|34561|34562|142275|211896|211898|265218|265218|333825|333829|333835|333836|333838|333839|333841|333848|333865|333866|333868|333871|333872|333874|333876|333881|333883|333884|333893|333895|333899|333900|333902|333904|333909|333911|333916|333917|333919|333923|343806|343809|343811|343813|343815|343819|343822|343824|343826|343831|343837|343838|343840|343841|343843|343845|343846|343851|343852|343854|343856|343860|343864|343865|343868|343869|343874|343876|343877|349091|349092|349095|349097|349100|349102|349103|349105|349109|349110|349113|349114|349117|349121|349123|349125|349127|349135|349136|349139|349142|349143|349146|349149|349150|349153|349154|349155|349159|349160|349162|349163|349165|349170|349171|349173|349175|349177|349180|349181|349183|349185|350019|350020|350023|350024|350028|350029|350031|350032|350033|350036|350037|350039|350042|350045|350046|350048|350050|350052|350054|350057|350058|350061|350062|350064|350067|350071|350072|350077|350078|350080|350081|350083|350088|350090|350093|350095|350096|350099|353496|353497|358620|377761|446146|470325|533159|540607|540608|540609|540610|540611|540612|540613|548812|548813|548814|548816|548825|548827|548828|548833|548840|548843|548844|548848|548851|548853|548859|548863|548870|548872|549179|549183|549192|549364|549365|549366|549367|576185|611904|648177|648178|741988|772751|772752|772752|772753|772755|786231|786233|786234|798756|821264|821265|882155|882156|882157|882158|882159|882160|882161|882162|882163|882164|882165|882166|882167|882168|882169|882170|882171|882172|882173|882174|882175|882176|882177|882178|882179|882180|882181|882182|882183|882184|882185|882186|882187|882188|882189|882190|882191|882192|882193|882194|882195|882196|882197|882198|882199|882200|882201|882202|882203|882204|882205|882206|882207|882208|882209|882210|882211|882212|882213|882214|882215|882216|882217|882218|882219|882220|882221|882222|882223|882224|906325|941234|950822|958658|979987|979988", + "upstreamId": "19278|19278|19280|19281|34561|34562|142275|211896|211898|265218|265218|333825|333829|333835|333836|333838|333839|333841|333848|333865|333866|333868|333871|333872|333874|333876|333881|333883|333884|333893|333895|333899|333900|333902|333904|333909|333911|333916|333917|333919|333923|343806|343809|343811|343813|343815|343819|343822|343824|343826|343831|343837|343838|343840|343841|343843|343845|343846|343851|343852|343854|343856|343860|343864|343865|343868|343869|343874|343876|343877|349091|349092|349095|349097|349100|349102|349103|349105|349109|349110|349113|349114|349117|349121|349123|349125|349127|349135|349136|349139|349142|349143|349146|349149|349150|349153|349154|349155|349159|349160|349162|349163|349165|349170|349171|349173|349175|349177|349180|349181|349183|349185|350019|350020|350023|350024|350028|350029|350031|350032|350033|350036|350037|350039|350042|350045|350046|350048|350050|350052|350054|350057|350058|350061|350062|350064|350067|350071|350072|350077|350078|350080|350081|350083|350088|350090|350093|350095|350096|350099|353496|353497|358620|377761|446146|470325|533159|540607|540608|540609|540610|540611|540612|540613|548812|548813|548814|548816|548825|548827|548828|548833|548840|548843|548844|548848|548851|548853|548859|548863|548870|548872|549179|549183|549192|549364|549365|549366|549367|576185|611904|648177|648178|741988|772751|772752|772752|772753|772755|786231|786233|786234|798756|821264|821265|882155|882156|882157|882158|882159|882160|882161|882162|882163|882164|882165|882166|882167|882168|882169|882170|882171|882172|882173|882174|882175|882176|882177|882178|882179|882180|882181|882182|882183|882184|882185|882186|882187|882188|882189|882190|882191|882192|882193|882194|882195|882196|882197|882198|882199|882200|882201|882202|882203|882204|882205|882206|882207|882208|882209|882210|882211|882212|882213|882214|882215|882216|882217|882218|882219|882220|882221|882222|882223|882224|906325|941234|950822|958658|979987|979988", "text": "3-Methylglutaconic aciduria type 3" }, { - "baseId": "19278|19279|19280|19280|34561|142275|211898|227093|265218|265218|333825|333829|333835|333836|333838|333839|333841|333848|333865|333866|333871|333872|333876|333883|333884|333893|333895|333899|333900|333902|333909|333911|333916|333917|333919|333923|343806|343809|343811|343815|343819|343822|343824|343826|343831|343838|343841|343843|343845|343846|343851|343852|343854|343856|343860|343864|343868|343869|343877|349092|349095|349097|349100|349102|349103|349109|349110|349113|349114|349117|349136|349139|349142|349146|349149|349150|349153|349154|349155|349159|349160|349162|349163|349170|349171|349173|349175|349177|349180|349181|349183|349185|350019|350020|350023|350024|350028|350029|350031|350032|350033|350036|350037|350039|350045|350046|350048|350050|350052|350054|350057|350058|350061|350062|350064|350067|350071|350072|350078|350080|350081|350083|350088|350090|350095|350096|350099|353497|377761|446146|470325|533159|576185|648177|648178|741988|772751|772752|772753|772755|786231|786233|786234|821264|821265|882155|882156|882157|882158|882159|882160|882161|882162|882163|882164|882165|882166|882167|882168|882169|882170|882171|882172|882173|882174|882175|882176|882177|882178|882179|882180|882181|882182|882183|882184|882185|882186|882187|882188|882189|882190|882191|882192|882193|882194|882195|882196|882197|882198|882199|882200|882201|882202|882203|882204|882205|882206|882207|882208|882209|882210|882211|882212|882213|882214|882215|882216|882217|882218|882219|882220|882221|882222|882223|882224|941234|950822|958658", + "upstreamId": "19278|19279|19280|19280|34561|142275|211898|227093|265218|265218|333825|333829|333835|333836|333838|333839|333841|333848|333865|333866|333871|333872|333876|333883|333884|333893|333895|333899|333900|333902|333909|333911|333916|333917|333919|333923|343806|343809|343811|343815|343819|343822|343824|343826|343831|343838|343841|343843|343845|343846|343851|343852|343854|343856|343860|343864|343868|343869|343877|349092|349095|349097|349100|349102|349103|349109|349110|349113|349114|349117|349136|349139|349142|349146|349149|349150|349153|349154|349155|349159|349160|349162|349163|349170|349171|349173|349175|349177|349180|349181|349183|349185|350019|350020|350023|350024|350028|350029|350031|350032|350033|350036|350037|350039|350045|350046|350048|350050|350052|350054|350057|350058|350061|350062|350064|350067|350071|350072|350078|350080|350081|350083|350088|350090|350095|350096|350099|353497|377761|446146|470325|533159|576185|648177|648178|741988|772751|772752|772753|772755|786231|786233|786234|821264|821265|882155|882156|882157|882158|882159|882160|882161|882162|882163|882164|882165|882166|882167|882168|882169|882170|882171|882172|882173|882174|882175|882176|882177|882178|882179|882180|882181|882182|882183|882184|882185|882186|882187|882188|882189|882190|882191|882192|882193|882194|882195|882196|882197|882198|882199|882200|882201|882202|882203|882204|882205|882206|882207|882208|882209|882210|882211|882212|882213|882214|882215|882216|882217|882218|882219|882220|882221|882222|882223|882224|941234|950822|958658", "text": "Optic atrophy 3" }, { - "baseId": "19282|19283|179619", + "upstreamId": "19282|19283|179619", "text": "Cardiomyopathy, hypertrophic, midventricular, digenic" }, { - "baseId": "19282|19283|23318|23647|27450|28466|28999|29103|29126|29127|29128|29129|29130|29131|29132|29133|29134|29135|29136|29137|29138|29139|29140|29141|29142|29143|29144|29145|29146|29157|29158|29159|29161|29162|29163|29164|29165|29168|39413|40426|40548|44315|45289|45303|45304|45312|45314|45316|45317|45929|49082|51698|51707|51710|51780|51802|51835|51839|51851|51986|51987|51988|51989|51991|51993|51999|52008|52010|52018|52023|52032|52033|52034|52038|52039|52043|52045|52055|52059|52064|52066|52070|52071|52083|52086|52092|52108|52111|52112|52114|52115|52116|52118|52122|52123|52126|52127|52140|52147|52150|52151|52153|52163|52165|52168|52171|52176|52177|52182|52185|52190|52194|52197|52202|52207|52208|52209|52214|52217|52226|52242|52243|52252|52254|52261|52262|52265|52270|52271|52273|52276|52280|52286|52287|52301|52528|52531|52537|52545|52616|52845|53636|53641|53641|53680|53874|54898|55681|55682|55683|55684|55685|55687|55688|55691|55692|55694|142081|142083|142090|142091|142094|171136|171142|171163|171164|171165|172355|172397|174775|175146|175175|175443|175446|175448|175452|175458|175460|175481|175490|175513|175516|175577|175586|175587|175588|175606|175607|175615|175617|175619|175624|175630|175631|175655|175695|176226|176229|176230|176232|176348|176349|176350|176351|176352|176354|176356|178472|178672|179278|179466|179471|179522|179525|179598|179623|179672|179680|179708|186460|186481|189930|189947|190012|190017|190018|190101|190102|190103|190104|198096|198478|198520|198522|198524|198525|205175|213631|214012|214122|214123|214124|214125|214126|214127|214128|214129|214130|214131|214132|214133|214134|214135|214136|214138|214483|214486|214487|214488|214489|214490|214491|214492|214493|214494|214495|223685|241811|243575|243576|254932|258801|258803|258808|263860|266688|272349|320364|320370|320374|320377|320379|328975|328980|328992|328994|328997|329003|335628|335630|335631|335634|335643|335644|335647|335648|337435|337446|337452|337457|337458|337463|337467|337469|337478|337486|360038|360088|361876|398259|400159|403604|403612|403619|403662|403664|403667|404165|404169|404172|404173|409095|415678|422313|426055|463977|470308|470311|470312|470862|470864|471372|471376|485931|485932|485933|485935|485936|485938|504491|508156|508933|510268|528386|528396|528424|533468|533512|533525|534030|534037|539467|551788|565835|567977|571164|573467|573472|575078|575079|575080|575081|576065|623074|624478|626453|626454|626455|626456|626457|626458|626459|648590|648591|648592|648593|648594|648595|648596|648597|648598|648599|648600|648601|656238|679481|688269|689193|757415|776767|791394|791395|791478|800171|841243|841286|848266|848267|848268|848269|848270|848271|848272|848273|848274|848275|848276|848277|851989|871732|871733|871734|871735|871736|871737|871738|871739|872363|872364|872365|905949|914996|919908|929151|938927|938928|938929|951025|951026|951027|951028|951029|960314|961601|966402|966409|966440|966452|966455|966456|966457|966459|966460|966461|966467|966468|966470|966471|966478|966491|966492|966494|966504|970545", + "upstreamId": "19282|19283|23318|23647|27450|28466|28999|29103|29126|29127|29128|29129|29130|29131|29132|29133|29134|29135|29136|29137|29138|29139|29140|29141|29142|29143|29144|29145|29146|29157|29158|29159|29161|29162|29163|29164|29165|29168|39413|40426|40548|44315|45289|45303|45304|45312|45314|45316|45317|45929|49082|51698|51707|51710|51780|51802|51835|51839|51851|51986|51987|51988|51989|51991|51993|51999|52008|52010|52018|52023|52032|52033|52034|52038|52039|52043|52045|52055|52059|52064|52066|52070|52071|52083|52086|52092|52108|52111|52112|52114|52115|52116|52118|52122|52123|52126|52127|52140|52147|52150|52151|52153|52163|52165|52168|52171|52176|52177|52182|52185|52190|52194|52197|52202|52207|52208|52209|52214|52217|52226|52242|52243|52252|52254|52261|52262|52265|52270|52271|52273|52276|52280|52286|52287|52301|52528|52531|52537|52545|52616|52845|53636|53641|53641|53680|53874|54898|55681|55682|55683|55684|55685|55687|55688|55691|55692|55694|142081|142083|142090|142091|142094|171136|171142|171163|171164|171165|172355|172397|174775|175146|175175|175443|175446|175448|175452|175458|175460|175481|175490|175513|175516|175577|175586|175587|175588|175606|175607|175615|175617|175619|175624|175630|175631|175655|175695|176226|176229|176230|176232|176348|176349|176350|176351|176352|176354|176356|178472|178672|179278|179466|179471|179522|179525|179598|179623|179672|179680|179708|186460|186481|189930|189947|190012|190017|190018|190101|190102|190103|190104|198096|198478|198520|198522|198524|198525|205175|213631|214012|214122|214123|214124|214125|214126|214127|214128|214129|214130|214131|214132|214133|214134|214135|214136|214138|214483|214486|214487|214488|214489|214490|214491|214492|214493|214494|214495|223685|241811|243575|243576|254932|258801|258803|258808|263860|266688|272349|320364|320370|320374|320377|320379|328975|328980|328992|328994|328997|329003|335628|335630|335631|335634|335643|335644|335647|335648|337435|337446|337452|337457|337458|337463|337467|337469|337478|337486|360038|360088|361876|398259|400159|403604|403612|403619|403662|403664|403667|404165|404169|404172|404173|409095|415678|422313|426055|463977|470308|470311|470312|470862|470864|471372|471376|485931|485932|485933|485935|485936|485938|504491|508156|508933|510268|528386|528396|528424|533468|533512|533525|534030|534037|539467|551788|565835|567977|571164|573467|573472|575078|575079|575080|575081|576065|623074|624478|626453|626454|626455|626456|626457|626458|626459|648590|648591|648592|648593|648594|648595|648596|648597|648598|648599|648600|648601|656238|679481|688269|689193|757415|776767|791394|791395|791478|800171|841243|841286|848266|848267|848268|848269|848270|848271|848272|848273|848274|848275|848276|848277|851989|871732|871733|871734|871735|871736|871737|871738|871739|872363|872364|872365|905949|914996|919908|929151|938927|938928|938929|951025|951026|951027|951028|951029|960314|961601|966402|966409|966440|966452|966455|966456|966457|966459|966460|966461|966467|966468|966470|966471|966478|966491|966492|966494|966504|970545", "text": "Familial hypertrophic cardiomyopathy 1" }, { - "baseId": "19284|19285|20242|20739|20740|20741", + "upstreamId": "19284|19285|20242|20739|20740|20741", "text": "Esophageal squamous cell carcinoma, somatic" }, { - "baseId": "19286|19287|19288|19289|19290|19291|178392|178393|215558|331435|331439|331440|331444|331446|331448|331450|331451|331456|331472|331473|331478|331480|331481|331483|331485|331486|331493|331494|331496|331502|331505|331509|331515|331519|331522|331525|331527|331533|331541|331545|331546|331548|331549|331558|331560|331568|331569|331572|331576|331586|331589|331591|331594|331601|331611|331614|331626|341750|341751|341756|341757|341760|341761|341763|341765|341767|341777|341780|341782|341785|341789|341792|341796|341798|341800|341802|341804|341806|341811|341812|341813|341822|341823|341824|341826|341828|341833|341837|341838|341841|341844|341851|341861|341869|341870|341873|341874|341891|347119|347120|347122|347124|347126|347127|347130|347135|347136|347137|347140|347141|347142|347149|347150|347154|347158|347159|347160|347163|347164|347171|347174|347181|347182|347183|347185|347187|347189|347190|347195|347196|347197|347200|347208|347215|347218|347228|347229|347237|347240|348442|348447|348449|348450|348461|348462|348471|348472|348478|348483|348484|348487|348488|348496|348503|348511|348519|348521|348523|348524|348528|348529|348535|348538|348539|348540|348543|348549|348556|348559|348560|348568|348570|481241|481242|537308|585907|611896|613109|620622|620899|654865|715996|715997|727741|727742|741395|741397|756475|780167|785942|791865|791866|879220|879221|879222|879223|879224|879225|879226|879227|879228|879229|879230|879231|879232|879233|879234|879235|879236|879237|879238|879239|879240|879241|879242|879243|879244|879245|879246|879247|879248|879249|879250|879251|879252|879253|879254|879255|879256|879257|879258|879259|879260|879261|879262|879263|879264|879265|879266|879267|879268|879269|879270|879271|879272|879273|879274|879275|879276|879277|879278|879279|879280|879281|879282|879283|879284|879285|879286|879287|879288|879289|879290|879291|879292|879293|879294|879295|879296|879297|879298|879299|879300|879301|879302|879303|879304|879305|879306|879307|879308|879309|879310|879311|879312|879313|879314|879315|879316|879317|879318|879319|879320|879321|879322|879323|879324|879325|879326|879327|879328|879329|879330|879331|879332|879333|879334|879335|879336|879337|879338|879339|879340|879341|879342|879343|879344|879345|879346|879347|879348|879349|879350|879351|880660|880661|880662|880663|880664|880665|962193|974503|974504|980962", + "upstreamId": "19286|19287|19288|19289|19290|19291|178392|178393|215558|331435|331439|331440|331444|331446|331448|331450|331451|331456|331472|331473|331478|331480|331481|331483|331485|331486|331493|331494|331496|331502|331505|331509|331515|331519|331522|331525|331527|331533|331541|331545|331546|331548|331549|331558|331560|331568|331569|331572|331576|331586|331589|331591|331594|331601|331611|331614|331626|341750|341751|341756|341757|341760|341761|341763|341765|341767|341777|341780|341782|341785|341789|341792|341796|341798|341800|341802|341804|341806|341811|341812|341813|341822|341823|341824|341826|341828|341833|341837|341838|341841|341844|341851|341861|341869|341870|341873|341874|341891|347119|347120|347122|347124|347126|347127|347130|347135|347136|347137|347140|347141|347142|347149|347150|347154|347158|347159|347160|347163|347164|347171|347174|347181|347182|347183|347185|347187|347189|347190|347195|347196|347197|347200|347208|347215|347218|347228|347229|347237|347240|348442|348447|348449|348450|348461|348462|348471|348472|348478|348483|348484|348487|348488|348496|348503|348511|348519|348521|348523|348524|348528|348529|348535|348538|348539|348540|348543|348549|348556|348559|348560|348568|348570|481241|481242|537308|585907|611896|613109|620622|620899|654865|715996|715997|727741|727742|741395|741397|756475|780167|785942|791865|791866|879220|879221|879222|879223|879224|879225|879226|879227|879228|879229|879230|879231|879232|879233|879234|879235|879236|879237|879238|879239|879240|879241|879242|879243|879244|879245|879246|879247|879248|879249|879250|879251|879252|879253|879254|879255|879256|879257|879258|879259|879260|879261|879262|879263|879264|879265|879266|879267|879268|879269|879270|879271|879272|879273|879274|879275|879276|879277|879278|879279|879280|879281|879282|879283|879284|879285|879286|879287|879288|879289|879290|879291|879292|879293|879294|879295|879296|879297|879298|879299|879300|879301|879302|879303|879304|879305|879306|879307|879308|879309|879310|879311|879312|879313|879314|879315|879316|879317|879318|879319|879320|879321|879322|879323|879324|879325|879326|879327|879328|879329|879330|879331|879332|879333|879334|879335|879336|879337|879338|879339|879340|879341|879342|879343|879344|879345|879346|879347|879348|879349|879350|879351|880660|880661|880662|880663|880664|880665|962193|974503|974504|980962", "text": "Congenital microvillous atrophy" }, { - "baseId": "19292|20199|23407|27292|27427|29711|29712", + "upstreamId": "19292|20199|23407|27292|27427|29711|29712", "text": "Asthma, susceptibility to" }, { - "baseId": "19293|19294|19295|19296|19297|19298|19299|19300|19301|19303|19304|19305|19306|76523|76524|76525|76526|76733|76735|76736|76738|76739|76740|76741|76742|76743|76744|76745|76746|76747|76748|76749|76750|76752|76755|76756|76758|76759|76764|76769|76771|76772|76773|76774|76775|76776|76777|76778|76779|76781|76786|76789|76790|76793|76794|76799|76802|76803|76804|76806|76807|76810|76811|76815|76816|76818|76837|76907|134330|190289|193449|194857|196200|250575|264076|266807|267028|268413|268508|270560|271443|271550|271552|271888|272164|272165|272710|274057|275496|284710|284717|284718|284723|284728|285397|285398|285399|285400|285401|287615|287629|287853|287856|287857|287858|287861|362172|440654|443164|489454|489519|489781|489818|490819|491794|491863|491889|491939|492252|492582|493480|493693|493930|512893|517933|541762|541766|541767|541780|541783|541794|541831|541832|541838|541841|541851|541855|541856|541871|541874|541876|541879|541883|541885|541890|541912|541915|541917|541924|541926|541927|541937|541940|541942|541945|541947|541960|557931|560932|576644|576645|587401|587408|588692|588777|620062|620063|629466|629467|708041|708042|733169|733170|733171|747296|747297|747298|747299|747300|762930|762931|762934|762935|762936|774666|781177|781178|781179|787264|790197|790198|790199|805285|819125|825743|825744|883751|883752|883753|883754|883755|883756|883757|883758|883759|883760|887274|931152|931153|952937|952938|952939|959628|959629|971735|971736|971737|971738|971739|971740|971741|971742|977685|977686", + "upstreamId": "19293|19294|19295|19296|19297|19298|19299|19300|19301|19303|19304|19305|19306|76523|76524|76525|76526|76733|76735|76736|76738|76739|76740|76741|76742|76743|76744|76745|76746|76747|76748|76749|76750|76752|76755|76756|76758|76759|76764|76769|76771|76772|76773|76774|76775|76776|76777|76778|76779|76781|76786|76789|76790|76793|76794|76799|76802|76803|76804|76806|76807|76810|76811|76815|76816|76818|76837|76907|134330|190289|193449|194857|196200|250575|264076|266807|267028|268413|268508|270560|271443|271550|271552|271888|272164|272165|272710|274057|275496|284710|284717|284718|284723|284728|285397|285398|285399|285400|285401|287615|287629|287853|287856|287857|287858|287861|362172|440654|443164|489454|489519|489781|489818|490819|491794|491863|491889|491939|492252|492582|493480|493693|493930|512893|517933|541762|541766|541767|541780|541783|541794|541831|541832|541838|541841|541851|541855|541856|541871|541874|541876|541879|541883|541885|541890|541912|541915|541917|541924|541926|541927|541937|541940|541942|541945|541947|541960|557931|560932|576644|576645|587401|587408|588692|588777|620062|620063|629466|629467|708041|708042|733169|733170|733171|747296|747297|747298|747299|747300|762930|762931|762934|762935|762936|774666|781177|781178|781179|787264|790197|790198|790199|805285|819125|825743|825744|883751|883752|883753|883754|883755|883756|883757|883758|883759|883760|887274|931152|931153|952937|952938|952939|959628|959629|971735|971736|971737|971738|971739|971740|971741|971742|977685|977686", "text": "Cholestanol storage disease" }, { - "baseId": "19307|29110|188960|624151", + "upstreamId": "19307|29110|188960|624151", "text": "Griscelli syndrome type 3" }, { - "baseId": "19308|101915|135774|135777|135780|194492|195408|195409|265350|270143|329814|329815|329819|345823|345826|345833|345835|345837|347209|347211|347217|375708|430007|506407|588226|679801|679831|715702|878411|878412|878413|878414|878415|878416|878417|878418", + "upstreamId": "19308|101915|135774|135777|135780|194492|195408|195409|265350|270143|329814|329815|329819|345823|345826|345833|345835|345837|347209|347211|347217|375708|430007|506407|588226|679801|679831|715702|878411|878412|878413|878414|878415|878416|878417|878418", "text": "Amish lethal microcephaly" }, { - "baseId": "19309|226953|614420|614421|816334", + "upstreamId": "19309|226953|614420|614421|816334", "text": "Ige responsiveness, atopic" }, { - "baseId": "19310|19311|19313|19314|39543|101215|136235|150178|150179|150221|280475|280494|280886|280892|280898|280899|280900|280904|280905|280910|282237|282239|282441|282442|282443|282444|282451|732441|732444|864347|864348|864349|864350|864351|864352|864353|864354|864355|864356|864357|864358|864359|864360|864361|864362|864363|864364", + "upstreamId": "19310|19311|19313|19314|39543|101215|136235|150178|150179|150221|280475|280494|280886|280892|280898|280899|280900|280904|280905|280910|282237|282239|282441|282442|282443|282444|282451|732441|732444|864347|864348|864349|864350|864351|864352|864353|864354|864355|864356|864357|864358|864359|864360|864361|864362|864363|864364", "text": "Mandibuloacral dysplasia with type B lipodystrophy" }, { - "baseId": "19310|19315|29529|29539|39541|39542|45141|45142|49843|49844|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|77776|101215|136235|150178|150179|150221|172488|172489|196270|196461|196463|224183|226437|238151|244232|276591|276601|276609|276610|276614|276876|277430|277432|277433|277434|277441|277445|277446|277447|277453|277456|277461|277537|280475|280484|280486|280494|280881|280882|280886|280892|280898|280899|280900|280904|280905|280910|282234|282235|282236|282237|282239|282440|282441|282442|282443|282444|282451|353062|509122|556620|576413|626918|685575|732441|732444|789965|862419|862420|862421|862422|862423|864347|864348|864349|864350|864351|864352|864353|864354|864355|864356|864357|864358|864359|864360|864361|864362|864363|864364|864995", + "upstreamId": "19310|19315|29529|29539|39541|39542|45141|45142|49843|49844|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|77776|101215|136235|150178|150179|150221|172488|172489|196270|196461|196463|224183|226437|238151|244232|276591|276601|276609|276610|276614|276876|277430|277432|277433|277434|277441|277445|277446|277447|277453|277456|277461|277537|280475|280484|280486|280494|280881|280882|280886|280892|280898|280899|280900|280904|280905|280910|282234|282235|282236|282237|282239|282440|282441|282442|282443|282444|282451|353062|509122|556620|576413|626918|685575|732441|732444|789965|862419|862420|862421|862422|862423|864347|864348|864349|864350|864351|864352|864353|864354|864355|864356|864357|864358|864359|864360|864361|864362|864363|864364|864995", "text": "Lethal tight skin contracture syndrome" }, { - "baseId": "19310", + "upstreamId": "19310", "text": "ZMPSTE24-Related Disorders" }, { - "baseId": "19316", + "upstreamId": "19316", "text": "Kawasaki disease, susceptibility to" }, { - "baseId": "19318|19319|19320|19321|38855|38856|237210|255154|322262|322264|331571|331574|331575|338504|338505|338512|340237|340242|340262|340269|429645|464956|464973|643100|643101|688399|820686|842231|873254|873255|873256|873257|873258|876492", + "upstreamId": "19318|19319|19320|19321|38855|38856|237210|255154|322262|322264|331571|331574|331575|338504|338505|338512|340237|340242|340262|340269|429645|464956|464973|643100|643101|688399|820686|842231|873254|873255|873256|873257|873258|876492", "text": "Dyskeratosis congenita autosomal recessive 1" }, { - "baseId": "19319|19320|19321|961946", + "upstreamId": "19319|19320|19321|961946", "text": "Dyskeratosis congenita, autosomal recessive 2" }, { - "baseId": "19322|19323|19325|19326|213451|222806|333152|403292|880308|880309|880310|905732", + "upstreamId": "19322|19323|19325|19326|213451|222806|333152|403292|880308|880309|880310|905732", "text": "Hemochromatosis type 2B" }, { - "baseId": "19325", + "upstreamId": "19325", "text": "Hemochromatosis, type 2a, modifier of" }, { - "baseId": "19327|19327|19328|19329|19330|19331|19332|19332|19334|19334|19337|19340|19341|19345|19350|19353|19357|19358|19366|19367|19373|33922|33924|99352|99352|99353|99356|99356|99358|99360|99362|99363|99364|265824|404945|626896|679732|682848|801581|801582|801583|801584|801585|801586|801587", + "upstreamId": "19327|19327|19328|19329|19330|19331|19332|19332|19334|19334|19337|19340|19341|19345|19350|19353|19357|19358|19366|19367|19373|33922|33924|99352|99352|99353|99356|99356|99358|99360|99362|99363|99364|265824|404945|626896|679732|682848|801581|801582|801583|801584|801585|801586|801587", "text": "Acute neuronopathic Gaucher's disease" }, { - "baseId": "19327|19327|19329|19330|19331|19331|19332|19332|19333|19334|19334|19337|19340|19341|19350|19353|19353|19362|19366|19366|19367|19369|19373|33922|33924|99352|99353|99356|99358|99360|99362|99363|99364|265824|362045|404945|626896|682848|801581|801582|801583|801584|801585|801586|801587", + "upstreamId": "19327|19327|19329|19330|19331|19331|19332|19332|19333|19334|19334|19337|19340|19341|19350|19353|19353|19362|19366|19366|19367|19369|19373|33922|33924|99352|99353|99356|99358|99360|99362|99363|99364|265824|362045|404945|626896|682848|801581|801582|801583|801584|801585|801586|801587", "text": "Subacute neuronopathic Gaucher's disease" }, { - "baseId": "19327|19327|19329|19329|19330|19330|19331|19331|19332|19332|19333|19334|19334|19335|19337|19337|19339|19340|19341|19341|19344|19345|19346|19347|19348|19349|19350|19350|19352|19353|19353|19354|19355|19356|19359|19360|19363|19365|19366|19366|19367|19369|19371|19373|33922|33922|33924|99352|99352|99353|99355|99356|99356|99358|99360|99362|99363|99364|190774|237954|237955|237956|237958|237959|237960|265824|404945|439574|439575|495063|513234|612077|622301|626896|677160|682848|789853|801581|801582|801583|801584|801585|801586|801587|857349|906180|906182|906183|920599|920600|920601", + "upstreamId": "19327|19327|19329|19329|19330|19330|19331|19331|19332|19332|19333|19334|19334|19335|19337|19337|19339|19340|19341|19341|19344|19345|19346|19347|19348|19349|19350|19350|19352|19353|19353|19354|19355|19356|19359|19360|19363|19365|19366|19366|19367|19369|19371|19373|33922|33922|33924|99352|99352|99353|99355|99356|99356|99358|99360|99362|99363|99364|190774|237954|237955|237956|237958|237959|237960|265824|404945|439574|439575|495063|513234|612077|622301|626896|677160|682848|789853|801581|801582|801583|801584|801585|801586|801587|857349|906180|906182|906183|920599|920600|920601", "text": "Gaucher's disease, type 1" }, { - "baseId": "19327|19329", + "upstreamId": "19327|19329", "text": "Dementia, Lewy body, susceptibility to" }, { - "baseId": "19327|19329|19330|19331|19332|19333|19334|19335|19337|19338|19340|19341|19345|19348|19350|19353|19357|19360|19365|19366|19367|19368|19373|33922|33924|33925|38432|47036|76478|99351|99352|99353|99354|99355|99356|99358|99360|99362|99363|99364|190774|194862|194863|195917|227188|237954|249411|265209|314491|404945|486012|486837|486838|486840|486844|486866|486867|496141|513234|549499|621056|621057|621058|621059|621060|621061|621703|696140|816426|915011|915012|916793|920479|920480|963246|972537|975763|977443|977444|977445|977446|977447|977448|977449|978515|983940", + "upstreamId": "19327|19329|19330|19331|19332|19333|19334|19335|19337|19338|19340|19341|19345|19348|19350|19353|19357|19360|19365|19366|19367|19368|19373|33922|33924|33925|38432|47036|76478|99351|99352|99353|99354|99355|99356|99358|99360|99362|99363|99364|190774|194862|194863|195917|227188|237954|249411|265209|314491|404945|486012|486837|486838|486840|486844|486866|486867|496141|513234|549499|621056|621057|621058|621059|621060|621061|621703|696140|816426|915011|915012|916793|920479|920480|963246|972537|975763|977443|977444|977445|977446|977447|977448|977449|978515|983940", "text": "Gaucher disease" }, { - "baseId": "19327", + "upstreamId": "19327", "text": "Hypomimic face" }, { - "baseId": "19327|203232|260118|513946|613536|613536|613537|613537|800991|801159", + "upstreamId": "19327|203232|260118|513946|613536|613536|613537|613537|800991|801159", "text": "Movement disorder" }, { - "baseId": "19327|264319|360941", + "upstreamId": "19327|264319|360941", "text": "Thoracolumbar scoliosis" }, { - "baseId": "19327|38432|38432|133431|360846|360868|360942|361108|362597|362598|476220|486013|513955|514103", + "upstreamId": "19327|38432|38432|133431|360846|360868|360942|361108|362597|362598|476220|486013|513955|514103", "text": "Parkinsonism" }, { - "baseId": "19327|486013", + "upstreamId": "19327|486013", "text": "Resting tremor" }, { - "baseId": "19327|19329|19330|19331|19332|19332|19334|19337|19341|19350|19353|19366|19367|19373|33922|33924|99352|99353|99356|99358|99360|99363|99364|265824|404945|626896|682848|801581|801582|801583|801584|801585|801586|801587", + "upstreamId": "19327|19329|19330|19331|19332|19332|19334|19337|19341|19350|19353|19366|19367|19373|33922|33924|99352|99353|99356|99358|99360|99363|99364|265824|404945|626896|682848|801581|801582|801583|801584|801585|801586|801587", "text": "Gaucher disease type 3C" }, { - "baseId": "19327|19329|19330|19332|19342|19357|19361|19364|19365|19367|19368|19370|19372|19373|33924|99354|190774|682848|918564|918565|920127", + "upstreamId": "19327|19329|19330|19332|19342|19357|19361|19364|19365|19367|19368|19370|19372|19373|33924|99354|190774|682848|918564|918565|920127", "text": "Gaucher disease, perinatal lethal" }, { - "baseId": "19329", + "upstreamId": "19329", "text": "Susceptibility to Parkinson's Disease" }, { - "baseId": "19329", + "upstreamId": "19329", "text": "Akinesia" }, { - "baseId": "19329|38432|360942|514103", + "upstreamId": "19329|38432|360942|514103", "text": "Rigidity" }, { - "baseId": "19329|94418|223765|223766|223767|223768|223769|226703|226704|226705|226706|226707|226708|226709|226710", + "upstreamId": "19329|94418|223765|223766|223767|223768|223769|226703|226704|226705|226706|226707|226708|226709|226710", "text": "Parkinson disease" }, { - "baseId": "19380|19381|39540|287298|287301|287302|287303|287311|288014|288015|288016|288021|288035|288038|290667|290668|290700|290701|290709|290711|290714|290715|290718|290720|290725|290732|290936|290941|290944|290946|290947|290950|290951|290952|733580|747788|885474|885475|885476|885477|885478|885479|885480|885481|885482|885483|885484|887401", + "upstreamId": "19380|19381|39540|287298|287301|287302|287303|287311|288014|288015|288016|288021|288035|288038|290667|290668|290700|290701|290709|290711|290714|290715|290718|290720|290725|290732|290936|290941|290944|290946|290947|290950|290951|290952|733580|747788|885474|885475|885476|885477|885478|885479|885480|885481|885482|885483|885484|887401", "text": "Parkinson disease 13" }, { - "baseId": "19382|19383|19384|165840|175965|175967|176105|209355|237617|404821|442483|497248|497466|511015|550777|553314|609916|612159|614131|614134|615818|679904|802083|805825|961565", + "upstreamId": "19382|19383|19384|165840|175965|175967|176105|209355|237617|404821|442483|497248|497466|511015|550777|553314|609916|612159|614131|614134|615818|679904|802083|805825|961565", "text": "Deafness, autosomal recessive 16" }, { - "baseId": "19385|19385|19386|19387|19388|19389|19390|19391|19392|19393|34380|34381|34382|34383|34384|34385|34386|34386|39537|39539|71462|140131|140131|191260|195727|205019|213112|222372|222373|222374|241848|264598|320649|320667|320668|320669|320671|329462|329463|329479|329483|329486|329487|329489|329491|336024|336042|336046|336054|336055|336058|336059|337982|337983|337987|337996|373858|374245|399673|399833|441647|445234|463293|463302|463801|463803|463808|464156|464290|464292|464298|464300|495758|528195|528201|528207|528210|528213|528546|528559|528565|528567|528569|552176|552177|566492|568098|568101|568939|572612|612099|642484|642485|642486|642487|642488|642489|642490|642491|642492|642493|642494|642495|642496|684496|688303|791410|791411|798676|816001|820625|820626|820627|841541|841542|841543|841544|841545|841546|841547|841548|871913|871914|871915|871916|871917|871918|871919|872367|927093|927094|927095|936632|936633|936634|948579|948580|948581|948582|948583|957231|957232|960804|963167|970144", + "upstreamId": "19385|19385|19386|19387|19388|19389|19390|19391|19392|19393|34380|34381|34382|34383|34384|34385|34386|34386|39537|39539|71462|140131|140131|191260|195727|205019|213112|222372|222373|222374|241848|264598|320649|320667|320668|320669|320671|329462|329463|329479|329483|329486|329487|329489|329491|336024|336042|336046|336054|336055|336058|336059|337982|337983|337987|337996|373858|374245|399673|399833|441647|445234|463293|463302|463801|463803|463808|464156|464290|464292|464298|464300|495758|528195|528201|528207|528210|528213|528546|528559|528565|528567|528569|552176|552177|566492|568098|568101|568939|572612|612099|642484|642485|642486|642487|642488|642489|642490|642491|642492|642493|642494|642495|642496|684496|688303|791410|791411|798676|816001|820625|820626|820627|841541|841542|841543|841544|841545|841546|841547|841548|871913|871914|871915|871916|871917|871918|871919|872367|927093|927094|927095|936632|936633|936634|948579|948580|948581|948582|948583|957231|957232|960804|963167|970144", "text": "Hereditary spastic paraplegia 3A" }, { - "baseId": "19385|34386|39536|39537|140131|625307|626229|919529|919530|964416", + "upstreamId": "19385|34386|39536|39537|140131|625307|626229|919529|919530|964416", "text": "Hereditary sensory neuropathy type 1D" }, { - "baseId": "19394|19395|19396|165954|227498|238219|238220|238221|279495|279504|279505|279510|279531|279537|279541|279546|279550|279552|279556|279558|279568|279569|279570|279580|279582|279592|279593|279602|279603|279604|279609|279763|279764|279765|279770|279771|279791|279807|279811|279821|279834|279836|279837|279838|279839|279840|279842|279846|279847|279849|279850|279854|279856|279857|279867|281073|281078|281081|281082|281084|281090|281099|281102|281118|281122|281123|281125|281127|281141|281142|281175|281177|281178|281181|281182|281187|281189|281190|281191|281193|281194|281195|281196|281197|281201|281205|281207|281213|281216|281217|281221|281222|281223|281224|281226|281233|281234|281237|281241|281249|390977|390996|390999|391001|391100|391102|391112|391112|447548|447554|447697|447699|447711|515504|515623|557177|627433|627434|627435|650687|683313|683314|685637|689644|689645|823525|823526|823527|823528|823529|823530|823531|823532|850965|863875|863876|863877|863878|863879|863880|863881|863882|863883|863884|863885|863886|863887|863888|863889|863890|863891|863892|863893|863894|863895|863896|863897|863898|863899|863900|863901|863902|863903|863904|863905|863906|863907|863908|863909|863910|863911|863912|863913|921863|921864|921865|921866|921867|930346|930347|930348|941779|941780|941781", + "upstreamId": "19394|19395|19396|165954|227498|238219|238220|238221|279495|279504|279505|279510|279531|279537|279541|279546|279550|279552|279556|279558|279568|279569|279570|279580|279582|279592|279593|279602|279603|279604|279609|279763|279764|279765|279770|279771|279791|279807|279811|279821|279834|279836|279837|279838|279839|279840|279842|279846|279847|279849|279850|279854|279856|279857|279867|281073|281078|281081|281082|281084|281090|281099|281102|281118|281122|281123|281125|281127|281141|281142|281175|281177|281178|281181|281182|281187|281189|281190|281191|281193|281194|281195|281196|281197|281201|281205|281207|281213|281216|281217|281221|281222|281223|281224|281226|281233|281234|281237|281241|281249|390977|390996|390999|391001|391100|391102|391112|391112|447548|447554|447697|447699|447711|515504|515623|557177|627433|627434|627435|650687|683313|683314|685637|689644|689645|823525|823526|823527|823528|823529|823530|823531|823532|850965|863875|863876|863877|863878|863879|863880|863881|863882|863883|863884|863885|863886|863887|863888|863889|863890|863891|863892|863893|863894|863895|863896|863897|863898|863899|863900|863901|863902|863903|863904|863905|863906|863907|863908|863909|863910|863911|863912|863913|921863|921864|921865|921866|921867|930346|930347|930348|941779|941780|941781", "text": "Erythrocytosis, familial, 3" }, { - "baseId": "19397|19398|19399|19400|19401|19402|19403|19404|19405|195381|438125|491867|513144|551588|551589|590356|613154|800157|818341|919893|980391", + "upstreamId": "19397|19398|19399|19400|19401|19402|19403|19404|19405|195381|438125|491867|513144|551588|551589|590356|613154|800157|818341|919893|980391", "text": "Retinitis pigmentosa 11" }, { - "baseId": "19406|19408|39533|39534|39535|268860|268895|280816|280824|280827|280828|280836|280840|280842|280848|280849|280854|280866|280869|280870|280871|281322|281334|281335|281336|281337|281338|281347|281349|281350|281352|281353|281354|281362|281377|281388|281389|281391|281398|281400|281401|282590|282592|282595|282596|282601|282615|282616|282617|282618|282619|282622|282623|282624|282880|282881|282895|282901|282902|282903|282922|282923|282926|282927|282928|552047|620724|719022|798475|798476|816351|816352|864592|864593|864594|864595|864596|864597|864598|864599|864600|864601|864602|864603|864604|864605|864606|864607|864608|864609|864610|864611|864612|864613|864614|864615|864616|864617|864618|864619|864620|864621", + "upstreamId": "19406|19408|39533|39534|39535|268860|268895|280816|280824|280827|280828|280836|280840|280842|280848|280849|280854|280866|280869|280870|280871|281322|281334|281335|281336|281337|281338|281347|281349|281350|281352|281353|281354|281362|281377|281388|281389|281391|281398|281400|281401|282590|282592|282595|282596|282601|282615|282616|282617|282618|282619|282622|282623|282624|282880|282881|282895|282901|282902|282903|282922|282923|282926|282927|282928|552047|620724|719022|798475|798476|816351|816352|864592|864593|864594|864595|864596|864597|864598|864599|864600|864601|864602|864603|864604|864605|864606|864607|864608|864609|864610|864611|864612|864613|864614|864615|864616|864617|864618|864619|864620|864621", "text": "Desmosterolosis" }, { - "baseId": "19409|19410|19410|19411|19412|19413|19414|19415|19416|19417|19418|19418|103704|103800|103801|103802|103803|103804|103805|103806|103807|103808|103809|103810|103811|103812|103813|103814|103815|103816|103817|103818|103819|103820|103821|103822|103823|103824|103825|103826|103827|103828|103829|103830|103831|103832|103833|103834|103835|103836|103837|103838|103839|103840|103841|103842|103843|103844|103845|103846|103847|103848|103849|103850|103851|103852|103853|103854|103855|103856|103857|103858|103859|103860|103861|103862|103863|103864|103865|103866|103867|103868|103869|103870|103871|103872|103873|103874|103875|103876|103877|103878|103879|103880|103881|103882|103883|103884|103885|108769|137003|142229|142231|142233|142235|142236|142237|215206|231470|231483|231485|231490|231491|231492|231496|244259|249856|249857|249858|280193|280195|280198|280201|280204|280207|280211|280212|280213|280565|280566|280586|280587|280588|280589|280590|280591|281832|281854|281864|281865|281887|281894|281895|281898|281902|281982|281994|281997|282002|282003|282010|282011|282013|282019|515874|557011|557277|614215|690575|718855|761838|789957|816302|864187|864188|864189|864190|864191|864192|864193|864194|864195|864196|864197|864198|864199|864200|864201|864202|864203|864204|864205|864206|864207|865170", + "upstreamId": "19409|19410|19410|19411|19412|19413|19414|19415|19416|19417|19418|19418|103704|103800|103801|103802|103803|103804|103805|103806|103807|103808|103809|103810|103811|103812|103813|103814|103815|103816|103817|103818|103819|103820|103821|103822|103823|103824|103825|103826|103827|103828|103829|103830|103831|103832|103833|103834|103835|103836|103837|103838|103839|103840|103841|103842|103843|103844|103845|103846|103847|103848|103849|103850|103851|103852|103853|103854|103855|103856|103857|103858|103859|103860|103861|103862|103863|103864|103865|103866|103867|103868|103869|103870|103871|103872|103873|103874|103875|103876|103877|103878|103879|103880|103881|103882|103883|103884|103885|108769|137003|142229|142231|142233|142235|142236|142237|215206|231470|231483|231485|231490|231491|231492|231496|244259|249856|249857|249858|280193|280195|280198|280201|280204|280207|280211|280212|280213|280565|280566|280586|280587|280588|280589|280590|280591|281832|281854|281864|281865|281887|281894|281895|281898|281902|281982|281994|281997|282002|282003|282010|282011|282013|282019|515874|557011|557277|614215|690575|718855|761838|789957|816302|864187|864188|864189|864190|864191|864192|864193|864194|864195|864196|864197|864198|864199|864200|864201|864202|864203|864204|864205|864206|864207|865170", "text": "Familial cold autoinflammatory syndrome 1" }, { - "baseId": "19409|19410|19412|19413|19416|19418|80059|103800|103801|103810|103813|103816|103823|103826|103831|103832|103834|103836|103840|103858|103877|103878|103881|103882|103884|142229|142230|142232|142233|142234|142236|142237|215206|231472|231476|231477|231480|231483|231484|231485|231486|231488|231491|231492|231495|231496|244259|244260|244262|249858|280212|281887|281894|281895|282010|282011|365069|365071|421234|439865|442797|442800|447722|447957|448043|448073|448075|448077|448078|498378|515752|515802|515804|515806|515809|515845|515874|557000|557002|557008|557011|557236|557238|557277|558467|609420|627704|627705|627706|627707|627708|627709|627710|627711|627712|627713|627714|627715|627716|627717|627718|627719|650631|650712|690572|690573|690574|707270|718854|718855|732334|732335|746376|746380|746381|746384|761834|761835|780644|818957|818958|823834|823835|823836|823837|823838|823839|823840|823841|823842|823843|823844|823845|823846|851293|921969|921970|921971|921972|921973|921974|921975|930440|930441|930442|930443|930444|930445|930446|930447|941898|941899|941900|941901|941902|941903|952375|952376", + "upstreamId": "19409|19410|19412|19413|19416|19418|80059|103800|103801|103810|103813|103816|103823|103826|103831|103832|103834|103836|103840|103858|103877|103878|103881|103882|103884|142229|142230|142232|142233|142234|142236|142237|215206|231472|231476|231477|231480|231483|231484|231485|231486|231488|231491|231492|231495|231496|244259|244260|244262|249858|280212|281887|281894|281895|282010|282011|365069|365071|421234|439865|442797|442800|447722|447957|448043|448073|448075|448077|448078|498378|515752|515802|515804|515806|515809|515845|515874|557000|557002|557008|557011|557236|557238|557277|558467|609420|627704|627705|627706|627707|627708|627709|627710|627711|627712|627713|627714|627715|627716|627717|627718|627719|650631|650712|690572|690573|690574|707270|718854|718855|732334|732335|746376|746380|746381|746384|761834|761835|780644|818957|818958|823834|823835|823836|823837|823838|823839|823840|823841|823842|823843|823844|823845|823846|851293|921969|921970|921971|921972|921973|921974|921975|930440|930441|930442|930443|930444|930445|930446|930447|941898|941899|941900|941901|941902|941903|952375|952376", "text": "Cryopyrin associated periodic syndrome" }, { - "baseId": "19410|103783|257201|257202|257203|257204|257206|257207|281855|281901|282014|282015|282018|344075|344095|349305|349310|349317|349328|350305|350308|350336|353519", + "upstreamId": "19410|103783|257201|257202|257203|257204|257206|257207|281855|281901|282014|282015|282018|344075|344095|349305|349310|349317|349328|350305|350308|350336|353519", "text": "Familial cold autoinflammatory syndrome" }, { - "baseId": "19410|19412|19413|19414|19416|19418|103800|103801|103810|103821|103823|103832|103857|103878|103881|103882|108769|142229|142231|142233|142235|142236|142237|215206|231470|231483|231485|231490|231491|231492|231496|244259|249856|249857|249858|280193|280195|280198|280201|280204|280207|280211|280212|280213|280565|280566|280586|280587|280588|280589|280590|280591|281832|281854|281855|281864|281865|281887|281894|281895|281898|281901|281902|281982|281994|281997|282002|282003|282010|282011|282013|282014|282015|282018|282019|515874|557011|557277|614215|690575|718855|761838|816302|864187|864188|864189|864190|864191|864192|864193|864194|864195|864196|864197|864198|864199|864200|864201|864202|864203|864204|864205|864206|864207|865170", + "upstreamId": "19410|19412|19413|19414|19416|19418|103800|103801|103810|103821|103823|103832|103857|103878|103881|103882|108769|142229|142231|142233|142235|142236|142237|215206|231470|231483|231485|231490|231491|231492|231496|244259|249856|249857|249858|280193|280195|280198|280201|280204|280207|280211|280212|280213|280565|280566|280586|280587|280588|280589|280590|280591|281832|281854|281855|281864|281865|281887|281894|281895|281898|281901|281902|281982|281994|281997|282002|282003|282010|282011|282013|282014|282015|282018|282019|515874|557011|557277|614215|690575|718855|761838|816302|864187|864188|864189|864190|864191|864192|864193|864194|864195|864196|864197|864198|864199|864200|864201|864202|864203|864204|864205|864206|864207|865170", "text": "Familial amyloid nephropathy with urticaria AND deafness" }, { - "baseId": "19410|19415|19416|19417|19418|103800|103810|103821|103823|103832|103857|103861|103878|103881|103882|108769|142229|142231|142233|142235|142236|142237|215206|231470|231483|231485|231490|231490|231491|231492|231496|244259|249856|249857|249858|280193|280195|280198|280201|280204|280207|280211|280212|280213|280565|280566|280586|280587|280588|280589|280590|280591|281832|281854|281855|281864|281865|281887|281894|281895|281898|281901|281902|281982|281994|281997|282002|282003|282010|282011|282013|282014|282015|282018|282019|515874|557011|557277|614215|690575|718855|761838|816302|864187|864188|864189|864190|864191|864192|864193|864194|864195|864196|864197|864198|864199|864200|864201|864202|864203|864204|864205|864206|864207|865170", + "upstreamId": "19410|19415|19416|19417|19418|103800|103810|103821|103823|103832|103857|103861|103878|103881|103882|108769|142229|142231|142233|142235|142236|142237|215206|231470|231483|231485|231490|231490|231491|231492|231496|244259|249856|249857|249858|280193|280195|280198|280201|280204|280207|280211|280212|280213|280565|280566|280586|280587|280588|280589|280590|280591|281832|281854|281855|281864|281865|281887|281894|281895|281898|281901|281902|281982|281994|281997|282002|282003|282010|282011|282013|282014|282015|282018|282019|515874|557011|557277|614215|690575|718855|761838|816302|864187|864188|864189|864190|864191|864192|864193|864194|864195|864196|864197|864198|864199|864200|864201|864202|864203|864204|864205|864206|864207|865170", "text": "Chronic infantile neurological, cutaneous and articular syndrome" }, { - "baseId": "19410|19418|231490|439865|557011", + "upstreamId": "19410|19418|231490|439865|557011", "text": "Deafness, autosomal dominant 34, with or without inflammation" }, { - "baseId": "19418|231490|486795|557011", + "upstreamId": "19418|231490|486795|557011", "text": "Keratitis fugax hereditaria" }, { - "baseId": "19419|19420|19421|19422|19423|19424|19425|19426|19427|55710|55711|55714|55715|55717|55718|172589|227215|228487|228489|228494|228496|275045|280879|280880|280883|280884|280888|281402|281410|282626|282632|282929|282932|282933|282935|496211|581790|620006|622681|654213|746571|864622|864623|864624|864625|864626|864627|864628|864629|864630|980303", + "upstreamId": "19419|19420|19421|19422|19423|19424|19425|19426|19427|55710|55711|55714|55715|55717|55718|172589|227215|228487|228489|228494|228496|275045|280879|280880|280883|280884|280888|281402|281410|282626|282632|282929|282932|282933|282935|496211|581790|620006|622681|654213|746571|864622|864623|864624|864625|864626|864627|864628|864629|864630|980303", "text": "Bartter disease type 4a" }, { - "baseId": "19420|19423|55710|55718|194526|227215|228487|228489|228495|353106|587011|654213|654215|654216|719024|732517|746568|746569|746570|746571|746572|762016|780738|977550|977551|977552", + "upstreamId": "19420|19423|55710|55718|194526|227215|228487|228489|228495|353106|587011|654213|654215|654216|719024|732517|746568|746569|746570|746571|746572|762016|780738|977550|977551|977552", "text": "Bartter syndrome" }, { - "baseId": "19427|19428", + "upstreamId": "19427|19428", "text": "Sensorineural deafness with mild renal dysfunction" }, { - "baseId": "19429|27356|27357|31303|508794|535738", + "upstreamId": "19429|27356|27357|31303|508794|535738", "text": "Hemangioma, capillary infantile" }, { - "baseId": "19430|469343|469352|470365|470884|533503|533504|533576|533580|533588|534067|534076|571196|572880|573493|575090|648634|648635|648636|648637|648638|648639|648640|653124|653646|716914|742358|742359|757469|757471|773078|773079|773080|773081|773084|778407|786358|786359|821318|848309|848310|848311|848312|848313|848314|848315|848316|848317|917736|919911|920415|929164|938944|938945|938946|940504|951043|951044|951045|958808|958809|958810|958811|958812|960315|965779|965780", + "upstreamId": "19430|469343|469352|470365|470884|533503|533504|533576|533580|533588|534067|534076|571196|572880|573493|575090|648634|648635|648636|648637|648638|648639|648640|653124|653646|716914|742358|742359|757469|757471|773078|773079|773080|773081|773084|778407|786358|786359|821318|848309|848310|848311|848312|848313|848314|848315|848316|848317|917736|919911|920415|929164|938944|938945|938946|940504|951043|951044|951045|958808|958809|958810|958811|958812|960315|965779|965780", "text": "Autoimmune disease, syndromic multisystem" }, { - "baseId": "19431|19432|19433|19434|19435|19436|19437|19438|57309|57310|57311|57312|173760|186675|186676|229031|229032|289133|289138|289139|289140|289141|289916|289917|289931|289936|289938|293002|293007|293010|293341|293352|293371|293380|293381|293406|293415|293419|357287|357288|357289|493293|496337|542823|542827|542829|542832|542837|542840|543017|543022|543027|543029|543031|543033|543075|543076|543079|543082|543099|543103|543106|543111|543116|590271|622134|626415|733873|790343|800352|800489|800490|827631|888208|888209|888210|888211|888212|888213|888214|888215|888216|888217|888218|888219|888220|888221|888222|888223|888224|888225|888226|888227|891594|906128", + "upstreamId": "19431|19432|19433|19434|19435|19436|19437|19438|57309|57310|57311|57312|173760|186675|186676|229031|229032|289133|289138|289139|289140|289141|289916|289917|289931|289936|289938|293002|293007|293010|293341|293352|293371|293380|293381|293406|293415|293419|357287|357288|357289|493293|496337|542823|542827|542829|542832|542837|542840|543017|543022|543027|543029|543031|543033|543075|543076|543079|543082|543099|543103|543106|543111|543116|590271|622134|626415|733873|790343|800352|800489|800490|827631|888208|888209|888210|888211|888212|888213|888214|888215|888216|888217|888218|888219|888220|888221|888222|888223|888224|888225|888226|888227|891594|906128", "text": "Usher Syndrome, Type III" }, { - "baseId": "19434|19438|57311|57312|57313|173760|186675|357287|493293|496337|733873|781597|827625|827629|977809|977810|977811|977812|977813|980319", + "upstreamId": "19434|19438|57311|57312|57313|173760|186675|357287|493293|496337|733873|781597|827625|827629|977809|977810|977811|977812|977813|980319", "text": "Usher syndrome, type 3A" }, { - "baseId": "19439|19440|314660|314664|314667|314668|314671|314672|314674|314677|314678|314688|314690|321342|321354|321355|321357|321358|321361|321362|321365|321366|321377|321379|327487|327491|327493|327494|327495|327500|327503|327516|328540|328554|328555|328557|328560|328561|328563|328569|328592|497248|552286|701895|701896|724617|868290|868291|868292|868293|868294|868295|868296|868297|868298|868299|868300|868301|868302|868303|868304|868305|868306|868307|868308|868309|868310|868311|868312|868313|868673", + "upstreamId": "19439|19440|314660|314664|314667|314668|314671|314672|314674|314677|314678|314688|314690|321342|321354|321355|321357|321358|321361|321362|321365|321366|321377|321379|327487|327491|327493|327494|327495|327500|327503|327516|328540|328554|328555|328557|328560|328561|328563|328569|328592|497248|552286|701895|701896|724617|868290|868291|868292|868293|868294|868295|868296|868297|868298|868299|868300|868301|868302|868303|868304|868305|868306|868307|868308|868309|868310|868311|868312|868313|868673", "text": "Spermatogenic failure 7" }, { - "baseId": "19441|371260|906171|967101", + "upstreamId": "19441|371260|906171|967101", "text": "Familial hypertriglyceridemia" }, { - "baseId": "19443|983644", + "upstreamId": "19443|983644", "text": "Familial type 5 hyperlipoproteinemia" }, { - "baseId": "19444|19453|106525|181372|181373|227231|238590|238592|238595|238595|238596|250493|250494|250497|250501|250502|250503|250505|250506|250507|266843|283960|283962|283963|283971|283972|283978|284685|284693|284695|284696|284698|284699|284725|284727|284739|284742|286627|286630|286631|286635|286636|286642|286644|287049|287060|287069|287071|287072|287088|287102|287103|287104|360832|366307|392274|450379|450392|450513|517524|517535|517610|517618|517632|560541|629294|682213|683468|683470|686110|686116|686117|689703|747169|759187|792725|792726|792726|861329|861330|883310|883311|883312|883313|883314|883315|883316|883317|883318|883319|883320|883321|883322|883323|883324|883325|883326|883327|883328|883329|883330|883331|883332|883333|883334|883335|883336|883337|883338|883339|883340|883341|883342|883343|883344|883345|883346|883347|883348|887238|887239|887240|961835|971374", + "upstreamId": "19444|19453|106525|181372|181373|227231|238590|238592|238595|238595|238596|250493|250494|250497|250501|250502|250503|250505|250506|250507|266843|283960|283962|283963|283971|283972|283978|284685|284693|284695|284696|284698|284699|284725|284727|284739|284742|286627|286630|286631|286635|286636|286642|286644|287049|287060|287069|287071|287072|287088|287102|287103|287104|360832|366307|392274|450379|450392|450513|517524|517535|517610|517618|517632|560541|629294|682213|683468|683470|686110|686116|686117|689703|747169|759187|792725|792726|792726|861329|861330|883310|883311|883312|883313|883314|883315|883316|883317|883318|883319|883320|883321|883322|883323|883324|883325|883326|883327|883328|883329|883330|883331|883332|883333|883334|883335|883336|883337|883338|883339|883340|883341|883342|883343|883344|883345|883346|883347|883348|887238|887239|887240|961835|971374", "text": "Amyotrophic lateral sclerosis type 2" }, { - "baseId": "19445|19446|19453|19455|51303|238595|517535|560541|682215|792725|792726|798495", + "upstreamId": "19445|19446|19453|19455|51303|238595|517535|560541|682215|792725|792726|798495", "text": "Juvenile primary lateral sclerosis" }, { - "baseId": "19445|19447|19448|19449|19450|19451|19452|19454|19456|51226|106525|181373|214531|214532|221136|238590|238591|238592|238593|238594|238595|238595|238596|250497|250503|250506|266843|283963|283971|283972|284698|286635|286639|287072|287103|392272|392274|392283|392458|392520|392522|392526|433360|440650|450251|450255|450378|450379|450392|450414|450422|450491|450496|450505|450506|450512|450513|517524|517526|517527|517535|517535|517610|517611|517618|517625|517632|517639|517640|557812|557814|557865|559041|559043|559045|559047|560537|560539|560541|560541|560543|629293|629294|629295|629296|629297|629298|629299|629300|629301|629302|629303|629304|629305|650938|682212|682213|682214|682216|683468|683470|683471|686108|686110|686113|686117|689700|689701|691008|691009|697251|762786|789113|792725|792726|792726|792960|792961|798496|825585|825586|825587|825588|825589|825590|825591|825592|825593|825594|825595|825596|825597|825598|825599|825600|883325|883346|922516|922517|922518|922519|922520|922521|931075|931076|931077|931078|940685|940686|942562|942563|942564|942565|952885|952886|952887|959622", + "upstreamId": "19445|19447|19448|19449|19450|19451|19452|19454|19456|51226|106525|181373|214531|214532|221136|238590|238591|238592|238593|238594|238595|238595|238596|250497|250503|250506|266843|283963|283971|283972|284698|286635|286639|287072|287103|392272|392274|392283|392458|392520|392522|392526|433360|440650|450251|450255|450378|450379|450392|450414|450422|450491|450496|450505|450506|450512|450513|517524|517526|517527|517535|517535|517610|517611|517618|517625|517632|517639|517640|557812|557814|557865|559041|559043|559045|559047|560537|560539|560541|560541|560543|629293|629294|629295|629296|629297|629298|629299|629300|629301|629302|629303|629304|629305|650938|682212|682213|682214|682216|683468|683470|683471|686108|686110|686113|686117|689700|689701|691008|691009|697251|762786|789113|792725|792726|792726|792960|792961|798496|825585|825586|825587|825588|825589|825590|825591|825592|825593|825594|825595|825596|825597|825598|825599|825600|883325|883346|922516|922517|922518|922519|922520|922521|931075|931076|931077|931078|940685|940686|942562|942563|942564|942565|952885|952886|952887|959622", "text": "Infantile-onset ascending hereditary spastic paralysis" }, { - "baseId": "19457|19458|172453|442876|553249|612079|799222|972779", + "upstreamId": "19457|19458|172453|442876|553249|612079|799222|972779", "text": "Deafness, autosomal recessive 36, with or without vestibular involvement" }, { - "baseId": "19459|19460|19461|19462", + "upstreamId": "19459|19460|19461|19462", "text": "Deafness, without vestibular involvement, autosomal dominant" }, { - "baseId": "19463", + "upstreamId": "19463", "text": "Deafness, autosomal recessive 36, without vestibular involvement" }, { - "baseId": "19464|19465|19466|19467|19468|19469|19470|19471|19472|140116|140117|140118|140119|169587|195446|211374|211378|211380|253509|265577|308143|308152|308156|308164|308165|318389|318390|318393|318394|318402|318856|318863|318864|318872|318874|371215|407687|414697|429011|441315|441328|441329|503372|503391|508838|549960|622509|623002|759914|901921|901922|901923|901924|901925|901926|901927|901928|901929|901930|901931|901932|901933|903389|903390|918305|966055|966057", + "upstreamId": "19464|19465|19466|19467|19468|19469|19470|19471|19472|140116|140117|140118|140119|169587|195446|211374|211378|211380|253509|265577|308143|308152|308156|308164|308165|318389|318390|318393|318394|318402|318856|318863|318864|318872|318874|371215|407687|414697|429011|441315|441328|441329|503372|503391|508838|549960|622509|623002|759914|901921|901922|901923|901924|901925|901926|901927|901928|901929|901930|901931|901932|901933|903389|903390|918305|966055|966057", "text": "Ataxia-oculomotor apraxia type 1" }, { - "baseId": "19473|19474|103701|103702|103703|142521|142522|142523|142524|142525|142526|142528|142529|142530|142531|142533|142536|243838|243839|243841|243843|243844|244930|244931|244935|244936|244937|244938|255363|255365|255366|255367|265178|323401|323407|323408|323414|323421|333090|333092|333093|333094|333096|333097|333099|333100|333106|333110|333112|333115|333118|339914|339917|339918|339928|339932|339936|339937|339938|339947|341331|341337|341338|341339|341343|341354|341357|353330|373690|409350|415450|422047|433868|433870|433872|433875|445430|465181|465429|504979|529056|529059|529115|529117|529665|537248|566882|567286|569155|569156|569161|569604|569606|569608|573539|573540|573543|573544|609935|614401|643554|643555|643556|643557|643558|643559|643560|643561|643562|643563|652572|693746|739799|739800|754694|770353|770354|770355|776094|785031|785032|785033|789380|799820|799821|799822|799823|799824|799825|799826|799827|799828|799829|820738|842712|842713|842714|842715|842716|842717|842718|842719|842720|842721|842722|842723|842724|842725|842726|842727|842728|874193|874194|874195|874196|874197|874198|874199|876578|927427|937076|941096|949013|949014|949015|949016|949017|949018|949019|957514|957515|957516|960122|981929|981930|981931|981932", + "upstreamId": "19473|19474|103701|103702|103703|142521|142522|142523|142524|142525|142526|142528|142529|142530|142531|142533|142536|243838|243839|243841|243843|243844|244930|244931|244935|244936|244937|244938|255363|255365|255366|255367|265178|323401|323407|323408|323414|323421|333090|333092|333093|333094|333096|333097|333099|333100|333106|333110|333112|333115|333118|339914|339917|339918|339928|339932|339936|339937|339938|339947|341331|341337|341338|341339|341343|341354|341357|353330|373690|409350|415450|422047|433868|433870|433872|433875|445430|465181|465429|504979|529056|529059|529115|529117|529665|537248|566882|567286|569155|569156|569161|569604|569606|569608|573539|573540|573543|573544|609935|614401|643554|643555|643556|643557|643558|643559|643560|643561|643562|643563|652572|693746|739799|739800|754694|770353|770354|770355|776094|785031|785032|785033|789380|799820|799821|799822|799823|799824|799825|799826|799827|799828|799829|820738|842712|842713|842714|842715|842716|842717|842718|842719|842720|842721|842722|842723|842724|842725|842726|842727|842728|874193|874194|874195|874196|874197|874198|874199|876578|927427|937076|941096|949013|949014|949015|949016|949017|949018|949019|957514|957515|957516|960122|981929|981930|981931|981932", "text": "Pyogenic arthritis-pyoderma gangrenosum-acne syndrome" }, { - "baseId": "19475|187259|187260|254993|439068|512941|858757", + "upstreamId": "19475|187259|187260|254993|439068|512941|858757", "text": "Colobomatous optic disc-macular atrophy-chorioretinopathy syndrome" }, { - "baseId": "19480|19481|19482|19482|19484|19485|19486|19486|19490|19490|19491|19494|19494|19497|34290|34291|34291|34292|34293|34294|34294|186968|186969|186969|186970|186971|186972|186973|186974|186975|186976|186976|195685|195685|196260|247620|256149|256150|256152|256152|256153|256154|256155|262353|262353|262357|268431|272491|272491|328149|328151|328158|328162|328163|328167|328168|328169|328170|328174|328176|328191|328193|328196|328201|328205|328212|328213|328215|328216|328221|328223|328224|328225|328229|328231|328240|328241|328242|328246|338029|338033|338035|338047|338047|338073|338074|338077|338079|338086|338087|338091|338095|338100|338102|338105|338107|338108|338111|338112|338114|338116|338118|338120|338123|338125|338128|344204|344207|344208|344209|344214|344218|344222|344224|344229|344229|344237|344238|344244|344246|344247|344248|344249|344250|344257|344258|344260|344262|344266|344267|345599|345600|345604|345608|345608|345609|345610|345616|345616|345619|345620|345624|345626|345627|345628|345629|345632|345633|345636|345639|345643|345644|345646|345647|345655|345657|345661|345664|345666|345668|345670|345674|345675|345683|358428|358429|358430|358431|358431|358432|358433|358434|358435|409914|467343|467996|467996|487825|487918|487918|487925|487925|508965|530976|531022|531462|531468|531468|548084|548094|548095|548103|548111|548112|548114|548115|548116|548117|548119|548123|548124|548125|548126|548127|548128|548131|548133|548141|548364|548365|548373|548385|548390|548391|548822|548823|548831|548835|548835|548841|571093|574257|590453|645825|645826|645827|652641|652939|653105|653107|653266|653356|653445|704104|715396|715400|715401|727124|727124|727125|727126|727127|727128|740704|755804|771449|771450|771453|771454|771455|771457|771459|776317|779875|785542|785545|788236|792804|792805|821040|845246|845247|845248|851717|852736|858743|858749|877276|877277|877278|877279|877280|877281|877282|877283|877284|877285|877286|877287|877288|877289|877290|877291|877292|877293|877294|877295|877296|877297|877298|877299|877300|877301|877302|877303|877304|877305|877306|877307|877308|877309|877310|877311|877312|880508|928238|928239|937900|940409|941180|949890|958092|960215|960883|972271|972272", + "upstreamId": "19480|19481|19482|19482|19484|19485|19486|19486|19490|19490|19491|19494|19494|19497|34290|34291|34291|34292|34293|34294|34294|186968|186969|186969|186970|186971|186972|186973|186974|186975|186976|186976|195685|195685|196260|247620|256149|256150|256152|256152|256153|256154|256155|262353|262353|262357|268431|272491|272491|328149|328151|328158|328162|328163|328167|328168|328169|328170|328174|328176|328191|328193|328196|328201|328205|328212|328213|328215|328216|328221|328223|328224|328225|328229|328231|328240|328241|328242|328246|338029|338033|338035|338047|338047|338073|338074|338077|338079|338086|338087|338091|338095|338100|338102|338105|338107|338108|338111|338112|338114|338116|338118|338120|338123|338125|338128|344204|344207|344208|344209|344214|344218|344222|344224|344229|344229|344237|344238|344244|344246|344247|344248|344249|344250|344257|344258|344260|344262|344266|344267|345599|345600|345604|345608|345608|345609|345610|345616|345616|345619|345620|345624|345626|345627|345628|345629|345632|345633|345636|345639|345643|345644|345646|345647|345655|345657|345661|345664|345666|345668|345670|345674|345675|345683|358428|358429|358430|358431|358431|358432|358433|358434|358435|409914|467343|467996|467996|487825|487918|487918|487925|487925|508965|530976|531022|531462|531468|531468|548084|548094|548095|548103|548111|548112|548114|548115|548116|548117|548119|548123|548124|548125|548126|548127|548128|548131|548133|548141|548364|548365|548373|548385|548390|548391|548822|548823|548831|548835|548835|548841|571093|574257|590453|645825|645826|645827|652641|652939|653105|653107|653266|653356|653445|704104|715396|715400|715401|727124|727124|727125|727126|727127|727128|740704|755804|771449|771450|771453|771454|771455|771457|771459|776317|779875|785542|785545|788236|792804|792805|821040|845246|845247|845248|851717|852736|858743|858749|877276|877277|877278|877279|877280|877281|877282|877283|877284|877285|877286|877287|877288|877289|877290|877291|877292|877293|877294|877295|877296|877297|877298|877299|877300|877301|877302|877303|877304|877305|877306|877307|877308|877309|877310|877311|877312|880508|928238|928239|937900|940409|941180|949890|958092|960215|960883|972271|972272", "text": "Nephropathic cystinosis" }, { - "baseId": "19482|19484|19486|19486|19488|19490|19490|19492|19493|19494|34291|34294|186969|186976|195685|195685|196260|256149|256150|256152|256152|256153|256154|256155|262353|262357|268431|272491|272491|328149|328151|328158|328162|328163|328167|328168|328169|328170|328174|328176|328191|328193|328205|328212|328213|328215|328216|328221|328223|328224|328225|328231|328240|328241|328242|328246|338029|338033|338047|338047|338073|338074|338077|338079|338086|338087|338091|338095|338102|338105|338108|338111|338112|338114|338120|338123|338125|338128|344204|344207|344208|344209|344214|344218|344222|344224|344229|344229|344237|344238|344244|344246|344247|344248|344250|344257|344258|344260|344262|344266|344267|345599|345600|345608|345608|345609|345610|345616|345616|345619|345620|345624|345626|345627|345628|345629|345632|345633|345636|345643|345644|345647|345655|345657|345661|345664|345666|345670|345674|345675|345683|358429|358431|467343|467996|487918|487918|487925|530976|531022|531462|531468|548835|571093|574257|645825|645826|645827|652641|652939|653105|653107|653266|653356|653445|704104|715396|715400|715401|727124|727124|727125|727126|727127|727128|740704|755804|771449|771450|771453|771454|771455|771457|771459|776317|779875|785542|785545|788236|792804|792805|821040|822301|845246|845247|845248|851717|852736|877276|877277|877278|877279|877280|877281|877282|877283|877284|877285|877286|877287|877288|877289|877290|877291|877292|877293|877294|877295|877296|877297|877298|877299|877300|877301|877302|877303|877304|877305|877306|877307|877308|877309|877310|877311|877312|880508|928238|928239|937900|940409|941180|949890|958092|960215|960883|972271|972272", + "upstreamId": "19482|19484|19486|19486|19488|19490|19490|19492|19493|19494|34291|34294|186969|186976|195685|195685|196260|256149|256150|256152|256152|256153|256154|256155|262353|262357|268431|272491|272491|328149|328151|328158|328162|328163|328167|328168|328169|328170|328174|328176|328191|328193|328205|328212|328213|328215|328216|328221|328223|328224|328225|328231|328240|328241|328242|328246|338029|338033|338047|338047|338073|338074|338077|338079|338086|338087|338091|338095|338102|338105|338108|338111|338112|338114|338120|338123|338125|338128|344204|344207|344208|344209|344214|344218|344222|344224|344229|344229|344237|344238|344244|344246|344247|344248|344250|344257|344258|344260|344262|344266|344267|345599|345600|345608|345608|345609|345610|345616|345616|345619|345620|345624|345626|345627|345628|345629|345632|345633|345636|345643|345644|345647|345655|345657|345661|345664|345666|345670|345674|345675|345683|358429|358431|467343|467996|487918|487918|487925|530976|531022|531462|531468|548835|571093|574257|645825|645826|645827|652641|652939|653105|653107|653266|653356|653445|704104|715396|715400|715401|727124|727124|727125|727126|727127|727128|740704|755804|771449|771450|771453|771454|771455|771457|771459|776317|779875|785542|785545|788236|792804|792805|821040|822301|845246|845247|845248|851717|852736|877276|877277|877278|877279|877280|877281|877282|877283|877284|877285|877286|877287|877288|877289|877290|877291|877292|877293|877294|877295|877296|877297|877298|877299|877300|877301|877302|877303|877304|877305|877306|877307|877308|877309|877310|877311|877312|880508|928238|928239|937900|940409|941180|949890|958092|960215|960883|972271|972272", "text": "Ocular cystinosis" }, { - "baseId": "19482|19484|19486|19487|19490|19494|19495|19497|34291|34294|186969|186969|186976|195685|196260|256152|262353|262357|268431|272491|338047|344229|345608|345616|358431|467343|467996|487918|487925|530976|531022|531462|531468|548835|571093|574257|645825|645826|645827|652641|652939|653105|653107|653266|653356|653445|704104|715396|715400|715401|727124|727125|727126|727127|727128|740704|755804|771449|771450|771453|771454|771455|771457|771459|776317|779875|785542|785545|788236|792804|792805|821040|845246|845247|845248|851717|852736|928238|928239|937900|940409|941180|949890|958092|960215|960883|972271|972272", + "upstreamId": "19482|19484|19486|19487|19490|19494|19495|19497|34291|34294|186969|186969|186976|195685|196260|256152|262353|262357|268431|272491|338047|344229|345608|345616|358431|467343|467996|487918|487925|530976|531022|531462|531468|548835|571093|574257|645825|645826|645827|652641|652939|653105|653107|653266|653356|653445|704104|715396|715400|715401|727124|727125|727126|727127|727128|740704|755804|771449|771450|771453|771454|771455|771457|771459|776317|779875|785542|785545|788236|792804|792805|821040|845246|845247|845248|851717|852736|928238|928239|937900|940409|941180|949890|958092|960215|960883|972271|972272", "text": "Juvenile nephropathic cystinosis" }, { - "baseId": "19482|19486|19494|19497|34290|34291|34292|186969|186973|186974|186976|195685|247620|247621|247622|247623|247624|256149|256150|256152|256153|262353|262354|262355|262357|268431|272491|328196|328201|328229|338035|338047|338100|338107|338116|338118|344229|344249|345604|345608|345616|345639|345646|345668|487825|487918|487925|497290|548133|571093|621563|715396|715401|727125|727127|727128|740704|755805|771453|776317|779875|785546|845248|877280|979889|979890|979891|979892|979893|979894|979895|979896|979897|979898", + "upstreamId": "19482|19486|19494|19497|34290|34291|34292|186969|186973|186974|186976|195685|247620|247621|247622|247623|247624|256149|256150|256152|256153|262353|262354|262355|262357|268431|272491|328196|328201|328229|338035|338047|338100|338107|338116|338118|344229|344249|345604|345608|345616|345639|345646|345668|487825|487918|487925|497290|548133|571093|621563|715396|715401|727125|727127|727128|740704|755805|771453|776317|779875|785546|845248|877280|979889|979890|979891|979892|979893|979894|979895|979896|979897|979898", "text": "Cystinosis" }, { - "baseId": "19486|19496|19497", + "upstreamId": "19486|19496|19497", "text": "Cystinosis, atypical nephropathic" }, { - "baseId": "19498|338326|338329|338331|338336|347978|347979|351719|351720|351721|352615|433978|433979|433980|470319|470330|470332|471152|471981|534016|534331|534480|534487|534489|574144|649531|649532|649533|649534|717485|717486|729223|742945|758118|786611|821467|849387|849388|849389|849390|891366|891367|891368|891369|891843|891844|929498|929499", + "upstreamId": "19498|338326|338329|338331|338336|347978|347979|351719|351720|351721|352615|433978|433979|433980|470319|470330|470332|471152|471981|534016|534331|534480|534487|534489|574144|649531|649532|649533|649534|717485|717486|729223|742945|758118|786611|821467|849387|849388|849389|849390|891366|891367|891368|891369|891843|891844|929498|929499", "text": "Common variable immunodeficiency 4" }, { - "baseId": "19499|19500|19500|19500|19501|19501|19502|19502|19503|19504|39524|79734|143206|143206|187237|187237|227234|227234|259730|259731|259731|284729|284732|284737|284740|284741|284741|284751|284751|284752|284754|284754|284757|284763|284764|284769|284769|284770|285403|285417|285418|285420|285420|285421|285422|285422|285423|285427|285428|287631|287632|287635|287636|287636|287638|287639|287640|287641|287652|287862|287863|287865|287866|287872|287873|287875|287875|287876|287882|287883|287889|287891|287892|287901|287901|287902|359415|360835|366372|404757|414868|448382|450625|450631|450635|450717|450717|450724|517815|517833|517834|517936|517938|550120|550121|550122|550123|557933|559113|559115|559117|559119|560936|560938|622269|629468|629469|629470|629471|629472|629473|691029|691030|691030|691031|691032|691032|691033|697326|697327|733173|747301|747302|747303|762937|762942|762945|781181|781182|781184|781185|798498|825745|825746|825747|825748|825749|883761|883762|883763|883764|883765|883766|883767|883768|883769|883770|883771|883772|883773|883774|883775|883776|883777|887275|917809|922578|922579|931154|931155|931156|939877|942612|952940|952941|952942|952943", + "upstreamId": "19499|19500|19500|19500|19501|19501|19502|19502|19503|19504|39524|79734|143206|143206|187237|187237|227234|227234|259730|259731|259731|284729|284732|284737|284740|284741|284741|284751|284751|284752|284754|284754|284757|284763|284764|284769|284769|284770|285403|285417|285418|285420|285420|285421|285422|285422|285423|285427|285428|287631|287632|287635|287636|287636|287638|287639|287640|287641|287652|287862|287863|287865|287866|287872|287873|287875|287875|287876|287882|287883|287889|287891|287892|287901|287901|287902|359415|360835|366372|404757|414868|448382|450625|450631|450635|450717|450717|450724|517815|517833|517834|517936|517938|550120|550121|550122|550123|557933|559113|559115|559117|559119|560936|560938|622269|629468|629469|629470|629471|629472|629473|691029|691030|691030|691031|691032|691032|691033|697326|697327|733173|747301|747302|747303|762937|762942|762945|781181|781182|781184|781185|798498|825745|825746|825747|825748|825749|883761|883762|883763|883764|883765|883766|883767|883768|883769|883770|883771|883772|883773|883774|883775|883776|883777|887275|917809|922578|922579|931154|931155|931156|939877|942612|952940|952941|952942|952943", "text": "Odonto-onycho-dermal dysplasia" }, { - "baseId": "19500|19500|19501|39524|79734|143206|187237|227234|259731|284729|284732|284737|284740|284741|284751|284752|284754|284757|284763|284764|284769|284770|285403|285417|285418|285420|285421|285422|285423|285427|285428|287631|287632|287635|287636|287638|287639|287640|287641|287652|287862|287863|287865|287866|287872|287873|287875|287876|287882|287883|287889|287891|287892|287901|287902|404757|450631|450717|691029|691030|691032|691033|697326|697327|747302|883761|883762|883763|883764|883765|883766|883767|883768|883769|883770|883771|883772|883773|883774|883775|883776|883777|887275|977687", + "upstreamId": "19500|19500|19501|39524|79734|143206|187237|227234|259731|284729|284732|284737|284740|284741|284751|284752|284754|284757|284763|284764|284769|284770|285403|285417|285418|285420|285421|285422|285423|285427|285428|287631|287632|287635|287636|287638|287639|287640|287641|287652|287862|287863|287865|287866|287872|287873|287875|287876|287882|287883|287889|287891|287892|287901|287902|404757|450631|450717|691029|691030|691032|691033|697326|697327|747302|883761|883762|883763|883764|883765|883766|883767|883768|883769|883770|883771|883772|883773|883774|883775|883776|883777|887275|977687", "text": "Schopf-Schulz-Passarge syndrome" }, { - "baseId": "19500|19500|19500|19501|19501|19502|19502|39524|45629|79734|143206|143206|187237|187237|227234|227234|259730|259731|284741|284741|284751|284751|284752|284754|284754|284757|284763|284764|284769|284769|284770|285417|285418|285420|285420|285421|285422|285422|285423|285427|285428|287636|287636|287638|287639|287640|287641|287652|287875|287875|287882|287883|287889|287891|287892|287901|287901|287902|359415|359415|360835|366372|404757|414868|448382|450625|450631|450635|450717|450717|450724|517815|517833|517834|517936|517938|557933|559113|559115|559117|559119|560936|560938|622269|622269|629468|629469|629470|629471|629472|629473|691029|691030|691030|691031|691032|691032|691033|697326|697327|733173|747301|747302|747303|762937|762942|762945|781181|781182|781184|781185|825745|825746|825747|825748|825749|883761|883762|883763|883764|883765|883766|883767|883768|883769|883770|883771|883772|883773|883774|883775|883776|883777|887275|917746|922578|922579|931154|931155|931156|939877|942612|952940|952941|952942|952943", + "upstreamId": "19500|19500|19500|19501|19501|19502|19502|39524|45629|79734|143206|143206|187237|187237|227234|227234|259730|259731|284741|284741|284751|284751|284752|284754|284754|284757|284763|284764|284769|284769|284770|285417|285418|285420|285420|285421|285422|285422|285423|285427|285428|287636|287636|287638|287639|287640|287641|287652|287875|287875|287882|287883|287889|287891|287892|287901|287901|287902|359415|359415|360835|366372|404757|414868|448382|450625|450631|450635|450717|450717|450724|517815|517833|517834|517936|517938|557933|559113|559115|559117|559119|560936|560938|622269|622269|629468|629469|629470|629471|629472|629473|691029|691030|691030|691031|691032|691032|691033|697326|697327|733173|747301|747302|747303|762937|762942|762945|781181|781182|781184|781185|825745|825746|825747|825748|825749|883761|883762|883763|883764|883765|883766|883767|883768|883769|883770|883771|883772|883773|883774|883775|883776|883777|887275|917746|922578|922579|931154|931155|931156|939877|942612|952940|952941|952942|952943", "text": "Tooth agenesis, selective, 4" }, { - "baseId": "19500", + "upstreamId": "19500", "text": "WNT10A-Related Disorders" }, { - "baseId": "19501|20897|106750|165611|165614|165615|165619|172936|249812|249813|249814|249815|249816|250081|250082|250083|250084|259690|266292|268021|269619|279711|279718|279719|279724|279731|279733|279734|279736|280000|280002|280007|280021|280030|280048|280049|280051|280061|280062|281321|281323|281327|281330|281331|281333|281339|281345|281348|281355|281511|281513|281518|281519|281520|281521|281522|281523|281524|281529|281532|281533|281534|281537|281540|281543|282145|282146|282147|282150|282152|282182|282184|282199|283515|283516|283517|283525|283530|283531|283532|283546|283549|283550|283551|283642|283656|283657|283659|283660|283667|283675|448540|448751|515626|685832|690702|690704|690705|824675|863969|863971|863972|863973|863974|863975|863976|863977|863979|863980|863981|863982|863983|863984|863985|863986|863988|865147|865148|880790|880791|880792|880793|880794|880795|880796|880797|880798|880799|880800|880801|880802|880803|880804|880805|880806|880807|880808|880809|880810|880811|880812|880813|880814|880815|880816|880817|880818|880819|880820|880821|880822|880823|880824|880826|880827|880828|880829|880830|880831|880832|882776|882777", + "upstreamId": "19501|20897|106750|165611|165614|165615|165619|172936|249812|249813|249814|249815|249816|250081|250082|250083|250084|259690|266292|268021|269619|279711|279718|279719|279724|279731|279733|279734|279736|280000|280002|280007|280021|280030|280048|280049|280051|280061|280062|281321|281323|281327|281330|281331|281333|281339|281345|281348|281355|281511|281513|281518|281519|281520|281521|281522|281523|281524|281529|281532|281533|281534|281537|281540|281543|282145|282146|282147|282150|282152|282182|282184|282199|283515|283516|283517|283525|283530|283531|283532|283546|283549|283550|283551|283642|283656|283657|283659|283660|283667|283675|448540|448751|515626|685832|690702|690704|690705|824675|863969|863971|863972|863973|863974|863975|863976|863977|863979|863980|863981|863982|863983|863984|863985|863986|863988|865147|865148|880790|880791|880792|880793|880794|880795|880796|880797|880798|880799|880800|880801|880802|880803|880804|880805|880806|880807|880808|880809|880810|880811|880812|880813|880814|880815|880816|880817|880818|880819|880820|880821|880822|880823|880824|880826|880827|880828|880829|880830|880831|880832|882776|882777", "text": "Hypohidrotic ectodermal dysplasia" }, { - "baseId": "19501|143206|284754|287901|794111|794112|794113|800840|917747", + "upstreamId": "19501|143206|284754|287901|794111|794112|794113|800840|917747", "text": "Reduced number of teeth" }, { - "baseId": "19505|614368", + "upstreamId": "19505|614368", "text": "Familial chronic mucocutaneous candidiasis" }, { - "baseId": "19505|581228", + "upstreamId": "19505|581228", "text": "Aspergillosis, susceptibility to" }, { - "baseId": "19506", + "upstreamId": "19506", "text": "Invasive pneumococcal disease, protection against" }, { - "baseId": "19506|20506|29052|30165|30200|30372|32764", + "upstreamId": "19506|20506|29052|30165|30200|30372|32764", "text": "Malaria, resistance to" }, { - "baseId": "19506|29762|32992", + "upstreamId": "19506|29762|32992", "text": "Mycobacterium tuberculosis, protection against" }, { - "baseId": "19506", + "upstreamId": "19506", "text": "Bacteremia, resistance to" }, { - "baseId": "19507|19508|19509|19510|19511|39519|137710|222400|222408|241986|321882|321890|321906|321925|331202|331209|331225|338031|338032|338048|339961|339964|339965", + "upstreamId": "19507|19508|19509|19510|19511|39519|137710|222400|222408|241986|321882|321890|321906|321925|331202|331209|331225|338031|338032|338048|339961|339964|339965", "text": "Pleuropulmonary blastoma" }, { - "baseId": "19507|19508|19509|19511|39519|39521|39522|39523|76997|76998|82748|137701|137703|137704|137705|137706|137707|137708|137709|137710|137711|137712|137712|137713|137714|137715|139252|222392|222393|222394|222395|222396|222397|222398|222399|222400|222401|222402|222403|222404|222405|222406|222407|222408|222409|222410|222411|222412|222413|222414|222415|223646|227696|227697|227698|227699|227700|227701|241898|241899|241900|241901|241903|241904|241905|241906|241907|241908|241909|241910|241911|241912|241913|241914|241915|241916|241917|241918|241919|241920|241921|241922|241923|241924|241925|241926|241928|241929|241930|241931|241933|241934|241935|241936|241937|241938|241939|241940|241941|241942|241943|241944|241945|241946|241948|241950|241951|241952|241954|241955|241956|241957|241958|241959|241960|241961|241962|241963|241964|241965|241966|241967|241968|241969|241970|241971|241972|241973|241974|241975|241976|241977|241978|241979|241980|241981|241982|241983|241984|241985|241986|241987|241989|241990|241991|241992|241993|241994|241995|241996|241997|241998|241999|242000|242001|242002|242003|242004|242005|242006|242007|242008|242010|242011|242012|242013|242014|242015|242016|242017|242018|242019|242020|242021|242022|248816|248817|248818|248819|248820|248821|248822|248823|248824|248825|248826|248827|248828|248829|248830|248831|248832|248833|248834|248835|248836|248837|248838|248839|248840|248841|248842|248843|248844|248845|248846|248847|248848|248849|248850|248851|248852|248853|248854|248855|248856|248857|248858|248859|248860|248861|248862|248863|248864|248865|248866|248867|248868|248869|248870|248871|248872|248873|248874|248875|248876|248877|248878|248879|248880|248881|248882|248883|248884|248885|248886|248887|248888|248889|255116|255117|255118|255119|255120|255121|321871|321877|321878|321879|321881|321883|321884|321889|321892|321893|321907|321911|321918|321919|321923|321935|321939|321940|321947|321953|321955|331176|331179|331183|331186|331189|331194|331201|331206|331207|331213|331217|331221|331222|331228|331230|331230|331238|331239|331243|331245|337997|338011|338012|338020|338036|338037|338043|338044|338048|338049|338052|339954|339955|339958|339959|339963|339966|339967|339969|339971|339975|339977|339978|339983|339988|399752|399758|399765|399767|399771|399772|399774|399775|399778|399782|399789|399791|399792|399796|399798|399801|399802|399807|399809|399811|399813|399818|399822|399824|399826|399832|399835|399843|399845|399849|399865|399866|399869|399871|399881|399887|399891|399893|399897|399902|399905|399906|399906|399916|399921|399926|399927|399930|399932|399937|399942|399944|399947|399949|399953|399954|399957|399958|399958|399959|399964|399969|399971|399972|399973|399974|399976|399977|399980|399981|399982|399985|399987|399991|399993|399994|400004|400005|400006|400009|400011|400016|400022|400024|400025|400028|400029|400035|400037|400041|400044|400052|400059|400060|400065|400074|400078|400092|400094|400095|400096|400099|400102|400103|400105|400112|400117|400124|400130|400135|400137|400139|400147|400153|400166|400179|400180|400181|400186|400187|400191|400191|400197|400198|400202|400208|400300|400301|400310|400312|400319|400322|400328|400334|400335|400338|400340|400345|400351|400352|400353|400354|400356|400360|400361|400364|400367|400372|400377|400378|400379|400385|400386|400388|400389|400400|400402|400403|400404|400413|400415|400431|400442|400448|400452|400455|400458|400460|400465|400470|400473|400477|400483|400485|400489|400493|400500|400501|400502|400504|400507|400514|400517|400551|400557|400562|400566|400572|400589|400606|400611|400614|400617|400618|400621|400622|400625|400628|400631|400635|400637|400641|400643|400651|400652|400653|400654|400657|400663|400666|400675|400676|400678|400679|400685|400693|400713|400720|400721|400722|400723|400726|400728|400729|400730|400735|400738|400750|400757|400764|400765|400768|400772|400773|400787|400794|400808|400809|400812|400818|400819|400826|400828|400831|400833|400834|400835|400836|400843|409178|421090|421095|421096|421098|421102|421104|421107|421108|421115|421116|421120|421121|421122|421123|421130|421138|421139|426083|463597|463601|463614|463617|463619|463623|463625|463627|463631|463633|463634|463643|463647|463653|463659|463664|463665|463673|463677|463682|463686|463687|463689|463696|463697|463699|463702|463708|463709|463713|463715|463718|463719|463721|463726|463727|463730|463737|463752|463756|463758|463763|463769|463780|463783|463789|463793|463794|463799|463802|463804|463807|463809|463819|463820|463826|463827|463830|463835|463843|463859|463862|463865|463867|463868|463889|463891|463894|463898|463902|463910|463914|463915|463916|463917|463920|463923|463925|463929|464193|464198|464199|464203|464205|464209|464212|464216|464217|464223|464227|464233|464235|464241|464243|464251|464253|464256|464260|464261|464280|464294|464295|464301|464302|464304|464307|464314|464315|464319|464322|464323|464327|464329|464341|464343|464360|464367|464373|464374|464378|464382|464389|464392|464393|464395|464405|464407|464409|464411|464414|464416|464419|464423|464431|464432|464436|464438|464441|464447|464448|464450|464451|464454|464455|464456|464461|464464|464465|464467|464469|464472|464473|464474|464478|464480|464482|464483|464485|464487|464488|464495|464499|464506|464512|464514|464518|464520|464523|464526|464529|464548|464553|464557|464560|464569|464570|464570|464571|464572|464573|464574|464575|464577|464579|464581|464583|464584|464585|464589|464590|464591|464595|464596|464600|464601|464604|464608|464610|464612|464615|464620|464626|464628|464633|464634|464635|464635|464637|464641|464642|464644|464651|464653|464654|464655|464658|464660|464661|464662|464664|464666|464667|464669|464674|464675|464676|464678|464680|464681|464683|464685|464687|464689|464690|464695|464698|464699|464700|464701|464703|464704|464705|464707|464712|464714|464718|464719|464722|464724|464725|464727|464728|464729|464731|464733|464735|464736|464738|464741|464742|464743|464747|464749|464750|464752|464756|464757|464762|464766|464767|464770|464773|464774|464777|477045|477050|477067|477067|477078|477082|477084|477099|477109|477116|477119|477122|477127|477137|477140|477141|477143|477146|477151|477157|477158|477159|477160|477162|477165|477166|477174|477184|477196|477199|477210|477212|477214|477217|477218|477228|477239|477247|477295|477317|477321|477322|477326|477332|477339|477340|477345|477350|477356|477358|477362|477364|477365|477373|477380|477395|477396|477399|477662|477667|477670|477674|477680|477681|477684|477698|477705|477725|477726|477730|477748|477751|477757|477766|477771|477781|477791|505590|505595|514664|528337|528338|528340|528351|528353|528355|528362|528364|528376|528380|528380|528388|528390|528392|528397|528400|528402|528407|528413|528415|528418|528420|528421|528423|528426|528427|528429|528430|528432|528435|528438|528439|528441|528445|528446|528448|528449|528451|528452|528454|528455|528456|528457|528461|528466|528468|528470|528471|528472|528475|528476|528477|528482|528485|528487|528493|528496|528498|528499|528504|528506|528509|528511|528512|528513|528515|528520|528523|528525|528526|528529|528530|528533|528535|528538|528539|528549|528551|528552|528553|528560|528562|528568|528572|528573|528581|528588|528592|528817|528831|528834|528839|528844|528846|528847|528849|528851|528856|528858|528860|528861|528866|528867|528870|528871|528873|528874|528878|528880|528882|528883|528884|528886|528888|528889|528896|528898|528903|528904|528905|528906|528911|528913|528914|528917|528920|528922|528923|528924|528925|528926|528929|528930|528931|528932|528936|528937|528938|528941|528942|528945|528953|528955|528960|528968|528970|528971|528973|528977|528980|528984|528987|528989|528996|528997|529003|529007|529013|529014|566675|566679|566689|566690|566696|566697|566698|566698|566703|566705|566707|566712|566716|566720|566726|566728|566729|566737|566743|566753|566756|566758|566760|566766|566768|566771|566773|566775|566779|566780|566788|566794|566801|566802|566805|566810|566811|568354|568362|568364|568366|568370|568376|568382|568383|568389|568394|568395|568405|568413|568419|568422|568424|568427|568435|568438|568440|568449|568455|568467|568472|568473|568477|568485|568492|568501|568507|568520|568522|568523|568527|568530|568531|568532|568535|568541|569083|569087|569090|569091|569093|569095|569097|569098|569100|569108|569110|569112|569114|569116|569122|569123|569125|569129|569132|569133|569136|569137|569139|569142|569157|569160|569165|572619|572981|572986|572989|572998|573002|573009|573011|573012|573013|573016|573017|573018|573023|573025|573026|573026|573027|573035|573037|573040|573041|573043|573048|573054|573056|573057|573061|573076|573080|573081|573082|573086|573087|573088|573094|573096|573101|612020|642792|642793|642794|642795|642796|642797|642798|642799|642800|642801|642802|642803|642804|642805|642806|642807|642808|642809|642810|642811|642812|642813|642814|642815|642816|642817|642818|642819|642820|642821|642822|642823|642824|642825|642826|642827|642828|642829|642830|642831|642832|642833|642834|642835|642836|642837|642838|642839|642840|642841|642842|642843|642844|642845|642846|642847|642848|642849|642850|642851|642852|642853|642854|642855|642856|642857|642858|642859|642860|642861|642862|642863|642864|642865|642866|642867|642868|642869|642870|642871|642872|642873|642874|642875|642876|642877|642878|642879|642880|642881|642882|642883|642884|642885|642886|642887|642888|642889|642890|642891|642892|642893|642894|642895|642896|642897|642898|642899|642900|642901|642902|642903|642904|642905|642906|642907|642908|642909|642910|642911|642912|642913|642914|642915|642916|642917|642918|642919|642920|642921|642922|642923|642924|642925|642926|642927|642928|642929|642930|642931|642932|642933|642934|642935|642936|642937|642938|642939|642940|642941|642942|642943|642944|642945|642946|642947|642948|642949|642950|642951|642952|642953|642954|642955|642956|642957|642958|642959|642960|642961|642962|642963|642964|642965|642966|642967|642968|642969|652360|652363|652366|652433|652482|652484|652566|652615|652621|652625|652897|652983|652984|652995|653000|653002|653003|678125|678126|678128|678132|678137|678138|678143|678146|678154|678155|678156|685405|688379|688380|688381|688382|688383|690094|690095|693621|693623|693624|693625|693626|693627|693628|693629|693630|693631|693633|703037|703045|725874|725875|725876|725878|739410|739418|739419|739422|739423|739431|739432|739433|744838|754225|754226|754227|754228|754229|754230|754231|754232|754233|754235|754238|754239|754240|754243|754250|769961|769962|769972|769973|769974|769975|769976|769979|769980|769985|769987|769988|769989|769991|769997|769999|770000|770002|770004|770005|770009|770017|775969|776042|776096|776104|776105|776106|784825|784826|784828|784832|784834|784836|784838|784840|784841|784842|784843|784845|791429|791430|811914|811919|811920|811931|811935|811944|811963|811970|811982|811988|811994|811996|812002|812011|812012|812017|812023|812025|812029|812031|812034|812036|812037|812040|812041|812046|812053|812058|812062|812067|812076|812079|812093|812100|812116|812120|812133|812155|812156|812158|812164|812167|812168|812202|812206|812213|812215|812233|812251|812252|812253|815587|815589|815594|815597|820660|820661|841914|841915|841916|841917|841918|841919|841920|841921|841922|841923|841924|841925|841926|841927|841928|841929|841930|841931|841932|841933|841934|841935|841936|841937|841938|841939|841940|841941|841942|841943|841944|841945|841946|841947|841948|841949|841950|841951|841952|841953|841954|841955|841956|841957|841958|841959|841960|841961|841962|841963|841964|841965|841966|841967|841968|841969|841970|841971|841972|841973|841974|841975|841976|841977|841978|841979|841980|841981|841982|841983|841984|841985|841986|841987|841988|841989|841990|841991|841992|841993|841994|841995|841996|841997|841998|841999|842000|842001|842002|842003|842004|842005|842006|842007|842008|842009|842010|842011|842012|842013|842014|842015|842016|842017|842018|842019|842020|842021|842022|842023|842024|842025|842026|842027|842028|842029|842030|842031|842032|842033|842034|842035|842036|842037|842038|842039|842040|842041|842042|842043|842044|842045|842046|842047|842048|842049|842050|842051|842052|842053|842054|842055|842056|842057|842058|842059|842060|842061|842062|842063|842064|842065|842066|851593|852021|852023|852571|852572|852574|852578|852749|852751|852755|872990|872991|872992|872993|872994|872995|872996|872997|872998|872999|873000|873001|873002|873003|873004|873005|873006|873007|873008|873009|873010|873011|873012|873013|873014|873015|873016|873017|873018|873019|873020|873021|873022|873023|873024|873025|873026|876468|918493|921280|921281|921282|921283|921284|921285|921286|921287|921288|921289|921290|921291|921292|921293|921294|921295|921296|921297|921298|921299|921300|921302|921303|921304|921306|921307|921308|921310|921311|921312|921313|921314|921315|921316|921317|921318|921319|921320|921322|921323|921325|921328|921329|921330|921331|921332|921334|921335|921336|921338|921339|921340|921341|921343|921344|921345|921346|921347|921348|921349|921350|921351|921352|921353|921355|921356|921357|921358|921359|921360|921362|921363|921364|921365|921366|921367|921368|921370|921371|921372|921373|921375|921376|921378|921379|921380|921381|921382|921383|921384|921385|921386|921388|921390|921391|921393|921394|921397|921398|921399|921400|921403|921405|921406|921407|921408|921409|921410|921411|921412|921413|921414|921415|921416|921417|921419|921420|921421|921423|921424|921426|921429|921431|921432|921436|921438|921440|921441|927198|927199|927200|927201|927202|927203|927204|927205|927206|927207|927208|927209|927210|927211|927212|927213|927214|927215|927216|927217|927218|927219|927220|927221|927222|927223|927224|927225|927226|927227|927228|927229|927230|927231|927232|927233|927234|927235|927236|927237|927238|927239|927240|927241|927242|927243|927244|927245|927246|936769|936770|936771|936772|936773|936774|936775|936776|936777|936778|936779|936780|936781|936782|936783|936784|936785|936786|936787|936788|936789|936790|936791|936792|936793|936794|936795|936796|936797|936798|936799|936800|936801|936802|936803|936804|936805|936806|936807|936808|936809|936810|936811|936812|936813|936814|936815|936816|936817|936818|936819|936820|936821|936822|936823|936824|936825|936826|936827|940319|941071|941072|941073|941074|941075|941076|941077|948727|948728|948729|948730|948731|948732|948733|948734|948735|948736|948737|948738|948739|948740|948741|948742|948743|948744|948745|948746|948747|948748|948749|948750|948751|948752|948753|948754|948755|948756|948757|948758|948759|948760|948761|948762|948763|948764|948765|948766|948767|948768|948769|948770|948771|948772|948773|948774|957343|957344|957345|957346|957347|957348|957349|957350|957351|957352|957353|957354|957355|957356|957357|957358|957359|957360|960098|960099|960100|960813|960814|960815|964681|970357", + "upstreamId": "19507|19508|19509|19511|39519|39521|39522|39523|76997|76998|82748|137701|137703|137704|137705|137706|137707|137708|137709|137710|137711|137712|137712|137713|137714|137715|139252|222392|222393|222394|222395|222396|222397|222398|222399|222400|222401|222402|222403|222404|222405|222406|222407|222408|222409|222410|222411|222412|222413|222414|222415|223646|227696|227697|227698|227699|227700|227701|241898|241899|241900|241901|241903|241904|241905|241906|241907|241908|241909|241910|241911|241912|241913|241914|241915|241916|241917|241918|241919|241920|241921|241922|241923|241924|241925|241926|241928|241929|241930|241931|241933|241934|241935|241936|241937|241938|241939|241940|241941|241942|241943|241944|241945|241946|241948|241950|241951|241952|241954|241955|241956|241957|241958|241959|241960|241961|241962|241963|241964|241965|241966|241967|241968|241969|241970|241971|241972|241973|241974|241975|241976|241977|241978|241979|241980|241981|241982|241983|241984|241985|241986|241987|241989|241990|241991|241992|241993|241994|241995|241996|241997|241998|241999|242000|242001|242002|242003|242004|242005|242006|242007|242008|242010|242011|242012|242013|242014|242015|242016|242017|242018|242019|242020|242021|242022|248816|248817|248818|248819|248820|248821|248822|248823|248824|248825|248826|248827|248828|248829|248830|248831|248832|248833|248834|248835|248836|248837|248838|248839|248840|248841|248842|248843|248844|248845|248846|248847|248848|248849|248850|248851|248852|248853|248854|248855|248856|248857|248858|248859|248860|248861|248862|248863|248864|248865|248866|248867|248868|248869|248870|248871|248872|248873|248874|248875|248876|248877|248878|248879|248880|248881|248882|248883|248884|248885|248886|248887|248888|248889|255116|255117|255118|255119|255120|255121|321871|321877|321878|321879|321881|321883|321884|321889|321892|321893|321907|321911|321918|321919|321923|321935|321939|321940|321947|321953|321955|331176|331179|331183|331186|331189|331194|331201|331206|331207|331213|331217|331221|331222|331228|331230|331230|331238|331239|331243|331245|337997|338011|338012|338020|338036|338037|338043|338044|338048|338049|338052|339954|339955|339958|339959|339963|339966|339967|339969|339971|339975|339977|339978|339983|339988|399752|399758|399765|399767|399771|399772|399774|399775|399778|399782|399789|399791|399792|399796|399798|399801|399802|399807|399809|399811|399813|399818|399822|399824|399826|399832|399835|399843|399845|399849|399865|399866|399869|399871|399881|399887|399891|399893|399897|399902|399905|399906|399906|399916|399921|399926|399927|399930|399932|399937|399942|399944|399947|399949|399953|399954|399957|399958|399958|399959|399964|399969|399971|399972|399973|399974|399976|399977|399980|399981|399982|399985|399987|399991|399993|399994|400004|400005|400006|400009|400011|400016|400022|400024|400025|400028|400029|400035|400037|400041|400044|400052|400059|400060|400065|400074|400078|400092|400094|400095|400096|400099|400102|400103|400105|400112|400117|400124|400130|400135|400137|400139|400147|400153|400166|400179|400180|400181|400186|400187|400191|400191|400197|400198|400202|400208|400300|400301|400310|400312|400319|400322|400328|400334|400335|400338|400340|400345|400351|400352|400353|400354|400356|400360|400361|400364|400367|400372|400377|400378|400379|400385|400386|400388|400389|400400|400402|400403|400404|400413|400415|400431|400442|400448|400452|400455|400458|400460|400465|400470|400473|400477|400483|400485|400489|400493|400500|400501|400502|400504|400507|400514|400517|400551|400557|400562|400566|400572|400589|400606|400611|400614|400617|400618|400621|400622|400625|400628|400631|400635|400637|400641|400643|400651|400652|400653|400654|400657|400663|400666|400675|400676|400678|400679|400685|400693|400713|400720|400721|400722|400723|400726|400728|400729|400730|400735|400738|400750|400757|400764|400765|400768|400772|400773|400787|400794|400808|400809|400812|400818|400819|400826|400828|400831|400833|400834|400835|400836|400843|409178|421090|421095|421096|421098|421102|421104|421107|421108|421115|421116|421120|421121|421122|421123|421130|421138|421139|426083|463597|463601|463614|463617|463619|463623|463625|463627|463631|463633|463634|463643|463647|463653|463659|463664|463665|463673|463677|463682|463686|463687|463689|463696|463697|463699|463702|463708|463709|463713|463715|463718|463719|463721|463726|463727|463730|463737|463752|463756|463758|463763|463769|463780|463783|463789|463793|463794|463799|463802|463804|463807|463809|463819|463820|463826|463827|463830|463835|463843|463859|463862|463865|463867|463868|463889|463891|463894|463898|463902|463910|463914|463915|463916|463917|463920|463923|463925|463929|464193|464198|464199|464203|464205|464209|464212|464216|464217|464223|464227|464233|464235|464241|464243|464251|464253|464256|464260|464261|464280|464294|464295|464301|464302|464304|464307|464314|464315|464319|464322|464323|464327|464329|464341|464343|464360|464367|464373|464374|464378|464382|464389|464392|464393|464395|464405|464407|464409|464411|464414|464416|464419|464423|464431|464432|464436|464438|464441|464447|464448|464450|464451|464454|464455|464456|464461|464464|464465|464467|464469|464472|464473|464474|464478|464480|464482|464483|464485|464487|464488|464495|464499|464506|464512|464514|464518|464520|464523|464526|464529|464548|464553|464557|464560|464569|464570|464570|464571|464572|464573|464574|464575|464577|464579|464581|464583|464584|464585|464589|464590|464591|464595|464596|464600|464601|464604|464608|464610|464612|464615|464620|464626|464628|464633|464634|464635|464635|464637|464641|464642|464644|464651|464653|464654|464655|464658|464660|464661|464662|464664|464666|464667|464669|464674|464675|464676|464678|464680|464681|464683|464685|464687|464689|464690|464695|464698|464699|464700|464701|464703|464704|464705|464707|464712|464714|464718|464719|464722|464724|464725|464727|464728|464729|464731|464733|464735|464736|464738|464741|464742|464743|464747|464749|464750|464752|464756|464757|464762|464766|464767|464770|464773|464774|464777|477045|477050|477067|477067|477078|477082|477084|477099|477109|477116|477119|477122|477127|477137|477140|477141|477143|477146|477151|477157|477158|477159|477160|477162|477165|477166|477174|477184|477196|477199|477210|477212|477214|477217|477218|477228|477239|477247|477295|477317|477321|477322|477326|477332|477339|477340|477345|477350|477356|477358|477362|477364|477365|477373|477380|477395|477396|477399|477662|477667|477670|477674|477680|477681|477684|477698|477705|477725|477726|477730|477748|477751|477757|477766|477771|477781|477791|505590|505595|514664|528337|528338|528340|528351|528353|528355|528362|528364|528376|528380|528380|528388|528390|528392|528397|528400|528402|528407|528413|528415|528418|528420|528421|528423|528426|528427|528429|528430|528432|528435|528438|528439|528441|528445|528446|528448|528449|528451|528452|528454|528455|528456|528457|528461|528466|528468|528470|528471|528472|528475|528476|528477|528482|528485|528487|528493|528496|528498|528499|528504|528506|528509|528511|528512|528513|528515|528520|528523|528525|528526|528529|528530|528533|528535|528538|528539|528549|528551|528552|528553|528560|528562|528568|528572|528573|528581|528588|528592|528817|528831|528834|528839|528844|528846|528847|528849|528851|528856|528858|528860|528861|528866|528867|528870|528871|528873|528874|528878|528880|528882|528883|528884|528886|528888|528889|528896|528898|528903|528904|528905|528906|528911|528913|528914|528917|528920|528922|528923|528924|528925|528926|528929|528930|528931|528932|528936|528937|528938|528941|528942|528945|528953|528955|528960|528968|528970|528971|528973|528977|528980|528984|528987|528989|528996|528997|529003|529007|529013|529014|566675|566679|566689|566690|566696|566697|566698|566698|566703|566705|566707|566712|566716|566720|566726|566728|566729|566737|566743|566753|566756|566758|566760|566766|566768|566771|566773|566775|566779|566780|566788|566794|566801|566802|566805|566810|566811|568354|568362|568364|568366|568370|568376|568382|568383|568389|568394|568395|568405|568413|568419|568422|568424|568427|568435|568438|568440|568449|568455|568467|568472|568473|568477|568485|568492|568501|568507|568520|568522|568523|568527|568530|568531|568532|568535|568541|569083|569087|569090|569091|569093|569095|569097|569098|569100|569108|569110|569112|569114|569116|569122|569123|569125|569129|569132|569133|569136|569137|569139|569142|569157|569160|569165|572619|572981|572986|572989|572998|573002|573009|573011|573012|573013|573016|573017|573018|573023|573025|573026|573026|573027|573035|573037|573040|573041|573043|573048|573054|573056|573057|573061|573076|573080|573081|573082|573086|573087|573088|573094|573096|573101|612020|642792|642793|642794|642795|642796|642797|642798|642799|642800|642801|642802|642803|642804|642805|642806|642807|642808|642809|642810|642811|642812|642813|642814|642815|642816|642817|642818|642819|642820|642821|642822|642823|642824|642825|642826|642827|642828|642829|642830|642831|642832|642833|642834|642835|642836|642837|642838|642839|642840|642841|642842|642843|642844|642845|642846|642847|642848|642849|642850|642851|642852|642853|642854|642855|642856|642857|642858|642859|642860|642861|642862|642863|642864|642865|642866|642867|642868|642869|642870|642871|642872|642873|642874|642875|642876|642877|642878|642879|642880|642881|642882|642883|642884|642885|642886|642887|642888|642889|642890|642891|642892|642893|642894|642895|642896|642897|642898|642899|642900|642901|642902|642903|642904|642905|642906|642907|642908|642909|642910|642911|642912|642913|642914|642915|642916|642917|642918|642919|642920|642921|642922|642923|642924|642925|642926|642927|642928|642929|642930|642931|642932|642933|642934|642935|642936|642937|642938|642939|642940|642941|642942|642943|642944|642945|642946|642947|642948|642949|642950|642951|642952|642953|642954|642955|642956|642957|642958|642959|642960|642961|642962|642963|642964|642965|642966|642967|642968|642969|652360|652363|652366|652433|652482|652484|652566|652615|652621|652625|652897|652983|652984|652995|653000|653002|653003|678125|678126|678128|678132|678137|678138|678143|678146|678154|678155|678156|685405|688379|688380|688381|688382|688383|690094|690095|693621|693623|693624|693625|693626|693627|693628|693629|693630|693631|693633|703037|703045|725874|725875|725876|725878|739410|739418|739419|739422|739423|739431|739432|739433|744838|754225|754226|754227|754228|754229|754230|754231|754232|754233|754235|754238|754239|754240|754243|754250|769961|769962|769972|769973|769974|769975|769976|769979|769980|769985|769987|769988|769989|769991|769997|769999|770000|770002|770004|770005|770009|770017|775969|776042|776096|776104|776105|776106|784825|784826|784828|784832|784834|784836|784838|784840|784841|784842|784843|784845|791429|791430|811914|811919|811920|811931|811935|811944|811963|811970|811982|811988|811994|811996|812002|812011|812012|812017|812023|812025|812029|812031|812034|812036|812037|812040|812041|812046|812053|812058|812062|812067|812076|812079|812093|812100|812116|812120|812133|812155|812156|812158|812164|812167|812168|812202|812206|812213|812215|812233|812251|812252|812253|815587|815589|815594|815597|820660|820661|841914|841915|841916|841917|841918|841919|841920|841921|841922|841923|841924|841925|841926|841927|841928|841929|841930|841931|841932|841933|841934|841935|841936|841937|841938|841939|841940|841941|841942|841943|841944|841945|841946|841947|841948|841949|841950|841951|841952|841953|841954|841955|841956|841957|841958|841959|841960|841961|841962|841963|841964|841965|841966|841967|841968|841969|841970|841971|841972|841973|841974|841975|841976|841977|841978|841979|841980|841981|841982|841983|841984|841985|841986|841987|841988|841989|841990|841991|841992|841993|841994|841995|841996|841997|841998|841999|842000|842001|842002|842003|842004|842005|842006|842007|842008|842009|842010|842011|842012|842013|842014|842015|842016|842017|842018|842019|842020|842021|842022|842023|842024|842025|842026|842027|842028|842029|842030|842031|842032|842033|842034|842035|842036|842037|842038|842039|842040|842041|842042|842043|842044|842045|842046|842047|842048|842049|842050|842051|842052|842053|842054|842055|842056|842057|842058|842059|842060|842061|842062|842063|842064|842065|842066|851593|852021|852023|852571|852572|852574|852578|852749|852751|852755|872990|872991|872992|872993|872994|872995|872996|872997|872998|872999|873000|873001|873002|873003|873004|873005|873006|873007|873008|873009|873010|873011|873012|873013|873014|873015|873016|873017|873018|873019|873020|873021|873022|873023|873024|873025|873026|876468|918493|921280|921281|921282|921283|921284|921285|921286|921287|921288|921289|921290|921291|921292|921293|921294|921295|921296|921297|921298|921299|921300|921302|921303|921304|921306|921307|921308|921310|921311|921312|921313|921314|921315|921316|921317|921318|921319|921320|921322|921323|921325|921328|921329|921330|921331|921332|921334|921335|921336|921338|921339|921340|921341|921343|921344|921345|921346|921347|921348|921349|921350|921351|921352|921353|921355|921356|921357|921358|921359|921360|921362|921363|921364|921365|921366|921367|921368|921370|921371|921372|921373|921375|921376|921378|921379|921380|921381|921382|921383|921384|921385|921386|921388|921390|921391|921393|921394|921397|921398|921399|921400|921403|921405|921406|921407|921408|921409|921410|921411|921412|921413|921414|921415|921416|921417|921419|921420|921421|921423|921424|921426|921429|921431|921432|921436|921438|921440|921441|927198|927199|927200|927201|927202|927203|927204|927205|927206|927207|927208|927209|927210|927211|927212|927213|927214|927215|927216|927217|927218|927219|927220|927221|927222|927223|927224|927225|927226|927227|927228|927229|927230|927231|927232|927233|927234|927235|927236|927237|927238|927239|927240|927241|927242|927243|927244|927245|927246|936769|936770|936771|936772|936773|936774|936775|936776|936777|936778|936779|936780|936781|936782|936783|936784|936785|936786|936787|936788|936789|936790|936791|936792|936793|936794|936795|936796|936797|936798|936799|936800|936801|936802|936803|936804|936805|936806|936807|936808|936809|936810|936811|936812|936813|936814|936815|936816|936817|936818|936819|936820|936821|936822|936823|936824|936825|936826|936827|940319|941071|941072|941073|941074|941075|941076|941077|948727|948728|948729|948730|948731|948732|948733|948734|948735|948736|948737|948738|948739|948740|948741|948742|948743|948744|948745|948746|948747|948748|948749|948750|948751|948752|948753|948754|948755|948756|948757|948758|948759|948760|948761|948762|948763|948764|948765|948766|948767|948768|948769|948770|948771|948772|948773|948774|957343|957344|957345|957346|957347|957348|957349|957350|957351|957352|957353|957354|957355|957356|957357|957358|957359|957360|960098|960099|960100|960813|960814|960815|964681|970357", "text": "DICER1-related pleuropulmonary blastoma cancer predisposition syndrome" }, { - "baseId": "19513|19514|19515|19516|903678|903679|903680", + "upstreamId": "19513|19514|19515|19516|903678|903679|903680", "text": "Nanophthalmos 2" }, { - "baseId": "19513|19515|19517|177265|177397|177836|181184|181185|181186|181187|181188|188832|191098|191437|191707|193723|194518|195024|195432|195757|195758|205768|254020|272280|312750|312754|312755|312766|312767|312770|312772|312776|312778|312779|312783|312784|312789|312795|312796|312801|312802|312808|318744|318745|318758|318788|318789|318798|318815|318817|318818|318820|318822|318827|324842|324846|324848|324853|324854|324870|324871|324872|324877|324884|324894|324897|325705|325708|325714|325719|325720|325734|325737|325745|325753|325754|325762|325763|325768|325769|325770|325774|325782|460985|481316|481317|488632|488856|551565|567088|567095|620829|692950|701610|768261|838078|838084|838085|838086|838087|838088|838089|838090|838091|838092|838093|838094|838095|838096|838097|838098|838099|838100|838101|838102|838103|838104|851827|867200|867201|867202|867203|867204|867205|867206|867207|867208|867209|867210|867211|867212|867213|867214|867215|867216|867217|867218|868610|868611|903576|926150|935424|935425|935426|935427|935428|935429|940207|947346|947347|947348|947349|947350|947351|947352|947353|956420|956421|956422|956423|956424|959980|960749|960750", + "upstreamId": "19513|19515|19517|177265|177397|177836|181184|181185|181186|181187|181188|188832|191098|191437|191707|193723|194518|195024|195432|195757|195758|205768|254020|272280|312750|312754|312755|312766|312767|312770|312772|312776|312778|312779|312783|312784|312789|312795|312796|312801|312802|312808|318744|318745|318758|318788|318789|318798|318815|318817|318818|318820|318822|318827|324842|324846|324848|324853|324854|324870|324871|324872|324877|324884|324894|324897|325705|325708|325714|325719|325720|325734|325737|325745|325753|325754|325762|325763|325768|325769|325770|325774|325782|460985|481316|481317|488632|488856|551565|567088|567095|620829|692950|701610|768261|838078|838084|838085|838086|838087|838088|838089|838090|838091|838092|838093|838094|838095|838096|838097|838098|838099|838100|838101|838102|838103|838104|851827|867200|867201|867202|867203|867204|867205|867206|867207|867208|867209|867210|867211|867212|867213|867214|867215|867216|867217|867218|868610|868611|903576|926150|935424|935425|935426|935427|935428|935429|940207|947346|947347|947348|947349|947350|947351|947352|947353|956420|956421|956422|956423|956424|959980|960749|960750", "text": "Microphthalmia, isolated 5" }, { - "baseId": "19518|19519|19520|19521|19522|19523|19524|19525|19526|19527|433763|710976|799508|799509|799510|981600|981601", + "upstreamId": "19518|19519|19520|19521|19522|19523|19524|19525|19526|19527|433763|710976|799508|799509|799510|981600|981601", "text": "Uridine 5-prime monophosphate hydrolase deficiency, hemolytic anemia due to" }, { - "baseId": "19528|19529|19530|19531|19532|19533|19534|19535|19535|19536|101851|101852|101853|101854|101855|101856|101857|101859|101860|101861|101862|101863|135731|172199|172200|177193|190593|190596|191079|192524|195398|206785|206787|249861|249864|249865|249866|249877|249878|249879|263988|264017|264017|265285|265285|269858|270336|275193|280268|280270|280663|282040|282048|359257|360810|365090|365098|365180|365196|414787|414789|425359|447750|447754|447970|448054|448058|448062|448068|448072|448084|448092|448094|485992|514427|515760|515764|515765|515769|515770|515814|515857|515885|557015|557017|557019|557021|557242|557244|557246|557248|557250|557281|557283|558471|576535|583080|587529|612256|627726|627727|627728|627729|627730|627731|627732|627733|627734|627735|627736|627737|627738|627739|650633|650648|650656|650663|650732|650735|650736|650740|690578|696657|732339|732340|732341|732342|761842|780659|823849|823850|823851|823852|823853|823854|823855|823856|823857|823858|823859|823860|823861|823862|823863|823864|851295|858475|921980|921981|921982|921983|921984|921985|930452|930453|930454|930455|930456|930457|930458|930459|939808|939809|939810|939811|941904|941905|941906|941907|941908|941909|952380|952381|952382|959555|960428|963121", + "upstreamId": "19528|19529|19530|19531|19532|19533|19534|19535|19535|19536|101851|101852|101853|101854|101855|101856|101857|101859|101860|101861|101862|101863|135731|172199|172200|177193|190593|190596|191079|192524|195398|206785|206787|249861|249864|249865|249866|249877|249878|249879|263988|264017|264017|265285|265285|269858|270336|275193|280268|280270|280663|282040|282048|359257|360810|365090|365098|365180|365196|414787|414789|425359|447750|447754|447970|448054|448058|448062|448068|448072|448084|448092|448094|485992|514427|515760|515764|515765|515769|515770|515814|515857|515885|557015|557017|557019|557021|557242|557244|557246|557248|557250|557281|557283|558471|576535|583080|587529|612256|627726|627727|627728|627729|627730|627731|627732|627733|627734|627735|627736|627737|627738|627739|650633|650648|650656|650663|650732|650735|650736|650740|690578|696657|732339|732340|732341|732342|761842|780659|823849|823850|823851|823852|823853|823854|823855|823856|823857|823858|823859|823860|823861|823862|823863|823864|851295|858475|921980|921981|921982|921983|921984|921985|930452|930453|930454|930455|930456|930457|930458|930459|939808|939809|939810|939811|941904|941905|941906|941907|941908|941909|952380|952381|952382|959555|960428|963121", "text": "Eichsfeld type congenital muscular dystrophy" }, { - "baseId": "19531|19535|101851|101852|101855|101857|101859|101860|101862|101863|135731|172199|191079|206785|206787|249859|249860|249865|249866|249874|249876|249877|249878|249879|249880|280264|280268|280270|280274|280276|280277|280278|280290|280295|280299|280301|280308|280311|280312|280313|280318|280319|280663|280669|280678|280683|280685|280691|280692|280694|280696|281957|281958|281959|281964|281965|281987|281989|282040|282046|282048|282050|282065|282068|282069|282072|282073|282080|282081|282088|282102|365090|365196|485992|515764|619997|620721|864232|864233|864234|864235|864236|864237|864238|864239|864240|864241|864242|864243|864244|864245|864246|864247|864248|864249|864250|864251|864252|864253|864254|864255|864256|864257|864258|864259|864260|864261|864262|864263|865173|865174", + "upstreamId": "19531|19535|101851|101852|101855|101857|101859|101860|101862|101863|135731|172199|191079|206785|206787|249859|249860|249865|249866|249874|249876|249877|249878|249879|249880|280264|280268|280270|280274|280276|280277|280278|280290|280295|280299|280301|280308|280311|280312|280313|280318|280319|280663|280669|280678|280683|280685|280691|280692|280694|280696|281957|281958|281959|281964|281965|281987|281989|282040|282046|282048|282050|282065|282068|282069|282072|282073|282080|282081|282088|282102|365090|365196|485992|515764|619997|620721|864232|864233|864234|864235|864236|864237|864238|864239|864240|864241|864242|864243|864244|864245|864246|864247|864248|864249|864250|864251|864252|864253|864254|864255|864256|864257|864258|864259|864260|864261|864262|864263|865173|865174", "text": "SEPN1-Related Disorders" }, { - "baseId": "19535|19535|27486|27487|27489|27489|27491|27492|27493|27493|28014|28027|28028|33328|33329|33330|51262|51263|51264|51265|51266|51267|51268|51269|51270|51271|51272|51273|51274|51275|51279|51279|51280|51281|51282|51283|52148|52182|70540|76849|76889|76904|99153|99451|99452|99457|99460|133708|136739|136769|136823|136922|136930|136942|150176|169559|171233|171241|175460|175617|175631|177297|179672|195121|195251|206725|206725|206767|206786|208586|226127|226138|226974|249759|264017|265285|276423|276424|276425|276466|276470|276474|276477|276484|276490|276495|276498|276499|276500|276651|276653|276662|276663|276664|276666|276667|276677|276678|276685|276693|276703|276704|276710|277182|277187|277213|277218|277230|277231|277232|277237|277266|277269|277271|277275|277276|277276|277291|277293|277297|277318|277319|277329|277330|277333|277344|277366|277375|279423|279424|279425|279717|280964|281106|281108|281109|348771|349774|359257|360414|361049|361050|361051|404619|410591|430975|430975|447137|447221|447294|447811|468667|468669|469680|469791|498039|513661|514095|515083|515208|515220|515222|532933|533050|536983|539091|552032|553353|556489|556651|556651|570770|576535|626844|626845|626846|648034|648055|690510|746246|761219|798466|822748|850727|862275|862276|862277|862278|862279|862280|862281|862282|862283|862284|862285|862287|862288|862289|862291|862293|862294|862295|862296|862298|862299|862300|862302|862304|862305|862306|862308|862309|862310|862311|862312|862313|862314|862315|862316|862317|862318|862319|862320|862321|862322|862323|862324|862325|862326|862327|862328|862329|862330|862331|862332|862333|862334|862335|862336|862337|862338|862339|862340|862341|862342|862343|862344|862345|863829|863830|863831|863832|863833|863834|863835|864981|918561|919231|919232|919518|919519|919520|919521|919522|919523|919854|919855|919856|919857|919858|919859|919860|919861|919862|919863|919864|919865|920406|921645|921646|921647|921648|952072|960406|974509", + "upstreamId": "19535|19535|27486|27487|27489|27489|27491|27492|27493|27493|28014|28027|28028|33328|33329|33330|51262|51263|51264|51265|51266|51267|51268|51269|51270|51271|51272|51273|51274|51275|51279|51279|51280|51281|51282|51283|52148|52182|70540|76849|76889|76904|99153|99451|99452|99457|99460|133708|136739|136769|136823|136922|136930|136942|150176|169559|171233|171241|175460|175617|175631|177297|179672|195121|195251|206725|206725|206767|206786|208586|226127|226138|226974|249759|264017|265285|276423|276424|276425|276466|276470|276474|276477|276484|276490|276495|276498|276499|276500|276651|276653|276662|276663|276664|276666|276667|276677|276678|276685|276693|276703|276704|276710|277182|277187|277213|277218|277230|277231|277232|277237|277266|277269|277271|277275|277276|277276|277291|277293|277297|277318|277319|277329|277330|277333|277344|277366|277375|279423|279424|279425|279717|280964|281106|281108|281109|348771|349774|359257|360414|361049|361050|361051|404619|410591|430975|430975|447137|447221|447294|447811|468667|468669|469680|469791|498039|513661|514095|515083|515208|515220|515222|532933|533050|536983|539091|552032|553353|556489|556651|556651|570770|576535|626844|626845|626846|648034|648055|690510|746246|761219|798466|822748|850727|862275|862276|862277|862278|862279|862280|862281|862282|862283|862284|862285|862287|862288|862289|862291|862293|862294|862295|862296|862298|862299|862300|862302|862304|862305|862306|862308|862309|862310|862311|862312|862313|862314|862315|862316|862317|862318|862319|862320|862321|862322|862323|862324|862325|862326|862327|862328|862329|862330|862331|862332|862333|862334|862335|862336|862337|862338|862339|862340|862341|862342|862343|862344|862345|863829|863830|863831|863832|863833|863834|863835|864981|918561|919231|919232|919518|919519|919520|919521|919522|919523|919854|919855|919856|919857|919858|919859|919860|919861|919862|919863|919864|919865|920406|921645|921646|921647|921648|952072|960406|974509", "text": "Congenital myopathy with fiber type disproportion" }, { - "baseId": "19537|19538|19539|19540|19541|19542|19543|19545|206560|207211|207212|213560|251945|268642|297302|297309|299306|299309|303512|303722|303757|303761|303762|303763|361183|428412|428413|428415|511595|615949|615950|615951|620194|735068|765103|894090|894091|894092|894093|894094|894095|894096|894097|894098|894099|894100|894101|894102|894103|894104|894105|894106|894107|894108|894109|894110|894111|894112|894113|896090", + "upstreamId": "19537|19538|19539|19540|19541|19542|19543|19545|206560|207211|207212|213560|251945|268642|297302|297309|299306|299309|303512|303722|303757|303761|303762|303763|361183|428412|428413|428415|511595|615949|615950|615951|620194|735068|765103|894090|894091|894092|894093|894094|894095|894096|894097|894098|894099|894100|894101|894102|894103|894104|894105|894106|894107|894108|894109|894110|894111|894112|894113|896090", "text": "Oculocutaneous albinism type 4" }, { - "baseId": "19543|19544|207211|816454", + "upstreamId": "19543|19544|207211|816454", "text": "Skin/hair/eye pigmentation, variation in, 5" }, { - "baseId": "19544|22868|23312|27386|27395|27398|27403|27405|27407|27408|27409|27422|27641|27642|27645|27652|28691|28692|28693|28694|28695|28696|28698|28905|28916|28938|28939|28940|28996|29000|29005|29006|29007|29009|29010|29011|29013|29022|30972|30973|31967|31968|32616|32617|32619|32620|32621|32622|32623|32626|32627|32628|44227|48247|48304|48938|48939|48940|49213|49214|53970|53980|53985|54284|54633|70450|80852|83949|85336|87211|87578|87659|87660|88528|100947|133271|133272|133276|139098|150535|150855|151732|166215|166563|171613|171614|172332|174177|176503|179419|180995|185345|185375|185394|206650|213392|213402|213943|216786|232035|233761|236459|236461|236463|236469|236477|236479|242978|242980|245074|263939|359197|362753|362755|362768|362770|362771|362772|362774|362775|362777|362778|362826|362837|362844|362860|362881|362887|362895|362896|362912|362914|362933|362944|362952|363008|363016|363053|363096|363097|363107|363108|363109|363110|363112|363121|363140|363165|363174|363179|363186|363197|363201|363202|363222|363241|363245|363246|363247|363248|363249|363250|363251|363252|363255|363256|363257|363258|363259|363260|363261|363262|363263|363264|363265|363266|363267|363268|363269|363270|363271|363272|363273|363283|363291|363292|363298|363299|363300|363301|363302|363303|363304|363305|363306|363319|363320|363323|363324|363325|363326|363327|363328|363336|363337|363338|363360|363370|363376|363377|363378|363387|363388|363391|363392|363393|363404|363405|363406|363410|363411|363413|363414|363415|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363484|363485|363486|363487|363488|363489|363490|363509|363510|363511|363518|363519|363520|363521|363522|363523|363524|363525|363528|363529|363530|363531|363534|363535|363536|363537|363538|363542|363543|363544|363545|363546|363547|363548|363553|363554|363555|363556|363557|363558|363559|363566|363567|363568", + "upstreamId": "19544|22868|23312|27386|27395|27398|27403|27405|27407|27408|27409|27422|27641|27642|27645|27652|28691|28692|28693|28694|28695|28696|28698|28905|28916|28938|28939|28940|28996|29000|29005|29006|29007|29009|29010|29011|29013|29022|30972|30973|31967|31968|32616|32617|32619|32620|32621|32622|32623|32626|32627|32628|44227|48247|48304|48938|48939|48940|49213|49214|53970|53980|53985|54284|54633|70450|80852|83949|85336|87211|87578|87659|87660|88528|100947|133271|133272|133276|139098|150535|150855|151732|166215|166563|171613|171614|172332|174177|176503|179419|180995|185345|185375|185394|206650|213392|213402|213943|216786|232035|233761|236459|236461|236463|236469|236477|236479|242978|242980|245074|263939|359197|362753|362755|362768|362770|362771|362772|362774|362775|362777|362778|362826|362837|362844|362860|362881|362887|362895|362896|362912|362914|362933|362944|362952|363008|363016|363053|363096|363097|363107|363108|363109|363110|363112|363121|363140|363165|363174|363179|363186|363197|363201|363202|363222|363241|363245|363246|363247|363248|363249|363250|363251|363252|363255|363256|363257|363258|363259|363260|363261|363262|363263|363264|363265|363266|363267|363268|363269|363270|363271|363272|363273|363283|363291|363292|363298|363299|363300|363301|363302|363303|363304|363305|363306|363319|363320|363323|363324|363325|363326|363327|363328|363336|363337|363338|363360|363370|363376|363377|363378|363387|363388|363391|363392|363393|363404|363405|363406|363410|363411|363413|363414|363415|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363484|363485|363486|363487|363488|363489|363490|363509|363510|363511|363518|363519|363520|363521|363522|363523|363524|363525|363528|363529|363530|363531|363534|363535|363536|363537|363538|363542|363543|363544|363545|363546|363547|363548|363553|363554|363555|363556|363557|363558|363559|363566|363567|363568", "text": "Malignant melanoma of skin" }, { - "baseId": "19546|19547|19548|19549|19550|19551|19552|19553|19554|19555|19556|19558|19564|19567|39509|39510|39513|39513|39514|39515|54609|136194|141614|141616|152850|173819|173835|173968|187111|187111|195351|195994|205739|205740|211037|211038|211039|211046|211049|211053|211055|211057|211058|229181|361179|361179|361180|434047|496327|576167|611975|612145|790479|790480|798545|798546|918249|918251|970795", + "upstreamId": "19546|19547|19548|19549|19550|19551|19552|19553|19554|19555|19556|19558|19564|19567|39509|39510|39513|39513|39514|39515|54609|136194|141614|141616|152850|173819|173835|173968|187111|187111|195351|195994|205739|205740|211037|211038|211039|211046|211049|211053|211055|211057|211058|229181|361179|361179|361180|434047|496327|576167|611975|612145|790479|790480|798545|798546|918249|918251|970795", "text": "Diabetes mellitus AND insipidus with optic atrophy AND deafness" }, { - "baseId": "19558|195995|207139|207141|207142|207144|428319", + "upstreamId": "19558|195995|207139|207141|207142|207144|428319", "text": "Wolfram syndrome" }, { - "baseId": "19558|19566|19568|54595|54597|54598|54599|54600|54601|54603|54604|54605|54606|54607|54609|54612|54615|54616|54618|54619|54620|54622|54623|54625|54626|54627|54629|54630|101221|101222|101224|136193|136194|136195|136197|136198|141614|141616|141617|141618|141619|141620|141621|141622|141623|141624|152849|152850|173816|173818|173821|173823|173827|173832|173833|173835|173841|173842|173843|173955|173959|173964|173966|173970|173972|173974|173979|177356|195351|195995|207145|211031|211032|211034|211038|211040|211049|211051|211053|211054|211055|211056|211062|211068|211069|211070|211072|211079|211083|211086|229179|229180|229190|229193|229198|229199|229202|251553|273248|273254|293922|293925|293926|293936|293938|293945|293949|293950|293956|293961|293964|295280|295281|295296|295297|295308|295313|295314|295321|295325|295326|295327|295328|295329|295331|295337|295338|295339|299058|299059|299060|299064|299066|299074|299075|299080|299081|299082|299083|299094|299097|299098|299099|299101|299111|299113|299114|299120|299122|299130|299131|299132|299133|299134|299143|299148|299150|299157|299159|299160|380208|421492|428318|496790|500871|501018|501178|582065|620171|749032|764601|892006|892007|892008|892009|892010|892011|892012|892013|892014|892015|892016|892017|892018|892019|892020|892021|892022|892023|892024|892025|892026|892027|892028|892029|892030|892031|892032|892033|892034|892035|892036|892037|892038|892039|892040|892041|892042|892043|892044|892045|892046|892047|892048|892049|892050", + "upstreamId": "19558|19566|19568|54595|54597|54598|54599|54600|54601|54603|54604|54605|54606|54607|54609|54612|54615|54616|54618|54619|54620|54622|54623|54625|54626|54627|54629|54630|101221|101222|101224|136193|136194|136195|136197|136198|141614|141616|141617|141618|141619|141620|141621|141622|141623|141624|152849|152850|173816|173818|173821|173823|173827|173832|173833|173835|173841|173842|173843|173955|173959|173964|173966|173970|173972|173974|173979|177356|195351|195995|207145|211031|211032|211034|211038|211040|211049|211051|211053|211054|211055|211056|211062|211068|211069|211070|211072|211079|211083|211086|229179|229180|229190|229193|229198|229199|229202|251553|273248|273254|293922|293925|293926|293936|293938|293945|293949|293950|293956|293961|293964|295280|295281|295296|295297|295308|295313|295314|295321|295325|295326|295327|295328|295329|295331|295337|295338|295339|299058|299059|299060|299064|299066|299074|299075|299080|299081|299082|299083|299094|299097|299098|299099|299101|299111|299113|299114|299120|299122|299130|299131|299132|299133|299134|299143|299148|299150|299157|299159|299160|380208|421492|428318|496790|500871|501018|501178|582065|620171|749032|764601|892006|892007|892008|892009|892010|892011|892012|892013|892014|892015|892016|892017|892018|892019|892020|892021|892022|892023|892024|892025|892026|892027|892028|892029|892030|892031|892032|892033|892034|892035|892036|892037|892038|892039|892040|892041|892042|892043|892044|892045|892046|892047|892048|892049|892050", "text": "WFS1-Related Spectrum Disorders" }, { - "baseId": "19559|19560|19561|19562|19563|19565|19566|19568|54595|54597|54598|54600|54601|54603|54604|54605|54606|54607|54609|54612|54615|54616|54618|54619|54620|54622|54623|54625|54626|54627|54629|54630|101221|101222|101224|136193|136194|136195|136197|136198|141614|141614|141616|141617|141618|141619|141620|141621|141623|141624|152849|152850|173816|173818|173819|173821|173823|173826|173827|173832|173833|173835|173835|173841|173842|173843|173955|173959|173964|173966|173968|173970|173972|173974|173979|177356|187111|195351|195351|195994|207145|211031|211032|211034|211038|211038|211039|211046|211049|211051|211053|211053|211054|211055|211055|211058|211062|211068|211070|211072|211079|211083|211086|227272|229179|229180|229181|229193|229198|229199|229202|251553|273248|273254|293922|293925|293926|293936|293938|293945|293949|293950|293961|295280|295281|295296|295297|295308|295313|295314|295321|295325|295326|295327|295328|295329|295331|295338|299058|299059|299060|299064|299066|299074|299075|299080|299081|299082|299094|299097|299098|299099|299101|299111|299113|299114|299120|299122|299131|299132|299133|299134|299148|299150|299157|299159|299160|361179|361179|380208|428318|434047|496327|496790|500871|501018|501178|576167|582065|749032|764601|892006|892007|892008|892009|892010|892011|892012|892013|892014|892015|892016|892017|892018|892019|892020|892021|892022|892023|892024|892025|892026|892027|892028|892029|892030|892031|892032|892033|892034|892035|892036|892037|892038|892039|892040|892041|892042|892043|892044|892045|892046|892047|892048|892049|892050", + "upstreamId": "19559|19560|19561|19562|19563|19565|19566|19568|54595|54597|54598|54600|54601|54603|54604|54605|54606|54607|54609|54612|54615|54616|54618|54619|54620|54622|54623|54625|54626|54627|54629|54630|101221|101222|101224|136193|136194|136195|136197|136198|141614|141614|141616|141617|141618|141619|141620|141621|141623|141624|152849|152850|173816|173818|173819|173821|173823|173826|173827|173832|173833|173835|173835|173841|173842|173843|173955|173959|173964|173966|173968|173970|173972|173974|173979|177356|187111|195351|195351|195994|207145|211031|211032|211034|211038|211038|211039|211046|211049|211051|211053|211053|211054|211055|211055|211058|211062|211068|211070|211072|211079|211083|211086|227272|229179|229180|229181|229193|229198|229199|229202|251553|273248|273254|293922|293925|293926|293936|293938|293945|293949|293950|293961|295280|295281|295296|295297|295308|295313|295314|295321|295325|295326|295327|295328|295329|295331|295338|299058|299059|299060|299064|299066|299074|299075|299080|299081|299082|299094|299097|299098|299099|299101|299111|299113|299114|299120|299122|299131|299132|299133|299134|299148|299150|299157|299159|299160|361179|361179|380208|428318|434047|496327|496790|500871|501018|501178|576167|582065|749032|764601|892006|892007|892008|892009|892010|892011|892012|892013|892014|892015|892016|892017|892018|892019|892020|892021|892022|892023|892024|892025|892026|892027|892028|892029|892030|892031|892032|892033|892034|892035|892036|892037|892038|892039|892040|892041|892042|892043|892044|892045|892046|892047|892048|892049|892050", "text": "Autosomal dominant nonsyndromic deafness 6" }, { - "baseId": "19565|39513|39516|141614|173819|173835|173968|187111|195351|195351|195994|211038|211039|211046|211053|211055|211058|211082|229181|229205|361179|434047|496327|576167|964233", + "upstreamId": "19565|39513|39516|141614|173819|173835|173968|187111|195351|195351|195994|211038|211039|211046|211053|211055|211058|211082|229181|229205|361179|434047|496327|576167|964233", "text": "Wolfram-like syndrome, autosomal dominant" }, { - "baseId": "19565", + "upstreamId": "19565", "text": "DFNA6/14/38 Nonsyndromic Low-Frequency Sensorineural Hearing Loss" }, { - "baseId": "19567", + "upstreamId": "19567", "text": "Diabetes mellitus, noninsulin-dependent, association with" }, { - "baseId": "19569|678975", + "upstreamId": "19569|678975", "text": "Short sleep, familial natural, 1" }, { - "baseId": "19570|19571|19572|19573|19574|19575|19576|19577|19578|19579|19580|19581|19584|19585|133981|133982|153583|165485|222151|244659|244661|244662|244664|254224|254225|314466|314467|314468|314470|314471|321104|321112|321127|321143|321145|321146|327233|327236|327237|327238|328232|328233|328234|328239|328248|359020|359021|359022|359023|359024|359025|359026|411515|429247|503308|504268|540480|540481|540482|540483|564772|565901|612293|612354|620409|868198|868199|868200|868201", + "upstreamId": "19570|19571|19572|19573|19574|19575|19576|19577|19578|19579|19580|19581|19584|19585|133981|133982|153583|165485|222151|244659|244661|244662|244664|254224|254225|314466|314467|314468|314470|314471|321104|321112|321127|321143|321145|321146|327233|327236|327237|327238|328232|328233|328234|328239|328248|359020|359021|359022|359023|359024|359025|359026|411515|429247|503308|504268|540480|540481|540482|540483|564772|565901|612293|612354|620409|868198|868199|868200|868201", "text": "Congenital generalized lipodystrophy type 2" }, { - "baseId": "19574|153583|153584|564772|919375", + "upstreamId": "19574|153583|153584|564772|919375", "text": "Encephalopathy, progressive, with or without lipodystrophy" }, { - "baseId": "19582|19583|19583|564772", + "upstreamId": "19582|19583|19583|564772", "text": "Spastic paraplegia 17" }, { - "baseId": "19582|19583|24244|24245|24246|24247|133981|133982|141142|141142|141143|141144|141145|141146|141147|141147|165485|186076|191530|212578|213574|221697|221699|222151|224877|244499|244659|244662|244664|245262|252786|252786|252788|252790|252795|252795|254224|254225|302780|302781|302785|302795|302796|302798|306103|306109|306110|306131|306135|306149|306154|310897|310901|310902|310903|310904|310905|310906|310908|310909|311055|311072|311080|311081|311082|311085|311086|311087|311089|311090|314466|314467|314468|314470|314471|321104|321112|321127|321143|321145|321146|327233|327236|327237|327238|328232|328233|328234|328239|328248|395627|395634|395871|407124|425751|434618|457340|503308|504268|564772|565901|609035|620409|636133|683004|833570|868198|868199|868200|868201|897972|897973|897974|897975|897976|897977|897978|897979|897980|897981|897982|897983|900352", + "upstreamId": "19582|19583|24244|24245|24246|24247|133981|133982|141142|141142|141143|141144|141145|141146|141147|141147|165485|186076|191530|212578|213574|221697|221699|222151|224877|244499|244659|244662|244664|245262|252786|252786|252788|252790|252795|252795|254224|254225|302780|302781|302785|302795|302796|302798|306103|306109|306110|306131|306135|306149|306154|310897|310901|310902|310903|310904|310905|310906|310908|310909|311055|311072|311080|311081|311082|311085|311086|311087|311089|311090|314466|314467|314468|314470|314471|321104|321112|321127|321143|321145|321146|327233|327236|327237|327238|328232|328233|328234|328239|328248|395627|395634|395871|407124|425751|434618|457340|503308|504268|564772|565901|609035|620409|636133|683004|833570|868198|868199|868200|868201|897972|897973|897974|897975|897976|897977|897978|897979|897980|897981|897982|897983|900352", "text": "Distal hereditary motor neuronopathy type 5" }, { - "baseId": "19582|19583|462063", + "upstreamId": "19582|19583|462063", "text": "NEURONOPATHY, DISTAL HEREDITARY MOTOR, TYPE VC" }, { - "baseId": "19586|19587|19588|19589|19590|19591|19595|19596|19598|19599|19600|102419|102420|190670|227411|270080|272020|274190|335385|335386|335388|335391|345210|345213|345214|345217|349946|349949|349952|350959|350963|350965|350967|404597|413598|422317|424266|424671|431003|438204|470368|471386|495744|533507|533598|534079|534087|534089|549802|571214|571220|571222|571224|571231|571232|572887|573499|575096|575097|575098|575099|575099|578574|648661|648662|648663|648664|648665|648666|648667|648668|648669|653126|653551|654901|705482|728650|742400|757516|773101|786373|791980|791981|791982|798763|798764|801198|801568|848385|848386|848387|886072|886073|886074|886075|886076|886077|886078|886079|886080|886081|886082|886083|886084|886085|886086|887459|929179|929180|929181|929182|929183|938973|938974|938975|961891|983456", + "upstreamId": "19586|19587|19588|19589|19590|19591|19595|19596|19598|19599|19600|102419|102420|190670|227411|270080|272020|274190|335385|335386|335388|335391|345210|345213|345214|345217|349946|349949|349952|350959|350963|350965|350967|404597|413598|422317|424266|424671|431003|438204|470368|471386|495744|533507|533598|534079|534087|534089|549802|571214|571220|571222|571224|571231|571232|572887|573499|575096|575097|575098|575099|575099|578574|648661|648662|648663|648664|648665|648666|648667|648668|648669|653126|653551|654901|705482|728650|742400|757516|773101|786373|791980|791981|791982|798763|798764|801198|801568|848385|848386|848387|886072|886073|886074|886075|886076|886077|886078|886079|886080|886081|886082|886083|886084|886085|886086|887459|929179|929180|929181|929182|929183|938973|938974|938975|961891|983456", "text": "Pigmentary pallidal degeneration" }, { - "baseId": "19587|19592|19593|19594|19595", + "upstreamId": "19587|19592|19593|19594|19595", "text": "Neurodegeneration with brain iron accumulation 1, atypical" }, { - "baseId": "19587|19595|19596|19597|19598|361063|361064|575099|578574", + "upstreamId": "19587|19595|19596|19597|19598|361063|361064|575099|578574", "text": "Hypoprebetalipoproteinemia, acanthocytosis, retinitis pigmentosa, and pallidal degeneration" }, { - "baseId": "19596|20219|27363|27364|27365|27366|27980|27983|33477|40114|40115|45777|133431|195704|197521|205801|238970|238971|240465|240466|241054|241055|241056|241071|241072|241073|241074|241075|241076|241088|241089|243030|243993|253993|253994|254108|254114|254115|254116|260323|280582|280601|280607|280608|281071|282349|282361|282581|282591|282593|282602|282605|283145|283148|283152|283167|283169|283881|283897|283898|283899|285648|285649|286048|286050|286052|287177|290476|307045|309204|313638|313640|313643|313646|313649|313653|314584|314587|319830|319843|325999|326005|326006|326007|326018|326983|326984|326993|353527|353547|353548|354285|357968|360843|360907|360997|361029|361030|361307|361308|361617|362504|374065|375817|393235|396428|396431|396441|396442|396709|396716|396718|396852|396857|396871|397094|397096|397099|397104|398073|398074|398123|398128|398165|398441|398449|398489|398515|398531|398534|398540|398599|402634|402690|403161|437882|437886|437889|438145|441420|444773|451410|458291|458817|459309|459320|460889|460999|461058|461138|461140|461219|461364|461373|461761|461767|461798|461800|461803|468770|468779|476220|489308|500123|512805|518563|518621|518623|523998|525905|526023|526025|526116|526169|526171|526173|526178|526222|526235|526522|526532|526534|532143|532145|532148|532242|535682|545996|546003|546273|546278|546432|546644|546650|551413|558265|558642|560940|560941|561952|562779|562784|563482|563555|565513|565531|565596|565597|565602|565604|565641|565646|567126|567127|567129|567130|567131|568510|570052|570432|570440|570443|570498|590049|610516|613533|613550|630469|630470|630471|630472|630473|630474|630475|630476|630477|637717|637718|637719|637720|637721|637722|637723|637724|637725|637781|637782|639717|639718|639719|639860|639861|639862|639863|639864|639865|639866|639867|639868|639869|639870|639871|639872|639873|639874|639875|639876|639911|639912|639913|639914|639915|639916|639917|639918|639919|639920|639921|647078|647079|647080|647081|652116|652173|652184|652327|652528|679777|679778|684048|684049|684050|684055|684225|684226|684227|684228|684232|684233|684234|684235|684240|684241|684242|684243|684244|684245|684246|684741|685283|685285|685440|687374|687376|687729|687730|687732|687733|687735|687736|687737|687738|687739|687740|687741|687742|687743|687744|687745|687753|688881|692593|692931|692976|692977|692978|692979|695502|695503|701703|701704|701705|701706|724363|724364|724367|730758|730759|737917|737919|768392|775477|775677|783973|783975|787922|800980|800984|801102|801157|801190|801191|801198|801225|801228|801256|801514|819273|820347|826971|826972|826973|826974|835500|835501|835502|835503|835567|835568|835569|837963|838186|838187|838188|838189|838190|838191|838192|838193|838194|838195|838196|838197|838198|838199|838200|838244|838245|838246|846677|846678|922911|925384|925385|926169|926170|926171|926172|926173|931567|934548|934549|934570|935383|935456|935457|943110|943111|943112|946375|955690|956380|956441|956442|956443|956444|956445|956446|958434|959985", + "upstreamId": "19596|20219|27363|27364|27365|27366|27980|27983|33477|40114|40115|45777|133431|195704|197521|205801|238970|238971|240465|240466|241054|241055|241056|241071|241072|241073|241074|241075|241076|241088|241089|243030|243993|253993|253994|254108|254114|254115|254116|260323|280582|280601|280607|280608|281071|282349|282361|282581|282591|282593|282602|282605|283145|283148|283152|283167|283169|283881|283897|283898|283899|285648|285649|286048|286050|286052|287177|290476|307045|309204|313638|313640|313643|313646|313649|313653|314584|314587|319830|319843|325999|326005|326006|326007|326018|326983|326984|326993|353527|353547|353548|354285|357968|360843|360907|360997|361029|361030|361307|361308|361617|362504|374065|375817|393235|396428|396431|396441|396442|396709|396716|396718|396852|396857|396871|397094|397096|397099|397104|398073|398074|398123|398128|398165|398441|398449|398489|398515|398531|398534|398540|398599|402634|402690|403161|437882|437886|437889|438145|441420|444773|451410|458291|458817|459309|459320|460889|460999|461058|461138|461140|461219|461364|461373|461761|461767|461798|461800|461803|468770|468779|476220|489308|500123|512805|518563|518621|518623|523998|525905|526023|526025|526116|526169|526171|526173|526178|526222|526235|526522|526532|526534|532143|532145|532148|532242|535682|545996|546003|546273|546278|546432|546644|546650|551413|558265|558642|560940|560941|561952|562779|562784|563482|563555|565513|565531|565596|565597|565602|565604|565641|565646|567126|567127|567129|567130|567131|568510|570052|570432|570440|570443|570498|590049|610516|613533|613550|630469|630470|630471|630472|630473|630474|630475|630476|630477|637717|637718|637719|637720|637721|637722|637723|637724|637725|637781|637782|639717|639718|639719|639860|639861|639862|639863|639864|639865|639866|639867|639868|639869|639870|639871|639872|639873|639874|639875|639876|639911|639912|639913|639914|639915|639916|639917|639918|639919|639920|639921|647078|647079|647080|647081|652116|652173|652184|652327|652528|679777|679778|684048|684049|684050|684055|684225|684226|684227|684228|684232|684233|684234|684235|684240|684241|684242|684243|684244|684245|684246|684741|685283|685285|685440|687374|687376|687729|687730|687732|687733|687735|687736|687737|687738|687739|687740|687741|687742|687743|687744|687745|687753|688881|692593|692931|692976|692977|692978|692979|695502|695503|701703|701704|701705|701706|724363|724364|724367|730758|730759|737917|737919|768392|775477|775677|783973|783975|787922|800980|800984|801102|801157|801190|801191|801198|801225|801228|801256|801514|819273|820347|826971|826972|826973|826974|835500|835501|835502|835503|835567|835568|835569|837963|838186|838187|838188|838189|838190|838191|838192|838193|838194|838195|838196|838197|838198|838199|838200|838244|838245|838246|846677|846678|922911|925384|925385|926169|926170|926171|926172|926173|931567|934548|934549|934570|935383|935456|935457|943110|943111|943112|946375|955690|956380|956441|956442|956443|956444|956445|956446|958434|959985", "text": "Dystonia" }, { - "baseId": "19601|19602|19603|19604|19605|19606|135767|135768|135769|135770|135771|135772|142825|142826|142827|171852|188047|193689|195428|206943|210786|210788|210789|210790|210794|210795|265738|270144|273120|274651|285141|285142|285144|285146|285147|285155|285157|285160|285162|285163|285169|285179|285184|285185|285194|285777|285787|285788|285789|285806|285808|285811|285824|285826|285829|285867|285870|288113|288115|288116|288117|288120|288122|288129|288138|288140|288142|288147|288148|288156|288157|288493|288511|288516|288535|288536|288537|288538|288540|288564|288565|288568|288573|288576|353888|353889|359347|366468|366469|413895|414875|432352|432353|432354|432355|432356|439310|448581|450398|450542|450544|450761|481464|489915|492804|517754|517755|517756|517852|517857|517859|517939|517940|517946|517948|517953|557894|557896|557898|557951|559133|561003|561005|561007|561014|561024|581749|586383|587427|622868|629507|629508|629509|629510|629511|629512|629513|629514|629515|629516|629517|629518|629519|629520|650918|697372|708086|719684|719686|733243|747390|747392|763027|763029|781229|781230|794101|795186|795187|819134|825811|825812|825813|825814|825815|825816|825817|825818|825819|825820|825821|825822|825823|825824|825825|825826|825827|884057|884058|884059|884060|884061|884062|884063|884064|884065|884066|884067|884068|884069|884070|884071|884072|884073|884074|884075|884076|884077|884078|884079|884080|884081|884082|884083|884084|884085|887306|905869|922598|922599|922600|922601|922602|922603|931167|931168|931169|931170|931171|931172|940701|942633|942634|942635|942636|942637|952963|961836", + "upstreamId": "19601|19602|19603|19604|19605|19606|135767|135768|135769|135770|135771|135772|142825|142826|142827|171852|188047|193689|195428|206943|210786|210788|210789|210790|210794|210795|265738|270144|273120|274651|285141|285142|285144|285146|285147|285155|285157|285160|285162|285163|285169|285179|285184|285185|285194|285777|285787|285788|285789|285806|285808|285811|285824|285826|285829|285867|285870|288113|288115|288116|288117|288120|288122|288129|288138|288140|288142|288147|288148|288156|288157|288493|288511|288516|288535|288536|288537|288538|288540|288564|288565|288568|288573|288576|353888|353889|359347|366468|366469|413895|414875|432352|432353|432354|432355|432356|439310|448581|450398|450542|450544|450761|481464|489915|492804|517754|517755|517756|517852|517857|517859|517939|517940|517946|517948|517953|557894|557896|557898|557951|559133|561003|561005|561007|561014|561024|581749|586383|587427|622868|629507|629508|629509|629510|629511|629512|629513|629514|629515|629516|629517|629518|629519|629520|650918|697372|708086|719684|719686|733243|747390|747392|763027|763029|781229|781230|794101|795186|795187|819134|825811|825812|825813|825814|825815|825816|825817|825818|825819|825820|825821|825822|825823|825824|825825|825826|825827|884057|884058|884059|884060|884061|884062|884063|884064|884065|884066|884067|884068|884069|884070|884071|884072|884073|884074|884075|884076|884077|884078|884079|884080|884081|884082|884083|884084|884085|887306|905869|922598|922599|922600|922601|922602|922603|931167|931168|931169|931170|931171|931172|940701|942633|942634|942635|942636|942637|952963|961836", "text": "Biotin-responsive basal ganglia disease" }, { - "baseId": "19607|19608|19609|19609|19610|19611|19611|19612|19614|19616|19616|19617|19618|19622|19623|39507|44418|44419|44420|102100|106472|191287|194521|205180|205603|205604|213194|214079|255821|255822|255825|255827|255828|268119|268974|269498|269500|325829|325830|325832|325833|325835|325836|325838|325839|325841|325842|325843|335449|335453|335455|335456|335458|335473|335477|341896|341899|341900|341906|341908|341911|341912|341913|341917|341921|341924|343423|343426|343434|343437|343438|343445|343446|343447|343450|358376|358376|487920|547749|547753|547754|547755|547756|547759|547762|547764|547774|547776|547779|547780|547784|547786|547788|547790|547792|547798|547802|547812|547812|548013|548015|548017|548023|548025|548027|548029|548034|548042|548043|548055|548059|548062|548065|548486|548489|548494|548500|548504|548506|548509|548514|621543|622912|644766|684610|684611|688623|688626|693901|693903|693904|770965|785309|791626|844003|844007|844010|844016|844021|844022|875519|875520|875521|875522|875523|875524|875525|875526|875527|875528|875529|875530|876680|876681|906267|906268|957811|972229|972230|972231|972232|972233|972234|972235|972236|972237|972238|979804", + "upstreamId": "19607|19608|19609|19609|19610|19611|19611|19612|19614|19616|19616|19617|19618|19622|19623|39507|44418|44419|44420|102100|106472|191287|194521|205180|205603|205604|213194|214079|255821|255822|255825|255827|255828|268119|268974|269498|269500|325829|325830|325832|325833|325835|325836|325838|325839|325841|325842|325843|335449|335453|335455|335456|335458|335473|335477|341896|341899|341900|341906|341908|341911|341912|341913|341917|341921|341924|343423|343426|343434|343437|343438|343445|343446|343447|343450|358376|358376|487920|547749|547753|547754|547755|547756|547759|547762|547764|547774|547776|547779|547780|547784|547786|547788|547790|547792|547798|547802|547812|547812|548013|548015|548017|548023|548025|548027|548029|548034|548042|548043|548055|548059|548062|548065|548486|548489|548494|548500|548504|548506|548509|548514|621543|622912|644766|684610|684611|688623|688626|693901|693903|693904|770965|785309|791626|844003|844007|844010|844016|844021|844022|875519|875520|875521|875522|875523|875524|875525|875526|875527|875528|875529|875530|876680|876681|906267|906268|957811|972229|972230|972231|972232|972233|972234|972235|972236|972237|972238|979804", "text": "Bardet-Biedl syndrome 2" }, { - "baseId": "19609|19615|19620|19622|20348|20357|20358", + "upstreamId": "19609|19615|19620|19622|20348|20357|20358", "text": "Bardet-biedl syndrome 2/6, digenic" }, { - "baseId": "19609|19611|19616|19616|19617|205603|205604|358376|547812|802209|802210", + "upstreamId": "19609|19611|19616|19616|19617|205603|205604|358376|547812|802209|802210", "text": "Retinitis pigmentosa 74" }, { - "baseId": "19612|19621", + "upstreamId": "19612|19621", "text": "Bardet-biedl syndrome 2/4, digenic" }, { - "baseId": "19613|19616|19619", + "upstreamId": "19613|19616|19619", "text": "Bardet-biedl syndrome 1/2, digenic" }, { - "baseId": "19617", + "upstreamId": "19617", "text": "BBS2-Related Disorders" }, { - "baseId": "19624|19625|19626|19627|19628|19629|142872|142873|142874|142875|142876|142877|142878|142879|142880|142884|142885|142886|142887|142888|170939|170940|170941|170942|170943|170944|170945|170946|170947|170948|170949|170950|170951|170952|192544|194517|210351|210352|210361|210362|210363|210365|210367|210369|210371|210372|210375|210376|210377|210378|210379|210380|210381|210383|210384|210385|210386|210387|210388|243581|243582|243583|243584|259069|259070|259072|259073|259075|259077|259078|259080|259081|335626|335629|335633|335635|335637|335641|335645|335650|335651|335652|335654|335655|335656|335664|335668|335672|335673|335677|335680|335682|345370|345372|345379|345383|345388|345390|345391|345393|345395|345405|345407|345409|345411|350049|350051|350053|350055|350056|350059|350060|350063|350065|351082|351083|351086|351087|351090|351091|351094|351095|351098|377045|377047|378049|378259|378262|379702|379703|379704|403642|403652|403663|403666|404185|404187|404191|404192|410760|410762|469391|469395|469401|470440|470441|470933|471423|485795|510841|510842|533567|533601|533604|533645|534129|571139|571270|571273|572923|573563|573566|575112|575113|615174|648744|648745|648746|648747|648748|648749|648750|648751|648752|648753|653653|684884|684887|689203|728701|773145|821332|848458|848459|848460|848461|848462|848463|886188|886189|886190|886191|886192|886193|886194|886195|886196|886197|886198|886199|886200|886201|886202|886203|886204|886205|886206|886207|886208|886209|886210|886211|886212|886213|886214|886215|886216|886217|886218|886219|886220|886221|929214|929215|929216|938997|938998|951119|958855|975871", + "upstreamId": "19624|19625|19626|19627|19628|19629|142872|142873|142874|142875|142876|142877|142878|142879|142880|142884|142885|142886|142887|142888|170939|170940|170941|170942|170943|170944|170945|170946|170947|170948|170949|170950|170951|170952|192544|194517|210351|210352|210361|210362|210363|210365|210367|210369|210371|210372|210375|210376|210377|210378|210379|210380|210381|210383|210384|210385|210386|210387|210388|243581|243582|243583|243584|259069|259070|259072|259073|259075|259077|259078|259080|259081|335626|335629|335633|335635|335637|335641|335645|335650|335651|335652|335654|335655|335656|335664|335668|335672|335673|335677|335680|335682|345370|345372|345379|345383|345388|345390|345391|345393|345395|345405|345407|345409|345411|350049|350051|350053|350055|350056|350059|350060|350063|350065|351082|351083|351086|351087|351090|351091|351094|351095|351098|377045|377047|378049|378259|378262|379702|379703|379704|403642|403652|403663|403666|404185|404187|404191|404192|410760|410762|469391|469395|469401|470440|470441|470933|471423|485795|510841|510842|533567|533601|533604|533645|534129|571139|571270|571273|572923|573563|573566|575112|575113|615174|648744|648745|648746|648747|648748|648749|648750|648751|648752|648753|653653|684884|684887|689203|728701|773145|821332|848458|848459|848460|848461|848462|848463|886188|886189|886190|886191|886192|886193|886194|886195|886196|886197|886198|886199|886200|886201|886202|886203|886204|886205|886206|886207|886208|886209|886210|886211|886212|886213|886214|886215|886216|886217|886218|886219|886220|886221|929214|929215|929216|938997|938998|951119|958855|975871", "text": "Arterial tortuosity syndrome" }, { - "baseId": "19629|27541|27542|27546|27550|27551|27552|27553|27554|27558|27563|27564|27564|27565|27565|29170|29174|31468|31469|31470|31470|31476|31478|31479|31482|31484|31484|31488|31490|31490|31491|31491|31496|31500|31500|31501|31505|32241|32244|32247|32264|32267|33315|38552|38870|38871|38873|39089|39262|44561|44582|44628|44698|44705|44705|44706|44707|44708|44708|44718|44724|44724|44725|44725|44726|44726|44728|44728|44729|44729|44731|44731|44735|44735|44736|44736|44738|44738|44739|44740|44742|44745|44746|44746|44747|44748|44748|44749|44750|44750|44751|44756|44757|44757|44761|44761|44767|44767|44768|44768|44771|44772|44772|44773|44775|44775|44777|44777|44778|44779|44779|44780|44782|44785|44788|44788|44790|44790|44792|44792|44793|44794|44794|44796|44796|44797|44797|45278|45279|45281|45282|45283|45284|45286|45287|45518|45520|45521|45522|45523|45524|45526|45528|45529|45530|48266|48266|50227|51454|51454|51455|51457|51457|51459|51459|51460|51461|51461|51463|51464|51465|51466|51466|51467|51468|51468|51469|51469|51470|51477|51477|51480|51481|51489|51489|51490|51490|51491|51491|51494|51495|51495|51497|51498|51500|51500|51504|51504|51505|51505|51507|51507|51508|51508|51511|51512|51512|51513|51515|51515|51521|51524|51525|51525|51526|51526|51527|51528|51528|51531|51533|51534|51535|51535|51536|51537|51537|51538|51538|51539|51540|51540|51543|51543|51546|51551|51551|51552|51553|51554|51562|51562|51564|51564|51569|51571|51572|51577|51578|51578|51580|51580|51582|51582|51583|51583|51587|51588|51591|51592|51595|51595|51599|51603|51603|51604|51604|51605|51607|51607|51609|51609|51613|51614|51614|52858|53384|53385|53386|53818|53819|53823|53825|53826|53828|54260|54261|54262|54264|76366|82889|85240|107174|107194|107199|133407|136441|138646|138649|138650|138658|138660|138662|138668|138671|138676|138678|138679|138681|138683|138686|138688|138695|138696|138698|138984|139981|140544|140545|140546|140547|140548|140550|140551|140552|140553|140554|140556|140557|140559|140560|140595|141002|141002|141003|141004|141005|141005|141006|141007|141007|141008|141009|141009|141012|141013|141013|141014|141014|141016|141016|141017|141017|141338|141339|141340|142030|142031|142032|142033|142035|142036|142037|142038|142040|142041|142042|142044|142045|142046|142047|142048|142049|142050|142051|142052|142053|142054|142055|142056|142057|142058|142059|142060|142061|142062|142063|142065|142066|142067|142068|142069|142070|142071|142072|142073|142074|142075|142076|142873|142874|142876|142878|142879|142884|142885|142886|142915|142916|142919|142920|142923|143119|165530|165542|165543|165544|165544|165545|165548|165549|165567|165568|165569|165571|165572|165578|165579|165580|165588|165589|165590|171072|171073|171074|171075|171082|171083|171117|171171|171172|171173|171173|171175|171176|171176|171177|171177|171178|171178|171179|171179|171180|171180|171181|171181|171182|171182|171184|171185|173771|173772|173775|173776|173913|173915|173916|174577|174578|174853|174855|174856|175327|175979|175979|175980|175982|175984|175987|175988|175989|175990|175990|175991|175991|176122|176123|176128|176130|176130|178492|178494|178497|178498|178499|178506|178514|178541|178594|178595|178596|178597|178599|178617|178693|178694|178699|178700|178708|178710|178711|178712|178713|178757|178759|188103|189962|190107|190915|192066|192544|193008|193009|193009|193180|193301|193303|193320|193589|194075|194126|194183|194183|194229|194230|194638|194769|194769|195071|195506|195694|196238|196759|196760|196761|196762|196763|196764|196767|196769|196770|196771|196772|196775|196776|196782|196783|196786|196789|196790|196791|196792|196794|196795|196799|196800|196801|196804|196805|196806|196807|196808|196809|196812|196815|196816|196817|196819|196820|197388|197393|197395|197398|197402|197570|197571|197573|197576|197579|197580|197580|197581|197581|197583|197585|197585|197587|197588|197589|197589|197590|197591|197592|197596|197600|197601|197602|197603|197604|197605|197605|197613|197615|197615|197617|197618|197619|197619|197620|197622|197624|197624|197625|197626|197631|197631|197632|197634|197637|197641|197643|197643|197645|197646|197647|197649|197650|197650|197655|197655|197657|197657|197658|197658|197660|197660|197661|197661|197665|197665|197669|197672|197674|197675|197676|197676|197677|197681|197685|197688|197688|197690|197690|197695|197698|197698|197705|197705|197708|197710|197710|197715|197717|197717|197721|197721|197723|197723|197726|197731|197732|197734|197734|197735|197736|197739|197740|197741|197742|197743|197743|197745|197746|197746|197748|197749|197750|197753|197755|197755|197756|197756|197757|197762|197763|197764|197765|197765|197769|197771|197773|197773|197774|197776|197777|197780|197786|197788|197788|197789|197793|197795|197798|197799|197802|197802|197803|197803|197806|197808|197808|197811|197811|197815|197817|197817|197820|197820|197822|197823|197824|197829|197829|197831|197832|197833|197834|197835|197836|197837|197838|197841|197842|197843|197845|197846|197847|197848|197849|197850|197851|197852|197853|197854|197856|197858|197859|197860|197861|197862|197865|197867|197868|197869|197870|197871|197875|197876|197877|197878|197879|197880|197881|197882|197883|197884|197886|197887|197888|197889|197890|197891|197892|197893|197894|197895|197896|197899|197900|197902|197905|197906|197907|197908|197909|197910|197912|197913|197914|197917|197919|197922|197923|197925|197926|197927|198038|199890|209425|209426|209431|209432|209439|209593|209594|209595|209597|209598|209603|209605|209607|209610|209612|209615|209617|209619|209620|209628|209630|209631|209633|209850|210151|210154|210155|210156|210157|210158|210162|210164|210166|210169|210180|210182|210184|210185|210198|210245|210246|210248|210256|210257|210258|210259|210260|210262|210264|210266|210267|210268|210274|210277|210278|210279|210281|210283|210285|210288|210291|210293|210295|210298|210352|210362|210369|210388|215235|215506|215508|215509|221807|221808|221810|221811|221815|222429|222447|222449|224189|224246|224256|224257|224298|224302|224304|224305|224364|224367|224369|224370|224372|224373|224373|224391|224392|224406|224407|224481|224485|224489|224492|224495|224497|224500|224500|224504|224513|224567|224568|224569|227191|227370|227370|227463|227843|228910|228985|228987|228993|228994|228996|228999|229002|229233|230585|230589|230590|230609|230610|231509|231922|238578|239082|239084|239093|239130|239131|239132|239133|239135|239136|239137|240533|240539|240540|240543|240547|240553|240554|240555|240559|240564|240566|240575|240576|240578|240579|240585|240586|240589|240717|240718|240891|241889|241893|242058|242058|242059|242059|242061|242062|242065|242065|242066|242066|242067|242067|242069|242071|242071|242072|242072|242073|242074|242075|242076|242076|242077|242078|242080|242080|242081|242081|242082|242082|242083|242084|242102|242104|242105|242106|242107|242193|242194|242195|242197|242202|242203|246930|246932|246933|246934|247104|247111|250440|250443|250866|250873|250874|250881|250883|250885|251088|253659|255255|255255|255261|255265|255266|255268|255268|255335|255336|255472|255475|255476|255477|257363|258189|258194|258195|258196|258198|258199|258202|258208|258209|258212|258214|258216|258219|258222|258225|258226|258228|258229|258230|258236|258248|258250|258256|258264|258274|258281|258283|258284|258286|258289|258293|258294|258295|258296|258299|258301|258302|258303|258305|258306|258411|258561|258567|258578|258600|258605|258606|258613|258614|258615|258616|258617|258662|258664|258668|258670|258672|258674|258675|258815|258816|258816|258817|258818|258818|258821|258823|258824|258824|258825|258827|258827|258829|258829|258830|258833|258836|258836|258837|258842|258842|258845|258847|258849|258851|258855|258855|258869|258871|258874|258883|258883|258885|258885|258886|258886|258887|258887|258890|258890|258891|258894|258899|258899|258905|258906|258907|258907|258909|258909|258910|258917|258919|258919|258924|258929|258934|258935|258936|258939|258940|258941|258942|258945|258946|258947|258950|258956|258958|258959|258961|258963|258964|258965|258968|258969|258971|258972|258973|258975|258976|258977|258978|258979|258980|258982|258984|258985|258986|258991|258992|258993|258994|258995|258996|258997|258998|258999|259003|259209|259210|259211|259758|260073|260073|260501|260502|260503|260504|260505|262312|263525|264731|264737|265393|265846|265846|265919|265919|265950|265950|267791|268030|268313|268313|268446|269190|269796|271889|271960|273504|273957|274177|283481|283495|283497|283504|283511|284172|284177|284179|284186|284190|284191|286443|286460|286479|286480|286488|286490|288328|288330|288332|288336|288341|288349|288360|288366|288371|288372|288379|288396|288402|289118|289119|289120|289131|289147|289904|289914|289915|289923|289925|289927|289934|289937|289942|289944|290671|290672|290673|290674|290680|290683|290684|290686|290687|290689|290690|290691|290695|290697|292051|292052|292068|292071|292074|292092|292097|292099|292114|292143|292171|292201|292202|292208|292237|292238|292240|292270|292278|292287|293820|293826|293827|293829|293830|293831|293832|293833|293834|293835|293837|293839|293840|293841|293842|293843|293844|293845|293846|293849|293850|293876|294356|294357|294358|294359|294361|294362|294363|294364|294365|294366|294367|294368|294372|294373|294376|294377|294379|309059|309061|309069|309083|309089|309094|309095|309097|309098|309101|309105|309112|309113|309123|309124|309129|309130|309138|309140|309141|309142|309146|309147|309149|311576|311581|311582|311586|311592|311593|313814|313815|313818|313819|313820|313821|313823|313824|313825|313832|313838|313841|313842|313845|313847|313848|313852|313855|313865|313866|313875|313882|313883|317166|317169|317170|319644|319648|319649|319653|319654|319676|319678|319685|319689|319695|319697|319702|319710|319711|319718|319719|319722|319723|319729|319736|319737|319742|319743|319754|319762|320207|320215|320222|320223|320224|320225|320231|320236|320237|320244|320245|320247|320248|320250|320251|320252|320253|320255|320256|320259|320260|320272|320273|320274|320275|320279|320280|320292|322730|322731|322733|322734|322736|322737|322739|322740|322742|322743|322749|322752|322760|322762|322767|322768|322769|322769|322772|322773|322781|322782|322787|322788|322792|322793|322793|322794|322796|322796|322805|322805|322810|322811|323132|323138|323139|323144|323145|323149|323151|323153|323154|323155|323156|323160|323164|323166|323167|323169|323170|323178|323180|323189|323195|323196|323197|323200|323201|323202|323203|323205|323206|323208|323212|323215|323216|323217|323776|324398|324399|324400|324401|324406|324408|324412|324414|324420|324421|324423|324429|324430|324467|324475|324480|324486|324487|332233|332236|332237|332238|332243|332247|332248|332249|332251|332252|332254|332259|332260|332261|332263|332264|332265|332267|332267|332268|332271|332272|332272|332278|332279|332280|332283|332768|332772|332776|332779|332784|332787|332797|332799|332802|332807|332808|332821|332822|332825|332827|332836|332842|332848|332849|332854|332871|332873|332874|332876|333922|333925|333927|333941|333944|333948|333949|333951|333954|333956|333957|333964|333966|333975|333978|333982|333984|333987|333992|333993|333996|333999|334002|334004|339214|339217|339221|339222|339223|339224|339232|339237|339240|339241|339243|339245|339250|339263|339264|339265|339266|339275|339276|339277|339280|339280|339281|339285|339285|339286|339286|339287|339295|339295|339296|339297|339297|339304|339727|339728|339731|339738|339739|339741|339752|339758|339760|339764|339766|339768|339769|339771|339777|339779|339781|339786|340690|340691|340692|340694|340695|340696|340697|340703|340704|340706|340709|340712|340714|340715|340716|340718|340719|340720|340722|340723|340724|340726|340728|340728|340729|340732|340732|340733|340734|340736|340738|340740|340743|340743|340744|340744|340745|340746|340748|340756|340765|340767|341125|341126|341127|341131|341133|341137|341142|341143|341150|341152|341154|341157|341162|341163|341172|341176|341177|341179|341181|341184|341187|341188|341189|341196|341208|341212|341214|341216|342111|342116|342118|342121|342129|342130|342137|342138|342139|342140|342141|342144|342155|342160|342164|342168|342174|342175|353158|353326|353337|353612|359451|360077|360080|360164|360166|360178|360178|360192|360203|360207|360225|360230|360231|360976|361860|361878|361879|361880|362741|364644|365917|365940|365943|365954|366187|366192|366194|366201|366214|366716|366720|366727|366729|366818|366820|366895|367065|367080|367082|367319|368365|370197|370217|370238|370278|370569|370570|370746|370749|370978|371102|371113|371447|371451|371454|371598|371895|373447|373447|373468|373479|373487|373487|373493|373504|373504|373539|373552|373552|373562|373568|373569|373571|373571|373585|373591|373592|373595|373647|373648|373650|373653|373659|373943|373948|373961|373966|373967|373971|373983|373986|373987|373996|374133|374149|374150|374162|374169|374169|374188|374202|374217|374217|374278|374342|374535|374538|374541|374541|374555|374555|374559|374574|374574|374580|374585|374587|374597|374601|374601|374614|374614|374616|374634|374637|374638|374650|374652|374658|374665|374668|374679|374682|374686|375018|375020|375037|375050|375052|375055|376479|376479|376481|376492|376492|376507|376507|376511|376580|376582|376587|376592|376597|377039|377043|377068|377074|377077|377079|377081|377083|389564|390131|391046|392210|392245|392250|392260|392261|392354|392359|392399|392401|392403|392410|392422|392464|393320|393325|393403|393405|393447|393451|393452|393489|393637|393645|393646|393648|393815|393820|393821|393824|396770|396800|396819|396823|396847|396849|396996|397066|397115|397142|397165|397312|397319|397325|397327|397386|397392|397511|397513|397515|397529|397615|397618|397620|397627|398092|399950|400127|400129|400138|400144|400145|400165|400165|400172|400177|400182|400192|400196|400206|400206|400214|400216|400229|400229|400235|400246|400246|400259|400292|400292|400302|400306|400313|400313|400318|400320|400321|400325|400333|400348|400366|400368|400371|400390|400390|400391|400397|400410|400416|400423|400427|400427|400454|400459|400463|400464|400467|400536|400544|400546|400547|400567|400569|400571|400576|400620|400626|400627|400630|400632|400646|400648|400656|400656|400658|400658|400664|400664|400672|400683|400686|400687|400687|400688|400688|400691|400691|400692|400692|400694|400696|400696|400698|400702|400709|400715|400717|400725|400731|400732|400736|400739|400740|400747|400807|400932|400932|400934|400934|400950|400960|400961|400962|400968|400970|400982|400984|401006|401006|401009|401013|401015|401033|401033|401046|401103|401104|401108|401113|401116|401120|401128|401131|401134|401147|401376|401381|401389|405502|405507|405508|409254|409256|409256|409260|409261|409279|409287|409288|409292|409292|409297|409298|409298|409302|409322|409327|409449|409453|409458|409460|413402|414857|414910|414931|415209|415425|415427|415428|415435|415444|415469|421349|421418|421769|422024|422026|422039|422072|425548|425839|426105|426109|426115|426148|426149|433139|433145|433145|433147|433148|433148|433424|433426|433427|433556|433556|433557|433557|433558|433560|433720|437979|437980|437982|437982|437986|437987|443099|443100|443101|444435|445341|445342|445343|445345|445345|445346|445347|445356|445358|445362|445369|445370|445375|445376|445376|445379|445379|445407|445410|445497|445502|450099|450106|450137|450263|450286|450294|450295|450302|450306|450310|450325|450331|450411|450417|450419|450420|450425|450429|451468|451717|451718|451726|451772|451779|451794|451801|451928|451933|452036|452038|452039|452046|452048|452050|452304|452306|452313|452315|452380|452381|452383|452393|452515|452517|452518|452522|452525|458928|458954|458978|459033|459039|459322|459336|459337|459355|459368|459519|459523|459525|459531|459533|459785|459790|459987|459992|459996|459997|460005|460420|460423|460425|460434|461149|463946|463948|464306|464306|464309|464311|464313|464320|464320|464324|464334|464335|464338|464338|464340|464340|464342|464346|464346|464348|464352|464353|464356|464359|464375|464377|464377|464379|464381|464383|464384|464384|464388|464388|464390|464394|464397|464452|464462|464468|464470|464475|464477|464521|464528|464532|464535|464780|464782|464790|464836|464836|464837|464853|464856|464856|464858|464858|464861|464872|464876|464879|464882|464883|464887|464892|464901|464904|464906|464906|464909|464910|464912|464912|464918|464927|464934|464935|464936|464936|464937|464940|464940|464941|464945|464947|464955|464960|464961|464962|464967|464971|464971|464974|464978|464984|464986|465066|465067|465084|465086|465086|465087|465090|465092|465095|465096|465097|465099|465101|465101|465105|465106|465107|465107|465108|465110|465112|465115|465116|465116|465117|465119|465121|465121|465123|465124|465124|465126|465127|465128|465136|465139|465146|465147|465148|465148|465149|465150|465152|465154|465158|465161|465163|465166|465170|465176|465177|465184|465185|465187|465189|465191|465191|465194|465198|465201|465206|465206|465210|465210|465219|465220|465220|465226|465235|465244|465244|465248|465251|465259|465260|465346|465348|465361|465678|465679|465696|465738|465746|465751|465777|465783|465798|465804|465948|465956|465963|465968|465970|465987|465989|465993|469401|480682|480716|482071|482072|485756|485756|485757|485761|485762|485763|486121|486136|486911|486917|486920|486928|486947|486993|487268|487271|487391|487543|487544|487548|487575|487581|487591|487626|487628|487629|487629|487639|487639|487642|487707|487719|487723|487744|487746|487775|487784|487788|487788|487809|487811|487830|487844|487844|487847|487849|487849|487858|487858|487871|487876|487886|487888|487900|488854|489677|493078|493078|493436|495443|495600|496260|498297|499394|499634|499655|499796|499797|499825|499834|499973|500256|500623|500629|500632|500700|502514|502942|503073|503233|503292|503845|503848|504789|504789|504816|504819|504824|504826|504832|504832|504852|504922|505015|505022|505038|505040|505118|505124|505126|505261|505273|505280|505299|505302|505342|505387|505389|505401|505410|505411|505416|505586|505588|505592|505596|505621|505643|505643|505654|505690|505697|505700|505700|505716|505724|505779|506068|506077|506079|506082|506094|506099|506101|508706|508707|508708|508709|508710|508711|508712|508713|508714|508715|508716|508717|508718|508719|508720|508721|508721|508722|508723|508723|508724|508725|508726|509436|509438|509442|509443|509446|509447|509453|509455|509456|509458|509460|509507|509536|510045|510052|510114|510131|510135|510239|510528|510530|510532|510539|510540|510543|510544|510546|510546|510549|510553|510554|510555|510555|510567|510567|510573|510574|510575|510577|510578|510578|510585|510591|510597|510601|510601|510605|510609|510612|510615|510622|510623|510628|510630|510631|510632|510633|510635|510641|510641|510645|510648|510649|510657|510660|510690|510691|510692|510693|510696|510698|510699|510700|510703|510704|510709|510710|510712|510713|510714|510717|510719|510720|510721|510722|510723|510725|510726|510730|510733|510734|510735|510737|511125|511128|511131|511131|512144|512949|514051|517402|517428|517496|517504|517516|517522|517559|517567|517715|517716|517731|518726|518787|518835|519063|519068|519080|519083|519233|519234|519237|519240|519242|519249|524701|524848|524849|524857|525086|525088|525228|525388|525394|525523|525592|525595|528563|528881|528881|528891|528892|528893|528894|528894|528897|528899|528900|528902|528907|528907|528908|528909|528910|528912|528915|528916|528918|528919|528921|528927|528933|528935|528943|528944|528948|528956|528957|528962|528963|528964|528964|528967|528972|528976|528978|528981|528983|528991|528991|528993|528995|528999|529000|529011|529015|529016|529018|529020|529022|529026|529026|529090|529265|529265|529273|529275|529280|529291|529291|529294|529295|529300|529307|529312|529313|529313|529328|529331|529337|529338|529345|529346|529348|529348|529359|529363|529364|529367|529368|529407|529408|529412|529419|529422|529425|529427|529427|529429|529433|529435|529437|529438|529441|529446|529452|529454|529456|529459|529469|529474|529477|529479|529480|529481|529483|529485|529488|529489|529490|529492|529493|529501|529504|529507|529514|529516|529520|529521|529522|529534|529538|529538|529605|530055|530059|530060|530064|530068|536886|536889|537241|537374|537684|537685|537686|537687|537688|537689|537701|537704|537750|537751|537864|537865|537866|537867|538036|538043|538046|538053|538054|538055|538060|538061|538061|538072|538074|538074|538079|538082|538088|538092|538094|539483|539489|539489|539499|539506|539507|539508|539510|539531|539537|539537|539538|539541|539555|539570|539573|539580|539585|539601|539602|539611|539635|539654|539663|539670|539671|539679|539694|539697|539708|539711|539715|539723|539727|539728|539741|539752|539755|539763|539767|539767|539776|539782|539783|539789|539802|539802|539804|539809|539820|539829|539836|539853|539865|539868|539873|539880|539882|539884|539887|539889|539891|539896|539896|539904|539905|539908|539914|539914|539915|539919|539920|539928|539945|551267|552428|552446|552461|552464|552467|557782|557839|558876|559011|559423|561349|561354|561355|562610|562615|562656|562660|562661|562666|563089|563462|563472|563477|563478|563483|563484|564382|566875|566878|566880|567105|567107|567110|567115|567117|567121|567124|567133|567134|567137|567138|567140|567146|567147|567149|567151|567153|567157|567159|567163|567165|567172|567176|567176|567178|567188|567189|567191|567191|567192|567237|567682|567693|568573|568592|568861|568873|568887|568893|568899|568905|568905|568912|568914|568915|568918|568920|568920|568926|568933|568937|568942|568943|568947|568953|568962|568964|568967|568973|568978|568987|568988|568994|569064|569073|569078|569081|569088|569101|569206|569208|569213|569215|569385|569387|569428|569429|569434|569436|569438|569442|569443|569449|569459|569460|569469|569471|569473|569476|569481|569482|569485|569486|569490|569491|569493|569496|569497|569499|569509|569510|569515|569516|569518|569519|569521|569523|569525|569531|569532|569561|569567|569586|569587|570004|570013|573113|573120|573121|573321|573321|573323|573324|573328|573329|573336|573340|573341|573343|573345|573349|573354|573358|573363|573365|573368|573369|573370|573372|573375|573381|573387|573391|573394|573395|573402|573494|573719|573722|573724|573730|584154|609461|609509|609737|609926|609937|609942|612873|613012|613014|613462|613464|613475|613476|613477|613478|614399|614412|614701|614702|614874|614875|614876|614877|614878|614879|614883|614884|614885|614886|614887|614888|614889|614890|614894|614895|614896|614953|614954|614955|614956|614957|614958|614959|614960|614961|614962|614963|614964|614965|614966|614967|614968|614969|614970|614971|614972|614973|614974|614975|614976|614977|614978|614979|614980|614981|614982|615094|615098|615099|615099|615100|615101|615102|615103|615104|615105|615106|615107|615108|615109|615110|615111|615112|615112|615113|615114|615115|615116|615117|615118|615118|615119|615120|615121|615122|615123|615124|615131|615132|615133|615134|615135|615136|615137|615160|615171|615172|615173|615174|615175|615176|615187|615188|615205|615211|615224|615225|615226|615227|615229|615230|616205|616206|616207|616208|616209|616210|616211|616212|616213|616214|616215|616216|616217|616218|616219|616220|616221|616222|616223|616224|616225|616226|616825|616826|616827|616828|616829|616830|616831|616832|616833|616834|616835|617549|617550|617612|617613|617614|617615|617616|617617|618243|618244|618245|618246|618247|618247|618248|618249|618250|618251|618252|618253|618254|618255|618256|618257|618258|618259|618260|618261|618262|618263|618264|618265|618266|618267|618267|618268|618269|618270|618271|618271|618272|618273|618274|618275|618276|618277|618281|618282|618283|618284|618285|618286|618287|618288|618289|618290|618291|618292|618293|618294|618295|618296|618297|618298|618299|618300|618301|618302|618303|618304|618305|618306|618307|618308|618309|618310|618311|618312|618313|618314|618315|618316|618317|618318|618319|618320|618321|618322|618323|618324|618325|618326|618327|618328|618329|618330|618331|618332|618333|618334|618335|618336|618337|618338|618339|618340|618341|618342|618343|618344|619083|619085|619117|619118|619123|619125|619131|619132|619182|619197|619265|619345|619407|619446|619447|619464|619466|619506|619509|619516|619519|619533|619535|619539|619555|619580|619580|619588|619594|619595|619595|619597|619600|619602|621105|621106|621322|621487|621489|621494|621494|621499|621501|621515|621516|621522|621840|623064|624397|624413|624510|624521|624539|626021|628138|629181|629188|629195|629207|630594|630595|631136|631137|631138|631139|631140|631141|631142|631143|631144|631145|631146|638067|638632|638633|638634|638635|638636|638637|638638|638639|638640|643295|643295|643296|643297|643298|643298|643299|643300|643301|643302|643303|643304|643305|643305|643306|643307|643308|643309|643310|643311|643312|643313|643314|643315|643316|643317|643318|643319|643319|643320|643321|643322|643323|643324|643325|643326|643326|643327|643328|643329|643330|643331|643332|643333|643334|643335|643335|643336|643337|643338|643339|643340|643341|643342|643343|643344|643345|643346|643347|643348|643349|643350|643351|643352|643353|643354|643355|643356|643357|643358|643359|643360|643361|643362|643363|643364|643365|643366|643367|643368|643369|643370|643371|643372|643372|643373|643373|643374|643375|643376|643377|643378|643379|643380|643381|643382|643383|643384|643385|643386|643387|643388|643389|643390|643391|643392|643393|643394|643395|643396|643397|643398|643399|643400|643401|643402|643403|643404|643405|643406|643407|643408|643409|643409|643410|643411|643412|643413|643414|643415|643416|643417|643418|643495|643496|643497|643498|643499|643500|643501|643502|643503|643504|643505|643506|643507|643508|643509|643510|643511|643512|643939|643940|643942|643944|643945|643946|643947|643949|643950|643953|650889|651876|652390|652392|652394|652418|652419|652523|652527|652531|652568|652668|652674|652691|652703|652748|652750|652753|653005|653008|653012|653038|653045|653049|653057|655012|655944|656291|656292|656298|656334|658626|666976|667324|668562|672164|672370|672441|679665|683459|683533|684082|684578|684579|686088|686091|686095|686385|686386|686388|687580|687676|688441|688441|688442|688442|688443|688446|688446|688447|688447|688448|688448|688449|688450|688453|688475|688477|688529|688530|688531|688533|688534|688535|689692|689693|689727|689739|689740|690107|690114|690129|690130|690989|690990|691368|691369|693689|693691|693691|693692|693692|693693|693693|693729|693730|693731|693798|695648|695648|697210|697211|703237|703237|703297|703298|703511|714757|726213|734015|739656|739656|739658|739658|739660|739660|739662|739662|739663|739983|744419|751885|754494|754498|754500|754638|754932|754938|754939|754942|759929|762722|762731|763810|768050|770200|770208|770294|770295|770296|770568|770569|770570|770571|770572|770574|774685|774752|776012|776376|778911|781095|784948|785147|785148|785151|790872|791470|791473|795094|796345|797144|797151|797155|797158|797159|797248|797251|797252|797255|797259|799270|799320|799801|799804|799807|799811|799833|820185|820708|820709|820710|820711|820712|820713|820714|820715|820716|820717|820718|820719|820720|820727|820728|820729|820730|825468|825471|825472|825481|825487|825488|827075|827076|827440|827856|827857|827858|827859|827860|827861|827862|827863|827864|827865|827866|827867|827868|827869|835904|836496|836497|836498|836499|836500|836501|836502|836503|836504|836505|836506|842430|842431|842432|842433|842434|842435|842436|842437|842438|842439|842440|842441|842442|842443|842444|842445|842446|842447|842447|842448|842449|842450|842451|842452|842453|842454|842455|842456|842456|842457|842458|842459|842460|842461|842462|842463|842464|842465|842465|842466|842467|842468|842469|842470|842470|842471|842472|842473|842474|842475|842476|842477|842478|842479|842480|842481|842482|842483|842484|842485|842486|842487|842488|842489|842490|842491|842492|842493|842494|842495|842496|842497|842498|842499|842500|842500|842501|842502|842503|842504|842505|842506|842507|842507|842508|842509|842510|842511|842512|842513|842514|842515|842516|842517|842518|842519|842520|842521|842522|842523|842524|842525|842526|842527|842528|842529|842530|842530|842531|842532|842533|842534|842535|842536|842537|842537|842538|842539|842540|842541|842542|842543|842544|842545|842618|842619|842620|842621|842622|842623|842624|842625|842626|843162|843167|843169|843173|843174|843188|843190|843195|850889|851619|851621|851623|851625|851627|851762|852043|852045|852047|852049|852051|852053|852055|852057|852059|852061|852376|852592|852596|852598|852599|852767|852768|852769|852771|852775|852777|858412|860181|860210|861646|873702|873703|873704|873705|873706|873707|873708|873709|873710|873711|873712|873713|873714|873715|873716|873717|873718|873719|873720|873721|873722|873723|873724|873725|873726|873727|873727|873728|873729|873730|873731|873732|873733|873734|873735|873736|873737|873738|873739|873740|873741|873742|874769|874793|874794|876533|876534|876535|876536|876537|876629|883041|883042|887221|902642|903720|903721|903722|903848|903849|903850|903852|903853|903854|903855|903856|903857|903858|903859|903860|903861|903862|903863|903864|903865|903867|903868|903869|903888|903889|903890|903891|903892|903893|903894|903895|903896|903897|903898|903899|903900|903901|903902|903918|903979|903980|903981|903982|903983|903984|903985|903986|903987|903988|903989|903990|903991|903992|903993|903994|903995|903996|903997|903998|903999|904000|904001|904002|904004|904005|904006|904007|904008|904009|904010|904011|904012|904027|904039|904040|904042|904043|904044|904045|904046|904047|904059|904060|904061|904062|904063|907518|907519|907520|907521|907522|907523|907524|907525|907526|907527|907528|907529|907530|907531|907532|907533|907534|907535|907536|907537|907538|907539|907540|907541|907542|907543|907544|907545|907546|907547|907548|907549|907550|907551|907552|907553|907554|907555|907556|907557|907558|907559|907560|907561|907562|907563|907564|907565|907566|907567|907568|907569|907570|907571|907572|907573|907574|907575|907576|907577|907578|907579|907580|907581|907582|907583|907584|907585|907586|907587|907588|907589|907590|907591|907592|907593|907594|907595|907596|907597|907598|907599|907600|907601|907602|907603|907604|907605|907606|907607|907608|907609|907610|907611|907612|907613|907614|907615|907616|907617|907618|907619|907620|907621|907622|907623|907624|907625|907626|907627|907628|907629|907630|907631|907632|907633|907634|907635|907636|907637|907638|907639|907640|907641|907642|907643|907644|907645|907646|907647|907648|907649|907650|907651|907652|907653|907654|907655|907656|907657|907658|907659|907660|907661|907662|907663|907664|907665|907666|907667|907668|907669|907670|907671|907672|907673|907674|907675|907676|907677|907678|907679|907680|907681|907682|907683|907684|907685|907686|907687|907688|907689|907690|907691|907692|907693|907694|907695|907696|907697|907698|907699|907700|907701|907702|907703|907704|907705|907706|907707|907708|907709|907710|907711|907712|907713|907714|907715|907716|907717|907718|907719|907720|907721|907722|907723|907724|907725|907726|907727|907728|907729|907730|907731|907732|907733|907734|907735|907736|907737|907738|907739|907740|907741|907742|907743|907744|907745|907746|907747|907748|907749|907750|907751|907752|907753|907754|907755|907756|907757|907758|907759|907760|907761|909183|909184|909185|909186|909187|909188|909189|909190|909191|909192|909193|909194|909195|909196|909197|909198|909199|909200|909201|909202|909203|909204|909205|909206|909207|909208|909209|909210|909211|909212|909213|909214|909215|909216|909217|909218|909219|909220|909221|909222|909223|909224|909225|909226|909227|909228|909229|909230|909231|909232|909233|909234|909235|909236|909237|909238|909239|909240|909241|909242|909243|909244|909245|909246|909247|909248|909249|909250|909251|909252|909253|909254|909255|909256|909257|909258|909259|909260|909261|909262|909263|909264|909265|909266|909267|909268|909269|909270|909271|909272|909273|909274|909275|909276|909277|909278|909279|909280|909281|909282|909283|909284|909285|909286|909287|909288|909289|909290|909291|909292|909293|911092|911093|911094|911095|911096|911097|911098|911099|911100|911101|911102|911103|911104|911105|911106|911107|911108|911109|911110|911111|911112|911113|911114|911115|911116|911117|911118|911119|911120|911121|911122|911123|911124|911125|911126|911127|911128|911129|911130|911131|911132|911133|911134|911135|911136|911137|911138|911139|911140|911141|911142|911143|911144|911145|911146|911239|911240|911241|911242|911243|911244|911245|911246|911247|911248|911249|911250|911251|911252|911253|911254|911255|911256|911257|911258|911259|911260|911261|911262|911263|911264|911265|911266|911267|911268|911269|911270|911271|911272|911273|911274|911275|911276|911277|911278|911279|911280|911281|911282|912630|912631|912632|912633|912634|912635|912636|912637|912638|912639|912640|912641|912642|912643|912644|912645|912646|912647|912648|912649|912650|912651|912652|912653|912654|912655|912656|912657|912658|912659|912660|912661|912662|912663|912664|912665|912666|912667|912668|912669|912670|912671|912672|912673|912674|912674|912675|912676|912677|912678|912679|912680|912681|912682|912683|912684|912685|912686|912687|912688|912689|912690|912691|912692|912693|912694|912695|912696|912697|912698|912699|912700|912701|912702|912703|912704|912705|912706|912707|912708|912709|912710|912711|912712|912713|912714|912715|912716|912717|912718|912719|912720|912721|912722|912723|912724|912725|912726|912727|912728|912729|912730|912731|912732|912733|912734|912735|912736|912737|912738|912739|912740|912741|912742|912743|912744|912745|912746|912747|912748|912749|912750|912751|912752|912753|912754|912754|912755|912756|912757|912758|912759|912760|912761|912762|912763|912764|912765|912766|912767|912768|912768|912769|912770|912771|912772|912772|912773|912774|912775|912776|912777|912778|912779|912780|912781|912782|912783|912784|912785|912786|912787|912788|912788|912789|912790|912791|912792|912793|912794|912795|912796|912797|912798|912799|912800|912801|912802|912803|912804|912805|912806|912807|912808|912809|912810|912811|912812|912813|912814|912815|912816|912817|912818|912819|912820|912821|912821|912822|912823|912824|912825|912826|912827|912828|912829|912830|912831|912832|912833|912834|912835|912836|912837|912838|912838|912839|912840|912841|912842|912843|912844|912845|912846|912847|912848|912849|912850|912851|912852|912853|912854|912855|912856|912857|912858|912859|912860|912861|912862|912863|912864|912865|912866|912867|912868|912869|912870|912871|912872|912873|912874|912875|912876|912877|912878|912879|912880|912881|912882|912883|912884|912885|912886|912887|912888|912889|912890|912891|912892|912893|912894|912895|912896|912897|912898|912899|912899|912900|912901|912902|912903|912904|912905|912906|912906|912907|912908|912909|912910|912911|912912|912913|912914|912915|912916|912917|912918|912919|912920|912921|912922|912923|912924|912925|912926|912927|912928|912929|912930|912931|912932|912933|912934|912935|912936|912937|912938|912939|912940|912941|912942|912942|912943|912944|912945|912946|912947|912948|912949|912950|912951|912952|912953|912954|912955|912956|912957|912958|912959|912960|912961|912962|912963|912964|912965|912966|912967|912968|912969|912970|912971|912972|912973|912974|912975|912976|912977|912978|912979|912980|912981|912982|912983|912984|912985|912986|912987|912988|912989|912990|912991|912992|912993|912994|912995|912996|912997|912998|912999|913000|913001|913002|913003|913004|913005|913006|913007|913008|913009|913010|913011|913011|913012|913013|913014|913015|913016|913017|913018|913019|913020|913021|913022|913023|913024|913025|913026|913027|913028|913029|913030|913031|913032|913033|913034|913035|913036|913037|913038|913039|913040|913041|913041|913042|913043|913044|913045|913046|913047|913048|913049|913050|913051|913052|913053|913102|913103|913104|913105|913106|913107|913108|913109|913110|913111|913112|913113|913114|913115|913116|913117|913118|913119|913120|913121|913122|913123|913124|913125|913126|913127|913128|913129|913130|913131|913132|913133|913134|913135|913136|913137|913138|913139|913140|913141|913142|913143|913144|913145|913146|913147|913148|913149|913150|913151|913152|913153|913154|913155|913156|913157|913158|913159|913160|913161|913162|913163|913164|913165|913166|913167|913168|913169|913170|913171|913172|913173|913174|913175|913176|913177|913178|913179|913180|913181|913182|913183|913184|913185|913186|913187|913188|913189|913190|913191|913192|913193|913194|913195|913196|913197|913198|913199|913200|913201|913202|913203|913204|913205|913206|913207|913208|913209|913210|913211|913212|913213|913214|913215|913216|913217|913218|913219|913220|913221|913222|913223|913224|913225|913226|913227|913228|913229|913230|913231|913232|913233|913234|913235|913236|913237|913238|913239|913240|913241|913242|913243|913244|913245|913246|913247|913248|913249|913250|913251|913252|913253|913254|913255|913256|913257|913258|913259|913260|913261|913262|913263|913264|913265|913266|913267|913268|913269|913270|913271|913272|913273|913274|913275|913276|913277|913278|913279|913280|913281|913282|913283|913284|913285|913286|913287|913288|913289|913290|913291|913292|913293|913294|913295|913296|913297|913298|913299|913300|913301|913302|913303|913304|913305|913306|913307|913308|913309|913310|913311|913312|913313|913314|913315|913316|913317|913318|913319|913320|913321|913322|913323|913324|913325|913326|913327|913328|913329|913330|913331|913332|913333|913334|913335|913336|913337|913338|913339|913340|913341|913342|913343|913344|913345|913346|913347|913348|913349|913350|913351|913352|913353|913354|913355|913356|913357|913358|913359|913360|913361|913362|913363|913364|913365|913366|913367|913368|913369|913370|913371|913372|913373|913374|913375|913376|913377|913378|913379|913380|913381|913382|913383|913384|913385|913386|913387|913388|913389|913390|913391|913392|913393|913394|913395|913396|913397|913398|913399|913400|913401|913402|913403|913404|913405|913406|913407|913408|913409|913410|913411|913412|913413|913414|913415|913416|913417|913418|913419|913420|913421|913422|913423|913424|913425|913426|913427|913428|913429|913430|913431|913432|913433|913434|913435|913436|913437|913438|913439|913440|913441|913442|913443|913444|913445|913446|913447|913448|913449|913450|913451|913452|913453|913454|913455|913456|913457|913458|913459|913460|913461|913462|913463|913464|913465|913466|913467|913468|913469|913470|913471|913472|913473|913474|913475|913476|913477|913478|913479|913480|913481|913482|913483|913484|913485|913486|913487|913488|913489|913490|913491|913492|913493|913494|913495|913496|913497|913498|913499|913500|913501|913502|913503|913504|913505|913506|913507|913508|913509|913510|913511|913512|913513|913514|913515|913516|913517|913518|913519|913520|913521|913522|913523|913524|913525|913526|913527|913528|913529|913530|913531|913532|913533|913534|913535|913536|913537|913538|913539|913540|913541|913542|913543|913544|913545|913546|913547|913548|913549|913550|913551|913552|913553|913554|913555|913556|913557|913558|913559|913560|913561|913562|913563|913564|913565|913566|913567|913568|913569|913570|913571|913572|913573|913574|913575|913576|913577|913578|913579|913580|913581|913582|913583|913584|913585|913586|915211|915213|915215|915217|915219|915227|915234|915239|915240|915290|915298|915303|915306|915307|915308|915309|915315|915323|915325|915426|915430|915432|915436|915440|915446|915452|915454|915458|915460|915462|915464|915468|915469|915471|915472|915476|915478|915480|915487|915491|915502|915504|915506|915508|915510|915513|915515|915518|915520|915526|915528|915530|915532|915534|915558|915603|915605|915641|915645|915647|915653|915656|915670|915834|915836|915838|915840|915842|915844|915846|915848|915850|915852|915854|915856|915858|915860|915862|915865|915867|915869|915871|915873|915875|915877|915879|915881|915883|915885|915902|915904|915906|915908|915910|915912|915914|915916|915918|915920|915922|915924|915926|915928|915930|915959|915964|915968|916004|916024|916027|916262|916263|916273|916277|916282|916291|916293|916296|916297|916298|916301|916303|916304|916305|916306|916307|916309|916311|916312|916313|916314|916315|916316|916317|916318|916319|916321|916323|916325|916330|916332|916334|916335|916336|916337|916339|916341|916343|916344|916350|916352|916354|916355|916359|916361|916363|916365|916367|916368|916369|916371|916372|916373|916374|916375|916377|916378|916379|916380|916381|916382|916383|916385|916386|916389|916390|916391|916398|916401|916403|916404|916405|916544|916546|916548|916550|916553|916555|916559|916561|916563|916567|916571|916576|916581|916583|916588|916592|916594|916598|916602|916607|916614|916636|916639|916641|916644|916652|916656|916660|916662|916664|916665|916667|916668|916670|916672|916675|916678|916681|916683|916686|916689|916693|916695|916697|916698|916699|919592|922936|923129|923130|923131|925711|925712|927345|927346|927347|927348|927349|927350|927351|927352|927353|927354|927355|927356|927357|927358|927359|927360|927361|927362|927363|927364|927365|927366|927367|927368|927369|927370|927371|927372|927373|927374|927375|927401|927402|927403|927404|927405|931606|931882|931883|934898|934899|934900|934901|936956|936957|936958|936959|936960|936961|936962|936963|936964|936965|936966|936967|936968|936969|936970|936971|936972|936973|936974|936975|936976|936977|936978|936979|936980|936981|936982|936983|936984|936985|936986|936987|936988|936989|936990|936991|936992|936993|937029|937030|937031|937032|937033|937034|939916|940327|940328|940329|941091|941094|943462|943463|946763|946764|946765|948913|948914|948915|948916|948917|948918|948919|948920|948921|948922|948923|948924|948925|948926|948927|948928|948929|948930|948931|948932|948933|948934|948935|948936|948937|948938|948939|948940|948941|948942|948943|948944|948945|948946|948983|948984|948985|955950|957440|957441|957442|957443|957444|957445|957446|957447|957448|957449|957450|957451|957452|957453|957454|957455|957456|960113|960114|960115|960116|960117|960491|960823|961308|961385", + "upstreamId": "19629|27541|27542|27546|27550|27551|27552|27553|27554|27558|27563|27564|27564|27565|27565|29170|29174|31468|31469|31470|31470|31476|31478|31479|31482|31484|31484|31488|31490|31490|31491|31491|31496|31500|31500|31501|31505|32241|32244|32247|32264|32267|33315|38552|38870|38871|38873|39089|39262|44561|44582|44628|44698|44705|44705|44706|44707|44708|44708|44718|44724|44724|44725|44725|44726|44726|44728|44728|44729|44729|44731|44731|44735|44735|44736|44736|44738|44738|44739|44740|44742|44745|44746|44746|44747|44748|44748|44749|44750|44750|44751|44756|44757|44757|44761|44761|44767|44767|44768|44768|44771|44772|44772|44773|44775|44775|44777|44777|44778|44779|44779|44780|44782|44785|44788|44788|44790|44790|44792|44792|44793|44794|44794|44796|44796|44797|44797|45278|45279|45281|45282|45283|45284|45286|45287|45518|45520|45521|45522|45523|45524|45526|45528|45529|45530|48266|48266|50227|51454|51454|51455|51457|51457|51459|51459|51460|51461|51461|51463|51464|51465|51466|51466|51467|51468|51468|51469|51469|51470|51477|51477|51480|51481|51489|51489|51490|51490|51491|51491|51494|51495|51495|51497|51498|51500|51500|51504|51504|51505|51505|51507|51507|51508|51508|51511|51512|51512|51513|51515|51515|51521|51524|51525|51525|51526|51526|51527|51528|51528|51531|51533|51534|51535|51535|51536|51537|51537|51538|51538|51539|51540|51540|51543|51543|51546|51551|51551|51552|51553|51554|51562|51562|51564|51564|51569|51571|51572|51577|51578|51578|51580|51580|51582|51582|51583|51583|51587|51588|51591|51592|51595|51595|51599|51603|51603|51604|51604|51605|51607|51607|51609|51609|51613|51614|51614|52858|53384|53385|53386|53818|53819|53823|53825|53826|53828|54260|54261|54262|54264|76366|82889|85240|107174|107194|107199|133407|136441|138646|138649|138650|138658|138660|138662|138668|138671|138676|138678|138679|138681|138683|138686|138688|138695|138696|138698|138984|139981|140544|140545|140546|140547|140548|140550|140551|140552|140553|140554|140556|140557|140559|140560|140595|141002|141002|141003|141004|141005|141005|141006|141007|141007|141008|141009|141009|141012|141013|141013|141014|141014|141016|141016|141017|141017|141338|141339|141340|142030|142031|142032|142033|142035|142036|142037|142038|142040|142041|142042|142044|142045|142046|142047|142048|142049|142050|142051|142052|142053|142054|142055|142056|142057|142058|142059|142060|142061|142062|142063|142065|142066|142067|142068|142069|142070|142071|142072|142073|142074|142075|142076|142873|142874|142876|142878|142879|142884|142885|142886|142915|142916|142919|142920|142923|143119|165530|165542|165543|165544|165544|165545|165548|165549|165567|165568|165569|165571|165572|165578|165579|165580|165588|165589|165590|171072|171073|171074|171075|171082|171083|171117|171171|171172|171173|171173|171175|171176|171176|171177|171177|171178|171178|171179|171179|171180|171180|171181|171181|171182|171182|171184|171185|173771|173772|173775|173776|173913|173915|173916|174577|174578|174853|174855|174856|175327|175979|175979|175980|175982|175984|175987|175988|175989|175990|175990|175991|175991|176122|176123|176128|176130|176130|178492|178494|178497|178498|178499|178506|178514|178541|178594|178595|178596|178597|178599|178617|178693|178694|178699|178700|178708|178710|178711|178712|178713|178757|178759|188103|189962|190107|190915|192066|192544|193008|193009|193009|193180|193301|193303|193320|193589|194075|194126|194183|194183|194229|194230|194638|194769|194769|195071|195506|195694|196238|196759|196760|196761|196762|196763|196764|196767|196769|196770|196771|196772|196775|196776|196782|196783|196786|196789|196790|196791|196792|196794|196795|196799|196800|196801|196804|196805|196806|196807|196808|196809|196812|196815|196816|196817|196819|196820|197388|197393|197395|197398|197402|197570|197571|197573|197576|197579|197580|197580|197581|197581|197583|197585|197585|197587|197588|197589|197589|197590|197591|197592|197596|197600|197601|197602|197603|197604|197605|197605|197613|197615|197615|197617|197618|197619|197619|197620|197622|197624|197624|197625|197626|197631|197631|197632|197634|197637|197641|197643|197643|197645|197646|197647|197649|197650|197650|197655|197655|197657|197657|197658|197658|197660|197660|197661|197661|197665|197665|197669|197672|197674|197675|197676|197676|197677|197681|197685|197688|197688|197690|197690|197695|197698|197698|197705|197705|197708|197710|197710|197715|197717|197717|197721|197721|197723|197723|197726|197731|197732|197734|197734|197735|197736|197739|197740|197741|197742|197743|197743|197745|197746|197746|197748|197749|197750|197753|197755|197755|197756|197756|197757|197762|197763|197764|197765|197765|197769|197771|197773|197773|197774|197776|197777|197780|197786|197788|197788|197789|197793|197795|197798|197799|197802|197802|197803|197803|197806|197808|197808|197811|197811|197815|197817|197817|197820|197820|197822|197823|197824|197829|197829|197831|197832|197833|197834|197835|197836|197837|197838|197841|197842|197843|197845|197846|197847|197848|197849|197850|197851|197852|197853|197854|197856|197858|197859|197860|197861|197862|197865|197867|197868|197869|197870|197871|197875|197876|197877|197878|197879|197880|197881|197882|197883|197884|197886|197887|197888|197889|197890|197891|197892|197893|197894|197895|197896|197899|197900|197902|197905|197906|197907|197908|197909|197910|197912|197913|197914|197917|197919|197922|197923|197925|197926|197927|198038|199890|209425|209426|209431|209432|209439|209593|209594|209595|209597|209598|209603|209605|209607|209610|209612|209615|209617|209619|209620|209628|209630|209631|209633|209850|210151|210154|210155|210156|210157|210158|210162|210164|210166|210169|210180|210182|210184|210185|210198|210245|210246|210248|210256|210257|210258|210259|210260|210262|210264|210266|210267|210268|210274|210277|210278|210279|210281|210283|210285|210288|210291|210293|210295|210298|210352|210362|210369|210388|215235|215506|215508|215509|221807|221808|221810|221811|221815|222429|222447|222449|224189|224246|224256|224257|224298|224302|224304|224305|224364|224367|224369|224370|224372|224373|224373|224391|224392|224406|224407|224481|224485|224489|224492|224495|224497|224500|224500|224504|224513|224567|224568|224569|227191|227370|227370|227463|227843|228910|228985|228987|228993|228994|228996|228999|229002|229233|230585|230589|230590|230609|230610|231509|231922|238578|239082|239084|239093|239130|239131|239132|239133|239135|239136|239137|240533|240539|240540|240543|240547|240553|240554|240555|240559|240564|240566|240575|240576|240578|240579|240585|240586|240589|240717|240718|240891|241889|241893|242058|242058|242059|242059|242061|242062|242065|242065|242066|242066|242067|242067|242069|242071|242071|242072|242072|242073|242074|242075|242076|242076|242077|242078|242080|242080|242081|242081|242082|242082|242083|242084|242102|242104|242105|242106|242107|242193|242194|242195|242197|242202|242203|246930|246932|246933|246934|247104|247111|250440|250443|250866|250873|250874|250881|250883|250885|251088|253659|255255|255255|255261|255265|255266|255268|255268|255335|255336|255472|255475|255476|255477|257363|258189|258194|258195|258196|258198|258199|258202|258208|258209|258212|258214|258216|258219|258222|258225|258226|258228|258229|258230|258236|258248|258250|258256|258264|258274|258281|258283|258284|258286|258289|258293|258294|258295|258296|258299|258301|258302|258303|258305|258306|258411|258561|258567|258578|258600|258605|258606|258613|258614|258615|258616|258617|258662|258664|258668|258670|258672|258674|258675|258815|258816|258816|258817|258818|258818|258821|258823|258824|258824|258825|258827|258827|258829|258829|258830|258833|258836|258836|258837|258842|258842|258845|258847|258849|258851|258855|258855|258869|258871|258874|258883|258883|258885|258885|258886|258886|258887|258887|258890|258890|258891|258894|258899|258899|258905|258906|258907|258907|258909|258909|258910|258917|258919|258919|258924|258929|258934|258935|258936|258939|258940|258941|258942|258945|258946|258947|258950|258956|258958|258959|258961|258963|258964|258965|258968|258969|258971|258972|258973|258975|258976|258977|258978|258979|258980|258982|258984|258985|258986|258991|258992|258993|258994|258995|258996|258997|258998|258999|259003|259209|259210|259211|259758|260073|260073|260501|260502|260503|260504|260505|262312|263525|264731|264737|265393|265846|265846|265919|265919|265950|265950|267791|268030|268313|268313|268446|269190|269796|271889|271960|273504|273957|274177|283481|283495|283497|283504|283511|284172|284177|284179|284186|284190|284191|286443|286460|286479|286480|286488|286490|288328|288330|288332|288336|288341|288349|288360|288366|288371|288372|288379|288396|288402|289118|289119|289120|289131|289147|289904|289914|289915|289923|289925|289927|289934|289937|289942|289944|290671|290672|290673|290674|290680|290683|290684|290686|290687|290689|290690|290691|290695|290697|292051|292052|292068|292071|292074|292092|292097|292099|292114|292143|292171|292201|292202|292208|292237|292238|292240|292270|292278|292287|293820|293826|293827|293829|293830|293831|293832|293833|293834|293835|293837|293839|293840|293841|293842|293843|293844|293845|293846|293849|293850|293876|294356|294357|294358|294359|294361|294362|294363|294364|294365|294366|294367|294368|294372|294373|294376|294377|294379|309059|309061|309069|309083|309089|309094|309095|309097|309098|309101|309105|309112|309113|309123|309124|309129|309130|309138|309140|309141|309142|309146|309147|309149|311576|311581|311582|311586|311592|311593|313814|313815|313818|313819|313820|313821|313823|313824|313825|313832|313838|313841|313842|313845|313847|313848|313852|313855|313865|313866|313875|313882|313883|317166|317169|317170|319644|319648|319649|319653|319654|319676|319678|319685|319689|319695|319697|319702|319710|319711|319718|319719|319722|319723|319729|319736|319737|319742|319743|319754|319762|320207|320215|320222|320223|320224|320225|320231|320236|320237|320244|320245|320247|320248|320250|320251|320252|320253|320255|320256|320259|320260|320272|320273|320274|320275|320279|320280|320292|322730|322731|322733|322734|322736|322737|322739|322740|322742|322743|322749|322752|322760|322762|322767|322768|322769|322769|322772|322773|322781|322782|322787|322788|322792|322793|322793|322794|322796|322796|322805|322805|322810|322811|323132|323138|323139|323144|323145|323149|323151|323153|323154|323155|323156|323160|323164|323166|323167|323169|323170|323178|323180|323189|323195|323196|323197|323200|323201|323202|323203|323205|323206|323208|323212|323215|323216|323217|323776|324398|324399|324400|324401|324406|324408|324412|324414|324420|324421|324423|324429|324430|324467|324475|324480|324486|324487|332233|332236|332237|332238|332243|332247|332248|332249|332251|332252|332254|332259|332260|332261|332263|332264|332265|332267|332267|332268|332271|332272|332272|332278|332279|332280|332283|332768|332772|332776|332779|332784|332787|332797|332799|332802|332807|332808|332821|332822|332825|332827|332836|332842|332848|332849|332854|332871|332873|332874|332876|333922|333925|333927|333941|333944|333948|333949|333951|333954|333956|333957|333964|333966|333975|333978|333982|333984|333987|333992|333993|333996|333999|334002|334004|339214|339217|339221|339222|339223|339224|339232|339237|339240|339241|339243|339245|339250|339263|339264|339265|339266|339275|339276|339277|339280|339280|339281|339285|339285|339286|339286|339287|339295|339295|339296|339297|339297|339304|339727|339728|339731|339738|339739|339741|339752|339758|339760|339764|339766|339768|339769|339771|339777|339779|339781|339786|340690|340691|340692|340694|340695|340696|340697|340703|340704|340706|340709|340712|340714|340715|340716|340718|340719|340720|340722|340723|340724|340726|340728|340728|340729|340732|340732|340733|340734|340736|340738|340740|340743|340743|340744|340744|340745|340746|340748|340756|340765|340767|341125|341126|341127|341131|341133|341137|341142|341143|341150|341152|341154|341157|341162|341163|341172|341176|341177|341179|341181|341184|341187|341188|341189|341196|341208|341212|341214|341216|342111|342116|342118|342121|342129|342130|342137|342138|342139|342140|342141|342144|342155|342160|342164|342168|342174|342175|353158|353326|353337|353612|359451|360077|360080|360164|360166|360178|360178|360192|360203|360207|360225|360230|360231|360976|361860|361878|361879|361880|362741|364644|365917|365940|365943|365954|366187|366192|366194|366201|366214|366716|366720|366727|366729|366818|366820|366895|367065|367080|367082|367319|368365|370197|370217|370238|370278|370569|370570|370746|370749|370978|371102|371113|371447|371451|371454|371598|371895|373447|373447|373468|373479|373487|373487|373493|373504|373504|373539|373552|373552|373562|373568|373569|373571|373571|373585|373591|373592|373595|373647|373648|373650|373653|373659|373943|373948|373961|373966|373967|373971|373983|373986|373987|373996|374133|374149|374150|374162|374169|374169|374188|374202|374217|374217|374278|374342|374535|374538|374541|374541|374555|374555|374559|374574|374574|374580|374585|374587|374597|374601|374601|374614|374614|374616|374634|374637|374638|374650|374652|374658|374665|374668|374679|374682|374686|375018|375020|375037|375050|375052|375055|376479|376479|376481|376492|376492|376507|376507|376511|376580|376582|376587|376592|376597|377039|377043|377068|377074|377077|377079|377081|377083|389564|390131|391046|392210|392245|392250|392260|392261|392354|392359|392399|392401|392403|392410|392422|392464|393320|393325|393403|393405|393447|393451|393452|393489|393637|393645|393646|393648|393815|393820|393821|393824|396770|396800|396819|396823|396847|396849|396996|397066|397115|397142|397165|397312|397319|397325|397327|397386|397392|397511|397513|397515|397529|397615|397618|397620|397627|398092|399950|400127|400129|400138|400144|400145|400165|400165|400172|400177|400182|400192|400196|400206|400206|400214|400216|400229|400229|400235|400246|400246|400259|400292|400292|400302|400306|400313|400313|400318|400320|400321|400325|400333|400348|400366|400368|400371|400390|400390|400391|400397|400410|400416|400423|400427|400427|400454|400459|400463|400464|400467|400536|400544|400546|400547|400567|400569|400571|400576|400620|400626|400627|400630|400632|400646|400648|400656|400656|400658|400658|400664|400664|400672|400683|400686|400687|400687|400688|400688|400691|400691|400692|400692|400694|400696|400696|400698|400702|400709|400715|400717|400725|400731|400732|400736|400739|400740|400747|400807|400932|400932|400934|400934|400950|400960|400961|400962|400968|400970|400982|400984|401006|401006|401009|401013|401015|401033|401033|401046|401103|401104|401108|401113|401116|401120|401128|401131|401134|401147|401376|401381|401389|405502|405507|405508|409254|409256|409256|409260|409261|409279|409287|409288|409292|409292|409297|409298|409298|409302|409322|409327|409449|409453|409458|409460|413402|414857|414910|414931|415209|415425|415427|415428|415435|415444|415469|421349|421418|421769|422024|422026|422039|422072|425548|425839|426105|426109|426115|426148|426149|433139|433145|433145|433147|433148|433148|433424|433426|433427|433556|433556|433557|433557|433558|433560|433720|437979|437980|437982|437982|437986|437987|443099|443100|443101|444435|445341|445342|445343|445345|445345|445346|445347|445356|445358|445362|445369|445370|445375|445376|445376|445379|445379|445407|445410|445497|445502|450099|450106|450137|450263|450286|450294|450295|450302|450306|450310|450325|450331|450411|450417|450419|450420|450425|450429|451468|451717|451718|451726|451772|451779|451794|451801|451928|451933|452036|452038|452039|452046|452048|452050|452304|452306|452313|452315|452380|452381|452383|452393|452515|452517|452518|452522|452525|458928|458954|458978|459033|459039|459322|459336|459337|459355|459368|459519|459523|459525|459531|459533|459785|459790|459987|459992|459996|459997|460005|460420|460423|460425|460434|461149|463946|463948|464306|464306|464309|464311|464313|464320|464320|464324|464334|464335|464338|464338|464340|464340|464342|464346|464346|464348|464352|464353|464356|464359|464375|464377|464377|464379|464381|464383|464384|464384|464388|464388|464390|464394|464397|464452|464462|464468|464470|464475|464477|464521|464528|464532|464535|464780|464782|464790|464836|464836|464837|464853|464856|464856|464858|464858|464861|464872|464876|464879|464882|464883|464887|464892|464901|464904|464906|464906|464909|464910|464912|464912|464918|464927|464934|464935|464936|464936|464937|464940|464940|464941|464945|464947|464955|464960|464961|464962|464967|464971|464971|464974|464978|464984|464986|465066|465067|465084|465086|465086|465087|465090|465092|465095|465096|465097|465099|465101|465101|465105|465106|465107|465107|465108|465110|465112|465115|465116|465116|465117|465119|465121|465121|465123|465124|465124|465126|465127|465128|465136|465139|465146|465147|465148|465148|465149|465150|465152|465154|465158|465161|465163|465166|465170|465176|465177|465184|465185|465187|465189|465191|465191|465194|465198|465201|465206|465206|465210|465210|465219|465220|465220|465226|465235|465244|465244|465248|465251|465259|465260|465346|465348|465361|465678|465679|465696|465738|465746|465751|465777|465783|465798|465804|465948|465956|465963|465968|465970|465987|465989|465993|469401|480682|480716|482071|482072|485756|485756|485757|485761|485762|485763|486121|486136|486911|486917|486920|486928|486947|486993|487268|487271|487391|487543|487544|487548|487575|487581|487591|487626|487628|487629|487629|487639|487639|487642|487707|487719|487723|487744|487746|487775|487784|487788|487788|487809|487811|487830|487844|487844|487847|487849|487849|487858|487858|487871|487876|487886|487888|487900|488854|489677|493078|493078|493436|495443|495600|496260|498297|499394|499634|499655|499796|499797|499825|499834|499973|500256|500623|500629|500632|500700|502514|502942|503073|503233|503292|503845|503848|504789|504789|504816|504819|504824|504826|504832|504832|504852|504922|505015|505022|505038|505040|505118|505124|505126|505261|505273|505280|505299|505302|505342|505387|505389|505401|505410|505411|505416|505586|505588|505592|505596|505621|505643|505643|505654|505690|505697|505700|505700|505716|505724|505779|506068|506077|506079|506082|506094|506099|506101|508706|508707|508708|508709|508710|508711|508712|508713|508714|508715|508716|508717|508718|508719|508720|508721|508721|508722|508723|508723|508724|508725|508726|509436|509438|509442|509443|509446|509447|509453|509455|509456|509458|509460|509507|509536|510045|510052|510114|510131|510135|510239|510528|510530|510532|510539|510540|510543|510544|510546|510546|510549|510553|510554|510555|510555|510567|510567|510573|510574|510575|510577|510578|510578|510585|510591|510597|510601|510601|510605|510609|510612|510615|510622|510623|510628|510630|510631|510632|510633|510635|510641|510641|510645|510648|510649|510657|510660|510690|510691|510692|510693|510696|510698|510699|510700|510703|510704|510709|510710|510712|510713|510714|510717|510719|510720|510721|510722|510723|510725|510726|510730|510733|510734|510735|510737|511125|511128|511131|511131|512144|512949|514051|517402|517428|517496|517504|517516|517522|517559|517567|517715|517716|517731|518726|518787|518835|519063|519068|519080|519083|519233|519234|519237|519240|519242|519249|524701|524848|524849|524857|525086|525088|525228|525388|525394|525523|525592|525595|528563|528881|528881|528891|528892|528893|528894|528894|528897|528899|528900|528902|528907|528907|528908|528909|528910|528912|528915|528916|528918|528919|528921|528927|528933|528935|528943|528944|528948|528956|528957|528962|528963|528964|528964|528967|528972|528976|528978|528981|528983|528991|528991|528993|528995|528999|529000|529011|529015|529016|529018|529020|529022|529026|529026|529090|529265|529265|529273|529275|529280|529291|529291|529294|529295|529300|529307|529312|529313|529313|529328|529331|529337|529338|529345|529346|529348|529348|529359|529363|529364|529367|529368|529407|529408|529412|529419|529422|529425|529427|529427|529429|529433|529435|529437|529438|529441|529446|529452|529454|529456|529459|529469|529474|529477|529479|529480|529481|529483|529485|529488|529489|529490|529492|529493|529501|529504|529507|529514|529516|529520|529521|529522|529534|529538|529538|529605|530055|530059|530060|530064|530068|536886|536889|537241|537374|537684|537685|537686|537687|537688|537689|537701|537704|537750|537751|537864|537865|537866|537867|538036|538043|538046|538053|538054|538055|538060|538061|538061|538072|538074|538074|538079|538082|538088|538092|538094|539483|539489|539489|539499|539506|539507|539508|539510|539531|539537|539537|539538|539541|539555|539570|539573|539580|539585|539601|539602|539611|539635|539654|539663|539670|539671|539679|539694|539697|539708|539711|539715|539723|539727|539728|539741|539752|539755|539763|539767|539767|539776|539782|539783|539789|539802|539802|539804|539809|539820|539829|539836|539853|539865|539868|539873|539880|539882|539884|539887|539889|539891|539896|539896|539904|539905|539908|539914|539914|539915|539919|539920|539928|539945|551267|552428|552446|552461|552464|552467|557782|557839|558876|559011|559423|561349|561354|561355|562610|562615|562656|562660|562661|562666|563089|563462|563472|563477|563478|563483|563484|564382|566875|566878|566880|567105|567107|567110|567115|567117|567121|567124|567133|567134|567137|567138|567140|567146|567147|567149|567151|567153|567157|567159|567163|567165|567172|567176|567176|567178|567188|567189|567191|567191|567192|567237|567682|567693|568573|568592|568861|568873|568887|568893|568899|568905|568905|568912|568914|568915|568918|568920|568920|568926|568933|568937|568942|568943|568947|568953|568962|568964|568967|568973|568978|568987|568988|568994|569064|569073|569078|569081|569088|569101|569206|569208|569213|569215|569385|569387|569428|569429|569434|569436|569438|569442|569443|569449|569459|569460|569469|569471|569473|569476|569481|569482|569485|569486|569490|569491|569493|569496|569497|569499|569509|569510|569515|569516|569518|569519|569521|569523|569525|569531|569532|569561|569567|569586|569587|570004|570013|573113|573120|573121|573321|573321|573323|573324|573328|573329|573336|573340|573341|573343|573345|573349|573354|573358|573363|573365|573368|573369|573370|573372|573375|573381|573387|573391|573394|573395|573402|573494|573719|573722|573724|573730|584154|609461|609509|609737|609926|609937|609942|612873|613012|613014|613462|613464|613475|613476|613477|613478|614399|614412|614701|614702|614874|614875|614876|614877|614878|614879|614883|614884|614885|614886|614887|614888|614889|614890|614894|614895|614896|614953|614954|614955|614956|614957|614958|614959|614960|614961|614962|614963|614964|614965|614966|614967|614968|614969|614970|614971|614972|614973|614974|614975|614976|614977|614978|614979|614980|614981|614982|615094|615098|615099|615099|615100|615101|615102|615103|615104|615105|615106|615107|615108|615109|615110|615111|615112|615112|615113|615114|615115|615116|615117|615118|615118|615119|615120|615121|615122|615123|615124|615131|615132|615133|615134|615135|615136|615137|615160|615171|615172|615173|615174|615175|615176|615187|615188|615205|615211|615224|615225|615226|615227|615229|615230|616205|616206|616207|616208|616209|616210|616211|616212|616213|616214|616215|616216|616217|616218|616219|616220|616221|616222|616223|616224|616225|616226|616825|616826|616827|616828|616829|616830|616831|616832|616833|616834|616835|617549|617550|617612|617613|617614|617615|617616|617617|618243|618244|618245|618246|618247|618247|618248|618249|618250|618251|618252|618253|618254|618255|618256|618257|618258|618259|618260|618261|618262|618263|618264|618265|618266|618267|618267|618268|618269|618270|618271|618271|618272|618273|618274|618275|618276|618277|618281|618282|618283|618284|618285|618286|618287|618288|618289|618290|618291|618292|618293|618294|618295|618296|618297|618298|618299|618300|618301|618302|618303|618304|618305|618306|618307|618308|618309|618310|618311|618312|618313|618314|618315|618316|618317|618318|618319|618320|618321|618322|618323|618324|618325|618326|618327|618328|618329|618330|618331|618332|618333|618334|618335|618336|618337|618338|618339|618340|618341|618342|618343|618344|619083|619085|619117|619118|619123|619125|619131|619132|619182|619197|619265|619345|619407|619446|619447|619464|619466|619506|619509|619516|619519|619533|619535|619539|619555|619580|619580|619588|619594|619595|619595|619597|619600|619602|621105|621106|621322|621487|621489|621494|621494|621499|621501|621515|621516|621522|621840|623064|624397|624413|624510|624521|624539|626021|628138|629181|629188|629195|629207|630594|630595|631136|631137|631138|631139|631140|631141|631142|631143|631144|631145|631146|638067|638632|638633|638634|638635|638636|638637|638638|638639|638640|643295|643295|643296|643297|643298|643298|643299|643300|643301|643302|643303|643304|643305|643305|643306|643307|643308|643309|643310|643311|643312|643313|643314|643315|643316|643317|643318|643319|643319|643320|643321|643322|643323|643324|643325|643326|643326|643327|643328|643329|643330|643331|643332|643333|643334|643335|643335|643336|643337|643338|643339|643340|643341|643342|643343|643344|643345|643346|643347|643348|643349|643350|643351|643352|643353|643354|643355|643356|643357|643358|643359|643360|643361|643362|643363|643364|643365|643366|643367|643368|643369|643370|643371|643372|643372|643373|643373|643374|643375|643376|643377|643378|643379|643380|643381|643382|643383|643384|643385|643386|643387|643388|643389|643390|643391|643392|643393|643394|643395|643396|643397|643398|643399|643400|643401|643402|643403|643404|643405|643406|643407|643408|643409|643409|643410|643411|643412|643413|643414|643415|643416|643417|643418|643495|643496|643497|643498|643499|643500|643501|643502|643503|643504|643505|643506|643507|643508|643509|643510|643511|643512|643939|643940|643942|643944|643945|643946|643947|643949|643950|643953|650889|651876|652390|652392|652394|652418|652419|652523|652527|652531|652568|652668|652674|652691|652703|652748|652750|652753|653005|653008|653012|653038|653045|653049|653057|655012|655944|656291|656292|656298|656334|658626|666976|667324|668562|672164|672370|672441|679665|683459|683533|684082|684578|684579|686088|686091|686095|686385|686386|686388|687580|687676|688441|688441|688442|688442|688443|688446|688446|688447|688447|688448|688448|688449|688450|688453|688475|688477|688529|688530|688531|688533|688534|688535|689692|689693|689727|689739|689740|690107|690114|690129|690130|690989|690990|691368|691369|693689|693691|693691|693692|693692|693693|693693|693729|693730|693731|693798|695648|695648|697210|697211|703237|703237|703297|703298|703511|714757|726213|734015|739656|739656|739658|739658|739660|739660|739662|739662|739663|739983|744419|751885|754494|754498|754500|754638|754932|754938|754939|754942|759929|762722|762731|763810|768050|770200|770208|770294|770295|770296|770568|770569|770570|770571|770572|770574|774685|774752|776012|776376|778911|781095|784948|785147|785148|785151|790872|791470|791473|795094|796345|797144|797151|797155|797158|797159|797248|797251|797252|797255|797259|799270|799320|799801|799804|799807|799811|799833|820185|820708|820709|820710|820711|820712|820713|820714|820715|820716|820717|820718|820719|820720|820727|820728|820729|820730|825468|825471|825472|825481|825487|825488|827075|827076|827440|827856|827857|827858|827859|827860|827861|827862|827863|827864|827865|827866|827867|827868|827869|835904|836496|836497|836498|836499|836500|836501|836502|836503|836504|836505|836506|842430|842431|842432|842433|842434|842435|842436|842437|842438|842439|842440|842441|842442|842443|842444|842445|842446|842447|842447|842448|842449|842450|842451|842452|842453|842454|842455|842456|842456|842457|842458|842459|842460|842461|842462|842463|842464|842465|842465|842466|842467|842468|842469|842470|842470|842471|842472|842473|842474|842475|842476|842477|842478|842479|842480|842481|842482|842483|842484|842485|842486|842487|842488|842489|842490|842491|842492|842493|842494|842495|842496|842497|842498|842499|842500|842500|842501|842502|842503|842504|842505|842506|842507|842507|842508|842509|842510|842511|842512|842513|842514|842515|842516|842517|842518|842519|842520|842521|842522|842523|842524|842525|842526|842527|842528|842529|842530|842530|842531|842532|842533|842534|842535|842536|842537|842537|842538|842539|842540|842541|842542|842543|842544|842545|842618|842619|842620|842621|842622|842623|842624|842625|842626|843162|843167|843169|843173|843174|843188|843190|843195|850889|851619|851621|851623|851625|851627|851762|852043|852045|852047|852049|852051|852053|852055|852057|852059|852061|852376|852592|852596|852598|852599|852767|852768|852769|852771|852775|852777|858412|860181|860210|861646|873702|873703|873704|873705|873706|873707|873708|873709|873710|873711|873712|873713|873714|873715|873716|873717|873718|873719|873720|873721|873722|873723|873724|873725|873726|873727|873727|873728|873729|873730|873731|873732|873733|873734|873735|873736|873737|873738|873739|873740|873741|873742|874769|874793|874794|876533|876534|876535|876536|876537|876629|883041|883042|887221|902642|903720|903721|903722|903848|903849|903850|903852|903853|903854|903855|903856|903857|903858|903859|903860|903861|903862|903863|903864|903865|903867|903868|903869|903888|903889|903890|903891|903892|903893|903894|903895|903896|903897|903898|903899|903900|903901|903902|903918|903979|903980|903981|903982|903983|903984|903985|903986|903987|903988|903989|903990|903991|903992|903993|903994|903995|903996|903997|903998|903999|904000|904001|904002|904004|904005|904006|904007|904008|904009|904010|904011|904012|904027|904039|904040|904042|904043|904044|904045|904046|904047|904059|904060|904061|904062|904063|907518|907519|907520|907521|907522|907523|907524|907525|907526|907527|907528|907529|907530|907531|907532|907533|907534|907535|907536|907537|907538|907539|907540|907541|907542|907543|907544|907545|907546|907547|907548|907549|907550|907551|907552|907553|907554|907555|907556|907557|907558|907559|907560|907561|907562|907563|907564|907565|907566|907567|907568|907569|907570|907571|907572|907573|907574|907575|907576|907577|907578|907579|907580|907581|907582|907583|907584|907585|907586|907587|907588|907589|907590|907591|907592|907593|907594|907595|907596|907597|907598|907599|907600|907601|907602|907603|907604|907605|907606|907607|907608|907609|907610|907611|907612|907613|907614|907615|907616|907617|907618|907619|907620|907621|907622|907623|907624|907625|907626|907627|907628|907629|907630|907631|907632|907633|907634|907635|907636|907637|907638|907639|907640|907641|907642|907643|907644|907645|907646|907647|907648|907649|907650|907651|907652|907653|907654|907655|907656|907657|907658|907659|907660|907661|907662|907663|907664|907665|907666|907667|907668|907669|907670|907671|907672|907673|907674|907675|907676|907677|907678|907679|907680|907681|907682|907683|907684|907685|907686|907687|907688|907689|907690|907691|907692|907693|907694|907695|907696|907697|907698|907699|907700|907701|907702|907703|907704|907705|907706|907707|907708|907709|907710|907711|907712|907713|907714|907715|907716|907717|907718|907719|907720|907721|907722|907723|907724|907725|907726|907727|907728|907729|907730|907731|907732|907733|907734|907735|907736|907737|907738|907739|907740|907741|907742|907743|907744|907745|907746|907747|907748|907749|907750|907751|907752|907753|907754|907755|907756|907757|907758|907759|907760|907761|909183|909184|909185|909186|909187|909188|909189|909190|909191|909192|909193|909194|909195|909196|909197|909198|909199|909200|909201|909202|909203|909204|909205|909206|909207|909208|909209|909210|909211|909212|909213|909214|909215|909216|909217|909218|909219|909220|909221|909222|909223|909224|909225|909226|909227|909228|909229|909230|909231|909232|909233|909234|909235|909236|909237|909238|909239|909240|909241|909242|909243|909244|909245|909246|909247|909248|909249|909250|909251|909252|909253|909254|909255|909256|909257|909258|909259|909260|909261|909262|909263|909264|909265|909266|909267|909268|909269|909270|909271|909272|909273|909274|909275|909276|909277|909278|909279|909280|909281|909282|909283|909284|909285|909286|909287|909288|909289|909290|909291|909292|909293|911092|911093|911094|911095|911096|911097|911098|911099|911100|911101|911102|911103|911104|911105|911106|911107|911108|911109|911110|911111|911112|911113|911114|911115|911116|911117|911118|911119|911120|911121|911122|911123|911124|911125|911126|911127|911128|911129|911130|911131|911132|911133|911134|911135|911136|911137|911138|911139|911140|911141|911142|911143|911144|911145|911146|911239|911240|911241|911242|911243|911244|911245|911246|911247|911248|911249|911250|911251|911252|911253|911254|911255|911256|911257|911258|911259|911260|911261|911262|911263|911264|911265|911266|911267|911268|911269|911270|911271|911272|911273|911274|911275|911276|911277|911278|911279|911280|911281|911282|912630|912631|912632|912633|912634|912635|912636|912637|912638|912639|912640|912641|912642|912643|912644|912645|912646|912647|912648|912649|912650|912651|912652|912653|912654|912655|912656|912657|912658|912659|912660|912661|912662|912663|912664|912665|912666|912667|912668|912669|912670|912671|912672|912673|912674|912674|912675|912676|912677|912678|912679|912680|912681|912682|912683|912684|912685|912686|912687|912688|912689|912690|912691|912692|912693|912694|912695|912696|912697|912698|912699|912700|912701|912702|912703|912704|912705|912706|912707|912708|912709|912710|912711|912712|912713|912714|912715|912716|912717|912718|912719|912720|912721|912722|912723|912724|912725|912726|912727|912728|912729|912730|912731|912732|912733|912734|912735|912736|912737|912738|912739|912740|912741|912742|912743|912744|912745|912746|912747|912748|912749|912750|912751|912752|912753|912754|912754|912755|912756|912757|912758|912759|912760|912761|912762|912763|912764|912765|912766|912767|912768|912768|912769|912770|912771|912772|912772|912773|912774|912775|912776|912777|912778|912779|912780|912781|912782|912783|912784|912785|912786|912787|912788|912788|912789|912790|912791|912792|912793|912794|912795|912796|912797|912798|912799|912800|912801|912802|912803|912804|912805|912806|912807|912808|912809|912810|912811|912812|912813|912814|912815|912816|912817|912818|912819|912820|912821|912821|912822|912823|912824|912825|912826|912827|912828|912829|912830|912831|912832|912833|912834|912835|912836|912837|912838|912838|912839|912840|912841|912842|912843|912844|912845|912846|912847|912848|912849|912850|912851|912852|912853|912854|912855|912856|912857|912858|912859|912860|912861|912862|912863|912864|912865|912866|912867|912868|912869|912870|912871|912872|912873|912874|912875|912876|912877|912878|912879|912880|912881|912882|912883|912884|912885|912886|912887|912888|912889|912890|912891|912892|912893|912894|912895|912896|912897|912898|912899|912899|912900|912901|912902|912903|912904|912905|912906|912906|912907|912908|912909|912910|912911|912912|912913|912914|912915|912916|912917|912918|912919|912920|912921|912922|912923|912924|912925|912926|912927|912928|912929|912930|912931|912932|912933|912934|912935|912936|912937|912938|912939|912940|912941|912942|912942|912943|912944|912945|912946|912947|912948|912949|912950|912951|912952|912953|912954|912955|912956|912957|912958|912959|912960|912961|912962|912963|912964|912965|912966|912967|912968|912969|912970|912971|912972|912973|912974|912975|912976|912977|912978|912979|912980|912981|912982|912983|912984|912985|912986|912987|912988|912989|912990|912991|912992|912993|912994|912995|912996|912997|912998|912999|913000|913001|913002|913003|913004|913005|913006|913007|913008|913009|913010|913011|913011|913012|913013|913014|913015|913016|913017|913018|913019|913020|913021|913022|913023|913024|913025|913026|913027|913028|913029|913030|913031|913032|913033|913034|913035|913036|913037|913038|913039|913040|913041|913041|913042|913043|913044|913045|913046|913047|913048|913049|913050|913051|913052|913053|913102|913103|913104|913105|913106|913107|913108|913109|913110|913111|913112|913113|913114|913115|913116|913117|913118|913119|913120|913121|913122|913123|913124|913125|913126|913127|913128|913129|913130|913131|913132|913133|913134|913135|913136|913137|913138|913139|913140|913141|913142|913143|913144|913145|913146|913147|913148|913149|913150|913151|913152|913153|913154|913155|913156|913157|913158|913159|913160|913161|913162|913163|913164|913165|913166|913167|913168|913169|913170|913171|913172|913173|913174|913175|913176|913177|913178|913179|913180|913181|913182|913183|913184|913185|913186|913187|913188|913189|913190|913191|913192|913193|913194|913195|913196|913197|913198|913199|913200|913201|913202|913203|913204|913205|913206|913207|913208|913209|913210|913211|913212|913213|913214|913215|913216|913217|913218|913219|913220|913221|913222|913223|913224|913225|913226|913227|913228|913229|913230|913231|913232|913233|913234|913235|913236|913237|913238|913239|913240|913241|913242|913243|913244|913245|913246|913247|913248|913249|913250|913251|913252|913253|913254|913255|913256|913257|913258|913259|913260|913261|913262|913263|913264|913265|913266|913267|913268|913269|913270|913271|913272|913273|913274|913275|913276|913277|913278|913279|913280|913281|913282|913283|913284|913285|913286|913287|913288|913289|913290|913291|913292|913293|913294|913295|913296|913297|913298|913299|913300|913301|913302|913303|913304|913305|913306|913307|913308|913309|913310|913311|913312|913313|913314|913315|913316|913317|913318|913319|913320|913321|913322|913323|913324|913325|913326|913327|913328|913329|913330|913331|913332|913333|913334|913335|913336|913337|913338|913339|913340|913341|913342|913343|913344|913345|913346|913347|913348|913349|913350|913351|913352|913353|913354|913355|913356|913357|913358|913359|913360|913361|913362|913363|913364|913365|913366|913367|913368|913369|913370|913371|913372|913373|913374|913375|913376|913377|913378|913379|913380|913381|913382|913383|913384|913385|913386|913387|913388|913389|913390|913391|913392|913393|913394|913395|913396|913397|913398|913399|913400|913401|913402|913403|913404|913405|913406|913407|913408|913409|913410|913411|913412|913413|913414|913415|913416|913417|913418|913419|913420|913421|913422|913423|913424|913425|913426|913427|913428|913429|913430|913431|913432|913433|913434|913435|913436|913437|913438|913439|913440|913441|913442|913443|913444|913445|913446|913447|913448|913449|913450|913451|913452|913453|913454|913455|913456|913457|913458|913459|913460|913461|913462|913463|913464|913465|913466|913467|913468|913469|913470|913471|913472|913473|913474|913475|913476|913477|913478|913479|913480|913481|913482|913483|913484|913485|913486|913487|913488|913489|913490|913491|913492|913493|913494|913495|913496|913497|913498|913499|913500|913501|913502|913503|913504|913505|913506|913507|913508|913509|913510|913511|913512|913513|913514|913515|913516|913517|913518|913519|913520|913521|913522|913523|913524|913525|913526|913527|913528|913529|913530|913531|913532|913533|913534|913535|913536|913537|913538|913539|913540|913541|913542|913543|913544|913545|913546|913547|913548|913549|913550|913551|913552|913553|913554|913555|913556|913557|913558|913559|913560|913561|913562|913563|913564|913565|913566|913567|913568|913569|913570|913571|913572|913573|913574|913575|913576|913577|913578|913579|913580|913581|913582|913583|913584|913585|913586|915211|915213|915215|915217|915219|915227|915234|915239|915240|915290|915298|915303|915306|915307|915308|915309|915315|915323|915325|915426|915430|915432|915436|915440|915446|915452|915454|915458|915460|915462|915464|915468|915469|915471|915472|915476|915478|915480|915487|915491|915502|915504|915506|915508|915510|915513|915515|915518|915520|915526|915528|915530|915532|915534|915558|915603|915605|915641|915645|915647|915653|915656|915670|915834|915836|915838|915840|915842|915844|915846|915848|915850|915852|915854|915856|915858|915860|915862|915865|915867|915869|915871|915873|915875|915877|915879|915881|915883|915885|915902|915904|915906|915908|915910|915912|915914|915916|915918|915920|915922|915924|915926|915928|915930|915959|915964|915968|916004|916024|916027|916262|916263|916273|916277|916282|916291|916293|916296|916297|916298|916301|916303|916304|916305|916306|916307|916309|916311|916312|916313|916314|916315|916316|916317|916318|916319|916321|916323|916325|916330|916332|916334|916335|916336|916337|916339|916341|916343|916344|916350|916352|916354|916355|916359|916361|916363|916365|916367|916368|916369|916371|916372|916373|916374|916375|916377|916378|916379|916380|916381|916382|916383|916385|916386|916389|916390|916391|916398|916401|916403|916404|916405|916544|916546|916548|916550|916553|916555|916559|916561|916563|916567|916571|916576|916581|916583|916588|916592|916594|916598|916602|916607|916614|916636|916639|916641|916644|916652|916656|916660|916662|916664|916665|916667|916668|916670|916672|916675|916678|916681|916683|916686|916689|916693|916695|916697|916698|916699|919592|922936|923129|923130|923131|925711|925712|927345|927346|927347|927348|927349|927350|927351|927352|927353|927354|927355|927356|927357|927358|927359|927360|927361|927362|927363|927364|927365|927366|927367|927368|927369|927370|927371|927372|927373|927374|927375|927401|927402|927403|927404|927405|931606|931882|931883|934898|934899|934900|934901|936956|936957|936958|936959|936960|936961|936962|936963|936964|936965|936966|936967|936968|936969|936970|936971|936972|936973|936974|936975|936976|936977|936978|936979|936980|936981|936982|936983|936984|936985|936986|936987|936988|936989|936990|936991|936992|936993|937029|937030|937031|937032|937033|937034|939916|940327|940328|940329|941091|941094|943462|943463|946763|946764|946765|948913|948914|948915|948916|948917|948918|948919|948920|948921|948922|948923|948924|948925|948926|948927|948928|948929|948930|948931|948932|948933|948934|948935|948936|948937|948938|948939|948940|948941|948942|948943|948944|948945|948946|948983|948984|948985|955950|957440|957441|957442|957443|957444|957445|957446|957447|957448|957449|957450|957451|957452|957453|957454|957455|957456|960113|960114|960115|960116|960117|960491|960823|961308|961385", "text": "Familial thoracic aortic aneurysm and aortic dissection" }, { - "baseId": "19630|19631|33465|81386|207422|264297|300838|300840|300841|303736|303739|303741|303771|303777|303779|308341|308347|308352|308452|522477|563677|625870|686905|699636|735716|896668|896669|896670|896671|896672|896673|896674|896675|896676|896677|896678|896679|896680|896681|896682|896683|896684|896685|896686|896687|896688|896689|896690|896691|896692|896693|896695|896696|896697|896698|896699|896700|896701|896702|896703|896704|896705|900250|900251|978244|978245", + "upstreamId": "19630|19631|33465|81386|207422|264297|300838|300840|300841|303736|303739|303741|303771|303777|303779|308341|308347|308352|308452|522477|563677|625870|686905|699636|735716|896668|896669|896670|896671|896672|896673|896674|896675|896676|896677|896678|896679|896680|896681|896682|896683|896684|896685|896686|896687|896688|896689|896690|896691|896692|896693|896695|896696|896697|896698|896699|896700|896701|896702|896703|896704|896705|900250|900251|978244|978245", "text": "Carpenter syndrome 1" }, { - "baseId": "19630|207422|264297|300834|300842|303735|303740|303742|303774|308425|308427|308428|308444|308452|404641|456662|635117|686905|699636|722088|750129|750130|782593|819703|832154|933391|945106|945107", + "upstreamId": "19630|207422|264297|300834|300842|303735|303740|303742|303774|308425|308427|308428|308444|308452|404641|456662|635117|686905|699636|722088|750129|750130|782593|819703|832154|933391|945106|945107", "text": "Carpenter syndrome" }, { - "baseId": "19632|19633|19634", + "upstreamId": "19632|19633|19634", "text": "Uric acid concentration, serum, quantitative trait locus 2" }, { - "baseId": "19635|19636|19637|214056|214057|214058|214059|214060|293206|294736|294737|294739|294741|294742|294754|296309|296317|296324|296326|296334|296343|296344|296345|296415|296416|296417|296423|296426|296510|296520|296530|296531|300062|300063|300066|300067|300070|300072|300084|300090|300091|300096|300103|300105|300131|300132|300143|300158|300159|300168|300170|300226|620177|734341|818237|818238|889815|889816|889817|892580|892581|892582|892583|892584|892585|892586|892587|892588|892589|892590|892591|892592", + "upstreamId": "19635|19636|19637|214056|214057|214058|214059|214060|293206|294736|294737|294739|294741|294742|294754|296309|296317|296324|296326|296334|296343|296344|296345|296415|296416|296417|296423|296426|296510|296520|296530|296531|300062|300063|300066|300067|300070|300072|300084|300090|300091|300096|300103|300105|300131|300132|300143|300158|300159|300168|300170|300226|620177|734341|818237|818238|889815|889816|889817|892580|892581|892582|892583|892584|892585|892586|892587|892588|892589|892590|892591|892592", "text": "Renal hypouricemia 2" }, { - "baseId": "19638|19639|19640|19641|19642|19643|19644|19645|19646|88096|304460|304464|308209|313232|313325|493544|899018|899019|899020|899021|899022|899023|899024|899025", + "upstreamId": "19638|19639|19640|19641|19642|19643|19644|19645|19646|88096|304460|304464|308209|313232|313325|493544|899018|899019|899020|899021|899022|899023|899024|899025", "text": "Acroerythrokeratoderma" }, { - "baseId": "19647|19648|19649|19650|19651|19652|19653|33862|173758|173759|173898|173899|173900|229025|229026|229027|229028|289077|289089|289092|289095|289839|289840|289843|289844|289845|289846|289850|289867|289880|292902|292906|292912|292922|292929|292932|292933|292951|292952|292959|292963|292965|293171|293177|293182|293203|293207|293208|293211|293218|293231|293232|293233|293236|538973|543092|630987|653857|733868|733869|748071|763689|763690|763691|763693|763694|763696|781579|888161|888162|888163|888164|888165|888166|888167|888168|888169|888170|888171|888172|888173|888174|888175|888176|888177|888178|888179|888180|888181|888182|888183|888184|888185|888186|888187|888188|888189|888190|888191|891589|891590|918807", + "upstreamId": "19647|19648|19649|19650|19651|19652|19653|33862|173758|173759|173898|173899|173900|229025|229026|229027|229028|289077|289089|289092|289095|289839|289840|289843|289844|289845|289846|289850|289867|289880|292902|292906|292912|292922|292929|292932|292933|292951|292952|292959|292963|292965|293171|293177|293182|293203|293207|293208|293211|293218|293231|293232|293233|293236|538973|543092|630987|653857|733868|733869|748071|763689|763690|763691|763693|763694|763696|781579|888161|888162|888163|888164|888165|888166|888167|888168|888169|888170|888171|888172|888173|888174|888175|888176|888177|888178|888179|888180|888181|888182|888183|888184|888185|888186|888187|888188|888189|888190|888191|891589|891590|918807", "text": "Hermansky-Pudlak syndrome 3" }, { - "baseId": "19648|19652|20316|20317|20318|20319|33943|33946|33949|33951|33955|33960|39369|134289|134290|173758|173759|173898|173899|173900|174288|174289|174290|174425|174426|174427|174428|175054|175055|175056|175333|176247|176248|176249|176369|176370|176371|177772|191863|193123|205193|207283|207284|207808|207809|207810|208784|229025|229026|229027|229028|229310|231134|231135|231138|257587|264420|273299|273562|289084|289085|289087|289088|289095|289838|289843|289848|289868|289881|292906|292913|292919|292933|292937|292941|292942|292947|292949|292950|293170|293178|293180|293203|293205|293207|293208|293224|293225|293227|293229|293230|299529|299545|299547|300330|300343|300357|302067|304677|304915|304939|304940|306501|311908|311909|311911|317492|317536|317542|319582|319669|322690|322693|323554|324238|324239|324248|324259|324267|325755|325773|326797|333781|337661|337677|337681|337688|337700|339132|347224|347226|347233|347234|347236|347239|347260|347269|351231|351236|351242|351245|351251|351261|352274|352277|352279|352280|352289|352299|352302|352303|352306|352307|352308|352322|353495|353737|424687|493975|586793|615329|615330|615331|615332|615333|615412|615424|615426|615427|615429|615430|615431|615440|615441|615442|615443|615608|615726|615727|630988|678000|678001|678002|678024|701509|708640|724141|724142|730719|733868|733869|737676|737677|748070|748072|763683|763688|763690|763691|763694|763695|763696|763697|768100|781582|781583|781584|783803|783804|801534|858793|866710|866714|888176|935264|947171|977798|977799|977800|977801|977802|977803|977804|977805|977806|977807|977808|978821|978822|978823|978824|978825|978826|978827|978828|978829|978830|978831|978832|978833|978834|978835|978836|978837|978838|978839|978840|978841|978842|978843|978844|978845|978846", + "upstreamId": "19648|19652|20316|20317|20318|20319|33943|33946|33949|33951|33955|33960|39369|134289|134290|173758|173759|173898|173899|173900|174288|174289|174290|174425|174426|174427|174428|175054|175055|175056|175333|176247|176248|176249|176369|176370|176371|177772|191863|193123|205193|207283|207284|207808|207809|207810|208784|229025|229026|229027|229028|229310|231134|231135|231138|257587|264420|273299|273562|289084|289085|289087|289088|289095|289838|289843|289848|289868|289881|292906|292913|292919|292933|292937|292941|292942|292947|292949|292950|293170|293178|293180|293203|293205|293207|293208|293224|293225|293227|293229|293230|299529|299545|299547|300330|300343|300357|302067|304677|304915|304939|304940|306501|311908|311909|311911|317492|317536|317542|319582|319669|322690|322693|323554|324238|324239|324248|324259|324267|325755|325773|326797|333781|337661|337677|337681|337688|337700|339132|347224|347226|347233|347234|347236|347239|347260|347269|351231|351236|351242|351245|351251|351261|352274|352277|352279|352280|352289|352299|352302|352303|352306|352307|352308|352322|353495|353737|424687|493975|586793|615329|615330|615331|615332|615333|615412|615424|615426|615427|615429|615430|615431|615440|615441|615442|615443|615608|615726|615727|630988|678000|678001|678002|678024|701509|708640|724141|724142|730719|733868|733869|737676|737677|748070|748072|763683|763688|763690|763691|763694|763695|763696|763697|768100|781582|781583|781584|783803|783804|801534|858793|866710|866714|888176|935264|947171|977798|977799|977800|977801|977802|977803|977804|977805|977806|977807|977808|978821|978822|978823|978824|978825|978826|978827|978828|978829|978830|978831|978832|978833|978834|978835|978836|978837|978838|978839|978840|978841|978842|978843|978844|978845|978846", "text": "Hermansky-Pudlak syndrome" }, { - "baseId": "19654|682341", + "upstreamId": "19654|682341", "text": "Lethal congenital contractural syndrome 3" }, { - "baseId": "19655|19656|19657|19658|19659|19660|19661|19663|19664|19667|19668|140290|140291|140292|140293|140296|140297|171767|211434|211440|211441|211443|264446|265652|309183|309185|309197|309208|309210|309213|309215|309219|309222|309226|309227|313903|313906|313908|313916|319783|319784|319785|319786|319787|319794|319796|319797|319807|319812|319819|319821|319822|320320|320327|320331|320332|320334|371494|415211|502732|620340|865239|865240|865241|865242|865243|865244|865245|865246|865247|865248|865249|865250|865251|865252|865253|865254|865255|865256|865257|865258|964338|970014", + "upstreamId": "19655|19656|19657|19658|19659|19660|19661|19663|19664|19667|19668|140290|140291|140292|140293|140296|140297|171767|211434|211440|211441|211443|264446|265652|309183|309185|309197|309208|309210|309213|309215|309219|309222|309226|309227|313903|313906|313908|313916|319783|319784|319785|319786|319787|319794|319796|319797|319807|319812|319819|319821|319822|320320|320327|320331|320332|320334|371494|415211|502732|620340|865239|865240|865241|865242|865243|865244|865245|865246|865247|865248|865249|865250|865251|865252|865253|865254|865255|865256|865257|865258|964338|970014", "text": "Autosomal dominant progressive external ophthalmoplegia with mitochondrial DNA deletions 3" }, { - "baseId": "19657|19661|19662|20121|20130|24618|24628|24656|24657|24680|24681|24686|24741|28534|28535|28544|28546|28552|34161|34162|34163|34164|34165|34166|34167|34168|34169|34170|34171|34172|39389|39417|39418|48174|48364|76573|136325|152761|165641|171703|186292|208318|211189|211701|226044|226045|226873|227162|227163|227164|227165|227166|227167|237763|237764|247444|247445|354304|414701|414702|414704|414705|414706|414707|414708|414709|414710|424202|424203|424204|424205|424206|424207|424208|424209|424210|424211|424212|424213|424215|424216|424217|424218|434403|434404|439690|439691|480531|480532|480533|480534|482269|513402|513404|540434|540435|550875|550876|677581|677722|677810|679356|679357|679358|679359|679360|679361|681059|789102|789103|801542|801543|858735|858758", + "upstreamId": "19657|19661|19662|20121|20130|24618|24628|24656|24657|24680|24681|24686|24741|28534|28535|28544|28546|28552|34161|34162|34163|34164|34165|34166|34167|34168|34169|34170|34171|34172|39389|39417|39418|48174|48364|76573|136325|152761|165641|171703|186292|208318|211189|211701|226044|226045|226873|227162|227163|227164|227165|227166|227167|237763|237764|247444|247445|354304|414701|414702|414704|414705|414706|414707|414708|414709|414710|424202|424203|424204|424205|424206|424207|424208|424209|424210|424211|424212|424213|424215|424216|424217|424218|434403|434404|439690|439691|480531|480532|480533|480534|482269|513402|513404|540434|540435|550875|550876|677581|677722|677810|679356|679357|679358|679359|679360|679361|681059|789102|789103|801542|801543|858735|858758", "text": "Mitochondrial diseases" }, { - "baseId": "19662|28541", + "upstreamId": "19662|28541", "text": "Progressive external ophthalmoplegia with mitochondrial DNA deletions, digenic" }, { - "baseId": "19664|28535|28538|28539|28540|28541|28546|28552|39690|76573|140290|140291|140292|140293|140296|140297|142453|142463|171767|190806|193515|202922|202938|202990|203013|203024|203030|203036|203050|211434|211440|211441|211443|242144|264446|264639|265652|309183|309185|309197|309208|309210|309213|309215|309219|309222|309226|309227|313903|313906|313908|313916|319783|319784|319785|319786|319787|319794|319796|319797|319807|319812|319819|319821|319822|320320|320327|320331|320332|320334|371494|415211|502732|576169|614404|620340|682355|682357|798690|798691|798692|865239|865240|865241|865242|865243|865244|865245|865246|865247|865248|865249|865250|865251|865252|865253|865254|865255|865256|865257|865258|971030", + "upstreamId": "19664|28535|28538|28539|28540|28541|28546|28552|39690|76573|140290|140291|140292|140293|140296|140297|142453|142463|171767|190806|193515|202922|202938|202990|203013|203024|203030|203036|203050|211434|211440|211441|211443|242144|264446|264639|265652|309183|309185|309197|309208|309210|309213|309215|309219|309222|309226|309227|313903|313906|313908|313916|319783|319784|319785|319786|319787|319794|319796|319797|319807|319812|319819|319821|319822|320320|320327|320331|320332|320334|371494|415211|502732|576169|614404|620340|682355|682357|798690|798691|798692|865239|865240|865241|865242|865243|865244|865245|865246|865247|865248|865249|865250|865251|865252|865253|865254|865255|865256|865257|865258|971030", "text": "Sensory ataxic neuropathy-dysarthria-ophthalmoparesis syndrome" }, { - "baseId": "19665|19666|19669|34525|71365|71366|71367|140290|140291|140292|140293|140296|140297|171767|211434|211440|211441|211443|227652|227653|264446|265652|309183|309185|309197|309208|309210|309213|309215|309219|309222|309226|309227|313903|313906|313908|313916|319783|319784|319785|319786|319787|319794|319796|319797|319807|319812|319819|319821|319822|320320|320327|320331|320332|320334|371494|415211|502732|620340|626193|682322|682347|682349|682352|682354|865239|865240|865241|865242|865243|865244|865245|865246|865247|865248|865249|865250|865251|865252|865253|865254|865255|865256|865257|865258", + "upstreamId": "19665|19666|19669|34525|71365|71366|71367|140290|140291|140292|140293|140296|140297|171767|211434|211440|211441|211443|227652|227653|264446|265652|309183|309185|309197|309208|309210|309213|309215|309219|309222|309226|309227|313903|313906|313908|313916|319783|319784|319785|319786|319787|319794|319796|319797|319807|319812|319819|319821|319822|320320|320327|320331|320332|320334|371494|415211|502732|620340|626193|682322|682347|682349|682352|682354|865239|865240|865241|865242|865243|865244|865245|865246|865247|865248|865249|865250|865251|865252|865253|865254|865255|865256|865257|865258", "text": "Infantile onset spinocerebellar ataxia" }, { - "baseId": "19665|23192|23193|23194|23195|23196|23197|23198|139370|140783|140784|140785|140786|190646|195028|205238|210893|210897|210898|210901|274109|287240|287241|287251|290525|290526|290528|290536|290833|290835|481358|481359|513932|513933|549898|790295|885452|885453|885454|885455|885456|885457", + "upstreamId": "19665|23192|23193|23194|23195|23196|23197|23198|139370|140783|140784|140785|140786|190646|195028|205238|210893|210897|210898|210901|274109|287240|287241|287251|290525|290526|290528|290536|290833|290835|481358|481359|513932|513933|549898|790295|885452|885453|885454|885455|885456|885457", "text": "Mitochondrial DNA-depletion syndrome 3, hepatocerebral" }, { - "baseId": "19670|168813|168814|168815|168816|168817|168818|168820|168821|168822|168823|168824|168825|168826|168827|168828|168829|168830|168831|168832|168833|168834|168835|168836|168837|168838|168839|168840|178382|205262|205764|207734|207736|214455|214456|214458|214460|225819|309449|309450|314164|314165|314166|314184|314202|314203|314208|314224|314225|314226|320056|320063|320064|320073|320075|320077|320078|320626|320627|320631|320632|429043|429044|441360|441362|459672|459858|460102|513822|513823|513824|524925|566150|611403|614602|625872|625981|638713|701169|701170|730667|737342|790940|790941|805090|815991|836604|855081|865389|865390|865391|865392|865393|865394|865395|865396|865397|865398|865399|865400|865401|865402|865403|865404|865405|868440|868441|868442|919257|970919|970920|971295|974488", + "upstreamId": "19670|168813|168814|168815|168816|168817|168818|168820|168821|168822|168823|168824|168825|168826|168827|168828|168829|168830|168831|168832|168833|168834|168835|168836|168837|168838|168839|168840|178382|205262|205764|207734|207736|214455|214456|214458|214460|225819|309449|309450|314164|314165|314166|314184|314202|314203|314208|314224|314225|314226|320056|320063|320064|320073|320075|320077|320078|320626|320627|320631|320632|429043|429044|441360|441362|459672|459858|460102|513822|513823|513824|524925|566150|611403|614602|625872|625981|638713|701169|701170|730667|737342|790940|790941|805090|815991|836604|855081|865389|865390|865391|865392|865393|865394|865395|865396|865397|865398|865399|865400|865401|865402|865403|865404|865405|868440|868441|868442|919257|970919|970920|971295|974488", "text": "Cornelia de Lange syndrome 3" }, { - "baseId": "19671|19672|19673|136570|136571|136572|136573|136574|136575|136576|136577|136578|136579|136580|136581|136582|508823|508824|508825|509888|790720", + "upstreamId": "19671|19672|19673|136570|136571|136572|136573|136574|136575|136576|136577|136578|136579|136580|136581|136582|508823|508824|508825|509888|790720", "text": "Atrial septal defect 4" }, { - "baseId": "19674|19675|19676|19677|76648|76649|191289|192063|192941|192942|193152|207042|207043|207044|246935|250912|250913|267615|267976|272572|275510|288698|288700|288702|288703|288704|288708|288712|288714|288715|288718|288719|288723|289423|289426|289429|289437|289446|289447|289449|289452|289453|289454|292443|292446|292455|292461|292467|292468|292492|292494|292496|292498|292616|292617|292632|292636|292648|292654|292657|292664|292669|292672|292675|292680|406114|452299|518928|519076|519081|519084|562410|562429|620102|620103|630949|630950|630951|651032|691300|691301|697823|697824|708558|730185|777328|827525|827526|827527|827528|887920|887921|887922|887923|887924|887925|887927|887928|887929|887930|887931|887932|887933|887934|887935|887936|887937|887938|887939|887940|887941|887942|887943|887944|887945|887946|887947|891563|923047|923048|931758|931759|962693|962694|970492|971370", + "upstreamId": "19674|19675|19676|19677|76648|76649|191289|192063|192941|192942|193152|207042|207043|207044|246935|250912|250913|267615|267976|272572|275510|288698|288700|288702|288703|288704|288708|288712|288714|288715|288718|288719|288723|289423|289426|289429|289437|289446|289447|289449|289452|289453|289454|292443|292446|292455|292461|292467|292468|292492|292494|292496|292498|292616|292617|292632|292636|292648|292654|292657|292664|292669|292672|292675|292680|406114|452299|518928|519076|519081|519084|562410|562429|620102|620103|630949|630950|630951|651032|691300|691301|697823|697824|708558|730185|777328|827525|827526|827527|827528|887920|887921|887922|887923|887924|887925|887927|887928|887929|887930|887931|887932|887933|887934|887935|887936|887937|887938|887939|887940|887941|887942|887943|887944|887945|887946|887947|891563|923047|923048|931758|931759|962693|962694|970492|971370", "text": "Cranioectodermal dysplasia 1" }, { - "baseId": "19678|19679|227248|288087|288114|288840|288844|288853|291776|291884|291897|291903|291904|805078", + "upstreamId": "19678|19679|227248|288087|288114|288840|288844|288853|291776|291884|291897|291903|291904|805078", "text": "C syndrome" }, { - "baseId": "19680|76969|76970|76971|76972|76973|131929|131930|131931|131932|131933|131934|256775|256776|256777|256778|332655|332657|332659|332660|342843|348179|348185|348186|348192|348193|348198|349391|349394|349395|349398|349403|438851|442042|446034|469397|532702|532705|532719|532744|539085|539086|572217|572221|572222|574876|577703|584380|589810|620629|647703|647704|647705|647706|647707|653148|716180|716181|727909|756718|760754|760802|772415|786062|786063|791894|847293|847294|847295|847296|847297|847298|847299|847300|847301|847302|847303|847304|847305|847306|879970|879971|879972|879973|879974|879975|880699|880700|880701|928850|928851|928852|928853|928854|938579|938580|938581|950672|950673|950674|950675|950676|958538|958539|958540", + "upstreamId": "19680|76969|76970|76971|76972|76973|131929|131930|131931|131932|131933|131934|256775|256776|256777|256778|332655|332657|332659|332660|342843|348179|348185|348186|348192|348193|348198|349391|349394|349395|349398|349403|438851|442042|446034|469397|532702|532705|532719|532744|539085|539086|572217|572221|572222|574876|577703|584380|589810|620629|647703|647704|647705|647706|647707|653148|716180|716181|727909|756718|760754|760802|772415|786062|786063|791894|847293|847294|847295|847296|847297|847298|847299|847300|847301|847302|847303|847304|847305|847306|879970|879971|879972|879973|879974|879975|880699|880700|880701|928850|928851|928852|928853|928854|938579|938580|938581|950672|950673|950674|950675|950676|958538|958539|958540", "text": "Aicardi Goutieres syndrome 4" }, { - "baseId": "19681|19682|19683|19684|19685|19686|19687|550573", + "upstreamId": "19681|19682|19683|19684|19685|19686|19687|550573", "text": "Frontonasal dysplasia 1" }, { - "baseId": "19688", + "upstreamId": "19688", "text": "Sarcoidosis 2" }, { - "baseId": "19689|19690|19691|19692|19693|19694|19695|19696|79134|249398|249399|276502|276504|276505|276723|276724|277277|277283|277284|277286|277376|404926|427642|447139|515091|515097|515143|552033|552034|556600|556933|558114|619953|626847|626848|626849|626850|626851|626852|626853|650659|745708|745709|761220|761221|761222|774379|786966|788725|800976|818845|822750|822751|822752|822753|822754|850732|851099|862346|862347|862348|862349|862350|862351|862352|921649|921650|930042|930043|940600|941455|941456|941457|941458|941459|941460|952073|952074|952075|952076|952077|952078|952079|952080|980435", + "upstreamId": "19689|19690|19691|19692|19693|19694|19695|19696|79134|249398|249399|276502|276504|276505|276723|276724|277277|277283|277284|277286|277376|404926|427642|447139|515091|515097|515143|552033|552034|556600|556933|558114|619953|626847|626848|626849|626850|626851|626852|626853|650659|745708|745709|761220|761221|761222|774379|786966|788725|800976|818845|822750|822751|822752|822753|822754|850732|851099|862346|862347|862348|862349|862350|862351|862352|921649|921650|930042|930043|940600|941455|941456|941457|941458|941459|941460|952073|952074|952075|952076|952077|952078|952079|952080|980435", "text": "Kostmann syndrome" }, { - "baseId": "19693|19695|276504|276724|404926|427642|515097|515143|556600|556933|626848|626850|650659|745708|786966|822750|822752", + "upstreamId": "19693|19695|276504|276724|404926|427642|515097|515143|556600|556933|626848|626850|650659|745708|786966|822750|822752", "text": "Autosomal recessive severe congenital neutropenia type 3" }, { - "baseId": "19697|390732|390740", + "upstreamId": "19697|390732|390740", "text": "Charcot-Marie-Tooth disease, type 2A1" }, { - "baseId": "19698|19699|19700|19701", + "upstreamId": "19698|19699|19700|19701", "text": "Neuroblastoma 1" }, { - "baseId": "19699|19700|28375|28377|28378|33122|33123|33124|33125|34719|46008|46750|49881|76578|76579|83949|134845|134846|134847|150855|165504|172465|175540|180995|193949|212065|212066|212068|212069|214506|214508|214509|214512|214513|214514|214515|215257|221072|221073|221074|226759|238113|238114|238115|238116|238117|249266|256141|275615|275616|275617|275618|275620|275643|275644|275646|275647|275648|275649|275650|275651|275652|275653|275655|275661|275671|275674|275677|275679|275680|275703|275730|275733|275736|275737|275742|275743|275746|275747|275748|275750|275751|275752|275754|275755|275756|275757|275758|275759|275760|275761|275762|275763|275764|275765|275766|275767|275768|275769|275770|275771|275772|275773|275774|275775|275776|275777|275778|275779|275780|275781|275782|275783|275784|275785|275786|275787|275788|275789|275790|275791|275792|275793|275794|275795|275799|275802|275803|275804|275805|275809|275818|275823|275831|275832|275833|275834|275841|275842|275844|275848|275854|275857|275858|275861|275862|275863|275864|275865|275869|275870|275871|275873|275881|275886|275887|275888|275894|275895|275897|275900|275902|275903|275904|275906|275909|275910|275912|275918|275926|275939|275944|275945|275946|275947|275956|275960|275961|275962|275963|293429|294855|298467|298528|353022|353023|362764|362766|362767|363179|363244|363308|363309|363337|363338|363339|363361|363362|363363|363390|363464|363465|363466|363467|363468|363591|363592|390732|432394|432400|432406|432407|432409|432412|432413|432416|432422|446991|514868|535377|535378|535379|581789|611988|612000|612008|612013|626484|683231|685506|789813|789816|789817|861756|861757|861758|861759|861760|861761|861762|861763|861783|861800|861801|861802|861803|861804|861805|861806|861807|861808|861809|861810|861811|861812|861813|861814|861815|861816|861817|861818|861819|861820|861821|861822|861823|861824|861825|861826|861827|861828|861829|861830|861831|861832|861833|861834|861835|861836|861837|861838|861839|861840|861841|861842|861843|861844|861845|861846|861847|864940|864941|864942|864945|864951|864952", + "upstreamId": "19699|19700|28375|28377|28378|33122|33123|33124|33125|34719|46008|46750|49881|76578|76579|83949|134845|134846|134847|150855|165504|172465|175540|180995|193949|212065|212066|212068|212069|214506|214508|214509|214512|214513|214514|214515|215257|221072|221073|221074|226759|238113|238114|238115|238116|238117|249266|256141|275615|275616|275617|275618|275620|275643|275644|275646|275647|275648|275649|275650|275651|275652|275653|275655|275661|275671|275674|275677|275679|275680|275703|275730|275733|275736|275737|275742|275743|275746|275747|275748|275750|275751|275752|275754|275755|275756|275757|275758|275759|275760|275761|275762|275763|275764|275765|275766|275767|275768|275769|275770|275771|275772|275773|275774|275775|275776|275777|275778|275779|275780|275781|275782|275783|275784|275785|275786|275787|275788|275789|275790|275791|275792|275793|275794|275795|275799|275802|275803|275804|275805|275809|275818|275823|275831|275832|275833|275834|275841|275842|275844|275848|275854|275857|275858|275861|275862|275863|275864|275865|275869|275870|275871|275873|275881|275886|275887|275888|275894|275895|275897|275900|275902|275903|275904|275906|275909|275910|275912|275918|275926|275939|275944|275945|275946|275947|275956|275960|275961|275962|275963|293429|294855|298467|298528|353022|353023|362764|362766|362767|363179|363244|363308|363309|363337|363338|363339|363361|363362|363363|363390|363464|363465|363466|363467|363468|363591|363592|390732|432394|432400|432406|432407|432409|432412|432413|432416|432422|446991|514868|535377|535378|535379|581789|611988|612000|612008|612013|626484|683231|685506|789813|789816|789817|861756|861757|861758|861759|861760|861761|861762|861763|861783|861800|861801|861802|861803|861804|861805|861806|861807|861808|861809|861810|861811|861812|861813|861814|861815|861816|861817|861818|861819|861820|861821|861822|861823|861824|861825|861826|861827|861828|861829|861830|861831|861832|861833|861834|861835|861836|861837|861838|861839|861840|861841|861842|861843|861844|861845|861846|861847|864940|864941|864942|864945|864951|864952", "text": "Neuroblastoma" }, { - "baseId": "19702|19703|306064|310042|310044|310057|353846|734258|970654", + "upstreamId": "19702|19703|306064|310042|310044|310057|353846|734258|970654", "text": "Pyruvate dehydrogenase phosphatase deficiency" }, { - "baseId": "19704|19704|19705|19706|19707|19708|19709|19710|19711|19712|19714|22715|22716|44662|44663|134928|140776|140777|140778|191510|208008|208009|208013|237233|248737|248738|271194|271972|309807|309809|314727|314736|318850|318855|318858|318860|318861|318862|318866|318867|318871|318873|318877|318878|318879|318886|318887|320734|320739|321387|321399|321401|321403|327235|327243|327246|327249|327251|327256|327261|327265|327267|327268|333353|333354|333361|333369|333370|333378|333382|333384|333385|333386|333387|333388|333389|333398|333403|333405|333409|333416|333417|333418|333419|335099|335103|335107|335108|335112|335113|335116|335127|335129|335130|353262|371603|407833|421785|429478|459719|459727|459730|459731|459914|460187|460187|460443|460444|513304|525013|525227|525229|525232|525329|525334|525533|525533|527458|563618|563620|564410|564513|564517|564521|566107|566202|566204|566206|572195|584029|585008|589065|614347|614347|638775|638776|638777|638778|638779|638780|638781|638782|638783|638784|638785|638786|638787|638788|638789|638790|638791|638792|638793|638794|638795|638796|638797|638798|638799|638800|638801|641541|651954|651998|652095|652125|684382|692812|692813|692814|692815|695473|701266|712282|723866|730680|730681|752041|752042|752043|752044|752045|759947|767673|767674|767675|767676|775484|783566|783568|790953|790954|820197|820198|820199|836704|836705|836706|836707|836708|836709|836710|836711|836712|836713|836714|836715|836716|836717|836718|836719|836720|836721|836722|836723|836724|836725|836726|836727|851371|865636|870669|870670|870671|870672|870673|870674|870675|870676|870677|870678|870679|870680|870681|870682|870683|870684|925767|925768|925769|925770|925771|925772|925773|934986|934987|934988|934989|934990|934991|940952|946843|946844|946845|946846|956011|956012|956013|956014|956015|956016|956017|956018|956019|956020|959930|960715|960716", + "upstreamId": "19704|19704|19705|19706|19707|19708|19709|19710|19711|19712|19714|22715|22716|44662|44663|134928|140776|140777|140778|191510|208008|208009|208013|237233|248737|248738|271194|271972|309807|309809|314727|314736|318850|318855|318858|318860|318861|318862|318866|318867|318871|318873|318877|318878|318879|318886|318887|320734|320739|321387|321399|321401|321403|327235|327243|327246|327249|327251|327256|327261|327265|327267|327268|333353|333354|333361|333369|333370|333378|333382|333384|333385|333386|333387|333388|333389|333398|333403|333405|333409|333416|333417|333418|333419|335099|335103|335107|335108|335112|335113|335116|335127|335129|335130|353262|371603|407833|421785|429478|459719|459727|459730|459731|459914|460187|460187|460443|460444|513304|525013|525227|525229|525232|525329|525334|525533|525533|527458|563618|563620|564410|564513|564517|564521|566107|566202|566204|566206|572195|584029|585008|589065|614347|614347|638775|638776|638777|638778|638779|638780|638781|638782|638783|638784|638785|638786|638787|638788|638789|638790|638791|638792|638793|638794|638795|638796|638797|638798|638799|638800|638801|641541|651954|651998|652095|652125|684382|692812|692813|692814|692815|695473|701266|712282|723866|730680|730681|752041|752042|752043|752044|752045|759947|767673|767674|767675|767676|775484|783566|783568|790953|790954|820197|820198|820199|836704|836705|836706|836707|836708|836709|836710|836711|836712|836713|836714|836715|836716|836717|836718|836719|836720|836721|836722|836723|836724|836725|836726|836727|851371|865636|870669|870670|870671|870672|870673|870674|870675|870676|870677|870678|870679|870680|870681|870682|870683|870684|925767|925768|925769|925770|925771|925772|925773|934986|934987|934988|934989|934990|934991|940952|946843|946844|946845|946846|956011|956012|956013|956014|956015|956016|956017|956018|956019|956020|959930|960715|960716", "text": "Severe combined immunodeficiency due to DCLRE1C deficiency" }, { - "baseId": "19704|19704|19713|19716|28169|28169|28170|28170|28171|28171|28172|28172|28174|28174|28175|28182|28183|28184|28185|28186|28187|28188|28189|28190|28191|28192|28199|44662|44663|44664|45372|45374|45376|45378|45378|79572|140776|140777|140778|142585|142587|142588|142589|142590|142590|191510|237096|237233|253713|253714|254148|254149|254150|254151|271194|309774|309777|309782|309783|309789|309791|309794|309799|309800|309801|309804|309805|309806|309807|309809|313990|313992|313995|314000|314002|314012|314013|314014|314015|314019|314021|314025|314026|314032|314654|314655|314656|314663|314665|314673|314675|314676|314679|314681|314687|314689|314711|314714|314725|314727|314736|314737|320368|320369|320387|320393|320401|320417|320431|320432|320452|320453|320454|320456|320463|320474|320476|320489|320490|320491|320497|320500|320700|320701|320702|320720|320721|320727|320728|320734|320739|321301|321302|321314|321315|321325|321337|321338|321343|321371|321374|321375|321376|321387|321399|321401|321403|326350|326360|326369|326374|326377|326378|326380|326382|326384|326399|326401|326415|326421|326429|326430|326434|326435|326435|326443|326452|327380|327381|327390|327392|327406|327407|327408|327410|327412|327417|327426|327430|327431|327441|327443|327444|327446|327450|327451|327455|327462|327462|327474|327480|353188|371603|407833|408346|425922|433888|433888|433888|460187|460187|461092|461576|461890|461904|461907|488105|488106|488107|488109|488110|488111|488112|488113|488113|488115|488116|488117|488117|488119|513304|525533|526194|526676|564613|567235|567235|567241|614347|614356|614357|620349|638776|638777|638798|640022|640023|640024|640025|652125|692812|692813|692814|693020|693021|695473|701752|712282|723866|730681|737960|737962|752041|752044|767676|768442|792668|799601|838365|838368|838373|838392|838394|838397|838398|865619|865620|865621|865622|865623|865624|865625|865626|865627|865628|865629|865630|865631|865632|865633|865634|865635|865636|865637|865638|865639|865640|865641|865642|865643|867886|867887|867888|867889|867890|867891|867892|867893|867894|867895|867896|867897|867898|867899|867900|867901|867902|867903|867904|867905|867906|867907|867908|867909|867910|867911|867912|867913|867914|867915|867916|867917|867918|867919|867920|867921|867922|867923|867924|867925|867926|867927|867928|867929|867930|867931|867932|868459|868460|868461|956014|956486|978634|978635|978636|978637|978638|978639|978640|978641|978642|978643|978644|978985|978986|978987|978988|978989|978990|978991|978992|978993|978994|978995|978996|978997", + "upstreamId": "19704|19704|19713|19716|28169|28169|28170|28170|28171|28171|28172|28172|28174|28174|28175|28182|28183|28184|28185|28186|28187|28188|28189|28190|28191|28192|28199|44662|44663|44664|45372|45374|45376|45378|45378|79572|140776|140777|140778|142585|142587|142588|142589|142590|142590|191510|237096|237233|253713|253714|254148|254149|254150|254151|271194|309774|309777|309782|309783|309789|309791|309794|309799|309800|309801|309804|309805|309806|309807|309809|313990|313992|313995|314000|314002|314012|314013|314014|314015|314019|314021|314025|314026|314032|314654|314655|314656|314663|314665|314673|314675|314676|314679|314681|314687|314689|314711|314714|314725|314727|314736|314737|320368|320369|320387|320393|320401|320417|320431|320432|320452|320453|320454|320456|320463|320474|320476|320489|320490|320491|320497|320500|320700|320701|320702|320720|320721|320727|320728|320734|320739|321301|321302|321314|321315|321325|321337|321338|321343|321371|321374|321375|321376|321387|321399|321401|321403|326350|326360|326369|326374|326377|326378|326380|326382|326384|326399|326401|326415|326421|326429|326430|326434|326435|326435|326443|326452|327380|327381|327390|327392|327406|327407|327408|327410|327412|327417|327426|327430|327431|327441|327443|327444|327446|327450|327451|327455|327462|327462|327474|327480|353188|371603|407833|408346|425922|433888|433888|433888|460187|460187|461092|461576|461890|461904|461907|488105|488106|488107|488109|488110|488111|488112|488113|488113|488115|488116|488117|488117|488119|513304|525533|526194|526676|564613|567235|567235|567241|614347|614356|614357|620349|638776|638777|638798|640022|640023|640024|640025|652125|692812|692813|692814|693020|693021|695473|701752|712282|723866|730681|737960|737962|752041|752044|767676|768442|792668|799601|838365|838368|838373|838392|838394|838397|838398|865619|865620|865621|865622|865623|865624|865625|865626|865627|865628|865629|865630|865631|865632|865633|865634|865635|865636|865637|865638|865639|865640|865641|865642|865643|867886|867887|867888|867889|867890|867891|867892|867893|867894|867895|867896|867897|867898|867899|867900|867901|867902|867903|867904|867905|867906|867907|867908|867909|867910|867911|867912|867913|867914|867915|867916|867917|867918|867919|867920|867921|867922|867923|867924|867925|867926|867927|867928|867929|867930|867931|867932|868459|868460|868461|956014|956486|978634|978635|978636|978637|978638|978639|978640|978641|978642|978643|978644|978985|978986|978987|978988|978989|978990|978991|978992|978993|978994|978995|978996|978997", "text": "Histiocytic medullary reticulosis" }, { - "baseId": "19712|321403|566204|584029|638779|767673|836712|836714", + "upstreamId": "19712|321403|566204|584029|638779|767673|836712|836714", "text": "Severe combined immunodeficiency, athabascan-type" }, { - "baseId": "19714|19715", + "upstreamId": "19714|19715", "text": "Severe combined immunodeficiency, partial" }, { - "baseId": "19717|19718|19719|19720|40574|205177|714450|903603", + "upstreamId": "19717|19718|19719|19720|40574|205177|714450|903603", "text": "Johanson-Blizzard syndrome" }, { - "baseId": "19721|19722|19723|19724|19725|19726|19727|19728|19729|45830|308735|308737|308742|308747|308750|308752|308753|308755|308759|308760|308762|308767|308769|308770|308772|308779|308781|308782|308788|308792|308801|308802|308806|308808|308812|308819|308820|308825|308827|308828|308829|308831|308842|308843|308846|313311|313315|313316|313317|313323|313331|313336|313337|313352|313354|313356|313365|313373|313382|313392|313394|313395|313396|313397|313408|313415|313429|313430|313431|313435|313439|313440|313441|313442|313444|319159|319180|319181|319183|319190|319193|319194|319220|319221|319222|319223|319225|319227|319228|319232|319233|319240|319242|319244|319249|319250|319254|319255|319772|319774|319777|319788|319792|319793|319795|319800|319811|319814|319816|319817|319818|319820|319826|319827|319836|319838|319842|319844|319851|319867|319868|319869|319875|319877|441341|441348|441349|441352|441353|441354|441355|444515|444516|508840|508841|508842|508843|539023|545359|545630|577132|577133|577135|620337|654549|684104|684105|684106|684107|684108|684109|684115|684119|685255|685256|685258|685259|685263|687527|687532|687533|687539|689955|689963|692692|783447|800756|806436|818580|902368|902369|902370|902371|902372|902373|902374|902375|902376|902377|902378|902379|902380|902381|902382|902383|902384|902385|902386|902387|902388|902389|902390|902391|902392|902393|902394|902395|902396|902397|902398|902399|902400|902401|902402|902403|902404|902405|902406|902407|902408|902409|902410|902411|902412|902413|902414|902415|902416|902417|902418|902419|902420|902421|902422|902423|902424|902425|902426|902427|902428|902429|902430|902431|902432|902433|902434|903431|903432|903433|903434|903435|903436|903437|903438|903439|903562|918310|919239", + "upstreamId": "19721|19722|19723|19724|19725|19726|19727|19728|19729|45830|308735|308737|308742|308747|308750|308752|308753|308755|308759|308760|308762|308767|308769|308770|308772|308779|308781|308782|308788|308792|308801|308802|308806|308808|308812|308819|308820|308825|308827|308828|308829|308831|308842|308843|308846|313311|313315|313316|313317|313323|313331|313336|313337|313352|313354|313356|313365|313373|313382|313392|313394|313395|313396|313397|313408|313415|313429|313430|313431|313435|313439|313440|313441|313442|313444|319159|319180|319181|319183|319190|319193|319194|319220|319221|319222|319223|319225|319227|319228|319232|319233|319240|319242|319244|319249|319250|319254|319255|319772|319774|319777|319788|319792|319793|319795|319800|319811|319814|319816|319817|319818|319820|319826|319827|319836|319838|319842|319844|319851|319867|319868|319869|319875|319877|441341|441348|441349|441352|441353|441354|441355|444515|444516|508840|508841|508842|508843|539023|545359|545630|577132|577133|577135|620337|654549|684104|684105|684106|684107|684108|684109|684115|684119|685255|685256|685258|685259|685263|687527|687532|687533|687539|689955|689963|692692|783447|800756|806436|818580|902368|902369|902370|902371|902372|902373|902374|902375|902376|902377|902378|902379|902380|902381|902382|902383|902384|902385|902386|902387|902388|902389|902390|902391|902392|902393|902394|902395|902396|902397|902398|902399|902400|902401|902402|902403|902404|902405|902406|902407|902408|902409|902410|902411|902412|902413|902414|902415|902416|902417|902418|902419|902420|902421|902422|902423|902424|902425|902426|902427|902428|902429|902430|902431|902432|902433|902434|903431|903432|903433|903434|903435|903436|903437|903438|903439|903562|918310|919239", "text": "Choreoacanthocytosis" }, { - "baseId": "19730|19730|19731|19731|19732|19732|19733|19735|19736|19739|19739|19739|19740|103711|103711|103712|103716|103717|103718|103718|103719|103719|103721|103725|103725|103726|103728|103731|103736|103736|103737|103740|103740|103741|103742|103742|103743|103743|103744|103744|103747|103747|103748|103748|103750|103750|103757|103758|103758|103759|103760|103761|103761|103764|103764|103767|103768|103769|103769|103771|103771|103772|103772|103773|103775|103775|103776|103777|103777|103777|103794|108849|194494|194494|262395|325494|325497|325497|325504|325504|325505|325507|325509|325517|325518|325520|325521|325522|335144|335145|335151|335154|335158|335158|335159|335161|335167|335170|335170|335175|335175|335176|335176|335177|335177|335179|335179|335184|335184|335185|335185|335187|335194|335200|335201|341616|341618|341618|341619|341620|341623|341623|341629|341630|341631|341634|341640|341640|341642|341646|341646|341657|341657|341658|341658|341660|341661|341664|343077|343081|343081|343083|343083|343085|343091|343091|343092|343092|343094|343096|343096|343097|343097|343098|343098|343103|343104|343104|343107|343115|343117|343118|343118|343120|343121|343126|343129|343136|343140|343142|343143|343144|343145|359038|359039|359040|359041|359042|409643|445585|466469|466469|466471|466472|466475|466489|466746|466747|529997|529998|530001|530003|530004|530008|530019|530021|530159|530161|530163|530177|530182|530339|530342|530342|530343|530345|530345|530541|530545|530551|530554|568172|568176|568180|568184|568188|568193|570251|570253|570261|570269|570274|570275|570292|570297|570318|570320|574079|574081|574082|574083|574084|578028|614427|620878|620878|622694|644720|644721|644722|644723|644724|644725|644726|644727|644728|644728|644729|644730|644730|644731|644731|644732|644732|644733|644734|644735|644736|644737|644738|644739|644740|644741|703731|703731|714958|714959|714961|714962|740228|740229|740230|740231|740232|755213|755215|755216|755219|770928|770931|770932|770934|770935|770938|770941|770947|785289|797335|797336|799958|816339|843928|843929|843930|843931|843932|843933|843934|843935|843936|843937|843938|843939|843940|843941|843942|843943|843944|843945|843946|843947|843948|843949|843950|843951|843952|843953|843954|843955|843956|843957|843958|843959|843960|843961|843962|875366|875367|875368|875369|875370|875371|875372|875373|875374|875375|875376|875377|875378|875379|875380|927836|927837|927838|927839|927840|927841|927842|927843|927844|927845|927846|927847|937476|937477|937478|937479|937480|937481|937482|949420|949421|949422|949423|949424|949425|949426|949427|949428|949429|949430|957777|957778|957779|957780|957781|957782|957784|957785|960846|980481", + "upstreamId": "19730|19730|19731|19731|19732|19732|19733|19735|19736|19739|19739|19739|19740|103711|103711|103712|103716|103717|103718|103718|103719|103719|103721|103725|103725|103726|103728|103731|103736|103736|103737|103740|103740|103741|103742|103742|103743|103743|103744|103744|103747|103747|103748|103748|103750|103750|103757|103758|103758|103759|103760|103761|103761|103764|103764|103767|103768|103769|103769|103771|103771|103772|103772|103773|103775|103775|103776|103777|103777|103777|103794|108849|194494|194494|262395|325494|325497|325497|325504|325504|325505|325507|325509|325517|325518|325520|325521|325522|335144|335145|335151|335154|335158|335158|335159|335161|335167|335170|335170|335175|335175|335176|335176|335177|335177|335179|335179|335184|335184|335185|335185|335187|335194|335200|335201|341616|341618|341618|341619|341620|341623|341623|341629|341630|341631|341634|341640|341640|341642|341646|341646|341657|341657|341658|341658|341660|341661|341664|343077|343081|343081|343083|343083|343085|343091|343091|343092|343092|343094|343096|343096|343097|343097|343098|343098|343103|343104|343104|343107|343115|343117|343118|343118|343120|343121|343126|343129|343136|343140|343142|343143|343144|343145|359038|359039|359040|359041|359042|409643|445585|466469|466469|466471|466472|466475|466489|466746|466747|529997|529998|530001|530003|530004|530008|530019|530021|530159|530161|530163|530177|530182|530339|530342|530342|530343|530345|530345|530541|530545|530551|530554|568172|568176|568180|568184|568188|568193|570251|570253|570261|570269|570274|570275|570292|570297|570318|570320|574079|574081|574082|574083|574084|578028|614427|620878|620878|622694|644720|644721|644722|644723|644724|644725|644726|644727|644728|644728|644729|644730|644730|644731|644731|644732|644732|644733|644734|644735|644736|644737|644738|644739|644740|644741|703731|703731|714958|714959|714961|714962|740228|740229|740230|740231|740232|755213|755215|755216|755219|770928|770931|770932|770934|770935|770938|770941|770947|785289|797335|797336|799958|816339|843928|843929|843930|843931|843932|843933|843934|843935|843936|843937|843938|843939|843940|843941|843942|843943|843944|843945|843946|843947|843948|843949|843950|843951|843952|843953|843954|843955|843956|843957|843958|843959|843960|843961|843962|875366|875367|875368|875369|875370|875371|875372|875373|875374|875375|875376|875377|875378|875379|875380|927836|927837|927838|927839|927840|927841|927842|927843|927844|927845|927846|927847|937476|937477|937478|937479|937480|937481|937482|949420|949421|949422|949423|949424|949425|949426|949427|949428|949429|949430|957777|957778|957779|957780|957781|957782|957784|957785|960846|980481", "text": "Inflammatory bowel disease 1" }, { - "baseId": "19730|335199|341611|341631|343103", + "upstreamId": "19730|335199|341611|341631|343103", "text": "Crohn disease" }, { - "baseId": "19730|19730|19731|19731|19732|19732|19733|19733|19734|19735|19735|19736|19737|19738|19739|19739|19739|19740|19740|91052|103708|103709|103710|103711|103711|103712|103712|103713|103714|103715|103716|103716|103717|103718|103718|103719|103719|103720|103721|103721|103722|103723|103724|103725|103725|103726|103726|103727|103728|103728|103729|103730|103731|103731|103732|103733|103734|103735|103736|103736|103737|103737|103738|103739|103740|103740|103741|103742|103742|103743|103743|103744|103744|103745|103746|103747|103747|103748|103748|103749|103750|103750|103751|103752|103753|103754|103755|103756|103757|103757|103758|103758|103759|103759|103760|103761|103761|103762|103763|103764|103764|103765|103766|103767|103767|103768|103768|103769|103769|103770|103771|103771|103772|103772|103773|103773|103774|103775|103775|103776|103776|103777|103777|103777|103794|103794|103795|108849|194494|194494|262395|325494|325497|325497|325504|325504|325505|325507|325509|325517|325518|325520|325521|325522|335144|335145|335151|335154|335158|335158|335159|335161|335167|335170|335170|335175|335175|335176|335176|335177|335177|335179|335179|335184|335184|335185|335185|335187|335194|335199|335200|335201|341611|341616|341618|341618|341619|341620|341623|341623|341629|341630|341631|341631|341634|341640|341640|341642|341646|341646|341657|341657|341658|341658|341660|341661|341664|343077|343081|343081|343083|343083|343085|343091|343091|343092|343092|343094|343096|343096|343097|343097|343098|343098|343103|343103|343104|343104|343107|343115|343117|343118|343118|343120|343121|343126|343129|343136|343140|343142|343143|343144|343145|409643|445585|466469|466469|466471|466472|466475|466489|466746|466747|529997|529998|530001|530003|530004|530008|530019|530021|530159|530161|530163|530177|530182|530339|530342|530342|530343|530345|530345|530541|530545|530551|530554|568172|568176|568180|568184|568188|568193|570251|570253|570261|570269|570274|570275|570292|570297|570318|570320|574079|574081|574082|574083|574084|612311|614427|620545|620546|620878|620878|626246|644720|644721|644722|644723|644724|644725|644726|644727|644728|644729|644730|644730|644731|644731|644732|644732|644733|644734|644735|644736|644737|644738|644739|644740|644741|703731|703731|714958|714959|714961|714962|740228|740229|740230|740231|740232|755213|755215|755216|755219|770928|770931|770932|770934|770935|770938|770941|770947|785289|797335|797336|799958|816339|816339|843928|843929|843930|843931|843932|843933|843934|843935|843936|843937|843938|843939|843940|843941|843942|843943|843944|843945|843946|843947|843948|843949|843950|843951|843952|843953|843954|843955|843956|843957|843958|843959|843960|843961|843962|875366|875367|875368|875369|875370|875371|875372|875373|875374|875375|875376|875377|875378|875379|875380|927836|927837|927838|927839|927840|927841|927842|927843|927844|927845|927846|927847|937476|937477|937478|937479|937480|937481|937482|949420|949421|949422|949423|949424|949425|949426|949427|949428|949429|949430|957777|957778|957779|957780|957781|957782|957784|957785|960846|961971|964686|980481", + "upstreamId": "19730|19730|19731|19731|19732|19732|19733|19733|19734|19735|19735|19736|19737|19738|19739|19739|19739|19740|19740|91052|103708|103709|103710|103711|103711|103712|103712|103713|103714|103715|103716|103716|103717|103718|103718|103719|103719|103720|103721|103721|103722|103723|103724|103725|103725|103726|103726|103727|103728|103728|103729|103730|103731|103731|103732|103733|103734|103735|103736|103736|103737|103737|103738|103739|103740|103740|103741|103742|103742|103743|103743|103744|103744|103745|103746|103747|103747|103748|103748|103749|103750|103750|103751|103752|103753|103754|103755|103756|103757|103757|103758|103758|103759|103759|103760|103761|103761|103762|103763|103764|103764|103765|103766|103767|103767|103768|103768|103769|103769|103770|103771|103771|103772|103772|103773|103773|103774|103775|103775|103776|103776|103777|103777|103777|103794|103794|103795|108849|194494|194494|262395|325494|325497|325497|325504|325504|325505|325507|325509|325517|325518|325520|325521|325522|335144|335145|335151|335154|335158|335158|335159|335161|335167|335170|335170|335175|335175|335176|335176|335177|335177|335179|335179|335184|335184|335185|335185|335187|335194|335199|335200|335201|341611|341616|341618|341618|341619|341620|341623|341623|341629|341630|341631|341631|341634|341640|341640|341642|341646|341646|341657|341657|341658|341658|341660|341661|341664|343077|343081|343081|343083|343083|343085|343091|343091|343092|343092|343094|343096|343096|343097|343097|343098|343098|343103|343103|343104|343104|343107|343115|343117|343118|343118|343120|343121|343126|343129|343136|343140|343142|343143|343144|343145|409643|445585|466469|466469|466471|466472|466475|466489|466746|466747|529997|529998|530001|530003|530004|530008|530019|530021|530159|530161|530163|530177|530182|530339|530342|530342|530343|530345|530345|530541|530545|530551|530554|568172|568176|568180|568184|568188|568193|570251|570253|570261|570269|570274|570275|570292|570297|570318|570320|574079|574081|574082|574083|574084|612311|614427|620545|620546|620878|620878|626246|644720|644721|644722|644723|644724|644725|644726|644727|644728|644729|644730|644730|644731|644731|644732|644732|644733|644734|644735|644736|644737|644738|644739|644740|644741|703731|703731|714958|714959|714961|714962|740228|740229|740230|740231|740232|755213|755215|755216|755219|770928|770931|770932|770934|770935|770938|770941|770947|785289|797335|797336|799958|816339|816339|843928|843929|843930|843931|843932|843933|843934|843935|843936|843937|843938|843939|843940|843941|843942|843943|843944|843945|843946|843947|843948|843949|843950|843951|843952|843953|843954|843955|843956|843957|843958|843959|843960|843961|843962|875366|875367|875368|875369|875370|875371|875372|875373|875374|875375|875376|875377|875378|875379|875380|927836|927837|927838|927839|927840|927841|927842|927843|927844|927845|927846|927847|937476|937477|937478|937479|937480|937481|937482|949420|949421|949422|949423|949424|949425|949426|949427|949428|949429|949430|957777|957778|957779|957780|957781|957782|957784|957785|960846|961971|964686|980481", "text": "Blau syndrome" }, { - "baseId": "19730|19731|19732|19736|19739|103761|103777|614427|703731|919659|980481", + "upstreamId": "19730|19731|19732|19736|19739|103761|103777|614427|703731|919659|980481", "text": "Yao syndrome" }, { - "baseId": "19736", + "upstreamId": "19736", "text": "Autoinflammatory syndrome" }, { - "baseId": "19739|27427|29419|103761|703731|980481", + "upstreamId": "19739|27427|29419|103761|703731|980481", "text": "Psoriatic arthritis, susceptibility to" }, { - "baseId": "19741|277491|364543|447235|515100|515258|515260|558138|576073|626893|626894|626895|682122|682123|818846|822782|822783|822784|862397|941488", + "upstreamId": "19741|277491|364543|447235|515100|515258|515260|558138|576073|626893|626894|626895|682122|682123|818846|822782|822783|822784|862397|941488", "text": "Congenital disorder of glycosylation type 1O" }, { - "baseId": "19742|19743|19744|19745|19746|19747|19748|19749|39498|39499|39500|48589|101235|101236|101237|101238|101239|101240|101241|101242|101243|132704|142305|142306|142307|142308|142309|142310|142311|142312|142313|142314|142315|142316|142317|142318|142319|142320|142321|142322|142323|142324|142325|142326|142327|142328|142329|142330|142331|142332|142333|142334|169608|169609|169610|169611|169612|169613|169614|169615|169616|169617|169621|169622|169623|169625|169626|169627|169629|169630|169631|169633|169634|169635|169636|169637|169638|169639|169640|169641|169642|169643|169644|169646|169647|169648|169649|169650|169651|169652|169653|169654|169655|169656|169657|169658|169659|169660|169662|169663|169664|169665|169666|169667|169668|169669|169670|169671|169672|169673|169674|169675|169676|169679|169682|169683|169684|169685|169686|169687|169688|169689|169690|169691|169692|169693|169694|169695|169696|169698|169700|169701|169702|169703|169704|169706|169707|169708|169709|169710|169711|169714|169715|169716|169717|169718|169719|169720|169721|169723|169724|169726|169727|169728|169729|169730|169732|169733|169734|169736|169737|169738|169740|169741|169742|169743|169744|169745|177915|192661|192766|193947|194688|208730|208732|208735|208738|208739|208740|208746|208748|208751|208752|208755|208756|208758|208759|208761|208762|208763|208764|208765|208766|208767|208769|208771|208772|265806|267174|268318|268576|271634|272568|337192|337195|337196|337200|337202|337206|337209|337215|337221|337226|337232|337235|337236|337239|337246|337251|337253|337258|337262|337267|337268|337270|337272|337273|346907|346916|346917|346918|346919|346922|346923|346925|346927|346933|346934|346935|346940|346941|346942|346944|346945|346951|346953|346954|346955|350964|350966|350968|350971|350973|350975|350977|350978|350981|350982|350983|350986|350989|350990|350993|350994|350996|350997|351000|351001|351005|351960|351963|351964|351965|351966|351967|351968|351969|351970|351971|351972|351973|351974|351977|351978|351979|351980|351983|351984|351985|351986|351987|351989|351998|351999|352004|377337|377340|378515|378532|378544|378549|378620|378648|379802|379804|384525|422370|430438|430439|430447|430452|430457|430460|430461|430462|430468|430469|430472|430475|430477|430489|430492|430495|430496|430497|430498|430501|430508|430511|430512|430516|430523|430527|430529|430535|430539|430541|430542|430971|489145|490872|493906|493908|493911|493913|493915|497345|508019|508031|508346|508938|552227|576190|578581|610899|612168|620680|620681|620682|620683|705760|728982|728987|742721|742725|780028|786538|798049|800183|861062|887028|887029|887030|887031|887032|887033|887034|887035|887036|887037|887038|887039|887040|887041|887042|887043|887044|887045|887046|887047|887048|887049|887050|887051|887052|887053|887054|887055|887056|887057|887058|887059|887060|887061|887062|887063|887064|887065|887066|887067|887068|887069|887070|887071|887072|887073|887074|887075|887076|887077|887078|887079|887080|887081|887082|887083|887084|887085|887086|887087|887088|887089|887090|887091|887092|887093|887094|887095|887096|887097|887098|887099|887100|887101|887102|887103|887104|887105|887106|887107|887108|887109|887110|887111|887112|887113|887114|887115|887116|887117|887118|887119|887120|887121|887122|887123|887124|887125|887126|887127|887128|887550|887551|887552|887553|887554|887555|887556|887557|887558|887559|887560|887561|887562|887563|887564|887565|887566|887567|903643|919942|964550|966015|966016|966046|971572|971573|971574|973106|982234|982235|982236|982237|982238|982239|982240|982241|982242|982243", + "upstreamId": "19742|19743|19744|19745|19746|19747|19748|19749|39498|39499|39500|48589|101235|101236|101237|101238|101239|101240|101241|101242|101243|132704|142305|142306|142307|142308|142309|142310|142311|142312|142313|142314|142315|142316|142317|142318|142319|142320|142321|142322|142323|142324|142325|142326|142327|142328|142329|142330|142331|142332|142333|142334|169608|169609|169610|169611|169612|169613|169614|169615|169616|169617|169621|169622|169623|169625|169626|169627|169629|169630|169631|169633|169634|169635|169636|169637|169638|169639|169640|169641|169642|169643|169644|169646|169647|169648|169649|169650|169651|169652|169653|169654|169655|169656|169657|169658|169659|169660|169662|169663|169664|169665|169666|169667|169668|169669|169670|169671|169672|169673|169674|169675|169676|169679|169682|169683|169684|169685|169686|169687|169688|169689|169690|169691|169692|169693|169694|169695|169696|169698|169700|169701|169702|169703|169704|169706|169707|169708|169709|169710|169711|169714|169715|169716|169717|169718|169719|169720|169721|169723|169724|169726|169727|169728|169729|169730|169732|169733|169734|169736|169737|169738|169740|169741|169742|169743|169744|169745|177915|192661|192766|193947|194688|208730|208732|208735|208738|208739|208740|208746|208748|208751|208752|208755|208756|208758|208759|208761|208762|208763|208764|208765|208766|208767|208769|208771|208772|265806|267174|268318|268576|271634|272568|337192|337195|337196|337200|337202|337206|337209|337215|337221|337226|337232|337235|337236|337239|337246|337251|337253|337258|337262|337267|337268|337270|337272|337273|346907|346916|346917|346918|346919|346922|346923|346925|346927|346933|346934|346935|346940|346941|346942|346944|346945|346951|346953|346954|346955|350964|350966|350968|350971|350973|350975|350977|350978|350981|350982|350983|350986|350989|350990|350993|350994|350996|350997|351000|351001|351005|351960|351963|351964|351965|351966|351967|351968|351969|351970|351971|351972|351973|351974|351977|351978|351979|351980|351983|351984|351985|351986|351987|351989|351998|351999|352004|377337|377340|378515|378532|378544|378549|378620|378648|379802|379804|384525|422370|430438|430439|430447|430452|430457|430460|430461|430462|430468|430469|430472|430475|430477|430489|430492|430495|430496|430497|430498|430501|430508|430511|430512|430516|430523|430527|430529|430535|430539|430541|430542|430971|489145|490872|493906|493908|493911|493913|493915|497345|508019|508031|508346|508938|552227|576190|578581|610899|612168|620680|620681|620682|620683|705760|728982|728987|742721|742725|780028|786538|798049|800183|861062|887028|887029|887030|887031|887032|887033|887034|887035|887036|887037|887038|887039|887040|887041|887042|887043|887044|887045|887046|887047|887048|887049|887050|887051|887052|887053|887054|887055|887056|887057|887058|887059|887060|887061|887062|887063|887064|887065|887066|887067|887068|887069|887070|887071|887072|887073|887074|887075|887076|887077|887078|887079|887080|887081|887082|887083|887084|887085|887086|887087|887088|887089|887090|887091|887092|887093|887094|887095|887096|887097|887098|887099|887100|887101|887102|887103|887104|887105|887106|887107|887108|887109|887110|887111|887112|887113|887114|887115|887116|887117|887118|887119|887120|887121|887122|887123|887124|887125|887126|887127|887128|887550|887551|887552|887553|887554|887555|887556|887557|887558|887559|887560|887561|887562|887563|887564|887565|887566|887567|903643|919942|964550|966015|966016|966046|971572|971573|971574|973106|982234|982235|982236|982237|982238|982239|982240|982241|982242|982243", "text": "Microcephalic osteodysplastic primordial dwarfism type II" }, { - "baseId": "19750|39497|49900|49900|49922|136636|136636|152909|187250|237034|237034|254152|254155|254157|254159|254160|254161|254163|361518|362275|362276|372380|444801|461105|461106|461109|461112|461113|461115|461115|461118|461120|461308|461310|461317|461322|461323|461326|461583|461587|461589|461591|461600|461610|461911|461913|461915|526191|526197|526199|526201|526203|526207|526379|526380|526388|526683|526697|564617|564621|564624|564624|565728|565732|565739|565742|565752|565753|565754|565758|565764|567255|567256|567258|567260|567272|570635|570636|570639|570652|570656|570662|614358|622401|640029|640030|640031|640032|640033|640034|640035|640036|640037|640038|640039|640040|640041|640042|640043|640044|640045|640046|640047|640048|640049|640050|652094|652546|693022|693023|693024|693025|693026|693027|693028|693031|695512|695513|701756|701757|701761|724427|752667|778132|796572|820363|820364|820365|820366|838403|838404|838405|838406|838407|838408|838409|838410|838411|838412|838413|838414|838415|838416|838417|838418|838419|838420|838421|851839|852346|919361|926226|926227|926228|926229|926230|926231|926232|926233|926234|926235|926236|926237|926238|935522|935523|935524|935525|935526|935527|935528|935529|935530|935531|935532|940995|940996|947446|947447|947448|947449|947450|947451|947452|947453|959987|980467", + "upstreamId": "19750|39497|49900|49900|49922|136636|136636|152909|187250|237034|237034|254152|254155|254157|254159|254160|254161|254163|361518|362275|362276|372380|444801|461105|461106|461109|461112|461113|461115|461115|461118|461120|461308|461310|461317|461322|461323|461326|461583|461587|461589|461591|461600|461610|461911|461913|461915|526191|526197|526199|526201|526203|526207|526379|526380|526388|526683|526697|564617|564621|564624|564624|565728|565732|565739|565742|565752|565753|565754|565758|565764|567255|567256|567258|567260|567272|570635|570636|570639|570652|570656|570662|614358|622401|640029|640030|640031|640032|640033|640034|640035|640036|640037|640038|640039|640040|640041|640042|640043|640044|640045|640046|640047|640048|640049|640050|652094|652546|693022|693023|693024|693025|693026|693027|693028|693031|695512|695513|701756|701757|701761|724427|752667|778132|796572|820363|820364|820365|820366|838403|838404|838405|838406|838407|838408|838409|838410|838411|838412|838413|838414|838415|838416|838417|838418|838419|838420|838421|851839|852346|919361|926226|926227|926228|926229|926230|926231|926232|926233|926234|926235|926236|926237|926238|935522|935523|935524|935525|935526|935527|935528|935529|935530|935531|935532|940995|940996|947446|947447|947448|947449|947450|947451|947452|947453|959987|980467", "text": "Combined immunodeficiency due to STIM1 deficiency" }, { - "baseId": "19751|143249", + "upstreamId": "19751|143249", "text": "Plasma triglyceride level quantitative trait locus" }, { - "baseId": "19752|19753|19754|19755|19756|19757|19758|19759|19760|19761|19762|34373|34374|34375|34376|34377|34378|40300|79686|79689|135059|135060|135061|135062|135063|135064|187067|187068|198646|227417|243999|257699|257700|257702|257709|338534|338541|338542|338545|338548|338551|338553|338559|338561|338562|338567|338568|338570|338572|348116|348117|348119|348121|348123|348125|348127|348134|348135|348137|348139|348158|351808|351809|351812|351814|351817|351819|351820|351821|352663|352664|352666|352667|352668|352669|352670|352672|352673|352674|352675|352676|352677|358664|358665|358666|358667|358668|358669|358670|358671|358672|429180|513673|538501|539417|549081|549083|549094|549095|549153|549155|549156|549159|549161|549163|549166|549169|549296|549298|549437|549438|549439|549440|549441|549442|549443|549444|549445|549446|581914|614611|620929|706002|773596|773604|789133|851930|858697|861135|891456|891457|891458|891459|891460|891461|891462|891463|891464|891465|891466|891467|891468|891469|891470|891471|891472|891473|891474|891475|891476|891477|891478|891479|891480|891481|891482|891483|891484|891485|891486|891487|891488|891489|891490|891491|891492|891493|891494|891495|891496|891497|891498|891499|891854|891855|891856|905061|972366|972367|972368|972369|972370|972371|972372", + "upstreamId": "19752|19753|19754|19755|19756|19757|19758|19759|19760|19761|19762|34373|34374|34375|34376|34377|34378|40300|79686|79689|135059|135060|135061|135062|135063|135064|187067|187068|198646|227417|243999|257699|257700|257702|257709|338534|338541|338542|338545|338548|338551|338553|338559|338561|338562|338567|338568|338570|338572|348116|348117|348119|348121|348123|348125|348127|348134|348135|348137|348139|348158|351808|351809|351812|351814|351817|351819|351820|351821|352663|352664|352666|352667|352668|352669|352670|352672|352673|352674|352675|352676|352677|358664|358665|358666|358667|358668|358669|358670|358671|358672|429180|513673|538501|539417|549081|549083|549094|549095|549153|549155|549156|549159|549161|549163|549166|549169|549296|549298|549437|549438|549439|549440|549441|549442|549443|549444|549445|549446|581914|614611|620929|706002|773596|773604|789133|851930|858697|861135|891456|891457|891458|891459|891460|891461|891462|891463|891464|891465|891466|891467|891468|891469|891470|891471|891472|891473|891474|891475|891476|891477|891478|891479|891480|891481|891482|891483|891484|891485|891486|891487|891488|891489|891490|891491|891492|891493|891494|891495|891496|891497|891498|891499|891854|891855|891856|905061|972366|972367|972368|972369|972370|972371|972372", "text": "Megalencephalic leukoencephalopathy with subcortical cysts 1" }, { - "baseId": "19761|135059|227417|254023|254024|254025|254026|254027|254029|254030|257709|268677|313075|313076|313077|313081|313084|313085|313086|313088|313090|313099|313100|313102|313108|313109|313110|313114|319132|319134|319137|319138|319149|319150|319153|319154|319155|319160|319164|325250|325251|325263|325264|325268|325272|325282|325284|325290|325292|325293|325297|325298|326092|326098|326099|326100|326103|326109|326112|326113|326114|326125|326128|326129|326132|326140|326144|326146|348115|348135|348137|348155|348156|351818|352665|352671|539106|539107|549441|701646|706002|742985|742986|744491|752515|758133|773597|773598|773599|773604|786625|786626|786629|849396|867458|867459|867460|867461|867462|867463|867464|867465|867466|867467|867468|867469|867470|867471|867472|867473|867474|867475|867476|868615|980063|980064|980065|980066|980067", + "upstreamId": "19761|135059|227417|254023|254024|254025|254026|254027|254029|254030|257709|268677|313075|313076|313077|313081|313084|313085|313086|313088|313090|313099|313100|313102|313108|313109|313110|313114|319132|319134|319137|319138|319149|319150|319153|319154|319155|319160|319164|325250|325251|325263|325264|325268|325272|325282|325284|325290|325292|325293|325297|325298|326092|326098|326099|326100|326103|326109|326112|326113|326114|326125|326128|326129|326132|326140|326144|326146|348115|348135|348137|348155|348156|351818|352665|352671|539106|539107|549441|701646|706002|742985|742986|744491|752515|758133|773597|773598|773599|773604|786625|786626|786629|849396|867458|867459|867460|867461|867462|867463|867464|867465|867466|867467|867468|867469|867470|867471|867472|867473|867474|867475|867476|868615|980063|980064|980065|980066|980067", "text": "Megalencephalic leukoencephalopathy with subcortical cysts" }, { - "baseId": "19763|19764|19765|39493|39494|39495|39496|101831|101833|177023|190582|190585|225848|374406|375188|375475|377584|377595|377605|377609|409644|426173|465768|466485|466490|513458|513459|567521|570302|570325|610520|644742|644743|644744|693887|693889|714963|726674|770948|785294|791620|791621|791622|919660|937483|957783|957786|957787|971051", + "upstreamId": "19763|19764|19765|39493|39494|39495|39496|101831|101833|177023|190582|190585|225848|374406|375188|375475|377584|377595|377605|377609|409644|426173|465768|466485|466490|513458|513459|567521|570302|570325|610520|644742|644743|644744|693887|693889|714963|726674|770948|785294|791620|791621|791622|919660|937483|957783|957786|957787|971051", "text": "ALG1-CDG" }, { - "baseId": "19763|22745|39496|44363|99631|101293|101329|101330|101331|101827|101829|101830|101887|101982|102019|135541|136138|175940|190559|190582|190583|190599|191270|192513|194512|195644|195742|225848|237146|246889|247614|254015|268170|278557|278565|278588|278607|278644|278645|278656|278658|278672|278679|278680|278684|278690|279809|279815|279816|279829|279830|279831|279832|279855|279865|279913|279965|279966|279967|279973|279979|280008|281016|281017|281018|281027|281028|281030|281032|281038|281039|281042|281614|281615|281618|281621|281628|281633|281634|281638|282798|282802|282807|282808|282821|282823|282824|282825|282828|282829|282860|282862|283099|283122|283126|283134|283135|283139|283146|283147|290406|291249|293638|293666|293675|293685|293694|293697|295041|295049|295078|295097|295725|295727|298690|298716|298718|298727|298728|298733|298735|298755|298767|301217|301220|301392|304351|304355|304359|304560|304587|304618|304643|304644|304646|304647|304649|304653|304655|304656|304661|304671|304672|304683|304689|304690|304696|304697|304698|304705|304714|304716|308170|308177|308184|308196|308392|308394|308395|308396|308398|308404|308406|308412|308413|308415|308417|308418|308979|308980|308981|309100|309151|309207|312329|312340|312543|312545|312563|312566|312568|312575|313459|313460|313461|313473|313477|313478|313481|313486|313487|313500|313502|313503|313505|313564|313567|313568|313569|313570|313572|313585|313587|313592|313594|313611|313613|313884|314149|315269|318212|318214|318215|318217|318231|318427|318434|318561|318562|318926|318946|318973|319815|320303|320629|320630|320638|322122|324269|324282|324297|324300|324347|324362|324675|324687|324742|324999|325029|325030|325032|325048|325051|325055|325057|325434|326701|326763|328317|328323|328326|328341|329377|329398|329405|329428|329433|329435|329743|333063|334323|334369|334746|334761|335785|335991|336419|336519|336530|336601|336604|336917|336963|337947|337954|337962|337968|338483|338484|338526|340021|340983|342229|342238|342437|343781|345723|345730|345997|345999|347112|347304|347305|347306|347328|348097|350111|351790|353372|353850|406444|409644|470886|538399|571212|573495|575095|614140|614141|620296|648660|677999|678004|678005|678006|678007|678008|678009|678010|678011|678012|678013|678014|678015|678016|678017|678018|678019|678020|678022|678023|716952|780116|848380|848381|848382|848383|848384|899143|899144|899145|899146|899147|899148|899149|899150|899151|899152|899153|899154|899155|899156|899157|899158|899159|899160|899161|899162|899163|899164|899165|899166|899167|899168|899169|899170|899171|899172|899173|899174|899175|899176|899177|899178|899179|899180|899181|899182|899183|899184|899185|899186|899187|899188|899189|899190|899191|899192|899193|899194|899195|899196|900459|900460|900461|951090|970267", + "upstreamId": "19763|22745|39496|44363|99631|101293|101329|101330|101331|101827|101829|101830|101887|101982|102019|135541|136138|175940|190559|190582|190583|190599|191270|192513|194512|195644|195742|225848|237146|246889|247614|254015|268170|278557|278565|278588|278607|278644|278645|278656|278658|278672|278679|278680|278684|278690|279809|279815|279816|279829|279830|279831|279832|279855|279865|279913|279965|279966|279967|279973|279979|280008|281016|281017|281018|281027|281028|281030|281032|281038|281039|281042|281614|281615|281618|281621|281628|281633|281634|281638|282798|282802|282807|282808|282821|282823|282824|282825|282828|282829|282860|282862|283099|283122|283126|283134|283135|283139|283146|283147|290406|291249|293638|293666|293675|293685|293694|293697|295041|295049|295078|295097|295725|295727|298690|298716|298718|298727|298728|298733|298735|298755|298767|301217|301220|301392|304351|304355|304359|304560|304587|304618|304643|304644|304646|304647|304649|304653|304655|304656|304661|304671|304672|304683|304689|304690|304696|304697|304698|304705|304714|304716|308170|308177|308184|308196|308392|308394|308395|308396|308398|308404|308406|308412|308413|308415|308417|308418|308979|308980|308981|309100|309151|309207|312329|312340|312543|312545|312563|312566|312568|312575|313459|313460|313461|313473|313477|313478|313481|313486|313487|313500|313502|313503|313505|313564|313567|313568|313569|313570|313572|313585|313587|313592|313594|313611|313613|313884|314149|315269|318212|318214|318215|318217|318231|318427|318434|318561|318562|318926|318946|318973|319815|320303|320629|320630|320638|322122|324269|324282|324297|324300|324347|324362|324675|324687|324742|324999|325029|325030|325032|325048|325051|325055|325057|325434|326701|326763|328317|328323|328326|328341|329377|329398|329405|329428|329433|329435|329743|333063|334323|334369|334746|334761|335785|335991|336419|336519|336530|336601|336604|336917|336963|337947|337954|337962|337968|338483|338484|338526|340021|340983|342229|342238|342437|343781|345723|345730|345997|345999|347112|347304|347305|347306|347328|348097|350111|351790|353372|353850|406444|409644|470886|538399|571212|573495|575095|614140|614141|620296|648660|677999|678004|678005|678006|678007|678008|678009|678010|678011|678012|678013|678014|678015|678016|678017|678018|678019|678020|678022|678023|716952|780116|848380|848381|848382|848383|848384|899143|899144|899145|899146|899147|899148|899149|899150|899151|899152|899153|899154|899155|899156|899157|899158|899159|899160|899161|899162|899163|899164|899165|899166|899167|899168|899169|899170|899171|899172|899173|899174|899175|899176|899177|899178|899179|899180|899181|899182|899183|899184|899185|899186|899187|899188|899189|899190|899191|899192|899193|899194|899195|899196|900459|900460|900461|951090|970267", "text": "Congenital disorder of glycosylation" }, { - "baseId": "19763|21906|21908|21911|21912|21913|21914|28799|39892|71055|71056|71057|71058|71059|71060|71061|71062|71063|71064|71065|71066|71067|71068|71069|71070|71071|71072|71073|71074|71075|71076|71077|71078|71079|71080|71081|71082|71083|71084|71085|71086|71087|71088|71089|71090|71091|71092|71093|71094|71095|71096|71097|71098|71099|71100|71101|71102|71103|71104|71105|71106|71107|71108|71109|71110|71111|71112|71113|71114|71115|71116|71117|71118|71119|71120|71121|71122|71123|71124|71125|71126|71127|71128|71129|71130|71131|71132|71133|71134|71135|71136|71137|71138|71139|71140|71141|71142|71143|71144|71145|71146|71147|71148|71149|71150|71151|71152|71153|71154|71155|71156|71157|71158|71159|71160|71161|71162|71163|91998|171093|178739|178742|178743|178744|187046|187047|187048|187049|187050|195679|224550|224551|227404|227405|256857|256859|256860|256861|256864|256865|256867|256868|256870|256871|256872|256874|256875|256877|256878|256879|256882|256883|256885|265406|266609|274359|333155|333168|333173|343280|343288|348616|348618|348619|349682|353492|358604|358605|358606|358607|358608|358609|358610|358611|358612|358613|358614|358615|358616|358617|358618|376402|384503|424418|442195|487810|487948|487949|488000|488046|513021|513650|548737|548742|548744|548745|548747|548748|548750|548752|548753|548756|548757|548759|548762|548766|548767|548770|548772|548774|548776|548785|548789|548793|548794|548796|548798|549119|549121|549125|549136|549137|549138|549146|549148|549160|549343|549344|549345|549346|549347|549348|549349|549350|549351|549352|549353|549354|549355|549356|549357|549358|577765|590327|590328|620633|620634|620906|621631|622921|679333|728132|728133|728135|728136|728137|728138|731272|731273|741808|741810|741812|741814|741815|741816|741817|741818|745068|745407|756931|756932|756935|772610|772611|772613|772615|772617|776582|776696|786147|786148|786150|786151|788279|788317|791922|793777|798751|801738|802224|847546|917554|919849|919850|979973|979974|979975|979976|979977|979978|979979|979980|979981|979982|980390", + "upstreamId": "19763|21906|21908|21911|21912|21913|21914|28799|39892|71055|71056|71057|71058|71059|71060|71061|71062|71063|71064|71065|71066|71067|71068|71069|71070|71071|71072|71073|71074|71075|71076|71077|71078|71079|71080|71081|71082|71083|71084|71085|71086|71087|71088|71089|71090|71091|71092|71093|71094|71095|71096|71097|71098|71099|71100|71101|71102|71103|71104|71105|71106|71107|71108|71109|71110|71111|71112|71113|71114|71115|71116|71117|71118|71119|71120|71121|71122|71123|71124|71125|71126|71127|71128|71129|71130|71131|71132|71133|71134|71135|71136|71137|71138|71139|71140|71141|71142|71143|71144|71145|71146|71147|71148|71149|71150|71151|71152|71153|71154|71155|71156|71157|71158|71159|71160|71161|71162|71163|91998|171093|178739|178742|178743|178744|187046|187047|187048|187049|187050|195679|224550|224551|227404|227405|256857|256859|256860|256861|256864|256865|256867|256868|256870|256871|256872|256874|256875|256877|256878|256879|256882|256883|256885|265406|266609|274359|333155|333168|333173|343280|343288|348616|348618|348619|349682|353492|358604|358605|358606|358607|358608|358609|358610|358611|358612|358613|358614|358615|358616|358617|358618|376402|384503|424418|442195|487810|487948|487949|488000|488046|513021|513650|548737|548742|548744|548745|548747|548748|548750|548752|548753|548756|548757|548759|548762|548766|548767|548770|548772|548774|548776|548785|548789|548793|548794|548796|548798|549119|549121|549125|549136|549137|549138|549146|549148|549160|549343|549344|549345|549346|549347|549348|549349|549350|549351|549352|549353|549354|549355|549356|549357|549358|577765|590327|590328|620633|620634|620906|621631|622921|679333|728132|728133|728135|728136|728137|728138|731272|731273|741808|741810|741812|741814|741815|741816|741817|741818|745068|745407|756931|756932|756935|772610|772611|772613|772615|772617|776582|776696|786147|786148|786150|786151|788279|788317|791922|793777|798751|801738|802224|847546|917554|919849|919850|979973|979974|979975|979976|979977|979978|979979|979980|979981|979982|980390", "text": "Finnish congenital nephrotic syndrome" }, { - "baseId": "19766|19767|19768|19770|19772|19774|45105|45106|45107|45108|45109|45110|45111|45112|45599|49462|53044|53047|53048|53049|53053|54675|54677|54678|54680|54681|54682|54683|54685|54686|54690|54692|54693|54694|54696|54697|54698|54699|54701|54702|54703|54704|54708|54710|54711|54713|54714|54716|54717|54717|54718|54720|54721|54722|54723|54727|99431|141803|141804|141806|141809|175032|175033|175034|175036|175037|175043|175045|175047|175048|175311|175312|175313|175314|175315|175323|175325|178631|178633|189875|189877|189880|195922|198307|198307|198308|198309|198313|198316|198320|198321|198326|198327|198330|198331|198332|214486|224404|224405|229941|229942|229948|229949|236779|240850|240851|248504|264565|311447|311448|311449|317037|317039|317040|317041|317042|323019|323021|323578|323593|323602|323607|323616|359971|371495|373518|373519|373521|373531|397072|397424|397426|397428|397590|397591|397597|397598|397600|397602|397604|397609|397839|397841|397964|397975|397977|397979|415237|420993|460179|460182|460194|460201|460299|460307|460308|460549|460552|460554|460558|460974|460977|460982|460984|460986|460989|460990|461001|502897|503482|503491|503781|510223|510228|510230|510231|510238|513598|524874|525438|525440|525452|525454|525456|525526|525526|525529|525669|525671|525676|525799|525802|525804|525805|525807|525814|563971|563977|564755|564762|564763|564769|564773|564782|566525|566526|566531|566532|569776|569781|614996|614998|639186|639187|639188|639189|639190|639191|639192|639193|639194|639195|639196|639197|639198|639199|639200|639201|639202|639203|639204|639205|639206|639207|679539|685277|689987|692892|692893|775673|777893|796485|837368|837369|837370|837371|837372|837373|837374|866451|866452|866453|866454|866457|866458|866459|866460|866461|866462|868525|917054|925945|925946|925947|935201|935202|935203|935204|935205|947102|947103|947104|956227|956228|956229|956230|956231|956232|956233|956234|956235|956236|956237|956238|956239|956240|956241|956242|956243|956244|956245|956246|956247|956248|956249|956250|956251|956252|956253|956254|956255|956256|956257|959949|960730|960731|960732", + "upstreamId": "19766|19767|19768|19770|19772|19774|45105|45106|45107|45108|45109|45110|45111|45112|45599|49462|53044|53047|53048|53049|53053|54675|54677|54678|54680|54681|54682|54683|54685|54686|54690|54692|54693|54694|54696|54697|54698|54699|54701|54702|54703|54704|54708|54710|54711|54713|54714|54716|54717|54717|54718|54720|54721|54722|54723|54727|99431|141803|141804|141806|141809|175032|175033|175034|175036|175037|175043|175045|175047|175048|175311|175312|175313|175314|175315|175323|175325|178631|178633|189875|189877|189880|195922|198307|198307|198308|198309|198313|198316|198320|198321|198326|198327|198330|198331|198332|214486|224404|224405|229941|229942|229948|229949|236779|240850|240851|248504|264565|311447|311448|311449|317037|317039|317040|317041|317042|323019|323021|323578|323593|323602|323607|323616|359971|371495|373518|373519|373521|373531|397072|397424|397426|397428|397590|397591|397597|397598|397600|397602|397604|397609|397839|397841|397964|397975|397977|397979|415237|420993|460179|460182|460194|460201|460299|460307|460308|460549|460552|460554|460558|460974|460977|460982|460984|460986|460989|460990|461001|502897|503482|503491|503781|510223|510228|510230|510231|510238|513598|524874|525438|525440|525452|525454|525456|525526|525526|525529|525669|525671|525676|525799|525802|525804|525805|525807|525814|563971|563977|564755|564762|564763|564769|564773|564782|566525|566526|566531|566532|569776|569781|614996|614998|639186|639187|639188|639189|639190|639191|639192|639193|639194|639195|639196|639197|639198|639199|639200|639201|639202|639203|639204|639205|639206|639207|679539|685277|689987|692892|692893|775673|777893|796485|837368|837369|837370|837371|837372|837373|837374|866451|866452|866453|866454|866457|866458|866459|866460|866461|866462|868525|917054|925945|925946|925947|935201|935202|935203|935204|935205|947102|947103|947104|956227|956228|956229|956230|956231|956232|956233|956234|956235|956236|956237|956238|956239|956240|956241|956242|956243|956244|956245|956246|956247|956248|956249|956250|956251|956252|956253|956254|956255|956256|956257|959949|960730|960731|960732", "text": "Myofibrillar myopathy, ZASP-related" }, { - "baseId": "19767|20032|20033|20038|20039|20040|20041|33471|33473|33474|38832|39426|39429|39430|39431|39432|39433|48018|51262|52239|55766|57196|57282|77299|77309|77750|77753|131994|132005|132007|136760|169564|173493|173633|174415|176795|178263|178281|228356|354298", + "upstreamId": "19767|20032|20033|20038|20039|20040|20041|33471|33473|33474|38832|39426|39429|39430|39431|39432|39433|48018|51262|52239|55766|57196|57282|77299|77309|77750|77753|131994|132005|132007|136760|169564|173493|173633|174415|176795|178263|178281|228356|354298", "text": "Neuromuscular disease" }, { - "baseId": "19767|20875|48065|53432|53436|77287|77297|77310|247640|361040|682327", + "upstreamId": "19767|20875|48065|53432|53436|77287|77297|77310|247640|361040|682327", "text": "Myofibrillar myopathy" }, { - "baseId": "19768|19769|19770|19771|19772|19773|19774|53044|53048|54696|54717|141809|198307|224404|311447|317039|317040|317041|317042|323019|323021|323607|415237|525526|525814|866450|866451|866452|866453|866454|866457|866458|866459|866460|866461|866462|868525|919299", + "upstreamId": "19768|19769|19770|19771|19772|19773|19774|53044|53048|54696|54717|141809|198307|224404|311447|317039|317040|317041|317042|323019|323021|323607|415237|525526|525814|866450|866451|866452|866453|866454|866457|866458|866459|866460|866461|866462|868525|919299", "text": "Dilated cardiomyopathy 1C" }, { - "baseId": "19770|54699", + "upstreamId": "19770|54699", "text": "Familial hypertrophic cardiomyopathy 24" }, { - "baseId": "19774", + "upstreamId": "19774", "text": "Left ventricular noncompaction 3" }, { - "baseId": "19775|19776|19777|196445|242852|429997|429998", + "upstreamId": "19775|19776|19777|196445|242852|429997|429998", "text": "Breast cancer, early-onset" }, { - "baseId": "19775|19775|19776|19777|19777|19777|39492|39492|133608|133608|133609|133610|133610|133611|133611|133612|133613|133613|133614|133614|133615|133617|133617|133618|133619|133619|133620|133620|133621|133622|133623|133623|133624|133624|133625|133626|133626|133627|133627|133629|133630|133630|133631|133631|133632|133632|133632|133634|133634|133636|133636|133637|133637|133640|133640|133641|133641|133642|133642|133643|133643|133644|133644|133646|133646|133647|133648|133648|133649|133649|133650|133650|133651|133651|133652|133652|133653|133653|133654|133655|133655|133656|136460|136460|136500|137484|137484|137487|137489|137490|137490|137491|137491|137492|137492|137493|137494|137494|137494|137495|137495|137496|137496|137497|137497|137498|137499|137499|137500|137500|139852|139853|139853|139854|139855|139855|139856|139856|139857|139858|139858|139859|139859|139860|139861|139861|139862|139863|139863|139864|139866|139866|140277|140278|140278|140279|140282|140282|140283|140283|140284|140285|140285|140286|140287|140288|140289|140289|150522|150522|150533|150533|150539|150539|150566|150566|150572|150575|150659|150698|150699|150699|150709|150709|150773|150898|151019|151032|151033|151050|151050|151064|151096|151096|151116|151116|151122|151149|151201|151213|151213|151213|151217|151259|151259|151304|151304|151380|151380|151408|151408|151412|151412|151412|151458|151458|151467|151467|151467|151468|151468|151475|151475|151526|151541|151552|151575|151661|151661|151689|151689|151689|151695|151827|151841|151892|151893|151893|151994|151994|152057|152057|152060|152060|152072|152080|152080|152104|152104|152172|152172|152187|152187|152206|152206|152243|152265|152269|152282|152287|152309|152309|152446|152446|152520|152523|152523|152614|152629|152629|152663|152663|152679|152679|152735|152735|152735|166259|180923|180924|180925|180925|180925|180926|180926|180927|180928|180929|180932|180932|180932|180934|180934|180935|180935|180936|180936|180937|180938|180938|180940|180941|180942|180943|180944|180947|180948|180949|180949|180950|180950|180951|180952|180952|180954|180954|180955|180956|180956|180957|180958|180959|180959|180960|180960|180961|180962|180962|185186|185187|185187|185188|185189|185189|185190|185190|185192|185194|185195|185195|185197|185198|185199|185200|185201|185203|185204|185204|185205|185205|185207|185207|185210|185211|185211|185212|185212|185213|185213|185213|185214|185215|185215|185216|185218|185222|185223|185224|185224|185225|185226|185227|185227|185228|185230|185230|185231|185233|185236|185237|185238|185240|185240|185240|185242|185242|185243|185244|185245|185246|185247|185250|185251|185253|185254|185254|185256|185256|185257|185258|185258|185259|185260|185260|185261|185261|185263|185264|185266|185267|185267|185268|185268|185270|185272|185273|185273|185273|185275|185275|185277|185278|185279|185280|185281|185283|185283|185284|185285|185286|185287|185287|185289|185290|185292|185292|185293|185294|185294|185295|185296|185296|185297|185297|185298|185300|185302|185303|185304|185304|185305|185306|185308|185309|185310|185311|185312|185314|185315|185315|185316|185316|185317|185317|185319|185320|185321|185321|185322|185323|185326|185327|185328|185329|185330|185330|186242|186266|186269|186271|186271|208407|208409|213356|213358|213358|213359|213360|213361|213361|213362|213362|213363|213363|213363|213364|213365|213369|213370|213371|213372|213373|213374|213374|213375|213377|213377|213380|222698|222699|222699|222700|222703|222704|222706|222706|222708|222710|222710|222712|222714|222716|222716|222717|222718|222718|222719|222720|222722|222725|222726|222726|222727|223362|223362|225332|226365|226367|231993|231995|231995|231996|231997|231997|231997|231998|231999|232000|232001|232001|232002|232003|232003|232005|232006|232006|232007|232008|232009|232011|232012|232013|236254|236255|236256|236256|236257|236260|236264|236264|236266|236266|236268|236268|236269|236270|236272|236273|236273|236275|236276|236276|236277|236278|236280|236283|236284|236284|236285|236287|236291|236294|236295|236296|236296|236296|236297|236298|236299|236300|236301|236302|236303|236304|236305|236306|236306|236307|236309|236311|236312|236313|236314|236315|236317|236318|236319|236320|236324|236324|236325|236329|236330|236332|236332|236335|236338|236339|236340|236340|236341|236341|236343|236345|236346|236347|236348|236350|236352|236353|236355|236355|236356|236358|236358|236359|236360|236361|236362|236363|236364|236365|236368|236369|236370|236372|236372|236373|236375|236377|236379|236380|236381|236384|236386|236387|236388|236389|236390|236391|236392|236393|236395|236396|236397|236397|236399|236400|236402|236403|236404|236407|236409|236410|236411|236413|236414|236415|236416|236418|236421|236423|236426|236427|236430|236431|236432|236433|236435|242842|242843|242844|242845|242846|242847|242848|242849|242850|242851|242852|242853|242854|242856|242857|242858|242859|242860|242861|242862|242863|242864|242864|242865|242866|242867|242868|242869|242870|242871|242872|242873|242874|242875|242876|242877|242878|242880|242880|242881|242882|242883|242884|242886|248531|264690|264696|264776|264779|329234|329243|329244|329245|329249|329251|329252|329258|329259|329263|329264|329277|339462|339464|339465|339466|339478|339486|339489|339494|339495|339496|339496|339511|339511|339512|345260|345261|345262|345269|345271|345273|345283|345284|345286|345288|345291|345292|345292|345294|345296|345297|346653|346656|346660|346663|346665|346671|346672|346674|346677|346679|346682|346686|346687|346687|358954|358955|358955|358956|358957|358958|358959|358959|361023|361023|375404|375412|375412|375416|375438|376305|376323|376329|376340|376342|376412|376414|376416|376428|376435|376447|376459|378577|378582|378586|378592|378593|378599|378621|378623|401525|402191|402197|402202|402207|402210|402211|402212|402212|402215|402216|402217|402218|402222|402224|402226|402226|402232|402234|402237|402238|402239|402241|402243|402244|402245|402245|402246|402249|402250|402251|402252|402254|402258|402262|402263|402265|402265|402267|402268|402270|402271|402277|402278|402286|402292|402295|402297|402301|402307|402312|402314|402317|402319|402321|402324|402646|402655|402659|402664|402667|402669|402669|402671|402677|402681|402684|402686|402693|402697|402699|402710|402718|402721|402730|402736|402740|402748|402750|402762|402764|402776|402781|402784|402785|402785|402786|402789|402790|402792|402797|402798|402802|402803|402805|402806|402808|402809|402811|402812|402814|402816|402818|402820|402823|402824|402825|402829|402830|402832|402835|402841|402842|402845|402848|402850|402853|402853|402855|402858|402877|402877|402880|402882|402885|402887|410113|410114|410115|410118|410119|410120|410122|410123|410125|410125|410126|410128|410130|410133|410136|410137|410138|410138|410139|410142|410142|410145|410152|410155|410157|410161|410163|423239|429997|432931|432933|432935|432936|432936|445849|445850|467062|467094|467095|467103|467104|467107|467113|467117|467121|467126|467129|467132|467141|467146|467150|467152|467153|467156|467158|467165|467167|467170|467172|467175|467180|467181|467186|467187|467189|467192|468045|468047|468049|468052|468053|468055|468060|468061|468061|468064|468070|468074|468080|468081|468084|468087|468088|468091|468092|468093|468098|468099|468101|468104|468105|468109|468110|468111|468114|468116|468118|468119|468119|468125|468126|468137|468138|468300|468317|468319|468321|468321|468323|468335|468342|468344|468347|468351|468354|468365|468377|468393|468398|468402|468407|468408|468409|468410|468413|468415|468429|468431|468440|468445|468448|468448|468453|468459|468460|468462|468467|468473|468485|468489|468498|468498|468499|468505|468505|468506|468521|468524|468526|468556|468557|468558|468560|468561|468568|468569|468579|468587|468589|468592|468603|468605|468618|468621|468622|468627|468631|468635|468653|468655|468662|468668|468676|468682|468684|468692|468695|468700|468702|468714|468718|468725|468731|468732|468734|468738|479014|479023|479025|479030|479032|479037|479044|479050|479055|479058|479059|479062|479063|479064|479066|479067|479068|479070|479076|479084|479087|479089|479090|479100|479107|479109|479110|479114|479116|479119|479120|479122|479124|479125|479128|479130|479136|479139|479141|479143|479145|479148|479150|479152|479157|479162|479163|479166|479168|479176|479185|479190|479196|479197|479198|479198|479198|479201|479210|479219|479224|479226|479227|479229|479237|479239|479246|479254|479255|479260|479262|479262|479730|479730|479745|479753|479770|479786|479793|479797|479803|479813|479815|479842|479860|479871|479872|479882|479882|479897|479927|479949|479950|479956|480486|480487|480488|480488|480489|483023|483025|483026|483029|483029|483040|483050|483054|483056|483058|483062|483065|483066|485052|485060|485064|485066|485084|485199|485199|485210|485225|485226|485233|485256|485257|485259|485268|485274|485275|485275|485276|485445|485467|485479|485488|485493|485496|488006|506281|530512|530514|530840|530844|531041|531046|531047|531318|531322|531324|531326|531328|531329|531331|531341|531345|531361|531376|531380|531392|531395|531405|531413|531416|531419|531424|531426|531429|531436|531438|531439|531480|531483|531486|531492|531494|531498|531499|531504|531506|531508|531514|531515|531518|531522|531525|531529|531534|531536|531539|531548|531551|531562|531568|531572|531573|531576|531577|531581|531585|531590|531595|531602|531603|531605|531611|531615|531622|531625|531635|531637|531639|531644|531645|531650|531651|531654|531655|531658|531668|531669|531797|531802|531812|531815|531820|531824|531834|531836|531840|531846|531850|531853|531856|531858|531869|531874|531879|536166|536508|539372|539373|539375|539376|539377|539379|551936|568649|568650|568653|569362|569364|569368|569377|569379|569386|569389|569393|569398|569403|569406|569411|569418|569419|569421|569425|569427|569432|569435|569441|569445|569450|569451|569458|569465|570714|570716|570718|570720|570822|570826|570832|570834|571360|571362|571363|571368|571369|571371|571373|571374|571377|571379|571381|571384|571386|571389|571390|571392|571395|571398|571401|571402|571405|571406|571409|571414|571417|571421|571422|571425|571779|571783|571789|571807|571813|571817|571821|571838|571855|571861|571868|571870|571877|571886|571887|571892|571894|571897|571899|571906|571915|571918|571928|571929|571939|571948|571955|571961|571966|574277|574544|574545|574546|574547|574548|574549|574550|574551|574552|574553|574554|574555|574556|574557|574558|574559|574560|574561|576012|576013|576014|576014|576015|576016|576017|576018|576019|576019|576020|576020|576021|576021|576022|576023|576024|576024|576025|576026|576027|576028|618742|618746|618747|618760|618764|618768|618770|618771|618772|618787|618794|618796|618802|618803|618815|618817|619702|619733|619748|619756|621592|646268|646269|646270|646271|646272|646273|646274|646275|646276|646277|646278|646279|646280|646281|646282|646283|646284|646285|646286|646287|646288|646289|646290|646291|646292|646293|646294|646295|646295|646296|646297|646298|646299|646300|646301|646302|646303|646304|646305|646306|646307|646308|646309|646310|646311|646312|646313|646314|646315|646316|646317|646318|646319|646320|646321|646322|646323|646324|646325|646326|646327|646328|646329|646330|646331|646332|646333|646334|646335|646336|646337|646338|646339|646340|646341|646342|646343|646343|646344|646345|646346|646347|646348|646349|646350|646351|646352|646353|646354|646355|646356|646357|646358|646359|646360|646361|646362|646363|646364|646365|646366|646367|646368|646369|646370|646371|646372|646373|646374|646375|646376|646377|652823|652825|652826|652848|652852|652854|652857|652861|653160|653162|653172|653307|653309|653311|653484|653486|653489|653495|653498|688804|694139|695762|704262|731171|756004|756005|760625|771687|771688|771690|771700|771702|771704|776377|785665|785667|785669|785671|785672|785673|785679|791803|800058|814183|814184|814185|814205|814225|814230|814239|814241|814253|814261|814264|814270|814282|814283|814284|814287|814294|814299|814304|814305|814308|814318|814322|814324|814335|814339|814342|814364|814367|814371|814373|815702|815703|821129|821130|821131|821132|821134|821135|821136|821137|821138|821139|821140|821141|821142|821143|821144|821145|821146|821147|845726|845727|845728|845729|845730|845731|845732|845733|845734|845735|845736|845737|845738|845739|845740|845741|845742|845743|845744|845745|845746|845747|845748|845749|845750|845751|845752|845753|845754|845755|845756|845757|845758|845759|845760|845761|845762|845763|845764|845765|845766|845767|845768|845769|845770|845771|845772|845773|845774|845775|845776|845777|845778|845779|845780|845781|845782|845783|845784|845785|845786|845787|845788|845789|845790|845791|845792|845793|845794|845795|845796|845797|845798|845799|845800|845801|845802|845803|845804|845805|845806|845807|845808|845809|845810|845811|845812|845813|845814|845815|845816|845817|845818|845819|845820|845821|845822|845823|845824|845825|845826|845827|845828|845829|845830|845831|845832|845833|845834|852233|852773|852774|852776|852780|852782|852783|852899|852903|852905|878007|878008|878009|878010|878011|878012|878013|878014|878015|878016|878017|878018|878019|878020|878021|878022|878023|878024|878025|878026|878027|878028|878029|878030|878031|878032|878033|878034|878035|878036|878037|878038|878039|878040|880560|904101|914043|914050|914064|914065|914091|914096|914097|914102|914142|914146|914151|917840|917852|917857|917865|917866|917868|919757|928400|928401|928402|928403|928404|928405|928406|928407|928408|928409|928410|928411|928412|928413|928414|928415|928416|928417|928418|928419|928420|928421|928422|928423|928424|928425|928426|928427|928428|928429|928430|938065|938066|938067|938068|938069|938070|938071|938072|938073|938074|938075|938076|938077|938078|938079|938080|938081|938082|938083|938084|938085|938086|938087|938088|938089|938090|938091|938092|938093|938094|938095|938096|938097|938098|938099|938100|938101|938102|938103|938104|938105|938106|938107|938108|940424|940425|941188|941189|941190|941191|950089|950090|950091|950092|950093|950094|950095|950096|950097|950098|950099|950100|950101|950102|950103|950104|950105|950106|950107|950108|950109|950110|950111|950112|950113|950114|950115|950116|950117|950118|950119|950120|950121|950122|950123|950124|950125|950126|950127|950128|958217|958218|958219|958220|958221|958222|958223|958224|958225|958226|958227|958228|958229|958230|958231|960228|960229|960230|960891", + "upstreamId": "19775|19775|19776|19777|19777|19777|39492|39492|133608|133608|133609|133610|133610|133611|133611|133612|133613|133613|133614|133614|133615|133617|133617|133618|133619|133619|133620|133620|133621|133622|133623|133623|133624|133624|133625|133626|133626|133627|133627|133629|133630|133630|133631|133631|133632|133632|133632|133634|133634|133636|133636|133637|133637|133640|133640|133641|133641|133642|133642|133643|133643|133644|133644|133646|133646|133647|133648|133648|133649|133649|133650|133650|133651|133651|133652|133652|133653|133653|133654|133655|133655|133656|136460|136460|136500|137484|137484|137487|137489|137490|137490|137491|137491|137492|137492|137493|137494|137494|137494|137495|137495|137496|137496|137497|137497|137498|137499|137499|137500|137500|139852|139853|139853|139854|139855|139855|139856|139856|139857|139858|139858|139859|139859|139860|139861|139861|139862|139863|139863|139864|139866|139866|140277|140278|140278|140279|140282|140282|140283|140283|140284|140285|140285|140286|140287|140288|140289|140289|150522|150522|150533|150533|150539|150539|150566|150566|150572|150575|150659|150698|150699|150699|150709|150709|150773|150898|151019|151032|151033|151050|151050|151064|151096|151096|151116|151116|151122|151149|151201|151213|151213|151213|151217|151259|151259|151304|151304|151380|151380|151408|151408|151412|151412|151412|151458|151458|151467|151467|151467|151468|151468|151475|151475|151526|151541|151552|151575|151661|151661|151689|151689|151689|151695|151827|151841|151892|151893|151893|151994|151994|152057|152057|152060|152060|152072|152080|152080|152104|152104|152172|152172|152187|152187|152206|152206|152243|152265|152269|152282|152287|152309|152309|152446|152446|152520|152523|152523|152614|152629|152629|152663|152663|152679|152679|152735|152735|152735|166259|180923|180924|180925|180925|180925|180926|180926|180927|180928|180929|180932|180932|180932|180934|180934|180935|180935|180936|180936|180937|180938|180938|180940|180941|180942|180943|180944|180947|180948|180949|180949|180950|180950|180951|180952|180952|180954|180954|180955|180956|180956|180957|180958|180959|180959|180960|180960|180961|180962|180962|185186|185187|185187|185188|185189|185189|185190|185190|185192|185194|185195|185195|185197|185198|185199|185200|185201|185203|185204|185204|185205|185205|185207|185207|185210|185211|185211|185212|185212|185213|185213|185213|185214|185215|185215|185216|185218|185222|185223|185224|185224|185225|185226|185227|185227|185228|185230|185230|185231|185233|185236|185237|185238|185240|185240|185240|185242|185242|185243|185244|185245|185246|185247|185250|185251|185253|185254|185254|185256|185256|185257|185258|185258|185259|185260|185260|185261|185261|185263|185264|185266|185267|185267|185268|185268|185270|185272|185273|185273|185273|185275|185275|185277|185278|185279|185280|185281|185283|185283|185284|185285|185286|185287|185287|185289|185290|185292|185292|185293|185294|185294|185295|185296|185296|185297|185297|185298|185300|185302|185303|185304|185304|185305|185306|185308|185309|185310|185311|185312|185314|185315|185315|185316|185316|185317|185317|185319|185320|185321|185321|185322|185323|185326|185327|185328|185329|185330|185330|186242|186266|186269|186271|186271|208407|208409|213356|213358|213358|213359|213360|213361|213361|213362|213362|213363|213363|213363|213364|213365|213369|213370|213371|213372|213373|213374|213374|213375|213377|213377|213380|222698|222699|222699|222700|222703|222704|222706|222706|222708|222710|222710|222712|222714|222716|222716|222717|222718|222718|222719|222720|222722|222725|222726|222726|222727|223362|223362|225332|226365|226367|231993|231995|231995|231996|231997|231997|231997|231998|231999|232000|232001|232001|232002|232003|232003|232005|232006|232006|232007|232008|232009|232011|232012|232013|236254|236255|236256|236256|236257|236260|236264|236264|236266|236266|236268|236268|236269|236270|236272|236273|236273|236275|236276|236276|236277|236278|236280|236283|236284|236284|236285|236287|236291|236294|236295|236296|236296|236296|236297|236298|236299|236300|236301|236302|236303|236304|236305|236306|236306|236307|236309|236311|236312|236313|236314|236315|236317|236318|236319|236320|236324|236324|236325|236329|236330|236332|236332|236335|236338|236339|236340|236340|236341|236341|236343|236345|236346|236347|236348|236350|236352|236353|236355|236355|236356|236358|236358|236359|236360|236361|236362|236363|236364|236365|236368|236369|236370|236372|236372|236373|236375|236377|236379|236380|236381|236384|236386|236387|236388|236389|236390|236391|236392|236393|236395|236396|236397|236397|236399|236400|236402|236403|236404|236407|236409|236410|236411|236413|236414|236415|236416|236418|236421|236423|236426|236427|236430|236431|236432|236433|236435|242842|242843|242844|242845|242846|242847|242848|242849|242850|242851|242852|242853|242854|242856|242857|242858|242859|242860|242861|242862|242863|242864|242864|242865|242866|242867|242868|242869|242870|242871|242872|242873|242874|242875|242876|242877|242878|242880|242880|242881|242882|242883|242884|242886|248531|264690|264696|264776|264779|329234|329243|329244|329245|329249|329251|329252|329258|329259|329263|329264|329277|339462|339464|339465|339466|339478|339486|339489|339494|339495|339496|339496|339511|339511|339512|345260|345261|345262|345269|345271|345273|345283|345284|345286|345288|345291|345292|345292|345294|345296|345297|346653|346656|346660|346663|346665|346671|346672|346674|346677|346679|346682|346686|346687|346687|358954|358955|358955|358956|358957|358958|358959|358959|361023|361023|375404|375412|375412|375416|375438|376305|376323|376329|376340|376342|376412|376414|376416|376428|376435|376447|376459|378577|378582|378586|378592|378593|378599|378621|378623|401525|402191|402197|402202|402207|402210|402211|402212|402212|402215|402216|402217|402218|402222|402224|402226|402226|402232|402234|402237|402238|402239|402241|402243|402244|402245|402245|402246|402249|402250|402251|402252|402254|402258|402262|402263|402265|402265|402267|402268|402270|402271|402277|402278|402286|402292|402295|402297|402301|402307|402312|402314|402317|402319|402321|402324|402646|402655|402659|402664|402667|402669|402669|402671|402677|402681|402684|402686|402693|402697|402699|402710|402718|402721|402730|402736|402740|402748|402750|402762|402764|402776|402781|402784|402785|402785|402786|402789|402790|402792|402797|402798|402802|402803|402805|402806|402808|402809|402811|402812|402814|402816|402818|402820|402823|402824|402825|402829|402830|402832|402835|402841|402842|402845|402848|402850|402853|402853|402855|402858|402877|402877|402880|402882|402885|402887|410113|410114|410115|410118|410119|410120|410122|410123|410125|410125|410126|410128|410130|410133|410136|410137|410138|410138|410139|410142|410142|410145|410152|410155|410157|410161|410163|423239|429997|432931|432933|432935|432936|432936|445849|445850|467062|467094|467095|467103|467104|467107|467113|467117|467121|467126|467129|467132|467141|467146|467150|467152|467153|467156|467158|467165|467167|467170|467172|467175|467180|467181|467186|467187|467189|467192|468045|468047|468049|468052|468053|468055|468060|468061|468061|468064|468070|468074|468080|468081|468084|468087|468088|468091|468092|468093|468098|468099|468101|468104|468105|468109|468110|468111|468114|468116|468118|468119|468119|468125|468126|468137|468138|468300|468317|468319|468321|468321|468323|468335|468342|468344|468347|468351|468354|468365|468377|468393|468398|468402|468407|468408|468409|468410|468413|468415|468429|468431|468440|468445|468448|468448|468453|468459|468460|468462|468467|468473|468485|468489|468498|468498|468499|468505|468505|468506|468521|468524|468526|468556|468557|468558|468560|468561|468568|468569|468579|468587|468589|468592|468603|468605|468618|468621|468622|468627|468631|468635|468653|468655|468662|468668|468676|468682|468684|468692|468695|468700|468702|468714|468718|468725|468731|468732|468734|468738|479014|479023|479025|479030|479032|479037|479044|479050|479055|479058|479059|479062|479063|479064|479066|479067|479068|479070|479076|479084|479087|479089|479090|479100|479107|479109|479110|479114|479116|479119|479120|479122|479124|479125|479128|479130|479136|479139|479141|479143|479145|479148|479150|479152|479157|479162|479163|479166|479168|479176|479185|479190|479196|479197|479198|479198|479198|479201|479210|479219|479224|479226|479227|479229|479237|479239|479246|479254|479255|479260|479262|479262|479730|479730|479745|479753|479770|479786|479793|479797|479803|479813|479815|479842|479860|479871|479872|479882|479882|479897|479927|479949|479950|479956|480486|480487|480488|480488|480489|483023|483025|483026|483029|483029|483040|483050|483054|483056|483058|483062|483065|483066|485052|485060|485064|485066|485084|485199|485199|485210|485225|485226|485233|485256|485257|485259|485268|485274|485275|485275|485276|485445|485467|485479|485488|485493|485496|488006|506281|530512|530514|530840|530844|531041|531046|531047|531318|531322|531324|531326|531328|531329|531331|531341|531345|531361|531376|531380|531392|531395|531405|531413|531416|531419|531424|531426|531429|531436|531438|531439|531480|531483|531486|531492|531494|531498|531499|531504|531506|531508|531514|531515|531518|531522|531525|531529|531534|531536|531539|531548|531551|531562|531568|531572|531573|531576|531577|531581|531585|531590|531595|531602|531603|531605|531611|531615|531622|531625|531635|531637|531639|531644|531645|531650|531651|531654|531655|531658|531668|531669|531797|531802|531812|531815|531820|531824|531834|531836|531840|531846|531850|531853|531856|531858|531869|531874|531879|536166|536508|539372|539373|539375|539376|539377|539379|551936|568649|568650|568653|569362|569364|569368|569377|569379|569386|569389|569393|569398|569403|569406|569411|569418|569419|569421|569425|569427|569432|569435|569441|569445|569450|569451|569458|569465|570714|570716|570718|570720|570822|570826|570832|570834|571360|571362|571363|571368|571369|571371|571373|571374|571377|571379|571381|571384|571386|571389|571390|571392|571395|571398|571401|571402|571405|571406|571409|571414|571417|571421|571422|571425|571779|571783|571789|571807|571813|571817|571821|571838|571855|571861|571868|571870|571877|571886|571887|571892|571894|571897|571899|571906|571915|571918|571928|571929|571939|571948|571955|571961|571966|574277|574544|574545|574546|574547|574548|574549|574550|574551|574552|574553|574554|574555|574556|574557|574558|574559|574560|574561|576012|576013|576014|576014|576015|576016|576017|576018|576019|576019|576020|576020|576021|576021|576022|576023|576024|576024|576025|576026|576027|576028|618742|618746|618747|618760|618764|618768|618770|618771|618772|618787|618794|618796|618802|618803|618815|618817|619702|619733|619748|619756|621592|646268|646269|646270|646271|646272|646273|646274|646275|646276|646277|646278|646279|646280|646281|646282|646283|646284|646285|646286|646287|646288|646289|646290|646291|646292|646293|646294|646295|646295|646296|646297|646298|646299|646300|646301|646302|646303|646304|646305|646306|646307|646308|646309|646310|646311|646312|646313|646314|646315|646316|646317|646318|646319|646320|646321|646322|646323|646324|646325|646326|646327|646328|646329|646330|646331|646332|646333|646334|646335|646336|646337|646338|646339|646340|646341|646342|646343|646343|646344|646345|646346|646347|646348|646349|646350|646351|646352|646353|646354|646355|646356|646357|646358|646359|646360|646361|646362|646363|646364|646365|646366|646367|646368|646369|646370|646371|646372|646373|646374|646375|646376|646377|652823|652825|652826|652848|652852|652854|652857|652861|653160|653162|653172|653307|653309|653311|653484|653486|653489|653495|653498|688804|694139|695762|704262|731171|756004|756005|760625|771687|771688|771690|771700|771702|771704|776377|785665|785667|785669|785671|785672|785673|785679|791803|800058|814183|814184|814185|814205|814225|814230|814239|814241|814253|814261|814264|814270|814282|814283|814284|814287|814294|814299|814304|814305|814308|814318|814322|814324|814335|814339|814342|814364|814367|814371|814373|815702|815703|821129|821130|821131|821132|821134|821135|821136|821137|821138|821139|821140|821141|821142|821143|821144|821145|821146|821147|845726|845727|845728|845729|845730|845731|845732|845733|845734|845735|845736|845737|845738|845739|845740|845741|845742|845743|845744|845745|845746|845747|845748|845749|845750|845751|845752|845753|845754|845755|845756|845757|845758|845759|845760|845761|845762|845763|845764|845765|845766|845767|845768|845769|845770|845771|845772|845773|845774|845775|845776|845777|845778|845779|845780|845781|845782|845783|845784|845785|845786|845787|845788|845789|845790|845791|845792|845793|845794|845795|845796|845797|845798|845799|845800|845801|845802|845803|845804|845805|845806|845807|845808|845809|845810|845811|845812|845813|845814|845815|845816|845817|845818|845819|845820|845821|845822|845823|845824|845825|845826|845827|845828|845829|845830|845831|845832|845833|845834|852233|852773|852774|852776|852780|852782|852783|852899|852903|852905|878007|878008|878009|878010|878011|878012|878013|878014|878015|878016|878017|878018|878019|878020|878021|878022|878023|878024|878025|878026|878027|878028|878029|878030|878031|878032|878033|878034|878035|878036|878037|878038|878039|878040|880560|904101|914043|914050|914064|914065|914091|914096|914097|914102|914142|914146|914151|917840|917852|917857|917865|917866|917868|919757|928400|928401|928402|928403|928404|928405|928406|928407|928408|928409|928410|928411|928412|928413|928414|928415|928416|928417|928418|928419|928420|928421|928422|928423|928424|928425|928426|928427|928428|928429|928430|938065|938066|938067|938068|938069|938070|938071|938072|938073|938074|938075|938076|938077|938078|938079|938080|938081|938082|938083|938084|938085|938086|938087|938088|938089|938090|938091|938092|938093|938094|938095|938096|938097|938098|938099|938100|938101|938102|938103|938104|938105|938106|938107|938108|940424|940425|941188|941189|941190|941191|950089|950090|950091|950092|950093|950094|950095|950096|950097|950098|950099|950100|950101|950102|950103|950104|950105|950106|950107|950108|950109|950110|950111|950112|950113|950114|950115|950116|950117|950118|950119|950120|950121|950122|950123|950124|950125|950126|950127|950128|958217|958218|958219|958220|958221|958222|958223|958224|958225|958226|958227|958228|958229|958230|958231|960228|960229|960230|960891", "text": "Fanconi anemia, complementation group J" }, { - "baseId": "19775|19777|22078|22089|22093|22852|22858|22868|22872|24022|24364|24486|27272|27386|27387|27391|27392|27393|27394|27395|27398|27403|27404|27405|27409|27411|27413|27416|27422|27617|27618|27619|27621|27622|27623|28691|28692|28694|28696|28698|28919|29000|29007|29022|32618|32623|32625|32700|32701|32710|32712|32716|32723|39346|40237|40609|40610|45982|45982|45991|46006|46028|46030|46080|46098|46102|46163|46172|46189|46192|46200|46247|46293|46386|46415|46460|46492|46516|46540|46545|46585|46603|46632|46687|46764|46781|50147|52758|52759|52763|52764|53968|54289|54633|65803|65869|66023|66703|67086|67556|68769|68802|68807|68827|68831|68978|69043|69207|69303|69416|69439|69482|69569|69809|69812|69882|69890|69989|69995|70055|70098|70116|70247|70268|82009|96238|96592|96781|98723|99230|106675|133266|133271|133272|133276|133277|133350|133444|133608|133610|133611|133613|133614|133617|133619|133623|133624|133626|133627|133630|133632|133634|133636|133637|133640|133641|133642|133643|133644|133646|133648|133649|133650|133652|133653|133655|133666|133667|136460|136697|136709|136716|136721|137024|137484|137490|137491|137492|137494|137495|137496|137497|137499|137500|139853|139855|139858|139859|139861|139863|140277|140278|140282|140283|140285|140286|140289|150515|150522|150533|150535|150539|150566|150699|150709|150809|150812|150832|151050|151091|151096|151213|151259|151412|151458|151467|151467|151475|151689|151764|151858|151893|151994|152001|152060|152080|152104|152172|152187|152206|152250|152309|152428|152542|152629|152663|152679|152735|153589|153590|153591|153599|153600|153604|153606|153607|153612|153614|153616|153618|153625|153626|153628|153629|153630|153644|153645|153646|153647|153648|153649|153650|171614|171616|176503|177251|180903|180908|180925|180926|180932|180934|180935|180936|180937|180938|180950|180952|180954|180955|180956|180959|180960|180962|180988|180998|181000|181005|181011|181013|181015|183007|183028|183857|185187|185189|185195|185204|185205|185207|185211|185212|185213|185215|185227|185240|185242|185254|185256|185258|185260|185261|185267|185273|185283|185287|185292|185294|185296|185297|185315|185316|185317|185321|185330|185350|185354|185366|185367|185384|185392|186271|187337|208409|213358|213361|213362|213363|213374|213377|213385|213392|213398|215366|222699|222710|222716|222718|222726|223362|225332|231995|231997|232003|232035|233855|235892|236233|236266|236268|236276|236284|236296|236324|236332|236340|236355|236358|236397|236448|236459|236461|236489|236504|236511|245074|249084|249169|260192|260193|261135|261356|262005|262921|262989|345292|358920|358954|358955|358956|358957|358958|358959|359852|360335|360472|362777|362837|362928|363110|363123|363349|363376|363442|363450|363451|363452|363456|363457|363461|363465|363466|363475|363480|363485|363497|363500|363504|363509|363512|363513|363518|363521|363522|363523|363524|363528|363532|363533|363534|363537|363539|363540|363542|363543|363547|363549|363566|363570|363572|390688|402023|402212|402226|402245|402569|402768|402785|402853|402877|403007|406150|410125|410130|410142|410259|410275|419435|419738|419746|420634|420642|420645|420650|420653|420674|429997|445850|462916|467547|468119|468384|468448|468498|469137|469166|479067|479198|479277|479287|479357|479996|480022|480079|480486|480487|480488|480489|483015|485675|487956|532188|539372|539373|539375|539376|539377|539379|551411|551412|572320|574538|574626|609138|609139|616001|619765|622523|622524|622525|622526|622527|622528|622530|622531|622532|622533|622534|622536|622537|622538|622539|622540|622541|622547|622548|622549|622550|622551|622552|622561|622562|622563|622564|622565|622566|622567|622568|622569|622570|622571|622572|622573|622574|622575|622576|622577|622578|622579|622580|622581|622582|622583|622584|622585|622586|622587|622588|622589|622590|622591|622592|622593|622594|622595|622596|622597|622598|622599|622600|622601|622602|622603|622604|622605|622606|622607|622608|622609|622610|622611|622612|622613|622614|622615|622616|622617|622618|622619|622620|622621|622622|622623|622624|622625|622626|622627|622628|622629|622630|622631|622632|622633|622634|622635|622636|622637|622638|622639|622640|622641|622642|622643|622644|622645|622646|622647|622648|622649|622650|622651|622652|622653|622654|622655|622656|622659|622660|622661|622662|622663|622664|622665|622666|622667|622668|622669|622670|622671|622672|622673|622674|622675|622677|622678|622679|622680|845688|918111|972485|972486", + "upstreamId": "19775|19777|22078|22089|22093|22852|22858|22868|22872|24022|24364|24486|27272|27386|27387|27391|27392|27393|27394|27395|27398|27403|27404|27405|27409|27411|27413|27416|27422|27617|27618|27619|27621|27622|27623|28691|28692|28694|28696|28698|28919|29000|29007|29022|32618|32623|32625|32700|32701|32710|32712|32716|32723|39346|40237|40609|40610|45982|45982|45991|46006|46028|46030|46080|46098|46102|46163|46172|46189|46192|46200|46247|46293|46386|46415|46460|46492|46516|46540|46545|46585|46603|46632|46687|46764|46781|50147|52758|52759|52763|52764|53968|54289|54633|65803|65869|66023|66703|67086|67556|68769|68802|68807|68827|68831|68978|69043|69207|69303|69416|69439|69482|69569|69809|69812|69882|69890|69989|69995|70055|70098|70116|70247|70268|82009|96238|96592|96781|98723|99230|106675|133266|133271|133272|133276|133277|133350|133444|133608|133610|133611|133613|133614|133617|133619|133623|133624|133626|133627|133630|133632|133634|133636|133637|133640|133641|133642|133643|133644|133646|133648|133649|133650|133652|133653|133655|133666|133667|136460|136697|136709|136716|136721|137024|137484|137490|137491|137492|137494|137495|137496|137497|137499|137500|139853|139855|139858|139859|139861|139863|140277|140278|140282|140283|140285|140286|140289|150515|150522|150533|150535|150539|150566|150699|150709|150809|150812|150832|151050|151091|151096|151213|151259|151412|151458|151467|151467|151475|151689|151764|151858|151893|151994|152001|152060|152080|152104|152172|152187|152206|152250|152309|152428|152542|152629|152663|152679|152735|153589|153590|153591|153599|153600|153604|153606|153607|153612|153614|153616|153618|153625|153626|153628|153629|153630|153644|153645|153646|153647|153648|153649|153650|171614|171616|176503|177251|180903|180908|180925|180926|180932|180934|180935|180936|180937|180938|180950|180952|180954|180955|180956|180959|180960|180962|180988|180998|181000|181005|181011|181013|181015|183007|183028|183857|185187|185189|185195|185204|185205|185207|185211|185212|185213|185215|185227|185240|185242|185254|185256|185258|185260|185261|185267|185273|185283|185287|185292|185294|185296|185297|185315|185316|185317|185321|185330|185350|185354|185366|185367|185384|185392|186271|187337|208409|213358|213361|213362|213363|213374|213377|213385|213392|213398|215366|222699|222710|222716|222718|222726|223362|225332|231995|231997|232003|232035|233855|235892|236233|236266|236268|236276|236284|236296|236324|236332|236340|236355|236358|236397|236448|236459|236461|236489|236504|236511|245074|249084|249169|260192|260193|261135|261356|262005|262921|262989|345292|358920|358954|358955|358956|358957|358958|358959|359852|360335|360472|362777|362837|362928|363110|363123|363349|363376|363442|363450|363451|363452|363456|363457|363461|363465|363466|363475|363480|363485|363497|363500|363504|363509|363512|363513|363518|363521|363522|363523|363524|363528|363532|363533|363534|363537|363539|363540|363542|363543|363547|363549|363566|363570|363572|390688|402023|402212|402226|402245|402569|402768|402785|402853|402877|403007|406150|410125|410130|410142|410259|410275|419435|419738|419746|420634|420642|420645|420650|420653|420674|429997|445850|462916|467547|468119|468384|468448|468498|469137|469166|479067|479198|479277|479287|479357|479996|480022|480079|480486|480487|480488|480489|483015|485675|487956|532188|539372|539373|539375|539376|539377|539379|551411|551412|572320|574538|574626|609138|609139|616001|619765|622523|622524|622525|622526|622527|622528|622530|622531|622532|622533|622534|622536|622537|622538|622539|622540|622541|622547|622548|622549|622550|622551|622552|622561|622562|622563|622564|622565|622566|622567|622568|622569|622570|622571|622572|622573|622574|622575|622576|622577|622578|622579|622580|622581|622582|622583|622584|622585|622586|622587|622588|622589|622590|622591|622592|622593|622594|622595|622596|622597|622598|622599|622600|622601|622602|622603|622604|622605|622606|622607|622608|622609|622610|622611|622612|622613|622614|622615|622616|622617|622618|622619|622620|622621|622622|622623|622624|622625|622626|622627|622628|622629|622630|622631|622632|622633|622634|622635|622636|622637|622638|622639|622640|622641|622642|622643|622644|622645|622646|622647|622648|622649|622650|622651|622652|622653|622654|622655|622656|622659|622660|622661|622662|622663|622664|622665|622666|622667|622668|622669|622670|622671|622672|622673|622674|622675|622677|622678|622679|622680|845688|918111|972485|972486", "text": "Neoplasm of ovary" }, { - "baseId": "19775|19777|137491|185230|236266|345292", + "upstreamId": "19775|19777|137491|185230|236266|345292", "text": "BRIP1-Related Disorders" }, { - "baseId": "19777|27086|132103|132191|133574|133601|263273|904886|904887|904888|904889|904890|904891|904892|904893|904894|904895|904896|904897|904898|904899|904900|904901|904902|904903|904904|904905|904906|904907", + "upstreamId": "19777|27086|132103|132191|133574|133601|263273|904886|904887|904888|904889|904890|904891|904892|904893|904894|904895|904896|904897|904898|904899|904900|904901|904902|904903|904904|904905|904906|904907", "text": "Tracheoesophageal fistula" }, { - "baseId": "19778|19779|101799|101800|101801|101802|153781|213609|247057|254172|314119|314120|314127|314128|314134|314135|314139|314142|314143|314145|314146|314148|314151|320664|320670|320679|320680|320682|320683|320684|320685|320688|326683|326696|326708|326714|326715|326718|326719|326725|326729|326743|326747|326748|326757|326760|327675|327679|327680|327691|327692|327696|327697|327713|327714|327715|327717|327718|327721|327723|327725|327726|372164|372386|461331|461931|503805|513601|526216|526219|526221|526399|526404|526406|526699|526702|564634|565791|570667|614359|640059|640060|640061|640062|640063|640064|640065|640066|640067|640068|737980|768456|784004|789126|820373|838439|838440|838441|838442|838443|838444|838445|838446|838447|838448|868006|868007|868008|868009|868010|868011|868012|868013|868014|868015|868016|868017|868018|926247|926248|926249|935546|935547|935548|935549|935550|947459|947460|947461|956497|956498|956499|956500", + "upstreamId": "19778|19779|101799|101800|101801|101802|153781|213609|247057|254172|314119|314120|314127|314128|314134|314135|314139|314142|314143|314145|314146|314148|314151|320664|320670|320679|320680|320682|320683|320684|320685|320688|326683|326696|326708|326714|326715|326718|326719|326725|326729|326743|326747|326748|326757|326760|327675|327679|327680|327691|327692|327696|327697|327713|327714|327715|327717|327718|327721|327723|327725|327726|372164|372386|461331|461931|503805|513601|526216|526219|526221|526399|526404|526406|526699|526702|564634|565791|570667|614359|640059|640060|640061|640062|640063|640064|640065|640066|640067|640068|737980|768456|784004|789126|820373|838439|838440|838441|838442|838443|838444|838445|838446|838447|838448|868006|868007|868008|868009|868010|868011|868012|868013|868014|868015|868016|868017|868018|926247|926248|926249|935546|935547|935548|935549|935550|947459|947460|947461|956497|956498|956499|956500", "text": "Leukocyte adhesion deficiency type II" }, { - "baseId": "19780|359719|384602|444220|622386|970874|970875|977233", + "upstreamId": "19780|359719|384602|444220|622386|970874|970875|977233", "text": "Birk-Barel syndrome" }, { - "baseId": "19781|227288|538990|710020", + "upstreamId": "19781|227288|538990|710020", "text": "Dimethylglycine dehydrogenase deficiency" }, { - "baseId": "19785|19786|590480", + "upstreamId": "19785|19786|590480", "text": "Epidermodysplasia verruciformis, susceptibility to, 2" }, { - "baseId": "19787|19788|19789|19790|467383|467600|468423|468434|468888|469184|531860|531867|531875|531906|531959|531964|531974|531985|532237|532241|532268|569795|569797|569799|569801|569805|569816|571686|571687|572350|572362|574645|574647|574648|574649|574651|574654|614446|614447|614448|614449|646788|646789|646790|646791|646792|646793|646794|646795|646796|646797|646798|646800|646801|646802|646803|646804|646806|646808|646810|646811|646812|646814|646816|646821|646822|646823|646825|646826|646827|646828|646830|653047|653532|816343|980486", + "upstreamId": "19787|19788|19789|19790|467383|467600|468423|468434|468888|469184|531860|531867|531875|531906|531959|531964|531974|531985|532237|532241|532268|569795|569797|569799|569801|569805|569816|571686|571687|572350|572362|574645|574647|574648|574649|574651|574654|614446|614447|614448|614449|646788|646789|646790|646791|646792|646793|646794|646795|646796|646797|646798|646800|646801|646802|646803|646804|646806|646808|646810|646811|646812|646814|646816|646821|646822|646823|646825|646826|646827|646828|646830|653047|653532|816343|980486", "text": "EPIDERMODYSPLASIA VERRUCIFORMIS, SUSCEPTIBILITY TO, 1" }, { - "baseId": "19791|788930", + "upstreamId": "19791|788930", "text": "Striatonigral degeneration infantile" }, { - "baseId": "19792|39481|141953|141954|141955|210941|210943|210945|210947|210948|289682|289688|292634|292637|292639|292875|292881|620110|759371|888052|888053|891576", + "upstreamId": "19792|39481|141953|141954|141955|210941|210943|210945|210947|210948|289682|289688|292634|292637|292639|292875|292881|620110|759371|888052|888053|891576", "text": "Combined oxidative phosphorylation deficiency 5" }, { - "baseId": "19793|19794|19795|19796|19797|19798|19799|19800|19801|19802|19803|19804|19805|19806|19807|71449|71450|101516|101517|101519|101520|101523|101525|101527|101528|101529|101530|101531|101533|101534|101535|101536|101537|101540|101541|141645|141646|141647|141649|141650|141651|141652|141653|141655|141657|141659|168021|168022|168023|168024|168025|168026|168029|168031|168032|168033|168034|168035|168036|176934|177065|177329|178161|178387|178960|178962|178965|178968|178969|178970|178975|178979|178980|178981|178982|178987|178988|178990|178991|178993|178994|178996|178998|179004|179005|179007|179008|179010|179011|179012|179013|187148|187149|187150|187151|187152|187153|187154|187155|187156|187157|187158|187159|187160|187161|187162|187163|187164|187165|187166|187167|187168|187169|187170|187171|187172|187173|190877|193629|196021|196023|206846|206847|206848|206849|206850|206852|213524|213525|243902|265870|265872|271504|281933|281934|281938|281946|281948|281976|281977|281983|281984|282545|282557|282563|282607|282609|282627|284214|284224|284268|284272|284291|284496|284510|359383|361508|364137|365376|365386|365543|365545|365553|365558|365562|365568|365576|365581|365583|365590|365757|365759|365771|391349|391416|391419|391602|391604|405296|424640|424988|427883|427885|427887|427889|427893|427895|442547|442923|448525|448695|448699|448703|448705|448706|448708|448710|448712|448713|448714|448717|448718|448726|448735|448789|448792|448797|488152|498650|498654|498656|498659|498875|498911|516342|516344|516345|516355|516411|516418|516420|516423|516426|516428|516436|516437|516446|516454|516456|537690|537691|537692|537693|537694|537695|550349|552050|552051|557514|557516|557518|557520|557522|557524|557526|557563|557565|557567|558719|558721|558723|558725|558727|558729|559206|559208|559210|559212|578917|578959|610477|628448|628449|628450|628451|628452|628453|628454|628455|628456|628457|628458|628459|628460|628461|655141|679737|679738|683392|685839|685840|685841|685842|690743|690744|719275|746783|762196|762197|788742|790046|790047|790048|790049|790050|798481|798482|798483|821843|821844|821845|821846|821847|821848|821849|821850|824759|824760|824761|824762|824763|824764|824765|824766|824767|824768|824769|824770|824771|824772|824773|824774|824775|824776|824777|824778|857644|922239|922240|922241|922242|922243|922244|922245|922246|922247|930800|930801|930802|930803|930804|930805|930806|930807|940654|942230|942231|942232|942233|942234|942235|942236|942237|942238|952632|952633|961589|961590|962877|962915|963122|963498|964019|964164|965956|970709|970710|970711|972781", + "upstreamId": "19793|19794|19795|19796|19797|19798|19799|19800|19801|19802|19803|19804|19805|19806|19807|71449|71450|101516|101517|101519|101520|101523|101525|101527|101528|101529|101530|101531|101533|101534|101535|101536|101537|101540|101541|141645|141646|141647|141649|141650|141651|141652|141653|141655|141657|141659|168021|168022|168023|168024|168025|168026|168029|168031|168032|168033|168034|168035|168036|176934|177065|177329|178161|178387|178960|178962|178965|178968|178969|178970|178975|178979|178980|178981|178982|178987|178988|178990|178991|178993|178994|178996|178998|179004|179005|179007|179008|179010|179011|179012|179013|187148|187149|187150|187151|187152|187153|187154|187155|187156|187157|187158|187159|187160|187161|187162|187163|187164|187165|187166|187167|187168|187169|187170|187171|187172|187173|190877|193629|196021|196023|206846|206847|206848|206849|206850|206852|213524|213525|243902|265870|265872|271504|281933|281934|281938|281946|281948|281976|281977|281983|281984|282545|282557|282563|282607|282609|282627|284214|284224|284268|284272|284291|284496|284510|359383|361508|364137|365376|365386|365543|365545|365553|365558|365562|365568|365576|365581|365583|365590|365757|365759|365771|391349|391416|391419|391602|391604|405296|424640|424988|427883|427885|427887|427889|427893|427895|442547|442923|448525|448695|448699|448703|448705|448706|448708|448710|448712|448713|448714|448717|448718|448726|448735|448789|448792|448797|488152|498650|498654|498656|498659|498875|498911|516342|516344|516345|516355|516411|516418|516420|516423|516426|516428|516436|516437|516446|516454|516456|537690|537691|537692|537693|537694|537695|550349|552050|552051|557514|557516|557518|557520|557522|557524|557526|557563|557565|557567|558719|558721|558723|558725|558727|558729|559206|559208|559210|559212|578917|578959|610477|628448|628449|628450|628451|628452|628453|628454|628455|628456|628457|628458|628459|628460|628461|655141|679737|679738|683392|685839|685840|685841|685842|690743|690744|719275|746783|762196|762197|788742|790046|790047|790048|790049|790050|798481|798482|798483|821843|821844|821845|821846|821847|821848|821849|821850|824759|824760|824761|824762|824763|824764|824765|824766|824767|824768|824769|824770|824771|824772|824773|824774|824775|824776|824777|824778|857644|922239|922240|922241|922242|922243|922244|922245|922246|922247|930800|930801|930802|930803|930804|930805|930806|930807|940654|942230|942231|942232|942233|942234|942235|942236|942237|942238|952632|952633|961589|961590|962877|962915|963122|963498|964019|964164|965956|970709|970710|970711|972781", "text": "Mowat-Wilson syndrome" }, { - "baseId": "19803", + "upstreamId": "19803", "text": "Hirschsprung disease-mental retardation syndrome, late infantile" }, { - "baseId": "19809|71388|71390|861253|861254|861255|861256", + "upstreamId": "19809|71388|71390|861253|861254|861255|861256", "text": "Imerslund-Gr\u00e4sbeck syndrome 2" }, { - "baseId": "19811", + "upstreamId": "19811", "text": "Hypercarotenemia and vitamin a deficiency, autosomal dominant" }, { - "baseId": "19812|19813|19814|19815|19816|19818|19819|19820|238266|280214|280218|280219|280224|280227|280228|280234|280246|280247|280252|280254|280255|280257|280262|280592|280593|280594|280598|280602|280603|280604|280615|280619|280622|280628|280630|280636|280651|280653|280655|280658|280659|280660|280662|281904|281906|281907|281910|281912|281917|281918|281928|281930|281931|281932|281939|281947|281949|281951|282027|282029|282033|282034|282036|282039|391148|391155|391160|447723|447740|447958|448053|448079|510999|511000|515755|515813|515853|515883|557013|557240|557279|558469|627720|627721|627722|627723|627724|627725|672380|683319|685696|685697|685698|685699|685700|685701|685702|689656|690577|780652|780655|780657|794651|818959|823847|823848|850769|864208|864209|864210|864211|864212|864213|864214|864215|864216|864217|864218|864219|864220|864221|864222|864223|864224|864225|864226|864227|864228|864229|864230|864231|865171|865172|921976|921977|921978|921979|930448|930449|930450|930451|952377|952378|952379|960427", + "upstreamId": "19812|19813|19814|19815|19816|19818|19819|19820|238266|280214|280218|280219|280224|280227|280228|280234|280246|280247|280252|280254|280255|280257|280262|280592|280593|280594|280598|280602|280603|280604|280615|280619|280622|280628|280630|280636|280651|280653|280655|280658|280659|280660|280662|281904|281906|281907|281910|281912|281917|281918|281928|281930|281931|281932|281939|281947|281949|281951|282027|282029|282033|282034|282036|282039|391148|391155|391160|447723|447740|447958|448053|448079|510999|511000|515755|515813|515853|515883|557013|557240|557279|558469|627720|627721|627722|627723|627724|627725|672380|683319|685696|685697|685698|685699|685700|685701|685702|689656|690577|780652|780655|780657|794651|818959|823847|823848|850769|864208|864209|864210|864211|864212|864213|864214|864215|864216|864217|864218|864219|864220|864221|864222|864223|864224|864225|864226|864227|864228|864229|864230|864231|865171|865172|921976|921977|921978|921979|930448|930449|930450|930451|952377|952378|952379|960427", "text": "Familial hypercholesterolemia 4" }, { - "baseId": "19821|169750|413614|442344|553158|583132", + "upstreamId": "19821|169750|413614|442344|553158|583132", "text": "Polymicrogyria with optic nerve hypoplasia" }, { - "baseId": "19822|19823|19824|19825|190625|328628|328629|338578|338590|338591|338592|344653|344658|344659|344662|346073|346076|346081|771560|877645|877646|877647|877648|877649|877650|877651|877652|877653|877654|877655|877656|877657|877658|877659|877660|877661|877662|877663|877664|877665|877666", + "upstreamId": "19822|19823|19824|19825|190625|328628|328629|338578|338590|338591|338592|344653|344658|344659|344662|346073|346076|346081|771560|877645|877646|877647|877648|877649|877650|877651|877652|877653|877654|877655|877656|877657|877658|877659|877660|877661|877662|877663|877664|877665|877666", "text": "Sclerosteosis 1" }, { - "baseId": "19826|19827|19828|19829|19832|23469|23483|23485|29229", + "upstreamId": "19826|19827|19828|19829|19832|23469|23483|23485|29229", "text": "Autosomal recessive Dejerine-Sottas syndrome" }, { - "baseId": "19826|19830|19831|19833|47011|47012|47013|135494|135495|135496|135497|135498|135499|142520|205189|213453|213454|213456|213458|213459|213461|222808|222809|243334|243338|243339|243340|243342|245126|245128|245130|245131|245133|245135|245136|245136|245141|268889|333516|333520|333524|333534|333535|333539|333540|333547|333552|333554|333557|333558|333559|333570|343605|343607|343612|343613|343615|343617|343619|343624|343628|343630|348901|348903|348907|348913|348916|348917|348922|348924|348928|348932|348939|348940|348944|349843|349844|349847|349849|349854|349855|349858|349859|349862|349863|349866|349867|349869|349874|349875|349876|376503|377643|379572|379575|403251|403713|403719|403722|403724|468804|469824|469837|470233|470893|470912|533481|533506|538486|538486|540469|573114|577807|622460|622461|625426|625428|625437|648121|684811|689056|689058|694417|788927|798922|847688|847704|882038|882039|882040|882041|882042|882043|882044|882045|882046|882047|882048|882049|882050|882051|882052|882053|882054|882055|882056|882057|882058|882889|882890|905438|919867", + "upstreamId": "19826|19830|19831|19833|47011|47012|47013|135494|135495|135496|135497|135498|135499|142520|205189|213453|213454|213456|213458|213459|213461|222808|222809|243334|243338|243339|243340|243342|245126|245128|245130|245131|245133|245135|245136|245136|245141|268889|333516|333520|333524|333534|333535|333539|333540|333547|333552|333554|333557|333558|333559|333570|343605|343607|343612|343613|343615|343617|343619|343624|343628|343630|348901|348903|348907|348913|348916|348917|348922|348924|348928|348932|348939|348940|348944|349843|349844|349847|349849|349854|349855|349858|349859|349862|349863|349866|349867|349869|349874|349875|349876|376503|377643|379572|379575|403251|403713|403719|403722|403724|468804|469824|469837|470233|470893|470912|533481|533506|538486|538486|540469|573114|577807|622460|622461|625426|625428|625437|648121|684811|689056|689058|694417|788927|798922|847688|847704|882038|882039|882040|882041|882042|882043|882044|882045|882046|882047|882048|882049|882050|882051|882052|882053|882054|882055|882056|882057|882058|882889|882890|905438|919867", "text": "Charcot-Marie-Tooth disease, demyelinating, type 4F" }, { - "baseId": "19833|23473|25490|29208|29209|31791|47013|49436|222886|231988|245013|245128|245136|245137|426772|427125|440400|442658|481416|538486|539028|557010|622460|625000|625001|625014|625026|625039|625040|625057|625073|625088|625381|625382|625387|625388|625389|625390|625392|625393|625394|625395|625405|625423|625544|626198", + "upstreamId": "19833|23473|25490|29208|29209|31791|47013|49436|222886|231988|245013|245128|245136|245137|426772|427125|440400|442658|481416|538486|539028|557010|622460|625000|625001|625014|625026|625039|625040|625057|625073|625088|625381|625382|625387|625388|625389|625390|625392|625393|625394|625395|625405|625423|625544|626198", "text": "Dejerine-Sottas disease" }, { - "baseId": "19836|19837", + "upstreamId": "19836|19837", "text": "NEUROPATHY, HEREDITARY SENSORY, TYPE IC" }, { - "baseId": "19836|204570|244921|271912|321515|321521|321526|321530|321531|321535|321536|321542|321544|321545|321547|321551|321552|321560|321561|321578|321582|321584|321585|321587|321592|321596|321604|321608|321609|321611|321619|321620|321624|321626|330808|330810|330814|330817|330818|330820|330822|330826|330834|330836|330839|330841|330844|330853|330855|330860|330862|330866|330867|330869|330870|330875|330876|330880|330884|330886|330888|337450|337453|337459|337465|337472|337474|337475|337477|337479|337482|337483|337485|337487|337489|337490|337495|337500|337504|337505|337506|337508|337512|337518|337519|337525|337533|337534|337539|339488|339500|339501|339503|339504|339505|339507|339524|339527|339528|339531|339533|339543|339545|339551|339562|339563|339565|339567|339569|339573|339576|339579|339587|339590|339592|339594|339595|339597|339602|339607|339608|339612|339617|373221|373222|373925|374378|376236|376240|376258|421996|433943|445258|463538|463539|463541|463546|463548|464154|464158|464412|464534|464539|464544|464550|464556|464562|464565|504643|504872|505137|505561|513624|528318|528325|528389|528393|528401|528403|528784|528786|528791|528793|528797|566669|566672|566673|568326|569052|569057|572948|572958|572961|609900|625308|642756|642757|642758|642759|642760|642761|642762|642763|642764|642765|642766|642767|642768|642769|652426|652476|652562|652893|656267|702999|725840|820651|820652|841857|841858|841859|841860|841861|841862|841863|841864|841865|841866|841867|841868|841869|841870|841871|852017|872752|872753|872754|872755|872756|872757|872758|872759|872760|872761|872762|872763|872764|872765|872766|872767|872768|872769|872770|872771|872772|872773|872774|872775|872776|872777|872778|872779|872780|872781|872782|872783|872784|872785|872786|872787|872788|872789|872790|872791|872792|872793|876458|919546|927188|927189|936755|941070|948708|948709|948710|957324|957325|981884", + "upstreamId": "19836|204570|244921|271912|321515|321521|321526|321530|321531|321535|321536|321542|321544|321545|321547|321551|321552|321560|321561|321578|321582|321584|321585|321587|321592|321596|321604|321608|321609|321611|321619|321620|321624|321626|330808|330810|330814|330817|330818|330820|330822|330826|330834|330836|330839|330841|330844|330853|330855|330860|330862|330866|330867|330869|330870|330875|330876|330880|330884|330886|330888|337450|337453|337459|337465|337472|337474|337475|337477|337479|337482|337483|337485|337487|337489|337490|337495|337500|337504|337505|337506|337508|337512|337518|337519|337525|337533|337534|337539|339488|339500|339501|339503|339504|339505|339507|339524|339527|339528|339531|339533|339543|339545|339551|339562|339563|339565|339567|339569|339573|339576|339579|339587|339590|339592|339594|339595|339597|339602|339607|339608|339612|339617|373221|373222|373925|374378|376236|376240|376258|421996|433943|445258|463538|463539|463541|463546|463548|464154|464158|464412|464534|464539|464544|464550|464556|464562|464565|504643|504872|505137|505561|513624|528318|528325|528389|528393|528401|528403|528784|528786|528791|528793|528797|566669|566672|566673|568326|569052|569057|572948|572958|572961|609900|625308|642756|642757|642758|642759|642760|642761|642762|642763|642764|642765|642766|642767|642768|642769|652426|652476|652562|652893|656267|702999|725840|820651|820652|841857|841858|841859|841860|841861|841862|841863|841864|841865|841866|841867|841868|841869|841870|841871|852017|872752|872753|872754|872755|872756|872757|872758|872759|872760|872761|872762|872763|872764|872765|872766|872767|872768|872769|872770|872771|872772|872773|872774|872775|872776|872777|872778|872779|872780|872781|872782|872783|872784|872785|872786|872787|872788|872789|872790|872791|872792|872793|876458|919546|927188|927189|936755|941070|948708|948709|948710|957324|957325|981884", "text": "Hereditary sensory and autonomic neuropathy type IC" }, { - "baseId": "19838", + "upstreamId": "19838", "text": "NEUROPATHY, HEREDITARY SENSORY AND AUTONOMIC, TYPE IC, SEVERE" }, { - "baseId": "19839|19840|19841|19842|143025|194439|205763|231722|244554|271540|308911|313601|319383|319389|319967|319969|319970|319975|359759|370961|373125|415204|415205|444531|459274|459599|459600|459678|459680|460164|460167|460170|503202|524674|524680|524687|524919|524920|525020|525025|525201|525206|525208|525212|563305|563306|563310|563314|563316|564115|564118|565976|565980|565984|565986|569171|638394|638395|638396|638397|638398|638399|638400|652226|664449|692700|692701|692702|692703|695451|701085|737235|767508|777783|820169|836285|836286|836287|836288|836289|836290|836291|836292|836293|836294|836295|836296|836297|836298|836299|851353|852528|902510|925635|925636|934828|940942|946681|946682|946683|946684|955900|959923", + "upstreamId": "19839|19840|19841|19842|143025|194439|205763|231722|244554|271540|308911|313601|319383|319389|319967|319969|319970|319975|359759|370961|373125|415204|415205|444531|459274|459599|459600|459678|459680|460164|460167|460170|503202|524674|524680|524687|524919|524920|525020|525025|525201|525206|525208|525212|563305|563306|563310|563314|563316|564115|564118|565976|565980|565984|565986|569171|638394|638395|638396|638397|638398|638399|638400|652226|664449|692700|692701|692702|692703|695451|701085|737235|767508|777783|820169|836285|836286|836287|836288|836289|836290|836291|836292|836293|836294|836295|836296|836297|836298|836299|851353|852528|902510|925635|925636|934828|940942|946681|946682|946683|946684|955900|959923", "text": "Hereditary sensory and autonomic neuropathy type 1" }, { - "baseId": "19839|19840|19841|19842|19844|143024|143025|194439|271540|308901|308902|308904|308908|308910|308911|313574|313578|313579|313580|313582|313590|313591|313601|313607|319360|319362|319363|319370|319372|319383|319389|319963|319965|319967|319969|319970|319975|373125|444531|444532|459680|524687|525020|525206|563314|565984|790918|799595|799596|836287|852528|902504|902505|902506|902507|902508|902509|902510|902511|902512", + "upstreamId": "19839|19840|19841|19842|19844|143024|143025|194439|271540|308901|308902|308904|308908|308910|308911|313574|313578|313579|313580|313582|313590|313591|313601|313607|319360|319362|319363|319370|319372|319383|319389|319963|319965|319967|319969|319970|319975|373125|444531|444532|459680|524687|525020|525206|563314|565984|790918|799595|799596|836287|852528|902504|902505|902506|902507|902508|902509|902510|902511|902512", "text": "Neuropathy, hereditary sensory and autonomic, type 1A" }, { - "baseId": "19842|32213|51184|245116|360806|613539", + "upstreamId": "19842|32213|51184|245116|360806|613539", "text": "Sensorimotor neuropathy" }, { - "baseId": "19843|359759", + "upstreamId": "19843|359759", "text": "Neuropathy, hereditary sensory and autonomic, type IA, severe" }, { - "baseId": "19845|19845|39467|188966|257379|257379|335926|335929|335932|335935|335939|335940|335941|335943|335948|335951|335960|335961|335967|335968|335980|335983|335987|335988|335992|336001|345625|345637|345654|345656|345658|345660|345665|345671|345673|345678|345680|345692|345693|345695|345698|345699|345704|345705|345707|345712|345714|345716|345718|345724|345731|345732|345734|345742|345749|350177|350180|350182|350184|350186|350187|350187|350190|350190|350193|350194|350197|350200|350204|350207|350208|350210|350211|350212|350214|350215|350221|350223|350224|350228|350229|350231|351244|351246|351249|351250|351256|351259|351262|351263|351266|351267|351270|351272|351275|351276|351278|351281|351283|442304|442305|442305|470472|470472|470961|471454|471454|471456|471456|533583|533585|533631|533643|533643|533650|533651|534171|571320|572940|572941|573579|575121|648778|648779|648780|648781|653639|694572|694573|705569|780056|821335|848482|848483|848484|848485|848486|886346|886347|886348|886349|886350|886351|886352|886353|886354|886355|886356|886357|886358|886359|886360|886361|886362|886363|886364|886365|886366|886367|886368|886369|886370|886371|886372|886373|886374|886375|886376|886377|886378|886379|886380|886381|886382|886383|886384|886385|886386|886387|886388|886389|886390|886391|886392|886393|886394|886395|886396|886397|886398|886399|886400|886401|887477|887478|929224|929225", + "upstreamId": "19845|19845|39467|188966|257379|257379|335926|335929|335932|335935|335939|335940|335941|335943|335948|335951|335960|335961|335967|335968|335980|335983|335987|335988|335992|336001|345625|345637|345654|345656|345658|345660|345665|345671|345673|345678|345680|345692|345693|345695|345698|345699|345704|345705|345707|345712|345714|345716|345718|345724|345731|345732|345734|345742|345749|350177|350180|350182|350184|350186|350187|350187|350190|350190|350193|350194|350197|350200|350204|350207|350208|350210|350211|350212|350214|350215|350221|350223|350224|350228|350229|350231|351244|351246|351249|351250|351256|351259|351262|351263|351266|351267|351270|351272|351275|351276|351278|351281|351283|442304|442305|442305|470472|470472|470961|471454|471454|471456|471456|533583|533585|533631|533643|533643|533650|533651|534171|571320|572940|572941|573579|575121|648778|648779|648780|648781|653639|694572|694573|705569|780056|821335|848482|848483|848484|848485|848486|886346|886347|886348|886349|886350|886351|886352|886353|886354|886355|886356|886357|886358|886359|886360|886361|886362|886363|886364|886365|886366|886367|886368|886369|886370|886371|886372|886373|886374|886375|886376|886377|886378|886379|886380|886381|886382|886383|886384|886385|886386|886387|886388|886389|886390|886391|886392|886393|886394|886395|886396|886397|886398|886399|886400|886401|887477|887478|929224|929225", "text": "Amyotrophic lateral sclerosis type 8" }, { - "baseId": "19845|19845|188966|257379|345654|350187|350190|442304|442305|470472|470961|471454|471456|533583|533585|533631|533643|533650|533651|534171|571320|572940|572941|573579|575121|648778|648779|648780|648781|653639|694572|694573|705569|780056|821335|848482|848483|848484|848485|848486|929224|929225", + "upstreamId": "19845|19845|188966|257379|345654|350187|350190|442304|442305|470472|470961|471454|471456|533583|533585|533631|533643|533650|533651|534171|571320|572940|572941|573579|575121|648778|648779|648780|648781|653639|694572|694573|705569|780056|821335|848482|848483|848484|848485|848486|929224|929225", "text": "Spinal muscular atrophy, late-onset, finkel type" }, { - "baseId": "19845", + "upstreamId": "19845", "text": "Amyotrophic lateral sclerosis, typical" }, { - "baseId": "19846", + "upstreamId": "19846", "text": "Amyotrophic lateral sclerosis-parkinsonism/dementia complex 1, susceptibility to" }, { - "baseId": "19846|205777|264787|861326|861327|861346|861347|861364|861413", + "upstreamId": "19846|205777|264787|861326|861327|861346|861347|861364|861413", "text": "Juvenile amyotrophic lateral sclerosis" }, { - "baseId": "19847|19848|19849|19850|192436|227415|337905|337906|337907|337910|337913|347516|347518|347519|347522|347523|351419|351420|351423|351426|351428|352419|352420|352421|352426|352433|352434|438226|481385|508941|534312|588966|620686|620687|649454|649455|649456|649457|649458|649459|694717|694718|705903|849298|891135|891136|891137|891138|891139|891140|891141|891142|891143|891144|891145|891146|891147|891148|891820|939300|951458|951459|951460|959085|959086", + "upstreamId": "19847|19848|19849|19850|192436|227415|337905|337906|337907|337910|337913|347516|347518|347519|347522|347523|351419|351420|351423|351426|351428|352419|352420|352421|352426|352433|352434|438226|481385|508941|534312|588966|620686|620687|649454|649455|649456|649457|649458|649459|694717|694718|705903|849298|891135|891136|891137|891138|891139|891140|891141|891142|891143|891144|891145|891146|891147|891148|891820|939300|951458|951459|951460|959085|959086", "text": "Parkinson disease 15" }, { - "baseId": "19851|19852|19853|19855|19856|19856|19857|19857|19858|19858|19859|19860|19860|19864|19865|19867|19868|19869|19869|19870|19871|19872|19873|19874|19874|19875|19877|19878|19879|19879|19881|19881|23489|38434|52654|52655|52656|52656|52657|52659|52661|52662|52664|52665|52666|52668|52668|52669|52670|52671|52673|52674|52675|52677|52678|52679|52680|52682|52684|52685|52686|52687|52688|52690|52691|52693|52694|52694|52695|52696|52697|52698|52699|52700|52701|52702|52704|52707|52708|52709|52710|52712|52713|52714|52715|52715|52716|52719|52720|52722|52724|52726|52727|52728|52729|52732|52733|52734|52734|52735|52737|52738|52739|52740|52742|52743|102920|174024|174027|174031|174032|174033|174034|174158|174159|174162|174165|174167|186722|186723|186724|186725|186726|186727|186728|186729|186730|186731|186732|186733|186733|186734|186735|186736|186737|186738|186739|186740|186741|186742|196183|201049|201055|227307|229532|229533|229534|229537|229539|229541|229543|229545|229545|252559|267149|272115|276776|276786|277042|277056|277061|277062|277618|277644|277648|277682|277773|301409|301412|301413|301414|301427|301428|301429|301436|301439|302958|304625|304626|304627|304628|304629|304633|304659|304660|304662|304663|304664|304680|304684|309254|309262|309273|309281|309287|309294|309295|309297|309304|309451|309452|309453|309457|309458|309459|309464|309466|357526|357527|357528|357529|357530|357531|357532|357533|357534|357535|357536|357537|357538|357539|357540|357541|357542|357543|357544|357545|357546|357547|357548|357549|357550|357551|357552|357553|357554|368833|369418|389226|389229|421612|438847|439903|439905|439906|442645|493530|496881|496919|496920|515169|544002|544004|544005|544006|544009|544015|544031|544032|544034|544036|544039|544042|544045|544048|544050|544051|544053|544054|544067|544072|544077|544080|544086|544087|544090|544095|544096|544101|544283|544285|544290|544299|544301|544308|544310|544311|544312|544316|544324|544325|544334|544335|544337|544338|544339|544340|544343|544345|544346|544348|544351|544352|544359|544360|544361|544366|544368|544369|544370|544373|544375|544376|544377|544379|544380|544382|544385|544386|544391|544393|544395|544400|544402|544406|544409|544412|544415|544422|544424|544425|544427|544433|544434|544435|544442|544442|544448|544449|544452|544453|544456|544458|584003|615803|654475|679201|722230|730452|750330|765973|765977|765978|765979|782722|787521|801644|801645|816404|832780|897176|897177|897178|897179|897180|897181|897182|897183|897184|897185|897186|897187|897188|897189|897190|897191|897192|897193|897194|897195|897196|897197|897198|897199|897200|897201|897202|897203|897204|897205|897206|897207|897208|897209|897210|897211|897212|897213|900297|900298|970056|978378|978379|978380|978381", + "upstreamId": "19851|19852|19853|19855|19856|19856|19857|19857|19858|19858|19859|19860|19860|19864|19865|19867|19868|19869|19869|19870|19871|19872|19873|19874|19874|19875|19877|19878|19879|19879|19881|19881|23489|38434|52654|52655|52656|52656|52657|52659|52661|52662|52664|52665|52666|52668|52668|52669|52670|52671|52673|52674|52675|52677|52678|52679|52680|52682|52684|52685|52686|52687|52688|52690|52691|52693|52694|52694|52695|52696|52697|52698|52699|52700|52701|52702|52704|52707|52708|52709|52710|52712|52713|52714|52715|52715|52716|52719|52720|52722|52724|52726|52727|52728|52729|52732|52733|52734|52734|52735|52737|52738|52739|52740|52742|52743|102920|174024|174027|174031|174032|174033|174034|174158|174159|174162|174165|174167|186722|186723|186724|186725|186726|186727|186728|186729|186730|186731|186732|186733|186733|186734|186735|186736|186737|186738|186739|186740|186741|186742|196183|201049|201055|227307|229532|229533|229534|229537|229539|229541|229543|229545|229545|252559|267149|272115|276776|276786|277042|277056|277061|277062|277618|277644|277648|277682|277773|301409|301412|301413|301414|301427|301428|301429|301436|301439|302958|304625|304626|304627|304628|304629|304633|304659|304660|304662|304663|304664|304680|304684|309254|309262|309273|309281|309287|309294|309295|309297|309304|309451|309452|309453|309457|309458|309459|309464|309466|357526|357527|357528|357529|357530|357531|357532|357533|357534|357535|357536|357537|357538|357539|357540|357541|357542|357543|357544|357545|357546|357547|357548|357549|357550|357551|357552|357553|357554|368833|369418|389226|389229|421612|438847|439903|439905|439906|442645|493530|496881|496919|496920|515169|544002|544004|544005|544006|544009|544015|544031|544032|544034|544036|544039|544042|544045|544048|544050|544051|544053|544054|544067|544072|544077|544080|544086|544087|544090|544095|544096|544101|544283|544285|544290|544299|544301|544308|544310|544311|544312|544316|544324|544325|544334|544335|544337|544338|544339|544340|544343|544345|544346|544348|544351|544352|544359|544360|544361|544366|544368|544369|544370|544373|544375|544376|544377|544379|544380|544382|544385|544386|544391|544393|544395|544400|544402|544406|544409|544412|544415|544422|544424|544425|544427|544433|544434|544435|544442|544442|544448|544449|544452|544453|544456|544458|584003|615803|654475|679201|722230|730452|750330|765973|765977|765978|765979|782722|787521|801644|801645|816404|832780|897176|897177|897178|897179|897180|897181|897182|897183|897184|897185|897186|897187|897188|897189|897190|897191|897192|897193|897194|897195|897196|897197|897198|897199|897200|897201|897202|897203|897204|897205|897206|897207|897208|897209|897210|897211|897212|897213|900297|900298|970056|978378|978379|978380|978381", "text": "Pendred syndrome" }, { - "baseId": "19854|19855|19856|19856|19857|19857|19858|19858|19859|19860|19860|19861|19862|19863|19864|19865|19868|19869|19869|19873|19874|19877|19878|19879|19879|19880|19881|19881|22508|22509|23488|23489|38434|52654|52655|52656|52657|52659|52661|52662|52664|52666|52668|52668|52677|52679|52684|52685|52688|52693|52694|52694|52695|52696|52698|52701|52702|52707|52713|52714|52715|52715|52716|52724|52726|52727|52731|52734|52735|52742|52743|102920|134763|134764|137037|137038|141684|141685|174031|174032|174158|174159|186726|186727|186731|186733|186733|186734|186735|186737|186740|186741|192326|192326|192437|196183|201049|201049|201052|201055|201055|201057|201057|201062|227307|229532|229541|229545|238152|251840|266314|269636|270984|271776|274298|276764|276765|276766|276771|276772|276775|276777|276778|276779|276780|276787|276788|277031|277033|277034|277037|277043|277044|277057|277064|277070|277071|277073|277614|277615|277617|277626|277643|277669|277676|277681|277683|277684|277687|277768|277769|277772|277774|277775|277778|277779|277782|296819|296820|296823|298748|298759|298761|298762|298764|298766|298781|298785|298790|301409|301412|301413|301414|301427|301428|301429|301436|302959|302975|302985|302988|303131|303132|303135|303136|303137|303144|304625|304626|304627|304628|304633|304659|304660|304662|304663|304664|304680|304684|309254|309262|309273|309281|309287|309294|309295|309297|309304|309451|309452|309453|309457|309458|309459|309464|357529|357534|357535|357540|357553|364563|364622|369418|389229|404601|433920|439899|439900|439901|439902|439903|439904|439905|439906|439907|439908|439909|439910|442645|489073|491207|515169|544005|544101|544308|544316|544369|544375|544380|544382|544391|544442|584003|615796|615797|615798|615799|615800|615801|615802|615803|654475|679192|679193|679194|679195|679196|679197|679198|679199|679200|679202|679203|679204|699015|722230|749419|765977|801644|862502|862503|862504|862505|862506|862507|862508|862509|862510|862511|862512|862513|862514|862515|862516|862517|862518|862519|862520|862521|862522|862523|862524|862525|862526|862527|862528|862529|862530|862531|862532|862533|862534|862535|893858|893859|893860|893861|893862|893863|893864|893865|893866|893867|893868|893869|893870|893871|893872|893873|893874|893875|893876|897176|897177|897178|897179|897180|897181|897182|897183|897184|897185|897186|897187|897188|897189|897190|897191|897192|897193|897194|897195|897196|897197|897198|897199|897200|897201|897202|897203|897204|897205|897206|897207|897208|897209|897210|897211|897212|897213|900297|900298", + "upstreamId": "19854|19855|19856|19856|19857|19857|19858|19858|19859|19860|19860|19861|19862|19863|19864|19865|19868|19869|19869|19873|19874|19877|19878|19879|19879|19880|19881|19881|22508|22509|23488|23489|38434|52654|52655|52656|52657|52659|52661|52662|52664|52666|52668|52668|52677|52679|52684|52685|52688|52693|52694|52694|52695|52696|52698|52701|52702|52707|52713|52714|52715|52715|52716|52724|52726|52727|52731|52734|52735|52742|52743|102920|134763|134764|137037|137038|141684|141685|174031|174032|174158|174159|186726|186727|186731|186733|186733|186734|186735|186737|186740|186741|192326|192326|192437|196183|201049|201049|201052|201055|201055|201057|201057|201062|227307|229532|229541|229545|238152|251840|266314|269636|270984|271776|274298|276764|276765|276766|276771|276772|276775|276777|276778|276779|276780|276787|276788|277031|277033|277034|277037|277043|277044|277057|277064|277070|277071|277073|277614|277615|277617|277626|277643|277669|277676|277681|277683|277684|277687|277768|277769|277772|277774|277775|277778|277779|277782|296819|296820|296823|298748|298759|298761|298762|298764|298766|298781|298785|298790|301409|301412|301413|301414|301427|301428|301429|301436|302959|302975|302985|302988|303131|303132|303135|303136|303137|303144|304625|304626|304627|304628|304633|304659|304660|304662|304663|304664|304680|304684|309254|309262|309273|309281|309287|309294|309295|309297|309304|309451|309452|309453|309457|309458|309459|309464|357529|357534|357535|357540|357553|364563|364622|369418|389229|404601|433920|439899|439900|439901|439902|439903|439904|439905|439906|439907|439908|439909|439910|442645|489073|491207|515169|544005|544101|544308|544316|544369|544375|544380|544382|544391|544442|584003|615796|615797|615798|615799|615800|615801|615802|615803|654475|679192|679193|679194|679195|679196|679197|679198|679199|679200|679202|679203|679204|699015|722230|749419|765977|801644|862502|862503|862504|862505|862506|862507|862508|862509|862510|862511|862512|862513|862514|862515|862516|862517|862518|862519|862520|862521|862522|862523|862524|862525|862526|862527|862528|862529|862530|862531|862532|862533|862534|862535|893858|893859|893860|893861|893862|893863|893864|893865|893866|893867|893868|893869|893870|893871|893872|893873|893874|893875|893876|897176|897177|897178|897179|897180|897181|897182|897183|897184|897185|897186|897187|897188|897189|897190|897191|897192|897193|897194|897195|897196|897197|897198|897199|897200|897201|897202|897203|897204|897205|897206|897207|897208|897209|897210|897211|897212|897213|900297|900298", "text": "Deafness, autosomal recessive 4, with enlarged vestibular aqueduct" }, { - "baseId": "19856|19857|19858|19859|19860|19864|19874|19877|19878|19881|52665|186731|229545|620796|975897", + "upstreamId": "19856|19857|19858|19859|19860|19864|19874|19877|19878|19881|52665|186731|229545|620796|975897", "text": "SLC26A4-Related Disorders" }, { - "baseId": "19878|21885|23308|29165|29190|45263|45357|45358|52071|52182|52997|54849|54851|54852|54853|54854|54857|54862|54864|54867|54871|54874|54875|54876|54878|54882|54882|54886|54888|54892|54898|67638|67758|77939|78562|99385|174047|177380|179122|179133|188550|188574|188722|189798|196689|196972|198498|224349|224519|225032|229564|252655|266688|281616|302196|302212|302215|302216|302224|305396|305405|305406|305426|305434|305440|305443|305444|305445|305447|310221|310227|310228|310229|310234|310323|310325|310327|310328|310329|310346|310347|310357|360891|369358|405107|424509|431889|456504|456900|457546|457592|471375|480667|480668|480669|480670|480671|480672|480673|480674|480675|480676|480677|480678|480679|480680|480681|480682|480683|480684|480685|480686|480687|480688|480689|480690|480691|480692|480693|480694|480695|480696|480697|480698|480699|480700|480701|480702|480703|480704|480705|480706|480707|480708|480709|480710|480711|480712|480713|480714|480715|480716|480717|480718|480719|480720|480721|480722|480723|480724|509882|511090|897682|897683|897684|897685|897686|897687|897688|897689|897690|897691|897692|897693|897694|897695|897696|897697|897698|897699|897700|919090", + "upstreamId": "19878|21885|23308|29165|29190|45263|45357|45358|52071|52182|52997|54849|54851|54852|54853|54854|54857|54862|54864|54867|54871|54874|54875|54876|54878|54882|54882|54886|54888|54892|54898|67638|67758|77939|78562|99385|174047|177380|179122|179133|188550|188574|188722|189798|196689|196972|198498|224349|224519|225032|229564|252655|266688|281616|302196|302212|302215|302216|302224|305396|305405|305406|305426|305434|305440|305443|305444|305445|305447|310221|310227|310228|310229|310234|310323|310325|310327|310328|310329|310346|310347|310357|360891|369358|405107|424509|431889|456504|456900|457546|457592|471375|480667|480668|480669|480670|480671|480672|480673|480674|480675|480676|480677|480678|480679|480680|480681|480682|480683|480684|480685|480686|480687|480688|480689|480690|480691|480692|480693|480694|480695|480696|480697|480698|480699|480700|480701|480702|480703|480704|480705|480706|480707|480708|480709|480710|480711|480712|480713|480714|480715|480716|480717|480718|480719|480720|480721|480722|480723|480724|509882|511090|897682|897683|897684|897685|897686|897687|897688|897689|897690|897691|897692|897693|897694|897695|897696|897697|897698|897699|897700|919090", "text": "Wolff-Parkinson-White pattern" }, { - "baseId": "19882", + "upstreamId": "19882", "text": "CONGENITAL DISORDER OF GLYCOSYLATION, TYPE IIf, MODIFIER OF" }, { - "baseId": "19885|19886|19887|101375|101376|101377|101378|101379|101382|101383|101385|101388|101390|101390|142411|142412|142413|142414|142415|142417|142418|142420|142422|142426|142428|142429|142430|169585|169586|169587|169589|169590|169591|169593|169594|169595|169596|169598|169599|169599|169600|169601|169602|188053|194448|195710|203566|203574|203578|203586|203593|203595|203603|203621|203627|208613|208617|208619|269764|269764|334102|349265|349267|350235|350236|350237|350239|350241|350243|350248|377606|377883|379617|403779|430258|490857|551744|570954|573264|575017|575020|580406|620912|648288|689148|798757|802226|847905|882328|882329|882330|882331|882332|882333|882334|882917|882918|966010|966011|966012|971139|976517", + "upstreamId": "19885|19886|19887|101375|101376|101377|101378|101379|101382|101383|101385|101388|101390|101390|142411|142412|142413|142414|142415|142417|142418|142420|142422|142426|142428|142429|142430|169585|169586|169587|169589|169590|169591|169593|169594|169595|169596|169598|169599|169599|169600|169601|169602|188053|194448|195710|203566|203574|203578|203586|203593|203595|203603|203621|203627|208613|208617|208619|269764|269764|334102|349265|349267|350235|350236|350237|350239|350241|350243|350248|377606|377883|379617|403779|430258|490857|551744|570954|573264|575017|575020|580406|620912|648288|689148|798757|802226|847905|882328|882329|882330|882331|882332|882333|882334|882917|882918|966010|966011|966012|971139|976517", "text": "Early infantile epileptic encephalopathy 10" }, { - "baseId": "19886|101390|169599|185664|185665|185666|188053|203593|203595|269764|403779|551744|573264|575017|575020|578568|679847", + "upstreamId": "19886|101390|169599|185664|185665|185666|188053|203593|203595|269764|403779|551744|573264|575017|575020|578568|679847", "text": "Ataxia-oculomotor apraxia 4" }, { - "baseId": "19886|39601|83720|101374|101375|101376|101377|101378|101379|101380|101381|101382|101383|101384|101385|101386|101388|101390|101585|135344|135346|135348|135350|135351|135353|135354|135355|135356|135357|135358|135359|135360|135361|135362|135363|142411|142412|142413|142414|142415|142417|142419|142420|142421|142422|142424|142425|142426|142428|142429|169586|169587|169589|169590|169591|169594|169596|169599|169601|177967|185664|188053|191405|191561|191690|191824|192675|192990|194448|194953|195359|195710|196009|196283|203566|203568|203571|203573|203574|203575|203576|203577|203578|203580|203581|203584|203585|203587|203590|203592|203593|203594|203598|203601|203604|203608|203610|203611|203612|203613|203616|203619|203621|208613|208617|208619|208711|237071|243593|243594|257444|257445|267446|269129|269764|271299|272504|272782|336426|336429|336450|336464|346145|346148|346150|346152|346169|350241|350451|350453|350454|350455|350458|350460|350465|350468|350469|350470|350471|350473|350474|350476|350482|351497|351499|351502|351503|351507|351510|351514|351517|351519|351520|351521|351525|351528|351530|351532|351537|360438|364121|376665|376673|376689|377868|379616|379617|403350|403695|403697|403699|403701|403704|403779|403781|403791|403856|404208|404211|404213|404230|404234|410653|410658|410663|415665|422295|426322|430415|430416|442240|446171|446174|469015|469504|469507|469509|469511|469519|469969|469972|470274|470462|470464|470479|470484|470489|470552|470560|470563|470568|471074|471115|471116|471119|471122|471130|471532|471541|471542|471548|471553|490855|491081|493596|507125|507128|507929|533137|533139|533143|533151|533259|533277|533278|533282|533284|533285|533287|533471|533511|533693|533695|533698|533700|533709|533713|533726|533733|533740|533744|533746|533747|533752|533755|533757|533760|533762|533764|533769|534319|534321|534324|539099|570945|570949|570950|570954|571428|571430|571432|571441|571442|571444|571450|572625|572629|572995|573000|573003|573005|573006|573264|573269|573274|573276|573698|573710|573711|575014|575015|575016|575017|575019|575020|575141|575142|575143|578568|580451|580455|580619|580624|580698|580700|584318|587698|614481|620921|648286|648287|648288|648289|648290|648291|648292|648293|648294|648295|648296|648297|648298|648299|648300|648301|648302|648303|648304|648305|648306|648307|648864|648865|648866|648867|648868|648869|648870|648871|648872|648873|648874|648875|648876|648877|653197|653626|684899|684900|689146|689147|689149|689150|689228|689229|689231|689234|689235|689236|689237|690237|690239|694606|694607|694608|694609|742565|757713|760920|772817|772821|773268|773275|776707|786476|802232|821281|821282|821314|821315|821348|821349|821350|821351|847885|847886|847887|847888|847889|847890|847891|847892|847893|847894|847895|847896|847897|847898|847899|847900|847901|847902|847903|847904|847905|847906|847907|848629|848630|848631|848632|848633|848634|848635|848636|848637|848638|848639|848640|848641|848642|848643|848644|848645|848646|848647|848648|848649|848650|848651|848652|848653|848654|848655|848656|848657|848658|848659|851855|852393|852886|852987|886561|886562|886563|886564|886565|886566|886567|886568|886569|886570|886571|886572|886573|886574|886575|886576|886577|886578|886579|886580|886581|886582|886583|886584|886585|886586|886587|886588|886589|886590|886591|886592|886593|886594|886595|886596|886597|886598|886599|886600|886601|886602|886604|887495|929047|929048|929049|929050|929051|929052|929272|929273|929274|929275|929276|929277|929278|929279|938786|938787|938788|938789|938790|938791|938792|938793|938794|938795|938796|938797|938798|939061|939062|939063|939064|939065|939066|939067|940489|941238|941239|941240|941256|950870|950871|950872|950873|951182|951183|951184|951185|951186|951187|951188|958698|958699|958700|958701|958702|958703|958925|958926|958927|958928|958929|958930|958931|960299|960925|960948", + "upstreamId": "19886|39601|83720|101374|101375|101376|101377|101378|101379|101380|101381|101382|101383|101384|101385|101386|101388|101390|101585|135344|135346|135348|135350|135351|135353|135354|135355|135356|135357|135358|135359|135360|135361|135362|135363|142411|142412|142413|142414|142415|142417|142419|142420|142421|142422|142424|142425|142426|142428|142429|169586|169587|169589|169590|169591|169594|169596|169599|169601|177967|185664|188053|191405|191561|191690|191824|192675|192990|194448|194953|195359|195710|196009|196283|203566|203568|203571|203573|203574|203575|203576|203577|203578|203580|203581|203584|203585|203587|203590|203592|203593|203594|203598|203601|203604|203608|203610|203611|203612|203613|203616|203619|203621|208613|208617|208619|208711|237071|243593|243594|257444|257445|267446|269129|269764|271299|272504|272782|336426|336429|336450|336464|346145|346148|346150|346152|346169|350241|350451|350453|350454|350455|350458|350460|350465|350468|350469|350470|350471|350473|350474|350476|350482|351497|351499|351502|351503|351507|351510|351514|351517|351519|351520|351521|351525|351528|351530|351532|351537|360438|364121|376665|376673|376689|377868|379616|379617|403350|403695|403697|403699|403701|403704|403779|403781|403791|403856|404208|404211|404213|404230|404234|410653|410658|410663|415665|422295|426322|430415|430416|442240|446171|446174|469015|469504|469507|469509|469511|469519|469969|469972|470274|470462|470464|470479|470484|470489|470552|470560|470563|470568|471074|471115|471116|471119|471122|471130|471532|471541|471542|471548|471553|490855|491081|493596|507125|507128|507929|533137|533139|533143|533151|533259|533277|533278|533282|533284|533285|533287|533471|533511|533693|533695|533698|533700|533709|533713|533726|533733|533740|533744|533746|533747|533752|533755|533757|533760|533762|533764|533769|534319|534321|534324|539099|570945|570949|570950|570954|571428|571430|571432|571441|571442|571444|571450|572625|572629|572995|573000|573003|573005|573006|573264|573269|573274|573276|573698|573710|573711|575014|575015|575016|575017|575019|575020|575141|575142|575143|578568|580451|580455|580619|580624|580698|580700|584318|587698|614481|620921|648286|648287|648288|648289|648290|648291|648292|648293|648294|648295|648296|648297|648298|648299|648300|648301|648302|648303|648304|648305|648306|648307|648864|648865|648866|648867|648868|648869|648870|648871|648872|648873|648874|648875|648876|648877|653197|653626|684899|684900|689146|689147|689149|689150|689228|689229|689231|689234|689235|689236|689237|690237|690239|694606|694607|694608|694609|742565|757713|760920|772817|772821|773268|773275|776707|786476|802232|821281|821282|821314|821315|821348|821349|821350|821351|847885|847886|847887|847888|847889|847890|847891|847892|847893|847894|847895|847896|847897|847898|847899|847900|847901|847902|847903|847904|847905|847906|847907|848629|848630|848631|848632|848633|848634|848635|848636|848637|848638|848639|848640|848641|848642|848643|848644|848645|848646|848647|848648|848649|848650|848651|848652|848653|848654|848655|848656|848657|848658|848659|851855|852393|852886|852987|886561|886562|886563|886564|886565|886566|886567|886568|886569|886570|886571|886572|886573|886574|886575|886576|886577|886578|886579|886580|886581|886582|886583|886584|886585|886586|886587|886588|886589|886590|886591|886592|886593|886594|886595|886596|886597|886598|886599|886600|886601|886602|886604|887495|929047|929048|929049|929050|929051|929052|929272|929273|929274|929275|929276|929277|929278|929279|938786|938787|938788|938789|938790|938791|938792|938793|938794|938795|938796|938797|938798|939061|939062|939063|939064|939065|939066|939067|940489|941238|941239|941240|941256|950870|950871|950872|950873|951182|951183|951184|951185|951186|951187|951188|958698|958699|958700|958701|958702|958703|958925|958926|958927|958928|958929|958930|958931|960299|960925|960948", "text": "Early infantile epileptic encephalopathy 12" }, { - "baseId": "19889|19890|19891|53251|53252|53253|53254|53255|53256|53257|75452|176237|176360|187219|187220|187221|193735|231119|336750|336755|336757|336759|336765|336766|346418|346422|346427|346428|350644|350645|350646|350647|350648|350649|351699|351700|351701|351704|351705|351708|351709|351712|351713|590337|886751|886752|886753|886754|886755|886756|886757|886758|886759|886760|886761|886762|886763|886764|886765|886766|887504|982228", + "upstreamId": "19889|19890|19891|53251|53252|53253|53254|53255|53256|53257|75452|176237|176360|187219|187220|187221|193735|231119|336750|336755|336757|336759|336765|336766|346418|346422|346427|346428|350644|350645|350646|350647|350648|350649|351699|351700|351701|351704|351705|351708|351709|351712|351713|590337|886751|886752|886753|886754|886755|886756|886757|886758|886759|886760|886761|886762|886763|886764|886765|886766|887504|982228", "text": "Deafness, autosomal recessive 29" }, { - "baseId": "19892|19894|19895|19897|19899|19900|19902|19903|19905|19906|19909", + "upstreamId": "19892|19894|19895|19897|19899|19900|19902|19903|19905|19906|19909", "text": "Blepharophimosis, ptosis, and epicanthus inversus syndrome type 1" }, { - "baseId": "19892|19893|19896|19897|19898|19904|19905|19908|19910|171757|171758|171759|178772|178773|178774|178776|178777|178778|250961|250962|354103|354104|354105|354106|354107|354108|354109|354110|354111|354112|354113|354114|354115|354116|354117|354118|354119|354120|354121|354122|354123|354124|354125|354126|354127|354128|354129|354130|354131|354132|354133|354134|354135|354136|354137|354138|354139|354140|354141|354142|354143|354144|354145|354146|354147|354148|354149|354150|354151|354152|354153|354154|354155|362075|384478|427126|550591|622791|622792|622793|622794|622795|622796|622797|622798|622799|622800|622801|622802|622803|622804|622805|622806|622807|622808|622809|622810|622811|622812|622813|622814|622815|622816|622817|622818|622819|622820|622821|622822|622823|622824|622825|622826|622827|818224", + "upstreamId": "19892|19893|19896|19897|19898|19904|19905|19908|19910|171757|171758|171759|178772|178773|178774|178776|178777|178778|250961|250962|354103|354104|354105|354106|354107|354108|354109|354110|354111|354112|354113|354114|354115|354116|354117|354118|354119|354120|354121|354122|354123|354124|354125|354126|354127|354128|354129|354130|354131|354132|354133|354134|354135|354136|354137|354138|354139|354140|354141|354142|354143|354144|354145|354146|354147|354148|354149|354150|354151|354152|354153|354154|354155|362075|384478|427126|550591|622791|622792|622793|622794|622795|622796|622797|622798|622799|622800|622801|622802|622803|622804|622805|622806|622807|622808|622809|622810|622811|622812|622813|622814|622815|622816|622817|622818|622819|622820|622821|622822|622823|622824|622825|622826|622827|818224", "text": "Blepharophimosis, ptosis, and epicanthus inversus" }, { - "baseId": "19893|19896|19897|19898|19900|19901|39464", + "upstreamId": "19893|19896|19897|19898|19900|19901|39464", "text": "Blepharophimosis, ptosis, and epicanthus inversus syndrome type 2" }, { - "baseId": "19893", + "upstreamId": "19893", "text": "Blepharophimosis, ptosis, and epicanthus inversus, type II with Duane retraction syndrome" }, { - "baseId": "19907|19908|19910|494916|513226", + "upstreamId": "19907|19908|19910|494916|513226", "text": "Premature ovarian failure 3" }, { - "baseId": "19911|19912|19913|19914|19915|19916|19917|19918|19919|19920|205160|253619|253623|309005|309009|313767|313770|313771|319579|319583|319584|320160|320168|723674|723675|902595|902596|902597|902598|902599|902600|902601|902602|903447|903448|903449", + "upstreamId": "19911|19912|19913|19914|19915|19916|19917|19918|19919|19920|205160|253619|253623|309005|309009|313767|313770|313771|319579|319583|319584|320160|320168|723674|723675|902595|902596|902597|902598|902599|902600|902601|902602|903447|903448|903449", "text": "Testosterone 17-beta-dehydrogenase deficiency" }, { - "baseId": "19913|19914|19916|205160|259931|485709|485745|485746|485747|485748|485749|485750|485751|485752", + "upstreamId": "19913|19914|19916|205160|259931|485709|485745|485746|485747|485748|485749|485750|485751|485752", "text": "Pseudohermaphroditism" }, { - "baseId": "19923", + "upstreamId": "19923", "text": "HYPERTENSION, INSULIN RESISTANCE-RELATED, SUSCEPTIBILITY TO" }, { - "baseId": "19925|19931", + "upstreamId": "19925|19931", "text": "Pituitary adenoma predisposition" }, { - "baseId": "19925|19926|19927|19928|19929|19930|19931|19932|19933|49580|49581|49582|49583|49584|49585|49586|49587|49588|49589|49590|49591|49592|49593|49594|49595|49596|49597|49598|49599|49600|49601|49602|49603|49604|49605|49606|49607|49608|49609|49610|49611|49612|49613|49615|49616|49617|49618|49619|49620|49621|49622|49623|49624|49625|49626|49627|49628|49630|49631|49632|49634|49635|49636|49637|49638|49639|254274|254275|254276|314891|314892|321250|321657|321659|321664|321673|321676|321678|321679|327770|327776|328842|328845|328849|328850|328858|328859|440017|440018|476010|476326|476355|810866|810885|810887|810903|810904|810914|868413|868414|868415", + "upstreamId": "19925|19926|19927|19928|19929|19930|19931|19932|19933|49580|49581|49582|49583|49584|49585|49586|49587|49588|49589|49590|49591|49592|49593|49594|49595|49596|49597|49598|49599|49600|49601|49602|49603|49604|49605|49606|49607|49608|49609|49610|49611|49612|49613|49615|49616|49617|49618|49619|49620|49621|49622|49623|49624|49625|49626|49627|49628|49630|49631|49632|49634|49635|49636|49637|49638|49639|254274|254275|254276|314891|314892|321250|321657|321659|321664|321673|321676|321678|321679|327770|327776|328842|328845|328849|328850|328858|328859|440017|440018|476010|476326|476355|810866|810885|810887|810903|810904|810914|868413|868414|868415", "text": "Somatotroph adenoma" }, { - "baseId": "19932|30944|171718|171719|171720|171721|476010|476355", + "upstreamId": "19932|30944|171718|171719|171720|171721|476010|476355", "text": "Pituitary dependent hypercortisolism" }, { - "baseId": "19932", + "upstreamId": "19932", "text": "Dopamine agonist response" }, { - "baseId": "19935", + "upstreamId": "19935", "text": "Acheiropodia" }, { - "baseId": "19936|19938|19939|19941|19942|19945|19946|39453|39454|131903|138840|267812|268089|302229|302231|302235|302256|302261|302262|302264|302265|302269|302271|302272|302280|302281|302284|302285|302286|302290|302292|302294|302295|305453|305454|305456|305458|305461|305463|305480|305482|305484|305501|305504|305505|305506|310238|310241|310242|310248|310256|310271|310272|310273|310280|310282|310283|310284|310290|310295|310307|310313|310335|310360|310364|310365|310366|310373|310375|310377|310378|310386|310389|310395|310399|310400|310406|310407|310408|310415|310420|310429|310431|310432|310436|353808|897701|897702|897703|897704|897705|897706|897707|897708|897709|897710|897711|897712|897713|897714|897715|897716|897717|897718|897719|897720|897721|897722|897723|897724|897725|897726|897727|897728|897729|897730|897731|897732|897733|897734|897735|900334", + "upstreamId": "19936|19938|19939|19941|19942|19945|19946|39453|39454|131903|138840|267812|268089|302229|302231|302235|302256|302261|302262|302264|302265|302269|302271|302272|302280|302281|302284|302285|302286|302290|302292|302294|302295|305453|305454|305456|305458|305461|305463|305480|305482|305484|305501|305504|305505|305506|310238|310241|310242|310248|310256|310271|310272|310273|310280|310282|310283|310284|310290|310295|310307|310313|310335|310360|310364|310365|310366|310373|310375|310377|310378|310386|310389|310395|310399|310400|310406|310407|310408|310415|310420|310429|310431|310432|310436|353808|897701|897702|897703|897704|897705|897706|897707|897708|897709|897710|897711|897712|897713|897714|897715|897716|897717|897718|897719|897720|897721|897722|897723|897724|897725|897726|897727|897728|897729|897730|897731|897732|897733|897734|897735|900334", "text": "Polydactyly, preaxial II" }, { - "baseId": "19937|131903|165717|165719", + "upstreamId": "19937|131903|165717|165719", "text": "Tibia, hypoplasia or aplasia of, with polydactyly" }, { - "baseId": "19939|19941|19942|19945|131903", + "upstreamId": "19939|19941|19942|19945|131903", "text": "Triphalangeal thumb" }, { - "baseId": "19940|19943|310236|310274|310336|310388|310404|310438", + "upstreamId": "19940|19943|310236|310274|310336|310388|310404|310438", "text": "Triphalangeal thumb polysyndactyly syndrome" }, { - "baseId": "19944|165718|576248", + "upstreamId": "19944|165718|576248", "text": "Syndactyly, type IV" }, { - "baseId": "19947|19948|34370|34371|34372|49674|103705|103706|103707|141830|141831|141833|141834|141836|141837|141839|141840|141841|232037|232038|232039|232040|232044|232045|232047|232049|232050|232055|232058|232059|245082|245085|245086|245087|256646|264723|330937|330947|330954|330957|330967|330976|330982|330983|330984|330988|330992|330994|330999|331000|331005|331010|331012|331014|331017|331018|331019|331023|331031|331032|331038|331045|331047|331048|331049|331053|331054|331056|331060|341219|341226|341227|341251|341252|341261|341262|341276|341277|341285|341290|341296|341297|341299|341300|341303|341305|341307|341309|341313|341314|346756|346757|346758|346759|346761|346765|346766|346767|346770|346771|346774|346776|346780|346794|346795|346802|346804|346807|346808|346809|346813|346817|346820|346828|346831|346834|346845|346848|346850|346853|348041|348042|348043|348044|348045|348046|348047|348050|348053|348057|348058|348059|348060|348061|348062|348065|348070|348072|348077|348078|348080|348081|348083|348084|348090|348091|348096|375857|375858|375859|376754|376761|433667|433668|445948|467909|468811|468814|469219|469237|469627|469633|491476|506897|512877|532173|532180|532182|532185|532186|532269|532270|532564|532567|532580|532589|539079|570061|570066|570072|571852|571856|572524|572528|572571|574715|610124|614450|620895|620896|647111|647112|647113|647114|647115|647116|647117|647118|647119|647120|647121|647122|647123|647124|652885|653549|669717|694259|727684|731213|772100|800079|800080|800081|800082|821181|821182|846720|846721|846722|846723|846724|846725|846726|846727|846728|846729|846730|846731|846732|846733|846734|846735|846736|852270|879029|879030|879031|879032|879033|879034|879035|879036|879037|879038|879039|879040|879041|879042|879043|879044|879045|879046|879047|879048|879049|879050|879051|879052|879053|879054|879055|879056|879057|879058|879059|879060|879061|879062|879063|879064|879065|879066|879067|879068|879069|879070|879071|879072|879073|879074|879075|879076|879077|879078|879079|879080|879081|879082|879083|879084|880642|880643|928669|928670|928671|928672|938393|938394|940454|950476|950477|950478|950479|950480|950481|958449|958450|958451|982136|982137|982138", + "upstreamId": "19947|19948|34370|34371|34372|49674|103705|103706|103707|141830|141831|141833|141834|141836|141837|141839|141840|141841|232037|232038|232039|232040|232044|232045|232047|232049|232050|232055|232058|232059|245082|245085|245086|245087|256646|264723|330937|330947|330954|330957|330967|330976|330982|330983|330984|330988|330992|330994|330999|331000|331005|331010|331012|331014|331017|331018|331019|331023|331031|331032|331038|331045|331047|331048|331049|331053|331054|331056|331060|341219|341226|341227|341251|341252|341261|341262|341276|341277|341285|341290|341296|341297|341299|341300|341303|341305|341307|341309|341313|341314|346756|346757|346758|346759|346761|346765|346766|346767|346770|346771|346774|346776|346780|346794|346795|346802|346804|346807|346808|346809|346813|346817|346820|346828|346831|346834|346845|346848|346850|346853|348041|348042|348043|348044|348045|348046|348047|348050|348053|348057|348058|348059|348060|348061|348062|348065|348070|348072|348077|348078|348080|348081|348083|348084|348090|348091|348096|375857|375858|375859|376754|376761|433667|433668|445948|467909|468811|468814|469219|469237|469627|469633|491476|506897|512877|532173|532180|532182|532185|532186|532269|532270|532564|532567|532580|532589|539079|570061|570066|570072|571852|571856|572524|572528|572571|574715|610124|614450|620895|620896|647111|647112|647113|647114|647115|647116|647117|647118|647119|647120|647121|647122|647123|647124|652885|653549|669717|694259|727684|731213|772100|800079|800080|800081|800082|821181|821182|846720|846721|846722|846723|846724|846725|846726|846727|846728|846729|846730|846731|846732|846733|846734|846735|846736|852270|879029|879030|879031|879032|879033|879034|879035|879036|879037|879038|879039|879040|879041|879042|879043|879044|879045|879046|879047|879048|879049|879050|879051|879052|879053|879054|879055|879056|879057|879058|879059|879060|879061|879062|879063|879064|879065|879066|879067|879068|879069|879070|879071|879072|879073|879074|879075|879076|879077|879078|879079|879080|879081|879082|879083|879084|880642|880643|928669|928670|928671|928672|938393|938394|940454|950476|950477|950478|950479|950480|950481|958449|958450|958451|982136|982137|982138", "text": "Majeed syndrome" }, { - "baseId": "19949|19950|19951|19952|19953|102391|250096|250097|250098|250102|250104|250106|250108|281682|281684|281685|281686|281691|281692|281702|281704|281710|281715|281717|281718|282336|282337|282338|282341|282342|282343|282356|282357|282358|282364|282372|282373|283743|283748|283750|283754|283758|283760|283761|283777|283781|283782|283783|283790|283801|283802|283806|283812|283813|283814|284008|284010|284013|284016|284018|284019|284025|284032|284033|284035|284043|284060|284066|284073|620027|653925|653926|707688|707689|798480|880917|880918|880919|880920|880921|880922|880923|880924|880925|880926|880927|880928|880929|880930|880931|880932|880933|880934|880935|880936|880937|880938|880939|880940|880941|880942|880943|880944|880945|880946|880947|880948|880949|880950|880951|880952|880953|880954|880955|880956|880957|880958|880959|880960|882788|882789|882790|961501", + "upstreamId": "19949|19950|19951|19952|19953|102391|250096|250097|250098|250102|250104|250106|250108|281682|281684|281685|281686|281691|281692|281702|281704|281710|281715|281717|281718|282336|282337|282338|282341|282342|282343|282356|282357|282358|282364|282372|282373|283743|283748|283750|283754|283758|283760|283761|283777|283781|283782|283783|283790|283801|283802|283806|283812|283813|283814|284008|284010|284013|284016|284018|284019|284025|284032|284033|284035|284043|284060|284066|284073|620027|653925|653926|707688|707689|798480|880917|880918|880919|880920|880921|880922|880923|880924|880925|880926|880927|880928|880929|880930|880931|880932|880933|880934|880935|880936|880937|880938|880939|880940|880941|880942|880943|880944|880945|880946|880947|880948|880949|880950|880951|880952|880953|880954|880955|880956|880957|880958|880959|880960|882788|882789|882790|961501", "text": "Myoglobinuria, acute recurrent, autosomal recessive" }, { - "baseId": "19954|19955|19955|19956|19957|19960|19961|19964|19966|19967|19971|19972|19972|53278|53279|53280|53281|53282|53283|55024|55025|55026|55031|55032|55037|55038|55040|55042|55045|55047|55048|55050|55052|55055|55056|55058|55060|55061|55062|55063|55067|55069|55070|55071|55073|55074|55076|55077|55077|55079|55082|55084|55088|55089|55090|55092|55093|55095|55096|55097|55099|55099|55100|55101|55102|55103|55104|55105|55106|55107|55108|55109|55110|55112|55112|55114|55120|55121|55122|55125|55126|55127|55129|55129|55130|55131|55136|55138|55139|55141|55142|55143|55147|55149|55150|55151|55152|55157|55161|55162|55165|55166|55167|55171|55172|55177|55180|55181|55182|55183|55184|55185|55186|55186|55187|55189|55191|55193|55196|55197|55197|55199|55201|55202|55203|55207|55208|55210|55222|55223|55224|55226|55227|55230|55232|55233|55236|55237|55239|55241|55243|55244|55245|55246|55247|55629|55640|101920|137041|137042|137043|140405|174676|174678|174683|174702|174719|174950|174952|174956|174958|174964|174965|174966|174966|174976|174977|174981|174982|174983|174991|175000|175002|175007|175133|175248|175252|175253|175257|175260|175264|175275|175278|175279|175285|175289|177131|177262|177262|177561|191834|191947|192050|194583|194667|195531|195802|226531|226539|228232|229845|229854|229855|229864|229867|229870|229873|229873|229883|229884|229886|229890|229902|229903|229907|253826|266037|266983|268780|269641|310646|310659|310668|310674|310687|310688|310691|310693|310695|310703|310704|310713|310714|310717|310726|310727|310729|310731|310736|310739|310742|310743|310745|310747|315907|315920|315925|315926|315927|315928|315929|315930|315942|315946|315947|315949|315971|315975|315976|315981|315982|315987|315990|316006|316010|316021|316031|316044|316047|321704|321718|321998|322001|322002|322004|322005|322010|322011|322034|322036|322048|322049|322050|322059|322061|322073|322079|322081|322087|322088|322089|322090|322102|322105|322106|322108|322644|322645|322647|322654|322656|322658|322659|322668|322674|322681|322684|322685|322686|322687|322694|322701|322704|322709|322710|322711|322712|322713|322714|322725|322726|353137|353139|353147|353148|384487|404788|407901|413286|444640|488663|488812|496542|496949|496950|497151|497160|513307|513308|513309|513310|536796|551563|551564|576351|576352|588232|590298|609761|620367|656013|681817|752219|767923|767925|767926|767935|787689|837194|837234|857242|866114|866115|866116|866117|866118|866119|866120|866121|866122|866123|866124|866125|866126|866127|866128|866129|866130|866131|866132|866133|866134|866135|866136|866137|866138|866139|866140|866141|866142|866143|866144|866145|866146|866147|866148|866149|866150|866151|866152|866153|866154|866155|866156|866157|866158|866159|866160|866161|866162|866163|866164|866165|866166|866167|866175|868487|868488|868489|868490|868491|868492|868493|868494|868495|868496|868497|868498|906129|919273|919274|919275|919276|919277|919278|976659", + "upstreamId": "19954|19955|19955|19956|19957|19960|19961|19964|19966|19967|19971|19972|19972|53278|53279|53280|53281|53282|53283|55024|55025|55026|55031|55032|55037|55038|55040|55042|55045|55047|55048|55050|55052|55055|55056|55058|55060|55061|55062|55063|55067|55069|55070|55071|55073|55074|55076|55077|55077|55079|55082|55084|55088|55089|55090|55092|55093|55095|55096|55097|55099|55099|55100|55101|55102|55103|55104|55105|55106|55107|55108|55109|55110|55112|55112|55114|55120|55121|55122|55125|55126|55127|55129|55129|55130|55131|55136|55138|55139|55141|55142|55143|55147|55149|55150|55151|55152|55157|55161|55162|55165|55166|55167|55171|55172|55177|55180|55181|55182|55183|55184|55185|55186|55186|55187|55189|55191|55193|55196|55197|55197|55199|55201|55202|55203|55207|55208|55210|55222|55223|55224|55226|55227|55230|55232|55233|55236|55237|55239|55241|55243|55244|55245|55246|55247|55629|55640|101920|137041|137042|137043|140405|174676|174678|174683|174702|174719|174950|174952|174956|174958|174964|174965|174966|174966|174976|174977|174981|174982|174983|174991|175000|175002|175007|175133|175248|175252|175253|175257|175260|175264|175275|175278|175279|175285|175289|177131|177262|177262|177561|191834|191947|192050|194583|194667|195531|195802|226531|226539|228232|229845|229854|229855|229864|229867|229870|229873|229873|229883|229884|229886|229890|229902|229903|229907|253826|266037|266983|268780|269641|310646|310659|310668|310674|310687|310688|310691|310693|310695|310703|310704|310713|310714|310717|310726|310727|310729|310731|310736|310739|310742|310743|310745|310747|315907|315920|315925|315926|315927|315928|315929|315930|315942|315946|315947|315949|315971|315975|315976|315981|315982|315987|315990|316006|316010|316021|316031|316044|316047|321704|321718|321998|322001|322002|322004|322005|322010|322011|322034|322036|322048|322049|322050|322059|322061|322073|322079|322081|322087|322088|322089|322090|322102|322105|322106|322108|322644|322645|322647|322654|322656|322658|322659|322668|322674|322681|322684|322685|322686|322687|322694|322701|322704|322709|322710|322711|322712|322713|322714|322725|322726|353137|353139|353147|353148|384487|404788|407901|413286|444640|488663|488812|496542|496949|496950|497151|497160|513307|513308|513309|513310|536796|551563|551564|576351|576352|588232|590298|609761|620367|656013|681817|752219|767923|767925|767926|767935|787689|837194|837234|857242|866114|866115|866116|866117|866118|866119|866120|866121|866122|866123|866124|866125|866126|866127|866128|866129|866130|866131|866132|866133|866134|866135|866136|866137|866138|866139|866140|866141|866142|866143|866144|866145|866146|866147|866148|866149|866150|866151|866152|866153|866154|866155|866156|866157|866158|866159|866160|866161|866162|866163|866164|866165|866166|866167|866175|868487|868488|868489|868490|868491|868492|868493|868494|868495|868496|868497|868498|906129|919273|919274|919275|919276|919277|919278|976659", "text": "Usher syndrome type 1D" }, { - "baseId": "19955|55026|55042|55045|55048|55057|55060|55077|55079|55138|55157|55183|55186|55205|55241|55243|99987|174991|175248|175260|175275|175279|175285|175289|191947|192050|229864|229867|229873|229883|229890|266983|269641|310668|310674|310688|310691|310695|310704|310717|310726|310729|310731|310736|310739|310742|310743|310745|310747|315906|315907|315920|315925|315926|315927|315928|315930|315942|315946|315947|315975|315976|315981|316006|316010|316021|316031|322001|322004|322010|322034|322036|322048|322059|322073|322087|322088|322089|322090|322101|322105|322109|322644|322645|322646|322647|322651|322654|322658|322668|322674|322686|322701|322709|322710|322711|322712|322713|322725", + "upstreamId": "19955|55026|55042|55045|55048|55057|55060|55077|55079|55138|55157|55183|55186|55205|55241|55243|99987|174991|175248|175260|175275|175279|175285|175289|191947|192050|229864|229867|229873|229883|229890|266983|269641|310668|310674|310688|310691|310695|310704|310717|310726|310729|310731|310736|310739|310742|310743|310745|310747|315906|315907|315920|315925|315926|315927|315928|315930|315942|315946|315947|315975|315976|315981|316006|316010|316021|316031|322001|322004|322010|322034|322036|322048|322059|322073|322087|322088|322089|322090|322101|322105|322109|322644|322645|322646|322647|322651|322654|322658|322668|322674|322686|322701|322709|322710|322711|322712|322713|322725", "text": "CDH23-Related Disorders" }, { - "baseId": "19955|19958|19959|19961|19961|19962|19963|19966|19967|19968|53278|53279|53280|53281|53282|53283|55024|55025|55026|55031|55032|55037|55038|55040|55042|55045|55047|55048|55050|55052|55055|55056|55058|55060|55061|55062|55063|55067|55069|55070|55071|55073|55074|55076|55077|55077|55079|55082|55084|55088|55089|55090|55092|55093|55095|55096|55097|55099|55099|55100|55101|55102|55103|55104|55105|55106|55107|55108|55109|55110|55112|55112|55114|55120|55121|55122|55125|55126|55127|55129|55129|55130|55131|55136|55138|55139|55142|55143|55147|55149|55150|55151|55152|55157|55161|55162|55165|55166|55167|55171|55172|55177|55180|55181|55182|55183|55184|55185|55186|55186|55187|55189|55191|55193|55196|55197|55197|55199|55201|55202|55203|55207|55208|55210|55222|55223|55224|55226|55227|55230|55232|55233|55236|55237|55239|55241|55243|55244|55245|55246|55247|101920|140405|174676|174678|174683|174950|174952|174956|174958|174964|174965|174966|174966|174976|174977|174981|174982|174983|174991|174996|175000|175002|175007|175248|175252|175253|175257|175260|175264|175275|175278|175279|175285|175289|177131|177262|177262|177561|191834|191947|192050|194583|194667|195531|195802|228231|228232|229845|229855|229864|229867|229870|229873|229873|229883|229884|229886|229890|229894|229897|229902|229903|229907|237615|253826|266983|268780|269641|310646|310659|310668|310674|310687|310688|310691|310693|310695|310703|310704|310713|310714|310717|310726|310727|310729|310731|310736|310739|310742|310743|310745|310747|315907|315920|315925|315926|315927|315928|315929|315930|315942|315946|315947|315949|315971|315975|315976|315981|315982|315987|315990|316006|316010|316021|316031|316044|316047|321998|322001|322002|322004|322005|322010|322011|322034|322036|322048|322049|322050|322059|322061|322073|322079|322081|322087|322088|322089|322090|322102|322105|322106|322108|322644|322645|322647|322654|322656|322658|322659|322668|322674|322681|322684|322685|322686|322687|322694|322701|322704|322709|322710|322711|322712|322713|322714|322725|322726|353137|353139|353147|353148|362230|389232|389233|389234|389235|389236|389237|389238|404790|407901|413286|437859|439882|439911|439912|439913|439914|439915|439916|439917|439918|444640|488663|488812|496542|497151|497160|536796|551778|588232|609761|610567|612090|615810|615811|615838|615839|620367|620368|656013|752219|767923|767925|767926|767935|787689|837194|837234|857242|866114|866115|866116|866117|866118|866119|866120|866121|866122|866123|866124|866125|866126|866127|866128|866129|866130|866131|866132|866133|866134|866135|866136|866137|866138|866139|866140|866141|866142|866143|866144|866145|866146|866147|866148|866149|866150|866151|866152|866153|866154|866155|866156|866157|866158|866159|866160|866161|866162|866163|866164|866165|866166|866167|866175|868487|868488|868489|868490|868491|868492|868493|868494|868495|868496|868497|868498|966361|976659", + "upstreamId": "19955|19958|19959|19961|19961|19962|19963|19966|19967|19968|53278|53279|53280|53281|53282|53283|55024|55025|55026|55031|55032|55037|55038|55040|55042|55045|55047|55048|55050|55052|55055|55056|55058|55060|55061|55062|55063|55067|55069|55070|55071|55073|55074|55076|55077|55077|55079|55082|55084|55088|55089|55090|55092|55093|55095|55096|55097|55099|55099|55100|55101|55102|55103|55104|55105|55106|55107|55108|55109|55110|55112|55112|55114|55120|55121|55122|55125|55126|55127|55129|55129|55130|55131|55136|55138|55139|55142|55143|55147|55149|55150|55151|55152|55157|55161|55162|55165|55166|55167|55171|55172|55177|55180|55181|55182|55183|55184|55185|55186|55186|55187|55189|55191|55193|55196|55197|55197|55199|55201|55202|55203|55207|55208|55210|55222|55223|55224|55226|55227|55230|55232|55233|55236|55237|55239|55241|55243|55244|55245|55246|55247|101920|140405|174676|174678|174683|174950|174952|174956|174958|174964|174965|174966|174966|174976|174977|174981|174982|174983|174991|174996|175000|175002|175007|175248|175252|175253|175257|175260|175264|175275|175278|175279|175285|175289|177131|177262|177262|177561|191834|191947|192050|194583|194667|195531|195802|228231|228232|229845|229855|229864|229867|229870|229873|229873|229883|229884|229886|229890|229894|229897|229902|229903|229907|237615|253826|266983|268780|269641|310646|310659|310668|310674|310687|310688|310691|310693|310695|310703|310704|310713|310714|310717|310726|310727|310729|310731|310736|310739|310742|310743|310745|310747|315907|315920|315925|315926|315927|315928|315929|315930|315942|315946|315947|315949|315971|315975|315976|315981|315982|315987|315990|316006|316010|316021|316031|316044|316047|321998|322001|322002|322004|322005|322010|322011|322034|322036|322048|322049|322050|322059|322061|322073|322079|322081|322087|322088|322089|322090|322102|322105|322106|322108|322644|322645|322647|322654|322656|322658|322659|322668|322674|322681|322684|322685|322686|322687|322694|322701|322704|322709|322710|322711|322712|322713|322714|322725|322726|353137|353139|353147|353148|362230|389232|389233|389234|389235|389236|389237|389238|404790|407901|413286|437859|439882|439911|439912|439913|439914|439915|439916|439917|439918|444640|488663|488812|496542|497151|497160|536796|551778|588232|609761|610567|612090|615810|615811|615838|615839|620367|620368|656013|752219|767923|767925|767926|767935|787689|837194|837234|857242|866114|866115|866116|866117|866118|866119|866120|866121|866122|866123|866124|866125|866126|866127|866128|866129|866130|866131|866132|866133|866134|866135|866136|866137|866138|866139|866140|866141|866142|866143|866144|866145|866146|866147|866148|866149|866150|866151|866152|866153|866154|866155|866156|866157|866158|866159|866160|866161|866162|866163|866164|866165|866166|866167|866175|868487|868488|868489|868490|868491|868492|868493|868494|868495|868496|868497|868498|966361|976659", "text": "Deafness, autosomal recessive 12" }, { - "baseId": "19955|55055|55077|55099|55108|55112|55142|55165|55166|55186|55197|55241|101920|174966|175253|177262|195531|229873|322073|407901|413285|431528|431529|431530|431531|919284|976659", + "upstreamId": "19955|55055|55077|55099|55108|55112|55142|55165|55166|55186|55197|55241|101920|174966|175253|177262|195531|229873|322073|407901|413285|431528|431529|431530|431531|919284|976659", "text": "Pituitary adenoma 5, multiple types" }, { - "baseId": "19964|19965|19973|55611", + "upstreamId": "19964|19965|19973|55611", "text": "USHER SYNDROME, TYPE ID/F, DIGENIC" }, { - "baseId": "19967|21280|21650|21652|32039|32041|32042|32043|32044|32045|32046|32048|32049|32050|32053|32055|32062|32066|32068|32071|34237|34239|34240|34241|44943|52304|52356|52371|52377|53882|53884|53898|53899|53902|53904|53907|53912|53913|53914|53921|53922|53923|53930|54298|54330|54481|54484|55056|55106|57422|75292|100288|169014|174003|174149|174154|175072|175075|175091|175360|175361|175904|176305|176463|186857|186859|186864|190031|204595|227350|228470|229894|229966|230518|230519|237597|237625|266218|271402|358131|358134|358135|362175|375519|407904|413167|421956|441576|445123|445124|489962|496205|508743|546404|546920|546940|576370|576371|581737|609078|791171|792676|857346|918287|963437|963438|963439|966545|966546|966867|966868", + "upstreamId": "19967|21280|21650|21652|32039|32041|32042|32043|32044|32045|32046|32048|32049|32050|32053|32055|32062|32066|32068|32071|34237|34239|34240|34241|44943|52304|52356|52371|52377|53882|53884|53898|53899|53902|53904|53907|53912|53913|53914|53921|53922|53923|53930|54298|54330|54481|54484|55056|55106|57422|75292|100288|169014|174003|174149|174154|175072|175075|175091|175360|175361|175904|176305|176463|186857|186859|186864|190031|204595|227350|228470|229894|229966|230518|230519|237597|237625|266218|271402|358131|358134|358135|362175|375519|407904|413167|421956|441576|445123|445124|489962|496205|508743|546404|546920|546940|576370|576371|581737|609078|791171|792676|857346|918287|963437|963438|963439|966545|966546|966867|966868", "text": "Nonsyndromic hearing loss and deafness" }, { - "baseId": "19969|19970|19971|19972|19972|19973|19977|55601|55604|55605|55606|55607|55609|55611|55613|55614|55615|55616|55617|55618|55619|55620|55621|55622|55623|55625|55629|55629|55631|55639|55640|55642|55643|55645|55647|55650|55657|55662|55663|55664|55666|55669|55670|55672|55673|55674|55676|55678|128634|132045|174713|174714|174715|174717|174718|174719|174719|174948|175117|175123|175125|175127|175131|175132|175133|177914|178275|186795|192697|214844|226531|229793|229807|229809|229810|229813|238042|238043|266037|268643|268671|275030|315651|321687|321704|321718|321718|357840|357841|357842|357843|357844|357845|357846|357847|357848|357849|357850|357851|357852|357853|357854|357855|357856|357857|357858|357859|357860|357861|357862|357863|357864|357865|357866|357867|357868|357869|357870|357871|357872|357873|357874|373399|404788|407863|415224|444618|490591|540589|540590|540591|540592|540593|540594|540595|540596|540597|545096|545097|545099|545102|545105|545107|545108|545109|545111|545114|545118|545121|545122|545124|545127|545130|545144|545154|545159|545167|545172|545174|545186|545187|545191|545200|545206|545209|545210|545212|545213|545215|545217|545219|545222|545230|545235|545241|545243|545250|545252|545260|545264|545269|545270|545272|545276|545281|545283|545298|545302|545303|545305|545306|545439|545442|545445|545447|545450|545455|545461|545464|545465|545470|545473|545478|545480|545482|545486|545488|545489|545491|545492|545494|545496|545497|545498|545501|545502|545504|545505|545506|545507|545508|545509|545511|545514|545516|545517|545521|545522|545524|545527|545529|545531|545535|545536|545538|545539|545542|545544|545547|545548|545549|545552|545554|545555|545558|545559|545563|545564|545567|545568|545571|545573|545575|545576|545577|545579|545581|545583|545585|545587|545588|545590|545592|545594|545596|545598|545599|545601|545602|545604|545606|545608|545618|545619|545623|545627|545629|545631|545634|545636|545640|545644|545645|545652|545653|545725|545729|545731|545733|545742|545746|545748|545751|545755|545757|545758|545760|545761|545762|545764|545765|545775|545779|545780|545785|545795|545796|545797|545799|545801|545803|545806|545819|545829|545834|545835|545836|545839|545850|545856|545858|545861|545863|545868|545871|545873|545880|545883|545885|545889|545891|545893|545895|545901|545904|545909|545912|545913|545915|545923|545927|545929|545931|549462|578485|614603|614604|654596|712405|737518|737520|744608|752141|759941|767801|767802|767806|767807|767810|767811|767813|767817|767818|767821|775524|783618|783622|783623|783633|783634|783636|783644|790964|790965|836952|836953|836954|836957|836960|836963|836964|836968|836971|836972|836973|836980|836984|866007|866009|925836|946936|978645|978646|978647|978648|978649|978650|978651|978652|978653|978654|978655|978656|978657|978658|978659|978660|978661|978662|978663|978664|978665|978666|978667|978668|978669|978670|978671|978672|978673|978674|978675|978676|978677|978678|978679|978680|978681|978682", + "upstreamId": "19969|19970|19971|19972|19972|19973|19977|55601|55604|55605|55606|55607|55609|55611|55613|55614|55615|55616|55617|55618|55619|55620|55621|55622|55623|55625|55629|55629|55631|55639|55640|55642|55643|55645|55647|55650|55657|55662|55663|55664|55666|55669|55670|55672|55673|55674|55676|55678|128634|132045|174713|174714|174715|174717|174718|174719|174719|174948|175117|175123|175125|175127|175131|175132|175133|177914|178275|186795|192697|214844|226531|229793|229807|229809|229810|229813|238042|238043|266037|268643|268671|275030|315651|321687|321704|321718|321718|357840|357841|357842|357843|357844|357845|357846|357847|357848|357849|357850|357851|357852|357853|357854|357855|357856|357857|357858|357859|357860|357861|357862|357863|357864|357865|357866|357867|357868|357869|357870|357871|357872|357873|357874|373399|404788|407863|415224|444618|490591|540589|540590|540591|540592|540593|540594|540595|540596|540597|545096|545097|545099|545102|545105|545107|545108|545109|545111|545114|545118|545121|545122|545124|545127|545130|545144|545154|545159|545167|545172|545174|545186|545187|545191|545200|545206|545209|545210|545212|545213|545215|545217|545219|545222|545230|545235|545241|545243|545250|545252|545260|545264|545269|545270|545272|545276|545281|545283|545298|545302|545303|545305|545306|545439|545442|545445|545447|545450|545455|545461|545464|545465|545470|545473|545478|545480|545482|545486|545488|545489|545491|545492|545494|545496|545497|545498|545501|545502|545504|545505|545506|545507|545508|545509|545511|545514|545516|545517|545521|545522|545524|545527|545529|545531|545535|545536|545538|545539|545542|545544|545547|545548|545549|545552|545554|545555|545558|545559|545563|545564|545567|545568|545571|545573|545575|545576|545577|545579|545581|545583|545585|545587|545588|545590|545592|545594|545596|545598|545599|545601|545602|545604|545606|545608|545618|545619|545623|545627|545629|545631|545634|545636|545640|545644|545645|545652|545653|545725|545729|545731|545733|545742|545746|545748|545751|545755|545757|545758|545760|545761|545762|545764|545765|545775|545779|545780|545785|545795|545796|545797|545799|545801|545803|545806|545819|545829|545834|545835|545836|545839|545850|545856|545858|545861|545863|545868|545871|545873|545880|545883|545885|545889|545891|545893|545895|545901|545904|545909|545912|545913|545915|545923|545927|545929|545931|549462|578485|614603|614604|654596|712405|737518|737520|744608|752141|759941|767801|767802|767806|767807|767810|767811|767813|767817|767818|767821|775524|783618|783622|783623|783633|783634|783636|783644|790964|790965|836952|836953|836954|836957|836960|836963|836964|836968|836971|836972|836973|836980|836984|866007|866009|925836|946936|978645|978646|978647|978648|978649|978650|978651|978652|978653|978654|978655|978656|978657|978658|978659|978660|978661|978662|978663|978664|978665|978666|978667|978668|978669|978670|978671|978672|978673|978674|978675|978676|978677|978678|978679|978680|978681|978682", "text": "Usher syndrome type 1F" }, { - "baseId": "19970|19972|19972|19974|19975|33468|55629|55640|132045|174719|266037|321704|321718|357856|389231|404788|444618|545895|553261|578485|610569|980939", + "upstreamId": "19970|19972|19972|19974|19975|33468|55629|55640|132045|174719|266037|321704|321718|357856|389231|404788|444618|545895|553261|578485|610569|980939", "text": "Deafness, autosomal recessive 23" }, { - "baseId": "19978|19979|19980|140907|140908|140909|301147|301150|301151|301152|301154|301163|301165|301166|301167|304225|304227|304228|304236|304237|304239|304240|304241|304248|304255|308918|308919|308925|308929|308930|308931|308932|308934|308935|308936|308938|308941|309016|309021|309022|309025|309029|309029|309030|309038|309040|552108|589206|896971|896972|896973|896974|896975|896976|896977|896978|896979|896980|896981|896982|896983|896984|896985|896986|896987|896988|900276|917626|917628", + "upstreamId": "19978|19979|19980|140907|140908|140909|301147|301150|301151|301152|301154|301163|301165|301166|301167|304225|304227|304228|304236|304237|304239|304240|304241|304248|304255|308918|308919|308925|308929|308930|308931|308932|308934|308935|308936|308938|308941|309016|309021|309022|309025|309029|309029|309030|309038|309040|552108|589206|896971|896972|896973|896974|896975|896976|896977|896978|896979|896980|896981|896982|896983|896984|896985|896986|896987|896988|900276|917626|917628", "text": "Stargardt Disease 3" }, { - "baseId": "19981|19982|19983|19984|19985|39449|39450|55254|55255|55256|55259|55262|55263|55266|55267|55268|55269|55270|55272|55279|55280|55284|55285|55286|55287|55289|55294|55296|55297|55299|176239|176242|176243|176363|176365|176367|176368|195018|227412|336843|336849|336852|336855|336863|336865|336868|346522|346523|346531|346536|346538|346550|346551|346553|346555|346558|350731|350733|350735|350737|350739|350744|351800|351801|351804|351805|378449|389252|426362|433975|553272|586663|615847|620671|654922|760793|800176|800177|816510|861599|886843|886844|886845|886846|886847|886848|886849|886850|886851|886852|886853|886854|886855|886856|886857|886858|886859|886860|886861|886862|886863|886864|886865|886866|886867|887512|887513|887514|887515|962918", + "upstreamId": "19981|19982|19983|19984|19985|39449|39450|55254|55255|55256|55259|55262|55263|55266|55267|55268|55269|55270|55272|55279|55280|55284|55285|55286|55287|55289|55294|55296|55297|55299|176239|176242|176243|176363|176365|176367|176368|195018|227412|336843|336849|336852|336855|336863|336865|336868|346522|346523|346531|346536|346538|346550|346551|346553|346555|346558|350731|350733|350735|350737|350739|350744|351800|351801|351804|351805|378449|389252|426362|433975|553272|586663|615847|620671|654922|760793|800176|800177|816510|861599|886843|886844|886845|886846|886847|886848|886849|886850|886851|886852|886853|886854|886855|886856|886857|886858|886859|886860|886861|886862|886863|886864|886865|886866|886867|887512|887513|887514|887515|962918", "text": "Deafness, autosomal recessive 8" }, { - "baseId": "19986|19987|19988|19989|19990|19991|51090|51091|190503|192426|192427|205139|209347|213900|251097|251098|268772|269148|290031|290040|290041|290048|290050|290053|290058|290062|290063|290064|290066|290069|290071|290076|290077|290082|290104|290106|290109|290115|290116|290118|290119|290120|290781|290783|290784|290785|290789|290790|290791|290795|290796|290810|290828|290838|290851|290856|290872|290877|290878|290879|290880|290886|290895|290896|290899|290901|290903|290904|290907|290912|290913|290914|290918|293952|293953|293955|293957|293960|293962|293965|293968|293982|293983|293987|293988|293989|293992|293998|294010|294013|294015|294017|294422|294441|294456|294469|294473|294489|294497|294501|294505|294506|294509|294515|294533|294534|294539|294540|367394|421433|431546|433463|433464|452060|452061|452063|452075|452326|452331|452335|452397|452398|452537|452543|519078|519079|519082|519085|519102|519255|519257|519263|519266|558882|561384|561386|631179|631180|631181|631182|631183|631184|631185|631186|631187|631188|631189|631190|651080|651120|686390|691378|695199|698041|698043|799322|799323|819367|827907|827908|827909|827910|827911|827912|827913|827914|851333|888676|888677|888678|888679|888680|888681|888682|888683|888684|888685|888686|888687|888688|888689|888690|888691|888692|888693|888694|888695|888696|888697|888698|888699|888700|888701|888702|888703|888704|888705|888706|888707|888708|888709|888710|888711|888712|888713|888714|888715|888716|888717|888718|888719|888720|888721|888722|888723|888724|888725|888726|888727|888728|888729|888730|888731|888732|888733|888734|888735|888736|888737|888738|888739|888740|888741|888742|888743|888744|888745|888746|888747|888748|918828|923140|923141|923142|923143|931888|931889|943478|943479|953437|953438|970766", + "upstreamId": "19986|19987|19988|19989|19990|19991|51090|51091|190503|192426|192427|205139|209347|213900|251097|251098|268772|269148|290031|290040|290041|290048|290050|290053|290058|290062|290063|290064|290066|290069|290071|290076|290077|290082|290104|290106|290109|290115|290116|290118|290119|290120|290781|290783|290784|290785|290789|290790|290791|290795|290796|290810|290828|290838|290851|290856|290872|290877|290878|290879|290880|290886|290895|290896|290899|290901|290903|290904|290907|290912|290913|290914|290918|293952|293953|293955|293957|293960|293962|293965|293968|293982|293983|293987|293988|293989|293992|293998|294010|294013|294015|294017|294422|294441|294456|294469|294473|294489|294497|294501|294505|294506|294509|294515|294533|294534|294539|294540|367394|421433|431546|433463|433464|452060|452061|452063|452075|452326|452331|452335|452397|452398|452537|452543|519078|519079|519082|519085|519102|519255|519257|519263|519266|558882|561384|561386|631179|631180|631181|631182|631183|631184|631185|631186|631187|631188|631189|631190|651080|651120|686390|691378|695199|698041|698043|799322|799323|819367|827907|827908|827909|827910|827911|827912|827913|827914|851333|888676|888677|888678|888679|888680|888681|888682|888683|888684|888685|888686|888687|888688|888689|888690|888691|888692|888693|888694|888695|888696|888697|888698|888699|888700|888701|888702|888703|888704|888705|888706|888707|888708|888709|888710|888711|888712|888713|888714|888715|888716|888717|888718|888719|888720|888721|888722|888723|888724|888725|888726|888727|888728|888729|888730|888731|888732|888733|888734|888735|888736|888737|888738|888739|888740|888741|888742|888743|888744|888745|888746|888747|888748|918828|923140|923141|923142|923143|931888|931889|943478|943479|953437|953438|970766", "text": "Osteogenesis imperfecta type 7" }, { - "baseId": "19992|19993|19994|48252|176496|176497|176498|176633|176634|176635|191090|230778|230779|230780|230781|230782|242965|242966|242971|242972|242973|242974|256381|256382|256384|256387|256388|256390|256392|256393|329754|329755|329757|329758|329763|329764|329765|329766|340046|340056|340057|340060|340061|340068|345756|345758|345759|345762|345763|345769|345773|347147|347148|347151|347155|402506|402517|403139|532130|532146|548331|569714|571581|620888|646669|646670|688829|688839|688841|694189|771799|792808|878358|878359|878360|878361|878362|878363|878364|878365|878366|878367|878368|880573|880574", + "upstreamId": "19992|19993|19994|48252|176496|176497|176498|176633|176634|176635|191090|230778|230779|230780|230781|230782|242965|242966|242971|242972|242973|242974|256381|256382|256384|256387|256388|256390|256392|256393|329754|329755|329757|329758|329763|329764|329765|329766|340046|340056|340057|340060|340061|340068|345756|345758|345759|345762|345763|345769|345773|347147|347148|347151|347155|402506|402517|403139|532130|532146|548331|569714|571581|620888|646669|646670|688829|688839|688841|694189|771799|792808|878358|878359|878360|878361|878362|878363|878364|878365|878366|878367|878368|880573|880574", "text": "Ciliary dyskinesia, primary, 9" }, { - "baseId": "19995|19997|19998|19999|20000|20001|20002|20003|20004|20005|34400|34401|34403|34404|34405|34406|34407|34408|34410|34412|34413|34414|34416|34417|34418|34419|34420|34421|34422|34423|34424|34425|34426|34427|34428|34429|34430|34431|34432|34433|34434|34435|34436|34437|34438|34439|34440|34441|34442|34443|34444|34445|34446|34448|34449|34450|34451|34452|34454|34455|34456|34457|34458|34459|34460|34461|34462|34463|34464|34465|34466|34467|34468|34469|34470|34471|34472|34473|34474|34475|34476|34477|34478|34479|34480|34481|34482|34483|34484|34485|34486|34487|34488|34489|34490|34491|34492|34493|47412|52677|101783|101784|101785|101786|140126|140127|140130|165918|167615|167616|167617|167618|167619|167621|167622|167623|167624|167625|167626|167627|167629|167630|167631|167632|167633|167634|167636|167637|167640|167641|167642|167643|167644|167645|167646|167647|167648|167650|167651|167652|167653|167655|167656|167658|167659|167660|167661|167662|167664|167665|167666|167667|167668|167669|167670|167671|167672|167673|167674|167675|167676|167677|167678|167679|167680|167681|167682|167683|167684|167685|167687|167688|167689|167690|167691|167692|167693|167694|167696|167697|167698|167700|167701|167702|167703|167704|167705|167706|167707|167708|167709|167710|167711|167714|167715|167716|167717|167718|167720|167721|167722|167723|167725|167727|167728|167730|167731|167732|167733|167734|167735|167736|167737|167738|167739|167740|167741|167742|167743|167744|167745|167746|167747|167748|167750|167751|167752|167753|167755|167756|167758|167759|167760|167761|167762|167763|167765|167766|167767|167768|167769|167770|177188|177495|192034|192036|192039|192040|192041|192777|206731|206733|206735|206738|206739|206740|206741|206742|206743|206744|206745|206748|206750|206754|209337|226872|227207|231448|231451|231458|231459|231462|231475|259640|266601|266967|268441|268982|272265|272714|272991|278274|278275|278276|278277|278279|278282|278283|278284|278285|278286|278287|278290|278292|278293|278294|278296|278299|278300|278301|278302|278303|278304|278306|278314|278315|278319|278322|278323|278326|278327|278331|278333|278337|278339|278344|279335|279336|279338|279340|279342|279347|279349|279362|279366|279370|279373|279374|279377|279382|279398|279400|279403|279419|279420|279422|279447|279449|279451|279464|279466|279472|279479|279481|279482|279488|279513|279516|279517|279520|279521|279522|362223|362224|364730|389113|404996|424265|427666|427671|427675|427676|427677|427679|427680|427682|427683|432207|432208|488664|498177|498179|498309|513237|513501|514418|514852|576449|578372|619979|619980|619981|622308|622858|681820|681821|681822|681823|731977|745949|745952|789105|793998|863164|863165|863166|863167|863168|863169|863170|863171|863172|863173|863174|863175|863176|863177|863178|863179|863180|863181|863182|863183|863184|863185|863186|863187|863188|863189|863190|863191|863192|863193|863194|863195|863196|863197|863198|863199|863200|863201|863202|863203|863204|863205|863206|863207|863208|863209|863210|863211|863212|863213|863214|863215|863216|865081|865082|865083|865084|965948|965949|965950|965951|965952|965953|966032|980901|983300|983789", + "upstreamId": "19995|19997|19998|19999|20000|20001|20002|20003|20004|20005|34400|34401|34403|34404|34405|34406|34407|34408|34410|34412|34413|34414|34416|34417|34418|34419|34420|34421|34422|34423|34424|34425|34426|34427|34428|34429|34430|34431|34432|34433|34434|34435|34436|34437|34438|34439|34440|34441|34442|34443|34444|34445|34446|34448|34449|34450|34451|34452|34454|34455|34456|34457|34458|34459|34460|34461|34462|34463|34464|34465|34466|34467|34468|34469|34470|34471|34472|34473|34474|34475|34476|34477|34478|34479|34480|34481|34482|34483|34484|34485|34486|34487|34488|34489|34490|34491|34492|34493|47412|52677|101783|101784|101785|101786|140126|140127|140130|165918|167615|167616|167617|167618|167619|167621|167622|167623|167624|167625|167626|167627|167629|167630|167631|167632|167633|167634|167636|167637|167640|167641|167642|167643|167644|167645|167646|167647|167648|167650|167651|167652|167653|167655|167656|167658|167659|167660|167661|167662|167664|167665|167666|167667|167668|167669|167670|167671|167672|167673|167674|167675|167676|167677|167678|167679|167680|167681|167682|167683|167684|167685|167687|167688|167689|167690|167691|167692|167693|167694|167696|167697|167698|167700|167701|167702|167703|167704|167705|167706|167707|167708|167709|167710|167711|167714|167715|167716|167717|167718|167720|167721|167722|167723|167725|167727|167728|167730|167731|167732|167733|167734|167735|167736|167737|167738|167739|167740|167741|167742|167743|167744|167745|167746|167747|167748|167750|167751|167752|167753|167755|167756|167758|167759|167760|167761|167762|167763|167765|167766|167767|167768|167769|167770|177188|177495|192034|192036|192039|192040|192041|192777|206731|206733|206735|206738|206739|206740|206741|206742|206743|206744|206745|206748|206750|206754|209337|226872|227207|231448|231451|231458|231459|231462|231475|259640|266601|266967|268441|268982|272265|272714|272991|278274|278275|278276|278277|278279|278282|278283|278284|278285|278286|278287|278290|278292|278293|278294|278296|278299|278300|278301|278302|278303|278304|278306|278314|278315|278319|278322|278323|278326|278327|278331|278333|278337|278339|278344|279335|279336|279338|279340|279342|279347|279349|279362|279366|279370|279373|279374|279377|279382|279398|279400|279403|279419|279420|279422|279447|279449|279451|279464|279466|279472|279479|279481|279482|279488|279513|279516|279517|279520|279521|279522|362223|362224|364730|389113|404996|424265|427666|427671|427675|427676|427677|427679|427680|427682|427683|432207|432208|488664|498177|498179|498309|513237|513501|514418|514852|576449|578372|619979|619980|619981|622308|622858|681820|681821|681822|681823|731977|745949|745952|789105|793998|863164|863165|863166|863167|863168|863169|863170|863171|863172|863173|863174|863175|863176|863177|863178|863179|863180|863181|863182|863183|863184|863185|863186|863187|863188|863189|863190|863191|863192|863193|863194|863195|863196|863197|863198|863199|863200|863201|863202|863203|863204|863205|863206|863207|863208|863209|863210|863211|863212|863213|863214|863215|863216|865081|865082|865083|865084|965948|965949|965950|965951|965952|965953|966032|980901|983300|983789", "text": "Primary autosomal recessive microcephaly 5" }, { - "baseId": "20006|20007|20011|20014|20019|39442|190614|191425|191426|196061|224255|266271|268049|268873|271029|271030|273979|274052|275501|286312|286313|286320|286321|286369|287067|287085|289380|289382|289411|289418|289759|289763|289767|289777|488390|489018|491897|491943|492385|496703|536628|584794|585560|620748|630003|708280|708281|733477|781327|826480|826481|826482|826483|826484|851178|922770|922771|939894|942919", + "upstreamId": "20006|20007|20011|20014|20019|39442|190614|191425|191426|196061|224255|266271|268049|268873|271029|271030|273979|274052|275501|286312|286313|286320|286321|286369|287067|287085|289380|289382|289411|289418|289759|289763|289767|289777|488390|489018|491897|491943|492385|496703|536628|584794|585560|620748|630003|708280|708281|733477|781327|826480|826481|826482|826483|826484|851178|922770|922771|939894|942919", "text": "Sitosterolemia" }, { - "baseId": "20006|20007|20008|20009|20010|20011|20012|20013|20014|48119|190614|191425|196061|196062|265756|267766|268049|268307|268873|268994|269660|271030|271240|272701|272704|272795|272936|273321|274052|274207|274619|275190|275261|275501|275518|286300|286307|286308|286309|286310|286312|286313|286314|286319|286320|286321|286326|286327|286331|286332|286334|286344|286346|286353|286355|286364|286365|286367|286370|287052|287056|287058|287062|287066|287067|287074|287076|287077|287078|287079|289360|289364|289377|289380|289382|289387|289389|289390|289393|289394|289403|289409|289415|289417|289753|289755|289756|289761|289762|289763|289765|289766|289774|289777|289782|289791|289792|289799|289801|289803|289804|289805|489018|489019|490263|491353|493333|494188|584794|585411|585560|585800|586372|586439|588007|588061|588380|588878|589582|697572|708280|708281|708282|719880|884919|884920|884921|884922|884923|884924|884925|884926|884927|884928|884929|884930|884931|884932|884933|884934|884935|884936|884937|884938|884939|884940|884941|884943|884944|884945|884946|884947|884948|884949|884950|884951|884952|884953|884954|884955|884956|884957|884958|884959|884960|884961|887364|887365|887366|887367|961065", + "upstreamId": "20006|20007|20008|20009|20010|20011|20012|20013|20014|48119|190614|191425|196061|196062|265756|267766|268049|268307|268873|268994|269660|271030|271240|272701|272704|272795|272936|273321|274052|274207|274619|275190|275261|275501|275518|286300|286307|286308|286309|286310|286312|286313|286314|286319|286320|286321|286326|286327|286331|286332|286334|286344|286346|286353|286355|286364|286365|286367|286370|287052|287056|287058|287062|287066|287067|287074|287076|287077|287078|287079|289360|289364|289377|289380|289382|289387|289389|289390|289393|289394|289403|289409|289415|289417|289753|289755|289756|289761|289762|289763|289765|289766|289774|289777|289782|289791|289792|289799|289801|289803|289804|289805|489018|489019|490263|491353|493333|494188|584794|585411|585560|585800|586372|586439|588007|588061|588380|588878|589582|697572|708280|708281|708282|719880|884919|884920|884921|884922|884923|884924|884925|884926|884927|884928|884929|884930|884931|884932|884933|884934|884935|884936|884937|884938|884939|884940|884941|884943|884944|884945|884946|884947|884948|884949|884950|884951|884952|884953|884954|884955|884956|884957|884958|884959|884960|884961|887364|887365|887366|887367|961065", "text": "Sitosterolemia 1" }, { - "baseId": "20014|196061|491943", + "upstreamId": "20014|196061|491943", "text": "Gallbladder disease 4" }, { - "baseId": "20015|20016|20017|20018|20019|20020|39441|39442", + "upstreamId": "20015|20016|20017|20018|20019|20020|39441|39442", "text": "Sitosterolemia 2" }, { - "baseId": "20021|20022|20023|20024|20026|20027|20027|20028|71266|101844|105698|105698|105701|105703|105705|105705|105708|105709|105709|105714|105715|105716|106466|106466|166161|166162|166168|166169|177015|177409|189087|191584|192516|192517|192517|192996|223641|237301|237301|238063|254909|254909|254910|254911|254912|254913|260938|267200|267809|267809|268032|268032|268143|269275|269275|269345|269345|320294|320294|320295|320298|320301|320302|320306|320307|320308|320308|328878|328878|328882|328895|328895|328899|328905|335478|335483|335484|335485|335488|335489|335489|335492|337366|337367|337367|337370|337374|337376|337376|374092|374092|374098|374098|375915|413368|418825|431773|431773|431774|431775|431776|464095|464095|482045|488964|488964|489426|489717|489718|492643|493974|493974|513343|514039|528035|528035|528037|551569|551570|551570|566290|567864|567864|568741|568743|576338|576338|578347|578511|612156|693451|693452|693453|693453|693454|702801|702803|702803|702804|702804|725612|725613|730931|730931|744800|753965|769716|779731|791387|800581|802186|802187|802188|802189|802190|802191|802247|820599|820600|820601|820602|820603|841160|841161|841162|841163|841163|841164|841165|841166|841167|841168|841169|841170|841171|841172|841173|841174|841175|841176|841177|841178|851545|851987|852728|852728|871695|871696|871697|871698|871699|871700|871701|871702|871703|871704|871704|871705|871706|871707|871708|871709|871710|871710|871711|871712|871712|871713|871714|871715|871716|871717|872359|872360|926980|926981|936540|936541|936542|936543|936544|936545|936546|936547|936548|936549|936550|940300|948461|948462|948463|948464|948465|948466|948467|948468|948469|948470|948471|948472|948473|948474|948475|957161|957162|957163|957164|957165|957166|957167|957168|960079|960080|960081|960082|960799|960800|969718|969720|969721|969722|969723|969724|969725|969726|969727|969728|969729|969730|969731|969732|970004", + "upstreamId": "20021|20022|20023|20024|20026|20027|20027|20028|71266|101844|105698|105698|105701|105703|105705|105705|105708|105709|105709|105714|105715|105716|106466|106466|166161|166162|166168|166169|177015|177409|189087|191584|192516|192517|192517|192996|223641|237301|237301|238063|254909|254909|254910|254911|254912|254913|260938|267200|267809|267809|268032|268032|268143|269275|269275|269345|269345|320294|320294|320295|320298|320301|320302|320306|320307|320308|320308|328878|328878|328882|328895|328895|328899|328905|335478|335483|335484|335485|335488|335489|335489|335492|337366|337367|337367|337370|337374|337376|337376|374092|374092|374098|374098|375915|413368|418825|431773|431773|431774|431775|431776|464095|464095|482045|488964|488964|489426|489717|489718|492643|493974|493974|513343|514039|528035|528035|528037|551569|551570|551570|566290|567864|567864|568741|568743|576338|576338|578347|578511|612156|693451|693452|693453|693453|693454|702801|702803|702803|702804|702804|725612|725613|730931|730931|744800|753965|769716|779731|791387|800581|802186|802187|802188|802189|802190|802191|802247|820599|820600|820601|820602|820603|841160|841161|841162|841163|841163|841164|841165|841166|841167|841168|841169|841170|841171|841172|841173|841174|841175|841176|841177|841178|851545|851987|852728|852728|871695|871696|871697|871698|871699|871700|871701|871702|871703|871704|871704|871705|871706|871707|871708|871709|871710|871710|871711|871712|871712|871713|871714|871715|871716|871717|872359|872360|926980|926981|936540|936541|936542|936543|936544|936545|936546|936547|936548|936549|936550|940300|948461|948462|948463|948464|948465|948466|948467|948468|948469|948470|948471|948472|948473|948474|948475|957161|957162|957163|957164|957165|957166|957167|957168|960079|960080|960081|960082|960799|960800|969718|969720|969721|969722|969723|969724|969725|969726|969727|969728|969729|969730|969731|969732|970004", "text": "Leber congenital amaurosis 6" }, { - "baseId": "20025|20026|20027|101844|105698|105701|105705|105705|105708|105709|105709|105715|105716|106466|106466|177015|177409|191584|192516|192517|192517|192996|213628|223641|237301|237301|254909|254909|254910|254911|254912|254913|267200|267809|267809|268032|268143|269275|269275|269345|269345|320294|320294|320295|320298|320301|320302|320306|320307|320308|320308|328878|328878|328882|328895|328895|328899|328905|335478|335483|335484|335485|335488|335489|335489|335492|337366|337367|337367|337370|337374|337376|337376|374092|374092|374098|374098|418825|431773|431774|464095|464095|482045|488964|488964|489426|489717|489718|493974|493974|528035|528035|528037|551570|566290|567864|567864|568741|568743|576338|578511|693451|693452|693453|693453|693454|702801|702803|702803|702804|702804|725612|725613|730931|730931|744800|753965|769716|779731|791387|820599|820600|820601|820602|820603|841160|841161|841162|841163|841163|841164|841165|841166|841167|841168|841169|841170|841171|841172|841173|841174|841175|841176|841177|841178|851545|851987|852728|852728|871695|871696|871697|871698|871699|871700|871701|871702|871703|871704|871704|871705|871706|871707|871708|871709|871710|871710|871711|871712|871712|871713|871714|871715|871716|871717|872359|872360|926980|926981|936540|936541|936542|936543|936544|936545|936546|936547|936548|936549|936550|940300|948461|948462|948463|948464|948465|948466|948467|948468|948469|948470|948471|948472|948473|948474|948475|957161|957162|957163|957164|957165|957166|957167|957168|960079|960080|960081|960082|960799|960800", + "upstreamId": "20025|20026|20027|101844|105698|105701|105705|105705|105708|105709|105709|105715|105716|106466|106466|177015|177409|191584|192516|192517|192517|192996|213628|223641|237301|237301|254909|254909|254910|254911|254912|254913|267200|267809|267809|268032|268143|269275|269275|269345|269345|320294|320294|320295|320298|320301|320302|320306|320307|320308|320308|328878|328878|328882|328895|328895|328899|328905|335478|335483|335484|335485|335488|335489|335489|335492|337366|337367|337367|337370|337374|337376|337376|374092|374092|374098|374098|418825|431773|431774|464095|464095|482045|488964|488964|489426|489717|489718|493974|493974|528035|528035|528037|551570|566290|567864|567864|568741|568743|576338|578511|693451|693452|693453|693453|693454|702801|702803|702803|702804|702804|725612|725613|730931|730931|744800|753965|769716|779731|791387|820599|820600|820601|820602|820603|841160|841161|841162|841163|841163|841164|841165|841166|841167|841168|841169|841170|841171|841172|841173|841174|841175|841176|841177|841178|851545|851987|852728|852728|871695|871696|871697|871698|871699|871700|871701|871702|871703|871704|871704|871705|871706|871707|871708|871709|871710|871710|871711|871712|871712|871713|871714|871715|871716|871717|872359|872360|926980|926981|936540|936541|936542|936543|936544|936545|936546|936547|936548|936549|936550|940300|948461|948462|948463|948464|948465|948466|948467|948468|948469|948470|948471|948472|948473|948474|948475|957161|957162|957163|957164|957165|957166|957167|957168|960079|960080|960081|960082|960799|960800", "text": "Cone-rod dystrophy 13" }, { - "baseId": "20026|24389|24392|24394|24396|24397|38391|76480|76620|100027|102552|104429|104431|104432|104433|104433|104436|104437|104440|104441|104442|104443|104445|104447|104447|104448|104451|104455|104456|104456|104456|104465|104467|104469|104471|104472|104474|104475|104476|104477|104479|104480|104480|104484|104491|104492|104492|104493|104494|104495|104497|104499|104500|104501|105486|105494|105510|105560|105683|105795|105802|105803|152779|177112|177374|191486|191862|192077|192078|192193|193626|194278|194279|195216|195217|237301|256534|267852|359259|361027|410300|418814|424378|431776|432339|438037|467672|468444|469027|469027|469226|488964|489189|493639|537666|537667|551586|569886|569892|570726|578553|584376|587851|610116|612322|626263|646841|646842|646914|676976|681856|681857|694210|694219|704421|704423|704424|704425|704426|704427|704428|715777|715781|731182|756205|756208|756209|771892|771893|771894|771918|778416|785781|788916|789897|789898|789899|789900|789901|789902|789903|789904|789905|789906|789907|789908|789909|789910|790444|790445|790446|790622|790623|790624|790625|790659|791386|791387|791388|791389|791390|791839|791840|791941|791942|846355|846356|846357|846358|846359|846360|846365|846366|846367|846369|846370|846435|846436|846437|846438|846439|846440|846441|846442|846443|846444|846445|846446|846447|846448|846449|851759|938267|938268|938269|938270|938271|938272|938273|938274|938277|938278|938279|938297|938298|938299|938300|938301|938302|938303|938304|950343|950344|950345|950348|950349|950350|950351|950368|950369|950370|950371|950372|950373|950374|950375|958342|958343|958344|958346|958347|958348|958373|958374|958375|958376|958377|960253|962924|962925|962926|962927|962928|962929|962930|962931|962932|962933|962934|962935|962936|962937|962938|962939|962940|962941|962942|962943|962944|962945|962946|962947|962948|962949|962950|962951|962952|962953|962954|962955|962956|962957|962959|962960|962961|962962|962963|962964|962965|962968|963340|971541", + "upstreamId": "20026|24389|24392|24394|24396|24397|38391|76480|76620|100027|102552|104429|104431|104432|104433|104433|104436|104437|104440|104441|104442|104443|104445|104447|104447|104448|104451|104455|104456|104456|104456|104465|104467|104469|104471|104472|104474|104475|104476|104477|104479|104480|104480|104484|104491|104492|104492|104493|104494|104495|104497|104499|104500|104501|105486|105494|105510|105560|105683|105795|105802|105803|152779|177112|177374|191486|191862|192077|192078|192193|193626|194278|194279|195216|195217|237301|256534|267852|359259|361027|410300|418814|424378|431776|432339|438037|467672|468444|469027|469027|469226|488964|489189|493639|537666|537667|551586|569886|569892|570726|578553|584376|587851|610116|612322|626263|646841|646842|646914|676976|681856|681857|694210|694219|704421|704423|704424|704425|704426|704427|704428|715777|715781|731182|756205|756208|756209|771892|771893|771894|771918|778416|785781|788916|789897|789898|789899|789900|789901|789902|789903|789904|789905|789906|789907|789908|789909|789910|790444|790445|790446|790622|790623|790624|790625|790659|791386|791387|791388|791389|791390|791839|791840|791941|791942|846355|846356|846357|846358|846359|846360|846365|846366|846367|846369|846370|846435|846436|846437|846438|846439|846440|846441|846442|846443|846444|846445|846446|846447|846448|846449|851759|938267|938268|938269|938270|938271|938272|938273|938274|938277|938278|938279|938297|938298|938299|938300|938301|938302|938303|938304|950343|950344|950345|950348|950349|950350|950351|950368|950369|950370|950371|950372|950373|950374|950375|958342|958343|958344|958346|958347|958348|958373|958374|958375|958376|958377|960253|962924|962925|962926|962927|962928|962929|962930|962931|962932|962933|962934|962935|962936|962937|962938|962939|962940|962941|962942|962943|962944|962945|962946|962947|962948|962949|962950|962951|962952|962953|962954|962955|962956|962957|962959|962960|962961|962962|962963|962964|962965|962968|963340|971541", "text": "Leber congenital amaurosis 1" }, { - "baseId": "20029", + "upstreamId": "20029", "text": "Hypoadiponectinemia" }, { - "baseId": "20030", + "upstreamId": "20030", "text": "Cerebral infarction, susceptibility to" }, { - "baseId": "20031|20032|20042|132007|141425|141426|141427|141428|141429|191088|192529|195407|212979|212980|212981|212982|212983|212984|212985|212987|222200|222201|241227|241232|241234|241236|244713|244717|244719|244723|244730|244731|254399|254402|254405|267186|267827|315969|315978|315979|315980|315984|315986|315988|315989|323225|323227|323228|323237|323240|323242|323247|323248|329266|329268|329269|329271|329274|329275|329279|329281|329285|329286|330434|330446|330448|330460|330489|330490|330498|372841|374513|374528|441503|461598|462170|462180|490562|503871|511955|526642|526656|566310|571201|571206|571230|656103|869228|869229|869230|869231|869232|869233|869234|869235|869236|869237|869238|869239|869240|869241|869242|869243|869244|869245|872186", + "upstreamId": "20031|20032|20042|132007|141425|141426|141427|141428|141429|191088|192529|195407|212979|212980|212981|212982|212983|212984|212985|212987|222200|222201|241227|241232|241234|241236|244713|244717|244719|244723|244730|244731|254399|254402|254405|267186|267827|315969|315978|315979|315980|315984|315986|315988|315989|323225|323227|323228|323237|323240|323242|323247|323248|329266|329268|329269|329271|329274|329275|329279|329281|329285|329286|330434|330446|330448|330460|330489|330490|330498|372841|374513|374528|441503|461598|462170|462180|490562|503871|511955|526642|526656|566310|571201|571206|571230|656103|869228|869229|869230|869231|869232|869233|869234|869235|869236|869237|869238|869239|869240|869241|869242|869243|869244|869245|872186", "text": "Brachyrachia (short spine dysplasia)" }, { - "baseId": "20031|20032|20032|20033|20034|20035|20036|20037|33470|33471|33473|33474|33476|39425|39426|39427|39428|39429|39431|39432|39433|131989|131990|131991|131992|131994|131995|131996|131997|131998|131999|132000|132001|132002|132004|132005|132006|132007|132009|132012|132013|193539|247055|267835|268588|270886|270894|271513|310812|310813|310820|310829|310830|310831|310832|310842|310844|310848|310850|310852|310858|310859|310862|310864|310866|310868|310870|310878|310884|310887|310890|310892|310895|310899|310907|310918|310919|310928|310929|310930|310931|316068|316069|316072|316073|316074|316082|316090|316094|316099|316103|316111|316112|316114|316120|316133|316144|316148|316149|316156|316162|316169|316174|316175|316176|316177|316180|316181|316189|316190|316200|316201|316204|316205|316210|316220|316221|316223|316226|322169|322170|322172|322183|322185|322190|322191|322192|322196|322197|322199|322200|322212|322213|322218|322231|322232|322233|322236|322239|322240|322241|322242|322245|322246|322254|322260|322261|322266|322267|322274|322275|322276|322780|322783|322784|322785|322786|322789|322790|322801|322802|322803|322804|322806|322807|322808|322815|322816|322822|322831|322832|322845|322849|322876|322879|322880|322882|322887|322888|322890|322891|322892|322893|322894|322896|322900|357053|360896|485947|485949|623681|623736|623780", + "upstreamId": "20031|20032|20032|20033|20034|20035|20036|20037|33470|33471|33473|33474|33476|39425|39426|39427|39428|39429|39431|39432|39433|131989|131990|131991|131992|131994|131995|131996|131997|131998|131999|132000|132001|132002|132004|132005|132006|132007|132009|132012|132013|193539|247055|267835|268588|270886|270894|271513|310812|310813|310820|310829|310830|310831|310832|310842|310844|310848|310850|310852|310858|310859|310862|310864|310866|310868|310870|310878|310884|310887|310890|310892|310895|310899|310907|310918|310919|310928|310929|310930|310931|316068|316069|316072|316073|316074|316082|316090|316094|316099|316103|316111|316112|316114|316120|316133|316144|316148|316149|316156|316162|316169|316174|316175|316176|316177|316180|316181|316189|316190|316200|316201|316204|316205|316210|316220|316221|316223|316226|322169|322170|322172|322183|322185|322190|322191|322192|322196|322197|322199|322200|322212|322213|322218|322231|322232|322233|322236|322239|322240|322241|322242|322245|322246|322254|322260|322261|322266|322267|322274|322275|322276|322780|322783|322784|322785|322786|322789|322790|322801|322802|322803|322804|322806|322807|322808|322815|322816|322822|322831|322832|322845|322849|322876|322879|322880|322882|322887|322888|322890|322891|322892|322893|322894|322896|322900|357053|360896|485947|485949|623681|623736|623780", "text": "Skeletal dysplasia" }, { - "baseId": "20032|20033|20037|20038|20039|20040|20041|20042|33473|39426|39429|39430|48018|132007|141425|141426|141427|141428|141429|165507|191088|192529|195407|212979|212980|212981|212982|212983|212984|212985|212986|212987|222200|222201|222202|231824|231825|237347|241227|241228|241229|241230|241231|241232|241233|241234|241235|241236|244713|244714|244716|244717|244719|244723|244724|244726|244729|244730|244731|244732|254399|254402|254404|254405|267186|267827|268612|315969|315978|315979|315980|315984|315986|315988|315989|323225|323227|323228|323237|323240|323242|323247|323248|329266|329268|329269|329271|329274|329275|329279|329281|329285|329286|330434|330446|330448|330460|330489|330490|330498|372541|372840|372841|374513|374517|374528|374550|374553|398428|398517|398521|398522|398806|398816|398944|398946|398949|398951|408511|408513|408515|421897|433993|433994|441499|441501|441502|441503|441504|444909|461596|461598|461602|461605|461607|461814|461825|461826|461836|462170|462172|462180|462404|462407|462409|482007|486086|490562|503842|503843|503871|503872|504116|504518|511955|511956|511960|511961|526640|526642|526644|526645|526646|526647|526651|526652|526653|526656|526658|526659|526660|526663|526664|526665|526669|526896|526899|526901|526906|526913|527214|527218|527221|527223|527225|527226|527230|565036|565038|565041|566310|566311|566317|567647|567649|567653|567658|567662|571188|571197|571201|571203|571206|571208|571230|571233|571244|571249|581868|640606|640607|640608|640609|640610|640611|640612|640613|640614|640615|640616|640617|640618|640619|640620|640621|640622|640623|640624|640625|640626|640627|640628|640629|640630|640631|640632|656103|672086|684278|684281|684282|687866|687871|724880|768882|784269|792686|839270|839271|839272|839273|839274|839275|839276|839277|839278|839279|839280|839281|839282|839283|839284|839285|839286|839287|839288|839289|839290|869228|869229|869230|869231|869232|869233|869234|869235|869236|869237|869238|869239|869240|869241|869242|869243|869244|869245|872186|919405|919406|919407|920307|920308|926456|926457|926458|926459|926460|926461|926462|926463|935906|935907|935908|935909|935910|935911|935912|935913|941021|947776|947777|947778|947779|947780|947781|956744|956745|960773", + "upstreamId": "20032|20033|20037|20038|20039|20040|20041|20042|33473|39426|39429|39430|48018|132007|141425|141426|141427|141428|141429|165507|191088|192529|195407|212979|212980|212981|212982|212983|212984|212985|212986|212987|222200|222201|222202|231824|231825|237347|241227|241228|241229|241230|241231|241232|241233|241234|241235|241236|244713|244714|244716|244717|244719|244723|244724|244726|244729|244730|244731|244732|254399|254402|254404|254405|267186|267827|268612|315969|315978|315979|315980|315984|315986|315988|315989|323225|323227|323228|323237|323240|323242|323247|323248|329266|329268|329269|329271|329274|329275|329279|329281|329285|329286|330434|330446|330448|330460|330489|330490|330498|372541|372840|372841|374513|374517|374528|374550|374553|398428|398517|398521|398522|398806|398816|398944|398946|398949|398951|408511|408513|408515|421897|433993|433994|441499|441501|441502|441503|441504|444909|461596|461598|461602|461605|461607|461814|461825|461826|461836|462170|462172|462180|462404|462407|462409|482007|486086|490562|503842|503843|503871|503872|504116|504518|511955|511956|511960|511961|526640|526642|526644|526645|526646|526647|526651|526652|526653|526656|526658|526659|526660|526663|526664|526665|526669|526896|526899|526901|526906|526913|527214|527218|527221|527223|527225|527226|527230|565036|565038|565041|566310|566311|566317|567647|567649|567653|567658|567662|571188|571197|571201|571203|571206|571208|571230|571233|571244|571249|581868|640606|640607|640608|640609|640610|640611|640612|640613|640614|640615|640616|640617|640618|640619|640620|640621|640622|640623|640624|640625|640626|640627|640628|640629|640630|640631|640632|656103|672086|684278|684281|684282|687866|687871|724880|768882|784269|792686|839270|839271|839272|839273|839274|839275|839276|839277|839278|839279|839280|839281|839282|839283|839284|839285|839286|839287|839288|839289|839290|869228|869229|869230|869231|869232|869233|869234|869235|869236|869237|869238|869239|869240|869241|869242|869243|869244|869245|872186|919405|919406|919407|920307|920308|926456|926457|926458|926459|926460|926461|926462|926463|935906|935907|935908|935909|935910|935911|935912|935913|941021|947776|947777|947778|947779|947780|947781|956744|956745|960773", "text": "Charcot-Marie-Tooth disease axonal type 2C" }, { - "baseId": "20033|20034|20035|20042|33473|33474|132007|141425|141426|141427|141428|141429|191088|192529|195407|212979|212980|212981|212982|212983|212984|212985|212987|222200|222201|241227|241232|241234|241236|244713|244717|244719|244723|244730|244731|254399|254402|254405|267186|267827|315969|315978|315979|315980|315984|315986|315988|315989|323225|323227|323228|323237|323240|323242|323247|323248|329266|329268|329269|329271|329274|329275|329279|329281|329285|329286|330434|330446|330448|330460|330489|330490|330498|372841|374513|374528|426720|441503|461598|462170|462180|490562|503871|511955|526642|526656|566310|571201|571206|571230|656103|869228|869229|869230|869231|869232|869233|869234|869235|869236|869237|869238|869239|869240|869241|869242|869243|869244|869245|872186", + "upstreamId": "20033|20034|20035|20042|33473|33474|132007|141425|141426|141427|141428|141429|191088|192529|195407|212979|212980|212981|212982|212983|212984|212985|212987|222200|222201|241227|241232|241234|241236|244713|244717|244719|244723|244730|244731|254399|254402|254405|267186|267827|315969|315978|315979|315980|315984|315986|315988|315989|323225|323227|323228|323237|323240|323242|323247|323248|329266|329268|329269|329271|329274|329275|329279|329281|329285|329286|330434|330446|330448|330460|330489|330490|330498|372841|374513|374528|426720|441503|461598|462170|462180|490562|503871|511955|526642|526656|566310|571201|571206|571230|656103|869228|869229|869230|869231|869232|869233|869234|869235|869236|869237|869238|869239|869240|869241|869242|869243|869244|869245|872186", "text": "Spondylometaphyseal dysplasia, Kozlowski type" }, { - "baseId": "20033|20037", + "upstreamId": "20033|20037", "text": "Parastremmatic dwarfism" }, { - "baseId": "20036|20037|20042|33469|33470|33471|33472|33474|39427|39428|39431|39432|39433|132000|132007|141425|141426|141427|141428|141429|191088|192529|195407|212979|212980|212981|212982|212983|212984|212985|212987|222200|222201|241227|241232|241234|241236|244713|244717|244719|244723|244730|244731|254399|254402|254405|267186|267827|315969|315978|315979|315980|315984|315986|315988|315989|323225|323227|323228|323237|323240|323242|323247|323248|329266|329268|329269|329271|329273|329274|329275|329279|329281|329285|329286|330434|330446|330448|330460|330489|330490|330498|353209|356978|372841|374513|374528|441503|461598|462170|462180|490562|503871|511955|526642|526656|566310|571201|571206|571230|656103|822331|869228|869229|869230|869231|869232|869233|869234|869235|869236|869237|869238|869239|869240|869241|869242|869243|869244|869245|872186", + "upstreamId": "20036|20037|20042|33469|33470|33471|33472|33474|39427|39428|39431|39432|39433|132000|132007|141425|141426|141427|141428|141429|191088|192529|195407|212979|212980|212981|212982|212983|212984|212985|212987|222200|222201|241227|241232|241234|241236|244713|244717|244719|244723|244730|244731|254399|254402|254405|267186|267827|315969|315978|315979|315980|315984|315986|315988|315989|323225|323227|323228|323237|323240|323242|323247|323248|329266|329268|329269|329271|329273|329274|329275|329279|329281|329285|329286|330434|330446|330448|330460|330489|330490|330498|353209|356978|372841|374513|374528|441503|461598|462170|462180|490562|503871|511955|526642|526656|566310|571201|571206|571230|656103|822331|869228|869229|869230|869231|869232|869233|869234|869235|869236|869237|869238|869239|869240|869241|869242|869243|869244|869245|872186", "text": "Metatrophic dysplasia" }, { - "baseId": "20037|33474|33475|33476|39425", + "upstreamId": "20037|33474|33475|33476|39425", "text": "Spondyloepiphyseal dysplasia Maroteaux type" }, { - "baseId": "20038|20039|20041|20042|39429|48018|132007|141425|141426|141427|141428|141429|191088|192529|195407|212979|212980|212981|212982|212983|212984|212985|212987|222200|222201|241227|241232|241234|241236|244713|244717|244719|244723|244730|244731|254399|254402|254405|267186|267827|315969|315978|315979|315980|315984|315986|315988|315989|323225|323227|323228|323237|323240|323242|323247|323248|329266|329268|329269|329271|329273|329274|329275|329279|329281|329285|329286|330434|330446|330448|330460|330489|330490|330498|353209|372841|374513|374528|441503|461598|462170|462180|490562|503871|511955|526642|526656|566310|571201|571206|571230|656103|869228|869229|869230|869231|869232|869233|869234|869235|869236|869237|869238|869239|869240|869241|869242|869243|869244|869245|872186", + "upstreamId": "20038|20039|20041|20042|39429|48018|132007|141425|141426|141427|141428|141429|191088|192529|195407|212979|212980|212981|212982|212983|212984|212985|212987|222200|222201|241227|241232|241234|241236|244713|244717|244719|244723|244730|244731|254399|254402|254405|267186|267827|315969|315978|315979|315980|315984|315986|315988|315989|323225|323227|323228|323237|323240|323242|323247|323248|329266|329268|329269|329271|329273|329274|329275|329279|329281|329285|329286|330434|330446|330448|330460|330489|330490|330498|353209|372841|374513|374528|441503|461598|462170|462180|490562|503871|511955|526642|526656|566310|571201|571206|571230|656103|869228|869229|869230|869231|869232|869233|869234|869235|869236|869237|869238|869239|869240|869241|869242|869243|869244|869245|872186", "text": "Distal spinal muscular atrophy, congenital nonprogressive" }, { - "baseId": "20038|20040|20041|20042|132007|141425|141426|141427|141428|141429|191088|192529|195407|212979|212980|212981|212982|212983|212984|212985|212987|222200|222201|241227|241232|241234|241236|244713|244717|244719|244723|244730|244731|254399|254402|254405|267186|267827|315969|315978|315979|315980|315984|315986|315988|315989|323225|323227|323228|323237|323240|323242|323247|323248|329266|329268|329269|329271|329273|329274|329275|329279|329281|329285|329286|330434|330446|330448|330460|330489|330490|330498|353209|372841|374513|374528|441503|461598|462170|462180|490562|503871|511955|526642|526656|566310|571201|571206|571230|656103|869228|869229|869230|869231|869232|869233|869234|869235|869236|869237|869238|869239|869240|869241|869242|869243|869244|869245|872186", + "upstreamId": "20038|20040|20041|20042|132007|141425|141426|141427|141428|141429|191088|192529|195407|212979|212980|212981|212982|212983|212984|212985|212987|222200|222201|241227|241232|241234|241236|244713|244717|244719|244723|244730|244731|254399|254402|254405|267186|267827|315969|315978|315979|315980|315984|315986|315988|315989|323225|323227|323228|323237|323240|323242|323247|323248|329266|329268|329269|329271|329273|329274|329275|329279|329281|329285|329286|330434|330446|330448|330460|330489|330490|330498|353209|372841|374513|374528|441503|461598|462170|462180|490562|503871|511955|526642|526656|566310|571201|571206|571230|656103|869228|869229|869230|869231|869232|869233|869234|869235|869236|869237|869238|869239|869240|869241|869242|869243|869244|869245|872186", "text": "Scapuloperoneal spinal muscular atrophy" }, { - "baseId": "20038|20040|24157|38987|39429|70511|191531|196476|200698|208054|214089|214090|231826|236923|244863|311334|461638|511936|513441|552170|574098|611754|625144|625198|625199|625200|625206|625207|625212|625213|625214|625215|625216|625221|625224|625226|625227|625229|625230|625231|625237|625238|625239|625241|625242|625243|625247|625249|625253|625255|625256|625257|625286|625287|625288|625289|625290|625291|625293|625750|682999|683011|683037|683051", + "upstreamId": "20038|20040|24157|38987|39429|70511|191531|196476|200698|208054|214089|214090|231826|236923|244863|311334|461638|511936|513441|552170|574098|611754|625144|625198|625199|625200|625206|625207|625212|625213|625214|625215|625216|625221|625224|625226|625227|625229|625230|625231|625237|625238|625239|625241|625242|625243|625247|625249|625253|625255|625256|625257|625286|625287|625288|625289|625290|625291|625293|625750|682999|683011|683037|683051", "text": "Autosomal dominant distal hereditary motor neuropathy" }, { - "baseId": "20039|27395|27405|27413|27626|28302|28307|28311|28312|28316|29525|32803|39040|50121|77694|79530|133150|133152|133267|133281|134137|151478|178432|203922|226498|242984|263188|263196|263199|263201|263205|263299|263383|263387|263414|360818|360983|361713|363664|398806|402557|408516|420656|441499|444566|459906|465352|479292|480668|511956|513938|513998|513999|514018|565041|569547|590039|590051|590052|590059|590064|590065|590089|615889|792641|792642|917822", + "upstreamId": "20039|27395|27405|27413|27626|28302|28307|28311|28312|28316|29525|32803|39040|50121|77694|79530|133150|133152|133267|133281|134137|151478|178432|203922|226498|242984|263188|263196|263199|263201|263205|263299|263383|263387|263414|360818|360983|361713|363664|398806|402557|408516|420656|441499|444566|459906|465352|479292|480668|511956|513938|513998|513999|514018|565041|569547|590039|590051|590052|590059|590064|590065|590089|615889|792641|792642|917822", "text": "11 conditions" }, { - "baseId": "20042", + "upstreamId": "20042", "text": "Sodium serum level quantitative trait locus 1" }, { - "baseId": "20043|20044|20045|20046|20047|20048", + "upstreamId": "20043|20044|20045|20046|20047|20048", "text": "Erythrokeratodermia variabilis et progressiva 2" }, { - "baseId": "20049|551459|969318|969319|969320", + "upstreamId": "20049|551459|969318|969319|969320", "text": "46,XY gonadal dysgenesis, partial, with minifascicular neuropathy" }, { - "baseId": "20050|20051|260443|331436|462246|463136|552293|552294|552295|552296|702337|702338|926652|936145", + "upstreamId": "20050|20051|260443|331436|462246|463136|552293|552294|552295|552296|702337|702338|926652|936145", "text": "46,XY sex reversal, type 7" }, { - "baseId": "20052|20053|20054|20055|20056|20057|20058|165647|165649|314060|314062|314063|314064|314068|314070|314071|314075|314077|314081|314087|314095|314096|314097|314098|314114|314116|320528|320529|320537|320540|320541|320550|320551|320562|320563|320568|320569|320571|320573|320574|320578|320579|320584|320585|320586|320587|320591|320593|320597|320598|320599|320611|320621|320622|320633|320635|320636|320646|326505|326514|326543|326547|326550|326551|326553|326554|326556|326564|326567|326570|326571|326579|326580|326582|326587|326589|326594|326597|326606|326607|326611|326613|326614|326615|326638|326643|326658|326659|326661|326667|326671|327548|327550|327551|327558|327559|327560|327565|327566|327567|327574|327590|327591|327592|327610|327611|327619|327621|327623|327639|327640|327656|327669|327672|620401|701767|724439|737974|737977|737979|867959|867960|867961|867962|867963|867964|867965|867966|867967|867968|867969|867970|867971|867972|867973|867974|867975|867976|867977|867978|867979|867980|867981|867982|867983|867984|867985|867986|867987|867988|867989|867990|867991|867992|867993|867994|867995|867996|867997|867998|867999|868000|868001|868002|868003|868004|868005", + "upstreamId": "20052|20053|20054|20055|20056|20057|20058|165647|165649|314060|314062|314063|314064|314068|314070|314071|314075|314077|314081|314087|314095|314096|314097|314098|314114|314116|320528|320529|320537|320540|320541|320550|320551|320562|320563|320568|320569|320571|320573|320574|320578|320579|320584|320585|320586|320587|320591|320593|320597|320598|320599|320611|320621|320622|320633|320635|320636|320646|326505|326514|326543|326547|326550|326551|326553|326554|326556|326564|326567|326570|326571|326579|326580|326582|326587|326589|326594|326597|326606|326607|326611|326613|326614|326615|326638|326643|326658|326659|326661|326667|326671|327548|327550|327551|327558|327559|327560|327565|327566|327567|327574|327590|327591|327592|327610|327611|327619|327621|327623|327639|327640|327656|327669|327672|620401|701767|724439|737974|737977|737979|867959|867960|867961|867962|867963|867964|867965|867966|867967|867968|867969|867970|867971|867972|867973|867974|867975|867976|867977|867978|867979|867980|867981|867982|867983|867984|867985|867986|867987|867988|867989|867990|867991|867992|867993|867994|867995|867996|867997|867998|867999|868000|868001|868002|868003|868004|868005", "text": "Parietal foramina 2" }, { - "baseId": "20059|165648|188208|227446|361726|578491", + "upstreamId": "20059|165648|188208|227446|361726|578491", "text": "Frontonasal dysplasia 2" }, { - "baseId": "20060|20061|27640|28939|29005|204981|204982|204983|551403|919462", + "upstreamId": "20060|20061|27640|28939|29005|204981|204982|204983|551403|919462", "text": "Thyroid cancer, nonmedullary, 2" }, { - "baseId": "20062", + "upstreamId": "20062", "text": "Thyroid adenoma (disease)" }, { - "baseId": "20063|359552|360867", + "upstreamId": "20063|359552|360867", "text": "Increased IgE level" }, { - "baseId": "20064|20065|44798|44799|317089|317097|317111|317112|317114|317117|317119|317121|324838|324841|324849|324850|324851|324855|324899|330944|330946|330951|330952|330960|330962|331027|332428|332431|332436|332452|332453|332459|332462|332466|332473|332563|577261|738637|869801|869802|869803|869804|869805|869806|869807|869808|869809|869810|869811|869812|869813|869814|869815|869816|869842|869843|869844|869845|872242", + "upstreamId": "20064|20065|44798|44799|317089|317097|317111|317112|317114|317117|317119|317121|324838|324841|324849|324850|324851|324855|324899|330944|330946|330951|330952|330960|330962|331027|332428|332431|332436|332452|332453|332459|332462|332466|332473|332563|577261|738637|869801|869802|869803|869804|869805|869806|869807|869808|869809|869810|869811|869812|869813|869814|869815|869816|869842|869843|869844|869845|872242", "text": "Autosomal dominant hypophosphatemic rickets" }, { - "baseId": "20066|20385|22830|22831|22832|22833|22834|22835|22836|22837|22838|22839|22840|22841|22842|192386|282414|282415|282421|282426|282428|283097|283100|283101|283103|283104|283105|283106|283107|284674|284687|284700|284701|284703|285130|285138|285139|285151|285152|285158|285159|437705|437706|552053|610988|697129|707819|707820|791342|881305|881306|881307|881308|881309|881310|881311|881312|881313|881314|881315|881316|881317|881318|881319|881320|881321|882820|882821|920603", + "upstreamId": "20066|20385|22830|22831|22832|22833|22834|22835|22836|22837|22838|22839|22840|22841|22842|192386|282414|282415|282421|282426|282428|283097|283100|283101|283103|283104|283105|283106|283107|284674|284687|284700|284701|284703|285130|285138|285139|285151|285152|285158|285159|437705|437706|552053|610988|697129|707819|707820|791342|881305|881306|881307|881308|881309|881310|881311|881312|881313|881314|881315|881316|881317|881318|881319|881320|881321|882820|882821|920603", "text": "Hyperphosphatemic familial tumoral calcinosis 1" }, { - "baseId": "20066|20067|20068|317089|317097|317111|317112|317114|317117|317119|317121|324838|324841|324849|324850|324851|324855|324899|330944|330946|330951|330952|330960|330962|331027|332428|332431|332436|332452|332453|332459|332462|332466|332473|332563|577261|738637|869801|869802|869803|869804|869805|869806|869807|869808|869809|869810|869811|869812|869813|869814|869815|869816|869842|869843|869844|869845|872242|919432", + "upstreamId": "20066|20067|20068|317089|317097|317111|317112|317114|317117|317119|317121|324838|324841|324849|324850|324851|324855|324899|330944|330946|330951|330952|330960|330962|331027|332428|332431|332436|332452|332453|332459|332462|332466|332473|332563|577261|738637|869801|869802|869803|869804|869805|869806|869807|869808|869809|869810|869811|869812|869813|869814|869815|869816|869842|869843|869844|869845|872242|919432", "text": "Tumoral calcinosis, hyperphosphatemic, familial, 2" }, { - "baseId": "20066|213620|282435|283098|285137|317102|317118|319404|324857|324859|330949|332440|332445", + "upstreamId": "20066|213620|282435|283098|285137|317102|317118|319404|324857|324859|330949|332440|332445", "text": "Tumoral calcinosis, hyperphosphatemic, familial" }, { - "baseId": "20069|20070|20072|20073|20074|20075|20076|20077|134577|167388|167392|167397|231987|245008|245009|255895|255896|255897|260130|273694|326427|326428|326432|326439|326440|326444|326447|326448|326450|326451|326453|326454|326456|326458|326460|336169|336170|336171|336176|336177|336179|336183|336184|336186|336187|336191|336194|336197|336198|336199|336208|336209|336211|336221|336222|336224|336225|336229|342431|342433|342435|342443|342446|342449|342450|342451|342454|342456|342457|342458|342459|342460|342462|342463|342465|344079|344081|344083|344084|344087|344088|344089|344090|344091|344092|344093|344099|344100|344102|344103|344116|344119|344122|344124|344126|344130|361521|375489|375682|415513|466024|466032|466035|466036|466038|466757|466758|466762|466763|466778|466794|466798|466802|467038|467046|467047|467067|467069|506512|512228|530309|530312|530313|530315|530371|530372|530381|530383|530400|530402|530569|530571|530573|530575|530577|530581|530792|530794|537264|552190|568377|568387|568391|568399|568402|570504|570506|570508|570511|570558|570559|570561|570564|570571|570572|570660|574175|574176|574177|574178|581728|590028|622435|625316|625317|625318|625319|625320|625321|625322|625323|625324|625325|625326|625327|625328|625329|625330|625331|625333|625334|625335|625336|625337|625338|625339|625340|625341|625342|625343|625344|625345|625346|625347|625348|625350|625351|625352|625354|625355|625356|625357|625358|625359|625360|625760|625761|645009|645010|645011|645012|645013|645014|645015|645016|645017|645018|645019|645020|645021|645022|645023|645024|645025|645026|645027|645028|645029|652757|653065|677453|688666|693935|693937|693938|693939|715097|715098|760518|771079|780051|785390|785392|820887|844368|844369|844370|844371|844372|844373|844374|844375|844376|844377|844378|844379|844380|844381|844382|844383|844384|844385|844386|844387|851683|852831|861664|876008|876009|876010|876011|876012|876013|876014|876015|876016|876017|876018|876019|876020|876021|876022|876023|876024|876025|876026|876027|876028|876029|876030|876031|876032|876033|876034|876722|927965|927966|927967|937629|937630|937631|937632|941146|941147|949595|949596|949597|949598|949599|949600|949601|957888|957889|957890|957891|957892|957893|957894", + "upstreamId": "20069|20070|20072|20073|20074|20075|20076|20077|134577|167388|167392|167397|231987|245008|245009|255895|255896|255897|260130|273694|326427|326428|326432|326439|326440|326444|326447|326448|326450|326451|326453|326454|326456|326458|326460|336169|336170|336171|336176|336177|336179|336183|336184|336186|336187|336191|336194|336197|336198|336199|336208|336209|336211|336221|336222|336224|336225|336229|342431|342433|342435|342443|342446|342449|342450|342451|342454|342456|342457|342458|342459|342460|342462|342463|342465|344079|344081|344083|344084|344087|344088|344089|344090|344091|344092|344093|344099|344100|344102|344103|344116|344119|344122|344124|344126|344130|361521|375489|375682|415513|466024|466032|466035|466036|466038|466757|466758|466762|466763|466778|466794|466798|466802|467038|467046|467047|467067|467069|506512|512228|530309|530312|530313|530315|530371|530372|530381|530383|530400|530402|530569|530571|530573|530575|530577|530581|530792|530794|537264|552190|568377|568387|568391|568399|568402|570504|570506|570508|570511|570558|570559|570561|570564|570571|570572|570660|574175|574176|574177|574178|581728|590028|622435|625316|625317|625318|625319|625320|625321|625322|625323|625324|625325|625326|625327|625328|625329|625330|625331|625333|625334|625335|625336|625337|625338|625339|625340|625341|625342|625343|625344|625345|625346|625347|625348|625350|625351|625352|625354|625355|625356|625357|625358|625359|625360|625760|625761|645009|645010|645011|645012|645013|645014|645015|645016|645017|645018|645019|645020|645021|645022|645023|645024|645025|645026|645027|645028|645029|652757|653065|677453|688666|693935|693937|693938|693939|715097|715098|760518|771079|780051|785390|785392|820887|844368|844369|844370|844371|844372|844373|844374|844375|844376|844377|844378|844379|844380|844381|844382|844383|844384|844385|844386|844387|851683|852831|861664|876008|876009|876010|876011|876012|876013|876014|876015|876016|876017|876018|876019|876020|876021|876022|876023|876024|876025|876026|876027|876028|876029|876030|876031|876032|876033|876034|876722|927965|927966|927967|937629|937630|937631|937632|941146|941147|949595|949596|949597|949598|949599|949600|949601|957888|957889|957890|957891|957892|957893|957894", "text": "Giant axonal neuropathy 1" }, { - "baseId": "20078|20079|20080|20081|20083|20084|20085|20086|20087|133700|133701|198632|260025|260027|260029|317931|317932|317936|317940|317944|317946|317949|317953|325845|325871|325873|325875|325876|325879|325880|325881|332094|332097|332098|332100|332101|332102|333560|333563|333564|333566|333567|333582|333586|333590|417444|611346|620445|620850|626315|753483|784425|870160|870161|870162|870163|870164|870165|870166|870167|870168|870169|872265|872266|872267", + "upstreamId": "20078|20079|20080|20081|20083|20084|20085|20086|20087|133700|133701|198632|260025|260027|260029|317931|317932|317936|317940|317944|317946|317949|317953|325845|325871|325873|325875|325876|325879|325880|325881|332094|332097|332098|332100|332101|332102|333560|333563|333564|333566|333567|333582|333586|333590|417444|611346|620445|620850|626315|753483|784425|870160|870161|870162|870163|870164|870165|870166|870167|870168|870169|872265|872266|872267", "text": "Glucocorticoid deficiency with achalasia" }, { - "baseId": "20084|20699|33187|51184|360842|360970|360971|361043|402131|676961|961430|962129|962130|964663", + "upstreamId": "20084|20699|33187|51184|360842|360970|360971|361043|402131|676961|961430|962129|962130|964663", "text": "Spastic paraparesis" }, { - "baseId": "20084", + "upstreamId": "20084", "text": "Babinski sign" }, { - "baseId": "20084|360839", + "upstreamId": "20084|360839", "text": "Hyperreflexia" }, { - "baseId": "20088|76537|76538|76539|134349|185799|185800|185801|185802|185803|185804|185805|185806|185807|185808|185809|185810|185811|185812|185813|185814|185815|185816|185817|185818|185819|185820|185821|185822|185823|185824|185825|185826|185827|185828|185829|185830|185831|185832|185833|185834|185835|185836|185837|185838|185839|185840|185841|185842|185843|185844|185845|185846|185847|185848|185849|185850|185851|185852|185853|185854|185855|185856|185857|185858|185859|185860|185861|185862|185863|185864|185865|185866|185867|185868|185869|185870|185871|185872|185873|185874|185875|185876|185877|185878|185879|185880|185881|185882|185883|185884|185885|185886|185887|185888|185889|185890|185891|185892|185893|185894|185895|185896|185897|185898|185899|185900|185901|185902|185903|185904|185905|185906|185907|185908|185909|185910|185911|185912|185913|185914|185915|185916|185917|185918|185919|185920|185921|185922|185923|185924|185925|185926|185927|185928|185929|185930|185931|185932|185933|185934|185935|248728|248729|361889|513663|514402|514404|514405|514406|514407|514409|514410|514411|514412|578567|612332|622467|626278|794185|794186|794187|794188|794189|799034|799035|799036|799037|799038|799039|799040|799041|799042|799043|799044|799045|799046|799047|799049|799050|799051|799052|799053|799054|799055|799056|799057|799058|799059|799060|799061|799062|799063|799064|799065|799066|799067|799068|799069|799070|799071|799072|799073|799074|799075|799076|799077|799095|961918|961920", + "upstreamId": "20088|76537|76538|76539|134349|185799|185800|185801|185802|185803|185804|185805|185806|185807|185808|185809|185810|185811|185812|185813|185814|185815|185816|185817|185818|185819|185820|185821|185822|185823|185824|185825|185826|185827|185828|185829|185830|185831|185832|185833|185834|185835|185836|185837|185838|185839|185840|185841|185842|185843|185844|185845|185846|185847|185848|185849|185850|185851|185852|185853|185854|185855|185856|185857|185858|185859|185860|185861|185862|185863|185864|185865|185866|185867|185868|185869|185870|185871|185872|185873|185874|185875|185876|185877|185878|185879|185880|185881|185882|185883|185884|185885|185886|185887|185888|185889|185890|185891|185892|185893|185894|185895|185896|185897|185898|185899|185900|185901|185902|185903|185904|185905|185906|185907|185908|185909|185910|185911|185912|185913|185914|185915|185916|185917|185918|185919|185920|185921|185922|185923|185924|185925|185926|185927|185928|185929|185930|185931|185932|185933|185934|185935|248728|248729|361889|513663|514402|514404|514405|514406|514407|514409|514410|514411|514412|578567|612332|622467|626278|794185|794186|794187|794188|794189|799034|799035|799036|799037|799038|799039|799040|799041|799042|799043|799044|799045|799046|799047|799049|799050|799051|799052|799053|799054|799055|799056|799057|799058|799059|799060|799061|799062|799063|799064|799065|799066|799067|799068|799069|799070|799071|799072|799073|799074|799075|799076|799077|799095|961918|961920", "text": "Steinert myotonic dystrophy syndrome" }, { - "baseId": "20089|20090|94574|133876|133881|133882|133883|133884|133885|133886|133887|133889|133890|133894|133895|208686|208689|208692|208693|208697|208699|335713|335719|335723|335725|335731|335734|335737|335739|335741|335744|335748|335750|335752|335755|335759|335761|335764|335765|335766|335770|335778|335780|345457|345461|345463|345467|345468|345470|345472|345474|345479|345481|345483|345485|345486|350079|350082|350084|350085|350086|350087|350089|350091|350092|350094|350097|350098|350100|350101|350104|350107|350109|351120|351121|351124|351125|351128|351129|351132|351135|351136|351139|351143|351145|351146|351149|430342|430351|430352|430358|578576|728707|786399|791985|791986|886233|886234|886235|886236|886237|886238|886239|886240|886241|886242|886243|886244|886245|886246|886247|886248|886249|886250|886251|886252|886253|886254|886255|886256|886257|886258|886259|886260|886261|886262|886263|886264|886265|886266|886267|886268|886269|886270|886271|886272|886273|886274|886275|886276|886277|887469|887470|887471|887472|919916|971145", + "upstreamId": "20089|20090|94574|133876|133881|133882|133883|133884|133885|133886|133887|133889|133890|133894|133895|208686|208689|208692|208693|208697|208699|335713|335719|335723|335725|335731|335734|335737|335739|335741|335744|335748|335750|335752|335755|335759|335761|335764|335765|335766|335770|335778|335780|345457|345461|345463|345467|345468|345470|345472|345474|345479|345481|345483|345485|345486|350079|350082|350084|350085|350086|350087|350089|350091|350092|350094|350097|350098|350100|350101|350104|350107|350109|351120|351121|351124|351125|351128|351129|351132|351135|351136|351139|351143|351145|351146|351149|430342|430351|430352|430358|578576|728707|786399|791985|791986|886233|886234|886235|886236|886237|886238|886239|886240|886241|886242|886243|886244|886245|886246|886247|886248|886249|886250|886251|886252|886253|886254|886255|886256|886257|886258|886259|886260|886261|886262|886263|886264|886265|886266|886267|886268|886269|886270|886271|886272|886273|886274|886275|886276|886277|887469|887470|887471|887472|919916|971145", "text": "Heterotopia, periventricular, autosomal recessive" }, { - "baseId": "20094|20095|20096|20097|20098|227386", + "upstreamId": "20094|20095|20096|20097|20098|227386", "text": "Prostate cancer, hereditary, 2" }, { - "baseId": "20094|20095|20096|20097|20098|76941|76942|76943|76944|222556|222557|227386|237324|242582|242583|242584|242587|242588|242590|242591|242592|242593|374843|374845|375729|375937|375948|378059|378065|401533|401537|401538|401539|401540|401541|401547|401998|401999|402253|402259|466341|467099|467101|467274|467277|467278|467280|467411|467418|467424|467425|467426|481140|481370|481371|481372|530743|530745|552199|568688|568690|568702|568704|570759|570763|574303|574304|645309|645310|645311|645312|645313|645314|645315|645316|684657|684658|684659|684660|684661|688739|688743|690166|715247|726986|778446|785465|788904|844708|844709|844710|844711|844712|844713|844714|844715|844716|844717|852691|928060|928061|928062|928063|928064|937725|940383|949705|957983|957984|957985|957986|960869", + "upstreamId": "20094|20095|20096|20097|20098|76941|76942|76943|76944|222556|222557|227386|237324|242582|242583|242584|242587|242588|242590|242591|242592|242593|374843|374845|375729|375937|375948|378059|378065|401533|401537|401538|401539|401540|401541|401547|401998|401999|402253|402259|466341|467099|467101|467274|467277|467278|467280|467411|467418|467424|467425|467426|481140|481370|481371|481372|530743|530745|552199|568688|568690|568702|568704|570759|570763|574303|574304|645309|645310|645311|645312|645313|645314|645315|645316|684657|684658|684659|684660|684661|688739|688743|690166|715247|726986|778446|785465|788904|844708|844709|844710|844711|844712|844713|844714|844715|844716|844717|852691|928060|928061|928062|928063|928064|937725|940383|949705|957983|957984|957985|957986|960869", "text": "Combined oxidative phosphorylation deficiency 17" }, { - "baseId": "20099|282774|282779|282782|282796|282800|282801|282803|282810|283594|283595|283596|283597|283599|283600|283610|283613|283614|283617|283618|283619|285118|285128|285131|285132|285133|285134|285140|285143|285148|285625|285628|285629|285638|285641|285642|285644|285646|285650|285651|285652|513248|551695|558911|559394|628988|628989|628990|650879|650881|707849|719407|778877|788743|825209|825210|881530|881531|881532|881533|881534|881535|881536|881537|881538|881539|881540|881541|881542|881543|881544|881545|881546|881547|882843|882844|918695|952786", + "upstreamId": "20099|282774|282779|282782|282796|282800|282801|282803|282810|283594|283595|283596|283597|283599|283600|283610|283613|283614|283617|283618|283619|285118|285128|285131|285132|285133|285134|285140|285143|285148|285625|285628|285629|285638|285641|285642|285644|285646|285650|285651|285652|513248|551695|558911|559394|628988|628989|628990|650879|650881|707849|719407|778877|788743|825209|825210|881530|881531|881532|881533|881534|881535|881536|881537|881538|881539|881540|881541|881542|881543|881544|881545|881546|881547|882843|882844|918695|952786", "text": "Cerebral palsy, spastic quadriplegic, 1" }, { - "baseId": "20100|20101|508751", + "upstreamId": "20100|20101|508751", "text": "Metabolic syndrome, susceptibility to" }, { - "baseId": "20100|20102|22032|23175|23178|23861|24726|27024|28628|28629|29357|29358|29363|29368|29369|29370|29375|29459|32735|32780|45128|45129|45130|45145|45146|45147|45148|45149|45150|48278|135465|192092|203022|206995|208462|215036|215037|256718|263264|285610|285611|285622|285624|285631|286339|286340|288404|288413|288431|288432|288642|289041|289047|289053|289177|292190|292296|292303|292305|292306|292310|299023|332144|332444|342314|342316|342318|342320|347738|347739|347743|349098|349106|349111|384510|405689|428113|430074|430075|430076|430078|443218|485790|485791|485792|485793|490887|495097|514170|514218|514853|540034|550209|550210|553408|553540|577690|583084|590038|610521|619912|619913|619914|619915|619916|619917|620939|719788|727763|733372|756500|788855|800415|800416|800417|879673|879674|879675|879676|879677|879678|879679|879680|879681|879682|879683|879684|879685|879686|879687|879688|879689|879690|879691|879692|884457|884458|884459|884460|884461|884462|884463|884464|884465|884466|887759|887767|887768|887769|887770|918796|964342|964502|970013|971396", + "upstreamId": "20100|20102|22032|23175|23178|23861|24726|27024|28628|28629|29357|29358|29363|29368|29369|29370|29375|29459|32735|32780|45128|45129|45130|45145|45146|45147|45148|45149|45150|48278|135465|192092|203022|206995|208462|215036|215037|256718|263264|285610|285611|285622|285624|285631|286339|286340|288404|288413|288431|288432|288642|289041|289047|289053|289177|292190|292296|292303|292305|292306|292310|299023|332144|332444|342314|342316|342318|342320|347738|347739|347743|349098|349106|349111|384510|405689|428113|430074|430075|430076|430078|443218|485790|485791|485792|485793|490887|495097|514170|514218|514853|540034|550209|550210|553408|553540|577690|583084|590038|610521|619912|619913|619914|619915|619916|619917|620939|719788|727763|733372|756500|788855|800415|800416|800417|879673|879674|879675|879676|879677|879678|879679|879680|879681|879682|879683|879684|879685|879686|879687|879688|879689|879690|879691|879692|884457|884458|884459|884460|884461|884462|884463|884464|884465|884466|887759|887767|887768|887769|887770|918796|964342|964502|970013|971396", "text": "Obesity" }, { - "baseId": "20101", + "upstreamId": "20101", "text": "Obesity, age at onset of" }, { - "baseId": "20103", + "upstreamId": "20103", "text": "GHRELIN POLYMORPHISM" }, { - "baseId": "20104", + "upstreamId": "20104", "text": "Hemolytic uremic syndrome, atypical, susceptibility to" }, { - "baseId": "20104", + "upstreamId": "20104", "text": "Age-related macular degeneration" }, { - "baseId": "20105|33313", + "upstreamId": "20105|33313", "text": "Hypertension, salt-sensitive essential, susceptibility to" }, { - "baseId": "20106|20107|101502|101506|101507|101508|101509|101511|177726|177727|192457|206559|237125|244037|244038|244039|244041|244042|244043|244044|244045|244046|244047|244048|244049|244050|244051|244052|244053|244054|244055|244056|244057|244058|244059|244060|244061|244062|301505|301506|301510|301512|301516|301517|301526|301531|301533|301535|301537|301541|301543|301544|301546|301548|301570|301571|301575|301579|301581|301582|301583|301587|301594|304775|304776|304778|304789|304791|304802|304806|304811|304814|304819|304833|304840|304847|304849|304852|304855|304857|304866|304868|309376|309377|309389|309390|309394|309395|309398|309399|309400|309409|309412|309415|309423|309424|309425|309429|309439|309442|309512|309523|309525|309536|309538|309540|309541|309543|309545|309546|309549|309552|309554|309556|309559|309567|309569|309574|309589|309594|424654|579317|579460|609022|609195|609196|609201|611396|798581|897256|897257|897258|897259|897260|897261|897262|897263|897264|897265|897266|897267|897268|897269|897270|897271|897272|897273|897274|897275|897276|897277|897278|897279|897280|900304|900305", + "upstreamId": "20106|20107|101502|101506|101507|101508|101509|101511|177726|177727|192457|206559|237125|244037|244038|244039|244041|244042|244043|244044|244045|244046|244047|244048|244049|244050|244051|244052|244053|244054|244055|244056|244057|244058|244059|244060|244061|244062|301505|301506|301510|301512|301516|301517|301526|301531|301533|301535|301537|301541|301543|301544|301546|301548|301570|301571|301575|301579|301581|301582|301583|301587|301594|304775|304776|304778|304789|304791|304802|304806|304811|304814|304819|304833|304840|304847|304849|304852|304855|304857|304866|304868|309376|309377|309389|309390|309394|309395|309398|309399|309400|309409|309412|309415|309423|309424|309425|309429|309439|309442|309512|309523|309525|309536|309538|309540|309541|309543|309545|309546|309549|309552|309554|309556|309559|309567|309569|309574|309589|309594|424654|579317|579460|609022|609195|609196|609201|611396|798581|897256|897257|897258|897259|897260|897261|897262|897263|897264|897265|897266|897267|897268|897269|897270|897271|897272|897273|897274|897275|897276|897277|897278|897279|897280|900304|900305", "text": "Speech-language disorder 1" }, { - "baseId": "20108|20109|265637|267757|268455|508782|614083|614084|614085|790215|969294|970738", + "upstreamId": "20108|20109|265637|267757|268455|508782|614083|614084|614085|790215|969294|970738", "text": "Chromosome 2q37 deletion syndrome" }, { - "baseId": "20110|20111|20114|20115|20116|20117|193668|326335|326339|326340|326341|326345|326348|326349|326351|326352|326354|326355|326357|326361|326363|326366|326368|326370|326375|326376|326379|326381|326383|326392|326394|326395|326396|326410|326417|326418|336066|336068|336072|336073|336083|336084|336087|336090|336100|336102|336104|336105|336108|336121|336122|336127|336128|336130|336136|336137|336141|336142|336143|336145|336146|336148|336149|336150|336157|342337|342340|342345|342350|342351|342353|342354|342357|342358|342359|342360|342363|342365|342366|342367|342368|342371|342377|342384|342385|342388|342399|342401|342402|342406|342408|342409|342415|342417|343959|343960|343961|343962|343964|343966|343967|343970|343971|343972|343976|343978|343980|343981|343994|343995|343998|344006|344008|344010|344011|344016|344018|344019|344025|344031|344035|344037|344040|344041|344042|466700|538455|620561|620562|620563|703814|715075|715076|726792|875944|875945|875946|875947|875948|875949|875950|875951|875952|875953|875954|875955|875956|875957|875958|875959|875960|875961|875962|875963|875964|875965|875966|875967|875968|875969|875970|875971|875972|875973|875974|875975|875976|875977|875978|875979|875980|875981|875982|875983|875984|875985|875986|875987|875988|875989|875990|875991|875992|875993|875994|875995|875996|875997|875998|875999|876000|876001|876002|876003|876004|876005|876006|876007|937599", + "upstreamId": "20110|20111|20114|20115|20116|20117|193668|326335|326339|326340|326341|326345|326348|326349|326351|326352|326354|326355|326357|326361|326363|326366|326368|326370|326375|326376|326379|326381|326383|326392|326394|326395|326396|326410|326417|326418|336066|336068|336072|336073|336083|336084|336087|336090|336100|336102|336104|336105|336108|336121|336122|336127|336128|336130|336136|336137|336141|336142|336143|336145|336146|336148|336149|336150|336157|342337|342340|342345|342350|342351|342353|342354|342357|342358|342359|342360|342363|342365|342366|342367|342368|342371|342377|342384|342385|342388|342399|342401|342402|342406|342408|342409|342415|342417|343959|343960|343961|343962|343964|343966|343967|343970|343971|343972|343976|343978|343980|343981|343994|343995|343998|344006|344008|344010|344011|344016|344018|344019|344025|344031|344035|344037|344040|344041|344042|466700|538455|620561|620562|620563|703814|715075|715076|726792|875944|875945|875946|875947|875948|875949|875950|875951|875952|875953|875954|875955|875956|875957|875958|875959|875960|875961|875962|875963|875964|875965|875966|875967|875968|875969|875970|875971|875972|875973|875974|875975|875976|875977|875978|875979|875980|875981|875982|875983|875984|875985|875986|875987|875988|875989|875990|875991|875992|875993|875994|875995|875996|875997|875998|875999|876000|876001|876002|876003|876004|876005|876006|876007|937599", "text": "Macular corneal dystrophy" }, { - "baseId": "20112|20113|20114|20118", + "upstreamId": "20112|20113|20114|20118", "text": "Macular corneal dystrophy, type II" }, { - "baseId": "20119|20120|20121|20122|20123|20124|20125|20126|20127|20131|34379|59852|59852|76663|101605|101606|101608|101613|101614|101618|101619|101620|101621|101622|101623|101624|101626|101628|101630|142273|142274|177896|190550|192676|210977|210978|210984|210996|211003|211011|213549|214497|214498|214499|214500|289727|289728|289729|289734|289738|289739|289746|289758|289760|289769|289770|289776|289778|289784|289793|289795|289800|289802|290531|290532|290533|290534|290535|290537|290541|290542|290543|290562|290563|290572|293645|293646|293648|293654|294183|294184|294184|294185|294187|294190|294191|294192|294193|294194|294195|294196|294197|367279|367301|367306|367344|414928|425539|443403|500414|587194|790375|790376|790377|790378|790379|790380|888560|888561|888562|888563|888564|888565|888566|888567|888568|888569|888570|888571|888572|888573|888574|888575|888576|888577|888578|888579|888580|888581|888582|888583|888584|888585|888586|888587|888588|888589|891631|891632|961599|964220|964221|965930", + "upstreamId": "20119|20120|20121|20122|20123|20124|20125|20126|20127|20131|34379|59852|59852|76663|101605|101606|101608|101613|101614|101618|101619|101620|101621|101622|101623|101624|101626|101628|101630|142273|142274|177896|190550|192676|210977|210978|210984|210996|211003|211011|213549|214497|214498|214499|214500|289727|289728|289729|289734|289738|289739|289746|289758|289760|289769|289770|289776|289778|289784|289793|289795|289800|289802|290531|290532|290533|290534|290535|290537|290541|290542|290543|290562|290563|290572|293645|293646|293648|293654|294183|294184|294184|294185|294187|294190|294191|294192|294193|294194|294195|294196|294197|367279|367301|367306|367344|414928|425539|443403|500414|587194|790375|790376|790377|790378|790379|790380|888560|888561|888562|888563|888564|888565|888566|888567|888568|888569|888570|888571|888572|888573|888574|888575|888576|888577|888578|888579|888580|888581|888582|888583|888584|888585|888586|888587|888588|888589|891631|891632|961599|964220|964221|965930", "text": "Dominant hereditary optic atrophy" }, { - "baseId": "20121|59852|59852|210979|227007|227008|227009|294184|493528|918822|918823|918824|918825|961599", + "upstreamId": "20121|59852|59852|210979|227007|227008|227009|294184|493528|918822|918823|918824|918825|961599", "text": "Abortive cerebellar ataxia" }, { - "baseId": "20129|20130|20131|39417|39418|39419|39420|59852|198617|210979|227006|294184|428165|679822|961599|970142", + "upstreamId": "20129|20130|20131|39417|39418|39419|39420|59852|198617|210979|227006|294184|428165|679822|961599|970142", "text": "Optic atrophy with or without deafness, ophthalmoplegia, myopathy, ataxia, and neuropathy" }, { - "baseId": "20135", + "upstreamId": "20135", "text": "Polycystic ovary syndrome, susceptibility to" }, { - "baseId": "20136|20137|20138|20139|20142|20143|20144|50125|50126|50127|50129|50130|50131|50132|50133|50133|50134|50135|50136|50137|50138|50139|57889|57891|57893|57898|57899|57913|57914|57915|57917|57918|57927|57930|57932|57941|57944|57945|57953|57954|57958|57958|57959|57962|57965|57966|57967|57979|57983|58014|58019|58020|58023|58024|58029|58032|58038|58044|58047|58047|58064|58065|58067|58068|58069|58083|58087|58091|58093|58094|58103|58104|58105|58108|58114|58116|58124|58129|58131|58133|58134|58135|58138|58144|58146|58147|58149|58151|58154|58157|58158|58160|58161|58164|58168|58170|58176|58177|58178|58181|58182|58183|58184|58185|58186|58189|58191|58197|58200|58201|58202|58205|58210|58215|58216|58217|58219|58229|58233|58234|58235|58236|58238|58241|58242|58243|58245|58245|58253|58254|58255|58256|58259|58272|58281|58282|58292|58296|58297|75628|75630|75633|75635|75639|75641|75649|75660|75662|75663|75664|75666|75668|75669|75672|75674|75676|75677|75679|75681|75683|75686|75688|75691|75692|75693|75701|75708|75711|75714|75719|75721|75722|75725|75726|75739|75741|75742|75743|75744|75745|75746|75749|75751|75754|75755|75757|75761|75763|75770|75772|139101|139102|139103|139105|139107|139108|141430|141432|141433|141434|151413|151694|151694|174686|182909|182910|182911|182913|182914|182917|182918|182919|182920|182921|182922|182923|182926|182927|192619|192723|192724|192888|202458|202459|202460|202462|202464|202465|202466|202467|202468|202469|202470|202472|202474|202475|202477|202478|202479|202480|202481|202482|202484|202485|202489|202491|202492|202493|202494|202495|202496|202497|202501|202502|202503|202507|213816|221805|233728|233729|233733|233734|233736|233737|233738|233739|233741|233742|240471|240472|240473|240474|240475|240476|240477|240478|240479|240480|240481|240482|240483|240484|240485|240486|240487|240488|240489|240490|240491|240492|240493|240494|240495|240496|240497|240498|240499|240500|240501|240502|240503|240504|240505|240506|240507|240508|240509|240510|253368|253370|253371|264413|264419|271777|271778|307194|307204|307205|307210|307221|307245|307248|307254|307255|307260|307264|307266|307272|307280|307286|311378|311379|311382|311394|311418|311428|311440|311454|311460|311465|311480|311481|311482|311487|311488|311497|311498|311504|311505|311506|311508|311510|311511|316958|316960|316965|316985|316990|316997|317004|317012|317017|317024|317025|317027|317031|317033|317034|317057|317063|317065|317352|317360|317366|317371|317383|317403|317406|317425|317426|317427|317437|317438|317442|317443|317444|317449|317457|317459|317464|317467|317475|317476|317480|317490|317503|317506|317507|317519|362068|364161|369961|370469|370470|370471|370499|370743|370747|370752|370755|370767|370781|370785|370787|372368|372370|372372|372400|372403|372406|372409|372410|372413|372418|372420|384435|396500|396503|396505|396506|396507|396511|396515|396516|396521|396525|396535|396536|396540|396547|396556|396562|396566|396568|396574|396579|396580|396582|396589|396591|396594|396595|396602|396603|396612|396613|396617|396618|396620|396623|396633|396634|396742|396745|396746|396749|396751|396752|396761|396766|396769|396775|396776|396779|396781|396784|396792|396796|396802|396807|396814|396816|396821|396825|396828|396833|396840|396841|396875|396883|396884|396886|396889|396890|396892|396894|396902|396903|396907|396910|396911|396918|396925|396926|396931|396932|396934|396935|396937|396938|396939|396945|396947|396954|397126|397130|397132|397134|397139|397141|397144|397150|397161|397171|397173|397174|397181|397181|397183|397191|397198|397200|397202|397209|397211|397224|397226|397227|397236|397239|397245|397252|397257|397260|397263|404632|404633|407568|407579|413801|419684|438424|441321|444388|444389|444390|444391|458586|458596|458606|458613|458621|458626|458631|458635|458639|458657|458659|458674|458679|458681|458683|458689|458699|458701|458704|458709|458711|458715|458717|458723|458725|458727|458732|458735|458738|458746|458751|458753|458755|458759|458761|458764|458989|458996|458999|459001|459002|459004|459006|459008|459009|459010|459013|459014|459016|459017|459019|459020|459022|459023|459024|459026|459028|459030|459035|459036|459038|459040|459042|459043|459044|459047|459050|459051|459059|459063|459064|459066|459068|459070|459072|459074|459075|459077|459079|459080|459084|459093|459095|459096|459099|459106|459107|459108|459110|459111|459113|459114|459118|459119|459122|459124|459125|459126|459127|459129|459130|459132|459134|459136|459140|459143|459145|459146|459149|459150|459157|459160|459161|459167|459169|459174|459179|459183|459462|459468|459472|459475|459476|459478|459484|459490|459492|459495|459496|459499|459504|459505|459509|459513|459515|459521|459524|459527|459529|459530|459532|459545|459546|459548|459550|459557|459561|459562|459573|459577|459580|459582|459584|459591|459592|459595|459597|459601|459606|459609|459612|474848|474854|474870|474882|474886|474886|474887|475026|475029|475031|475034|475041|475048|475052|475055|475058|475060|475064|475075|475080|475085|487409|502624|502748|503055|523826|524105|524126|524129|524131|524147|524148|524151|524153|524156|524158|524163|524165|524173|524175|524178|524181|524193|524200|524202|524204|524205|524210|524212|524216|524222|524224|524225|524227|524229|524232|524234|524238|524387|524407|524410|524415|524417|524419|524420|524422|524426|524431|524437|524441|524442|524449|524454|524457|524458|524468|524471|524477|524478|524482|524486|524488|524498|524502|524634|524635|524640|524648|524652|524654|524655|524658|524663|524668|524670|524672|524675|524678|524683|524685|524690|524694|524695|524697|524699|524700|524707|524709|524712|524713|524719|524730|524731|524734|524741|524749|524769|524771|524776|524777|524779|524789|524792|524796|524804|524805|524810|524813|524814|524820|524825|524828|524837|524840|524845|524856|524860|524862|524868|524878|537839|537840|537841|537842|537843|538324|562588|562593|562875|562880|562889|562896|562897|562899|562902|562903|562911|562912|562913|562915|562916|562918|562922|562924|562926|562928|562930|562935|562937|562940|562945|563231|563606|563607|563611|563612|563619|563625|563630|563631|563637|563643|563647|563651|563656|563658|563664|563670|563672|563674|563676|563678|563680|563684|563686|563687|563693|563696|565625|565629|565632|565647|565648|565652|565657|565659|565660|565662|565663|565665|565667|565669|565679|565684|565689|565691|565692|565698|565699|565704|565705|568322|568617|568624|568630|568631|568634|568657|568660|568666|568679|568680|568685|568697|568700|568701|568703|568708|568709|568712|568720|568726|568733|568734|568735|568745|568748|611967|614337|615921|615924|637819|637820|637821|637822|637823|637824|637825|637826|637827|637828|637829|637830|637831|637832|637833|637834|637835|637836|637837|637838|637839|637840|637841|637842|637843|637844|637845|637846|637847|637848|637849|637850|637851|637852|637853|637854|637855|637856|637857|637858|637859|637860|637861|637862|637863|637864|637865|637866|637867|637868|637869|637870|637871|637872|637873|637874|637875|637876|637877|637878|637879|637880|637881|637882|637883|637884|637885|637886|637887|637888|637889|637890|637891|637892|637893|637894|637895|637896|637897|637898|637899|637900|637901|637902|637903|637904|637905|637906|637907|637908|637909|637910|637911|637912|637913|637914|637915|637916|637917|637918|637919|637920|637921|637922|637923|637924|637925|637926|637927|637928|637929|637930|637931|637932|651875|651885|651889|651912|651914|651935|651942|651988|652027|652037|652117|652129|655910|655911|655912|684056|684057|684058|687391|687392|687394|687395|689936|689937|692623|692624|692626|692627|695425|700858|723398|723399|723400|723401|723402|736976|736977|744525|751493|751494|751496|751497|751501|759724|759885|767179|767185|767186|767191|767195|767206|767209|767210|767212|767214|767216|767219|767224|775358|775360|775399|775508|775522|783311|783315|783316|783320|783321|783322|783324|783325|783327|787777|790850|790851|790852|790853|790854|790855|796255|809311|809318|809320|809340|809345|809346|809353|809355|809358|809361|809365|809369|809381|809388|820030|820031|820082|820083|820084|820085|820086|820087|820088|820089|820090|835629|835630|835631|835632|835633|835634|835635|835636|835637|835638|835639|835640|835641|835642|835643|835644|835645|835646|835647|835648|835649|835650|835651|835652|835653|835654|835655|835656|835657|835658|835659|835660|835661|835662|835663|835664|835665|835666|835667|835668|835669|835670|835671|835672|835673|835674|835675|835676|835677|835678|835679|835680|835681|835682|835683|835684|835685|835686|835687|835688|835689|835690|835691|835692|835693|835694|835695|835696|835697|835698|835699|835700|835701|835702|835703|835704|835705|835706|835707|835708|835709|835710|835711|835712|835713|835714|835715|835716|835717|835718|835719|835720|835721|835722|835723|835724|835725|835726|835727|835728|835729|835730|835731|835732|851227|851229|851236|851240|851724|851726|852164|852166|852494|852498|858405|901273|901274|901275|901276|901277|901278|901279|901280|901281|901282|901283|901284|901285|901286|901287|901288|901289|901290|901291|901292|901293|901294|901295|901296|901297|901298|901299|901300|901301|901302|901303|901304|901305|901306|901307|901308|901309|901310|901311|901312|901313|901314|901315|901316|901317|901318|901319|901320|903331|918535|920470|920471|920472|920473|920474|920475|920476|920477|920478|925424|925425|925426|925427|925428|925429|925430|925431|925432|925433|925434|925435|925436|925437|925438|925439|925440|925441|925442|925443|925444|925445|925446|925447|925448|925449|925450|925451|925452|925453|925454|925455|925456|925457|925458|925459|925460|925461|925462|934593|934594|934595|934596|934597|934598|934599|934600|934601|934602|934603|934604|934605|934606|934607|934608|934609|934610|934611|934612|934613|934614|934615|934616|934617|934618|934619|934620|934621|934622|934623|934624|934625|934626|934627|940132|940133|940134|940135|940136|940137|940138|940928|940929|946418|946419|946420|946421|946422|946423|946424|946425|946426|946427|946428|946429|946430|946431|946432|946433|946434|946435|946436|946437|946438|946439|946440|946441|946442|946443|946444|946445|946446|946447|946448|946449|946450|946451|946452|946453|946454|946455|946456|946457|946458|946459|946460|946461|946462|946463|946464|946465|946466|946467|946468|946469|955722|955723|955724|955725|955726|955727|955728|955729|955730|955731|955732|955733|955734|955735|955736|955737|955738|960674|962723|962863|964318|965265|966664|966666|967187|983566", + "upstreamId": "20136|20137|20138|20139|20142|20143|20144|50125|50126|50127|50129|50130|50131|50132|50133|50133|50134|50135|50136|50137|50138|50139|57889|57891|57893|57898|57899|57913|57914|57915|57917|57918|57927|57930|57932|57941|57944|57945|57953|57954|57958|57958|57959|57962|57965|57966|57967|57979|57983|58014|58019|58020|58023|58024|58029|58032|58038|58044|58047|58047|58064|58065|58067|58068|58069|58083|58087|58091|58093|58094|58103|58104|58105|58108|58114|58116|58124|58129|58131|58133|58134|58135|58138|58144|58146|58147|58149|58151|58154|58157|58158|58160|58161|58164|58168|58170|58176|58177|58178|58181|58182|58183|58184|58185|58186|58189|58191|58197|58200|58201|58202|58205|58210|58215|58216|58217|58219|58229|58233|58234|58235|58236|58238|58241|58242|58243|58245|58245|58253|58254|58255|58256|58259|58272|58281|58282|58292|58296|58297|75628|75630|75633|75635|75639|75641|75649|75660|75662|75663|75664|75666|75668|75669|75672|75674|75676|75677|75679|75681|75683|75686|75688|75691|75692|75693|75701|75708|75711|75714|75719|75721|75722|75725|75726|75739|75741|75742|75743|75744|75745|75746|75749|75751|75754|75755|75757|75761|75763|75770|75772|139101|139102|139103|139105|139107|139108|141430|141432|141433|141434|151413|151694|151694|174686|182909|182910|182911|182913|182914|182917|182918|182919|182920|182921|182922|182923|182926|182927|192619|192723|192724|192888|202458|202459|202460|202462|202464|202465|202466|202467|202468|202469|202470|202472|202474|202475|202477|202478|202479|202480|202481|202482|202484|202485|202489|202491|202492|202493|202494|202495|202496|202497|202501|202502|202503|202507|213816|221805|233728|233729|233733|233734|233736|233737|233738|233739|233741|233742|240471|240472|240473|240474|240475|240476|240477|240478|240479|240480|240481|240482|240483|240484|240485|240486|240487|240488|240489|240490|240491|240492|240493|240494|240495|240496|240497|240498|240499|240500|240501|240502|240503|240504|240505|240506|240507|240508|240509|240510|253368|253370|253371|264413|264419|271777|271778|307194|307204|307205|307210|307221|307245|307248|307254|307255|307260|307264|307266|307272|307280|307286|311378|311379|311382|311394|311418|311428|311440|311454|311460|311465|311480|311481|311482|311487|311488|311497|311498|311504|311505|311506|311508|311510|311511|316958|316960|316965|316985|316990|316997|317004|317012|317017|317024|317025|317027|317031|317033|317034|317057|317063|317065|317352|317360|317366|317371|317383|317403|317406|317425|317426|317427|317437|317438|317442|317443|317444|317449|317457|317459|317464|317467|317475|317476|317480|317490|317503|317506|317507|317519|362068|364161|369961|370469|370470|370471|370499|370743|370747|370752|370755|370767|370781|370785|370787|372368|372370|372372|372400|372403|372406|372409|372410|372413|372418|372420|384435|396500|396503|396505|396506|396507|396511|396515|396516|396521|396525|396535|396536|396540|396547|396556|396562|396566|396568|396574|396579|396580|396582|396589|396591|396594|396595|396602|396603|396612|396613|396617|396618|396620|396623|396633|396634|396742|396745|396746|396749|396751|396752|396761|396766|396769|396775|396776|396779|396781|396784|396792|396796|396802|396807|396814|396816|396821|396825|396828|396833|396840|396841|396875|396883|396884|396886|396889|396890|396892|396894|396902|396903|396907|396910|396911|396918|396925|396926|396931|396932|396934|396935|396937|396938|396939|396945|396947|396954|397126|397130|397132|397134|397139|397141|397144|397150|397161|397171|397173|397174|397181|397181|397183|397191|397198|397200|397202|397209|397211|397224|397226|397227|397236|397239|397245|397252|397257|397260|397263|404632|404633|407568|407579|413801|419684|438424|441321|444388|444389|444390|444391|458586|458596|458606|458613|458621|458626|458631|458635|458639|458657|458659|458674|458679|458681|458683|458689|458699|458701|458704|458709|458711|458715|458717|458723|458725|458727|458732|458735|458738|458746|458751|458753|458755|458759|458761|458764|458989|458996|458999|459001|459002|459004|459006|459008|459009|459010|459013|459014|459016|459017|459019|459020|459022|459023|459024|459026|459028|459030|459035|459036|459038|459040|459042|459043|459044|459047|459050|459051|459059|459063|459064|459066|459068|459070|459072|459074|459075|459077|459079|459080|459084|459093|459095|459096|459099|459106|459107|459108|459110|459111|459113|459114|459118|459119|459122|459124|459125|459126|459127|459129|459130|459132|459134|459136|459140|459143|459145|459146|459149|459150|459157|459160|459161|459167|459169|459174|459179|459183|459462|459468|459472|459475|459476|459478|459484|459490|459492|459495|459496|459499|459504|459505|459509|459513|459515|459521|459524|459527|459529|459530|459532|459545|459546|459548|459550|459557|459561|459562|459573|459577|459580|459582|459584|459591|459592|459595|459597|459601|459606|459609|459612|474848|474854|474870|474882|474886|474886|474887|475026|475029|475031|475034|475041|475048|475052|475055|475058|475060|475064|475075|475080|475085|487409|502624|502748|503055|523826|524105|524126|524129|524131|524147|524148|524151|524153|524156|524158|524163|524165|524173|524175|524178|524181|524193|524200|524202|524204|524205|524210|524212|524216|524222|524224|524225|524227|524229|524232|524234|524238|524387|524407|524410|524415|524417|524419|524420|524422|524426|524431|524437|524441|524442|524449|524454|524457|524458|524468|524471|524477|524478|524482|524486|524488|524498|524502|524634|524635|524640|524648|524652|524654|524655|524658|524663|524668|524670|524672|524675|524678|524683|524685|524690|524694|524695|524697|524699|524700|524707|524709|524712|524713|524719|524730|524731|524734|524741|524749|524769|524771|524776|524777|524779|524789|524792|524796|524804|524805|524810|524813|524814|524820|524825|524828|524837|524840|524845|524856|524860|524862|524868|524878|537839|537840|537841|537842|537843|538324|562588|562593|562875|562880|562889|562896|562897|562899|562902|562903|562911|562912|562913|562915|562916|562918|562922|562924|562926|562928|562930|562935|562937|562940|562945|563231|563606|563607|563611|563612|563619|563625|563630|563631|563637|563643|563647|563651|563656|563658|563664|563670|563672|563674|563676|563678|563680|563684|563686|563687|563693|563696|565625|565629|565632|565647|565648|565652|565657|565659|565660|565662|565663|565665|565667|565669|565679|565684|565689|565691|565692|565698|565699|565704|565705|568322|568617|568624|568630|568631|568634|568657|568660|568666|568679|568680|568685|568697|568700|568701|568703|568708|568709|568712|568720|568726|568733|568734|568735|568745|568748|611967|614337|615921|615924|637819|637820|637821|637822|637823|637824|637825|637826|637827|637828|637829|637830|637831|637832|637833|637834|637835|637836|637837|637838|637839|637840|637841|637842|637843|637844|637845|637846|637847|637848|637849|637850|637851|637852|637853|637854|637855|637856|637857|637858|637859|637860|637861|637862|637863|637864|637865|637866|637867|637868|637869|637870|637871|637872|637873|637874|637875|637876|637877|637878|637879|637880|637881|637882|637883|637884|637885|637886|637887|637888|637889|637890|637891|637892|637893|637894|637895|637896|637897|637898|637899|637900|637901|637902|637903|637904|637905|637906|637907|637908|637909|637910|637911|637912|637913|637914|637915|637916|637917|637918|637919|637920|637921|637922|637923|637924|637925|637926|637927|637928|637929|637930|637931|637932|651875|651885|651889|651912|651914|651935|651942|651988|652027|652037|652117|652129|655910|655911|655912|684056|684057|684058|687391|687392|687394|687395|689936|689937|692623|692624|692626|692627|695425|700858|723398|723399|723400|723401|723402|736976|736977|744525|751493|751494|751496|751497|751501|759724|759885|767179|767185|767186|767191|767195|767206|767209|767210|767212|767214|767216|767219|767224|775358|775360|775399|775508|775522|783311|783315|783316|783320|783321|783322|783324|783325|783327|787777|790850|790851|790852|790853|790854|790855|796255|809311|809318|809320|809340|809345|809346|809353|809355|809358|809361|809365|809369|809381|809388|820030|820031|820082|820083|820084|820085|820086|820087|820088|820089|820090|835629|835630|835631|835632|835633|835634|835635|835636|835637|835638|835639|835640|835641|835642|835643|835644|835645|835646|835647|835648|835649|835650|835651|835652|835653|835654|835655|835656|835657|835658|835659|835660|835661|835662|835663|835664|835665|835666|835667|835668|835669|835670|835671|835672|835673|835674|835675|835676|835677|835678|835679|835680|835681|835682|835683|835684|835685|835686|835687|835688|835689|835690|835691|835692|835693|835694|835695|835696|835697|835698|835699|835700|835701|835702|835703|835704|835705|835706|835707|835708|835709|835710|835711|835712|835713|835714|835715|835716|835717|835718|835719|835720|835721|835722|835723|835724|835725|835726|835727|835728|835729|835730|835731|835732|851227|851229|851236|851240|851724|851726|852164|852166|852494|852498|858405|901273|901274|901275|901276|901277|901278|901279|901280|901281|901282|901283|901284|901285|901286|901287|901288|901289|901290|901291|901292|901293|901294|901295|901296|901297|901298|901299|901300|901301|901302|901303|901304|901305|901306|901307|901308|901309|901310|901311|901312|901313|901314|901315|901316|901317|901318|901319|901320|903331|918535|920470|920471|920472|920473|920474|920475|920476|920477|920478|925424|925425|925426|925427|925428|925429|925430|925431|925432|925433|925434|925435|925436|925437|925438|925439|925440|925441|925442|925443|925444|925445|925446|925447|925448|925449|925450|925451|925452|925453|925454|925455|925456|925457|925458|925459|925460|925461|925462|934593|934594|934595|934596|934597|934598|934599|934600|934601|934602|934603|934604|934605|934606|934607|934608|934609|934610|934611|934612|934613|934614|934615|934616|934617|934618|934619|934620|934621|934622|934623|934624|934625|934626|934627|940132|940133|940134|940135|940136|940137|940138|940928|940929|946418|946419|946420|946421|946422|946423|946424|946425|946426|946427|946428|946429|946430|946431|946432|946433|946434|946435|946436|946437|946438|946439|946440|946441|946442|946443|946444|946445|946446|946447|946448|946449|946450|946451|946452|946453|946454|946455|946456|946457|946458|946459|946460|946461|946462|946463|946464|946465|946466|946467|946468|946469|955722|955723|955724|955725|955726|955727|955728|955729|955730|955731|955732|955733|955734|955735|955736|955737|955738|960674|962723|962863|964318|965265|966664|966666|967187|983566", "text": "Tuberous sclerosis 1" }, { - "baseId": "20136|20137|20138|20139|20142|20143|20144|27431|27432|27433|27434|27435|27436|27437|27438|27439|27440|27441|27441|27442|27443|27444|27445|27446|50125|50126|50127|50128|50129|50130|50131|50134|50135|50136|50139|50139|50163|50164|50165|50166|50168|50169|50170|50171|50172|50173|50174|50175|50176|50177|50179|50180|50184|50185|50187|50187|57888|57889|57890|57891|57892|57893|57894|57895|57896|57898|57899|57900|57901|57902|57903|57904|57905|57906|57907|57908|57909|57910|57911|57912|57913|57914|57915|57916|57917|57918|57919|57920|57921|57922|57924|57925|57926|57927|57928|57929|57930|57931|57932|57934|57935|57936|57937|57938|57939|57940|57941|57942|57943|57944|57945|57946|57947|57948|57949|57950|57951|57952|57953|57954|57955|57956|57957|57958|57959|57961|57962|57963|57964|57965|57966|57967|57968|57969|57970|57971|57972|57973|57974|57975|57976|57977|57978|57979|57980|57981|57982|57983|57984|57986|57987|57988|57989|57990|57991|57992|57993|57994|57995|57996|57997|57998|57999|58000|58001|58002|58003|58004|58005|58006|58007|58008|58009|58010|58011|58012|58014|58015|58016|58017|58019|58020|58021|58022|58023|58024|58025|58026|58028|58029|58030|58031|58032|58033|58034|58035|58036|58037|58038|58040|58041|58042|58043|58044|58045|58046|58047|58048|58049|58050|58051|58052|58053|58054|58055|58056|58058|58059|58060|58061|58062|58063|58064|58065|58066|58067|58068|58069|58071|58072|58073|58074|58075|58076|58077|58078|58079|58080|58081|58082|58083|58084|58085|58086|58087|58088|58089|58090|58091|58092|58093|58094|58095|58096|58097|58098|58099|58100|58101|58102|58103|58104|58105|58106|58107|58108|58109|58110|58111|58112|58113|58114|58115|58116|58117|58119|58120|58121|58122|58123|58124|58125|58126|58127|58128|58129|58130|58131|58133|58134|58135|58136|58137|58138|58139|58140|58141|58142|58144|58145|58146|58147|58148|58149|58150|58151|58153|58154|58155|58156|58157|58158|58159|58160|58161|58162|58163|58164|58165|58166|58167|58168|58168|58169|58170|58171|58172|58174|58175|58176|58177|58178|58179|58180|58181|58182|58183|58184|58185|58186|58187|58188|58189|58190|58191|58192|58193|58194|58195|58196|58197|58198|58200|58201|58202|58203|58204|58205|58208|58209|58210|58211|58212|58214|58215|58216|58217|58218|58219|58220|58222|58223|58224|58225|58226|58227|58228|58229|58230|58231|58232|58233|58234|58235|58236|58237|58239|58240|58241|58243|58244|58245|58246|58247|58248|58249|58250|58251|58252|58253|58254|58255|58256|58257|58259|58261|58262|58263|58264|58265|58266|58267|58268|58269|58270|58271|58272|58274|58275|58276|58277|58278|58279|58280|58280|58281|58282|58283|58284|58285|58286|58287|58288|58289|58290|58291|58292|58293|58294|58295|58296|58297|58298|58299|58300|58301|58302|58303|58304|58306|58307|58308|58309|58310|58311|58312|58313|58314|58315|58316|58317|58318|58319|58320|58321|58322|58323|58324|58324|58325|58326|58327|58328|58329|58330|58331|58332|58333|58334|58335|58336|58337|58338|58339|58340|58341|58342|58343|58344|58345|58346|58347|58348|58349|58350|58351|58352|58353|58354|58355|58356|58357|58358|58359|58360|58361|58362|58363|58364|58365|58366|58367|58368|58369|58370|58371|58372|58373|58374|58374|58375|58376|58377|58378|58379|58380|58381|58382|58383|58384|58385|58386|58387|58388|58389|58390|58391|58392|58393|58394|58395|58396|58397|58398|58399|58400|58401|58402|58403|58404|58405|58406|58407|58408|58409|58410|58411|58412|58413|58414|58415|58416|58417|58418|58419|58420|58421|58422|58423|58424|58425|58426|58427|58428|58429|58430|58431|58432|58433|58434|58435|58436|58437|58438|58439|58440|58441|58442|58443|58444|58445|58446|58447|58448|58449|58450|58451|58452|58453|58454|58455|58456|58457|58458|58459|58460|58461|58462|58463|58464|58466|58467|58468|58469|58470|58471|58472|58473|58474|58475|58476|58477|58478|58479|58480|58481|58482|58483|58484|58485|58486|58487|58488|58489|58490|58491|58492|58493|58494|58495|58496|58497|58498|58499|58500|58501|58502|58503|58504|58505|58506|58507|58508|58509|58510|58511|58512|58513|58514|58515|58516|58517|58518|58519|58521|58522|58523|58524|58525|58526|58527|58528|58529|58531|58532|58533|58534|58535|58536|58537|58538|58539|58540|58541|58542|58543|58544|58545|58546|58547|58548|58549|58550|58551|58552|58553|58554|58555|58556|58557|58558|58559|58560|58561|58562|58563|58564|58565|58566|58567|58569|58570|58571|58572|58573|58574|58575|58576|58577|58578|58579|58580|58581|58582|58583|58584|58585|58586|58587|58588|58589|58590|58591|58592|58593|58594|58595|58596|58597|58598|58599|58600|58601|58602|58603|58604|58605|58606|58607|58608|58609|58610|58611|58612|58613|58615|58616|58617|58618|58619|58620|58621|58622|58623|58624|58625|58626|58627|58628|58629|58630|58631|58632|58633|58635|58636|58637|58638|58639|58640|58641|58642|58643|58644|58645|58646|58647|58648|58649|58650|58651|58652|58653|58654|58655|58656|58657|58658|58659|58660|58661|58662|58663|58664|58665|58666|58667|58668|58669|58670|58671|58672|58673|58674|58675|58676|58677|58678|58679|58680|58681|58682|58683|58684|58685|58686|58687|58688|58689|58690|58691|58692|58693|58694|58695|58696|58697|58698|58699|58700|58701|58702|58703|58704|58705|58706|58707|58708|58709|58710|58711|58712|58713|58714|58715|58716|58717|58718|58719|58720|58721|58722|58723|58724|58725|58726|58727|58728|58729|58730|58731|58732|58733|58734|58735|58736|58737|58738|58739|58740|58741|58742|58743|58744|58745|58746|58747|58748|58749|58750|58751|58752|58754|58755|58756|58757|58758|58759|58760|58761|58762|58763|58764|58765|58766|58767|58768|58769|58770|58771|58772|58773|58774|58775|58776|58777|58778|58779|58780|58781|58782|58783|58785|58786|58787|58788|58789|58790|58791|58792|58793|58794|58795|58796|58797|58798|58799|58800|58801|58802|58803|58804|58805|58806|58807|58808|58809|58810|58811|58812|58813|58815|58816|58817|58818|58819|58820|58821|58822|58823|58824|58826|58827|58828|58829|58830|58831|58832|58833|58834|58835|58836|58837|58838|58839|58840|58841|58842|58843|58843|58844|58845|58846|58847|58848|58849|58850|58851|58852|58853|58854|58855|58856|58857|58858|58859|58860|58861|58862|58863|58864|58865|58866|58867|58868|58869|58870|58871|58872|58873|58875|58876|58877|58878|58879|58880|58881|58882|58883|58884|58885|58886|58887|58888|58889|58890|58891|58892|58893|58894|58895|58896|58897|58898|58899|58899|58900|58901|58902|58903|58904|58905|58906|58907|58908|58909|58910|58911|58912|58913|58914|58915|58916|58917|58918|58920|58921|58922|58923|58924|58925|58926|58927|58928|58929|58930|58931|58932|58933|58934|58935|58936|58937|58938|58939|58940|58941|58942|58943|58944|58945|58946|58947|58948|58949|58950|58951|58952|58953|58954|58955|58956|58957|58958|58959|58960|58961|58962|58963|58964|58965|58966|58967|58968|58969|58970|58971|58972|58973|58974|58975|58977|58978|58979|58980|58980|58981|58982|58983|58984|58985|58986|58987|58988|58989|58990|58991|58992|58993|58994|58995|58996|58997|58998|58999|59000|59001|59002|59003|59004|59005|59006|59007|59008|59009|59010|59011|59012|59013|59014|59015|59016|59017|59018|59019|59020|59021|59022|59023|59024|59025|59026|59027|59028|59029|59030|59031|59032|59033|59034|59035|59036|59037|59038|59039|59040|59041|59042|59043|59044|59045|59046|59047|59048|59049|59051|59052|59053|59054|59055|59056|59057|59057|59058|59059|59060|59061|59062|59063|59064|59065|59066|59067|59068|59069|59070|59071|59072|59073|59074|59075|59076|59077|59077|59078|59079|59080|59081|59082|59083|59084|59085|59086|59087|59088|59089|59090|59091|59092|59093|59094|59095|59096|59097|59098|59099|59100|59101|59102|59103|59104|59105|59106|59107|59108|59109|59110|59111|59112|59114|59115|59116|59117|59118|59119|59119|59120|59121|59122|59123|59124|59125|59126|59127|59128|59129|59130|59131|59132|59134|59136|59137|59138|59139|59140|59141|59142|59143|59144|59145|59146|59148|59149|59151|59152|59153|59154|59155|59156|59157|59158|59159|59160|59161|59162|59163|59164|59165|59166|59167|59168|59169|59170|59171|59172|59173|59174|59175|59176|59177|59178|59179|59180|59181|59182|59185|59188|59189|59190|59191|59192|59193|59194|59195|59196|59197|59198|59199|59200|59201|59202|59203|59204|59205|59206|59207|59208|59209|59210|59211|59212|59213|59214|59215|59216|59217|59218|59219|59220|59221|59222|59223|59224|59225|59226|59227|59228|59229|59230|59231|59232|59233|59234|59235|59236|59237|59238|59239|59240|59241|59242|59243|59245|59246|59247|59248|59249|59249|59250|59251|59252|59253|59254|59255|59256|59257|59258|59259|59260|59261|59262|59263|59264|59265|59266|59267|59268|59269|59270|59271|59272|59273|59274|59275|59276|59277|59278|59279|59280|59281|59282|59283|59284|59286|59287|59288|59289|59290|59291|59292|59293|59294|59295|59296|59297|59298|59299|59300|59301|59301|59302|59303|59304|59305|59306|59307|59308|59309|59310|59311|59312|59313|59314|59315|59316|59317|59318|59319|59320|59321|59322|59323|59324|59325|59326|59327|59328|59329|59330|59331|59332|59333|59334|59334|59335|59336|59337|59338|59339|59340|59341|59342|59343|59344|59345|59346|59347|59348|59349|59350|59351|59352|59353|59354|59355|59356|59357|59358|59359|59360|75626|75627|75628|75629|75630|75631|75632|75633|75634|75635|75636|75637|75638|75639|75640|75641|75642|75643|75645|75646|75647|75648|75649|75650|75651|75652|75653|75654|75655|75656|75657|75658|75659|75660|75661|75662|75663|75664|75665|75666|75667|75668|75669|75670|75671|75672|75673|75674|75675|75676|75677|75678|75679|75680|75681|75682|75683|75684|75685|75686|75687|75688|75689|75690|75691|75692|75693|75694|75695|75696|75697|75698|75699|75700|75701|75702|75703|75704|75705|75706|75708|75709|75710|75711|75712|75713|75714|75715|75716|75717|75718|75719|75720|75721|75722|75723|75724|75725|75726|75727|75728|75729|75730|75731|75732|75733|75734|75735|75736|75737|75738|75739|75740|75741|75742|75743|75744|75745|75746|75747|75748|75749|75750|75751|75752|75753|75754|75755|75756|75757|75758|75759|75760|75761|75762|75763|75764|75765|75766|75767|75768|75769|75770|75771|75772|75773|75774|75775|75776|75777|75778|75779|75780|75781|75782|75783|75784|75785|75786|75787|75788|75789|75790|75791|75792|75793|75794|75795|75796|75797|75798|75799|75800|75802|75803|75804|75805|75806|75807|75808|75809|75813|75814|75815|75816|75817|75818|75819|75820|75821|75822|75823|75824|75825|75826|75827|75828|75829|75830|75831|75832|75833|75834|75835|75836|75837|75838|75839|75840|75841|75842|75843|75844|75845|75846|75847|75848|75849|75850|75851|75852|75853|75854|75855|75856|75857|75858|75859|75860|75861|75862|75863|75864|75865|75866|75867|75868|75869|75870|75871|75872|75873|75874|75875|75876|75877|75878|75879|75880|75881|75882|75883|75884|75885|75886|75887|75888|75889|75890|75891|75892|75893|75894|75895|75896|75897|75898|75899|75900|75901|75902|75903|75904|75905|75906|75907|75908|75909|75910|75911|75912|75913|75914|75915|75916|75917|75918|75919|75920|75921|75922|75923|75924|75925|75926|75927|75928|75929|75930|75931|75932|75933|75934|75935|75936|75937|75938|75939|75940|75941|75942|75943|75944|75945|75946|75947|75948|75949|75950|75951|75952|75953|75954|75955|75956|75957|75958|75959|75960|75961|75962|75963|75964|75965|75966|75967|75968|75969|75970|75971|75972|75973|75974|75975|75976|75977|75978|75979|75980|75981|75982|75983|75984|75985|75987|75988|75989|75990|75991|75992|75993|75994|75995|75996|75997|75998|75999|76000|76001|76002|76003|76005|76006|76007|76008|76009|76010|76011|76012|76013|76014|76015|76016|76017|76018|76019|76020|76021|76022|76023|76024|76025|76026|76027|76028|76029|76030|76031|76032|76033|76034|76035|76036|76037|76038|76039|76040|76041|76042|76043|76044|76045|76046|76047|76048|76050|76051|76052|76053|76054|76055|76056|76057|76058|76059|76060|76061|76062|76063|76064|76065|76067|76068|76069|76070|76071|76072|76073|76074|76075|76076|76078|76079|76080|76081|76082|76083|76084|76085|76086|76087|76088|76089|76090|76091|76092|76093|76094|76095|76096|76097|76098|76099|76100|76101|76102|76104|76105|76106|76107|76108|76109|76110|76111|76112|76113|76116|76117|76118|76119|76120|76121|76122|76123|76124|76125|76126|76127|76128|76129|76130|76131|76132|76134|76135|76136|76137|76138|76139|76140|76141|76142|76143|76145|76146|76147|76149|76150|76151|76152|76153|76154|76155|76157|76158|76159|76160|76161|76162|76163|76164|76165|76166|76167|76168|76169|76170|76171|76172|76173|76174|76175|76176|76177|76178|76179|76180|76181|76182|76183|76184|76185|76186|76187|76188|76189|76190|76191|76192|76193|76194|76196|76197|76198|76199|76200|76201|76202|76203|76204|76205|76207|76208|76209|76210|76211|76212|76213|76214|76215|76216|76217|76218|76219|76220|76221|76222|76223|76224|76225|76226|76227|76228|76229|76230|76231|76232|76233|76234|76235|76236|76237|76238|76239|76240|76241|76242|76243|76244|76245|76246|76247|76248|76249|76250|76251|76252|76253|76254|76255|76258|76259|76260|76261|76262|76263|76264|76265|76266|76267|76268|76269|76270|76271|76272|76273|76274|76275|76276|76277|76278|76279|76282|76283|76284|76285|76286|76287|76288|76289|76290|76291|76292|76293|76294|76295|76296|76297|76298|76299|76300|76301|76302|76303|76304|76305|76306|76307|76308|76309|76310|76311|76312|76314|76315|76316|76317|136089|139110|139124|141437|141439|141443|141445|141448|171186|171187|184113|184115|184120|184122|184127|184140|184150|203086|203105|203109|203129|203132|203135|203138|203140|203141|203147|203207|203216|213816|222450|222451|227853|235111|235117|235131|235132|240489|242207|242214|242217|242233|242253|242254|242258|242259|242268|242278|242289|242292|242303|242325|255499|255504|265615|307195|307212|307222|307230|307235|307244|307252|307259|307267|307268|307281|311362|311377|311380|311385|311390|311391|311392|311396|311439|311453|311459|311464|311473|311476|311477|311496|311509|311510|311511|311515|316930|316941|316956|316966|316989|316998|317003|317005|317014|317018|317023|317032|317055|317056|317355|317373|317374|317381|317384|317405|317419|317434|317436|317468|317477|317505|317509|317512|317528|324601|324604|324612|324618|324619|324621|324627|324628|324633|324634|324639|334156|334158|334162|334167|334173|334175|340847|340849|340850|340851|340852|340853|340855|340856|340858|340859|340862|340863|340865|340867|342251|342258|342264|342266|342269|342270|342271|342274|342276|342277|342282|353851|353852|374716|374840|374841|374860|377309|400727|400952|401664|401667|407570|415478|434510|438664|465151|465275|465322|465713|465815|465973|466015|466207|477283|477330|478005|505455|529783|530083|553323|570112|644174|644227|654532|654533|688537|726488|797273|843467|874842|874843|874844|874845|874846|874847|874848|874849|874850|876634|876635|876636|876637", + "upstreamId": "20136|20137|20138|20139|20142|20143|20144|27431|27432|27433|27434|27435|27436|27437|27438|27439|27440|27441|27441|27442|27443|27444|27445|27446|50125|50126|50127|50128|50129|50130|50131|50134|50135|50136|50139|50139|50163|50164|50165|50166|50168|50169|50170|50171|50172|50173|50174|50175|50176|50177|50179|50180|50184|50185|50187|50187|57888|57889|57890|57891|57892|57893|57894|57895|57896|57898|57899|57900|57901|57902|57903|57904|57905|57906|57907|57908|57909|57910|57911|57912|57913|57914|57915|57916|57917|57918|57919|57920|57921|57922|57924|57925|57926|57927|57928|57929|57930|57931|57932|57934|57935|57936|57937|57938|57939|57940|57941|57942|57943|57944|57945|57946|57947|57948|57949|57950|57951|57952|57953|57954|57955|57956|57957|57958|57959|57961|57962|57963|57964|57965|57966|57967|57968|57969|57970|57971|57972|57973|57974|57975|57976|57977|57978|57979|57980|57981|57982|57983|57984|57986|57987|57988|57989|57990|57991|57992|57993|57994|57995|57996|57997|57998|57999|58000|58001|58002|58003|58004|58005|58006|58007|58008|58009|58010|58011|58012|58014|58015|58016|58017|58019|58020|58021|58022|58023|58024|58025|58026|58028|58029|58030|58031|58032|58033|58034|58035|58036|58037|58038|58040|58041|58042|58043|58044|58045|58046|58047|58048|58049|58050|58051|58052|58053|58054|58055|58056|58058|58059|58060|58061|58062|58063|58064|58065|58066|58067|58068|58069|58071|58072|58073|58074|58075|58076|58077|58078|58079|58080|58081|58082|58083|58084|58085|58086|58087|58088|58089|58090|58091|58092|58093|58094|58095|58096|58097|58098|58099|58100|58101|58102|58103|58104|58105|58106|58107|58108|58109|58110|58111|58112|58113|58114|58115|58116|58117|58119|58120|58121|58122|58123|58124|58125|58126|58127|58128|58129|58130|58131|58133|58134|58135|58136|58137|58138|58139|58140|58141|58142|58144|58145|58146|58147|58148|58149|58150|58151|58153|58154|58155|58156|58157|58158|58159|58160|58161|58162|58163|58164|58165|58166|58167|58168|58168|58169|58170|58171|58172|58174|58175|58176|58177|58178|58179|58180|58181|58182|58183|58184|58185|58186|58187|58188|58189|58190|58191|58192|58193|58194|58195|58196|58197|58198|58200|58201|58202|58203|58204|58205|58208|58209|58210|58211|58212|58214|58215|58216|58217|58218|58219|58220|58222|58223|58224|58225|58226|58227|58228|58229|58230|58231|58232|58233|58234|58235|58236|58237|58239|58240|58241|58243|58244|58245|58246|58247|58248|58249|58250|58251|58252|58253|58254|58255|58256|58257|58259|58261|58262|58263|58264|58265|58266|58267|58268|58269|58270|58271|58272|58274|58275|58276|58277|58278|58279|58280|58280|58281|58282|58283|58284|58285|58286|58287|58288|58289|58290|58291|58292|58293|58294|58295|58296|58297|58298|58299|58300|58301|58302|58303|58304|58306|58307|58308|58309|58310|58311|58312|58313|58314|58315|58316|58317|58318|58319|58320|58321|58322|58323|58324|58324|58325|58326|58327|58328|58329|58330|58331|58332|58333|58334|58335|58336|58337|58338|58339|58340|58341|58342|58343|58344|58345|58346|58347|58348|58349|58350|58351|58352|58353|58354|58355|58356|58357|58358|58359|58360|58361|58362|58363|58364|58365|58366|58367|58368|58369|58370|58371|58372|58373|58374|58374|58375|58376|58377|58378|58379|58380|58381|58382|58383|58384|58385|58386|58387|58388|58389|58390|58391|58392|58393|58394|58395|58396|58397|58398|58399|58400|58401|58402|58403|58404|58405|58406|58407|58408|58409|58410|58411|58412|58413|58414|58415|58416|58417|58418|58419|58420|58421|58422|58423|58424|58425|58426|58427|58428|58429|58430|58431|58432|58433|58434|58435|58436|58437|58438|58439|58440|58441|58442|58443|58444|58445|58446|58447|58448|58449|58450|58451|58452|58453|58454|58455|58456|58457|58458|58459|58460|58461|58462|58463|58464|58466|58467|58468|58469|58470|58471|58472|58473|58474|58475|58476|58477|58478|58479|58480|58481|58482|58483|58484|58485|58486|58487|58488|58489|58490|58491|58492|58493|58494|58495|58496|58497|58498|58499|58500|58501|58502|58503|58504|58505|58506|58507|58508|58509|58510|58511|58512|58513|58514|58515|58516|58517|58518|58519|58521|58522|58523|58524|58525|58526|58527|58528|58529|58531|58532|58533|58534|58535|58536|58537|58538|58539|58540|58541|58542|58543|58544|58545|58546|58547|58548|58549|58550|58551|58552|58553|58554|58555|58556|58557|58558|58559|58560|58561|58562|58563|58564|58565|58566|58567|58569|58570|58571|58572|58573|58574|58575|58576|58577|58578|58579|58580|58581|58582|58583|58584|58585|58586|58587|58588|58589|58590|58591|58592|58593|58594|58595|58596|58597|58598|58599|58600|58601|58602|58603|58604|58605|58606|58607|58608|58609|58610|58611|58612|58613|58615|58616|58617|58618|58619|58620|58621|58622|58623|58624|58625|58626|58627|58628|58629|58630|58631|58632|58633|58635|58636|58637|58638|58639|58640|58641|58642|58643|58644|58645|58646|58647|58648|58649|58650|58651|58652|58653|58654|58655|58656|58657|58658|58659|58660|58661|58662|58663|58664|58665|58666|58667|58668|58669|58670|58671|58672|58673|58674|58675|58676|58677|58678|58679|58680|58681|58682|58683|58684|58685|58686|58687|58688|58689|58690|58691|58692|58693|58694|58695|58696|58697|58698|58699|58700|58701|58702|58703|58704|58705|58706|58707|58708|58709|58710|58711|58712|58713|58714|58715|58716|58717|58718|58719|58720|58721|58722|58723|58724|58725|58726|58727|58728|58729|58730|58731|58732|58733|58734|58735|58736|58737|58738|58739|58740|58741|58742|58743|58744|58745|58746|58747|58748|58749|58750|58751|58752|58754|58755|58756|58757|58758|58759|58760|58761|58762|58763|58764|58765|58766|58767|58768|58769|58770|58771|58772|58773|58774|58775|58776|58777|58778|58779|58780|58781|58782|58783|58785|58786|58787|58788|58789|58790|58791|58792|58793|58794|58795|58796|58797|58798|58799|58800|58801|58802|58803|58804|58805|58806|58807|58808|58809|58810|58811|58812|58813|58815|58816|58817|58818|58819|58820|58821|58822|58823|58824|58826|58827|58828|58829|58830|58831|58832|58833|58834|58835|58836|58837|58838|58839|58840|58841|58842|58843|58843|58844|58845|58846|58847|58848|58849|58850|58851|58852|58853|58854|58855|58856|58857|58858|58859|58860|58861|58862|58863|58864|58865|58866|58867|58868|58869|58870|58871|58872|58873|58875|58876|58877|58878|58879|58880|58881|58882|58883|58884|58885|58886|58887|58888|58889|58890|58891|58892|58893|58894|58895|58896|58897|58898|58899|58899|58900|58901|58902|58903|58904|58905|58906|58907|58908|58909|58910|58911|58912|58913|58914|58915|58916|58917|58918|58920|58921|58922|58923|58924|58925|58926|58927|58928|58929|58930|58931|58932|58933|58934|58935|58936|58937|58938|58939|58940|58941|58942|58943|58944|58945|58946|58947|58948|58949|58950|58951|58952|58953|58954|58955|58956|58957|58958|58959|58960|58961|58962|58963|58964|58965|58966|58967|58968|58969|58970|58971|58972|58973|58974|58975|58977|58978|58979|58980|58980|58981|58982|58983|58984|58985|58986|58987|58988|58989|58990|58991|58992|58993|58994|58995|58996|58997|58998|58999|59000|59001|59002|59003|59004|59005|59006|59007|59008|59009|59010|59011|59012|59013|59014|59015|59016|59017|59018|59019|59020|59021|59022|59023|59024|59025|59026|59027|59028|59029|59030|59031|59032|59033|59034|59035|59036|59037|59038|59039|59040|59041|59042|59043|59044|59045|59046|59047|59048|59049|59051|59052|59053|59054|59055|59056|59057|59057|59058|59059|59060|59061|59062|59063|59064|59065|59066|59067|59068|59069|59070|59071|59072|59073|59074|59075|59076|59077|59077|59078|59079|59080|59081|59082|59083|59084|59085|59086|59087|59088|59089|59090|59091|59092|59093|59094|59095|59096|59097|59098|59099|59100|59101|59102|59103|59104|59105|59106|59107|59108|59109|59110|59111|59112|59114|59115|59116|59117|59118|59119|59119|59120|59121|59122|59123|59124|59125|59126|59127|59128|59129|59130|59131|59132|59134|59136|59137|59138|59139|59140|59141|59142|59143|59144|59145|59146|59148|59149|59151|59152|59153|59154|59155|59156|59157|59158|59159|59160|59161|59162|59163|59164|59165|59166|59167|59168|59169|59170|59171|59172|59173|59174|59175|59176|59177|59178|59179|59180|59181|59182|59185|59188|59189|59190|59191|59192|59193|59194|59195|59196|59197|59198|59199|59200|59201|59202|59203|59204|59205|59206|59207|59208|59209|59210|59211|59212|59213|59214|59215|59216|59217|59218|59219|59220|59221|59222|59223|59224|59225|59226|59227|59228|59229|59230|59231|59232|59233|59234|59235|59236|59237|59238|59239|59240|59241|59242|59243|59245|59246|59247|59248|59249|59249|59250|59251|59252|59253|59254|59255|59256|59257|59258|59259|59260|59261|59262|59263|59264|59265|59266|59267|59268|59269|59270|59271|59272|59273|59274|59275|59276|59277|59278|59279|59280|59281|59282|59283|59284|59286|59287|59288|59289|59290|59291|59292|59293|59294|59295|59296|59297|59298|59299|59300|59301|59301|59302|59303|59304|59305|59306|59307|59308|59309|59310|59311|59312|59313|59314|59315|59316|59317|59318|59319|59320|59321|59322|59323|59324|59325|59326|59327|59328|59329|59330|59331|59332|59333|59334|59334|59335|59336|59337|59338|59339|59340|59341|59342|59343|59344|59345|59346|59347|59348|59349|59350|59351|59352|59353|59354|59355|59356|59357|59358|59359|59360|75626|75627|75628|75629|75630|75631|75632|75633|75634|75635|75636|75637|75638|75639|75640|75641|75642|75643|75645|75646|75647|75648|75649|75650|75651|75652|75653|75654|75655|75656|75657|75658|75659|75660|75661|75662|75663|75664|75665|75666|75667|75668|75669|75670|75671|75672|75673|75674|75675|75676|75677|75678|75679|75680|75681|75682|75683|75684|75685|75686|75687|75688|75689|75690|75691|75692|75693|75694|75695|75696|75697|75698|75699|75700|75701|75702|75703|75704|75705|75706|75708|75709|75710|75711|75712|75713|75714|75715|75716|75717|75718|75719|75720|75721|75722|75723|75724|75725|75726|75727|75728|75729|75730|75731|75732|75733|75734|75735|75736|75737|75738|75739|75740|75741|75742|75743|75744|75745|75746|75747|75748|75749|75750|75751|75752|75753|75754|75755|75756|75757|75758|75759|75760|75761|75762|75763|75764|75765|75766|75767|75768|75769|75770|75771|75772|75773|75774|75775|75776|75777|75778|75779|75780|75781|75782|75783|75784|75785|75786|75787|75788|75789|75790|75791|75792|75793|75794|75795|75796|75797|75798|75799|75800|75802|75803|75804|75805|75806|75807|75808|75809|75813|75814|75815|75816|75817|75818|75819|75820|75821|75822|75823|75824|75825|75826|75827|75828|75829|75830|75831|75832|75833|75834|75835|75836|75837|75838|75839|75840|75841|75842|75843|75844|75845|75846|75847|75848|75849|75850|75851|75852|75853|75854|75855|75856|75857|75858|75859|75860|75861|75862|75863|75864|75865|75866|75867|75868|75869|75870|75871|75872|75873|75874|75875|75876|75877|75878|75879|75880|75881|75882|75883|75884|75885|75886|75887|75888|75889|75890|75891|75892|75893|75894|75895|75896|75897|75898|75899|75900|75901|75902|75903|75904|75905|75906|75907|75908|75909|75910|75911|75912|75913|75914|75915|75916|75917|75918|75919|75920|75921|75922|75923|75924|75925|75926|75927|75928|75929|75930|75931|75932|75933|75934|75935|75936|75937|75938|75939|75940|75941|75942|75943|75944|75945|75946|75947|75948|75949|75950|75951|75952|75953|75954|75955|75956|75957|75958|75959|75960|75961|75962|75963|75964|75965|75966|75967|75968|75969|75970|75971|75972|75973|75974|75975|75976|75977|75978|75979|75980|75981|75982|75983|75984|75985|75987|75988|75989|75990|75991|75992|75993|75994|75995|75996|75997|75998|75999|76000|76001|76002|76003|76005|76006|76007|76008|76009|76010|76011|76012|76013|76014|76015|76016|76017|76018|76019|76020|76021|76022|76023|76024|76025|76026|76027|76028|76029|76030|76031|76032|76033|76034|76035|76036|76037|76038|76039|76040|76041|76042|76043|76044|76045|76046|76047|76048|76050|76051|76052|76053|76054|76055|76056|76057|76058|76059|76060|76061|76062|76063|76064|76065|76067|76068|76069|76070|76071|76072|76073|76074|76075|76076|76078|76079|76080|76081|76082|76083|76084|76085|76086|76087|76088|76089|76090|76091|76092|76093|76094|76095|76096|76097|76098|76099|76100|76101|76102|76104|76105|76106|76107|76108|76109|76110|76111|76112|76113|76116|76117|76118|76119|76120|76121|76122|76123|76124|76125|76126|76127|76128|76129|76130|76131|76132|76134|76135|76136|76137|76138|76139|76140|76141|76142|76143|76145|76146|76147|76149|76150|76151|76152|76153|76154|76155|76157|76158|76159|76160|76161|76162|76163|76164|76165|76166|76167|76168|76169|76170|76171|76172|76173|76174|76175|76176|76177|76178|76179|76180|76181|76182|76183|76184|76185|76186|76187|76188|76189|76190|76191|76192|76193|76194|76196|76197|76198|76199|76200|76201|76202|76203|76204|76205|76207|76208|76209|76210|76211|76212|76213|76214|76215|76216|76217|76218|76219|76220|76221|76222|76223|76224|76225|76226|76227|76228|76229|76230|76231|76232|76233|76234|76235|76236|76237|76238|76239|76240|76241|76242|76243|76244|76245|76246|76247|76248|76249|76250|76251|76252|76253|76254|76255|76258|76259|76260|76261|76262|76263|76264|76265|76266|76267|76268|76269|76270|76271|76272|76273|76274|76275|76276|76277|76278|76279|76282|76283|76284|76285|76286|76287|76288|76289|76290|76291|76292|76293|76294|76295|76296|76297|76298|76299|76300|76301|76302|76303|76304|76305|76306|76307|76308|76309|76310|76311|76312|76314|76315|76316|76317|136089|139110|139124|141437|141439|141443|141445|141448|171186|171187|184113|184115|184120|184122|184127|184140|184150|203086|203105|203109|203129|203132|203135|203138|203140|203141|203147|203207|203216|213816|222450|222451|227853|235111|235117|235131|235132|240489|242207|242214|242217|242233|242253|242254|242258|242259|242268|242278|242289|242292|242303|242325|255499|255504|265615|307195|307212|307222|307230|307235|307244|307252|307259|307267|307268|307281|311362|311377|311380|311385|311390|311391|311392|311396|311439|311453|311459|311464|311473|311476|311477|311496|311509|311510|311511|311515|316930|316941|316956|316966|316989|316998|317003|317005|317014|317018|317023|317032|317055|317056|317355|317373|317374|317381|317384|317405|317419|317434|317436|317468|317477|317505|317509|317512|317528|324601|324604|324612|324618|324619|324621|324627|324628|324633|324634|324639|334156|334158|334162|334167|334173|334175|340847|340849|340850|340851|340852|340853|340855|340856|340858|340859|340862|340863|340865|340867|342251|342258|342264|342266|342269|342270|342271|342274|342276|342277|342282|353851|353852|374716|374840|374841|374860|377309|400727|400952|401664|401667|407570|415478|434510|438664|465151|465275|465322|465713|465815|465973|466015|466207|477283|477330|478005|505455|529783|530083|553323|570112|644174|644227|654532|654533|688537|726488|797273|843467|874842|874843|874844|874845|874846|874847|874848|874849|874850|876634|876635|876636|876637", "text": "Tuberous sclerosis syndrome" }, { - "baseId": "20138|20142|27435|27436|50125|50126|50129|50130|50133|50133|50134|50135|50137|50139|50163|50179|57898|57899|57913|57914|57927|57930|57932|57944|57958|57983|58047|58093|58134|58145|58146|58168|58170|58177|58181|58186|58215|58229|58233|58234|58245|58633|58684|58805|59092|59105|59293|75649|75656|75666|75668|75669|75679|75693|75701|75711|75743|75745|75761|75772|76006|76128|141430|141433|141434|151413|151694|166563|182909|182914|182921|184112|202466|202475|202497|203117|203163|240476|240477|240485|240498|240500|240502|240510|242231|242299|242315|253371|307194|307195|307204|307205|307210|307212|307221|307222|307230|307235|307244|307245|307248|307252|307254|307255|307259|307260|307264|307266|307267|307268|307272|307280|307281|307286|311362|311377|311378|311379|311380|311382|311385|311390|311391|311392|311394|311396|311418|311428|311439|311440|311453|311454|311459|311460|311464|311465|311473|311476|311477|311480|311481|311482|311487|311488|311496|311497|311498|311504|311505|311506|311508|311509|311510|311511|311515|316930|316941|316956|316958|316960|316965|316966|316985|316989|316990|316997|316998|317003|317004|317005|317012|317014|317017|317018|317023|317024|317025|317027|317031|317032|317033|317034|317055|317056|317057|317063|317065|317352|317355|317360|317366|317371|317373|317374|317381|317383|317384|317403|317405|317406|317419|317425|317426|317427|317434|317436|317437|317438|317442|317443|317444|317449|317457|317459|317464|317467|317468|317475|317476|317477|317480|317490|317503|317505|317506|317507|317509|317512|317519|317528|342264|353851|353852|363008|363009|364161|370767|390746|396521|396938|397181|400793|400979|401383|401474|404624|404625|404628|404632|404633|422079|459143|465350|465841|465939|466003|474886|529560|529578|529973|539064|563637|569681|575484|614337|614413|614414|614415|614416|614417|614418|637848|687391|687392|816331|816332|816333|821822|901273|901274|901275|901276|901277|901278|901279|901280|901281|901282|901283|901284|901285|901286|901287|901288|901289|901290|901291|901292|901293|901294|901295|901296|901297|901298|901299|901300|901301|901302|901303|901304|901305|901306|901307|901308|901309|901310|901311|901312|901313|901314|901315|901316|901317|901318|901319|901320|903331|906341|918542|918543|918544|964319|964685", + "upstreamId": "20138|20142|27435|27436|50125|50126|50129|50130|50133|50133|50134|50135|50137|50139|50163|50179|57898|57899|57913|57914|57927|57930|57932|57944|57958|57983|58047|58093|58134|58145|58146|58168|58170|58177|58181|58186|58215|58229|58233|58234|58245|58633|58684|58805|59092|59105|59293|75649|75656|75666|75668|75669|75679|75693|75701|75711|75743|75745|75761|75772|76006|76128|141430|141433|141434|151413|151694|166563|182909|182914|182921|184112|202466|202475|202497|203117|203163|240476|240477|240485|240498|240500|240502|240510|242231|242299|242315|253371|307194|307195|307204|307205|307210|307212|307221|307222|307230|307235|307244|307245|307248|307252|307254|307255|307259|307260|307264|307266|307267|307268|307272|307280|307281|307286|311362|311377|311378|311379|311380|311382|311385|311390|311391|311392|311394|311396|311418|311428|311439|311440|311453|311454|311459|311460|311464|311465|311473|311476|311477|311480|311481|311482|311487|311488|311496|311497|311498|311504|311505|311506|311508|311509|311510|311511|311515|316930|316941|316956|316958|316960|316965|316966|316985|316989|316990|316997|316998|317003|317004|317005|317012|317014|317017|317018|317023|317024|317025|317027|317031|317032|317033|317034|317055|317056|317057|317063|317065|317352|317355|317360|317366|317371|317373|317374|317381|317383|317384|317403|317405|317406|317419|317425|317426|317427|317434|317436|317437|317438|317442|317443|317444|317449|317457|317459|317464|317467|317468|317475|317476|317477|317480|317490|317503|317505|317506|317507|317509|317512|317519|317528|342264|353851|353852|363008|363009|364161|370767|390746|396521|396938|397181|400793|400979|401383|401474|404624|404625|404628|404632|404633|422079|459143|465350|465841|465939|466003|474886|529560|529578|529973|539064|563637|569681|575484|614337|614413|614414|614415|614416|614417|614418|637848|687391|687392|816331|816332|816333|821822|901273|901274|901275|901276|901277|901278|901279|901280|901281|901282|901283|901284|901285|901286|901287|901288|901289|901290|901291|901292|901293|901294|901295|901296|901297|901298|901299|901300|901301|901302|901303|901304|901305|901306|901307|901308|901309|901310|901311|901312|901313|901314|901315|901316|901317|901318|901319|901320|903331|906341|918542|918543|918544|964319|964685", "text": "Focal cortical dysplasia type II" }, { - "baseId": "20141|27432|27435|27435|27436|27436|27439|27441|50133|50139|50179|50187|50187|57953|57958|58047|58133|58168|58178|58208|58245|58280|58324|58324|58374|58426|58434|58530|58548|58564|58633|58666|58668|58684|58701|58735|58784|58805|58843|58846|58847|58899|58930|58980|59057|59077|59085|59092|59099|59105|59113|59119|59193|59203|59249|59293|59301|59308|59334|76006|76049|76066|76103|76128|76133|76156|76161|76206|151694|184112|203109|203117|203163|242231|242299|242310|342264|360985|360986|397181|400793|400979|401383|401474|401549|422079|459111|465350|465841|465939|466003|474886|529560|529578|529973|539064|569681|614337|614413|614414|614415|614416|614417|614418|816331|816332|816333|919194|919195|919615|919616|919617|919618|920352|920353|920354|920355", + "upstreamId": "20141|27432|27435|27435|27436|27436|27439|27441|50133|50139|50179|50187|50187|57953|57958|58047|58133|58168|58178|58208|58245|58280|58324|58324|58374|58426|58434|58530|58548|58564|58633|58666|58668|58684|58701|58735|58784|58805|58843|58846|58847|58899|58930|58980|59057|59077|59085|59092|59099|59105|59113|59119|59193|59203|59249|59293|59301|59308|59334|76006|76049|76066|76103|76128|76133|76156|76161|76206|151694|184112|203109|203117|203163|242231|242299|242310|342264|360985|360986|397181|400793|400979|401383|401474|401549|422079|459111|465350|465841|465939|466003|474886|529560|529578|529973|539064|569681|614337|614413|614414|614415|614416|614417|614418|816331|816332|816333|919194|919195|919615|919616|919617|919618|920352|920353|920354|920355", "text": "Lymphangiomyomatosis" }, { - "baseId": "20142", + "upstreamId": "20142", "text": "Focal cortical dysplasia of Taylor type 2B" }, { - "baseId": "20145|31559", + "upstreamId": "20145|31559", "text": "Venous thrombosis, susceptibility to" }, { - "baseId": "20147", + "upstreamId": "20147", "text": "Abnormality of carbohydrate metabolism/homeostasis" }, { - "baseId": "20158|512867|512952|539067|715151", + "upstreamId": "20158|512867|512952|539067|715151", "text": "Huntington disease-like 2" }, { - "baseId": "20159|20160|136545|142136|142137|186089|212631|215728|221754|221755|240234|244509|253060|304377|304394|304399|304405|304406|304416|304420|308109|308110|308128|308130|308131|308140|308146|308147|313131|313140|313142|313152|313153|313161|313166|313171|313173|313189|313191|313192|313197|313205|313208|313217|313218|313227|313228|313229|313233|313234|313235|313237|313246|313255|369372|369375|369726|395913|395915|441171|457231|502296|502593|523291|523299|523642|561956|564664|636612|677279|683978|683979|687189|687193|689906|695378|789373|898990|898991|898992|898993|898994|898995|898996|898997|898998|898999|899000|899001|899002|899003|899004|899005|899006|899007|899008|899009|899010|899011|899012|899013|899014|899015|899016|899017|981615", + "upstreamId": "20159|20160|136545|142136|142137|186089|212631|215728|221754|221755|240234|244509|253060|304377|304394|304399|304405|304406|304416|304420|308109|308110|308128|308130|308131|308140|308146|308147|313131|313140|313142|313152|313153|313161|313166|313171|313173|313189|313191|313192|313197|313205|313208|313217|313218|313227|313228|313229|313233|313234|313235|313237|313246|313255|369372|369375|369726|395913|395915|441171|457231|502296|502593|523291|523299|523642|561956|564664|636612|677279|683978|683979|687189|687193|689906|695378|789373|898990|898991|898992|898993|898994|898995|898996|898997|898998|898999|899000|899001|899002|899003|899004|899005|899006|899007|899008|899009|899010|899011|899012|899013|899014|899015|899016|899017|981615", "text": "Charcot-Marie-Tooth disease, type 4D" }, { - "baseId": "20161|20162|20163|20164|20165|20166|20167|20168|20169|44320|44321|132549|132550|132551|132552|254729|254730|266805|318530|318531|318532|318536|318537|318552|318553|326720|326736|326737|326738|326740|326751|326755|326756|332928|332930|332932|332934|332939|332941|332949|332956|334605|334606|334613|334621|334623|334625|334626|334628|334629|334635|372576|462499|463236|463240|487616|527904|527907|565730|567072|568175|572071|609861|641399|641400|641401|641402|652271|713768|791279|792789|820524|840302|840303|840304|840305|840306|870473|870474|870475|870476|870477|870478|870479|870480|870481|870482|870483|870484|870485|870486|870487|870488|870489|870490|872294|926740|926741|936276|948170|948171|956954", + "upstreamId": "20161|20162|20163|20164|20165|20166|20167|20168|20169|44320|44321|132549|132550|132551|132552|254729|254730|266805|318530|318531|318532|318536|318537|318552|318553|326720|326736|326737|326738|326740|326751|326755|326756|332928|332930|332932|332934|332939|332941|332949|332956|334605|334606|334613|334621|334623|334625|334626|334628|334629|334635|372576|462499|463236|463240|487616|527904|527907|565730|567072|568175|572071|609861|641399|641400|641401|641402|652271|713768|791279|792789|820524|840302|840303|840304|840305|840306|870473|870474|870475|870476|870477|870478|870479|870480|870481|870482|870483|870484|870485|870486|870487|870488|870489|870490|872294|926740|926741|936276|948170|948171|956954", "text": "Hyper-IgM syndrome type 2" }, { - "baseId": "20170|20171|20172|20173|20174|20175|20176|20177|20178|204283|204284|204285|204286|204287|204288|204289|204290|204291|204292|204293|204294|204295|204296|204297|204298|204299|204300|204302|204303|204304|243561|257261|257262|265656|267414|269158|272480|273198|334667|334672|334673|334681|334683|334689|334691|344507|344513|344516|349542|349549|349550|349553|349554|349557|349558|350551|350552|350555|350556|350558|350561|350562|350565|350570|350576|353531|353532|358621|358622|358623|358624|358625|358626|358627|358628|358629|358630|410721|415671|469303|470825|471325|487835|532832|548885|548887|548889|548953|548955|548961|548965|548967|549209|549210|549379|549380|549796|549799|575064|575065|612359|648517|648518|648519|705333|716765|716766|716767|716768|728483|728485|731317|731318|742196|742197|742198|742201|742203|742204|745105|757327|757329|757331|757332|757333|757334|757335|757336|760765|760930|772952|772955|772956|772957|772958|772959|772960|772961|772962|772963|772966|772967|776640|776761|776919|786306|786307|786308|786309|786311|786312|788334|798923|801739|801740|801741|816417|848129|848130|858727|882679|882680|882681|882682|882683|882684|882685|882686|882687|882688|882689|882690|882691|882692|882693|882694|882956|882957|882958|882959|882960|882961|882962|882963|929123|958755|958756|958757|960929|979992|979993|979994|979995|979996", + "upstreamId": "20170|20171|20172|20173|20174|20175|20176|20177|20178|204283|204284|204285|204286|204287|204288|204289|204290|204291|204292|204293|204294|204295|204296|204297|204298|204299|204300|204302|204303|204304|243561|257261|257262|265656|267414|269158|272480|273198|334667|334672|334673|334681|334683|334689|334691|344507|344513|344516|349542|349549|349550|349553|349554|349557|349558|350551|350552|350555|350556|350558|350561|350562|350565|350570|350576|353531|353532|358621|358622|358623|358624|358625|358626|358627|358628|358629|358630|410721|415671|469303|470825|471325|487835|532832|548885|548887|548889|548953|548955|548961|548965|548967|549209|549210|549379|549380|549796|549799|575064|575065|612359|648517|648518|648519|705333|716765|716766|716767|716768|728483|728485|731317|731318|742196|742197|742198|742201|742203|742204|745105|757327|757329|757331|757332|757333|757334|757335|757336|760765|760930|772952|772955|772956|772957|772958|772959|772960|772961|772962|772963|772966|772967|776640|776761|776919|786306|786307|786308|786309|786311|786312|788334|798923|801739|801740|801741|816417|848129|848130|858727|882679|882680|882681|882682|882683|882684|882685|882686|882687|882688|882689|882690|882691|882692|882693|882694|882956|882957|882958|882959|882960|882961|882962|882963|929123|958755|958756|958757|960929|979992|979993|979994|979995|979996", "text": "Mucolipidosis type IV" }, { - "baseId": "20179|20180|20181|20182|20182|20183|20184|20185|20185|20187|20188|48026|48026|48027|48028|54592|54593|54594|57135|57138|57139|57140|57141|57144|57154|57157|57157|57158|57159|57160|57161|57162|57162|57165|57166|57166|57167|57168|57170|57171|57173|57174|57176|57178|57179|57182|57182|57183|57185|57187|57189|89181|97446|175675|175676|175676|175678|175679|175679|175683|175685|175686|175687|175688|175813|175815|175825|175826|175827|175828|191397|193578|195346|214845|230023|230025|230025|230026|230027|230031|230032|230033|230035|230036|230036|238049|254070|269355|313423|313426|313427|313432|313458|319529|319530|319531|319552|325666|325667|325674|325676|325679|325683|325686|325691|325699|325709|325739|326704|326707|326722|326730|326732|357961|357962|413306|431752|431753|444756|491719|491837|492015|497372|497592|545944|545946|545948|545949|545958|545960|545961|545962|545963|545964|545968|545970|545971|545973|545973|545987|546222|546222|546224|546225|546234|546238|546241|546242|546244|546247|546255|546255|546256|546258|546265|546266|546352|546359|546360|546362|546364|546370|546373|546376|546380|546383|546384|546386|546388|546390|546396|546405|546406|546407|546409|546529|546532|546533|546543|546551|546555|546557|546559|546562|546575|546579|546584|546588|546592|546602|546608|546610|546615|546616|546623|546624|546626|737895|752588|752591|768357|768361|775646|783958|783961|838138|838144|867636|867637|867638|867639|867640|867641|867642|867643|867644|867645|867646|867647|867648|867656|867666|867667|868630|868631|868632|978950|978951|978952|978953|978954|978955|978956|978957|978958|978959|978960|978961|978962|978963|978964|978965|978966|978967", + "upstreamId": "20179|20180|20181|20182|20182|20183|20184|20185|20185|20187|20188|48026|48026|48027|48028|54592|54593|54594|57135|57138|57139|57140|57141|57144|57154|57157|57157|57158|57159|57160|57161|57162|57162|57165|57166|57166|57167|57168|57170|57171|57173|57174|57176|57178|57179|57182|57182|57183|57185|57187|57189|89181|97446|175675|175676|175676|175678|175679|175679|175683|175685|175686|175687|175688|175813|175815|175825|175826|175827|175828|191397|193578|195346|214845|230023|230025|230025|230026|230027|230031|230032|230033|230035|230036|230036|238049|254070|269355|313423|313426|313427|313432|313458|319529|319530|319531|319552|325666|325667|325674|325676|325679|325683|325686|325691|325699|325709|325739|326704|326707|326722|326730|326732|357961|357962|413306|431752|431753|444756|491719|491837|492015|497372|497592|545944|545946|545948|545949|545958|545960|545961|545962|545963|545964|545968|545970|545971|545973|545973|545987|546222|546222|546224|546225|546234|546238|546241|546242|546244|546247|546255|546255|546256|546258|546265|546266|546352|546359|546360|546362|546364|546370|546373|546376|546380|546383|546384|546386|546388|546390|546396|546405|546406|546407|546409|546529|546532|546533|546543|546551|546555|546557|546559|546562|546575|546579|546584|546588|546592|546602|546608|546610|546615|546616|546623|546624|546626|737895|752588|752591|768357|768361|775646|783958|783961|838138|838144|867636|867637|867638|867639|867640|867641|867642|867643|867644|867645|867646|867647|867648|867656|867666|867667|868630|868631|868632|978950|978951|978952|978953|978954|978955|978956|978957|978958|978959|978960|978961|978962|978963|978964|978965|978966|978967", "text": "Usher syndrome, type 1C" }, { - "baseId": "20180|20182|20182|20185|20185|20186|20187|48026|48026|57144|57154|57157|57158|57162|57165|57166|57168|57173|57174|57182|57183|89181|97446|175676|175678|175679|175683|175687|175813|191397|193578|230023|230025|230026|230027|230031|230033|230035|230036|238049|357961|357962|389918|413306|431752|431753|444756|491837|545944|545946|545948|545949|545958|545960|545961|545962|545963|545964|545968|545970|545971|545973|545987|546222|546224|546225|546234|546238|546241|546242|546244|546247|546255|546256|546258|546265|546266|546352|546359|546360|546362|546364|546370|546373|546376|546380|546383|546384|546386|546388|546390|546396|546405|546406|546407|546409|546529|546532|546533|546543|546551|546555|546557|546559|546562|546575|546579|546584|546588|546592|546602|546608|546610|546615|546616|546623|546624|546626|590301|615813|615840", + "upstreamId": "20180|20182|20182|20185|20185|20186|20187|48026|48026|57144|57154|57157|57158|57162|57165|57166|57168|57173|57174|57182|57183|89181|97446|175676|175678|175679|175683|175687|175813|191397|193578|230023|230025|230026|230027|230031|230033|230035|230036|238049|357961|357962|389918|413306|431752|431753|444756|491837|545944|545946|545948|545949|545958|545960|545961|545962|545963|545964|545968|545970|545971|545973|545987|546222|546224|546225|546234|546238|546241|546242|546244|546247|546255|546256|546258|546265|546266|546352|546359|546360|546362|546364|546370|546373|546376|546380|546383|546384|546386|546388|546390|546396|546405|546406|546407|546409|546529|546532|546533|546543|546551|546555|546557|546559|546562|546575|546579|546584|546588|546592|546602|546608|546610|546615|546616|546623|546624|546626|590301|615813|615840", "text": "Deafness, autosomal recessive 18" }, { - "baseId": "20189|20190|20191|20192|20193|20194|20195|20196|20197|20198|252627|252628|252629|252631|252632|301965|301967|301968|301970|301971|301977|301984|301986|301990|305095|305131|305143|305144|305153|305157|305158|305159|305160|305162|305164|305167|305170|305177|309792|309812|309813|309814|309816|309817|309838|309839|309840|309853|309874|309955|309962|309967|309972|309986|309987|309995|309996|369507|539006|612089|620252|620253|623297|699869|699870|710803|735973|750443|759551|790696|790697|790698|790699|897521|897522|897523|897524|897525|897526|897527|897528|897529|897530|897531|897532|897533|897534|897535|897536|897537|897538|897539|897540|897541|897542|897543|897544|897545|900314|900315|900316|900317|900318|900319|961850|965422", + "upstreamId": "20189|20190|20191|20192|20193|20194|20195|20196|20197|20198|252627|252628|252629|252631|252632|301965|301967|301968|301970|301971|301977|301984|301986|301990|305095|305131|305143|305144|305153|305157|305158|305159|305160|305162|305164|305167|305170|305177|309792|309812|309813|309814|309816|309817|309838|309839|309840|309853|309874|309955|309962|309967|309972|309986|309987|309995|309996|369507|539006|612089|620252|620253|623297|699869|699870|710803|735973|750443|759551|790696|790697|790698|790699|897521|897522|897523|897524|897525|897526|897527|897528|897529|897530|897531|897532|897533|897534|897535|897536|897537|897538|897539|897540|897541|897542|897543|897544|897545|900314|900315|900316|900317|900318|900319|961850|965422", "text": "Renal tubular acidosis, distal, autosomal recessive" }, { - "baseId": "20200|20201|20207|34122|70494|70494|141625|141626|141627|141628|141629|141630|141631|188834|191829|191830|191830|192686|192686|192995|193140|244839|254719|254728|254731|254732|254765|254766|254767|254768|254769|268249|268249|270757|273981|273981|273982|273982|318487|318488|318490|318492|318497|318498|318498|318565|318565|318567|318567|318596|318611|318612|318612|318615|318615|318618|318618|318621|318621|318629|318629|318630|318630|318631|318633|318634|318634|318639|318642|318656|318662|318672|318673|318676|318677|318678|318682|318683|318691|318692|326629|326631|326632|326634|326635|326636|326639|326642|326642|326669|326717|326717|326765|326765|326770|326770|326774|326789|326791|326914|326916|326921|326921|326937|326937|326943|326943|326954|326959|326960|326971|326973|326975|326980|326981|326986|326988|326989|326990|332870|332875|332878|332881|332882|332882|332917|332917|332957|332957|332958|332972|332981|332985|333004|333004|333007|333009|333009|333010|333010|333011|333015|333015|333016|333016|333017|333017|333018|333019|333019|333020|333052|333054|333086|333103|333107|334541|334547|334550|334551|334554|334563|334565|334600|334600|334602|334602|334638|334638|334640|334640|334644|334644|334645|334645|334646|334646|334703|334703|334707|334709|334711|334711|334722|334722|334724|334726|334726|334732|334739|334739|334766|334766|334772|334773|334773|334777|334789|334792|334794|334801|334802|334806|360111|413333|434048|445090|462466|462468|462497|462501|462521|462526|462527|462532|462534|462536|462727|462761|462773|462775|462782|462783|462786|462792|462794|463211|463212|463234|463252|463269|463270|463272|463277|463278|463281|463282|463285|463288|463333|463340|463342|463346|463370|463380|463387|463392|463392|463394|463397|463397|463400|463405|491926|493532|505053|527206|527340|527343|527351|527360|527365|527365|527366|527366|527381|527382|527384|527387|527390|527398|527402|527404|527411|527412|527413|527414|527417|527420|527422|527424|527424|527426|527652|527658|527661|527663|527665|527667|527668|527676|527679|527684|527698|527703|527884|527898|527913|527915|527945|527946|527954|527954|565030|565725|565725|565733|565736|565741|565750|565751|565763|565766|565768|565769|565771|566292|567060|567061|567069|567074|567087|567091|567091|568173|568178|568181|568190|568191|568195|568196|568201|568202|572074|572075|572075|572084|572103|572104|572120|572126|572132|572134|572139|572142|572142|572145|578505|582661|612964|641386|641387|641388|641398|641403|641404|641405|641406|641407|641408|641409|641410|641411|641412|641413|641436|641437|641438|641447|641448|641449|641459|641460|641462|641463|641465|641466|641467|641470|641471|641474|641475|641477|641478|641479|641481|641482|641488|641489|641490|641491|641492|641493|641494|641495|641496|641497|641498|641499|641500|641501|641502|641503|652502|652739|688056|693283|693284|693285|693291|693292|693300|693305|693308|693309|702530|702540|702541|725312|738886|753644|769304|769338|769342|769356|799730|820519|820522|820523|820525|840270|840271|840272|840273|840274|840274|840275|840276|840301|840307|840308|840309|840310|840311|840312|840313|840314|840315|840316|840317|840318|840319|840320|840321|840322|840323|840324|840325|840326|840327|840328|840329|840330|840331|840332|840333|840334|840335|840336|840337|840338|840339|840340|840341|840401|840402|840407|840408|840413|840414|840415|840417|840418|840423|840424|840425|840427|840428|840429|840435|840436|840437|840444|840444|840445|840446|840447|840448|840449|840450|840451|840452|840453|870445|870446|870447|870448|870449|870450|870451|870452|870452|870491|870492|870493|870521|870522|870523|870524|870525|870526|870527|870528|870529|870530|870531|870532|870533|870534|870535|870536|870537|870538|870539|870540|870541|870542|870543|870544|870545|870546|870547|870548|870549|926731|926732|926733|926734|926735|926739|926742|926743|926744|926745|926746|926747|926748|926749|926750|926751|926766|926768|926772|926773|926776|926777|926780|926781|926782|926783|926784|936262|936263|936264|936275|936277|936278|936279|936280|936281|936282|936283|936305|936306|936308|936310|936313|936314|936315|941041|941042|948159|948169|948172|948173|948174|948175|948176|948177|948178|948227|948228|948235|948236|956940|956941|956955|956956|956957|956958|956959|956960|956992|956995|957001|960059|960060", + "upstreamId": "20200|20201|20207|34122|70494|70494|141625|141626|141627|141628|141629|141630|141631|188834|191829|191830|191830|192686|192686|192995|193140|244839|254719|254728|254731|254732|254765|254766|254767|254768|254769|268249|268249|270757|273981|273981|273982|273982|318487|318488|318490|318492|318497|318498|318498|318565|318565|318567|318567|318596|318611|318612|318612|318615|318615|318618|318618|318621|318621|318629|318629|318630|318630|318631|318633|318634|318634|318639|318642|318656|318662|318672|318673|318676|318677|318678|318682|318683|318691|318692|326629|326631|326632|326634|326635|326636|326639|326642|326642|326669|326717|326717|326765|326765|326770|326770|326774|326789|326791|326914|326916|326921|326921|326937|326937|326943|326943|326954|326959|326960|326971|326973|326975|326980|326981|326986|326988|326989|326990|332870|332875|332878|332881|332882|332882|332917|332917|332957|332957|332958|332972|332981|332985|333004|333004|333007|333009|333009|333010|333010|333011|333015|333015|333016|333016|333017|333017|333018|333019|333019|333020|333052|333054|333086|333103|333107|334541|334547|334550|334551|334554|334563|334565|334600|334600|334602|334602|334638|334638|334640|334640|334644|334644|334645|334645|334646|334646|334703|334703|334707|334709|334711|334711|334722|334722|334724|334726|334726|334732|334739|334739|334766|334766|334772|334773|334773|334777|334789|334792|334794|334801|334802|334806|360111|413333|434048|445090|462466|462468|462497|462501|462521|462526|462527|462532|462534|462536|462727|462761|462773|462775|462782|462783|462786|462792|462794|463211|463212|463234|463252|463269|463270|463272|463277|463278|463281|463282|463285|463288|463333|463340|463342|463346|463370|463380|463387|463392|463392|463394|463397|463397|463400|463405|491926|493532|505053|527206|527340|527343|527351|527360|527365|527365|527366|527366|527381|527382|527384|527387|527390|527398|527402|527404|527411|527412|527413|527414|527417|527420|527422|527424|527424|527426|527652|527658|527661|527663|527665|527667|527668|527676|527679|527684|527698|527703|527884|527898|527913|527915|527945|527946|527954|527954|565030|565725|565725|565733|565736|565741|565750|565751|565763|565766|565768|565769|565771|566292|567060|567061|567069|567074|567087|567091|567091|568173|568178|568181|568190|568191|568195|568196|568201|568202|572074|572075|572075|572084|572103|572104|572120|572126|572132|572134|572139|572142|572142|572145|578505|582661|612964|641386|641387|641388|641398|641403|641404|641405|641406|641407|641408|641409|641410|641411|641412|641413|641436|641437|641438|641447|641448|641449|641459|641460|641462|641463|641465|641466|641467|641470|641471|641474|641475|641477|641478|641479|641481|641482|641488|641489|641490|641491|641492|641493|641494|641495|641496|641497|641498|641499|641500|641501|641502|641503|652502|652739|688056|693283|693284|693285|693291|693292|693300|693305|693308|693309|702530|702540|702541|725312|738886|753644|769304|769338|769342|769356|799730|820519|820522|820523|820525|840270|840271|840272|840273|840274|840274|840275|840276|840301|840307|840308|840309|840310|840311|840312|840313|840314|840315|840316|840317|840318|840319|840320|840321|840322|840323|840324|840325|840326|840327|840328|840329|840330|840331|840332|840333|840334|840335|840336|840337|840338|840339|840340|840341|840401|840402|840407|840408|840413|840414|840415|840417|840418|840423|840424|840425|840427|840428|840429|840435|840436|840437|840444|840444|840445|840446|840447|840448|840449|840450|840451|840452|840453|870445|870446|870447|870448|870449|870450|870451|870452|870452|870491|870492|870493|870521|870522|870523|870524|870525|870526|870527|870528|870529|870530|870531|870532|870533|870534|870535|870536|870537|870538|870539|870540|870541|870542|870543|870544|870545|870546|870547|870548|870549|926731|926732|926733|926734|926735|926739|926742|926743|926744|926745|926746|926747|926748|926749|926750|926751|926766|926768|926772|926773|926776|926777|926780|926781|926782|926783|926784|936262|936263|936264|936275|936277|936278|936279|936280|936281|936282|936283|936305|936306|936308|936310|936313|936314|936315|941041|941042|948159|948169|948172|948173|948174|948175|948176|948177|948178|948227|948228|948235|948236|956940|956941|956955|956956|956957|956958|956959|956960|956992|956995|957001|960059|960060", "text": "Pseudohypoaldosteronism type 2C" }, { - "baseId": "20211", + "upstreamId": "20211", "text": "SCHIZOPHRENIA 9, SUSCEPTIBILITY TO" }, { - "baseId": "20212|20213|20214|20215|101183|101184|101185|141240|141241|141242|141243|141244|141245|141246|177764|177765|178709|188633|188635|188636|188637|188641|188643|195986|242112|270849|361763|361764|361765|361766|400342|400850|465286|465384|490836|504948|529625|567254|573509|573513|573513|656304|688486|842675|874091|874092|874093|874094|874095|874096|874097|874098|874099|874100|874101|874102|874103|874104|874105|874106|874107|874108|874109|874110|874111|874112|874113|874114|874115|874116|874117|874118|874119|874120|874121|874122|874123|874124|874125|874126|874127|874128|874129|874130|874131|874132|874133|874134|874135|874136|874137|874138|876566", + "upstreamId": "20212|20213|20214|20215|101183|101184|101185|141240|141241|141242|141243|141244|141245|141246|177764|177765|178709|188633|188635|188636|188637|188641|188643|195986|242112|270849|361763|361764|361765|361766|400342|400850|465286|465384|490836|504948|529625|567254|573509|573513|573513|656304|688486|842675|874091|874092|874093|874094|874095|874096|874097|874098|874099|874100|874101|874102|874103|874104|874105|874106|874107|874108|874109|874110|874111|874112|874113|874114|874115|874116|874117|874118|874119|874120|874121|874122|874123|874124|874125|874126|874127|874128|874129|874130|874131|874132|874133|874134|874135|874136|874137|874138|876566", "text": "Sick sinus syndrome 2, autosomal dominant" }, { - "baseId": "20216|101182|101183|101185|141241|141244|141245|141246|177151|177764|177765|177766|178709|188624|188625|188626|188627|188628|188629|188630|188631|188632|188633|188635|188636|188637|188639|188640|188641|188642|188643|188643|188645|188646|189358|189359|189360|189362|189363|189364|194414|195979|195980|195981|195982|195985|195986|195987|195988|222432|224510|242109|242110|242111|242112|242113|242114|242115|242116|242117|242118|258952|258953|258960|267586|270849|271171|271300|271760|272719|273510|275371|361765|373671|373674|373683|373684|374298|374305|374306|374309|374721|374730|376624|376638|376639|376643|376663|400331|400332|400341|400342|400343|400344|400363|400479|400482|400486|400490|400492|400496|400508|400509|400815|400817|400822|400823|400829|400845|400850|400851|400853|401174|401179|401181|401184|401191|401193|401195|401198|401205|401206|409343|413406|415447|426120|441754|441755|464500|464501|464503|464508|464511|464515|465141|465144|465145|465157|465159|465162|465164|465276|465279|465280|465283|465286|465286|465288|465297|465299|465301|465369|465376|465384|465391|465395|465397|465402|465407|465409|465412|482075|490836|493884|504938|504941|505152|505159|510666|510667|510668|510669|510677|510680|510681|510682|510684|529024|529028|529033|529035|529037|529038|529040|529044|529046|529102|529103|529105|529108|529114|529428|529443|529445|529448|529621|529625|529631|529632|529641|529643|529647|529650|529652|529655|529658|551789|551790|567243|567248|567254|567254|567259|567261|567263|567268|567271|567273|567278|567281|567283|569115|569118|569130|569140|569141|569150|569594|569595|569597|573509|573510|573511|573513|573513|573517|573520|573524|573526|573529|573533|573534|573535|573536|587012|623076|643523|643524|643525|643526|643527|643528|643529|643530|643531|643532|643533|643534|643535|643536|643537|643538|643539|643540|643541|643542|643543|643544|643545|656301|656303|680055|684556|684557|688484|688485|688486|688487|688488|688492|688493|693737|693738|693740|695659|703319|770328|770332|770333|785003|785004|785006|785009|797194|820733|842668|842669|842670|842671|842672|842673|842674|842675|842676|842677|842678|842679|842680|842681|842682|842683|842684|842685|842686|842687|842688|842689|842690|842691|842692|842693|842694|842695|842696|842697|842698|842699|842700|842701|842702|842703|842704|842705|927411|927412|927413|927414|927415|927416|927417|927418|927419|927420|927421|927422|927423|927424|937054|937055|937056|937057|937058|937059|937060|937061|937062|937063|937064|937065|937066|937067|937068|937069|937070|937071|937072|949002|949003|949004|949005|949006|949007|949008|949009|949010|949011|957498|957499|957500|957501|957502|957503|957504|957505|957506|957507|957508|957509|957510", + "upstreamId": "20216|101182|101183|101185|141241|141244|141245|141246|177151|177764|177765|177766|178709|188624|188625|188626|188627|188628|188629|188630|188631|188632|188633|188635|188636|188637|188639|188640|188641|188642|188643|188643|188645|188646|189358|189359|189360|189362|189363|189364|194414|195979|195980|195981|195982|195985|195986|195987|195988|222432|224510|242109|242110|242111|242112|242113|242114|242115|242116|242117|242118|258952|258953|258960|267586|270849|271171|271300|271760|272719|273510|275371|361765|373671|373674|373683|373684|374298|374305|374306|374309|374721|374730|376624|376638|376639|376643|376663|400331|400332|400341|400342|400343|400344|400363|400479|400482|400486|400490|400492|400496|400508|400509|400815|400817|400822|400823|400829|400845|400850|400851|400853|401174|401179|401181|401184|401191|401193|401195|401198|401205|401206|409343|413406|415447|426120|441754|441755|464500|464501|464503|464508|464511|464515|465141|465144|465145|465157|465159|465162|465164|465276|465279|465280|465283|465286|465286|465288|465297|465299|465301|465369|465376|465384|465391|465395|465397|465402|465407|465409|465412|482075|490836|493884|504938|504941|505152|505159|510666|510667|510668|510669|510677|510680|510681|510682|510684|529024|529028|529033|529035|529037|529038|529040|529044|529046|529102|529103|529105|529108|529114|529428|529443|529445|529448|529621|529625|529631|529632|529641|529643|529647|529650|529652|529655|529658|551789|551790|567243|567248|567254|567254|567259|567261|567263|567268|567271|567273|567278|567281|567283|569115|569118|569130|569140|569141|569150|569594|569595|569597|573509|573510|573511|573513|573513|573517|573520|573524|573526|573529|573533|573534|573535|573536|587012|623076|643523|643524|643525|643526|643527|643528|643529|643530|643531|643532|643533|643534|643535|643536|643537|643538|643539|643540|643541|643542|643543|643544|643545|656301|656303|680055|684556|684557|688484|688485|688486|688487|688488|688492|688493|693737|693738|693740|695659|703319|770328|770332|770333|785003|785004|785006|785009|797194|820733|842668|842669|842670|842671|842672|842673|842674|842675|842676|842677|842678|842679|842680|842681|842682|842683|842684|842685|842686|842687|842688|842689|842690|842691|842692|842693|842694|842695|842696|842697|842698|842699|842700|842701|842702|842703|842704|842705|927411|927412|927413|927414|927415|927416|927417|927418|927419|927420|927421|927422|927423|927424|937054|937055|937056|937057|937058|937059|937060|937061|937062|937063|937064|937065|937066|937067|937068|937069|937070|937071|937072|949002|949003|949004|949005|949006|949007|949008|949009|949010|949011|957498|957499|957500|957501|957502|957503|957504|957505|957506|957507|957508|957509|957510", "text": "Brugada syndrome 8" }, { - "baseId": "20216|29190|44292|44801|45342|45426|45428|49116|53516|54242|54748|55691|55936|56038|56180|56291|56323|56440|56493|56495|56634|56805|57458|78464|78466|78482|78699|140876|141245|141502|141530|153685|171122|173867|175861|178572|178581|178584|178601|178654|178658|188357|189319|189364|189539|193356|196544|224258|224321|224346|224448|224511|224515|229491|240190|241821|259063|293513|301509|359753|374980|395893|462084|514088|679378|679400|679414|679422|679426|679450|679454|679479|679480|858248|965299", + "upstreamId": "20216|29190|44292|44801|45342|45426|45428|49116|53516|54242|54748|55691|55936|56038|56180|56291|56323|56440|56493|56495|56634|56805|57458|78464|78466|78482|78699|140876|141245|141502|141530|153685|171122|173867|175861|178572|178581|178584|178601|178654|178658|188357|189319|189364|189539|193356|196544|224258|224321|224346|224448|224511|224515|229491|240190|241821|259063|293513|301509|359753|374980|395893|462084|514088|679378|679400|679414|679422|679426|679450|679454|679479|679480|858248|965299", "text": "Ventricular tachycardia" }, { - "baseId": "20217|20218", + "upstreamId": "20217|20218", "text": "Hypercalciuria, absorptive, susceptibility to" }, { - "baseId": "20219|20220|20221|33477|33905|172165|253321|253324|263828|263829|263830|263831|307031|307032|307034|307036|307040|307042|307043|307045|307046|307048|311145|311150|311152|311158|316756|316758|316759|316760|316771|316778|316779|316780|316783|317161|317174|317175|317178|317182|317201|396871|550616|684053|684055|805015|901173|901174|901175|901176|901177|901178|901179|901180|901181|901182|901183|901184|903321", + "upstreamId": "20219|20220|20221|33477|33905|172165|253321|253324|263828|263829|263830|263831|307031|307032|307034|307036|307040|307042|307043|307045|307046|307048|311145|311150|311152|311158|316756|316758|316759|316760|316771|316778|316779|316780|316783|317161|317174|317175|317178|317182|317201|396871|550616|684053|684055|805015|901173|901174|901175|901176|901177|901178|901179|901180|901181|901182|901183|901184|903321", "text": "Dystonia 1" }, { - "baseId": "20219", + "upstreamId": "20219", "text": "Dystonia-1, torsion" }, { - "baseId": "20220", + "upstreamId": "20220", "text": "Dystonia, early-onset atypical, with myoclonic features" }, { - "baseId": "20221", + "upstreamId": "20221", "text": "Dystonia 1, torsion, modifier of" }, { - "baseId": "20222|20223|20224|20225|47509|47510|47511|47512|47513|47514|255413|255414|255415|255417|255421|255422|255423|255424|269087|323574|323576|323580|333305|340063|340067|341505|341509|341510|341514|341520|341522|341524|341525|341528|341535|547623|547624|547626|547627|547628|547630|547633|547635|547637|547648|547663|547664|547666|547877|547882|547883|547893|547897|547899|547901|548284|548285|548286|548289|548295|548303|548304|548318|548324|548326|620533|726336|739870|770408|842800|874309|874310|874311|874312|874313|874314|874315|874316|874317|874318|874319", + "upstreamId": "20222|20223|20224|20225|47509|47510|47511|47512|47513|47514|255413|255414|255415|255417|255421|255422|255423|255424|269087|323574|323576|323580|333305|340063|340067|341505|341509|341510|341514|341520|341522|341524|341525|341528|341535|547623|547624|547626|547627|547628|547630|547633|547635|547637|547648|547663|547664|547666|547877|547882|547883|547893|547897|547899|547901|548284|548285|548286|548289|548295|548303|548304|548318|548324|548326|620533|726336|739870|770408|842800|874309|874310|874311|874312|874313|874314|874315|874316|874317|874318|874319", "text": "Spondylocostal dysostosis 2, autosomal recessive" }, { - "baseId": "20223|47509|255414|265437|269087|340063|341505|341510|341524|714683|739871|739872|754778|770408|770410|770413|785057|785058|842800|874309|979690|979691|979692|979693|979694|979695|979696|979697|979698", + "upstreamId": "20223|47509|255414|265437|269087|340063|341505|341510|341524|714683|739871|739872|754778|770408|770410|770413|785057|785058|842800|874309|979690|979691|979692|979693|979694|979695|979696|979697|979698", "text": "Spondylocostal dysostosis type 2" }, { - "baseId": "20226|20227|20229|140438|790045", + "upstreamId": "20226|20227|20229|140438|790045", "text": "Heterotaxy, visceral, 2, autosomal" }, { - "baseId": "20230|20231|20232|20233|20239|20240|20241|196338|267580|274297|295775|295777|295780|295792|295795|295800|295804|295805|295811|295821|295828|295830|295835|295838|295839|295845|295846|295852|295853|295856|295869|295876|295877|295880|295890|295891|295893|295894|295899|295900|295939|295949|297591|297592|297607|297611|297613|297618|297626|297637|297645|297649|297651|297669|297671|297672|297673|297680|297681|297682|297689|297690|297695|297696|297699|297700|297701|297703|297705|297712|297715|297717|297718|297763|301485|301495|301497|301498|301499|301507|301508|301515|301521|301530|301532|301555|301565|301568|301572|301573|301585|301588|301606|301607|301610|301615|301616|301618|301621|301622|301623|301721|301724|301733|301738|301742|301743|301744|301746|301752|301756|301759|301760|301767|301768|301771|301781|301789|301791|301792|301793|301794|301806|301807|301810|301811|698894|893203|893204|893205|893206|893207|893208|893209|893210|893211|893212|893213|893214|893215|893216|893217|893218|893219|893220|893221|893222|893223|893224|893225|893226|893227|893228|893229|893230|893231|893232|893233|893234|893235|893236|893237|893238|893239|893240|893241|893242|893243|893244|893245|893246|893247|893248|893249|893250|893251|893252|893253|893254|893255|893256|893257|893258|893259|893260|893261|893262|893263|893264|893265|893266|893267|893268|893269|893270|893294|896055|896056|896057|896058|976648", + "upstreamId": "20230|20231|20232|20233|20239|20240|20241|196338|267580|274297|295775|295777|295780|295792|295795|295800|295804|295805|295811|295821|295828|295830|295835|295838|295839|295845|295846|295852|295853|295856|295869|295876|295877|295880|295890|295891|295893|295894|295899|295900|295939|295949|297591|297592|297607|297611|297613|297618|297626|297637|297645|297649|297651|297669|297671|297672|297673|297680|297681|297682|297689|297690|297695|297696|297699|297700|297701|297703|297705|297712|297715|297717|297718|297763|301485|301495|301497|301498|301499|301507|301508|301515|301521|301530|301532|301555|301565|301568|301572|301573|301585|301588|301606|301607|301610|301615|301616|301618|301621|301622|301623|301721|301724|301733|301738|301742|301743|301744|301746|301752|301756|301759|301760|301767|301768|301771|301781|301789|301791|301792|301793|301794|301806|301807|301810|301811|698894|893203|893204|893205|893206|893207|893208|893209|893210|893211|893212|893213|893214|893215|893216|893217|893218|893219|893220|893221|893222|893223|893224|893225|893226|893227|893228|893229|893230|893231|893232|893233|893234|893235|893236|893237|893238|893239|893240|893241|893242|893243|893244|893245|893246|893247|893248|893249|893250|893251|893252|893253|893254|893255|893256|893257|893258|893259|893260|893261|893262|893263|893264|893265|893266|893267|893268|893269|893270|893294|896055|896056|896057|896058|976648", "text": "Craniometaphyseal dysplasia, autosomal dominant" }, { - "baseId": "20231|20234|20235|20237|20238|196338|267580|274297|295775|295777|295780|295792|295795|295800|295804|295805|295811|295821|295828|295830|295835|295838|295839|295845|295846|295852|295853|295856|295869|295876|295877|295880|295890|295891|295893|295894|295899|295900|295939|295949|297591|297592|297607|297611|297613|297618|297626|297637|297645|297649|297651|297669|297671|297672|297673|297680|297681|297682|297689|297690|297695|297696|297699|297700|297701|297703|297705|297712|297715|297717|297718|297763|301485|301495|301497|301498|301499|301507|301508|301515|301521|301530|301532|301555|301565|301568|301572|301573|301585|301588|301606|301607|301610|301615|301616|301618|301621|301622|301623|301721|301724|301733|301738|301742|301743|301744|301746|301752|301756|301759|301760|301767|301768|301771|301781|301789|301791|301792|301793|301794|301806|301807|301810|301811|698894|893203|893204|893205|893206|893207|893208|893209|893210|893211|893212|893213|893214|893215|893216|893217|893218|893219|893220|893221|893222|893223|893224|893225|893226|893227|893228|893229|893230|893231|893232|893233|893234|893235|893236|893237|893238|893239|893240|893241|893242|893243|893244|893245|893246|893247|893248|893249|893250|893251|893252|893253|893254|893255|893256|893257|893258|893259|893260|893261|893262|893263|893264|893265|893266|893267|893268|893269|893270|893294|896055|896056|896057|896058|963138|976648", + "upstreamId": "20231|20234|20235|20237|20238|196338|267580|274297|295775|295777|295780|295792|295795|295800|295804|295805|295811|295821|295828|295830|295835|295838|295839|295845|295846|295852|295853|295856|295869|295876|295877|295880|295890|295891|295893|295894|295899|295900|295939|295949|297591|297592|297607|297611|297613|297618|297626|297637|297645|297649|297651|297669|297671|297672|297673|297680|297681|297682|297689|297690|297695|297696|297699|297700|297701|297703|297705|297712|297715|297717|297718|297763|301485|301495|301497|301498|301499|301507|301508|301515|301521|301530|301532|301555|301565|301568|301572|301573|301585|301588|301606|301607|301610|301615|301616|301618|301621|301622|301623|301721|301724|301733|301738|301742|301743|301744|301746|301752|301756|301759|301760|301767|301768|301771|301781|301789|301791|301792|301793|301794|301806|301807|301810|301811|698894|893203|893204|893205|893206|893207|893208|893209|893210|893211|893212|893213|893214|893215|893216|893217|893218|893219|893220|893221|893222|893223|893224|893225|893226|893227|893228|893229|893230|893231|893232|893233|893234|893235|893236|893237|893238|893239|893240|893241|893242|893243|893244|893245|893246|893247|893248|893249|893250|893251|893252|893253|893254|893255|893256|893257|893258|893259|893260|893261|893262|893263|893264|893265|893266|893267|893268|893269|893270|893294|896055|896056|896057|896058|963138|976648", "text": "Familial calcium pyrophosphate deposition" }, { - "baseId": "20236", + "upstreamId": "20236", "text": "Chondrocalcinosis 2, sporadic" }, { - "baseId": "20243|20244|20245|20246|20247|167467|623118", + "upstreamId": "20243|20244|20245|20246|20247|167467|623118", "text": "Diarrhea 3, secretory sodium, congenital, syndromic" }, { - "baseId": "20248|106514|106515|106516|106517|106518|106519|247012|961777|961778", + "upstreamId": "20248|106514|106515|106516|106517|106518|106519|247012|961777|961778", "text": "Hyperlysinemia" }, { - "baseId": "20249|275836|275843|275845|275846|275847|275849|275866|275874|275876|275877|275878|275879|275880|275882|275883|275885|275889|275924|275927|275934|275935|275951|275952|275958|275966|276027|276028|276032|276045|276050|276051|276054|276060|276061|276064|276069|276114|276141|276142|276143|276145|276151|276164|276169|276170|353027|614180|619945|620704|706564|731568|861900|861905|861906|861907|861908|861909|861910|861911|861912|861913|861914|861915|861916|861917|861918|861919|861920|861921|861922|861923|861924|861925|861926|861927|861928|861929|861930|861931|861932|861933|980431", + "upstreamId": "20249|275836|275843|275845|275846|275847|275849|275866|275874|275876|275877|275878|275879|275880|275882|275883|275885|275889|275924|275927|275934|275935|275951|275952|275958|275966|276027|276028|276032|276045|276050|276051|276054|276060|276061|276064|276069|276114|276141|276142|276143|276145|276151|276164|276169|276170|353027|614180|619945|620704|706564|731568|861900|861905|861906|861907|861908|861909|861910|861911|861912|861913|861914|861915|861916|861917|861918|861919|861920|861921|861922|861923|861924|861925|861926|861927|861928|861929|861930|861931|861932|861933|980431", "text": "MASP2 deficiency" }, { - "baseId": "20250|20251|481482|481483|552094|552095|552096|683218|963141|964824", + "upstreamId": "20250|20251|481482|481483|552094|552095|552096|683218|963141|964824", "text": "Congenital heart defects, multiple types, 2" }, { - "baseId": "20252|20257|20258|20834|20835|20836|71033|71034|71035|71036|71360|71361|71362|71363|71364|190040|190041|190042|193521|274295|300116|302843|307455|333191|333197|333198|333205|333213|333217|343301|343303|348623|348624|349697|438917|512906|741823|756936|880354|880355|880356|880357|880734", + "upstreamId": "20252|20257|20258|20834|20835|20836|71033|71034|71035|71036|71360|71361|71362|71363|71364|190040|190041|190042|193521|274295|300116|302843|307455|333191|333197|333198|333205|333213|333217|343301|343303|348623|348624|349697|438917|512906|741823|756936|880354|880355|880356|880357|880734", "text": "Polycystic lipomembranous osteodysplasia with sclerosing leukoencephalopathy 1" }, { - "baseId": "20252|20253|20254|20255|20256|20257|20258|71363|193655|237073|252353|274295|300113|300114|300120|300122|302844|307457|307466|722029|895965|895966|895967|895968|895969|895970|895971|896243", + "upstreamId": "20252|20253|20254|20255|20256|20257|20258|71363|193655|237073|252353|274295|300113|300114|300120|300122|302844|307457|307466|722029|895965|895966|895967|895968|895969|895970|895971|896243", "text": "Polycystic lipomembranous osteodysplasia with sclerosing leukoencephalopathy 2" }, { - "baseId": "20259|20260|513520|581918|581919", + "upstreamId": "20259|20260|513520|581918|581919", "text": "Osteoarthritis" }, { - "baseId": "20261|20262|20263|20264|20265|20266|101825|106465|152872|177387|177614|177618|186764|186765|186766|186767|186768|186769|186770|186771|253180|253181|253182|253184|253186|253187|253188|253190|268056|268061|272971|275240|305952|305953|305957|305964|305970|305971|305972|305985|309991|309997|310004|310005|310008|310011|310012|310016|315302|315315|315316|315319|315320|315321|315322|315324|315327|315330|315332|315403|315407|315408|315410|315413|315416|315435|315436|315445|315446|315450|315454|315455|315456|315461|315462|315470|357640|357641|357642|357643|357644|357645|357646|357647|357648|357649|357650|357651|357652|357653|357654|357655|360901|407456|417079|417080|417081|417082|417083|417084|417085|417086|417087|417088|417089|417090|417091|417092|417093|417094|417095|417096|417097|417098|417099|417100|417101|417102|417103|417104|417105|417106|417107|417108|417109|417110|417111|417112|417113|417114|417115|417116|417117|417118|417119|417120|417121|417122|417123|417124|417125|417126|417127|417128|417129|417130|417131|417132|417133|417134|417135|417136|417137|417138|417139|417140|417141|417142|417143|417144|417145|417146|417147|417148|417149|417150|417151|417152|417155|417156|417157|424200|424201|431735|480496|494986|544470|544475|544478|544481|544766|544768|544804|544870|544877|583381|623639|623640|711650|736761|751254|766898|766903|766908|779561|790816|799030|835088|900096|900097|900098|900099|900100|900101|900102|900103|900104|900105|900106|900107|900108|900109|900110|900111|900112|900113|900114|900115|900116|900117|900118|900119|900120|900121|900122|900123|900124|900125|900126|900127|900128|976718|976719", + "upstreamId": "20261|20262|20263|20264|20265|20266|101825|106465|152872|177387|177614|177618|186764|186765|186766|186767|186768|186769|186770|186771|253180|253181|253182|253184|253186|253187|253188|253190|268056|268061|272971|275240|305952|305953|305957|305964|305970|305971|305972|305985|309991|309997|310004|310005|310008|310011|310012|310016|315302|315315|315316|315319|315320|315321|315322|315324|315327|315330|315332|315403|315407|315408|315410|315413|315416|315435|315436|315445|315446|315450|315454|315455|315456|315461|315462|315470|357640|357641|357642|357643|357644|357645|357646|357647|357648|357649|357650|357651|357652|357653|357654|357655|360901|407456|417079|417080|417081|417082|417083|417084|417085|417086|417087|417088|417089|417090|417091|417092|417093|417094|417095|417096|417097|417098|417099|417100|417101|417102|417103|417104|417105|417106|417107|417108|417109|417110|417111|417112|417113|417114|417115|417116|417117|417118|417119|417120|417121|417122|417123|417124|417125|417126|417127|417128|417129|417130|417131|417132|417133|417134|417135|417136|417137|417138|417139|417140|417141|417142|417143|417144|417145|417146|417147|417148|417149|417150|417151|417152|417155|417156|417157|424200|424201|431735|480496|494986|544470|544475|544478|544481|544766|544768|544804|544870|544877|583381|623639|623640|711650|736761|751254|766898|766903|766908|779561|790816|799030|835088|900096|900097|900098|900099|900100|900101|900102|900103|900104|900105|900106|900107|900108|900109|900110|900111|900112|900113|900114|900115|900116|900117|900118|900119|900120|900121|900122|900123|900124|900125|900126|900127|900128|976718|976719", "text": "Achromatopsia 3" }, { - "baseId": "20262|20264|20266|24514|24515|24517|24519|24520|24521|88340|101244|101245|101246|152872|177387|177614|177618|177925|186764|186766|186769|186771|188766|191918|194429|213583|253181|253184|253188|253189|253915|253916|253917|253919|253920|253921|253922|253923|253924|268061|269501|269507|275240|288462|288469|288473|291347|291525|305961|305972|305979|305984|310028|311682|311689|311693|311696|311707|311708|311713|315454|315455|315462|315470|317261|317262|317267|317268|317273|317276|317288|317289|317290|323308|323311|323312|323313|323317|323318|323319|323326|323327|323329|323330|323331|323335|323880|323890|323892|323893|323894|323911|323919|353580|353845|357644|360901|407456|413292|413546|417083|417092|417103|417114|417136|431557|431745|431746|431747|431748|444307|480771|480772|480773|480774|480775|480776|480777|480778|480779|480780|480781|480782|480783|480784|486445|488680|490192|494980|494981|494982|494983|494984|494985|494986|496144|512922|512923|514579|544475|589204|590440|612250|612831|622993|622994|623639|623640|623878|624022|700677|711649|711650|730590|736761|751252|751253|751254|766898|766902|766903|766905|766906|766908|766909|779561|796193|800479|800480|800482|800483|800484|800539|800540|800541|800542|800562|801346|801348|801350|801411|821949|821950|835057|835059|835061|835064|835066|835068|835073|835075|835076|835077|835085|835089|852156|866560|866561|866562|866563|866564|866565|866566|866567|866568|866569|866570|866571|866572|866573|866574|866575|866576|866577|866578|866579|866580|868535|868536|868537|918189|978479|978480|978481|978482", + "upstreamId": "20262|20264|20266|24514|24515|24517|24519|24520|24521|88340|101244|101245|101246|152872|177387|177614|177618|177925|186764|186766|186769|186771|188766|191918|194429|213583|253181|253184|253188|253189|253915|253916|253917|253919|253920|253921|253922|253923|253924|268061|269501|269507|275240|288462|288469|288473|291347|291525|305961|305972|305979|305984|310028|311682|311689|311693|311696|311707|311708|311713|315454|315455|315462|315470|317261|317262|317267|317268|317273|317276|317288|317289|317290|323308|323311|323312|323313|323317|323318|323319|323326|323327|323329|323330|323331|323335|323880|323890|323892|323893|323894|323911|323919|353580|353845|357644|360901|407456|413292|413546|417083|417092|417103|417114|417136|431557|431745|431746|431747|431748|444307|480771|480772|480773|480774|480775|480776|480777|480778|480779|480780|480781|480782|480783|480784|486445|488680|490192|494980|494981|494982|494983|494984|494985|494986|496144|512922|512923|514579|544475|589204|590440|612250|612831|622993|622994|623639|623640|623878|624022|700677|711649|711650|730590|736761|751252|751253|751254|766898|766902|766903|766905|766906|766908|766909|779561|796193|800479|800480|800482|800483|800484|800539|800540|800541|800542|800562|801346|801348|801350|801411|821949|821950|835057|835059|835061|835064|835066|835068|835073|835075|835076|835077|835085|835089|852156|866560|866561|866562|866563|866564|866565|866566|866567|866568|866569|866570|866571|866572|866573|866574|866575|866576|866577|866578|866579|866580|868535|868536|868537|918189|978479|978480|978481|978482", "text": "Achromatopsia" }, { - "baseId": "20264|22919|22923|22924|22942|22952|104927|104930|104931|104938|104954|104974|104990|105042|105058|105068|105082|105135|105147|105160|105279|105285|105296|105297|105302|105329|105330|105332|105333|105337|105343|105380|105381|105383|105387|139937|139938|139942|139944|152793|177450|190742|191153|237686|237695|237696|237704|250031|250033|253189|267624|281326|281328|281329|281332|281340|281341|281342|281346|281351|281359|281361|281367|281368|281373|281375|281378|281381|281972|281973|281986|281988|281995|281996|282000|282001|282006|283241|283246|283260|283261|283265|283266|283281|283282|283286|283290|283291|283298|283299|283386|283388|283391|283392|283399|283400|283402|283415|283422|283423|283434|283438|283441|283442|305961|305979|305984|310028|353845", + "upstreamId": "20264|22919|22923|22924|22942|22952|104927|104930|104931|104938|104954|104974|104990|105042|105058|105068|105082|105135|105147|105160|105279|105285|105296|105297|105302|105329|105330|105332|105333|105337|105343|105380|105381|105383|105387|139937|139938|139942|139944|152793|177450|190742|191153|237686|237695|237696|237704|250031|250033|253189|267624|281326|281328|281329|281332|281340|281341|281342|281346|281351|281359|281361|281367|281368|281373|281375|281378|281381|281972|281973|281986|281988|281995|281996|282000|282001|282006|283241|283246|283260|283261|283265|283266|283281|283282|283286|283290|283291|283298|283299|283386|283388|283391|283392|283399|283400|283402|283415|283422|283423|283434|283438|283441|283442|305961|305979|305984|310028|353845", "text": "Stargardt Disease, Recessive" }, { - "baseId": "20264|315327", + "upstreamId": "20264|315327", "text": "CNGB3-Related Disorders" }, { - "baseId": "20266|22918|22919|22920|22921|22921|22922|22923|22925|22926|22927|22927|22931|22933|22933|22935|22937|22937|22938|22939|22940|22942|22943|22943|22944|22946|22946|22948|22950|22951|22952|39173|39174|98774|98777|98777|98778|101825|104916|104923|104923|104925|104926|104935|104952|104955|104956|104959|104965|104969|104972|104972|104973|104973|104976|104985|104990|104991|104993|104995|104996|104997|104997|104999|105001|105003|105011|105012|105016|105030|105032|105033|105037|105042|105055|105058|105069|105070|105085|105086|105101|105102|105109|105113|105113|105128|105129|105132|105145|105149|105152|105154|105156|105163|105166|105167|105172|105173|105173|105174|105177|105181|105189|105190|105192|105193|105194|105195|105199|105199|105200|105210|105212|105219|105220|105221|105227|105229|105230|105231|105233|105235|105238|105240|105244|105254|105260|105269|105274|105279|105287|105291|105292|105308|105311|105317|105317|105319|105320|105323|105327|105328|105330|105336|105337|105339|105341|105345|105349|105352|105359|105362|105365|105381|105394|105394|105405|105406|106465|139941|152790|152792|152794|152872|177387|177450|177451|177614|177618|191153|194216|209342|209342|217189|227509|227510|237631|237632|237633|237634|237635|237636|237637|237637|237638|237639|237640|237641|237642|237643|237644|237645|237646|237647|237648|237649|237650|237651|237652|237653|237654|237655|237657|237658|237659|237660|237661|237662|237663|237664|237665|237666|237667|237668|237669|237670|237671|237672|237673|237674|237675|237676|237677|237678|237679|237680|237682|237683|237684|237685|237686|237687|237688|237689|237690|237691|237692|237693|237694|237695|237696|237697|237698|237699|237700|237701|237702|237703|237704|237705|237706|237707|237708|237709|237710|253180|253181|253182|253184|253186|253187|253188|253190|259680|259682|267624|268056|268061|272578|272971|275240|305952|305953|305957|305964|305970|305971|305972|305985|309991|309997|310004|310005|310008|310011|310012|310016|315302|315315|315316|315319|315320|315321|315322|315324|315330|315332|315403|315407|315408|315410|315413|315416|315435|315436|315445|315446|315450|315454|315455|315456|315461|315462|315470|359278|361623|365433|406402|407456|417136|426740|431614|431615|431616|431618|431619|431621|431623|431626|431627|431851|498604|498850|536020|551522|581848|583381|612831|677405|711650|736761|751254|766898|766903|766908|779561|790002|790003|790004|790005|790006|790007|790008|790009|790010|790011|790012|790013|790014|790015|790016|790017|790018|790019|799030|818175|818177|835088|900096|900097|900098|900099|900100|900101|900102|900103|900104|900105|900106|900107|900108|900109|900110|900111|900112|900113|900114|900115|900116|900117|900118|900119|900120|900121|900122|900123|900124|900125|900126|900127|900128|905881|972858", + "upstreamId": "20266|22918|22919|22920|22921|22921|22922|22923|22925|22926|22927|22927|22931|22933|22933|22935|22937|22937|22938|22939|22940|22942|22943|22943|22944|22946|22946|22948|22950|22951|22952|39173|39174|98774|98777|98777|98778|101825|104916|104923|104923|104925|104926|104935|104952|104955|104956|104959|104965|104969|104972|104972|104973|104973|104976|104985|104990|104991|104993|104995|104996|104997|104997|104999|105001|105003|105011|105012|105016|105030|105032|105033|105037|105042|105055|105058|105069|105070|105085|105086|105101|105102|105109|105113|105113|105128|105129|105132|105145|105149|105152|105154|105156|105163|105166|105167|105172|105173|105173|105174|105177|105181|105189|105190|105192|105193|105194|105195|105199|105199|105200|105210|105212|105219|105220|105221|105227|105229|105230|105231|105233|105235|105238|105240|105244|105254|105260|105269|105274|105279|105287|105291|105292|105308|105311|105317|105317|105319|105320|105323|105327|105328|105330|105336|105337|105339|105341|105345|105349|105352|105359|105362|105365|105381|105394|105394|105405|105406|106465|139941|152790|152792|152794|152872|177387|177450|177451|177614|177618|191153|194216|209342|209342|217189|227509|227510|237631|237632|237633|237634|237635|237636|237637|237637|237638|237639|237640|237641|237642|237643|237644|237645|237646|237647|237648|237649|237650|237651|237652|237653|237654|237655|237657|237658|237659|237660|237661|237662|237663|237664|237665|237666|237667|237668|237669|237670|237671|237672|237673|237674|237675|237676|237677|237678|237679|237680|237682|237683|237684|237685|237686|237687|237688|237689|237690|237691|237692|237693|237694|237695|237696|237697|237698|237699|237700|237701|237702|237703|237704|237705|237706|237707|237708|237709|237710|253180|253181|253182|253184|253186|253187|253188|253190|259680|259682|267624|268056|268061|272578|272971|275240|305952|305953|305957|305964|305970|305971|305972|305985|309991|309997|310004|310005|310008|310011|310012|310016|315302|315315|315316|315319|315320|315321|315322|315324|315330|315332|315403|315407|315408|315410|315413|315416|315435|315436|315445|315446|315450|315454|315455|315456|315461|315462|315470|359278|361623|365433|406402|407456|417136|426740|431614|431615|431616|431618|431619|431621|431623|431626|431627|431851|498604|498850|536020|551522|581848|583381|612831|677405|711650|736761|751254|766898|766903|766908|779561|790002|790003|790004|790005|790006|790007|790008|790009|790010|790011|790012|790013|790014|790015|790016|790017|790018|790019|799030|818175|818177|835088|900096|900097|900098|900099|900100|900101|900102|900103|900104|900105|900106|900107|900108|900109|900110|900111|900112|900113|900114|900115|900116|900117|900118|900119|900120|900121|900122|900123|900124|900125|900126|900127|900128|905881|972858", "text": "Stargardt disease 1" }, { - "baseId": "20267|20267|20268|20269|20270|20270|20271|20272|20273|20274|20275|20278|34317|34319|34320|34323|34326|34328|34333|34333|34334|34335|34335|34336|34337|34339|188225|188225|188226|275812|275814|275815|275815|275816|275817|275827|275839|275840|275840|275850|275850|275851|275852|275852|275853|275855|275856|275860|275868|275872|275874|275977|275978|275982|275983|275988|275989|275995|275996|275998|276021|276022|276025|276026|276082|276105|276108|276127|276128|276138|276140|361606|512791|514974|514976|556548|576387|626571|861324|861325|861882|861883|861884|861885|861886|861887|861888|861889|861890|861891|861892|861893|861894|861895|861896|861897|861898|861899|861900|861901|861902|861903|861904|929949|929950|929951|941366", + "upstreamId": "20267|20267|20268|20269|20270|20270|20271|20272|20273|20274|20275|20278|34317|34319|34320|34323|34326|34328|34333|34333|34334|34335|34335|34336|34337|34339|188225|188225|188226|275812|275814|275815|275815|275816|275817|275827|275839|275840|275840|275850|275850|275851|275852|275852|275853|275855|275856|275860|275868|275872|275874|275977|275978|275982|275983|275988|275989|275995|275996|275998|276021|276022|276025|276026|276082|276105|276108|276127|276128|276138|276140|361606|512791|514974|514976|556548|576387|626571|861324|861325|861882|861883|861884|861885|861886|861887|861888|861889|861890|861891|861892|861893|861894|861895|861896|861897|861898|861899|861900|861901|861902|861903|861904|929949|929950|929951|941366", "text": "Amyotrophic lateral sclerosis type 10" }, { - "baseId": "20267|20270|34319|34333|34335|34339|188225|275815|275840|275850|275852|514974|514976|556548|626571|929949|929950|929951|941366", + "upstreamId": "20267|20270|34319|34333|34335|34339|188225|275815|275840|275850|275852|514974|514976|556548|626571|929949|929950|929951|941366", "text": "TARDBP-related frontotemporal dementia" }, { - "baseId": "20277|20278|34326", + "upstreamId": "20277|20278|34326", "text": "FRONTOTEMPORAL DEMENTIA WITH TDP43 INCLUSIONS, TARDBP-RELATED" }, { - "baseId": "20279|20280|20281|20282|20283|20284|20285|71202|71203|71204|71205|71206|71207|71208|71209|71210|71211|71213|192133|195377|265374|265891|329163|329167|329168|329172|329174|329175|329186|329188|329193|329198|329200|339322|339324|339328|339332|339335|339344|339356|339358|339364|339365|339367|339372|339373|339376|339388|345190|345192|345193|345194|345195|345198|345202|345206|345209|345212|345216|345218|346593|346597|346598|346599|346600|346602|346606|346608|346611|346617|353446|552285|576134|578551|584704|590368|612321|620597|653894|780129|877960|877961|877962|877963|877964|877965|877966|877967|877968|877969|877970|877971|877972|877973|877974|877975|877976|877977|877978|877979|877980|877981|877982|877983|877984|877985|877986|880555|880556|880557|880558|904190|920378|974518|974526|974527", + "upstreamId": "20279|20280|20281|20282|20283|20284|20285|71202|71203|71204|71205|71206|71207|71208|71209|71210|71211|71213|192133|195377|265374|265891|329163|329167|329168|329172|329174|329175|329186|329188|329193|329198|329200|339322|339324|339328|339332|339335|339344|339356|339358|339364|339365|339367|339372|339373|339376|339388|345190|345192|345193|345194|345195|345198|345202|345206|345209|345212|345216|345218|346593|346597|346598|346599|346600|346602|346606|346608|346611|346617|353446|552285|576134|578551|584704|590368|612321|620597|653894|780129|877960|877961|877962|877963|877964|877965|877966|877967|877968|877969|877970|877971|877972|877973|877974|877975|877976|877977|877978|877979|877980|877981|877982|877983|877984|877985|877986|880555|880556|880557|880558|904190|920378|974518|974526|974527", "text": "Mulibrey nanism syndrome" }, { - "baseId": "20286|20288|20290|132428|132429|132430|132431|132432|132433|132434|132435|132436|132437|132438|132439|132440|132441|132442|132443|132444|132445|132446|132447|132448|132449|132450|132451|132452|132453|132454|132455|132456|132457|132458|132459|132460|227515|227516|227517|227518|350779", + "upstreamId": "20286|20288|20290|132428|132429|132430|132431|132432|132433|132434|132435|132436|132437|132438|132439|132440|132441|132442|132443|132444|132445|132446|132447|132448|132449|132450|132451|132452|132453|132454|132455|132456|132457|132458|132459|132460|227515|227516|227517|227518|350779", "text": "Keratoconus 1" }, { - "baseId": "20286|20287|20288|20290|106790|106791|257338|334985|334986|334997|334998|335000|335001|335005|335015|335018|335022|335023|335025|335028|335035|335044|344805|344806|344808|344809|344810|344823|344824|344827|344828|349766|349768|349769|349771|349772|350772|350774|350775|350778|350779|350780|350781|350784|353582|360918|482202|778675|885912|885913|885914|885915|885916|885917|885918|885919|885920|885921|885922|885923|885924|885925|885926|885927|885928|885929|885930|885931|887435", + "upstreamId": "20286|20287|20288|20290|106790|106791|257338|334985|334986|334997|334998|335000|335001|335005|335015|335018|335022|335023|335025|335028|335035|335044|344805|344806|344808|344809|344810|344823|344824|344827|344828|349766|349768|349769|349771|349772|350772|350774|350775|350778|350779|350780|350781|350784|353582|360918|482202|778675|885912|885913|885914|885915|885916|885917|885918|885919|885920|885921|885922|885923|885924|885925|885926|885927|885928|885929|885930|885931|887435", "text": "Polymorphous corneal dystrophy" }, { - "baseId": "20287|226677|226678|226679|226680|705429", + "upstreamId": "20287|226677|226678|226679|226680|705429", "text": "Posterior polymorphous corneal dystrophy 1" }, { - "baseId": "20289|920607", + "upstreamId": "20289|920607", "text": "Craniofacial anomalies and anterior segment dysgenesis syndrome" }, { - "baseId": "20291|20292|20293|20298|20299|20301|137696|137698|262107|262108|262110|262111|262112|262113|262116|262117|262118|262119|262120|262122|262123|262126|262127|262128|262130|262131|262132|262133|262134|325523|325529|325530|325534|325536|325540|325541|325543|325547|325548|325550|325554|325555|325557|325569|325574|325584|325585|325587|325588|325598|325599|325609|325612|335203|335205|335207|335210|335214|335215|335216|335217|335221|335224|335227|335242|335244|341665|341669|341676|341678|341680|341681|341686|341689|341690|341697|341699|341704|341706|341708|341710|341715|341718|341720|341721|341725|343150|343151|343153|343158|343159|343162|343168|343177|343179|343192|343196|343198|343201|343202|343205|343211|343217|343219|343222|343224|343226|343227|343235|343236|744960|875381|875382|875383|875384|875385|875386|875387|875388|875389|875390|875391|875392|875393|875394|875395|875396|875397|875398|875399|875400|875401|875402|875403|875404|875405|875406|875407|875408|875409|875410|876676|966751", + "upstreamId": "20291|20292|20293|20298|20299|20301|137696|137698|262107|262108|262110|262111|262112|262113|262116|262117|262118|262119|262120|262122|262123|262126|262127|262128|262130|262131|262132|262133|262134|325523|325529|325530|325534|325536|325540|325541|325543|325547|325548|325550|325554|325555|325557|325569|325574|325584|325585|325587|325588|325598|325599|325609|325612|335203|335205|335207|335210|335214|335215|335216|335217|335221|335224|335227|335242|335244|341665|341669|341676|341678|341680|341681|341686|341689|341690|341697|341699|341704|341706|341708|341710|341715|341718|341720|341721|341725|343150|343151|343153|343158|343159|343162|343168|343177|343179|343192|343196|343198|343201|343202|343205|343211|343217|343219|343222|343224|343226|343227|343235|343236|744960|875381|875382|875383|875384|875385|875386|875387|875388|875389|875390|875391|875392|875393|875394|875395|875396|875397|875398|875399|875400|875401|875402|875403|875404|875405|875406|875407|875408|875409|875410|876676|966751", "text": "Cylindromatosis, familial" }, { - "baseId": "20293|20294|20297|20298|20300|137696|137698|262109|262114|262115|262124|262125|262129|325523|325529|325530|325534|325536|325540|325541|325543|325547|325548|325550|325554|325555|325557|325569|325574|325584|325585|325587|325588|325598|325599|325609|325612|335203|335205|335207|335210|335214|335215|335216|335217|335221|335224|335227|335242|335244|341665|341669|341676|341678|341680|341681|341686|341689|341690|341697|341699|341704|341706|341708|341710|341715|341718|341720|341721|341725|343150|343151|343153|343158|343159|343162|343168|343177|343179|343192|343196|343198|343201|343202|343205|343211|343217|343219|343222|343224|343226|343227|343235|343236|744960|875381|875382|875383|875384|875385|875386|875387|875388|875389|875390|875391|875392|875393|875394|875395|875396|875397|875398|875399|875400|875401|875402|875403|875404|875405|875406|875407|875408|875409|875410|876676", + "upstreamId": "20293|20294|20297|20298|20300|137696|137698|262109|262114|262115|262124|262125|262129|325523|325529|325530|325534|325536|325540|325541|325543|325547|325548|325550|325554|325555|325557|325569|325574|325584|325585|325587|325588|325598|325599|325609|325612|335203|335205|335207|335210|335214|335215|335216|335217|335221|335224|335227|335242|335244|341665|341669|341676|341678|341680|341681|341686|341689|341690|341697|341699|341704|341706|341708|341710|341715|341718|341720|341721|341725|343150|343151|343153|343158|343159|343162|343168|343177|343179|343192|343196|343198|343201|343202|343205|343211|343217|343219|343222|343224|343226|343227|343235|343236|744960|875381|875382|875383|875384|875385|875386|875387|875388|875389|875390|875391|875392|875393|875394|875395|875396|875397|875398|875399|875400|875401|875402|875403|875404|875405|875406|875407|875408|875409|875410|876676", "text": "Brooke-Spiegler syndrome" }, { - "baseId": "20295|20296|20297|20298|137696|137698|262121|325523|325529|325530|325534|325536|325540|325541|325543|325547|325548|325550|325554|325555|325557|325569|325574|325584|325585|325587|325588|325598|325599|325609|325612|335203|335205|335207|335210|335214|335215|335216|335217|335221|335224|335227|335242|341665|341669|341676|341678|341680|341686|341689|341690|341697|341699|341704|341706|341708|341710|341715|341718|341720|341721|341725|343150|343151|343153|343158|343159|343162|343168|343179|343192|343196|343198|343205|343211|343217|343219|343222|343226|343227|343235|343236|744960|875381|875382|875383|875384|875385|875386|875387|875388|875389|875390|875391|875392|875393|875394|875395|875396|875397|875398|875399|875400|875401|875402|875403|875404|875405|875406|875407|875408|875409|875410|876676", + "upstreamId": "20295|20296|20297|20298|137696|137698|262121|325523|325529|325530|325534|325536|325540|325541|325543|325547|325548|325550|325554|325555|325557|325569|325574|325584|325585|325587|325588|325598|325599|325609|325612|335203|335205|335207|335210|335214|335215|335216|335217|335221|335224|335227|335242|341665|341669|341676|341678|341680|341686|341689|341690|341697|341699|341704|341706|341708|341710|341715|341718|341720|341721|341725|343150|343151|343153|343158|343159|343162|343168|343179|343192|343196|343198|343205|343211|343217|343219|343222|343226|343227|343235|343236|744960|875381|875382|875383|875384|875385|875386|875387|875388|875389|875390|875391|875392|875393|875394|875395|875396|875397|875398|875399|875400|875401|875402|875403|875404|875405|875406|875407|875408|875409|875410|876676", "text": "Familial multiple trichoepitheliomata" }, { - "baseId": "20302|20303|20304|102897|199784|252151|252152|252153|252154|299237|299244|299246|299250|299256|299259|299260|299266|299271|299277|299285|299294|299295|299296|301639|301640|301644|301660|301673|301675|301680|301681|301683|301699|306067|306090|306120|306121|306138|306141|306143|306144|306145|306146|306151|306153|306155|306167|306169|306188|306331|306332|306334|306335|306361|306371|306378|306379|306382|306384|306395|306406|306407|306419|306422|306423|389650|521733|522045|560397|560610|563397|634657|634658|634659|634660|634661|634662|634663|634664|634665|634666|710233|710235|735454|749874|790598|804882|831625|831626|831627|831628|831629|831630|831631|831632|831633|831634|895495|895496|895497|895498|895499|895500|895501|895502|895503|895504|895505|895506|895507|895508|895509|895510|895511|895512|895513|895514|895515|895516|895517|895518|895519|895520|895521|895522|895523|895524|895525|895526|895527|895528|895529|895530|895531|895532|895533|895534|895535|895536|895537|895538|895539|895540|924273|924274|924275|933193|933194|933195|944905|944906|944907|944908|944909|954388|954389|954390|954391|954392", + "upstreamId": "20302|20303|20304|102897|199784|252151|252152|252153|252154|299237|299244|299246|299250|299256|299259|299260|299266|299271|299277|299285|299294|299295|299296|301639|301640|301644|301660|301673|301675|301680|301681|301683|301699|306067|306090|306120|306121|306138|306141|306143|306144|306145|306146|306151|306153|306155|306167|306169|306188|306331|306332|306334|306335|306361|306371|306378|306379|306382|306384|306395|306406|306407|306419|306422|306423|389650|521733|522045|560397|560610|563397|634657|634658|634659|634660|634661|634662|634663|634664|634665|634666|710233|710235|735454|749874|790598|804882|831625|831626|831627|831628|831629|831630|831631|831632|831633|831634|895495|895496|895497|895498|895499|895500|895501|895502|895503|895504|895505|895506|895507|895508|895509|895510|895511|895512|895513|895514|895515|895516|895517|895518|895519|895520|895521|895522|895523|895524|895525|895526|895527|895528|895529|895530|895531|895532|895533|895534|895535|895536|895537|895538|895539|895540|924273|924274|924275|933193|933194|933195|944905|944906|944907|944908|944909|954388|954389|954390|954391|954392", "text": "Familial hemophagocytic lymphohistiocytosis 4" }, { - "baseId": "20305|20306|20307|20308|142957|142958|142959|142960|142961|142962|142963|142964|142965|142966|192019|205145|251798|251800|251801|251802|251804|251805|251806|251807|251808|251809|251810|251811|251812|251813|264202|264220|295907|295910|295911|295912|295918|295919|295922|295931|295933|295937|297719|297720|297727|297732|297746|297751|297753|301638|301642|301645|301649|301657|301658|301659|301662|301664|301666|301667|301670|301819|301820|301821|301823|301826|301827|301828|301848|359552|360867|367978|368407|368425|368427|406656|421527|443704|443705|443707|454677|454680|454684|454688|454691|454703|454776|454777|455539|495252|496425|500709|513556|514505|520839|520841|520843|520844|521103|521104|521106|521109|521113|521243|521245|521247|521255|521303|521308|521310|560179|560181|560294|560296|560298|562909|562920|564888|564893|564903|576112|584762|612271|613507|613509|613510|614281|614282|620190|633553|633554|633555|633556|633557|633558|633559|633560|633561|633562|633563|633564|633565|633566|633567|633568|633569|633570|633571|633572|633573|633574|633575|633576|633577|633578|651312|651315|709714|709715|721288|734916|734917|734919|744027|749326|759369|764950|764951|782201|782203|782204|782205|819564|830428|830429|830430|830431|830432|830433|830434|830435|830436|830437|830438|830439|830440|830441|830442|830443|830444|830445|830446|830447|830448|830449|830450|851018|851020|851022|893275|893276|893277|893278|893279|893280|893281|893282|893283|893284|893285|893286|893287|893288|893289|893290|893291|893292|893293|896059|915006|923918|923919|923920|923921|923922|923923|923924|923925|923926|932757|932758|932759|932760|932761|932762|932763|932764|939993|939994|944441|944442|944443|944444|944445|944446|944447|944448|944449|944450|944451|944452|954069|954070|954071|954072|954073|954074|954075|960557|977213", + "upstreamId": "20305|20306|20307|20308|142957|142958|142959|142960|142961|142962|142963|142964|142965|142966|192019|205145|251798|251800|251801|251802|251804|251805|251806|251807|251808|251809|251810|251811|251812|251813|264202|264220|295907|295910|295911|295912|295918|295919|295922|295931|295933|295937|297719|297720|297727|297732|297746|297751|297753|301638|301642|301645|301649|301657|301658|301659|301662|301664|301666|301667|301670|301819|301820|301821|301823|301826|301827|301828|301848|359552|360867|367978|368407|368425|368427|406656|421527|443704|443705|443707|454677|454680|454684|454688|454691|454703|454776|454777|455539|495252|496425|500709|513556|514505|520839|520841|520843|520844|521103|521104|521106|521109|521113|521243|521245|521247|521255|521303|521308|521310|560179|560181|560294|560296|560298|562909|562920|564888|564893|564903|576112|584762|612271|613507|613509|613510|614281|614282|620190|633553|633554|633555|633556|633557|633558|633559|633560|633561|633562|633563|633564|633565|633566|633567|633568|633569|633570|633571|633572|633573|633574|633575|633576|633577|633578|651312|651315|709714|709715|721288|734916|734917|734919|744027|749326|759369|764950|764951|782201|782203|782204|782205|819564|830428|830429|830430|830431|830432|830433|830434|830435|830436|830437|830438|830439|830440|830441|830442|830443|830444|830445|830446|830447|830448|830449|830450|851018|851020|851022|893275|893276|893277|893278|893279|893280|893281|893282|893283|893284|893285|893286|893287|893288|893289|893290|893291|893292|893293|896059|915006|923918|923919|923920|923921|923922|923923|923924|923925|923926|932757|932758|932759|932760|932761|932762|932763|932764|939993|939994|944441|944442|944443|944444|944445|944446|944447|944448|944449|944450|944451|944452|954069|954070|954071|954072|954073|954074|954075|960557|977213", "text": "Netherton syndrome" }, { - "baseId": "20308", + "upstreamId": "20308", "text": "SPINK5 POLYMORPHISM" }, { - "baseId": "20309|20310|20311|552206", + "upstreamId": "20309|20310|20311|552206", "text": "Nephrolithiasis/osteoporosis, hypophosphatemic, 2" }, { - "baseId": "20310|20399|76488|181455|186603|192938|193488|200349|214364|244917|246919|250624|263997|312163|360862|390510|415480|443176|443179|514117|581999|624419|644712|697968|708009|708013|708015|724534|733144|791543|818211|874831|904075|904076|904077|904078|904079|904080|904081|904082|904083|904084|904085|904086|904092|904095|904096|965433", + "upstreamId": "20310|20399|76488|181455|186603|192938|193488|200349|214364|244917|246919|250624|263997|312163|360862|390510|415480|443176|443179|514117|581999|624419|644712|697968|708009|708013|708015|724534|733144|791543|818211|874831|904075|904076|904077|904078|904079|904080|904081|904082|904083|904084|904085|904086|904092|904095|904096|965433", "text": "Chronic kidney disease" }, { - "baseId": "20311|186616", + "upstreamId": "20311|186616", "text": "Hypophosphatemia" }, { - "baseId": "20311|20675|20683|20685|20970|27267|200501|236723|260799|539124|539125|539126|539135|539136|539143|539152|539154|969244", + "upstreamId": "20311|20675|20683|20685|20970|27267|200501|236723|260799|539124|539125|539126|539135|539136|539143|539152|539154|969244", "text": "Nephrolithiasis" }, { - "baseId": "20312|20313|20314|75333|135818|135819|192432|227921|314761|314779|314781|314805|314810|321476|321487|321489|321501|327605|327622|327637|327642|327651|328668|328736|328739|444869|480427|480431|481479|493811|493812|508867|537165|576143|576144|626208|792607|798645|868688|868689|868690|868691|903582|917388|920101|920102|920103|920104|920105|920106|920304|970943|971538", + "upstreamId": "20312|20313|20314|75333|135818|135819|192432|227921|314761|314779|314781|314805|314810|321476|321487|321489|321501|327605|327622|327637|327642|327651|328668|328736|328739|444869|480427|480431|481479|493811|493812|508867|537165|576143|576144|626208|792607|798645|868688|868689|868690|868691|903582|917388|920101|920102|920103|920104|920105|920106|920304|970943|971538", "text": "Spinocerebellar ataxia type 5" }, { - "baseId": "20315|48731|48732|48733|142485|142486|142487|211824|211835|211836|211838|339745|339747|339749|345475|345476|346822|346823|378660|482152|620602|878190|878191|878192|878193|880567", + "upstreamId": "20315|48731|48732|48733|142485|142486|142487|211824|211835|211836|211838|339745|339747|339749|345475|345476|346822|346823|378660|482152|620602|878190|878191|878192|878193|880567", "text": "Autosomal dominant progressive external ophthalmoplegia with mitochondrial DNA deletions 4" }, { - "baseId": "20316|20317|20318|20319|20320|20321|20322|33943|33944|33945|33946|33947|33948|33949|33950|33951|33952|33953|33954|33955|33956|33957|33958|33959|33960|33961|33962|33965|171814|175054|175055|175056|175332|175333|175335|177772|191863|207808|207809|207810|207811|229954|253959|253961|253965|273562|311879|311881|311892|311893|311898|311900|311901|311903|311905|311908|311909|311911|311916|317495|317496|317497|317500|317527|317530|317531|317536|317538|317542|317550|317553|317560|317571|317574|323519|323522|323544|323546|323549|323553|323554|323556|323557|324204|324205|324212|324215|324219|324222|324225|324229|324230|324232|324238|324239|324248|324252|324253|324258|324259|324262|429155|493975|503317|610684|615952|615953|615965|682847|682849|712545|737674|768101|783795|783804|801120|866696|866697|866698|866699|866700|866701|866702|866703|866704|866705|866706|866707|866708|866709|866710|866711|866712|866713|866714|866715|984079|984080", + "upstreamId": "20316|20317|20318|20319|20320|20321|20322|33943|33944|33945|33946|33947|33948|33949|33950|33951|33952|33953|33954|33955|33956|33957|33958|33959|33960|33961|33962|33965|171814|175054|175055|175056|175332|175333|175335|177772|191863|207808|207809|207810|207811|229954|253959|253961|253965|273562|311879|311881|311892|311893|311898|311900|311901|311903|311905|311908|311909|311911|311916|317495|317496|317497|317500|317527|317530|317531|317536|317538|317542|317550|317553|317560|317571|317574|323519|323522|323544|323546|323549|323553|323554|323556|323557|324204|324205|324212|324215|324219|324222|324225|324229|324230|324232|324238|324239|324248|324252|324253|324258|324259|324262|429155|493975|503317|610684|615952|615953|615965|682847|682849|712545|737674|768101|783795|783804|801120|866696|866697|866698|866699|866700|866701|866702|866703|866704|866705|866706|866707|866708|866709|866710|866711|866712|866713|866714|866715|984079|984080", "text": "Hermansky-Pudlak syndrome 1" }, { - "baseId": "20323", + "upstreamId": "20323", "text": "SKELETAL MUSCLE GLYCOGEN CONTENT AND METABOLISM QUANTITATIVE TRAIT LOCUS" }, { - "baseId": "20324", + "upstreamId": "20324", "text": "Immunodeficiency due to ficolin 3 deficiency" }, { - "baseId": "20325|205134|227224|227225|227226|227227|550855|609298|732968|732969|790128", + "upstreamId": "20325|205134|227224|227225|227226|227227|550855|609298|732968|732969|790128", "text": "Pigmented nodular adrenocortical disease, primary, 2" }, { - "baseId": "20327", + "upstreamId": "20327", "text": "AIDS, progression to" }, { - "baseId": "20328|102925|102926|174156|981566", + "upstreamId": "20328|102925|102926|174156|981566", "text": "Deafness, autosomal recessive 61" }, { - "baseId": "20329|20330|20331|190815|227212|236949|266305|266503|268573|270614|279610|279615|279616|279617|279618|279625|279629|279644|279645|279868|279869|279871|279872|279873|279874|279876|279878|281209|281238|281239|281240|281244|281245|281257|281271|281274|281275|281278|281289|281294|281296|281297|281298|389211|488693|584436|584445|620715|718804|718805|743737|761712|792714|863914|863915|863916|863917|863918|863919|865136|865137|865138|865139", + "upstreamId": "20329|20330|20331|190815|227212|236949|266305|266503|268573|270614|279610|279615|279616|279617|279618|279625|279629|279644|279645|279868|279869|279871|279872|279873|279874|279876|279878|281209|281238|281239|281240|281244|281245|281257|281271|281274|281275|281278|281289|281294|281296|281297|281298|389211|488693|584436|584445|620715|718804|718805|743737|761712|792714|863914|863915|863916|863917|863918|863919|865136|865137|865138|865139", "text": "Hypoparathyroidism-retardation-dysmorphism syndrome" }, { - "baseId": "20329|227212|620715|792714", + "upstreamId": "20329|227212|620715|792714", "text": "Autosomal recessive Kenny-Caffey syndrome" }, { - "baseId": "20332|20332|20333|20333|20333|20334|20335|20336|39398|49463|50190|50191|50192|50193|50193|50194|50195|50196|50197|50198|50199|50200|50202|50203|50204|50205|50206|84710|133288|133289|133290|133291|133292|133293|133294|133295|133297|133297|133298|133299|133300|133301|133302|133302|133303|133303|133304|136451|136508|138596|138598|138598|138599|138600|138601|138602|138603|138605|138606|139692|139693|139695|139695|139696|139697|139698|139699|139700|139701|139702|139703|139704|139705|142010|142011|142012|142013|142014|150505|150525|150528|150530|150541|150544|150588|150590|150591|150591|150638|150656|150742|150849|150859|150864|150960|150996|150996|151020|151053|151093|151114|151309|151328|151417|151422|151544|151547|151572|151576|151639|151647|151662|151684|151708|151783|151806|151850|151852|151985|152083|152116|152154|152297|152318|152450|152450|152461|152465|152515|152519|152526|152563|152574|152598|152655|152717|166273|166274|179925|179926|179929|179930|179930|179931|179932|179933|179934|179935|179937|179938|179939|179941|181644|181645|181646|181647|181648|181649|181650|181651|181652|181653|181654|181655|181656|181657|181658|181660|181661|181662|181664|181665|181666|181668|181669|181670|181672|181673|181675|181676|181678|181678|181679|181680|181681|181682|181683|181684|181685|181686|181687|181688|181692|181693|181694|181695|181696|181697|181698|181699|181700|181701|181702|181703|181704|181705|181706|181707|181708|181709|181710|181711|181712|181714|181715|181716|181717|181719|181720|181721|181722|181723|181724|181725|181726|181727|181728|181729|181730|181731|181732|181734|181735|181738|181740|181741|181742|181743|185954|185955|185956|185957|212089|212090|212091|212092|212093|212094|212095|212096|212097|212098|212099|212100|212101|212102|212103|212104|213511|221097|221098|221099|221100|221101|221102|221103|221104|221105|221106|221107|221108|232201|232202|232204|232205|232206|232207|232211|232212|232213|232214|232217|232220|232221|232223|232226|232227|232230|232234|232235|232236|232237|232238|232239|232240|232241|232242|232243|232244|232245|232248|232249|232250|232252|232253|232254|232255|232256|232257|232258|232259|232260|232261|232262|232264|232265|232266|232267|232268|232269|232271|232272|232272|232273|232274|232275|232276|232277|232279|232281|232282|232283|232284|232285|232286|232287|232288|232290|232291|232292|232293|232294|232295|232297|232299|238310|238311|238312|238313|238314|238317|238318|238319|238320|238321|238322|238323|238324|238325|238326|238327|238328|238329|238330|238331|238333|244266|244267|244269|244270|244272|244273|244274|259672|280684|280689|282434|282436|282445|282700|282701|282711|282713|357086|357087|357088|357089|357090|357091|357092|357093|359363|365112|365250|365259|365260|365300|365316|365326|365335|365336|365350|365360|390717|391274|391276|391278|391281|391286|391289|391291|391303|391304|391305|391307|391310|391311|391314|391320|391321|391322|391324|391325|391329|391331|391332|391335|391336|391337|391342|391345|391348|391350|391354|391358|391366|391367|391369|391374|391380|391383|391385|391388|391391|391394|391409|391439|391442|391443|391446|391447|391450|391461|391476|391479|391493|391502|391505|391516|391517|404747|405181|405182|405184|405188|405190|405197|405199|405200|405201|405203|405205|405206|405207|405208|405209|419301|419303|419304|420988|427132|432493|432494|432495|442858|446959|447962|447964|447966|447967|447969|447973|447975|447988|447990|447995|448010|448022|448024|448025|448027|448038|448040|448042|448045|448047|448049|448051|448085|448131|448133|448134|448143|448145|448151|448157|448163|448166|448171|448172|448177|448178|448179|448180|448185|448187|448189|448191|448193|448200|448201|448204|448295|448296|448299|448306|448307|448312|448316|448318|448320|448324|448326|448328|448330|448331|448333|448335|448336|448339|448341|448348|448352|472320|472324|472326|472330|472331|472332|472333|472335|472338|472341|472347|472350|472355|472356|472359|472363|472364|472369|472371|472374|472379|472380|472387|472390|472396|472397|472400|472405|472410|472414|472419|472423|472426|472431|472432|472434|472438|472441|472445|472448|472452|472453|472456|472457|472458|472464|472465|472466|472476|472477|472478|472484|472486|480495|482341|482362|482368|483122|483123|483125|483129|483131|483135|483144|483153|483161|483162|483164|483173|483193|483195|485586|486858|514857|514878|514904|515934|515937|515938|515939|515942|515944|515945|515947|515949|515951|515953|515955|515957|515959|515960|515961|515963|515965|515966|515970|515987|515991|515993|515994|516007|516011|516017|516059|516062|516064|516070|516075|516076|516078|516086|516089|516103|537683|541068|541075|541078|541091|541159|541197|541209|541210|551823|556879|556880|557075|557077|557079|557081|557083|557085|557087|557296|557298|557300|557302|557304|557306|557308|557310|557312|557351|557353|557355|557357|557359|557361|557363|557365|558533|558535|558537|558539|558541|558543|558545|558547|558549|558551|575656|575657|575658|575659|575660|578304|578305|611006|616091|616092|616098|616099|616108|616111|616112|616121|616122|616130|616133|619091|628066|628067|628068|628069|628070|628071|628072|628073|628074|628075|628076|628077|628078|628079|628080|628081|628082|628083|628084|628085|628086|628087|628088|628089|628090|628091|628092|628093|628094|628095|628096|628097|628098|628099|628100|628101|628102|628103|628104|628105|628106|628107|628108|628109|628110|628111|628112|628113|650593|650680|650681|650682|650683|650754|650763|650764|690623|690625|759038|761969|761974|761976|761978|761979|774531|774536|780709|780713|787013|789409|789410|789973|789974|789975|789976|789977|789978|789979|789980|789981|789982|789983|806609|806642|806653|806657|806675|806679|806681|806684|806694|806695|818973|818974|818975|818976|824165|824166|824167|824168|824169|824170|824171|824172|824173|824174|824175|824176|824177|824178|824179|824180|824181|824182|824183|824184|824185|824186|824187|824188|824189|824190|824191|824192|824193|824194|824195|824196|824197|850775|850796|850798|850800|850997|850999|851311|864507|907215|907223|907227|907232|922092|922093|922094|922095|922096|922097|922098|922099|922100|922101|922102|922103|922104|922105|922106|930566|930567|930568|930569|930570|930571|930572|930573|930574|930575|930576|930577|930578|930579|930580|930581|939817|939818|939819|939820|940641|940642|940643|940644|942005|942006|942007|942008|942009|942010|942011|942012|942013|942014|942015|952450|952451|952452|952453|952454|952455", + "upstreamId": "20332|20332|20333|20333|20333|20334|20335|20336|39398|49463|50190|50191|50192|50193|50193|50194|50195|50196|50197|50198|50199|50200|50202|50203|50204|50205|50206|84710|133288|133289|133290|133291|133292|133293|133294|133295|133297|133297|133298|133299|133300|133301|133302|133302|133303|133303|133304|136451|136508|138596|138598|138598|138599|138600|138601|138602|138603|138605|138606|139692|139693|139695|139695|139696|139697|139698|139699|139700|139701|139702|139703|139704|139705|142010|142011|142012|142013|142014|150505|150525|150528|150530|150541|150544|150588|150590|150591|150591|150638|150656|150742|150849|150859|150864|150960|150996|150996|151020|151053|151093|151114|151309|151328|151417|151422|151544|151547|151572|151576|151639|151647|151662|151684|151708|151783|151806|151850|151852|151985|152083|152116|152154|152297|152318|152450|152450|152461|152465|152515|152519|152526|152563|152574|152598|152655|152717|166273|166274|179925|179926|179929|179930|179930|179931|179932|179933|179934|179935|179937|179938|179939|179941|181644|181645|181646|181647|181648|181649|181650|181651|181652|181653|181654|181655|181656|181657|181658|181660|181661|181662|181664|181665|181666|181668|181669|181670|181672|181673|181675|181676|181678|181678|181679|181680|181681|181682|181683|181684|181685|181686|181687|181688|181692|181693|181694|181695|181696|181697|181698|181699|181700|181701|181702|181703|181704|181705|181706|181707|181708|181709|181710|181711|181712|181714|181715|181716|181717|181719|181720|181721|181722|181723|181724|181725|181726|181727|181728|181729|181730|181731|181732|181734|181735|181738|181740|181741|181742|181743|185954|185955|185956|185957|212089|212090|212091|212092|212093|212094|212095|212096|212097|212098|212099|212100|212101|212102|212103|212104|213511|221097|221098|221099|221100|221101|221102|221103|221104|221105|221106|221107|221108|232201|232202|232204|232205|232206|232207|232211|232212|232213|232214|232217|232220|232221|232223|232226|232227|232230|232234|232235|232236|232237|232238|232239|232240|232241|232242|232243|232244|232245|232248|232249|232250|232252|232253|232254|232255|232256|232257|232258|232259|232260|232261|232262|232264|232265|232266|232267|232268|232269|232271|232272|232272|232273|232274|232275|232276|232277|232279|232281|232282|232283|232284|232285|232286|232287|232288|232290|232291|232292|232293|232294|232295|232297|232299|238310|238311|238312|238313|238314|238317|238318|238319|238320|238321|238322|238323|238324|238325|238326|238327|238328|238329|238330|238331|238333|244266|244267|244269|244270|244272|244273|244274|259672|280684|280689|282434|282436|282445|282700|282701|282711|282713|357086|357087|357088|357089|357090|357091|357092|357093|359363|365112|365250|365259|365260|365300|365316|365326|365335|365336|365350|365360|390717|391274|391276|391278|391281|391286|391289|391291|391303|391304|391305|391307|391310|391311|391314|391320|391321|391322|391324|391325|391329|391331|391332|391335|391336|391337|391342|391345|391348|391350|391354|391358|391366|391367|391369|391374|391380|391383|391385|391388|391391|391394|391409|391439|391442|391443|391446|391447|391450|391461|391476|391479|391493|391502|391505|391516|391517|404747|405181|405182|405184|405188|405190|405197|405199|405200|405201|405203|405205|405206|405207|405208|405209|419301|419303|419304|420988|427132|432493|432494|432495|442858|446959|447962|447964|447966|447967|447969|447973|447975|447988|447990|447995|448010|448022|448024|448025|448027|448038|448040|448042|448045|448047|448049|448051|448085|448131|448133|448134|448143|448145|448151|448157|448163|448166|448171|448172|448177|448178|448179|448180|448185|448187|448189|448191|448193|448200|448201|448204|448295|448296|448299|448306|448307|448312|448316|448318|448320|448324|448326|448328|448330|448331|448333|448335|448336|448339|448341|448348|448352|472320|472324|472326|472330|472331|472332|472333|472335|472338|472341|472347|472350|472355|472356|472359|472363|472364|472369|472371|472374|472379|472380|472387|472390|472396|472397|472400|472405|472410|472414|472419|472423|472426|472431|472432|472434|472438|472441|472445|472448|472452|472453|472456|472457|472458|472464|472465|472466|472476|472477|472478|472484|472486|480495|482341|482362|482368|483122|483123|483125|483129|483131|483135|483144|483153|483161|483162|483164|483173|483193|483195|485586|486858|514857|514878|514904|515934|515937|515938|515939|515942|515944|515945|515947|515949|515951|515953|515955|515957|515959|515960|515961|515963|515965|515966|515970|515987|515991|515993|515994|516007|516011|516017|516059|516062|516064|516070|516075|516076|516078|516086|516089|516103|537683|541068|541075|541078|541091|541159|541197|541209|541210|551823|556879|556880|557075|557077|557079|557081|557083|557085|557087|557296|557298|557300|557302|557304|557306|557308|557310|557312|557351|557353|557355|557357|557359|557361|557363|557365|558533|558535|558537|558539|558541|558543|558545|558547|558549|558551|575656|575657|575658|575659|575660|578304|578305|611006|616091|616092|616098|616099|616108|616111|616112|616121|616122|616130|616133|619091|628066|628067|628068|628069|628070|628071|628072|628073|628074|628075|628076|628077|628078|628079|628080|628081|628082|628083|628084|628085|628086|628087|628088|628089|628090|628091|628092|628093|628094|628095|628096|628097|628098|628099|628100|628101|628102|628103|628104|628105|628106|628107|628108|628109|628110|628111|628112|628113|650593|650680|650681|650682|650683|650754|650763|650764|690623|690625|759038|761969|761974|761976|761978|761979|774531|774536|780709|780713|787013|789409|789410|789973|789974|789975|789976|789977|789978|789979|789980|789981|789982|789983|806609|806642|806653|806657|806675|806679|806681|806684|806694|806695|818973|818974|818975|818976|824165|824166|824167|824168|824169|824170|824171|824172|824173|824174|824175|824176|824177|824178|824179|824180|824181|824182|824183|824184|824185|824186|824187|824188|824189|824190|824191|824192|824193|824194|824195|824196|824197|850775|850796|850798|850800|850997|850999|851311|864507|907215|907223|907227|907232|922092|922093|922094|922095|922096|922097|922098|922099|922100|922101|922102|922103|922104|922105|922106|930566|930567|930568|930569|930570|930571|930572|930573|930574|930575|930576|930577|930578|930579|930580|930581|939817|939818|939819|939820|940641|940642|940643|940644|942005|942006|942007|942008|942009|942010|942011|942012|942013|942014|942015|952450|952451|952452|952453|952454|952455", "text": "MYH-associated polyposis" }, { - "baseId": "20332|20600|22859|23777|27270|27271|27617|27628|28311|28316|50032|50035|50076|94757|94763|94786|94786|94812|94816|94826|94826|94834|94836|94843|94898|94947|95036|133027|133050|133378|136694|136698|136700|136701|136702|136713|138590|150979|151013|151078|151946|152183|152204|180098|181998|182130|184193|212214|221251|221252|221295|232837|337250|362837|392813|392893|400267|405879|405897|427189|432523|451404|473109|486818|486819|486820|508809|518546|537660|553356|576119", + "upstreamId": "20332|20600|22859|23777|27270|27271|27617|27628|28311|28316|50032|50035|50076|94757|94763|94786|94786|94812|94816|94826|94826|94834|94836|94843|94898|94947|95036|133027|133050|133378|136694|136698|136700|136701|136702|136713|138590|150979|151013|151078|151946|152183|152204|180098|181998|182130|184193|212214|221251|221252|221295|232837|337250|362837|392813|392893|400267|405879|405897|427189|432523|451404|473109|486818|486819|486820|508809|518546|537660|553356|576119", "text": "Endometrial carcinoma" }, { - "baseId": "20332|20333|32616|32617|32618|32620|32622|32623|32625|32626|50193|133297|133302|133303|138598|139695|150591|150996|152450|179930|181678|232272|363111|363112", + "upstreamId": "20332|20333|32616|32617|32618|32620|32622|32623|32625|32626|50193|133297|133302|133303|138598|139695|150591|150996|152450|179930|181678|232272|363111|363112", "text": "Pilomatrixoma" }, { - "baseId": "20333|20602", + "upstreamId": "20333|20602", "text": "Endometrial cancer" }, { - "baseId": "20333", + "upstreamId": "20333", "text": "Small intestine carcinoid" }, { - "baseId": "20333", + "upstreamId": "20333", "text": "Colorectal adenomatous polyposis, autosomal recessive, with pilomatricomas" }, { - "baseId": "20333", + "upstreamId": "20333", "text": "Ovarian carcinoma" }, { - "baseId": "20335|24698|24706|24711|24712|24715|24716|24745|27406|27421|27541|28674|33882|50200|51408|51409|51412|51413|51415|51417|70573|93179|93180|93181|93182|93183|93184|93185|93186|93187|93188|93189|93190|93191|93192|93193|93194|93195|93196|93197|93198|93199|93200|93201|93202|93203|93204|93205|93206|93207|93208|93209|93210|93211|93212|93213|93214|93215|93216|93217|93218|93219|93220|93221|93222|93223|93224|93225|93226|93227|93228|93229|93230|93231|93232|93233|93234|93235|93236|93237|93238|93239|93240|93241|93242|93243|93244|93245|93246|93247|93248|93249|93250|93251|93252|93253|93254|93255|93256|93257|93258|93259|93260|93261|93262|93263|93264|93265|93266|93267|93268|93269|93270|93271|93272|93273|93274|93275|93276|93277|93278|93279|93280|93281|93282|93283|93284|93285|93286|93287|93288|93289|93290|93291|93292|93293|93294|93295|93296|93297|93298|93299|93300|93301|93302|93303|93304|93305|93306|93307|93308|93309|93310|93311|93312|93313|93314|93315|93316|93317|93318|93319|93320|93321|93322|93323|93324|93325|93326|93327|93328|93329|93330|93331|93332|93333|93334|93335|93336|93337|93338|93339|93340|93341|93342|93343|93344|93345|93346|93347|93348|93349|93350|93351|93352|93353|93354|93355|93356|93357|93358|93359|93360|93361|93362|93363|93364|93365|93366|93367|93368|93369|93370|93371|93372|93373|93374|93375|93376|93377|93378|93379|93380|93381|93382|93383|93384|93385|93386|93387|93388|93389|93390|93391|93392|93393|93394|93395|93396|93397|93398|93399|93400|93401|93402|93403|93404|93405|93406|93407|93408|93409|93410|93411|93412|93413|93414|93415|93416|93417|93418|93419|93420|93421|93422|93423|93424|93425|93426|93427|93428|93429|93430|93431|93432|93433|93434|93435|93436|93437|93438|93439|93440|93441|93442|93443|93444|93445|93446|93447|93448|93449|93450|93451|93452|93453|93454|93455|93456|93457|93458|93459|93460|93461|93462|93463|93464|93465|93466|93467|93468|93469|93470|93471|93472|93473|93474|93475|93476|93477|93478|93479|93480|93481|93482|93483|93484|93485|93486|93487|93488|93489|93490|93491|93492|93493|93494|93495|93496|93497|93498|93499|93500|93501|93502|93503|93504|93505|93506|93507|93508|93509|93510|93511|93512|93513|93514|93515|93516|93517|93518|93519|93520|93521|93522|93523|93524|93525|93526|93527|93528|93529|93530|93531|93532|93533|93534|93535|93536|93537|93538|93539|93540|93541|93542|93543|93544|93545|93546|93547|93548|93549|93550|93551|93552|93553|93554|93555|93556|93557|93558|93559|93560|93561|93562|93563|93564|93565|93566|93567|93568|93569|93570|93571|93572|93573|93574|93575|93576|93577|93578|93579|93580|93581|93582|93583|93584|93585|93586|93587|93588|93589|93590|93591|93592|93593|93594|93595|93596|93597|93598|93599|93600|93601|93602|93603|93604|93605|93606|93607|93608|93609|93610|93611|93612|93613|93614|93615|93616|93617|93618|93619|93620|93621|93622|93623|93624|93625|93626|93627|93628|93629|93630|93631|93632|93633|93634|93635|93636|93637|93638|93639|93640|93641|93642|93643|93644|93645|93646|93647|93648|93649|93650|93651|93652|93653|93654|93655|93656|93657|93658|93659|93660|93661|93662|93663|93664|93665|93666|93667|93668|93669|93670|93671|93672|93673|93674|93675|93676|93677|93678|93679|93680|93681|93682|93683|93684|93685|93686|93687|93688|93689|93690|93691|93692|93693|93694|93695|93696|93697|93698|93699|93700|93701|93702|93703|93704|93705|93706|93707|93708|93709|93710|93711|93712|93713|93714|93715|93716|93717|93718|93719|93720|93721|93722|93723|93724|93725|93726|93727|93728|93729|93730|93731|93732|93733|93734|93735|93736|93737|93738|93739|93740|93741|93742|93743|93744|93745|93746|93747|93748|93749|93750|93751|93752|93753|93754|93755|93756|93757|93758|93759|93760|93761|93762|93763|93764|93765|93766|93767|93768|93769|93770|93771|93772|93773|93774|93775|93776|93777|93778|93779|93780|93781|93782|93783|93784|93785|93786|93787|93788|93789|93790|93791|93792|93793|93794|93795|93796|93797|93798|93799|93800|93801|93802|93803|93804|93805|93806|93807|93808|93809|93810|93811|93812|93813|93814|93815|93816|93817|93818|93819|93820|93821|93822|93823|93824|93825|93826|93827|93828|93829|93830|93831|93832|93833|93834|93835|93836|93837|93838|93839|93840|93841|93842|93843|93844|93845|93846|93847|93848|93849|93850|93851|93852|93853|93854|93855|93856|93857|93858|93859|93860|93861|93862|93863|93864|93865|93866|93867|93868|93869|93870|93871|93872|93873|93874|93875|93876|93877|93878|93879|93880|93881|93882|93883|93884|93885|93886|93887|93888|93889|93890|93891|93892|93893|93894|93895|93896|93897|93898|93899|93900|93901|93902|93903|93904|93905|93906|93907|93908|93909|93910|93911|93912|93913|93914|93915|93916|93917|93918|93919|93920|93921|93922|93923|93924|93925|93926|93927|93928|93929|93930|93931|93932|93933|93934|93935|93936|93937|93938|93939|93940|93941|93942|93943|93944|93945|93946|93947|93948|93949|93950|93951|93952|93953|93954|93955|93956|93957|93958|93959|93960|93961|93962|93963|93964|93965|93966|93967|93968|93969|93970|93971|93972|93973|93974|93975|93976|93977|93978|93979|93980|93981|93982|93983|93984|93985|93986|93987|93988|93989|93990|93991|93992|93993|93994|93995|93996|93997|93998|93999|94000|94001|94002|94003|94004|94005|94006|94007|94008|94009|94010|94011|94012|94013|94014|94015|94016|94017|94018|94019|94020|94021|94022|94023|94024|94025|94026|94027|94028|94029|94030|94031|94032|94033|94034|94035|94036|94037|94038|94039|94040|94041|94042|94043|94044|94045|94046|94047|94048|94049|94050|94051|94052|94053|94054|94055|94056|94057|94058|94059|94060|94061|94062|94063|94064|94065|94066|94067|94068|94069|94070|94071|94072|94073|94074|94075|94076|94077|94078|94079|94080|94081|94082|94083|94084|94085|94086|94087|94088|94089|94090|94091|94092|94093|94094|94095|94096|94097|94098|94099|94100|94101|94102|94103|94104|94105|94106|94107|94108|94109|94110|94111|94112|94113|94114|94115|94116|94117|94118|94119|94120|94121|94122|94123|94124|94125|94126|94127|94128|94129|94130|94131|94132|94133|94134|94135|94136|94137|94138|94139|94140|94141|94142|94143|94144|94145|94146|94147|94148|94149|94150|94151|94152|94153|94154|94155|94156|94157|94158|94159|94160|94161|94162|94163|94164|94165|94166|94167|94168|94169|94170|94171|94172|94173|94174|94175|94176|94177|94178|94179|94180|94181|94182|94183|94184|94185|94186|94187|94188|94189|94190|94191|94192|94193|94222|94223|95067|96585|97337|132752|132772|138599|222223|222231|222236|222238|222829|222834|226350|227197|241269|241270|241346|241423|241425|241435|241439|241456|241471|241517|241518|243398|243401|243405|243480|243546|260013|394312|398544|398579|398709|398718|398758|398903|398939|399010|399274|399358|403862|403996|404082|410705|432714|461889|462005|462030|462480|463939|463940|464778|471179|476770|527022|528558|533272|569199|571376|575858|575859|575860|575861|575862|575863|575864|575865|575866|576042|576043|576044|652497|820679|820680|820681|820682|820683|820684|820685|861546|861548", + "upstreamId": "20335|24698|24706|24711|24712|24715|24716|24745|27406|27421|27541|28674|33882|50200|51408|51409|51412|51413|51415|51417|70573|93179|93180|93181|93182|93183|93184|93185|93186|93187|93188|93189|93190|93191|93192|93193|93194|93195|93196|93197|93198|93199|93200|93201|93202|93203|93204|93205|93206|93207|93208|93209|93210|93211|93212|93213|93214|93215|93216|93217|93218|93219|93220|93221|93222|93223|93224|93225|93226|93227|93228|93229|93230|93231|93232|93233|93234|93235|93236|93237|93238|93239|93240|93241|93242|93243|93244|93245|93246|93247|93248|93249|93250|93251|93252|93253|93254|93255|93256|93257|93258|93259|93260|93261|93262|93263|93264|93265|93266|93267|93268|93269|93270|93271|93272|93273|93274|93275|93276|93277|93278|93279|93280|93281|93282|93283|93284|93285|93286|93287|93288|93289|93290|93291|93292|93293|93294|93295|93296|93297|93298|93299|93300|93301|93302|93303|93304|93305|93306|93307|93308|93309|93310|93311|93312|93313|93314|93315|93316|93317|93318|93319|93320|93321|93322|93323|93324|93325|93326|93327|93328|93329|93330|93331|93332|93333|93334|93335|93336|93337|93338|93339|93340|93341|93342|93343|93344|93345|93346|93347|93348|93349|93350|93351|93352|93353|93354|93355|93356|93357|93358|93359|93360|93361|93362|93363|93364|93365|93366|93367|93368|93369|93370|93371|93372|93373|93374|93375|93376|93377|93378|93379|93380|93381|93382|93383|93384|93385|93386|93387|93388|93389|93390|93391|93392|93393|93394|93395|93396|93397|93398|93399|93400|93401|93402|93403|93404|93405|93406|93407|93408|93409|93410|93411|93412|93413|93414|93415|93416|93417|93418|93419|93420|93421|93422|93423|93424|93425|93426|93427|93428|93429|93430|93431|93432|93433|93434|93435|93436|93437|93438|93439|93440|93441|93442|93443|93444|93445|93446|93447|93448|93449|93450|93451|93452|93453|93454|93455|93456|93457|93458|93459|93460|93461|93462|93463|93464|93465|93466|93467|93468|93469|93470|93471|93472|93473|93474|93475|93476|93477|93478|93479|93480|93481|93482|93483|93484|93485|93486|93487|93488|93489|93490|93491|93492|93493|93494|93495|93496|93497|93498|93499|93500|93501|93502|93503|93504|93505|93506|93507|93508|93509|93510|93511|93512|93513|93514|93515|93516|93517|93518|93519|93520|93521|93522|93523|93524|93525|93526|93527|93528|93529|93530|93531|93532|93533|93534|93535|93536|93537|93538|93539|93540|93541|93542|93543|93544|93545|93546|93547|93548|93549|93550|93551|93552|93553|93554|93555|93556|93557|93558|93559|93560|93561|93562|93563|93564|93565|93566|93567|93568|93569|93570|93571|93572|93573|93574|93575|93576|93577|93578|93579|93580|93581|93582|93583|93584|93585|93586|93587|93588|93589|93590|93591|93592|93593|93594|93595|93596|93597|93598|93599|93600|93601|93602|93603|93604|93605|93606|93607|93608|93609|93610|93611|93612|93613|93614|93615|93616|93617|93618|93619|93620|93621|93622|93623|93624|93625|93626|93627|93628|93629|93630|93631|93632|93633|93634|93635|93636|93637|93638|93639|93640|93641|93642|93643|93644|93645|93646|93647|93648|93649|93650|93651|93652|93653|93654|93655|93656|93657|93658|93659|93660|93661|93662|93663|93664|93665|93666|93667|93668|93669|93670|93671|93672|93673|93674|93675|93676|93677|93678|93679|93680|93681|93682|93683|93684|93685|93686|93687|93688|93689|93690|93691|93692|93693|93694|93695|93696|93697|93698|93699|93700|93701|93702|93703|93704|93705|93706|93707|93708|93709|93710|93711|93712|93713|93714|93715|93716|93717|93718|93719|93720|93721|93722|93723|93724|93725|93726|93727|93728|93729|93730|93731|93732|93733|93734|93735|93736|93737|93738|93739|93740|93741|93742|93743|93744|93745|93746|93747|93748|93749|93750|93751|93752|93753|93754|93755|93756|93757|93758|93759|93760|93761|93762|93763|93764|93765|93766|93767|93768|93769|93770|93771|93772|93773|93774|93775|93776|93777|93778|93779|93780|93781|93782|93783|93784|93785|93786|93787|93788|93789|93790|93791|93792|93793|93794|93795|93796|93797|93798|93799|93800|93801|93802|93803|93804|93805|93806|93807|93808|93809|93810|93811|93812|93813|93814|93815|93816|93817|93818|93819|93820|93821|93822|93823|93824|93825|93826|93827|93828|93829|93830|93831|93832|93833|93834|93835|93836|93837|93838|93839|93840|93841|93842|93843|93844|93845|93846|93847|93848|93849|93850|93851|93852|93853|93854|93855|93856|93857|93858|93859|93860|93861|93862|93863|93864|93865|93866|93867|93868|93869|93870|93871|93872|93873|93874|93875|93876|93877|93878|93879|93880|93881|93882|93883|93884|93885|93886|93887|93888|93889|93890|93891|93892|93893|93894|93895|93896|93897|93898|93899|93900|93901|93902|93903|93904|93905|93906|93907|93908|93909|93910|93911|93912|93913|93914|93915|93916|93917|93918|93919|93920|93921|93922|93923|93924|93925|93926|93927|93928|93929|93930|93931|93932|93933|93934|93935|93936|93937|93938|93939|93940|93941|93942|93943|93944|93945|93946|93947|93948|93949|93950|93951|93952|93953|93954|93955|93956|93957|93958|93959|93960|93961|93962|93963|93964|93965|93966|93967|93968|93969|93970|93971|93972|93973|93974|93975|93976|93977|93978|93979|93980|93981|93982|93983|93984|93985|93986|93987|93988|93989|93990|93991|93992|93993|93994|93995|93996|93997|93998|93999|94000|94001|94002|94003|94004|94005|94006|94007|94008|94009|94010|94011|94012|94013|94014|94015|94016|94017|94018|94019|94020|94021|94022|94023|94024|94025|94026|94027|94028|94029|94030|94031|94032|94033|94034|94035|94036|94037|94038|94039|94040|94041|94042|94043|94044|94045|94046|94047|94048|94049|94050|94051|94052|94053|94054|94055|94056|94057|94058|94059|94060|94061|94062|94063|94064|94065|94066|94067|94068|94069|94070|94071|94072|94073|94074|94075|94076|94077|94078|94079|94080|94081|94082|94083|94084|94085|94086|94087|94088|94089|94090|94091|94092|94093|94094|94095|94096|94097|94098|94099|94100|94101|94102|94103|94104|94105|94106|94107|94108|94109|94110|94111|94112|94113|94114|94115|94116|94117|94118|94119|94120|94121|94122|94123|94124|94125|94126|94127|94128|94129|94130|94131|94132|94133|94134|94135|94136|94137|94138|94139|94140|94141|94142|94143|94144|94145|94146|94147|94148|94149|94150|94151|94152|94153|94154|94155|94156|94157|94158|94159|94160|94161|94162|94163|94164|94165|94166|94167|94168|94169|94170|94171|94172|94173|94174|94175|94176|94177|94178|94179|94180|94181|94182|94183|94184|94185|94186|94187|94188|94189|94190|94191|94192|94193|94222|94223|95067|96585|97337|132752|132772|138599|222223|222231|222236|222238|222829|222834|226350|227197|241269|241270|241346|241423|241425|241435|241439|241456|241471|241517|241518|243398|243401|243405|243480|243546|260013|394312|398544|398579|398709|398718|398758|398903|398939|399010|399274|399358|403862|403996|404082|410705|432714|461889|462005|462030|462480|463939|463940|464778|471179|476770|527022|528558|533272|569199|571376|575858|575859|575860|575861|575862|575863|575864|575865|575866|576042|576043|576044|652497|820679|820680|820681|820682|820683|820684|820685|861546|861548", "text": "Familial colorectal cancer" }, { - "baseId": "20340|134313|271092|508907|791884|919809", + "upstreamId": "20340|134313|271092|508907|791884|919809", "text": "Congenital cataracts-facial dysmorphism-neuropathy syndrome" }, { - "baseId": "20341|20342|20343|20344|20345|20346|45539|45540|45541|199804|223590|237009|256082|260152|265347|327421|327422|327424|327427|343527|343532|345080|351719|433976|445699|445700|466345|467290|530597|530601|530603|530604|530752|530756|530870|530872|530877|531104|531112|537279|568706|568707|568718|570792|570794|574311|574315|574316|610056|610057|610058|614432|614432|624619|645324|645325|645326|645327|645328|645329|645330|645331|645332|645333|645334|645335|645336|645337|645338|645339|645340|652888|703985|715260|727012|740596|740597|771262|785472|785473|791679|844732|844733|844734|844735|844736|844737|844738|844739|844740|844741|851695|852694|918594|928068|928069|928070|937736|937737|940385|949714|949715|949716|960873|961973", + "upstreamId": "20341|20342|20343|20344|20345|20346|45539|45540|45541|199804|223590|237009|256082|260152|265347|327421|327422|327424|327427|343527|343532|345080|351719|433976|445699|445700|466345|467290|530597|530601|530603|530604|530752|530756|530870|530872|530877|531104|531112|537279|568706|568707|568718|570792|570794|574311|574315|574316|610056|610057|610058|614432|614432|624619|645324|645325|645326|645327|645328|645329|645330|645331|645332|645333|645334|645335|645336|645337|645338|645339|645340|652888|703985|715260|727012|740596|740597|771262|785472|785473|791679|844732|844733|844734|844735|844736|844737|844738|844739|844740|844741|851695|852694|918594|928068|928069|928070|937736|937737|940385|949714|949715|949716|960873|961973", "text": "Common variable immunodeficiency 2" }, { - "baseId": "20341|20342|20344|199804|614432|844739", + "upstreamId": "20341|20342|20344|199804|614432|844739", "text": "Immunoglobulin A deficiency 2" }, { - "baseId": "20341|20342|20343|45539|45540|237009|256081|256082|327421|327422|327424|327425|327427|337287|337290|337293|343519|343523|343527|343532|345070|345079|345080", + "upstreamId": "20341|20342|20343|45539|45540|237009|256081|256082|327421|327422|327424|327425|327427|337287|337290|337293|343519|343523|343527|343532|345070|345079|345080", "text": "Common Variable Immune Deficiency, Dominant" }, { - "baseId": "20342|928530|928531|928532|938221|938222|950285|950286|950287|958306|958307|958308|958309", + "upstreamId": "20342|928530|928531|928532|938221|938222|950285|950286|950287|958306|958307|958308|958309", "text": "Common variable agammaglobulinemia" }, { - "baseId": "20348|20348|20348|20349|20355|34521|34521|34523|34523|38435|38435|101817|101817|101817|101818|101818|101819|101819|106463|106463|213466|213466|213467|243573|257301|257302|257303|257303|257304|334757|334759|334763|334765|334780|334781|334783|334785|344635|344636|344641|344645|344647|344655|349613|349613|349614|349616|349617|349625|349626|349630|350629|350630|350634|350635|350637|350639|350640|350642|350643|354064|404130|404130|471361|471361|471362|471362|488900|488900|490282|491001|534000|575074|648569|648570|648571|648572|684861|684862|791968|791969|848197|848198|848198|848199|848200|848201|848202|848203|848204|848205|848206|848207|848208|851841|852995|885783|885784|885785|885786|885787|885788|885789|885790|885791|885792|885793|885794|885795|885796|929140|938904|938905|938906|938907|950977|950978|950979|950980|950981|950982|950983|950984|950985|958771|958772|958773|958774|958775|958776|958777|958778", + "upstreamId": "20348|20348|20348|20349|20355|34521|34521|34523|34523|38435|38435|101817|101817|101817|101818|101818|101819|101819|106463|106463|213466|213466|213467|243573|257301|257302|257303|257303|257304|334757|334759|334763|334765|334780|334781|334783|334785|344635|344636|344641|344645|344647|344655|349613|349613|349614|349616|349617|349625|349626|349630|350629|350630|350634|350635|350637|350639|350640|350642|350643|354064|404130|404130|471361|471361|471362|471362|488900|488900|490282|491001|534000|575074|648569|648570|648571|648572|684861|684862|791968|791969|848197|848198|848198|848199|848200|848201|848202|848203|848204|848205|848206|848207|848208|851841|852995|885783|885784|885785|885786|885787|885788|885789|885790|885791|885792|885793|885794|885795|885796|929140|938904|938905|938906|938907|950977|950978|950979|950980|950981|950982|950983|950984|950985|958771|958772|958773|958774|958775|958776|958777|958778", "text": "McKusick-Kaufman syndrome" }, { - "baseId": "20348|20348|20350|20351|20352|20353|20354|20355|34521|34523|101817|101817|101818|101819|106463|213466|257301|257302|257303|334757|334759|334763|334765|334780|334781|334783|344635|344636|344641|344645|344647|349613|349614|349616|349617|349625|349626|349630|350629|350630|350634|350635|350637|350640|350642|350643|404130|471361|471362|488900|513146|539984|788934|848198|885783|885784|885785|885786|885787|885788|885789|885790|885791|885792|885793|885794|885795|885796|980394", + "upstreamId": "20348|20348|20350|20351|20352|20353|20354|20355|34521|34523|101817|101817|101818|101819|106463|213466|257301|257302|257303|334757|334759|334763|334765|334780|334781|334783|344635|344636|344641|344645|344647|349613|349614|349616|349617|349625|349626|349630|350629|350630|350634|350635|350637|350640|350642|350643|404130|471361|471362|488900|513146|539984|788934|848198|885783|885784|885785|885786|885787|885788|885789|885790|885791|885792|885793|885794|885795|885796|980394", "text": "Bardet-Biedl syndrome 6" }, { - "baseId": "20360|28399", + "upstreamId": "20360|28399", "text": "Asthma, aspirin-induced, susceptibility to" }, { - "baseId": "20360", + "upstreamId": "20360", "text": "Asthma and nasal polyps" }, { - "baseId": "20361|20362|429123|815875", + "upstreamId": "20361|20362|429123|815875", "text": "Diarrhea 4, malabsorptive, congenital" }, { - "baseId": "20365|20366|20369|20370|20371|32840|39397|134235|139887|139888|139889|142821|142822|142824|169108|169109|169110|169114|169116|169117|169118|169119|169120|186928|190657|192859|244926|268676|322184|322186|322193|322195|322198|322202|322203|322204|322206|322220|322223|322228|322229|322237|322238|322244|322248|322255|322257|322259|322262|331497|331498|331503|331504|331507|331510|331513|331514|331516|331520|331521|331523|331526|331532|331534|331536|331538|331543|331544|331547|331551|331553|331557|331559|331562|331570|338405|338411|338418|338419|338420|338430|338431|338438|338444|338449|338455|338458|338466|338475|338480|338488|338496|338497|338498|340173|340175|340180|340182|340183|340189|340191|340192|340193|340194|340199|340206|340208|340211|340213|340222|340223|340228|340229|340232|340234|340236|340237|340242|358277|358278|358279|358280|358281|358282|358283|358284|358285|358286|358287|358288|358289|358290|358291|358292|358293|360234|361213|373373|374030|374035|374038|374463|376378|415415|429644|433917|434645|513628|547385|547386|547388|547462|547463|547470|547474|547477|547655|547657|547661|547662|547674|547946|547963|547970|547974|547978|547984|547986|547992|548000|656286|688396|688397|693657|739565|739568|754388|770108|784890|784891|784893|801723|804746|873201|873202|873203|873204|873205|873206|873207|873208|873209|873210|873211|873212|873213|873214|873215|873216|873217|873218|873219|873220|873221|873222|873223|873224|873225|873226|873227|873228|873229|873230|873231|873232|873233|873234|873235|873236|873237|873238|873239|873240|873241|873242|873243|873244|873245|873246|873247|873248|873249|873250|873251|873252|873253|876489|876490|876491|979559|979560|979561|979562|979563|979564|979565|979566|979567|979568|979569|979570|979571|979572|979573|979574|979575|979576|979577|979578|979579|979580|979581|979582|979583|979584|979585|979586|979587|979588|979589|979590|979591|979592", + "upstreamId": "20365|20366|20369|20370|20371|32840|39397|134235|139887|139888|139889|142821|142822|142824|169108|169109|169110|169114|169116|169117|169118|169119|169120|186928|190657|192859|244926|268676|322184|322186|322193|322195|322198|322202|322203|322204|322206|322220|322223|322228|322229|322237|322238|322244|322248|322255|322257|322259|322262|331497|331498|331503|331504|331507|331510|331513|331514|331516|331520|331521|331523|331526|331532|331534|331536|331538|331543|331544|331547|331551|331553|331557|331559|331562|331570|338405|338411|338418|338419|338420|338430|338431|338438|338444|338449|338455|338458|338466|338475|338480|338488|338496|338497|338498|340173|340175|340180|340182|340183|340189|340191|340192|340193|340194|340199|340206|340208|340211|340213|340222|340223|340228|340229|340232|340234|340236|340237|340242|358277|358278|358279|358280|358281|358282|358283|358284|358285|358286|358287|358288|358289|358290|358291|358292|358293|360234|361213|373373|374030|374035|374038|374463|376378|415415|429644|433917|434645|513628|547385|547386|547388|547462|547463|547470|547474|547477|547655|547657|547661|547662|547674|547946|547963|547970|547974|547978|547984|547986|547992|548000|656286|688396|688397|693657|739565|739568|754388|770108|784890|784891|784893|801723|804746|873201|873202|873203|873204|873205|873206|873207|873208|873209|873210|873211|873212|873213|873214|873215|873216|873217|873218|873219|873220|873221|873222|873223|873224|873225|873226|873227|873228|873229|873230|873231|873232|873233|873234|873235|873236|873237|873238|873239|873240|873241|873242|873243|873244|873245|873246|873247|873248|873249|873250|873251|873252|873253|876489|876490|876491|979559|979560|979561|979562|979563|979564|979565|979566|979567|979568|979569|979570|979571|979572|979573|979574|979575|979576|979577|979578|979579|979580|979581|979582|979583|979584|979585|979586|979587|979588|979589|979590|979591|979592", "text": "Agenesis of the corpus callosum with peripheral neuropathy" }, { - "baseId": "20372", + "upstreamId": "20372", "text": "BETA-GLUCOPYRANOSIDE TASTING" }, { - "baseId": "20372", + "upstreamId": "20372", "text": "Alcohol dependence, susceptibility to" }, { - "baseId": "20373|20374", + "upstreamId": "20373|20374", "text": "RETINAL DYSTROPHY, EARLY-ONSET SEVERE, LRAT-RELATED" }, { - "baseId": "20375|105677|106451|177818|292531|292538|292539|292546|292547|292553|292554|292555|292556|292561|292597|292599|293944|293946|293963|293972|293973|297322|297323|297324|297325|297327|297328|297333|297335|297336|297342|297352|297354|297356|297357|297361|297362|297377|297378|297379|297386|297406|297407|828896|890281|890282|890283|890284|890285|890286|890287|890288|890289|890290|890291|890292|890293|890294|890295|890296|890297|890298|890299|890300|890301|890302|890303|890304|890305|890306|890307|890308|890309|890310|890311|890312|890313|890314|890315|890316|966582|966583|966584|966585|966595", + "upstreamId": "20375|105677|106451|177818|292531|292538|292539|292546|292547|292553|292554|292555|292556|292561|292597|292599|293944|293946|293963|293972|293973|297322|297323|297324|297325|297327|297328|297333|297335|297336|297342|297352|297354|297356|297357|297361|297362|297377|297378|297379|297386|297406|297407|828896|890281|890282|890283|890284|890285|890286|890287|890288|890289|890290|890291|890292|890293|890294|890295|890296|890297|890298|890299|890300|890301|890302|890303|890304|890305|890306|890307|890308|890309|890310|890311|890312|890313|890314|890315|890316|966582|966583|966584|966585|966595", "text": "Leber congenital amaurosis 14" }, { - "baseId": "20375", + "upstreamId": "20375", "text": "RETINITIS PIGMENTOSA, JUVENILE, LRAT-RELATED" }, { - "baseId": "20376|614251", + "upstreamId": "20376|614251", "text": "Birbeck granule deficiency" }, { - "baseId": "20384", + "upstreamId": "20384", "text": "KLOTHO POLYMORPHISM" }, { - "baseId": "20385|75515|319374|319378|319380|319384|319386|319390|319392|319393|319398|319405|319409|319411|319412|319414|319415|327934|327935|327936|327943|327945|327947|327959|327960|327962|327966|327967|334219|334231|334236|334238|334247|334248|334249|334253|334254|334256|334263|334271|334285|334288|334290|334291|335957|335958|335959|335965|335972|335976|335978|335982|335984|335985|335989|335998|336002|336003|336010|620858|725470|871078|871079|871080|871081|871082|871083|871084|871085|871086|871087|871088|871089|871090|871091|871092|871093|871094|871095|871096|871097|871098|871099|871100|871101|871102|871103|871104|871105|871106|871107|871108|871109|871110|871111|871112|871113|871114|871115|871116|871117|871118|871119|871120|871121|871122|871123|871124|871125|871126|871127|871128|871129|871130|871131|871132|871133|872327", + "upstreamId": "20385|75515|319374|319378|319380|319384|319386|319390|319392|319393|319398|319405|319409|319411|319412|319414|319415|327934|327935|327936|327943|327945|327947|327959|327960|327962|327966|327967|334219|334231|334236|334238|334247|334248|334249|334253|334254|334256|334263|334271|334285|334288|334290|334291|335957|335958|335959|335965|335972|335976|335978|335982|335984|335985|335989|335998|336002|336003|336010|620858|725470|871078|871079|871080|871081|871082|871083|871084|871085|871086|871087|871088|871089|871090|871091|871092|871093|871094|871095|871096|871097|871098|871099|871100|871101|871102|871103|871104|871105|871106|871107|871108|871109|871110|871111|871112|871113|871114|871115|871116|871117|871118|871119|871120|871121|871122|871123|871124|871125|871126|871127|871128|871129|871130|871131|871132|871133|872327", "text": "Hyperphosphatemic familial tumoral calcinosis 3" }, { - "baseId": "20386|20387|20388|20389|20390|20391|20392|20393|290368|290374|290375|290388|290390|290394|290396|290397|290405|290407|290409|290410|290417|290418|290422|290425|290427|290434|290435|290444|290451|290452|290456|290458|290462|291242|291252|291253|291254|291256|291258|291278|291295|291298|291304|291306|291310|291316|291324|291330|291341|291342|291350|291351|291352|294495|294496|294498|294499|294516|294518|294519|294528|294529|294530|294537|294549|294564|294565|294566|294568|294570|294571|294945|294960|294967|294968|294969|294971|294974|294976|294977|294978|294979|294980|294992|295000|295002|295007|295011|353649|439219|578419|610515|720449|734069|759263|800846|859269|888930|888931|888932|888933|888934|888935|888936|888937|888938|888939|888940|888941|888942|888943|888944|888945|888946|888947|888948|888949|888950|888951|888952|888953|888954|888955|888956|888957|888958|888959|888960|888961|888962|888963|888964|891645|961765|965659", + "upstreamId": "20386|20387|20388|20389|20390|20391|20392|20393|290368|290374|290375|290388|290390|290394|290396|290397|290405|290407|290409|290410|290417|290418|290422|290425|290427|290434|290435|290444|290451|290452|290456|290458|290462|291242|291252|291253|291254|291256|291258|291278|291295|291298|291304|291306|291310|291316|291324|291330|291341|291342|291350|291351|291352|294495|294496|294498|294499|294516|294518|294519|294528|294529|294530|294537|294549|294564|294565|294566|294568|294570|294571|294945|294960|294967|294968|294969|294971|294974|294976|294977|294978|294979|294980|294992|295000|295002|295007|295011|353649|439219|578419|610515|720449|734069|759263|800846|859269|888930|888931|888932|888933|888934|888935|888936|888937|888938|888939|888940|888941|888942|888943|888944|888945|888946|888947|888948|888949|888950|888951|888952|888953|888954|888955|888956|888957|888958|888959|888960|888961|888962|888963|888964|891645|961765|965659", "text": "Triglyceride storage disease with ichthyosis" }, { - "baseId": "20394|20395|20396|20397|20398|101482|101483|101486|101487|101489|177135|270735|313326|313329|313330|313340|313353|313357|313358|313360|313363|313364|313366|319445|319446|319458|319459|325580|325582|325589|325590|325591|325597|325601|325602|326591|326616|326619|326620|326621|326625|326627|353173|360016|421838|460996|461007|461302|525991|526039|526485|565565|570385|620395|639823|639824|639825|639826|639827|639828|692967|692968|724325|838124|838125|838126|838127|867580|867581|867582|867583|867584|867585|867586|867587|867588|867589|867590|867591|867592|867593|867594|867595|867596|868620|868621|868622|868623|926155|935436|947362|956427|956428", + "upstreamId": "20394|20395|20396|20397|20398|101482|101483|101486|101487|101489|177135|270735|313326|313329|313330|313340|313353|313357|313358|313360|313363|313364|313366|319445|319446|319458|319459|325580|325582|325589|325590|325591|325597|325601|325602|326591|326616|326619|326620|326621|326625|326627|353173|360016|421838|460996|461007|461302|525991|526039|526485|565565|570385|620395|639823|639824|639825|639826|639827|639828|692967|692968|724325|838124|838125|838126|838127|867580|867581|867582|867583|867584|867585|867586|867587|867588|867589|867590|867591|867592|867593|867594|867595|867596|868620|868621|868622|868623|926155|935436|947362|956427|956428", "text": "Deficiency of isobutyryl-CoA dehydrogenase" }, { - "baseId": "20399|20400|20402|20404|20405|20406|20407|20408|20409|131950|186602|186603|186604|186605|186606|186607|224184|226216|226217|226218|226219|226220|226221|227036|227037|249552|249553|249554|249555|249558|249559|249560|273986|277481|277485|277670|277677|277678|278561|278562|278564|278566|356997|356998|356999|357000|357001|357002|357003|357004|357005|357006|357007|384472|440412|440413|440418|486663|496597|540649|540650|540652|540653|540658|540662|540667|540677|540679|540682|540683|540684|540687|540688|540689|540690|540691|540694|540695|540696|540697|540698|540699|540701|540703|540704|540708|540709|540710|540711|540713|540715|540717|540719|540721|540722|540724|553582|576445|587964|590232|590233|623236|623237|789887|798459|798460|862844|862845|862846|862847|862848|862849|862850|862851|862852|865042|865043|906001|916806|962665|977170|983941", + "upstreamId": "20399|20400|20402|20404|20405|20406|20407|20408|20409|131950|186602|186603|186604|186605|186606|186607|224184|226216|226217|226218|226219|226220|226221|227036|227037|249552|249553|249554|249555|249558|249559|249560|273986|277481|277485|277670|277677|277678|278561|278562|278564|278566|356997|356998|356999|357000|357001|357002|357003|357004|357005|357006|357007|384472|440412|440413|440418|486663|496597|540649|540650|540652|540653|540658|540662|540667|540677|540679|540682|540683|540684|540687|540688|540689|540690|540691|540694|540695|540696|540697|540698|540699|540701|540703|540704|540708|540709|540710|540711|540713|540715|540717|540719|540721|540722|540724|553582|576445|587964|590232|590233|623236|623237|789887|798459|798460|862844|862845|862846|862847|862848|862849|862850|862851|862852|865042|865043|906001|916806|962665|977170|983941", "text": "Idiopathic nephrotic syndrome" }, { - "baseId": "20409|131950", + "upstreamId": "20409|131950", "text": "Nephrotic syndrome, type 2, susceptibility to" }, { - "baseId": "20409|21119|21911|76004|178433|178637|178662|178741|178742|178744|178745|223747|224184|360994|432287|513894|513895|513923|514037|514113|514114|514116|514118", + "upstreamId": "20409|21119|21911|76004|178433|178637|178662|178741|178742|178744|178745|223747|224184|360994|432287|513894|513895|513923|514037|514113|514114|514116|514118", "text": "Proteinuria" }, { - "baseId": "20410|20411|20412|315715|315717|315723|322706|322707|322720|328831|620427|869052|869053|869054|869055|869056|869057|869058", + "upstreamId": "20410|20411|20412|315715|315717|315723|322706|322707|322720|328831|620427|869052|869053|869054|869055|869056|869057|869058", "text": "Spermatogenic failure 4" }, { - "baseId": "20413|20414|20415|20416|20417|252624|252625|252626|272397|273783|301951|301952|301956|301959|301960|301961|305060|305061|305063|305064|305074|305076|305079|305080|305081|305091|305092|305093|309745|309752|309755|309756|309757|309763|309767|309768|309769|309770|309778|309779|309788|309882|309883|309894|309898|309903|309904|309905|309907|309914|309921|309932|309935|309937|309939|309953|585828|586432|620797|788811|897479|897480|897481|897482|897483|897484|897485|897486|897487|897488|897489|897490|897491|897492|897493|897494|897495|897496|897497|897498|897499|897500|897501|897502|897503|897504|897505|897506|897507|897508|897509|897510|897511|897512|897513|897514|897515|897516|897517|897518|897519|897520|903550|903551", + "upstreamId": "20413|20414|20415|20416|20417|252624|252625|252626|272397|273783|301951|301952|301956|301959|301960|301961|305060|305061|305063|305064|305074|305076|305079|305080|305081|305091|305092|305093|309745|309752|309755|309756|309757|309763|309767|309768|309769|309770|309778|309779|309788|309882|309883|309894|309898|309903|309904|309905|309907|309914|309921|309932|309935|309937|309939|309953|585828|586432|620797|788811|897479|897480|897481|897482|897483|897484|897485|897486|897487|897488|897489|897490|897491|897492|897493|897494|897495|897496|897497|897498|897499|897500|897501|897502|897503|897504|897505|897506|897507|897508|897509|897510|897511|897512|897513|897514|897515|897516|897517|897518|897519|897520|903550|903551", "text": "Congenital bile acid synthesis defect 2" }, { - "baseId": "20418|141464|141466|141467|165472|165473|165474|237150|318169|318173|318177|318180|326177|326181|326186|326187|332336|332337|332338|332343|332345|333937|333942|333953|333960|333961|333962|333967|333979|333981|333985|333991|408728|549993|693265|693266|695580|738808|753533|870247|870248|870249|870250|870251|870252|870253|870254|870255|870256|870257|870258|870259", + "upstreamId": "20418|141464|141466|141467|165472|165473|165474|237150|318169|318173|318177|318180|326177|326181|326186|326187|332336|332337|332338|332343|332345|333937|333942|333953|333960|333961|333962|333967|333979|333981|333985|333991|408728|549993|693265|693266|695580|738808|753533|870247|870248|870249|870250|870251|870252|870253|870254|870255|870256|870257|870258|870259", "text": "Combined oxidative phosphorylation deficiency 3" }, { - "baseId": "20419|20420|20421|20422|20423|34214|34215|34216|34217|34218|34219|34220|34221|34222|34223|34224|34225|34226|34227|34228|34229|34230|34231|34232|221642|221644|221645|239956|252546|301261|301262|304456|304457|304459|304461|304462|304463|304465|309042|309043|309056|309057|309060|309066|309067|309071|309072|309135|309137|309139|309145|309148|395264|395624|456499|522312|522661|561169|620244|635334|683829|683831|683834|683837|685202|685204|686932|765920|859569|897028|897029|897030|897031|897032|897033|897034|897035|897036|897037|897038|897039|897040|897041|897042|897043|897044|897045|897046|897047|897048|897049|897050|897051|897052|897053|900278|900279|900280|900281|900282|900283|900284|905731|905734", + "upstreamId": "20419|20420|20421|20422|20423|34214|34215|34216|34217|34218|34219|34220|34221|34222|34223|34224|34225|34226|34227|34228|34229|34230|34231|34232|221642|221644|221645|239956|252546|301261|301262|304456|304457|304459|304461|304462|304463|304465|309042|309043|309056|309057|309060|309066|309067|309071|309072|309135|309137|309139|309145|309148|395264|395624|456499|522312|522661|561169|620244|635334|683829|683831|683834|683837|685202|685204|686932|765920|859569|897028|897029|897030|897031|897032|897033|897034|897035|897036|897037|897038|897039|897040|897041|897042|897043|897044|897045|897046|897047|897048|897049|897050|897051|897052|897053|900278|900279|900280|900281|900282|900283|900284|905731|905734", "text": "Hemochromatosis type 3" }, { - "baseId": "20422", + "upstreamId": "20422", "text": "Hemochromatosis, type 1, modifier of" }, { - "baseId": "20424|794190|969326|976692", + "upstreamId": "20424|794190|969326|976692", "text": "Sudden infant death with dysgenesis of the testes syndrome" }, { - "baseId": "20425|20426|20427|20428|20429|20431|136325|136326|136344|142632|142633|211320|211324|211331|213577|303716|303727|303728|303733|303743|303746|303748|303751|303752|303755|307128|307129|307158|307163|307166|307179|307188|307192|307197|307198|307203|307206|307209|307215|307232|307233|307234|307239|307240|307246|312070|312074|312082|312084|312086|312087|312089|312090|312092|312093|312098|312099|312110|312119|312120|312121|312158|312160|312173|312175|312183|312185|312192|312195|421647|818390|818391|898570|898571|898572|898573|898574|898575|898576|898577|898578|898579|898580|898581|898582|898583|898584|898585|898586|898587|898588|898589|898590|898591|898592|970222", + "upstreamId": "20425|20426|20427|20428|20429|20431|136325|136326|136344|142632|142633|211320|211324|211331|213577|303716|303727|303728|303733|303743|303746|303748|303751|303752|303755|307128|307129|307158|307163|307166|307179|307188|307192|307197|307198|307203|307206|307209|307215|307232|307233|307234|307239|307240|307246|312070|312074|312082|312084|312086|312087|312089|312090|312092|312093|312098|312099|312110|312119|312120|312121|312158|312160|312173|312175|312183|312185|312192|312195|421647|818390|818391|898570|898571|898572|898573|898574|898575|898576|898577|898578|898579|898580|898581|898582|898583|898584|898585|898586|898587|898588|898589|898590|898591|898592|970222", "text": "Mitochondrial DNA depletion syndrome, encephalomyopathic form, with renal tubulopathy" }, { - "baseId": "20425|20426|20427|20429|20430|20431|20432|20433|39389|39390|39391|39392|39393|136325|136326|136327|136328|136329|136330|136331|136332|136334|136335|136336|136337|136338|136339|136340|136341|136343|136344|136345|136346|136347|136349|136351", + "upstreamId": "20425|20426|20427|20429|20430|20431|20432|20433|39389|39390|39391|39392|39393|136325|136326|136327|136328|136329|136330|136331|136332|136334|136335|136336|136337|136338|136339|136340|136341|136343|136344|136345|136346|136347|136349|136351", "text": "RRM2B-related mitochondrial disease" }, { - "baseId": "20430|39389|39390|142632|142633|211324|303716|303727|303728|303733|303743|303746|303748|303751|303752|303755|307128|307129|307158|307163|307166|307179|307188|307192|307197|307198|307203|307206|307209|307215|307232|307233|307234|307239|307240|307246|312070|312074|312082|312084|312086|312087|312089|312090|312092|312093|312098|312099|312110|312119|312120|312121|312158|312160|312173|312175|312183|312185|312192|312195|898570|898571|898572|898573|898574|898575|898576|898577|898578|898579|898580|898581|898582|898583|898584|898585|898586|898587|898588|898589|898590|898591|898592", + "upstreamId": "20430|39389|39390|142632|142633|211324|303716|303727|303728|303733|303743|303746|303748|303751|303752|303755|307128|307129|307158|307163|307166|307179|307188|307192|307197|307198|307203|307206|307209|307215|307232|307233|307234|307239|307240|307246|312070|312074|312082|312084|312086|312087|312089|312090|312092|312093|312098|312099|312110|312119|312120|312121|312158|312160|312173|312175|312183|312185|312192|312195|898570|898571|898572|898573|898574|898575|898576|898577|898578|898579|898580|898581|898582|898583|898584|898585|898586|898587|898588|898589|898590|898591|898592", "text": "Autosomal dominant progressive external ophthalmoplegia with mitochondrial DNA deletions 5" }, { - "baseId": "20432|20433", + "upstreamId": "20432|20433", "text": "Mitochondrial DNA depletion syndrome 8B (MNGIE type)" }, { - "baseId": "20434|20435|20436|20437|20438|48515|48516|48517|176026|176027|176592|176593|176594|176729|176731|176732|187130|231017|231018|231019|236928|333571|333575|333576|333578|333581|333584|343632|343636|343637|343642|343646|343648|343650|348947|348949|348950|348958|348959|348961|348966|348967|348975|348977|348978|348984|348986|349877|349878|349883|349886|349887|349891|349892|349895|349896|349899|379579|415657|446133|446134|497518|506759|506765|506778|507349|507779|621015|728195|741899|788928|882059|882060|882061|882062|882063|882064|882065|882066|882067|882068|882069|882070|882071|882072|882073|882074|882075|882076|882077|882078|882079|882080|882891|882892|882893|961348|966608", + "upstreamId": "20434|20435|20436|20437|20438|48515|48516|48517|176026|176027|176592|176593|176594|176729|176731|176732|187130|231017|231018|231019|236928|333571|333575|333576|333578|333581|333584|343632|343636|343637|343642|343646|343648|343650|348947|348949|348950|348958|348959|348961|348966|348967|348975|348977|348978|348984|348986|349877|349878|349883|349886|349887|349891|349892|349895|349896|349899|379579|415657|446133|446134|497518|506759|506765|506778|507349|507779|621015|728195|741899|788928|882059|882060|882061|882062|882063|882064|882065|882066|882067|882068|882069|882070|882071|882072|882073|882074|882075|882076|882077|882078|882079|882080|882891|882892|882893|961348|966608", "text": "Cutis laxa with severe pulmonary, gastrointestinal, and urinary abnormalities" }, { - "baseId": "20439|20440|20441|20442|45876|45877|45878|45879|152856|152858|192122|213523|226537|282233|283732|431008|433689|511021|513018|623250|790028|790029|790030|790031|799234|799235|799236|799237|799238|971540", + "upstreamId": "20439|20440|20441|20442|45876|45877|45878|45879|152856|152858|192122|213523|226537|282233|283732|431008|433689|511021|513018|623250|790028|790029|790030|790031|799234|799235|799236|799237|799238|971540", "text": "Retinitis pigmentosa 38" }, { - "baseId": "20443", + "upstreamId": "20443", "text": "Cardiac conduction defect, susceptibility to" }, { - "baseId": "20444|20445", + "upstreamId": "20444|20445", "text": "Asthma-related traits, susceptibility to, 1" }, { - "baseId": "20446|81545|302757|302765|302767|302772|302774|306082|306087|306094|306095|306097|306099|310857|310873|310874|310877|310885|310886|311037|311053|311054|353813|353814|897957|897958|897959|897960|897961|897962|897963|897964|897965|897966|897967|897968|897969|897970|897971|900351", + "upstreamId": "20446|81545|302757|302765|302767|302772|302774|306082|306087|306094|306095|306097|306099|310857|310873|310874|310877|310885|310886|311037|311053|311054|353813|353814|897957|897958|897959|897960|897961|897962|897963|897964|897965|897966|897967|897968|897969|897970|897971|900351", "text": "Microtia, hearing impairment, and cleft palate" }, { - "baseId": "20447|23223|23227|23228|23230|23306|23406|23801|29244|29245|31912|49908|614420|816334|980444|980451", + "upstreamId": "20447|23223|23227|23228|23230|23306|23406|23801|29244|29245|31912|49908|614420|816334|980444|980451", "text": "Human immunodeficiency virus type 1, susceptibility to" }, { - "baseId": "20447", + "upstreamId": "20447", "text": "Dengue fever, protection against" }, { - "baseId": "20447|20448|20578|20579|29246|32983|49355|288600|450762|576099|626125|980413|980453|980456", + "upstreamId": "20447|20448|20578|20579|29246|32983|49355|288600|450762|576099|626125|980413|980453|980456", "text": "Mycobacterium tuberculosis, susceptibility to" }, { - "baseId": "20449|20450|20451|20452|20453|20454|20455|20456|20457|70797|205544|205546|212126|238586|238587|250469|250470|250471|283572|283581|283586|283592|283598|283627|284249|284250|284251|284252|284253|284259|284261|284263|284269|284271|286257|286260|286262|286270|286273|286588|286589|286590|392375|392453|481106|481107|481108|481109|481110|481111|517467|517549|517553|517750|557798|620044|683464|683466|686100|686101|690993|758998|762742|781099|790139|795100|825517|825518|850825|883061|883062|883063|883064|883065|883066|883067|883068|883069|883070|883071|883072|887224|905729|905730|922498|931063|931064|942533", + "upstreamId": "20449|20450|20451|20452|20453|20454|20455|20456|20457|70797|205544|205546|212126|238586|238587|250469|250470|250471|283572|283581|283586|283592|283598|283627|284249|284250|284251|284252|284253|284259|284261|284263|284269|284271|286257|286260|286262|286270|286273|286588|286589|286590|392375|392453|481106|481107|481108|481109|481110|481111|517467|517549|517553|517750|557798|620044|683464|683466|686100|686101|690993|758998|762742|781099|790139|795100|825517|825518|850825|883061|883062|883063|883064|883065|883066|883067|883068|883069|883070|883071|883072|887224|905729|905730|922498|931063|931064|942533", "text": "Hemochromatosis type 4" }, { - "baseId": "20459|20460|20461|237519|257103|257104|257112|257116|417658|513056|590330|590331|590332|623354|818337|818338|919866|977361", + "upstreamId": "20459|20460|20461|237519|257103|257104|257112|257116|417658|513056|590330|590331|590332|623354|818337|818338|919866|977361", "text": "Focal segmental glomerulosclerosis 1" }, { - "baseId": "20462|20463|20464|47612|47614|47615|47616|47617|47618|47619|51205|174806|175218|230221|314604|314608|314615|321291|321308|321310|321316|321322|321326|327469|327470|327477|327478|327479|328514|328515|328518|371581|374180|413316|433523|461352|461355|461357|461359|461360|461363|461505|461508|461509|461511|461518|461521|461533|461857|461863|461866|461873|461885|461886|462214|462218|462219|462220|462221|462225|462226|503348|512852|526395|526401|526402|526432|526438|526686|526690|526691|526692|526923|526925|526926|526933|564847|564851|566068|567455|567457|570837|570843|570849|640328|640329|640330|640331|640332|640333|640334|640335|652383|693090|738153|768609|768610|816321|820404|838762|838763|838764|838765|838766|838767|838768|838769|838770|838771|838772|838773|838774|838775|851451|852385|868278|868279|868280|868281|868282|868283|868284|868285|903580|926344|926345|935691|935692|940228|940229|956588|970526", + "upstreamId": "20462|20463|20464|47612|47614|47615|47616|47617|47618|47619|51205|174806|175218|230221|314604|314608|314615|321291|321308|321310|321316|321322|321326|327469|327470|327477|327478|327479|328514|328515|328518|371581|374180|413316|433523|461352|461355|461357|461359|461360|461363|461505|461508|461509|461511|461518|461521|461533|461857|461863|461866|461873|461885|461886|462214|462218|462219|462220|462221|462225|462226|503348|512852|526395|526401|526402|526432|526438|526686|526690|526691|526692|526923|526925|526926|526933|564847|564851|566068|567455|567457|570837|570843|570849|640328|640329|640330|640331|640332|640333|640334|640335|652383|693090|738153|768609|768610|816321|820404|838762|838763|838764|838765|838766|838767|838768|838769|838770|838771|838772|838773|838774|838775|851451|852385|868278|868279|868280|868281|868282|868283|868284|868285|903580|926344|926345|935691|935692|940228|940229|956588|970526", "text": "Autosomal recessive cutis laxa type 1B" }, { - "baseId": "20462|20463|20464|20514|34302|34303|34305|34306|47612|47613|47614|47615|47616|47617|47618|47619|215086|404820|677447|983565", + "upstreamId": "20462|20463|20464|20514|34302|34303|34305|34306|47612|47613|47614|47615|47616|47617|47618|47619|215086|404820|677447|983565", "text": "Autosomal recessive cutis laxa type IA" }, { - "baseId": "20465|20466", + "upstreamId": "20465|20466", "text": "Obesity, mild, early-onset" }, { - "baseId": "20467|143247|143248|187181|253982|253983|253985|312047|312053|312058|312059|312063|312068|312072|317718|317722|323737|323738|323744|323754|323759|323760|323763|324457|324461|324462|324463|324469|324470|324479|620376|701531|712556|866796|866797|866798|866799|866800|866801|866802|866803|866804|866805|866806|866807|866808|866809|866810|866811|866812|866813|866814|866815|866816|866817|866818|866819|868579|868580|906310|906311|906312|906313", + "upstreamId": "20467|143247|143248|187181|253982|253983|253985|312047|312053|312058|312059|312063|312068|312072|317718|317722|323737|323738|323744|323754|323759|323760|323763|324457|324461|324462|324463|324469|324470|324479|620376|701531|712556|866796|866797|866798|866799|866800|866801|866802|866803|866804|866805|866806|866807|866808|866809|866810|866811|866812|866813|866814|866815|866816|866817|866818|866819|868579|868580|906310|906311|906312|906313", "text": "Amelogenesis imperfecta, hypomaturation type, IIA2" }, { - "baseId": "20468|297818|297827|299996|299998|300005|304231|304233|304234|304562|455026|455205|455929|521569|521574|622352|633975|799420|819598|830886|830887|894520|894521|894522|894523|894524|894525|918972|944636", + "upstreamId": "20468|297818|297827|299996|299998|300005|304231|304233|304234|304562|455026|455205|455929|521569|521574|622352|633975|799420|819598|830886|830887|894520|894521|894522|894523|894524|894525|918972|944636", "text": "Distal hereditary motor neuronopathy type 2C" }, { - "baseId": "20469|20470|20471|20472|20473|20474|20475|20476|20477|20478|48703|101111|101116|101120|101123|101126|135569|135570|135581|141815|141816|141817|141818|176982|177245|191681|192016|192843|194627|195130|195515|195687|202508|202509|202510|202514|202515|202521|204392|205000|205001|205002|205003|205004|205005|205006|207451|207454|237211|240894|265869|271384|304513|311716|311724|311728|311729|311731|317300|323340|323341|323343|323345|323350|323922|323933|323935|323936|359900|370994|397541|397548|397733|397976|397984|398094|398099|398102|444034|455941|455949|460330|460337|460338|460390|460397|460408|460414|460699|461156|461158|488628|489661|521942|522356|522698|525528|525620|525624|525964|538415|564055|564061|564925|566622|566639|566640|566644|566646|569893|569896|569898|579693|587782|639312|639313|639314|639315|639316|639317|639318|639319|652161|692898|692899|768073|802020|820283|837512|837513|837514|837515|837516|837517|837518|837519|837520|866581|866582|866583|919306|925980|925981|925982|925983|925984|925985|935251|935252|935253|935254|935255|947154|947155|947156|956288|960736|970924", + "upstreamId": "20469|20470|20471|20472|20473|20474|20475|20476|20477|20478|48703|101111|101116|101120|101123|101126|135569|135570|135581|141815|141816|141817|141818|176982|177245|191681|192016|192843|194627|195130|195515|195687|202508|202509|202510|202514|202515|202521|204392|205000|205001|205002|205003|205004|205005|205006|207451|207454|237211|240894|265869|271384|304513|311716|311724|311728|311729|311731|317300|323340|323341|323343|323345|323350|323922|323933|323935|323936|359900|370994|397541|397548|397733|397976|397984|398094|398099|398102|444034|455941|455949|460330|460337|460338|460390|460397|460408|460414|460699|461156|461158|488628|489661|521942|522356|522698|525528|525620|525624|525964|538415|564055|564061|564925|566622|566639|566640|566644|566646|569893|569896|569898|579693|587782|639312|639313|639314|639315|639316|639317|639318|639319|652161|692898|692899|768073|802020|820283|837512|837513|837514|837515|837516|837517|837518|837519|837520|866581|866582|866583|919306|925980|925981|925982|925983|925984|925985|935251|935252|935253|935254|935255|947154|947155|947156|956288|960736|970924", "text": "Familial temporal lobe epilepsy 1" }, { - "baseId": "20479|20480|20481|20482|277060|277076|277077|277078|277080|277081|277084|277086|277089|277090|277091|277310|277316|277317|277320|277321|277322|277336|277337|277343|277349|277351|277352|277353|277356|277357|278081|278085|278088|278093|278094|278097|278103|278105|278112|278113|278124|278130|278136|278137|278138|278139|278140|278141|278161|278178|278194|278195|278196|278198|278208|278213|278214|481487|486794|551683|551684|551685|551686|551687|551688|552037|578341|578342|578343|578344|718358|816435|816436|862657|862658|862659|862660|862661|862662|862663|862664|862665|862666|862667|862668|862669|862670|862671|862672|862673|862674|862675|964719", + "upstreamId": "20479|20480|20481|20482|277060|277076|277077|277078|277080|277081|277084|277086|277089|277090|277091|277310|277316|277317|277320|277321|277322|277336|277337|277343|277349|277351|277352|277353|277356|277357|278081|278085|278088|278093|278094|278097|278103|278105|278112|278113|278124|278130|278136|278137|278138|278139|278140|278141|278161|278178|278194|278195|278196|278198|278208|278213|278214|481487|486794|551683|551684|551685|551686|551687|551688|552037|578341|578342|578343|578344|718358|816435|816436|862657|862658|862659|862660|862661|862662|862663|862664|862665|862666|862667|862668|862669|862670|862671|862672|862673|862674|862675|964719", "text": "Adrenocorticotropic hormone deficiency" }, { - "baseId": "20483|20484|20485|20486|20487|20488|20489|20490|20491|47489|47490|47491|47492|47493|136199|136200|136201|136202|136203|136204|136205|136206|136207|136208|136209|139155|139156|139158|139159|139160|139161|139162|139163|139164|139165|139166|139167|139168|139169|139170|139171|139174|139175|139176|139177|139178|139179|139181|139182|139183|139184|139185|139186|139187|139188|139189|139190|139191|166133|191167|191978|192728|193021|193829|195260|205206|240338|240339|240340|240341|240342|240343|240344|240345|240346|240347|240348|240349|240351|240352|240353|240354|240355|240356|240357|240358|240359|240360|240361|240362|240363|240364|240365|240366|240367|240368|240369|240370|240371|240372|240373|240374|240375|240376|240377|240378|240379|240380|240381|240382|240383|240384|240385|240386|240387|240388|240389|240390|253104|268528|273751|274363|274920|274923|305106|305108|305112|305118|305121|305126|305128|305132|305134|305135|305137|305141|305142|308826|308830|308834|308836|308855|308857|308863|308872|308881|308885|314011|314023|314030|314036|314044|314047|314048|314059|314069|314072|314078|314079|314085|314089|314092|314093|314094|314101|314102|314106|314111|314113|314115|314118|314121|314125|314132|314133|314136|314137|314141|396110|396152|396161|396163|396176|396178|396179|396182|396185|396189|396191|396193|396194|396199|396201|396207|396209|396211|396214|396219|396220|396225|396229|396238|396244|396248|396420|396424|396427|396430|396433|396434|396437|396438|396439|396443|396446|396448|396453|396455|396462|396463|396465|396467|396476|396479|396486|396499|396502|396509|396513|396520|396528|396530|396553|396558|396561|396564|396565|396569|396576|396577|396583|396586|396588|396592|396596|396597|396601|396604|396605|396608|396619|396628|396630|396636|396641|396644|396646|396648|396650|396654|396658|396663|396798|396799|396804|396805|396808|396812|396815|396817|396820|396822|396829|396832|396835|396837|396838|396853|396860|396866|396877|396880|396882|396893|396901|396905|396908|457695|457738|457740|457751|457754|457755|457758|457762|457764|457769|457771|457779|457780|457785|457789|457790|457799|457800|457802|457803|457805|457818|457821|457823|458325|458336|458338|458340|458345|458348|458356|458358|458359|458361|458362|458364|458374|458375|458378|458381|458382|458384|458388|458389|458395|458398|458399|458400|458402|458404|458406|458409|458411|458413|458415|458416|458418|458420|458421|458423|458429|458430|458431|458432|458433|458436|458438|458439|458440|458442|458443|458444|458446|458448|458451|458454|458455|458457|458459|458460|458463|458464|458467|458473|458475|458478|458480|458482|458485|458693|458696|458707|458721|458733|458734|458742|458744|458749|458762|458763|458768|458772|458779|458781|458785|458786|458788|458801|458802|458804|458805|458811|458814|458816|458825|458826|458828|458833|458835|458840|458843|458847|458852|458854|458857|458861|458865|458866|458881|458884|458886|513976|523167|523418|523433|523435|523438|523440|523443|523447|523449|523453|523457|523459|523460|523463|523465|523469|523470|523475|523478|523482|523485|523486|523491|523497|523503|523508|523513|523520|523524|523532|523533|523539|523545|523546|523551|523737|523741|523743|523752|523756|523759|523761|523762|523764|523766|523776|523778|523780|523781|523785|523788|523792|523805|523807|523810|523813|523815|523818|523822|523833|523835|523838|523846|523875|523876|524002|524005|524010|524011|524012|524013|524016|524018|524021|524022|524029|524030|524031|524033|524041|524043|524046|524047|524048|524050|524052|524053|524054|524056|524058|524060|524061|524065|524066|524067|524068|524075|524077|524082|524083|524088|524092|524094|524096|524097|524100|524101|524102|524103|524104|524106|524111|524112|524113|524116|524118|524122|524125|524127|524128|524132|524133|524137|524139|524140|524141|524144|524149|562283|562285|562286|562290|562293|562295|562297|562299|562301|562303|562307|562309|562316|562320|562323|562324|562336|562343|562344|562346|562350|562354|562361|562363|562366|562370|562374|562375|562379|562383|562390|562392|562394|562402|562404|562412|562814|562819|562821|562822|562823|562834|562843|562848|562853|562859|562860|562865|562879|562890|562892|562893|562895|562900|562904|562905|562908|562914|562917|562929|562932|562933|562934|562938|564994|564995|564997|564999|565002|565004|565006|565008|565013|565015|565020|565022|565023|565029|565033|565035|565039|565040|565042|565049|565051|565052|565060|565063|565066|565067|565072|565073|565095|565100|567756|567762|567780|567788|567789|567793|567794|567799|567815|567818|567820|567828|567831|567838|567839|567848|567858|567859|567869|567876|567878|567889|567890|567893|567895|567897|567899|567903|567905|567915|567924|612815|620298|620805|637061|637062|637063|637064|637065|637066|637067|637068|637069|637070|637071|637072|637073|637074|637075|637076|637077|637078|637079|637080|637081|637082|637083|637084|637085|637086|637087|637088|637089|637090|637091|637092|637093|637094|637095|637096|637097|637098|637099|637100|637101|637102|637103|637104|637105|637106|637107|637108|637109|637110|637111|637112|637113|637114|637115|637116|637117|637118|637119|637120|637121|637122|637123|637124|637125|637126|637127|637128|637129|637130|637131|637132|637133|637134|637135|637136|637137|637138|637139|637140|637141|637142|637143|637144|637145|637146|637147|637148|637149|637150|637151|637152|637153|637154|637155|637156|637157|637158|637159|637160|637161|637162|637163|637164|637165|637166|637167|637168|637169|637170|637171|637172|637173|637174|637175|637176|637177|637178|637179|637180|637181|637182|637183|637184|637185|637186|637187|637188|637189|637190|637191|637192|637193|651719|651778|651780|651782|651786|651789|651796|651798|651847|651856|651887|651888|651892|651894|651947|651952|651955|651960|651965|684001|684002|684003|685238|685239|685240|687265|687266|687268|687269|687271|687273|689914|692483|692485|692487|692488|692489|692490|695391|700564|700565|700566|711494|711495|723053|723055|730564|736621|736622|736623|751105|751106|766763|766764|766766|766781|766785|766788|775331|775426|775472|783094|783095|790795|790796|819955|819956|819957|819958|819959|819960|834591|834592|834593|834594|834595|834596|834597|834598|834599|834600|834601|834602|834603|834604|834605|834606|834607|834608|834609|834610|834611|834612|834613|834614|834615|834616|834617|834618|834619|834620|834621|834622|834623|834624|834625|834626|834627|834628|834629|834630|834631|834632|834633|834634|834635|834636|834637|834638|834639|834640|834641|834642|834643|834644|834645|834646|834647|834648|834649|834650|834651|834652|834653|834654|834655|834656|834657|834658|834659|834660|834661|834662|834663|834664|834665|834666|834667|834668|834669|834670|834671|834672|834673|834674|834675|834676|834677|834678|834679|834680|834681|834682|834683|834684|834685|834686|834687|834688|834689|834690|834691|834692|834693|834694|834695|834696|834697|834698|834699|834700|834701|834702|834703|834704|834705|834706|834707|834708|834709|834710|834711|834712|834713|834714|834715|834716|834717|834718|834719|834720|834721|834722|834723|834724|834725|834726|851197|851199|851201|851686|851688|851690|851692|852124|852126|852128|852130|852132|852134|852136|852440|899423|899424|899425|899426|899427|899428|899429|899430|899431|899432|899433|899434|900477|900478|900479|900480|900481|925154|925155|925156|925157|925158|925159|925160|925161|925162|925163|925164|925165|925166|925167|925168|925169|925170|925171|925172|925173|925174|925175|925176|925177|925178|925179|925180|925181|925182|925183|925184|925185|925186|925187|925188|925189|925190|925191|925192|925193|925194|934243|934244|934245|934246|934247|934248|934249|934250|934251|934252|934253|934254|934255|934256|934257|934258|934259|934260|934261|934262|934263|934264|934265|934266|934267|934268|934269|934270|934271|934272|934273|934274|934275|934276|934277|934278|934279|934280|934281|934282|934283|934284|934285|934286|934287|934288|934289|934290|934291|934292|934293|934294|934295|934296|934297|934298|940096|940097|940098|940099|940100|940101|940102|940899|940900|940901|940902|940903|940904|940905|940906|940907|946011|946012|946013|946014|946015|946016|946017|946018|946019|946020|946021|946022|946023|946024|946025|946026|946027|946028|946029|946030|946031|946032|946033|946034|946035|946036|946037|946038|946039|946040|946041|946042|946043|946044|946045|946046|946047|946048|946049|946050|946051|946052|946053|946054|946055|946056|946057|946058|955388|955389|955390|955391|955392|955393|955394|955395|955396|955397|955398|955399|955400|955401|955402|955403|955404|955405|959884|959885|959886|959887|959888|959889|959890|959891|960650|960651|980930", + "upstreamId": "20483|20484|20485|20486|20487|20488|20489|20490|20491|47489|47490|47491|47492|47493|136199|136200|136201|136202|136203|136204|136205|136206|136207|136208|136209|139155|139156|139158|139159|139160|139161|139162|139163|139164|139165|139166|139167|139168|139169|139170|139171|139174|139175|139176|139177|139178|139179|139181|139182|139183|139184|139185|139186|139187|139188|139189|139190|139191|166133|191167|191978|192728|193021|193829|195260|205206|240338|240339|240340|240341|240342|240343|240344|240345|240346|240347|240348|240349|240351|240352|240353|240354|240355|240356|240357|240358|240359|240360|240361|240362|240363|240364|240365|240366|240367|240368|240369|240370|240371|240372|240373|240374|240375|240376|240377|240378|240379|240380|240381|240382|240383|240384|240385|240386|240387|240388|240389|240390|253104|268528|273751|274363|274920|274923|305106|305108|305112|305118|305121|305126|305128|305132|305134|305135|305137|305141|305142|308826|308830|308834|308836|308855|308857|308863|308872|308881|308885|314011|314023|314030|314036|314044|314047|314048|314059|314069|314072|314078|314079|314085|314089|314092|314093|314094|314101|314102|314106|314111|314113|314115|314118|314121|314125|314132|314133|314136|314137|314141|396110|396152|396161|396163|396176|396178|396179|396182|396185|396189|396191|396193|396194|396199|396201|396207|396209|396211|396214|396219|396220|396225|396229|396238|396244|396248|396420|396424|396427|396430|396433|396434|396437|396438|396439|396443|396446|396448|396453|396455|396462|396463|396465|396467|396476|396479|396486|396499|396502|396509|396513|396520|396528|396530|396553|396558|396561|396564|396565|396569|396576|396577|396583|396586|396588|396592|396596|396597|396601|396604|396605|396608|396619|396628|396630|396636|396641|396644|396646|396648|396650|396654|396658|396663|396798|396799|396804|396805|396808|396812|396815|396817|396820|396822|396829|396832|396835|396837|396838|396853|396860|396866|396877|396880|396882|396893|396901|396905|396908|457695|457738|457740|457751|457754|457755|457758|457762|457764|457769|457771|457779|457780|457785|457789|457790|457799|457800|457802|457803|457805|457818|457821|457823|458325|458336|458338|458340|458345|458348|458356|458358|458359|458361|458362|458364|458374|458375|458378|458381|458382|458384|458388|458389|458395|458398|458399|458400|458402|458404|458406|458409|458411|458413|458415|458416|458418|458420|458421|458423|458429|458430|458431|458432|458433|458436|458438|458439|458440|458442|458443|458444|458446|458448|458451|458454|458455|458457|458459|458460|458463|458464|458467|458473|458475|458478|458480|458482|458485|458693|458696|458707|458721|458733|458734|458742|458744|458749|458762|458763|458768|458772|458779|458781|458785|458786|458788|458801|458802|458804|458805|458811|458814|458816|458825|458826|458828|458833|458835|458840|458843|458847|458852|458854|458857|458861|458865|458866|458881|458884|458886|513976|523167|523418|523433|523435|523438|523440|523443|523447|523449|523453|523457|523459|523460|523463|523465|523469|523470|523475|523478|523482|523485|523486|523491|523497|523503|523508|523513|523520|523524|523532|523533|523539|523545|523546|523551|523737|523741|523743|523752|523756|523759|523761|523762|523764|523766|523776|523778|523780|523781|523785|523788|523792|523805|523807|523810|523813|523815|523818|523822|523833|523835|523838|523846|523875|523876|524002|524005|524010|524011|524012|524013|524016|524018|524021|524022|524029|524030|524031|524033|524041|524043|524046|524047|524048|524050|524052|524053|524054|524056|524058|524060|524061|524065|524066|524067|524068|524075|524077|524082|524083|524088|524092|524094|524096|524097|524100|524101|524102|524103|524104|524106|524111|524112|524113|524116|524118|524122|524125|524127|524128|524132|524133|524137|524139|524140|524141|524144|524149|562283|562285|562286|562290|562293|562295|562297|562299|562301|562303|562307|562309|562316|562320|562323|562324|562336|562343|562344|562346|562350|562354|562361|562363|562366|562370|562374|562375|562379|562383|562390|562392|562394|562402|562404|562412|562814|562819|562821|562822|562823|562834|562843|562848|562853|562859|562860|562865|562879|562890|562892|562893|562895|562900|562904|562905|562908|562914|562917|562929|562932|562933|562934|562938|564994|564995|564997|564999|565002|565004|565006|565008|565013|565015|565020|565022|565023|565029|565033|565035|565039|565040|565042|565049|565051|565052|565060|565063|565066|565067|565072|565073|565095|565100|567756|567762|567780|567788|567789|567793|567794|567799|567815|567818|567820|567828|567831|567838|567839|567848|567858|567859|567869|567876|567878|567889|567890|567893|567895|567897|567899|567903|567905|567915|567924|612815|620298|620805|637061|637062|637063|637064|637065|637066|637067|637068|637069|637070|637071|637072|637073|637074|637075|637076|637077|637078|637079|637080|637081|637082|637083|637084|637085|637086|637087|637088|637089|637090|637091|637092|637093|637094|637095|637096|637097|637098|637099|637100|637101|637102|637103|637104|637105|637106|637107|637108|637109|637110|637111|637112|637113|637114|637115|637116|637117|637118|637119|637120|637121|637122|637123|637124|637125|637126|637127|637128|637129|637130|637131|637132|637133|637134|637135|637136|637137|637138|637139|637140|637141|637142|637143|637144|637145|637146|637147|637148|637149|637150|637151|637152|637153|637154|637155|637156|637157|637158|637159|637160|637161|637162|637163|637164|637165|637166|637167|637168|637169|637170|637171|637172|637173|637174|637175|637176|637177|637178|637179|637180|637181|637182|637183|637184|637185|637186|637187|637188|637189|637190|637191|637192|637193|651719|651778|651780|651782|651786|651789|651796|651798|651847|651856|651887|651888|651892|651894|651947|651952|651955|651960|651965|684001|684002|684003|685238|685239|685240|687265|687266|687268|687269|687271|687273|689914|692483|692485|692487|692488|692489|692490|695391|700564|700565|700566|711494|711495|723053|723055|730564|736621|736622|736623|751105|751106|766763|766764|766766|766781|766785|766788|775331|775426|775472|783094|783095|790795|790796|819955|819956|819957|819958|819959|819960|834591|834592|834593|834594|834595|834596|834597|834598|834599|834600|834601|834602|834603|834604|834605|834606|834607|834608|834609|834610|834611|834612|834613|834614|834615|834616|834617|834618|834619|834620|834621|834622|834623|834624|834625|834626|834627|834628|834629|834630|834631|834632|834633|834634|834635|834636|834637|834638|834639|834640|834641|834642|834643|834644|834645|834646|834647|834648|834649|834650|834651|834652|834653|834654|834655|834656|834657|834658|834659|834660|834661|834662|834663|834664|834665|834666|834667|834668|834669|834670|834671|834672|834673|834674|834675|834676|834677|834678|834679|834680|834681|834682|834683|834684|834685|834686|834687|834688|834689|834690|834691|834692|834693|834694|834695|834696|834697|834698|834699|834700|834701|834702|834703|834704|834705|834706|834707|834708|834709|834710|834711|834712|834713|834714|834715|834716|834717|834718|834719|834720|834721|834722|834723|834724|834725|834726|851197|851199|851201|851686|851688|851690|851692|852124|852126|852128|852130|852132|852134|852136|852440|899423|899424|899425|899426|899427|899428|899429|899430|899431|899432|899433|899434|900477|900478|900479|900480|900481|925154|925155|925156|925157|925158|925159|925160|925161|925162|925163|925164|925165|925166|925167|925168|925169|925170|925171|925172|925173|925174|925175|925176|925177|925178|925179|925180|925181|925182|925183|925184|925185|925186|925187|925188|925189|925190|925191|925192|925193|925194|934243|934244|934245|934246|934247|934248|934249|934250|934251|934252|934253|934254|934255|934256|934257|934258|934259|934260|934261|934262|934263|934264|934265|934266|934267|934268|934269|934270|934271|934272|934273|934274|934275|934276|934277|934278|934279|934280|934281|934282|934283|934284|934285|934286|934287|934288|934289|934290|934291|934292|934293|934294|934295|934296|934297|934298|940096|940097|940098|940099|940100|940101|940102|940899|940900|940901|940902|940903|940904|940905|940906|940907|946011|946012|946013|946014|946015|946016|946017|946018|946019|946020|946021|946022|946023|946024|946025|946026|946027|946028|946029|946030|946031|946032|946033|946034|946035|946036|946037|946038|946039|946040|946041|946042|946043|946044|946045|946046|946047|946048|946049|946050|946051|946052|946053|946054|946055|946056|946057|946058|955388|955389|955390|955391|955392|955393|955394|955395|955396|955397|955398|955399|955400|955401|955402|955403|955404|955405|959884|959885|959886|959887|959888|959889|959890|959891|960650|960651|980930", "text": "Werner syndrome" }, { - "baseId": "20493|20494|20496|51230|51232|51233|51235|51237|51238|51242|51244|51250|51254|51255|51258|51343|51344|82870|82871|98303|98304|98305|98306|98307|98308|132929|132930|132931|132932|132933|132934|132935|132936|132937|132938|132939|132940|132941|132942|132944|132945|132946|132947|132948|132949|132950|132951|132952|132953|132954|132955|132956|132957|132958|132959|132960|132961|132962|132963|132964|132965|132967|132968|132969|132971|132972|132973|132974|132975|133979|137436|137437|137438|137439|137440|137441|137442|137444|137446|137447|137448|137449|137450|137452|137453|137454|137455|140210|140211|140212|140213|140214|140215|140216|140217|140219|140220|140221|140222|140223|140224|166249|178766|180703|180704|186946|186947|186948|186949|186950|188870|205211|222437|222438|225271|237261|242146|242147|242148|242149|242150|242151|242152|242153|242154|242155|242156|242157|242158|242159|242160|242161|242162|242163|242164|242165|242166|242167|242168|242169|242170|242171|242172|242173|242174|255425|265458|271469|275350|323581|333311|333312|340070|340072|340074|340082|340085|340086|340089|340091|341536|341537|341540|358340|358341|358342|358343|358344|358345|358346|358347|358348|358349|358350|358351|358352|358353|358354|358355|358356|358357|358358|358359|358360|358361|358362|358363|358364|358365|361217|361218|400426|400434|400435|400438|400439|400441|400443|400446|400447|400449|400461|400462|400468|400475|400476|400480|400564|400573|400575|400582|400586|400587|400593|400596|400597|400598|400599|400602|400604|400610|400612|400616|400619|400623|400624|400915|400922|400924|400925|400931|400935|400938|400942|400944|400945|400948|400953|400965|400969|400980|400983|400988|400996|401005|401010|401012|401014|401021|401024|401034|401246|401255|401257|401260|401264|401266|401272|401273|401275|401277|401281|401286|401288|401291|401297|401304|401306|409393|429749|464624|464625|464630|464636|464638|464639|464643|464647|464649|464652|464659|464668|464670|464671|464672|464673|464679|464682|464691|464692|464696|464702|464709|464711|464713|464716|464730|464737|464746|464748|464751|464754|465245|465250|465252|465262|465263|465269|465270|465281|465292|465293|465296|465306|465313|465314|465317|465318|465320|465327|465328|465331|465334|465340|465341|465344|465355|465414|465416|465418|465421|465423|465427|465437|465444|465445|465454|465456|465459|465463|465465|465476|465479|465484|465488|465490|465492|465494|465495|465496|465497|465499|465500|465508|465514|465515|465516|465519|465525|465528|465530|465532|465535|465538|465543|465546|465551|465564|465568|465573|465578|465588|465590|465592|465594|465596|465601|465603|465608|465614|465615|477220|477224|477226|477230|477243|477244|477246|477250|477253|477254|477261|477267|477276|477404|477405|477406|477816|477838|477845|477865|477871|477873|477874|477879|477890|477891|487898|488671|528583|528609|529023|529141|529142|529143|529145|529148|529150|529153|529154|529155|529157|529158|529161|529162|529163|529167|529171|529172|529174|529175|529176|529178|529179|529182|529183|529187|529188|529189|529191|529193|529196|529197|529198|529199|529200|529201|529203|529206|529210|529212|529214|529216|529461|529463|529464|529472|529475|529484|529486|529487|529491|529496|529498|529500|529503|529506|529508|529509|529510|529512|529531|529533|529535|529536|529693|529701|529702|529703|529705|529714|529716|529721|529722|529726|529728|529737|529739|529747|529755|529756|529759|529770|529776|529778|529781|529786|529787|529790|529792|529801|529805|529807|529808|529810|547639|547640|547642|547643|547645|547647|547649|547652|547654|547658|547659|547660|547665|547667|547671|547675|547678|547680|547683|547686|547688|547690|547713|547716|547903|547905|547907|547909|547916|547917|547922|547927|547934|547937|547942|547944|547948|547950|547965|547968|547969|547971|548328|548329|548338|548340|548351|548353|548355|548363|548367|548375|548377|548383|548387|548393|548396|548397|548401|548404|548406|548407|553392|567349|567351|567358|567359|567361|567362|567364|567367|567373|567374|567380|567383|567384|567394|567395|567398|567404|567405|567411|567416|567424|567429|567436|567437|567441|568603|568608|569214|569221|569222|569223|569228|569231|569239|569242|569246|569248|569249|569255|569261|569266|569268|569272|569273|569289|569294|569295|569298|569299|569305|569307|569310|569316|569319|569322|569325|569326|569333|569335|569341|569345|569350|569355|569652|569654|569659|569664|569665|569667|569674|569678|569684|569688|569690|569692|569695|569700|569702|569709|569717|569719|569721|569723|569724|569726|569727|569729|569731|569740|569742|573122|573587|573589|573590|573591|573595|573601|573603|573604|573611|573614|573615|573619|573620|573621|573622|573623|573624|573628|573632|573635|573637|573639|575596|575598|575933|575934|575936|575937|575938|575940|575941|575942|575943|575944|575945|575946|575947|575948|575949|575950|575951|575952|575953|575954|575955|587926|614405|621520|621521|643632|643633|643634|643635|643636|643637|643638|643639|643640|643641|643642|643643|643644|643645|643646|643647|643648|643649|643650|643651|643652|643653|643654|643655|643656|643657|643658|643659|643660|643661|643662|643663|643664|643665|643666|643667|643668|643669|643670|643671|643672|643673|643674|643675|643676|643677|643678|643679|643680|643681|643682|643683|643684|643685|643686|643687|643688|643689|643690|643691|643692|643693|643694|643695|643696|643697|643698|643699|643700|643701|643702|643703|643704|643705|643706|643707|643708|643709|643710|643711|643712|643713|643714|643715|643716|643717|643718|643719|643720|643721|643722|643723|643724|643725|643726|643727|643728|643729|643730|652439|652448|652544|652590|652594|652596|652720|652784|653021|653076|653083|653094|654784|681830|681831|682218|684565|685412|688500|688501|688506|688508|688509|688511|688512|688513|690121|690122|690123|690124|690125|693754|693756|693757|693759|693760|693762|693764|693765|693766|693767|693768|693769|693771|693772|693773|693774|693775|693776|695666|695667|695668|703418|703419|703420|703421|714690|714691|726351|726352|739878|739880|739881|739883|754785|754786|754787|754788|754789|754792|754793|760422|770421|770425|770428|770429|770430|770432|770434|770438|770440|776081|776248|776250|785062|785064|785066|785067|785072|787975|791500|791501|791502|791503|791504|791505|791506|791507|791508|791509|791510|791511|791512|791513|791514|791515|801902|812267|812270|812278|812279|812288|812296|812298|812301|812303|812304|812305|812306|812316|812317|812318|812322|812326|812328|812333|812340|812341|812344|812346|812349|812350|812351|812353|812355|812357|812358|812361|812365|812370|812373|812377|812382|812391|812399|812408|812415|815602|815604|815606|816414|818695|820742|820743|820744|820745|820746|820747|820748|820749|820750|820751|820759|842803|842804|842805|842806|842807|842808|842809|842810|842811|842812|842813|842814|842815|842816|842817|842818|842819|842820|842821|842822|842823|842824|842825|842826|842827|842828|842829|842830|842831|842832|842833|842834|842835|842836|842837|842838|842839|842840|842841|842842|842843|842844|842845|842846|842847|842848|842849|842850|842851|842852|842853|842854|842855|842856|842857|842858|842859|842860|842861|842862|842863|842864|842865|842866|842867|842868|842869|842870|842871|842872|842873|842874|842875|842876|842877|842878|842879|842880|842881|842882|842883|842884|842885|842886|842887|842888|842889|842890|842891|842892|842893|842894|842895|842896|842897|842898|842899|842900|842901|842902|842903|842904|842905|842906|842907|842908|851635|851637|852077|852079|852081|852786|874320|874321|874322|874323|876592|927462|927463|927464|927465|927466|927467|927468|927469|927470|927471|927472|927473|927474|927475|927476|927477|927478|927479|927480|927481|927482|927483|927484|927485|927486|927487|927488|927489|927490|927491|927492|927493|927494|927495|927496|927497|937117|937118|937119|937120|937121|937122|937123|937124|937125|937126|937127|937128|937129|937130|937131|937132|937133|937134|937135|937136|937137|937138|937139|937140|937141|937142|937143|940334|940335|941099|941100|941101|941102|941103|949059|949060|949061|949062|949063|949064|949065|949066|949067|949068|949069|949070|949071|949072|949073|949074|949075|949076|949077|949078|949079|949080|949081|949082|949083|949084|949085|949086|949087|949088|949089|949090|949091|949092|949093|949094|949095|949096|949097|949098|949099|949100|949101|949102|949103|949104|949105|949106|949107|957541|957542|957543|957544|957545|957546|957547|957548|957549|957550|957551|957552|957553|957554|957555|957556|957557|957558|957559|957560|957561|957562|957563|957564|957565|957566|957567|957568|957569|960125|960126|965997|966190|966191|979699|979700|979701|979702|979703|979704", + "upstreamId": "20493|20494|20496|51230|51232|51233|51235|51237|51238|51242|51244|51250|51254|51255|51258|51343|51344|82870|82871|98303|98304|98305|98306|98307|98308|132929|132930|132931|132932|132933|132934|132935|132936|132937|132938|132939|132940|132941|132942|132944|132945|132946|132947|132948|132949|132950|132951|132952|132953|132954|132955|132956|132957|132958|132959|132960|132961|132962|132963|132964|132965|132967|132968|132969|132971|132972|132973|132974|132975|133979|137436|137437|137438|137439|137440|137441|137442|137444|137446|137447|137448|137449|137450|137452|137453|137454|137455|140210|140211|140212|140213|140214|140215|140216|140217|140219|140220|140221|140222|140223|140224|166249|178766|180703|180704|186946|186947|186948|186949|186950|188870|205211|222437|222438|225271|237261|242146|242147|242148|242149|242150|242151|242152|242153|242154|242155|242156|242157|242158|242159|242160|242161|242162|242163|242164|242165|242166|242167|242168|242169|242170|242171|242172|242173|242174|255425|265458|271469|275350|323581|333311|333312|340070|340072|340074|340082|340085|340086|340089|340091|341536|341537|341540|358340|358341|358342|358343|358344|358345|358346|358347|358348|358349|358350|358351|358352|358353|358354|358355|358356|358357|358358|358359|358360|358361|358362|358363|358364|358365|361217|361218|400426|400434|400435|400438|400439|400441|400443|400446|400447|400449|400461|400462|400468|400475|400476|400480|400564|400573|400575|400582|400586|400587|400593|400596|400597|400598|400599|400602|400604|400610|400612|400616|400619|400623|400624|400915|400922|400924|400925|400931|400935|400938|400942|400944|400945|400948|400953|400965|400969|400980|400983|400988|400996|401005|401010|401012|401014|401021|401024|401034|401246|401255|401257|401260|401264|401266|401272|401273|401275|401277|401281|401286|401288|401291|401297|401304|401306|409393|429749|464624|464625|464630|464636|464638|464639|464643|464647|464649|464652|464659|464668|464670|464671|464672|464673|464679|464682|464691|464692|464696|464702|464709|464711|464713|464716|464730|464737|464746|464748|464751|464754|465245|465250|465252|465262|465263|465269|465270|465281|465292|465293|465296|465306|465313|465314|465317|465318|465320|465327|465328|465331|465334|465340|465341|465344|465355|465414|465416|465418|465421|465423|465427|465437|465444|465445|465454|465456|465459|465463|465465|465476|465479|465484|465488|465490|465492|465494|465495|465496|465497|465499|465500|465508|465514|465515|465516|465519|465525|465528|465530|465532|465535|465538|465543|465546|465551|465564|465568|465573|465578|465588|465590|465592|465594|465596|465601|465603|465608|465614|465615|477220|477224|477226|477230|477243|477244|477246|477250|477253|477254|477261|477267|477276|477404|477405|477406|477816|477838|477845|477865|477871|477873|477874|477879|477890|477891|487898|488671|528583|528609|529023|529141|529142|529143|529145|529148|529150|529153|529154|529155|529157|529158|529161|529162|529163|529167|529171|529172|529174|529175|529176|529178|529179|529182|529183|529187|529188|529189|529191|529193|529196|529197|529198|529199|529200|529201|529203|529206|529210|529212|529214|529216|529461|529463|529464|529472|529475|529484|529486|529487|529491|529496|529498|529500|529503|529506|529508|529509|529510|529512|529531|529533|529535|529536|529693|529701|529702|529703|529705|529714|529716|529721|529722|529726|529728|529737|529739|529747|529755|529756|529759|529770|529776|529778|529781|529786|529787|529790|529792|529801|529805|529807|529808|529810|547639|547640|547642|547643|547645|547647|547649|547652|547654|547658|547659|547660|547665|547667|547671|547675|547678|547680|547683|547686|547688|547690|547713|547716|547903|547905|547907|547909|547916|547917|547922|547927|547934|547937|547942|547944|547948|547950|547965|547968|547969|547971|548328|548329|548338|548340|548351|548353|548355|548363|548367|548375|548377|548383|548387|548393|548396|548397|548401|548404|548406|548407|553392|567349|567351|567358|567359|567361|567362|567364|567367|567373|567374|567380|567383|567384|567394|567395|567398|567404|567405|567411|567416|567424|567429|567436|567437|567441|568603|568608|569214|569221|569222|569223|569228|569231|569239|569242|569246|569248|569249|569255|569261|569266|569268|569272|569273|569289|569294|569295|569298|569299|569305|569307|569310|569316|569319|569322|569325|569326|569333|569335|569341|569345|569350|569355|569652|569654|569659|569664|569665|569667|569674|569678|569684|569688|569690|569692|569695|569700|569702|569709|569717|569719|569721|569723|569724|569726|569727|569729|569731|569740|569742|573122|573587|573589|573590|573591|573595|573601|573603|573604|573611|573614|573615|573619|573620|573621|573622|573623|573624|573628|573632|573635|573637|573639|575596|575598|575933|575934|575936|575937|575938|575940|575941|575942|575943|575944|575945|575946|575947|575948|575949|575950|575951|575952|575953|575954|575955|587926|614405|621520|621521|643632|643633|643634|643635|643636|643637|643638|643639|643640|643641|643642|643643|643644|643645|643646|643647|643648|643649|643650|643651|643652|643653|643654|643655|643656|643657|643658|643659|643660|643661|643662|643663|643664|643665|643666|643667|643668|643669|643670|643671|643672|643673|643674|643675|643676|643677|643678|643679|643680|643681|643682|643683|643684|643685|643686|643687|643688|643689|643690|643691|643692|643693|643694|643695|643696|643697|643698|643699|643700|643701|643702|643703|643704|643705|643706|643707|643708|643709|643710|643711|643712|643713|643714|643715|643716|643717|643718|643719|643720|643721|643722|643723|643724|643725|643726|643727|643728|643729|643730|652439|652448|652544|652590|652594|652596|652720|652784|653021|653076|653083|653094|654784|681830|681831|682218|684565|685412|688500|688501|688506|688508|688509|688511|688512|688513|690121|690122|690123|690124|690125|693754|693756|693757|693759|693760|693762|693764|693765|693766|693767|693768|693769|693771|693772|693773|693774|693775|693776|695666|695667|695668|703418|703419|703420|703421|714690|714691|726351|726352|739878|739880|739881|739883|754785|754786|754787|754788|754789|754792|754793|760422|770421|770425|770428|770429|770430|770432|770434|770438|770440|776081|776248|776250|785062|785064|785066|785067|785072|787975|791500|791501|791502|791503|791504|791505|791506|791507|791508|791509|791510|791511|791512|791513|791514|791515|801902|812267|812270|812278|812279|812288|812296|812298|812301|812303|812304|812305|812306|812316|812317|812318|812322|812326|812328|812333|812340|812341|812344|812346|812349|812350|812351|812353|812355|812357|812358|812361|812365|812370|812373|812377|812382|812391|812399|812408|812415|815602|815604|815606|816414|818695|820742|820743|820744|820745|820746|820747|820748|820749|820750|820751|820759|842803|842804|842805|842806|842807|842808|842809|842810|842811|842812|842813|842814|842815|842816|842817|842818|842819|842820|842821|842822|842823|842824|842825|842826|842827|842828|842829|842830|842831|842832|842833|842834|842835|842836|842837|842838|842839|842840|842841|842842|842843|842844|842845|842846|842847|842848|842849|842850|842851|842852|842853|842854|842855|842856|842857|842858|842859|842860|842861|842862|842863|842864|842865|842866|842867|842868|842869|842870|842871|842872|842873|842874|842875|842876|842877|842878|842879|842880|842881|842882|842883|842884|842885|842886|842887|842888|842889|842890|842891|842892|842893|842894|842895|842896|842897|842898|842899|842900|842901|842902|842903|842904|842905|842906|842907|842908|851635|851637|852077|852079|852081|852786|874320|874321|874322|874323|876592|927462|927463|927464|927465|927466|927467|927468|927469|927470|927471|927472|927473|927474|927475|927476|927477|927478|927479|927480|927481|927482|927483|927484|927485|927486|927487|927488|927489|927490|927491|927492|927493|927494|927495|927496|927497|937117|937118|937119|937120|937121|937122|937123|937124|937125|937126|937127|937128|937129|937130|937131|937132|937133|937134|937135|937136|937137|937138|937139|937140|937141|937142|937143|940334|940335|941099|941100|941101|941102|941103|949059|949060|949061|949062|949063|949064|949065|949066|949067|949068|949069|949070|949071|949072|949073|949074|949075|949076|949077|949078|949079|949080|949081|949082|949083|949084|949085|949086|949087|949088|949089|949090|949091|949092|949093|949094|949095|949096|949097|949098|949099|949100|949101|949102|949103|949104|949105|949106|949107|957541|957542|957543|957544|957545|957546|957547|957548|957549|957550|957551|957552|957553|957554|957555|957556|957557|957558|957559|957560|957561|957562|957563|957564|957565|957566|957567|957568|957569|960125|960126|965997|966190|966191|979699|979700|979701|979702|979703|979704", "text": "Bloom syndrome" }, { - "baseId": "20497|970751", + "upstreamId": "20497|970751", "text": "Coronary heart disease 5" }, { - "baseId": "20498|20499|20500|20501|20502|20503|20504|187118|191399|191556|194424|194425|194426|194427|194941|237313|237382|237420|267837|268277|268664|271565|272448|314928|314932|314947|314948|314952|314954|314957|314958|314959|314961|314962|314970|314977|314980|314981|314988|314989|314993|314994|314997|321731|321734|321736|321737|321738|321746|321762|321764|321773|321775|321779|327808|327829|327832|327834|327835|327836|327839|327842|327849|327850|328912|328918|328919|328920|328926|358050|489344|491187|539039|546189|546199|546210|546217|546220|546228|546233|546240|546252|546253|546257|546261|546263|546267|546269|546277|546280|546282|546284|546486|546490|546492|546500|546502|546504|546510|546512|546514|546518|546521|546523|546525|546617|546618|546622|546634|546636|546640|546648|546649|546651|546656|546658|546665|546668|546669|546847|546849|546860|546862|546868|546871|546874|546884|546889|546893|546894|546897|546903|546912|546918|546922|546927|552153|584528|585644|585760|622407|682319|713105|724673|724674|724675|738222|738224|738225|738226|738227|738228|744659|752889|752890|752893|759939|759942|760041|760110|768679|768680|768682|768683|768685|768689|768695|768696|775728|784140|784144|784145|784149|788854|792783|792784|818395|868694|868695|868696|868697|868698|868699|868700|868701|868702|868703|868704|868705|868706|868707|868708|868709|868710|868711|868712|868713|872130|872131|872132|872133|966616|979070|979071|979072|979073|979074|979075|979076|979077|979078|979079|979080|979081|979082|979083|979084|979085|979086|979087|979088|979089|979090|979091|979092|979093|979094|979095|979096|979097|979098|979099|979100|979101|979102|979103|979104|979105|979106|979107|979108|979109|979110|979111|979112|979113|983464|983465", + "upstreamId": "20498|20499|20500|20501|20502|20503|20504|187118|191399|191556|194424|194425|194426|194427|194941|237313|237382|237420|267837|268277|268664|271565|272448|314928|314932|314947|314948|314952|314954|314957|314958|314959|314961|314962|314970|314977|314980|314981|314988|314989|314993|314994|314997|321731|321734|321736|321737|321738|321746|321762|321764|321773|321775|321779|327808|327829|327832|327834|327835|327836|327839|327842|327849|327850|328912|328918|328919|328920|328926|358050|489344|491187|539039|546189|546199|546210|546217|546220|546228|546233|546240|546252|546253|546257|546261|546263|546267|546269|546277|546280|546282|546284|546486|546490|546492|546500|546502|546504|546510|546512|546514|546518|546521|546523|546525|546617|546618|546622|546634|546636|546640|546648|546649|546651|546656|546658|546665|546668|546669|546847|546849|546860|546862|546868|546871|546874|546884|546889|546893|546894|546897|546903|546912|546918|546922|546927|552153|584528|585644|585760|622407|682319|713105|724673|724674|724675|738222|738224|738225|738226|738227|738228|744659|752889|752890|752893|759939|759942|760041|760110|768679|768680|768682|768683|768685|768689|768695|768696|775728|784140|784144|784145|784149|788854|792783|792784|818395|868694|868695|868696|868697|868698|868699|868700|868701|868702|868703|868704|868705|868706|868707|868708|868709|868710|868711|868712|868713|872130|872131|872132|872133|966616|979070|979071|979072|979073|979074|979075|979076|979077|979078|979079|979080|979081|979082|979083|979084|979085|979086|979087|979088|979089|979090|979091|979092|979093|979094|979095|979096|979097|979098|979099|979100|979101|979102|979103|979104|979105|979106|979107|979108|979109|979110|979111|979112|979113|983464|983465", "text": "Autosomal recessive osteopetrosis 1" }, { - "baseId": "20509|20510|20511|20512|20513|39380|39381|39382|46948|46950|46953|46954|133735|133736|140015|140016|140017|140019|140020|211841|211843|211847|211847|330736|330737|330741|330745|330746|330748|340961|340962|346543|346544|346546|346552|346554|346559|346563|346564|347859|347862|347867|347870|347875|347878|347880|347883|347884|438068|539078|626320|656483|798730|798731|878921|878922|878923|878924|878925|878926|878927|878928|878929|878930|878931|878932|964496", + "upstreamId": "20509|20510|20511|20512|20513|39380|39381|39382|46948|46950|46953|46954|133735|133736|140015|140016|140017|140019|140020|211841|211843|211847|211847|330736|330737|330741|330745|330746|330748|340961|340962|346543|346544|346546|346552|346554|346559|346563|346564|347859|347862|347867|347870|347875|347878|347880|347883|347884|438068|539078|626320|656483|798730|798731|878921|878922|878923|878924|878925|878926|878927|878928|878929|878930|878931|878932|964496", "text": "Spinocerebellar ataxia type 28" }, { - "baseId": "20516|20517|20518|20519|20520|20521|20522|34305|175949|175950|176093|215085|215086|215087|230548|271430|321750|321753|321755|331029|331030|331034|331035|331036|331042|331043|331052|331055|331057|331059|337765|337766|337769|337776|337778|337795|337810|337816|339775|339776|339784|339788|339794|339796|339800|339807|339808|339809|404820|677447|872913|872914|872915|872916|872917|872918|872919|872920|872921|872922|872923|872924|876464", + "upstreamId": "20516|20517|20518|20519|20520|20521|20522|34305|175949|175950|176093|215085|215086|215087|230548|271430|321750|321753|321755|331029|331030|331034|331035|331036|331042|331043|331052|331055|331057|331059|337765|337766|337769|337776|337778|337795|337810|337816|339775|339776|339784|339788|339794|339796|339800|339807|339808|339809|404820|677447|872913|872914|872915|872916|872917|872918|872919|872920|872921|872922|872923|872924|876464", "text": "Age-related macular degeneration 3" }, { - "baseId": "20520|21598|28229|34305|175949|175950|176093|215086|215087|230548|266502|271430|321750|321753|321755|330599|330600|330602|330603|330606|331029|331030|331034|331035|331036|331042|331043|331052|331055|331057|331059|337765|337766|337769|337776|337778|337795|337810|337816|339775|339776|339784|339788|339794|339796|339800|339807|339808|339809|340837|340843|340860|340861|340868|340869|346450|346452|346454|347785|347787|347788|347789|347790|347791|347792|347796|347799|347800|347801|347802|347803|656478|797630|801921|872913|872914|872915|872916|872917|872918|872919|872920|872921|872922|872923|872924|876464|878833|878834|878835|878836|878837|878838|878839|878840|878841|878842|878843|878844|880629", + "upstreamId": "20520|21598|28229|34305|175949|175950|176093|215086|215087|230548|266502|271430|321750|321753|321755|330599|330600|330602|330603|330606|331029|331030|331034|331035|331036|331042|331043|331052|331055|331057|331059|337765|337766|337769|337776|337778|337795|337810|337816|339775|339776|339784|339788|339794|339796|339800|339807|339808|339809|340837|340843|340860|340861|340868|340869|346450|346452|346454|347785|347787|347788|347789|347790|347791|347792|347796|347799|347800|347801|347802|347803|656478|797630|801921|872913|872914|872915|872916|872917|872918|872919|872920|872921|872922|872923|872924|876464|878833|878834|878835|878836|878837|878838|878839|878840|878841|878842|878843|878844|880629", "text": "Cutis laxa" }, { - "baseId": "20523|20524|20525|20526|20527|20528|152859|181193|181194|181195|181196|181197|181198|181199|190522|226404|227078|227079|227080|315381|315396|315402|315404|315405|315406|315414|315420|315422|315424|315429|315431|315440|315442|315443|315444|322216|322217|322219|322221|322222|322224|322225|322227|322230|322234|322235|322247|322249|322250|322253|322256|322258|322263|322272|322286|322287|322289|322291|328322|328331|328338|328339|328342|328360|328362|328363|328367|328370|328387|328388|328389|328395|328396|328397|328399|328407|328420|328427|329612|329618|329621|329622|329630|329634|329642|329652|329659|329671|329682|329683|329684|329696|329698|329716|329722|329723|329734|329740|329749|489074|550803|788860|839152|868893|868894|868895|868896|868897|868898|868899|868900|868901|868902|868903|868904|868905|868906|868907|868908|868909|868910|868911|868912|868913|868914|868915|868916|868917|868918|868919|868920|868921|868922|868923|917621|917622|917623|917625|919399|919400|976014", + "upstreamId": "20523|20524|20525|20526|20527|20528|152859|181193|181194|181195|181196|181197|181198|181199|190522|226404|227078|227079|227080|315381|315396|315402|315404|315405|315406|315414|315420|315422|315424|315429|315431|315440|315442|315443|315444|322216|322217|322219|322221|322222|322224|322225|322227|322230|322234|322235|322247|322249|322250|322253|322256|322258|322263|322272|322286|322287|322289|322291|328322|328331|328338|328339|328342|328360|328362|328363|328367|328370|328387|328388|328389|328395|328396|328397|328399|328407|328420|328427|329612|329618|329621|329622|329630|329634|329642|329652|329659|329671|329682|329683|329684|329696|329698|329716|329722|329723|329734|329740|329749|489074|550803|788860|839152|868893|868894|868895|868896|868897|868898|868899|868900|868901|868902|868903|868904|868905|868906|868907|868908|868909|868910|868911|868912|868913|868914|868915|868916|868917|868918|868919|868920|868921|868922|868923|917621|917622|917623|917625|919399|919400|976014", "text": "Exudative vitreoretinopathy 1" }, { - "baseId": "20525", + "upstreamId": "20525", "text": "Exudative vitreoretinopathy, digenic" }, { - "baseId": "20528", + "upstreamId": "20528", "text": "Retinopathy of prematurity" }, { - "baseId": "20529|20532|20533|20534|20535|101452|101453|101454|101455|101457|101458|101459|101460|101461|101463|101464|101466|101468|101469|101470|101471|101472|101474|101475|101476|134247|134248|134249|134251|134252|134253|134254|134256|134257|134257|134258|140512|140512|140513|140515|140517|140519|140520|140521|140522|140523|140525|140526|140527|140531|140532|140534|140535|140536|140537|140539|140540|140541|140542|176985|177117|177379|177379|177621|190866|191564|191564|191692|191693|191695|192129|192453|192670|192670|193620|193620|195365|195719|195720|195721|195722|196014|202015|202016|202021|202022|202023|202025|202026|202027|202028|202029|202030|202030|202031|202031|202033|202034|202035|202036|202036|202037|202039|202041|202044|202045|202047|202047|202050|202056|202057|202058|202060|202061|202063|202063|202064|202065|202065|202067|202069|202070|202071|202072|202074|202075|202077|202077|202078|202080|202081|202083|202083|202086|202087|202089|202093|202095|202096|202100|202100|202102|202103|202104|202105|202105|202107|202107|202108|202110|202111|202112|202113|202115|202117|202122|202122|202123|202125|207466|207468|207470|239990|252644|267590|267772|268024|269352|273118|273297|274638|302099|302105|302106|302110|302112|302118|302119|302122|302123|302124|302130|302131|302133|302136|302144|302146|302147|302148|302152|302154|302155|302156|302168|302169|302173|305257|305261|305271|305274|305278|305281|305282|305283|305285|305290|305292|305293|305303|305305|305306|305307|305311|305313|305314|305315|305317|305319|305326|305334|305335|305338|305341|305343|305344|305345|305348|305356|305357|310046|310047|310048|310049|310051|310056|310069|310070|310071|310076|310077|310081|310100|310101|310103|310110|310111|310112|310114|310116|310117|310118|310119|310122|310123|310126|310127|310129|310131|310132|310133|310134|310142|310143|310147|310148|310155|310159|310170|310177|310180|310183|310184|310185|310186|310187|310189|310196|310198|310200|310204|310205|310206|310207|310219|310237|310251|310257|310261|310265|369282|369288|369297|369298|369535|369539|369540|369553|369570|369579|370910|370955|395455|395465|395467|395607|395652|395657|395833|395835|396103|396108|396109|396123|407006|407008|407009|407014|407017|407019|407023|407025|407026|407028|407033|407033|407036|407037|407038|407040|407042|415085|421625|426670|428677|428680|428682|428686|431968|431969|431970|431971|431972|431973|444083|444088|444088|444090|444093|455860|456441|456443|456447|456450|456458|456751|456753|456757|456765|456767|456771|456772|457019|457023|457027|457029|457044|457476|457477|457481|457485|457486|457492|457502|488968|501619|501623|501917|502259|522253|522286|522393|522395|522400|522404|522408|522410|522413|522416|522417|522431|522433|522644|522645|522649|522651|522731|522736|522740|522746|522756|522759|523105|523108|523113|523115|523116|523121|561035|561396|561398|561649|561656|561658|561678|563845|566547|566547|566548|566548|566550|579289|579337|579477|584817|614311|614311|626311|635849|635850|635852|635853|635854|635855|635856|635857|635858|635859|635860|635861|635862|635864|635865|635866|635867|635868|635869|635870|635871|635872|635873|635874|635875|651587|651647|651652|651662|651705|662234|686980|686981|686983|686985|695355|736014|750480|750492|766152|766161|782812|782813|782816|789370|790708|790709|792768|819841|819842|819843|819844|819845|819846|819847|819848|833272|833273|833274|833275|833276|833277|833278|833279|833280|833281|833282|833283|833284|833285|833286|833287|833288|833289|833290|833291|833292|833293|833294|833295|833296|833297|833298|833299|833300|833301|833302|833303|833304|833305|833306|833307|851142|851632|852072|897607|897608|897609|897610|897611|897612|897613|897614|897615|897616|897617|897618|897619|897620|897621|897622|897623|897624|897625|897626|897627|897628|897629|897630|897631|897632|897633|897634|897635|897636|897637|897638|897639|897640|897641|897642|897643|897644|897645|897646|897647|897648|897649|897650|897651|897652|897653|897654|897655|897656|897657|897658|897659|904207|919086|924730|924731|924732|924733|924734|924735|924736|924737|924738|924739|924740|924741|924742|924743|924744|924745|933739|933740|933741|933742|933743|933744|933745|933746|933747|933748|933749|933750|933751|933752|933753|933754|933755|933756|933757|933758|933759|945502|945503|945504|945505|945506|945507|945508|945509|945510|945511|945512|945513|955081|955082|955083|955084|955085|955086|955087|963145|963146", + "upstreamId": "20529|20532|20533|20534|20535|101452|101453|101454|101455|101457|101458|101459|101460|101461|101463|101464|101466|101468|101469|101470|101471|101472|101474|101475|101476|134247|134248|134249|134251|134252|134253|134254|134256|134257|134257|134258|140512|140512|140513|140515|140517|140519|140520|140521|140522|140523|140525|140526|140527|140531|140532|140534|140535|140536|140537|140539|140540|140541|140542|176985|177117|177379|177379|177621|190866|191564|191564|191692|191693|191695|192129|192453|192670|192670|193620|193620|195365|195719|195720|195721|195722|196014|202015|202016|202021|202022|202023|202025|202026|202027|202028|202029|202030|202030|202031|202031|202033|202034|202035|202036|202036|202037|202039|202041|202044|202045|202047|202047|202050|202056|202057|202058|202060|202061|202063|202063|202064|202065|202065|202067|202069|202070|202071|202072|202074|202075|202077|202077|202078|202080|202081|202083|202083|202086|202087|202089|202093|202095|202096|202100|202100|202102|202103|202104|202105|202105|202107|202107|202108|202110|202111|202112|202113|202115|202117|202122|202122|202123|202125|207466|207468|207470|239990|252644|267590|267772|268024|269352|273118|273297|274638|302099|302105|302106|302110|302112|302118|302119|302122|302123|302124|302130|302131|302133|302136|302144|302146|302147|302148|302152|302154|302155|302156|302168|302169|302173|305257|305261|305271|305274|305278|305281|305282|305283|305285|305290|305292|305293|305303|305305|305306|305307|305311|305313|305314|305315|305317|305319|305326|305334|305335|305338|305341|305343|305344|305345|305348|305356|305357|310046|310047|310048|310049|310051|310056|310069|310070|310071|310076|310077|310081|310100|310101|310103|310110|310111|310112|310114|310116|310117|310118|310119|310122|310123|310126|310127|310129|310131|310132|310133|310134|310142|310143|310147|310148|310155|310159|310170|310177|310180|310183|310184|310185|310186|310187|310189|310196|310198|310200|310204|310205|310206|310207|310219|310237|310251|310257|310261|310265|369282|369288|369297|369298|369535|369539|369540|369553|369570|369579|370910|370955|395455|395465|395467|395607|395652|395657|395833|395835|396103|396108|396109|396123|407006|407008|407009|407014|407017|407019|407023|407025|407026|407028|407033|407033|407036|407037|407038|407040|407042|415085|421625|426670|428677|428680|428682|428686|431968|431969|431970|431971|431972|431973|444083|444088|444088|444090|444093|455860|456441|456443|456447|456450|456458|456751|456753|456757|456765|456767|456771|456772|457019|457023|457027|457029|457044|457476|457477|457481|457485|457486|457492|457502|488968|501619|501623|501917|502259|522253|522286|522393|522395|522400|522404|522408|522410|522413|522416|522417|522431|522433|522644|522645|522649|522651|522731|522736|522740|522746|522756|522759|523105|523108|523113|523115|523116|523121|561035|561396|561398|561649|561656|561658|561678|563845|566547|566547|566548|566548|566550|579289|579337|579477|584817|614311|614311|626311|635849|635850|635852|635853|635854|635855|635856|635857|635858|635859|635860|635861|635862|635864|635865|635866|635867|635868|635869|635870|635871|635872|635873|635874|635875|651587|651647|651652|651662|651705|662234|686980|686981|686983|686985|695355|736014|750480|750492|766152|766161|782812|782813|782816|789370|790708|790709|792768|819841|819842|819843|819844|819845|819846|819847|819848|833272|833273|833274|833275|833276|833277|833278|833279|833280|833281|833282|833283|833284|833285|833286|833287|833288|833289|833290|833291|833292|833293|833294|833295|833296|833297|833298|833299|833300|833301|833302|833303|833304|833305|833306|833307|851142|851632|852072|897607|897608|897609|897610|897611|897612|897613|897614|897615|897616|897617|897618|897619|897620|897621|897622|897623|897624|897625|897626|897627|897628|897629|897630|897631|897632|897633|897634|897635|897636|897637|897638|897639|897640|897641|897642|897643|897644|897645|897646|897647|897648|897649|897650|897651|897652|897653|897654|897655|897656|897657|897658|897659|904207|919086|924730|924731|924732|924733|924734|924735|924736|924737|924738|924739|924740|924741|924742|924743|924744|924745|933739|933740|933741|933742|933743|933744|933745|933746|933747|933748|933749|933750|933751|933752|933753|933754|933755|933756|933757|933758|933759|945502|945503|945504|945505|945506|945507|945508|945509|945510|945511|945512|945513|955081|955082|955083|955084|955085|955086|955087|963145|963146", "text": "Pitt-Hopkins-like syndrome 1" }, { - "baseId": "20530|20531|20532|134257|140512|177117|177379|191564|192670|193620|202030|202031|202036|202047|202063|202065|202077|202083|202100|202105|202107|202122|407033|407037|444088|566547|566548|614311", + "upstreamId": "20530|20531|20532|134257|140512|177117|177379|191564|192670|193620|202030|202031|202036|202047|202063|202065|202077|202083|202100|202105|202107|202122|407033|407037|444088|566547|566548|614311", "text": "Autism 15" }, { - "baseId": "20536|20537|20538|39377|39378|39379|101427|101428|101430|133799|133802|133803|133804|206834|206835|280991|280992|280993|280997|280998|281002|281014|281594|281596|281599|281601|281602|281603|281605|281608|281609|281610|281613|282785|282799|282804|283089|283091|283123|283125|361159|365165|365368|365430|365439|498545|498772|541218|541221|541224|541227|541229|541230|541235|541238|541239|541243|541248|541249|541250|541255|541258|541264|541266|541274|541275|541277|541327|541329|541331|541334|541335|541336|541337|541338|541342|541345|541347|541348|557401|557403|620010|628205|628206|628207|650614|690655|696831|707493|719046|732549|732550|732551|746610|746611|746612|762048|762049|774538|774546|818987|818988|824346|824347|824348|824349|824350|864684|864685|864686|864687|864688|864689|864690|864691|864692|864693|864694|864695|864696|864697|864698|864699|864700|864701|865197|865198|930640|930641|930642|942081|942082|952498|952499|959568|970700|977553|977554|977555|977556", + "upstreamId": "20536|20537|20538|39377|39378|39379|101427|101428|101430|133799|133802|133803|133804|206834|206835|280991|280992|280993|280997|280998|281002|281014|281594|281596|281599|281601|281602|281603|281605|281608|281609|281610|281613|282785|282799|282804|283089|283091|283123|283125|361159|365165|365368|365430|365439|498545|498772|541218|541221|541224|541227|541229|541230|541235|541238|541239|541243|541248|541249|541250|541255|541258|541264|541266|541274|541275|541277|541327|541329|541331|541334|541335|541336|541337|541338|541342|541345|541347|541348|557401|557403|620010|628205|628206|628207|650614|690655|696831|707493|719046|732549|732550|732551|746610|746611|746612|762048|762049|774538|774546|818987|818988|824346|824347|824348|824349|824350|864684|864685|864686|864687|864688|864689|864690|864691|864692|864693|864694|864695|864696|864697|864698|864699|864700|864701|865197|865198|930640|930641|930642|942081|942082|952498|952499|959568|970700|977553|977554|977555|977556", "text": "Congenital disorder of glycosylation type 1C" }, { - "baseId": "20540|76320|266806|284098|284099|284103|284104|284112|284113|284135|284137|284141|284878|284899|284902|284903|284905|284907|286800|286809|286814|286815|286818|286820|286822|286829|286830|286831|287212|287215|287216|287221|287222|433629|489334|517542|517644|517677|559051|560558|612590|629317|629318|650944|707950|707952|825614|825615|825616|825617|850874|883427|883428|883429|883430|883431|883432|883433|883434|883435|883436|883437|883438|883439|883440|883441|883442|883443|883444|883445|883446|922526|931081|931082|931083|942570|952890|952891", + "upstreamId": "20540|76320|266806|284098|284099|284103|284104|284112|284113|284135|284137|284141|284878|284899|284902|284903|284905|284907|286800|286809|286814|286815|286818|286820|286822|286829|286830|286831|287212|287215|287216|287221|287222|433629|489334|517542|517644|517677|559051|560558|612590|629317|629318|650944|707950|707952|825614|825615|825616|825617|850874|883427|883428|883429|883430|883431|883432|883433|883434|883435|883436|883437|883438|883439|883440|883441|883442|883443|883444|883445|883446|922526|931081|931082|931083|942570|952890|952891", "text": "Common variable immunodeficiency 1" }, { - "baseId": "20541|20542|20543|106719|195366|196015|265949|266287|270417|272321|272322|275287|297152|297159|297160|297161|297163|297164|297165|297177|297180|297181|297182|297189|297191|297193|297194|297199|297201|297210|297213|297215|297217|297219|297224|297225|297232|297233|297238|297239|297247|299109|299110|299119|299123|299124|299126|299142|299146|299147|299155|299161|299163|299168|299174|299177|299178|299179|299181|299182|299183|299184|299185|299190|299191|299196|299197|299212|299219|299223|299225|303327|303335|303338|303343|303370|303371|303375|303379|303380|303381|303383|303390|303392|303393|303395|303400|303403|303414|303416|303418|303424|303425|303430|303431|303441|303442|303447|303449|303484|303499|303506|303508|303510|303518|303519|303520|303526|303530|303543|303544|303546|303563|303573|303574|303579|303607|303610|303613|303614|303615|303617|303640|303643|303644|303662|303664|303665|303666|357418|359565|359679|368125|368131|368411|368415|368587|368594|368600|368603|369824|369826|406727|406729|406730|406731|406732|406733|425640|443776|443777|443779|443780|454849|454850|454858|454861|454976|454978|454982|454985|454995|454999|455448|455451|455454|455457|455461|455464|455465|455710|455716|455720|455722|500834|500835|500850|501117|501121|501137|501144|501150|501310|501317|501501|501507|501515|501533|501550|501551|520304|521092|521340|521349|521351|521458|521460|521611|521617|521619|521630|521635|521637|521638|521642|537481|543427|543693|543749|543859|560285|560287|560289|560392|560394|560396|560398|560400|560402|560404|563077|563080|563081|565059|565068|565071|565074|614285|614286|614287|633799|633800|633801|633802|633803|633804|633805|633806|633807|633808|633809|633810|633811|633812|633813|633814|633815|633816|633817|633818|633819|633820|633821|633822|633823|633824|633825|633826|633827|633828|633829|655659|655660|655661|655662|660878|691825|691826|691827|691828|691829|691830|691831|691832|691833|691834|691835|699030|699031|699032|699033|699034|699035|709845|709846|721407|721408|721409|735043|735044|744048|749443|749445|749446|749447|765053|765054|765056|765057|765060|765063|765066|765067|775077|777537|777578|779303|782255|782258|782260|782261|782262|782263|787511|819581|819582|819583|819584|830738|830739|830740|830741|830742|830743|830744|830745|830746|830747|830748|830749|830750|830751|830752|830753|830754|830755|830756|851282|851905|852200|894013|894014|894015|894016|894017|894018|894019|894020|894021|894022|894023|894024|894025|894026|894027|894028|894029|894030|894031|894032|894033|894034|894035|894036|894037|894038|894039|894040|894041|894042|894043|894044|894045|894046|894047|894048|894049|894050|894051|894052|894053|894054|894055|894056|894057|894058|896085|896086|924017|924018|924019|932875|932876|932877|932878|932879|940000|944577|944578|944579|954131|954132|954133|954134|954135|954136|954137|954138|954139|954140|954141|954142|954143|954144|954145|954146|954147|960562|960563|960564|960565|978164|978165|978166|978167|978168|978169|978170|978171|978172|978173|978174|978175|978176|978177|978178", + "upstreamId": "20541|20542|20543|106719|195366|196015|265949|266287|270417|272321|272322|275287|297152|297159|297160|297161|297163|297164|297165|297177|297180|297181|297182|297189|297191|297193|297194|297199|297201|297210|297213|297215|297217|297219|297224|297225|297232|297233|297238|297239|297247|299109|299110|299119|299123|299124|299126|299142|299146|299147|299155|299161|299163|299168|299174|299177|299178|299179|299181|299182|299183|299184|299185|299190|299191|299196|299197|299212|299219|299223|299225|303327|303335|303338|303343|303370|303371|303375|303379|303380|303381|303383|303390|303392|303393|303395|303400|303403|303414|303416|303418|303424|303425|303430|303431|303441|303442|303447|303449|303484|303499|303506|303508|303510|303518|303519|303520|303526|303530|303543|303544|303546|303563|303573|303574|303579|303607|303610|303613|303614|303615|303617|303640|303643|303644|303662|303664|303665|303666|357418|359565|359679|368125|368131|368411|368415|368587|368594|368600|368603|369824|369826|406727|406729|406730|406731|406732|406733|425640|443776|443777|443779|443780|454849|454850|454858|454861|454976|454978|454982|454985|454995|454999|455448|455451|455454|455457|455461|455464|455465|455710|455716|455720|455722|500834|500835|500850|501117|501121|501137|501144|501150|501310|501317|501501|501507|501515|501533|501550|501551|520304|521092|521340|521349|521351|521458|521460|521611|521617|521619|521630|521635|521637|521638|521642|537481|543427|543693|543749|543859|560285|560287|560289|560392|560394|560396|560398|560400|560402|560404|563077|563080|563081|565059|565068|565071|565074|614285|614286|614287|633799|633800|633801|633802|633803|633804|633805|633806|633807|633808|633809|633810|633811|633812|633813|633814|633815|633816|633817|633818|633819|633820|633821|633822|633823|633824|633825|633826|633827|633828|633829|655659|655660|655661|655662|660878|691825|691826|691827|691828|691829|691830|691831|691832|691833|691834|691835|699030|699031|699032|699033|699034|699035|709845|709846|721407|721408|721409|735043|735044|744048|749443|749445|749446|749447|765053|765054|765056|765057|765060|765063|765066|765067|775077|777537|777578|779303|782255|782258|782260|782261|782262|782263|787511|819581|819582|819583|819584|830738|830739|830740|830741|830742|830743|830744|830745|830746|830747|830748|830749|830750|830751|830752|830753|830754|830755|830756|851282|851905|852200|894013|894014|894015|894016|894017|894018|894019|894020|894021|894022|894023|894024|894025|894026|894027|894028|894029|894030|894031|894032|894033|894034|894035|894036|894037|894038|894039|894040|894041|894042|894043|894044|894045|894046|894047|894048|894049|894050|894051|894052|894053|894054|894055|894056|894057|894058|896085|896086|924017|924018|924019|932875|932876|932877|932878|932879|940000|944577|944578|944579|954131|954132|954133|954134|954135|954136|954137|954138|954139|954140|954141|954142|954143|954144|954145|954146|954147|960562|960563|960564|960565|978164|978165|978166|978167|978168|978169|978170|978171|978172|978173|978174|978175|978176|978177|978178", "text": "Ehlers-Danlos syndrome dermatosparaxis type" }, { - "baseId": "20544|20545|965641", + "upstreamId": "20544|20545|965641", "text": "Retinitis pigmentosa 46" }, { - "baseId": "20546|89015|247049|390502|433381|437874|460362|460419|460421|460704|461181|525541|525542|525543|525545|525635|525824|563498|564065|564066|564952|566663|569911|639332|639333|639334|639335|639336|639337|639338|652121|652169|652356|724133|737661|744520|752350|752351|752352|752354|768082|779659|799626|820285|837532|837533|837534|837535|837536|837537|837538|837539|837540|837541|837542|837543|925988|925989|925990|940975|947162|956292|960737|964669", + "upstreamId": "20546|89015|247049|390502|433381|437874|460362|460419|460421|460704|461181|525541|525542|525543|525545|525635|525824|563498|564065|564066|564952|566663|569911|639332|639333|639334|639335|639336|639337|639338|652121|652169|652356|724133|737661|744520|752350|752351|752352|752354|768082|779659|799626|820285|837532|837533|837534|837535|837536|837537|837538|837539|837540|837541|837542|837543|925988|925989|925990|940975|947162|956292|960737|964669", "text": "Agammaglobulinemia 4, autosomal recessive" }, { - "baseId": "20547|20548|20549|20550|191037|191669|191905|192116|194391|227364|266817|266928|267366|272444|275002|321759|321760|321761|321765|321768|321774|321776|321781|321783|321784|321785|321787|321789|321797|321799|321800|321802|321803|321804|321810|321811|321818|321819|321823|321825|331063|331067|331078|331079|331095|331101|331102|331109|331110|331111|331115|331117|331125|331126|331129|331133|337830|337833|337846|337851|337852|337854|337857|337858|337859|337861|337864|337868|337869|337872|337874|337882|337895|337896|337899|337901|337908|337915|337931|339811|339812|339819|339825|339826|339831|339832|339836|339839|339840|339841|339845|339846|339847|339857|339858|339864|339870|339874|339875|339879|339889|339891|339892|339893|339894|339901|339902|339906|339915|339919|373947|374411|374415|376267|376275|433989|433991|445262|463596|497041|504909|504914|504919|505589|528808|528854|568334|568336|568337|569066|569067|569069|572969|572972|572976|588802|610502|610508|610510|620498|642782|642783|642784|642785|642786|642787|642788|654766|656273|656274|679926|679927|679928|679929|725858|725859|725861|730965|739391|739393|739395|754212|769954|799786|841904|841905|841906|841907|852019|872925|872926|872927|872928|872929|872930|872931|872932|872933|872934|872935|872936|872937|872938|872939|872940|872941|872942|872943|872944|872945|872946|872947|872948|872949|872950|872951|872952|872953|872954|872955|872956|872957|872958|872959|872960|872961|872962|872963|872964|872965|876465|876466|876467|927195|927196|948724|948725|957338|957339|957340", + "upstreamId": "20547|20548|20549|20550|191037|191669|191905|192116|194391|227364|266817|266928|267366|272444|275002|321759|321760|321761|321765|321768|321774|321776|321781|321783|321784|321785|321787|321789|321797|321799|321800|321802|321803|321804|321810|321811|321818|321819|321823|321825|331063|331067|331078|331079|331095|331101|331102|331109|331110|331111|331115|331117|331125|331126|331129|331133|337830|337833|337846|337851|337852|337854|337857|337858|337859|337861|337864|337868|337869|337872|337874|337882|337895|337896|337899|337901|337908|337915|337931|339811|339812|339819|339825|339826|339831|339832|339836|339839|339840|339841|339845|339846|339847|339857|339858|339864|339870|339874|339875|339879|339889|339891|339892|339893|339894|339901|339902|339906|339915|339919|373947|374411|374415|376267|376275|433989|433991|445262|463596|497041|504909|504914|504919|505589|528808|528854|568334|568336|568337|569066|569067|569069|572969|572972|572976|588802|610502|610508|610510|620498|642782|642783|642784|642785|642786|642787|642788|654766|656273|656274|679926|679927|679928|679929|725858|725859|725861|730965|739391|739393|739395|754212|769954|799786|841904|841905|841906|841907|852019|872925|872926|872927|872928|872929|872930|872931|872932|872933|872934|872935|872936|872937|872938|872939|872940|872941|872942|872943|872944|872945|872946|872947|872948|872949|872950|872951|872952|872953|872954|872955|872956|872957|872958|872959|872960|872961|872962|872963|872964|872965|876465|876466|876467|927195|927196|948724|948725|957338|957339|957340", "text": "Achondrogenesis, type IA" }, { - "baseId": "20547|513449|513450|610502|610504|610505|610507", + "upstreamId": "20547|513449|513450|610502|610504|610505|610507", "text": "Goldblatt hypertension" }, { - "baseId": "20551|20552|20553|20554|20555|20556|20557|20558|20559|20560|20561|47015|47016|98559|98564|135646|135647|135648|135649|135650|135651|135652|135653|178066|178390|186865|186866|186867|186868|186869|186870|186871|190869|190870|190871|190872|190873|190874|190875|208015|208016|208017|208018|208019|208021|208022|209354|215463|230438|237032|237066|237288|241615|241616|241617|241619|241622|241624|241625|241627|241628|241629|241631|254831|254833|254834|254837|254838|254841|254842|254843|264512|264659|264664|264725|265443|266622|267143|268016|268019|269478|269480|270758|271448|271539|272475|272665|274745|319224|319226|319230|319234|319236|319237|319239|319247|319248|319252|319256|319260|319261|319264|319268|319270|319277|319284|319296|319297|319301|319304|319307|319310|319312|327724|327755|327757|327763|327764|327767|327771|327774|327775|327789|327791|327792|327794|327804|327806|327809|327812|327815|327819|327821|327823|327826|334023|334031|334033|334035|334037|334038|334044|334045|334046|334062|334069|334070|334072|334075|334081|334084|334087|334088|334089|334090|334097|334098|334113|334120|334127|335640|335653|335661|335665|335666|335669|335670|335683|335684|335688|335691|335693|335696|335698|335699|335701|335705|335708|335716|335718|335721|335722|335727|335728|335732|358136|358137|358138|358139|358140|358141|358142|358143|358144|358145|358146|358147|358148|358149|358150|358151|358152|358153|358154|358155|358156|358157|358158|358159|358160|358161|358162|358163|358164|358165|358166|358167|358168|358169|358170|358171|358172|358173|358174|358175|358176|358177|358178|358179|358180|358181|358182|358183|358184|358185|358186|358187|358188|358189|358190|358191|358192|358193|358194|358195|358196|358197|358198|358199|358200|358201|358202|358203|358204|358205|358206|358207|358208|358209|358210|359998|360126|384411|399113|399266|399271|399623|429482|437952|441595|441597|441601|441604|441607|441608|441609|441610|441613|441614|441615|441616|441617|441622|441623|441624|441627|441628|441629|445128|445130|445131|445132|462615|462633|462642|462911|462921|463490|463491|463494|488374|494100|495740|497235|513167|513168|513328|513329|513330|527524|527533|527755|527759|527768|528016|528022|540460|546800|546801|546805|546806|546807|546809|546812|546813|546817|546822|546827|546829|546831|546835|546841|546843|546846|546848|546852|546854|546859|546863|546864|546869|546872|546875|546880|546886|546895|546896|546901|546908|546914|546917|546919|546921|546924|546928|546935|546937|546939|546943|546950|546951|546976|546982|546983|546988|546989|546991|546993|546996|546997|547017|547018|547020|547023|547025|547028|547029|547036|547037|547040|547064|547065|547067|547069|547074|547076|547087|547089|547091|547092|547094|547100|547101|547103|547104|547106|547107|547110|547111|547113|547114|547128|547130|547132|547134|547135|547136|547140|547141|547143|547144|547145|547152|547153|547158|547159|547161|547162|547164|547166|547172|547173|547175|547178|547183|547185|547187|547189|547206|547208|547211|547212|547217|547219|547223|547224|547226|547227|547233|547235|547237|547240|547245|547248|547251|547252|547254|547257|547259|547261|547263|547273|547351|547354|547361|547376|547380|547382|547387|547390|547391|547404|547405|547411|547414|547419|547420|547427|547429|547432|547445|547452|547464|547467|547472|547475|547478|547482|547485|547497|547499|547517|547524|547526|547536|547543|547550|547551|547555|547556|549997|550623|550624|565880|565884|568280|568282|572232|572237|576158|577301|577302|577307|577309|577310|577321|577324|577325|610423|612299|612300|612301|612972|621387|641595|641597|641603|641606|641610|641611|641628|656197|677441|677442|677443|684386|684388|684392|684393|684394|684395|684399|684402|684403|684404|684405|684406|684407|684408|684409|684410|684411|684414|688102|688107|688114|688115|688117|688120|688122|688124|688127|688128|688129|688133|688135|688139|688145|688147|688148|688150|688152|688153|688154|688155|693334|693335|693336|693337|693342|693344|693346|693347|713872|738994|738999|769421|791295|791296|792791|793462|793463|793464|793466|793467|793470|793472|793473|793477|793482|793483|796920|796921|801720|840588|840595|840605|840607|840613|840614|840615|870903|870904|870905|870906|870907|870908|870909|870910|870911|870912|870913|870914|870915|870916|870917|870918|870920|870921|870922|870923|870924|870925|870926|870927|870928|870929|870930|870931|870932|870933|870934|870935|870936|870937|870938|870939|870940|870941|870942|870943|870944|870945|870946|870947|870948|870949|870950|870951|870952|870953|870954|870955|870956|870957|870958|870959|870960|870961|870962|870963|870964|870965|870966|870967|870968|870969|870970|872320|905938|917133|919491|919492|965932|965933|966056|970979|970980|979362|979363|979364|979365|979366|979367|979368|979369|979370|979371|979372|979373|979374|979375|979376|979377", + "upstreamId": "20551|20552|20553|20554|20555|20556|20557|20558|20559|20560|20561|47015|47016|98559|98564|135646|135647|135648|135649|135650|135651|135652|135653|178066|178390|186865|186866|186867|186868|186869|186870|186871|190869|190870|190871|190872|190873|190874|190875|208015|208016|208017|208018|208019|208021|208022|209354|215463|230438|237032|237066|237288|241615|241616|241617|241619|241622|241624|241625|241627|241628|241629|241631|254831|254833|254834|254837|254838|254841|254842|254843|264512|264659|264664|264725|265443|266622|267143|268016|268019|269478|269480|270758|271448|271539|272475|272665|274745|319224|319226|319230|319234|319236|319237|319239|319247|319248|319252|319256|319260|319261|319264|319268|319270|319277|319284|319296|319297|319301|319304|319307|319310|319312|327724|327755|327757|327763|327764|327767|327771|327774|327775|327789|327791|327792|327794|327804|327806|327809|327812|327815|327819|327821|327823|327826|334023|334031|334033|334035|334037|334038|334044|334045|334046|334062|334069|334070|334072|334075|334081|334084|334087|334088|334089|334090|334097|334098|334113|334120|334127|335640|335653|335661|335665|335666|335669|335670|335683|335684|335688|335691|335693|335696|335698|335699|335701|335705|335708|335716|335718|335721|335722|335727|335728|335732|358136|358137|358138|358139|358140|358141|358142|358143|358144|358145|358146|358147|358148|358149|358150|358151|358152|358153|358154|358155|358156|358157|358158|358159|358160|358161|358162|358163|358164|358165|358166|358167|358168|358169|358170|358171|358172|358173|358174|358175|358176|358177|358178|358179|358180|358181|358182|358183|358184|358185|358186|358187|358188|358189|358190|358191|358192|358193|358194|358195|358196|358197|358198|358199|358200|358201|358202|358203|358204|358205|358206|358207|358208|358209|358210|359998|360126|384411|399113|399266|399271|399623|429482|437952|441595|441597|441601|441604|441607|441608|441609|441610|441613|441614|441615|441616|441617|441622|441623|441624|441627|441628|441629|445128|445130|445131|445132|462615|462633|462642|462911|462921|463490|463491|463494|488374|494100|495740|497235|513167|513168|513328|513329|513330|527524|527533|527755|527759|527768|528016|528022|540460|546800|546801|546805|546806|546807|546809|546812|546813|546817|546822|546827|546829|546831|546835|546841|546843|546846|546848|546852|546854|546859|546863|546864|546869|546872|546875|546880|546886|546895|546896|546901|546908|546914|546917|546919|546921|546924|546928|546935|546937|546939|546943|546950|546951|546976|546982|546983|546988|546989|546991|546993|546996|546997|547017|547018|547020|547023|547025|547028|547029|547036|547037|547040|547064|547065|547067|547069|547074|547076|547087|547089|547091|547092|547094|547100|547101|547103|547104|547106|547107|547110|547111|547113|547114|547128|547130|547132|547134|547135|547136|547140|547141|547143|547144|547145|547152|547153|547158|547159|547161|547162|547164|547166|547172|547173|547175|547178|547183|547185|547187|547189|547206|547208|547211|547212|547217|547219|547223|547224|547226|547227|547233|547235|547237|547240|547245|547248|547251|547252|547254|547257|547259|547261|547263|547273|547351|547354|547361|547376|547380|547382|547387|547390|547391|547404|547405|547411|547414|547419|547420|547427|547429|547432|547445|547452|547464|547467|547472|547475|547478|547482|547485|547497|547499|547517|547524|547526|547536|547543|547550|547551|547555|547556|549997|550623|550624|565880|565884|568280|568282|572232|572237|576158|577301|577302|577307|577309|577310|577321|577324|577325|610423|612299|612300|612301|612972|621387|641595|641597|641603|641606|641610|641611|641628|656197|677441|677442|677443|684386|684388|684392|684393|684394|684395|684399|684402|684403|684404|684405|684406|684407|684408|684409|684410|684411|684414|688102|688107|688114|688115|688117|688120|688122|688124|688127|688128|688129|688133|688135|688139|688145|688147|688148|688150|688152|688153|688154|688155|693334|693335|693336|693337|693342|693344|693346|693347|713872|738994|738999|769421|791295|791296|792791|793462|793463|793464|793466|793467|793470|793472|793473|793477|793482|793483|796920|796921|801720|840588|840595|840605|840607|840613|840614|840615|870903|870904|870905|870906|870907|870908|870909|870910|870911|870912|870913|870914|870915|870916|870917|870918|870920|870921|870922|870923|870924|870925|870926|870927|870928|870929|870930|870931|870932|870933|870934|870935|870936|870937|870938|870939|870940|870941|870942|870943|870944|870945|870946|870947|870948|870949|870950|870951|870952|870953|870954|870955|870956|870957|870958|870959|870960|870961|870962|870963|870964|870965|870966|870967|870968|870969|870970|872320|905938|917133|919491|919492|965932|965933|966056|970979|970980|979362|979363|979364|979365|979366|979367|979368|979369|979370|979371|979372|979373|979374|979375|979376|979377", "text": "Charlevoix-Saguenay spastic ataxia" }, { - "baseId": "20562|133805|133806|133807|133808|133809|207213|207213|237097|237122|297310|297311|297312|297316|297317|297326|299313|299315|299316|299317|299318|299328|299329|299332|299333|303522|303527|303528|303529|303532|303535|303538|303540|303541|303542|303545|303765|303767|303778|303790|303807|303809|303815|303819|303828|303849|303850|303856|368156|369835|369853|494217|494217|501183|588163|588758|620195|790551|790552|830836|894114|894115|894116|894117|894118|894119|894120|894121|894122|894123|894124|894125|894126|894127|894128|894129|894130|894131|894132|894133|894134|894135|894136|896091", + "upstreamId": "20562|133805|133806|133807|133808|133809|207213|207213|237097|237122|297310|297311|297312|297316|297317|297326|299313|299315|299316|299317|299318|299328|299329|299332|299333|303522|303527|303528|303529|303532|303535|303538|303540|303541|303542|303545|303765|303767|303778|303790|303807|303809|303815|303819|303828|303849|303850|303856|368156|369835|369853|494217|494217|501183|588163|588758|620195|790551|790552|830836|894114|894115|894116|894117|894118|894119|894120|894121|894122|894123|894124|894125|894126|894127|894128|894129|894130|894131|894132|894133|894134|894135|894136|896091", "text": "Alpha-methylacyl-CoA racemase deficiency" }, { - "baseId": "20562|20563|207213|494217", + "upstreamId": "20562|20563|207213|494217", "text": "Congenital bile acid synthesis defect 4" }, { - "baseId": "20564|20565|53873|53875|53876|53877|53881|150263|176490|178715|189965|192360|198471|198473|213643|273206|338243|344342|344344|344346|344351|345772|467823|513211|802218|877391|877392|877393|877394|877395", + "upstreamId": "20564|20565|53873|53875|53876|53877|53881|150263|176490|178715|189965|192360|198471|198473|213643|273206|338243|344342|344344|344346|344351|345772|467823|513211|802218|877391|877392|877393|877394|877395", "text": "Autosomal recessive limb-girdle muscular dystrophy type 2G" }, { - "baseId": "20564|20566|27746|53870|53872|53873|53873|53874|53874|53875|53875|53876|53876|53877|53877|53877|53878|53879|53880|53881|53881|176490|176490|176492|176628|176629|178715|178715|187657|187659|187659|189965|189965|192359|198471|198471|198472|198473|198473|198474|198477|198478|198480|224514|224515|242733|242734|242735|259005|259007|266688|267457|268263|270405|273206|273206|274882|338243|344342|344344|344346|344351|345772|401951|422163|441954|466769|467648|467816|467818|467823|467824|468001|468005|487689|510738|510739|531105|531182|569020|571313|571315|574447|645828|645829|645830|645831|645832|645833|845249|845250|845251|845252|845253|845254|877391|877392|877393|877394|877395|928240|928241|937901|937902|937903|949892|949893|958094|958095", + "upstreamId": "20564|20566|27746|53870|53872|53873|53873|53874|53874|53875|53875|53876|53876|53877|53877|53877|53878|53879|53880|53881|53881|176490|176490|176492|176628|176629|178715|178715|187657|187659|187659|189965|189965|192359|198471|198471|198472|198473|198473|198474|198477|198478|198480|224514|224515|242733|242734|242735|259005|259007|266688|267457|268263|270405|273206|273206|274882|338243|344342|344344|344346|344351|345772|401951|422163|441954|466769|467648|467816|467818|467823|467824|468001|468005|487689|510738|510739|531105|531182|569020|571313|571315|574447|645828|645829|645830|645831|645832|645833|845249|845250|845251|845252|845253|845254|877391|877392|877393|877394|877395|928240|928241|937901|937902|937903|949892|949893|958094|958095", "text": "Hypertrophic cardiomyopathy 25" }, { - "baseId": "20566|23641|23642|23643|23647|23647|23649|23651|23653|23655|23656|23658|23660|39098|39099|45263|45264|45266|45266|45269|45272|45275|45276|45277|45725|51668|51669|51673|51676|51678|51685|51688|51691|51694|51695|51703|51705|51706|51710|51711|51713|51715|51716|51719|51732|51733|51735|51736|51737|51738|51742|51746|51747|51747|51755|51755|51769|51777|51777|51778|51780|51788|51789|51790|51796|51797|51805|51806|51808|51814|51815|51817|51821|51822|51823|51826|51828|51833|51834|51836|51839|51841|51852|51857|51858|51860|51862|51870|51873|51875|51876|51876|51879|51881|51882|51885|51889|51895|51896|51905|51906|51910|51914|51922|51926|51928|51930|51931|51933|51937|51938|51941|51942|51945|51947|51948|51949|51950|51956|51959|51962|51962|51963|51966|51967|51970|51971|51974|51976|51977|51977|51980|51983|51985|75578|75580|142020|142022|142024|142029|165560|165560|171133|171136|171136|171139|171141|171142|171143|171144|171145|171146|171147|172177|174731|174737|174756|174757|174761|174764|174770|174773|174775|174776|174776|174778|174779|174785|175138|175139|175143|175146|175150|175168|175171|175175|175188|175197|175201|175203|179171|179196|179223|179232|179233|179266|179279|179299|179321|179338|179343|179351|179357|179373|179397|186345|186368|186384|186400|186404|186405|189889|193011|212928|212929|213610|214109|214110|214111|214112|214113|214115|214116|214117|214119|214120|222146|248633|248634|248635|260509|314276|320888|326913|326929|326930|326931|326940|326949|327964|327976|327977|362227|371466|372203|372209|374122|384440|390042|398206|398754|404802|415274|418554|419284|424284|430964|430982|434640|461358|461632|461652|461957|461980|462012|504238|508865|508866|512848|512849|512927|513091|526245|564717|613612|615940|617882|620403|625810|625811|679781|791140|791141|791142|818289|868092|868093|868094|868095|868096|868097|868098|868099|868100|868101|868102|868103|868104|868656|868657|868658|919366|919367|948496|966806|974493|980341", + "upstreamId": "20566|23641|23642|23643|23647|23647|23649|23651|23653|23655|23656|23658|23660|39098|39099|45263|45264|45266|45266|45269|45272|45275|45276|45277|45725|51668|51669|51673|51676|51678|51685|51688|51691|51694|51695|51703|51705|51706|51710|51711|51713|51715|51716|51719|51732|51733|51735|51736|51737|51738|51742|51746|51747|51747|51755|51755|51769|51777|51777|51778|51780|51788|51789|51790|51796|51797|51805|51806|51808|51814|51815|51817|51821|51822|51823|51826|51828|51833|51834|51836|51839|51841|51852|51857|51858|51860|51862|51870|51873|51875|51876|51876|51879|51881|51882|51885|51889|51895|51896|51905|51906|51910|51914|51922|51926|51928|51930|51931|51933|51937|51938|51941|51942|51945|51947|51948|51949|51950|51956|51959|51962|51962|51963|51966|51967|51970|51971|51974|51976|51977|51977|51980|51983|51985|75578|75580|142020|142022|142024|142029|165560|165560|171133|171136|171136|171139|171141|171142|171143|171144|171145|171146|171147|172177|174731|174737|174756|174757|174761|174764|174770|174773|174775|174776|174776|174778|174779|174785|175138|175139|175143|175146|175150|175168|175171|175175|175188|175197|175201|175203|179171|179196|179223|179232|179233|179266|179279|179299|179321|179338|179343|179351|179357|179373|179397|186345|186368|186384|186400|186404|186405|189889|193011|212928|212929|213610|214109|214110|214111|214112|214113|214115|214116|214117|214119|214120|222146|248633|248634|248635|260509|314276|320888|326913|326929|326930|326931|326940|326949|327964|327976|327977|362227|371466|372203|372209|374122|384440|390042|398206|398754|404802|415274|418554|419284|424284|430964|430982|434640|461358|461632|461652|461957|461980|462012|504238|508865|508866|512848|512849|512927|513091|526245|564717|613612|615940|617882|620403|625810|625811|679781|791140|791141|791142|818289|868092|868093|868094|868095|868096|868097|868098|868099|868100|868101|868102|868103|868104|868656|868657|868658|919366|919367|948496|966806|974493|980341", "text": "Familial hypertrophic cardiomyopathy 4" }, { - "baseId": "20568|20569|20569|20570|20571|20571|20571|101477|101478|101478|152864|152864|152865|177019|177282|188865|188865|255338|255339|255339|266504|271074|323250|323250|323251|323259|323259|323260|323266|323267|323270|323277|323283|323284|332935|332936|332942|332943|332946|332951|332952|332960|332962|332962|332965|332968|339806|339813|339814|339821|339823|341239|341242|341243|341247|341248|353881|415445|488487|547507|547508|547511|547514|547516|547531|547533|547535|547539|547541|547544|547548|547739|547750|547752|548162|548164|548166|548167|548169|548173|548174|548174|714579|754646|754647|754648|770312|770314|770315|784992|784993|787896|800699|842642|842649|842650|874060|874061|874062|874063|874064|874065|874066|874067|874068|874069|874070|874071|874072|876563|876564|919593", + "upstreamId": "20568|20569|20569|20570|20571|20571|20571|101477|101478|101478|152864|152864|152865|177019|177282|188865|188865|255338|255339|255339|266504|271074|323250|323250|323251|323259|323259|323260|323266|323267|323270|323277|323283|323284|332935|332936|332942|332943|332946|332951|332952|332960|332962|332962|332965|332968|339806|339813|339814|339821|339823|341239|341242|341243|341247|341248|353881|415445|488487|547507|547508|547511|547514|547516|547531|547533|547535|547539|547541|547544|547548|547739|547750|547752|548162|548164|548166|548167|548169|548173|548174|548174|714579|754646|754647|754648|770312|770314|770315|784992|784993|787896|800699|842642|842649|842650|874060|874061|874062|874063|874064|874065|874066|874067|874068|874069|874070|874071|874072|876563|876564|919593", "text": "Enhanced s-cone syndrome" }, { - "baseId": "20569|20571|20571|188865|620527", + "upstreamId": "20569|20571|20571|188865|620527", "text": "NR2E3-Related Disorders" }, { - "baseId": "20569|20571|20572|20573|101477|101478|101478|152864|152865|181279|188865|188865|188868|255339|255339|271074|323250|323259|332962|415445|488487|547507|547508|547511|547514|547516|547531|547533|547535|547539|547541|547544|547548|547739|547750|547752|548162|548164|548166|548167|548169|548173|548174|714579|754648|779806|842650|874065|874066|874073", + "upstreamId": "20569|20571|20572|20573|101477|101478|101478|152864|152865|181279|188865|188865|188868|255339|255339|271074|323250|323259|332962|415445|488487|547507|547508|547511|547514|547516|547531|547533|547535|547539|547541|547544|547548|547739|547750|547752|548162|548164|548166|548167|548169|548173|548174|714579|754648|779806|842650|874065|874066|874073", "text": "Retinitis pigmentosa 37" }, { - "baseId": "20571|101477|177019|177282|188865|255338|255339|271074|323267|332946|332962|415445|547750|623884|726224|726225|754648|770313|776093|797186|799817|842640|842641|842642|874063|874064|957486|957489|957492|979636|979637|979638|979639|979640|979641|979642|979643|979644|979645|979646|979647|979648|979649|979650|979651|979652|979653|979654|979655|979656", + "upstreamId": "20571|101477|177019|177282|188865|255338|255339|271074|323267|332946|332962|415445|547750|623884|726224|726225|754648|770313|776093|797186|799817|842640|842641|842642|874063|874064|957486|957489|957492|979636|979637|979638|979639|979640|979641|979642|979643|979644|979645|979646|979647|979648|979649|979650|979651|979652|979653|979654|979655|979656", "text": "Goldmann-Favre syndrome" }, { - "baseId": "20574|20575", + "upstreamId": "20574|20575", "text": "Asthma-related traits, susceptibility to, 5" }, { - "baseId": "20576|20577|76651|76652|76655|76656|187109|237011|285197|285198|285199|285206|285212|285213|285871|285872|285873|285874|285890|285891|285894|288158|288161|288165|288166|288172|288173|288174|288178|288179|288180|288582|288584|288585|288586|288587|288593|288598|288600|288600|288602|288604|288606|288610|353562|450684|450762|450762|450764|450769|512809|516210|517874|517876|517879|517954|517956|557900|557902|557953|557955|561026|561039|561040|561044|576099|620068|629521|629522|629523|629524|629525|629526|629527|629528|629529|629530|629531|629532|629533|629534|629535|629536|629537|629538|708089|719690|719691|719693|719694|719695|733248|747395|747397|747399|759106|763031|763033|763036|819015|819135|825828|825829|825830|825831|825832|825833|825834|825835|825836|825837|825838|825839|825840|825841|825842|825843|851158|851406|884086|884087|884088|884089|884090|884091|884092|884093|884094|884095|884096|884097|884098|887307|887308|887309|887310|931173|931174|931175|942639|942640|942641|942642|952964|952965|960465|980413", + "upstreamId": "20576|20577|76651|76652|76655|76656|187109|237011|285197|285198|285199|285206|285212|285213|285871|285872|285873|285874|285890|285891|285894|288158|288161|288165|288166|288172|288173|288174|288178|288179|288180|288582|288584|288585|288586|288587|288593|288598|288600|288600|288602|288604|288606|288610|353562|450684|450762|450762|450764|450769|512809|516210|517874|517876|517879|517954|517956|557900|557902|557953|557955|561026|561039|561040|561044|576099|620068|629521|629522|629523|629524|629525|629526|629527|629528|629529|629530|629531|629532|629533|629534|629535|629536|629537|629538|708089|719690|719691|719693|719694|719695|733248|747395|747397|747399|759106|763031|763033|763036|819015|819135|825828|825829|825830|825831|825832|825833|825834|825835|825836|825837|825838|825839|825840|825841|825842|825843|851158|851406|884086|884087|884088|884089|884090|884091|884092|884093|884094|884095|884096|884097|884098|887307|887308|887309|887310|931173|931174|931175|942639|942640|942641|942642|952964|952965|960465|980413", "text": "Hepatic veno-occlusive disease-immunodeficiency syndrome" }, { - "baseId": "20580|181292", + "upstreamId": "20580|181292", "text": "Periodic paralysis" }, { - "baseId": "20580|56917|172391|360851|677212|858248|965299|966322", + "upstreamId": "20580|56917|172391|360851|677212|858248|965299|966322", "text": "Syncope" }, { - "baseId": "20580|24422|33099|45303|51657|52214|52852|56289|56302|56725|56834|78541|178442|178587|178612|178738|178748|178751|186553|188445|188662|189293|189476|196540|198436|224325|224357|224385|224454|224543|360883|513956|679381", + "upstreamId": "20580|24422|33099|45303|51657|52214|52852|56289|56302|56725|56834|78541|178442|178587|178612|178738|178748|178751|186553|188445|188662|189293|189476|196540|198436|224325|224357|224385|224454|224543|360883|513956|679381", "text": "Ventricular fibrillation" }, { - "baseId": "20580|20581|131959|188516|188517|254321|258710|389949|389950|461990|526477|526536|526541|526772|567545|567549|640464|687824|839007", + "upstreamId": "20580|20581|131959|188516|188517|254321|258710|389949|389950|461990|526477|526536|526541|526772|567545|567549|640464|687824|839007", "text": "Brugada syndrome 6" }, { - "baseId": "20580|131959|432260|432261|432262", + "upstreamId": "20580|131959|432260|432261|432262", "text": "Encephalopathy, neonatal severe, with lactic acidosis and brain abnormalities" }, { - "baseId": "20582|20583|20583|20584|54668|54669|54670|186435|193603|227351|319135|333885|413171|415371|527511|641581|652763|840578|957027", + "upstreamId": "20582|20583|20583|20584|54668|54669|54670|186435|193603|227351|319135|333885|413171|415371|527511|641581|652763|840578|957027", "text": "Deafness, autosomal dominant 3b" }, { - "baseId": "20583|20583|20583|20584|20584|20586|54667|54668|54668|54669|54669|54670|54670|54671|54673|175769|186435|186435|193603|193603|269638|319127|319135|319135|319136|319140|319142|319151|327587|327588|327593|327594|327596|327597|327606|327612|327613|333867|333869|333878|333880|333885|333885|333886|333888|335558|335559|335562|335566|335567|335577|335578|415371|527511|641581|652763|656196|738987|840578|870846|870847|870848|870849|870850|870851|870852|870853|870854|870855|870856|870857|870858|870859|957027", + "upstreamId": "20583|20583|20583|20584|20584|20586|54667|54668|54668|54669|54669|54670|54670|54671|54673|175769|186435|186435|193603|193603|269638|319127|319135|319135|319136|319140|319142|319151|327587|327588|327593|327594|327596|327597|327606|327612|327613|333867|333869|333878|333880|333885|333885|333886|333888|335558|335559|335562|335566|335567|335577|335578|415371|527511|641581|652763|656196|738987|840578|870846|870847|870848|870849|870850|870851|870852|870853|870854|870855|870856|870857|870858|870859|957027", "text": "Hidrotic ectodermal dysplasia syndrome" }, { - "baseId": "20583|20583|20584|20585|32039|32039|32040|32040|32041|32041|32042|32042|32043|32043|32044|32045|32046|32048|32049|32049|32052|32053|32053|32053|32055|32055|32056|32062|32062|32063|32064|32066|32068|32068|32071|32072|32074|32075|34237|34239|34240|34241|44941|44942|44943|44943|53882|53883|53884|53887|53888|53891|53892|53895|53896|53899|53900|53902|53903|53903|53904|53904|53905|53906|53907|53907|53909|53910|53911|53912|53914|53915|53916|53916|53918|53918|53919|53920|53921|53922|53923|53924|53925|53927|53928|53929|53930|53930|53931|53932|53933|53934|54668|54669|54670|90208|100288|100290|100292|169009|169010|169011|169013|175762|175904|175905|175906|175909|177744|186432|186435|186853|186854|186855|186856|186857|186858|186859|186860|186861|186862|186863|186864|190031|192365|192366|192367|193603|208014|227135|227136|227213|227350|227350|230434|230437|247434|247435|260039|269143|273253|319120|319122|319135|327572|327575|327578|327579|327582|327583|327586|333862|333863|333864|333885|335544|335547|335548|335549|335550|335552|335553|335557|358128|358129|358130|358131|358132|358133|358134|358135|359996|362175|375519|415371|432239|432240|432241|432242|432244|432245|441576|441582|441583|445122|487388|487602|490937|527511|546771|546777|546778|546781|546783|546785|546787|546792|546794|546920|546930|546932|546940|546941|546944|546952|547082|547084|547088|547090|547096|547102|547105|547109|547112|547296|547302|547303|547307|547319|547327|547328|547329|547331|547338|551725|581737|615784|615817|620467|620469|621385|621386|622693|641581|652763|681835|784536|784538|793458|840578|870831|870832|870833|870834|870835|870836|870837|870838|870839|870840|870841|870842|870843|870844|870845|906208|957027|979357|979358|979359", + "upstreamId": "20583|20583|20584|20585|32039|32039|32040|32040|32041|32041|32042|32042|32043|32043|32044|32045|32046|32048|32049|32049|32052|32053|32053|32053|32055|32055|32056|32062|32062|32063|32064|32066|32068|32068|32071|32072|32074|32075|34237|34239|34240|34241|44941|44942|44943|44943|53882|53883|53884|53887|53888|53891|53892|53895|53896|53899|53900|53902|53903|53903|53904|53904|53905|53906|53907|53907|53909|53910|53911|53912|53914|53915|53916|53916|53918|53918|53919|53920|53921|53922|53923|53924|53925|53927|53928|53929|53930|53930|53931|53932|53933|53934|54668|54669|54670|90208|100288|100290|100292|169009|169010|169011|169013|175762|175904|175905|175906|175909|177744|186432|186435|186853|186854|186855|186856|186857|186858|186859|186860|186861|186862|186863|186864|190031|192365|192366|192367|193603|208014|227135|227136|227213|227350|227350|230434|230437|247434|247435|260039|269143|273253|319120|319122|319135|327572|327575|327578|327579|327582|327583|327586|333862|333863|333864|333885|335544|335547|335548|335549|335550|335552|335553|335557|358128|358129|358130|358131|358132|358133|358134|358135|359996|362175|375519|415371|432239|432240|432241|432242|432244|432245|441576|441582|441583|445122|487388|487602|490937|527511|546771|546777|546778|546781|546783|546785|546787|546792|546794|546920|546930|546932|546940|546941|546944|546952|547082|547084|547088|547090|547096|547102|547105|547109|547112|547296|547302|547303|547307|547319|547327|547328|547329|547331|547338|551725|581737|615784|615817|620467|620469|621385|621386|622693|641581|652763|681835|784536|784538|793458|840578|870831|870832|870833|870834|870835|870836|870837|870838|870839|870840|870841|870842|870843|870844|870845|906208|957027|979357|979358|979359", "text": "Deafness, autosomal recessive 1A" }, { - "baseId": "20583|20583|20584|20585|32039|32040|32041|32042|32043|32049|32053|32055|32062|32068|53903|53904|53907|53916|53918|53930|54668|54669|54670|186435|193603|227351|319135|333885|415371|527511|641581|652763|840578|904218|957027", + "upstreamId": "20583|20583|20584|20585|32039|32040|32041|32042|32043|32049|32053|32055|32062|32068|53903|53904|53907|53916|53918|53930|54668|54669|54670|186435|193603|227351|319135|333885|415371|527511|641581|652763|840578|904218|957027", "text": "Deafness, autosomal recessive 1b" }, { - "baseId": "20583|26716|26717|26718|26719|26720|26721|26722|26723|49893|49894|52519|52521|52522|166083|176453|237626|339618|349115|352457|352458|352965|389256|404600|415371|551802|590644|615835|800323|800324|903250|903251|903252|903253|903254", + "upstreamId": "20583|26716|26717|26718|26719|26720|26721|26722|26723|49893|49894|52519|52521|52522|166083|176453|237626|339618|349115|352457|352458|352965|389256|404600|415371|551802|590644|615835|800323|800324|903250|903251|903252|903253|903254", "text": "Deafness, X-linked 2" }, { - "baseId": "20585|20587|32043", + "upstreamId": "20585|20587|32043", "text": "Deafness, digenic, GJB2/GJB6" }, { - "baseId": "20588|20589|20590|20591|20592|20593|20594|266325|271393|320090|320091|320093|320094|320095|320099|320101|320105|320107|320109|320110|320113|320116|320117|320118|320119|320123|328635|328637|328638|328640|328641|328642|328646|328649|328653|328666|328669|328680|328685|328686|328704|328705|335195|335204|335219|335225|335233|335234|335236|335238|335239|335247|335257|335262|335281|335282|335285|335298|335302|335306|335308|335310|335313|335326|337079|337080|337083|337087|337090|337096|337099|337101|337103|337110|337113|337119|337125|337147|337148|337155|337158|337163|337168|337169|337182|586697|725530|871570|871571|871572|871573|871574|871575|871576|871577|871578|871579|871580|871581|871582|871583|871584|871585|871586|871587|871588|871589|871590|871591|871592|871593|871594|871595|871596|871597|871598|871599|871600|871601|871602|871603|871604|871605|871606|871607|871608|872348|872349", + "upstreamId": "20588|20589|20590|20591|20592|20593|20594|266325|271393|320090|320091|320093|320094|320095|320099|320101|320105|320107|320109|320110|320113|320116|320117|320118|320119|320123|328635|328637|328638|328640|328641|328642|328646|328649|328653|328666|328669|328680|328685|328686|328704|328705|335195|335204|335219|335225|335233|335234|335236|335238|335239|335247|335257|335262|335281|335282|335285|335298|335302|335306|335308|335310|335313|335326|337079|337080|337083|337087|337090|337096|337099|337101|337103|337110|337113|337119|337125|337147|337148|337155|337158|337163|337168|337169|337182|586697|725530|871570|871571|871572|871573|871574|871575|871576|871577|871578|871579|871580|871581|871582|871583|871584|871585|871586|871587|871588|871589|871590|871591|871592|871593|871594|871595|871596|871597|871598|871599|871600|871601|871602|871603|871604|871605|871606|871607|871608|872348|872349", "text": "Autosomal recessive omodysplasia" }, { - "baseId": "20595|135828|135829|150252|190425|194385|194918|195660|195661|239020|239021|248759|248760|266968|287435|287436|287438|287442|287444|287445|287447|287451|287452|287456|288222|288228|288229|288231|288251|288252|290891|290893|290902|290905|290923|290925|290926|291159|291167|291168|353577|353578|361612|393118|451472|451477|451727|451934|451940|451941|513527|513609|518646|518648|558688|558690|559164|559189|559190|559191|560979|560983|560985|560987|560990|562095|614253|630596|630597|630598|630599|630600|630601|630602|630603|630604|653855|683518|683519|683520|686268|689720|719987|816446|819277|827077|827078|827079|827080|827081|827082|827083|827084|827085|885587|885588|885589|885590|885591|885592|885593|885594|885595|885596|885597|885598|885599|885600|885601|887409|887410|922937|922938|922939|922940|931607|931608|931609|931610|931611|940725|943138|943139|943140|943141|943142|943143|953246|953247|953248", + "upstreamId": "20595|135828|135829|150252|190425|194385|194918|195660|195661|239020|239021|248759|248760|266968|287435|287436|287438|287442|287444|287445|287447|287451|287452|287456|288222|288228|288229|288231|288251|288252|290891|290893|290902|290905|290923|290925|290926|291159|291167|291168|353577|353578|361612|393118|451472|451477|451727|451934|451940|451941|513527|513609|518646|518648|558688|558690|559164|559189|559190|559191|560979|560983|560985|560987|560990|562095|614253|630596|630597|630598|630599|630600|630601|630602|630603|630604|653855|683518|683519|683520|686268|689720|719987|816446|819277|827077|827078|827079|827080|827081|827082|827083|827084|827085|885587|885588|885589|885590|885591|885592|885593|885594|885595|885596|885597|885598|885599|885600|885601|887409|887410|922937|922938|922939|922940|931607|931608|931609|931610|931611|940725|943138|943139|943140|943141|943142|943143|953246|953247|953248", "text": "Salt and pepper developmental regression syndrome" }, { - "baseId": "20597|20598|20599|20600|20601|20602|20603|171168|171169|171170|205209|222387|222388|222389|222390|222391|241876|241877|241878|241879|241880|241881|241882|241883|241884|241885|241886|241887|241888|255063|255064|255065|321373|321378|321381|321383|321389|321390|321391|321393|321394|321395|321400|321402|321407|330601|330612|330613|330615|330619|330621|330629|330633|330636|337218|337219|337223|337227|337229|337237|337238|337240|337242|337243|337245|337248|337250|337252|337255|337260|337269|339151|339162|339163|339171|339177|339184|339187|339189|339193|339196|339201|339215|339216|339225|399719|399721|399724|399726|399728|399737|399738|399908|399910|399911|399912|399915|399918|399919|399920|399922|400258|400260|400262|400266|400267|400267|400271|400274|400275|400277|400280|400293|400295|400487|400495|400497|400515|400520|400525|400526|400533|400534|409151|409152|463477|463486|463493|463497|464080|464082|464087|464088|464094|464096|464358|464361|464364|464369|464370|464386|464387|464481|464486|464489|464491|464493|464494|464497|485662|528274|528283|528287|528289|528295|528299|528300|528360|528363|528367|528370|528371|528372|528713|528717|528719|528725|528729|528734|528748|528752|528758|528759|528810|528812|528813|528819|528825|528827|528828|528838|528842|566612|566616|566618|566625|566628|568268|568271|568272|568274|568279|568281|569018|569019|569021|569022|569024|572899|572900|572911|572913|572914|572915|572919|572924|642686|642687|642688|642689|642690|642691|642692|642693|642694|642695|642696|642697|642698|642699|642700|642701|642702|642703|642704|642705|642706|642707|642708|642709|642710|642711|642712|642713|642714|642715|642716|642717|642718|642719|642720|642721|642722|642723|642724|642725|642726|642727|642728|652971|652974|684522|684523|684524|684525|684526|688357|688358|688359|688361|688362|688363|688364|688366|688369|693599|702991|725811|725813|725814|739339|776305|784789|841726|841727|841728|841729|841730|841731|841732|841733|841734|841735|841736|841737|841738|841739|841740|841741|841742|841743|841744|841745|841746|841747|841748|841749|841750|841751|841752|841753|841754|841755|841756|841757|841758|841759|841760|841761|841762|841763|841764|841765|841766|841767|841768|841769|841770|841771|841772|841773|841774|841775|872632|872633|872634|872635|872636|872637|872638|872639|872640|872641|872642|872643|872644|872645|872646|872647|872648|872649|872650|872651|872652|872653|872654|872655|872656|872657|872658|872659|872660|872661|872662|872663|872664|872665|872666|872667|872668|872669|872670|872671|872672|872673|876449|876450|927159|927160|927161|927162|927163|927164|927165|927166|927167|927168|927169|927170|927171|927172|927173|927174|936711|936712|936713|936714|936715|936716|936717|936718|936719|936720|936721|936722|936723|936724|936725|936726|936727|936728|936729|940314|940315|948652|948653|948654|948655|948656|948657|948658|948659|948660|948661|948662|948663|948664|948665|948666|948667|948668|957299|957300|957301|957302|957303|957304", + "upstreamId": "20597|20598|20599|20600|20601|20602|20603|171168|171169|171170|205209|222387|222388|222389|222390|222391|241876|241877|241878|241879|241880|241881|241882|241883|241884|241885|241886|241887|241888|255063|255064|255065|321373|321378|321381|321383|321389|321390|321391|321393|321394|321395|321400|321402|321407|330601|330612|330613|330615|330619|330621|330629|330633|330636|337218|337219|337223|337227|337229|337237|337238|337240|337242|337243|337245|337248|337250|337252|337255|337260|337269|339151|339162|339163|339171|339177|339184|339187|339189|339193|339196|339201|339215|339216|339225|399719|399721|399724|399726|399728|399737|399738|399908|399910|399911|399912|399915|399918|399919|399920|399922|400258|400260|400262|400266|400267|400267|400271|400274|400275|400277|400280|400293|400295|400487|400495|400497|400515|400520|400525|400526|400533|400534|409151|409152|463477|463486|463493|463497|464080|464082|464087|464088|464094|464096|464358|464361|464364|464369|464370|464386|464387|464481|464486|464489|464491|464493|464494|464497|485662|528274|528283|528287|528289|528295|528299|528300|528360|528363|528367|528370|528371|528372|528713|528717|528719|528725|528729|528734|528748|528752|528758|528759|528810|528812|528813|528819|528825|528827|528828|528838|528842|566612|566616|566618|566625|566628|568268|568271|568272|568274|568279|568281|569018|569019|569021|569022|569024|572899|572900|572911|572913|572914|572915|572919|572924|642686|642687|642688|642689|642690|642691|642692|642693|642694|642695|642696|642697|642698|642699|642700|642701|642702|642703|642704|642705|642706|642707|642708|642709|642710|642711|642712|642713|642714|642715|642716|642717|642718|642719|642720|642721|642722|642723|642724|642725|642726|642727|642728|652971|652974|684522|684523|684524|684525|684526|688357|688358|688359|688361|688362|688363|688364|688366|688369|693599|702991|725811|725813|725814|739339|776305|784789|841726|841727|841728|841729|841730|841731|841732|841733|841734|841735|841736|841737|841738|841739|841740|841741|841742|841743|841744|841745|841746|841747|841748|841749|841750|841751|841752|841753|841754|841755|841756|841757|841758|841759|841760|841761|841762|841763|841764|841765|841766|841767|841768|841769|841770|841771|841772|841773|841774|841775|872632|872633|872634|872635|872636|872637|872638|872639|872640|872641|872642|872643|872644|872645|872646|872647|872648|872649|872650|872651|872652|872653|872654|872655|872656|872657|872658|872659|872660|872661|872662|872663|872664|872665|872666|872667|872668|872669|872670|872671|872672|872673|876449|876450|927159|927160|927161|927162|927163|927164|927165|927166|927167|927168|927169|927170|927171|927172|927173|927174|936711|936712|936713|936714|936715|936716|936717|936718|936719|936720|936721|936722|936723|936724|936725|936726|936727|936728|936729|940314|940315|948652|948653|948654|948655|948656|948657|948658|948659|948660|948661|948662|948663|948664|948665|948666|948667|948668|957299|957300|957301|957302|957303|957304", "text": "Hereditary nonpolyposis colorectal cancer type 7" }, { - "baseId": "20599|32117|32118|32119|32120|32123|32124|32126|32127|32128|32129|32130|32131|32133|32135|32136|32137|32138|32138|32140|32141|32144|32145|38609|38610|38612|45201|45202|45202|45203|45204|45205|45207|45208|45209|45210|45212|45215|45218|45219|45220|45221|50071|50071|50072|50072|50073|50074|50075|50076|50077|50078|50079|51666|79740|79742|95060|95061|95062|95063|95064|95067|95074|95078|95079|95079|95088|95117|95127|95127|95130|95162|95164|95170|95179|95179|95186|95211|95218|95218|95219|95225|95225|95227|95229|95257|95265|95267|95286|95324|95331|95357|95362|95369|95377|95380|95381|95404|95405|95406|95406|95427|95455|95466|95475|95481|95484|95485|95487|95488|95488|95490|95506|95516|95524|95527|95541|95552|95556|95556|95574|95575|95578|95586|95592|95600|95601|95606|95606|95614|95622|95622|95625|95650|95650|95657|95658|95671|95697|95703|95717|95731|95734|95755|95759|95760|95765|95767|95777|95780|95780|95785|95792|95793|95805|95809|95821|95829|95848|95855|95856|95865|95866|95871|95884|95887|95892|95898|95916|95916|95919|95926|95926|95927|95930|133066|133068|133069|133070|133071|133072|133072|133073|133074|133076|133076|136506|138395|138396|138397|139300|139556|139557|139558|139559|139565|141933|150473|150473|151156|151605|151990|152372|152378|152604|152694|180128|180138|180140|180142|180145|180148|180149|180152|180153|181203|181204|182215|182223|182224|182226|182235|182236|182239|182251|182252|182256|182257|182257|182265|182268|182276|182278|182281|182281|182282|182287|182288|182292|186016|186017|190024|212297|212305|212322|212324|212327|214628|221383|221389|221394|221395|221396|221397|221398|221405|231616|231617|232906|232916|232918|232919|232933|232954|232970|232979|239144|239148|239149|239158|239159|239160|239176|239185|290136|290137|294018|294022|294543|294552|294554|358735|358736|358737|358738|358739|358740|358741|358742|358743|358744|358745|358746|358747|358748|368417|368440|368462|393482|393502|393512|393843|393915|406198|406206|406222|406233|406236|427213|432572|443419|443422|452376|452387|452453|473370|473413|473493|473568|473649|473667|480464|483541|483578|537752|537753|539233|539234|558896|562700|575698|575699|575700|575701|575702|575707|576258|789083|790382|790383|790384|790385|790386|790387|790388|790389|790390|799033|888749|888750|903520|961842|967148", + "upstreamId": "20599|32117|32118|32119|32120|32123|32124|32126|32127|32128|32129|32130|32131|32133|32135|32136|32137|32138|32138|32140|32141|32144|32145|38609|38610|38612|45201|45202|45202|45203|45204|45205|45207|45208|45209|45210|45212|45215|45218|45219|45220|45221|50071|50071|50072|50072|50073|50074|50075|50076|50077|50078|50079|51666|79740|79742|95060|95061|95062|95063|95064|95067|95074|95078|95079|95079|95088|95117|95127|95127|95130|95162|95164|95170|95179|95179|95186|95211|95218|95218|95219|95225|95225|95227|95229|95257|95265|95267|95286|95324|95331|95357|95362|95369|95377|95380|95381|95404|95405|95406|95406|95427|95455|95466|95475|95481|95484|95485|95487|95488|95488|95490|95506|95516|95524|95527|95541|95552|95556|95556|95574|95575|95578|95586|95592|95600|95601|95606|95606|95614|95622|95622|95625|95650|95650|95657|95658|95671|95697|95703|95717|95731|95734|95755|95759|95760|95765|95767|95777|95780|95780|95785|95792|95793|95805|95809|95821|95829|95848|95855|95856|95865|95866|95871|95884|95887|95892|95898|95916|95916|95919|95926|95926|95927|95930|133066|133068|133069|133070|133071|133072|133072|133073|133074|133076|133076|136506|138395|138396|138397|139300|139556|139557|139558|139559|139565|141933|150473|150473|151156|151605|151990|152372|152378|152604|152694|180128|180138|180140|180142|180145|180148|180149|180152|180153|181203|181204|182215|182223|182224|182226|182235|182236|182239|182251|182252|182256|182257|182257|182265|182268|182276|182278|182281|182281|182282|182287|182288|182292|186016|186017|190024|212297|212305|212322|212324|212327|214628|221383|221389|221394|221395|221396|221397|221398|221405|231616|231617|232906|232916|232918|232919|232933|232954|232970|232979|239144|239148|239149|239158|239159|239160|239176|239185|290136|290137|294018|294022|294543|294552|294554|358735|358736|358737|358738|358739|358740|358741|358742|358743|358744|358745|358746|358747|358748|368417|368440|368462|393482|393502|393512|393843|393915|406198|406206|406222|406233|406236|427213|432572|443419|443422|452376|452387|452453|473370|473413|473493|473568|473649|473667|480464|483541|483578|537752|537753|539233|539234|558896|562700|575698|575699|575700|575701|575702|575707|576258|789083|790382|790383|790384|790385|790386|790387|790388|790389|790390|799033|888749|888750|903520|961842|967148", "text": "Lynch syndrome II" }, { - "baseId": "20604|20605|20606|76616|76617|76618|76619|76620|101479|101480|101481|105678|105679|105680|105683|105685|105686|105687|105689|105690|105694|105695|105697|106462|177290|177472|193623|193625|193626|195369|195369|256338|275237|329401|329410|329412|329418|329421|329426|329430|329440|329442|329444|329445|329448|329449|329452|339690|339706|339707|339710|339715|339716|339722|339724|339730|339737|339740|339742|345426|345432|345436|345437|345443|345449|345456|345458|345460|345462|345465|346798|346799|346800|346801|346803|346806|346812|346815|346816|346818|346819|413455|569528|569530|578348|578349|626259|694163|694164|704291|704293|727351|727352|771727|797589|800611|845909|845910|845911|845912|845913|845914|845915|845916|845917|845918|845919|845920|845921|852906|860427|878167|878168|878169|878170|878171|878172|878173|878174|878175|878176|878177|878178|878179|878180|878181|878182|878183|878184|878185|878186|878187|878188|878189|904952|904953|904954|904955|904956|904957|904958|904959|904960|904961|904962|904963|920605|940427|950147|950148|950149|950150|950151|950152|950153|958250|960892", + "upstreamId": "20604|20605|20606|76616|76617|76618|76619|76620|101479|101480|101481|105678|105679|105680|105683|105685|105686|105687|105689|105690|105694|105695|105697|106462|177290|177472|193623|193625|193626|195369|195369|256338|275237|329401|329410|329412|329418|329421|329426|329430|329440|329442|329444|329445|329448|329449|329452|339690|339706|339707|339710|339715|339716|339722|339724|339730|339737|339740|339742|345426|345432|345436|345437|345443|345449|345456|345458|345460|345462|345465|346798|346799|346800|346801|346803|346806|346812|346815|346816|346818|346819|413455|569528|569530|578348|578349|626259|694163|694164|704291|704293|727351|727352|771727|797589|800611|845909|845910|845911|845912|845913|845914|845915|845916|845917|845918|845919|845920|845921|852906|860427|878167|878168|878169|878170|878171|878172|878173|878174|878175|878176|878177|878178|878179|878180|878181|878182|878183|878184|878185|878186|878187|878188|878189|904952|904953|904954|904955|904956|904957|904958|904959|904960|904961|904962|904963|920605|940427|950147|950148|950149|950150|950151|950152|950153|958250|960892", "text": "Leber congenital amaurosis 4" }, { - "baseId": "20604|620600|620601", + "upstreamId": "20604|620600|620601", "text": "AIPL1-Related Disorders" }, { - "baseId": "20607", + "upstreamId": "20607", "text": "Juvenile retinitis pigmentosa, AIPL1-related" }, { - "baseId": "20607", + "upstreamId": "20607", "text": "CONE-ROD DYSTROPHY, AIPL1-RELATED" }, { - "baseId": "20608|20609|20610|20611|20612|20613|20615|20616|20616|20617|20617|20618|20618|20619|20619|204427|253014|253015|253016|263045|263045|270799|307588|307605|307633|312643|312646|312652|312662|312727|312731|360897|360897|432057|432058|432059|432060|432061|432062|432063|432064|432064|432065|432066|432067|432068|432069|432070|432071|432071|432072|432073|432073|432074|432075|432076|432077|432078|432079|432080|432081|432082|432083|432084|432085|432086|432087|457129|513582|523431|561897|561898|562335|562337|564540|564578|567295|590566|590567|590568|611976|623186|636540|636541|636542|636543|651910|679759|682809|700352|700353|700356|722803|722804|736399|736400|782983|819934|834034|834035|834036|834037|834038|834039|834040|834041|919135|924980|924981|924982|934063|934064|934065|955274|959873|961031|969545|970060", + "upstreamId": "20608|20609|20610|20611|20612|20613|20615|20616|20616|20617|20617|20618|20618|20619|20619|204427|253014|253015|253016|263045|263045|270799|307588|307605|307633|312643|312646|312652|312662|312727|312731|360897|360897|432057|432058|432059|432060|432061|432062|432063|432064|432064|432065|432066|432067|432068|432069|432070|432071|432071|432072|432073|432073|432074|432075|432076|432077|432078|432079|432080|432081|432082|432083|432084|432085|432086|432087|457129|513582|523431|561897|561898|562335|562337|564540|564578|567295|590566|590567|590568|611976|623186|636540|636541|636542|636543|651910|679759|682809|700352|700353|700356|722803|722804|736399|736400|782983|819934|834034|834035|834036|834037|834038|834039|834040|834041|919135|924980|924981|924982|934063|934064|934065|955274|959873|961031|969545|970060", "text": "Trichorhinophalangeal dysplasia type I" }, { - "baseId": "20614|20616|20616|20617|20617|20618|20619|253014|253015|263045|270799|307588|307605|307633|312643|312646|312652|312662|312727|312731|360897|432064|432071|432073|457129|523431|561897|561898|562335|562337|564540|564578|567295|636540|636541|636542|636543|651910|700352|700353|700356|722803|722804|736399|736400|782983|819934|834034|834035|834036|834037|834038|834039|834040|834041|924980|924981|924982|934063|934064|934065|955274|959873", + "upstreamId": "20614|20616|20616|20617|20617|20618|20619|253014|253015|263045|270799|307588|307605|307633|312643|312646|312652|312662|312727|312731|360897|432064|432071|432073|457129|523431|561897|561898|562335|562337|564540|564578|567295|636540|636541|636542|636543|651910|700352|700353|700356|722803|722804|736399|736400|782983|819934|834034|834035|834036|834037|834038|834039|834040|834041|924980|924981|924982|934063|934064|934065|955274|959873", "text": "Trichorhinophalangeal syndrome, type III" }, { - "baseId": "20620|20621|20622|20624|20625|20626|20627|20628|288750|288755|288757|288758|288776|288777|289500|289512|289525|289528|289529|289531|289534|289547|289549|289550|289551|289556|289557|289559|289562|289572|292536|292537|292551|292552|292557|292560|292562|292564|292567|292569|292570|292573|292740|292741|292744|292748|292749|359526|364253|887975|887976|887977|887978|887979|887980|887981|887982|887983|887984|887985|887986|887987|887988|887989|887990|887991|887992|887993|887994|887995|887996|887997|887998|887999|888000|888001|891566|891567|891568", + "upstreamId": "20620|20621|20622|20624|20625|20626|20627|20628|288750|288755|288757|288758|288776|288777|289500|289512|289525|289528|289529|289531|289534|289547|289549|289550|289551|289556|289557|289559|289562|289572|292536|292537|292551|292552|292557|292560|292562|292564|292567|292569|292570|292573|292740|292741|292744|292748|292749|359526|364253|887975|887976|887977|887978|887979|887980|887981|887982|887983|887984|887985|887986|887987|887988|887989|887990|887991|887992|887993|887994|887995|887996|887997|887998|887999|888000|888001|891566|891567|891568", "text": "Familial benign pemphigus" }, { - "baseId": "20630|20631|20632|20637|20639|20642|132422|133499|133499|133501|133503|133507|133511|133513|133516|133520|133523|133527|133529|133532|133532|133546|133549|137627|150646|150652|150673|151095|151570|151691|151755|151936|152066|152162|152193|152247|152670|181100|181106|181116|181122|213482|213483|236606|236634|404360|410931|410948|410967|432970|480377", + "upstreamId": "20630|20631|20632|20637|20639|20642|132422|133499|133499|133501|133503|133507|133511|133513|133516|133520|133523|133527|133529|133532|133532|133546|133549|137627|150646|150652|150673|151095|151570|151691|151755|151936|152066|152162|152193|152247|152670|181100|181106|181116|181122|213482|213483|236606|236634|404360|410931|410948|410967|432970|480377", "text": "Li-Fraumeni syndrome 2" }, { - "baseId": "20630|20641", + "upstreamId": "20630|20641", "text": "Cancer of multiple types, susceptibility to" }, { - "baseId": "20630|20640|20641|27286|28045|133499|133528|152066|480186|485382|849160", + "upstreamId": "20630|20640|20641|27286|28045|133499|133528|152066|480186|485382|849160", "text": "Prostate cancer, susceptibility to" }, { - "baseId": "20630|20642|133499|133517|133521|133525|133532|151497|151580|152238|185633|213475", + "upstreamId": "20630|20642|133499|133517|133521|133525|133532|151497|151580|152238|185633|213475", "text": "Breast and colorectal cancer, susceptibility to" }, { - "baseId": "20630", + "upstreamId": "20630", "text": "Gastrointestinal carcinoma" }, { - "baseId": "20630|27405|28691|28692|28939|29011|30972|30973|32619|32621|32623|32626|32627|32628|48304|53980|83949|133277|139098|151476|185394|206650|213392|213402|222738|232035|236461|236477|263939|359197|362753|362774|362826|362895|362896|363112|363121|363269|363273|363313|363360|363438|363439|363440|363441|363442|363461|363462|363463|363503|363504|363505|363506|363507|363508|363529|363530|363534|363535|363545|363546|363547|363548|363569|363570|363571|420661", + "upstreamId": "20630|27405|28691|28692|28939|29011|30972|30973|32619|32621|32623|32626|32627|32628|48304|53980|83949|133277|139098|151476|185394|206650|213392|213402|222738|232035|236461|236477|263939|359197|362753|362774|362826|362895|362896|363112|363121|363269|363273|363313|363360|363438|363439|363440|363441|363442|363461|363462|363463|363503|363504|363505|363506|363507|363508|363529|363530|363534|363535|363545|363546|363547|363548|363569|363570|363571|420661", "text": "Adrenocortical carcinoma" }, { - "baseId": "20630|21681", + "upstreamId": "20630|21681", "text": "Colon cancer, susceptibility to" }, { - "baseId": "20631|20637|20642|132422|133499|133510|133511|133513|133517|133525|133527|133530|133532|133534|133538|137627|140445|140450|150526|151051|151853|151923|152075|152615|152670|181095|185589|185619|185630|222878|236586|236589|236596|236681|337709|337711|351277|352332|404384|539411|891034|891035|891036", + "upstreamId": "20631|20637|20642|132422|133499|133510|133511|133513|133517|133525|133527|133530|133532|133534|133538|137627|140445|140450|150526|151051|151853|151923|152075|152615|152670|181095|185589|185619|185630|222878|236586|236589|236596|236681|337709|337711|351277|352332|404384|539411|891034|891035|891036", "text": "CHEK2-Related Cancer Susceptibility" }, { - "baseId": "20631|27386|27387|27388|27389|27390|27391|27392|27393|27394|27395|27397|27398|27403|27404|27405|27406|27407|27408|27409|27411|27413|27414|27415|27416|27418|27421|27422|27423|48019|50162|52756|52757|52758|52759|52760|52762|52763|52764|83231|91599|91600|91601|99230|106675|133261|133262|133263|133265|133266|133267|133268|133269|133271|133272|133273|133275|133276|133277|133278|133280|133281|133282|133283|133284|133499|136456|136502|136721|136722|137023|139097|139098|139099|139660|139661|139662|150496|150500|150515|150547|150635|150657|150725|150770|150812|150815|150816|150828|150855|150873|150942|151016|151046|151073|151091|151139|151197|151261|151280|151311|151476|151478|151495|151607|151677|151681|151717|151726|151764|151819|151848|151858|151872|151897|151920|151987|152034|152038|152046|152100|152145|152250|152266|152276|152338|152371|152405|152416|152428|152480|152560|152568|152630|171191|171613|171614|171615|171616|176503|176640|176641|180986|180988|180989|180990|180994|180995|180999|181000|181001|181005|181006|181010|181011|181014|181015|181017|181018|181019|181023|181024|181025|181026|181027|181029|181034|181220|185331|185333|185334|185335|185336|185338|185339|185340|185341|185343|185344|185345|185348|185350|185353|185358|185360|185361|185363|185365|185366|185367|185368|185369|185371|185373|185374|185376|185377|185378|185379|185380|185385|185387|185389|185390|185391|185392|185393|185394|185395|185396|185397|185398|185400|185401|185402|185403|185404|185405|185406|185409|185410|185411|185412|185413|185414|185415|185416|185417|185418|185420|185421|185424|185425|185426|185582|186272|186273|186274|186275|186276|186277|195257|213384|213385|213386|213387|213388|213389|213390|213391|213392|213393|213394|213395|213396|213397|213398|213399|213400|213401|213402|213403|213405|213406|213407|222733|222734|222735|222737|222738|222739|222740|222742|222743|222744|232035|236436|236438|236441|236442|236443|236444|236445|236446|236448|236450|236451|236452|236454|236457|236458|236459|236461|236465|236467|236468|236469|236471|236472|236473|236476|236480|236481|236482|236484|236486|236488|236490|236491|236495|236497|236499|236501|236504|236505|236506|236507|236508|236509|236511|236512|236513|236517|236519|236521|236522|242581|242975|242976|242977|242978|242979|242980|242981|242982|242983|242984|242985|242986|242987|242988|242989|242990|242991|242992|242993|242994|245067|245069|245072|245073|245074|245075|245076|245078|245079|248532|248538|256463|256465|256466|256467|260192|260193|264706|330242|330248|330250|330265|340456|346158|346161|346166|346172|346173|347486|347488|347489|347494|353462|353464|353465|358968|360335|360472|362895|362896|363438|363440|363441|363442|363443|363447|363448|363449|363451|363452|363453|363454|363455|363457|363460|363464|363465|363466|363469|363470|363473|363478|363479|363482|363483|363484|363485|363486|363487|363488|363491|363494|363497|363499|363501|363502|363503|363504|363505|363507|363508|363509|363511|363512|363514|363517|363518|363519|363520|363521|363523|363524|363525|363526|363528|363531|363532|363533|363534|363535|363536|363537|363538|363540|363541|363542|363543|363544|363545|363546|363547|363549|363550|363552|363554|363555|363556|363557|363558|363559|363560|363564|363565|363566|363570|363571|363572|363573|375717|375721|375726|376607|376680|376684|378800|401526|402529|402530|402533|402537|402538|402539|402545|402550|402552|402554|402555|402557|402562|402563|402565|402566|402568|402569|402571|402574|402579|402580|402581|402583|402592|402593|402594|402597|402599|402601|402603|402604|402607|402994|403000|403002|403007|403011|403018|403028|403030|403034|403035|403043|403046|403047|403057|403141|403144|403145|403148|403151|403154|403155|403162|403166|410252|410253|410256|410257|410258|410260|410262|410263|410265|410266|410267|410268|410270|410273|410274|410276|410278|410279|410283|410285|420634|420638|420639|420641|420643|420645|420646|420647|420650|420651|420656|420659|420662|420663|420665|420667|420668|424193|430014|430018|432338|432941|432943|438036|445901|466292|467483|467487|467489|467491|467492|467495|467506|467508|467511|467514|467516|467518|467520|467533|467541|467542|467544|467547|467548|467552|467553|467555|467565|467568|468341|468345|468356|468368|468370|468375|468378|468379|468384|468389|468390|468396|468397|468399|468405|468406|468412|468414|468416|468853|468855|468858|468863|468864|468874|468877|468879|468887|469099|469100|469106|469110|469113|469115|469117|469119|469122|469137|469144|469145|469156|469158|469161|469166|469170|469175|479208|479232|479245|479248|479257|479269|479271|479273|479274|479292|479298|479316|479318|479319|479327|479328|479329|479333|479344|479349|479357|479368|479378|479960|479964|480010|480024|480030|480041|480057|480065|480072|480079|480091|480121|483047|483061|483078|483091|485326|485363|485522|485673|485679|487956|488018|497494|506427|506428|506749|507160|530546|530672|530676|530848|531793|531796|531799|531804|531806|531807|531813|531817|531819|531826|531829|531833|531837|531842|531847|531849|531859|531861|531864|531865|531868|531870|531922|531923|531927|531932|531935|531941|531943|531949|531953|531957|532177|532181|532188|532190|532194|532201|532202|532211|532213|532218|532223|532225|532229|532231|568681|569759|569763|569764|569766|569770|569775|569777|569780|569782|569785|569791|569792|571608|571610|571613|571620|571625|571627|571630|571633|571660|571669|571671|572275|572277|572282|572288|572293|572296|572297|572304|572308|572315|572320|572328|572332|572334|572337|572340|572341|572343|574620|574621|574622|574624|574626|574629|574631|574633|574635|574637|574639|574641|576029|576030|576031|576032|576033|611336|618826|618834|618838|619765|621605|622038|622574|622586|622601|622609|622617|622624|622628|622631|622662|622665|623210|623217|646723|646724|646725|646726|646727|646728|646729|646730|646731|646732|646733|646734|646735|646736|646737|646738|646739|646740|646741|646742|646743|646744|646745|646746|646747|646748|646749|646750|646751|646752|646753|646754|646755|646756|646757|646758|646759|646760|646761|646762|646763|646764|646765|646766|646767|646768|646769|646770|646771|646772|646773|646774|646775|646776|646777|646778|646779|646780|646781|646782|646783|646784|646785|646786|646787|652679|652849|652853|652855|652871|653032|653033|653036|653040|653042|653177|653365|653386|653388|653389|653521|653524|653531|694209|756155|760596|771856|776405|776422|789639|792574|800073|814447|814452|814453|814457|814468|814482|814487|814503|814509|814515|814516|814518|814521|814525|821159|821160|821161|821162|821163|821164|821165|821166|821167|821168|821169|821170|846248|846249|846250|846251|846252|846253|846254|846255|846256|846257|846258|846259|846260|846261|846262|846263|846264|846265|846266|846267|846268|846269|846270|846271|846272|846273|846274|846275|846276|846277|846278|846279|846280|846281|846282|846283|846284|846285|846286|846287|846288|846289|846290|846291|846292|846293|846294|846295|846296|846297|846298|846299|846300|846301|846302|846303|846304|846305|852258|852794|852798|852915|852919|852921|858458|928547|928548|928549|928550|928551|928552|928553|928554|928555|928556|928557|928558|928559|928560|928561|938233|938234|938235|938236|938237|938238|938239|938240|938241|938242|938243|938244|940440|941200|941201|941202|950302|950303|950304|950305|950306|950307|950308|950309|950310|950311|950312|950313|950314|950315|950316|950317|950318|950319|958326|958327|958328|958329|958330|958331|958332|958333|960189|960247|960248|964740|964741|967157", + "upstreamId": "20631|27386|27387|27388|27389|27390|27391|27392|27393|27394|27395|27397|27398|27403|27404|27405|27406|27407|27408|27409|27411|27413|27414|27415|27416|27418|27421|27422|27423|48019|50162|52756|52757|52758|52759|52760|52762|52763|52764|83231|91599|91600|91601|99230|106675|133261|133262|133263|133265|133266|133267|133268|133269|133271|133272|133273|133275|133276|133277|133278|133280|133281|133282|133283|133284|133499|136456|136502|136721|136722|137023|139097|139098|139099|139660|139661|139662|150496|150500|150515|150547|150635|150657|150725|150770|150812|150815|150816|150828|150855|150873|150942|151016|151046|151073|151091|151139|151197|151261|151280|151311|151476|151478|151495|151607|151677|151681|151717|151726|151764|151819|151848|151858|151872|151897|151920|151987|152034|152038|152046|152100|152145|152250|152266|152276|152338|152371|152405|152416|152428|152480|152560|152568|152630|171191|171613|171614|171615|171616|176503|176640|176641|180986|180988|180989|180990|180994|180995|180999|181000|181001|181005|181006|181010|181011|181014|181015|181017|181018|181019|181023|181024|181025|181026|181027|181029|181034|181220|185331|185333|185334|185335|185336|185338|185339|185340|185341|185343|185344|185345|185348|185350|185353|185358|185360|185361|185363|185365|185366|185367|185368|185369|185371|185373|185374|185376|185377|185378|185379|185380|185385|185387|185389|185390|185391|185392|185393|185394|185395|185396|185397|185398|185400|185401|185402|185403|185404|185405|185406|185409|185410|185411|185412|185413|185414|185415|185416|185417|185418|185420|185421|185424|185425|185426|185582|186272|186273|186274|186275|186276|186277|195257|213384|213385|213386|213387|213388|213389|213390|213391|213392|213393|213394|213395|213396|213397|213398|213399|213400|213401|213402|213403|213405|213406|213407|222733|222734|222735|222737|222738|222739|222740|222742|222743|222744|232035|236436|236438|236441|236442|236443|236444|236445|236446|236448|236450|236451|236452|236454|236457|236458|236459|236461|236465|236467|236468|236469|236471|236472|236473|236476|236480|236481|236482|236484|236486|236488|236490|236491|236495|236497|236499|236501|236504|236505|236506|236507|236508|236509|236511|236512|236513|236517|236519|236521|236522|242581|242975|242976|242977|242978|242979|242980|242981|242982|242983|242984|242985|242986|242987|242988|242989|242990|242991|242992|242993|242994|245067|245069|245072|245073|245074|245075|245076|245078|245079|248532|248538|256463|256465|256466|256467|260192|260193|264706|330242|330248|330250|330265|340456|346158|346161|346166|346172|346173|347486|347488|347489|347494|353462|353464|353465|358968|360335|360472|362895|362896|363438|363440|363441|363442|363443|363447|363448|363449|363451|363452|363453|363454|363455|363457|363460|363464|363465|363466|363469|363470|363473|363478|363479|363482|363483|363484|363485|363486|363487|363488|363491|363494|363497|363499|363501|363502|363503|363504|363505|363507|363508|363509|363511|363512|363514|363517|363518|363519|363520|363521|363523|363524|363525|363526|363528|363531|363532|363533|363534|363535|363536|363537|363538|363540|363541|363542|363543|363544|363545|363546|363547|363549|363550|363552|363554|363555|363556|363557|363558|363559|363560|363564|363565|363566|363570|363571|363572|363573|375717|375721|375726|376607|376680|376684|378800|401526|402529|402530|402533|402537|402538|402539|402545|402550|402552|402554|402555|402557|402562|402563|402565|402566|402568|402569|402571|402574|402579|402580|402581|402583|402592|402593|402594|402597|402599|402601|402603|402604|402607|402994|403000|403002|403007|403011|403018|403028|403030|403034|403035|403043|403046|403047|403057|403141|403144|403145|403148|403151|403154|403155|403162|403166|410252|410253|410256|410257|410258|410260|410262|410263|410265|410266|410267|410268|410270|410273|410274|410276|410278|410279|410283|410285|420634|420638|420639|420641|420643|420645|420646|420647|420650|420651|420656|420659|420662|420663|420665|420667|420668|424193|430014|430018|432338|432941|432943|438036|445901|466292|467483|467487|467489|467491|467492|467495|467506|467508|467511|467514|467516|467518|467520|467533|467541|467542|467544|467547|467548|467552|467553|467555|467565|467568|468341|468345|468356|468368|468370|468375|468378|468379|468384|468389|468390|468396|468397|468399|468405|468406|468412|468414|468416|468853|468855|468858|468863|468864|468874|468877|468879|468887|469099|469100|469106|469110|469113|469115|469117|469119|469122|469137|469144|469145|469156|469158|469161|469166|469170|469175|479208|479232|479245|479248|479257|479269|479271|479273|479274|479292|479298|479316|479318|479319|479327|479328|479329|479333|479344|479349|479357|479368|479378|479960|479964|480010|480024|480030|480041|480057|480065|480072|480079|480091|480121|483047|483061|483078|483091|485326|485363|485522|485673|485679|487956|488018|497494|506427|506428|506749|507160|530546|530672|530676|530848|531793|531796|531799|531804|531806|531807|531813|531817|531819|531826|531829|531833|531837|531842|531847|531849|531859|531861|531864|531865|531868|531870|531922|531923|531927|531932|531935|531941|531943|531949|531953|531957|532177|532181|532188|532190|532194|532201|532202|532211|532213|532218|532223|532225|532229|532231|568681|569759|569763|569764|569766|569770|569775|569777|569780|569782|569785|569791|569792|571608|571610|571613|571620|571625|571627|571630|571633|571660|571669|571671|572275|572277|572282|572288|572293|572296|572297|572304|572308|572315|572320|572328|572332|572334|572337|572340|572341|572343|574620|574621|574622|574624|574626|574629|574631|574633|574635|574637|574639|574641|576029|576030|576031|576032|576033|611336|618826|618834|618838|619765|621605|622038|622574|622586|622601|622609|622617|622624|622628|622631|622662|622665|623210|623217|646723|646724|646725|646726|646727|646728|646729|646730|646731|646732|646733|646734|646735|646736|646737|646738|646739|646740|646741|646742|646743|646744|646745|646746|646747|646748|646749|646750|646751|646752|646753|646754|646755|646756|646757|646758|646759|646760|646761|646762|646763|646764|646765|646766|646767|646768|646769|646770|646771|646772|646773|646774|646775|646776|646777|646778|646779|646780|646781|646782|646783|646784|646785|646786|646787|652679|652849|652853|652855|652871|653032|653033|653036|653040|653042|653177|653365|653386|653388|653389|653521|653524|653531|694209|756155|760596|771856|776405|776422|789639|792574|800073|814447|814452|814453|814457|814468|814482|814487|814503|814509|814515|814516|814518|814521|814525|821159|821160|821161|821162|821163|821164|821165|821166|821167|821168|821169|821170|846248|846249|846250|846251|846252|846253|846254|846255|846256|846257|846258|846259|846260|846261|846262|846263|846264|846265|846266|846267|846268|846269|846270|846271|846272|846273|846274|846275|846276|846277|846278|846279|846280|846281|846282|846283|846284|846285|846286|846287|846288|846289|846290|846291|846292|846293|846294|846295|846296|846297|846298|846299|846300|846301|846302|846303|846304|846305|852258|852794|852798|852915|852919|852921|858458|928547|928548|928549|928550|928551|928552|928553|928554|928555|928556|928557|928558|928559|928560|928561|938233|938234|938235|938236|938237|938238|938239|938240|938241|938242|938243|938244|940440|941200|941201|941202|950302|950303|950304|950305|950306|950307|950308|950309|950310|950311|950312|950313|950314|950315|950316|950317|950318|950319|958326|958327|958328|958329|958330|958331|958332|958333|960189|960247|960248|964740|964741|967157", "text": "Li-Fraumeni syndrome" }, { - "baseId": "20633|20634|20637|20639|20642|26767|27398|27419|28126|29022|132342|132422|133499|133501|133503|133507|133511|133513|133516|133520|133523|133529|133532|133549|137627|137844|150646|150652|150673|151095|151570|151691|151755|151936|152066|152193|152247|181100|181106|181116|181122|213483|236606|236634|404360|410931|410948|410967|432384|432970|462915|463279|463892|480377|568568", + "upstreamId": "20633|20634|20637|20639|20642|26767|27398|27419|28126|29022|132342|132422|133499|133501|133503|133507|133511|133513|133516|133520|133523|133529|133532|133549|137627|137844|150646|150652|150673|151095|151570|151691|151755|151936|152066|152193|152247|181100|181106|181116|181122|213483|236606|236634|404360|410931|410948|410967|432384|432970|462915|463279|463892|480377|568568", "text": "Osteosarcoma" }, { - "baseId": "20635|20636|20637|20638|20639|21959|22608|22609|22610|22611|22612|22869|22870|24848|24856|24870|24872|24873|24874|24875|33206", + "upstreamId": "20635|20636|20637|20638|20639|21959|22608|22609|22610|22611|22612|22869|22870|24848|24856|24870|24872|24873|24874|24875|33206", "text": "Prostate cancer, somatic" }, { - "baseId": "20637|20639|20642|24573|24574|24575|24845|28043|28696|29396|29397|32621|46010|46540|52763|65983|66613|67228|69422|97252|103607|132422|133311|133499|133501|133503|133507|133511|133513|133516|133516|133520|133523|133529|133532|133538|133549|137627|138003|150646|150652|150673|150883|151095|151570|151691|151755|151936|152066|152193|152247|152509|171291|171292|171293|171294|171295|171296|171297|171298|171299|171300|171301|171302|171303|171304|171305|171306|171307|171308|171309|171310|171311|171312|171313|171314|171315|171316|171317|171318|171319|171320|171321|171322|171323|171324|171325|171326|171327|171328|171329|171330|171331|171332|171333|171334|171335|171336|171337|171338|171339|171340|171341|171342|171343|171344|171345|171346|171347|171348|171349|171350|171351|171352|171353|171354|171355|171356|171357|171358|171359|171360|171361|171362|171363|171364|171365|171366|171367|171368|171369|171370|171371|171372|171373|171374|171375|171376|171377|171378|171379|171380|171381|171382|171383|171384|171385|171386|171387|171388|171389|171390|171391|171392|171393|171394|171395|171396|171397|171398|171399|171400|171401|171402|171403|171404|171405|171406|171407|171408|171409|171410|171411|171412|171413|171414|171415|171416|171417|171418|171419|171420|171421|171422|171423|171424|171425|171426|171427|171428|171429|171430|171431|171432|171433|171434|171435|171436|171437|171438|171439|171440|171441|171442|171443|171444|171445|171446|171447|171448|171449|171450|171451|171452|171453|171454|171455|171456|171457|171458|171459|171460|171461|171462|171463|171464|171465|171466|171467|171468|171469|171470|171471|171472|171473|171474|171475|171476|171477|171478|171479|171480|171481|171482|171483|171484|171485|171486|171487|171488|171489|171490|171491|171492|171493|171494|171495|171496|171497|171498|171499|171500|171501|171502|171503|171504|171505|171506|171507|171508|171509|171510|171511|171512|171513|171514|171515|171516|171517|171518|171519|171520|171521|171522|171523|171524|171525|171526|171527|171528|171529|171530|171531|171532|171533|171534|171535|171536|171537|171538|171539|171540|171541|171542|171543|171544|171545|171546|171547|171548|171549|171550|171551|171552|171553|171554|171555|171556|171557|171558|171559|171560|171561|171562|171563|171564|171565|171566|171567|171568|171569|171570|171571|171572|171573|171574|171575|171576|171577|171578|171579|171580|171581|171582|171583|171584|171585|171586|171587|171588|171589|171590|171591|171592|171593|171594|171595|171596|171597|171598|171599|171600|171601|171602|171603|171604|171605|171606|171607|171608|171609|171610|171611|171612|171613|171614|171615|171616|171617|171618|171619|171620|171621|171622|171623|171624|171625|171626|171627|171628|171629|171630|171631|171632|171633|171634|171635|171636|171637|171638|171639|171640|171641|171642|171643|171644|171645|171646|171647|171648|171649|171650|171651|171652|171653|171654|171655|171656|171657|171658|171659|171660|171661|171662|171663|171664|171665|171666|171667|171668|171669|171670|171671|171672|171673|171674|171675|171676|171677|171678|171679|171680|171681|171682|171683|171684|171685|171686|171687|171688|171689|171690|171691|171692|171693|171694|171695|172297|181100|181106|181116|181122|188264|213483|214847|214848|214849|214850|214851|214852|214853|214854|214855|214856|214857|214858|214859|214860|214861|214862|214863|214864|214865|214866|220985|220986|220987|220988|220989|220990|220991|220992|220993|220994|220995|220996|220997|220998|220999|221000|221001|221002|221003|221004|221005|221006|221007|221008|221009|221010|221011|221012|221013|221014|221015|221016|221017|221018|221019|221020|221021|221022|221023|221024|221025|221026|221027|221028|221029|221030|221031|221032|221033|221034|221035|221036|221037|221038|221039|221040|221041|236606|236634|363424|363427|390492|404360|410931|410948|410967|432970|480377|681927|681928|681929|681930|681931|681932|681933|681934|681935|681936|681937|681938|681939|681940|681941|681942|681943|681944|681945|681946|681947|681948|681949|681950|681951|681952|681953|681954|681955|681956|681957|681958|681959|681960|681961|681962|681963|681964|681965|681966|681967|681968|681969|681970|681971|681972|681973|681974|681975|681976|681977|681978|681979|681980|681981|681982|681983|681984|681985|681986|681987|681988|681989|681990|681991|681992|681993|681994|681995|681996|681997|681998|681999|682000|682001|682002|682003|682004|682005|682006|682007|682008|682009|682010|682011|682012|682013|682014|682015|682016|682017|682018|682019|682020|682021|682022|682023|682024|682025|682026|682027|682028|682029|682030|682031|682032|682033|682034|682035|682036|682037|682038|682039|682040|682041|682042|682043|682044|682045|682046|682047|682048|682049|682050|682051|682052|682053|682054|682055|682056|682057|682058|682059|682060|682061|682062|682063|682064|682065|682066|682067|682068|682069|682070|682071|682072|682073|682074|682075|682076|682077|682078|682079|682080|682081|682082|682083|682084|790486|920054|920457", + "upstreamId": "20637|20639|20642|24573|24574|24575|24845|28043|28696|29396|29397|32621|46010|46540|52763|65983|66613|67228|69422|97252|103607|132422|133311|133499|133501|133503|133507|133511|133513|133516|133516|133520|133523|133529|133532|133538|133549|137627|138003|150646|150652|150673|150883|151095|151570|151691|151755|151936|152066|152193|152247|152509|171291|171292|171293|171294|171295|171296|171297|171298|171299|171300|171301|171302|171303|171304|171305|171306|171307|171308|171309|171310|171311|171312|171313|171314|171315|171316|171317|171318|171319|171320|171321|171322|171323|171324|171325|171326|171327|171328|171329|171330|171331|171332|171333|171334|171335|171336|171337|171338|171339|171340|171341|171342|171343|171344|171345|171346|171347|171348|171349|171350|171351|171352|171353|171354|171355|171356|171357|171358|171359|171360|171361|171362|171363|171364|171365|171366|171367|171368|171369|171370|171371|171372|171373|171374|171375|171376|171377|171378|171379|171380|171381|171382|171383|171384|171385|171386|171387|171388|171389|171390|171391|171392|171393|171394|171395|171396|171397|171398|171399|171400|171401|171402|171403|171404|171405|171406|171407|171408|171409|171410|171411|171412|171413|171414|171415|171416|171417|171418|171419|171420|171421|171422|171423|171424|171425|171426|171427|171428|171429|171430|171431|171432|171433|171434|171435|171436|171437|171438|171439|171440|171441|171442|171443|171444|171445|171446|171447|171448|171449|171450|171451|171452|171453|171454|171455|171456|171457|171458|171459|171460|171461|171462|171463|171464|171465|171466|171467|171468|171469|171470|171471|171472|171473|171474|171475|171476|171477|171478|171479|171480|171481|171482|171483|171484|171485|171486|171487|171488|171489|171490|171491|171492|171493|171494|171495|171496|171497|171498|171499|171500|171501|171502|171503|171504|171505|171506|171507|171508|171509|171510|171511|171512|171513|171514|171515|171516|171517|171518|171519|171520|171521|171522|171523|171524|171525|171526|171527|171528|171529|171530|171531|171532|171533|171534|171535|171536|171537|171538|171539|171540|171541|171542|171543|171544|171545|171546|171547|171548|171549|171550|171551|171552|171553|171554|171555|171556|171557|171558|171559|171560|171561|171562|171563|171564|171565|171566|171567|171568|171569|171570|171571|171572|171573|171574|171575|171576|171577|171578|171579|171580|171581|171582|171583|171584|171585|171586|171587|171588|171589|171590|171591|171592|171593|171594|171595|171596|171597|171598|171599|171600|171601|171602|171603|171604|171605|171606|171607|171608|171609|171610|171611|171612|171613|171614|171615|171616|171617|171618|171619|171620|171621|171622|171623|171624|171625|171626|171627|171628|171629|171630|171631|171632|171633|171634|171635|171636|171637|171638|171639|171640|171641|171642|171643|171644|171645|171646|171647|171648|171649|171650|171651|171652|171653|171654|171655|171656|171657|171658|171659|171660|171661|171662|171663|171664|171665|171666|171667|171668|171669|171670|171671|171672|171673|171674|171675|171676|171677|171678|171679|171680|171681|171682|171683|171684|171685|171686|171687|171688|171689|171690|171691|171692|171693|171694|171695|172297|181100|181106|181116|181122|188264|213483|214847|214848|214849|214850|214851|214852|214853|214854|214855|214856|214857|214858|214859|214860|214861|214862|214863|214864|214865|214866|220985|220986|220987|220988|220989|220990|220991|220992|220993|220994|220995|220996|220997|220998|220999|221000|221001|221002|221003|221004|221005|221006|221007|221008|221009|221010|221011|221012|221013|221014|221015|221016|221017|221018|221019|221020|221021|221022|221023|221024|221025|221026|221027|221028|221029|221030|221031|221032|221033|221034|221035|221036|221037|221038|221039|221040|221041|236606|236634|363424|363427|390492|404360|410931|410948|410967|432970|480377|681927|681928|681929|681930|681931|681932|681933|681934|681935|681936|681937|681938|681939|681940|681941|681942|681943|681944|681945|681946|681947|681948|681949|681950|681951|681952|681953|681954|681955|681956|681957|681958|681959|681960|681961|681962|681963|681964|681965|681966|681967|681968|681969|681970|681971|681972|681973|681974|681975|681976|681977|681978|681979|681980|681981|681982|681983|681984|681985|681986|681987|681988|681989|681990|681991|681992|681993|681994|681995|681996|681997|681998|681999|682000|682001|682002|682003|682004|682005|682006|682007|682008|682009|682010|682011|682012|682013|682014|682015|682016|682017|682018|682019|682020|682021|682022|682023|682024|682025|682026|682027|682028|682029|682030|682031|682032|682033|682034|682035|682036|682037|682038|682039|682040|682041|682042|682043|682044|682045|682046|682047|682048|682049|682050|682051|682052|682053|682054|682055|682056|682057|682058|682059|682060|682061|682062|682063|682064|682065|682066|682067|682068|682069|682070|682071|682072|682073|682074|682075|682076|682077|682078|682079|682080|682081|682082|682083|682084|790486|920054|920457", "text": "Malignant tumor of prostate" }, { - "baseId": "20647|20648|188992|188992|205143|238018|359518|389198|413665|431671|551532|622344|790453|790454|790455|790456|790457", + "upstreamId": "20647|20648|188992|188992|205143|238018|359518|389198|413665|431671|551532|622344|790453|790454|790455|790456|790457", "text": "Retinitis pigmentosa 41" }, { - "baseId": "20649|101228|101229|101230|101233|106455|177982|188992|188992|190494|191235|238018|251364|251366|251367|251368|251369|271311|273551|273853|292683|292686|292688|292691|292699|292700|292702|292704|292711|294050|294067|294069|294070|294071|294072|294073|294074|294076|294078|294079|294080|294081|294082|297480|297481|297486|297488|297491|297493|297494|297497|297508|297519|297520|297521|297522|297535|297539|297546|297553|297554|297555|297557|297564|297565|297569|297593|297594|297616|297620|297621|367970|413665|431669|624036|672055|709217|720819|764376|795555|799346|828937|828938|890363|890364|890365|890366|890367|890368|890369|890370|890371|890372|890373|890374|890375|890376|890377|890378|890379|890380|890381|890382|890383|890384|890385|890386|890387|891764|891765|891766|891767|891768|920468", + "upstreamId": "20649|101228|101229|101230|101233|106455|177982|188992|188992|190494|191235|238018|251364|251366|251367|251368|251369|271311|273551|273853|292683|292686|292688|292691|292699|292700|292702|292704|292711|294050|294067|294069|294070|294071|294072|294073|294074|294076|294078|294079|294080|294081|294082|297480|297481|297486|297488|297491|297493|297494|297497|297508|297519|297520|297521|297522|297535|297539|297546|297553|297554|297555|297557|297564|297565|297569|297593|297594|297616|297620|297621|367970|413665|431669|624036|672055|709217|720819|764376|795555|799346|828937|828938|890363|890364|890365|890366|890367|890368|890369|890370|890371|890372|890373|890374|890375|890376|890377|890378|890379|890380|890381|890382|890383|890384|890385|890386|890387|891764|891765|891766|891767|891768|920468", "text": "Stargardt disease 4" }, { - "baseId": "20649|101228|101229|101230|101233|106455|177982|188992|188992|190494|191235|238018|251364|251366|251367|251368|251369|271311|273551|273853|292683|292686|292688|292691|292699|292700|292702|292704|292711|294050|294067|294069|294070|294071|294072|294073|294074|294076|294078|294079|294080|294081|294082|297480|297481|297486|297488|297491|297493|297494|297497|297508|297519|297520|297521|297522|297535|297539|297546|297553|297554|297555|297557|297564|297565|297569|297593|297594|297616|297620|297621|367970|413665|431669|624036|672055|709217|720819|764376|795555|828937|828938|890363|890364|890365|890366|890367|890368|890369|890370|890371|890372|890373|890374|890375|890376|890377|890378|890379|890380|890381|890382|890383|890384|890385|890386|890387|891764|891765|891766|891767|891768", + "upstreamId": "20649|101228|101229|101230|101233|106455|177982|188992|188992|190494|191235|238018|251364|251366|251367|251368|251369|271311|273551|273853|292683|292686|292688|292691|292699|292700|292702|292704|292711|294050|294067|294069|294070|294071|294072|294073|294074|294076|294078|294079|294080|294081|294082|297480|297481|297486|297488|297491|297493|297494|297497|297508|297519|297520|297521|297522|297535|297539|297546|297553|297554|297555|297557|297564|297565|297569|297593|297594|297616|297620|297621|367970|413665|431669|624036|672055|709217|720819|764376|795555|828937|828938|890363|890364|890365|890366|890367|890368|890369|890370|890371|890372|890373|890374|890375|890376|890377|890378|890379|890380|890381|890382|890383|890384|890385|890386|890387|891764|891765|891766|891767|891768", "text": "Bull's eye macular dystrophy" }, { - "baseId": "20649|101228|101229|101230|101233|106455|177982|188992|188992|190494|191235|238018|247774|247775|251364|251366|251367|251368|251369|271311|273551|273853|292683|292686|292688|292691|292699|292700|292702|292704|292711|294050|294067|294069|294070|294071|294072|294073|294074|294076|294078|294079|294080|294081|294082|297480|297481|297486|297488|297491|297493|297494|297497|297508|297519|297520|297521|297522|297535|297539|297546|297553|297554|297555|297557|297564|297565|297569|297593|297594|297616|297620|297621|359518|367970|413665|431669|551535|612177|624036|672055|709217|720819|764376|790457|795555|828937|828938|890363|890364|890365|890366|890367|890368|890369|890370|890371|890372|890373|890374|890375|890376|890377|890378|890379|890380|890381|890382|890383|890384|890385|890386|890387|891764|891765|891766|891767|891768|918885|918886", + "upstreamId": "20649|101228|101229|101230|101233|106455|177982|188992|188992|190494|191235|238018|247774|247775|251364|251366|251367|251368|251369|271311|273551|273853|292683|292686|292688|292691|292699|292700|292702|292704|292711|294050|294067|294069|294070|294071|294072|294073|294074|294076|294078|294079|294080|294081|294082|297480|297481|297486|297488|297491|297493|297494|297497|297508|297519|297520|297521|297522|297535|297539|297546|297553|297554|297555|297557|297564|297565|297569|297593|297594|297616|297620|297621|359518|367970|413665|431669|551535|612177|624036|672055|709217|720819|764376|790457|795555|828937|828938|890363|890364|890365|890366|890367|890368|890369|890370|890371|890372|890373|890374|890375|890376|890377|890378|890379|890380|890381|890382|890383|890384|890385|890386|890387|891764|891765|891766|891767|891768|918885|918886", "text": "Cone-rod dystrophy 12" }, { - "baseId": "20650|20651|20652|194449|227506|247519|247520|247521|266498|269503|361467|368113|368405|368578|369816|369819|576114|633792|633793|661121|672062|709843|735031|749438|782249|830691|966609", + "upstreamId": "20650|20651|20652|194449|227506|247519|247520|247521|266498|269503|361467|368113|368405|368578|369816|369819|576114|633792|633793|661121|672062|709843|735031|749438|782249|830691|966609", "text": "Ehlers-Danlos syndrome progeroid type" }, { - "baseId": "20652|39530|189008|512850|526327|526510|538425|564770|565897|640199|701843|712963|724533|738076|738079|738080|791146|838638|935636|935637|966612|966613", + "upstreamId": "20652|39530|189008|512850|526327|526510|538425|564770|565897|640199|701843|712963|724533|738076|738079|738080|791146|838638|935636|935637|966612|966613", "text": "Multiple joint dislocations, short stature, craniofacial dysmorphism, and congenital heart defects" }, { - "baseId": "20652|620945", + "upstreamId": "20652|620945", "text": "Lethal skeletal dysplasia" }, { - "baseId": "20653|512903|538985", + "upstreamId": "20653|512903|538985", "text": "Spinocerebellar ataxia type 12" }, { - "baseId": "20654|20654|20660|34345|34345|71190|71191|71192|71193|71194|71195|71196|71197|71198|71199|81406|106600|135763|177111|178074|189016|189016|195713|199786|236898|301018|301020|301022|301028|301029|301030|301031|301037|303989|303999|304000|304001|304002|308691|308696|308697|308703|308704|308706|308707|308712|308715|308717|308724|308726|308730|308749|308751|308763|308768|308783|308784|357500|357501|357502|357503|357504|357505|357506|357507|357508|357509|357510|357511|357512|357513|357514|357515|424602|433918|433918|521556|543963|543966|543969|543972|544241|544291|544293|544304|544305|544306|544309|544313|544314|544315|544317|544318|544319|544322|544326|549612|549613|563689|635138|651595|710598|710599|722131|735766|735767|744145|750215|765816|765817|777755|782641|795894|819747|819748|832347|832348|832349|858695|896829|896830|896831|896832|896833|896834|896835|896836|896837|896838|896839|896840|896841|896842|896843|896844|933455|940853|940854|940855|945172|945173|954879|961607|978347|978348|978349|978350|978351|978352|978353", + "upstreamId": "20654|20654|20660|34345|34345|71190|71191|71192|71193|71194|71195|71196|71197|71198|71199|81406|106600|135763|177111|178074|189016|189016|195713|199786|236898|301018|301020|301022|301028|301029|301030|301031|301037|303989|303999|304000|304001|304002|308691|308696|308697|308703|308704|308706|308707|308712|308715|308717|308724|308726|308730|308749|308751|308763|308768|308783|308784|357500|357501|357502|357503|357504|357505|357506|357507|357508|357509|357510|357511|357512|357513|357514|357515|424602|433918|433918|521556|543963|543966|543969|543972|544241|544291|544293|544304|544305|544306|544309|544313|544314|544315|544317|544318|544319|544322|544326|549612|549613|563689|635138|651595|710598|710599|722131|735766|735767|744145|750215|765816|765817|777755|782641|795894|819747|819748|832347|832348|832349|858695|896829|896830|896831|896832|896833|896834|896835|896836|896837|896838|896839|896840|896841|896842|896843|896844|933455|940853|940854|940855|945172|945173|954879|961607|978347|978348|978349|978350|978351|978352|978353", "text": "Salla disease" }, { - "baseId": "20654|20654|20655|20656|20657|20658|20659|20660|34345|34345|106600|135763|189016|189016|195713|199786|236898|301018|301020|301022|301028|301029|301030|301031|301037|303989|303999|304001|304002|308691|308696|308703|308704|308706|308707|308712|308715|308717|308724|308726|308730|308749|308751|308763|308768|308783|433918|433918|549612|549613|710598|722131|777755|795894|858695|896829|896830|896831|896832|896833|896834|896835|896836|896837|896838|896839|896840|896841|896842|896843|896844|961607", + "upstreamId": "20654|20654|20655|20656|20657|20658|20659|20660|34345|34345|106600|135763|189016|189016|195713|199786|236898|301018|301020|301022|301028|301029|301030|301031|301037|303989|303999|304001|304002|308691|308696|308703|308704|308706|308707|308712|308715|308717|308724|308726|308730|308749|308751|308763|308768|308783|433918|433918|549612|549613|710598|722131|777755|795894|858695|896829|896830|896831|896832|896833|896834|896835|896836|896837|896838|896839|896840|896841|896842|896843|896844|961607", "text": "Sialic acid storage disease, severe infantile type" }, { - "baseId": "20663|20664|20665|20666|40213|40215|45765|47518|47519|47521|241829|320390|320391|320394|320395|320398|329051|329057|329062|329069|329079|335686|335692|335694|335700|335702|337516|337521|337528|337529|337537|337542|337545|404815|642324|841346|841348|871750|871751|871752|871753|871754|871755|871756|965227|980474", + "upstreamId": "20663|20664|20665|20666|40213|40215|45765|47518|47519|47521|241829|320390|320391|320394|320395|320398|329051|329057|329062|329069|329079|335686|335692|335694|335700|335702|337516|337521|337528|337529|337537|337542|337545|404815|642324|841346|841348|871750|871751|871752|871753|871754|871755|871756|965227|980474", "text": "Dyskeratosis congenita, autosomal dominant, 3" }, { - "baseId": "20663|20665|20666|22358|22359|22360|22361|22362|22364|22365|27774|39221|47518|47519|47520|47521|47522|47523|47524|47525|47526|47527|47529|47530|47531|47706|47709|47711|47712|47713|47714|47716|47717|47718|47724|47725|47732|47885|47886|47888|47891|47892|47894|47898|47899|47901|47902|47903|47905|47906|47907|49399|239114|239115|239116|393355|393357|393580|393582|428162|428163|430376|430379|430380|430383|451923|451925|451930|451935|451942|451943|452134|452391|518964|518966|518969|518976|519133|519135|519140|519142|519143|519147|533714|533717|558834|559369|559371|559373|559375|559377|561247|561257|562555|562558|562559|571397|610682|612141|624259|631030|631031|631032|631033|631034|631035|631036|631037|631038|631039|631040|631041|631042|631043|631044|631045|648808|648822|648841|728803|728806|742535|742543|742545|742547|742548|745443|757675|757680|757681|760966|773207|773248|786442|786452|786461|819350|819351|819352|827662|827663|827664|827665|827666|827667|827668|827669|827670|827671|827672|827673|827674|827675|827676|827677|827678|827679|827680|827681|827682|827683|905005|905006|923087|923088|923089|923090|923091|923092|923093|923094|931821|931822|931823|931824|931825|931826|931827|931828|931829|931830|931831|943399|943400|943401|943402|943403|943404|943405|953382|953383|953384|953385|953386|953387|961227|961228", + "upstreamId": "20663|20665|20666|22358|22359|22360|22361|22362|22364|22365|27774|39221|47518|47519|47520|47521|47522|47523|47524|47525|47526|47527|47529|47530|47531|47706|47709|47711|47712|47713|47714|47716|47717|47718|47724|47725|47732|47885|47886|47888|47891|47892|47894|47898|47899|47901|47902|47903|47905|47906|47907|49399|239114|239115|239116|393355|393357|393580|393582|428162|428163|430376|430379|430380|430383|451923|451925|451930|451935|451942|451943|452134|452391|518964|518966|518969|518976|519133|519135|519140|519142|519143|519147|533714|533717|558834|559369|559371|559373|559375|559377|561247|561257|562555|562558|562559|571397|610682|612141|624259|631030|631031|631032|631033|631034|631035|631036|631037|631038|631039|631040|631041|631042|631043|631044|631045|648808|648822|648841|728803|728806|742535|742543|742545|742547|742548|745443|757675|757680|757681|760966|773207|773248|786442|786452|786461|819350|819351|819352|827662|827663|827664|827665|827666|827667|827668|827669|827670|827671|827672|827673|827674|827675|827676|827677|827678|827679|827680|827681|827682|827683|905005|905006|923087|923088|923089|923090|923091|923092|923093|923094|931821|931822|931823|931824|931825|931826|931827|931828|931829|931830|931831|943399|943400|943401|943402|943403|943404|943405|953382|953383|953384|953385|953386|953387|961227|961228", "text": "Dyskeratosis congenita, autosomal dominant 1" }, { - "baseId": "20664|40214|47518|47519|47521|241829|320390|320391|320394|320395|320398|329051|329057|329062|329067|329069|329079|329081|335686|335687|335692|335694|335700|335702|337516|337517|337521|337528|337529|337537|337542|337545|404815|642324|841346|841348|871750|871751|871752|871753|871754|871755|871756|980474", + "upstreamId": "20664|40214|47518|47519|47521|241829|320390|320391|320394|320395|320398|329051|329057|329062|329067|329069|329079|329081|335686|335687|335692|335694|335700|335702|337516|337517|337521|337528|337529|337537|337542|337545|404815|642324|841346|841348|871750|871751|871752|871753|871754|871755|871756|980474", "text": "Revesz syndrome" }, { - "baseId": "20666|26622|26626|26630|39952|39953|39955|39956|39957|47518|47519|47521|47544|47555|48734|51186|51187|51188|51189|76347|134307|134308|134309|134310|178827|178828|207165|208425|208426|208427|208428|208429|208708|208981|213931|214164|239792|239793|239794|239795|241829|243015|243016|243017|243018|243019|243020|243783|256553|264535|297146|299105|300507|320391|320395|320398|329051|329057|329062|330609|330617|330638|330641|330648|330649|330653|330654|330667|330670|330676|330682|330683|330685|330686|330688|330691|330693|330695|330701|330709|330710|330715|330733|335686|335692|340872|340878|340879|340880|340884|340887|340895|340902|340907|340908|340910|340913|340918|340923|340925|340939|340940|340942|340944|340946|340949|340952|340953|340957|346455|346468|346469|346478|346479|346480|346483|346488|346492|346493|346495|346501|346504|346508|346512|346513|346515|346517|346518|346524|346525|346526|346529|346532|346534|346535|346541|347807|347812|347815|347816|347818|347819|347820|347821|347824|347827|347833|347834|347835|347840|347841|347843|347845|347846|347848|347849|347852|347853|347854|347857|347858|364027|375806|390347|390350|390399|390459|390460|390482|394855|394971|399788|400201|400357|400362|402608|402638|402647|403098|403099|403203|404507|404508|411206|428338|428339|428406|429551|430031|430032|430034|430039|430041|430375|430381|430382|430389|430395|430396|430404|430408|445923|446303|455707|463198|464025|467811|467819|467835|468747|469174|469179|469183|469187|469190|469198|469210|469462|469542|469544|469548|469555|469564|469568|469574|470505|470512|470531|470533|470629|470632|471019|471026|471421|471424|471486|471490|471496|471840|472108|472109|488060|496794|521453|521610|528120|528137|528140|528619|528623|532097|532103|532106|532110|532113|532115|532116|532123|532125|532128|532134|532196|532200|532204|532206|532207|532209|532462|532466|532467|532469|532478|532484|533657|533704|533706|533707|534264|534266|534668|534764|535116|559966|560283|560388|560390|565057|566403|566405|567979|567988|568850|568851|569998|570001|570014|570015|570019|570020|570022|571806|571808|571810|571812|571814|572467|572476|572478|572479|572480|572481|572489|572773|573630|573638|573656|573664|573737|573742|573747|574375|574695|574696|574697|574698|574699|574700|574701|580873|587526|620614|620615|623376|623377|623378|624688|633794|633795|633796|633797|633798|642324|642325|642326|642327|642328|642329|642330|642331|642332|642333|642334|642335|642336|642337|642338|642339|647020|647021|647022|647023|647024|647025|647026|647027|647028|647029|647030|647031|647032|647033|647034|647035|647036|647037|647038|647039|647040|647041|647042|647043|647044|647045|647046|647047|647048|647049|647050|647051|647052|647053|648804|648817|648819|648824|648828|648830|648835|648837|648838|651396|652878|653224|653546|684474|684475|684476|684729|684730|684979|684980|688271|688272|688862|688863|688864|688865|688866|688868|688869|688871|688873|689441|689442|689444|690186|690187|690263|693472|694235|694237|694238|694847|705618|705619|717141|717142|717143|717144|728804|728807|728809|728811|728812|728813|728815|731368|742536|742538|742540|742541|742542|742544|742546|745129|757676|757682|757688|757689|760788|760969|772011|773208|773212|773215|773221|773226|773232|773235|773237|773241|773247|773249|773927|776432|776675|776678|776683|776704|776807|785826|786433|786439|786444|786457|786459|786760|791847|819576|819578|819579|820978|821177|821494|830693|830694|830695|830696|830697|830698|830699|830700|841338|841339|841340|841341|841342|841343|841344|841345|841346|841347|841348|841349|846593|846594|846595|846596|846597|846598|846599|846600|846601|846602|846603|846604|846605|846606|846607|846608|846609|846610|846611|846612|846613|846614|846615|846616|846617|846618|846619|846620|846621|846622|846623|846624|846625|846626|846627|846628|846629|846630|846631|846632|846633|846634|846635|846636|846637|846638|846639|846640|846641|846642|846643|846644|846645|846646|846647|846648|846649|846650|846651|846652|848555|848563|848564|848565|848566|848569|848575|849844|849845|849846|852558|852737|852804|878845|878846|878847|878848|878849|878850|878851|878852|878853|878854|878855|878856|878857|878858|878859|878860|878861|878862|878863|878864|878865|878866|878867|878868|878869|878870|878871|878872|878873|878874|878875|878876|878877|878878|878879|878880|878881|878882|878883|878884|878885|878886|878887|878888|878889|878890|878891|878892|878893|878894|878895|878896|878897|878898|878899|878900|878901|878902|878903|878904|878905|878906|878907|878908|878909|878910|878911|878912|878913|878914|878915|878916|878917|878918|878919|878920|880630|880631|880632|880633|880634|924014|927013|927014|927015|927016|928643|928644|928645|928646|928647|928648|928649|928650|928651|928652|929634|929635|929636|932862|932863|932864|936593|936594|936595|938362|938363|938364|938365|938366|938367|938368|938369|938370|938371|938372|939505|939506|940449|940450|940547|941291|944559|948526|948527|948528|950431|950432|950433|950434|950435|950436|950437|950438|950439|950440|950441|950442|950443|950444|951689|951690|951691|954117|954118|954119|957198|957199|958415|958416|958417|958418|958419|958420|958421|958422|958423|958424|958425|959210|959211|959212|959213|959214|960087|960256|960371|960803|960904|980023|980024|980025|980026|980027|980028|980029|980030|980031|980032", + "upstreamId": "20666|26622|26626|26630|39952|39953|39955|39956|39957|47518|47519|47521|47544|47555|48734|51186|51187|51188|51189|76347|134307|134308|134309|134310|178827|178828|207165|208425|208426|208427|208428|208429|208708|208981|213931|214164|239792|239793|239794|239795|241829|243015|243016|243017|243018|243019|243020|243783|256553|264535|297146|299105|300507|320391|320395|320398|329051|329057|329062|330609|330617|330638|330641|330648|330649|330653|330654|330667|330670|330676|330682|330683|330685|330686|330688|330691|330693|330695|330701|330709|330710|330715|330733|335686|335692|340872|340878|340879|340880|340884|340887|340895|340902|340907|340908|340910|340913|340918|340923|340925|340939|340940|340942|340944|340946|340949|340952|340953|340957|346455|346468|346469|346478|346479|346480|346483|346488|346492|346493|346495|346501|346504|346508|346512|346513|346515|346517|346518|346524|346525|346526|346529|346532|346534|346535|346541|347807|347812|347815|347816|347818|347819|347820|347821|347824|347827|347833|347834|347835|347840|347841|347843|347845|347846|347848|347849|347852|347853|347854|347857|347858|364027|375806|390347|390350|390399|390459|390460|390482|394855|394971|399788|400201|400357|400362|402608|402638|402647|403098|403099|403203|404507|404508|411206|428338|428339|428406|429551|430031|430032|430034|430039|430041|430375|430381|430382|430389|430395|430396|430404|430408|445923|446303|455707|463198|464025|467811|467819|467835|468747|469174|469179|469183|469187|469190|469198|469210|469462|469542|469544|469548|469555|469564|469568|469574|470505|470512|470531|470533|470629|470632|471019|471026|471421|471424|471486|471490|471496|471840|472108|472109|488060|496794|521453|521610|528120|528137|528140|528619|528623|532097|532103|532106|532110|532113|532115|532116|532123|532125|532128|532134|532196|532200|532204|532206|532207|532209|532462|532466|532467|532469|532478|532484|533657|533704|533706|533707|534264|534266|534668|534764|535116|559966|560283|560388|560390|565057|566403|566405|567979|567988|568850|568851|569998|570001|570014|570015|570019|570020|570022|571806|571808|571810|571812|571814|572467|572476|572478|572479|572480|572481|572489|572773|573630|573638|573656|573664|573737|573742|573747|574375|574695|574696|574697|574698|574699|574700|574701|580873|587526|620614|620615|623376|623377|623378|624688|633794|633795|633796|633797|633798|642324|642325|642326|642327|642328|642329|642330|642331|642332|642333|642334|642335|642336|642337|642338|642339|647020|647021|647022|647023|647024|647025|647026|647027|647028|647029|647030|647031|647032|647033|647034|647035|647036|647037|647038|647039|647040|647041|647042|647043|647044|647045|647046|647047|647048|647049|647050|647051|647052|647053|648804|648817|648819|648824|648828|648830|648835|648837|648838|651396|652878|653224|653546|684474|684475|684476|684729|684730|684979|684980|688271|688272|688862|688863|688864|688865|688866|688868|688869|688871|688873|689441|689442|689444|690186|690187|690263|693472|694235|694237|694238|694847|705618|705619|717141|717142|717143|717144|728804|728807|728809|728811|728812|728813|728815|731368|742536|742538|742540|742541|742542|742544|742546|745129|757676|757682|757688|757689|760788|760969|772011|773208|773212|773215|773221|773226|773232|773235|773237|773241|773247|773249|773927|776432|776675|776678|776683|776704|776807|785826|786433|786439|786444|786457|786459|786760|791847|819576|819578|819579|820978|821177|821494|830693|830694|830695|830696|830697|830698|830699|830700|841338|841339|841340|841341|841342|841343|841344|841345|841346|841347|841348|841349|846593|846594|846595|846596|846597|846598|846599|846600|846601|846602|846603|846604|846605|846606|846607|846608|846609|846610|846611|846612|846613|846614|846615|846616|846617|846618|846619|846620|846621|846622|846623|846624|846625|846626|846627|846628|846629|846630|846631|846632|846633|846634|846635|846636|846637|846638|846639|846640|846641|846642|846643|846644|846645|846646|846647|846648|846649|846650|846651|846652|848555|848563|848564|848565|848566|848569|848575|849844|849845|849846|852558|852737|852804|878845|878846|878847|878848|878849|878850|878851|878852|878853|878854|878855|878856|878857|878858|878859|878860|878861|878862|878863|878864|878865|878866|878867|878868|878869|878870|878871|878872|878873|878874|878875|878876|878877|878878|878879|878880|878881|878882|878883|878884|878885|878886|878887|878888|878889|878890|878891|878892|878893|878894|878895|878896|878897|878898|878899|878900|878901|878902|878903|878904|878905|878906|878907|878908|878909|878910|878911|878912|878913|878914|878915|878916|878917|878918|878919|878920|880630|880631|880632|880633|880634|924014|927013|927014|927015|927016|928643|928644|928645|928646|928647|928648|928649|928650|928651|928652|929634|929635|929636|932862|932863|932864|936593|936594|936595|938362|938363|938364|938365|938366|938367|938368|938369|938370|938371|938372|939505|939506|940449|940450|940547|941291|944559|948526|948527|948528|950431|950432|950433|950434|950435|950436|950437|950438|950439|950440|950441|950442|950443|950444|951689|951690|951691|954117|954118|954119|957198|957199|958415|958416|958417|958418|958419|958420|958421|958422|958423|958424|958425|959210|959211|959212|959213|959214|960087|960256|960371|960803|960904|980023|980024|980025|980026|980027|980028|980029|980030|980031|980032", "text": "Dyskeratosis congenita" }, { - "baseId": "20667|20668|20669|20670|20671|20672|98423|195209|256412|256413|329950|329951|329955|340217|340219|345929|345931|345936|345937|345944|345948|345956|347277|347283|347286|347287|347291|468839|469088|531770|548333|548335|548342|548346|548354|548357|548358|548362|548366|548368|548370|548374|548376|548378|548381|548384|548386|548716|548725|548732|548736|548739|548740|548746|549104|549109|549110|549117|549128|549131|588980|646696|694202|694203|694204|694205|695776|695777|704378|704379|704380|704381|704382|704383|715708|715709|715710|727444|741037|741038|741039|741041|756131|771829|771830|771831|771832|771833|771835|771837|785744|785745|791828|791829|846199|878487|878488|878489|878490|878491|878492|878493|878494|878495|878496|878497|941197|950288|950289|958310|958311|958312|972276|972277|972278|972279|972280|979920|979921|979922", + "upstreamId": "20667|20668|20669|20670|20671|20672|98423|195209|256412|256413|329950|329951|329955|340217|340219|345929|345931|345936|345937|345944|345948|345956|347277|347283|347286|347287|347291|468839|469088|531770|548333|548335|548342|548346|548354|548357|548358|548362|548366|548368|548370|548374|548376|548378|548381|548384|548386|548716|548725|548732|548736|548739|548740|548746|549104|549109|549110|549117|549128|549131|588980|646696|694202|694203|694204|694205|695776|695777|704378|704379|704380|704381|704382|704383|715708|715709|715710|727444|741037|741038|741039|741041|756131|771829|771830|771831|771832|771833|771835|771837|785744|785745|791828|791829|846199|878487|878488|878489|878490|878491|878492|878493|878494|878495|878496|878497|941197|950288|950289|958310|958311|958312|972276|972277|972278|972279|972280|979920|979921|979922", "text": "Deficiency of galactokinase" }, { - "baseId": "20673|797963", + "upstreamId": "20673|797963", "text": "Hereditary cerebral amyloid angiopathy, Icelandic type" }, { - "baseId": "20674", + "upstreamId": "20674", "text": "Age-related macular degeneration 11" }, { - "baseId": "20675|20676|34342|171741|171742|171743|186791|200615|200616|200617|200620|200621|200622|200623|200624|200625|200626|200627|200629|200630|200631|200632|200633|200634|200635|200636|200637|200638|200639|200640|200641|200642|200643|200644|200645|200646|200647|200648|200649|200650|253558|308348|308350|308351|312797|312798|312799|318643|318649|318650|318651|319209|319215|319241|357806|357807|357808|357809|357810|357811|357812|357813|357814|357815|357816|357817|415197|544915|544917|545179|545181|545183|545188|545192|545193|545194|545280|545285|545287|545289|545292|545294|545462|545463|545467|545483|545484|545495|545503|545510|545512|545519|545523|545534|545537|545540|545541|545546|590449|620334|711977|751716|751717|767421|767425|783410|787810|818273|902062|902063|902064|902065|902066|902067|902068|902069|902070|902071|902072|902073|902074|902075|955856|972042|972043|972044|978587|978588|978589|978590|978591|978592", + "upstreamId": "20675|20676|34342|171741|171742|171743|186791|200615|200616|200617|200620|200621|200622|200623|200624|200625|200626|200627|200629|200630|200631|200632|200633|200634|200635|200636|200637|200638|200639|200640|200641|200642|200643|200644|200645|200646|200647|200648|200649|200650|253558|308348|308350|308351|312797|312798|312799|318643|318649|318650|318651|319209|319215|319241|357806|357807|357808|357809|357810|357811|357812|357813|357814|357815|357816|357817|415197|544915|544917|545179|545181|545183|545188|545192|545193|545194|545280|545285|545287|545289|545292|545294|545462|545463|545467|545483|545484|545495|545503|545510|545512|545519|545523|545534|545537|545540|545541|545546|590449|620334|711977|751716|751717|767421|767425|783410|787810|818273|902062|902063|902064|902065|902066|902067|902068|902069|902070|902071|902072|902073|902074|902075|955856|972042|972043|972044|978587|978588|978589|978590|978591|978592", "text": "Primary hyperoxaluria, type II" }, { - "baseId": "20675|20683|20685|20970|27267|200501|236723|260799|303427|539124|539125|539126|539134|539135|539136|539143|539152|539154|625971", + "upstreamId": "20675|20683|20685|20970|27267|200501|236723|260799|303427|539124|539125|539126|539134|539135|539136|539143|539152|539154|625971", "text": "Nephrocalcinosis" }, { - "baseId": "20676|20684|20685|38436|150264|171741|186650|186661|200432|200435|200495|200503|200506|200515|200558|200572|200634|288981|311821|311826|311840|323489|324115|324127|324128|621110|858754", + "upstreamId": "20676|20684|20685|38436|150264|171741|186650|186661|200432|200435|200495|200503|200506|200515|200558|200572|200634|288981|311821|311826|311840|323489|324115|324127|324128|621110|858754", "text": "Primary hyperoxaluria" }, { - "baseId": "20677|21231|22804|22805|22806|27398|27403|27406|28938|28940|29009|29010|29011|40563|45735|87659|87660|150535|176503|242978|362755|363053|363096|363097|363179|363247|363248|363249|363250|363251|363291|363292|363327|363337|363338|363376|363377|363378|363398|363399|363400|363401|363402|363403|363538|363542|363543|363544|363560|363561|363562|363563|363564|363565|789985|789986|789987", + "upstreamId": "20677|21231|22804|22805|22806|27398|27403|27406|28938|28940|29009|29010|29011|40563|45735|87659|87660|150535|176503|242978|362755|363053|363096|363097|363179|363247|363248|363249|363250|363251|363291|363292|363327|363337|363338|363376|363377|363378|363398|363399|363400|363401|363402|363403|363538|363542|363543|363544|363560|363561|363562|363563|363564|363565|789985|789986|789987", "text": "Non-Hodgkin lymphoma" }, { - "baseId": "20679|20680|20681|20682|20683|20684|20685|20686|20687|20688|20689|38436|48085|48086|98222|98223|150264|150265|186650|186651|186652|186653|186654|186655|186656|186657|186658|186659|186660|186661|186662|186663|195195|195847|196142|200411|200412|200413|200414|200415|200416|200417|200418|200419|200420|200421|200422|200423|200424|200425|200426|200427|200428|200429|200430|200431|200432|200433|200434|200435|200436|200437|200438|200439|200440|200441|200442|200443|200444|200445|200446|200447|200448|200449|200450|200451|200452|200453|200454|200455|200456|200457|200458|200459|200460|200461|200462|200463|200464|200467|200468|200469|200470|200471|200472|200473|200474|200475|200476|200477|200478|200479|200480|200481|200482|200483|200484|200485|200486|200487|200488|200489|200490|200491|200492|200493|200494|200495|200496|200497|200498|200499|200500|200501|200502|200503|200504|200505|200506|200507|200508|200509|200510|200511|200512|200513|200514|200515|200516|200517|200518|200519|200520|200521|200522|200523|200524|200525|200526|200527|200528|200529|200530|200531|200532|200533|200534|200535|200536|200537|200538|200539|200540|200541|200542|200543|200544|200545|200546|200547|200548|200549|200550|200551|200552|200553|200554|200555|200556|200557|200558|200561|200562|200563|200564|200565|200566|200567|200568|200569|200570|200571|200572|200573|200574|200575|200576|200577|200578|200579|200580|200581|200582|200583|200584|200585|200586|200587|200588|200589|200590|200591|200592|200593|200594|200595|200596|200597|200598|200599|200600|200601|200602|200603|200604|200605|200606|200607|200608|200609|200610|200611|200612|200613|200614|250698|272486|273346|285570|285575|285582|286268|286269|286278|288590|288591|288592|288982|288983|289001|289002|357248|367164|541941|541943|541949|541950|542041|542045|542050|542053|542075|542081|542185|542186|542188|542189|542191|542193|620074|697482|719760|730126|733347|733348|733350|747469|747470|790221|826108|884407|884408|884409|884410|884411|884412|884413|884414|884415|884416|884417|884418|884419|884420|887330|961570|971787|971788|971789|971790|971791|971792|977706|977707|977708|977709", + "upstreamId": "20679|20680|20681|20682|20683|20684|20685|20686|20687|20688|20689|38436|48085|48086|98222|98223|150264|150265|186650|186651|186652|186653|186654|186655|186656|186657|186658|186659|186660|186661|186662|186663|195195|195847|196142|200411|200412|200413|200414|200415|200416|200417|200418|200419|200420|200421|200422|200423|200424|200425|200426|200427|200428|200429|200430|200431|200432|200433|200434|200435|200436|200437|200438|200439|200440|200441|200442|200443|200444|200445|200446|200447|200448|200449|200450|200451|200452|200453|200454|200455|200456|200457|200458|200459|200460|200461|200462|200463|200464|200467|200468|200469|200470|200471|200472|200473|200474|200475|200476|200477|200478|200479|200480|200481|200482|200483|200484|200485|200486|200487|200488|200489|200490|200491|200492|200493|200494|200495|200496|200497|200498|200499|200500|200501|200502|200503|200504|200505|200506|200507|200508|200509|200510|200511|200512|200513|200514|200515|200516|200517|200518|200519|200520|200521|200522|200523|200524|200525|200526|200527|200528|200529|200530|200531|200532|200533|200534|200535|200536|200537|200538|200539|200540|200541|200542|200543|200544|200545|200546|200547|200548|200549|200550|200551|200552|200553|200554|200555|200556|200557|200558|200561|200562|200563|200564|200565|200566|200567|200568|200569|200570|200571|200572|200573|200574|200575|200576|200577|200578|200579|200580|200581|200582|200583|200584|200585|200586|200587|200588|200589|200590|200591|200592|200593|200594|200595|200596|200597|200598|200599|200600|200601|200602|200603|200604|200605|200606|200607|200608|200609|200610|200611|200612|200613|200614|250698|272486|273346|285570|285575|285582|286268|286269|286278|288590|288591|288592|288982|288983|289001|289002|357248|367164|541941|541943|541949|541950|542041|542045|542050|542053|542075|542081|542185|542186|542188|542189|542191|542193|620074|697482|719760|730126|733347|733348|733350|747469|747470|790221|826108|884407|884408|884409|884410|884411|884412|884413|884414|884415|884416|884417|884418|884419|884420|887330|961570|971787|971788|971789|971790|971791|971792|977706|977707|977708|977709", "text": "Primary hyperoxaluria, type I" }, { - "baseId": "20690|20691|20692|20693|20694|20695|508763|508764|508765|590697|672209|672210|672211|672212|672213|672214|672215|672216|672217|788732|789891|961824|963118|963119|964139|975891|980900", + "upstreamId": "20690|20691|20692|20693|20694|20695|508763|508764|508765|590697|672209|672210|672211|672212|672213|672214|672215|672216|672217|788732|789891|961824|963118|963119|964139|975891|980900", "text": "Camptodactyly-arthropathy-coxa vara-pericarditis syndrome" }, { - "baseId": "20696|20697|20698|20699|20700|20701|20702|20703|20704|20705|20706|20707|20708|20709|20710|20711|20712|20713|20714|20715|20716|185965|185966|185967|185968|194975|205235|206997|206998|212144|212145|212146|212147|212148|213538|213539|216738|216739|216740|216741|216742|216743|216744|216745|216746|216747|216748|216749|216750|216751|216752|216753|216754|216755|216756|216757|216758|216759|216760|216761|216762|216763|216764|216765|216766|216767|216768|216769|216770|216771|216772|216773|216774|216775|216776|216777|216778|216779|216780|216781|216782|216783|216784|216785|221175|221176|221177|221178|221179|221180|227916|238765|238766|238767|238768|238769|248484|259736|262398|286122|286130|286137|286139|286140|286142|286143|286144|286153|286155|286168|286173|286174|286852|286859|286864|286868|286870|286875|286879|286889|286890|286897|286898|286911|286914|286916|286927|286929|286930|289184|289189|289200|289202|289204|289207|289208|289209|289211|289212|289214|289215|289217|289226|289228|289231|289498|289511|289514|289526|289530|289542|289552|289555|289564|289568|289569|289576|289592|366539|384433|391351|391550|392653|392683|392691|392807|392811|392815|393011|393012|393018|393020|404605|404606|405721|420990|425489|425490|425493|434579|440698|440700|440701|440704|440706|440709|440711|440714|440716|440717|443240|448395|448543|448547|448596|450867|450870|450871|450889|450992|450994|450998|451180|451182|451183|451187|451190|451192|451198|451204|451205|451207|481473|481474|481652|499920|511419|513925|514466|516225|516228|518183|518185|518186|518188|518191|518192|518193|518195|518197|518240|518246|518251|518253|518301|518305|518306|518311|518317|518321|550352|551616|552065|557440|557491|557493|558071|558073|558075|558077|558081|558432|558434|558436|558438|558440|558442|558444|558446|558448|558450|560621|560623|560625|560627|561472|561494|561495|561496|561497|561500|561502|561505|576683|576687|576692|609147|609162|612140|622324|623591|629953|629954|629955|629956|629957|629958|629959|629960|629961|629962|629963|629964|629965|629966|650758|650800|650802|650811|650832|650955|650956|650958|683501|686203|686204|763198|763199|790229|790230|790231|790232|790233|790234|790235|792977|794011|798508|819157|819158|819159|819160|819161|819162|819163|819164|819165|819166|819167|826419|826420|826421|826422|826423|826424|826425|826426|826427|826428|826429|826430|826431|826432|826433|826434|826435|826436|826437|826438|884791|884792|884793|884794|884795|884796|884797|884798|884799|884800|884801|884802|884803|884804|884805|884806|884807|884808|884809|884810|884811|887361|887362|918770|918771|920175|920176|922753|922754|922755|922756|922757|922758|931386|931387|931388|931389|931390|931391|931392|931393|931394|939891|939892|940707|940708|940709|942896|942897|942898|942899|942900|942901|942902|942903|942904|942905|942906|953085|953086|959641|964199|969711|976031|976032|984251", + "upstreamId": "20696|20697|20698|20699|20700|20701|20702|20703|20704|20705|20706|20707|20708|20709|20710|20711|20712|20713|20714|20715|20716|185965|185966|185967|185968|194975|205235|206997|206998|212144|212145|212146|212147|212148|213538|213539|216738|216739|216740|216741|216742|216743|216744|216745|216746|216747|216748|216749|216750|216751|216752|216753|216754|216755|216756|216757|216758|216759|216760|216761|216762|216763|216764|216765|216766|216767|216768|216769|216770|216771|216772|216773|216774|216775|216776|216777|216778|216779|216780|216781|216782|216783|216784|216785|221175|221176|221177|221178|221179|221180|227916|238765|238766|238767|238768|238769|248484|259736|262398|286122|286130|286137|286139|286140|286142|286143|286144|286153|286155|286168|286173|286174|286852|286859|286864|286868|286870|286875|286879|286889|286890|286897|286898|286911|286914|286916|286927|286929|286930|289184|289189|289200|289202|289204|289207|289208|289209|289211|289212|289214|289215|289217|289226|289228|289231|289498|289511|289514|289526|289530|289542|289552|289555|289564|289568|289569|289576|289592|366539|384433|391351|391550|392653|392683|392691|392807|392811|392815|393011|393012|393018|393020|404605|404606|405721|420990|425489|425490|425493|434579|440698|440700|440701|440704|440706|440709|440711|440714|440716|440717|443240|448395|448543|448547|448596|450867|450870|450871|450889|450992|450994|450998|451180|451182|451183|451187|451190|451192|451198|451204|451205|451207|481473|481474|481652|499920|511419|513925|514466|516225|516228|518183|518185|518186|518188|518191|518192|518193|518195|518197|518240|518246|518251|518253|518301|518305|518306|518311|518317|518321|550352|551616|552065|557440|557491|557493|558071|558073|558075|558077|558081|558432|558434|558436|558438|558440|558442|558444|558446|558448|558450|560621|560623|560625|560627|561472|561494|561495|561496|561497|561500|561502|561505|576683|576687|576692|609147|609162|612140|622324|623591|629953|629954|629955|629956|629957|629958|629959|629960|629961|629962|629963|629964|629965|629966|650758|650800|650802|650811|650832|650955|650956|650958|683501|686203|686204|763198|763199|790229|790230|790231|790232|790233|790234|790235|792977|794011|798508|819157|819158|819159|819160|819161|819162|819163|819164|819165|819166|819167|826419|826420|826421|826422|826423|826424|826425|826426|826427|826428|826429|826430|826431|826432|826433|826434|826435|826436|826437|826438|884791|884792|884793|884794|884795|884796|884797|884798|884799|884800|884801|884802|884803|884804|884805|884806|884807|884808|884809|884810|884811|887361|887362|918770|918771|920175|920176|922753|922754|922755|922756|922757|922758|931386|931387|931388|931389|931390|931391|931392|931393|931394|939891|939892|940707|940708|940709|942896|942897|942898|942899|942900|942901|942902|942903|942904|942905|942906|953085|953086|959641|964199|969711|976031|976032|984251", "text": "Spastic paraplegia 4, autosomal dominant" }, { - "baseId": "20710|20711", + "upstreamId": "20710|20711", "text": "Spastic paraplegia 4, modifier of" }, { - "baseId": "20717|20718|20719|20720|20721|20722|20723|20724|65567|141579|142784|142785|142786|142787|142788|142789|142790|142791|211962|211965|338573|338576|338577|348160|348162|348165|351824|351825|351827|352678|352679|377583|689294|786642|788946|891500|891501|891502|919959", + "upstreamId": "20717|20718|20719|20720|20721|20722|20723|20724|65567|141579|142784|142785|142786|142787|142788|142789|142790|142791|211962|211965|338573|338576|338577|348160|348162|348165|351824|351825|351827|352678|352679|377583|689294|786642|788946|891500|891501|891502|919959", "text": "Cardioencephalomyopathy, fatal infantile, due to cytochrome c oxidase deficiency" }, { - "baseId": "20717|20720|65567|211965", + "upstreamId": "20717|20720|65567|211965", "text": "Myopia 6" }, { - "baseId": "20720|153385|177103|181399|203840|203843|225802|225802|225802|225802|225802|263309|263410|268631|360940|513921|513949|513961|513984|513986|514013|514110|514321|514323|514331|514332|514333|514334|514335|626420|921239|921240|921241|921242|966614|971562", + "upstreamId": "20720|153385|177103|181399|203840|203843|225802|225802|225802|225802|225802|263309|263410|268631|360940|513921|513949|513961|513984|513986|514013|514110|514321|514323|514331|514332|514333|514334|514335|626420|921239|921240|921241|921242|966614|971562", "text": "Severe global developmental delay" }, { - "baseId": "20725|20726|20727|20728|20729|20730|20731|20732|39367|187689|191369|191369|191537|194164|194191|196235|196235|207865|207865|265791|266013|266013|267194|267194|270150|270796|270796|270975|270975|270976|272453|272453|272457|272457|274999|274999|314192|314197|314198|314211|314214|314215|314218|314221|314221|314230|314230|314232|314232|314233|314235|314236|314240|314240|314245|314249|314249|314250|320769|320771|320774|320775|320780|320780|320781|320783|320783|320786|320787|320788|320790|320790|320796|320798|320818|320820|320821|320821|320834|320837|320837|320850|320852|320852|320855|320855|320863|320864|320871|320873|326814|326817|326820|326822|326824|326840|326842|326843|326846|326846|326853|326853|326855|326855|326858|326859|326859|326861|326866|326867|326872|326874|326875|326875|326887|326887|326891|326891|327779|327782|327784|327787|327788|327795|327795|327798|327798|327799|327800|327800|327811|327817|327817|327818|327830|327830|327831|327840|327844|327845|327847|327858|327858|327859|327869|327869|327870|327882|327885|360043|360043|371427|420287|429241|444807|444807|461121|461131|461137|461332|461332|461333|461623|461623|461624|461625|461626|461627|461630|461932|461939|461943|461953|488690|488691|488694|526218|526218|526223|526224|526224|526226|526227|526228|526409|526415|526429|526434|526706|526708|526713|526713|526715|526719|564646|564647|564651|564654|564655|564662|564669|564671|564671|565803|565805|567275|567276|567280|567282|570669|570670|570671|570673|626206|640069|640070|640071|640072|640073|640074|640075|640076|640077|640078|640079|640080|640081|640082|640083|640084|640085|640086|640087|640088|640089|640089|640090|652547|693032|693033|693033|693034|693037|693037|693039|693039|693040|693042|693042|693043|693044|693045|695516|695518|701776|701776|701777|701778|701778|701780|712847|712848|712849|712849|724460|724462|724464|752689|768468|784012|796596|796596|838472|838473|838474|838475|838476|838477|838478|838479|838480|838481|838482|838483|838484|838485|838486|852613|868036|868037|868038|868039|868040|868041|868042|868043|868044|868045|868046|868047|868048|868049|868050|868051|868052|868053|868054|868055|868056|868057|868058|868059|868060|868061|868062|868063|868064|868065|868066|868067|868068|868069|868070|868071|868072|868073|868074|868075|868076|868077|868078|868079|868080|868653|868654|926251|926252|926253|926254|926255|935567|935568|935569|935570|935571|935572|935573|935574|935575|935576|940214|940998|947480|947481|947482|947483|956513|956514|956515|959990|970936", + "upstreamId": "20725|20726|20727|20728|20729|20730|20731|20732|39367|187689|191369|191369|191537|194164|194191|196235|196235|207865|207865|265791|266013|266013|267194|267194|270150|270796|270796|270975|270975|270976|272453|272453|272457|272457|274999|274999|314192|314197|314198|314211|314214|314215|314218|314221|314221|314230|314230|314232|314232|314233|314235|314236|314240|314240|314245|314249|314249|314250|320769|320771|320774|320775|320780|320780|320781|320783|320783|320786|320787|320788|320790|320790|320796|320798|320818|320820|320821|320821|320834|320837|320837|320850|320852|320852|320855|320855|320863|320864|320871|320873|326814|326817|326820|326822|326824|326840|326842|326843|326846|326846|326853|326853|326855|326855|326858|326859|326859|326861|326866|326867|326872|326874|326875|326875|326887|326887|326891|326891|327779|327782|327784|327787|327788|327795|327795|327798|327798|327799|327800|327800|327811|327817|327817|327818|327830|327830|327831|327840|327844|327845|327847|327858|327858|327859|327869|327869|327870|327882|327885|360043|360043|371427|420287|429241|444807|444807|461121|461131|461137|461332|461332|461333|461623|461623|461624|461625|461626|461627|461630|461932|461939|461943|461953|488690|488691|488694|526218|526218|526223|526224|526224|526226|526227|526228|526409|526415|526429|526434|526706|526708|526713|526713|526715|526719|564646|564647|564651|564654|564655|564662|564669|564671|564671|565803|565805|567275|567276|567280|567282|570669|570670|570671|570673|626206|640069|640070|640071|640072|640073|640074|640075|640076|640077|640078|640079|640080|640081|640082|640083|640084|640085|640086|640087|640088|640089|640089|640090|652547|693032|693033|693033|693034|693037|693037|693039|693039|693040|693042|693042|693043|693044|693045|695516|695518|701776|701776|701777|701778|701778|701780|712847|712848|712849|712849|724460|724462|724464|752689|768468|784012|796596|796596|838472|838473|838474|838475|838476|838477|838478|838479|838480|838481|838482|838483|838484|838485|838486|852613|868036|868037|868038|868039|868040|868041|868042|868043|868044|868045|868046|868047|868048|868049|868050|868051|868052|868053|868054|868055|868056|868057|868058|868059|868060|868061|868062|868063|868064|868065|868066|868067|868068|868069|868070|868071|868072|868073|868074|868075|868076|868077|868078|868079|868080|868653|868654|926251|926252|926253|926254|926255|935567|935568|935569|935570|935571|935572|935573|935574|935575|935576|940214|940998|947480|947481|947482|947483|956513|956514|956515|959990|970936", "text": "Cenani-Lenz syndactyly syndrome" }, { - "baseId": "20733|20734|20736|20737|196286|196287|266578|272001|273741|466808|467667|468076|485862|490861|508752|513224|531010|531132|531154|531502|531503|531505|531509|531510|531512|571113|571114|571115|571342|574455|574456|624628|645875|645876|645877|645878|645879|645880|645881|645882|645883|645884|645885|645886|652955|715456|727177|727178|727179|740747|740748|744956|755838|755839|755842|771491|771492|771494|785559|785560|785562|816341|845324|845325|845326|845327|845328|845329|845330|845331|845332|928258|928259|928260|937925|937926|937927|937928|949915|949916|949917|958105|961974|964479|980482", + "upstreamId": "20733|20734|20736|20737|196286|196287|266578|272001|273741|466808|467667|468076|485862|490861|508752|513224|531010|531132|531154|531502|531503|531505|531509|531510|531512|571113|571114|571115|571342|574455|574456|624628|645875|645876|645877|645878|645879|645880|645881|645882|645883|645884|645885|645886|652955|715456|727177|727178|727179|740747|740748|744956|755838|755839|755842|771491|771492|771494|785559|785560|785562|816341|845324|845325|845326|845327|845328|845329|845330|845331|845332|928258|928259|928260|937925|937926|937927|937928|949915|949916|949917|958105|961974|964479|980482", "text": "Growth hormone insensitivity with immune dysregulation 1, autosomal recessive" }, { - "baseId": "20742|20743", + "upstreamId": "20742|20743", "text": "Focal segmental glomerulosclerosis 3" }, { - "baseId": "20745|20746|20747|20748|20750|20751|20752|33860|34280|34282|34283|34284|34285|34286|34288|34289|213653|226392|226393|227930|227931|227932|227933|410555|805031|917757|917758", + "upstreamId": "20745|20746|20747|20748|20750|20751|20752|33860|34280|34282|34283|34284|34285|34286|34288|34289|213653|226392|226393|227930|227931|227932|227933|410555|805031|917757|917758", "text": "Cold-induced sweating syndrome 1" }, { - "baseId": "20753|20754|20755|20756|204422", + "upstreamId": "20753|20754|20755|20756|204422", "text": "PULMONARY ALVEOLAR MICROLITHIASIS" }, { - "baseId": "20757|20758|20759|20760|20762|20763|20764|20765|20767", + "upstreamId": "20757|20758|20759|20760|20762|20763|20764|20765|20767", "text": "Cerebral cavernous malformations 1" }, { - "baseId": "20760|20767|252960|252961|252964|252965|252966|259875|259877|259880|264247|270303|290221|293317|303552|303557|303560|303561|303562|303566|303568|303570|306979|306988|306989|306996|306998|307003|307005|307010|307011|307013|307014|311871|311876|311877|311882|311883|311886|311887|311888|311891|311895|311896|311899|311904|311907|311910|311912|311913|311914|311917|311920|311926|311929|311930|311931|311942|311946|311949|311950|311954|311955|353642|359673|361189|418980|418981|418984|418989|418992|433658|441149|444174|456163|456165|456854|456856|457060|457061|457065|457570|457571|457572|457573|457577|457668|457669|457673|457675|458018|458021|458024|458026|458036|458038|481793|495222|512828|512829|513975|522652|523471|523473|553155|561160|561802|562247|562258|564478|564482|567215|567217|581340|581356|581369|581376|581382|581391|581396|581401|581408|636173|636437|636438|636439|636440|636441|636442|651698|678067|692328|692330|695372|711180|722719|744375|750827|766441|788820|819922|833915|833916|833917|833918|833919|833920|833921|833922|833923|833924|851163|851662|852382|898468|898469|898470|898471|898472|898473|898474|898475|898476|898477|898478|898479|898480|898481|898482|898483|898484|898485|898486|898487|898488|898489|898490|898491|898492|898493|898494|898495|898496|900410|900411|900412|919120|919121|919122|924932|934022|934023|934024|934025|945784|945785|955239|955240|955241|959869|960640|964294", + "upstreamId": "20760|20767|252960|252961|252964|252965|252966|259875|259877|259880|264247|270303|290221|293317|303552|303557|303560|303561|303562|303566|303568|303570|306979|306988|306989|306996|306998|307003|307005|307010|307011|307013|307014|311871|311876|311877|311882|311883|311886|311887|311888|311891|311895|311896|311899|311904|311907|311910|311912|311913|311914|311917|311920|311926|311929|311930|311931|311942|311946|311949|311950|311954|311955|353642|359673|361189|418980|418981|418984|418989|418992|433658|441149|444174|456163|456165|456854|456856|457060|457061|457065|457570|457571|457572|457573|457577|457668|457669|457673|457675|458018|458021|458024|458026|458036|458038|481793|495222|512828|512829|513975|522652|523471|523473|553155|561160|561802|562247|562258|564478|564482|567215|567217|581340|581356|581369|581376|581382|581391|581396|581401|581408|636173|636437|636438|636439|636440|636441|636442|651698|678067|692328|692330|695372|711180|722719|744375|750827|766441|788820|819922|833915|833916|833917|833918|833919|833920|833921|833922|833923|833924|851163|851662|852382|898468|898469|898470|898471|898472|898473|898474|898475|898476|898477|898478|898479|898480|898481|898482|898483|898484|898485|898486|898487|898488|898489|898490|898491|898492|898493|898494|898495|898496|900410|900411|900412|919120|919121|919122|924932|934022|934023|934024|934025|945784|945785|955239|955240|955241|959869|960640|964294", "text": "Cerebral cavernous malformation" }, { - "baseId": "20761", + "upstreamId": "20761", "text": "Hyperkeratotic cutaneous capillary-venous malformations associated with cerebral capillary malformations" }, { - "baseId": "20766", + "upstreamId": "20766", "text": "Cavernous malformations of CNS and retina" }, { - "baseId": "20768|20769|20769|20770|20771|20771|20772|20772|20775|20775|20776|20777|20778|20778|20779|48213|48213|48213|102552|105758|105759|105761|105763|105767|105772|105776|105776|105777|105778|105783|105792|105795|105798|105802|105803|105806|106486|152885|177057|177649|192603|192604|195794|213518|227208|237970|259643|269623|270116|271416|271821|271909|274234|274238|278321|278346|279448|279452|279468|279470|279529|279532|279540|279543|279544|279547|279548|359259|359284|361578|364061|405000|405002|413257|431564|431566|431567|431570|439631|447357|447613|511211|556722|557082|578340|609365|611502|619983|623792|627197|627198|627199|627200|627201|650540|690437|690438|696356|696357|696359|696361|706969|706970|706971|706972|718484|718486|731981|731983|745954|745955|745957|761434|761437|761438|761439|761440|761441|761442|761443|780413|780414|780415|780417|780418|780420|780422|780423|780430|780431|786971|789907|818891|818892|818893|818894|823108|823109|823110|823111|823112|823113|823114|823115|823116|823117|823118|823119|823120|823121|823122|823123|823124|823125|823126|823127|823128|823129|823130|823131|823132|823133|823134|823135|823136|823137|823138|823139|823140|823141|850953|850955|855867|855873|855889|858435|863227|921779|921780|921781|921782|921783|930205|930206|930207|930208|930209|930210|939783|939784|941618|941619|941620|941621|941622|941623|941624|941625|941626|941627|941628|941629|941630|941631|952181|952182|952183|952184|952185|952186|952187|952188|952189|952190|952191|952192|952193|952194|952195|952196|952197|952198|952199|952200|959535|959536|964096", + "upstreamId": "20768|20769|20769|20770|20771|20771|20772|20772|20775|20775|20776|20777|20778|20778|20779|48213|48213|48213|102552|105758|105759|105761|105763|105767|105772|105776|105776|105777|105778|105783|105792|105795|105798|105802|105803|105806|106486|152885|177057|177649|192603|192604|195794|213518|227208|237970|259643|269623|270116|271416|271821|271909|274234|274238|278321|278346|279448|279452|279468|279470|279529|279532|279540|279543|279544|279547|279548|359259|359284|361578|364061|405000|405002|413257|431564|431566|431567|431570|439631|447357|447613|511211|556722|557082|578340|609365|611502|619983|623792|627197|627198|627199|627200|627201|650540|690437|690438|696356|696357|696359|696361|706969|706970|706971|706972|718484|718486|731981|731983|745954|745955|745957|761434|761437|761438|761439|761440|761441|761442|761443|780413|780414|780415|780417|780418|780420|780422|780423|780430|780431|786971|789907|818891|818892|818893|818894|823108|823109|823110|823111|823112|823113|823114|823115|823116|823117|823118|823119|823120|823121|823122|823123|823124|823125|823126|823127|823128|823129|823130|823131|823132|823133|823134|823135|823136|823137|823138|823139|823140|823141|850953|850955|855867|855873|855889|858435|863227|921779|921780|921781|921782|921783|930205|930206|930207|930208|930209|930210|939783|939784|941618|941619|941620|941621|941622|941623|941624|941625|941626|941627|941628|941629|941630|941631|952181|952182|952183|952184|952185|952186|952187|952188|952189|952190|952191|952192|952193|952194|952195|952196|952197|952198|952199|952200|959535|959536|964096", "text": "Retinitis pigmentosa 12" }, { - "baseId": "20769|48213|102552|270116|431560|619982|619983", + "upstreamId": "20769|48213|102552|270116|431560|619982|619983", "text": "CRB1-Related Disorders" }, { - "baseId": "20769|20769|20771|20771|20772|20772|20773|20774|20775|20775|20777|20777|20778|20778|20779|48213|48213|48213|102552|102552|102553|105755|105758|105758|105759|105761|105761|105762|105763|105764|105765|105767|105767|105769|105771|105772|105772|105776|105776|105777|105777|105778|105780|105782|105783|105786|105787|105789|105791|105792|105793|105795|105795|105798|105802|105802|105803|105803|105806|105806|106486|106486|152885|152885|166165|177057|177057|177649|177649|192603|192603|192604|195794|227208|227208|237970|249592|259643|260774|269623|270116|271416|271821|271909|274234|274234|274238|278311|278320|278321|278321|278335|278346|278346|278348|278353|278354|278358|279441|279448|279448|279452|279452|279453|279462|279468|279468|279470|279470|279527|279528|279529|279529|279530|279532|279532|279539|279540|279540|279542|279543|279543|279544|279544|279547|279547|279548|279564|279572|359259|359284|361578|364061|364061|405000|405002|413257|413258|418814|431564|431566|431567|431568|431570|439631|447357|447613|498168|511211|513238|556722|557082|578336|578337|578338|578339|578340|578340|609365|611502|611502|619983|622989|622990|623792|623792|627197|627198|627199|627200|627200|627201|650540|690437|690438|696356|696357|696359|696361|696361|706969|706969|706970|706971|706971|706972|718484|718486|731981|731983|745954|745955|745957|761434|761437|761438|761439|761440|761441|761442|761443|780413|780414|780415|780417|780418|780420|780422|780423|780430|780431|786971|789907|789908|800423|800684|802118|818891|818892|818893|818894|823108|823109|823110|823111|823112|823113|823114|823115|823116|823117|823118|823119|823120|823121|823122|823123|823124|823125|823126|823127|823128|823129|823130|823131|823132|823132|823133|823134|823135|823136|823137|823138|823139|823140|823141|850953|850955|855862|855867|855873|855889|855891|858435|858885|863217|863218|863219|863220|863221|863222|863223|863224|863225|863226|863227|863227|863228|863229|863230|863231|863232|863233|863234|863235|863236|921779|921780|921781|921782|921783|930205|930206|930207|930208|930209|930210|939783|939784|941618|941619|941620|941621|941622|941623|941624|941625|941626|941627|941628|941629|941630|941631|952181|952182|952183|952184|952185|952186|952187|952188|952189|952190|952191|952192|952193|952194|952195|952196|952197|952198|952199|952200|952200|959535|959536|962195|962196|962197|962198|962199|962200|962201|962202|962203|962204|962205|962206|962207|962208|962209|962210|962211|962212|962213|962214|962215|962216|962217|962218|962219|962220|962221|962222|962223|962224|962225|962226|962227|962228|962239", + "upstreamId": "20769|20769|20771|20771|20772|20772|20773|20774|20775|20775|20777|20777|20778|20778|20779|48213|48213|48213|102552|102552|102553|105755|105758|105758|105759|105761|105761|105762|105763|105764|105765|105767|105767|105769|105771|105772|105772|105776|105776|105777|105777|105778|105780|105782|105783|105786|105787|105789|105791|105792|105793|105795|105795|105798|105802|105802|105803|105803|105806|105806|106486|106486|152885|152885|166165|177057|177057|177649|177649|192603|192603|192604|195794|227208|227208|237970|249592|259643|260774|269623|270116|271416|271821|271909|274234|274234|274238|278311|278320|278321|278321|278335|278346|278346|278348|278353|278354|278358|279441|279448|279448|279452|279452|279453|279462|279468|279468|279470|279470|279527|279528|279529|279529|279530|279532|279532|279539|279540|279540|279542|279543|279543|279544|279544|279547|279547|279548|279564|279572|359259|359284|361578|364061|364061|405000|405002|413257|413258|418814|431564|431566|431567|431568|431570|439631|447357|447613|498168|511211|513238|556722|557082|578336|578337|578338|578339|578340|578340|609365|611502|611502|619983|622989|622990|623792|623792|627197|627198|627199|627200|627200|627201|650540|690437|690438|696356|696357|696359|696361|696361|706969|706969|706970|706971|706971|706972|718484|718486|731981|731983|745954|745955|745957|761434|761437|761438|761439|761440|761441|761442|761443|780413|780414|780415|780417|780418|780420|780422|780423|780430|780431|786971|789907|789908|800423|800684|802118|818891|818892|818893|818894|823108|823109|823110|823111|823112|823113|823114|823115|823116|823117|823118|823119|823120|823121|823122|823123|823124|823125|823126|823127|823128|823129|823130|823131|823132|823132|823133|823134|823135|823136|823137|823138|823139|823140|823141|850953|850955|855862|855867|855873|855889|855891|858435|858885|863217|863218|863219|863220|863221|863222|863223|863224|863225|863226|863227|863227|863228|863229|863230|863231|863232|863233|863234|863235|863236|921779|921780|921781|921782|921783|930205|930206|930207|930208|930209|930210|939783|939784|941618|941619|941620|941621|941622|941623|941624|941625|941626|941627|941628|941629|941630|941631|952181|952182|952183|952184|952185|952186|952187|952188|952189|952190|952191|952192|952193|952194|952195|952196|952197|952198|952199|952200|952200|959535|959536|962195|962196|962197|962198|962199|962200|962201|962202|962203|962204|962205|962206|962207|962208|962209|962210|962211|962212|962213|962214|962215|962216|962217|962218|962219|962220|962221|962222|962223|962224|962225|962226|962227|962228|962239", "text": "Leber congenital amaurosis 8" }, { - "baseId": "20772|20777|48213|48213|102553|105758|105761|105762|105767|105776|105795|105803|106486|177649|192603|227208|249592|274234|278311|278313|278320|278321|278335|278346|278348|278353|278354|278358|279441|279448|279452|279453|279462|279468|279470|279527|279528|279529|279530|279532|279539|279540|279542|279543|279544|279547|279548|279564|279565|279572|361578|498168|696361|706969|706971|777027|850955|855891|863217|863218|863219|863220|863221|863222|863223|863224|863225|863226|863227|863228|863229|863230|863231|863232|863233|863234|863235|863236|918584|918585|918586|918587|918588", + "upstreamId": "20772|20777|48213|48213|102553|105758|105761|105762|105767|105776|105795|105803|106486|177649|192603|227208|249592|274234|278311|278313|278320|278321|278335|278346|278348|278353|278354|278358|279441|279448|279452|279453|279462|279468|279470|279527|279528|279529|279530|279532|279539|279540|279542|279543|279544|279547|279548|279564|279565|279572|361578|498168|696361|706969|706971|777027|850955|855891|863217|863218|863219|863220|863221|863222|863223|863224|863225|863226|863227|863228|863229|863230|863231|863232|863233|863234|863235|863236|918584|918585|918586|918587|918588", "text": "Pigmented paravenous chorioretinal atrophy" }, { - "baseId": "20778|76480|622989|622990|962958", + "upstreamId": "20778|76480|622989|622990|962958", "text": "Early-onset retinal dystrophy" }, { - "baseId": "20780|59436|226728|236972|237070|264778|337543|337551|337552|337555|337559|337560|337568|337570|337575|337586|337588|337590|337594|337596|337597|337599|337600|337602|337605|347118|347123|347125|347128|347129|347133|347139|347144|347145|347152|347153|347156|347161|347162|347165|347166|347172|347176|347177|347180|347184|347188|351151|351156|351157|351161|351162|351163|351164|351169|351170|351173|351174|351177|351179|351181|351182|351183|351184|351187|351188|351191|351192|351193|352155|352156|352157|352170|352173|352174|352175|352176|352189|352190|352191|352193|352195|352197|352208|352210|352211|352212|352213|352214|352215|486775|742770|890881|890882|890883|890884|890885|890886|890887|890888|890889|890890|890891|890892|890893|890894|890895|890896|890897|890898|890899|890900|890901|890902|890903|890904|890905|890906|890907|890908|890909|890910|890911|890912|890913|890914|890915|890916|890917|890918|890919|890920|890921|890922|890923|890924|890925|890926|890927|890928|890929|890930|891806|891807|891808|891809|891810", + "upstreamId": "20780|59436|226728|236972|237070|264778|337543|337551|337552|337555|337559|337560|337568|337570|337575|337586|337588|337590|337594|337596|337597|337599|337600|337602|337605|347118|347123|347125|347128|347129|347133|347139|347144|347145|347152|347153|347156|347161|347162|347165|347166|347172|347176|347177|347180|347184|347188|351151|351156|351157|351161|351162|351163|351164|351169|351170|351173|351174|351177|351179|351181|351182|351183|351184|351187|351188|351191|351192|351193|352155|352156|352157|352170|352173|352174|352175|352176|352189|352190|352191|352193|352195|352197|352208|352210|352211|352212|352213|352214|352215|486775|742770|890881|890882|890883|890884|890885|890886|890887|890888|890889|890890|890891|890892|890893|890894|890895|890896|890897|890898|890899|890900|890901|890902|890903|890904|890905|890906|890907|890908|890909|890910|890911|890912|890913|890914|890915|890916|890917|890918|890919|890920|890921|890922|890923|890924|890925|890926|890927|890928|890929|890930|891806|891807|891808|891809|891810", "text": "CEDNIK syndrome" }, { - "baseId": "20781|20782|20783|20784|20785|20786|20787|672074|790843|790844|966796", + "upstreamId": "20781|20782|20783|20784|20785|20786|20787|672074|790843|790844|966796", "text": "Ichthyosis prematurity syndrome" }, { - "baseId": "20789", + "upstreamId": "20789", "text": "SLC22A4 POLYMORPHISM" }, { - "baseId": "20790|20791|20792|20793|106512|106513|279937|280263|280267|281549|281569|281575|281577|281731|281732|513403|685091|864085|865153|980903", + "upstreamId": "20790|20791|20792|20793|106512|106513|279937|280263|280267|281549|281569|281575|281577|281731|281732|513403|685091|864085|865153|980903", "text": "Diamond-Blackfan anemia 7" }, { - "baseId": "20790|20793|21218|21353|21354|22285|38387|138201|142629|238349|238350|238351|238352|238353|239901|239902|240848|243028|243344|243345|257848|259941|265986|279937|281549|281569|281575|283380|286176|289621|299917|302550|302559|302560|302561|306938|306941|306942|311239|311253|316666|322671|322683|322688|323397|323402|333684|333685|333686|349024|349036|353154|353494|353570|353770|364821|391375|391418|391435|391438|395711|397422|401529|403743|404264|404581|429129|429130|430809|447927|448377|448444|455562|455708|467380|467887|468836|468838|470262|471606|471610|472161|514914|515586|515657|515668|515705|516100|533129|535006|535011|535177|535178|540580|540581|556497|557170|557382|557384|557386|557429|558042|569420|573141|573452|574743|575425|575426|627541|628280|628281|628282|628283|628284|628285|634868|634869|639180|639181|647075|648142|648143|650088|650089|650090|650544|650701|653053|653530|653617|684197|685017|685018|685019|685091|685460|685490|685644|688879|689519|689521|689522|689823|694432|695909|706246|818936|819687|820242|821508|823641|823642|824435|824436|824437|831868|847728|847729|850105|850106|850107|850108|850762|851324|852873|922170|924343|928658|928980|929753|929754|929755|929756|930385|930386|930669|930670|938702|938703|938704|941820|942108|942109|950806|950807|952530|954430|959312|960386|969273|969274|974532", + "upstreamId": "20790|20793|21218|21353|21354|22285|38387|138201|142629|238349|238350|238351|238352|238353|239901|239902|240848|243028|243344|243345|257848|259941|265986|279937|281549|281569|281575|283380|286176|289621|299917|302550|302559|302560|302561|306938|306941|306942|311239|311253|316666|322671|322683|322688|323397|323402|333684|333685|333686|349024|349036|353154|353494|353570|353770|364821|391375|391418|391435|391438|395711|397422|401529|403743|404264|404581|429129|429130|430809|447927|448377|448444|455562|455708|467380|467887|468836|468838|470262|471606|471610|472161|514914|515586|515657|515668|515705|516100|533129|535006|535011|535177|535178|540580|540581|556497|557170|557382|557384|557386|557429|558042|569420|573141|573452|574743|575425|575426|627541|628280|628281|628282|628283|628284|628285|634868|634869|639180|639181|647075|648142|648143|650088|650089|650090|650544|650701|653053|653530|653617|684197|685017|685018|685019|685091|685460|685490|685644|688879|689519|689521|689522|689823|694432|695909|706246|818936|819687|820242|821508|823641|823642|824435|824436|824437|831868|847728|847729|850105|850106|850107|850108|850762|851324|852873|922170|924343|928658|928980|929753|929754|929755|929756|930385|930386|930669|930670|938702|938703|938704|941820|942108|942109|950806|950807|952530|954430|959312|960386|969273|969274|974532", "text": "Diamond-Blackfan anemia" }, { - "baseId": "20794|20795|20796|20797|20798|166239", + "upstreamId": "20794|20795|20796|20797|20798|166239", "text": "Hypogonadotropic hypogonadism 8 without anosmia" }, { - "baseId": "20798|20799|788933", + "upstreamId": "20798|20799|788933", "text": "Precocious puberty, central, 1" }, { - "baseId": "20800|20801|20802|20803|20804|20805|20806|40212|46931|46932|313558|313576|313577|313583|313584|313588|313597|313615|313617|319779|319789|319798|325939|325940|325946|325957|325977|325983|326890|326893|326919|326932|326944|526015|526096|526168|564538|565583|565587|570423|620831|639857|639858|652168|652521|791122|850651|850652|850654|850655|868687|929864|939732|939733|951945|951946", + "upstreamId": "20800|20801|20802|20803|20804|20805|20806|40212|46931|46932|313558|313576|313577|313583|313584|313588|313597|313615|313617|319779|319789|319798|325939|325940|325946|325957|325977|325983|326890|326893|326919|326932|326944|526015|526096|526168|564538|565583|565587|570423|620831|639857|639858|652168|652521|791122|850651|850652|850654|850655|868687|929864|939732|939733|951945|951946", "text": "Hyperekplexia 3" }, { - "baseId": "20807|20808|20809|20810|20811|20812|20813|20814|20815|20816|20817|20818|31810|100283|100284|194386|195323|252985|252986|252987|265352|270083|271457|303658|303661|303663|307107|307108|307109|312035|312036|312037|312040|312045|312048|312055|312056|361528|384418|407282|407283|441161|441163|441164|456169|457102|457105|457115|457117|457677|457684|457686|457737|458100|458105|458108|458112|480429|481462|522658|522936|522950|523154|523160|523162|523385|523389|523400|523403|523408|523499|523500|523501|523505|523506|523510|523512|561162|561839|561842|561845|562310|562311|564526|564528|564539|567270|567277|567285|567287|567288|612148|612792|636473|636474|636475|636476|636477|636478|636479|636480|636481|636482|636483|636484|636485|636486|636487|636488|636489|636490|636491|651737|683948|683949|687139|687141|692333|692334|692335|759668|766486|787530|790764|796098|798593|798594|798595|801548|833981|833982|833983|833984|833985|833986|833987|833988|833989|833990|833991|833992|833993|833994|833995|833996|833997|851664|898556|919128|924952|924953|924954|924955|924956|924957|924958|924959|924960|924961|934045|934046|934047|940090|945803|945804|945805|955262|955263|955264|964914", + "upstreamId": "20807|20808|20809|20810|20811|20812|20813|20814|20815|20816|20817|20818|31810|100283|100284|194386|195323|252985|252986|252987|265352|270083|271457|303658|303661|303663|307107|307108|307109|312035|312036|312037|312040|312045|312048|312055|312056|361528|384418|407282|407283|441161|441163|441164|456169|457102|457105|457115|457117|457677|457684|457686|457737|458100|458105|458108|458112|480429|481462|522658|522936|522950|523154|523160|523162|523385|523389|523400|523403|523408|523499|523500|523501|523505|523506|523510|523512|561162|561839|561842|561845|562310|562311|564526|564528|564539|567270|567277|567285|567287|567288|612148|612792|636473|636474|636475|636476|636477|636478|636479|636480|636481|636482|636483|636484|636485|636486|636487|636488|636489|636490|636491|651737|683948|683949|687139|687141|692333|692334|692335|759668|766486|787530|790764|796098|798593|798594|798595|801548|833981|833982|833983|833984|833985|833986|833987|833988|833989|833990|833991|833992|833993|833994|833995|833996|833997|851664|898556|919128|924952|924953|924954|924955|924956|924957|924958|924959|924960|924961|934045|934046|934047|940090|945803|945804|945805|955262|955263|955264|964914", "text": "Myoclonic dystonia" }, { - "baseId": "20819|20820|20821|20822|20823|20824|20825|20826|20827|20828|20829|20830|20831|20832|33154|33155|33156|33157|33158|33159|33160|33161|45755|69569|171225|205188|209345|227246|227403|244022|268512|269547|272434|286469|286471|286473|286482|286483|286486|286487|287133|287135|287139|287161|287162|287165|287166|287167|287168|287176|287178|289505|289508|289513|289516|289518|289519|289520|289926|289928|289929|289935|289939|289940|289946|289949|289950|289951|289953|333045|333055|333057|333070|333073|333077|333082|333085|333089|343164|343169|343170|343175|343176|343180|343185|343190|343191|343193|348548|348551|348552|348553|348555|348557|348558|349632|349633|349634|349636|349637|349638|349639|349641|349642|349643|362173|389208|424992|493438|516320|518239|539087|539126|550747|553488|560637|619928|620632|630008|630009|650756|708286|708287|708288|708289|708290|716354|719882|719883|733483|733484|733485|733486|733487|741765|747648|747649|759122|792540|792548|818336|819169|819170|826488|826489|880254|880255|880256|880257|880258|880259|880260|880261|880262|880263|880264|880265|880266|880267|880268|880269|880270|885004|885005|885006|885007|885008|885009|885010|885011|885012|885013|885014|885015|885016|885017|885018|885019|885020|885021|885022|885023|885024|885025|885026|885027|885028|885029|885030|885031|885032|887371|887372|887373|887374|904185|919847|922775|922776|931409|940479|942924|942925|942926|962800|966574|966575|970741|980389", + "upstreamId": "20819|20820|20821|20822|20823|20824|20825|20826|20827|20828|20829|20830|20831|20832|33154|33155|33156|33157|33158|33159|33160|33161|45755|69569|171225|205188|209345|227246|227403|244022|268512|269547|272434|286469|286471|286473|286482|286483|286486|286487|287133|287135|287139|287161|287162|287165|287166|287167|287168|287176|287178|289505|289508|289513|289516|289518|289519|289520|289926|289928|289929|289935|289939|289940|289946|289949|289950|289951|289953|333045|333055|333057|333070|333073|333077|333082|333085|333089|343164|343169|343170|343175|343176|343180|343185|343190|343191|343193|348548|348551|348552|348553|348555|348557|348558|349632|349633|349634|349636|349637|349638|349639|349641|349642|349643|362173|389208|424992|493438|516320|518239|539087|539126|550747|553488|560637|619928|620632|630008|630009|650756|708286|708287|708288|708289|708290|716354|719882|719883|733483|733484|733485|733486|733487|741765|747648|747649|759122|792540|792548|818336|819169|819170|826488|826489|880254|880255|880256|880257|880258|880259|880260|880261|880262|880263|880264|880265|880266|880267|880268|880269|880270|885004|885005|885006|885007|885008|885009|885010|885011|885012|885013|885014|885015|885016|885017|885018|885019|885020|885021|885022|885023|885024|885025|885026|885027|885028|885029|885030|885031|885032|887371|887372|887373|887374|904185|919847|922775|922776|931409|940479|942924|942925|942926|962800|966574|966575|970741|980389", "text": "Cystinuria" }, { - "baseId": "20837|20838|20839|20840|20841|20842|20843|20844|20845|20846|20847|20848|20849|20850|20851|20852|20853|20854|20856|20857|20858|20859|20860|79700|79703|79706|79711|79714|227331|253373|253376|253377|253379|253380|253381|253382|253383|253384|253385|253386|253388|253389|253390|253391|253392|253395|253396|253397|253399|253400|253402|307292|307293|307294|307299|307301|307304|307308|307309|307311|311534|311540|311542|311544|311565|311566|311601|311604|311606|311608|311615|317068|317069|317083|317091|317093|317096|317098|317099|317100|317103|317529|317532|317533|317535|317537|317539|317546|317554|389201|432301|432349|444392|489471|550300|620323|620324|620810|654534|700873|723417|736981|736983|736984|790858|901331|901332|901333|901334|901335|901336|901337|901338|901339|901340|901341|901342|901343|901344|901345|901347|901348|901349|901350|901351|901353|901354|901355|901356|901357|901358|901359|901361|901362|901363|901364|901365|901366|901367|901368|901369|901370|901371|901372|901373|901374|901375|901376|901377|901378|901379|903335|903336|903337|903338|903339", + "upstreamId": "20837|20838|20839|20840|20841|20842|20843|20844|20845|20846|20847|20848|20849|20850|20851|20852|20853|20854|20856|20857|20858|20859|20860|79700|79703|79706|79711|79714|227331|253373|253376|253377|253379|253380|253381|253382|253383|253384|253385|253386|253388|253389|253390|253391|253392|253395|253396|253397|253399|253400|253402|307292|307293|307294|307299|307301|307304|307308|307309|307311|311534|311540|311542|311544|311565|311566|311601|311604|311606|311608|311615|317068|317069|317083|317091|317093|317096|317098|317099|317100|317103|317529|317532|317533|317535|317537|317539|317546|317554|389201|432301|432349|444392|489471|550300|620323|620324|620810|654534|700873|723417|736981|736983|736984|790858|901331|901332|901333|901334|901335|901336|901337|901338|901339|901340|901341|901342|901343|901344|901345|901347|901348|901349|901350|901351|901353|901354|901355|901356|901357|901358|901359|901361|901362|901363|901364|901365|901366|901367|901368|901369|901370|901371|901372|901373|901374|901375|901376|901377|901378|901379|903335|903336|903337|903338|903339", "text": "Upshaw-Schulman syndrome" }, { - "baseId": "20861|20862|273931", + "upstreamId": "20861|20862|273931", "text": "Pelviscapular dysplasia" }, { - "baseId": "20863|22491|22492|22493|23266|23267|23575|23577|23578|27410|27621|27622|36173|36186|39106|150842|151001|151068|151879|151912|151967|181036|181065|181068|181081|185427|185438|222800|292721|292762|292764|292770|292771|294114|294120|297568|297580|297641|297667|403225|410379|468948|468989|618896|919817|920397", + "upstreamId": "20863|22491|22492|22493|23266|23267|23575|23577|23578|27410|27621|27622|36173|36186|39106|150842|151001|151068|151879|151912|151967|181036|181065|181068|181081|185427|185438|222800|292721|292762|292764|292770|292771|294114|294120|297568|297580|297641|297667|403225|410379|468948|468989|618896|919817|920397", "text": "Carcinoma of pancreas" }, { - "baseId": "20865|20866|20867|20868|20869|20870|20871|20872|141196|141197|141198|141199|169273|169274|169275|169276|169277|169278|169279|169280|169281|169282|169283|169284|169285|169286|169287|169288|169289|169290|169292|169293|169294|169294|169295|169296|169297|169298|169300|169301|169302|169303|187126|191554|208292|208293|255846|255849|255850|260119|271363|271431|271506|360182|413442|422101|429817|429818|441917|489311|506394|513635|536910|577559|577560|577560|587647|608863|620935|714996|740281|740282|755282|755284|755285|755287|770983|770986|770987|770989|776186|785329|785330|785334|785338|785339|875607|875608|875609|875610|875611|875612|875613|875614|875615|875616|875617|875618|875619|875620|875621|875622|875623|875624|875625|875626|875627|875628|875629|875630|875631|875632|875633|875634|875635|875636|875637|875638|875639|875640|875641|875642|875643|875644|875645|875646|875647|875648|875649|875650|875651|875652|875653|875654|875655|875656|875657|875658|875659|875660|875661|875662|875663|875664|875665|875666|875667|875668|875669|875670|875671|875672|875673|875674|875675|875676|875677|875678|875679|876690|876691|965998|972795|976666|979808|979809", + "upstreamId": "20865|20866|20867|20868|20869|20870|20871|20872|141196|141197|141198|141199|169273|169274|169275|169276|169277|169278|169279|169280|169281|169282|169283|169284|169285|169286|169287|169288|169289|169290|169292|169293|169294|169294|169295|169296|169297|169298|169300|169301|169302|169303|187126|191554|208292|208293|255846|255849|255850|260119|271363|271431|271506|360182|413442|422101|429817|429818|441917|489311|506394|513635|536910|577559|577560|577560|587647|608863|620935|714996|740281|740282|755282|755284|755285|755287|770983|770986|770987|770989|776186|785329|785330|785334|785338|785339|875607|875608|875609|875610|875611|875612|875613|875614|875615|875616|875617|875618|875619|875620|875621|875622|875623|875624|875625|875626|875627|875628|875629|875630|875631|875632|875633|875634|875635|875636|875637|875638|875639|875640|875641|875642|875643|875644|875645|875646|875647|875648|875649|875650|875651|875652|875653|875654|875655|875656|875657|875658|875659|875660|875661|875662|875663|875664|875665|875666|875667|875668|875669|875670|875671|875672|875673|875674|875675|875676|875677|875678|875679|876690|876691|965998|972795|976666|979808|979809", "text": "Polymicrogyria, bilateral frontoparietal" }, { - "baseId": "20873|20874|20875|20876|20877|39364|101336|101337|101338|101339|101340|135129|135130|177357|177851|195708|195709|251716|251717|251720|265307|265425|266359|267501|270431|270834|272640|273196|273196|274719|295480|295481|295486|295488|295488|297264|297267|297276|301110|301111|301113|301114|301267|425620|454519|454535|455066|455067|455068|455070|455374|455378|455385|491123|520740|520744|520993|521137|521138|521191|560147|562804|562806|564740|564746|587282|589437|589543|633219|633220|633221|633222|633223|633224|633225|633226|633227|779071|787461|830206|830207|830208|830209|830210|830211|830212|851911|893018|893020|893021|893023|893024|893025|893026|893027|896036|923838|923839|932686|944368|944369|944370|944371|954014", + "upstreamId": "20873|20874|20875|20876|20877|39364|101336|101337|101338|101339|101340|135129|135130|177357|177851|195708|195709|251716|251717|251720|265307|265425|266359|267501|270431|270834|272640|273196|273196|274719|295480|295481|295486|295488|295488|297264|297267|297276|301110|301111|301113|301114|301267|425620|454519|454535|455066|455067|455068|455070|455374|455378|455385|491123|520740|520744|520993|521137|521138|521191|560147|562804|562806|564740|564746|587282|589437|589543|633219|633220|633221|633222|633223|633224|633225|633226|633227|779071|787461|830206|830207|830208|830209|830210|830211|830212|851911|893018|893020|893021|893023|893024|893025|893026|893027|896036|923838|923839|932686|944368|944369|944370|944371|954014", "text": "Myofibrillar myopathy 3" }, { - "baseId": "20874|136760|361048", + "upstreamId": "20874|136760|361048", "text": "Progressive distal muscle weakness" }, { - "baseId": "20874|206864|360820|514132", + "upstreamId": "20874|206864|360820|514132", "text": "Progressive proximal muscle weakness" }, { - "baseId": "20878|101337|101338|101339|101340|135129|135130|177852|195708|195709|265307|273196|273196|295480|295481|295485|295486|295488|295488|297261|297264|297267|297276|301110|301111|301112|301113|301114|301267|301277|511554|589437|893018|893019|893020|893021|893022|893023|893024|893025|893026|893027|896036", + "upstreamId": "20878|101337|101338|101339|101340|135129|135130|177852|195708|195709|265307|273196|273196|295480|295481|295485|295486|295488|295488|297261|297264|297267|297276|301110|301111|301112|301113|301114|301267|301277|511554|589437|893018|893019|893020|893021|893022|893023|893024|893025|893026|893027|896036", "text": "Spheroid body myopathy" }, { - "baseId": "20879|20880|20881|20882|20883|20884|20885|20886|99346|195268|227285|512904", + "upstreamId": "20879|20880|20881|20882|20883|20884|20885|20886|99346|195268|227285|512904", "text": "Congenital stationary night blindness, type 1B" }, { - "baseId": "20888|20891|20892|20896", + "upstreamId": "20888|20891|20892|20896", "text": "Ectodermal dysplasia 10a, hypohidrotic/hair/tooth type, autosomal dominant" }, { - "baseId": "20888|28534|28535|28535|28536|28539|28540|28541|28541|28542|28542|28543|28544|28544|28546|28548|28549|28550|28551|28552|28552|28552|28554|28555|34161|34162|34163|34164|34165|34168|34170|34172|76573|76573|135434|135435|135436|135437|135438|135439|135440|135442|135443|135444|135445|142446|142447|142448|142449|142450|142451|142453|142454|142455|142456|142457|142458|142459|142460|142461|142462|142463|142463|142465|142466|142468|142469|142470|142472|142473|142474|142475|142476|142477|142478|142479|142480|142481|142482|142483|142484|177971|177972|177973|190806|190806|191539|191896|192001|192338|192340|192343|192648|192752|193515|193515|195312|196240|202901|202902|202903|202906|202907|202908|202909|202914|202915|202916|202920|202922|202922|202925|202926|202927|202929|202931|202932|202934|202937|202938|202938|202939|202941|202942|202943|202946|202947|202949|202949|202951|202955|202956|202957|202959|202960|202961|202966|202968|202969|202970|202975|202977|202978|202979|202980|202981|202983|202985|202988|202989|202990|202990|202992|202993|202994|202995|202996|203003|203007|203011|203012|203013|203013|203013|203014|203016|203019|203021|203022|203023|203024|203024|203028|203030|203030|203031|203032|203033|203034|203034|203035|203036|203037|203039|203043|203044|203045|203046|203047|203048|203050|203050|203056|203057|203058|203059|203060|203061|203062|203063|208227|215502|242144|242144|242145|255390|255391|264590|264592|264637|264639|264743|264890|264890|266312|269738|272012|272696|272935|273477|275530|323492|323499|323514|333236|340031|340038|341443|341447|341451|341453|360118|360211|360215|361412|373786|373792|373798|373799|373804|374455|374458|374468|374471|374496|374506|374507|374510|374832|374842|374859|374874|374888|376741|376744|376748|376751|376763|376765|376771|376779|376788|376820|376833|376835|376837|400421|400422|400425|400549|400550|400552|400559|400560|400899|400903|400909|400912|400914|401238|401242|409368|409370|409372|409376|409377|409383|409384|409386|409387|409388|414709|415454|422056|422057|422058|422060|426128|426129|426132|426133|426134|426136|426137|426138|426139|429733|429734|429735|437992|441759|441760|441763|445449|445458|445460|445461|445463|464568|464578|464586|464588|464592|464597|464598|464602|464603|464606|464607|464613|464614|465229|465231|465233|465236|465243|465352|465354|465356|465357|465368|465371|465372|465378|465379|465390|465477|465482|465483|465486|465489|482080|489022|489157|491089|491497|492779|493325|493939|505039|505051|505283|505482|505889|528579|529106|529113|529121|529122|529124|529127|529131|529139|529683|529685|529691|539063|550024|550027|553152|567328|567330|567335|567336|569179|569185|569189|569190|569192|569200|569207|569209|569210|569643|569644|569647|569649|569650|573570|573571|573573|573575|573580|573581|576169|577404|577410|577412|577413|577414|579960|580019|580246|584487|584578|585053|585279|585408|585729|585901|586525|586908|587961|588774|588869|589197|610699|610700|610701|610702|610703|610704|610705|610706|610707|610708|610709|610710|610711|610712|610713|610714|610715|610716|610717|610718|610719|610720|610721|610722|610723|610724|610725|610726|610727|610728|610729|610730|610731|610732|610733|610734|610735|610736|610737|610738|610739|610740|610741|610743|610744|610745|610746|610747|610748|610749|610750|610751|610752|610753|610754|610755|610756|610757|610758|610759|610760|610761|610762|610763|610764|610765|610766|610767|610768|610769|610770|610771|610772|610773|610774|610775|610776|610777|610778|610779|610780|610781|610782|610783|610784|610785|610786|610787|610788|610789|610790|610791|610792|610793|610794|610795|610796|610797|610798|610799|610800|610801|610802|610803|610804|610805|610806|610807|610808|610809|610810|610811|610812|610813|610814|610815|610816|610817|610818|610819|610820|610821|610822|610823|610824|610825|610826|610827|610828|610829|610830|610831|610832|610833|610834|610835|610836|610837|610838|610839|610840|610841|610842|610843|610844|610845|610846|610847|610848|610849|610850|610851|610852|610853|610854|610855|610856|610857|610858|610859|610860|610861|610862|610863|610864|610865|610866|610867|610868|610869|610870|610871|610872|610873|610874|610875|610876|610877|610878|610879|610880|610881|610882|610883|610884|610885|610886|610887|610888|610889|610890|610891|610892|610893|610894|610895|610897|614404|643597|643598|643599|643600|643601|643602|643603|643604|643605|643606|643607|643608|643609|643610|643611|643612|643613|643614|643615|643616|643617|643618|643619|652438|652575|652587|682359|682360|682362|682363|685410|688498|770398|770402|770404|776076|785053|791499|801729|820741|842772|842773|842774|842775|842776|842777|842778|842779|842780|842781|842782|842783|842784|842785|842786|842787|842788|842789|842790|842791|842792|842793|842794|842795|842796|852075|852610|858571|874262|927446|927447|927448|927449|927450|927451|927452|927453|927454|927455|927456|937097|937098|937099|937100|937101|937102|937103|937104|937105|937106|937107|937108|937109|937110|937111|937112|937113|940333|941097|941098|949047|949048|949049|949050|949051|949052|949053|949054|949055|949056|957529|957530|957531|957532|957533|957534|957535|957536|957537|960124|971028|971029", + "upstreamId": "20888|28534|28535|28535|28536|28539|28540|28541|28541|28542|28542|28543|28544|28544|28546|28548|28549|28550|28551|28552|28552|28552|28554|28555|34161|34162|34163|34164|34165|34168|34170|34172|76573|76573|135434|135435|135436|135437|135438|135439|135440|135442|135443|135444|135445|142446|142447|142448|142449|142450|142451|142453|142454|142455|142456|142457|142458|142459|142460|142461|142462|142463|142463|142465|142466|142468|142469|142470|142472|142473|142474|142475|142476|142477|142478|142479|142480|142481|142482|142483|142484|177971|177972|177973|190806|190806|191539|191896|192001|192338|192340|192343|192648|192752|193515|193515|195312|196240|202901|202902|202903|202906|202907|202908|202909|202914|202915|202916|202920|202922|202922|202925|202926|202927|202929|202931|202932|202934|202937|202938|202938|202939|202941|202942|202943|202946|202947|202949|202949|202951|202955|202956|202957|202959|202960|202961|202966|202968|202969|202970|202975|202977|202978|202979|202980|202981|202983|202985|202988|202989|202990|202990|202992|202993|202994|202995|202996|203003|203007|203011|203012|203013|203013|203013|203014|203016|203019|203021|203022|203023|203024|203024|203028|203030|203030|203031|203032|203033|203034|203034|203035|203036|203037|203039|203043|203044|203045|203046|203047|203048|203050|203050|203056|203057|203058|203059|203060|203061|203062|203063|208227|215502|242144|242144|242145|255390|255391|264590|264592|264637|264639|264743|264890|264890|266312|269738|272012|272696|272935|273477|275530|323492|323499|323514|333236|340031|340038|341443|341447|341451|341453|360118|360211|360215|361412|373786|373792|373798|373799|373804|374455|374458|374468|374471|374496|374506|374507|374510|374832|374842|374859|374874|374888|376741|376744|376748|376751|376763|376765|376771|376779|376788|376820|376833|376835|376837|400421|400422|400425|400549|400550|400552|400559|400560|400899|400903|400909|400912|400914|401238|401242|409368|409370|409372|409376|409377|409383|409384|409386|409387|409388|414709|415454|422056|422057|422058|422060|426128|426129|426132|426133|426134|426136|426137|426138|426139|429733|429734|429735|437992|441759|441760|441763|445449|445458|445460|445461|445463|464568|464578|464586|464588|464592|464597|464598|464602|464603|464606|464607|464613|464614|465229|465231|465233|465236|465243|465352|465354|465356|465357|465368|465371|465372|465378|465379|465390|465477|465482|465483|465486|465489|482080|489022|489157|491089|491497|492779|493325|493939|505039|505051|505283|505482|505889|528579|529106|529113|529121|529122|529124|529127|529131|529139|529683|529685|529691|539063|550024|550027|553152|567328|567330|567335|567336|569179|569185|569189|569190|569192|569200|569207|569209|569210|569643|569644|569647|569649|569650|573570|573571|573573|573575|573580|573581|576169|577404|577410|577412|577413|577414|579960|580019|580246|584487|584578|585053|585279|585408|585729|585901|586525|586908|587961|588774|588869|589197|610699|610700|610701|610702|610703|610704|610705|610706|610707|610708|610709|610710|610711|610712|610713|610714|610715|610716|610717|610718|610719|610720|610721|610722|610723|610724|610725|610726|610727|610728|610729|610730|610731|610732|610733|610734|610735|610736|610737|610738|610739|610740|610741|610743|610744|610745|610746|610747|610748|610749|610750|610751|610752|610753|610754|610755|610756|610757|610758|610759|610760|610761|610762|610763|610764|610765|610766|610767|610768|610769|610770|610771|610772|610773|610774|610775|610776|610777|610778|610779|610780|610781|610782|610783|610784|610785|610786|610787|610788|610789|610790|610791|610792|610793|610794|610795|610796|610797|610798|610799|610800|610801|610802|610803|610804|610805|610806|610807|610808|610809|610810|610811|610812|610813|610814|610815|610816|610817|610818|610819|610820|610821|610822|610823|610824|610825|610826|610827|610828|610829|610830|610831|610832|610833|610834|610835|610836|610837|610838|610839|610840|610841|610842|610843|610844|610845|610846|610847|610848|610849|610850|610851|610852|610853|610854|610855|610856|610857|610858|610859|610860|610861|610862|610863|610864|610865|610866|610867|610868|610869|610870|610871|610872|610873|610874|610875|610876|610877|610878|610879|610880|610881|610882|610883|610884|610885|610886|610887|610888|610889|610890|610891|610892|610893|610894|610895|610897|614404|643597|643598|643599|643600|643601|643602|643603|643604|643605|643606|643607|643608|643609|643610|643611|643612|643613|643614|643615|643616|643617|643618|643619|652438|652575|652587|682359|682360|682362|682363|685410|688498|770398|770402|770404|776076|785053|791499|801729|820741|842772|842773|842774|842775|842776|842777|842778|842779|842780|842781|842782|842783|842784|842785|842786|842787|842788|842789|842790|842791|842792|842793|842794|842795|842796|852075|852610|858571|874262|927446|927447|927448|927449|927450|927451|927452|927453|927454|927455|927456|937097|937098|937099|937100|937101|937102|937103|937104|937105|937106|937107|937108|937109|937110|937111|937112|937113|940333|941097|941098|949047|949048|949049|949050|949051|949052|949053|949054|949055|949056|957529|957530|957531|957532|957533|957534|957535|957536|957537|960124|971028|971029", "text": "Progressive sclerosing poliodystrophy" }, { - "baseId": "20888|28535|28535|28541|28541|28542|28542|28544|28544|28545|28546|28552|28552|28554|28555|76573|142453|142463|190806|193515|202922|202938|202949|202990|203013|203013|203024|203030|203034|203050|203057|242144|264890|513353|539063|553152|576169|614404|801729", + "upstreamId": "20888|28535|28535|28541|28541|28542|28542|28544|28544|28545|28546|28552|28552|28554|28555|76573|142453|142463|190806|193515|202922|202938|202949|202990|203013|203013|203024|203030|203034|203050|203057|242144|264890|513353|539063|553152|576169|614404|801729", "text": "Mitochondrial DNA depletion syndrome 4B, MNGIE type" }, { - "baseId": "20891|20897|214080|250081|250084|448754|918179|918180", + "upstreamId": "20891|20897|214080|250081|250084|448754|918179|918180", "text": "Non-syndromic oligodontia" }, { - "baseId": "20897", + "upstreamId": "20897", "text": "Hair morphology 1, hair thickness" }, { - "baseId": "20897|165611|165614|165619|172936|250083|250084|281511|281513|281518|281520|281521|281522|281529|281533|281537|281539|282145|282146|282147|282150|282152|282182|282184|282199|282214|282216|282223|283512|283515|283516|283517|283525|283530|283531|283532|283546|283549|283550|283551|283629|283642|283646|283656|283657|283659|283660|283667|283675|353535|690703|880825", + "upstreamId": "20897|165611|165614|165619|172936|250083|250084|281511|281513|281518|281520|281521|281522|281529|281533|281537|281539|282145|282146|282147|282150|282152|282182|282184|282199|282214|282216|282223|283512|283515|283516|283517|283525|283530|283531|283532|283546|283549|283550|283551|283629|283642|283646|283656|283657|283659|283660|283667|283675|353535|690703|880825", "text": "Hypohidrotic Ectodermal Dysplasia, Dominant" }, { - "baseId": "20900|24081", + "upstreamId": "20900|24081", "text": "Hypercholesterolemia, susceptibility to" }, { - "baseId": "20902|20903|20904|20905|330271|330273|330277|330279|330287|330290|330297|330300|330301|330303|330306|330309|330311|330312|330319|330323|340477|340479|340485|340486|340489|340499|340509|340515|340518|340520|340522|340524|340528|340530|340531|340535|340537|340544|340545|340549|346200|346201|346203|346207|346209|346216|346218|346219|346220|346221|346230|346231|346232|346241|346242|346243|346245|346246|346255|346259|347507|347510|347513|347514|347521|347526|347529|347534|347537|347542|347546|347547|347550|347553|347556|347558|347564|347567|347573|347574|347575|347579|347580|347583|347586|508889|508890|508891|727464|727465|741064|756168|756169|878660|878661|878662|878663|878664|878665|878666|878667|878668|878669|878670|878671|878672|878673|878674|878675|878676|878677|878678|878679|878680|878681|878682|878683|878684|878685|878686|878687|878688|880610", + "upstreamId": "20902|20903|20904|20905|330271|330273|330277|330279|330287|330290|330297|330300|330301|330303|330306|330309|330311|330312|330319|330323|340477|340479|340485|340486|340489|340499|340509|340515|340518|340520|340522|340524|340528|340530|340531|340535|340537|340544|340545|340549|346200|346201|346203|346207|346209|346216|346218|346219|346220|346221|346230|346231|346232|346241|346242|346243|346245|346246|346255|346259|347507|347510|347513|347514|347521|347526|347529|347534|347537|347542|347546|347547|347550|347553|347556|347558|347564|347567|347573|347574|347575|347579|347580|347583|347586|508889|508890|508891|727464|727465|741064|756168|756169|878660|878661|878662|878663|878664|878665|878666|878667|878668|878669|878670|878671|878672|878673|878674|878675|878676|878677|878678|878679|878680|878681|878682|878683|878684|878685|878686|878687|878688|880610", "text": "Amyotrophy, hereditary neuralgic" }, { - "baseId": "20906|20907|20908|20909|20910|101080|101081|329991|330034|330041|340261|340263|340264|346015|346017|347316|347318|347321|347326|347327|378783|486816|486817|532174|571600|620891|672105|694207|694208|704385|846242|846243|878516|878517|878522|878523|878524|878525|878526|878527|878528|878529|919772|958325|983743", + "upstreamId": "20906|20907|20908|20909|20910|101080|101081|329991|330034|330041|340261|340263|340264|346015|346017|347316|347318|347321|347326|347327|378783|486816|486817|532174|571600|620891|672105|694207|694208|704385|846242|846243|878516|878517|878522|878523|878524|878525|878526|878527|878528|878529|919772|958325|983743", "text": "MPDU1-CDG" }, { - "baseId": "20911|20912|45934|45935|45936|45938|45939|132507|132510|132511|132516|133447|133449|133450|133455|133458|133461|133463|133464|133465|133469|133470|133477|133480|150482|150622|150625|150644|150645|150653|150759|150766|150820|150865|151031|151610|152152|152155|152494|152729|180236|180237|182498|182503|182519|182523|182531|182588|182591|182598|182629|182658|212471|212486|221571|221577|227276|233249|233267|233354|233392|233398|233407|239694|239712|251668|358785|358786|394679|454545|454975|474047|474068|474083|474196|474235|474264|474352|521131|539248|539249|539250|539251|539252|539253|560174", + "upstreamId": "20911|20912|45934|45935|45936|45938|45939|132507|132510|132511|132516|133447|133449|133450|133455|133458|133461|133463|133464|133465|133469|133470|133477|133480|150482|150622|150625|150644|150645|150653|150759|150766|150820|150865|151031|151610|152152|152155|152494|152729|180236|180237|182498|182503|182519|182523|182531|182588|182591|182598|182629|182658|212471|212486|221571|221577|227276|233249|233267|233354|233392|233398|233407|239694|239712|251668|358785|358786|394679|454545|454975|474047|474068|474083|474196|474235|474264|474352|521131|539248|539249|539250|539251|539252|539253|560174", "text": "Nijmegen breakage syndrome-like disorder" }, { - "baseId": "20913|20914|20915|20916|20917|134430|134431|134432|134433|134434|134435|190459|190460|204423|207029|287509|287513|287515|287516|287518|287519|287520|287523|287527|288279|288282|288283|288285|288286|288287|288290|288291|288292|288293|288294|290983|290984|291001|291019|291033|291035|291045|291047|291070|291074|291080|291226|291227|291239|291240|291243|291247|291251|291255|353579|380202|428103|428104|513044|708408|719999|733617|798515|885630|885631|885632|885633|885634|885635|885636|885637|885638|885639|885640|885641|885642|885643|885644|885645|885646|885647|885648|885649|885650|980908", + "upstreamId": "20913|20914|20915|20916|20917|134430|134431|134432|134433|134434|134435|190459|190460|204423|207029|287509|287513|287515|287516|287518|287519|287520|287523|287527|288279|288282|288283|288285|288286|288287|288290|288291|288292|288293|288294|290983|290984|291001|291019|291033|291035|291045|291047|291070|291074|291080|291226|291227|291239|291240|291243|291247|291251|291255|353579|380202|428103|428104|513044|708408|719999|733617|798515|885630|885631|885632|885633|885634|885635|885636|885637|885638|885639|885640|885641|885642|885643|885644|885645|885646|885647|885648|885649|885650|980908", "text": "Wolcott-Rallison dysplasia" }, { - "baseId": "20919|20920|48744|133391|133392|133393|133394|133395|133396|133397|133398|133399|133400|133401|133402|133403|133404|133405|140178|140179|140180|140181|140182|140183|140184|140185|140186|140187|140189|140190|140191|140192|140193|180965|180966|180967|180968|180969|180970|180971|180972|180973|180974|180975|180975|180976|180977|180978|180980|180981|180982|180983|180984|180985|222729|222730|222731|232016|232017|232018|232019|232020|232021|232022|232023|232024|232025|232027|232028|242887|242888|242889|242890|242891|242892|242893|242894|242895|242896|242897|242898|242899|242900|242900|242901|242902|242903|242905|242906|242906|242907|242908|242909|242910|242911|242912|242913|242914|242915|242916|242917|242918|242919|242920|242921|242922|242923|242924|242925|242926|242927|242928|242929|242930|242931|242932|242933|242934|242935|242936|242937|242938|242939|242940|242941|242942|242943|242944|242945|242946|242947|242948|242949|242950|242951|242952|242953|242954|242955|242956|256350|256353|256353|256354|256356|256357|264792|329554|329555|329559|329561|329562|329566|329571|329574|329576|329578|329579|329580|329590|329591|339824|339829|339833|339834|339835|339837|345575|345576|345579|345580|345584|346894|346895|346898|346905|346909|346910|346913|346914|346915|346926|375514|375539|375546|375562|375569|375571|375574|375575|376408|376421|376423|376440|376446|376466|376473|376478|376482|376534|376539|376540|376548|378667|378670|378680|378681|378684|402303|402306|402311|402313|402315|402323|402325|402327|402329|402330|402332|402333|402334|402336|402338|402339|402341|402341|402344|402347|402351|402354|402355|402359|402361|402364|402366|402367|402370|402370|402371|402374|402375|402376|402378|402380|402385|402386|402393|402395|402399|402402|402404|402405|402406|402407|402408|402409|402411|402412|402413|402416|402417|402420|402421|402424|402426|402427|402431|402432|402434|402440|402441|402445|402447|402453|402455|402456|402461|402462|402464|402473|402478|402486|402852|402856|402859|402862|402863|402869|402873|402874|402879|402883|402886|402889|402890|402892|402895|402896|402900|402900|402901|402902|402903|402904|402906|402908|402910|402911|402913|402919|402924|402927|402928|402930|402932|402937|402940|402944|402945|402946|402947|402949|402952|402952|402954|402955|402960|402961|402962|402964|402967|402968|402972|402973|402974|402977|402985|402986|402990|402990|403003|403009|403012|403013|403021|403023|403026|403031|403049|403051|403054|403059|410180|410182|410183|410185|410186|410188|410189|410191|410193|410194|410195|410196|410197|410199|410200|410201|410202|410206|410207|410208|410209|410210|410211|445862|445864|467226|467228|467233|467235|467237|467237|467238|467241|467243|467244|467246|467248|467252|467253|467257|467263|467267|467269|467271|467273|467279|467284|467289|467298|467299|467310|467313|467317|467320|467325|467327|467328|467337|467344|468179|468181|468182|468186|468187|468191|468195|468198|468201|468203|468204|468205|468207|468212|468213|468216|468217|468222|468227|468231|468235|468236|468239|468241|468244|468254|468257|468259|468262|468267|468269|468271|468274|468275|468278|468551|468570|468576|468578|468581|468582|468593|468594|468596|468599|468601|468604|468612|468617|468620|468625|468633|468636|468649|468659|468663|468670|468675|468680|468686|468687|468691|468704|468705|468709|468710|468713|468715|468721|468827|468829|468831|468835|468840|468848|468849|468856|468857|468861|468866|468868|468870|468872|468885|468886|468889|468892|468893|468897|468899|468901|468904|468906|468911|468913|468930|468935|468940|468941|468944|468945|468950|468955|468960|468961|468965|506111|506112|506132|506146|506150|506327|506330|506334|506340|506343|506656|506669|506676|506680|507069|507076|507082|530845|531490|531511|531521|531527|531528|531538|531545|531546|531549|531555|531565|531570|531575|531578|531580|531583|531584|531586|531594|531596|531598|531601|531604|531606|531607|531609|531613|531618|531619|531621|531624|531626|531628|531630|531632|531633|531636|531640|531642|531646|531647|531653|531656|531657|531657|531659|531660|531661|531662|531663|531664|531665|531667|531671|531672|531676|531677|531678|531679|531684|531686|531688|531689|531690|531693|531697|531699|531700|531702|531708|531715|531717|531718|531721|531723|531725|531727|531732|531738|531739|531741|531742|531749|531751|531753|531755|531756|531757|531762|531763|531764|531766|531767|531773|531781|531784|531788|531794|531795|531798|531800|531803|531805|531810|531811|531818|531821|531944|531946|531954|531956|531971|531973|531976|531986|531992|531994|531997|531998|532002|532004|532012|532017|532024|532026|532029|532031|532032|532033|532043|532053|532056|532062|536512|536513|568659|569542|569544|569550|569571|569573|569574|569577|569578|569580|569592|569602|569607|569610|569613|569615|569616|569618|569619|569623|569627|569634|569637|569639|569641|569653|569656|569657|569661|569663|569669|569670|570724|571473|571480|571481|571483|571488|571489|571491|571500|571501|571506|571507|571510|571511|571513|571515|571517|571522|571523|571525|571528|571529|571535|571536|571538|571540|572043|572045|572046|572050|572054|572056|572057|572065|572068|572076|572077|572079|572087|572088|572092|572097|572105|572113|572114|572116|572117|572122|572129|572131|572147|572150|572156|574579|574580|574581|574582|574583|574584|574585|574586|574587|574588|574589|574590|574591|574592|574593|574594|574595|574596|574597|574598|574599|574600|574601|574602|574603|574604|574605|574606|646443|646444|646445|646446|646447|646448|646449|646450|646451|646452|646453|646454|646455|646456|646457|646458|646459|646460|646461|646462|646463|646464|646465|646466|646467|646468|646469|646470|646471|646472|646473|646474|646475|646476|646477|646478|646479|646480|646481|646482|646483|646484|646485|646486|646487|646488|646489|646490|646491|646492|646493|646494|646495|646496|646497|646498|646499|646500|646501|646502|646503|646504|646505|646506|646507|646508|646509|646510|646511|646512|646513|646514|646515|646516|646517|646518|646519|646520|646521|646522|646523|646524|646525|646526|646527|646528|646529|646530|646531|646532|646533|646534|646535|646536|646537|646538|646539|646540|646541|646542|646543|646544|646545|646546|646547|646548|646549|646550|646551|646552|646553|646554|646555|646556|646557|646558|646559|646560|646561|646562|646563|646564|646565|646566|646567|646568|646569|646570|646571|646572|646573|646574|646575|646576|646577|646578|646579|652676|653015|653333|653345|656461|669498|688806|688807|688808|688809|688810|688811|688813|688814|688815|690183|694167|694168|695767|704305|715631|727359|740968|740969|740970|756045|756046|756047|756048|756049|756053|756054|756055|756056|771733|771738|771739|771741|771742|771746|771747|771748|771750|771751|771753|771755|771756|771760|771761|771763|771766|771767|776384|785695|785696|785697|785705|785706|785707|785708|785710|814375|814379|814386|814399|814406|814407|814408|814409|821148|845963|845964|845965|845966|845967|845968|845969|845970|845971|845972|845973|845974|845975|845976|845977|845978|845979|845980|845981|845982|845983|845984|845985|845986|845987|845988|845989|845990|845991|845992|845993|845994|845995|845996|845997|845998|845999|846000|846001|846002|846003|846004|846005|846006|846007|846008|846009|846010|846011|846012|846013|846014|846015|846016|846017|846018|846019|846020|846021|846022|846023|846024|846025|846026|846027|846028|846029|846030|846031|846032|846033|846034|846035|846036|846037|846038|846039|846040|846041|846042|846043|846044|846045|846046|846047|846048|846049|846050|846051|846052|846053|846054|846055|846056|846057|846058|846059|846060|846061|846062|846063|846064|846065|846066|846067|846068|846069|846070|846071|846072|846073|846074|846075|846076|846077|846078|846079|846080|846081|846082|846083|846084|846085|846086|851749|852247|852250|852253|878246|878247|878248|878249|878250|878251|878252|878253|878254|878255|878256|878257|878258|878259|878260|878261|878262|878263|880568|928458|928459|928460|928461|928462|928463|928464|928465|928466|928467|928468|928469|928470|928471|928472|928473|928474|928475|928476|928477|928478|928479|928480|928481|928482|928483|928484|928485|928486|928487|928488|928489|928490|928491|928492|928493|928494|928495|928496|928497|928498|938146|938147|938148|938149|938150|938151|938152|938153|938154|938155|938156|938157|938158|938159|938160|938161|938162|938163|938164|938165|938166|938167|938168|938169|938170|938171|938172|938173|938174|938175|938176|938177|938178|938179|938180|938181|938182|938183|938184|941194|950188|950189|950190|950191|950192|950193|950194|950195|950196|950197|950198|950199|950200|950201|950202|950203|950204|950205|950206|950207|950208|950209|950210|950211|950212|950213|950214|950215|950216|950217|950218|950219|950220|950221|950222|950223|950224|950225|958269|958270|958271|958272|958273|958274|958275|958276|958277|958278|960234|960235|960236|960237", + "upstreamId": "20919|20920|48744|133391|133392|133393|133394|133395|133396|133397|133398|133399|133400|133401|133402|133403|133404|133405|140178|140179|140180|140181|140182|140183|140184|140185|140186|140187|140189|140190|140191|140192|140193|180965|180966|180967|180968|180969|180970|180971|180972|180973|180974|180975|180975|180976|180977|180978|180980|180981|180982|180983|180984|180985|222729|222730|222731|232016|232017|232018|232019|232020|232021|232022|232023|232024|232025|232027|232028|242887|242888|242889|242890|242891|242892|242893|242894|242895|242896|242897|242898|242899|242900|242900|242901|242902|242903|242905|242906|242906|242907|242908|242909|242910|242911|242912|242913|242914|242915|242916|242917|242918|242919|242920|242921|242922|242923|242924|242925|242926|242927|242928|242929|242930|242931|242932|242933|242934|242935|242936|242937|242938|242939|242940|242941|242942|242943|242944|242945|242946|242947|242948|242949|242950|242951|242952|242953|242954|242955|242956|256350|256353|256353|256354|256356|256357|264792|329554|329555|329559|329561|329562|329566|329571|329574|329576|329578|329579|329580|329590|329591|339824|339829|339833|339834|339835|339837|345575|345576|345579|345580|345584|346894|346895|346898|346905|346909|346910|346913|346914|346915|346926|375514|375539|375546|375562|375569|375571|375574|375575|376408|376421|376423|376440|376446|376466|376473|376478|376482|376534|376539|376540|376548|378667|378670|378680|378681|378684|402303|402306|402311|402313|402315|402323|402325|402327|402329|402330|402332|402333|402334|402336|402338|402339|402341|402341|402344|402347|402351|402354|402355|402359|402361|402364|402366|402367|402370|402370|402371|402374|402375|402376|402378|402380|402385|402386|402393|402395|402399|402402|402404|402405|402406|402407|402408|402409|402411|402412|402413|402416|402417|402420|402421|402424|402426|402427|402431|402432|402434|402440|402441|402445|402447|402453|402455|402456|402461|402462|402464|402473|402478|402486|402852|402856|402859|402862|402863|402869|402873|402874|402879|402883|402886|402889|402890|402892|402895|402896|402900|402900|402901|402902|402903|402904|402906|402908|402910|402911|402913|402919|402924|402927|402928|402930|402932|402937|402940|402944|402945|402946|402947|402949|402952|402952|402954|402955|402960|402961|402962|402964|402967|402968|402972|402973|402974|402977|402985|402986|402990|402990|403003|403009|403012|403013|403021|403023|403026|403031|403049|403051|403054|403059|410180|410182|410183|410185|410186|410188|410189|410191|410193|410194|410195|410196|410197|410199|410200|410201|410202|410206|410207|410208|410209|410210|410211|445862|445864|467226|467228|467233|467235|467237|467237|467238|467241|467243|467244|467246|467248|467252|467253|467257|467263|467267|467269|467271|467273|467279|467284|467289|467298|467299|467310|467313|467317|467320|467325|467327|467328|467337|467344|468179|468181|468182|468186|468187|468191|468195|468198|468201|468203|468204|468205|468207|468212|468213|468216|468217|468222|468227|468231|468235|468236|468239|468241|468244|468254|468257|468259|468262|468267|468269|468271|468274|468275|468278|468551|468570|468576|468578|468581|468582|468593|468594|468596|468599|468601|468604|468612|468617|468620|468625|468633|468636|468649|468659|468663|468670|468675|468680|468686|468687|468691|468704|468705|468709|468710|468713|468715|468721|468827|468829|468831|468835|468840|468848|468849|468856|468857|468861|468866|468868|468870|468872|468885|468886|468889|468892|468893|468897|468899|468901|468904|468906|468911|468913|468930|468935|468940|468941|468944|468945|468950|468955|468960|468961|468965|506111|506112|506132|506146|506150|506327|506330|506334|506340|506343|506656|506669|506676|506680|507069|507076|507082|530845|531490|531511|531521|531527|531528|531538|531545|531546|531549|531555|531565|531570|531575|531578|531580|531583|531584|531586|531594|531596|531598|531601|531604|531606|531607|531609|531613|531618|531619|531621|531624|531626|531628|531630|531632|531633|531636|531640|531642|531646|531647|531653|531656|531657|531657|531659|531660|531661|531662|531663|531664|531665|531667|531671|531672|531676|531677|531678|531679|531684|531686|531688|531689|531690|531693|531697|531699|531700|531702|531708|531715|531717|531718|531721|531723|531725|531727|531732|531738|531739|531741|531742|531749|531751|531753|531755|531756|531757|531762|531763|531764|531766|531767|531773|531781|531784|531788|531794|531795|531798|531800|531803|531805|531810|531811|531818|531821|531944|531946|531954|531956|531971|531973|531976|531986|531992|531994|531997|531998|532002|532004|532012|532017|532024|532026|532029|532031|532032|532033|532043|532053|532056|532062|536512|536513|568659|569542|569544|569550|569571|569573|569574|569577|569578|569580|569592|569602|569607|569610|569613|569615|569616|569618|569619|569623|569627|569634|569637|569639|569641|569653|569656|569657|569661|569663|569669|569670|570724|571473|571480|571481|571483|571488|571489|571491|571500|571501|571506|571507|571510|571511|571513|571515|571517|571522|571523|571525|571528|571529|571535|571536|571538|571540|572043|572045|572046|572050|572054|572056|572057|572065|572068|572076|572077|572079|572087|572088|572092|572097|572105|572113|572114|572116|572117|572122|572129|572131|572147|572150|572156|574579|574580|574581|574582|574583|574584|574585|574586|574587|574588|574589|574590|574591|574592|574593|574594|574595|574596|574597|574598|574599|574600|574601|574602|574603|574604|574605|574606|646443|646444|646445|646446|646447|646448|646449|646450|646451|646452|646453|646454|646455|646456|646457|646458|646459|646460|646461|646462|646463|646464|646465|646466|646467|646468|646469|646470|646471|646472|646473|646474|646475|646476|646477|646478|646479|646480|646481|646482|646483|646484|646485|646486|646487|646488|646489|646490|646491|646492|646493|646494|646495|646496|646497|646498|646499|646500|646501|646502|646503|646504|646505|646506|646507|646508|646509|646510|646511|646512|646513|646514|646515|646516|646517|646518|646519|646520|646521|646522|646523|646524|646525|646526|646527|646528|646529|646530|646531|646532|646533|646534|646535|646536|646537|646538|646539|646540|646541|646542|646543|646544|646545|646546|646547|646548|646549|646550|646551|646552|646553|646554|646555|646556|646557|646558|646559|646560|646561|646562|646563|646564|646565|646566|646567|646568|646569|646570|646571|646572|646573|646574|646575|646576|646577|646578|646579|652676|653015|653333|653345|656461|669498|688806|688807|688808|688809|688810|688811|688813|688814|688815|690183|694167|694168|695767|704305|715631|727359|740968|740969|740970|756045|756046|756047|756048|756049|756053|756054|756055|756056|771733|771738|771739|771741|771742|771746|771747|771748|771750|771751|771753|771755|771756|771760|771761|771763|771766|771767|776384|785695|785696|785697|785705|785706|785707|785708|785710|814375|814379|814386|814399|814406|814407|814408|814409|821148|845963|845964|845965|845966|845967|845968|845969|845970|845971|845972|845973|845974|845975|845976|845977|845978|845979|845980|845981|845982|845983|845984|845985|845986|845987|845988|845989|845990|845991|845992|845993|845994|845995|845996|845997|845998|845999|846000|846001|846002|846003|846004|846005|846006|846007|846008|846009|846010|846011|846012|846013|846014|846015|846016|846017|846018|846019|846020|846021|846022|846023|846024|846025|846026|846027|846028|846029|846030|846031|846032|846033|846034|846035|846036|846037|846038|846039|846040|846041|846042|846043|846044|846045|846046|846047|846048|846049|846050|846051|846052|846053|846054|846055|846056|846057|846058|846059|846060|846061|846062|846063|846064|846065|846066|846067|846068|846069|846070|846071|846072|846073|846074|846075|846076|846077|846078|846079|846080|846081|846082|846083|846084|846085|846086|851749|852247|852250|852253|878246|878247|878248|878249|878250|878251|878252|878253|878254|878255|878256|878257|878258|878259|878260|878261|878262|878263|880568|928458|928459|928460|928461|928462|928463|928464|928465|928466|928467|928468|928469|928470|928471|928472|928473|928474|928475|928476|928477|928478|928479|928480|928481|928482|928483|928484|928485|928486|928487|928488|928489|928490|928491|928492|928493|928494|928495|928496|928497|928498|938146|938147|938148|938149|938150|938151|938152|938153|938154|938155|938156|938157|938158|938159|938160|938161|938162|938163|938164|938165|938166|938167|938168|938169|938170|938171|938172|938173|938174|938175|938176|938177|938178|938179|938180|938181|938182|938183|938184|941194|950188|950189|950190|950191|950192|950193|950194|950195|950196|950197|950198|950199|950200|950201|950202|950203|950204|950205|950206|950207|950208|950209|950210|950211|950212|950213|950214|950215|950216|950217|950218|950219|950220|950221|950222|950223|950224|950225|958269|958270|958271|958272|958273|958274|958275|958276|958277|958278|960234|960235|960236|960237", "text": "Oligodontia-colorectal cancer syndrome" }, { - "baseId": "20922|140034|140035|140036|140038|140043|140044|140045|140046|140047|140048|140049|140050|140052|140053|178586|178587|178589|188434|188435|188458|188459|188463|189264|189285|189287|189291|189300|194666|212621|212622|221747|240192|258510|311851|396100|404774|457532|457989|481131|512827|625804|636409|799517|799518|799519|799520|919118|919119", + "upstreamId": "20922|140034|140035|140036|140038|140043|140044|140045|140046|140047|140048|140049|140050|140052|140053|178586|178587|178589|188434|188435|188458|188459|188463|189264|189285|189287|189291|189300|194666|212621|212622|221747|240192|258510|311851|396100|404774|457532|457989|481131|512827|625804|636409|799517|799518|799519|799520|919118|919119", "text": "Long QT syndrome 11" }, { - "baseId": "20923|20924|20925|20926|20927|20928|20929|20930|20931|20932|20933|20934|225790|225791|227299|252373|252374|252375|252376|259250|259251|259256|300255|300256|300257|300259|300263|300266|300267|300268|300272|300275|300276|300277|300282|300283|300288|300290|300298|300300|300301|300307|300311|300312|300313|300318|300322|300325|303010|303012|303015|303016|303017|303019|303021|303025|303027|303028|303030|303038|303039|303042|303043|303044|303052|303066|303068|303078|303079|303098|303099|303100|303122|303123|303127|303143|307460|307461|307463|307474|307476|307477|307478|307486|307492|307493|307494|307500|307504|307506|307516|307518|307529|307533|307537|307556|307557|307567|307568|307569|307583|307610|307612|307619|307627|307628|307629|307691|307692|307701|307703|307705|307713|307715|307716|307724|307726|307728|307737|307740|307746|307749|307751|307752|307754|307757|307765|307766|307767|307773|307774|307790|307799|307808|307809|552287|620232|620789|710537|722049|750100|896371|896372|896373|896374|896375|896376|896377|896378|896379|896380|896381|896382|896383|896384|896385|896386|896387|896388|896389|896390|896391|896392|896393|896394|896395|896396|896397|896398|896399|896400|896401|896402|896403|896404|896405|896406|896407|896408|896409|896410|896411|896412|896413|896414|896415|896416|896417|896418|896419|896420|896421|896422|896423|896424|896425|896426|896427|896428|896429|896430|896431|896432|896433|896434|896435|896436|896437|896438|896439|896440|896441|896442|896443|896444|896445|896446|896447|896448|896449|896450|896451|896452|896453|896454|896455|896456|900233", + "upstreamId": "20923|20924|20925|20926|20927|20928|20929|20930|20931|20932|20933|20934|225790|225791|227299|252373|252374|252375|252376|259250|259251|259256|300255|300256|300257|300259|300263|300266|300267|300268|300272|300275|300276|300277|300282|300283|300288|300290|300298|300300|300301|300307|300311|300312|300313|300318|300322|300325|303010|303012|303015|303016|303017|303019|303021|303025|303027|303028|303030|303038|303039|303042|303043|303044|303052|303066|303068|303078|303079|303098|303099|303100|303122|303123|303127|303143|307460|307461|307463|307474|307476|307477|307478|307486|307492|307493|307494|307500|307504|307506|307516|307518|307529|307533|307537|307556|307557|307567|307568|307569|307583|307610|307612|307619|307627|307628|307629|307691|307692|307701|307703|307705|307713|307715|307716|307724|307726|307728|307737|307740|307746|307749|307751|307752|307754|307757|307765|307766|307767|307773|307774|307790|307799|307808|307809|552287|620232|620789|710537|722049|750100|896371|896372|896373|896374|896375|896376|896377|896378|896379|896380|896381|896382|896383|896384|896385|896386|896387|896388|896389|896390|896391|896392|896393|896394|896395|896396|896397|896398|896399|896400|896401|896402|896403|896404|896405|896406|896407|896408|896409|896410|896411|896412|896413|896414|896415|896416|896417|896418|896419|896420|896421|896422|896423|896424|896425|896426|896427|896428|896429|896430|896431|896432|896433|896434|896435|896436|896437|896438|896439|896440|896441|896442|896443|896444|896445|896446|896447|896448|896449|896450|896451|896452|896453|896454|896455|896456|900233", "text": "Xeroderma pigmentosum variant type" }, { - "baseId": "20935|20936|20937|20938|20939|20941|20942|20943|20944|20947|20948|20949|20950|20951|20952|20955|20956|20957|20958|20959|20960|20962|34003|34004|34005|34006|34007|34008|34009|34012|34013|34014|91506|91507|98768|98768|98769|98770|98770|98771|98771|135674|135674|135675|135675|135676|135676|135677|135678|135678|135679|135680|135681|135681|135682|135683|135683|135684|135685|135686|135686|135687|135687|135688|135688|152917|152918|152919|178051|191492|191494|192958|194295|194296|208411|213911|222956|222957|222958|223736|244118|247138|256315|256316|256317|256318|256319|256320|256321|256322|256323|256327|256327|256329|256332|256333|256335|256336|256337|265609|267376|269339|329360|329362|329367|329369|329371|329373|329379|329380|329382|329383|329385|329389|329390|329392|329395|329397|329399|339613|339614|339615|339620|339621|339625|339628|339637|339639|339643|339644|339649|339650|339652|339653|339654|339656|339658|339662|339663|339663|339669|339670|339672|339673|339679|339681|339683|339684|339686|339687|339689|345371|345376|345377|345380|345382|345384|345386|345389|345394|345398|345399|345401|345403|345404|345406|345408|345412|345415|345416|345419|345423|345424|345424|345425|346746|346753|346755|346760|346762|346764|346768|346772|346773|346775|346778|346779|346781|346786|346786|346789|346790|346791|346792|346793|346797|361024|361025|375476|375483|375484|375491|376499|376504|376506|376513|378624|378634|378651|378652|410169|410170|410172|410173|415580|422186|422187|422188|426240|426242|430000|430003|430005|441986|441988|441992|441994|441996|442001|442004|442005|442007|442008|442010|442011|445853|445855|466199|467198|467200|467202|467203|467209|467211|467215|467222|467224|468152|468163|468164|468166|468168|468173|468176|468535|468539|468542|468545|468547|468550|468760|468761|468763|468768|468774|468780|468781|468784|468794|468795|468803|468812|468822|506287|506288|506293|506655|531456|531458|531465|531466|531467|531472|531474|531481|531487|531488|531569|531574|531589|531591|531593|531599|531600|531608|531610|531616|531617|531704|531706|531709|531711|531714|531907|531909|531916|531917|531918|531924|531926|531930|531934|531937|531938|531940|536951|569478|569480|569487|569488|569502|569503|569505|569507|569512|569513|569517|569520|571437|571439|571448|571455|571456|571459|571466|571470|572002|572007|572008|572012|572014|572015|572025|572026|572032|574567|574568|574569|574570|574571|574572|574573|574574|574575|574576|574577|574578|577655|577657|577658|577659|577668|577669|577672|577673|582749|646389|646390|646391|646392|646393|646394|646395|646396|646397|646398|646399|646400|646401|646402|646403|646404|646405|646406|646407|646408|646409|646410|646411|646412|646413|646414|646415|646416|646417|646418|646419|646420|646421|646422|646423|646424|646425|646426|646427|646428|646429|646430|646431|646432|646433|646434|646435|646436|646437|646438|646439|646440|646441|646442|652833|653331|656459|656460|694142|694143|694146|694149|694150|694151|694152|694153|694155|694160|694162|695765|695766|704284|704285|704286|704290|715624|715626|727344|727345|727346|731175|740942|740945|756033|756036|756039|771718|771722|771723|776370|785689|793699|797587|797588|845850|845851|845852|845853|845854|845855|845856|845857|845858|845859|845860|845861|845862|845863|845864|845865|845866|845867|845868|845869|845870|845871|845872|845873|845874|845875|845876|845877|845878|845879|845880|845881|845882|845883|845884|845885|845886|845887|845888|845889|845890|845891|845892|845893|845894|845895|845896|845897|845898|845899|845900|845901|845902|845903|845904|845905|845906|845907|845908|851747|852235|852238|878131|878132|878133|878134|878135|878136|878137|878138|878139|878140|878141|878142|878143|878144|878145|878146|878147|878148|878149|878150|878151|878152|878153|878154|878155|878156|878157|878158|878159|878160|878161|878162|878163|878164|878165|878166|919760|919761|919762|920379|920922|928439|928440|928441|928442|928443|928444|928445|928446|928447|928448|928449|928450|928451|928452|928453|938118|938119|938120|938121|938122|938123|938124|938125|938126|938127|938128|938129|938130|938131|940426|941193|950135|950136|950137|950138|950139|950140|950141|950142|950143|950144|950145|950146|958238|958239|958240|958241|958242|958243|958244|958245|958246|958247|958248|958249", + "upstreamId": "20935|20936|20937|20938|20939|20941|20942|20943|20944|20947|20948|20949|20950|20951|20952|20955|20956|20957|20958|20959|20960|20962|34003|34004|34005|34006|34007|34008|34009|34012|34013|34014|91506|91507|98768|98768|98769|98770|98770|98771|98771|135674|135674|135675|135675|135676|135676|135677|135678|135678|135679|135680|135681|135681|135682|135683|135683|135684|135685|135686|135686|135687|135687|135688|135688|152917|152918|152919|178051|191492|191494|192958|194295|194296|208411|213911|222956|222957|222958|223736|244118|247138|256315|256316|256317|256318|256319|256320|256321|256322|256323|256327|256327|256329|256332|256333|256335|256336|256337|265609|267376|269339|329360|329362|329367|329369|329371|329373|329379|329380|329382|329383|329385|329389|329390|329392|329395|329397|329399|339613|339614|339615|339620|339621|339625|339628|339637|339639|339643|339644|339649|339650|339652|339653|339654|339656|339658|339662|339663|339663|339669|339670|339672|339673|339679|339681|339683|339684|339686|339687|339689|345371|345376|345377|345380|345382|345384|345386|345389|345394|345398|345399|345401|345403|345404|345406|345408|345412|345415|345416|345419|345423|345424|345424|345425|346746|346753|346755|346760|346762|346764|346768|346772|346773|346775|346778|346779|346781|346786|346786|346789|346790|346791|346792|346793|346797|361024|361025|375476|375483|375484|375491|376499|376504|376506|376513|378624|378634|378651|378652|410169|410170|410172|410173|415580|422186|422187|422188|426240|426242|430000|430003|430005|441986|441988|441992|441994|441996|442001|442004|442005|442007|442008|442010|442011|445853|445855|466199|467198|467200|467202|467203|467209|467211|467215|467222|467224|468152|468163|468164|468166|468168|468173|468176|468535|468539|468542|468545|468547|468550|468760|468761|468763|468768|468774|468780|468781|468784|468794|468795|468803|468812|468822|506287|506288|506293|506655|531456|531458|531465|531466|531467|531472|531474|531481|531487|531488|531569|531574|531589|531591|531593|531599|531600|531608|531610|531616|531617|531704|531706|531709|531711|531714|531907|531909|531916|531917|531918|531924|531926|531930|531934|531937|531938|531940|536951|569478|569480|569487|569488|569502|569503|569505|569507|569512|569513|569517|569520|571437|571439|571448|571455|571456|571459|571466|571470|572002|572007|572008|572012|572014|572015|572025|572026|572032|574567|574568|574569|574570|574571|574572|574573|574574|574575|574576|574577|574578|577655|577657|577658|577659|577668|577669|577672|577673|582749|646389|646390|646391|646392|646393|646394|646395|646396|646397|646398|646399|646400|646401|646402|646403|646404|646405|646406|646407|646408|646409|646410|646411|646412|646413|646414|646415|646416|646417|646418|646419|646420|646421|646422|646423|646424|646425|646426|646427|646428|646429|646430|646431|646432|646433|646434|646435|646436|646437|646438|646439|646440|646441|646442|652833|653331|656459|656460|694142|694143|694146|694149|694150|694151|694152|694153|694155|694160|694162|695765|695766|704284|704285|704286|704290|715624|715626|727344|727345|727346|731175|740942|740945|756033|756036|756039|771718|771722|771723|776370|785689|793699|797587|797588|845850|845851|845852|845853|845854|845855|845856|845857|845858|845859|845860|845861|845862|845863|845864|845865|845866|845867|845868|845869|845870|845871|845872|845873|845874|845875|845876|845877|845878|845879|845880|845881|845882|845883|845884|845885|845886|845887|845888|845889|845890|845891|845892|845893|845894|845895|845896|845897|845898|845899|845900|845901|845902|845903|845904|845905|845906|845907|845908|851747|852235|852238|878131|878132|878133|878134|878135|878136|878137|878138|878139|878140|878141|878142|878143|878144|878145|878146|878147|878148|878149|878150|878151|878152|878153|878154|878155|878156|878157|878158|878159|878160|878161|878162|878163|878164|878165|878166|919760|919761|919762|920379|920922|928439|928440|928441|928442|928443|928444|928445|928446|928447|928448|928449|928450|928451|928452|928453|938118|938119|938120|938121|938122|938123|938124|938125|938126|938127|938128|938129|938130|938131|940426|941193|950135|950136|950137|950138|950139|950140|950141|950142|950143|950144|950145|950146|958238|958239|958240|958241|958242|958243|958244|958245|958246|958247|958248|958249", "text": "Familial hyperkalemic periodic paralysis" }, { - "baseId": "20935|20936|20939|20961", + "upstreamId": "20935|20936|20939|20961", "text": "Paramyotonia congenita/hyperkalemic periodic paralysis" }, { - "baseId": "20937|20938|20941|20942|20943|20944|20946|20948|20954|20960|20962|20963|34005|34006|34014|91506|98768|98768|98770|98770|98771|98771|135674|135674|135675|135675|135676|135676|135677|135678|135678|135679|135680|135681|135681|135682|135683|135683|135684|135685|135686|135686|135687|135687|135688|135688|152918|178051|191494|192958|194295|247138|256315|256316|256317|256318|256319|256320|256321|256322|256323|256327|256327|256329|256332|256333|256335|256336|256337|329360|329362|329365|329367|329369|329371|329373|329379|329380|329382|329383|329385|329389|329390|329392|329395|329397|329399|339613|339614|339615|339620|339621|339623|339625|339628|339637|339639|339643|339644|339649|339650|339652|339653|339654|339656|339658|339662|339663|339663|339669|339670|339672|339673|339679|339681|339683|339684|339686|339687|339689|345371|345376|345377|345380|345381|345382|345384|345386|345389|345394|345398|345399|345401|345403|345404|345406|345408|345412|345415|345416|345419|345423|345424|345424|345425|346746|346753|346754|346755|346760|346762|346763|346764|346768|346772|346773|346775|346778|346779|346781|346786|346786|346789|346790|346791|346792|346793|346797|422187|426240|442008|468176|468535|511016|531474|531569|531926|569488|569512|571437|571456|574567|577672|646390|646397|646412|646434|656460|694143|694149|694153|694160|704284|704290|740942|797587|845908|878131|878132|878133|878134|878135|878136|878137|878138|878139|878140|878141|878142|878143|878144|878145|878146|878147|878148|878149|878150|878151|878152|878153|878154|878155|878156|878157|878158|878159|878160|878161|878162|878163|878164|878165|878166|964491", + "upstreamId": "20937|20938|20941|20942|20943|20944|20946|20948|20954|20960|20962|20963|34005|34006|34014|91506|98768|98768|98770|98770|98771|98771|135674|135674|135675|135675|135676|135676|135677|135678|135678|135679|135680|135681|135681|135682|135683|135683|135684|135685|135686|135686|135687|135687|135688|135688|152918|178051|191494|192958|194295|247138|256315|256316|256317|256318|256319|256320|256321|256322|256323|256327|256327|256329|256332|256333|256335|256336|256337|329360|329362|329365|329367|329369|329371|329373|329379|329380|329382|329383|329385|329389|329390|329392|329395|329397|329399|339613|339614|339615|339620|339621|339623|339625|339628|339637|339639|339643|339644|339649|339650|339652|339653|339654|339656|339658|339662|339663|339663|339669|339670|339672|339673|339679|339681|339683|339684|339686|339687|339689|345371|345376|345377|345380|345381|345382|345384|345386|345389|345394|345398|345399|345401|345403|345404|345406|345408|345412|345415|345416|345419|345423|345424|345424|345425|346746|346753|346754|346755|346760|346762|346763|346764|346768|346772|346773|346775|346778|346779|346781|346786|346786|346789|346790|346791|346792|346793|346797|422187|426240|442008|468176|468535|511016|531474|531569|531926|569488|569512|571437|571456|574567|577672|646390|646397|646412|646434|656460|694143|694149|694153|694160|704284|704290|740942|797587|845908|878131|878132|878133|878134|878135|878136|878137|878138|878139|878140|878141|878142|878143|878144|878145|878146|878147|878148|878149|878150|878151|878152|878153|878154|878155|878156|878157|878158|878159|878160|878161|878162|878163|878164|878165|878166|964491", "text": "Paramyotonia congenita of von Eulenburg" }, { - "baseId": "20939|65738|79451|263271|360889|513940|514033|514074|801513|965484|965579", + "upstreamId": "20939|65738|79451|263271|360889|513940|514033|514074|801513|965484|965579", "text": "Focal seizures" }, { - "baseId": "20940", + "upstreamId": "20940", "text": "Paramyotonia congenita/myotonia congenita" }, { - "baseId": "20940|20942|20944|20947|20949|20959|34005|34006|34014|91506|98768|98768|98770|98770|98771|98771|135674|135674|135675|135675|135676|135676|135677|135678|135678|135679|135680|135681|135681|135682|135683|135683|135684|135685|135686|135686|135687|135687|135688|135688|152918|178051|191494|192958|194295|247138|256315|256316|256317|256318|256319|256320|256321|256322|256323|256327|256327|256329|256332|256333|256335|256336|256337|329360|329362|329365|329367|329369|329371|329373|329379|329380|329382|329383|329385|329389|329390|329392|329395|329397|329399|339613|339614|339615|339620|339621|339623|339625|339628|339637|339639|339643|339644|339649|339650|339652|339653|339654|339656|339658|339662|339663|339663|339669|339670|339672|339673|339679|339681|339683|339684|339686|339687|339689|345371|345376|345377|345380|345381|345382|345384|345386|345389|345394|345398|345399|345401|345403|345404|345406|345408|345412|345415|345416|345419|345423|345424|345424|345425|346746|346753|346754|346755|346760|346762|346763|346764|346768|346772|346773|346775|346778|346779|346781|346786|346786|346789|346790|346791|346792|346793|346797|422187|426240|442008|468176|468535|531474|531569|531926|569488|569512|571437|571456|574567|577672|608846|646390|646397|646412|646434|656460|694143|694149|694153|694160|704284|704290|740942|797587|845908|878131|878132|878133|878134|878135|878136|878137|878138|878139|878140|878141|878142|878143|878144|878145|878146|878147|878148|878149|878150|878151|878152|878153|878154|878155|878156|878157|878158|878159|878160|878161|878162|878163|878164|878165|878166|964492", + "upstreamId": "20940|20942|20944|20947|20949|20959|34005|34006|34014|91506|98768|98768|98770|98770|98771|98771|135674|135674|135675|135675|135676|135676|135677|135678|135678|135679|135680|135681|135681|135682|135683|135683|135684|135685|135686|135686|135687|135687|135688|135688|152918|178051|191494|192958|194295|247138|256315|256316|256317|256318|256319|256320|256321|256322|256323|256327|256327|256329|256332|256333|256335|256336|256337|329360|329362|329365|329367|329369|329371|329373|329379|329380|329382|329383|329385|329389|329390|329392|329395|329397|329399|339613|339614|339615|339620|339621|339623|339625|339628|339637|339639|339643|339644|339649|339650|339652|339653|339654|339656|339658|339662|339663|339663|339669|339670|339672|339673|339679|339681|339683|339684|339686|339687|339689|345371|345376|345377|345380|345381|345382|345384|345386|345389|345394|345398|345399|345401|345403|345404|345406|345408|345412|345415|345416|345419|345423|345424|345424|345425|346746|346753|346754|346755|346760|346762|346763|346764|346768|346772|346773|346775|346778|346779|346781|346786|346786|346789|346790|346791|346792|346793|346797|422187|426240|442008|468176|468535|531474|531569|531926|569488|569512|571437|571456|574567|577672|608846|646390|646397|646412|646434|656460|694143|694149|694153|694160|704284|704290|740942|797587|845908|878131|878132|878133|878134|878135|878136|878137|878138|878139|878140|878141|878142|878143|878144|878145|878146|878147|878148|878149|878150|878151|878152|878153|878154|878155|878156|878157|878158|878159|878160|878161|878162|878163|878164|878165|878166|964492", "text": "Potassium-aggravated myotonia" }, { - "baseId": "20941|20957|20958", + "upstreamId": "20941|20957|20958", "text": "Normokalemic periodic paralysis, potassium-sensitive" }, { - "baseId": "20945", + "upstreamId": "20945", "text": "Myotonia congenita, atypical, acetazolamide-responsive" }, { - "baseId": "20948", + "upstreamId": "20948", "text": "SCN4A-related disorder" }, { - "baseId": "20950|20951|20952|20955|20956|34005|34006|34007|34014|91506|98768|98768|98770|98770|98771|98771|135674|135674|135675|135675|135676|135676|135677|135678|135678|135679|135680|135681|135681|135682|135683|135683|135684|135685|135686|135686|135687|135687|135688|135688|152917|152918|152919|178051|191494|192958|194295|247138|256315|256316|256317|256318|256319|256320|256321|256322|256323|256327|256327|256329|256332|256333|256335|256336|256337|329360|329362|329367|329369|329371|329373|329379|329380|329382|329383|329385|329389|329390|329392|329395|329397|329399|339613|339614|339615|339620|339621|339625|339628|339637|339639|339643|339644|339649|339650|339652|339653|339654|339656|339658|339662|339663|339663|339669|339670|339672|339673|339679|339681|339683|339684|339686|339687|339689|345371|345376|345377|345380|345382|345384|345386|345389|345394|345398|345399|345401|345403|345404|345406|345408|345412|345415|345416|345419|345423|345424|345424|345425|346746|346753|346755|346760|346762|346764|346768|346772|346773|346775|346778|346779|346781|346786|346786|346789|346790|346791|346792|346793|346797|422187|426240|442008|468176|468535|531474|531569|531926|569488|569512|571437|571456|574567|577672|646390|646397|646412|646434|656460|694143|694149|694153|694160|704284|704290|740942|797587|845908|858744|878131|878132|878133|878134|878135|878136|878137|878138|878139|878140|878141|878142|878143|878144|878145|878146|878147|878148|878149|878150|878151|878152|878153|878154|878155|878156|878157|878158|878159|878160|878161|878162|878163|878164|878165|878166", + "upstreamId": "20950|20951|20952|20955|20956|34005|34006|34007|34014|91506|98768|98768|98770|98770|98771|98771|135674|135674|135675|135675|135676|135676|135677|135678|135678|135679|135680|135681|135681|135682|135683|135683|135684|135685|135686|135686|135687|135687|135688|135688|152917|152918|152919|178051|191494|192958|194295|247138|256315|256316|256317|256318|256319|256320|256321|256322|256323|256327|256327|256329|256332|256333|256335|256336|256337|329360|329362|329367|329369|329371|329373|329379|329380|329382|329383|329385|329389|329390|329392|329395|329397|329399|339613|339614|339615|339620|339621|339625|339628|339637|339639|339643|339644|339649|339650|339652|339653|339654|339656|339658|339662|339663|339663|339669|339670|339672|339673|339679|339681|339683|339684|339686|339687|339689|345371|345376|345377|345380|345382|345384|345386|345389|345394|345398|345399|345401|345403|345404|345406|345408|345412|345415|345416|345419|345423|345424|345424|345425|346746|346753|346755|346760|346762|346764|346768|346772|346773|346775|346778|346779|346781|346786|346786|346789|346790|346791|346792|346793|346797|422187|426240|442008|468176|468535|531474|531569|531926|569488|569512|571437|571456|574567|577672|646390|646397|646412|646434|656460|694143|694149|694153|694160|704284|704290|740942|797587|845908|858744|878131|878132|878133|878134|878135|878136|878137|878138|878139|878140|878141|878142|878143|878144|878145|878146|878147|878148|878149|878150|878151|878152|878153|878154|878155|878156|878157|878158|878159|878160|878161|878162|878163|878164|878165|878166", "text": "Hypokalemic periodic paralysis, type 2" }, { - "baseId": "20950|20951|20952|20955|32662|32662|32663|32663|32664|32664|32669|32669|32670|33886|33887|34003|34007|79970|79970|152916|171056|194182|196497|196498|196498|196500|196500|205724|227189|227189|227190|227190|249594|249594|249595|249596|249599|249601|249602|249603|249605|249607|249607|249608|249608|249609|249609|249610|249610|249611|249611|249612|249613|249613|249615|249615|249616|249618|249618|249619|249621|249621|249623|249623|249624|249624|249625|249626|249628|249628|249629|249629|249633|249633|249634|249635|249635|249636|249636|249637|249638|249638|249639|249639|249640|249640|249641|249642|249642|249643|249643|249644|249644|249646|249646|249647|249648|249648|249649|249649|249651|249651|249652|249652|249653|249653|249654|249655|249655|249656|249657|249657|249658|249658|249659|249660|249660|259644|263994|263994|278347|278349|278355|278356|278356|278357|278357|278359|278359|278361|278361|278362|278363|278363|278368|278369|278371|278372|278372|278376|278376|278377|278379|278379|278384|278384|278385|278386|278391|278395|278398|278405|278405|278411|278422|278423|278423|278424|278424|278426|278438|278446|278446|278451|278451|278460|279473|279473|279475|279475|279478|279489|279501|279515|279515|279518|279518|279519|279523|279523|279533|279554|279555|279555|279557|279562|279562|279563|279563|279566|279567|279573|279574|279575|279579|279579|279581|279581|279586|279590|279590|279601|279605|279606|279606|279607|279607|279608|279608|279611|279611|279619|279619|279620|279621|279621|279640|279640|279646|279646|279649|279649|279658|279658|279659|279659|279661|279661|279665|279665|279671|279671|279672|279672|279675|279675|279685|279685|279687|279687|279688|279689|279689|279705|279706|279709|359213|364590|364594|364595|364712|364712|364714|364715|364719|364720|364723|364732|364739|364746|364764|364767|364770|364770|364794|364797|364801|389351|389351|389357|405008|405009|405010|405011|405012|413260|413260|414755|421195|421195|425328|438575|440422|440423|440424|440426|440427|442691|442692|442693|442695|447385|447395|447398|447399|447402|447413|447495|447496|447498|447498|447507|447513|447514|447516|447523|447524|447524|447528|447531|447531|447539|447540|447540|447594|447601|447601|447604|447611|447612|447618|447619|447622|447627|447629|447632|447633|447635|447636|447638|447639|447640|447641|447646|447648|447654|447657|447666|447675|447676|447676|481576|495100|498170|498172|498183|498183|498193|498195|498205|498209|498233|498327|498361|515342|515348|515358|515360|515365|515412|515417|515420|515423|515425|515427|515431|515432|515444|515445|515445|515449|515458|515459|515459|515464|515465|515467|515469|515470|515471|515472|515473|515474|515476|515482|515485|515486|515486|515491|515492|515506|515506|515507|536571|538944|556738|556740|556742|556744|556746|556748|556748|556750|556752|556752|556773|556775|556777|556779|556781|556783|556785|556787|556789|557088|557090|557092|557094|557096|557098|557100|557102|557104|557106|557106|557108|558286|558288|558290|558292|558294|558296|558298|558300|558309|558311|558313|558315|576456|576456|576456|578373|582270|626306|627230|627231|627232|627233|627234|627235|627236|627237|627238|627239|627240|627241|627242|627243|627244|627245|627246|627247|627248|627249|627250|627251|627252|627253|627254|627255|627256|627257|627258|627259|627260|627261|627262|627262|627263|627264|627265|627266|627267|627268|627269|627270|627271|627272|627273|627274|650600|650605|650615|650716|680038|683297|683298|683299|683300|683301|683302|685603|685604|685605|685605|685606|685610|685613|685614|685615|685615|685617|685619|685619|685620|685622|685623|685624|689636|689637|689639|690442|690443|690444|690448|690450|718509|731994|745976|745982|761465|761465|774431|780437|780438|780444|787022|789912|789913|794524|794532|794534|794534|823174|823175|823176|823177|823178|823179|823180|823181|823182|823183|823184|823185|823186|823187|823188|823189|823190|823191|823192|823193|823194|823195|823196|823197|823198|823199|823200|823201|823202|823203|823204|823205|823206|823207|823208|823209|823210|823211|823212|823213|823214|823215|823216|823217|823218|823219|823220|823221|823222|851263|858893|863237|863238|863239|863240|863241|863242|863243|863244|863245|863246|863247|863247|863248|863249|863250|863251|863252|863253|863254|863255|863256|863257|863258|863259|863260|863261|863262|863263|863264|863265|865085|865086|865087|865088|865089|921790|921791|921792|921793|921794|921795|921796|921797|921798|921799|921800|921801|921802|921803|930220|930221|930222|930223|930224|930225|930226|930227|930228|930229|930230|930231|930232|930233|930234|930235|930236|930237|930238|939787|939788|940614|941649|941650|941651|941652|941653|941654|941655|952205|952206|952207|952208|952209|952210|952211|952212|952213|960417|964140|970670|971575", + "upstreamId": "20950|20951|20952|20955|32662|32662|32663|32663|32664|32664|32669|32669|32670|33886|33887|34003|34007|79970|79970|152916|171056|194182|196497|196498|196498|196500|196500|205724|227189|227189|227190|227190|249594|249594|249595|249596|249599|249601|249602|249603|249605|249607|249607|249608|249608|249609|249609|249610|249610|249611|249611|249612|249613|249613|249615|249615|249616|249618|249618|249619|249621|249621|249623|249623|249624|249624|249625|249626|249628|249628|249629|249629|249633|249633|249634|249635|249635|249636|249636|249637|249638|249638|249639|249639|249640|249640|249641|249642|249642|249643|249643|249644|249644|249646|249646|249647|249648|249648|249649|249649|249651|249651|249652|249652|249653|249653|249654|249655|249655|249656|249657|249657|249658|249658|249659|249660|249660|259644|263994|263994|278347|278349|278355|278356|278356|278357|278357|278359|278359|278361|278361|278362|278363|278363|278368|278369|278371|278372|278372|278376|278376|278377|278379|278379|278384|278384|278385|278386|278391|278395|278398|278405|278405|278411|278422|278423|278423|278424|278424|278426|278438|278446|278446|278451|278451|278460|279473|279473|279475|279475|279478|279489|279501|279515|279515|279518|279518|279519|279523|279523|279533|279554|279555|279555|279557|279562|279562|279563|279563|279566|279567|279573|279574|279575|279579|279579|279581|279581|279586|279590|279590|279601|279605|279606|279606|279607|279607|279608|279608|279611|279611|279619|279619|279620|279621|279621|279640|279640|279646|279646|279649|279649|279658|279658|279659|279659|279661|279661|279665|279665|279671|279671|279672|279672|279675|279675|279685|279685|279687|279687|279688|279689|279689|279705|279706|279709|359213|364590|364594|364595|364712|364712|364714|364715|364719|364720|364723|364732|364739|364746|364764|364767|364770|364770|364794|364797|364801|389351|389351|389357|405008|405009|405010|405011|405012|413260|413260|414755|421195|421195|425328|438575|440422|440423|440424|440426|440427|442691|442692|442693|442695|447385|447395|447398|447399|447402|447413|447495|447496|447498|447498|447507|447513|447514|447516|447523|447524|447524|447528|447531|447531|447539|447540|447540|447594|447601|447601|447604|447611|447612|447618|447619|447622|447627|447629|447632|447633|447635|447636|447638|447639|447640|447641|447646|447648|447654|447657|447666|447675|447676|447676|481576|495100|498170|498172|498183|498183|498193|498195|498205|498209|498233|498327|498361|515342|515348|515358|515360|515365|515412|515417|515420|515423|515425|515427|515431|515432|515444|515445|515445|515449|515458|515459|515459|515464|515465|515467|515469|515470|515471|515472|515473|515474|515476|515482|515485|515486|515486|515491|515492|515506|515506|515507|536571|538944|556738|556740|556742|556744|556746|556748|556748|556750|556752|556752|556773|556775|556777|556779|556781|556783|556785|556787|556789|557088|557090|557092|557094|557096|557098|557100|557102|557104|557106|557106|557108|558286|558288|558290|558292|558294|558296|558298|558300|558309|558311|558313|558315|576456|576456|576456|578373|582270|626306|627230|627231|627232|627233|627234|627235|627236|627237|627238|627239|627240|627241|627242|627243|627244|627245|627246|627247|627248|627249|627250|627251|627252|627253|627254|627255|627256|627257|627258|627259|627260|627261|627262|627262|627263|627264|627265|627266|627267|627268|627269|627270|627271|627272|627273|627274|650600|650605|650615|650716|680038|683297|683298|683299|683300|683301|683302|685603|685604|685605|685605|685606|685610|685613|685614|685615|685615|685617|685619|685619|685620|685622|685623|685624|689636|689637|689639|690442|690443|690444|690448|690450|718509|731994|745976|745982|761465|761465|774431|780437|780438|780444|787022|789912|789913|794524|794532|794534|794534|823174|823175|823176|823177|823178|823179|823180|823181|823182|823183|823184|823185|823186|823187|823188|823189|823190|823191|823192|823193|823194|823195|823196|823197|823198|823199|823200|823201|823202|823203|823204|823205|823206|823207|823208|823209|823210|823211|823212|823213|823214|823215|823216|823217|823218|823219|823220|823221|823222|851263|858893|863237|863238|863239|863240|863241|863242|863243|863244|863245|863246|863247|863247|863248|863249|863250|863251|863252|863253|863254|863255|863256|863257|863258|863259|863260|863261|863262|863263|863264|863265|865085|865086|865087|865088|865089|921790|921791|921792|921793|921794|921795|921796|921797|921798|921799|921800|921801|921802|921803|930220|930221|930222|930223|930224|930225|930226|930227|930228|930229|930230|930231|930232|930233|930234|930235|930236|930237|930238|939787|939788|940614|941649|941650|941651|941652|941653|941654|941655|952205|952206|952207|952208|952209|952210|952211|952212|952213|960417|964140|970670|971575", "text": "Hypokalemic periodic paralysis 1" }, { - "baseId": "20953|34005|34006|34013|34014|91506|98768|98768|98770|98770|98771|98771|135674|135674|135675|135675|135676|135676|135677|135678|135678|135679|135680|135681|135681|135682|135683|135683|135684|135685|135686|135686|135687|135687|135688|135688|152918|178051|191494|192958|194295|213911|247138|256315|256316|256317|256318|256319|256320|256321|256322|256323|256327|256327|256329|256332|256333|256335|256336|256337|329360|329362|329367|329369|329371|329373|329379|329380|329382|329383|329385|329389|329390|329392|329395|329397|329399|339613|339614|339615|339620|339621|339625|339628|339637|339639|339643|339644|339649|339650|339652|339653|339654|339656|339658|339662|339663|339663|339669|339670|339672|339673|339679|339681|339683|339684|339686|339687|339689|345371|345376|345377|345380|345382|345384|345386|345389|345394|345398|345399|345401|345403|345404|345406|345408|345412|345415|345416|345419|345423|345424|345424|345425|346746|346753|346755|346760|346762|346764|346768|346772|346773|346775|346778|346779|346781|346786|346786|346789|346790|346791|346792|346793|346797|422187|426240|442008|467224|468176|468535|531474|531569|531714|531926|569488|569512|571437|571456|574567|577672|646390|646397|646412|646434|656460|694143|694149|694153|694160|704284|704290|740942|797587|798721|798722|845908|878131|878132|878133|878134|878135|878136|878137|878138|878139|878140|878141|878142|878143|878144|878145|878146|878147|878148|878149|878150|878151|878152|878153|878154|878155|878156|878157|878158|878159|878160|878161|878162|878163|878164|878165|878166", + "upstreamId": "20953|34005|34006|34013|34014|91506|98768|98768|98770|98770|98771|98771|135674|135674|135675|135675|135676|135676|135677|135678|135678|135679|135680|135681|135681|135682|135683|135683|135684|135685|135686|135686|135687|135687|135688|135688|152918|178051|191494|192958|194295|213911|247138|256315|256316|256317|256318|256319|256320|256321|256322|256323|256327|256327|256329|256332|256333|256335|256336|256337|329360|329362|329367|329369|329371|329373|329379|329380|329382|329383|329385|329389|329390|329392|329395|329397|329399|339613|339614|339615|339620|339621|339625|339628|339637|339639|339643|339644|339649|339650|339652|339653|339654|339656|339658|339662|339663|339663|339669|339670|339672|339673|339679|339681|339683|339684|339686|339687|339689|345371|345376|345377|345380|345382|345384|345386|345389|345394|345398|345399|345401|345403|345404|345406|345408|345412|345415|345416|345419|345423|345424|345424|345425|346746|346753|346755|346760|346762|346764|346768|346772|346773|346775|346778|346779|346781|346786|346786|346789|346790|346791|346792|346793|346797|422187|426240|442008|467224|468176|468535|531474|531569|531714|531926|569488|569512|571437|571456|574567|577672|646390|646397|646412|646434|656460|694143|694149|694153|694160|704284|704290|740942|797587|798721|798722|845908|878131|878132|878133|878134|878135|878136|878137|878138|878139|878140|878141|878142|878143|878144|878145|878146|878147|878148|878149|878150|878151|878152|878153|878154|878155|878156|878157|878158|878159|878160|878161|878162|878163|878164|878165|878166", "text": "Congenital myasthenic syndrome, acetazolamide-responsive" }, { - "baseId": "20964|20965|20966|20967|20968|20969|20970|20971|20972|20973|20974|20975|20976|20977|20979|39362|251068|266845|289715|289720|289721|289724|289725|290487|290488|290489|290490|290494|290500|290501|290508|290510|293566|293570|293577|293578|293606|293610|293621|293622|293624|293644|294147|294148|294149|294155|294157|294163|294166|294167|294173|294176|294177|294178|294179|294182|432291|536194|536195|551446|679900|720351|790374|888526|888527|888528|888529|888530|888531|888532|888533|888534|888535|888536|888537|888538|888539|888540|888541|888542|888543|888544|888545|888546|888547|888548|888549|888550|888551|888552|888553|888554|888555|888556|888557|888558|888559|891630|921194|962698|970763", + "upstreamId": "20964|20965|20966|20967|20968|20969|20970|20971|20972|20973|20974|20975|20976|20977|20979|39362|251068|266845|289715|289720|289721|289724|289725|290487|290488|290489|290490|290494|290500|290501|290508|290510|293566|293570|293577|293578|293606|293610|293621|293622|293624|293644|294147|294148|294149|294155|294157|294163|294166|294167|294173|294176|294177|294178|294179|294182|432291|536194|536195|551446|679900|720351|790374|888526|888527|888528|888529|888530|888531|888532|888533|888534|888535|888536|888537|888538|888539|888540|888541|888542|888543|888544|888545|888546|888547|888548|888549|888550|888551|888552|888553|888554|888555|888556|888557|888558|888559|891630|921194|962698|970763", "text": "Primary hypomagnesemia" }, { - "baseId": "20978", + "upstreamId": "20978", "text": "Hypercalciuria, childhood, self-limiting" }, { - "baseId": "20980", + "upstreamId": "20980", "text": "Hypertension, diastolic, resistance to" }, { - "baseId": "20992|20993|172315|172315|172317|172319|366990|366994|368248|500572|518913|519128|538972|562485|562493|630982|630983|630984|827613|827614|931798|943367|953362", + "upstreamId": "20992|20993|172315|172315|172317|172319|366990|366994|368248|500572|518913|519128|538972|562485|562493|630982|630983|630984|827613|827614|931798|943367|953362", "text": "Glycogen storage disease XV" }, { - "baseId": "20994|20995|20996|20997|20998|20999|21000|21001|21002|21003|135764|135765|135766|265447|277092|277098|277101|277102|277109|277129|277131|277132|277134|277142|277367|277368|277371|277386|277388|277391|277392|277399|277400|277407|277414|278152|278186|278187|278202|278207|278216|278218|278225|278230|278232|278233|278234|278245|278255|364528|425321|485690|485691|498115|590454|590455|619963|620707|794474|862676|862677|862678|862679|862680|862681|862682|862683|862684|862685|862686|862687|862688|862689|862690|862691|862692|862693|862694|862695|862696|862697", + "upstreamId": "20994|20995|20996|20997|20998|20999|21000|21001|21002|21003|135764|135765|135766|265447|277092|277098|277101|277102|277109|277129|277131|277132|277134|277142|277367|277368|277371|277386|277388|277391|277392|277399|277400|277407|277414|278152|278186|278187|278202|278207|278216|278218|278225|278230|278232|278233|278234|278245|278255|364528|425321|485690|485691|498115|590454|590455|619963|620707|794474|862676|862677|862678|862679|862680|862681|862682|862683|862684|862685|862686|862687|862688|862689|862690|862691|862692|862693|862694|862695|862696|862697", "text": "Megaloblastic anemia, thiamine-responsive, with diabetes mellitus and sensorineural deafness" }, { - "baseId": "21004|21005|21006|21007|21009|21010|88254|106456|177385|178020|227323|263798|265746|305498|305503|314723|431733|513070|551554|551555|551556|788828|799550|799551|799552|799553|799554|799555|818257|919160|919161|970882", + "upstreamId": "21004|21005|21006|21007|21009|21010|88254|106456|177385|178020|227323|263798|265746|305498|305503|314723|431733|513070|551554|551555|551556|788828|799550|799551|799552|799553|799554|799555|818257|919160|919161|970882", "text": "Retinitis pigmentosa 1" }, { - "baseId": "21011|21012|94254|364011|404818|463433|463435|463436|464000|464001|464017|464328|464330|464336|464337|464344|464443|464445|464446|464453|486753|486754|486755|527836|528268|528323|528324|528329|528331|528336|528339|528341|528698|528703|528780|566587|566601|567758|568236|568237|568238|572615|572884|572885|572890|642635|642636|642637|642638|652358|652560|652964|725762|739285|778076|778293|784746|784747|787976|820634|820635|820636|820637|820638|820639|820640|820641|841663|841664|841665|841666|841667|841668|841669|841670|841671|841672|841673|851571|851573|852011|927147|927148|927149|936685|936686|936687|940310|941065|948632|948633|948634|957264|960096", + "upstreamId": "21011|21012|94254|364011|404818|463433|463435|463436|464000|464001|464017|464328|464330|464336|464337|464344|464443|464445|464446|464453|486753|486754|486755|527836|528268|528323|528324|528329|528331|528336|528339|528341|528698|528703|528780|566587|566601|567758|568236|568237|568238|572615|572884|572885|572890|642635|642636|642637|642638|652358|652560|652964|725762|739285|778076|778293|784746|784747|787976|820634|820635|820636|820637|820638|820639|820640|820641|841663|841664|841665|841666|841667|841668|841669|841670|841671|841672|841673|851571|851573|852011|927147|927148|927149|936685|936686|936687|940310|941065|948632|948633|948634|957264|960096", "text": "Molybdenum cofactor deficiency, complementation group C" }, { - "baseId": "21012|292646|292670|297436|302791|313547|313556|313557|313576|313577|313581|313583|313584|313586|313588|313589|313593|313595|313596|313597|313604|313606|313615|313617|313619|319757|319758|319759|319760|319765|319773|319775|319776|319778|319789|319791|319799|319801|325930|325934|325935|325939|325940|325946|325957|325977|325978|325983|325988|325993|326885|326886|326890|326892|326893|326901|326902|326903|326919|326920|326923|326932|326947|326948|326956|326958|326962|353179|353180|353668", + "upstreamId": "21012|292646|292670|297436|302791|313547|313556|313557|313576|313577|313581|313583|313584|313586|313588|313589|313593|313595|313596|313597|313604|313606|313615|313617|313619|319757|319758|319759|319760|319765|319773|319775|319776|319778|319789|319791|319799|319801|325930|325934|325935|325939|325940|325946|325957|325977|325978|325983|325988|325993|326885|326886|326890|326892|326893|326901|326902|326903|326919|326920|326923|326932|326947|326948|326956|326958|326962|353179|353180|353668", "text": "Hyperekplexia" }, { - "baseId": "21012|31099|31100|31101|31102|31103|31104|31105|31106|31107|31108|31109|31110|31111|31112|31113|46891|46892|46893|46894|46896|46897|46898|46899|46901|46902|49426|166114|227283|296498|296505|296506|296507|296508|296512|296514|298404|298405|298406|298411|298412|298414|302510|302516|302517|302518|302524|302771|302779|302782|302783|302787|302789|302792|454765|454769|454773|454824|454825|454827|455328|455330|455624|455628|455632|480412|513277|520937|520942|520944|521175|521176|521181|521372|521413|521416|521426|521430|535737|559964|560221|560223|560225|560227|560229|560340|560342|560344|563001|563003|564942|564945|564948|564956|564966|564973|620781|633656|633657|633658|633659|633660|633661|633662|633663|633664|651228|651313|654380|691809|691810|709767|721338|721340|734980|764981|787318|798554|798555|830548|830549|830550|830551|830552|830553|830554|830555|830556|830557|830558|830559|830560|851270|893641|893642|893643|896065|896066|918937|923956|923957|923958|923959|932804|932805|932806|939997|940809|940810|944498|944499|944500|944501|944502|944503|944504|954097|954098|959760|960558", + "upstreamId": "21012|31099|31100|31101|31102|31103|31104|31105|31106|31107|31108|31109|31110|31111|31112|31113|46891|46892|46893|46894|46896|46897|46898|46899|46901|46902|49426|166114|227283|296498|296505|296506|296507|296508|296512|296514|298404|298405|298406|298411|298412|298414|302510|302516|302517|302518|302524|302771|302779|302782|302783|302787|302789|302792|454765|454769|454773|454824|454825|454827|455328|455330|455624|455628|455632|480412|513277|520937|520942|520944|521175|521176|521181|521372|521413|521416|521426|521430|535737|559964|560221|560223|560225|560227|560229|560340|560342|560344|563001|563003|564942|564945|564948|564956|564966|564973|620781|633656|633657|633658|633659|633660|633661|633662|633663|633664|651228|651313|654380|691809|691810|709767|721338|721340|734980|764981|787318|798554|798555|830548|830549|830550|830551|830552|830553|830554|830555|830556|830557|830558|830559|830560|851270|893641|893642|893643|896065|896066|918937|923956|923957|923958|923959|932804|932805|932806|939997|940809|940810|944498|944499|944500|944501|944502|944503|944504|954097|954098|959760|960558", "text": "Hyperekplexia 1" }, { - "baseId": "21013", + "upstreamId": "21013", "text": "FACTOR VII-ACTIVATING PROTEASE MARBURG I POLYMORPHISM" }, { - "baseId": "21013|31459", + "upstreamId": "21013|31459", "text": "Venous thromboembolism, susceptibility to" }, { - "baseId": "21013", + "upstreamId": "21013", "text": "THYROID CANCER, NONMEDULLARY, 5, SUSCEPTIBILITY TO" }, { - "baseId": "21013|309516|309517|309521|309526|309527|309531|309532|309533|309537|309539|309542|309544|309548|309555|309572|314323|314324|314334|314335|314336|314337|314338|314342|314345|314349|314354|320281|320283|320285|320300|320309|320310|320314|320316|320326|320341|320351|320354|320357|320359|320360|320366|320367|320745|320753|320754|320755|320759|320762|320770|320782|320793|320794|320808|320828|320830|320831|620345|723772|723773|723774|865445|865446|865447|865448|865449|865450|865451|865452|865453|865454|865455|865456|865457|865458|865459|865460|865461|865462|865463|865464|865465|865466|865467|865468|865469|865470|865471|865472|865473|865474|865475|865476|865477|865478|865479|865480|868445|868446|868447|868448|868449", + "upstreamId": "21013|309516|309517|309521|309526|309527|309531|309532|309533|309537|309539|309542|309544|309548|309555|309572|314323|314324|314334|314335|314336|314337|314338|314342|314345|314349|314354|320281|320283|320285|320300|320309|320310|320314|320316|320326|320341|320351|320354|320357|320359|320360|320366|320367|320745|320753|320754|320755|320759|320762|320770|320782|320793|320794|320808|320828|320830|320831|620345|723772|723773|723774|865445|865446|865447|865448|865449|865450|865451|865452|865453|865454|865455|865456|865457|865458|865459|865460|865461|865462|865463|865464|865465|865466|865467|865468|865469|865470|865471|865472|865473|865474|865475|865476|865477|865478|865479|865480|868445|868446|868447|868448|868449", "text": "Factor VII Marburg I Variant Thrombophilia" }, { - "baseId": "21014|21015|21016|21017|76940|143061|143062|143063|143064|143065|143066|143067|143069|143070|200259|200264|200267|200271|200273|200277|254851|273105|319895|319899|319904|319905|319909|319910|328423|328426|334877|334879|334881|334882|334883|334884|336683|336684|336721|336725|336748|336769|336775|336776|513339|527736|527765|612302|641944|677066|693381|693382|725502|753856|753857|769572|791345|861130|871370|871371|871372|871373|871374|871375|871376|871377|871378|871379|871380|871381|871382|872339|872340|872341|872342", + "upstreamId": "21014|21015|21016|21017|76940|143061|143062|143063|143064|143065|143066|143067|143069|143070|200259|200264|200267|200271|200273|200277|254851|273105|319895|319899|319904|319905|319909|319910|328423|328426|334877|334879|334881|334882|334883|334884|336683|336684|336721|336725|336748|336769|336775|336776|513339|527736|527765|612302|641944|677066|693381|693382|725502|753856|753857|769572|791345|861130|871370|871371|871372|871373|871374|871375|871376|871377|871378|871379|871380|871381|871382|872339|872340|872341|872342", "text": "Mitochondrial DNA depletion syndrome 5 (encephalomyopathic with or without methylmalonic aciduria)" }, { - "baseId": "21018", + "upstreamId": "21018", "text": "ABri amyloidosis" }, { - "baseId": "21019|964404", + "upstreamId": "21019|964404", "text": "ADan amyloidosis" }, { - "baseId": "21020|21020|39353|39354|39356|48063|48065|48065|53941|53943|53944|53945|53946|53947|53947|53948|53948|53949|53949|53950|53951|53951|53952|53953|53953|53956|53957|53958|53959|140194|140196|140196|140197|140198|166295|174606|174610|174612|174612|174613|174614|174615|174615|174616|174619|174620|174620|174883|174886|174887|174887|174888|174888|174889|174890|174893|174893|174894|174894|174896|174896|174897|174897|178610|178610|188821|189835|189836|189839|189841|189841|189842|189842|192373|192373|193540|198232|198233|198233|198236|198237|198238|221940|224381|224383|229736|229738|229739|229739|229741|229742|229744|236775|236776|240749|240750|240750|240751|240752|240753|258631|258632|258634|264448|267801|278736|309573|309573|309575|309576|314356|314357|314357|314361|314361|314365|320371|320373|320378|320381|320389|320389|320396|320396|320399|320399|320415|320416|320846|320847|320848|320849|320861|320862|359800|359829|359836|370643|371177|371184|371184|371190|371575|371576|371579|371583|397158|397162|397176|397397|397399|397400|397403|397406|397557|397564|397569|397630|397717|397725|397734|397739|397741|407817|407821|421776|421778|444560|459701|459894|459895|459898|460134|460138|460145|460151|460153|460617|495662|502751|502753|503135|503142|503287|503583|510148|510149|510150|510151|510154|510155|524982|524986|524987|524991|524993|525203|525204|525210|525319|525321|525323|525326|525411|525486|525490|525492|525499|525501|525506|525519|563588|563589|564497|564499|564504|564505|566103|566176|566178|566179|566181|566183|566184|566186|569508|569514|611727|638740|638741|638742|638743|638744|638745|638746|638747|638748|638749|638750|638751|638752|638753|638754|638755|638756|638757|652088|652124|652253|687590|687591|687592|687593|751987|767651|783543|783546|836651|836652|836653|836654|836654|836655|836656|836657|836658|836659|836660|836661|836662|836663|836664|836665|836666|836667|836668|836669|836670|836671|836672|836673|836674|836675|836676|836677|865481|865482|865483|865484|865485|865486|865487|865488|868450|925752|925753|925754|925755|925756|925757|925758|934965|934966|934967|934968|934969|934970|934971|934972|934973|934974|934975|940951|946826|946827|946828|946829|946830|946831|946832|946833|946834|946835|955991|955992|955993|955994|955995|955996|955997|955998|955999|956000|956001|956002|967230", + "upstreamId": "21020|21020|39353|39354|39356|48063|48065|48065|53941|53943|53944|53945|53946|53947|53947|53948|53948|53949|53949|53950|53951|53951|53952|53953|53953|53956|53957|53958|53959|140194|140196|140196|140197|140198|166295|174606|174610|174612|174612|174613|174614|174615|174615|174616|174619|174620|174620|174883|174886|174887|174887|174888|174888|174889|174890|174893|174893|174894|174894|174896|174896|174897|174897|178610|178610|188821|189835|189836|189839|189841|189841|189842|189842|192373|192373|193540|198232|198233|198233|198236|198237|198238|221940|224381|224383|229736|229738|229739|229739|229741|229742|229744|236775|236776|240749|240750|240750|240751|240752|240753|258631|258632|258634|264448|267801|278736|309573|309573|309575|309576|314356|314357|314357|314361|314361|314365|320371|320373|320378|320381|320389|320389|320396|320396|320399|320399|320415|320416|320846|320847|320848|320849|320861|320862|359800|359829|359836|370643|371177|371184|371184|371190|371575|371576|371579|371583|397158|397162|397176|397397|397399|397400|397403|397406|397557|397564|397569|397630|397717|397725|397734|397739|397741|407817|407821|421776|421778|444560|459701|459894|459895|459898|460134|460138|460145|460151|460153|460617|495662|502751|502753|503135|503142|503287|503583|510148|510149|510150|510151|510154|510155|524982|524986|524987|524991|524993|525203|525204|525210|525319|525321|525323|525326|525411|525486|525490|525492|525499|525501|525506|525519|563588|563589|564497|564499|564504|564505|566103|566176|566178|566179|566181|566183|566184|566186|569508|569514|611727|638740|638741|638742|638743|638744|638745|638746|638747|638748|638749|638750|638751|638752|638753|638754|638755|638756|638757|652088|652124|652253|687590|687591|687592|687593|751987|767651|783543|783546|836651|836652|836653|836654|836654|836655|836656|836657|836658|836659|836660|836661|836662|836663|836664|836665|836666|836667|836668|836669|836670|836671|836672|836673|836674|836675|836676|836677|865481|865482|865483|865484|865485|865486|865487|865488|868450|925752|925753|925754|925755|925756|925757|925758|934965|934966|934967|934968|934969|934970|934971|934972|934973|934974|934975|940951|946826|946827|946828|946829|946830|946831|946832|946833|946834|946835|955991|955992|955993|955994|955995|955996|955997|955998|955999|956000|956001|956002|967230", "text": "Myofibrillar myopathy, BAG3-related" }, { - "baseId": "21020|39352|39353|39353|39354|39354|39355|39356|39356|48063|48063|48064|48065|48065|53941|53943|53944|53945|53946|53947|53947|53948|53948|53949|53950|53951|53951|53952|53953|53953|53956|53957|53958|53959|140194|140196|140196|140197|140198|174606|174610|174612|174612|174613|174614|174615|174615|174616|174619|174620|174620|174883|174886|174887|174888|174888|174889|174890|174893|174894|174894|174896|174896|174897|174897|178610|178610|188821|189835|189836|189839|189841|189841|189842|189842|192373|192373|193540|198232|198233|198233|198236|198237|198238|221940|224381|224383|229736|229738|229739|229739|229741|229742|229744|236775|236776|240749|240750|240750|240751|240752|240753|258631|258632|258634|264448|267801|309573|309573|309575|309576|314356|314357|314357|314361|314361|314365|320371|320373|320378|320381|320389|320389|320396|320396|320399|320399|320415|320416|320846|320847|320848|320849|320861|320862|359800|359829|359836|370643|371177|371184|371184|371190|371575|371576|371579|371583|397158|397162|397176|397178|397397|397399|397400|397403|397406|397557|397564|397567|397569|397630|397717|397725|397734|397739|397741|407817|407821|421776|421778|424965|444560|459701|459894|459895|459898|460134|460138|460145|460151|460153|460617|495662|502751|502753|503135|503142|503287|503583|510148|510149|510150|510151|510154|510155|524982|524986|524987|524991|524993|525203|525204|525210|525319|525321|525323|525326|525411|525486|525490|525492|525499|525501|525506|525519|538626|563588|563589|564497|564499|564504|564505|566103|566176|566178|566179|566181|566183|566184|566186|569508|569514|611727|625807|638740|638741|638742|638743|638744|638745|638746|638747|638748|638749|638750|638751|638752|638753|638754|638755|638756|638757|652088|652124|652253|687590|687591|687592|687593|751987|767651|783543|783546|800401|836651|836652|836653|836654|836654|836655|836656|836657|836658|836659|836660|836661|836662|836663|836664|836665|836666|836667|836668|836669|836670|836671|836672|836673|836674|836675|836676|836677|865481|865482|865483|865484|865485|865486|865487|865488|868450|925752|925753|925754|925755|925756|925757|925758|934965|934966|934967|934968|934969|934970|934971|934972|934973|934974|934975|940951|946826|946827|946828|946829|946830|946831|946832|946833|946834|946835|955991|955992|955993|955994|955995|955996|955997|955998|955999|956000|956001|956002", + "upstreamId": "21020|39352|39353|39353|39354|39354|39355|39356|39356|48063|48063|48064|48065|48065|53941|53943|53944|53945|53946|53947|53947|53948|53948|53949|53950|53951|53951|53952|53953|53953|53956|53957|53958|53959|140194|140196|140196|140197|140198|174606|174610|174612|174612|174613|174614|174615|174615|174616|174619|174620|174620|174883|174886|174887|174888|174888|174889|174890|174893|174894|174894|174896|174896|174897|174897|178610|178610|188821|189835|189836|189839|189841|189841|189842|189842|192373|192373|193540|198232|198233|198233|198236|198237|198238|221940|224381|224383|229736|229738|229739|229739|229741|229742|229744|236775|236776|240749|240750|240750|240751|240752|240753|258631|258632|258634|264448|267801|309573|309573|309575|309576|314356|314357|314357|314361|314361|314365|320371|320373|320378|320381|320389|320389|320396|320396|320399|320399|320415|320416|320846|320847|320848|320849|320861|320862|359800|359829|359836|370643|371177|371184|371184|371190|371575|371576|371579|371583|397158|397162|397176|397178|397397|397399|397400|397403|397406|397557|397564|397567|397569|397630|397717|397725|397734|397739|397741|407817|407821|421776|421778|424965|444560|459701|459894|459895|459898|460134|460138|460145|460151|460153|460617|495662|502751|502753|503135|503142|503287|503583|510148|510149|510150|510151|510154|510155|524982|524986|524987|524991|524993|525203|525204|525210|525319|525321|525323|525326|525411|525486|525490|525492|525499|525501|525506|525519|538626|563588|563589|564497|564499|564504|564505|566103|566176|566178|566179|566181|566183|566184|566186|569508|569514|611727|625807|638740|638741|638742|638743|638744|638745|638746|638747|638748|638749|638750|638751|638752|638753|638754|638755|638756|638757|652088|652124|652253|687590|687591|687592|687593|751987|767651|783543|783546|800401|836651|836652|836653|836654|836654|836655|836656|836657|836658|836659|836660|836661|836662|836663|836664|836665|836666|836667|836668|836669|836670|836671|836672|836673|836674|836675|836676|836677|865481|865482|865483|865484|865485|865486|865487|865488|868450|925752|925753|925754|925755|925756|925757|925758|934965|934966|934967|934968|934969|934970|934971|934972|934973|934974|934975|940951|946826|946827|946828|946829|946830|946831|946832|946833|946834|946835|955991|955992|955993|955994|955995|955996|955997|955998|955999|956000|956001|956002", "text": "Dilated cardiomyopathy 1HH" }, { - "baseId": "21021|21022|21023|21024|21025|21026|21027|21028|21029|21030|237033|255305|322978|322979|322988|322989|322993|322995|322996|332529|332530|332531|332533|332538|332539|332547|332549|332557|332562|332568|332575|332576|332580|332595|332597|339482|339485|339493|339499|339506|339509|339514|339515|340919|340922|340924|340926|340927|340931|340932|340935|340936|340943|404822|409311|429705|429706|445391|464784|464999|528934|528939|529048|529049|529382|567204|567206|569023|569534|569535|573417|643437|643438|643439|643440|643441|643442|652397|652680|652686|754546|784968|842554|842555|842556|842557|842558|842559|873876|873877|873878|873879|873880|873881|873882|873883|873884|873885|873886|873887|873888|873889|873890|873891|873892|873893|873894|873895|873896|873897|873898|873899|873900|873901|873902|873903|873904|873905|873906|873907|873908|873909|873910|873911|873912|873913|873914|876544|876545|927382|927383|927384|927385|936997|936998|941093|948949|957459|957460|963174", + "upstreamId": "21021|21022|21023|21024|21025|21026|21027|21028|21029|21030|237033|255305|322978|322979|322988|322989|322993|322995|322996|332529|332530|332531|332533|332538|332539|332547|332549|332557|332562|332568|332575|332576|332580|332595|332597|339482|339485|339493|339499|339506|339509|339514|339515|340919|340922|340924|340926|340927|340931|340932|340935|340936|340943|404822|409311|429705|429706|445391|464784|464999|528934|528939|529048|529049|529382|567204|567206|569023|569534|569535|573417|643437|643438|643439|643440|643441|643442|652397|652680|652686|754546|784968|842554|842555|842556|842557|842558|842559|873876|873877|873878|873879|873880|873881|873882|873883|873884|873885|873886|873887|873888|873889|873890|873891|873892|873893|873894|873895|873896|873897|873898|873899|873900|873901|873902|873903|873904|873905|873906|873907|873908|873909|873910|873911|873912|873913|873914|876544|876545|927382|927383|927384|927385|936997|936998|941093|948949|957459|957460|963174", "text": "Griscelli syndrome type 2" }, { - "baseId": "21031|21032|21033|21034|21035|21036|21037|21038|21039|46956|46958|46959|46960|46962|46963|142828|142829|142830|200257|319824|319829|319833|319837|319839|319841|319848|319850|319854|319857|319858|319859|319871|319872|319876|328351|328357|328359|328371|328373|328382|328383|328385|328386|334805|334809|334810|334814|334823|334824|334829|334831|334833|334838|334846|336535|336540|336546|336563|336565|336567|336568|336583|336589|336595|336610|336612|336614|336617|336620|336621|336629|336635|336651|372834|373857|375688|409028|426045|504803|538434|568548|572172|610519|641941|641942|641943|693379|693380|713928|753845|753846|776219|784603|840891|840892|840893|852540|871315|871316|871317|871318|871319|871320|871321|871322|871323|871324|871325|871326|871327|871328|871329|871330|871331|871332|871333|871334|871335|871336|871337|871338|871339|871340|871341|871342|871343|871344|871345|871346|871347|871348|871349|871350|871351|926918|926919|926920|936446|957105|957106|957107|961871|979378|979379|979380|979381|979382|979383", + "upstreamId": "21031|21032|21033|21034|21035|21036|21037|21038|21039|46956|46958|46959|46960|46962|46963|142828|142829|142830|200257|319824|319829|319833|319837|319839|319841|319848|319850|319854|319857|319858|319859|319871|319872|319876|328351|328357|328359|328371|328373|328382|328383|328385|328386|334805|334809|334810|334814|334823|334824|334829|334831|334833|334838|334846|336535|336540|336546|336563|336565|336567|336568|336583|336589|336595|336610|336612|336614|336617|336620|336621|336629|336635|336651|372834|373857|375688|409028|426045|504803|538434|568548|572172|610519|641941|641942|641943|693379|693380|713928|753845|753846|776219|784603|840891|840892|840893|852540|871315|871316|871317|871318|871319|871320|871321|871322|871323|871324|871325|871326|871327|871328|871329|871330|871331|871332|871333|871334|871335|871336|871337|871338|871339|871340|871341|871342|871343|871344|871345|871346|871347|871348|871349|871350|871351|926918|926919|926920|936446|957105|957106|957107|961871|979378|979379|979380|979381|979382|979383", "text": "Hyperornithinemia-hyperammonemia-homocitrullinuria syndrome" }, { - "baseId": "21041|21042|21043|21044|21045|21046|34360|34369|97542|190535|191566|200164|200164|227314|247322|252988|252989|274313|303680|303681|303690|303693|303697|303698|303699|303706|303715|307111|307112|307115|307116|307119|307122|307124|307127|312042|312049|312060|312061|312066|312067|312069|312077|312078|312080|312094|312111|312113|312132|312144|404776|444192|493370|578465|586473|587153|588213|588761|620281|687143|692336|766492|898557|898558|898559|898560|898561|898562|898563|898564|898565|898566|898567|898568|898569|900421|900422|900423|900424", + "upstreamId": "21041|21042|21043|21044|21045|21046|34360|34369|97542|190535|191566|200164|200164|227314|247322|252988|252989|274313|303680|303681|303690|303693|303697|303698|303699|303706|303715|307111|307112|307115|307116|307119|307122|307124|307127|312042|312049|312060|312061|312066|312067|312069|312077|312078|312080|312094|312111|312113|312132|312144|404776|444192|493370|578465|586473|587153|588213|588761|620281|687143|692336|766492|898557|898558|898559|898560|898561|898562|898563|898564|898565|898566|898567|898568|898569|900421|900422|900423|900424", "text": "Citrullinemia type II" }, { - "baseId": "21041|21042|21043|21045|34360|34361|34362|34363|34364|34365|34366|34367|34368|34369|97542|200164|227314|247321|247322|247323|247324|247325|247326|404776|578465|581759|581761|801657|801658|801659|801660", + "upstreamId": "21041|21042|21043|21045|34360|34361|34362|34363|34364|34365|34366|34367|34368|34369|97542|200164|227314|247321|247322|247323|247324|247325|247326|404776|578465|581759|581761|801657|801658|801659|801660", "text": "Neonatal intrahepatic cholestasis caused by citrin deficiency" }, { - "baseId": "21041|21042|21043|21044|21045|34360|34364|34365|34367|34369|190535|191566|200164|227314|252990|271238|274313|274349|303698|303705|307115|307119|312065|312066|312094|312111|312113|312131|312132|312144|359822|369321|369322|370035|444192|458113|491041|492959|493326|493362|562318|567289|584576|585995|587153|588036|636492|636493|636494|636495|687143|692336|736363|750859|766492|766493|775202|775388|775429|790765|819926|819927|819928|833998|833999|834000|834001|834002|834003|851169|852395|852404|924962|924963|934048|934049|934050|934051|940886|945806|945807|955265|955266", + "upstreamId": "21041|21042|21043|21044|21045|34360|34364|34365|34367|34369|190535|191566|200164|227314|252990|271238|274313|274349|303698|303705|307115|307119|312065|312066|312094|312111|312113|312131|312132|312144|359822|369321|369322|370035|444192|458113|491041|492959|493326|493362|562318|567289|584576|585995|587153|588036|636492|636493|636494|636495|687143|692336|736363|750859|766492|766493|775202|775388|775429|790765|819926|819927|819928|833998|833999|834000|834001|834002|834003|851169|852395|852404|924962|924963|934048|934049|934050|934051|940886|945806|945807|955265|955266", "text": "Citrin deficiency" }, { - "baseId": "21041|21044|34360|34369|190535|200164|227314|252988|274313|274349|303698|307115|312066|312094|567289|587153|687143|736363|766489|766492|978407|978408", + "upstreamId": "21041|21044|34360|34369|190535|200164|227314|252988|274313|274349|303698|307115|312066|312094|567289|587153|687143|736363|766489|766492|978407|978408", "text": "Late-onset citrullinemia" }, { - "baseId": "21047|21048|21049|21050|23797|28986|32735|33371|33372|138774|173810|173950|193532|229170|229171|229172|229173|231108|239357|239358|239359|239360|239361|239362|239363|239365|239366|239367|251487|251488|293425|293427|293428|293429|293433|293434|294824|294826|294836|294838|294839|294840|294843|294845|294846|294847|294855|294856|298453|298454|298455|298463|298466|298467|298468|298514|298516|298526|298527|298528|298529|298530|298538|298545|298546|393909|393911|393914|393919|393921|393925|393932|393933|394151|394152|394161|394164|394338|394351|394357|394360|394361|394366|421488|453167|453172|453174|453175|453177|453179|453183|453186|453196|453433|453438|453440|453451|453453|453455|453540|453541|453544|453546|453548|453549|453551|453553|453915|453916|453918|453919|453920|453924|453925|453927|453929|453930|473502|473506|473766|473769|473769|496319|496812|519909|519914|519926|519932|519937|519944|519952|519953|520167|520169|520172|520177|520191|520194|520196|520197|520198|520200|520204|520206|520208|552081|559683|559685|559687|559689|559691|559693|559840|559844|559846|559848|562017|563711|563716|563717|632205|632206|632207|632208|632209|632211|632212|632213|632214|632216|632217|632218|632219|632220|632221|632222|632223|632225|632226|632227|632228|632229|683633|686517|686518|686519|686522|686523|691563|691565|691566|691567|691568|709366|720981|748945|764465|774954|781958|790473|791190|807711|807714|829152|829153|829154|829155|829156|829157|829158|829159|829160|829161|829162|829163|829164|829165|829166|829167|829168|829169|829170|829171|829172|829173|829174|829175|829176|851504|857368|857369|857370|890665|890666|890667|890668|890669|890670|890671|890672|890673|890674|890675|890676|890677|890678|918895|973021", + "upstreamId": "21047|21048|21049|21050|23797|28986|32735|33371|33372|138774|173810|173950|193532|229170|229171|229172|229173|231108|239357|239358|239359|239360|239361|239362|239363|239365|239366|239367|251487|251488|293425|293427|293428|293429|293433|293434|294824|294826|294836|294838|294839|294840|294843|294845|294846|294847|294855|294856|298453|298454|298455|298463|298466|298467|298468|298514|298516|298526|298527|298528|298529|298530|298538|298545|298546|393909|393911|393914|393919|393921|393925|393932|393933|394151|394152|394161|394164|394338|394351|394357|394360|394361|394366|421488|453167|453172|453174|453175|453177|453179|453183|453186|453196|453433|453438|453440|453451|453453|453455|453540|453541|453544|453546|453548|453549|453551|453553|453915|453916|453918|453919|453920|453924|453925|453927|453929|453930|473502|473506|473766|473769|473769|496319|496812|519909|519914|519926|519932|519937|519944|519952|519953|520167|520169|520172|520177|520191|520194|520196|520197|520198|520200|520204|520206|520208|552081|559683|559685|559687|559689|559691|559693|559840|559844|559846|559848|562017|563711|563716|563717|632205|632206|632207|632208|632209|632211|632212|632213|632214|632216|632217|632218|632219|632220|632221|632222|632223|632225|632226|632227|632228|632229|683633|686517|686518|686519|686522|686523|691563|691565|691566|691567|691568|709366|720981|748945|764465|774954|781958|790473|791190|807711|807714|829152|829153|829154|829155|829156|829157|829158|829159|829160|829161|829162|829163|829164|829165|829166|829167|829168|829169|829170|829171|829172|829173|829174|829175|829176|851504|857368|857369|857370|890665|890666|890667|890668|890669|890670|890671|890672|890673|890674|890675|890676|890677|890678|918895|973021", "text": "Congenital central hypoventilation" }, { - "baseId": "21047|33373|138773|229171|393924|394157|453185|453435|473580|473763|520153|520182|520184|520191|559842|562022|563704|563707|632210|632215|632224|807706|807716|807720|807721|807725|807737|857370|923515|923516|923517|923518|923519|932339|932340|932341|932342|932343|932344|932345|932346|932347|932348|932349|932350|932351|939968|943999|944000|944001|944002|944003|944004|944005|944006|944007|944008|944009|944010|944011|944012|953776|953777|953778|953779|953780", + "upstreamId": "21047|33373|138773|229171|393924|394157|453185|453435|473580|473763|520153|520182|520184|520191|559842|562022|563704|563707|632210|632215|632224|807706|807716|807720|807721|807725|807737|857370|923515|923516|923517|923518|923519|932339|932340|932341|932342|932343|932344|932345|932346|932347|932348|932349|932350|932351|939968|943999|944000|944001|944002|944003|944004|944005|944006|944007|944008|944009|944010|944011|944012|953776|953777|953778|953779|953780", "text": "Haddad syndrome" }, { - "baseId": "21047", + "upstreamId": "21047", "text": "Central hypoventilation syndrome, late-onset" }, { - "baseId": "21050|21053|173810|173950|229171|229172|229173|239357|239362|239363|239365|239366|293425|293427|293428|293433|293434|294824|294826|294836|294838|294839|294840|294843|294845|294846|294847|294856|298453|298454|298455|298463|298466|298468|298514|298516|298526|298527|298529|298530|298538|298545|298546|473766|473769|520191|890665|890666|890667|890668|890669|890670|890671|890672|890673|890674|890675|890676|890677|890678", + "upstreamId": "21050|21053|173810|173950|229171|229172|229173|239357|239362|239363|239365|239366|293425|293427|293428|293433|293434|294824|294826|294836|294838|294839|294840|294843|294845|294846|294847|294856|298453|298454|298455|298463|298466|298468|298514|298516|298526|298527|298529|298530|298538|298545|298546|473766|473769|520191|890665|890666|890667|890668|890669|890670|890671|890672|890673|890674|890675|890676|890677|890678", "text": "Neuroblastoma 2" }, { - "baseId": "21051|21052", + "upstreamId": "21051|21052", "text": "Neuroblastoma with Hirschsprung disease" }, { - "baseId": "21054|211614|211619|211619|211626|244178|247683|247684|247685|247686|247688|247689|361204|590603|590604|610426|610426|677437|791229|791230|791231|791232|919426|963114|964383|973843", + "upstreamId": "21054|211614|211619|211619|211626|244178|247683|247684|247685|247686|247688|247689|361204|590603|590604|610426|610426|677437|791229|791230|791231|791232|919426|963114|964383|973843", "text": "Encephalopathy due to defective mitochondrial and peroxisomal fission 1" }, { - "baseId": "21055|21056|21057|142196|660883|788777|971340", + "upstreamId": "21055|21056|21057|142196|660883|788777|971340", "text": "Mitochondrial complex 1 deficiency, nuclear type 9" }, { - "baseId": "21058|21059|142193|626077", + "upstreamId": "21058|21059|142193|626077", "text": "Mitochondrial complex 1 deficiency, nuclear type 8" }, { - "baseId": "21060|21061|21061|21062|21064|21067|21067|21069|21072|21074|49657|101181|101181|186786|186788|191188|191188|192405|192405|193572|193572|194345|214934|253557|265528|266509|266511|266513|266783|266783|267092|267092|267466|267515|267515|268174|268685|268685|268688|268688|268728|269019|269057|269889|269922|270173|270389|270390|270409|270409|270676|271685|272186|272366|272669|272901|273291|274433|274456|274456|274461|274950|308311|308317|308318|308319|308320|308328|308329|308332|308334|308336|312724|312726|312735|312736|312737|312743|312744|312747|312748|312751|312752|312765|312768|312769|312771|312787|312793|312794|318605|318606|318613|318614|318616|318617|318619|318620|318627|318628|318635|318636|318637|318638|318640|318641|319156|319158|319161|319171|319172|319173|319182|319195|319201|319202|319203|319204|357803|370935|411514|444498|458653|459245|459549|459552|459556|459604|460097|489260|490006|490746|491769|491769|493162|503160|503160|524630|524633|524994|525157|525160|545150|545261|545444|563268|563269|564052|564059|564059|564067|564068|564070|565919|565922|569096|569103|569104|569105|569109|569120|587700|588110|588223|589743|620333|638318|638318|638319|638323|651848|655968|692674|692675|692676|692677|692678|723569|737133|767418|820140|820141|836158|836159|836160|836161|836162|836163|852188|902030|902031|902032|902033|902034|902035|902036|902037|902038|902039|902040|902041|902042|902043|902044|902045|902046|902047|902048|902049|902050|902051|902052|902053|902054|902055|902056|903407|925600|925601|934778|934779|934780|934781|934782|934783|946637|946638|946639|955851|955852|955853|955854", + "upstreamId": "21060|21061|21061|21062|21064|21067|21067|21069|21072|21074|49657|101181|101181|186786|186788|191188|191188|192405|192405|193572|193572|194345|214934|253557|265528|266509|266511|266513|266783|266783|267092|267092|267466|267515|267515|268174|268685|268685|268688|268688|268728|269019|269057|269889|269922|270173|270389|270390|270409|270409|270676|271685|272186|272366|272669|272901|273291|274433|274456|274456|274461|274950|308311|308317|308318|308319|308320|308328|308329|308332|308334|308336|312724|312726|312735|312736|312737|312743|312744|312747|312748|312751|312752|312765|312768|312769|312771|312787|312793|312794|318605|318606|318613|318614|318616|318617|318619|318620|318627|318628|318635|318636|318637|318638|318640|318641|319156|319158|319161|319171|319172|319173|319182|319195|319201|319202|319203|319204|357803|370935|411514|444498|458653|459245|459549|459552|459556|459604|460097|489260|490006|490746|491769|491769|493162|503160|503160|524630|524633|524994|525157|525160|545150|545261|545444|563268|563269|564052|564059|564059|564067|564068|564070|565919|565922|569096|569103|569104|569105|569109|569120|587700|588110|588223|589743|620333|638318|638318|638319|638323|651848|655968|692674|692675|692676|692677|692678|723569|737133|767418|820140|820141|836158|836159|836160|836161|836162|836163|852188|902030|902031|902032|902033|902034|902035|902036|902037|902038|902039|902040|902041|902042|902043|902044|902045|902046|902047|902048|902049|902050|902051|902052|902053|902054|902055|902056|903407|925600|925601|934778|934779|934780|934781|934782|934783|946637|946638|946639|955851|955852|955853|955854", "text": "Sialuria" }, { - "baseId": "21061|21064|21064|21065|21066|21067|21067|21068|21069|21069|21070|21071|21072|21072|21073|21074|21074|21075|23149|49657|49657|101181|101181|171864|186786|186786|186787|186788|186788|186789|186790|191188|191188|192405|192405|193571|193572|193572|194345|194345|214934|214934|253556|253557|265528|266509|266509|266511|266511|266513|266513|266783|266783|267092|267092|267466|267466|267486|267515|267515|268174|268174|268685|268685|268688|268688|268728|269019|269057|269057|269889|269889|269922|270173|270173|270251|270389|270390|270390|270409|270409|270676|270676|270841|271685|272186|272366|272366|272669|272669|272901|273291|273291|274433|274433|274456|274456|274461|274461|274660|274868|274950|274950|308311|308317|308318|308319|308320|308328|308329|308332|308334|308336|312724|312726|312735|312736|312737|312743|312744|312747|312748|312751|312752|312765|312768|312769|312771|312787|312793|312794|318605|318606|318613|318614|318616|318617|318619|318620|318627|318628|318635|318636|318637|318638|318640|318641|319156|319158|319161|319171|319172|319173|319182|319195|319201|319202|319203|319204|357791|357792|357793|357794|357795|357796|357797|357798|357799|357800|357801|357802|357803|357803|357804|357805|370935|411514|411514|432248|444498|444498|458653|459245|459245|459549|459552|459556|459604|460097|488371|488499|489260|489811|490006|490746|491133|491769|491769|493162|503160|503160|514593|524630|524633|524994|525157|525160|544871|544872|544874|544887|544890|544894|544896|544903|544905|544908|544910|544912|544914|545137|545138|545140|545142|545145|545150|545150|545161|545162|545163|545166|545170|545177|545256|545257|545258|545259|545261|545261|545268|545273|545279|545421|545423|545425|545428|545444|545444|545456|545457|563268|563269|564052|564059|564059|564067|564068|564070|565919|565922|565922|569096|569103|569104|569105|569105|569109|569120|587700|588110|588110|588223|589743|608905|610698|620333|638318|638318|638319|638323|651848|655968|692674|692675|692676|692677|692677|692678|723569|723569|730643|737133|767418|767418|800953|820140|820141|836158|836159|836160|836161|836162|836163|852188|902030|902031|902032|902033|902034|902035|902036|902037|902038|902039|902040|902041|902042|902043|902044|902045|902046|902047|902048|902049|902050|902051|902052|902053|902054|902055|902056|903407|919234|925600|925601|934778|934779|934780|934781|934782|934783|946637|946638|946639|955851|955852|955853|955854|959505|972035|972036|972037|972038|972039|972040|972041|978585|978586", + "upstreamId": "21061|21064|21064|21065|21066|21067|21067|21068|21069|21069|21070|21071|21072|21072|21073|21074|21074|21075|23149|49657|49657|101181|101181|171864|186786|186786|186787|186788|186788|186789|186790|191188|191188|192405|192405|193571|193572|193572|194345|194345|214934|214934|253556|253557|265528|266509|266509|266511|266511|266513|266513|266783|266783|267092|267092|267466|267466|267486|267515|267515|268174|268174|268685|268685|268688|268688|268728|269019|269057|269057|269889|269889|269922|270173|270173|270251|270389|270390|270390|270409|270409|270676|270676|270841|271685|272186|272366|272366|272669|272669|272901|273291|273291|274433|274433|274456|274456|274461|274461|274660|274868|274950|274950|308311|308317|308318|308319|308320|308328|308329|308332|308334|308336|312724|312726|312735|312736|312737|312743|312744|312747|312748|312751|312752|312765|312768|312769|312771|312787|312793|312794|318605|318606|318613|318614|318616|318617|318619|318620|318627|318628|318635|318636|318637|318638|318640|318641|319156|319158|319161|319171|319172|319173|319182|319195|319201|319202|319203|319204|357791|357792|357793|357794|357795|357796|357797|357798|357799|357800|357801|357802|357803|357803|357804|357805|370935|411514|411514|432248|444498|444498|458653|459245|459245|459549|459552|459556|459604|460097|488371|488499|489260|489811|490006|490746|491133|491769|491769|493162|503160|503160|514593|524630|524633|524994|525157|525160|544871|544872|544874|544887|544890|544894|544896|544903|544905|544908|544910|544912|544914|545137|545138|545140|545142|545145|545150|545150|545161|545162|545163|545166|545170|545177|545256|545257|545258|545259|545261|545261|545268|545273|545279|545421|545423|545425|545428|545444|545444|545456|545457|563268|563269|564052|564059|564059|564067|564068|564070|565919|565922|565922|569096|569103|569104|569105|569105|569109|569120|587700|588110|588110|588223|589743|608905|610698|620333|638318|638318|638319|638323|651848|655968|692674|692675|692676|692677|692677|692678|723569|723569|730643|737133|767418|767418|800953|820140|820141|836158|836159|836160|836161|836162|836163|852188|902030|902031|902032|902033|902034|902035|902036|902037|902038|902039|902040|902041|902042|902043|902044|902045|902046|902047|902048|902049|902050|902051|902052|902053|902054|902055|902056|903407|919234|925600|925601|934778|934779|934780|934781|934782|934783|946637|946638|946639|955851|955852|955853|955854|959505|972035|972036|972037|972038|972039|972040|972041|978585|978586", "text": "GNE myopathy" }, { - "baseId": "21077", + "upstreamId": "21077", "text": "Caudal duplication anomaly" }, { - "baseId": "21078|141341|141342|167429|167430|167431|167432|167433|322550|322553|322554|322556|322560|331962|331966|331968|331975|331976|331982|331996|332002|332007|338948|338950|338952|338953|338960|338967|338969|338975|338977|340557|340558|340559|340562|340563|340565|340567|340569|340571|620514|703218|873534|873535|873536|873537|873538|873539|873540|873541|873542|873543|873544|873545|873546|873547|873548|873549|873550|873551|876512|876513|876514", + "upstreamId": "21078|141341|141342|167429|167430|167431|167432|167433|322550|322553|322554|322556|322560|331962|331966|331968|331975|331976|331982|331996|332002|332007|338948|338950|338952|338953|338960|338967|338969|338975|338977|340557|340558|340559|340562|340563|340565|340567|340569|340571|620514|703218|873534|873535|873536|873537|873538|873539|873540|873541|873542|873543|873544|873545|873546|873547|873548|873549|873550|873551|876512|876513|876514", "text": "Peeling skin syndrome 2" }, { - "baseId": "21079|21080|21081|21082|21083|21084|21085|21086|21087|21088|21089|21090|193538|193539|227499|267611|267835|268588|270886|270894|273278|310812|310813|310820|310829|310830|310831|310832|310842|310844|310848|310850|310852|310858|310859|310862|310864|310866|310868|310870|310878|310884|310887|310890|310892|310895|310899|310907|310918|310919|310928|310929|310930|310931|316068|316069|316072|316073|316074|316082|316090|316094|316099|316103|316111|316112|316114|316120|316133|316144|316148|316149|316156|316162|316169|316174|316175|316176|316177|316180|316181|316189|316190|316200|316201|316204|316205|316210|316220|316221|316223|316226|322169|322170|322172|322183|322185|322190|322191|322192|322196|322197|322199|322200|322212|322213|322218|322231|322232|322233|322236|322239|322240|322241|322242|322245|322246|322254|322260|322261|322266|322267|322274|322275|322276|322780|322783|322784|322785|322786|322789|322790|322801|322802|322803|322804|322806|322807|322808|322815|322816|322822|322831|322832|322845|322849|322876|322879|322880|322882|322887|322888|322890|322891|322892|322893|322894|322896|322900|425884|472248|472249|512920|513596|513597|525455|620369|701425|724055|752256|789125|816473|866183|866184|866185|866186|866187|866188|866189|866190|866191|866192|866193|866194|866195|866196|866197|866198|866199|866200|866201|866202|866203|866204|866205|866206|866207|866208|866209|866210|866211|866212|866213|866214|866215|866216|866217|866218|866219|866220|866221|866222|866223|866224|866225|866226|866227|866228|866229|866230|866231|866232|866233|866234|866235|866236|866237|866238|866239|866240|935169|935170|947062|947063|956200|956201|956202", + "upstreamId": "21079|21080|21081|21082|21083|21084|21085|21086|21087|21088|21089|21090|193538|193539|227499|267611|267835|268588|270886|270894|273278|310812|310813|310820|310829|310830|310831|310832|310842|310844|310848|310850|310852|310858|310859|310862|310864|310866|310868|310870|310878|310884|310887|310890|310892|310895|310899|310907|310918|310919|310928|310929|310930|310931|316068|316069|316072|316073|316074|316082|316090|316094|316099|316103|316111|316112|316114|316120|316133|316144|316148|316149|316156|316162|316169|316174|316175|316176|316177|316180|316181|316189|316190|316200|316201|316204|316205|316210|316220|316221|316223|316226|322169|322170|322172|322183|322185|322190|322191|322192|322196|322197|322199|322200|322212|322213|322218|322231|322232|322233|322236|322239|322240|322241|322242|322245|322246|322254|322260|322261|322266|322267|322274|322275|322276|322780|322783|322784|322785|322786|322789|322790|322801|322802|322803|322804|322806|322807|322808|322815|322816|322822|322831|322832|322845|322849|322876|322879|322880|322882|322887|322888|322890|322891|322892|322893|322894|322896|322900|425884|472248|472249|512920|513596|513597|525455|620369|701425|724055|752256|789125|816473|866183|866184|866185|866186|866187|866188|866189|866190|866191|866192|866193|866194|866195|866196|866197|866198|866199|866200|866201|866202|866203|866204|866205|866206|866207|866208|866209|866210|866211|866212|866213|866214|866215|866216|866217|866218|866219|866220|866221|866222|866223|866224|866225|866226|866227|866228|866229|866230|866231|866232|866233|866234|866235|866236|866237|866238|866239|866240|935169|935170|947062|947063|956200|956201|956202", "text": "Spondyloepiphyseal dysplasia with congenital joint dislocations" }, { - "baseId": "21091", + "upstreamId": "21091", "text": "Long QT syndrome 6, acquired, susceptibility to" }, { - "baseId": "21091|21092|21093|21094|21094|78507|78508|78510|78511|78515|78517|78519|188750|188753|188755|188967|336609|336611|346324|346325|350564|351605|351606|378479|470616|471142|533812|551797|573766|575144|648944|680056|689239|689241|694624|848733|886690|886691|886692|886693|886694|939091|951214|951215", + "upstreamId": "21091|21092|21093|21094|21094|78507|78508|78510|78511|78515|78517|78519|188750|188753|188755|188967|336609|336611|346324|346325|350564|351605|351606|378479|470616|471142|533812|551797|573766|575144|648944|680056|689239|689241|694624|848733|886690|886691|886692|886693|886694|939091|951214|951215", "text": "Long QT syndrome 6" }, { - "baseId": "21091|21093|21094|21094|188750|188753|336609|336611|346324|346325|350564|351605|351606|886690|886691|886692|886693|886694", + "upstreamId": "21091|21093|21094|21094|188750|188753|336609|336611|346324|346325|350564|351605|351606|886690|886691|886692|886693|886694", "text": "Atrial fibrillation, familial, 4" }, { - "baseId": "21092|21093|21793|24432|33096|33097|33098|33099|44335|44351|44352|44353|44355|44356|44362|44431|44433|44434|44435|44436|44677|45087|45088|45089|45090|45091|45097|45098|45099|45100|45101|45134|45323|45324|45395|45401|45403|45406|45410|45417|45418|45420|54113|54182|54194|67645|67688|67792|78495|142592|175842|178650|188443|188452|188472|188668|188670|189253|189317|197104|197133|197134|197139|197142|197148|197150|197151|197158|197169|197174|197233|197253|197290|197294|197310|197313|197315|197325|197337|197350|197358|197365|197366|197375|197410|197464|198400|205385|205386|212999|226589|226591|243021|258310|269766|272264|376870|376874|402610|403204|406276|407049|456069|496730|532114|647054|647055|653064|679712|805511|846653|846654|846655|846656|906081|915029|917003|917085|921473|928653|928654|938373|950445|972557", + "upstreamId": "21092|21093|21793|24432|33096|33097|33098|33099|44335|44351|44352|44353|44355|44356|44362|44431|44433|44434|44435|44436|44677|45087|45088|45089|45090|45091|45097|45098|45099|45100|45101|45134|45323|45324|45395|45401|45403|45406|45410|45417|45418|45420|54113|54182|54194|67645|67688|67792|78495|142592|175842|178650|188443|188452|188472|188668|188670|189253|189317|197104|197133|197134|197139|197142|197148|197150|197151|197158|197169|197174|197233|197253|197290|197294|197310|197313|197315|197325|197337|197350|197358|197365|197366|197375|197410|197464|198400|205385|205386|212999|226589|226591|243021|258310|269766|272264|376870|376874|402610|403204|406276|407049|456069|496730|532114|647054|647055|653064|679712|805511|846653|846654|846655|846656|906081|915029|917003|917085|921473|928653|928654|938373|950445|972557", "text": "Cardiac arrhythmia" }, { - "baseId": "21092|188755", + "upstreamId": "21092|188755", "text": "KCNE2-Related Disorders" }, { - "baseId": "21095|24415", + "upstreamId": "21095|24415", "text": "Long qt syndrome 3/6, digenic" }, { - "baseId": "21096|21097|21098|21099|21100|29068|49653|49654|49655|204476|204477|213146|213147|213148|222442|222443|222444|222445|242188|244939|324039|324052|324063|324064|324076|324077|333657|333661|333665|333667|333670|333671|333676|333679|333681|333683|333687|333693|333695|333702|333704|340438|340441|340443|340444|340450|340452|340460|340464|340466|340468|341817|341818|341834|341839|341846|341848|374598|400519|401091|401097|445487|465485|465606|465607|465712|529277|529320|529599|529600|537259|567581|567589|567593|569767|569856|569859|569860|573687|573688|625311|643811|643812|643813|643814|643815|643816|643817|643818|643819|643820|643821|684571|688521|688522|785111|820761|842979|842980|842981|842982|874603|874604|874605|874606|874607|874608|874609|874610|874611|874612|874613|874614|874615|874616|874617|874618|927530|927531|927532|940340|949134|957594|957595", + "upstreamId": "21096|21097|21098|21099|21100|29068|49653|49654|49655|204476|204477|213146|213147|213148|222442|222443|222444|222445|242188|244939|324039|324052|324063|324064|324076|324077|333657|333661|333665|333667|333670|333671|333676|333679|333681|333683|333687|333693|333695|333702|333704|340438|340441|340443|340444|340450|340452|340460|340464|340466|340468|341817|341818|341834|341839|341846|341848|374598|400519|401091|401097|445487|465485|465606|465607|465712|529277|529320|529599|529600|537259|567581|567589|567593|569767|569856|569859|569860|573687|573688|625311|643811|643812|643813|643814|643815|643816|643817|643818|643819|643820|643821|684571|688521|688522|785111|820761|842979|842980|842981|842982|874603|874604|874605|874606|874607|874608|874609|874610|874611|874612|874613|874614|874615|874616|874617|874618|927530|927531|927532|940340|949134|957594|957595", "text": "Charcot-Marie-Tooth disease, type 1C" }, { - "baseId": "21101|21102|21103|21104|21105|21106|21108|21115|21116|792772", + "upstreamId": "21101|21102|21103|21104|21105|21106|21108|21115|21116|792772", "text": "Rothmund-Thomson syndrome type 2" }, { - "baseId": "21102|21102|21105|138872|138883|138909|207535|227319|240254|240305|240306|240322|253085|273145|395934|395939|396036|396053|396068|396151|396205|396253|396290|396314|396345|396668|396734|396762|457586|458168|458182|458213|458223|458324|458533|523739|523748|523840|550605|550606|552121|562098|562135|562527|564840|654505", + "upstreamId": "21102|21102|21105|138872|138883|138909|207535|227319|240254|240305|240306|240322|253085|273145|395934|395939|396036|396053|396068|396151|396205|396253|396290|396314|396345|396668|396734|396762|457586|458168|458182|458213|458223|458324|458533|523739|523748|523840|550605|550606|552121|562098|562135|562527|564840|654505", "text": "Rothmund-Thomson syndrome" }, { - "baseId": "21102|21102|21103|21105|21106|21111|21112|21114|21116|71037|71038|71042|71043|71044|71045|71046|100783|100788|100789|100790|100795|100796|100799|138865|138866|138867|138868|138869|138870|138871|138872|138872|138873|138874|138875|138877|138878|138879|138880|138881|138883|138883|138884|138885|138886|138887|138888|138889|138890|138891|138892|138893|138895|138896|138897|138901|138902|138903|138904|138905|138906|138907|138908|138909|138909|138910|138912|138913|138914|138915|190831|190832|191038|191127|191671|191906|194392|194920|194921|195949|195950|207535|207535|215381|215382|227319|240236|240237|240238|240239|240240|240241|240242|240243|240244|240245|240246|240247|240248|240249|240250|240251|240252|240253|240254|240254|240255|240256|240257|240258|240259|240260|240261|240263|240264|240265|240266|240267|240268|240269|240270|240271|240272|240273|240274|240275|240276|240277|240278|240279|240280|240281|240282|240283|240284|240285|240286|240287|240288|240289|240290|240291|240292|240293|240294|240295|240296|240297|240298|240299|240300|240301|240302|240303|240304|240305|240305|240306|240306|240307|240308|240309|240310|240311|240312|240313|240314|240315|240316|240317|240318|240319|240321|240322|240322|240323|240324|240325|240326|240327|240328|240329|240330|240331|240332|253086|266614|268634|271212|273145|273145|273927|274099|274986|395922|395924|395926|395927|395933|395934|395934|395937|395939|395939|395942|395946|395951|395956|395959|395960|395964|395980|395988|395989|396003|396006|396012|396019|396027|396028|396030|396032|396033|396036|396036|396038|396041|396043|396045|396050|396053|396053|396055|396060|396063|396066|396068|396068|396071|396072|396075|396078|396085|396088|396089|396090|396096|396098|396102|396115|396129|396132|396144|396145|396150|396151|396151|396156|396159|396160|396165|396167|396170|396174|396183|396187|396188|396205|396205|396218|396221|396222|396224|396231|396232|396236|396240|396241|396246|396253|396253|396257|396258|396267|396268|396271|396278|396280|396282|396290|396290|396294|396296|396299|396303|396304|396305|396308|396310|396311|396312|396314|396314|396320|396321|396323|396324|396325|396327|396329|396331|396332|396335|396337|396338|396345|396345|396346|396347|396348|396351|396353|396354|396355|396361|396363|396367|396368|396369|396370|396371|396374|396376|396377|396379|396380|396382|396383|396387|396389|396390|396392|396394|396399|396400|396402|396404|396407|396412|396425|396436|396440|396445|396447|396449|396452|396456|396457|396460|396461|396464|396466|396468|396471|396474|396475|396477|396481|396484|396490|396493|396494|396593|396598|396599|396600|396607|396611|396614|396616|396621|396624|396625|396629|396631|396640|396643|396657|396659|396664|396665|396668|396668|396672|396676|396679|396680|396690|396691|396693|396696|396703|396704|396711|396712|396714|396719|396727|396734|396734|396735|396743|396744|396748|396750|396753|396758|396759|396762|396762|396767|407348|438725|444255|457438|457456|457457|457458|457461|457463|457466|457479|457488|457498|457499|457506|457511|457512|457516|457534|457537|457547|457551|457552|457559|457561|457562|457564|457567|457574|457575|457580|457584|457586|457586|457589|457596|457600|457601|457608|457609|457610|457618|457625|457626|457628|457641|457646|457649|457652|457653|457656|457657|457659|457667|457670|457674|457678|457680|457682|457683|457685|457739|458065|458073|458080|458081|458083|458085|458089|458090|458098|458102|458104|458106|458109|458114|458116|458119|458122|458124|458125|458129|458133|458134|458135|458137|458140|458144|458146|458148|458149|458151|458152|458153|458154|458155|458156|458159|458161|458162|458164|458166|458167|458168|458168|458169|458172|458173|458174|458175|458180|458182|458182|458183|458187|458190|458191|458193|458197|458198|458199|458201|458203|458209|458211|458213|458213|458219|458220|458221|458222|458223|458223|458225|458226|458228|458230|458232|458233|458234|458236|458239|458240|458242|458244|458246|458247|458249|458251|458253|458255|458257|458259|458261|458262|458263|458264|458265|458267|458269|458271|458274|458275|458276|458278|458280|458290|458293|458295|458297|458300|458303|458309|458313|458314|458317|458322|458324|458328|458329|458332|458333|458342|458408|458410|458417|458422|458424|458426|458435|458437|458449|458450|458453|458456|458458|458461|458462|458470|458472|458483|458487|458492|458494|458504|458507|458509|458510|458521|458522|458530|458533|458533|458537|458538|458543|458546|458548|458550|458556|458561|458563|458568|458570|458574|458577|458580|458585|458587|458593|458594|458597|458598|458601|458602|458605|458609|458612|458615|458618|458622|458624|458632|458638|458640|458642|458644|472224|481812|523244|523246|523249|523254|523258|523262|523263|523267|523273|523275|523277|523287|523293|523296|523298|523301|523303|523307|523310|523315|523325|523326|523327|523328|523333|523334|523340|523349|523359|523366|523368|523377|523381|523383|523386|523391|523397|523514|523517|523523|523525|523528|523530|523534|523535|523536|523538|523540|523541|523550|523558|523560|523561|523564|523566|523571|523573|523574|523575|523577|523578|523579|523583|523585|523590|523595|523598|523602|523613|523615|523619|523630|523631|523635|523638|523640|523650|523651|523653|523660|523666|523668|523673|523674|523677|523682|523724|523729|523738|523739|523739|523744|523745|523748|523748|523750|523755|523758|523760|523763|523765|523767|523768|523769|523771|523773|523774|523775|523777|523779|523783|523784|523786|523787|523790|523793|523794|523795|523797|523798|523802|523803|523804|523806|523814|523816|523819|523820|523821|523823|523824|523830|523831|523832|523834|523836|523839|523840|523840|523844|523847|523848|523850|523852|523853|523855|523858|523859|523862|523865|523867|523869|523870|523871|523872|523873|523874|523877|523879|523880|523881|523883|523890|523892|523895|523896|523897|523899|523900|523901|523904|523908|523909|523910|523912|523913|523914|523915|523919|523920|523924|523925|523930|523932|523933|523934|523935|523939|523941|523942|523948|523949|523950|523951|523952|523954|523956|523966|523967|523972|537530|562098|562098|562109|562110|562112|562114|562116|562124|562126|562128|562131|562133|562135|562135|562138|562140|562145|562147|562149|562153|562154|562158|562160|562163|562167|562173|562176|562178|562183|562185|562190|562192|562195|562200|562201|562203|562206|562215|562217|562219|562221|562233|562239|562245|562251|562519|562520|562521|562523|562526|562527|562527|562536|562539|562551|562563|562575|562578|562584|562586|562594|562595|562613|562622|562623|562631|562634|562640|562645|562657|562662|562672|562683|562689|562696|562704|562709|562711|562719|562727|562732|562753|562761|562763|562771|562772|564543|564545|564838|564840|564840|564849|564855|564868|564869|564871|564876|564878|564880|564882|564884|564886|564890|564891|564894|564896|564898|564900|564902|564904|564907|564909|564913|564915|564919|564920|564922|564927|564928|564933|564935|564939|564943|564944|564946|564951|564953|564957|567540|567552|567562|567563|567564|567567|567568|567570|567571|567574|567576|567577|567582|567586|567599|567616|567623|567625|567627|567628|567629|567632|567644|567652|567654|567661|567668|567672|567676|567686|567687|567689|567691|567694|567695|567697|567698|567705|567713|567724|567725|584215|585843|611998|636805|636806|636807|636808|636809|636810|636811|636812|636813|636814|636815|636816|636817|636818|636819|636820|636821|636822|636823|636824|636825|636826|636827|636828|636829|636830|636831|636832|636833|636834|636835|636836|636837|636838|636839|636840|636841|636842|636843|636844|636845|636846|636847|636848|636849|636850|636851|636852|636853|636854|636855|636856|636857|636858|636859|636860|636861|636862|636863|636864|636865|636866|636867|636868|636869|636870|636871|636872|636873|636874|636875|636876|636877|636878|636879|636880|636881|636882|636883|636884|636885|636886|636887|636888|636889|636890|636891|636892|636893|636894|636895|636896|636897|636898|636899|636900|636901|636902|636903|636904|636905|636906|636907|636908|636909|636910|636911|636912|636913|636914|636915|636916|636917|636918|636919|636920|636921|636922|636923|636924|636925|636926|636927|636928|636929|636930|636931|636932|636933|636934|636935|636936|636937|636938|636939|636940|636941|636942|636943|636944|636945|636946|636947|636948|636949|636950|636951|636952|636953|636954|636955|636956|636957|636958|636959|636960|636961|636962|636963|636964|636965|636966|636967|636968|636969|636970|636971|636972|636973|636974|636975|636976|636977|636978|636979|636980|636981|636982|636983|636984|636985|636986|636987|636988|636989|636990|636991|636992|636993|636994|636995|636996|636997|636998|636999|637000|637001|637002|637003|637004|637005|637006|651764|651767|651771|651775|651784|651828|651842|651860|651862|651865|651869|651873|651879|651881|651938|651940|651941|651943|654505|683983|683984|683985|683986|683987|683988|683989|683990|683991|683992|687206|687207|687208|687210|687211|687212|687213|687214|687215|687216|687217|687218|687219|687220|687223|687224|687225|687226|687227|687228|687229|687230|687231|687232|687233|687235|687236|687237|687239|687240|687242|687244|687245|687246|687247|687248|687249|689907|689908|689909|689910|689912|692450|692453|692454|692455|692456|692457|692458|692459|692461|692462|692464|692466|692467|692469|692470|692471|692472|692473|692474|695388|695389|700487|700488|711413|711414|711415|711416|711417|722956|722957|722959|722960|722961|736546|736547|736550|736554|744342|751024|751025|751029|751030|751038|751041|759632|759636|766665|766669|766670|766675|766678|766682|766685|766689|766690|766692|766702|775418|775459|777725|777759|783053|783055|783057|783058|783059|787595|787700|787702|787707|792519|792772|792772|819929|819930|819931|819954|834320|834321|834322|834323|834324|834325|834326|834327|834328|834329|834330|834331|834332|834333|834334|834335|834336|834337|834338|834339|834340|834341|834342|834343|834344|834345|834346|834347|834348|834349|834350|834351|834352|834353|834354|834355|834356|834357|834358|834359|834360|834361|834362|834363|834364|834365|834366|834367|834368|834369|834370|834371|834372|834373|834374|834375|834376|834377|834378|834379|834380|834381|834382|834383|834384|834385|834386|834387|834388|834389|834390|834391|834392|834393|834394|834395|834396|834397|834398|834399|834400|834401|834402|834403|834404|834405|834406|834407|834408|834409|834410|834411|834412|834413|834414|834415|834416|834417|834418|834419|834420|834421|834422|834423|834424|834425|834426|834427|834428|834429|834430|834431|834432|834433|834434|834435|834436|834437|834438|834439|834440|834441|834442|834443|834444|834445|834446|834447|834448|834449|834450|834451|834452|834453|834454|834455|834456|834457|834458|834459|834460|834461|834462|834463|834464|834465|834466|834467|834468|834469|834470|834471|834472|834473|834474|834475|834476|834477|834478|834479|834480|834481|834482|834483|834484|834485|834486|834487|834488|834489|834490|834491|834492|834493|834494|834495|834496|834497|834498|834499|834500|834501|834502|834503|834504|834505|834506|834507|834508|834509|834510|834511|834512|834513|834514|834515|834516|834517|834518|834519|834520|851187|851189|851191|851674|851676|851678|851680|852120|852122|852424|852425|852427|852431|852435|925079|925080|925081|925082|925083|925084|925085|925086|925087|925088|925089|925090|925091|925092|925093|925094|925095|925096|925097|925098|925099|925100|925101|925102|925103|925104|925105|925106|925107|925108|925109|925110|925111|925112|925113|925114|925115|925116|925117|925118|925119|925120|925121|925122|925123|925124|925125|925126|925127|925128|925129|925130|925131|925132|925133|925134|934166|934167|934168|934169|934170|934171|934172|934173|934174|934175|934176|934177|934178|934179|934180|934181|934182|934183|934184|934185|934186|934187|934188|934189|934190|934191|934192|934193|934194|934195|934196|934197|934198|934199|934200|934201|934202|934203|934204|934205|934206|934207|934208|934209|934210|934211|934212|934213|934214|934215|934216|934217|934218|934219|934220|934221|934222|934223|934224|934225|934226|934227|940093|940094|940095|940892|940893|940894|940895|940896|945929|945930|945931|945932|945933|945934|945935|945936|945937|945938|945939|945940|945941|945942|945943|945944|945945|945946|945947|945948|945949|945950|945951|945952|945953|945954|945955|945956|945957|945958|945959|945960|945961|945962|945963|945964|945965|945966|945967|945968|945969|945970|945971|945972|945973|945974|945975|945976|945977|945978|945979|945980|945981|945982|945983|945984|945985|945986|945987|945988|945989|945990|945991|945992|945993|945994|955345|955346|955347|955348|955349|955350|955351|955352|955353|955354|955355|955356|955357|955358|955359|955360|955361|955362|955363|955364|955365|955366|955367|955368|955369|955370|955371|955372|955373|955374|955375|959881|959882|959883|960646|960647|960648", + "upstreamId": "21102|21102|21103|21105|21106|21111|21112|21114|21116|71037|71038|71042|71043|71044|71045|71046|100783|100788|100789|100790|100795|100796|100799|138865|138866|138867|138868|138869|138870|138871|138872|138872|138873|138874|138875|138877|138878|138879|138880|138881|138883|138883|138884|138885|138886|138887|138888|138889|138890|138891|138892|138893|138895|138896|138897|138901|138902|138903|138904|138905|138906|138907|138908|138909|138909|138910|138912|138913|138914|138915|190831|190832|191038|191127|191671|191906|194392|194920|194921|195949|195950|207535|207535|215381|215382|227319|240236|240237|240238|240239|240240|240241|240242|240243|240244|240245|240246|240247|240248|240249|240250|240251|240252|240253|240254|240254|240255|240256|240257|240258|240259|240260|240261|240263|240264|240265|240266|240267|240268|240269|240270|240271|240272|240273|240274|240275|240276|240277|240278|240279|240280|240281|240282|240283|240284|240285|240286|240287|240288|240289|240290|240291|240292|240293|240294|240295|240296|240297|240298|240299|240300|240301|240302|240303|240304|240305|240305|240306|240306|240307|240308|240309|240310|240311|240312|240313|240314|240315|240316|240317|240318|240319|240321|240322|240322|240323|240324|240325|240326|240327|240328|240329|240330|240331|240332|253086|266614|268634|271212|273145|273145|273927|274099|274986|395922|395924|395926|395927|395933|395934|395934|395937|395939|395939|395942|395946|395951|395956|395959|395960|395964|395980|395988|395989|396003|396006|396012|396019|396027|396028|396030|396032|396033|396036|396036|396038|396041|396043|396045|396050|396053|396053|396055|396060|396063|396066|396068|396068|396071|396072|396075|396078|396085|396088|396089|396090|396096|396098|396102|396115|396129|396132|396144|396145|396150|396151|396151|396156|396159|396160|396165|396167|396170|396174|396183|396187|396188|396205|396205|396218|396221|396222|396224|396231|396232|396236|396240|396241|396246|396253|396253|396257|396258|396267|396268|396271|396278|396280|396282|396290|396290|396294|396296|396299|396303|396304|396305|396308|396310|396311|396312|396314|396314|396320|396321|396323|396324|396325|396327|396329|396331|396332|396335|396337|396338|396345|396345|396346|396347|396348|396351|396353|396354|396355|396361|396363|396367|396368|396369|396370|396371|396374|396376|396377|396379|396380|396382|396383|396387|396389|396390|396392|396394|396399|396400|396402|396404|396407|396412|396425|396436|396440|396445|396447|396449|396452|396456|396457|396460|396461|396464|396466|396468|396471|396474|396475|396477|396481|396484|396490|396493|396494|396593|396598|396599|396600|396607|396611|396614|396616|396621|396624|396625|396629|396631|396640|396643|396657|396659|396664|396665|396668|396668|396672|396676|396679|396680|396690|396691|396693|396696|396703|396704|396711|396712|396714|396719|396727|396734|396734|396735|396743|396744|396748|396750|396753|396758|396759|396762|396762|396767|407348|438725|444255|457438|457456|457457|457458|457461|457463|457466|457479|457488|457498|457499|457506|457511|457512|457516|457534|457537|457547|457551|457552|457559|457561|457562|457564|457567|457574|457575|457580|457584|457586|457586|457589|457596|457600|457601|457608|457609|457610|457618|457625|457626|457628|457641|457646|457649|457652|457653|457656|457657|457659|457667|457670|457674|457678|457680|457682|457683|457685|457739|458065|458073|458080|458081|458083|458085|458089|458090|458098|458102|458104|458106|458109|458114|458116|458119|458122|458124|458125|458129|458133|458134|458135|458137|458140|458144|458146|458148|458149|458151|458152|458153|458154|458155|458156|458159|458161|458162|458164|458166|458167|458168|458168|458169|458172|458173|458174|458175|458180|458182|458182|458183|458187|458190|458191|458193|458197|458198|458199|458201|458203|458209|458211|458213|458213|458219|458220|458221|458222|458223|458223|458225|458226|458228|458230|458232|458233|458234|458236|458239|458240|458242|458244|458246|458247|458249|458251|458253|458255|458257|458259|458261|458262|458263|458264|458265|458267|458269|458271|458274|458275|458276|458278|458280|458290|458293|458295|458297|458300|458303|458309|458313|458314|458317|458322|458324|458328|458329|458332|458333|458342|458408|458410|458417|458422|458424|458426|458435|458437|458449|458450|458453|458456|458458|458461|458462|458470|458472|458483|458487|458492|458494|458504|458507|458509|458510|458521|458522|458530|458533|458533|458537|458538|458543|458546|458548|458550|458556|458561|458563|458568|458570|458574|458577|458580|458585|458587|458593|458594|458597|458598|458601|458602|458605|458609|458612|458615|458618|458622|458624|458632|458638|458640|458642|458644|472224|481812|523244|523246|523249|523254|523258|523262|523263|523267|523273|523275|523277|523287|523293|523296|523298|523301|523303|523307|523310|523315|523325|523326|523327|523328|523333|523334|523340|523349|523359|523366|523368|523377|523381|523383|523386|523391|523397|523514|523517|523523|523525|523528|523530|523534|523535|523536|523538|523540|523541|523550|523558|523560|523561|523564|523566|523571|523573|523574|523575|523577|523578|523579|523583|523585|523590|523595|523598|523602|523613|523615|523619|523630|523631|523635|523638|523640|523650|523651|523653|523660|523666|523668|523673|523674|523677|523682|523724|523729|523738|523739|523739|523744|523745|523748|523748|523750|523755|523758|523760|523763|523765|523767|523768|523769|523771|523773|523774|523775|523777|523779|523783|523784|523786|523787|523790|523793|523794|523795|523797|523798|523802|523803|523804|523806|523814|523816|523819|523820|523821|523823|523824|523830|523831|523832|523834|523836|523839|523840|523840|523844|523847|523848|523850|523852|523853|523855|523858|523859|523862|523865|523867|523869|523870|523871|523872|523873|523874|523877|523879|523880|523881|523883|523890|523892|523895|523896|523897|523899|523900|523901|523904|523908|523909|523910|523912|523913|523914|523915|523919|523920|523924|523925|523930|523932|523933|523934|523935|523939|523941|523942|523948|523949|523950|523951|523952|523954|523956|523966|523967|523972|537530|562098|562098|562109|562110|562112|562114|562116|562124|562126|562128|562131|562133|562135|562135|562138|562140|562145|562147|562149|562153|562154|562158|562160|562163|562167|562173|562176|562178|562183|562185|562190|562192|562195|562200|562201|562203|562206|562215|562217|562219|562221|562233|562239|562245|562251|562519|562520|562521|562523|562526|562527|562527|562536|562539|562551|562563|562575|562578|562584|562586|562594|562595|562613|562622|562623|562631|562634|562640|562645|562657|562662|562672|562683|562689|562696|562704|562709|562711|562719|562727|562732|562753|562761|562763|562771|562772|564543|564545|564838|564840|564840|564849|564855|564868|564869|564871|564876|564878|564880|564882|564884|564886|564890|564891|564894|564896|564898|564900|564902|564904|564907|564909|564913|564915|564919|564920|564922|564927|564928|564933|564935|564939|564943|564944|564946|564951|564953|564957|567540|567552|567562|567563|567564|567567|567568|567570|567571|567574|567576|567577|567582|567586|567599|567616|567623|567625|567627|567628|567629|567632|567644|567652|567654|567661|567668|567672|567676|567686|567687|567689|567691|567694|567695|567697|567698|567705|567713|567724|567725|584215|585843|611998|636805|636806|636807|636808|636809|636810|636811|636812|636813|636814|636815|636816|636817|636818|636819|636820|636821|636822|636823|636824|636825|636826|636827|636828|636829|636830|636831|636832|636833|636834|636835|636836|636837|636838|636839|636840|636841|636842|636843|636844|636845|636846|636847|636848|636849|636850|636851|636852|636853|636854|636855|636856|636857|636858|636859|636860|636861|636862|636863|636864|636865|636866|636867|636868|636869|636870|636871|636872|636873|636874|636875|636876|636877|636878|636879|636880|636881|636882|636883|636884|636885|636886|636887|636888|636889|636890|636891|636892|636893|636894|636895|636896|636897|636898|636899|636900|636901|636902|636903|636904|636905|636906|636907|636908|636909|636910|636911|636912|636913|636914|636915|636916|636917|636918|636919|636920|636921|636922|636923|636924|636925|636926|636927|636928|636929|636930|636931|636932|636933|636934|636935|636936|636937|636938|636939|636940|636941|636942|636943|636944|636945|636946|636947|636948|636949|636950|636951|636952|636953|636954|636955|636956|636957|636958|636959|636960|636961|636962|636963|636964|636965|636966|636967|636968|636969|636970|636971|636972|636973|636974|636975|636976|636977|636978|636979|636980|636981|636982|636983|636984|636985|636986|636987|636988|636989|636990|636991|636992|636993|636994|636995|636996|636997|636998|636999|637000|637001|637002|637003|637004|637005|637006|651764|651767|651771|651775|651784|651828|651842|651860|651862|651865|651869|651873|651879|651881|651938|651940|651941|651943|654505|683983|683984|683985|683986|683987|683988|683989|683990|683991|683992|687206|687207|687208|687210|687211|687212|687213|687214|687215|687216|687217|687218|687219|687220|687223|687224|687225|687226|687227|687228|687229|687230|687231|687232|687233|687235|687236|687237|687239|687240|687242|687244|687245|687246|687247|687248|687249|689907|689908|689909|689910|689912|692450|692453|692454|692455|692456|692457|692458|692459|692461|692462|692464|692466|692467|692469|692470|692471|692472|692473|692474|695388|695389|700487|700488|711413|711414|711415|711416|711417|722956|722957|722959|722960|722961|736546|736547|736550|736554|744342|751024|751025|751029|751030|751038|751041|759632|759636|766665|766669|766670|766675|766678|766682|766685|766689|766690|766692|766702|775418|775459|777725|777759|783053|783055|783057|783058|783059|787595|787700|787702|787707|792519|792772|792772|819929|819930|819931|819954|834320|834321|834322|834323|834324|834325|834326|834327|834328|834329|834330|834331|834332|834333|834334|834335|834336|834337|834338|834339|834340|834341|834342|834343|834344|834345|834346|834347|834348|834349|834350|834351|834352|834353|834354|834355|834356|834357|834358|834359|834360|834361|834362|834363|834364|834365|834366|834367|834368|834369|834370|834371|834372|834373|834374|834375|834376|834377|834378|834379|834380|834381|834382|834383|834384|834385|834386|834387|834388|834389|834390|834391|834392|834393|834394|834395|834396|834397|834398|834399|834400|834401|834402|834403|834404|834405|834406|834407|834408|834409|834410|834411|834412|834413|834414|834415|834416|834417|834418|834419|834420|834421|834422|834423|834424|834425|834426|834427|834428|834429|834430|834431|834432|834433|834434|834435|834436|834437|834438|834439|834440|834441|834442|834443|834444|834445|834446|834447|834448|834449|834450|834451|834452|834453|834454|834455|834456|834457|834458|834459|834460|834461|834462|834463|834464|834465|834466|834467|834468|834469|834470|834471|834472|834473|834474|834475|834476|834477|834478|834479|834480|834481|834482|834483|834484|834485|834486|834487|834488|834489|834490|834491|834492|834493|834494|834495|834496|834497|834498|834499|834500|834501|834502|834503|834504|834505|834506|834507|834508|834509|834510|834511|834512|834513|834514|834515|834516|834517|834518|834519|834520|851187|851189|851191|851674|851676|851678|851680|852120|852122|852424|852425|852427|852431|852435|925079|925080|925081|925082|925083|925084|925085|925086|925087|925088|925089|925090|925091|925092|925093|925094|925095|925096|925097|925098|925099|925100|925101|925102|925103|925104|925105|925106|925107|925108|925109|925110|925111|925112|925113|925114|925115|925116|925117|925118|925119|925120|925121|925122|925123|925124|925125|925126|925127|925128|925129|925130|925131|925132|925133|925134|934166|934167|934168|934169|934170|934171|934172|934173|934174|934175|934176|934177|934178|934179|934180|934181|934182|934183|934184|934185|934186|934187|934188|934189|934190|934191|934192|934193|934194|934195|934196|934197|934198|934199|934200|934201|934202|934203|934204|934205|934206|934207|934208|934209|934210|934211|934212|934213|934214|934215|934216|934217|934218|934219|934220|934221|934222|934223|934224|934225|934226|934227|940093|940094|940095|940892|940893|940894|940895|940896|945929|945930|945931|945932|945933|945934|945935|945936|945937|945938|945939|945940|945941|945942|945943|945944|945945|945946|945947|945948|945949|945950|945951|945952|945953|945954|945955|945956|945957|945958|945959|945960|945961|945962|945963|945964|945965|945966|945967|945968|945969|945970|945971|945972|945973|945974|945975|945976|945977|945978|945979|945980|945981|945982|945983|945984|945985|945986|945987|945988|945989|945990|945991|945992|945993|945994|955345|955346|955347|955348|955349|955350|955351|955352|955353|955354|955355|955356|955357|955358|955359|955360|955361|955362|955363|955364|955365|955366|955367|955368|955369|955370|955371|955372|955373|955374|955375|959881|959882|959883|960646|960647|960648", "text": "Baller-Gerold syndrome" }, { - "baseId": "21102|21103|21105|21109|21110|21111|71037|71038|71040|71041|71042|71043|71044|71045|71046|71047|71048|71049|138872|138883|138909|138913|207535|227319|240251|240254|240305|240306|240322|273145|395934|395939|396036|396053|396068|396151|396205|396253|396290|396314|396345|396668|396734|396762|457586|458168|458182|458213|458223|458533|523739|523748|523840|562098|562135|562527|564840|792772", + "upstreamId": "21102|21103|21105|21109|21110|21111|71037|71038|71040|71041|71042|71043|71044|71045|71046|71047|71048|71049|138872|138883|138909|138913|207535|227319|240251|240254|240305|240306|240322|273145|395934|395939|396036|396053|396068|396151|396205|396253|396290|396314|396345|396668|396734|396762|457586|458168|458182|458213|458223|458533|523739|523748|523840|562098|562135|562527|564840|792772", "text": "Rapadilino syndrome" }, { - "baseId": "21105|151724|235216|240867|612018", + "upstreamId": "21105|151724|235216|240867|612018", "text": "B lymphoblastic leukemia lymphoma with t(12" }, { - "baseId": "21105|151724|235216|240867|612018", + "upstreamId": "21105|151724|235216|240867|612018", "text": "21)(p13" }, { - "baseId": "21105|151724|235216|240867|612018", + "upstreamId": "21105|151724|235216|240867|612018", "text": "q22)" }, { - "baseId": "21105|151724|235216|240867|612018", + "upstreamId": "21105|151724|235216|240867|612018", "text": " TEL-AML1 (ETV6-RUNX1)" }, { - "baseId": "21105", + "upstreamId": "21105", "text": "High grade surface osteosarcoma" }, { - "baseId": "21117|282312|284954|284978|294991|294993|294994|294999|295001|295003|295005|296735|296738|296739|296761|296766|296767|296780|300450|300451|300469|300471|300472|300482|300483|300484|300495|300496|300497|300501|300509|300518|300525|300540|300542|300543|300573|300574|709594|892659|892660|892661|892662|892663|892664|892665|892666|892667|892668|892669|892670|892671|892672|892673|892674|892675|892676|892677|892678|892679|892680|892681|892682|892683|892684|892685|892686|892687|892688|892689|896015|896016|896017|896018|896019", + "upstreamId": "21117|282312|284954|284978|294991|294993|294994|294999|295001|295003|295005|296735|296738|296739|296761|296766|296767|296780|300450|300451|300469|300471|300472|300482|300483|300484|300495|300496|300497|300501|300509|300518|300525|300540|300542|300543|300573|300574|709594|892659|892660|892661|892662|892663|892664|892665|892666|892667|892668|892669|892670|892671|892672|892673|892674|892675|892676|892677|892678|892679|892680|892681|892682|892683|892684|892685|892686|892687|892688|892689|896015|896016|896017|896018|896019", "text": "Parkinson Disease, Dominant/Recessive" }, { - "baseId": "21118|187180|272347", + "upstreamId": "21118|187180|272347", "text": "Amelogenesis imperfecta, hypomaturation type, IIA1" }, { - "baseId": "21119|21120|76004", + "upstreamId": "21119|21120|76004", "text": "Hyalinosis, Segmental Glomerular" }, { - "baseId": "21119|21119|21119|21120|76004|76004|76004|94312|94313|187048|224284|224551|254892|300480|300481|300486|300490|303316|303334|303337|303339|303341|303360|303367|303368|307806|307807|307827|307844|307849|307850|307851|307878|307879|307895|308000|308002|308025|308028|308030|308031|308033|308040|312031|312041|317704|323715|324424|335402|353794|514037|590302|801121|801163", + "upstreamId": "21119|21119|21119|21120|76004|76004|76004|94312|94313|187048|224284|224551|254892|300480|300481|300486|300490|303316|303334|303337|303339|303341|303360|303367|303368|307806|307807|307827|307844|307849|307850|307851|307878|307879|307895|308000|308002|308025|308028|308030|308031|308033|308040|312031|312041|317704|323715|324424|335402|353794|514037|590302|801121|801163", "text": "Focal segmental glomerulosclerosis" }, { - "baseId": "21119|76004", + "upstreamId": "21119|76004", "text": "Sickled erythrocytes" }, { - "baseId": "21119|76004|491214|918506|918507|918508|918510|918511|918514", + "upstreamId": "21119|76004|491214|918506|918507|918508|918510|918511|918514", "text": "Glomerulonephritis (disease)" }, { - "baseId": "21120|622786|622787", + "upstreamId": "21120|622786|622787", "text": "Focal segmental glomerulosclerosis 4, susceptibility to" }, { - "baseId": "21121|21122|21123|48137|48138|48139|48140|48141|48142|48143|48144|48145|48146|209356|256545|260198|260199|330521|330522|330523|330524|330530|330531|330535|330538|330547|340749|340751|340753|340755|340759|340763|340770|340771|340772|340780|340782|340784|340788|346360|346361|346363|346365|346366|346373|346376|346380|346383|346384|346388|346395|347725|347730|347731|347737|361028|376789|390231|410306|414711|414712|414714|431019|431020|612323|612324|620613|620892|622245|622246|622247|622248|622249|622250|622251|622252|622253|622254|622255|622256|622265|756261|756263|788917|791844|797623|860450|878790|878791|878792|878793|878794|878795|878796|878797|878798|878799|878800|878801|878802|878803|878804|880618|880619|880620|880621|880622|880623|919782|971098|971099|980961|983363|983364|983365|983366|983367|983368|983369|983370|983371|983372|983373|983374|983375|983376|983377|983378|983379|983380|983381|983382|983383|983384|983385|983386|983387|983388|983389|983390|983391|983392|983393|983394|983395|983396|983397|983398|983399|983400|983401|983402|983403|983404|983405|983406|983407|983408|983409|983410|983411|983412|983413|983414|983415|983416|983417|983418|983419|983420|983421|983422|983423|983424|983425|983426|983427|983428|983429|983430|983431|983432|983433|983434|983435|983436|983437|983438|983439|983440|983441|983442|983443|983444|983445|983446|983447|983448|983449|983450|983451|983452|983453", + "upstreamId": "21121|21122|21123|48137|48138|48139|48140|48141|48142|48143|48144|48145|48146|209356|256545|260198|260199|330521|330522|330523|330524|330530|330531|330535|330538|330547|340749|340751|340753|340755|340759|340763|340770|340771|340772|340780|340782|340784|340788|346360|346361|346363|346365|346366|346373|346376|346380|346383|346384|346388|346395|347725|347730|347731|347737|361028|376789|390231|410306|414711|414712|414714|431019|431020|612323|612324|620613|620892|622245|622246|622247|622248|622249|622250|622251|622252|622253|622254|622255|622256|622265|756261|756263|788917|791844|797623|860450|878790|878791|878792|878793|878794|878795|878796|878797|878798|878799|878800|878801|878802|878803|878804|880618|880619|880620|880621|880622|880623|919782|971098|971099|980961|983363|983364|983365|983366|983367|983368|983369|983370|983371|983372|983373|983374|983375|983376|983377|983378|983379|983380|983381|983382|983383|983384|983385|983386|983387|983388|983389|983390|983391|983392|983393|983394|983395|983396|983397|983398|983399|983400|983401|983402|983403|983404|983405|983406|983407|983408|983409|983410|983411|983412|983413|983414|983415|983416|983417|983418|983419|983420|983421|983422|983423|983424|983425|983426|983427|983428|983429|983430|983431|983432|983433|983434|983435|983436|983437|983438|983439|983440|983441|983442|983443|983444|983445|983446|983447|983448|983449|983450|983451|983452|983453", "text": "Autosomal recessive congenital ichthyosis 2" }, { - "baseId": "21124|21125|21126|88393|141272|141273|141274|141275|141276|141277|141278|141279|141280|141281|141282|141283|141284|141285|141286|141287|191902|243831|243832|243833|243834|243835|244529|244530|244531|244532|244533|244534|244535|244536|253259|253260|253261|253262|253263|253264|253265|269477|306456|306458|306459|306461|306462|306463|306467|306476|306478|310576|310577|310578|310586|310589|310606|310611|310614|310622|310624|310631|310640|310642|310644|310645|310651|310664|315955|315968|315977|315983|315991|316011|316012|316017|316018|316019|316022|316025|316029|316030|316245|316268|316269|316271|316278|316286|316288|316297|316298|316299|316308|316309|316312|316313|316314|316319|316320|316321|316330|316342|316344|353849|357770|357771|357772|357773|357774|359749|369658|370160|370169|370442|370453|372073|372077|397013|407512|433642|458177|458185|458188|458189|458192|458682|458697|458703|458705|458708|458794|458795|458797|459186|459188|459191|459195|459201|487352|489170|490119|490954|492758|495243|502091|502095|502097|513585|523860|523861|523863|523864|523868|523884|523885|523887|524095|524142|524146|524160|524161|524162|524166|524167|524169|524432|524436|524470|524472|524475|524484|524485|524487|544613|544615|544616|544630|544633|544635|544636|544638|544639|544641|544650|544652|544655|544666|544668|544670|544672|544941|544942|544945|544962|544963|544965|544967|544968|544970|544972|544975|544986|544991|545056|545058|545061|545063|545069|545071|545073|545077|545079|545080|545091|545098|545100|545103|545104|545106|545171|545173|545175|545178|545180|545182|545204|562651|562653|562659|562664|562668|562670|562676|562678|563287|563288|563291|563292|563294|563324|563328|563332|563346|563351|565370|565376|565377|565385|565391|565397|568300|568348|568350|568351|568360|568374|568378|568379|637573|637574|637575|637576|637577|637578|637579|637580|637581|637582|637584|637586|637588|637589|637590|637592|637593|637595|637596|637599|651806|651866|651868|651890|655880|684032|684033|684034|684035|684036|685247|687333|687336|687338|687342|687344|687345|689929|692550|692552|692558|695406|711686|766978|766982|766987|775448|783215|783216|799560|805089|816430|835317|835320|835321|835324|835329|835333|835334|835340|835341|835343|835345|835347|835349|835351|851217|851219|900802|900803|900804|900805|900806|900807|900808|900809|900810|900811|900812|900813|900814|900815|900816|900817|900818|900819|900820|900821|900822|900823|900824|900825|900826|900827|900828|900829|900830|900831|900832|900833|900834|900835|900836|900837|900838|900839|903289|903290|903291|903292|903293|903294|940919|955623|955625|955628|955629|955634|955635|955640|960668|978509|978510|978511|978512|978513|978514|978516|978517|978518|978519|978520|978521|978522|978523|978524|978525|978526|978527|978528|978529|978530|978531|978532|978533|978534|978535|978536|978537|978538|978539|978540|978541|978542|978543|978544|978545|978546|978547|978548|978549|978550|978551|978552|978553|978554|978555|978556|978557|978558|978559|978560", + "upstreamId": "21124|21125|21126|88393|141272|141273|141274|141275|141276|141277|141278|141279|141280|141281|141282|141283|141284|141285|141286|141287|191902|243831|243832|243833|243834|243835|244529|244530|244531|244532|244533|244534|244535|244536|253259|253260|253261|253262|253263|253264|253265|269477|306456|306458|306459|306461|306462|306463|306467|306476|306478|310576|310577|310578|310586|310589|310606|310611|310614|310622|310624|310631|310640|310642|310644|310645|310651|310664|315955|315968|315977|315983|315991|316011|316012|316017|316018|316019|316022|316025|316029|316030|316245|316268|316269|316271|316278|316286|316288|316297|316298|316299|316308|316309|316312|316313|316314|316319|316320|316321|316330|316342|316344|353849|357770|357771|357772|357773|357774|359749|369658|370160|370169|370442|370453|372073|372077|397013|407512|433642|458177|458185|458188|458189|458192|458682|458697|458703|458705|458708|458794|458795|458797|459186|459188|459191|459195|459201|487352|489170|490119|490954|492758|495243|502091|502095|502097|513585|523860|523861|523863|523864|523868|523884|523885|523887|524095|524142|524146|524160|524161|524162|524166|524167|524169|524432|524436|524470|524472|524475|524484|524485|524487|544613|544615|544616|544630|544633|544635|544636|544638|544639|544641|544650|544652|544655|544666|544668|544670|544672|544941|544942|544945|544962|544963|544965|544967|544968|544970|544972|544975|544986|544991|545056|545058|545061|545063|545069|545071|545073|545077|545079|545080|545091|545098|545100|545103|545104|545106|545171|545173|545175|545178|545180|545182|545204|562651|562653|562659|562664|562668|562670|562676|562678|563287|563288|563291|563292|563294|563324|563328|563332|563346|563351|565370|565376|565377|565385|565391|565397|568300|568348|568350|568351|568360|568374|568378|568379|637573|637574|637575|637576|637577|637578|637579|637580|637581|637582|637584|637586|637588|637589|637590|637592|637593|637595|637596|637599|651806|651866|651868|651890|655880|684032|684033|684034|684035|684036|685247|687333|687336|687338|687342|687344|687345|689929|692550|692552|692558|695406|711686|766978|766982|766987|775448|783215|783216|799560|805089|816430|835317|835320|835321|835324|835329|835333|835334|835340|835341|835343|835345|835347|835349|835351|851217|851219|900802|900803|900804|900805|900806|900807|900808|900809|900810|900811|900812|900813|900814|900815|900816|900817|900818|900819|900820|900821|900822|900823|900824|900825|900826|900827|900828|900829|900830|900831|900832|900833|900834|900835|900836|900837|900838|900839|903289|903290|903291|903292|903293|903294|940919|955623|955625|955628|955629|955634|955635|955640|960668|978509|978510|978511|978512|978513|978514|978516|978517|978518|978519|978520|978521|978522|978523|978524|978525|978526|978527|978528|978529|978530|978531|978532|978533|978534|978535|978536|978537|978538|978539|978540|978541|978542|978543|978544|978545|978546|978547|978548|978549|978550|978551|978552|978553|978554|978555|978556|978557|978558|978559|978560", "text": "Familial dysautonomia" }, { - "baseId": "21127|21128|614126", + "upstreamId": "21127|21128|614126", "text": "Neonatal ichthyosis-sclerosing cholangitis syndrome" }, { - "baseId": "21129|21130|21131|75587", + "upstreamId": "21129|21130|21131|75587", "text": "Hypoparathyroidism, familial isolated, 2" }, { - "baseId": "21132|21133|21134|21135|21137|21138|39337|39338|76401|76408|76409|76413|76414|190475|250739|268297|490057|518243|536075|536076|558472|560641|576694|630033|686213|695146|733495|826512|977193", + "upstreamId": "21132|21133|21134|21135|21137|21138|39337|39338|76401|76408|76409|76413|76414|190475|250739|268297|490057|518243|536075|536076|558472|560641|576694|630033|686213|695146|733495|826512|977193", "text": "Holoprosencephaly 2" }, { - "baseId": "21139", + "upstreamId": "21139", "text": "Bile acid synthesis defect, congenital, 3" }, { - "baseId": "21139|21140|21141|21142|21143|21144|21145|21146|40115|125786|125787|190457|221766|221767|227324|273222|305741|305751|305753|305756|305759|305760|309750|309761|309762|309764|314990|314991|315005|315008|315110|315111|315121|315131|431012|431013|492205|493946|513541|513599|578471|789123|789131|798602|899938|899939|899940|899941|899942|899943|899944|899945|899947|899948|899949", + "upstreamId": "21139|21140|21141|21142|21143|21144|21145|21146|40115|125786|125787|190457|221766|221767|227324|273222|305741|305751|305753|305756|305759|305760|309750|309761|309762|309764|314990|314991|315005|315008|315110|315111|315121|315131|431012|431013|492205|493946|513541|513599|578471|789123|789131|798602|899938|899939|899940|899941|899942|899943|899944|899945|899947|899948|899949", "text": "Hereditary spastic paraplegia 5A" }, { - "baseId": "21147|21148|21149|21150|21151|21152|21153|21154|21155|215317|297808|297813|299985|299988|299991|299992|304190|304201|304202|304203|304210|304214|304215|304523|304529|486372|578434|578435|795708|802158|858725|894476|894478|894479|894480|894481|894482|894483|894484|894485|894486|894487|894488|894489|894490|894491|894492|894493|894494|894495|894496|894497|894498|894499|894500|894501|894502|894503|894504|894505|894506|894507|894508|894509|894510|894511|894512|894513|894514|918971", + "upstreamId": "21147|21148|21149|21150|21151|21152|21153|21154|21155|215317|297808|297813|299985|299988|299991|299992|304190|304201|304202|304203|304210|304214|304215|304523|304529|486372|578434|578435|795708|802158|858725|894476|894478|894479|894480|894481|894482|894483|894484|894485|894486|894487|894488|894489|894490|894491|894492|894493|894494|894495|894496|894497|894498|894499|894500|894501|894502|894503|894504|894505|894506|894507|894508|894509|894510|894511|894512|894513|894514|918971", "text": "Molybdenum cofactor deficiency, complementation group B" }, { - "baseId": "21149|297736|297741|297765|297766|297767|297776|297779|297781|297798|297807|297809|299941|299950|299962|299970|299972|299986|300053|300054|300057|300059|300071|300076|302731|302743|302752|302760|302776|304133|304169|304176|304191|304201|304202|304203|304442|304451|304490|304493|304526|307121|307397|307412|307413|307425", + "upstreamId": "21149|297736|297741|297765|297766|297767|297776|297779|297781|297798|297807|297809|299941|299950|299962|299970|299972|299986|300053|300054|300057|300059|300071|300076|302731|302743|302752|302760|302776|304133|304169|304176|304191|304201|304202|304203|304442|304451|304490|304493|304526|307121|307397|307412|307413|307425", "text": "Combined molybdoflavoprotein enzyme deficiency" }, { - "baseId": "21152|21156|21157|21158|21159|21160|205013|205014|300050|300051|300056|300060|300061|300078|300086|300087|300088|300089|300094|300101|300107|300110|302722|302724|302725|302747|302748|302753|302754|302761|302764|302766|302773|302775|302777|302784|302786|302788|302799|302811|302818|302819|302837|302841|307063|307065|307068|307070|307075|307076|307079|307140|307143|307144|307154|307156|307159|307161|307162|307164|307165|307172|307173|307181|307218|307219|307220|307224|307225|307403|307404|307423|307426|307436|307437|307439|307450|307454|361592|464000|464445|521668|522060|522377|560732|581754|620787|634928|634929|634930|679750|679826|790626|795856|831935|831936|831937|895922|895923|895924|895925|895926|895927|895928|895929|895930|895931|895932|895933|895934|895935|895936|895937|895938|895939|895940|895941|895942|895943|895944|895945|895946|895947|895948|895949|895950|895951|895952|895953|895954|895955|895956|895957|895958|895959|895960|895961|895962|895963|895964|896240|896241|896242|933325|945022|954450|961773", + "upstreamId": "21152|21156|21157|21158|21159|21160|205013|205014|300050|300051|300056|300060|300061|300078|300086|300087|300088|300089|300094|300101|300107|300110|302722|302724|302725|302747|302748|302753|302754|302761|302764|302766|302773|302775|302777|302784|302786|302788|302799|302811|302818|302819|302837|302841|307063|307065|307068|307070|307075|307076|307079|307140|307143|307144|307154|307156|307159|307161|307162|307164|307165|307172|307173|307181|307218|307219|307220|307224|307225|307403|307404|307423|307426|307436|307437|307439|307450|307454|361592|464000|464445|521668|522060|522377|560732|581754|620787|634928|634929|634930|679750|679826|790626|795856|831935|831936|831937|895922|895923|895924|895925|895926|895927|895928|895929|895930|895931|895932|895933|895934|895935|895936|895937|895938|895939|895940|895941|895942|895943|895944|895945|895946|895947|895948|895949|895950|895951|895952|895953|895954|895955|895956|895957|895958|895959|895960|895961|895962|895963|895964|896240|896241|896242|933325|945022|954450|961773", "text": "Molybdenum cofactor deficiency, complementation group A" }, { - "baseId": "21161|21162|21163|21164|21165|94535|185740|185741|207984|318055|318056|325969|325970|332221|332224|333699|333700|333713|333717|333734|462342|641282|681809|870190|870191|870192|870193|870194|872271|872272|872273|917740|936194|936195|941035", + "upstreamId": "21161|21162|21163|21164|21165|94535|185740|185741|207984|318055|318056|325969|325970|332221|332224|333699|333700|333713|333717|333734|462342|641282|681809|870190|870191|870192|870193|870194|872271|872272|872273|917740|936194|936195|941035", "text": "Diamond-Blackfan anemia 10" }, { - "baseId": "21166|21167|21788|22607|22659|22663|24047|24048|24049|24050|24073|39054|39058|39059|39164|39166|48117|53089|53503|176733|223686|223689|232102|264298|354279|410730|457788|481486|510873|513664|513957|513958|532147|532159|533475|551706|578648|578649|581235|581236|581838|581843|590018|590155|590156|590157|613938|613973|614485|615875|834064|919129|919130|919902|919903|919904|919905|961635|965931|970535|980490|983678|983682", + "upstreamId": "21166|21167|21788|22607|22659|22663|24047|24048|24049|24050|24073|39054|39058|39059|39164|39166|48117|53089|53503|176733|223686|223689|232102|264298|354279|410730|457788|481486|510873|513664|513957|513958|532147|532159|533475|551706|578648|578649|581235|581236|581838|581843|590018|590155|590156|590157|613938|613973|614485|615875|834064|919129|919130|919902|919903|919904|919905|961635|965931|970535|980490|983678|983682", "text": "Tetralogy of Fallot" }, { - "baseId": "21166|21167|21169|48117|166432|166433|240219|240220|240221|252999|253002|253005|253006|395860|396119|396122|396256|396543|396544|457735|457742|457744|457765|457768|522965|523199|523204|523206|523429|523548|523568|523569|523580|551706|561886|567325|636533|636534|636535|636536|636537|636538|636539|683961|683962|683964|683965|687158|834032|834033|924979|934062|945821|945822|955273", + "upstreamId": "21166|21167|21169|48117|166432|166433|240219|240220|240221|252999|253002|253005|253006|395860|396119|396122|396256|396543|396544|457735|457742|457744|457765|457768|522965|523199|523204|523206|523429|523548|523568|523569|523580|551706|561886|567325|636533|636534|636535|636536|636537|636538|636539|683961|683962|683964|683965|687158|834032|834033|924979|934062|945821|945822|955273", "text": "46,XY sex reversal 9" }, { - "baseId": "21167|21169|21787|48116|48118|394846|513907", + "upstreamId": "21167|21169|21787|48116|48118|394846|513907", "text": "Double outlet right ventricle" }, { - "baseId": "21167|21168|21169|21170|621896|621897|970870|975859|975860", + "upstreamId": "21167|21168|21169|21170|621896|621897|970870|975859|975860", "text": "Diaphragmatic hernia 3" }, { - "baseId": "21167|21169|27833|27835|27836|27837|27838|27839|27840|27841|27842|27843|27844|27845|27846|39055|39058|48117|142240|213584|213585|240219|252999|253284|260482|359757|359757|396274|428907|428910|458740|502861|523825|562690|562691|637644|637645|637646|653876|687353|692569|788832|794210|794211|794212|794213|794214|794215|820046|835434|835435|934528|940126|946339|946340", + "upstreamId": "21167|21169|27833|27835|27836|27837|27838|27839|27840|27841|27842|27843|27844|27845|27846|39055|39058|48117|142240|213584|213585|240219|252999|253284|260482|359757|359757|396274|428907|428910|458740|502861|523825|562690|562691|637644|637645|637646|653876|687353|692569|788832|794210|794211|794212|794213|794214|794215|820046|835434|835435|934528|940126|946339|946340", "text": "46,XY sex reversal, type 3" }, { - "baseId": "21171|293065|406132", + "upstreamId": "21171|293065|406132", "text": "Spastic paraplegia 42, autosomal dominant" }, { - "baseId": "21172|21173|21174|21175|21176|21177|21179|21181|21182|34675|34676|34677|34678|34679|34680|34681|34682|34683|34684|34685|34686|34687|34688|34689|34690|34691|34692|34693|34695|34696|34697|34698|34699|34700|34701|34703|34704|34705|34706|34707|34708|34709|34710|34711|34712|34714|34715|34716|48674|57327|57329|57330|57331|57332|57333|57335|57338|57340|57342|57344|57345|57346|57350|57358|57359|57362|57363|57364|57365|57367|57369|57370|57371|57372|57373|57376|57383|57387|57389|57393|57394|57397|57398|57399|57400|57403|57404|57406|57410|57411|57412|57413|57414|57415|57417|57420|57421|57422|57423|57425|57426|57433|57437|57438|57439|57442|76681|76682|76683|76684|76685|76686|76687|76688|76689|76690|76691|76692|76693|76694|76695|76696|76697|76698|76699|76700|76701|76702|76704|76705|76706|76707|76708|76709|76710|76711|76712|76713|76714|76715|76716|76717|76718|76719|76720|76721|76722|76723|76724|137046|137047|173497|173500|173501|173502|173507|173513|173514|173515|173518|173524|173638|173641|173648|173649|173657|199783|204282|208369|228939|228946|228948|228953|228956|250703|250708|271841|273157|285699|285703|285714|285716|285720|285722|285723|285725|285736|285738|285746|285748|286394|286396|286397|286398|286400|286405|286406|286407|286417|286418|286419|286424|286425|286449|286453|286456|286457|286461|288721|288726|288727|288728|288734|288735|288737|288744|288754|288756|288760|289142|289143|289146|289148|289151|289153|289154|289158|289166|289168|289169|389219|389220|404759|439895|439896|439897|439898|496272|496274|496757|539468|553251|553252|553253|615786|615787|619934|620079|620080|620081|620745|620746|622323|622684|622685|622686|622687|622699|654264|795211|799295|884491|884492|884493|884494|884495|884496|884497|884498|884499|884500|884501|884502|884503|884504|884505|884506|884507|884508|884509|884510|884511|884512|884513|884514|884515|884516|884517|884518|884519|884520|884521|884522|884523|884524|884525|884526|884527|884528|884529|884530|884531|884532|884533|884534|884535|887339|887340|887341|887342|887343|904241|966050|969147|971293", + "upstreamId": "21172|21173|21174|21175|21176|21177|21179|21181|21182|34675|34676|34677|34678|34679|34680|34681|34682|34683|34684|34685|34686|34687|34688|34689|34690|34691|34692|34693|34695|34696|34697|34698|34699|34700|34701|34703|34704|34705|34706|34707|34708|34709|34710|34711|34712|34714|34715|34716|48674|57327|57329|57330|57331|57332|57333|57335|57338|57340|57342|57344|57345|57346|57350|57358|57359|57362|57363|57364|57365|57367|57369|57370|57371|57372|57373|57376|57383|57387|57389|57393|57394|57397|57398|57399|57400|57403|57404|57406|57410|57411|57412|57413|57414|57415|57417|57420|57421|57422|57423|57425|57426|57433|57437|57438|57439|57442|76681|76682|76683|76684|76685|76686|76687|76688|76689|76690|76691|76692|76693|76694|76695|76696|76697|76698|76699|76700|76701|76702|76704|76705|76706|76707|76708|76709|76710|76711|76712|76713|76714|76715|76716|76717|76718|76719|76720|76721|76722|76723|76724|137046|137047|173497|173500|173501|173502|173507|173513|173514|173515|173518|173524|173638|173641|173648|173649|173657|199783|204282|208369|228939|228946|228948|228953|228956|250703|250708|271841|273157|285699|285703|285714|285716|285720|285722|285723|285725|285736|285738|285746|285748|286394|286396|286397|286398|286400|286405|286406|286407|286417|286418|286419|286424|286425|286449|286453|286456|286457|286461|288721|288726|288727|288728|288734|288735|288737|288744|288754|288756|288760|289142|289143|289146|289148|289151|289153|289154|289158|289166|289168|289169|389219|389220|404759|439895|439896|439897|439898|496272|496274|496757|539468|553251|553252|553253|615786|615787|619934|620079|620080|620081|620745|620746|622323|622684|622685|622686|622687|622699|654264|795211|799295|884491|884492|884493|884494|884495|884496|884497|884498|884499|884500|884501|884502|884503|884504|884505|884506|884507|884508|884509|884510|884511|884512|884513|884514|884515|884516|884517|884518|884519|884520|884521|884522|884523|884524|884525|884526|884527|884528|884529|884530|884531|884532|884533|884534|884535|887339|887340|887341|887342|887343|904241|966050|969147|971293", "text": "Deafness, autosomal recessive 9" }, { - "baseId": "21175|21178|21179|21180|21181|21182", + "upstreamId": "21175|21178|21179|21180|21181|21182", "text": "Auditory neuropathy, autosomal recessive, 1" }, { - "baseId": "21185|23156|23157|23258|23259|31035|31036|31037", + "upstreamId": "21185|23156|23157|23258|23259|31035|31036|31037", "text": "Basal cell carcinoma, somatic" }, { - "baseId": "21187|247548|282900|283688|285208|481465|537369|576093|614233|792724|801574|905863|920164|970723", + "upstreamId": "21187|247548|282900|283688|285208|481465|537369|576093|614233|792724|801574|905863|920164|970723", "text": "Hypomyelination, global cerebral" }, { - "baseId": "21189|286931|286933|289232|289241|289242|289244|289245|289246|289604|289605|289620|289621|289622|359098|451004|451007|518219|518264|558458|560631|626128|679895|685132|686207|686209|826465|884812|931402|942916|942917|964120", + "upstreamId": "21189|286931|286933|289232|289241|289242|289244|289245|289246|289604|289605|289620|289621|289622|359098|451004|451007|518219|518264|558458|560631|626128|679895|685132|686207|686209|826465|884812|931402|942916|942917|964120", "text": "Diamond-Blackfan anemia 8" }, { - "baseId": "21190|21191|21192|21193|21194|21195|237728|253971|253973|253974|253975|253976|253977|253978|253979|253981|260794|260795|312027|312032|312038|312039|312043|312044|317683|317684|317699|317703|317707|317708|317711|317712|317713|323645|323647|323649|323650|323651|323656|323658|323671|323674|323686|323688|323689|323697|323698|323714|323723|323727|324394|324397|324405|324418|324425|324426|324434|324436|324438|324439|324440|324441|324443|324444|324446|324448|513087|513088|590300|620375|620828|623305|623306|752382|793376|818286|818287|818288|866769|866770|866771|866772|866773|866774|866775|866776|866777|866778|866779|866780|866781|866782|866783|866784|866785|866786|866787|866788|866789|866790|866791|866792|866793|866794|866795|868578|961006|962729|962730|964350|970926", + "upstreamId": "21190|21191|21192|21193|21194|21195|237728|253971|253973|253974|253975|253976|253977|253978|253979|253981|260794|260795|312027|312032|312038|312039|312043|312044|317683|317684|317699|317703|317707|317708|317711|317712|317713|323645|323647|323649|323650|323651|323656|323658|323671|323674|323686|323688|323689|323697|323698|323714|323723|323727|324394|324397|324405|324418|324425|324426|324434|324436|324438|324439|324440|324441|324443|324444|324446|324448|513087|513088|590300|620375|620828|623305|623306|752382|793376|818286|818287|818288|866769|866770|866771|866772|866773|866774|866775|866776|866777|866778|866779|866780|866781|866782|866783|866784|866785|866786|866787|866788|866789|866790|866791|866792|866793|866794|866795|868578|961006|962729|962730|964350|970926", "text": "Focal segmental glomerulosclerosis 2" }, { - "baseId": "21196|21197|21198|21199|21200|21201|391635|427940|516815|551524|551525|557725|622864|800350|800686", + "upstreamId": "21196|21197|21198|21199|21200|21201|391635|427940|516815|551524|551525|557725|622864|800350|800686", "text": "Bardet-Biedl syndrome 5" }, { - "baseId": "21202|21203|21204|21205|21206|21206|21207|21208|21208|21210|21212|21213|27338|140205|140206|140208|141471|141472|141473|141474|210767|210768|210770|210771|210777|266146|274559|284709|285379|285380|285385|287612|287613|287614|287849|287850|300864|300951|327316|327321|327328|327356|327357|327360|337177|337178|337181|337185|337187|343381|343392|343401|344971|344972|344976|345010|345013|345016|361172|366412|366991|541853|613536|654243|883749|883750", + "upstreamId": "21202|21203|21204|21205|21206|21206|21207|21208|21208|21210|21212|21213|27338|140205|140206|140208|141471|141472|141473|141474|210767|210768|210770|210771|210777|266146|274559|284709|285379|285380|285385|287612|287613|287614|287849|287850|300864|300951|327316|327321|327328|327356|327357|327360|337177|337178|337181|337185|337187|343381|343392|343401|344971|344972|344976|345010|345013|345016|361172|366412|366991|541853|613536|654243|883749|883750", "text": "Mitochondrial complex III deficiency, nuclear type 1" }, { - "baseId": "21203|21206|21206|21208|21208|21210|21213|71050|71051|71052|71053|140205|140206|140208|210767|210768|210769|210770|210777|210779|259729|274559|284709|285379|285380|285385|287612|287613|287614|287849|287850|357236|357237|357238|357239|357240|357241|357242|357243|357244|357245|366412|366991|541728|541730|541731|541744|541746|541759|541798|541800|541803|541805|541815|541817|541823|541827|541853|541857|541888|541892|541894|541896|541899|541900|541905|541910|654241|654243|658809|747291|762924|762925|762927|781173|790196|883749|883750", + "upstreamId": "21203|21206|21206|21208|21208|21210|21213|71050|71051|71052|71053|140205|140206|140208|210767|210768|210769|210770|210777|210779|259729|274559|284709|285379|285380|285385|287612|287613|287614|287849|287850|357236|357237|357238|357239|357240|357241|357242|357243|357244|357245|366412|366991|541728|541730|541731|541744|541746|541759|541798|541800|541803|541805|541815|541817|541823|541827|541853|541857|541888|541892|541894|541896|541899|541900|541905|541910|654241|654243|658809|747291|762924|762925|762927|781173|790196|883749|883750", "text": "GRACILE syndrome" }, { - "baseId": "21206|21208|21209|132021|210779", + "upstreamId": "21206|21208|21209|132021|210779", "text": "Pili torti-deafness syndrome" }, { - "baseId": "21208|71051|210777|210779|620061", + "upstreamId": "21208|71051|210777|210779|620061", "text": "BCS1L-Related Disorders" }, { - "baseId": "21210|21211", + "upstreamId": "21210|21211", "text": "Bjornstad syndrome with mild mitochondrial complex III deficiency" }, { - "baseId": "21214|48742|140717|140719|264384|487425|513311", + "upstreamId": "21214|48742|140717|140719|264384|487425|513311", "text": "Cardioencephalomyopathy, fatal infantile, due to cytochrome c oxidase deficiency 2" }, { - "baseId": "21216|21217|125785", + "upstreamId": "21216|21217|125785", "text": "Mitochondrial complex 4 deficiency, nuclear type 4" }, { - "baseId": "21218|21219|21221|21222|21223|106510|106511|238349|238350|238353|265986|281306|281307|281320|281324|281325|281966|281967|281969|283216|283217|283219|283234|283237|283239|283370|283372|283373|283377|391435|513510|626114|628282|679736|818405|864833|864834|864835|864836|864837|865212|865213|865214|865215|918522|969293|974937|975944", + "upstreamId": "21218|21219|21221|21222|21223|106510|106511|238349|238350|238353|265986|281306|281307|281320|281324|281325|281966|281967|281969|283216|283217|283219|283234|283237|283239|283370|283372|283373|283377|391435|513510|626114|628282|679736|818405|864833|864834|864835|864836|864837|865212|865213|865214|865215|918522|969293|974937|975944", "text": "Diamond-Blackfan anemia 6" }, { - "baseId": "21224|21225|21226|227297|239901|299909|299910|299911|299915|302548|302549|302550|302556|306937|306938|306946|307216|895848|895849|895850|895851|895852", + "upstreamId": "21224|21225|21226|227297|239901|299909|299910|299911|299915|302548|302549|302550|302556|306937|306938|306946|307216|895848|895849|895850|895851|895852", "text": "Diamond-Blackfan anemia 9" }, { - "baseId": "21227|21228|21229|185755|212086|212087|212088|221093|221094|244151|268997|273693|280370|280374|280375|280382|280383|280384|280396|280735|280738|280739|280744|280748|280749|280750|282094|282100|282105|282106|282125|282128|282156|282157|282158|282161|282189|282190|282191|282195|282197|282198|282208|282217|282218|282224|282226|282240|282241|282243|282244|282257|282266|365222|365229|390748|391317|442823|447785|447798|447801|447809|447974|447983|448083|448086|448106|448111|448115|515790|515796|515797|515811|515815|515819|515828|515832|515846|515904|556486|557025|557027|557029|557254|557295|557297|557299|557301|558477|558479|558481|609425|627755|627756|627757|627758|627759|627760|627761|627762|627763|627764|627765|627766|650745|685704|685705|685706|685707|685709|690583|695046|780672|818963|818964|823881|823882|823883|823884|823885|823886|823887|823888|823889|823890|823891|823892|823893|864298|864299|864300|864301|864302|864303|864304|864305|864306|864307|864308|864309|921989|921990|921991|921992|921993|921994|930466|930467|930468|930469|930470|930471|941915|941916|941917|952389|952390|952391|960429|970686", + "upstreamId": "21227|21228|21229|185755|212086|212087|212088|221093|221094|244151|268997|273693|280370|280374|280375|280382|280383|280384|280396|280735|280738|280739|280744|280748|280749|280750|282094|282100|282105|282106|282125|282128|282156|282157|282158|282161|282189|282190|282191|282195|282197|282198|282208|282217|282218|282224|282226|282240|282241|282243|282244|282257|282266|365222|365229|390748|391317|442823|447785|447798|447801|447809|447974|447983|448083|448086|448106|448111|448115|515790|515796|515797|515811|515815|515819|515828|515832|515846|515904|556486|557025|557027|557029|557254|557295|557297|557299|557301|558477|558479|558481|609425|627755|627756|627757|627758|627759|627760|627761|627762|627763|627764|627765|627766|650745|685704|685705|685706|685707|685709|690583|695046|780672|818963|818964|823881|823882|823883|823884|823885|823886|823887|823888|823889|823890|823891|823892|823893|864298|864299|864300|864301|864302|864303|864304|864305|864306|864307|864308|864309|921989|921990|921991|921992|921993|921994|930466|930467|930468|930469|930470|930471|941915|941916|941917|952389|952390|952391|960429|970686", "text": "Charcot-Marie-Tooth disease, dominant intermediate C" }, { - "baseId": "21232|24368|50242|137477|223027|223028|223029|223030|223031|223032|223033|223034|223035|223036|223037|223038|223039|223040|223041|223042|223043|223044|223045|223046|223047|223048|223049|223050|223051|223052|223053|223054|223055|223056|223057|223058|223059|223060|223061|223062|223063|223064|223065|223066|223067|223068|223069|223070|223071|223072|223073|223074|223075|223076|223077|223078|223079|223080|223081|223082|223083|223084|223085|223086|223087|223088|223089|223090|223091|223092|223093|223094|223095|223096|223097|223098|223099|223100|223101|223102|223103|223104|223105|223106|223107|223108|223109|223110|223111|223112|223113|223114|223115|223116|223117|223118|223119|223120|223121|223122|223123|223124|223125|223126|223127|223128|223129|223130|223131|223132|223133|223134|223135|223136|223137|223138|223139|223140|223141|223142|223143|223144|223145|223146|223147|223148|223149|223150|223151|223152|223153|223154|223155|223156|223157|223158|223159|223160|223161|223162|223163|223164|223165|223166|223167|223168|223169|223170|223171|223172|223173|223174|223175|223176|223177|223178|223179|223180|223181|223182|223183|223184|223185|223186|223187|223188|223189|223190|223191|223192|223193|223194|223195|223196|223197|223198|223199|223200|223201|223202|223203|223204|223205|223206|223207|223208|223209|223210|223211|223212|223213|223214|223215|223216|223217|223218|223219|223220|223221|223222|223223|223224|223225|223226|223227|223228|223229|223230|223231|223232|223233|223234|223235|223236|223237|223238|223239|223240|223241|223242|223243|223244|223245|223246|223247|223248|223249|223250|223251|223252|223253|223254|223255|223256|223257|223258|223259|223260|223261|223262|223263|223264|223265|223266|223267|223268|223269|223270|223271|223272|223273|223274|223275|223276|223277|223278|223279|223280", + "upstreamId": "21232|24368|50242|137477|223027|223028|223029|223030|223031|223032|223033|223034|223035|223036|223037|223038|223039|223040|223041|223042|223043|223044|223045|223046|223047|223048|223049|223050|223051|223052|223053|223054|223055|223056|223057|223058|223059|223060|223061|223062|223063|223064|223065|223066|223067|223068|223069|223070|223071|223072|223073|223074|223075|223076|223077|223078|223079|223080|223081|223082|223083|223084|223085|223086|223087|223088|223089|223090|223091|223092|223093|223094|223095|223096|223097|223098|223099|223100|223101|223102|223103|223104|223105|223106|223107|223108|223109|223110|223111|223112|223113|223114|223115|223116|223117|223118|223119|223120|223121|223122|223123|223124|223125|223126|223127|223128|223129|223130|223131|223132|223133|223134|223135|223136|223137|223138|223139|223140|223141|223142|223143|223144|223145|223146|223147|223148|223149|223150|223151|223152|223153|223154|223155|223156|223157|223158|223159|223160|223161|223162|223163|223164|223165|223166|223167|223168|223169|223170|223171|223172|223173|223174|223175|223176|223177|223178|223179|223180|223181|223182|223183|223184|223185|223186|223187|223188|223189|223190|223191|223192|223193|223194|223195|223196|223197|223198|223199|223200|223201|223202|223203|223204|223205|223206|223207|223208|223209|223210|223211|223212|223213|223214|223215|223216|223217|223218|223219|223220|223221|223222|223223|223224|223225|223226|223227|223228|223229|223230|223231|223232|223233|223234|223235|223236|223237|223238|223239|223240|223241|223242|223243|223244|223245|223246|223247|223248|223249|223250|223251|223252|223253|223254|223255|223256|223257|223258|223259|223260|223261|223262|223263|223264|223265|223266|223267|223268|223269|223270|223271|223272|223273|223274|223275|223276|223277|223278|223279|223280", "text": "Ductal breast carcinoma" }, { - "baseId": "21233|22868|22881|23106|23107|23108|23312|23582|27386|27388|27391|27393|27394|27395|27397|27398|27403|27404|27405|27407|27408|27409|27413|27418|27422|27641|27642|27645|27652|28691|28692|28693|28694|28695|28696|28698|29000|29006|29011|29022|29755|30972|30973|31371|31378|32621|32623|36171|36173|40609|44227|48304|52759|53980|54391|54633|80852|88528|100947|132039|132041|132042|132043|132044|133263|133268|133271|133272|133274|133276|133277|133278|133282|136502|139098|139099|150515|150535|150657|150816|150855|151595|151732|151897|151955|152034|152428|152480|166218|171191|171613|171614|173901|176503|179419|180989|180995|181000|181001|181005|181011|181024|185331|185338|185345|185350|185366|185367|185369|185371|185375|185384|185394|185395|185420|206650|213392|213398|213402|213943|222738|232035|233761|236459|236461|236462|236463|236469|236471|236477|236479|236481|236500|242978|242980|245074|245076|260191|360335|362775|362777|362778|362826|362837|362867|362868|362894|362895|362896|362904|362905|362912|362928|362929|362952|362959|363053|363067|363068|363088|363112|363123|363174|363186|363197|363202|363241|363247|363248|363249|363250|363251|363258|363259|363260|363261|363262|363263|363264|363265|363266|363267|363269|363274|363275|363276|363277|363280|363281|363293|363294|363295|363296|363297|363298|363299|363300|363301|363302|363303|363304|363305|363306|363315|363316|363327|363328|363329|363340|363341|363342|363343|363344|363345|363346|363347|363349|363350|363351|363352|363353|363354|363355|363356|363357|363360|363361|363362|363363|363364|363365|363366|363367|363368|363369|363370|363376|363377|363378|363384|363385|363386|363388|363391|363392|363396|363397|363401|363402|363403|363420|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363473|363474|363475|363476|363477|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363496|363497|363498|363499|363503|363504|363505|363506|363507|363508|363512|363513|363514|363515|363516|363517|363518|363519|363520|363521|363522|363523|363524|363525|363526|363527|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363538|363542|363543|363544|363545|363546|363547|363548|363549|363550|363551|363552|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|363572|363573|403028|410259|469117|485351|576029|576030|576031|619761|646766|653033|681925|681926|682250|791830|791831|791832|791833|791834|791835|791836|814476", + "upstreamId": "21233|22868|22881|23106|23107|23108|23312|23582|27386|27388|27391|27393|27394|27395|27397|27398|27403|27404|27405|27407|27408|27409|27413|27418|27422|27641|27642|27645|27652|28691|28692|28693|28694|28695|28696|28698|29000|29006|29011|29022|29755|30972|30973|31371|31378|32621|32623|36171|36173|40609|44227|48304|52759|53980|54391|54633|80852|88528|100947|132039|132041|132042|132043|132044|133263|133268|133271|133272|133274|133276|133277|133278|133282|136502|139098|139099|150515|150535|150657|150816|150855|151595|151732|151897|151955|152034|152428|152480|166218|171191|171613|171614|173901|176503|179419|180989|180995|181000|181001|181005|181011|181024|185331|185338|185345|185350|185366|185367|185369|185371|185375|185384|185394|185395|185420|206650|213392|213398|213402|213943|222738|232035|233761|236459|236461|236462|236463|236469|236471|236477|236479|236481|236500|242978|242980|245074|245076|260191|360335|362775|362777|362778|362826|362837|362867|362868|362894|362895|362896|362904|362905|362912|362928|362929|362952|362959|363053|363067|363068|363088|363112|363123|363174|363186|363197|363202|363241|363247|363248|363249|363250|363251|363258|363259|363260|363261|363262|363263|363264|363265|363266|363267|363269|363274|363275|363276|363277|363280|363281|363293|363294|363295|363296|363297|363298|363299|363300|363301|363302|363303|363304|363305|363306|363315|363316|363327|363328|363329|363340|363341|363342|363343|363344|363345|363346|363347|363349|363350|363351|363352|363353|363354|363355|363356|363357|363360|363361|363362|363363|363364|363365|363366|363367|363368|363369|363370|363376|363377|363378|363384|363385|363386|363388|363391|363392|363396|363397|363401|363402|363403|363420|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363473|363474|363475|363476|363477|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363496|363497|363498|363499|363503|363504|363505|363506|363507|363508|363512|363513|363514|363515|363516|363517|363518|363519|363520|363521|363522|363523|363524|363525|363526|363527|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363538|363542|363543|363544|363545|363546|363547|363548|363549|363550|363551|363552|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|363572|363573|403028|410259|469117|485351|576029|576030|576031|619761|646766|653033|681925|681926|682250|791830|791831|791832|791833|791834|791835|791836|814476", "text": "Squamous cell carcinoma of the head and neck" }, { - "baseId": "21234|21234|21236|21237|21240|21241|21241|21242|21243|39326|39327|169763|169767|169769|169774|169779|169787|169787|169794|169799|169802|169804|169805|169814|169816|169817|169818|169820|198645|208792|236944|260264|260265|338121|347754|347766|351608|352554|352555|352558|352560|352560|361274|389185|413616|415714|415714|420984|431022|431023|431023|438229|471123|471124|471581|471583|486308|486308|495587|513385|513669|513670|534798|534799|534807|538500|552230|552231|552267|571997|574136|575208|575509|577909|613193|622482|622483|622926|649497|649498|649499|649500|653620|653722|679833|689290|694739|694740|695877|695878|705931|758088|760983|773550|778653|786601|789132|792063|792064|792065|792066|792067|792068|792069|798770|801743|801744|821460|849340|849341|849342|849343|849344|849345|849346|904227|939315|939316|939317|951474", + "upstreamId": "21234|21234|21236|21237|21240|21241|21241|21242|21243|39326|39327|169763|169767|169769|169774|169779|169787|169787|169794|169799|169802|169804|169805|169814|169816|169817|169818|169820|198645|208792|236944|260264|260265|338121|347754|347766|351608|352554|352555|352558|352560|352560|361274|389185|413616|415714|415714|420984|431022|431023|431023|438229|471123|471124|471581|471583|486308|486308|495587|513385|513669|513670|534798|534799|534807|538500|552230|552231|552267|571997|574136|575208|575509|577909|613193|622482|622483|622926|649497|649498|649499|649500|653620|653722|679833|689290|694739|694740|695877|695878|705931|758088|760983|773550|778653|786601|789132|792063|792064|792065|792066|792067|792068|792069|798770|801743|801744|821460|849340|849341|849342|849343|849344|849345|849346|904227|939315|939316|939317|951474", "text": "Infantile neuroaxonal dystrophy" }, { - "baseId": "21234|21237|21240|39327|169761|169764|169765|169766|169767|169768|169769|169770|169772|169774|169775|169776|169777|169778|169779|169780|169781|169783|169784|169785|169786|169787|169788|169789|169790|169791|169792|169793|169794|169795|169796|169797|169798|169799|169801|169803|169804|169807|169808|169809|169810|169811|169812|169813|169814|169815|169816|169819|169821|677270|677271|801085", + "upstreamId": "21234|21237|21240|39327|169761|169764|169765|169766|169767|169768|169769|169770|169772|169774|169775|169776|169777|169778|169779|169780|169781|169783|169784|169785|169786|169787|169788|169789|169790|169791|169792|169793|169794|169795|169796|169797|169798|169799|169801|169803|169804|169807|169808|169809|169810|169811|169812|169813|169814|169815|169816|169819|169821|677270|677271|801085", "text": "Iron accumulation in brain" }, { - "baseId": "21234|21235|21237|21240|21241|21241|21242|21243|169766|169780|169787|169796|208794|208795|236944|347766|352560|415714|430564|430565|431023|486308|612360|961898|962186|972802", + "upstreamId": "21234|21235|21237|21240|21241|21241|21242|21243|169766|169780|169787|169796|208794|208795|236944|347766|352560|415714|430564|430565|431023|486308|612360|961898|962186|972802", "text": "Neurodegeneration with brain iron accumulation 2b" }, { - "baseId": "21234|21241|21242|21243|21243|39323|39324|39325|39328|169787|236944|347766|352560|415714|431023|486308", + "upstreamId": "21234|21241|21242|21243|21243|39323|39324|39325|39328|169787|236944|347766|352560|415714|431023|486308", "text": "Parkinson disease 14" }, { - "baseId": "21234|39323|169763|169767|169768|169774|169776|169779|169782|169783|169787|169800|169802|169805|169806|169818|208792|236944|338113|338122|347750|347751|347753|347754|347755|347756|347758|347759|347766|347767|347770|351604|351607|351608|351610|352549|352550|352551|352552|352553|352554|352555|352556|352557|352558|352559|352560|352561|361345|415714|471583|486308|513670|577909|694738|694739|695877|849343|849345|891296|891297|891298|891299|891300|891301|891302|891303|891304|891305|891306|891307|891308|891309|891833|891834|891835|891836|891837|918470", + "upstreamId": "21234|39323|169763|169767|169768|169774|169776|169779|169782|169783|169787|169800|169802|169805|169806|169818|208792|236944|338113|338122|347750|347751|347753|347754|347755|347756|347758|347759|347766|347767|347770|351604|351607|351608|351610|352549|352550|352551|352552|352553|352554|352555|352556|352557|352558|352559|352560|352561|361345|415714|471583|486308|513670|577909|694738|694739|695877|849343|849345|891296|891297|891298|891299|891300|891301|891302|891303|891304|891305|891306|891307|891308|891309|891833|891834|891835|891836|891837|918470", "text": "PLA2G6-associated neurodegeneration" }, { - "baseId": "21234|48495|79451|79480|79505|94237|97346|97347|97348|97349|97350|97351|97352|97353|97354|97355|97356|97357|97358|102019|134762|153510|153517|194348|200392|200393|200755|200756|200757|202291|203036|207908|209322|209324|209325|209326|215014|359475|360894|361123|361154|361168|362170|389102|404850|424349|431497|431498|431499|431500|431501|431502|431503|431504|431505|431506|439069|439633|439634|439635|443058|444034|481029|481046|514196|514201|514214|535400|535402|535417|535418|535420|535421|535423|535424|535427|535428|535429|535430|535433|535434|535437|535438|535443|535445|535449|535457|535459|535462|535463|535465|535469|535474|535480|535481|535482|535483|535485|535486|535487|535490|535492|535493|535496|535497|535499|535500|535502|535503|535508|535509|535512|535528|535529|535530|535535|535540|535542|535546|535549|535550|535551|535552|535557|535563|535567|535568|535569|535572|535579|535580|535585|535587|535599|535605|535606|535607|535609|535612|535614|535621|535624|535625|535628|535631|535636|535638|535643|535647|535650|535651|535652|550843|550849|552225|578654|581714|581715|581850|581851|581852|581853|581854|590084|622944|626368|677400|678945|682393|682394|682395|800988|801109|801227|802100|832667|962072|963782|965484|965572|965579|966234|966235|966239|966243|966247|966254|966258|966261|966265|966272|966282|966283|966287|966294|966300|966307|966313|971420|971455|971459|971478|971496|971497|980674|980711|980713|980719", + "upstreamId": "21234|48495|79451|79480|79505|94237|97346|97347|97348|97349|97350|97351|97352|97353|97354|97355|97356|97357|97358|102019|134762|153510|153517|194348|200392|200393|200755|200756|200757|202291|203036|207908|209322|209324|209325|209326|215014|359475|360894|361123|361154|361168|362170|389102|404850|424349|431497|431498|431499|431500|431501|431502|431503|431504|431505|431506|439069|439633|439634|439635|443058|444034|481029|481046|514196|514201|514214|535400|535402|535417|535418|535420|535421|535423|535424|535427|535428|535429|535430|535433|535434|535437|535438|535443|535445|535449|535457|535459|535462|535463|535465|535469|535474|535480|535481|535482|535483|535485|535486|535487|535490|535492|535493|535496|535497|535499|535500|535502|535503|535508|535509|535512|535528|535529|535530|535535|535540|535542|535546|535549|535550|535551|535552|535557|535563|535567|535568|535569|535572|535579|535580|535585|535587|535599|535605|535606|535607|535609|535612|535614|535621|535624|535625|535628|535631|535636|535638|535643|535647|535650|535651|535652|550843|550849|552225|578654|581714|581715|581850|581851|581852|581853|581854|590084|622944|626368|677400|678945|682393|682394|682395|800988|801109|801227|802100|832667|962072|963782|965484|965572|965579|966234|966235|966239|966243|966247|966254|966258|966261|966265|966272|966282|966283|966287|966294|966300|966307|966313|971420|971455|971459|971478|971496|971497|980674|980711|980713|980719", "text": "Autistic disorder of childhood onset" }, { - "baseId": "21235|22501|22745|22745|24680|27809|34374|79331|181454|196365|207896|210585|213566|263234|263305|267991|268805|274788|299476|299490|301862|301890|301973|306312|306339|306415|306416|306417|306601|306602|359794|360812|360878|360906|360925|361043|361060|361062|362161|362161|384443|441283|461088|513942|514104|514152|514158|551427|551795|610516|613540|676964|677220|678943|678959|681597|681600|794276|800406|800407|800412|800956|800984|801165|801165|921254|921257|921260|962130|963089|963090", + "upstreamId": "21235|22501|22745|22745|24680|27809|34374|79331|181454|196365|207896|210585|213566|263234|263305|267991|268805|274788|299476|299490|301862|301890|301973|306312|306339|306415|306416|306417|306601|306602|359794|360812|360878|360906|360925|361043|361060|361062|362161|362161|384443|441283|461088|513942|514104|514152|514158|551427|551795|610516|613540|676964|677220|678943|678959|681597|681600|794276|800406|800407|800412|800956|800984|801165|801165|921254|921257|921260|962130|963089|963090", "text": "Cerebellar ataxia" }, { - "baseId": "21235|26867|153385|197521|358027|362152|513980|513981|514155|514159|514160|550330|590049|792692|801518|801519|806406|858765|858766|918497", + "upstreamId": "21235|26867|153385|197521|358027|362152|513980|513981|514155|514159|514160|550330|590049|792692|801518|801519|806406|858765|858766|918497", "text": "Developmental regression" }, { - "baseId": "21238", + "upstreamId": "21238", "text": "Karak syndrome" }, { - "baseId": "21244|21245|21247|21248|21250|21251|21253|21254|70983|70984|70985|70986|70987|70988|70989|70990|70991|70992|70993|70994|70995|70996|70997|70998|70999|71000|71001|71002|71003|71004|71005|71006|71007|71008|71009|71010|71011|71012|71013|71014|71015|71016|71017|71018|71019|71020|71021|71022|142899|142900|142901|142902|200280|200281|320312|320318|320321|320322|320323|320328|320329|328906|328916|328917|328927|335504|335508|335516|335517|335526|335527|335537|335556|335563|335564|337382|337388|337395|337396|337397|337404|337409|337412|337415|337417|337419|337423|337424|373000|373723|374102|409080|415385|430998|463118|504675|504685|504956|527837|527965|527966|527979|527981|528039|552172|566296|566304|566316|567763|567866|568744|568747|568754|572741|572743|614047|642194|642195|652583|652858|739166|739167|753976|753978|753980|753981|753982|769725|769728|775907|776054|776060|779847|784671|784673|784676|784677|788132|804907|820604|820605|820606|820607|820608|820609|841179|841180|841181|841182|841183|841184|841185|841186|841187|841188|841189|841190|841191|871718|871719|871720|871721|871722|871723|871724|871725|871726|871727|871728|871729|871730|871731|872361|872362|926982|926983|926984|926985|936551|936552|948477|948478|948479|948480|948481|957171|957172|957173|957174|957175|957176|957177|960083|979468|979469|979470|979471|979472|979473|979474|979475", + "upstreamId": "21244|21245|21247|21248|21250|21251|21253|21254|70983|70984|70985|70986|70987|70988|70989|70990|70991|70992|70993|70994|70995|70996|70997|70998|70999|71000|71001|71002|71003|71004|71005|71006|71007|71008|71009|71010|71011|71012|71013|71014|71015|71016|71017|71018|71019|71020|71021|71022|142899|142900|142901|142902|200280|200281|320312|320318|320321|320322|320323|320328|320329|328906|328916|328917|328927|335504|335508|335516|335517|335526|335527|335537|335556|335563|335564|337382|337388|337395|337396|337397|337404|337409|337412|337415|337417|337419|337423|337424|373000|373723|374102|409080|415385|430998|463118|504675|504685|504956|527837|527965|527966|527979|527981|528039|552172|566296|566304|566316|567763|567866|568744|568747|568754|572741|572743|614047|642194|642195|652583|652858|739166|739167|753976|753978|753980|753981|753982|769725|769728|775907|776054|776060|779847|784671|784673|784676|784677|788132|804907|820604|820605|820606|820607|820608|820609|841179|841180|841181|841182|841183|841184|841185|841186|841187|841188|841189|841190|841191|871718|871719|871720|871721|871722|871723|871724|871725|871726|871727|871728|871729|871730|871731|872361|872362|926982|926983|926984|926985|936551|936552|948477|948478|948479|948480|948481|957171|957172|957173|957174|957175|957176|957177|960083|979468|979469|979470|979471|979472|979473|979474|979475", "text": "Lysinuric protein intolerance" }, { - "baseId": "21255|21256|21261|39322|101059|101064|101064|101066|101067|101069|101070|101071|101072|101073|101074|101075|101076|141778|169756|169757|169758|169759|169759|169760|172277|177170|177815|177816|190839|191678|191680|194401|194402|194403|208788|208789|257611|267775|271995|273963|337960|337964|337975|337976|337978|337984|337991|337994|347602|347611|347612|347614|347620|347621|347628|347630|347632|347642|347643|351481|351483|351484|351488|351489|351491|351493|351495|351498|351500|351501|351504|351505|351506|351508|351509|352487|352489|352490|352491|352492|352493|352494|352495|352496|378712|378789|379848|379850|415713|426374|470264|470267|470270|471113|471118|471121|471552|471555|471564|471568|471572|471951|471952|471961|471962|471965|508400|508407|534269|534280|534282|534408|534412|534419|534421|534424|534431|534777|571978|571986|571987|573232|573399|573399|573403|573404|573909|574124|574126|574128|577906|577907|649460|649461|649462|649463|649464|649465|649466|649467|649468|649469|649470|649471|653603|653698|694719|694720|694724|694727|694728|705904|705905|717416|742867|773533|821395|821459|849304|849305|849306|849307|849308|849309|849310|849311|849312|849313|849314|849315|891178|891179|891180|891181|891182|891183|891184|891185|891186|891187|891188|891189|891190|891191|891192|891193|891194|891195|891196|891197|891198|891199|891200|891821|891822|891823|891824|904221|929482|929483|939303|939304|939305|939306|939307|939308|951463|951464|959089|959090|959091", + "upstreamId": "21255|21256|21261|39322|101059|101064|101064|101066|101067|101069|101070|101071|101072|101073|101074|101075|101076|141778|169756|169757|169758|169759|169759|169760|172277|177170|177815|177816|190839|191678|191680|194401|194402|194403|208788|208789|257611|267775|271995|273963|337960|337964|337975|337976|337978|337984|337991|337994|347602|347611|347612|347614|347620|347621|347628|347630|347632|347642|347643|351481|351483|351484|351488|351489|351491|351493|351495|351498|351500|351501|351504|351505|351506|351508|351509|352487|352489|352490|352491|352492|352493|352494|352495|352496|378712|378789|379848|379850|415713|426374|470264|470267|470270|471113|471118|471121|471552|471555|471564|471568|471572|471951|471952|471961|471962|471965|508400|508407|534269|534280|534282|534408|534412|534419|534421|534424|534431|534777|571978|571986|571987|573232|573399|573399|573403|573404|573909|574124|574126|574128|577906|577907|649460|649461|649462|649463|649464|649465|649466|649467|649468|649469|649470|649471|653603|653698|694719|694720|694724|694727|694728|705904|705905|717416|742867|773533|821395|821459|849304|849305|849306|849307|849308|849309|849310|849311|849312|849313|849314|849315|891178|891179|891180|891181|891182|891183|891184|891185|891186|891187|891188|891189|891190|891191|891192|891193|891194|891195|891196|891197|891198|891199|891200|891821|891822|891823|891824|904221|929482|929483|939303|939304|939305|939306|939307|939308|951463|951464|959089|959090|959091", "text": "Congenital muscular dystrophy-dystroglycanopathy with mental retardation, type B6" }, { - "baseId": "21257|21258|21259|21260|101059|101064|101064|101066|101067|101069|101070|101071|101072|101073|101074|101075|101076|141778|169756|169758|169759|169759|169760|177815|191680|208789|267775|271995|273963|337960|337964|337975|337976|337978|337984|337991|337994|347602|347611|347612|347614|347620|347621|347628|347630|347632|347642|347643|351481|351483|351484|351488|351489|351491|351493|351495|351498|351500|351501|351504|351505|351506|351508|351509|352487|352489|352490|352491|352492|352493|352494|352495|352496|379850|471568|486618|508400|534424|553159|573399|694727|891178|891179|891180|891181|891182|891183|891184|891185|891186|891187|891188|891189|891190|891191|891192|891193|891194|891195|891196|891197|891198|891199|891200|891821|891822|891823|891824", + "upstreamId": "21257|21258|21259|21260|101059|101064|101064|101066|101067|101069|101070|101071|101072|101073|101074|101075|101076|141778|169756|169758|169759|169759|169760|177815|191680|208789|267775|271995|273963|337960|337964|337975|337976|337978|337984|337991|337994|347602|347611|347612|347614|347620|347621|347628|347630|347632|347642|347643|351481|351483|351484|351488|351489|351491|351493|351495|351498|351500|351501|351504|351505|351506|351508|351509|352487|352489|352490|352491|352492|352493|352494|352495|352496|379850|471568|486618|508400|534424|553159|573399|694727|891178|891179|891180|891181|891182|891183|891184|891185|891186|891187|891188|891189|891190|891191|891192|891193|891194|891195|891196|891197|891198|891199|891200|891821|891822|891823|891824", "text": "Congenital muscular dystrophy-dystroglycanopathy with brain and eye anomalies, type A6" }, { - "baseId": "21262|21263|21264|21265|21266|21267|21268|39319|39320|39321|99965|177017|177280|178106|191019|192647|192749|193179|193504|193506|194903|226533|227365|322135|322143|322146|322148|322154|322155|322159|322162|322164|322167|322174|322176|322180|331421|331424|331431|331432|331443|331453|331462|331469|331476|331479|331482|331484|331491|331492|338321|338325|338328|338332|338352|338353|338359|338361|338364|338367|338368|338369|338374|338384|338386|338389|338394|338403|340130|340131|340136|340140|340141|340142|340145|340146|340147|340153|340155|340156|340159|432312|432313|584920|612158|620506|620507|620508|620864|620865|620866|703109|703111|725987|725988|725989|725990|725991|725992|739534|770069|800364|800372|818309|842107|842117|842119|856805|873155|873156|873157|873158|873159|873160|873161|873162|873163|873164|873165|873166|873167|873168|873169|873170|873171|873172|873173|873174|873175|873176|873177|873178|873179|873180|873181|873182|873183|873184|873185|873186|873187|873188|873189|873190|873191|873192|873193|873194|873195|873196|873197|873198|873199|873200|876483|876484|876485|876486|876487|876488|919564|965742", + "upstreamId": "21262|21263|21264|21265|21266|21267|21268|39319|39320|39321|99965|177017|177280|178106|191019|192647|192749|193179|193504|193506|194903|226533|227365|322135|322143|322146|322148|322154|322155|322159|322162|322164|322167|322174|322176|322180|331421|331424|331431|331432|331443|331453|331462|331469|331476|331479|331482|331484|331491|331492|338321|338325|338328|338332|338352|338353|338359|338361|338364|338367|338368|338369|338374|338384|338386|338389|338394|338403|340130|340131|340136|340140|340141|340142|340145|340146|340147|340153|340155|340156|340159|432312|432313|584920|612158|620506|620507|620508|620864|620865|620866|703109|703111|725987|725988|725989|725990|725991|725992|739534|770069|800364|800372|818309|842107|842117|842119|856805|873155|873156|873157|873158|873159|873160|873161|873162|873163|873164|873165|873166|873167|873168|873169|873170|873171|873172|873173|873174|873175|873176|873177|873178|873179|873180|873181|873182|873183|873184|873185|873186|873187|873188|873189|873190|873191|873192|873193|873194|873195|873196|873197|873198|873199|873200|876483|876484|876485|876486|876487|876488|919564|965742", "text": "Congenital stationary night blindness, type 1C" }, { - "baseId": "21269", + "upstreamId": "21269", "text": "High density lipoprotein cholesterol level quantitative trait locus 8" }, { - "baseId": "21270|21271|21272|21273|21274|141974|141975|191579|231812|231813|244698|254369|254370|315506|315510|315511|315515|315519|315521|315529|315530|315534|315537|315542|315543|315544|315549|315550|315557|315559|315561|315562|315573|315581|322412|322418|322420|322422|328548|328553|328558|328562|328575|328579|328580|328596|328605|328611|329845|329846|329851|329852|329862|329863|372769|398790|398933|461740|462375|526597|540457|612295|672004|672005|672006|672007|788862|792785|868974|868975|868976|868977|868978|868979|868980|868981|868982|868983|868984|868985|868986|868987|868988|962983|980944|981760", + "upstreamId": "21270|21271|21272|21273|21274|141974|141975|191579|231812|231813|244698|254369|254370|315506|315510|315511|315515|315519|315521|315529|315530|315534|315537|315542|315543|315544|315549|315550|315557|315559|315561|315562|315573|315581|322412|322418|322420|322422|328548|328553|328558|328562|328575|328579|328580|328596|328605|328611|329845|329846|329851|329852|329862|329863|372769|398790|398933|461740|462375|526597|540457|612295|672004|672005|672006|672007|788862|792785|868974|868975|868976|868977|868978|868979|868980|868981|868982|868983|868984|868985|868986|868987|868988|962983|980944|981760", "text": "Charcot-Marie-Tooth disease, type 4B1" }, { - "baseId": "21275|21276|21278|21279|44695|53936|53937|53939|53940|174347|174484|174486|174487|174488|189814|189816|205147|229426|237601|239890|299095|299096|299100|299106|299107|299116|299118|299121|299127|299128|299129|299135|299136|299137|299149|301509|301524|301525|301534|301545|301549|301550|301551|301556|305877|305889|305906|305907|305909|305910|305921|306132|306134|306139|306142|306158|306171|306172|306197|306198|612088|691941|831571|895384|895385|895386|895387|895388|895389|895390|895391|895392|895393|895394|895395|895396|895397|895398|895399|895400|895401|895402|895403|895404|895405|895406|895407|895408|895409|895410|895411|895412|895413|895414|895415|895416|895417|895418|895419|896191|896192|905062|970821", + "upstreamId": "21275|21276|21278|21279|44695|53936|53937|53939|53940|174347|174484|174486|174487|174488|189814|189816|205147|229426|237601|239890|299095|299096|299100|299106|299107|299116|299118|299121|299127|299128|299129|299135|299136|299137|299149|301509|301524|301525|301534|301545|301549|301550|301551|301556|305877|305889|305906|305907|305909|305910|305921|306132|306134|306139|306142|306158|306171|306172|306197|306198|612088|691941|831571|895384|895385|895386|895387|895388|895389|895390|895391|895392|895393|895394|895395|895396|895397|895398|895399|895400|895401|895402|895403|895404|895405|895406|895407|895408|895409|895410|895411|895412|895413|895414|895415|895416|895417|895418|895419|896191|896192|905062|970821", "text": "Deafness, autosomal dominant 10" }, { - "baseId": "21277|44695|53936|53937|53938|53939|53940|174347|174482|174484|174486|174487|174488|189808|189809|189812|189814|189815|189816|189817|189818|229421|229426|239887|239888|239889|239890|239892|258434|299095|299096|299100|299106|299107|299116|299118|299121|299127|299128|299129|299135|299136|299137|299149|301509|301524|301525|301534|301545|301549|301550|301551|301556|305877|305889|305906|305907|305909|305910|305921|306132|306134|306139|306142|306158|306171|306172|306197|306198|395062|395207|395219|395222|395414|395683|395684|395685|455283|455286|455296|455383|455389|455756|455962|456140|456142|456148|456150|491559|509796|521437|521438|521440|521443|521725|521770|521774|521779|521784|522024|522027|560465|560467|560469|560600|560602|560604|563392|563393|563396|565435|565441|634621|634622|634623|634624|634625|634626|634627|634628|634629|634630|634631|634632|634633|634634|634635|634636|634637|634638|651590|685191|686802|686804|689812|689813|691941|699329|765503|819663|831562|831563|831564|831565|831566|831567|831568|831569|831570|831571|831572|831573|831574|831575|831576|851314|852243|895384|895385|895386|895387|895388|895389|895390|895391|895392|895393|895394|895395|895396|895397|895398|895399|895400|895401|895402|895403|895404|895405|895406|895407|895408|895409|895410|895411|895412|895413|895414|895415|895416|895417|895418|895419|896191|896192|924260|924261|924262|924263|924264|933181|940840|944888|944889|954372|954373", + "upstreamId": "21277|44695|53936|53937|53938|53939|53940|174347|174482|174484|174486|174487|174488|189808|189809|189812|189814|189815|189816|189817|189818|229421|229426|239887|239888|239889|239890|239892|258434|299095|299096|299100|299106|299107|299116|299118|299121|299127|299128|299129|299135|299136|299137|299149|301509|301524|301525|301534|301545|301549|301550|301551|301556|305877|305889|305906|305907|305909|305910|305921|306132|306134|306139|306142|306158|306171|306172|306197|306198|395062|395207|395219|395222|395414|395683|395684|395685|455283|455286|455296|455383|455389|455756|455962|456140|456142|456148|456150|491559|509796|521437|521438|521440|521443|521725|521770|521774|521779|521784|522024|522027|560465|560467|560469|560600|560602|560604|563392|563393|563396|565435|565441|634621|634622|634623|634624|634625|634626|634627|634628|634629|634630|634631|634632|634633|634634|634635|634636|634637|634638|651590|685191|686802|686804|689812|689813|691941|699329|765503|819663|831562|831563|831564|831565|831566|831567|831568|831569|831570|831571|831572|831573|831574|831575|831576|851314|852243|895384|895385|895386|895387|895388|895389|895390|895391|895392|895393|895394|895395|895396|895397|895398|895399|895400|895401|895402|895403|895404|895405|895406|895407|895408|895409|895410|895411|895412|895413|895414|895415|895416|895417|895418|895419|896191|896192|924260|924261|924262|924263|924264|933181|940840|944888|944889|954372|954373", "text": "Dilated cardiomyopathy 1J" }, { - "baseId": "21280|21281|21282|21283|21284|21285|21286|21287|21288|34275|34276|34277|34278|34279|54268|54271|54272|76796|76801|166117|172446|204593|204594|204595|204596|204597|204598|204599|204600|204601|204602|496165|576062|581958|613748|967260", + "upstreamId": "21280|21281|21282|21283|21284|21285|21286|21287|21288|34275|34276|34277|34278|34279|54268|54271|54272|76796|76801|166117|172446|204593|204594|204595|204596|204597|204598|204599|204600|204601|204602|496165|576062|581958|613748|967260", "text": "Autosomal dominant nonsyndromic deafness 2A" }, { - "baseId": "21289|21290|21291", + "upstreamId": "21289|21290|21291", "text": "Mucosa-associated lymphoma" }, { - "baseId": "21289|21304|21305", + "upstreamId": "21289|21304|21305", "text": "Male germ cell tumor, somatic" }, { - "baseId": "21292|21293|21294|21295|21296|21297", + "upstreamId": "21292|21293|21294|21295|21296|21297", "text": "Follicular lymphoma" }, { - "baseId": "21298|24552|24553|608935", + "upstreamId": "21298|24552|24553|608935", "text": "T-cell acute lymphoblastic leukemia" }, { - "baseId": "21299", + "upstreamId": "21299", "text": "Sezary syndrome" }, { - "baseId": "21306|76959|76960|76961|805099", + "upstreamId": "21306|76959|76960|76961|805099", "text": "Coronary artery disease, autosomal dominant 2" }, { - "baseId": "21307|21308|21309|21310|21311|21312|21313|21314|21315|21316|21317|21318|21331|48770|48771|48772|48773|48774|48775|254285|262637|362379|362380|791165|858277|858278", + "upstreamId": "21307|21308|21309|21310|21311|21312|21313|21314|21315|21316|21317|21318|21331|48770|48771|48772|48773|48774|48775|254285|262637|362379|362380|791165|858277|858278", "text": "Osteoporosis with pseudoglioma" }, { - "baseId": "21319|432371", + "upstreamId": "21319|432371", "text": "High bone mass" }, { - "baseId": "21320|21321|21322|21324|181388", + "upstreamId": "21320|21321|21322|21324|181388", "text": "Autosomal dominant osteopetrosis 1" }, { - "baseId": "21321|21322|21323", + "upstreamId": "21321|21322|21323", "text": "Worth disease" }, { - "baseId": "21321", + "upstreamId": "21321", "text": "Van Buchem disease type 2" }, { - "baseId": "21326|21327|21331", + "upstreamId": "21326|21327|21331", "text": "Exudative vitreoretinopathy 4, autosomal dominant" }, { - "baseId": "21326|195712|226403|226404|226404|226405|226407|237630|304917|304932|304933|309667|315366|315379|315387|315395|315415|315417|322226|328347|328353|329665|431719|431758|431759|434765|800563|800564|800574", + "upstreamId": "21326|195712|226403|226404|226404|226405|226407|237630|304917|304932|304933|309667|315366|315379|315387|315395|315415|315417|322226|328347|328353|329665|431719|431758|431759|434765|800563|800564|800574", "text": "Familial exudative vitreoretinopathy" }, { - "baseId": "21328|21329|21330|21333|21334", + "upstreamId": "21328|21329|21330|21333|21334", "text": "Exudative vitreoretinopathy 4, autosomal recessive" }, { - "baseId": "21332", + "upstreamId": "21332", "text": "Exudative vitreoretinopathy 4, digenic" }, { - "baseId": "21335|21336|21337|100280|106506|106507|106508|106509|237146|257368|335785|345492|345495|350111|351152|351153|351154|351155|351158|378134|422327|469419|469421|469428|470463|470468|471447|471448|471452|533578|533582|533625|533647|571306|571307|572845|572938|573576|573577|575117|575118|648767|648768|648769|648770|648771|648772|648773|648774|648775|653534|695847|780135|850634|850639|850641|850642|850643|850644|850645|850647|886278|886279|886280|886281|886282|886283|886284|887473|929223|939008|939009|940510|941254|951129", + "upstreamId": "21335|21336|21337|100280|106506|106507|106508|106509|237146|257368|335785|345492|345495|350111|351152|351153|351154|351155|351158|378134|422327|469419|469421|469428|470463|470468|471447|471448|471452|533578|533582|533625|533647|571306|571307|572845|572938|573576|573577|575117|575118|648767|648768|648769|648770|648771|648772|648773|648774|648775|653534|695847|780135|850634|850639|850641|850642|850643|850644|850645|850647|886278|886279|886280|886281|886282|886283|886284|887473|929223|939008|939009|940510|941254|951129", "text": "Congenital disorder of glycosylation type 1E" }, { - "baseId": "21338|204404|204404|271607", + "upstreamId": "21338|204404|204404|271607", "text": "Familial expansile osteolysis" }, { - "baseId": "21339|23147|23149|190424|198653|198654|204404|204405|247436|251872|251872|251873|251874|251874|251875|251876|251876|251877|251878|260472|266298|271607|271834|273902|297254|297255|299249|303455|332146|332149|332150|332151|332153|332154|342324|342325|342331|342332|342334|342338|342343|342349|347744|347745|347746|347752|347760|347763|349118|349128|349129|349134|349141|349144|368605|368616|406734|440879|440880|440880|440881|454867|454870|454871|454874|455001|455004|455006|455009|455013|455014|455474|455485|455486|455488|455490|455492|455723|495500|521095|521353|521355|521466|521476|521644|521649|560406|560408|560410|563086|563088|576805|633830|633831|633832|633833|633834|633835|633836|633837|633838|633839|633840|633841|633842|633843|633844|633845|633846|633847|651328|691836|691837|691838|691839|691840|699040|699043|699044|709848|716022|721414|721415|727766|741423|744221|749450|765071|777447|777539|777547|782265|819585|830757|830758|830759|830760|830761|830762|830763|830764|830765|830766|830767|830768|830769|830770|830771|830772|851907|879693|879694|879695|879696|879697|879698|879699|879700|879701|879702|879703|879704|879705|879706|879707|879708|879709|879710|879711|879712|879713|879714|879715|879716|879718|879719|879720|879721|879722|879723|879724|879725|879726|879727|879728|879729|879730|879731|879732|879733|879734|879735|879736|879737|879738|880672|880673|880674|880675|880676|894062|924020|924021|924022|924023|924024|924025|924026|944580|944581|944582|944583|944584|954148|954149|954150|959763", + "upstreamId": "21339|23147|23149|190424|198653|198654|204404|204405|247436|251872|251872|251873|251874|251874|251875|251876|251876|251877|251878|260472|266298|271607|271834|273902|297254|297255|299249|303455|332146|332149|332150|332151|332153|332154|342324|342325|342331|342332|342334|342338|342343|342349|347744|347745|347746|347752|347760|347763|349118|349128|349129|349134|349141|349144|368605|368616|406734|440879|440880|440880|440881|454867|454870|454871|454874|455001|455004|455006|455009|455013|455014|455474|455485|455486|455488|455490|455492|455723|495500|521095|521353|521355|521466|521476|521644|521649|560406|560408|560410|563086|563088|576805|633830|633831|633832|633833|633834|633835|633836|633837|633838|633839|633840|633841|633842|633843|633844|633845|633846|633847|651328|691836|691837|691838|691839|691840|699040|699043|699044|709848|716022|721414|721415|727766|741423|744221|749450|765071|777447|777539|777547|782265|819585|830757|830758|830759|830760|830761|830762|830763|830764|830765|830766|830767|830768|830769|830770|830771|830772|851907|879693|879694|879695|879696|879697|879698|879699|879700|879701|879702|879703|879704|879705|879706|879707|879708|879709|879710|879711|879712|879713|879714|879715|879716|879718|879719|879720|879721|879722|879723|879724|879725|879726|879727|879728|879729|879730|879731|879732|879733|879734|879735|879736|879737|879738|880672|880673|880674|880675|880676|894062|924020|924021|924022|924023|924024|924025|924026|944580|944581|944582|944583|944584|954148|954149|954150|959763", "text": "Paget disease of bone 2, early-onset" }, { - "baseId": "21340|21341|21342|21343|21344|190424|266298|271607|271834|273902|332146|332149|332150|332151|332153|332154|342324|342325|342331|342332|342334|342338|342343|342349|347744|347745|347746|347752|347760|347763|349118|349128|349129|349134|349141|349144|716022|727766|741423|879693|879694|879695|879696|879697|879698|879699|879700|879701|879702|879703|879704|879705|879706|879707|879708|879709|879710|879711|879712|879713|879714|879715|879716|879718|879719|879720|879721|879722|879723|879724|879725|879726|879727|879728|879729|879730|879731|879732|879733|879734|879735|879736|879737|879738|880672|880673|880674|880675|880676", + "upstreamId": "21340|21341|21342|21343|21344|190424|266298|271607|271834|273902|332146|332149|332150|332151|332153|332154|342324|342325|342331|342332|342334|342338|342343|342349|347744|347745|347746|347752|347760|347763|349118|349128|349129|349134|349141|349144|716022|727766|741423|879693|879694|879695|879696|879697|879698|879699|879700|879701|879702|879703|879704|879705|879706|879707|879708|879709|879710|879711|879712|879713|879714|879715|879716|879718|879719|879720|879721|879722|879723|879724|879725|879726|879727|879728|879729|879730|879731|879732|879733|879734|879735|879736|879737|879738|880672|880673|880674|880675|880676", "text": "Autosomal recessive osteopetrosis 7" }, { - "baseId": "21345|21346|76990|334431|344295|344304|349406|349409|349410|350418|620649|882549|882550|882551|882552|882553|882554|882555|882556|882557|882558|882559|882560|882561|882562|882563|882939|882940", + "upstreamId": "21345|21346|76990|334431|344295|344304|349406|349409|349410|350418|620649|882549|882550|882551|882552|882553|882554|882555|882556|882557|882558|882559|882560|882561|882562|882563|882939|882940", "text": "Infertility associated with multi-tailed spermatozoa and excessive DNA" }, { - "baseId": "21347|21349|21350|578378|965211", + "upstreamId": "21347|21349|21350|578378|965211", "text": "Mullerian aplasia and hyperandrogenism" }, { - "baseId": "21348|578378", + "upstreamId": "21348|578378", "text": "SERKAL syndrome" }, { - "baseId": "21351", + "upstreamId": "21351", "text": "Lumbar disc disease, susceptibility to" }, { - "baseId": "21352|21353|21354|21355|21356|21357|21359|94534|142630|208599|238353|243345|265986|333680|333685|333686|343684|349023|349028|349030|349032|349034|349917|349918|349920|349921|430219|430220|557386|578653|882094|882095|882096|882097|882098|882896|882897|882898|965627|965628", + "upstreamId": "21352|21353|21354|21355|21356|21357|21359|94534|142630|208599|238353|243345|265986|333680|333685|333686|343684|349023|349028|349030|349032|349034|349917|349918|349920|349921|430219|430220|557386|578653|882094|882095|882096|882097|882098|882896|882897|882898|965627|965628", "text": "Diamond-Blackfan anemia 1" }, { - "baseId": "21360|21361|21362|21363|21364|21365|21366|21367|21368|21369|21370|21371|21372|21373|21374|21375|21376|21377|21378|97542|98279|98280|98281|98282|98283|98284|98285|98286|98287|176996|177496|186781|186782|186783|186784|190535|190714|191131|191617|194259|195547|200164|200174|200175|200178|200179|200180|204411|227330|236999|252988|252989|253325|253328|253330|259915|260670|260671|260672|260673|271748|303680|303681|303690|303693|303697|303698|303699|303705|303706|303715|307052|307053|307059|307060|307064|307069|307072|307073|307074|307083|307084|307089|307090|307091|307111|307112|307115|307116|307119|307122|307124|307127|311160|311162|311163|311201|311210|311211|312042|312049|312060|312061|312065|312066|312067|312069|312077|312078|312080|312094|312111|312113|312131|312132|312144|316786|316789|316793|316794|316795|317203|317204|317206|317223|317229|357775|357776|357777|357778|357779|357780|357781|357782|357783|370425|370688|372324|415163|421714|425824|433368|458127|458419|458425|458888|458890|458934|458935|458938|487247|487354|502584|502694|502699|503002|503015|524074|524076|524366|524588|524631|524639|544680|544683|544687|544690|544701|544704|544992|544994|544996|544997|545001|545002|545004|545113|545115|545117|545125|545128|545131|545207|545208|545211|545216|545221|545226|545228|545233|545238|563560|565354|565571|565573|565575|568550|568555|612131|612283|620321|620809|621294|621295|637784|637785|637786|637787|637788|637789|651832|655902|655903|692594|692595|692596|695419|700836|723363|723365|736928|736929|751439|751440|751441|751442|751443|751444|775347|775488|783297|790765|790846|801663|801664|801665|801666|801667|801668|801669|801670|801671|801672|801673|820076|820077|835570|835571|835572|835573|835574|835575|835576|835577|835578|835579|852487|901185|901186|901187|901188|901189|901190|901191|903322|903323|903324|917471|925406|925407|925408|925409|934571|934572|934573|934574|940925|940926|946397|955708|955709|955710|955711|955712|955713|959913|961782|978569|978570|978571|980932|981663|981664|981665|981666|981667", + "upstreamId": "21360|21361|21362|21363|21364|21365|21366|21367|21368|21369|21370|21371|21372|21373|21374|21375|21376|21377|21378|97542|98279|98280|98281|98282|98283|98284|98285|98286|98287|176996|177496|186781|186782|186783|186784|190535|190714|191131|191617|194259|195547|200164|200174|200175|200178|200179|200180|204411|227330|236999|252988|252989|253325|253328|253330|259915|260670|260671|260672|260673|271748|303680|303681|303690|303693|303697|303698|303699|303705|303706|303715|307052|307053|307059|307060|307064|307069|307072|307073|307074|307083|307084|307089|307090|307091|307111|307112|307115|307116|307119|307122|307124|307127|311160|311162|311163|311201|311210|311211|312042|312049|312060|312061|312065|312066|312067|312069|312077|312078|312080|312094|312111|312113|312131|312132|312144|316786|316789|316793|316794|316795|317203|317204|317206|317223|317229|357775|357776|357777|357778|357779|357780|357781|357782|357783|370425|370688|372324|415163|421714|425824|433368|458127|458419|458425|458888|458890|458934|458935|458938|487247|487354|502584|502694|502699|503002|503015|524074|524076|524366|524588|524631|524639|544680|544683|544687|544690|544701|544704|544992|544994|544996|544997|545001|545002|545004|545113|545115|545117|545125|545128|545131|545207|545208|545211|545216|545221|545226|545228|545233|545238|563560|565354|565571|565573|565575|568550|568555|612131|612283|620321|620809|621294|621295|637784|637785|637786|637787|637788|637789|651832|655902|655903|692594|692595|692596|695419|700836|723363|723365|736928|736929|751439|751440|751441|751442|751443|751444|775347|775488|783297|790765|790846|801663|801664|801665|801666|801667|801668|801669|801670|801671|801672|801673|820076|820077|835570|835571|835572|835573|835574|835575|835576|835577|835578|835579|852487|901185|901186|901187|901188|901189|901190|901191|903322|903323|903324|917471|925406|925407|925408|925409|934571|934572|934573|934574|940925|940926|946397|955708|955709|955710|955711|955712|955713|959913|961782|978569|978570|978571|980932|981663|981664|981665|981666|981667", "text": "Citrullinemia type I" }, { - "baseId": "21373|98282|98286|99030|99032|191131|253327|311163|312111|312132|370688|421714|637783|835572", + "upstreamId": "21373|98282|98286|99030|99032|191131|253327|311163|312111|312132|370688|421714|637783|835572", "text": "Citrullinemia" }, { - "baseId": "21374|21375", + "upstreamId": "21374|21375", "text": "Citrullinemia, mild" }, { - "baseId": "21379|21380|21381|21382|21383|138087|138088|138090|138093|205168|207863|241077|241078|241080|241081|241084|247056|254127|254128|313736|313738|313753|313755|313760|313761|313763|313779|313785|319945|319946|319947|319949|319952|319955|319957|319961|319977|326147|326150|326155|326156|326157|326159|326161|327056|327060|327063|327066|327067|327070|327071|327089|327095|327096|327100|408323|429237|461117|564550|687747|796556|796557|867781|867782|867783|867784|867785|867786|867787|867788|867789|867790|867791|867792|867793|867794|867795|867796|867797|867798|867799|867800|917880|917882|917883|980465", + "upstreamId": "21379|21380|21381|21382|21383|138087|138088|138090|138093|205168|207863|241077|241078|241080|241081|241084|247056|254127|254128|313736|313738|313753|313755|313760|313761|313763|313779|313785|319945|319946|319947|319949|319952|319955|319957|319961|319977|326147|326150|326155|326156|326157|326159|326161|327056|327060|327063|327066|327067|327070|327071|327089|327095|327096|327100|408323|429237|461117|564550|687747|796556|796557|867781|867782|867783|867784|867785|867786|867787|867788|867789|867790|867791|867792|867793|867794|867795|867796|867797|867798|867799|867800|917880|917882|917883|980465", "text": "Fanconi anemia, complementation group F" }, { - "baseId": "21384|622682|622683", + "upstreamId": "21384|622682|622683", "text": "Familial advanced sleep phase syndrome 1" }, { - "baseId": "21385|21386|227228|283144|283145|283148|283152|283154|283882|283885|283886|283889|283890|283891|283897|283898|283899|285621|285626|285627|285630|285632|285633|285640|285643|285647|286049|286053|286054|286055|413571|449299|449304|508775|512891|516699|516751|516757|516763|516852|557422|629030|629031|677409|825268|881699|881700|881701|881702|881703|881704|881705|881706|881707|881708|881709|881710|881711|881712|881713|918701|942437", + "upstreamId": "21385|21386|227228|283144|283145|283148|283152|283154|283882|283885|283886|283889|283890|283891|283897|283898|283899|285621|285626|285627|285630|285632|285633|285640|285643|285647|286049|286053|286054|286055|413571|449299|449304|508775|512891|516699|516751|516757|516763|516852|557422|629030|629031|677409|825268|881699|881700|881701|881702|881703|881704|881705|881706|881707|881708|881709|881710|881711|881712|881713|918701|942437", "text": "Dystonia 16" }, { - "baseId": "21388|21389|21390|21391|21403|21404|21406|21409|34195|34196|34197|34198|34199|34200|34201|34202|39313|39315|39316|99992|135701|135702|135703|135704|135705|135706|135707|135709|135711|135712|135712|135713|135714|135716|135717|135719|142779|167457|167458|178056|178057|178058|178059|191022|191661|192649|192753|192977|193181|195314|231501|231504|238383|244319|250347|250350|250353|272066|275422|282546|282547|282548|282552|282559|282569|282570|282571|282573|282586|282589|282597|282598|282599|282600|282603|282604|283189|283191|283192|283193|283199|283202|283205|283209|283226|283230|283231|283243|283254|283257|283268|283297|283306|283307|283308|283310|283311|283323|283334|283335|283336|283354|283355|283356|283357|284812|284813|284820|284821|284826|284835|284836|284838|284841|284842|284846|284848|284849|284864|284866|284867|284868|284871|284873|284874|284879|284887|285257|285259|285260|285263|285267|285268|285269|285287|285288|285291|285295|285322|285331|285332|285333|285347|285357|285359|285361|285362|285365|285388|285392|285393|285406|391507|391619|449072|449093|449189|449235|516685|516796|538953|557686|614232|628887|628921|628939|655175|881369|881370|881371|881372|881373|881374|881375|881376|881377|881378|881379|881380|881381|881382|881383|881384|881385|881386|881387|881388|881389|881390|881391|881392|881393|881394|881395|881396|881397|881398|881399|881400|881401|881403|881404|881405|882826|904106", + "upstreamId": "21388|21389|21390|21391|21403|21404|21406|21409|34195|34196|34197|34198|34199|34200|34201|34202|39313|39315|39316|99992|135701|135702|135703|135704|135705|135706|135707|135709|135711|135712|135712|135713|135714|135716|135717|135719|142779|167457|167458|178056|178057|178058|178059|191022|191661|192649|192753|192977|193181|195314|231501|231504|238383|244319|250347|250350|250353|272066|275422|282546|282547|282548|282552|282559|282569|282570|282571|282573|282586|282589|282597|282598|282599|282600|282603|282604|283189|283191|283192|283193|283199|283202|283205|283209|283226|283230|283231|283243|283254|283257|283268|283297|283306|283307|283308|283310|283311|283323|283334|283335|283336|283354|283355|283356|283357|284812|284813|284820|284821|284826|284835|284836|284838|284841|284842|284846|284848|284849|284864|284866|284867|284868|284871|284873|284874|284879|284887|285257|285259|285260|285263|285267|285268|285269|285287|285288|285291|285295|285322|285331|285332|285333|285347|285357|285359|285361|285362|285365|285388|285392|285393|285406|391507|391619|449072|449093|449189|449235|516685|516796|538953|557686|614232|628887|628921|628939|655175|881369|881370|881371|881372|881373|881374|881375|881376|881377|881378|881379|881380|881381|881382|881383|881384|881385|881386|881387|881388|881389|881390|881391|881392|881393|881394|881395|881396|881397|881398|881399|881400|881401|881403|881404|881405|882826|904106", "text": "Primary erythromelalgia" }, { - "baseId": "21389", + "upstreamId": "21389", "text": "Abnormality of pain sensation" }, { - "baseId": "21389|360927", + "upstreamId": "21389|360927", "text": "Acute episodes of neuropathic symptoms" }, { - "baseId": "21389|21395|21398|21405|21405|21406|21406|21407|21409|34196|34199|34201|39313|39315|39316|80302|99991|99992|135702|135705|135707|135708|135709|135710|135711|135712|135712|135714|135715|135718|135718|135719|167457|167458|177333|178054|178058|178058|178059|190810|190811|190812|191022|191023|191370|191661|191899|191900|192002|192109|192649|192753|192837|192976|192977|193181|195313|195314|206888|231501|231504|231505|231506|231510|231514|238383|238384|238385|244295|244296|244300|244301|244304|244305|244307|244308|244311|244313|244314|244315|244317|244319|244320|244321|250350|250353|268661|270142|270187|270755|272066|273736|274078|274080|275101|275422|282594|282597|282598|282600|283323|283334|283335|283336|283355|283356|284848|284864|284866|284868|285355|285357|285359|285361|285365|285388|285390|285392|285402|359378|360823|364014|365676|365687|365688|365908|365911|365916|366164|391441|391444|391448|391452|391453|391456|391486|391488|391495|391498|391500|391507|391507|391611|391614|391616|391617|391619|391621|391625|391661|391665|405413|405415|405417|414848|421318|421319|425436|425437|426661|426662|427935|440564|440565|440566|440567|440569|443042|443044|443045|443046|448472|448550|448865|448866|448870|448874|448876|448878|448879|448880|448882|448889|448890|448897|448902|448903|448913|448922|448927|448938|448951|448952|448953|448955|448957|449038|449055|449057|449059|449063|449072|449080|449089|449091|449093|449095|449097|449099|449101|449104|449105|449110|449117|449146|449148|449149|449153|449154|449159|449160|449161|449162|449164|449166|449168|449169|449172|449175|449178|449180|449181|449183|449184|449185|449187|449189|449189|449191|449196|449197|449198|449199|449203|449204|449209|449210|449211|449218|449222|449228|449231|449233|449235|449244|449260|449261|449265|449268|489508|490283|490953|492995|496215|498890|498981|511356|516611|516616|516618|516631|516635|516636|516650|516656|516657|516658|516659|516661|516669|516670|516671|516672|516675|516676|516677|516678|516679|516682|516684|516685|516686|516687|516687|516688|516690|516691|516693|516694|516695|516698|516701|516702|516703|516704|516705|516707|516710|516714|516716|516719|516721|516722|516725|516735|516739|516747|516752|516753|516755|516760|516762|516769|516771|516790|516796|516804|516807|516808|516813|536616|538953|557650|557652|557658|557660|557662|557664|557666|557668|557670|557672|557674|557676|557678|557680|557682|557684|557686|557688|557690|557693|557695|557697|557699|557701|557703|557705|557707|557709|557711|557713|557715|557717|557719|557721|557723|558867|558869|558871|558873|558875|558877|558879|558881|558883|558885|558887|558889|558891|558893|558895|558897|558899|558899|558901|558903|558905|559352|559354|559356|559358|559360|559362|559364|559366|559368|559370|559372|559374|559376|559378|559380|559382|559384|559386|559388|559390|576587|588407|612573|614232|622836|622836|624877|625099|628887|628888|628889|628890|628891|628892|628893|628894|628895|628896|628897|628898|628899|628900|628901|628902|628903|628904|628905|628906|628907|628908|628909|628910|628911|628912|628913|628914|628915|628916|628917|628918|628919|628920|628921|628922|628923|628924|628925|628926|628927|628928|628929|628930|628931|628932|628933|628934|628935|628936|628937|628938|628939|628940|628941|628942|628943|628944|628945|628946|628947|628948|628949|628950|628951|628952|628953|628954|628955|628956|628957|628958|628959|628960|628961|628962|628963|628964|628965|628966|628967|628968|628969|628970|628971|628972|628973|628974|628975|650863|650871|650897|655175|683416|683418|685116|685904|685906|685907|685909|685910|685912|685914|685915|685916|685917|689676|689677|690876|690879|690880|690881|690882|719371|732887|746896|746898|762367|762370|762371|762376|774631|780932|780933|780934|787106|794848|794851|825102|825103|825104|825105|825106|825107|825108|825109|825110|825111|825112|825113|825114|825115|825116|825117|825118|825119|825120|825121|825122|825123|825124|825125|825126|825127|825128|825129|825130|825131|825132|825133|825134|825135|825136|825137|825138|825139|825140|825141|825142|825143|825144|825145|825146|825147|825148|825149|825150|825151|825152|825153|825154|825155|825156|825157|825158|825159|825160|825161|825162|825163|825164|825165|825166|825167|825168|825169|825170|825171|825172|825173|825174|825175|825176|825177|825178|825179|825180|825181|825182|825183|825184|825185|825186|825187|825188|825189|825190|825191|825192|850805|850850|851352|851354|881391|881399|918691|922375|922376|922377|922378|922379|922380|922381|922382|922383|922384|922385|922386|922387|922388|922389|922390|922391|922392|922393|922394|922395|922396|922397|922398|922399|922400|922401|930943|930944|930945|930946|930947|930948|930949|930950|930951|930952|930953|930954|930955|930956|930957|930958|930959|930960|930961|930962|930963|930964|930965|930966|930967|930968|942366|942367|942368|942369|942370|942371|942372|942373|942374|942375|942376|942377|942378|942379|942380|942381|942382|942383|942384|942385|942386|942387|942388|942389|942390|942391|942392|942393|942394|942395|942396|952765|952766|952767|952768|952769|952770|952771|952772|952773|952774|952775|952776|952777|952778|952779|952780|959592|959593|959594|959595|960453", + "upstreamId": "21389|21395|21398|21405|21405|21406|21406|21407|21409|34196|34199|34201|39313|39315|39316|80302|99991|99992|135702|135705|135707|135708|135709|135710|135711|135712|135712|135714|135715|135718|135718|135719|167457|167458|177333|178054|178058|178058|178059|190810|190811|190812|191022|191023|191370|191661|191899|191900|192002|192109|192649|192753|192837|192976|192977|193181|195313|195314|206888|231501|231504|231505|231506|231510|231514|238383|238384|238385|244295|244296|244300|244301|244304|244305|244307|244308|244311|244313|244314|244315|244317|244319|244320|244321|250350|250353|268661|270142|270187|270755|272066|273736|274078|274080|275101|275422|282594|282597|282598|282600|283323|283334|283335|283336|283355|283356|284848|284864|284866|284868|285355|285357|285359|285361|285365|285388|285390|285392|285402|359378|360823|364014|365676|365687|365688|365908|365911|365916|366164|391441|391444|391448|391452|391453|391456|391486|391488|391495|391498|391500|391507|391507|391611|391614|391616|391617|391619|391621|391625|391661|391665|405413|405415|405417|414848|421318|421319|425436|425437|426661|426662|427935|440564|440565|440566|440567|440569|443042|443044|443045|443046|448472|448550|448865|448866|448870|448874|448876|448878|448879|448880|448882|448889|448890|448897|448902|448903|448913|448922|448927|448938|448951|448952|448953|448955|448957|449038|449055|449057|449059|449063|449072|449080|449089|449091|449093|449095|449097|449099|449101|449104|449105|449110|449117|449146|449148|449149|449153|449154|449159|449160|449161|449162|449164|449166|449168|449169|449172|449175|449178|449180|449181|449183|449184|449185|449187|449189|449189|449191|449196|449197|449198|449199|449203|449204|449209|449210|449211|449218|449222|449228|449231|449233|449235|449244|449260|449261|449265|449268|489508|490283|490953|492995|496215|498890|498981|511356|516611|516616|516618|516631|516635|516636|516650|516656|516657|516658|516659|516661|516669|516670|516671|516672|516675|516676|516677|516678|516679|516682|516684|516685|516686|516687|516687|516688|516690|516691|516693|516694|516695|516698|516701|516702|516703|516704|516705|516707|516710|516714|516716|516719|516721|516722|516725|516735|516739|516747|516752|516753|516755|516760|516762|516769|516771|516790|516796|516804|516807|516808|516813|536616|538953|557650|557652|557658|557660|557662|557664|557666|557668|557670|557672|557674|557676|557678|557680|557682|557684|557686|557688|557690|557693|557695|557697|557699|557701|557703|557705|557707|557709|557711|557713|557715|557717|557719|557721|557723|558867|558869|558871|558873|558875|558877|558879|558881|558883|558885|558887|558889|558891|558893|558895|558897|558899|558899|558901|558903|558905|559352|559354|559356|559358|559360|559362|559364|559366|559368|559370|559372|559374|559376|559378|559380|559382|559384|559386|559388|559390|576587|588407|612573|614232|622836|622836|624877|625099|628887|628888|628889|628890|628891|628892|628893|628894|628895|628896|628897|628898|628899|628900|628901|628902|628903|628904|628905|628906|628907|628908|628909|628910|628911|628912|628913|628914|628915|628916|628917|628918|628919|628920|628921|628922|628923|628924|628925|628926|628927|628928|628929|628930|628931|628932|628933|628934|628935|628936|628937|628938|628939|628940|628941|628942|628943|628944|628945|628946|628947|628948|628949|628950|628951|628952|628953|628954|628955|628956|628957|628958|628959|628960|628961|628962|628963|628964|628965|628966|628967|628968|628969|628970|628971|628972|628973|628974|628975|650863|650871|650897|655175|683416|683418|685116|685904|685906|685907|685909|685910|685912|685914|685915|685916|685917|689676|689677|690876|690879|690880|690881|690882|719371|732887|746896|746898|762367|762370|762371|762376|774631|780932|780933|780934|787106|794848|794851|825102|825103|825104|825105|825106|825107|825108|825109|825110|825111|825112|825113|825114|825115|825116|825117|825118|825119|825120|825121|825122|825123|825124|825125|825126|825127|825128|825129|825130|825131|825132|825133|825134|825135|825136|825137|825138|825139|825140|825141|825142|825143|825144|825145|825146|825147|825148|825149|825150|825151|825152|825153|825154|825155|825156|825157|825158|825159|825160|825161|825162|825163|825164|825165|825166|825167|825168|825169|825170|825171|825172|825173|825174|825175|825176|825177|825178|825179|825180|825181|825182|825183|825184|825185|825186|825187|825188|825189|825190|825191|825192|850805|850850|851352|851354|881391|881399|918691|922375|922376|922377|922378|922379|922380|922381|922382|922383|922384|922385|922386|922387|922388|922389|922390|922391|922392|922393|922394|922395|922396|922397|922398|922399|922400|922401|930943|930944|930945|930946|930947|930948|930949|930950|930951|930952|930953|930954|930955|930956|930957|930958|930959|930960|930961|930962|930963|930964|930965|930966|930967|930968|942366|942367|942368|942369|942370|942371|942372|942373|942374|942375|942376|942377|942378|942379|942380|942381|942382|942383|942384|942385|942386|942387|942388|942389|942390|942391|942392|942393|942394|942395|942396|952765|952766|952767|952768|952769|952770|952771|952772|952773|952774|952775|952776|952777|952778|952779|952780|959592|959593|959594|959595|960453", "text": "Generalized epilepsy with febrile seizures plus, type 7" }, { - "baseId": "21389", + "upstreamId": "21389", "text": "SCN9A-related peripheral neuropathies associated with increased pain" }, { - "baseId": "21392|21393|21394|21401|21402|21406|21409|34196|39313|39315|39316|99992|135701|135702|135703|135704|135705|135706|135707|135709|135711|135712|135712|135713|135714|135716|135717|135719|142779|167457|167458|167459|178056|178057|178059|191022|191661|192649|192753|192977|193181|195314|198610|231501|231504|238383|244319|250347|250350|250353|272066|275422|282546|282547|282548|282552|282559|282569|282570|282571|282573|282586|282589|282597|282598|282599|282600|282603|282604|283189|283191|283192|283193|283199|283202|283205|283209|283226|283230|283231|283243|283254|283257|283268|283297|283306|283307|283308|283310|283311|283323|283334|283335|283336|283354|283355|283356|283357|284812|284813|284820|284821|284826|284835|284836|284838|284841|284842|284846|284848|284849|284864|284866|284867|284868|284871|284873|284874|284879|284887|285257|285259|285260|285263|285267|285268|285269|285287|285288|285291|285295|285322|285331|285332|285333|285347|285357|285359|285361|285362|285365|285388|285390|285392|285393|285402|285406|391507|391619|449072|449093|449209|449235|481457|496215|516796|538953|557686|614232|628887|628921|628939|655175|881369|881370|881371|881372|881373|881374|881375|881376|881377|881378|881379|881380|881381|881382|881383|881384|881385|881386|881387|881388|881389|881390|881391|881392|881393|881394|881395|881396|881397|881398|881399|881400|881401|881402|881403|881404|881405|882826", + "upstreamId": "21392|21393|21394|21401|21402|21406|21409|34196|39313|39315|39316|99992|135701|135702|135703|135704|135705|135706|135707|135709|135711|135712|135712|135713|135714|135716|135717|135719|142779|167457|167458|167459|178056|178057|178059|191022|191661|192649|192753|192977|193181|195314|198610|231501|231504|238383|244319|250347|250350|250353|272066|275422|282546|282547|282548|282552|282559|282569|282570|282571|282573|282586|282589|282597|282598|282599|282600|282603|282604|283189|283191|283192|283193|283199|283202|283205|283209|283226|283230|283231|283243|283254|283257|283268|283297|283306|283307|283308|283310|283311|283323|283334|283335|283336|283354|283355|283356|283357|284812|284813|284820|284821|284826|284835|284836|284838|284841|284842|284846|284848|284849|284864|284866|284867|284868|284871|284873|284874|284879|284887|285257|285259|285260|285263|285267|285268|285269|285287|285288|285291|285295|285322|285331|285332|285333|285347|285357|285359|285361|285362|285365|285388|285390|285392|285393|285402|285406|391507|391619|449072|449093|449209|449235|481457|496215|516796|538953|557686|614232|628887|628921|628939|655175|881369|881370|881371|881372|881373|881374|881375|881376|881377|881378|881379|881380|881381|881382|881383|881384|881385|881386|881387|881388|881389|881390|881391|881392|881393|881394|881395|881396|881397|881398|881399|881400|881401|881402|881403|881404|881405|882826", "text": "Indifference to pain, congenital, autosomal recessive" }, { - "baseId": "21395|21396|21397|21398|21399|21400|21406|21409|34196|39313|39315|39316|99992|135701|135702|135703|135704|135705|135706|135707|135709|135711|135712|135712|135713|135714|135716|135717|135719|142779|167457|167458|178055|178056|178057|178058|178059|191022|191370|191661|192649|192753|192977|193181|195314|231501|231504|238383|244302|244319|250347|250350|250353|272066|273736|275422|282546|282547|282548|282552|282559|282565|282569|282570|282571|282573|282582|282586|282589|282594|282597|282598|282599|282600|282603|282604|283189|283191|283192|283193|283199|283202|283205|283206|283209|283226|283227|283230|283231|283243|283254|283257|283258|283259|283267|283268|283293|283297|283306|283307|283308|283310|283311|283322|283323|283334|283335|283336|283354|283355|283356|283357|284810|284812|284813|284820|284821|284826|284835|284836|284837|284838|284841|284842|284846|284848|284849|284864|284866|284867|284868|284871|284873|284874|284879|284887|285257|285259|285260|285263|285267|285268|285269|285287|285288|285291|285292|285295|285305|285321|285322|285329|285331|285332|285333|285347|285355|285356|285357|285359|285361|285362|285364|285365|285367|285388|285390|285392|285393|285402|285406|391507|391619|421316|439526|439527|449072|449093|449189|449235|516796|538953|557686|614232|628887|628921|628939|655175|881369|881370|881371|881372|881373|881374|881375|881376|881377|881378|881379|881380|881381|881382|881383|881384|881385|881386|881387|881388|881389|881390|881391|881392|881393|881394|881395|881396|881397|881398|881399|881400|881401|881402|881403|881404|881405|882826", + "upstreamId": "21395|21396|21397|21398|21399|21400|21406|21409|34196|39313|39315|39316|99992|135701|135702|135703|135704|135705|135706|135707|135709|135711|135712|135712|135713|135714|135716|135717|135719|142779|167457|167458|178055|178056|178057|178058|178059|191022|191370|191661|192649|192753|192977|193181|195314|231501|231504|238383|244302|244319|250347|250350|250353|272066|273736|275422|282546|282547|282548|282552|282559|282565|282569|282570|282571|282573|282582|282586|282589|282594|282597|282598|282599|282600|282603|282604|283189|283191|283192|283193|283199|283202|283205|283206|283209|283226|283227|283230|283231|283243|283254|283257|283258|283259|283267|283268|283293|283297|283306|283307|283308|283310|283311|283322|283323|283334|283335|283336|283354|283355|283356|283357|284810|284812|284813|284820|284821|284826|284835|284836|284837|284838|284841|284842|284846|284848|284849|284864|284866|284867|284868|284871|284873|284874|284879|284887|285257|285259|285260|285263|285267|285268|285269|285287|285288|285291|285292|285295|285305|285321|285322|285329|285331|285332|285333|285347|285355|285356|285357|285359|285361|285362|285364|285365|285367|285388|285390|285392|285393|285402|285406|391507|391619|421316|439526|439527|449072|449093|449189|449235|516796|538953|557686|614232|628887|628921|628939|655175|881369|881370|881371|881372|881373|881374|881375|881376|881377|881378|881379|881380|881381|881382|881383|881384|881385|881386|881387|881388|881389|881390|881391|881392|881393|881394|881395|881396|881397|881398|881399|881400|881401|881402|881403|881404|881405|882826", "text": "Paroxysmal extreme pain disorder" }, { - "baseId": "21406|27037|360928|792811", + "upstreamId": "21406|27037|360928|792811", "text": "Hypoglycemia" }, { - "baseId": "21407|21408", + "upstreamId": "21407|21408", "text": "Febrile seizures, familial, 3b" }, { - "baseId": "21409|34196|135701|135703|135712|135713|135717|167458|178055|178056|178057|178058|191370|191661|192753|192977|193181|238383|244319|250353|273736|275422|282547|282548|282552|282565|282571|282582|282589|282594|282597|282603|283189|283191|283192|283193|283205|283206|283227|283230|283231|283254|283258|283259|283267|283268|283293|283297|283306|283308|283322|283335|283336|284810|284813|284820|284821|284835|284837|284846|284848|284864|284867|284871|284874|285257|285260|285263|285267|285287|285291|285292|285305|285321|285329|285331|285333|285347|285355|285356|285364|285367|285390|285392|285393|285402", + "upstreamId": "21409|34196|135701|135703|135712|135713|135717|167458|178055|178056|178057|178058|191370|191661|192753|192977|193181|238383|244319|250353|273736|275422|282547|282548|282552|282565|282571|282582|282589|282594|282597|282603|283189|283191|283192|283193|283205|283206|283227|283230|283231|283254|283258|283259|283267|283268|283293|283297|283306|283308|283322|283335|283336|284810|284813|284820|284821|284835|284837|284846|284848|284864|284867|284871|284874|285257|285260|285263|285267|285287|285291|285292|285305|285321|285329|285331|285333|285347|285355|285356|285364|285367|285390|285392|285393|285402", "text": "Inherited Erythromelalgia" }, { - "baseId": "21410|21411|21412|21413|21414|21415|21416|21417|174290|174425|193123|207283|207284|226541|226542|226543|226544|226545|229310|229311|229313|229314|236990|252016|271075|298075|298078|298079|298086|298089|298093|298098|298100|298102|300338|300344|300357|300358|300367|300370|300371|300372|300374|300375|300376|300377|300379|300381|300393|300394|304617|304620|304632|304658|304668|304669|304674|304900|304906|304918|304919|304931|304939|304941|428467|428469|455246|455713|455714|521535|521538|521599|521603|521860|560379|560381|560383|560488|560490|560492|563225|563227|565196|612710|614290|614291|634013|634014|634015|634016|634017|634018|634019|634020|634021|634022|634023|634024|634025|634026|634027|634028|634029|634030|651279|682753|735202|735204|749592|749593|749594|749595|749596|765209|765210|765215|775049|775074|779130|782335|801071|819606|819607|830948|830949|830950|830951|830952|830953|830954|830955|830956|830957|830958|830959|830960|830961|830962|830963|830964|894685|894686|894687|894688|894689|894691|894692|894693|894694|894695|894696|894697|894698|894699|894700|894701|896134|896135|924102|924103|924104|924105|924106|924107|924108|924109|924110|924111|924112|924113|932948|932949|932950|932951|932952|932953|932954|932955|940010|940011|944651|944652|944653|944654|944655|944656|944657|944658|944659|954197|960568|960569|960570|961948", + "upstreamId": "21410|21411|21412|21413|21414|21415|21416|21417|174290|174425|193123|207283|207284|226541|226542|226543|226544|226545|229310|229311|229313|229314|236990|252016|271075|298075|298078|298079|298086|298089|298093|298098|298100|298102|300338|300344|300357|300358|300367|300370|300371|300372|300374|300375|300376|300377|300379|300381|300393|300394|304617|304620|304632|304658|304668|304669|304674|304900|304906|304918|304919|304931|304939|304941|428467|428469|455246|455713|455714|521535|521538|521599|521603|521860|560379|560381|560383|560488|560490|560492|563225|563227|565196|612710|614290|614291|634013|634014|634015|634016|634017|634018|634019|634020|634021|634022|634023|634024|634025|634026|634027|634028|634029|634030|651279|682753|735202|735204|749592|749593|749594|749595|749596|765209|765210|765215|775049|775074|779130|782335|801071|819606|819607|830948|830949|830950|830951|830952|830953|830954|830955|830956|830957|830958|830959|830960|830961|830962|830963|830964|894685|894686|894687|894688|894689|894691|894692|894693|894694|894695|894696|894697|894698|894699|894700|894701|896134|896135|924102|924103|924104|924105|924106|924107|924108|924109|924110|924111|924112|924113|932948|932949|932950|932951|932952|932953|932954|932955|940010|940011|944651|944652|944653|944654|944655|944656|944657|944658|944659|954197|960568|960569|960570|961948", "text": "Hermansky-Pudlak syndrome 2" }, { - "baseId": "21418|21419|21420|21421|21422|21423|21424|21425|21427|21428|176922|246855|298749|298751|298765|298772|301224|301225|301227|301230|301231|305601|305703|305705|305706|446858|511619|615922|620208|624850|626074|699260|721679|805460|816457|857385|895197|895198|896180", + "upstreamId": "21418|21419|21420|21421|21422|21423|21424|21425|21427|21428|176922|246855|298749|298751|298765|298772|301224|301225|301227|301230|301231|305601|305703|305705|305706|446858|511619|615922|620208|624850|626074|699260|721679|805460|816457|857385|895197|895198|896180", "text": "Progressive pseudorheumatoid dysplasia" }, { - "baseId": "21429", + "upstreamId": "21429", "text": "Pigmented nodular adrenocortical disease, primary, 3" }, { - "baseId": "21430|237517|237518|298056|298057|298060|298061|298066|298070|298071|300250|300254|300262|300264|300271|300273|300274|300292|300304|300317|300319|300320|300323|304477|304505|304506|304515|304517|304525|304531|304533|304536|304537|304538|304539|304543|304544|304550|304565|304567|304585|304599|304612|304613|304773|304774|304777|304804|304807|304813|304817|304818|304820|304826|304827|304830|304831|304832|304841|304845|304846|304894|304898|735198|735200|790564|894661|894662|894663|894664|894665|894666|894667|894668|894669|894670|894671|894672|894673|894674|894675|894676|894677|894678|894679|894680|894681|894682|894683|894684|896132|896133|918979|918980|920212|964261|964362", + "upstreamId": "21430|237517|237518|298056|298057|298060|298061|298066|298070|298071|300250|300254|300262|300264|300271|300273|300274|300292|300304|300317|300319|300320|300323|304477|304505|304506|304515|304517|304525|304531|304533|304536|304537|304538|304539|304543|304544|304550|304565|304567|304585|304599|304612|304613|304773|304774|304777|304804|304807|304813|304817|304818|304820|304826|304827|304830|304831|304832|304841|304845|304846|304894|304898|735198|735200|790564|894661|894662|894663|894664|894665|894666|894667|894668|894669|894670|894671|894672|894673|894674|894675|894676|894677|894678|894679|894680|894681|894682|894683|894684|896132|896133|918979|918980|920212|964261|964362", "text": "Striatal degeneration, autosomal dominant 1" }, { - "baseId": "21431|21432|21433|48263|49895|49896|49897|49898|75278|75279|135969|135970|135971|135972|135973|135974|135975|135976|135977|205012|207402|207403|207405|207406|207407|207408|207409|207410|207411|207412|207413|213572|225824|225831|226901|227706|239898|239899|239900|244015|359770|360878|361343|362330|362429|362435|368917|395099|395101|395109|395111|395113|395233|395244|395246|395247|395443|395445|395448|395450|395453|395695|395696|395704|395709|406862|415049|421588|424377|424650|428617|428619|428624|428625|428626|428629|430962|431914|431915|438319|443960|455530|455538|455541|455542|455551|455559|455656|455660|455663|455670|455672|455696|455701|455702|455706|456122|456125|456129|456135|456373|456376|456383|481762|486745|488156|511673|511676|512822|513422|521575|521582|521587|521593|521594|521596|521601|521612|521614|521616|521620|521622|521871|521880|521881|521892|521896|521899|521908|521911|521946|521961|521962|521964|521970|521972|522282|522284|522288|522296|522298|522299|538386|550360|552106|560690|560692|560694|560698|560700|560791|560797|560801|563519|563521|563522|563527|563534|563535|563544|565586|565590|565592|565594|565613|565623|578447|579253|579265|579270|611393|611394|611395|611466|623587|626164|634839|634840|634841|634842|634843|634844|634845|634846|634847|634848|634849|634850|634851|634852|634853|634854|634855|634856|634857|634858|634859|634860|634861|634862|634863|634864|634865|634866|634867|651550|678958|683776|683777|683778|683779|683780|683781|685193|686827|686831|686832|686833|686834|686835|689822|691976|691977|691979|691980|691981|721992|735619|750041|750043|750044|765653|765657|782526|788800|790616|790617|790618|790619|790620|800668|801991|801992|801993|802057|819682|819684|819685|819686|821925|821926|821927|821928|821929|821930|821931|821932|821933|821934|821935|822260|831844|831845|831846|831847|831848|831849|831850|831851|831852|831853|831854|831855|831856|831857|831858|831859|831860|831861|831862|831863|831864|831865|831866|831867|851072|852022|852255|857646|861536|906187|919024|919025|920228|924333|924334|924335|924336|924337|924338|924339|924340|924341|924342|933291|933292|933293|933294|933295|933296|933297|933298|933299|933300|933301|933302|933303|933304|933305|940843|944980|944981|944982|944983|944984|944985|944986|944987|944988|944989|944990|944991|954425|954426|954427|954428|954429|960580|961606|962861|963608|963609|964030|964276|964277|964278|966681|969324|969699|970832|970833", + "upstreamId": "21431|21432|21433|48263|49895|49896|49897|49898|75278|75279|135969|135970|135971|135972|135973|135974|135975|135976|135977|205012|207402|207403|207405|207406|207407|207408|207409|207410|207411|207412|207413|213572|225824|225831|226901|227706|239898|239899|239900|244015|359770|360878|361343|362330|362429|362435|368917|395099|395101|395109|395111|395113|395233|395244|395246|395247|395443|395445|395448|395450|395453|395695|395696|395704|395709|406862|415049|421588|424377|424650|428617|428619|428624|428625|428626|428629|430962|431914|431915|438319|443960|455530|455538|455541|455542|455551|455559|455656|455660|455663|455670|455672|455696|455701|455702|455706|456122|456125|456129|456135|456373|456376|456383|481762|486745|488156|511673|511676|512822|513422|521575|521582|521587|521593|521594|521596|521601|521612|521614|521616|521620|521622|521871|521880|521881|521892|521896|521899|521908|521911|521946|521961|521962|521964|521970|521972|522282|522284|522288|522296|522298|522299|538386|550360|552106|560690|560692|560694|560698|560700|560791|560797|560801|563519|563521|563522|563527|563534|563535|563544|565586|565590|565592|565594|565613|565623|578447|579253|579265|579270|611393|611394|611395|611466|623587|626164|634839|634840|634841|634842|634843|634844|634845|634846|634847|634848|634849|634850|634851|634852|634853|634854|634855|634856|634857|634858|634859|634860|634861|634862|634863|634864|634865|634866|634867|651550|678958|683776|683777|683778|683779|683780|683781|685193|686827|686831|686832|686833|686834|686835|689822|691976|691977|691979|691980|691981|721992|735619|750041|750043|750044|765653|765657|782526|788800|790616|790617|790618|790619|790620|800668|801991|801992|801993|802057|819682|819684|819685|819686|821925|821926|821927|821928|821929|821930|821931|821932|821933|821934|821935|822260|831844|831845|831846|831847|831848|831849|831850|831851|831852|831853|831854|831855|831856|831857|831858|831859|831860|831861|831862|831863|831864|831865|831866|831867|851072|852022|852255|857646|861536|906187|919024|919025|920228|924333|924334|924335|924336|924337|924338|924339|924340|924341|924342|933291|933292|933293|933294|933295|933296|933297|933298|933299|933300|933301|933302|933303|933304|933305|940843|944980|944981|944982|944983|944984|944985|944986|944987|944988|944989|944990|944991|954425|954426|954427|954428|954429|960580|961606|962861|963608|963609|964030|964276|964277|964278|966681|969324|969699|970832|970833", "text": "Mental retardation, autosomal dominant 5" }, { - "baseId": "21434|21435|21436|21446|21447|34132|34149|199884|246954|270859|273662|495655|495659|550594|550595|578659|578660|578661|578664|578665|609238|609239|622083|795463|798536", + "upstreamId": "21434|21435|21436|21446|21447|34132|34149|199884|246954|270859|273662|495655|495659|550594|550595|578659|578660|578661|578664|578665|609238|609239|622083|795463|798536", "text": "Spondylocarpotarsal synostosis syndrome" }, { - "baseId": "21437|21438|21444|21445|34130|34131|34133|34135|34137|34139|34144|34148|193539|246954|251267|267835|268588|270886|270894|273662|310812|310813|310820|310829|310830|310831|310832|310842|310844|310848|310850|310852|310858|310859|310862|310864|310866|310868|310870|310878|310884|310887|310890|310892|310895|310899|310907|310918|310919|310928|310929|310930|310931|316068|316069|316072|316073|316074|316082|316090|316094|316099|316103|316111|316112|316114|316120|316133|316144|316148|316149|316156|316162|316169|316174|316175|316176|316177|316180|316181|316189|316190|316200|316201|316204|316205|316210|316220|316221|316223|316226|322169|322170|322172|322183|322185|322190|322191|322192|322196|322197|322199|322200|322212|322213|322218|322231|322232|322233|322236|322239|322240|322241|322242|322245|322246|322254|322260|322261|322266|322267|322274|322275|322276|322780|322783|322784|322785|322786|322789|322790|322801|322802|322803|322804|322806|322807|322808|322815|322816|322822|322831|322832|322845|322849|322876|322879|322880|322882|322887|322888|322890|322891|322892|322893|322894|322896|322900|513264|578424|682802|682815|790414|974887", + "upstreamId": "21437|21438|21444|21445|34130|34131|34133|34135|34137|34139|34144|34148|193539|246954|251267|267835|268588|270886|270894|273662|310812|310813|310820|310829|310830|310831|310832|310842|310844|310848|310850|310852|310858|310859|310862|310864|310866|310868|310870|310878|310884|310887|310890|310892|310895|310899|310907|310918|310919|310928|310929|310930|310931|316068|316069|316072|316073|316074|316082|316090|316094|316099|316103|316111|316112|316114|316120|316133|316144|316148|316149|316156|316162|316169|316174|316175|316176|316177|316180|316181|316189|316190|316200|316201|316204|316205|316210|316220|316221|316223|316226|322169|322170|322172|322183|322185|322190|322191|322192|322196|322197|322199|322200|322212|322213|322218|322231|322232|322233|322236|322239|322240|322241|322242|322245|322246|322254|322260|322261|322266|322267|322274|322275|322276|322780|322783|322784|322785|322786|322789|322790|322801|322802|322803|322804|322806|322807|322808|322815|322816|322822|322831|322832|322845|322849|322876|322879|322880|322882|322887|322888|322890|322891|322892|322893|322894|322896|322900|513264|578424|682802|682815|790414|974887", "text": "Larsen syndrome" }, { - "baseId": "21439|21440|34134|34136|34142|34143|34146|46907|131909|246954|259290|273662|291312", + "upstreamId": "21439|21440|34134|34136|34142|34143|34146|46907|131909|246954|259290|273662|291312", "text": "Atelosteogenesis type 1" }, { - "baseId": "21440|21441|34138|34140|34145|34147|246954|273662|291312|359580|903494|918851|918852|918853|918854|974887", + "upstreamId": "21440|21441|34138|34140|34145|34147|246954|273662|291312|359580|903494|918851|918852|918853|918854|974887", "text": "Atelosteogenesis type III" }, { - "baseId": "21442|21443|246954|273662|578424", + "upstreamId": "21442|21443|246954|273662|578424", "text": "Boomerang dysplasia" }, { - "baseId": "21448|21449|21450|21451|21452|21453|21454|21455|21456|21457|21458|21459|21460|21461|21462|21463|21464|21465|21466|21467|21468|36672|36673|36674|36675|36676|36677|36678|36680|36681|36682|36683|36684|36685|36686|36687|36688|36689|36690|36691|36692|36693|36694|36695|36697|36698|36699|36700|36701|36702|36703|36704|36705|36706|36707|36708|36709|36710|36711|36713|36715|36716|36717|36718|36719|36720|36721|36723|36724|36725|36726|36727|36728|36729|36730|36731|36732|36733|36735|36736|36737|36738|36739|36740|36741|36742|36743|36744|36745|36747|36748|36750|36751|36752|36753|36754|36755|36757|36758|36759|36760|36761|36762|36763|36764|36765|36766|36767|46831|46834|46842|47395|47396|47397|47398|47399|47400|99999|100001|100002|177225|190414|200083|200086|200090|200092|237754|237755|264226|265303|269839|270008|272965|272969|295272|295282|295283|295289|295292|295293|295298|295300|295304|295306|297106|297107|297109|297111|300759|300783|300786|300788|300791|300792|300793|300804|300816|300818|300823|300922|300926|300927|300930|300931|300942|357381|357382|357383|357384|357385|357386|357387|357388|357389|357390|357391|359545|359638|359651|361941|362413|367924|367932|367937|368197|368199|368341|368347|368353|368360|369600|406630|406631|406632|414985|421524|433009|438300|454338|454344|454349|454354|454357|454358|454360|454362|454377|454490|454493|454498|454505|454845|454846|454852|454854|454856|454857|454859|454860|454864|454866|454868|454878|454879|454884|455115|455119|455126|455130|455132|495236|500990|500993|513059|513554|520630|520632|520644|520858|520861|520863|521014|521017|521018|521023|521085|543291|543299|543301|543308|543311|543313|543317|543578|543580|543582|543584|543587|543588|543593|543594|543678|543679|543681|543683|543685|543777|543779|543784|543785|543790|560059|560061|560063|560065|560067|560069|560071|560073|560152|560154|560156|560158|560160|562671|562673|562675|562677|564519|564537|564547|564548|564558|564564|578429|621908|633052|633053|633054|633055|633056|633057|633058|633059|633060|633061|633062|633063|633064|633065|633066|633067|633068|633069|633070|633071|633072|633073|633074|633075|633076|633077|651249|651292|691688|691690|691691|698770|698771|698772|709615|721210|721211|734838|749203|749204|764818|764820|764821|787249|788773|795623|795624|799398|799399|801608|819536|819638|819639|830056|830057|830058|830059|830060|830061|830062|830063|830064|830065|830066|830067|830068|830069|830070|830071|830072|830073|830074|830075|851850|851892|892870|892871|892872|892873|892874|892875|892876|892877|892878|892879|892880|892881|892882|892883|892884|923795|923796|923797|923798|932640|932641|932642|932643|932644|932645|932646|939980|940795|944318|944319|944320|944321|944322|944323|944324|944325|953962|953963|953964|953965|953966|953967|953968|953969|953970|953971|953972|953973|953974|959746|959747|959748|961770|964112|978120|978121|978122|978123|978124|978125|978126", + "upstreamId": "21448|21449|21450|21451|21452|21453|21454|21455|21456|21457|21458|21459|21460|21461|21462|21463|21464|21465|21466|21467|21468|36672|36673|36674|36675|36676|36677|36678|36680|36681|36682|36683|36684|36685|36686|36687|36688|36689|36690|36691|36692|36693|36694|36695|36697|36698|36699|36700|36701|36702|36703|36704|36705|36706|36707|36708|36709|36710|36711|36713|36715|36716|36717|36718|36719|36720|36721|36723|36724|36725|36726|36727|36728|36729|36730|36731|36732|36733|36735|36736|36737|36738|36739|36740|36741|36742|36743|36744|36745|36747|36748|36750|36751|36752|36753|36754|36755|36757|36758|36759|36760|36761|36762|36763|36764|36765|36766|36767|46831|46834|46842|47395|47396|47397|47398|47399|47400|99999|100001|100002|177225|190414|200083|200086|200090|200092|237754|237755|264226|265303|269839|270008|272965|272969|295272|295282|295283|295289|295292|295293|295298|295300|295304|295306|297106|297107|297109|297111|300759|300783|300786|300788|300791|300792|300793|300804|300816|300818|300823|300922|300926|300927|300930|300931|300942|357381|357382|357383|357384|357385|357386|357387|357388|357389|357390|357391|359545|359638|359651|361941|362413|367924|367932|367937|368197|368199|368341|368347|368353|368360|369600|406630|406631|406632|414985|421524|433009|438300|454338|454344|454349|454354|454357|454358|454360|454362|454377|454490|454493|454498|454505|454845|454846|454852|454854|454856|454857|454859|454860|454864|454866|454868|454878|454879|454884|455115|455119|455126|455130|455132|495236|500990|500993|513059|513554|520630|520632|520644|520858|520861|520863|521014|521017|521018|521023|521085|543291|543299|543301|543308|543311|543313|543317|543578|543580|543582|543584|543587|543588|543593|543594|543678|543679|543681|543683|543685|543777|543779|543784|543785|543790|560059|560061|560063|560065|560067|560069|560071|560073|560152|560154|560156|560158|560160|562671|562673|562675|562677|564519|564537|564547|564548|564558|564564|578429|621908|633052|633053|633054|633055|633056|633057|633058|633059|633060|633061|633062|633063|633064|633065|633066|633067|633068|633069|633070|633071|633072|633073|633074|633075|633076|633077|651249|651292|691688|691690|691691|698770|698771|698772|709615|721210|721211|734838|749203|749204|764818|764820|764821|787249|788773|795623|795624|799398|799399|801608|819536|819638|819639|830056|830057|830058|830059|830060|830061|830062|830063|830064|830065|830066|830067|830068|830069|830070|830071|830072|830073|830074|830075|851850|851892|892870|892871|892872|892873|892874|892875|892876|892877|892878|892879|892880|892881|892882|892883|892884|923795|923796|923797|923798|932640|932641|932642|932643|932644|932645|932646|939980|940795|944318|944319|944320|944321|944322|944323|944324|944325|953962|953963|953964|953965|953966|953967|953968|953969|953970|953971|953972|953973|953974|959746|959747|959748|961770|964112|978120|978121|978122|978123|978124|978125|978126", "text": "Renal carnitine transport defect" }, { - "baseId": "21469", + "upstreamId": "21469", "text": "THYROTROPIN RECEPTOR POLYMORPHISM" }, { - "baseId": "21469|21472|21475|21478|21481|21484|21487|21488|21489|21490|21491|21493|21496|139131|139133|139135|139137|139138|139139|139140|205285|215485|227361|227362|255092|255093|255095|321627|321628|321633|321634|321635|321636|330890|330891|330894|330904|330906|330908|330912|337547|337553|337556|337563|337564|337565|337571|337572|337585|337591|337607|337609|337613|339633|339636|339638|339642|339647|339648|339655|339657|339660|339661|339664|339665|429594|693609|739359|754183|791425|872794|872795|872796|872797|872798|872799|872800|872801|872802|872803|872804|872805|872806|872807|872808|872809|872810|872811|872812|872813|872814|872815|872816|872817|872818|872819|872820|872821|872822|872823|872824|872825|876459", + "upstreamId": "21469|21472|21475|21478|21481|21484|21487|21488|21489|21490|21491|21493|21496|139131|139133|139135|139137|139138|139139|139140|205285|215485|227361|227362|255092|255093|255095|321627|321628|321633|321634|321635|321636|330890|330891|330894|330904|330906|330908|330912|337547|337553|337556|337563|337564|337565|337571|337572|337585|337591|337607|337609|337613|339633|339636|339638|339642|339647|339648|339655|339657|339660|339661|339664|339665|429594|693609|739359|754183|791425|872794|872795|872796|872797|872798|872799|872800|872801|872802|872803|872804|872805|872806|872807|872808|872809|872810|872811|872812|872813|872814|872815|872816|872817|872818|872819|872820|872821|872822|872823|872824|872825|876459", "text": "Hyperthyroidism, nonautoimmune" }, { - "baseId": "21469|21473|21474|21477|21478|21479|21480|21481|21482|21483|21484|21486|21494|21495|21497|21498|21499|21500|139131|139133|139135|139137|139138|139139|139140|187122|205285|215485|227361|227362|255092|255093|255095|321627|321628|321633|321635|330890|330891|330894|330904|330906|330908|330912|337547|337553|337556|337563|337564|337565|337571|337572|337585|337591|337607|337609|337613|339633|339636|339638|339647|339648|339655|339657|339660|339661|339664|339665|429594|612305|693609|739359|754183|872794|872795|872796|872797|872798|872799|872800|872801|872802|872803|872804|872805|872806|872807|872808|872809|872810|872811|872812|872813|872814|872815|872816|872817|872818|872819|872820|872821|872822|872823|872824|872825|876459|906178|906181", + "upstreamId": "21469|21473|21474|21477|21478|21479|21480|21481|21482|21483|21484|21486|21494|21495|21497|21498|21499|21500|139131|139133|139135|139137|139138|139139|139140|187122|205285|215485|227361|227362|255092|255093|255095|321627|321628|321633|321635|330890|330891|330894|330904|330906|330908|330912|337547|337553|337556|337563|337564|337565|337571|337572|337585|337591|337607|337609|337613|339633|339636|339638|339647|339648|339655|339657|339660|339661|339664|339665|429594|612305|693609|739359|754183|872794|872795|872796|872797|872798|872799|872800|872801|872802|872803|872804|872805|872806|872807|872808|872809|872810|872811|872812|872813|872814|872815|872816|872817|872818|872819|872820|872821|872822|872823|872824|872825|876459|906178|906181", "text": "Hypothyroidism, congenital, nongoitrous, 1" }, { - "baseId": "21470|21471|21472|21485|21490", + "upstreamId": "21470|21471|21472|21485|21490", "text": "Thyroid adenoma, hyperfunctioning" }, { - "baseId": "21476", + "upstreamId": "21476", "text": "THYROID CARCINOMA WITH THYROTOXICOSIS, SOMATIC" }, { - "baseId": "21481|45412|45413|45414|45415|45780|79466|79481|79508|99530|99532|99537|99546|99547|99559|99561|99564|142674|191002|191522|193103|201142|201560|201597|202741|206886|214847|224835|224836|224837|224843|224845|224846|224847|224851|282505|282516|282517|282522|282523|282527|282530|282532|282536|282540|282541|282542|283171|283180|283181|283182|283183|284767|284774|284775|284779|284782|284785|284786|284787|284795|284796|284797|284808|285215|285228|285235|285238|285241|285246|285247|285248|285252|285253|285256|354292|354296|354297|354300|354305|361124|361138|361140|361142|361143|361146|361155|362591|362592|362593|362594|397302|413569|426700|428861|445590|445592|465786|465789|465790|465791|465793|465795|465796|465799|465802|465806|465808|465812|465814|466504|466505|466507|466512|466515|466517|466533|466534|466538|466543|466761|466764|466768|466772|466775|466785|466788|466790|512217|529849|530067|530075|530086|530088|530093|530097|530191|530194|530196|530201|530203|530204|530366|530367|530385|530391|530393|530404|530406|530410|530606|530610|530613|530616|530620|530621|530626|530632|536067|551697|553412|568200|568209|569392|570311|570315|570317|570326|570328|570329|570333|570335|570337|570343|570344|570346|574095|574097|578035|608922|608933|621921|621922|621923|621924|623726|623731|623733|623734|623735|624877|644776|644777|644778|644779|644780|644781|644782|644783|644784|644785|644786|644787|644788|644789|644790|644791|644792|644795|644796|644797|644798|644799|644800|644801|644802|644803|644804|652578|653043|653278|679784|679940|693905|693906|703751|703752|703762|714994|726709|726717|731078|731081|740280|745240|755276|755280|822296|844034|844035|844036|844037|844038|844039|844043|844046|844049|844086|844087|844088|844089|852123|927873|927874|927875|927877|937504|937505|937506|937507|937511|937524|937525|937526|949446|949447|949451|949457|949474|949475|957816|957830|960171|964150|964287|964478|964522|964679|970257|970340", + "upstreamId": "21481|45412|45413|45414|45415|45780|79466|79481|79508|99530|99532|99537|99546|99547|99559|99561|99564|142674|191002|191522|193103|201142|201560|201597|202741|206886|214847|224835|224836|224837|224843|224845|224846|224847|224851|282505|282516|282517|282522|282523|282527|282530|282532|282536|282540|282541|282542|283171|283180|283181|283182|283183|284767|284774|284775|284779|284782|284785|284786|284787|284795|284796|284797|284808|285215|285228|285235|285238|285241|285246|285247|285248|285252|285253|285256|354292|354296|354297|354300|354305|361124|361138|361140|361142|361143|361146|361155|362591|362592|362593|362594|397302|413569|426700|428861|445590|445592|465786|465789|465790|465791|465793|465795|465796|465799|465802|465806|465808|465812|465814|466504|466505|466507|466512|466515|466517|466533|466534|466538|466543|466761|466764|466768|466772|466775|466785|466788|466790|512217|529849|530067|530075|530086|530088|530093|530097|530191|530194|530196|530201|530203|530204|530366|530367|530385|530391|530393|530404|530406|530410|530606|530610|530613|530616|530620|530621|530626|530632|536067|551697|553412|568200|568209|569392|570311|570315|570317|570326|570328|570329|570333|570335|570337|570343|570344|570346|574095|574097|578035|608922|608933|621921|621922|621923|621924|623726|623731|623733|623734|623735|624877|644776|644777|644778|644779|644780|644781|644782|644783|644784|644785|644786|644787|644788|644789|644790|644791|644792|644795|644796|644797|644798|644799|644800|644801|644802|644803|644804|652578|653043|653278|679784|679940|693905|693906|703751|703752|703762|714994|726709|726717|731078|731081|740280|745240|755276|755280|822296|844034|844035|844036|844037|844038|844039|844043|844046|844049|844086|844087|844088|844089|852123|927873|927874|927875|927877|937504|937505|937506|937507|937511|937524|937525|937526|949446|949447|949451|949457|949474|949475|957816|957830|960171|964150|964287|964478|964522|964679|970257|970340", "text": "Epilepsy" }, { - "baseId": "21481", + "upstreamId": "21481", "text": "autistic features" }, { - "baseId": "21481|39943|202625|264298|354285|354286|354286|354287|354287|354288|354290|354295|354296|354297|354298|354298|354300|354305|360822|360938|360965|361086|425202|425203|444751|538627|622148|623665|623666|623667|672066|792771|916788|970336|970340|970344|970520", + "upstreamId": "21481|39943|202625|264298|354285|354286|354286|354287|354287|354288|354290|354295|354296|354297|354298|354298|354300|354305|360822|360938|360965|361086|425202|425203|444751|538627|622148|623665|623666|623667|672066|792771|916788|970336|970340|970344|970520", "text": "Developmental delay" }, { - "baseId": "21492", + "upstreamId": "21492", "text": "Hyperthyroidism, familial gestational" }, { - "baseId": "21501|21502|190983|195270|253314|253315|268653|269663|269663|273264|306902|306911|306915|306920|306927|306929|311078|311084|311096|311101|316683|316685|316686|317048|317051|317080|317081|317086|317087|317088|317090|513613|692578|695413|695414|901142|901143|901144|901145|901146|901147|901148|901149|901150|901151|901152|901153|901154|901155|901156|901157|901158|901159|901160|901161|901162|901163|903318|903319|903320", + "upstreamId": "21501|21502|190983|195270|253314|253315|268653|269663|269663|273264|306902|306911|306915|306920|306927|306929|311078|311084|311096|311101|316683|316685|316686|317048|317051|317080|317081|317086|317087|317088|317090|513613|692578|695413|695414|901142|901143|901144|901145|901146|901147|901148|901149|901150|901151|901152|901153|901154|901155|901156|901157|901158|901159|901160|901161|901162|901163|903318|903319|903320", "text": "Lethal congenital contracture syndrome 1" }, { - "baseId": "21501|21502|21503|21504|190983|195270|253314|253315|268653|269663|269663|273264|306902|306911|306915|306920|306927|306929|311078|311084|311096|311101|316683|316685|316686|317048|317051|317080|317081|317085|317086|317087|317088|317090|610536|610537|610538|610539|692578|692579|692582|692583|695413|695414|901142|901143|901144|901145|901146|901147|901148|901149|901150|901151|901152|901153|901154|901155|901156|901157|901158|901159|901160|901161|901162|901163|903318|903319|903320|978561|978562|978563|978564|978565|978566|978567|978568", + "upstreamId": "21501|21502|21503|21504|190983|195270|253314|253315|268653|269663|269663|273264|306902|306911|306915|306920|306927|306929|311078|311084|311096|311101|316683|316685|316686|317048|317051|317080|317081|317085|317086|317087|317088|317090|610536|610537|610538|610539|692578|692579|692582|692583|695413|695414|901142|901143|901144|901145|901146|901147|901148|901149|901150|901151|901152|901153|901154|901155|901156|901157|901158|901159|901160|901161|901162|901163|903318|903319|903320|978561|978562|978563|978564|978565|978566|978567|978568", "text": "Lethal arthrogryposis with anterior horn cell disease" }, { - "baseId": "21501|21502|273264|444366|692580|695415|711770|736904", + "upstreamId": "21501|21502|273264|444366|692580|695415|711770|736904", "text": "Lethal congenital contractural syndrome Finnish type" }, { - "baseId": "21505|21506|193558|195974|195974|254173|254176|265404|267043|271125|314152|314158|314159|314163|314168|314170|320691|320692|320695|320695|320703|320706|320707|320708|326768|326782|326784|326787|326800|327727|327734|327737|327738|327740|490260|492179|587980|730769|802178|868019|868020|868021|868022|868023|868024|868025|868026|868027|868028|868029|868649|896571", + "upstreamId": "21505|21506|193558|195974|195974|254173|254176|265404|267043|271125|314152|314158|314159|314163|314168|314170|320691|320692|320695|320695|320703|320706|320707|320708|326768|326782|326784|326787|326800|327727|327734|327737|327738|327740|490260|492179|587980|730769|802178|868019|868020|868021|868022|868023|868024|868025|868026|868027|868028|868029|868649|896571", "text": "Peroxisome biogenesis disorder 8A" }, { - "baseId": "21507|21508|21509|286489|286492|286497|286503|286504|286509|286511|286519|286529|286532|286536|286552|286554|286559|286562|286565|286580|286581|286582|286583|287179|287180|287183|287184|287188|287190|287191|287199|287200|287211|287214|287228|287231|287243|287254|287271|287272|287273|287279|287280|287299|287300|287305|289527|289539|289541|289544|289558|289563|289578|289581|289584|289600|289601|289606|289607|289614|289619|289623|289625|289627|289637|289641|289981|289982|290010|290011|290012|290013|290014|290018|290022|290023|290024|290027|290028|290030|290032|290034|290035|290045|290046|290047|290049|290061|290065|290070|428060|885033|885034|885035|885036|885037|885038|885039|885040|885041|885042|885043|885044|885045|885046|885047|885048|885049|885050|885051|885052|885053|885054|885055|885056|885057|885058|885059|885060|885061|885062|885063|885064|885065|885066|885067|885068|885069|885070|885071|885072|887375|887376", + "upstreamId": "21507|21508|21509|286489|286492|286497|286503|286504|286509|286511|286519|286529|286532|286536|286552|286554|286559|286562|286565|286580|286581|286582|286583|287179|287180|287183|287184|287188|287190|287191|287199|287200|287211|287214|287228|287231|287243|287254|287271|287272|287273|287279|287280|287299|287300|287305|289527|289539|289541|289544|289558|289563|289578|289581|289584|289600|289601|289606|289607|289614|289619|289623|289625|289627|289637|289641|289981|289982|290010|290011|290012|290013|290014|290018|290022|290023|290024|290027|290028|290030|290032|290034|290035|290045|290046|290047|290049|290061|290065|290070|428060|885033|885034|885035|885036|885037|885038|885039|885040|885041|885042|885043|885044|885045|885046|885047|885048|885049|885050|885051|885052|885053|885054|885055|885056|885057|885058|885059|885060|885061|885062|885063|885064|885065|885066|885067|885068|885069|885070|885071|885072|887375|887376", "text": "Erythrocytosis, familial, 4" }, { - "baseId": "21510|21511|21512|294086|294097|294098|294101|294102|294109|294111|294115|294116|294123|294125|294129|294130|294136|294137|294138|294140|294141|294142|294145|294146|295551|295552|295555|295563|295567|295570|295579|295581|295583|295588|295591|295599|295600|295602|295603|295605|295607|295610|295615|295617|295632|295639|295641|295651|295652|295660|299349|299358|299360|299362|299363|299364|299367|299374|299378|299380|299382|299386|299387|299391|299392|299393|299394|299395|299396|299397|299401|299405|299406|299407|299408|299410|299412|299413|299414|299417|299418|299425|299426|299427|299430|299433|299447|299449|536190|698621|709444|721059|721061|721062|764610|779211|790483|790484|892153|892154|892155|892156|892157|892158|892159|892160|892161|892162|892163|892164|892165|892166|892167|892168|892169|892170|892171|892172|892173|892174|892175|892176|892177|892178|892179|892180|892181|892182|892183|892184|892185|892186|892187|892188|892189|892190|892191|892192|892193|892194|892195|892196|892197|892198|892199|892200|895992|895993|895994", + "upstreamId": "21510|21511|21512|294086|294097|294098|294101|294102|294109|294111|294115|294116|294123|294125|294129|294130|294136|294137|294138|294140|294141|294142|294145|294146|295551|295552|295555|295563|295567|295570|295579|295581|295583|295588|295591|295599|295600|295602|295603|295605|295607|295610|295615|295617|295632|295639|295641|295651|295652|295660|299349|299358|299360|299362|299363|299364|299367|299374|299378|299380|299382|299386|299387|299391|299392|299393|299394|299395|299396|299397|299401|299405|299406|299407|299408|299410|299412|299413|299414|299417|299418|299425|299426|299427|299430|299433|299447|299449|536190|698621|709444|721059|721061|721062|764610|779211|790483|790484|892153|892154|892155|892156|892157|892158|892159|892160|892161|892162|892163|892164|892165|892166|892167|892168|892169|892170|892171|892172|892173|892174|892175|892176|892177|892178|892179|892180|892181|892182|892183|892184|892185|892186|892187|892188|892189|892190|892191|892192|892193|892194|892195|892196|892197|892198|892199|892200|895992|895993|895994", "text": "Renal tubular acidosis, proximal, with ocular abnormalities and mental retardation" }, { - "baseId": "21513|21514|21515|45639|45640|45641|174062|174072|192740|195508|205155|205156|221681|221689|221695|229586|240035|240066|252675|252694|252721|252744|252752|252758|252770|259857|265859|273561|302431|310521|310767|395584|395617|395748|395901|395919|396216|446887|456552|456980|457024|457617|522535|523191|538394|561807|561840|564206|564207|566687|566706|620255|620256|620257|635993|683866|683877|687021|687030|792769|798584|800942|815839|833438|833467|857594|857595|857596|857597|857604|861606|897831|897832|897833|897834|897835|897836|897837|897838|897839|897840|897841|897842|897843|897844|897845|897846|897847|897848|897849|897850|897851|897852|897853|897854|897855|897856|897857|897858|897859|897860|897861|897862|897863|897864|897865|897866|897867|897868|897870|897871|900337|900338|900339|900340|900341|900342|900343|900344|919099|963147", + "upstreamId": "21513|21514|21515|45639|45640|45641|174062|174072|192740|195508|205155|205156|221681|221689|221695|229586|240035|240066|252675|252694|252721|252744|252752|252758|252770|259857|265859|273561|302431|310521|310767|395584|395617|395748|395901|395919|396216|446887|456552|456980|457024|457617|522535|523191|538394|561807|561840|564206|564207|566687|566706|620255|620256|620257|635993|683866|683877|687021|687030|792769|798584|800942|815839|833438|833467|857594|857595|857596|857597|857604|861606|897831|897832|897833|897834|897835|897836|897837|897838|897839|897840|897841|897842|897843|897844|897845|897846|897847|897848|897849|897850|897851|897852|897853|897854|897855|897856|897857|897858|897859|897860|897861|897862|897863|897864|897865|897866|897867|897868|897870|897871|900337|900338|900339|900340|900341|900342|900343|900344|919099|963147", "text": "Ciliary dyskinesia, primary, 7" }, { - "baseId": "21513", + "upstreamId": "21513", "text": "CILIARY DYSKINESIA, PRIMARY, 7, WITH SITUS INVERSUS" }, { - "baseId": "21516|21517|21518|21519|21520|48248|48250|48251|76544|76545|99630|150296|150297|173544|173545|173546|173547|173548|173549|173550|173551|173552|173555|173557|173559|173560|173561|173562|173563|173564|173565|173566|173567|173568|173569|173570|173571|173682|173684|173685|173687|173690|173691|173692|173694|173695|173697|173698|173699|173700|173701|173702|173703|173704|173705|173707|173708|186048|186049|186050|190792|192969|194678|194702|195139|205552|212501|212503|221594|221595|221596|221597|221602|221603|221604|227278|229241|229242|229243|229245|229246|229247|229248|229249|229250|229252|229253|229254|229255|229256|229258|229260|229261|229262|229263|229264|229266|229267|229268|229269|229270|229271|239718|239719|239720|239721|239722|239723|239725|239727|239728|239731|239735|239738|239742|239744|239745|239762|239763|239765|239766|251680|251689|251691|251693|251706|251709|251712|251713|251715|251723|251725|251727|251734|251738|251741|251748|251750|251756|251761|251768|251771|251776|251788|251793|265368|270913|271935|295376|295377|295382|295383|295388|295389|295394|295396|295397|295457|295459|295473|295474|295489|295490|295491|295494|295495|295499|295501|295506|295511|295513|295520|295527|295529|295538|295540|295550|295554|295558|295560|295568|297170|297172|297173|297174|297176|297178|297179|297202|297278|297279|297280|297287|297294|297295|297306|297319|297320|297330|297346|297347|297348|297365|300918|300938|300940|300948|300949|300950|300957|300975|300982|300985|300988|300991|300998|301002|301003|301004|301007|301010|301014|301015|301026|301055|301068|301073|301074|301075|301080|301084|301115|301116|301127|301131|301134|301136|301138|301140|301153|301157|301177|301178|301179|301180|301188|301192|301193|301265|301283|301285|301286|301287|301291|301292|301300|301304|301315|301337|301345|301361|301379|301421|353893|359652|369620|394709|394736|394740|394769|394773|394820|394821|394827|394829|394983|395025|395055|395343|395367|454501|454509|454614|454624|454649|454678|454698|455046|455092|455093|455113|455368|455388|455412|455431|489983|496353|511555|520772|520988|521032|521119|521126|521128|536048|538372|543686|543690|543793|552084|560139|560155|560250|562790|589371|620777|633191|633203|633213|633232|633464|683666|683669|683671|683675|683701|683703|685171|685174|686622|686624|686629|686632|686646|686647|686693|686696|689777|689778|691706|691720|691751|698792|698794|734850|790516|830183|857590|857591|857592|857593|857603|892929|892930|892931|892932|892933|892934|892935|892936|892937|892938|892939|892940|892941|892942|892943|892944|892945|892946|892947|892948|892949|892950|892951|892952|892953|892954|892955|892956|892957|892958|892959|892960|892961|892962|892963|892964|892993|892998|892999|893000|893003|893004|893007|893008|893009|893010|893014|893015|893016|893017|893028|893029|893030|893031|893032|893033|893034|893035|893036|893037|893038|893039|893040|893041|893042|893043|893044|893045|893046|893047|893048|893049|893050|893051|893052|893053|893054|893055|893056|893057|893058|893059|893060|893061|893062|893071|893072|893073|893074|893076|893077|893078|893079|893080|893081|893082|893083|893084|893085|893086|893087|893088|893109|893110|896030|896031|896032|896035|896037|896038|896039|896040|896041|896043|896044|896045|896046|904211|917776|918922|980919", + "upstreamId": "21516|21517|21518|21519|21520|48248|48250|48251|76544|76545|99630|150296|150297|173544|173545|173546|173547|173548|173549|173550|173551|173552|173555|173557|173559|173560|173561|173562|173563|173564|173565|173566|173567|173568|173569|173570|173571|173682|173684|173685|173687|173690|173691|173692|173694|173695|173697|173698|173699|173700|173701|173702|173703|173704|173705|173707|173708|186048|186049|186050|190792|192969|194678|194702|195139|205552|212501|212503|221594|221595|221596|221597|221602|221603|221604|227278|229241|229242|229243|229245|229246|229247|229248|229249|229250|229252|229253|229254|229255|229256|229258|229260|229261|229262|229263|229264|229266|229267|229268|229269|229270|229271|239718|239719|239720|239721|239722|239723|239725|239727|239728|239731|239735|239738|239742|239744|239745|239762|239763|239765|239766|251680|251689|251691|251693|251706|251709|251712|251713|251715|251723|251725|251727|251734|251738|251741|251748|251750|251756|251761|251768|251771|251776|251788|251793|265368|270913|271935|295376|295377|295382|295383|295388|295389|295394|295396|295397|295457|295459|295473|295474|295489|295490|295491|295494|295495|295499|295501|295506|295511|295513|295520|295527|295529|295538|295540|295550|295554|295558|295560|295568|297170|297172|297173|297174|297176|297178|297179|297202|297278|297279|297280|297287|297294|297295|297306|297319|297320|297330|297346|297347|297348|297365|300918|300938|300940|300948|300949|300950|300957|300975|300982|300985|300988|300991|300998|301002|301003|301004|301007|301010|301014|301015|301026|301055|301068|301073|301074|301075|301080|301084|301115|301116|301127|301131|301134|301136|301138|301140|301153|301157|301177|301178|301179|301180|301188|301192|301193|301265|301283|301285|301286|301287|301291|301292|301300|301304|301315|301337|301345|301361|301379|301421|353893|359652|369620|394709|394736|394740|394769|394773|394820|394821|394827|394829|394983|395025|395055|395343|395367|454501|454509|454614|454624|454649|454678|454698|455046|455092|455093|455113|455368|455388|455412|455431|489983|496353|511555|520772|520988|521032|521119|521126|521128|536048|538372|543686|543690|543793|552084|560139|560155|560250|562790|589371|620777|633191|633203|633213|633232|633464|683666|683669|683671|683675|683701|683703|685171|685174|686622|686624|686629|686632|686646|686647|686693|686696|689777|689778|691706|691720|691751|698792|698794|734850|790516|830183|857590|857591|857592|857593|857603|892929|892930|892931|892932|892933|892934|892935|892936|892937|892938|892939|892940|892941|892942|892943|892944|892945|892946|892947|892948|892949|892950|892951|892952|892953|892954|892955|892956|892957|892958|892959|892960|892961|892962|892963|892964|892993|892998|892999|893000|893003|893004|893007|893008|893009|893010|893014|893015|893016|893017|893028|893029|893030|893031|893032|893033|893034|893035|893036|893037|893038|893039|893040|893041|893042|893043|893044|893045|893046|893047|893048|893049|893050|893051|893052|893053|893054|893055|893056|893057|893058|893059|893060|893061|893062|893071|893072|893073|893074|893076|893077|893078|893079|893080|893081|893082|893083|893084|893085|893086|893087|893088|893109|893110|896030|896031|896032|896035|896037|896038|896039|896040|896041|896043|896044|896045|896046|904211|917776|918922|980919", "text": "Ciliary dyskinesia, primary, 3" }, { - "baseId": "21521|21522|21523|21524|21528|21530|21532|55248|55249|55250|55252|55253|172439|172440|172441|172443|172579|172580|172581|273253|280399|280422|280427|280751|280752|280759|280761|280775|280800|282163|282164|282174|282176|282177|282178|282181|282187|282193|282201|282267|282268|282271|282276|282277|282278|282286|282297|282299|282311|282319|282320|282321|282327|282344|513242|707362|864310|864311|864312|864313|864314|864315|864316|864317|864318|864319|864320|864321|864322|864323|864324|864325|864326|864327|864328|864329|864330|864331|918634", + "upstreamId": "21521|21522|21523|21524|21528|21530|21532|55248|55249|55250|55252|55253|172439|172440|172441|172443|172579|172580|172581|273253|280399|280422|280427|280751|280752|280759|280761|280775|280800|282163|282164|282174|282176|282177|282178|282181|282187|282193|282201|282267|282268|282271|282276|282277|282278|282286|282297|282299|282311|282319|282320|282321|282327|282344|513242|707362|864310|864311|864312|864313|864314|864315|864316|864317|864318|864319|864320|864321|864322|864323|864324|864325|864326|864327|864328|864329|864330|864331|918634", "text": "Erythrokeratodermia variabilis et progressiva 1" }, { - "baseId": "21524|21525|273253", + "upstreamId": "21524|21525|273253", "text": "Deafness, autosomal dominant 2b" }, { - "baseId": "21529", + "upstreamId": "21529", "text": "Deafness, autosomal dominant, with peripheral neuropathy" }, { - "baseId": "21531|21532|32053", + "upstreamId": "21531|21532|32053", "text": "Deafness, digenic, GJB2/GJB3" }, { - "baseId": "21536|79362|257330|413913|413914|469332|470297|470856|470859|470861|533438|533493|533498|533522|534017|572865|648586|689185|689186|689187|694527|848232", + "upstreamId": "21536|79362|257330|413913|413914|469332|470297|470856|470859|470861|533438|533493|533498|533522|534017|572865|648586|689185|689186|689187|694527|848232", "text": "Cataract 33, multiple types" }, { - "baseId": "21537|21538|134877|281450|281454|281457|281461|281470|281474|281477|281478|281485|281494|281495|281505|281506|282103|282104|282108|282110|282111|282112|282114|282116|282117|282118|282120|282121|282132|282133|282134|282135|282136|282139|282140|282141|283429|283436|283451|283452|283456|283457|283465|283469|283479|283482|283483|283486|283492|283493|283494|283502|283576|283588|283601|283602|283605|283607|283608|283609|283622|283625|380188|380189|620731|880754|880755|880756|880757|880758|880759|880760|880761|880762|880763|880764|880765|880766|880767|880768|880769|880770|880771|880772|880773|880774|880775|880776|880777|880778|880779|880780|880781|880782|880783|880784|880785|880786|880787|880788|880789", + "upstreamId": "21537|21538|134877|281450|281454|281457|281461|281470|281474|281477|281478|281485|281494|281495|281505|281506|282103|282104|282108|282110|282111|282112|282114|282116|282117|282118|282120|282121|282132|282133|282134|282135|282136|282139|282140|282141|283429|283436|283451|283452|283456|283457|283465|283469|283479|283482|283483|283486|283492|283493|283494|283502|283576|283588|283601|283602|283605|283607|283608|283609|283622|283625|380188|380189|620731|880754|880755|880756|880757|880758|880759|880760|880761|880762|880763|880764|880765|880766|880767|880768|880769|880770|880771|880772|880773|880774|880775|880776|880777|880778|880779|880780|880781|880782|880783|880784|880785|880786|880787|880788|880789", "text": "Maturity-onset diabetes of the young type 7" }, { - "baseId": "21538|23898|23902|24144|27358|28830|29525|29566|29746|29970|29984|31129|39164|39165|44274|44279|44289|44846|44852|44873|44881|45075|45077|45093|45146|45462|45472|45483|45493|45494|45496|54599|54603|54606|54607|54608|54610|54612|54620|54624|77659|77759|101221|101222|101224|133981|134133|134430|134580|134581|134587|134601|134602|134604|134679|134686|134876|135209|135321|135327|135413|135415|135420|135500|135595|135602|135603|136194|136217|136220|138250|141616|141617|141622|168866|173817|173818|173842|173957|173964|173979|173980|177356|190191|190266|190460|191101|192417|196033|196036|196486|207019|207094|207095|207310|207484|207659|207849|207867|208397|208435|208628|208629|208634|211031|211032|211038|211053|211056|211057|211062|211074|211077|215036|215037|221324|221326|221331|221333|221334|221335|221336|221338|221339|229187|229188|237135|237219|237276|237302|238975|238977|238978|238992|238994|238996|238997|238999|239000|239009|239016|248553|251005|253899|254226|269283|270744|272968|273448|277131|281140|281740|281750|281751|282104|283576|288287|299746|301798|306735|306747|307058|308470|309571|309758|311503|312713|314467|318800|318803|319427|321672|328277|338447|359370|366944|366946|366963|366975|367005|367861|367863|367866|376007|380181|380182|380183|380184|380185|380186|380187|380188|380189|380190|380191|380192|380193|380194|380195|380196|380197|380198|380199|380200|380201|380202|380203|380204|380205|380206|380207|380208|380209|380210|380211|380212|380213|380214|380215|380216|380217|380218|380219|380220|380221|380222|380223|380224|380225|380226|380227|380228|380229|380230|380231|380232|380233|380234|380235|380236|380237|380238|380239|380240|380241|380242|380243|380244|380245|380246|380247|380248|380249|380250|380251|380252|380253|380254|380256|380257|380258|380259|380260|380261|380262|380263|380264|380265|380266|380267|380268|380269|380270|380271|380272|380273|380274|380275|393443|393476|402702|414899|428104|428119|428498|428664|429021|429195|429204|429373|429384|441107|441633|441635|451437|451645|451647|496327|500665|518653|518718|522709|539987|539988|539989|539990|539991|539992|539993|539994|539995|539996|539997|539998|539999|540000|540002|540003|540004|540005|540006|540007|540008|540009|540010|540011|540012|540013|540014|540015|540016|540017|540018|540019|540020|540021|540022|540023|540024|540025|540026|540027|540028|540029|540030|540031|540032|540033|540034|540035|540036|540037|540038|540039|542169|542588|546118|546501|553540|558646|572542|577178|587845|590556|590560|622429|684262|691491|717812|723580|735298|737143|742179|765400|796706|838133|885646|895739|895740|895744|905040|905041|905042|905043|905044|905045|905046|905047|905737|905738|905739|905740|905741|905742|905743|905744|905745|905746|905747|905748|905749|905750|905751|905752|905753|905754|905755|905756|905757|905758|905759|905760|905761|905762|905763|905764|905765|905766|905767|905768|905769|905770|905771|905772|905773|905774|905775|905776|905777|905778|905779|905780|905781|905782|905783|905784|905785|905786|905787|905788|905789|905790|905791|905792|905793|905794|905795|905796|905797|905798|905799|905800|905801|905802|905803|905804|905805|905806|905807|905808|905809", + "upstreamId": "21538|23898|23902|24144|27358|28830|29525|29566|29746|29970|29984|31129|39164|39165|44274|44279|44289|44846|44852|44873|44881|45075|45077|45093|45146|45462|45472|45483|45493|45494|45496|54599|54603|54606|54607|54608|54610|54612|54620|54624|77659|77759|101221|101222|101224|133981|134133|134430|134580|134581|134587|134601|134602|134604|134679|134686|134876|135209|135321|135327|135413|135415|135420|135500|135595|135602|135603|136194|136217|136220|138250|141616|141617|141622|168866|173817|173818|173842|173957|173964|173979|173980|177356|190191|190266|190460|191101|192417|196033|196036|196486|207019|207094|207095|207310|207484|207659|207849|207867|208397|208435|208628|208629|208634|211031|211032|211038|211053|211056|211057|211062|211074|211077|215036|215037|221324|221326|221331|221333|221334|221335|221336|221338|221339|229187|229188|237135|237219|237276|237302|238975|238977|238978|238992|238994|238996|238997|238999|239000|239009|239016|248553|251005|253899|254226|269283|270744|272968|273448|277131|281140|281740|281750|281751|282104|283576|288287|299746|301798|306735|306747|307058|308470|309571|309758|311503|312713|314467|318800|318803|319427|321672|328277|338447|359370|366944|366946|366963|366975|367005|367861|367863|367866|376007|380181|380182|380183|380184|380185|380186|380187|380188|380189|380190|380191|380192|380193|380194|380195|380196|380197|380198|380199|380200|380201|380202|380203|380204|380205|380206|380207|380208|380209|380210|380211|380212|380213|380214|380215|380216|380217|380218|380219|380220|380221|380222|380223|380224|380225|380226|380227|380228|380229|380230|380231|380232|380233|380234|380235|380236|380237|380238|380239|380240|380241|380242|380243|380244|380245|380246|380247|380248|380249|380250|380251|380252|380253|380254|380256|380257|380258|380259|380260|380261|380262|380263|380264|380265|380266|380267|380268|380269|380270|380271|380272|380273|380274|380275|393443|393476|402702|414899|428104|428119|428498|428664|429021|429195|429204|429373|429384|441107|441633|441635|451437|451645|451647|496327|500665|518653|518718|522709|539987|539988|539989|539990|539991|539992|539993|539994|539995|539996|539997|539998|539999|540000|540002|540003|540004|540005|540006|540007|540008|540009|540010|540011|540012|540013|540014|540015|540016|540017|540018|540019|540020|540021|540022|540023|540024|540025|540026|540027|540028|540029|540030|540031|540032|540033|540034|540035|540036|540037|540038|540039|542169|542588|546118|546501|553540|558646|572542|577178|587845|590556|590560|622429|684262|691491|717812|723580|735298|737143|742179|765400|796706|838133|885646|895739|895740|895744|905040|905041|905042|905043|905044|905045|905046|905047|905737|905738|905739|905740|905741|905742|905743|905744|905745|905746|905747|905748|905749|905750|905751|905752|905753|905754|905755|905756|905757|905758|905759|905760|905761|905762|905763|905764|905765|905766|905767|905768|905769|905770|905771|905772|905773|905774|905775|905776|905777|905778|905779|905780|905781|905782|905783|905784|905785|905786|905787|905788|905789|905790|905791|905792|905793|905794|905795|905796|905797|905798|905799|905800|905801|905802|905803|905804|905805|905806|905807|905808|905809", "text": "Monogenic diabetes" }, { - "baseId": "21539|21540|21541|21542|21543|21544|21545|21546|21547|21548|21549|21550|21551|21552|21553|39306|39387|48579|48580|48581|48582|99432|99433|99434|99435|177001|177263|177681|186127|189128|190320|192821|192822|193170|193171|196116|196122|212828|212829|212830|212831|212833|222014|222015|222016|222018|227340|240900|260898|260909|260913|260926|260927|265616|265677|267756|268859|268973|269146|272217|274239|275001|312091|312095|312096|312097|312101|312102|312103|312104|312112|312114|312115|312116|312117|312124|312125|312126|312134|312136|312137|312138|312145|312149|312152|312153|312155|312157|312162|312168|317756|317757|317758|317762|317763|317764|317765|317791|317793|317794|317802|317803|317808|317810|317811|317821|317823|317826|317832|317837|317851|317852|317856|317864|317867|317868|317869|317876|317879|317880|317891|317892|317893|317897|317898|317899|317900|317912|317918|317919|317924|317933|323845|323847|323852|323856|323857|323872|323876|323877|323883|323884|323887|323897|323904|323912|323913|323918|323923|323925|323928|323930|323932|323941|323942|323951|323960|323966|323982|323985|324548|324549|324560|324561|324562|324564|324567|324570|324571|324577|324578|324584|324586|324600|324603|324607|324624|324625|324645|324654|324669|324678|324684|324699|324702|324703|324710|324714|324724|324731|353901|353902|359980|371020|371028|371669|371674|371948|408030|408035|430981|433511|433512|440139|440173|440179|440200|460465|460769|481536|492654|492920|493007|503016|503363|503556|552147|589052|609211|609212|609213|609214|609777|680048|680049|684203|684210|684218|687692|687697|687700|791024|791025|798631|798632|861596|866837|866838|866839|866840|866841|866842|866843|866844|866845|866846|866847|866848|866849|866850|866851|866852|866853|866854|866855|866856|866857|866858|866859|866860|866861|866862|866863|866864|866865|866866|866867|866868|866869|866870|866871|866872|866873|866874|866875|866876|866877|866878|866879|866880|866881|866882|866883|866884|866885|866886|866887|866888|866889|866890|866891|866892|866893|868583|868584|868585|868586|868587|868588|868589|868590|868591|868592|919314|920291|964352|980843|980844|981720|981721|981722|981723|981724|981725|981726|981727|981728|981729", + "upstreamId": "21539|21540|21541|21542|21543|21544|21545|21546|21547|21548|21549|21550|21551|21552|21553|39306|39387|48579|48580|48581|48582|99432|99433|99434|99435|177001|177263|177681|186127|189128|190320|192821|192822|193170|193171|196116|196122|212828|212829|212830|212831|212833|222014|222015|222016|222018|227340|240900|260898|260909|260913|260926|260927|265616|265677|267756|268859|268973|269146|272217|274239|275001|312091|312095|312096|312097|312101|312102|312103|312104|312112|312114|312115|312116|312117|312124|312125|312126|312134|312136|312137|312138|312145|312149|312152|312153|312155|312157|312162|312168|317756|317757|317758|317762|317763|317764|317765|317791|317793|317794|317802|317803|317808|317810|317811|317821|317823|317826|317832|317837|317851|317852|317856|317864|317867|317868|317869|317876|317879|317880|317891|317892|317893|317897|317898|317899|317900|317912|317918|317919|317924|317933|323845|323847|323852|323856|323857|323872|323876|323877|323883|323884|323887|323897|323904|323912|323913|323918|323923|323925|323928|323930|323932|323941|323942|323951|323960|323966|323982|323985|324548|324549|324560|324561|324562|324564|324567|324570|324571|324577|324578|324584|324586|324600|324603|324607|324624|324625|324645|324654|324669|324678|324684|324699|324702|324703|324710|324714|324724|324731|353901|353902|359980|371020|371028|371669|371674|371948|408030|408035|430981|433511|433512|440139|440173|440179|440200|460465|460769|481536|492654|492920|493007|503016|503363|503556|552147|589052|609211|609212|609213|609214|609777|680048|680049|684203|684210|684218|687692|687697|687700|791024|791025|798631|798632|861596|866837|866838|866839|866840|866841|866842|866843|866844|866845|866846|866847|866848|866849|866850|866851|866852|866853|866854|866855|866856|866857|866858|866859|866860|866861|866862|866863|866864|866865|866866|866867|866868|866869|866870|866871|866872|866873|866874|866875|866876|866877|866878|866879|866880|866881|866882|866883|866884|866885|866886|866887|866888|866889|866890|866891|866892|866893|868583|868584|868585|868586|868587|868588|868589|868590|868591|868592|919314|920291|964352|980843|980844|981720|981721|981722|981723|981724|981725|981726|981727|981728|981729", "text": "Short-rib thoracic dysplasia 3 with or without polydactyly" }, { - "baseId": "21540|21542|21546|21548|39306|39892|40345|40346|48581|76527|99434|99435|102031|102032|102947|102955|132657|136094|136095|136096|136097|136098|136099|136100|136101|136102|136103|136104|136105|136106|136107|177132|177263|177681|186127|186128|186129|186130|186131|190320|190896|191511|191512|191595|191838|191942|191943|192691|192691|192692|192702|192732|192782|192821|192822|192894|192938|193170|193171|195159|195418|195492|196122|198616|212121|212122|212123|212124|212291|212292|212293|212828|212829|212830|212831|212832|212833|214312|221116|221117|221367|221368|221369|222011|222013|222014|222015|222016|222017|222018|222019|226923|238377|240900|240901|240902|240903|250324|250325|250329|250332|250334|250335|250337|263847|264652|265616|265677|266000|266006|266009|266011|267756|268973|269092|269146|271765|272217|274991|274997|275001|282439|282504|283133|283158|283161|283168|283170|284715|284726|284730|284750|285195|285200|285204|289288|289299|289304|290086|290087|290095|293148|293153|293155|293164|293166|293185|293623|293636|293639|293642|294773|294797|298349|298359|298422|298440|312091|312095|312096|312097|312101|312102|312103|312104|312115|312117|312118|312124|312125|312126|312134|312136|312138|312145|312146|312152|312167|312168|317756|317757|317758|317762|317763|317764|317791|317802|317807|317808|317810|317811|317821|317823|317826|317832|317837|317851|317856|317864|317868|317869|317879|317880|317891|317893|317897|317899|317900|317912|317918|317919|323845|323852|323856|323857|323872|323876|323877|323882|323883|323884|323887|323897|323904|323906|323912|323913|323917|323918|323923|323925|323928|323929|323930|323937|323942|323951|323960|323964|323966|324548|324549|324560|324561|324564|324567|324570|324578|324600|324607|324645|324654|324678|324684|324699|324702|324714|324731|353542|353902|361512|365832|365835|371024|371669|373651|391469|393351|393400|397585|397593|397764|398130|398132|405068|408032|408471|420432|420432|420433|420434|425423|429161|430981|433511|433512|433515|433630|439055|440053|440055|440057|440059|440062|440063|440064|440067|440068|440071|440072|440074|440075|440083|440087|440088|440089|440090|440091|440092|440094|440095|440096|440098|440099|440101|440107|440110|440111|440114|440115|440117|440121|440125|440126|440127|440131|440132|440133|440135|440137|440138|440140|440142|440146|440148|440149|440151|440152|440154|440155|440164|440167|440168|440170|440173|440175|440177|440179|440182|440186|440187|440188|440189|440192|440195|440198|440199|440200|440202|440203|440204|440205|440210|440211|440213|440214|440216|440217|440219|443008|448813|448989|449094|449103|449109|452118|452268|460435|460437|460465|460769|460772|461202|461220|461222|481975|486675|488689|491328|492662|492663|493007|493010|503007|503019|503351|503556|516520|516603|516622|518956|525616|525618|525619|525694|525697|525700|525704|525858|525861|526024|526026|536612|549469|549470|549472|549473|549476|549477|549478|549479|549480|549481|549482|549483|549484|549485|549486|549487|549488|549489|549490|549491|549492|549492|549493|557602|557647|564103|564108|565046|566741|566745|582368|609189|609237|609505|609776|625837|628798|628799|628800|631022|631023|639358|639359|639360|639361|639362|639363|650891|652067|652215|655171|683413|683563|683564|683565|684203|684204|684206|684207|684209|684211|684214|684215|684217|684220|685144|685281|685889|685891|685893|686353|686354|686355|686356|686357|686358|686359|686360|686361|687691|687692|687694|687695|687697|687700|687701|687702|689674|689734|689989|689991|689993|690860|695181|733891|759040|762354|777183|783808|783809|819343|820287|820288|825099|825100|825101|827647|827648|827649|827650|827651|827652|827653|827654|837586|837587|837588|837589|837590|837591|837592|837593|851029|866862|866873|888290|888292|922337|925999|926000|926001|926002|926003|930910|930911|930912|930913|931814|931815|931816|931817|931818|931819|931820|935270|935271|935272|935273|940662|942330|943383|943384|943385|943386|943387|943388|943389|943390|943391|943392|943393|943394|947174|952750|952751|952752|953375|953376|953377|953378|953379|956302|959693|959958|960508", + "upstreamId": "21540|21542|21546|21548|39306|39892|40345|40346|48581|76527|99434|99435|102031|102032|102947|102955|132657|136094|136095|136096|136097|136098|136099|136100|136101|136102|136103|136104|136105|136106|136107|177132|177263|177681|186127|186128|186129|186130|186131|190320|190896|191511|191512|191595|191838|191942|191943|192691|192691|192692|192702|192732|192782|192821|192822|192894|192938|193170|193171|195159|195418|195492|196122|198616|212121|212122|212123|212124|212291|212292|212293|212828|212829|212830|212831|212832|212833|214312|221116|221117|221367|221368|221369|222011|222013|222014|222015|222016|222017|222018|222019|226923|238377|240900|240901|240902|240903|250324|250325|250329|250332|250334|250335|250337|263847|264652|265616|265677|266000|266006|266009|266011|267756|268973|269092|269146|271765|272217|274991|274997|275001|282439|282504|283133|283158|283161|283168|283170|284715|284726|284730|284750|285195|285200|285204|289288|289299|289304|290086|290087|290095|293148|293153|293155|293164|293166|293185|293623|293636|293639|293642|294773|294797|298349|298359|298422|298440|312091|312095|312096|312097|312101|312102|312103|312104|312115|312117|312118|312124|312125|312126|312134|312136|312138|312145|312146|312152|312167|312168|317756|317757|317758|317762|317763|317764|317791|317802|317807|317808|317810|317811|317821|317823|317826|317832|317837|317851|317856|317864|317868|317869|317879|317880|317891|317893|317897|317899|317900|317912|317918|317919|323845|323852|323856|323857|323872|323876|323877|323882|323883|323884|323887|323897|323904|323906|323912|323913|323917|323918|323923|323925|323928|323929|323930|323937|323942|323951|323960|323964|323966|324548|324549|324560|324561|324564|324567|324570|324578|324600|324607|324645|324654|324678|324684|324699|324702|324714|324731|353542|353902|361512|365832|365835|371024|371669|373651|391469|393351|393400|397585|397593|397764|398130|398132|405068|408032|408471|420432|420432|420433|420434|425423|429161|430981|433511|433512|433515|433630|439055|440053|440055|440057|440059|440062|440063|440064|440067|440068|440071|440072|440074|440075|440083|440087|440088|440089|440090|440091|440092|440094|440095|440096|440098|440099|440101|440107|440110|440111|440114|440115|440117|440121|440125|440126|440127|440131|440132|440133|440135|440137|440138|440140|440142|440146|440148|440149|440151|440152|440154|440155|440164|440167|440168|440170|440173|440175|440177|440179|440182|440186|440187|440188|440189|440192|440195|440198|440199|440200|440202|440203|440204|440205|440210|440211|440213|440214|440216|440217|440219|443008|448813|448989|449094|449103|449109|452118|452268|460435|460437|460465|460769|460772|461202|461220|461222|481975|486675|488689|491328|492662|492663|493007|493010|503007|503019|503351|503556|516520|516603|516622|518956|525616|525618|525619|525694|525697|525700|525704|525858|525861|526024|526026|536612|549469|549470|549472|549473|549476|549477|549478|549479|549480|549481|549482|549483|549484|549485|549486|549487|549488|549489|549490|549491|549492|549492|549493|557602|557647|564103|564108|565046|566741|566745|582368|609189|609237|609505|609776|625837|628798|628799|628800|631022|631023|639358|639359|639360|639361|639362|639363|650891|652067|652215|655171|683413|683563|683564|683565|684203|684204|684206|684207|684209|684211|684214|684215|684217|684220|685144|685281|685889|685891|685893|686353|686354|686355|686356|686357|686358|686359|686360|686361|687691|687692|687694|687695|687697|687700|687701|687702|689674|689734|689989|689991|689993|690860|695181|733891|759040|762354|777183|783808|783809|819343|820287|820288|825099|825100|825101|827647|827648|827649|827650|827651|827652|827653|827654|837586|837587|837588|837589|837590|837591|837592|837593|851029|866862|866873|888290|888292|922337|925999|926000|926001|926002|926003|930910|930911|930912|930913|931814|931815|931816|931817|931818|931819|931820|935270|935271|935272|935273|940662|942330|943383|943384|943385|943386|943387|943388|943389|943390|943391|943392|943393|943394|947174|952750|952751|952752|953375|953376|953377|953378|953379|956302|959693|959958|960508", "text": "Jeune thoracic dystrophy" }, { - "baseId": "21542|99432|99433|99434|101405|190320|191512|193171|195492|196116|212830|212833|222014|222018|247750|247751|250474|263847|268859|268973|273447|274239|283786|283829|284409|284412|284415|284460|284474|286856|292809|292820|294154|297755|312091|312097|312112|312114|312115|312116|312118|312126|312136|312137|312146|312149|312153|312155|312157|312162|312167|317764|317765|317791|317793|317794|317803|317807|317821|317852|317856|317867|317869|317876|317880|317892|317893|317897|317898|317924|317933|323847|323852|323857|323882|323906|323913|323917|323925|323929|323932|323937|323941|323964|323982|323985|324560|324561|324562|324571|324577|324578|324584|324586|324603|324624|324625|324669|324703|324710|324714|324724|440064|481523|481524|486678|496106|496107|609190|609205|609305|609306|654623", + "upstreamId": "21542|99432|99433|99434|101405|190320|191512|193171|195492|196116|212830|212833|222014|222018|247750|247751|250474|263847|268859|268973|273447|274239|283786|283829|284409|284412|284415|284460|284474|286856|292809|292820|294154|297755|312091|312097|312112|312114|312115|312116|312118|312126|312136|312137|312146|312149|312153|312155|312157|312162|312167|317764|317765|317791|317793|317794|317803|317807|317821|317852|317856|317867|317869|317876|317880|317892|317893|317897|317898|317924|317933|323847|323852|323857|323882|323906|323913|323917|323925|323929|323932|323937|323941|323964|323982|323985|324560|324561|324562|324571|324577|324578|324584|324586|324603|324624|324625|324669|324703|324710|324714|324724|440064|481523|481524|486678|496106|496107|609190|609205|609305|609306|654623", "text": "Short Rib Polydactyly Syndrome" }, { - "baseId": "21542|360924", + "upstreamId": "21542|360924", "text": "Bowing of the long bones" }, { - "baseId": "21542|255586|360924|360944|514005|514055", + "upstreamId": "21542|255586|360924|360944|514005|514055", "text": "Narrow chest" }, { - "baseId": "21542|224877|263257|360924|550129|550226|801074", + "upstreamId": "21542|224877|263257|360924|550129|550226|801074", "text": "Intrauterine growth retardation" }, { - "baseId": "21542|549477|620379|620380|620381|620382", + "upstreamId": "21542|549477|620379|620380|620381|620382", "text": "DYNC2H1-Related Disorders" }, { - "baseId": "21545|21546|21547|48579|48581|196212|353902|359980|371024|397593|408032|408035|433515|440106|440107|440108|440109|440112|440113|440118|440119|440120|440121|440122|440123|440124|440128|440129|440130|440133|440134|440136|440138|440139|440141|440143|440144|440145|440147|440150|440153|440156|440157|440158|440159|440160|440161|440162|440163|440164|440165|440168|440169|440171|440172|440174|440176|440178|440181|440183|440184|440185|440190|440191|440192|440193|440194|440196|440197|440200|440201|440206|440207|440208|440211", + "upstreamId": "21545|21546|21547|48579|48581|196212|353902|359980|371024|397593|408032|408035|433515|440106|440107|440108|440109|440112|440113|440118|440119|440120|440121|440122|440123|440124|440128|440129|440130|440133|440134|440136|440138|440139|440141|440143|440144|440145|440147|440150|440153|440156|440157|440158|440159|440160|440161|440162|440163|440164|440165|440168|440169|440171|440172|440174|440176|440178|440181|440183|440184|440185|440190|440191|440192|440193|440194|440196|440197|440200|440201|440206|440207|440208|440211", "text": "Short-rib polydactyly syndrome type III" }, { - "baseId": "21554|71564|71565|210240|210241|210242|230444|230446|319588|334487|336196|336215|463630|528081|799740|981835|981836", + "upstreamId": "21554|71564|71565|210240|210241|210242|230444|230446|319588|334487|336196|336215|463630|528081|799740|981835|981836", "text": "Primary pulmonary hypertension 2" }, { - "baseId": "21555|21556|21557|207900|207908|225857|364272|429299|429311|551307|551308|611407|611755", + "upstreamId": "21555|21556|21557|207900|207908|225857|364272|429299|429311|551307|551308|611407|611755", "text": "Autism 17" }, { - "baseId": "21558|21559|21560|21561|71187|71188|71189|227428", + "upstreamId": "21558|21559|21560|21561|71187|71188|71189|227428", "text": "Cornea plana 2" }, { - "baseId": "21562|21563|21564|21565|135426|135427|135428|135429|142434|142435|142436|203472|203473|203474|203475|203476|203477|203478|203481|203485|203486|203488|203490|203491|203492|203493|224877|329015|329019|329020|329033|329035|329036|339028|339042|339044|339045|339049|339050|339053|339054|339055|339061|339066|339076|339077|345037|345045|345054|345061|345063|345064|345067|345069|346381|346382|346385|346387|346390|346391|346399|346400|353445|402121|402165|402168|422177|468353|494104|513137|531696|536941|571243|571246|571582|574506|580260|580351|584421|586651|614440|614441|646141|646142|646143|771607|845551|845552|845553|845554|845555|845556|845557|845558|845559|845560|845561|845562|877850|877851|877852|877853|877854|877855|877856|877857|877858|877859|877860|877861|877862|877863|877864|877865|877866|928359|938003|938004|938005|949995|958152|958153|964484", + "upstreamId": "21562|21563|21564|21565|135426|135427|135428|135429|142434|142435|142436|203472|203473|203474|203475|203476|203477|203478|203481|203485|203486|203488|203490|203491|203492|203493|224877|329015|329019|329020|329033|329035|329036|339028|339042|339044|339045|339049|339050|339053|339054|339055|339061|339066|339076|339077|345037|345045|345054|345061|345063|345064|345067|345069|346381|346382|346385|346387|346390|346391|346399|346400|353445|402121|402165|402168|422177|468353|494104|513137|531696|536941|571243|571246|571582|574506|580260|580351|584421|586651|614440|614441|646141|646142|646143|771607|845551|845552|845553|845554|845555|845556|845557|845558|845559|845560|845561|845562|877850|877851|877852|877853|877854|877855|877856|877857|877858|877859|877860|877861|877862|877863|877864|877865|877866|928359|938003|938004|938005|949995|958152|958153|964484", "text": "Pyridoxal phosphate-responsive seizures" }, { - "baseId": "21566|21567|21568|21569|21572|21573|21580|21589|39304|204424|204641|251054|251061|251063|268855|271227|289676|289677|289681|289691|289697|289699|289708|289709|290445|290446|290447|290448|290449|290457|290469|290477|290479|290480|290481|290482|290484|293524|293534|293535|293536|293537|293549|293550|293557|293558|293559|293560|293564|293565|294092|294093|294094|294095|294096|294099|294103|294107|294112|294113|294122|294127|294128|294131|294132|294133|294134|294143|452004|489133|585757|620762|623592|677313|697986|733957|744043|790371|790372|790373|888497|888498|888499|888500|888501|888502|888503|888504|888505|888506|888507|888508|888509|888510|888511|888512|888513|888514|888515|888516|888517|888518|888519|888520|888521|888522|888523|888524|888525", + "upstreamId": "21566|21567|21568|21569|21572|21573|21580|21589|39304|204424|204641|251054|251061|251063|268855|271227|289676|289677|289681|289691|289697|289699|289708|289709|290445|290446|290447|290448|290449|290457|290469|290477|290479|290480|290481|290482|290484|293524|293534|293535|293536|293537|293549|293550|293557|293558|293559|293560|293564|293565|294092|294093|294094|294095|294096|294099|294103|294107|294112|294113|294122|294127|294128|294131|294132|294133|294134|294143|452004|489133|585757|620762|623592|677313|697986|733957|744043|790371|790372|790373|888497|888498|888499|888500|888501|888502|888503|888504|888505|888506|888507|888508|888509|888510|888511|888512|888513|888514|888515|888516|888517|888518|888519|888520|888521|888522|888523|888524|888525", "text": "Ectrodactyly, ectodermal dysplasia, and cleft lip/palate syndrome 3" }, { - "baseId": "21566|21567|21572|21573|21575|21579|193526|204424|251054|251061|251063|264162|268855|271227|289676|289677|289681|289691|289693|289697|289699|289708|289709|289714|290445|290446|290447|290448|290449|290450|290457|290469|290472|290477|290479|290480|290481|290482|290484|290485|290486|293524|293534|293535|293536|293537|293545|293548|293549|293550|293557|293558|293559|293560|293564|293565|294092|294093|294094|294095|294096|294099|294103|294107|294112|294113|294122|294127|294128|294131|294132|294133|294134|294143|294144|353647|359504|367331|452004|452361|489133|519041|519219|559409|559411|561312|561322|562627|562628|562630|585757|620762|631112|631113|631114|631115|631116|631117|631118|631119|651044|697986|733957|744043|748148|827778|827779|888497|888498|888499|888500|888501|888502|888503|888504|888505|888506|888507|888508|888509|888510|888511|888512|888513|888514|888515|888516|888517|888518|888519|888520|888521|888522|888523|888524|888525|931856", + "upstreamId": "21566|21567|21572|21573|21575|21579|193526|204424|251054|251061|251063|264162|268855|271227|289676|289677|289681|289691|289693|289697|289699|289708|289709|289714|290445|290446|290447|290448|290449|290450|290457|290469|290472|290477|290479|290480|290481|290482|290484|290485|290486|293524|293534|293535|293536|293537|293545|293548|293549|293550|293557|293558|293559|293560|293564|293565|294092|294093|294094|294095|294096|294099|294103|294107|294112|294113|294122|294127|294128|294131|294132|294133|294134|294143|294144|353647|359504|367331|452004|452361|489133|519041|519219|559409|559411|561312|561322|562627|562628|562630|585757|620762|631112|631113|631114|631115|631116|631117|631118|631119|651044|697986|733957|744043|748148|827778|827779|888497|888498|888499|888500|888501|888502|888503|888504|888505|888506|888507|888508|888509|888510|888511|888512|888513|888514|888515|888516|888517|888518|888519|888520|888521|888522|888523|888524|888525|931856", "text": "TP63-Related Spectrum Disorders" }, { - "baseId": "21570|21571|21588|80708", + "upstreamId": "21570|21571|21588|80708", "text": "Split-hand/foot malformation 4" }, { - "baseId": "21572|21581|21582|21583|21584|21590|21592|798526", + "upstreamId": "21572|21581|21582|21583|21584|21590|21592|798526", "text": "Rapp-Hodgkin ectodermal dysplasia syndrome" }, { - "baseId": "21574|21575|21583", + "upstreamId": "21574|21575|21583", "text": "Hay-Wells syndrome of ectodermal dysplasia" }, { - "baseId": "21576|21579|21585|21586|21587|21589|21591|47571|47572|204361", + "upstreamId": "21576|21579|21585|21586|21587|21589|21591|47571|47572|204361", "text": "ADULT syndrome" }, { - "baseId": "21577|21578|918821", + "upstreamId": "21577|21578|918821", "text": "Limb-mammary syndrome" }, { - "baseId": "21586|251054|251061|251063|268855|271227|289676|289677|289681|289691|289697|289699|289708|289709|290445|290446|290447|290448|290449|290457|290469|290477|290479|290480|290481|290482|290484|293524|293534|293535|293536|293537|293549|293550|293557|293558|293559|293560|293564|293565|294092|294093|294094|294095|294096|294099|294103|294107|294112|294113|294122|294127|294128|294131|294132|294133|294134|294143|489133|576317|585757|620762|697986|733957|744043|888497|888498|888499|888500|888501|888502|888503|888504|888505|888506|888507|888508|888509|888510|888511|888512|888513|888514|888515|888516|888517|888518|888519|888520|888521|888522|888523|888524|888525", + "upstreamId": "21586|251054|251061|251063|268855|271227|289676|289677|289681|289691|289697|289699|289708|289709|290445|290446|290447|290448|290449|290457|290469|290477|290479|290480|290481|290482|290484|293524|293534|293535|293536|293537|293549|293550|293557|293558|293559|293560|293564|293565|294092|294093|294094|294095|294096|294099|294103|294107|294112|294113|294122|294127|294128|294131|294132|294133|294134|294143|489133|576317|585757|620762|697986|733957|744043|888497|888498|888499|888500|888501|888502|888503|888504|888505|888506|888507|888508|888509|888510|888511|888512|888513|888514|888515|888516|888517|888518|888519|888520|888521|888522|888523|888524|888525", "text": "Orofacial cleft 8" }, { - "baseId": "21592", + "upstreamId": "21592", "text": "Ankyloblepharon-ectodermal defects, cleft lip/palate" }, { - "baseId": "21593|131887|131888|131889|131890|131895|131896|131898|131899|138985|138986|138987|138989|138990|138991|138992|138993|138994|138995|143131|143132|143133|143134|143135|208505|208506|208507|208508|208509|208510|208511|208512|208513|208514|208515|208516|208517|208518|208519|208521|208522|208523|208524|208525|208526|208529|208529|208530|208531|208532|208534|208535|222762|222763|222764|222765|222766|222767|222768|222769|222770|222771|222772|222773|222774|222775|222777|222778|222779|243083|243084|243085|243086|243087|243088|243089|243090|243091|243092|243094|243095|243096|243097|243098|243099|243100|243101|243102|243103|243104|243105|243106|243107|243108|243109|243110|243111|243112|243113|243114|243116|243117|243118|243119|243120|243121|243122|243123|243124|243125|243126|243127|243128|243129|243129|243130|243131|243132|243133|243134|243135|243137|243138|243139|243140|243142|243143|243144|243145|243146|243147|243149|243150|243151|243152|243153|243154|243155|243156|243157|243158|243159|243160|243161|243162|243163|243164|243165|243166|243167|243168|243169|243170|243171|243172|243173|243174|243175|243177|243178|243179|243180|243181|243182|243184|243185|243186|243187|243188|243189|243190|243191|243191|243192|243193|243194|243195|243196|243197|243198|243199|243200|243201|243202|243203|243204|243207|243208|243209|243210|243211|243212|243213|243214|243215|243216|243217|243218|243220|243221|243222|243223|243224|243225|243226|243227|243228|243228|243229|243230|243231|243232|243233|243234|243235|243236|243237|243238|243239|243240|243241|243242|243243|243244|243245|243246|243247|243248|243249|243250|243251|243251|243252|243253|243254|243255|243256|243257|243258|243259|243260|243261|243262|243263|243264|332432|332439|332444|342586|342599|342603|342611|342618|347982|349279|349281|349283|360358|360500|361041|364229|376117|376127|376143|377072|377073|377085|377249|377264|402810|402836|402839|402847|402851|402861|402865|402865|402867|402870|402872|402876|402878|402881|402888|402891|402893|402894|402897|402898|402899|402905|402907|402909|402912|402914|402915|402916|402917|402920|402921|402922|402923|402923|402925|402929|402931|402933|402935|402936|402939|402941|402942|402943|402950|402951|402956|402958|402965|402966|402970|402971|402976|402978|402980|402981|402987|402989|402991|402992|402995|402998|403001|403005|403006|403008|403010|403014|403015|403017|403019|403020|403022|403024|403025|403027|403029|403032|403033|403037|403038|403039|403040|403041|403044|403045|403048|403050|403052|403053|403055|403056|403058|403060|403061|403064|403067|403070|403071|403078|403079|403080|403081|403082|403083|403085|403088|403091|403092|403093|403095|403096|403097|403100|403101|403105|403106|403108|403109|403110|403111|403113|403115|403116|403118|403119|403122|403125|403125|403126|403126|403127|403129|403346|403349|403352|403355|403356|403357|403359|403361|403366|403367|403371|403373|403375|403382|403383|403386|403389|403393|403395|403399|403400|403401|403403|403404|403408|403416|403418|403419|403422|403423|403424|403428|403429|403430|403440|403441|403442|403445|403448|403448|403451|403452|403453|403457|403459|403460|403461|403462|403463|403465|403469|403471|403472|403473|403474|403475|403478|403479|403480|403482|403483|403486|403487|403492|403494|403495|403500|403508|403510|403512|403516|403517|403520|403521|403522|403524|403528|403529|403532|403536|403538|403539|403541|403542|403545|403546|403547|403548|403549|403552|403555|403556|403558|403559|403562|403563|403564|403569|403573|403575|403576|403577|403578|403580|403581|403582|403584|403588|403591|403595|403601|410423|410423|410425|430125|430126|432387|468234|468243|468247|468253|468258|468260|468268|468273|468277|468280|468282|468284|468289|468307|468309|468311|468312|468314|468316|468318|468324|468327|468329|468330|468331|468334|468336|468339|468343|468346|468348|468350|468352|468355|468357|468360|468363|468364|468366|468367|468371|468376|468381|468382|468387|468391|468392|468400|468401|468417|468417|468418|468421|468425|468428|468437|469063|469104|469107|469118|469124|469125|469127|469129|469132|469134|469136|469136|469138|469148|469152|469155|469160|469162|469177|469178|469181|469182|469185|469188|469191|469192|469194|469202|469205|469208|469209|469213|469214|469218|469220|469222|469223|469233|469236|469242|469248|469249|469255|469257|469258|469261|469266|469268|469270|469275|469281|469282|469283|469289|469290|469292|469294|469296|469298|469308|469309|469312|469448|469517|469518|469522|469523|469529|469535|469537|469541|469545|469551|469554|469558|469558|469559|469560|469566|469570|469571|469573|469573|469577|469580|469581|469585|469586|469589|469590|469591|469594|469597|469598|469600|469606|469607|469608|469609|469622|469623|469625|469630|469631|469634|469635|469640|469641|469645|469649|469653|469655|469659|469660|469666|469668|469671|469672|469673|469682|469683|469688|469689|469698|469702|469702|469703|469704|469978|469980|469982|469985|469995|470002|470008|470013|470019|470023|470027|470028|470038|470040|470042|470048|470057|470059|470061|470082|470094|470096|470103|470111|470112|470121|470124|470126|470127|470131|470135|470147|470152|470158|470162|470164|470169|470173|470177|470184|470192|470194|470196|470199|470202|470206|470207|470210|470211|470213|470219|470220|470231|470232|470236|470239|470242|470243|470258|470269|470273|470279|470281|470283|470284|470286|470293|470302|470317|470320|470323|470324|470327|470336|479412|479413|479418|479423|479424|479426|479436|479438|479448|479452|479453|479456|479457|479460|479461|479462|479463|479464|479476|479479|479479|479481|479482|479488|479492|479493|479495|479496|479496|479497|479498|479499|479501|479502|479504|479504|479505|479508|479510|479512|479526|479527|479528|479529|479531|479533|479534|479535|479537|479539|479541|479542|479544|479548|479550|479552|479559|479560|479561|479562|479564|479568|479572|479575|479577|479583|479584|479586|479589|479591|479596|479599|479603|479605|479610|479612|479616|479619|479620|479622|479623|479628|479629|479639|479641|479642|479643|479644|479645|479647|479648|479649|479650|479653|479655|479659|479660|479664|479666|479667|479668|479673|479674|479676|479677|479678|479681|479682|479685|479687|479690|479692|479704|479707|479710|479711|479722|479723|479725|479728|479737|479743|479751|479752|479763|479774|479775|479779|479782|479785|479791|479795|479805|479825|480187|480188|480190|480198|480200|480201|480202|480203|480204|480205|480207|480208|480209|480211|480214|480216|480217|480218|480220|480221|480231|480234|480239|480240|480242|480245|480246|480252|480253|480255|480258|480260|480261|480262|480266|480267|480270|480271|480275|480278|480279|506475|506690|506699|512374|532446|532458|532459|532461|532464|532474|532479|532487|532488|532490|532495|532497|532499|532500|532502|532504|532505|532506|532508|532510|532511|532512|532516|532521|532523|532524|532527|532529|532530|532534|532536|532537|532538|532539|532540|532544|532548|532550|532552|532554|532555|532556|532557|532558|532559|532560|532561|532562|532563|532565|532566|532568|532570|532571|532572|532573|532574|532575|532576|532577|532578|532579|532582|532583|532584|532585|532586|532587|532588|532591|532593|532594|532596|532597|532598|532599|532600|532601|532602|532603|532604|532605|532608|532609|532610|532611|532613|532614|532617|532618|532619|532620|532621|532622|532624|532626|532627|532628|532630|532631|532633|532634|532635|532636|532637|532638|532640|532642|532643|532644|532647|532651|532652|532655|532656|532820|532903|532906|532919|532921|532923|532929|532941|532950|532953|532956|532959|532964|532966|532974|532976|532978|532981|532982|532983|532989|532995|533002|533008|533010|533015|533017|533021|533023|533038|533038|533046|533047|533052|533065|533067|533076|570260|570374|570386|570387|570395|570397|570401|570406|570414|570416|570418|570427|570430|570431|570435|570436|570442|570444|570450|570453|570454|570458|570460|570464|572020|572073|572080|572081|572082|572085|572089|572090|572094|572095|572099|572106|572109|572110|572112|572115|572119|572121|572123|572136|572136|572138|572140|572141|572143|572144|572152|572153|572158|572159|572161|572162|572163|572166|572169|572170|572752|572758|572760|572763|572770|572778|572779|572780|572782|572785|572791|572792|572796|572798|572801|572802|572803|572809|572812|572816|572819|572821|572823|572828|572833|572836|572838|572839|572840|572841|572842|572843|572848|572849|574783|574822|574824|574826|574828|574829|574830|574831|574832|574833|574834|574835|574836|574837|574838|574839|574840|574841|574842|574843|574844|574845|574846|574847|574848|574849|574850|574851|574852|574853|574854|574855|574856|574857|609182|611429|647483|647484|647485|647486|647487|647488|647489|647490|647491|647492|647493|647494|647495|647496|647497|647498|647499|647500|647501|647502|647503|647504|647505|647506|647507|647508|647509|647510|647511|647512|647513|647514|647515|647516|647517|647518|647519|647520|647521|647522|647523|647524|647525|647526|647527|647528|647529|647530|647531|647532|647533|647534|647535|647536|647537|647538|647539|647540|647541|647542|647543|647544|647545|647546|647547|647548|647549|647550|647551|647552|647553|647554|647555|647556|647557|647558|647559|647560|647561|647562|647563|647564|647565|647566|647567|647568|647569|647570|647571|647572|647573|647574|647575|647576|647577|647578|647579|647580|647581|647582|647583|647584|647585|647586|647587|647588|647589|647590|647591|647592|647593|647594|647595|647596|647597|647598|647599|647600|647601|647602|647603|647604|647605|647606|647607|647608|647609|647610|647611|647612|652982|652987|652988|653132|653135|653136|653137|653418|653473|684773|684774|685451|685452|688950|688951|688952|688953|690200|690201|694310|694311|694312|694313|694314|694315|694317|694319|694320|694321|695801|695803|695804|695805|695806|695807|704735|727868|741516|741517|741521|741522|741523|741524|741525|741526|741527|745040|745230|756635|756637|756640|756642|756643|756644|756646|756650|756651|756652|756655|756656|756660|760679|760681|760682|760736|760767|760774|760783|772306|772307|772309|772313|772314|772316|772317|772321|772325|772327|772330|772334|772335|772336|772339|772345|772346|772348|772349|772352|776510|776527|776537|776539|778364|778491|785999|786000|786001|786003|786005|786006|786008|786013|786015|786019|786020|786021|786022|786024|786025|786030|786031|788022|788024|788182|791885|791886|801929|805069|814594|814597|814601|814610|814627|814628|814629|814638|814648|814650|814665|814674|814681|814693|814695|814697|814698|814710|814711|814743|814753|814755|814756|814761|814769|814775|814779|814780|814782|814792|814794|814803|814805|814808|814811|814815|814818|814819|814820|814830|814831|814835|815720|815723|815730|815731|821210|821211|821212|821213|847092|847093|847094|847095|847096|847097|847098|847099|847100|847101|847102|847103|847104|847105|847106|847107|847108|847109|847110|847111|847112|847113|847114|847115|847116|847117|847118|847119|847120|847121|847122|847123|847124|847125|847126|847127|847128|847129|847130|847131|847132|847133|847134|847135|847136|847137|847138|847139|847140|847141|847142|847143|847144|847145|847146|847147|847148|847149|847150|847151|847152|847153|847154|847155|847156|847157|847158|847159|847160|847161|847162|847163|847164|847165|847166|847167|847168|847169|847170|847171|847172|847173|847174|847175|847176|847177|847178|847179|847180|847181|847182|847183|847184|847185|847186|847187|847188|847189|847190|847191|847192|847193|847194|847195|847196|851787|851789|851791|852301|852306|852836|852838|852839|852840|852842|852945|852946|852947|861653|920394|920395|920396|928795|928796|928797|928798|928799|928800|928801|928802|928803|928804|928805|928806|928807|928808|928809|928810|928811|928812|928813|928814|928815|928816|928817|938523|938524|938525|938526|938527|938528|938529|938530|938531|938532|938533|938534|938535|938536|938537|938538|938539|938540|938541|938542|938543|938544|938545|938546|938547|938548|938549|938550|938551|938552|938553|938554|938555|938556|940463|940464|940465|940466|940467|941217|941218|941219|941220|941221|950614|950615|950616|950617|950618|950619|950620|950621|950622|950623|950624|950625|950626|950627|950628|950629|950630|950631|950632|950633|950634|950635|950636|950637|950638|950639|950640|950641|950642|950643|958512|958513|958514|958515|958516|958517|958518|958519|958520|958521|958522|958523|958524|958525|960275|960276|960277|960278|960279|960910|960911", + "upstreamId": "21593|131887|131888|131889|131890|131895|131896|131898|131899|138985|138986|138987|138989|138990|138991|138992|138993|138994|138995|143131|143132|143133|143134|143135|208505|208506|208507|208508|208509|208510|208511|208512|208513|208514|208515|208516|208517|208518|208519|208521|208522|208523|208524|208525|208526|208529|208529|208530|208531|208532|208534|208535|222762|222763|222764|222765|222766|222767|222768|222769|222770|222771|222772|222773|222774|222775|222777|222778|222779|243083|243084|243085|243086|243087|243088|243089|243090|243091|243092|243094|243095|243096|243097|243098|243099|243100|243101|243102|243103|243104|243105|243106|243107|243108|243109|243110|243111|243112|243113|243114|243116|243117|243118|243119|243120|243121|243122|243123|243124|243125|243126|243127|243128|243129|243129|243130|243131|243132|243133|243134|243135|243137|243138|243139|243140|243142|243143|243144|243145|243146|243147|243149|243150|243151|243152|243153|243154|243155|243156|243157|243158|243159|243160|243161|243162|243163|243164|243165|243166|243167|243168|243169|243170|243171|243172|243173|243174|243175|243177|243178|243179|243180|243181|243182|243184|243185|243186|243187|243188|243189|243190|243191|243191|243192|243193|243194|243195|243196|243197|243198|243199|243200|243201|243202|243203|243204|243207|243208|243209|243210|243211|243212|243213|243214|243215|243216|243217|243218|243220|243221|243222|243223|243224|243225|243226|243227|243228|243228|243229|243230|243231|243232|243233|243234|243235|243236|243237|243238|243239|243240|243241|243242|243243|243244|243245|243246|243247|243248|243249|243250|243251|243251|243252|243253|243254|243255|243256|243257|243258|243259|243260|243261|243262|243263|243264|332432|332439|332444|342586|342599|342603|342611|342618|347982|349279|349281|349283|360358|360500|361041|364229|376117|376127|376143|377072|377073|377085|377249|377264|402810|402836|402839|402847|402851|402861|402865|402865|402867|402870|402872|402876|402878|402881|402888|402891|402893|402894|402897|402898|402899|402905|402907|402909|402912|402914|402915|402916|402917|402920|402921|402922|402923|402923|402925|402929|402931|402933|402935|402936|402939|402941|402942|402943|402950|402951|402956|402958|402965|402966|402970|402971|402976|402978|402980|402981|402987|402989|402991|402992|402995|402998|403001|403005|403006|403008|403010|403014|403015|403017|403019|403020|403022|403024|403025|403027|403029|403032|403033|403037|403038|403039|403040|403041|403044|403045|403048|403050|403052|403053|403055|403056|403058|403060|403061|403064|403067|403070|403071|403078|403079|403080|403081|403082|403083|403085|403088|403091|403092|403093|403095|403096|403097|403100|403101|403105|403106|403108|403109|403110|403111|403113|403115|403116|403118|403119|403122|403125|403125|403126|403126|403127|403129|403346|403349|403352|403355|403356|403357|403359|403361|403366|403367|403371|403373|403375|403382|403383|403386|403389|403393|403395|403399|403400|403401|403403|403404|403408|403416|403418|403419|403422|403423|403424|403428|403429|403430|403440|403441|403442|403445|403448|403448|403451|403452|403453|403457|403459|403460|403461|403462|403463|403465|403469|403471|403472|403473|403474|403475|403478|403479|403480|403482|403483|403486|403487|403492|403494|403495|403500|403508|403510|403512|403516|403517|403520|403521|403522|403524|403528|403529|403532|403536|403538|403539|403541|403542|403545|403546|403547|403548|403549|403552|403555|403556|403558|403559|403562|403563|403564|403569|403573|403575|403576|403577|403578|403580|403581|403582|403584|403588|403591|403595|403601|410423|410423|410425|430125|430126|432387|468234|468243|468247|468253|468258|468260|468268|468273|468277|468280|468282|468284|468289|468307|468309|468311|468312|468314|468316|468318|468324|468327|468329|468330|468331|468334|468336|468339|468343|468346|468348|468350|468352|468355|468357|468360|468363|468364|468366|468367|468371|468376|468381|468382|468387|468391|468392|468400|468401|468417|468417|468418|468421|468425|468428|468437|469063|469104|469107|469118|469124|469125|469127|469129|469132|469134|469136|469136|469138|469148|469152|469155|469160|469162|469177|469178|469181|469182|469185|469188|469191|469192|469194|469202|469205|469208|469209|469213|469214|469218|469220|469222|469223|469233|469236|469242|469248|469249|469255|469257|469258|469261|469266|469268|469270|469275|469281|469282|469283|469289|469290|469292|469294|469296|469298|469308|469309|469312|469448|469517|469518|469522|469523|469529|469535|469537|469541|469545|469551|469554|469558|469558|469559|469560|469566|469570|469571|469573|469573|469577|469580|469581|469585|469586|469589|469590|469591|469594|469597|469598|469600|469606|469607|469608|469609|469622|469623|469625|469630|469631|469634|469635|469640|469641|469645|469649|469653|469655|469659|469660|469666|469668|469671|469672|469673|469682|469683|469688|469689|469698|469702|469702|469703|469704|469978|469980|469982|469985|469995|470002|470008|470013|470019|470023|470027|470028|470038|470040|470042|470048|470057|470059|470061|470082|470094|470096|470103|470111|470112|470121|470124|470126|470127|470131|470135|470147|470152|470158|470162|470164|470169|470173|470177|470184|470192|470194|470196|470199|470202|470206|470207|470210|470211|470213|470219|470220|470231|470232|470236|470239|470242|470243|470258|470269|470273|470279|470281|470283|470284|470286|470293|470302|470317|470320|470323|470324|470327|470336|479412|479413|479418|479423|479424|479426|479436|479438|479448|479452|479453|479456|479457|479460|479461|479462|479463|479464|479476|479479|479479|479481|479482|479488|479492|479493|479495|479496|479496|479497|479498|479499|479501|479502|479504|479504|479505|479508|479510|479512|479526|479527|479528|479529|479531|479533|479534|479535|479537|479539|479541|479542|479544|479548|479550|479552|479559|479560|479561|479562|479564|479568|479572|479575|479577|479583|479584|479586|479589|479591|479596|479599|479603|479605|479610|479612|479616|479619|479620|479622|479623|479628|479629|479639|479641|479642|479643|479644|479645|479647|479648|479649|479650|479653|479655|479659|479660|479664|479666|479667|479668|479673|479674|479676|479677|479678|479681|479682|479685|479687|479690|479692|479704|479707|479710|479711|479722|479723|479725|479728|479737|479743|479751|479752|479763|479774|479775|479779|479782|479785|479791|479795|479805|479825|480187|480188|480190|480198|480200|480201|480202|480203|480204|480205|480207|480208|480209|480211|480214|480216|480217|480218|480220|480221|480231|480234|480239|480240|480242|480245|480246|480252|480253|480255|480258|480260|480261|480262|480266|480267|480270|480271|480275|480278|480279|506475|506690|506699|512374|532446|532458|532459|532461|532464|532474|532479|532487|532488|532490|532495|532497|532499|532500|532502|532504|532505|532506|532508|532510|532511|532512|532516|532521|532523|532524|532527|532529|532530|532534|532536|532537|532538|532539|532540|532544|532548|532550|532552|532554|532555|532556|532557|532558|532559|532560|532561|532562|532563|532565|532566|532568|532570|532571|532572|532573|532574|532575|532576|532577|532578|532579|532582|532583|532584|532585|532586|532587|532588|532591|532593|532594|532596|532597|532598|532599|532600|532601|532602|532603|532604|532605|532608|532609|532610|532611|532613|532614|532617|532618|532619|532620|532621|532622|532624|532626|532627|532628|532630|532631|532633|532634|532635|532636|532637|532638|532640|532642|532643|532644|532647|532651|532652|532655|532656|532820|532903|532906|532919|532921|532923|532929|532941|532950|532953|532956|532959|532964|532966|532974|532976|532978|532981|532982|532983|532989|532995|533002|533008|533010|533015|533017|533021|533023|533038|533038|533046|533047|533052|533065|533067|533076|570260|570374|570386|570387|570395|570397|570401|570406|570414|570416|570418|570427|570430|570431|570435|570436|570442|570444|570450|570453|570454|570458|570460|570464|572020|572073|572080|572081|572082|572085|572089|572090|572094|572095|572099|572106|572109|572110|572112|572115|572119|572121|572123|572136|572136|572138|572140|572141|572143|572144|572152|572153|572158|572159|572161|572162|572163|572166|572169|572170|572752|572758|572760|572763|572770|572778|572779|572780|572782|572785|572791|572792|572796|572798|572801|572802|572803|572809|572812|572816|572819|572821|572823|572828|572833|572836|572838|572839|572840|572841|572842|572843|572848|572849|574783|574822|574824|574826|574828|574829|574830|574831|574832|574833|574834|574835|574836|574837|574838|574839|574840|574841|574842|574843|574844|574845|574846|574847|574848|574849|574850|574851|574852|574853|574854|574855|574856|574857|609182|611429|647483|647484|647485|647486|647487|647488|647489|647490|647491|647492|647493|647494|647495|647496|647497|647498|647499|647500|647501|647502|647503|647504|647505|647506|647507|647508|647509|647510|647511|647512|647513|647514|647515|647516|647517|647518|647519|647520|647521|647522|647523|647524|647525|647526|647527|647528|647529|647530|647531|647532|647533|647534|647535|647536|647537|647538|647539|647540|647541|647542|647543|647544|647545|647546|647547|647548|647549|647550|647551|647552|647553|647554|647555|647556|647557|647558|647559|647560|647561|647562|647563|647564|647565|647566|647567|647568|647569|647570|647571|647572|647573|647574|647575|647576|647577|647578|647579|647580|647581|647582|647583|647584|647585|647586|647587|647588|647589|647590|647591|647592|647593|647594|647595|647596|647597|647598|647599|647600|647601|647602|647603|647604|647605|647606|647607|647608|647609|647610|647611|647612|652982|652987|652988|653132|653135|653136|653137|653418|653473|684773|684774|685451|685452|688950|688951|688952|688953|690200|690201|694310|694311|694312|694313|694314|694315|694317|694319|694320|694321|695801|695803|695804|695805|695806|695807|704735|727868|741516|741517|741521|741522|741523|741524|741525|741526|741527|745040|745230|756635|756637|756640|756642|756643|756644|756646|756650|756651|756652|756655|756656|756660|760679|760681|760682|760736|760767|760774|760783|772306|772307|772309|772313|772314|772316|772317|772321|772325|772327|772330|772334|772335|772336|772339|772345|772346|772348|772349|772352|776510|776527|776537|776539|778364|778491|785999|786000|786001|786003|786005|786006|786008|786013|786015|786019|786020|786021|786022|786024|786025|786030|786031|788022|788024|788182|791885|791886|801929|805069|814594|814597|814601|814610|814627|814628|814629|814638|814648|814650|814665|814674|814681|814693|814695|814697|814698|814710|814711|814743|814753|814755|814756|814761|814769|814775|814779|814780|814782|814792|814794|814803|814805|814808|814811|814815|814818|814819|814820|814830|814831|814835|815720|815723|815730|815731|821210|821211|821212|821213|847092|847093|847094|847095|847096|847097|847098|847099|847100|847101|847102|847103|847104|847105|847106|847107|847108|847109|847110|847111|847112|847113|847114|847115|847116|847117|847118|847119|847120|847121|847122|847123|847124|847125|847126|847127|847128|847129|847130|847131|847132|847133|847134|847135|847136|847137|847138|847139|847140|847141|847142|847143|847144|847145|847146|847147|847148|847149|847150|847151|847152|847153|847154|847155|847156|847157|847158|847159|847160|847161|847162|847163|847164|847165|847166|847167|847168|847169|847170|847171|847172|847173|847174|847175|847176|847177|847178|847179|847180|847181|847182|847183|847184|847185|847186|847187|847188|847189|847190|847191|847192|847193|847194|847195|847196|851787|851789|851791|852301|852306|852836|852838|852839|852840|852842|852945|852946|852947|861653|920394|920395|920396|928795|928796|928797|928798|928799|928800|928801|928802|928803|928804|928805|928806|928807|928808|928809|928810|928811|928812|928813|928814|928815|928816|928817|938523|938524|938525|938526|938527|938528|938529|938530|938531|938532|938533|938534|938535|938536|938537|938538|938539|938540|938541|938542|938543|938544|938545|938546|938547|938548|938549|938550|938551|938552|938553|938554|938555|938556|940463|940464|940465|940466|940467|941217|941218|941219|941220|941221|950614|950615|950616|950617|950618|950619|950620|950621|950622|950623|950624|950625|950626|950627|950628|950629|950630|950631|950632|950633|950634|950635|950636|950637|950638|950639|950640|950641|950642|950643|958512|958513|958514|958515|958516|958517|958518|958519|958520|958521|958522|958523|958524|958525|960275|960276|960277|960278|960279|960910|960911", "text": "Rhabdoid tumor predisposition syndrome 2" }, { - "baseId": "21594|21595|21597|23420|38568|49383|215305|268158|294669|294674|294679|296235|299981|299982|434595|434595|439689|454054|632528|632529|632530|632531|691640|698695|829538|892543", + "upstreamId": "21594|21595|21597|23420|38568|49383|215305|268158|294669|294674|294679|296235|299981|299982|434595|434595|439689|454054|632528|632529|632530|632531|691640|698695|829538|892543", "text": "Brachydactyly type A2" }, { - "baseId": "21596|213897|213898|213899|215305|268158|294669|294674|294679|296235|299981|299982|434595|439689|454054|632528|632529|632530|632531|677290|691640|698695|829538|892543", + "upstreamId": "21596|213897|213898|213899|215305|268158|294669|294674|294679|296235|299981|299982|434595|439689|454054|632528|632529|632530|632531|677290|691640|698695|829538|892543", "text": "Acromesomelic dysplasia, Demirhan type" }, { - "baseId": "21598|21598|21599|21599|21600|21601|21602|21603|21605|21607|21608|21609|21610|21610|21611|21612|21613|21615|21616|21617|21618|21618|21619|21620|39293|39294|39295|39295|152837|152838|191634|205179|260084|260085|260086|260087|260087|260088|265406|265507|275332|275332|360154|360156|360232|374005|374017|374701|374707|375075|375082|375085|377100|377106|377108|377116|377120|390275|409463|409464|409466|415471|415472|422075|426774|426775|426776|426777|426778|426779|426780|426781|426782|426783|426784|426785|426786|426787|426788|426789|426790|426791|426792|426793|426794|426795|426796|426797|426798|426799|426800|426801|426802|426803|426804|426805|426806|426807|426808|426809|426810|426811|426812|426813|426814|426815|426816|426817|426818|426819|426820|426821|426822|426823|426824|426825|426826|426827|426828|426829|426830|426831|426832|426833|426834|426835|426836|426837|426838|426839|426840|426841|426842|426843|426844|426845|426846|426847|426848|426849|426851|426852|426853|426854|426855|426856|426857|426858|426859|426860|426861|426862|426863|426864|426865|426866|426867|426868|426869|426870|426871|426872|426873|426874|426875|426876|426877|426878|426879|426880|426881|426882|426883|426884|426885|426886|426887|426888|426889|426890|426891|426892|426893|426895|426896|426897|426898|426899|426900|426901|426902|426903|426904|426905|426907|426908|426909|426910|426911|426912|426913|426914|426915|426916|426917|426918|426919|426920|426921|426922|426923|426924|426925|426926|426927|426928|426929|426930|426931|426932|426933|426934|426935|426936|426937|426938|426939|426940|426941|426942|426943|426944|426945|426946|426947|426948|426949|426950|426951|426952|426953|426954|426955|426956|426957|426958|426959|426960|426961|426962|426963|426964|426965|426966|426967|426968|426969|426970|426971|426972|426973|426974|426975|426977|426978|426979|426980|426981|426982|426983|426984|426985|426986|426987|426988|426989|426990|426991|426992|426993|426994|426995|426996|426997|426998|426999|427000|427001|427002|427003|427004|427005|427006|427007|427008|427009|427010|427011|427012|427013|427014|427015|427016|427017|427018|427019|427020|427021|427022|427023|427024|427025|427026|427027|427028|427029|427030|427031|427032|427033|427034|427035|427036|427037|427038|427039|427040|427041|427042|427043|427044|427045|427046|427047|427048|427049|427050|427051|427052|427053|427054|427055|427056|427057|427058|427059|427060|427061|427062|427063|427064|427065|427066|427067|427068|427069|427070|427071|427072|427073|427074|427075|427076|427077|427078|427079|427080|427081|427082|427083|427085|427087|427088|427089|427090|427091|427092|427093|427094|427095|427096|427097|427098|427099|437673|569572|590735|626255|791526|791527|800599|800600|861061", + "upstreamId": "21598|21598|21599|21599|21600|21601|21602|21603|21605|21607|21608|21609|21610|21610|21611|21612|21613|21615|21616|21617|21618|21618|21619|21620|39293|39294|39295|39295|152837|152838|191634|205179|260084|260085|260086|260087|260087|260088|265406|265507|275332|275332|360154|360156|360232|374005|374017|374701|374707|375075|375082|375085|377100|377106|377108|377116|377120|390275|409463|409464|409466|415471|415472|422075|426774|426775|426776|426777|426778|426779|426780|426781|426782|426783|426784|426785|426786|426787|426788|426789|426790|426791|426792|426793|426794|426795|426796|426797|426798|426799|426800|426801|426802|426803|426804|426805|426806|426807|426808|426809|426810|426811|426812|426813|426814|426815|426816|426817|426818|426819|426820|426821|426822|426823|426824|426825|426826|426827|426828|426829|426830|426831|426832|426833|426834|426835|426836|426837|426838|426839|426840|426841|426842|426843|426844|426845|426846|426847|426848|426849|426851|426852|426853|426854|426855|426856|426857|426858|426859|426860|426861|426862|426863|426864|426865|426866|426867|426868|426869|426870|426871|426872|426873|426874|426875|426876|426877|426878|426879|426880|426881|426882|426883|426884|426885|426886|426887|426888|426889|426890|426891|426892|426893|426895|426896|426897|426898|426899|426900|426901|426902|426903|426904|426905|426907|426908|426909|426910|426911|426912|426913|426914|426915|426916|426917|426918|426919|426920|426921|426922|426923|426924|426925|426926|426927|426928|426929|426930|426931|426932|426933|426934|426935|426936|426937|426938|426939|426940|426941|426942|426943|426944|426945|426946|426947|426948|426949|426950|426951|426952|426953|426954|426955|426956|426957|426958|426959|426960|426961|426962|426963|426964|426965|426966|426967|426968|426969|426970|426971|426972|426973|426974|426975|426977|426978|426979|426980|426981|426982|426983|426984|426985|426986|426987|426988|426989|426990|426991|426992|426993|426994|426995|426996|426997|426998|426999|427000|427001|427002|427003|427004|427005|427006|427007|427008|427009|427010|427011|427012|427013|427014|427015|427016|427017|427018|427019|427020|427021|427022|427023|427024|427025|427026|427027|427028|427029|427030|427031|427032|427033|427034|427035|427036|427037|427038|427039|427040|427041|427042|427043|427044|427045|427046|427047|427048|427049|427050|427051|427052|427053|427054|427055|427056|427057|427058|427059|427060|427061|427062|427063|427064|427065|427066|427067|427068|427069|427070|427071|427072|427073|427074|427075|427076|427077|427078|427079|427080|427081|427082|427083|427085|427087|427088|427089|427090|427091|427092|427093|427094|427095|427096|427097|427098|427099|437673|569572|590735|626255|791526|791527|800599|800600|861061", "text": "Pseudoxanthoma elasticum" }, { - "baseId": "21598|21598|21599|21599|21603|21610|21613|21618|39293|39294|39295|39296|260087|275332|426970|427040|858595|919611|919612", + "upstreamId": "21598|21598|21599|21599|21603|21610|21613|21618|39293|39294|39295|39296|260087|275332|426970|427040|858595|919611|919612", "text": "Generalized arterial calcification of infancy 2" }, { - "baseId": "21598", + "upstreamId": "21598", "text": "Papule" }, { - "baseId": "21598|21599|21610|21618|39295|260087|275332|426954", + "upstreamId": "21598|21599|21610|21618|39295|260087|275332|426954", "text": "Pseudoxanthoma elasticum, forme fruste" }, { - "baseId": "21622|21623|250955|288822|288826|288836|288838|288839|288850|289598|289599|289602|289603|292587|292588|292590|292591|292593|292799|292800|292801|292802|292806|292811|452207|452324|620106|630957|630958|759103|827566|888018|888019|888020|888021|888022|888023|888024|888025|888026|888027|888028|891572", + "upstreamId": "21622|21623|250955|288822|288826|288836|288838|288839|288850|289598|289599|289602|289603|292587|292588|292590|292591|292593|292799|292800|292801|292802|292806|292811|452207|452324|620106|630957|630958|759103|827566|888018|888019|888020|888021|888022|888023|888024|888025|888026|888027|888028|891572", "text": "Cataract 12, multiple types" }, { - "baseId": "21624", + "upstreamId": "21624", "text": "Snowflake vitreoretinal degeneration" }, { - "baseId": "21625|21626|21627|71026|71027|71028|71029|71030|71031|71032|281844|281846|281847|281851|281852|281858|281859|281860|281866|281867|281872|281877|281878|281882|281883|281884|281888|281889|282500|282503|282506|282507|282508|282509|282510|282512|282513|282514|282521|282524|282525|284144|284145|284150|284151|284152|284154|284157|284158|284161|284162|284165|284166|284168|284181|284187|284357|284362|284368|284372|284373|284374|284375|284376|284379|284380|284384|284388|284389|284428|284435|620031|719256|719257|719258|732769|881066|881067|881068|881069|881070|881071|881072|881073|881074|881075|881076|881077|881078|881079|881080|881081|881082|881083|881084|881085|881086|881087|881088|881089|881090|881091|881092|881093|881094|881095|881096|881097|881098|881099|881100|881101|881102|881103|881104|881105|882797|882798|882799|882800|882801", + "upstreamId": "21625|21626|21627|71026|71027|71028|71029|71030|71031|71032|281844|281846|281847|281851|281852|281858|281859|281860|281866|281867|281872|281877|281878|281882|281883|281884|281888|281889|282500|282503|282506|282507|282508|282509|282510|282512|282513|282514|282521|282524|282525|284144|284145|284150|284151|284152|284154|284157|284158|284161|284162|284165|284166|284168|284181|284187|284357|284362|284368|284372|284373|284374|284375|284376|284379|284380|284384|284388|284389|284428|284435|620031|719256|719257|719258|732769|881066|881067|881068|881069|881070|881071|881072|881073|881074|881075|881076|881077|881078|881079|881080|881081|881082|881083|881084|881085|881086|881087|881088|881089|881090|881091|881092|881093|881094|881095|881096|881097|881098|881099|881100|881101|881102|881103|881104|881105|882797|882798|882799|882800|882801", "text": "Congenital lactase deficiency" }, { - "baseId": "21628|21629|21630|21631|21632|21633|21635|22310|190825|191377|191546|191667|191668|192005|192911|193125|194380|237083|250355|250356|250358|250361|250362|250363|250364|250366|250368|250369|250370|250371|266117|268530|268784|268874|268874|268960|270804|270936|272709|272792|272963|273360|273775|274050|274211|274318|274318|275088|275488|275527|282606|282611|282620|282625|282628|283360|283362|283363|283364|283365|283382|283385|283387|283407|284894|284906|284914|284915|284916|285408|285410|285412|285414|285416|285425|285432|285442|365697|365952|365959|366177|404753|405418|427939|489030|489226|491881|493332|494028|499135|499173|578392|585693|585991|586447|587291|587589|612260|614129|623130|707836|732908|732909|743837|762388|762393|762400|780940|780941|787109|790126|792722|851356|881406|881407|881408|881409|881410|881411|881412|881413|881414|881415|881416|881417|881418|881419|881420|881421|881422|881423|881424|881425|881426|881427|881428|881429|881430|882827|882828|882829|882830|977634|977635|977636|977637|977638|977639|977640|977641", + "upstreamId": "21628|21629|21630|21631|21632|21633|21635|22310|190825|191377|191546|191667|191668|192005|192911|193125|194380|237083|250355|250356|250358|250361|250362|250363|250364|250366|250368|250369|250370|250371|266117|268530|268784|268874|268874|268960|270804|270936|272709|272792|272963|273360|273775|274050|274211|274318|274318|275088|275488|275527|282606|282611|282620|282625|282628|283360|283362|283363|283364|283365|283382|283385|283387|283407|284894|284906|284914|284915|284916|285408|285410|285412|285414|285416|285425|285432|285442|365697|365952|365959|366177|404753|405418|427939|489030|489226|491881|493332|494028|499135|499173|578392|585693|585991|586447|587291|587589|612260|614129|623130|707836|732908|732909|743837|762388|762393|762400|780940|780941|787109|790126|792722|851356|881406|881407|881408|881409|881410|881411|881412|881413|881414|881415|881416|881417|881418|881419|881420|881421|881422|881423|881424|881425|881426|881427|881428|881429|881430|882827|882828|882829|882830|977634|977635|977636|977637|977638|977639|977640|977641", "text": "Progressive familial intrahepatic cholestasis 2" }, { - "baseId": "21629|21634|268874|270936|270936|272792|274318|404753|513515", + "upstreamId": "21629|21634|268874|270936|270936|272792|274318|404753|513515", "text": "Benign recurrent intrahepatic cholestasis type 2" }, { - "baseId": "21629|284897|284910|285433|331904|331926|331942|342158|347528|347530|347531|348905|348908|915059", + "upstreamId": "21629|284897|284910|285433|331904|331926|331942|342158|347528|347530|347531|348905|348908|915059", "text": "Progressive familial intrahepatic cholestasis" }, { - "baseId": "21629|28726|28727|28728|28729|28730|28732|28735|28736|191497|192005|192083|193015|193434|195243|252953|252954|252955|252956|252957|252958|252959|265375|265376|267188|268874|274318|275489|275515|303476|303483|303485|303486|306890|306891|306901|306903|306906|311786|311788|311789|311817|311825|311827|311828|361407|361407|369290|369987|369991|371396|493148|578462|584498|585376|586619|587741|587966|589154|589239|608808|800992|800993|800994|801089|801090|801091|801092|801093|801094|801095|801096|801097|801098|801099|801100|801101|801232|801244|801245|801246|898447|898448|898449|898450|898451|898452|898453|898454|898455|898456|898457|898458|898459|898460|898461|898462|898463|898464|898465|898466|898467|900408|900409|919117", + "upstreamId": "21629|28726|28727|28728|28729|28730|28732|28735|28736|191497|192005|192083|193015|193434|195243|252953|252954|252955|252956|252957|252958|252959|265375|265376|267188|268874|274318|275489|275515|303476|303483|303485|303486|306890|306891|306901|306903|306906|311786|311788|311789|311817|311825|311827|311828|361407|361407|369290|369987|369991|371396|493148|578462|584498|585376|586619|587741|587966|589154|589239|608808|800992|800993|800994|801089|801090|801091|801092|801093|801094|801095|801096|801097|801098|801099|801100|801101|801232|801244|801245|801246|898447|898448|898449|898450|898451|898452|898453|898454|898455|898456|898457|898458|898459|898460|898461|898462|898463|898464|898465|898466|898467|900408|900409|919117", "text": "Cholestasis, intrahepatic, of pregnancy 3" }, { - "baseId": "21636|21637|21638|21639|551989", + "upstreamId": "21636|21637|21638|21639|551989", "text": "Bare lymphocyte syndrome, type II, complementation group B" }, { - "baseId": "21638|21639|22687|91922|108728|108729|108730|108732|108745|204413|247161|276399|276400|276401|276402|276404|276405|276407|276413|276417|276626|276632|276633|276647|276649|277138|277140|277149|277158|277159|277160|277162|277164|277238|277240|277241|277242|277244|277245|277265|277280|277281|277282|319465|319468|319471|319472|319476|319478|319479|319480|319493|319494|319495|323938|323940|323944|323947|323962|323965|323967|323968|323975|323977|323978|323979|323983|323987|323988|323992|323993|323996|323999|324005|324009|324016|324017|324020|324021|324023|324024|324025|324033|328021|328023|328029|328035|328036|328045|332938|332940|332945|332953|332954|332961|333628|333631|333632|333636|333638|333640|333644|333645|333647|333648|333650|333653|333655|333656|334344|334349|334355|334356|334366|336061|336062|336063|336064|336065|336067|336079|340381|340382|340384|340385|340389|340390|340393|340394|340397|340398|340400|340405|340409|340411|340418|340421|340423|340424|340427|340435|340436|340437|341770|341771|341776|341778|341781|341783|341784|341786|341793|341799|341801|341807|341808|341814|341815|343087|343090|343100|343102|348445|348455|348456|348457|348464|348465|349586|349587|349589|390078|409437|447095|447101|447200|447202|447280|463271|463626|463850|463851|464857|464862|464863|465467|465471|465569|465570|465583|465585|492701|515121|515178|527724|527757|527760|529258|529260|529262|529264|529293|529297|529299|529302|529303|529306|529592|529594|529871|529873|529876|529884|529886|529893|532793|532802|532869|533238|533239|533242|533246|556594|556631|556633|556635|556637|556925|558110|566117|567559|567561|567566|568511|568513|568525|568537|568544|569439|569444|569444|569448|569452|569457|569839|569846|569848|569849|569851|572306|572307|572487|572993|573667|573672|573674|573678|573680|573681|574921|574922|574923|590073|614408|614409|619952|620631|624469|624657|624817|626805|626806|626807|626808|626809|626810|626811|626812|626813|626814|626815|626816|641931|641932|641933|641934|641935|641936|641937|641938|643765|643766|643767|643768|643769|643770|643771|643772|643773|643774|643775|643776|643777|643778|643779|643780|643781|643782|643783|643784|643785|643786|643787|643788|643789|643790|643791|643792|643793|643794|643795|643796|643797|643798|643799|643800|643801|643802|643803|643804|647860|647861|647862|647863|647864|647865|647866|647867|647868|650657|652506|653023|653157|654785|677296|714712|714713|714714|718202|718203|718204|726390|726391|726392|726393|726394|729919|731716|731717|731718|739044|739921|739922|739923|739924|739925|739926|739927|739928|741737|744881|745681|754832|754833|754834|754835|754836|754837|754839|754841|754842|754843|760438|761191|761192|769549|770470|770471|770472|770473|770475|770476|770477|770480|770481|770482|770483|770484|770485|770486|770487|772538|772540|772541|776459|778162|779837|785089|785091|785092|785094|785097|785098|785104|785105|785106|785108|788313|788925|789386|816330|820760|822701|822702|822703|822704|822705|822706|822707|822708|822709|822710|822711|822712|822713|822714|822715|840879|840880|840881|840882|840883|840884|840885|842948|842949|842950|842951|842952|842953|842954|842955|842956|842957|842958|842959|842960|842961|842962|842963|842964|842965|842966|842967|842968|842969|842970|847460|847461|847462|847463|847464|847465|847466|847467|852328|852792|862259|862260|862261|862262|862263|862264|862265|862266|862267|862268|862269|862270|862271|862272|862273|862274|864978|864979|864980|871166|871167|871168|871169|871170|871171|871172|871173|871174|871175|871176|871177|871178|871179|874563|874564|874565|874566|874567|874568|874569|874570|874571|874572|874573|874574|874575|874576|874577|874578|874579|874580|874581|874582|874583|874584|874585|874586|874587|874588|874589|874590|874591|874592|874593|874594|874595|874596|874597|874598|874599|874600|874601|874602|876605|876606|876607|876608|876609|880205|880206|880207|880208|880209|880210|880211|921628|921629|921630|926912|926913|926914|926915|926916|926917|927519|927520|927521|927522|927523|927524|927525|927526|927527|927528|928903|928904|928905|930025|930026|930027|930028|930029|930030|930031|936445|937162|937163|937164|937165|937166|937167|937168|937169|937170|937171|937172|937173|937174|937175|937176|940339|941105|941443|941444|941445|941446|941447|949124|949125|949126|949127|949128|949129|949130|950725|952064|952065|957103|957104|957576|957577|957578|957579|957580|957581|957582|957583|957584|957585|957586|957587|957588|957589|957590|957591|958582|958583|964519|979705|979706|979707|979708|979709|979710|979711|979712|979713|979714|979715|979716|979717|979718|979719|979720|979721|979722|979723|979724|979725|979726|979727|979728|979729|979730|979731|979732|979733|979734|979735|979736|979737|979738|979739|979740|979741|979742|979743|979744|979745|979746|980434|980478|980963|980964", + "upstreamId": "21638|21639|22687|91922|108728|108729|108730|108732|108745|204413|247161|276399|276400|276401|276402|276404|276405|276407|276413|276417|276626|276632|276633|276647|276649|277138|277140|277149|277158|277159|277160|277162|277164|277238|277240|277241|277242|277244|277245|277265|277280|277281|277282|319465|319468|319471|319472|319476|319478|319479|319480|319493|319494|319495|323938|323940|323944|323947|323962|323965|323967|323968|323975|323977|323978|323979|323983|323987|323988|323992|323993|323996|323999|324005|324009|324016|324017|324020|324021|324023|324024|324025|324033|328021|328023|328029|328035|328036|328045|332938|332940|332945|332953|332954|332961|333628|333631|333632|333636|333638|333640|333644|333645|333647|333648|333650|333653|333655|333656|334344|334349|334355|334356|334366|336061|336062|336063|336064|336065|336067|336079|340381|340382|340384|340385|340389|340390|340393|340394|340397|340398|340400|340405|340409|340411|340418|340421|340423|340424|340427|340435|340436|340437|341770|341771|341776|341778|341781|341783|341784|341786|341793|341799|341801|341807|341808|341814|341815|343087|343090|343100|343102|348445|348455|348456|348457|348464|348465|349586|349587|349589|390078|409437|447095|447101|447200|447202|447280|463271|463626|463850|463851|464857|464862|464863|465467|465471|465569|465570|465583|465585|492701|515121|515178|527724|527757|527760|529258|529260|529262|529264|529293|529297|529299|529302|529303|529306|529592|529594|529871|529873|529876|529884|529886|529893|532793|532802|532869|533238|533239|533242|533246|556594|556631|556633|556635|556637|556925|558110|566117|567559|567561|567566|568511|568513|568525|568537|568544|569439|569444|569444|569448|569452|569457|569839|569846|569848|569849|569851|572306|572307|572487|572993|573667|573672|573674|573678|573680|573681|574921|574922|574923|590073|614408|614409|619952|620631|624469|624657|624817|626805|626806|626807|626808|626809|626810|626811|626812|626813|626814|626815|626816|641931|641932|641933|641934|641935|641936|641937|641938|643765|643766|643767|643768|643769|643770|643771|643772|643773|643774|643775|643776|643777|643778|643779|643780|643781|643782|643783|643784|643785|643786|643787|643788|643789|643790|643791|643792|643793|643794|643795|643796|643797|643798|643799|643800|643801|643802|643803|643804|647860|647861|647862|647863|647864|647865|647866|647867|647868|650657|652506|653023|653157|654785|677296|714712|714713|714714|718202|718203|718204|726390|726391|726392|726393|726394|729919|731716|731717|731718|739044|739921|739922|739923|739924|739925|739926|739927|739928|741737|744881|745681|754832|754833|754834|754835|754836|754837|754839|754841|754842|754843|760438|761191|761192|769549|770470|770471|770472|770473|770475|770476|770477|770480|770481|770482|770483|770484|770485|770486|770487|772538|772540|772541|776459|778162|779837|785089|785091|785092|785094|785097|785098|785104|785105|785106|785108|788313|788925|789386|816330|820760|822701|822702|822703|822704|822705|822706|822707|822708|822709|822710|822711|822712|822713|822714|822715|840879|840880|840881|840882|840883|840884|840885|842948|842949|842950|842951|842952|842953|842954|842955|842956|842957|842958|842959|842960|842961|842962|842963|842964|842965|842966|842967|842968|842969|842970|847460|847461|847462|847463|847464|847465|847466|847467|852328|852792|862259|862260|862261|862262|862263|862264|862265|862266|862267|862268|862269|862270|862271|862272|862273|862274|864978|864979|864980|871166|871167|871168|871169|871170|871171|871172|871173|871174|871175|871176|871177|871178|871179|874563|874564|874565|874566|874567|874568|874569|874570|874571|874572|874573|874574|874575|874576|874577|874578|874579|874580|874581|874582|874583|874584|874585|874586|874587|874588|874589|874590|874591|874592|874593|874594|874595|874596|874597|874598|874599|874600|874601|874602|876605|876606|876607|876608|876609|880205|880206|880207|880208|880209|880210|880211|921628|921629|921630|926912|926913|926914|926915|926916|926917|927519|927520|927521|927522|927523|927524|927525|927526|927527|927528|928903|928904|928905|930025|930026|930027|930028|930029|930030|930031|936445|937162|937163|937164|937165|937166|937167|937168|937169|937170|937171|937172|937173|937174|937175|937176|940339|941105|941443|941444|941445|941446|941447|949124|949125|949126|949127|949128|949129|949130|950725|952064|952065|957103|957104|957576|957577|957578|957579|957580|957581|957582|957583|957584|957585|957586|957587|957588|957589|957590|957591|958582|958583|964519|979705|979706|979707|979708|979709|979710|979711|979712|979713|979714|979715|979716|979717|979718|979719|979720|979721|979722|979723|979724|979725|979726|979727|979728|979729|979730|979731|979732|979733|979734|979735|979736|979737|979738|979739|979740|979741|979742|979743|979744|979745|979746|980434|980478|980963|980964", "text": "Bare lymphocyte syndrome 2" }, { - "baseId": "21640|21641|21642|21643|39283|39284|39285|39286|135502|135503|190523|190525|192448|208397|328485|328487|328490|328491|328497|328498|328500|328504|328508|328510|338432|338440|338441|338443|338447|344512|344514|344515|344517|344519|344522|344526|344535|345916|345919|345920|345925|345927|345928|429966|877526|877527|877528|877529|877530|877531|877532|877533|877534|877535|877536|877537|877538|877539|877540|877541|877542|877543|877544|877545|877546|877547|877548|877549|877550|877551|877552|970241", + "upstreamId": "21640|21641|21642|21643|39283|39284|39285|39286|135502|135503|190523|190525|192448|208397|328485|328487|328490|328491|328497|328498|328500|328504|328508|328510|338432|338440|338441|338443|338447|344512|344514|344515|344517|344519|344522|344526|344535|345916|345919|345920|345925|345927|345928|429966|877526|877527|877528|877529|877530|877531|877532|877533|877534|877535|877536|877537|877538|877539|877540|877541|877542|877543|877544|877545|877546|877547|877548|877549|877550|877551|877552|970241", "text": "Lipodystrophy, congenital generalized, type 4" }, { - "baseId": "21644|21645|21646|106808|106809|135423|135424|135425|181591|237315|243559|243560|243561|243563|243564|243565|243566|243566|243567|243568|243569|243570|243571|243572|265656|268458|268460|334694|334696|334697|334698|334700|334701|334704|334708|334712|334714|334717|334720|334727|344523|344524|344527|344529|344531|344534|349561|349562|349566|349567|349568|349571|349572|350567|350570|350573|350576|350580|350581|350582|350584|350585|353531|353532|360448|376886|377874|377887|377902|377907|377908|378159|378165|384524|403594|403637|403643|404125|404143|404148|410723|413493|415672|439254|442260|469306|469311|470260|470833|470835|471327|471329|471331|471333|471336|471338|507061|507067|507191|507192|508009|508016|533414|533415|533416|533442|533959|538490|571107|572825|572827|573425|573426|573428|573430|573431|573432|573434|575066|577829|577830|582313|620650|620651|648520|648521|648522|648523|648524|648525|653084|684855|684856|684858|684859|685466|685467|689162|689163|689164|689165|689166|689167|689169|689170|689171|689174|690233|694519|694520|694521|705334|731319|742205|772974|798760|848131|848132|848133|848134|848135|848136|848137|848138|848139|848140|848141|848142|848143|848144|848145|848146|848147|848148|848149|848150|848151|848152|848153|848154|848155|848156|848157|851836|852358|852359|852894|852994|882691|882695|882696|882697|882698|882699|882700|882701|882702|882703|882704|882705|882706|882707|882708|882709|882710|882711|882712|882713|882714|882715|882716|882717|882718|882719|882720|882721|882722|882723|882724|882725|882726|882727|882728|882964|882965|882966|882967|882968|882969|882970|929124|929125|929126|929127|929128|929129|938879|938880|938881|938882|938883|938884|938885|938886|938887|938888|938889|938890|938891|938892|938893|938894|950951|950952|950953|950954|950955|950956|950957|950958|950959|950960|950961|950962|950963|958758|958759|958760|958761|958762|958763|960304|960305|960306", + "upstreamId": "21644|21645|21646|106808|106809|135423|135424|135425|181591|237315|243559|243560|243561|243563|243564|243565|243566|243566|243567|243568|243569|243570|243571|243572|265656|268458|268460|334694|334696|334697|334698|334700|334701|334704|334708|334712|334714|334717|334720|334727|344523|344524|344527|344529|344531|344534|349561|349562|349566|349567|349568|349571|349572|350567|350570|350573|350576|350580|350581|350582|350584|350585|353531|353532|360448|376886|377874|377887|377902|377907|377908|378159|378165|384524|403594|403637|403643|404125|404143|404148|410723|413493|415672|439254|442260|469306|469311|470260|470833|470835|471327|471329|471331|471333|471336|471338|507061|507067|507191|507192|508009|508016|533414|533415|533416|533442|533959|538490|571107|572825|572827|573425|573426|573428|573430|573431|573432|573434|575066|577829|577830|582313|620650|620651|648520|648521|648522|648523|648524|648525|653084|684855|684856|684858|684859|685466|685467|689162|689163|689164|689165|689166|689167|689169|689170|689171|689174|690233|694519|694520|694521|705334|731319|742205|772974|798760|848131|848132|848133|848134|848135|848136|848137|848138|848139|848140|848141|848142|848143|848144|848145|848146|848147|848148|848149|848150|848151|848152|848153|848154|848155|848156|848157|851836|852358|852359|852894|852994|882691|882695|882696|882697|882698|882699|882700|882701|882702|882703|882704|882705|882706|882707|882708|882709|882710|882711|882712|882713|882714|882715|882716|882717|882718|882719|882720|882721|882722|882723|882724|882725|882726|882727|882728|882964|882965|882966|882967|882968|882969|882970|929124|929125|929126|929127|929128|929129|938879|938880|938881|938882|938883|938884|938885|938886|938887|938888|938889|938890|938891|938892|938893|938894|950951|950952|950953|950954|950955|950956|950957|950958|950959|950960|950961|950962|950963|958758|958759|958760|958761|958762|958763|960304|960305|960306", "text": "Hereditary spastic paraplegia 39" }, { - "baseId": "21646|106806|181590|181591|181592|243566|538490", + "upstreamId": "21646|106806|181590|181591|181592|243566|538490", "text": "Trichomegaly-retina pigmentary degeneration-dwarfism syndrome" }, { - "baseId": "21646|181593|243566|538490", + "upstreamId": "21646|181593|243566|538490", "text": "Laurence-Moon syndrome" }, { - "baseId": "21646", + "upstreamId": "21646", "text": "PNPLA6-related disorders" }, { - "baseId": "21647|21648|21649|21650|21651|21652|21653|21654|21655|176083|194388|230518|230519|230520|230521|230522|230523|230524|230525|237616|266218|266380|320412|320413|329160|329162|329166|329169|335768|335769|335773|337582|337583|337584|491561|513618|802077|871774|871775|871776|871777|871778|871779|871780|871781|871782|871783|871784|871785|871786|871787|871788|871789|871790|871791", + "upstreamId": "21647|21648|21649|21650|21651|21652|21653|21654|21655|176083|194388|230518|230519|230520|230521|230522|230523|230524|230525|237616|266218|266380|320412|320413|329160|329162|329166|329169|335768|335769|335773|337582|337583|337584|491561|513618|802077|871774|871775|871776|871777|871778|871779|871780|871781|871782|871783|871784|871785|871786|871787|871788|871789|871790|871791", "text": "Deafness, autosomal dominant 9" }, { - "baseId": "21656|204349|204350|204351|204352|321265|321269|321271|321275|321276|321277|330470|330472|330473|330475|330476|330477|330479|336984|336985|336989|336996|337003|337005|337007|337015|338925|338930|338934|338935|338938|338940|338941|338946|338947|513623|620486|620487|620861|725791|784776|860122|872465|872466|872467|872468|872469|872470|872471|872472|872473|872474|872475|872476|872477|872478|872479|872480|872481|872482|872483|872484|872485|872486|872487|872488|872489|872490|872491|872492|872493|872494|872495|872496|872497|872498|872499|872500|872501|872502|872503|872504|872505|872506|872507|872508|872509|872510|872511|872512|872513|872514|872515|872516|872517|872518|872519|872520|872521|876438|876439|904110", + "upstreamId": "21656|204349|204350|204351|204352|321265|321269|321271|321275|321276|321277|330470|330472|330473|330475|330476|330477|330479|336984|336985|336989|336996|337003|337005|337007|337015|338925|338930|338934|338935|338938|338940|338941|338946|338947|513623|620486|620487|620861|725791|784776|860122|872465|872466|872467|872468|872469|872470|872471|872472|872473|872474|872475|872476|872477|872478|872479|872480|872481|872482|872483|872484|872485|872486|872487|872488|872489|872490|872491|872492|872493|872494|872495|872496|872497|872498|872499|872500|872501|872502|872503|872504|872505|872506|872507|872508|872509|872510|872511|872512|872513|872514|872515|872516|872517|872518|872519|872520|872521|876438|876439|904110", "text": "Methylmalonate semialdehyde dehydrogenase deficiency" }, { - "baseId": "21657|192358|252146|252150|273781|275516|299207|299214|299222|299224|299228|299230|299234|299235|301636|306038|306041|306043|306044|306045|306051|306052|306053|306066|306315|306316|306319|306322|306324|492855|619943|895479|895480|895481|895482|895483|895484|895485|895486|895487|895488|895489|895490|895491|895492|895493|895494|896200|961772", + "upstreamId": "21657|192358|252146|252150|273781|275516|299207|299214|299222|299224|299228|299230|299234|299235|301636|306038|306041|306043|306044|306045|306051|306052|306053|306066|306315|306316|306319|306322|306324|492855|619943|895479|895480|895481|895482|895483|895484|895485|895486|895487|895488|895489|895490|895491|895492|895493|895494|896200|961772", "text": "Peroxisome biogenesis disorder 10A" }, { - "baseId": "21659|590481", + "upstreamId": "21659|590481", "text": "Choanal atresia and lymphedema" }, { - "baseId": "21660|22017|22089|27617|27621|28696|29000|29006|29008|29010|29020|31648|31652|31848|34064|38760|38762|48817|53966|53978|54386|54403|54438|54447|54449|54464|133516|174230|205383|205384|311469|359646|359799|362828|362829|363583|363619|552584|575761|575763|575766|575769|575773|575779|615885|790727|790728|790729|790730|790731|790732|790733|790734|790735|790736|790737|971294", + "upstreamId": "21660|22017|22089|27617|27621|28696|29000|29006|29008|29010|29020|31648|31652|31848|34064|38760|38762|48817|53966|53978|54386|54403|54438|54447|54449|54464|133516|174230|205383|205384|311469|359646|359799|362828|362829|363583|363619|552584|575761|575763|575766|575769|575773|575779|615885|790727|790728|790729|790730|790731|790732|790733|790734|790735|790736|790737|971294", "text": "Lung carcinoma" }, { - "baseId": "21661|21662", + "upstreamId": "21661|21662", "text": "Anaphylotoxin inactivator deficiency" }, { - "baseId": "21663|21664|21665|21666|21667|21668|21669|21670|21671|133737|133739|207659|207660|253484|266583|307660|307661|307663|307664|307676|307685|307687|307689|307690|307694|307696|311906|311915|311924|311925|311932|311943|317485|317488|317498|317516|317517|317518|317521|317524|317544|317995|317996|318011|318012|318017|318018|318019|318024|318029|318031|318032|318039|359009|359010|359011|359012|359013|359014|359015|359016|359017|359018|359019|359027|361196|361197|380242|380246|492918|540478|540479|624154|723471|737029|788834|901548|901549|901550|901551|901552|901553|901554|901555|901556|901557|901558|901559|901560|901561|901562|901563|901564|901565|901566|901567|901568|901569|901570|901571|903355", + "upstreamId": "21663|21664|21665|21666|21667|21668|21669|21670|21671|133737|133739|207659|207660|253484|266583|307660|307661|307663|307664|307676|307685|307687|307689|307690|307694|307696|311906|311915|311924|311925|311932|311943|317485|317488|317498|317516|317517|317518|317521|317524|317544|317995|317996|318011|318012|318017|318018|318019|318024|318029|318031|318032|318039|359009|359010|359011|359012|359013|359014|359015|359016|359017|359018|359019|359027|361196|361197|380242|380246|492918|540478|540479|624154|723471|737029|788834|901548|901549|901550|901551|901552|901553|901554|901555|901556|901557|901558|901559|901560|901561|901562|901563|901564|901565|901566|901567|901568|901569|901570|901571|903355", "text": "Congenital generalized lipodystrophy type 1" }, { - "baseId": "21676|21677|21678|21679|21680|39254|76395|76396|76400|193608|199799|254874|254876|254878|384627|384628|384629|384631|429512|463710|463965|508882|536082|553157|566185|642065|642066|688185|693399|702755|702756|739106|739110|799753|799754|820592|841014|919501|919502|919503|926952|926953|948421|948422|957141|957142", + "upstreamId": "21676|21677|21678|21679|21680|39254|76395|76396|76400|193608|199799|254874|254876|254878|384627|384628|384629|384631|429512|463710|463965|508882|536082|553157|566185|642065|642066|688185|693399|702755|702756|739106|739110|799753|799754|820592|841014|919501|919502|919503|926952|926953|948421|948422|957141|957142", "text": "Holoprosencephaly 5" }, { - "baseId": "21682|21683|227305|433842|433846|433847|433848|433852|433853|537511|609638|612432|612766|699713|722207|903547", + "upstreamId": "21682|21683|227305|433842|433846|433847|433848|433852|433853|537511|609638|612432|612766|699713|722207|903547", "text": "Bone fragility with contractures, arterial rupture, and deafness" }, { - "baseId": "21684|21685|21686|44138|167558|167559|167560|167561|215228|273666|283016|283023|283027|283028|283029|283033|283035|283044|283045|283046|283047|283052|283065|283070|283080|283081|283102|283109|283110|283118|283119|283120|283129|283130|283137|283138|283140|283142|283846|283848|283849|283850|283852|283854|283865|283869|283870|283876|283878|283879|285508|285512|285526|285527|285528|285531|285533|285552|285559|285561|285563|285569|285581|285584|285587|285588|285606|285617|285907|285909|285914|285930|285931|285936|285937|285939|285942|285965|285979|285980|285983|285984|286012|286013|286028|286046|549542|707864|732965|746964|746966|746967|762437|762440|762441|780976|799243|881660|881661|881662|881663|881664|881665|881666|881667|881668|881669|881670|881671|881672|881673|881674|881675|881676|881677|881678|881679|881680|881681|881682|881683|881684|881685|881686|881687|881688|881689|881690|881691|881692|881693|881694|881695|881696|881697|881698|882858|981348", + "upstreamId": "21684|21685|21686|44138|167558|167559|167560|167561|215228|273666|283016|283023|283027|283028|283029|283033|283035|283044|283045|283046|283047|283052|283065|283070|283080|283081|283102|283109|283110|283118|283119|283120|283129|283130|283137|283138|283140|283142|283846|283848|283849|283850|283852|283854|283865|283869|283870|283876|283878|283879|285508|285512|285526|285527|285528|285531|285533|285552|285559|285561|285563|285569|285581|285584|285587|285588|285606|285617|285907|285909|285914|285930|285931|285936|285937|285939|285942|285965|285979|285980|285983|285984|286012|286013|286028|286046|549542|707864|732965|746964|746966|746967|762437|762440|762441|780976|799243|881660|881661|881662|881663|881664|881665|881666|881667|881668|881669|881670|881671|881672|881673|881674|881675|881676|881677|881678|881679|881680|881681|881682|881683|881684|881685|881686|881687|881688|881689|881690|881691|881692|881693|881694|881695|881696|881697|881698|882858|981348", "text": "Rhizomelic chondrodysplasia punctata type 3" }, { - "baseId": "21687|21688|21689|21690|21691|21692|21693|21694|21695|21696|134274|134275|134276|193576|194940|207063|250984|250989|250991|250996|250998|264144|266173|271284|289150|289152|289157|289159|289160|289941|289943|289945|289948|289952|289955|289956|289958|289963|289964|293013|293014|293017|293019|293024|293026|293027|293030|293031|293033|293038|293420|293421|293422|293423|293426|293438|293466|293467|367241|440760|451892|451893|451895|451901|452111|452238|452240|452244|452252|452356|491846|518929|518933|518938|518946|519107|519109|519113|519131|519134|537420|538355|558828|558830|559359|559361|561222|561225|561227|562528|562530|590546|590547|590548|620113|620114|620756|623586|631001|631002|631003|631004|631005|631006|631007|631008|631009|631010|631011|631012|631013|631014|651062|651072|651153|691328|697901|697902|763708|790344|790345|802148|819340|819341|827632|827633|827634|827635|827636|827637|827638|827641|827642|888228|888229|888230|888231|888232|888233|888234|888235|888236|888237|888238|888239|888240|888241|891595|891596|923073|923074|923075|923076|923077|923078|923079|931805|931806|931807|939929|943377|943378|943379|943380|943381|953367|953368|953369|953370|953371|953372|959691|959692|964655|965876|965885|980408|980409", + "upstreamId": "21687|21688|21689|21690|21691|21692|21693|21694|21695|21696|134274|134275|134276|193576|194940|207063|250984|250989|250991|250996|250998|264144|266173|271284|289150|289152|289157|289159|289160|289941|289943|289945|289948|289952|289955|289956|289958|289963|289964|293013|293014|293017|293019|293024|293026|293027|293030|293031|293033|293038|293420|293421|293422|293423|293426|293438|293466|293467|367241|440760|451892|451893|451895|451901|452111|452238|452240|452244|452252|452356|491846|518929|518933|518938|518946|519107|519109|519113|519131|519134|537420|538355|558828|558830|559359|559361|561222|561225|561227|562528|562530|590546|590547|590548|620113|620114|620756|623586|631001|631002|631003|631004|631005|631006|631007|631008|631009|631010|631011|631012|631013|631014|651062|651072|651153|691328|697901|697902|763708|790344|790345|802148|819340|819341|827632|827633|827634|827635|827636|827637|827638|827641|827642|888228|888229|888230|888231|888232|888233|888234|888235|888236|888237|888238|888239|888240|888241|891595|891596|923073|923074|923075|923076|923077|923078|923079|931805|931806|931807|939929|943377|943378|943379|943380|943381|953367|953368|953369|953370|953371|953372|959691|959692|964655|965876|965885|980408|980409", "text": "Endplate acetylcholinesterase deficiency" }, { - "baseId": "21697|21698", + "upstreamId": "21697|21698", "text": "Legionellosis" }, { - "baseId": "21697", + "upstreamId": "21697", "text": "Systemic lupus erythematosus, resistance to, 1" }, { - "baseId": "21697", + "upstreamId": "21697", "text": "Melioidosis, resistance to" }, { - "baseId": "21699|21700", + "upstreamId": "21699|21700", "text": "TLR4 POLYMORPHISM" }, { - "baseId": "21701|49908|486804|486805|486808|486809", + "upstreamId": "21701|49908|486804|486805|486808|486809", "text": "Herpes simplex encephalitis 2" }, { - "baseId": "21702|980453", + "upstreamId": "21702|980453", "text": "Leprosy 3" }, { - "baseId": "21704|21706|21707|21710|21712|21713|21714|21714|21715|21718|21721|21724|100162|100191|100191|100205|100248|192910|213808|259743|259744|267122|268491|437659|443289|518525|542336|608904|672039|677130|822324|931561|961663|971805|971806|971807|971808|971809|971810|971811|971812|971813|971814|971815|971816|971817|971818|971819|971820|971821|971822|971823|971824|971825|971826|971827|971828|971829|971830|971831|971832|971833|971834|971835|971836|971837|971838|971839|971840|971841|971842", + "upstreamId": "21704|21706|21707|21710|21712|21713|21714|21714|21715|21718|21721|21724|100162|100191|100191|100205|100248|192910|213808|259743|259744|267122|268491|437659|443289|518525|542336|608904|672039|677130|822324|931561|961663|971805|971806|971807|971808|971809|971810|971811|971812|971813|971814|971815|971816|971817|971818|971819|971820|971821|971822|971823|971824|971825|971826|971827|971828|971829|971830|971831|971832|971833|971834|971835|971836|971837|971838|971839|971840|971841|971842", "text": "Miyoshi muscular dystrophy 1" }, { - "baseId": "21705|21714|21715|100162|100186|100191|100205|100248|192910|213808|226470|259744|267122|268491|443289|492464|518525|542336|672039|802142|822324|931561|961663|971805|971806|971807|971808|971809|971810|971811|971812|971813|971814|971815|971816|971817|971818|971819|971820|971821|971822|971823|971824|971825|971826|971827|971828|971829|971830|971831|971832|971833|971834|971835|971836|971837|971838|971839|971840|971841|971842", + "upstreamId": "21705|21714|21715|100162|100186|100191|100205|100248|192910|213808|226470|259744|267122|268491|443289|492464|518525|542336|672039|802142|822324|931561|961663|971805|971806|971807|971808|971809|971810|971811|971812|971813|971814|971815|971816|971817|971818|971819|971820|971821|971822|971823|971824|971825|971826|971827|971828|971829|971830|971831|971832|971833|971834|971835|971836|971837|971838|971839|971840|971841|971842", "text": "Myopathy, distal, with anterior tibial onset" }, { - "baseId": "21705|21706|21707|21708|21710|21713|21714|21715|21718|21723|21724|33482|80526|85580|100162|100163|100164|100165|100168|100169|100170|100175|100179|100180|100181|100182|100183|100185|100189|100190|100191|100193|100194|100199|100200|100201|100205|100207|100210|100211|100212|100214|100215|100216|100218|100220|100221|100222|100223|100225|100227|100228|100229|100230|100231|100232|100234|100235|100236|100241|100243|100244|100245|100247|100248|100250|100251|100252|100253|100254|100258|100261|100264|100265|100267|100269|134392|134393|134394|134395|134396|173671|176953|177084|177216|177347|177348|177683|177684|177687|177688|177691|192003|192650|192756|192757|192759|192838|192909|192910|193122|193183|193286|193336|193337|193785|193855|194056|194165|194222|194376|194378|194594|194624|194665|194682|194727|195128|195618|195655|195658|213540|213541|213806|213808|213810|213811|226470|250769|250770|250771|250775|250779|250780|250782|250783|250785|250787|250789|259744|264110|265251|265300|265304|265341|265474|265538|265592|265920|266191|266401|266446|266553|266647|266660|266750|266861|266936|266940|266942|267002|267122|267329|267443|267465|267696|267711|267724|267734|267861|268202|268214|268240|268491|268621|268724|268748|268817|269041|269053|269054|269059|269074|269111|269171|269290|269293|269298|269300|269360|269370|269380|269385|269389|269414|269437|269580|269593|269700|269814|269821|269880|269884|269923|269978|269987|270041|270050|270059|270180|270219|270220|270388|270414|270463|270680|270694|270705|270948|270966|270980|271053|271157|271412|271545|271554|271710|271711|272022|272048|272050|272053|272059|272180|272245|272326|272327|272419|272420|272535|272648|272649|272675|272730|272733|272814|272860|272861|272867|272885|273030|273087|273116|273126|273178|273213|273377|273481|273482|273708|273720|273796|273808|273998|274026|274152|274197|274200|274264|274332|274353|274380|274407|274415|274424|274494|274499|274591|274752|274894|274907|274939|274982|275068|275153|275299|275308|275346|275353|275360|275405|275545|287144|287148|287157|287158|287164|287169|287171|287172|287173|287877|287896|287898|287899|287900|287903|287904|287906|287911|287912|290424|290428|290429|290430|290443|290454|290461|290463|290470|290471|290719|290721|290727|290728|290742|290745|290746|290750|290759|290760|290761|290765|290767|357265|366899|366916|366918|366970|366972|366978|367778|367788|406010|413536|421401|437659|438144|440724|440727|443286|443288|443291|451389|451393|451397|451399|451400|451402|451405|451407|451409|451562|451563|451565|451567|451570|451572|451578|451580|451584|451586|451588|451590|451591|451595|451597|451606|451607|451612|451616|451619|451750|451753|451758|451760|451762|451765|451784|451785|451788|451791|451795|451816|451824|451828|488296|488403|488736|488918|489272|489770|489796|490043|490393|490407|490434|490446|490447|490471|490508|490615|490629|490651|491428|492042|492361|492460|492464|492710|492904|492978|492982|493240|493518|493519|493566|493635|493977|495156|496762|499889|500107|500108|500326|518514|518517|518519|518520|518521|518525|518526|518528|518531|518534|518535|518536|518539|518540|518541|518542|518543|518544|518548|518550|518597|518598|518599|518606|518610|518613|518615|518616|518658|518663|518666|518670|518673|518675|518680|518682|518685|518688|518689|518701|535273|542033|542115|542117|542153|542183|542198|542214|542217|542231|542254|542277|542283|542293|542328|542330|542387|542391|550588|558257|558259|558261|558263|558630|558632|558634|558636|558638|558640|560912|560915|560916|560919|560921|560922|560926|560928|560939|561890|561894|561907|561908|561909|561911|561915|561929|561931|561938|561942|576695|576697|585090|585256|586246|587069|587283|587878|587887|588190|588191|588611|588741|588744|589195|589621|610613|620092|620093|630418|630419|630420|630421|630422|630423|630424|630425|630426|630427|630428|630429|630430|630431|630432|630433|630434|630435|630436|630437|630438|630439|630440|630441|630442|630443|630444|630445|630446|630447|630448|630449|630450|630451|630452|630453|630454|630455|630456|630457|630458|630459|630460|630461|630462|630463|630464|630465|630466|630467|630468|650880|650882|650888|651003|651005|651008|655473|659299|691194|691195|691196|691197|691198|691200|691201|691202|691203|691204|695153|695156|695157|695158|695159|697640|697641|697642|697643|697644|697646|708348|708349|719952|730158|733548|733549|733550|733551|733554|743883|743960|747748|747749|747750|747754|747755|747756|747757|759071|759076|759144|763391|763394|763398|763399|763402|763405|763406|774740|774743|774775|774776|781433|781434|781437|781438|781439|781444|781445|787126|787228|819269|819270|819271|819272|826927|826928|826929|826930|826931|826932|826933|826934|826935|826936|826937|826938|826939|826940|826941|826942|826943|826944|826945|826946|826947|826948|826949|826950|826951|826952|826953|826954|826955|826956|826957|826958|826959|826960|826961|826962|826963|826964|826965|826966|826967|826968|826969|826970|850875|850877|850879|850881|850883|851208|851440|859188|885409|885410|885411|885412|885413|885414|885415|885416|885417|885418|885419|885420|885421|885422|885423|885424|885425|885426|885427|885428|885429|885430|885431|885432|885433|885434|885435|885436|887391|887392|887393|887394|887395|922901|922902|922903|922904|922905|922906|922907|922908|922909|922910|931558|931559|931560|931561|931562|931563|931564|931565|931566|939908|939909|939910|939911|940721|940722|940723|943088|943089|943090|943091|943092|943093|943094|943095|943096|943097|943098|943099|943100|943101|943102|943103|943104|943105|943106|943107|943108|943109|953180|953181|953182|953183|953184|953185|953186|953187|953188|953189|953190|953191|953192|953193|959654|959655|960490|966353", + "upstreamId": "21705|21706|21707|21708|21710|21713|21714|21715|21718|21723|21724|33482|80526|85580|100162|100163|100164|100165|100168|100169|100170|100175|100179|100180|100181|100182|100183|100185|100189|100190|100191|100193|100194|100199|100200|100201|100205|100207|100210|100211|100212|100214|100215|100216|100218|100220|100221|100222|100223|100225|100227|100228|100229|100230|100231|100232|100234|100235|100236|100241|100243|100244|100245|100247|100248|100250|100251|100252|100253|100254|100258|100261|100264|100265|100267|100269|134392|134393|134394|134395|134396|173671|176953|177084|177216|177347|177348|177683|177684|177687|177688|177691|192003|192650|192756|192757|192759|192838|192909|192910|193122|193183|193286|193336|193337|193785|193855|194056|194165|194222|194376|194378|194594|194624|194665|194682|194727|195128|195618|195655|195658|213540|213541|213806|213808|213810|213811|226470|250769|250770|250771|250775|250779|250780|250782|250783|250785|250787|250789|259744|264110|265251|265300|265304|265341|265474|265538|265592|265920|266191|266401|266446|266553|266647|266660|266750|266861|266936|266940|266942|267002|267122|267329|267443|267465|267696|267711|267724|267734|267861|268202|268214|268240|268491|268621|268724|268748|268817|269041|269053|269054|269059|269074|269111|269171|269290|269293|269298|269300|269360|269370|269380|269385|269389|269414|269437|269580|269593|269700|269814|269821|269880|269884|269923|269978|269987|270041|270050|270059|270180|270219|270220|270388|270414|270463|270680|270694|270705|270948|270966|270980|271053|271157|271412|271545|271554|271710|271711|272022|272048|272050|272053|272059|272180|272245|272326|272327|272419|272420|272535|272648|272649|272675|272730|272733|272814|272860|272861|272867|272885|273030|273087|273116|273126|273178|273213|273377|273481|273482|273708|273720|273796|273808|273998|274026|274152|274197|274200|274264|274332|274353|274380|274407|274415|274424|274494|274499|274591|274752|274894|274907|274939|274982|275068|275153|275299|275308|275346|275353|275360|275405|275545|287144|287148|287157|287158|287164|287169|287171|287172|287173|287877|287896|287898|287899|287900|287903|287904|287906|287911|287912|290424|290428|290429|290430|290443|290454|290461|290463|290470|290471|290719|290721|290727|290728|290742|290745|290746|290750|290759|290760|290761|290765|290767|357265|366899|366916|366918|366970|366972|366978|367778|367788|406010|413536|421401|437659|438144|440724|440727|443286|443288|443291|451389|451393|451397|451399|451400|451402|451405|451407|451409|451562|451563|451565|451567|451570|451572|451578|451580|451584|451586|451588|451590|451591|451595|451597|451606|451607|451612|451616|451619|451750|451753|451758|451760|451762|451765|451784|451785|451788|451791|451795|451816|451824|451828|488296|488403|488736|488918|489272|489770|489796|490043|490393|490407|490434|490446|490447|490471|490508|490615|490629|490651|491428|492042|492361|492460|492464|492710|492904|492978|492982|493240|493518|493519|493566|493635|493977|495156|496762|499889|500107|500108|500326|518514|518517|518519|518520|518521|518525|518526|518528|518531|518534|518535|518536|518539|518540|518541|518542|518543|518544|518548|518550|518597|518598|518599|518606|518610|518613|518615|518616|518658|518663|518666|518670|518673|518675|518680|518682|518685|518688|518689|518701|535273|542033|542115|542117|542153|542183|542198|542214|542217|542231|542254|542277|542283|542293|542328|542330|542387|542391|550588|558257|558259|558261|558263|558630|558632|558634|558636|558638|558640|560912|560915|560916|560919|560921|560922|560926|560928|560939|561890|561894|561907|561908|561909|561911|561915|561929|561931|561938|561942|576695|576697|585090|585256|586246|587069|587283|587878|587887|588190|588191|588611|588741|588744|589195|589621|610613|620092|620093|630418|630419|630420|630421|630422|630423|630424|630425|630426|630427|630428|630429|630430|630431|630432|630433|630434|630435|630436|630437|630438|630439|630440|630441|630442|630443|630444|630445|630446|630447|630448|630449|630450|630451|630452|630453|630454|630455|630456|630457|630458|630459|630460|630461|630462|630463|630464|630465|630466|630467|630468|650880|650882|650888|651003|651005|651008|655473|659299|691194|691195|691196|691197|691198|691200|691201|691202|691203|691204|695153|695156|695157|695158|695159|697640|697641|697642|697643|697644|697646|708348|708349|719952|730158|733548|733549|733550|733551|733554|743883|743960|747748|747749|747750|747754|747755|747756|747757|759071|759076|759144|763391|763394|763398|763399|763402|763405|763406|774740|774743|774775|774776|781433|781434|781437|781438|781439|781444|781445|787126|787228|819269|819270|819271|819272|826927|826928|826929|826930|826931|826932|826933|826934|826935|826936|826937|826938|826939|826940|826941|826942|826943|826944|826945|826946|826947|826948|826949|826950|826951|826952|826953|826954|826955|826956|826957|826958|826959|826960|826961|826962|826963|826964|826965|826966|826967|826968|826969|826970|850875|850877|850879|850881|850883|851208|851440|859188|885409|885410|885411|885412|885413|885414|885415|885416|885417|885418|885419|885420|885421|885422|885423|885424|885425|885426|885427|885428|885429|885430|885431|885432|885433|885434|885435|885436|887391|887392|887393|887394|887395|922901|922902|922903|922904|922905|922906|922907|922908|922909|922910|931558|931559|931560|931561|931562|931563|931564|931565|931566|939908|939909|939910|939911|940721|940722|940723|943088|943089|943090|943091|943092|943093|943094|943095|943096|943097|943098|943099|943100|943101|943102|943103|943104|943105|943106|943107|943108|943109|953180|953181|953182|953183|953184|953185|953186|953187|953188|953189|953190|953191|953192|953193|959654|959655|960490|966353", "text": "Qualitative or quantitative defects of dysferlin" }, { - "baseId": "21706|21707|21708|21709|21710|21711|21712|21713|21714|21714|21715|21716|21717|21719|21720|21722|21723|21724|33482|80526|85580|100162|100162|100163|100164|100166|100169|100171|100172|100174|100178|100179|100180|100181|100182|100183|100189|100190|100191|100191|100192|100194|100198|100199|100200|100201|100205|100205|100207|100208|100211|100212|100214|100215|100216|100218|100220|100221|100222|100225|100227|100228|100230|100231|100232|100234|100240|100243|100244|100245|100247|100248|100248|100250|100251|100252|100253|100255|100258|100264|100267|100269|134392|134393|134395|134396|177216|177686|177687|177688|191517|192651|192756|192910|192910|193183|193286|193336|193855|194222|194378|194594|194624|194665|195128|195619|195655|195656|207012|213540|213541|213807|213808|213808|213809|213810|213811|226470|250769|250770|250775|250779|250782|250785|250787|250789|250793|259743|259744|259745|265341|265377|265434|265474|265538|265920|266446|266553|266645|266647|266686|266861|266940|267002|267008|267122|267122|267465|267480|267696|267711|267724|267734|267861|268214|268240|268488|268491|268491|268621|268706|268816|268817|269037|269054|269059|269111|269300|269360|269380|269390|269580|269593|269814|269880|269923|269987|270041|270050|270180|270388|270705|270980|271157|271545|271554|271711|272053|272529|272648|272675|272730|272814|272867|272881|273116|273377|273482|273727|273808|273998|274200|274264|274332|274407|274415|274435|274441|274494|274521|274546|274547|274894|275153|275299|275308|275353|275405|275545|287144|287158|287171|287172|287877|287899|287904|290443|290750|353882|357265|361389|366680|366916|406010|421401|424285|425501|437659|440724|440730|443289|443289|451402|451567|451580|451584|451588|451753|451795|488125|488555|489272|489770|490043|490519|490651|491514|492042|492361|493240|493519|514294|518517|518525|518531|518536|518541|518542|518548|518598|518658|518689|518701|535272|535273|536159|542026|542027|542029|542031|542033|542035|542037|542042|542044|542047|542049|542066|542067|542074|542076|542080|542085|542091|542096|542102|542105|542107|542112|542115|542117|542149|542153|542160|542162|542173|542174|542176|542179|542182|542183|542184|542187|542198|542199|542202|542206|542209|542214|542217|542231|542238|542254|542256|542258|542260|542262|542264|542266|542269|542270|542272|542277|542279|542283|542285|542293|542297|542298|542300|542323|542325|542328|542330|542332|542335|542336|542336|542342|542357|542362|542366|542368|542373|542382|542387|542389|542390|542391|550588|558259|558263|558638|560922|560926|560939|561907|576697|585090|588191|588744|608903|608916|610421|610613|612261|612262|620944|622871|626364|626412|626417|630433|630436|630445|630446|630451|630455|630467|655474|672039|681816|681818|681819|681870|681871|691194|691195|691200|691201|691204|695153|695155|695156|697640|697642|697644|708348|708349|730158|733551|733554|743883|747748|747757|759074|763394|763395|763405|763412|774776|774778|781440|787229|802134|802135|802136|802137|802138|802139|802140|802141|802142|802143|802144|802145|802146|802246|822324|826930|826931|826937|826941|826953|826955|826956|826958|826961|826963|826966|921250|921251|931559|931561|961663|971805|971806|971807|971808|971809|971810|971811|971812|971813|971814|971815|971816|971817|971818|971819|971820|971821|971822|971823|971824|971825|971826|971827|971828|971829|971830|971831|971832|971833|971834|971835|971836|971837|971838|971839|971840|971841|971842|977747|977748|977749|977750|977751|977752|977753|977754|977755|977756|977757|977758|977759|977760|977761|977762", + "upstreamId": "21706|21707|21708|21709|21710|21711|21712|21713|21714|21714|21715|21716|21717|21719|21720|21722|21723|21724|33482|80526|85580|100162|100162|100163|100164|100166|100169|100171|100172|100174|100178|100179|100180|100181|100182|100183|100189|100190|100191|100191|100192|100194|100198|100199|100200|100201|100205|100205|100207|100208|100211|100212|100214|100215|100216|100218|100220|100221|100222|100225|100227|100228|100230|100231|100232|100234|100240|100243|100244|100245|100247|100248|100248|100250|100251|100252|100253|100255|100258|100264|100267|100269|134392|134393|134395|134396|177216|177686|177687|177688|191517|192651|192756|192910|192910|193183|193286|193336|193855|194222|194378|194594|194624|194665|195128|195619|195655|195656|207012|213540|213541|213807|213808|213808|213809|213810|213811|226470|250769|250770|250775|250779|250782|250785|250787|250789|250793|259743|259744|259745|265341|265377|265434|265474|265538|265920|266446|266553|266645|266647|266686|266861|266940|267002|267008|267122|267122|267465|267480|267696|267711|267724|267734|267861|268214|268240|268488|268491|268491|268621|268706|268816|268817|269037|269054|269059|269111|269300|269360|269380|269390|269580|269593|269814|269880|269923|269987|270041|270050|270180|270388|270705|270980|271157|271545|271554|271711|272053|272529|272648|272675|272730|272814|272867|272881|273116|273377|273482|273727|273808|273998|274200|274264|274332|274407|274415|274435|274441|274494|274521|274546|274547|274894|275153|275299|275308|275353|275405|275545|287144|287158|287171|287172|287877|287899|287904|290443|290750|353882|357265|361389|366680|366916|406010|421401|424285|425501|437659|440724|440730|443289|443289|451402|451567|451580|451584|451588|451753|451795|488125|488555|489272|489770|490043|490519|490651|491514|492042|492361|493240|493519|514294|518517|518525|518531|518536|518541|518542|518548|518598|518658|518689|518701|535272|535273|536159|542026|542027|542029|542031|542033|542035|542037|542042|542044|542047|542049|542066|542067|542074|542076|542080|542085|542091|542096|542102|542105|542107|542112|542115|542117|542149|542153|542160|542162|542173|542174|542176|542179|542182|542183|542184|542187|542198|542199|542202|542206|542209|542214|542217|542231|542238|542254|542256|542258|542260|542262|542264|542266|542269|542270|542272|542277|542279|542283|542285|542293|542297|542298|542300|542323|542325|542328|542330|542332|542335|542336|542336|542342|542357|542362|542366|542368|542373|542382|542387|542389|542390|542391|550588|558259|558263|558638|560922|560926|560939|561907|576697|585090|588191|588744|608903|608916|610421|610613|612261|612262|620944|622871|626364|626412|626417|630433|630436|630445|630446|630451|630455|630467|655474|672039|681816|681818|681819|681870|681871|691194|691195|691200|691201|691204|695153|695155|695156|697640|697642|697644|708348|708349|730158|733551|733554|743883|747748|747757|759074|763394|763395|763405|763412|774776|774778|781440|787229|802134|802135|802136|802137|802138|802139|802140|802141|802142|802143|802144|802145|802146|802246|822324|826930|826931|826937|826941|826953|826955|826956|826958|826961|826963|826966|921250|921251|931559|931561|961663|971805|971806|971807|971808|971809|971810|971811|971812|971813|971814|971815|971816|971817|971818|971819|971820|971821|971822|971823|971824|971825|971826|971827|971828|971829|971830|971831|971832|971833|971834|971835|971836|971837|971838|971839|971840|971841|971842|977747|977748|977749|977750|977751|977752|977753|977754|977755|977756|977757|977758|977759|977760|977761|977762", "text": "Autosomal recessive limb-girdle muscular dystrophy type 2B" }, { - "baseId": "21706|100178|272053|274332", + "upstreamId": "21706|100178|272053|274332", "text": "DYSF-Related Disorders" }, { - "baseId": "21725|21726|21727|48241|48242|48243|48244|48245|205163|267233|267602|271833|491702|525489|525577|564850|566551|566552|639260|639261|701456|701457|712499|712500|779510|837409|919301|947116|956263", + "upstreamId": "21725|21726|21727|48241|48242|48243|48244|48245|205163|267233|267602|271833|491702|525489|525577|564850|566551|566552|639260|639261|701456|701457|712499|712500|779510|837409|919301|947116|956263", "text": "Spondyloepimetaphyseal dysplasia, pakistani type" }, { - "baseId": "21728|70957|70958|70959|70960|70961|70962|70963|70964|70965|70966|70967|70968|70969|70970|70971|70972|70973|70974|70975|70976|70977|70978|70979|70980|70981|70982|71380|71381|71382|71383|71384|71385|71386|71387|71388|71389|71390|71391|71392|71393|71394|71395|71396|71397|71398|71399|71400|71430|187116|204448|227336|259935|309848|309849|309854|309867|309873|309879|309880|309881|309895|309909|309915|309930|309945|314751|314759|314760|314770|314775|314782|314791|314819|314827|314832|314833|314846|314885|314898|314901|314914|314931|314951|314967|314985|314996|320801|320826|320832|320843|320869|320880|320901|320905|320931|320954|320956|320962|320976|320980|320982|321016|321409|321429|321445|321463|321477|321480|321523|321527|321538|321539|321554|321567|373341|433361|433468|433469|433470|433473|433474|433476|433477|433479|434635|459738|463056|463536|492549|512917|513081|513082|513083|513084|513305|525021|525030|525035|525038|525233|525235|525236|525335|525340|525537|525539|527933|527964|528277|528344|528433|536788|563627|563628|563639|563640|563645|564530|564532|566213|566219|566220|568716|569555|569558|569563|569564|569575|581763|581764|581770|590289|590290|590291|590292|590293|590294|590295|590296|609883|620350|620351|620352|620353|620820|623303|638802|638803|638804|638805|638806|638807|638808|638809|638810|638811|638812|638813|638814|638815|638816|638817|638818|638819|638820|638821|642128|654582|683143|684140|684143|684144|684145|684146|684147|684148|684149|684150|684151|684153|684154|684155|684158|684159|684160|684161|684162|684163|684164|684165|684454|684456|684457|684458|684459|684460|684461|685266|685267|685268|685269|685392|687597|687601|687602|687603|687607|688242|688244|690074|739131|767686|783571|783575|784660|787658|788840|790955|799602|818277|818278|818279|818280|818281|836728|836729|836730|836731|836732|836733|836734|836735|836736|836737|836738|836739|836740|836741|836742|836743|836744|841091|851768|925774|925775|925776|925777|934992|934993|934994|934995|934996|934997|934998|934999|935000|935001|935002|936525|936526|936527|946847|956021|956022|956023|956024|957157", + "upstreamId": "21728|70957|70958|70959|70960|70961|70962|70963|70964|70965|70966|70967|70968|70969|70970|70971|70972|70973|70974|70975|70976|70977|70978|70979|70980|70981|70982|71380|71381|71382|71383|71384|71385|71386|71387|71388|71389|71390|71391|71392|71393|71394|71395|71396|71397|71398|71399|71400|71430|187116|204448|227336|259935|309848|309849|309854|309867|309873|309879|309880|309881|309895|309909|309915|309930|309945|314751|314759|314760|314770|314775|314782|314791|314819|314827|314832|314833|314846|314885|314898|314901|314914|314931|314951|314967|314985|314996|320801|320826|320832|320843|320869|320880|320901|320905|320931|320954|320956|320962|320976|320980|320982|321016|321409|321429|321445|321463|321477|321480|321523|321527|321538|321539|321554|321567|373341|433361|433468|433469|433470|433473|433474|433476|433477|433479|434635|459738|463056|463536|492549|512917|513081|513082|513083|513084|513305|525021|525030|525035|525038|525233|525235|525236|525335|525340|525537|525539|527933|527964|528277|528344|528433|536788|563627|563628|563639|563640|563645|564530|564532|566213|566219|566220|568716|569555|569558|569563|569564|569575|581763|581764|581770|590289|590290|590291|590292|590293|590294|590295|590296|609883|620350|620351|620352|620353|620820|623303|638802|638803|638804|638805|638806|638807|638808|638809|638810|638811|638812|638813|638814|638815|638816|638817|638818|638819|638820|638821|642128|654582|683143|684140|684143|684144|684145|684146|684147|684148|684149|684150|684151|684153|684154|684155|684158|684159|684160|684161|684162|684163|684164|684165|684454|684456|684457|684458|684459|684460|684461|685266|685267|685268|685269|685392|687597|687601|687602|687603|687607|688242|688244|690074|739131|767686|783571|783575|784660|787658|788840|790955|799602|818277|818278|818279|818280|818281|836728|836729|836730|836731|836732|836733|836734|836735|836736|836737|836738|836739|836740|836741|836742|836743|836744|841091|851768|925774|925775|925776|925777|934992|934993|934994|934995|934996|934997|934998|934999|935000|935001|935002|936525|936526|936527|946847|956021|956022|956023|956024|957157", "text": "Imerslund-Gr\u00e4sbeck syndrome" }, { - "baseId": "21728|21729|39247|70969|71390|71398|227336|259935|273570|309810|309811|309820|309822|309823|309825|309826|309828|309834|309842|309844|309848|309849|309854|309867|309869|309872|309873|309877|309879|309880|309881|309885|309888|309892|309895|309897|309899|309900|309909|309910|309915|309920|309922|309928|309930|309938|309940|309945|309957|309958|309960|309961|309963|309965|309966|314740|314741|314742|314743|314746|314747|314748|314749|314750|314751|314757|314759|314760|314762|314770|314775|314778|314780|314782|314783|314791|314798|314799|314808|314813|314819|314821|314822|314827|314828|314831|314832|314833|314844|314846|314849|314859|314863|314864|314878|314885|314887|314890|314896|314897|314898|314901|314914|314919|314926|314931|314933|314941|314942|314943|314951|314965|314966|314967|314976|314982|314985|314986|314992|314995|314996|314999|320747|320748|320752|320756|320776|320789|320795|320799|320800|320801|320803|320804|320810|320813|320817|320822|320825|320826|320827|320832|320839|320840|320842|320843|320853|320856|320868|320869|320870|320880|320881|320901|320907|320912|320914|320918|320922|320926|320928|320930|320931|320940|320953|320954|320955|320956|320957|320959|320962|320963|320967|320976|320977|320980|320981|320982|321009|321013|321015|321016|321022|321032|321034|321040|321404|321405|321406|321409|321410|321421|321422|321429|321431|321438|321439|321443|321445|321449|321457|321463|321468|321470|321477|321480|321500|321518|321520|321523|321525|321527|321529|321532|321533|321534|321537|321538|321539|321554|321555|321556|321564|321565|321567|321570|321573|321583|321590|321598|433473|433474|433476|459738|492549|513081|513082|525021|525035|525537|536788|638807|638815|638821|684140|684142|684149|684150|684155|684161|684162|684164|685265|687599|687606|787658|799602|836731|861240|861241|865644|865645|865646|865647|865648|865649|865650|865651|865652|865653|865654|865655|865656|865657|865658|865659|865660|865661|865662|865663|865664|865665|865666|865667|865668|865669|865670|865671|865672|865673|865674|865675|865676|865677|865678|865679|865680|865681|865682|865683|865684|865685|865686|865687|865688|865689|865690|865691|865692|865693|865694|865695|865696|865697|865698|865699|865700|865701|865702|865703|865704|865705|865706|865707|865708|865709|865710|865711|865712|865713|865714|865715|865716|865717|865718|865719|865720|865721|868462|868463|868464|962728|963361", + "upstreamId": "21728|21729|39247|70969|71390|71398|227336|259935|273570|309810|309811|309820|309822|309823|309825|309826|309828|309834|309842|309844|309848|309849|309854|309867|309869|309872|309873|309877|309879|309880|309881|309885|309888|309892|309895|309897|309899|309900|309909|309910|309915|309920|309922|309928|309930|309938|309940|309945|309957|309958|309960|309961|309963|309965|309966|314740|314741|314742|314743|314746|314747|314748|314749|314750|314751|314757|314759|314760|314762|314770|314775|314778|314780|314782|314783|314791|314798|314799|314808|314813|314819|314821|314822|314827|314828|314831|314832|314833|314844|314846|314849|314859|314863|314864|314878|314885|314887|314890|314896|314897|314898|314901|314914|314919|314926|314931|314933|314941|314942|314943|314951|314965|314966|314967|314976|314982|314985|314986|314992|314995|314996|314999|320747|320748|320752|320756|320776|320789|320795|320799|320800|320801|320803|320804|320810|320813|320817|320822|320825|320826|320827|320832|320839|320840|320842|320843|320853|320856|320868|320869|320870|320880|320881|320901|320907|320912|320914|320918|320922|320926|320928|320930|320931|320940|320953|320954|320955|320956|320957|320959|320962|320963|320967|320976|320977|320980|320981|320982|321009|321013|321015|321016|321022|321032|321034|321040|321404|321405|321406|321409|321410|321421|321422|321429|321431|321438|321439|321443|321445|321449|321457|321463|321468|321470|321477|321480|321500|321518|321520|321523|321525|321527|321529|321532|321533|321534|321537|321538|321539|321554|321555|321556|321564|321565|321567|321570|321573|321583|321590|321598|433473|433474|433476|459738|492549|513081|513082|525021|525035|525537|536788|638807|638815|638821|684140|684142|684149|684150|684155|684161|684162|684164|685265|687599|687606|787658|799602|836731|861240|861241|865644|865645|865646|865647|865648|865649|865650|865651|865652|865653|865654|865655|865656|865657|865658|865659|865660|865661|865662|865663|865664|865665|865666|865667|865668|865669|865670|865671|865672|865673|865674|865675|865676|865677|865678|865679|865680|865681|865682|865683|865684|865685|865686|865687|865688|865689|865690|865691|865692|865693|865694|865695|865696|865697|865698|865699|865700|865701|865702|865703|865704|865705|865706|865707|865708|865709|865710|865711|865712|865713|865714|865715|865716|865717|865718|865719|865720|865721|868462|868463|868464|962728|963361", "text": "Imerslund-Gr\u00e4sbeck syndrome 1" }, { - "baseId": "21730|21731|21733|21734|21736|21738|21739|21742|362070|590326", + "upstreamId": "21730|21731|21733|21734|21736|21738|21739|21742|362070|590326", "text": "Symphalangism, proximal, 1A" }, { - "baseId": "21730|21735|21736|362070|362070", + "upstreamId": "21730|21735|21736|362070|362070", "text": "Tarsal-carpal coalition syndrome" }, { - "baseId": "21732|21740|21745|21746|39246|319166|319167|319210|327653|327662|327663|327688|333897|333898|333907|333929|333930|333940|333945|333973|335582|335592|335603|335621|335623|349927|362070|816042", + "upstreamId": "21732|21740|21745|21746|39246|319166|319167|319210|327653|327662|327663|327688|333897|333898|333907|333929|333930|333940|333945|333973|335582|335592|335603|335621|335623|349927|362070|816042", "text": "Symphalangism-brachydactyly syndrome" }, { - "baseId": "21741|21742|21747|362070", + "upstreamId": "21741|21742|21747|362070", "text": "Brachydactyly type B2" }, { - "baseId": "21742|21743|21744|362070|975714", + "upstreamId": "21742|21743|21744|362070|975714", "text": "Stapes ankylosis with broad thumb and toes" }, { - "baseId": "21748|21749|21750|210617|210618|277942|626098|961418", + "upstreamId": "21748|21749|21750|210617|210618|277942|626098|961418", "text": "Mitochondrial complex 1 deficiency, nuclear type 6" }, { - "baseId": "21751|21752|21753|21754|21755|21756|21757|21758|49648|138096|138097|138100|138104|138105|138106|138108|138109|139283|186096|212670|240614|240617|240618|240619|240621|253535|308258|308262|308266|308268|308269|312654|318554|318555|318558|318560|318570|318572|319060|319067|319075|319076|319080|396876|429014|438666|563228|563967|569012|578476|611355|612190|638231|836096|901976|901977|901978|901979|901980|901981|901982|901983|901984|901985|901986|901987|901988|901989|901990|901991|901992|903401|917990|917991|917992|917993|917994|917995|917996|917997|917998|917999|918001|918002|918003|918005|918006|918007|918008|918009|918010|918011|918012|918013|918014|918015|918016|918017|918018|918019|918021|918023|918024|918025|918026|918027|918028|918029|961956", + "upstreamId": "21751|21752|21753|21754|21755|21756|21757|21758|49648|138096|138097|138100|138104|138105|138106|138108|138109|139283|186096|212670|240614|240617|240618|240619|240621|253535|308258|308262|308266|308268|308269|312654|318554|318555|318558|318560|318570|318572|319060|319067|319075|319076|319080|396876|429014|438666|563228|563967|569012|578476|611355|612190|638231|836096|901976|901977|901978|901979|901980|901981|901982|901983|901984|901985|901986|901987|901988|901989|901990|901991|901992|903401|917990|917991|917992|917993|917994|917995|917996|917997|917998|917999|918001|918002|918003|918005|918006|918007|918008|918009|918010|918011|918012|918013|918014|918015|918016|918017|918018|918019|918021|918023|918024|918025|918026|918027|918028|918029|961956", "text": "Fanconi anemia, complementation group G" }, { - "baseId": "21751|21753|21754|21756|138096|138099|138100|138106|138108|138109|240614|240617|240618|240619|240621|253535|396874|396876|397463|438666|459458|460039|460042|563223|563965|638222|638226|638229|684097|684100|687493|689950|695438|836094|836098|978579", + "upstreamId": "21751|21753|21754|21756|138096|138099|138100|138106|138108|138109|240614|240617|240618|240619|240621|253535|396874|396876|397463|438666|459458|460039|460042|563223|563965|638222|638226|638229|684097|684100|687493|689950|695438|836094|836098|978579", "text": "Fanconi anemia group G" }, { - "baseId": "21760", + "upstreamId": "21760", "text": "Ventricular septal defect 2" }, { - "baseId": "21761|21762|792601", + "upstreamId": "21761|21762|792601", "text": "Atrial septal defect 8" }, { - "baseId": "21763", + "upstreamId": "21763", "text": "FAAH POLYMORPHISM" }, { - "baseId": "21764", + "upstreamId": "21764", "text": "Colorectal cancer 3" }, { - "baseId": "21765|21766|21767|21768|21769|21770|100016|100017|100018|132587|143047|143058|143059|168751|168752|168753|168754|189041|195318|196242|196242|202279|202287|202290|202297|202301|202320|202327|202328|202332|207613|264306|361912|362229|407533|407541|421698|428915|444351|458771|458775|481837|486612|488157|508833|513586|551300|552129|552130|552131|562736|581230|589818|611399|611714|613942|613943|790834|790835|790836|790837|790838|790839|790840|790841|798611|798612|800669|800915|801994|802049|802058|815840|858345|858346|858347|858591|859704|920585|961554|961612|962862|962869|964305|964306|964307|964308|964668|970408|970891|971377", + "upstreamId": "21765|21766|21767|21768|21769|21770|100016|100017|100018|132587|143047|143058|143059|168751|168752|168753|168754|189041|195318|196242|196242|202279|202287|202290|202297|202301|202320|202327|202328|202332|207613|264306|361912|362229|407533|407541|421698|428915|444351|458771|458775|481837|486612|488157|508833|513586|551300|552129|552130|552131|562736|581230|589818|611399|611714|613942|613943|790834|790835|790836|790837|790838|790839|790840|790841|798611|798612|800669|800915|801994|802049|802058|815840|858345|858346|858347|858591|859704|920585|961554|961612|962862|962869|964305|964306|964307|964308|964668|970408|970891|971377", "text": "Early infantile epileptic encephalopathy 4" }, { - "baseId": "21769|22421|22425|22428|22430|27921|27922|27923|27928|27929|34609|34614|34615|34616|34619|34620|34621|34626|34631|34632|34635|34639|34644|34645|34647|34649|34652|34654|34661|34662|39079|45412|45413|45414|45415|48359|48716|77012|79394|79396|79397|79398|79412|79415|79419|79420|79422|79425|79426|79427|79429|79432|79436|79443|79444|79445|79446|79449|79450|79451|79460|79462|79463|79466|79467|79470|79471|79476|79480|79481|79485|79489|79490|79494|79496|79498|79500|79508|79517|79522|79535|79542|79548|79550|79552|79561|79563|80297|99530|99532|99533|99537|99539|99540|99542|99543|99544|99546|99547|99549|99552|99553|99559|99561|99564|99565|99567|100017|100018|101894|106649|106651|125784|132587|134776|134778|134779|134782|134783|134784|134786|134787|134788|134789|134790|134791|135655|135689|135691|135692|135693|135695|135697|135699|135822|135824|135826|135827|139369|141717|141718|141719|141720|141721|141723|141726|141727|141729|141731|141732|141733|141734|141735|141736|141737|141741|142675|142676|142682|142683|142685|142687|142689|142771|142772|142773|142774|142775|142778|142833|142834|142837|142839|142841|142842|142843|142844|142845|142848|142849|142967|142968|142972|142974|142975|142977|142978|142980|142981|142982|142984|142985|142986|142989|142990|142991|142993|142994|142997|142998|143001|143002|143004|143005|143006|143007|143008|143009|143010|143011|143012|143013|143014|143015|143017|143018|143019|143020|143021|143023|143046|143047|143048|143049|143051|143052|143054|143057|143058|143059|143202|165903|168753|168755|168758|168759|168770|168772|168775|168777|168782|168785|168787|168788|168792|168793|168883|168884|168886|168890|177010|177069|177070|177432|177763|177787|178045|178089|178092|187701|187703|187704|187723|187731|187739|187752|187757|187771|187772|187779|187795|187802|187803|187809|187817|187821|187823|187828|187842|187854|187874|187876|187880|189041|190605|190606|190607|191002|191004|191189|191195|191250|191251|191298|191447|191522|191565|191609|191779|191780|191926|192094|192110|192288|192292|192424|192454|192737|192849|193103|193104|193106|193191|194022|194102|194348|194962|195050|195051|195052|195053|195149|195161|195354|195355|195445|195745|195753|195927|196058|196070|196242|196280|201414|201430|201432|201434|201436|201437|201446|201449|201451|201454|201455|201461|201466|201477|201478|201481|201491|201502|201504|201510|201518|201531|201534|201539|201541|201560|201564|201566|201573|201593|201597|201598|201602|201609|201610|201617|201619|201620|201624|201626|201632|201638|201640|202273|202281|202284|202285|202287|202288|202290|202291|202296|202297|202299|202301|202308|202311|202312|202313|202314|202316|202320|202324|202325|202328|202332|202338|202343|202344|202345|202347|202349|202350|202352|202353|202355|202358|202360|202361|202362|202363|202365|202369|202373|202375|202382|202384|202389|202390|202392|202394|202396|202398|202399|202401|202403|202405|202407|202408|202409|202411|202412|202421|202422|202425|202428|202431|202433|202435|202441|202449|202450|202451|202454|202455|202456|202457|202620|202623|202625|202626|202629|202630|202631|202632|202633|202637|202638|202639|202641|202644|202645|202646|202714|202716|202717|202720|202722|202726|202729|202731|202733|202735|202736|202737|202740|202741|202746|202754|202755|202756|202758|202759|202761|203690|203691|203694|203695|203698|203699|203700|203701|203703|203704|203705|203708|203714|203715|203717|203719|203724|203726|203728|203729|203730|203734|203736|203748|203750|203754|203758|203760|203766|203771|203772|203779|203788|203792|203794|203795|203799|203800|203805|203807|205293|206811|206813|206816|206886|207615|207616|207618|207915|207980|208289|208430|212125|213472|213473|213797|213802|213804|215288|217258|217263|221118|237298|237762|238297|238378|238379|238380|238381|238382|239251|239252|239253|239254|239255|239256|239257|239849|239850|240447|240467|240468|240469|240470|241557|241558|241560|241853|241854|242444|242445|242446|243022|243023|243025|243026|243588|243589|243590|246949|247714|247727|247729|247730|248493|248503|250344|253307|254608|259912|260118|260235|260377|264301|264306|264645|264882|264902|264953|267219|267587|267975|268122|268935|269722|269723|271301|271437|271459|271636|271703|271792|271794|272617|272715|282542|283182|306852|306856|306961|306969|306981|311128|311129|315310|316704|316715|316718|316905|317137|317612|322144|322150|325473|328219|328235|333192|333193|336280|346004|346012|351408|351409|354006|354008|354023|359312|359315|359410|360095|360120|360122|363873|365613|365672|365898|365899|365919|366118|369762|369804|369806|369810|369834|369842|369843|369845|369864|369878|369881|369893|369905|370202|370203|370207|370378|370380|370382|370389|370396|370397|370402|370407|370512|370639|370646|370668|370672|370680|371743|371745|372133|372186|372207|372216|372223|372248|372363|372394|372395|372416|372481|372485|372733|372760|373147|373317|373318|373353|373357|373374|373377|374389|374393|375218|375296|378186|378218|378224|378378|378388|378406|378408|378416|378417|378420|379743|379748|379749|384446|384447|391252|391413|391414|391415|391420|391422|391427|391428|391434|391436|391440|391473|391474|391484|391575|391578|391587|391590|391598|391599|391643|391644|391653|391655|391656|393640|393644|393656|393657|393659|393660|393667|393671|393677|393679|393683|393685|393858|393859|393860|393872|393879|394055|394058|394059|394066|394085|394089|394090|394091|394092|394096|394097|394943|394945|394953|394954|395119|395134|395140|395322|395323|395325|395333|395579|395595|395598|395604|396444|396451|396454|396458|396472|396473|396737|396818|396826|396862|396865|396870|397030|397036|397038|397109|397117|397118|397122|397125|398455|398773|398999|399001|399478|399480|399484|399491|399494|399689|399696|399730|399731|399733|399736|399751|399756|399834|399839|399840|399841|400220|400226|400233|400418|400436|401192|401196|401259|401978|401979|401989|401993|402624|402629|402630|402632|402633|402656|402662|402663|402665|402672|402674|402675|402678|403103|403104|403107|403112|403120|403124|403209|403210|403219|403222|403226|403691|403693|403696|403698|404188|404190|404194|404199|404201|404202|404203|404210|404843|405365|405367|405368|405393|405411|407558|408486|408707|410820|410821|410823|410824|410834|413607|413798|414844|414846|414947|415344|415696|421308|421309|421310|421314|421698|422336|422342|422343|425224|425424|425818|426174|426350|426351|426676|427833|427836|427838|427933|428208|429321|429439|429584|430042|437933|437934|438210|438651|438756|440552|440557|440559|440563|441257|441261|443014|443021|443023|443031|443035|443039|443802|444351|445041|446286|446288|446295|448101|448112|448117|448144|448528|448824|448825|448826|448830|448833|448838|448839|448842|448851|448990|448998|449015|449018|449027|449034|449073|449074|449078|449087|449107|449112|449113|449114|449115|449118|449120|449124|449125|449127|449128|449130|449131|449133|449135|449138|449139|449140|449141|449143|449145|449158|452557|452562|452564|452567|452576|452580|452583|452584|452585|452590|452846|452852|452858|452861|452862|452863|452871|452872|452873|452874|452876|452882|453106|453111|453114|453119|453126|453127|453132|453134|453142|454064|454065|455008|455012|455018|455019|455021|455022|455024|455198|455200|455201|455658|455664|455665|455912|455920|455926|455927|458126|458229|458231|458367|458371|458377|458385|458387|458392|458394|458396|458397|458401|458403|458719|458771|458775|458839|458842|458845|458849|458851|458894|458895|458900|458908|459268|459271|459349|459371|459381|459384|459394|461466|461467|461680|461991|461994|461995|462294|462299|462301|462302|462303|462309|462550|462554|462555|462562|462564|463019|463026|463027|463030|463034|463170|463175|463177|463178|463180|463345|463347|463348|463354|463356|463861|463873|463874|463877|463880|464215|464333|464339|464345|464349|464350|464357|464363|465776|465778|465780|466498|466749|466750|467836|467838|467845|467854|467857|467859|467872|467877|467883|467886|468754|468756|468757|468764|468767|469212|469216|469438|469440|469445|469575|470280|470480|470482|470483|470485|470487|470488|470490|470493|470836|470839|470845|470980|470984|470986|470987|470995|470997|471005|471462|471463|471465|471467|471471|486259|486769|486898|488830|488967|489114|489670|490316|491082|491350|491541|491793|492480|492801|492805|493534|493846|493854|498944|499108|502211|502225|502252|502477|502531|502539|502567|502929|503492|503948|503958|504051|504280|504474|504532|504534|504957|507876|511353|512214|513586|514022|514105|514279|515918|515956|515964|515967|516013|516160|516525|516538|516545|516552|516559|516566|516576|516579|516582|516584|516590|516604|516608|516609|516610|516613|516621|516623|516624|516626|516627|516628|516630|516632|516634|516641|516644|516645|516646|516647|516648|516649|516653|516654|516655|516660|516662|516663|516664|516665|516667|516680|516681|516683|516689|516696|516708|516709|516711|516717|516723|516729|516733|519437|519439|519443|519445|519448|519450|519452|519453|519454|519457|519461|519465|519469|519472|519479|519638|519643|519645|519648|519649|519687|519694|519703|519705|519710|519723|519725|519732|519740|519748|521209|521211|521215|521471|521479|521486|521488|521489|521492|521496|521543|521547|521549|521557|521561|521567|521804|521812|521816|523940|523945|524014|524017|524019|524020|524024|524026|524028|524035|524038|524040|524042|524055|524228|524315|524322|524334|524350|524352|524489|524493|524495|524555|524566|524568|524569|524571|524576|524611|524613|524617|524619|526480|526489|526542|526788|527063|527067|527213|527215|527219|527222|527227|527228|527231|527232|527235|527236|527239|527241|527249|527251|527463|527469|527474|527476|527478|527769|527771|527774|527777|528175|528225|528227|528228|528229|528231|528232|528233|528234|528237|528242|528250|528590|528595|528598|528696|528701|528707|528708|528714|530051|530052|530057|530365|530580|530582|530587|530590|530596|530599|532117|532120|532124|532131|532133|532136|532137|532141|532212|532215|532219|532492|532494|532498|532503|532515|533610|533615|533616|533624|533629|533636|533670|533673|533676|533677|533679|533682|533685|533688|533690|533692|533697|533982|534194|534202|534203|534212|536347|536822|537197|551718|557284|557343|557473|557604|557606|557608|557610|557612|557614|557616|557618|557620|557622|557624|557626|557628|557630|557632|557634|557636|557638|557640|557642|557644|557646|557648|557649|557651|557653|557655|557657|557659|557661|557663|557665|557667|557669|557671|557673|557677|557679|557681|557683|557685|557687|557689|557691|558521|558831|558833|558835|558837|558839|558841|558843|558845|558847|558849|558851|558853|558855|558857|558859|558861|558863|558865|559062|559064|559066|559068|559070|559072|559074|559320|559324|559326|559328|559330|559332|559334|559336|559338|559340|559342|559344|559346|559348|559350|559590|559592|559594|559596|559598|559600|559602|559604|560349|560351|560357|560468|560470|560472|560474|560476|561687|561692|561693|561695|561700|561702|562576|562720|562721|562726|562728|562734|562736|562826|563135|563136|563143|563152|563160|563180|563182|563406|563421|563520|563528|563530|563532|564910|565167|565491|565543|565545|565550|565551|565554|565556|565560|565561|565564|565567|565576|565578|566196|566885|566892|566901|567553|567554|567556|568092|568094|568103|568104|568108|568110|568147|568151|568153|568163|568478|568480|568533|568536|568539|568540|568955|568956|568958|568968|568969|570035|570038|570040|571009|571163|571338|571344|571347|571349|571351|571352|571355|571367|571816|571824|571825|571827|571832|571833|571835|571882|571883|571890|571893|572495|572512|572519|572520|572829|572830|572835|572959|572963|572967|572968|572970|573598|573599|573600|573602|573605|573608|573613|573618|574088|574090|574702|574703|574704|575075|575130|575131|575132|575133|577087|578919|578937|578949|579169|579184|579189|579590|579596|579601|579784|579791|579823|579827|580085|584654|584935|609020|613443|615767|621101|621102|626118|628024|628025|628026|628027|628028|628029|628030|628801|628802|628803|628804|628805|628806|628807|628808|628809|628810|628811|628812|628813|628814|628815|628816|628817|628818|628819|628820|628821|628822|628823|628824|628825|628826|628827|628828|628829|628830|628831|628832|628833|628834|628835|628836|628837|628838|628839|628840|628841|628842|628843|628844|628845|628846|628847|628848|628849|628850|628851|628852|628853|628854|628855|628856|628857|628858|628859|628860|628861|628862|628863|628864|628865|628866|628867|628868|628869|628870|628871|628872|628873|628874|628875|628876|628877|628878|628879|628880|628881|628882|628883|628884|628885|628886|631602|631603|631604|631605|631606|631607|631608|631609|631610|631611|631612|631613|631614|631615|631616|631617|631618|631619|631620|631621|631622|631623|631624|631625|631626|631627|633961|633962|633963|633964|633965|633966|633967|633968|633969|633970|633971|633972|633973|633974|637673|637674|637675|637676|637677|637746|637747|637748|637749|637750|637751|637752|637753|637754|637755|637756|637757|637758|637759|637760|637761|637762|637763|637764|637765|637766|637767|640470|640471|640472|640473|640474|640475|640476|640477|640478|641196|641197|641198|641199|641200|641201|641202|641203|641204|641205|641206|641207|641208|641209|641210|641211|641212|641213|641214|641215|641216|641217|641218|641219|641220|641221|641222|641223|641224|641225|641226|641227|641228|641229|641230|641231|641232|641233|641234|642526|642527|642528|642529|642530|642531|642532|642533|642534|642535|642536|644758|644759|644760|644761|644762|644763|644764|647056|647057|647058|647059|647060|647061|647062|647063|647064|647065|647066|647067|647068|647069|647070|647071|647072|647073|647074|650412|650413|650414|650418|650422|650426|650428|650430|650433|650434|650436|650438|650443|650444|650447|650450|650452|650453|650461|650464|650468|650470|650471|650473|650480|650718|650777|650780|650852|650857|650894|650898|650912|650914|650920|651085|651119|651215|651256|651323|651822|651834|651899|651907|652107|652109|652240|652269|652681|653066|653092|653106|653111|653186|653536|653538|653640|655891|655898|678964|678965|678966|678967|679939|683590|683591|683736|683738|684052|684332|684333|684500|684502|684503|684606|684607|684608|684609|684732|684733|684734|684736|684737|684738|684739|684893|684894|684895|685149|685150|685151|685794|686442|686443|686445|686448|686748|686750|686751|686755|687362|687363|687364|687378|687379|687385|687386|687387|687388|688013|688014|688016|688017|688018|688019|688020|688021|688022|688023|688024|688315|688318|688321|688322|688323|688616|688618|688619|688620|688875|688876|688877|688878|689218|689219|689221|689222|689675|689744|689796|690085|690145|690236|691456|693898|694239|694582|694587|694590|694592|694594|695417|695851|695852|698186|699105|702936|717136|721470|725143|728799|739269|739270|741267|742530|743739|744349|744633|746505|746507|748388|748389|748391|749523|751417|754102|754103|757666|764032|764033|764037|764039|767128|767132|767135|769189|769190|769192|769195|769196|769840|770963|774862|775475|775516|775758|776468|781755|781756|781757|783268|783269|783281|783286|783290|783291|784226|784412|784415|784416|785307|787097|787287|787337|788033|788194|790088|790091|790101|791995|791997|793850|794841|794845|798007|818821|819058|819059|819060|819062|819064|819065|819066|819067|819068|819069|819070|819071|819072|819073|819074|819075|819076|819077|819592|819593|819594|819595|819596|819597|820050|820051|820052|820053|820054|820055|820056|820385|820418|820505|820839|821308|821309|821311|821313|821339|821340|821341|821342|821343|821914|821915|821916|821917|821918|821919|821920|821951|821952|821953|821954|821955|821956|821957|821958|821965|821966|821967|821968|821969|821970|821971|821972|821973|821974|821975|821976|821977|821978|821979|821980|821981|821982|822075|822076|822077|822078|822079|822080|822081|822082|822083|822084|822085|822086|822087|822088|822119|822239|822242|822244|822245|822248|822264|822265|822266|824130|824131|824132|824133|824134|824135|824136|828363|828364|828365|828366|828367|828368|828369|828370|828371|828372|828373|828374|828375|828376|828377|828378|828379|828380|828381|828382|828383|828384|828385|828386|828387|828388|828389|828390|828391|828392|828393|828394|828395|828396|828397|828398|828399|828400|828401|828402|828403|828404|830868|830869|830870|830871|830872|830873|830874|830875|830876|830877|830878|830879|830880|830881|830882|830883|830884|830885|835457|835458|835459|835460|835461|835462|835463|835464|835465|835466|835518|835519|835520|835521|835522|835523|835524|835525|835526|835527|835528|835529|835530|835531|835532|835533|835534|835535|835536|835537|835538|835539|835540|835541|835542|835543|835544|835545|835546|835547|835548|835549|839088|839089|839090|839091|839092|839093|839094|839095|840022|840023|840024|840025|840026|840027|840028|840029|840030|840031|840032|840033|840034|840035|840036|840037|840038|840039|840040|840041|840042|840043|840044|840045|840046|840047|840048|840049|840050|840051|840052|841569|841570|841571|841572|841573|841574|841575|841576|841577|841578|843999|844000|844001|844002|846658|846659|846660|846661|846662|846663|846664|846665|846666|846667|846668|846669|846670|846671|846672|846673|848508|848509|848510|848511|848512|848513|848514|848515|848516|848517|848518|848519|848520|848521|848522|848523|848524|848525|848526|848527|848528|848529|848530|848531|848532|848533|848534|848535|848536|848537|848538|848539|848540|848541|848542|848543|848544|848545|848546|848547|848548|848549|850424|850425|850427|850429|850430|850432|850434|850435|850437|850439|850440|850442|850443|850444|850446|850448|850452|850453|850457|850462|850463|850464|850465|850466|850467|850469|850470|850471|850472|850474|850475|850477|850479|850480|850481|850487|850488|850489|850490|850493|850494|850495|850497|850499|850500|850504|850506|850508|850509|850511|850513|850514|850516|850517|850518|850521|850523|850525|850527|850529|850530|850531|850532|850534|850535|850539|850541|850542|850545|850546|850547|850556|850557|850560|850562|850563|850565|850566|850567|850568|850569|850570|850572|850573|850575|850576|850577|850579|850580|850581|850582|850583|850584|850589|850596|850597|850602|850603|850606|850608|850609|850610|850611|850613|850614|850803|850846|850848|850952|850954|851061|851063|851065|851091|851101|851105|851109|851344|851346|851348|851350|851511|851568|851570|851718|851921|852003|852160|852381|852384|852387|852390|852476|852482|852484|852641|852911|853001|853002|859043|860674|881368|904067|917732|917733|922076|922077|922078|922338|922339|922340|922341|922342|922343|922344|922345|922346|922347|922348|922349|922350|922351|922352|922353|922354|922355|922356|922357|922358|922359|922360|922361|922362|922363|922364|922365|922366|922367|922368|922369|922370|922371|922372|922373|922374|923274|923275|923276|923277|923278|923279|923280|923281|923282|924083|924084|924085|924086|924087|924088|925362|925363|925364|925365|925366|925367|925368|925369|925370|925371|925392|925393|925394|925395|925396|925397|925398|925399|925400|925401|925402|925403|926397|926398|926399|926660|926661|926662|926663|926664|926665|926666|926667|927109|927110|927111|927112|927113|927114|927115|927857|927858|927859|927860|928655|928656|928657|929237|929238|929239|929240|929241|929242|929243|929244|929245|929246|929247|929248|929249|929250|929251|929252|929253|930553|930554|930555|930914|930915|930916|930917|930918|930919|930920|930921|930922|930923|930924|930925|930926|930927|930928|930929|930930|930931|930932|930933|930934|930935|930936|930937|930938|930939|930940|930941|930942|932026|932027|932028|932029|932030|932031|932032|932033|932034|932035|932921|932922|932923|932924|932925|932926|932927|932928|934534|934535|934536|934537|934553|934554|934555|934556|934557|934558|934559|934560|934561|934562|935821|935822|935823|935824|936150|936151|936152|936153|936154|936155|936156|936157|936158|936159|936160|936161|936162|936163|936164|936165|936166|936167|936168|936169|936646|936647|936648|936649|936650|938374|938375|938376|938377|938378|939020|939021|939022|939023|939024|939025|939026|939027|939028|939029|939030|939031|939032|939033|939034|939035|939036|939037|940005|940130|940131|940451|940511|940512|940663|940664|940759|940924|941995|941996|942331|942332|942333|942334|942335|942336|942337|942338|942339|942340|942341|942342|942343|942344|942345|942346|942347|942348|942349|942350|942351|942352|942353|942354|942355|942356|942357|942358|942359|942360|942361|942362|942363|942364|942365|943633|943634|943635|943636|943637|943638|943639|943640|943641|943642|943643|943644|944633|944634|944635|946348|946349|946350|946351|946352|946353|946354|946355|946385|946386|946387|946388|946389|946390|946391|946392|946393|946394|947705|948066|948067|948068|948069|948070|948071|948072|948073|948074|948075|948076|948077|948078|948079|948080|948081|948082|948083|948594|948595|948596|948597|948598|948599|949438|949439|949440|950446|950447|950448|950449|950450|950451|950452|950453|951143|951144|951145|951146|951147|951148|951149|951150|951151|952441|952753|952754|952755|952756|952757|952758|952759|952760|952761|952762|952763|952764|953551|953552|953553|953554|953555|954177|954178|955678|955679|955680|955681|955682|955695|955696|955697|955698|955699|955700|956700|956701|956898|956899|957241|957807|958426|958427|958428|958429|958430|958431|958432|958865|958866|958867|958868|958869|958870|959588|959589|959590|959591|959702|959909|960046|960094|960257|960671|960672|960905|960942|960943|961493|961494", + "upstreamId": "21769|22421|22425|22428|22430|27921|27922|27923|27928|27929|34609|34614|34615|34616|34619|34620|34621|34626|34631|34632|34635|34639|34644|34645|34647|34649|34652|34654|34661|34662|39079|45412|45413|45414|45415|48359|48716|77012|79394|79396|79397|79398|79412|79415|79419|79420|79422|79425|79426|79427|79429|79432|79436|79443|79444|79445|79446|79449|79450|79451|79460|79462|79463|79466|79467|79470|79471|79476|79480|79481|79485|79489|79490|79494|79496|79498|79500|79508|79517|79522|79535|79542|79548|79550|79552|79561|79563|80297|99530|99532|99533|99537|99539|99540|99542|99543|99544|99546|99547|99549|99552|99553|99559|99561|99564|99565|99567|100017|100018|101894|106649|106651|125784|132587|134776|134778|134779|134782|134783|134784|134786|134787|134788|134789|134790|134791|135655|135689|135691|135692|135693|135695|135697|135699|135822|135824|135826|135827|139369|141717|141718|141719|141720|141721|141723|141726|141727|141729|141731|141732|141733|141734|141735|141736|141737|141741|142675|142676|142682|142683|142685|142687|142689|142771|142772|142773|142774|142775|142778|142833|142834|142837|142839|142841|142842|142843|142844|142845|142848|142849|142967|142968|142972|142974|142975|142977|142978|142980|142981|142982|142984|142985|142986|142989|142990|142991|142993|142994|142997|142998|143001|143002|143004|143005|143006|143007|143008|143009|143010|143011|143012|143013|143014|143015|143017|143018|143019|143020|143021|143023|143046|143047|143048|143049|143051|143052|143054|143057|143058|143059|143202|165903|168753|168755|168758|168759|168770|168772|168775|168777|168782|168785|168787|168788|168792|168793|168883|168884|168886|168890|177010|177069|177070|177432|177763|177787|178045|178089|178092|187701|187703|187704|187723|187731|187739|187752|187757|187771|187772|187779|187795|187802|187803|187809|187817|187821|187823|187828|187842|187854|187874|187876|187880|189041|190605|190606|190607|191002|191004|191189|191195|191250|191251|191298|191447|191522|191565|191609|191779|191780|191926|192094|192110|192288|192292|192424|192454|192737|192849|193103|193104|193106|193191|194022|194102|194348|194962|195050|195051|195052|195053|195149|195161|195354|195355|195445|195745|195753|195927|196058|196070|196242|196280|201414|201430|201432|201434|201436|201437|201446|201449|201451|201454|201455|201461|201466|201477|201478|201481|201491|201502|201504|201510|201518|201531|201534|201539|201541|201560|201564|201566|201573|201593|201597|201598|201602|201609|201610|201617|201619|201620|201624|201626|201632|201638|201640|202273|202281|202284|202285|202287|202288|202290|202291|202296|202297|202299|202301|202308|202311|202312|202313|202314|202316|202320|202324|202325|202328|202332|202338|202343|202344|202345|202347|202349|202350|202352|202353|202355|202358|202360|202361|202362|202363|202365|202369|202373|202375|202382|202384|202389|202390|202392|202394|202396|202398|202399|202401|202403|202405|202407|202408|202409|202411|202412|202421|202422|202425|202428|202431|202433|202435|202441|202449|202450|202451|202454|202455|202456|202457|202620|202623|202625|202626|202629|202630|202631|202632|202633|202637|202638|202639|202641|202644|202645|202646|202714|202716|202717|202720|202722|202726|202729|202731|202733|202735|202736|202737|202740|202741|202746|202754|202755|202756|202758|202759|202761|203690|203691|203694|203695|203698|203699|203700|203701|203703|203704|203705|203708|203714|203715|203717|203719|203724|203726|203728|203729|203730|203734|203736|203748|203750|203754|203758|203760|203766|203771|203772|203779|203788|203792|203794|203795|203799|203800|203805|203807|205293|206811|206813|206816|206886|207615|207616|207618|207915|207980|208289|208430|212125|213472|213473|213797|213802|213804|215288|217258|217263|221118|237298|237762|238297|238378|238379|238380|238381|238382|239251|239252|239253|239254|239255|239256|239257|239849|239850|240447|240467|240468|240469|240470|241557|241558|241560|241853|241854|242444|242445|242446|243022|243023|243025|243026|243588|243589|243590|246949|247714|247727|247729|247730|248493|248503|250344|253307|254608|259912|260118|260235|260377|264301|264306|264645|264882|264902|264953|267219|267587|267975|268122|268935|269722|269723|271301|271437|271459|271636|271703|271792|271794|272617|272715|282542|283182|306852|306856|306961|306969|306981|311128|311129|315310|316704|316715|316718|316905|317137|317612|322144|322150|325473|328219|328235|333192|333193|336280|346004|346012|351408|351409|354006|354008|354023|359312|359315|359410|360095|360120|360122|363873|365613|365672|365898|365899|365919|366118|369762|369804|369806|369810|369834|369842|369843|369845|369864|369878|369881|369893|369905|370202|370203|370207|370378|370380|370382|370389|370396|370397|370402|370407|370512|370639|370646|370668|370672|370680|371743|371745|372133|372186|372207|372216|372223|372248|372363|372394|372395|372416|372481|372485|372733|372760|373147|373317|373318|373353|373357|373374|373377|374389|374393|375218|375296|378186|378218|378224|378378|378388|378406|378408|378416|378417|378420|379743|379748|379749|384446|384447|391252|391413|391414|391415|391420|391422|391427|391428|391434|391436|391440|391473|391474|391484|391575|391578|391587|391590|391598|391599|391643|391644|391653|391655|391656|393640|393644|393656|393657|393659|393660|393667|393671|393677|393679|393683|393685|393858|393859|393860|393872|393879|394055|394058|394059|394066|394085|394089|394090|394091|394092|394096|394097|394943|394945|394953|394954|395119|395134|395140|395322|395323|395325|395333|395579|395595|395598|395604|396444|396451|396454|396458|396472|396473|396737|396818|396826|396862|396865|396870|397030|397036|397038|397109|397117|397118|397122|397125|398455|398773|398999|399001|399478|399480|399484|399491|399494|399689|399696|399730|399731|399733|399736|399751|399756|399834|399839|399840|399841|400220|400226|400233|400418|400436|401192|401196|401259|401978|401979|401989|401993|402624|402629|402630|402632|402633|402656|402662|402663|402665|402672|402674|402675|402678|403103|403104|403107|403112|403120|403124|403209|403210|403219|403222|403226|403691|403693|403696|403698|404188|404190|404194|404199|404201|404202|404203|404210|404843|405365|405367|405368|405393|405411|407558|408486|408707|410820|410821|410823|410824|410834|413607|413798|414844|414846|414947|415344|415696|421308|421309|421310|421314|421698|422336|422342|422343|425224|425424|425818|426174|426350|426351|426676|427833|427836|427838|427933|428208|429321|429439|429584|430042|437933|437934|438210|438651|438756|440552|440557|440559|440563|441257|441261|443014|443021|443023|443031|443035|443039|443802|444351|445041|446286|446288|446295|448101|448112|448117|448144|448528|448824|448825|448826|448830|448833|448838|448839|448842|448851|448990|448998|449015|449018|449027|449034|449073|449074|449078|449087|449107|449112|449113|449114|449115|449118|449120|449124|449125|449127|449128|449130|449131|449133|449135|449138|449139|449140|449141|449143|449145|449158|452557|452562|452564|452567|452576|452580|452583|452584|452585|452590|452846|452852|452858|452861|452862|452863|452871|452872|452873|452874|452876|452882|453106|453111|453114|453119|453126|453127|453132|453134|453142|454064|454065|455008|455012|455018|455019|455021|455022|455024|455198|455200|455201|455658|455664|455665|455912|455920|455926|455927|458126|458229|458231|458367|458371|458377|458385|458387|458392|458394|458396|458397|458401|458403|458719|458771|458775|458839|458842|458845|458849|458851|458894|458895|458900|458908|459268|459271|459349|459371|459381|459384|459394|461466|461467|461680|461991|461994|461995|462294|462299|462301|462302|462303|462309|462550|462554|462555|462562|462564|463019|463026|463027|463030|463034|463170|463175|463177|463178|463180|463345|463347|463348|463354|463356|463861|463873|463874|463877|463880|464215|464333|464339|464345|464349|464350|464357|464363|465776|465778|465780|466498|466749|466750|467836|467838|467845|467854|467857|467859|467872|467877|467883|467886|468754|468756|468757|468764|468767|469212|469216|469438|469440|469445|469575|470280|470480|470482|470483|470485|470487|470488|470490|470493|470836|470839|470845|470980|470984|470986|470987|470995|470997|471005|471462|471463|471465|471467|471471|486259|486769|486898|488830|488967|489114|489670|490316|491082|491350|491541|491793|492480|492801|492805|493534|493846|493854|498944|499108|502211|502225|502252|502477|502531|502539|502567|502929|503492|503948|503958|504051|504280|504474|504532|504534|504957|507876|511353|512214|513586|514022|514105|514279|515918|515956|515964|515967|516013|516160|516525|516538|516545|516552|516559|516566|516576|516579|516582|516584|516590|516604|516608|516609|516610|516613|516621|516623|516624|516626|516627|516628|516630|516632|516634|516641|516644|516645|516646|516647|516648|516649|516653|516654|516655|516660|516662|516663|516664|516665|516667|516680|516681|516683|516689|516696|516708|516709|516711|516717|516723|516729|516733|519437|519439|519443|519445|519448|519450|519452|519453|519454|519457|519461|519465|519469|519472|519479|519638|519643|519645|519648|519649|519687|519694|519703|519705|519710|519723|519725|519732|519740|519748|521209|521211|521215|521471|521479|521486|521488|521489|521492|521496|521543|521547|521549|521557|521561|521567|521804|521812|521816|523940|523945|524014|524017|524019|524020|524024|524026|524028|524035|524038|524040|524042|524055|524228|524315|524322|524334|524350|524352|524489|524493|524495|524555|524566|524568|524569|524571|524576|524611|524613|524617|524619|526480|526489|526542|526788|527063|527067|527213|527215|527219|527222|527227|527228|527231|527232|527235|527236|527239|527241|527249|527251|527463|527469|527474|527476|527478|527769|527771|527774|527777|528175|528225|528227|528228|528229|528231|528232|528233|528234|528237|528242|528250|528590|528595|528598|528696|528701|528707|528708|528714|530051|530052|530057|530365|530580|530582|530587|530590|530596|530599|532117|532120|532124|532131|532133|532136|532137|532141|532212|532215|532219|532492|532494|532498|532503|532515|533610|533615|533616|533624|533629|533636|533670|533673|533676|533677|533679|533682|533685|533688|533690|533692|533697|533982|534194|534202|534203|534212|536347|536822|537197|551718|557284|557343|557473|557604|557606|557608|557610|557612|557614|557616|557618|557620|557622|557624|557626|557628|557630|557632|557634|557636|557638|557640|557642|557644|557646|557648|557649|557651|557653|557655|557657|557659|557661|557663|557665|557667|557669|557671|557673|557677|557679|557681|557683|557685|557687|557689|557691|558521|558831|558833|558835|558837|558839|558841|558843|558845|558847|558849|558851|558853|558855|558857|558859|558861|558863|558865|559062|559064|559066|559068|559070|559072|559074|559320|559324|559326|559328|559330|559332|559334|559336|559338|559340|559342|559344|559346|559348|559350|559590|559592|559594|559596|559598|559600|559602|559604|560349|560351|560357|560468|560470|560472|560474|560476|561687|561692|561693|561695|561700|561702|562576|562720|562721|562726|562728|562734|562736|562826|563135|563136|563143|563152|563160|563180|563182|563406|563421|563520|563528|563530|563532|564910|565167|565491|565543|565545|565550|565551|565554|565556|565560|565561|565564|565567|565576|565578|566196|566885|566892|566901|567553|567554|567556|568092|568094|568103|568104|568108|568110|568147|568151|568153|568163|568478|568480|568533|568536|568539|568540|568955|568956|568958|568968|568969|570035|570038|570040|571009|571163|571338|571344|571347|571349|571351|571352|571355|571367|571816|571824|571825|571827|571832|571833|571835|571882|571883|571890|571893|572495|572512|572519|572520|572829|572830|572835|572959|572963|572967|572968|572970|573598|573599|573600|573602|573605|573608|573613|573618|574088|574090|574702|574703|574704|575075|575130|575131|575132|575133|577087|578919|578937|578949|579169|579184|579189|579590|579596|579601|579784|579791|579823|579827|580085|584654|584935|609020|613443|615767|621101|621102|626118|628024|628025|628026|628027|628028|628029|628030|628801|628802|628803|628804|628805|628806|628807|628808|628809|628810|628811|628812|628813|628814|628815|628816|628817|628818|628819|628820|628821|628822|628823|628824|628825|628826|628827|628828|628829|628830|628831|628832|628833|628834|628835|628836|628837|628838|628839|628840|628841|628842|628843|628844|628845|628846|628847|628848|628849|628850|628851|628852|628853|628854|628855|628856|628857|628858|628859|628860|628861|628862|628863|628864|628865|628866|628867|628868|628869|628870|628871|628872|628873|628874|628875|628876|628877|628878|628879|628880|628881|628882|628883|628884|628885|628886|631602|631603|631604|631605|631606|631607|631608|631609|631610|631611|631612|631613|631614|631615|631616|631617|631618|631619|631620|631621|631622|631623|631624|631625|631626|631627|633961|633962|633963|633964|633965|633966|633967|633968|633969|633970|633971|633972|633973|633974|637673|637674|637675|637676|637677|637746|637747|637748|637749|637750|637751|637752|637753|637754|637755|637756|637757|637758|637759|637760|637761|637762|637763|637764|637765|637766|637767|640470|640471|640472|640473|640474|640475|640476|640477|640478|641196|641197|641198|641199|641200|641201|641202|641203|641204|641205|641206|641207|641208|641209|641210|641211|641212|641213|641214|641215|641216|641217|641218|641219|641220|641221|641222|641223|641224|641225|641226|641227|641228|641229|641230|641231|641232|641233|641234|642526|642527|642528|642529|642530|642531|642532|642533|642534|642535|642536|644758|644759|644760|644761|644762|644763|644764|647056|647057|647058|647059|647060|647061|647062|647063|647064|647065|647066|647067|647068|647069|647070|647071|647072|647073|647074|650412|650413|650414|650418|650422|650426|650428|650430|650433|650434|650436|650438|650443|650444|650447|650450|650452|650453|650461|650464|650468|650470|650471|650473|650480|650718|650777|650780|650852|650857|650894|650898|650912|650914|650920|651085|651119|651215|651256|651323|651822|651834|651899|651907|652107|652109|652240|652269|652681|653066|653092|653106|653111|653186|653536|653538|653640|655891|655898|678964|678965|678966|678967|679939|683590|683591|683736|683738|684052|684332|684333|684500|684502|684503|684606|684607|684608|684609|684732|684733|684734|684736|684737|684738|684739|684893|684894|684895|685149|685150|685151|685794|686442|686443|686445|686448|686748|686750|686751|686755|687362|687363|687364|687378|687379|687385|687386|687387|687388|688013|688014|688016|688017|688018|688019|688020|688021|688022|688023|688024|688315|688318|688321|688322|688323|688616|688618|688619|688620|688875|688876|688877|688878|689218|689219|689221|689222|689675|689744|689796|690085|690145|690236|691456|693898|694239|694582|694587|694590|694592|694594|695417|695851|695852|698186|699105|702936|717136|721470|725143|728799|739269|739270|741267|742530|743739|744349|744633|746505|746507|748388|748389|748391|749523|751417|754102|754103|757666|764032|764033|764037|764039|767128|767132|767135|769189|769190|769192|769195|769196|769840|770963|774862|775475|775516|775758|776468|781755|781756|781757|783268|783269|783281|783286|783290|783291|784226|784412|784415|784416|785307|787097|787287|787337|788033|788194|790088|790091|790101|791995|791997|793850|794841|794845|798007|818821|819058|819059|819060|819062|819064|819065|819066|819067|819068|819069|819070|819071|819072|819073|819074|819075|819076|819077|819592|819593|819594|819595|819596|819597|820050|820051|820052|820053|820054|820055|820056|820385|820418|820505|820839|821308|821309|821311|821313|821339|821340|821341|821342|821343|821914|821915|821916|821917|821918|821919|821920|821951|821952|821953|821954|821955|821956|821957|821958|821965|821966|821967|821968|821969|821970|821971|821972|821973|821974|821975|821976|821977|821978|821979|821980|821981|821982|822075|822076|822077|822078|822079|822080|822081|822082|822083|822084|822085|822086|822087|822088|822119|822239|822242|822244|822245|822248|822264|822265|822266|824130|824131|824132|824133|824134|824135|824136|828363|828364|828365|828366|828367|828368|828369|828370|828371|828372|828373|828374|828375|828376|828377|828378|828379|828380|828381|828382|828383|828384|828385|828386|828387|828388|828389|828390|828391|828392|828393|828394|828395|828396|828397|828398|828399|828400|828401|828402|828403|828404|830868|830869|830870|830871|830872|830873|830874|830875|830876|830877|830878|830879|830880|830881|830882|830883|830884|830885|835457|835458|835459|835460|835461|835462|835463|835464|835465|835466|835518|835519|835520|835521|835522|835523|835524|835525|835526|835527|835528|835529|835530|835531|835532|835533|835534|835535|835536|835537|835538|835539|835540|835541|835542|835543|835544|835545|835546|835547|835548|835549|839088|839089|839090|839091|839092|839093|839094|839095|840022|840023|840024|840025|840026|840027|840028|840029|840030|840031|840032|840033|840034|840035|840036|840037|840038|840039|840040|840041|840042|840043|840044|840045|840046|840047|840048|840049|840050|840051|840052|841569|841570|841571|841572|841573|841574|841575|841576|841577|841578|843999|844000|844001|844002|846658|846659|846660|846661|846662|846663|846664|846665|846666|846667|846668|846669|846670|846671|846672|846673|848508|848509|848510|848511|848512|848513|848514|848515|848516|848517|848518|848519|848520|848521|848522|848523|848524|848525|848526|848527|848528|848529|848530|848531|848532|848533|848534|848535|848536|848537|848538|848539|848540|848541|848542|848543|848544|848545|848546|848547|848548|848549|850424|850425|850427|850429|850430|850432|850434|850435|850437|850439|850440|850442|850443|850444|850446|850448|850452|850453|850457|850462|850463|850464|850465|850466|850467|850469|850470|850471|850472|850474|850475|850477|850479|850480|850481|850487|850488|850489|850490|850493|850494|850495|850497|850499|850500|850504|850506|850508|850509|850511|850513|850514|850516|850517|850518|850521|850523|850525|850527|850529|850530|850531|850532|850534|850535|850539|850541|850542|850545|850546|850547|850556|850557|850560|850562|850563|850565|850566|850567|850568|850569|850570|850572|850573|850575|850576|850577|850579|850580|850581|850582|850583|850584|850589|850596|850597|850602|850603|850606|850608|850609|850610|850611|850613|850614|850803|850846|850848|850952|850954|851061|851063|851065|851091|851101|851105|851109|851344|851346|851348|851350|851511|851568|851570|851718|851921|852003|852160|852381|852384|852387|852390|852476|852482|852484|852641|852911|853001|853002|859043|860674|881368|904067|917732|917733|922076|922077|922078|922338|922339|922340|922341|922342|922343|922344|922345|922346|922347|922348|922349|922350|922351|922352|922353|922354|922355|922356|922357|922358|922359|922360|922361|922362|922363|922364|922365|922366|922367|922368|922369|922370|922371|922372|922373|922374|923274|923275|923276|923277|923278|923279|923280|923281|923282|924083|924084|924085|924086|924087|924088|925362|925363|925364|925365|925366|925367|925368|925369|925370|925371|925392|925393|925394|925395|925396|925397|925398|925399|925400|925401|925402|925403|926397|926398|926399|926660|926661|926662|926663|926664|926665|926666|926667|927109|927110|927111|927112|927113|927114|927115|927857|927858|927859|927860|928655|928656|928657|929237|929238|929239|929240|929241|929242|929243|929244|929245|929246|929247|929248|929249|929250|929251|929252|929253|930553|930554|930555|930914|930915|930916|930917|930918|930919|930920|930921|930922|930923|930924|930925|930926|930927|930928|930929|930930|930931|930932|930933|930934|930935|930936|930937|930938|930939|930940|930941|930942|932026|932027|932028|932029|932030|932031|932032|932033|932034|932035|932921|932922|932923|932924|932925|932926|932927|932928|934534|934535|934536|934537|934553|934554|934555|934556|934557|934558|934559|934560|934561|934562|935821|935822|935823|935824|936150|936151|936152|936153|936154|936155|936156|936157|936158|936159|936160|936161|936162|936163|936164|936165|936166|936167|936168|936169|936646|936647|936648|936649|936650|938374|938375|938376|938377|938378|939020|939021|939022|939023|939024|939025|939026|939027|939028|939029|939030|939031|939032|939033|939034|939035|939036|939037|940005|940130|940131|940451|940511|940512|940663|940664|940759|940924|941995|941996|942331|942332|942333|942334|942335|942336|942337|942338|942339|942340|942341|942342|942343|942344|942345|942346|942347|942348|942349|942350|942351|942352|942353|942354|942355|942356|942357|942358|942359|942360|942361|942362|942363|942364|942365|943633|943634|943635|943636|943637|943638|943639|943640|943641|943642|943643|943644|944633|944634|944635|946348|946349|946350|946351|946352|946353|946354|946355|946385|946386|946387|946388|946389|946390|946391|946392|946393|946394|947705|948066|948067|948068|948069|948070|948071|948072|948073|948074|948075|948076|948077|948078|948079|948080|948081|948082|948083|948594|948595|948596|948597|948598|948599|949438|949439|949440|950446|950447|950448|950449|950450|950451|950452|950453|951143|951144|951145|951146|951147|951148|951149|951150|951151|952441|952753|952754|952755|952756|952757|952758|952759|952760|952761|952762|952763|952764|953551|953552|953553|953554|953555|954177|954178|955678|955679|955680|955681|955682|955695|955696|955697|955698|955699|955700|956700|956701|956898|956899|957241|957807|958426|958427|958428|958429|958430|958431|958432|958865|958866|958867|958868|958869|958870|959588|959589|959590|959591|959702|959909|960046|960094|960257|960671|960672|960905|960942|960943|961493|961494", "text": "Infantile epileptic dyskinetic encephalopathy" }, { - "baseId": "21769|168753|189041|195318|196242|202274|202282|202290|202297|202301|202306|202308|202311|202328|202332|259912|264301|264306|264460|369748|370220|372128|407533|407542|421588|444353|481837|495398|511783|536347|536759|961612|972835|972836|972849|972850|972945|972946|972947|972948|972949|972950|972951|972952|972953", + "upstreamId": "21769|168753|189041|195318|196242|202274|202282|202290|202297|202301|202306|202308|202311|202328|202332|259912|264301|264306|264460|369748|370220|372128|407533|407542|421588|444353|481837|495398|511783|536347|536759|961612|972835|972836|972849|972850|972945|972946|972947|972948|972949|972950|972951|972952|972953", "text": "Infantile epilepsy syndrome" }, { - "baseId": "21771", + "upstreamId": "21771", "text": "Glycerol release during exercise, defective" }, { - "baseId": "21772|21773|21774|21775|21776|21777|21778|21779|21780|21781|21782|21783|21784|335218|335220|335222|335228|335232|335240|335241|335243|335245|335250|335253|335256|335263|335271|335272|335273|345043|345044|345048|345049|345053|345056|345058|345060|345062|345066|345068|345075|345078|345086|345089|345091|345096|349857|349860|349861|349864|349865|349868|349870|349871|349872|349873|349879|349880|350872|350873|350876|350877|350880|350881|350884|350885|350888|350889|350892|350893|350896|350898|350899|410746|410747|446218|446219|470333|470335|470879|533486|533535|533540|533541|533542|533552|534058|575085|575086|575087|614473|648611|648612|648613|648614|648615|648616|648617|648620|648621|648623|648624|648626|648627|648628|648629|648630|653210|728599|742348|757446|757448|757452|760880|773069|788936|791978|800172|848287|848289|885982|885983|885984|885985|885986|885987|885988|885989|885990|885991|885992|885993|885994|885995|885996|885997|885998|885999|886000|886001|886002|886003|886004|886005|886006|886007|886008|886009|887450|887451|887452|887453", + "upstreamId": "21772|21773|21774|21775|21776|21777|21778|21779|21780|21781|21782|21783|21784|335218|335220|335222|335228|335232|335240|335241|335243|335245|335250|335253|335256|335263|335271|335272|335273|345043|345044|345048|345049|345053|345056|345058|345060|345062|345066|345068|345075|345078|345086|345089|345091|345096|349857|349860|349861|349864|349865|349868|349870|349871|349872|349873|349879|349880|350872|350873|350876|350877|350880|350881|350884|350885|350888|350889|350892|350893|350896|350898|350899|410746|410747|446218|446219|470333|470335|470879|533486|533535|533540|533541|533542|533552|534058|575085|575086|575087|614473|648611|648612|648613|648614|648615|648616|648617|648620|648621|648623|648624|648626|648627|648628|648629|648630|653210|728599|742348|757446|757448|757452|760880|773069|788936|791978|800172|848287|848289|885982|885983|885984|885985|885986|885987|885988|885989|885990|885991|885992|885993|885994|885995|885996|885997|885998|885999|886000|886001|886002|886003|886004|886005|886006|886007|886008|886009|887450|887451|887452|887453", "text": "Immunodeficiency-centromeric instability-facial anomalies syndrome 1" }, { - "baseId": "21773|243960|244090|609141|609142|672325|672326|672327|672328|672329|672330|672331|672332|729636|794150|794151|794152|794153|794154|798977|857360|980824|980825|980826|980827|980828|984051|984054|984055|984056|984058|984059|984060|984061", + "upstreamId": "21773|243960|244090|609141|609142|672325|672326|672327|672328|672329|672330|672331|672332|729636|794150|794151|794152|794153|794154|798977|857360|980824|980825|980826|980827|980828|984051|984054|984055|984056|984058|984059|984060|984061", "text": "Non-obstructive azoospermia" }, { - "baseId": "21785|79449", + "upstreamId": "21785|79449", "text": "Epileptic encephalopathy Lennox-Gastaut type" }, { - "baseId": "21786|513183|919845|965236", + "upstreamId": "21786|513183|919845|965236", "text": "Transposition of the great arteries, dextro-looped 3" }, { - "baseId": "21786|76323|513182", + "upstreamId": "21786|76323|513182", "text": "Bilateral right-sidedness sequence" }, { - "baseId": "21786|141158|181174|213449|222804|468595|469512|469947|469948|469951|469952|469955|469964|469965|470559|470562|470566|470567|513183|532788|532791|532796|532798|532862|532864|532866|532868|533229|533236|570619|572291|572298|572303|574919|574920|622454|647851|647852|647853|647854|647855|647856|647857|647858|647859|695816|704866|756849|756852|772534|772536|786119|789800|789801|789802|847455|847456|847457|847458|847459|852325|928900|928901|928902|938621|938622|938623|940478|950722|950723|950724|958580|958581", + "upstreamId": "21786|141158|181174|213449|222804|468595|469512|469947|469948|469951|469952|469955|469964|469965|470559|470562|470566|470567|513183|532788|532791|532796|532798|532862|532864|532866|532868|533229|533236|570619|572291|572298|572303|574919|574920|622454|647851|647852|647853|647854|647855|647856|647857|647858|647859|695816|704866|756849|756852|772534|772536|786119|789800|789801|789802|847455|847456|847457|847458|847459|852325|928900|928901|928902|938621|938622|938623|940478|950722|950723|950724|958580|958581", "text": "Epilepsy, progressive myoclonic 8" }, { - "baseId": "21788|70500|213449|222804|256844|256845|256846|259934|273238|280896|281031|290151|290162|290177|290178|290182|290211|290229|290231|290232|290955|290977|291011|291014|294038|294108|294180|294234|294266|294285|294286|294287|294288|294290|294576|294600|294624|315800|403213|403256|403257|403665|403706|468591|469493|469498|469505|470554|470557|532770|532771|532789|532858|532860|574918|647846|647847|647848|647849|647850|684784|847452|847453|847454|861285|950721|958579", + "upstreamId": "21788|70500|213449|222804|256844|256845|256846|259934|273238|280896|281031|290151|290162|290177|290178|290182|290211|290229|290231|290232|290955|290977|291011|291014|294038|294108|294180|294234|294266|294285|294286|294287|294288|294290|294576|294600|294624|315800|403213|403256|403257|403665|403706|468591|469493|469498|469505|470554|470557|532770|532771|532789|532858|532860|574918|647846|647847|647848|647849|647850|684784|847452|847453|847454|861285|950721|958579", "text": "Heterotaxia" }, { - "baseId": "21789|21790|21791|168536|168538|168539|207277|207280|214162|428464|508807|788783", + "upstreamId": "21789|21790|21791|168536|168538|168539|207277|207280|214162|428464|508807|788783", "text": "Pseudo-TORCH syndrome 1" }, { - "baseId": "21793|21794|21795|21796|45341|45342|45343|45345|53747|54170|54171|54172|54173|54174|54175|54176|54177|54179|54180|54181|54182|54183|54185|54188|54190|54191|54192|54193|54195|54196|54197|54198|54199|54200|54202|54204|54205|54206|54207|54210|54214|54215|54216|54217|54218|54219|54220|54222|54223|54224|54227|54229|54230|54231|54232|54234|54235|54236|54237|54238|54239|54240|54241|54243|54244|54246|54247|54248|54250|54251|54252|54253|54254|54255|54256|54257|54259|54882|56311|56820|57054|89863|142394|142395|142396|142397|171150|171151|175721|175723|175724|175726|175728|175729|175730|175731|175861|175862|175863|175864|175866|175867|175869|175870|175871|177957|178655|186418|186421|186423|186425|186427|186430|186431|189909|189910|189911|193556|198383|198384|198385|198387|198389|198393|198398|198401|198402|198403|198406|198410|198414|198415|198416|198417|198418|198420|198421|198423|198425|198427|198430|198431|198433|198434|198436|198437|198438|198441|198442|198443|198445|198446|198448|198450|198451|198452|198454|198455|198458|222251|224448|230310|230312|230313|230314|230316|230317|230319|230320|230322|230323|241546|241547|241548|241549|241550|241551|248509|258751|260506|260508|260516|260528|260537|260539|260540|260542|260543|316928|316929|316934|316944|316945|316953|316954|324526|324551|324552|324554|324555|324556|324557|324563|324566|324569|324573|330718|330719|330727|330732|330743|330749|330750|330753|330767|330778|332116|332118|332121|332124|332128|332132|332141|332147|332167|332171|332175|361874|361875|372261|373007|373019|373215|373227|373229|373240|375083|390140|398511|398960|398962|398965|398966|398970|398978|398980|399126|399132|399138|399446|399448|399450|399453|399682|399684|399693|399694|399695|399698|399704|399705|399707|399709|399711|399712|408639|408642|408644|415332|425971|425973|437672|444980|444983|444988|461581|461784|462130|462133|462135|462137|462138|462139|462141|462386|462399|462402|462417|462424|462425|462430|462896|462901|462912|462913|462930|462931|462934|462937|463033|463039|463041|463043|463044|463048|482018|487338|487340|487343|487360|487365|497223|508872|508873|508874|508875|508876|510397|510398|510404|512854|512855|512931|512932|522209|522217|527107|527109|527114|527116|527117|527121|527124|527152|527154|527156|527369|527385|527386|527392|527393|527396|527400|527406|527612|527613|527616|565010|565428|565429|565434|565436|565438|565443|566286|566812|566814|566816|566823|566824|566827|567635|568001|568004|568005|568008|568010|568014|568020|568021|571154|571793|571809|571815|571818|571820|571822|571823|571826|571829|615047|615049|617900|617901|617904|617909|641079|641080|641081|641082|641083|641084|641085|641086|641087|641088|641089|641090|641091|641092|641093|641094|641095|641096|641097|641098|641099|641100|641101|641102|641103|652241|652381|652486|652645|676917|685379|687982|687983|687984|687985|695563|702297|738619|769098|784374|820494|820495|820496|820497|820498|820499|820500|820501|820502|839860|839861|839862|839863|839864|839865|839866|839867|839868|839869|839870|839871|839872|839873|839874|839875|839876|839877|839878|839879|869727|869728|869729|869730|869731|869732|869733|869734|869735|869736|869737|869738|869739|869740|872231|872232|911929|911931|911938|911947|911989|912006|912029|912034|912047|912060|912067|912076|919427|926611|926612|926613|926614|936095|936096|936097|936098|936099|936100|936101|936102|936103|936104|936105|936106|936107|936108|940264|940265|940266|947991|947992|947993|947994|947995|947996|947997|947998|947999|948000|956857|956858|956859|956860|956861|956862|960039|960040|960041|967197|967198|981791", + "upstreamId": "21793|21794|21795|21796|45341|45342|45343|45345|53747|54170|54171|54172|54173|54174|54175|54176|54177|54179|54180|54181|54182|54183|54185|54188|54190|54191|54192|54193|54195|54196|54197|54198|54199|54200|54202|54204|54205|54206|54207|54210|54214|54215|54216|54217|54218|54219|54220|54222|54223|54224|54227|54229|54230|54231|54232|54234|54235|54236|54237|54238|54239|54240|54241|54243|54244|54246|54247|54248|54250|54251|54252|54253|54254|54255|54256|54257|54259|54882|56311|56820|57054|89863|142394|142395|142396|142397|171150|171151|175721|175723|175724|175726|175728|175729|175730|175731|175861|175862|175863|175864|175866|175867|175869|175870|175871|177957|178655|186418|186421|186423|186425|186427|186430|186431|189909|189910|189911|193556|198383|198384|198385|198387|198389|198393|198398|198401|198402|198403|198406|198410|198414|198415|198416|198417|198418|198420|198421|198423|198425|198427|198430|198431|198433|198434|198436|198437|198438|198441|198442|198443|198445|198446|198448|198450|198451|198452|198454|198455|198458|222251|224448|230310|230312|230313|230314|230316|230317|230319|230320|230322|230323|241546|241547|241548|241549|241550|241551|248509|258751|260506|260508|260516|260528|260537|260539|260540|260542|260543|316928|316929|316934|316944|316945|316953|316954|324526|324551|324552|324554|324555|324556|324557|324563|324566|324569|324573|330718|330719|330727|330732|330743|330749|330750|330753|330767|330778|332116|332118|332121|332124|332128|332132|332141|332147|332167|332171|332175|361874|361875|372261|373007|373019|373215|373227|373229|373240|375083|390140|398511|398960|398962|398965|398966|398970|398978|398980|399126|399132|399138|399446|399448|399450|399453|399682|399684|399693|399694|399695|399698|399704|399705|399707|399709|399711|399712|408639|408642|408644|415332|425971|425973|437672|444980|444983|444988|461581|461784|462130|462133|462135|462137|462138|462139|462141|462386|462399|462402|462417|462424|462425|462430|462896|462901|462912|462913|462930|462931|462934|462937|463033|463039|463041|463043|463044|463048|482018|487338|487340|487343|487360|487365|497223|508872|508873|508874|508875|508876|510397|510398|510404|512854|512855|512931|512932|522209|522217|527107|527109|527114|527116|527117|527121|527124|527152|527154|527156|527369|527385|527386|527392|527393|527396|527400|527406|527612|527613|527616|565010|565428|565429|565434|565436|565438|565443|566286|566812|566814|566816|566823|566824|566827|567635|568001|568004|568005|568008|568010|568014|568020|568021|571154|571793|571809|571815|571818|571820|571822|571823|571826|571829|615047|615049|617900|617901|617904|617909|641079|641080|641081|641082|641083|641084|641085|641086|641087|641088|641089|641090|641091|641092|641093|641094|641095|641096|641097|641098|641099|641100|641101|641102|641103|652241|652381|652486|652645|676917|685379|687982|687983|687984|687985|695563|702297|738619|769098|784374|820494|820495|820496|820497|820498|820499|820500|820501|820502|839860|839861|839862|839863|839864|839865|839866|839867|839868|839869|839870|839871|839872|839873|839874|839875|839876|839877|839878|839879|869727|869728|869729|869730|869731|869732|869733|869734|869735|869736|869737|869738|869739|869740|872231|872232|911929|911931|911938|911947|911989|912006|912029|912034|912047|912060|912067|912076|919427|926611|926612|926613|926614|936095|936096|936097|936098|936099|936100|936101|936102|936103|936104|936105|936106|936107|936108|940264|940265|940266|947991|947992|947993|947994|947995|947996|947997|947998|947999|948000|956857|956858|956859|956860|956861|956862|960039|960040|960041|967197|967198|981791", "text": "Arrhythmogenic right ventricular dysplasia 9" }, { - "baseId": "21796|54194", + "upstreamId": "21796|54194", "text": "Arrhythmogenic ventricular cardiomyopathy" }, { - "baseId": "21796|176520|445196|569611|679869|858256", + "upstreamId": "21796|176520|445196|569611|679869|858256", "text": "Aborted sudden cardiac death" }, { - "baseId": "21797|21800|21801|21803|21804|21805|137503|137504|137506|137508|137511|137514|137516|137518|137521|226807|226808|242039|242040|242041|242042|255162|255166|255169|255170|400075|400082|400083|400084|400086|400090|400238|400242|400244|400250|400251|400563|400565|400570|400574|400578|400894|400896|400901|425300|429646|464178|464182|464183|464190|464191|464195|464202|464723|464726|464732|464734|464739|464740|464744|464745|464982|464987|464990|464994|464996|464997|465000|465001|465002|528731|528736|528742|528747|528761|528763|528804|528806|528809|528811|528816|529118|529125|529126|529130|529146|529147|529267|529268|529269|529272|529281|529282|529285|566996|567005|567007|568715|568717|568722|568730|568731|568736|568737|568738|568739|569202|569331|569332|569334|569337|569338|569346|569349|573222|573224|643127|643128|643129|643130|643131|643132|643133|643134|643135|643136|643137|643138|643139|643140|643141|643142|643143|643144|643145|643146|643147|643148|643149|643150|643151|643152|643153|643154|643155|652558|652728|688403|688404|688406|688410|688413|688414|690097|690098|693665|693666|693668|695638|695639|703149|703150|760157|778241|784900|784901|820690|842248|842249|842250|842251|842252|842253|842254|842255|842256|842257|842258|842259|842260|842261|842262|842263|842264|842265|842266|842267|842268|842269|842270|842271|842272|842273|842274|842275|842276|842277|842278|842279|842280|851607|851609|852035|927301|927302|927303|927304|927305|927306|927307|927308|936901|936902|936903|936904|936905|936906|936907|936908|936909|936910|936911|936912|936913|940326|941084|941085|948859|948860|948861|948862|948863|948864|948865|948866|948867|948868|957401|957402|957403|957404|960107", + "upstreamId": "21797|21800|21801|21803|21804|21805|137503|137504|137506|137508|137511|137514|137516|137518|137521|226807|226808|242039|242040|242041|242042|255162|255166|255169|255170|400075|400082|400083|400084|400086|400090|400238|400242|400244|400250|400251|400563|400565|400570|400574|400578|400894|400896|400901|425300|429646|464178|464182|464183|464190|464191|464195|464202|464723|464726|464732|464734|464739|464740|464744|464745|464982|464987|464990|464994|464996|464997|465000|465001|465002|528731|528736|528742|528747|528761|528763|528804|528806|528809|528811|528816|529118|529125|529126|529130|529146|529147|529267|529268|529269|529272|529281|529282|529285|566996|567005|567007|568715|568717|568722|568730|568731|568736|568737|568738|568739|569202|569331|569332|569334|569337|569338|569346|569349|573222|573224|643127|643128|643129|643130|643131|643132|643133|643134|643135|643136|643137|643138|643139|643140|643141|643142|643143|643144|643145|643146|643147|643148|643149|643150|643151|643152|643153|643154|643155|652558|652728|688403|688404|688406|688410|688413|688414|690097|690098|693665|693666|693668|695638|695639|703149|703150|760157|778241|784900|784901|820690|842248|842249|842250|842251|842252|842253|842254|842255|842256|842257|842258|842259|842260|842261|842262|842263|842264|842265|842266|842267|842268|842269|842270|842271|842272|842273|842274|842275|842276|842277|842278|842279|842280|851607|851609|852035|927301|927302|927303|927304|927305|927306|927307|927308|936901|936902|936903|936904|936905|936906|936907|936908|936909|936910|936911|936912|936913|940326|941084|941085|948859|948860|948861|948862|948863|948864|948865|948866|948867|948868|957401|957402|957403|957404|960107", "text": "Mosaic variegated aneuploidy syndrome" }, { - "baseId": "21797|21799|21800|21801|21802|21803|21804|21805|21806|21807|21808|39235|39648|137506|137516|137518|242041|242043|242044|400081|400088|400254|400579|400886|400891|400896|400898|429646|432425|528761|529267|791441|791442|791443", + "upstreamId": "21797|21799|21800|21801|21802|21803|21804|21805|21806|21807|21808|39235|39648|137506|137516|137518|242041|242043|242044|400081|400088|400254|400579|400886|400891|400896|400898|429646|432425|528761|529267|791441|791442|791443", "text": "Mosaic variegated aneuploidy syndrome 1" }, { - "baseId": "21799|21800|21801|21802|21803|21804|21805|21806|21807|21808|39235|137506|137516|137518|242041|400896|528761|529267", + "upstreamId": "21799|21800|21801|21802|21803|21804|21805|21806|21807|21808|39235|137506|137516|137518|242041|400896|528761|529267", "text": "Premature chromatid separation trait" }, { - "baseId": "21809|21811|21812|21813|21814|135329|135330|172123|172124|172125|172126|172126|194546|194546|194547|195048|249840|249841|249842|249843|249844|263985|268099|268558|271095|273980|280132|280133|280134|280137|280463|280466|280467|280469|280471|280473|280474|280479|280483|280485|280485|280503|281775|281776|281778|281780|281791|281804|281804|281805|281806|281810|281811|281812|281812|281924|281926|281935|281936|281940|281940|357074|489206|490261|491457|541019|541021|541033|541038|541040|541041|541123|541124|541126|541129|541140|541142|541143|541147|541149|541153|541156|541158|541160|541162|541164|541166|541171|541173|541178|541180|541183|549520|549522|589696|619995|696619|718838|823760|864157|864158|864159|864160|864161|864162|864163|864164|864165|864166|864167|864168|864169|864170|864171|864172|864173|864174|864175|864176|865165|865166|918623|962911", + "upstreamId": "21809|21811|21812|21813|21814|135329|135330|172123|172124|172125|172126|172126|194546|194546|194547|195048|249840|249841|249842|249843|249844|263985|268099|268558|271095|273980|280132|280133|280134|280137|280463|280466|280467|280469|280471|280473|280474|280479|280483|280485|280485|280503|281775|281776|281778|281780|281791|281804|281804|281805|281806|281810|281811|281812|281812|281924|281926|281935|281936|281940|281940|357074|489206|490261|491457|541019|541021|541033|541038|541040|541041|541123|541124|541126|541129|541140|541142|541143|541147|541149|541153|541156|541158|541160|541162|541164|541166|541171|541173|541178|541180|541183|549520|549522|589696|619995|696619|718838|823760|864157|864158|864159|864160|864161|864162|864163|864164|864165|864166|864167|864168|864169|864170|864171|864172|864173|864174|864175|864176|865165|865166|918623|962911", "text": "Peroxisome biogenesis disorder 6A" }, { - "baseId": "21809|21811|21813|172123|172124|172126|193749|194546|194547|195048|237148|249842|249843|268099|271095|273428|273980|280137|280483|280503|281791|281806|281810|281811|281812|489037|489206|489447|489532|490252|490261|490945|491457|492175|541021|541123|541160|549520|549522|585867|585868|589696|589789|696619|707248|718835|718838|746350|746353|746356|761802|761803|761804|774478|818947|818948|823757|823758|823759|823760|823761|823762|823763|823764|823765|823766|851291|864168|921941|921942|930418|930419|930420|941862|941863|941864|941865|941866|952354|952355|952356|952357|952358", + "upstreamId": "21809|21811|21813|172123|172124|172126|193749|194546|194547|195048|237148|249842|249843|268099|271095|273428|273980|280137|280483|280503|281791|281806|281810|281811|281812|489037|489206|489447|489532|490252|490261|490945|491457|492175|541021|541123|541160|549520|549522|585867|585868|589696|589789|696619|707248|718835|718838|746350|746353|746356|761802|761803|761804|774478|818947|818948|823757|823758|823759|823760|823761|823762|823763|823764|823765|823766|851291|864168|921941|921942|930418|930419|930420|941862|941863|941864|941865|941866|952354|952355|952356|952357|952358", "text": "Peroxisome biogenesis disorder, complementation group 7" }, { - "baseId": "21809|21810|21811|21811|21813|172122|172123|172123|172124|172124|172125|172125|172126|172126|194546|263985|280485|281791|281804|281812|281940|357074|442785|541019|541021|541033|541038|541040|541041|541123|541124|541126|541129|541140|541142|541143|541147|541149|541153|541156|541158|541160|541162|541164|541166|541171|541173|541178|541180|541183|858729", + "upstreamId": "21809|21810|21811|21811|21813|172122|172123|172123|172124|172124|172125|172125|172126|172126|194546|263985|280485|281791|281804|281812|281940|357074|442785|541019|541021|541033|541038|541040|541041|541123|541124|541126|541129|541140|541142|541143|541147|541149|541153|541156|541158|541160|541162|541164|541166|541171|541173|541178|541180|541183|858729", "text": "Peroxisome biogenesis disorder 6B" }, { - "baseId": "21809|21813|22556|28743|98687|98689|98690|98692|98693|98694|98696|98698|98745|99009|99015|99019|99021|135330|143213|177104|177929|186748|186749|186751|186754|186755|186758|190969|192238|194546|194547|214063|226048|249842|249843|252357|252359|252360|252362|252975|252976|252977|253177|266955|267046|268099|268900|269776|270590|270884|271095|271283|271736|271739|272493|272943|273434|274209|275181|280503|281791|281806|281810|303601|307373|307376|307381|307593|311974|315355|357588|357593|357597|357610|357615|357627|415115|438678|439298|439318|442785|489037|489369|489370|489384|489389|489456|489532|489595|489836|490252|490945|491365|491457|492065|493841|494170|495238|523378|544083|544355|544619|544684|544697|544713|544760|549520|549522|549610|561811|561815|584201|585811|585868|587344|587837|587950|588430|634934|636448|637406|696619|711640|718838|722721|722723|723187|735667|735669|736326|736327|736329|746350|746352|746353|746356|750076|761800|765687|766456|766457|766462|766892|774478|775422|823757|823758|823760|831971|831972|831973|831976|831977|831979|833935|833941|833943|833945|835054|835055|851291|898505|917462|924934|934028|934029|934030|934031|934032|934033|940088|940089|945788|945789|945790|945791|945792|945793|945794|955243|955244|955245|955246|955247|955248|955249|955250|955251|955252|955253|955254|959870|959871|977527|977528|977529|977530|978219|978220|978221|978222|978402|978403|978404|978405|978406|978477|978478", + "upstreamId": "21809|21813|22556|28743|98687|98689|98690|98692|98693|98694|98696|98698|98745|99009|99015|99019|99021|135330|143213|177104|177929|186748|186749|186751|186754|186755|186758|190969|192238|194546|194547|214063|226048|249842|249843|252357|252359|252360|252362|252975|252976|252977|253177|266955|267046|268099|268900|269776|270590|270884|271095|271283|271736|271739|272493|272943|273434|274209|275181|280503|281791|281806|281810|303601|307373|307376|307381|307593|311974|315355|357588|357593|357597|357610|357615|357627|415115|438678|439298|439318|442785|489037|489369|489370|489384|489389|489456|489532|489595|489836|490252|490945|491365|491457|492065|493841|494170|495238|523378|544083|544355|544619|544684|544697|544713|544760|549520|549522|549610|561811|561815|584201|585811|585868|587344|587837|587950|588430|634934|636448|637406|696619|711640|718838|722721|722723|723187|735667|735669|736326|736327|736329|746350|746352|746353|746356|750076|761800|765687|766456|766457|766462|766892|774478|775422|823757|823758|823760|831971|831972|831973|831976|831977|831979|833935|833941|833943|833945|835054|835055|851291|898505|917462|924934|934028|934029|934030|934031|934032|934033|940088|940089|945788|945789|945790|945791|945792|945793|945794|955243|955244|955245|955246|955247|955248|955249|955250|955251|955252|955253|955254|959870|959871|977527|977528|977529|977530|978219|978220|978221|978222|978402|978403|978404|978405|978406|978477|978478", "text": "Zellweger syndrome" }, { - "baseId": "21815|21816|21817|21818|21819|21820|21821|21822|21823|21824|21825|21826|21827|21828|21829|21830|21831|21833|21834|34124|34125|34126|34127|34128|34129|39234|99609|99610|99611|99612|99613|99614|99615|99616|99617|99618|99619|99620|99621|99622|99623|99624|99626|99627|99628|99629|177006|177453|177669|177670|177671|186840|186841|186842|186843|186844|194354|194886|194887|195292|195624|195932|195933|196225|245365|246241|254316|254317|260004|264564|265726|266505|268764|269745|270522|271600|272018|272430|273390|273738|274277|274816|315065|315066|315071|315072|315073|315075|315078|315079|315087|321891|321896|321897|321900|321903|321905|327941|327942|327946|327948|327949|327951|327952|327956|327963|327965|327970|327973|327984|329055|329056|329066|329068|329072|329073|329077|329078|329086|329090|329091|358065|358066|358067|358068|358069|358070|358071|358072|358073|358074|358075|358076|358077|358078|358079|371677|372666|384408|384409|408465|408466|421885|425943|433097|433098|438709|444884|461667|461979|481360|491417|492188|492787|493274|493276|504008|511941|511942|511943|527046|546305|546307|546315|546316|546320|546322|546324|546328|546329|546339|546343|546347|546357|546365|546367|546375|546379|546541|546545|546548|546550|546556|546558|546565|546567|546572|546580|546581|546586|546593|546678|546679|546680|546682|546683|546685|546706|546714|546717|546719|546953|546957|546958|546970|546972|546977|546979|546981|546984|546987|546990|546992|547001|579746|579753|580025|585825|586046|586149|586195|587912|609813|612484|620418|621366|621367|640438|640439|640440|652592|682818|687823|693110|693111|693112|693113|693114|695541|701965|701966|701967|701968|713125|724695|724696|724697|738262|768741|768742|768745|775783|784170|784172|799659|801702|801703|801704|801705|801706|801707|801708|801709|801710|820413|820414|820415|838974|838975|838976|838977|838978|838979|838980|838981|838982|838983|868738|868739|868740|868741|868742|868743|868744|868745|868746|868747|868748|868749|868750|868751|868752|868753|868754|868755|872134|917094|926381|935772|956656|960013|970537|970538|972111|972112|972113|972114|979139|979140|979141|979142|979143|979144|979145|979146|979147|981754|981755", + "upstreamId": "21815|21816|21817|21818|21819|21820|21821|21822|21823|21824|21825|21826|21827|21828|21829|21830|21831|21833|21834|34124|34125|34126|34127|34128|34129|39234|99609|99610|99611|99612|99613|99614|99615|99616|99617|99618|99619|99620|99621|99622|99623|99624|99626|99627|99628|99629|177006|177453|177669|177670|177671|186840|186841|186842|186843|186844|194354|194886|194887|195292|195624|195932|195933|196225|245365|246241|254316|254317|260004|264564|265726|266505|268764|269745|270522|271600|272018|272430|273390|273738|274277|274816|315065|315066|315071|315072|315073|315075|315078|315079|315087|321891|321896|321897|321900|321903|321905|327941|327942|327946|327948|327949|327951|327952|327956|327963|327965|327970|327973|327984|329055|329056|329066|329068|329072|329073|329077|329078|329086|329090|329091|358065|358066|358067|358068|358069|358070|358071|358072|358073|358074|358075|358076|358077|358078|358079|371677|372666|384408|384409|408465|408466|421885|425943|433097|433098|438709|444884|461667|461979|481360|491417|492188|492787|493274|493276|504008|511941|511942|511943|527046|546305|546307|546315|546316|546320|546322|546324|546328|546329|546339|546343|546347|546357|546365|546367|546375|546379|546541|546545|546548|546550|546556|546558|546565|546567|546572|546580|546581|546586|546593|546678|546679|546680|546682|546683|546685|546706|546714|546717|546719|546953|546957|546958|546970|546972|546977|546979|546981|546984|546987|546990|546992|547001|579746|579753|580025|585825|586046|586149|586195|587912|609813|612484|620418|621366|621367|640438|640439|640440|652592|682818|687823|693110|693111|693112|693113|693114|695541|701965|701966|701967|701968|713125|724695|724696|724697|738262|768741|768742|768745|775783|784170|784172|799659|801702|801703|801704|801705|801706|801707|801708|801709|801710|820413|820414|820415|838974|838975|838976|838977|838978|838979|838980|838981|838982|838983|868738|868739|868740|868741|868742|868743|868744|868745|868746|868747|868748|868749|868750|868751|868752|868753|868754|868755|872134|917094|926381|935772|956656|960013|970537|970538|972111|972112|972113|972114|979139|979140|979141|979142|979143|979144|979145|979146|979147|981754|981755", "text": "Smith-Lemli-Opitz syndrome" }, { - "baseId": "21836|21837|55471|55476|55477|55483|55485|55503|55513|55548|55571|106479|168546|168547|168555|168557|174306|174455|194148|195465|195827|229338|229349|229357|267749|269624|275060|275062|363866|415013|433350|495293|496403|496405|537464|589833|589834|589835", + "upstreamId": "21836|21837|55471|55476|55477|55483|55485|55503|55513|55548|55571|106479|168546|168547|168555|168557|174306|174455|194148|195465|195827|229338|229349|229357|267749|269624|275060|275062|363866|415013|433350|495293|496403|496405|537464|589833|589834|589835", "text": "Febrile seizures, familial, 4" }, { - "baseId": "21845|21846|21847|21848|45788|45789|45790|45791|45792|90045|171817|191224|213000|222254|222255|222256|241565|241566|241567|271562|318107|318110|318113|318115|318116|318117|318122|318126|326104|326106|326119|326120|326121|326123|326124|326134|326135|326136|326141|332266|332269|332270|332273|332277|333824|333831|333832|333843|333845|333846|333855|375383|399029|424371|504582|622416|641315|688034|870210|870211|870212|870213|870214|870215|870216|870217|870218|870219|870220|870221|870222|870223|870224|872274|872275|872276|872277|872278|872279|872280|962052|962981", + "upstreamId": "21845|21846|21847|21848|45788|45789|45790|45791|45792|90045|171817|191224|213000|222254|222255|222256|241565|241566|241567|271562|318107|318110|318113|318115|318116|318117|318122|318126|326104|326106|326119|326120|326121|326123|326124|326134|326135|326136|326141|332266|332269|332270|332273|332277|333824|333831|333832|333843|333845|333846|333855|375383|399029|424371|504582|622416|641315|688034|870210|870211|870212|870213|870214|870215|870216|870217|870218|870219|870220|870221|870222|870223|870224|872274|872275|872276|872277|872278|872279|872280|962052|962981", "text": "Hereditary spastic paraplegia 10" }, { - "baseId": "21849|21850|21851|21852|21853|21854|21855|21856|21857|21858|21859|51184|135816|135817|142940|142942|142943|142944|142945|142946|142947|142948|142949|142951|142952|142953|142954|142955|142956|186292|195942|208318|211737|211739|211741|211742|211747|211749|211751|211755|211756|211761|211763|211764|211768|211769|211772|211774|211775|213227|213228|213229|213641|213915|213916|213917|213918|213919|222537|222538|222539|222540|242529|242530|248513|255958|255959|269605|326812|326821|326826|336676|336690|336696|336697|336700|336701|336703|336704|336707|342919|342921|342925|342929|342935|344561|344562|344563|344565|344572|344574|344576|344577|374766|377952|401362|401365|401370|401888|401895|402128|402129|402131|429892|441936|445680|445681|466101|466106|466843|466845|466849|466893|466894|467161|486615|497082|505670|513462|530390|530394|530501|530508|530706|530925|530928|567555|568462|568464|569409|570615|570617|570618|570622|570623|570627|570640|574210|574212|608910|612180|620566|645143|645144|645145|645146|645147|645148|645149|645150|645151|645152|653174|653317|684633|684635|688681|690151|690154|695710|785444|791658|798709|820914|820915|844498|844499|844500|844501|844502|844503|844504|844505|844506|851691|852135|860324|860325|876179|876180|876181|876182|876183|876184|876185|876186|876187|876188|876189|876190|876191|876192|876193|876194|876195|876196|876197|876198|876199|876200|876201|876202|876203|876736|876737|920366|928010|937663|937664|941153|949638|949639|949640|949641|957925|960185|964325|964463|969131|969132|971059", + "upstreamId": "21849|21850|21851|21852|21853|21854|21855|21856|21857|21858|21859|51184|135816|135817|142940|142942|142943|142944|142945|142946|142947|142948|142949|142951|142952|142953|142954|142955|142956|186292|195942|208318|211737|211739|211741|211742|211747|211749|211751|211755|211756|211761|211763|211764|211768|211769|211772|211774|211775|213227|213228|213229|213641|213915|213916|213917|213918|213919|222537|222538|222539|222540|242529|242530|248513|255958|255959|269605|326812|326821|326826|336676|336690|336696|336697|336700|336701|336703|336704|336707|342919|342921|342925|342929|342935|344561|344562|344563|344565|344572|344574|344576|344577|374766|377952|401362|401365|401370|401888|401895|402128|402129|402131|429892|441936|445680|445681|466101|466106|466843|466845|466849|466893|466894|467161|486615|497082|505670|513462|530390|530394|530501|530508|530706|530925|530928|567555|568462|568464|569409|570615|570617|570618|570622|570623|570627|570640|574210|574212|608910|612180|620566|645143|645144|645145|645146|645147|645148|645149|645150|645151|645152|653174|653317|684633|684635|688681|690151|690154|695710|785444|791658|798709|820914|820915|844498|844499|844500|844501|844502|844503|844504|844505|844506|851691|852135|860324|860325|876179|876180|876181|876182|876183|876184|876185|876186|876187|876188|876189|876190|876191|876192|876193|876194|876195|876196|876197|876198|876199|876200|876201|876202|876203|876736|876737|920366|928010|937663|937664|941153|949638|949639|949640|949641|957925|960185|964325|964463|969131|969132|971059", "text": "Hereditary spastic paraplegia 7" }, { - "baseId": "21855|540454|540462", + "upstreamId": "21855|540454|540462", "text": "Proximal spinal muscular atrophy" }, { - "baseId": "21860|49102|49103|49105|49107|49108|142807|142808|142810|142812|142813|174881|179140|179141|179142|179144|179148|221939|240748|309510|309511|309513|309515|314301|314305|314306|314307|314309|314312|314313|314315|314317|320243|320262|320263|320265|320266|320267|320712|320713|320724|320726|320730|320731|320732|320733|320740|320741|320742|320743|371571|487399|865432|865433|865434|865435|865436|865437|865438|865439|865440|865441|865442|865443|865444|868444|962146|964339", + "upstreamId": "21860|49102|49103|49105|49107|49108|142807|142808|142810|142812|142813|174881|179140|179141|179142|179144|179148|221939|240748|309510|309511|309513|309515|314301|314305|314306|314307|314309|314312|314313|314315|314317|320243|320262|320263|320265|320266|320267|320712|320713|320724|320726|320730|320731|320732|320733|320740|320741|320742|320743|371571|487399|865432|865433|865434|865435|865436|865437|865438|865439|865440|865441|865442|865443|865444|868444|962146|964339", "text": "Noonan syndrome-like disorder with loose anagen hair 1" }, { - "baseId": "21860|23313|27621|27625|27626|27627|27628|27634|27635|27636|27641|27643|27645|27651|27652|27908|27909|27910|27911|27912|28363|28364|28365|28366|28367|28368|28369|28370|28372|28373|28374|28375|28376|28379|28380|28381|28382|28383|28384|28387|28388|28390|28391|28846|28849|28850|28941|28996|28997|28998|28999|29003|29004|29011|29012|29013|29014|29015|29016|29017|29018|34194|38760|38762|38763|39126|45369|45370|48708|48802|48803|48804|48805|48807|48808|48812|48816|48817|48818|48820|48822|48830|48832|48833|48834|48836|48837|48840|48843|48850|48857|48858|48859|48860|48861|48863|48866|48869|48870|48874|48876|48877|48882|48885|48888|48889|48890|48891|48892|48893|48894|48895|48896|48897|48898|48901|48907|48910|48911|48912|48916|48918|48921|48922|48924|48931|48934|48935|48942|48946|48952|48953|48954|48955|48956|48957|48958|48959|48960|48962|48963|48965|48966|48968|48969|48972|48973|48974|48976|48977|48978|48979|48981|48982|48983|48985|48986|48988|48989|48990|48991|48992|48993|48995|48998|49000|49003|49004|49005|49006|49007|49008|49009|49011|49012|49014|49016|49017|49019|49020|49022|49023|49024|49025|49027|49028|49029|49031|49032|49033|49036|49037|49040|49043|49045|49046|49052|49053|49054|49055|49056|49058|49062|49064|49067|49069|49070|49071|49072|49073|49074|49075|49076|49077|49078|49079|49080|49081|49082|49083|49084|49088|49090|49091|49092|49093|49096|49097|49098|49104|49105|49107|49110|49111|49113|49116|49118|49119|49121|49124|49125|49126|49130|49132|49134|49135|49136|49139|49140|49141|49142|49143|49148|49150|49151|49152|49153|49154|49156|49157|49158|49162|49166|49167|49168|49169|49171|49172|49176|49178|49183|49184|49185|49186|49192|49196|49198|49199|49202|49203|49204|49207|49209|49215|49218|49224|49226|49228|49230|49231|49232|49234|49235|49239|49240|49242|49248|49249|49251|49252|49256|49257|49260|49263|49272|49278|49281|49282|49283|49286|49288|49294|49295|49296|49297|49299|49301|49302|49303|49304|49309|49310|49312|49313|49314|49316|49317|49883|49885|49886|49887|53742|53753|53756|53757|53758|53759|53764|53765|53766|53769|53770|53774|53775|53779|53781|53782|53790|53796|53797|53798|53800|53955|53987|53988|53992|53993|53994|53996|53999|54000|54001|54282|54285|54286|54295|54296|54364|54365|54367|54368|54369|54370|54375|54376|54378|54471|54472|54510|54511|54512|54515|54517|54518|54520|54524|54527|54529|54530|54531|54533|54534|54535|54541|54545|55387|55391|55392|55393|55395|55397|55400|55402|55404|55405|55407|55408|55703|65596|65599|70451|70452|70455|75096|76574|83949|99984|106799|125840|137459|137550|137552|138851|140235|140236|140366|140368|141763|141764|141858|141859|141861|141862|141864|142241|142546|142807|142811|142812|142813|142928|142929|142931|142939|172137|172138|172330|172331|172332|172472|173525|173530|173667|173668|173743|173883|173884|174040|174042|174043|174046|174176|174180|174882|175064|175065|175067|175068|175069|175345|175346|175395|175398|175539|175540|175541|175716|175718|176000|176028|176031|176032|176033|176143|176144|176171|177213|177413|178881|178882|178911|179017|179019|179022|179023|179029|179032|179035|179038|179043|179046|179049|179051|179052|179053|179054|179094|179102|179140|179141|179142|179144|179149|179150|179151|179154|179156|179160|179161|179164|179166|179420|179443|179446|179454|179457|179458|179460|179789|179790|179818|179820|179825|179829|179831|179915|179916|179917|179923|181507|181511|194908|194939|195648|195668|205685|212149|212566|212919|213138|221364|221939|222205|223774|224260|229010|229012|229015|229019|230599|230602|236790|238770|238771|238772|239094|239095|239987|240748|241061|241062|241063|241064|248492|250738|253694|254209|257127|258290|264097|264100|264106|264113|264307|264459|264577|264603|264667|264670|264875|265075|266828|269358|269675|272068|273294|274362|274364|286291|286297|289332|302003|324737|324740|325446|325477|330590|359384|359385|359444|359445|359479|359482|359520|359643|359799|359986|359995|360062|360063|360078|360103|360219|360220|360426|361724|362825|362860|363073|363393|366393|366912|367161|367166|367171|367173|370855|371273|371284|372859|374265|374586|377687|377711|390770|392654|392656|392693|392819|392821|392824|393286|393296|393363|393495|393710|395440|395821|395830|396086|397154|397712|398069|398071|398080|398083|398416|398440|398501|398512|398514|398518|398831|403729|403730|404885|424904|425523|429179|429364|432423|437668|442511|442512|442513|442514|442515|442516|442517|442518|442519|442520|442521|442522|442523|442524|442525|442528|442529|442530|442531|442532|442533|442534|442535|442536|442537|442538|442539|442540|442541|442542|444914|447067|447107|447126|447145|448398|450892|450901|451011|451017|451196|451219|451230|451825|452141|452147|452149|452154|452255|452257|452258|456113|456726|456991|456994|456998|457437|457442|457444|459887|460130|460615|460916|460917|460919|460920|460922|460950|460951|460955|460958|460964|460966|460973|460979|461252|461274|461276|461290|461618|461622|461631|461731|461737|461741|461744|461746|461748|462420|462423|462928|464426|465048|468821|470250|470924|481136|494957|494959|494960|494967|494977|496277|496336|496489|496963|500027|501861|503114|503898|503901|506831|509558|509561|515053|518215|518220|518222|518226|518227|518329|518331|518339|518800|518856|518858|519053|519055|519061|522338|522592|522598|522603|525196|525485|525961|525968|525981|526027|526029|526037|526105|526110|526113|526124|526127|526444|526451|526459|526461|526466|526467|526475|526476|527064|527291|529402|529579|529581|533045|533051|533110|533115|533117|533121|533539|533550|533554|538420|551761|552488|552492|552515|552522|552523|552526|552540|552552|552639|552648|552652|552668|552866|558066|558091|558093|558095|558460|558462|559331|559333|559335|560633|560635|561180|561186|561383|561533|561543|561545|561546|561558|563581|563583|564135|564459|564467|564474|564485|564488|564490|565389|565536|565546|565552|565553|566172|566174|566338|566487|566496|567073|567078|567080|567082|567674|569559|569565|570376|570378|570380|570803|570804|571258|571274|574978|574979|574980|590777|611993|612015|619941|621717|626659|626660|626661|629994|629995|629996|629997|629998|629999|630000|630001|630002|630877|630878|630879|630880|630881|630882|630883|630884|630885|630886|630887|630888|630889|630890|630891|630892|635792|638738|638739|639800|639801|639802|639803|639804|639805|639806|639807|639808|639809|639810|639811|639812|640639|640640|643475|643476|648136|648137|648138|650816|651035|651584|651992|652113|652174|652267|652408|652619|652622|653050|653578|672277|679127|684236|684287|684819|685282|686211|686322|687714|687716|687881|689062|689718|690000|691159|692162|692945|692946|692948|693145|693722|694426|695494|695823|701609|747951|747952|754631|768257|770292|781541|813143|818439|818440|818441|819317|819318|819827|820444|820726|821256|822576|826468|826469|826470|826471|826472|826473|826474|826475|826476|826477|826478|826479|827450|827451|827452|827453|827454|827455|827456|827457|827458|827459|827460|827461|827462|827463|827464|827465|827466|827467|827468|827469|827470|827471|833217|833218|833219|833220|833221|833222|833223|833224|833225|836646|836647|836648|836649|838066|838067|838068|838069|838070|838071|838072|838073|838074|838075|838076|838077|839322|839323|839324|839325|839326|842602|842603|842604|847718|847719|847720|847721|847722|847723|847724|850723|850861|851019|851824|905997|917229|917325|922765|922766|922767|922768|922769|923027|923028|923029|923030|924713|924714|924715|925749|925750|925751|926146|926147|926148|926149|926467|926468|927398|928974|931403|931404|931405|931406|931407|931408|931737|931738|931739|933717|934963|934964|935415|935416|935417|935418|935419|935420|935421|935422|935920|935921|935922|935923|935924|936078|939893|940206|940244|940736|940737|940871|942918|943298|943299|943300|943301|943302|943303|945488|945489|947341|947342|947343|947344|947789|947790|948980|950799|950800|950801|950802|953091|953092|953322|953323|953324|955990|956419|956748|958644", + "upstreamId": "21860|23313|27621|27625|27626|27627|27628|27634|27635|27636|27641|27643|27645|27651|27652|27908|27909|27910|27911|27912|28363|28364|28365|28366|28367|28368|28369|28370|28372|28373|28374|28375|28376|28379|28380|28381|28382|28383|28384|28387|28388|28390|28391|28846|28849|28850|28941|28996|28997|28998|28999|29003|29004|29011|29012|29013|29014|29015|29016|29017|29018|34194|38760|38762|38763|39126|45369|45370|48708|48802|48803|48804|48805|48807|48808|48812|48816|48817|48818|48820|48822|48830|48832|48833|48834|48836|48837|48840|48843|48850|48857|48858|48859|48860|48861|48863|48866|48869|48870|48874|48876|48877|48882|48885|48888|48889|48890|48891|48892|48893|48894|48895|48896|48897|48898|48901|48907|48910|48911|48912|48916|48918|48921|48922|48924|48931|48934|48935|48942|48946|48952|48953|48954|48955|48956|48957|48958|48959|48960|48962|48963|48965|48966|48968|48969|48972|48973|48974|48976|48977|48978|48979|48981|48982|48983|48985|48986|48988|48989|48990|48991|48992|48993|48995|48998|49000|49003|49004|49005|49006|49007|49008|49009|49011|49012|49014|49016|49017|49019|49020|49022|49023|49024|49025|49027|49028|49029|49031|49032|49033|49036|49037|49040|49043|49045|49046|49052|49053|49054|49055|49056|49058|49062|49064|49067|49069|49070|49071|49072|49073|49074|49075|49076|49077|49078|49079|49080|49081|49082|49083|49084|49088|49090|49091|49092|49093|49096|49097|49098|49104|49105|49107|49110|49111|49113|49116|49118|49119|49121|49124|49125|49126|49130|49132|49134|49135|49136|49139|49140|49141|49142|49143|49148|49150|49151|49152|49153|49154|49156|49157|49158|49162|49166|49167|49168|49169|49171|49172|49176|49178|49183|49184|49185|49186|49192|49196|49198|49199|49202|49203|49204|49207|49209|49215|49218|49224|49226|49228|49230|49231|49232|49234|49235|49239|49240|49242|49248|49249|49251|49252|49256|49257|49260|49263|49272|49278|49281|49282|49283|49286|49288|49294|49295|49296|49297|49299|49301|49302|49303|49304|49309|49310|49312|49313|49314|49316|49317|49883|49885|49886|49887|53742|53753|53756|53757|53758|53759|53764|53765|53766|53769|53770|53774|53775|53779|53781|53782|53790|53796|53797|53798|53800|53955|53987|53988|53992|53993|53994|53996|53999|54000|54001|54282|54285|54286|54295|54296|54364|54365|54367|54368|54369|54370|54375|54376|54378|54471|54472|54510|54511|54512|54515|54517|54518|54520|54524|54527|54529|54530|54531|54533|54534|54535|54541|54545|55387|55391|55392|55393|55395|55397|55400|55402|55404|55405|55407|55408|55703|65596|65599|70451|70452|70455|75096|76574|83949|99984|106799|125840|137459|137550|137552|138851|140235|140236|140366|140368|141763|141764|141858|141859|141861|141862|141864|142241|142546|142807|142811|142812|142813|142928|142929|142931|142939|172137|172138|172330|172331|172332|172472|173525|173530|173667|173668|173743|173883|173884|174040|174042|174043|174046|174176|174180|174882|175064|175065|175067|175068|175069|175345|175346|175395|175398|175539|175540|175541|175716|175718|176000|176028|176031|176032|176033|176143|176144|176171|177213|177413|178881|178882|178911|179017|179019|179022|179023|179029|179032|179035|179038|179043|179046|179049|179051|179052|179053|179054|179094|179102|179140|179141|179142|179144|179149|179150|179151|179154|179156|179160|179161|179164|179166|179420|179443|179446|179454|179457|179458|179460|179789|179790|179818|179820|179825|179829|179831|179915|179916|179917|179923|181507|181511|194908|194939|195648|195668|205685|212149|212566|212919|213138|221364|221939|222205|223774|224260|229010|229012|229015|229019|230599|230602|236790|238770|238771|238772|239094|239095|239987|240748|241061|241062|241063|241064|248492|250738|253694|254209|257127|258290|264097|264100|264106|264113|264307|264459|264577|264603|264667|264670|264875|265075|266828|269358|269675|272068|273294|274362|274364|286291|286297|289332|302003|324737|324740|325446|325477|330590|359384|359385|359444|359445|359479|359482|359520|359643|359799|359986|359995|360062|360063|360078|360103|360219|360220|360426|361724|362825|362860|363073|363393|366393|366912|367161|367166|367171|367173|370855|371273|371284|372859|374265|374586|377687|377711|390770|392654|392656|392693|392819|392821|392824|393286|393296|393363|393495|393710|395440|395821|395830|396086|397154|397712|398069|398071|398080|398083|398416|398440|398501|398512|398514|398518|398831|403729|403730|404885|424904|425523|429179|429364|432423|437668|442511|442512|442513|442514|442515|442516|442517|442518|442519|442520|442521|442522|442523|442524|442525|442528|442529|442530|442531|442532|442533|442534|442535|442536|442537|442538|442539|442540|442541|442542|444914|447067|447107|447126|447145|448398|450892|450901|451011|451017|451196|451219|451230|451825|452141|452147|452149|452154|452255|452257|452258|456113|456726|456991|456994|456998|457437|457442|457444|459887|460130|460615|460916|460917|460919|460920|460922|460950|460951|460955|460958|460964|460966|460973|460979|461252|461274|461276|461290|461618|461622|461631|461731|461737|461741|461744|461746|461748|462420|462423|462928|464426|465048|468821|470250|470924|481136|494957|494959|494960|494967|494977|496277|496336|496489|496963|500027|501861|503114|503898|503901|506831|509558|509561|515053|518215|518220|518222|518226|518227|518329|518331|518339|518800|518856|518858|519053|519055|519061|522338|522592|522598|522603|525196|525485|525961|525968|525981|526027|526029|526037|526105|526110|526113|526124|526127|526444|526451|526459|526461|526466|526467|526475|526476|527064|527291|529402|529579|529581|533045|533051|533110|533115|533117|533121|533539|533550|533554|538420|551761|552488|552492|552515|552522|552523|552526|552540|552552|552639|552648|552652|552668|552866|558066|558091|558093|558095|558460|558462|559331|559333|559335|560633|560635|561180|561186|561383|561533|561543|561545|561546|561558|563581|563583|564135|564459|564467|564474|564485|564488|564490|565389|565536|565546|565552|565553|566172|566174|566338|566487|566496|567073|567078|567080|567082|567674|569559|569565|570376|570378|570380|570803|570804|571258|571274|574978|574979|574980|590777|611993|612015|619941|621717|626659|626660|626661|629994|629995|629996|629997|629998|629999|630000|630001|630002|630877|630878|630879|630880|630881|630882|630883|630884|630885|630886|630887|630888|630889|630890|630891|630892|635792|638738|638739|639800|639801|639802|639803|639804|639805|639806|639807|639808|639809|639810|639811|639812|640639|640640|643475|643476|648136|648137|648138|650816|651035|651584|651992|652113|652174|652267|652408|652619|652622|653050|653578|672277|679127|684236|684287|684819|685282|686211|686322|687714|687716|687881|689062|689718|690000|691159|692162|692945|692946|692948|693145|693722|694426|695494|695823|701609|747951|747952|754631|768257|770292|781541|813143|818439|818440|818441|819317|819318|819827|820444|820726|821256|822576|826468|826469|826470|826471|826472|826473|826474|826475|826476|826477|826478|826479|827450|827451|827452|827453|827454|827455|827456|827457|827458|827459|827460|827461|827462|827463|827464|827465|827466|827467|827468|827469|827470|827471|833217|833218|833219|833220|833221|833222|833223|833224|833225|836646|836647|836648|836649|838066|838067|838068|838069|838070|838071|838072|838073|838074|838075|838076|838077|839322|839323|839324|839325|839326|842602|842603|842604|847718|847719|847720|847721|847722|847723|847724|850723|850861|851019|851824|905997|917229|917325|922765|922766|922767|922768|922769|923027|923028|923029|923030|924713|924714|924715|925749|925750|925751|926146|926147|926148|926149|926467|926468|927398|928974|931403|931404|931405|931406|931407|931408|931737|931738|931739|933717|934963|934964|935415|935416|935417|935418|935419|935420|935421|935422|935920|935921|935922|935923|935924|936078|939893|940206|940244|940736|940737|940871|942918|943298|943299|943300|943301|943302|943303|945488|945489|947341|947342|947343|947344|947789|947790|948980|950799|950800|950801|950802|953091|953092|953322|953323|953324|955990|956419|956748|958644", "text": "Rasopathy" }, { - "baseId": "21860|24486|27625|27626|27626|27627|27628|27628|27629|27633|27635|27645|27908|27909|27910|27911|27912|28363|28364|28365|28366|28367|28368|28368|28369|28369|28370|28371|28371|28372|28373|28374|28375|28379|28382|28383|28388|28941|28996|28996|28997|28999|28999|29003|29004|29004|29008|29014|29016|34194|38760|45368|45369|45370|48708|48807|48821|48843|48845|48857|48858|48907|48922|48924|48935|48937|48940|48948|48950|48952|48954|48955|48956|48957|48958|48959|48960|48963|48965|48968|48969|48970|48972|48973|48976|48977|48982|48983|48983|48984|48986|48987|48988|48990|48992|48993|48995|48996|48998|49000|49001|49002|49003|49005|49006|49019|49020|49021|49022|49023|49024|49025|49026|49027|49028|49028|49029|49029|49032|49036|49039|49040|49043|49056|49062|49064|49069|49070|49071|49073|49074|49075|49076|49077|49078|49080|49083|49087|49088|49107|49113|49118|49119|49121|49126|49130|49132|49135|49139|49142|49143|49148|49149|49150|49152|49153|49154|49166|49169|49172|49176|49186|49193|49198|49235|49251|49283|49296|49298|49309|49313|49884|49886|49887|53753|53770|53771|53772|53774|53776|53780|53781|53782|53792|53798|53799|53800|53801|53971|53985|53987|53988|53996|53997|53998|53999|54282|54285|54293|54294|54363|54364|54510|54511|54512|54515|54518|54525|54528|54529|54540|54546|70449|75093|75096|99984|125840|125844|142545|142930|142938|165581|172330|172332|173667|173750|173884|173887|174043|174043|174175|174175|174178|175344|175345|175394|175539|175540|175541|175711|175714|175716|175718|175855|176031|177413|178344|178345|178346|178347|178348|178349|178350|178351|178352|178353|178354|178355|178356|178357|178358|178359|178360|178636|178911|179034|179051|179055|179102|179145|179156|179446|179449|179456|179459|181505|181506|181507|181508|181509|181510|181511|181512|181513|181514|181515|194939|199919|205688|207000|207001|224553|228269|229012|230307|230599|249186|258290|259750|264081|264131|265075|275943|276113|276131|276144|276173|276174|276287|276288|276371|276414|286250|286253|286271|286286|286288|286291|287026|289310|289328|289337|289342|289349|289674|289678|289679|289683|289702|292323|301998|302001|309875|310013|316045|316054|316684|316688|316694|316695|316697|316700|316701|316702|316706|316707|316713|316714|316716|316719|316720|316721|316725|316726|316728|323126|323128|323301|323302|323303|324159|324166|324167|324168|324169|324181|324182|324186|324191|324195|324199|324206|324208|324210|324211|324217|324220|324221|329407|330198|330205|330208|330209|330210|330211|330214|330219|330228|330231|330232|330245|330251|330256|330259|330260|330264|330268|330274|330605|330607|331599|331605|331606|331607|331617|331618|331620|331623|331624|331627|331629|331631|331632|331633|331635|331642|331657|331660|331661|332754|332756|360023|362860|364005|403729|406985|429463|442518|451196|463275|463796|468963|468964|468971|469932|469937|469940|469944|471085|490865|496759|513319|518329|533122|533126|533206|533211|533214|533225|533226|533227|533228|533652|536637|551682|551705|552492|552506|552566|552580|552682|552852|561533|566487|570923|570929|570935|572608|572610|573231|573233|573234|573235|575006|575007|576166|611992|611993|612010|612014|612015|612026|612027|612030|615263|615264|615265|615266|640152|642478|648251|648252|648253|648254|653973|653976|653978|653979|653980|653981|653982|653985|654285|672276|672277|679440|694475|694477|694478|695833|705168|799666|800975|827468|838559|841525|847721|847853|847854|847855|847856|847857|847858|847859|851823|924714|934963|938777|948853|958690|960924|961495|962888|963208|966979|969620|969621|969622|969625|969626|969627|969628|969629|969630|969631|969632|969633|969634|969635|969636|969637|969638|969639|969640|969641|969642|969643|969644|969645|969646|969647|969648|969649|969650|969651|969652|969653|969654|969655|969657|969658|969659|969660|969661|969662|969663|969664|969665|969666|969667|969668|969670|969671|969672|969673|969674|969675|969676|969677|969678|969679|969680|969681|969682|969683|969684|969685|969686|969687|969689|969690|969691|969692|969693|969694|969695|969696|969697|969698", + "upstreamId": "21860|24486|27625|27626|27626|27627|27628|27628|27629|27633|27635|27645|27908|27909|27910|27911|27912|28363|28364|28365|28366|28367|28368|28368|28369|28369|28370|28371|28371|28372|28373|28374|28375|28379|28382|28383|28388|28941|28996|28996|28997|28999|28999|29003|29004|29004|29008|29014|29016|34194|38760|45368|45369|45370|48708|48807|48821|48843|48845|48857|48858|48907|48922|48924|48935|48937|48940|48948|48950|48952|48954|48955|48956|48957|48958|48959|48960|48963|48965|48968|48969|48970|48972|48973|48976|48977|48982|48983|48983|48984|48986|48987|48988|48990|48992|48993|48995|48996|48998|49000|49001|49002|49003|49005|49006|49019|49020|49021|49022|49023|49024|49025|49026|49027|49028|49028|49029|49029|49032|49036|49039|49040|49043|49056|49062|49064|49069|49070|49071|49073|49074|49075|49076|49077|49078|49080|49083|49087|49088|49107|49113|49118|49119|49121|49126|49130|49132|49135|49139|49142|49143|49148|49149|49150|49152|49153|49154|49166|49169|49172|49176|49186|49193|49198|49235|49251|49283|49296|49298|49309|49313|49884|49886|49887|53753|53770|53771|53772|53774|53776|53780|53781|53782|53792|53798|53799|53800|53801|53971|53985|53987|53988|53996|53997|53998|53999|54282|54285|54293|54294|54363|54364|54510|54511|54512|54515|54518|54525|54528|54529|54540|54546|70449|75093|75096|99984|125840|125844|142545|142930|142938|165581|172330|172332|173667|173750|173884|173887|174043|174043|174175|174175|174178|175344|175345|175394|175539|175540|175541|175711|175714|175716|175718|175855|176031|177413|178344|178345|178346|178347|178348|178349|178350|178351|178352|178353|178354|178355|178356|178357|178358|178359|178360|178636|178911|179034|179051|179055|179102|179145|179156|179446|179449|179456|179459|181505|181506|181507|181508|181509|181510|181511|181512|181513|181514|181515|194939|199919|205688|207000|207001|224553|228269|229012|230307|230599|249186|258290|259750|264081|264131|265075|275943|276113|276131|276144|276173|276174|276287|276288|276371|276414|286250|286253|286271|286286|286288|286291|287026|289310|289328|289337|289342|289349|289674|289678|289679|289683|289702|292323|301998|302001|309875|310013|316045|316054|316684|316688|316694|316695|316697|316700|316701|316702|316706|316707|316713|316714|316716|316719|316720|316721|316725|316726|316728|323126|323128|323301|323302|323303|324159|324166|324167|324168|324169|324181|324182|324186|324191|324195|324199|324206|324208|324210|324211|324217|324220|324221|329407|330198|330205|330208|330209|330210|330211|330214|330219|330228|330231|330232|330245|330251|330256|330259|330260|330264|330268|330274|330605|330607|331599|331605|331606|331607|331617|331618|331620|331623|331624|331627|331629|331631|331632|331633|331635|331642|331657|331660|331661|332754|332756|360023|362860|364005|403729|406985|429463|442518|451196|463275|463796|468963|468964|468971|469932|469937|469940|469944|471085|490865|496759|513319|518329|533122|533126|533206|533211|533214|533225|533226|533227|533228|533652|536637|551682|551705|552492|552506|552566|552580|552682|552852|561533|566487|570923|570929|570935|572608|572610|573231|573233|573234|573235|575006|575007|576166|611992|611993|612010|612014|612015|612026|612027|612030|615263|615264|615265|615266|640152|642478|648251|648252|648253|648254|653973|653976|653978|653979|653980|653981|653982|653985|654285|672276|672277|679440|694475|694477|694478|695833|705168|799666|800975|827468|838559|841525|847721|847853|847854|847855|847856|847857|847858|847859|851823|924714|934963|938777|948853|958690|960924|961495|962888|963208|966979|969620|969621|969622|969625|969626|969627|969628|969629|969630|969631|969632|969633|969634|969635|969636|969637|969638|969639|969640|969641|969642|969643|969644|969645|969646|969647|969648|969649|969650|969651|969652|969653|969654|969655|969657|969658|969659|969660|969661|969662|969663|969664|969665|969666|969667|969668|969670|969671|969672|969673|969674|969675|969676|969677|969678|969679|969680|969681|969682|969683|969684|969685|969686|969687|969689|969690|969691|969692|969693|969694|969695|969696|969697|969698", "text": "Noonan syndrome" }, { - "baseId": "21860", + "upstreamId": "21860", "text": "Noonan syndrome-like disorder with loose anagen hair" }, { - "baseId": "21861|21864|21864|40236|133658|133658|133659|133659|133660|133661|133662|133662|133663|133664|133664|133666|133666|133667|133667|133668|133668|133669|136450|136469|139867|139868|139868|139869|139870|139871|139872|139873|139874|139875|142570|142572|142573|150513|150551|150563|150563|150627|150654|150809|150889|150919|151038|151038|151067|151246|151246|151377|151482|151482|151537|151537|151549|151713|151800|151807|151868|151906|151959|152103|152130|152143|152167|152167|152216|152224|152248|152299|152471|152476|152522|152554|152554|152633|152633|180901|180902|180903|180903|180904|180905|180906|180907|180908|180909|180909|180910|180911|180912|180912|180913|180916|180917|180917|180918|180919|180920|180922|185133|185134|185135|185136|185137|185138|185139|185140|185141|185143|185144|185145|185146|185147|185148|185149|185150|185151|185152|185154|185155|185156|185157|185159|185160|185160|185161|185162|185163|185164|185165|185166|185167|185168|185168|185169|185172|185173|185175|185177|185178|185179|185180|185181|185182|185182|185184|186264|186265|213341|213341|213342|213343|213344|213348|213349|213350|213350|213351|213352|213353|213354|213355|213510|222550|222551|222552|222553|222554|222688|222689|222690|222691|222692|222692|222693|222694|222695|222696|222697|236187|236188|236190|236191|236193|236195|236196|236198|236200|236202|236203|236206|236207|236208|236212|236214|236216|236217|236221|236222|236223|236224|236225|236226|236227|236228|236229|236232|236233|236234|236235|236236|236237|236238|236240|236240|236243|236245|236246|236250|236251|236252|242580|242826|242827|242828|242829|242830|242832|242833|242834|242835|242836|242837|242838|242839|242840|245060|245061|245062|245064|245065|358950|358951|358952|358953|360465|376262|376262|376385|376386|376387|376389|378546|378550|401514|401988|402136|402139|402150|402151|402153|402158|402163|402164|402167|402170|402172|402176|402179|402180|402182|402187|402188|402189|402190|402193|402198|402199|402203|402205|402602|402612|402613|402613|402615|402622|402623|402623|402637|402642|402643|402761|402765|402767|402768|402770|402777|402778|410091|410095|410097|410098|410100|410102|410103|410105|410106|410106|410107|410108|410112|432929|432930|445839|445840|466274|467050|467053|467060|467064|467065|467068|467075|467076|467076|467078|467082|467088|467090|467151|467164|467979|467980|467985|467987|467994|468000|468006|468025|468032|468034|468035|468038|468039|468044|468249|468252|468255|468261|468264|468265|468270|468272|468276|468288|468290|468291|468482|468484|468490|468495|468500|468504|468510|468513|468519|468528|468540|468541|468543|478831|478835|478846|478850|478854|478859|478866|478882|478899|478902|478912|478929|478930|478949|478963|478991|478998|479001|479002|479010|479019|479022|479027|479029|479035|479039|479046|479618|479625|479627|479632|479654|479665|479669|479684|479686|479689|479691|479693|479696|479713|479714|479718|479720|483002|483005|483010|483011|483012|483016|483019|484991|485133|485136|485137|485163|485185|485189|485192|485223|485421|485425|485427|485443|487758|487899|487902|488003|530662|530665|530667|531030|531039|531273|531288|531291|531295|531298|531301|531303|531307|531315|531316|531445|531454|531455|531461|531463|531464|531469|531471|531473|531475|531535|531544|531547|531553|531556|531558|531560|531754|531759|531761|531772|531774|531785|531787|531790|531791|531792|539369|539370|539371|568645|569315|569317|569324|569330|569336|569340|569343|569348|569351|569353|570710|570712|571314|571317|571323|571328|571329|571331|571339|571341|571343|571348|571356|571357|571730|571732|571736|571743|571754|571769|571776|574275|574535|574536|574537|574538|574539|574540|574541|574542|574543|575612|576009|576011|618713|618715|618717|618718|618721|618722|618726|618728|618729|618731|618736|619734|621590|621861|646238|646239|646240|646241|646242|646243|646244|646245|646246|646247|646248|646249|646250|646251|646252|646253|646254|646255|646256|646257|646258|646259|646260|646261|646262|646263|646264|646265|646266|646267|652669|652671|652673|652843|652847|653007|653152|653153|653155|653300|653483|771669|771670|771679|771680|785653|788253|791795|791796|791797|791798|791799|791800|814089|814093|814097|814099|814105|814106|814112|814113|814125|814126|814135|814137|815695|821110|821111|821112|821113|821114|821115|821116|821117|821118|821119|821120|821121|821122|821123|821124|821125|821126|821127|845684|845685|845686|845687|845688|845689|845690|845691|845692|845693|845694|845695|845696|845697|845698|845699|845700|845701|845702|845703|845704|845705|845706|845707|845708|845709|845710|845711|845712|845713|845714|845715|845716|851739|851741|851743|851745|852763|852764|852893|852895|877959|914017|919752|928391|928392|928393|928394|928395|928396|928397|928398|928399|938052|938053|938054|938055|938056|938057|938058|938059|938060|940422|940423|941187|950068|950069|950070|950071|950072|950073|950074|950075|950076|950077|950078|950079|950080|950081|950082|950083|958206|958207|958208|958209|958210|958211|958212", + "upstreamId": "21861|21864|21864|40236|133658|133658|133659|133659|133660|133661|133662|133662|133663|133664|133664|133666|133666|133667|133667|133668|133668|133669|136450|136469|139867|139868|139868|139869|139870|139871|139872|139873|139874|139875|142570|142572|142573|150513|150551|150563|150563|150627|150654|150809|150889|150919|151038|151038|151067|151246|151246|151377|151482|151482|151537|151537|151549|151713|151800|151807|151868|151906|151959|152103|152130|152143|152167|152167|152216|152224|152248|152299|152471|152476|152522|152554|152554|152633|152633|180901|180902|180903|180903|180904|180905|180906|180907|180908|180909|180909|180910|180911|180912|180912|180913|180916|180917|180917|180918|180919|180920|180922|185133|185134|185135|185136|185137|185138|185139|185140|185141|185143|185144|185145|185146|185147|185148|185149|185150|185151|185152|185154|185155|185156|185157|185159|185160|185160|185161|185162|185163|185164|185165|185166|185167|185168|185168|185169|185172|185173|185175|185177|185178|185179|185180|185181|185182|185182|185184|186264|186265|213341|213341|213342|213343|213344|213348|213349|213350|213350|213351|213352|213353|213354|213355|213510|222550|222551|222552|222553|222554|222688|222689|222690|222691|222692|222692|222693|222694|222695|222696|222697|236187|236188|236190|236191|236193|236195|236196|236198|236200|236202|236203|236206|236207|236208|236212|236214|236216|236217|236221|236222|236223|236224|236225|236226|236227|236228|236229|236232|236233|236234|236235|236236|236237|236238|236240|236240|236243|236245|236246|236250|236251|236252|242580|242826|242827|242828|242829|242830|242832|242833|242834|242835|242836|242837|242838|242839|242840|245060|245061|245062|245064|245065|358950|358951|358952|358953|360465|376262|376262|376385|376386|376387|376389|378546|378550|401514|401988|402136|402139|402150|402151|402153|402158|402163|402164|402167|402170|402172|402176|402179|402180|402182|402187|402188|402189|402190|402193|402198|402199|402203|402205|402602|402612|402613|402613|402615|402622|402623|402623|402637|402642|402643|402761|402765|402767|402768|402770|402777|402778|410091|410095|410097|410098|410100|410102|410103|410105|410106|410106|410107|410108|410112|432929|432930|445839|445840|466274|467050|467053|467060|467064|467065|467068|467075|467076|467076|467078|467082|467088|467090|467151|467164|467979|467980|467985|467987|467994|468000|468006|468025|468032|468034|468035|468038|468039|468044|468249|468252|468255|468261|468264|468265|468270|468272|468276|468288|468290|468291|468482|468484|468490|468495|468500|468504|468510|468513|468519|468528|468540|468541|468543|478831|478835|478846|478850|478854|478859|478866|478882|478899|478902|478912|478929|478930|478949|478963|478991|478998|479001|479002|479010|479019|479022|479027|479029|479035|479039|479046|479618|479625|479627|479632|479654|479665|479669|479684|479686|479689|479691|479693|479696|479713|479714|479718|479720|483002|483005|483010|483011|483012|483016|483019|484991|485133|485136|485137|485163|485185|485189|485192|485223|485421|485425|485427|485443|487758|487899|487902|488003|530662|530665|530667|531030|531039|531273|531288|531291|531295|531298|531301|531303|531307|531315|531316|531445|531454|531455|531461|531463|531464|531469|531471|531473|531475|531535|531544|531547|531553|531556|531558|531560|531754|531759|531761|531772|531774|531785|531787|531790|531791|531792|539369|539370|539371|568645|569315|569317|569324|569330|569336|569340|569343|569348|569351|569353|570710|570712|571314|571317|571323|571328|571329|571331|571339|571341|571343|571348|571356|571357|571730|571732|571736|571743|571754|571769|571776|574275|574535|574536|574537|574538|574539|574540|574541|574542|574543|575612|576009|576011|618713|618715|618717|618718|618721|618722|618726|618728|618729|618731|618736|619734|621590|621861|646238|646239|646240|646241|646242|646243|646244|646245|646246|646247|646248|646249|646250|646251|646252|646253|646254|646255|646256|646257|646258|646259|646260|646261|646262|646263|646264|646265|646266|646267|652669|652671|652673|652843|652847|653007|653152|653153|653155|653300|653483|771669|771670|771679|771680|785653|788253|791795|791796|791797|791798|791799|791800|814089|814093|814097|814099|814105|814106|814112|814113|814125|814126|814135|814137|815695|821110|821111|821112|821113|821114|821115|821116|821117|821118|821119|821120|821121|821122|821123|821124|821125|821126|821127|845684|845685|845686|845687|845688|845689|845690|845691|845692|845693|845694|845695|845696|845697|845698|845699|845700|845701|845702|845703|845704|845705|845706|845707|845708|845709|845710|845711|845712|845713|845714|845715|845716|851739|851741|851743|851745|852763|852764|852893|852895|877959|914017|919752|928391|928392|928393|928394|928395|928396|928397|928398|928399|938052|938053|938054|938055|938056|938057|938058|938059|938060|940422|940423|941187|950068|950069|950070|950071|950072|950073|950074|950075|950076|950077|950078|950079|950080|950081|950082|950083|958206|958207|958208|958209|958210|958211|958212", "text": "Fanconi anemia, complementation group O" }, { - "baseId": "21863|21864|21864|40236|40237|133658|133658|133659|133659|133660|133662|133663|133664|133666|133666|133667|133667|133668|133668|136450|136469|139868|139868|139869|139874|142570|142572|142573|150513|150563|150627|150654|150919|151038|151246|151482|151482|151537|151800|151868|152167|152248|152476|152554|152554|152633|180903|180903|180908|180909|180912|180917|180917|185137|185139|185140|185147|185149|185150|185157|185160|185166|185168|185173|185182|186265|213341|213350|213352|213353|222692|236229|236233|236240|242836|242838|358950|358951|358952|358953|376262|376387|378546|402613|402623|410106|410106|418813|467076|479002|485192|485425|487902|539369|539370|539371|877959|962062|964691|970154|971086", + "upstreamId": "21863|21864|21864|40236|40237|133658|133658|133659|133659|133660|133662|133663|133664|133666|133666|133667|133667|133668|133668|136450|136469|139868|139868|139869|139874|142570|142572|142573|150513|150563|150627|150654|150919|151038|151246|151482|151482|151537|151800|151868|152167|152248|152476|152554|152554|152633|180903|180903|180908|180909|180912|180917|180917|185137|185139|185140|185147|185149|185150|185157|185160|185166|185168|185173|185182|186265|213341|213350|213352|213353|222692|236229|236233|236240|242836|242838|358950|358951|358952|358953|376262|376387|378546|402613|402623|410106|410106|418813|467076|479002|485192|485425|487902|539369|539370|539371|877959|962062|964691|970154|971086", "text": "Breast-ovarian cancer, familial 3" }, { - "baseId": "21865|21866|361961", + "upstreamId": "21865|21866|361961", "text": "46,XY sex reversal, type 5" }, { - "baseId": "21867|21868|21869|21870|21871|21872|21873|21874|49800|49801|49802|49803|257118|257120|257121|257122|257124|257125|257126|269520|271078|273929|343596|343598|343599|348886|348887|348888|348892|348894|348895|349840|349841|349842|377459|377467|446129|489138|490564|493096|506734|550639|584444|716437|728175|757014|772687|800134|800135|800136|800137|800138|800139|882012|882013|882014|882015|882016|882017|882018|882019|882020|882021|882022|882023|882024|882025|882026|882027|882028|882029|882030|882031|882032|882033|882034|882035|882036|882037|882886|882887|882888|982183|982184|982185", + "upstreamId": "21867|21868|21869|21870|21871|21872|21873|21874|49800|49801|49802|49803|257118|257120|257121|257122|257124|257125|257126|269520|271078|273929|343596|343598|343599|348886|348887|348888|348892|348894|348895|349840|349841|349842|377459|377467|446129|489138|490564|493096|506734|550639|584444|716437|728175|757014|772687|800134|800135|800136|800137|800138|800139|882012|882013|882014|882015|882016|882017|882018|882019|882020|882021|882022|882023|882024|882025|882026|882027|882028|882029|882030|882031|882032|882033|882034|882035|882036|882037|882886|882887|882888|982183|982184|982185", "text": "Spondylocostal dysostosis 1, autosomal recessive" }, { - "baseId": "21867|49802|513006|626275|971133", + "upstreamId": "21867|49802|513006|626275|971133", "text": "Leukodystrophy and acquired microcephaly with or without dystonia" }, { - "baseId": "21871|620639|620640", + "upstreamId": "21871|620639|620640", "text": "DLL3-Related Disorders" }, { - "baseId": "21875|102652|108186|626217", + "upstreamId": "21875|102652|108186|626217", "text": "Ectodermal dysplasia, 'pure' hair-nail type" }, { - "baseId": "21876|22540|22541|22648|22649|22650|22651|22652|22653|77443|317734|317735|317737|317739|317743|317751|317752|317759|317761|317769|317770|317773|317774|317779|325606|325607|325615|325618|325628|325645|325658|325660|325663|325664|325665|325671|325672|325673|325677|325680|325681|331857|331858|331860|331865|331866|331867|331869|331874|331881|331883|331886|331892|331900|331903|333345|333358|333362|333363|333364|333366|333367|333368|333373|333383|333391|333400|333406|333411|333422|333426|439458|552164|870085|870086|870087|870088|870089|870090|870091|870092|870093|870094|870095|870096|870097|870098|870099|870100|870101", + "upstreamId": "21876|22540|22541|22648|22649|22650|22651|22652|22653|77443|317734|317735|317737|317739|317743|317751|317752|317759|317761|317769|317770|317773|317774|317779|325606|325607|325615|325618|325628|325645|325658|325660|325663|325664|325665|325671|325672|325673|325677|325680|325681|331857|331858|331860|331865|331866|331867|331869|331874|331881|331883|331886|331892|331900|331903|333345|333358|333362|333363|333364|333366|333367|333368|333373|333383|333391|333400|333406|333411|333422|333426|439458|552164|870085|870086|870087|870088|870089|870090|870091|870092|870093|870094|870095|870096|870097|870098|870099|870100|870101", "text": "Beaded hair" }, { - "baseId": "21877|21878|21879", + "upstreamId": "21877|21878|21879", "text": "Fibrosis of extraocular muscles, congenital, 2" }, { - "baseId": "21880|21881|21882|21883|21884|44134|44135|44136|44137|206769|206770|249766|249767|249768|249769|279455|279456|279459|279460|279463|279465|279474|279476|279480|279484|279486|279487|279492|279732|279735|279737|279738|279739|279748|279749|279758|279760|281000|281012|281013|281024|281025|281026|281033|281034|281035|281059|281066|281161|281162|281163|281170|281173|498296|498407|498463|578380|654202|679852|718785|732261|863860|863861|863862|863863|863864|863865|863866|863867|863868|863869|863870|863871|863872|863873|863874|865135|981312", + "upstreamId": "21880|21881|21882|21883|21884|44134|44135|44136|44137|206769|206770|249766|249767|249768|249769|279455|279456|279459|279460|279463|279465|279474|279476|279480|279484|279486|279487|279492|279732|279735|279737|279738|279739|279748|279749|279758|279760|281000|281012|281013|281024|281025|281026|281033|281034|281035|281059|281066|281161|281162|281163|281170|281173|498296|498407|498463|578380|654202|679852|718785|732261|863860|863861|863862|863863|863864|863865|863866|863867|863868|863869|863870|863871|863872|863873|863874|865135|981312", "text": "Rhizomelic chondrodysplasia punctata type 2" }, { - "baseId": "21885|21886|21887|21888|21889|21892|21893|21894|21895|45357|45358|54849|54851|54852|54853|54854|54857|54862|54864|54867|54871|54874|54875|54876|54878|54882|54882|54886|54888|54892|54898|174047|179122|179133|224349|229564|252655|302196|302212|302215|302216|302224|305396|305405|305406|305426|305434|305440|305443|305444|305445|305447|310221|310227|310228|310229|310234|310323|310325|310327|310328|310329|310346|310347|310357|369358|432490|456504|456900|457592|509882|511090|622378|897682|897683|897684|897685|897686|897687|897688|897689|897690|897691|897692|897693|897694|897695|897696|897697|897698|897699|897700", + "upstreamId": "21885|21886|21887|21888|21889|21892|21893|21894|21895|45357|45358|54849|54851|54852|54853|54854|54857|54862|54864|54867|54871|54874|54875|54876|54878|54882|54882|54886|54888|54892|54898|174047|179122|179133|224349|229564|252655|302196|302212|302215|302216|302224|305396|305405|305406|305426|305434|305440|305443|305444|305445|305447|310221|310227|310228|310229|310234|310323|310325|310327|310328|310329|310346|310347|310357|369358|432490|456504|456900|457592|509882|511090|622378|897682|897683|897684|897685|897686|897687|897688|897689|897690|897691|897692|897693|897694|897695|897696|897697|897698|897699|897700", "text": "Familial hypertrophic cardiomyopathy 6" }, { - "baseId": "21885|21891|21892|21893|21895|45357|45358|45359|54851|54852|54853|54857|54858|54859|54861|54862|54864|54865|54866|54867|54868|54869|54870|54871|54874|54875|54876|54877|54878|54879|54880|54881|54882|54882|54883|54886|54887|54889|54890|54891|54892|54894|54895|54898|54903|87691|174048|174049|174051|174052|174053|174182|174186|177380|179111|179116|179120|179124|179129|179134|179135|179136|179137|181278|224348|229561|229564|229567|240006|240007|240008|240010|240011|240012|240013|252651|302201|302204|302207|302210|302214|302217|302218|302225|305395|305441|305443|305444|305446|305448|305449|305452|310209|310230|310322|310359|360891|369063|369070|369358|369637|371031|395502|395719|395728|395880|395890|395892|395895|396204|456500|456501|456504|456897|456900|457130|457132|457134|457592|487213|501965|502008|509882|511089|511090|521882|522489|522496|522498|522501|522717|522724|522727|522730|522733|522737|522805|522808|522810|523150|523155|523157|523159|561412|561419|561742|561755|564175|564178|566596|566597|566602|566603|566617|617362|635933|635934|635935|635936|635937|635938|635939|635940|635941|635942|635943|651596|651674|651713|655790|683864|683865|687004|687005|687006|687007|759526|775369|782824|819767|819768|833365|833366|833367|833368|833369|833370|833371|833372|833373|833374|833375|833376|851634|897698|910831|910880|924766|924767|924768|933787|933788|933789|933790|933791|933792|933793|933794|940874|945532|945533|945534|945535|955099", + "upstreamId": "21885|21891|21892|21893|21895|45357|45358|45359|54851|54852|54853|54857|54858|54859|54861|54862|54864|54865|54866|54867|54868|54869|54870|54871|54874|54875|54876|54877|54878|54879|54880|54881|54882|54882|54883|54886|54887|54889|54890|54891|54892|54894|54895|54898|54903|87691|174048|174049|174051|174052|174053|174182|174186|177380|179111|179116|179120|179124|179129|179134|179135|179136|179137|181278|224348|229561|229564|229567|240006|240007|240008|240010|240011|240012|240013|252651|302201|302204|302207|302210|302214|302217|302218|302225|305395|305441|305443|305444|305446|305448|305449|305452|310209|310230|310322|310359|360891|369063|369070|369358|369637|371031|395502|395719|395728|395880|395890|395892|395895|396204|456500|456501|456504|456897|456900|457130|457132|457134|457592|487213|501965|502008|509882|511089|511090|521882|522489|522496|522498|522501|522717|522724|522727|522730|522733|522737|522805|522808|522810|523150|523155|523157|523159|561412|561419|561742|561755|564175|564178|566596|566597|566602|566603|566617|617362|635933|635934|635935|635936|635937|635938|635939|635940|635941|635942|635943|651596|651674|651713|655790|683864|683865|687004|687005|687006|687007|759526|775369|782824|819767|819768|833365|833366|833367|833368|833369|833370|833371|833372|833373|833374|833375|833376|851634|897698|910831|910880|924766|924767|924768|933787|933788|933789|933790|933791|933792|933793|933794|940874|945532|945533|945534|945535|955099", "text": "Glycogen storage disease of heart, lethal congenital" }, { - "baseId": "21890", + "upstreamId": "21890", "text": "Wolff-Parkinson-White syndrome, childhood-onset" }, { - "baseId": "21896", + "upstreamId": "21896", "text": "ALDH9A1*2 POLYMORPHISM" }, { - "baseId": "21897|21898|139993|139994|239192|239193|251100|251101|251102|251104|290147|290148|290149|290153|290155|290156|290157|290160|290168|290173|290176|290184|290185|290186|290193|290197|290198|290200|290201|290203|290208|290212|290215|290217|290225|290228|290233|290928|290931|290932|290933|290940|290943|290945|290948|290949|290957|290959|290960|290961|290963|290967|290970|290974|290975|290976|290985|290997|290998|290999|291000|291005|291006|291007|291009|291012|291015|291020|291023|294026|294027|294028|294029|294040|294046|294052|294053|294060|294066|294088|294089|294100|294104|294110|294168|294169|294170|294199|294201|294205|294215|294217|294235|294237|294239|294246|294248|294255|294258|294274|294276|294282|294284|294292|294555|294559|294563|294567|294573|294574|294575|294586|294587|294588|294597|294625|294626|294661|294662|294665|294670|294671|294672|294675|294676|294677|294681|294684|294690|294692|294694|294698|393944|452690|536043|536044|559455|561442|561446|631268|631269|631270|683572|763849|819397|827981|851043|888751|888752|888753|888754|888755|888756|888757|888758|888759|888760|888761|888762|888763|888764|888765|888766|888767|888768|888769|888770|888771|888772|888773|888774|888775|888776|888777|888778|888779|888780|888781|888782|888783|888784|888785|888786|888787|888788|888789|888790|888791|888792|888793|888794|888795|888796|888797|888798|888799|888800|888801|888802|888803|888804|888805|888806|888807|888808|888809|888810|888811|888812|888813|888814|888815|888816|888817|888818|888819|888820|888821|888822|888823|888824|888825|888826|888827|888828|888829|888830|888831|888832|888833|888834|888835|888836|891638|923158", + "upstreamId": "21897|21898|139993|139994|239192|239193|251100|251101|251102|251104|290147|290148|290149|290153|290155|290156|290157|290160|290168|290173|290176|290184|290185|290186|290193|290197|290198|290200|290201|290203|290208|290212|290215|290217|290225|290228|290233|290928|290931|290932|290933|290940|290943|290945|290948|290949|290957|290959|290960|290961|290963|290967|290970|290974|290975|290976|290985|290997|290998|290999|291000|291005|291006|291007|291009|291012|291015|291020|291023|294026|294027|294028|294029|294040|294046|294052|294053|294060|294066|294088|294089|294100|294104|294110|294168|294169|294170|294199|294201|294205|294215|294217|294235|294237|294239|294246|294248|294255|294258|294274|294276|294282|294284|294292|294555|294559|294563|294567|294573|294574|294575|294586|294587|294588|294597|294625|294626|294661|294662|294665|294670|294671|294672|294675|294676|294677|294681|294684|294690|294692|294694|294698|393944|452690|536043|536044|559455|561442|561446|631268|631269|631270|683572|763849|819397|827981|851043|888751|888752|888753|888754|888755|888756|888757|888758|888759|888760|888761|888762|888763|888764|888765|888766|888767|888768|888769|888770|888771|888772|888773|888774|888775|888776|888777|888778|888779|888780|888781|888782|888783|888784|888785|888786|888787|888788|888789|888790|888791|888792|888793|888794|888795|888796|888797|888798|888799|888800|888801|888802|888803|888804|888805|888806|888807|888808|888809|888810|888811|888812|888813|888814|888815|888816|888817|888818|888819|888820|888821|888822|888823|888824|888825|888826|888827|888828|888829|888830|888831|888832|888833|888834|888835|888836|891638|923158", "text": "Heterotaxy, visceral, 4, autosomal" }, { - "baseId": "21899|21900|21901|21902|21904|71503|76542|76543|481239|536017|536182|576355|614411|798694|815881", + "upstreamId": "21899|21900|21901|21902|21904|71503|76542|76543|481239|536017|536182|576355|614411|798694|815881", "text": "Autosomal recessive osteopetrosis 4" }, { - "baseId": "21902|21903|71503|432314|614411|857325", + "upstreamId": "21902|21903|71503|432314|614411|857325", "text": "Autosomal dominant osteopetrosis 2" }, { - "baseId": "21911|71095|71146|178740|178742|178744|178745|195679|227404|256857|256860|256861|256864|256865|256867|256868|256869|256870|256871|256872|256873|256874|256875|256878|256879|256880|256882|256883|256885|266609|274359|274817|333154|333158|333161|333167|333168|333170|333178|333184|333186|333189|343255|343256|343261|343265|343267|343271|343274|343277|343280|343281|343291|343294|343299|348596|348601|348603|348604|348605|348612|348614|348618|348619|348620|349673|349675|349676|349677|349680|349682|349684|349685|349689|349691|349694|376402|442195|549351|728133|728134|728136|728137|731272|731273|741813|741816|741820|756935|772603|772613|772617|786153|801193|801251|880314|880315|880316|880317|880318|880319|880320|880321|880322|880323|880324|880325|880326|880327|880328|880329|880330|880331|880332|880333|880334|880335|880336|880337|880338|880339|880340|880341|880342|880343|880344|880345|880346|880347|880348|880349|880350|880351|880352|880353|880730|880731|880732|880733", + "upstreamId": "21911|71095|71146|178740|178742|178744|178745|195679|227404|256857|256860|256861|256864|256865|256867|256868|256869|256870|256871|256872|256873|256874|256875|256878|256879|256880|256882|256883|256885|266609|274359|274817|333154|333158|333161|333167|333168|333170|333178|333184|333186|333189|343255|343256|343261|343265|343267|343271|343274|343277|343280|343281|343291|343294|343299|348596|348601|348603|348604|348605|348612|348614|348618|348619|348620|349673|349675|349676|349677|349680|349682|349684|349685|349689|349691|349694|376402|442195|549351|728133|728134|728136|728137|731272|731273|741813|741816|741820|756935|772603|772613|772617|786153|801193|801251|880314|880315|880316|880317|880318|880319|880320|880321|880322|880323|880324|880325|880326|880327|880328|880329|880330|880331|880332|880333|880334|880335|880336|880337|880338|880339|880340|880341|880342|880343|880344|880345|880346|880347|880348|880349|880350|880351|880352|880353|880730|880731|880732|880733", "text": "Congenital nephrotic syndrome" }, { - "baseId": "21915|21916|21917|21918|187665|193527|253107|253108|305231|305236|305237|305240|305241|305242|305246|309032|309051|309052|309053|309054|314239|314242|314244|314247|314248|314251|314252|314253|314254|314259|314269|314277|314278|369941|700586|736643|751132|834750|834753|834754|899513|899514|899515|899516|899517|899518|899519|899520|899521|899522|899523|899524|899525|899526|899527|899528|899529|899530|899531|899532|899533|899534|900488|900489|900490|900491|900492|903555", + "upstreamId": "21915|21916|21917|21918|187665|193527|253107|253108|305231|305236|305237|305240|305241|305242|305246|309032|309051|309052|309053|309054|314239|314242|314244|314247|314248|314251|314252|314253|314254|314259|314269|314277|314278|369941|700586|736643|751132|834750|834753|834754|899513|899514|899515|899516|899517|899518|899519|899520|899521|899522|899523|899524|899525|899526|899527|899528|899529|899530|899531|899532|899533|899534|900488|900489|900490|900491|900492|903555", "text": "Cone-rod dystrophy 9" }, { - "baseId": "21919|21921|21922|21923|21924|21925|39232|99638|99640|99642|99647|99648|137774|137778|137779|137780|137782|137785|137788|137795|137796|137804|141323|169822|169823|169824|169825|169826|169826|169829|169830|169831|169832|169834|169834|169835|169836|181577|191007|191199|192635|193836|193839|195293|205026|208797|208799|208800|208801|226604|227707|236858|245212|247753|247754|247755|247756|247757|247757|259242|265631|271024|271309|338245|338250|338256|338271|338276|347905|347913|347927|347955|351664|351674|351691|351692|352602|352602|360506|362398|379858|379858|380144|384415|431927|431928|431929|431929|432225|434511|434513|470316|470318|492538|493637|493638|534326|534478|534841|550374|550646|552232|572013|572016|572017|572022|573419|574141|574142|574143|649528|649529|649530|653288|653900|654141|677319|677464|705951|705953|705956|717474|729208|729209|729218|731426|731427|742927|742935|742936|773567|773568|773569|778625|800410|805121|815824|815825|815826|815827|815828|815829|815830|815831|815832|815833|815834|815835|821465|821466|849375|849376|849377|849378|904252|929496|941282|959101|960349|963188|964555|966019|966047|971162|971163|971164|975872|975873|983307", + "upstreamId": "21919|21921|21922|21923|21924|21925|39232|99638|99640|99642|99647|99648|137774|137778|137779|137780|137782|137785|137788|137795|137796|137804|141323|169822|169823|169824|169825|169826|169826|169829|169830|169831|169832|169834|169834|169835|169836|181577|191007|191199|192635|193836|193839|195293|205026|208797|208799|208800|208801|226604|227707|236858|245212|247753|247754|247755|247756|247757|247757|259242|265631|271024|271309|338245|338250|338256|338271|338276|347905|347913|347927|347955|351664|351674|351691|351692|352602|352602|360506|362398|379858|379858|380144|384415|431927|431928|431929|431929|432225|434511|434513|470316|470318|492538|493637|493638|534326|534478|534841|550374|550646|552232|572013|572016|572017|572022|573419|574141|574142|574143|649528|649529|649530|653288|653900|654141|677319|677464|705951|705953|705956|717474|729208|729209|729218|731426|731427|742927|742935|742936|773567|773568|773569|778625|800410|805121|815824|815825|815826|815827|815828|815829|815830|815831|815832|815833|815834|815835|821465|821466|849375|849376|849377|849378|904252|929496|941282|959101|960349|963188|964555|966019|966047|971162|971163|971164|975872|975873|983307", "text": "Rubinstein-Taybi syndrome 2" }, { - "baseId": "21931|21932|21932|21933|21934|21934|21935|21935|21935|21936|21936|21937|21937|21938|21939|21939|21940|21940|21941|21942|21942|21943|21944|21945|21945|21946|21947|21947|21948|21948|21949|21950|21951|21951|21952|21952|21953|21954|21956|21957|50216|53817|138935|138936|138937|138938|151782|165952|165953|171127|183477|183479|183481|207813|215422|215422|234436|234438|234440|234441|240898|241038|241039|241041|241042|241043|241044|241045|241046|241047|241049|241049|241050|241051|241052|241053|264583|318274|318276|324403|371258|398005|398008|398009|398013|398014|398017|398019|398027|398031|398033|398034|398040|398045|398062|398065|398066|398068|398070|398388|398389|398391|398394|398395|398505|398506|398507|408270|408271|413896|420756|425903|432045|432047|432050|432051|460872|460874|460875|460876|460880|460881|460883|460886|460894|461175|461177|461179|461180|461185|461190|461193|461195|461204|461206|461657|461661|461662|461664|461670|461672|461675|461679|461681|475955|475956|475993|475995|476243|476249|476426|476431|476436|476439|476439|525849|525882|525883|525887|525890|525898|525978|526071|526072|526074|526398|526400|526408|526411|537875|537876|564091|564393|564396|564402|564409|564411|564417|564418|564427|564429|565003|565487|565489|565490|565492|565493|565494|565505|565505|566722|567041|567048|567049|569941|570295|570304|589823|609782|639692|639693|639694|639695|639696|639697|639698|639699|639700|639701|639702|639703|639704|639705|639706|639707|639708|639709|639710|639711|639712|639713|652097|652154|652305|652483|684224|768201|768204|810758|810761|810765|820331|820332|820333|820334|820335|820426|837948|837949|837950|837951|837952|837953|837954|837955|837956|837957|837958|837959|837960|851421|852603|867045|868604|926117|926118|926119|926120|926121|926122|926123|926124|935377|935378|935379|935380|935381|940203|947302|947303|947304|947305|947306|956377|956378|956379|959974|960744", + "upstreamId": "21931|21932|21932|21933|21934|21934|21935|21935|21935|21936|21936|21937|21937|21938|21939|21939|21940|21940|21941|21942|21942|21943|21944|21945|21945|21946|21947|21947|21948|21948|21949|21950|21951|21951|21952|21952|21953|21954|21956|21957|50216|53817|138935|138936|138937|138938|151782|165952|165953|171127|183477|183479|183481|207813|215422|215422|234436|234438|234440|234441|240898|241038|241039|241041|241042|241043|241044|241045|241046|241047|241049|241049|241050|241051|241052|241053|264583|318274|318276|324403|371258|398005|398008|398009|398013|398014|398017|398019|398027|398031|398033|398034|398040|398045|398062|398065|398066|398068|398070|398388|398389|398391|398394|398395|398505|398506|398507|408270|408271|413896|420756|425903|432045|432047|432050|432051|460872|460874|460875|460876|460880|460881|460883|460886|460894|461175|461177|461179|461180|461185|461190|461193|461195|461204|461206|461657|461661|461662|461664|461670|461672|461675|461679|461681|475955|475956|475993|475995|476243|476249|476426|476431|476436|476439|476439|525849|525882|525883|525887|525890|525898|525978|526071|526072|526074|526398|526400|526408|526411|537875|537876|564091|564393|564396|564402|564409|564411|564417|564418|564427|564429|565003|565487|565489|565490|565492|565493|565494|565505|565505|566722|567041|567048|567049|569941|570295|570304|589823|609782|639692|639693|639694|639695|639696|639697|639698|639699|639700|639701|639702|639703|639704|639705|639706|639707|639708|639709|639710|639711|639712|639713|652097|652154|652305|652483|684224|768201|768204|810758|810761|810765|820331|820332|820333|820334|820335|820426|837948|837949|837950|837951|837952|837953|837954|837955|837956|837957|837958|837959|837960|851421|852603|867045|868604|926117|926118|926119|926120|926121|926122|926123|926124|935377|935378|935379|935380|935381|940203|947302|947303|947304|947305|947306|956377|956378|956379|959974|960744", "text": "Paragangliomas 1" }, { - "baseId": "21932|21934|21934|21935|21935|21936|21937|21939|21940|21942|21943|21945|21947|21948|21948|21950|21951|21952|21954|21956|21956|21957|22283|27817|27829|27830|27831|38851|50216|53808|53811|53817|138931|138932|138935|138936|138937|138938|151782|152351|152478|165952|165953|171127|172492|181623|181623|181624|181627|181628|183477|183479|183481|207813|215422|221085|232175|234436|234438|234440|234441|238164|238181|238187|238190|241038|241039|241041|241042|241043|241044|241045|241046|241047|241049|241049|241050|241051|241052|241053|249531|264583|277358|277363|277365|277555|277557|278406|278420|278421|278427|278435|318274|318276|324403|358701|371258|390894|390899|390914|390919|398005|398008|398009|398013|398014|398017|398019|398027|398033|398040|398045|398062|398065|398066|398068|398070|398388|398389|398391|398394|398395|398505|398506|398507|408270|408271|420756|425903|432045|432047|432050|432051|447529|460872|460874|460875|460876|460880|460881|460883|460886|460894|461175|461177|461179|461180|461185|461190|461193|461195|461204|461206|461657|461661|461662|461664|461670|461672|461675|461679|461681|472339|475955|475956|475993|475995|476243|476249|476426|476431|476436|476439|525849|525882|525883|525887|525890|525898|525978|526071|526072|526074|526398|526400|526408|526411|564091|564393|564396|564402|564409|564411|564417|564418|564427|564429|565003|565487|565489|565490|565492|565493|565494|565505|565505|566722|567041|567048|567049|569941|570295|570304|609782|639692|639693|639694|639695|639696|639697|639698|639699|639700|639701|639702|639703|639704|639705|639706|639707|639708|639709|639710|639711|639712|639713|652097|652154|652305|652483|684224|768201|768204|810758|810761|810765|820331|820332|820333|820334|820335|820426|837948|837949|837950|837951|837952|837953|837954|837955|837956|837957|837958|837959|837960|851421|852603|865032|867045|868604|926117|926118|926119|926120|926121|926122|926123|926124|935377|935378|935379|935380|935381|940203|947302|947303|947304|947305|947306|956377|956378|956379|959974|960744", + "upstreamId": "21932|21934|21934|21935|21935|21936|21937|21939|21940|21942|21943|21945|21947|21948|21948|21950|21951|21952|21954|21956|21956|21957|22283|27817|27829|27830|27831|38851|50216|53808|53811|53817|138931|138932|138935|138936|138937|138938|151782|152351|152478|165952|165953|171127|172492|181623|181623|181624|181627|181628|183477|183479|183481|207813|215422|221085|232175|234436|234438|234440|234441|238164|238181|238187|238190|241038|241039|241041|241042|241043|241044|241045|241046|241047|241049|241049|241050|241051|241052|241053|249531|264583|277358|277363|277365|277555|277557|278406|278420|278421|278427|278435|318274|318276|324403|358701|371258|390894|390899|390914|390919|398005|398008|398009|398013|398014|398017|398019|398027|398033|398040|398045|398062|398065|398066|398068|398070|398388|398389|398391|398394|398395|398505|398506|398507|408270|408271|420756|425903|432045|432047|432050|432051|447529|460872|460874|460875|460876|460880|460881|460883|460886|460894|461175|461177|461179|461180|461185|461190|461193|461195|461204|461206|461657|461661|461662|461664|461670|461672|461675|461679|461681|472339|475955|475956|475993|475995|476243|476249|476426|476431|476436|476439|525849|525882|525883|525887|525890|525898|525978|526071|526072|526074|526398|526400|526408|526411|564091|564393|564396|564402|564409|564411|564417|564418|564427|564429|565003|565487|565489|565490|565492|565493|565494|565505|565505|566722|567041|567048|567049|569941|570295|570304|609782|639692|639693|639694|639695|639696|639697|639698|639699|639700|639701|639702|639703|639704|639705|639706|639707|639708|639709|639710|639711|639712|639713|652097|652154|652305|652483|684224|768201|768204|810758|810761|810765|820331|820332|820333|820334|820335|820426|837948|837949|837950|837951|837952|837953|837954|837955|837956|837957|837958|837959|837960|851421|852603|865032|867045|868604|926117|926118|926119|926120|926121|926122|926123|926124|935377|935378|935379|935380|935381|940203|947302|947303|947304|947305|947306|956377|956378|956379|959974|960744", "text": "Carney-Stratakis syndrome" }, { - "baseId": "21932|21934|21934|21935|21936|21937|21940|21942|21943|21945|21947|21948|21951|21952|21954|21956|21957|53817|138935|138936|138937|151782|165952|165953|171127|183477|183479|183481|207813|215422|234436|234438|234441|241039|241044|241046|241047|241049|241051|241052|241053|324403|371258|398005|398008|398009|398013|398014|398019|398027|398033|398040|398045|398062|398065|398066|398070|398388|398389|398391|398394|398395|398505|398506|398507|408270|408271|420756|425903|432045|432047|432050|460872|460874|460875|460876|460880|460881|460886|460894|461175|461177|461179|461190|461193|461195|461204|461206|461657|461661|461662|461670|461675|461679|461681|475955|475956|475993|475995|476243|476249|476426|476431|476436|476439|525849|525882|525887|525898|526071|526072|526074|526400|526408|564091|564393|564396|564402|564409|564411|564417|564427|564429|565003|565487|565489|565490|565492|565494|565505|566722|567041|567048|567049|569941|570295|570304|639692|639694|639696|639698|639700|639701|639702|639703|639704|639705|639706|639707|639708|639709|639710|639712|639713|652097|652154|652305|652483|684224|768201|768204|810765|820331|820332|820333|820334|820335|820426|837948|837949|837950|837951|837952|837953|837954|837955|837956|837957|837958|837959|837960|851421|852603", + "upstreamId": "21932|21934|21934|21935|21936|21937|21940|21942|21943|21945|21947|21948|21951|21952|21954|21956|21957|53817|138935|138936|138937|151782|165952|165953|171127|183477|183479|183481|207813|215422|234436|234438|234441|241039|241044|241046|241047|241049|241051|241052|241053|324403|371258|398005|398008|398009|398013|398014|398019|398027|398033|398040|398045|398062|398065|398066|398070|398388|398389|398391|398394|398395|398505|398506|398507|408270|408271|420756|425903|432045|432047|432050|460872|460874|460875|460876|460880|460881|460886|460894|461175|461177|461179|461190|461193|461195|461204|461206|461657|461661|461662|461670|461675|461679|461681|475955|475956|475993|475995|476243|476249|476426|476431|476436|476439|525849|525882|525887|525898|526071|526072|526074|526400|526408|564091|564393|564396|564402|564409|564411|564417|564427|564429|565003|565487|565489|565490|565492|565494|565505|566722|567041|567048|567049|569941|570295|570304|639692|639694|639696|639698|639700|639701|639702|639703|639704|639705|639706|639707|639708|639709|639710|639712|639713|652097|652154|652305|652483|684224|768201|768204|810765|820331|820332|820333|820334|820335|820426|837948|837949|837950|837951|837952|837953|837954|837955|837956|837957|837958|837959|837960|851421|852603", "text": "Cowden syndrome 3" }, { - "baseId": "21935|21943", + "upstreamId": "21935|21943", "text": "Paragangliomas 1 with sensorineural hearing loss" }, { - "baseId": "21935|23781|23781|23782|23782|23783|23783|23784|23784|39088|48183|48184|48184|48185|48185|135720|135721|135721|135722|135722|135723|135724|135725|135726|135727|135728|135729|135730|142792|142793|150956|150956|151115|151129|151481|151538|151538|151589|151589|151590|152315|152315|165952|170202|170202|188049|205718|209317|209318|221617|221617|221618|221618|221619|224306|224306|226816|226816|226817|226817|226818|226818|226820|226821|226821|226822|226822|226823|226823|226824|226824|226825|226825|226826|226826|233448|233449|233452|233453|233454|233454|233456|233457|233458|233461|233462|233463|233464|233464|233464|239514|239796|239797|239798|239799|239799|239800|239801|239802|239803|239804|239805|239805|239806|239806|239807|239808|239809|239810|239811|239812|239813|239814|239815|239816|239817|239817|239818|239819|239820|239820|239821|239822|239823|239824|239825|239826|239827|239828|239829|239830|239830|239831|239832|239833|239835|239836|239837|239838|239839|239840|239841|239842|239843|239843|239844|239845|239846|239847|239848|239848|241049|247305|247306|247306|247307|247307|247308|247308|247309|247309|247310|247310|247311|247311|247312|247313|247314|247314|248488|251937|251940|251942|251943|297296|297296|297298|297301|299304|299305|303496|303497|303497|303503|303504|303688|303695|303695|303696|303703|333219|333220|343309|343311|349699|358787|358787|358789|358793|358794|358794|358794|358795|358797|358799|368147|368428|368432|368620|368622|369831|369833|394857|394870|394876|394877|394879|394884|394887|394889|394889|394892|394893|394897|394900|394903|394906|394910|394917|394918|394919|394923|394924|394925|394926|394926|394938|394939|394942|394984|394987|394988|394989|394994|394995|395002|395004|395011|395018|395022|395029|395035|395036|395037|395037|395039|395040|395045|395046|395047|395048|395056|395067|395069|395074|395078|395088|395097|395102|395106|395107|395116|395157|395159|395160|395162|395164|395166|395181|395181|395183|395185|395191|395198|395198|395200|395203|395208|395218|395232|395234|395236|395241|395257|395261|395262|395272|395273|395276|395279|395281|395291|395291|395303|395307|395310|395315|395462|395462|395463|395476|395478|395483|395484|395488|395494|395496|395503|395504|395506|395509|395510|395510|395513|395515|395517|395522|395524|395525|395527|395527|395531|395533|395538|395550|395554|406737|406739|406740|415003|434601|443782|443783|454876|454877|454894|454895|454899|454905|454909|454910|454915|454917|454918|454919|454920|454928|454931|454932|454934|454935|454938|454945|454948|454955|454967|454969|454974|454979|454980|454987|455031|455036|455038|455044|455045|455048|455053|455055|455057|455061|455064|455065|455071|455072|455076|455077|455080|455082|455091|455095|455097|455099|455102|455117|455118|455120|455125|455127|455128|455129|455133|455138|455139|455147|455152|455154|455156|455165|455493|455506|455508|455513|455515|455516|455517|455519|455520|455526|455531|455533|455535|455537|455540|455543|455544|455548|455549|455549|455550|455552|455555|455556|455560|455564|455565|455566|455575|455577|455582|455583|455598|455601|455611|455614|455726|455730|455732|455734|455735|455741|455744|455753|455760|455763|455765|455768|455768|455770|455784|455786|455786|455790|455792|455793|455795|455805|455806|455815|455817|455824|455830|455832|455842|455846|455847|455855|455859|455867|455869|455870|455871|455874|474336|474349|474354|474368|474370|474373|474374|474376|474377|474378|474379|474379|474381|474382|474383|474385|474386|474386|474387|474389|474390|474391|474392|474394|474395|474401|474403|474406|474408|474410|474418|474421|474432|474456|474458|474464|474480|474486|474490|474491|474499|474504|500872|521100|521102|521105|521108|521112|521115|521123|521124|521127|521130|521132|521140|521149|521150|521158|521170|521356|521358|521360|521363|521364|521369|521369|521370|521376|521379|521381|521384|521389|521392|521395|521399|521400|521402|521412|521414|521418|521423|521428|521432|521436|521480|521487|521500|521503|521509|521510|521513|521516|521523|521525|521527|521528|521533|521651|521654|521663|521665|521671|521677|521679|521684|521686|521701|521705|521716|521718|521720|521726|521728|521732|521734|521736|521741|521743|521749|521751|521753|521759|521761|521769|521772|536309|539255|539256|539259|560291|560293|560295|560297|560299|560301|560303|560305|560307|560309|560311|560313|560412|560414|560416|560418|560420|560422|560424|560426|560428|560430|560432|560434|560436|560438|560440|560442|560444|560446|563090|563092|563094|563103|563105|563107|563109|563113|563117|563118|563121|563125|563125|563128|563129|563131|563133|563138|563146|563149|563149|563150|563153|565075|565076|565078|565083|565084|565088|565090|565091|565101|565105|565106|565107|565110|565114|565121|565505|633848|633849|633850|633851|633852|633853|633854|633855|633856|633857|633858|633859|633860|633861|633862|633863|633864|633865|633866|633867|633868|633869|633870|633871|633872|633873|633874|633875|633876|633877|633878|633879|633880|633881|633882|633883|633884|633885|633886|633887|633888|633889|633890|633891|633892|633893|633894|633895|633896|633897|633898|633899|633900|633901|633902|633903|633904|633905|633906|633907|633908|633909|633910|633911|633912|633913|633914|633915|633916|633917|633918|633919|633920|633921|633922|633923|633924|633925|633926|633927|633928|633929|633930|633931|651337|651343|651425|651431|679335|679825|682219|682219|686738|686739|686740|686741|686743|686744|686745|689795|691844|691845|691846|691847|691849|691850|691851|695290|699057|699058|709864|721426|721426|730355|730356|744236|749458|749460|749461|749462|749463|749464|749465|759470|765082|765088|765089|765092|775065|777455|777549|777549|782270|782271|782273|782274|782276|782278|787324|787438|790549|790550|795689|795691|808581|808584|808585|808589|808593|808600|808603|808607|808610|808613|808614|808617|808623|808623|808633|808634|808635|808640|808647|815348|830773|830774|830775|830776|830777|830778|830779|830780|830781|830782|830783|830784|830785|830786|830787|830788|830789|830790|830791|830792|830793|830794|830795|830796|830797|830798|830799|830799|830800|830801|830802|830803|830804|830805|830806|830807|830808|830809|830810|830811|830812|830813|830814|830815|830816|830817|830818|830819|830820|830821|830822|830823|830824|830825|830826|830827|830828|830829|830830|830831|830832|830833|851030|851032|851284|851286|851288|851976|851980|851982|851984|852202|852203|852204|852209|859422|880358|880359|880360|880361|880362|880363|880364|880365|880366|894085|894085|894086|894087|894088|894089|896089|924027|924028|924029|924030|924031|924032|924033|924034|924035|924036|924037|924038|924039|924040|924041|924042|924043|924044|924045|924046|924047|924048|924049|924050|924051|924052|924053|924054|924055|924056|924057|924058|924059|924060|924061|932880|932881|932882|932883|932884|932885|932886|932887|932888|932889|932890|932891|932892|932893|932894|932895|932896|932897|932898|932899|932900|932901|932902|940001|940002|940003|944585|944586|944587|944588|944589|944590|944591|944592|944593|944594|944595|944596|944597|944598|944599|944600|944601|944602|944603|944604|944605|944606|944607|944608|944609|944610|944611|944612|944613|944614|944615|954151|954152|954153|954154|954155|954156|954157|954158|954159|954160|954161|954162|954163|954164|954165|954166|954167|954168|954169|954170|959764|959765|959766|960567", + "upstreamId": "21935|23781|23781|23782|23782|23783|23783|23784|23784|39088|48183|48184|48184|48185|48185|135720|135721|135721|135722|135722|135723|135724|135725|135726|135727|135728|135729|135730|142792|142793|150956|150956|151115|151129|151481|151538|151538|151589|151589|151590|152315|152315|165952|170202|170202|188049|205718|209317|209318|221617|221617|221618|221618|221619|224306|224306|226816|226816|226817|226817|226818|226818|226820|226821|226821|226822|226822|226823|226823|226824|226824|226825|226825|226826|226826|233448|233449|233452|233453|233454|233454|233456|233457|233458|233461|233462|233463|233464|233464|233464|239514|239796|239797|239798|239799|239799|239800|239801|239802|239803|239804|239805|239805|239806|239806|239807|239808|239809|239810|239811|239812|239813|239814|239815|239816|239817|239817|239818|239819|239820|239820|239821|239822|239823|239824|239825|239826|239827|239828|239829|239830|239830|239831|239832|239833|239835|239836|239837|239838|239839|239840|239841|239842|239843|239843|239844|239845|239846|239847|239848|239848|241049|247305|247306|247306|247307|247307|247308|247308|247309|247309|247310|247310|247311|247311|247312|247313|247314|247314|248488|251937|251940|251942|251943|297296|297296|297298|297301|299304|299305|303496|303497|303497|303503|303504|303688|303695|303695|303696|303703|333219|333220|343309|343311|349699|358787|358787|358789|358793|358794|358794|358794|358795|358797|358799|368147|368428|368432|368620|368622|369831|369833|394857|394870|394876|394877|394879|394884|394887|394889|394889|394892|394893|394897|394900|394903|394906|394910|394917|394918|394919|394923|394924|394925|394926|394926|394938|394939|394942|394984|394987|394988|394989|394994|394995|395002|395004|395011|395018|395022|395029|395035|395036|395037|395037|395039|395040|395045|395046|395047|395048|395056|395067|395069|395074|395078|395088|395097|395102|395106|395107|395116|395157|395159|395160|395162|395164|395166|395181|395181|395183|395185|395191|395198|395198|395200|395203|395208|395218|395232|395234|395236|395241|395257|395261|395262|395272|395273|395276|395279|395281|395291|395291|395303|395307|395310|395315|395462|395462|395463|395476|395478|395483|395484|395488|395494|395496|395503|395504|395506|395509|395510|395510|395513|395515|395517|395522|395524|395525|395527|395527|395531|395533|395538|395550|395554|406737|406739|406740|415003|434601|443782|443783|454876|454877|454894|454895|454899|454905|454909|454910|454915|454917|454918|454919|454920|454928|454931|454932|454934|454935|454938|454945|454948|454955|454967|454969|454974|454979|454980|454987|455031|455036|455038|455044|455045|455048|455053|455055|455057|455061|455064|455065|455071|455072|455076|455077|455080|455082|455091|455095|455097|455099|455102|455117|455118|455120|455125|455127|455128|455129|455133|455138|455139|455147|455152|455154|455156|455165|455493|455506|455508|455513|455515|455516|455517|455519|455520|455526|455531|455533|455535|455537|455540|455543|455544|455548|455549|455549|455550|455552|455555|455556|455560|455564|455565|455566|455575|455577|455582|455583|455598|455601|455611|455614|455726|455730|455732|455734|455735|455741|455744|455753|455760|455763|455765|455768|455768|455770|455784|455786|455786|455790|455792|455793|455795|455805|455806|455815|455817|455824|455830|455832|455842|455846|455847|455855|455859|455867|455869|455870|455871|455874|474336|474349|474354|474368|474370|474373|474374|474376|474377|474378|474379|474379|474381|474382|474383|474385|474386|474386|474387|474389|474390|474391|474392|474394|474395|474401|474403|474406|474408|474410|474418|474421|474432|474456|474458|474464|474480|474486|474490|474491|474499|474504|500872|521100|521102|521105|521108|521112|521115|521123|521124|521127|521130|521132|521140|521149|521150|521158|521170|521356|521358|521360|521363|521364|521369|521369|521370|521376|521379|521381|521384|521389|521392|521395|521399|521400|521402|521412|521414|521418|521423|521428|521432|521436|521480|521487|521500|521503|521509|521510|521513|521516|521523|521525|521527|521528|521533|521651|521654|521663|521665|521671|521677|521679|521684|521686|521701|521705|521716|521718|521720|521726|521728|521732|521734|521736|521741|521743|521749|521751|521753|521759|521761|521769|521772|536309|539255|539256|539259|560291|560293|560295|560297|560299|560301|560303|560305|560307|560309|560311|560313|560412|560414|560416|560418|560420|560422|560424|560426|560428|560430|560432|560434|560436|560438|560440|560442|560444|560446|563090|563092|563094|563103|563105|563107|563109|563113|563117|563118|563121|563125|563125|563128|563129|563131|563133|563138|563146|563149|563149|563150|563153|565075|565076|565078|565083|565084|565088|565090|565091|565101|565105|565106|565107|565110|565114|565121|565505|633848|633849|633850|633851|633852|633853|633854|633855|633856|633857|633858|633859|633860|633861|633862|633863|633864|633865|633866|633867|633868|633869|633870|633871|633872|633873|633874|633875|633876|633877|633878|633879|633880|633881|633882|633883|633884|633885|633886|633887|633888|633889|633890|633891|633892|633893|633894|633895|633896|633897|633898|633899|633900|633901|633902|633903|633904|633905|633906|633907|633908|633909|633910|633911|633912|633913|633914|633915|633916|633917|633918|633919|633920|633921|633922|633923|633924|633925|633926|633927|633928|633929|633930|633931|651337|651343|651425|651431|679335|679825|682219|682219|686738|686739|686740|686741|686743|686744|686745|689795|691844|691845|691846|691847|691849|691850|691851|695290|699057|699058|709864|721426|721426|730355|730356|744236|749458|749460|749461|749462|749463|749464|749465|759470|765082|765088|765089|765092|775065|777455|777549|777549|782270|782271|782273|782274|782276|782278|787324|787438|790549|790550|795689|795691|808581|808584|808585|808589|808593|808600|808603|808607|808610|808613|808614|808617|808623|808623|808633|808634|808635|808640|808647|815348|830773|830774|830775|830776|830777|830778|830779|830780|830781|830782|830783|830784|830785|830786|830787|830788|830789|830790|830791|830792|830793|830794|830795|830796|830797|830798|830799|830799|830800|830801|830802|830803|830804|830805|830806|830807|830808|830809|830810|830811|830812|830813|830814|830815|830816|830817|830818|830819|830820|830821|830822|830823|830824|830825|830826|830827|830828|830829|830830|830831|830832|830833|851030|851032|851284|851286|851288|851976|851980|851982|851984|852202|852203|852204|852209|859422|880358|880359|880360|880361|880362|880363|880364|880365|880366|894085|894085|894086|894087|894088|894089|896089|924027|924028|924029|924030|924031|924032|924033|924034|924035|924036|924037|924038|924039|924040|924041|924042|924043|924044|924045|924046|924047|924048|924049|924050|924051|924052|924053|924054|924055|924056|924057|924058|924059|924060|924061|932880|932881|932882|932883|932884|932885|932886|932887|932888|932889|932890|932891|932892|932893|932894|932895|932896|932897|932898|932899|932900|932901|932902|940001|940002|940003|944585|944586|944587|944588|944589|944590|944591|944592|944593|944594|944595|944596|944597|944598|944599|944600|944601|944602|944603|944604|944605|944606|944607|944608|944609|944610|944611|944612|944613|944614|944615|954151|954152|954153|954154|954155|954156|954157|954158|954159|954160|954161|954162|954163|954164|954165|954166|954167|954168|954169|954170|959764|959765|959766|960567", "text": "Mitochondrial complex II deficiency" }, { - "baseId": "21939|21950|21957|22852|22872|27830|27831|48303|48304|50210|50216|54635|138931|138938|173901|183028|183032|183046|213941|213942|221370|226336|226337|226338|226339|226340|226341|226796|226797|234440|238181|241041|241042|241050|245214|245285|245286|245287|245288|245290|245291|245292|245293|245294|251011|264583|318274|318276|358701|362928|363358|363377|371872|390876|390893|390925|393133|393361|393365|393404|393410|393411|393412|393414|393415|393418|393426|393584|393599|393600|393601|393605|393610|393612|393621|393623|393782|393787|393793|393797|393799|393800|393804|398017|398068|406150|432051|451950|451951|451956|451958|451966|452150|452151|452153|452157|452165|452170|452177|452178|452184|452298|452303|452305|452307|452415|452418|452420|452429|460380|460883|461180|461185|461664|461672|513940|518955|518958|518965|518968|518971|518975|518989|518990|519149|519151|519162|519163|519166|519167|519169|519172|519173|519176|519178|519187|525883|525890|525978|526398|526411|537441|558244|558842|558844|558846|558848|559383|559385|561265|561270|561271|561273|562571|562573|562582|562583|564418|565493|575654|575655|609782|612152|631047|631048|631049|631050|631051|631052|631053|631054|631055|631056|631057|631058|631059|631060|631061|631062|639693|639695|639697|639699|639711|650976|651077|651079|651155|683566|683567|686365|686366|686367|686368|689737|697937|697940|697941|748114|810758|810761|819353|819354|827717|827718|827719|827720|827721|827722|827723|827724|827725|827726|827727|827728|827729|850920|867045|868604|905924|917058|917060|923098|923099|923100|923101|926117|926118|926119|926120|926121|926122|926123|926124|931839|931840|931841|931842|931843|935377|935378|935379|935380|935381|940203|943420|943421|943422|943423|943424|943425|943426|947302|947303|947304|947305|947306|953398|953399|956377|956378|956379|959974|960744|975937|975938|975939", + "upstreamId": "21939|21950|21957|22852|22872|27830|27831|48303|48304|50210|50216|54635|138931|138938|173901|183028|183032|183046|213941|213942|221370|226336|226337|226338|226339|226340|226341|226796|226797|234440|238181|241041|241042|241050|245214|245285|245286|245287|245288|245290|245291|245292|245293|245294|251011|264583|318274|318276|358701|362928|363358|363377|371872|390876|390893|390925|393133|393361|393365|393404|393410|393411|393412|393414|393415|393418|393426|393584|393599|393600|393601|393605|393610|393612|393621|393623|393782|393787|393793|393797|393799|393800|393804|398017|398068|406150|432051|451950|451951|451956|451958|451966|452150|452151|452153|452157|452165|452170|452177|452178|452184|452298|452303|452305|452307|452415|452418|452420|452429|460380|460883|461180|461185|461664|461672|513940|518955|518958|518965|518968|518971|518975|518989|518990|519149|519151|519162|519163|519166|519167|519169|519172|519173|519176|519178|519187|525883|525890|525978|526398|526411|537441|558244|558842|558844|558846|558848|559383|559385|561265|561270|561271|561273|562571|562573|562582|562583|564418|565493|575654|575655|609782|612152|631047|631048|631049|631050|631051|631052|631053|631054|631055|631056|631057|631058|631059|631060|631061|631062|639693|639695|639697|639699|639711|650976|651077|651079|651155|683566|683567|686365|686366|686367|686368|689737|697937|697940|697941|748114|810758|810761|819353|819354|827717|827718|827719|827720|827721|827722|827723|827724|827725|827726|827727|827728|827729|850920|867045|868604|905924|917058|917060|923098|923099|923100|923101|926117|926118|926119|926120|926121|926122|926123|926124|931839|931840|931841|931842|931843|935377|935378|935379|935380|935381|940203|943420|943421|943422|943423|943424|943425|943426|947302|947303|947304|947305|947306|953398|953399|956377|956378|956379|959974|960744|975937|975938|975939", "text": "Cowden syndrome" }, { - "baseId": "21948", + "upstreamId": "21948", "text": "Carcinoid tumor of intestine" }, { - "baseId": "21950", + "upstreamId": "21950", "text": "Carotid body paraganglioma" }, { - "baseId": "21958", + "upstreamId": "21958", "text": "Lymphoma, somatic" }, { - "baseId": "21960|21961|21962|21963|21964|21965|21967|21968|21969|21970|21971|21972|21973|21974|21975|34150|79171|79172|79176|79177|79179|79181|79182|79183|79184|142890|142891|142894|142895|142896|142897|186806|186807|186808|186809|186810|196221|211488|211489|211490|211491|211492|211493|211495|211495|211496|266301|270315|272281|324615|324617|371263|371268|372010|372210|372217|425908|432303|444736|460908|460910|460946|461241|481469|488373|504094|504102|526098|526433|545436|545438|545440|545441|545443|545448|545451|545453|545458|545460|545466|545468|545469|545479|545481|545485|545487|545490|545493|545500|545513|545515|545518|545520|545525|545526|545528|545530|545532|545533|545543|545545|545556|545560|545561|545562|545565|545570|545572|545574|545580|545589|545591|545593|545597|545613|545614|545620|545622|545625|545637|545641|545642|545662|545668|545676|545678|545691|545692|545694|545699|545701|545717|545722|545736|545737|545739|545741|545744|545747|545749|545754|545756|545759|545771|545776|545778|545781|545782|545783|545784|545786|545787|545788|545790|545791|545793|545794|545798|545800|545802|545805|545807|545810|545812|545816|545822|545823|545825|545833|545838|545842|545844|545845|545846|545847|545848|545849|545851|545853|545854|545857|545862|545864|545865|545866|545869|545870|545872|545875|545876|545877|545878|545881|545882|545884|545887|545890|545892|545894|545896|545897|545898|545900|545902|545903|545905|545906|545910|545911|545914|545916|545917|545918|545919|545920|545921|545925|545928|545930|545933|545936|545938|545940|545941|545943|545945|545950|545951|545954|545955|545959|545965|545969|545972|545974|545976|545977|545978|545979|545981|545983|545984|545985|545988|545990|545992|545993|545995|545997|545999|546001|546002|546005|546006|546008|546010|546012|546013|546014|546015|546017|546021|546023|546025|546026|546027|546028|546030|546033|546037|546041|546043|546045|546047|546048|546049|546050|546051|546052|546053|546055|546056|546060|546061|546063|546065|546067|546068|546074|546075|546076|546077|546082|546084|546085|546088|546091|546094|546096|546097|546098|546099|546100|546101|546102|546103|546105|546106|546107|546108|546112|546113|546114|546119|546121|546124|546126|546129|546131|546132|546133|546137|546139|546142|546148|546151|546153|546157|546159|546164|546169|546171|546174|546175|546177|546180|546181|546192|546195|546202|546204|546206|546214|546219|546223|546226|546227|546229|546231|546235|546236|546237|546243|546246|546248|546249|546250|546260|546262|546264|546271|546274|546281|546283|546286|546292|546294|546295|546299|546304|546308|546318|546323|546325|546331|546333|546335|546337|546346|546351|546353|546355|546358|546368|546372|546378|546381|546389|546391|546393|546397|546398|546419|546420|546433|564453|564454|565529|567063|567070|570342|570362|570364|570368|584271|584323|612291|621345|621805|621806|639757|639758|639759|639760|639761|639762|639763|639764|639765|639766|639767|639768|639769|639770|639771|639772|652102|652156|652307|652375|652496|712638|724233|724234|724235|737792|752471|768240|768241|768242|768243|768244|768245|768247|779515|783887|783888|787902|788846|816318|820339|820429|820430|838043|838044|838045|838046|838047|838048|838049|838050|838051|838052|838053|905925|906021|917079|926139|926140|935407|935408|947337|951976|956403|956404|956405|956406|956407|956408|956409|956410|956411|956412|956413|956414|956415|956416|956417|959978|960745|961865|969164|975803|978864|978865|980943", + "upstreamId": "21960|21961|21962|21963|21964|21965|21967|21968|21969|21970|21971|21972|21973|21974|21975|34150|79171|79172|79176|79177|79179|79181|79182|79183|79184|142890|142891|142894|142895|142896|142897|186806|186807|186808|186809|186810|196221|211488|211489|211490|211491|211492|211493|211495|211495|211496|266301|270315|272281|324615|324617|371263|371268|372010|372210|372217|425908|432303|444736|460908|460910|460946|461241|481469|488373|504094|504102|526098|526433|545436|545438|545440|545441|545443|545448|545451|545453|545458|545460|545466|545468|545469|545479|545481|545485|545487|545490|545493|545500|545513|545515|545518|545520|545525|545526|545528|545530|545532|545533|545543|545545|545556|545560|545561|545562|545565|545570|545572|545574|545580|545589|545591|545593|545597|545613|545614|545620|545622|545625|545637|545641|545642|545662|545668|545676|545678|545691|545692|545694|545699|545701|545717|545722|545736|545737|545739|545741|545744|545747|545749|545754|545756|545759|545771|545776|545778|545781|545782|545783|545784|545786|545787|545788|545790|545791|545793|545794|545798|545800|545802|545805|545807|545810|545812|545816|545822|545823|545825|545833|545838|545842|545844|545845|545846|545847|545848|545849|545851|545853|545854|545857|545862|545864|545865|545866|545869|545870|545872|545875|545876|545877|545878|545881|545882|545884|545887|545890|545892|545894|545896|545897|545898|545900|545902|545903|545905|545906|545910|545911|545914|545916|545917|545918|545919|545920|545921|545925|545928|545930|545933|545936|545938|545940|545941|545943|545945|545950|545951|545954|545955|545959|545965|545969|545972|545974|545976|545977|545978|545979|545981|545983|545984|545985|545988|545990|545992|545993|545995|545997|545999|546001|546002|546005|546006|546008|546010|546012|546013|546014|546015|546017|546021|546023|546025|546026|546027|546028|546030|546033|546037|546041|546043|546045|546047|546048|546049|546050|546051|546052|546053|546055|546056|546060|546061|546063|546065|546067|546068|546074|546075|546076|546077|546082|546084|546085|546088|546091|546094|546096|546097|546098|546099|546100|546101|546102|546103|546105|546106|546107|546108|546112|546113|546114|546119|546121|546124|546126|546129|546131|546132|546133|546137|546139|546142|546148|546151|546153|546157|546159|546164|546169|546171|546174|546175|546177|546180|546181|546192|546195|546202|546204|546206|546214|546219|546223|546226|546227|546229|546231|546235|546236|546237|546243|546246|546248|546249|546250|546260|546262|546264|546271|546274|546281|546283|546286|546292|546294|546295|546299|546304|546308|546318|546323|546325|546331|546333|546335|546337|546346|546351|546353|546355|546358|546368|546372|546378|546381|546389|546391|546393|546397|546398|546419|546420|546433|564453|564454|565529|567063|567070|570342|570362|570364|570368|584271|584323|612291|621345|621805|621806|639757|639758|639759|639760|639761|639762|639763|639764|639765|639766|639767|639768|639769|639770|639771|639772|652102|652156|652307|652375|652496|712638|724233|724234|724235|737792|752471|768240|768241|768242|768243|768244|768245|768247|779515|783887|783888|787902|788846|816318|820339|820429|820430|838043|838044|838045|838046|838047|838048|838049|838050|838051|838052|838053|905925|906021|917079|926139|926140|935407|935408|947337|951976|956403|956404|956405|956406|956407|956408|956409|956410|956411|956412|956413|956414|956415|956416|956417|959978|960745|961865|969164|975803|978864|978865|980943", "text": "Glucose-6-phosphate transport defect" }, { - "baseId": "21964|21965|21966|21967|21968|21973|211495|788846|816318", + "upstreamId": "21964|21965|21966|21967|21968|21973|211495|788846|816318", "text": "Phosphate transport defect" }, { - "baseId": "21967|79181|142889|142890|142898|211496|269769|312550|312552|312554|312555|312556|318519|318535|318538|318539|318540|318543|318547|324615|324617|324620|324631|324632|324638|324642|324643|325352|325353|325367|325369|325384|325389|325405|325408|328602|338546|344627|346020|346037|371269|425908|570368|867110|867111|867112|867113|867114|867115|867116|867117|867118|867119|868609", + "upstreamId": "21967|79181|142889|142890|142898|211496|269769|312550|312552|312554|312555|312556|318519|318535|318538|318539|318540|318543|318547|324615|324617|324620|324631|324632|324638|324642|324643|325352|325353|325367|325369|325384|325389|325405|325408|328602|338546|344627|346020|346037|371269|425908|570368|867110|867111|867112|867113|867114|867115|867116|867117|867118|867119|868609", "text": "Glycogen storage disease, type I" }, { - "baseId": "21976", + "upstreamId": "21976", "text": "ANTERIOR SEGMENT DYSGENESIS 1, MULTIPLE SUBTYPES" }, { - "baseId": "21976|21978", + "upstreamId": "21976|21978", "text": "Cataract 11, posterior polar" }, { - "baseId": "21977|459553|459568|459812|564449|638655", + "upstreamId": "21977|459553|459568|459812|564449|638655", "text": "Cataract 11" }, { - "baseId": "21978", + "upstreamId": "21978", "text": "Cataract 11, posterior polar, with microphthalmia and neurodevelopmental abnormalities" }, { - "baseId": "21979|21981|21982|21984|21985|21986|21987|21988|88349|132520|132522|132522|132523|132527|132527|132530|133309|133309|133310|133311|133312|133313|133314|133315|133316|133317|133318|133319|133320|133320|133321|133322|133322|133323|133324|133325|133326|133328|133328|133329|133329|133330|133330|133331|133331|133332|133333|133335|133336|133337|133338|136434|136438|136449|136482|136492|136503|136514|138611|138612|138613|138614|138615|138616|138617|139746|139747|139748|139749|139750|139751|139752|139753|139754|139755|139756|139757|139758|139759|139760|142128|142129|142130|142131|150481|150519|150542|150573|150583|150632|150648|150694|150860|150860|150863|150883|150885|150895|150983|150987|150989|151094|151112|151154|151313|151331|151345|151403|151441|151445|151530|151602|151629|151660|151693|151728|151799|151866|151899|151907|151917|151941|151956|152076|152079|152081|152088|152211|152235|152273|152273|152418|152573|171455|180277|180277|180278|180279|180279|180280|180281|180282|180284|180286|180289|180290|180292|180293|180294|180295|180296|180297|180298|180298|180299|180300|180301|180303|180304|180305|180306|180307|180308|180309|181211|182826|182827|182828|182830|182831|182832|182835|182837|182838|182839|182840|182841|182842|182843|182845|182846|182847|182848|182850|182851|182852|182853|182854|182855|182856|182857|182858|182859|182860|182861|182862|182863|182864|182868|182869|182870|182871|182873|182874|182874|182875|182876|182878|182879|182880|182881|182883|182884|182885|182886|182887|182889|182890|182891|182893|182894|182895|182896|182897|182897|182900|182901|182903|182904|182905|182906|182907|186092|186093|188057|188057|188058|207572|212624|212625|212640|212641|212642|212643|212644|212645|212646|212647|212648|212649|212650|221769|221770|221771|221772|221773|221774|221775|221776|221777|221778|221779|221781|221782|221783|221784|221785|221786|221787|221788|221789|221790|221791|221792|221794|221794|221795|221796|221797|221798|221799|226830|231701|231702|231706|231707|231708|231709|231714|233618|233619|233622|233624|233625|233626|233631|233632|233633|233634|233635|233636|233637|233638|233639|233640|233641|233642|233645|233646|233648|233649|233650|233651|233652|233653|233654|233655|233656|233657|233659|233660|233661|233662|233665|233666|233667|233669|233670|233673|233674|233677|233678|233680|233682|233683|233684|233687|233689|233690|233691|233692|233693|233694|233695|233699|233701|233702|233702|233704|233706|233707|233709|233710|233717|233718|233720|233722|233726|233727|240403|240405|240406|240408|240409|240410|240411|240412|240413|240414|240415|240416|240417|240418|240419|240420|240421|240422|240423|240424|240425|240426|240427|240428|240429|240430|240431|240432|253192|253193|305988|305991|305999|306002|306003|310029|310030|310032|310035|315335|315345|315346|315356|315367|315368|315369|315473|315476|315495|315499|315505|315507|315509|315514|357656|357657|357658|357659|357660|357661|357662|357663|357664|357665|357666|357667|357668|357669|357670|357671|357672|357673|357674|362414|362415|362416|362418|369603|369604|370048|370050|370055|370070|370071|370351|370376|371970|371978|371979|396292|396293|396295|396297|396298|396301|396307|396309|396313|396315|396316|396317|396326|396328|396339|396344|396350|396352|396512|396518|396555|396557|396559|396567|396575|396578|396587|396606|396609|396627|396632|396635|396637|396694|396697|396701|396705|396708|396713|396715|396717|396720|396721|396725|396731|396732|396736|396738|396741|396933|396936|396941|396948|396952|396955|396956|396962|396967|396969|396970|396977|396981|396988|396992|396994|396999|407463|407464|407465|407466|407470|407471|407474|407475|407477|407478|407479|407485|407486|407487|407489|407491|407492|407493|407496|407498|407499|432651|432652|432653|432654|444308|457702|457994|458000|458003|458010|458011|458015|458019|458027|458029|458031|458035|458037|458045|458048|458050|458056|458057|458059|458061|458066|458070|458074|458076|458078|458082|458087|458092|458093|458095|458120|458544|458547|458554|458557|458559|458564|458566|458578|458579|458582|458584|458588|458589|458590|458592|458599|458607|458608|458614|458616|458617|458619|458620|458623|458623|458627|458628|458629|458633|458634|458636|458637|458641|458648|458655|458658|458660|458663|458666|458668|458671|458673|458675|458685|458687|458691|458694|458695|458698|458700|458702|458706|458714|458714|459049|459053|459055|459057|459058|459062|459065|459067|459071|459076|459078|459081|459082|459085|459087|459089|459090|459091|459100|459101|459104|459109|459112|459115|474694|474704|474707|474721|474722|474724|474728|474734|474736|474737|474740|474741|474742|474744|474749|474756|474757|474759|474763|474764|474768|474773|474776|474780|474786|474790|474792|474794|474798|474801|474802|474803|474804|474808|474809|474810|474812|474815|474820|474822|474825|474828|474831|474832|474837|474839|474847|474856|474859|474861|474862|474866|474867|474871|474876|474891|474892|474903|474906|474908|474926|474935|474938|474940|474941|474945|474946|474953|474956|474963|474972|474974|474976|474980|474987|474990|474991|474996|475002|475010|475012|475016|481827|482670|482671|482673|482675|482677|482694|482712|482716|482726|482727|482734|483981|483990|484006|484007|484010|484024|484086|484179|484197|484199|484215|484232|484234|484266|487242|487333|487345|488134|502062|502063|502529|502792|522954|523177|523178|523527|523712|523715|523719|523722|523727|523728|523731|523734|523736|523740|523746|523749|523753|523754|523757|523770|524027|524032|524036|524037|524039|524044|524049|524051|524057|524059|524063|524070|524071|524073|524286|524290|524295|524297|524306|524309|524311|524316|524317|524318|524320|524321|524323|524325|524328|524329|524330|524332|524335|524337|524340|524341|524342|524347|524351|524354|524356|524358|524364|524365|524368|524370|524376|524380|524384|524389|524395|536345|536346|544484|544487|544497|544499|544501|544502|544777|544784|544786|544806|544810|544811|544819|544824|544878|544882|544883|544886|544892|561852|561863|562326|562331|562503|562506|562508|562510|562512|562514|562516|562518|562524|562525|562533|562535|562540|562542|562544|562547|563096|563102|563111|563114|563119|563122|563126|563127|563130|563132|563137|563139|563147|563156|563157|563159|563170|564551|565229|565232|565234|565236|565237|565239|565244|565245|565247|565253|565254|565259|565264|565265|565267|565269|565271|565273|567305|568113|568117|568123|568124|568128|568141|568148|568149|568154|568156|568157|568165|568166|568168|568174|568177|568183|568199|568215|568227|568233|568239|568246|575784|575785|575786|614326|614326|617432|617445|617447|617453|617454|617457|617459|617464|617465|617469|617470|617472|617474|617476|617479|617480|617482|617484|617486|617491|617494|617498|617499|617500|617506|619282|619296|619307|620307|620308|637409|637410|637411|637412|637413|637414|637415|637416|637417|637418|637419|637420|637421|637422|637423|637424|637425|637426|637427|637428|637429|637430|637431|637432|637433|637434|637435|637436|637437|637438|637439|637440|637441|637442|637443|637444|637445|637446|637447|637448|637449|637450|637451|637452|637453|637454|637455|637456|637457|637458|637459|637460|637461|637462|637463|637464|637465|637466|637467|637468|637469|637470|637471|637472|637473|637474|637475|637476|637477|637478|637479|637480|637481|637482|637483|637484|637485|637486|651800|651801|651810|651811|651814|651874|651909|651916|651917|652001|652005|652006|652008|652010|692524|692525|695397|695399|751257|751259|759756|766920|766924|766925|766926|775356|783166|783168|783170|783171|783172|783173|789484|789485|789486|789487|789676|790817|790818|790819|790820|790821|790822|801661|801662|809198|809202|809208|809224|809227|809231|809233|809243|809246|809251|809254|809258|809260|809266|809267|809291|809292|809296|815395|819990|819991|819992|819993|819994|819995|819996|819997|819998|819999|820000|820001|835090|835091|835092|835093|835094|835095|835096|835097|835098|835099|835100|835101|835102|835103|835104|835105|835106|835107|835108|835109|835110|835111|835112|835113|835114|835115|835116|835117|835118|835119|835120|835121|835122|835123|835124|835125|835126|835127|835128|835129|835130|835131|835132|835133|835134|835135|835136|835137|835138|835139|835140|835141|835142|835143|835144|835145|835146|835147|835148|851710|851712|852158|852446|900129|900130|900131|900132|900133|900134|900135|900136|900137|900138|900139|900140|900141|900142|900143|900144|900145|900146|900147|900148|900149|900517|910999|911034|911035|911042|915034|925264|925265|925266|925267|925268|925269|925270|925271|925272|925273|925274|925275|925276|925277|925278|925279|925280|934426|934427|934428|934429|934430|934431|934432|934433|934434|934435|934436|934437|934438|934439|934440|934441|934442|934443|940115|940116|940914|946195|946196|946197|946198|946199|946200|946201|946202|946203|946204|946205|946206|946207|946208|946209|946210|946211|946212|946213|946214|946215|946216|946217|946218|946219|946220|946221|946222|946223|946224|955517|955518|955519|955520|955521|955522|955523|955524|955525|959902|959903|960659|960660|960661|975798|978483|978484", + "upstreamId": "21979|21981|21982|21984|21985|21986|21987|21988|88349|132520|132522|132522|132523|132527|132527|132530|133309|133309|133310|133311|133312|133313|133314|133315|133316|133317|133318|133319|133320|133320|133321|133322|133322|133323|133324|133325|133326|133328|133328|133329|133329|133330|133330|133331|133331|133332|133333|133335|133336|133337|133338|136434|136438|136449|136482|136492|136503|136514|138611|138612|138613|138614|138615|138616|138617|139746|139747|139748|139749|139750|139751|139752|139753|139754|139755|139756|139757|139758|139759|139760|142128|142129|142130|142131|150481|150519|150542|150573|150583|150632|150648|150694|150860|150860|150863|150883|150885|150895|150983|150987|150989|151094|151112|151154|151313|151331|151345|151403|151441|151445|151530|151602|151629|151660|151693|151728|151799|151866|151899|151907|151917|151941|151956|152076|152079|152081|152088|152211|152235|152273|152273|152418|152573|171455|180277|180277|180278|180279|180279|180280|180281|180282|180284|180286|180289|180290|180292|180293|180294|180295|180296|180297|180298|180298|180299|180300|180301|180303|180304|180305|180306|180307|180308|180309|181211|182826|182827|182828|182830|182831|182832|182835|182837|182838|182839|182840|182841|182842|182843|182845|182846|182847|182848|182850|182851|182852|182853|182854|182855|182856|182857|182858|182859|182860|182861|182862|182863|182864|182868|182869|182870|182871|182873|182874|182874|182875|182876|182878|182879|182880|182881|182883|182884|182885|182886|182887|182889|182890|182891|182893|182894|182895|182896|182897|182897|182900|182901|182903|182904|182905|182906|182907|186092|186093|188057|188057|188058|207572|212624|212625|212640|212641|212642|212643|212644|212645|212646|212647|212648|212649|212650|221769|221770|221771|221772|221773|221774|221775|221776|221777|221778|221779|221781|221782|221783|221784|221785|221786|221787|221788|221789|221790|221791|221792|221794|221794|221795|221796|221797|221798|221799|226830|231701|231702|231706|231707|231708|231709|231714|233618|233619|233622|233624|233625|233626|233631|233632|233633|233634|233635|233636|233637|233638|233639|233640|233641|233642|233645|233646|233648|233649|233650|233651|233652|233653|233654|233655|233656|233657|233659|233660|233661|233662|233665|233666|233667|233669|233670|233673|233674|233677|233678|233680|233682|233683|233684|233687|233689|233690|233691|233692|233693|233694|233695|233699|233701|233702|233702|233704|233706|233707|233709|233710|233717|233718|233720|233722|233726|233727|240403|240405|240406|240408|240409|240410|240411|240412|240413|240414|240415|240416|240417|240418|240419|240420|240421|240422|240423|240424|240425|240426|240427|240428|240429|240430|240431|240432|253192|253193|305988|305991|305999|306002|306003|310029|310030|310032|310035|315335|315345|315346|315356|315367|315368|315369|315473|315476|315495|315499|315505|315507|315509|315514|357656|357657|357658|357659|357660|357661|357662|357663|357664|357665|357666|357667|357668|357669|357670|357671|357672|357673|357674|362414|362415|362416|362418|369603|369604|370048|370050|370055|370070|370071|370351|370376|371970|371978|371979|396292|396293|396295|396297|396298|396301|396307|396309|396313|396315|396316|396317|396326|396328|396339|396344|396350|396352|396512|396518|396555|396557|396559|396567|396575|396578|396587|396606|396609|396627|396632|396635|396637|396694|396697|396701|396705|396708|396713|396715|396717|396720|396721|396725|396731|396732|396736|396738|396741|396933|396936|396941|396948|396952|396955|396956|396962|396967|396969|396970|396977|396981|396988|396992|396994|396999|407463|407464|407465|407466|407470|407471|407474|407475|407477|407478|407479|407485|407486|407487|407489|407491|407492|407493|407496|407498|407499|432651|432652|432653|432654|444308|457702|457994|458000|458003|458010|458011|458015|458019|458027|458029|458031|458035|458037|458045|458048|458050|458056|458057|458059|458061|458066|458070|458074|458076|458078|458082|458087|458092|458093|458095|458120|458544|458547|458554|458557|458559|458564|458566|458578|458579|458582|458584|458588|458589|458590|458592|458599|458607|458608|458614|458616|458617|458619|458620|458623|458623|458627|458628|458629|458633|458634|458636|458637|458641|458648|458655|458658|458660|458663|458666|458668|458671|458673|458675|458685|458687|458691|458694|458695|458698|458700|458702|458706|458714|458714|459049|459053|459055|459057|459058|459062|459065|459067|459071|459076|459078|459081|459082|459085|459087|459089|459090|459091|459100|459101|459104|459109|459112|459115|474694|474704|474707|474721|474722|474724|474728|474734|474736|474737|474740|474741|474742|474744|474749|474756|474757|474759|474763|474764|474768|474773|474776|474780|474786|474790|474792|474794|474798|474801|474802|474803|474804|474808|474809|474810|474812|474815|474820|474822|474825|474828|474831|474832|474837|474839|474847|474856|474859|474861|474862|474866|474867|474871|474876|474891|474892|474903|474906|474908|474926|474935|474938|474940|474941|474945|474946|474953|474956|474963|474972|474974|474976|474980|474987|474990|474991|474996|475002|475010|475012|475016|481827|482670|482671|482673|482675|482677|482694|482712|482716|482726|482727|482734|483981|483990|484006|484007|484010|484024|484086|484179|484197|484199|484215|484232|484234|484266|487242|487333|487345|488134|502062|502063|502529|502792|522954|523177|523178|523527|523712|523715|523719|523722|523727|523728|523731|523734|523736|523740|523746|523749|523753|523754|523757|523770|524027|524032|524036|524037|524039|524044|524049|524051|524057|524059|524063|524070|524071|524073|524286|524290|524295|524297|524306|524309|524311|524316|524317|524318|524320|524321|524323|524325|524328|524329|524330|524332|524335|524337|524340|524341|524342|524347|524351|524354|524356|524358|524364|524365|524368|524370|524376|524380|524384|524389|524395|536345|536346|544484|544487|544497|544499|544501|544502|544777|544784|544786|544806|544810|544811|544819|544824|544878|544882|544883|544886|544892|561852|561863|562326|562331|562503|562506|562508|562510|562512|562514|562516|562518|562524|562525|562533|562535|562540|562542|562544|562547|563096|563102|563111|563114|563119|563122|563126|563127|563130|563132|563137|563139|563147|563156|563157|563159|563170|564551|565229|565232|565234|565236|565237|565239|565244|565245|565247|565253|565254|565259|565264|565265|565267|565269|565271|565273|567305|568113|568117|568123|568124|568128|568141|568148|568149|568154|568156|568157|568165|568166|568168|568174|568177|568183|568199|568215|568227|568233|568239|568246|575784|575785|575786|614326|614326|617432|617445|617447|617453|617454|617457|617459|617464|617465|617469|617470|617472|617474|617476|617479|617480|617482|617484|617486|617491|617494|617498|617499|617500|617506|619282|619296|619307|620307|620308|637409|637410|637411|637412|637413|637414|637415|637416|637417|637418|637419|637420|637421|637422|637423|637424|637425|637426|637427|637428|637429|637430|637431|637432|637433|637434|637435|637436|637437|637438|637439|637440|637441|637442|637443|637444|637445|637446|637447|637448|637449|637450|637451|637452|637453|637454|637455|637456|637457|637458|637459|637460|637461|637462|637463|637464|637465|637466|637467|637468|637469|637470|637471|637472|637473|637474|637475|637476|637477|637478|637479|637480|637481|637482|637483|637484|637485|637486|651800|651801|651810|651811|651814|651874|651909|651916|651917|652001|652005|652006|652008|652010|692524|692525|695397|695399|751257|751259|759756|766920|766924|766925|766926|775356|783166|783168|783170|783171|783172|783173|789484|789485|789486|789487|789676|790817|790818|790819|790820|790821|790822|801661|801662|809198|809202|809208|809224|809227|809231|809233|809243|809246|809251|809254|809258|809260|809266|809267|809291|809292|809296|815395|819990|819991|819992|819993|819994|819995|819996|819997|819998|819999|820000|820001|835090|835091|835092|835093|835094|835095|835096|835097|835098|835099|835100|835101|835102|835103|835104|835105|835106|835107|835108|835109|835110|835111|835112|835113|835114|835115|835116|835117|835118|835119|835120|835121|835122|835123|835124|835125|835126|835127|835128|835129|835130|835131|835132|835133|835134|835135|835136|835137|835138|835139|835140|835141|835142|835143|835144|835145|835146|835147|835148|851710|851712|852158|852446|900129|900130|900131|900132|900133|900134|900135|900136|900137|900138|900139|900140|900141|900142|900143|900144|900145|900146|900147|900148|900149|900517|910999|911034|911035|911042|915034|925264|925265|925266|925267|925268|925269|925270|925271|925272|925273|925274|925275|925276|925277|925278|925279|925280|934426|934427|934428|934429|934430|934431|934432|934433|934434|934435|934436|934437|934438|934439|934440|934441|934442|934443|940115|940116|940914|946195|946196|946197|946198|946199|946200|946201|946202|946203|946204|946205|946206|946207|946208|946209|946210|946211|946212|946213|946214|946215|946216|946217|946218|946219|946220|946221|946222|946223|946224|955517|955518|955519|955520|955521|955522|955523|955524|955525|959902|959903|960659|960660|960661|975798|978483|978484", "text": "Microcephaly, normal intelligence and immunodeficiency" }, { - "baseId": "21979|24361|24381|24386|32699|32700|32700|32701|32702|32704|32705|32706|32708|32709|32710|32711|32712|32713|32714|32714|32714|32715|32716|32718|32720|32721|32722|32723|32724|32729|32732|32732|32733|32734|45942|45943|45944|45945|45946|45947|45948|45949|45950|45951|45952|45953|45954|45955|45956|45957|45958|45959|45960|45961|45962|45964|45965|45966|45967|45968|45969|45970|45971|45972|45973|45974|45975|45976|45977|45978|45979|45980|45981|45982|45982|45983|45984|45985|45986|45987|45988|45989|45990|45991|45992|45994|45995|45996|45997|45998|45999|46000|46001|46002|46002|46003|46004|46005|46006|46007|46008|46009|46010|46011|46012|46013|46015|46016|46017|46018|46019|46020|46021|46022|46023|46024|46025|46026|46027|46028|46029|46030|46031|46032|46033|46034|46035|46036|46037|46038|46039|46040|46041|46042|46043|46044|46045|46046|46047|46048|46049|46050|46051|46055|46056|46057|46058|46059|46060|46061|46062|46063|46065|46066|46067|46068|46069|46071|46072|46073|46077|46078|46079|46080|46081|46082|46083|46084|46085|46086|46087|46088|46089|46090|46091|46092|46093|46094|46095|46096|46097|46098|46099|46100|46101|46102|46103|46104|46105|46106|46109|46110|46111|46112|46113|46114|46115|46116|46117|46118|46119|46120|46121|46122|46122|46123|46124|46125|46126|46127|46128|46129|46130|46131|46132|46134|46135|46136|46137|46138|46139|46140|46141|46142|46143|46144|46145|46146|46147|46148|46149|46150|46150|46151|46152|46153|46154|46154|46155|46156|46157|46158|46159|46160|46161|46162|46163|46164|46165|46166|46167|46168|46169|46170|46171|46172|46174|46175|46176|46177|46179|46180|46181|46182|46183|46184|46184|46185|46186|46187|46188|46189|46190|46191|46192|46193|46194|46195|46196|46197|46198|46199|46200|46201|46202|46203|46204|46205|46206|46207|46210|46210|46211|46212|46213|46214|46215|46216|46217|46218|46219|46220|46222|46223|46224|46225|46226|46227|46228|46229|46230|46231|46232|46233|46234|46235|46236|46237|46238|46239|46240|46241|46242|46242|46245|46246|46247|46248|46249|46251|46252|46253|46254|46255|46256|46257|46258|46259|46261|46262|46263|46264|46265|46266|46267|46268|46269|46495|46705|46764|46785|46796|50242|50243|50244|50245|50246|50247|50248|50249|50250|50251|50253|50254|50254|50255|50256|50257|50260|50262|50264|50265|50266|50267|50268|50269|50270|50271|50274|66443|67021|67139|67431|68766|68767|68768|68769|68770|68771|68772|68773|68774|68775|68776|68777|68778|68779|68780|68781|68782|68783|68784|68787|68788|68789|68790|68791|68792|68793|68794|68795|68796|68797|68798|68798|68799|68800|68801|68802|68803|68804|68805|68806|68807|68808|68809|68810|68811|68812|68813|68814|68815|68816|68817|68818|68819|68820|68821|68822|68823|68824|68825|68826|68827|68828|68829|68830|68831|68832|68833|68834|68835|68836|68837|68838|68839|68840|68841|68842|68843|68844|68845|68846|68848|68849|68850|68851|68852|68853|68854|68855|68856|68857|68858|68859|68860|68861|68862|68863|68864|68865|68866|68867|68867|68868|68869|68870|68871|68872|68873|68874|68875|68876|68877|68878|68879|68880|68881|68882|68883|68884|68885|68886|68887|68889|68890|68891|68892|68893|68894|68894|68895|68896|68897|68898|68899|68900|68901|68903|68904|68905|68907|68908|68909|68910|68911|68912|68913|68914|68915|68916|68917|68918|68919|68920|68921|68922|68923|68924|68925|68927|68928|68929|68930|68931|68932|68933|68934|68935|68937|68938|68940|68941|68942|68943|68944|68945|68946|68947|68948|68949|68950|68951|68952|68953|68954|68956|68958|68959|68960|68963|68964|68965|68966|68967|68968|68969|68970|68971|68972|68973|68974|68975|68976|68977|68978|68979|68980|68982|68983|68984|68985|68987|68989|68990|68991|68992|68994|68995|68996|68997|68998|68999|69000|69001|69002|69003|69004|69005|69006|69008|69009|69010|69011|69012|69013|69014|69015|69016|69017|69018|69019|69020|69021|69022|69023|69024|69025|69026|69027|69028|69029|69031|69032|69033|69034|69035|69036|69037|69038|69039|69041|69042|69043|69044|69045|69046|69047|69048|69049|69050|69051|69052|69053|69054|69055|69056|69057|69058|69059|69060|69061|69062|69063|69064|69065|69066|69067|69068|69069|69071|69072|69073|69074|69075|69076|69077|69078|69079|69080|69081|69083|69084|69085|69086|69087|69088|69090|69091|69092|69094|69095|69096|69097|69098|69099|69100|69101|69102|69103|69104|69105|69106|69107|69108|69109|69110|69111|69112|69113|69114|69115|69116|69117|69118|69119|69120|69121|69122|69123|69124|69125|69126|69127|69128|69129|69130|69131|69132|69133|69134|69135|69136|69137|69138|69139|69140|69141|69142|69143|69144|69145|69146|69147|69148|69149|69150|69151|69152|69153|69154|69155|69156|69157|69158|69159|69160|69161|69162|69163|69164|69165|69166|69167|69168|69169|69170|69171|69172|69173|69174|69175|69176|69177|69178|69179|69180|69181|69182|69183|69184|69185|69186|69187|69188|69189|69190|69191|69192|69193|69194|69195|69196|69197|69199|69200|69201|69203|69204|69205|69206|69207|69208|69209|69210|69211|69212|69213|69214|69215|69216|69217|69218|69219|69220|69221|69222|69223|69224|69225|69226|69227|69228|69230|69231|69232|69232|69233|69234|69235|69236|69237|69239|69240|69241|69242|69243|69244|69245|69246|69247|69248|69249|69250|69251|69252|69253|69254|69255|69256|69257|69258|69259|69260|69261|69262|69263|69264|69265|69266|69267|69268|69269|69271|69272|69273|69274|69275|69276|69277|69278|69279|69280|69281|69283|69284|69285|69286|69287|69288|69289|69290|69291|69292|69293|69294|69295|69296|69297|69298|69299|69300|69301|69302|69303|69304|69306|69307|69308|69309|69310|69311|69312|69313|69314|69316|69317|69318|69319|69320|69321|69322|69323|69324|69324|69325|69326|69327|69328|69329|69330|69331|69332|69333|69334|69335|69336|69337|69339|69340|69341|69342|69343|69344|69345|69346|69347|69348|69349|69350|69351|69352|69353|69354|69355|69356|69357|69358|69359|69360|69361|69362|69363|69364|69365|69366|69367|69368|69369|69370|69371|69372|69373|69374|69376|69377|69378|69379|69380|69381|69382|69383|69384|69385|69386|69387|69388|69389|69390|69391|69392|69393|69394|69395|69396|69397|69398|69399|69400|69402|69403|69404|69405|69406|69407|69409|69410|69411|69412|69413|69414|69415|69416|69417|69418|69419|69420|69421|69422|69423|69424|69425|69426|69427|69428|69429|69430|69431|69434|69435|69436|69436|69437|69438|69439|69440|69441|69443|69444|69445|69446|69447|69449|69450|69451|69452|69453|69454|69455|69456|69457|69458|69459|69460|69461|69462|69463|69464|69465|69466|69467|69468|69469|69471|69472|69473|69474|69475|69476|69477|69478|69479|69480|69481|69482|69483|69484|69485|69486|69487|69488|69489|69490|69491|69493|69494|69495|69496|69497|69498|69499|69500|69501|69502|69503|69504|69505|69506|69507|69508|69509|69510|69511|69512|69513|69514|69515|69516|69517|69518|69519|69520|69521|69522|69523|69524|69525|69526|69527|69528|69529|69530|69531|69532|69533|69534|69535|69536|69538|69539|69540|69541|69542|69543|69544|69545|69545|69546|69547|69548|69549|69550|69551|69552|69553|69554|69555|69556|69557|69558|69559|69561|69562|69563|69564|69565|69566|69568|69569|69570|69571|69572|69573|69574|69575|69576|69577|69578|69579|69580|69581|69582|69583|69584|69585|69587|69588|69589|69590|69591|69592|69593|69594|69595|69596|69596|69597|69598|69599|69600|69601|69602|69603|69605|69606|69607|69608|69609|69610|69611|69613|69614|69615|69616|69617|69618|69620|69620|69621|69622|69623|69624|69625|69626|69627|69628|69629|69630|69631|69632|69633|69634|69635|69636|69637|69638|69639|69640|69641|69642|69643|69644|69645|69646|69648|69649|69650|69651|69652|69653|69654|69655|69656|69658|69659|69660|69661|69662|69663|69664|69666|69667|69668|69669|69670|69671|69672|69673|69674|69675|69676|69677|69678|69679|69680|69681|69682|69683|69684|69687|69688|69689|69690|69691|69692|69693|69694|69695|69696|69697|69698|69699|69700|69701|69702|69703|69704|69705|69706|69706|69707|69708|69710|69711|69712|69713|69714|69715|69716|69717|69718|69719|69720|69721|69722|69723|69724|69726|69727|69728|69729|69730|69731|69732|69733|69734|69735|69736|69737|69738|69739|69739|69740|69741|69742|69743|69744|69746|69748|69749|69750|69751|69752|69753|69754|69755|69756|69757|69758|69759|69760|69761|69762|69764|69765|69766|69767|69768|69769|69770|69771|69772|69773|69774|69775|69776|69777|69778|69779|69780|69781|69782|69783|69784|69785|69786|69787|69788|69789|69791|69792|69794|69795|69798|69799|69800|69802|69803|69804|69805|69806|69807|69808|69809|69810|69811|69812|69813|69814|69815|69816|69818|69820|69821|69822|69823|69824|69826|69827|69828|69829|69830|69831|69832|69833|69834|69835|69836|69837|69838|69839|69840|69841|69843|69844|69845|69846|69847|69849|69850|69851|69853|69854|69855|69856|69858|69859|69860|69861|69862|69864|69865|69866|69867|69868|69869|69870|69871|69872|69873|69875|69876|69877|69878|69880|69880|69880|69881|69882|69883|69884|69885|69886|69887|69888|69888|69889|69890|69891|69892|69893|69894|69895|69896|69897|69898|69899|69900|69901|69902|69903|69904|69905|69906|69907|69908|69909|69910|69911|69912|69913|69914|69915|69916|69917|69918|69919|69920|69921|69922|69923|69923|69924|69925|69926|69927|69928|69929|69930|69931|69932|69933|69934|69935|69936|69937|69938|69939|69941|69942|69943|69945|69946|69947|69948|69949|69950|69951|69952|69954|69955|69957|69958|69959|69960|69961|69962|69963|69964|69965|69966|69967|69968|69969|69970|69971|69972|69973|69974|69975|69976|69977|69978|69979|69980|69981|69982|69983|69984|69985|69986|69987|69988|69989|69990|69991|69992|69993|69994|69995|69996|69997|69998|70000|70001|70004|70005|70006|70007|70008|70008|70009|70010|70011|70012|70013|70014|70015|70016|70017|70018|70019|70020|70021|70022|70023|70024|70025|70026|70027|70028|70029|70030|70031|70032|70033|70034|70035|70036|70037|70037|70038|70039|70040|70041|70042|70043|70044|70045|70046|70047|70048|70049|70050|70051|70053|70054|70055|70056|70057|70058|70059|70060|70061|70062|70063|70064|70065|70066|70067|70068|70069|70070|70071|70072|70073|70074|70075|70076|70077|70078|70079|70080|70081|70082|70083|70084|70085|70086|70087|70088|70089|70090|70091|70092|70093|70094|70095|70096|70097|70098|70099|70100|70101|70102|70103|70104|70105|70106|70107|70108|70109|70110|70111|70112|70113|70114|70115|70116|70117|70118|70118|70118|70119|70120|70121|70122|70123|70124|70125|70126|70127|70128|70129|70130|70131|70132|70133|70134|70135|70136|70137|70138|70139|70140|70141|70142|70143|70144|70145|70146|70147|70147|70148|70149|70150|70151|70152|70153|70154|70155|70156|70157|70159|70161|70163|70164|70165|70166|70167|70168|70169|70170|70172|70173|70174|70175|70177|70178|70179|70180|70181|70182|70183|70184|70185|70186|70187|70188|70189|70190|70191|70192|70193|70194|70195|70197|70199|70200|70201|70202|70203|70204|70205|70206|70207|70208|70209|70210|70211|70212|70213|70214|70215|70216|70217|70218|70219|70220|70221|70222|70223|70224|70225|70226|70227|70228|70229|70230|70231|70232|70233|70234|70235|70236|70237|70238|70239|70240|70241|70242|70243|70244|70245|70246|70247|70247|70248|70249|70250|70251|70252|70253|70254|70255|70256|70257|70258|70259|70260|70261|70263|70264|70265|70266|70268|70269|70270|70271|70272|70273|70274|70275|70276|70277|70278|70279|70280|70281|70282|70283|70285|70286|70287|70288|70289|70290|70291|70292|70293|70294|70295|70296|70297|70298|70299|70300|70301|70302|70303|70304|70305|70306|70307|70308|70309|70310|70312|70313|70315|70316|70318|70319|70320|70322|70323|70324|70326|70329|70330|70332|70333|70334|70335|70336|70337|70338|70339|70340|70341|70342|70343|70344|70345|70346|70347|70348|70349|70350|70351|70353|70354|70355|70356|70357|70358|70360|70363|70364|70365|70369|70372|70373|70374|70375|70376|70377|70380|70381|70382|70383|70384|70385|70386|70387|70388|70389|70390|70391|70392|70393|70394|70396|70397|70398|70399|70400|70402|70403|70404|70405|70406|70406|70407|70408|70409|70410|70411|70412|70413|70414|70416|70417|70418|70419|70420|70421|70422|70423|70424|70425|70426|70427|70428|70429|70430|70431|70432|70433|70434|70435|70436|70437|70438|70439|70440|70441|70442|70443|70444|94598|94599|94602|94602|94604|94606|94607|94609|94610|94612|97015|97016|97017|97018|97019|97020|97021|97022|97023|97024|97025|97026|97027|97028|97029|97030|97031|97032|97033|97034|97035|97036|97037|97038|97039|97040|97041|97042|97043|97044|97045|97046|97047|97048|97049|97050|97051|97052|97053|97054|97055|97057|97058|97059|97060|97061|97062|97063|97064|97065|97066|97067|97068|97069|97070|97071|97072|97073|97074|97075|97076|97077|97078|97079|97080|97081|97082|97083|97084|97086|97087|97088|97089|97091|97092|97093|97094|97095|97096|97097|97097|97098|97099|97100|97101|97102|97103|97104|97105|97106|97107|97108|97109|97110|97111|97112|97113|97114|97115|97116|97117|97118|97119|97120|97121|97122|97123|97124|97125|97126|97127|97128|97129|97130|97131|97132|97133|97134|97135|97136|97137|97138|97139|97140|97141|97142|97143|97144|97145|97146|97183|97184|97185|97186|97187|97188|97189|97190|97191|97192|97193|97194|97195|97196|97197|97198|97199|97200|97201|97202|97203|97204|97205|102767|102794|102795|102796|102797|102798|102799|102800|102801|102802|102803|102805|102806|102807|102808|102810|102811|102812|102813|102814|102815|102816|102817|102818|102819|102820|102821|102822|102823|102824|102825|102826|102827|102828|102830|102831|102832|102833|102834|102836|102837|102838|102839|102841|102843|102844|102845|102846|102847|102849|102850|102851|102852|102853|102854|102855|102856|102857|102858|102860|102871|102872|102873|102874|102875|102876|130989|130990|130991|130992|130993|130994|130995|130996|130997|130998|130999|131000|131001|131002|131003|131004|131005|131006|131008|131009|131010|131011|131012|131015|131016|131018|131019|131022|131023|131024|131026|131029|131030|131033|131035|131037|131038|131039|131041|131042|131044|131045|131046|131049|131050|131051|131053|131054|131055|131056|131057|131058|131059|131061|131062|131063|131064|131066|131070|131072|131073|131074|131076|131077|131079|131080|131084|131085|131086|131088|131090|131091|131092|131092|131093|131094|131095|131097|131098|131100|131101|131103|131104|131105|131106|131107|131108|131109|131113|131117|131119|131127|131128|131131|131132|131133|131135|131139|131141|131145|131146|131147|131148|131150|131151|131152|131153|131154|131155|131156|131158|131160|131162|131163|131167|131168|131169|131170|131172|131173|131174|131175|131177|131180|131182|131184|131187|131188|131189|131191|131193|131195|131196|131197|131198|131199|131201|131202|131203|131204|131205|131206|131207|131208|131209|131210|131211|131212|131213|131214|131215|131216|131217|131218|131219|131220|131221|131223|131224|131227|131229|131230|131233|131235|131236|131238|131239|131241|131244|131245|131246|131247|131248|131250|131251|131252|131253|131255|131256|131258|131259|131260|131261|131262|131263|131264|131265|131266|131267|131268|131269|131270|131271|131275|131276|131277|131278|131279|131280|131281|131282|131283|131284|131286|131287|131288|131289|131290|131293|131294|131297|131298|131299|131301|131303|131305|131306|131310|131312|131314|131315|131316|131317|131319|131320|131321|131324|131326|131327|131329|131331|131332|131336|131337|131338|131339|131341|131342|131344|131345|131347|131348|131349|131350|131351|131353|131354|131355|131356|131358|131360|131362|131363|131364|131365|131366|131368|131369|131370|131371|131375|131377|131380|131381|131382|131383|131384|131385|131386|131388|131389|131390|131391|131392|131393|131394|131394|131395|131396|131397|131398|131399|131400|131401|131402|131403|131404|131405|131407|131408|131409|131410|131411|131412|131413|131415|131417|131418|131419|131420|131421|131422|131423|131425|131427|131429|131430|131432|131433|131434|131435|131436|131437|131438|131439|131440|131441|131443|131444|131445|131446|131448|131450|131452|131453|131456|131457|131458|132628|132629|132630|136452|136525|136526|137460|139791|139792|139794|139795|139796|139797|139798|139799|139800|139801|139803|139804|139805|140240|140241|140242|140243|140244|140245|140246|140247|140248|140249|140250|140251|140252|140253|140254|140254|140255|150134|150707|150712|150785|150790|150791|150805|150807|150908|150974|150997|151000|151017|151071|151172|151179|151181|151223|151250|151372|151455|151510|151518|151518|151674|151716|151718|151742|151823|151836|151970|152011|152026|152048|152109|152138|152325|152342|152353|152356|152380|152407|152430|152490|152548|152550|152569|152579|152652|152664|152702|152710|152719|165981|165982|165983|165984|165985|165986|165987|165988|165989|165990|165991|165992|165993|165995|165996|166251|166252|166253|172180|178861|178862|180811|180812|180813|180814|180815|180816|180817|180818|180819|180820|180821|180822|180823|180824|180825|180830|180839|180840|180842|180843|180845|180846|180847|180848|180849|180851|180853|180857|180861|180866|180868|180870|180871|180873|180878|180880|180880|180883|180884|180888|180890|180891|180892|180893|180894|180895|180896|181313|181314|181315|181316|181317|184861|184862|184863|184864|184866|184867|184868|184869|184870|184871|184872|184873|184874|184875|184876|184877|184878|184879|184880|184881|184882|184883|184884|184885|184886|184887|184888|184889|184890|184890|184891|184892|184893|184894|184895|184896|184899|184900|184902|184904|184906|184907|184908|184909|184913|184914|184917|184918|184919|184922|184923|184924|184926|184928|184930|184931|184932|184933|184936|184938|184939|184941|184942|184943|184948|184953|184954|184955|184956|184957|184958|184960|184961|184962|184963|184964|184965|184967|184969|184972|184973|184975|184976|184979|184980|184982|184985|184987|184988|184989|184990|184992|184995|184996|184997|184998|184999|185001|185002|185003|185004|185007|185008|185010|185012|185015|185018|185019|185020|185021|185023|185024|185025|185028|185030|185031|185033|185037|185038|185039|185041|185043|185044|185045|185046|185047|185049|185050|185051|185052|185052|185053|185054|185056|185059|185060|185061|185062|185063|185064|185065|185066|185067|185068|185071|185072|185073|185074|185075|185076|185078|185081|185082|185085|185086|185088|185089|185090|185092|185093|185096|185097|185099|185101|185103|185104|185105|185106|185109|185110|185111|185114|185115|185116|185119|185120|185121|185122|185123|185125|185126|185127|185128|185129|185130|185131|185131|185132|186238|186239|186257|186260|186261|186535|186536|186537|186538|186539|186540|186541|186542|186545|186546|186548|186549|186550|186551|186980|190858|190859|191244|191406|195361|205705|206177|206178|206179|206180|206181|206182|206183|206184|206185|206186|206187|206188|206189|206190|206191|206192|206193|206194|206195|206196|206197|206198|206199|206200|206201|206202|206203|206204|206205|206206|206207|206208|206209|206210|206211|206212|206213|206214|206215|206216|206217|206218|206219|206220|206221|206222|206223|206224|206225|206226|206227|206228|206229|206230|206231|206232|206233|206234|206235|206236|206237|206238|206239|206240|206241|206242|206243|206244|206245|206246|206247|206248|206249|206250|206251|206252|206253|206254|206255|206256|206257|206258|206259|206260|206261|206262|206263|206264|206265|206266|206267|206268|206269|206270|206271|206272|206273|206274|206275|206276|206277|206278|206279|206280|206281|206282|206283|206284|206285|206286|206287|206288|206289|206290|206291|206292|206293|206294|206295|206296|206297|206298|206299|206300|206301|206302|206303|206304|206305|206306|206307|206308|206309|206310|206311|206312|206313|206314|206315|206316|206317|206318|206319|206320|206321|206322|206323|206324|206325|206326|206327|206328|206329|206330|206331|206332|206333|206334|206335|206336|206337|206338|206339|206340|206341|206342|206343|206344|206345|206346|206347|206348|206349|206350|206351|206352|206353|206354|206355|206356|206357|206358|206359|206360|206361|206362|206363|206364|206365|206366|206367|206368|206369|206370|206371|206372|206373|206374|206375|206376|206377|206378|206379|206380|206381|206382|206383|206384|206385|206386|206387|206388|206389|206390|206391|206392|206393|206394|206395|206396|206397|206398|206399|206400|206402|206403|206404|206406|206407|206408|206409|206410|206411|206412|206413|206414|206415|206416|206417|206418|206419|206420|206421|206422|206423|206424|206425|206426|206428|206429|206430|206431|206432|206433|206434|206435|206436|206437|206438|206439|206440|206441|206442|206443|206444|206445|206446|206447|206448|206449|206450|206451|206452|206453|206454|206455|206456|206457|206458|206459|206460|206461|206462|206463|206464|206465|206466|206467|206468|206469|206470|206471|206472|206473|206474|206475|206476|206477|206478|206479|206480|206481|206482|206483|206484|206485|206486|206487|206488|206489|206490|206491|206492|206493|206494|206495|206496|206497|206498|206499|206500|206501|206502|206503|206504|206505|206506|206507|206508|206509|206510|206511|206512|206513|206514|206515|206516|206517|206518|206519|206520|206521|206522|206523|206524|206525|206526|206527|206528|206529|206530|206531|206532|206533|206534|206535|206536|206537|206538|206539|206540|206541|206542|206543|206544|206545|206546|206547|206548|206549|206550|206551|206552|206553|206554|206555|213234|213235|213237|213239|213303|213304|213305|213306|213307|213311|213312|213316|213318|213320|213321|213323|213325|213327|213328|213331|213332|213334|213335|213336|213337|213339|213340|222547|222644|222645|222646|222647|222648|222650|222651|222652|222653|222655|222657|222658|222661|222662|222665|222666|222668|222669|222670|222672|222674|222676|222678|222681|222683|222684|224600|226193|226195|226198|226200|226202|226206|226207|226208|226209|226210|226211|226212|226352|226353|226364|226810|227390|227557|227558|227559|227560|227561|227562|227563|227564|227565|227566|227567|227568|227569|227570|227571|227577|235923|235924|235925|235926|235927|235928|235929|235930|235931|235932|235933|235934|235935|235936|235937|235938|235939|235940|235941|235942|235943|235944|235945|235946|235947|235948|235949|235950|235951|235952|235954|235955|235958|235959|235960|235964|235966|235972|235974|235976|235980|235981|235985|235987|235991|235996|235997|235998|236000|236001|236005|236006|236007|236013|236015|236019|236020|236021|236022|236024|236026|236030|236038|236043|236045|236050|236053|236054|236055|236056|236057|236058|236059|236061|236062|236063|236064|236065|236066|236067|236068|236069|236070|236071|236075|236077|236078|236079|236081|236082|236083|236085|236095|236096|236100|236103|236108|236110|236112|236114|236115|236116|236120|236121|236124|236125|236126|236133|236135|236137|236138|236139|236140|236141|236143|236145|236147|236149|236151|236156|236159|236161|236164|236166|236172|236174|236176|236177|236178|236179|236180|236181|236182|236183|236184|236185|237827|237828|237829|237830|237831|237832|237833|237834|237835|237836|237837|237838|237839|242755|242756|242757|242758|242759|242760|242761|242762|242763|242764|242765|242766|242767|242768|242769|242770|242771|242772|242773|242774|242775|242780|242782|242785|242790|242793|242794|242795|242796|242797|242798|242800|242801|242805|242813|242817|245018|245019|245020|245021|245022|245023|245024|245025|245028|245029|245036|245041|245042|245043|245046|245047|245053|245055|245056|245057|245058|246808|246809|246810|246811|246812|246813|246815|246816|246817|246818|246819|246820|246821|246823|246824|246825|246826|246827|246828|246829|246830|246831|246832|246846|246847|246848|246849|246850|246851|246852|246853|246854|247263|247264|247265|247266|247267|247268|247269|247270|247271|247272|247273|247274|247275|247276|247277|247278|247279|247280|247281|247282|247283|247284|247285|247286|247287|247288|247289|247290|247291|247292|247293|247294|247297|247298|248522|248523|248524|248529|248530|248534|249072|249073|249074|249075|249076|249077|249078|249079|249080|249081|249082|249083|249084|249085|249086|249087|249088|249089|249090|249091|249092|249093|249094|249095|249096|249097|249098|249099|249100|249102|249103|249104|249105|249106|249107|249108|249109|249110|249111|249112|249113|249114|249115|249116|249117|249118|249119|249120|249121|249122|249123|249124|249125|249126|249127|249128|249129|249130|249131|249132|249133|249134|249135|249136|249137|249138|249139|249140|249141|249142|249143|249144|249145|249146|249147|249148|249149|249150|249151|249152|249153|249154|249155|249156|249157|249158|249159|249160|249161|249162|249163|249164|249165|249166|249167|249168|249169|249170|249171|249172|249173|249174|249175|249176|249177|249180|249181|249182|249183|249184|249185|259533|259534|259535|259536|259537|259538|259539|259540|259541|259542|259543|259544|259545|259546|259547|259548|259549|259550|259551|259552|259553|259554|259555|259556|259557|259558|259559|259560|259561|259562|259563|259564|259565|259566|259567|259568|259569|259570|259571|259572|259573|259574|259575|259576|259577|259578|259579|259580|259581|259582|259583|259584|259585|259586|259587|259588|259589|259590|259591|259592|259593|259594|259595|259596|259597|259598|259599|259600|259601|259602|259603|259604|259605|259606|259607|259608|259609|259610|259611|259612|259613|259614|259615|259616|259617|259618|259619|260170|260171|260174|261562|261563|261564|261565|261566|261567|261568|261569|261570|261571|261572|261573|261574|261575|261576|261577|261578|261579|261580|261581|261582|261583|261584|261585|261586|261587|261588|261589|261590|261591|261592|261593|261594|261595|261596|261597|261598|261599|261600|261601|261602|261603|261604|261605|261606|261607|261608|261609|261610|261611|261612|261613|261614|261615|261616|261617|261618|261619|261620|261621|261622|261623|261624|261625|261626|261627|261628|261629|261630|261631|261632|261633|261634|261635|261636|261637|261638|261639|261640|261641|261642|261643|261644|261645|261646|261647|261648|261649|261650|261651|261652|261653|261654|261655|261656|261657|261658|261659|261660|261661|261662|261663|261664|261665|261666|261667|261668|261669|261670|261671|261672|261673|261674|261675|261676|261677|261678|261679|261680|261681|261682|261683|261684|261685|261686|261687|261688|261689|261690|261691|261692|261693|261694|261695|261696|261697|261698|261699|261700|261701|261702|261703|261704|261705|261706|261707|261708|261709|261710|261711|261712|261713|261714|261715|261716|261717|261718|261719|261720|261721|261722|261723|261724|261725|261726|261727|261728|261729|261730|261731|261732|261733|261734|261735|261736|261737|261738|261739|261740|261741|261742|261743|261744|261745|261746|261747|261748|261749|261750|261751|261752|261753|261754|261755|261756|261757|261758|261759|261760|261761|261762|261763|261764|261765|261766|261767|261768|261769|261770|261771|261772|261773|261774|261775|261776|261777|261778|261779|261780|261781|261782|261783|261784|261785|261786|261787|261788|261789|261790|261791|261792|261793|261794|261795|261796|261797|261798|261799|261800|261801|261802|261803|261804|261805|261806|261807|261808|261809|261810|261811|261812|261813|261814|261815|261816|261817|261818|261819|261820|261821|261822|261823|261824|261825|261826|261827|261828|261829|261830|261831|261832|261833|261834|261835|261836|261837|261838|261839|261840|261841|261842|261843|261844|261845|261846|261847|261848|261849|261850|261851|261852|261853|261854|261855|261856|261857|261858|261859|261860|261861|261862|261863|261864|261865|261866|261867|261868|261869|261870|261871|261872|261873|261874|261875|261876|261877|261878|261879|261880|261881|261882|261883|261884|261885|261886|261887|261888|261889|261890|261891|261892|261893|261894|261895|261896|261897|261898|261899|261900|261901|261902|261903|261904|261905|261906|261907|261908|261909|261910|261911|261912|261913|261914|261915|261916|261917|261918|261919|261920|261921|261922|261923|261924|261925|261926|261927|261928|261929|261930|261931|261932|261933|261934|261935|261936|261937|261938|261939|261940|261941|261942|261943|261944|261945|261946|261947|261948|261949|261950|261951|261952|261953|261954|261955|261956|261957|261958|261959|261960|261961|261962|261963|261964|261965|261965|261966|261967|261968|261969|261970|261971|261972|261973|261974|261975|261976|261977|261978|261979|261980|261981|261982|261983|261984|261985|261986|261987|261988|261989|261990|261991|261992|261993|261994|261995|261996|261997|261998|261999|262000|262001|262002|262003|262004|262005|262006|262007|262008|262009|262010|262011|262012|262013|262014|262015|262016|262017|262018|262019|262020|262021|262022|262023|262024|262025|262026|262027|262028|262029|262030|262031|262032|262033|262099|262100|262101|262105|262864|262865|262866|262867|262868|262869|262870|262871|262872|262873|262874|262875|262876|262877|262878|262880|262881|262882|262883|262884|262885|262886|262887|262888|262889|262890|262891|262892|262893|262894|262895|262896|262897|262898|262899|262900|262901|262902|262903|262904|262905|262906|262907|262908|262909|262910|262911|262912|262913|262914|262915|262916|262917|262918|262919|262920|262921|262922|262923|262924|262926|262927|262928|262931|262932|262933|262934|262935|262936|262937|262938|262939|262940|262941|262942|262943|262944|262945|262946|262947|262948|262949|262950|262951|262952|262953|262954|262955|262956|262957|262958|262959|262960|262961|262962|262963|262964|262965|262966|262967|262968|262969|262970|262971|262972|262973|262974|262975|262976|262977|262978|262979|262980|262981|262982|262983|262984|262985|262986|262987|262988|262989|262990|262991|262992|262993|262994|262995|262996|262997|262999|263000|263001|264769|328615|328618|328620|338571|338575|344643|344644|344646|346058|346059|346067|358925|358926|358927|358928|358929|358930|358931|358932|358933|358934|358935|358936|358937|358938|358939|358940|358941|358942|358943|358944|358945|358946|358947|358948|358949|360716|360718|360720|360721|360722|360723|360724|360725|360726|360727|360728|360729|360730|360731|360732|360733|360734|360735|360736|360737|360738|360739|360740|360741|360742|360743|360744|360745|360746|360749|360750|360751|360752|360753|360755|360756|360757|360758|360759|360760|360761|360762|360763|360764|360765|360766|360767|360768|360769|360770|360771|360772|360773|360774|360775|360776|360778|361882|362215|362216|362357|375034|375041|375045|375046|375057|375071|375080|375081|375090|375101|375106|375112|375960|375961|375965|375967|375974|375977|376012|376017|376045|376075|376082|376083|376085|376089|376090|376095|376097|376102|376139|378220|378223|378226|378230|378236|378261|378263|378301|378304|390694|390695|401958|401963|401972|401980|401983|401986|402018|402020|402023|402027|402037|402042|402044|402053|402056|402067|402089|402100|402102|402109|402110|402112|402143|402149|402154|402155|402459|402463|402467|402476|402479|402480|402483|402512|402520|402543|402553|402561|402567|402573|402577|402619|402621|402626|402640|402648|402700|402719|402732|402741|402742|402744|404709|404710|404711|404712|404713|404714|404715|404716|404717|404718|404719|404720|404721|409939|409940|409941|409942|409944|409946|409947|409948|409949|409950|409951|409952|409953|409954|409955|409956|409959|409964|409966|409968|409970|409979|409983|409985|409990|409991|409994|410000|410004|410017|410021|410032|410033|410034|410036|413881|415562|416228|416229|416420|416421|416422|416423|416424|416425|416426|416427|416428|416429|416430|416431|416432|416433|416434|416435|416436|416437|416438|416439|416440|416441|416442|416443|416444|416445|416446|416447|416448|416449|416450|416451|416452|416453|416454|416455|416456|416457|416458|416459|416460|416461|416462|416463|416464|416465|416466|416467|416468|416469|416470|416471|416472|416473|416474|416475|416476|416477|416478|416479|416480|416481|416482|416483|416484|416485|416486|416487|416488|416489|416490|416491|416492|416493|416494|416495|416496|416497|416498|416499|416500|416501|416502|416503|416504|416505|416506|416507|416508|416509|416510|416511|416512|416513|416514|416515|416516|416517|416518|416519|416520|416521|416522|416523|416524|416525|416526|416527|416528|416529|416530|416531|416532|416533|416534|416535|416536|416537|416538|423252|424711|424782|424786|424791|424792|424799|424802|424806|424807|424809|424810|424811|424813|424814|424815|424816|424818|424821|424823|424824|424825|424828|424837|424839|424840|424841|424843|424845|424850|424856|424858|424859|424860|424861|424862|424864|424867|424868|424883|424884|424885|426756|427518|427519|427523|427524|427525|427527|427528|427529|427530|427536|427539|427541|427542|427553|427559|427560|427561|427564|427571|427572|427573|427574|427576|429971|432385|432386|432892|432893|432894|432895|432896|432897|432898|432905|432906|432908|432914|432919|432920|432926|432927|433270|433273|434069|434071|434072|434073|434074|434075|434076|434085|435102|435103|435104|435105|435106|435108|435124|435129|435131|435139|435143|435144|435150|435154|435158|435168|435172|435173|435175|435176|435177|435178|435179|435180|435181|435182|435183|435184|445776|466816|466825|466827|466886|467674|467675|467676|467784|467875|467884|467890|467946|468048|468071|468113|468250|468251|468263|473361|478503|478509|478512|478519|478522|478523|478546|478549|478553|478556|478561|478562|478563|478566|478569|478571|478586|478636|478640|478642|478643|478648|478659|478661|478664|478729|478822|478848|478849|478851|478888|478892|478892|479231|479253|479256|479259|479263|479275|479282|479293|479324|479549|479551|479553|479565|480482|480483|480484|480485|482415|482925|482930|482932|482983|482986|483001|483006|483008|484816|484820|484890|484893|484898|484900|484909|484974|484976|485045|485054|485062|485083|485085|485129|485180|485320|485369|485408|485412|486720|487709|487843|487851|487861|487931|487936|487943|487998|505944|506060|506098|506102|506373|506840|506844|512870|513369|522594|531019|531029|531037|531048|531056|531064|531064|531071|531130|531135|531162|531181|531276|531284|531292|531333|531340|531347|531351|531354|531384|531388|531398|531401|531537|531540|531541|531542|531543|531550|531552|531557|531638|535750|536491|538758|538759|538760|538761|538762|538763|538764|538765|538766|538767|538768|538769|538770|538771|538772|538773|538774|538775|538776|538777|538778|538779|538780|538781|538782|538784|538785|538786|538787|538788|538789|538790|538791|538792|538793|538794|538795|538796|538797|538798|538799|538800|538801|538802|538803|538804|538805|538806|538807|538808|538809|538810|538811|538813|538814|538815|538816|538817|538818|538819|538820|538821|538822|538823|538824|538825|538826|538827|538828|538829|538830|538831|538832|538833|538834|538835|538836|538837|538838|538839|538840|538841|538842|538843|538844|538845|538846|538847|538848|538849|538850|538851|538852|538853|538854|538855|538856|538857|538858|538859|538860|538861|538862|538863|538864|538865|538866|538867|538868|538869|538870|538871|538872|538874|538875|538876|538877|538878|538879|538880|538881|538882|538883|538884|538885|538889|538890|538891|538892|538893|538894|538895|538896|538897|538898|538899|538900|538901|538902|538903|538904|538905|538906|538907|538908|538909|538910|538911|538912|538913|538914|538915|538916|538917|538918|538919|538920|538921|538922|538923|539357|539358|539359|539360|539361|539362|539363|539364|539365|539366|539367|539368|550852|551932|569065|569072|569074|569075|569079|569080|569182|569193|569197|569198|571137|571375|571378|571399|574463|574464|574466|574468|575609|575994|575995|575996|575998|575999|576000|576001|576002|590562|590564|608842|609138|609177|611333|613520|618548|618549|618550|618551|618552|618553|618554|618555|618556|618557|618558|618559|618560|618561|618562|618563|618564|618565|618566|618567|618568|618570|618571|618572|618573|618574|618575|618626|618700|618701|618702|618703|618705|619559|619562|619568|619591|619628|619648|619658|619677|619678|619680|619683|619687|619692|619710|619724|619729|619904|621043|621051|621569|621859|622039|645919|645920|645921|645922|645923|645924|645925|645926|645927|645928|645929|645930|645931|645933|645934|645935|646059|646060|646061|646062|646063|646064|646065|646066|646067|652794|652800|652805|652958|652960|653275|667991|688772|690176|755873|755874|755878|760569|771529|771555|771556|771557|771558|776304|776323|776348|776491|776677|785584|785603|788129|788130|788245|789610|789611|789612|789613|789614|789615|789626|789633|789634|789635|789636|791753|791754|791755|791756|791757|791758|791759|791760|791761|791762|791763|791764|791765|791766|791767|791768|791769|791770|791771|791772|791773|791774|791775|791776|791777|791778|794278|797544|800791|800792|813639|813640|813641|813642|813643|813644|813645|813646|813647|813649|813650|813651|813652|813653|813654|813656|813658|813660|813661|813662|813663|813664|813665|813667|813668|813669|813670|813672|813673|813674|813906|813907|813908|813910|813911|813912|813913|813914|813915|813916|813917|813918|813921|813922|813923|813924|813925|815683|815684|815688|845359|845360|845361|845362|845363|845364|845365|845366|845367|845369|845370|845477|845478|845480|852210|852744|853070|853071|853072|853073|853074|853075|853076|853077|853078|853079|853080|853081|853082|853083|853084|853085|853086|853087|853088|853089|853090|853091|853092|853093|853094|853095|853096|853097|853098|853099|853100|853101|853102|853103|853104|853105|853106|853107|853108|853109|853110|853111|853112|853113|853114|853115|853116|853117|853118|853119|853120|853121|853122|853123|853124|853125|853126|853127|853128|853129|853130|853131|853132|853133|853134|853135|853136|853137|853138|853139|853140|853141|853142|853143|853144|853145|853146|853147|853148|853149|853150|853151|853152|853153|853154|853155|853156|853157|853158|853159|853160|853161|853162|853163|853164|853165|853166|853167|853168|853169|853170|853171|853172|853173|853174|853175|853176|853177|853178|853179|853180|853181|853182|853183|853184|853185|853186|853187|853188|853189|853190|853191|853192|853193|853194|853195|853196|853197|853198|853199|853200|853201|853202|853203|853204|853205|853206|853207|853208|853209|853210|853211|853212|853213|853214|853215|853216|853217|853218|853219|853220|853221|853222|853223|853224|853225|853226|853227|853228|853229|853230|853231|853232|853233|853234|853235|853236|853237|853238|853239|853240|853241|853242|853243|853244|853245|853246|853247|853248|853249|853250|853251|853252|853253|853254|853255|853256|853257|853258|853259|853260|853261|853262|853263|853264|853265|853266|853267|853268|853269|853270|853271|853272|853273|853274|853275|853276|853277|853278|853279|853280|853281|853282|853283|853284|853285|853286|853287|853288|853289|853290|853291|853292|853293|853294|853295|853296|853297|853298|853299|853300|853301|853302|853303|853304|853305|853306|853307|853308|853309|853310|853311|853312|853313|853314|853315|853316|853317|853318|853319|853320|853321|853322|853323|853324|853325|853326|853327|853328|853329|853330|853331|853332|853333|853334|853335|853336|853337|853338|853339|853340|853341|853342|853343|853344|853345|853346|853347|853348|853349|853350|853351|853352|853353|853354|853355|853356|853357|853358|853359|853360|853361|853362|853363|853364|853365|853366|853367|853368|853369|853370|853371|853372|853373|853374|853375|853376|853377|853378|853379|853380|853381|853382|853383|853384|853385|853386|853387|853388|853389|853390|853391|853392|853393|853394|853395|853396|853397|853398|853399|853400|853401|853402|853403|853404|853405|853406|853407|853408|853409|853410|853411|853412|853413|853414|853415|853416|853417|853418|853419|853420|853421|853422|853423|853424|853425|853426|853427|853428|853429|853430|853431|853432|853433|853434|853435|853436|853437|853438|853439|853440|853441|853442|853443|853444|853445|853446|853447|853448|853449|853450|853451|853452|853453|853454|853455|853456|853457|853458|853459|853460|853461|853462|853463|853464|853465|853466|853467|853468|853469|853470|853471|853472|853473|853474|853475|853476|853477|853478|853479|853480|853481|853482|853483|853484|853485|853486|853487|853488|853489|853490|853491|853492|853493|853494|853495|853496|853497|853498|853499|853500|853501|853502|853503|853504|853505|853506|853507|853508|853509|853510|853511|853512|853513|853514|853515|853516|853517|853518|853519|853520|853521|853522|853523|853524|853525|853526|853527|853528|853529|853530|853531|853532|853533|853534|853535|853536|853537|853538|853539|853540|853541|853542|853543|853544|853545|853546|853547|853548|853549|853550|853551|853552|853553|853554|853555|853556|853557|853558|853559|853560|853561|853562|853563|853564|853565|853566|853567|853568|853569|853570|853571|853572|853573|853574|853575|853576|853577|853578|853579|853580|853581|853582|853583|853584|853585|853586|853587|853588|853589|853590|853591|853592|853593|853594|853595|853596|853597|853598|853599|853600|853601|853602|853603|853604|853605|853606|853607|853608|853609|853610|853611|853612|853613|853614|853615|853616|853617|853618|853619|853620|853621|853622|853623|853624|853625|853626|853627|853628|853629|853630|853631|853632|853633|853634|853635|853636|853637|853638|853639|853640|853641|853642|853643|853644|853645|853646|853647|853648|853649|853650|853651|853652|853653|853654|853655|853656|853657|853658|853659|853660|853661|853662|853663|853664|853665|853666|853667|853668|853669|853670|853671|853672|853673|853674|853675|853676|853677|853678|853679|853680|853681|853682|853683|853684|853685|853686|853687|853688|853689|853690|853691|853692|853693|853694|853695|853696|853697|853698|853699|853700|853701|853702|853703|853704|853705|853706|853707|853708|853709|853710|853711|853712|853713|853714|853715|853716|853717|853718|853719|853720|853721|853722|853723|853724|853725|853726|853727|853728|853729|853730|853731|853732|853733|853734|853735|853736|853737|853738|853739|853740|853741|853742|853743|853744|853745|853746|853747|853748|853749|853750|853751|853752|853753|853754|853755|853756|853757|853758|853759|853760|853761|853762|853763|853764|853765|853766|853767|853768|853769|853770|853771|853772|853773|853774|853775|853776|853777|853778|853779|853780|853781|853782|853783|853784|853785|853786|853787|853788|853789|853790|853791|853792|853793|853794|853795|853796|853797|853798|853799|853800|853801|853802|853803|853804|853805|853806|853807|853808|853809|853810|853811|853812|853813|853814|853815|853816|853817|853818|853819|853820|853821|853822|853823|853824|853825|853826|853827|853828|853829|853830|853831|853832|853833|853834|853835|853836|853837|853838|853839|853840|853841|853842|853843|853844|853845|853846|853847|853848|853849|853850|853851|853852|853853|853854|853855|853856|853857|853858|853859|853860|853861|853862|853863|853864|853865|853866|853867|853868|853869|853870|853871|853872|853873|853874|853875|853876|853877|853878|853879|853880|853881|853882|853883|853884|853885|853886|853887|853888|853889|853890|853891|853892|853893|853894|853895|853896|853897|853898|853899|853900|853901|853902|853903|853904|853905|853906|853907|853908|853909|853910|853911|853912|853913|853914|853915|853916|853917|853918|853919|853920|853921|853922|853923|853924|853925|853926|853927|853928|853929|853930|853931|853932|853933|853934|853935|853936|853937|853938|853939|853940|853941|853942|853943|853944|853945|853946|853947|853948|853949|853950|853951|853952|853953|853954|853955|853956|853957|853958|853959|853960|853961|853962|853963|853964|853965|853966|853967|853968|853969|853970|853971|853972|853973|853974|853975|853976|853977|853978|853979|853980|853981|853982|853983|853984|853985|853986|853987|853988|853989|853990|853991|853992|853993|853994|853995|853996|853997|853998|853999|854000|854001|854002|854003|854004|854005|854006|854007|854008|854009|854010|854011|854012|854013|854014|854015|854016|854017|854018|854019|854020|854021|854022|854023|854024|854025|854026|854027|854028|854029|854030|854031|854032|854033|854034|854035|854036|854037|854038|854039|854040|854041|854042|854043|854044|854045|854046|854047|854048|854049|854050|854051|854052|854053|854054|854055|854056|854057|854058|854059|854060|854061|854062|854063|854064|854065|854066|854067|854068|854069|854070|854071|854072|854073|854074|854075|854076|854077|854078|854079|854080|854081|854082|854083|854084|854085|854086|854087|854088|854089|854090|854091|854092|854093|854094|854095|854096|854097|854098|854099|854100|854101|854102|854103|854104|854105|854106|854107|854108|854109|854110|854111|854112|854113|854114|854115|854116|854117|854118|854119|854120|854121|854122|854123|854124|854125|854126|854127|854128|854129|854130|854131|854132|854133|854134|854135|854136|854137|854138|854139|854140|854141|854142|854143|854144|854145|854146|854147|854148|854149|854150|854151|854152|854153|854154|854155|854156|854157|854158|854159|854160|854161|854162|854163|854164|854165|854166|854167|854168|854169|854170|854171|854172|854173|854174|854175|854176|854177|854178|854179|854180|854181|854182|854183|854184|854185|854186|854187|854188|854189|854190|854191|854192|854193|854194|854195|854196|854197|854198|854199|854200|854201|854202|854203|854204|854205|854206|854207|854208|854209|854210|854211|854212|854213|854214|854215|854216|854217|854218|854219|854220|854221|854222|854223|854224|854225|854226|854227|854228|854229|854230|854231|854232|854233|854234|854235|854236|854237|854238|854239|854240|854241|854242|854243|854244|854245|854246|854247|854248|854249|854250|854251|854252|854253|854254|854255|854256|854257|854258|854259|854260|854261|854262|854263|854264|854265|854266|854267|854268|854269|854270|854271|854272|854273|854274|854275|854276|854277|854278|854279|854280|854281|854282|854283|854284|854285|854286|854287|854288|854289|854290|854291|854292|854293|854294|854295|854296|854297|854298|854299|854300|854301|854302|854303|854304|854305|854306|854307|854308|854309|854310|854311|854312|854313|854314|854315|854316|854317|854318|854319|854320|854321|854322|854323|854324|854325|854326|854327|854328|854329|854330|854331|854332|854333|854334|854335|854336|854337|854338|854339|854340|854341|854342|854343|854344|854345|854346|854347|854348|854349|854350|854351|854352|854353|854354|854355|854356|854357|854358|854359|854360|854361|854362|854363|854364|854365|854366|854367|854368|854369|854370|854371|854372|854373|854374|854375|854376|854377|854378|854379|854380|854381|854382|854383|854384|854385|854386|854387|854388|854389|854390|854391|854392|854393|854394|854395|854396|854397|854398|854399|854400|854401|854402|854403|854404|854405|854406|854407|854408|854409|854410|854411|854412|854413|854414|854415|854416|854417|854418|854419|854420|854421|854422|854423|854424|854425|854426|854427|854428|854429|854430|854431|854432|854433|854434|854435|854436|854437|854438|854439|854440|854441|854442|854443|854444|854445|854446|854447|854448|854449|854450|854451|854452|854453|854454|854455|854456|854457|854458|854459|854460|854461|854462|854463|854464|854465|854466|854467|854468|854469|854470|854471|854472|854473|854474|854475|854476|854477|854478|854479|854480|854481|854482|854483|854484|854485|854486|854487|854488|854489|854490|854491|854492|854493|854494|854495|854496|854497|854498|854499|854500|854501|854502|854503|854504|854505|854506|854507|854508|854509|854510|854511|854512|854513|854514|854515|854516|854517|854518|854519|854520|854521|854522|854523|854524|854525|854526|854527|854528|854529|854530|854531|854532|854533|854534|854535|854536|854537|854538|854539|854540|854541|854542|854543|854544|854545|854546|854547|854548|854549|854550|854551|854552|854553|854554|854555|854556|854557|854558|854559|854560|854561|854562|854563|854564|854565|854566|854567|854568|854569|854570|854571|854572|854573|854574|854575|854576|854577|854578|854579|854580|854581|854582|854583|854584|854585|854586|854587|854588|854589|854590|854591|854592|854593|854594|854595|854596|854597|854598|854599|854600|854601|854602|854603|854604|854605|854606|854607|854608|854609|854610|854611|854612|854613|854614|854615|854616|854617|854618|854619|854620|854621|854622|854623|854624|854625|854626|854627|854628|854629|854630|854631|854632|854633|854634|854635|854636|854637|854638|854639|854640|854641|854642|854643|854644|854645|854646|854647|854648|854649|854650|854651|854652|854653|854654|854655|854656|854657|854658|854659|854660|854661|854662|854663|854664|854665|854666|854667|854668|854669|854670|854671|854672|854673|854674|854675|854676|854677|854678|854679|854680|854681|854682|854683|854684|854685|854686|854687|854688|854689|854690|854691|854692|854693|854694|854695|854696|854697|854698|854699|854700|854701|854702|854703|854704|854705|854706|854707|854708|854709|854710|854711|854712|854713|854714|854715|854716|854717|854718|854719|854720|854721|854722|854723|854724|854725|854726|854727|854728|854729|854730|854731|854732|854733|854734|854735|854736|854737|854738|854739|854740|854741|854742|854743|854744|854745|854746|854747|854748|854749|854750|854751|854752|854753|854754|854755|854756|854757|854758|854759|854760|854761|854762|854763|854764|854765|854766|854767|854768|854769|854770|854771|854772|854773|854774|854775|854776|854777|854778|854779|854780|854781|854782|854783|854784|854785|854786|854787|854788|854789|854790|854791|854792|854793|854794|854795|854796|854797|854798|854799|854800|854801|854802|854803|854804|854805|854806|854807|854808|854809|854810|854811|854812|854813|854814|854815|854816|854817|854818|854819|854820|854821|854822|854823|854824|854825|854826|854827|854828|854829|854830|854831|854832|854833|854834|854835|854836|854837|854838|854839|854840|854841|854842|854843|854844|854845|854846|854847|854848|854849|854850|854851|854852|854853|854854|854855|854856|854857|854858|854859|854860|854861|854862|854863|854864|854865|854866|854867|854868|854869|854870|854871|854872|854873|854874|854875|854876|854877|854878|854879|854880|854881|854882|854883|854884|854885|854886|854887|854888|854889|854890|854891|854892|854893|854894|854895|854896|854897|854898|854899|854900|854901|854902|854903|854904|854905|854906|854907|854908|854909|854910|854911|854912|854913|854914|854915|854916|854917|854918|854919|854920|854921|854922|854923|854924|854925|854926|854927|854928|854929|854930|854931|854932|854933|854934|854935|854936|854937|854938|854939|854940|854941|854942|854943|854944|854945|854946|854947|854948|854949|854950|854951|854952|854953|854954|854955|854956|854957|854958|854959|854960|854961|854962|854963|854964|854965|854966|854967|854968|854969|854970|854971|854972|854973|854974|854975|854976|854977|854978|854979|854980|854981|854982|854983|854984|854985|854986|854987|854988|854989|854990|854991|854992|854993|854994|854995|854996|854997|854998|854999|855000|855001|855002|855003|855004|855005|855006|855007|855008|855009|855010|855011|855012|855013|855014|855015|855016|855017|855018|855019|855020|855021|855022|855023|855024|855025|855026|855027|855028|855029|855030|855031|855032|855033|855034|855035|855036|855037|855038|855039|855040|855041|855042|855043|855044|855045|855046|855047|855048|855049|855050|855051|855052|855053|855054|855055|855056|855057|855058|855059|855060|855061|855062|855063|855064|855065|855066|855067|855068|855069|855070|855071|855072|855121|855122|855123|855124|855125|855126|855127|855128|855129|855130|855131|855132|855133|855134|855135|855136|855137|855138|855139|855140|855141|855142|855143|855144|855145|855146|855147|855148|855149|855150|855151|855152|855153|855154|855155|855156|855157|855158|855159|855160|855161|855162|855163|855164|855165|855166|855167|855168|855169|855170|855171|855172|855173|855174|855175|855176|855177|855178|855179|855180|855181|855182|855183|855184|855185|855186|855187|855188|855189|855190|855191|855192|855193|855194|855195|855196|855197|855198|855199|855200|855201|855202|855203|855204|855205|855206|855207|855208|855209|855210|855211|855212|855213|855214|855215|855216|855217|855218|855219|855220|855221|855222|855223|855224|855225|855226|855227|855228|855229|855230|855231|855232|855233|855234|855235|855236|855237|855238|855239|855240|855241|855242|855243|855244|855245|855246|855247|855248|855249|855250|855251|855252|855253|855254|855255|855256|855257|855258|855259|855260|855261|855262|855263|855264|855265|855266|855267|855268|855269|855270|855271|855272|855273|855274|855275|855276|855277|855278|855279|855280|855281|855282|855283|855284|855285|855286|855287|855288|855289|855290|855291|855292|855293|855294|855295|855296|855297|855298|855299|855300|855301|855302|855303|855304|855305|855306|855307|855308|855309|855310|855311|855312|855313|855314|855315|855316|855317|855318|855319|855320|855321|855322|855323|855324|855325|855326|855327|855328|855329|855330|855331|855332|855333|855334|855335|855336|855337|855338|855339|855340|855341|855342|855343|855344|855345|855346|855347|855348|855349|855350|855351|855352|855353|855354|855355|855356|855357|855358|855359|855360|855361|855362|855363|855364|855365|855366|855367|855368|855369|855370|855371|855372|855373|855374|855375|855376|855377|855378|855379|855380|855381|855382|855383|855384|855385|855386|855387|855388|855389|855390|855391|855392|855393|855394|855395|855396|855397|855398|855399|855400|855401|855402|855403|855404|855405|855406|855407|855408|855409|855410|855411|855412|855413|855414|855415|855416|855417|855418|855419|855420|855421|855422|855423|855424|855425|855426|855427|855428|855429|855430|855431|855432|855433|855434|855435|855436|855437|855438|855439|855440|855441|855442|855443|855444|855445|855446|855447|855448|855449|855450|855451|855452|855453|855454|855455|855456|855457|855458|855459|855460|855461|855462|855463|855464|855465|855466|855467|855468|855469|855470|855471|855472|855473|855474|855475|855476|855477|855478|855479|855480|855481|855482|855483|855484|855485|855486|855487|855488|855489|855490|855491|855492|855493|855494|855495|855496|855497|855498|855499|855500|855501|855502|855503|855504|855505|855506|855507|855508|855509|855510|855511|855512|855513|855514|855515|855516|855517|855518|855519|855520|855521|855522|855523|855524|855525|855526|855527|855528|855529|855530|855531|855532|855533|855534|855535|855536|855537|855538|855539|855540|855541|855542|855543|855544|855545|855546|855547|855548|855549|855550|855551|855552|855553|855554|855555|855556|855557|855558|855559|855560|855561|855562|855563|855564|855565|855566|855567|855568|855569|855570|855571|855572|855573|855574|855575|855576|855577|855578|855579|855580|855581|855582|855583|855584|855585|855586|855587|855588|855589|855590|855591|855592|855593|855594|855595|855596|855597|855598|855599|855600|855601|855602|855603|855604|855605|855606|855607|855608|855609|855610|855611|855612|855613|855614|855615|855616|855617|855618|855619|855620|855621|855622|855623|855624|855625|855626|855627|855628|855629|855630|855631|855632|855633|855634|855635|855636|855637|855638|855639|855640|855641|855642|855643|855644|855645|855646|855647|855648|855649|855650|855651|855652|855653|855654|855655|855656|855657|855658|855659|855660|855661|855662|855663|855664|855665|855666|855667|855668|855669|855670|855671|855672|855673|855674|855675|855676|855677|855678|855679|855680|855681|855682|855683|855684|855685|855686|855687|855688|855689|855690|855691|855692|855693|855694|855695|855696|855697|855698|855699|855700|855701|855702|855703|855704|855705|855706|855707|855708|855709|855710|855711|855712|855713|855714|855715|855716|855717|855718|855719|855720|855721|855722|855723|855724|855725|855726|855727|855728|855729|855730|855731|855732|855733|855734|855735|855736|855737|855738|855739|855740|855741|855742|855743|855744|855745|855746|855747|855748|855749|855750|855751|855752|855753|855754|855755|855756|855757|855758|855759|855760|855761|855762|855763|855764|855765|855766|855767|855768|855769|855770|855771|855772|855773|855774|855775|855776|855777|855778|855779|855780|855781|855782|855783|855784|855785|855786|855787|855788|855789|855790|855791|855792|855793|855794|855795|855796|855797|855798|855799|855800|855801|855802|855803|855804|855805|855806|855807|855808|855809|855810|855811|855812|855813|855814|855815|855816|855817|855818|855819|855820|855821|855822|855823|855824|855825|855826|855827|855828|855829|855830|855831|855832|855833|855834|855835|855836|855837|855838|855839|855840|855841|855842|855843|855844|855845|855846|855847|855848|858797|858809|858811|860950|861036|877636|877637|877638|877639|877640|877641|877642|877643|877644|880525|880526|903619|903620|964481|969598|971077|971078|971628|972480|972481|972482|972483|972484|976701|977410", + "upstreamId": "21979|24361|24381|24386|32699|32700|32700|32701|32702|32704|32705|32706|32708|32709|32710|32711|32712|32713|32714|32714|32714|32715|32716|32718|32720|32721|32722|32723|32724|32729|32732|32732|32733|32734|45942|45943|45944|45945|45946|45947|45948|45949|45950|45951|45952|45953|45954|45955|45956|45957|45958|45959|45960|45961|45962|45964|45965|45966|45967|45968|45969|45970|45971|45972|45973|45974|45975|45976|45977|45978|45979|45980|45981|45982|45982|45983|45984|45985|45986|45987|45988|45989|45990|45991|45992|45994|45995|45996|45997|45998|45999|46000|46001|46002|46002|46003|46004|46005|46006|46007|46008|46009|46010|46011|46012|46013|46015|46016|46017|46018|46019|46020|46021|46022|46023|46024|46025|46026|46027|46028|46029|46030|46031|46032|46033|46034|46035|46036|46037|46038|46039|46040|46041|46042|46043|46044|46045|46046|46047|46048|46049|46050|46051|46055|46056|46057|46058|46059|46060|46061|46062|46063|46065|46066|46067|46068|46069|46071|46072|46073|46077|46078|46079|46080|46081|46082|46083|46084|46085|46086|46087|46088|46089|46090|46091|46092|46093|46094|46095|46096|46097|46098|46099|46100|46101|46102|46103|46104|46105|46106|46109|46110|46111|46112|46113|46114|46115|46116|46117|46118|46119|46120|46121|46122|46122|46123|46124|46125|46126|46127|46128|46129|46130|46131|46132|46134|46135|46136|46137|46138|46139|46140|46141|46142|46143|46144|46145|46146|46147|46148|46149|46150|46150|46151|46152|46153|46154|46154|46155|46156|46157|46158|46159|46160|46161|46162|46163|46164|46165|46166|46167|46168|46169|46170|46171|46172|46174|46175|46176|46177|46179|46180|46181|46182|46183|46184|46184|46185|46186|46187|46188|46189|46190|46191|46192|46193|46194|46195|46196|46197|46198|46199|46200|46201|46202|46203|46204|46205|46206|46207|46210|46210|46211|46212|46213|46214|46215|46216|46217|46218|46219|46220|46222|46223|46224|46225|46226|46227|46228|46229|46230|46231|46232|46233|46234|46235|46236|46237|46238|46239|46240|46241|46242|46242|46245|46246|46247|46248|46249|46251|46252|46253|46254|46255|46256|46257|46258|46259|46261|46262|46263|46264|46265|46266|46267|46268|46269|46495|46705|46764|46785|46796|50242|50243|50244|50245|50246|50247|50248|50249|50250|50251|50253|50254|50254|50255|50256|50257|50260|50262|50264|50265|50266|50267|50268|50269|50270|50271|50274|66443|67021|67139|67431|68766|68767|68768|68769|68770|68771|68772|68773|68774|68775|68776|68777|68778|68779|68780|68781|68782|68783|68784|68787|68788|68789|68790|68791|68792|68793|68794|68795|68796|68797|68798|68798|68799|68800|68801|68802|68803|68804|68805|68806|68807|68808|68809|68810|68811|68812|68813|68814|68815|68816|68817|68818|68819|68820|68821|68822|68823|68824|68825|68826|68827|68828|68829|68830|68831|68832|68833|68834|68835|68836|68837|68838|68839|68840|68841|68842|68843|68844|68845|68846|68848|68849|68850|68851|68852|68853|68854|68855|68856|68857|68858|68859|68860|68861|68862|68863|68864|68865|68866|68867|68867|68868|68869|68870|68871|68872|68873|68874|68875|68876|68877|68878|68879|68880|68881|68882|68883|68884|68885|68886|68887|68889|68890|68891|68892|68893|68894|68894|68895|68896|68897|68898|68899|68900|68901|68903|68904|68905|68907|68908|68909|68910|68911|68912|68913|68914|68915|68916|68917|68918|68919|68920|68921|68922|68923|68924|68925|68927|68928|68929|68930|68931|68932|68933|68934|68935|68937|68938|68940|68941|68942|68943|68944|68945|68946|68947|68948|68949|68950|68951|68952|68953|68954|68956|68958|68959|68960|68963|68964|68965|68966|68967|68968|68969|68970|68971|68972|68973|68974|68975|68976|68977|68978|68979|68980|68982|68983|68984|68985|68987|68989|68990|68991|68992|68994|68995|68996|68997|68998|68999|69000|69001|69002|69003|69004|69005|69006|69008|69009|69010|69011|69012|69013|69014|69015|69016|69017|69018|69019|69020|69021|69022|69023|69024|69025|69026|69027|69028|69029|69031|69032|69033|69034|69035|69036|69037|69038|69039|69041|69042|69043|69044|69045|69046|69047|69048|69049|69050|69051|69052|69053|69054|69055|69056|69057|69058|69059|69060|69061|69062|69063|69064|69065|69066|69067|69068|69069|69071|69072|69073|69074|69075|69076|69077|69078|69079|69080|69081|69083|69084|69085|69086|69087|69088|69090|69091|69092|69094|69095|69096|69097|69098|69099|69100|69101|69102|69103|69104|69105|69106|69107|69108|69109|69110|69111|69112|69113|69114|69115|69116|69117|69118|69119|69120|69121|69122|69123|69124|69125|69126|69127|69128|69129|69130|69131|69132|69133|69134|69135|69136|69137|69138|69139|69140|69141|69142|69143|69144|69145|69146|69147|69148|69149|69150|69151|69152|69153|69154|69155|69156|69157|69158|69159|69160|69161|69162|69163|69164|69165|69166|69167|69168|69169|69170|69171|69172|69173|69174|69175|69176|69177|69178|69179|69180|69181|69182|69183|69184|69185|69186|69187|69188|69189|69190|69191|69192|69193|69194|69195|69196|69197|69199|69200|69201|69203|69204|69205|69206|69207|69208|69209|69210|69211|69212|69213|69214|69215|69216|69217|69218|69219|69220|69221|69222|69223|69224|69225|69226|69227|69228|69230|69231|69232|69232|69233|69234|69235|69236|69237|69239|69240|69241|69242|69243|69244|69245|69246|69247|69248|69249|69250|69251|69252|69253|69254|69255|69256|69257|69258|69259|69260|69261|69262|69263|69264|69265|69266|69267|69268|69269|69271|69272|69273|69274|69275|69276|69277|69278|69279|69280|69281|69283|69284|69285|69286|69287|69288|69289|69290|69291|69292|69293|69294|69295|69296|69297|69298|69299|69300|69301|69302|69303|69304|69306|69307|69308|69309|69310|69311|69312|69313|69314|69316|69317|69318|69319|69320|69321|69322|69323|69324|69324|69325|69326|69327|69328|69329|69330|69331|69332|69333|69334|69335|69336|69337|69339|69340|69341|69342|69343|69344|69345|69346|69347|69348|69349|69350|69351|69352|69353|69354|69355|69356|69357|69358|69359|69360|69361|69362|69363|69364|69365|69366|69367|69368|69369|69370|69371|69372|69373|69374|69376|69377|69378|69379|69380|69381|69382|69383|69384|69385|69386|69387|69388|69389|69390|69391|69392|69393|69394|69395|69396|69397|69398|69399|69400|69402|69403|69404|69405|69406|69407|69409|69410|69411|69412|69413|69414|69415|69416|69417|69418|69419|69420|69421|69422|69423|69424|69425|69426|69427|69428|69429|69430|69431|69434|69435|69436|69436|69437|69438|69439|69440|69441|69443|69444|69445|69446|69447|69449|69450|69451|69452|69453|69454|69455|69456|69457|69458|69459|69460|69461|69462|69463|69464|69465|69466|69467|69468|69469|69471|69472|69473|69474|69475|69476|69477|69478|69479|69480|69481|69482|69483|69484|69485|69486|69487|69488|69489|69490|69491|69493|69494|69495|69496|69497|69498|69499|69500|69501|69502|69503|69504|69505|69506|69507|69508|69509|69510|69511|69512|69513|69514|69515|69516|69517|69518|69519|69520|69521|69522|69523|69524|69525|69526|69527|69528|69529|69530|69531|69532|69533|69534|69535|69536|69538|69539|69540|69541|69542|69543|69544|69545|69545|69546|69547|69548|69549|69550|69551|69552|69553|69554|69555|69556|69557|69558|69559|69561|69562|69563|69564|69565|69566|69568|69569|69570|69571|69572|69573|69574|69575|69576|69577|69578|69579|69580|69581|69582|69583|69584|69585|69587|69588|69589|69590|69591|69592|69593|69594|69595|69596|69596|69597|69598|69599|69600|69601|69602|69603|69605|69606|69607|69608|69609|69610|69611|69613|69614|69615|69616|69617|69618|69620|69620|69621|69622|69623|69624|69625|69626|69627|69628|69629|69630|69631|69632|69633|69634|69635|69636|69637|69638|69639|69640|69641|69642|69643|69644|69645|69646|69648|69649|69650|69651|69652|69653|69654|69655|69656|69658|69659|69660|69661|69662|69663|69664|69666|69667|69668|69669|69670|69671|69672|69673|69674|69675|69676|69677|69678|69679|69680|69681|69682|69683|69684|69687|69688|69689|69690|69691|69692|69693|69694|69695|69696|69697|69698|69699|69700|69701|69702|69703|69704|69705|69706|69706|69707|69708|69710|69711|69712|69713|69714|69715|69716|69717|69718|69719|69720|69721|69722|69723|69724|69726|69727|69728|69729|69730|69731|69732|69733|69734|69735|69736|69737|69738|69739|69739|69740|69741|69742|69743|69744|69746|69748|69749|69750|69751|69752|69753|69754|69755|69756|69757|69758|69759|69760|69761|69762|69764|69765|69766|69767|69768|69769|69770|69771|69772|69773|69774|69775|69776|69777|69778|69779|69780|69781|69782|69783|69784|69785|69786|69787|69788|69789|69791|69792|69794|69795|69798|69799|69800|69802|69803|69804|69805|69806|69807|69808|69809|69810|69811|69812|69813|69814|69815|69816|69818|69820|69821|69822|69823|69824|69826|69827|69828|69829|69830|69831|69832|69833|69834|69835|69836|69837|69838|69839|69840|69841|69843|69844|69845|69846|69847|69849|69850|69851|69853|69854|69855|69856|69858|69859|69860|69861|69862|69864|69865|69866|69867|69868|69869|69870|69871|69872|69873|69875|69876|69877|69878|69880|69880|69880|69881|69882|69883|69884|69885|69886|69887|69888|69888|69889|69890|69891|69892|69893|69894|69895|69896|69897|69898|69899|69900|69901|69902|69903|69904|69905|69906|69907|69908|69909|69910|69911|69912|69913|69914|69915|69916|69917|69918|69919|69920|69921|69922|69923|69923|69924|69925|69926|69927|69928|69929|69930|69931|69932|69933|69934|69935|69936|69937|69938|69939|69941|69942|69943|69945|69946|69947|69948|69949|69950|69951|69952|69954|69955|69957|69958|69959|69960|69961|69962|69963|69964|69965|69966|69967|69968|69969|69970|69971|69972|69973|69974|69975|69976|69977|69978|69979|69980|69981|69982|69983|69984|69985|69986|69987|69988|69989|69990|69991|69992|69993|69994|69995|69996|69997|69998|70000|70001|70004|70005|70006|70007|70008|70008|70009|70010|70011|70012|70013|70014|70015|70016|70017|70018|70019|70020|70021|70022|70023|70024|70025|70026|70027|70028|70029|70030|70031|70032|70033|70034|70035|70036|70037|70037|70038|70039|70040|70041|70042|70043|70044|70045|70046|70047|70048|70049|70050|70051|70053|70054|70055|70056|70057|70058|70059|70060|70061|70062|70063|70064|70065|70066|70067|70068|70069|70070|70071|70072|70073|70074|70075|70076|70077|70078|70079|70080|70081|70082|70083|70084|70085|70086|70087|70088|70089|70090|70091|70092|70093|70094|70095|70096|70097|70098|70099|70100|70101|70102|70103|70104|70105|70106|70107|70108|70109|70110|70111|70112|70113|70114|70115|70116|70117|70118|70118|70118|70119|70120|70121|70122|70123|70124|70125|70126|70127|70128|70129|70130|70131|70132|70133|70134|70135|70136|70137|70138|70139|70140|70141|70142|70143|70144|70145|70146|70147|70147|70148|70149|70150|70151|70152|70153|70154|70155|70156|70157|70159|70161|70163|70164|70165|70166|70167|70168|70169|70170|70172|70173|70174|70175|70177|70178|70179|70180|70181|70182|70183|70184|70185|70186|70187|70188|70189|70190|70191|70192|70193|70194|70195|70197|70199|70200|70201|70202|70203|70204|70205|70206|70207|70208|70209|70210|70211|70212|70213|70214|70215|70216|70217|70218|70219|70220|70221|70222|70223|70224|70225|70226|70227|70228|70229|70230|70231|70232|70233|70234|70235|70236|70237|70238|70239|70240|70241|70242|70243|70244|70245|70246|70247|70247|70248|70249|70250|70251|70252|70253|70254|70255|70256|70257|70258|70259|70260|70261|70263|70264|70265|70266|70268|70269|70270|70271|70272|70273|70274|70275|70276|70277|70278|70279|70280|70281|70282|70283|70285|70286|70287|70288|70289|70290|70291|70292|70293|70294|70295|70296|70297|70298|70299|70300|70301|70302|70303|70304|70305|70306|70307|70308|70309|70310|70312|70313|70315|70316|70318|70319|70320|70322|70323|70324|70326|70329|70330|70332|70333|70334|70335|70336|70337|70338|70339|70340|70341|70342|70343|70344|70345|70346|70347|70348|70349|70350|70351|70353|70354|70355|70356|70357|70358|70360|70363|70364|70365|70369|70372|70373|70374|70375|70376|70377|70380|70381|70382|70383|70384|70385|70386|70387|70388|70389|70390|70391|70392|70393|70394|70396|70397|70398|70399|70400|70402|70403|70404|70405|70406|70406|70407|70408|70409|70410|70411|70412|70413|70414|70416|70417|70418|70419|70420|70421|70422|70423|70424|70425|70426|70427|70428|70429|70430|70431|70432|70433|70434|70435|70436|70437|70438|70439|70440|70441|70442|70443|70444|94598|94599|94602|94602|94604|94606|94607|94609|94610|94612|97015|97016|97017|97018|97019|97020|97021|97022|97023|97024|97025|97026|97027|97028|97029|97030|97031|97032|97033|97034|97035|97036|97037|97038|97039|97040|97041|97042|97043|97044|97045|97046|97047|97048|97049|97050|97051|97052|97053|97054|97055|97057|97058|97059|97060|97061|97062|97063|97064|97065|97066|97067|97068|97069|97070|97071|97072|97073|97074|97075|97076|97077|97078|97079|97080|97081|97082|97083|97084|97086|97087|97088|97089|97091|97092|97093|97094|97095|97096|97097|97097|97098|97099|97100|97101|97102|97103|97104|97105|97106|97107|97108|97109|97110|97111|97112|97113|97114|97115|97116|97117|97118|97119|97120|97121|97122|97123|97124|97125|97126|97127|97128|97129|97130|97131|97132|97133|97134|97135|97136|97137|97138|97139|97140|97141|97142|97143|97144|97145|97146|97183|97184|97185|97186|97187|97188|97189|97190|97191|97192|97193|97194|97195|97196|97197|97198|97199|97200|97201|97202|97203|97204|97205|102767|102794|102795|102796|102797|102798|102799|102800|102801|102802|102803|102805|102806|102807|102808|102810|102811|102812|102813|102814|102815|102816|102817|102818|102819|102820|102821|102822|102823|102824|102825|102826|102827|102828|102830|102831|102832|102833|102834|102836|102837|102838|102839|102841|102843|102844|102845|102846|102847|102849|102850|102851|102852|102853|102854|102855|102856|102857|102858|102860|102871|102872|102873|102874|102875|102876|130989|130990|130991|130992|130993|130994|130995|130996|130997|130998|130999|131000|131001|131002|131003|131004|131005|131006|131008|131009|131010|131011|131012|131015|131016|131018|131019|131022|131023|131024|131026|131029|131030|131033|131035|131037|131038|131039|131041|131042|131044|131045|131046|131049|131050|131051|131053|131054|131055|131056|131057|131058|131059|131061|131062|131063|131064|131066|131070|131072|131073|131074|131076|131077|131079|131080|131084|131085|131086|131088|131090|131091|131092|131092|131093|131094|131095|131097|131098|131100|131101|131103|131104|131105|131106|131107|131108|131109|131113|131117|131119|131127|131128|131131|131132|131133|131135|131139|131141|131145|131146|131147|131148|131150|131151|131152|131153|131154|131155|131156|131158|131160|131162|131163|131167|131168|131169|131170|131172|131173|131174|131175|131177|131180|131182|131184|131187|131188|131189|131191|131193|131195|131196|131197|131198|131199|131201|131202|131203|131204|131205|131206|131207|131208|131209|131210|131211|131212|131213|131214|131215|131216|131217|131218|131219|131220|131221|131223|131224|131227|131229|131230|131233|131235|131236|131238|131239|131241|131244|131245|131246|131247|131248|131250|131251|131252|131253|131255|131256|131258|131259|131260|131261|131262|131263|131264|131265|131266|131267|131268|131269|131270|131271|131275|131276|131277|131278|131279|131280|131281|131282|131283|131284|131286|131287|131288|131289|131290|131293|131294|131297|131298|131299|131301|131303|131305|131306|131310|131312|131314|131315|131316|131317|131319|131320|131321|131324|131326|131327|131329|131331|131332|131336|131337|131338|131339|131341|131342|131344|131345|131347|131348|131349|131350|131351|131353|131354|131355|131356|131358|131360|131362|131363|131364|131365|131366|131368|131369|131370|131371|131375|131377|131380|131381|131382|131383|131384|131385|131386|131388|131389|131390|131391|131392|131393|131394|131394|131395|131396|131397|131398|131399|131400|131401|131402|131403|131404|131405|131407|131408|131409|131410|131411|131412|131413|131415|131417|131418|131419|131420|131421|131422|131423|131425|131427|131429|131430|131432|131433|131434|131435|131436|131437|131438|131439|131440|131441|131443|131444|131445|131446|131448|131450|131452|131453|131456|131457|131458|132628|132629|132630|136452|136525|136526|137460|139791|139792|139794|139795|139796|139797|139798|139799|139800|139801|139803|139804|139805|140240|140241|140242|140243|140244|140245|140246|140247|140248|140249|140250|140251|140252|140253|140254|140254|140255|150134|150707|150712|150785|150790|150791|150805|150807|150908|150974|150997|151000|151017|151071|151172|151179|151181|151223|151250|151372|151455|151510|151518|151518|151674|151716|151718|151742|151823|151836|151970|152011|152026|152048|152109|152138|152325|152342|152353|152356|152380|152407|152430|152490|152548|152550|152569|152579|152652|152664|152702|152710|152719|165981|165982|165983|165984|165985|165986|165987|165988|165989|165990|165991|165992|165993|165995|165996|166251|166252|166253|172180|178861|178862|180811|180812|180813|180814|180815|180816|180817|180818|180819|180820|180821|180822|180823|180824|180825|180830|180839|180840|180842|180843|180845|180846|180847|180848|180849|180851|180853|180857|180861|180866|180868|180870|180871|180873|180878|180880|180880|180883|180884|180888|180890|180891|180892|180893|180894|180895|180896|181313|181314|181315|181316|181317|184861|184862|184863|184864|184866|184867|184868|184869|184870|184871|184872|184873|184874|184875|184876|184877|184878|184879|184880|184881|184882|184883|184884|184885|184886|184887|184888|184889|184890|184890|184891|184892|184893|184894|184895|184896|184899|184900|184902|184904|184906|184907|184908|184909|184913|184914|184917|184918|184919|184922|184923|184924|184926|184928|184930|184931|184932|184933|184936|184938|184939|184941|184942|184943|184948|184953|184954|184955|184956|184957|184958|184960|184961|184962|184963|184964|184965|184967|184969|184972|184973|184975|184976|184979|184980|184982|184985|184987|184988|184989|184990|184992|184995|184996|184997|184998|184999|185001|185002|185003|185004|185007|185008|185010|185012|185015|185018|185019|185020|185021|185023|185024|185025|185028|185030|185031|185033|185037|185038|185039|185041|185043|185044|185045|185046|185047|185049|185050|185051|185052|185052|185053|185054|185056|185059|185060|185061|185062|185063|185064|185065|185066|185067|185068|185071|185072|185073|185074|185075|185076|185078|185081|185082|185085|185086|185088|185089|185090|185092|185093|185096|185097|185099|185101|185103|185104|185105|185106|185109|185110|185111|185114|185115|185116|185119|185120|185121|185122|185123|185125|185126|185127|185128|185129|185130|185131|185131|185132|186238|186239|186257|186260|186261|186535|186536|186537|186538|186539|186540|186541|186542|186545|186546|186548|186549|186550|186551|186980|190858|190859|191244|191406|195361|205705|206177|206178|206179|206180|206181|206182|206183|206184|206185|206186|206187|206188|206189|206190|206191|206192|206193|206194|206195|206196|206197|206198|206199|206200|206201|206202|206203|206204|206205|206206|206207|206208|206209|206210|206211|206212|206213|206214|206215|206216|206217|206218|206219|206220|206221|206222|206223|206224|206225|206226|206227|206228|206229|206230|206231|206232|206233|206234|206235|206236|206237|206238|206239|206240|206241|206242|206243|206244|206245|206246|206247|206248|206249|206250|206251|206252|206253|206254|206255|206256|206257|206258|206259|206260|206261|206262|206263|206264|206265|206266|206267|206268|206269|206270|206271|206272|206273|206274|206275|206276|206277|206278|206279|206280|206281|206282|206283|206284|206285|206286|206287|206288|206289|206290|206291|206292|206293|206294|206295|206296|206297|206298|206299|206300|206301|206302|206303|206304|206305|206306|206307|206308|206309|206310|206311|206312|206313|206314|206315|206316|206317|206318|206319|206320|206321|206322|206323|206324|206325|206326|206327|206328|206329|206330|206331|206332|206333|206334|206335|206336|206337|206338|206339|206340|206341|206342|206343|206344|206345|206346|206347|206348|206349|206350|206351|206352|206353|206354|206355|206356|206357|206358|206359|206360|206361|206362|206363|206364|206365|206366|206367|206368|206369|206370|206371|206372|206373|206374|206375|206376|206377|206378|206379|206380|206381|206382|206383|206384|206385|206386|206387|206388|206389|206390|206391|206392|206393|206394|206395|206396|206397|206398|206399|206400|206402|206403|206404|206406|206407|206408|206409|206410|206411|206412|206413|206414|206415|206416|206417|206418|206419|206420|206421|206422|206423|206424|206425|206426|206428|206429|206430|206431|206432|206433|206434|206435|206436|206437|206438|206439|206440|206441|206442|206443|206444|206445|206446|206447|206448|206449|206450|206451|206452|206453|206454|206455|206456|206457|206458|206459|206460|206461|206462|206463|206464|206465|206466|206467|206468|206469|206470|206471|206472|206473|206474|206475|206476|206477|206478|206479|206480|206481|206482|206483|206484|206485|206486|206487|206488|206489|206490|206491|206492|206493|206494|206495|206496|206497|206498|206499|206500|206501|206502|206503|206504|206505|206506|206507|206508|206509|206510|206511|206512|206513|206514|206515|206516|206517|206518|206519|206520|206521|206522|206523|206524|206525|206526|206527|206528|206529|206530|206531|206532|206533|206534|206535|206536|206537|206538|206539|206540|206541|206542|206543|206544|206545|206546|206547|206548|206549|206550|206551|206552|206553|206554|206555|213234|213235|213237|213239|213303|213304|213305|213306|213307|213311|213312|213316|213318|213320|213321|213323|213325|213327|213328|213331|213332|213334|213335|213336|213337|213339|213340|222547|222644|222645|222646|222647|222648|222650|222651|222652|222653|222655|222657|222658|222661|222662|222665|222666|222668|222669|222670|222672|222674|222676|222678|222681|222683|222684|224600|226193|226195|226198|226200|226202|226206|226207|226208|226209|226210|226211|226212|226352|226353|226364|226810|227390|227557|227558|227559|227560|227561|227562|227563|227564|227565|227566|227567|227568|227569|227570|227571|227577|235923|235924|235925|235926|235927|235928|235929|235930|235931|235932|235933|235934|235935|235936|235937|235938|235939|235940|235941|235942|235943|235944|235945|235946|235947|235948|235949|235950|235951|235952|235954|235955|235958|235959|235960|235964|235966|235972|235974|235976|235980|235981|235985|235987|235991|235996|235997|235998|236000|236001|236005|236006|236007|236013|236015|236019|236020|236021|236022|236024|236026|236030|236038|236043|236045|236050|236053|236054|236055|236056|236057|236058|236059|236061|236062|236063|236064|236065|236066|236067|236068|236069|236070|236071|236075|236077|236078|236079|236081|236082|236083|236085|236095|236096|236100|236103|236108|236110|236112|236114|236115|236116|236120|236121|236124|236125|236126|236133|236135|236137|236138|236139|236140|236141|236143|236145|236147|236149|236151|236156|236159|236161|236164|236166|236172|236174|236176|236177|236178|236179|236180|236181|236182|236183|236184|236185|237827|237828|237829|237830|237831|237832|237833|237834|237835|237836|237837|237838|237839|242755|242756|242757|242758|242759|242760|242761|242762|242763|242764|242765|242766|242767|242768|242769|242770|242771|242772|242773|242774|242775|242780|242782|242785|242790|242793|242794|242795|242796|242797|242798|242800|242801|242805|242813|242817|245018|245019|245020|245021|245022|245023|245024|245025|245028|245029|245036|245041|245042|245043|245046|245047|245053|245055|245056|245057|245058|246808|246809|246810|246811|246812|246813|246815|246816|246817|246818|246819|246820|246821|246823|246824|246825|246826|246827|246828|246829|246830|246831|246832|246846|246847|246848|246849|246850|246851|246852|246853|246854|247263|247264|247265|247266|247267|247268|247269|247270|247271|247272|247273|247274|247275|247276|247277|247278|247279|247280|247281|247282|247283|247284|247285|247286|247287|247288|247289|247290|247291|247292|247293|247294|247297|247298|248522|248523|248524|248529|248530|248534|249072|249073|249074|249075|249076|249077|249078|249079|249080|249081|249082|249083|249084|249085|249086|249087|249088|249089|249090|249091|249092|249093|249094|249095|249096|249097|249098|249099|249100|249102|249103|249104|249105|249106|249107|249108|249109|249110|249111|249112|249113|249114|249115|249116|249117|249118|249119|249120|249121|249122|249123|249124|249125|249126|249127|249128|249129|249130|249131|249132|249133|249134|249135|249136|249137|249138|249139|249140|249141|249142|249143|249144|249145|249146|249147|249148|249149|249150|249151|249152|249153|249154|249155|249156|249157|249158|249159|249160|249161|249162|249163|249164|249165|249166|249167|249168|249169|249170|249171|249172|249173|249174|249175|249176|249177|249180|249181|249182|249183|249184|249185|259533|259534|259535|259536|259537|259538|259539|259540|259541|259542|259543|259544|259545|259546|259547|259548|259549|259550|259551|259552|259553|259554|259555|259556|259557|259558|259559|259560|259561|259562|259563|259564|259565|259566|259567|259568|259569|259570|259571|259572|259573|259574|259575|259576|259577|259578|259579|259580|259581|259582|259583|259584|259585|259586|259587|259588|259589|259590|259591|259592|259593|259594|259595|259596|259597|259598|259599|259600|259601|259602|259603|259604|259605|259606|259607|259608|259609|259610|259611|259612|259613|259614|259615|259616|259617|259618|259619|260170|260171|260174|261562|261563|261564|261565|261566|261567|261568|261569|261570|261571|261572|261573|261574|261575|261576|261577|261578|261579|261580|261581|261582|261583|261584|261585|261586|261587|261588|261589|261590|261591|261592|261593|261594|261595|261596|261597|261598|261599|261600|261601|261602|261603|261604|261605|261606|261607|261608|261609|261610|261611|261612|261613|261614|261615|261616|261617|261618|261619|261620|261621|261622|261623|261624|261625|261626|261627|261628|261629|261630|261631|261632|261633|261634|261635|261636|261637|261638|261639|261640|261641|261642|261643|261644|261645|261646|261647|261648|261649|261650|261651|261652|261653|261654|261655|261656|261657|261658|261659|261660|261661|261662|261663|261664|261665|261666|261667|261668|261669|261670|261671|261672|261673|261674|261675|261676|261677|261678|261679|261680|261681|261682|261683|261684|261685|261686|261687|261688|261689|261690|261691|261692|261693|261694|261695|261696|261697|261698|261699|261700|261701|261702|261703|261704|261705|261706|261707|261708|261709|261710|261711|261712|261713|261714|261715|261716|261717|261718|261719|261720|261721|261722|261723|261724|261725|261726|261727|261728|261729|261730|261731|261732|261733|261734|261735|261736|261737|261738|261739|261740|261741|261742|261743|261744|261745|261746|261747|261748|261749|261750|261751|261752|261753|261754|261755|261756|261757|261758|261759|261760|261761|261762|261763|261764|261765|261766|261767|261768|261769|261770|261771|261772|261773|261774|261775|261776|261777|261778|261779|261780|261781|261782|261783|261784|261785|261786|261787|261788|261789|261790|261791|261792|261793|261794|261795|261796|261797|261798|261799|261800|261801|261802|261803|261804|261805|261806|261807|261808|261809|261810|261811|261812|261813|261814|261815|261816|261817|261818|261819|261820|261821|261822|261823|261824|261825|261826|261827|261828|261829|261830|261831|261832|261833|261834|261835|261836|261837|261838|261839|261840|261841|261842|261843|261844|261845|261846|261847|261848|261849|261850|261851|261852|261853|261854|261855|261856|261857|261858|261859|261860|261861|261862|261863|261864|261865|261866|261867|261868|261869|261870|261871|261872|261873|261874|261875|261876|261877|261878|261879|261880|261881|261882|261883|261884|261885|261886|261887|261888|261889|261890|261891|261892|261893|261894|261895|261896|261897|261898|261899|261900|261901|261902|261903|261904|261905|261906|261907|261908|261909|261910|261911|261912|261913|261914|261915|261916|261917|261918|261919|261920|261921|261922|261923|261924|261925|261926|261927|261928|261929|261930|261931|261932|261933|261934|261935|261936|261937|261938|261939|261940|261941|261942|261943|261944|261945|261946|261947|261948|261949|261950|261951|261952|261953|261954|261955|261956|261957|261958|261959|261960|261961|261962|261963|261964|261965|261965|261966|261967|261968|261969|261970|261971|261972|261973|261974|261975|261976|261977|261978|261979|261980|261981|261982|261983|261984|261985|261986|261987|261988|261989|261990|261991|261992|261993|261994|261995|261996|261997|261998|261999|262000|262001|262002|262003|262004|262005|262006|262007|262008|262009|262010|262011|262012|262013|262014|262015|262016|262017|262018|262019|262020|262021|262022|262023|262024|262025|262026|262027|262028|262029|262030|262031|262032|262033|262099|262100|262101|262105|262864|262865|262866|262867|262868|262869|262870|262871|262872|262873|262874|262875|262876|262877|262878|262880|262881|262882|262883|262884|262885|262886|262887|262888|262889|262890|262891|262892|262893|262894|262895|262896|262897|262898|262899|262900|262901|262902|262903|262904|262905|262906|262907|262908|262909|262910|262911|262912|262913|262914|262915|262916|262917|262918|262919|262920|262921|262922|262923|262924|262926|262927|262928|262931|262932|262933|262934|262935|262936|262937|262938|262939|262940|262941|262942|262943|262944|262945|262946|262947|262948|262949|262950|262951|262952|262953|262954|262955|262956|262957|262958|262959|262960|262961|262962|262963|262964|262965|262966|262967|262968|262969|262970|262971|262972|262973|262974|262975|262976|262977|262978|262979|262980|262981|262982|262983|262984|262985|262986|262987|262988|262989|262990|262991|262992|262993|262994|262995|262996|262997|262999|263000|263001|264769|328615|328618|328620|338571|338575|344643|344644|344646|346058|346059|346067|358925|358926|358927|358928|358929|358930|358931|358932|358933|358934|358935|358936|358937|358938|358939|358940|358941|358942|358943|358944|358945|358946|358947|358948|358949|360716|360718|360720|360721|360722|360723|360724|360725|360726|360727|360728|360729|360730|360731|360732|360733|360734|360735|360736|360737|360738|360739|360740|360741|360742|360743|360744|360745|360746|360749|360750|360751|360752|360753|360755|360756|360757|360758|360759|360760|360761|360762|360763|360764|360765|360766|360767|360768|360769|360770|360771|360772|360773|360774|360775|360776|360778|361882|362215|362216|362357|375034|375041|375045|375046|375057|375071|375080|375081|375090|375101|375106|375112|375960|375961|375965|375967|375974|375977|376012|376017|376045|376075|376082|376083|376085|376089|376090|376095|376097|376102|376139|378220|378223|378226|378230|378236|378261|378263|378301|378304|390694|390695|401958|401963|401972|401980|401983|401986|402018|402020|402023|402027|402037|402042|402044|402053|402056|402067|402089|402100|402102|402109|402110|402112|402143|402149|402154|402155|402459|402463|402467|402476|402479|402480|402483|402512|402520|402543|402553|402561|402567|402573|402577|402619|402621|402626|402640|402648|402700|402719|402732|402741|402742|402744|404709|404710|404711|404712|404713|404714|404715|404716|404717|404718|404719|404720|404721|409939|409940|409941|409942|409944|409946|409947|409948|409949|409950|409951|409952|409953|409954|409955|409956|409959|409964|409966|409968|409970|409979|409983|409985|409990|409991|409994|410000|410004|410017|410021|410032|410033|410034|410036|413881|415562|416228|416229|416420|416421|416422|416423|416424|416425|416426|416427|416428|416429|416430|416431|416432|416433|416434|416435|416436|416437|416438|416439|416440|416441|416442|416443|416444|416445|416446|416447|416448|416449|416450|416451|416452|416453|416454|416455|416456|416457|416458|416459|416460|416461|416462|416463|416464|416465|416466|416467|416468|416469|416470|416471|416472|416473|416474|416475|416476|416477|416478|416479|416480|416481|416482|416483|416484|416485|416486|416487|416488|416489|416490|416491|416492|416493|416494|416495|416496|416497|416498|416499|416500|416501|416502|416503|416504|416505|416506|416507|416508|416509|416510|416511|416512|416513|416514|416515|416516|416517|416518|416519|416520|416521|416522|416523|416524|416525|416526|416527|416528|416529|416530|416531|416532|416533|416534|416535|416536|416537|416538|423252|424711|424782|424786|424791|424792|424799|424802|424806|424807|424809|424810|424811|424813|424814|424815|424816|424818|424821|424823|424824|424825|424828|424837|424839|424840|424841|424843|424845|424850|424856|424858|424859|424860|424861|424862|424864|424867|424868|424883|424884|424885|426756|427518|427519|427523|427524|427525|427527|427528|427529|427530|427536|427539|427541|427542|427553|427559|427560|427561|427564|427571|427572|427573|427574|427576|429971|432385|432386|432892|432893|432894|432895|432896|432897|432898|432905|432906|432908|432914|432919|432920|432926|432927|433270|433273|434069|434071|434072|434073|434074|434075|434076|434085|435102|435103|435104|435105|435106|435108|435124|435129|435131|435139|435143|435144|435150|435154|435158|435168|435172|435173|435175|435176|435177|435178|435179|435180|435181|435182|435183|435184|445776|466816|466825|466827|466886|467674|467675|467676|467784|467875|467884|467890|467946|468048|468071|468113|468250|468251|468263|473361|478503|478509|478512|478519|478522|478523|478546|478549|478553|478556|478561|478562|478563|478566|478569|478571|478586|478636|478640|478642|478643|478648|478659|478661|478664|478729|478822|478848|478849|478851|478888|478892|478892|479231|479253|479256|479259|479263|479275|479282|479293|479324|479549|479551|479553|479565|480482|480483|480484|480485|482415|482925|482930|482932|482983|482986|483001|483006|483008|484816|484820|484890|484893|484898|484900|484909|484974|484976|485045|485054|485062|485083|485085|485129|485180|485320|485369|485408|485412|486720|487709|487843|487851|487861|487931|487936|487943|487998|505944|506060|506098|506102|506373|506840|506844|512870|513369|522594|531019|531029|531037|531048|531056|531064|531064|531071|531130|531135|531162|531181|531276|531284|531292|531333|531340|531347|531351|531354|531384|531388|531398|531401|531537|531540|531541|531542|531543|531550|531552|531557|531638|535750|536491|538758|538759|538760|538761|538762|538763|538764|538765|538766|538767|538768|538769|538770|538771|538772|538773|538774|538775|538776|538777|538778|538779|538780|538781|538782|538784|538785|538786|538787|538788|538789|538790|538791|538792|538793|538794|538795|538796|538797|538798|538799|538800|538801|538802|538803|538804|538805|538806|538807|538808|538809|538810|538811|538813|538814|538815|538816|538817|538818|538819|538820|538821|538822|538823|538824|538825|538826|538827|538828|538829|538830|538831|538832|538833|538834|538835|538836|538837|538838|538839|538840|538841|538842|538843|538844|538845|538846|538847|538848|538849|538850|538851|538852|538853|538854|538855|538856|538857|538858|538859|538860|538861|538862|538863|538864|538865|538866|538867|538868|538869|538870|538871|538872|538874|538875|538876|538877|538878|538879|538880|538881|538882|538883|538884|538885|538889|538890|538891|538892|538893|538894|538895|538896|538897|538898|538899|538900|538901|538902|538903|538904|538905|538906|538907|538908|538909|538910|538911|538912|538913|538914|538915|538916|538917|538918|538919|538920|538921|538922|538923|539357|539358|539359|539360|539361|539362|539363|539364|539365|539366|539367|539368|550852|551932|569065|569072|569074|569075|569079|569080|569182|569193|569197|569198|571137|571375|571378|571399|574463|574464|574466|574468|575609|575994|575995|575996|575998|575999|576000|576001|576002|590562|590564|608842|609138|609177|611333|613520|618548|618549|618550|618551|618552|618553|618554|618555|618556|618557|618558|618559|618560|618561|618562|618563|618564|618565|618566|618567|618568|618570|618571|618572|618573|618574|618575|618626|618700|618701|618702|618703|618705|619559|619562|619568|619591|619628|619648|619658|619677|619678|619680|619683|619687|619692|619710|619724|619729|619904|621043|621051|621569|621859|622039|645919|645920|645921|645922|645923|645924|645925|645926|645927|645928|645929|645930|645931|645933|645934|645935|646059|646060|646061|646062|646063|646064|646065|646066|646067|652794|652800|652805|652958|652960|653275|667991|688772|690176|755873|755874|755878|760569|771529|771555|771556|771557|771558|776304|776323|776348|776491|776677|785584|785603|788129|788130|788245|789610|789611|789612|789613|789614|789615|789626|789633|789634|789635|789636|791753|791754|791755|791756|791757|791758|791759|791760|791761|791762|791763|791764|791765|791766|791767|791768|791769|791770|791771|791772|791773|791774|791775|791776|791777|791778|794278|797544|800791|800792|813639|813640|813641|813642|813643|813644|813645|813646|813647|813649|813650|813651|813652|813653|813654|813656|813658|813660|813661|813662|813663|813664|813665|813667|813668|813669|813670|813672|813673|813674|813906|813907|813908|813910|813911|813912|813913|813914|813915|813916|813917|813918|813921|813922|813923|813924|813925|815683|815684|815688|845359|845360|845361|845362|845363|845364|845365|845366|845367|845369|845370|845477|845478|845480|852210|852744|853070|853071|853072|853073|853074|853075|853076|853077|853078|853079|853080|853081|853082|853083|853084|853085|853086|853087|853088|853089|853090|853091|853092|853093|853094|853095|853096|853097|853098|853099|853100|853101|853102|853103|853104|853105|853106|853107|853108|853109|853110|853111|853112|853113|853114|853115|853116|853117|853118|853119|853120|853121|853122|853123|853124|853125|853126|853127|853128|853129|853130|853131|853132|853133|853134|853135|853136|853137|853138|853139|853140|853141|853142|853143|853144|853145|853146|853147|853148|853149|853150|853151|853152|853153|853154|853155|853156|853157|853158|853159|853160|853161|853162|853163|853164|853165|853166|853167|853168|853169|853170|853171|853172|853173|853174|853175|853176|853177|853178|853179|853180|853181|853182|853183|853184|853185|853186|853187|853188|853189|853190|853191|853192|853193|853194|853195|853196|853197|853198|853199|853200|853201|853202|853203|853204|853205|853206|853207|853208|853209|853210|853211|853212|853213|853214|853215|853216|853217|853218|853219|853220|853221|853222|853223|853224|853225|853226|853227|853228|853229|853230|853231|853232|853233|853234|853235|853236|853237|853238|853239|853240|853241|853242|853243|853244|853245|853246|853247|853248|853249|853250|853251|853252|853253|853254|853255|853256|853257|853258|853259|853260|853261|853262|853263|853264|853265|853266|853267|853268|853269|853270|853271|853272|853273|853274|853275|853276|853277|853278|853279|853280|853281|853282|853283|853284|853285|853286|853287|853288|853289|853290|853291|853292|853293|853294|853295|853296|853297|853298|853299|853300|853301|853302|853303|853304|853305|853306|853307|853308|853309|853310|853311|853312|853313|853314|853315|853316|853317|853318|853319|853320|853321|853322|853323|853324|853325|853326|853327|853328|853329|853330|853331|853332|853333|853334|853335|853336|853337|853338|853339|853340|853341|853342|853343|853344|853345|853346|853347|853348|853349|853350|853351|853352|853353|853354|853355|853356|853357|853358|853359|853360|853361|853362|853363|853364|853365|853366|853367|853368|853369|853370|853371|853372|853373|853374|853375|853376|853377|853378|853379|853380|853381|853382|853383|853384|853385|853386|853387|853388|853389|853390|853391|853392|853393|853394|853395|853396|853397|853398|853399|853400|853401|853402|853403|853404|853405|853406|853407|853408|853409|853410|853411|853412|853413|853414|853415|853416|853417|853418|853419|853420|853421|853422|853423|853424|853425|853426|853427|853428|853429|853430|853431|853432|853433|853434|853435|853436|853437|853438|853439|853440|853441|853442|853443|853444|853445|853446|853447|853448|853449|853450|853451|853452|853453|853454|853455|853456|853457|853458|853459|853460|853461|853462|853463|853464|853465|853466|853467|853468|853469|853470|853471|853472|853473|853474|853475|853476|853477|853478|853479|853480|853481|853482|853483|853484|853485|853486|853487|853488|853489|853490|853491|853492|853493|853494|853495|853496|853497|853498|853499|853500|853501|853502|853503|853504|853505|853506|853507|853508|853509|853510|853511|853512|853513|853514|853515|853516|853517|853518|853519|853520|853521|853522|853523|853524|853525|853526|853527|853528|853529|853530|853531|853532|853533|853534|853535|853536|853537|853538|853539|853540|853541|853542|853543|853544|853545|853546|853547|853548|853549|853550|853551|853552|853553|853554|853555|853556|853557|853558|853559|853560|853561|853562|853563|853564|853565|853566|853567|853568|853569|853570|853571|853572|853573|853574|853575|853576|853577|853578|853579|853580|853581|853582|853583|853584|853585|853586|853587|853588|853589|853590|853591|853592|853593|853594|853595|853596|853597|853598|853599|853600|853601|853602|853603|853604|853605|853606|853607|853608|853609|853610|853611|853612|853613|853614|853615|853616|853617|853618|853619|853620|853621|853622|853623|853624|853625|853626|853627|853628|853629|853630|853631|853632|853633|853634|853635|853636|853637|853638|853639|853640|853641|853642|853643|853644|853645|853646|853647|853648|853649|853650|853651|853652|853653|853654|853655|853656|853657|853658|853659|853660|853661|853662|853663|853664|853665|853666|853667|853668|853669|853670|853671|853672|853673|853674|853675|853676|853677|853678|853679|853680|853681|853682|853683|853684|853685|853686|853687|853688|853689|853690|853691|853692|853693|853694|853695|853696|853697|853698|853699|853700|853701|853702|853703|853704|853705|853706|853707|853708|853709|853710|853711|853712|853713|853714|853715|853716|853717|853718|853719|853720|853721|853722|853723|853724|853725|853726|853727|853728|853729|853730|853731|853732|853733|853734|853735|853736|853737|853738|853739|853740|853741|853742|853743|853744|853745|853746|853747|853748|853749|853750|853751|853752|853753|853754|853755|853756|853757|853758|853759|853760|853761|853762|853763|853764|853765|853766|853767|853768|853769|853770|853771|853772|853773|853774|853775|853776|853777|853778|853779|853780|853781|853782|853783|853784|853785|853786|853787|853788|853789|853790|853791|853792|853793|853794|853795|853796|853797|853798|853799|853800|853801|853802|853803|853804|853805|853806|853807|853808|853809|853810|853811|853812|853813|853814|853815|853816|853817|853818|853819|853820|853821|853822|853823|853824|853825|853826|853827|853828|853829|853830|853831|853832|853833|853834|853835|853836|853837|853838|853839|853840|853841|853842|853843|853844|853845|853846|853847|853848|853849|853850|853851|853852|853853|853854|853855|853856|853857|853858|853859|853860|853861|853862|853863|853864|853865|853866|853867|853868|853869|853870|853871|853872|853873|853874|853875|853876|853877|853878|853879|853880|853881|853882|853883|853884|853885|853886|853887|853888|853889|853890|853891|853892|853893|853894|853895|853896|853897|853898|853899|853900|853901|853902|853903|853904|853905|853906|853907|853908|853909|853910|853911|853912|853913|853914|853915|853916|853917|853918|853919|853920|853921|853922|853923|853924|853925|853926|853927|853928|853929|853930|853931|853932|853933|853934|853935|853936|853937|853938|853939|853940|853941|853942|853943|853944|853945|853946|853947|853948|853949|853950|853951|853952|853953|853954|853955|853956|853957|853958|853959|853960|853961|853962|853963|853964|853965|853966|853967|853968|853969|853970|853971|853972|853973|853974|853975|853976|853977|853978|853979|853980|853981|853982|853983|853984|853985|853986|853987|853988|853989|853990|853991|853992|853993|853994|853995|853996|853997|853998|853999|854000|854001|854002|854003|854004|854005|854006|854007|854008|854009|854010|854011|854012|854013|854014|854015|854016|854017|854018|854019|854020|854021|854022|854023|854024|854025|854026|854027|854028|854029|854030|854031|854032|854033|854034|854035|854036|854037|854038|854039|854040|854041|854042|854043|854044|854045|854046|854047|854048|854049|854050|854051|854052|854053|854054|854055|854056|854057|854058|854059|854060|854061|854062|854063|854064|854065|854066|854067|854068|854069|854070|854071|854072|854073|854074|854075|854076|854077|854078|854079|854080|854081|854082|854083|854084|854085|854086|854087|854088|854089|854090|854091|854092|854093|854094|854095|854096|854097|854098|854099|854100|854101|854102|854103|854104|854105|854106|854107|854108|854109|854110|854111|854112|854113|854114|854115|854116|854117|854118|854119|854120|854121|854122|854123|854124|854125|854126|854127|854128|854129|854130|854131|854132|854133|854134|854135|854136|854137|854138|854139|854140|854141|854142|854143|854144|854145|854146|854147|854148|854149|854150|854151|854152|854153|854154|854155|854156|854157|854158|854159|854160|854161|854162|854163|854164|854165|854166|854167|854168|854169|854170|854171|854172|854173|854174|854175|854176|854177|854178|854179|854180|854181|854182|854183|854184|854185|854186|854187|854188|854189|854190|854191|854192|854193|854194|854195|854196|854197|854198|854199|854200|854201|854202|854203|854204|854205|854206|854207|854208|854209|854210|854211|854212|854213|854214|854215|854216|854217|854218|854219|854220|854221|854222|854223|854224|854225|854226|854227|854228|854229|854230|854231|854232|854233|854234|854235|854236|854237|854238|854239|854240|854241|854242|854243|854244|854245|854246|854247|854248|854249|854250|854251|854252|854253|854254|854255|854256|854257|854258|854259|854260|854261|854262|854263|854264|854265|854266|854267|854268|854269|854270|854271|854272|854273|854274|854275|854276|854277|854278|854279|854280|854281|854282|854283|854284|854285|854286|854287|854288|854289|854290|854291|854292|854293|854294|854295|854296|854297|854298|854299|854300|854301|854302|854303|854304|854305|854306|854307|854308|854309|854310|854311|854312|854313|854314|854315|854316|854317|854318|854319|854320|854321|854322|854323|854324|854325|854326|854327|854328|854329|854330|854331|854332|854333|854334|854335|854336|854337|854338|854339|854340|854341|854342|854343|854344|854345|854346|854347|854348|854349|854350|854351|854352|854353|854354|854355|854356|854357|854358|854359|854360|854361|854362|854363|854364|854365|854366|854367|854368|854369|854370|854371|854372|854373|854374|854375|854376|854377|854378|854379|854380|854381|854382|854383|854384|854385|854386|854387|854388|854389|854390|854391|854392|854393|854394|854395|854396|854397|854398|854399|854400|854401|854402|854403|854404|854405|854406|854407|854408|854409|854410|854411|854412|854413|854414|854415|854416|854417|854418|854419|854420|854421|854422|854423|854424|854425|854426|854427|854428|854429|854430|854431|854432|854433|854434|854435|854436|854437|854438|854439|854440|854441|854442|854443|854444|854445|854446|854447|854448|854449|854450|854451|854452|854453|854454|854455|854456|854457|854458|854459|854460|854461|854462|854463|854464|854465|854466|854467|854468|854469|854470|854471|854472|854473|854474|854475|854476|854477|854478|854479|854480|854481|854482|854483|854484|854485|854486|854487|854488|854489|854490|854491|854492|854493|854494|854495|854496|854497|854498|854499|854500|854501|854502|854503|854504|854505|854506|854507|854508|854509|854510|854511|854512|854513|854514|854515|854516|854517|854518|854519|854520|854521|854522|854523|854524|854525|854526|854527|854528|854529|854530|854531|854532|854533|854534|854535|854536|854537|854538|854539|854540|854541|854542|854543|854544|854545|854546|854547|854548|854549|854550|854551|854552|854553|854554|854555|854556|854557|854558|854559|854560|854561|854562|854563|854564|854565|854566|854567|854568|854569|854570|854571|854572|854573|854574|854575|854576|854577|854578|854579|854580|854581|854582|854583|854584|854585|854586|854587|854588|854589|854590|854591|854592|854593|854594|854595|854596|854597|854598|854599|854600|854601|854602|854603|854604|854605|854606|854607|854608|854609|854610|854611|854612|854613|854614|854615|854616|854617|854618|854619|854620|854621|854622|854623|854624|854625|854626|854627|854628|854629|854630|854631|854632|854633|854634|854635|854636|854637|854638|854639|854640|854641|854642|854643|854644|854645|854646|854647|854648|854649|854650|854651|854652|854653|854654|854655|854656|854657|854658|854659|854660|854661|854662|854663|854664|854665|854666|854667|854668|854669|854670|854671|854672|854673|854674|854675|854676|854677|854678|854679|854680|854681|854682|854683|854684|854685|854686|854687|854688|854689|854690|854691|854692|854693|854694|854695|854696|854697|854698|854699|854700|854701|854702|854703|854704|854705|854706|854707|854708|854709|854710|854711|854712|854713|854714|854715|854716|854717|854718|854719|854720|854721|854722|854723|854724|854725|854726|854727|854728|854729|854730|854731|854732|854733|854734|854735|854736|854737|854738|854739|854740|854741|854742|854743|854744|854745|854746|854747|854748|854749|854750|854751|854752|854753|854754|854755|854756|854757|854758|854759|854760|854761|854762|854763|854764|854765|854766|854767|854768|854769|854770|854771|854772|854773|854774|854775|854776|854777|854778|854779|854780|854781|854782|854783|854784|854785|854786|854787|854788|854789|854790|854791|854792|854793|854794|854795|854796|854797|854798|854799|854800|854801|854802|854803|854804|854805|854806|854807|854808|854809|854810|854811|854812|854813|854814|854815|854816|854817|854818|854819|854820|854821|854822|854823|854824|854825|854826|854827|854828|854829|854830|854831|854832|854833|854834|854835|854836|854837|854838|854839|854840|854841|854842|854843|854844|854845|854846|854847|854848|854849|854850|854851|854852|854853|854854|854855|854856|854857|854858|854859|854860|854861|854862|854863|854864|854865|854866|854867|854868|854869|854870|854871|854872|854873|854874|854875|854876|854877|854878|854879|854880|854881|854882|854883|854884|854885|854886|854887|854888|854889|854890|854891|854892|854893|854894|854895|854896|854897|854898|854899|854900|854901|854902|854903|854904|854905|854906|854907|854908|854909|854910|854911|854912|854913|854914|854915|854916|854917|854918|854919|854920|854921|854922|854923|854924|854925|854926|854927|854928|854929|854930|854931|854932|854933|854934|854935|854936|854937|854938|854939|854940|854941|854942|854943|854944|854945|854946|854947|854948|854949|854950|854951|854952|854953|854954|854955|854956|854957|854958|854959|854960|854961|854962|854963|854964|854965|854966|854967|854968|854969|854970|854971|854972|854973|854974|854975|854976|854977|854978|854979|854980|854981|854982|854983|854984|854985|854986|854987|854988|854989|854990|854991|854992|854993|854994|854995|854996|854997|854998|854999|855000|855001|855002|855003|855004|855005|855006|855007|855008|855009|855010|855011|855012|855013|855014|855015|855016|855017|855018|855019|855020|855021|855022|855023|855024|855025|855026|855027|855028|855029|855030|855031|855032|855033|855034|855035|855036|855037|855038|855039|855040|855041|855042|855043|855044|855045|855046|855047|855048|855049|855050|855051|855052|855053|855054|855055|855056|855057|855058|855059|855060|855061|855062|855063|855064|855065|855066|855067|855068|855069|855070|855071|855072|855121|855122|855123|855124|855125|855126|855127|855128|855129|855130|855131|855132|855133|855134|855135|855136|855137|855138|855139|855140|855141|855142|855143|855144|855145|855146|855147|855148|855149|855150|855151|855152|855153|855154|855155|855156|855157|855158|855159|855160|855161|855162|855163|855164|855165|855166|855167|855168|855169|855170|855171|855172|855173|855174|855175|855176|855177|855178|855179|855180|855181|855182|855183|855184|855185|855186|855187|855188|855189|855190|855191|855192|855193|855194|855195|855196|855197|855198|855199|855200|855201|855202|855203|855204|855205|855206|855207|855208|855209|855210|855211|855212|855213|855214|855215|855216|855217|855218|855219|855220|855221|855222|855223|855224|855225|855226|855227|855228|855229|855230|855231|855232|855233|855234|855235|855236|855237|855238|855239|855240|855241|855242|855243|855244|855245|855246|855247|855248|855249|855250|855251|855252|855253|855254|855255|855256|855257|855258|855259|855260|855261|855262|855263|855264|855265|855266|855267|855268|855269|855270|855271|855272|855273|855274|855275|855276|855277|855278|855279|855280|855281|855282|855283|855284|855285|855286|855287|855288|855289|855290|855291|855292|855293|855294|855295|855296|855297|855298|855299|855300|855301|855302|855303|855304|855305|855306|855307|855308|855309|855310|855311|855312|855313|855314|855315|855316|855317|855318|855319|855320|855321|855322|855323|855324|855325|855326|855327|855328|855329|855330|855331|855332|855333|855334|855335|855336|855337|855338|855339|855340|855341|855342|855343|855344|855345|855346|855347|855348|855349|855350|855351|855352|855353|855354|855355|855356|855357|855358|855359|855360|855361|855362|855363|855364|855365|855366|855367|855368|855369|855370|855371|855372|855373|855374|855375|855376|855377|855378|855379|855380|855381|855382|855383|855384|855385|855386|855387|855388|855389|855390|855391|855392|855393|855394|855395|855396|855397|855398|855399|855400|855401|855402|855403|855404|855405|855406|855407|855408|855409|855410|855411|855412|855413|855414|855415|855416|855417|855418|855419|855420|855421|855422|855423|855424|855425|855426|855427|855428|855429|855430|855431|855432|855433|855434|855435|855436|855437|855438|855439|855440|855441|855442|855443|855444|855445|855446|855447|855448|855449|855450|855451|855452|855453|855454|855455|855456|855457|855458|855459|855460|855461|855462|855463|855464|855465|855466|855467|855468|855469|855470|855471|855472|855473|855474|855475|855476|855477|855478|855479|855480|855481|855482|855483|855484|855485|855486|855487|855488|855489|855490|855491|855492|855493|855494|855495|855496|855497|855498|855499|855500|855501|855502|855503|855504|855505|855506|855507|855508|855509|855510|855511|855512|855513|855514|855515|855516|855517|855518|855519|855520|855521|855522|855523|855524|855525|855526|855527|855528|855529|855530|855531|855532|855533|855534|855535|855536|855537|855538|855539|855540|855541|855542|855543|855544|855545|855546|855547|855548|855549|855550|855551|855552|855553|855554|855555|855556|855557|855558|855559|855560|855561|855562|855563|855564|855565|855566|855567|855568|855569|855570|855571|855572|855573|855574|855575|855576|855577|855578|855579|855580|855581|855582|855583|855584|855585|855586|855587|855588|855589|855590|855591|855592|855593|855594|855595|855596|855597|855598|855599|855600|855601|855602|855603|855604|855605|855606|855607|855608|855609|855610|855611|855612|855613|855614|855615|855616|855617|855618|855619|855620|855621|855622|855623|855624|855625|855626|855627|855628|855629|855630|855631|855632|855633|855634|855635|855636|855637|855638|855639|855640|855641|855642|855643|855644|855645|855646|855647|855648|855649|855650|855651|855652|855653|855654|855655|855656|855657|855658|855659|855660|855661|855662|855663|855664|855665|855666|855667|855668|855669|855670|855671|855672|855673|855674|855675|855676|855677|855678|855679|855680|855681|855682|855683|855684|855685|855686|855687|855688|855689|855690|855691|855692|855693|855694|855695|855696|855697|855698|855699|855700|855701|855702|855703|855704|855705|855706|855707|855708|855709|855710|855711|855712|855713|855714|855715|855716|855717|855718|855719|855720|855721|855722|855723|855724|855725|855726|855727|855728|855729|855730|855731|855732|855733|855734|855735|855736|855737|855738|855739|855740|855741|855742|855743|855744|855745|855746|855747|855748|855749|855750|855751|855752|855753|855754|855755|855756|855757|855758|855759|855760|855761|855762|855763|855764|855765|855766|855767|855768|855769|855770|855771|855772|855773|855774|855775|855776|855777|855778|855779|855780|855781|855782|855783|855784|855785|855786|855787|855788|855789|855790|855791|855792|855793|855794|855795|855796|855797|855798|855799|855800|855801|855802|855803|855804|855805|855806|855807|855808|855809|855810|855811|855812|855813|855814|855815|855816|855817|855818|855819|855820|855821|855822|855823|855824|855825|855826|855827|855828|855829|855830|855831|855832|855833|855834|855835|855836|855837|855838|855839|855840|855841|855842|855843|855844|855845|855846|855847|855848|858797|858809|858811|860950|861036|877636|877637|877638|877639|877640|877641|877642|877643|877644|880525|880526|903619|903620|964481|969598|971077|971078|971628|972480|972481|972482|972483|972484|976701|977410", "text": "Breast-ovarian cancer, familial 1" }, { - "baseId": "21979|181404|205017|429431|432212|514176|514178|577997", + "upstreamId": "21979|181404|205017|429431|432212|514176|514178|577997", "text": "Lissencephaly" }, { - "baseId": "21985|29927", + "upstreamId": "21985|29927", "text": "Leukemia, acute lymphoblastic, susceptibility to" }, { - "baseId": "21985|31311|31315|31317|132522|132527|133309|133320|133322|133328|133329|133330|133331|150860|152273|180277|180279|180298|182874|182897|188057|188069|188070|214777|221794|226498|226502|233702|357674|458623|458714|474812|578477|613429|614326", + "upstreamId": "21985|31311|31315|31317|132522|132527|133309|133320|133322|133328|133329|133330|133331|150860|152273|180277|180279|180298|182874|182897|188057|188069|188070|214777|221794|226498|226502|233702|357674|458623|458714|474812|578477|613429|614326", "text": "Acute lymphoid leukemia" }, { - "baseId": "21989|21990|21991|21992|21993|21994|21995|21996|21997|21998|21999|22000|22001|54906|54907|54908|54909|54910|54911|54912|54913|54915|54916|54917|54918|54919|54920|54923|54924|54925|54926|54927|54928|54929|54931|54932|54933|54934|54937|54938|54939|54940|54941|54942|175791|175792|175796|175797|175798|175932|175933|175936|176462|176466|176468|176471|176472|176475|176476|176480|176484|176597|176598|176599|176600|176601|176602|176605|176611|176616|176618|176622|176625|176627|192472|192473|192474|192476|193866|194652|196040|199805|199806|199807|215531|230680|230682|230683|230688|230689|230690|230691|230693|230695|230696|230698|230699|230701|230702|230703|230704|230706|230707|230708|230715|230716|230717|230718|230722|230729|230730|230737|230740|230742|230743|230744|230751|230754|230756|230759|237620|237621|237622|237623|237627|243882|243883|243884|243885|243886|243887|243888|243889|243890|256094|266315|270870|270906|271404|271671|271672|272122|273474|273537|273936|327520|327521|327526|327534|327536|327540|327547|327549|327553|327568|327569|327573|327577|327584|327585|327589|327595|327598|327603|327607|327609|327616|327617|327620|327624|327625|327629|327632|327635|337362|337369|337371|337372|337379|337384|337389|337390|337392|337393|337394|337400|337401|337421|337422|337428|337433|337436|337440|337444|337447|337451|337454|343643|343644|343645|343647|343651|343653|343654|343659|343660|343661|343663|343670|343671|343675|343677|343678|343682|343685|343687|343695|343696|343698|343702|343705|345134|345135|345138|345139|345142|345145|345150|345152|345155|345168|345169|345172|345173|362512|362514|362515|362516|362517|362518|362519|374869|389248|389249|389250|404827|404828|404829|404830|409848|429949|432332|433740|433746|445715|486171|490078|491485|491616|495663|497267|497482|497483|497486|497557|497559|497697|497701|497706|505999|506711|511041|513367|513642|550628|551793|553270|553271|585861|590324|610066|610067|612316|612317|614515|615819|615820|615821|615822|615823|615824|615825|615826|615843|615844|615845|620573|620574|620575|654813|654820|654829|679025|682318|727034|755678|771299|788906|788907|791683|791684|791685|791686|800008|802078|857687|857688|857689|857690|857691|857695|876921|876922|876923|876924|876925|876926|876927|876928|876929|876930|876931|876932|876933|876934|876935|876936|876937|876938|876939|876940|876941|876942|876943|876944|876945|876946|876947|876948|876949|876950|876951|876952|876953|876954|876955|876956|876957|876958|876959|876960|876961|876962|876963|876964|876965|876966|876967|876968|876969|876970|876971|876972|876973|876974|876975|876976|876977|876978|876979|876980|876981|876982|876983|876984|876985|876986|876987|876988|876989|876990|880480|880481|880482|880483|880484|880485|880486|903700|919714|961220|961804|972888|972889|972890|972891", + "upstreamId": "21989|21990|21991|21992|21993|21994|21995|21996|21997|21998|21999|22000|22001|54906|54907|54908|54909|54910|54911|54912|54913|54915|54916|54917|54918|54919|54920|54923|54924|54925|54926|54927|54928|54929|54931|54932|54933|54934|54937|54938|54939|54940|54941|54942|175791|175792|175796|175797|175798|175932|175933|175936|176462|176466|176468|176471|176472|176475|176476|176480|176484|176597|176598|176599|176600|176601|176602|176605|176611|176616|176618|176622|176625|176627|192472|192473|192474|192476|193866|194652|196040|199805|199806|199807|215531|230680|230682|230683|230688|230689|230690|230691|230693|230695|230696|230698|230699|230701|230702|230703|230704|230706|230707|230708|230715|230716|230717|230718|230722|230729|230730|230737|230740|230742|230743|230744|230751|230754|230756|230759|237620|237621|237622|237623|237627|243882|243883|243884|243885|243886|243887|243888|243889|243890|256094|266315|270870|270906|271404|271671|271672|272122|273474|273537|273936|327520|327521|327526|327534|327536|327540|327547|327549|327553|327568|327569|327573|327577|327584|327585|327589|327595|327598|327603|327607|327609|327616|327617|327620|327624|327625|327629|327632|327635|337362|337369|337371|337372|337379|337384|337389|337390|337392|337393|337394|337400|337401|337421|337422|337428|337433|337436|337440|337444|337447|337451|337454|343643|343644|343645|343647|343651|343653|343654|343659|343660|343661|343663|343670|343671|343675|343677|343678|343682|343685|343687|343695|343696|343698|343702|343705|345134|345135|345138|345139|345142|345145|345150|345152|345155|345168|345169|345172|345173|362512|362514|362515|362516|362517|362518|362519|374869|389248|389249|389250|404827|404828|404829|404830|409848|429949|432332|433740|433746|445715|486171|490078|491485|491616|495663|497267|497482|497483|497486|497557|497559|497697|497701|497706|505999|506711|511041|513367|513642|550628|551793|553270|553271|585861|590324|610066|610067|612316|612317|614515|615819|615820|615821|615822|615823|615824|615825|615826|615843|615844|615845|620573|620574|620575|654813|654820|654829|679025|682318|727034|755678|771299|788906|788907|791683|791684|791685|791686|800008|802078|857687|857688|857689|857690|857691|857695|876921|876922|876923|876924|876925|876926|876927|876928|876929|876930|876931|876932|876933|876934|876935|876936|876937|876938|876939|876940|876941|876942|876943|876944|876945|876946|876947|876948|876949|876950|876951|876952|876953|876954|876955|876956|876957|876958|876959|876960|876961|876962|876963|876964|876965|876966|876967|876968|876969|876970|876971|876972|876973|876974|876975|876976|876977|876978|876979|876980|876981|876982|876983|876984|876985|876986|876987|876988|876989|876990|880480|880481|880482|880483|880484|880485|880486|903700|919714|961220|961804|972888|972889|972890|972891", "text": "Deafness, autosomal recessive 3" }, { - "baseId": "21995", + "upstreamId": "21995", "text": "Deafness, with smith-magenis syndrome" }, { - "baseId": "22002|22003|22004|22005|22006|169307|169309|217278|217279|217280|217281|226603|609009", + "upstreamId": "22002|22003|22004|22005|22006|169307|169309|217278|217279|217280|217281|226603|609009", "text": "Fibrosis of extraocular muscles, congenital, 3a, with or without extraocular involvement" }, { - "baseId": "22006|39228|39230|39231|169306|169307|169309|169309|169310|169311|169312|237806|260145|263006|361225|377988|432220|626163|919692|963822", + "upstreamId": "22006|39228|39230|39231|169306|169307|169309|169309|169310|169311|169312|237806|260145|263006|361225|377988|432220|626163|919692|963822", "text": "Cortical dysplasia, complex, with other brain malformations 1" }, { - "baseId": "22006", + "upstreamId": "22006", "text": "TUBB3-Releated Disorders" }, { - "baseId": "22007|22008|22009|22010|22011|193510|194906|205369|205370|253027|253028|253029|253030|265664|269519|304088|304092|304093|304097|304099|304106|307666|307668|307673|307678|307679|307680|307683|307700|312720|312721|312722|312723|312847|312848|312849|312854|312855|312861|700368|722816|766526|782986|790777|804849|898787|898788|898789|898790|898791|898792|898793|898794|898795|898796|898797|898798|898799|898800|898801|898802|898803|898804|898805", + "upstreamId": "22007|22008|22009|22010|22011|193510|194906|205369|205370|253027|253028|253029|253030|265664|269519|304088|304092|304093|304097|304099|304106|307666|307668|307673|307678|307679|307680|307683|307700|312720|312721|312722|312723|312847|312848|312849|312854|312855|312861|700368|722816|766526|782986|790777|804849|898787|898788|898789|898790|898791|898792|898793|898794|898795|898796|898797|898798|898799|898800|898801|898802|898803|898804|898805", "text": "Hyperphosphatasemia with bone disease" }, { - "baseId": "22012|22013|22014|190419|190420|190421|192363|272169|319880|319885|319888|319889|319890|319892|319894|328402|328403|328404|328405|328409|328415|328417|328418|328419|334847|334852|334853|334862|334865|334866|334868|336653|336655|336660|336665|336667|336673|336678|336679|489921|493082|725493|871352|871353|871354|871355|871356|871357|871358|871359|871360|871361|871362|871363|871364|871365|871366|871367|871368|871369|872337|872338", + "upstreamId": "22012|22013|22014|190419|190420|190421|192363|272169|319880|319885|319888|319889|319890|319892|319894|328402|328403|328404|328405|328409|328415|328417|328418|328419|334847|334852|334853|334862|334865|334866|334868|336653|336655|336660|336665|336667|336673|336678|336679|489921|493082|725493|871352|871353|871354|871355|871356|871357|871358|871359|871360|871361|871362|871363|871364|871365|871366|871367|871368|871369|872337|872338", "text": "Autosomal recessive osteopetrosis 2" }, { - "baseId": "22016", + "upstreamId": "22016", "text": "Rhabdomyosarcoma, somatic" }, { - "baseId": "22018|22019|22020|22021|22022|22023|76404|76412|76415|256653|256655|256656|256657|256658|331219|341498|346976|348241|532725|536083|653071|688913|694269|846827|879169|879170|879171|958460", + "upstreamId": "22018|22019|22020|22021|22022|22023|76404|76412|76415|256653|256655|256656|256657|256658|331219|341498|346976|348241|532725|536083|653071|688913|694269|846827|879169|879170|879171|958460", "text": "Holoprosencephaly 4" }, { - "baseId": "22024", + "upstreamId": "22024", "text": "Major depressive disorder, increased recurrence of depressive episodes in, susceptibility to" }, { - "baseId": "22024", + "upstreamId": "22024", "text": "Antidepressant drug treatment, accelerated response to" }, { - "baseId": "22025|22026|100996|100997|100998|204978|429030|512836|512915", + "upstreamId": "22025|22026|100996|100997|100998|204978|429030|512836|512915", "text": "Bamforth-Lazarus syndrome" }, { - "baseId": "22027", + "upstreamId": "22027", "text": "Hypothyroidism, thyroidal, with spiky hair and cleft palate" }, { - "baseId": "22028|22029|22030|22031|39226|99964|215480|320623|320625|320628|320629|320630|320634|329377|329381|329384|329387|329403|329405|335962|335964|335969|335971|335973|335975|335986|335994|335995|337946|337947|337948|337962|373093|373845|463235|528644|566447|568070|609060|609061|609062|609066|622903|622904|642457|642458|642459|693494|871869|871870|871871|871872|871873|871874|871875|871876|871877|871878|871879|871880|871881|871882|871883|871884|871885|871886|871887|871888|871889|871890|871891|871892|957222", + "upstreamId": "22028|22029|22030|22031|39226|99964|215480|320623|320625|320628|320629|320630|320634|329377|329381|329384|329387|329403|329405|335962|335964|335969|335971|335973|335975|335986|335994|335995|337946|337947|337948|337962|373093|373845|463235|528644|566447|568070|609060|609061|609062|609066|622903|622904|642457|642458|642459|693494|871869|871870|871871|871872|871873|871874|871875|871876|871877|871878|871879|871880|871881|871882|871883|871884|871885|871886|871887|871888|871889|871890|871891|871892|957222", "text": "Congenital disorder of glycosylation, type IIa" }, { - "baseId": "22035|76355|76356", + "upstreamId": "22035|76355|76356", "text": "Myocardial infarction 1" }, { - "baseId": "22036|22037", + "upstreamId": "22036|22037", "text": "Hypotrichosis 2" }, { - "baseId": "22038|252773|252774|270302|456628|456641|489129|610534|610535|636050|636051|710940|722463|736085|736086|736088|744380|782840|833499|924817|955129|970855", + "upstreamId": "22038|252773|252774|270302|456628|456641|489129|610534|610535|636050|636051|710940|722463|736085|736086|736088|744380|782840|833499|924817|955129|970855", "text": "Spondylocostal dysostosis 3, autosomal recessive" }, { - "baseId": "22039|22040|22041|22042|22043|22044|22045|22046|22047|22048|22049|22050|22051|204428|253286|253288|253289|253293|253294|253295|253297|259911|306673|306675|306682|306684|306685|306686|306691|306693|306697|306699|306708|306710|306713|306724|306725|306731|306733|306737|306738|306740|306741|306743|306744|306748|306751|306763|306764|306769|306774|306776|306780|306786|306787|306790|306791|306795|306798|306799|310851|310853|310860|310865|310867|310869|310871|310875|310879|310880|310881|310882|310883|310889|310891|310893|310910|310911|310917|310920|310921|310922|310926|310940|316376|316385|316386|316387|316388|316392|316396|316397|316399|316400|316407|316410|316411|316426|316431|316434|316439|316442|316462|316483|316484|316485|316487|316496|316499|316502|316503|316504|316530|316610|316617|316618|316627|316630|316638|316643|316646|316649|316652|316653|316657|316659|316670|316682|316691|316698|316705|316708|316709|316712|316717|316722|316723|316729|316735|316736|316737|316740|316743|316753|316761|316763|316767|316768|316769|354169|417436|417439|432300|481835|490222|513077|578652|590733|623300|653877|682510|683220|730605|798608|798609|798610|815850|815851|815852|815853|815854|815855|818264|900996|900997|900998|900999|901000|901001|901002|901003|901004|901005|901006|901007|901008|901009|901010|901011|901012|901013|901014|901015|901016|901017|901018|901019|901020|901021|901022|901023|901024|901025|901026|901027|901028|901029|901030|901031|901032|901033|901034|901035|901036|901037|901038|901039|901040|901041|901042|901043|901044|901045|901046|901047|901048|901049|901050|901051|901052|903310|903311|903312|962164|964304|964837|970890|971377|983463", + "upstreamId": "22039|22040|22041|22042|22043|22044|22045|22046|22047|22048|22049|22050|22051|204428|253286|253288|253289|253293|253294|253295|253297|259911|306673|306675|306682|306684|306685|306686|306691|306693|306697|306699|306708|306710|306713|306724|306725|306731|306733|306737|306738|306740|306741|306743|306744|306748|306751|306763|306764|306769|306774|306776|306780|306786|306787|306790|306791|306795|306798|306799|310851|310853|310860|310865|310867|310869|310871|310875|310879|310880|310881|310882|310883|310889|310891|310893|310910|310911|310917|310920|310921|310922|310926|310940|316376|316385|316386|316387|316388|316392|316396|316397|316399|316400|316407|316410|316411|316426|316431|316434|316439|316442|316462|316483|316484|316485|316487|316496|316499|316502|316503|316504|316530|316610|316617|316618|316627|316630|316638|316643|316646|316649|316652|316653|316657|316659|316670|316682|316691|316698|316705|316708|316709|316712|316717|316722|316723|316729|316735|316736|316737|316740|316743|316753|316761|316763|316767|316768|316769|354169|417436|417439|432300|481835|490222|513077|578652|590733|623300|653877|682510|683220|730605|798608|798609|798610|815850|815851|815852|815853|815854|815855|818264|900996|900997|900998|900999|901000|901001|901002|901003|901004|901005|901006|901007|901008|901009|901010|901011|901012|901013|901014|901015|901016|901017|901018|901019|901020|901021|901022|901023|901024|901025|901026|901027|901028|901029|901030|901031|901032|901033|901034|901035|901036|901037|901038|901039|901040|901041|901042|901043|901044|901045|901046|901047|901048|901049|901050|901051|901052|903310|903311|903312|962164|964304|964837|970890|971377|983463", "text": "Nail-patella syndrome" }, { - "baseId": "22053|22055|22056|22059|22060|22061|22062|22063|54481|54482|54484|54486|54489|54490|54491|54492|54496|54497|54498|54499|54501|54502|54503|54505|54506|54507|54508|54509|89105|175072|175073|175074|175075|175076|175081|175082|175082|175083|175085|175086|175090|175091|175348|175351|175352|175354|175359|175361|175366|227342|229977|229980|229983|229990|229993|229994|229999|230001|230004|237609|237610|237611|273542|312810|312811|312812|312818|312829|312830|312835|312839|312841|312846|312851|312852|312853|312857|318828|318835|318836|318859|318870|318882|318883|318889|318898|324933|324943|324948|324959|324960|324961|324966|324969|324970|324971|324978|324982|324992|325005|325006|325011|325783|325803|325813|325818|325819|325820|325823|325828|325856|325862|325864|325867|325869|325870|325874|325878|389963|404795|421833|489962|493527|536807|620387|654629|654630|654637|677281|677282|752490|857678|857679|859843|867348|867349|867350|867351|867352|867353|867354|867355|867356|867357|867358|867359|867360|867361|867362|867363|867364|867365|867366|867367|867368|867369|867370|867371|867372|867373|867374|867375|867376|867377|867378|867379|919328|919329|919330", + "upstreamId": "22053|22055|22056|22059|22060|22061|22062|22063|54481|54482|54484|54486|54489|54490|54491|54492|54496|54497|54498|54499|54501|54502|54503|54505|54506|54507|54508|54509|89105|175072|175073|175074|175075|175076|175081|175082|175082|175083|175085|175086|175090|175091|175348|175351|175352|175354|175359|175361|175366|227342|229977|229980|229983|229990|229993|229994|229999|230001|230004|237609|237610|237611|273542|312810|312811|312812|312818|312829|312830|312835|312839|312841|312846|312851|312852|312853|312857|318828|318835|318836|318859|318870|318882|318883|318889|318898|324933|324943|324948|324959|324960|324961|324966|324969|324970|324971|324978|324982|324992|325005|325006|325011|325783|325803|325813|325818|325819|325820|325823|325828|325856|325862|325864|325867|325869|325870|325874|325878|389963|404795|421833|489962|493527|536807|620387|654629|654630|654637|677281|677282|752490|857678|857679|859843|867348|867349|867350|867351|867352|867353|867354|867355|867356|867357|867358|867359|867360|867361|867362|867363|867364|867365|867366|867367|867368|867369|867370|867371|867372|867373|867374|867375|867376|867377|867378|867379|919328|919329|919330", "text": "Deafness, autosomal dominant 12" }, { - "baseId": "22054|22057|22058", + "upstreamId": "22054|22057|22058", "text": "Deafness, neurosensory autosomal recessive 21" }, { - "baseId": "22064|22065|29046|29049|29050|294660|519673|632527|651126|691638|698680|698681", + "upstreamId": "22064|22065|29046|29049|29050|294660|519673|632527|651126|691638|698680|698681", "text": "Lewy body dementia" }, { - "baseId": "22066|22067|22068|22069|22070|22071|22072|141994|141996|141997|141999|142000|142002|142003|142004|142005|142007|142008|142009|191659|200103|200104|200105|259828|298105|298109|298186|304681|304722|304723|304976|304981|304985|304986|368255|368260|368532|368547|368548|368554|368556|368719|369939|369945|369947|433709|455965|501261|513279|521604|538989|560494|565201|620784|634031|634034|634035|634036|651340|651355|655683|686764|691880|695303|699175|721540|735205|735206|735209|735213|744075|744253|749601|749602|749603|749604|749605|749606|759387|765216|765217|775052|775085|775195|782340|782343|782347|795723|819608|819609|819610|830965|830969|851038|851990|924115|932956|932957|932958|932959|932960|940012|944660|944661|944662|954198|954200|954201|954202|954203|959772|959773|978206|978207|978208|978210|978211|978213|978216", + "upstreamId": "22066|22067|22068|22069|22070|22071|22072|141994|141996|141997|141999|142000|142002|142003|142004|142005|142007|142008|142009|191659|200103|200104|200105|259828|298105|298109|298186|304681|304722|304723|304976|304981|304985|304986|368255|368260|368532|368547|368548|368554|368556|368719|369939|369945|369947|433709|455965|501261|513279|521604|538989|560494|565201|620784|634031|634034|634035|634036|651340|651355|655683|686764|691880|695303|699175|721540|735205|735206|735209|735213|744075|744253|749601|749602|749603|749604|749605|749606|759387|765216|765217|775052|775085|775195|782340|782343|782347|795723|819608|819609|819610|830965|830969|851038|851990|924115|932956|932957|932958|932959|932960|940012|944660|944661|944662|954198|954200|954201|954202|954203|959772|959773|978206|978207|978208|978210|978211|978213|978216", "text": "Homocystinuria-Megaloblastic anemia due to defect in cobalamin metabolism, cblE complementation type" }, { - "baseId": "22068|28672|141992", + "upstreamId": "22068|28672|141992", "text": "Neural tube defects, folate-sensitive, susceptibility to" }, { - "baseId": "22068", + "upstreamId": "22068", "text": "Down syndrome, susceptibility to" }, { - "baseId": "22068|227763|362505", + "upstreamId": "22068|227763|362505", "text": "methotrexate response - Toxicity/ADR" }, { - "baseId": "22073|22074|22075|22076|22077|22079|22080|22081|22082|22083|22084|22085|22086|22087|22089|22089|22090|22091|22092|22093|22094|49644|49645|49646|49647|59479|215779|239896|265741|267741|273419|299552|299558|299566|299567|299575|299576|299579|299582|299583|299589|299590|302087|302094|302095|302100|302101|302102|302104|302107|302111|302116|302128|302129|306507|306523|306524|306528|306531|306532|306546|306771|306772|306775|306783|306784|306785|306792|306808|306809|306811|306812|394996|394998|395072|395079|395080|395171|395226|395227|395228|395420|395426|395641|406849|413736|438347|455116|455265|455271|455272|455430|455450|455455|455534|455998|456260|456269|456276|521494|521887|550844|560399|560501|560506|560508|560654|560656|560658|560660|563258|563260|563480|563481|565508|565509|565522|634764|634766|634768|634771|634773|651540|651583|683770|683771|686815|798915|799032|819680|859497|895621|895622|895623|895624|895625|895626|895627|895628|895629|895630|895631|895632|895633|895634|895635|895636|895637|895638|895639|895640|895641|895642|895643|895644|895645|895646|895647|895648|895649|895650|895651|895652|895653|895654|895655|895656|895657|895658|895659|895660|895661|895662|895663|895664|896213|964910", + "upstreamId": "22073|22074|22075|22076|22077|22079|22080|22081|22082|22083|22084|22085|22086|22087|22089|22089|22090|22091|22092|22093|22094|49644|49645|49646|49647|59479|215779|239896|265741|267741|273419|299552|299558|299566|299567|299575|299576|299579|299582|299583|299589|299590|302087|302094|302095|302100|302101|302102|302104|302107|302111|302116|302128|302129|306507|306523|306524|306528|306531|306532|306546|306771|306772|306775|306783|306784|306785|306792|306808|306809|306811|306812|394996|394998|395072|395079|395080|395171|395226|395227|395228|395420|395426|395641|406849|413736|438347|455116|455265|455271|455272|455430|455450|455455|455534|455998|456260|456269|456276|521494|521887|550844|560399|560501|560506|560508|560654|560656|560658|560660|563258|563260|563480|563481|565508|565509|565522|634764|634766|634768|634771|634773|651540|651583|683770|683771|686815|798915|799032|819680|859497|895621|895622|895623|895624|895625|895626|895627|895628|895629|895630|895631|895632|895633|895634|895635|895636|895637|895638|895639|895640|895641|895642|895643|895644|895645|895646|895647|895648|895649|895650|895651|895652|895653|895654|895655|895656|895657|895658|895659|895660|895661|895662|895663|895664|896213|964910", "text": "Parkinson disease 2" }, { - "baseId": "22088|23582|23584|27386|27388|27393|27394|27395|27397|27398|27403|27404|27405|27407|27408|27409|27422|27617|27641|27642|27645|27646|27650|27652|28691|28692|28694|28695|28698|28914|28915|28916|28939|28996|29000|29005|29006|29007|29009|29010|29011|29013|29022|30972|30973|31371|31648|31650|31967|31968|32616|32618|32619|32621|32622|32623|32625|32626|32627|32628|36171|36173|40609|44227|48304|48857|49030|50071|53970|53980|53985|54284|54289|54392|54406|70450|83949|133271|133272|133274|133276|139098|150515|150535|150855|151476|151595|151897|151955|152428|166215|171613|171614|174177|174254|176503|179419|180995|181000|181001|181005|185345|185350|185366|185367|185371|185375|185384|185394|186283|206650|213392|213398|213402|213943|214512|214513|224866|232035|236459|236461|236462|236463|236468|236469|236471|236477|236479|236481|239564|242978|242980|245074|260191|260192|263939|359197|360335|361709|362753|362759|362760|362761|362768|362770|362771|362772|362773|362774|362775|362822|362826|362859|362894|362895|362896|362904|362905|362912|362929|362952|362954|363011|363012|363013|363014|363015|363016|363017|363018|363036|363053|363067|363068|363110|363112|363113|363114|363121|363123|363165|363174|363179|363186|363194|363197|363201|363202|363210|363245|363246|363247|363248|363249|363250|363251|363253|363254|363255|363256|363257|363258|363259|363260|363264|363269|363270|363271|363272|363273|363293|363294|363295|363296|363297|363312|363321|363322|363323|363324|363325|363326|363327|363337|363338|363340|363341|363342|363343|363344|363345|363346|363347|363349|363350|363351|363352|363353|363354|363355|363356|363357|363360|363361|363362|363363|363367|363368|363369|363384|363385|363386|363393|363396|363397|363416|363417|363418|363419|363420|363421|363438|363439|363440|363441|363442|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363473|363474|363475|363476|363477|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363496|363497|363498|363499|363500|363501|363502|363503|363504|363505|363506|363507|363508|363512|363513|363514|363515|363516|363517|363518|363519|363520|363521|363522|363523|363524|363525|363526|363527|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363538|363539|363540|363541|363542|363543|363544|363545|363546|363547|363548|363549|363550|363551|363552|363553|363554|363555|363556|363557|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363572|363573|363580|363587|424553|424554|424557|488234|550726|550727|550728", + "upstreamId": "22088|23582|23584|27386|27388|27393|27394|27395|27397|27398|27403|27404|27405|27407|27408|27409|27422|27617|27641|27642|27645|27646|27650|27652|28691|28692|28694|28695|28698|28914|28915|28916|28939|28996|29000|29005|29006|29007|29009|29010|29011|29013|29022|30972|30973|31371|31648|31650|31967|31968|32616|32618|32619|32621|32622|32623|32625|32626|32627|32628|36171|36173|40609|44227|48304|48857|49030|50071|53970|53980|53985|54284|54289|54392|54406|70450|83949|133271|133272|133274|133276|139098|150515|150535|150855|151476|151595|151897|151955|152428|166215|171613|171614|174177|174254|176503|179419|180995|181000|181001|181005|185345|185350|185366|185367|185371|185375|185384|185394|186283|206650|213392|213398|213402|213943|214512|214513|224866|232035|236459|236461|236462|236463|236468|236469|236471|236477|236479|236481|239564|242978|242980|245074|260191|260192|263939|359197|360335|361709|362753|362759|362760|362761|362768|362770|362771|362772|362773|362774|362775|362822|362826|362859|362894|362895|362896|362904|362905|362912|362929|362952|362954|363011|363012|363013|363014|363015|363016|363017|363018|363036|363053|363067|363068|363110|363112|363113|363114|363121|363123|363165|363174|363179|363186|363194|363197|363201|363202|363210|363245|363246|363247|363248|363249|363250|363251|363253|363254|363255|363256|363257|363258|363259|363260|363264|363269|363270|363271|363272|363273|363293|363294|363295|363296|363297|363312|363321|363322|363323|363324|363325|363326|363327|363337|363338|363340|363341|363342|363343|363344|363345|363346|363347|363349|363350|363351|363352|363353|363354|363355|363356|363357|363360|363361|363362|363363|363367|363368|363369|363384|363385|363386|363393|363396|363397|363416|363417|363418|363419|363420|363421|363438|363439|363440|363441|363442|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363473|363474|363475|363476|363477|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363496|363497|363498|363499|363500|363501|363502|363503|363504|363505|363506|363507|363508|363512|363513|363514|363515|363516|363517|363518|363519|363520|363521|363522|363523|363524|363525|363526|363527|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363538|363539|363540|363541|363542|363543|363544|363545|363546|363547|363548|363549|363550|363551|363552|363553|363554|363555|363556|363557|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363572|363573|363580|363587|424553|424554|424557|488234|550726|550727|550728", "text": "Lung adenocarcinoma" }, { - "baseId": "22089", + "upstreamId": "22089", "text": "Leprosy 2" }, { - "baseId": "22095|22096|22097|22098|22099|22100|22101|106635|106636|106637|106638|135507|135509|135510|135511|135512|135513|135514|135516|135517|135518|188929|206842|206843|281823|281824|281827|281834|282466|282467|282468|282472|282484|282486|284089|284095|284096|284100|284101|284102|284126|284127|284128|284131|284133|284134|284311|284313|284316|284317|284321|284335|284347|284348|284349|363693|365536|405294|427879|427880|440522|513246|535674|535675|535676|552048|552049|612346|612347|623129|697026|788741|789110|881040|881041|881042|881043|881044|881045|881046|881047|881048|881049|881050|881051|881052|881053|881054|881055|881056|881057|881058|881059|881060|881061|881062|881063|881064|881065|882796", + "upstreamId": "22095|22096|22097|22098|22099|22100|22101|106635|106636|106637|106638|135507|135509|135510|135511|135512|135513|135514|135516|135517|135518|188929|206842|206843|281823|281824|281827|281834|282466|282467|282468|282472|282484|282486|284089|284095|284096|284100|284101|284102|284126|284127|284128|284131|284133|284134|284311|284313|284316|284317|284321|284335|284347|284348|284349|363693|365536|405294|427879|427880|440522|513246|535674|535675|535676|552048|552049|612346|612347|623129|697026|788741|789110|881040|881041|881042|881043|881044|881045|881046|881047|881048|881049|881050|881051|881052|881053|881054|881055|881056|881057|881058|881059|881060|881061|881062|881063|881064|881065|882796", "text": "Warburg micro syndrome 1" }, { - "baseId": "22102|22103|22104|22105|22106|281251|281253|281869|281870|283115|283116|283121|283315|283316|283317|283318|283319|440521|448380|516087|556503|557376|557378|558597|628270|628271|650547|658097|690677|792720|794726|824426|864818|864819|864820|864821|864822|864823|865210|942104", + "upstreamId": "22102|22103|22104|22105|22106|281251|281253|281869|281870|283115|283116|283121|283315|283316|283317|283318|283319|440521|448380|516087|556503|557376|557378|558597|628270|628271|650547|658097|690677|792720|794726|824426|864818|864819|864820|864821|864822|864823|865210|942104", "text": "Parkinson disease 7" }, { - "baseId": "22109|22110|22111|22112|22113|22114|22115|22116|39224|45320|105689|168980|168981|168982|168983|168985|168986|168988|168989|168990|168992|168993|168994|168995|168996|168997|169004|169005|169007|169008|205017|205772|207972|207973|207976|213622|271629|359970|360041|360041|408686|425993|429430|429432|429435|432218|481496|553386|576155|581957|611416|611417|613819|621031|677055|788867|791253|855109|855110|855111|855112|861574|861575|964389|965453|965987|966890", + "upstreamId": "22109|22110|22111|22112|22113|22114|22115|22116|39224|45320|105689|168980|168981|168982|168983|168985|168986|168988|168989|168990|168992|168993|168994|168995|168996|168997|169004|169005|169007|169008|205017|205772|207972|207973|207976|213622|271629|359970|360041|360041|408686|425993|429430|429432|429435|432218|481496|553386|576155|581957|611416|611417|613819|621031|677055|788867|791253|855109|855110|855111|855112|861574|861575|964389|965453|965987|966890", "text": "Lissencephaly 3" }, { - "baseId": "22109|22110|22111|22112|22113|22114|22115|22116|39224|168980|168981|168982|168983|168985|168986|168988|168990|168992|168994|168996|168997|169004|169005|169007|188844|205017|205772|207972|207973|207976|213622|260021|260022|271629|359970|360041|372337|373114|373308|375180|408686|408687|408688|408689|408690|408691|415338|415339|415340|421929|421930|421931|425988|425989|425990|425992|425993|429430|429432|429435|431921|432218|445034|445035|445036|445037|481496|512020|512021|512022|512023|613776|613777|613778|613779|613780|613781|613782|613783|613784|613786|613787|613788|613789|613790|613792|613793|613795|613796|613797|613798|613801|613802|613803|613804|613807|613808|613809|613810|613811|613812|613813|613814|613815|613816|613817|613819|613820|613821|613822|613825", + "upstreamId": "22109|22110|22111|22112|22113|22114|22115|22116|39224|168980|168981|168982|168983|168985|168986|168988|168990|168992|168994|168996|168997|169004|169005|169007|188844|205017|205772|207972|207973|207976|213622|260021|260022|271629|359970|360041|372337|373114|373308|375180|408686|408687|408688|408689|408690|408691|415338|415339|415340|421929|421930|421931|425988|425989|425990|425992|425993|429430|429432|429435|431921|432218|445034|445035|445036|445037|481496|512020|512021|512022|512023|613776|613777|613778|613779|613780|613781|613782|613783|613784|613786|613787|613788|613789|613790|613792|613793|613795|613796|613797|613798|613801|613802|613803|613804|613807|613808|613809|613810|613811|613812|613813|613814|613815|613816|613817|613819|613820|613821|613822|613825", "text": "Tubulinopathies" }, { - "baseId": "22117|22118|22119|53746|53750|102599|107268|174271|174406|174407|229297|295774|297585|301477|301691|301693|301711|301716|301720|360866|537472|609580|861622|893196|893197|893198|893199|893200|893201|893202|961807|961808|961809|961810", + "upstreamId": "22117|22118|22119|53746|53750|102599|107268|174271|174406|174407|229297|295774|297585|301477|301691|301693|301711|301716|301720|360866|537472|609580|861622|893196|893197|893198|893199|893200|893201|893202|961807|961808|961809|961810", "text": "Deafness, autosomal dominant 15" }, { - "baseId": "22120", + "upstreamId": "22120", "text": "Low density lipoprotein cholesterol level quantitative trait locus 6" }, { - "baseId": "22121|22122", + "upstreamId": "22121|22122", "text": "Colorectal cancer with chromosomal instability, somatic" }, { - "baseId": "22123|22124", + "upstreamId": "22123|22124", "text": "PARAOXONASE 2 POLYMORPHISM" }, { - "baseId": "22125|22126|22127|22128|22129|237081|289457|289465|289466|289473|289474|289479|290230|290236|290239|290240|290245|293317|293320|293329|293333|293334|293346|293348|293349|293751|293757|293763|293767|353642|353645|451904|451912|451918|451921|452123|452280|452283|452287|452290|452360|452364|452366|452378|518953|518962|519126|519129|519136|519139|558832|559367|561241|561243|561245|562537|562541|576721|631025|631026|631027|631028|631029|651074|763724|781608|819347|819349|827656|827657|827658|827659|827660|827661|851546|888361|888362|888363|888364|888365|891617|891618|923081|923082|923083|923084|923085|923086|943396|943397|943398|953380|953381|964216", + "upstreamId": "22125|22126|22127|22128|22129|237081|289457|289465|289466|289473|289474|289479|290230|290236|290239|290240|290245|293317|293320|293329|293333|293334|293346|293348|293349|293751|293757|293763|293767|353642|353645|451904|451912|451918|451921|452123|452280|452283|452287|452290|452360|452364|452366|452378|518953|518962|519126|519129|519136|519139|558832|559367|561241|561243|561245|562537|562541|576721|631025|631026|631027|631028|631029|651074|763724|781608|819347|819349|827656|827657|827658|827659|827660|827661|851546|888361|888362|888363|888364|888365|891617|891618|923081|923082|923083|923084|923085|923086|943396|943397|943398|953380|953381|964216", "text": "Encephalopathy, familial, with neuroserpin inclusion bodies" }, { - "baseId": "22130", + "upstreamId": "22130", "text": "Tuberculosis, susceptibility to" }, { - "baseId": "22130|25399|25402|25406|25407|25411|25425|25428|404771|404772|404773|578461|816347", + "upstreamId": "22130|25399|25402|25406|25407|25411|25425|25428|404771|404772|404773|578461|816347", "text": "Susceptibility to malaria" }, { - "baseId": "22130", + "upstreamId": "22130", "text": "Bacteremia, susceptibility to, 2" }, { - "baseId": "22131|22132|22133|22134|255854|326089|326093|326094|326095|326097|335767|335771|335776|335777|335779|335782|335783|342106|342115|342117|342122|342127|342131|342133|342136|342142|342143|343633|343634|343638|343641|343649|343656|343658|343664|466544|466793|466795|466799|513361|570319|570321|570347|574099|576173|620880|875770|875771|875772|875773|875774|875775|875776|875777|875778|875779|875780|875781|875782|875783|875784|875785|875786|875787|875788|875789|876704|919671|937527", + "upstreamId": "22131|22132|22133|22134|255854|326089|326093|326094|326095|326097|335767|335771|335776|335777|335779|335782|335783|342106|342115|342117|342122|342127|342131|342133|342136|342142|342143|343633|343634|343638|343641|343649|343656|343658|343664|466544|466793|466795|466799|513361|570319|570321|570347|574099|576173|620880|875770|875771|875772|875773|875774|875775|875776|875777|875778|875779|875780|875781|875782|875783|875784|875785|875786|875787|875788|875789|876704|919671|937527", "text": "Cataract 5 multiple types" }, { - "baseId": "22135|22136|22137|22137|22138|101917|253708|253709|253710|260885|320645|321211|321213|321224|460629|525242|564400|564407|569552|569554|638772|638773|652314|692805|692807|692808|737406|820193|820194|820195|836694|851766|852234|934978|934979|946839|956006", + "upstreamId": "22135|22136|22137|22137|22138|101917|253708|253709|253710|260885|320645|321211|321213|321224|460629|525242|564400|564407|569552|569554|638772|638773|652314|692805|692807|692808|737406|820193|820194|820195|836694|851766|852234|934978|934979|946839|956006", "text": "Glaucoma 1, open angle, e" }, { - "baseId": "22137|22137|22138|22139|22140|22141|101916|101917|101917|195007|253708|253708|253709|253709|253710|260885|309724|309725|309726|309727|309732|309734|309739|309743|314575|314577|314579|314580|314581|314594|314622|314630|320644|320645|320645|320651|320654|320655|320656|320657|320658|320662|321180|321188|321189|321201|321211|321211|321213|321213|321216|321224|321224|321225|321235|321239|441368|460629|525242|564400|564407|569552|569554|620347|638772|638773|652314|692805|692805|692807|692808|737406|820193|820194|820195|836694|851766|852234|861365|861366|861367|861368|865595|865596|865597|865598|865599|865600|865601|865602|865603|865604|865605|865606|865607|865608|868457|934978|934979|946839|956006|980496", + "upstreamId": "22137|22137|22138|22139|22140|22141|101916|101917|101917|195007|253708|253708|253709|253709|253710|260885|309724|309725|309726|309727|309732|309734|309739|309743|314575|314577|314579|314580|314581|314594|314622|314630|320644|320645|320645|320651|320654|320655|320656|320657|320658|320662|321180|321188|321189|321201|321211|321211|321213|321213|321216|321224|321224|321225|321235|321239|441368|460629|525242|564400|564407|569552|569554|620347|638772|638773|652314|692805|692805|692807|692808|737406|820193|820194|820195|836694|851766|852234|861365|861366|861367|861368|865595|865596|865597|865598|865599|865600|865601|865602|865603|865604|865605|865606|865607|865608|868457|934978|934979|946839|956006|980496", "text": "Amyotrophic lateral sclerosis type 12" }, { - "baseId": "22137|22137|22138|22783|22988|101916|101917|101917|132463|132467|132468|132469|132470|132471|195007|226781|226782|226783|226784|226785|243828|251608|253708|253708|253709|253709|253710|260885|294835|294873|296586|296605|296614|296677|300278|300279|300299|300349|300353|300385|300410|309724|309725|309726|309727|309732|309734|309739|309743|314575|314577|314579|314580|314581|314594|314616|314619|314621|314622|314630|320644|320645|320645|320651|320654|320655|320656|320657|320658|320662|321180|321188|321189|321201|321211|321211|321213|321213|321216|321224|321224|321225|321235|321239|353123|353124|353675|441368|460629|525242|564400|564407|569552|569554|620347|638772|638773|652314|692805|692805|692807|692808|737406|790945|820193|820194|820195|836694|851766|852234|865595|865596|865597|865598|865599|865600|865601|865602|865603|865604|865605|865606|865607|865608|868457|919261|920282|934978|934979|946839|956006", + "upstreamId": "22137|22137|22138|22783|22988|101916|101917|101917|132463|132467|132468|132469|132470|132471|195007|226781|226782|226783|226784|226785|243828|251608|253708|253708|253709|253709|253710|260885|294835|294873|296586|296605|296614|296677|300278|300279|300299|300349|300353|300385|300410|309724|309725|309726|309727|309732|309734|309739|309743|314575|314577|314579|314580|314581|314594|314616|314619|314621|314622|314630|320644|320645|320645|320651|320654|320655|320656|320657|320658|320662|321180|321188|321189|321201|321211|321211|321213|321213|321216|321224|321224|321225|321235|321239|353123|353124|353675|441368|460629|525242|564400|564407|569552|569554|620347|638772|638773|652314|692805|692805|692807|692808|737406|790945|820193|820194|820195|836694|851766|852234|865595|865596|865597|865598|865599|865600|865601|865602|865603|865604|865605|865606|865607|865608|868457|919261|920282|934978|934979|946839|956006", "text": "Primary open angle glaucoma" }, { - "baseId": "22138|294184", + "upstreamId": "22138|294184", "text": "Glaucoma, normal tension, susceptibility to" }, { - "baseId": "22142|22143|226080|226081|226082|227265|291567|291568|291570|291575|291577|291581|291583|291591|291594|291597|291600|291604|291605|291609|291611|291615|291617|291621|291623|291625|291626|291629|291635|291640|291641|291646|291647|291648|291652|291653|292842|292843|292853|292854|292860|292861|292871|292894|292900|292908|292909|292918|292923|292930|292931|292934|292935|292936|292938|292940|292943|292945|292954|292956|292957|292958|292961|292977|296178|296180|296182|296200|296201|296202|296203|296205|296206|296208|296209|296210|296212|296215|296217|296218|296220|296221|296222|296225|296226|296229|296230|296238|296240|296242|296244|296249|296250|296251|296252|296254|296256|296257|296259|296268|296271|296272|296282|296283|296284|296295|296296|296297|508789|508790|889654|889655|889656|889657|889658|889659|889660|889661|889662|889663|889664|889665|889666|889667|889668|889669|889670|889671|889672|889673|889674|889675|889676|889677|889678|889679|889680|889681|889682|889683|889684|889685|889686|889687|889688|889689|889690|889691|889692|889693|889694|889695|889696|889697|889698|889699|889700|889701|889702|889703|918859", + "upstreamId": "22142|22143|226080|226081|226082|227265|291567|291568|291570|291575|291577|291581|291583|291591|291594|291597|291600|291604|291605|291609|291611|291615|291617|291621|291623|291625|291626|291629|291635|291640|291641|291646|291647|291648|291652|291653|292842|292843|292853|292854|292860|292861|292871|292894|292900|292908|292909|292918|292923|292930|292931|292934|292935|292936|292938|292940|292943|292945|292954|292956|292957|292958|292961|292977|296178|296180|296182|296200|296201|296202|296203|296205|296206|296208|296209|296210|296212|296215|296217|296218|296220|296221|296222|296225|296226|296229|296230|296238|296240|296242|296244|296249|296250|296251|296252|296254|296256|296257|296259|296268|296271|296272|296282|296283|296284|296295|296296|296297|508789|508790|889654|889655|889656|889657|889658|889659|889660|889661|889662|889663|889664|889665|889666|889667|889668|889669|889670|889671|889672|889673|889674|889675|889676|889677|889678|889679|889680|889681|889682|889683|889684|889685|889686|889687|889688|889689|889690|889691|889692|889693|889694|889695|889696|889697|889698|889699|889700|889701|889702|889703|918859", "text": "Vesicoureteral reflux 2" }, { - "baseId": "22142|22143|23410|23410|190824|216789|226070|226071|226072|226079|226081|226082|226085|226087|226092|226093|226094|237224|291575|299774|353877|491288|539162|553567|622098|622100|623434|672234|672235|672263|672264|692527|889672|983661|983662|983665|983666|983667|983668|983669|983670|983671|983736|983737|983744|983804|983805|983806", + "upstreamId": "22142|22143|23410|23410|190824|216789|226070|226071|226072|226079|226081|226082|226085|226087|226092|226093|226094|237224|291575|299774|353877|491288|539162|553567|622098|622100|623434|672234|672235|672263|672264|692527|889672|983661|983662|983665|983666|983667|983668|983669|983670|983671|983736|983737|983744|983804|983805|983806", "text": "Congenital anomalies of kidney and urinary tract" }, { - "baseId": "22144|205614", + "upstreamId": "22144|205614", "text": "Bronchiectasis with or without elevated sweat chloride 1, modifier of" }, { - "baseId": "22144|22148|22150|22154|22154|22157|22159|22159|22161|22168|22170|22178|22183|22194|22203|22205|22229|22233|22237|23217|23219|26915|26916|26916|26917|26918|26919|26920|26921|26922|26923|26924|28799|28800|28801|28803|28804|28805|33858|38878|44485|44490|44497|44499|44501|44503|44506|44529|44540|44549|44557|45365|45366|45367|45439|45440|45441|45442|46925|46928|47058|47062|47333|47335|52745|57842|57850|57854|67842|67908|67925|68006|68128|68169|68229|68274|68413|68465|68552|68579|68674|68685|68703|77006|99060|136364|136364|136365|136366|136367|136368|136370|136371|136372|136374|136464|171710|171711|171712|171713|171714|171715|238139|238140|238141|238142|238143|238144|239767|239768|239769|239770|239771|239772|239773|239988|239989|249402|249403|249404|251795|251796|251797|252638|252639|252641|252642|262405|265410|276506|276507|276729|276735|276737|277288|277302|277306|277307|277314|277377|277378|277383|277389|295901|301628|301637|301696|301812|353064|389795|390793|390798|390806|390810|390817|394831|394832|395245|395425|395442|395446|395647|395650|395831|395909|396065|396091|396092|396101|421170|432973|432976|432977|432978|432979|432980|432981|432982|432983|432984|432985|433010|433013|433016|433046|433048|442477|447225|454062|455518|455523|456419|456421|456732|456732|456736|457002|457003|457446|487129|487199|487259|489825|489830|508821|508822|514864|515144|520159|521091|521300|522343|522608|522612|522615|523064|523078|537681|537775|556485|556653|556655|556657|556935|556937|556939|558116|558118|558120|558122|559831|561559|561562|561564|561570|561582|562906|562907|563843|564137|564140|564141|564881|566053|566504|566508|609347|609348|609351|609352|609581|609658|612280|621737|626854|626855|626856|626857|626858|626859|626860|626861|626862|626863|626864|626865|633552|635794|635795|635796|635797|635798|635799|635800|635801|635802|635803|635804|635805|650522|650529|650622|650665|651225|651606|651703|685565|685566|689857|690361|745711|766136|799107|799108|799109|799110|799111|799112|799113|799114|799115|799116|799117|799118|806444|806447|806449|808571|808976|808978|815210|818814|818815|819563|819828|819829|819830|819832|822755|822756|822757|822758|822759|822760|830426|830427|833226|833227|833228|833229|833230|833231|852341|862353|862354|862355|862356|862357|862358|864982|864983|893271|893272|893273|893274|923917|924717|924718|930044|930045|930046|930047|933718|933719|933720|933721|933722|941461|941462|941463|945490|945491|955074|959840|959841|961849|961851|981219|981220|981221|981222|981223|981224|981225|981226|981227|981228|981229|981592|981593", + "upstreamId": "22144|22148|22150|22154|22154|22157|22159|22159|22161|22168|22170|22178|22183|22194|22203|22205|22229|22233|22237|23217|23219|26915|26916|26916|26917|26918|26919|26920|26921|26922|26923|26924|28799|28800|28801|28803|28804|28805|33858|38878|44485|44490|44497|44499|44501|44503|44506|44529|44540|44549|44557|45365|45366|45367|45439|45440|45441|45442|46925|46928|47058|47062|47333|47335|52745|57842|57850|57854|67842|67908|67925|68006|68128|68169|68229|68274|68413|68465|68552|68579|68674|68685|68703|77006|99060|136364|136364|136365|136366|136367|136368|136370|136371|136372|136374|136464|171710|171711|171712|171713|171714|171715|238139|238140|238141|238142|238143|238144|239767|239768|239769|239770|239771|239772|239773|239988|239989|249402|249403|249404|251795|251796|251797|252638|252639|252641|252642|262405|265410|276506|276507|276729|276735|276737|277288|277302|277306|277307|277314|277377|277378|277383|277389|295901|301628|301637|301696|301812|353064|389795|390793|390798|390806|390810|390817|394831|394832|395245|395425|395442|395446|395647|395650|395831|395909|396065|396091|396092|396101|421170|432973|432976|432977|432978|432979|432980|432981|432982|432983|432984|432985|433010|433013|433016|433046|433048|442477|447225|454062|455518|455523|456419|456421|456732|456732|456736|457002|457003|457446|487129|487199|487259|489825|489830|508821|508822|514864|515144|520159|521091|521300|522343|522608|522612|522615|523064|523078|537681|537775|556485|556653|556655|556657|556935|556937|556939|558116|558118|558120|558122|559831|561559|561562|561564|561570|561582|562906|562907|563843|564137|564140|564141|564881|566053|566504|566508|609347|609348|609351|609352|609581|609658|612280|621737|626854|626855|626856|626857|626858|626859|626860|626861|626862|626863|626864|626865|633552|635794|635795|635796|635797|635798|635799|635800|635801|635802|635803|635804|635805|650522|650529|650622|650665|651225|651606|651703|685565|685566|689857|690361|745711|766136|799107|799108|799109|799110|799111|799112|799113|799114|799115|799116|799117|799118|806444|806447|806449|808571|808976|808978|815210|818814|818815|819563|819828|819829|819830|819832|822755|822756|822757|822758|822759|822760|830426|830427|833226|833227|833228|833229|833230|833231|852341|862353|862354|862355|862356|862357|862358|864982|864983|893271|893272|893273|893274|923917|924717|924718|930044|930045|930046|930047|933718|933719|933720|933721|933722|941461|941462|941463|945490|945491|955074|959840|959841|961849|961851|981219|981220|981221|981222|981223|981224|981225|981226|981227|981228|981229|981592|981593", "text": "Hereditary pancreatitis" }, { - "baseId": "22144|22147|22148|22150|22155|22157|22159|22181|22198|22203|22221|22229|22237|22256|44529|44530|44531|44545|47338|57854|67993|68032|68093|68243|68269|68339|68353|68356|68382|68465|68673|193438|538601", + "upstreamId": "22144|22147|22148|22150|22155|22157|22159|22181|22198|22203|22221|22229|22237|22256|44529|44530|44531|44545|47338|57854|67993|68032|68093|68243|68269|68339|68353|68356|68382|68465|68673|193438|538601", "text": "ivacaftor response - Efficacy" }, { - "baseId": "22144", + "upstreamId": "22144", "text": "ivacaftor / lumacaftor response - Efficacy" }, { - "baseId": "22144", + "upstreamId": "22144", "text": "Duodenal stenosis" }, { - "baseId": "22144|46925", + "upstreamId": "22144|46925", "text": "Recurrent pancreatitis" }, { - "baseId": "22144|22145|22146|22147|22148|22148|22148|22149|22150|22150|22151|22152|22153|22154|22154|22155|22157|22157|22158|22159|22159|22161|22161|22162|22163|22166|22167|22168|22168|22173|22175|22176|22178|22178|22180|22182|22183|22183|22189|22194|22194|22197|22199|22201|22203|22204|22205|22207|22210|22211|22221|22224|22225|22226|22229|22229|22233|22233|22237|22237|22242|22247|22262|22270|22271|22279|33858|33858|44485|44485|44486|44487|44488|44495|44497|44497|44499|44500|44501|44502|44506|44510|44513|44514|44518|44521|44525|44528|44529|44530|44531|44532|44539|44554|44557|46824|47057|47058|47058|47059|47062|47062|47331|47333|47333|47335|47335|47338|47340|48115|57834|57842|57842|57843|57846|57847|57850|57850|57854|57854|57866|57870|67830|67835|67858|67864|67886|67897|67901|67905|67910|67913|67943|67985|67993|68006|68006|68020|68033|68042|68052|68071|68072|68085|68093|68108|68109|68128|68139|68148|68151|68155|68160|68171|68197|68220|68229|68243|68248|68269|68270|68272|68274|68274|68282|68295|68308|68320|68340|68348|68352|68353|68356|68358|68379|68465|68465|68472|68479|68508|68512|68513|68550|68579|68597|68614|68616|68629|68638|68641|68658|68674|68677|68679|68681|68685|68685|68693|68703|68703|68708|68722|68725|68736|68756|68764|77003|174036|186747|205614|247420|247421|247422|270918|357574|357574|357575|357582|396065|432617|432629|480439|485739|487199|487214|487243|487259|544223|544495|544513|544518|544530|587967|610320|610342|610349|679347|679348|679349|679350|679351|679352|789477|801646|801647|801648|801649", + "upstreamId": "22144|22145|22146|22147|22148|22148|22148|22149|22150|22150|22151|22152|22153|22154|22154|22155|22157|22157|22158|22159|22159|22161|22161|22162|22163|22166|22167|22168|22168|22173|22175|22176|22178|22178|22180|22182|22183|22183|22189|22194|22194|22197|22199|22201|22203|22204|22205|22207|22210|22211|22221|22224|22225|22226|22229|22229|22233|22233|22237|22237|22242|22247|22262|22270|22271|22279|33858|33858|44485|44485|44486|44487|44488|44495|44497|44497|44499|44500|44501|44502|44506|44510|44513|44514|44518|44521|44525|44528|44529|44530|44531|44532|44539|44554|44557|46824|47057|47058|47058|47059|47062|47062|47331|47333|47333|47335|47335|47338|47340|48115|57834|57842|57842|57843|57846|57847|57850|57850|57854|57854|57866|57870|67830|67835|67858|67864|67886|67897|67901|67905|67910|67913|67943|67985|67993|68006|68006|68020|68033|68042|68052|68071|68072|68085|68093|68108|68109|68128|68139|68148|68151|68155|68160|68171|68197|68220|68229|68243|68248|68269|68270|68272|68274|68274|68282|68295|68308|68320|68340|68348|68352|68353|68356|68358|68379|68465|68465|68472|68479|68508|68512|68513|68550|68579|68597|68614|68616|68629|68638|68641|68658|68674|68677|68679|68681|68685|68685|68693|68703|68703|68708|68722|68725|68736|68756|68764|77003|174036|186747|205614|247420|247421|247422|270918|357574|357574|357575|357582|396065|432617|432629|480439|485739|487199|487214|487243|487259|544223|544495|544513|544518|544530|587967|610320|610342|610349|679347|679348|679349|679350|679351|679352|789477|801646|801647|801648|801649", "text": "Congenital bilateral aplasia of vas deferens from CFTR mutation" }, { - "baseId": "22147|22148|22151|22153|22158|22165|22169|22174|22203|22204|22205|22207|22220|22221|22221|22225|22229|22232|22233|22235|22244|22250|22268|22276|22277|33858|44483|44484|44485|44488|44489|44490|44491|44494|44497|44499|44500|44503|44506|44508|44514|44516|44517|44524|44525|44528|44529|44530|44531|44533|44534|44536|44557|44558|47058|47062|47340|47455|52745|52746|57846|57850|67827|67838|67842|67858|67862|67874|67879|67897|67899|67912|67916|67929|67948|67983|67985|67993|68006|68012|68015|68023|68033|68056|68059|68063|68066|68071|68098|68116|68124|68128|68132|68133|68177|68183|68189|68197|68204|68211|68214|68216|68218|68237|68243|68243|68248|68260|68269|68271|68272|68278|68299|68306|68352|68353|68360|68376|68382|68386|68388|68405|68415|68417|68418|68425|68447|68449|68457|68469|68494|68500|68513|68563|68579|68595|68604|68614|68620|68638|68650|68677|68683|68688|68689|68698|68702|68708|68722|68742|68749|68761|87501|99055|99060|99061|99062|99063|99064|99066|174035|174036|186744|190755|190756|190757|192084|192625|195898|205614|212565|221666|239981|239986|252569|252571|273837|301669|301688|301692|301694|301695|301700|301705|304907|304908|304911|309497|309514|309534|309633|309636|309643|357585|395813|432604|432631|432635|456650|486425|487199|487264|487294|491495|522085|522450|544451|621226|635553|692112|699773|799473|799489|806296|806297|806305|806311|806312|806321|806323|806330|806333|806343|806352|806356|816411|816429|897315|897316|897317|897318|897319|897320|897321|897322|897323|897324|897325|897326|897327|897328|897329|897330|897331|897332|897333|897334|897335|897336|897337|897338|897339|897340|900306|900307|900308|961815", + "upstreamId": "22147|22148|22151|22153|22158|22165|22169|22174|22203|22204|22205|22207|22220|22221|22221|22225|22229|22232|22233|22235|22244|22250|22268|22276|22277|33858|44483|44484|44485|44488|44489|44490|44491|44494|44497|44499|44500|44503|44506|44508|44514|44516|44517|44524|44525|44528|44529|44530|44531|44533|44534|44536|44557|44558|47058|47062|47340|47455|52745|52746|57846|57850|67827|67838|67842|67858|67862|67874|67879|67897|67899|67912|67916|67929|67948|67983|67985|67993|68006|68012|68015|68023|68033|68056|68059|68063|68066|68071|68098|68116|68124|68128|68132|68133|68177|68183|68189|68197|68204|68211|68214|68216|68218|68237|68243|68243|68248|68260|68269|68271|68272|68278|68299|68306|68352|68353|68360|68376|68382|68386|68388|68405|68415|68417|68418|68425|68447|68449|68457|68469|68494|68500|68513|68563|68579|68595|68604|68614|68620|68638|68650|68677|68683|68688|68689|68698|68702|68708|68722|68742|68749|68761|87501|99055|99060|99061|99062|99063|99064|99066|174035|174036|186744|190755|190756|190757|192084|192625|195898|205614|212565|221666|239981|239986|252569|252571|273837|301669|301688|301692|301694|301695|301700|301705|304907|304908|304911|309497|309514|309534|309633|309636|309643|357585|395813|432604|432631|432635|456650|486425|487199|487264|487294|491495|522085|522450|544451|621226|635553|692112|699773|799473|799489|806296|806297|806305|806311|806312|806321|806323|806330|806333|806343|806352|806356|816411|816429|897315|897316|897317|897318|897319|897320|897321|897322|897323|897324|897325|897326|897327|897328|897329|897330|897331|897332|897333|897334|897335|897336|897337|897338|897339|897340|900306|900307|900308|961815", "text": "CFTR-related disorders" }, { - "baseId": "22148|22150|22154|22157|22159|22161|22168|22178|22183|22194|22205|22229|22233|22237|23871|23877|23878|23879|23880|23881|23882|23883|33858|44485|44497|44499|44501|44506|44557|47058|47062|47333|47335|57842|57850|57854|68006|68229|68274|68465|68579|68674|68685|68703|176011|176012|176013|176014|176154|176156|176157|230632|230633|255672|324718|324720|324721|324723|324726|324727|324730|324735|334300|334301|334307|334317|334318|334319|334320|340948|340950|340954|340958|340959|340960|340968|340972|342413|342420|342424|342427|342429|342436|396065|487199|487259|874936|874937|874938|874939|874940|874941|874942|874943|874944|874945|874946|874947|874948|874949|874950|874951|874952|874953|874954|874955|876643|876644", + "upstreamId": "22148|22150|22154|22157|22159|22161|22168|22178|22183|22194|22205|22229|22233|22237|23871|23877|23878|23879|23880|23881|23882|23883|33858|44485|44497|44499|44501|44506|44557|47058|47062|47333|47335|57842|57850|57854|68006|68229|68274|68465|68579|68674|68685|68703|176011|176012|176013|176014|176154|176156|176157|230632|230633|255672|324718|324720|324721|324723|324726|324727|324730|324735|334300|334301|334307|334317|334318|334319|334320|340948|340950|340954|340958|340959|340960|340968|340972|342413|342420|342424|342427|342429|342436|396065|487199|487259|874936|874937|874938|874939|874940|874941|874942|874943|874944|874945|874946|874947|874948|874949|874950|874951|874952|874953|874954|874955|876643|876644", "text": "Bronchiectasis with or without elevated sweat chloride 1" }, { - "baseId": "22154|22168|362498", + "upstreamId": "22154|22168|362498", "text": "ataluren response - Efficacy" }, { - "baseId": "22204|44499", + "upstreamId": "22204|44499", "text": "Chronic sinusitis" }, { - "baseId": "22204|44499|44503|68754", + "upstreamId": "22204|44499|44503|68754", "text": "Lung disease, non-specific" }, { - "baseId": "22231", + "upstreamId": "22231", "text": "Ivacaftor response" }, { - "baseId": "22262", + "upstreamId": "22262", "text": "Sweat chloride elevation without cystic fibrosis" }, { - "baseId": "22268", + "upstreamId": "22268", "text": "Pancreatitis, idiopathic, susceptibility to" }, { - "baseId": "22268", + "upstreamId": "22268", "text": "Hypertrypsinemia, neonatal, susceptibility to" }, { - "baseId": "22268|52745", + "upstreamId": "22268|52745", "text": "Pancreatitis" }, { - "baseId": "22280|22280|22281|22281|22282|22283|50212|50214|50215|50215|138933|138934|151597|152618|171051|172491|181595|181596|181598|181599|181600|181600|181603|187698|195315|221084|232167|232168|238107|238158|238159|238160|238161|238162|238162|238163|238164|238164|238165|238166|238167|238168|238169|238169|277948|353066|358695|358695|358696|358697|358697|359203|390713|390714|390719|390847|390853|390856|390861|390863|390864|390864|390865|390866|390867|390868|390869|390871|390872|390873|390874|390874|390875|390879|390881|390883|390884|390885|390886|390887|390888|390889|390902|420733|420734|420736|432491|446908|446909|446921|446924|447261|447263|447265|447326|447330|447331|447335|447336|447378|447380|447384|447384|447388|447403|447405|447444|447448|447449|447454|447455|447458|472267|472269|472270|472275|514871|515238|515247|515248|515249|515251|515254|515255|515256|515266|515269|515271|515272|515275|515277|515343|515347|550200|556668|556670|556672|556672|556674|556676|556678|556680|556727|556729|556731|556863|556869|556870|557016|557018|557020|557022|557024|557026|557028|558204|558206|558208|558210|558212|558214|558216|627029|627030|627031|627032|627033|627034|627035|627036|627037|627038|627040|627041|627042|627043|627044|627045|627046|627047|627048|627049|627050|627051|627052|627053|627054|650532|650551|650557|650563|650642|683293|690403|690404|690405|690406|777040|780365|780366|787026|806455|806457|815211|818848|818851|818852|818853|818854|818855|818856|818857|818858|818859|818860|822945|822946|822947|822948|822949|822950|822951|822952|822953|822954|822955|822956|822957|822958|822959|822960|822961|822962|850742|851192|921722|921723|921724|921725|921726|930124|930125|930126|930127|930128|930129|930130|930131|939780|941549|941550|941551|941552|952126|952127|952128|952129|952130|952131|959527|959528|960411|966354", + "upstreamId": "22280|22280|22281|22281|22282|22283|50212|50214|50215|50215|138933|138934|151597|152618|171051|172491|181595|181596|181598|181599|181600|181600|181603|187698|195315|221084|232167|232168|238107|238158|238159|238160|238161|238162|238162|238163|238164|238164|238165|238166|238167|238168|238169|238169|277948|353066|358695|358695|358696|358697|358697|359203|390713|390714|390719|390847|390853|390856|390861|390863|390864|390864|390865|390866|390867|390868|390869|390871|390872|390873|390874|390874|390875|390879|390881|390883|390884|390885|390886|390887|390888|390889|390902|420733|420734|420736|432491|446908|446909|446921|446924|447261|447263|447265|447326|447330|447331|447335|447336|447378|447380|447384|447384|447388|447403|447405|447444|447448|447449|447454|447455|447458|472267|472269|472270|472275|514871|515238|515247|515248|515249|515251|515254|515255|515256|515266|515269|515271|515272|515275|515277|515343|515347|550200|556668|556670|556672|556672|556674|556676|556678|556680|556727|556729|556731|556863|556869|556870|557016|557018|557020|557022|557024|557026|557028|558204|558206|558208|558210|558212|558214|558216|627029|627030|627031|627032|627033|627034|627035|627036|627037|627038|627040|627041|627042|627043|627044|627045|627046|627047|627048|627049|627050|627051|627052|627053|627054|650532|650551|650557|650563|650642|683293|690403|690404|690405|690406|777040|780365|780366|787026|806455|806457|815211|818848|818851|818852|818853|818854|818855|818856|818857|818858|818859|818860|822945|822946|822947|822948|822949|822950|822951|822952|822953|822954|822955|822956|822957|822958|822959|822960|822961|822962|850742|851192|921722|921723|921724|921725|921726|930124|930125|930126|930127|930128|930129|930130|930131|939780|941549|941550|941551|941552|952126|952127|952128|952129|952130|952131|959527|959528|960411|966354", "text": "Paragangliomas 3" }, { - "baseId": "22283|152315|181616|187697|187698|187699", + "upstreamId": "22283|152315|181616|187697|187698|187699", "text": "Carney triad" }, { - "baseId": "22284|22285|22286|94533|240848|311240|311253|316666|322670|322671|322682|322683|322688|322695|322696|323397|323403|540530|685276|866348|866349|866350|866351|866352|868512|868513|961957", + "upstreamId": "22284|22285|22286|94533|240848|311240|311253|316666|322670|322671|322682|322683|322688|322695|322696|323397|323403|540530|685276|866348|866349|866350|866351|866352|868512|868513|961957", "text": "Diamond-Blackfan anemia 3" }, { - "baseId": "22287", + "upstreamId": "22287", "text": "BLEOMYCIN HYDROLASE POLYMORPHISM" }, { - "baseId": "22288|22289|22290|22291|22292|22293|22294|22295|22296|22298|22299|22300|538459|590466|590467|590468|590469|612133|679796|904912|975870|983466", + "upstreamId": "22288|22289|22290|22291|22292|22293|22294|22295|22296|22298|22299|22300|538459|590466|590467|590468|590469|612133|679796|904912|975870|983466", "text": "Distichiasis-lymphedema syndrome" }, { - "baseId": "22297", + "upstreamId": "22297", "text": "Lymphedema-distichiasis syndrome with renal disease and diabetes mellitus" }, { - "baseId": "22301|22302|22303|22304|22305|22306|22308|22310|22312|22313|28736|131915|131916|192408|192844|193434|195693|214536|214537|217180|217181|217182|256685|256686|256687|256688|256689|256690|256691|256692|256693|256694|256695|256696|256698|256699|265376|266813|271041|271122|272947|273423|273794|275208|275489|331906|331907|331910|331916|331917|331921|331922|331924|331925|331935|331936|331944|331945|331946|331948|331949|342146|342149|342150|342152|342157|342161|342163|342165|342167|347495|347497|347498|347499|347508|347511|347515|347520|347524|347525|347533|347535|347538|347539|348880|348881|348883|348885|348889|348890|348896|348897|348899|348902|348912|348914|348915|348918|348919|369991|376934|376934|377123|379090|379097|489849|490899|492019|492177|584224|584239|585559|585567|586303|586666|586682|587741|620625|620900|620901|682855|790753|790754|790755|790756|790757|790758|791876|791877|791878|792813|792813|879471|879472|879473|879474|879475|879476|879477|879478|879479|879480|879481|879482|879483|879484|879485|879486|879487|879488|879489|879490|879491|879492|879493|879494|879495|879496|879497|879498|879499|879500|879501|879502|879503|879504|879505|879506|879507|879508|879509|879510|879511|879512|879513|879514|879515|879516|880667|880668|880669", + "upstreamId": "22301|22302|22303|22304|22305|22306|22308|22310|22312|22313|28736|131915|131916|192408|192844|193434|195693|214536|214537|217180|217181|217182|256685|256686|256687|256688|256689|256690|256691|256692|256693|256694|256695|256696|256698|256699|265376|266813|271041|271122|272947|273423|273794|275208|275489|331906|331907|331910|331916|331917|331921|331922|331924|331925|331935|331936|331944|331945|331946|331948|331949|342146|342149|342150|342152|342157|342161|342163|342165|342167|347495|347497|347498|347499|347508|347511|347515|347520|347524|347525|347533|347535|347538|347539|348880|348881|348883|348885|348889|348890|348896|348897|348899|348902|348912|348914|348915|348918|348919|369991|376934|376934|377123|379090|379097|489849|490899|492019|492177|584224|584239|585559|585567|586303|586666|586682|587741|620625|620900|620901|682855|790753|790754|790755|790756|790757|790758|791876|791877|791878|792813|792813|879471|879472|879473|879474|879475|879476|879477|879478|879479|879480|879481|879482|879483|879484|879485|879486|879487|879488|879489|879490|879491|879492|879493|879494|879495|879496|879497|879498|879499|879500|879501|879502|879503|879504|879505|879506|879507|879508|879509|879510|879511|879512|879513|879514|879515|879516|880667|880668|880669", "text": "Cholestasis, progressive familial intrahepatic 1" }, { - "baseId": "22306|22307|22309|22310|376934|489849", + "upstreamId": "22306|22307|22309|22310|376934|489849", "text": "Cholestasis, benign recurrent intrahepatic 1" }, { - "baseId": "22310|22311|376934|489849|792813", + "upstreamId": "22310|22311|376934|489849|792813", "text": "Cholestasis of pregnancy" }, { - "baseId": "22313|961887", + "upstreamId": "22313|961887", "text": "Familial intrahepatic cholestasis type 1" }, { - "baseId": "22314|141562|141563|141565|211711|211713|211715|211717|324910|324911|324922|324925|324929|324931|334519|334522|334524|334530|334534|334538|334559|341082|341084|341086|341093|341100|341101|341108|341112|342622|342623|342627|342629|342631|342632|359087|359088|375042|413437|481497|505551|875059|875060|875061|875062|875063|875064|875065|875066|875067|875068|875069|875070|875071|875072|876649", + "upstreamId": "22314|141562|141563|141565|211711|211713|211715|211717|324910|324911|324922|324925|324929|324931|334519|334522|334524|334530|334534|334538|334559|341082|341084|341086|341093|341100|341101|341108|341112|342622|342623|342627|342629|342631|342632|359087|359088|375042|413437|481497|505551|875059|875060|875061|875062|875063|875064|875065|875066|875067|875068|875069|875070|875071|875072|876649", "text": "Combined oxidative phosphorylation deficiency 4" }, { - "baseId": "22315|22318|22319|22320|22321|22324|22326|137717|137718|137719|137720|140833|140834|169456|169457|169458|169459|169461|169464|169468|169470|169471|169472|192264|213426|213427|215729|222761|232067|232069|243082|245107|245108|245112|245114|245115|245116|245120|245121|256745|256746|256747|272211|332387|332392|332399|332401|332403|332406|332407|332409|332411|332413|332414|332418|332419|332430|342541|342541|342542|342549|342568|342570|342577|347936|347937|347944|347947|347949|347950|347954|347961|347964|347965|349249|349250|349252|349254|349257|349258|349262|349264|349266|349268|349273|349274|349276|361497|376113|377055|377223|377232|379186|402871|403339|403340|403343|403344|403369|410418|442037|442038|442040|442041|446021|468210|468215|468223|468225|468230|469096|469097|469101|469506|469513|469953|469962|469966|469970|469976|490018|506425|506445|506453|506454|506647|507078|507472|532411|532417|532426|532427|532428|532433|532435|532476|532477|532480|532486|532533|532542|532543|532546|532897|532902|553398|570345|570350|570353|570354|570359|570365|570366|570372|572055|572058|572059|572063|572064|572066|572072|572694|572746|572748|572750|572751|574808|574810|574812|574814|574816|574818|574820|577700|647450|647451|647452|647453|647454|647455|647456|647457|647458|647459|647460|647461|647462|647463|647464|647465|647466|647467|647468|647469|647470|647471|647472|647473|647474|647475|647476|647477|647478|647479|647480|647481|647482|652980|653100|653130|684769|684770|684771|688943|688944|688946|688947|688948|690198|690199|694300|694301|694302|694304|694305|695799|704729|756632|760733|772302|776819|778483|785998|793721|804747|821205|821206|821207|821208|821209|847066|847067|847068|847069|847070|847071|847072|847073|847074|847075|847076|847077|847078|847079|847080|847081|847082|847083|847084|847085|847086|847087|847088|847089|847090|847091|851783|851785|852830|852832|852944|879803|879804|879805|879806|879807|879808|879809|879810|879811|879812|879813|879814|879815|879816|879817|879818|879819|879820|879821|879822|879823|880687|919815|928786|928787|928788|928789|928790|928791|928792|928793|928794|938512|938513|938514|938515|938516|938517|938518|938519|938520|938521|938522|940462|950604|950605|950606|950607|950608|950609|950610|950611|950612|950613|958510|958511|960274", + "upstreamId": "22315|22318|22319|22320|22321|22324|22326|137717|137718|137719|137720|140833|140834|169456|169457|169458|169459|169461|169464|169468|169470|169471|169472|192264|213426|213427|215729|222761|232067|232069|243082|245107|245108|245112|245114|245115|245116|245120|245121|256745|256746|256747|272211|332387|332392|332399|332401|332403|332406|332407|332409|332411|332413|332414|332418|332419|332430|342541|342541|342542|342549|342568|342570|342577|347936|347937|347944|347947|347949|347950|347954|347961|347964|347965|349249|349250|349252|349254|349257|349258|349262|349264|349266|349268|349273|349274|349276|361497|376113|377055|377223|377232|379186|402871|403339|403340|403343|403344|403369|410418|442037|442038|442040|442041|446021|468210|468215|468223|468225|468230|469096|469097|469101|469506|469513|469953|469962|469966|469970|469976|490018|506425|506445|506453|506454|506647|507078|507472|532411|532417|532426|532427|532428|532433|532435|532476|532477|532480|532486|532533|532542|532543|532546|532897|532902|553398|570345|570350|570353|570354|570359|570365|570366|570372|572055|572058|572059|572063|572064|572066|572072|572694|572746|572748|572750|572751|574808|574810|574812|574814|574816|574818|574820|577700|647450|647451|647452|647453|647454|647455|647456|647457|647458|647459|647460|647461|647462|647463|647464|647465|647466|647467|647468|647469|647470|647471|647472|647473|647474|647475|647476|647477|647478|647479|647480|647481|647482|652980|653100|653130|684769|684770|684771|688943|688944|688946|688947|688948|690198|690199|694300|694301|694302|694304|694305|695799|704729|756632|760733|772302|776819|778483|785998|793721|804747|821205|821206|821207|821208|821209|847066|847067|847068|847069|847070|847071|847072|847073|847074|847075|847076|847077|847078|847079|847080|847081|847082|847083|847084|847085|847086|847087|847088|847089|847090|847091|851783|851785|852830|852832|852944|879803|879804|879805|879806|879807|879808|879809|879810|879811|879812|879813|879814|879815|879816|879817|879818|879819|879820|879821|879822|879823|880687|919815|928786|928787|928788|928789|928790|928791|928792|928793|928794|938512|938513|938514|938515|938516|938517|938518|938519|938520|938521|938522|940462|950604|950605|950606|950607|950608|950609|950610|950611|950612|950613|958510|958511|960274", "text": "Charcot-Marie-Tooth disease, dominant intermediate B" }, { - "baseId": "22316|22317", + "upstreamId": "22316|22317", "text": "Charcot-Marie-Tooth disease, dominant intermediate b, with neutropenia" }, { - "baseId": "22318|22319|22320|22321|22324|29192|137717|137718|140833|140834|169456|169457|169459|169461|169464|169468|169470|169471|169472|192264|222761|243082|245114|245115|256745|256746|256747|332387|332392|332399|332401|332403|332406|332407|332409|332411|332413|332414|332418|332419|332430|342541|342541|342542|342549|342568|342570|342577|347936|347937|347944|347947|347949|347950|347954|347961|347964|347965|349249|349250|349252|349254|349257|349258|349262|349264|349266|349268|349273|349274|349276|403344|462747|532411|532480|552214|553398|610683|619849|622489|647454|647469|682853|690199|694300|778483|795486|858791|879803|879804|879805|879806|879807|879808|879809|879810|879811|879812|879813|879814|879815|879816|879817|879818|879819|879820|879821|879822|879823|880687|918863|918864|919815|919816|920393", + "upstreamId": "22318|22319|22320|22321|22324|29192|137717|137718|140833|140834|169456|169457|169459|169461|169464|169468|169470|169471|169472|192264|222761|243082|245114|245115|256745|256746|256747|332387|332392|332399|332401|332403|332406|332407|332409|332411|332413|332414|332418|332419|332430|342541|342541|342542|342549|342568|342570|342577|347936|347937|347944|347947|347949|347950|347954|347961|347964|347965|349249|349250|349252|349254|349257|349258|349262|349264|349266|349268|349273|349274|349276|403344|462747|532411|532480|552214|553398|610683|619849|622489|647454|647469|682853|690199|694300|778483|795486|858791|879803|879804|879805|879806|879807|879808|879809|879810|879811|879812|879813|879814|879815|879816|879817|879818|879819|879820|879821|879822|879823|880687|918863|918864|919815|919816|920393", "text": "Myopathy, centronuclear, 1" }, { - "baseId": "22318|22319|22320|22321|22324|169457|169458|169460|169461|169465|169466|169467|169469", + "upstreamId": "22318|22319|22320|22321|22324|169457|169458|169460|169461|169465|169466|169467|169469", "text": "Myopathy, centronuclear" }, { - "baseId": "22322|22323|22326", + "upstreamId": "22322|22323|22326", "text": "Charcot-Marie-Tooth disease, type 2M" }, { - "baseId": "22324|22325|26092|26093|26094|26095|26096|26097|26098|26099|26100|26101|98576|98584|98585|169954|169955|169956|169957|169959|169960|169961|169962|169963|169964|169966|169967|169968|169969|169970|169971|169972|169973|169974|169975|169976|169977|169978|169979|169980|169981|169982|169983|169984|169985|169986|169987|169988|169989|169990|169991|169992|169993|169994|169995|169996|169998|169999|170000|170001|170002|170003|170004|170005|170006|170007|170008|170010|170011|170012|170013|170014|170015|170016|170018|170019|170020|170021|170022|170023|170024|170025|170026|170027|170028|170029|170030|170031|170032|170033|170034|170035|170036|170037|170039|170040|170041|170042|170043|170044|170045|170046|170047|170048|170049|170050|170051|170052|170053|170054|170055|170056|170057|170058|170059|170060|170061|170062|170063|170064|170065|170066|170067|170069|170070|170071|170072|170073|170074|208896|208897|208899|208900|208901|208902|208903|208904|208905|208906|208907|208908|208909|208910|208911|208912|269331|353913|378938|430678|430679|430680|430681|470529|470530|471343|472074|472075|492309|507778|508352|534574|534575|534643|534847|535060|535062|572060|573616|573617|573626|574333|575276|575345|621917|621918|621919|621920|649746|649747|649748|649749|649750|649751|653281|653346|653728|653776|689370|694805|706131|717675|729453|743176|743178|743179|758325|758327|773833|773834|778700|786723|786726|786728|788367|792134|792135|821481|821482|821483|821484|849709|849710|849711|849712|849713|849714|849715|849716|851940|919980|920438|929591|929592|929593|929594|939462|951633|959180|959181|959182|960975|964700|972397|972398|972399|972400|972401|972402|972403|972404|980089", + "upstreamId": "22324|22325|26092|26093|26094|26095|26096|26097|26098|26099|26100|26101|98576|98584|98585|169954|169955|169956|169957|169959|169960|169961|169962|169963|169964|169966|169967|169968|169969|169970|169971|169972|169973|169974|169975|169976|169977|169978|169979|169980|169981|169982|169983|169984|169985|169986|169987|169988|169989|169990|169991|169992|169993|169994|169995|169996|169998|169999|170000|170001|170002|170003|170004|170005|170006|170007|170008|170010|170011|170012|170013|170014|170015|170016|170018|170019|170020|170021|170022|170023|170024|170025|170026|170027|170028|170029|170030|170031|170032|170033|170034|170035|170036|170037|170039|170040|170041|170042|170043|170044|170045|170046|170047|170048|170049|170050|170051|170052|170053|170054|170055|170056|170057|170058|170059|170060|170061|170062|170063|170064|170065|170066|170067|170069|170070|170071|170072|170073|170074|208896|208897|208899|208900|208901|208902|208903|208904|208905|208906|208907|208908|208909|208910|208911|208912|269331|353913|378938|430678|430679|430680|430681|470529|470530|471343|472074|472075|492309|507778|508352|534574|534575|534643|534847|535060|535062|572060|573616|573617|573626|574333|575276|575345|621917|621918|621919|621920|649746|649747|649748|649749|649750|649751|653281|653346|653728|653776|689370|694805|706131|717675|729453|743176|743178|743179|758325|758327|773833|773834|778700|786723|786726|786728|788367|792134|792135|821481|821482|821483|821484|849709|849710|849711|849712|849713|849714|849715|849716|851940|919980|920438|929591|929592|929593|929594|939462|951633|959180|959181|959182|960975|964700|972397|972398|972399|972400|972401|972402|972403|972404|980089", "text": "Severe X-linked myotubular myopathy" }, { - "baseId": "22327|31962|32992|980456", + "upstreamId": "22327|31962|32992|980456", "text": "Hepatitis b virus, susceptibility to" }, { - "baseId": "22328|22328|22329|22330|22331|22332|22335|22336|22336|22337|22338|22340|150118|150119|150119|150120|195631|254361|254363|254364|315448|315452|315457|315458|315458|315459|315460|315464|315465|315469|322293|322293|322295|322295|322314|322316|322327|322329|328430|328430|328442|328446|328450|328450|328460|328461|329760|329761|329762|329771|329771|390098|461487|461487|461489|461499|462344|526561|526565|526573|539185|564930|567569|571047|612294|640490|640491|640492|640493|640494|640494|640495|640496|640497|640498|640499|640500|640500|640501|640502|640503|652353|678052|724785|753012|768826|768827|775763|820420|839153|839154|839155|839156|839157|839158|839159|839160|839161|868924|868925|868926|868927|868927|868928|868929|868930|868931|868932|868933|868934|868935|868936|872150|872151|926413|935848|935849|935850|935851|947729", + "upstreamId": "22328|22328|22329|22330|22331|22332|22335|22336|22336|22337|22338|22340|150118|150119|150119|150120|195631|254361|254363|254364|315448|315452|315457|315458|315458|315459|315460|315464|315465|315469|322293|322293|322295|322295|322314|322316|322327|322329|328430|328430|328442|328446|328450|328450|328460|328461|329760|329761|329762|329771|329771|390098|461487|461487|461489|461499|462344|526561|526565|526573|539185|564930|567569|571047|612294|640490|640491|640492|640493|640494|640494|640495|640496|640497|640498|640499|640500|640500|640501|640502|640503|652353|678052|724785|753012|768826|768827|775763|820420|839153|839154|839155|839156|839157|839158|839159|839160|839161|868924|868925|868926|868927|868927|868928|868929|868930|868931|868932|868933|868934|868935|868936|872150|872151|926413|935848|935849|935850|935851|947729", "text": "Papillon-Lef\u00e8vre syndrome" }, { - "baseId": "22328|22336|22339|22340|150119|150120|315458|322293|322295|328430|328450|329771|390098|461487|461489|461499|462344|526561|526565|526573|539042|539185|564930|567569|571047|640490|640491|640492|640493|640494|640495|640496|640497|640498|640499|640500|640501|640502|640503|652353|724785|753012|768826|768827|775763|820420|839153|839154|839155|839156|839157|839158|839159|839160|839161|868927|926413|935848|935849|935850|935851|947729", + "upstreamId": "22328|22336|22339|22340|150119|150120|315458|322293|322295|328430|328450|329771|390098|461487|461489|461499|462344|526561|526565|526573|539042|539185|564930|567569|571047|640490|640491|640492|640493|640494|640495|640496|640497|640498|640499|640500|640501|640502|640503|652353|724785|753012|768826|768827|775763|820420|839153|839154|839155|839156|839157|839158|839159|839160|839161|868927|926413|935848|935849|935850|935851|947729", "text": "Periodontitis, aggressive, 1" }, { - "baseId": "22328|22333|22336|150119|195631|254361|254363|254364|315448|315452|315457|315458|315458|315459|315460|315464|315465|315469|322293|322293|322295|322295|322314|322316|322327|322329|328430|328430|328442|328446|328450|328450|328460|328461|329760|329761|329762|329771|329771|390098|461487|461487|461489|461499|462344|526561|526565|526573|539185|564930|567569|571047|640490|640491|640492|640493|640494|640494|640495|640496|640497|640498|640499|640500|640500|640501|640502|640503|652353|724785|753012|768826|768827|775763|820420|839153|839154|839155|839156|839157|839158|839159|839160|839161|868924|868925|868926|868927|868927|868928|868929|868930|868931|868932|868933|868934|868936|872150|872151|926413|935848|935849|935850|935851|947729", + "upstreamId": "22328|22333|22336|150119|195631|254361|254363|254364|315448|315452|315457|315458|315458|315459|315460|315464|315465|315469|322293|322293|322295|322295|322314|322316|322327|322329|328430|328430|328442|328446|328450|328450|328460|328461|329760|329761|329762|329771|329771|390098|461487|461487|461489|461499|462344|526561|526565|526573|539185|564930|567569|571047|640490|640491|640492|640493|640494|640494|640495|640496|640497|640498|640499|640500|640500|640501|640502|640503|652353|724785|753012|768826|768827|775763|820420|839153|839154|839155|839156|839157|839158|839159|839160|839161|868924|868925|868926|868927|868927|868928|868929|868930|868931|868932|868933|868934|868936|872150|872151|926413|935848|935849|935850|935851|947729", "text": "Haim-Munk syndrome" }, { - "baseId": "22341|34151|70560|70561|70563|134583|134584|141152|141153|141154|141155|141157|195295|202849|202852|202853|202854|202858|202859|202860|202861|202863|227722|227725|227728|227729|322635|322636|332157|332160|332161|332163|332168|339114|339115|339119|339120|340648|340649|340653|340654|340655|340656|374091|376452|464297|464299|464823|464832|464833|490059|504786|528901|529253|529255|529261|539059|567092|567094|568572|568859|569422|573319|573320|580005|614395|643282|643283|643284|643285|643286|643287|652567|688439|690106|820707|842414|842415|842416|842417|842418|842419|842420|842421|842422|842423|842424|842425|842426|852041|873656|873657|873658|873659|873660|873661|873662|873663|873664|873665|873666|873667|927342|936954|936955|941090|948908|948909|948910", + "upstreamId": "22341|34151|70560|70561|70563|134583|134584|141152|141153|141154|141155|141157|195295|202849|202852|202853|202854|202858|202859|202860|202861|202863|227722|227725|227728|227729|322635|322636|332157|332160|332161|332163|332168|339114|339115|339119|339120|340648|340649|340653|340654|340655|340656|374091|376452|464297|464299|464823|464832|464833|490059|504786|528901|529253|529255|529261|539059|567092|567094|568572|568859|569422|573319|573320|580005|614395|643282|643283|643284|643285|643286|643287|652567|688439|690106|820707|842414|842415|842416|842417|842418|842419|842420|842421|842422|842423|842424|842425|842426|852041|873656|873657|873658|873659|873660|873661|873662|873663|873664|873665|873666|873667|927342|936954|936955|941090|948908|948909|948910", "text": "Arginine:glycine amidinotransferase deficiency" }, { - "baseId": "22342", + "upstreamId": "22342", "text": "Narcolepsy 1" }, { - "baseId": "22343|22344|22345|22350|22351|22355|22356|168798|168799|168800|168801|168802|168803|168805|168806|168807|168808|168809|168810|168811|168812|190451|193554|195336|195337|196255|196256|265666|265732|266997|268846|268870|271564|271928|272374|273661|273667|274924|308858|308859|308866|308867|308871|308873|308874|308875|308887|308888|308892|308893|308898|313523|313540|313545|313549|313550|313553|313554|313555|313565|313566|313571|313573|319299|319314|319319|319327|319343|319346|319349|319350|319351|319353|319357|319358|319359|319924|319932|319934|319938|319939|319956|319958|491333|737233|902466|902467|902468|902469|902470|902471|902472|902473|902474|902475|902476|902477|902478|902479|902480|902481|902482|902483|902484|902485|902486|902487|902488|902489|902490|902491|902492|902493|902494|902495|902496|902497|902498|902499|902500|902501|902502|902503|903443", + "upstreamId": "22343|22344|22345|22350|22351|22355|22356|168798|168799|168800|168801|168802|168803|168805|168806|168807|168808|168809|168810|168811|168812|190451|193554|195336|195337|196255|196256|265666|265732|266997|268846|268870|271564|271928|272374|273661|273667|274924|308858|308859|308866|308867|308871|308873|308874|308875|308887|308888|308892|308893|308898|313523|313540|313545|313549|313550|313553|313554|313555|313565|313566|313571|313573|319299|319314|319319|319327|319343|319346|319349|319350|319351|319353|319357|319358|319359|319924|319932|319934|319938|319939|319956|319958|491333|737233|902466|902467|902468|902469|902470|902471|902472|902473|902474|902475|902476|902477|902478|902479|902480|902481|902482|902483|902484|902485|902486|902487|902488|902489|902490|902491|902492|902493|902494|902495|902496|902497|902498|902499|902500|902501|902502|902503|903443", "text": "Brachydactyly type B1" }, { - "baseId": "22346|22347|22348|22349|22352|22353|22354|22357|168798|168799|168800|168801|168802|168803|168805|168806|168807|168808|168809|168810|168811|168812|190451|193554|195336|195337|196255|196256|196257|265666|265732|266997|268846|268870|271564|271928|272374|273661|273667|274924|308858|308859|308866|308867|308871|308873|308874|308875|308887|308888|308892|308893|308898|313523|313540|313545|313549|313550|313553|313554|313555|313565|313566|313571|313573|319299|319314|319319|319327|319343|319346|319349|319350|319351|319353|319357|319358|319359|319924|319932|319934|319938|319939|319956|319958|491333|615893|615894|737233|902466|902467|902468|902469|902470|902471|902472|902473|902474|902475|902476|902477|902478|902479|902480|902481|902482|902483|902484|902485|902486|902487|902488|902489|902490|902491|902492|902493|902494|902495|902496|902497|902498|902499|902500|902501|902502|902503|903443|973109", + "upstreamId": "22346|22347|22348|22349|22352|22353|22354|22357|168798|168799|168800|168801|168802|168803|168805|168806|168807|168808|168809|168810|168811|168812|190451|193554|195336|195337|196255|196256|196257|265666|265732|266997|268846|268870|271564|271928|272374|273661|273667|274924|308858|308859|308866|308867|308871|308873|308874|308875|308887|308888|308892|308893|308898|313523|313540|313545|313549|313550|313553|313554|313555|313565|313566|313571|313573|319299|319314|319319|319327|319343|319346|319349|319350|319351|319353|319357|319358|319359|319924|319932|319934|319938|319939|319956|319958|491333|615893|615894|737233|902466|902467|902468|902469|902470|902471|902472|902473|902474|902475|902476|902477|902478|902479|902480|902481|902482|902483|902484|902485|902486|902487|902488|902489|902490|902491|902492|902493|902494|902495|902496|902497|902498|902499|902500|902501|902502|902503|903443|973109", "text": "Robinow syndrome, autosomal recessive" }, { - "baseId": "22350", + "upstreamId": "22350", "text": "Robinow syndrome, autosomal recessive, with aplasia/hypoplasia of phalanges and metacarpals/metatarsals" }, { - "baseId": "22357", + "upstreamId": "22357", "text": "Robinow syndrome, autosomal recessive, with brachy-syn-polydactyly" }, { - "baseId": "22361|22362|22363|22364|22365|22366|22367|45610|45611|439823|439824|439825|439826|610682|971576", + "upstreamId": "22361|22362|22363|22364|22365|22366|22367|45610|45611|439823|439824|439825|439826|610682|971576", "text": "Pulmonary fibrosis and/or bone marrow failure, telomere-related, 2" }, { - "baseId": "22366|27768|27769|27770|27772|27772|27775|27775|27776|27777|28238|28239|28248|38854|38855|38856|45601|45602|45603|45604|45605|45608|47705|47707|47713|47714|47717|47717|47718|47724|47727|47728|47728|47729|47730|47730|47731|47733|51186|51188|173541|173543|173678|173679|173681|174394|174395|174533|174534|207165|207165|213930|213931|213932|214163|214164|214165|214166|227321|227598|229234|229235|229237|229238|229239|229240|239624|239625|239626|239627|239628|239629|239630|239631|239633|239634|239635|239638|239639|239640|239641|239643|239643|239644|239645|239647|239663|239664|239665|239666|239667|239668|239669|239669|239670|239671|239672|239673|239674|239675|239676|239677|251613|251614|251639|251640|251666|259808|263518|273563|295110|295271|296915|300507|300508|300731|300775|300921|304867|304873|304874|304876|304877|304883|304888|304889|308589|308593|308599|308600|308601|313748|313749|313768|313769|313772|313774|313788|313801|313802|313803|313804|313805|313806|313861|313864|313868|313869|313878|353833|394497|394503|394506|394522|394531|394536|394537|394544|394546|394554|394556|394557|394560|394582|394584|394587|394588|394589|394591|394595|394599|394629|394631|394635|394638|394641|394651|394654|394657|394720|394731|394739|394742|394746|394755|394757|394761|394762|394764|394767|394768|394799|394802|394807|394808|394810|394815|394817|394824|394841|394848|394851|395006|395007|395038|395042|395044|395058|395060|395064|395070|395130|395132|395135|395138|395143|395145|395152|395153|395173|395184|406619|428333|428334|428336|428339|428340|428341|428347|439828|439829|439830|454152|454153|454156|454158|454179|454181|454186|454187|454195|454222|454224|454226|454234|454238|454241|454244|454245|454295|454303|454305|454306|454309|454310|454311|454312|454314|454320|454321|454323|454324|454328|454330|454333|454369|454370|454376|454378|454384|454388|454390|454392|454393|454396|454397|454401|454445|454447|454456|454457|454459|454460|454467|454472|454632|454634|454636|454638|454645|454666|454668|454669|454671|454710|454717|454718|454721|454722|454726|454728|454737|454793|454813|454816|454818|454834|454837|454946|454952|454960|454963|454966|454984|455002|455003|455010|455015|455016|455025|455035|455105|455106|455106|455107|455111|455112|496352|520429|520430|520431|520433|520439|520443|520449|520477|520478|520483|520494|520500|520506|520565|520571|520574|520579|520580|520596|520599|520600|520602|520602|520605|520606|520608|520625|520627|520654|520656|520659|520660|520663|520666|520672|520674|520676|520677|520678|520702|520712|520713|520715|520720|520726|520733|520738|520824|520826|520828|520832|520833|520842|520845|520848|520850|520851|520852|520853|520855|520856|520859|520862|520868|520877|520882|520886|520888|520889|520891|520894|520895|520915|520917|520920|520925|520945|520952|520953|520979|520980|520983|520985|520986|520987|520989|520990|520991|520994|520995|520996|520997|520999|521000|521003|521005|521057|521060|521062|521064|521065|521078|521079|521081|536677|537458|550254|550255|550256|550257|550258|550259|550260|550261|550262|550263|559956|559973|559981|559983|560001|560003|560005|560007|560027|560029|560031|560033|560035|560037|560039|560041|560043|560045|560047|560049|560051|560053|560086|560088|560098|560108|560110|560112|560136|560138|560140|560142|560144|560146|560148|560150|562291|562567|562569|562570|562572|562581|562585|562590|562599|562601|562603|562605|562607|562646|562647|562649|562655|562658|562663|562665|562667|564432|564438|564439|564457|564491|564492|564494|564498|564508|564514|610609|632876|632877|632878|632879|632880|632881|632882|632883|632884|632885|632886|632887|632888|632889|632890|632891|632892|632893|632908|632909|632910|632911|632912|632944|632945|632946|632947|632948|632949|632950|632951|632952|632953|632954|632955|632956|632957|632958|632959|632960|632961|632962|632963|632964|632965|632966|632967|633006|633007|633008|633009|633010|633011|633012|633013|633014|633015|633016|633017|633018|633019|633020|633021|633022|633023|633024|633025|633026|633027|633028|633029|633030|633031|633032|633033|633034|633035|633036|633037|633038|633039|633040|633041|633042|633043|633044|633045|633046|633047|633048|651189|651191|651192|651194|651204|651217|651245|651255|651264|651306|651307|651341|683654|683655|683659|683660|683661|683662|685165|685168|685169|686573|686574|686575|686576|686577|686579|686580|686581|686582|686583|686584|686585|686586|686587|686588|686590|686603|686604|686606|686607|686609|686610|686612|689766|689767|689771|691658|691660|691662|691663|691670|691672|691673|691678|691679|691681|695251|695256|698755|698756|698759|698760|698762|709605|709606|721197|721199|734826|734831|749186|749187|749196|759350|764765|764767|764772|764782|764783|764786|764788|764790|764807|764808|764814|774992|782109|782115|782117|782118|787239|787297|790794|804862|819525|819526|819527|819528|819529|819586|819587|819588|829847|829848|829849|829850|829851|829852|829853|829854|829855|829856|829888|829889|829890|829891|829892|829893|829894|829895|829931|829932|829933|829934|829935|829936|829937|829938|829939|829940|829941|829942|829943|829944|829945|829946|829947|829951|829953|829993|829994|829995|829996|829997|829998|829999|830000|830001|830002|830003|830004|830005|830006|830007|830008|830009|830010|830011|830012|830013|830014|830015|830016|830017|830018|830019|830020|830021|830022|830023|830024|830025|830026|830027|830028|830029|830030|830031|830032|830033|830034|830035|830036|830037|830038|830039|830040|830041|830042|830043|830044|830045|830046|830047|830048|830049|830050|830051|851004|851239|851846|851882|851884|899330|899331|899332|899333|899334|899335|899336|904070|904071|923727|923728|923729|923730|923731|923737|923738|923739|923748|923771|923772|923773|923774|923775|923776|923777|923778|923779|923780|923781|923782|923783|923784|923785|923786|923787|923788|923789|923790|923791|932582|932583|932584|932585|932586|932587|932588|932589|932596|932597|932605|932606|932607|932608|932609|932610|932626|932627|932628|932629|932630|932631|932632|932633|932634|932635|932636|932637|939977|939979|940792|940794|944256|944257|944258|944259|944267|944268|944269|944270|944271|944272|944282|944283|944284|944292|944293|944294|944295|944296|944297|944298|944299|944300|944301|944302|944303|944304|944305|944306|944307|944308|944309|944310|944311|944312|944313|944314|953928|953929|953936|953937|953938|953939|953940|953941|953943|953953|953954|953955|953956|953957|953958|953959|953960|959742|959744|960548", + "upstreamId": "22366|27768|27769|27770|27772|27772|27775|27775|27776|27777|28238|28239|28248|38854|38855|38856|45601|45602|45603|45604|45605|45608|47705|47707|47713|47714|47717|47717|47718|47724|47727|47728|47728|47729|47730|47730|47731|47733|51186|51188|173541|173543|173678|173679|173681|174394|174395|174533|174534|207165|207165|213930|213931|213932|214163|214164|214165|214166|227321|227598|229234|229235|229237|229238|229239|229240|239624|239625|239626|239627|239628|239629|239630|239631|239633|239634|239635|239638|239639|239640|239641|239643|239643|239644|239645|239647|239663|239664|239665|239666|239667|239668|239669|239669|239670|239671|239672|239673|239674|239675|239676|239677|251613|251614|251639|251640|251666|259808|263518|273563|295110|295271|296915|300507|300508|300731|300775|300921|304867|304873|304874|304876|304877|304883|304888|304889|308589|308593|308599|308600|308601|313748|313749|313768|313769|313772|313774|313788|313801|313802|313803|313804|313805|313806|313861|313864|313868|313869|313878|353833|394497|394503|394506|394522|394531|394536|394537|394544|394546|394554|394556|394557|394560|394582|394584|394587|394588|394589|394591|394595|394599|394629|394631|394635|394638|394641|394651|394654|394657|394720|394731|394739|394742|394746|394755|394757|394761|394762|394764|394767|394768|394799|394802|394807|394808|394810|394815|394817|394824|394841|394848|394851|395006|395007|395038|395042|395044|395058|395060|395064|395070|395130|395132|395135|395138|395143|395145|395152|395153|395173|395184|406619|428333|428334|428336|428339|428340|428341|428347|439828|439829|439830|454152|454153|454156|454158|454179|454181|454186|454187|454195|454222|454224|454226|454234|454238|454241|454244|454245|454295|454303|454305|454306|454309|454310|454311|454312|454314|454320|454321|454323|454324|454328|454330|454333|454369|454370|454376|454378|454384|454388|454390|454392|454393|454396|454397|454401|454445|454447|454456|454457|454459|454460|454467|454472|454632|454634|454636|454638|454645|454666|454668|454669|454671|454710|454717|454718|454721|454722|454726|454728|454737|454793|454813|454816|454818|454834|454837|454946|454952|454960|454963|454966|454984|455002|455003|455010|455015|455016|455025|455035|455105|455106|455106|455107|455111|455112|496352|520429|520430|520431|520433|520439|520443|520449|520477|520478|520483|520494|520500|520506|520565|520571|520574|520579|520580|520596|520599|520600|520602|520602|520605|520606|520608|520625|520627|520654|520656|520659|520660|520663|520666|520672|520674|520676|520677|520678|520702|520712|520713|520715|520720|520726|520733|520738|520824|520826|520828|520832|520833|520842|520845|520848|520850|520851|520852|520853|520855|520856|520859|520862|520868|520877|520882|520886|520888|520889|520891|520894|520895|520915|520917|520920|520925|520945|520952|520953|520979|520980|520983|520985|520986|520987|520989|520990|520991|520994|520995|520996|520997|520999|521000|521003|521005|521057|521060|521062|521064|521065|521078|521079|521081|536677|537458|550254|550255|550256|550257|550258|550259|550260|550261|550262|550263|559956|559973|559981|559983|560001|560003|560005|560007|560027|560029|560031|560033|560035|560037|560039|560041|560043|560045|560047|560049|560051|560053|560086|560088|560098|560108|560110|560112|560136|560138|560140|560142|560144|560146|560148|560150|562291|562567|562569|562570|562572|562581|562585|562590|562599|562601|562603|562605|562607|562646|562647|562649|562655|562658|562663|562665|562667|564432|564438|564439|564457|564491|564492|564494|564498|564508|564514|610609|632876|632877|632878|632879|632880|632881|632882|632883|632884|632885|632886|632887|632888|632889|632890|632891|632892|632893|632908|632909|632910|632911|632912|632944|632945|632946|632947|632948|632949|632950|632951|632952|632953|632954|632955|632956|632957|632958|632959|632960|632961|632962|632963|632964|632965|632966|632967|633006|633007|633008|633009|633010|633011|633012|633013|633014|633015|633016|633017|633018|633019|633020|633021|633022|633023|633024|633025|633026|633027|633028|633029|633030|633031|633032|633033|633034|633035|633036|633037|633038|633039|633040|633041|633042|633043|633044|633045|633046|633047|633048|651189|651191|651192|651194|651204|651217|651245|651255|651264|651306|651307|651341|683654|683655|683659|683660|683661|683662|685165|685168|685169|686573|686574|686575|686576|686577|686579|686580|686581|686582|686583|686584|686585|686586|686587|686588|686590|686603|686604|686606|686607|686609|686610|686612|689766|689767|689771|691658|691660|691662|691663|691670|691672|691673|691678|691679|691681|695251|695256|698755|698756|698759|698760|698762|709605|709606|721197|721199|734826|734831|749186|749187|749196|759350|764765|764767|764772|764782|764783|764786|764788|764790|764807|764808|764814|774992|782109|782115|782117|782118|787239|787297|790794|804862|819525|819526|819527|819528|819529|819586|819587|819588|829847|829848|829849|829850|829851|829852|829853|829854|829855|829856|829888|829889|829890|829891|829892|829893|829894|829895|829931|829932|829933|829934|829935|829936|829937|829938|829939|829940|829941|829942|829943|829944|829945|829946|829947|829951|829953|829993|829994|829995|829996|829997|829998|829999|830000|830001|830002|830003|830004|830005|830006|830007|830008|830009|830010|830011|830012|830013|830014|830015|830016|830017|830018|830019|830020|830021|830022|830023|830024|830025|830026|830027|830028|830029|830030|830031|830032|830033|830034|830035|830036|830037|830038|830039|830040|830041|830042|830043|830044|830045|830046|830047|830048|830049|830050|830051|851004|851239|851846|851882|851884|899330|899331|899332|899333|899334|899335|899336|904070|904071|923727|923728|923729|923730|923731|923737|923738|923739|923748|923771|923772|923773|923774|923775|923776|923777|923778|923779|923780|923781|923782|923783|923784|923785|923786|923787|923788|923789|923790|923791|932582|932583|932584|932585|932586|932587|932588|932589|932596|932597|932605|932606|932607|932608|932609|932610|932626|932627|932628|932629|932630|932631|932632|932633|932634|932635|932636|932637|939977|939979|940792|940794|944256|944257|944258|944259|944267|944268|944269|944270|944271|944272|944282|944283|944284|944292|944293|944294|944295|944296|944297|944298|944299|944300|944301|944302|944303|944304|944305|944306|944307|944308|944309|944310|944311|944312|944313|944314|953928|953929|953936|953937|953938|953939|953940|953941|953943|953953|953954|953955|953956|953957|953958|953959|953960|959742|959744|960548", "text": "Idiopathic Pulmonary Fibrosis" }, { - "baseId": "22368", + "upstreamId": "22368", "text": "Obesity, late-onset" }, { - "baseId": "22368", + "upstreamId": "22368", "text": "Leanness, inherited" }, { - "baseId": "22369|22370|22371|22379|304795|304803|304805|304809|304810|304812|304815|304816|304822|304825|304829|304834|304835|304836|304837|304842|304850|304851|304853|304854|304856|304862|308527|308530|308544|308548|308554|308555|308556|308557|308559|308564|308565|308568|308572|308573|308575|308585|308586|308587|313692|313694|313695|313696|313697|313698|313710|313711|313713|313714|313715|313716|313718|313719|313724|313726|313731|313732|313733|313734|313735|313737|313739|313740|313741|313743|313744|313745|313746|313747|313750|313751|313754|313759|313778|313780|313781|313783|313784|313792|313796|313797|313798|313836|313837|313850|313860|612353|700520|700521|736582|899264|899265|899266|899267|899268|899269|899270|899271|899272|899273|899274|899275|899276|899277|899278|899279|899280|899281|899282|899283|899284|899285|899286|899287|899288|899289|899290|899291|899292|899293|899294|899295|899296|899297|899298|899299|899300|899301|899302|899303|899304|899305|899306|899307|899308|899309|899310|899311|899312|899313|899314|899315|899316|899317|899318|899319|899320|899321|899322|899323|899324|899325|899326|899327|899328|899329|900465|900466|900467|900468", + "upstreamId": "22369|22370|22371|22379|304795|304803|304805|304809|304810|304812|304815|304816|304822|304825|304829|304834|304835|304836|304837|304842|304850|304851|304853|304854|304856|304862|308527|308530|308544|308548|308554|308555|308556|308557|308559|308564|308565|308568|308572|308573|308575|308585|308586|308587|313692|313694|313695|313696|313697|313698|313710|313711|313713|313714|313715|313716|313718|313719|313724|313726|313731|313732|313733|313734|313735|313737|313739|313740|313741|313743|313744|313745|313746|313747|313750|313751|313754|313759|313778|313780|313781|313783|313784|313792|313796|313797|313798|313836|313837|313850|313860|612353|700520|700521|736582|899264|899265|899266|899267|899268|899269|899270|899271|899272|899273|899274|899275|899276|899277|899278|899279|899280|899281|899282|899283|899284|899285|899286|899287|899288|899289|899290|899291|899292|899293|899294|899295|899296|899297|899298|899299|899300|899301|899302|899303|899304|899305|899306|899307|899308|899309|899310|899311|899312|899313|899314|899315|899316|899317|899318|899319|899320|899321|899322|899323|899324|899325|899326|899327|899328|899329|900465|900466|900467|900468", "text": "Alopecia universalis congenita" }, { - "baseId": "22369|22372|22373|22374|22375|22376|22377|22378|304795|304803|304805|304809|304810|304812|304815|304816|304822|304825|304829|304834|304835|304836|304837|304842|304850|304851|304853|304854|304856|304862|304863|308527|308530|308544|308548|308554|308555|308556|308557|308559|308564|308565|308568|308572|308573|308575|308585|308586|308587|313665|313692|313694|313695|313696|313697|313698|313710|313711|313713|313714|313715|313716|313718|313719|313724|313726|313731|313732|313733|313734|313735|313737|313739|313740|313741|313743|313744|313745|313746|313747|313750|313751|313754|313759|313778|313780|313781|313783|313784|313792|313796|313797|313798|313836|313837|313850|313860|654506|700520|700521|736582|899264|899265|899266|899267|899268|899269|899270|899271|899272|899273|899274|899275|899276|899277|899278|899279|899280|899281|899282|899283|899284|899285|899286|899287|899288|899289|899290|899291|899292|899293|899294|899295|899296|899297|899298|899299|899300|899301|899302|899303|899304|899305|899306|899307|899308|899309|899310|899311|899312|899313|899314|899315|899316|899317|899318|899319|899320|899321|899322|899323|899324|899325|899326|899327|899328|899329|900465|900466|900467|900468", + "upstreamId": "22369|22372|22373|22374|22375|22376|22377|22378|304795|304803|304805|304809|304810|304812|304815|304816|304822|304825|304829|304834|304835|304836|304837|304842|304850|304851|304853|304854|304856|304862|304863|308527|308530|308544|308548|308554|308555|308556|308557|308559|308564|308565|308568|308572|308573|308575|308585|308586|308587|313665|313692|313694|313695|313696|313697|313698|313710|313711|313713|313714|313715|313716|313718|313719|313724|313726|313731|313732|313733|313734|313735|313737|313739|313740|313741|313743|313744|313745|313746|313747|313750|313751|313754|313759|313778|313780|313781|313783|313784|313792|313796|313797|313798|313836|313837|313850|313860|654506|700520|700521|736582|899264|899265|899266|899267|899268|899269|899270|899271|899272|899273|899274|899275|899276|899277|899278|899279|899280|899281|899282|899283|899284|899285|899286|899287|899288|899289|899290|899291|899292|899293|899294|899295|899296|899297|899298|899299|899300|899301|899302|899303|899304|899305|899306|899307|899308|899309|899310|899311|899312|899313|899314|899315|899316|899317|899318|899319|899320|899321|899322|899323|899324|899325|899326|899327|899328|899329|900465|900466|900467|900468", "text": "Atrichia with papular lesions" }, { - "baseId": "22380|22381|22382|22383|818633", + "upstreamId": "22380|22381|22382|22383|818633", "text": "Hypotrichosis 4" }, { - "baseId": "22384|22385|22386|22387|142565|142566|244408|269524|288615|288616|288620|288624|288628|288634|288637|288644|288645|288656|288658|288662|289365|289370|289371|289372|289373|289375|289386|289388|289391|292394|292396|292397|292403|292511|292525|292532|292548|292549|292550|367198|452185|452187|452188|518897|518922|518926|558820|650966|691299|787237|819321|827518|827519|827520|827521|851532|887874|887875|887876|887877|887878|887879|887880|887881|887882|887883|887884|887885|887886|887887|887888|887889|887890|887891|887892|887893|891559|931756|931757|943318", + "upstreamId": "22384|22385|22386|22387|142565|142566|244408|269524|288615|288616|288620|288624|288628|288634|288637|288644|288645|288656|288658|288662|289365|289370|289371|289372|289373|289375|289386|289388|289391|292394|292396|292397|292403|292511|292525|292532|292548|292549|292550|367198|452185|452187|452188|518897|518922|518926|558820|650966|691299|787237|819321|827518|827519|827520|827521|851532|887874|887875|887876|887877|887878|887879|887880|887881|887882|887883|887884|887885|887886|887887|887888|887889|887890|887891|887892|887893|891559|931756|931757|943318", "text": "Charcot-Marie-Tooth disease type 2B" }, { - "baseId": "22388|39220|133852|133853|181423|206566|207426|207428|207430|207434|207436|215351|264224|363707|369109|369110|369361|395251|428635|428641|444025|444026|456170|456174|456179|456182|456491|456862|513289|513571|522659|522660|552110|552111|561109|561163|561165|566164|635330|635331|635332|635333|683822|683823|683825|683826|683827|686920|686924|686925|722187|787488|792762|832621|832622|832623|924526|933545|954941|961608|970220", + "upstreamId": "22388|39220|133852|133853|181423|206566|207426|207428|207430|207434|207436|215351|264224|363707|369109|369110|369361|395251|428635|428641|444025|444026|456170|456174|456179|456182|456491|456862|513289|513571|522659|522660|552110|552111|561109|561163|561165|566164|635330|635331|635332|635333|683822|683823|683825|683826|683827|686920|686924|686925|722187|787488|792762|832621|832622|832623|924526|933545|954941|961608|970220", "text": "Spastic paraplegia 50, autosomal recessive" }, { - "baseId": "22389|22391|22392|101394|101395|101396|106460|192441|192442|253281|267710|272609|273091|273579|306568|306569|306571|306588|306590|306595|310775|310776|310777|310785|310786|310787|310798|310799|316171|316186|316187|316188|316191|316195|316510|316511|316514|316521|316523|316524|316525|370178|444336|444336|524469|622890|790832|802167|835419|900918|900919|900920|900921|900922|900923|900924|900925|900926|900927|900928|900929|900930|900931|900932|900933|900934|900935|900936|900937|900938|900939|900940|900941|900942", + "upstreamId": "22389|22391|22392|101394|101395|101396|106460|192441|192442|253281|267710|272609|273091|273579|306568|306569|306571|306588|306590|306595|310775|310776|310777|310785|310786|310787|310798|310799|316171|316186|316187|316188|316191|316195|316510|316511|316514|316521|316523|316524|316525|370178|444336|444336|524469|622890|790832|802167|835419|900918|900919|900920|900921|900922|900923|900924|900925|900926|900927|900928|900929|900930|900931|900932|900933|900934|900935|900936|900937|900938|900939|900940|900941|900942", "text": "Sarcotubular myopathy" }, { - "baseId": "22389|22390|22391|101394|101395|101396|106460|192441|192442|253281|267710|272609|273579|306568|306569|306571|306588|306590|306595|310775|310776|310777|310785|310786|310787|310798|310799|316171|316186|316187|316188|316191|316195|316510|316511|316514|316521|316523|316524|316525|370178|444336|444336|524469|835419|900918|900919|900920|900921|900922|900923|900924|900925|900926|900927|900928|900929|900930|900931|900932|900933|900934|900935|900936|900937|900938|900939|900940|900941|900942", + "upstreamId": "22389|22390|22391|101394|101395|101396|106460|192441|192442|253281|267710|272609|273579|306568|306569|306571|306588|306590|306595|310775|310776|310777|310785|310786|310787|310798|310799|316171|316186|316187|316188|316191|316195|316510|316511|316514|316521|316523|316524|316525|370178|444336|444336|524469|835419|900918|900919|900920|900921|900922|900923|900924|900925|900926|900927|900928|900929|900930|900931|900932|900933|900934|900935|900936|900937|900938|900939|900940|900941|900942", "text": "Bardet-Biedl syndrome 11" }, { - "baseId": "22393|22394|22395|312859|312860|312862|312863|312876|312878|312879|312881|312882|312883|312887|312888|312896|312898|312902|312903|312907|312912|312913|312922|312926|312927|312937|318900|318902|318904|318905|318907|318908|318917|318919|318922|318933|318935|318947|318948|318954|318958|318959|318962|325013|325034|325035|325037|325040|325041|325042|325046|325071|325074|325076|325079|325080|325081|325083|325086|325087|325089|325090|325882|325886|325887|325890|325894|325895|325897|325906|325909|325910|325929|325936|325943|325948|325949|325950|325953|325960|626203|665819|737820|799637|867380|867381|867382|867383|867384|867385|867386|867387|867388|867389|867390|867391|867392|867393|867394|867395|867396|867397|867398|867399|867400|867401|867402|867403|867404|867405|867406|867407|867408|867409|867410|867411|867412|867413|867414|867415|867416|867417|867418|867419|867420|867421|867422|867423|867424|867425|867426|867427|868612|904265|904266", + "upstreamId": "22393|22394|22395|312859|312860|312862|312863|312876|312878|312879|312881|312882|312883|312887|312888|312896|312898|312902|312903|312907|312912|312913|312922|312926|312927|312937|318900|318902|318904|318905|318907|318908|318917|318919|318922|318933|318935|318947|318948|318954|318958|318959|318962|325013|325034|325035|325037|325040|325041|325042|325046|325071|325074|325076|325079|325080|325081|325083|325086|325087|325089|325090|325882|325886|325887|325890|325894|325895|325897|325906|325909|325910|325929|325936|325943|325948|325949|325950|325953|325960|626203|665819|737820|799637|867380|867381|867382|867383|867384|867385|867386|867387|867388|867389|867390|867391|867392|867393|867394|867395|867396|867397|867398|867399|867400|867401|867402|867403|867404|867405|867406|867407|867408|867409|867410|867411|867412|867413|867414|867415|867416|867417|867418|867419|867420|867421|867422|867423|867424|867425|867426|867427|868612|904265|904266", "text": "Lathosterolosis" }, { - "baseId": "22396|22397|22398|22399|22400|22401|22402|22403|22404|105554|816462|920518", + "upstreamId": "22396|22397|22398|22399|22400|22401|22402|22403|22404|105554|816462|920518", "text": "Retinitis pigmentosa 14" }, { - "baseId": "22399|39216|39217|39218|39219|100027|100028|105550|105553|105554|105560|105564|193520|271102|271577|299937|299938|299942|302589|302593|302609|302611|302612|302613|302615|306990|306991|307242|307249|307250|307256|699561|710472|777634|816462|818245|831882|831890|856426|856434|895866|895867|895868|895869|895870|895871|895872|895873|895874|895875|895876|895877|896235|896236|919026|919027|919028|920229|966095|966096|966097|966098|966099|966100", + "upstreamId": "22399|39216|39217|39218|39219|100027|100028|105550|105553|105554|105560|105564|193520|271102|271577|299937|299938|299942|302589|302593|302609|302611|302612|302613|302615|306990|306991|307242|307249|307250|307256|699561|710472|777634|816462|818245|831882|831890|856426|856434|895866|895867|895868|895869|895870|895871|895872|895873|895874|895875|895876|895877|896235|896236|919026|919027|919028|920229|966095|966096|966097|966098|966099|966100", "text": "Leber congenital amaurosis 15" }, { - "baseId": "22406|22407|101056|495560|791393|966544", + "upstreamId": "22406|22407|101056|495560|791393|966544", "text": "Oculopharyngeal muscular dystrophy" }, { - "baseId": "22408|106448", + "upstreamId": "22408|106448", "text": "Retinitis pigmentosa 48" }, { - "baseId": "22409|22410|22411|22411|22412|22413|22414|99446|99447|99448|99449|99450|143105|143106|143107|143108|143109|143110|143112|143114|143115|143116|143118|169438|169439|169440|169441|169442|169443|169444|169445|169446|169447|169449|169451|169452|169453|177163|177295|177427|178096|178394|200996|203502|203505|203508|203518|205021|205790|208455|208456|208457|208458|208460|209339|213650|225863|237502|237503|266254|331713|331715|331717|331719|331720|331724|331725|331731|331737|331742|331747|331754|331759|331760|331761|331763|331766|341962|341963|341965|341971|341975|341976|341979|341983|341989|341993|341995|341998|342000|342002|342004|342009|342011|342016|342018|342020|342022|342024|342031|342036|342039|342041|342043|342047|342049|342054|342056|347351|347352|347355|347356|347359|347366|347367|347368|347375|347377|347382|347393|347397|347400|347401|347404|347410|347412|347413|347417|347424|347425|347428|348685|348686|348689|348690|348691|348692|348693|348697|348698|348699|348711|348714|348720|348728|348729|348734|348735|348739|348744|348747|348753|348754|348761|348764|361036|361037|362183|362449|377104|377112|379073|422225|424667|425225|426274|430066|430067|430070|430073|445989|468073|468078|468082|468083|468996|468997|469003|469004|469006|469009|469412|469413|469578|469825|469826|469828|469831|469840|482178|506356|506369|506983|506992|532342|532346|532777|532783|536070|538249|538250|538251|539083|551328|551794|552210|552211|552212|553397|570240|570243|571970|571976|571980|571982|572665|572666|572668|572671|574764|574765|574766|574767|574768|580316|580319|580542|611428|614614|647325|647326|647327|647328|647329|647330|647331|647332|647333|647334|652892|653096|653375|653895|653987|678075|683147|688917|688918|695794|704625|741408|772214|791868|791869|791870|791871|791872|798737|816346|816367|821192|821193|822142|822143|822144|822278|846929|846930|846931|846932|846933|846934|846935|846936|846937|846938|846939|846940|846941|851775|851777|852279|852936|879416|879417|879418|879419|879420|879421|879422|879423|879424|879425|879426|879427|879428|879429|879430|879431|879432|879433|879434|879435|879436|879437|879438|879439|879440|879441|879442|879443|879444|879445|879446|879447|879448|879449|879450|879451|879452|879453|879454|879455|879456|879457|879458|879459|879460|879461|879462|879463|879464|879465|879466|879467|879468|879469|879470|906145|919801|919802|920392|928734|928735|938465|938466|938467|938468|938469|950553|950554|950555|950556|950557|950558|950559|950560|950561|960271|964055|964733|966168|971104|971105", + "upstreamId": "22409|22410|22411|22411|22412|22413|22414|99446|99447|99448|99449|99450|143105|143106|143107|143108|143109|143110|143112|143114|143115|143116|143118|169438|169439|169440|169441|169442|169443|169444|169445|169446|169447|169449|169451|169452|169453|177163|177295|177427|178096|178394|200996|203502|203505|203508|203518|205021|205790|208455|208456|208457|208458|208460|209339|213650|225863|237502|237503|266254|331713|331715|331717|331719|331720|331724|331725|331731|331737|331742|331747|331754|331759|331760|331761|331763|331766|341962|341963|341965|341971|341975|341976|341979|341983|341989|341993|341995|341998|342000|342002|342004|342009|342011|342016|342018|342020|342022|342024|342031|342036|342039|342041|342043|342047|342049|342054|342056|347351|347352|347355|347356|347359|347366|347367|347368|347375|347377|347382|347393|347397|347400|347401|347404|347410|347412|347413|347417|347424|347425|347428|348685|348686|348689|348690|348691|348692|348693|348697|348698|348699|348711|348714|348720|348728|348729|348734|348735|348739|348744|348747|348753|348754|348761|348764|361036|361037|362183|362449|377104|377112|379073|422225|424667|425225|426274|430066|430067|430070|430073|445989|468073|468078|468082|468083|468996|468997|469003|469004|469006|469009|469412|469413|469578|469825|469826|469828|469831|469840|482178|506356|506369|506983|506992|532342|532346|532777|532783|536070|538249|538250|538251|539083|551328|551794|552210|552211|552212|553397|570240|570243|571970|571976|571980|571982|572665|572666|572668|572671|574764|574765|574766|574767|574768|580316|580319|580542|611428|614614|647325|647326|647327|647328|647329|647330|647331|647332|647333|647334|652892|653096|653375|653895|653987|678075|683147|688917|688918|695794|704625|741408|772214|791868|791869|791870|791871|791872|798737|816346|816367|821192|821193|822142|822143|822144|822278|846929|846930|846931|846932|846933|846934|846935|846936|846937|846938|846939|846940|846941|851775|851777|852279|852936|879416|879417|879418|879419|879420|879421|879422|879423|879424|879425|879426|879427|879428|879429|879430|879431|879432|879433|879434|879435|879436|879437|879438|879439|879440|879441|879442|879443|879444|879445|879446|879447|879448|879449|879450|879451|879452|879453|879454|879455|879456|879457|879458|879459|879460|879461|879462|879463|879464|879465|879466|879467|879468|879469|879470|906145|919801|919802|920392|928734|928735|938465|938466|938467|938468|938469|950553|950554|950555|950556|950557|950558|950559|950560|950561|960271|964055|964733|966168|971104|971105", "text": "Pitt-Hopkins syndrome" }, { - "baseId": "22409|202822|264918|354023|361128|361131|361133|361138|361143|361144|361151|361154", + "upstreamId": "22409|202822|264918|354023|361128|361131|361133|361138|361143|361144|361151|361154", "text": "Severe intellectual deficiency" }, { - "baseId": "22411|200754|539083|551329|553397|611428|816346", + "upstreamId": "22411|200754|539083|551329|553397|611428|816346", "text": "Corneal dystrophy, Fuchs endothelial, 3" }, { - "baseId": "22415|22416|22417|22418|39213|39214|39215|193573|201786|201793|201794|201795|263762|263763|263764|263765|263766|263767|263768|263769|263770|263771|263772|263773|406463|443637|446885|798547|980915", + "upstreamId": "22415|22416|22417|22418|39213|39214|39215|193573|201786|201793|201794|201795|263762|263763|263764|263765|263766|263767|263768|263769|263770|263771|263772|263773|406463|443637|446885|798547|980915", "text": "Epilepsy, progressive myoclonic 4, with or without renal failure" }, { - "baseId": "22419", + "upstreamId": "22419", "text": "Nephropathy with pretibial epidermolysis bullosa and deafness" }, { - "baseId": "22420|22421|22423|22424|22425|22426|22427|22429|22430|34607|34608|34609|34610|34611|34612|34613|34614|34615|34616|34618|34619|34620|34621|34622|34623|34624|34625|34626|34627|34628|34630|34631|34632|34633|34634|34635|34636|34638|34639|34639|34640|34641|34643|34644|34645|34646|34647|34648|34649|34650|34651|34652|34653|34654|34655|34656|34657|34660|34662|34663|34664|34666|34667|34668|47702|48359|48361|51284|125784|134783|134788|134789|191609|191609|203703|203724|203728|203729|203736|203783|203792|203794|203801|203802|208704|217258|217261|217263|227922|264761|266263|267975|353967|353968|353969|353970|353972|353973|353975|353980|353982|353985|353987|353989|353990|353991|353992|353993|353995|353997|353998|353999|354003|354018|354019|354024|354027|354028|354030|354032|354033|354034|354035|354036|354037|354038|354040|354043|361690|361908|410821|415696|424618|426351|446292|470987|481405|511018|533610|551748|614476|679939|791995|791996|791997|791998|791999|792000|792001|802031|802032|802034|802035|802037|806441|917741|964536|964537|964543|965428|965444|966804|983655", + "upstreamId": "22420|22421|22423|22424|22425|22426|22427|22429|22430|34607|34608|34609|34610|34611|34612|34613|34614|34615|34616|34618|34619|34620|34621|34622|34623|34624|34625|34626|34627|34628|34630|34631|34632|34633|34634|34635|34636|34638|34639|34639|34640|34641|34643|34644|34645|34646|34647|34648|34649|34650|34651|34652|34653|34654|34655|34656|34657|34660|34662|34663|34664|34666|34667|34668|47702|48359|48361|51284|125784|134783|134788|134789|191609|191609|203703|203724|203728|203729|203736|203783|203792|203794|203801|203802|208704|217258|217261|217263|227922|264761|266263|267975|353967|353968|353969|353970|353972|353973|353975|353980|353982|353985|353987|353989|353990|353991|353992|353993|353995|353997|353998|353999|354003|354018|354019|354024|354027|354028|354030|354032|354033|354034|354035|354036|354037|354038|354040|354043|361690|361908|410821|415696|424618|426351|446292|470987|481405|511018|533610|551748|614476|679939|791995|791996|791997|791998|791999|792000|792001|802031|802032|802034|802035|802037|806441|917741|964536|964537|964543|965428|965444|966804|983655", "text": "Benign familial neonatal seizures 1" }, { - "baseId": "22425|22430", + "upstreamId": "22425|22430", "text": "Seizures, benign familial neonatal, 1, and/or myokymia" }, { - "baseId": "22427|22428|22431|34261|34262|34263|34264|34265|34266|34267|34269|34659|134793|134794|134795|134796|141743|141752|141753|141754|141755|191041|191676|202143|202149|202151|202156|202158|202160|202165|202168|202170|202171|202173|202174|202181|207503|240232|304135|304149|304150|304163|304164|304178|304180|304181|304182|304186|304187|304188|304189|304194|304200|304205|304206|304211|304217|304218|304222|304226|304229|304230|304235|304242|304243|304244|304260|304261|304263|304264|304265|307750|307761|307788|307793|307795|307810|307824|307837|307838|307839|307852|307853|307854|307861|307862|307863|307864|307867|307871|307883|307884|307886|307887|307891|307898|307919|312763|312782|312806|312807|312809|312817|312819|312820|312821|312827|312837|312838|312850|312856|312870|312880|312889|312890|312891|312894|312895|312906|312908|312909|312910|312911|312914|312915|312918|312919|312920|312921|312923|312925|312928|312929|312935|312939|312940|312942|312944|312945|312946|312947|312948|312949|312952|312957|312958|312960|312974|312975|312978|312979|312980|312981|312984|312990|312998|313007|313009|313012|313013|313026|313027|313028|313040|359883|371534|407314|421658|444213|486747|564635|564638|614317|636596|636600|692350|722848|898823|898824|898825|898826|898827|898828|898829|898830|898831|898832|898833|898834|898835|898836|898837|898838|898839|898840|898841|898842|898843|898844|898845|898846|898847|898848|898849|898850|898851|898852|898853|898854|898855|898856|898857|898858|898859|898860|898861|898862|898863|898864|898865|898866|898867|898868|898869|898870|898871|898872|898873|898874|898875|898876|898877|898878|898879|898880|898881|898882|898883|898884|898885|898886|898887|898888|898889|898890|898891|898892|898893|898894|898895|898896|898897|898898|898899|898900|900439|900440|900441|919140|964298", + "upstreamId": "22427|22428|22431|34261|34262|34263|34264|34265|34266|34267|34269|34659|134793|134794|134795|134796|141743|141752|141753|141754|141755|191041|191676|202143|202149|202151|202156|202158|202160|202165|202168|202170|202171|202173|202174|202181|207503|240232|304135|304149|304150|304163|304164|304178|304180|304181|304182|304186|304187|304188|304189|304194|304200|304205|304206|304211|304217|304218|304222|304226|304229|304230|304235|304242|304243|304244|304260|304261|304263|304264|304265|307750|307761|307788|307793|307795|307810|307824|307837|307838|307839|307852|307853|307854|307861|307862|307863|307864|307867|307871|307883|307884|307886|307887|307891|307898|307919|312763|312782|312806|312807|312809|312817|312819|312820|312821|312827|312837|312838|312850|312856|312870|312880|312889|312890|312891|312894|312895|312906|312908|312909|312910|312911|312914|312915|312918|312919|312920|312921|312923|312925|312928|312929|312935|312939|312940|312942|312944|312945|312946|312947|312948|312949|312952|312957|312958|312960|312974|312975|312978|312979|312980|312981|312984|312990|312998|313007|313009|313012|313013|313026|313027|313028|313040|359883|371534|407314|421658|444213|486747|564635|564638|614317|636596|636600|692350|722848|898823|898824|898825|898826|898827|898828|898829|898830|898831|898832|898833|898834|898835|898836|898837|898838|898839|898840|898841|898842|898843|898844|898845|898846|898847|898848|898849|898850|898851|898852|898853|898854|898855|898856|898857|898858|898859|898860|898861|898862|898863|898864|898865|898866|898867|898868|898869|898870|898871|898872|898873|898874|898875|898876|898877|898878|898879|898880|898881|898882|898883|898884|898885|898886|898887|898888|898889|898890|898891|898892|898893|898894|898895|898896|898897|898898|898899|898900|900439|900440|900441|919140|964298", "text": "Benign familial neonatal seizures 2" }, { - "baseId": "22427|22428|22429|22430|22430|34611|34639|34644|34647|34661|48359|48359|48360|48361|125784|125784|134777|134789|141729|177432|191609|195052|195445|198642|203703|203721|203722|203723|203724|203724|203725|203726|203727|203728|203736|203759|203764|203771|203772|203788|203792|203794|203795|203798|208704|208705|213659|217256|217257|217258|217258|217259|217260|217262|260235|264902|265110|267975|271459|350374|353971|353976|353977|353978|353981|353983|353984|353986|353988|353994|353996|354000|354001|354002|354004|354005|354006|354007|354008|354009|354010|354011|354012|354013|354014|354015|354016|354017|354020|354021|354022|354023|354025|354026|354029|354031|361066|361235|361236|404202|422344|424618|424618|426351|426752|431924|446292|470987|481406|486771|486772|486773|486774|511019|533610|553187|571338|572967|608865|614476|624870|679811|788941|791995|798003|800409|802033|802036|802038|806441|858357|858380|919924|919925|919926|929248|964538|964539|964540|964541|964542|964695|964696|965428|966804|970531|971152", + "upstreamId": "22427|22428|22429|22430|22430|34611|34639|34644|34647|34661|48359|48359|48360|48361|125784|125784|134777|134789|141729|177432|191609|195052|195445|198642|203703|203721|203722|203723|203724|203724|203725|203726|203727|203728|203736|203759|203764|203771|203772|203788|203792|203794|203795|203798|208704|208705|213659|217256|217257|217258|217258|217259|217260|217262|260235|264902|265110|267975|271459|350374|353971|353976|353977|353978|353981|353983|353984|353986|353988|353994|353996|354000|354001|354002|354004|354005|354006|354007|354008|354009|354010|354011|354012|354013|354014|354015|354016|354017|354020|354021|354022|354023|354025|354026|354029|354031|361066|361235|361236|404202|422344|424618|424618|426351|426752|431924|446292|470987|481406|486771|486772|486773|486774|511019|533610|553187|571338|572967|608865|614476|624870|679811|788941|791995|798003|800409|802033|802036|802038|806441|858357|858380|919924|919925|919926|929248|964538|964539|964540|964541|964542|964695|964696|965428|966804|970531|971152", "text": "Early infantile epileptic encephalopathy 7" }, { - "baseId": "22432|22433|22434|22435|22440|22441|22443|22447|137040|231232|411012|495884|508964|535274|538261|538262|538263|538264|538265|538266|538267|538268|538269|538269|538270|538271|538272|538273|792588|805120|860727|919953|971160", + "upstreamId": "22432|22433|22434|22435|22440|22441|22443|22447|137040|231232|411012|495884|508964|535274|538261|538262|538263|538264|538265|538266|538267|538268|538269|538269|538270|538271|538272|538273|792588|805120|860727|919953|971160", "text": "Waardenburg syndrome type 4C" }, { - "baseId": "22436|22444|22445|22446|39210|39211|76394", + "upstreamId": "22436|22444|22445|22446|39210|39211|76394", "text": "Waardenburg syndrome type 2E, without neurologic involvement" }, { - "baseId": "22437|22438|22439|22442|22450|22451|137039|231226|231227|231228|231231|231235|347741|347742|347749|351585|351588|351589|351593|351594|351597|351600|351602|352543|352544|352545|352546|352547|352548|446415|508172|538269|694737|742898|805120|861057|891282|891283|891284|891285|891286|891287|891288|891289|891290|891291|891292|891293|891294|891295|903682|903690|964553|974884", + "upstreamId": "22437|22438|22439|22442|22450|22451|137039|231226|231227|231228|231231|231235|347741|347742|347749|351585|351588|351589|351593|351594|351597|351600|351602|352543|352544|352545|352546|352547|352548|446415|508172|538269|694737|742898|805120|861057|891282|891283|891284|891285|891286|891287|891288|891289|891290|891291|891292|891293|891294|891295|903682|903690|964553|974884", "text": "Peripheral demyelinating neuropathy, central dysmyelination, Waardenburg syndrome, and Hirschsprung disease" }, { - "baseId": "22441|22448|22449", + "upstreamId": "22441|22448|22449", "text": "Waardenburg syndrome type 2E, with neurologic involvement" }, { - "baseId": "22452|23717", + "upstreamId": "22452|23717", "text": "sulfonamides, urea derivatives response - Efficacy" }, { - "baseId": "22455|22456|22457|22460|22460|22461|22464|105481|105486|105486|105489|105493|105493|105494|105494|105496|105497|105497|105502|105506|105506|105507|105510|105513|188197|215730|238089|270141|271292|333928|333931|333934|333935|333938|333939|333943|333946|333950|333952|333970|333971|333974|333976|333986|333988|333989|333990|333994|333995|333998|334000|343880|343880|343881|343881|343884|343893|343895|343896|343898|343903|343904|343907|343908|343912|343917|343918|343925|343926|343928|343929|343931|343933|349187|349190|349193|349195|349199|349202|349205|349207|349208|349210|349211|349212|349215|349218|349221|349222|349224|349225|349226|350102|350103|350106|350108|350110|350114|350116|350118|350119|350123|350124|350126|350127|350130|350133|350138|350143|350146|350147|350150|350155|350160|350165|350166|350168|359518|410641|413526|626259|705132|742013|776742|791942|818340|821268|821269|821270|821271|821272|847784|847785|847786|847787|847788|847789|852339|860591|882225|882226|882227|882228|882229|882230|882231|882232|882232|882233|882234|882235|882236|882237|882238|882239|882240|882241|882242|882243|882244|882245|882246|882247|882248|882249|882250|882251|882252|882253|882254|882255|882256|882257|882258|882259|929002|929003|929004|938740|938741|938742|938743|938744|938745|950831|950832|950833|958671|958672|960295|960923|965936", + "upstreamId": "22455|22456|22457|22460|22460|22461|22464|105481|105486|105486|105489|105493|105493|105494|105494|105496|105497|105497|105502|105506|105506|105507|105510|105513|188197|215730|238089|270141|271292|333928|333931|333934|333935|333938|333939|333943|333946|333950|333952|333970|333971|333974|333976|333986|333988|333989|333990|333994|333995|333998|334000|343880|343880|343881|343881|343884|343893|343895|343896|343898|343903|343904|343907|343908|343912|343917|343918|343925|343926|343928|343929|343931|343933|349187|349190|349193|349195|349199|349202|349205|349207|349208|349210|349211|349212|349215|349218|349221|349222|349224|349225|349226|350102|350103|350106|350108|350110|350114|350116|350118|350119|350123|350124|350126|350127|350130|350133|350138|350143|350146|350147|350150|350155|350160|350165|350166|350168|359518|410641|413526|626259|705132|742013|776742|791942|818340|821268|821269|821270|821271|821272|847784|847785|847786|847787|847788|847789|852339|860591|882225|882226|882227|882228|882229|882230|882231|882232|882232|882233|882234|882235|882236|882237|882238|882239|882240|882241|882242|882243|882244|882245|882246|882247|882248|882249|882250|882251|882252|882253|882254|882255|882256|882257|882258|882259|929002|929003|929004|938740|938741|938742|938743|938744|938745|950831|950832|950833|958671|958672|960295|960923|965936", "text": "Cone-rod dystrophy 2" }, { - "baseId": "22458|22459|22460|22461|22461|76522|105481|105486|105486|105489|105493|105493|105494|105494|105496|105497|105497|105500|105502|105506|105506|105510|105513|189101|213655|215730|238089|270141|271292|333928|333931|333934|333935|333938|333939|333943|333946|333950|333952|333970|333971|333974|333976|333986|333988|333989|333990|333994|333995|333998|334000|343880|343880|343881|343881|343884|343893|343895|343896|343898|343903|343904|343907|343908|343912|343917|343918|343925|343926|343928|343929|343931|343933|349187|349190|349193|349195|349199|349202|349205|349207|349208|349210|349211|349212|349215|349218|349221|349222|349224|349225|349226|350102|350103|350106|350108|350110|350114|350116|350118|350119|350123|350124|350126|350127|350130|350133|350138|350143|350146|350147|350150|350155|350160|350165|350166|350168|410641|413526|590333|705132|742013|776742|791942|821268|821269|821270|821271|821272|847784|847785|847786|847787|847788|847789|852339|860591|882225|882226|882227|882228|882229|882230|882231|882232|882232|882233|882234|882235|882236|882237|882238|882239|882240|882241|882242|882243|882244|882245|882246|882247|882248|882249|882250|882251|882252|882253|882254|882255|882256|882257|882258|882259|904208|929002|929003|929004|938740|938741|938742|938743|938744|938745|950831|950832|950833|958671|958672|960295|960923|962229|962230|962231|962232|962233|962234|962235|962236|962237|962238", + "upstreamId": "22458|22459|22460|22461|22461|76522|105481|105486|105486|105489|105493|105493|105494|105494|105496|105497|105497|105500|105502|105506|105506|105510|105513|189101|213655|215730|238089|270141|271292|333928|333931|333934|333935|333938|333939|333943|333946|333950|333952|333970|333971|333974|333976|333986|333988|333989|333990|333994|333995|333998|334000|343880|343880|343881|343881|343884|343893|343895|343896|343898|343903|343904|343907|343908|343912|343917|343918|343925|343926|343928|343929|343931|343933|349187|349190|349193|349195|349199|349202|349205|349207|349208|349210|349211|349212|349215|349218|349221|349222|349224|349225|349226|350102|350103|350106|350108|350110|350114|350116|350118|350119|350123|350124|350126|350127|350130|350133|350138|350143|350146|350147|350150|350155|350160|350165|350166|350168|410641|413526|590333|705132|742013|776742|791942|821268|821269|821270|821271|821272|847784|847785|847786|847787|847788|847789|852339|860591|882225|882226|882227|882228|882229|882230|882231|882232|882232|882233|882234|882235|882236|882237|882238|882239|882240|882241|882242|882243|882244|882245|882246|882247|882248|882249|882250|882251|882252|882253|882254|882255|882256|882257|882258|882259|904208|929002|929003|929004|938740|938741|938742|938743|938744|938745|950831|950832|950833|958671|958672|960295|960923|962229|962230|962231|962232|962233|962234|962235|962236|962237|962238", "text": "Leber congenital amaurosis 7" }, { - "baseId": "22465|22466|22467|22468|22469|22470|22472|22473|22474|22475|22476|192348|204430|215517|216957|226088|226089|255786|255790|255796|255798|272359|325616|335246|335255|335258|335283|341726|341737|341772|343237|414718|513634|681810|703733|798700|818326|818327|818328|818329|919661|961625|962178|970546|971544", + "upstreamId": "22465|22466|22467|22468|22469|22470|22472|22473|22474|22475|22476|192348|204430|215517|216957|226088|226089|255786|255790|255796|255798|272359|325616|335246|335255|335258|335283|341726|341737|341772|343237|414718|513634|681810|703733|798700|818326|818327|818328|818329|919661|961625|962178|970546|971544", "text": "Townes-Brocks syndrome 1" }, { - "baseId": "22467|22473|192351|215517|215518|216957|237343|255791|255792|255793|255795|255796|255798|255800|255801|255802|266326|271828|272359|325638|335268|335283|343247|409645|415497|465770|466492|466495|529570|530025|530030|530032|530183|530347|574086|644745|644746|644747|693890|693892|843963|843964|927848|937484|937485", + "upstreamId": "22467|22473|192351|215517|215518|216957|237343|255791|255792|255793|255795|255796|255798|255800|255801|255802|266326|271828|272359|325638|335268|335283|343247|409645|415497|465770|466492|466495|529570|530025|530030|530032|530183|530347|574086|644745|644746|644747|693890|693892|843963|843964|927848|937484|937485", "text": "Townes syndrome" }, { - "baseId": "22471|22473", + "upstreamId": "22471|22473", "text": "Townes-Brocks-branchiootorenal-like syndrome" }, { - "baseId": "22477|22478|22479|22480|22481|22482|22483|22484|22485|22486|22488|22490|22492|22497|22498|22499|22500|99004|99006|133154|133155|133156|133157|133158|133160|133161|133162|133163|133164|133165|133166|133167|133168|139016|139017|139626|139627|139628|139629|139630|139631|139632|139633|139634|139635|139636|139637|139638|139639|139640|139641|139642|139643|143033|143034|143035|143036|143037|143038|143039|143040|143041|143042|143043|143044|150700|150718|150732|150787|150803|150842|150842|150870|150906|150912|150982|151001|151008|151068|151068|151222|151438|151511|151529|151563|151565|151566|151600|151616|151636|151668|151676|151705|151748|151766|151829|151862|151900|151912|151912|151937|151997|152003|152006|152018|152031|152033|152091|152096|152098|152108|152118|152124|152157|152197|152251|152355|152410|152427|152457|152512|152585|152605|152653|152707|166279|181044|181047|181048|181049|181051|181052|181055|181057|181060|181061|181062|181063|181064|181065|181065|181066|181068|181068|181069|181071|181073|181075|181076|181077|181078|181079|181080|181081|181082|181083|181084|185460|185461|185462|185463|185464|185467|185471|185472|185474|185475|185476|185477|185478|185481|185482|185485|185487|185488|185489|185490|185492|185493|185494|185495|185496|185497|185498|185501|185503|185504|185505|185506|185509|185510|185511|185512|185513|185515|185516|185517|185518|185520|185522|185524|185525|185526|185527|185529|185530|185531|185532|185533|185534|185535|185537|185538|185539|185540|185541|185543|185544|185546|185547|185548|185549|185550|185551|185552|185553|185557|185558|185560|185561|185562|185563|186283|190028|190029|190030|195893|213428|213429|213430|213431|213432|213433|213434|213435|213436|213437|213438|213440|213441|213442|213443|213444|213445|213446|213447|213448|222781|222782|222783|222784|222785|222786|222787|222788|222789|222790|222792|222793|222794|222795|222796|222797|222798|222799|222800|222800|222801|232070|232074|232075|232077|232080|232082|232083|232084|232085|232088|236551|236553|236555|236556|236560|236561|236563|236565|236566|236571|236572|236575|236576|236577|236581|236582|236583|237751|243080|243286|243287|243288|243289|243290|243291|243293|243294|243295|243296|243297|243298|243299|243300|243301|243302|243303|243305|243306|243307|243308|243309|243310|245122|248540|248740|249194|256773|256774|260207|262411|264827|332542|332545|332546|332555|332558|332561|332567|332569|332571|332574|332582|332583|332586|332587|332588|332590|332591|332594|332596|332603|332604|332606|332609|342770|342776|342777|342780|342781|342782|342783|342786|342788|342797|342803|342811|342812|348114|348118|348120|348124|348126|349367|349368|349371|349372|349375|358970|358971|358972|358973|358974|358975|358976|358977|358978|360512|362212|363213|363216|363587|363620|363622|363623|363624|376148|376156|376162|377091|377097|377140|377154|377158|377277|377286|377287|377313|379206|379207|379215|379222|379229|379238|402826|402833|403156|403157|403158|403165|403169|403172|403173|403175|403178|403179|403181|403182|403183|403186|403187|403188|403190|403192|403193|403194|403196|403198|403207|403218|403220|403223|403225|403225|403229|403231|403243|403244|403365|403613|403621|403622|403627|403630|403631|403632|403634|403640|403641|403644|403645|403648|403649|403651|403655|403656|403657|403658|403659|403660|403675|403677|403687|410439|410440|410441|410443|410447|410448|410454|410457|410458|410460|410461|410462|410463|410466|410468|420685|420690|420691|420695|420699|420706|420710|420711|420719|420720|420726|420728|432946|432948|432949|432950|432951|432952|434508|439636|468443|468449|468455|468456|468458|468464|468466|468468|468477|468479|468481|468486|468488|468491|469084|469315|469333|469340|469345|469346|469350|469353|469354|469357|469362|469366|469376|469377|469384|469386|469392|469393|469396|469455|469748|469751|469756|469762|469765|469767|469776|469778|469780|469788|469789|469794|469805|469808|470369|470371|470382|470383|470386|470387|470394|470396|470399|470405|470411|470415|470419|470421|470426|470429|470432|479736|479738|479740|479760|479764|479776|479778|479799|479801|479802|479809|479810|479816|479834|479836|479840|479870|479879|480283|480284|480288|480291|480296|480298|483063|483074|483082|483098|483100|485262|485277|485292|485426|485458|485462|485481|485557|488038|495509|506719|532356|532388|532660|532661|532662|532665|532669|532673|532674|532675|532677|532680|532682|532683|532684|532685|532686|532687|532688|532689|532690|532692|532693|532695|532697|532698|532699|532701|532703|532704|532706|532709|532712|532713|532714|532720|532726|532735|532736|532738|533090|533092|533098|533102|533112|533113|533118|533123|533125|539385|539386|539387|539388|539389|539390|539391|570478|570482|570484|570486|570488|570489|570490|570493|570499|570500|570505|570507|572181|572183|572185|572188|572190|572194|572197|572198|572206|572207|572209|572211|572213|572215|572702|572703|572704|572710|572891|572892|572895|572902|572903|572905|572906|572907|572908|572909|573453|574864|574865|574866|574867|574872|574873|575072|575073|576036|576037|576038|576039|576040|576041|611263|611264|618974|618984|618986|618988|618991|619002|619902|621627|621628|647652|647653|647654|647655|647656|647657|647658|647659|647660|647661|647662|647663|647664|647665|647666|647667|647668|647669|647670|647671|647672|647673|647674|647675|647676|647677|647678|647679|647680|647681|647682|647683|647684|647685|647686|647687|647688|647689|647690|647691|647692|647693|647694|647695|653010|653144|653447|653488|653565|653566|653569|653571|677385|684780|694329|694330|756706|760751|772382|772386|772394|776535|776832|786045|786047|786048|786051|788247|791888|791889|791890|791891|791892|791893|814839|814840|814852|814869|814889|814898|814901|814914|814918|821232|821233|821234|821235|821236|821237|821238|821302|821303|847235|847236|847237|847238|847239|847240|847241|847242|847243|847244|847245|847246|847247|847248|847249|847250|847251|847252|847253|847254|847255|847256|847257|847258|847259|847260|847261|847262|847263|847264|847265|847266|847267|847268|847269|847270|847271|847272|847273|847274|847275|847276|847277|847278|851840|852846|852850|852852|852897|852949|852956|852958|879907|879908|879909|879910|879911|879912|879913|879914|879915|879916|879917|879918|879919|879920|879921|879922|879923|879924|879925|879926|879927|879928|879929|879930|879931|879932|879933|879934|879935|879936|879937|879938|879939|879940|879941|879942|879943|879944|879945|914829|914836|914837|914850|928827|928828|928829|928830|928831|928832|928833|928834|928835|928836|928837|928838|928839|928840|938565|938566|938567|938568|938569|938570|938571|938572|938573|938574|938575|940468|940469|941224|950662|950663|950664|950665|950666|950667|950668|950669|958529|958530|958531|958532|960281|960282|960913|967214|967215|970099|972604|983468", + "upstreamId": "22477|22478|22479|22480|22481|22482|22483|22484|22485|22486|22488|22490|22492|22497|22498|22499|22500|99004|99006|133154|133155|133156|133157|133158|133160|133161|133162|133163|133164|133165|133166|133167|133168|139016|139017|139626|139627|139628|139629|139630|139631|139632|139633|139634|139635|139636|139637|139638|139639|139640|139641|139642|139643|143033|143034|143035|143036|143037|143038|143039|143040|143041|143042|143043|143044|150700|150718|150732|150787|150803|150842|150842|150870|150906|150912|150982|151001|151008|151068|151068|151222|151438|151511|151529|151563|151565|151566|151600|151616|151636|151668|151676|151705|151748|151766|151829|151862|151900|151912|151912|151937|151997|152003|152006|152018|152031|152033|152091|152096|152098|152108|152118|152124|152157|152197|152251|152355|152410|152427|152457|152512|152585|152605|152653|152707|166279|181044|181047|181048|181049|181051|181052|181055|181057|181060|181061|181062|181063|181064|181065|181065|181066|181068|181068|181069|181071|181073|181075|181076|181077|181078|181079|181080|181081|181082|181083|181084|185460|185461|185462|185463|185464|185467|185471|185472|185474|185475|185476|185477|185478|185481|185482|185485|185487|185488|185489|185490|185492|185493|185494|185495|185496|185497|185498|185501|185503|185504|185505|185506|185509|185510|185511|185512|185513|185515|185516|185517|185518|185520|185522|185524|185525|185526|185527|185529|185530|185531|185532|185533|185534|185535|185537|185538|185539|185540|185541|185543|185544|185546|185547|185548|185549|185550|185551|185552|185553|185557|185558|185560|185561|185562|185563|186283|190028|190029|190030|195893|213428|213429|213430|213431|213432|213433|213434|213435|213436|213437|213438|213440|213441|213442|213443|213444|213445|213446|213447|213448|222781|222782|222783|222784|222785|222786|222787|222788|222789|222790|222792|222793|222794|222795|222796|222797|222798|222799|222800|222800|222801|232070|232074|232075|232077|232080|232082|232083|232084|232085|232088|236551|236553|236555|236556|236560|236561|236563|236565|236566|236571|236572|236575|236576|236577|236581|236582|236583|237751|243080|243286|243287|243288|243289|243290|243291|243293|243294|243295|243296|243297|243298|243299|243300|243301|243302|243303|243305|243306|243307|243308|243309|243310|245122|248540|248740|249194|256773|256774|260207|262411|264827|332542|332545|332546|332555|332558|332561|332567|332569|332571|332574|332582|332583|332586|332587|332588|332590|332591|332594|332596|332603|332604|332606|332609|342770|342776|342777|342780|342781|342782|342783|342786|342788|342797|342803|342811|342812|348114|348118|348120|348124|348126|349367|349368|349371|349372|349375|358970|358971|358972|358973|358974|358975|358976|358977|358978|360512|362212|363213|363216|363587|363620|363622|363623|363624|376148|376156|376162|377091|377097|377140|377154|377158|377277|377286|377287|377313|379206|379207|379215|379222|379229|379238|402826|402833|403156|403157|403158|403165|403169|403172|403173|403175|403178|403179|403181|403182|403183|403186|403187|403188|403190|403192|403193|403194|403196|403198|403207|403218|403220|403223|403225|403225|403229|403231|403243|403244|403365|403613|403621|403622|403627|403630|403631|403632|403634|403640|403641|403644|403645|403648|403649|403651|403655|403656|403657|403658|403659|403660|403675|403677|403687|410439|410440|410441|410443|410447|410448|410454|410457|410458|410460|410461|410462|410463|410466|410468|420685|420690|420691|420695|420699|420706|420710|420711|420719|420720|420726|420728|432946|432948|432949|432950|432951|432952|434508|439636|468443|468449|468455|468456|468458|468464|468466|468468|468477|468479|468481|468486|468488|468491|469084|469315|469333|469340|469345|469346|469350|469353|469354|469357|469362|469366|469376|469377|469384|469386|469392|469393|469396|469455|469748|469751|469756|469762|469765|469767|469776|469778|469780|469788|469789|469794|469805|469808|470369|470371|470382|470383|470386|470387|470394|470396|470399|470405|470411|470415|470419|470421|470426|470429|470432|479736|479738|479740|479760|479764|479776|479778|479799|479801|479802|479809|479810|479816|479834|479836|479840|479870|479879|480283|480284|480288|480291|480296|480298|483063|483074|483082|483098|483100|485262|485277|485292|485426|485458|485462|485481|485557|488038|495509|506719|532356|532388|532660|532661|532662|532665|532669|532673|532674|532675|532677|532680|532682|532683|532684|532685|532686|532687|532688|532689|532690|532692|532693|532695|532697|532698|532699|532701|532703|532704|532706|532709|532712|532713|532714|532720|532726|532735|532736|532738|533090|533092|533098|533102|533112|533113|533118|533123|533125|539385|539386|539387|539388|539389|539390|539391|570478|570482|570484|570486|570488|570489|570490|570493|570499|570500|570505|570507|572181|572183|572185|572188|572190|572194|572197|572198|572206|572207|572209|572211|572213|572215|572702|572703|572704|572710|572891|572892|572895|572902|572903|572905|572906|572907|572908|572909|573453|574864|574865|574866|574867|574872|574873|575072|575073|576036|576037|576038|576039|576040|576041|611263|611264|618974|618984|618986|618988|618991|619002|619902|621627|621628|647652|647653|647654|647655|647656|647657|647658|647659|647660|647661|647662|647663|647664|647665|647666|647667|647668|647669|647670|647671|647672|647673|647674|647675|647676|647677|647678|647679|647680|647681|647682|647683|647684|647685|647686|647687|647688|647689|647690|647691|647692|647693|647694|647695|653010|653144|653447|653488|653565|653566|653569|653571|677385|684780|694329|694330|756706|760751|772382|772386|772394|776535|776832|786045|786047|786048|786051|788247|791888|791889|791890|791891|791892|791893|814839|814840|814852|814869|814889|814898|814901|814914|814918|821232|821233|821234|821235|821236|821237|821238|821302|821303|847235|847236|847237|847238|847239|847240|847241|847242|847243|847244|847245|847246|847247|847248|847249|847250|847251|847252|847253|847254|847255|847256|847257|847258|847259|847260|847261|847262|847263|847264|847265|847266|847267|847268|847269|847270|847271|847272|847273|847274|847275|847276|847277|847278|851840|852846|852850|852852|852897|852949|852956|852958|879907|879908|879909|879910|879911|879912|879913|879914|879915|879916|879917|879918|879919|879920|879921|879922|879923|879924|879925|879926|879927|879928|879929|879930|879931|879932|879933|879934|879935|879936|879937|879938|879939|879940|879941|879942|879943|879944|879945|914829|914836|914837|914850|928827|928828|928829|928830|928831|928832|928833|928834|928835|928836|928837|928838|928839|928840|938565|938566|938567|938568|938569|938570|938571|938572|938573|938574|938575|940468|940469|941224|950662|950663|950664|950665|950666|950667|950668|950669|958529|958530|958531|958532|960281|960282|960913|967214|967215|970099|972604|983468", "text": "Peutz-Jeghers syndrome" }, { - "baseId": "22487|39318|150842|151068|151912|181065|181068|222800|239444|239474|239498|394098|394101|394222|394336|394339|403225|453508|453809|453899|563999", + "upstreamId": "22487|39318|150842|151068|151912|181065|181068|222800|239444|239474|239498|394098|394101|394222|394336|394339|403225|453508|453809|453899|563999", "text": "Malignant tumor of testis" }, { - "baseId": "22489|22494|22495|22496", + "upstreamId": "22489|22494|22495|22496", "text": "Cutaneous malignant melanoma 1" }, { - "baseId": "22489|22875|22876|22877|24448|24451|27639|28695|28895|28899|28902|28904|28905|28938|28939|28940|29000|29005|29007|29008|29009|29011|29013|29346|31968|32617|32621|32625|32627|32628|38747|48247|48837|48858|48859|48938|48939|48940|48941|49070|49214|49216|49251|53979|53980|53982|53983|83949|85317|85318|87578|88528|97376|172332|174042|174177|174179|179094|198628|216786|224866|263939|359197|359643|362750|362751|362752|362753|362754|362755|362756|362773|362774|362783|362784|362785|362786|362787|362788|362789|362790|362791|362792|362793|362794|362795|362796|362797|362798|362800|362801|362802|362803|362806|362807|362809|362810|362811|362812|362818|362819|362820|362821|362822|362823|362824|362825|362826|362827|362834|362835|362836|362856|362857|362858|362859|362860|362861|362862|362863|362880|362881|362906|362907|362933|362936|362948|362949|362950|362951|362952|362953|363047|363048|363049|363050|363051|363052|363053|363054|363055|363056|363057|363058|363059|363060|363061|363062|363063|363064|363065|363099|363102|363103|363104|363105|363106|363108|363119|363135|363162|363163|363164|363165|363166|363167|363168|363169|363174|363236|363237|363241|407660|514029", + "upstreamId": "22489|22875|22876|22877|24448|24451|27639|28695|28895|28899|28902|28904|28905|28938|28939|28940|29000|29005|29007|29008|29009|29011|29013|29346|31968|32617|32621|32625|32627|32628|38747|48247|48837|48858|48859|48938|48939|48940|48941|49070|49214|49216|49251|53979|53980|53982|53983|83949|85317|85318|87578|88528|97376|172332|174042|174177|174179|179094|198628|216786|224866|263939|359197|359643|362750|362751|362752|362753|362754|362755|362756|362773|362774|362783|362784|362785|362786|362787|362788|362789|362790|362791|362792|362793|362794|362795|362796|362797|362798|362800|362801|362802|362803|362806|362807|362809|362810|362811|362812|362818|362819|362820|362821|362822|362823|362824|362825|362826|362827|362834|362835|362836|362856|362857|362858|362859|362860|362861|362862|362863|362880|362881|362906|362907|362933|362936|362948|362949|362950|362951|362952|362953|363047|363048|363049|363050|363051|363052|363053|363054|363055|363056|363057|363058|363059|363060|363061|363062|363063|363064|363065|363099|363102|363103|363104|363105|363106|363108|363119|363135|363162|363163|363164|363165|363166|363167|363168|363169|363174|363236|363237|363241|407660|514029", "text": "Melanoma" }, { - "baseId": "22501|22502|22503|22504|22505|22506|22507|22509|39207|39208|39209|49907|134762|134763|134764|141684|141685|192326|192326|201048|201049|201049|201051|201052|201053|201054|201055|201055|201057|201057|201058|201060|201061|201062|206727|238152|238153|266314|271776|276764|276765|276766|276771|276772|276775|276777|276778|276779|276780|276787|276788|277031|277033|277034|277037|277043|277044|277057|277064|277070|277071|277073|277614|277615|277617|277626|277643|277669|277676|277681|277683|277684|277687|277768|277769|277772|277774|277775|277778|277779|277782|364480|364538|364563|364622|390841|390845|390846|390848|427657|442645|447211|447215|447318|447394|498080|515169|515169|515172|515212|556707|556709|556711|558176|626984|626985|626986|626987|626988|626989|822879|822880|822881|822882|822883|822884|822885|822886|822887|862502|862503|862504|862505|862506|862507|862508|862509|862510|862511|862512|862513|862514|862515|862516|862517|862518|862519|862520|862521|862522|862523|862524|862525|862526|862527|862528|862529|862530|862531|862532|862533|862534|862535|921691|921692|921693|921694|921695|930099|930100|941518|941519|941520|941521|941522|952115|964133", + "upstreamId": "22501|22502|22503|22504|22505|22506|22507|22509|39207|39208|39209|49907|134762|134763|134764|141684|141685|192326|192326|201048|201049|201049|201051|201052|201053|201054|201055|201055|201057|201057|201058|201060|201061|201062|206727|238152|238153|266314|271776|276764|276765|276766|276771|276772|276775|276777|276778|276779|276780|276787|276788|277031|277033|277034|277037|277043|277044|277057|277064|277070|277071|277073|277614|277615|277617|277626|277643|277669|277676|277681|277683|277684|277687|277768|277769|277772|277774|277775|277778|277779|277782|364480|364538|364563|364622|390841|390845|390846|390848|427657|442645|447211|447215|447318|447394|498080|515169|515169|515172|515212|556707|556709|556711|558176|626984|626985|626986|626987|626988|626989|822879|822880|822881|822882|822883|822884|822885|822886|822887|862502|862503|862504|862505|862506|862507|862508|862509|862510|862511|862512|862513|862514|862515|862516|862517|862518|862519|862520|862521|862522|862523|862524|862525|862526|862527|862528|862529|862530|862531|862532|862533|862534|862535|921691|921692|921693|921694|921695|930099|930100|941518|941519|941520|941521|941522|952115|964133", "text": "EAST syndrome" }, { - "baseId": "22501|263305|440711|980561", + "upstreamId": "22501|263305|440711|980561", "text": "Spastic diplegia" }, { - "baseId": "22501|32043|32043|178258|263276|361233|362233|514116|622035|678050|966399|971381", + "upstreamId": "22501|32043|32043|178258|263276|361233|362233|514116|622035|678050|966399|971381", "text": "Bilateral sensorineural hearing impairment" }, { - "baseId": "22501", + "upstreamId": "22501", "text": "Renal tubular dysfunction" }, { - "baseId": "22509|206727", + "upstreamId": "22509|206727", "text": "KCNJ10-Related Disorders" }, { - "baseId": "22510|22511|22512|22514|22515|22516|224659|224660|224661|224662|224663|224664|578361|918554", + "upstreamId": "22510|22511|22512|22514|22515|22516|224659|224660|224661|224662|224663|224664|578361|918554", "text": "Lipid proteinosis" }, { - "baseId": "22517|22518|22519|22521|22522|22523|167391|190380|212614|212614|213813|213814|221739|240172|240173|244506|252932|252933|252934|303433|303434|306832|306834|311679|311681|369273|369610|369611|369980|371362|396034|396139|396419|396422|407258|425764|433611|441143|441144|441146|444162|456919|456922|456923|456925|457448|457451|457455|457590|457593|457917|457918|457923|495216|502159|513581|522263|522820|522826|522828|522834|523065|523269|523374|561763|562170|562179|564415|566151|566153|609669|636336|636337|636338|636339|636340|636341|636342|636343|655804|683935|687114|689885|722659|766403|775277|782931|819916|819917|833835|833836|833837|833838|833839|833840|833841|833842|833843|833844|833845|833846|851658|898405|898406|898407|898408|898409|898410|898411|898412|900402|904502|924904|924905|924906|924907|924908|933993|933994|933995|933996|933997|933998|933999|945758|945759|945760|945761|945762|955216|962980", + "upstreamId": "22517|22518|22519|22521|22522|22523|167391|190380|212614|212614|213813|213814|221739|240172|240173|244506|252932|252933|252934|303433|303434|306832|306834|311679|311681|369273|369610|369611|369980|371362|396034|396139|396419|396422|407258|425764|433611|441143|441144|441146|444162|456919|456922|456923|456925|457448|457451|457455|457590|457593|457917|457918|457923|495216|502159|513581|522263|522820|522826|522828|522834|523065|523269|523374|561763|562170|562179|564415|566151|566153|609669|636336|636337|636338|636339|636340|636341|636342|636343|655804|683935|687114|689885|722659|766403|775277|782931|819916|819917|833835|833836|833837|833838|833839|833840|833841|833842|833843|833844|833845|833846|851658|898405|898406|898407|898408|898409|898410|898411|898412|900402|904502|924904|924905|924906|924907|924908|933993|933994|933995|933996|933997|933998|933999|945758|945759|945760|945761|945762|955216|962980", "text": "Charcot-Marie-Tooth disease axonal type 2F" }, { - "baseId": "22517|22518|22519|22520|22522|22523|22524|190380|212614|212614|240172|252932|252933|252934|303433|303434|306832|306834|311679|311681|369610|371362|407258|441143|441144|522820|522828|540450|551460|551461|551462|655804|687114|898405|898406|898407|898408|898409|898410|898411|898412|900402|945761", + "upstreamId": "22517|22518|22519|22520|22522|22523|22524|190380|212614|212614|240172|252932|252933|252934|303433|303434|306832|306834|311679|311681|369610|371362|407258|441143|441144|522820|522828|540450|551460|551461|551462|655804|687114|898405|898406|898407|898408|898409|898410|898411|898412|900402|945761", "text": "Distal hereditary motor neuronopathy type 2B" }, { - "baseId": "22525", + "upstreamId": "22525", "text": "Age-related macular degeneration 7" }, { - "baseId": "22525", + "upstreamId": "22525", "text": "Susceptibility to neovascular type of age-related macular degeneration" }, { - "baseId": "22526|22527|22528|22529|34176|34177|34178|39200|165895|165896|165897|165898|165899|320969|550880|858653", + "upstreamId": "22526|22527|22528|22529|34176|34177|34178|39200|165895|165896|165897|165898|165899|320969|550880|858653", "text": "CARASIL" }, { - "baseId": "22526", + "upstreamId": "22526", "text": "HTRA1-related cerebral small vessel disease" }, { - "baseId": "22527|263239|514161|514195|514201|789341|789342|789343|802096|806288|904354", + "upstreamId": "22527|263239|514161|514195|514201|789341|789342|789343|802096|806288|904354", "text": "Cognitive impairment" }, { - "baseId": "22527", + "upstreamId": "22527", "text": "Personality changes" }, { - "baseId": "22527", + "upstreamId": "22527", "text": "Small vessel cerebrovascular disease" }, { - "baseId": "22527|222926|222927|222928|222929|514223|514224|514225|514226|514227|514228|514229|964340|965880", + "upstreamId": "22527|222926|222927|222928|222929|514223|514224|514225|514226|514227|514228|514229|964340|965880", "text": "Cerebral arteriopathy, autosomal dominant, with subcortical infarcts and leukoencephalopathy, type 2" }, { - "baseId": "22530|22531|22532|513210", + "upstreamId": "22530|22531|22532|513210", "text": "Spondylo-megaepiphyseal-metaphyseal dysplasia" }, { - "baseId": "22534|22535|45735|138608|138610|236946|452155|452531|519195|519196|519197|519333|519341|519344|559451|559453|631265|631266|631267|720421|730212|748220|827979|827980|918162|943503|943504|943505", + "upstreamId": "22534|22535|45735|138608|138610|236946|452155|452531|519195|519196|519197|519333|519341|519344|559451|559453|631265|631266|631267|720421|730212|748220|827979|827980|918162|943503|943504|943505", "text": "Myd88 deficiency" }, { - "baseId": "22536|39199|136176|136177|136178|194374|205776|205777|208144|215733|265482|270785|321956|321958|331256|338053|338054|373322|445266|463934|513639|528556|528946|528947|528950|610618|620501|626234|652631|789128|873027|873028|873029|873030|873031|873032|873033|873034|876469|876470|983844", + "upstreamId": "22536|39199|136176|136177|136178|194374|205776|205777|208144|215733|265482|270785|321956|321958|331256|338053|338054|373322|445266|463934|513639|528556|528946|528947|528950|610618|620501|626234|652631|789128|873027|873028|873029|873030|873031|873032|873033|873034|876469|876470|983844", "text": "Pontocerebellar hypoplasia type 1A" }, { - "baseId": "22536|48180|360506|621025|622148", + "upstreamId": "22536|48180|360506|621025|622148", "text": "Multiple congenital anomalies" }, { - "baseId": "22536|39199|136176|136178|191026|194374|205777|208144|215733|265482|268654|270785|321956|331256|338053|373322|409180|445264|445265|445266|464502|512107|528555|528952|566825|566833|566842|566850|566852|567774|568542|568545|569167|569178|569181|569183|573104|573106|610618|642970|642971|642972|642973|642974|642975|642976|642977|642978|642979|642980|642981|642982|652369|652569|652631|652900|693634|695634|714299|754258|820662|820663|842067|842068|842069|842070|842071|842072|842073|842074|842075|842076|842077|852025|852027|927247|927248|927249|927250|927251|936828|940320|941078|948775|948776|948777|948778|957361|957362|957363|957364|957365|960101|960816|979553|979554|979555|979556|979557|979558", + "upstreamId": "22536|39199|136176|136178|191026|194374|205777|208144|215733|265482|268654|270785|321956|331256|338053|373322|409180|445264|445265|445266|464502|512107|528555|528952|566825|566833|566842|566850|566852|567774|568542|568545|569167|569178|569181|569183|573104|573106|610618|642970|642971|642972|642973|642974|642975|642976|642977|642978|642979|642980|642981|642982|652369|652569|652631|652900|693634|695634|714299|754258|820662|820663|842067|842068|842069|842070|842071|842072|842073|842074|842075|842076|842077|852025|852027|927247|927248|927249|927250|927251|936828|940320|941078|948775|948776|948777|948778|957361|957362|957363|957364|957365|960101|960816|979553|979554|979555|979556|979557|979558", "text": "Pontocerebellar hypoplasia type 1" }, { - "baseId": "22536|70511|136139|136140|171752|194356|315006|440896|454067|487068|487069|521591|563203|564114|576821|576823|621743|621744|621745|622790|625212|633999|651260|788956|819603|861397|904360|916957|917447|974495", + "upstreamId": "22536|70511|136139|136140|171752|194356|315006|440896|454067|487068|487069|521591|563203|564114|576821|576823|621743|621744|621745|622790|625212|633999|651260|788956|819603|861397|904360|916957|917447|974495", "text": "Spinal muscular atrophy" }, { - "baseId": "22537|22538|22539|54162|54163|54164|54165|54166|54168|54169|175943|175944|175945|175946|175948|176086|176089|176092|190836|227360|230541|321447|321453|321456|321458|321464|330711|330712|330713|330714|330716|330717|330723|330724|330725|337342|337344|337351|337352|337356|337357|337377|339371|339379|339386|339389|339391|339392|339398|339399|339401|339407|389245|389246|625876|857685|860125|872698|872699|872700|872701|872702|872703|872704|872705|872706|872707|872708|872709|872710|872711|872712|872713|872714|872715|876453", + "upstreamId": "22537|22538|22539|54162|54163|54164|54165|54166|54168|54169|175943|175944|175945|175946|175948|176086|176089|176092|190836|227360|230541|321447|321453|321456|321458|321464|330711|330712|330713|330714|330716|330717|330723|330724|330725|337342|337344|337351|337352|337356|337357|337377|339371|339379|339386|339389|339391|339392|339398|339399|339401|339407|389245|389246|625876|857685|860125|872698|872699|872700|872701|872702|872703|872704|872705|872706|872707|872708|872709|872710|872711|872712|872713|872714|872715|876453", "text": "Deafness, autosomal recessive 35" }, { - "baseId": "22542", + "upstreamId": "22542", "text": "Waardenburg syndrome type 2D" }, { - "baseId": "22543|28882|28883|28884|28886|28887|28888|28889|28890|28900|28903|50038|50039|50040|50043|50045|138360|138368|171097|171098|221464|221466|221467|221469|221471|221472|221473|221474|227193|239444|239444|239458|239464|239467|239471|239474|239477|239482|239488|239491|239495|239497|239498|251500|251502|251504|251505|293581|293582|293587|293588|293595|293596|293612|295032|295038|295039|295040|298678|298679|298680|298681|298683|298688|298703|298704|298711|305476|305477|305481|309352|309358|309359|309361|314683|314684|314685|314686|314691|314692|314693|314697|314698|314703|380482|394068|394077|394098|394105|394222|394334|394336|394339|394469|394518|394541|453445|453508|453809|453899|520120|520401|562207|563999|723133|829329|890761|890762|890763|890764|890765|890766|890767|890768|890769|890770|890771|890772|890773|890774|890775|890776|890777|890778|890779|890780|890781|890782|890783|891800|899736|899737|899738|899739|899740|899741|899742|899743|899744|899745|899746|899747|899748|899749", + "upstreamId": "22543|28882|28883|28884|28886|28887|28888|28889|28890|28900|28903|50038|50039|50040|50043|50045|138360|138368|171097|171098|221464|221466|221467|221469|221471|221472|221473|221474|227193|239444|239444|239458|239464|239467|239471|239474|239477|239482|239488|239491|239495|239497|239498|251500|251502|251504|251505|293581|293582|293587|293588|293595|293596|293612|295032|295038|295039|295040|298678|298679|298680|298681|298683|298688|298703|298704|298711|305476|305477|305481|309352|309358|309359|309361|314683|314684|314685|314686|314691|314692|314693|314697|314698|314703|380482|394068|394077|394098|394105|394222|394334|394336|394339|394469|394518|394541|453445|453508|453809|453899|520120|520401|562207|563999|723133|829329|890761|890762|890763|890764|890765|890766|890767|890768|890769|890770|890771|890772|890773|890774|890775|890776|890777|890778|890779|890780|890781|890782|890783|891800|899736|899737|899738|899739|899740|899741|899742|899743|899744|899745|899746|899747|899748|899749", "text": "Partial albinism" }, { - "baseId": "22544|28028|39430|45846|255586|514055|918921|966695|966696|971020", + "upstreamId": "22544|28028|39430|45846|255586|514055|918921|966695|966696|971020", "text": "Clubfoot" }, { - "baseId": "22545|22546|22547|22548|22549|33483|187106|249570|249571|249572|277487|277488|277490|277495|277502|277503|277679|277680|277690|277697|277699|278575|278576|278580|278584|278585|278594|278598|278605|278612|278613|278625|278626|278627|278631|278659|278662|434564|789888|789889|789890|862853|862854|862855|862856|862857|862858|862859|862860|862861|862862|862863|862864|862865|862866|862867|862868|918581|964136", + "upstreamId": "22545|22546|22547|22548|22549|33483|187106|249570|249571|249572|277487|277488|277490|277495|277502|277503|277679|277680|277690|277697|277699|278575|278576|278580|278584|278585|278594|278598|278605|278612|278613|278625|278626|278627|278631|278659|278662|434564|789888|789889|789890|862853|862854|862855|862856|862857|862858|862859|862860|862861|862862|862863|862864|862865|862866|862867|862868|918581|964136", "text": "Short stature-pituitary and cerebellar defects-small sella turcica syndrome" }, { - "baseId": "22550|22551|22552|22553|48432|48433|48434|439278|905865", + "upstreamId": "22550|22551|22552|22553|48432|48433|48434|439278|905865", "text": "Mitochondrial complex 1 deficiency, nuclear type 2" }, { - "baseId": "22554|211110|211112|966197", + "upstreamId": "22554|211110|211112|966197", "text": "Mitochondrial complex 1 deficiency, nuclear type 13" }, { - "baseId": "22555|22555|22555|22556|22556|22557|22558|22558|22558|22559|99009|99009|99011|99012|99013|99015|99016|99018|99019|101774|135328|135331|177929|177930|177936|186748|186748|186749|186750|186751|186751|186752|186753|186754|186754|186755|186755|186756|186757|186758|186758|186759|186760|191498|191766|191767|192238|194834|194835|194836|199789|199789|214067|214069|214069|226052|226052|237007|247025|252970|252971|252973|252974|252975|252976|252977|259881|259881|266955|267046|267626|268098|268900|269237|269239|270884|271229|271283|271739|272009|272261|272493|272694|272943|272958|275143|275486|275498|275801|276002|276868|276869|277804|277840|280468|281942|286884|286896|286909|289994|290437|299206|299218|299221|300174|300188|300204|301634|301635|303571|303581|303582|303594|303595|303600|303601|303608|303609|305891|305934|305935|307015|307021|307023|307030|307033|307057|307061|307062|307381|307383|307395|307601|307606|307616|309980|311933|311935|311936|311940|311960|311966|311973|311974|311975|311977|314174|315287|315317|315361|315362|315363|318465|318486|320714|320718|320719|326608|326788|326801|327733|327741|327742|332767|332829|332847|334420|334443|334498|334528|337502|337524|337540|344170|344173|344182|345578|345586|347084|347093|351119|351141|351148|353065|353190|353191|357586|357587|357588|357589|357590|357591|357592|357593|357593|357594|357595|357596|357597|357597|357598|357599|357600|357601|357602|357603|357604|357605|357606|357607|357608|357609|357610|357611|357612|357613|357614|357615|357616|357617|357618|357619|357620|357621|357622|357622|357623|357624|357625|357626|357627|357628|415115|434621|434621|481440|481442|486419|487227|489369|489389|489456|489595|489836|491365|492065|493742|494170|522268|538396|544081|544294|544295|544297|544298|544300|544307|544320|544331|544333|544341|544342|544344|544347|544355|544596|544603|544605|544608|544610|544611|544614|544617|544617|544619|544620|544621|544623|544626|544627|544628|544637|544642|544643|544644|544649|544656|544662|544664|544667|544669|544671|544675|544679|544682|544684|544691|544697|544699|544706|544711|544713|544715|544717|544723|544725|552119|564500|578463|582759|582791|585438|585607|585811|587108|587439|588430|589104|619942|619943|620279|621279|636446|636447|636448|636449|636450|636451|636452|651707|683139|711181|711182|722721|722723|736326|736327|736328|736329|750830|759661|766445|766446|766447|766448|766450|766453|766454|766455|766456|766457|766458|766459|766461|766462|766463|775279|775422|782946|782949|787566|791139|791274|791275|798917|798917|801650|801651|801652|801653|801654|801655|801656|818389|818403|819923|819924|833930|833931|833932|833933|833934|833935|833936|833937|833938|833939|833940|833941|833942|833943|833944|833945|852383|852388|852389|898497|898498|898499|898500|898501|898502|898503|898504|898505|898506|898507|898508|898509|898510|898511|898512|898513|898514|898515|898516|898517|898518|900413|900414|900415|900416|900417|900418|955250", + "upstreamId": "22555|22555|22555|22556|22556|22557|22558|22558|22558|22559|99009|99009|99011|99012|99013|99015|99016|99018|99019|101774|135328|135331|177929|177930|177936|186748|186748|186749|186750|186751|186751|186752|186753|186754|186754|186755|186755|186756|186757|186758|186758|186759|186760|191498|191766|191767|192238|194834|194835|194836|199789|199789|214067|214069|214069|226052|226052|237007|247025|252970|252971|252973|252974|252975|252976|252977|259881|259881|266955|267046|267626|268098|268900|269237|269239|270884|271229|271283|271739|272009|272261|272493|272694|272943|272958|275143|275486|275498|275801|276002|276868|276869|277804|277840|280468|281942|286884|286896|286909|289994|290437|299206|299218|299221|300174|300188|300204|301634|301635|303571|303581|303582|303594|303595|303600|303601|303608|303609|305891|305934|305935|307015|307021|307023|307030|307033|307057|307061|307062|307381|307383|307395|307601|307606|307616|309980|311933|311935|311936|311940|311960|311966|311973|311974|311975|311977|314174|315287|315317|315361|315362|315363|318465|318486|320714|320718|320719|326608|326788|326801|327733|327741|327742|332767|332829|332847|334420|334443|334498|334528|337502|337524|337540|344170|344173|344182|345578|345586|347084|347093|351119|351141|351148|353065|353190|353191|357586|357587|357588|357589|357590|357591|357592|357593|357593|357594|357595|357596|357597|357597|357598|357599|357600|357601|357602|357603|357604|357605|357606|357607|357608|357609|357610|357611|357612|357613|357614|357615|357616|357617|357618|357619|357620|357621|357622|357622|357623|357624|357625|357626|357627|357628|415115|434621|434621|481440|481442|486419|487227|489369|489389|489456|489595|489836|491365|492065|493742|494170|522268|538396|544081|544294|544295|544297|544298|544300|544307|544320|544331|544333|544341|544342|544344|544347|544355|544596|544603|544605|544608|544610|544611|544614|544617|544617|544619|544620|544621|544623|544626|544627|544628|544637|544642|544643|544644|544649|544656|544662|544664|544667|544669|544671|544675|544679|544682|544684|544691|544697|544699|544706|544711|544713|544715|544717|544723|544725|552119|564500|578463|582759|582791|585438|585607|585811|587108|587439|588430|589104|619942|619943|620279|621279|636446|636447|636448|636449|636450|636451|636452|651707|683139|711181|711182|722721|722723|736326|736327|736328|736329|750830|759661|766445|766446|766447|766448|766450|766453|766454|766455|766456|766457|766458|766459|766461|766462|766463|775279|775422|782946|782949|787566|791139|791274|791275|798917|798917|801650|801651|801652|801653|801654|801655|801656|818389|818403|819923|819924|833930|833931|833932|833933|833934|833935|833936|833937|833938|833939|833940|833941|833942|833943|833944|833945|852383|852388|852389|898497|898498|898499|898500|898501|898502|898503|898504|898505|898506|898507|898508|898509|898510|898511|898512|898513|898514|898515|898516|898517|898518|900413|900414|900415|900416|900417|900418|955250", "text": "Peroxisome biogenesis disorder 1A (Zellweger)" }, { - "baseId": "22555|22555|22555|22556|22558|22558|22558|99009|186748|186751|186754|186755|186758|194834|199789|199789|214069|226052|259881|266955|271033|271283|272958|357586|357587|357588|357589|357590|357591|357593|357593|357594|357595|357596|357597|357597|357598|357599|357600|357601|357602|357603|357604|357605|357606|357607|357608|357609|357610|357611|357612|357613|357614|357615|357616|357617|357618|357619|357620|357621|357622|357622|357623|357624|357625|357626|357627|357628|434621|486419|487227|489836|493742|538396|544617|578463|582791|626312|798917|801650|801651|801652|801653|801654|801655|801656|955250", + "upstreamId": "22555|22555|22555|22556|22558|22558|22558|99009|186748|186751|186754|186755|186758|194834|199789|199789|214069|226052|259881|266955|271033|271283|272958|357586|357587|357588|357589|357590|357591|357593|357593|357594|357595|357596|357597|357597|357598|357599|357600|357601|357602|357603|357604|357605|357606|357607|357608|357609|357610|357611|357612|357613|357614|357615|357616|357617|357618|357619|357620|357621|357622|357622|357623|357624|357625|357626|357627|357628|434621|486419|487227|489836|493742|538396|544617|578463|582791|626312|798917|801650|801651|801652|801653|801654|801655|801656|955250", "text": "Peroxisome biogenesis disorder 1B" }, { - "baseId": "22555|22555|22556|22558|22558|194834|199789|214067|214068|214069|214070|226052|226053|266955|272958|307030|357592|487227|489836|493742|538396|578463|955250", + "upstreamId": "22555|22555|22556|22558|22558|194834|199789|214067|214068|214069|214070|226052|226053|266955|272958|307030|357592|487227|489836|493742|538396|578463|955250", "text": "Deafness enamel hypoplasia nail defects" }, { - "baseId": "22555", + "upstreamId": "22555", "text": "Peroxisomal disorder" }, { - "baseId": "22555|22558|226047|281791|485898|623144|623176", + "upstreamId": "22555|22558|226047|281791|485898|623144|623176", "text": "Peroxisome biogenesis disorders" }, { - "baseId": "22560", + "upstreamId": "22560", "text": "Celiac disease 4" }, { - "baseId": "22561|22562|22563|22564|22565|22566", + "upstreamId": "22561|22562|22563|22564|22565|22566", "text": "Mitochondrial complex 4 deficiency, nuclear type 3" }, { - "baseId": "22567|54379|54381|54382|54382|54383|54383|81088|173573|173574|173577|173578|173709|173709|173711|173712|173713|173714|173714|173715|173718|173718|191802|191802|229284|229286|229286|229290|229292|229293|229294|229294|229295|270330|270875|270875|295658|295659|295668|295669|295676|295677|295682|295686|295686|295690|295693|295694|295702|295703|295708|295709|297462|297463|297469|297484|297495|297501|297502|297502|297513|297513|297515|297516|297527|297528|297529|297549|301341|301351|301368|301377|301380|301395|301522|301523|301527|301528|301536|301538|301539|301540|301542|301547|301552|301553|301553|301554|301554|301561|301561|301564|301577|301578|301578|301580|301596|413208|438303|443695|454665|454670|454670|454672|454746|454761|454764|455210|455215|455217|455226|455233|455477|455489|455498|455512|496385|496801|520821|520821|520822|520827|520836|520836|521067|521070|521087|521216|521222|521223|521223|521225|521229|521231|521233|521233|521269|521271|521279|521285|538984|560175|560177|560177|560284|560286|560286|560288|560290|560292|562894|562898|562901|564862|564863|564864|564865|564870|584463|590277|620188|633524|633525|633526|633527|633528|633529|633530|633531|633532|633533|633534|633535|633536|633537|633538|633539|633540|633541|633542|633543|677278|698878|709681|721262|749277|749278|764930|764931|775018|777433|779083|782190|782193|790520|790521|801810|816453|819562|830402|830403|830404|830405|830406|830407|830408|830409|830410|830411|830412|830413|830414|830415|830416|830417|830418|830419|830420|830421|893113|893114|893115|893116|893117|893118|893119|893120|893121|893122|893123|893124|893125|893126|893127|893128|893129|893130|893131|893131|893132|893133|893134|893135|893136|893137|893138|893139|893140|893141|896047|896048|896049|896050|896051|896052|918925|918926|918927|923904|923905|923906|923907|923908|923909|923910|923911|923912|923913|923914|923915|932748|932749|932750|932751|932752|944433|944434|944435|944436|944437|944439|944440|954062|954063|954064|954065|954066|954067", + "upstreamId": "22567|54379|54381|54382|54382|54383|54383|81088|173573|173574|173577|173578|173709|173709|173711|173712|173713|173714|173714|173715|173718|173718|191802|191802|229284|229286|229286|229290|229292|229293|229294|229294|229295|270330|270875|270875|295658|295659|295668|295669|295676|295677|295682|295686|295686|295690|295693|295694|295702|295703|295708|295709|297462|297463|297469|297484|297495|297501|297502|297502|297513|297513|297515|297516|297527|297528|297529|297549|301341|301351|301368|301377|301380|301395|301522|301523|301527|301528|301536|301538|301539|301540|301542|301547|301552|301553|301553|301554|301554|301561|301561|301564|301577|301578|301578|301580|301596|413208|438303|443695|454665|454670|454670|454672|454746|454761|454764|455210|455215|455217|455226|455233|455477|455489|455498|455512|496385|496801|520821|520821|520822|520827|520836|520836|521067|521070|521087|521216|521222|521223|521223|521225|521229|521231|521233|521233|521269|521271|521279|521285|538984|560175|560177|560177|560284|560286|560286|560288|560290|560292|562894|562898|562901|564862|564863|564864|564865|564870|584463|590277|620188|633524|633525|633526|633527|633528|633529|633530|633531|633532|633533|633534|633535|633536|633537|633538|633539|633540|633541|633542|633543|677278|698878|709681|721262|749277|749278|764930|764931|775018|777433|779083|782190|782193|790520|790521|801810|816453|819562|830402|830403|830404|830405|830406|830407|830408|830409|830410|830411|830412|830413|830414|830415|830416|830417|830418|830419|830420|830421|893113|893114|893115|893116|893117|893118|893119|893120|893121|893122|893123|893124|893125|893126|893127|893128|893129|893130|893131|893131|893132|893133|893134|893135|893136|893137|893138|893139|893140|893141|896047|896048|896049|896050|896051|896052|918925|918926|918927|923904|923905|923906|923907|923908|923909|923910|923911|923912|923913|923914|923915|932748|932749|932750|932751|932752|944433|944434|944435|944436|944437|944439|944440|954062|954063|954064|954065|954066|954067", "text": "Deafness, autosomal dominant 1" }, { - "baseId": "22568|22569|22572|22573|22574|190447|273149|297678|297679|297687|299869|304055|304057|304410|353705|894419|894420", + "upstreamId": "22568|22569|22572|22573|22574|190447|273149|297678|297679|297687|299869|304055|304057|304410|353705|894419|894420", "text": "Congenital absence of salivary gland" }, { - "baseId": "22570|22571|22572|22573|28335|28336|28337|31393|304410|309577|314378|314379|320877|320916|320937|353705|535686|537787|537788|537789|537790|537791|537792|537793|537868|537869|576111|798979|918969", + "upstreamId": "22570|22571|22572|22573|28335|28336|28337|31393|304410|309577|314378|314379|320877|320916|320937|353705|535686|537787|537788|537789|537790|537791|537792|537793|537868|537869|576111|798979|918969", "text": "Levy-Hollister syndrome" }, { - "baseId": "22575|22576|22577|22578|100035|100036|100042|100045|100047|100050|100051|100058|100065|100067|100068|100074|100076|100080|100085|100091|100093|100096|100097|100103|100106|100116|100126|100132|100138|100139|100140|100142|100147|100148|100150|100153|100154|100157|100160|138340|138400|138411|138412|138424|138428|138432|138436|138439|138445|138450|138456|138465|138469|138470|139347|168898|168899|168900|168901|168902|168903|168904|168905|168906|168907|168908|168909|168910|168911|168912|168913|168914|168916|168917|168918|168919|168920|168921|168922|168924|168925|168926|168927|168928|168929|168930|168933|168934|168935|168936|168939|168940|168941|168942|168943|168944|168945|168946|168947|168948|168952|168953|168954|168955|168956|168957|168958|168959|168961|168962|168963|168964|168965|168966|168970|168974|168975|168976|168977|168979|177009|177023|177139|177140|177403|181473|181474|181475|181476|181477|181478|181479|181480|191028|193850|193851|194116|195126|205016|207951|207952|207955|207956|207957|207958|207959|207962|207963|207965|207968|207970|213621|246995|260946|262270|263871|264679|264683|264689|265730|265890|270086|271071|271113|271508|273932|317313|325165|325169|331348|335228|353905|354172|359952|361205|361970|362384|362446|384441|390698|404699|408674|408678|408681|408682|411510|424353|424354|424355|424356|424357|424358|424359|424360|424361|424362|424363|424364|424365|426746|426747|429418|429423|429425|429427|432470|438659|439157|441546|445018|445025|463112|481318|481408|481409|488971|490976|493725|495537|495553|512004|512009|512013|513611|514313|514316|527191|527445|527447|527741|537900|537901|537902|537903|537904|537905|537906|537907|537908|537909|537910|537911|537912|537913|537914|537915|537916|537917|537918|537919|537920|537921|537922|537923|537924|537925|537926|537927|537928|537929|537930|537931|537933|537934|537935|537936|537938|537939|537940|537941|537942|537943|537944|537945|537946|537947|537948|537949|537950|537951|537952|537953|537954|537955|537956|537957|537958|537959|537960|537961|537962|537964|537965|537966|537967|537968|537969|537970|537971|537972|537973|537974|537975|537976|537977|537978|537979|537980|537981|537982|537983|537984|537985|537986|537987|537988|537989|537990|537991|537992|537993|537994|537995|537996|537997|537998|537999|538000|538001|538002|538003|538004|538005|538006|538007|538008|538009|538010|538011|538012|538013|538014|538015|538016|538017|538312|538313|550365|552162|552163|553182|556481|565506|568084|589842|610610|611412|611413|611415|613608|614371|614372|614373|614374|614375|614376|614377|619846|622208|622413|622692|623031|623310|623311|624859|624876|626214|626215|641162|641169|677438|679787|679788|679789|682821|682822|682823|682824|725118|791244|791245|791246|791247|791248|791249|791250|791251|791252|798656|799685|799686|799687|799688|799689|801550|805749|816323|818144|858567|858641|861641|903593|906200|919439|919440|919441|919442|919443|919444|919445|919446|919447|936142|961305|961653|962049|962166|962167|963759|963761|963762|963764|964384|964385|964386|964387|964388|964676|964851|964852|965285|965286|965915|969750|969751|969752|969753|969754|969755|969756|969757|969758|969792|969793|969794|969795|969796|969797|969798|969799|969800|969801|969802|969803|969804|969805|969806|969807|969808|969809|969810|969811|969812|969813|969814|969815|969816|969817|969818|969819|969820|969821|969822|969823|969824|969825|969826|969827|969828|969829|969830|969831|969832|969833|969834|969835|969836|969837|969838|969839|969840|969841|969842|969843|969844|969845|969846|969847|969848|969849|969850|969851|969852|969853|969854|969855|969856|969857|969858|969859|969860|969861|970141|970541|970962|970963|970964|970965|970966|971375|971550|973032|973856|975863|975864|975865|975866|976662|977252|977253|977254|977255|980468|980469", + "upstreamId": "22575|22576|22577|22578|100035|100036|100042|100045|100047|100050|100051|100058|100065|100067|100068|100074|100076|100080|100085|100091|100093|100096|100097|100103|100106|100116|100126|100132|100138|100139|100140|100142|100147|100148|100150|100153|100154|100157|100160|138340|138400|138411|138412|138424|138428|138432|138436|138439|138445|138450|138456|138465|138469|138470|139347|168898|168899|168900|168901|168902|168903|168904|168905|168906|168907|168908|168909|168910|168911|168912|168913|168914|168916|168917|168918|168919|168920|168921|168922|168924|168925|168926|168927|168928|168929|168930|168933|168934|168935|168936|168939|168940|168941|168942|168943|168944|168945|168946|168947|168948|168952|168953|168954|168955|168956|168957|168958|168959|168961|168962|168963|168964|168965|168966|168970|168974|168975|168976|168977|168979|177009|177023|177139|177140|177403|181473|181474|181475|181476|181477|181478|181479|181480|191028|193850|193851|194116|195126|205016|207951|207952|207955|207956|207957|207958|207959|207962|207963|207965|207968|207970|213621|246995|260946|262270|263871|264679|264683|264689|265730|265890|270086|271071|271113|271508|273932|317313|325165|325169|331348|335228|353905|354172|359952|361205|361970|362384|362446|384441|390698|404699|408674|408678|408681|408682|411510|424353|424354|424355|424356|424357|424358|424359|424360|424361|424362|424363|424364|424365|426746|426747|429418|429423|429425|429427|432470|438659|439157|441546|445018|445025|463112|481318|481408|481409|488971|490976|493725|495537|495553|512004|512009|512013|513611|514313|514316|527191|527445|527447|527741|537900|537901|537902|537903|537904|537905|537906|537907|537908|537909|537910|537911|537912|537913|537914|537915|537916|537917|537918|537919|537920|537921|537922|537923|537924|537925|537926|537927|537928|537929|537930|537931|537933|537934|537935|537936|537938|537939|537940|537941|537942|537943|537944|537945|537946|537947|537948|537949|537950|537951|537952|537953|537954|537955|537956|537957|537958|537959|537960|537961|537962|537964|537965|537966|537967|537968|537969|537970|537971|537972|537973|537974|537975|537976|537977|537978|537979|537980|537981|537982|537983|537984|537985|537986|537987|537988|537989|537990|537991|537992|537993|537994|537995|537996|537997|537998|537999|538000|538001|538002|538003|538004|538005|538006|538007|538008|538009|538010|538011|538012|538013|538014|538015|538016|538017|538312|538313|550365|552162|552163|553182|556481|565506|568084|589842|610610|611412|611413|611415|613608|614371|614372|614373|614374|614375|614376|614377|619846|622208|622413|622692|623031|623310|623311|624859|624876|626214|626215|641162|641169|677438|679787|679788|679789|682821|682822|682823|682824|725118|791244|791245|791246|791247|791248|791249|791250|791251|791252|798656|799685|799686|799687|799688|799689|801550|805749|816323|818144|858567|858641|861641|903593|906200|919439|919440|919441|919442|919443|919444|919445|919446|919447|936142|961305|961653|962049|962166|962167|963759|963761|963762|963764|964384|964385|964386|964387|964388|964676|964851|964852|965285|965286|965915|969750|969751|969752|969753|969754|969755|969756|969757|969758|969792|969793|969794|969795|969796|969797|969798|969799|969800|969801|969802|969803|969804|969805|969806|969807|969808|969809|969810|969811|969812|969813|969814|969815|969816|969817|969818|969819|969820|969821|969822|969823|969824|969825|969826|969827|969828|969829|969830|969831|969832|969833|969834|969835|969836|969837|969838|969839|969840|969841|969842|969843|969844|969845|969846|969847|969848|969849|969850|969851|969852|969853|969854|969855|969856|969857|969858|969859|969860|969861|970141|970541|970962|970963|970964|970965|970966|971375|971550|973032|973856|975863|975864|975865|975866|976662|977252|977253|977254|977255|980468|980469", "text": "Kabuki syndrome 1" }, { - "baseId": "22575|100034|100035|100036|100038|100045|100049|100052|100053|100054|100060|100062|100065|100067|100068|100072|100074|100076|100078|100080|100089|100094|100096|100097|100098|100102|100103|100107|100109|100114|100116|100117|100120|100122|100126|100127|100131|100133|100136|100137|100138|100139|100140|100142|100144|100147|100150|100156|100157|100160|138400|138403|138406|138412|138434|138436|138445|138446|138450|138456|138469|138470|138473|168899|168912|168920|168922|168925|168931|168940|168943|168944|168950|168972|168973|177403|177799|190821|191028|193121|193335|193844|193850|193943|194116|194750|195126|207954|207966|237418|254590|254592|264679|264683|264689|265730|266250|267420|268048|269630|270518|271071|273203|274276|317309|317314|317348|317349|317364|317372|317379|325115|325132|325134|325169|325170|331232|331262|331298|331304|331309|331311|331335|331343|331403|332790|359967|362446|429417|438975|462191|462194|462197|462204|462205|462207|462216|462237|462243|462482|462484|462486|462494|462498|462998|463000|463002|463004|463112|463113|463129|463130|491870|503943|512009|527175|527177|527181|527188|527189|527191|527194|527196|527197|527199|527445|527447|527735|527741|527747|527750|537909|537936|537941|537959|537990|565488|565501|565506|565511|565515|565518|565521|565526|565530|566845|566849|566858|568060|568064|568065|568067|568071|568073|568075|568084|568085|568087|571873|571878|588416|641150|641151|641152|641153|641154|641155|641156|641157|641158|641159|641160|641161|641162|641163|641164|641165|641166|641167|641168|641169|641170|641171|641172|641173|641174|641175|641176|641177|641178|641179|641180|652249|652493|652711|688000|693211|693212|693213|693215|693218|693220|702321|702322|702328|702331|702332|702336|725119|738667|738668|738675|738676|753418|769148|776063|822069|822070|822071|822072|822073|822074|839970|839971|839972|839973|839974|839975|839976|839977|839978|839979|839980|839981|839982|839983|839984|839985|839986|839987|839988|839989|839990|839991|839992|851509|852479|926642|926643|926644|926645|926646|926647|926648|926649|926650|926651|936139|936140|936141|936142|936143|936144|948047|948048|948049|948050|956891|956892|956893|960788", + "upstreamId": "22575|100034|100035|100036|100038|100045|100049|100052|100053|100054|100060|100062|100065|100067|100068|100072|100074|100076|100078|100080|100089|100094|100096|100097|100098|100102|100103|100107|100109|100114|100116|100117|100120|100122|100126|100127|100131|100133|100136|100137|100138|100139|100140|100142|100144|100147|100150|100156|100157|100160|138400|138403|138406|138412|138434|138436|138445|138446|138450|138456|138469|138470|138473|168899|168912|168920|168922|168925|168931|168940|168943|168944|168950|168972|168973|177403|177799|190821|191028|193121|193335|193844|193850|193943|194116|194750|195126|207954|207966|237418|254590|254592|264679|264683|264689|265730|266250|267420|268048|269630|270518|271071|273203|274276|317309|317314|317348|317349|317364|317372|317379|325115|325132|325134|325169|325170|331232|331262|331298|331304|331309|331311|331335|331343|331403|332790|359967|362446|429417|438975|462191|462194|462197|462204|462205|462207|462216|462237|462243|462482|462484|462486|462494|462498|462998|463000|463002|463004|463112|463113|463129|463130|491870|503943|512009|527175|527177|527181|527188|527189|527191|527194|527196|527197|527199|527445|527447|527735|527741|527747|527750|537909|537936|537941|537959|537990|565488|565501|565506|565511|565515|565518|565521|565526|565530|566845|566849|566858|568060|568064|568065|568067|568071|568073|568075|568084|568085|568087|571873|571878|588416|641150|641151|641152|641153|641154|641155|641156|641157|641158|641159|641160|641161|641162|641163|641164|641165|641166|641167|641168|641169|641170|641171|641172|641173|641174|641175|641176|641177|641178|641179|641180|652249|652493|652711|688000|693211|693212|693213|693215|693218|693220|702321|702322|702328|702331|702332|702336|725119|738667|738668|738675|738676|753418|769148|776063|822069|822070|822071|822072|822073|822074|839970|839971|839972|839973|839974|839975|839976|839977|839978|839979|839980|839981|839982|839983|839984|839985|839986|839987|839988|839989|839990|839991|839992|851509|852479|926642|926643|926644|926645|926646|926647|926648|926649|926650|926651|936139|936140|936141|936142|936143|936144|948047|948048|948049|948050|956891|956892|956893|960788", "text": "Kabuki syndrome" }, { - "baseId": "22579|22580|22581|22582|22584|22585|76572|192330|192331|193502|195309|250474|250476|250477|267839|268065|272108|283834|284473|284474|284483|284484|284485|284487|284488|286485|490869|550897|584163|620047|719512|730097|747159|790149|883179|883180|883181|883182|883183|883184|883185|883186|883187|883188|883189|883190|883191|883192|883193|883194|883195|883196|883197|883198|883199|883200|883201|883202|883203|883204|883205|883206|887233", + "upstreamId": "22579|22580|22581|22582|22584|22585|76572|192330|192331|193502|195309|250474|250476|250477|267839|268065|272108|283834|284473|284474|284483|284484|284485|284487|284488|286485|490869|550897|584163|620047|719512|730097|747159|790149|883179|883180|883181|883182|883183|883184|883185|883186|883187|883188|883189|883190|883191|883192|883193|883194|883195|883196|883197|883198|883199|883200|883201|883202|883203|883204|883205|883206|887233", "text": "Multiple epiphyseal dysplasia type 5" }, { - "baseId": "22581|918728|918729", + "upstreamId": "22581|918728|918729", "text": "Osteoarthritis of distal interphalangeal joint" }, { - "baseId": "22583", + "upstreamId": "22583", "text": "Spondyloepimetaphyseal dysplasia Matrilin-3 related" }, { - "baseId": "22584|250474|283829|284474|300941|308567|308577|308607|336275|345986|350356|350371|353490|353554", + "upstreamId": "22584|250474|283829|284474|300941|308567|308577|308607|336275|345986|350356|350371|353490|353554", "text": "Multiple Epiphyseal Dysplasia, Dominant" }, { - "baseId": "22586|22587|22588|22589|22590|22591|22592|251435|251436|251437|251438|251439|251440|264193|293271|293272|293273|293274|293280|293282|293283|293287|293288|293292|293296|293298|293308|293310|293311|293313|293314|293315|293330|293331|293335|293336|293337|293342|293344|293345|293347|293351|293353|293354|293355|293356|293362|293368|293374|293375|293378|293379|293382|293386|294607|294610|294612|294613|294614|294616|294617|294618|294619|294632|294638|294642|294654|294656|294663|294664|294685|294686|294687|294688|294689|294693|294697|294704|294705|294706|294709|294711|294712|294720|294721|294726|294734|294740|294743|294744|294745|294750|298154|298170|298175|298176|298177|298178|298179|298183|298184|298191|298192|298197|298200|298201|298202|298226|298236|298241|298248|298253|298254|298259|298260|298261|298262|298263|298264|298267|298268|298270|298271|298272|298273|298276|298277|298278|298280|298281|298282|298289|298296|298301|298307|298308|298312|298313|298314|298315|298316|298317|298320|298326|298327|298329|298332|298333|298334|298337|298338|298341|298342|298343|298344|298345|298346|298347|298352|298361|298364|298369|298370|298371|298372|298373|298374|298375|298386|298387|298391|298392|298393|298409|298410|298416|453124|453384|453386|453874|453878|512815|519869|519876|519879|519886|520116|520119|520128|520158|520160|520162|520163|559653|559655|559657|559816|559818|559820|561985|561989|561992|563644|563654|563660|614277|632141|632142|632143|632144|632145|632146|632147|632148|632149|632150|632151|632152|632153|632154|632155|632156|632157|632158|651156|651175|698492|709327|720943|720944|720946|734619|748916|748918|748922|764443|764446|764447|764449|774947|781947|781948|787204|819475|819478|829062|829063|829064|829065|829066|829067|829068|829069|829070|829071|829072|829073|890626|890627|890628|890629|890630|890631|891789|923488|923489|923490|923491|923492|932289|932290|932291|932292|932293|932294|932295|932296|943956|943957|943958|943959|943960|953756|953757|953758|953759|953760|953761|961940|969623|969656", + "upstreamId": "22586|22587|22588|22589|22590|22591|22592|251435|251436|251437|251438|251439|251440|264193|293271|293272|293273|293274|293280|293282|293283|293287|293288|293292|293296|293298|293308|293310|293311|293313|293314|293315|293330|293331|293335|293336|293337|293342|293344|293345|293347|293351|293353|293354|293355|293356|293362|293368|293374|293375|293378|293379|293382|293386|294607|294610|294612|294613|294614|294616|294617|294618|294619|294632|294638|294642|294654|294656|294663|294664|294685|294686|294687|294688|294689|294693|294697|294704|294705|294706|294709|294711|294712|294720|294721|294726|294734|294740|294743|294744|294745|294750|298154|298170|298175|298176|298177|298178|298179|298183|298184|298191|298192|298197|298200|298201|298202|298226|298236|298241|298248|298253|298254|298259|298260|298261|298262|298263|298264|298267|298268|298270|298271|298272|298273|298276|298277|298278|298280|298281|298282|298289|298296|298301|298307|298308|298312|298313|298314|298315|298316|298317|298320|298326|298327|298329|298332|298333|298334|298337|298338|298341|298342|298343|298344|298345|298346|298347|298352|298361|298364|298369|298370|298371|298372|298373|298374|298375|298386|298387|298391|298392|298393|298409|298410|298416|453124|453384|453386|453874|453878|512815|519869|519876|519879|519886|520116|520119|520128|520158|520160|520162|520163|559653|559655|559657|559816|559818|559820|561985|561989|561992|563644|563654|563660|614277|632141|632142|632143|632144|632145|632146|632147|632148|632149|632150|632151|632152|632153|632154|632155|632156|632157|632158|651156|651175|698492|709327|720943|720944|720946|734619|748916|748918|748922|764443|764446|764447|764449|774947|781947|781948|787204|819475|819478|829062|829063|829064|829065|829066|829067|829068|829069|829070|829071|829072|829073|890626|890627|890628|890629|890630|890631|891789|923488|923489|923490|923491|923492|932289|932290|932291|932292|932293|932294|932295|932296|943956|943957|943958|943959|943960|953756|953757|953758|953759|953760|953761|961940|969623|969656", "text": "Fibrous dysplasia of jaw" }, { - "baseId": "22593|22594|22595|22596|22598|132462|132464|132467|132472|136585|255056|255057|255058|255059|255060|268435|321304|321305|321309|321311|321312|321313|321317|321319|321321|321323|321324|321327|321329|321332|321333|321334|321339|321340|321344|321346|330514|330515|330516|330526|330527|330533|330536|330537|330540|330541|330543|330544|330546|330558|330570|330573|330576|330579|330580|337092|337108|337127|337136|337139|337140|337149|337151|337157|337160|337165|337174|337176|337179|337190|337191|337197|337198|337201|337204|337205|337207|337212|339033|339035|339039|339052|339056|339059|339068|339072|339074|339075|339083|339089|339095|339099|339101|339108|339118|339121|339122|339133|480525|480526|586928|702982|702983|702985|702986|702988|714235|714236|714237|714238|714238|725801|725802|725805|725807|739312|739313|739319|739320|739328|744825|754151|760114|784787|816325|816325|872545|872546|872547|872548|872549|872550|872551|872552|872553|872554|872555|872556|872557|872558|872559|872560|872561|872562|872563|872564|872565|872566|872567|872568|872569|872570|872571|872572|872573|872574|872575|872576|872577|872578|872579|872580|872581|872582|872583|872584|872585|872586|872587|872588|872589|872590|872591|872592|872593|872594|872595|872596|872597|872598|872599|872600|872601|872602|872603|872604|872605|872606|872607|872608|872609|872610|872611|872612|872613|872614|872615|872616|872617|872618|872619|872620|872621|872622|876444|876445|876446|876447|876448", + "upstreamId": "22593|22594|22595|22596|22598|132462|132464|132467|132472|136585|255056|255057|255058|255059|255060|268435|321304|321305|321309|321311|321312|321313|321317|321319|321321|321323|321324|321327|321329|321332|321333|321334|321339|321340|321344|321346|330514|330515|330516|330526|330527|330533|330536|330537|330540|330541|330543|330544|330546|330558|330570|330573|330576|330579|330580|337092|337108|337127|337136|337139|337140|337149|337151|337157|337160|337165|337174|337176|337179|337190|337191|337197|337198|337201|337204|337205|337207|337212|339033|339035|339039|339052|339056|339059|339068|339072|339074|339075|339083|339089|339095|339099|339101|339108|339118|339121|339122|339133|480525|480526|586928|702982|702983|702985|702986|702988|714235|714236|714237|714238|714238|725801|725802|725805|725807|739312|739313|739319|739320|739328|744825|754151|760114|784787|816325|816325|872545|872546|872547|872548|872549|872550|872551|872552|872553|872554|872555|872556|872557|872558|872559|872560|872561|872562|872563|872564|872565|872566|872567|872568|872569|872570|872571|872572|872573|872574|872575|872576|872577|872578|872579|872580|872581|872582|872583|872584|872585|872586|872587|872588|872589|872590|872591|872592|872593|872594|872595|872596|872597|872598|872599|872600|872601|872602|872603|872604|872605|872606|872607|872608|872609|872610|872611|872612|872613|872614|872615|872616|872617|872618|872619|872620|872621|872622|876444|876445|876446|876447|876448", "text": "Glaucoma 3, primary congenital, d" }, { - "baseId": "22593|22597|40306|40307|40308|40309|480525|714238|816325|976016", + "upstreamId": "22593|22597|40306|40307|40308|40309|480525|714238|816325|976016", "text": "Microspherophakia" }, { - "baseId": "22600|200879|200880|200881|200882|200883|200884|237349|461336|461338|461340|461501|461856|462213|514285|514286|526393|526430|526685|526921|539036|564846|566044|566046|566047|570819|640321|640322|640323|640324|687811|687812|693084|693085|693086|693087|693089|695534|701884|752806|752808|777956|838755|838756|851449|851897|926342|935687|935688|956587|960004", + "upstreamId": "22600|200879|200880|200881|200882|200883|200884|237349|461336|461338|461340|461501|461856|462213|514285|514286|526393|526430|526685|526921|539036|564846|566044|566046|566047|570819|640321|640322|640323|640324|687811|687812|693084|693085|693086|693087|693089|695534|701884|752806|752808|777956|838755|838756|851449|851897|926342|935687|935688|956587|960004", "text": "Dental anomalies and short stature" }, { - "baseId": "22601|172300|205196|315159|315163|315211|315212|315213|315214|315218|321981|322027|322030|322032|322033|328076|328136|328148|328154|328155|329321|329332|329343|329394|329396|329408|329409|329411|329413|353203|372716|408474|614168|672084|738296|752966|788858|800955|868782|868798|868799|868800|868801|868802|872136|961788|963068", + "upstreamId": "22601|172300|205196|315159|315163|315211|315212|315213|315214|315218|321981|322027|322030|322032|322033|328076|328136|328148|328154|328155|329321|329332|329343|329394|329396|329408|329409|329411|329413|353203|372716|408474|614168|672084|738296|752966|788858|800955|868782|868798|868799|868800|868801|868802|872136|961788|963068", "text": "Deficiency of transaldolase" }, { - "baseId": "22602|22604", + "upstreamId": "22602|22604", "text": "Conotruncal anomaly face syndrome/velocardiofacial syndrome" }, { - "baseId": "22603|259105|259112|377376|379812|426368|469894|469895|470834|471340|481486|507476|510868|510870|510871|510873|510873|510874|510875|510876|510877|510878|534029|534065|534066|534153|551749|571661|571699|571700|573262|573917|573944|573946|577904|613890|613924|613925|613929|613983|613988|614043|614485|624092|624093|624094|624095|624096|649180|649181|649182|649183|649184|649185|649186|649187|649188|653267|653592|654002|684910|684911|684912|684913|684914|684915|685470|694669|694670|694671|694672|694673|694674|694675|694676|695865|717309|757953|786552|792018|793858|794079|801255|821386|821388|821389|821399|822206|822207|849036|849037|849038|849039|849040|849041|849042|849043|849044|849045|849046|849047|849048|849049|849050|849051|852420|904191|929397|929398|929399|929400|929401|929402|929403|929404|939194|939195|939196|939197|939198|940522|951330|951331|951332|951333|951334|951335|951336|951337|951338|951339|951340|951341|959024|959025|960958|961635|980490", + "upstreamId": "22603|259105|259112|377376|379812|426368|469894|469895|470834|471340|481486|507476|510868|510870|510871|510873|510873|510874|510875|510876|510877|510878|534029|534065|534066|534153|551749|571661|571699|571700|573262|573917|573944|573946|577904|613890|613924|613925|613929|613983|613988|614043|614485|624092|624093|624094|624095|624096|649180|649181|649182|649183|649184|649185|649186|649187|649188|653267|653592|654002|684910|684911|684912|684913|684914|684915|685470|694669|694670|694671|694672|694673|694674|694675|694676|695865|717309|757953|786552|792018|793858|794079|801255|821386|821388|821389|821399|822206|822207|849036|849037|849038|849039|849040|849041|849042|849043|849044|849045|849046|849047|849048|849049|849050|849051|852420|904191|929397|929398|929399|929400|929401|929402|929403|929404|939194|939195|939196|939197|939198|940522|951330|951331|951332|951333|951334|951335|951336|951337|951338|951339|951340|951341|959024|959025|960958|961635|980490", "text": "DiGeorge sequence" }, { - "baseId": "22605|22606|510873|614485|624092|624093|624094|624095|624096|654002|961635|980490", + "upstreamId": "22605|22606|510873|614485|624092|624093|624094|624095|624096|654002|961635|980490", "text": "Shprintzen syndrome" }, { - "baseId": "22614|377479|426375|471580|534298|571992|626321|649493|649494|649495|649496|653721|742891|773545|792061|792062|849338|849339|939314|951473|959095|961990", + "upstreamId": "22614|377479|426375|471580|534298|571992|626321|649493|649494|649495|649496|653721|742891|773545|792061|792062|849338|849339|939314|951473|959095|961990", "text": "Neutrophil immunodeficiency syndrome" }, { - "baseId": "22615", + "upstreamId": "22615", "text": "UCP3 POLYMORPHISM G/A" }, { - "baseId": "22615|22616|22618", + "upstreamId": "22615|22616|22618", "text": "Obesity, severe, and type II diabetes" }, { - "baseId": "22617", + "upstreamId": "22617", "text": "UCP3 POLYMORPHISM, EXON 6 SPLICE DONOR JUNCTION" }, { - "baseId": "22617|23169", + "upstreamId": "22617|23169", "text": "Morbid obesity" }, { - "baseId": "22619|22620|22622|22623|22624|22625|22626|22627", + "upstreamId": "22619|22620|22622|22623|22624|22625|22626|22627", "text": "Refsum disease, adult, 1" }, { - "baseId": "22619|22620|22621|22819|22826|22827|47476|101248|135337|177946|195353|195700|205162|252145|299171|299175|301593|301608|306284|309744|309747|309749|309753|309754|309772|314631|314632|314634|314641|314642|314643|320665|320666|320677|320694|320696|320699|321240|321243|321244|321247|321254|321262|321286|321296|421782|437850|489565|492277|545047|545386|545665|620348|865609|865610|865611|865612|865613|865614|865615|865616|865617|865618|868458", + "upstreamId": "22619|22620|22621|22819|22826|22827|47476|101248|135337|177946|195353|195700|205162|252145|299171|299175|301593|301608|306284|309744|309747|309749|309753|309754|309772|314631|314632|314634|314641|314642|314643|320665|320666|320677|320694|320696|320699|321240|321243|321244|321247|321254|321262|321286|321296|421782|437850|489565|492277|545047|545386|545665|620348|865609|865610|865611|865612|865613|865614|865615|865616|865617|865618|868458", "text": "Phytanic acid storage disease" }, { - "baseId": "22628|22629|538942|576424|578367|626095|718309", + "upstreamId": "22628|22629|538942|576424|578367|626095|718309", "text": "Bartter syndrome, type 4b" }, { - "baseId": "22630|22631|22632|22633|22634|22635|22636|213516|354158|440397|496605|513894|513895|576426|578367|626096|626097|789866|789867|789868|789869|789870|789871|792834|904205|918575|918576|918577|962664|962848|980299", + "upstreamId": "22630|22631|22632|22633|22634|22635|22636|213516|354158|440397|496605|513894|513895|576426|578367|626096|626097|789866|789867|789868|789869|789870|789871|792834|904205|918575|918576|918577|962664|962848|980299", "text": "Bartter syndrome type 3" }, { - "baseId": "22637|22640", + "upstreamId": "22637|22640", "text": "BARTTER SYNDROME, TYPE 4B, WITH SENSORINEURAL DEAFNESS" }, { - "baseId": "22638|22639", + "upstreamId": "22638|22639", "text": "Bartter syndrome, type 3, with hypocalciuria" }, { - "baseId": "22641|29966|29987|215789", + "upstreamId": "22641|29966|29987|215789", "text": "Clear cell carcinoma of kidney" }, { - "baseId": "22642|22643|22644|54043|54045|54130|140875|173997|174135|229489|245264|249662|249663|258459|278403|278404|278407|278408|278409|278415|278417|278418|278419|278425|278428|278431|278432|278434|278440|278442|278448|278450|278452|278475|278477|278481|278483|278484|278485|278487|278489|278497|278500|278501|278502|278505|278506|278507|278508|278509|278519|278520|278521|278522|278544|278554|278555|278558|278560|278563|279623|279624|279626|279628|279630|279631|279632|279633|279634|279641|279643|279663|279664|279667|279679|279681|279682|279691|279694|279697|279699|279700|279701|279712|279713|279722|279723|279725|279726|279729|279742|279745|279747|279750|279752|279759|279773|279785|279786|279788|279789|279790|279792|279793|279794|279802|279808|279819|279820|279825|279827|279828|301040|301063|301069|301070|304010|304029|304032|304033|304034|304045|308731|308785|308786|308822|308823|308824|353797|486661|620711|706988|800816|800817|800818|863266|863267|863268|863269|863270|863271|863272|863273|863274|863275|863276|863277|863278|863279|863280|863281|863282|863283|863284|863285|863286|863287|863288|863289|863290|863291|863292|863293|863294|863295|863296|863297|863298|863299|863300|863301|863302|863303|863304|863305|863306|865090", + "upstreamId": "22642|22643|22644|54043|54045|54130|140875|173997|174135|229489|245264|249662|249663|258459|278403|278404|278407|278408|278409|278415|278417|278418|278419|278425|278428|278431|278432|278434|278440|278442|278448|278450|278452|278475|278477|278481|278483|278484|278485|278487|278489|278497|278500|278501|278502|278505|278506|278507|278508|278509|278519|278520|278521|278522|278544|278554|278555|278558|278560|278563|279623|279624|279626|279628|279630|279631|279632|279633|279634|279641|279643|279663|279664|279667|279679|279681|279682|279691|279694|279697|279699|279700|279701|279712|279713|279722|279723|279725|279726|279729|279742|279745|279747|279750|279752|279759|279773|279785|279786|279788|279789|279790|279792|279793|279794|279802|279808|279819|279820|279825|279827|279828|301040|301063|301069|301070|304010|304029|304032|304033|304034|304045|308731|308785|308786|308822|308823|308824|353797|486661|620711|706988|800816|800817|800818|863266|863267|863268|863269|863270|863271|863272|863273|863274|863275|863276|863277|863278|863279|863280|863281|863282|863283|863284|863285|863286|863287|863288|863289|863290|863291|863292|863293|863294|863295|863296|863297|863298|863299|863300|863301|863302|863303|863304|863305|863306|865090", "text": "Epidermolysis bullosa simplex due to plakophilin deficiency" }, { - "baseId": "22645|28764|28765|28766|28767|28770|28771|363959|389668|389738|389769|455495|455502|455503|455505|455510|455521|455522|455524|455529|455593|455594|455596|455597|455599|455621|455623|455626|455627|455636|455637|455641|455650|455652|456099|456101|456111|456116|456117|456119|456329|456331|456333|456345|456354|456357|456358|456369|456370|521541|521544|521551|521552|521562|521563|521565|521566|521568|521837|521838|521842|521854|521856|521859|521897|521902|521903|521905|521907|521912|521913|521918|521923|521926|521929|521931|522223|522224|522225|522240|522242|522257|522259|522267|522273|522278|522280|560680|560684|560686|560688|560758|560779|560781|560790|563506|563507|563514|563518|565544|565548|565555|565557|565558|565559|565562|565566|565579|565581|565584|565585|614305|614306|614523|624311|634806|634807|634808|634809|634810|634811|634812|634813|634814|634823|634824|634825|634826|634827|634828|634829|634830|634831|634832|634833|634834|634835|634836|634837|634838|651548|651551|651603|651648|651650|699539|699540|699541|699542|699551|710433|710434|710436|710437|710438|710449|721971|721972|721974|721975|721976|721986|721987|721988|735604|735605|735607|735608|735609|735617|750026|750028|750031|750032|750033|750038|750040|765633|765636|765644|765650|777715|777721|782512|782513|782521|816314|819683|831788|831789|831790|831791|831792|831793|831794|831795|831796|831797|831798|831799|831800|831801|831802|831803|831804|831805|831806|831807|831817|831818|831819|831820|831821|831822|831823|831824|831825|831826|831827|831828|831829|831830|831831|831832|831833|831834|831835|831836|831837|831838|831839|831840|831841|831842|831843|924319|924320|924321|924322|924323|924324|924325|924326|924328|924329|924330|924331|924332|933270|933271|933272|933273|933278|933279|933280|933281|933282|933283|933284|933285|933286|933287|933288|933289|933290|940035|940842|944963|944964|944973|944974|944975|944976|944977|944978|944979|954416|954417|954418|954419|954420|954421|954422|954423|954424", + "upstreamId": "22645|28764|28765|28766|28767|28770|28771|363959|389668|389738|389769|455495|455502|455503|455505|455510|455521|455522|455524|455529|455593|455594|455596|455597|455599|455621|455623|455626|455627|455636|455637|455641|455650|455652|456099|456101|456111|456116|456117|456119|456329|456331|456333|456345|456354|456357|456358|456369|456370|521541|521544|521551|521552|521562|521563|521565|521566|521568|521837|521838|521842|521854|521856|521859|521897|521902|521903|521905|521907|521912|521913|521918|521923|521926|521929|521931|522223|522224|522225|522240|522242|522257|522259|522267|522273|522278|522280|560680|560684|560686|560688|560758|560779|560781|560790|563506|563507|563514|563518|565544|565548|565555|565557|565558|565559|565562|565566|565579|565581|565584|565585|614305|614306|614523|624311|634806|634807|634808|634809|634810|634811|634812|634813|634814|634823|634824|634825|634826|634827|634828|634829|634830|634831|634832|634833|634834|634835|634836|634837|634838|651548|651551|651603|651648|651650|699539|699540|699541|699542|699551|710433|710434|710436|710437|710438|710449|721971|721972|721974|721975|721976|721986|721987|721988|735604|735605|735607|735608|735609|735617|750026|750028|750031|750032|750033|750038|750040|765633|765636|765644|765650|777715|777721|782512|782513|782521|816314|819683|831788|831789|831790|831791|831792|831793|831794|831795|831796|831797|831798|831799|831800|831801|831802|831803|831804|831805|831806|831807|831817|831818|831819|831820|831821|831822|831823|831824|831825|831826|831827|831828|831829|831830|831831|831832|831833|831834|831835|831836|831837|831838|831839|831840|831841|831842|831843|924319|924320|924321|924322|924323|924324|924325|924326|924328|924329|924330|924331|924332|933270|933271|933272|933273|933278|933279|933280|933281|933282|933283|933284|933285|933286|933287|933288|933289|933290|940035|940842|944963|944964|944973|944974|944975|944976|944977|944978|944979|954416|954417|954418|954419|954420|954421|954422|954423|954424", "text": "Bare lymphocyte syndrome type 1" }, { - "baseId": "22646", + "upstreamId": "22646", "text": "Epilepsy, juvenile myoclonic 6" }, { - "baseId": "22647|190285|190285|201269|361167|440540", + "upstreamId": "22647|190285|190285|201269|361167|440540", "text": "Epilepsy, idiopathic generalized 9" }, { - "baseId": "22647|134010|134011|134012|140354|140358|140359|190285|190285|191506|201269|201269|201270|282202|282203|282204|282210|282211|282215|282225|282228|282238|282249|282262|282263|282264|282275|282285|282287|282292|282867|282873|282889|282890|282897|282908|282909|282910|282911|282912|282915|282916|282937|282940|282941|282942|282946|282954|282983|282986|282988|282989|284475|284478|284479|284480|284481|284482|284492|284493|284498|284519|284520|284799|284801|284803|284815|284818|284819|284822|284851|284852|284875|284876|284882|284883|284884|284885|284889|284893|284898|284904|284921|284923|284924|284925|284934|440540|440542|559292|824976|881201|881202|881203|881204|881205|881206|881207|881208|881209|881210|881211|881212|881213|881214|881215|881216|881217|881218|881219|881220|881221|881222|881223|881224|881225|881226|881227|881228|881229|881230|881231|881232|881233|881234|881235|881236|881237|882814|882815|882816", + "upstreamId": "22647|134010|134011|134012|140354|140358|140359|190285|190285|191506|201269|201269|201270|282202|282203|282204|282210|282211|282215|282225|282228|282238|282249|282262|282263|282264|282275|282285|282287|282292|282867|282873|282889|282890|282897|282908|282909|282910|282911|282912|282915|282916|282937|282940|282941|282942|282946|282954|282983|282986|282988|282989|284475|284478|284479|284480|284481|284482|284492|284493|284498|284519|284520|284799|284801|284803|284815|284818|284819|284822|284851|284852|284875|284876|284882|284883|284884|284885|284889|284893|284898|284904|284921|284923|284924|284925|284934|440540|440542|559292|824976|881201|881202|881203|881204|881205|881206|881207|881208|881209|881210|881211|881212|881213|881214|881215|881216|881217|881218|881219|881220|881221|881222|881223|881224|881225|881226|881227|881228|881229|881230|881231|881232|881233|881234|881235|881236|881237|882814|882815|882816", "text": "Episodic ataxia, type 5" }, { - "baseId": "22654|22655|22656|22657|22658|22659|22659|22660|22662|22663|22664|22667|51644|51647|51649|51650|51653|152780|176733|177784|194284|210301|210309|210310|210319|210324|210325|210328|210330|210333|210334|210347|232095|232096|232100|232102|232102|232113|243574|245166|257314|257318|257324|259048|259057|260802|269659|271031|271482|271491|271733|272587|273271|273422|273424|273773|273836|274369|274616|275499|334804|334808|344693|344701|349662|349672|350661|350668|350671|354182|378180|378183|403597|403600|403647|403650|403653|403654|404136|404142|404145|404160|410730|410730|424902|469325|469327|469328|470292|470295|470846|470851|470854|471364|471365|489021|489156|489782|491402|491416|491752|491938|492111|492576|492962|493267|510818|513380|513664|533433|533434|533475|533475|533476|533490|533492|533514|533515|533517|534001|534002|534004|534012|534015|571131|571147|571149|571156|572850|572851|572857|573463|575076|575505|581951|584331|585450|585460|585521|587275|588302|589491|610482|613920|648573|648574|648575|648576|648577|648578|648579|648580|648581|648582|648583|648584|648585|653189|684865|689181|689184|694526|791970|791971|804908|804909|804910|818579|848209|848210|848211|848212|848213|848214|848215|848216|848217|848218|848219|848220|848221|848222|848223|848224|848225|848226|848227|848228|848229|848230|848231|851842|852367|885805|929141|929142|929143|929144|929145|929146|938908|938909|938910|938911|938912|938913|938914|941250|950986|950987|950988|950989|950990|950991|950992|950993|950994|950995|950996|950997|950998|950999|951000|951001|958779|958780|958781|958782|958783|958784|958785|958786|958787|958788|958789|960310|960933|960934|960935|962804|963076|964528|975665|980583|983469", + "upstreamId": "22654|22655|22656|22657|22658|22659|22659|22660|22662|22663|22664|22667|51644|51647|51649|51650|51653|152780|176733|177784|194284|210301|210309|210310|210319|210324|210325|210328|210330|210333|210334|210347|232095|232096|232100|232102|232102|232113|243574|245166|257314|257318|257324|259048|259057|260802|269659|271031|271482|271491|271733|272587|273271|273422|273424|273773|273836|274369|274616|275499|334804|334808|344693|344701|349662|349672|350661|350668|350671|354182|378180|378183|403597|403600|403647|403650|403653|403654|404136|404142|404145|404160|410730|410730|424902|469325|469327|469328|470292|470295|470846|470851|470854|471364|471365|489021|489156|489782|491402|491416|491752|491938|492111|492576|492962|493267|510818|513380|513664|533433|533434|533475|533475|533476|533490|533492|533514|533515|533517|534001|534002|534004|534012|534015|571131|571147|571149|571156|572850|572851|572857|573463|575076|575505|581951|584331|585450|585460|585521|587275|588302|589491|610482|613920|648573|648574|648575|648576|648577|648578|648579|648580|648581|648582|648583|648584|648585|653189|684865|689181|689184|694526|791970|791971|804908|804909|804910|818579|848209|848210|848211|848212|848213|848214|848215|848216|848217|848218|848219|848220|848221|848222|848223|848224|848225|848226|848227|848228|848229|848230|848231|851842|852367|885805|929141|929142|929143|929144|929145|929146|938908|938909|938910|938911|938912|938913|938914|941250|950986|950987|950988|950989|950990|950991|950992|950993|950994|950995|950996|950997|950998|950999|951000|951001|958779|958780|958781|958782|958783|958784|958785|958786|958787|958788|958789|960310|960933|960934|960935|962804|963076|964528|975665|980583|983469", "text": "Alagille syndrome 1" }, { - "baseId": "22659|22665|232102|410730|533475", + "upstreamId": "22659|22665|232102|410730|533475", "text": "Deafness, congenital heart defects, and posterior embryotoxon" }, { - "baseId": "22668|283984|283986|284744|284747|284753|287112|550211|550212|550213|550214|550215|550216|550217|550218|550219|550220|883349|883350|883351|883352|883353|883354|883355|887241", + "upstreamId": "22668|283984|283986|284744|284747|284753|287112|550211|550212|550213|550214|550215|550216|550217|550218|550219|550220|883349|883350|883351|883352|883353|883354|883355|887241", "text": "Orofacial cleft 10" }, { - "baseId": "22669|39193|513099|535382|590508|612296|622516|622517|622518|622519|625985", + "upstreamId": "22669|39193|513099|535382|590508|612296|622516|622517|622518|622519|625985", "text": "Split-hand/foot malformation 6" }, { - "baseId": "22670", + "upstreamId": "22670", "text": "Bone mineral density quantitative trait locus 12" }, { - "baseId": "22671|22672|22673|23676|251009|251010|289515|289517|289521|289522|289523|289532|289533|289535|289536|289537|290294|290297|290300|290308|290310|290311|293366|293369|293370|293372|293373|293376|293385|293388|293390|293393|293808|293825|481678|686362|686364|763730|888385|888386|888387|888388|888389|888390|888391|888392|888393|888394|888395|888396|888397|888398|888399|888400|888401|888402|888403|888404|888405|888406|888407|888408|888409|888410|888411|888412|888413|888414|888415|970760", + "upstreamId": "22671|22672|22673|23676|251009|251010|289515|289517|289521|289522|289523|289532|289533|289535|289536|289537|290294|290297|290300|290308|290310|290311|293366|293369|293370|293372|293373|293376|293385|293388|293390|293393|293808|293825|481678|686362|686364|763730|888385|888386|888387|888388|888389|888390|888391|888392|888393|888394|888395|888396|888397|888398|888399|888400|888401|888402|888403|888404|888405|888406|888407|888408|888409|888410|888411|888412|888413|888414|888415|970760", "text": "Short stature due to growth hormone secretagogue receptor deficiency" }, { - "baseId": "22674|22675|22676|22677|256700|256701|331951|331960|331963|331964|331970|331977|331978|331980|342169|342171|342190|342192|342194|342200|342201|342204|342206|347540|347545|347560|347561|347562|347563|347565|348920|348921|348923|348931|348934|348935|348937|348938|469854|488356|647366|694288|694289|695796|704638|704640|727759|778464|879517|879518|879519|879520|879521|879522|879523|879524|879525|879526|879527|879528|879529|879530|879531|879532|879533|879534|879535|879536|879537|879538|879539|879540|879541|879542|879543|879544|879545|879546|879547|879548|879549|879550|879551|879552|879553|879554|879555|938477|950572", + "upstreamId": "22674|22675|22676|22677|256700|256701|331951|331960|331963|331964|331970|331977|331978|331980|342169|342171|342190|342192|342194|342200|342201|342204|342206|347540|347545|347560|347561|347562|347563|347565|348920|348921|348923|348931|348934|348935|348937|348938|469854|488356|647366|694288|694289|695796|704638|704640|727759|778464|879517|879518|879519|879520|879521|879522|879523|879524|879525|879526|879527|879528|879529|879530|879531|879532|879533|879534|879535|879536|879537|879538|879539|879540|879541|879542|879543|879544|879545|879546|879547|879548|879549|879550|879551|879552|879553|879554|879555|938477|950572", "text": "Microphthalmia, isolated 3" }, { - "baseId": "22678|22679|141810|141811|141812|141813|141814|238213|249742|249743|249745|279376|279381|279383|279599|279600|279614|279622|280868|280885|280889|280893|280894|281008|281009|281022|281023|281029|390969|391062|391077|391082|447503|447651|515557|515561|515562|515590|627389|683303|683304|683305|685630|690500|780577|780578|818931|818932|823491|863788|863789|863790|863791|863792|863793|863794|863795|863796|863797|863798|865133|930331|930332|941771", + "upstreamId": "22678|22679|141810|141811|141812|141813|141814|238213|249742|249743|249745|279376|279381|279383|279599|279600|279614|279622|280868|280885|280889|280893|280894|281008|281009|281022|281023|281029|390969|391062|391077|391082|447503|447651|515557|515561|515562|515590|627389|683303|683304|683305|685630|690500|780577|780578|818931|818932|823491|863788|863789|863790|863791|863792|863793|863794|863795|863796|863797|863798|865133|930331|930332|941771", "text": "Left-right axis malformations" }, { - "baseId": "22680|22681|22682|49862|250976|250977|265475|289049|289050|289051|289052|289056|289057|289059|289065|289067|289785|289787|289788|289789|289790|289796|289797|292868|292869|292873|292877|292878|293106|293108|293114|293116|293123|293127|293131|293134|486339|536189|620112|708621|720232|720233|720235|720237|720238|763675|798523|888113|888114|888115|888116|888117|888118|888119|888120|888121|888122|888123|888124|888125|888126|888127|888128|888129|888130|888131|888132|888133|888134|888135|888136|888137|888138|888139|888140|888141|891586|918805|969603|969604", + "upstreamId": "22680|22681|22682|49862|250976|250977|265475|289049|289050|289051|289052|289056|289057|289059|289065|289067|289785|289787|289788|289789|289790|289796|289797|292868|292869|292873|292877|292878|293106|293108|293114|293116|293123|293127|293131|293134|486339|536189|620112|708621|720232|720233|720235|720237|720238|763675|798523|888113|888114|888115|888116|888117|888118|888119|888120|888121|888122|888123|888124|888125|888126|888127|888128|888129|888130|888131|888132|888133|888134|888135|888136|888137|888138|888139|888140|888141|891586|918805|969603|969604", "text": "Bruck syndrome 2" }, { - "baseId": "22683|22684|22685|22686", + "upstreamId": "22683|22684|22685|22686", "text": "Bare lymphocyte syndrome, type II, complementation group c" }, { - "baseId": "22687", + "upstreamId": "22687", "text": "Bare lymphocyte syndrome type 2, complementation group E" }, { - "baseId": "22688|22689|22690|22691", + "upstreamId": "22688|22689|22690|22691", "text": "Bare Lymphocyte Syndrome, Type II, Complementation Group D" }, { - "baseId": "22692|22693|22694|22694|22695|22695|22695|22696|22697|22698|141319|141320|141321|191869|191869|191869|192620|192620|195240|196178|196178|214785|227274|229214|229214|229216|229217|229218|229218|229219|229219|229219|229220|229220|229221|229221|229224|229225|229225|229226|229227|229227|229228|229228|229230|229230|229231|229231|229232|246970|246970|268006|268006|270865|294951|294952|294957|294959|294959|294966|294973|294975|294988|294989|296729|296732|296733|296734|300435|300436|300436|300448|300449|300475|300476|300476|300477|300478|357363|357364|357365|357366|357367|357368|357368|357369|357370|357371|357372|357373|357374|357375|357376|357377|357377|357378|357378|357379|357380|421509|433610|487165|487165|487165|491621|492308|492401|492856|495228|495228|496413|496414|496799|513551|543268|543271|543277|543279|543281|543288|543289|543554|543557|543559|543572|543576|543637|543638|543639|543643|543645|543647|543649|543651|543657|543663|543666|543666|543676|543727|543732|543734|543747|543748|543755|543759|543761|543762|543767|543770|543772|543776|549590|560084|585192|585192|585516|585516|585799|586552|586552|588063|612688|612688|621193|621735|621735|632868|632869|632869|632870|632870|660631|709582|721174|721175|721175|721176|749151|749151|749152|749153|764750|764750|774991|774991|775001|782099|782100|782101|782101|787397|790510|793067|801564|819524|829838|829839|829840|829841|851877|892646|892647|892648|892649|892650|892651|892652|892653|892654|892655|892656|892657|892658|896014|923724|923725|932577|932578|940791|953925|953926|963078|965427|978117|978118|978119", + "upstreamId": "22692|22693|22694|22694|22695|22695|22695|22696|22697|22698|141319|141320|141321|191869|191869|191869|192620|192620|195240|196178|196178|214785|227274|229214|229214|229216|229217|229218|229218|229219|229219|229219|229220|229220|229221|229221|229224|229225|229225|229226|229227|229227|229228|229228|229230|229230|229231|229231|229232|246970|246970|268006|268006|270865|294951|294952|294957|294959|294959|294966|294973|294975|294988|294989|296729|296732|296733|296734|300435|300436|300436|300448|300449|300475|300476|300476|300477|300478|357363|357364|357365|357366|357367|357368|357368|357369|357370|357371|357372|357373|357374|357375|357376|357377|357377|357378|357378|357379|357380|421509|433610|487165|487165|487165|491621|492308|492401|492856|495228|495228|496413|496414|496799|513551|543268|543271|543277|543279|543281|543288|543289|543554|543557|543559|543572|543576|543637|543638|543639|543643|543645|543647|543649|543651|543657|543663|543666|543666|543676|543727|543732|543734|543747|543748|543755|543759|543761|543762|543767|543770|543772|543776|549590|560084|585192|585192|585516|585516|585799|586552|586552|588063|612688|612688|621193|621735|621735|632868|632869|632869|632870|632870|660631|709582|721174|721175|721175|721176|749151|749151|749152|749153|764750|764750|774991|774991|775001|782099|782100|782101|782101|787397|790510|793067|801564|819524|829838|829839|829840|829841|851877|892646|892647|892648|892649|892650|892651|892652|892653|892654|892655|892656|892657|892658|896014|923724|923725|932577|932578|940791|953925|953926|963078|965427|978117|978118|978119", "text": "Bifunctional peroxisomal enzyme deficiency" }, { - "baseId": "22694|22695|70522|188976|191869|192620|196178|229214|229218|229219|229220|229221|229225|229227|229228|229230|229231|246970|268006|270865|294959|294989|296734|300436|300476|357368|357377|357378|433610|487165|491621|492308|492401|492856|543666|560084|585192|585516|586552|612688|621735|632868|632869|632870|709582|721174|721175|721176|749151|749152|749153|764750|774991|775001|782099|782100|782101|787397|819524|829838|829839|829840|829841|851877|923724|923725|932577|932578|940791|953925|953926", + "upstreamId": "22694|22695|70522|188976|191869|192620|196178|229214|229218|229219|229220|229221|229225|229227|229228|229230|229231|246970|268006|270865|294959|294989|296734|300436|300476|357368|357377|357378|433610|487165|491621|492308|492401|492856|543666|560084|585192|585516|586552|612688|621735|632868|632869|632870|709582|721174|721175|721176|749151|749152|749153|764750|774991|775001|782099|782100|782101|787397|819524|829838|829839|829840|829841|851877|923724|923725|932577|932578|940791|953925|953926", "text": "Perrault syndrome" }, { - "baseId": "22694", + "upstreamId": "22694", "text": "HSD17B4-Related Disorders" }, { - "baseId": "22694|22695|39184|141319|141320|141321|141322|191869|191869|192620|195240|196178|227274|229214|229217|229218|229219|229219|229220|229221|229224|229225|229226|229227|229228|229230|229231|229232|246970|268006|294951|294952|294957|294959|294966|294973|294975|294988|296729|296732|296733|300435|300436|300448|300449|300475|300476|300477|300478|487165|495228|513551|549590|585799|586552|588063|612688|626016|632870|660631|892646|892647|892648|892649|892650|892651|892652|892653|892654|892655|892656|892657|892658|896014", + "upstreamId": "22694|22695|39184|141319|141320|141321|141322|191869|191869|192620|195240|196178|227274|229214|229217|229218|229219|229219|229220|229221|229224|229225|229226|229227|229228|229230|229231|229232|246970|268006|294951|294952|294957|294959|294966|294973|294975|294988|296729|296732|296733|300435|300436|300448|300449|300475|300476|300477|300478|487165|495228|513551|549590|585799|586552|588063|612688|626016|632870|660631|892646|892647|892648|892649|892650|892651|892652|892653|892654|892655|892656|892657|892658|896014", "text": "Perrault syndrome 1" }, { - "baseId": "22699|22700|22701|22702|75560|75564|328525|328526|328537|328538|328549|328551|328566|328570|328573|338482|338490|338491|338493|338494|338495|338502|338507|338509|338511|338514|344552|344554|344558|344560|344564|344566|344567|344570|344571|344582|344589|344593|344595|344596|344603|344605|345959|345961|345962|345966|345970|345974|345975|345978|345980|345981|345983|345984|345994|362585|362586|362587|362588|485863|681811|740778|877565|877566|877567|877568|877569|877570|877571|877572|877573|877574|877575|877576|877577|877578|877579|877580|877581|877582|877583|877584|877585|877586|877587|877588|877589|877590|877591|877592|877593|877594|877595|877596|877597|877598|877599|877600|877601|877602|877603|877604|880520|880521|880522", + "upstreamId": "22699|22700|22701|22702|75560|75564|328525|328526|328537|328538|328549|328551|328566|328570|328573|338482|338490|338491|338493|338494|338495|338502|338507|338509|338511|338514|344552|344554|344558|344560|344564|344566|344567|344570|344571|344582|344589|344593|344595|344596|344603|344605|345959|345961|345962|345966|345970|345974|345975|345978|345980|345981|345983|345984|345994|362585|362586|362587|362588|485863|681811|740778|877565|877566|877567|877568|877569|877570|877571|877572|877573|877574|877575|877576|877577|877578|877579|877580|877581|877582|877583|877584|877585|877586|877587|877588|877589|877590|877591|877592|877593|877594|877595|877596|877597|877598|877599|877600|877601|877602|877603|877604|880520|880521|880522", "text": "Pseudohypoaldosteronism type 2B" }, { - "baseId": "22703|22704|22705|22706|22707|22708|22709|22710|256829|256830|256833|256834|332833|332855|332859|343022|343023|343024|343026|343028|343029|343040|343047|343052|348360|348363|348364|348365|348368|348370|348372|348378|348393|348396|348397|349535|349536|349539|349541|349543|349544|349545|349546|349547|349548|349552|349555|349556|349559|704852|704853|756829|778507|791915|880126|880127|880128|880129|880130|880131|880132|880133|880134|880135|880136|880137|880138|880139|880140|880141|880142|880143|880144|880145|880146|880147|880148|880149|880150|880151|880152|880153|880154|880155|880156|880157|880158|880159|880160|880714|880715|880716|880717|880718|880719|880720|906179|971345|971346", + "upstreamId": "22703|22704|22705|22706|22707|22708|22709|22710|256829|256830|256833|256834|332833|332855|332859|343022|343023|343024|343026|343028|343029|343040|343047|343052|348360|348363|348364|348365|348368|348370|348372|348378|348393|348396|348397|349535|349536|349539|349541|349543|349544|349545|349546|349547|349548|349552|349555|349556|349559|704852|704853|756829|778507|791915|880126|880127|880128|880129|880130|880131|880132|880133|880134|880135|880136|880137|880138|880139|880140|880141|880142|880143|880144|880145|880146|880147|880148|880149|880150|880151|880152|880153|880154|880155|880156|880157|880158|880159|880160|880714|880715|880716|880717|880718|880719|880720|906179|971345|971346", "text": "Thyroid dyshormonogenesis 1" }, { - "baseId": "22709|27730|27734|27745|187125|227362|249367|260069|264574|281632|282017|282053|284546|299299|301730|301834|301850|306209|306237|306293|306495|306599|313103|321634|321636|322630|332093|332137|339642|360201|578009|578010|578011|620519|672073|722860|816512|873649|976570|976571|976572|976573|976574|976575|976576|976577|976578|976579|976580|976581|976582", + "upstreamId": "22709|27730|27734|27745|187125|227362|249367|260069|264574|281632|282017|282053|284546|299299|301730|301834|301850|306209|306237|306293|306495|306599|313103|321634|321636|322630|332093|332137|339642|360201|578009|578010|578011|620519|672073|722860|816512|873649|976570|976571|976572|976573|976574|976575|976576|976577|976578|976579|976580|976581|976582", "text": "Congenital hypothyroidism" }, { - "baseId": "22711|22712|22712|22713|22714|22715|22716|22717|134928|208008|208009|208010|208012|208013|227174|264505|318850|318855|318858|318860|318861|318862|318866|318867|318871|318873|318877|318878|318879|318886|318887|327235|327243|327246|327249|327251|327256|327261|327265|327267|327268|333353|333354|333361|333369|333370|333378|333382|333384|333385|333386|333387|333388|333388|333389|333398|333403|333405|333409|333416|333417|333418|333419|335099|335103|335107|335108|335112|335113|335116|335127|335129|335130|353262|359989|384422|408785|426723|426724|429475|429476|429478|445109|463453|497022|512045|527458|527480|527483|527484|527493|528006|565859|567102|567161|567173|567180|568249|568252|568254|568256|572195|572195|572200|572204|614386|641538|641539|641540|641541|641542|641543|641544|641545|641546|641547|641548|641549|641550|641551|641552|641553|641554|641555|641556|652508|681829|684381|684382|688098|688099|688100|693323|769391|784519|816324|840515|840516|840517|840518|840519|840520|840521|840522|840523|840524|840525|840526|840527|840528|840529|840530|840531|840532|840533|840534|840535|840536|840537|840538|840539|870669|870670|870671|870672|870673|870674|870675|870676|870677|870678|870679|870680|870681|870682|870683|870684|926796|926797|926798|926799|926800|926801|926802|936330|936331|936332|936333|936334|948251|948252|948253|948254|948255|948256|948257|948258|957015|957016|957017|957018|957019|957020|961964|965988|966798", + "upstreamId": "22711|22712|22712|22713|22714|22715|22716|22717|134928|208008|208009|208010|208012|208013|227174|264505|318850|318855|318858|318860|318861|318862|318866|318867|318871|318873|318877|318878|318879|318886|318887|327235|327243|327246|327249|327251|327256|327261|327265|327267|327268|333353|333354|333361|333369|333370|333378|333382|333384|333385|333386|333387|333388|333388|333389|333398|333403|333405|333409|333416|333417|333418|333419|335099|335103|335107|335108|335112|335113|335116|335127|335129|335130|353262|359989|384422|408785|426723|426724|429475|429476|429478|445109|463453|497022|512045|527458|527480|527483|527484|527493|528006|565859|567102|567161|567173|567180|568249|568252|568254|568256|572195|572195|572200|572204|614386|641538|641539|641540|641541|641542|641543|641544|641545|641546|641547|641548|641549|641550|641551|641552|641553|641554|641555|641556|652508|681829|684381|684382|688098|688099|688100|693323|769391|784519|816324|840515|840516|840517|840518|840519|840520|840521|840522|840523|840524|840525|840526|840527|840528|840529|840530|840531|840532|840533|840534|840535|840536|840537|840538|840539|870669|870670|870671|870672|870673|870674|870675|870676|870677|870678|870679|870680|870681|870682|870683|870684|926796|926797|926798|926799|926800|926801|926802|936330|936331|936332|936333|936334|948251|948252|948253|948254|948255|948256|948257|948258|957015|957016|957017|957018|957019|957020|961964|965988|966798", "text": "Lig4 syndrome" }, { - "baseId": "22712|27386|27395|27397|27405|27408|27409|27641|27642|27645|27646|27650|27652|28375|28377|28378|28938|28939|28940|29000|29006|29007|29009|29010|29011|29013|29755|31370|31371|31382|31967|31968|44227|45735|48247|48857|48938|48939|48940|49030|53970|53980|54283|54284|54289|70450|83949|87578|150515|150855|166215|172332|174177|179419|180995|181000|181025|185350|213392|213398|216786|236459|236461|236462|236469|236479|242980|263939|333388|359197|359952|362753|362755|362768|362770|362771|362772|362822|362826|362842|362844|362867|362868|362912|362952|363174|363201|363247|363248|363249|363250|363251|363253|363254|363255|363256|363257|363321|363322|363323|363361|363362|363363|363443|363444|363445|363446|363447|363453|363454|363455|363456|363461|363462|363463|363464|363465|363466|363467|363468|363496|363497|363498|363499|363503|363504|363505|363506|363507|363508|363518|363519|363520|363521|363522|363523|363524|363525|363531|363534|363535|363552|363560|363561|363562|363563|363564|363565|572195|788676|788677|788678|788679|788680|788681|788682|788683|788684|788685|788686|788687|788688|788689|788690|788691|788692|788693|788694|788695|788696|788697|788698|788699|788700|788701|788702|788703|788704|788705|788706|788707|788708|788709|788710|788711|788712|788713|788714|788715|788716|788717|788718|788719|788720|788721", + "upstreamId": "22712|27386|27395|27397|27405|27408|27409|27641|27642|27645|27646|27650|27652|28375|28377|28378|28938|28939|28940|29000|29006|29007|29009|29010|29011|29013|29755|31370|31371|31382|31967|31968|44227|45735|48247|48857|48938|48939|48940|49030|53970|53980|54283|54284|54289|70450|83949|87578|150515|150855|166215|172332|174177|179419|180995|181000|181025|185350|213392|213398|216786|236459|236461|236462|236469|236479|242980|263939|333388|359197|359952|362753|362755|362768|362770|362771|362772|362822|362826|362842|362844|362867|362868|362912|362952|363174|363201|363247|363248|363249|363250|363251|363253|363254|363255|363256|363257|363321|363322|363323|363361|363362|363363|363443|363444|363445|363446|363447|363453|363454|363455|363456|363461|363462|363463|363464|363465|363466|363467|363468|363496|363497|363498|363499|363503|363504|363505|363506|363507|363508|363518|363519|363520|363521|363522|363523|363524|363525|363531|363534|363535|363552|363560|363561|363562|363563|363564|363565|572195|788676|788677|788678|788679|788680|788681|788682|788683|788684|788685|788686|788687|788688|788689|788690|788691|788692|788693|788694|788695|788696|788697|788698|788699|788700|788701|788702|788703|788704|788705|788706|788707|788708|788709|788710|788711|788712|788713|788714|788715|788716|788717|788718|788719|788720|788721", "text": "Multiple myeloma" }, { - "baseId": "22715|22716", + "upstreamId": "22715|22716", "text": "Multiple myeloma, resistance to" }, { - "baseId": "22720|22721|22722|677068", + "upstreamId": "22720|22721|22722|677068", "text": "Mitochondrial complex 1 deficiency, nuclear type 3" }, { - "baseId": "22723|312425|312426|312428|312431|312432|318307|318310|318316|318319|324451|325187|325188|325189|325192|724209|737748|867065|867066|867067", + "upstreamId": "22723|312425|312426|312428|312431|312432|318307|318310|318316|318319|324451|325187|325188|325189|325192|724209|737748|867065|867066|867067", "text": "Renal hypomagnesemia 2" }, { - "baseId": "22724|22725|22726|22727|22728|22729", + "upstreamId": "22724|22725|22726|22727|22728|22729", "text": "Lactase persistence" }, { - "baseId": "22730|22732|22733|22735|194383|194383|263003|267212|267212|291300|292374|295765|295766|295767|295779|354270|485730|485731|485732|485733|519880|588816|709001|790413|889472|889474|905052", + "upstreamId": "22730|22732|22733|22735|194383|194383|263003|267212|267212|291300|292374|295765|295766|295767|295779|354270|485730|485731|485732|485733|519880|588816|709001|790413|889472|889474|905052", "text": "Septo-optic dysplasia sequence" }, { - "baseId": "22731", + "upstreamId": "22731", "text": "Septooptic dysplasia, mild" }, { - "baseId": "22732|22738|194383|267212|519880|588816", + "upstreamId": "22732|22738|194383|267212|519880|588816", "text": "Growth hormone deficiency with pituitary anomalies" }, { - "baseId": "22734|22736|22737|22739", + "upstreamId": "22734|22736|22737|22739", "text": "Pituitary hormone deficiency, combined 5" }, { - "baseId": "22740|22741|101044|101045|101046|177934|177935|194925|195676|249330|249350|249354|249355|249357|270290|270940|275796|275797|275798|275800|275819|275820|275821|275822|275964|275965|275967|275969|275997|275999|276004|276009|493290|589315|706529|761035|780254|822471|861848|861849|861850|861851|861852|861853|861854|861855|861856|861857|861858|861859|861860|861861|864953|864954", + "upstreamId": "22740|22741|101044|101045|101046|177934|177935|194925|195676|249330|249350|249354|249355|249357|270290|270940|275796|275797|275798|275800|275819|275820|275821|275822|275964|275965|275967|275969|275997|275999|276004|276009|493290|589315|706529|761035|780254|822471|861848|861849|861850|861851|861852|861853|861854|861855|861856|861857|861858|861859|861860|861861|864953|864954", "text": "Peroxisome biogenesis disorder 13A" }, { - "baseId": "22742|39182|39183|190400|192335|193512|193513|193513|250754|273429|274056|275187|286887|286891|286893|286895|286900|286905|286908|287627|287628|287643|287648|287650|287662|287663|287679|287680|287681|287682|287687|287688|287691|287692|287693|287694|287695|287696|287698|289998|290025|290026|290029|290033|290051|290055|290059|290081|290083|290088|290089|290419|290420|290432|290433|290436|489973|490950|492063|492063|492294|492782|493270|493457|513256|558251|558624|560891|560892|561861|561873|584232|584336|585899|587774|588990|759275|826863|826864|826865|826866|826867|826868|826869|826870|858718|885252|885253|885254|885255|885256|885257|885258|885259|885260|885261|885262|885263|885264|885265|885266|885267|885268|885269|885270|885271|885272|885273|885274|885275|885276|885277|885278|885279|885280|885281|885282|885283|885284|885285|885286|885287|885288|885289|922890|931537|931538|943056|943057|943058|943059|943060|943061|943062|953155|953156|953157", + "upstreamId": "22742|39182|39183|190400|192335|193512|193513|193513|250754|273429|274056|275187|286887|286891|286893|286895|286900|286905|286908|287627|287628|287643|287648|287650|287662|287663|287679|287680|287681|287682|287687|287688|287691|287692|287693|287694|287695|287696|287698|289998|290025|290026|290029|290033|290051|290055|290059|290081|290083|290088|290089|290419|290420|290432|290433|290436|489973|490950|492063|492063|492294|492782|493270|493457|513256|558251|558624|560891|560892|561861|561873|584232|584336|585899|587774|588990|759275|826863|826864|826865|826866|826867|826868|826869|826870|858718|885252|885253|885254|885255|885256|885257|885258|885259|885260|885261|885262|885263|885264|885265|885266|885267|885268|885269|885270|885271|885272|885273|885274|885275|885276|885277|885278|885279|885280|885281|885282|885283|885284|885285|885286|885287|885288|885289|922890|931537|931538|943056|943057|943058|943059|943060|943061|943062|953155|953156|953157", "text": "Peroxisome biogenesis disorder 11A" }, { - "baseId": "22743|193513|362041|492063", + "upstreamId": "22743|193513|362041|492063", "text": "Peroxisome biogenesis disorder 11B" }, { - "baseId": "22744|76595|76596|283668|283669|283670|283671|283677|283678|284309|284310|284318|284320|284322|284341|284343|284350|284351|284353|286303|286328|286329|286330|286336|286345|286347|286619|286650|286651|286659|286674|286678|286683|286701|883073|883074|883075|883076|883077|883078|883079|883080|883081|883082|883083|883084|883085|883086|883087|883088|883089|887225", + "upstreamId": "22744|76595|76596|283668|283669|283670|283671|283677|283678|284309|284310|284318|284320|284322|284341|284343|284350|284351|284353|286303|286328|286329|286330|286336|286345|286347|286619|286650|286651|286659|286674|286678|286683|286701|883073|883074|883075|883076|883077|883078|883079|883080|883081|883082|883083|883084|883085|883086|883087|883088|883089|887225", "text": "Myostatin-related muscle hypertrophy" }, { - "baseId": "22745|22746|22747|22748|22749|22750|22751|22752|22753|22755|22756|22757|22758|22759|22760|22761|22762|22764|22765|22766|33995|33996|33997|39181|98707|98709|98710|98711|98714|135422|186951|186952|186953|186954|190245|194819|194820|195874|195875|227382|255943|260132|265315|269607|270096|270549|273389|274802|275109|326612|326617|326759|326761|326762|326769|326771|326773|326776|326777|326778|326779|336422|336552|336555|336558|336559|336574|336575|336582|336585|336588|336591|336592|336598|336603|336607|342659|342661|342662|342845|342846|342849|342851|342853|342856|342858|342862|342864|342866|344271|344479|344480|344482|344485|344487|344488|344489|344490|344491|344492|344493|344494|344497|344499|344501|344505|344509|358377|358378|358379|358380|358381|358382|358383|358384|358385|358386|358387|358388|404826|409752|413427|422115|439326|486815|487801|495633|512230|529859|530674|536476|547799|547801|547803|547808|547809|547811|547819|547828|547841|547844|547847|548087|548089|548091|548093|548098|548101|548105|548110|548120|548121|548543|548549|548557|548573|548584|548586|548588|548591|548594|548597|548601|548605|620565|621550|621551|621847|621848|645097|645098|645099|645100|645101|645102|645103|652487|652882|653070|653167|653169|653316|677326|682106|693952|740440|744878|755472|771135|771136|771137|776389|776393|788090|788092|788213|791648|806409|820892|820896|820897|820898|820901|820902|820903|820904|820905|820906|844457|844458|844459|844460|844461|844462|844463|876116|876117|876118|876119|876120|876121|876122|876123|876124|876125|876126|876127|876128|876129|876130|876131|876132|876133|876134|876135|876136|876137|876138|876139|876731|876732|876733|917222|917543|919680|927996|927997|927998|957907|957908|957909|960856|960857|972601|979810", + "upstreamId": "22745|22746|22747|22748|22749|22750|22751|22752|22753|22755|22756|22757|22758|22759|22760|22761|22762|22764|22765|22766|33995|33996|33997|39181|98707|98709|98710|98711|98714|135422|186951|186952|186953|186954|190245|194819|194820|195874|195875|227382|255943|260132|265315|269607|270096|270549|273389|274802|275109|326612|326617|326759|326761|326762|326769|326771|326773|326776|326777|326778|326779|336422|336552|336555|336558|336559|336574|336575|336582|336585|336588|336591|336592|336598|336603|336607|342659|342661|342662|342845|342846|342849|342851|342853|342856|342858|342862|342864|342866|344271|344479|344480|344482|344485|344487|344488|344489|344490|344491|344492|344493|344494|344497|344499|344501|344505|344509|358377|358378|358379|358380|358381|358382|358383|358384|358385|358386|358387|358388|404826|409752|413427|422115|439326|486815|487801|495633|512230|529859|530674|536476|547799|547801|547803|547808|547809|547811|547819|547828|547841|547844|547847|548087|548089|548091|548093|548098|548101|548105|548110|548120|548121|548543|548549|548557|548573|548584|548586|548588|548591|548594|548597|548601|548605|620565|621550|621551|621847|621848|645097|645098|645099|645100|645101|645102|645103|652487|652882|653070|653167|653169|653316|677326|682106|693952|740440|744878|755472|771135|771136|771137|776389|776393|788090|788092|788213|791648|806409|820892|820896|820897|820898|820901|820902|820903|820904|820905|820906|844457|844458|844459|844460|844461|844462|844463|876116|876117|876118|876119|876120|876121|876122|876123|876124|876125|876126|876127|876128|876129|876130|876131|876132|876133|876134|876135|876136|876137|876138|876139|876731|876732|876733|917222|917543|919680|927996|927997|927998|957907|957908|957909|960856|960857|972601|979810", "text": "Congenital disorder of glycosylation, type Ia" }, { - "baseId": "22767|22768|22769|22769|22770|22771|22772|22773|22774|22776|22776|22777|22778|22778|22779|22781|22782|22783|39179|39180|79358|79359|98344|98345|98346|102590|102591|102592|132472|176950|177657|177659|177660|177661|193369|227243|227244|266801|286180|286182|286193|286194|286198|286203|286222|286225|286936|286937|286940|286946|286948|286949|286950|286952|286953|286959|286962|286972|286981|286985|289251|289253|289257|289263|289265|289268|289275|289276|289286|289289|289290|289291|289624|289631|289634|289639|289655|289656|289660|289672|404760|451009|451194|451210|492426|514468|620087|691154|691155|691156|781326|788753|801602|801603|801604|884813|884814|884815|884816|884817|884818|884819|884820|884821|884822|884823|884824|884825|884826|884827|884828|884829|884830|884831|884832|884833|884834|884835|884836|884837|884838|884839|884840|884841|884842|884843|884844|884845|884846|884847|884848|884849|884850|884851|884852|884853|884854|884855|884856|884857|884858|884859|884860|884861|884862|884863|884864|962065|962068|964200", + "upstreamId": "22767|22768|22769|22769|22770|22771|22772|22773|22774|22776|22776|22777|22778|22778|22779|22781|22782|22783|39179|39180|79358|79359|98344|98345|98346|102590|102591|102592|132472|176950|177657|177659|177660|177661|193369|227243|227244|266801|286180|286182|286193|286194|286198|286203|286222|286225|286936|286937|286940|286946|286948|286949|286950|286952|286953|286959|286962|286972|286981|286985|289251|289253|289257|289263|289265|289268|289275|289276|289286|289289|289290|289291|289624|289631|289634|289639|289655|289656|289660|289672|404760|451009|451194|451210|492426|514468|620087|691154|691155|691156|781326|788753|801602|801603|801604|884813|884814|884815|884816|884817|884818|884819|884820|884821|884822|884823|884824|884825|884826|884827|884828|884829|884830|884831|884832|884833|884834|884835|884836|884837|884838|884839|884840|884841|884842|884843|884844|884845|884846|884847|884848|884849|884850|884851|884852|884853|884854|884855|884856|884857|884858|884859|884860|884861|884862|884863|884864|962065|962068|964200", "text": "Glaucoma 3, primary congenital, A" }, { - "baseId": "22769|22775|22776|22776", + "upstreamId": "22769|22775|22776|22776", "text": "Anterior segment dysgenesis 6" }, { - "baseId": "22769|22776|337201|919543", + "upstreamId": "22769|22776|337201|919543", "text": "Glaucoma 3, primary infantile, b" }, { - "baseId": "22769|22774|22776|22778|22783|98344|177659|259737|266801|451010|492426|514468|691154|691155|691156|697565|697566|781326|826466|826467|953089|953090|960477", + "upstreamId": "22769|22774|22776|22778|22783|98344|177659|259737|266801|451010|492426|514468|691154|691155|691156|697565|697566|781326|826466|826467|953089|953090|960477", "text": "Congenital glaucoma" }, { - "baseId": "22774|79358|79360|177660|263296|629993|654756|962067", + "upstreamId": "22774|79358|79360|177660|263296|629993|654756|962067", "text": "Glaucoma of childhood" }, { - "baseId": "22776|22778|79360|620747", + "upstreamId": "22776|22778|79360|620747", "text": "CYP1B1-Related Disorders" }, { - "baseId": "22776|23128|23133|23487|79358|79361|237249|237580|249980|267189|270847|272086|273530|362087|365343|414803|418809|448226|489784|492837|563473|609191|622992|628136|628137|628138|628141|690635|690636|690637|696788|746547|780725|824218|824219|824220|824221|824222|824223|824224|824225|824226|824227|824228|824229|826466|920589|920590|920591|920592|920593|920594|920595|920596|920597|922113|922114|930589|930590|930591|930592|930593|930594|930595|942025|942026|942027|942028|952463", + "upstreamId": "22776|23128|23133|23487|79358|79361|237249|237580|249980|267189|270847|272086|273530|362087|365343|414803|418809|448226|489784|492837|563473|609191|622992|628136|628137|628138|628141|690635|690636|690637|696788|746547|780725|824218|824219|824220|824221|824222|824223|824224|824225|824226|824227|824228|824229|826466|920589|920590|920591|920592|920593|920594|920595|920596|920597|922113|922114|930589|930590|930591|930592|930593|930594|930595|942025|942026|942027|942028|952463", "text": "Anterior segment dysgenesis" }, { - "baseId": "22778", + "upstreamId": "22778", "text": "Glaucoma, early-onset, digenic" }, { - "baseId": "22778|153828|153829|153830|153831|153832|184524|361481|626126|697345|788749|802132|802133|804988|804989|918741|918742", + "upstreamId": "22778|153828|153829|153830|153831|153832|184524|361481|626126|697345|788749|802132|802133|804988|804989|918741|918742", "text": "Myopathy, centronuclear, 5" }, { - "baseId": "22781|22782|39180", + "upstreamId": "22781|22782|39180", "text": "Glaucoma, primary open angle, juvenile-onset" }, { - "baseId": "22784|22785|22786|22787|22788|22789|22790|22791|22792|22793|22794|22795|22796|22797|22798|195700|259277|259278|317168|317177|317179|317180|317189|317192|317195|317197|317205|317210|317215|317216|317217|317231|317241|317242|317243|317246|317247|317248|317249|317253|317255|324900|324907|324918|324923|324924|324928|324940|324954|324955|324965|324974|331033|331037|331040|331058|331061|331062|331065|331070|331075|331077|331082|331088|331092|332564|332565|332570|332572|332573|332585|332589|332592|332593|332598|332599|332600|332607|332608|332613|332615|332617|332621|332626|332634|332654|622899|702318|713543|725107|738651|738652|769128|784390|839936|869846|869847|869848|869849|869850|869851|869852|869853|869854|869855|869856|869857|869858|869859|869860|869861|869862|869863|869864|869865|869866|869867|869868|869869|869870|869871|869872|869873|869874|869875|869876|869877|869878|869879|869880|869881|869882|869883|869884|869885|869886|869887|869888|869889|869890|872243|980347", + "upstreamId": "22784|22785|22786|22787|22788|22789|22790|22791|22792|22793|22794|22795|22796|22797|22798|195700|259277|259278|317168|317177|317179|317180|317189|317192|317195|317197|317205|317210|317215|317216|317217|317231|317241|317242|317243|317246|317247|317248|317249|317253|317255|324900|324907|324918|324923|324924|324928|324940|324954|324955|324965|324974|331033|331037|331040|331058|331061|331062|331065|331070|331075|331077|331082|331088|331092|332564|332565|332570|332572|332573|332585|332589|332592|332593|332598|332599|332600|332607|332608|332613|332615|332617|332621|332626|332634|332654|622899|702318|713543|725107|738651|738652|769128|784390|839936|869846|869847|869848|869849|869850|869851|869852|869853|869854|869855|869856|869857|869858|869859|869860|869861|869862|869863|869864|869865|869866|869867|869868|869869|869870|869871|869872|869873|869874|869875|869876|869877|869878|869879|869880|869881|869882|869883|869884|869885|869886|869887|869888|869889|869890|872243|980347", "text": "Vitamin D-dependent rickets, type 2" }, { - "baseId": "22799|22801|283918|283932|283934|283937|283939|283943|283944|284609|284610|284615|284618|284619|284623|284624|284626|284632|284637|284638|284641|286548|286549|286550|286551|286974|286980|286982|286983|287008|287011|287012|450412|517602|517606|517629|517633|517785|559037|559039|560532|614239|620048|629285|629286|629287|629288|629289|629290|650720|650909|707942|733071|762785|781107|790152|790153|819098|825566|825567|825568|825569|825570|883239|883240|883241|883242|883243|883244|883245|883246|883247|883248|883249|883250|883251|883252|883253|883254|883255|883256|883257|883258|883259|883260|887236|922511|922512|922513|931074|942553|942554|942555|942556|942557|952879|952880|952881|961929|961930|961931|961932", + "upstreamId": "22799|22801|283918|283932|283934|283937|283939|283943|283944|284609|284610|284615|284618|284619|284623|284624|284626|284632|284637|284638|284641|286548|286549|286550|286551|286974|286980|286982|286983|287008|287011|287012|450412|517602|517606|517629|517633|517785|559037|559039|560532|614239|620048|629285|629286|629287|629288|629289|629290|650720|650909|707942|733071|762785|781107|790152|790153|819098|825566|825567|825568|825569|825570|883239|883240|883241|883242|883243|883244|883245|883246|883247|883248|883249|883250|883251|883252|883253|883254|883255|883256|883257|883258|883259|883260|887236|922511|922512|922513|931074|942553|942554|942555|942556|942557|952879|952880|952881|961929|961930|961931|961932", "text": "Autoimmune lymphoproliferative syndrome type 2B" }, { - "baseId": "22801", + "upstreamId": "22801", "text": "Breast cancer, protection against" }, { - "baseId": "22802|32009", + "upstreamId": "22802|32009", "text": "Lung cancer, protection against" }, { - "baseId": "22803|22803|22808|34579|34579|34580|34580|283838|283842|283847|283853|283853|283858|283859|283866|283866|283867|283868|283868|283887|283888|283893|283895|283896|283900|283902|283909|283913|284489|284490|284499|284505|284505|284516|284516|284517|284517|284518|284521|284524|284525|284549|284550|284552|284561|284570|284571|284573|284574|284589|284601|284602|284607|286493|286493|286495|286499|286500|286500|286508|286510|286514|286517|286520|286522|286523|286534|286535|286544|286546|286547|286885|286885|286907|286907|286910|286918|286919|286922|286925|286926|286932|286934|286951|286954|286956|286965|286967|450370|450376|450409|517511|517593|517598|517601|517619|517622|517775|517780|517783|557861|557863|559033|559035|560509|560518|560518|560525|560527|560529|583046|614238|629276|629277|629278|629279|629279|629280|629281|629282|629283|629284|650714|707941|707941|719517|733068|733069|733069|733070|762782|774649|774654|790150|790151|819096|819097|825556|825557|825558|825559|825560|825561|825562|825563|825564|825565|851386|883207|883208|883208|883209|883210|883211|883212|883213|883214|883215|883216|883217|883218|883219|883220|883221|883222|883223|883224|883225|883226|883227|883228|883229|883230|883231|883232|883233|883234|883235|883236|883237|883238|887234|887235|922508|922509|922510|931071|931072|931073|940684|942546|942547|942548|942549|942550|942551|942552|952876|952877|952878|959620", + "upstreamId": "22803|22803|22808|34579|34579|34580|34580|283838|283842|283847|283853|283853|283858|283859|283866|283866|283867|283868|283868|283887|283888|283893|283895|283896|283900|283902|283909|283913|284489|284490|284499|284505|284505|284516|284516|284517|284517|284518|284521|284524|284525|284549|284550|284552|284561|284570|284571|284573|284574|284589|284601|284602|284607|286493|286493|286495|286499|286500|286500|286508|286510|286514|286517|286520|286522|286523|286534|286535|286544|286546|286547|286885|286885|286907|286907|286910|286918|286919|286922|286925|286926|286932|286934|286951|286954|286956|286965|286967|450370|450376|450409|517511|517593|517598|517601|517619|517622|517775|517780|517783|557861|557863|559033|559035|560509|560518|560518|560525|560527|560529|583046|614238|629276|629277|629278|629279|629279|629280|629281|629282|629283|629284|650714|707941|707941|719517|733068|733069|733069|733070|762782|774649|774654|790150|790151|819096|819097|825556|825557|825558|825559|825560|825561|825562|825563|825564|825565|851386|883207|883208|883208|883209|883210|883211|883212|883213|883214|883215|883216|883217|883218|883219|883220|883221|883222|883223|883224|883225|883226|883227|883228|883229|883230|883231|883232|883233|883234|883235|883236|883237|883238|887234|887235|922508|922509|922510|931071|931072|931073|940684|942546|942547|942548|942549|942550|942551|942552|952876|952877|952878|959620", "text": "Autoimmune lymphoproliferative syndrome, type 2A" }, { - "baseId": "22803|34579|34580|283853|283866|283868|284505|284516|284517|286493|286500|286885|286907|450370|450376|450409|517511|517593|517598|517601|517619|517622|517775|517780|517783|557861|557863|559033|559035|560509|560518|560525|560527|560529|583046|629276|629277|629278|629279|629280|629281|629282|629283|629284|650714|707941|733068|733069|733070|762782|774649|774654|790151|819096|819097|825556|825557|825558|825559|825560|825561|825562|825563|825564|825565|851386|883208|922508|922509|922510|931071|931072|931073|940684|942546|942547|942548|942549|942550|942551|942552|952876|952877|952878|959620", + "upstreamId": "22803|34579|34580|283853|283866|283868|284505|284516|284517|286493|286500|286885|286907|450370|450376|450409|517511|517593|517598|517601|517619|517622|517775|517780|517783|557861|557863|559033|559035|560509|560518|560525|560527|560529|583046|629276|629277|629278|629279|629280|629281|629282|629283|629284|650714|707941|733068|733069|733070|762782|774649|774654|790151|819096|819097|825556|825557|825558|825559|825560|825561|825562|825563|825564|825565|851386|883208|922508|922509|922510|931071|931072|931073|940684|942546|942547|942548|942549|942550|942551|942552|952876|952877|952878|959620", "text": "Autoimmune lymphoproliferative syndrome type 2" }, { - "baseId": "22807|31540|31542|31544|34064|34064|138110|138111|138112|138113|165620|165900|207798|253905|277420|277421|277424|277426|277426|277429|277431|277436|277449|277640|277641|277642|277647|277649|277654|277658|278496|278510|278512|278518|278523|278524|278525|278528|278530|278533|278535|278536|278537|278538|278539|278540|278567|278572|283863|283907|284569|286494|286518|286531|286533|286537|311582|311586|311592|311593|311595|311599|311600|311607|311609|311613|311618|311621|317170|317171|317172|317173|317183|317184|323201|323202|323203|323204|323211|323213|323777|323778|323779|323780|323784|323797|323799|323807|323808|447425|512842|512921|514003|515325|515332|515376|515377|515384|517780|525600|525604|525945|538943|558252|564039|564045|564911|564912|566611|569888|589803|627121|627122|627123|629283|639300|639301|639302|639303|652045|652155|652158|652160|652344|679773|724109|745848|752324|761337|774405|789879|789880|789881|789882|790150|790151|791011|791012|791013|791014|816317|818871|818872|820274|820276|823012|823013|823014|823015|823016|837459|837460|837461|837462|837463|837464|837465|837466|837467|837468|837469|837470|837471|837472|862823|862824|862825|862826|865037|866517|866518|866519|866520|866521|866522|866523|866524|866525|866526|866527|866528|866529|866530|866531|868529|868530|868531|868532|921757|925974|930169|930170|930171|935229|935230|941581|947129|947130", + "upstreamId": "22807|31540|31542|31544|34064|34064|138110|138111|138112|138113|165620|165900|207798|253905|277420|277421|277424|277426|277426|277429|277431|277436|277449|277640|277641|277642|277647|277649|277654|277658|278496|278510|278512|278518|278523|278524|278525|278528|278530|278533|278535|278536|278537|278538|278539|278540|278567|278572|283863|283907|284569|286494|286518|286531|286533|286537|311582|311586|311592|311593|311595|311599|311600|311607|311609|311613|311618|311621|317170|317171|317172|317173|317183|317184|323201|323202|323203|323204|323211|323213|323777|323778|323779|323780|323784|323797|323799|323807|323808|447425|512842|512921|514003|515325|515332|515376|515377|515384|517780|525600|525604|525945|538943|558252|564039|564045|564911|564912|566611|569888|589803|627121|627122|627123|629283|639300|639301|639302|639303|652045|652155|652158|652160|652344|679773|724109|745848|752324|761337|774405|789879|789880|789881|789882|790150|790151|791011|791012|791013|791014|816317|818871|818872|820274|820276|823012|823013|823014|823015|823016|837459|837460|837461|837462|837463|837464|837465|837466|837467|837468|837469|837470|837471|837472|862823|862824|862825|862826|865037|866517|866518|866519|866520|866521|866522|866523|866524|866525|866526|866527|866528|866529|866530|866531|868529|868530|868531|868532|921757|925974|930169|930170|930171|935229|935230|941581|947129|947130", "text": "Autoimmune lymphoproliferative syndrome" }, { - "baseId": "22809|22810|22811|22812|22813|22813|22814|22818|98680|98681|98682|98683|98684|177933|188880|188880|267626|269779|271584|328126|328138|328140|328141|328143|337985|337986|337990|337995|337999|338002|338007|338010|338014|338015|344172|344181|344184|344193|344194|344197|345581|345583|345587|345587|345588|345589|345592|345593|358425|358426|358427|362280|364154|430999|430999|445758|489029|493070|493070|494107|539070|539070|548051|548053|548056|548057|548058|548072|548074|548075|548075|548076|548079|548080|548080|548081|548082|548083|548088|548090|548092|548097|548108|548337|548337|548344|548348|548348|548350|548356|548359|548361|548807|548808|548810|548818|548819|548819|548821|585659|652809|704097|715384|740692|755787|755788|771443|785540|845235|845236|845237|845238|845239|845240|845241|845242|845243|877261|877262|877263|877264|877265|877266|877267|877268|877269|877270|877271|877272|877273|877274|906153|928236|928237|937894|937895|937896|937897|937898|937899|958087|958088|958089|958090|958091", + "upstreamId": "22809|22810|22811|22812|22813|22813|22814|22818|98680|98681|98682|98683|98684|177933|188880|188880|267626|269779|271584|328126|328138|328140|328141|328143|337985|337986|337990|337995|337999|338002|338007|338010|338014|338015|344172|344181|344184|344193|344194|344197|345581|345583|345587|345587|345588|345589|345592|345593|358425|358426|358427|362280|364154|430999|430999|445758|489029|493070|493070|494107|539070|539070|548051|548053|548056|548057|548058|548072|548074|548075|548075|548076|548079|548080|548080|548081|548082|548083|548088|548090|548092|548097|548108|548337|548337|548344|548348|548348|548350|548356|548359|548361|548807|548808|548810|548818|548819|548819|548821|585659|652809|704097|715384|740692|755787|755788|771443|785540|845235|845236|845237|845238|845239|845240|845241|845242|845243|877261|877262|877263|877264|877265|877266|877267|877268|877269|877270|877271|877272|877273|877274|906153|928236|928237|937894|937895|937896|937897|937898|937899|958087|958088|958089|958090|958091", "text": "Peroxisome biogenesis disorder 3A" }, { - "baseId": "22813|22814|22815|22816|22817|22818", + "upstreamId": "22813|22814|22815|22816|22817|22818", "text": "Peroxisomal biogenesis disorder 3b" }, { - "baseId": "22813|22818|98680|98683|98684|177933|188880|267626|345587|358425|358426|358427|364154|364154|430999|445758|493070|494107|539070|548051|548053|548056|548057|548058|548072|548074|548075|548076|548079|548080|548081|548082|548083|548088|548090|548092|548097|548108|548337|548344|548348|548350|548356|548359|548361|548807|548808|548810|548818|548819|548821|919725", + "upstreamId": "22813|22818|98680|98683|98684|177933|188880|267626|345587|358425|358426|358427|364154|364154|430999|445758|493070|494107|539070|548051|548053|548056|548057|548058|548072|548074|548075|548076|548079|548080|548081|548082|548083|548088|548090|548092|548097|548108|548337|548344|548348|548350|548356|548359|548361|548807|548808|548810|548818|548819|548821|919725", "text": "Infantile Refsum's disease" }, { - "baseId": "22819|22819|22819|22820|22821|22822|22823|22824|22825|22826|22827|22827|22829|47477|186699|186700|186701|186702|195227|227291|227291|252144|252145|252145|275145|275439|299176|299180|299188|299189|299194|301586|301589|301590|301591|301592|301612|305982|305983|305994|305997|306285|306298|306301|306302|306304|306305|306306|357420|357421|357422|357423|357424|357425|357426|357427|357428|357429|357430|357431|357432|357433|357434|428524|428525|428526|489565|492277|492277|501556|543621|543622|543623|543627|543934|543938|543940|543941|543942|543944|543946|543948|543950|543954|544035|544056|544060|544063|544069|544073|544074|584563|651523|777665|787464|790592|801609|801610|801611|801612|801613|801614|801615|806370|831609|895450|895451|895452|895453|895454|895455|895456|895457|895458|978217|978218", + "upstreamId": "22819|22819|22819|22820|22821|22822|22823|22824|22825|22826|22827|22827|22829|47477|186699|186700|186701|186702|195227|227291|227291|252144|252145|252145|275145|275439|299176|299180|299188|299189|299194|301586|301589|301590|301591|301592|301612|305982|305983|305994|305997|306285|306298|306301|306302|306304|306305|306306|357420|357421|357422|357423|357424|357425|357426|357427|357428|357429|357430|357431|357432|357433|357434|428524|428525|428526|489565|492277|492277|501556|543621|543622|543623|543627|543934|543938|543940|543941|543942|543944|543946|543948|543950|543954|544035|544056|544060|544063|544069|544073|544074|584563|651523|777665|787464|790592|801609|801610|801611|801612|801613|801614|801615|806370|831609|895450|895451|895452|895453|895454|895455|895456|895457|895458|978217|978218", "text": "Rhizomelic chondrodysplasia punctata type 1" }, { - "baseId": "22819|22824|22827", + "upstreamId": "22819|22824|22827", "text": "PEX7-Related Disorders" }, { - "baseId": "22819|22819|22819|22820|22821|22822|22823|22824|22825|22826|22827|22827|22829|186699|186700|195227|227291|227291|252144|252145|252145|275145|299176|299180|299188|299189|299194|301586|301589|301590|301591|301592|301612|305982|305983|305994|305997|306285|306298|306301|306302|306304|306305|306306|357420|357432|488872|489565|489565|492277|492277|543938|584563|588589|651523|651639|765504|765506|775204|782455|787313|787464|801613|819666|831608|831609|852012|895450|895451|895452|895453|895454|895455|895456|895457|895458|933190|944900|954381|959800|983862", + "upstreamId": "22819|22819|22819|22820|22821|22822|22823|22824|22825|22826|22827|22827|22829|186699|186700|195227|227291|227291|252144|252145|252145|275145|299176|299180|299188|299189|299194|301586|301589|301590|301591|301592|301612|305982|305983|305994|305997|306285|306298|306301|306302|306304|306305|306306|357420|357432|488872|489565|489565|492277|492277|543938|584563|588589|651523|651639|765504|765506|775204|782455|787313|787464|801613|819666|831608|831609|852012|895450|895451|895452|895453|895454|895455|895456|895457|895458|933190|944900|954381|959800|983862", "text": "Peroxisome biogenesis disorder 9B" }, { - "baseId": "22824|167559|167560|167561|188236|249769|252144|281169|281171|283053|283057|283059|283061|283073|283074|283075|283855|283856|283862|283864|283871|283877|285509|285536|285554|285555|285556|285580|285589|285927|285935|285947|285954|285955|285957|285995|299171|299175|301593|301608|305982|306284|489565|543938|707864|707865|719427|816407|816427|881660|977642|977643|977644|977645|977646|977647|977648|977649|977650|977651|977652|977653|977654|977655|977656", + "upstreamId": "22824|167559|167560|167561|188236|249769|252144|281169|281171|283053|283057|283059|283061|283073|283074|283075|283855|283856|283862|283864|283871|283877|285509|285536|285554|285555|285556|285580|285589|285927|285935|285947|285954|285955|285957|285995|299171|299175|301593|301608|305982|306284|489565|543938|707864|707865|719427|816407|816427|881660|977642|977643|977644|977645|977646|977647|977648|977649|977650|977651|977652|977653|977654|977655|977656", "text": "Rhizomelic chondrodysplasia punctata" }, { - "baseId": "22843|22844|22845|22846|281255|281256|281258|281259|281266|281267|281268|281871|281873|281875|281879|281880|281893|283124|283128|283131|283132|283136|283143|283159|283160|283163|283324|283325|283326|283330|283331|283333|283339|283340|353109|513903|550583|620016|654219|654220|789999|799226|799227|864824|864825|864826|864827|864828|864829|864830|864831|864832|865211|904066|918660", + "upstreamId": "22843|22844|22845|22846|281255|281256|281258|281259|281266|281267|281268|281871|281873|281875|281879|281880|281893|283124|283128|283131|283132|283136|283143|283159|283160|283163|283324|283325|283326|283330|283331|283333|283339|283340|353109|513903|550583|620016|654219|654220|789999|799226|799227|864824|864825|864826|864827|864828|864829|864830|864831|864832|865211|904066|918660", "text": "Glomuvenous malformations" }, { - "baseId": "22847|22848|39176|39177|39178|790561", + "upstreamId": "22847|22848|39176|39177|39178|790561", "text": "Primary localized cutaneous amyloidosis 1" }, { - "baseId": "22849|22850|538962|552289|626124|653851|653852|790193|790194", + "upstreamId": "22849|22850|538962|552289|626124|653851|653852|790193|790194", "text": "AICAR transformylase/IMP cyclohydrolase deficiency" }, { - "baseId": "22851|22852|22854|22855|22856|22857|22858|22859|22860|22861|22862|22863|22864|22865|22866|22867|22868|22872|22872|22873|22874|22875|22878|22882|22883|22884|22885|22886|22891|28692|50121|82009|98715|98723|98724|98736|133117|133119|133129|133133|133148|133149|133150|133152|133153|139623|139624|142541|150491|150497|151199|151485|151926|151983|152111|152137|152558|152734|166276|166277|181623|183009|183021|183043|183060|183066|185731|187326|187336|187338|187342|187363|187379|187388|187390|190026|212820|213602|222001|231786|231792|240889|245285|248610|253901|311528|358836|358837|358838|358839|358840|371552|397685|398057|398063|408007|416934|416937|416967|416968|416969|416970|416971|416972|416973|416974|416975|416976|416978|416979|416980|416981|416982|416983|416984|416985|419758|419770|429137|475185|484088|484318|519162|537441|537873|537874|539290|539291|539293|539294|539295|539296|539297|539298|539299|539300|569855|613896|619903|686367|689736|790361|790362|790363|790364|790365|790366|790367|810097|861455|861456|861457|961521|964349|964844", + "upstreamId": "22851|22852|22854|22855|22856|22857|22858|22859|22860|22861|22862|22863|22864|22865|22866|22867|22868|22872|22872|22873|22874|22875|22878|22882|22883|22884|22885|22886|22891|28692|50121|82009|98715|98723|98724|98736|133117|133119|133129|133133|133148|133149|133150|133152|133153|139623|139624|142541|150491|150497|151199|151485|151926|151983|152111|152137|152558|152734|166276|166277|181623|183009|183021|183043|183060|183066|185731|187326|187336|187338|187342|187363|187379|187388|187390|190026|212820|213602|222001|231786|231792|240889|245285|248610|253901|311528|358836|358837|358838|358839|358840|371552|397685|398057|398063|408007|416934|416937|416967|416968|416969|416970|416971|416972|416973|416974|416975|416976|416978|416979|416980|416981|416982|416983|416984|416985|419758|419770|429137|475185|484088|484318|519162|537441|537873|537874|539290|539291|539293|539294|539295|539296|539297|539298|539299|539300|569855|613896|619903|686367|689736|790361|790362|790363|790364|790365|790366|790367|810097|861455|861456|861457|961521|964349|964844", "text": "Cowden syndrome 1" }, { - "baseId": "22851|22852|22853|22854|22855|22856|22857|22858|22859|22860|22861|22862|22863|22864|22865|22866|22867|22868|22869|22870|22872|22873|22875|22876|22878|22879|22880|22882|22883|22884|22887|22888|22889|22891|48267|48268|50121|82009|98715|98717|98720|98723|98724|98725|98727|98728|98729|98733|98734|98735|98736|98738|98743|133117|133118|133119|133120|133124|133129|133131|133138|133141|133142|133144|133145|133148|133149|133150|133152|133153|139621|139622|139623|139624|139625|142538|142539|142540|142541|143197|143198|150491|150521|150871|151199|151368|151485|151663|151732|151741|151802|151926|151934|151973|151975|151977|151983|152001|152111|152137|152354|152395|152592|152626|152734|166276|172161|172162|181214|182995|183008|183009|183013|183016|183017|183018|183019|183020|183021|183022|183023|183024|183025|183026|183028|183029|183030|183031|183033|183035|183036|183037|183040|183042|183043|183044|183045|183047|183049|183051|183052|183053|183054|183055|183056|183057|183060|183061|183063|183064|183065|183066|185731|187281|187293|187301|187302|187310|187323|187326|187328|187334|187335|187336|187337|187338|187339|187342|187344|187345|187346|187351|187352|187353|187355|187357|187358|187359|187361|187363|187364|187366|187368|187369|187370|187371|187372|187374|187379|187385|187386|187387|187389|187390|194823|205265|207797|212813|212814|212816|212817|212818|212819|212820|212825|212826|222000|222001|222002|222004|222005|222006|224868|226337|226339|226803|231768|231779|231781|231786|231787|231789|231792|233839|233842|233846|233847|233848|233849|233850|233851|233855|233856|233858|233859|233862|233863|233864|233865|233867|233868|233869|233870|233871|233872|233873|233875|233876|233878|233879|233880|233881|240869|240870|240872|240873|240874|240875|240876|240878|240879|240880|240881|240882|240883|240884|240885|240886|240887|240888|240889|240890|248506|253902|262409|264437|264490|275419|311513|311514|311519|311521|311523|311525|311528|311529|311530|311532|311533|311535|311536|311537|311541|311553|311554|311557|311558|311560|311561|311562|311568|311569|311571|317094|317095|317104|317105|317107|317109|317110|317116|317123|317124|317135|317136|317146|317149|317150|317151|317153|317160|317162|317164|323093|323101|323108|323109|323111|323112|323113|323114|323118|323131|323135|323136|323162|323163|323165|323168|323173|323174|323177|323179|323181|323187|323191|323192|323701|323704|323705|323706|323708|323710|323711|323713|323716|323724|323725|323729|323730|323731|323732|323733|323739|323740|323742|323743|323746|323747|323750|323753|323761|323767|323768|323769|323773|358839|359852|359885|362837|362838|362911|363389|364254|370954|370966|371552|371556|371558|371574|371587|371872|373570|397489|397492|397518|397519|397520|397522|397524|397677|397679|397682|397685|397688|397689|397691|397693|397704|397714|397716|397720|397721|397912|397927|397932|397933|397934|397935|397937|397946|397948|397951|397954|397955|397959|398044|398047|398048|398050|398053|398057|398061|398063|398072|398076|398078|398079|398084|407979|407982|407985|407990|407991|407993|407994|407996|408001|408002|408003|408005|408007|408009|408010|408011|416933|416934|416935|416936|416937|416938|416939|416940|416941|416942|416943|416944|416945|416946|416947|416948|416949|416950|416951|416952|416953|416954|416955|416968|416969|416971|416972|416973|416974|416978|416981|416982|416984|416985|419690|419696|419711|419716|419717|419720|419722|419724|419726|419731|419734|419737|419741|419743|419755|419759|419763|419767|419769|419772|421809|425896|429136|433074|439931|444672|444673|444678|444679|460053|460055|460268|460273|460275|460281|460287|460288|460290|460294|460296|460298|460300|460302|460303|460305|460313|460357|460360|460365|460367|460370|460371|460376|460378|460380|460381|460384|460601|460607|460609|460621|460623|460627|460633|460635|460639|460642|460646|460649|460655|460670|461075|461082|461084|461093|461094|461098|461101|461103|461107|461110|461116|461122|461124|461125|461130|461132|461134|461141|461146|461148|475204|475236|475246|475251|475252|475256|475282|475301|475363|475397|475399|475427|475440|475452|475471|475494|475497|475535|475544|475554|475556|475569|482708|482754|482771|482772|484085|484105|484191|484350|484362|485645|487380|488394|497173|525427|525493|525502|525504|525507|525509|525520|525578|525582|525589|525590|525742|525744|525748|525754|525755|525756|525767|525772|525788|525790|525800|525811|525891|525897|525903|525911|525912|525922|525923|525928|525933|536371|537874|563492|563493|564002|564004|564006|564007|564010|564015|564017|564019|564021|564027|564030|564032|564441|564444|564853|564856|564858|564860|564883|564885|566115|566558|566560|566564|566567|566569|566576|566578|566580|566586|566589|566591|566598|566600|569810|569813|569826|569829|569845|569855|569857|569858|569863|569864|575557|575806|575807|575808|575810|575811|579697|585202|611089|617590|617600|617608|623200|639262|639263|639264|639265|639266|639267|639268|639269|639270|639271|639272|639273|639274|639275|639276|639277|639278|639279|639280|639281|639282|639283|639284|639285|639286|639287|639288|639289|639290|639291|639292|639293|639294|651979|651986|652153|652289|652300|654622|677041|724105|744654|752320|760005|768039|768041|768042|768045|783768|787705|790995|790996|790997|790998|790999|791000|791001|791002|791003|791004|791005|791006|791007|791008|791009|810082|810095|810096|810103|810120|810133|815456|820258|820259|820260|820261|820262|820263|820266|820267|820268|820269|820270|820271|820272|820273|837410|837411|837412|837413|837414|837415|837416|837417|837418|837419|837420|837421|837422|837423|837424|837425|837426|837427|837428|837429|837430|837431|837432|837433|837434|837435|837436|837437|837438|837439|837440|837441|837442|837443|837444|837445|837446|837447|837448|837449|837450|837451|837452|837453|851395|852275|852280|858440|866490|866491|866492|866493|866494|866495|866496|866497|866498|866499|866500|866501|866502|866503|866504|866505|866506|866507|866508|866509|866510|925960|925961|925962|925963|925964|925965|925966|925967|925968|925969|925970|925971|925972|935217|935218|935219|935220|935221|935222|935223|935224|935225|935226|940182|940183|940185|940972|947117|947118|947119|947120|947121|947122|947123|947124|947125|947126|947127|956264|956265|956266|956267|956268|956269|960733", + "upstreamId": "22851|22852|22853|22854|22855|22856|22857|22858|22859|22860|22861|22862|22863|22864|22865|22866|22867|22868|22869|22870|22872|22873|22875|22876|22878|22879|22880|22882|22883|22884|22887|22888|22889|22891|48267|48268|50121|82009|98715|98717|98720|98723|98724|98725|98727|98728|98729|98733|98734|98735|98736|98738|98743|133117|133118|133119|133120|133124|133129|133131|133138|133141|133142|133144|133145|133148|133149|133150|133152|133153|139621|139622|139623|139624|139625|142538|142539|142540|142541|143197|143198|150491|150521|150871|151199|151368|151485|151663|151732|151741|151802|151926|151934|151973|151975|151977|151983|152001|152111|152137|152354|152395|152592|152626|152734|166276|172161|172162|181214|182995|183008|183009|183013|183016|183017|183018|183019|183020|183021|183022|183023|183024|183025|183026|183028|183029|183030|183031|183033|183035|183036|183037|183040|183042|183043|183044|183045|183047|183049|183051|183052|183053|183054|183055|183056|183057|183060|183061|183063|183064|183065|183066|185731|187281|187293|187301|187302|187310|187323|187326|187328|187334|187335|187336|187337|187338|187339|187342|187344|187345|187346|187351|187352|187353|187355|187357|187358|187359|187361|187363|187364|187366|187368|187369|187370|187371|187372|187374|187379|187385|187386|187387|187389|187390|194823|205265|207797|212813|212814|212816|212817|212818|212819|212820|212825|212826|222000|222001|222002|222004|222005|222006|224868|226337|226339|226803|231768|231779|231781|231786|231787|231789|231792|233839|233842|233846|233847|233848|233849|233850|233851|233855|233856|233858|233859|233862|233863|233864|233865|233867|233868|233869|233870|233871|233872|233873|233875|233876|233878|233879|233880|233881|240869|240870|240872|240873|240874|240875|240876|240878|240879|240880|240881|240882|240883|240884|240885|240886|240887|240888|240889|240890|248506|253902|262409|264437|264490|275419|311513|311514|311519|311521|311523|311525|311528|311529|311530|311532|311533|311535|311536|311537|311541|311553|311554|311557|311558|311560|311561|311562|311568|311569|311571|317094|317095|317104|317105|317107|317109|317110|317116|317123|317124|317135|317136|317146|317149|317150|317151|317153|317160|317162|317164|323093|323101|323108|323109|323111|323112|323113|323114|323118|323131|323135|323136|323162|323163|323165|323168|323173|323174|323177|323179|323181|323187|323191|323192|323701|323704|323705|323706|323708|323710|323711|323713|323716|323724|323725|323729|323730|323731|323732|323733|323739|323740|323742|323743|323746|323747|323750|323753|323761|323767|323768|323769|323773|358839|359852|359885|362837|362838|362911|363389|364254|370954|370966|371552|371556|371558|371574|371587|371872|373570|397489|397492|397518|397519|397520|397522|397524|397677|397679|397682|397685|397688|397689|397691|397693|397704|397714|397716|397720|397721|397912|397927|397932|397933|397934|397935|397937|397946|397948|397951|397954|397955|397959|398044|398047|398048|398050|398053|398057|398061|398063|398072|398076|398078|398079|398084|407979|407982|407985|407990|407991|407993|407994|407996|408001|408002|408003|408005|408007|408009|408010|408011|416933|416934|416935|416936|416937|416938|416939|416940|416941|416942|416943|416944|416945|416946|416947|416948|416949|416950|416951|416952|416953|416954|416955|416968|416969|416971|416972|416973|416974|416978|416981|416982|416984|416985|419690|419696|419711|419716|419717|419720|419722|419724|419726|419731|419734|419737|419741|419743|419755|419759|419763|419767|419769|419772|421809|425896|429136|433074|439931|444672|444673|444678|444679|460053|460055|460268|460273|460275|460281|460287|460288|460290|460294|460296|460298|460300|460302|460303|460305|460313|460357|460360|460365|460367|460370|460371|460376|460378|460380|460381|460384|460601|460607|460609|460621|460623|460627|460633|460635|460639|460642|460646|460649|460655|460670|461075|461082|461084|461093|461094|461098|461101|461103|461107|461110|461116|461122|461124|461125|461130|461132|461134|461141|461146|461148|475204|475236|475246|475251|475252|475256|475282|475301|475363|475397|475399|475427|475440|475452|475471|475494|475497|475535|475544|475554|475556|475569|482708|482754|482771|482772|484085|484105|484191|484350|484362|485645|487380|488394|497173|525427|525493|525502|525504|525507|525509|525520|525578|525582|525589|525590|525742|525744|525748|525754|525755|525756|525767|525772|525788|525790|525800|525811|525891|525897|525903|525911|525912|525922|525923|525928|525933|536371|537874|563492|563493|564002|564004|564006|564007|564010|564015|564017|564019|564021|564027|564030|564032|564441|564444|564853|564856|564858|564860|564883|564885|566115|566558|566560|566564|566567|566569|566576|566578|566580|566586|566589|566591|566598|566600|569810|569813|569826|569829|569845|569855|569857|569858|569863|569864|575557|575806|575807|575808|575810|575811|579697|585202|611089|617590|617600|617608|623200|639262|639263|639264|639265|639266|639267|639268|639269|639270|639271|639272|639273|639274|639275|639276|639277|639278|639279|639280|639281|639282|639283|639284|639285|639286|639287|639288|639289|639290|639291|639292|639293|639294|651979|651986|652153|652289|652300|654622|677041|724105|744654|752320|760005|768039|768041|768042|768045|783768|787705|790995|790996|790997|790998|790999|791000|791001|791002|791003|791004|791005|791006|791007|791008|791009|810082|810095|810096|810103|810120|810133|815456|820258|820259|820260|820261|820262|820263|820266|820267|820268|820269|820270|820271|820272|820273|837410|837411|837412|837413|837414|837415|837416|837417|837418|837419|837420|837421|837422|837423|837424|837425|837426|837427|837428|837429|837430|837431|837432|837433|837434|837435|837436|837437|837438|837439|837440|837441|837442|837443|837444|837445|837446|837447|837448|837449|837450|837451|837452|837453|851395|852275|852280|858440|866490|866491|866492|866493|866494|866495|866496|866497|866498|866499|866500|866501|866502|866503|866504|866505|866506|866507|866508|866509|866510|925960|925961|925962|925963|925964|925965|925966|925967|925968|925969|925970|925971|925972|935217|935218|935219|935220|935221|935222|935223|935224|935225|935226|940182|940183|940185|940972|947117|947118|947119|947120|947121|947122|947123|947124|947125|947126|947127|956264|956265|956266|956267|956268|956269|960733", "text": "PTEN hamartoma tumor syndrome" }, { - "baseId": "22852|22868|27386|27388|27393|27394|27395|27398|27403|27404|27405|27422|27641|27642|27652|28691|28692|28693|28694|28695|28696|28698|28939|29000|31650|40609|48304|48857|54392|54633|83949|100947|133272|133274|133276|133277|139098|150535|150855|151595|151732|151955|166215|166218|166563|171614|173901|176503|180995|181000|181005|185394|187953|213392|213398|213402|213943|222738|226760|236461|236463|236468|236469|236477|236479|242978|242980|245074|260191|263939|268527|359197|360335|361700|362753|362768|362770|362771|362772|362775|362777|362778|362822|362837|362894|362928|362929|362944|362954|363008|363088|363089|363123|363240|363253|363254|363265|363266|363267|363274|363275|363276|363277|363278|363279|363298|363299|363300|363301|363306|363307|363313|363332|363333|363336|363339|363349|363350|363351|363352|363353|363354|363357|363360|363361|363362|363363|363364|363365|363366|363367|363368|363369|363370|363371|363372|363373|363374|363375|363376|363377|363378|363382|363388|363389|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363464|363465|363466|363467|363468|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363494|363495|363496|363497|363498|363499|363500|363501|363502|363503|363504|363505|363506|363507|363508|363509|363510|363511|363512|363513|363514|363528|363529|363530|363531|363532|363533|363534|363535|363538|363542|363543|363544|363545|363546|363549|363550|363551|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|432404|432408|545734|581781|622947", + "upstreamId": "22852|22868|27386|27388|27393|27394|27395|27398|27403|27404|27405|27422|27641|27642|27652|28691|28692|28693|28694|28695|28696|28698|28939|29000|31650|40609|48304|48857|54392|54633|83949|100947|133272|133274|133276|133277|139098|150535|150855|151595|151732|151955|166215|166218|166563|171614|173901|176503|180995|181000|181005|185394|187953|213392|213398|213402|213943|222738|226760|236461|236463|236468|236469|236477|236479|242978|242980|245074|260191|263939|268527|359197|360335|361700|362753|362768|362770|362771|362772|362775|362777|362778|362822|362837|362894|362928|362929|362944|362954|363008|363088|363089|363123|363240|363253|363254|363265|363266|363267|363274|363275|363276|363277|363278|363279|363298|363299|363300|363301|363306|363307|363313|363332|363333|363336|363339|363349|363350|363351|363352|363353|363354|363357|363360|363361|363362|363363|363364|363365|363366|363367|363368|363369|363370|363371|363372|363373|363374|363375|363376|363377|363378|363382|363388|363389|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363464|363465|363466|363467|363468|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363494|363495|363496|363497|363498|363499|363500|363501|363502|363503|363504|363505|363506|363507|363508|363509|363510|363511|363512|363513|363514|363528|363529|363530|363531|363532|363533|363534|363535|363538|363542|363543|363544|363545|363546|363549|363550|363551|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|432404|432408|545734|581781|622947", "text": "Glioblastoma" }, { - "baseId": "22852|27617|27618|27619|27621|27622|27623|27632|28691|28692|28694|28914|28939|29000|29005|29006|29008|29010|29011|29022|29760|31648|31650|31651|31652|40609|48247|48304|48834|48905|48938|48939|49251|53968|53969|53970|53980|53982|53983|53984|54152|54153|54155|54156|54157|54159|54160|54282|54283|54284|54289|54290|54291|54292|54387|54391|54392|54400|54404|54406|54411|54415|54418|54419|54420|54424|54425|54427|54429|54430|54446|54450|54632|54634|83949|132039|137844|172332|173901|174177|174179|174235|174248|174254|175713|175715|175854|175855|175857|176493|176631|176758|214513|216786|224866|227763|263939|267231|362750|362753|362757|362775|362798|362841|362846|362847|362857|362917|362954|362955|362956|362957|362958|362960|362961|362962|363011|363012|363013|363014|363015|363016|363019|363021|363022|363023|363123|363154|363155|363156|363159|363160|363161|363215|363219|363221|363224|363225|363234|625984", + "upstreamId": "22852|27617|27618|27619|27621|27622|27623|27632|28691|28692|28694|28914|28939|29000|29005|29006|29008|29010|29011|29022|29760|31648|31650|31651|31652|40609|48247|48304|48834|48905|48938|48939|49251|53968|53969|53970|53980|53982|53983|53984|54152|54153|54155|54156|54157|54159|54160|54282|54283|54284|54289|54290|54291|54292|54387|54391|54392|54400|54404|54406|54411|54415|54418|54419|54420|54424|54425|54427|54429|54430|54446|54450|54632|54634|83949|132039|137844|172332|173901|174177|174179|174235|174248|174254|175713|175715|175854|175855|175857|176493|176631|176758|214513|216786|224866|227763|263939|267231|362750|362753|362757|362775|362798|362841|362846|362847|362857|362917|362954|362955|362956|362957|362958|362960|362961|362962|363011|363012|363013|363014|363015|363016|363019|363021|363022|363023|363123|363154|363155|363156|363159|363160|363161|363215|363219|363221|363224|363225|363234|625984", "text": "Non-small cell lung cancer" }, { - "baseId": "22852|22858|22866|22872|22872|22887|22888|22889|22890|48267|48268|48269|50121|185731|187363|205765|207797|213602|224868|380154|408007|416944|419766|551779|677041|963155|971537", + "upstreamId": "22852|22858|22866|22872|22872|22887|22888|22889|22890|48267|48268|48269|50121|185731|187363|205765|207797|213602|224868|380154|408007|416944|419766|551779|677041|963155|971537", "text": "Macrocephaly/autism syndrome" }, { - "baseId": "22853|22871", + "upstreamId": "22853|22871", "text": "Lhermitte-Duclos disease" }, { - "baseId": "22858|22872|27386|27388|27394|27395|27398|27403|27404|27405|27407|27408|27409|27422|28691|28692|28693|28694|28695|28696|28698|28939|29000|29011|33122|33123|33124|40609|48304|49881|53980|54633|59119|83949|133271|133272|133274|133276|139098|150515|150535|151476|151897|152428|166215|166218|171613|171614|173901|175540|176503|181000|181001|181005|185345|185366|185367|185371|185375|185394|187363|213392|213398|213402|213943|232035|236459|236461|236463|236468|236469|236477|236479|236481|242978|242980|245074|260191|263939|359197|360335|362753|362768|362770|362771|362772|362775|362777|362778|362826|362865|362866|362895|362896|362911|362944|363086|363087|363088|363089|363110|363120|363123|363140|363274|363275|363276|363277|363278|363279|363313|363317|363318|363349|363350|363351|363352|363353|363354|363360|363361|363362|363363|363364|363365|363366|363370|363390|363438|363439|363440|363441|363442|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363453|363454|363455|363456|363461|363462|363463|363469|363470|363471|363472|363473|363474|363475|363476|363477|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363496|363497|363498|363499|363500|363501|363502|363503|363504|363505|363506|363507|363508|363512|363513|363514|363515|363518|363519|363520|363521|363522|363523|363524|363525|363528|363529|363530|363531|363534|363535|363536|363537|363538|363542|363543|363544|363545|363546|363547|363548|363549|363550|363551|363553|363554|363555|363556|363557|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363572|363573|973051", + "upstreamId": "22858|22872|27386|27388|27394|27395|27398|27403|27404|27405|27407|27408|27409|27422|28691|28692|28693|28694|28695|28696|28698|28939|29000|29011|33122|33123|33124|40609|48304|49881|53980|54633|59119|83949|133271|133272|133274|133276|139098|150515|150535|151476|151897|152428|166215|166218|171613|171614|173901|175540|176503|181000|181001|181005|185345|185366|185367|185371|185375|185394|187363|213392|213398|213402|213943|232035|236459|236461|236463|236468|236469|236477|236479|236481|242978|242980|245074|260191|263939|359197|360335|362753|362768|362770|362771|362772|362775|362777|362778|362826|362865|362866|362895|362896|362911|362944|363086|363087|363088|363089|363110|363120|363123|363140|363274|363275|363276|363277|363278|363279|363313|363317|363318|363349|363350|363351|363352|363353|363354|363360|363361|363362|363363|363364|363365|363366|363370|363390|363438|363439|363440|363441|363442|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363453|363454|363455|363456|363461|363462|363463|363469|363470|363471|363472|363473|363474|363475|363476|363477|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363496|363497|363498|363499|363500|363501|363502|363503|363504|363505|363506|363507|363508|363512|363513|363514|363515|363518|363519|363520|363521|363522|363523|363524|363525|363528|363529|363530|363531|363534|363535|363536|363537|363538|363542|363543|363544|363545|363546|363547|363548|363549|363550|363551|363553|363554|363555|363556|363557|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363572|363573|973051", "text": "Neoplasm of brain" }, { - "baseId": "22868|23584|27386|27388|27394|27395|27403|27404|27405|27422|27641|27642|27652|28691|28692|28693|28694|28695|28696|28698|29005|29007|29009|29010|29013|29022|32616|32617|32618|32619|32620|32622|32625|32626|32627|32628|40609|40610|48304|53970|53985|54633|87578|133276|133277|139098|150515|150535|151476|151595|151732|151897|151955|166215|166218|171600|171601|185366|185367|185371|213943|222738|236461|236469|236471|236477|236481|242978|242980|245074|260191|362768|362770|362771|362772|362773|362774|362775|362777|362778|362837|362894|362912|362928|362929|362933|363053|363107|363108|363109|363110|363113|363114|363121|363123|363165|363197|363223|363264|363270|363271|363272|363273|363327|363330|363331|363348|363352|363353|363354|363360|363367|363368|363369|363370|363384|363385|363386|363388|363389|363405|363406|363416|363417|363418|363419|363422|363423|363424|363425|363426|363427|363428|363429|363430|363431|363432|363433|363434|363438|363439|363440|363441|363442|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363482|363483|363491|363492|363493|363516|363517|363528|363529|363530|363531|363532|363533|363534|363535|363538|363553|363554|363555|363556|363557|363566|363567|363568|363569|363570|363571|363572|363573|363574|363575|363576", + "upstreamId": "22868|23584|27386|27388|27394|27395|27403|27404|27405|27422|27641|27642|27652|28691|28692|28693|28694|28695|28696|28698|29005|29007|29009|29010|29013|29022|32616|32617|32618|32619|32620|32622|32625|32626|32627|32628|40609|40610|48304|53970|53985|54633|87578|133276|133277|139098|150515|150535|151476|151595|151732|151897|151955|166215|166218|171600|171601|185366|185367|185371|213943|222738|236461|236469|236471|236477|236481|242978|242980|245074|260191|362768|362770|362771|362772|362773|362774|362775|362777|362778|362837|362894|362912|362928|362929|362933|363053|363107|363108|363109|363110|363113|363114|363121|363123|363165|363197|363223|363264|363270|363271|363272|363273|363327|363330|363331|363348|363352|363353|363354|363360|363367|363368|363369|363370|363384|363385|363386|363388|363389|363405|363406|363416|363417|363418|363419|363422|363423|363424|363425|363426|363427|363428|363429|363430|363431|363432|363433|363434|363438|363439|363440|363441|363442|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363482|363483|363491|363492|363493|363516|363517|363528|363529|363530|363531|363532|363533|363534|363535|363538|363553|363554|363555|363556|363557|363566|363567|363568|363569|363570|363571|363572|363573|363574|363575|363576", "text": "Adenocarcinoma of prostate" }, { - "baseId": "22868|23312|23582|23584|27284|27386|27388|27393|27394|27395|27397|27403|27404|27405|27407|27408|27409|27422|27641|27642|27645|27646|27650|27652|28311|28691|28692|28693|28694|28695|28696|28698|28905|28916|28918|28938|28939|28940|28996|29005|29022|30972|30973|32616|32617|32618|32620|32621|32622|32623|32625|36171|36173|40609|40610|44227|48247|48304|48938|48939|48940|49030|50071|53985|54158|54284|54633|80852|83949|100947|133272|133276|133277|139098|150535|150855|151476|151595|151732|151897|151955|152428|166218|171613|172332|173901|179419|180995|181000|181001|185345|185350|185366|185367|185371|185384|185394|206650|213398|213402|213526|213943|216786|222738|226759|232035|233761|236461|236462|236469|236471|236477|236479|236481|242978|242980|245074|260191|260192|263939|359197|360335|362753|362755|362773|362775|362777|362778|362837|362844|362870|362871|362873|362894|362895|362896|362912|362914|362928|362929|362933|363053|363067|363068|363107|363108|363109|363110|363112|363113|363114|363123|363165|363186|363195|363201|363222|363223|363243|363247|363248|363249|363250|363251|363258|363259|363260|363263|363264|363265|363266|363267|363269|363270|363271|363272|363282|363283|363285|363286|363287|363288|363289|363290|363293|363294|363295|363296|363297|363298|363299|363300|363301|363302|363303|363304|363305|363308|363309|363310|363311|363319|363321|363322|363323|363324|363325|363326|363327|363328|363330|363331|363334|363335|363348|363349|363350|363351|363352|363353|363354|363360|363361|363362|363363|363364|363365|363366|363367|363368|363369|363370|363371|363372|363373|363374|363375|363382|363384|363385|363386|363388|363389|363393|363396|363397|363398|363399|363400|363401|363402|363403|363405|363406|363416|363417|363418|363419|363420|363438|363439|363440|363441|363442|363448|363449|363450|363451|363452|363453|363454|363455|363456|363457|363458|363459|363460|363464|363465|363466|363467|363468|363469|363470|363471|363472|363473|363474|363475|363476|363477|363478|363479|363480|363481|363482|363483|363485|363486|363487|363488|363489|363490|363491|363492|363493|363494|363495|363496|363497|363498|363499|363503|363504|363505|363506|363507|363508|363509|363510|363511|363515|363516|363517|363518|363519|363520|363526|363527|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363538|363539|363540|363541|363545|363546|363547|363548|363552|363553|363554|363555|363556|363557|363566|363567|363568|363569|363570|363571|363572|363573", + "upstreamId": "22868|23312|23582|23584|27284|27386|27388|27393|27394|27395|27397|27403|27404|27405|27407|27408|27409|27422|27641|27642|27645|27646|27650|27652|28311|28691|28692|28693|28694|28695|28696|28698|28905|28916|28918|28938|28939|28940|28996|29005|29022|30972|30973|32616|32617|32618|32620|32621|32622|32623|32625|36171|36173|40609|40610|44227|48247|48304|48938|48939|48940|49030|50071|53985|54158|54284|54633|80852|83949|100947|133272|133276|133277|139098|150535|150855|151476|151595|151732|151897|151955|152428|166218|171613|172332|173901|179419|180995|181000|181001|185345|185350|185366|185367|185371|185384|185394|206650|213398|213402|213526|213943|216786|222738|226759|232035|233761|236461|236462|236469|236471|236477|236479|236481|242978|242980|245074|260191|260192|263939|359197|360335|362753|362755|362773|362775|362777|362778|362837|362844|362870|362871|362873|362894|362895|362896|362912|362914|362928|362929|362933|363053|363067|363068|363107|363108|363109|363110|363112|363113|363114|363123|363165|363186|363195|363201|363222|363223|363243|363247|363248|363249|363250|363251|363258|363259|363260|363263|363264|363265|363266|363267|363269|363270|363271|363272|363282|363283|363285|363286|363287|363288|363289|363290|363293|363294|363295|363296|363297|363298|363299|363300|363301|363302|363303|363304|363305|363308|363309|363310|363311|363319|363321|363322|363323|363324|363325|363326|363327|363328|363330|363331|363334|363335|363348|363349|363350|363351|363352|363353|363354|363360|363361|363362|363363|363364|363365|363366|363367|363368|363369|363370|363371|363372|363373|363374|363375|363382|363384|363385|363386|363388|363389|363393|363396|363397|363398|363399|363400|363401|363402|363403|363405|363406|363416|363417|363418|363419|363420|363438|363439|363440|363441|363442|363448|363449|363450|363451|363452|363453|363454|363455|363456|363457|363458|363459|363460|363464|363465|363466|363467|363468|363469|363470|363471|363472|363473|363474|363475|363476|363477|363478|363479|363480|363481|363482|363483|363485|363486|363487|363488|363489|363490|363491|363492|363493|363494|363495|363496|363497|363498|363499|363503|363504|363505|363506|363507|363508|363509|363510|363511|363515|363516|363517|363518|363519|363520|363526|363527|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363538|363539|363540|363541|363545|363546|363547|363548|363552|363553|363554|363555|363556|363557|363566|363567|363568|363569|363570|363571|363572|363573", "text": "Adenocarcinoma of stomach" }, { - "baseId": "22868|23582|27407|27641|27642|27645|27646|27650|27652|28691|28692|28693|28694|28695|28696|28698|29022|30972|30973|32617|32618|32620|32625|36171|36173|40609|44227|48304|54633|80852|100947|133274|151732|166218|166563|171613|179419|181000|206650|213943|362773|362775|362777|362778|362837|362870|362871|362904|362905|362933|363008|363067|363068|363107|363108|363109|363113|363114|363123|363265|363266|363267|363280|363281|363282|363289|363290|363293|363294|363295|363296|363297|363298|363299|363300|363301|363302|363303|363304|363305|363306|363321|363322|363329|363336|363340|363341|363342|363343|363344|363345|363346|363347|363352|363353|363354|363355|363356|363357|363358|363359|363360|363361|363362|363363|363370|363371|363372|363373|363374|363375|363376|363377|363378|363388|363389|363420|363453|363454|363455|363456|363503|363504|363505|363506|363507|363508|363512|363513|363514|363536|363537", + "upstreamId": "22868|23582|27407|27641|27642|27645|27646|27650|27652|28691|28692|28693|28694|28695|28696|28698|29022|30972|30973|32617|32618|32620|32625|36171|36173|40609|44227|48304|54633|80852|100947|133274|151732|166218|166563|171613|179419|181000|206650|213943|362773|362775|362777|362778|362837|362870|362871|362904|362905|362933|363008|363067|363068|363107|363108|363109|363113|363114|363123|363265|363266|363267|363280|363281|363282|363289|363290|363293|363294|363295|363296|363297|363298|363299|363300|363301|363302|363303|363304|363305|363306|363321|363322|363329|363336|363340|363341|363342|363343|363344|363345|363346|363347|363352|363353|363354|363355|363356|363357|363358|363359|363360|363361|363362|363363|363370|363371|363372|363373|363374|363375|363376|363377|363378|363388|363389|363420|363453|363454|363455|363456|363503|363504|363505|363506|363507|363508|363512|363513|363514|363536|363537", "text": "Neoplasm of uterine cervix" }, { - "baseId": "22868|27386|27388|27393|27394|27395|27398|27404|27405|27407|27408|27409|27422|27641|27642|27652|28311|28691|28692|28693|28694|28695|28696|28698|48304|54633|80852|133271|133272|133276|139098|150855|151595|151732|151955|171613|171614|176503|180995|181000|181005|185366|185367|185375|188142|213398|213943|236461|236463|236469|236471|236477|236481|242980|245074|260191|360335|362775|362777|362778|362837|362873|362894|362904|362905|362928|362929|362944|363286|363287|363288|363289|363290|363293|363294|363295|363296|363297|363298|363299|363300|363301|363302|363303|363304|363305|363306|363358|363359|363360|363367|363368|363369|363370|363379|363380|363381|363383|363384|363385|363386|363388|363389|363453|363454|363455|363456|363457|363458|363459|363460|363464|363465|363466|363467|363468|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363496|363497|363498|363499|363503|363504|363505|363506|363507|363508|363516|363517|363518|363519|363520|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363542|363543|363544|363549|363550|363551|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568", + "upstreamId": "22868|27386|27388|27393|27394|27395|27398|27404|27405|27407|27408|27409|27422|27641|27642|27652|28311|28691|28692|28693|28694|28695|28696|28698|48304|54633|80852|133271|133272|133276|139098|150855|151595|151732|151955|171613|171614|176503|180995|181000|181005|185366|185367|185375|188142|213398|213943|236461|236463|236469|236471|236477|236481|242980|245074|260191|360335|362775|362777|362778|362837|362873|362894|362904|362905|362928|362929|362944|363286|363287|363288|363289|363290|363293|363294|363295|363296|363297|363298|363299|363300|363301|363302|363303|363304|363305|363306|363358|363359|363360|363367|363368|363369|363370|363379|363380|363381|363383|363384|363385|363386|363388|363389|363453|363454|363455|363456|363457|363458|363459|363460|363464|363465|363466|363467|363468|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363496|363497|363498|363499|363503|363504|363505|363506|363507|363508|363516|363517|363518|363519|363520|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363542|363543|363544|363549|363550|363551|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568", "text": "Uterine Carcinosarcoma" }, { - "baseId": "22868|27386|27395|27397|27398|27403|27405|27408|27409|27422|27641|27642|27645|27652|28311|28691|28692|28693|28694|28695|28696|28698|28916|28939|29005|32616|32617|32618|32619|32620|32621|32622|32623|32625|32626|32627|32628|40609|40610|44227|48247|48304|48938|48939|48940|49213|49214|53985|54284|54633|80852|83949|133272|133276|139098|150515|150535|150855|151595|151732|151955|152428|166218|166563|171614|172332|173901|176503|179419|180995|181000|181001|185350|185366|185367|185384|188142|213943|216786|232035|236459|236461|236462|236463|236469|236471|236477|236481|242978|242980|245074|263939|359197|360335|361709|362753|362773|362774|362775|362777|362778|362837|362860|362873|362894|362895|362896|362904|362905|362912|362914|362928|362929|362933|363008|363036|363107|363108|363109|363110|363112|363113|363114|363121|363123|363140|363165|363194|363195|363201|363222|363223|363241|363269|363270|363271|363272|363273|363283|363286|363287|363288|363289|363290|363293|363294|363295|363296|363297|363298|363299|363300|363301|363302|363303|363304|363305|363306|363310|363311|363312|363322|363323|363334|363335|363336|363339|363340|363341|363342|363343|363348|363349|363350|363351|363352|363353|363354|363357|363358|363359|363360|363361|363362|363363|363364|363365|363366|363367|363368|363369|363370|363371|363372|363373|363374|363375|363376|363377|363378|363379|363380|363381|363382|363383|363384|363385|363386|363388|363389|363391|363392|363394|363395|363421|363428|363429|363430|363431|363443|363444|363445|363446|363447|363453|363454|363455|363456|363464|363465|363466|363467|363468|363478|363479|363480|363481|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363515|363516|363517|363518|363519|363520|363521|363522|363523|363524|363525|363526|363527|363528|363529|363530|363531|363532|363533|363534|363535|363538|363542|363543|363544|363547|363548|363552|363560|363561|363562|363563|363564|363565|363566|363567|363568|363574|363575|363576", + "upstreamId": "22868|27386|27395|27397|27398|27403|27405|27408|27409|27422|27641|27642|27645|27652|28311|28691|28692|28693|28694|28695|28696|28698|28916|28939|29005|32616|32617|32618|32619|32620|32621|32622|32623|32625|32626|32627|32628|40609|40610|44227|48247|48304|48938|48939|48940|49213|49214|53985|54284|54633|80852|83949|133272|133276|139098|150515|150535|150855|151595|151732|151955|152428|166218|166563|171614|172332|173901|176503|179419|180995|181000|181001|185350|185366|185367|185384|188142|213943|216786|232035|236459|236461|236462|236463|236469|236471|236477|236481|242978|242980|245074|263939|359197|360335|361709|362753|362773|362774|362775|362777|362778|362837|362860|362873|362894|362895|362896|362904|362905|362912|362914|362928|362929|362933|363008|363036|363107|363108|363109|363110|363112|363113|363114|363121|363123|363140|363165|363194|363195|363201|363222|363223|363241|363269|363270|363271|363272|363273|363283|363286|363287|363288|363289|363290|363293|363294|363295|363296|363297|363298|363299|363300|363301|363302|363303|363304|363305|363306|363310|363311|363312|363322|363323|363334|363335|363336|363339|363340|363341|363342|363343|363348|363349|363350|363351|363352|363353|363354|363357|363358|363359|363360|363361|363362|363363|363364|363365|363366|363367|363368|363369|363370|363371|363372|363373|363374|363375|363376|363377|363378|363379|363380|363381|363382|363383|363384|363385|363386|363388|363389|363391|363392|363394|363395|363421|363428|363429|363430|363431|363443|363444|363445|363446|363447|363453|363454|363455|363456|363464|363465|363466|363467|363468|363478|363479|363480|363481|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363515|363516|363517|363518|363519|363520|363521|363522|363523|363524|363525|363526|363527|363528|363529|363530|363531|363532|363533|363534|363535|363538|363542|363543|363544|363547|363548|363552|363560|363561|363562|363563|363564|363565|363566|363567|363568|363574|363575|363576", "text": "Malignant neoplasm of body of uterus" }, { - "baseId": "22868|27386|27388|27393|27394|27395|27403|27404|27405|27407|27408|27409|27422|27618|27645|28320|28375|28377|28378|28691|28692|28694|28695|28698|29006|29009|29010|29013|29022|31371|31378|40609|40610|44227|48304|48901|49030|49254|53970|54284|54403|54418|54438|54454|80852|88528|99004|100947|133271|133272|133276|133277|137211|137213|137215|139098|150515|150535|150855|151476|151595|151732|151775|151897|151955|152428|166218|171613|171614|174254|179419|180995|181001|181005|185366|185367|185371|185375|185394|213398|213402|213943|222738|233761|236459|236461|236463|236469|236477|236479|236481|242978|242980|245074|249482|249492|249493|249495|250715|250716|251495|256770|256771|260191|267231|289376|360335|362775|362837|362894|362912|362952|362954|363019|363020|363021|363022|363023|363024|363025|363026|363123|363174|363197|363201|363202|363247|363248|363249|363250|363251|363261|363262|363263|363264|363265|363266|363267|363280|363281|363293|363294|363295|363296|363297|363298|363299|363300|363301|363302|363303|363304|363305|363323|363330|363331|363340|363341|363342|363343|363344|363345|363346|363347|363348|363349|363350|363351|363352|363353|363354|363355|363356|363358|363359|363360|363371|363372|363373|363374|363375|363387|363388|363438|363439|363440|363441|363442|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363457|363458|363459|363460|363464|363465|363466|363467|363468|363473|363474|363475|363476|363477|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363494|363495|363496|363497|363498|363499|363503|363504|363505|363506|363507|363508|363509|363510|363511|363515|363518|363519|363520|363521|363522|363523|363524|363525|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363538|363545|363546|363549|363550|363551|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|363572|363573|363588|363589|363590|363621|407654|550726|809416|861286|861287|861288|861289|861290|861291|861292|861293|861294|861295|861296|861297|861298|861299|861300|861301|861302|861303|861304|861305|861306|861307|861308|861309|861310|861311|861312|861313|861314|861315|861316|861317|861318|861319|861320|861321|861322|861323", + "upstreamId": "22868|27386|27388|27393|27394|27395|27403|27404|27405|27407|27408|27409|27422|27618|27645|28320|28375|28377|28378|28691|28692|28694|28695|28698|29006|29009|29010|29013|29022|31371|31378|40609|40610|44227|48304|48901|49030|49254|53970|54284|54403|54418|54438|54454|80852|88528|99004|100947|133271|133272|133276|133277|137211|137213|137215|139098|150515|150535|150855|151476|151595|151732|151775|151897|151955|152428|166218|171613|171614|174254|179419|180995|181001|181005|185366|185367|185371|185375|185394|213398|213402|213943|222738|233761|236459|236461|236463|236469|236477|236479|236481|242978|242980|245074|249482|249492|249493|249495|250715|250716|251495|256770|256771|260191|267231|289376|360335|362775|362837|362894|362912|362952|362954|363019|363020|363021|363022|363023|363024|363025|363026|363123|363174|363197|363201|363202|363247|363248|363249|363250|363251|363261|363262|363263|363264|363265|363266|363267|363280|363281|363293|363294|363295|363296|363297|363298|363299|363300|363301|363302|363303|363304|363305|363323|363330|363331|363340|363341|363342|363343|363344|363345|363346|363347|363348|363349|363350|363351|363352|363353|363354|363355|363356|363358|363359|363360|363371|363372|363373|363374|363375|363387|363388|363438|363439|363440|363441|363442|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363457|363458|363459|363460|363464|363465|363466|363467|363468|363473|363474|363475|363476|363477|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363494|363495|363496|363497|363498|363499|363503|363504|363505|363506|363507|363508|363509|363510|363511|363515|363518|363519|363520|363521|363522|363523|363524|363525|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363538|363545|363546|363549|363550|363551|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|363572|363573|363588|363589|363590|363621|407654|550726|809416|861286|861287|861288|861289|861290|861291|861292|861293|861294|861295|861296|861297|861298|861299|861300|861301|861302|861303|861304|861305|861306|861307|861308|861309|861310|861311|861312|861313|861314|861315|861316|861317|861318|861319|861320|861321|861322|861323", "text": "Squamous cell lung carcinoma" }, { - "baseId": "22868|27386|27395|27405|27407|27422|28117|28126|28694|28695|28698|29022|40609|132342|133271|133272|133276|133277|151595|151732|151955|171613|171614|185345|185366|185367|185375|185394|213402|213943|222738|232035|236461|236463|236469|236479|236481|242980|260192|360335|362775|362837|362894|362895|362896|363123|363209|363247|363248|363249|363250|363251|363352|363353|363354|363388|363469|363470|363471|363472|363478|363479|363480|363481|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363531|363532|363533|363534|363535|363536|363537|363539|363540|363541|363545|363546|363547|363548|363553|363554|363555|363556|363557|363558|363559|363566|363567|363568|363569|363570|363571|462915|463279|463892|480540|568568", + "upstreamId": "22868|27386|27395|27405|27407|27422|28117|28126|28694|28695|28698|29022|40609|132342|133271|133272|133276|133277|151595|151732|151955|171613|171614|185345|185366|185367|185375|185394|213402|213943|222738|232035|236461|236463|236469|236479|236481|242980|260192|360335|362775|362837|362894|362895|362896|363123|363209|363247|363248|363249|363250|363251|363352|363353|363354|363388|363469|363470|363471|363472|363478|363479|363480|363481|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363531|363532|363533|363534|363535|363536|363537|363539|363540|363541|363545|363546|363547|363548|363553|363554|363555|363556|363557|363558|363559|363566|363567|363568|363569|363570|363571|462915|463279|463892|480540|568568", "text": "Small cell lung carcinoma" }, { - "baseId": "22872|22882", + "upstreamId": "22872|22882", "text": "Proteus-like syndrome" }, { - "baseId": "22872|612150|612151|654622", + "upstreamId": "22872|612150|612151|654622", "text": "PTEN-related disorder" }, { - "baseId": "22879", + "upstreamId": "22879", "text": "Glioma susceptibility 2" }, { - "baseId": "22880", + "upstreamId": "22880", "text": "Vater association with macrocephaly and ventriculomegaly" }, { - "baseId": "22893|135209|214793|250439|283467|283472|283474|284153|284155|284156|284159|286058|286064|286079|286087|286090|286434|286437|286438|286440|286441|286442|539990|623251|883011|883012|883013|883014|883015|883016|883017|883018|883019|883020|883021|883022|883023|883024|883025|883026|883027|883028|883029|883030|883031|883032|883033|883034|883035|883036|883037|883038", + "upstreamId": "22893|135209|214793|250439|283467|283472|283474|284153|284155|284156|284159|286058|286064|286079|286087|286090|286434|286437|286438|286440|286441|286442|539990|623251|883011|883012|883013|883014|883015|883016|883017|883018|883019|883020|883021|883022|883023|883024|883025|883026|883027|883028|883029|883030|883031|883032|883033|883034|883035|883036|883037|883038", "text": "Maturity-onset diabetes of the young type 6" }, { - "baseId": "22894|22895|22896|256296|256297|256298|263862|329217|329218|329221|329223|329227|329228|329229|329230|339409|339413|339415|339417|339421|339422|339423|339424|339426|339430|339433|339434|339436|339437|339444|339446|339454|339456|339459|345222|345224|345229|345235|345241|345242|345244|345245|345251|345259|346630|346632|346633|346634|346635|346641|346642|346643|346648|346649|622042|625980|727329|788913|789310|789311|789312|794273|798719|801178|877992|877993|877994|877995|877996|877997|877998|877999|878000|878001|878002|878003|878004|878005|878006|880559|964488|970530", + "upstreamId": "22894|22895|22896|256296|256297|256298|263862|329217|329218|329221|329223|329227|329228|329229|329230|339409|339413|339415|339417|339421|339422|339423|339424|339426|339430|339433|339434|339436|339437|339444|339446|339454|339456|339459|345222|345224|345229|345235|345241|345242|345244|345245|345251|345259|346630|346632|346633|346634|346635|346641|346642|346643|346648|346649|622042|625980|727329|788913|789310|789311|789312|794273|798719|801178|877992|877993|877994|877995|877996|877997|877998|877999|878000|878001|878002|878003|878004|878005|878006|880559|964488|970530", "text": "Coxopodopatellar syndrome" }, { - "baseId": "22897|22898|22899|22900|22901|22902|39175|190855|191404|191688|257266|257267|257269|257270|257272|257273|257276|257277|257279|257282|257286|257287|257288|257293|270316|270572|272092|334731|334733|334735|334740|334741|344541|344546|344547|344548|344553|349574|349575|349578|349580|349582|349584|349585|350587|350590|350591|350594|404841|430277|470265|471339|471341|533421|533424|533450|533452|533455|533459|533460|533482|533489|533495|533499|533501|533961|533963|570291|572831|572832|572834|573435|575067|575068|578571|584124|584527|586257|648526|648527|648528|648529|648530|648531|648532|648533|648534|648535|648536|648537|648538|648539|648540|648541|648542|648543|648544|648545|716771|728488|728489|728490|728491|728492|742211|742212|742213|742214|742215|757340|757341|757344|757346|757347|760841|772975|772978|772980|772982|776642|776649|786315|786317|788229|821301|848158|848159|848160|848161|848162|848163|848164|848165|848166|848167|848168|848169|848170|848171|848172|848173|848174|848175|848176|848177|848178|848179|848180|848181|851838|852361|882729|882730|882731|882732|882733|882734|882735|882971|882972|882973|882974|882975|929130|929131|929132|929133|938895|940495|941249|950964|950965|950966|950967|958764|958765|958766|958767|958768|960307|960930|960931|960932|961984", + "upstreamId": "22897|22898|22899|22900|22901|22902|39175|190855|191404|191688|257266|257267|257269|257270|257272|257273|257276|257277|257279|257282|257286|257287|257288|257293|270316|270572|272092|334731|334733|334735|334740|334741|344541|344546|344547|344548|344553|349574|349575|349578|349580|349582|349584|349585|350587|350590|350591|350594|404841|430277|470265|471339|471341|533421|533424|533450|533452|533455|533459|533460|533482|533489|533495|533499|533501|533961|533963|570291|572831|572832|572834|573435|575067|575068|578571|584124|584527|586257|648526|648527|648528|648529|648530|648531|648532|648533|648534|648535|648536|648537|648538|648539|648540|648541|648542|648543|648544|648545|716771|728488|728489|728490|728491|728492|742211|742212|742213|742214|742215|757340|757341|757344|757346|757347|760841|772975|772978|772980|772982|776642|776649|786315|786317|788229|821301|848158|848159|848160|848161|848162|848163|848164|848165|848166|848167|848168|848169|848170|848171|848172|848173|848174|848175|848176|848177|848178|848179|848180|848181|851838|852361|882729|882730|882731|882732|882733|882734|882735|882971|882972|882973|882974|882975|929130|929131|929132|929133|938895|940495|941249|950964|950965|950966|950967|958764|958765|958766|958767|958768|960307|960930|960931|960932|961984", "text": "Hemophagocytic lymphohistiocytosis, familial, 5" }, { - "baseId": "22903|217245|576126|919089", + "upstreamId": "22903|217245|576126|919089", "text": "Essential hypertension" }, { - "baseId": "22904|429318", + "upstreamId": "22904|429318", "text": "Body mass index quantitative trait locus 4" }, { - "baseId": "22905|22912|227277", + "upstreamId": "22905|22912|227277", "text": "Groenouw corneal dystrophy type I" }, { - "baseId": "22906|578556|578557|972509", + "upstreamId": "22906|578556|578557|972509", "text": "Thiel-Behnke corneal dystrophy" }, { - "baseId": "22907", + "upstreamId": "22907", "text": "Lattice corneal dystrophy Type I" }, { - "baseId": "22908|22911", + "upstreamId": "22908|22911", "text": "Avellino corneal dystrophy" }, { - "baseId": "22909|22911|22915", + "upstreamId": "22909|22911|22915", "text": "Reis-Bucklers' corneal dystrophy" }, { - "baseId": "22910|22914|227277", + "upstreamId": "22910|22914|227277", "text": "Corneal dystrophy, lattice type 3A" }, { - "baseId": "22910|22917|47865|47870|47873|177662|177663|177664|177666|191114|227277|251427|251428|251670|251671|251672|251673|257339|257341|257342|257343|257344|257345|257346|257347|257348|292967|292968|292978|292980|292981|292982|292993|292995|292996|293003|293009|293018|293022|293032|293034|293040|294398|294407|294411|294415|294416|294417|294418|294421|294424|294425|294432|294433|294435|294439|294448|295350|295354|295362|295366|295368|295369|295370|297122|297128|297130|297131|297133|297139|297141|297143|297147|297155|297156|297157|297824|297840|297854|297855|297856|297857|297883|297885|297889|297890|297891|297892|297894|297898|297899|297903|297908|297909|297913|297916|297920|297929|297941|297956|297973|297990|300887|300896|300898|300899|300905|300906|300907|300909|300910|300911|300914|300916|300978|300979|300980|300989|300999|335146|335150|335155|335157|335160|335162|335165|335168|335169|344931|344934|344936|344938|344949|344951|344952|344954|344973|349799|349800|349803|350817|350819|350822|350823|350826|350828|350829|350833|350834|350835|350836|350841|429065|482318|482319|482320|486367|488711|620182|620183|620184|705429|705430|709273|709631|716900|716901|721224|728589|742316|742317|742319|742323|749220|749221|749222|757418|757421|757422|760946|773041|773042|773045|779126|780043|782145|786350|793835|793836|885955|885956|885957|885958|885959|885960|885961|885962|885963|885964|885965|885966|885967|885968|885969|885970|885971|885972|885973|885974|885975|885976|885977|885978|885979|885980|885981|887443|887444|887445|887446|887447|887448|887449|890529|890530|890531|890532|890533|890534|890535|890536|890537|890538|890539|890540|890541|890542|890543|890544|890545|890546|890547|890548|890549|890550|890551|890552|890553|890554|890555|890557|890558|890559|890560|890561|890562|890563|890564|890565|890566|890567|890568|890569|890570|890571|890572|890573|890574|890575|890576|891778|891779|891780|892904|892905|892906|892907|892908|892909|892910|892911|892912|892913|892914|892915|892916|892917|892918|892919|892920|892921|892922|892923|892924|892925|892926|892927|892928|896029", + "upstreamId": "22910|22917|47865|47870|47873|177662|177663|177664|177666|191114|227277|251427|251428|251670|251671|251672|251673|257339|257341|257342|257343|257344|257345|257346|257347|257348|292967|292968|292978|292980|292981|292982|292993|292995|292996|293003|293009|293018|293022|293032|293034|293040|294398|294407|294411|294415|294416|294417|294418|294421|294424|294425|294432|294433|294435|294439|294448|295350|295354|295362|295366|295368|295369|295370|297122|297128|297130|297131|297133|297139|297141|297143|297147|297155|297156|297157|297824|297840|297854|297855|297856|297857|297883|297885|297889|297890|297891|297892|297894|297898|297899|297903|297908|297909|297913|297916|297920|297929|297941|297956|297973|297990|300887|300896|300898|300899|300905|300906|300907|300909|300910|300911|300914|300916|300978|300979|300980|300989|300999|335146|335150|335155|335157|335160|335162|335165|335168|335169|344931|344934|344936|344938|344949|344951|344952|344954|344973|349799|349800|349803|350817|350819|350822|350823|350826|350828|350829|350833|350834|350835|350836|350841|429065|482318|482319|482320|486367|488711|620182|620183|620184|705429|705430|709273|709631|716900|716901|721224|728589|742316|742317|742319|742323|749220|749221|749222|757418|757421|757422|760946|773041|773042|773045|779126|780043|782145|786350|793835|793836|885955|885956|885957|885958|885959|885960|885961|885962|885963|885964|885965|885966|885967|885968|885969|885970|885971|885972|885973|885974|885975|885976|885977|885978|885979|885980|885981|887443|887444|887445|887446|887447|887448|887449|890529|890530|890531|890532|890533|890534|890535|890536|890537|890538|890539|890540|890541|890542|890543|890544|890545|890546|890547|890548|890549|890550|890551|890552|890553|890554|890555|890557|890558|890559|890560|890561|890562|890563|890564|890565|890566|890567|890568|890569|890570|890571|890572|890573|890574|890575|890576|891778|891779|891780|892904|892905|892906|892907|892908|892909|892910|892911|892912|892913|892914|892915|892916|892917|892918|892919|892920|892921|892922|892923|892924|892925|892926|892927|892928|896029", "text": "Corneal dystrophy" }, { - "baseId": "22916|22917", + "upstreamId": "22916|22917", "text": "Corneal epithelial dystrophy" }, { - "baseId": "22918|22921|22921|22927|22927|22933|22933|22937|22937|22941|22942|22943|22944|22946|22948|22949|22950|98777|98777|104923|104959|104959|104972|104973|104997|105113|105173|105181|105183|105199|105200|105279|105292|105317|105320|105327|105394|152795|209342|237637|237682|259682|260778|260779|267810|361623|431632|513015|513016|513244|537088|578345|590238|623246|623247|623248|677405|677405|802124|818176|856058|905048", + "upstreamId": "22918|22921|22921|22927|22927|22933|22933|22937|22937|22941|22942|22943|22944|22946|22948|22949|22950|98777|98777|104923|104959|104959|104972|104973|104997|105113|105173|105181|105183|105199|105200|105279|105292|105317|105320|105327|105394|152795|209342|237637|237682|259682|260778|260779|267810|361623|431632|513015|513016|513244|537088|578345|590238|623246|623247|623248|677405|677405|802124|818176|856058|905048", "text": "Cone-rod dystrophy 3" }, { - "baseId": "22918|29068|29068|105002|137717|166347|172489|179185|196456|202392|244140|244158|244161|244165|250213|273116|354284|365691|384512|384515|384516|384522|384523|384524|384526|461251|461253|461443|461765|461772|461773|461779|461780|461782|462085|462090|462095|462097|462098|462104|526315|526316|526318|526350|526352|526354|526560|526568|526569|526834|526835|539127|551409|564792|565942|567386|567387|567392|567403|570761|570765|640231|640232|640233|640234|640235|693071|693072|693075|693076|804736|838673|838674|838675|838676|838677|838678|920542|926309|926310|935649|947549|947550|947551|956567", + "upstreamId": "22918|29068|29068|105002|137717|166347|172489|179185|196456|202392|244140|244158|244161|244165|250213|273116|354284|365691|384512|384515|384516|384522|384523|384524|384526|461251|461253|461443|461765|461772|461773|461779|461780|461782|462085|462090|462095|462097|462098|462104|526315|526316|526318|526350|526352|526354|526560|526568|526569|526834|526835|539127|551409|564792|565942|567386|567387|567392|567403|570761|570765|640231|640232|640233|640234|640235|693071|693072|693075|693076|804736|838673|838674|838675|838676|838677|838678|920542|926309|926310|935649|947549|947550|947551|956567", "text": "Peripheral neuropathy" }, { - "baseId": "22918|22921|22927|22933|22933|22937|22940|22943|22946|24628|98774|98777|98777|104923|104959|104972|104997|105002|105003|105042|105100|105102|105113|105113|105154|105162|105172|105173|105199|105218|105236|105240|105262|105279|105287|105292|105302|105308|105317|105317|105320|105394|237637|237639|237652|237674|237680|237699|259682|283423|360815|360816|360817|361623|488481|623954|918661|918662|918663|918664|918665", + "upstreamId": "22918|22921|22927|22933|22933|22937|22940|22943|22946|24628|98774|98777|98777|104923|104959|104972|104997|105002|105003|105042|105100|105102|105113|105113|105154|105162|105172|105173|105199|105218|105236|105240|105262|105279|105287|105292|105302|105308|105317|105317|105320|105394|237637|237639|237652|237674|237680|237699|259682|283423|360815|360816|360817|361623|488481|623954|918661|918662|918663|918664|918665", "text": "Age-related macular degeneration 2" }, { - "baseId": "22919|22923|22924|22942|22952|104927|104930|104931|104938|104954|104974|104990|105042|105058|105068|105082|105135|105147|105160|105200|105279|105285|105296|105297|105302|105329|105330|105332|105333|105337|105343|105380|105381|105383|105387|139937|139938|139942|139944|152793|177450|190742|191153|191957|191958|195765|237686|237695|237696|237704|250031|250033|253109|253876|253877|253878|253879|253881|253882|253883|253884|253886|267624|277559|281326|281328|281329|281332|281340|281341|281342|281346|281351|281359|281361|281367|281368|281373|281375|281378|281381|281972|281973|281986|281988|281995|281996|282000|282001|282006|283241|283246|283260|283261|283265|283266|283281|283282|283286|283290|283291|283298|283299|283386|283388|283391|283392|283399|283400|283402|283415|283422|283423|283434|283438|283441|283442|310098|310128|311355|311393|311413|311414|311416|311434|314246|314257|314263|316890|316938|316939|316940|316942|316946|316962|316991|322846|322929|322941|322943|322948|322950|322971|322982|322987|323329|323479|323481|323535|323560|323563|323569|323570|328900|353063", + "upstreamId": "22919|22923|22924|22942|22952|104927|104930|104931|104938|104954|104974|104990|105042|105058|105068|105082|105135|105147|105160|105200|105279|105285|105296|105297|105302|105329|105330|105332|105333|105337|105343|105380|105381|105383|105387|139937|139938|139942|139944|152793|177450|190742|191153|191957|191958|195765|237686|237695|237696|237704|250031|250033|253109|253876|253877|253878|253879|253881|253882|253883|253884|253886|267624|277559|281326|281328|281329|281332|281340|281341|281342|281346|281351|281359|281361|281367|281368|281373|281375|281378|281381|281972|281973|281986|281988|281995|281996|282000|282001|282006|283241|283246|283260|283261|283265|283266|283281|283282|283286|283290|283291|283298|283299|283386|283388|283391|283392|283399|283400|283402|283415|283422|283423|283434|283438|283441|283442|310098|310128|311355|311393|311413|311414|311416|311434|314246|314257|314263|316890|316938|316939|316940|316942|316946|316962|316991|322846|322929|322941|322943|322948|322950|322971|322982|322987|323329|323479|323481|323535|323560|323563|323569|323570|328900|353063", "text": "Cone-Rod Dystrophy, Recessive" }, { - "baseId": "22919|22923|22924|22927|22931|22933|22942|22943|22951|22952|104923|104927|104930|104931|104942|104954|104959|104960|104974|104976|104990|104991|105001|105037|105042|105043|105044|105058|105067|105068|105082|105106|105128|105135|105147|105160|105163|105167|105169|105177|105190|105197|105199|105200|105230|105279|105285|105287|105292|105296|105297|105302|105323|105329|105330|105332|105333|105337|105343|105371|105380|105381|105383|105386|105387|105405|139937|139938|139941|139942|139943|139944|152791|152793|177451|191153|192960|195880|226523|231499|237641|237663|237671|237684|237686|237695|237696|237704|250033|250039|267624|271072|271852|273555|281326|281328|281329|281332|281340|281341|281342|281346|281351|281361|281365|281367|281368|281373|281972|281973|281986|281988|281995|281996|282000|282001|283241|283246|283260|283261|283265|283266|283281|283282|283286|283290|283291|283298|283299|283386|283388|283391|283392|283399|283400|283402|283415|283422|283423|283434|283437|283441|283442|365227|365257|365433|365528|405257|413236|421260|488481|493406|498851|620017|620018|620019|620729|622315|719137|732655|732656|824455|856028|857169|864838|864839|864840|864841|864842|864843|864844|864845|864846|864847|864848|864849|864850|864851|864852|864853|864854|864855|864856|864857|864858|864859|864860|864861|864862|864863|864864|864865|864866|864867|864868|864869|864870|864871|864872|864873|864874|864875|864876|864877|864878|864879|864880|865216|865217|865218|865219|865220|865221|865222|865223", + "upstreamId": "22919|22923|22924|22927|22931|22933|22942|22943|22951|22952|104923|104927|104930|104931|104942|104954|104959|104960|104974|104976|104990|104991|105001|105037|105042|105043|105044|105058|105067|105068|105082|105106|105128|105135|105147|105160|105163|105167|105169|105177|105190|105197|105199|105200|105230|105279|105285|105287|105292|105296|105297|105302|105323|105329|105330|105332|105333|105337|105343|105371|105380|105381|105383|105386|105387|105405|139937|139938|139941|139942|139943|139944|152791|152793|177451|191153|192960|195880|226523|231499|237641|237663|237671|237684|237686|237695|237696|237704|250033|250039|267624|271072|271852|273555|281326|281328|281329|281332|281340|281341|281342|281346|281351|281361|281365|281367|281368|281373|281972|281973|281986|281988|281995|281996|282000|282001|283241|283246|283260|283261|283265|283266|283281|283282|283286|283290|283291|283298|283299|283386|283388|283391|283392|283399|283400|283402|283415|283422|283423|283434|283437|283441|283442|365227|365257|365433|365528|405257|413236|421260|488481|493406|498851|620017|620018|620019|620729|622315|719137|732655|732656|824455|856028|857169|864838|864839|864840|864841|864842|864843|864844|864845|864846|864847|864848|864849|864850|864851|864852|864853|864854|864855|864856|864857|864858|864859|864860|864861|864862|864863|864864|864865|864866|864867|864868|864869|864870|864871|864872|864873|864874|864875|864876|864877|864878|864879|864880|865216|865217|865218|865219|865220|865221|865222|865223", "text": "ABCA4-Related Disorders" }, { - "baseId": "22921|22927|22928|22933|22937|22943|22946|98777|104923|104959|104959|104972|104973|104995|104997|105113|105173|105181|105183|105192|105199|105292|105317|105320|105394|105394|237637|259682|267810|361623|677405", + "upstreamId": "22921|22927|22928|22933|22937|22943|22946|98777|104923|104959|104959|104972|104973|104995|104997|105113|105173|105181|105183|105192|105199|105292|105317|105320|105394|105394|237637|259682|267810|361623|677405", "text": "Retinitis pigmentosa 19" }, { - "baseId": "22924|22927|22943|22952", + "upstreamId": "22924|22927|22943|22952", "text": "MACULAR DEGENERATION, AGE-RELATED, 2, SUSCEPTIBILITY TO" }, { - "baseId": "22931|105317|176969|177101|177232|178143|178144|178145|178146|195331|195671|195955|195956|195957|195958|195959|195960|195961|195962|195963|252020|252021|252022|252023|252024|252025|252026|252027|252028|252029|252030|252031|252032|252033|252034|252035|252036|252037|252038|298213|298214|298218|298219|298229|298230|298232|298238|298239|298243|298244|298249|298250|298251|298252|298256|298258|298265|298266|298274|298275|298279|298284|298285|298290|298291|298294|298298|298299|298302|298303|298304|298305|298306|298310|300523|300528|300534|300536|300537|300546|300553|300555|300557|300559|300560|300564|300565|300570|300571|300584|300585|300587|300588|300596|300597|300618|300619|300620|300622|300623|300624|304783|304785|304787|304788|304790|304792|304793|304794|304796|304797|304798|304799|304800|304801|304808|304823|304824|304828|304838|304839|304844|304848|304858|304859|304861|304864|304865|304875|304881|304882|304885|304886|304893|304899|304902|304905|305051|305066|305070|305071|305072|305073|305077|305078|305083|305089|305094|305107|305109|305110|305115|305116|305117|305119|305120|305122|305123|489874|513968|536136|551408|623988|623990|735244|831182|831183|831184|831214|831225|831229|894774|894775|894776|894777|894778|894779|894780|894781|894782|894783|894784|894785|894786|894787|894788|894789|894790|894791|894792|894793|894794|894795|894796|894797|894798|894799|894800|894801|894802|894803|894804|894805|894806|894807|894808|894809|894810|894811|894812|894813|894814|894815|894816|894817|894818|894819|894820|894821|894822|894823|894824|894825|894826|894827|894828|894829|894830|894831|894832|894833|894834|896140|896141|896142", + "upstreamId": "22931|105317|176969|177101|177232|178143|178144|178145|178146|195331|195671|195955|195956|195957|195958|195959|195960|195961|195962|195963|252020|252021|252022|252023|252024|252025|252026|252027|252028|252029|252030|252031|252032|252033|252034|252035|252036|252037|252038|298213|298214|298218|298219|298229|298230|298232|298238|298239|298243|298244|298249|298250|298251|298252|298256|298258|298265|298266|298274|298275|298279|298284|298285|298290|298291|298294|298298|298299|298302|298303|298304|298305|298306|298310|300523|300528|300534|300536|300537|300546|300553|300555|300557|300559|300560|300564|300565|300570|300571|300584|300585|300587|300588|300596|300597|300618|300619|300620|300622|300623|300624|304783|304785|304787|304788|304790|304792|304793|304794|304796|304797|304798|304799|304800|304801|304808|304823|304824|304828|304838|304839|304844|304848|304858|304859|304861|304864|304865|304875|304881|304882|304885|304886|304893|304899|304902|304905|305051|305066|305070|305071|305072|305073|305077|305078|305083|305089|305094|305107|305109|305110|305115|305116|305117|305119|305120|305122|305123|489874|513968|536136|551408|623988|623990|735244|831182|831183|831184|831214|831225|831229|894774|894775|894776|894777|894778|894779|894780|894781|894782|894783|894784|894785|894786|894787|894788|894789|894790|894791|894792|894793|894794|894795|894796|894797|894798|894799|894800|894801|894802|894803|894804|894805|894806|894807|894808|894809|894810|894811|894812|894813|894814|894815|894816|894817|894818|894819|894820|894821|894822|894823|894824|894825|894826|894827|894828|894829|894830|894831|894832|894833|894834|896140|896141|896142", "text": "Vitreoretinopathy" }, { - "baseId": "22943", + "upstreamId": "22943", "text": "Mandibulofacial dysostosis with mental deficiency" }, { - "baseId": "22945|22946|209346|966073|966083|966086", + "upstreamId": "22945|22946|209346|966073|966083|966086", "text": "Retinal dystrophy, early-onset severe" }, { - "baseId": "22953|227300|481156|539002", + "upstreamId": "22953|227300|481156|539002", "text": "Platelet-activating factor acetylhydrolase deficiency" }, { - "baseId": "22954|22955", + "upstreamId": "22954|22955", "text": "Asthma and atopy, susceptibility to" }, { - "baseId": "22956", + "upstreamId": "22956", "text": "Cranioosteoarthropathy" }, { - "baseId": "22956|22957|22958|165835|165836|273624|292827|292832|292839|292840|292845|292849|292850|292856|292857|292865|292866|292870|292872|292876|292879|294230|294231|294232|294236|294243|294244|294245|294252|297628|297629|297630|297631|297632|297633|297647|297648|297652|297660|297664|297684|297685|297686|297706|297759|297760|297761|297764|297768|297769|297770|297792|353669|590273|698435|734522|781901|890456|890457|890458|890459|890460|890461|890462|890463|890464|890465|890466|890467|890468|890469|890470|890471|962033|962034", + "upstreamId": "22956|22957|22958|165835|165836|273624|292827|292832|292839|292840|292845|292849|292850|292856|292857|292865|292866|292870|292872|292876|292879|294230|294231|294232|294236|294243|294244|294245|294252|297628|297629|297630|297631|297632|297633|297647|297648|297652|297660|297664|297684|297685|297686|297706|297759|297760|297761|297764|297768|297769|297770|297792|353669|590273|698435|734522|781901|890456|890457|890458|890459|890460|890461|890462|890463|890464|890465|890466|890467|890468|890469|890470|890471|962033|962034", "text": "Hypertrophic osteoarthropathy, primary, autosomal recessive, 1" }, { - "baseId": "22958|22959|273624|292827|292832|292839|292840|292845|292849|292850|292856|292857|292865|292866|292870|292872|292876|292879|294230|294231|294232|294236|294243|294244|294245|294252|297628|297629|297630|297631|297632|297633|297647|297648|297652|297660|297664|297684|297685|297686|297706|297759|297760|297761|297764|297768|297769|297770|297792|353669|698435|734522|781901|890456|890457|890458|890459|890460|890461|890462|890463|890464|890465|890466|890467|890468|890469|890470|890471", + "upstreamId": "22958|22959|273624|292827|292832|292839|292840|292845|292849|292850|292856|292857|292865|292866|292870|292872|292876|292879|294230|294231|294232|294236|294243|294244|294245|294252|297628|297629|297630|297631|297632|297633|297647|297648|297652|297660|297664|297684|297685|297686|297706|297759|297760|297761|297764|297768|297769|297770|297792|353669|698435|734522|781901|890456|890457|890458|890459|890460|890461|890462|890463|890464|890465|890466|890467|890468|890469|890470|890471", "text": "Digital clubbing, isolated congenital" }, { - "baseId": "22960|22961|22962|22963|22964|22965|22966|249262", + "upstreamId": "22960|22961|22962|22963|22964|22965|22966|249262", "text": "Meesmann corneal dystrophy 1" }, { - "baseId": "22967|48345|48346|176954|192847|194604|291235|291343|623829|697706|799307|799308|802147|918784|918785|918786|918787", + "upstreamId": "22967|48345|48346|176954|192847|194604|291235|291343|623829|697706|799307|799308|802147|918784|918785|918786|918787", "text": "Retinitis pigmentosa 33" }, { - "baseId": "22968|22969|22972|22973|22974|22977|22978|22979|22980|22982|22984|23347|23347|57270|76604|76605|76606|174402|174539|191976|227325|227326|244016|305811|309843|309847|315085|315202|404778|421688|457953|457954|457957|458600|458603|513072|523521|524023|524284|524294|524296|551558|562319|562492|565208|568091|637384|637385|637386|687317|711627|783152|798604|800834|818258|818259|819982|819983|819984|835026|835027|835028|835029|851209|851702|851704|925258|934416|940912|946175|946176|962717|963360", + "upstreamId": "22968|22969|22972|22973|22974|22977|22978|22979|22980|22982|22984|23347|23347|57270|76604|76605|76606|174402|174539|191976|227325|227326|244016|305811|309843|309847|315085|315202|404778|421688|457953|457954|457957|458600|458603|513072|523521|524023|524284|524294|524296|551558|562319|562492|565208|568091|637384|637385|637386|687317|711627|783152|798604|800834|818258|818259|819982|819983|819984|835026|835027|835028|835029|851209|851702|851704|925258|934416|940912|946175|946176|962717|963360", "text": "Branchiootorenal Syndrome 1" }, { - "baseId": "22970|22971|22977|22982|22983|57264|57265|57269|57270|57271|57272|57273|174400|174402|174537|174538|174539|174540|191976|227326|229622|229623|305789|305793|305795|305799|305809|305811|305812|305813|305817|305820|305824|309803|309808|309827|309829|309835|309836|309837|309841|309843|309847|309855|309857|309858|309866|309868|309870|309884|309886|315036|315040|315043|315067|315069|315081|315083|315084|315085|315100|315101|315102|315105|315114|315194|315199|315201|315202|315204|315205|315206|315215|404778|493047|654755|677035|798603|899976|899977|899978|899979|899980|899981|899982|899983|899984|899985|899986|899987|899988|899989|899990|899991|899992|899993|899994|899995|899996|899997|899998|899999|900000|900513|900514|900515", + "upstreamId": "22970|22971|22977|22982|22983|57264|57265|57269|57270|57271|57272|57273|174400|174402|174537|174538|174539|174540|191976|227326|229622|229623|305789|305793|305795|305799|305809|305811|305812|305813|305817|305820|305824|309803|309808|309827|309829|309835|309836|309837|309841|309843|309847|309855|309857|309858|309866|309868|309870|309884|309886|315036|315040|315043|315067|315069|315081|315083|315084|315085|315100|315101|315102|315105|315114|315194|315199|315201|315202|315204|315205|315206|315215|404778|493047|654755|677035|798603|899976|899977|899978|899979|899980|899981|899982|899983|899984|899985|899986|899987|899988|899989|899990|899991|899992|899993|899994|899995|899996|899997|899998|899999|900000|900513|900514|900515", "text": "Branchiootic syndrome" }, { - "baseId": "22975", + "upstreamId": "22975", "text": "Anterior segment anomalies and cataract" }, { - "baseId": "22976", + "upstreamId": "22976", "text": "Anterior segment anomalies" }, { - "baseId": "22977", + "upstreamId": "22977", "text": "Branchiootorenal syndrome with cataract" }, { - "baseId": "22977|22981|57264|57265|57269|57270|57271|57272|57273|174400|174537|174538|174539|174540|191976|227326|229622|229623|305789|305793|305795|305799|305809|305811|305812|305813|305817|305820|305824|305825|305826|305827|309803|309808|309827|309829|309830|309831|309833|309835|309836|309837|309841|309843|309847|309855|309857|309858|309866|309868|309870|309884|309886|309891|309902|309906|315036|315040|315043|315067|315068|315069|315070|315081|315083|315084|315085|315100|315101|315102|315105|315114|315185|315187|315194|315199|315201|315202|315204|315205|315206|315215|353843|404778|493047|654522|899976|899977|899978|899979|899980|899981|899982|899983|899984|899985|899986|899987|899988|899989|899990|899991|899992|899993|899994|899995|899996|899997|899998|899999|900000|900513|900514|900515|919173|919174", + "upstreamId": "22977|22981|57264|57265|57269|57270|57271|57272|57273|174400|174537|174538|174539|174540|191976|227326|229622|229623|305789|305793|305795|305799|305809|305811|305812|305813|305817|305820|305824|305825|305826|305827|309803|309808|309827|309829|309830|309831|309833|309835|309836|309837|309841|309843|309847|309855|309857|309858|309866|309868|309870|309884|309886|309891|309902|309906|315036|315040|315043|315067|315068|315069|315070|315081|315083|315084|315085|315100|315101|315102|315105|315114|315185|315187|315194|315199|315201|315202|315204|315205|315206|315215|353843|404778|493047|654522|899976|899977|899978|899979|899980|899981|899982|899983|899984|899985|899986|899987|899988|899989|899990|899991|899992|899993|899994|899995|899996|899997|899998|899999|900000|900513|900514|900515|919173|919174", "text": "Otofaciocervical syndrome 1" }, { - "baseId": "22985|22986|22987|22988|22989|22990|22991|22992|22993|22994|22995|22997|22998|22999|23000|39161|190231|190232|193402|277404|277405|277408|277409|277410|277411|277612|277613|277616|277619|277620|277621|277632|277639|278472|278478|278479|278480|278492|278493|278495|278503|278517|614159|731877|862803|862804|862806|862807|862808|862809|862810|862811|862812|862813|862814|862815|862816|862817|862818|862819|862820|862821|862822", + "upstreamId": "22985|22986|22987|22988|22989|22990|22991|22992|22993|22994|22995|22997|22998|22999|23000|39161|190231|190232|193402|277404|277405|277408|277409|277410|277411|277612|277613|277616|277619|277620|277621|277632|277639|278472|278478|278479|278480|278492|278493|278495|278503|278517|614159|731877|862803|862804|862806|862807|862808|862809|862810|862811|862812|862813|862814|862815|862816|862817|862818|862819|862820|862821|862822", "text": "Glaucoma 1, open angle, A" }, { - "baseId": "22994", + "upstreamId": "22994", "text": "Glaucoma 1, open angle, a, autosomal recessive" }, { - "baseId": "22994|190231|193402|247362|277404|277405|277408|277409|277410|277411|277612|277613|277616|277619|277620|277621|277632|277639|278472|278478|278479|278480|278492|278493|278495|278503|278517|360918|360999|389344|731877|862803|862804|862805|862806|862807|862808|862809|862811|862812|862813|862814|862815|862816|862817|862818|862819|862820|862821|862822", + "upstreamId": "22994|190231|193402|247362|277404|277405|277408|277409|277410|277411|277612|277613|277616|277619|277620|277621|277632|277639|278472|278478|278479|278480|278492|278493|278495|278503|278517|360918|360999|389344|731877|862803|862804|862805|862806|862807|862808|862809|862811|862812|862813|862814|862815|862816|862817|862818|862819|862820|862821|862822", "text": "Glaucoma" }, { - "baseId": "22996", + "upstreamId": "22996", "text": "Glaucoma 1, open angle, a, digenic" }, { - "baseId": "22997", + "upstreamId": "22997", "text": "Glaucoma 3, primary congenital, a, digenic" }, { - "baseId": "22997|619971|619972|619973", + "upstreamId": "22997|619971|619972|619973", "text": "MYOC-Related Disorders" }, { - "baseId": "23001", + "upstreamId": "23001", "text": "Spinal muscular atrophy, modifier of" }, { - "baseId": "23001|24203|24204|24207|24208|24209|24211|24212|24215|24217|48111|48112|48113|424702|622775|622789|626372|858314", + "upstreamId": "23001|24203|24204|24207|24208|24209|24211|24212|24215|24217|48111|48112|48113|424702|622775|622789|626372|858314", "text": "Kugelberg-Welander disease" }, { - "baseId": "23002|23003|23004|23005|23006|23007|23008|23009|23010|23011|26848|26850|26857|26863|26872|39160|102150|102152|102153|102154|102156|102157|102158|102159|139891|139892|139893|139894|139895|139896|139897|139898|139899|139900|139901|139902|139903|139904|139905|139906|139907|139908|139909|139910|139911|139912|141585|141586|141587|141588|141589|141590|153060|153104|153122|153258|153570|165745|165746|165747|165748|165749|165750|165751|165752|165753|165754|165755|165756|165757|165758|165759|165760|165761|165762|165763|165764|165765|165766|165767|165768|165769|165770|165771|165772|165773|165774|165775|165776|165777|165778|165779|165780|165781|165782|165783|165784|165785|165786|165787|165788|165789|165790|165791|165792|165793|165794|165795|165796|165797|165798|165799|165800|165801|165802|165919|165920|165921|165922|165923|165924|165925|165926|165927|165928|165929|165930|165931|165932|165933|165934|165935|165936|165937|165938|165939|165940|165941|165942|165943|165944|165945|165946|165947|165948|166474|166478|166533|169077|169078|169079|169083|169084|169085|169086|169087|169088|169089|169090|169091|169092|169093|169094|169095|169096|169097|169098|169099|169100|169101|169102|169103|169104|169105|187486|193733|196435|196438|196439|205805|208160|208161|208162|208163|208164|208165|208169|213632|215013|215015|242023|264716|360214|361963|373993|400542|400846|404014|409190|409191|409195|429625|429627|429628|439324|463959|464538|464761|464765|464796|464802|491540|492278|512117|528617|528969|528974|528982|529041|550660|566886|568553|568557|568563|568615|568620|569188|569191|569216|569219|569220|569224|573133|573137|573140|573142|580004|614015|614017|614020|614021|614136|642994|642995|642996|642997|642998|642999|643000|643001|643002|680053|688393|693648|754325|770057|778228|788886|791432|791433|791434|791435|791436|802004|820665|820666|820669|842080|842081|842082|842083|842084|842085|842086|842087|842088|842089|842090|842091|842092|858691|906351|927258|927259|927260|936829|936830|936831|936832|940321|941079|948780|948781|948782|948783|948784|962873|962874|962875|969569|972727|973104|983697", + "upstreamId": "23002|23003|23004|23005|23006|23007|23008|23009|23010|23011|26848|26850|26857|26863|26872|39160|102150|102152|102153|102154|102156|102157|102158|102159|139891|139892|139893|139894|139895|139896|139897|139898|139899|139900|139901|139902|139903|139904|139905|139906|139907|139908|139909|139910|139911|139912|141585|141586|141587|141588|141589|141590|153060|153104|153122|153258|153570|165745|165746|165747|165748|165749|165750|165751|165752|165753|165754|165755|165756|165757|165758|165759|165760|165761|165762|165763|165764|165765|165766|165767|165768|165769|165770|165771|165772|165773|165774|165775|165776|165777|165778|165779|165780|165781|165782|165783|165784|165785|165786|165787|165788|165789|165790|165791|165792|165793|165794|165795|165796|165797|165798|165799|165800|165801|165802|165919|165920|165921|165922|165923|165924|165925|165926|165927|165928|165929|165930|165931|165932|165933|165934|165935|165936|165937|165938|165939|165940|165941|165942|165943|165944|165945|165946|165947|165948|166474|166478|166533|169077|169078|169079|169083|169084|169085|169086|169087|169088|169089|169090|169091|169092|169093|169094|169095|169096|169097|169098|169099|169100|169101|169102|169103|169104|169105|187486|193733|196435|196438|196439|205805|208160|208161|208162|208163|208164|208165|208169|213632|215013|215015|242023|264716|360214|361963|373993|400542|400846|404014|409190|409191|409195|429625|429627|429628|439324|463959|464538|464761|464765|464796|464802|491540|492278|512117|528617|528969|528974|528982|529041|550660|566886|568553|568557|568563|568615|568620|569188|569191|569216|569219|569220|569224|573133|573137|573140|573142|580004|614015|614017|614020|614021|614136|642994|642995|642996|642997|642998|642999|643000|643001|643002|680053|688393|693648|754325|770057|778228|788886|791432|791433|791434|791435|791436|802004|820665|820666|820669|842080|842081|842082|842083|842084|842085|842086|842087|842088|842089|842090|842091|842092|858691|906351|927258|927259|927260|936829|936830|936831|936832|940321|941079|948780|948781|948782|948783|948784|962873|962874|962875|969569|972727|973104|983697", "text": "Angelman syndrome" }, { - "baseId": "23012|23013|23014|23015|23016|23016|23017|23018|23019|23021|23023|28324|31379|138125|138127|138129|138131|139286|193378|193379|236942|236942|252665|253699|253700|253704|253706|268579|268591|309577|309579|309582|309583|309584|309585|309587|309588|309600|309606|309607|309608|314366|314367|314377|314378|314379|314389|314395|314396|314414|314416|314418|314419|314420|314421|314431|320436|320439|320440|320447|320448|320459|320461|320462|320467|320469|320470|320865|320874|320875|320877|320883|320884|320908|320909|320916|320920|320934|320936|320937|320942|320947|415094|415094|431983|456538|456820|456935|456940|457165|457597|457599|503156|522519|522755|522762|522825|522829|522830|523183|561759|561768|566649|566651|566659|566662|569547|635970|635971|635972|635973|635974|635975|635976|679249|682491|692201|692202|699993|701223|737381|790715|815986|833416|833417|865489|865490|865491|865492|865493|865494|865495|865496|865497|865498|865499|865500|865501|865502|865503|865504|865505|865506|865507|865508|865509|865510|865511|865512|865513|865514|868451|868452|868453|919097|924782|933812|933813|955106|955107|962161|969280|969281|969289", + "upstreamId": "23012|23013|23014|23015|23016|23016|23017|23018|23019|23021|23023|28324|31379|138125|138127|138129|138131|139286|193378|193379|236942|236942|252665|253699|253700|253704|253706|268579|268591|309577|309579|309582|309583|309584|309585|309587|309588|309600|309606|309607|309608|314366|314367|314377|314378|314379|314389|314395|314396|314414|314416|314418|314419|314420|314421|314431|320436|320439|320440|320447|320448|320459|320461|320462|320467|320469|320470|320865|320874|320875|320877|320883|320884|320908|320909|320916|320920|320934|320936|320937|320942|320947|415094|415094|431983|456538|456820|456935|456940|457165|457597|457599|503156|522519|522755|522762|522825|522829|522830|523183|561759|561768|566649|566651|566659|566662|569547|635970|635971|635972|635973|635974|635975|635976|679249|682491|692201|692202|699993|701223|737381|790715|815986|833416|833417|865489|865490|865491|865492|865493|865494|865495|865496|865497|865498|865499|865500|865501|865502|865503|865504|865505|865506|865507|865508|865509|865510|865511|865512|865513|865514|868451|868452|868453|919097|924782|933812|933813|955106|955107|962161|969280|969281|969289", "text": "Saethre-Chotzen syndrome" }, { - "baseId": "23016|23023|23024|23025|70565|70566|70567|236942|236942|252665|361136|415094|456538|456820|456935|456940|457597|457599|468850|469875|469877|470296|470299|470963|522519|522755|522762|522825|522829|522830|523183|533064|533066|533147|533175|561759|561768|566649|566651|566659|566662|570836|574986|635970|635971|635972|635973|635974|635975|635976|689088|689089|692201|692202|694439|694442|695828|699993|705042|741931|786211|790715|833416|833417|847754|924782|928988|928989|933812|933813|938718|938719|950815|955106|955107|958651|962161", + "upstreamId": "23016|23023|23024|23025|70565|70566|70567|236942|236942|252665|361136|415094|456538|456820|456935|456940|457597|457599|468850|469875|469877|470296|470299|470963|522519|522755|522762|522825|522829|522830|523183|533064|533066|533147|533175|561759|561768|566649|566651|566659|566662|570836|574986|635970|635971|635972|635973|635974|635975|635976|689088|689089|692201|692202|694439|694442|695828|699993|705042|741931|786211|790715|833416|833417|847754|924782|928988|928989|933812|933813|938718|938719|950815|955106|955107|958651|962161", "text": "Craniosynostosis 1" }, { - "baseId": "23020|23023|236942", + "upstreamId": "23020|23023|236942", "text": "Robinow-Sorauf syndrome" }, { - "baseId": "23022", + "upstreamId": "23022", "text": "Saethre-Chotzen syndrome with eyelid anomalies" }, { - "baseId": "23026|23027|23028|23029|40565|195350|254425|254427|266615|273010|316116|316117|316121|316123|316124|316126|316128|316129|316142|316145|316146|316147|316152|316154|316155|316157|316158|316160|316161|323363|323366|323367|323370|323374|323375|323377|323391|323392|323394|323395|323412|323416|323417|323428|323440|323441|323443|323444|329568|329569|329575|329587|329588|329594|329595|329596|329599|329601|329613|329616|329617|329631|329632|329633|329640|329644|329646|329647|329649|329658|330721|330728|330730|330731|330735|330740|330744|330752|330755|330757|330759|330761|330765|330768|330769|330770|330771|330777|330783|330793|330794|330798|330802|330806|330830|404621|490883|566344|581960|584835|702145|702146|724903|852437|869345|869346|869347|869348|869349|869350|869351|869352|869353|869354|869355|869356|869357|869358|869359|869360|869361|869362|869363|869364|869365|869366|869367|869368|869369|869370|919412|926470|960775", + "upstreamId": "23026|23027|23028|23029|40565|195350|254425|254427|266615|273010|316116|316117|316121|316123|316124|316126|316128|316129|316142|316145|316146|316147|316152|316154|316155|316157|316158|316160|316161|323363|323366|323367|323370|323374|323375|323377|323391|323392|323394|323395|323412|323416|323417|323428|323440|323441|323443|323444|329568|329569|329575|329587|329588|329594|329595|329596|329599|329601|329613|329616|329617|329631|329632|329633|329640|329644|329646|329647|329649|329658|330721|330728|330730|330731|330735|330740|330744|330752|330755|330757|330759|330761|330765|330768|330769|330770|330771|330777|330783|330793|330794|330798|330802|330806|330830|404621|490883|566344|581960|584835|702145|702146|724903|852437|869345|869346|869347|869348|869349|869350|869351|869352|869353|869354|869355|869356|869357|869358|869359|869360|869361|869362|869363|869364|869365|869366|869367|869368|869369|869370|919412|926470|960775", "text": "Ulnar-mammary syndrome" }, { - "baseId": "23030|23031|23032|23033|23034|23035|23036|23037|23038|45761|143119|165589|178439|192196|194372|195854|209426|209429|209430|209431|209432|209434|209436|209439|209440|209441|209442|209444|210203|210214|210215|210216|224188|226714|237520|238210|249731|254419|254420|254421|257940|258718|260009|264579|273935|279092|280529|316066|316067|316071|316075|316077|316078|316080|316081|316107|316108|316113|316115|323314|323321|323332|323333|323334|323336|323338|323352|323354|323360|329524|329530|329531|329534|329536|329539|329540|329542|329548|329549|329556|329557|329564|329565|329567|330635|330639|330642|330645|330646|330652|330658|330659|330664|330671|330672|330673|330674|330675|330681|330690|330696|330698|330700|330704|330706|353903|361158|361746|364644|364755|364782|364894|390968|390985|391030|391044|391046|391063|391064|434565|442719|444920|447488|447491|447497|447499|447623|447624|447625|447630|447783|447790|447794|461851|481488|486712|498297|509132|510351|510353|510354|514885|515538|515541|515548|515571|515585|552355|556784|556786|556788|556856|557147|557149|557151|558345|566343|571281|614044|622152|622153|622154|622155|622156|622157|622158|622159|622160|622161|622162|622163|622164|622165|622166|622167|622168|622169|622170|622171|622172|622173|622174|622175|622176|622177|622178|622179|622180|622181|622182|622183|622184|622185|622186|622187|622188|622189|622190|622191|622192|622193|622194|622195|622196|622197|622198|622199|622200|622201|622202|622203|622204|622205|622206|627369|627370|627371|627372|627373|627374|627375|627376|627377|650543|650569|690019|791198|794581|818752|818926|818927|818928|818929|818930|823471|823472|823473|823474|823475|823476|823477|858254|869318|869319|869320|869321|869322|869323|869324|869325|869326|869327|869328|869329|869330|869331|869332|869333|869334|869335|869336|869337|869338|869339|869340|869341|869342|869343|869344|872192|917104|921845|921846|921847|930326|930327|941763|941764|941765|941766|941767|952300|952301|952302|960024", + "upstreamId": "23030|23031|23032|23033|23034|23035|23036|23037|23038|45761|143119|165589|178439|192196|194372|195854|209426|209429|209430|209431|209432|209434|209436|209439|209440|209441|209442|209444|210203|210214|210215|210216|224188|226714|237520|238210|249731|254419|254420|254421|257940|258718|260009|264579|273935|279092|280529|316066|316067|316071|316075|316077|316078|316080|316081|316107|316108|316113|316115|323314|323321|323332|323333|323334|323336|323338|323352|323354|323360|329524|329530|329531|329534|329536|329539|329540|329542|329548|329549|329556|329557|329564|329565|329567|330635|330639|330642|330645|330646|330652|330658|330659|330664|330671|330672|330673|330674|330675|330681|330690|330696|330698|330700|330704|330706|353903|361158|361746|364644|364755|364782|364894|390968|390985|391030|391044|391046|391063|391064|434565|442719|444920|447488|447491|447497|447499|447623|447624|447625|447630|447783|447790|447794|461851|481488|486712|498297|509132|510351|510353|510354|514885|515538|515541|515548|515571|515585|552355|556784|556786|556788|556856|557147|557149|557151|558345|566343|571281|614044|622152|622153|622154|622155|622156|622157|622158|622159|622160|622161|622162|622163|622164|622165|622166|622167|622168|622169|622170|622171|622172|622173|622174|622175|622176|622177|622178|622179|622180|622181|622182|622183|622184|622185|622186|622187|622188|622189|622190|622191|622192|622193|622194|622195|622196|622197|622198|622199|622200|622201|622202|622203|622204|622205|622206|627369|627370|627371|627372|627373|627374|627375|627376|627377|650543|650569|690019|791198|794581|818752|818926|818927|818928|818929|818930|823471|823472|823473|823474|823475|823476|823477|858254|869318|869319|869320|869321|869322|869323|869324|869325|869326|869327|869328|869329|869330|869331|869332|869333|869334|869335|869336|869337|869338|869339|869340|869341|869342|869343|869344|872192|917104|921845|921846|921847|930326|930327|941763|941764|941765|941766|941767|952300|952301|952302|960024", "text": "Holt-Oram syndrome" }, { - "baseId": "23032|23034|45781|45782|192196|195854|210203|210214|210215|210216|241240|242093|242094|242095|242096|242097|242098|242100|242101|254420|258715|258718|264579|329557|363991|398451|398833|398835|398842|398963|398968|400288|400289|400291|400294|400304|400307|400314|400316|400450|400453|400795|400797|400802|401078|404705|429714|444920|461633|461851|462123|462188|462426|462429|464428|464444|465055|465060|465062|465069|465070|465242|465246|465312|465323|465332|487554|487573|490889|510348|510353|510354|526687|526920|527252|528990|528992|529089|529584|565055|565056|566342|566343|567675|569043|571275|571277|571281|581908|622175|623399|640641|640642|640643|643477|643478|643479|643480|643481|643482|643483|643484|643485|643486|643487|643488|643489|643490|643491|643492|643493|643494|652165|652207|652365|687885|688465|688466|688470|693726|695550|703296|820445|839327|839328|839329|839330|839331|839332|839333|839334|839335|839336|842605|842606|842607|842608|842609|842610|842611|842612|842613|842614|842615|842616|842617|851476|852434|852608|926469|927399|927400|937024|937025|937026|937027|937028|947791|948981|948982|956749|956750|956751|957474|957475|957476|957477|960024", + "upstreamId": "23032|23034|45781|45782|192196|195854|210203|210214|210215|210216|241240|242093|242094|242095|242096|242097|242098|242100|242101|254420|258715|258718|264579|329557|363991|398451|398833|398835|398842|398963|398968|400288|400289|400291|400294|400304|400307|400314|400316|400450|400453|400795|400797|400802|401078|404705|429714|444920|461633|461851|462123|462188|462426|462429|464428|464444|465055|465060|465062|465069|465070|465242|465246|465312|465323|465332|487554|487573|490889|510348|510353|510354|526687|526920|527252|528990|528992|529089|529584|565055|565056|566342|566343|567675|569043|571275|571277|571281|581908|622175|623399|640641|640642|640643|643477|643478|643479|643480|643481|643482|643483|643484|643485|643486|643487|643488|643489|643490|643491|643492|643493|643494|652165|652207|652365|687885|688465|688466|688470|693726|695550|703296|820445|839327|839328|839329|839330|839331|839332|839333|839334|839335|839336|842605|842606|842607|842608|842609|842610|842611|842612|842613|842614|842615|842616|842617|851476|852434|852608|926469|927399|927400|937024|937025|937026|937027|937028|947791|948981|948982|956749|956750|956751|957474|957475|957476|957477|960024", "text": "Aortic valve disease 2" }, { - "baseId": "23039|23040|171809", + "upstreamId": "23039|23040|171809", "text": "Hypotrichosis-lymphedema-telangiectasia syndrome" }, { - "baseId": "23041|427113", + "upstreamId": "23041|427113", "text": "Hypotrichosis-lymphedema-telangiectasia-renal defect syndrome" }, { - "baseId": "23042|23043|23044|23045|23046|23047|23048|23049|205171", + "upstreamId": "23042|23043|23044|23045|23046|23047|23048|23049|205171", "text": "Fundus albipunctatus, autosomal recessive" }, { - "baseId": "23042|23044|23045|28052|28059|28084|28136|98753|98754|104543|104548|104554|104561|104573|104592|104611|142607|142608|142609|142611|177987|194294|205171|252356|254632|254633|254634|264695|265976|268054|270098|300152|300154|300156|300157|300161|300164|300166|300167|300169|300173|302873|302878|302879|302880|302885|302916|302918|302926|302934|302935|302948|302949|302951|302953|302954|302960|302962|302963|307343|307353|307354|307355|307361|307363|307369|307552|307564|307565|307570|307575|307578|307579|307586|318026|318030|318034|318036|318037|323448|323451|323456|323458|323459|323460|323461|323472|323473|325932|325933|332162|332164|332165|332166|332169|333147|333149|333151|333153|333160|333162|333163|333663|339985|339987|339991|339993|339996|339999|341371|341373|341378|341381|341382|341384|341387|372463|373168|413340|489877|513938|585498|612436|622998|623998|699595|726328|800576|800577|800578|800597|818312|831963|870170|870171|870172|870173|870174|870175|870176|870177|870178|872268|874211|874212|874213|874214|874215|874216|874217|874218|874219|874220|874221|874222|874223|874224|876583|876584|876585|896283|896284|896285|896286|896287|896288|896289|896290|896291|896292|896293|896294|896295|896296|896297|896298|896299|896300|896301|896302|896303|896304|918798|919029|919030|919456", + "upstreamId": "23042|23044|23045|28052|28059|28084|28136|98753|98754|104543|104548|104554|104561|104573|104592|104611|142607|142608|142609|142611|177987|194294|205171|252356|254632|254633|254634|264695|265976|268054|270098|300152|300154|300156|300157|300161|300164|300166|300167|300169|300173|302873|302878|302879|302880|302885|302916|302918|302926|302934|302935|302948|302949|302951|302953|302954|302960|302962|302963|307343|307353|307354|307355|307361|307363|307369|307552|307564|307565|307570|307575|307578|307579|307586|318026|318030|318034|318036|318037|323448|323451|323456|323458|323459|323460|323461|323472|323473|325932|325933|332162|332164|332165|332166|332169|333147|333149|333151|333153|333160|333162|333163|333663|339985|339987|339991|339993|339996|339999|341371|341373|341378|341381|341382|341384|341387|372463|373168|413340|489877|513938|585498|612436|622998|623998|699595|726328|800576|800577|800578|800597|818312|831963|870170|870171|870172|870173|870174|870175|870176|870177|870178|872268|874211|874212|874213|874214|874215|874216|874217|874218|874219|874220|874221|874222|874223|874224|876583|876584|876585|896283|896284|896285|896286|896287|896288|896289|896290|896291|896292|896293|896294|896295|896296|896297|896298|896299|896300|896301|896302|896303|896304|918798|919029|919030|919456", "text": "Pigmentary retinal dystrophy" }, { - "baseId": "23050|23051|23052|23053|23054|23055|23056|94358|176002|176003|176005|176010|176145|176146|176147|176150|176152|176153|199803|230624|230625|230627|230628|230629|324640|324641|324644|324647|324648|324650|324651|324653|324655|324656|324659|324660|324661|324665|324666|324677|324679|324712|324715|324747|324750|324751|334180|334182|334184|334187|334190|334194|334196|334197|334202|334203|334207|334209|334215|334217|334226|334237|334240|334244|334245|334286|334287|334289|334292|334293|334294|334341|334342|334346|340870|340871|340873|340874|340875|340882|340883|340886|340890|340896|340897|340901|340903|340905|340906|340909|340911|340912|340929|340930|340933|340934|340937|340938|340941|340945|340974|342285|342290|342291|342295|342300|342303|342306|342321|342323|342328|342335|342339|342341|342342|342344|342347|342355|342390|342393|342394|342396|342398|342400|342405|342411|342453|342464|342467|439886|442562|497075|497474|497691|513355|588018|610685|623382|623383|623384|623385|654797|677037|677057|682734|714808|726505|755018|800405|804865|804866|804867|804884|858572|874851|874852|874853|874854|874855|874856|874857|874858|874859|874860|874861|874862|874863|874864|874865|874866|874867|874868|874869|874870|874871|874872|874873|874874|874875|874876|874877|874878|874879|874880|874881|874882|874883|874884|874885|874886|874887|874888|874889|874890|874891|874892|874893|874894|874895|874896|874897|874898|874899|874900|874901|874902|874903|874904|874908|874909|874910|874912|874927|874928|874929|874930|874931|874932|874933|874934|874935|876638|876639|876640|876641|876642|903609|921218|921219|921220|921223|961017|962172|962173|962174|962175|965231|965928|966782|969612|973040|975949|975950|980956|983798", + "upstreamId": "23050|23051|23052|23053|23054|23055|23056|94358|176002|176003|176005|176010|176145|176146|176147|176150|176152|176153|199803|230624|230625|230627|230628|230629|324640|324641|324644|324647|324648|324650|324651|324653|324655|324656|324659|324660|324661|324665|324666|324677|324679|324712|324715|324747|324750|324751|334180|334182|334184|334187|334190|334194|334196|334197|334202|334203|334207|334209|334215|334217|334226|334237|334240|334244|334245|334286|334287|334289|334292|334293|334294|334341|334342|334346|340870|340871|340873|340874|340875|340882|340883|340886|340890|340896|340897|340901|340903|340905|340906|340909|340911|340912|340929|340930|340933|340934|340937|340938|340941|340945|340974|342285|342290|342291|342295|342300|342303|342306|342321|342323|342328|342335|342339|342341|342342|342344|342347|342355|342390|342393|342394|342396|342398|342400|342405|342411|342453|342464|342467|439886|442562|497075|497474|497691|513355|588018|610685|623382|623383|623384|623385|654797|677037|677057|682734|714808|726505|755018|800405|804865|804866|804867|804884|858572|874851|874852|874853|874854|874855|874856|874857|874858|874859|874860|874861|874862|874863|874864|874865|874866|874867|874868|874869|874870|874871|874872|874873|874874|874875|874876|874877|874878|874879|874880|874881|874882|874883|874884|874885|874886|874887|874888|874889|874890|874891|874892|874893|874894|874895|874896|874897|874898|874899|874900|874901|874902|874903|874904|874908|874909|874910|874912|874927|874928|874929|874930|874931|874932|874933|874934|874935|876638|876639|876640|876641|876642|903609|921218|921219|921220|921223|961017|962172|962173|962174|962175|965231|965928|966782|969612|973040|975949|975950|980956|983798", "text": "Surfactant metabolism dysfunction, pulmonary, 3" }, { - "baseId": "23057|23058|207093|207094|207095|207095|209349|251310|291890|291891|291896|291898|291902|291906|293293|293297|293299|293300|293301|293306|296572|296582|296591|296595|296611|296612|296615|296621|296622|380212|380212|380213|452829|539993|539993|631856|631857|631858|631859|691490|691491|790429|790430|828651|828652|889845|889846|889847|889848|889849|889850|889851|889852|889853|889854|889855|889856|889857|889858|889859|889860|889861|891725|891726|891727|943736", + "upstreamId": "23057|23058|207093|207094|207095|207095|209349|251310|291890|291891|291896|291898|291902|291906|293293|293297|293299|293300|293301|293306|296572|296582|296591|296595|296611|296612|296615|296621|296622|380212|380212|380213|452829|539993|539993|631856|631857|631858|631859|691490|691491|790429|790430|828651|828652|889845|889846|889847|889848|889849|889850|889851|889852|889853|889854|889855|889856|889857|889858|889859|889860|889861|891725|891726|891727|943736", "text": "Deficiency of 3-hydroxyacyl-CoA dehydrogenase" }, { - "baseId": "23059|23060|48081|48082|48083|207093|207094|207095|207095|251310|291891|291896|291898|291902|293293|293297|293299|293301|293306|296572|296591|296595|296611|296612|296615|296621|296622|380212|380212|539993|539993|631858|889845|889846|889847|889848|889849|889850|889851|889852|889853|889854|889855|889856|889857|889858|889859|889860|889861|891725|891726|891727", + "upstreamId": "23059|23060|48081|48082|48083|207093|207094|207095|207095|251310|291891|291896|291898|291902|293293|293297|293299|293301|293306|296572|296591|296595|296611|296612|296615|296621|296622|380212|380212|539993|539993|631858|889845|889846|889847|889848|889849|889850|889851|889852|889853|889854|889855|889856|889857|889858|889859|889860|889861|891725|891726|891727", "text": "Hyperinsulinemic hypoglycemia, familial, 4" }, { - "baseId": "23061|23062", + "upstreamId": "23061|23062", "text": "Malignant rhabdoid tumor, somatic" }, { - "baseId": "23063|23064|23069|131900|138996|195650|243638|243639|243651|243652|337610|337611|337626|347199|347201|347202|351195|351197|351200|351201|351204|352216|352217|352219|379825|403784|403820|403825|403839|404300|404323|404331|469839|469843|469939|469954|469958|469960|469961|469974|469984|470849|470916|471303|471397|471803|534031|534083|534095|534169|534170|534182|534195|534615|571721|571724|571725|571744|571748|573289|573290|573292|573294|573966|573969|573971|575217|575218|683150|890931|890932|890933|890934|890935|890936|890937|890938|890939|891811", + "upstreamId": "23063|23064|23069|131900|138996|195650|243638|243639|243651|243652|337610|337611|337626|347199|347201|347202|351195|351197|351200|351201|351204|352216|352217|352219|379825|403784|403820|403825|403839|404300|404323|404331|469839|469843|469939|469954|469958|469960|469961|469974|469984|470849|470916|471303|471397|471803|534031|534083|534095|534169|534170|534182|534195|534615|571721|571724|571725|571744|571748|573289|573290|573292|573294|573966|573969|573971|575217|575218|683150|890931|890932|890933|890934|890935|890936|890937|890938|890939|891811", "text": "Rhabdoid tumor predisposition syndrome 1" }, { - "baseId": "23066", + "upstreamId": "23066", "text": "Schwannomatosis 1, somatic" }, { - "baseId": "23071|23072|23073|23074|23075|23076|23077|165691|236909|332860|332863|332864|332868|332869|332872|332886|332888|332889|332892|343055|343059|343064|343071|343072|343074|343076|348401|348402|348404|348405|348411|348413|348415|348416|348418|348419|349560|349563|349564|349565|349569|349570|349573|413501|469489|469490|469492|469928|470532|470534|512878|532761|532765|532784|532853|532855|532857|533216|533218|533224|570604|570608|570609|572287|572289|572978|572982|572983|572988|572990|572992|574911|574916|574917|647820|647821|647822|647823|647824|647825|647826|647827|647828|647829|647830|647831|647832|647833|647834|647835|647836|647837|647838|647839|647840|647841|647842|653610|704854|716291|716293|716294|728036|741712|741713|741714|741715|741717|741718|745385|791916|821244|847436|847437|847438|847439|847440|847441|847442|847443|847444|847445|851803|851805|852322|852966|880161|880162|880163|880164|880165|880166|880167|880168|880169|880170|880171|880172|880173|880174|880175|880176|880177|880178|880179|880180|880181|880182|880721|928896|928897|928898|928899|938616|938617|938618|938619|938620|940477|941227|941228|941229|950714|950715|950716|950717|950718|950719|950720|958572|958573|958574|958575|958576|958577", + "upstreamId": "23071|23072|23073|23074|23075|23076|23077|165691|236909|332860|332863|332864|332868|332869|332872|332886|332888|332889|332892|343055|343059|343064|343071|343072|343074|343076|348401|348402|348404|348405|348411|348413|348415|348416|348418|348419|349560|349563|349564|349565|349569|349570|349573|413501|469489|469490|469492|469928|470532|470534|512878|532761|532765|532784|532853|532855|532857|533216|533218|533224|570604|570608|570609|572287|572289|572978|572982|572983|572988|572990|572992|574911|574916|574917|647820|647821|647822|647823|647824|647825|647826|647827|647828|647829|647830|647831|647832|647833|647834|647835|647836|647837|647838|647839|647840|647841|647842|653610|704854|716291|716293|716294|728036|741712|741713|741714|741715|741717|741718|745385|791916|821244|847436|847437|847438|847439|847440|847441|847442|847443|847444|847445|851803|851805|852322|852966|880161|880162|880163|880164|880165|880166|880167|880168|880169|880170|880171|880172|880173|880174|880175|880176|880177|880178|880179|880180|880181|880182|880721|928896|928897|928898|928899|938616|938617|938618|938619|938620|940477|941227|941228|941229|950714|950715|950716|950717|950718|950719|950720|958572|958573|958574|958575|958576|958577", "text": "Immunodeficiency 30" }, { - "baseId": "23078|23079|23080|23081|23082|23083|34210|34211|34212|34213|300562|300569|300572|300577|300586|303402|303421|303428|303454|303517|308010|308011|308016|308094|308097|353795|360879|590168|590459", + "upstreamId": "23078|23079|23080|23081|23082|23083|34210|34211|34212|34213|300562|300569|300572|300577|300586|303402|303421|303428|303454|303517|308010|308011|308016|308094|308097|353795|360879|590168|590459", "text": "Char syndrome" }, { - "baseId": "23085|33384|33386|33387|33388|33389|33392|33394|33396|33397|33398|33399|33401|134200|134201|134202|134203|187128|194325|196197|207598|207599|244115|244116|256400|256405|266273|268552|329773|329776|329779|329781|329782|329784|340069|340071|340073|340075|340079|340083|345775|345776|345778|345779|345783|345788|346460|347169|347170|347173|347175|347178|347179|347186|468837|469078|481350|513646|532150|572244|574612|589390|612320|620605|694200|694201|741011|801686|801687|801691|878369|878370|878371|878372|878373|878374|878375|878376|878377|878378|878379|878380|878381|878382|878383|878384|880575|880576", + "upstreamId": "23085|33384|33386|33387|33388|33389|33392|33394|33396|33397|33398|33399|33401|134200|134201|134202|134203|187128|194325|196197|207598|207599|244115|244116|256400|256405|266273|268552|329773|329776|329779|329781|329782|329784|340069|340071|340073|340075|340079|340083|345775|345776|345778|345779|345783|345788|346460|347169|347170|347173|347175|347178|347179|347186|468837|469078|481350|513646|532150|572244|574612|589390|612320|620605|694200|694201|741011|801686|801687|801691|878369|878370|878371|878372|878373|878374|878375|878376|878377|878378|878379|878380|878381|878382|878383|878384|880575|880576", "text": "Congenital myasthenic syndrome 4C" }, { - "baseId": "23085|23085|23086|23087|23088|23089|23090|23090|23091|23092|23093|23094|23094|23095|23095|23096|135535|135536|135537|135538|188076|236991|236991|254190|254191|254191|254193|254194|254194|254196|254196|254197|254199|254199|259249|269662|272237|272237|314298|314302|314302|314303|314304|314310|314311|320894|320895|326952|326961|326961|326964|326964|326966|326966|326967|326967|326969|327989|327990|327992|327993|328006|328006|328008|328008|328017|328017|429242|441429|461171|461173|461192|461192|461196|461377|461384|461384|461702|461704|461705|462027|462028|503668|525851|526258|526259|526260|526291|526292|526294|526479|538423|546445|564725|564727|564728|564734|564737|565864|567327|567332|570703|620404|640135|640136|640137|640138|640139|640140|640141|640142|640143|640144|640145|640146|640147|640148|640149|677435|677436|677436|693055|693056|693057|693058|701788|701788|738012|738013|738014|738015|738016|738017|752698|768481|784019|784022|784023|791143|820380|820381|838547|838548|838549|838550|838551|838552|838553|838554|838555|851439|868105|868106|868107|868108|868109|868110|868111|868112|868659|868660|868660|926266|926267|926268|926269|935592|941000|947496|947497|947498|956525|956526|956527|956528|956529|956530", + "upstreamId": "23085|23085|23086|23087|23088|23089|23090|23090|23091|23092|23093|23094|23094|23095|23095|23096|135535|135536|135537|135538|188076|236991|236991|254190|254191|254191|254193|254194|254194|254196|254196|254197|254199|254199|259249|269662|272237|272237|314298|314302|314302|314303|314304|314310|314311|320894|320895|326952|326961|326961|326964|326964|326966|326966|326967|326967|326969|327989|327990|327992|327993|328006|328006|328008|328008|328017|328017|429242|441429|461171|461173|461192|461192|461196|461377|461384|461384|461702|461704|461705|462027|462028|503668|525851|526258|526259|526260|526291|526292|526294|526479|538423|546445|564725|564727|564728|564734|564737|565864|567327|567332|570703|620404|640135|640136|640137|640138|640139|640140|640141|640142|640143|640144|640145|640146|640147|640148|640149|677435|677436|677436|693055|693056|693057|693058|701788|701788|738012|738013|738014|738015|738016|738017|752698|768481|784019|784022|784023|791143|820380|820381|838547|838548|838549|838550|838551|838552|838553|838554|838555|851439|868105|868106|868107|868108|868109|868110|868111|868112|868659|868660|868660|926266|926267|926268|926269|935592|941000|947496|947497|947498|956525|956526|956527|956528|956529|956530", "text": "Myasthenic syndrome, congenital, 11, associated with acetylcholine receptor deficiency" }, { - "baseId": "23096|23097|23098", + "upstreamId": "23096|23097|23098", "text": "Fetal akinesia deformation sequence 2" }, { - "baseId": "23099|44208|48633|48778|247414", + "upstreamId": "23099|44208|48633|48778|247414", "text": "Schinzel phocomelia syndrome" }, { - "baseId": "23100", + "upstreamId": "23100", "text": "Fuhrmann syndrome" }, { - "baseId": "23109", + "upstreamId": "23109", "text": "Pancreatitis, chronic, protection against" }, { - "baseId": "23110|207396|215332|512819|512820|512905|919019|919020", + "upstreamId": "23110|207396|215332|512819|512820|512905|919019|919020", "text": "Spinocerebellar ataxia type 1" }, { - "baseId": "23111", + "upstreamId": "23111", "text": "Malattia leventinese" }, { - "baseId": "23111|99387|104603|177692|189104|191177|250749|268069|286823|286824|286827|286833|286834|286838|286839|286840|286844|286848|286853|286860|286861|286871|287571|287574|287576|287578|287584|287585|287594|287595|287598|287606|287616|287618|289961|289962|289965|289966|289970|289978|289979|289980|289983|289985|289990|289992|290381|290391|290392|290399|290401|290402|826845|885225|885226|885227|885228|885229|885230|885231|885232|885233", + "upstreamId": "23111|99387|104603|177692|189104|191177|250749|268069|286823|286824|286827|286833|286834|286838|286839|286840|286844|286848|286853|286860|286861|286871|287571|287574|287576|287578|287584|287585|287594|287595|287598|287606|287616|287618|289961|289962|289965|289966|289970|289978|289979|289980|289983|289985|289990|289992|290381|290391|290392|290399|290401|290402|826845|885225|885226|885227|885228|885229|885230|885231|885232|885233", "text": "Doyne honeycomb retinal dystrophy" }, { - "baseId": "23112|23113|23114|23116|23117|23118|23120|23121|34027|34028|34029|34032|34033|34034|51341|51342|169332|169333|169334|169335|169336|169337|169338|169339|169340|169341|169342|169343|169344|169345|169346|169347|169348|169349|169351|169352|169353|169354|169355|169356|169357|169358|169360|169361|169362|169363|169364|169365|169366|169367|169368|169369|169370|169372|169373|169374|169375|169376|169377|169378|169379|169380|169381|169383|169384|169385|169386|169387|169388|169389|169390|169391|169392|169393|169394|169395|169396|169397|169398|169399|198639|205783|208372|208373|208374|208375|208377|208378|208379|208380|208381|208382|208383|208384|208385|208386|208387|208388|208389|374902|422153|429954|429955|429958|429959|486766|486767|536018|550371|552200|800675|919715|919716|920368|971073|971074", + "upstreamId": "23112|23113|23114|23116|23117|23118|23120|23121|34027|34028|34029|34032|34033|34034|51341|51342|169332|169333|169334|169335|169336|169337|169338|169339|169340|169341|169342|169343|169344|169345|169346|169347|169348|169349|169351|169352|169353|169354|169355|169356|169357|169358|169360|169361|169362|169363|169364|169365|169366|169367|169368|169369|169370|169372|169373|169374|169375|169376|169377|169378|169379|169380|169381|169383|169384|169385|169386|169387|169388|169389|169390|169391|169392|169393|169394|169395|169396|169397|169398|169399|198639|205783|208372|208373|208374|208375|208377|208378|208379|208380|208381|208382|208383|208384|208385|208386|208387|208388|208389|374902|422153|429954|429955|429958|429959|486766|486767|536018|550371|552200|800675|919715|919716|920368|971073|971074", "text": "Lissencephaly due to LIS1 mutation" }, { - "baseId": "23115|23119|23120", + "upstreamId": "23115|23119|23120", "text": "Subcortical band heterotopia" }, { - "baseId": "23122|23123|23124|23125|23126|23127|23131|23132|39153|177947|177947|181382|193745|195045|195045|223009|251311|251311|267620|267620|292026|292033|293465|296770|296774|296776|296778|296779|296782|296783|296786|362187|362188|362189|362190|362191|362192|362193|362194|362211|453264|453604|453633|550314|631860|631861|631862|651151|683185|819438|828670|828671|828672|889930|889931|889932|889933|889934|889935|889936|889937|889938|889939|889940|889941|889942|889943|889944|889945|889946|889947|889948|889949|889950|889951|889952|889953|889954|889955|889956|889957|889958|889959|889960|889961|889962|889963|889964|889965|889966|889967|889968|889969|889970|891736|891737|923382|932116", + "upstreamId": "23122|23123|23124|23125|23126|23127|23131|23132|39153|177947|177947|181382|193745|195045|195045|223009|251311|251311|267620|267620|292026|292033|293465|296770|296774|296776|296778|296779|296782|296783|296786|362187|362188|362189|362190|362191|362192|362193|362194|362211|453264|453604|453633|550314|631860|631861|631862|651151|683185|819438|828670|828671|828672|889930|889931|889932|889933|889934|889935|889936|889937|889938|889939|889940|889941|889942|889943|889944|889945|889946|889947|889948|889949|889950|889951|889952|889953|889954|889955|889956|889957|889958|889959|889960|889961|889962|889963|889964|889965|889966|889967|889968|889969|889970|891736|891737|923382|932116", "text": "Axenfeld-Rieger syndrome type 1" }, { - "baseId": "23128|23129|177947|193745|195045|195045|251311|267620|292026|292032|292033|293465|296771|296774|296776|296778|296779|296783|453264|453604|453633|550314|631860|631861|631862|651151|819438|828670|828671|828672|889930|889931|889932|889933|889934|889935|889936|889937|889938|889939|889940|889941|889942|889943|889944|889945|889946|889947|889948|889949|889950|889951|889952|889953|889954|889955|889956|889957|889958|889959|889960|889961|889962|889963|889964|889965|889966|889967|889968|889969|889970|891736|891737|923382|932116|976009", + "upstreamId": "23128|23129|177947|193745|195045|195045|251311|267620|292026|292032|292033|293465|296771|296774|296776|296778|296779|296783|453264|453604|453633|550314|631860|631861|631862|651151|819438|828670|828671|828672|889930|889931|889932|889933|889934|889935|889936|889937|889938|889939|889940|889941|889942|889943|889944|889945|889946|889947|889948|889949|889950|889951|889952|889953|889954|889955|889956|889957|889958|889959|889960|889961|889962|889963|889964|889965|889966|889967|889968|889969|889970|891736|891737|923382|932116|976009", "text": "Anterior segment dysgenesis 4" }, { - "baseId": "23130", + "upstreamId": "23130", "text": "ANTERIOR SEGMENT DYSGENESIS 4, PETERS ANOMALY SUBTYPE" }, { - "baseId": "23133|177947|181382|193745|195045|251311|267620|292026|292032|292033|293465|296770|296771|296774|296776|296778|296779|296782|296783|296786|550314|889930|889931|889932|889933|889934|889935|889936|889937|889938|889939|889940|889941|889942|889943|889944|889945|889946|889947|889948|889949|889950|889951|889952|889953|889954|889955|889956|889957|889958|889959|889960|889961|889962|889963|889964|889965|889966|889967|889968|889969|889970|891736|891737", + "upstreamId": "23133|177947|181382|193745|195045|251311|267620|292026|292032|292033|293465|296770|296771|296774|296776|296778|296779|296782|296783|296786|550314|889930|889931|889932|889933|889934|889935|889936|889937|889938|889939|889940|889941|889942|889943|889944|889945|889946|889947|889948|889949|889950|889951|889952|889953|889954|889955|889956|889957|889958|889959|889960|889961|889962|889963|889964|889965|889966|889967|889968|889969|889970|891736|891737", "text": "Ring dermoid of cornea" }, { - "baseId": "23134|23135|23136|23137|23139|23140|23141|23142|23143|23144|23145|23146|45360|171274|186696|186697|186698|190499|193593|193594|193595|270520|271138|271752|272474|297136|297140|299071|299077|299078|299079|299084|303311|303312|303456|303457|303459|303460|303477|357412|357413|357414|357415|357416|357417|411512|543400|543402|543405|543680|543682|543684|543687|543692|543743|543744|543851|543852|543858|620782|735033|735034|735035|749439|759395|765044|765047|880753|894006|894007|894008|894009|894010|894011|894012|978160|978161|978162|978163", + "upstreamId": "23134|23135|23136|23137|23139|23140|23141|23142|23143|23144|23145|23146|45360|171274|186696|186697|186698|190499|193593|193594|193595|270520|271138|271752|272474|297136|297140|299071|299077|299078|299079|299084|303311|303312|303456|303457|303459|303460|303477|357412|357413|357414|357415|357416|357417|411512|543400|543402|543405|543680|543682|543684|543687|543692|543743|543744|543851|543852|543858|620782|735033|735034|735035|749439|759395|765044|765047|880753|894006|894007|894008|894009|894010|894011|894012|978160|978161|978162|978163", "text": "Pituitary hormone deficiency, combined 2" }, { - "baseId": "23137|45355|45360|45362|45363|190536|264501|264513|307574|317872|655931|700889|723452|737004|751543|751546|767274|767277|775535|783348|783349|783350|901515", + "upstreamId": "23137|45355|45360|45362|45363|190536|264501|264513|307574|317872|655931|700889|723452|737004|751543|751546|767274|767277|775535|783348|783349|783350|901515", "text": "Pituitary hormone deficiency, combined" }, { - "baseId": "23147|23147|23148|23149|198651|198653|247436|251872|251873|251874|251875|251876|251877|251878|297248|297251|297252|297253|297254|297255|297258|297268|297271|297272|297273|297284|297289|299232|299241|299249|299252|299253|299254|299262|299267|299269|299303|303455|303458|303461|303472|303473|303667|303668|303669|303673|303676|303679|440880|440881|455009|455013|455485|455488|521095|521355|560408|563088|633839|633842|633843|691838|830771|830772|894059|894060|894061|894062|894063|894064|894065|894066|894067|894068|894069|894070|894071|894072|894073|894074|894075|894076|894077|894078|894079|894080|894081|896087|896088", + "upstreamId": "23147|23147|23148|23149|198651|198653|247436|251872|251873|251874|251875|251876|251877|251878|297248|297251|297252|297253|297254|297255|297258|297268|297271|297272|297273|297284|297289|299232|299241|299249|299252|299253|299254|299262|299267|299269|299303|303455|303458|303461|303472|303473|303667|303668|303669|303673|303676|303679|440880|440881|455009|455013|455485|455488|521095|521355|560408|563088|633839|633842|633843|691838|830771|830772|894059|894060|894061|894062|894063|894064|894065|894066|894067|894068|894069|894070|894071|894072|894073|894074|894075|894076|894077|894078|894079|894080|894081|896087|896088", "text": "Paget disease of bone 3" }, { - "baseId": "23147|23147|198652|198654|247436|964252|964254", + "upstreamId": "23147|23147|198652|198654|247436|964252|964254", "text": "Frontotemporal dementia and/or amyotrophic lateral sclerosis 3" }, { - "baseId": "23147", + "upstreamId": "23147", "text": "Spastic paraplegia-Paget disease of bone syndrome" }, { - "baseId": "23147|23149|40108|181180|181181|198653|198654|247436|251872|251874|251876|251877|251878|260472|297254|297255|299249|303455|308075|308076|308078|308079|308104|312434|312437|312449|312464|312466|312470|312471|312472|318222|318223|318224|318227|318229|318239|318250|318251|318258|318312|318318|318327|318331|318747|318759|318761|318764|318767|318774|318781|318790|368605|368616|406734|440879|440880|440881|454867|454870|454871|454874|455001|455004|455006|455009|455013|455014|455474|455485|455486|455488|455490|455492|455723|495500|521095|521353|521355|521466|521476|521644|521649|560406|560408|560410|563086|563088|576805|633830|633831|633832|633833|633834|633835|633836|633837|633838|633839|633840|633841|633842|633843|633844|633845|633846|633847|651328|691836|691837|691838|691839|691840|699040|699043|699044|709848|721414|721415|744221|749450|765071|777447|777539|777547|782265|819585|830757|830758|830759|830760|830761|830762|830763|830764|830765|830766|830767|830768|830769|830770|830771|830772|851907|894062|901850|901851|901852|901853|901854|901855|901856|901857|901858|901859|901860|901861|901862|901863|901864|901865|901866|901867|901868|901869|901870|901871|901872|901873|901874|901875|901876|901877|901878|901879|901880|903384|924020|924021|924022|924023|924024|924025|924026|944580|944581|944582|944583|944584|954148|954149|954150|959763", + "upstreamId": "23147|23149|40108|181180|181181|198653|198654|247436|251872|251874|251876|251877|251878|260472|297254|297255|299249|303455|308075|308076|308078|308079|308104|312434|312437|312449|312464|312466|312470|312471|312472|318222|318223|318224|318227|318229|318239|318250|318251|318258|318312|318318|318327|318331|318747|318759|318761|318764|318767|318774|318781|318790|368605|368616|406734|440879|440880|440881|454867|454870|454871|454874|455001|455004|455006|455009|455013|455014|455474|455485|455486|455488|455490|455492|455723|495500|521095|521353|521355|521466|521476|521644|521649|560406|560408|560410|563086|563088|576805|633830|633831|633832|633833|633834|633835|633836|633837|633838|633839|633840|633841|633842|633843|633844|633845|633846|633847|651328|691836|691837|691838|691839|691840|699040|699043|699044|709848|721414|721415|744221|749450|765071|777447|777539|777547|782265|819585|830757|830758|830759|830760|830761|830762|830763|830764|830765|830766|830767|830768|830769|830770|830771|830772|851907|894062|901850|901851|901852|901853|901854|901855|901856|901857|901858|901859|901860|901861|901862|901863|901864|901865|901866|901867|901868|901869|901870|901871|901872|901873|901874|901875|901876|901877|901878|901879|901880|903384|924020|924021|924022|924023|924024|924025|924026|944580|944581|944582|944583|944584|954148|954149|954150|959763", "text": "Amyotrophic lateral sclerosis and/or frontotemporal dementia 1" }, { - "baseId": "23150|271706|815862", + "upstreamId": "23150|271706|815862", "text": "Frontonasal dysplasia 3" }, { - "baseId": "23151", + "upstreamId": "23151", "text": "Asthma-related traits, susceptibility to, 7" }, { - "baseId": "23153", + "upstreamId": "23153", "text": "Amyotrophic lateral sclerosis 13" }, { - "baseId": "23154|23155|318792|318794|318802|318810|327161|327170|327172|327177|327180|327181|327182|333285|333287|333291|333297|333304|333306|333307|333308|333313|335002|335013|335016|335017|335024|335038|335049|335050|335054|335055|441569|482339|550774|713807|861577|870628|870629|870630|870631|870632|870633|870634|870635|870636|870637|870638|870639|870640|870641|919477|919478|964913", + "upstreamId": "23154|23155|318792|318794|318802|318810|327161|327170|327172|327177|327180|327181|327182|333285|333287|333291|333297|333304|333306|333307|333308|333313|335002|335013|335016|335017|335024|335038|335049|335050|335054|335055|441569|482339|550774|713807|861577|870628|870629|870630|870631|870632|870633|870634|870635|870636|870637|870638|870639|870640|870641|919477|919478|964913", "text": "Spinocerebellar ataxia type 27" }, { - "baseId": "23158|23159|23160|23161|23162|23163|98685|98687|98689|98690|98691|98692|98693|98694|98695|98696|98698|177104|190241|190969|191328|195870|195870|195870|214063|214065|226048|226049|237362|252357|252358|252359|252360|252362|269776|272293|274317|300179|300182|300186|300189|300197|300199|300199|300203|302969|302972|307370|307373|307376|307590|307592|307593|307594|307602|307602|490533|491040|493841|494209|535310|543630|543632|543634|543634|543636|543641|543641|543648|543652|543654|543654|543656|543658|543661|543664|543665|543951|543955|543957|543958|543959|543960|543962|543964|543980|543982|543984|544076|544081|544083|544089|544091|544092|544093|544098|544100|544108|544114|544118|544120|544123|586251|587246|610615|620229|620230|765689|782548|790631|896305|896306|896307|896308|896309|896310|896311|896312|896313|896314|896315|896316|896317|896318|896319|900229|900230|906150|906150|919031|919032|961774|962189", + "upstreamId": "23158|23159|23160|23161|23162|23163|98685|98687|98689|98690|98691|98692|98693|98694|98695|98696|98698|177104|190241|190969|191328|195870|195870|195870|214063|214065|226048|226049|237362|252357|252358|252359|252360|252362|269776|272293|274317|300179|300182|300186|300189|300197|300199|300199|300203|302969|302972|307370|307373|307376|307590|307592|307593|307594|307602|307602|490533|491040|493841|494209|535310|543630|543632|543634|543634|543636|543641|543641|543648|543652|543654|543654|543656|543658|543661|543664|543665|543951|543955|543957|543958|543959|543960|543962|543964|543980|543982|543984|544076|544081|544083|544089|544091|544092|544093|544098|544100|544108|544114|544118|544120|544123|586251|587246|610615|620229|620230|765689|782548|790631|896305|896306|896307|896308|896309|896310|896311|896312|896313|896314|896315|896316|896317|896318|896319|900229|900230|906150|906150|919031|919032|961774|962189", "text": "Peroxisome biogenesis disorder 4a (zellweger)" }, { - "baseId": "23164|23165|39151|191328|191328|195870|195870|214063|214063|214065|226048|226049|252358|272293|300199|307602|485898|487200|490137|490533|535310|543630|543632|543634|543636|543641|543648|543652|543654|543656|543658|543661|543664|543665|543951|543955|543957|543958|543959|543960|543962|543964|543980|543982|543984|544076|544081|544083|544089|544091|544092|544093|544098|544100|544108|544114|544118|544120|544123|906150|961774", + "upstreamId": "23164|23165|39151|191328|191328|195870|195870|214063|214063|214065|226048|226049|252358|272293|300199|307602|485898|487200|490137|490533|535310|543630|543632|543634|543636|543641|543648|543652|543654|543656|543658|543661|543664|543665|543951|543955|543957|543958|543959|543960|543962|543964|543980|543982|543984|544076|544081|544083|544089|544091|544092|544093|544098|544100|544108|544114|544118|544120|544123|906150|961774", "text": "Peroxisome biogenesis disorder 4B" }, { - "baseId": "23166|23167|23168|324541|324550|324553|324558|324559|324568|334066|334073|334079|334085|334086|334091|334093|334095|334110|334111|334114|334119|334125|334126|334128|334129|334136|334137|334138|340798|340801|340804|340806|340809|340811|340812|340816|340817|340818|340819|340820|340822|340828|340829|342197|342202|342209|342212|342213|342214|342215|342216|342219|703533|714777|726471|754964|791529|874807|874808|874809|874810|874811|874812|874813|874814|874815|874816|874817|874818|874819|874820|874821|874822|874823|874824|964443", + "upstreamId": "23166|23167|23168|324541|324550|324553|324558|324559|324568|334066|334073|334079|334085|334086|334091|334093|334095|334110|334111|334114|334119|334125|334126|334128|334129|334136|334137|334138|340798|340801|340804|340806|340809|340811|340812|340816|340817|340818|340819|340820|340822|340828|340829|342197|342202|342209|342212|342213|342214|342215|342216|342219|703533|714777|726471|754964|791529|874807|874808|874809|874810|874811|874812|874813|874814|874815|874816|874817|874818|874819|874820|874821|874822|874823|874824|964443", "text": "Acid-labile subunit deficiency" }, { - "baseId": "23170", + "upstreamId": "23170", "text": "Diabetes mellitus, noninsulin-dependent, modifier of" }, { - "baseId": "23170", + "upstreamId": "23170", "text": "Obesity, modifier of" }, { - "baseId": "23170", + "upstreamId": "23170", "text": "Body mass index, modifier of" }, { - "baseId": "23170", + "upstreamId": "23170", "text": "Intimal medial thickness of internal carotid artery, modifier of" }, { - "baseId": "23175|23176|23178|23180|23181|23182|23183|135465|288404|288413|288431|288432|289177|292190|292296|292303|292305|292306|292310|354171|428113|428114|428116|428117|428118|428120|428124|428125|887759|887767|887768|887769|887770|964214|964215|970750", + "upstreamId": "23175|23176|23178|23180|23181|23182|23183|135465|288404|288413|288431|288432|289177|292190|292296|292303|292305|292306|292310|354171|428113|428114|428116|428117|428118|428120|428124|428125|887759|887767|887768|887769|887770|964214|964215|970750", "text": "Familial partial lipodystrophy 3" }, { - "baseId": "23175|23178|23179|135465|288404|288413|288431|288432|289177|292190|292296|292303|292305|292306|292310|428113|887759|887767|887768|887769|887770", + "upstreamId": "23175|23178|23179|135465|288404|288413|288431|288432|289177|292190|292296|292303|292305|292306|292310|428113|887759|887767|887768|887769|887770", "text": "Diabetes Mellitus, Noninsulin-Dependent, with Acanthosis Nigricans and Hypertension" }, { - "baseId": "23175|77785|77849|172489", + "upstreamId": "23175|77785|77849|172489", "text": "Lipodystrophy (disease)" }, { - "baseId": "23177", + "upstreamId": "23177", "text": "PEROXISOME PROLIFERATOR-ACTIVATED RECEPTOR-GAMMA POLYMORPHISM" }, { - "baseId": "23178|28917|48019", + "upstreamId": "23178|28917|48019", "text": "Glioma susceptibility 1" }, { - "baseId": "23179|23746", + "upstreamId": "23179|23746", "text": "Diabetes mellitus, type II, digenic" }, { - "baseId": "23184", + "upstreamId": "23184", "text": "Spermatogenic failure, susceptibility to" }, { - "baseId": "23185|23186|23187|23188|23189|23190|175740|228209|228210|228211|228212", + "upstreamId": "23185|23186|23187|23188|23189|23190|175740|228209|228210|228211|228212", "text": "Deafness, autosomal dominant 48" }, { - "baseId": "23199|75129|134162|192530|254938|320449|320455|320460|329222|329224|329226|329233|329236|329237|335822|335824|335835|335844|335849|337732|337734|337752|337753|337759|374238|463731|566411|567771|572600|642350|642351|642352|652860|754026|760301|769791|788881|820619|841362|871819|871820|871821|871822|871823|871824|871825|871826|871827|871828|871829|871830|871831|871832|871833|871834|871835|927026|948534|948535|957201|960088", + "upstreamId": "23199|75129|134162|192530|254938|320449|320455|320460|329222|329224|329226|329233|329236|329237|335822|335824|335835|335844|335849|337732|337734|337752|337753|337759|374238|463731|566411|567771|572600|642350|642351|642352|652860|754026|760301|769791|788881|820619|841362|871819|871820|871821|871822|871823|871824|871825|871826|871827|871828|871829|871830|871831|871832|871833|871834|871835|927026|948534|948535|957201|960088", "text": "Nemaline myopathy 7" }, { - "baseId": "23200|23201|40611|40612|44204|44205|44290|44291|44292|44293|44294|44295|44296|44297|44298|44299|44300|54547|54551|54552|54553|54555|54556|54557|54558|54559|54560|54562|54564|54565|54566|54567|54568|54569|54570|54572|54574|54576|54577|54578|54579|54582|54583|54586|54587|54589|54590|54591|175401|175402|175403|175404|175405|175406|175545|175547|175551|175552|175705|175710|175845|175846|175850|188840|189894|189898|189903|189905|198377|198378|198380|224439|230292|230293|230294|230295|230297|230300|230301|241531|241532|241533|241534|241535|241536|241537|266600|316674|316679|316681|324150|324151|324154|324155|324156|330171|330176|330194|331585|331595|360036|372903|372917|373130|373141|374951|398885|398886|398898|398902|399039|399048|399054|399057|399058|399060|399352|399356|399359|399360|399595|399600|399603|408617|415329|444960|444961|462067|462071|462073|462320|462324|462325|462332|462333|462335|462337|462803|462807|462914|462919|482272|503771|503790|503799|504060|504334|504349|504791|504818|510360|510363|511109|527033|527035|527037|527038|527040|527042|527047|527048|527051|527055|527257|527258|527264|527269|527271|527279|527281|527286|527558|536836|538429|565384|565386|566748|567949|567951|567954|571740|571745|571751|621375|641019|641020|641021|641022|641023|641024|641025|641026|641027|641028|641029|641030|652233|652235|652316|652472|652479|652696|684317|687955|687958|693175|693176|695557|713479|738595|744844|769047|778082|784360|784363|787771|788058|796733|820485|820486|820487|839777|839778|839779|839780|839781|839782|839783|839784|839785|839786|839787|839788|839789|839790|839791|839792|839793|839794|839795|839796|839797|839798|839799|839800|839801|839802|839803|839804|839805|839806|839807|839808|839809|851939|851941|852685|869669|869670|869671|869672|869673|869674|869675|872228|926588|926589|926590|926591|926592|926593|936074|936075|936076|936077|940261|940262|947959|947960|947961|947962|947963|947964|947965|947966|947967|947968|947969|947970|947971|947972|956844|956845|956846|956847|956848|960037|960038", + "upstreamId": "23200|23201|40611|40612|44204|44205|44290|44291|44292|44293|44294|44295|44296|44297|44298|44299|44300|54547|54551|54552|54553|54555|54556|54557|54558|54559|54560|54562|54564|54565|54566|54567|54568|54569|54570|54572|54574|54576|54577|54578|54579|54582|54583|54586|54587|54589|54590|54591|175401|175402|175403|175404|175405|175406|175545|175547|175551|175552|175705|175710|175845|175846|175850|188840|189894|189898|189903|189905|198377|198378|198380|224439|230292|230293|230294|230295|230297|230300|230301|241531|241532|241533|241534|241535|241536|241537|266600|316674|316679|316681|324150|324151|324154|324155|324156|330171|330176|330194|331585|331595|360036|372903|372917|373130|373141|374951|398885|398886|398898|398902|399039|399048|399054|399057|399058|399060|399352|399356|399359|399360|399595|399600|399603|408617|415329|444960|444961|462067|462071|462073|462320|462324|462325|462332|462333|462335|462337|462803|462807|462914|462919|482272|503771|503790|503799|504060|504334|504349|504791|504818|510360|510363|511109|527033|527035|527037|527038|527040|527042|527047|527048|527051|527055|527257|527258|527264|527269|527271|527279|527281|527286|527558|536836|538429|565384|565386|566748|567949|567951|567954|571740|571745|571751|621375|641019|641020|641021|641022|641023|641024|641025|641026|641027|641028|641029|641030|652233|652235|652316|652472|652479|652696|684317|687955|687958|693175|693176|695557|713479|738595|744844|769047|778082|784360|784363|787771|788058|796733|820485|820486|820487|839777|839778|839779|839780|839781|839782|839783|839784|839785|839786|839787|839788|839789|839790|839791|839792|839793|839794|839795|839796|839797|839798|839799|839800|839801|839802|839803|839804|839805|839806|839807|839808|839809|851939|851941|852685|869669|869670|869671|869672|869673|869674|869675|872228|926588|926589|926590|926591|926592|926593|936074|936075|936076|936077|940261|940262|947959|947960|947961|947962|947963|947964|947965|947966|947967|947968|947969|947970|947971|947972|956844|956845|956846|956847|956848|960037|960038", "text": "Dilated cardiomyopathy 1O" }, { - "baseId": "23202|23203|23204|23205|23206|23207|49933|98909|98910|98911|98913|98915|177098|177902|297614|297615|297617|297622|297639|297640|297642|297643|297644|299814|299815|299816|299822|299829|299831|299833|299844|303939|303940|303946|303955|303962|303966|303977|303979|304348|304352|304353|304361|304365|304372|304373|353704|560347|619845|651322|651352|709926|709927|721466|735119|749516|775026|779318|788779|790562|816455|830866|830867|851988|894370|894371|894372|894373|894374|894375|894376|894377|894378|894379|894380|894381|894382|894383|894384|894385|894386|896111|932919|932920|944631|944632|961771|961846", + "upstreamId": "23202|23203|23204|23205|23206|23207|49933|98909|98910|98911|98913|98915|177098|177902|297614|297615|297617|297622|297639|297640|297642|297643|297644|299814|299815|299816|299822|299829|299831|299833|299844|303939|303940|303946|303955|303962|303966|303977|303979|304348|304352|304353|304361|304365|304372|304373|353704|560347|619845|651322|651352|709926|709927|721466|735119|749516|775026|779318|788779|790562|816455|830866|830867|851988|894370|894371|894372|894373|894374|894375|894376|894377|894378|894379|894380|894381|894382|894383|894384|894385|894386|896111|932919|932920|944631|944632|961771|961846", "text": "Succinyl-CoA acetoacetate transferase deficiency" }, { - "baseId": "23208|23209|215519|433648|512866", + "upstreamId": "23208|23209|215519|433648|512866", "text": "Charcot-Marie-Tooth disease, recessive intermediate B" }, { - "baseId": "23210|23211|23211|23212|23213|23215|23216|45432|45433|52526|52526|52528|57279|57280|57281|57283|57284|57285|57285|57286|57287|142802|171101|174272|174274|174277|174278|174279|174279|174280|174411|174412|174413|174414|174415|174417|174417|189785|189787|193416|193417|193417|198172|198174|198175|198177|198178|229299|269009|269538|269702|270421|271690|272645|273483|302804|394836|394838|394838|395095|395434|395435|443734|454782|454829|454841|454842|455331|455635|455642|455645|520950|520955|521391|521394|521445|521448|521449|543365|543368|543370|543379|543397|543626|543653|543668|543670|543670|543672|543673|543731|543736|543737|543741|543815|543826|543827|543843|543845|559835|560231|560233|560235|560237|560346|560348|563005|564977|585031|588537|633666|633667|633668|633669|633670|633671|633672|651316|672402|683727|686712|819568|819640|830561|830562|830563|830564|923960|923961|923962|940811|944505|954099", + "upstreamId": "23210|23211|23211|23212|23213|23215|23216|45432|45433|52526|52526|52528|57279|57280|57281|57283|57284|57285|57285|57286|57287|142802|171101|174272|174274|174277|174278|174279|174279|174280|174411|174412|174413|174414|174415|174417|174417|189785|189787|193416|193417|193417|198172|198174|198175|198177|198178|229299|269009|269538|269702|270421|271690|272645|273483|302804|394836|394838|394838|395095|395434|395435|443734|454782|454829|454841|454842|455331|455635|455642|455645|520950|520955|521391|521394|521445|521448|521449|543365|543368|543370|543379|543397|543626|543653|543668|543670|543670|543672|543673|543731|543736|543737|543741|543815|543826|543827|543843|543845|559835|560231|560233|560235|560237|560346|560348|563005|564977|585031|588537|633666|633667|633668|633669|633670|633671|633672|651316|672402|683727|686712|819568|819640|830561|830562|830563|830564|923960|923961|923962|940811|944505|954099", "text": "Autosomal recessive limb-girdle muscular dystrophy type 2F" }, { - "baseId": "23211|23214|23215|52526|57283|57285|57287|174272|174274|174277|174278|174279|174280|174411|174412|174413|174414|174415|174417|189785|189787|193417|229299|271690|394838|521445|543365|543368|543370|543379|543397|543626|543653|543668|543670|543672|543673|543731|543736|543737|543741|543815|543826|543827|543843|543845", + "upstreamId": "23211|23214|23215|52526|57283|57285|57287|174272|174274|174277|174278|174279|174280|174411|174412|174413|174414|174415|174417|189785|189787|193417|229299|271690|394838|521445|543365|543368|543370|543379|543397|543626|543653|543668|543670|543672|543673|543731|543736|543737|543741|543815|543826|543827|543843|543845", "text": "Dilated cardiomyopathy 1L" }, { - "baseId": "23215", + "upstreamId": "23215", "text": "MUSCULAR DYSTROPHY, LIMB-GIRDLE, AUTOSOMAL RECESSIVE 6, DIGENIC" }, { - "baseId": "23217|23218|23219|28799", + "upstreamId": "23217|23218|23219|28799", "text": "Pancreatitis, chronic, susceptibility to" }, { - "baseId": "23222|39133|101330|101331|136138|304661|444257|486702|538399|550854|579538|651813|834521|851193|934228|955376|962048", + "upstreamId": "23222|39133|101330|101331|136138|304661|444257|486702|538399|550854|579538|651813|834521|851193|934228|955376|962048", "text": "Mental retardation, autosomal recessive 7" }, { - "baseId": "23223|980452", + "upstreamId": "23223|980452", "text": "West nile virus, susceptibility to" }, { - "baseId": "23223", + "upstreamId": "23223", "text": "Resistance to hepatitis C virus" }, { - "baseId": "23223|24290", + "upstreamId": "23223|24290", "text": "Multiple sclerosis modifier of disease progression" }, { - "baseId": "23224", + "upstreamId": "23224", "text": "CCR5 POLYMORPHISM, ORIENTAL 1" }, { - "baseId": "23225", + "upstreamId": "23225", "text": "CCR5 POLYMORPHISM, ORIENTAL 2" }, { - "baseId": "23226", + "upstreamId": "23226", "text": "CCR5 POLYMORPHISM, AFRICAN-AMERICAN" }, { - "baseId": "23228", + "upstreamId": "23228", "text": "Acquired immunodeficiency syndrome, delayed progression to" }, { - "baseId": "23228", + "upstreamId": "23228", "text": "CCR5 PROMOTER POLYMORPHISM" }, { - "baseId": "23229", + "upstreamId": "23229", "text": "Human immunodeficiency virus type 1, increased perinatal transmission of" }, { - "baseId": "23232|23233|101257|101259|132607|190500|194437|214379|215262|237303|265737|287287|287288|290651|290915|290920|290922|290934|366794|366797|367943|451462|451464|451699|451703|451823|451906|451910|451914|451922|451926|500353|500355|518634|518636|518638|518640|518722|518820|518821|518823|518831|558301|558680|558682|558684|559186|559187|562070|562075|562078|562087|614252|630566|630567|630568|630569|630570|630571|630572|630573|630574|630575|630576|630577|630578|630579|630580|630581|630582|630583|630584|630585|630586|630587|630588|630589|630590|630591|630592|630593|747785|763441|798513|798514|819276|827053|827054|827055|827056|827057|827058|827059|827060|827061|827062|827063|827064|827065|827066|827067|827068|827069|827070|827071|827072|827073|922932|922933|922934|922935|931598|931599|931600|931601|931602|931603|931604|931605|939915|943135|943136|943137|953236|953237|953238|953239|953240|953241|953242|953243|953244|953245|963129", + "upstreamId": "23232|23233|101257|101259|132607|190500|194437|214379|215262|237303|265737|287287|287288|290651|290915|290920|290922|290934|366794|366797|367943|451462|451464|451699|451703|451823|451906|451910|451914|451922|451926|500353|500355|518634|518636|518638|518640|518722|518820|518821|518823|518831|558301|558680|558682|558684|559186|559187|562070|562075|562078|562087|614252|630566|630567|630568|630569|630570|630571|630572|630573|630574|630575|630576|630577|630578|630579|630580|630581|630582|630583|630584|630585|630586|630587|630588|630589|630590|630591|630592|630593|747785|763441|798513|798514|819276|827053|827054|827055|827056|827057|827058|827059|827060|827061|827062|827063|827064|827065|827066|827067|827068|827069|827070|827071|827072|827073|922932|922933|922934|922935|931598|931599|931600|931601|931602|931603|931604|931605|939915|943135|943136|943137|953236|953237|953238|953239|953240|953241|953242|953243|953244|953245|963129", "text": "Congenital disorder of glycosylation type 2B" }, { - "baseId": "23234|23235|23236|23237|23238|23239|23240|23241|23242|23243|23244|23245|23246|23247|23248|23249|172077|172078|172079|172093|181387|181388|181389|181390|190113|204343|204401|227373|255505|255507|255509|255510|255511|255512|255513|255514|255515|255516|255517|255518|255519|255523|255524|255525|255526|255529|255531|255532|255533|255535|255536|255537|255538|255539|255541|255544|255545|255546|255547|255548|255549|255550|255552|255553|255554|255555|255556|255557|255558|255560|255562|255563|255566|255567|255568|255569|255573|255575|255576|255577|255578|255579|255580|255582|255584|255585|255587|255589|255590|255591|255592|255594|255596|255597|255600|255602|255603|255604|255605|255606|255607|255608|255609|255611|255613|255614|255615|255616|255617|255618|255619|255620|255621|255622|255623|255624|255625|255628|255630|255631|255632|255634|255635|255636|255637|255639|255640|255642|255645|255646|255647|255648|255649|255652|255653|255655|255656|255657|255658|255660|255662|255664|255668|262268|353909|354173|354174|354175|360987|360989|374872|377311|384492|384493|384494|384495|384496|384497|384498|384499|384500|409504|415480|417437|417438|417442|417443|426160|427114|427122|427441|427448|427450|427451|427465|427476|427478|427479|427482|427486|427492|427503|427511|427512|432316|432317|432318|432319|432320|432321|432322|432323|432324|432325|432326|432327|432328|433156|433157|433167|433168|433170|433175|433181|433186|433187|433188|433189|433191|433192|433193|433200|433210|433211|433214|433217|433221|433223|433224|434771|434903|439885|441802|441805|441806|441814|441823|441826|441852|441853|441859|441862|441865|441868|441873|441880|442558|442559|442560|442561|445532|480428|481143|481144|481173|481259|481260|481261|481262|488123|511034|512181|513107|513108|513109|513110|513111|513112|513113|513114|513115|513116|513117|513118|513119|513120|513121|513122|513123|513124|513125|513126|513127|513128|514690|536900|540477|553420|553426|553446|553468|553471|553472|553486|553496|553507|553510|575501|577477|577492|577496|577513|577519|577522|590311|590312|590313|590314|590315|590316|590317|590318|590319|590320|590321|608920|609952|609962|609968|609977|609979|609985|609986|609988|609989|609996|610004|610005|610018|612308|614163|619856|619857|623324|623325|623326|623327|623328|623329|623330|623331|623332|623333|623334|623335|623336|623337|623338|624545|624552|624562|624568|624570|624571|624604|624810|625817|625818|625819|625820|625821|672098|788895|788896|789090|791543|791544|791545|791546|791547|791548|791549|791550|791551|791552|791553|791554|791555|791556|791557|791558|793578|793581|793582|793583|793591|793596|793604|793606|793611|793617|794058|798697|799861|799862|799863|799864|799865|799866|799867|799868|799869|799870|799871|799872|799873|799874|799875|799876|799877|799878|799879|799880|799881|799882|799883|799884|799885|799886|799887|799888|799889|799890|799891|799892|799893|799894|799895|799896|799897|799898|799899|799900|799901|799902|799903|799904|799905|799906|799907|799908|799909|799910|799911|799912|799913|799914|799915|799916|799917|799918|799919|799920|799921|799922|799923|799924|799925|799926|799927|799928|799929|799930|799931|799932|799933|799934|799935|799936|799937|799938|799939|799940|799941|799942|799943|799944|799945|799946|799947|799948|799949|799950|801569|801570|804850|816483|818314|818315|818316|818317|818318|818319|818320|818321|818322|818323|818324|818433|818434|818435|857657|858759|860227|860228|861468|861469|861470|861471|861472|861473|861474|861475|861476|861477|861478|861479|861480|861481|861482|861483|861484|861485|861486|861487|861488|861489|861490|861491|861492|861493|861494|861495|861496|861497|861498|861499|861500|861501|861502|861503|861504|861505|861506|861507|861508|861509|861510|861511|861512|861513|861514|861515|861516|861517|861518|861519|861520|861521|861522|861523|861524|861525|861526|861528|861529|861530|861531|861532|861533|861534|905871|905872|905873|905874|906185|906266|919619|919620|919621|919622|919623|919624|919625|919626|919627|919628|919629|919630|919631|919632|919633|919634|920356|920357|961010|961011|961012|961013|961014|961015|961016|961019|962170|962171|962703|962743|962744|962745|962746|962747|962748|962749|962750|962751|962752|962753|962754|962755|962756|962757|962758|962759|962760|962761|962762|962763|962764|962765|962766|962767|962768|962769|962770|962771|962772|962773|962774|962775|962776|962777|962778|962779|962780|962781|962782|962783|962784|962785|962786|962787|962788|962835|962836|962837|962838|962856|963367|963368|963369|963370|963371|963372|963373|963374|963394|964445|964446|964447|965229|965230|965651|965652|965921|969610|969611|971041|971042|973113|974498|980356|980357|980358|980359|980360|980361|980362|980363|980364|980365|980366|980367|980368|980369|980370|980371|980954|980955|981954|981955|981956|981957|981958|981959|981960|981961|981962|981963|981964|981965|981966|981967|981968|981969|981970|981971|981972|981973|981974|981975|981976|981977|981978|981979|981980|981981|981982|981983|981984|981985|981986|981987|981988|981989|981990|981991|981992|981993|981994|981995|981996|981997|981998|981999|982000|982001|982002", + "upstreamId": "23234|23235|23236|23237|23238|23239|23240|23241|23242|23243|23244|23245|23246|23247|23248|23249|172077|172078|172079|172093|181387|181388|181389|181390|190113|204343|204401|227373|255505|255507|255509|255510|255511|255512|255513|255514|255515|255516|255517|255518|255519|255523|255524|255525|255526|255529|255531|255532|255533|255535|255536|255537|255538|255539|255541|255544|255545|255546|255547|255548|255549|255550|255552|255553|255554|255555|255556|255557|255558|255560|255562|255563|255566|255567|255568|255569|255573|255575|255576|255577|255578|255579|255580|255582|255584|255585|255587|255589|255590|255591|255592|255594|255596|255597|255600|255602|255603|255604|255605|255606|255607|255608|255609|255611|255613|255614|255615|255616|255617|255618|255619|255620|255621|255622|255623|255624|255625|255628|255630|255631|255632|255634|255635|255636|255637|255639|255640|255642|255645|255646|255647|255648|255649|255652|255653|255655|255656|255657|255658|255660|255662|255664|255668|262268|353909|354173|354174|354175|360987|360989|374872|377311|384492|384493|384494|384495|384496|384497|384498|384499|384500|409504|415480|417437|417438|417442|417443|426160|427114|427122|427441|427448|427450|427451|427465|427476|427478|427479|427482|427486|427492|427503|427511|427512|432316|432317|432318|432319|432320|432321|432322|432323|432324|432325|432326|432327|432328|433156|433157|433167|433168|433170|433175|433181|433186|433187|433188|433189|433191|433192|433193|433200|433210|433211|433214|433217|433221|433223|433224|434771|434903|439885|441802|441805|441806|441814|441823|441826|441852|441853|441859|441862|441865|441868|441873|441880|442558|442559|442560|442561|445532|480428|481143|481144|481173|481259|481260|481261|481262|488123|511034|512181|513107|513108|513109|513110|513111|513112|513113|513114|513115|513116|513117|513118|513119|513120|513121|513122|513123|513124|513125|513126|513127|513128|514690|536900|540477|553420|553426|553446|553468|553471|553472|553486|553496|553507|553510|575501|577477|577492|577496|577513|577519|577522|590311|590312|590313|590314|590315|590316|590317|590318|590319|590320|590321|608920|609952|609962|609968|609977|609979|609985|609986|609988|609989|609996|610004|610005|610018|612308|614163|619856|619857|623324|623325|623326|623327|623328|623329|623330|623331|623332|623333|623334|623335|623336|623337|623338|624545|624552|624562|624568|624570|624571|624604|624810|625817|625818|625819|625820|625821|672098|788895|788896|789090|791543|791544|791545|791546|791547|791548|791549|791550|791551|791552|791553|791554|791555|791556|791557|791558|793578|793581|793582|793583|793591|793596|793604|793606|793611|793617|794058|798697|799861|799862|799863|799864|799865|799866|799867|799868|799869|799870|799871|799872|799873|799874|799875|799876|799877|799878|799879|799880|799881|799882|799883|799884|799885|799886|799887|799888|799889|799890|799891|799892|799893|799894|799895|799896|799897|799898|799899|799900|799901|799902|799903|799904|799905|799906|799907|799908|799909|799910|799911|799912|799913|799914|799915|799916|799917|799918|799919|799920|799921|799922|799923|799924|799925|799926|799927|799928|799929|799930|799931|799932|799933|799934|799935|799936|799937|799938|799939|799940|799941|799942|799943|799944|799945|799946|799947|799948|799949|799950|801569|801570|804850|816483|818314|818315|818316|818317|818318|818319|818320|818321|818322|818323|818324|818433|818434|818435|857657|858759|860227|860228|861468|861469|861470|861471|861472|861473|861474|861475|861476|861477|861478|861479|861480|861481|861482|861483|861484|861485|861486|861487|861488|861489|861490|861491|861492|861493|861494|861495|861496|861497|861498|861499|861500|861501|861502|861503|861504|861505|861506|861507|861508|861509|861510|861511|861512|861513|861514|861515|861516|861517|861518|861519|861520|861521|861522|861523|861524|861525|861526|861528|861529|861530|861531|861532|861533|861534|905871|905872|905873|905874|906185|906266|919619|919620|919621|919622|919623|919624|919625|919626|919627|919628|919629|919630|919631|919632|919633|919634|920356|920357|961010|961011|961012|961013|961014|961015|961016|961019|962170|962171|962703|962743|962744|962745|962746|962747|962748|962749|962750|962751|962752|962753|962754|962755|962756|962757|962758|962759|962760|962761|962762|962763|962764|962765|962766|962767|962768|962769|962770|962771|962772|962773|962774|962775|962776|962777|962778|962779|962780|962781|962782|962783|962784|962785|962786|962787|962788|962835|962836|962837|962838|962856|963367|963368|963369|963370|963371|963372|963373|963374|963394|964445|964446|964447|965229|965230|965651|965652|965921|969610|969611|971041|971042|973113|974498|980356|980357|980358|980359|980360|980361|980362|980363|980364|980365|980366|980367|980368|980369|980370|980371|980954|980955|981954|981955|981956|981957|981958|981959|981960|981961|981962|981963|981964|981965|981966|981967|981968|981969|981970|981971|981972|981973|981974|981975|981976|981977|981978|981979|981980|981981|981982|981983|981984|981985|981986|981987|981988|981989|981990|981991|981992|981993|981994|981995|981996|981997|981998|981999|982000|982001|982002", "text": "Polycystic kidney disease, adult type" }, { - "baseId": "23245|247541|553486|611980|612161|612179|799086|965650", + "upstreamId": "23245|247541|553486|611980|612161|612179|799086|965650", "text": "Polycystic kidney disease 3" }, { - "baseId": "23260|23261|23262|23263|23264|50093|50095|50099|50100|50102|50103|50105|50106|98605|136447|136448|136467|136471|136474|136479|136501|136501|138834|138839|138840|138844|138849|139586|139589|139590|139591|139594|139595|139598|139602|139603|139606|139607|139608|139610|139616|139619|139620|142537|186099|186108|186110|186111|186113|186113|212692|212694|212695|212698|212709|212716|212719|212720|212726|212741|221873|221881|221884|221889|221898|221899|221902|221909|221913|221916|221918|221919|240651|240654|240674|240679|240702|253602|253606|253609|253611|253612|253613|308953|308958|308959|308963|308970|308971|308972|308973|308996|308997|309001|309003|313687|313688|313689|313728|313729|313730|313742|313752|313756|313757|313758|313762|313764|313765|313766|319438|319452|319454|319455|319456|319483|319485|319486|319488|319506|319510|319512|319564|319578|320059|320060|320065|320070|320096|320097|320120|320121|320126|320137|320140|320156|320159|371070|371081|397026|397035|397394|397411|397440|397448|397495|397495|397503|397507|424186|474973|474983|475013|475154|475187|524729|525117|525191|525213|525296|525316|525367|551302|563347|564225|564311|612004|684122|809565|809603|902559|902560|902561|902562|902563|902564|902565|902566|902567|902568|902569|902570|902571|902572|902573|902574|902575|902576|902577|902578|902579|902580|902581|902582|902583|902584|902585|902586|902587|902588|902589|902590|902591|902592|902593|902594|903446|917885", + "upstreamId": "23260|23261|23262|23263|23264|50093|50095|50099|50100|50102|50103|50105|50106|98605|136447|136448|136467|136471|136474|136479|136501|136501|138834|138839|138840|138844|138849|139586|139589|139590|139591|139594|139595|139598|139602|139603|139606|139607|139608|139610|139616|139619|139620|142537|186099|186108|186110|186111|186113|186113|212692|212694|212695|212698|212709|212716|212719|212720|212726|212741|221873|221881|221884|221889|221898|221899|221902|221909|221913|221916|221918|221919|240651|240654|240674|240679|240702|253602|253606|253609|253611|253612|253613|308953|308958|308959|308963|308970|308971|308972|308973|308996|308997|309001|309003|313687|313688|313689|313728|313729|313730|313742|313752|313756|313757|313758|313762|313764|313765|313766|319438|319452|319454|319455|319456|319483|319485|319486|319488|319506|319510|319512|319564|319578|320059|320060|320065|320070|320096|320097|320120|320121|320126|320137|320140|320156|320159|371070|371081|397026|397035|397394|397411|397440|397448|397495|397495|397503|397507|424186|474973|474983|475013|475154|475187|524729|525117|525191|525213|525296|525316|525367|551302|563347|564225|564311|612004|684122|809565|809603|902559|902560|902561|902562|902563|902564|902565|902566|902567|902568|902569|902570|902571|902572|902573|902574|902575|902576|902577|902578|902579|902580|902581|902582|902583|902584|902585|902586|902587|902588|902589|902590|902591|902592|902593|902594|903446|917885", "text": "Holoprosencephaly 7" }, { - "baseId": "23263|100285|101778|101779|101780|141097|141098|141099|141100|193529|193531|212632|221756|236847|236848|236853|236854|236855|240235|253080|253082|253804|253805|256652|256653|256654|256655|256656|256657|256658|265382|281753|281754|281755|281756|282393|282394|282395|283917|283919|283920|283921|284122|284136|284139|284173|284175|304634|304635|304637|304641|308369|308372|308375|308386|308387|308388|308984|308986|310609|313136|313147|313149|313151|313155|313156|313158|313159|313410|313412|313417|313420|313422|313424|313443|313548|313551|313552|313560|313562|313700|313707|313727|315791|315795|315796|315800|315827|315828|315829|315831|315841|315843|315844|315845|319213|319216|319217|319218|319219|319229|319231|319235|319238|319251|319269|319286|319328|319336|319338|319501|319525|320067|320074|320128|321858|321859|321864|321867|321868|321872|321873|321874|322523|322549|322551|322555|322565|322566|322578|322581|325361|325363|325365|325370|325372|325374|325382|325383|325409|325410|326264|326266|326269|326271|326300|326303|326306|326321|326338|326386|331226|341507|346977|346978|346981|353171|353172|384630|395916|395920|396291|396585|457435|508756|514312|523238|523504|523721|535677|535716|535717|535718|535719|535720|535721|535722|535723|536021|562093|562096|562517|567535|611004|620295|623671|636804|683980|683982|687202|687205|687666|783048|819952|819953|834317|834318|834319|866072|866073|866074|866075|866076|866077|866078|866079|866080|866081|866082|866083|866084|899117|899118|899119|899120|899121|899122|899123|899124|899125|899126|899127|899128|899129|899130|899131|899132|899133|899134|899135|899136|899137|899138|899139|899140|899141|899142|945927|945928|966733|966734|966735", + "upstreamId": "23263|100285|101778|101779|101780|141097|141098|141099|141100|193529|193531|212632|221756|236847|236848|236853|236854|236855|240235|253080|253082|253804|253805|256652|256653|256654|256655|256656|256657|256658|265382|281753|281754|281755|281756|282393|282394|282395|283917|283919|283920|283921|284122|284136|284139|284173|284175|304634|304635|304637|304641|308369|308372|308375|308386|308387|308388|308984|308986|310609|313136|313147|313149|313151|313155|313156|313158|313159|313410|313412|313417|313420|313422|313424|313443|313548|313551|313552|313560|313562|313700|313707|313727|315791|315795|315796|315800|315827|315828|315829|315831|315841|315843|315844|315845|319213|319216|319217|319218|319219|319229|319231|319235|319238|319251|319269|319286|319328|319336|319338|319501|319525|320067|320074|320128|321858|321859|321864|321867|321868|321872|321873|321874|322523|322549|322551|322555|322565|322566|322578|322581|325361|325363|325365|325370|325372|325374|325382|325383|325409|325410|326264|326266|326269|326271|326300|326303|326306|326321|326338|326386|331226|341507|346977|346978|346981|353171|353172|384630|395916|395920|396291|396585|457435|508756|514312|523238|523504|523721|535677|535716|535717|535718|535719|535720|535721|535722|535723|536021|562093|562096|562517|567535|611004|620295|623671|636804|683980|683982|687202|687205|687666|783048|819952|819953|834317|834318|834319|866072|866073|866074|866075|866076|866077|866078|866079|866080|866081|866082|866083|866084|899117|899118|899119|899120|899121|899122|899123|899124|899125|899126|899127|899128|899129|899130|899131|899132|899133|899134|899135|899136|899137|899138|899139|899140|899141|899142|945927|945928|966733|966734|966735", "text": "Holoprosencephaly sequence" }, { - "baseId": "23268|23269|23270|23271|23272|23273|23274|23275|23579|23580|23581|23582|23583|34298|36136|36138|36140|36141|36142|36143|36144|36145|36146|36147|36148|36149|36150|36151|36152|36154|36155|36157|36158|36159|36160|36161|36162|36163|36165|36166|36167|36170|36171|36173|36173|36175|36179|36180|36184|36185|36186|36188|36190|36191|36192|36193|36194|36195|36196|36197|36198|36199|36200|36201|36202|36203|36204|36206|36207|36208|36209|36214|36218|39106|39106|39106|46838|47343|47344|50218|50219|50219|50220|50221|50227|50228|79680|94253|133356|133357|133359|133359|133360|133407|136439|136441|136487|136493|136515|137456|137457|138983|138984|139761|139762|139763|139764|139765|139766|139783|139785|139786|139787|139788|139789|140227|140228|140229|140230|142921|142922|142923|150582|150736|150736|150774|150827|150852|150893|150949|150991|151335|151388|151424|151454|151612|151656|151738|151781|151812|151879|151879|151962|151967|151967|152065|152093|152198|152200|152313|152313|152449|152538|152557|166250|166278|180365|180366|180370|180371|180372|180373|180374|181035|181036|181036|181037|181038|181040|181042|182959|182961|182962|182963|182966|182969|182970|182972|182973|182974|182975|182976|182978|182979|182981|182982|182983|182984|182985|182985|182986|182987|185427|185427|185428|185429|185431|185433|185434|185436|185438|185438|185440|185441|185443|185444|185446|185447|185448|185450|185452|185453|185454|186120|186121|186122|186123|186279|186280|186281|186282|212799|212800|212801|212802|212803|212805|212807|212808|212809|212810|212811|213418|213419|213420|213421|213422|213423|213424|213425|213508|221988|221989|221990|221991|221992|221993|221995|221996|221998|221999|222751|222753|222754|222755|222756|222757|222758|222759|222760|233797|233799|233801|233802|233806|233807|233810|233812|233814|233815|233817|233818|233819|233822|233825|233826|233828|233829|233832|233833|233834|233836|233837|236523|236524|236529|236530|236534|236539|236540|236541|236543|236546|236550|240720|240852|240853|240854|240855|240856|240857|240858|240859|240860|240861|240862|240863|240864|240865|240866|240867|240868|243061|243062|243063|243064|243065|243067|243068|243069|243070|243071|243072|243073|243074|243075|243076|243077|244562|244563|244565|244566|244567|244568|245095|248497|253895|253896|311450|311468|311470|311474|311484|311486|311490|317044|317045|317046|317054|317058|317059|323025|323027|323032|323033|323039|323042|323045|323057|323640|323644|323652|323653|323654|331636|331637|331639|331641|331643|331644|331645|331648|331650|331653|331656|331664|331698|331707|331711|341892|341894|341895|341897|341898|341903|341904|341916|341919|341922|341923|341928|341929|341937|341940|341949|341956|341957|341959|341961|347245|347248|347262|347263|347266|347267|347274|347278|347279|347284|347285|347288|347289|347292|347293|347295|347297|347313|347315|347320|347323|347325|347333|347337|347339|347340|348573|348574|348576|348581|348598|348600|348602|348609|348610|348611|348621|348622|348626|348628|348632|348633|348642|348644|348645|348652|348669|348680|358833|358834|358835|358969|361883|370943|370950|370951|371514|371522|371533|371539|371540|371853|371855|373540|373543|375950|375958|376896|376902|376908|376910|377033|377037|377048|377090|377096|379022|379024|379036|379044|379051|379055|397328|397436|397438|397439|397441|397464|397467|397471|397482|397483|397486|397487|397488|397613|397616|397617|397619|397629|397648|397650|397653|397655|397660|397663|397672|397843|397850|397851|397853|397860|397862|397876|397880|397892|397901|397903|397909|397980|397981|397983|397986|397991|397992|397996|397998|398016|398026|398029|398036|398042|402685|402746|402747|402752|402758|402759|402766|402772|402773|402774|402775|402788|402807|402813|402827|402828|402831|402838|403153|403288|403296|403303|403305|403307|403310|403312|403313|403315|403318|403321|403323|403328|403329|403331|403335|403337|403342|407926|407927|407929|407932|407935|407938|407940|407941|407944|407945|407949|410379|410379|410380|410382|410384|410390|410393|410394|410395|414427|421050|421060|432655|432656|432657|432659|444667|459803|460046|460048|460205|460210|460212|460220|460222|460227|460233|460234|460240|460243|460253|460255|460264|460310|460314|460319|460327|460329|460332|460335|460336|460347|460349|460351|460355|460563|460565|460568|460571|460574|460580|460591|460592|461002|461005|461006|461012|461019|461024|461026|461031|461035|461040|461044|461047|461050|461051|461053|461064|461073|467889|468003|468004|468007|468008|468010|468013|468014|468016|468023|468029|468033|468043|468050|468054|468057|468062|468063|468065|468069|468942|468948|468948|468949|468953|468957|468959|468966|468973|468977|468982|468984|468989|468989|468990|468992|468994|469225|469380|469381|469383|469387|469389|469394|469398|469408|469409|469792|469796|469798|469799|469800|469810|469811|469815|469818|469821|475121|475127|475131|475135|475146|475151|475155|475158|475170|475177|475196|475213|475214|475225|475300|475313|475314|475317|475319|475328|475354|475356|475364|475374|475422|479305|479320|479322|479326|479334|479336|479337|479340|479365|479385|479388|479390|479396|479399|479402|479403|479407|479409|479421|479430|479439|480125|480127|480143|480160|480161|482693|482705|482725|482736|482740|482745|482751|482757|482760|482765|483052|484048|484052|484057|484060|484081|484166|484169|484171|484280|484304|484307|484308|485188|485222|485231|485244|485364|485372|485376|485381|485387|485438|485536|485542|485544|487985|487986|487988|496549|506968|510792|510796|513785|525457|525467|525468|525470|525477|525480|525484|525532|525535|525538|525540|525544|525546|525547|525549|525551|525554|525556|525560|525563|525564|525568|525570|525685|525687|525692|525699|525701|525705|525706|525709|525716|525720|525725|525732|525734|525823|525825|525832|525841|525843|525844|525845|525870|525876|525878|525879|532306|532307|532309|532313|532315|532319|532320|532327|532332|532333|532335|532337|532339|532340|532442|532444|532445|532453|532457|532460|532463|532465|532468|532470|532473|532760|532764|532768|532772|532775|536184|536521|539082|539288|539289|539383|539384|540532|550183|563510|563978|563983|563984|563990|563992|563994|564001|564401|564424|564425|564783|564787|564789|564798|564801|564806|564810|564812|564821|564823|564827|564844|564848|566112|566534|566536|566538|566539|566541|566542|566546|569424|569784|569786|569790|569798|569806|569807|570044|570194|570200|570206|570211|570216|570223|570226|570228|570230|570232|570239|571957|571960|571962|571964|572648|572649|572651|572652|572654|572655|572662|574708|574760|574761|574762|574763|609169|611084|611261|617555|617561|617564|617565|617567|617573|617581|618891|618896|618900|618902|618905|618906|618909|618911|618913|618916|620370|639208|639209|639210|639211|639212|639213|639214|639215|639216|639217|639218|639219|639220|639221|639222|639223|639224|639225|639226|639227|639228|639229|639230|639231|639232|639233|639234|639235|639236|639237|639238|639239|639240|639241|639242|639243|639244|639245|639246|639247|639248|639249|639250|639251|639252|639253|639254|639255|639256|639257|647288|647289|647290|647291|647292|647293|647294|647295|647296|647297|647298|647299|647300|647301|647302|647303|647304|647305|647306|647307|647308|647309|647310|647311|647312|647313|647314|647315|647316|647317|647318|647319|647320|647321|647322|647323|647324|651972|651982|652011|652019|652020|652043|652118|652261|652282|652285|652341|652342|652879|653075|653548|653555|653556|656496|692895|694281|712495|737626|744572|756483|760527|760640|760703|768019|768020|772201|772205|772206|775681|775692|776455|776798|783755|783757|783759|785943|785946|785949|785950|788226|788230|790994|809983|810005|810017|810024|810025|810031|810032|814542|814543|814552|814554|814562|815426|815716|820247|820248|820249|820250|820251|820252|820253|820255|820256|820257|821189|821190|821191|837375|837376|837377|837378|837379|837380|837381|837382|837383|837384|837385|837386|837387|837388|837389|837390|837391|837392|837393|837394|837395|837396|837397|837398|837399|837400|837401|837402|837403|837404|837405|837406|846900|846901|846902|846903|846904|846905|846906|846907|846908|846909|846910|846911|846912|846913|846914|846915|846916|846917|846918|846919|846920|846921|846922|846923|846924|846925|846926|846927|846928|851391|851393|851790|852274|852816|852818|866464|866465|866466|866467|866468|866469|866470|866471|866472|866473|866474|866475|866476|879352|879353|879354|879355|879356|879357|879358|879359|879360|879361|879362|879363|879364|879365|879366|879367|879368|879369|879370|879371|879372|879373|879374|879375|879376|879377|879378|879379|879380|879381|879382|879383|879384|879385|879386|879387|879388|879389|879390|879391|879392|879393|879394|879395|879396|879397|879398|879399|879400|879401|879402|879403|879404|879405|879406|879407|879408|879409|879410|879411|879412|879413|879414|879415|880666|911150|911167|911181|914634|921490|925948|925949|925950|925951|925952|925953|925954|925955|925956|925957|925958|925959|928722|928723|928724|928725|928726|928727|928728|928729|928730|928731|928732|928733|935206|935207|935208|935209|935210|935211|935212|935213|935214|935215|935216|938453|938454|938455|938456|938457|938458|938459|938460|938461|938462|938463|938464|940179|940180|940181|940459|940461|940970|940971|941212|941213|947105|947106|947107|947108|947109|947110|947111|947112|947113|947114|947115|950540|950541|950542|950543|950544|950545|950546|950547|950548|950549|950550|950551|950552|956258|956259|956260|958475|958476|959950|960269|960270|966752|967152|970073|975837", + "upstreamId": "23268|23269|23270|23271|23272|23273|23274|23275|23579|23580|23581|23582|23583|34298|36136|36138|36140|36141|36142|36143|36144|36145|36146|36147|36148|36149|36150|36151|36152|36154|36155|36157|36158|36159|36160|36161|36162|36163|36165|36166|36167|36170|36171|36173|36173|36175|36179|36180|36184|36185|36186|36188|36190|36191|36192|36193|36194|36195|36196|36197|36198|36199|36200|36201|36202|36203|36204|36206|36207|36208|36209|36214|36218|39106|39106|39106|46838|47343|47344|50218|50219|50219|50220|50221|50227|50228|79680|94253|133356|133357|133359|133359|133360|133407|136439|136441|136487|136493|136515|137456|137457|138983|138984|139761|139762|139763|139764|139765|139766|139783|139785|139786|139787|139788|139789|140227|140228|140229|140230|142921|142922|142923|150582|150736|150736|150774|150827|150852|150893|150949|150991|151335|151388|151424|151454|151612|151656|151738|151781|151812|151879|151879|151962|151967|151967|152065|152093|152198|152200|152313|152313|152449|152538|152557|166250|166278|180365|180366|180370|180371|180372|180373|180374|181035|181036|181036|181037|181038|181040|181042|182959|182961|182962|182963|182966|182969|182970|182972|182973|182974|182975|182976|182978|182979|182981|182982|182983|182984|182985|182985|182986|182987|185427|185427|185428|185429|185431|185433|185434|185436|185438|185438|185440|185441|185443|185444|185446|185447|185448|185450|185452|185453|185454|186120|186121|186122|186123|186279|186280|186281|186282|212799|212800|212801|212802|212803|212805|212807|212808|212809|212810|212811|213418|213419|213420|213421|213422|213423|213424|213425|213508|221988|221989|221990|221991|221992|221993|221995|221996|221998|221999|222751|222753|222754|222755|222756|222757|222758|222759|222760|233797|233799|233801|233802|233806|233807|233810|233812|233814|233815|233817|233818|233819|233822|233825|233826|233828|233829|233832|233833|233834|233836|233837|236523|236524|236529|236530|236534|236539|236540|236541|236543|236546|236550|240720|240852|240853|240854|240855|240856|240857|240858|240859|240860|240861|240862|240863|240864|240865|240866|240867|240868|243061|243062|243063|243064|243065|243067|243068|243069|243070|243071|243072|243073|243074|243075|243076|243077|244562|244563|244565|244566|244567|244568|245095|248497|253895|253896|311450|311468|311470|311474|311484|311486|311490|317044|317045|317046|317054|317058|317059|323025|323027|323032|323033|323039|323042|323045|323057|323640|323644|323652|323653|323654|331636|331637|331639|331641|331643|331644|331645|331648|331650|331653|331656|331664|331698|331707|331711|341892|341894|341895|341897|341898|341903|341904|341916|341919|341922|341923|341928|341929|341937|341940|341949|341956|341957|341959|341961|347245|347248|347262|347263|347266|347267|347274|347278|347279|347284|347285|347288|347289|347292|347293|347295|347297|347313|347315|347320|347323|347325|347333|347337|347339|347340|348573|348574|348576|348581|348598|348600|348602|348609|348610|348611|348621|348622|348626|348628|348632|348633|348642|348644|348645|348652|348669|348680|358833|358834|358835|358969|361883|370943|370950|370951|371514|371522|371533|371539|371540|371853|371855|373540|373543|375950|375958|376896|376902|376908|376910|377033|377037|377048|377090|377096|379022|379024|379036|379044|379051|379055|397328|397436|397438|397439|397441|397464|397467|397471|397482|397483|397486|397487|397488|397613|397616|397617|397619|397629|397648|397650|397653|397655|397660|397663|397672|397843|397850|397851|397853|397860|397862|397876|397880|397892|397901|397903|397909|397980|397981|397983|397986|397991|397992|397996|397998|398016|398026|398029|398036|398042|402685|402746|402747|402752|402758|402759|402766|402772|402773|402774|402775|402788|402807|402813|402827|402828|402831|402838|403153|403288|403296|403303|403305|403307|403310|403312|403313|403315|403318|403321|403323|403328|403329|403331|403335|403337|403342|407926|407927|407929|407932|407935|407938|407940|407941|407944|407945|407949|410379|410379|410380|410382|410384|410390|410393|410394|410395|414427|421050|421060|432655|432656|432657|432659|444667|459803|460046|460048|460205|460210|460212|460220|460222|460227|460233|460234|460240|460243|460253|460255|460264|460310|460314|460319|460327|460329|460332|460335|460336|460347|460349|460351|460355|460563|460565|460568|460571|460574|460580|460591|460592|461002|461005|461006|461012|461019|461024|461026|461031|461035|461040|461044|461047|461050|461051|461053|461064|461073|467889|468003|468004|468007|468008|468010|468013|468014|468016|468023|468029|468033|468043|468050|468054|468057|468062|468063|468065|468069|468942|468948|468948|468949|468953|468957|468959|468966|468973|468977|468982|468984|468989|468989|468990|468992|468994|469225|469380|469381|469383|469387|469389|469394|469398|469408|469409|469792|469796|469798|469799|469800|469810|469811|469815|469818|469821|475121|475127|475131|475135|475146|475151|475155|475158|475170|475177|475196|475213|475214|475225|475300|475313|475314|475317|475319|475328|475354|475356|475364|475374|475422|479305|479320|479322|479326|479334|479336|479337|479340|479365|479385|479388|479390|479396|479399|479402|479403|479407|479409|479421|479430|479439|480125|480127|480143|480160|480161|482693|482705|482725|482736|482740|482745|482751|482757|482760|482765|483052|484048|484052|484057|484060|484081|484166|484169|484171|484280|484304|484307|484308|485188|485222|485231|485244|485364|485372|485376|485381|485387|485438|485536|485542|485544|487985|487986|487988|496549|506968|510792|510796|513785|525457|525467|525468|525470|525477|525480|525484|525532|525535|525538|525540|525544|525546|525547|525549|525551|525554|525556|525560|525563|525564|525568|525570|525685|525687|525692|525699|525701|525705|525706|525709|525716|525720|525725|525732|525734|525823|525825|525832|525841|525843|525844|525845|525870|525876|525878|525879|532306|532307|532309|532313|532315|532319|532320|532327|532332|532333|532335|532337|532339|532340|532442|532444|532445|532453|532457|532460|532463|532465|532468|532470|532473|532760|532764|532768|532772|532775|536184|536521|539082|539288|539289|539383|539384|540532|550183|563510|563978|563983|563984|563990|563992|563994|564001|564401|564424|564425|564783|564787|564789|564798|564801|564806|564810|564812|564821|564823|564827|564844|564848|566112|566534|566536|566538|566539|566541|566542|566546|569424|569784|569786|569790|569798|569806|569807|570044|570194|570200|570206|570211|570216|570223|570226|570228|570230|570232|570239|571957|571960|571962|571964|572648|572649|572651|572652|572654|572655|572662|574708|574760|574761|574762|574763|609169|611084|611261|617555|617561|617564|617565|617567|617573|617581|618891|618896|618900|618902|618905|618906|618909|618911|618913|618916|620370|639208|639209|639210|639211|639212|639213|639214|639215|639216|639217|639218|639219|639220|639221|639222|639223|639224|639225|639226|639227|639228|639229|639230|639231|639232|639233|639234|639235|639236|639237|639238|639239|639240|639241|639242|639243|639244|639245|639246|639247|639248|639249|639250|639251|639252|639253|639254|639255|639256|639257|647288|647289|647290|647291|647292|647293|647294|647295|647296|647297|647298|647299|647300|647301|647302|647303|647304|647305|647306|647307|647308|647309|647310|647311|647312|647313|647314|647315|647316|647317|647318|647319|647320|647321|647322|647323|647324|651972|651982|652011|652019|652020|652043|652118|652261|652282|652285|652341|652342|652879|653075|653548|653555|653556|656496|692895|694281|712495|737626|744572|756483|760527|760640|760703|768019|768020|772201|772205|772206|775681|775692|776455|776798|783755|783757|783759|785943|785946|785949|785950|788226|788230|790994|809983|810005|810017|810024|810025|810031|810032|814542|814543|814552|814554|814562|815426|815716|820247|820248|820249|820250|820251|820252|820253|820255|820256|820257|821189|821190|821191|837375|837376|837377|837378|837379|837380|837381|837382|837383|837384|837385|837386|837387|837388|837389|837390|837391|837392|837393|837394|837395|837396|837397|837398|837399|837400|837401|837402|837403|837404|837405|837406|846900|846901|846902|846903|846904|846905|846906|846907|846908|846909|846910|846911|846912|846913|846914|846915|846916|846917|846918|846919|846920|846921|846922|846923|846924|846925|846926|846927|846928|851391|851393|851790|852274|852816|852818|866464|866465|866466|866467|866468|866469|866470|866471|866472|866473|866474|866475|866476|879352|879353|879354|879355|879356|879357|879358|879359|879360|879361|879362|879363|879364|879365|879366|879367|879368|879369|879370|879371|879372|879373|879374|879375|879376|879377|879378|879379|879380|879381|879382|879383|879384|879385|879386|879387|879388|879389|879390|879391|879392|879393|879394|879395|879396|879397|879398|879399|879400|879401|879402|879403|879404|879405|879406|879407|879408|879409|879410|879411|879412|879413|879414|879415|880666|911150|911167|911181|914634|921490|925948|925949|925950|925951|925952|925953|925954|925955|925956|925957|925958|925959|928722|928723|928724|928725|928726|928727|928728|928729|928730|928731|928732|928733|935206|935207|935208|935209|935210|935211|935212|935213|935214|935215|935216|938453|938454|938455|938456|938457|938458|938459|938460|938461|938462|938463|938464|940179|940180|940181|940459|940461|940970|940971|941212|941213|947105|947106|947107|947108|947109|947110|947111|947112|947113|947114|947115|950540|950541|950542|950543|950544|950545|950546|950547|950548|950549|950550|950551|950552|956258|956259|956260|958475|958476|959950|960269|960270|966752|967152|970073|975837", "text": "Generalized juvenile polyposis/juvenile polyposis coli" }, { - "baseId": "23276|50219|133359|150736|152313|182985|360921", + "upstreamId": "23276|50219|133359|150736|152313|182985|360921", "text": "Hereditary mixed polyposis syndrome 2" }, { - "baseId": "23277", + "upstreamId": "23277", "text": "Juvenile polyposis of infancy" }, { - "baseId": "23278|23278|23279|39131|75104|75105|135076|135077|135077|135078|135078|135079|135079|135080|135080|135081|135082|135083|194417|194417|194418|194418|194419|194419|196271|196271|207598|207599|215099|215100|253268|253268|253271|253271|253273|253273|253276|253276|253279|253279|253280|253280|265645|265645|270310|270310|273473|273473|306482|306485|306486|306487|306494|310665|310665|310666|310670|310670|316033|316033|316039|316042|316043|316043|316056|316056|316060|316060|316061|316061|316356|316362|316362|316370|316370|316371|316372|316372|316375|316382|316383|359884|425810|425811|425812|428892|458118|458200|458202|458724|458728|458728|458730|458731|458813|458815|458818|458820|458820|458821|458823|458823|458824|459228|459231|459231|459233|459237|459241|459247|523905|524180|524180|524182|524185|524187|524190|524190|524464|524496|524500|524505|524513|524514|524519|562680|562686|563372|565317|565322|565420|565422|568401|568408|637618|637619|637619|637620|637621|637622|637622|637623|637624|637625|637626|637627|637628|637629|637630|637631|637631|637632|637633|637634|651963|651973|651974|652084|692561|692562|692563|692563|692566|695410|695411|711692|751303|767000|767001|767004|783220|835370|835371|835372|835373|835374|835375|835376|835377|835378|835379|835380|835381|835382|835383|835383|835384|835385|835386|835386|859691|900840|900841|900842|900843|900844|900845|900846|900847|900848|900849|900849|900850|900851|900851|903295|903296|903297|925333|925334|925335|925336|934506|934507|934508|934509|946307|946308|946309|946310|946311|946312|946313|946314|955653|955654|955655", + "upstreamId": "23278|23278|23279|39131|75104|75105|135076|135077|135077|135078|135078|135079|135079|135080|135080|135081|135082|135083|194417|194417|194418|194418|194419|194419|196271|196271|207598|207599|215099|215100|253268|253268|253271|253271|253273|253273|253276|253276|253279|253279|253280|253280|265645|265645|270310|270310|273473|273473|306482|306485|306486|306487|306494|310665|310665|310666|310670|310670|316033|316033|316039|316042|316043|316043|316056|316056|316060|316060|316061|316061|316356|316362|316362|316370|316370|316371|316372|316372|316375|316382|316383|359884|425810|425811|425812|428892|458118|458200|458202|458724|458728|458728|458730|458731|458813|458815|458818|458820|458820|458821|458823|458823|458824|459228|459231|459231|459233|459237|459241|459247|523905|524180|524180|524182|524185|524187|524190|524190|524464|524496|524500|524505|524513|524514|524519|562680|562686|563372|565317|565322|565420|565422|568401|568408|637618|637619|637619|637620|637621|637622|637622|637623|637624|637625|637626|637627|637628|637629|637630|637631|637631|637632|637633|637634|651963|651973|651974|652084|692561|692562|692563|692563|692566|695410|695411|711692|751303|767000|767001|767004|783220|835370|835371|835372|835373|835374|835375|835376|835377|835378|835379|835380|835381|835382|835383|835383|835384|835385|835386|835386|859691|900840|900841|900842|900843|900844|900845|900846|900847|900848|900849|900849|900850|900851|900851|903295|903296|903297|925333|925334|925335|925336|934506|934507|934508|934509|946307|946308|946309|946310|946311|946312|946313|946314|955653|955654|955655", "text": "Myasthenic syndrome, congenital, 9, associated with acetylcholine receptor deficiency" }, { - "baseId": "23281|491667|493298", + "upstreamId": "23281|491667|493298", "text": "Bile acid malabsorption, primary" }, { - "baseId": "23282|23283|23285|23286|23287|23288|23289|23290|23291|23292|23293|23295|23296|139995|139996|166129|166130|171152|171153|171155|194254|210221|210222|210224|210225|210226|210227|210228|210230|210231|210232|210233|210236|210238|222253|241561|241562|241563|254610|254611|254613|254614|254615|254616|269746|317691|317693|317694|317698|317700|317701|317709|317710|317715|317721|317725|317726|317729|317733|325567|325568|325592|325593|325594|325596|325605|331815|331817|331822|331823|331824|331825|331832|331843|331845|331851|331852|331856|333260|333261|333264|333270|333281|333295|333296|333298|333299|333309|333310|333318|333323|333330|333333|333343|333344|360045|360048|398802|399002|399003|399020|399157|399166|399167|399503|399504|399510|399512|399519|399520|399768|399769|399770|399779|399781|399783|399785|399787|408712|414382|414383|414384|414393|414394|414395|414399|414401|414406|414407|414411|421939|433105|433106|433107|433109|433111|433114|433115|433347|437741|461786|462305|462317|462319|462321|462326|462572|462575|462576|462580|462583|463035|463051|463054|463059|463060|463064|463183|463186|463189|486613|504330|514646|526620|526621|526622|526625|527243|527245|527247|527250|527253|527256|527259|527268|527479|527482|527486|527496|527498|527504|527505|527781|527783|538606|565580|565582|565591|565599|565601|565603|566902|566903|566914|566915|568116|568118|571902|571903|571907|571909|576353|585337|590609|609067|609837|609840|609847|614379|641235|641236|641237|641238|641239|641240|641241|641242|641243|641244|641245|641246|641247|641248|641249|641250|641251|641252|641253|641254|641255|641256|641257|652182|652332|652385|666850|683145|684334|684335|684336|688025|688026|688027|688028|688029|713572|738703|769204|791258|799690|799691|799692|799693|799694|799695|799696|799697|799698|799699|799700|799701|799702|799703|799704|799705|799706|799707|799708|799709|799710|801134|820506|820507|840053|840054|840055|840056|840057|840058|840059|840060|840061|840062|840063|840064|840065|840066|840067|840068|840069|840070|840071|840072|840073|840074|840075|840076|840077|840078|851513|851515|851953|852485|870060|870061|870062|870063|870064|870065|870066|870067|870068|870069|870070|870071|870072|870073|870074|870075|870076|870077|870078|870079|870080|870081|870082|870083|870084|872258|919454|919455|926668|926669|926670|926671|926672|926673|926674|926675|926676|936170|936171|936172|936173|936174|936175|936176|936177|936178|940269|948084|948085|948086|948087|948088|956900|956901|960789|970614|970615|970616|970617|970618|970619|970620|970621|970622|970623|970624|970625|970626|970627|970628|970629|970630|970631|981807|981808|981809|981810|981811|981812|981813|981814|981815|981816|981817|981818|981819|981820|981821", + "upstreamId": "23282|23283|23285|23286|23287|23288|23289|23290|23291|23292|23293|23295|23296|139995|139996|166129|166130|171152|171153|171155|194254|210221|210222|210224|210225|210226|210227|210228|210230|210231|210232|210233|210236|210238|222253|241561|241562|241563|254610|254611|254613|254614|254615|254616|269746|317691|317693|317694|317698|317700|317701|317709|317710|317715|317721|317725|317726|317729|317733|325567|325568|325592|325593|325594|325596|325605|331815|331817|331822|331823|331824|331825|331832|331843|331845|331851|331852|331856|333260|333261|333264|333270|333281|333295|333296|333298|333299|333309|333310|333318|333323|333330|333333|333343|333344|360045|360048|398802|399002|399003|399020|399157|399166|399167|399503|399504|399510|399512|399519|399520|399768|399769|399770|399779|399781|399783|399785|399787|408712|414382|414383|414384|414393|414394|414395|414399|414401|414406|414407|414411|421939|433105|433106|433107|433109|433111|433114|433115|433347|437741|461786|462305|462317|462319|462321|462326|462572|462575|462576|462580|462583|463035|463051|463054|463059|463060|463064|463183|463186|463189|486613|504330|514646|526620|526621|526622|526625|527243|527245|527247|527250|527253|527256|527259|527268|527479|527482|527486|527496|527498|527504|527505|527781|527783|538606|565580|565582|565591|565599|565601|565603|566902|566903|566914|566915|568116|568118|571902|571903|571907|571909|576353|585337|590609|609067|609837|609840|609847|614379|641235|641236|641237|641238|641239|641240|641241|641242|641243|641244|641245|641246|641247|641248|641249|641250|641251|641252|641253|641254|641255|641256|641257|652182|652332|652385|666850|683145|684334|684335|684336|688025|688026|688027|688028|688029|713572|738703|769204|791258|799690|799691|799692|799693|799694|799695|799696|799697|799698|799699|799700|799701|799702|799703|799704|799705|799706|799707|799708|799709|799710|801134|820506|820507|840053|840054|840055|840056|840057|840058|840059|840060|840061|840062|840063|840064|840065|840066|840067|840068|840069|840070|840071|840072|840073|840074|840075|840076|840077|840078|851513|851515|851953|852485|870060|870061|870062|870063|870064|870065|870066|870067|870068|870069|870070|870071|870072|870073|870074|870075|870076|870077|870078|870079|870080|870081|870082|870083|870084|872258|919454|919455|926668|926669|926670|926671|926672|926673|926674|926675|926676|936170|936171|936172|936173|936174|936175|936176|936177|936178|940269|948084|948085|948086|948087|948088|956900|956901|960789|970614|970615|970616|970617|970618|970619|970620|970621|970622|970623|970624|970625|970626|970627|970628|970629|970630|970631|981807|981808|981809|981810|981811|981812|981813|981814|981815|981816|981817|981818|981819|981820|981821", "text": "Telangiectasia, hereditary hemorrhagic, type 2" }, { - "baseId": "23282|23288|23289|23290|23291|23292|23293|23294|210238|360048|399783|414375|414376|414377|414378|414379|414380|414381|414382|414385|414386|414387|414388|414394|414395|414397|414398|414400|414401|414402|414403|414404|414409|414410|414411|414433", + "upstreamId": "23282|23288|23289|23290|23291|23292|23293|23294|210238|360048|399783|414375|414376|414377|414378|414379|414380|414381|414382|414385|414386|414387|414388|414394|414395|414397|414398|414400|414401|414402|414403|414404|414409|414410|414411|414433", "text": "Pulmonary arterial hypertension related to hereditary hemorrhagic telangiectasia" }, { - "baseId": "23291|23835|23836|23840|23841|23844|23845|23847|23849|23851|96795|199803|209585|209588|210238|210238|224249|259914|264058|392288|392462|414075|414080|414084|414090|414096|414107|414110|414113|414117|414135|414136|414158|414159|414161|414165|414170|414182|414199|414206|414209|414221|414226|414229|414233|414234|414259|414263|414267|414295|414303|414306|414328|414366|414408|445123|590074|590075|590077|590078|641249|800996|800997|800998|800999|801000|801001|801002|801003|801004|801005|801006|801007|801008|801009|801010|801011|801012|801013|801014|801015|801016|801017|801018|801019|801020|801021|801022|801023|801024|801025|801026|801027|801028|801029|801030|801031|801032|801033|801034|801035|801036|801037|801038|801039|801040|801041|801042|801043|801044|801045|801046|801047|801048|801049|801050|801051|801052|801053|801054|801055|801056|801057|801058|801059|801060|801061|801065|801111|801112|801131|801132|801133|801134|801156|801172|801173|801174|801175|801176|801177|801178|801179|801233|801234|801235|801236|801237|801238|801239|801240|801241|801242|801243|801258|801259|801260|801261|801507|801508|801509|801510|801515", + "upstreamId": "23291|23835|23836|23840|23841|23844|23845|23847|23849|23851|96795|199803|209585|209588|210238|210238|224249|259914|264058|392288|392462|414075|414080|414084|414090|414096|414107|414110|414113|414117|414135|414136|414158|414159|414161|414165|414170|414182|414199|414206|414209|414221|414226|414229|414233|414234|414259|414263|414267|414295|414303|414306|414328|414366|414408|445123|590074|590075|590077|590078|641249|800996|800997|800998|800999|801000|801001|801002|801003|801004|801005|801006|801007|801008|801009|801010|801011|801012|801013|801014|801015|801016|801017|801018|801019|801020|801021|801022|801023|801024|801025|801026|801027|801028|801029|801030|801031|801032|801033|801034|801035|801036|801037|801038|801039|801040|801041|801042|801043|801044|801045|801046|801047|801048|801049|801050|801051|801052|801053|801054|801055|801056|801057|801058|801059|801060|801061|801065|801111|801112|801131|801132|801133|801134|801156|801172|801173|801174|801175|801176|801177|801178|801179|801233|801234|801235|801236|801237|801238|801239|801240|801241|801242|801243|801258|801259|801260|801261|801507|801508|801509|801510|801515", "text": "Pulmonary arterial hypertension" }, { - "baseId": "23297|23298|23299|23300|39128|39129|39130|81688|88117|98921|98922|98923|98924|98926|98928|98933|98934|98935|98936|98938|98939|98941|98943|98944|98946|98949|98950|98952|98955|98960|98961|98962|98965|98966|98967|98968|98969|98970|98972|98973|98976|98977|98981|98982|98983|98984|98986|98988|98992|98993|98995|98997|98998|135364|135365|135366|135367|135368|135370|135371|135372|135373|135375|135376|135377|135378|135379|135381|135382|135383|135385|135386|135387|135388|135389|135390|135391|135392|135394|135396|135397|135398|135399|135400|135401|135402|135404|135405|135406|135407|135408|135409|135409|176989|177121|177252|177383|177959|177961|177962|177965|177966|191156|191157|191638|192163|192815|192816|192817|192962|192963|193017|193018|193076|193091|193265|193266|193267|193309|193435|193772|193823|193877|193878|193881|193882|193883|193893|193894|193895|193896|193897|193899|193902|193903|193904|193905|193906|193907|193908|193909|193910|193911|193912|193913|193914|193915|193917|193918|193919|193920|193921|193922|193923|193925|193926|193928|193969|193971|193973|193974|193975|193977|193978|193980|193983|193984|193985|193986|193987|193989|193990|193994|193998|194000|194001|194002|194003|194004|194005|194008|194009|194010|194012|194013|194014|194015|194019|194020|195245|195795|207532|207533|231311|231370|231429|231430|253066|253067|265349|265461|265465|265501|265502|265508|265512|265516|265517|265518|265519|265524|265531|265554|265593|265628|265629|265639|265718|265827|265831|265905|265922|265930|265931|265932|265938|266070|266073|266086|266092|266179|266185|266228|266229|266248|266334|266335|266357|266370|266405|266422|266425|266440|266481|266507|266522|266524|266534|266545|266546|266550|266554|266563|266629|266630|266642|266656|266658|266659|266687|266692|266703|266723|266730|266736|266746|266756|266775|266779|266819|266876|266961|266991|267017|267018|267058|267063|267069|267090|267102|267121|267126|267133|267262|267271|267292|267309|267337|267338|267339|267439|267460|267461|267478|267481|267484|267491|267513|267523|267541|267568|267574|267631|267638|267641|267671|267700|267701|267707|267786|267867|267875|267877|267881|267882|267885|267899|267912|267924|267932|267981|268004|268114|268184|268195|268205|268206|268207|268212|268338|268339|268485|268486|268520|268521|268624|268704|268731|268747|268802|268812|268818|268819|268820|268835|268837|269027|269036|269247|269248|269316|269468|269573|269579|269645|269915|269970|269980|270225|270253|270274|270275|270360|270506|270550|270555|270825|270961|271365|271460|271624|271858|271947|272140|272170|272415|273236|273701|274532|274542|274576|274586|274590|274687|274701|274703|274704|274872|274876|274884|274886|274888|274895|274900|274934|274949|274965|274966|275304|361453|369376|369377|369380|369386|369388|369394|369396|369411|369412|369424|369428|369734|369742|369758|369763|369767|369769|369773|369791|369802|369809|369814|369825|369839|369841|369846|370091|370093|370095|370097|370102|370108|370111|370122|370128|370132|370138|370139|370149|370155|371589|371592|371593|371594|371618|371629|371631|371646|371656|371659|371661|371665|371667|371679|371681|390580|404777|407323|407324|407325|407326|407327|407328|407332|407334|407335|415126|421663|421664|421665|425783|425784|425786|428802|428803|428804|428805|428806|428807|428808|428810|434623|438403|438405|441183|441184|441186|441188|441189|441190|441191|441193|441197|441199|441200|441201|441203|441204|441205|441206|441210|441211|441222|441223|441224|444223|444224|444226|444228|444230|444235|444240|444241|444245|444247|444250|444251|457234|457236|457238|457240|457245|457248|457249|457255|457258|457272|457273|457277|457282|457286|457294|457296|457298|457300|457302|457305|457307|457310|457312|457316|457323|457324|457328|457336|457337|457347|457348|457351|457359|457362|457363|457366|457371|457385|457390|457391|457393|457397|457399|457401|457405|457406|457411|457422|457424|457426|457428|457817|457837|457838|457839|457843|457847|457849|457851|457856|457857|457860|457862|457865|457866|457867|457869|457870|457872|457876|457878|457880|457882|457883|457884|457886|457887|457888|457894|457896|457900|457901|457902|457904|457907|457908|457912|457914|457919|457920|457921|457922|457924|457925|457927|457928|457931|457932|457935|457936|457937|457938|457946|457949|457956|457958|457960|457962|457963|457967|457972|457977|457980|457981|457982|457983|457985|457988|457990|457996|457998|457999|458001|458002|458004|458006|458007|458008|458013|458014|458017|458020|458022|458023|458025|458028|458030|458032|458033|458034|458039|458040|458041|458043|458046|458047|458051|458054|458062|458064|458067|458068|458071|458072|458077|458079|458088|458241|458243|458248|458252|458256|458266|458268|458272|458273|458277|458279|458283|458286|458292|458296|458298|458301|458302|458305|458310|458311|458316|458318|458323|458327|458334|458337|458341|458343|458346|458347|458350|458352|458355|458363|458368|458370|458376|458379|458383|458386|486449|488410|488423|488425|488427|488429|488430|488437|488440|488453|488464|488466|488469|488474|488476|488477|488479|488488|488496|488505|488507|488509|488512|488519|488520|488538|488539|488562|488589|488617|488790|488793|488811|488922|489011|489080|489083|489246|489276|489281|489377|489481|489688|490087|490389|490392|490417|490506|490642|490644|490646|490714|491028|491054|491060|491066|491108|491112|491126|491242|491388|491529|491648|491734|491814|491816|491970|491980|492104|492115|492230|492337|492338|492462|492609|492868|492901|493049|493050|493061|493063|493156|493220|493225|493253|493351|493496|493504|493568|493569|493573|493622|493662|493665|493825|493873|493874|493982|494015|494082|494092|494093|501926|501929|501931|501936|501946|501964|502236|502239|502244|502255|502262|502276|502278|502299|502313|502355|502361|502603|502604|502619|502623|502626|502632|502637|511746|511748|511749|523032|523042|523045|523051|523054|523057|523059|523063|523086|523088|523095|523101|523103|523109|523118|523126|523132|523133|523134|523138|523139|523142|523148|523151|523156|523158|523171|523173|523174|523176|523179|523182|523202|523205|523207|523208|523211|523214|523215|523311|523321|523323|523336|523339|523341|523345|523348|523353|523355|523358|523361|523371|523375|523380|523387|523388|523390|523392|523399|523401|523405|523412|523413|523415|523417|523420|523423|523432|523436|523441|523442|523448|523451|523461|523466|523467|523474|523481|523531|523537|523542|523544|523547|523549|523552|523553|523555|523556|523563|523570|523572|523576|523584|523586|523594|523596|523601|523603|523606|523608|523610|523616|523618|523622|523624|523636|523639|523644|523647|523652|523654|523655|523656|523658|523662|523663|523665|523667|523669|523671|523675|523676|523678|523683|523685|523689|523690|523692|523693|523694|523695|523698|523700|523702|523706|523714|523716|523718|523726|523730|523735|536744|561957|561960|561963|561965|561974|561980|561981|561993|561996|562000|562002|562011|562014|562018|562020|562021|562026|562029|562032|562034|562036|562038|562040|562047|562050|562054|562057|562059|562380|562396|562397|562400|562401|562411|562423|562425|562432|562433|562436|562437|562443|562448|562459|562475|562476|562479|562487|562496|562497|562500|562501|562504|562511|564676|564679|564681|564683|564690|564699|564701|564704|564708|564710|564718|564719|564722|564724|564726|564731|564732|564736|564741|564751|564759|564765|564767|564771|564774|564776|564778|564780|564785|564788|564790|564794|564796|564800|564802|564809|567397|567399|567400|567401|567406|567409|567414|567418|567419|567420|567421|567423|567427|567428|567430|567434|567443|567448|567466|567471|567484|567487|567493|567494|567495|567496|567497|567502|577038|577042|577048|577050|583214|583818|583832|583842|583852|583863|583873|583888|583928|583989|584023|584100|584299|584656|584658|584660|585030|585144|585680|585726|585814|585970|586401|586783|586809|586971|587049|587287|587469|588315|588317|588432|588452|588464|588491|588509|588536|588609|588612|588626|588632|588860|588861|588863|589251|589263|589547|589607|589776|612808|623147|636629|636630|636631|636632|636633|636634|636635|636636|636637|636638|636639|636640|636641|636642|636643|636644|636645|636646|636647|636648|636649|636650|636651|636652|636653|636654|636655|636656|636657|636658|636659|636660|636661|636662|636663|636664|636665|636666|636667|636668|636669|636670|636671|636672|636673|636674|636675|636676|636677|636678|636679|636680|636681|636682|636683|636684|636685|636686|636687|636688|636689|636690|636691|636692|636693|636694|636695|636696|636697|636698|636699|636700|636701|636702|636703|636704|636705|636706|636707|636708|636709|636710|636711|636712|636713|636714|636715|636716|636717|636718|636719|636720|636721|636722|636723|636724|636725|636726|636727|636728|636729|636730|636731|636732|636733|636734|636735|636736|636737|636738|636739|636740|636741|636742|636743|636744|636745|636746|636747|636748|636749|636750|636751|636752|636753|636754|636755|636756|636757|636758|636759|636760|636761|636762|636763|636764|636765|636766|636767|636768|636769|636770|636771|636772|636773|636774|636775|636776|636777|636778|636779|636780|636781|651751|651754|651758|651760|651770|651773|655836|655845|655849|662710|687201|692371|692372|692373|692375|692376|692378|692379|692380|692381|692385|692386|692387|692389|692391|692392|692393|692394|692395|692396|692397|692402|692403|692404|692406|692409|692411|692412|692413|692414|692418|692419|692420|692423|692424|692426|692430|692431|692432|692433|692434|692435|692436|692438|692440|695384|700445|700447|700450|700451|700455|700457|700458|700461|700463|700464|700467|711370|711371|711372|711374|711376|711381|711382|711385|711390|711391|711392|722917|722921|722922|736504|736505|736506|736507|736508|736510|736512|736513|736514|736521|736523|750972|750975|750976|750978|750979|750980|750985|750987|750989|750992|750995|766578|766583|766584|766586|766587|766599|766623|766628|775210|777720|783022|783024|783026|783029|783031|783035|793265|793267|793268|796133|796137|834168|834169|834170|834171|834172|834173|834174|834175|834176|834177|834178|834179|834180|834181|834182|834183|834184|834185|834186|834187|834188|834189|834190|834191|834192|834193|834194|834195|834196|834197|834198|834199|834200|834201|834202|834203|834204|834205|834206|834207|834208|834209|834210|834211|834212|834213|834214|834215|834216|834217|834218|834219|834220|834221|834222|834223|834224|834225|834226|834227|834228|834229|834230|834231|834232|834233|834234|834235|834236|834237|834238|834239|834240|834241|834242|834243|834244|834245|834246|834247|834248|834249|834250|834251|834252|834253|834254|834255|834256|834257|834258|834259|834260|834261|834262|834263|834264|834265|834266|834267|834268|834269|834270|834271|834272|834273|834274|834275|834276|834277|834278|834279|834280|834281|834282|834283|834284|834285|834286|834287|834288|834289|834290|834291|834292|834293|852118|925028|925029|925030|925031|925032|925033|925034|925035|925036|925037|925038|925039|925040|925041|925042|925043|925044|925045|925046|925047|925048|925049|925050|925051|925052|925053|925054|925055|925056|925057|925058|925059|925060|925061|925062|925063|925064|925065|925066|925067|925068|934109|934110|934111|934112|934113|934114|934115|934116|934117|934118|934119|934120|934121|934122|934123|934124|934125|934126|934127|934128|934129|934130|934131|934132|934133|934134|934135|934136|934137|934138|934139|934140|934141|934142|934143|934144|934145|934146|934147|934148|934149|934150|934151|934152|934153|934154|934155|934156|934157|934158|934159|934160|934161|940891|945859|945860|945861|945862|945863|945864|945865|945866|945867|945868|945869|945870|945871|945872|945873|945874|945875|945876|945877|945878|945879|945880|945881|945882|945883|945884|945885|945886|945887|945888|945889|945890|945891|945892|945893|945894|945895|945896|945897|945898|945899|945900|945901|945902|945903|945904|945905|945906|945907|945908|945909|945910|945911|945912|955305|955306|955307|955308|955309|955310|955311|955312|955313|955314|955315|955316|955317|955318|955319|955320|955321|955322|955323|955324|955325|955326|955327|955328|955329|955330|955331|955332|955333|955334|955335|955336|955337|955338|955339|955340|959878|970877|970878", + "upstreamId": "23297|23298|23299|23300|39128|39129|39130|81688|88117|98921|98922|98923|98924|98926|98928|98933|98934|98935|98936|98938|98939|98941|98943|98944|98946|98949|98950|98952|98955|98960|98961|98962|98965|98966|98967|98968|98969|98970|98972|98973|98976|98977|98981|98982|98983|98984|98986|98988|98992|98993|98995|98997|98998|135364|135365|135366|135367|135368|135370|135371|135372|135373|135375|135376|135377|135378|135379|135381|135382|135383|135385|135386|135387|135388|135389|135390|135391|135392|135394|135396|135397|135398|135399|135400|135401|135402|135404|135405|135406|135407|135408|135409|135409|176989|177121|177252|177383|177959|177961|177962|177965|177966|191156|191157|191638|192163|192815|192816|192817|192962|192963|193017|193018|193076|193091|193265|193266|193267|193309|193435|193772|193823|193877|193878|193881|193882|193883|193893|193894|193895|193896|193897|193899|193902|193903|193904|193905|193906|193907|193908|193909|193910|193911|193912|193913|193914|193915|193917|193918|193919|193920|193921|193922|193923|193925|193926|193928|193969|193971|193973|193974|193975|193977|193978|193980|193983|193984|193985|193986|193987|193989|193990|193994|193998|194000|194001|194002|194003|194004|194005|194008|194009|194010|194012|194013|194014|194015|194019|194020|195245|195795|207532|207533|231311|231370|231429|231430|253066|253067|265349|265461|265465|265501|265502|265508|265512|265516|265517|265518|265519|265524|265531|265554|265593|265628|265629|265639|265718|265827|265831|265905|265922|265930|265931|265932|265938|266070|266073|266086|266092|266179|266185|266228|266229|266248|266334|266335|266357|266370|266405|266422|266425|266440|266481|266507|266522|266524|266534|266545|266546|266550|266554|266563|266629|266630|266642|266656|266658|266659|266687|266692|266703|266723|266730|266736|266746|266756|266775|266779|266819|266876|266961|266991|267017|267018|267058|267063|267069|267090|267102|267121|267126|267133|267262|267271|267292|267309|267337|267338|267339|267439|267460|267461|267478|267481|267484|267491|267513|267523|267541|267568|267574|267631|267638|267641|267671|267700|267701|267707|267786|267867|267875|267877|267881|267882|267885|267899|267912|267924|267932|267981|268004|268114|268184|268195|268205|268206|268207|268212|268338|268339|268485|268486|268520|268521|268624|268704|268731|268747|268802|268812|268818|268819|268820|268835|268837|269027|269036|269247|269248|269316|269468|269573|269579|269645|269915|269970|269980|270225|270253|270274|270275|270360|270506|270550|270555|270825|270961|271365|271460|271624|271858|271947|272140|272170|272415|273236|273701|274532|274542|274576|274586|274590|274687|274701|274703|274704|274872|274876|274884|274886|274888|274895|274900|274934|274949|274965|274966|275304|361453|369376|369377|369380|369386|369388|369394|369396|369411|369412|369424|369428|369734|369742|369758|369763|369767|369769|369773|369791|369802|369809|369814|369825|369839|369841|369846|370091|370093|370095|370097|370102|370108|370111|370122|370128|370132|370138|370139|370149|370155|371589|371592|371593|371594|371618|371629|371631|371646|371656|371659|371661|371665|371667|371679|371681|390580|404777|407323|407324|407325|407326|407327|407328|407332|407334|407335|415126|421663|421664|421665|425783|425784|425786|428802|428803|428804|428805|428806|428807|428808|428810|434623|438403|438405|441183|441184|441186|441188|441189|441190|441191|441193|441197|441199|441200|441201|441203|441204|441205|441206|441210|441211|441222|441223|441224|444223|444224|444226|444228|444230|444235|444240|444241|444245|444247|444250|444251|457234|457236|457238|457240|457245|457248|457249|457255|457258|457272|457273|457277|457282|457286|457294|457296|457298|457300|457302|457305|457307|457310|457312|457316|457323|457324|457328|457336|457337|457347|457348|457351|457359|457362|457363|457366|457371|457385|457390|457391|457393|457397|457399|457401|457405|457406|457411|457422|457424|457426|457428|457817|457837|457838|457839|457843|457847|457849|457851|457856|457857|457860|457862|457865|457866|457867|457869|457870|457872|457876|457878|457880|457882|457883|457884|457886|457887|457888|457894|457896|457900|457901|457902|457904|457907|457908|457912|457914|457919|457920|457921|457922|457924|457925|457927|457928|457931|457932|457935|457936|457937|457938|457946|457949|457956|457958|457960|457962|457963|457967|457972|457977|457980|457981|457982|457983|457985|457988|457990|457996|457998|457999|458001|458002|458004|458006|458007|458008|458013|458014|458017|458020|458022|458023|458025|458028|458030|458032|458033|458034|458039|458040|458041|458043|458046|458047|458051|458054|458062|458064|458067|458068|458071|458072|458077|458079|458088|458241|458243|458248|458252|458256|458266|458268|458272|458273|458277|458279|458283|458286|458292|458296|458298|458301|458302|458305|458310|458311|458316|458318|458323|458327|458334|458337|458341|458343|458346|458347|458350|458352|458355|458363|458368|458370|458376|458379|458383|458386|486449|488410|488423|488425|488427|488429|488430|488437|488440|488453|488464|488466|488469|488474|488476|488477|488479|488488|488496|488505|488507|488509|488512|488519|488520|488538|488539|488562|488589|488617|488790|488793|488811|488922|489011|489080|489083|489246|489276|489281|489377|489481|489688|490087|490389|490392|490417|490506|490642|490644|490646|490714|491028|491054|491060|491066|491108|491112|491126|491242|491388|491529|491648|491734|491814|491816|491970|491980|492104|492115|492230|492337|492338|492462|492609|492868|492901|493049|493050|493061|493063|493156|493220|493225|493253|493351|493496|493504|493568|493569|493573|493622|493662|493665|493825|493873|493874|493982|494015|494082|494092|494093|501926|501929|501931|501936|501946|501964|502236|502239|502244|502255|502262|502276|502278|502299|502313|502355|502361|502603|502604|502619|502623|502626|502632|502637|511746|511748|511749|523032|523042|523045|523051|523054|523057|523059|523063|523086|523088|523095|523101|523103|523109|523118|523126|523132|523133|523134|523138|523139|523142|523148|523151|523156|523158|523171|523173|523174|523176|523179|523182|523202|523205|523207|523208|523211|523214|523215|523311|523321|523323|523336|523339|523341|523345|523348|523353|523355|523358|523361|523371|523375|523380|523387|523388|523390|523392|523399|523401|523405|523412|523413|523415|523417|523420|523423|523432|523436|523441|523442|523448|523451|523461|523466|523467|523474|523481|523531|523537|523542|523544|523547|523549|523552|523553|523555|523556|523563|523570|523572|523576|523584|523586|523594|523596|523601|523603|523606|523608|523610|523616|523618|523622|523624|523636|523639|523644|523647|523652|523654|523655|523656|523658|523662|523663|523665|523667|523669|523671|523675|523676|523678|523683|523685|523689|523690|523692|523693|523694|523695|523698|523700|523702|523706|523714|523716|523718|523726|523730|523735|536744|561957|561960|561963|561965|561974|561980|561981|561993|561996|562000|562002|562011|562014|562018|562020|562021|562026|562029|562032|562034|562036|562038|562040|562047|562050|562054|562057|562059|562380|562396|562397|562400|562401|562411|562423|562425|562432|562433|562436|562437|562443|562448|562459|562475|562476|562479|562487|562496|562497|562500|562501|562504|562511|564676|564679|564681|564683|564690|564699|564701|564704|564708|564710|564718|564719|564722|564724|564726|564731|564732|564736|564741|564751|564759|564765|564767|564771|564774|564776|564778|564780|564785|564788|564790|564794|564796|564800|564802|564809|567397|567399|567400|567401|567406|567409|567414|567418|567419|567420|567421|567423|567427|567428|567430|567434|567443|567448|567466|567471|567484|567487|567493|567494|567495|567496|567497|567502|577038|577042|577048|577050|583214|583818|583832|583842|583852|583863|583873|583888|583928|583989|584023|584100|584299|584656|584658|584660|585030|585144|585680|585726|585814|585970|586401|586783|586809|586971|587049|587287|587469|588315|588317|588432|588452|588464|588491|588509|588536|588609|588612|588626|588632|588860|588861|588863|589251|589263|589547|589607|589776|612808|623147|636629|636630|636631|636632|636633|636634|636635|636636|636637|636638|636639|636640|636641|636642|636643|636644|636645|636646|636647|636648|636649|636650|636651|636652|636653|636654|636655|636656|636657|636658|636659|636660|636661|636662|636663|636664|636665|636666|636667|636668|636669|636670|636671|636672|636673|636674|636675|636676|636677|636678|636679|636680|636681|636682|636683|636684|636685|636686|636687|636688|636689|636690|636691|636692|636693|636694|636695|636696|636697|636698|636699|636700|636701|636702|636703|636704|636705|636706|636707|636708|636709|636710|636711|636712|636713|636714|636715|636716|636717|636718|636719|636720|636721|636722|636723|636724|636725|636726|636727|636728|636729|636730|636731|636732|636733|636734|636735|636736|636737|636738|636739|636740|636741|636742|636743|636744|636745|636746|636747|636748|636749|636750|636751|636752|636753|636754|636755|636756|636757|636758|636759|636760|636761|636762|636763|636764|636765|636766|636767|636768|636769|636770|636771|636772|636773|636774|636775|636776|636777|636778|636779|636780|636781|651751|651754|651758|651760|651770|651773|655836|655845|655849|662710|687201|692371|692372|692373|692375|692376|692378|692379|692380|692381|692385|692386|692387|692389|692391|692392|692393|692394|692395|692396|692397|692402|692403|692404|692406|692409|692411|692412|692413|692414|692418|692419|692420|692423|692424|692426|692430|692431|692432|692433|692434|692435|692436|692438|692440|695384|700445|700447|700450|700451|700455|700457|700458|700461|700463|700464|700467|711370|711371|711372|711374|711376|711381|711382|711385|711390|711391|711392|722917|722921|722922|736504|736505|736506|736507|736508|736510|736512|736513|736514|736521|736523|750972|750975|750976|750978|750979|750980|750985|750987|750989|750992|750995|766578|766583|766584|766586|766587|766599|766623|766628|775210|777720|783022|783024|783026|783029|783031|783035|793265|793267|793268|796133|796137|834168|834169|834170|834171|834172|834173|834174|834175|834176|834177|834178|834179|834180|834181|834182|834183|834184|834185|834186|834187|834188|834189|834190|834191|834192|834193|834194|834195|834196|834197|834198|834199|834200|834201|834202|834203|834204|834205|834206|834207|834208|834209|834210|834211|834212|834213|834214|834215|834216|834217|834218|834219|834220|834221|834222|834223|834224|834225|834226|834227|834228|834229|834230|834231|834232|834233|834234|834235|834236|834237|834238|834239|834240|834241|834242|834243|834244|834245|834246|834247|834248|834249|834250|834251|834252|834253|834254|834255|834256|834257|834258|834259|834260|834261|834262|834263|834264|834265|834266|834267|834268|834269|834270|834271|834272|834273|834274|834275|834276|834277|834278|834279|834280|834281|834282|834283|834284|834285|834286|834287|834288|834289|834290|834291|834292|834293|852118|925028|925029|925030|925031|925032|925033|925034|925035|925036|925037|925038|925039|925040|925041|925042|925043|925044|925045|925046|925047|925048|925049|925050|925051|925052|925053|925054|925055|925056|925057|925058|925059|925060|925061|925062|925063|925064|925065|925066|925067|925068|934109|934110|934111|934112|934113|934114|934115|934116|934117|934118|934119|934120|934121|934122|934123|934124|934125|934126|934127|934128|934129|934130|934131|934132|934133|934134|934135|934136|934137|934138|934139|934140|934141|934142|934143|934144|934145|934146|934147|934148|934149|934150|934151|934152|934153|934154|934155|934156|934157|934158|934159|934160|934161|940891|945859|945860|945861|945862|945863|945864|945865|945866|945867|945868|945869|945870|945871|945872|945873|945874|945875|945876|945877|945878|945879|945880|945881|945882|945883|945884|945885|945886|945887|945888|945889|945890|945891|945892|945893|945894|945895|945896|945897|945898|945899|945900|945901|945902|945903|945904|945905|945906|945907|945908|945909|945910|945911|945912|955305|955306|955307|955308|955309|955310|955311|955312|955313|955314|955315|955316|955317|955318|955319|955320|955321|955322|955323|955324|955325|955326|955327|955328|955329|955330|955331|955332|955333|955334|955335|955336|955337|955338|955339|955340|959878|970877|970878", "text": "Epidermolysis bullosa simplex with muscular dystrophy" }, { - "baseId": "23301|81688|88117|98921|98922|98923|98924|98926|98928|98933|98934|98935|98936|98938|98939|98941|98943|98944|98946|98949|98950|98952|98955|98960|98961|98962|98965|98966|98967|98968|98969|98970|98972|98973|98976|98977|98981|98982|98983|98984|98986|98988|98992|98993|98995|98997|98998|135364|135365|135366|135367|135368|135370|135371|135372|135373|135375|135376|135377|135378|135379|135381|135382|135383|135385|135386|135387|135388|135389|135390|135391|135392|135394|135396|135397|135398|135399|135400|135401|135402|135404|135405|135406|135407|135408|135409|135409|176989|177121|177252|177383|177959|177961|177962|177965|177966|191156|191157|191638|192163|192815|192816|192817|192962|192963|193017|193018|193076|193091|193265|193266|193267|193309|193435|193772|193823|193877|193878|193881|193882|193883|193893|193894|193895|193896|193897|193899|193902|193903|193904|193905|193906|193907|193908|193909|193910|193911|193912|193913|193914|193915|193917|193918|193919|193920|193921|193922|193923|193925|193926|193928|193969|193971|193973|193974|193975|193977|193978|193980|193983|193984|193985|193986|193987|193989|193990|193994|193998|194000|194001|194002|194003|194004|194005|194008|194009|194010|194012|194013|194014|194015|194019|194020|195245|195795|207532|207533|231311|231370|231429|231430|253066|253067|265349|265461|265465|265501|265502|265508|265512|265516|265517|265518|265519|265524|265531|265554|265593|265628|265629|265639|265718|265827|265831|265905|265922|265930|265931|265932|265938|266070|266073|266086|266092|266179|266185|266228|266229|266248|266334|266335|266357|266370|266405|266422|266425|266440|266481|266507|266522|266524|266534|266545|266546|266550|266554|266563|266629|266630|266642|266656|266658|266659|266687|266692|266703|266723|266730|266736|266746|266756|266775|266779|266819|266876|266961|266991|267017|267018|267058|267063|267069|267090|267102|267121|267126|267133|267262|267271|267292|267309|267337|267338|267339|267439|267460|267461|267478|267481|267484|267491|267513|267523|267541|267568|267574|267631|267638|267641|267671|267700|267701|267707|267786|267867|267875|267877|267881|267882|267885|267899|267912|267924|267932|267981|268004|268114|268184|268195|268205|268206|268207|268212|268338|268339|268485|268486|268520|268521|268624|268704|268731|268747|268802|268812|268818|268819|268820|268835|268837|269027|269036|269247|269248|269316|269468|269573|269579|269645|269915|269970|269980|270225|270253|270274|270275|270360|270506|270550|270555|270825|270961|271365|271460|271624|271858|271947|272140|272170|272415|273236|273701|274532|274542|274576|274586|274590|274687|274701|274703|274704|274872|274876|274884|274886|274888|274895|274900|274934|274949|274965|274966|275304|361453|369376|369377|369380|369386|369388|369394|369396|369411|369412|369424|369428|369734|369742|369758|369763|369767|369769|369773|369791|369802|369809|369814|369825|369839|369841|369846|370091|370093|370095|370097|370102|370108|370111|370122|370128|370132|370138|370139|370149|370155|371589|371592|371593|371594|371618|371629|371631|371646|371656|371659|371661|371665|371667|371679|371681|390580|404777|407323|407324|407325|407326|407327|407328|407332|407334|407335|415126|421663|421664|421665|425783|425784|425786|428802|428803|428804|428805|428806|428807|428808|428810|434623|438403|438405|441183|441184|441186|441188|441189|441190|441191|441193|441197|441199|441200|441201|441203|441204|441205|441206|441210|441211|441222|441223|441224|444223|444224|444226|444228|444230|444235|444240|444241|444245|444247|444250|444251|457234|457236|457238|457240|457245|457248|457249|457255|457258|457272|457273|457277|457282|457286|457294|457296|457298|457300|457302|457305|457307|457310|457312|457316|457323|457324|457328|457336|457337|457347|457348|457351|457359|457362|457363|457366|457371|457385|457390|457391|457393|457397|457399|457401|457405|457406|457411|457422|457424|457426|457428|457817|457837|457838|457839|457843|457847|457849|457851|457856|457857|457860|457862|457865|457866|457867|457869|457870|457872|457876|457878|457880|457882|457883|457884|457886|457887|457888|457894|457896|457900|457901|457902|457904|457907|457908|457912|457914|457919|457920|457921|457922|457924|457925|457927|457928|457931|457932|457935|457936|457937|457938|457946|457949|457956|457958|457960|457962|457963|457967|457972|457977|457980|457981|457982|457983|457985|457988|457990|457996|457998|457999|458001|458002|458004|458006|458007|458008|458013|458014|458017|458020|458022|458023|458025|458028|458030|458032|458033|458034|458039|458040|458041|458043|458046|458047|458051|458054|458062|458064|458067|458068|458071|458072|458077|458079|458088|458241|458243|458248|458252|458256|458266|458268|458268|458272|458273|458277|458279|458283|458286|458292|458296|458298|458301|458302|458305|458310|458311|458316|458318|458323|458327|458334|458337|458341|458343|458346|458347|458350|458352|458355|458363|458368|458370|458376|458379|458383|458386|486449|488410|488423|488425|488427|488429|488430|488437|488440|488453|488464|488466|488469|488474|488476|488477|488479|488488|488496|488505|488507|488509|488512|488519|488520|488538|488539|488562|488589|488617|488790|488793|488811|488922|489011|489080|489083|489246|489276|489281|489377|489481|489688|490087|490389|490392|490417|490506|490642|490644|490646|490714|491028|491054|491060|491066|491108|491112|491126|491242|491388|491529|491648|491734|491814|491816|491970|491980|492104|492115|492230|492337|492338|492462|492609|492868|492901|493049|493050|493061|493063|493156|493220|493225|493253|493351|493496|493504|493568|493569|493573|493622|493662|493665|493825|493873|493874|493982|494015|494082|494092|494093|501926|501929|501931|501936|501946|501964|502236|502239|502244|502255|502262|502276|502278|502299|502313|502355|502361|502603|502604|502619|502623|502626|502632|502637|511746|511748|511749|523032|523042|523045|523051|523054|523057|523059|523063|523086|523088|523095|523101|523103|523109|523118|523126|523132|523133|523134|523138|523139|523142|523148|523151|523156|523158|523171|523173|523174|523176|523179|523182|523202|523205|523207|523208|523211|523214|523215|523311|523321|523323|523336|523339|523341|523345|523348|523353|523355|523358|523361|523371|523375|523380|523387|523388|523390|523392|523399|523401|523405|523412|523413|523415|523417|523420|523423|523432|523436|523441|523442|523448|523451|523461|523466|523467|523474|523481|523531|523537|523542|523544|523547|523549|523552|523553|523555|523556|523563|523570|523572|523576|523584|523586|523594|523596|523601|523603|523606|523608|523610|523616|523618|523622|523624|523636|523639|523644|523647|523652|523654|523655|523656|523658|523662|523663|523665|523667|523669|523671|523675|523676|523678|523683|523685|523689|523690|523692|523693|523694|523695|523698|523700|523702|523706|523714|523716|523718|523726|523730|523735|536744|539009|561957|561960|561963|561965|561974|561980|561981|561993|561996|562000|562002|562011|562014|562018|562020|562021|562026|562029|562032|562034|562036|562038|562040|562047|562050|562054|562057|562059|562380|562396|562397|562400|562401|562411|562423|562425|562432|562433|562436|562437|562443|562448|562459|562475|562476|562479|562487|562496|562497|562500|562501|562504|562511|564676|564679|564681|564683|564690|564699|564701|564704|564708|564710|564718|564719|564722|564724|564726|564731|564732|564736|564741|564751|564759|564765|564767|564771|564774|564776|564778|564780|564785|564788|564790|564794|564796|564800|564802|564809|567397|567399|567400|567401|567406|567409|567414|567418|567419|567420|567421|567423|567427|567428|567430|567434|567443|567448|567466|567471|567484|567487|567493|567494|567495|567496|567497|567502|577038|577042|577048|577050|583214|583818|583832|583842|583852|583863|583873|583888|583928|583989|584023|584100|584299|584656|584658|584660|585030|585144|585680|585726|585814|585970|586401|586783|586809|586971|587049|587287|587469|588315|588317|588432|588452|588464|588491|588509|588536|588609|588612|588626|588632|588860|588861|588863|589251|589263|589547|589607|589776|612808|623147|636629|636630|636631|636632|636633|636634|636635|636636|636637|636638|636639|636640|636641|636642|636643|636644|636645|636646|636647|636648|636649|636650|636651|636652|636653|636654|636655|636656|636657|636658|636659|636660|636661|636662|636663|636664|636665|636666|636667|636668|636669|636670|636671|636672|636673|636674|636675|636676|636677|636678|636679|636680|636681|636682|636683|636684|636685|636686|636687|636688|636689|636690|636691|636692|636693|636694|636695|636696|636697|636698|636699|636700|636701|636702|636703|636704|636705|636706|636707|636708|636709|636710|636711|636712|636713|636714|636715|636716|636717|636718|636719|636720|636721|636722|636723|636724|636725|636726|636727|636728|636729|636730|636731|636732|636733|636734|636735|636736|636737|636738|636739|636740|636741|636742|636743|636744|636745|636746|636747|636748|636749|636750|636751|636752|636753|636754|636755|636756|636757|636758|636759|636760|636761|636762|636763|636764|636765|636766|636767|636768|636769|636770|636771|636772|636773|636774|636775|636776|636777|636778|636779|636780|636781|651751|651754|651758|651760|651770|651773|655836|655845|655849|662710|687201|692371|692372|692373|692375|692376|692378|692379|692380|692381|692385|692386|692387|692389|692391|692392|692393|692394|692395|692396|692397|692402|692403|692404|692406|692409|692411|692412|692413|692414|692418|692419|692420|692423|692424|692426|692430|692431|692432|692433|692434|692435|692436|692438|692440|695384|700445|700447|700450|700451|700455|700457|700458|700461|700463|700464|700467|711370|711371|711372|711374|711376|711381|711382|711385|711390|711391|711392|722917|722921|722922|736504|736505|736506|736507|736508|736510|736512|736513|736514|736521|736523|750972|750975|750976|750978|750979|750980|750985|750987|750989|750992|750995|766578|766583|766584|766586|766587|766599|766623|766628|775210|777720|783022|783024|783026|783029|783031|783035|793265|793267|793268|796133|796137|834168|834169|834170|834171|834172|834173|834174|834175|834176|834177|834178|834179|834180|834181|834182|834183|834184|834185|834186|834187|834188|834189|834190|834191|834192|834193|834194|834195|834196|834197|834198|834199|834200|834201|834202|834203|834204|834205|834206|834207|834208|834209|834210|834211|834212|834213|834214|834215|834216|834217|834218|834219|834220|834221|834222|834223|834224|834225|834226|834227|834228|834229|834230|834231|834232|834233|834234|834235|834236|834237|834238|834239|834240|834241|834242|834243|834244|834245|834246|834247|834248|834249|834250|834251|834252|834253|834254|834255|834256|834257|834258|834259|834260|834261|834262|834263|834264|834265|834266|834267|834268|834269|834270|834271|834272|834273|834274|834275|834276|834277|834278|834279|834280|834281|834282|834283|834284|834285|834286|834287|834288|834289|834290|834291|834292|834293|852118|925028|925029|925030|925031|925032|925033|925034|925035|925036|925037|925038|925039|925040|925041|925042|925043|925044|925045|925046|925047|925048|925049|925050|925051|925052|925053|925054|925055|925056|925057|925058|925059|925060|925061|925062|925063|925064|925065|925066|925067|925068|934109|934110|934111|934112|934113|934114|934115|934116|934117|934118|934119|934120|934121|934122|934123|934124|934125|934126|934127|934128|934129|934130|934131|934132|934133|934134|934135|934136|934137|934138|934139|934140|934141|934142|934143|934144|934145|934146|934147|934148|934149|934150|934151|934152|934153|934154|934155|934156|934157|934158|934159|934160|934161|940891|945859|945860|945861|945862|945863|945864|945865|945866|945867|945868|945869|945870|945871|945872|945873|945874|945875|945876|945877|945878|945879|945880|945881|945882|945883|945884|945885|945886|945887|945888|945889|945890|945891|945892|945893|945894|945895|945896|945897|945898|945899|945900|945901|945902|945903|945904|945905|945906|945907|945908|945909|945910|945911|945912|955305|955306|955307|955308|955309|955310|955311|955312|955313|955314|955315|955316|955317|955318|955319|955320|955321|955322|955323|955324|955325|955326|955327|955328|955329|955330|955331|955332|955333|955334|955335|955336|955337|955338|955339|955340|959878", + "upstreamId": "23301|81688|88117|98921|98922|98923|98924|98926|98928|98933|98934|98935|98936|98938|98939|98941|98943|98944|98946|98949|98950|98952|98955|98960|98961|98962|98965|98966|98967|98968|98969|98970|98972|98973|98976|98977|98981|98982|98983|98984|98986|98988|98992|98993|98995|98997|98998|135364|135365|135366|135367|135368|135370|135371|135372|135373|135375|135376|135377|135378|135379|135381|135382|135383|135385|135386|135387|135388|135389|135390|135391|135392|135394|135396|135397|135398|135399|135400|135401|135402|135404|135405|135406|135407|135408|135409|135409|176989|177121|177252|177383|177959|177961|177962|177965|177966|191156|191157|191638|192163|192815|192816|192817|192962|192963|193017|193018|193076|193091|193265|193266|193267|193309|193435|193772|193823|193877|193878|193881|193882|193883|193893|193894|193895|193896|193897|193899|193902|193903|193904|193905|193906|193907|193908|193909|193910|193911|193912|193913|193914|193915|193917|193918|193919|193920|193921|193922|193923|193925|193926|193928|193969|193971|193973|193974|193975|193977|193978|193980|193983|193984|193985|193986|193987|193989|193990|193994|193998|194000|194001|194002|194003|194004|194005|194008|194009|194010|194012|194013|194014|194015|194019|194020|195245|195795|207532|207533|231311|231370|231429|231430|253066|253067|265349|265461|265465|265501|265502|265508|265512|265516|265517|265518|265519|265524|265531|265554|265593|265628|265629|265639|265718|265827|265831|265905|265922|265930|265931|265932|265938|266070|266073|266086|266092|266179|266185|266228|266229|266248|266334|266335|266357|266370|266405|266422|266425|266440|266481|266507|266522|266524|266534|266545|266546|266550|266554|266563|266629|266630|266642|266656|266658|266659|266687|266692|266703|266723|266730|266736|266746|266756|266775|266779|266819|266876|266961|266991|267017|267018|267058|267063|267069|267090|267102|267121|267126|267133|267262|267271|267292|267309|267337|267338|267339|267439|267460|267461|267478|267481|267484|267491|267513|267523|267541|267568|267574|267631|267638|267641|267671|267700|267701|267707|267786|267867|267875|267877|267881|267882|267885|267899|267912|267924|267932|267981|268004|268114|268184|268195|268205|268206|268207|268212|268338|268339|268485|268486|268520|268521|268624|268704|268731|268747|268802|268812|268818|268819|268820|268835|268837|269027|269036|269247|269248|269316|269468|269573|269579|269645|269915|269970|269980|270225|270253|270274|270275|270360|270506|270550|270555|270825|270961|271365|271460|271624|271858|271947|272140|272170|272415|273236|273701|274532|274542|274576|274586|274590|274687|274701|274703|274704|274872|274876|274884|274886|274888|274895|274900|274934|274949|274965|274966|275304|361453|369376|369377|369380|369386|369388|369394|369396|369411|369412|369424|369428|369734|369742|369758|369763|369767|369769|369773|369791|369802|369809|369814|369825|369839|369841|369846|370091|370093|370095|370097|370102|370108|370111|370122|370128|370132|370138|370139|370149|370155|371589|371592|371593|371594|371618|371629|371631|371646|371656|371659|371661|371665|371667|371679|371681|390580|404777|407323|407324|407325|407326|407327|407328|407332|407334|407335|415126|421663|421664|421665|425783|425784|425786|428802|428803|428804|428805|428806|428807|428808|428810|434623|438403|438405|441183|441184|441186|441188|441189|441190|441191|441193|441197|441199|441200|441201|441203|441204|441205|441206|441210|441211|441222|441223|441224|444223|444224|444226|444228|444230|444235|444240|444241|444245|444247|444250|444251|457234|457236|457238|457240|457245|457248|457249|457255|457258|457272|457273|457277|457282|457286|457294|457296|457298|457300|457302|457305|457307|457310|457312|457316|457323|457324|457328|457336|457337|457347|457348|457351|457359|457362|457363|457366|457371|457385|457390|457391|457393|457397|457399|457401|457405|457406|457411|457422|457424|457426|457428|457817|457837|457838|457839|457843|457847|457849|457851|457856|457857|457860|457862|457865|457866|457867|457869|457870|457872|457876|457878|457880|457882|457883|457884|457886|457887|457888|457894|457896|457900|457901|457902|457904|457907|457908|457912|457914|457919|457920|457921|457922|457924|457925|457927|457928|457931|457932|457935|457936|457937|457938|457946|457949|457956|457958|457960|457962|457963|457967|457972|457977|457980|457981|457982|457983|457985|457988|457990|457996|457998|457999|458001|458002|458004|458006|458007|458008|458013|458014|458017|458020|458022|458023|458025|458028|458030|458032|458033|458034|458039|458040|458041|458043|458046|458047|458051|458054|458062|458064|458067|458068|458071|458072|458077|458079|458088|458241|458243|458248|458252|458256|458266|458268|458268|458272|458273|458277|458279|458283|458286|458292|458296|458298|458301|458302|458305|458310|458311|458316|458318|458323|458327|458334|458337|458341|458343|458346|458347|458350|458352|458355|458363|458368|458370|458376|458379|458383|458386|486449|488410|488423|488425|488427|488429|488430|488437|488440|488453|488464|488466|488469|488474|488476|488477|488479|488488|488496|488505|488507|488509|488512|488519|488520|488538|488539|488562|488589|488617|488790|488793|488811|488922|489011|489080|489083|489246|489276|489281|489377|489481|489688|490087|490389|490392|490417|490506|490642|490644|490646|490714|491028|491054|491060|491066|491108|491112|491126|491242|491388|491529|491648|491734|491814|491816|491970|491980|492104|492115|492230|492337|492338|492462|492609|492868|492901|493049|493050|493061|493063|493156|493220|493225|493253|493351|493496|493504|493568|493569|493573|493622|493662|493665|493825|493873|493874|493982|494015|494082|494092|494093|501926|501929|501931|501936|501946|501964|502236|502239|502244|502255|502262|502276|502278|502299|502313|502355|502361|502603|502604|502619|502623|502626|502632|502637|511746|511748|511749|523032|523042|523045|523051|523054|523057|523059|523063|523086|523088|523095|523101|523103|523109|523118|523126|523132|523133|523134|523138|523139|523142|523148|523151|523156|523158|523171|523173|523174|523176|523179|523182|523202|523205|523207|523208|523211|523214|523215|523311|523321|523323|523336|523339|523341|523345|523348|523353|523355|523358|523361|523371|523375|523380|523387|523388|523390|523392|523399|523401|523405|523412|523413|523415|523417|523420|523423|523432|523436|523441|523442|523448|523451|523461|523466|523467|523474|523481|523531|523537|523542|523544|523547|523549|523552|523553|523555|523556|523563|523570|523572|523576|523584|523586|523594|523596|523601|523603|523606|523608|523610|523616|523618|523622|523624|523636|523639|523644|523647|523652|523654|523655|523656|523658|523662|523663|523665|523667|523669|523671|523675|523676|523678|523683|523685|523689|523690|523692|523693|523694|523695|523698|523700|523702|523706|523714|523716|523718|523726|523730|523735|536744|539009|561957|561960|561963|561965|561974|561980|561981|561993|561996|562000|562002|562011|562014|562018|562020|562021|562026|562029|562032|562034|562036|562038|562040|562047|562050|562054|562057|562059|562380|562396|562397|562400|562401|562411|562423|562425|562432|562433|562436|562437|562443|562448|562459|562475|562476|562479|562487|562496|562497|562500|562501|562504|562511|564676|564679|564681|564683|564690|564699|564701|564704|564708|564710|564718|564719|564722|564724|564726|564731|564732|564736|564741|564751|564759|564765|564767|564771|564774|564776|564778|564780|564785|564788|564790|564794|564796|564800|564802|564809|567397|567399|567400|567401|567406|567409|567414|567418|567419|567420|567421|567423|567427|567428|567430|567434|567443|567448|567466|567471|567484|567487|567493|567494|567495|567496|567497|567502|577038|577042|577048|577050|583214|583818|583832|583842|583852|583863|583873|583888|583928|583989|584023|584100|584299|584656|584658|584660|585030|585144|585680|585726|585814|585970|586401|586783|586809|586971|587049|587287|587469|588315|588317|588432|588452|588464|588491|588509|588536|588609|588612|588626|588632|588860|588861|588863|589251|589263|589547|589607|589776|612808|623147|636629|636630|636631|636632|636633|636634|636635|636636|636637|636638|636639|636640|636641|636642|636643|636644|636645|636646|636647|636648|636649|636650|636651|636652|636653|636654|636655|636656|636657|636658|636659|636660|636661|636662|636663|636664|636665|636666|636667|636668|636669|636670|636671|636672|636673|636674|636675|636676|636677|636678|636679|636680|636681|636682|636683|636684|636685|636686|636687|636688|636689|636690|636691|636692|636693|636694|636695|636696|636697|636698|636699|636700|636701|636702|636703|636704|636705|636706|636707|636708|636709|636710|636711|636712|636713|636714|636715|636716|636717|636718|636719|636720|636721|636722|636723|636724|636725|636726|636727|636728|636729|636730|636731|636732|636733|636734|636735|636736|636737|636738|636739|636740|636741|636742|636743|636744|636745|636746|636747|636748|636749|636750|636751|636752|636753|636754|636755|636756|636757|636758|636759|636760|636761|636762|636763|636764|636765|636766|636767|636768|636769|636770|636771|636772|636773|636774|636775|636776|636777|636778|636779|636780|636781|651751|651754|651758|651760|651770|651773|655836|655845|655849|662710|687201|692371|692372|692373|692375|692376|692378|692379|692380|692381|692385|692386|692387|692389|692391|692392|692393|692394|692395|692396|692397|692402|692403|692404|692406|692409|692411|692412|692413|692414|692418|692419|692420|692423|692424|692426|692430|692431|692432|692433|692434|692435|692436|692438|692440|695384|700445|700447|700450|700451|700455|700457|700458|700461|700463|700464|700467|711370|711371|711372|711374|711376|711381|711382|711385|711390|711391|711392|722917|722921|722922|736504|736505|736506|736507|736508|736510|736512|736513|736514|736521|736523|750972|750975|750976|750978|750979|750980|750985|750987|750989|750992|750995|766578|766583|766584|766586|766587|766599|766623|766628|775210|777720|783022|783024|783026|783029|783031|783035|793265|793267|793268|796133|796137|834168|834169|834170|834171|834172|834173|834174|834175|834176|834177|834178|834179|834180|834181|834182|834183|834184|834185|834186|834187|834188|834189|834190|834191|834192|834193|834194|834195|834196|834197|834198|834199|834200|834201|834202|834203|834204|834205|834206|834207|834208|834209|834210|834211|834212|834213|834214|834215|834216|834217|834218|834219|834220|834221|834222|834223|834224|834225|834226|834227|834228|834229|834230|834231|834232|834233|834234|834235|834236|834237|834238|834239|834240|834241|834242|834243|834244|834245|834246|834247|834248|834249|834250|834251|834252|834253|834254|834255|834256|834257|834258|834259|834260|834261|834262|834263|834264|834265|834266|834267|834268|834269|834270|834271|834272|834273|834274|834275|834276|834277|834278|834279|834280|834281|834282|834283|834284|834285|834286|834287|834288|834289|834290|834291|834292|834293|852118|925028|925029|925030|925031|925032|925033|925034|925035|925036|925037|925038|925039|925040|925041|925042|925043|925044|925045|925046|925047|925048|925049|925050|925051|925052|925053|925054|925055|925056|925057|925058|925059|925060|925061|925062|925063|925064|925065|925066|925067|925068|934109|934110|934111|934112|934113|934114|934115|934116|934117|934118|934119|934120|934121|934122|934123|934124|934125|934126|934127|934128|934129|934130|934131|934132|934133|934134|934135|934136|934137|934138|934139|934140|934141|934142|934143|934144|934145|934146|934147|934148|934149|934150|934151|934152|934153|934154|934155|934156|934157|934158|934159|934160|934161|940891|945859|945860|945861|945862|945863|945864|945865|945866|945867|945868|945869|945870|945871|945872|945873|945874|945875|945876|945877|945878|945879|945880|945881|945882|945883|945884|945885|945886|945887|945888|945889|945890|945891|945892|945893|945894|945895|945896|945897|945898|945899|945900|945901|945902|945903|945904|945905|945906|945907|945908|945909|945910|945911|945912|955305|955306|955307|955308|955309|955310|955311|955312|955313|955314|955315|955316|955317|955318|955319|955320|955321|955322|955323|955324|955325|955326|955327|955328|955329|955330|955331|955332|955333|955334|955335|955336|955337|955338|955339|955340|959878", "text": "Epidermolysis bullosa simplex, Ogna type" }, { - "baseId": "23302|23303|23304|23305|81688|88117|98921|98922|98923|98924|98926|98928|98933|98934|98935|98936|98938|98939|98941|98943|98944|98946|98949|98950|98952|98955|98960|98961|98962|98965|98966|98967|98968|98969|98970|98972|98973|98976|98977|98981|98982|98983|98984|98986|98988|98992|98993|98995|98997|98998|135364|135365|135366|135367|135368|135370|135371|135372|135373|135375|135376|135377|135378|135379|135381|135382|135383|135385|135386|135387|135388|135389|135390|135391|135392|135394|135396|135397|135398|135399|135400|135401|135402|135404|135405|135406|135407|135408|135409|176989|177121|177252|177383|177959|177961|177962|177965|177966|191156|191157|191638|192163|192815|192816|192817|192962|192963|193017|193018|193076|193091|193265|193266|193267|193309|193435|193772|193823|193877|193878|193881|193882|193883|193893|193894|193895|193896|193897|193899|193902|193903|193904|193905|193906|193907|193908|193909|193910|193911|193912|193913|193914|193915|193917|193918|193919|193920|193921|193922|193923|193925|193926|193928|193969|193971|193973|193974|193975|193977|193978|193980|193983|193984|193985|193986|193987|193989|193990|193994|193998|194000|194001|194002|194003|194004|194005|194008|194009|194010|194012|194013|194014|194015|194019|194020|195245|195795|207532|207533|231311|231370|231429|231430|253066|253067|265349|265461|265465|265501|265502|265508|265512|265516|265517|265518|265519|265524|265531|265554|265593|265628|265629|265639|265718|265827|265831|265905|265922|265930|265931|265932|265938|266070|266073|266086|266092|266179|266185|266228|266229|266248|266334|266335|266357|266370|266405|266422|266425|266440|266481|266507|266522|266524|266534|266545|266546|266550|266554|266563|266629|266630|266642|266656|266658|266659|266687|266692|266703|266723|266730|266736|266746|266756|266775|266779|266819|266876|266961|266991|267017|267018|267058|267063|267069|267090|267102|267121|267126|267133|267262|267271|267292|267309|267337|267338|267339|267439|267460|267461|267478|267481|267484|267491|267513|267523|267541|267568|267574|267631|267638|267641|267671|267700|267701|267707|267786|267867|267875|267877|267881|267882|267885|267899|267912|267924|267932|267981|268004|268114|268184|268195|268205|268206|268207|268212|268338|268339|268485|268486|268520|268521|268624|268704|268731|268747|268802|268812|268818|268819|268820|268835|268837|269027|269036|269247|269248|269316|269468|269573|269579|269645|269915|269970|269980|270225|270253|270274|270275|270360|270506|270550|270555|270825|270961|271365|271460|271624|271858|271947|272140|272170|272415|273236|273701|274532|274542|274576|274586|274590|274687|274701|274703|274704|274872|274876|274884|274886|274888|274895|274900|274934|274949|274965|274966|275304|361453|369376|369377|369380|369386|369388|369394|369396|369411|369412|369424|369428|369734|369742|369758|369763|369767|369769|369773|369791|369802|369809|369814|369825|369839|369841|369846|370091|370093|370095|370097|370102|370108|370111|370122|370128|370132|370138|370139|370149|370155|371589|371592|371593|371594|371618|371629|371631|371646|371656|371659|371661|371665|371667|371679|371681|390580|404777|407323|407324|407325|407326|407327|407328|407332|407334|407335|415126|421663|421664|421665|425783|425784|425786|428802|428803|428804|428805|428806|428807|428808|428810|434623|438403|438405|441183|441184|441186|441188|441189|441190|441191|441193|441197|441199|441200|441201|441203|441204|441205|441206|441210|441211|441222|441223|441224|444223|444224|444226|444228|444230|444235|444240|444241|444245|444247|444250|444251|457234|457236|457238|457240|457245|457248|457249|457255|457258|457272|457273|457277|457282|457286|457294|457296|457298|457300|457302|457305|457307|457310|457312|457316|457323|457324|457328|457336|457337|457347|457348|457351|457359|457362|457363|457366|457371|457385|457390|457391|457393|457397|457399|457401|457405|457406|457411|457422|457424|457426|457428|457817|457837|457838|457839|457843|457847|457849|457851|457856|457857|457860|457862|457865|457866|457867|457869|457870|457872|457876|457878|457880|457882|457883|457884|457886|457887|457888|457894|457896|457900|457901|457902|457904|457907|457908|457912|457914|457919|457920|457921|457922|457924|457925|457927|457928|457931|457932|457935|457936|457937|457938|457946|457949|457956|457958|457960|457962|457963|457967|457972|457977|457980|457981|457982|457983|457985|457988|457990|457996|457998|457999|458001|458002|458004|458006|458007|458008|458013|458014|458017|458020|458022|458023|458025|458028|458030|458032|458033|458034|458039|458040|458041|458043|458046|458047|458051|458054|458062|458064|458067|458068|458071|458072|458077|458079|458088|458241|458243|458248|458252|458256|458266|458268|458272|458273|458277|458279|458283|458286|458292|458296|458298|458301|458302|458305|458310|458311|458316|458318|458323|458327|458334|458337|458341|458343|458346|458347|458350|458352|458355|458363|458368|458370|458376|458379|458383|458386|486449|488410|488423|488425|488427|488429|488430|488437|488440|488453|488464|488466|488469|488474|488476|488477|488479|488488|488496|488505|488507|488509|488512|488519|488520|488538|488539|488562|488589|488617|488790|488793|488811|488922|489011|489080|489083|489246|489276|489281|489377|489481|489688|490087|490389|490392|490417|490506|490642|490644|490646|490714|491028|491054|491060|491066|491108|491112|491126|491242|491388|491529|491648|491734|491814|491816|491970|491980|492104|492115|492230|492337|492338|492462|492609|492868|492901|493049|493050|493061|493063|493156|493220|493225|493253|493351|493496|493504|493568|493569|493573|493622|493662|493665|493825|493873|493874|493982|494015|494082|494092|494093|501926|501929|501931|501936|501946|501964|502236|502239|502244|502255|502262|502276|502278|502299|502313|502355|502361|502603|502604|502619|502623|502626|502632|502637|511746|511748|511749|523032|523042|523045|523051|523054|523057|523059|523063|523086|523088|523095|523101|523103|523109|523118|523126|523132|523133|523134|523138|523139|523142|523148|523151|523156|523158|523171|523173|523174|523176|523179|523182|523202|523205|523207|523208|523211|523214|523215|523311|523321|523323|523336|523339|523341|523345|523348|523353|523355|523358|523361|523371|523375|523380|523387|523388|523390|523392|523399|523401|523405|523412|523413|523415|523417|523420|523423|523432|523436|523441|523442|523448|523451|523461|523466|523467|523474|523481|523531|523537|523542|523544|523547|523549|523552|523553|523555|523556|523563|523570|523572|523576|523584|523586|523594|523596|523601|523603|523606|523608|523610|523616|523618|523622|523624|523636|523639|523644|523647|523652|523654|523655|523656|523658|523662|523663|523665|523667|523669|523671|523675|523676|523678|523683|523685|523689|523690|523692|523693|523694|523695|523698|523700|523702|523706|523714|523716|523718|523726|523730|523735|536744|561957|561960|561963|561965|561974|561980|561981|561993|561996|562000|562002|562011|562014|562018|562020|562021|562026|562029|562032|562034|562036|562038|562040|562047|562050|562054|562057|562059|562380|562396|562397|562400|562401|562411|562423|562425|562432|562433|562436|562437|562443|562448|562459|562475|562476|562479|562487|562496|562497|562500|562501|562504|562511|564676|564679|564681|564683|564690|564699|564701|564704|564708|564710|564718|564719|564722|564724|564726|564731|564732|564736|564741|564751|564759|564765|564767|564771|564774|564776|564778|564780|564785|564788|564790|564794|564796|564800|564802|564809|567397|567399|567400|567401|567406|567409|567414|567418|567419|567420|567421|567423|567427|567428|567430|567434|567443|567448|567466|567471|567484|567487|567493|567494|567495|567496|567497|567502|577038|577042|577048|577050|583214|583818|583832|583842|583852|583863|583873|583888|583928|583989|584023|584100|584299|584656|584658|584660|585030|585144|585680|585726|585814|585970|586401|586783|586809|586971|587049|587287|587469|588315|588317|588432|588452|588464|588491|588509|588536|588609|588612|588626|588632|588860|588861|588863|589251|589263|589547|589607|589776|612808|623147|636629|636630|636631|636632|636633|636634|636635|636636|636637|636638|636639|636640|636641|636642|636643|636644|636645|636646|636647|636648|636649|636650|636651|636652|636653|636654|636655|636656|636657|636658|636659|636660|636661|636662|636663|636664|636665|636666|636667|636668|636669|636670|636671|636672|636673|636674|636675|636676|636677|636678|636679|636680|636681|636682|636683|636684|636685|636686|636687|636688|636689|636690|636691|636692|636693|636694|636695|636696|636697|636698|636699|636700|636701|636702|636703|636704|636705|636706|636707|636708|636709|636710|636711|636712|636713|636714|636715|636716|636717|636718|636719|636720|636721|636722|636723|636724|636725|636726|636727|636728|636729|636730|636731|636732|636733|636734|636735|636736|636737|636738|636739|636740|636741|636742|636743|636744|636745|636746|636747|636748|636749|636750|636751|636752|636753|636754|636755|636756|636757|636758|636759|636760|636761|636762|636763|636764|636765|636766|636767|636768|636769|636770|636771|636772|636773|636774|636775|636776|636777|636778|636779|636780|636781|651751|651754|651758|651760|651770|651773|655836|655845|655849|662710|687201|692371|692372|692373|692375|692376|692378|692379|692380|692381|692385|692386|692387|692389|692391|692392|692393|692394|692395|692396|692397|692402|692403|692404|692406|692409|692411|692412|692413|692414|692418|692419|692420|692423|692424|692426|692430|692431|692432|692433|692434|692435|692436|692438|692440|695384|700445|700447|700450|700451|700455|700457|700458|700461|700463|700464|700467|711370|711371|711372|711374|711376|711381|711382|711385|711390|711391|711392|722917|722921|722922|736504|736505|736506|736507|736508|736510|736512|736513|736514|736521|736523|750972|750975|750976|750978|750979|750980|750985|750987|750989|750992|750995|766578|766583|766584|766586|766587|766599|766623|766628|775210|777720|783022|783024|783026|783029|783031|783035|793265|793267|793268|796133|796137|834168|834169|834170|834171|834172|834173|834174|834175|834176|834177|834178|834179|834180|834181|834182|834183|834184|834185|834186|834187|834188|834189|834190|834191|834192|834193|834194|834195|834196|834197|834198|834199|834200|834201|834202|834203|834204|834205|834206|834207|834208|834209|834210|834211|834212|834213|834214|834215|834216|834217|834218|834219|834220|834221|834222|834223|834224|834225|834226|834227|834228|834229|834230|834231|834232|834233|834234|834235|834236|834237|834238|834239|834240|834241|834242|834243|834244|834245|834246|834247|834248|834249|834250|834251|834252|834253|834254|834255|834256|834257|834258|834259|834260|834261|834262|834263|834264|834265|834266|834267|834268|834269|834270|834271|834272|834273|834274|834275|834276|834277|834278|834279|834280|834281|834282|834283|834284|834285|834286|834287|834288|834289|834290|834291|834292|834293|852118|925028|925029|925030|925031|925032|925033|925034|925035|925036|925037|925038|925039|925040|925041|925042|925043|925044|925045|925046|925047|925048|925049|925050|925051|925052|925053|925054|925055|925056|925057|925058|925059|925060|925061|925062|925063|925064|925065|925066|925067|925068|934109|934110|934111|934112|934113|934114|934115|934116|934117|934118|934119|934120|934121|934122|934123|934124|934125|934126|934127|934128|934129|934130|934131|934132|934133|934134|934135|934136|934137|934138|934139|934140|934141|934142|934143|934144|934145|934146|934147|934148|934149|934150|934151|934152|934153|934154|934155|934156|934157|934158|934159|934160|934161|940891|945859|945860|945861|945862|945863|945864|945865|945866|945867|945868|945869|945870|945871|945872|945873|945874|945875|945876|945877|945878|945879|945880|945881|945882|945883|945884|945885|945886|945887|945888|945889|945890|945891|945892|945893|945894|945895|945896|945897|945898|945899|945900|945901|945902|945903|945904|945905|945906|945907|945908|945909|945910|945911|945912|955305|955306|955307|955308|955309|955310|955311|955312|955313|955314|955315|955316|955317|955318|955319|955320|955321|955322|955323|955324|955325|955326|955327|955328|955329|955330|955331|955332|955333|955334|955335|955336|955337|955338|955339|955340|959878", + "upstreamId": "23302|23303|23304|23305|81688|88117|98921|98922|98923|98924|98926|98928|98933|98934|98935|98936|98938|98939|98941|98943|98944|98946|98949|98950|98952|98955|98960|98961|98962|98965|98966|98967|98968|98969|98970|98972|98973|98976|98977|98981|98982|98983|98984|98986|98988|98992|98993|98995|98997|98998|135364|135365|135366|135367|135368|135370|135371|135372|135373|135375|135376|135377|135378|135379|135381|135382|135383|135385|135386|135387|135388|135389|135390|135391|135392|135394|135396|135397|135398|135399|135400|135401|135402|135404|135405|135406|135407|135408|135409|176989|177121|177252|177383|177959|177961|177962|177965|177966|191156|191157|191638|192163|192815|192816|192817|192962|192963|193017|193018|193076|193091|193265|193266|193267|193309|193435|193772|193823|193877|193878|193881|193882|193883|193893|193894|193895|193896|193897|193899|193902|193903|193904|193905|193906|193907|193908|193909|193910|193911|193912|193913|193914|193915|193917|193918|193919|193920|193921|193922|193923|193925|193926|193928|193969|193971|193973|193974|193975|193977|193978|193980|193983|193984|193985|193986|193987|193989|193990|193994|193998|194000|194001|194002|194003|194004|194005|194008|194009|194010|194012|194013|194014|194015|194019|194020|195245|195795|207532|207533|231311|231370|231429|231430|253066|253067|265349|265461|265465|265501|265502|265508|265512|265516|265517|265518|265519|265524|265531|265554|265593|265628|265629|265639|265718|265827|265831|265905|265922|265930|265931|265932|265938|266070|266073|266086|266092|266179|266185|266228|266229|266248|266334|266335|266357|266370|266405|266422|266425|266440|266481|266507|266522|266524|266534|266545|266546|266550|266554|266563|266629|266630|266642|266656|266658|266659|266687|266692|266703|266723|266730|266736|266746|266756|266775|266779|266819|266876|266961|266991|267017|267018|267058|267063|267069|267090|267102|267121|267126|267133|267262|267271|267292|267309|267337|267338|267339|267439|267460|267461|267478|267481|267484|267491|267513|267523|267541|267568|267574|267631|267638|267641|267671|267700|267701|267707|267786|267867|267875|267877|267881|267882|267885|267899|267912|267924|267932|267981|268004|268114|268184|268195|268205|268206|268207|268212|268338|268339|268485|268486|268520|268521|268624|268704|268731|268747|268802|268812|268818|268819|268820|268835|268837|269027|269036|269247|269248|269316|269468|269573|269579|269645|269915|269970|269980|270225|270253|270274|270275|270360|270506|270550|270555|270825|270961|271365|271460|271624|271858|271947|272140|272170|272415|273236|273701|274532|274542|274576|274586|274590|274687|274701|274703|274704|274872|274876|274884|274886|274888|274895|274900|274934|274949|274965|274966|275304|361453|369376|369377|369380|369386|369388|369394|369396|369411|369412|369424|369428|369734|369742|369758|369763|369767|369769|369773|369791|369802|369809|369814|369825|369839|369841|369846|370091|370093|370095|370097|370102|370108|370111|370122|370128|370132|370138|370139|370149|370155|371589|371592|371593|371594|371618|371629|371631|371646|371656|371659|371661|371665|371667|371679|371681|390580|404777|407323|407324|407325|407326|407327|407328|407332|407334|407335|415126|421663|421664|421665|425783|425784|425786|428802|428803|428804|428805|428806|428807|428808|428810|434623|438403|438405|441183|441184|441186|441188|441189|441190|441191|441193|441197|441199|441200|441201|441203|441204|441205|441206|441210|441211|441222|441223|441224|444223|444224|444226|444228|444230|444235|444240|444241|444245|444247|444250|444251|457234|457236|457238|457240|457245|457248|457249|457255|457258|457272|457273|457277|457282|457286|457294|457296|457298|457300|457302|457305|457307|457310|457312|457316|457323|457324|457328|457336|457337|457347|457348|457351|457359|457362|457363|457366|457371|457385|457390|457391|457393|457397|457399|457401|457405|457406|457411|457422|457424|457426|457428|457817|457837|457838|457839|457843|457847|457849|457851|457856|457857|457860|457862|457865|457866|457867|457869|457870|457872|457876|457878|457880|457882|457883|457884|457886|457887|457888|457894|457896|457900|457901|457902|457904|457907|457908|457912|457914|457919|457920|457921|457922|457924|457925|457927|457928|457931|457932|457935|457936|457937|457938|457946|457949|457956|457958|457960|457962|457963|457967|457972|457977|457980|457981|457982|457983|457985|457988|457990|457996|457998|457999|458001|458002|458004|458006|458007|458008|458013|458014|458017|458020|458022|458023|458025|458028|458030|458032|458033|458034|458039|458040|458041|458043|458046|458047|458051|458054|458062|458064|458067|458068|458071|458072|458077|458079|458088|458241|458243|458248|458252|458256|458266|458268|458272|458273|458277|458279|458283|458286|458292|458296|458298|458301|458302|458305|458310|458311|458316|458318|458323|458327|458334|458337|458341|458343|458346|458347|458350|458352|458355|458363|458368|458370|458376|458379|458383|458386|486449|488410|488423|488425|488427|488429|488430|488437|488440|488453|488464|488466|488469|488474|488476|488477|488479|488488|488496|488505|488507|488509|488512|488519|488520|488538|488539|488562|488589|488617|488790|488793|488811|488922|489011|489080|489083|489246|489276|489281|489377|489481|489688|490087|490389|490392|490417|490506|490642|490644|490646|490714|491028|491054|491060|491066|491108|491112|491126|491242|491388|491529|491648|491734|491814|491816|491970|491980|492104|492115|492230|492337|492338|492462|492609|492868|492901|493049|493050|493061|493063|493156|493220|493225|493253|493351|493496|493504|493568|493569|493573|493622|493662|493665|493825|493873|493874|493982|494015|494082|494092|494093|501926|501929|501931|501936|501946|501964|502236|502239|502244|502255|502262|502276|502278|502299|502313|502355|502361|502603|502604|502619|502623|502626|502632|502637|511746|511748|511749|523032|523042|523045|523051|523054|523057|523059|523063|523086|523088|523095|523101|523103|523109|523118|523126|523132|523133|523134|523138|523139|523142|523148|523151|523156|523158|523171|523173|523174|523176|523179|523182|523202|523205|523207|523208|523211|523214|523215|523311|523321|523323|523336|523339|523341|523345|523348|523353|523355|523358|523361|523371|523375|523380|523387|523388|523390|523392|523399|523401|523405|523412|523413|523415|523417|523420|523423|523432|523436|523441|523442|523448|523451|523461|523466|523467|523474|523481|523531|523537|523542|523544|523547|523549|523552|523553|523555|523556|523563|523570|523572|523576|523584|523586|523594|523596|523601|523603|523606|523608|523610|523616|523618|523622|523624|523636|523639|523644|523647|523652|523654|523655|523656|523658|523662|523663|523665|523667|523669|523671|523675|523676|523678|523683|523685|523689|523690|523692|523693|523694|523695|523698|523700|523702|523706|523714|523716|523718|523726|523730|523735|536744|561957|561960|561963|561965|561974|561980|561981|561993|561996|562000|562002|562011|562014|562018|562020|562021|562026|562029|562032|562034|562036|562038|562040|562047|562050|562054|562057|562059|562380|562396|562397|562400|562401|562411|562423|562425|562432|562433|562436|562437|562443|562448|562459|562475|562476|562479|562487|562496|562497|562500|562501|562504|562511|564676|564679|564681|564683|564690|564699|564701|564704|564708|564710|564718|564719|564722|564724|564726|564731|564732|564736|564741|564751|564759|564765|564767|564771|564774|564776|564778|564780|564785|564788|564790|564794|564796|564800|564802|564809|567397|567399|567400|567401|567406|567409|567414|567418|567419|567420|567421|567423|567427|567428|567430|567434|567443|567448|567466|567471|567484|567487|567493|567494|567495|567496|567497|567502|577038|577042|577048|577050|583214|583818|583832|583842|583852|583863|583873|583888|583928|583989|584023|584100|584299|584656|584658|584660|585030|585144|585680|585726|585814|585970|586401|586783|586809|586971|587049|587287|587469|588315|588317|588432|588452|588464|588491|588509|588536|588609|588612|588626|588632|588860|588861|588863|589251|589263|589547|589607|589776|612808|623147|636629|636630|636631|636632|636633|636634|636635|636636|636637|636638|636639|636640|636641|636642|636643|636644|636645|636646|636647|636648|636649|636650|636651|636652|636653|636654|636655|636656|636657|636658|636659|636660|636661|636662|636663|636664|636665|636666|636667|636668|636669|636670|636671|636672|636673|636674|636675|636676|636677|636678|636679|636680|636681|636682|636683|636684|636685|636686|636687|636688|636689|636690|636691|636692|636693|636694|636695|636696|636697|636698|636699|636700|636701|636702|636703|636704|636705|636706|636707|636708|636709|636710|636711|636712|636713|636714|636715|636716|636717|636718|636719|636720|636721|636722|636723|636724|636725|636726|636727|636728|636729|636730|636731|636732|636733|636734|636735|636736|636737|636738|636739|636740|636741|636742|636743|636744|636745|636746|636747|636748|636749|636750|636751|636752|636753|636754|636755|636756|636757|636758|636759|636760|636761|636762|636763|636764|636765|636766|636767|636768|636769|636770|636771|636772|636773|636774|636775|636776|636777|636778|636779|636780|636781|651751|651754|651758|651760|651770|651773|655836|655845|655849|662710|687201|692371|692372|692373|692375|692376|692378|692379|692380|692381|692385|692386|692387|692389|692391|692392|692393|692394|692395|692396|692397|692402|692403|692404|692406|692409|692411|692412|692413|692414|692418|692419|692420|692423|692424|692426|692430|692431|692432|692433|692434|692435|692436|692438|692440|695384|700445|700447|700450|700451|700455|700457|700458|700461|700463|700464|700467|711370|711371|711372|711374|711376|711381|711382|711385|711390|711391|711392|722917|722921|722922|736504|736505|736506|736507|736508|736510|736512|736513|736514|736521|736523|750972|750975|750976|750978|750979|750980|750985|750987|750989|750992|750995|766578|766583|766584|766586|766587|766599|766623|766628|775210|777720|783022|783024|783026|783029|783031|783035|793265|793267|793268|796133|796137|834168|834169|834170|834171|834172|834173|834174|834175|834176|834177|834178|834179|834180|834181|834182|834183|834184|834185|834186|834187|834188|834189|834190|834191|834192|834193|834194|834195|834196|834197|834198|834199|834200|834201|834202|834203|834204|834205|834206|834207|834208|834209|834210|834211|834212|834213|834214|834215|834216|834217|834218|834219|834220|834221|834222|834223|834224|834225|834226|834227|834228|834229|834230|834231|834232|834233|834234|834235|834236|834237|834238|834239|834240|834241|834242|834243|834244|834245|834246|834247|834248|834249|834250|834251|834252|834253|834254|834255|834256|834257|834258|834259|834260|834261|834262|834263|834264|834265|834266|834267|834268|834269|834270|834271|834272|834273|834274|834275|834276|834277|834278|834279|834280|834281|834282|834283|834284|834285|834286|834287|834288|834289|834290|834291|834292|834293|852118|925028|925029|925030|925031|925032|925033|925034|925035|925036|925037|925038|925039|925040|925041|925042|925043|925044|925045|925046|925047|925048|925049|925050|925051|925052|925053|925054|925055|925056|925057|925058|925059|925060|925061|925062|925063|925064|925065|925066|925067|925068|934109|934110|934111|934112|934113|934114|934115|934116|934117|934118|934119|934120|934121|934122|934123|934124|934125|934126|934127|934128|934129|934130|934131|934132|934133|934134|934135|934136|934137|934138|934139|934140|934141|934142|934143|934144|934145|934146|934147|934148|934149|934150|934151|934152|934153|934154|934155|934156|934157|934158|934159|934160|934161|940891|945859|945860|945861|945862|945863|945864|945865|945866|945867|945868|945869|945870|945871|945872|945873|945874|945875|945876|945877|945878|945879|945880|945881|945882|945883|945884|945885|945886|945887|945888|945889|945890|945891|945892|945893|945894|945895|945896|945897|945898|945899|945900|945901|945902|945903|945904|945905|945906|945907|945908|945909|945910|945911|945912|955305|955306|955307|955308|955309|955310|955311|955312|955313|955314|955315|955316|955317|955318|955319|955320|955321|955322|955323|955324|955325|955326|955327|955328|955329|955330|955331|955332|955333|955334|955335|955336|955337|955338|955339|955340|959878", "text": "Epidermolysis bullosa simplex with pyloric atresia" }, { - "baseId": "23307|23308|23309|101778|101779|101780|240839|253804|253805|253806|310609|315791|315795|315796|315827|315828|315829|315831|315841|315843|315844|315845|321858|321859|321864|321867|321868|321872|321873|321874|322523|322549|322551|322555|322565|322566|322578|322581|397795|460101|536045|536046|536047|563898|564709|569410|639101|639102|684194|684195|687666|687668|692886|837161|837162|837163|837164|866072|866073|866074|866075|866076|866077|866078|866079|866080|866081|866082|866083|866084|925901|974490", + "upstreamId": "23307|23308|23309|101778|101779|101780|240839|253804|253805|253806|310609|315791|315795|315796|315827|315828|315829|315831|315841|315843|315844|315845|321858|321859|321864|321867|321868|321872|321873|321874|322523|322549|322551|322555|322565|322566|322578|322581|397795|460101|536045|536046|536047|563898|564709|569410|639101|639102|684194|684195|687666|687668|692886|837161|837162|837163|837164|866072|866073|866074|866075|866076|866077|866078|866079|866080|866081|866082|866083|866084|925901|974490", "text": "Visceral heterotaxy 5, autosomal" }, { - "baseId": "23308|407891", + "upstreamId": "23308|407891", "text": "heterotaxia syndrome" }, { - "baseId": "23311|23312|23313|23314|39126|49240|49259|49263|49278|49286|49294|49297|49305|55402|264952|265075|269358|363055|424697|919868", + "upstreamId": "23311|23312|23313|23314|39126|49240|49259|49263|49278|49286|49294|49297|49305|55402|264952|265075|269358|363055|424697|919868", "text": "Cardiofaciocutaneous syndrome 4" }, { - "baseId": "23311|23312|23313|23314|27625|27625|27626|27628|27629|28389|28390|28391|29000|29003|29003|29004|29004|29008|29012|29013|29014|29014|29016|29017|29018|29019|38762|48816|48817|48818|48821|48835|48836|48839|48840|48844|48850|48853|48854|48857|48857|48859|48860|49214|49217|49249|49251|49251|49283|49283|49884|53753|53754|53755|53972|53973|53974|53977|53978|53985|53987|53988|53997|53998|99984|174042|174043|174043|174175|174176|174178|175711|175716|175855|176031|176031|179450|224864|224865|224866|230308|301998|302001|309875|310013|316688|316706|316713|316714|316716|323126|323128|324168|324186|330211|330214|330268|331617|331620|331623|331632|331661|332754|332756|359643|362823|362825|363055|653970|653971|653972|653977|653983|653984|799020|969624", + "upstreamId": "23311|23312|23313|23314|27625|27625|27626|27628|27629|28389|28390|28391|29000|29003|29003|29004|29004|29008|29012|29013|29014|29014|29016|29017|29018|29019|38762|48816|48817|48818|48821|48835|48836|48839|48840|48844|48850|48853|48854|48857|48857|48859|48860|49214|49217|49249|49251|49251|49283|49283|49884|53753|53754|53755|53972|53973|53974|53977|53978|53985|53987|53988|53997|53998|99984|174042|174043|174043|174175|174176|174178|175711|175716|175855|176031|176031|179450|224864|224865|224866|230308|301998|302001|309875|310013|316688|316706|316713|316714|316716|323126|323128|324168|324186|330211|330214|330268|331617|331620|331623|331632|331661|332754|332756|359643|362823|362825|363055|653970|653971|653972|653977|653983|653984|799020|969624", "text": "Cardio-facio-cutaneous syndrome" }, { - "baseId": "23315|23316|23317|23318|23318|23319|23320|23321|23322|23323|23324|23325|23329|40376|40390|272349|918860|961601", + "upstreamId": "23315|23316|23317|23318|23318|23319|23320|23321|23322|23323|23324|23325|23329|40376|40390|272349|918860|961601", "text": "Rippling muscle disease 2" }, { - "baseId": "23317|40366|40367|40369|40374|40376|40377|40378|40380|40399|44468|101340|135129|135130|177852|179082|195708|195709|229569|252658|265307|267980|270697|272684|273196|291730|291733|293055|293056|293071|293074|293079|295480|295481|295485|295486|295488|296327|296330|296331|296333|296349|296387|296388|296389|296390|297261|297264|297267|297276|301110|301111|301112|301113|301114|301267|301277|302296|302299|302312|302320|305526|305535|305543|305551|305553|305555|310342|310348|310446|310468|310470|310481", + "upstreamId": "23317|40366|40367|40369|40374|40376|40377|40378|40380|40399|44468|101340|135129|135130|177852|179082|195708|195709|229569|252658|265307|267980|270697|272684|273196|291730|291733|293055|293056|293071|293074|293079|295480|295481|295485|295486|295488|296327|296330|296331|296333|296349|296387|296388|296389|296390|297261|297264|297267|297276|301110|301111|301112|301113|301114|301267|301277|302296|302299|302312|302320|305526|305535|305543|305551|305553|305555|310342|310348|310446|310468|310470|310481", "text": "Limb-Girdle Muscular Dystrophy, Dominant" }, { - "baseId": "23317|23318|23327|23332|40366|40367|40369|40371|40374|40376|40377|40378|40380|40399|44468|55699|55701|102134|140362|179082|179092|291730|291733|293055|293056|293071|293074|293079|296327|296330|296331|296333|296349|296387|296388|296389|296390|367735|889740|889741|889742|889743|889744|889745|889746|889747|889748|889749|889750|889751|889752|889753", + "upstreamId": "23317|23318|23327|23332|40366|40367|40369|40371|40374|40376|40377|40378|40380|40399|44468|55699|55701|102134|140362|179082|179092|291730|291733|293055|293056|293071|293074|293079|296327|296330|296331|296333|296349|296387|296388|296389|296390|367735|889740|889741|889742|889743|889744|889745|889746|889747|889748|889749|889750|889751|889752|889753", "text": "Caveolinopathy" }, { - "baseId": "23318|23322|23328|40376|272349|961601", + "upstreamId": "23318|23322|23328|40376|272349|961601", "text": "Distal myopathy, Tateyama type" }, { - "baseId": "23318|23330|23332|23333|23334|23335|272349|625794|857645|961601", + "upstreamId": "23318|23330|23332|23333|23334|23335|272349|625794|857645|961601", "text": "Long QT syndrome 9" }, { - "baseId": "23324", + "upstreamId": "23324", "text": "Rippling muscle disease 2, autosomal recessive" }, { - "baseId": "23331", + "upstreamId": "23331", "text": "Long QT syndrome 9, acquired, susceptibility to" }, { - "baseId": "23332|29482", + "upstreamId": "23332|29482", "text": "Long QT syndrome 2/9, digenic" }, { - "baseId": "23336|23337|23338|23339|167854|167855|167856|167857|167858|167860|167861|167862|167863|167864|167865|167866|167867|167868|167869|167870|167871|167872|191039|191444|206839|250143|250147|250149|250150|250152|268256|270551|270786|272294|272612|275116|281761|281768|281777|281779|281781|281782|281784|281789|282397|282398|282400|282403|282407|282410|282411|283952|283964|283965|283967|283977|283988|283989|284009|284017|284028|284030|284039|284183|284197|284199|284200|284201|284206|284207|284217|284220|353537|365344|365351|365352|365505|365509|365531|405289|405290|448561|448638|448644|448651|448653|448669|448671|448675|448677|448678|448683|448689|448691|448766|448768|498617|498644|516300|516308|516310|516312|516318|516321|516322|516325|516334|516363|516369|516371|516402|516403|516405|557494|557496|557498|557500|557502|557543|557545|557547|558629|558709|559196|559198|609084|609085|628424|628425|628426|628427|628428|628429|628430|628431|628432|650706|650861|690732|690736|690737|695071|697003|697004|707707|762168|762170|787187|819046|824725|824726|824727|824728|824729|824730|824731|824732|824733|824734|851331|880993|880994|880995|880996|880997|880998|880999|881000|881001|881002|881003|881004|881005|881006|881007|881008|882792|882793|882794|922231|922232|922233|930791|930792|930793|939843|942219|942220|942221|942222|942223|942224|942225|942226|952625|952626|952627|952628|952629", + "upstreamId": "23336|23337|23338|23339|167854|167855|167856|167857|167858|167860|167861|167862|167863|167864|167865|167866|167867|167868|167869|167870|167871|167872|191039|191444|206839|250143|250147|250149|250150|250152|268256|270551|270786|272294|272612|275116|281761|281768|281777|281779|281781|281782|281784|281789|282397|282398|282400|282403|282407|282410|282411|283952|283964|283965|283967|283977|283988|283989|284009|284017|284028|284030|284039|284183|284197|284199|284200|284201|284206|284207|284217|284220|353537|365344|365351|365352|365505|365509|365531|405289|405290|448561|448638|448644|448651|448653|448669|448671|448675|448677|448678|448683|448689|448691|448766|448768|498617|498644|516300|516308|516310|516312|516318|516321|516322|516325|516334|516363|516369|516371|516402|516403|516405|557494|557496|557498|557500|557502|557543|557545|557547|558629|558709|559196|559198|609084|609085|628424|628425|628426|628427|628428|628429|628430|628431|628432|650706|650861|690732|690736|690737|695071|697003|697004|707707|762168|762170|787187|819046|824725|824726|824727|824728|824729|824730|824731|824732|824733|824734|851331|880993|880994|880995|880996|880997|880998|880999|881000|881001|881002|881003|881004|881005|881006|881007|881008|882792|882793|882794|922231|922232|922233|930791|930792|930793|939843|942219|942220|942221|942222|942223|942224|942225|942226|952625|952626|952627|952628|952629", "text": "Autosomal recessive centronuclear myopathy" }, { - "baseId": "23340|23341|23342|23343|23344|33917|33918|33919|33920|134576|141136|141137|141138|141139|141140|142197|177428|192184|200993|203522|203525|203526|203529|203532|203533|203537|203540|203544|203548|203555|203558|227402|243311|273200|332705|342879|342881|342883|348219|348220|348222|348225|348226|349425|349427|349428|349431|379492|426291|439202|446066|470496|488043|506577|532739|532752|532755|533179|572273|614454|647775|647777|653605|683148|688968|798921|806381|851799|880005|880006|880007|880008|880009|880010|880011|880012|971120|979972", + "upstreamId": "23340|23341|23342|23343|23344|33917|33918|33919|33920|134576|141136|141137|141138|141139|141140|142197|177428|192184|200993|203522|203525|203526|203529|203532|203533|203537|203540|203544|203548|203555|203558|227402|243311|273200|332705|342879|342881|342883|348219|348220|348222|348225|348226|349425|349427|349428|349431|379492|426291|439202|446066|470496|488043|506577|532739|532752|532755|533179|572273|614454|647775|647777|653605|683148|688968|798921|806381|851799|880005|880006|880007|880008|880009|880010|880011|880012|971120|979972", "text": "Deficiency of guanidinoacetate methyltransferase" }, { - "baseId": "23341|23342|33917|141136|141137|141138|141139|177428|192184|203522|203523|203525|203526|203527|203528|203529|203530|203531|203532|203533|203537|203540|203543|203544|203546|203548|203555|203558|227402|243311|271551|273200|332705|342881|348220|348225|349431|377332|377532|377539|379492|403199|426289|426291|446063|446066|468531|469470|470496|470500|470507|470508|506560|507634|532739|532741|532745|532749|532750|532752|532755|532762|532812|532818|532821|532823|533179|570566|570570|570573|572273|572279|572281|572283|572965|574895|574896|574898|574900|580386|580509|647775|647776|647777|647778|647779|647780|647781|647782|647783|653016|653019|653491|653605|684781|688966|688968|694336|741614|776561|786085|821300|847388|847389|847390|847391|847392|847393|847394|847395|847396|847397|847398|847399|851799|852854|852856|852964|852965|928888|928889|938602|938603|938604|938605|940473|950700|958557|958558|958559|958560|958561|958562|958563|960286", + "upstreamId": "23341|23342|33917|141136|141137|141138|141139|177428|192184|203522|203523|203525|203526|203527|203528|203529|203530|203531|203532|203533|203537|203540|203543|203544|203546|203548|203555|203558|227402|243311|271551|273200|332705|342881|348220|348225|349431|377332|377532|377539|379492|403199|426289|426291|446063|446066|468531|469470|470496|470500|470507|470508|506560|507634|532739|532741|532745|532749|532750|532752|532755|532762|532812|532818|532821|532823|533179|570566|570570|570573|572273|572279|572281|572283|572965|574895|574896|574898|574900|580386|580509|647775|647776|647777|647778|647779|647780|647781|647782|647783|653016|653019|653491|653605|684781|688966|688968|694336|741614|776561|786085|821300|847388|847389|847390|847391|847392|847393|847394|847395|847396|847397|847398|847399|851799|852854|852856|852964|852965|928888|928889|938602|938603|938604|938605|940473|950700|958557|958558|958559|958560|958561|958562|958563|960286", "text": "Cerebral creatine deficiency syndrome" }, { - "baseId": "23345|44691|44692|44693|55575|55576|55577|55578|55579|55582|55583|55588|55589|55590|55591|55592|55593|55594|55595|55596|55597|176682|178732|189996|189999|190000|190004|198510|198512|198513|198515|224544|243060|258757|346985|361035|378985|402449|402739|402743|403273|403275|403278|403287|403302|415602|415603|463041|467983|469326|469753|469754|469758|469759|497295|508905|513598|515690|531246|532277|532379|563886|570152|570153|571926|571931|572634|612055|647207|647208|647209|647210|647211|647212|647213|684756|772126|776599|800088|846828|846829|928699|928700|938426|938427|938428|940455|940456|941209|950514|958461|966428|966451", + "upstreamId": "23345|44691|44692|44693|55575|55576|55577|55578|55579|55582|55583|55588|55589|55590|55591|55592|55593|55594|55595|55596|55597|176682|178732|189996|189999|190000|190004|198510|198512|198513|198515|224544|243060|258757|346985|361035|378985|402449|402739|402743|403273|403275|403278|403287|403302|415602|415603|463041|467983|469326|469753|469754|469758|469759|497295|508905|513598|515690|531246|532277|532379|563886|570152|570153|571926|571931|572634|612055|647207|647208|647209|647210|647211|647212|647213|684756|772126|776599|800088|846828|846829|928699|928700|938426|938427|938428|940455|940456|941209|950514|958461|966428|966451", "text": "Left ventricular noncompaction 1" }, { - "baseId": "23346|34518|39740|50340|99571|99572|140173|140174|166307|166308|167809|167810|167811|167812|167813|167815|167816|167817|167818|167819|167820|167821|167822|167824|167827|167827|167828|167830|167831|167832|167834|167836|167839|167841|167842|167843|167846|167847|167848|167849|167850|167851|167852|167853|207056|207057|207058|237440|289010|289012|289013|289030|289032|289036|289038|289042|289043|289749|289751|289752|289768|289771|289772|289773|289780|292779|292782|292803|292805|292807|292831|292833|292836|292847|292851|292852|292855|292864|293037|293039|293041|293043|293044|293070|293073|293077|293093|293095|293102|368244|413648|428149|428150|428151|428152|500600|500601|550265|550266|620111|620754|683551|683560|781576|790341|790342|794342|888084|888085|888086|888087|888088|888089|888090|888091|888092|888093|888094|888095|888096|888097|888098|888099|888100|888101|888102|888103|888104|888105|888106|888107|888108|888109|888110|888111|888112|891582|891583|891584|891585|918802|918803|918804|965959|977196", + "upstreamId": "23346|34518|39740|50340|99571|99572|140173|140174|166307|166308|167809|167810|167811|167812|167813|167815|167816|167817|167818|167819|167820|167821|167822|167824|167827|167827|167828|167830|167831|167832|167834|167836|167839|167841|167842|167843|167846|167847|167848|167849|167850|167851|167852|167853|207056|207057|207058|237440|289010|289012|289013|289030|289032|289036|289038|289042|289043|289749|289751|289752|289768|289771|289772|289773|289780|292779|292782|292803|292805|292807|292831|292833|292836|292847|292851|292852|292855|292864|293037|293039|293041|293043|293044|293070|293073|293077|293093|293095|293102|368244|413648|428149|428150|428151|428152|500600|500601|550265|550266|620111|620754|683551|683560|781576|790341|790342|794342|888084|888085|888086|888087|888088|888089|888090|888091|888092|888093|888094|888095|888096|888097|888098|888099|888100|888101|888102|888103|888104|888105|888106|888107|888108|888109|888110|888111|888112|891582|891583|891584|891585|918802|918803|918804|965959|977196", "text": "Seckel syndrome 1" }, { - "baseId": "23347|23347|23348|23349|23350|187103|230534|230534|320763|320764|320765|320773|320777|320778|320779|320784|329651|329653|329656|329657|336219|336226|336236|336241|338134|338136|338141|338160|338163|338171|338172|338173|338177|338177|404817|437971|463856|464211|488884|622113|871983|871984|871985|871986|871987|871988|871989|871990|871991|871992|871993|871994|871995|871996|962987|970996", + "upstreamId": "23347|23347|23348|23349|23350|187103|230534|230534|320763|320764|320765|320773|320777|320778|320779|320784|329651|329653|329656|329657|336219|336226|336236|336241|338134|338136|338141|338160|338163|338171|338172|338173|338177|338177|404817|437971|463856|464211|488884|622113|871983|871984|871985|871986|871987|871988|871989|871990|871991|871992|871993|871994|871995|871996|962987|970996", "text": "Branchiootic syndrome 3" }, { - "baseId": "23347|23347|23349|204589|230534|230534|320763|320764|320765|320773|320777|320778|320779|320784|329651|329653|329656|329657|336219|336226|336236|336241|338134|338136|338141|338160|338163|338171|338172|338173|338177|338177|404817|437971|463856|464211|488884|622113|677283|871983|871984|871985|871986|871987|871988|871989|871990|871991|871992|871993|871994|871995|871996", + "upstreamId": "23347|23347|23349|204589|230534|230534|320763|320764|320765|320773|320777|320778|320779|320784|329651|329653|329656|329657|336219|336226|336236|336241|338134|338136|338141|338160|338163|338171|338172|338173|338177|338177|404817|437971|463856|464211|488884|622113|677283|871983|871984|871985|871986|871987|871988|871989|871990|871991|871992|871993|871994|871995|871996", "text": "Deafness, autosomal dominant 23" }, { - "baseId": "23351|23352|23352|23353|23355|23369|23370|23371|23371|23372|23373|23374|23379|23380|23381|23388|23391|23392|23394|23395|23396|44440|44454|44461|44464|75243|190256|193423|195231|195232|198615|239058|239060|239063|239064|239066|239067|239068|239071|239076|250863|264143|269518|288297|288298|288300|288305|288307|288311|288319|288320|289063|289064|289066|289101|289102|292030|292031|292035|292036|292042|292046|292048|292049|292050|292139|292147|292154|292170|292172|292175|292176|292177|366891|384477|393203|393205|393209|393210|393213|393217|393221|393250|393273|393278|393281|393383|393389|393413|393592|393639|393641|406099|418975|424993|425518|451684|451693|451706|451714|451732|451746|451957|451968|451987|451997|451999|452003|452007|452019|452021|452034|452045|452049|452053|452059|452065|452069|452176|452181|452186|452189|452198|452214|452220|452222|518737|518748|518761|518765|518770|518771|518778|518782|518789|518815|518824|518828|518829|518838|518937|518943|518947|518961|518967|518984|518985|518994|518995|518998|519001|519008|519009|519010|519015|519028|519032|519035|558750|558752|558754|558758|558760|558768|558770|558772|559281|559287|559291|559295|559299|559303|559309|561110|561117|561119|561133|561135|562263|562269|562280|562289|562302|562328|562340|562342|562348|562353|562356|630758|630819|672027|747922|789725|790319|818221|827396|887729|887730|887731|887732|887733|887734", + "upstreamId": "23351|23352|23352|23353|23355|23369|23370|23371|23371|23372|23373|23374|23379|23380|23381|23388|23391|23392|23394|23395|23396|44440|44454|44461|44464|75243|190256|193423|195231|195232|198615|239058|239060|239063|239064|239066|239067|239068|239071|239076|250863|264143|269518|288297|288298|288300|288305|288307|288311|288319|288320|289063|289064|289066|289101|289102|292030|292031|292035|292036|292042|292046|292048|292049|292050|292139|292147|292154|292170|292172|292175|292176|292177|366891|384477|393203|393205|393209|393210|393213|393217|393221|393250|393273|393278|393281|393383|393389|393413|393592|393639|393641|406099|418975|424993|425518|451684|451693|451706|451714|451732|451746|451957|451968|451987|451997|451999|452003|452007|452019|452021|452034|452045|452049|452053|452059|452065|452069|452176|452181|452186|452189|452198|452214|452220|452222|518737|518748|518761|518765|518770|518771|518778|518782|518789|518815|518824|518828|518829|518838|518937|518943|518947|518961|518967|518984|518985|518994|518995|518998|519001|519008|519009|519010|519015|519028|519032|519035|558750|558752|558754|558758|558760|558768|558770|558772|559281|559287|559291|559295|559299|559303|559309|561110|561117|561119|561133|561135|562263|562269|562280|562289|562302|562328|562340|562342|562348|562353|562356|630758|630819|672027|747922|789725|790319|818221|827396|887729|887730|887731|887732|887733|887734", "text": "Hypocalciuric hypercalcemia, familial, type 1" }, { - "baseId": "23351|23353|23354|23357|23370|23372|23379|23384|23391|23398|44437|44438|44439|44440|44440|44441|44442|44442|44443|44444|44445|44446|44447|44448|44450|44451|44452|44452|44455|44456|44457|44459|44459|44460|44461|44462|44463|44465|44466|44467|75392|75394|75396|75398|75403|75405|80605|171351|190255|190256|193423|195231|195233|195234|239059|239060|239061|239061|239062|239063|239064|239065|239066|239067|239068|239069|239070|239071|239072|239073|239074|239075|250860|250861|250863|264107|264120|265683|268428|269518|288297|288300|288305|288307|289063|292035|292154|292170|292174|353611|359376|366891|367125|367131|384477|393209|393213|393220|393227|393228|393230|393238|393243|393254|393256|393272|393274|393275|393277|393282|393288|393291|393293|393294|393304|393380|393401|393406|393416|393439|393573|393591|393597|393604|393606|393613|393617|393620|393622|393629|393630|393632|393641|393647|393653|393658|406092|406096|406103|414905|425519|440748|440754|440756|443343|451656|451660|451680|451688|451689|451701|451704|451708|451712|451719|451720|451722|451724|451739|451744|451748|451931|451932|451936|451939|451952|451959|451964|451969|451970|451977|451979|451981|451984|451988|451992|451993|451994|451998|452021|452029|452033|452035|452043|452047|452071|452162|452171|452191|452193|452212|452217|492632|494103|518736|518740|518751|518753|518756|518764|518766|518773|518776|518781|518784|518792|518797|518802|518804|518806|518817|518822|518840|518935|518941|518942|518951|518957|518959|518973|518974|518986|518988|518992|519002|519003|519004|519009|519011|519012|519014|519017|519019|519020|519021|519030|519035|558750|558756|558762|558764|558766|559283|559285|559289|559293|559297|559301|559305|559307|559311|561106|561112|561125|561126|561129|561130|562277|562312|562321|562322|562329|562353|576711|576713|576717|576718|576719|588185|621905|630758|630759|630760|630761|630762|630763|630764|630765|630766|630767|630768|630769|630770|630771|630772|630773|630774|630775|630776|630777|630778|630779|630780|630781|630782|630783|630784|630785|630786|630787|630788|630789|630790|630791|630792|630793|630794|630795|630796|630797|630798|630799|630800|630801|630802|630803|630804|630805|630806|630807|630808|630809|630810|630811|630812|630813|630814|630815|630816|630817|630818|630819|630820|630821|630822|630823|630824|630825|630826|630827|630828|630829|630830|630831|630832|630833|630834|630835|630836|630837|630838|630839|630840|630841|630842|630843|651066|651152|683528|683529|683530|683531|686285|686286|686287|686288|686289|686290|686293|686294|686295|686296|686297|691253|691254|691255|691257|691258|691259|691260|691262|691263|691265|691266|691267|695169|697772|697773|697774|697775|708503|720108|720109|733717|733718|733719|733720|733721|747922|747923|747924|747928|747929|747930|759211|763544|763546|763547|763548|763555|763558|763559|763563|763565|777323|781523|781524|781525|781527|781528|792996|807501|807502|807510|818221|819314|819315|827330|827331|827332|827333|827334|827335|827336|827337|827338|827339|827340|827341|827342|827343|827344|827345|827346|827347|827348|827349|827350|827351|827352|827353|827354|827355|827356|827357|827358|827359|827360|827361|827362|827363|827364|827365|827366|827367|827368|827369|827370|827371|827372|827373|827374|827375|827376|827377|827378|827379|827380|827381|827382|827383|827384|827385|827386|827387|827388|827389|827390|827391|827392|827393|827394|827395|827396|827397|827398|827399|827400|827401|827402|827403|827404|827405|827406|827407|827408|827409|827410|827411|827412|827413|827414|850905|851267|858439|922991|922992|922993|922994|922995|922996|922997|922998|922999|923000|923001|923002|923003|923004|923005|923006|923007|923008|923009|923010|923011|923012|923013|923014|923015|923016|923017|931696|931697|931698|931699|931700|931701|931702|931703|931704|931705|931706|931707|931708|931709|931710|931711|931712|931713|931714|931715|931716|931717|931718|931719|931720|931721|931722|931723|939927|939928|940735|943268|943269|943270|943271|943272|943273|943274|943275|943276|943277|943278|943279|943280|943281|943282|943283|943284|943285|943286|943287|943288|953304|953305|953306|953307|953308|953309|953310|953311|953312|953313|953314|959676", + "upstreamId": "23351|23353|23354|23357|23370|23372|23379|23384|23391|23398|44437|44438|44439|44440|44440|44441|44442|44442|44443|44444|44445|44446|44447|44448|44450|44451|44452|44452|44455|44456|44457|44459|44459|44460|44461|44462|44463|44465|44466|44467|75392|75394|75396|75398|75403|75405|80605|171351|190255|190256|193423|195231|195233|195234|239059|239060|239061|239061|239062|239063|239064|239065|239066|239067|239068|239069|239070|239071|239072|239073|239074|239075|250860|250861|250863|264107|264120|265683|268428|269518|288297|288300|288305|288307|289063|292035|292154|292170|292174|353611|359376|366891|367125|367131|384477|393209|393213|393220|393227|393228|393230|393238|393243|393254|393256|393272|393274|393275|393277|393282|393288|393291|393293|393294|393304|393380|393401|393406|393416|393439|393573|393591|393597|393604|393606|393613|393617|393620|393622|393629|393630|393632|393641|393647|393653|393658|406092|406096|406103|414905|425519|440748|440754|440756|443343|451656|451660|451680|451688|451689|451701|451704|451708|451712|451719|451720|451722|451724|451739|451744|451748|451931|451932|451936|451939|451952|451959|451964|451969|451970|451977|451979|451981|451984|451988|451992|451993|451994|451998|452021|452029|452033|452035|452043|452047|452071|452162|452171|452191|452193|452212|452217|492632|494103|518736|518740|518751|518753|518756|518764|518766|518773|518776|518781|518784|518792|518797|518802|518804|518806|518817|518822|518840|518935|518941|518942|518951|518957|518959|518973|518974|518986|518988|518992|519002|519003|519004|519009|519011|519012|519014|519017|519019|519020|519021|519030|519035|558750|558756|558762|558764|558766|559283|559285|559289|559293|559297|559301|559305|559307|559311|561106|561112|561125|561126|561129|561130|562277|562312|562321|562322|562329|562353|576711|576713|576717|576718|576719|588185|621905|630758|630759|630760|630761|630762|630763|630764|630765|630766|630767|630768|630769|630770|630771|630772|630773|630774|630775|630776|630777|630778|630779|630780|630781|630782|630783|630784|630785|630786|630787|630788|630789|630790|630791|630792|630793|630794|630795|630796|630797|630798|630799|630800|630801|630802|630803|630804|630805|630806|630807|630808|630809|630810|630811|630812|630813|630814|630815|630816|630817|630818|630819|630820|630821|630822|630823|630824|630825|630826|630827|630828|630829|630830|630831|630832|630833|630834|630835|630836|630837|630838|630839|630840|630841|630842|630843|651066|651152|683528|683529|683530|683531|686285|686286|686287|686288|686289|686290|686293|686294|686295|686296|686297|691253|691254|691255|691257|691258|691259|691260|691262|691263|691265|691266|691267|695169|697772|697773|697774|697775|708503|720108|720109|733717|733718|733719|733720|733721|747922|747923|747924|747928|747929|747930|759211|763544|763546|763547|763548|763555|763558|763559|763563|763565|777323|781523|781524|781525|781527|781528|792996|807501|807502|807510|818221|819314|819315|827330|827331|827332|827333|827334|827335|827336|827337|827338|827339|827340|827341|827342|827343|827344|827345|827346|827347|827348|827349|827350|827351|827352|827353|827354|827355|827356|827357|827358|827359|827360|827361|827362|827363|827364|827365|827366|827367|827368|827369|827370|827371|827372|827373|827374|827375|827376|827377|827378|827379|827380|827381|827382|827383|827384|827385|827386|827387|827388|827389|827390|827391|827392|827393|827394|827395|827396|827397|827398|827399|827400|827401|827402|827403|827404|827405|827406|827407|827408|827409|827410|827411|827412|827413|827414|850905|851267|858439|922991|922992|922993|922994|922995|922996|922997|922998|922999|923000|923001|923002|923003|923004|923005|923006|923007|923008|923009|923010|923011|923012|923013|923014|923015|923016|923017|931696|931697|931698|931699|931700|931701|931702|931703|931704|931705|931706|931707|931708|931709|931710|931711|931712|931713|931714|931715|931716|931717|931718|931719|931720|931721|931722|931723|939927|939928|940735|943268|943269|943270|943271|943272|943273|943274|943275|943276|943277|943278|943279|943280|943281|943282|943283|943284|943285|943286|943287|943288|953304|953305|953306|953307|953308|953309|953310|953311|953312|953313|953314|959676", "text": "Familial hypocalciuric hypercalcemia" }, { - "baseId": "23351|23351|23352|23353|23354|23354|23357|23359|23360|23361|23362|23363|23364|23365|23366|23367|23370|23371|23372|23375|23376|23377|23378|23379|23382|23384|23385|23386|23387|23388|23389|23391|23393|23398|44438|44440|44440|44442|44451|44452|44454|44459|44461|44464|75242|75392|75394|75396|75398|75403|75405|80605|171351|190255|190256|190256|193423|193423|195231|195231|195232|195233|195234|198615|239058|239059|239060|239060|239061|239062|239063|239063|239064|239064|239065|239066|239066|239067|239067|239068|239068|239069|239070|239071|239071|239072|239073|239074|239075|239076|250860|250861|250863|250863|264107|264120|264143|265683|268428|269518|269518|288297|288297|288298|288300|288300|288305|288305|288307|288307|288311|288319|288320|289063|289063|289064|289066|289101|289102|292030|292031|292035|292035|292036|292042|292046|292048|292049|292050|292139|292147|292154|292154|292170|292170|292172|292175|292176|292177|359376|366891|367125|367131|384477|393203|393205|393209|393209|393210|393213|393217|393220|393221|393227|393228|393230|393238|393243|393250|393254|393256|393272|393273|393274|393275|393277|393278|393281|393282|393288|393291|393293|393294|393304|393380|393383|393389|393401|393406|393413|393416|393439|393573|393591|393592|393597|393604|393606|393613|393617|393620|393622|393629|393630|393632|393639|393641|393641|393647|393653|393658|406092|406096|406099|406103|414905|425518|425519|440748|440754|440756|443343|443345|451656|451660|451680|451684|451688|451689|451693|451701|451704|451706|451708|451712|451714|451719|451720|451722|451724|451732|451739|451744|451746|451748|451931|451932|451936|451939|451952|451957|451959|451964|451968|451969|451970|451977|451979|451981|451984|451987|451988|451992|451993|451994|451997|451998|451999|452003|452007|452019|452021|452021|452029|452033|452034|452035|452043|452045|452047|452049|452053|452059|452065|452069|452071|452162|452171|452176|452181|452186|452189|452191|452193|452198|452212|452214|452217|452220|452222|492632|494103|518736|518737|518740|518748|518751|518753|518756|518761|518764|518765|518766|518770|518771|518773|518776|518778|518781|518782|518784|518789|518792|518797|518802|518804|518806|518815|518817|518822|518824|518828|518829|518838|518840|518935|518937|518941|518942|518943|518947|518951|518957|518959|518961|518967|518973|518974|518984|518985|518986|518988|518992|518994|518995|518998|519001|519002|519003|519004|519008|519009|519009|519010|519011|519012|519014|519015|519017|519019|519020|519021|519028|519030|519032|519035|519035|552069|558750|558752|558754|558756|558758|558760|558762|558764|558766|558768|558770|558772|559281|559283|559285|559287|559289|559291|559293|559295|559297|559299|559301|559303|559305|559307|559309|559311|561106|561110|561112|561117|561119|561125|561126|561129|561130|561133|561135|562263|562269|562277|562280|562289|562302|562312|562321|562322|562328|562329|562340|562342|562348|562353|562356|576711|576713|576717|576718|576719|588185|621905|630758|630758|630759|630760|630761|630762|630763|630764|630765|630766|630767|630768|630769|630770|630771|630772|630773|630774|630775|630776|630777|630778|630779|630780|630781|630782|630783|630784|630785|630786|630787|630788|630789|630790|630791|630792|630793|630794|630795|630796|630797|630798|630799|630800|630801|630802|630803|630804|630805|630806|630807|630808|630809|630810|630811|630812|630813|630814|630815|630816|630817|630818|630819|630820|630821|630822|630823|630824|630825|630826|630827|630828|630829|630830|630831|630832|630833|630834|630835|630836|630837|630838|630839|630840|630841|630842|630843|651066|651152|683528|683529|683530|683531|686285|686286|686287|686288|686289|686290|686293|686294|686295|686296|686297|691253|691254|691255|691257|691258|691259|691260|691262|691263|691265|691266|691267|695169|697772|697773|697774|697775|708503|720108|720109|733717|733718|733719|733720|733721|747922|747922|747923|747924|747928|747929|747930|759211|763544|763546|763547|763548|763555|763558|763559|763563|763565|777323|781523|781524|781525|781527|781528|792996|807501|807502|807510|818221|819314|819315|827330|827331|827332|827333|827334|827335|827336|827337|827338|827339|827340|827341|827342|827343|827344|827345|827346|827347|827348|827349|827350|827351|827352|827353|827354|827355|827356|827357|827358|827359|827360|827361|827362|827363|827364|827365|827366|827367|827368|827369|827370|827371|827372|827373|827374|827375|827376|827377|827378|827379|827380|827381|827382|827383|827384|827385|827386|827387|827388|827389|827390|827391|827392|827393|827394|827395|827396|827396|827397|827398|827399|827399|827400|827401|827402|827403|827404|827405|827406|827407|827408|827409|827410|827411|827412|827413|827414|850905|851267|858439|887729|887730|887731|887732|887733|887734|920186|922991|922992|922993|922994|922995|922996|922997|922998|922999|923000|923001|923002|923003|923004|923005|923006|923007|923008|923009|923010|923011|923012|923013|923014|923015|923016|923017|931696|931697|931698|931699|931700|931701|931702|931703|931704|931705|931706|931707|931708|931709|931710|931711|931712|931713|931714|931715|931716|931717|931718|931719|931720|931721|931722|931723|939927|939928|940735|943268|943269|943270|943271|943272|943273|943274|943275|943276|943277|943278|943279|943280|943281|943282|943283|943284|943285|943286|943287|943288|953304|953305|953306|953307|953308|953309|953310|953311|953312|953313|953314|959676|964212|965934|966153|980318", + "upstreamId": "23351|23351|23352|23353|23354|23354|23357|23359|23360|23361|23362|23363|23364|23365|23366|23367|23370|23371|23372|23375|23376|23377|23378|23379|23382|23384|23385|23386|23387|23388|23389|23391|23393|23398|44438|44440|44440|44442|44451|44452|44454|44459|44461|44464|75242|75392|75394|75396|75398|75403|75405|80605|171351|190255|190256|190256|193423|193423|195231|195231|195232|195233|195234|198615|239058|239059|239060|239060|239061|239062|239063|239063|239064|239064|239065|239066|239066|239067|239067|239068|239068|239069|239070|239071|239071|239072|239073|239074|239075|239076|250860|250861|250863|250863|264107|264120|264143|265683|268428|269518|269518|288297|288297|288298|288300|288300|288305|288305|288307|288307|288311|288319|288320|289063|289063|289064|289066|289101|289102|292030|292031|292035|292035|292036|292042|292046|292048|292049|292050|292139|292147|292154|292154|292170|292170|292172|292175|292176|292177|359376|366891|367125|367131|384477|393203|393205|393209|393209|393210|393213|393217|393220|393221|393227|393228|393230|393238|393243|393250|393254|393256|393272|393273|393274|393275|393277|393278|393281|393282|393288|393291|393293|393294|393304|393380|393383|393389|393401|393406|393413|393416|393439|393573|393591|393592|393597|393604|393606|393613|393617|393620|393622|393629|393630|393632|393639|393641|393641|393647|393653|393658|406092|406096|406099|406103|414905|425518|425519|440748|440754|440756|443343|443345|451656|451660|451680|451684|451688|451689|451693|451701|451704|451706|451708|451712|451714|451719|451720|451722|451724|451732|451739|451744|451746|451748|451931|451932|451936|451939|451952|451957|451959|451964|451968|451969|451970|451977|451979|451981|451984|451987|451988|451992|451993|451994|451997|451998|451999|452003|452007|452019|452021|452021|452029|452033|452034|452035|452043|452045|452047|452049|452053|452059|452065|452069|452071|452162|452171|452176|452181|452186|452189|452191|452193|452198|452212|452214|452217|452220|452222|492632|494103|518736|518737|518740|518748|518751|518753|518756|518761|518764|518765|518766|518770|518771|518773|518776|518778|518781|518782|518784|518789|518792|518797|518802|518804|518806|518815|518817|518822|518824|518828|518829|518838|518840|518935|518937|518941|518942|518943|518947|518951|518957|518959|518961|518967|518973|518974|518984|518985|518986|518988|518992|518994|518995|518998|519001|519002|519003|519004|519008|519009|519009|519010|519011|519012|519014|519015|519017|519019|519020|519021|519028|519030|519032|519035|519035|552069|558750|558752|558754|558756|558758|558760|558762|558764|558766|558768|558770|558772|559281|559283|559285|559287|559289|559291|559293|559295|559297|559299|559301|559303|559305|559307|559309|559311|561106|561110|561112|561117|561119|561125|561126|561129|561130|561133|561135|562263|562269|562277|562280|562289|562302|562312|562321|562322|562328|562329|562340|562342|562348|562353|562356|576711|576713|576717|576718|576719|588185|621905|630758|630758|630759|630760|630761|630762|630763|630764|630765|630766|630767|630768|630769|630770|630771|630772|630773|630774|630775|630776|630777|630778|630779|630780|630781|630782|630783|630784|630785|630786|630787|630788|630789|630790|630791|630792|630793|630794|630795|630796|630797|630798|630799|630800|630801|630802|630803|630804|630805|630806|630807|630808|630809|630810|630811|630812|630813|630814|630815|630816|630817|630818|630819|630820|630821|630822|630823|630824|630825|630826|630827|630828|630829|630830|630831|630832|630833|630834|630835|630836|630837|630838|630839|630840|630841|630842|630843|651066|651152|683528|683529|683530|683531|686285|686286|686287|686288|686289|686290|686293|686294|686295|686296|686297|691253|691254|691255|691257|691258|691259|691260|691262|691263|691265|691266|691267|695169|697772|697773|697774|697775|708503|720108|720109|733717|733718|733719|733720|733721|747922|747922|747923|747924|747928|747929|747930|759211|763544|763546|763547|763548|763555|763558|763559|763563|763565|777323|781523|781524|781525|781527|781528|792996|807501|807502|807510|818221|819314|819315|827330|827331|827332|827333|827334|827335|827336|827337|827338|827339|827340|827341|827342|827343|827344|827345|827346|827347|827348|827349|827350|827351|827352|827353|827354|827355|827356|827357|827358|827359|827360|827361|827362|827363|827364|827365|827366|827367|827368|827369|827370|827371|827372|827373|827374|827375|827376|827377|827378|827379|827380|827381|827382|827383|827384|827385|827386|827387|827388|827389|827390|827391|827392|827393|827394|827395|827396|827396|827397|827398|827399|827399|827400|827401|827402|827403|827404|827405|827406|827407|827408|827409|827410|827411|827412|827413|827414|850905|851267|858439|887729|887730|887731|887732|887733|887734|920186|922991|922992|922993|922994|922995|922996|922997|922998|922999|923000|923001|923002|923003|923004|923005|923006|923007|923008|923009|923010|923011|923012|923013|923014|923015|923016|923017|931696|931697|931698|931699|931700|931701|931702|931703|931704|931705|931706|931707|931708|931709|931710|931711|931712|931713|931714|931715|931716|931717|931718|931719|931720|931721|931722|931723|939927|939928|940735|943268|943269|943270|943271|943272|943273|943274|943275|943276|943277|943278|943279|943280|943281|943282|943283|943284|943285|943286|943287|943288|953304|953305|953306|953307|953308|953309|953310|953311|953312|953313|953314|959676|964212|965934|966153|980318", "text": "Hypocalcemia, autosomal dominant 1" }, { - "baseId": "23352|23353|23355|23356|23357|23358|23368|23380|23384|23388|23390|44440|44451|190256|193423|195231|195232|239060|239061|239063|239064|239066|239067|239068|239071|250863|269518|288297|288298|288300|288305|288307|288311|288319|288320|289063|289064|289066|289101|289102|292030|292031|292035|292036|292042|292046|292048|292049|292050|292139|292147|292154|292170|292172|292174|292175|292176|292177|353611|393209|393641|425518|452021|519009|519035|621905|630758|747922|827396|887729|887730|887731|887732|887733|887734", + "upstreamId": "23352|23353|23355|23356|23357|23358|23368|23380|23384|23388|23390|44440|44451|190256|193423|195231|195232|239060|239061|239063|239064|239066|239067|239068|239071|250863|269518|288297|288298|288300|288305|288307|288311|288319|288320|289063|289064|289066|289101|289102|292030|292031|292035|292036|292042|292046|292048|292049|292050|292139|292147|292154|292170|292172|292174|292175|292176|292177|353611|393209|393641|425518|452021|519009|519035|621905|630758|747922|827396|887729|887730|887731|887732|887733|887734", "text": "Neonatal severe hyperparathyroidism" }, { - "baseId": "23382|23383|23385|75244", + "upstreamId": "23382|23383|23385|75244", "text": "Hypocalcemia, autosomal dominant 1, with bartter syndrome" }, { - "baseId": "23388", + "upstreamId": "23388", "text": "Serum calcium level" }, { - "baseId": "23388|28796|44440|44449|44458|190256|193423|195231|195232|239060|239061|239063|239064|239066|239067|239068|239071|250863|254060|254061|269518|288297|288298|288300|288305|288307|288311|288319|288320|289063|289064|289066|289101|289102|292030|292031|292035|292036|292042|292046|292048|292049|292050|292139|292147|292154|292170|292172|292174|292175|292176|292177|298696|298697|298698|298705|298706|298713|298715|298719|298720|298723|301135|301146|301148|301159|301160|301164|301172|301181|301198|305548|305552|305554|305556|305663|305666|305667|305673|305674|305678|305685|313368|313370|325603|325604|325608|326630|326641|353611|353741|393209|393641|425518|426716|519009|519035|630758|721633|721634|721635|735325|735326|747922|827396|867597|867598|867599|867600|887729|887730|887731|887732|887733|887734|895179|895180|895181|895182|895183|895184|895185|895186|895187|895188|895189|895190|895191|895192|896175|896176", + "upstreamId": "23388|28796|44440|44449|44458|190256|193423|195231|195232|239060|239061|239063|239064|239066|239067|239068|239071|250863|254060|254061|269518|288297|288298|288300|288305|288307|288311|288319|288320|289063|289064|289066|289101|289102|292030|292031|292035|292036|292042|292046|292048|292049|292050|292139|292147|292154|292170|292172|292174|292175|292176|292177|298696|298697|298698|298705|298706|298713|298715|298719|298720|298723|301135|301146|301148|301159|301160|301164|301172|301181|301198|305548|305552|305554|305556|305663|305666|305667|305673|305674|305678|305685|313368|313370|325603|325604|325608|326630|326641|353611|353741|393209|393641|425518|426716|519009|519035|630758|721633|721634|721635|735325|735326|747922|827396|867597|867598|867599|867600|887729|887730|887731|887732|887733|887734|895179|895180|895181|895182|895183|895184|895185|895186|895187|895188|895189|895190|895191|895192|896175|896176", "text": "Familial isolated hypoparathyroidism" }, { - "baseId": "23398|452021", + "upstreamId": "23398|452021", "text": "Epilepsy, idiopathic generalized 8" }, { - "baseId": "23399", + "upstreamId": "23399", "text": "Leprosy, protection against" }, { - "baseId": "23400", + "upstreamId": "23400", "text": "Leprosy 5" }, { - "baseId": "23401|45838|316422|316423|316425|316427|316433|316435|323909|323924|329953|329961|331327|869558|869559|869560|869561", + "upstreamId": "23401|45838|316422|316423|316425|316427|316433|316435|323909|323924|329953|329961|331327|869558|869559|869560|869561", "text": "Retinal cone dystrophy 3A" }, { - "baseId": "23402|23403|23404|364176|364199|365310|365319|365321|365325|365329|365338|365462|365468|365488|365491|365495|365503|365506|365508|365514|365518|365579|365593|365612|365618|365632|365643|365653|365654|365667|365671|380420|404751|414815|414816|425205|425206|425391|438913|439119|439284|448462|448474|448476|448477|448478|448479|448480|448488|448489|448492|448494|448495|448499|448500|448508|448510|448511|448513|448516|448517|448518|448530|448598|448599|448601|448603|448606|448609|448611|448612|448613|448615|448617|448618|448619|448620|448622|448623|448624|448626|448627|448628|448629|448631|448632|448633|448639|448640|448641|448642|448645|448646|448670|448674|448680|448684|448697|448698|448700|448701|448709|448715|448719|448720|448723|448724|448727|448733|448737|448742|448749|498826|508772|508773|516254|516260|516263|516265|516266|516270|516271|516272|516273|516274|516275|516276|516277|516278|516279|516283|516285|516286|516289|516290|516291|516293|516295|516297|516299|516301|516304|516307|516365|516366|516375|516377|516379|516381|516385|557467|557472|557474|557476|557480|557482|557484|557527|557529|557531|557533|557535|557537|558681|558683|558685|558687|558689|558691|558693|558695|559174|559176|559178|559180|628369|628370|628371|628372|628373|628374|628375|628376|628377|628378|628379|628380|628381|628382|628383|628384|628385|628386|628387|628388|628389|628390|628391|628392|628393|628394|628395|628396|628397|628398|628399|628400|628401|628402|628403|628404|690699|690700|696950|696951|696953|696955|696956|696957|696958|696960|707648|707649|707650|707651|707653|719183|719184|732701|732702|732706|746723|746725|762144|762146|762147|777165|780804|780806|780807|787033|787077|794755|819026|819027|824630|824631|824632|824633|824634|824635|824636|824637|824638|824639|824640|824641|824642|824643|824644|824645|824646|824647|824648|824649|824650|824651|824652|824653|824654|824655|824656|824657|824658|824659|824660|824661|824662|824663|824664|824665|824666|824667|824668|824669|850789|850830|918667|922211|922212|922213|922214|922215|922216|922217|922218|922219|922220|922221|922222|922223|930749|930750|930751|930752|930753|930754|930755|930756|930757|930758|930759|930760|930761|930762|930763|930764|930765|930766|939838|942179|942180|942181|942182|942183|942184|942185|942186|942187|942188|942189|942190|942191|942192|942193|942194|952604|952605|952606|952607|972510", + "upstreamId": "23402|23403|23404|364176|364199|365310|365319|365321|365325|365329|365338|365462|365468|365488|365491|365495|365503|365506|365508|365514|365518|365579|365593|365612|365618|365632|365643|365653|365654|365667|365671|380420|404751|414815|414816|425205|425206|425391|438913|439119|439284|448462|448474|448476|448477|448478|448479|448480|448488|448489|448492|448494|448495|448499|448500|448508|448510|448511|448513|448516|448517|448518|448530|448598|448599|448601|448603|448606|448609|448611|448612|448613|448615|448617|448618|448619|448620|448622|448623|448624|448626|448627|448628|448629|448631|448632|448633|448639|448640|448641|448642|448645|448646|448670|448674|448680|448684|448697|448698|448700|448701|448709|448715|448719|448720|448723|448724|448727|448733|448737|448742|448749|498826|508772|508773|516254|516260|516263|516265|516266|516270|516271|516272|516273|516274|516275|516276|516277|516278|516279|516283|516285|516286|516289|516290|516291|516293|516295|516297|516299|516301|516304|516307|516365|516366|516375|516377|516379|516381|516385|557467|557472|557474|557476|557480|557482|557484|557527|557529|557531|557533|557535|557537|558681|558683|558685|558687|558689|558691|558693|558695|559174|559176|559178|559180|628369|628370|628371|628372|628373|628374|628375|628376|628377|628378|628379|628380|628381|628382|628383|628384|628385|628386|628387|628388|628389|628390|628391|628392|628393|628394|628395|628396|628397|628398|628399|628400|628401|628402|628403|628404|690699|690700|696950|696951|696953|696955|696956|696957|696958|696960|707648|707649|707650|707651|707653|719183|719184|732701|732702|732706|746723|746725|762144|762146|762147|777165|780804|780806|780807|787033|787077|794755|819026|819027|824630|824631|824632|824633|824634|824635|824636|824637|824638|824639|824640|824641|824642|824643|824644|824645|824646|824647|824648|824649|824650|824651|824652|824653|824654|824655|824656|824657|824658|824659|824660|824661|824662|824663|824664|824665|824666|824667|824668|824669|850789|850830|918667|922211|922212|922213|922214|922215|922216|922217|922218|922219|922220|922221|922222|922223|930749|930750|930751|930752|930753|930754|930755|930756|930757|930758|930759|930760|930761|930762|930763|930764|930765|930766|939838|942179|942180|942181|942182|942183|942184|942185|942186|942187|942188|942189|942190|942191|942192|942193|942194|952604|952605|952606|952607|972510", "text": "Encephalopathy, acute, infection-induced, 3, suceptibility to" }, { - "baseId": "23408|23409|48508|247078|408628|576151|576152|613396|626314|791225|791226|791227|903590|980345|980346", + "upstreamId": "23408|23409|48508|247078|408628|576151|576152|613396|626314|791225|791226|791227|903590|980345|980346", "text": "Warsaw breakage syndrome" }, { - "baseId": "23410|23410|23411|23412|23412|23413|47804|253214|253214|253218|253218|270642|306085|306088|306098|306101|306102|306104|306111|306112|306118|306119|306119|310130|310138|310146|310149|310151|310157|310158|310158|310160|310160|310171|310176|310176|315453|315463|315466|315467|315488|315502|315503|315504|315638|315639|315644|315645|315656|315660|315664|315665|315666|315668|458107|692527|692527|692528|692528|700686|835158|835159|835160|835161|835162|835163|835164|835165|835166|900578|900579|900580|900581|900582|900583|900584|900585|900586|900587|900588|900589|900590|900591|900592|900593|900594|900595|900596|900597|900598|900599|900600|900601|900602|900603|900604|900605|900606|900607|900608|900609|900610|900611|900611|900612|900613|903278|934450|934451|946230|946231|946232|946233|946234|946235|955528|955529|955530", + "upstreamId": "23410|23410|23411|23412|23412|23413|47804|253214|253214|253218|253218|270642|306085|306088|306098|306101|306102|306104|306111|306112|306118|306119|306119|310130|310138|310146|310149|310151|310157|310158|310158|310160|310160|310171|310176|310176|315453|315463|315466|315467|315488|315502|315503|315504|315638|315639|315644|315645|315656|315660|315664|315665|315666|315668|458107|692527|692527|692528|692528|700686|835158|835159|835160|835161|835162|835163|835164|835165|835166|900578|900579|900580|900581|900582|900583|900584|900585|900586|900587|900588|900589|900590|900591|900592|900593|900594|900595|900596|900597|900598|900599|900600|900601|900602|900603|900604|900605|900606|900607|900608|900609|900610|900611|900611|900612|900613|903278|934450|934451|946230|946231|946232|946233|946234|946235|955528|955529|955530", "text": "Klippel-Feil syndrome 1, autosomal dominant" }, { - "baseId": "23410|23414|23415|253214|253218|270642|306119|310158|310160|310176|458107|692527|692528|700686|835158|835159|835160|835161|835162|835163|835164|835165|835166|900611|934450|934451|946230|946231|946232|946233|946234|946235|955528|955529|955530", + "upstreamId": "23410|23414|23415|253214|253218|270642|306119|310158|310160|310176|458107|692527|692528|700686|835158|835159|835160|835161|835162|835163|835164|835165|835166|900611|934450|934451|946230|946231|946232|946233|946234|946235|955528|955529|955530", "text": "Microphthalmia, isolated 4" }, { - "baseId": "23410|39115|75114|75115|253214|253218|270642|306119|310158|310160|310176|458107|692527|692528|700686|835158|835159|835160|835161|835162|835163|835164|835165|835166|900611|934450|934451|946230|946231|946232|946233|946234|946235|955528|955529|955530", + "upstreamId": "23410|39115|75114|75115|253214|253218|270642|306119|310158|310160|310176|458107|692527|692528|700686|835158|835159|835160|835161|835162|835163|835164|835165|835166|900611|934450|934451|946230|946231|946232|946233|946234|946235|955528|955529|955530", "text": "Leber congenital amaurosis 17" }, { - "baseId": "23410|23412|306108|310135|310152|310156|315489|315496|315648|315649|315657|353847|578582|622481", + "upstreamId": "23410|23412|306108|310135|310152|310156|315489|315496|315648|315649|315657|353847|578582|622481", "text": "Klippel Feil syndrome" }, { - "baseId": "23416|23429|190284|257355|257356|257358|268853|335334|335335|335336|345188|345191|345196|345197|349911|349916|349919|349924|349929|350933|350934|350935|350936|350937|350938|586217|805112|886045|886046|886047|886048|886049|886050|886051|886052|886053|886054|886055|886056|886057|887456", + "upstreamId": "23416|23429|190284|257355|257356|257358|268853|335334|335335|335336|345188|345191|345196|345197|349911|349916|349919|349924|349929|350933|350934|350935|350936|350937|350938|586217|805112|886045|886046|886047|886048|886049|886050|886051|886052|886053|886054|886055|886056|886057|887456", "text": "Acromesomelic dysplasia, Hunter-Thompson type" }, { - "baseId": "23417|23421|23423|23424|23430|260804", + "upstreamId": "23417|23421|23423|23424|23430|260804", "text": "Brachydactyly type C" }, { - "baseId": "23418|23419|23429|190284|257355|257356|257358|268853|335334|335335|335336|345188|345191|345196|345197|349911|349916|349919|349924|349929|350933|350934|350935|350936|350937|350938|586217|612333|816493|886045|886046|886047|886048|886049|886050|886051|886052|886053|886054|886055|886056|886057|887456", + "upstreamId": "23418|23419|23429|190284|257355|257356|257358|268853|335334|335335|335336|345188|345191|345196|345197|349911|349916|349919|349924|349929|350933|350934|350935|350936|350937|350938|586217|612333|816493|886045|886046|886047|886048|886049|886050|886051|886052|886053|886054|886055|886056|886057|887456", "text": "Grebe syndrome" }, { - "baseId": "23420|23426|23429|23432|23433|190284|257355|257356|257358|268853|335334|335335|335336|345188|345191|345196|345197|349911|349916|349919|349924|349927|349929|350933|350934|350935|350936|350937|350938|424259|439689|586217|886045|886046|886047|886048|886049|886050|886051|886052|886053|886054|886055|886056|886057|887456", + "upstreamId": "23420|23426|23429|23432|23433|190284|257355|257356|257358|268853|335334|335335|335336|345188|345191|345196|345197|349911|349916|349919|349924|349927|349929|350933|350934|350935|350936|350937|350938|424259|439689|586217|886045|886046|886047|886048|886049|886050|886051|886052|886053|886054|886055|886056|886057|887456", "text": "Fibular hypoplasia and complex brachydactyly" }, { - "baseId": "23425|23428|23431", + "upstreamId": "23425|23428|23431", "text": "Symphalangism, proximal, 1B" }, { - "baseId": "23425|23427|23429|190284|257355|257356|257358|268853|335334|335335|335336|345188|345191|345196|345197|349911|349916|349919|349924|349929|350933|350934|350935|350936|350937|350938|586217|886045|886046|886047|886048|886049|886050|886051|886052|886053|886054|886055|886056|886057|887456", + "upstreamId": "23425|23427|23429|190284|257355|257356|257358|268853|335334|335335|335336|345188|345191|345196|345197|349911|349916|349919|349924|349929|350933|350934|350935|350936|350937|350938|586217|886045|886046|886047|886048|886049|886050|886051|886052|886053|886054|886055|886056|886057|887456", "text": "Multiple synostoses syndrome 2" }, { - "baseId": "23429", + "upstreamId": "23429", "text": "Osteoarthritis of hip" }, { - "baseId": "23429|39217|190284|215305|257355|257356|257358|264298|268853|272112|284777|294668|294669|294673|294674|294679|294682|294683|294691|294695|294696|294702|294703|294708|294710|294714|294730|294732|294733|294735|296213|296214|296223|296224|296231|296234|296235|296236|296245|296260|296262|296265|296266|296267|296273|296274|296278|296290|296291|299980|299981|299982|299987|300002|300003|300004|300006|300008|300011|300012|300020|300021|300022|300023|300024|300025|300026|300027|300028|300030|300035|300037|300039|300040|300043|300045|300046|300047|300049|300052|300055|300074|300075|300092|313508|319315|335334|335335|335336|345188|345191|345196|345197|349911|349916|349919|349924|349927|349929|350933|350934|350935|350936|350937|350938|353559|359571|360870|360897|520289|550229|586217|625969|691640|886045|886046|886047|886048|886049|886050|886051|886052|886053|886054|886055|886056|886057|887456|892537|892538|892539|892540|892541|892542|892543|892544|892545|892546|892547|892548|892549|892550|892551|892552|892553|892554|892555|892556|892557|892558|892559|892560|892561|892562|892563|892564|892565|892566|892567|892568|892569|892570|892571|892572|892573|892574|892575|892576|892577|892578|892579|896008|896009", + "upstreamId": "23429|39217|190284|215305|257355|257356|257358|264298|268853|272112|284777|294668|294669|294673|294674|294679|294682|294683|294691|294695|294696|294702|294703|294708|294710|294714|294730|294732|294733|294735|296213|296214|296223|296224|296231|296234|296235|296236|296245|296260|296262|296265|296266|296267|296273|296274|296278|296290|296291|299980|299981|299982|299987|300002|300003|300004|300006|300008|300011|300012|300020|300021|300022|300023|300024|300025|300026|300027|300028|300030|300035|300037|300039|300040|300043|300045|300046|300047|300049|300052|300055|300074|300075|300092|313508|319315|335334|335335|335336|345188|345191|345196|345197|349911|349916|349919|349924|349927|349929|350933|350934|350935|350936|350937|350938|353559|359571|360870|360897|520289|550229|586217|625969|691640|886045|886046|886047|886048|886049|886050|886051|886052|886053|886054|886055|886056|886057|887456|892537|892538|892539|892540|892541|892542|892543|892544|892545|892546|892547|892548|892549|892550|892551|892552|892553|892554|892555|892556|892557|892558|892559|892560|892561|892562|892563|892564|892565|892566|892567|892568|892569|892570|892571|892572|892573|892574|892575|892576|892577|892578|892579|896008|896009", "text": "Brachydactyly" }, { - "baseId": "23434|23435|23436|23437|23438|23439|70595|70596|70597|70598|70599|70600|134306|140740|171260|171261|171262|171263|192177|203827|336905|336910|346610|346615|350776|350777|350782|350783|350786|351823|351826|351829|377303|425232|507584|573834|886890|886891|886892|886893|886894|886895|886896", + "upstreamId": "23434|23435|23436|23437|23438|23439|70595|70596|70597|70598|70599|70600|134306|140740|171260|171261|171262|171263|192177|203827|336905|336910|346610|346615|350776|350777|350782|350783|350786|351823|351826|351829|377303|425232|507584|573834|886890|886891|886892|886893|886894|886895|886896", "text": "Unverricht-Lundborg syndrome" }, { - "baseId": "23434", + "upstreamId": "23434", "text": "Epilepsy, progressive myoclonic 1A (Unverricht and Lundborg)" }, { - "baseId": "23434|263323|409653|801158|801161|921260", + "upstreamId": "23434|263323|409653|801158|801161|921260", "text": "Dyskinesia" }, { - "baseId": "23434|169841|214799|214800|214801|214802|384443|409653|535682|590047|590048|590085|801161|904239|904355", + "upstreamId": "23434|169841|214799|214800|214801|214802|384443|409653|535682|590047|590048|590085|801161|904239|904355", "text": "Chorea" }, { - "baseId": "23434", + "upstreamId": "23434", "text": "Cerebral dysmyelination" }, { - "baseId": "23434|217214|217215|217216|263352|263361|480624|481174|481175|623724|965446|971487", + "upstreamId": "23434|217214|217215|217216|263352|263361|480624|481174|481175|623724|965446|971487", "text": "Encephalopathy" }, { - "baseId": "23435|75270|79480|79508|94304|99578|101111|134635|135473|135564|135573|135707|140512|168758|178089|191900|192525|192753|194022|195130|196078|201357|201786|201798|201883|202050|202080|202085|202093|202151|202160|207655|243706|243712|259332|259344|259367|259368|259370|265480|265506|313525|313526|363657|375648|380289|401964|402113|404385|408656|413413|426647|426648|426649|426650|426651|426652|426653|426654|426655|426656|426657|426658|426659|426660|426661|426662|426663|426664|426665|426666|426667|426668|426669|426670|426671|426672|426673|426674|426675|426676|426677|426678|426679|426680|426681|426682|426683|426684|426685|426686|426687|426688|426689|426690|426691|426692|426693|426694|426695|426696|426697|426698|426699|426700|426701|426702|426703|426704|426705|426706|551739", + "upstreamId": "23435|75270|79480|79508|94304|99578|101111|134635|135473|135564|135573|135707|140512|168758|178089|191900|192525|192753|194022|195130|196078|201357|201786|201798|201883|202050|202080|202085|202093|202151|202160|207655|243706|243712|259332|259344|259367|259368|259370|265480|265506|313525|313526|363657|375648|380289|401964|402113|404385|408656|413413|426647|426648|426649|426650|426651|426652|426653|426654|426655|426656|426657|426658|426659|426660|426661|426662|426663|426664|426665|426666|426667|426668|426669|426670|426671|426672|426673|426674|426675|426676|426677|426678|426679|426680|426681|426682|426683|426684|426685|426686|426687|426688|426689|426690|426691|426692|426693|426694|426695|426696|426697|426698|426699|426700|426701|426702|426703|426704|426705|426706|551739", "text": "Rolandic epilepsy" }, { - "baseId": "23440|23440|23441|23441|23443|23443|23444|192115|193289|250804|250805|250805|250807|250807|250808|250808|250809|250809|250810|250810|250811|250811|250813|259259|266844|269227|269227|273688|273688|287260|287261|287266|287266|287267|287270|287277|287278|287278|287281|287282|287953|287954|287955|287956|287971|287985|287985|287988|287988|288004|288004|288005|288005|288008|288008|288009|288010|290566|290566|290567|290567|290599|290599|290601|290609|290609|290613|290614|290614|290630|290649|290649|290854|290854|290855|290863|290863|290865|290865|290868|290887|290888|290889|290892|290892|290909|366791|366791|367942|406038|413540|440732|440733|440734|440735|440736|443314|443314|451441|451443|451446|451449|451452|451459|451461|451669|451672|451674|451674|451681|451681|451695|451804|451804|451808|451810|451812|451818|451820|451822|451879|451880|451884|451886|451888|451888|451898|451902|486244|518600|518601|518602|518602|518603|518604|518607|518609|518611|518614|518617|518620|518624|518625|518626|518627|518629|518631|518632|518633|518639|518669|518672|518678|518684|518691|518719|518720|518720|518775|518775|518777|518779|518786|518801|518803|518809|518811|518816|558287|558289|558291|558293|558295|558297|558299|558662|558664|558666|558668|558670|558672|558674|558676|558678|560968|560970|560972|560972|560977|562030|562039|562041|562042|562043|562055|562060|562063|562064|562065|576700|576701|576702|576702|630524|630525|630526|630527|630528|630528|630529|630530|630531|630532|630533|630534|630535|630536|630537|630538|630539|630540|630541|630542|630543|630544|630545|630546|630547|630548|630549|630550|630551|630552|630553|630554|630555|630556|630557|630558|630559|630560|630561|630562|630563|630564|630565|650953|651009|651012|651092|651093|691215|691217|691219|691219|691220|691221|691223|691223|695160|695161|695162|695163|695165|697663|697665|697666|697666|697668|719971|733575|733575|747776|747778|747781|747782|763436|774786|781470|781473|787338|795285|827029|827030|827031|827032|827033|827034|827035|827036|827037|827038|827039|827040|827041|827042|827043|827044|827045|827046|827047|827048|827049|827050|827051|827052|850887|851212|859197|861339|885461|885462|885463|885464|885465|885466|885467|885468|885469|885470|885471|885471|885472|885473|887399|887400|905847|922921|922922|922923|922924|922925|922926|922927|922928|922929|922930|922931|931586|931587|931588|931589|931590|931591|931592|931593|931594|931595|931596|931597|939914|940724|943127|943128|943129|943130|943131|943132|943133|943134|953228|953229|953230|953231|953232|953233|953234|953235", + "upstreamId": "23440|23440|23441|23441|23443|23443|23444|192115|193289|250804|250805|250805|250807|250807|250808|250808|250809|250809|250810|250810|250811|250811|250813|259259|266844|269227|269227|273688|273688|287260|287261|287266|287266|287267|287270|287277|287278|287278|287281|287282|287953|287954|287955|287956|287971|287985|287985|287988|287988|288004|288004|288005|288005|288008|288008|288009|288010|290566|290566|290567|290567|290599|290599|290601|290609|290609|290613|290614|290614|290630|290649|290649|290854|290854|290855|290863|290863|290865|290865|290868|290887|290888|290889|290892|290892|290909|366791|366791|367942|406038|413540|440732|440733|440734|440735|440736|443314|443314|451441|451443|451446|451449|451452|451459|451461|451669|451672|451674|451674|451681|451681|451695|451804|451804|451808|451810|451812|451818|451820|451822|451879|451880|451884|451886|451888|451888|451898|451902|486244|518600|518601|518602|518602|518603|518604|518607|518609|518611|518614|518617|518620|518624|518625|518626|518627|518629|518631|518632|518633|518639|518669|518672|518678|518684|518691|518719|518720|518720|518775|518775|518777|518779|518786|518801|518803|518809|518811|518816|558287|558289|558291|558293|558295|558297|558299|558662|558664|558666|558668|558670|558672|558674|558676|558678|560968|560970|560972|560972|560977|562030|562039|562041|562042|562043|562055|562060|562063|562064|562065|576700|576701|576702|576702|630524|630525|630526|630527|630528|630528|630529|630530|630531|630532|630533|630534|630535|630536|630537|630538|630539|630540|630541|630542|630543|630544|630545|630546|630547|630548|630549|630550|630551|630552|630553|630554|630555|630556|630557|630558|630559|630560|630561|630562|630563|630564|630565|650953|651009|651012|651092|651093|691215|691217|691219|691219|691220|691221|691223|691223|695160|695161|695162|695163|695165|697663|697665|697666|697666|697668|719971|733575|733575|747776|747778|747781|747782|763436|774786|781470|781473|787338|795285|827029|827030|827031|827032|827033|827034|827035|827036|827037|827038|827039|827040|827041|827042|827043|827044|827045|827046|827047|827048|827049|827050|827051|827052|850887|851212|859197|861339|885461|885462|885463|885464|885465|885466|885467|885468|885469|885470|885471|885471|885472|885473|887399|887400|905847|922921|922922|922923|922924|922925|922926|922927|922928|922929|922930|922931|931586|931587|931588|931589|931590|931591|931592|931593|931594|931595|931596|931597|939914|940724|943127|943128|943129|943130|943131|943132|943133|943134|953228|953229|953230|953231|953232|953233|953234|953235", "text": "Distal hereditary motor neuronopathy type 7B" }, { - "baseId": "23440|23441|23441|23443|23443|23444|29791|29792|29793|29794|29795|29796|29797|29798|29799|29800|29801|29802|29803|29804|29805|29807|29808|29809|29810|29811|29812|29813|29814|29815|29816|29817|29818|29819|29820|29821|29823|29824|29825|77626|77630|77635|77637|77638|77640|192115|193289|194306|250804|250805|250807|250808|250809|250810|250811|257449|259259|266844|269227|273688|287266|287278|287985|287988|288004|288005|288008|290566|290567|290599|290609|290614|290649|290854|290863|290865|290892|336570|336571|346279|346282|350534|350535|350537|351578|351579|351580|351583|366791|367942|406038|413540|433935|440732|440733|440734|440735|440736|443314|451441|451443|451446|451449|451452|451459|451461|451669|451672|451674|451681|451695|451804|451808|451810|451812|451818|451820|451822|451879|451880|451884|451886|451888|451898|451902|471562|486244|507475|512884|512965|512966|512967|518600|518601|518602|518603|518604|518607|518609|518611|518614|518617|518620|518624|518625|518626|518627|518629|518631|518632|518633|518639|518669|518672|518678|518684|518691|518719|518720|518775|518777|518779|518786|518801|518803|518809|518811|518816|533771|534335|540470|558287|558289|558291|558293|558295|558297|558299|558662|558664|558666|558668|558670|558672|558674|558676|558678|560968|560970|560972|560977|562030|562039|562041|562042|562043|562055|562060|562063|562064|562065|571472|573020|573721|575146|576700|576701|576702|577887|630524|630525|630526|630527|630528|630529|630530|630531|630532|630533|630534|630535|630536|630537|630538|630539|630540|630541|630542|630543|630544|630545|630546|630547|630548|630549|630550|630551|630552|630553|630554|630555|630556|630557|630558|630559|630560|630561|630562|630563|630564|630565|648885|648886|648887|650953|651009|651012|651092|651093|679942|691215|691217|691219|691220|691221|691223|694620|695160|695161|695162|695163|695165|695856|697663|697665|697666|697668|719971|728852|733575|747776|747778|747781|747782|763436|774786|781470|781473|787338|790296|795285|798017|798767|827029|827030|827031|827032|827033|827034|827035|827036|827037|827038|827039|827040|827041|827042|827043|827044|827045|827046|827047|827048|827049|827050|827051|827052|848662|848663|848664|850887|851212|859197|861339|861427|861428|861429|861430|861431|861432|861433|861434|861435|861436|861437|861438|885471|886669|886670|886671|886672|886673|886674|886675|886676|886677|886678|918783|922921|922922|922923|922924|922925|922926|922927|922928|922929|922930|922931|929280|931586|931587|931588|931589|931590|931591|931592|931593|931594|931595|931596|931597|939068|939914|940724|943127|943128|943129|943130|943131|943132|943133|943134|953228|953229|953230|953231|953232|953233|953234|953235|961894|964552|977296", + "upstreamId": "23440|23441|23441|23443|23443|23444|29791|29792|29793|29794|29795|29796|29797|29798|29799|29800|29801|29802|29803|29804|29805|29807|29808|29809|29810|29811|29812|29813|29814|29815|29816|29817|29818|29819|29820|29821|29823|29824|29825|77626|77630|77635|77637|77638|77640|192115|193289|194306|250804|250805|250807|250808|250809|250810|250811|257449|259259|266844|269227|273688|287266|287278|287985|287988|288004|288005|288008|290566|290567|290599|290609|290614|290649|290854|290863|290865|290892|336570|336571|346279|346282|350534|350535|350537|351578|351579|351580|351583|366791|367942|406038|413540|433935|440732|440733|440734|440735|440736|443314|451441|451443|451446|451449|451452|451459|451461|451669|451672|451674|451681|451695|451804|451808|451810|451812|451818|451820|451822|451879|451880|451884|451886|451888|451898|451902|471562|486244|507475|512884|512965|512966|512967|518600|518601|518602|518603|518604|518607|518609|518611|518614|518617|518620|518624|518625|518626|518627|518629|518631|518632|518633|518639|518669|518672|518678|518684|518691|518719|518720|518775|518777|518779|518786|518801|518803|518809|518811|518816|533771|534335|540470|558287|558289|558291|558293|558295|558297|558299|558662|558664|558666|558668|558670|558672|558674|558676|558678|560968|560970|560972|560977|562030|562039|562041|562042|562043|562055|562060|562063|562064|562065|571472|573020|573721|575146|576700|576701|576702|577887|630524|630525|630526|630527|630528|630529|630530|630531|630532|630533|630534|630535|630536|630537|630538|630539|630540|630541|630542|630543|630544|630545|630546|630547|630548|630549|630550|630551|630552|630553|630554|630555|630556|630557|630558|630559|630560|630561|630562|630563|630564|630565|648885|648886|648887|650953|651009|651012|651092|651093|679942|691215|691217|691219|691220|691221|691223|694620|695160|695161|695162|695163|695165|695856|697663|697665|697666|697668|719971|728852|733575|747776|747778|747781|747782|763436|774786|781470|781473|787338|790296|795285|798017|798767|827029|827030|827031|827032|827033|827034|827035|827036|827037|827038|827039|827040|827041|827042|827043|827044|827045|827046|827047|827048|827049|827050|827051|827052|848662|848663|848664|850887|851212|859197|861339|861427|861428|861429|861430|861431|861432|861433|861434|861435|861436|861437|861438|885471|886669|886670|886671|886672|886673|886674|886675|886676|886677|886678|918783|922921|922922|922923|922924|922925|922926|922927|922928|922929|922930|922931|929280|931586|931587|931588|931589|931590|931591|931592|931593|931594|931595|931596|931597|939068|939914|940724|943127|943128|943129|943130|943131|943132|943133|943134|953228|953229|953230|953231|953232|953233|953234|953235|961894|964552|977296", "text": "Amyotrophic lateral sclerosis type 1" }, { - "baseId": "23440|23441|23441|23443|23443|23444|23445|23446|34242|34243|34244|192115|193289|250804|250805|250805|250807|250807|250808|250808|250809|250809|250810|250810|250811|250811|250813|259257|259258|259259|259259|259260|266844|269227|269227|273688|273688|287260|287261|287266|287266|287267|287270|287277|287278|287278|287281|287282|287953|287954|287955|287956|287971|287985|287985|287988|287988|288004|288004|288005|288005|288008|288008|288009|288010|290566|290566|290567|290567|290599|290599|290601|290609|290609|290613|290614|290614|290630|290633|290649|290649|290854|290854|290855|290863|290863|290865|290865|290868|290887|290888|290889|290892|290892|290908|290909|366791|366791|367942|406038|413540|440732|440733|440734|440735|440736|443314|443314|451441|451443|451446|451449|451452|451459|451461|451669|451672|451674|451674|451681|451681|451695|451804|451804|451808|451810|451812|451818|451820|451822|451879|451880|451884|451886|451888|451888|451898|451902|486244|518600|518601|518602|518602|518603|518604|518607|518609|518611|518614|518617|518620|518624|518625|518626|518627|518629|518631|518632|518633|518639|518669|518672|518678|518684|518691|518719|518720|518720|518775|518775|518777|518779|518786|518801|518803|518809|518811|518816|558287|558289|558291|558293|558295|558297|558299|558662|558664|558666|558668|558670|558672|558674|558676|558678|560968|560970|560972|560972|560977|562030|562039|562041|562042|562043|562055|562060|562063|562064|562065|576700|576701|576702|576702|630524|630525|630526|630527|630528|630528|630529|630530|630531|630532|630533|630534|630535|630536|630537|630538|630539|630540|630541|630542|630543|630544|630545|630546|630547|630548|630549|630550|630551|630552|630553|630554|630555|630556|630557|630558|630559|630560|630561|630562|630563|630564|630565|650953|651009|651012|651092|651093|691215|691217|691219|691219|691220|691221|691223|691223|695160|695161|695162|695163|695165|697663|697665|697666|697666|697668|719971|733575|733575|747776|747778|747781|747782|763436|774786|781470|781473|787338|795285|827029|827030|827031|827032|827033|827034|827035|827036|827037|827038|827039|827040|827041|827042|827043|827044|827045|827046|827047|827048|827049|827050|827051|827052|850887|851212|859197|861339|885461|885462|885463|885464|885465|885466|885467|885468|885469|885470|885471|885471|885472|885473|887399|887400|922921|922922|922923|922924|922925|922926|922927|922928|922929|922930|922931|931586|931587|931588|931589|931590|931591|931592|931593|931594|931595|931596|931597|939914|940724|943127|943128|943129|943130|943131|943132|943133|943134|953228|953229|953230|953231|953232|953233|953234|953235|964207", + "upstreamId": "23440|23441|23441|23443|23443|23444|23445|23446|34242|34243|34244|192115|193289|250804|250805|250805|250807|250807|250808|250808|250809|250809|250810|250810|250811|250811|250813|259257|259258|259259|259259|259260|266844|269227|269227|273688|273688|287260|287261|287266|287266|287267|287270|287277|287278|287278|287281|287282|287953|287954|287955|287956|287971|287985|287985|287988|287988|288004|288004|288005|288005|288008|288008|288009|288010|290566|290566|290567|290567|290599|290599|290601|290609|290609|290613|290614|290614|290630|290633|290649|290649|290854|290854|290855|290863|290863|290865|290865|290868|290887|290888|290889|290892|290892|290908|290909|366791|366791|367942|406038|413540|440732|440733|440734|440735|440736|443314|443314|451441|451443|451446|451449|451452|451459|451461|451669|451672|451674|451674|451681|451681|451695|451804|451804|451808|451810|451812|451818|451820|451822|451879|451880|451884|451886|451888|451888|451898|451902|486244|518600|518601|518602|518602|518603|518604|518607|518609|518611|518614|518617|518620|518624|518625|518626|518627|518629|518631|518632|518633|518639|518669|518672|518678|518684|518691|518719|518720|518720|518775|518775|518777|518779|518786|518801|518803|518809|518811|518816|558287|558289|558291|558293|558295|558297|558299|558662|558664|558666|558668|558670|558672|558674|558676|558678|560968|560970|560972|560972|560977|562030|562039|562041|562042|562043|562055|562060|562063|562064|562065|576700|576701|576702|576702|630524|630525|630526|630527|630528|630528|630529|630530|630531|630532|630533|630534|630535|630536|630537|630538|630539|630540|630541|630542|630543|630544|630545|630546|630547|630548|630549|630550|630551|630552|630553|630554|630555|630556|630557|630558|630559|630560|630561|630562|630563|630564|630565|650953|651009|651012|651092|651093|691215|691217|691219|691219|691220|691221|691223|691223|695160|695161|695162|695163|695165|697663|697665|697666|697666|697668|719971|733575|733575|747776|747778|747781|747782|763436|774786|781470|781473|787338|795285|827029|827030|827031|827032|827033|827034|827035|827036|827037|827038|827039|827040|827041|827042|827043|827044|827045|827046|827047|827048|827049|827050|827051|827052|850887|851212|859197|861339|885461|885462|885463|885464|885465|885466|885467|885468|885469|885470|885471|885471|885472|885473|887399|887400|922921|922922|922923|922924|922925|922926|922927|922928|922929|922930|922931|931586|931587|931588|931589|931590|931591|931592|931593|931594|931595|931596|931597|939914|940724|943127|943128|943129|943130|943131|943132|943133|943134|953228|953229|953230|953231|953232|953233|953234|953235|964207", "text": "Perry syndrome" }, { - "baseId": "23441|23442|23443|23444|28745|28746|29074", + "upstreamId": "23441|23442|23443|23444|28745|28746|29074", "text": "Amyotrophic lateral sclerosis, susceptibility to" }, { - "baseId": "23447", + "upstreamId": "23447", "text": "Tolbutamide response" }, { - "baseId": "23447|23448", + "upstreamId": "23447|23448", "text": "Phenytoin response" }, { - "baseId": "23447", + "upstreamId": "23447", "text": "Glipizide response" }, { - "baseId": "23447", + "upstreamId": "23447", "text": "diclofenac response - Toxicity/ADR" }, { - "baseId": "23447", + "upstreamId": "23447", "text": "celecoxib response - Dosage" }, { - "baseId": "23447", + "upstreamId": "23447", "text": "Antiinflammatory agents, non-steroids response - Toxicity/ADR" }, { - "baseId": "23447", + "upstreamId": "23447", "text": "celecoxib response - Toxicity/ADR" }, { - "baseId": "23447", + "upstreamId": "23447", "text": "acenocoumarol response - Dosage, Toxicity/ADR" }, { - "baseId": "23447|227781", + "upstreamId": "23447|227781", "text": "acenocoumarol response - Toxicity/ADR" }, { - "baseId": "23447|227781", + "upstreamId": "23447|227781", "text": "warfarin response - Toxicity/ADR" }, { - "baseId": "23447|23448|227771|227774|269838|354244", + "upstreamId": "23447|23448|227771|227774|269838|354244", "text": "Flurbiprofen response" }, { - "baseId": "23447|23448|227771|227774|269838|354244", + "upstreamId": "23447|23448|227771|227774|269838|354244", "text": "Lesinurad response" }, { - "baseId": "23447|23448|227771|227774|269838|354244", + "upstreamId": "23447|23448|227771|227774|269838|354244", "text": "Piroxicam response" }, { - "baseId": "23448", + "upstreamId": "23448", "text": "warfarin response - Efficacy, Toxicity/ADR" }, { - "baseId": "23450", + "upstreamId": "23450", "text": "DRUG METABOLISM, ALTERED, CYP2C8-RELATED" }, { - "baseId": "23451|23453|23454|23455|23456|23457|23458|40287|48399|188820|190974|192890|193012|193262|193890|193891|195580|205166|215780|253969|253970|266564|266565|266566|266567|266568|267199|268053|270664|271583|271732|272331|273786|274222|274319|275099|311990|311992|311993|311997|311999|312003|312005|312010|312012|312013|312014|312018|312020|312021|317653|317656|317657|317662|317663|317664|317666|317671|317672|317673|317681|323615|323617|323626|323627|323628|323631|323635|323638|323639|324330|324331|324332|324337|324340|324341|324343|324350|324359|324360|324361|324366|324367|324373|488508|489466|490036|490813|491586|492189|492380|493488|583351|584281|585309|586885|587157|588153|589458|620373|620374|620827|679774|701512|701513|712547|724152|730721|737687|737688|752372|791021|866740|866741|866742|866743|866744|866745|866746|866747|866748|866749|866750|866751|866752|866753|866754|866755|866756|866757|866758|866759|866760|866761|866762|866763|866764|866765|868568|868569|868570|868571|868572|868573|868574|868575|868576|919311", + "upstreamId": "23451|23453|23454|23455|23456|23457|23458|40287|48399|188820|190974|192890|193012|193262|193890|193891|195580|205166|215780|253969|253970|266564|266565|266566|266567|266568|267199|268053|270664|271583|271732|272331|273786|274222|274319|275099|311990|311992|311993|311997|311999|312003|312005|312010|312012|312013|312014|312018|312020|312021|317653|317656|317657|317662|317663|317664|317666|317671|317672|317673|317681|323615|323617|323626|323627|323628|323631|323635|323638|323639|324330|324331|324332|324337|324340|324341|324343|324350|324359|324360|324361|324366|324367|324373|488508|489466|490036|490813|491586|492189|492380|493488|583351|584281|585309|586885|587157|588153|589458|620373|620374|620827|679774|701512|701513|712547|724152|730721|737687|737688|752372|791021|866740|866741|866742|866743|866744|866745|866746|866747|866748|866749|866750|866751|866752|866753|866754|866755|866756|866757|866758|866759|866760|866761|866762|866763|866764|866765|868568|868569|868570|868571|868572|868573|868574|868575|868576|919311", "text": "Dubin-Johnson syndrome" }, { - "baseId": "23459|23460|23461|23462|23463|23464|23465|267313|276389|276390|276391|276616|276619|276620|277128|277136|277137|277234|277235|277236|356980|356981|356982|356983|356984|356985|356986|356987|356988|356989|356990|356991|356992|356993|356994|356995|356996|540638|540640|540642|540644|540645|540646|540647|540651|540656|540657|540660|540661|540673|540674|540676|540678|612342|612343|626804|718194|729917|761188|789840|862253|862254|862255|862256|862257|862258|965348|970194|970195|977442", + "upstreamId": "23459|23460|23461|23462|23463|23464|23465|267313|276389|276390|276391|276616|276619|276620|277128|277136|277137|277234|277235|277236|356980|356981|356982|356983|356984|356985|356986|356987|356988|356989|356990|356991|356992|356993|356994|356995|356996|540638|540640|540642|540644|540645|540646|540647|540651|540656|540657|540660|540661|540673|540674|540676|540678|612342|612343|626804|718194|729917|761188|789840|862253|862254|862255|862256|862257|862258|965348|970194|970195|977442", "text": "Pyknodysostosis" }, { - "baseId": "23466|23467|23468|23470|23476|23484|39114|132606|213835|213837|589820|614028|614030|614032|965414", + "upstreamId": "23466|23467|23468|23470|23476|23484|39114|132606|213835|213837|589820|614028|614030|614032|965414", "text": "Charcot-Marie-Tooth disease, type IA" }, { - "baseId": "23466|23473|29225|29233|53814|135065|141945|213835|238157|244249|276934|276937|276938|276943|276944|277211|277215|277216|277906|277907|277912|277913|277914|278013|278014|278015|278016|278027|353066|360806|361005|515330|625074|862595|862596|862597|862598|862599|862600|862601|862602|862603|862604|918578|918579", + "upstreamId": "23466|23473|29225|29233|53814|135065|141945|213835|238157|244249|276934|276937|276938|276943|276944|277211|277215|277216|277906|277907|277912|277913|277914|278013|278014|278015|278016|278027|353066|360806|361005|515330|625074|862595|862596|862597|862598|862599|862600|862601|862602|862603|862604|918578|918579", "text": "Roussy-L\u00e9vy syndrome" }, { - "baseId": "23467|23470|23472|23473|23475|23476|23478|23483|29205|29206|29208|29212|29213|29214|29215|29216|29219|29220|29222|29223|29224|29225|29226|29227|29230|29233|29239|31789|31791|31792|38402|49430|49436|49439|49442|49443|49444|49446|53814|77593|135065|141945|142213|185951|185952|186243|186244|191366|192233|192234|204407|204408|204409|212075|212076|213241|213453|213517|213794|213795|213835|213837|214923|214924|221083|221981|221982|222558|222559|231450|237458|238156|238157|242575|242576|244249|244253|244254|244557|244559|244560|245013|245139|253796|270003|276943|277216|277906|278016|278027|304957|304958|304973|304974|304975|304979|304980|304991|304992|305003|305004|305005|308674|308688|310595|313936|313937|315762|315780|315781|321847|321857|324035|324057|324065|324082|327314|327315|330287|333669|333690|337130|337131|337134|337137|337141|337142|337143|337144|340454|341835|343368|343369|343372|343373|343376|343377|343380|344947|344960|344962|344963|344969|353066|359218|371720|375769|375772|375773|375775|378084|378091|390835|390836|390840|390842|390844|390849|390850|390852|390858|390859|390862|397323|397504|397512|397736|397737|401543|402264|404969|407875|407876|421187|421794|433525|437825|440400|440401|440403|440404|440405|440408|441377|441940|442659|444624|447245|447248|447257|447324|447367|447368|447420|447429|447431|447434|447442|459945|459960|460099|460366|460790|460793|466342|467061|467108|467286|467288|491084|503371|515225|515228|515230|515232|515234|515239|515240|515241|515242|515243|515246|515252|515253|515259|515261|515263|515330|515335|515337|520902|525199|525200|525382|525491|525673|525677|525680|525681|527026|530579|530589|530625|530750|530827|530868|531082|531096|531099|531103|540438|556660|556662|556664|556666|556719|556721|556723|556725|557009|557010|557012|557014|558196|558198|558200|558202|562971|563802|564625|564627|566353|566357|566367|569691|569693|569697|570742|570764|570773|570776|570790|570862|574244|574305|574306|574308|574310|577154|588854|613532|619958|621911|621912|621913|621914|621915|625018|625026|625050|625053|625076|625083|625084|625085|625202|625368|625377|625393|625402|627021|627022|627023|627024|627025|627026|627027|627028|638985|638986|638987|638988|638989|638990|638991|638992|638993|645317|645318|645319|645320|645321|648104|650641|650671|650673|652616|652786|652789|653330|682957|682962|682969|682986|682988|682989|682991|683000|683011|683014|683016|683017|683021|683040|683043|683050|683051|683053|683068|683070|683072|683075|683098|683099|683103|683105|683107|683108|683111|683114|684183|684186|692868|694045|694046|695012|745799|799140|800386|815847|818849|818850|820981|820982|822931|822932|822933|822934|822935|822936|822937|822938|822939|822940|822941|822942|822943|822944|836991|836992|836993|836994|836995|836996|836997|836998|836999|837000|837001|837002|837003|844718|844719|844720|851157|876804|876805|876806|876807|876808|876809|876810|876811|876812|876813|876814|876815|876816|876817|876818|876819|876820|905111|905277|921717|921718|921719|921720|921721|925841|925842|925843|925844|925845|925846|928065|930122|930123|935081|935082|935083|935084|935085|935086|937726|937727|939778|939779|941546|941547|941548|946954|946955|946956|946957|946958|946959|946960|949706|949707|952125|956114|956115|956116|957987|957988|960410", + "upstreamId": "23467|23470|23472|23473|23475|23476|23478|23483|29205|29206|29208|29212|29213|29214|29215|29216|29219|29220|29222|29223|29224|29225|29226|29227|29230|29233|29239|31789|31791|31792|38402|49430|49436|49439|49442|49443|49444|49446|53814|77593|135065|141945|142213|185951|185952|186243|186244|191366|192233|192234|204407|204408|204409|212075|212076|213241|213453|213517|213794|213795|213835|213837|214923|214924|221083|221981|221982|222558|222559|231450|237458|238156|238157|242575|242576|244249|244253|244254|244557|244559|244560|245013|245139|253796|270003|276943|277216|277906|278016|278027|304957|304958|304973|304974|304975|304979|304980|304991|304992|305003|305004|305005|308674|308688|310595|313936|313937|315762|315780|315781|321847|321857|324035|324057|324065|324082|327314|327315|330287|333669|333690|337130|337131|337134|337137|337141|337142|337143|337144|340454|341835|343368|343369|343372|343373|343376|343377|343380|344947|344960|344962|344963|344969|353066|359218|371720|375769|375772|375773|375775|378084|378091|390835|390836|390840|390842|390844|390849|390850|390852|390858|390859|390862|397323|397504|397512|397736|397737|401543|402264|404969|407875|407876|421187|421794|433525|437825|440400|440401|440403|440404|440405|440408|441377|441940|442659|444624|447245|447248|447257|447324|447367|447368|447420|447429|447431|447434|447442|459945|459960|460099|460366|460790|460793|466342|467061|467108|467286|467288|491084|503371|515225|515228|515230|515232|515234|515239|515240|515241|515242|515243|515246|515252|515253|515259|515261|515263|515330|515335|515337|520902|525199|525200|525382|525491|525673|525677|525680|525681|527026|530579|530589|530625|530750|530827|530868|531082|531096|531099|531103|540438|556660|556662|556664|556666|556719|556721|556723|556725|557009|557010|557012|557014|558196|558198|558200|558202|562971|563802|564625|564627|566353|566357|566367|569691|569693|569697|570742|570764|570773|570776|570790|570862|574244|574305|574306|574308|574310|577154|588854|613532|619958|621911|621912|621913|621914|621915|625018|625026|625050|625053|625076|625083|625084|625085|625202|625368|625377|625393|625402|627021|627022|627023|627024|627025|627026|627027|627028|638985|638986|638987|638988|638989|638990|638991|638992|638993|645317|645318|645319|645320|645321|648104|650641|650671|650673|652616|652786|652789|653330|682957|682962|682969|682986|682988|682989|682991|683000|683011|683014|683016|683017|683021|683040|683043|683050|683051|683053|683068|683070|683072|683075|683098|683099|683103|683105|683107|683108|683111|683114|684183|684186|692868|694045|694046|695012|745799|799140|800386|815847|818849|818850|820981|820982|822931|822932|822933|822934|822935|822936|822937|822938|822939|822940|822941|822942|822943|822944|836991|836992|836993|836994|836995|836996|836997|836998|836999|837000|837001|837002|837003|844718|844719|844720|851157|876804|876805|876806|876807|876808|876809|876810|876811|876812|876813|876814|876815|876816|876817|876818|876819|876820|905111|905277|921717|921718|921719|921720|921721|925841|925842|925843|925844|925845|925846|928065|930122|930123|935081|935082|935083|935084|935085|935086|937726|937727|939778|939779|941546|941547|941548|946954|946955|946956|946957|946958|946959|946960|949706|949707|952125|956114|956115|956116|957987|957988|960410", "text": "Charcot-Marie-Tooth disease, type I" }, { - "baseId": "23469|23470|23474|23476|23482|23484|23485|77741|249644|327314|327315|337130|337131|337134|337137|337141|337142|337143|337144|343368|343369|343372|343373|343376|343377|343380|344947|344960|344962|344963|344969|378084|401543|613851|613982|614029|614031|614033|625366|625370|625371|791676|876804|876805|876806|876807|876808|876809|876810|876811|876812|876813|876814|876815|876816|876817|876818|876819|876820|906321", + "upstreamId": "23469|23470|23474|23476|23482|23484|23485|77741|249644|327314|327315|337130|337131|337134|337137|337141|337142|337143|337144|343368|343369|343372|343373|343376|343377|343380|344947|344960|344962|344963|344969|378084|401543|613851|613982|614029|614031|614033|625366|625370|625371|791676|876804|876805|876806|876807|876808|876809|876810|876811|876812|876813|876814|876815|876816|876817|876818|876819|876820|906321", "text": "Hereditary liability to pressure palsies" }, { - "baseId": "23469", + "upstreamId": "23469", "text": "Polyneuropathy, inflammatory demyelinating" }, { - "baseId": "23470", + "upstreamId": "23470", "text": "Charcot-Marie-Tooth disease, type 1a, autosomal recessive" }, { - "baseId": "23471|23472|23473|23477|23478|29208|29209", + "upstreamId": "23471|23472|23473|23477|23478|29208|29209", "text": "Dejerine-Sottas syndrome, autosomal dominant" }, { - "baseId": "23475|23479|23480|23483|39114|204478|426772", + "upstreamId": "23475|23479|23480|23483|39114|204478|426772", "text": "Charcot-Marie-Tooth disease and deafness" }, { - "baseId": "23476|29067|29068|29069|29072|49659|49660|49660|77568|77570|77573|77574|77576|77578|77583|77585|77586|77589|77591|77592|77593|77595|165492|165493|190114|212633|221757|221757|221758|221759|231697|231697|240337|244521|271257|313846|354198|359731|369456|369891|371764|371768|371773|396414|396416|396498|396501|396504|396510|396514|396771|396772|396778|438381|441226|441227|441228|457720|458304|458307|458312|458315|458357|458365|458664|501992|523409|523411|523414|523419|523725|523974|523976|523978|523981|523983|523988|523991|562265|562270|562272|562273|562276|562795|564967|564969|564971|564976|567732|567738|567747|637022|637023|637024|637025|637026|637027|637028|637029|637030|637031|637032|637033|637034|637035|637036|637037|637038|637039|637040|637041|651712|651836|683998|766741|783078|834550|834551|834552|834553|834554|834555|834556|834557|834558|834559|834560|834561|834562|834563|834564|834565|834566|851682|899369|925144|925145|925146|934233|934234|934235|946000|946001|946002|946003|946004|946005|946006|955385|955386|964301", + "upstreamId": "23476|29067|29068|29069|29072|49659|49660|49660|77568|77570|77573|77574|77576|77578|77583|77585|77586|77589|77591|77592|77593|77595|165492|165493|190114|212633|221757|221757|221758|221759|231697|231697|240337|244521|271257|313846|354198|359731|369456|369891|371764|371768|371773|396414|396416|396498|396501|396504|396510|396514|396771|396772|396778|438381|441226|441227|441228|457720|458304|458307|458312|458315|458357|458365|458664|501992|523409|523411|523414|523419|523725|523974|523976|523978|523981|523983|523988|523991|562265|562270|562272|562273|562276|562795|564967|564969|564971|564976|567732|567738|567747|637022|637023|637024|637025|637026|637027|637028|637029|637030|637031|637032|637033|637034|637035|637036|637037|637038|637039|637040|637041|651712|651836|683998|766741|783078|834550|834551|834552|834553|834554|834555|834556|834557|834558|834559|834560|834561|834562|834563|834564|834565|834566|851682|899369|925144|925145|925146|934233|934234|934235|946000|946001|946002|946003|946004|946005|946006|955385|955386|964301", "text": "Charcot-Marie-Tooth disease type 2E" }, { - "baseId": "23481", + "upstreamId": "23481", "text": "Charcot-Marie-Tooth disease, type 1a, with focally folded myelin sheaths" }, { - "baseId": "23483", + "upstreamId": "23483", "text": "PMP22-Related Disorders" }, { - "baseId": "23486|23487|39113|249980|267189|270847|272086|273530|359074|365343|414803|418809|418809|418810|448226|489784|492837|609191|628136|628137|628138|628138|628139|628140|628141|628142|654212|690635|690636|690637|696788|746547|780725|824218|824219|824220|824221|824222|824223|824224|824225|824226|824227|824228|824229|918642|922113|922114|930589|930590|930591|930592|930593|930594|930595|942025|942026|942027|942028|952463|971542", + "upstreamId": "23486|23487|39113|249980|267189|270847|272086|273530|359074|365343|414803|418809|418809|418810|448226|489784|492837|609191|628136|628137|628138|628138|628139|628140|628141|628142|654212|690635|690636|690637|696788|746547|780725|824218|824219|824220|824221|824222|824223|824224|824225|824226|824227|824228|824229|918642|922113|922114|930589|930590|930591|930592|930593|930594|930595|942025|942026|942027|942028|952463|971542", "text": "Congenital primary aphakia" }, { - "baseId": "23490|23491|23492|23495|23496|23498|39112|181384|456064|486790|962066|962069|980581", + "upstreamId": "23490|23491|23492|23495|23496|23498|39112|181384|456064|486790|962066|962069|980581", "text": "Anterior segment dysgenesis 3" }, { - "baseId": "23493|23494|23497|23499|23500|39112|106553|177717|177719|190372|259842|270898|362195|362196|362197|362198|362199|362200|362201|362202|362203|362204|362205|362206|362207|362208|362209|362210|415036|424244|455426|455532|455761|456064|456064|456254|456255|486789|521484|521490|521491|521792|521798|521801|521807|550782|560652|563468|563473|582906|634761|634762|634763|654128|691969|691970|721868|765582|831733|831734|831735|831736|831737|831738|831739|831740|831741|904270|919016|919017|933242|933243|980581", + "upstreamId": "23493|23494|23497|23499|23500|39112|106553|177717|177719|190372|259842|270898|362195|362196|362197|362198|362199|362200|362201|362202|362203|362204|362205|362206|362207|362208|362209|362210|415036|424244|455426|455532|455761|456064|456064|456254|456255|486789|521484|521490|521491|521792|521798|521801|521807|550782|560652|563468|563473|582906|634761|634762|634763|654128|691969|691970|721868|765582|831733|831734|831735|831736|831737|831738|831739|831740|831741|904270|919016|919017|933242|933243|980581", "text": "Axenfeld-Rieger syndrome type 3" }, { - "baseId": "23501|23502|23503|23504|230673|326503|326532|336303|336309|336327|336349|336352|342536|342543|342561|344160|344180|361003|551792|677038|677058|679795|740408|788963|788964|788965|788966|788967|788968|788969|788970|788971|788972|788973|788974|788975|788976|801561|805106|857705|857706|857707|857708|857709|904753|904754|962047|963335|963336|963337|963338|965232|965233|965626", + "upstreamId": "23501|23502|23503|23504|230673|326503|326532|336303|336309|336327|336349|336352|342536|342543|342561|344160|344180|361003|551792|677038|677058|679795|740408|788963|788964|788965|788966|788967|788968|788969|788970|788971|788972|788973|788974|788975|788976|801561|805106|857705|857706|857707|857708|857709|904753|904754|962047|963335|963336|963337|963338|965232|965233|965626", "text": "Persistent fetal circulation syndrome" }, { - "baseId": "23505|39111|165487|165488|165489|192098|194890|213217|213220|213221|222532|222533|242494|244988|244990|244999|267234|272210|326182|326184|326192|326194|326195|326197|326198|335862|335871|335876|335878|335882|335885|335888|335889|335893|335895|335897|335900|342247|342248|342252|342254|342256|342262|343797|343802|343808|343812|343816|343818|343825|343833|343834|343836|343842|343847|343848|343849|375578|377737|377740|445605|466646|505726|530520|540466|570422|620560|656385|677307|688633|688639|693916|799083|875884|875885|875886|875887|875888|875889|875890|875891|875892|875893|875894|875895|875896", + "upstreamId": "23505|39111|165487|165488|165489|192098|194890|213217|213220|213221|222532|222533|242494|244988|244990|244999|267234|272210|326182|326184|326192|326194|326195|326197|326198|335862|335871|335876|335878|335882|335885|335888|335889|335893|335895|335897|335900|342247|342248|342252|342254|342256|342262|343797|343802|343808|343812|343816|343818|343825|343833|343834|343836|343842|343847|343848|343849|375578|377737|377740|445605|466646|505726|530520|540466|570422|620560|656385|677307|688633|688639|693916|799083|875884|875885|875886|875887|875888|875889|875890|875891|875892|875893|875894|875895|875896", "text": "Charcot-Marie-Tooth disease, type 2N" }, { - "baseId": "23506|205252|205702", + "upstreamId": "23506|205252|205702", "text": "Lipodystrophy, congenital generalized, type 3" }, { - "baseId": "23507|23508|23509|23510|23511|23512|23513|191808|191919|213592|213592|214539|215001|253525|253526|253527|253532|264328|264531|267452|268539|268541|308235|308243|308244|308246|308247|308255|312609|312619|312628|312631|312632|312633|318524|318528|318529|318534|318546|319032|319044|319050|319056|444478|459539|459541|459547|524550|524557|524945|525101|525102|525108|563943|563947|565887|569010|584135|638217|638218|638219|638221|692665|861363|901964|901965|901966|901967|901968|901969|901970|901971|901972|901973|901974|901975|903395|903396|903397|903398|903399|903400|919228|964331", + "upstreamId": "23507|23508|23509|23510|23511|23512|23513|191808|191919|213592|213592|214539|215001|253525|253526|253527|253532|264328|264531|267452|268539|268541|308235|308243|308244|308246|308247|308255|312609|312619|312628|312631|312632|312633|318524|318528|318529|318534|318546|319032|319044|319050|319056|444478|459539|459541|459547|524550|524557|524945|525101|525102|525108|563943|563947|565887|569010|584135|638217|638218|638219|638221|692665|861363|901964|901965|901966|901967|901968|901969|901970|901971|901972|901973|901974|901975|903395|903396|903397|903398|903399|903400|919228|964331", "text": "Inclusion body myopathy with early-onset Paget disease with or without frontotemporal dementia 1" }, { - "baseId": "23507|23508|23512|23513|191808|191919|253525|253530|264531|267452|268539|271637|318534|319032|319044|459155|459541|460014|460015|492903|524547|524552|524559|525095|563957|585434|586972|588557|638220|692665|700987|723557|737120|759748|767391|779588|836083|836084|836085|836086|836087|851337|901972|925568|925569|934747|934748|934749|934750|946600|946601|946602|955811|955812", + "upstreamId": "23507|23508|23512|23513|191808|191919|253525|253530|264531|267452|268539|271637|318534|319032|319044|459155|459541|460014|460015|492903|524547|524552|524559|525095|563957|585434|586972|588557|638220|692665|700987|723557|737120|759748|767391|779588|836083|836084|836085|836086|836087|851337|901972|925568|925569|934747|934748|934749|934750|946600|946601|946602|955811|955812", "text": "Inclusion body myopathy with early-onset Paget disease and frontotemporal dementia" }, { - "baseId": "23507|23507|23508|23508|23512|23512|23513|39108|39109|191808|191808|191919|191919|213592|214539|215001|253525|253525|253526|253527|253530|253532|264328|264328|264531|267452|267452|268539|268539|268541|271637|308235|308243|308244|308246|308247|308255|312609|312619|312628|312631|312632|312633|318524|318528|318529|318534|318534|318546|319032|319032|319044|319044|319050|319056|384436|444478|459155|459539|459541|459541|459547|460014|460015|492903|524547|524550|524552|524557|524559|524945|525095|525101|525102|525108|563943|563947|563957|565887|569010|584135|585434|586972|588557|638217|638218|638219|638220|638221|692665|692665|700987|723557|737120|759748|767391|779588|836083|836084|836085|836086|836087|851337|861362|901964|901965|901966|901967|901968|901969|901970|901971|901972|901972|901973|901974|901975|903395|903396|903397|903398|903399|903400|925568|925569|934747|934748|934749|934750|946600|946601|946602|955811|955812", + "upstreamId": "23507|23507|23508|23508|23512|23512|23513|39108|39109|191808|191808|191919|191919|213592|214539|215001|253525|253525|253526|253527|253530|253532|264328|264328|264531|267452|267452|268539|268539|268541|271637|308235|308243|308244|308246|308247|308255|312609|312619|312628|312631|312632|312633|318524|318528|318529|318534|318534|318546|319032|319032|319044|319044|319050|319056|384436|444478|459155|459539|459541|459541|459547|460014|460015|492903|524547|524550|524552|524557|524559|524945|525095|525101|525102|525108|563943|563947|563957|565887|569010|584135|585434|586972|588557|638217|638218|638219|638220|638221|692665|692665|700987|723557|737120|759748|767391|779588|836083|836084|836085|836086|836087|851337|861362|901964|901965|901966|901967|901968|901969|901970|901971|901972|901972|901973|901974|901975|903395|903396|903397|903398|903399|903400|925568|925569|934747|934748|934749|934750|946600|946601|946602|955811|955812", "text": "Amyotrophic lateral sclerosis 14, with or without frontotemporal dementia" }, { - "baseId": "23515|142925|142927|186287|188710|188716|188722|188723|188726|188733|188734|188743|188744|189373|189376|189377|199810|213468|222853|243578|259046|259049|259050|259052|259054|259059|259063|335276|335279|335290|345097|345102|345105|345107|345111|345112|345116|349881|349882|349884|349885|350900|350901|350904|350907|350909|350911|350913|350918|376975|379690|424903|551796|609299|656631|800173|800174|886010|886011|886012|886013|886014|886015|886016|886017|886018|886019|886020|886021|886022|886023|887454", + "upstreamId": "23515|142925|142927|186287|188710|188716|188722|188723|188726|188733|188734|188743|188744|189373|189376|189377|199810|213468|222853|243578|259046|259049|259050|259052|259054|259059|259063|335276|335279|335290|345097|345102|345105|345107|345111|345112|345116|349881|349882|349884|349885|350900|350901|350904|350907|350909|350911|350913|350918|376975|379690|424903|551796|609299|656631|800173|800174|886010|886011|886012|886013|886014|886015|886016|886017|886018|886019|886020|886021|886022|886023|887454", "text": "Long QT syndrome 12" }, { - "baseId": "23516|23517|23518|23519|23521|23522|23524|23525|34307|34308|34309|34310|34311|106599|136651|181440|194949|244008|266785|274813|330513|339018|363908|547270|547276|547284|547290|547357|547359|547365|547849|547851|547867|642685|652325|714233|725798|820646|841724|841725|872544|903598|972198|972199|972200|972201|972202|979527|979528|979529|979530|979531", + "upstreamId": "23516|23517|23518|23519|23521|23522|23524|23525|34307|34308|34309|34310|34311|106599|136651|181440|194949|244008|266785|274813|330513|339018|363908|547270|547276|547284|547290|547357|547359|547365|547849|547851|547867|642685|652325|714233|725798|820646|841724|841725|872544|903598|972198|972199|972200|972201|972202|979527|979528|979529|979530|979531", "text": "Niemann-Pick disease, type C2" }, { - "baseId": "23526|23527|23528|23529|23536|23538|23542|23543|23544|23546|23549|23552|23559|79314|79317|79320|79324|79326|79327|79330|99466|134003|134004|134005|134009|193096|193096|208540|248801|256789|264732|376191|376243|376246|377390|410491|410492|422242|426285|430969|442048|442070|446057|446061|552215|577721|672109|919827|919828|919829|919830|919831|920400|920401|964508|980555|983696", + "upstreamId": "23526|23527|23528|23529|23536|23538|23542|23543|23544|23546|23549|23552|23559|79314|79317|79320|79324|79326|79327|79330|99466|134003|134004|134005|134009|193096|193096|208540|248801|256789|264732|376191|376243|376246|377390|410491|410492|422242|426285|430969|442048|442070|446057|446061|552215|577721|672109|919827|919828|919829|919830|919831|920400|920401|964508|980555|983696", "text": "Familial hemiplegic migraine type 1" }, { - "baseId": "23527", + "upstreamId": "23527", "text": "Migraine, sporadic hemiplegic, with progressive cerebellar ataxia" }, { - "baseId": "23527|23527|23530|23531|23534|23535|23537|23539|23540|23541|23543|23545|23546|23546|23547|23549|23549|23550|23551|23553|23554|23555|23556|23557|23558|79309|79310|79311|79311|79312|79313|79315|79316|79316|79317|79321|79322|79323|79323|79325|79325|79328|79329|79331|79331|79332|79333|79333|79334|91842|99465|99466|99466|99467|133993|133994|133996|133997|133998|133999|134001|134003|134003|134004|134004|134005|134005|134006|134007|134008|134009|177164|177532|185732|185733|185733|185734|191883|192090|192631|192632|192633|192734|192735|193096|193096|193096|194021|194189|194675|208539|208540|213651|213651|248801|256787|256788|256789|256789|260210|264734|266969|266972|267411|267413|267747|267751|268395|268604|269763|270514|270928|270971|271647|271779|271799|273020|273117|273653|274636|360387|360395|360398|360515|361043|361322|361323|361324|363833|364143|376191|376198|376199|376234|376238|376243|376243|376261|376272|376273|376274|376287|376288|376310|376311|376321|376326|377218|377233|377235|377235|377237|377242|377256|377257|377259|377266|377276|377284|377297|377306|377312|377369|377389|377390|377390|377403|377416|377421|377461|377469|377470|377475|377488|377501|377505|377507|377515|379318|379318|379328|379340|379361|379363|379381|379394|379395|379400|379406|379423|379430|379440|379453|379478|410478|410481|410482|410484|410485|410489|410490|410491|410491|410492|410499|410504|410512|410515|410516|410519|410520|410521|410527|410528|410530|410534|410540|413495|415626|415628|415630|415631|415633|422239|422242|422242|422243|426283|426285|426288|430128|430130|430133|442048|442051|442052|442054|442058|442059|442062|442063|442068|442070|442071|442076|442079|442080|442082|442083|442085|442086|442087|442088|442565|446042|446045|446046|446054|446055|446057|446057|446059|446061|468502|468507|468509|468511|468512|468515|468517|468520|468525|468529|468530|469406|469410|469414|469418|469427|469430|469435|469437|469439|469456|469463|469816|469827|469830|469833|469834|469846|469850|469857|469858|469861|469868|469874|469876|469896|470453|470470|470475|491610|491801|492026|492275|494058|506779|506786|507172|507176|507198|507524|507552|507580|532711|532721|532722|532728|532729|532730|532732|532734|532737|532743|532757|532767|532769|532773|532785|532786|532805|532808|532811|533145|533146|533150|533152|533157|533158|533167|533168|533172|533177|536091|536183|536183|536978|538484|551795|553275|553399|570517|570532|570535|570542|570543|570548|570549|570552|570554|570563|572233|572238|572239|572247|572248|572255|572256|572258|572260|572264|572265|572934|572936|572939|572944|572945|572946|572947|572949|572950|572951|572953|572954|572956|572960|572962|572964|574784|574880|574882|574884|574886|574887|574888|574889|574890|574891|574892|574893|574894|576271|577709|577712|577718|577725|577735|578564|580333|580341|580401|580440|580480|580489|580491|588767|590086|609152|613115|613615|621916|625824|647723|647724|647725|647726|647727|647728|647729|647730|647731|647732|647733|647734|647735|647736|647737|647738|647739|647740|647741|647742|647743|647744|647745|647746|647747|647748|647749|647750|647751|647752|647753|647754|647755|647756|647757|647758|647759|647760|647761|647762|647763|647764|647765|647766|647767|647768|647769|647770|647771|647772|647773|647774|652944|653011|653151|653154|653604|654868|670091|672109|679806|704766|704768|704769|704770|704771|704772|727919|727920|727921|741605|741606|756734|756736|756740|760688|760759|760809|760813|772443|772444|772446|772450|772454|772456|772464|772465|776559|776566|778499|786076|786079|786081|786082|788040|788260|791901|791902|791903|791904|791905|791905|791906|791907|793735|797733|797737|797743|797745|798741|821240|821241|821242|847326|847327|847328|847329|847330|847331|847332|847333|847334|847335|847336|847337|847338|847339|847340|847341|847342|847343|847344|847345|847346|847347|847348|847349|847350|847351|847352|847353|847354|847355|847356|847357|847358|847358|847359|847360|847361|847362|847363|847364|847365|847366|847367|847368|847369|847370|847371|847372|847373|847374|847375|847376|847377|847378|847379|847380|847381|847382|847383|847384|847385|847386|847387|851795|851797|852310|852313|852962|928861|928862|928863|928864|928865|928866|928867|928868|928869|928870|928871|928872|928873|928874|928875|928876|928877|928878|928879|928880|928881|928882|928883|928884|928885|928886|928887|938582|938583|938584|938585|938586|938587|938588|938589|938590|938591|938592|938593|938594|938595|938596|938597|938598|938599|938600|938601|940472|941226|950683|950684|950685|950686|950687|950688|950689|950690|950691|950692|950693|950694|950695|950696|950697|950698|950699|958546|958547|958548|958549|958550|958551|958552|958553|958554|958555|958556|960284|960285|960308|962871|962917|964511|967216|969614|969710", + "upstreamId": "23527|23527|23530|23531|23534|23535|23537|23539|23540|23541|23543|23545|23546|23546|23547|23549|23549|23550|23551|23553|23554|23555|23556|23557|23558|79309|79310|79311|79311|79312|79313|79315|79316|79316|79317|79321|79322|79323|79323|79325|79325|79328|79329|79331|79331|79332|79333|79333|79334|91842|99465|99466|99466|99467|133993|133994|133996|133997|133998|133999|134001|134003|134003|134004|134004|134005|134005|134006|134007|134008|134009|177164|177532|185732|185733|185733|185734|191883|192090|192631|192632|192633|192734|192735|193096|193096|193096|194021|194189|194675|208539|208540|213651|213651|248801|256787|256788|256789|256789|260210|264734|266969|266972|267411|267413|267747|267751|268395|268604|269763|270514|270928|270971|271647|271779|271799|273020|273117|273653|274636|360387|360395|360398|360515|361043|361322|361323|361324|363833|364143|376191|376198|376199|376234|376238|376243|376243|376261|376272|376273|376274|376287|376288|376310|376311|376321|376326|377218|377233|377235|377235|377237|377242|377256|377257|377259|377266|377276|377284|377297|377306|377312|377369|377389|377390|377390|377403|377416|377421|377461|377469|377470|377475|377488|377501|377505|377507|377515|379318|379318|379328|379340|379361|379363|379381|379394|379395|379400|379406|379423|379430|379440|379453|379478|410478|410481|410482|410484|410485|410489|410490|410491|410491|410492|410499|410504|410512|410515|410516|410519|410520|410521|410527|410528|410530|410534|410540|413495|415626|415628|415630|415631|415633|422239|422242|422242|422243|426283|426285|426288|430128|430130|430133|442048|442051|442052|442054|442058|442059|442062|442063|442068|442070|442071|442076|442079|442080|442082|442083|442085|442086|442087|442088|442565|446042|446045|446046|446054|446055|446057|446057|446059|446061|468502|468507|468509|468511|468512|468515|468517|468520|468525|468529|468530|469406|469410|469414|469418|469427|469430|469435|469437|469439|469456|469463|469816|469827|469830|469833|469834|469846|469850|469857|469858|469861|469868|469874|469876|469896|470453|470470|470475|491610|491801|492026|492275|494058|506779|506786|507172|507176|507198|507524|507552|507580|532711|532721|532722|532728|532729|532730|532732|532734|532737|532743|532757|532767|532769|532773|532785|532786|532805|532808|532811|533145|533146|533150|533152|533157|533158|533167|533168|533172|533177|536091|536183|536183|536978|538484|551795|553275|553399|570517|570532|570535|570542|570543|570548|570549|570552|570554|570563|572233|572238|572239|572247|572248|572255|572256|572258|572260|572264|572265|572934|572936|572939|572944|572945|572946|572947|572949|572950|572951|572953|572954|572956|572960|572962|572964|574784|574880|574882|574884|574886|574887|574888|574889|574890|574891|574892|574893|574894|576271|577709|577712|577718|577725|577735|578564|580333|580341|580401|580440|580480|580489|580491|588767|590086|609152|613115|613615|621916|625824|647723|647724|647725|647726|647727|647728|647729|647730|647731|647732|647733|647734|647735|647736|647737|647738|647739|647740|647741|647742|647743|647744|647745|647746|647747|647748|647749|647750|647751|647752|647753|647754|647755|647756|647757|647758|647759|647760|647761|647762|647763|647764|647765|647766|647767|647768|647769|647770|647771|647772|647773|647774|652944|653011|653151|653154|653604|654868|670091|672109|679806|704766|704768|704769|704770|704771|704772|727919|727920|727921|741605|741606|756734|756736|756740|760688|760759|760809|760813|772443|772444|772446|772450|772454|772456|772464|772465|776559|776566|778499|786076|786079|786081|786082|788040|788260|791901|791902|791903|791904|791905|791905|791906|791907|793735|797733|797737|797743|797745|798741|821240|821241|821242|847326|847327|847328|847329|847330|847331|847332|847333|847334|847335|847336|847337|847338|847339|847340|847341|847342|847343|847344|847345|847346|847347|847348|847349|847350|847351|847352|847353|847354|847355|847356|847357|847358|847358|847359|847360|847361|847362|847363|847364|847365|847366|847367|847368|847369|847370|847371|847372|847373|847374|847375|847376|847377|847378|847379|847380|847381|847382|847383|847384|847385|847386|847387|851795|851797|852310|852313|852962|928861|928862|928863|928864|928865|928866|928867|928868|928869|928870|928871|928872|928873|928874|928875|928876|928877|928878|928879|928880|928881|928882|928883|928884|928885|928886|928887|938582|938583|938584|938585|938586|938587|938588|938589|938590|938591|938592|938593|938594|938595|938596|938597|938598|938599|938600|938601|940472|941226|950683|950684|950685|950686|950687|950688|950689|950690|950691|950692|950693|950694|950695|950696|950697|950698|950699|958546|958547|958548|958549|958550|958551|958552|958553|958554|958555|958556|960284|960285|960308|962871|962917|964511|967216|969614|969710", "text": "Episodic ataxia type 2" }, { - "baseId": "23527|23546|23549|79311|79316|79323|79325|79331|79333|91842|99465|99466|99467|133993|133994|133996|133997|133998|133999|134001|134003|134004|134005|134006|134007|134008|177164|177532|185733|191883|192090|192090|192631|192632|192633|192734|192735|192735|193096|193096|194021|194189|194675|208539|208540|213651|248800|248801|248801|248802|256787|256788|256789|260210|264734|266969|266972|267411|267413|267747|267751|268395|268604|269763|270514|270928|270971|271647|271779|271799|273020|273117|273653|274636|360387|360395|360398|360515|361043|361322|361323|361324|363833|364143|376191|376198|376199|376234|376238|376243|376243|376243|376261|376272|376273|376273|376274|376287|376288|376310|376311|376321|376326|377218|377233|377235|377237|377242|377256|377257|377259|377266|377276|377284|377297|377306|377312|377369|377389|377390|377390|377403|377416|377421|377461|377469|377470|377475|377488|377501|377505|377507|377515|379318|379328|379361|379363|379381|379394|379395|379400|379406|379423|379430|379440|379453|379478|410478|410481|410482|410484|410485|410489|410490|410491|410491|410492|410499|410503|410504|410506|410515|410516|410519|410520|410521|410527|410527|410528|410530|410534|410540|413495|413495|415626|415628|415630|415631|415633|422239|422242|422242|422243|426283|426285|426288|430133|442048|442051|442052|442054|442058|442059|442062|442063|442068|442070|442071|442076|442078|442079|442080|442082|442083|442085|442086|442087|442088|446042|446045|446046|446054|446055|446057|446057|446059|446061|468502|468507|468509|468511|468512|468515|468517|468520|468525|468529|468530|469406|469410|469414|469418|469427|469430|469435|469437|469439|469456|469463|469816|469827|469830|469833|469834|469846|469850|469857|469858|469861|469868|469874|469876|469896|470453|470470|470475|481343|491610|491801|492026|492275|494058|506779|506786|507172|507176|507198|507524|507552|507580|511017|532711|532721|532722|532728|532729|532730|532732|532734|532737|532743|532757|532767|532769|532773|532785|532786|532805|532808|532811|533145|533146|533150|533152|533157|533158|533167|533168|533172|533177|536183|536978|551795|570517|570532|570535|570542|570543|570548|570549|570552|570554|570554|570563|572233|572238|572239|572247|572248|572255|572256|572258|572260|572264|572265|572934|572936|572939|572944|572945|572946|572947|572949|572950|572951|572953|572954|572956|572956|572960|572962|572964|574784|574880|574882|574884|574886|574887|574888|574889|574890|574891|574892|574893|574894|577709|577712|577718|577721|577725|577735|580333|580341|580401|580440|580480|580489|580491|588767|613115|621916|625825|647723|647724|647725|647726|647727|647728|647729|647730|647731|647732|647733|647734|647735|647736|647737|647738|647739|647740|647741|647742|647743|647744|647745|647746|647747|647748|647749|647750|647751|647752|647753|647754|647755|647756|647757|647758|647759|647760|647761|647762|647763|647764|647764|647765|647766|647767|647768|647769|647770|647771|647772|647773|647774|647774|652944|653011|653151|653154|653604|670091|704766|704768|704769|704770|704771|704772|727919|727920|727921|741605|741606|756734|756736|756740|760688|760759|760809|760813|772443|772444|772446|772450|772454|772456|772464|772465|776559|776566|778499|786076|786079|786081|786082|788040|788260|791905|793735|797733|797737|797745|802024|821240|821241|821242|847326|847327|847328|847329|847330|847331|847332|847333|847334|847335|847336|847337|847338|847339|847340|847341|847342|847343|847344|847345|847346|847347|847348|847349|847350|847351|847352|847353|847354|847355|847356|847357|847358|847359|847360|847361|847362|847363|847364|847365|847366|847367|847368|847369|847370|847371|847372|847373|847374|847375|847376|847377|847378|847379|847380|847381|847382|847383|847384|847385|847386|847387|851795|851797|852310|852313|852962|858580|903632|906207|928861|928862|928863|928864|928865|928866|928867|928868|928869|928870|928871|928872|928873|928874|928875|928876|928877|928878|928879|928880|928881|928882|928883|928884|928885|928886|928887|938582|938583|938584|938585|938586|938587|938588|938589|938590|938591|938592|938593|938594|938595|938596|938597|938598|938599|938600|938601|940472|941226|950683|950684|950685|950686|950687|950688|950689|950690|950691|950692|950693|950694|950695|950696|950697|950698|950699|958546|958547|958548|958549|958550|958551|958552|958553|958554|958555|958556|960284|960285|960308|963181|964161|964505|964507|964509|964510|964512|964887|971115|971116|971117|971118|983567", + "upstreamId": "23527|23546|23549|79311|79316|79323|79325|79331|79333|91842|99465|99466|99467|133993|133994|133996|133997|133998|133999|134001|134003|134004|134005|134006|134007|134008|177164|177532|185733|191883|192090|192090|192631|192632|192633|192734|192735|192735|193096|193096|194021|194189|194675|208539|208540|213651|248800|248801|248801|248802|256787|256788|256789|260210|264734|266969|266972|267411|267413|267747|267751|268395|268604|269763|270514|270928|270971|271647|271779|271799|273020|273117|273653|274636|360387|360395|360398|360515|361043|361322|361323|361324|363833|364143|376191|376198|376199|376234|376238|376243|376243|376243|376261|376272|376273|376273|376274|376287|376288|376310|376311|376321|376326|377218|377233|377235|377237|377242|377256|377257|377259|377266|377276|377284|377297|377306|377312|377369|377389|377390|377390|377403|377416|377421|377461|377469|377470|377475|377488|377501|377505|377507|377515|379318|379328|379361|379363|379381|379394|379395|379400|379406|379423|379430|379440|379453|379478|410478|410481|410482|410484|410485|410489|410490|410491|410491|410492|410499|410503|410504|410506|410515|410516|410519|410520|410521|410527|410527|410528|410530|410534|410540|413495|413495|415626|415628|415630|415631|415633|422239|422242|422242|422243|426283|426285|426288|430133|442048|442051|442052|442054|442058|442059|442062|442063|442068|442070|442071|442076|442078|442079|442080|442082|442083|442085|442086|442087|442088|446042|446045|446046|446054|446055|446057|446057|446059|446061|468502|468507|468509|468511|468512|468515|468517|468520|468525|468529|468530|469406|469410|469414|469418|469427|469430|469435|469437|469439|469456|469463|469816|469827|469830|469833|469834|469846|469850|469857|469858|469861|469868|469874|469876|469896|470453|470470|470475|481343|491610|491801|492026|492275|494058|506779|506786|507172|507176|507198|507524|507552|507580|511017|532711|532721|532722|532728|532729|532730|532732|532734|532737|532743|532757|532767|532769|532773|532785|532786|532805|532808|532811|533145|533146|533150|533152|533157|533158|533167|533168|533172|533177|536183|536978|551795|570517|570532|570535|570542|570543|570548|570549|570552|570554|570554|570563|572233|572238|572239|572247|572248|572255|572256|572258|572260|572264|572265|572934|572936|572939|572944|572945|572946|572947|572949|572950|572951|572953|572954|572956|572956|572960|572962|572964|574784|574880|574882|574884|574886|574887|574888|574889|574890|574891|574892|574893|574894|577709|577712|577718|577721|577725|577735|580333|580341|580401|580440|580480|580489|580491|588767|613115|621916|625825|647723|647724|647725|647726|647727|647728|647729|647730|647731|647732|647733|647734|647735|647736|647737|647738|647739|647740|647741|647742|647743|647744|647745|647746|647747|647748|647749|647750|647751|647752|647753|647754|647755|647756|647757|647758|647759|647760|647761|647762|647763|647764|647764|647765|647766|647767|647768|647769|647770|647771|647772|647773|647774|647774|652944|653011|653151|653154|653604|670091|704766|704768|704769|704770|704771|704772|727919|727920|727921|741605|741606|756734|756736|756740|760688|760759|760809|760813|772443|772444|772446|772450|772454|772456|772464|772465|776559|776566|778499|786076|786079|786081|786082|788040|788260|791905|793735|797733|797737|797745|802024|821240|821241|821242|847326|847327|847328|847329|847330|847331|847332|847333|847334|847335|847336|847337|847338|847339|847340|847341|847342|847343|847344|847345|847346|847347|847348|847349|847350|847351|847352|847353|847354|847355|847356|847357|847358|847359|847360|847361|847362|847363|847364|847365|847366|847367|847368|847369|847370|847371|847372|847373|847374|847375|847376|847377|847378|847379|847380|847381|847382|847383|847384|847385|847386|847387|851795|851797|852310|852313|852962|858580|903632|906207|928861|928862|928863|928864|928865|928866|928867|928868|928869|928870|928871|928872|928873|928874|928875|928876|928877|928878|928879|928880|928881|928882|928883|928884|928885|928886|928887|938582|938583|938584|938585|938586|938587|938588|938589|938590|938591|938592|938593|938594|938595|938596|938597|938598|938599|938600|938601|940472|941226|950683|950684|950685|950686|950687|950688|950689|950690|950691|950692|950693|950694|950695|950696|950697|950698|950699|958546|958547|958548|958549|958550|958551|958552|958553|958554|958555|958556|960284|960285|960308|963181|964161|964505|964507|964509|964510|964512|964887|971115|971116|971117|971118|983567", "text": "Epileptic encephalopathy, early infantile, 42" }, { - "baseId": "23527|23535|23544|23546|23549|79323|193096|208540|213651|248801|376191|376243|376243|377390|410491|410492|422242|426285|442048|442070|446057|446061|553275|578564|609334|626271|672109|964506", + "upstreamId": "23527|23535|23544|23546|23549|79323|193096|208540|213651|248801|376191|376243|376243|377390|410491|410492|422242|426285|442048|442070|446057|446061|553275|578564|609334|626271|672109|964506", "text": "Spinocerebellar ataxia type 6" }, { - "baseId": "23544", + "upstreamId": "23544", "text": "Migraine, sporadic hemiplegic" }, { - "baseId": "23548", + "upstreamId": "23548", "text": "Episodic ataxia, type 2, and epilepsy" }, { - "baseId": "23560|23562|23563", + "upstreamId": "23560|23562|23563", "text": "LEPTIN RECEPTOR POLYMORPHISM" }, { - "baseId": "23560|23562|23563|45129|206996|281113|281114|281120|281121|281124|281133|281139|281140|281144|281740|281741|281742|281750|281751|281752|281759|281762|281763|282919|282920|282921|282944|282947|282950|283218|283224|283238|283242|283245|288641|298389|298390|298394|298395|298401|298402|298403|298407|298408|298415|298417|298418|300698|300699|300709|300710|300711|300726|300728|300729|300730|300733|300735|300740|300741|300742|300750|300756|301785|301796|301797|301798|301799|301801|301802|301808|301809|301813|301816|301817|301818|301824|301825|304949|304950|304951|304954|304956|304970|304978|305090|305097|305100|305102|305104|305111|305113|305114|305127|305129|305130|305136|305138|305139|305140|305239|305243|305244|305251|305252|305253|305264|305265|309593|309599|309601|309602|309603|309604|309629|309630|309638|309639|309640|309645|309654|309657|309658|309780|309781|309784|309785|309786|309790", + "upstreamId": "23560|23562|23563|45129|206996|281113|281114|281120|281121|281124|281133|281139|281140|281144|281740|281741|281742|281750|281751|281752|281759|281762|281763|282919|282920|282921|282944|282947|282950|283218|283224|283238|283242|283245|288641|298389|298390|298394|298395|298401|298402|298403|298407|298408|298415|298417|298418|300698|300699|300709|300710|300711|300726|300728|300729|300730|300733|300735|300740|300741|300742|300750|300756|301785|301796|301797|301798|301799|301801|301802|301808|301809|301813|301816|301817|301818|301824|301825|304949|304950|304951|304954|304956|304970|304978|305090|305097|305100|305102|305104|305111|305113|305114|305127|305129|305130|305136|305138|305139|305140|305239|305243|305244|305251|305252|305253|305264|305265|309593|309599|309601|309602|309603|309604|309629|309630|309638|309639|309640|309645|309654|309657|309658|309780|309781|309784|309785|309786|309790", "text": "Monogenic Non-Syndromic Obesity" }, { - "baseId": "23560|23561|23562|23563|45129|281113|281114|281120|281121|281124|281133|281139|281140|281144|281740|281741|281742|281750|281751|281752|281759|281762|281763|282919|282920|282921|282944|282947|282950|283218|283224|283238|283242|283245|380185|446902|480430|611351|654157|696844|707497|732564|732565|794002|864739|864740|864741|864742|864743|864744|864745|864746|864747|864748|864749|864750|864751|864752|864753|864754|864755|864756|864757|864758|864759|864760|864761|864762|864763|864764|864765|864766|864767|864768|864769|864770|865202|865203|865204|918645", + "upstreamId": "23560|23561|23562|23563|45129|281113|281114|281120|281121|281124|281133|281139|281140|281144|281740|281741|281742|281750|281751|281752|281759|281762|281763|282919|282920|282921|282944|282947|282950|283218|283224|283238|283242|283245|380185|446902|480430|611351|654157|696844|707497|732564|732565|794002|864739|864740|864741|864742|864743|864744|864745|864746|864747|864748|864749|864750|864751|864752|864753|864754|864755|864756|864757|864758|864759|864760|864761|864762|864763|864764|864765|864766|864767|864768|864769|864770|865202|865203|865204|918645", "text": "Leptin receptor deficiency" }, { - "baseId": "23564|23565|23566|23567|23568|23569|23570|335314|335316|335318|335324|335327|335328|335331|345149|345160|345161|345164|345165|345167|345171|345184|345187|349905|349907|349909|350928|350931|350932|378007|469355|488009|507307|620657|648641|648642|689197|786361|848318|852373|886033|886034|886035|886036|886037|886038|886039|886040|886041|886042|886043|886044|929165|929166|938947|951046|958813", + "upstreamId": "23564|23565|23566|23567|23568|23569|23570|335314|335316|335318|335324|335327|335328|335331|345149|345160|345161|345164|345165|345167|345171|345184|345187|349905|349907|349909|350928|350931|350932|378007|469355|488009|507307|620657|648641|648642|689197|786361|848318|852373|886033|886034|886035|886036|886037|886038|886039|886040|886041|886042|886043|886044|929165|929166|938947|951046|958813", "text": "Gluthathione synthetase deficiency" }, { - "baseId": "23570", + "upstreamId": "23570", "text": "Glutathione synthetase deficiency of erythrocytes, hemolytic anemia due to" }, { - "baseId": "23571|23572|23573|23574", + "upstreamId": "23571|23572|23573|23574", "text": "Prostate cancer/brain cancer susceptibility" }, { - "baseId": "23581", + "upstreamId": "23581", "text": "Juvenile polyposis of stomach" }, { - "baseId": "23581|23582|23584|23586|23587|36139|36140|36152|36168|36169|36173|36174|36176|36178|36181|36191|36210|36211|36212|36213|36215|36216|36217|36219|36220|39106|39106|47345|50227|133407|136441|136493|139786|142921|142922|142923|151879|151967|151967|181036|181036|185427|185427|185428|185438|185443|236534|243064|243077|331636|331637|331639|331641|331643|331644|331645|331648|331650|331653|331656|331664|331698|331707|331711|341892|341894|341895|341897|341898|341903|341904|341916|341919|341922|341923|341928|341929|341937|341940|341949|341956|341957|341959|341961|347245|347248|347262|347263|347266|347267|347274|347278|347279|347284|347285|347288|347289|347292|347293|347295|347297|347313|347315|347320|347323|347325|347333|347337|347339|347340|348573|348574|348576|348581|348598|348600|348602|348609|348610|348611|348621|348622|348626|348628|348632|348633|348642|348644|348645|348652|348669|348680|361883|377048|377096|379055|403342|410379|468069|468948|468989|479334|479365|485542|539082|588885|618917|879352|879353|879354|879355|879356|879357|879358|879359|879360|879361|879362|879363|879364|879365|879366|879367|879368|879369|879370|879371|879372|879373|879374|879375|879376|879377|879378|879379|879380|879381|879382|879383|879384|879385|879386|879387|879388|879389|879390|879391|879392|879393|879394|879395|879396|879397|879398|879399|879400|879401|879402|879403|879404|879405|879406|879407|879408|879409|879410|879411|879412|879413|879414|879415|880666|970632", + "upstreamId": "23581|23582|23584|23586|23587|36139|36140|36152|36168|36169|36173|36174|36176|36178|36181|36191|36210|36211|36212|36213|36215|36216|36217|36219|36220|39106|39106|47345|50227|133407|136441|136493|139786|142921|142922|142923|151879|151967|151967|181036|181036|185427|185427|185428|185438|185443|236534|243064|243077|331636|331637|331639|331641|331643|331644|331645|331648|331650|331653|331656|331664|331698|331707|331711|341892|341894|341895|341897|341898|341903|341904|341916|341919|341922|341923|341928|341929|341937|341940|341949|341956|341957|341959|341961|347245|347248|347262|347263|347266|347267|347274|347278|347279|347284|347285|347288|347289|347292|347293|347295|347297|347313|347315|347320|347323|347325|347333|347337|347339|347340|348573|348574|348576|348581|348598|348600|348602|348609|348610|348611|348621|348622|348626|348628|348632|348633|348642|348644|348645|348652|348669|348680|361883|377048|377096|379055|403342|410379|468069|468948|468989|479334|479365|485542|539082|588885|618917|879352|879353|879354|879355|879356|879357|879358|879359|879360|879361|879362|879363|879364|879365|879366|879367|879368|879369|879370|879371|879372|879373|879374|879375|879376|879377|879378|879379|879380|879381|879382|879383|879384|879385|879386|879387|879388|879389|879390|879391|879392|879393|879394|879395|879396|879397|879398|879399|879400|879401|879402|879403|879404|879405|879406|879407|879408|879409|879410|879411|879412|879413|879414|879415|880666|970632", "text": "Juvenile polyposis/hereditary hemorrhagic telangiectasia syndrome" }, { - "baseId": "23582", + "upstreamId": "23582", "text": "JP, JP/HHT, and HHT" }, { - "baseId": "23582|23584|27386|27388|27393|27394|27395|27398|27403|27404|27405|27407|27408|27409|27641|27642|27652|28691|28692|28694|28695|28698|32616|32618|32622|32625|36171|36173|40609|48304|54418|66133|80852|133271|133272|133277|139098|150535|151476|151595|151955|152428|171613|171614|176503|181000|181001|181005|185345|185366|185367|185371|185375|185394|213392|213398|213402|213943|222738|232035|236459|236461|236463|236468|236469|236477|236479|236481|242978|242980|245074|260191|260192|360335|362773|362775|362844|362870|362871|362894|362895|362896|363110|363113|363114|363123|363179|363195|363264|363270|363271|363272|363280|363281|363282|363293|363294|363295|363296|363297|363302|363303|363304|363305|363310|363311|363337|363338|363352|363353|363354|363360|363398|363399|363400|363416|363417|363418|363419|363420|363438|363439|363440|363441|363442|363448|363449|363450|363451|363452|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363469|363470|363471|363472|363473|363474|363475|363476|363477|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363494|363495|363496|363497|363498|363499|363500|363501|363502|363503|363504|363505|363506|363507|363508|363509|363510|363511|363515|363518|363519|363520|363521|363522|363523|363524|363525|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363538|363539|363540|363541|363542|363543|363544|363545|363546|363547|363548|363549|363550|363551|363558|363559|363560|363561|363562|363563|363564|363565|363569|363570|363571", + "upstreamId": "23582|23584|27386|27388|27393|27394|27395|27398|27403|27404|27405|27407|27408|27409|27641|27642|27652|28691|28692|28694|28695|28698|32616|32618|32622|32625|36171|36173|40609|48304|54418|66133|80852|133271|133272|133277|139098|150535|151476|151595|151955|152428|171613|171614|176503|181000|181001|181005|185345|185366|185367|185371|185375|185394|213392|213398|213402|213943|222738|232035|236459|236461|236463|236468|236469|236477|236479|236481|242978|242980|245074|260191|260192|360335|362773|362775|362844|362870|362871|362894|362895|362896|363110|363113|363114|363123|363179|363195|363264|363270|363271|363272|363280|363281|363282|363293|363294|363295|363296|363297|363302|363303|363304|363305|363310|363311|363337|363338|363352|363353|363354|363360|363398|363399|363400|363416|363417|363418|363419|363420|363438|363439|363440|363441|363442|363448|363449|363450|363451|363452|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363469|363470|363471|363472|363473|363474|363475|363476|363477|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363494|363495|363496|363497|363498|363499|363500|363501|363502|363503|363504|363505|363506|363507|363508|363509|363510|363511|363515|363518|363519|363520|363521|363522|363523|363524|363525|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363538|363539|363540|363541|363542|363543|363544|363545|363546|363547|363548|363549|363550|363551|363558|363559|363560|363561|363562|363563|363564|363565|363569|363570|363571", "text": "Carcinoma of esophagus" }, { - "baseId": "23584|36164|36168|36171|36173|36177", + "upstreamId": "23584|36164|36168|36171|36173|36177", "text": "JP and JP/HHT" }, { - "baseId": "23588|23589|23590|23591|153864", + "upstreamId": "23588|23589|23590|23591|153864", "text": "Ehlers-Danlos syndrome, classic-like, 1" }, { - "baseId": "23592|23593|23594|23595|23597|23598|23599|23600|23601|23602|23603|23604|23605|23606|23607|23608|23609|23610|23611|250580|250581|250582|251335|251336|251337|251338|251701|251704|251708|284888|284890|284891|284895|284896|284900|284901|284908|284917|284918|284919|284927|284928|284929|284931|284932|284933|284937|284944|284950|285544|285558|285564|285572|285574|285576|285577|285578|285579|285590|285593|285595|285596|285597|285598|285604|285612|287888|287890|287893|287895|287908|287920|287924|287926|287927|287928|287930|287931|287932|287933|287934|288133|288135|288136|288137|288146|288149|288151|288168|288169|288183|288184|288186|288198|288199|288200|288204|288206|292377|292379|292380|292400|292401|292411|292417|292419|292423|292425|292426|292433|292434|292435|292436|292442|292444|292445|292447|292448|292451|292452|292458|292460|292464|292465|292466|293818|293819|293821|293822|293851|293854|293855|293856|293857|293859|293863|293873|293874|293880|293882|293893|293895|293901|295398|295409|295423|295425|295426|295429|295430|295435|295438|295443|295445|295446|295447|295453|295456|295461|295469|295470|297127|297137|297138|297142|297149|297150|297153|297162|297166|297167|297168|297171|297175|297186|297192|297195|297198|297203|297204|297205|297206|297207|297208|297209|297211|297212|297214|297218|297226|297227|297228|297231|297234|297235|297236|297237|297240|297242|297243|297244|297246|297249|297250|297257|297259|297260|297262|297263|297265|297266|297270|297274|297275|297277|301006|301017|301019|301021|301034|301035|301046|301060|301067|301079|301082|301087|301091|301094|301097|301099|301103|301104|301107|301109|301124|301132|301133|301144|301145|301149|301158|301161|301170|301171|301173|301183|301185|301186|301187|301197|301211|301215|301216|301218|301226|301253|301264|336077|336082|336092|345793|345811|345812|350275|351296|353666|513049|550280|612144|612440|709185|720781|890188|890189|890190|890191|890192|890193|890194|890195|890196|890197|890198|890199|890200|890201|890202|890203|890204|890205|890206|890207|890208|890209|890210|890211|890212|890213|890214|890215|890216|890217|890218|890219|890220|890221|890222|890223|890224|890225|890226|890227|890228|890229|890230|891752|921209|977206", + "upstreamId": "23592|23593|23594|23595|23597|23598|23599|23600|23601|23602|23603|23604|23605|23606|23607|23608|23609|23610|23611|250580|250581|250582|251335|251336|251337|251338|251701|251704|251708|284888|284890|284891|284895|284896|284900|284901|284908|284917|284918|284919|284927|284928|284929|284931|284932|284933|284937|284944|284950|285544|285558|285564|285572|285574|285576|285577|285578|285579|285590|285593|285595|285596|285597|285598|285604|285612|287888|287890|287893|287895|287908|287920|287924|287926|287927|287928|287930|287931|287932|287933|287934|288133|288135|288136|288137|288146|288149|288151|288168|288169|288183|288184|288186|288198|288199|288200|288204|288206|292377|292379|292380|292400|292401|292411|292417|292419|292423|292425|292426|292433|292434|292435|292436|292442|292444|292445|292447|292448|292451|292452|292458|292460|292464|292465|292466|293818|293819|293821|293822|293851|293854|293855|293856|293857|293859|293863|293873|293874|293880|293882|293893|293895|293901|295398|295409|295423|295425|295426|295429|295430|295435|295438|295443|295445|295446|295447|295453|295456|295461|295469|295470|297127|297137|297138|297142|297149|297150|297153|297162|297166|297167|297168|297171|297175|297186|297192|297195|297198|297203|297204|297205|297206|297207|297208|297209|297211|297212|297214|297218|297226|297227|297228|297231|297234|297235|297236|297237|297240|297242|297243|297244|297246|297249|297250|297257|297259|297260|297262|297263|297265|297266|297270|297274|297275|297277|301006|301017|301019|301021|301034|301035|301046|301060|301067|301079|301082|301087|301091|301094|301097|301099|301103|301104|301107|301109|301124|301132|301133|301144|301145|301149|301158|301161|301170|301171|301173|301183|301185|301186|301187|301197|301211|301215|301216|301218|301226|301253|301264|336077|336082|336092|345793|345811|345812|350275|351296|353666|513049|550280|612144|612440|709185|720781|890188|890189|890190|890191|890192|890193|890194|890195|890196|890197|890198|890199|890200|890201|890202|890203|890204|890205|890206|890207|890208|890209|890210|890211|890212|890213|890214|890215|890216|890217|890218|890219|890220|890221|890222|890223|890224|890225|890226|890227|890228|890229|890230|891752|921209|977206", "text": "Autosomal dominant pseudohypoaldosteronism type 1" }, { - "baseId": "23596", + "upstreamId": "23596", "text": "Hypertension, early-onset, autosomal dominant, with exacerbation in pregnancy" }, { - "baseId": "23612|23613|23614|23615|195332|267197|272449|275013|294535|294536|294541|294545|294546|294548|294550|294551|294553|294557|296087|296090|296091|296092|296097|296101|296104|299760|299761|299765|299766|299770|299771|299780|299783|299784|299789|299853|299857|299863|299865|299866|299871|299873|491339|734757|892447|892448|892449|892450|892451|892452|892453|892454|892455|892456|892457|892458|892459|892460|892461|892462|892463|892464|892465|892466|892467|892468", + "upstreamId": "23612|23613|23614|23615|195332|267197|272449|275013|294535|294536|294541|294545|294546|294548|294550|294551|294553|294557|296087|296090|296091|296092|296097|296101|296104|299760|299761|299765|299766|299770|299771|299780|299783|299784|299789|299853|299857|299863|299865|299866|299871|299873|491339|734757|892447|892448|892449|892450|892451|892452|892453|892454|892455|892456|892457|892458|892459|892460|892461|892462|892463|892464|892465|892466|892467|892468", "text": "Autosomal recessive hypophosphatemic vitamin D refractory rickets" }, { - "baseId": "23616|23619|23621|23622|54297|54298|54299|54300|54301|54303|54305|54307|54311|54318|54320|54321|54322|54325|54326|54327|54330|54331|54333|174003|174004|174012|174013|174014|174017|174141|174147|174149|229508|237602|252537|252538|301048|301058|301062|301064|301072|301077|301081|301083|301088|301089|301092|301100|301102|301106|304036|304046|304047|304050|304053|304054|304065|304068|304086|304096|304100|304103|304104|304105|304111|304112|304113|304114|308739|308766|308771|308776|308797|308798|308799|308809|308810|308815|308816|308832|308833|308835|308837|308838|308839|308840|308841|308844|308845|308850|308853|308854|308860|308862|308864|308868|308870|308877|308879|308880|308897|308899|308900|308903|308907|384404|389225|535237|788806|802074|896856|896857|896859|896860|896861|896863|896865|896866|896867|896868|896876|896877|896878|896879|896880|896881|896882|896883|896884|896885|896886|896887|896888|896889|896890|896891|896892|896893|896894|896895|896896|896897|896898|896899|896900|896901|896902|896903|896904|896905|896906|896907|896908|896909|896910|896911|896912|896913|896914|896915|896916|896917|896918|896919|896920|896921|896922|896923|896924|896925|896926|896927|896928|896929|896930|896931|896932|896933|900270|900272|900273|905843|966150", + "upstreamId": "23616|23619|23621|23622|54297|54298|54299|54300|54301|54303|54305|54307|54311|54318|54320|54321|54322|54325|54326|54327|54330|54331|54333|174003|174004|174012|174013|174014|174017|174141|174147|174149|229508|237602|252537|252538|301048|301058|301062|301064|301072|301077|301081|301083|301088|301089|301092|301100|301102|301106|304036|304046|304047|304050|304053|304054|304065|304068|304086|304096|304100|304103|304104|304105|304111|304112|304113|304114|308739|308766|308771|308776|308797|308798|308799|308809|308810|308815|308816|308832|308833|308835|308837|308838|308839|308840|308841|308844|308845|308850|308853|308854|308860|308862|308864|308868|308870|308877|308879|308880|308897|308899|308900|308903|308907|384404|389225|535237|788806|802074|896856|896857|896859|896860|896861|896863|896865|896866|896867|896868|896876|896877|896878|896879|896880|896881|896882|896883|896884|896885|896886|896887|896888|896889|896890|896891|896892|896893|896894|896895|896896|896897|896898|896899|896900|896901|896902|896903|896904|896905|896906|896907|896908|896909|896910|896911|896912|896913|896914|896915|896916|896917|896918|896919|896920|896921|896922|896923|896924|896925|896926|896927|896928|896929|896930|896931|896932|896933|900270|900272|900273|905843|966150", "text": "Deafness, autosomal dominant 22" }, { - "baseId": "23617|23618|23619|54297|54298|54299|54300|54301|54303|54305|54307|54311|54318|54320|54321|54322|54325|54326|54327|54330|54331|54333|174004|174012|174013|174017|174141|174147|174149|229508|252537|252538|301048|301058|301062|301064|301072|301077|301081|301083|301088|301089|301092|301100|301102|301106|304036|304046|304047|304050|304053|304054|304065|304068|304086|304096|304100|304103|304104|304105|304111|304112|304113|304114|308739|308766|308771|308776|308797|308798|308799|308809|308810|308815|308816|308832|308833|308835|308837|308838|308839|308840|308841|308844|308845|308850|308853|308854|308860|308862|308864|308868|308870|308877|308879|308880|308897|308899|308900|308903|308907|896856|896857|896859|896860|896861|896863|896865|896866|896867|896868|896876|896877|896878|896879|896880|896881|896882|896883|896884|896885|896886|896887|896888|896889|896890|896891|896892|896893|896894|896895|896896|896897|896898|896899|896900|896901|896902|896903|896904|896905|896906|896907|896908|896909|896910|896911|896912|896913|896914|896915|896916|896917|896918|896919|896920|896921|896922|896923|896924|896925|896926|896927|896928|896929|896930|896931|896932|896933|900270|900272|900273|919062", + "upstreamId": "23617|23618|23619|54297|54298|54299|54300|54301|54303|54305|54307|54311|54318|54320|54321|54322|54325|54326|54327|54330|54331|54333|174004|174012|174013|174017|174141|174147|174149|229508|252537|252538|301048|301058|301062|301064|301072|301077|301081|301083|301088|301089|301092|301100|301102|301106|304036|304046|304047|304050|304053|304054|304065|304068|304086|304096|304100|304103|304104|304105|304111|304112|304113|304114|308739|308766|308771|308776|308797|308798|308799|308809|308810|308815|308816|308832|308833|308835|308837|308838|308839|308840|308841|308844|308845|308850|308853|308854|308860|308862|308864|308868|308870|308877|308879|308880|308897|308899|308900|308903|308907|896856|896857|896859|896860|896861|896863|896865|896866|896867|896868|896876|896877|896878|896879|896880|896881|896882|896883|896884|896885|896886|896887|896888|896889|896890|896891|896892|896893|896894|896895|896896|896897|896898|896899|896900|896901|896902|896903|896904|896905|896906|896907|896908|896909|896910|896911|896912|896913|896914|896915|896916|896917|896918|896919|896920|896921|896922|896923|896924|896925|896926|896927|896928|896929|896930|896931|896932|896933|900270|900272|900273|919062", "text": "Deafness, autosomal recessive 37" }, { - "baseId": "23620", + "upstreamId": "23620", "text": "Sensorineural deafness with hypertrophic cardiomyopathy" }, { - "baseId": "23623|23624|23625|23626|23627|23628|23629|23630|23631|23632|23633|23634|23636|75381|75382|107257|205181|205781|227375|227376|227377|227378|255829|255830|255831|255833|255834|255835|255836|255837|255838|255839|255840|255841|255842|255843|255845|260484|263861|325847|325851|325852|325857|325858|325863|325865|325866|325868|325872|325877|325883|325884|325885|325892|325898|325899|325902|325911|325912|325913|325915|325919|335481|335482|335487|335490|335491|335494|335496|335498|335499|335501|335502|335503|335514|335515|335518|335520|335522|335532|335535|341925|341930|341933|341936|341943|341947|341951|341952|341955|341960|341966|341969|341972|341977|341981|341982|341986|341987|341988|341990|343451|343454|343455|343458|343461|343462|343464|343467|343468|343470|343477|343480|343481|343482|343483|343484|343485|343486|343487|343489|343492|343493|360256|375217|384423|390201|390646|404824|404825|430987|431547|431548|439088|441908|441909|441911|441912|441913|441915|441916|442544|480535|481463|490237|497693|497694|513133|513134|539066|553531|553632|577552|577557|608917|620550|620551|620552|620553|620554|620555|623340|623341|644767|644770|644771|644774|644775|652576|653041|703747|714981|714982|714983|714984|714985|726695|726696|726697|731074|731075|740265|740267|740268|740269|740270|744861|744964|744966|755260|755261|755265|755266|755267|770978|778315|780047|785313|785323|788039|788195|788202|791627|793637|793640|793642|802213|802214|818332|844026|844027|875531|875532|875533|875534|875535|875536|875537|875538|875539|875540|875541|875542|875543|875544|875545|875546|875547|875548|875549|875550|875551|875552|875553|875554|875555|875556|875557|875558|875559|875560|875561|875562|875563|875564|875565|875566|875567|875568|875569|875570|875571|875572|875573|875574|875575|875576|875577|875578|875579|875580|875581|875582|875583|876682|876683|876684|876685|962789|963375|964687|979805|979806|979807|980378|980379", + "upstreamId": "23623|23624|23625|23626|23627|23628|23629|23630|23631|23632|23633|23634|23636|75381|75382|107257|205181|205781|227375|227376|227377|227378|255829|255830|255831|255833|255834|255835|255836|255837|255838|255839|255840|255841|255842|255843|255845|260484|263861|325847|325851|325852|325857|325858|325863|325865|325866|325868|325872|325877|325883|325884|325885|325892|325898|325899|325902|325911|325912|325913|325915|325919|335481|335482|335487|335490|335491|335494|335496|335498|335499|335501|335502|335503|335514|335515|335518|335520|335522|335532|335535|341925|341930|341933|341936|341943|341947|341951|341952|341955|341960|341966|341969|341972|341977|341981|341982|341986|341987|341988|341990|343451|343454|343455|343458|343461|343462|343464|343467|343468|343470|343477|343480|343481|343482|343483|343484|343485|343486|343487|343489|343492|343493|360256|375217|384423|390201|390646|404824|404825|430987|431547|431548|439088|441908|441909|441911|441912|441913|441915|441916|442544|480535|481463|490237|497693|497694|513133|513134|539066|553531|553632|577552|577557|608917|620550|620551|620552|620553|620554|620555|623340|623341|644767|644770|644771|644774|644775|652576|653041|703747|714981|714982|714983|714984|714985|726695|726696|726697|731074|731075|740265|740267|740268|740269|740270|744861|744964|744966|755260|755261|755265|755266|755267|770978|778315|780047|785313|785323|788039|788195|788202|791627|793637|793640|793642|802213|802214|818332|844026|844027|875531|875532|875533|875534|875535|875536|875537|875538|875539|875540|875541|875542|875543|875544|875545|875546|875547|875548|875549|875550|875551|875552|875553|875554|875555|875556|875557|875558|875559|875560|875561|875562|875563|875564|875565|875566|875567|875568|875569|875570|875571|875572|875573|875574|875575|875576|875577|875578|875579|875580|875581|875582|875583|876682|876683|876684|876685|962789|963375|964687|979805|979806|979807|980378|980379", "text": "Familial hypokalemia-hypomagnesemia" }, { - "baseId": "23637|23638|23639|23640|226091|257151|818339", + "upstreamId": "23637|23638|23639|23640|226091|257151|818339", "text": "Branchiootorenal syndrome 2" }, { - "baseId": "23647|23654|45263|45264|45266|45266|45269|45272|45275|45276|51669|51676|51694|51706|51716|51719|51732|51735|51736|51737|51742|51746|51747|51747|51755|51769|51777|51778|51788|51796|51797|51808|51815|51817|51822|51823|51826|51828|51833|51841|51852|51857|51870|51873|51875|51876|51879|51881|51889|51906|51910|51914|51928|51930|51931|51937|51938|51942|51945|51949|51950|51956|51959|51962|51963|51974|51977|51980|51983|75576|75578|142020|165560|171136|171136|171139|171141|171142|171143|171144|171145|174731|174756|174776|174778|175139|175143|175168|175197|179171|179223|179232|179351|179373|186345|314276|320888|326913|326929|326930|326931|326940|326949|327964|327976|327977|371466|372203|372209|374122|404802|415274|419284|461980|462012|504238|526245|609787|617882|623594|623595|676914|676915|676916|868092|868093|868094|868095|868096|868097|868098|868099|868100|868101|868102|868103|868104|868656|868657|868658|947492|964365|966806|970937", + "upstreamId": "23647|23654|45263|45264|45266|45266|45269|45272|45275|45276|51669|51676|51694|51706|51716|51719|51732|51735|51736|51737|51742|51746|51747|51747|51755|51769|51777|51778|51788|51796|51797|51808|51815|51817|51822|51823|51826|51828|51833|51841|51852|51857|51870|51873|51875|51876|51879|51881|51889|51906|51910|51914|51928|51930|51931|51937|51938|51942|51945|51949|51950|51956|51959|51962|51963|51974|51977|51980|51983|75576|75578|142020|165560|171136|171136|171139|171141|171142|171143|171144|171145|174731|174756|174776|174778|175139|175143|175168|175197|179171|179223|179232|179351|179373|186345|314276|320888|326913|326929|326930|326931|326940|326949|327964|327976|327977|371466|372203|372209|374122|404802|415274|419284|461980|462012|504238|526245|609787|617882|623594|623595|676914|676915|676916|868092|868093|868094|868095|868096|868097|868098|868099|868100|868101|868102|868103|868104|868656|868657|868658|947492|964365|966806|970937", "text": "Left ventricular noncompaction 10" }, { - "baseId": "23659", + "upstreamId": "23659", "text": "Cardiomyopathy, familial hypertrophic, 4, susceptibility to" }, { - "baseId": "23661|23662|23663|23664", + "upstreamId": "23661|23662|23663|23664", "text": "Persistent mullerian duct syndrome, type I" }, { - "baseId": "23665|23666|23667|23668", + "upstreamId": "23665|23666|23667|23668", "text": "Persistent mullerian duct syndrome, type II" }, { - "baseId": "23669|416849", + "upstreamId": "23669|416849", "text": "Sleep-wake schedule disorder, delayed phase type" }, { - "baseId": "23670|23671|23672|23673|23674|23676|23676|23676|23678|23679|23680|23681|23682|23684|23687|23691|23692|23693|23694|23695|23696|23697|23698|23699|23701|23702|195212|195559|251969|251970|251971|265332|265333|265893|297646|297650|297653|297654|297655|297656|297663|297666|297670|297676|297677|299846|299851|299858|299860|299861|299864|299867|303980|303992|303993|303994|303996|304005|304007|304011|304012|304016|304017|304018|304027|304038|304048|304049|304376|304381|304382|304383|304390|304391|304397|304398|304400|304404|304407|384481|485736|485737|485738|585165|691861|721467|749517|798561|857407|894387|894388|894389|894390|894391|894392|894393|894394|894395|894396|894397|894398|894399|894400|894401|894402|894403|894404|894405|894406|894407|894408|894409|894410|894411|894412|894413|894414|894415|894416|894417|894418|896112|896113", + "upstreamId": "23670|23671|23672|23673|23674|23676|23676|23676|23678|23679|23680|23681|23682|23684|23687|23691|23692|23693|23694|23695|23696|23697|23698|23699|23701|23702|195212|195559|251969|251970|251971|265332|265333|265893|297646|297650|297653|297654|297655|297656|297663|297666|297670|297676|297677|299846|299851|299858|299860|299861|299864|299867|303980|303992|303993|303994|303996|304005|304007|304011|304012|304016|304017|304018|304027|304038|304048|304049|304376|304381|304382|304383|304390|304391|304397|304398|304400|304404|304407|384481|485736|485737|485738|585165|691861|721467|749517|798561|857407|894387|894388|894389|894390|894391|894392|894393|894394|894395|894396|894397|894398|894399|894400|894401|894402|894403|894404|894405|894406|894407|894408|894409|894410|894411|894412|894413|894414|894415|894416|894417|894418|896112|896113", "text": "Laron-type isolated somatotropin defect" }, { - "baseId": "23675|23676|23676|23676|23677|23685|23691|195559|227287|248683|265893|290296|293367|293823|353646|918966|918967", + "upstreamId": "23675|23676|23676|23676|23677|23685|23691|195559|227287|248683|265893|290296|293367|293823|353646|918966|918967", "text": "Short stature, idiopathic, autosomal" }, { - "baseId": "23683|23689", + "upstreamId": "23683|23689", "text": "Laron syndrome with elevated serum GH-binding protein" }, { - "baseId": "23686|23688|23690", + "upstreamId": "23686|23688|23690", "text": "Laron syndrome with undetectable serum GH-binding protein" }, { - "baseId": "23700", + "upstreamId": "23700", "text": "Increased responsiveness to growth hormone" }, { - "baseId": "23703|32152|32153|192304|791023", + "upstreamId": "23703|32152|32153|192304|791023", "text": "Preterm premature rupture of membranes" }, { - "baseId": "23704|23712|23713|23714|23716|23717|23722|23722|23723|23725|23725|45093|168861|168862|168863|168866|168867|168870|168871|168875|168876|207828|207829|207832|207833|207834|207835|207839|207840|207840|244019|254062|269280|272064|313371|313372|313374|313375|313377|313379|313383|313385|313386|313387|319461|319463|319464|319466|319467|319469|319470|319474|319475|319487|319489|319490|319491|325610|325613|325623|325624|325625|325626|326645|326649|326650|326654|326655|326656|326657|326666|429186|429187|429189|545817|545820|545824|545826|545832|545841|546115|546116|546118|546118|546120|546120|546122|546127|546130|546134|546170|546173|546178|546187|546188|546193|546194|546201|546452|546454|546456|546458|546460|682320|783918|867601|867602|867603|867604|867605|867606|867607|867608|867609|867610|867611|867612|867613|976872", + "upstreamId": "23704|23712|23713|23714|23716|23717|23722|23722|23723|23725|23725|45093|168861|168862|168863|168866|168867|168870|168871|168875|168876|207828|207829|207832|207833|207834|207835|207839|207840|207840|244019|254062|269280|272064|313371|313372|313374|313375|313377|313379|313383|313385|313386|313387|319461|319463|319464|319466|319467|319469|319470|319474|319475|319487|319489|319490|319491|325610|325613|325623|325624|325625|325626|326645|326649|326650|326654|326655|326656|326657|326666|429186|429187|429189|545817|545820|545824|545826|545832|545841|546115|546116|546118|546118|546120|546120|546122|546127|546130|546134|546170|546173|546178|546187|546188|546193|546194|546201|546452|546454|546456|546458|546460|682320|783918|867601|867602|867603|867604|867605|867606|867607|867608|867609|867610|867611|867612|867613|976872", "text": "Islet cell hyperplasia" }, { - "baseId": "23705|23706|23707|23708|23709|23710|23711|23715|23717|23718|23719|23722|23724|23725|24127|24141|24142|24143|24144|24146|24147|24148|24150|28426|28427|28428|31180|33927|33928|33929|33930|33966|33967|33969|33970|33972|33974|33975|33976|34017|34018|34019|34020|34021|34022|34045|34046|34047|34048|34049|34050|34051|34052|34053|34054|34055|34056|34057|39080|44267|44269|44273|44274|44278|44282|44288|44864|44866|44870|44872|44877|44886|44899|44906|44907|76489|76495|76496|79618|79621|79622|79623|79624|79625|134590|134593|135501|167529|167530|167532|167533|167534|167535|167536|167537|167539|167540|167543|167545|167546|167547|167550|167551|167553|167554|167555|168861|168863|168866|168867|168870|168870|168871|168875|168875|186812|186816|186819|190275|192808|207485|207828|207839|207840|207840|207850|207852|207853|207853|207854|207862|227344|252883|252884|254064|254068|254069|259865|269280|272064|303069|303070|303071|303072|303073|303074|306341|306342|306345|306346|306347|306348|310058|311169|311170|311172|311173|311302|311303|311306|311310|311312|313377|313386|313388|313389|313393|313399|313403|313405|313413|313414|313416|313419|313421|315653|315654|319492|319496|319498|319499|319504|319505|319511|319514|319516|319517|319521|319522|319523|319524|319528|321111|325626|325627|325629|325632|325633|325634|325635|325636|325642|325643|325644|325650|325651|326665|326666|326668|326673|326677|326678|326698|326700|326703|353177|380248|380249|424956|424957|424958|424959|424960|428730|428735|428737|428738|429186|429199|429201|429203|429208|429208|441126|441408|487507|545817|545820|545824|545826|545832|545841|545867|546115|546116|546118|546118|546120|546120|546122|546127|546130|546134|546170|546173|546178|546187|546188|546193|546194|546201|546326|546452|546454|546456|546458|546460|546501|576978|577180|614519|620396|692972|737885|752574|759683|768328|783918|783925|783933|867614|867615|867616|867617|867618|867619|867620|867621|867622|867623|867624|867625|867626|867627|867628|867629|867630|867631|867632|867633|867634|867635|868624|868625|868626|868627|868628|868629|898116|898117|898118|898119|898120|898121|898122|898123|898124|898125|898126|898127|898128|898129|898130|898131|898132|898133|898134|900365|900366|900367|900368|920296|961285|978877|978878|978879|978880|978881|978882|978883|978884|978885|978886|978887|978888|978889|978890|978891", + "upstreamId": "23705|23706|23707|23708|23709|23710|23711|23715|23717|23718|23719|23722|23724|23725|24127|24141|24142|24143|24144|24146|24147|24148|24150|28426|28427|28428|31180|33927|33928|33929|33930|33966|33967|33969|33970|33972|33974|33975|33976|34017|34018|34019|34020|34021|34022|34045|34046|34047|34048|34049|34050|34051|34052|34053|34054|34055|34056|34057|39080|44267|44269|44273|44274|44278|44282|44288|44864|44866|44870|44872|44877|44886|44899|44906|44907|76489|76495|76496|79618|79621|79622|79623|79624|79625|134590|134593|135501|167529|167530|167532|167533|167534|167535|167536|167537|167539|167540|167543|167545|167546|167547|167550|167551|167553|167554|167555|168861|168863|168866|168867|168870|168870|168871|168875|168875|186812|186816|186819|190275|192808|207485|207828|207839|207840|207840|207850|207852|207853|207853|207854|207862|227344|252883|252884|254064|254068|254069|259865|269280|272064|303069|303070|303071|303072|303073|303074|306341|306342|306345|306346|306347|306348|310058|311169|311170|311172|311173|311302|311303|311306|311310|311312|313377|313386|313388|313389|313393|313399|313403|313405|313413|313414|313416|313419|313421|315653|315654|319492|319496|319498|319499|319504|319505|319511|319514|319516|319517|319521|319522|319523|319524|319528|321111|325626|325627|325629|325632|325633|325634|325635|325636|325642|325643|325644|325650|325651|326665|326666|326668|326673|326677|326678|326698|326700|326703|353177|380248|380249|424956|424957|424958|424959|424960|428730|428735|428737|428738|429186|429199|429201|429203|429208|429208|441126|441408|487507|545817|545820|545824|545826|545832|545841|545867|546115|546116|546118|546118|546120|546120|546122|546127|546130|546134|546170|546173|546178|546187|546188|546193|546194|546201|546326|546452|546454|546456|546458|546460|546501|576978|577180|614519|620396|692972|737885|752574|759683|768328|783918|783925|783933|867614|867615|867616|867617|867618|867619|867620|867621|867622|867623|867624|867625|867626|867627|867628|867629|867630|867631|867632|867633|867634|867635|868624|868625|868626|868627|868628|868629|898116|898117|898118|898119|898120|898121|898122|898123|898124|898125|898126|898127|898128|898129|898130|898131|898132|898133|898134|900365|900366|900367|900368|920296|961285|978877|978878|978879|978880|978881|978882|978883|978884|978885|978886|978887|978888|978889|978890|978891", "text": "Permanent neonatal diabetes mellitus" }, { - "baseId": "23705|23715|23717|23720|23721|23722|23722|23725|45093|168861|168862|168863|168866|168867|168870|168871|168875|207828|207829|207832|207835|207839|207840|254062|269280|272064|313371|313372|313374|313375|313377|313379|313383|313385|313386|313387|319461|319463|319464|319466|319467|319469|319470|319474|319475|319487|319489|319490|319491|325610|325613|325623|325624|325625|325626|326645|326649|326650|326654|326655|326656|326657|326666|429186|545817|545820|545824|545826|545832|545841|546115|546116|546118|546120|546120|546122|546127|546130|546134|546170|546173|546178|546187|546188|546193|546194|546201|546452|546454|546456|546458|546460|783918|867601|867602|867603|867604|867605|867606|867607|867608|867609|867610|867611|867612|867613", + "upstreamId": "23705|23715|23717|23720|23721|23722|23722|23725|45093|168861|168862|168863|168866|168867|168870|168871|168875|207828|207829|207832|207835|207839|207840|254062|269280|272064|313371|313372|313374|313375|313377|313379|313383|313385|313386|313387|319461|319463|319464|319466|319467|319469|319470|319474|319475|319487|319489|319490|319491|325610|325613|325623|325624|325625|325626|326645|326649|326650|326654|326655|326656|326657|326666|429186|545817|545820|545824|545826|545832|545841|546115|546116|546118|546120|546120|546122|546127|546130|546134|546170|546173|546178|546187|546188|546193|546194|546201|546452|546454|546456|546458|546460|783918|867601|867602|867603|867604|867605|867606|867607|867608|867609|867610|867611|867612|867613", "text": "Transient neonatal diabetes mellitus 3" }, { - "baseId": "23705|23706|34056|168872|168873|168879", + "upstreamId": "23705|23706|34056|168872|168873|168879", "text": "Neonatal insulin-dependent diabetes mellitus" }, { - "baseId": "23705|23706|23707|23708|23709|23710|23711|23718|23719|23724|39091", + "upstreamId": "23705|23706|23707|23708|23709|23710|23711|23718|23719|23724|39091", "text": "Permanent neonatal diabetes mellitus 2" }, { - "baseId": "23715|23717|23722|23725|45093|168861|168862|168863|168866|168867|168869|168871|207829|207835|207839|254062|313371|313372|313374|313375|313377|313379|313383|313385|313386|313387|319461|319463|319464|319466|319467|319469|319470|319474|319475|319487|319489|319490|319491|325610|325613|325623|325624|325625|325626|326645|326649|326650|326654|326655|326656|326657|326666|429186|472261|546118|546120|609051|783918|867601|867602|867603|867604|867605|867606|867607|867608|867609|867610|867611|867612|867613", + "upstreamId": "23715|23717|23722|23725|45093|168861|168862|168863|168866|168867|168869|168871|207829|207835|207839|254062|313371|313372|313374|313375|313377|313379|313383|313385|313386|313387|319461|319463|319464|319466|319467|319469|319470|319474|319475|319487|319489|319490|319491|325610|325613|325623|325624|325625|325626|326645|326649|326650|326654|326655|326656|326657|326666|429186|472261|546118|546120|609051|783918|867601|867602|867603|867604|867605|867606|867607|867608|867609|867610|867611|867612|867613", "text": "Maturity-onset diabetes of the young, type 13" }, { - "baseId": "23717", + "upstreamId": "23717", "text": "Exercise stress response, impaired, association with" }, { - "baseId": "23717|167530|167546|167547|167553|167554|207839|313386|315653|315654|319521|325611|325626|326665|326666|353177", + "upstreamId": "23717|167530|167546|167547|167553|167554|207839|313386|315653|315654|319521|325611|325626|326665|326666|353177", "text": "Transient Neonatal Diabetes, Dominant" }, { - "baseId": "23717|167530|167546|167547|167553|167554|207839|291890|291906|293300|296582|313386|315653|315654|319521|325611|325626|326665|326666|353177", + "upstreamId": "23717|167530|167546|167547|167553|167554|207839|291890|291906|293300|296582|313386|315653|315654|319521|325611|325626|326665|326666|353177", "text": "Hyperinsulinism, Dominant/Recessive" }, { - "baseId": "23717|23898|28830|44907|44922|45013|45024|45028|45062|134685|134725|135320|135321|135322|135323|135324|167553|167554|207839|254105|254106|254108|260011|281440|281448|281466|281475|283468|283470|283487|283606|284160|284163|284164|284170|286078|286435|286436|301722|301723|301731|301737|301739|301740|301741|301753|301755|301757|301762|301763|301764|301774|301783|303948|303950|303951|303954|304936|304937|304938|304942|304943|306342|306348|307485|307487|307497|307498|307499|307637|309560|309561|309562|309563|309570|309571|309580|309581|309590|309591|309592|309685|309687|309705|309707|309738|309742|309746|309748|309758|309759|312503|312521|312557|312598|313386|313632|319828|325611|325626|325998|326005|326665|326666|326978|326979|326982|326983|329687|335448|335486|335509|335512|335513|335524|345258|345295|345298|349979|349993|350002|350003|350004|351012|351014|351015|351017|351019|351023|353805|425758|429380|444135|513905|613078|623485|623492|623543|790136|791984|800974|917106|961106|961107|961108|975843", + "upstreamId": "23717|23898|28830|44907|44922|45013|45024|45028|45062|134685|134725|135320|135321|135322|135323|135324|167553|167554|207839|254105|254106|254108|260011|281440|281448|281466|281475|283468|283470|283487|283606|284160|284163|284164|284170|286078|286435|286436|301722|301723|301731|301737|301739|301740|301741|301753|301755|301757|301762|301763|301764|301774|301783|303948|303950|303951|303954|304936|304937|304938|304942|304943|306342|306348|307485|307487|307497|307498|307499|307637|309560|309561|309562|309563|309570|309571|309580|309581|309590|309591|309592|309685|309687|309705|309707|309738|309742|309746|309748|309758|309759|312503|312521|312557|312598|313386|313632|319828|325611|325626|325998|326005|326665|326666|326978|326979|326982|326983|329687|335448|335486|335509|335512|335513|335524|345258|345295|345298|349979|349993|350002|350003|350004|351012|351014|351015|351017|351019|351023|353805|425758|429380|444135|513905|613078|623485|623492|623543|790136|791984|800974|917106|961106|961107|961108|975843", "text": "Maturity onset diabetes mellitus in young" }, { - "baseId": "23717", + "upstreamId": "23717", "text": "glibenclamide response - Efficacy" }, { - "baseId": "23717", + "upstreamId": "23717", "text": "gliclazide response - Efficacy" }, { - "baseId": "23717", + "upstreamId": "23717", "text": "glimepiride response - Efficacy" }, { - "baseId": "23717", + "upstreamId": "23717", "text": "glipizide response - Efficacy" }, { - "baseId": "23717", + "upstreamId": "23717", "text": "gliquidone response - Efficacy" }, { - "baseId": "23726|337705|347271|347273|347275|351269|351271|351274|352326|352327|352328|352329|352330|352331|410924|417542|417543|470923|471814|571755|575223|620685|649231|786566|891024|891025|891026|891027|891028|891029|891030|891031|891032|891033|891816|891817", + "upstreamId": "23726|337705|347271|347273|347275|351269|351271|351274|352326|352327|352328|352329|352330|352331|410924|417542|417543|470923|471814|571755|575223|620685|649231|786566|891024|891025|891026|891027|891028|891029|891030|891031|891032|891033|891816|891817", "text": "Cataract, congenital nuclear, autosomal recessive 3" }, { - "baseId": "23730|211701|211704|414710|550030|653889|653917|919613", + "upstreamId": "23730|211701|211704|414710|550030|653889|653917|919613", "text": "Myopathy, mitochondrial progressive, with congenital cataract, hearing loss, and developmental delay" }, { - "baseId": "23731|23732|23733|23734|23735|23736|23738|23739|23743|187104|276880|276887|276890|277167|277169|277170|277173|277832|277833|277834|277835|277852|277854|277855|277862|277865|277866|277867|277892|277893|277895|277908|277910|277917|550200|612175|862578|862579|862580|862581|862582|862583|862584|862585|903502|964734", + "upstreamId": "23731|23732|23733|23734|23735|23736|23738|23739|23743|187104|276880|276887|276890|277167|277169|277170|277173|277832|277833|277834|277835|277852|277854|277855|277862|277865|277866|277867|277892|277893|277895|277908|277910|277917|550200|612175|862578|862579|862580|862581|862582|862583|862584|862585|903502|964734", "text": "Variegate porphyria" }, { - "baseId": "23737|23740|23741|23742|23743", + "upstreamId": "23737|23740|23741|23742|23743", "text": "Variegate porphyria, homozygous" }, { - "baseId": "23744|319152|319157|319162|319163|319165|319175|319176|319187|319191|319192|319196|319197|319199|319200|319206|319207|319208|319211|327614|327626|327645|327652|327654|327658|327667|327668|327686|327701|327703|327705|327706|327707|327709|333889|333908|333914|333915|333955|333958|333963|333968|333977|333997|334003|334007|335581|335583|335588|335593|335609|335612|335615|335617|335618|438515|870860|870861|870862|870863|870864|870865|870866|870867|870868|870869|870870|870871|870872|870873|870874|870875|870876|870877|870878|870879|870880|870881|870882|870883|870884|870885|870886|870887|872319", + "upstreamId": "23744|319152|319157|319162|319163|319165|319175|319176|319187|319191|319192|319196|319197|319199|319200|319206|319207|319208|319211|327614|327626|327645|327652|327654|327658|327667|327668|327686|327701|327703|327705|327706|327707|327709|333889|333908|333914|333915|333955|333958|333963|333968|333977|333997|334003|334007|335581|335583|335588|335593|335609|335612|335615|335617|335618|438515|870860|870861|870862|870863|870864|870865|870866|870867|870868|870869|870870|870871|870872|870873|870874|870875|870876|870877|870878|870879|870880|870881|870882|870883|870884|870885|870886|870887|872319", "text": "Multiple synostoses syndrome 3" }, { - "baseId": "23745|28354|28628|29976|38716", + "upstreamId": "23745|28354|28628|29976|38716", "text": "Insulin resistance, susceptibility to" }, { - "baseId": "23746", + "upstreamId": "23746", "text": "Insulin resistance, severe, digenic" }, { - "baseId": "23747", + "upstreamId": "23747", "text": "Glycemia variation" }, { - "baseId": "23748|23749|23750|138069|138070|138072|138073|138075|138077|138079|138080|138081|138082|138083|138084|207415|207416|221630|223359|239903|239904|252337|252339|299918|299920|299921|299922|299926|299928|299933|302569|302571|302575|302588|306947|306958|306960|306962|306963|306982|306986|306987|307217|307223|307226|307227|395115|395252|395253|395255|395259|395263|395267|395457|395461|395715|395729|395735|428630|455563|455569|455571|455576|455709|455719|455725|455731|455737|456143|456146|456154|456386|456388|456396|456398|456401|496868|521628|521629|521930|521934|521936|521975|521977|521991|522303|522305|522307|560702|560704|560706|560808|563545|563547|634870|634871|634872|634873|634874|634875|634876|634877|651552|685194|686837|790621|831869|831870|831871|831872|831873|831874|831875|831876|831877|831878|831879|895853|895854|895855|895856|895857|895858|895859|895860|895861|895862|895863|895864|895865|896232|896233|896234|904102|917888|917889|917892|917893|917897|917898|917900|924344|924345|924346|924347|933306|933307|933308|944992|944993|944994|944995|944996|944997|944998|960581", + "upstreamId": "23748|23749|23750|138069|138070|138072|138073|138075|138077|138079|138080|138081|138082|138083|138084|207415|207416|221630|223359|239903|239904|252337|252339|299918|299920|299921|299922|299926|299928|299933|302569|302571|302575|302588|306947|306958|306960|306962|306963|306982|306986|306987|307217|307223|307226|307227|395115|395252|395253|395255|395259|395263|395267|395457|395461|395715|395729|395735|428630|455563|455569|455571|455576|455709|455719|455725|455731|455737|456143|456146|456154|456386|456388|456396|456398|456401|496868|521628|521629|521930|521934|521936|521975|521977|521991|522303|522305|522307|560702|560704|560706|560808|563545|563547|634870|634871|634872|634873|634874|634875|634876|634877|651552|685194|686837|790621|831869|831870|831871|831872|831873|831874|831875|831876|831877|831878|831879|895853|895854|895855|895856|895857|895858|895859|895860|895861|895862|895863|895864|895865|896232|896233|896234|904102|917888|917889|917892|917893|917897|917898|917900|924344|924345|924346|924347|933306|933307|933308|944992|944993|944994|944995|944996|944997|944998|960581", "text": "Fanconi anemia, complementation group E" }, { - "baseId": "23751|23752|23753|23754|23755|23756|23757|23758|23759|51200|98566|98567|98568|98569|190229|251489|266358|266485|266486|267097|267280|267694|268373|268725|268739|269058|269397|269417|269986|270198|272142|272512|272523|273339|298590|298630|357354|357355|357356|357357|357358|357359|357360|406439|443616|452824|453224|453592|453595|453954|453958|453960|453976|453980|453986|489686|490406|490617|493575|500997|514497|519667|519948|519960|520213|520214|520217|543118|543120|543124|543126|543413|543418|543419|543421|543422|543424|543426|543428|543430|543432|543502|543508|559701|562028|563343|563741|563760|563765|587456|588486|632236|632237|632238|632239|632240|632241|632242|651157|651176|698542|698543|734657|748960|781965|787255|790476|790477|799361|802152|819484|829201|829202|829203|829204|829205|829206|829207|850988|932363|932364|932365|978098", + "upstreamId": "23751|23752|23753|23754|23755|23756|23757|23758|23759|51200|98566|98567|98568|98569|190229|251489|266358|266485|266486|267097|267280|267694|268373|268725|268739|269058|269397|269417|269986|270198|272142|272512|272523|273339|298590|298630|357354|357355|357356|357357|357358|357359|357360|406439|443616|452824|453224|453592|453595|453954|453958|453960|453976|453980|453986|489686|490406|490617|493575|500997|514497|519667|519948|519960|520213|520214|520217|543118|543120|543124|543126|543413|543418|543419|543421|543422|543424|543426|543428|543430|543432|543502|543508|559701|562028|563343|563741|563760|563765|587456|588486|632236|632237|632238|632239|632240|632241|632242|651157|651176|698542|698543|734657|748960|781965|787255|790476|790477|799361|802152|819484|829201|829202|829203|829204|829205|829206|829207|850988|932363|932364|932365|978098", "text": "Autosomal recessive limb-girdle muscular dystrophy type 2E" }, { - "baseId": "23760|23761|23762|23763|23764|23765|23766|79357|213977|213979|249384|276318|276319|276546|276547|277014|277022|277025|277112|277113|277114|277115|277116|277117|277120|353059|353060|417647|439651|447089|447177|556590|558106|558108|626786|626787|626788|626789|690358|696060|761170|818813|822676|822677|822678|822679|822680|822681|862183|862184|862185|862186|862187|862188|862189|862190|862191|862192|862193|862194|862195|864973|921624|930022|964127", + "upstreamId": "23760|23761|23762|23763|23764|23765|23766|79357|213977|213979|249384|276318|276319|276546|276547|277014|277022|277025|277112|277113|277114|277115|277116|277117|277120|353059|353060|417647|439651|447089|447177|556590|558106|558108|626786|626787|626788|626789|690358|696060|761170|818813|822676|822677|822678|822679|822680|822681|862183|862184|862185|862186|862187|862188|862189|862190|862191|862192|862193|862194|862195|864973|921624|930022|964127", "text": "Cataract 1" }, { - "baseId": "23767|23767|23768|23769|23770|23770|23771|23775|23775|23776|23776|98501|98502|98503|98503|98504|141234|186664|186665|186665|186666|186666|186667|186668|186668|190727|190727|191487|192079|194803|199996|199996|199998|199998|199999|200000|200001|200004|237465|237465|285635|285639|285645|285645|285653|286343|286349|286352|286363|286363|286381|286381|288651|288661|288665|288666|288666|288674|288677|288678|289054|289055|289069|289070|289070|289074|289076|289076|289078|289078|289082|289090|289090|357249|357250|357251|357251|357252|357253|357254|357255|357256|357257|357258|357259|357259|357260|357261|357262|357262|357263|357264|367169|367169|421377|421379|443223|443224|443225|443226|450763|486890|486934|486963|493318|495154|499642|499645|499872|499872|500072|500072|518053|518137|541952|541955|541958|541961|541963|541963|541965|541969|541971|541973|541976|541977|541979|541980|542055|542057|542059|542061|542063|542069|542070|542084|542086|542088|542088|542089|542093|542101|542213|542227|542232|542232|542236|542237|542248|557986|557986|558338|561248|629757|629758|629759|629760|629761|629762|629763|629763|650766|650949|676958|691112|691112|691113|691114|695138|733384|733384|733386|733387|733388|733389|747518|747519|747520|763133|763137|763139|763142|763142|774695|774725|774733|781274|781275|781279|781280|781282|819149|821879|826117|826118|826119|826120|826121|851170|851414|858432|884467|884468|884469|884470|884471|884472|884473|884474|884475|884476|884477|884478|884479|884480|884481|884482|887336|922678|922679|922680|931264|940704|942747|942748|953023|953024|960469|971793|971794|971795|971796|971797|971798|971799|971800|971801|971802|971803|971804|972546", + "upstreamId": "23767|23767|23768|23769|23770|23770|23771|23775|23775|23776|23776|98501|98502|98503|98503|98504|141234|186664|186665|186665|186666|186666|186667|186668|186668|190727|190727|191487|192079|194803|199996|199996|199998|199998|199999|200000|200001|200004|237465|237465|285635|285639|285645|285645|285653|286343|286349|286352|286363|286363|286381|286381|288651|288661|288665|288666|288666|288674|288677|288678|289054|289055|289069|289070|289070|289074|289076|289076|289078|289078|289082|289090|289090|357249|357250|357251|357251|357252|357253|357254|357255|357256|357257|357258|357259|357259|357260|357261|357262|357262|357263|357264|367169|367169|421377|421379|443223|443224|443225|443226|450763|486890|486934|486963|493318|495154|499642|499645|499872|499872|500072|500072|518053|518137|541952|541955|541958|541961|541963|541963|541965|541969|541971|541973|541976|541977|541979|541980|542055|542057|542059|542061|542063|542069|542070|542084|542086|542088|542088|542089|542093|542101|542213|542227|542232|542232|542236|542237|542248|557986|557986|558338|561248|629757|629758|629759|629760|629761|629762|629763|629763|650766|650949|676958|691112|691112|691113|691114|695138|733384|733384|733386|733387|733388|733389|747518|747519|747520|763133|763137|763139|763142|763142|774695|774725|774733|781274|781275|781279|781280|781282|819149|821879|826117|826118|826119|826120|826121|851170|851414|858432|884467|884468|884469|884470|884471|884472|884473|884474|884475|884476|884477|884478|884479|884480|884481|884482|887336|922678|922679|922680|931264|940704|942747|942748|953023|953024|960469|971793|971794|971795|971796|971797|971798|971799|971800|971801|971802|971803|971804|972546", "text": "Long-chain 3-hydroxyacyl-CoA dehydrogenase deficiency" }, { - "baseId": "23767|285637|286351|286383|288678|288679|288705|289060|289091", + "upstreamId": "23767|285637|286351|286383|288678|288679|288705|289060|289091", "text": "LCHAD Deficiency" }, { - "baseId": "23767|23767|23768|23769|23770|23770|23771|23771|23772|23773|23774|23775|23775|23776|23776|29883|29884|29885|29886|29887|29888|98501|98503|98503|98504|98505|98507|98508|141234|141235|141236|186664|186665|186666|186668|188207|190727|191487|199996|199996|199998|199998|200001|200006|200007|200008|200009|227239|227240|237024|237465|237465|247460|285635|285637|285639|285645|285645|285653|285654|285655|285656|285661|285667|285685|285695|285696|286343|286349|286351|286352|286363|286363|286381|286381|286382|286383|286384|286385|286388|286389|288651|288661|288665|288666|288666|288674|288677|288678|288679|288705|288706|288713|288720|289054|289055|289060|289069|289070|289070|289074|289076|289076|289078|289078|289082|289090|289090|289091|289093|289111|289112|289113|289114|289128|289137|357251|357259|357262|367169|367169|405702|421380|425486|443224|443225|443227|443228|450665|450763|450766|486890|493318|499642|499645|499872|499872|499884|500072|500072|500095|500112|513524|518006|518053|518057|518137|538967|541963|542088|542232|557986|557986|558338|558340|560555|561248|561250|578402|590269|620078|629757|629758|629759|629760|629761|629762|629763|629763|629764|650766|650949|650999|676958|691112|691112|691113|691114|691116|691117|695138|719794|733384|733384|733386|733387|733388|733389|743934|747518|747519|747520|763133|763137|763139|763142|763142|774695|774725|774733|781274|781275|781279|781280|781282|790224|790225|790226|804738|819149|821879|826117|826118|826119|826120|826121|826122|826123|851170|851414|851416|858432|884467|884468|884469|884470|884471|884472|884473|884474|884475|884476|884477|884478|884479|884480|884482|884483|884484|884485|884486|884487|884488|884489|884490|887336|887337|887338|904870|904947|922678|922679|922680|922681|931264|940704|940705|942747|942748|953023|953024|960469|961233|961234|961235|966348|971793|971794|971795|971796|971797|971798|971799|971800|971801|971802|971803|971804", + "upstreamId": "23767|23767|23768|23769|23770|23770|23771|23771|23772|23773|23774|23775|23775|23776|23776|29883|29884|29885|29886|29887|29888|98501|98503|98503|98504|98505|98507|98508|141234|141235|141236|186664|186665|186666|186668|188207|190727|191487|199996|199996|199998|199998|200001|200006|200007|200008|200009|227239|227240|237024|237465|237465|247460|285635|285637|285639|285645|285645|285653|285654|285655|285656|285661|285667|285685|285695|285696|286343|286349|286351|286352|286363|286363|286381|286381|286382|286383|286384|286385|286388|286389|288651|288661|288665|288666|288666|288674|288677|288678|288679|288705|288706|288713|288720|289054|289055|289060|289069|289070|289070|289074|289076|289076|289078|289078|289082|289090|289090|289091|289093|289111|289112|289113|289114|289128|289137|357251|357259|357262|367169|367169|405702|421380|425486|443224|443225|443227|443228|450665|450763|450766|486890|493318|499642|499645|499872|499872|499884|500072|500072|500095|500112|513524|518006|518053|518057|518137|538967|541963|542088|542232|557986|557986|558338|558340|560555|561248|561250|578402|590269|620078|629757|629758|629759|629760|629761|629762|629763|629763|629764|650766|650949|650999|676958|691112|691112|691113|691114|691116|691117|695138|719794|733384|733384|733386|733387|733388|733389|743934|747518|747519|747520|763133|763137|763139|763142|763142|774695|774725|774733|781274|781275|781279|781280|781282|790224|790225|790226|804738|819149|821879|826117|826118|826119|826120|826121|826122|826123|851170|851414|851416|858432|884467|884468|884469|884470|884471|884472|884473|884474|884475|884476|884477|884478|884479|884480|884482|884483|884484|884485|884486|884487|884488|884489|884490|887336|887337|887338|904870|904947|922678|922679|922680|922681|931264|940704|940705|942747|942748|953023|953024|960469|961233|961234|961235|966348|971793|971794|971795|971796|971797|971798|971799|971800|971801|971802|971803|971804", "text": "Mitochondrial trifunctional protein deficiency" }, { - "baseId": "23767|186668|620077", + "upstreamId": "23767|186668|620077", "text": "HADHA-Related Disorders" }, { - "baseId": "23767|23770|98503|98504|186666|186667|186668|199996|199998|200001|237465|280428|289070|289076|366520|442783|443224|558338|609478|627626|629763|650949|691112|691114|695138|733384|733386|733389|747519|761784|761791|763133|763141|774733|781274|781282|821879|977710|977711", + "upstreamId": "23767|23770|98503|98504|186666|186667|186668|199996|199998|200001|237465|280428|289070|289076|366520|442783|443224|558338|609478|627626|629763|650949|691112|691114|695138|733384|733386|733389|747519|761784|761791|763133|763141|774733|781274|781282|821879|977710|977711", "text": "Deficiency of long-chain 3-hydroxyacyl-coenzyme A dehydrogenase" }, { - "baseId": "23767", + "upstreamId": "23767", "text": "Lchad deficiency with maternal acute fatty liver of pregnancy" }, { - "baseId": "23777|247771|247772|247773|576119|699196|710050|790565", + "upstreamId": "23777|247771|247772|247773|576119|699196|710050|790565", "text": "Familial adenomatous polyposis 4" }, { - "baseId": "23778|23779|250019|250021|250022|250023|250024|250026|281292|281300|281927|281937|283195|283196|283214|283368|427867|448253|448256|448376|516131|516242|557380|557427|628276|628277|628278|628279|732642|732643|732644|743773|762094|777112|778922|787070|790000|790001|824431|824432|824433|824434|922165|922166|922167|922168|922169|930668|942107|952528|952529", + "upstreamId": "23778|23779|250019|250021|250022|250023|250024|250026|281292|281300|281927|281937|283195|283196|283214|283368|427867|448253|448256|448376|516131|516242|557380|557427|628276|628277|628278|628279|732642|732643|732644|743773|762094|777112|778922|787070|790000|790001|824431|824432|824433|824434|922165|922166|922167|922168|922169|930668|942107|952528|952529", "text": "Severe congenital neutropenia 2, autosomal dominant" }, { - "baseId": "23779", + "upstreamId": "23779", "text": "Neutropenia, nonimmune chronic idiopathic, of adults" }, { - "baseId": "23780|59460", + "upstreamId": "23780|59460", "text": "Advanced sleep phase syndrome, familial, 2" }, { - "baseId": "23781|23782|23783|23784|39088|39088|48184|48185|135721|135722|150956|151115|151115|151129|151481|151481|151538|151589|151590|152315|152315|152315|170202|170202|170202|188049|205718|205718|209316|209317|209317|209318|221617|221618|221618|221618|221619|224306|224306|226816|226816|226817|226818|226820|226820|226821|226821|226822|226823|226824|226825|226826|233448|233449|233452|233453|233454|233454|233454|233456|233457|233458|233461|233462|233463|233464|233464|239514|239796|239796|239797|239798|239799|239799|239799|239800|239800|239801|239802|239803|239803|239804|239805|239806|239807|239808|239809|239809|239810|239811|239811|239812|239813|239814|239815|239815|239816|239817|239817|239818|239819|239820|239821|239822|239823|239824|239825|239826|239827|239827|239828|239829|239830|239831|239831|239832|239833|239835|239835|239836|239837|239838|239838|239839|239840|239841|239842|239843|239843|239844|239845|239846|239846|239847|239848|239848|247305|247306|247307|247308|247308|247309|247310|247310|247310|247311|247312|247313|247314|247314|248488|251942|297296|303497|303695|358787|358787|358788|358789|358789|358790|358791|358792|358793|358793|358794|358794|358794|358795|358795|358796|358797|358797|358798|358799|358799|358800|358818|368147|368428|368432|368620|368620|368622|369831|369833|394857|394857|394870|394876|394877|394879|394884|394887|394889|394889|394892|394893|394897|394900|394903|394906|394906|394910|394917|394917|394918|394919|394923|394924|394925|394926|394938|394939|394942|394984|394987|394988|394989|394994|394995|395002|395004|395011|395018|395022|395029|395035|395036|395037|395039|395040|395045|395046|395047|395048|395056|395067|395069|395074|395078|395078|395088|395097|395102|395106|395107|395107|395116|395157|395159|395160|395162|395164|395166|395181|395181|395183|395185|395191|395198|395198|395200|395203|395208|395218|395232|395234|395236|395241|395257|395261|395262|395272|395273|395276|395279|395281|395281|395291|395303|395307|395310|395315|395462|395463|395476|395478|395483|395484|395488|395494|395496|395503|395504|395506|395509|395510|395510|395513|395515|395517|395522|395524|395525|395527|395531|395533|395538|395550|395554|406737|406739|406740|415003|434601|443782|443783|454876|454877|454894|454895|454899|454905|454909|454910|454915|454917|454917|454918|454919|454920|454928|454931|454932|454934|454935|454938|454945|454948|454955|454967|454969|454974|454979|454980|454987|455031|455036|455038|455044|455045|455048|455053|455055|455055|455057|455061|455064|455065|455071|455072|455076|455077|455080|455082|455091|455095|455097|455099|455102|455117|455118|455120|455125|455127|455128|455129|455133|455138|455139|455147|455152|455154|455156|455165|455493|455506|455508|455513|455515|455516|455517|455519|455520|455526|455531|455533|455535|455537|455540|455543|455544|455548|455549|455549|455550|455552|455555|455556|455560|455564|455565|455566|455575|455577|455582|455583|455598|455601|455611|455614|455726|455730|455732|455734|455735|455741|455744|455753|455760|455763|455765|455768|455768|455770|455784|455786|455790|455792|455793|455795|455805|455806|455815|455817|455824|455830|455832|455842|455846|455847|455855|455859|455867|455869|455870|455871|455874|474349|474354|474368|474370|474373|474374|474376|474377|474378|474379|474379|474381|474382|474383|474385|474386|474386|474387|474389|474390|474391|474392|474394|474395|474401|474403|474406|474408|474410|474418|474421|474432|474456|474458|474464|474480|474486|474490|474491|474499|474504|480467|500872|521100|521102|521105|521108|521112|521115|521115|521123|521124|521127|521130|521132|521140|521149|521150|521158|521170|521356|521358|521360|521363|521364|521369|521370|521376|521379|521381|521384|521389|521392|521395|521399|521400|521402|521412|521414|521418|521423|521428|521432|521436|521480|521487|521500|521503|521509|521510|521513|521516|521523|521525|521527|521528|521533|521651|521654|521663|521665|521671|521677|521679|521684|521686|521701|521705|521716|521718|521720|521726|521728|521732|521734|521736|521741|521743|521749|521751|521753|521759|521761|521769|521772|536214|536309|539254|539255|539255|539256|539256|539257|539258|539259|539259|539260|560291|560293|560295|560297|560299|560301|560303|560305|560307|560309|560311|560313|560412|560414|560416|560418|560420|560422|560424|560426|560428|560430|560432|560434|560436|560438|560440|560442|560444|560446|563090|563092|563094|563103|563105|563107|563109|563113|563117|563118|563121|563125|563125|563128|563129|563131|563133|563138|563146|563149|563150|563153|565075|565076|565078|565083|565084|565088|565090|565091|565101|565105|565106|565107|565110|565114|565121|633848|633849|633850|633851|633852|633853|633854|633855|633856|633857|633858|633859|633860|633861|633862|633863|633864|633865|633866|633867|633868|633869|633870|633871|633872|633873|633874|633875|633876|633877|633878|633879|633880|633881|633882|633883|633884|633885|633886|633887|633888|633889|633890|633891|633892|633893|633894|633895|633896|633897|633898|633899|633900|633901|633902|633903|633904|633905|633906|633907|633908|633909|633910|633911|633912|633913|633914|633915|633916|633917|633918|633919|633920|633921|633922|633923|633924|633925|633926|633927|633928|633929|633930|633931|651337|651343|651425|651431|682219|686738|686739|686740|686741|686743|686744|686745|689795|691844|691845|691846|691847|691849|691850|691851|695290|699057|699058|709864|721426|730355|730356|744236|749458|749460|749461|749462|749463|749464|749465|759470|765082|765088|765089|765092|775065|777455|777549|782270|782271|782273|782274|782276|782278|787324|787438|795689|795691|808581|808584|808585|808589|808593|808600|808603|808607|808610|808613|808614|808617|808623|808633|808634|808635|808640|808647|815348|830773|830774|830775|830776|830777|830778|830779|830780|830781|830782|830783|830784|830785|830786|830787|830788|830789|830790|830791|830792|830793|830794|830795|830796|830797|830798|830799|830800|830801|830802|830803|830804|830805|830806|830807|830808|830809|830810|830811|830812|830813|830814|830815|830816|830817|830818|830819|830820|830821|830822|830823|830824|830825|830826|830827|830828|830829|830830|830831|830832|830833|851030|851032|851284|851286|851288|851976|851980|851982|851984|852202|852203|852204|852209|859422|894085|924027|924028|924029|924030|924031|924032|924033|924034|924035|924036|924037|924038|924039|924040|924041|924042|924043|924044|924045|924046|924047|924048|924049|924050|924051|924052|924053|924054|924055|924056|924057|924058|924059|924060|924061|932880|932881|932882|932883|932884|932885|932886|932887|932888|932889|932890|932891|932892|932893|932894|932895|932896|932897|932898|932899|932900|932901|932902|940001|940002|940003|944585|944586|944587|944588|944589|944590|944591|944592|944593|944594|944595|944596|944597|944598|944599|944600|944601|944602|944603|944604|944605|944606|944607|944608|944609|944610|944611|944612|944613|944614|944615|954151|954152|954153|954154|954155|954156|954157|954158|954159|954160|954161|954162|954163|954164|954165|954166|954167|954168|954169|954170|959764|959765|959766|960567", + "upstreamId": "23781|23782|23783|23784|39088|39088|48184|48185|135721|135722|150956|151115|151115|151129|151481|151481|151538|151589|151590|152315|152315|152315|170202|170202|170202|188049|205718|205718|209316|209317|209317|209318|221617|221618|221618|221618|221619|224306|224306|226816|226816|226817|226818|226820|226820|226821|226821|226822|226823|226824|226825|226826|233448|233449|233452|233453|233454|233454|233454|233456|233457|233458|233461|233462|233463|233464|233464|239514|239796|239796|239797|239798|239799|239799|239799|239800|239800|239801|239802|239803|239803|239804|239805|239806|239807|239808|239809|239809|239810|239811|239811|239812|239813|239814|239815|239815|239816|239817|239817|239818|239819|239820|239821|239822|239823|239824|239825|239826|239827|239827|239828|239829|239830|239831|239831|239832|239833|239835|239835|239836|239837|239838|239838|239839|239840|239841|239842|239843|239843|239844|239845|239846|239846|239847|239848|239848|247305|247306|247307|247308|247308|247309|247310|247310|247310|247311|247312|247313|247314|247314|248488|251942|297296|303497|303695|358787|358787|358788|358789|358789|358790|358791|358792|358793|358793|358794|358794|358794|358795|358795|358796|358797|358797|358798|358799|358799|358800|358818|368147|368428|368432|368620|368620|368622|369831|369833|394857|394857|394870|394876|394877|394879|394884|394887|394889|394889|394892|394893|394897|394900|394903|394906|394906|394910|394917|394917|394918|394919|394923|394924|394925|394926|394938|394939|394942|394984|394987|394988|394989|394994|394995|395002|395004|395011|395018|395022|395029|395035|395036|395037|395039|395040|395045|395046|395047|395048|395056|395067|395069|395074|395078|395078|395088|395097|395102|395106|395107|395107|395116|395157|395159|395160|395162|395164|395166|395181|395181|395183|395185|395191|395198|395198|395200|395203|395208|395218|395232|395234|395236|395241|395257|395261|395262|395272|395273|395276|395279|395281|395281|395291|395303|395307|395310|395315|395462|395463|395476|395478|395483|395484|395488|395494|395496|395503|395504|395506|395509|395510|395510|395513|395515|395517|395522|395524|395525|395527|395531|395533|395538|395550|395554|406737|406739|406740|415003|434601|443782|443783|454876|454877|454894|454895|454899|454905|454909|454910|454915|454917|454917|454918|454919|454920|454928|454931|454932|454934|454935|454938|454945|454948|454955|454967|454969|454974|454979|454980|454987|455031|455036|455038|455044|455045|455048|455053|455055|455055|455057|455061|455064|455065|455071|455072|455076|455077|455080|455082|455091|455095|455097|455099|455102|455117|455118|455120|455125|455127|455128|455129|455133|455138|455139|455147|455152|455154|455156|455165|455493|455506|455508|455513|455515|455516|455517|455519|455520|455526|455531|455533|455535|455537|455540|455543|455544|455548|455549|455549|455550|455552|455555|455556|455560|455564|455565|455566|455575|455577|455582|455583|455598|455601|455611|455614|455726|455730|455732|455734|455735|455741|455744|455753|455760|455763|455765|455768|455768|455770|455784|455786|455790|455792|455793|455795|455805|455806|455815|455817|455824|455830|455832|455842|455846|455847|455855|455859|455867|455869|455870|455871|455874|474349|474354|474368|474370|474373|474374|474376|474377|474378|474379|474379|474381|474382|474383|474385|474386|474386|474387|474389|474390|474391|474392|474394|474395|474401|474403|474406|474408|474410|474418|474421|474432|474456|474458|474464|474480|474486|474490|474491|474499|474504|480467|500872|521100|521102|521105|521108|521112|521115|521115|521123|521124|521127|521130|521132|521140|521149|521150|521158|521170|521356|521358|521360|521363|521364|521369|521370|521376|521379|521381|521384|521389|521392|521395|521399|521400|521402|521412|521414|521418|521423|521428|521432|521436|521480|521487|521500|521503|521509|521510|521513|521516|521523|521525|521527|521528|521533|521651|521654|521663|521665|521671|521677|521679|521684|521686|521701|521705|521716|521718|521720|521726|521728|521732|521734|521736|521741|521743|521749|521751|521753|521759|521761|521769|521772|536214|536309|539254|539255|539255|539256|539256|539257|539258|539259|539259|539260|560291|560293|560295|560297|560299|560301|560303|560305|560307|560309|560311|560313|560412|560414|560416|560418|560420|560422|560424|560426|560428|560430|560432|560434|560436|560438|560440|560442|560444|560446|563090|563092|563094|563103|563105|563107|563109|563113|563117|563118|563121|563125|563125|563128|563129|563131|563133|563138|563146|563149|563150|563153|565075|565076|565078|565083|565084|565088|565090|565091|565101|565105|565106|565107|565110|565114|565121|633848|633849|633850|633851|633852|633853|633854|633855|633856|633857|633858|633859|633860|633861|633862|633863|633864|633865|633866|633867|633868|633869|633870|633871|633872|633873|633874|633875|633876|633877|633878|633879|633880|633881|633882|633883|633884|633885|633886|633887|633888|633889|633890|633891|633892|633893|633894|633895|633896|633897|633898|633899|633900|633901|633902|633903|633904|633905|633906|633907|633908|633909|633910|633911|633912|633913|633914|633915|633916|633917|633918|633919|633920|633921|633922|633923|633924|633925|633926|633927|633928|633929|633930|633931|651337|651343|651425|651431|682219|686738|686739|686740|686741|686743|686744|686745|689795|691844|691845|691846|691847|691849|691850|691851|695290|699057|699058|709864|721426|730355|730356|744236|749458|749460|749461|749462|749463|749464|749465|759470|765082|765088|765089|765092|775065|777455|777549|782270|782271|782273|782274|782276|782278|787324|787438|795689|795691|808581|808584|808585|808589|808593|808600|808603|808607|808610|808613|808614|808617|808623|808633|808634|808635|808640|808647|815348|830773|830774|830775|830776|830777|830778|830779|830780|830781|830782|830783|830784|830785|830786|830787|830788|830789|830790|830791|830792|830793|830794|830795|830796|830797|830798|830799|830800|830801|830802|830803|830804|830805|830806|830807|830808|830809|830810|830811|830812|830813|830814|830815|830816|830817|830818|830819|830820|830821|830822|830823|830824|830825|830826|830827|830828|830829|830830|830831|830832|830833|851030|851032|851284|851286|851288|851976|851980|851982|851984|852202|852203|852204|852209|859422|894085|924027|924028|924029|924030|924031|924032|924033|924034|924035|924036|924037|924038|924039|924040|924041|924042|924043|924044|924045|924046|924047|924048|924049|924050|924051|924052|924053|924054|924055|924056|924057|924058|924059|924060|924061|932880|932881|932882|932883|932884|932885|932886|932887|932888|932889|932890|932891|932892|932893|932894|932895|932896|932897|932898|932899|932900|932901|932902|940001|940002|940003|944585|944586|944587|944588|944589|944590|944591|944592|944593|944594|944595|944596|944597|944598|944599|944600|944601|944602|944603|944604|944605|944606|944607|944608|944609|944610|944611|944612|944613|944614|944615|954151|954152|954153|954154|954155|954156|954157|954158|954159|954160|954161|954162|954163|954164|954165|954166|954167|954168|954169|954170|959764|959765|959766|960567", "text": "Paragangliomas 5" }, { - "baseId": "23784|152315|170202|221618|226826|233454|233464|239799|239817|247308|247310|247314|358794|395181|395198|395510|434601|455549|455768|474379|474386|563125", + "upstreamId": "23784|152315|170202|221618|226826|233454|233464|239799|239817|247308|247310|247314|358794|395181|395198|395510|434601|455549|455768|474379|474386|563125", "text": "Dilated cardiomyopathy 1GG" }, { - "baseId": "23789|24120|24121|24122|538927", + "upstreamId": "23789|24120|24121|24122|538927", "text": "Platelet-type bleeding disorder 8" }, { - "baseId": "23790|227241|227242", + "upstreamId": "23790|227241|227242", "text": "Fasting plasma glucose level quantitative trait locus 5" }, { - "baseId": "23791|23792|23793|23794|23795|75371|213636|255250|255252|260798|260799|322699|322700|322703|322705|322715|322717|322721|332190|332194|332196|332200|332203|332204|332211|332212|332214|332215|332218|332219|332223|332226|332230|339166|339175|339176|339178|339180|339185|339186|339191|339194|339199|339202|339213|340664|340667|340668|340671|340674|340675|340677|340678|340681|340682|340688|340689|380138|380139|380140|380141|380142|438763|513630|577394|577397|612178|703235|714471|714472|726113|739654|770195|873668|873669|873670|873671|873672|873673|873674|873675|873676|873677|873678|873679|873680|873681|873682|873683|873684|873685|873686|873687|873688|873689|873690|873691|873692|873693|873694|873695|873696|873697|873698|873699|873700|873701|876528|876529|876530|876531|876532|919571|964421", + "upstreamId": "23791|23792|23793|23794|23795|75371|213636|255250|255252|260798|260799|322699|322700|322703|322705|322715|322717|322721|332190|332194|332196|332200|332203|332204|332211|332212|332214|332215|332218|332219|332223|332226|332230|339166|339175|339176|339178|339180|339185|339186|339191|339194|339199|339202|339213|340664|340667|340668|340671|340674|340675|340677|340678|340681|340682|340688|340689|380138|380139|380140|380141|380142|438763|513630|577394|577397|612178|703235|714471|714472|726113|739654|770195|873668|873669|873670|873671|873672|873673|873674|873675|873676|873677|873678|873679|873680|873681|873682|873683|873684|873685|873686|873687|873688|873689|873690|873691|873692|873693|873694|873695|873696|873697|873698|873699|873700|873701|876528|876529|876530|876531|876532|919571|964421", "text": "Bartter syndrome, type 1, antenatal" }, { - "baseId": "23796|327848|327851|327854|327857|327861|327864|337667|337669|337670|337678|337683|337686|337689|337692|337693|337694|337696|337699|343882|343886|343887|343889|343892|343897|343905|343910|343911|343915|343919|345342|345346|345349|345350|345351|345352|345355|345362|345363|374905|375811|375829|409857|409858|433583|466389|467375|467488|467494|467497|467499|530637|530641|530647|530809|530810|530900|530908|531172|568759|570821|570823|570825|570912|570913|574340|574341|584763|614433|614434|645402|645403|645404|645405|645406|645407|645408|645409|645410|645411|645412|645413|645414|645415|645416|645417|645418|645419|645420|645421|645422|645423|645424|645425|645426|645427|645428|704048|715320|740660|740661|771331|771332|815776|815777|815778|815779|820993|844803|844804|844805|844806|844807|844808|844809|844810|844811|844812|844813|844814|844815|844816|844817|844818|844819|844820|844821|844822|844823|844824|844825|844826|844827|844828|844829|857632|877066|877067|877068|877069|877070|877071|877072|877073|877074|877075|877076|877077|877078|877079|877080|877081|877082|877083|880488|880489|880490|928089|928090|937751|937752|937753|937754|949738|949739|949740|949741|949742|949743|949744|949745|949746|949747|958010|958011", + "upstreamId": "23796|327848|327851|327854|327857|327861|327864|337667|337669|337670|337678|337683|337686|337689|337692|337693|337694|337696|337699|343882|343886|343887|343889|343892|343897|343905|343910|343911|343915|343919|345342|345346|345349|345350|345351|345352|345355|345362|345363|374905|375811|375829|409857|409858|433583|466389|467375|467488|467494|467497|467499|530637|530641|530647|530809|530810|530900|530908|531172|568759|570821|570823|570825|570912|570913|574340|574341|584763|614433|614434|645402|645403|645404|645405|645406|645407|645408|645409|645410|645411|645412|645413|645414|645415|645416|645417|645418|645419|645420|645421|645422|645423|645424|645425|645426|645427|645428|704048|715320|740660|740661|771331|771332|815776|815777|815778|815779|820993|844803|844804|844805|844806|844807|844808|844809|844810|844811|844812|844813|844814|844815|844816|844817|844818|844819|844820|844821|844822|844823|844824|844825|844826|844827|844828|844829|857632|877066|877067|877068|877069|877070|877071|877072|877073|877074|877075|877076|877077|877078|877079|877080|877081|877082|877083|880488|880489|880490|928089|928090|937751|937752|937753|937754|949738|949739|949740|949741|949742|949743|949744|949745|949746|949747|958010|958011", "text": "T-cell immunodeficiency, congenital alopecia, and nail dystrophy" }, { - "baseId": "23796|409854|409857|645411|645419|815782", + "upstreamId": "23796|409854|409857|645411|645419|815782", "text": "T-cell lymphopenia, infantile, with or without nail dystrophy, autosomal dominant" }, { - "baseId": "23797|23798|23799|23800|174418|193441|297487|297489|297490|297492|297496|297498|297499|297504|297509|297511|297512|297517|299630|299632|299644|299645|299646|299648|299650|299651|299654|299660|299667|299669|299670|299671|303756|303764|303769|303770|304145|304146|304148|304151|304152|304153|304160|304161|304162|304170|304172|304173|304174|304175|304177|304198|654382|894265|894266|894267|894268|894269|894270|894271|894272|894273|894274|894275|894276|894277|894278|894279|894280|894281|894282|894283|894284|894285|894286|894287|894288|894289|894290|894291|894292|896107|918964|918965", + "upstreamId": "23797|23798|23799|23800|174418|193441|297487|297489|297490|297492|297496|297498|297499|297504|297509|297511|297512|297517|299630|299632|299644|299645|299646|299648|299650|299651|299654|299660|299667|299669|299670|299671|303756|303764|303769|303770|304145|304146|304148|304151|304152|304153|304160|304161|304162|304170|304172|304173|304174|304175|304177|304198|654382|894265|894266|894267|894268|894269|894270|894271|894272|894273|894274|894275|894276|894277|894278|894279|894280|894281|894282|894283|894284|894285|894286|894287|894288|894289|894290|894291|894292|896107|918964|918965", "text": "Hirschsprung disease 3" }, { - "baseId": "23797", + "upstreamId": "23797", "text": "Pheochromocytoma, modifier of" }, { - "baseId": "23802|101244|101245|101246|177925|191918|194429|213603|253915|253916|253917|253919|253920|253921|253922|253923|253924|269507|311682|311689|311693|311696|311707|311708|311713|317261|317262|317267|317268|317273|317276|317288|317289|317290|323308|323311|323312|323313|323317|323318|323319|323326|323327|323330|323331|323335|323880|323890|323892|323893|323894|323911|323919|512922|512923|590299|791016|818284|818285|866560|866561|866562|866563|866564|866565|866566|866567|866568|866569|866570|866571|866572|866573|866574|866575|866576|866577|866578|866579|866580|868535|868536|868537", + "upstreamId": "23802|101244|101245|101246|177925|191918|194429|213603|253915|253916|253917|253919|253920|253921|253922|253923|253924|269507|311682|311689|311693|311696|311707|311708|311713|317261|317262|317267|317268|317273|317276|317288|317289|317290|323308|323311|323312|323313|323317|323318|323319|323326|323327|323330|323331|323335|323880|323890|323892|323893|323894|323911|323919|512922|512923|590299|791016|818284|818285|866560|866561|866562|866563|866564|866565|866566|866567|866568|866569|866570|866571|866572|866573|866574|866575|866576|866577|866578|866579|866580|868535|868536|868537", "text": "Cone dystrophy 4" }, { - "baseId": "23802|23803|23804|23805|23806|23807|23808|23809|23810|23811|23812|23813|23814|480776", + "upstreamId": "23802|23803|23804|23805|23806|23807|23808|23809|23810|23811|23812|23813|23814|480776", "text": "Achromatopsia 5" }, { - "baseId": "23815|23815|23817|23819|23819|23820|44630|53854|53855|53859|53861|53862|53863|53864|53868|140738|175694|175695|175696|175833|198355|198362|212924|214487|222136|224418|230188|241067|241068|241069|241070|313522|313528|372325|372330|374012|398120|398435|398524|398528|408316|415260|444770|460954|460959|461038|461041|461045|461046|461356|461756|497391|503561|510265|510268|511104|526013|526090|526092|526159|526162|526163|526516|526520|564529|564531|564533|564534|564536|567118|567119|639852|639853|639854|639855|639856|687728|752612|768382|820346|838174|838175|838176|838177|838178|838179|838180|838181|838182|838183|838184|838185|852335|926167|926168|935455|947381|947382|947383|947384|947385|956440", + "upstreamId": "23815|23815|23817|23819|23819|23820|44630|53854|53855|53859|53861|53862|53863|53864|53868|140738|175694|175695|175696|175833|198355|198362|212924|214487|222136|224418|230188|241067|241068|241069|241070|313522|313528|372325|372330|374012|398120|398435|398524|398528|408316|415260|444770|460954|460959|461038|461041|461045|461046|461356|461756|497391|503561|510265|510268|511104|526013|526090|526092|526159|526162|526163|526516|526520|564529|564531|564533|564534|564536|567118|567119|639852|639853|639854|639855|639856|687728|752612|768382|820346|838174|838175|838176|838177|838178|838179|838180|838181|838182|838183|838184|838185|852335|926167|926168|935455|947381|947382|947383|947384|947385|956440", "text": "Dilated cardiomyopathy 1M" }, { - "baseId": "23815|23815|23816|23817|23817|23819|23820|23820|44630|53854|53855|53855|53859|53859|53861|53861|53862|53862|53863|53863|53864|53868|140738|140738|140739|175694|175695|175696|175833|175833|175836|187656|198355|198360|198362|212924|214487|222136|224418|230188|241067|241068|241069|241070|313522|313522|313524|313528|313528|313532|319728|319730|319741|319744|319748|325855|325859|325860|325861|325891|326871|372325|372330|374012|398120|398435|398524|398528|408316|415260|444770|460954|460959|461038|461041|461045|461046|461356|461756|497391|503561|510265|510268|511104|526013|526090|526092|526159|526162|526163|526516|526520|564529|564531|564533|564534|564536|567118|567119|639852|639853|639854|639855|639856|687728|752612|768382|820346|838174|838175|838176|838177|838178|838179|838180|838181|838182|838183|838184|838185|852335|867722|867723|867724|867725|867726|867727|868636|920297|926167|926168|935455|947381|947382|947383|947384|947385|956440", + "upstreamId": "23815|23815|23816|23817|23817|23819|23820|23820|44630|53854|53855|53855|53859|53859|53861|53861|53862|53862|53863|53863|53864|53868|140738|140738|140739|175694|175695|175696|175833|175833|175836|187656|198355|198360|198362|212924|214487|222136|224418|230188|241067|241068|241069|241070|313522|313522|313524|313528|313528|313532|319728|319730|319741|319744|319748|325855|325859|325860|325861|325891|326871|372325|372330|374012|398120|398435|398524|398528|408316|415260|444770|460954|460959|461038|461041|461045|461046|461356|461756|497391|503561|510265|510268|511104|526013|526090|526092|526159|526162|526163|526516|526520|564529|564531|564533|564534|564536|567118|567119|639852|639853|639854|639855|639856|687728|752612|768382|820346|838174|838175|838176|838177|838178|838179|838180|838181|838182|838183|838184|838185|852335|867722|867723|867724|867725|867726|867727|868636|920297|926167|926168|935455|947381|947382|947383|947384|947385|956440", "text": "Familial hypertrophic cardiomyopathy 12" }, { - "baseId": "23815|25777|28516|29534|45092|52938|54084|57454|78832|171118|172475|174916|175600|186429|189951|197176|397203|398923|404169|509824|564702|679866|798993|799007|799013|799015|858255|965296|965301|965305|965309", + "upstreamId": "23815|25777|28516|29534|45092|52938|54084|57454|78832|171118|172475|174916|175600|186429|189951|197176|397203|398923|404169|509824|564702|679866|798993|799007|799013|799015|858255|965296|965301|965305|965309", "text": "Sudden unexplained death" }, { - "baseId": "23821|23822|23823|23824|23825|75216|132531|132532|132536|132543|132544|133426|133427|133432|133433|133436|133437|133440|133444|135068|135069|150490|150523|150560|150643|150655|150660|150667|150739|150771|151063|151206|151247|151258|151556|151709|151867|152047|152139|152141|152190|152192|152225|152237|152256|152303|178875|180539|180540|180541|180542|180544|180545|180546|180547|183486|183500|183503|183511|183516|183518|183519|183522|183523|183526|183529|183530|183539|183544|183549|183551|183557|183559|183564|183578|183585|191047|212961|222170|222173|222174|222176|222191|225571|234448|234449|234464|234478|234496|234505|234513|234521|234531|234547|234566|241208|315480|315481|315484|315485|315491|315493|315494|315498|315500|315501|322335|322336|322348|322349|322357|322374|322375|322381|322382|322385|322391|322397|322400|322401|322402|322407|322408|328471|328477|328484|328489|328495|328516|328517|328527|328528|328534|328535|328536|328539|329791|329792|329797|329800|329808|329809|329812|329816|329817|329838|329839|329840|329842|358842|398386|398472|460748|461510|461512|461515|461522|461530|461695|461701|461707|462029|462033|462346|476038|476044|476068|476069|476127|476133|476518|476534|476648|476652|476675|476737|525682|526514|526517|526526|526527|526575|526581|526583|526798|526801|527078|527087|527092|527094|539305|564932|564934|566208|566211|566733|567572|567573|614367|626385|788861|798647|798648|868948|868949|868950|868951|868952|868953|868954|868955|868956|868957|868958|868959|868960|868961|868962|868963|868964|868965|868966|868967|868968|868969|868970|868971|868972|868973|872152|872153|961301|964908", + "upstreamId": "23821|23822|23823|23824|23825|75216|132531|132532|132536|132543|132544|133426|133427|133432|133433|133436|133437|133440|133444|135068|135069|150490|150523|150560|150643|150655|150660|150667|150739|150771|151063|151206|151247|151258|151556|151709|151867|152047|152139|152141|152190|152192|152225|152237|152256|152303|178875|180539|180540|180541|180542|180544|180545|180546|180547|183486|183500|183503|183511|183516|183518|183519|183522|183523|183526|183529|183530|183539|183544|183549|183551|183557|183559|183564|183578|183585|191047|212961|222170|222173|222174|222176|222191|225571|234448|234449|234464|234478|234496|234505|234513|234521|234531|234547|234566|241208|315480|315481|315484|315485|315491|315493|315494|315498|315500|315501|322335|322336|322348|322349|322357|322374|322375|322381|322382|322385|322391|322397|322400|322401|322402|322407|322408|328471|328477|328484|328489|328495|328516|328517|328527|328528|328534|328535|328536|328539|329791|329792|329797|329800|329808|329809|329812|329816|329817|329838|329839|329840|329842|358842|398386|398472|460748|461510|461512|461515|461522|461530|461695|461701|461707|462029|462033|462346|476038|476044|476068|476069|476127|476133|476518|476534|476648|476652|476675|476737|525682|526514|526517|526526|526527|526575|526581|526583|526798|526801|527078|527087|527092|527094|539305|564932|564934|566208|566211|566733|567572|567573|614367|626385|788861|798647|798648|868948|868949|868950|868951|868952|868953|868954|868955|868956|868957|868958|868959|868960|868961|868962|868963|868964|868965|868966|868967|868968|868969|868970|868971|868972|868973|872152|872153|961301|964908", "text": "Ataxia-telangiectasia-like disorder 1" }, { - "baseId": "23821|23822|23823|75224|132543|132544|133424|133426|133427|133429|133431|133432|133433|133434|133436|133437|133438|133440|133444|133446|135068|135069|150489|150523|150560|150655|150660|150667|150739|150744|150939|151021|151128|151206|151258|151321|151553|151608|151709|151759|151777|151864|151867|151904|151931|152058|152139|152163|152190|152192|152225|152226|152256|152433|152532|152551|180539|180541|180542|180544|180545|180546|183483|183485|183486|183487|183488|183489|183496|183500|183501|183503|183504|183505|183506|183509|183511|183513|183516|183518|183519|183522|183525|183526|183528|183531|183532|183533|183535|183541|183544|183546|183547|183549|183557|183560|183561|183562|183564|183566|183568|183570|183571|183572|183573|183575|183576|183578|183582|183583|183592|183593|183594|183595|212958|212961|212962|212963|212964|212967|212968|212969|212970|222167|222170|222174|222177|222180|222182|222185|234451|234461|234468|234469|234476|234480|234483|234486|234487|234488|234499|234508|234510|234512|234513|234515|234516|234518|234524|234527|234531|234533|234536|234537|234538|234551|234553|234564|234565|234567|241209|241211|241213|315500|322400|398384|398461|398473|398475|398774|398776|398781|398912|461503|461515|461526|461544|461700|462347|476028|476032|476037|476051|476058|476062|476065|476098|476104|476109|476156|476188|476192|476218|476229|476414|476459|476468|476647|476663|526797|527080|566218|640505|640506|640507|640508|640509|640510|640511|640512|640513|640514|640515|640516|640517|640518|640519|640520|640521|640522|640523|640524|652144|652147|652206|652242|652246|695543|798647|798648|810945|810948|810951|810979|811009|811017|811028|811051|811060|811066|811078|811118|820423|820424|839166|839167|839168|839169|839170|839171|839172|851466|852410|926414|926415|926416|926417|935854|935855|935856|935857|935858|935859|935860|935861|940238|941016|947730|947731|947732|947733|947734|956714|956715|956716|956717|956718", + "upstreamId": "23821|23822|23823|75224|132543|132544|133424|133426|133427|133429|133431|133432|133433|133434|133436|133437|133438|133440|133444|133446|135068|135069|150489|150523|150560|150655|150660|150667|150739|150744|150939|151021|151128|151206|151258|151321|151553|151608|151709|151759|151777|151864|151867|151904|151931|152058|152139|152163|152190|152192|152225|152226|152256|152433|152532|152551|180539|180541|180542|180544|180545|180546|183483|183485|183486|183487|183488|183489|183496|183500|183501|183503|183504|183505|183506|183509|183511|183513|183516|183518|183519|183522|183525|183526|183528|183531|183532|183533|183535|183541|183544|183546|183547|183549|183557|183560|183561|183562|183564|183566|183568|183570|183571|183572|183573|183575|183576|183578|183582|183583|183592|183593|183594|183595|212958|212961|212962|212963|212964|212967|212968|212969|212970|222167|222170|222174|222177|222180|222182|222185|234451|234461|234468|234469|234476|234480|234483|234486|234487|234488|234499|234508|234510|234512|234513|234515|234516|234518|234524|234527|234531|234533|234536|234537|234538|234551|234553|234564|234565|234567|241209|241211|241213|315500|322400|398384|398461|398473|398475|398774|398776|398781|398912|461503|461515|461526|461544|461700|462347|476028|476032|476037|476051|476058|476062|476065|476098|476104|476109|476156|476188|476192|476218|476229|476414|476459|476468|476647|476663|526797|527080|566218|640505|640506|640507|640508|640509|640510|640511|640512|640513|640514|640515|640516|640517|640518|640519|640520|640521|640522|640523|640524|652144|652147|652206|652242|652246|695543|798647|798648|810945|810948|810951|810979|811009|811017|811028|811051|811060|811066|811078|811118|820423|820424|839166|839167|839168|839169|839170|839171|839172|851466|852410|926414|926415|926416|926417|935854|935855|935856|935857|935858|935859|935860|935861|940238|941016|947730|947731|947732|947733|947734|956714|956715|956716|956717|956718", "text": "Ataxia-telangiectasia-like disorder" }, { - "baseId": "23826|23827|23828|23829|137700|314256|314264|314265|314270|314272|314273|314275|320885|326895|326899|326904|326905|326907|326909|326910|326912|327896|327903|327904|685286|701782|868081|868082|868083|868084|868085|868086|868087|868088|868089|868090|868091|868655", + "upstreamId": "23826|23827|23828|23829|137700|314256|314264|314265|314270|314272|314273|314275|320885|326895|326899|326904|326905|326907|326909|326910|326912|327896|327903|327904|685286|701782|868081|868082|868083|868084|868085|868086|868087|868088|868089|868090|868091|868655", "text": "Xeroderma pigmentosum, group E" }, { - "baseId": "23830|23831|29578|29578|29580|29580|29583|29584|29585|29587|29588|29589|29593|29594|29595|29596|29597|33855|33984|34116|51215|79935|84423|186608|186609|186610|186611|186612|186613|186614|187032|256610|256611|256612|256613|256614|256615|256617|263970|263971|268010|269481|274819|277781|277793|278689|278706|279975|280028|280033|280143|330878|330881|330882|330892|330907|330910|330913|330915|330916|330917|330921|330923|330927|330928|330930|330931|330936|341171|341173|341180|341182|341183|341185|341192|341197|341198|341200|341201|341206|341207|341209|341211|341213|341215|346709|346712|346713|346716|346721|346727|346728|346734|346735|346737|346738|346747|346749|346750|346752|347984|347985|347986|347990|347995|347999|348001|348014|348017|348019|348020|348028|348030|348036|348040|357008|357009|357010|357011|357012|357013|357014|357015|357016|357017|357018|357019|357020|357021|357022|357023|357024|357025|357026|357027|357028|357029|357030|357031|357032|357033|357034|357035|357036|357037|357038|357039|357040|357041|357042|357043|357044|357045|357046|357047|357048|357049|357050|357051|357052|358547|358548|358549|358550|358551|358552|358553|358554|358555|358556|358557|358558|358559|358560|358561|358562|358563|358564|358565|359226|359293|415597|445947|445947|481579|513503|540600|540601|540602|540603|540604|540605|540606|540668|540670|540671|540672|540675|540681|540685|540686|540692|540693|540700|540702|540705|540706|540707|540712|540718|540726|540728|540729|540730|540731|540734|540736|540737|540738|540740|540741|540742|540743|540744|540746|540747|540748|540749|540750|540752|540753|540754|540755|540756|540757|540759|540760|540762|540764|540767|540768|540769|540770|540771|540776|540777|540778|540778|540779|540781|540782|540784|540786|540792|540793|540794|540796|540798|540803|548554|548555|548556|548560|548562|548564|548569|548574|548575|548578|548580|548582|548587|548589|548590|548592|548593|548595|548596|548598|548599|548600|548602|548603|548604|548606|548607|548611|548612|548614|548619|548621|548623|548626|548630|548632|548635|548639|548640|548647|548649|548650|548651|548653|548655|548656|548658|548659|548663|548665|548666|548668|548671|548676|548937|548938|548943|548944|548946|548949|548950|548954|548956|548958|548960|548963|548964|548969|548971|548986|548987|548993|548995|548998|549007|549010|549013|549026|549029|549031|549034|549272|549274|549279|549280|549281|549284|549288|549289|549291|549292|549295|549297|549299|549300|549303|549304|549305|549306|549309|549311|549312|549313|549316|549317|549319|549320|549321|578560|583128|611497|621067|715911|727663|727664|727665|741319|741321|741323|741324|756407|785857|801588|878995|878996|878997|878998|878999|879000|879001|879002|879003|879004|879005|879006|879007|879008|879009|879010|879011|879012|879013|879014|879015|879016|879017|879018|879019|879020|879021|879022|879023|879024|879025|879026|879027|879028|880639|880640|880641|906063|906377|916809|916810|965345|971637|971638|971639|971640|971641|971642|971643|971644|971645|971646|971647|971648|971649|971650|971651|971652|971653|971654|971655|971656|971657|971658|971659|971660|971661|971662|971663|971664|971665|971666|971667|971668", + "upstreamId": "23830|23831|29578|29578|29580|29580|29583|29584|29585|29587|29588|29589|29593|29594|29595|29596|29597|33855|33984|34116|51215|79935|84423|186608|186609|186610|186611|186612|186613|186614|187032|256610|256611|256612|256613|256614|256615|256617|263970|263971|268010|269481|274819|277781|277793|278689|278706|279975|280028|280033|280143|330878|330881|330882|330892|330907|330910|330913|330915|330916|330917|330921|330923|330927|330928|330930|330931|330936|341171|341173|341180|341182|341183|341185|341192|341197|341198|341200|341201|341206|341207|341209|341211|341213|341215|346709|346712|346713|346716|346721|346727|346728|346734|346735|346737|346738|346747|346749|346750|346752|347984|347985|347986|347990|347995|347999|348001|348014|348017|348019|348020|348028|348030|348036|348040|357008|357009|357010|357011|357012|357013|357014|357015|357016|357017|357018|357019|357020|357021|357022|357023|357024|357025|357026|357027|357028|357029|357030|357031|357032|357033|357034|357035|357036|357037|357038|357039|357040|357041|357042|357043|357044|357045|357046|357047|357048|357049|357050|357051|357052|358547|358548|358549|358550|358551|358552|358553|358554|358555|358556|358557|358558|358559|358560|358561|358562|358563|358564|358565|359226|359293|415597|445947|445947|481579|513503|540600|540601|540602|540603|540604|540605|540606|540668|540670|540671|540672|540675|540681|540685|540686|540692|540693|540700|540702|540705|540706|540707|540712|540718|540726|540728|540729|540730|540731|540734|540736|540737|540738|540740|540741|540742|540743|540744|540746|540747|540748|540749|540750|540752|540753|540754|540755|540756|540757|540759|540760|540762|540764|540767|540768|540769|540770|540771|540776|540777|540778|540778|540779|540781|540782|540784|540786|540792|540793|540794|540796|540798|540803|548554|548555|548556|548560|548562|548564|548569|548574|548575|548578|548580|548582|548587|548589|548590|548592|548593|548595|548596|548598|548599|548600|548602|548603|548604|548606|548607|548611|548612|548614|548619|548621|548623|548626|548630|548632|548635|548639|548640|548647|548649|548650|548651|548653|548655|548656|548658|548659|548663|548665|548666|548668|548671|548676|548937|548938|548943|548944|548946|548949|548950|548954|548956|548958|548960|548963|548964|548969|548971|548986|548987|548993|548995|548998|549007|549010|549013|549026|549029|549031|549034|549272|549274|549279|549280|549281|549284|549288|549289|549291|549292|549295|549297|549299|549300|549303|549304|549305|549306|549309|549311|549312|549313|549316|549317|549319|549320|549321|578560|583128|611497|621067|715911|727663|727664|727665|741319|741321|741323|741324|756407|785857|801588|878995|878996|878997|878998|878999|879000|879001|879002|879003|879004|879005|879006|879007|879008|879009|879010|879011|879012|879013|879014|879015|879016|879017|879018|879019|879020|879021|879022|879023|879024|879025|879026|879027|879028|880639|880640|880641|906063|906377|916809|916810|965345|971637|971638|971639|971640|971641|971642|971643|971644|971645|971646|971647|971648|971649|971650|971651|971652|971653|971654|971655|971656|971657|971658|971659|971660|971661|971662|971663|971664|971665|971666|971667|971668", "text": "Junctional epidermolysis bullosa gravis of Herlitz" }, { - "baseId": "23832|29578|29578|29580|29580|29581|29582|29586|29588|29589|29590|29591|29592|29598|29599|29600|29779|32684|32685|32686|32687|32688|32691|32692|32693|32694|32695|32696|32697|186611|205161|227334|227396|253671|253672|253673|253675|253676|253677|253679|253680|253681|253682|253683|253684|309379|309380|309383|309384|309386|309387|309392|309401|309402|309405|309407|309410|309411|309419|309427|309428|309434|309435|309437|309438|309443|309445|309447|314065|314066|314076|314080|314082|314083|314084|314086|314088|314091|314107|314109|314110|314112|314122|314124|314126|314129|314130|314131|314144|314154|314162|319982|319983|319997|319998|320008|320011|320012|320019|320020|320037|320039|320040|320041|320048|320051|320052|320053|320499|320531|320548|320552|320554|320558|320560|320564|320567|320572|320575|320577|320581|320583|320602|320609|320610|320615|320616|320617|359226|359293|407810|415214|442704|445947|445947|486607|488235|540778|576350|578559|583106|611497|612132|612402|620343|620816|620817|701157|712137|712138|723744|723745|744496|744591|751945|778032|792673|865344|865345|865346|865347|865348|865349|865350|865351|865352|865353|865354|865355|865356|865357|865358|865359|865360|865361|865362|865363|865364|865365|865366|865367|865368|865369|865370|865371|865372|865373|865374|865375|865376|865377|865378|865379|865380|865381|865382|865383|865384|865385|865386|865387|865388|868431|868432|868433|868434|868435|868436|868437|868438|868439|906377", + "upstreamId": "23832|29578|29578|29580|29580|29581|29582|29586|29588|29589|29590|29591|29592|29598|29599|29600|29779|32684|32685|32686|32687|32688|32691|32692|32693|32694|32695|32696|32697|186611|205161|227334|227396|253671|253672|253673|253675|253676|253677|253679|253680|253681|253682|253683|253684|309379|309380|309383|309384|309386|309387|309392|309401|309402|309405|309407|309410|309411|309419|309427|309428|309434|309435|309437|309438|309443|309445|309447|314065|314066|314076|314080|314082|314083|314084|314086|314088|314091|314107|314109|314110|314112|314122|314124|314126|314129|314130|314131|314144|314154|314162|319982|319983|319997|319998|320008|320011|320012|320019|320020|320037|320039|320040|320041|320048|320051|320052|320053|320499|320531|320548|320552|320554|320558|320560|320564|320567|320572|320575|320577|320581|320583|320602|320609|320610|320615|320616|320617|359226|359293|407810|415214|442704|445947|445947|486607|488235|540778|576350|578559|583106|611497|612132|612402|620343|620816|620817|701157|712137|712138|723744|723745|744496|744591|751945|778032|792673|865344|865345|865346|865347|865348|865349|865350|865351|865352|865353|865354|865355|865356|865357|865358|865359|865360|865361|865362|865363|865364|865365|865366|865367|865368|865369|865370|865371|865372|865373|865374|865375|865376|865377|865378|865379|865380|865381|865382|865383|865384|865385|865386|865387|865388|868431|868432|868433|868434|868435|868436|868437|868438|868439|906377", "text": "Junctional epidermolysis bullosa, non-Herlitz type" }, { - "baseId": "23835|23835|23836|23838|23839|23840|23841|23842|23843|23844|23845|23846|23847|23848|23849|23850|23851|23853|23855|23856|23857|23858|75073|75074|79680|140231|140232|171112|173629|189348|209584|209585|209586|209588|209589|209590|210228|224249|224250|227232|228911|238597|240451|259243|259244|259245|259246|259247|259248|259717|263862|264058|264060|283987|283993|284000|284001|284004|284005|284007|284011|284014|284015|284022|284029|284031|284038|284040|284041|284049|284050|284054|284059|284071|284077|284078|284083|284093|284094|284097|284756|284758|284761|284773|284776|284780|284783|284784|284788|284798|284800|284804|284805|284806|284814|284816|284817|284824|284828|284829|284830|284832|284840|284844|284853|284856|284857|284858|284861|284862|284863|284877|286645|286646|286647|286649|286657|286658|286662|286663|286664|286666|286684|286688|286695|286698|286709|286710|286720|286722|286736|286737|286743|286744|286745|286746|286747|286753|286762|286763|286764|286771|286782|286792|286796|286798|286799|287129|287145|287146|287147|287150|287152|287153|287154|287156|287159|287160|287163|287174|287175|287181|287182|287186|287187|287189|287192|287193|287194|319518|319519|319520|319539|319556|319565|319575|319597|328053|328099|328105|328106|328110|334372|334373|334377|334398|334433|334456|334467|334505|336095|336133|336134|336192|336232|336234|391465|392288|392288|392291|392462|392465|392468|414036|414037|414038|414039|414040|414041|414042|414043|414044|414045|414046|414047|414048|414049|414050|414051|414052|414053|414054|414055|414056|414057|414058|414059|414060|414061|414062|414063|414064|414065|414066|414067|414068|414069|414070|414071|414072|414073|414074|414075|414076|414077|414078|414079|414080|414081|414082|414083|414084|414085|414086|414087|414088|414089|414090|414091|414092|414093|414096|414097|414098|414099|414100|414101|414102|414103|414104|414105|414106|414107|414108|414109|414110|414111|414112|414113|414115|414116|414117|414118|414119|414120|414121|414122|414123|414124|414125|414126|414127|414128|414129|414130|414131|414132|414133|414134|414135|414136|414137|414138|414139|414140|414143|414144|414145|414146|414147|414148|414149|414150|414151|414152|414153|414154|414155|414156|414157|414158|414159|414160|414161|414162|414163|414164|414165|414166|414167|414168|414169|414170|414171|414172|414173|414174|414175|414176|414177|414178|414179|414181|414182|414183|414184|414185|414186|414187|414188|414189|414190|414191|414192|414193|414194|414195|414196|414197|414198|414199|414200|414201|414202|414203|414204|414205|414206|414207|414208|414209|414210|414211|414212|414213|414214|414215|414216|414217|414218|414219|414220|414221|414222|414223|414224|414225|414226|414227|414228|414229|414230|414231|414232|414233|414234|414235|414236|414237|414238|414239|414240|414241|414242|414243|414245|414246|414247|414248|414249|414250|414251|414252|414253|414254|414255|414256|414257|414258|414259|414260|414261|414262|414263|414264|414265|414266|414267|414268|414269|414270|414271|414272|414273|414274|414275|414276|414277|414278|414279|414280|414281|414282|414283|414284|414285|414286|414287|414288|414289|414290|414291|414292|414293|414294|414295|414296|414297|414298|414299|414300|414301|414302|414303|414304|414305|414306|414307|414308|414310|414311|414312|414313|414314|414315|414316|414317|414318|414319|414320|414321|414322|414323|414324|414325|414326|414327|414328|414329|414330|414331|414332|414333|414334|414335|414336|414337|414338|414339|414340|414341|414342|414343|414344|414345|414346|414347|414348|414349|414350|414351|414352|414353|414354|414355|414356|414357|414358|414359|414360|414361|414362|414363|414364|414365|414366|414367|414368|414369|414370|414371|414372|414374|414383|414384|414389|414390|414391|414392|414393|414396|414399|414405|414406|414407|414408|414427|414428|414429|414430|414431|414432|448566|450259|450264|450267|450397|450514|450525|517635|517648|517786|557816|558078|629306|629307|629308|650726|650783|683472|683473|686119|686120|686121|691014|747172|781110|799279|819099|819100|819101|819102|819103|825601|825602|825603|825604|883356|883357|883358|883359|883360|883361|883362|883363|883364|883365|883366|883367|883368|883369|883370|883371|883372|883373|883374|883375|883376|883377|883378|883379|883380|883381|883382|883383|883384|883385|883386|883387|883388|883389|883390|883391|883392|883393|883394|883395|883396|883397|883398|883399|883400|883401|883402|883403|883404|883405|883406|883407|883408|883409|883410|883411|883412|883413|883414|883415|883416|883417|883418|883419|883420|883421|883422|883423|883424|883425|883426|887242|931079|952888", + "upstreamId": "23835|23835|23836|23838|23839|23840|23841|23842|23843|23844|23845|23846|23847|23848|23849|23850|23851|23853|23855|23856|23857|23858|75073|75074|79680|140231|140232|171112|173629|189348|209584|209585|209586|209588|209589|209590|210228|224249|224250|227232|228911|238597|240451|259243|259244|259245|259246|259247|259248|259717|263862|264058|264060|283987|283993|284000|284001|284004|284005|284007|284011|284014|284015|284022|284029|284031|284038|284040|284041|284049|284050|284054|284059|284071|284077|284078|284083|284093|284094|284097|284756|284758|284761|284773|284776|284780|284783|284784|284788|284798|284800|284804|284805|284806|284814|284816|284817|284824|284828|284829|284830|284832|284840|284844|284853|284856|284857|284858|284861|284862|284863|284877|286645|286646|286647|286649|286657|286658|286662|286663|286664|286666|286684|286688|286695|286698|286709|286710|286720|286722|286736|286737|286743|286744|286745|286746|286747|286753|286762|286763|286764|286771|286782|286792|286796|286798|286799|287129|287145|287146|287147|287150|287152|287153|287154|287156|287159|287160|287163|287174|287175|287181|287182|287186|287187|287189|287192|287193|287194|319518|319519|319520|319539|319556|319565|319575|319597|328053|328099|328105|328106|328110|334372|334373|334377|334398|334433|334456|334467|334505|336095|336133|336134|336192|336232|336234|391465|392288|392288|392291|392462|392465|392468|414036|414037|414038|414039|414040|414041|414042|414043|414044|414045|414046|414047|414048|414049|414050|414051|414052|414053|414054|414055|414056|414057|414058|414059|414060|414061|414062|414063|414064|414065|414066|414067|414068|414069|414070|414071|414072|414073|414074|414075|414076|414077|414078|414079|414080|414081|414082|414083|414084|414085|414086|414087|414088|414089|414090|414091|414092|414093|414096|414097|414098|414099|414100|414101|414102|414103|414104|414105|414106|414107|414108|414109|414110|414111|414112|414113|414115|414116|414117|414118|414119|414120|414121|414122|414123|414124|414125|414126|414127|414128|414129|414130|414131|414132|414133|414134|414135|414136|414137|414138|414139|414140|414143|414144|414145|414146|414147|414148|414149|414150|414151|414152|414153|414154|414155|414156|414157|414158|414159|414160|414161|414162|414163|414164|414165|414166|414167|414168|414169|414170|414171|414172|414173|414174|414175|414176|414177|414178|414179|414181|414182|414183|414184|414185|414186|414187|414188|414189|414190|414191|414192|414193|414194|414195|414196|414197|414198|414199|414200|414201|414202|414203|414204|414205|414206|414207|414208|414209|414210|414211|414212|414213|414214|414215|414216|414217|414218|414219|414220|414221|414222|414223|414224|414225|414226|414227|414228|414229|414230|414231|414232|414233|414234|414235|414236|414237|414238|414239|414240|414241|414242|414243|414245|414246|414247|414248|414249|414250|414251|414252|414253|414254|414255|414256|414257|414258|414259|414260|414261|414262|414263|414264|414265|414266|414267|414268|414269|414270|414271|414272|414273|414274|414275|414276|414277|414278|414279|414280|414281|414282|414283|414284|414285|414286|414287|414288|414289|414290|414291|414292|414293|414294|414295|414296|414297|414298|414299|414300|414301|414302|414303|414304|414305|414306|414307|414308|414310|414311|414312|414313|414314|414315|414316|414317|414318|414319|414320|414321|414322|414323|414324|414325|414326|414327|414328|414329|414330|414331|414332|414333|414334|414335|414336|414337|414338|414339|414340|414341|414342|414343|414344|414345|414346|414347|414348|414349|414350|414351|414352|414353|414354|414355|414356|414357|414358|414359|414360|414361|414362|414363|414364|414365|414366|414367|414368|414369|414370|414371|414372|414374|414383|414384|414389|414390|414391|414392|414393|414396|414399|414405|414406|414407|414408|414427|414428|414429|414430|414431|414432|448566|450259|450264|450267|450397|450514|450525|517635|517648|517786|557816|558078|629306|629307|629308|650726|650783|683472|683473|686119|686120|686121|691014|747172|781110|799279|819099|819100|819101|819102|819103|825601|825602|825603|825604|883356|883357|883358|883359|883360|883361|883362|883363|883364|883365|883366|883367|883368|883369|883370|883371|883372|883373|883374|883375|883376|883377|883378|883379|883380|883381|883382|883383|883384|883385|883386|883387|883388|883389|883390|883391|883392|883393|883394|883395|883396|883397|883398|883399|883400|883401|883402|883403|883404|883405|883406|883407|883408|883409|883410|883411|883412|883413|883414|883415|883416|883417|883418|883419|883420|883421|883422|883423|883424|883425|883426|887242|931079|952888", "text": "Pulmonary Hypertension, Primary, 1" }, { - "baseId": "23835|392288|414244|414318|654767", + "upstreamId": "23835|392288|414244|414318|654767", "text": "Pulmonary venoocclusive disease 1, autosomal dominant" }, { - "baseId": "23851|414114|414309", + "upstreamId": "23851|414114|414309", "text": "Pulmonary hypertension, primary, dexfenfluramine-associated" }, { - "baseId": "23852", + "upstreamId": "23852", "text": "Pulmonary hypertension, primary, fenfluramine-associated" }, { - "baseId": "23853|23854|23855|48021|48022", + "upstreamId": "23853|23854|23855|48021|48022", "text": "Pulmonary venoocclusive disease 1" }, { - "baseId": "23858", + "upstreamId": "23858", "text": "Pulmonary hypertension, primary, 1, with hereditary hemorrhagic telangiectasia" }, { - "baseId": "23859|23860", + "upstreamId": "23859|23860", "text": "DIABETES, TYPE II, SUSCEPTIBILITY TO" }, { - "baseId": "23862|28948|28955|28956|28957|28958|28968|28970|28972|28975|28990|36242|36249|47217|47233|181495|181497|181498|181499|213770|213771|213772|241250|241251|241252|241253|241254|241255|241256|241257|241258|241259|254453|316315|316322|316323|316325|316326|316329|316331|316332|316333|316337|316338|316343|316345|316347|316351|316352|316358|323748|323749|323751|323752|323757|323772|323781|329860|329865|329868|329874|329875|329876|331108|331114|331118|331119|331123|331127|331128|331135|331138|331142|331144|331155|398494|398500|398504|398508|398513|398516|398519|398542|398547|398548|398550|398551|398554|398555|398560|398561|398563|398570|398574|398863|398866|398873|398879|398888|398979|398983|398987|398996|399004|399005|399007|461653|461656|461659|461665|461666|461676|461677|461868|461872|461874|461877|461891|462228|462229|462232|462241|462244|462245|462251|462255|462261|462263|462265|462267|462269|462277|462279|462485|462490|462493|462495|462496|462500|462502|476247|476248|476251|476276|476487|476495|476758|486074|526717|526718|526720|526723|526724|526730|526737|526741|526745|526749|526958|526961|526963|526967|526969|526970|526974|527275|527282|565102|565111|565112|566407|566408|566414|567696|567700|571143|571302|571304|571312|571318|613900|640671|640672|640673|640674|640675|640676|640677|640678|640679|640680|640681|640682|640683|640684|640685|640686|640687|640688|640689|640690|640691|640692|640693|640694|640695|640696|640697|640698|640699|676949|687921|687922|687923|690023|693156|693157|693158|693159|693160|693161|693162|702218|702219|702220|702221|713432|724983|753199|768941|784299|784301|788864|791202|811122|811123|811124|811130|811135|811137|811143|811146|811150|811151|811153|811162|820454|820455|839382|839383|839384|839385|839386|839387|839388|839389|839390|839391|839392|839393|839394|839395|839396|839397|839398|839399|839400|839401|839402|839403|839404|839405|869525|869526|869527|869528|869529|869530|869531|869532|869533|869534|869535|869536|869537|926484|926485|926486|926487|926488|926489|926490|926491|935938|935939|935940|935941|935942|935943|935944|935945|935946|935947|935948|935949|935950|935951|947810|947811|947812|947813|947814|947815|947816|947817|947818|947819|947820|956766|956767|956768|956769|956770", + "upstreamId": "23862|28948|28955|28956|28957|28958|28968|28970|28972|28975|28990|36242|36249|47217|47233|181495|181497|181498|181499|213770|213771|213772|241250|241251|241252|241253|241254|241255|241256|241257|241258|241259|254453|316315|316322|316323|316325|316326|316329|316331|316332|316333|316337|316338|316343|316345|316347|316351|316352|316358|323748|323749|323751|323752|323757|323772|323781|329860|329865|329868|329874|329875|329876|331108|331114|331118|331119|331123|331127|331128|331135|331138|331142|331144|331155|398494|398500|398504|398508|398513|398516|398519|398542|398547|398548|398550|398551|398554|398555|398560|398561|398563|398570|398574|398863|398866|398873|398879|398888|398979|398983|398987|398996|399004|399005|399007|461653|461656|461659|461665|461666|461676|461677|461868|461872|461874|461877|461891|462228|462229|462232|462241|462244|462245|462251|462255|462261|462263|462265|462267|462269|462277|462279|462485|462490|462493|462495|462496|462500|462502|476247|476248|476251|476276|476487|476495|476758|486074|526717|526718|526720|526723|526724|526730|526737|526741|526745|526749|526958|526961|526963|526967|526969|526970|526974|527275|527282|565102|565111|565112|566407|566408|566414|567696|567700|571143|571302|571304|571312|571318|613900|640671|640672|640673|640674|640675|640676|640677|640678|640679|640680|640681|640682|640683|640684|640685|640686|640687|640688|640689|640690|640691|640692|640693|640694|640695|640696|640697|640698|640699|676949|687921|687922|687923|690023|693156|693157|693158|693159|693160|693161|693162|702218|702219|702220|702221|713432|724983|753199|768941|784299|784301|788864|791202|811122|811123|811124|811130|811135|811137|811143|811146|811150|811151|811153|811162|820454|820455|839382|839383|839384|839385|839386|839387|839388|839389|839390|839391|839392|839393|839394|839395|839396|839397|839398|839399|839400|839401|839402|839403|839404|839405|869525|869526|869527|869528|869529|869530|869531|869532|869533|869534|869535|869536|869537|926484|926485|926486|926487|926488|926489|926490|926491|935938|935939|935940|935941|935942|935943|935944|935945|935946|935947|935948|935949|935950|935951|947810|947811|947812|947813|947814|947815|947816|947817|947818|947819|947820|956766|956767|956768|956769|956770", "text": "Multiple endocrine neoplasia, type 4" }, { - "baseId": "23863|23867|23868|176006|176007|176008|176009|176148|176149|176151|270922|324670|324671|324672|324673|324680|324681|324689|324692|324700|324701|324705|334228|334229|334235|334246|334251|334264|334265|334266|334267|334268|334269|334280|340914|340917|340920|340928|342356|342369|342370|342372|342375|342379|342381|342382|342383|342389|445537|552269|556460|556461|792799|797285|874905|874906|874907|874911|874913|874914|874915|874916|874917|874918|874919|874920|874921|874922|874923|874924|874925|874926", + "upstreamId": "23863|23867|23868|176006|176007|176008|176009|176148|176149|176151|270922|324670|324671|324672|324673|324680|324681|324689|324692|324700|324701|324705|334228|334229|334235|334246|334251|334264|334265|334266|334267|334268|334269|334280|340914|340917|340920|340928|342356|342369|342370|342372|342375|342379|342381|342382|342383|342389|445537|552269|556460|556461|792799|797285|874905|874906|874907|874911|874913|874914|874915|874916|874917|874918|874919|874920|874921|874922|874923|874924|874925|874926", "text": "Liddle syndrome 2" }, { - "baseId": "23864|23865|23866|23867|23868|23871|23883|24302|24303|24304|24305|24306|24308|175749|175889|176006|176007|176008|176009|176011|176012|176013|176014|176148|176149|176151|176154|176156|176157|191353|193465|193466|230335|230337|230338|230632|230633|255672|270922|318243|318246|318248|318249|318254|318256|318260|318268|318271|318273|318280|318282|318283|318284|318285|318287|324670|324671|324672|324673|324680|324681|324689|324692|324693|324700|324701|324705|324718|324720|324721|324723|324726|324727|324730|324735|326232|326237|326241|326243|326249|326253|326259|326263|332506|332508|332511|332523|332532|332536|332540|332543|332548|332550|332551|334108|334117|334121|334122|334123|334124|334131|334139|334143|334146|334150|334151|334153|334155|334228|334229|334235|334246|334251|334264|334265|334266|334267|334268|334269|334280|334300|334301|334307|334317|334318|334319|334320|340914|340917|340920|340928|340948|340950|340954|340958|340959|340960|340968|340972|342356|342369|342370|342372|342375|342379|342381|342382|342383|342387|342389|342413|342420|342424|342427|342429|342436|445537|481263|578502|578503|582711|620454|713693|725223|753541|753543|791270|791271|791559|792799|797285|804853|870271|870272|870273|870274|870275|870276|870277|870278|870279|870280|870281|870282|870283|870284|870285|870286|870287|870288|870289|872282|872283|874905|874906|874907|874911|874913|874914|874915|874916|874917|874918|874919|874920|874921|874922|874923|874924|874925|874926|874936|874937|874938|874939|874940|874941|874942|874943|874944|874945|874946|874947|874948|874949|874950|874951|874952|874953|874954|874955|876643|876644|980348", + "upstreamId": "23864|23865|23866|23867|23868|23871|23883|24302|24303|24304|24305|24306|24308|175749|175889|176006|176007|176008|176009|176011|176012|176013|176014|176148|176149|176151|176154|176156|176157|191353|193465|193466|230335|230337|230338|230632|230633|255672|270922|318243|318246|318248|318249|318254|318256|318260|318268|318271|318273|318280|318282|318283|318284|318285|318287|324670|324671|324672|324673|324680|324681|324689|324692|324693|324700|324701|324705|324718|324720|324721|324723|324726|324727|324730|324735|326232|326237|326241|326243|326249|326253|326259|326263|332506|332508|332511|332523|332532|332536|332540|332543|332548|332550|332551|334108|334117|334121|334122|334123|334124|334131|334139|334143|334146|334150|334151|334153|334155|334228|334229|334235|334246|334251|334264|334265|334266|334267|334268|334269|334280|334300|334301|334307|334317|334318|334319|334320|340914|340917|340920|340928|340948|340950|340954|340958|340959|340960|340968|340972|342356|342369|342370|342372|342375|342379|342381|342382|342383|342387|342389|342413|342420|342424|342427|342429|342436|445537|481263|578502|578503|582711|620454|713693|725223|753541|753543|791270|791271|791559|792799|797285|804853|870271|870272|870273|870274|870275|870276|870277|870278|870279|870280|870281|870282|870283|870284|870285|870286|870287|870288|870289|872282|872283|874905|874906|874907|874911|874913|874914|874915|874916|874917|874918|874919|874920|874921|874922|874923|874924|874925|874926|874936|874937|874938|874939|874940|874941|874942|874943|874944|874945|874946|874947|874948|874949|874950|874951|874952|874953|874954|874955|876643|876644|980348", "text": "Autosomal recessive pseudohypoaldosteronism type 1" }, { - "baseId": "23867|23868|324680|445537|792799", + "upstreamId": "23867|23868|324680|445537|792799", "text": "Bronchiectasis with or without elevated sweat chloride 3" }, { - "baseId": "23869|23870|23871|23872|23873|23874|23875|23876|23883|176011|176012|176013|176014|176154|176156|176157|230632|230633|255672|324693|324718|324720|324721|324723|324726|324727|324730|324735|334300|334301|334307|334317|334318|334319|334320|340948|340950|340954|340958|340959|340960|340968|340972|342387|342413|342420|342424|342427|342429|342436|623386|874936|874937|874938|874939|874940|874941|874942|874943|874944|874945|874946|874947|874948|874949|874950|874951|874952|874953|874954|874955|876643|876644|962176|977274", + "upstreamId": "23869|23870|23871|23872|23873|23874|23875|23876|23883|176011|176012|176013|176014|176154|176156|176157|230632|230633|255672|324693|324718|324720|324721|324723|324726|324727|324730|324735|334300|334301|334307|334317|334318|334319|334320|340948|340950|340954|340958|340959|340960|340968|340972|342387|342413|342420|342424|342427|342429|342436|623386|874936|874937|874938|874939|874940|874941|874942|874943|874944|874945|874946|874947|874948|874949|874950|874951|874952|874953|874954|874955|876643|876644|962176|977274", "text": "Liddle syndrome 1" }, { - "baseId": "23884|23885|23886|23887|23888|23889|23890|23891|23892|32903|32909|46863|46864|103887|178440|189388|189390|249746|249747|249748|249749|249750|249751|249752|249753|279384|279385|279389|279393|279394|279399|279627|279635|279636|279637|279638|279639|279642|280901|280903|280906|280914|280915|280916|281046|281047|281053|281056|281057|281058|281061|440487|447749|514880|515466|515563|515564|515594|556792|558349|627390|627391|627392|683306|683307|690502|690506|696513|718702|746190|823492|863799|863800|863801|863802|863803|863804|863805|863806|863807|863808|863809|863810|863811|863812|863813|921853|952304", + "upstreamId": "23884|23885|23886|23887|23888|23889|23890|23891|23892|32903|32909|46863|46864|103887|178440|189388|189390|249746|249747|249748|249749|249750|249751|249752|249753|279384|279385|279389|279393|279394|279399|279627|279635|279636|279637|279638|279639|279642|280901|280903|280906|280914|280915|280916|281046|281047|281053|281056|281057|281058|281061|440487|447749|514880|515466|515563|515564|515594|556792|558349|627390|627391|627392|683306|683307|690502|690506|696513|718702|746190|823492|863799|863800|863801|863802|863803|863804|863805|863806|863807|863808|863809|863810|863811|863812|863813|921853|952304", "text": "Alzheimer disease, type 4" }, { - "baseId": "23891|103887|178440|189388|189390|249746|249747|249748|249749|249750|249751|249752|249753|279384|279385|279389|279393|279394|279399|279627|279635|279636|279637|279638|279639|279642|280901|280903|280906|280914|280915|280916|281046|281047|281053|281056|281057|281058|281061|440487|515466|515563|690502|690506|718702|746190|863799|863800|863801|863802|863803|863804|863805|863806|863807|863808|863809|863810|863811|863812|863813", + "upstreamId": "23891|103887|178440|189388|189390|249746|249747|249748|249749|249750|249751|249752|249753|279384|279385|279389|279393|279394|279399|279627|279635|279636|279637|279638|279639|279642|280901|280903|280906|280914|280915|280916|281046|281047|281053|281056|281057|281058|281061|440487|515466|515563|690502|690506|718702|746190|863799|863800|863801|863802|863803|863804|863805|863806|863807|863808|863809|863810|863811|863812|863813", "text": "Dilated cardiomyopathy 1V" }, { - "baseId": "23893|23894|353955|353956|353957|463878|463881|527985|528042|528500|567867|572744|642196|642197|642199|642200|642202|642203|642204|970991", + "upstreamId": "23893|23894|353955|353956|353957|463878|463881|527985|528042|528500|567867|572744|642196|642197|642199|642200|642202|642203|642204|970991", "text": "Specific granule deficiency 1" }, { - "baseId": "23895|551781|857650", + "upstreamId": "23895|551781|857650", "text": "Long QT syndrome 13" }, { - "baseId": "23895|23957|23958|23958|23959|23960|23961|23962|23962|23962|23963|23964|23965|23967|39075|39076|39077|39077|39081|45097|45097|78456|78461|78462|78463|78464|78464|78465|78465|78470|78471|78477|78479|78481|78481|78484|78487|78487|78490|141686|141687|141689|141690|141691|141691|171189|171189|188650|188656|188659|188661|188662|188662|188664|188665|188666|188666|188667|204359|204360|222732|224521|224521|224522|259015|259021|259021|265838|269767|329615|329619|329620|329624|329625|329625|329628|329635|329636|329637|329638|329639|329641|329643|329645|329648|329650|329654|329655|329660|329663|329664|329666|329669|329672|329675|329677|339907|339908|339911|339911|339912|339916|339921|339922|339923|339925|339927|339929|339930|339933|339934|339941|345630|345631|345634|345635|345638|345640|345641|345645|345648|345649|345652|345653|345659|345662|345663|345667|345669|345672|345676|345677|345679|345681|345682|346986|346987|346989|346993|347000|347010|347015|347017|347021|347026|347038|347042|347043|375673|376609|376617|376617|376618|378738|402503|402505|402975|403114|403117|403123|439887|442013|445876|467401|467407|467416|468303|468306|468769|468771|468771|468772|469005|469008|507126|510757|510758|532098|569686|569694|571569|625822|625823|625823|626260|646634|646635|646636|646637|646638|646639|646640|646641|646642|646643|672444|672444|677457|688820|688821|688822|694171|694172|694173|694173|694175|740993|771784|846135|846136|846137|846138|846139|878290|878291|878292|878292|878293|878294|878295|878296|878297|878298|878299|878300|878301|878302|878303|878304|878305|878306|878307|878308|878309|878310|878311|878312|878313|878314|878315|878316|878317|878318|878319|878320|878321|878322|878323|878324|878325|919766|928519|928520|928521|938204|938205|941158|950259|950260|958288|958289|967210|969522", + "upstreamId": "23895|23957|23958|23958|23959|23960|23961|23962|23962|23962|23963|23964|23965|23967|39075|39076|39077|39077|39081|45097|45097|78456|78461|78462|78463|78464|78464|78465|78465|78470|78471|78477|78479|78481|78481|78484|78487|78487|78490|141686|141687|141689|141690|141691|141691|171189|171189|188650|188656|188659|188661|188662|188662|188664|188665|188666|188666|188667|204359|204360|222732|224521|224521|224522|259015|259021|259021|265838|269767|329615|329619|329620|329624|329625|329625|329628|329635|329636|329637|329638|329639|329641|329643|329645|329648|329650|329654|329655|329660|329663|329664|329666|329669|329672|329675|329677|339907|339908|339911|339911|339912|339916|339921|339922|339923|339925|339927|339929|339930|339933|339934|339941|345630|345631|345634|345635|345638|345640|345641|345645|345648|345649|345652|345653|345659|345662|345663|345667|345669|345672|345676|345677|345679|345681|345682|346986|346987|346989|346993|347000|347010|347015|347017|347021|347026|347038|347042|347043|375673|376609|376617|376617|376618|378738|402503|402505|402975|403114|403117|403123|439887|442013|445876|467401|467407|467416|468303|468306|468769|468771|468771|468772|469005|469008|507126|510757|510758|532098|569686|569694|571569|625822|625823|625823|626260|646634|646635|646636|646637|646638|646639|646640|646641|646642|646643|672444|672444|677457|688820|688821|688822|694171|694172|694173|694173|694175|740993|771784|846135|846136|846137|846138|846139|878290|878291|878292|878292|878293|878294|878295|878296|878297|878298|878299|878300|878301|878302|878303|878304|878305|878306|878307|878308|878309|878310|878311|878312|878313|878314|878315|878316|878317|878318|878319|878320|878321|878322|878323|878324|878325|919766|928519|928520|928521|938204|938205|941158|950259|950260|958288|958289|967210|969522", "text": "Andersen Tawil syndrome" }, { - "baseId": "23895|39081|97393|139391|139392|139393|141693|141694|141695|141696|141697|141698|186151|212923|313268|313294|313298|313299|313300|313301|313305|313306|313309|313312|313313|313314|319394|319399|319400|319401|319402|319417|319418|319435|319441|319442|319443|325531|325539|325545|325549|325562|325570|325578|325579|326523|326529|326535|326539|326540|326541|326545|326565|326566|326575|326583|326584|326586|684239|867560|867561|867562|867563|867564|867565|867566|867567|867568|867569|867570|867571|867572|867573|867574|867575|867576|867577|867578|867579|919340", + "upstreamId": "23895|39081|97393|139391|139392|139393|141693|141694|141695|141696|141697|141698|186151|212923|313268|313294|313298|313299|313300|313301|313305|313306|313309|313312|313313|313314|319394|319399|319400|319401|319402|319417|319418|319435|319441|319442|319443|325531|325539|325545|325549|325562|325570|325578|325579|326523|326529|326535|326539|326540|326541|326545|326565|326566|326575|326583|326584|326586|684239|867560|867561|867562|867563|867564|867565|867566|867567|867568|867569|867570|867571|867572|867573|867574|867575|867576|867577|867578|867579|919340", "text": "Familial hyperaldosteronism type 3" }, { - "baseId": "23896|23903|23904|33976|39080|39080|429487", + "upstreamId": "23896|23903|23904|33976|39080|39080|429487", "text": "Pancreatic agenesis 1" }, { - "baseId": "23896|23898|23902|33976|33976|39080|45065|45066|45067|45069|45070|45071|45072|45074|45075|45076|45077|135327|429487", + "upstreamId": "23896|23898|23902|33976|33976|39080|45065|45066|45067|45069|45070|45071|45072|45074|45075|45076|45077|135327|429487", "text": "Maturity-onset diabetes of the young type 4" }, { - "baseId": "23905|23906|23907|23908|23911|23912|23913|23914|23915|265457|269321|271728|271980|284771|284778|284789|284790|285429|285440|285441|285452|285463|287653|287655|287670|287672|287684|287685|287686|287907|287921|287922|287941|287943|287949|287963|287965|733174|747307|822332|822333|822336|857347|883778|883779|883780|883781|883782|883783|883784|883785|883786|883787|883788|883789|883790|883791|883792|883793|883794|883795|883796|883797|883798|883799|883800|883801|887276|918030|918739", + "upstreamId": "23905|23906|23907|23908|23911|23912|23913|23914|23915|265457|269321|271728|271980|284771|284778|284789|284790|285429|285440|285441|285452|285463|287653|287655|287670|287672|287684|287685|287686|287907|287921|287922|287941|287943|287949|287963|287965|733174|747307|822332|822333|822336|857347|883778|883779|883780|883781|883782|883783|883784|883785|883786|883787|883788|883789|883790|883791|883792|883793|883794|883795|883796|883797|883798|883799|883800|883801|887276|918030|918739", "text": "Type A1 brachydactyly" }, { - "baseId": "23909|23910|788747|788748", + "upstreamId": "23909|23910|788747|788748", "text": "Acrocapitofemoral dysplasia" }, { - "baseId": "23916|23917|23918|23919|23920|23921|23922|23923|23924|23925|23926|23927|23928|23930|23932|23934|23935|76732|76754|76757|76761|76762|76768|76780|76784|76785|76787|76791|76792|76795|76800|76812|76819|76820|193391|361187|424484|456902|457594|486746|522502|536077|536078|536079|536081|635957|651714|677292|699961|699962|699963|710892|710893|710894|736042|750536|945539|964288|964832|970853|970854|977228", + "upstreamId": "23916|23917|23918|23919|23920|23921|23922|23923|23924|23925|23926|23927|23928|23930|23932|23934|23935|76732|76754|76757|76761|76762|76768|76780|76784|76785|76787|76791|76792|76795|76800|76812|76819|76820|193391|361187|424484|456902|457594|486746|522502|536077|536078|536079|536081|635957|651714|677292|699961|699962|699963|710892|710893|710894|736042|750536|945539|964288|964832|970853|970854|977228", "text": "Holoprosencephaly 3" }, { - "baseId": "23925|23926|24558|24559|24560|24561|39337|39338|39339|490057|918773|919095", + "upstreamId": "23925|23926|24558|24559|24560|24561|39337|39338|39339|490057|918773|919095", "text": "SCHIZENCEPHALY" }, { - "baseId": "23925|23931|653874", + "upstreamId": "23925|23931|653874", "text": "Microphthalmia, isolated, with coloboma 5" }, { - "baseId": "23925|23929|23933|23934|39338|536080", + "upstreamId": "23925|23929|23933|23934|39338|536080", "text": "Solitary median maxillary central incisor syndrome" }, { - "baseId": "23936|23937|99599|99601|177611|191655|193026|206565|237094|255853|325986|326000|326048|335697|335733|335736|342070|343570|354176|431798|486149|799959|799960|799961|905053|905056|919667|919668|971052", + "upstreamId": "23936|23937|99599|99601|177611|191655|193026|206565|237094|255853|325986|326000|326048|335697|335733|335736|342070|343570|354176|431798|486149|799959|799960|799961|905053|905056|919667|919668|971052", "text": "Retinitis pigmentosa 45" }, { - "baseId": "23938|23939|23940|23941|23942|23943|23944|23945|23946|23947|70781|70782|70783|70813|70814|70815|70816|70817|70818|70819|70820|70821|70822|70823|70824|70825|70826|70827|70828|70829|70830|70831|70832|70833|70834|70835|70836|70837|70838|70839|70840|70841|70842|70843|70844|70845|70846|70847|70848|70849|70850|70851|70852|70853|70854|70855|70856|70857|70858|70859|135467|135468|135469|142496|142499|186623|193410|195574|196169|200995|201106|201107|201109|201110|201111|201112|201113|201114|201115|201116|201117|201119|201123|227214|237963|237964|237965|237966|238280|264002|280434|280436|280445|280449|280451|280455|280458|280459|280460|280472|280801|280811|280814|280829|280844|280857|280858|282205|282206|282207|282209|282212|282213|282219|282220|282221|282222|282345|282366|282371|282374|282405|282406|282423|282430|357075|357076|357077|357078|357079|357080|357081|357082|357083|357084|365267|391214|391215|391343|391344|442835|447887|447890|448107|448110|448113|448114|448174|448186|448188|485997|498657|498671|514895|515852|515855|515856|515881|515899|515905|515906|515977|541042|541052|541054|541058|541144|541145|541150|541155|541181|541184|541186|541191|541194|541196|541198|541205|557051|557313|557315|558501|558503|558505|558507|558509|578791|622862|627826|627827|627828|627829|627830|627831|650666|653849|653988|683327|685730|746470|759011|761911|774499|780684|818966|823950|823951|823952|823953|823954|823955|823956|823957|823958|823959|850711|850780|864332|864333|864334|864335|864336|864337|864338|864339|864340|864341|864342|864343|864344|864345|864346|922011|922012|922013|922014|930483|930484|940633|941935|941936|941937|941938|952409|952410|952411|965935|977535|977536|977537|977538", + "upstreamId": "23938|23939|23940|23941|23942|23943|23944|23945|23946|23947|70781|70782|70783|70813|70814|70815|70816|70817|70818|70819|70820|70821|70822|70823|70824|70825|70826|70827|70828|70829|70830|70831|70832|70833|70834|70835|70836|70837|70838|70839|70840|70841|70842|70843|70844|70845|70846|70847|70848|70849|70850|70851|70852|70853|70854|70855|70856|70857|70858|70859|135467|135468|135469|142496|142499|186623|193410|195574|196169|200995|201106|201107|201109|201110|201111|201112|201113|201114|201115|201116|201117|201119|201123|227214|237963|237964|237965|237966|238280|264002|280434|280436|280445|280449|280451|280455|280458|280459|280460|280472|280801|280811|280814|280829|280844|280857|280858|282205|282206|282207|282209|282212|282213|282219|282220|282221|282222|282345|282366|282371|282374|282405|282406|282423|282430|357075|357076|357077|357078|357079|357080|357081|357082|357083|357084|365267|391214|391215|391343|391344|442835|447887|447890|448107|448110|448113|448114|448174|448186|448188|485997|498657|498671|514895|515852|515855|515856|515881|515899|515905|515906|515977|541042|541052|541054|541058|541144|541145|541150|541155|541181|541184|541186|541191|541194|541196|541198|541205|557051|557313|557315|558501|558503|558505|558507|558509|578791|622862|627826|627827|627828|627829|627830|627831|650666|653849|653988|683327|685730|746470|759011|761911|774499|780684|818966|823950|823951|823952|823953|823954|823955|823956|823957|823958|823959|850711|850780|864332|864333|864334|864335|864336|864337|864338|864339|864340|864341|864342|864343|864344|864345|864346|922011|922012|922013|922014|930483|930484|940633|941935|941936|941937|941938|952409|952410|952411|965935|977535|977536|977537|977538", "text": "Neuronal ceroid lipofuscinosis 1" }, { - "baseId": "23943|140827|193688|194825|202608|203812|203814|203815|203817|203818|280429|280430|280812|280826|282370|282413|292242|292244|296979|314712|314713|321380|321392|321432|321436|323238|323239|327543|327555|328606|328626|332905|336299|336301|336304|336307|336310|336312|336318|336320|336322|336324|336325|336328|336329|336335|336336|336345|336348|336351|336357|336358|336368|336369|336371|336372|336378|336379|336383|339799|341232|341236|341237|346019|346022|346023|346027|346031|346032|346034|346035|346039|346045|346049|346051|346057|346063|346066|346068|346083|346085|346091|346092|346093|346098|346102|346115|350380|350381|350384|350385|350388|350389|350392|350393|350396|350397|350400|350401|350404|350405|350407|350408|350413|350414|350419|350420|350423|350424|350427|350428|350430|350431|350434|351417|351418|351421|351424|351425|351427|351430|351431|351434|351435|351438|351439|351442|351443|351446|351447|351450|351451|351454|351455|351457|351460|351461|351464|351465|351467|351470|353327|353328", + "upstreamId": "23943|140827|193688|194825|202608|203812|203814|203815|203817|203818|280429|280430|280812|280826|282370|282413|292242|292244|296979|314712|314713|321380|321392|321432|321436|323238|323239|327543|327555|328606|328626|332905|336299|336301|336304|336307|336310|336312|336318|336320|336322|336324|336325|336328|336329|336335|336336|336345|336348|336351|336357|336358|336368|336369|336371|336372|336378|336379|336383|339799|341232|341236|341237|346019|346022|346023|346027|346031|346032|346034|346035|346039|346045|346049|346051|346057|346063|346066|346068|346083|346085|346091|346092|346093|346098|346102|346115|350380|350381|350384|350385|350388|350389|350392|350393|350396|350397|350400|350401|350404|350405|350407|350408|350413|350414|350419|350420|350423|350424|350427|350428|350430|350431|350434|351417|351418|351421|351424|351425|351427|351430|351431|351434|351435|351438|351439|351442|351443|351446|351447|351450|351451|351454|351455|351457|351460|351461|351464|351465|351467|351470|353327|353328", "text": "Neuronal Ceroid-Lipofuscinosis, Recessive" }, { - "baseId": "23948|23949", + "upstreamId": "23948|23949", "text": "Diabetes mellitus, insulin-dependent, susceptibility to" }, { - "baseId": "23948|31960|31961", + "upstreamId": "23948|31960|31961", "text": "Hashimoto thyroiditis, susceptibility to" }, { - "baseId": "23948", + "upstreamId": "23948", "text": "Addison disease, susceptibility to" }, { - "baseId": "23948|31961", + "upstreamId": "23948|31961", "text": "chronic fatigue syndrome with infection-triggered onset" }, { - "baseId": "23951|139369|192849|202713|274242|372394|408707|429438|571890|614378|677439|677440|798657|857655|861576|983305", + "upstreamId": "23951|139369|192849|202713|274242|372394|408707|429438|571890|614378|677439|677440|798657|857655|861576|983305", "text": "Cognitive impairment with or without cerebellar ataxia" }, { - "baseId": "23952|40534|421846|619826", + "upstreamId": "23952|40534|421846|619826", "text": "Arthrogryposis, distal, type 2b2" }, { - "baseId": "23952|40534", + "upstreamId": "23952|40534", "text": "Arthyrgryposis, distal, type 2B" }, { - "baseId": "23953|23954", + "upstreamId": "23953|23954", "text": "Erythrocyte lactate transporter defect" }, { - "baseId": "23955|23956|135762|170214|249364|249365|275923|275925|275928|275929|275930|275931|275933|276014|276017|276033|276034|276048|276049|276062|276065|276067|276090|276094|276106|276121|276122|276125|276135|276167|276171|276172|276182|276191|276200|276274|276277|276278|276279|276291|276292|276293|276294|276295|276296|276297|276333|276334|276338|427621|731588|789822|815975|861961|861962|861963|861964|861965|861966|861967|861968|861969|861970|861971|861972|861973|861974|861975|861976|861977|861978|861979", + "upstreamId": "23955|23956|135762|170214|249364|249365|275923|275925|275928|275929|275930|275931|275933|276014|276017|276033|276034|276048|276049|276062|276065|276067|276090|276094|276106|276121|276122|276125|276135|276167|276171|276172|276182|276191|276200|276274|276277|276278|276279|276291|276292|276293|276294|276295|276296|276297|276333|276334|276338|427621|731588|789822|815975|861961|861962|861963|861964|861965|861966|861967|861968|861969|861970|861971|861972|861973|861974|861975|861976|861977|861978|861979", "text": "Exercise-induced hyperinsulinism" }, { - "baseId": "23958|23962|23962|23966|39077|39077|45097|45097|78456|78461|78462|78464|78465|78470|78471|78481|78487|78490|141686|141687|141689|141690|141691|141691|171189|188650|188656|188659|188661|188662|188664|188665|188666|188666|188667|224521|224522|259015|259021|265838|269767|329615|329619|329624|329625|329625|329628|329635|329637|329638|329639|329641|329645|329648|329655|329664|329666|329669|329677|339907|339911|339911|339912|339916|339922|339923|339925|339933|339934|339941|345630|345631|345634|345635|345638|345640|345641|345645|345648|345649|345652|345659|345662|345663|345667|345669|345679|345681|345682|346986|346987|346989|346993|347010|347015|347017|347038|347042|347043|375673|376609|376617|376617|376618|378738|402503|402505|402975|403114|403117|442013|445876|467401|467407|467416|468306|468769|468771|468771|468772|469005|469008|507126|510757|510758|532098|569686|569694|571569|625823|646634|646635|646636|646637|646638|646639|646640|646641|646642|646643|672444|677457|688820|688821|688822|694171|694172|694173|694173|694175|740993|771784|846135|846136|846137|846138|846139|878290|878291|878292|878292|878293|878294|878295|878296|878297|878298|878299|878300|878301|878302|878303|878304|878305|878306|878307|878308|878309|878310|878311|878312|878313|878314|878315|878316|878317|878318|878319|878320|878321|878322|878323|878324|878325|928519|928520|928521|938204|938205|941158|950259|950260|958288|958289", + "upstreamId": "23958|23962|23962|23966|39077|39077|45097|45097|78456|78461|78462|78464|78465|78470|78471|78481|78487|78490|141686|141687|141689|141690|141691|141691|171189|188650|188656|188659|188661|188662|188664|188665|188666|188666|188667|224521|224522|259015|259021|265838|269767|329615|329619|329624|329625|329625|329628|329635|329637|329638|329639|329641|329645|329648|329655|329664|329666|329669|329677|339907|339911|339911|339912|339916|339922|339923|339925|339933|339934|339941|345630|345631|345634|345635|345638|345640|345641|345645|345648|345649|345652|345659|345662|345663|345667|345669|345679|345681|345682|346986|346987|346989|346993|347010|347015|347017|347038|347042|347043|375673|376609|376617|376617|376618|378738|402503|402505|402975|403114|403117|442013|445876|467401|467407|467416|468306|468769|468771|468771|468772|469005|469008|507126|510757|510758|532098|569686|569694|571569|625823|646634|646635|646636|646637|646638|646639|646640|646641|646642|646643|672444|677457|688820|688821|688822|694171|694172|694173|694173|694175|740993|771784|846135|846136|846137|846138|846139|878290|878291|878292|878292|878293|878294|878295|878296|878297|878298|878299|878300|878301|878302|878303|878304|878305|878306|878307|878308|878309|878310|878311|878312|878313|878314|878315|878316|878317|878318|878319|878320|878321|878322|878323|878324|878325|928519|928520|928521|938204|938205|941158|950259|950260|958288|958289", "text": "Short QT syndrome 3" }, { - "baseId": "23962|39077|45097|141691|188666|329615|329619|329624|329625|329628|329635|329637|329638|329639|329641|329645|329648|329655|329664|329666|329669|329677|339907|339911|339912|339916|339922|339923|339925|339933|339934|339941|345630|345631|345634|345635|345638|345640|345641|345645|345648|345649|345652|345659|345662|345663|345667|345669|345679|345681|345682|346986|346987|346989|346993|347010|347015|347017|347038|347042|347043|375673|376617|468771|677457|694173|878290|878291|878292|878293|878294|878295|878296|878297|878298|878299|878300|878301|878302|878303|878304|878305|878306|878307|878308|878309|878310|878311|878312|878313|878314|878315|878316|878317|878318|878319|878320|878321|878322|878323|878324|878325", + "upstreamId": "23962|39077|45097|141691|188666|329615|329619|329624|329625|329628|329635|329637|329638|329639|329641|329645|329648|329655|329664|329666|329669|329677|339907|339911|339912|339916|339922|339923|339925|339933|339934|339941|345630|345631|345634|345635|345638|345640|345641|345645|345648|345649|345652|345659|345662|345663|345667|345669|345679|345681|345682|346986|346987|346989|346993|347010|347015|347017|347038|347042|347043|375673|376617|468771|677457|694173|878290|878291|878292|878293|878294|878295|878296|878297|878298|878299|878300|878301|878302|878303|878304|878305|878306|878307|878308|878309|878310|878311|878312|878313|878314|878315|878316|878317|878318|878319|878320|878321|878322|878323|878324|878325", "text": "Atrial fibrillation, familial, 9" }, { - "baseId": "23968|23969|23970|23971|23972|23975|23976|45243|45244|45245|45246|45247|45249|45251|45255|45256|45257|45258|45259|45261|50027|50029|50030|50032|50032|50033|50035|51637|51638|51640|51641|51642|94625|94629|94638|94639|94642|94648|94650|94654|94663|94666|94668|94672|94674|94682|94685|94690|94691|94692|94698|94705|94707|94713|94719|94723|94725|94730|94731|94733|94738|94743|94753|94754|94755|94760|94762|94763|94763|94765|94779|94786|94786|94788|94804|94805|94807|94808|94812|94815|94816|94816|94820|94826|94826|94831|94833|94834|94836|94838|94842|94843|94843|94844|94858|94863|94865|94874|94876|94878|94883|94889|94890|94891|94892|94898|94898|94902|94917|94919|94931|94935|94938|94946|94947|94948|94949|94950|94951|94953|94958|94962|94964|94968|94970|94971|94973|94974|94976|94980|94981|94982|94983|94985|94996|95000|95001|95004|95008|95014|95025|95026|95034|95036|95036|95038|95046|95047|133011|133019|133020|133021|133022|133023|133026|133027|133027|133028|133029|133031|133032|133033|133039|133042|133043|133045|133046|133048|133050|133050|133051|133052|133061|138590|138590|138591|138592|138594|138595|139541|139542|139544|139547|139551|139553|139555|141959|141961|141965|150493|150494|150550|150580|150606|150675|150772|150799|150836|150902|150964|150979|151010|151013|151013|151041|151042|151060|151078|151189|151239|151465|151599|151895|151946|152019|152140|152204|152209|152210|152222|152239|152277|152377|152386|152389|152487|152611|152675|166272|180038|180039|180040|180045|180051|180053|180054|180056|180062|180066|180067|180069|180074|180076|180077|180078|180079|180080|180081|180082|180084|180085|180088|180092|180096|180098|180100|180101|180103|180104|181201|181202|181998|181998|182008|182018|182020|182022|182025|182045|182055|182066|182075|182079|182080|182082|182084|182088|182095|182099|182101|182104|182109|182115|182124|182126|182129|182130|182130|182133|182134|182135|182138|182142|182143|182144|182147|182152|182159|182162|182163|182177|182178|182183|182192|182194|185989|185997|186000|186005|198614|212211|212212|212214|212220|212221|212222|212225|212239|212242|212245|212264|212265|215258|221251|221251|221252|221252|221253|221254|221255|221256|221257|221259|221260|221264|221269|221277|221282|221286|221295|221297|221298|221302|221304|221306|221307|221314|226304|226308|231527|231547|231549|231582|231594|232657|232667|232679|232683|232698|232700|232732|232804|232818|232837|232857|238882|238889|238893|238901|238907|238914|238938|238939|238942|238944|286680|286681|287402|289831|290190|290191|290207|358718|358719|358720|358721|358722|358723|358724|358725|358726|358727|358728|366518|366559|366695|392813|392820|392893|392937|392964|392976|393001|393009|393148|393184|393290|393318|393336|393386|405875|405879|405879|405897|405897|405900|405927|405966|405967|419483|419524|432523|451404|451445|451503|451609|451676|473109|473228|473386|480462|480463|483414|483472|488078|518537|518546|518578|537734|539213|539214|539215|539216|539217|539218|539219|539220|539221|539222|539224|539225|539226|539227|539228|539229|558231|575677|575678|575684|616731|630279|630283|682672|763303|790265|790266|790267|790268|790269|790270|790271|790272|790273|790274|790275|790276|790277|790278|790279|790280|790281|807331|885121|885122|885123|885124|922859|967147|970057|970745|974938", + "upstreamId": "23968|23969|23970|23971|23972|23975|23976|45243|45244|45245|45246|45247|45249|45251|45255|45256|45257|45258|45259|45261|50027|50029|50030|50032|50032|50033|50035|51637|51638|51640|51641|51642|94625|94629|94638|94639|94642|94648|94650|94654|94663|94666|94668|94672|94674|94682|94685|94690|94691|94692|94698|94705|94707|94713|94719|94723|94725|94730|94731|94733|94738|94743|94753|94754|94755|94760|94762|94763|94763|94765|94779|94786|94786|94788|94804|94805|94807|94808|94812|94815|94816|94816|94820|94826|94826|94831|94833|94834|94836|94838|94842|94843|94843|94844|94858|94863|94865|94874|94876|94878|94883|94889|94890|94891|94892|94898|94898|94902|94917|94919|94931|94935|94938|94946|94947|94948|94949|94950|94951|94953|94958|94962|94964|94968|94970|94971|94973|94974|94976|94980|94981|94982|94983|94985|94996|95000|95001|95004|95008|95014|95025|95026|95034|95036|95036|95038|95046|95047|133011|133019|133020|133021|133022|133023|133026|133027|133027|133028|133029|133031|133032|133033|133039|133042|133043|133045|133046|133048|133050|133050|133051|133052|133061|138590|138590|138591|138592|138594|138595|139541|139542|139544|139547|139551|139553|139555|141959|141961|141965|150493|150494|150550|150580|150606|150675|150772|150799|150836|150902|150964|150979|151010|151013|151013|151041|151042|151060|151078|151189|151239|151465|151599|151895|151946|152019|152140|152204|152209|152210|152222|152239|152277|152377|152386|152389|152487|152611|152675|166272|180038|180039|180040|180045|180051|180053|180054|180056|180062|180066|180067|180069|180074|180076|180077|180078|180079|180080|180081|180082|180084|180085|180088|180092|180096|180098|180100|180101|180103|180104|181201|181202|181998|181998|182008|182018|182020|182022|182025|182045|182055|182066|182075|182079|182080|182082|182084|182088|182095|182099|182101|182104|182109|182115|182124|182126|182129|182130|182130|182133|182134|182135|182138|182142|182143|182144|182147|182152|182159|182162|182163|182177|182178|182183|182192|182194|185989|185997|186000|186005|198614|212211|212212|212214|212220|212221|212222|212225|212239|212242|212245|212264|212265|215258|221251|221251|221252|221252|221253|221254|221255|221256|221257|221259|221260|221264|221269|221277|221282|221286|221295|221297|221298|221302|221304|221306|221307|221314|226304|226308|231527|231547|231549|231582|231594|232657|232667|232679|232683|232698|232700|232732|232804|232818|232837|232857|238882|238889|238893|238901|238907|238914|238938|238939|238942|238944|286680|286681|287402|289831|290190|290191|290207|358718|358719|358720|358721|358722|358723|358724|358725|358726|358727|358728|366518|366559|366695|392813|392820|392893|392937|392964|392976|393001|393009|393148|393184|393290|393318|393336|393386|405875|405879|405879|405897|405897|405900|405927|405966|405967|419483|419524|432523|451404|451445|451503|451609|451676|473109|473228|473386|480462|480463|483414|483472|488078|518537|518546|518578|537734|539213|539214|539215|539216|539217|539218|539219|539220|539221|539222|539224|539225|539226|539227|539228|539229|558231|575677|575678|575684|616731|630279|630283|682672|763303|790265|790266|790267|790268|790269|790270|790271|790272|790273|790274|790275|790276|790277|790278|790279|790280|790281|807331|885121|885122|885123|885124|922859|967147|970057|970745|974938", "text": "Hereditary nonpolyposis colorectal cancer type 5" }, { - "baseId": "23970|95014", + "upstreamId": "23970|95014", "text": "Colorectal / endometrial cancer" }, { - "baseId": "23983", + "upstreamId": "23983", "text": "Cutaneous malignant melanoma 6" }, { - "baseId": "23985|799597", + "upstreamId": "23985|799597", "text": "Cocoon syndrome" }, { - "baseId": "23986|48699|48700|48701|48702|99963|141906|168540|168541|168543|194368|195642|201906|201910|201919|205746|207288|215010|225866|300680|368274|368590|425650|432211|454426|455075|455087|455740|455745|455748|455995|455997|481413|521266|560500|560502|563254|563256|589802|611389|634465|634466|634467|672063|672064|686769|749644|782384|815982|819631|819632|821924|831248|831249|831250|920214|924189|924190|924191|924192|924193|924194|933063|933064|933065|940828|944769|962879|964118|964262|964263|970815|970816", + "upstreamId": "23986|48699|48700|48701|48702|99963|141906|168540|168541|168543|194368|195642|201906|201910|201919|205746|207288|215010|225866|300680|368274|368590|425650|432211|454426|455075|455087|455740|455745|455748|455995|455997|481413|521266|560500|560502|563254|563256|589802|611389|634465|634466|634467|672063|672064|686769|749644|782384|815982|819631|819632|821924|831248|831249|831250|920214|924189|924190|924191|924192|924193|924194|933063|933064|933065|940828|944769|962879|964118|964262|964263|970815|970816", "text": "Mental retardation, stereotypic movements, epilepsy, and/or cerebral malformations" }, { - "baseId": "23987", + "upstreamId": "23987", "text": "Coronary artery disease, autosomal dominant, 1" }, { - "baseId": "23988|23989|23990", + "upstreamId": "23988|23989|23990", "text": "Coronary artery disease/myocardial infarction" }, { - "baseId": "23991|23992|23992|23992|23993|23993|23994|23995|23996|23997|23997|23997|23998|24003|24007|24007|39073|98339|98342|98342|136314|140731|177194|177327|186625|186626|186627|186627|199958|199958|199960|357113|357114|357115|357116|357117|357118|357119|357120|357121|357122|357123|357123|357124|357125|357126|357127|359268|361851|361852|363677|363677|440518|440518|448103|448103|486906|516115|516120|516124|541187|541188|541190|541192|541199|541201|541203|541204|541207|541211|541213|541214|541215|541217|541220|541223|541226|541231|541233|541302|541304|541306|541308|541309|541310|541311|541313|541315|541316|541317|541318|541319|541320|541321|541322|541323|541332|612257|621084|788739|906231", + "upstreamId": "23991|23992|23992|23992|23993|23993|23994|23995|23996|23997|23997|23997|23998|24003|24007|24007|39073|98339|98342|98342|136314|140731|177194|177327|186625|186626|186627|186627|199958|199958|199960|357113|357114|357115|357116|357117|357118|357119|357120|357121|357122|357123|357123|357124|357125|357126|357127|359268|361851|361852|363677|363677|440518|440518|448103|448103|486906|516115|516120|516124|541187|541188|541190|541192|541199|541201|541203|541204|541207|541211|541213|541214|541215|541217|541220|541223|541226|541231|541233|541302|541304|541306|541308|541309|541310|541311|541313|541315|541316|541317|541318|541319|541320|541321|541322|541323|541332|612257|621084|788739|906231", "text": "Carnitine palmitoyltransferase II deficiency, infantile" }, { - "baseId": "23991|23992|23993|23995|23996|23997|23998|23999|24003|24007|39073|39074|98339|98341|98342|136310|136311|136312|136313|136314|136315|136316|136317|140731|177194|177327|186627|194265|194269|199957|199958|199960|199962|199963|199964|199965|199966|271720|272043|274820|280790|280792|280802|280803|280806|280807|280808|280815|281312|281317|281319|282577|282578|282587|282588|282868|282870|282871|282877|282878|282879|353104|353105|357116|357121|359268|361851|363677|365299|365415|421251|421253|440515|440517|440518|442867|446933|448098|448100|448103|448108|448194|448196|448203|448207|448210|448239|448240|448241|448361|448371|486906|498519|498522|498730|498734|513901|515979|516005|516010|516021|516024|516042|516043|516045|516115|516117|516120|516124|516129|516132|541199|541321|541323|557099|557101|557103|557105|557320|557322|557324|557326|557375|557377|557379|557381|557383|558553|558555|558557|621084|626111|628143|628144|628145|628146|628147|628148|628149|628150|628151|628152|628153|628154|628155|628156|628157|628158|628159|628160|628161|655113|690641|690642|690643|690644|690645|696792|696793|696795|696796|707453|719013|732504|732505|732506|732507|746556|746559|746560|746561|762008|762012|780731|818982|818983|818984|821842|824231|824232|824233|824234|824235|824236|824237|824238|824239|824240|824241|824242|824243|824244|824245|824246|824247|824248|824249|824250|824251|850804|851315|858398|864582|864583|864584|864585|864586|864587|864588|864589|864590|864591|865194|922115|922116|922117|922118|930596|930597|930598|930599|930600|930601|930602|930603|942029|942030|942031|942032|942033|942034|942035|942036|952464|952465|952466|952467|952468|952469|952470|952471|952472|960433|977549", + "upstreamId": "23991|23992|23993|23995|23996|23997|23998|23999|24003|24007|39073|39074|98339|98341|98342|136310|136311|136312|136313|136314|136315|136316|136317|140731|177194|177327|186627|194265|194269|199957|199958|199960|199962|199963|199964|199965|199966|271720|272043|274820|280790|280792|280802|280803|280806|280807|280808|280815|281312|281317|281319|282577|282578|282587|282588|282868|282870|282871|282877|282878|282879|353104|353105|357116|357121|359268|361851|363677|365299|365415|421251|421253|440515|440517|440518|442867|446933|448098|448100|448103|448108|448194|448196|448203|448207|448210|448239|448240|448241|448361|448371|486906|498519|498522|498730|498734|513901|515979|516005|516010|516021|516024|516042|516043|516045|516115|516117|516120|516124|516129|516132|541199|541321|541323|557099|557101|557103|557105|557320|557322|557324|557326|557375|557377|557379|557381|557383|558553|558555|558557|621084|626111|628143|628144|628145|628146|628147|628148|628149|628150|628151|628152|628153|628154|628155|628156|628157|628158|628159|628160|628161|655113|690641|690642|690643|690644|690645|696792|696793|696795|696796|707453|719013|732504|732505|732506|732507|746556|746559|746560|746561|762008|762012|780731|818982|818983|818984|821842|824231|824232|824233|824234|824235|824236|824237|824238|824239|824240|824241|824242|824243|824244|824245|824246|824247|824248|824249|824250|824251|850804|851315|858398|864582|864583|864584|864585|864586|864587|864588|864589|864590|864591|865194|922115|922116|922117|922118|930596|930597|930598|930599|930600|930601|930602|930603|942029|942030|942031|942032|942033|942034|942035|942036|952464|952465|952466|952467|952468|952469|952470|952471|952472|960433|977549", "text": "Carnitine palmitoyltransferase II deficiency" }, { - "baseId": "23991|23992|23992|23993|23993|23994|23995|23997|23997|23998|24005|24006|24007|24007|186627|199958|357113|357114|357115|357116|357117|357118|357119|357120|357121|357122|357123|357123|357124|357125|357126|357127|363677|440518|448103|516115|516120|516124|541207|608939", + "upstreamId": "23991|23992|23992|23993|23993|23994|23995|23997|23997|23998|24005|24006|24007|24007|186627|199958|357113|357114|357115|357116|357117|357118|357119|357120|357121|357122|357123|357123|357124|357125|357126|357127|363677|440518|448103|516115|516120|516124|541207|608939", "text": "Carnitine palmitoyltransferase II deficiency, myopathic, stress-induced" }, { - "baseId": "23992|23992|23992|23993|23997|23997|23997|23998|24000|24001|24002|24003|24004|24007|24007|39073|98342|186627|199958|199958|357113|357114|357115|357116|357117|357118|357119|357120|357121|357122|357123|357123|357124|357125|357126|357127|363677|440518|448103|513901|516115|516120|516124|621084|818384|818385|906342|962668|962669", + "upstreamId": "23992|23992|23992|23993|23997|23997|23997|23998|24000|24001|24002|24003|24004|24007|24007|39073|98342|186627|199958|199958|357113|357114|357115|357116|357117|357118|357119|357120|357121|357122|357123|357123|357124|357125|357126|357127|363677|440518|448103|513901|516115|516120|516124|621084|818384|818385|906342|962668|962669", "text": "Carnitine palmitoyltransferase II deficiency, lethal neonatal" }, { - "baseId": "23992|23993|23997|24007|186627|357123|363677|440518|448103|516115|516120|516124|964158", + "upstreamId": "23992|23993|23997|24007|186627|357123|363677|440518|448103|516115|516120|516124|964158", "text": "Encephalopathy, acute, infection-induced, 4, susceptibility to" }, { - "baseId": "23997|45840|263356|801166", + "upstreamId": "23997|45840|263356|801166", "text": "Abnormality of the nervous system" }, { - "baseId": "24008|24009|24010|215426|712647|724249|724251|724252|724253|737806|744596|752482|752483|752484|760038|768262|787624|791116|867219|867220|867221|867222|867223|867224|867225|867226|867227|867228|867229|867230|867231|867232|867233|867234|867235|867236|867237|867238|867239|867240|867241|867242|867243|867244|867245|867246|867247|867248|867249|867250|867251|867252|867253|867254|867255|867256|867257|867258|867259|867260|867261|867262|867263|867264|867265|867266|867267|867268|867269|867270|867271|867272|867273|867274|867275|867276|867277|867278|867279|867280|867281|867282|867283|867284|867285|867286|867287|867288|867289|867290|867291|867292|867293|867294|867295|867296|867297|867298|867299|867300|867301|867302|867303|867304|867305|867306|867307|867308|867309|867310|867311|867312|867313|867314|867315|867316|867317|867318|867319|867320|867321|867322|867323|867324|867325|867326|867327|867328|867329|867330|867331|867332|867333|867334|867335|867336|867337|867338|867339|867340|867341|867342|867343|867344|867345|867346|867347", + "upstreamId": "24008|24009|24010|215426|712647|724249|724251|724252|724253|737806|744596|752482|752483|752484|760038|768262|787624|791116|867219|867220|867221|867222|867223|867224|867225|867226|867227|867228|867229|867230|867231|867232|867233|867234|867235|867236|867237|867238|867239|867240|867241|867242|867243|867244|867245|867246|867247|867248|867249|867250|867251|867252|867253|867254|867255|867256|867257|867258|867259|867260|867261|867262|867263|867264|867265|867266|867267|867268|867269|867270|867271|867272|867273|867274|867275|867276|867277|867278|867279|867280|867281|867282|867283|867284|867285|867286|867287|867288|867289|867290|867291|867292|867293|867294|867295|867296|867297|867298|867299|867300|867301|867302|867303|867304|867305|867306|867307|867308|867309|867310|867311|867312|867313|867314|867315|867316|867317|867318|867319|867320|867321|867322|867323|867324|867325|867326|867327|867328|867329|867330|867331|867332|867333|867334|867335|867336|867337|867338|867339|867340|867341|867342|867343|867344|867345|867346|867347", "text": "Cleft lip/palate-ectodermal dysplasia syndrome" }, { - "baseId": "24008", + "upstreamId": "24008", "text": "Orofacial cleft 7" }, { - "baseId": "24011|24012|24013|24014|24017|24018|24019|204977|320483|320485|320487|320501|320502|320505|320509|320510|320514|329261|329267|329270|329287|329288|329289|329293|335865|335867|335868|335869|335875|337793|337796|337814|337820|337824|337827|486614|623390|677446|684482|798675|871845|871846|871847|871848|871849|871850|973054", + "upstreamId": "24011|24012|24013|24014|24017|24018|24019|204977|320483|320485|320487|320501|320502|320505|320509|320510|320514|329261|329267|329270|329287|329288|329289|329293|335865|335867|335868|335869|335875|337793|337796|337814|337820|337824|337827|486614|623390|677446|684482|798675|871845|871846|871847|871848|871849|871850|973054", "text": "Benign hereditary chorea" }, { - "baseId": "24015|24016|24017|24018|24020|24021|204977|214542|320483|320485|320487|320501|320502|320505|320509|320510|320514|329261|329267|329270|329287|329288|329289|329293|335865|335867|335868|335869|335875|337793|337796|337814|337820|337824|337827|429557|552175|623380|623381|623390|625814|677056|677446|684480|684482|791400|791401|791402|791403|871845|871846|871847|871848|871849|871850|921217|980949", + "upstreamId": "24015|24016|24017|24018|24020|24021|204977|214542|320483|320485|320487|320501|320502|320505|320509|320510|320514|329261|329267|329270|329287|329288|329289|329293|335865|335867|335868|335869|335875|337793|337796|337814|337820|337824|337827|429557|552175|623380|623381|623390|625814|677056|677446|684480|684482|791400|791401|791402|791403|871845|871846|871847|871848|871849|871850|921217|980949", "text": "Choreoathetosis, hypothyroidism, and neonatal respiratory distress" }, { - "baseId": "24023|24024|27386|27395|27405|27407|27619|27621|27622|27624|27629|27641|27642|27645|27646|27650|27652|28891|28899|28938|28939|28940|29037|29038|29039|29040|29701|29702|29755|31310|31311|31312|31313|31315|31316|32605|32606|32607|32608|32609|32610|32611|34248|34249|34250|34251|34253|34254|34255|34256|38664|38666|40042|44227|46608|48247|48930|48938|48939|48940|49881|52763|54284|83949|102731|133272|133276|137624|150515|151595|152686|166215|168180|168243|171613|171928|172332|175540|175854|179419|185345|185366|185367|185371|185394|191835|204470|204470|204572|207154|207165|207209|208566|213398|213402|216786|216787|236461|236469|236481|239104|239444|239474|239498|242980|243319|243320|243321|243322|243323|243324|243325|243326|243327|243328|243329|243608|256853|260192|263939|359197|362750|362753|362755|362758|362759|362760|362761|362762|362763|362768|362769|362770|362771|362772|362805|362810|362811|362848|362849|362850|362851|362852|362864|362865|362866|362867|362868|362883|362884|362885|362886|362887|362888|362889|362890|362891|362892|362893|362894|362895|362896|362897|362898|362899|362900|362901|362902|362903|362904|362905|362909|362912|362919|362920|362921|362922|362923|362924|362925|362981|362982|362983|362984|362985|362986|362987|362988|362989|362990|362991|363201|363205|363207|363317|363318|363321|363322|363323|363390|363412|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363469|363470|363471|363472|363485|363486|363487|363488|363489|363490|363491|363492|363493|363496|363497|363498|363499|363531|363534|363535|363536|363537|363539|363540|363541|363545|363546|363594|363595|363596|363597|363598|363599|363600|363601|363602|363603|363617|363627|393498|393500|393746|394098|394222|394336|394339|403216|403224|403232|403234|403235|403240|403262|403263|403264|403269|403272|403280|403283|403668|403674|403676|403679|403680|403681|403690|403708|403711|403715|403717|403720|403731|428133|430172|430173|430175|430176|430381|430419|450922|452262|453508|453809|453899|454710|455687|468607|468608|468613|468614|468616|468623|468629|468630|469539|469543|469546|469553|469556|469572|469582|469599|469601|469603|469613|469615|469616|470006|470010|470014|470016|470020|470026|470029|470031|470036|470037|470039|470041|470043|470596|470601|470603|470605|470607|470611|470617|471620|473438|521082|521439|521559|532833|532837|532838|532839|532841|532842|532851|532854|532856|532863|532872|532874|532876|532881|532882|532884|532886|532888|532890|532905|532907|532912|532915|532916|533260|533261|533274|533276|533286|533291|563999|570642|570643|570654|570659|570666|572325|572326|572330|572342|572345|573004|573007|573010|573014|573021|573022|573028|573030|573031|574929|574930|574931|574932|574933|574934|574935|574936|576133|576159|611383|611384|611388|611999|612003|612004|612025|613514|614370|614458|620938|647896|647897|647898|647899|647900|647901|647902|647903|647904|647905|647906|647907|647908|647909|647910|647911|647912|647913|647914|647915|647916|647917|647918|647919|647920|647921|647922|647923|647924|647925|647926|647927|647928|647929|647930|647931|647932|647933|647934|652948|688982|688983|688985|688986|688987|688988|688989|688991|688994|694367|694368|694369|694370|694371|694372|694373|694374|704908|704909|704910|716362|741769|756896|756897|756900|772572|772573|772576|786130|801064|847492|847493|847494|847495|847496|847497|847498|847499|847500|847501|847502|847503|847504|847505|847506|847507|847508|847509|847510|847511|847512|847513|847514|847515|847516|847517|847518|847519|847520|847521|847522|847523|847524|847525|847526|847527|847528|847529|847530|847531|905008|919670|928913|928914|928915|928916|928917|928918|928919|928920|928921|928922|928923|928924|928925|928926|928927|938631|938632|938633|938634|938635|938636|938637|938638|938639|938640|938641|938642|938643|950740|950741|950742|950743|950744|950745|950746|950747|950748|953331|958593|958594|958595|958596|962185|966328|966330|966335|983837", + "upstreamId": "24023|24024|27386|27395|27405|27407|27619|27621|27622|27624|27629|27641|27642|27645|27646|27650|27652|28891|28899|28938|28939|28940|29037|29038|29039|29040|29701|29702|29755|31310|31311|31312|31313|31315|31316|32605|32606|32607|32608|32609|32610|32611|34248|34249|34250|34251|34253|34254|34255|34256|38664|38666|40042|44227|46608|48247|48930|48938|48939|48940|49881|52763|54284|83949|102731|133272|133276|137624|150515|151595|152686|166215|168180|168243|171613|171928|172332|175540|175854|179419|185345|185366|185367|185371|185394|191835|204470|204470|204572|207154|207165|207209|208566|213398|213402|216786|216787|236461|236469|236481|239104|239444|239474|239498|242980|243319|243320|243321|243322|243323|243324|243325|243326|243327|243328|243329|243608|256853|260192|263939|359197|362750|362753|362755|362758|362759|362760|362761|362762|362763|362768|362769|362770|362771|362772|362805|362810|362811|362848|362849|362850|362851|362852|362864|362865|362866|362867|362868|362883|362884|362885|362886|362887|362888|362889|362890|362891|362892|362893|362894|362895|362896|362897|362898|362899|362900|362901|362902|362903|362904|362905|362909|362912|362919|362920|362921|362922|362923|362924|362925|362981|362982|362983|362984|362985|362986|362987|362988|362989|362990|362991|363201|363205|363207|363317|363318|363321|363322|363323|363390|363412|363443|363444|363445|363446|363447|363448|363449|363450|363451|363452|363469|363470|363471|363472|363485|363486|363487|363488|363489|363490|363491|363492|363493|363496|363497|363498|363499|363531|363534|363535|363536|363537|363539|363540|363541|363545|363546|363594|363595|363596|363597|363598|363599|363600|363601|363602|363603|363617|363627|393498|393500|393746|394098|394222|394336|394339|403216|403224|403232|403234|403235|403240|403262|403263|403264|403269|403272|403280|403283|403668|403674|403676|403679|403680|403681|403690|403708|403711|403715|403717|403720|403731|428133|430172|430173|430175|430176|430381|430419|450922|452262|453508|453809|453899|454710|455687|468607|468608|468613|468614|468616|468623|468629|468630|469539|469543|469546|469553|469556|469572|469582|469599|469601|469603|469613|469615|469616|470006|470010|470014|470016|470020|470026|470029|470031|470036|470037|470039|470041|470043|470596|470601|470603|470605|470607|470611|470617|471620|473438|521082|521439|521559|532833|532837|532838|532839|532841|532842|532851|532854|532856|532863|532872|532874|532876|532881|532882|532884|532886|532888|532890|532905|532907|532912|532915|532916|533260|533261|533274|533276|533286|533291|563999|570642|570643|570654|570659|570666|572325|572326|572330|572342|572345|573004|573007|573010|573014|573021|573022|573028|573030|573031|574929|574930|574931|574932|574933|574934|574935|574936|576133|576159|611383|611384|611388|611999|612003|612004|612025|613514|614370|614458|620938|647896|647897|647898|647899|647900|647901|647902|647903|647904|647905|647906|647907|647908|647909|647910|647911|647912|647913|647914|647915|647916|647917|647918|647919|647920|647921|647922|647923|647924|647925|647926|647927|647928|647929|647930|647931|647932|647933|647934|652948|688982|688983|688985|688986|688987|688988|688989|688991|688994|694367|694368|694369|694370|694371|694372|694373|694374|704908|704909|704910|716362|741769|756896|756897|756900|772572|772573|772576|786130|801064|847492|847493|847494|847495|847496|847497|847498|847499|847500|847501|847502|847503|847504|847505|847506|847507|847508|847509|847510|847511|847512|847513|847514|847515|847516|847517|847518|847519|847520|847521|847522|847523|847524|847525|847526|847527|847528|847529|847530|847531|905008|919670|928913|928914|928915|928916|928917|928918|928919|928920|928921|928922|928923|928924|928925|928926|928927|938631|938632|938633|938634|938635|938636|938637|938638|938639|938640|938641|938642|938643|950740|950741|950742|950743|950744|950745|950746|950747|950748|953331|958593|958594|958595|958596|962185|966328|966330|966335|983837", "text": "Acute myeloid leukemia" }, { - "baseId": "24026|24027|24028|24029|24030|24031|24032|24034|24035|24036|44226|45443|305147|305163|305171|305173|305174|305176|305178|305179|305181|305189|305191|308906|308937|308947|308948|314123|314140|314147|314150|314153|314155|314156|314157|314167|314171|357632|441232|544411|544413|544414|544416|544418|544420|544709|544714|544721|544722|544724|544739|544761|544762|544764|544771|544778|544780|544803|544805|544809|544814|577060|620299|637195|700584|723078|723079|736640|744360|766798|766799|899435|899436|899437|899438|899439|899440|899441|899442|899443|899444|899445|899446|899447|899448|899449|899450|899451|899452|899453|899454|899455|899456|899457|900482|900483|900484|978470", + "upstreamId": "24026|24027|24028|24029|24030|24031|24032|24034|24035|24036|44226|45443|305147|305163|305171|305173|305174|305176|305178|305179|305181|305189|305191|308906|308937|308947|308948|314123|314140|314147|314150|314153|314155|314156|314157|314167|314171|357632|441232|544411|544413|544414|544416|544418|544420|544709|544714|544721|544722|544724|544739|544761|544762|544764|544771|544778|544780|544803|544805|544809|544814|577060|620299|637195|700584|723078|723079|736640|744360|766798|766799|899435|899436|899437|899438|899439|899440|899441|899442|899443|899444|899445|899446|899447|899448|899449|899450|899451|899452|899453|899454|899455|899456|899457|900482|900483|900484|978470", "text": "Cholesterol monooxygenase (side-chain cleaving) deficiency" }, { - "baseId": "24038|24039|24040|24041|33486|48576|48577|48578|71504|71505|106658|106659|247752|509056|791895|919821", + "upstreamId": "24038|24039|24040|24041|33486|48576|48577|48578|71504|71505|106658|106659|247752|509056|791895|919821", "text": "BLOOD GROUP--LUTHERAN INHIBITOR" }, { - "baseId": "24042", + "upstreamId": "24042", "text": "HEREDITARY PERSISTENCE OF FETAL HEMOGLOBIN, KLF1-RELATED" }, { - "baseId": "24043|24044|24045|24047|24048|24050|24051|24052|24053|24054|24055|24056|24057|39067|39068|39070|45318|45319|45320|142228|165957|165958|165959|165960|168105|168106|188421|188423|188426|188427|188428|207174|239513|239785|239786|244012|248630|251845|267964|368552|369770|394846|395125|395128|395137|395449|395449|454836|454838|454839|454950|455433|455674|455675|455681|509755|509756|509758|509759|509760|509762|511588|513956|521075|521307|521309|521311|521315|521319|521427|521431|521550|521558|559837|560382|560384|563059|563061|565017|565019|633754|633755|633756|633757|633758|633759|651419|679965|749426|765029|765030|765031|819573|819574|830659|830660|830661|830662|830663|830664|830665|830666|830667|830668|830669|830670|830671|924000|924001|932848|932849|932850|932851|932852|932853|932854|932855|944543", + "upstreamId": "24043|24044|24045|24047|24048|24050|24051|24052|24053|24054|24055|24056|24057|39067|39068|39070|45318|45319|45320|142228|165957|165958|165959|165960|168105|168106|188421|188423|188426|188427|188428|207174|239513|239785|239786|244012|248630|251845|267964|368552|369770|394846|395125|395128|395137|395449|395449|454836|454838|454839|454950|455433|455674|455675|455681|509755|509756|509758|509759|509760|509762|511588|513956|521075|521307|521309|521311|521315|521319|521427|521431|521550|521558|559837|560382|560384|563059|563061|565017|565019|633754|633755|633756|633757|633758|633759|651419|679965|749426|765029|765030|765031|819573|819574|830659|830660|830661|830662|830663|830664|830665|830666|830667|830668|830669|830670|830671|924000|924001|932848|932849|932850|932851|932852|932853|932854|932855|944543", "text": "Atrial septal defect 7 with or without atrioventricular conduction defects" }, { - "baseId": "24047|24057|24058", + "upstreamId": "24047|24057|24058", "text": "Hypothyroidism, congenital, nongoitrous, 5" }, { - "baseId": "24047", + "upstreamId": "24047", "text": "Interrupted aortic arch" }, { - "baseId": "24047", + "upstreamId": "24047", "text": "Truncus arteriosus" }, { - "baseId": "24047", + "upstreamId": "24047", "text": "Hypoplastic left heart syndrome 2" }, { - "baseId": "24047|24048|143220|143221|171115|217183|217184|217185|217186|217187|217188|217247|217248|217249|217250|217251|217252|217253|217254|361695|361696|426523|426524|426525|426526|426527|426528|426529|426530|426531|426532|426533|426534", + "upstreamId": "24047|24048|143220|143221|171115|217183|217184|217185|217186|217187|217188|217247|217248|217249|217250|217251|217252|217253|217254|361695|361696|426523|426524|426525|426526|426527|426528|426529|426530|426531|426532|426533|426534", "text": "Congenital heart disease" }, { - "baseId": "24053|24059", + "upstreamId": "24053|24059", "text": "Atrioventricular septal defect, somatic" }, { - "baseId": "24060|24061|24062|24063|24064|24065|24066|24067|24068|190536|195372|264501|264513|266822|307559|307562|307571|307572|307573|307574|307576|307577|311792|311793|311796|311798|311805|311809|311810|311823|311824|311832|311835|317388|317389|317393|317394|317396|317408|317860|317862|317863|317872|317873|444422|502756|502885|583104|723452|767274|767276|775535|901490|901491|901492|901493|901494|901495|901496|901497|901498|901499|901500|901501|901502|901503|901504|901505|901506|901507|901508|901509|901510|901511|901512|901513|901514|901515|901516", + "upstreamId": "24060|24061|24062|24063|24064|24065|24066|24067|24068|190536|195372|264501|264513|266822|307559|307562|307571|307572|307573|307574|307576|307577|311792|311793|311796|311798|311805|311809|311810|311823|311824|311832|311835|317388|317389|317393|317394|317396|317408|317860|317862|317863|317872|317873|444422|502756|502885|583104|723452|767274|767276|775535|901490|901491|901492|901493|901494|901495|901496|901497|901498|901499|901500|901501|901502|901503|901504|901505|901506|901507|901508|901509|901510|901511|901512|901513|901514|901515|901516", "text": "Non-acquired combined pituitary hormone deficiency with spine abnormalities" }, { - "baseId": "24069|24070|24071|24072|24073|39053|39058|39063|39064|53503|457788|536163|858639|920249", + "upstreamId": "24069|24070|24071|24072|24073|39053|39058|39063|39064|53503|457788|536163|858639|920249", "text": "Atrial septal defect 2" }, { - "baseId": "24073|360984", + "upstreamId": "24073|360984", "text": "Tricuspid regurgitation" }, { - "baseId": "24073|48909|49142|181461|188524|485762|980660", + "upstreamId": "24073|48909|49142|181461|188524|485762|980660", "text": "Pulmonic stenosis (disease)" }, { - "baseId": "24073", + "upstreamId": "24073", "text": "Pulmonary valve atresia" }, { - "baseId": "24073|39054|39055|39058|39058|39063|53500|53502|53503|174532|221750|240222|240223|240224|240225|240226|240227|240228|258522|364058|395870|395874|395879|395882|395885|396124|396130|396131|396134|396261|396266|396273|396274|396275|396548|421649|457121|457150|457160|457163|457170|457746|457748|457753|457776|457777|457784|457787|457788|457788|457791|457794|457797|458150|458158|458160|458163|458165|509989|509991|522966|523164|523221|523224|523236|523251|523434|523445|523446|523588|523593|536163|561900|561904|561906|562338|564580|564582|564584|564591|567329|636544|636545|636546|636547|636548|636549|636550|636551|636552|636553|636554|636555|636556|636557|636558|636559|651839|683967|683970|683971|687170|687171|689898|689899|692341|700360|722808|819936|819937|819938|834044|834045|834046|834047|834048|834049|834050|834051|834052|834053|834054|834055|834056|834057|834058|834059|834060|834061|834062|834063|834064|834065|834066|852110|924983|924984|924985|924986|924987|934066|934067|934068|934069|934070|945824|945825|945826|955275|955276|955277|955278|955279|955280", + "upstreamId": "24073|39054|39055|39058|39058|39063|53500|53502|53503|174532|221750|240222|240223|240224|240225|240226|240227|240228|258522|364058|395870|395874|395879|395882|395885|396124|396130|396131|396134|396261|396266|396273|396274|396275|396548|421649|457121|457150|457160|457163|457170|457746|457748|457753|457776|457777|457784|457787|457788|457788|457791|457794|457797|458150|458158|458160|458163|458165|509989|509991|522966|523164|523221|523224|523236|523251|523434|523445|523446|523588|523593|536163|561900|561904|561906|562338|564580|564582|564584|564591|567329|636544|636545|636546|636547|636548|636549|636550|636551|636552|636553|636554|636555|636556|636557|636558|636559|651839|683967|683970|683971|687170|687171|689898|689899|692341|700360|722808|819936|819937|819938|834044|834045|834046|834047|834048|834049|834050|834051|834052|834053|834054|834055|834056|834057|834058|834059|834060|834061|834062|834063|834064|834065|834066|852110|924983|924984|924985|924986|924987|934066|934067|934068|934069|934070|945824|945825|945826|955275|955276|955277|955278|955279|955280", "text": "Atrioventricular septal defect 4" }, { - "baseId": "24074|24077", + "upstreamId": "24074|24077", "text": "Epilepsy, juvenile myoclonic 8" }, { - "baseId": "24074|24075|24076|24077|24077|24078|106501|106502|106503|106504|214419|214420|214421|214422|214423|214424|214425|214426|214427|214428|214429|214430|214431|214432|214433|214434|214435|214436|214437|214438|214439|214440|214441|214442|214443|214444|214445|214446|214447|214448|801547", + "upstreamId": "24074|24075|24076|24077|24077|24078|106501|106502|106503|106504|214419|214420|214421|214422|214423|214424|214425|214426|214427|214428|214429|214430|214431|214432|214433|214434|214435|214436|214437|214438|214439|214440|214441|214442|214443|214444|214445|214446|214447|214448|801547", "text": "Leukoencephalopathy with ataxia" }, { - "baseId": "24075|24077|24077|24078|214448|589827", + "upstreamId": "24075|24077|24077|24078|214448|589827", "text": "Epilepsy with grand mal seizures on awakening" }, { - "baseId": "24076", + "upstreamId": "24076", "text": "Epilepsy, juvenile absence 2" }, { - "baseId": "24077|414926|434792|434793|434794|434795|434796|550235|550239", + "upstreamId": "24077|414926|434792|434793|434794|434795|434796|550235|550239", "text": "Hyperaldosteronism, familial, type II" }, { - "baseId": "24079|24080|39051|39052|99488|99489|99491|99491|99492|99493|99494|99495|99496|99496|99497|99499|99501|99503|99503|99504|99506|99507|135263|135264|135265|135266|135267|135268|135269|135270|135271|135273|142243|142245|142247|142248|142249|142250|142251|142252|142253|142256|142258|142259|142260|176951|177082|177214|177214|177345|190784|190785|190787|191000|191001|191649|192289|192291|192291|195620|201644|201646|201649|201649|201650|201652|201653|201655|201655|201657|201659|201660|201662|201663|201664|201669|201671|201674|201675|201675|201677|201678|201678|201686|201686|201687|201688|201689|201691|201691|201692|201695|201698|201703|201704|201706|201707|201708|201709|201710|201711|201712|201713|201715|201716|201717|201719|201720|201720|201721|201722|207002|207003|207007|207008|207009|225829|238960|238961|266829|266974|267244|271901|286721|286733|286749|286760|286773|286774|286775|286780|286789|286790|286791|286795|286797|286802|286804|286806|286812|287440|287443|287454|287458|287459|287470|287479|287481|287499|287526|287528|287534|287540|287541|287542|287544|287545|287546|287548|287551|287552|287568|289871|289873|289876|289883|289885|289887|289890|289896|289906|289907|289908|289920|289921|289922|289930|289932|289933|289947|289954|290260|290264|290274|290277|290280|290303|290306|290320|290336|290337|290340|290349|290353|290354|290355|290357|290359|290360|290362|290363|290372|359453|366594|366625|366626|366819|366841|366852|366856|366857|366867|366915|367595|367660|367674|367715|367722|393023|393025|393028|393061|393063|393218|393408|393417|405989|414890|421398|425497|425498|425499|428074|440720|443271|443278|448593|451360|451366|451367|451520|451521|451525|451530|451533|451687|451691|451692|451694|451700|451705|451707|451709|451710|451713|451715|495430|495430|499832|500075|500084|500205|500221|500291|511023|513413|516220|516232|516243|516247|516248|518484|518486|518489|518493|518494|518496|518497|518499|518499|518500|518501|518503|518551|518554|518557|518561|518618|518619|518622|518628|538351|550862|552066|557454|557511|558239|558241|558243|558612|558614|558616|558618|558620|559158|559160|560842|560844|560846|560858|560859|560865|560866|560867|561829|561833|561834|561841|561846|579038|579047|579075|586566|614247|630370|630371|630372|630373|630374|630375|630376|630377|630378|630379|630380|630381|630382|630383|630384|630385|630386|630387|630388|630389|630390|630391|630392|630393|630394|630395|630396|630397|650806|650814|650875|650941|651000|659199|683504|686220|686224|686225|691184|695148|708306|719902|719903|747692|747695|759142|763349|763351|763352|763356|781397|781398|781403|790282|819257|819258|819259|819260|819261|819262|826798|826799|826800|826801|826802|826803|826804|826805|826806|826807|826808|826809|826810|826811|826812|826813|826814|826815|826816|826817|826818|826819|826820|826821|826822|826823|826824|826825|826826|826827|826828|826829|826830|826831|826832|826833|826834|826835|826836|826837|826838|826839|826840|851196|851198|851200|851202|885171|885172|885173|885174|885175|885176|885177|885178|885179|885180|885181|885182|885183|885184|885185|885186|885187|885188|885189|885190|885191|885192|885193|885194|885195|885196|885197|885198|885199|885200|885201|885202|885203|885204|885205|885206|885207|885208|885209|885210|885211|885212|885213|885214|885215|885216|885217|885218|885219|885220|885221|885222|885223|885224|918775|918776|918777|922870|922871|922872|922873|922874|922875|922876|922877|922878|922879|922880|922881|922882|922883|922884|931519|931520|931521|931522|931523|931524|931525|931526|931527|931528|931529|943036|943037|943038|943039|943040|943041|943042|943043|943044|953142|953143|953144|953145|953146|953147|953148|953149|964647", + "upstreamId": "24079|24080|39051|39052|99488|99489|99491|99491|99492|99493|99494|99495|99496|99496|99497|99499|99501|99503|99503|99504|99506|99507|135263|135264|135265|135266|135267|135268|135269|135270|135271|135273|142243|142245|142247|142248|142249|142250|142251|142252|142253|142256|142258|142259|142260|176951|177082|177214|177214|177345|190784|190785|190787|191000|191001|191649|192289|192291|192291|195620|201644|201646|201649|201649|201650|201652|201653|201655|201655|201657|201659|201660|201662|201663|201664|201669|201671|201674|201675|201675|201677|201678|201678|201686|201686|201687|201688|201689|201691|201691|201692|201695|201698|201703|201704|201706|201707|201708|201709|201710|201711|201712|201713|201715|201716|201717|201719|201720|201720|201721|201722|207002|207003|207007|207008|207009|225829|238960|238961|266829|266974|267244|271901|286721|286733|286749|286760|286773|286774|286775|286780|286789|286790|286791|286795|286797|286802|286804|286806|286812|287440|287443|287454|287458|287459|287470|287479|287481|287499|287526|287528|287534|287540|287541|287542|287544|287545|287546|287548|287551|287552|287568|289871|289873|289876|289883|289885|289887|289890|289896|289906|289907|289908|289920|289921|289922|289930|289932|289933|289947|289954|290260|290264|290274|290277|290280|290303|290306|290320|290336|290337|290340|290349|290353|290354|290355|290357|290359|290360|290362|290363|290372|359453|366594|366625|366626|366819|366841|366852|366856|366857|366867|366915|367595|367660|367674|367715|367722|393023|393025|393028|393061|393063|393218|393408|393417|405989|414890|421398|425497|425498|425499|428074|440720|443271|443278|448593|451360|451366|451367|451520|451521|451525|451530|451533|451687|451691|451692|451694|451700|451705|451707|451709|451710|451713|451715|495430|495430|499832|500075|500084|500205|500221|500291|511023|513413|516220|516232|516243|516247|516248|518484|518486|518489|518493|518494|518496|518497|518499|518499|518500|518501|518503|518551|518554|518557|518561|518618|518619|518622|518628|538351|550862|552066|557454|557511|558239|558241|558243|558612|558614|558616|558618|558620|559158|559160|560842|560844|560846|560858|560859|560865|560866|560867|561829|561833|561834|561841|561846|579038|579047|579075|586566|614247|630370|630371|630372|630373|630374|630375|630376|630377|630378|630379|630380|630381|630382|630383|630384|630385|630386|630387|630388|630389|630390|630391|630392|630393|630394|630395|630396|630397|650806|650814|650875|650941|651000|659199|683504|686220|686224|686225|691184|695148|708306|719902|719903|747692|747695|759142|763349|763351|763352|763356|781397|781398|781403|790282|819257|819258|819259|819260|819261|819262|826798|826799|826800|826801|826802|826803|826804|826805|826806|826807|826808|826809|826810|826811|826812|826813|826814|826815|826816|826817|826818|826819|826820|826821|826822|826823|826824|826825|826826|826827|826828|826829|826830|826831|826832|826833|826834|826835|826836|826837|826838|826839|826840|851196|851198|851200|851202|885171|885172|885173|885174|885175|885176|885177|885178|885179|885180|885181|885182|885183|885184|885185|885186|885187|885188|885189|885190|885191|885192|885193|885194|885195|885196|885197|885198|885199|885200|885201|885202|885203|885204|885205|885206|885207|885208|885209|885210|885211|885212|885213|885214|885215|885216|885217|885218|885219|885220|885221|885222|885223|885224|918775|918776|918777|922870|922871|922872|922873|922874|922875|922876|922877|922878|922879|922880|922881|922882|922883|922884|931519|931520|931521|931522|931523|931524|931525|931526|931527|931528|931529|943036|943037|943038|943039|943040|943041|943042|943043|943044|953142|953143|953144|953145|953146|953147|953148|953149|964647", "text": "Pitt-Hopkins-like syndrome 2" }, { - "baseId": "24082|24085|24086|39038|39039|39040|153737|165689|165690|170197|246906|246906|283683|283685|283690|283692|283696|283702|283703|283703|283706|283706|283707|283707|283708|283708|284355|284356|284358|284361|284370|284378|284378|284382|284382|284383|284385|284386|286348|286350|286354|286356|286358|286359|286359|286360|286362|286366|286368|286368|286371|286372|286372|286373|286373|286374|286374|286378|286379|286380|286703|286705|286708|286711|286712|286714|286714|286717|286717|286719|286719|286724|286729|286729|286732|286732|286734|286734|286741|286742|286750|286751|286752|405526|414861|450165|450165|450340|450469|517473|517475|517560|517561|517596|517597|517597|517751|517762|557800|557802|559021|559510|559512|620045|629241|629242|629243|629244|629245|629246|629247|629248|629249|629250|629251|650934|650935|719485|743858|743869|762743|778989|781101|815887|819094|825519|825520|825521|825522|825523|825524|825525|825526|825527|825528|825529|825530|825531|825532|825533|825534|850870|883090|883091|883092|883093|883094|883095|883096|883097|883098|883099|883100|883101|883102|883103|883104|883105|883106|883107|883108|883109|883110|883111|883112|883113|883114|883115|883116|883117|883118|883119|883120|887226|887227|922499|922500|922501|931065|942534|942535|942536|952869|952870|952871|952872|952873|959617|960460", + "upstreamId": "24082|24085|24086|39038|39039|39040|153737|165689|165690|170197|246906|246906|283683|283685|283690|283692|283696|283702|283703|283703|283706|283706|283707|283707|283708|283708|284355|284356|284358|284361|284370|284378|284378|284382|284382|284383|284385|284386|286348|286350|286354|286356|286358|286359|286359|286360|286362|286366|286368|286368|286371|286372|286372|286373|286373|286374|286374|286378|286379|286380|286703|286705|286708|286711|286712|286714|286714|286717|286717|286719|286719|286724|286729|286729|286732|286732|286734|286734|286741|286742|286750|286751|286752|405526|414861|450165|450165|450340|450469|517473|517475|517560|517561|517596|517597|517597|517751|517762|557800|557802|559021|559510|559512|620045|629241|629242|629243|629244|629245|629246|629247|629248|629249|629250|629251|650934|650935|719485|743858|743869|762743|778989|781101|815887|819094|825519|825520|825521|825522|825523|825524|825525|825526|825527|825528|825529|825530|825531|825532|825533|825534|850870|883090|883091|883092|883093|883094|883095|883096|883097|883098|883099|883100|883101|883102|883103|883104|883105|883106|883107|883108|883109|883110|883111|883112|883113|883114|883115|883116|883117|883118|883119|883120|887226|887227|922499|922500|922501|931065|942534|942535|942536|952869|952870|952871|952872|952873|959617|960460", "text": "Immunodeficiency 31a" }, { - "baseId": "24083|24084|24087|39037|39038|39039|39040|153737|170197|246906|269730|283703|283706|283707|283708|284378|284382|286359|286368|286372|286372|286373|286374|286714|286717|286719|286729|286732|286734|405526|414861|414861|450165|450340|450469|517473|517475|517560|517561|517596|517597|517751|517762|557800|557802|559021|559510|559512|629241|629242|629243|629244|629245|629246|629247|629248|629249|629250|629251|650934|650935|743858|743869|762743|778989|781101|790141|815887|819094|825519|825520|825521|825522|825523|825524|825525|825526|825527|825528|825529|825530|825531|825532|825533|825534|850870|918724|922499|922500|922501|931065|942534|942535|942536|952869|952870|952871|952872|952873|959617|960460", + "upstreamId": "24083|24084|24087|39037|39038|39039|39040|153737|170197|246906|269730|283703|283706|283707|283708|284378|284382|286359|286368|286372|286372|286373|286374|286714|286717|286719|286729|286732|286734|405526|414861|414861|450165|450340|450469|517473|517475|517560|517561|517596|517597|517751|517762|557800|557802|559021|559510|559512|629241|629242|629243|629244|629245|629246|629247|629248|629249|629250|629251|650934|650935|743858|743869|762743|778989|781101|790141|815887|819094|825519|825520|825521|825522|825523|825524|825525|825526|825527|825528|825529|825530|825531|825532|825533|825534|850870|918724|922499|922500|922501|931065|942534|942535|942536|952869|952870|952871|952872|952873|959617|960460", "text": "Mycobacterial and viral infections, susceptibility to, autosomal recessive" }, { - "baseId": "24088|24089|24090|99934|99935|99936|99938|99940|99941|99942|99943|99944|99949|134737|134738|134739|134740|134741|134742|134743|172245|190387|190801|191207|191208|191209|191368|191894|194900|195308|195639|196234|207981|207982|226475|247082|254625|254627|254629|254630|254631|268241|270576|271650|271654|272143|317998|318002|318003|318016|325918|325926|332158|333611|333612|333649|333652|360105|372450|373162|373384|375337|408717|426004|426006|429442|429443|445055|461788|462329|462334|462339|462586|462591|462597|462599|462604|462605|462612|462613|462617|463070|463073|463075|463192|463197|463201|463204|463206|490984|504972|513579|527260|527270|527272|527274|527276|527280|527284|527285|527289|527290|527515|527517|527521|527523|527526|527527|527531|527537|527548|527549|527550|527793|527797|527807|527809|527811|527812|527815|565607|565608|565614|565619|565620|565624|565626|566917|566931|566932|566948|566950|566951|566956|566959|566960|568122|568126|568129|568131|568133|571910|571920|571924|571930|571933|578501|620447|626218|641258|641259|641260|641261|641262|641263|641264|641265|641266|641267|641268|641269|641270|641271|641272|641273|641274|641275|641276|641277|641278|652252|652713|672088|688031|693240|693241|693244|693245|695573|695575|713630|760023|769218|776071|778026|778223|784430|784431|820508|840080|840081|840082|840083|840084|840085|840086|840087|840088|840089|840090|840091|840092|840093|840094|840095|840096|840097|840098|840099|840100|840101|840102|840103|840104|840105|852493|926678|926679|926680|926681|936179|936180|936181|936182|936183|936184|936185|936186|936187|936188|940270|940271|940272|948089|948090|948091|948092|948093|948094|948095|948096|948097|948098|948099|956902|956903|956904|960047|960048|961306", + "upstreamId": "24088|24089|24090|99934|99935|99936|99938|99940|99941|99942|99943|99944|99949|134737|134738|134739|134740|134741|134742|134743|172245|190387|190801|191207|191208|191209|191368|191894|194900|195308|195639|196234|207981|207982|226475|247082|254625|254627|254629|254630|254631|268241|270576|271650|271654|272143|317998|318002|318003|318016|325918|325926|332158|333611|333612|333649|333652|360105|372450|373162|373384|375337|408717|426004|426006|429442|429443|445055|461788|462329|462334|462339|462586|462591|462597|462599|462604|462605|462612|462613|462617|463070|463073|463075|463192|463197|463201|463204|463206|490984|504972|513579|527260|527270|527272|527274|527276|527280|527284|527285|527289|527290|527515|527517|527521|527523|527526|527527|527531|527537|527548|527549|527550|527793|527797|527807|527809|527811|527812|527815|565607|565608|565614|565619|565620|565624|565626|566917|566931|566932|566948|566950|566951|566956|566959|566960|568122|568126|568129|568131|568133|571910|571920|571924|571930|571933|578501|620447|626218|641258|641259|641260|641261|641262|641263|641264|641265|641266|641267|641268|641269|641270|641271|641272|641273|641274|641275|641276|641277|641278|652252|652713|672088|688031|693240|693241|693244|693245|695573|695575|713630|760023|769218|776071|778026|778223|784430|784431|820508|840080|840081|840082|840083|840084|840085|840086|840087|840088|840089|840090|840091|840092|840093|840094|840095|840096|840097|840098|840099|840100|840101|840102|840103|840104|840105|852493|926678|926679|926680|926681|936179|936180|936181|936182|936183|936184|936185|936186|936187|936188|940270|940271|940272|948089|948090|948091|948092|948093|948094|948095|948096|948097|948098|948099|956902|956903|956904|960047|960048|961306", "text": "Muscular dystrophy, congenital, due to integrin alpha-7 deficiency" }, { - "baseId": "24093|24598|24610|24618|33220", + "upstreamId": "24093|24598|24610|24618|33220", "text": "Parkinson disease, mitochondrial" }, { - "baseId": "24093|135149|264825|608862", + "upstreamId": "24093|135149|264825|608862", "text": "Mitochondrial complex 1 deficiency, nuclear type 7" }, { - "baseId": "24095|24096|24097|24098|24099|24628|39034|39035|39036|133969|140175|140176|140177|204412|211400|211402|211404|211406|211407|211408|253581|308856|313494|313499|319282|319291|319293|319298|319923|373084|438413|503456|524673|524908|525195|525198|538409|538410|611362|638393|652055|767501|767502|820168|836280|836281|836282|902461|902462|902463|902464|902465|903441|903442|925634|934826|934827|940157|946680|955899|961798", + "upstreamId": "24095|24096|24097|24098|24099|24628|39034|39035|39036|133969|140175|140176|140177|204412|211400|211402|211404|211406|211407|211408|253581|308856|313494|313499|319282|319291|319293|319298|319923|373084|438413|503456|524673|524908|525195|525198|538409|538410|611362|638393|652055|767501|767502|820168|836280|836281|836282|902461|902462|902463|902464|902465|903441|903442|925634|934826|934827|940157|946680|955899|961798", "text": "3-Methylglutaconic aciduria type 1" }, { - "baseId": "24100|24101|24102|24103|24104|24105|24106|24107|24108|24109|24110|76436|76547|76548|76549|76550|76551|76552|76553|76554|76555|76556|76557|76559|76560|76561|76562|76563|76564|76565|76566|76567|76569|76570|99873|99874|99880|140730|186839|191998|200218|200219|200220|200221|267167|268011|271352|271750|358051|358052|358053|358054|358055|358056|358057|358058|358059|358060|358061|358062|358063|358064|371654|372369|372371|372374|372375|372388|372616|374261|374262|374266|433458|461435|461592|461594|461935|462260|503413|503748|503753|503987|504343|504352|504358|526994|526997|546287|546289|546297|546298|546300|546302|546534|546536|546538|546671|546672|546676|546929|546933|546942|546945|546947|546949|564873|564875|566120|609810|623178|640392|640393|640394|640395|640396|693102|693103|693104|693105|693106|695540|701949|701951|713110|738244|738246|738247|752925|752926|752927|768709|768711|768712|768714|768715|768716|768717|768718|768720|784161|784162|791166|838923|838924|838925|838926|838927|838928|838929|838930|838931|838932|851913|919388|919389|919390|935757|935758|935759|940235|941013|947640|947641|956640|956641|956642|956643|956644|956645|956646|956647|956648|956649", + "upstreamId": "24100|24101|24102|24103|24104|24105|24106|24107|24108|24109|24110|76436|76547|76548|76549|76550|76551|76552|76553|76554|76555|76556|76557|76559|76560|76561|76562|76563|76564|76565|76566|76567|76569|76570|99873|99874|99880|140730|186839|191998|200218|200219|200220|200221|267167|268011|271352|271750|358051|358052|358053|358054|358055|358056|358057|358058|358059|358060|358061|358062|358063|358064|371654|372369|372371|372374|372375|372388|372616|374261|374262|374266|433458|461435|461592|461594|461935|462260|503413|503748|503753|503987|504343|504352|504358|526994|526997|546287|546289|546297|546298|546300|546302|546534|546536|546538|546671|546672|546676|546929|546933|546942|546945|546947|546949|564873|564875|566120|609810|623178|640392|640393|640394|640395|640396|693102|693103|693104|693105|693106|695540|701949|701951|713110|738244|738246|738247|752925|752926|752927|768709|768711|768712|768714|768715|768716|768717|768718|768720|784161|784162|791166|838923|838924|838925|838926|838927|838928|838929|838930|838931|838932|851913|919388|919389|919390|935757|935758|935759|940235|941013|947640|947641|956640|956641|956642|956643|956644|956645|956646|956647|956648|956649", "text": "Carnitine palmitoyltransferase 1A deficiency" }, { - "baseId": "24111|24112|423255|423257|788912", + "upstreamId": "24111|24112|423255|423257|788912", "text": "Tricho-dento-osseous syndrome" }, { - "baseId": "24112|190465|193568|256264|256265|274094|274987|329075|329080|329082|329084|329085|329087|329089|329093|329097|339182|339188|339190|339197|339200|339203|339205|339209|339212|339220|339227|339229|345103|345108|345121|345123|345124|346471|346474|346477|346485|346487|346489|346494|361021|423255|423257|877887|877888|877889|877890|877891|877892|877893|877894|877895|877896|877897|877898|877899|877900|877901|877902|877903|877904|877905|877906|877907|877908|877909|877910|880546", + "upstreamId": "24112|190465|193568|256264|256265|274094|274987|329075|329080|329082|329084|329085|329087|329089|329093|329097|339182|339188|339190|339197|339200|339203|339205|339209|339212|339220|339227|339229|345103|345108|345121|345123|345124|346471|346474|346477|346485|346487|346489|346494|361021|423255|423257|877887|877888|877889|877890|877891|877892|877893|877894|877895|877896|877897|877898|877899|877900|877901|877902|877903|877904|877905|877906|877907|877908|877909|877910|880546", "text": "Amelogenesis imperfecta, type IV" }, { - "baseId": "24113|24114|24115|24116|24117|317568|317569|317570|317578|317582|317585|317588|317589|317590|317600|317602|325394|325395|325396|325400|325401|325404|325407|325414|325415|325416|325426|325437|325438|325439|325445|325455|325456|331638|331654|331663|331667|331670|331671|331673|331678|331680|331681|331682|331691|333137|333138|333144|333148|333150|333156|333157|333164|333165|333169|333172|333175|333177|353247|353248|626216|769181|788868|870035|870036|870037|870038|870039|870040|870041|870042|870043|870044|870045|870046|870047|870048|870049|870050|870051|870052|870053|870054|870055|870056|870057|870058|870059|872253|872254|872255|872256|872257", + "upstreamId": "24113|24114|24115|24116|24117|317568|317569|317570|317578|317582|317585|317588|317589|317590|317600|317602|325394|325395|325396|325400|325401|325404|325407|325414|325415|325416|325426|325437|325438|325439|325445|325455|325456|331638|331654|331663|331667|331670|331671|331673|331678|331680|331681|331682|331691|333137|333138|333144|333148|333150|333156|333157|333164|333165|333169|333172|333175|333177|353247|353248|626216|769181|788868|870035|870036|870037|870038|870039|870040|870041|870042|870043|870044|870045|870046|870047|870048|870049|870050|870051|870052|870053|870054|870055|870056|870057|870058|870059|872253|872254|872255|872256|872257", "text": "Anemia, hypochromic microcytic, with iron overload 1" }, { - "baseId": "24118|24119|613440|613441|798461", + "upstreamId": "24118|24119|613440|613441|798461", "text": "Cytosolic phospholipase-A2 alpha deficiency associated bleeding disorder" }, { - "baseId": "24123|24124|101109|101110|101111|101111|101111|101112|101112|101113|101113|101115|101115|101116|101116|101117|101117|101118|101118|101119|101119|101120|101120|101121|101121|101122|101122|101123|101123|101123|101124|101125|101125|101126|101126|101126|101127|101128|101128|101129|101129|101130|101131|101133|101133|101134|101136|101136|101138|101140|101140|135556|135557|135558|135559|135560|135560|135561|135562|135562|135563|135564|135564|135565|135566|135567|135567|135568|135568|135569|135569|135570|135570|135571|135571|135572|135572|135573|135573|135574|135574|135575|135575|135576|135576|135577|135577|135578|135579|135579|135580|135580|135581|135581|135585|135585|135586|135587|135587|135588|135589|135590|135590|135591|135591|135592|135592|135593|135593|135594|135594|142613|176982|176982|177113|177114|177244|177245|177245|177245|177246|177246|177376|177376|177377|177377|178007|178007|178008|190463|190840|190841|191225|191382|191382|191681|191681|191908|192016|192016|192763|192763|192843|192843|192843|192918|192918|193188|193188|193790|194028|194062|194064|194118|194119|194600|194600|194601|194627|194627|194627|194646|194646|195087|195130|195130|195130|195143|195143|195165|195165|195166|195173|195515|195515|195687|195687|205000|205000|205000|207437|207439|207440|207440|207441|207442|207443|207443|207445|207449|207451|207451|207452|207453|207454|207454|207455|207455|207456|207457|207458|207458|227451|237211|237211|237211|265480|265480|265779|265779|265869|265869|266388|269138|269492|269758|271076|271328|271328|271362|271384|271384|271384|271639|272072|272222|273754|275081|275081|301324|301325|301330|301330|301339|301339|301340|301346|301346|301352|301353|301353|301355|301355|301360|301360|301362|301362|301364|301364|301369|301372|301374|304504|304512|304513|304513|304513|304514|304524|304524|304532|304534|304534|304540|309106|309109|309111|309111|309114|309115|309115|309116|309116|309118|309118|309119|309119|309143|309144|309144|309150|309150|309156|309164|309165|309166|309177|309177|309269|309275|309276|309277|309278|309278|309288|309292|309293|309293|309300|309303|309303|309307|309315|309315|309316|309325|309325|309354|309403|368815|368816|368816|368818|368819|368819|368820|368820|369398|369399|426667|426667|428647|428648|428649|428651|441027|441029|441030|441031|444034|444034|444034|455889|455890|455893|455897|455905|455911|455913|455914|455919|455922|455928|455932|455935|455941|455941|455949|455949|455949|455950|455956|455960|455963|455968|456191|456193|456195|456198|456200|456206|456207|456209|456210|456210|456213|456215|456509|456516|456518|456520|456522|456523|456527|456868|456874|456877|456879|456881|456885|456888|456890|456892|456904|456908|456910|456912|456912|456913|456914|456915|456931|488628|488628|488848|489416|489507|489661|489661|489735|489914|492799|492833|492833|493077|493423|501502|501834|501852|501856|502130|508820|521909|521914|521917|521919|521922|521924|521932|521935|521938|521940|521942|521942|521942|521944|522270|522276|522276|522285|522287|522290|522293|522295|522297|522300|522320|522321|522323|522324|522327|522332|522335|522337|522342|522346|522349|522352|522352|522356|522356|522677|522679|522685|522689|522692|522694|522698|522698|522698|522701|522706|522708|536722|537514|537514|538390|561124|561131|561137|561145|561147|561148|561149|561152|561153|561161|561172|561173|561177|561179|561182|563906|563911|563912|563914|563917|563918|563921|563925|563928|566188|566198|566200|566214|566216|566216|566228|566231|566237|566250|566254|566255|576123|576929|576930|584429|585958|587188|612768|635340|635341|635342|635343|635344|635345|635346|635347|635348|635349|635350|635351|635352|635353|635354|635355|635356|635357|635358|635359|635359|635360|635361|635362|635363|635364|635364|635365|635366|635367|635368|635369|635370|635371|635372|635373|635374|635375|635376|635377|635378|635379|635380|635380|635381|635381|635382|635383|635384|635385|635386|635387|635388|651624|692085|692086|692087|699719|699721|710674|710676|710678|722217|722218|722219|722220|722220|722221|735851|735852|750312|750313|750314|750315|759617|759689|765937|765940|765944|765945|765948|765949|765959|775233|775240|775245|777569|777600|777667|777668|777669|779295|782699|782701|782702|782705|782707|782709|787605|788810|793194|795944|795944|819771|832631|832632|832633|832634|832635|832636|832637|832638|832639|832640|832641|832642|832642|832643|832644|832645|832646|832647|832648|832649|832650|832651|832652|832653|832654|832655|832656|832657|832658|832659|832660|832661|832662|832663|832664|832665|832666|832667|832668|832669|832670|832671|832672|832673|832674|832675|832676|832677|832677|832678|832679|832680|832681|832682|832683|832684|832685|832686|832687|832688|832689|832690|832691|832692|832693|832694|832695|832696|832697|832698|832699|832700|832701|832702|832703|832704|832705|832706|832707|832708|832709|832710|832711|832712|832712|832713|832714|832715|832716|832717|832718|832719|832720|832721|832722|832723|832724|832725|832726|832727|832728|832729|832730|832731|832732|832733|832734|832735|832736|832737|832738|832739|832740|852048|852312|897085|897086|897087|897088|897089|897090|897091|897092|897093|897094|897095|897096|897097|897097|897098|897099|897100|897101|897102|897103|897104|897105|897106|897107|897108|897109|897110|897111|897112|897113|897114|897115|897116|897117|897118|897119|897120|897121|897122|897123|897124|897125|897126|897127|897128|897129|897130|897131|897132|900288|900289|900290|900291|900292|900293|919065|924530|924531|924532|924533|924534|924535|924536|924537|924538|924539|924540|924541|924542|924543|924544|924545|924546|924547|924548|924549|924550|924550|924551|924552|924553|924554|924555|924556|924557|924558|924559|933548|933549|933550|933551|933552|933553|933554|933555|933556|933557|933558|933559|933560|933561|933562|933563|933564|933565|933566|933567|933568|933569|933570|933571|933572|933573|933574|933575|933576|933577|933578|940054|940863|940864|940865|945268|945269|945270|945271|945272|945273|945274|945275|945276|945277|945278|945279|945280|945281|945282|945283|945284|945285|945286|945287|945288|945289|945290|945291|945292|945293|945294|954946|954947|954948|954949|954950|954951|954952|954953|954954|954955|954956|954957|954958|954959|954960|954961|954962|954963|954964|954965|954966|954967|954968|954969|954970|959822|960616", + "upstreamId": "24123|24124|101109|101110|101111|101111|101111|101112|101112|101113|101113|101115|101115|101116|101116|101117|101117|101118|101118|101119|101119|101120|101120|101121|101121|101122|101122|101123|101123|101123|101124|101125|101125|101126|101126|101126|101127|101128|101128|101129|101129|101130|101131|101133|101133|101134|101136|101136|101138|101140|101140|135556|135557|135558|135559|135560|135560|135561|135562|135562|135563|135564|135564|135565|135566|135567|135567|135568|135568|135569|135569|135570|135570|135571|135571|135572|135572|135573|135573|135574|135574|135575|135575|135576|135576|135577|135577|135578|135579|135579|135580|135580|135581|135581|135585|135585|135586|135587|135587|135588|135589|135590|135590|135591|135591|135592|135592|135593|135593|135594|135594|142613|176982|176982|177113|177114|177244|177245|177245|177245|177246|177246|177376|177376|177377|177377|178007|178007|178008|190463|190840|190841|191225|191382|191382|191681|191681|191908|192016|192016|192763|192763|192843|192843|192843|192918|192918|193188|193188|193790|194028|194062|194064|194118|194119|194600|194600|194601|194627|194627|194627|194646|194646|195087|195130|195130|195130|195143|195143|195165|195165|195166|195173|195515|195515|195687|195687|205000|205000|205000|207437|207439|207440|207440|207441|207442|207443|207443|207445|207449|207451|207451|207452|207453|207454|207454|207455|207455|207456|207457|207458|207458|227451|237211|237211|237211|265480|265480|265779|265779|265869|265869|266388|269138|269492|269758|271076|271328|271328|271362|271384|271384|271384|271639|272072|272222|273754|275081|275081|301324|301325|301330|301330|301339|301339|301340|301346|301346|301352|301353|301353|301355|301355|301360|301360|301362|301362|301364|301364|301369|301372|301374|304504|304512|304513|304513|304513|304514|304524|304524|304532|304534|304534|304540|309106|309109|309111|309111|309114|309115|309115|309116|309116|309118|309118|309119|309119|309143|309144|309144|309150|309150|309156|309164|309165|309166|309177|309177|309269|309275|309276|309277|309278|309278|309288|309292|309293|309293|309300|309303|309303|309307|309315|309315|309316|309325|309325|309354|309403|368815|368816|368816|368818|368819|368819|368820|368820|369398|369399|426667|426667|428647|428648|428649|428651|441027|441029|441030|441031|444034|444034|444034|455889|455890|455893|455897|455905|455911|455913|455914|455919|455922|455928|455932|455935|455941|455941|455949|455949|455949|455950|455956|455960|455963|455968|456191|456193|456195|456198|456200|456206|456207|456209|456210|456210|456213|456215|456509|456516|456518|456520|456522|456523|456527|456868|456874|456877|456879|456881|456885|456888|456890|456892|456904|456908|456910|456912|456912|456913|456914|456915|456931|488628|488628|488848|489416|489507|489661|489661|489735|489914|492799|492833|492833|493077|493423|501502|501834|501852|501856|502130|508820|521909|521914|521917|521919|521922|521924|521932|521935|521938|521940|521942|521942|521942|521944|522270|522276|522276|522285|522287|522290|522293|522295|522297|522300|522320|522321|522323|522324|522327|522332|522335|522337|522342|522346|522349|522352|522352|522356|522356|522677|522679|522685|522689|522692|522694|522698|522698|522698|522701|522706|522708|536722|537514|537514|538390|561124|561131|561137|561145|561147|561148|561149|561152|561153|561161|561172|561173|561177|561179|561182|563906|563911|563912|563914|563917|563918|563921|563925|563928|566188|566198|566200|566214|566216|566216|566228|566231|566237|566250|566254|566255|576123|576929|576930|584429|585958|587188|612768|635340|635341|635342|635343|635344|635345|635346|635347|635348|635349|635350|635351|635352|635353|635354|635355|635356|635357|635358|635359|635359|635360|635361|635362|635363|635364|635364|635365|635366|635367|635368|635369|635370|635371|635372|635373|635374|635375|635376|635377|635378|635379|635380|635380|635381|635381|635382|635383|635384|635385|635386|635387|635388|651624|692085|692086|692087|699719|699721|710674|710676|710678|722217|722218|722219|722220|722220|722221|735851|735852|750312|750313|750314|750315|759617|759689|765937|765940|765944|765945|765948|765949|765959|775233|775240|775245|777569|777600|777667|777668|777669|779295|782699|782701|782702|782705|782707|782709|787605|788810|793194|795944|795944|819771|832631|832632|832633|832634|832635|832636|832637|832638|832639|832640|832641|832642|832642|832643|832644|832645|832646|832647|832648|832649|832650|832651|832652|832653|832654|832655|832656|832657|832658|832659|832660|832661|832662|832663|832664|832665|832666|832667|832668|832669|832670|832671|832672|832673|832674|832675|832676|832677|832677|832678|832679|832680|832681|832682|832683|832684|832685|832686|832687|832688|832689|832690|832691|832692|832693|832694|832695|832696|832697|832698|832699|832700|832701|832702|832703|832704|832705|832706|832707|832708|832709|832710|832711|832712|832712|832713|832714|832715|832716|832717|832718|832719|832720|832721|832722|832723|832724|832725|832726|832727|832728|832729|832730|832731|832732|832733|832734|832735|832736|832737|832738|832739|832740|852048|852312|897085|897086|897087|897088|897089|897090|897091|897092|897093|897094|897095|897096|897097|897097|897098|897099|897100|897101|897102|897103|897104|897105|897106|897107|897108|897109|897110|897111|897112|897113|897114|897115|897116|897117|897118|897119|897120|897121|897122|897123|897124|897125|897126|897127|897128|897129|897130|897131|897132|900288|900289|900290|900291|900292|900293|919065|924530|924531|924532|924533|924534|924535|924536|924537|924538|924539|924540|924541|924542|924543|924544|924545|924546|924547|924548|924549|924550|924550|924551|924552|924553|924554|924555|924556|924557|924558|924559|933548|933549|933550|933551|933552|933553|933554|933555|933556|933557|933558|933559|933560|933561|933562|933563|933564|933565|933566|933567|933568|933569|933570|933571|933572|933573|933574|933575|933576|933577|933578|940054|940863|940864|940865|945268|945269|945270|945271|945272|945273|945274|945275|945276|945277|945278|945279|945280|945281|945282|945283|945284|945285|945286|945287|945288|945289|945290|945291|945292|945293|945294|954946|954947|954948|954949|954950|954951|954952|954953|954954|954955|954956|954957|954958|954959|954960|954961|954962|954963|954964|954965|954966|954967|954968|954969|954970|959822|960616", "text": "Norman-Roberts syndrome" }, { - "baseId": "24125|24127|24129|24130|24133|24134|24135|24136|24138|24139|24140|33488|44267|44269|44273|44278|44279|44281|44282|44282|44285|44288|44289|48069|48070|48071|167529|167530|167532|167533|167534|167535|167536|167537|167539|167540|167543|167544|167545|167546|167550|167551|167553|167554|167555|167557|186811|186812|186813|186814|186815|186816|186816|186817|186818|186819|186820|192808|194041|207841|207844|207848|207849|207850|207851|207852|207853|207853|207854|207857|207858|207859|214504|227344|237314|254064|254068|254069|260796|264418|264506|313388|313389|313393|313399|313403|313405|313413|313414|313416|313419|313421|319492|319496|319498|319499|319504|319505|319511|319514|319516|319517|319522|319523|319524|319528|325627|325629|325632|325633|325634|325635|325636|325642|325643|325644|325650|325651|326668|326673|326677|326678|326698|326700|326703|357931|357932|357933|357934|357935|357936|357937|357938|357939|357940|357941|357942|357943|357944|357945|357946|357947|357948|357949|357950|357951|357952|357953|357954|357955|357956|357957|357958|357959|357960|380248|380249|429197|429198|429199|429199|429200|429202|429204|429205|429207|429208|429208|429209|429210|429211|429214|441404|441408|441414|441417|487472|487507|487507|538421|545843|545852|545855|545859|545860|545867|545874|545879|545886|545888|545899|545907|545908|545922|545924|545926|545932|545934|545935|545937|545939|545942|546145|546147|546152|546155|546156|546158|546162|546163|546166|546168|546172|546182|546183|546185|546190|546191|546196|546197|546198|546200|546203|546205|546207|546208|546209|546211|546212|546213|546215|546216|546218|546221|546230|546232|546245|546251|546259|546272|546275|546276|546279|546285|546288|546291|546293|546296|546301|546306|546309|546311|546313|546319|546326|546326|546330|546341|546345|546348|546350|546464|546465|546468|546471|546473|546477|546482|546485|546488|546493|546495|546497|546499|546501|546503|546505|546507|546511|546517|546522|546524|546528|577180|577181|577184|612091|620396|621346|621349|692972|768328|783925|783933|791118|791119|791120|791121|798639|818721|867614|867615|867616|867617|867618|867619|867620|867621|867622|867623|867624|867625|867626|867627|867628|867629|867630|867631|867632|867633|867634|867635|868624|868625|868626|868627|868628|868629|961866|966053|969253|970930", + "upstreamId": "24125|24127|24129|24130|24133|24134|24135|24136|24138|24139|24140|33488|44267|44269|44273|44278|44279|44281|44282|44282|44285|44288|44289|48069|48070|48071|167529|167530|167532|167533|167534|167535|167536|167537|167539|167540|167543|167544|167545|167546|167550|167551|167553|167554|167555|167557|186811|186812|186813|186814|186815|186816|186816|186817|186818|186819|186820|192808|194041|207841|207844|207848|207849|207850|207851|207852|207853|207853|207854|207857|207858|207859|214504|227344|237314|254064|254068|254069|260796|264418|264506|313388|313389|313393|313399|313403|313405|313413|313414|313416|313419|313421|319492|319496|319498|319499|319504|319505|319511|319514|319516|319517|319522|319523|319524|319528|325627|325629|325632|325633|325634|325635|325636|325642|325643|325644|325650|325651|326668|326673|326677|326678|326698|326700|326703|357931|357932|357933|357934|357935|357936|357937|357938|357939|357940|357941|357942|357943|357944|357945|357946|357947|357948|357949|357950|357951|357952|357953|357954|357955|357956|357957|357958|357959|357960|380248|380249|429197|429198|429199|429199|429200|429202|429204|429205|429207|429208|429208|429209|429210|429211|429214|441404|441408|441414|441417|487472|487507|487507|538421|545843|545852|545855|545859|545860|545867|545874|545879|545886|545888|545899|545907|545908|545922|545924|545926|545932|545934|545935|545937|545939|545942|546145|546147|546152|546155|546156|546158|546162|546163|546166|546168|546172|546182|546183|546185|546190|546191|546196|546197|546198|546200|546203|546205|546207|546208|546209|546211|546212|546213|546215|546216|546218|546221|546230|546232|546245|546251|546259|546272|546275|546276|546279|546285|546288|546291|546293|546296|546301|546306|546309|546311|546313|546319|546326|546326|546330|546341|546345|546348|546350|546464|546465|546468|546471|546473|546477|546482|546485|546488|546493|546495|546497|546499|546501|546503|546505|546507|546511|546517|546522|546524|546528|577180|577181|577184|612091|620396|621346|621349|692972|768328|783925|783933|791118|791119|791120|791121|798639|818721|867614|867615|867616|867617|867618|867619|867620|867621|867622|867623|867624|867625|867626|867627|867628|867629|867630|867631|867632|867633|867634|867635|868624|868625|868626|868627|868628|868629|961866|966053|969253|970930", "text": "Hyperinsulinemic hypoglycemia, familial, 1" }, { - "baseId": "24125|24127|44268|44281|45007|45009|45011|45014|45015|45016|45017|45021|45022|45023|134684|134686|167531|167544|186812|186814|194041|208662|208663|214504|237314|335452|335454|335461|335462|335465|335467|335470|335479|335495|335497|335506|335507|335519|335521|335523|345257|345263|345264|345266|345268|345270|345275|345281|345285|345287|345289|345293|345301|345302|345305|345307|349981|349986|349987|349989|349990|349992|349994|349995|349999|350000|350006|350009|350985|350987|350988|350991|350992|350995|350998|350999|351002|351003|351004|351007|351010|351021|351024|357938|357940|357944|486284|487472|487507|507169|507770|546191|546251|578489|578490|620658|621346|621347|621349|621807|760954|886111|886112|886113|886114|886115|886116|886117|886118|886119|886120|886121|886122|886123|886124|886125|886126|886127|886128|886129|886130|886131|886132|886133|886134|886135|886136|886137|886138|886139|886140|886141|886142|886143|886144|886145|886146|887460|959982|983968", + "upstreamId": "24125|24127|44268|44281|45007|45009|45011|45014|45015|45016|45017|45021|45022|45023|134684|134686|167531|167544|186812|186814|194041|208662|208663|214504|237314|335452|335454|335461|335462|335465|335467|335470|335479|335495|335497|335506|335507|335519|335521|335523|345257|345263|345264|345266|345268|345270|345275|345281|345285|345287|345289|345293|345301|345302|345305|345307|349981|349986|349987|349989|349990|349992|349994|349995|349999|350000|350006|350009|350985|350987|350988|350991|350992|350995|350998|350999|351002|351003|351004|351007|351010|351021|351024|357938|357940|357944|486284|487472|487507|507169|507770|546191|546251|578489|578490|620658|621346|621347|621349|621807|760954|886111|886112|886113|886114|886115|886116|886117|886118|886119|886120|886121|886122|886123|886124|886125|886126|886127|886128|886129|886130|886131|886132|886133|886134|886135|886136|886137|886138|886139|886140|886141|886142|886143|886144|886145|886146|887460|959982|983968", "text": "Familial hyperinsulinism" }, { - "baseId": "24127|24144|24145|44267|44269|44273|44276|44278|44282|167529|167532|167533|167534|167535|167536|167537|167539|167540|167543|167545|167550|167551|167553|167554|167555|186812|186816|186819|192808|207846|207850|207852|207853|207853|207854|227344|254064|254068|254069|313388|313389|313393|313399|313403|313405|313413|313414|313416|313419|313421|319492|319496|319498|319499|319504|319505|319511|319514|319516|319517|319522|319523|319524|319528|325627|325629|325632|325633|325634|325635|325636|325642|325643|325644|325650|325651|326668|326673|326677|326678|326698|326700|326703|380248|380249|429199|429208|429208|441402|441408|487507|545867|546326|546501|577180|620396|692972|768328|783925|783933|867614|867615|867616|867617|867618|867619|867620|867621|867622|867623|867624|867625|867626|867627|867628|867629|867630|867631|867632|867633|867634|867635|868624|868625|868626|868627|868628|868629", + "upstreamId": "24127|24144|24145|44267|44269|44273|44276|44278|44282|167529|167532|167533|167534|167535|167536|167537|167539|167540|167543|167545|167550|167551|167553|167554|167555|186812|186816|186819|192808|207846|207850|207852|207853|207853|207854|227344|254064|254068|254069|313388|313389|313393|313399|313403|313405|313413|313414|313416|313419|313421|319492|319496|319498|319499|319504|319505|319511|319514|319516|319517|319522|319523|319524|319528|325627|325629|325632|325633|325634|325635|325636|325642|325643|325644|325650|325651|326668|326673|326677|326678|326698|326700|326703|380248|380249|429199|429208|429208|441402|441408|487507|545867|546326|546501|577180|620396|692972|768328|783925|783933|867614|867615|867616|867617|867618|867619|867620|867621|867622|867623|867624|867625|867626|867627|867628|867629|867630|867631|867632|867633|867634|867635|868624|868625|868626|868627|868628|868629", "text": "Transient neonatal diabetes mellitus 2" }, { - "baseId": "24127|44273|44277|44281|44284|44289|167532|167533|167534|167535|167536|167537|167539|167544|167545|167546|167547|167550|167554|186812|186816|186819|192808|194041|207847|207849|207850|207852|207853|227344|254064|254068|269612|319498|319522|325635|325650|326700|357942|357951|372093|380248|429204|429208|441404|441409|441413|441415|441417|621346|621348|621807|692971|692972|695500|701679|701680|737887|752576|752577|752585|752586|768323|768325|768326|768329|768330|768342|768343|768346|783929|787726|793383|867618|867625|868625|978892|978893|978894|978895|978896|978897|978898|978899|978900|978901|978902|978903|978904|978905|978906|978907|978908|978909|978910|978911|978912|978913|978914|978915|978916|978917|978918|978919|978920|978921|978922|978923|978924|978925|978926|978927|978928|978929|978930|978931|978932|978933|978934|978935|978936|978937|978938|978939|978940|978941|978942|978943|978944|978945|978947|978948|978949", + "upstreamId": "24127|44273|44277|44281|44284|44289|167532|167533|167534|167535|167536|167537|167539|167544|167545|167546|167547|167550|167554|186812|186816|186819|192808|194041|207847|207849|207850|207852|207853|227344|254064|254068|269612|319498|319522|325635|325650|326700|357942|357951|372093|380248|429204|429208|441404|441409|441413|441415|441417|621346|621348|621807|692971|692972|695500|701679|701680|737887|752576|752577|752585|752586|768323|768325|768326|768329|768330|768342|768343|768346|783929|787726|793383|867618|867625|868625|978892|978893|978894|978895|978896|978897|978898|978899|978900|978901|978902|978903|978904|978905|978906|978907|978908|978909|978910|978911|978912|978913|978914|978915|978916|978917|978918|978919|978920|978921|978922|978923|978924|978925|978926|978927|978928|978929|978930|978931|978932|978933|978934|978935|978936|978937|978938|978939|978940|978941|978942|978943|978944|978945|978947|978948|978949", "text": "Hereditary hyperinsulinism" }, { - "baseId": "24137|44278|44282|186816|207853|429199|429208|487507|546326|964358", + "upstreamId": "24137|44278|44282|186816|207853|429199|429208|487507|546326|964358", "text": "Leucine-induced hypoglycemia" }, { - "baseId": "24141|24142|24143|24146|24147|24148|24149|24150|44281", + "upstreamId": "24141|24142|24143|24146|24147|24148|24149|24150|44281", "text": "Permanent neonatal diabetes mellitus 3" }, { - "baseId": "24151|24151|24152|24153|24153|24154|24155|24156|24157|24157|24158|24159|89550|141271|141271|171902|171902|171903|171903|191017|191367|191367|191531|191532|191533|191657|191657|191658|191658|192323|195304|195305|195306|195306|195307|195938|195938|200699|214088|214088|214089|214089|214090|214090|215437|215437|230227|231804|231804|231805|231806|231806|231807|231807|231808|231809|231811|231811|237047|237047|237453|244162|244163|244671|244674|244675|244676|244678|244679|244680|244681|244681|244684|244684|244686|244687|244688|244689|244689|244690|244690|244691|244691|244692|244694|244694|244695|244696|244696|254287|254288|254290|254290|254291|254291|254292|254293|254294|254297|254297|254298|254300|254300|254301|254301|254302|254302|254303|254304|254306|254307|254307|254308|254308|254309|254309|254310|254310|254311|268601|268601|268886|268886|270553|272214|272215|272216|272216|273263|273263|314998|315002|315007|315009|315009|315010|315010|315020|315023|315027|315030|315037|321790|321790|321791|321791|321792|321792|321796|321807|321807|321808|321808|321812|321812|321813|321813|321814|321822|321824|321826|321827|327853|327853|327855|327855|327856|327856|327865|327867|327868|327868|327871|327874|327874|327875|327875|327878|327881|327884|328930|328933|328933|328934|328937|328938|328938|328939|328961|328961|328963|328972|328976|328978|328978|328983|328984|328985|328989|328995|329016|329017|359908|359908|360933|360933|372404|372408|372412|372412|372633|372636|372637|372643|372650|372653|374281|374289|374289|413321|415301|425942|426718|426719|433633|433636|433636|441485|441485|441486|441486|444880|444881|461439|461442|461444|461449|461601|461606|461614|461617|461617|461619|461628|461629|461638|461646|461654|461936|461941|461945|461948|461948|461950|461952|462264|462272|462274|462275|462278|462282|462289|480537|482001|482002|488174|488175|488181|488769|492298|503421|503427|503767|503767|503996|504001|504005|504390|511936|511937|512853|514295|526437|526458|526464|526465|526468|526469|526470|526472|526473|526473|526478|526488|526490|526492|526507|526509|526511|526753|526755|526761|526764|526767|527003|527007|527013|527019|527026|527031|527032|527034|527039|527039|527041|552154|552154|564877|564879|564887|564892|564895|564897|564899|564901|566123|566127|566131|566138|566141|566141|566142|566147|566156|566157|566158|567491|567492|567498|567501|567508|567510|567511|567511|567514|567516|569959|570922|570926|570936|570939|570947|570964|570972|570974|570976|570977|608961|611754|625209|625212|625226|625231|625232|625232|625251|625254|625255|625257|640397|640398|640399|640400|640401|640402|640403|640404|640405|640406|640407|640408|640409|640410|640411|640412|640413|640414|640415|640416|640417|640418|640419|640420|640421|640422|640423|640424|640425|640426|640427|640428|640429|640430|640431|640432|640433|640434|640434|654687|683036|693108|693109|693109|701953|730799|744748|768722|768723|768724|768727|784164|784165|815846|838933|838934|838935|838936|838937|838938|838939|838940|838941|838942|838943|838944|838945|838946|838947|838948|838949|838950|838950|838951|838952|838953|838954|838955|838956|838957|838958|838959|838960|838961|838962|838963|838964|838965|838966|838967|838968|838969|838970|838971|838972|852398|868714|868715|868716|868717|868718|868719|868720|868721|868722|868723|868724|868725|868726|868727|868728|868729|868730|868731|868732|868733|868734|868735|868736|868737|905286|926370|926371|926372|926373|926374|926375|926376|926377|926378|926379|935760|935761|935762|935763|935764|935765|935766|935767|935768|935769|941014|947642|947643|947644|947645|947646|947647|947648|947649|947650|956650|956651|956652|956653|956654|956655|960012|960762|970148", + "upstreamId": "24151|24151|24152|24153|24153|24154|24155|24156|24157|24157|24158|24159|89550|141271|141271|171902|171902|171903|171903|191017|191367|191367|191531|191532|191533|191657|191657|191658|191658|192323|195304|195305|195306|195306|195307|195938|195938|200699|214088|214088|214089|214089|214090|214090|215437|215437|230227|231804|231804|231805|231806|231806|231807|231807|231808|231809|231811|231811|237047|237047|237453|244162|244163|244671|244674|244675|244676|244678|244679|244680|244681|244681|244684|244684|244686|244687|244688|244689|244689|244690|244690|244691|244691|244692|244694|244694|244695|244696|244696|254287|254288|254290|254290|254291|254291|254292|254293|254294|254297|254297|254298|254300|254300|254301|254301|254302|254302|254303|254304|254306|254307|254307|254308|254308|254309|254309|254310|254310|254311|268601|268601|268886|268886|270553|272214|272215|272216|272216|273263|273263|314998|315002|315007|315009|315009|315010|315010|315020|315023|315027|315030|315037|321790|321790|321791|321791|321792|321792|321796|321807|321807|321808|321808|321812|321812|321813|321813|321814|321822|321824|321826|321827|327853|327853|327855|327855|327856|327856|327865|327867|327868|327868|327871|327874|327874|327875|327875|327878|327881|327884|328930|328933|328933|328934|328937|328938|328938|328939|328961|328961|328963|328972|328976|328978|328978|328983|328984|328985|328989|328995|329016|329017|359908|359908|360933|360933|372404|372408|372412|372412|372633|372636|372637|372643|372650|372653|374281|374289|374289|413321|415301|425942|426718|426719|433633|433636|433636|441485|441485|441486|441486|444880|444881|461439|461442|461444|461449|461601|461606|461614|461617|461617|461619|461628|461629|461638|461646|461654|461936|461941|461945|461948|461948|461950|461952|462264|462272|462274|462275|462278|462282|462289|480537|482001|482002|488174|488175|488181|488769|492298|503421|503427|503767|503767|503996|504001|504005|504390|511936|511937|512853|514295|526437|526458|526464|526465|526468|526469|526470|526472|526473|526473|526478|526488|526490|526492|526507|526509|526511|526753|526755|526761|526764|526767|527003|527007|527013|527019|527026|527031|527032|527034|527039|527039|527041|552154|552154|564877|564879|564887|564892|564895|564897|564899|564901|566123|566127|566131|566138|566141|566141|566142|566147|566156|566157|566158|567491|567492|567498|567501|567508|567510|567511|567511|567514|567516|569959|570922|570926|570936|570939|570947|570964|570972|570974|570976|570977|608961|611754|625209|625212|625226|625231|625232|625232|625251|625254|625255|625257|640397|640398|640399|640400|640401|640402|640403|640404|640405|640406|640407|640408|640409|640410|640411|640412|640413|640414|640415|640416|640417|640418|640419|640420|640421|640422|640423|640424|640425|640426|640427|640428|640429|640430|640431|640432|640433|640434|640434|654687|683036|693108|693109|693109|701953|730799|744748|768722|768723|768724|768727|784164|784165|815846|838933|838934|838935|838936|838937|838938|838939|838940|838941|838942|838943|838944|838945|838946|838947|838948|838949|838950|838950|838951|838952|838953|838954|838955|838956|838957|838958|838959|838960|838961|838962|838963|838964|838965|838966|838967|838968|838969|838970|838971|838972|852398|868714|868715|868716|868717|868718|868719|868720|868721|868722|868723|868724|868725|868726|868727|868728|868729|868730|868731|868732|868733|868734|868735|868736|868737|905286|926370|926371|926372|926373|926374|926375|926376|926377|926378|926379|935760|935761|935762|935763|935764|935765|935766|935767|935768|935769|941014|947642|947643|947644|947645|947646|947647|947648|947649|947650|956650|956651|956652|956653|956654|956655|960012|960762|970148", "text": "Spinal muscular atrophy, distal, autosomal recessive, 1" }, { - "baseId": "24151|24152|24153|24157|89550|141271|171902|171902|171903|171903|171904|171905|171906|191017|191367|191532|191533|191657|191658|192323|195304|195305|195306|195307|195938|200698|200699|214088|214089|214089|214090|214090|215437|230227|231804|231805|231806|231807|231807|231808|231809|231811|237047|237453|244674|244675|244676|244678|244679|244680|244681|244684|244686|244687|244688|244689|244690|244691|244692|244694|244695|244696|254290|254291|254292|254297|254300|254301|254302|254307|254308|254309|254310|268601|268886|270553|272214|272215|272216|273263|315009|315010|321790|321791|321792|321807|321808|321812|321813|327853|327855|327856|327868|327874|327875|328933|328938|328961|328978|359908|360933|372404|372408|372412|372633|372636|372637|372643|372650|374281|374289|413321|415301|425942|426718|426719|426719|433633|433636|441485|441486|444880|444881|461439|461442|461444|461449|461601|461606|461614|461617|461619|461628|461629|461638|461646|461654|461936|461941|461945|461948|461950|461952|462264|462272|462274|462275|462278|462282|462289|482001|482002|488769|492298|503421|503427|503767|503996|504001|504005|504390|511936|513440|513441|526437|526458|526464|526465|526468|526469|526470|526472|526473|526478|526488|526490|526492|526507|526509|526511|526753|526755|526761|526764|526767|527003|527007|527013|527019|527026|527031|527032|527034|527039|527041|552154|564877|564879|564887|564892|564895|564895|564897|564899|564901|566123|566127|566131|566138|566141|566142|566147|566156|566157|566158|567491|567492|567498|567501|567508|567510|567511|567514|567516|569959|570922|570926|570936|570939|570947|570964|570972|570974|570976|570977|611754|614605|625209|625226|625231|625232|625254|625257|640397|640398|640399|640400|640401|640402|640403|640404|640405|640406|640407|640408|640409|640410|640411|640412|640413|640414|640415|640416|640417|640418|640419|640420|640421|640422|640423|640424|640425|640426|640427|640428|640429|640430|640431|640432|640433|640434|683036|693108|693109|701953|730799|744748|768722|768723|768724|768727|784164|784165|815846|838933|838934|838935|838936|838937|838938|838939|838940|838941|838942|838943|838944|838945|838946|838947|838948|838949|838950|838951|838952|838953|838954|838955|838956|838957|838958|838959|838960|838961|838962|838963|838964|838965|838966|838967|838968|838969|838970|838971|838972|852398|905286|926370|926371|926372|926373|926374|926375|926376|926377|926378|926379|935760|935761|935762|935763|935764|935765|935766|935767|935768|935769|941014|947642|947643|947644|947645|947646|947647|947648|947649|947650|956650|956651|956652|956653|956654|956655|960012|960762", + "upstreamId": "24151|24152|24153|24157|89550|141271|171902|171902|171903|171903|171904|171905|171906|191017|191367|191532|191533|191657|191658|192323|195304|195305|195306|195307|195938|200698|200699|214088|214089|214089|214090|214090|215437|230227|231804|231805|231806|231807|231807|231808|231809|231811|237047|237453|244674|244675|244676|244678|244679|244680|244681|244684|244686|244687|244688|244689|244690|244691|244692|244694|244695|244696|254290|254291|254292|254297|254300|254301|254302|254307|254308|254309|254310|268601|268886|270553|272214|272215|272216|273263|315009|315010|321790|321791|321792|321807|321808|321812|321813|327853|327855|327856|327868|327874|327875|328933|328938|328961|328978|359908|360933|372404|372408|372412|372633|372636|372637|372643|372650|374281|374289|413321|415301|425942|426718|426719|426719|433633|433636|441485|441486|444880|444881|461439|461442|461444|461449|461601|461606|461614|461617|461619|461628|461629|461638|461646|461654|461936|461941|461945|461948|461950|461952|462264|462272|462274|462275|462278|462282|462289|482001|482002|488769|492298|503421|503427|503767|503996|504001|504005|504390|511936|513440|513441|526437|526458|526464|526465|526468|526469|526470|526472|526473|526478|526488|526490|526492|526507|526509|526511|526753|526755|526761|526764|526767|527003|527007|527013|527019|527026|527031|527032|527034|527039|527041|552154|564877|564879|564887|564892|564895|564895|564897|564899|564901|566123|566127|566131|566138|566141|566142|566147|566156|566157|566158|567491|567492|567498|567501|567508|567510|567511|567514|567516|569959|570922|570926|570936|570939|570947|570964|570972|570974|570976|570977|611754|614605|625209|625226|625231|625232|625254|625257|640397|640398|640399|640400|640401|640402|640403|640404|640405|640406|640407|640408|640409|640410|640411|640412|640413|640414|640415|640416|640417|640418|640419|640420|640421|640422|640423|640424|640425|640426|640427|640428|640429|640430|640431|640432|640433|640434|683036|693108|693109|701953|730799|744748|768722|768723|768724|768727|784164|784165|815846|838933|838934|838935|838936|838937|838938|838939|838940|838941|838942|838943|838944|838945|838946|838947|838948|838949|838950|838951|838952|838953|838954|838955|838956|838957|838958|838959|838960|838961|838962|838963|838964|838965|838966|838967|838968|838969|838970|838971|838972|852398|905286|926370|926371|926372|926373|926374|926375|926376|926377|926378|926379|935760|935761|935762|935763|935764|935765|935766|935767|935768|935769|941014|947642|947643|947644|947645|947646|947647|947648|947649|947650|956650|956651|956652|956653|956654|956655|960012|960762", "text": "Charcot-Marie-Tooth disease, axonal, type 2S" }, { - "baseId": "24160|24161|24162|24163|24164|24165|150303|150304|215409|236854|429031|590112|970917", + "upstreamId": "24160|24161|24162|24163|24164|24165|150303|150304|215409|236854|429031|590112|970917", "text": "Hypogonadotropic hypogonadism 6 with or without anosmia" }, { - "baseId": "24165|40253|40254|250134|254031|676956|790036|790934", + "upstreamId": "24165|40253|40254|250134|254031|676956|790036|790934", "text": "Holoprosencephaly 1" }, { - "baseId": "24166|415882|480767|970912", + "upstreamId": "24166|415882|480767|970912", "text": "Obesity, hyperphagia, and developmental delay" }, { - "baseId": "24167|24168|24169|227289|252041|298465|305182|305325|305328|455122|455762|563277|565260|689803|819646|819647|831350", + "upstreamId": "24167|24168|24169|227289|252041|298465|305182|305325|305328|455122|455762|563277|565260|689803|819646|819647|831350", "text": "Cataract 13 with adult i phenotype" }, { - "baseId": "24170|24171", + "upstreamId": "24170|24171", "text": "ADULT i BLOOD GROUP PHENOTYPE" }, { - "baseId": "24172|904212", + "upstreamId": "24172|904212", "text": "Hirschsprung disease, cardiac defects, and autonomic dysfunction" }, { - "baseId": "24173|24174|31043|33104|33107|33108", + "upstreamId": "24173|24174|31043|33104|33107|33108", "text": "Hypertension, essential, susceptibility to" }, { - "baseId": "24175|24178|24179|24180|24181|186762", + "upstreamId": "24175|24178|24179|24180|24181|186762", "text": "Ataxia, Friedreich-like, with isolated vitamin E deficiency" }, { - "baseId": "24175|24176|24178|24179|24180|76497|76498|76499|76500|76503|76504|76505|76506|98779|186762|186763|205158|262263|262264|273731|305702|305704|305711|305713|305723|309719|309722|309723|309728|309729|309730|309733|314935|314938|314944|314946|314949|314950|314953|314955|314956|314963|314964|314968|315033|315035|315041|315076|315077|315080|357633|357634|357635|357636|357637|357638|361111|441239|441241|544455|544457|544461|544746|544751|544756|544798|544799|544852|544853|577065|621284|736729|736732|766871|766873|790813|793287|899902|899903|899904|899905|899906|899907|899908|899909|899910|899911|899912|899913|899914|899915|899916|899917|899918|899919|899920|899921|899922|899923|900510|978472|978473|978474|978475|978476", + "upstreamId": "24175|24176|24178|24179|24180|76497|76498|76499|76500|76503|76504|76505|76506|98779|186762|186763|205158|262263|262264|273731|305702|305704|305711|305713|305723|309719|309722|309723|309728|309729|309730|309733|314935|314938|314944|314946|314949|314950|314953|314955|314956|314963|314964|314968|315033|315035|315041|315076|315077|315080|357633|357634|357635|357636|357637|357638|361111|441239|441241|544455|544457|544461|544746|544751|544756|544798|544799|544852|544853|577065|621284|736729|736732|766871|766873|790813|793287|899902|899903|899904|899905|899906|899907|899908|899909|899910|899911|899912|899913|899914|899915|899916|899917|899918|899919|899920|899921|899922|899923|900510|978472|978473|978474|978475|978476", "text": "Familial isolated deficiency of vitamin E" }, { - "baseId": "24176", + "upstreamId": "24176", "text": "Ataxia and retinitis pigmentosa with isolated vitamin E deficiency" }, { - "baseId": "24182|99484|177941|177942|191518|191777|191777|237062|237123|254715|265975|268050|271271|273778|274070|318444|318456|318472|326590|326599|326608|334477|439240|445085|489752|489752|490942|492197|492198|492687|568171|572034|584575|584615|585129|588040|588243|588871|589317|611777|702506|713741|713742|738864|738865|738866|753604|753608|760252|778118|820436|840260|840261|840262|840263|840264|840265|840266|840267|840268|840269|870428|936258|936259|936260|936261|940274|948153|948154|948155|948156|948157|948158|956935|956936|956937|956938|956939|960058|961789", + "upstreamId": "24182|99484|177941|177942|191518|191777|191777|237062|237123|254715|265975|268050|271271|273778|274070|318444|318456|318472|326590|326599|326608|334477|439240|445085|489752|489752|490942|492197|492198|492687|568171|572034|584575|584615|585129|588040|588243|588871|589317|611777|702506|713741|713742|738864|738865|738866|753604|753608|760252|778118|820436|840260|840261|840262|840263|840264|840265|840266|840267|840268|840269|870428|936258|936259|936260|936261|940274|948153|948154|948155|948156|948157|948158|956935|956936|956937|956938|956939|960058|961789", "text": "Neonatal adrenoleucodystrophy" }, { - "baseId": "24182|24183|191518|191777|191777|237062|237123|254715|254716|254718|268050|271271|273778|274070|318412|318414|318420|318421|318422|318440|318444|318456|318468|318472|318474|318475|318480|318483|326572|326590|326590|326599|326605|326609|326622|326623|326624|326626|326628|332771|332777|332778|332789|332831|332839|332840|332844|332845|332853|332856|332861|332865|332866|334419|334421|334425|334446|334466|334477|334479|334485|334489|334493|334513|334516|334526|334535|334536|445085|489752|490774|568171|588243|702506|713741|738865|870408|870409|870410|870411|870412|870413|870414|870415|870419|870420|870428|870429|870430|870431|870432|870433|870434|870435|870436|870437|870438|870439|870440|870441|870442|870443|870444|872289|872292|872293|961789", + "upstreamId": "24182|24183|191518|191777|191777|237062|237123|254715|254716|254718|268050|271271|273778|274070|318412|318414|318420|318421|318422|318440|318444|318456|318468|318472|318474|318475|318480|318483|326572|326590|326590|326599|326605|326609|326622|326623|326624|326626|326628|332771|332777|332778|332789|332831|332839|332840|332844|332845|332853|332856|332861|332865|332866|334419|334421|334425|334446|334466|334477|334479|334485|334489|334493|334513|334516|334526|334535|334536|445085|489752|490774|568171|588243|702506|713741|738865|870408|870409|870410|870411|870412|870413|870414|870415|870419|870420|870428|870429|870430|870431|870432|870433|870434|870435|870436|870437|870438|870439|870440|870441|870442|870443|870444|872289|872292|872293|961789", "text": "Peroxisome biogenesis disorder 2A (Zellweger)" }, { - "baseId": "24184|24185|24186|24187|34586|34587|90780|152879|190635|190636|193731|194525|214078|238076|255346|255348|255356|323310|323320|323323|323325|323328|323337|323339|323346|332989|332991|332995|339852|339853|339855|339856|339859|339861|341271|341275|341278|341280|384491|400478|429716|620528|622428|672023|690116|788890|842667|874074|874075|874076|874077|874078|874079|874080|874081|874082|874083|874084|874085|874086|874087|874088|874089|874090|876565|919594", + "upstreamId": "24184|24185|24186|24187|34586|34587|90780|152879|190635|190636|193731|194525|214078|238076|255346|255348|255356|323310|323320|323323|323325|323328|323337|323339|323346|332989|332991|332995|339852|339853|339855|339856|339859|339861|341271|341275|341278|341280|384491|400478|429716|620528|622428|672023|690116|788890|842667|874074|874075|874076|874077|874078|874079|874080|874081|874082|874083|874084|874085|874086|874087|874088|874089|874090|876565|919594", "text": "Bardet-Biedl syndrome 4" }, { - "baseId": "24188|142851|211657|318776|318777|318779|318780|318782|318783|327125|327126|327128|327137|333233|333244|333255|333257|333258|333259|334960|334965|334966|334967|504138|870601|870602|870603|870604|870605|870606|870607|870608|870609|870610|870611|919474|965592|965594", + "upstreamId": "24188|142851|211657|318776|318777|318779|318780|318782|318783|327125|327126|327128|327137|333233|333244|333255|333257|333258|333259|334960|334965|334966|334967|504138|870601|870602|870603|870604|870605|870606|870607|870608|870609|870610|870611|919474|965592|965594", "text": "Mitochondrial phosphate carrier deficiency" }, { - "baseId": "24189|24190|24191|152880|177235|177758|193428|195239|227146|227147|252354|254464|300123|300125|302849|302851|302852|302854|302855|302858|307228|307229|307231|307237|307238|307241|307470|307471|307480|316421|316461|323958|323963|324015|329992|330003|331332|331346|331361|331368|353771|353775|446828|612638|790627|818246|831944|856439|895972|895973|895974|896255|896256|896257|896258|896259|896260|896261|896262|896263|896264|896265|900228|945027|963226|963227|963228|963229|963230|963231|963232|963233|963234|963235", + "upstreamId": "24189|24190|24191|152880|177235|177758|193428|195239|227146|227147|252354|254464|300123|300125|302849|302851|302852|302854|302855|302858|307228|307229|307231|307237|307238|307241|307470|307471|307480|316421|316461|323958|323963|324015|329992|330003|331332|331346|331361|331368|353771|353775|446828|612638|790627|818246|831944|856439|895972|895973|895974|896255|896256|896257|896258|896259|896260|896261|896262|896263|896264|896265|900228|945027|963226|963227|963228|963229|963230|963231|963232|963233|963234|963235", "text": "Cone dystrophy 3" }, { - "baseId": "24192|24193|24194|24195|24196|24197|24198|24199|24200|24201|75357|227343|313239|313244|313252|313253|313256|319364|319377|319381|319382|319387|325500|325501|325502|325506|326449|326462|326469|326470|326471|360797|441396|441397|514623|620393|620394|682321|752538|838116|858565|858566|859846|867547|867548|867549|867550|867551|867552|867553|867554|867555|867556|867557|867558|867559|969607|976530", + "upstreamId": "24192|24193|24194|24195|24196|24197|24198|24199|24200|24201|75357|227343|313239|313244|313252|313253|313256|319364|319377|319381|319382|319387|325500|325501|325502|325506|326449|326462|326469|326470|326471|360797|441396|441397|514623|620393|620394|682321|752538|838116|858565|858566|859846|867547|867548|867549|867550|867551|867552|867553|867554|867555|867556|867557|867558|867559|969607|976530", "text": "Bartter syndrome, type 2, antenatal" }, { - "baseId": "24202|24205|24206|24210|24216|24218|24219|424702|576822|576823|621743|622775|622776|679853|917787|917788|961847|971379|971380", + "upstreamId": "24202|24205|24206|24210|24216|24218|24219|424702|576822|576823|621743|622775|622776|679853|917787|917788|961847|971379|971380", "text": "Werdnig-Hoffmann disease" }, { - "baseId": "24203|24207|24208|24212|24214|24216|424702|622772|622775|622780", + "upstreamId": "24203|24207|24208|24212|24214|24216|424702|622772|622775|622780", "text": "Spinal muscular atrophy, type II" }, { - "baseId": "24220|24221|178015|919298", + "upstreamId": "24220|24221|178015|919298", "text": "Retinitis pigmentosa 44" }, { - "baseId": "24222|24223|24224|24225|24227|24230|24231|24232|24233|24234|24235|44146|49409|49410|49412|49413|49414|49415|49416|49417|49418|49419|194788|256835|256836|256840|256841|256842|332896|332899|332902|332903|332904|332908|332910|332913|332926|332927|332933|343078|343080|343082|343086|348422|348423|348428|348435|348438|348440|348444|349576|349577|349579|349581|349583|353490|423253|432471|489146|704863|704864|741733|791918|791919|791920|791921|798742|806428|806429|806430|806431|806432|880184|880186|880187|880188|880189|880190|880191|880193|880194|880195|880196|880197|880198|880199|880200|880201|880202|880203|880204|880722|880723|880724|880725", + "upstreamId": "24222|24223|24224|24225|24227|24230|24231|24232|24233|24234|24235|44146|49409|49410|49412|49413|49414|49415|49416|49417|49418|49419|194788|256835|256836|256840|256841|256842|332896|332899|332902|332903|332904|332908|332910|332913|332926|332927|332933|343078|343080|343082|343086|348422|348423|348428|348435|348438|348440|348444|349576|349577|349579|349581|349583|353490|423253|432471|489146|704863|704864|741733|791918|791919|791920|791921|798742|806428|806429|806430|806431|806432|880184|880186|880187|880188|880189|880190|880191|880193|880194|880195|880196|880197|880198|880199|880200|880201|880202|880203|880204|880722|880723|880724|880725", "text": "Pseudoachondroplastic spondyloepiphyseal dysplasia syndrome" }, { - "baseId": "24226|24229", + "upstreamId": "24226|24229", "text": "Epiphyseal dysplasia, multiple, 1, severe" }, { - "baseId": "24228|24232|24236|24237|49409|49416|49417|76461|76462|76463|76464|76465|194788|256835|256836|256840|256841|256842|332896|332899|332902|332903|332904|332908|332910|332913|332926|332927|332933|343078|343080|343082|343086|348422|348423|348428|348435|348438|348440|348444|349576|349577|349579|349581|349583|423253|432471|489146|612108|623352|679807|679808|679809|704863|704864|741733|798743|880184|880186|880187|880188|880189|880190|880191|880193|880194|880195|880196|880197|880198|880199|880200|880201|880202|880203|880204|880722|880723|880724|880725|977292|980388", + "upstreamId": "24228|24232|24236|24237|49409|49416|49417|76461|76462|76463|76464|76465|194788|256835|256836|256840|256841|256842|332896|332899|332902|332903|332904|332908|332910|332913|332926|332927|332933|343078|343080|343082|343086|348422|348423|348428|348435|348438|348440|348444|349576|349577|349579|349581|349583|423253|432471|489146|612108|623352|679807|679808|679809|704863|704864|741733|798743|880184|880186|880187|880188|880189|880190|880191|880193|880194|880195|880196|880197|880198|880199|880200|880201|880202|880203|880204|880722|880723|880724|880725|977292|980388", "text": "Multiple epiphyseal dysplasia 1" }, { - "baseId": "24233", + "upstreamId": "24233", "text": "Pseudoachondroplasia, severe" }, { - "baseId": "24237|983299", + "upstreamId": "24237|983299", "text": "CARPAL TUNNEL SYNDROME 2" }, { - "baseId": "24238|24239|24241|24242|199792|265414|309641|309642|309644|309646|309647|309649|309653|309655|309656|309659|309661|309665|309669|309670|309671|309677|309678|309682|309686|309689|309691|314449|314454|314462|314472|314474|314481|314482|314485|314486|314487|314488|314489|314492|314493|314494|314495|314502|314514|314520|314526|314529|314530|314534|314538|314545|314546|320498|320504|320513|320516|320517|320520|320526|320527|320530|320532|320535|320536|320545|320547|320555|320556|320557|320559|320561|320565|320582|320589|320590|320600|320601|320603|320605|320612|321002|321010|321011|321012|321014|321017|321019|321025|321052|321057|321058|321061|321065|321066|321074|321076|321077|321083|321084|321085|321087|321092|321101|321106|321114|321118|353122|364182|444567|459709|460622|525010|525215|563608|566105|566199|569551|620346|620818|638762|638763|638764|638765|638766|638767|638768|638769|692795|692796|723825|737390|790943|836687|836688|836689|836690|861586|865534|865535|865536|865537|865538|865539|865540|865541|865542|865543|865544|865545|865546|865547|865548|865549|865550|865551|865552|865553|865554|865555|865556|865557|865558|865559|865560|865561|865562|865563|865564|865565|865566|865567|865568|865569|868455|925761", + "upstreamId": "24238|24239|24241|24242|199792|265414|309641|309642|309644|309646|309647|309649|309653|309655|309656|309659|309661|309665|309669|309670|309671|309677|309678|309682|309686|309689|309691|314449|314454|314462|314472|314474|314481|314482|314485|314486|314487|314488|314489|314492|314493|314494|314495|314502|314514|314520|314526|314529|314530|314534|314538|314545|314546|320498|320504|320513|320516|320517|320520|320526|320527|320530|320532|320535|320536|320545|320547|320555|320556|320557|320559|320561|320565|320582|320589|320590|320600|320601|320603|320605|320612|321002|321010|321011|321012|321014|321017|321019|321025|321052|321057|321058|321061|321065|321066|321074|321076|321077|321083|321084|321085|321087|321092|321101|321106|321114|321118|353122|364182|444567|459709|460622|525010|525215|563608|566105|566199|569551|620346|620818|638762|638763|638764|638765|638766|638767|638768|638769|692795|692796|723825|737390|790943|836687|836688|836689|836690|861586|865534|865535|865536|865537|865538|865539|865540|865541|865542|865543|865544|865545|865546|865547|865548|865549|865550|865551|865552|865553|865554|865555|865556|865557|865558|865559|865560|865561|865562|865563|865564|865565|865566|865567|865568|865569|868455|925761", "text": "Deficiency of 2-methylbutyryl-CoA dehydrogenase" }, { - "baseId": "24243|24245|24247|24248|141142|141142|141143|141144|141145|141146|141147|141147|186076|191530|205754|212578|213574|221697|221699|244499|245262|252786|252786|252788|252790|252795|252795|302780|302781|302785|302795|302796|302798|306103|306109|306110|306131|306135|306149|306154|310897|310901|310902|310903|310904|310905|310906|310908|310909|311055|311072|311080|311081|311082|311085|311086|311087|311089|311090|395627|395871|407124|425751|434618|457340|636133|683004|800399|833570|897972|897973|897974|897975|897976|897977|897978|897979|897980|897981|897982|897983|900352|973006", + "upstreamId": "24243|24245|24247|24248|141142|141142|141143|141144|141145|141146|141147|141147|186076|191530|205754|212578|213574|221697|221699|244499|245262|252786|252786|252788|252790|252795|252795|302780|302781|302785|302795|302796|302798|306103|306109|306110|306131|306135|306149|306154|310897|310901|310902|310903|310904|310905|310906|310908|310909|311055|311072|311080|311081|311082|311085|311086|311087|311089|311090|395627|395871|407124|425751|434618|457340|636133|683004|800399|833570|897972|897973|897974|897975|897976|897977|897978|897979|897980|897981|897982|897983|900352|973006", "text": "Charcot-Marie-Tooth disease type 2D" }, { - "baseId": "24249|24250|24251|24253|24254|24255|45006|45007|45008|45009|45009|45010|45011|45012|45014|45015|45016|45017|45018|45019|45020|45021|45022|45023|45024|45025|45026|45027|45028|45030|134684|134686|165951|165951|208662|208663|335452|335454|335461|335462|335465|335467|335470|335479|335495|335497|335506|335507|335519|335521|335523|345257|345263|345264|345266|345268|345270|345275|345281|345285|345287|345289|345293|345301|345302|345305|345307|349981|349986|349987|349989|349990|349992|349994|349995|349999|350000|350006|350009|350985|350987|350988|350991|350992|350995|350998|350999|351002|351003|351004|351007|351010|351021|351024|384504|424389|430313|430314|431538|486284|507169|507770|577852|577863|578356|609055|609056|609057|620658|622122|654702|760954|793843|886111|886112|886113|886114|886115|886116|886117|886118|886119|886120|886121|886122|886123|886124|886125|886126|886127|886128|886129|886130|886131|886132|886133|886134|886135|886136|886137|886138|886139|886140|886141|886142|886143|886144|886145|886146|887460|961137|961138|961139", + "upstreamId": "24249|24250|24251|24253|24254|24255|45006|45007|45008|45009|45009|45010|45011|45012|45014|45015|45016|45017|45018|45019|45020|45021|45022|45023|45024|45025|45026|45027|45028|45030|134684|134686|165951|165951|208662|208663|335452|335454|335461|335462|335465|335467|335470|335479|335495|335497|335506|335507|335519|335521|335523|345257|345263|345264|345266|345268|345270|345275|345281|345285|345287|345289|345293|345301|345302|345305|345307|349981|349986|349987|349989|349990|349992|349994|349995|349999|350000|350006|350009|350985|350987|350988|350991|350992|350995|350998|350999|351002|351003|351004|351007|351010|351021|351024|384504|424389|430313|430314|431538|486284|507169|507770|577852|577863|578356|609055|609056|609057|620658|622122|654702|760954|793843|886111|886112|886113|886114|886115|886116|886117|886118|886119|886120|886121|886122|886123|886124|886125|886126|886127|886128|886129|886130|886131|886132|886133|886134|886135|886136|886137|886138|886139|886140|886141|886142|886143|886144|886145|886146|887460|961137|961138|961139", "text": "Maturity-onset diabetes of the young, type 1" }, { - "baseId": "24256|39017|249475|265897|266270|268287|272011|272608|275265|276854|276855|276856|276857|276858|276861|276863|276877|276878|277144|277145|277150|277152|277156|277157|277161|277163|277711|277712|277714|277725|277726|277728|277760|277762|277763|277801|277803|277805|277826|277829|277830|277831|277837|277841|277842|277843|277844|277848|277864|277874|277876|277886|489566|490681|490821|491361|492180|556715|586959|587020|588362|620706|822906|822907|822908|822909|862560|862561|862562|862563|862564|862565|862566|862567|862568|862569|862570|862571|862572|862573|862574|862575|862576|862577|865019|930109|941532|941533|941534", + "upstreamId": "24256|39017|249475|265897|266270|268287|272011|272608|275265|276854|276855|276856|276857|276858|276861|276863|276877|276878|277144|277145|277150|277152|277156|277157|277161|277163|277711|277712|277714|277725|277726|277728|277760|277762|277763|277801|277803|277805|277826|277829|277830|277831|277837|277841|277842|277843|277844|277848|277864|277874|277876|277886|489566|490681|490821|491361|492180|556715|586959|587020|588362|620706|822906|822907|822908|822909|862560|862561|862562|862563|862564|862565|862566|862567|862568|862569|862570|862571|862572|862573|862574|862575|862576|862577|865019|930109|941532|941533|941534", "text": "Peroxisome biogenesis disorder 12A" }, { - "baseId": "24257|24258|24259|24260|24261|24262|24263|24264|24265|24266|24267|106815|106815|205022|213652|214545|256790|256791|256792|256793|256794|256795|256796|256797|256798|256799|256800|256801|256803|256804|256805|256806|256808|256810|256811|256812|256813|256814|256816|256817|256819|256820|256821|256822|256823|256824|256825|256826|332706|332715|332717|332719|332721|332724|332725|332726|332731|332741|332746|332748|332751|332763|332764|332766|342885|342887|342889|342890|342893|342898|342900|342902|342904|342914|342916|342918|342922|342924|342926|342928|348234|348239|348243|348244|348248|348249|348253|348256|348257|348261|348262|348266|348268|348270|349434|349437|349438|349439|349441|349442|349445|349448|349453|349455|349456|349458|349460|349462|349463|349465|349466|349468|349469|349472|361523|413498|442090|442091|442092|442096|442109|442110|442116|442131|442136|442138|442147|442152|442156|442159|442166|442168|442168|442171|442177|442180|442184|442186|442187|513142|513143|536981|536981|537323|577758|620630|677047|694339|694345|694347|716233|716234|727962|727968|741654|786098|791908|791909|791910|791911|793750|793758|793763|793764|793769|797760|797761|799024|799025|799026|799027|799028|858383|861655|880013|880014|880015|880016|880017|880018|880019|880020|880021|880022|880023|880024|880025|880026|880027|880028|880029|880030|880031|880032|880033|880034|880035|880036|880037|880038|880039|880040|880041|880042|880043|880044|880045|880046|880047|880048|880049|880050|880051|880052|880053|880054|880055|880056|880057|880058|880059|880060|880061|880062|880063|880064|880065|880066|880067|880704|880705|880706|880707|880708|919834|919835|919836|919837|919838|919839|920402|920403|961018|964513|964514|964515|964516|971121", + "upstreamId": "24257|24258|24259|24260|24261|24262|24263|24264|24265|24266|24267|106815|106815|205022|213652|214545|256790|256791|256792|256793|256794|256795|256796|256797|256798|256799|256800|256801|256803|256804|256805|256806|256808|256810|256811|256812|256813|256814|256816|256817|256819|256820|256821|256822|256823|256824|256825|256826|332706|332715|332717|332719|332721|332724|332725|332726|332731|332741|332746|332748|332751|332763|332764|332766|342885|342887|342889|342890|342893|342898|342900|342902|342904|342914|342916|342918|342922|342924|342926|342928|348234|348239|348243|348244|348248|348249|348253|348256|348257|348261|348262|348266|348268|348270|349434|349437|349438|349439|349441|349442|349445|349448|349453|349455|349456|349458|349460|349462|349463|349465|349466|349468|349469|349472|361523|413498|442090|442091|442092|442096|442109|442110|442116|442131|442136|442138|442147|442152|442156|442159|442166|442168|442168|442171|442177|442180|442184|442186|442187|513142|513143|536981|536981|537323|577758|620630|677047|694339|694345|694347|716233|716234|727962|727968|741654|786098|791908|791909|791910|791911|793750|793758|793763|793764|793769|797760|797761|799024|799025|799026|799027|799028|858383|861655|880013|880014|880015|880016|880017|880018|880019|880020|880021|880022|880023|880024|880025|880026|880027|880028|880029|880030|880031|880032|880033|880034|880035|880036|880037|880038|880039|880040|880041|880042|880043|880044|880045|880046|880047|880048|880049|880050|880051|880052|880053|880054|880055|880056|880057|880058|880059|880060|880061|880062|880063|880064|880065|880066|880067|880704|880705|880706|880707|880708|919834|919835|919836|919837|919838|919839|920402|920403|961018|964513|964514|964515|964516|971121", "text": "Cerebral autosomal dominant arteriopathy with subcortical infarcts and leukoencephalopathy type 1" }, { - "baseId": "24258", + "upstreamId": "24258", "text": "Migraine without aura" }, { - "baseId": "24264", + "upstreamId": "24264", "text": "Recurrent subcortical infarcts" }, { - "baseId": "24268|24269|138704|275435|590450|623235|672207|672208|800389|818155|818156|918548|977167", + "upstreamId": "24268|24269|138704|275435|590450|623235|672207|672208|800389|818155|818156|918548|977167", "text": "Alagille syndrome 2" }, { - "baseId": "24270", + "upstreamId": "24270", "text": "Hypotrichosis and recurrent skin vesicles" }, { - "baseId": "24271", + "upstreamId": "24271", "text": "Mycobacterium tuberculosis, susceptibility to infection by" }, { - "baseId": "24272", + "upstreamId": "24272", "text": "Buruli ulcer, susceptibility to" }, { - "baseId": "24273|24274|24276|24283|24284|24288|96770|96771|96791|96805|96813|190109", + "upstreamId": "24273|24274|24276|24283|24284|24288|96770|96771|96791|96805|96813|190109", "text": "MISMATCH REPAIR CANCER SYNDROME 4" }, { - "baseId": "24273|24276|24279|24281|24282|24283|24284|24284|45346|45348|45349|45350|45350|45351|45352|45353|45354|50140|50141|50142|50143|50144|50145|50146|50147|50148|50148|50152|50153|50153|50154|50155|50156|50157|50160|50161|96752|96754|96766|96773|96774|96779|96781|96786|96790|96792|96793|96796|96798|96799|96802|96804|96805|96806|96808|96809|96812|96815|96818|96825|96830|96836|96841|96841|96843|96850|96851|96852|96857|96857|99143|133208|133209|133218|133219|133220|133227|133227|133230|133234|133237|133237|133243|133245|133248|133248|133249|133249|133250|133251|133252|133252|133253|133253|133255|133255|133259|136478|138804|138805|138808|138809|139651|139651|139653|139655|142401|142403|142404|142406|142409|150545|150594|150877|151108|151237|151369|151374|151378|151397|151546|151780|151971|152135|152275|152290|152291|152291|152349|152385|152385|152479|152589|152673|152674|180259|180263|180265|180267|180268|180273|180273|182687|182691|182697|182710|182723|182725|182727|182738|182738|182748|182751|182761|182763|182764|182770|182771|182772|182774|182777|182782|182786|182793|182795|182798|182807|182807|182808|182811|182812|182817|182820|182823|182824|186085|190025|195590|212589|212598|212599|212609|212611|212612|215365|215366|221705|221705|221713|221713|221723|221725|221733|221735|221736|231655|231678|231688|231692|231698|233490|233494|233515|233525|233527|233528|233547|233549|233550|233555|233555|233557|233568|233589|233597|240109|240126|240130|240145|240146|240147|303242|306557|311471|311622|311623|358801|358802|358803|395732|395935|395978|396076|396106|396349|396360|407182|407204|409030|432648|432650|456778|456783|457251|457842|457889|474555|474569|474600|474639|482711|483958|483975|484009|484132|484145|523007|523324|539261|539262|539263|539264|539265|539266|539267|539268|539269|539270|539271|561683|575783|576260|623314|636292|790739|790740|790741|790742|790743|790744|790745|790746|790747|790748|898280|898281|900383|900384|967150|967186|970862", + "upstreamId": "24273|24276|24279|24281|24282|24283|24284|24284|45346|45348|45349|45350|45350|45351|45352|45353|45354|50140|50141|50142|50143|50144|50145|50146|50147|50148|50148|50152|50153|50153|50154|50155|50156|50157|50160|50161|96752|96754|96766|96773|96774|96779|96781|96786|96790|96792|96793|96796|96798|96799|96802|96804|96805|96806|96808|96809|96812|96815|96818|96825|96830|96836|96841|96841|96843|96850|96851|96852|96857|96857|99143|133208|133209|133218|133219|133220|133227|133227|133230|133234|133237|133237|133243|133245|133248|133248|133249|133249|133250|133251|133252|133252|133253|133253|133255|133255|133259|136478|138804|138805|138808|138809|139651|139651|139653|139655|142401|142403|142404|142406|142409|150545|150594|150877|151108|151237|151369|151374|151378|151397|151546|151780|151971|152135|152275|152290|152291|152291|152349|152385|152385|152479|152589|152673|152674|180259|180263|180265|180267|180268|180273|180273|182687|182691|182697|182710|182723|182725|182727|182738|182738|182748|182751|182761|182763|182764|182770|182771|182772|182774|182777|182782|182786|182793|182795|182798|182807|182807|182808|182811|182812|182817|182820|182823|182824|186085|190025|195590|212589|212598|212599|212609|212611|212612|215365|215366|221705|221705|221713|221713|221723|221725|221733|221735|221736|231655|231678|231688|231692|231698|233490|233494|233515|233525|233527|233528|233547|233549|233550|233555|233555|233557|233568|233589|233597|240109|240126|240130|240145|240146|240147|303242|306557|311471|311622|311623|358801|358802|358803|395732|395935|395978|396076|396106|396349|396360|407182|407204|409030|432648|432650|456778|456783|457251|457842|457889|474555|474569|474600|474639|482711|483958|483975|484009|484132|484145|523007|523324|539261|539262|539263|539264|539265|539266|539267|539268|539269|539270|539271|561683|575783|576260|623314|636292|790739|790740|790741|790742|790743|790744|790745|790746|790747|790748|898280|898281|900383|900384|967150|967186|970862", "text": "Hereditary nonpolyposis colorectal cancer type 4" }, { - "baseId": "24284|46484", + "upstreamId": "24284|46484", "text": "Pituitary carcinoma" }, { - "baseId": "24290", + "upstreamId": "24290", "text": "Systemic lupus erythematosus, association wit 2" }, { - "baseId": "24291|24291|24292|27922|27923|27924|27925|27926|27930|27931|75309|79394|79406|79454|79474|79478|79482|79484|79517|79520|79534|79540|79545|79552|79556|79557|79558|99386|135657|142693|142696|142698|142705|178737|188676|188677|188682|188684|188693|188702|256855|256856|333128|333131|343244|348589|349668|349669|507247|572346|574937|587697|611431|614064|626118|682721|802062|805109|880288|880289|880290|880291|880292|880293|880294|880295|880296|880297|880298|880299|880300|880301|880302|880303|880304|880305|880306|880307|880729|904067|964521", + "upstreamId": "24291|24291|24292|27922|27923|27924|27925|27926|27930|27931|75309|79394|79406|79454|79474|79478|79482|79484|79517|79520|79534|79540|79545|79552|79556|79557|79558|99386|135657|142693|142696|142698|142705|178737|188676|188677|188682|188684|188693|188702|256855|256856|333128|333131|343244|348589|349668|349669|507247|572346|574937|587697|611431|614064|626118|682721|802062|805109|880288|880289|880290|880291|880292|880293|880294|880295|880296|880297|880298|880299|880300|880301|880302|880303|880304|880305|880306|880307|880729|904067|964521", "text": "Generalized epilepsy with febrile seizures plus, type 1" }, { - "baseId": "24291|45413|45414|178058|191370|273736|282565|282594|283206|283227|283258|283267|283293|283322|284810|285355|285356|296799|298652|302896|906365|906366|906367|906368|906369|906370|906371|906372", + "upstreamId": "24291|45413|45414|178058|191370|273736|282565|282594|283206|283227|283258|283267|283293|283322|284810|285355|285356|296799|298652|302896|906365|906366|906367|906368|906369|906370|906371|906372", "text": "Generalized epilepsy with febrile seizures plus" }, { - "baseId": "24291|24291|75309|75309|75310|188677|188682|188693|574937|611431", + "upstreamId": "24291|24291|75309|75309|75310|188677|188682|188693|574937|611431", "text": "Atrial fibrillation, familial, 13" }, { - "baseId": "24291|24291|24293|45417|75309|75309|99386|135657|142693|142695|142696|142698|142699|142700|142701|142702|142703|142705|142708|178737|178738|188675|188676|188677|188677|188681|188682|188682|188683|188684|188685|188686|188688|188689|188690|188692|188693|188694|188695|188696|188697|188702|188703|188704|188707|188708|243330|243331|256855|256856|266971|268778|333128|333131|343244|348589|349668|349669|377372|377574|377579|377590|403241|403285|403289|403290|403733|403735|403741|403752|430178|442194|468632|468634|468637|468638|469629|469632|469636|469644|469647|469648|470044|470620|482189|495524|507247|532844|532849|532926|532928|533298|572346|572712|573032|574937|574937|574938|587697|611431|611431|624878|647936|647937|647938|647939|647940|647941|684785|694375|694376|695818|741775|805109|847532|847533|847534|847535|847536|847537|847538|847539|847540|847541|847542|847543|851809|852862|880288|880289|880290|880291|880292|880293|880294|880295|880296|880297|880298|880299|880300|880301|880302|880303|880304|880305|880306|880307|880729|928928|938644|938645|938646|938647|938648|938649|938650|940480|950749|950750|958597|958598|971125", + "upstreamId": "24291|24291|24293|45417|75309|75309|99386|135657|142693|142695|142696|142698|142699|142700|142701|142702|142703|142705|142708|178737|178738|188675|188676|188677|188677|188681|188682|188682|188683|188684|188685|188686|188688|188689|188690|188692|188693|188694|188695|188696|188697|188702|188703|188704|188707|188708|243330|243331|256855|256856|266971|268778|333128|333131|343244|348589|349668|349669|377372|377574|377579|377590|403241|403285|403289|403290|403733|403735|403741|403752|430178|442194|468632|468634|468637|468638|469629|469632|469636|469644|469647|469648|470044|470620|482189|495524|507247|532844|532849|532926|532928|533298|572346|572712|573032|574937|574937|574938|587697|611431|611431|624878|647936|647937|647938|647939|647940|647941|684785|694375|694376|695818|741775|805109|847532|847533|847534|847535|847536|847537|847538|847539|847540|847541|847542|847543|851809|852862|880288|880289|880290|880291|880292|880293|880294|880295|880296|880297|880298|880299|880300|880301|880302|880303|880304|880305|880306|880307|880729|928928|938644|938645|938646|938647|938648|938649|938650|940480|950749|950750|958597|958598|971125", "text": "Brugada syndrome 5" }, { - "baseId": "24291|75309|188677|188682|188693|362555|362556|574937|611431|682721|682722", + "upstreamId": "24291|75309|188677|188682|188693|362555|362556|574937|611431|682721|682722", "text": "Epileptic encephalopathy, early infantile, 52" }, { - "baseId": "24294|24295|24425|24434|24437|78668|78824|78831|78924|78928|224179|224386|224557", + "upstreamId": "24294|24295|24425|24434|24437|78668|78824|78831|78924|78928|224179|224386|224557", "text": "Cardiac conduction defect, nonspecific" }, { - "baseId": "24296|24297|24298|24299|24300|24301|199940|199941|199942|276193|276194|276207|276208|276210|276211|276213|276455|276465|276469|276471|276472|276840|276843|276847|276859|276923|276926|276928|276932|276933|276942|276948|353052|364392|414725|442601|447166|481400|481401|556607|556895|558008|581744|587944|609346|626728|626729|626730|626731|626732|626733|650519|650617|718145|815883|818844|822619|822620|822621|822622|822623|850710|858543|858544|862111|862112|862113|862114|862115|862116|862118|862121|862122|862123|862124|862125|862126|864968|864969|903500|921610|940599|941407|941408|941409|941410|941411|952038", + "upstreamId": "24296|24297|24298|24299|24300|24301|199940|199941|199942|276193|276194|276207|276208|276210|276211|276213|276455|276465|276469|276471|276472|276840|276843|276847|276859|276923|276926|276928|276932|276933|276942|276948|353052|364392|414725|442601|447166|481400|481401|556607|556895|558008|581744|587944|609346|626728|626729|626730|626731|626732|626733|650519|650617|718145|815883|818844|822619|822620|822621|822622|822623|850710|858543|858544|862111|862112|862113|862114|862115|862116|862118|862121|862122|862123|862124|862125|862126|864968|864969|903500|921610|940599|941407|941408|941409|941410|941411|952038", "text": "mitochondrial 3-hydroxy-3-methylglutaryl-CoA synthase deficiency" }, { - "baseId": "24307|24308|24309|175749|175889|191353|193465|193466|230335|230338|318246|318248|318254|318256|318260|318268|318271|318273|318280|318282|318283|318284|318285|326232|326237|326241|326243|326249|326253|326259|326263|332508|332511|332523|332532|332536|332540|332543|332548|332550|334121|334122|334123|334124|334131|334139|334143|334146|334150|334151|334153|578502|578503|582711|620454|713693|725223|753541|753543|870271|870272|870273|870274|870275|870276|870277|870278|870279|870280|870281|870282|870283|870284|870285|870286|870287|870288|870289|872282|872283", + "upstreamId": "24307|24308|24309|175749|175889|191353|193465|193466|230335|230338|318246|318248|318254|318256|318260|318268|318271|318273|318280|318282|318283|318284|318285|326232|326237|326241|326243|326249|326253|326259|326263|332508|332511|332523|332532|332536|332540|332543|332548|332550|334121|334122|334123|334124|334131|334139|334143|334146|334150|334151|334153|578502|578503|582711|620454|713693|725223|753541|753543|870271|870272|870273|870274|870275|870276|870277|870278|870279|870280|870281|870282|870283|870284|870285|870286|870287|870288|870289|872282|872283", "text": "Bronchiectasis with or without elevated sweat chloride 2" }, { - "baseId": "24310|24311|24312|24313|24314|24315|24316|24317|24318|24321|24322|24322|24323|24324|24327|24328|24330|171166|171167|171167|254991|254992|260057|260057|320705|320709|320715|320716|320717|320722|320723|320723|320725|320725|320735|320736|329510|329511|329514|329519|329520|329523|329532|329537|329538|329538|329541|329558|329560|336147|336154|336160|336161|336166|336167|336168|336182|336185|338039|338042|338045|338046|338050|338051|338056|338061|338066|338067|338071|338071|338072|338096|373875|437970|463824|463831|463831|463836|463966|464163|464169|464175|464177|464321|482050|513447|527839|528216|528574|528680|528685|566501|568125|568138|568944|568946|568949|572820|572826|577351|612989|642511|642512|642513|642514|642515|642516|642517|642518|642519|652312|652318|652355|688314|702900|702900|801551|820629|820630|841559|841560|851561|852001|852747|871942|871943|871944|871945|871946|871947|871948|871949|871950|871951|871952|871953|871954|871955|871956|871957|871958|871959|927103|927104|936638|936639|936640|948589|957238|957239|983819", + "upstreamId": "24310|24311|24312|24313|24314|24315|24316|24317|24318|24321|24322|24322|24323|24324|24327|24328|24330|171166|171167|171167|254991|254992|260057|260057|320705|320709|320715|320716|320717|320722|320723|320723|320725|320725|320735|320736|329510|329511|329514|329519|329520|329523|329532|329537|329538|329538|329541|329558|329560|336147|336154|336160|336161|336166|336167|336168|336182|336185|338039|338042|338045|338046|338050|338051|338056|338061|338066|338067|338071|338071|338072|338096|373875|437970|463824|463831|463831|463836|463966|464163|464169|464175|464177|464321|482050|513447|527839|528216|528574|528680|528685|566501|568125|568138|568944|568946|568949|572820|572826|577351|612989|642511|642512|642513|642514|642515|642516|642517|642518|642519|652312|652318|652355|688314|702900|702900|801551|820629|820630|841559|841560|851561|852001|852747|871942|871943|871944|871945|871946|871947|871948|871949|871950|871951|871952|871953|871954|871955|871956|871957|871958|871959|927103|927104|936638|936639|936640|948589|957238|957239|983819", "text": "Dystonia 5" }, { - "baseId": "24319|24320|24321|24322|24325|24331|27363|27364|27365|27366|27367|27368|27369|27370|27371|27372|27373|34718|45062|186821|205167|241071|241073|241074|241076|254105|254106|254108|254109|254110|254114|254115|254116|313632|313633|313637|313638|313640|313641|313643|313646|313647|313649|313653|319828|319830|319843|319846|319847|319849|325998|325999|326005|326006|326007|326010|326011|326018|326978|326982|326983|326984|326992|326993|357963|357964|357965|357966|357967|357968|357969|357970|357971|361307|361308|361618|372119|398449|398531|398540|413302|415263|437882|441420|444773|461058|461767|489308|526025|526532|545991|545996|545998|546000|546003|546011|546016|546019|546020|546022|546031|546032|546268|546270|546273|546278|546303|546310|546312|546314|546411|546412|546415|546418|546421|546422|546424|546429|546430|546432|546443|546444|546627|546630|546631|546638|546639|546643|546644|546646|546650|546652|546653|565602|567130|567131|570432|570440|577191|581766|639861|639862|639864|639865|639866|639869|639870|639873|639874|639875|652173|652528|684240|684241|684242|684243|684244|684245|684246|685283|687729|687730|687731|687734|687735|687736|687738|687742|701704|701705|712765|724363|724364|724366|737917|737919|768392|791123|791124|796550|798640|838186|838187|838192|838196|838199|838200|867735|867736|867737|867738|867739|867740|867741|867742|867743|867744|867745|867746|867747|867748|919350|956446|978968|978969|978970|978971|978972|978973|978974|978975|978976|978977|978978|978979|978980|978981|978982|978983|978984", + "upstreamId": "24319|24320|24321|24322|24325|24331|27363|27364|27365|27366|27367|27368|27369|27370|27371|27372|27373|34718|45062|186821|205167|241071|241073|241074|241076|254105|254106|254108|254109|254110|254114|254115|254116|313632|313633|313637|313638|313640|313641|313643|313646|313647|313649|313653|319828|319830|319843|319846|319847|319849|325998|325999|326005|326006|326007|326010|326011|326018|326978|326982|326983|326984|326992|326993|357963|357964|357965|357966|357967|357968|357969|357970|357971|361307|361308|361618|372119|398449|398531|398540|413302|415263|437882|441420|444773|461058|461767|489308|526025|526532|545991|545996|545998|546000|546003|546011|546016|546019|546020|546022|546031|546032|546268|546270|546273|546278|546303|546310|546312|546314|546411|546412|546415|546418|546421|546422|546424|546429|546430|546432|546443|546444|546627|546630|546631|546638|546639|546643|546644|546646|546650|546652|546653|565602|567130|567131|570432|570440|577191|581766|639861|639862|639864|639865|639866|639869|639870|639873|639874|639875|652173|652528|684240|684241|684242|684243|684244|684245|684246|685283|687729|687730|687731|687734|687735|687736|687738|687742|701704|701705|712765|724363|724364|724366|737917|737919|768392|791123|791124|796550|798640|838186|838187|838192|838196|838199|838200|867735|867736|867737|867738|867739|867740|867741|867742|867743|867744|867745|867746|867747|867748|919350|956446|978968|978969|978970|978971|978972|978973|978974|978975|978976|978977|978978|978979|978980|978981|978982|978983|978984", "text": "Autosomal recessive DOPA responsive dystonia" }, { - "baseId": "24321|24322|24322|24326|24329|171166|171167|171167|254991|254992|260057|320705|320709|320711|320715|320716|320717|320722|320723|320723|320725|320725|320735|320736|329510|329511|329513|329514|329519|329520|329523|329532|329537|329538|329538|329541|329558|329560|329573|336147|336154|336160|336161|336164|336166|336167|336168|336174|336182|336185|338039|338040|338042|338045|338046|338050|338051|338056|338061|338066|338067|338071|338071|338072|338096|353302|373875|437970|463824|463831|463831|463836|463966|464163|464169|464321|482050|527839|528216|528574|528680|528685|566501|568125|568138|568944|568946|568949|572820|572826|577351|612989|622846|642511|642512|642513|642514|642515|642516|642517|642518|642519|652312|652318|652355|688314|702900|702900|791413|791414|820629|820630|841559|841560|851561|852001|852747|871942|871943|871944|871945|871946|871947|871948|871949|871950|871951|871952|871953|871954|871955|871956|871957|871958|871959|927103|927104|936638|936639|936640|948589|957238|957239", + "upstreamId": "24321|24322|24322|24326|24329|171166|171167|171167|254991|254992|260057|320705|320709|320711|320715|320716|320717|320722|320723|320723|320725|320725|320735|320736|329510|329511|329513|329514|329519|329520|329523|329532|329537|329538|329538|329541|329558|329560|329573|336147|336154|336160|336161|336164|336166|336167|336168|336174|336182|336185|338039|338040|338042|338045|338046|338050|338051|338056|338061|338066|338067|338071|338071|338072|338096|353302|373875|437970|463824|463831|463831|463836|463966|464163|464169|464321|482050|527839|528216|528574|528680|528685|566501|568125|568138|568944|568946|568949|572820|572826|577351|612989|622846|642511|642512|642513|642514|642515|642516|642517|642518|642519|652312|652318|652355|688314|702900|702900|791413|791414|820629|820630|841559|841560|851561|852001|852747|871942|871943|871944|871945|871946|871947|871948|871949|871950|871951|871952|871953|871954|871955|871956|871957|871958|871959|927103|927104|936638|936639|936640|948589|957238|957239", "text": "GTP cyclohydrolase I deficiency" }, { - "baseId": "24332|24333|39008|39009|308007|308036|308037|308039|308041|308045|308046|308060|308061|312343|312346|312365|312372|312374|312376|312387|312388|312389|312391|312392|312396|312397|312398|312402|312404|312405|312409|312411|312412|312420|318050|318070|318104|318120|318124|318140|318148|318153|318154|318166|318176|318179|318195|318198|318202|318207|318220|318221|318622|318623|318624|318647|318652|318654|318658|318666|318667|318671|318674|318681|318684|318685|318689|318695|318696|318697|318715|318716|318727|318732|508837|552141|609731|620328|723540|901795|901796|901797|901798|901799|901816|901819|901824|901831|901833|901834|901835|901836|901837|901838|901839|901840|901841|901842|901843|901844|903378|903379|903381|903382|905822", + "upstreamId": "24332|24333|39008|39009|308007|308036|308037|308039|308041|308045|308046|308060|308061|312343|312346|312365|312372|312374|312376|312387|312388|312389|312391|312392|312396|312397|312398|312402|312404|312405|312409|312411|312412|312420|318050|318070|318104|318120|318124|318140|318148|318153|318154|318166|318176|318179|318195|318198|318202|318207|318220|318221|318622|318623|318624|318647|318652|318654|318658|318666|318667|318671|318674|318681|318684|318685|318689|318695|318696|318697|318715|318716|318727|318732|508837|552141|609731|620328|723540|901795|901796|901797|901798|901799|901816|901819|901824|901831|901833|901834|901835|901836|901837|901838|901839|901840|901841|901842|901843|901844|903378|903379|903381|903382|905822", "text": "Multiple cutaneous and mucosal venous malformations" }, { - "baseId": "24334|24335|24337|24338|24341|24342|24343|24344|24345|24346|76533|76534|193462|204425|252379|300384|300386|300387|300389|300390|300392|300396|300397|300402|300404|300405|300411|300413|300424|300426|300430|300438|300440|303224|303245|303246|303250|303256|303257|303258|303262|303263|303270|303272|303281|303283|303289|303291|303296|307741|307742|307744|307745|307747|307755|307756|307758|307759|307760|307762|307769|307779|307781|307782|307783|307786|307907|307922|307932|307935|307937|307938|307941|307944|307946|307947|307959|307969|307971|368950|431555|538998|538999|539000|622371|682807|790635|816464|818248|896498|896499|896500|896501|896502|896503|896504|896505|896506|896507|896508|896509|896510|896511|896512|896513|896514|896515|896516|896517|896518|896519|896520|896521|896522|896523|896524|896525|896526|896527|896528|896529|896530|896531|896532|905032|905033|905034|905035|905036|905037|905038|905039|916966|964280|966619", + "upstreamId": "24334|24335|24337|24338|24341|24342|24343|24344|24345|24346|76533|76534|193462|204425|252379|300384|300386|300387|300389|300390|300392|300396|300397|300402|300404|300405|300411|300413|300424|300426|300430|300438|300440|303224|303245|303246|303250|303256|303257|303258|303262|303263|303270|303272|303281|303283|303289|303291|303296|307741|307742|307744|307745|307747|307755|307756|307758|307759|307760|307762|307769|307779|307781|307782|307783|307786|307907|307922|307932|307935|307937|307938|307941|307944|307946|307947|307959|307969|307971|368950|431555|538998|538999|539000|622371|682807|790635|816464|818248|896498|896499|896500|896501|896502|896503|896504|896505|896506|896507|896508|896509|896510|896511|896512|896513|896514|896515|896516|896517|896518|896519|896520|896521|896522|896523|896524|896525|896526|896527|896528|896529|896530|896531|896532|905032|905033|905034|905035|905036|905037|905038|905039|916966|964280|966619", "text": "Cleidocranial dysostosis" }, { - "baseId": "24336", + "upstreamId": "24336", "text": "Cleidocranial dysplasia, forme fruste, with brachydactyly" }, { - "baseId": "24339", + "upstreamId": "24339", "text": "Cleidocranial dysplasia, forme fruste" }, { - "baseId": "24340", + "upstreamId": "24340", "text": "Cleidocranial dysplasia, severe, with osteoporosis and scoliosis" }, { - "baseId": "24343", + "upstreamId": "24343", "text": "Cleidocranial dysplasia, forme fruste, dental anomalies only" }, { - "baseId": "24347", + "upstreamId": "24347", "text": "Skin/hair/eye pigmentation, variation in, 9" }, { - "baseId": "24348|24349|24350|24351|24352|24353|24354|24355|317818|317822|317827|317831|317836|317842|317844|317848|317850|317854|317855|317857|317861|325701|325702|325703|325704|325711|325716|325717|325722|325732|325738|331929|331930|331932|331933|331939|331940|331950|331953|331955|331956|331965|331969|331972|331979|331984|331987|331988|331989|333461|333462|333473|333478|333484|333485|333489|333491|353250|713592|725164|870119|870120|870121|870122|870123|870124|870125|870126|870127|870128|870129|870130|870131|870132|870133|870134|870135|872260|872261", + "upstreamId": "24348|24349|24350|24351|24352|24353|24354|24355|317818|317822|317827|317831|317836|317842|317844|317848|317850|317854|317855|317857|317861|325701|325702|325703|325704|325711|325716|325717|325722|325732|325738|331929|331930|331932|331933|331939|331940|331950|331953|331955|331956|331965|331969|331972|331979|331984|331987|331988|331989|333461|333462|333473|333478|333484|333485|333489|333491|353250|713592|725164|870119|870120|870121|870122|870123|870124|870125|870126|870127|870128|870129|870130|870131|870132|870133|870134|870135|872260|872261", "text": "Ichthyosis bullosa of Siemens" }, { - "baseId": "24349", + "upstreamId": "24349", "text": "Ichthyosis exfoliativa" }, { - "baseId": "24356|24357|24358|24359|24361|24363|24364|24365|24367|24368|24379|24381|24382|24383|24384|24385|24386|24387|24388|46255|46270|46271|46272|46273|46274|46275|46276|46277|46278|46279|46280|46281|46282|46283|46284|46285|46286|46287|46288|46289|46290|46291|46292|46293|46294|46295|46296|46297|46298|46299|46300|46301|46302|46303|46304|46305|46306|46307|46309|46310|46311|46312|46313|46314|46315|46316|46318|46319|46320|46321|46322|46323|46324|46325|46326|46327|46328|46329|46330|46331|46332|46333|46334|46335|46336|46337|46339|46340|46341|46342|46343|46344|46345|46346|46347|46349|46350|46351|46352|46353|46354|46355|46356|46357|46359|46360|46361|46362|46363|46364|46365|46366|46367|46368|46369|46370|46371|46372|46373|46374|46375|46376|46377|46378|46379|46380|46381|46382|46383|46384|46385|46386|46388|46389|46390|46391|46392|46393|46394|46395|46396|46397|46398|46399|46400|46401|46402|46403|46404|46405|46406|46407|46408|46409|46410|46411|46412|46413|46414|46415|46416|46417|46418|46419|46421|46422|46423|46424|46425|46426|46427|46428|46429|46430|46431|46432|46433|46434|46436|46437|46438|46439|46440|46441|46442|46443|46444|46445|46446|46447|46448|46449|46450|46451|46452|46453|46454|46455|46456|46457|46458|46460|46461|46462|46464|46465|46466|46467|46468|46469|46470|46471|46472|46473|46474|46475|46476|46477|46478|46479|46480|46481|46482|46483|46484|46485|46486|46487|46488|46489|46491|46492|46492|46493|46494|46495|46496|46497|46498|46499|46500|46501|46502|46504|46505|46506|46507|46508|46509|46510|46511|46512|46513|46514|46515|46516|46517|46519|46520|46521|46523|46524|46525|46526|46527|46528|46529|46530|46531|46532|46533|46534|46535|46536|46537|46538|46539|46540|46541|46542|46543|46544|46545|46546|46547|46548|46549|46550|46551|46552|46553|46554|46555|46556|46557|46558|46559|46560|46561|46562|46563|46564|46565|46566|46567|46568|46569|46570|46571|46572|46574|46575|46576|46577|46578|46579|46580|46581|46582|46583|46584|46585|46586|46588|46589|46590|46591|46592|46593|46594|46595|46596|46597|46598|46599|46600|46601|46602|46603|46604|46605|46606|46607|46608|46609|46610|46614|46615|46616|46617|46618|46619|46620|46621|46622|46623|46624|46625|46626|46627|46628|46629|46630|46631|46632|46633|46634|46635|46636|46637|46638|46639|46640|46641|46642|46643|46644|46645|46646|46647|46648|46649|46650|46651|46652|46653|46654|46655|46656|46657|46658|46659|46660|46661|46662|46663|46664|46665|46666|46666|46667|46668|46669|46670|46671|46672|46673|46674|46675|46676|46677|46678|46679|46680|46681|46682|46683|46684|46685|46686|46687|46687|46688|46689|46690|46691|46692|46693|46694|46695|46696|46697|46698|46699|46700|46701|46702|46703|46704|46705|46706|46707|46708|46709|46710|46711|46711|46712|46713|46714|46715|46716|46717|46718|46719|46720|46721|46722|46723|46724|46725|46726|46727|46728|46729|46730|46731|46732|46733|46734|46735|46736|46737|46738|46739|46740|46741|46742|46743|46744|46745|46746|46747|46748|46749|46750|46751|46752|46753|46754|46755|46756|46757|46758|46759|46760|46761|46762|46763|46764|46765|46766|46767|46768|46769|46770|46771|46771|46772|46773|46774|46775|46776|46777|46778|46779|46780|46781|46782|46783|46784|46785|46786|46787|46788|46789|46790|46791|46792|46793|46794|46795|46796|46797|46798|46799|46800|46801|46802|46803|46804|46805|46806|46807|46808|46809|46810|46811|46812|46813|46814|46815|46816|46817|46818|46819|46820|46821|46822|46823|49978|49979|49980|49981|49982|49983|49984|49985|49987|49988|49990|49992|49995|49997|49998|49999|50000|50001|50002|50003|50004|50006|50007|50008|50009|50011|65703|65704|65706|65707|65708|65709|65710|65711|65712|65713|65714|65715|65716|65717|65718|65719|65720|65721|65722|65723|65724|65725|65726|65727|65728|65729|65730|65731|65732|65733|65734|65735|65736|65737|65738|65739|65740|65741|65742|65743|65744|65745|65746|65747|65748|65749|65750|65751|65752|65753|65754|65755|65756|65757|65758|65759|65760|65761|65762|65763|65764|65765|65766|65767|65768|65769|65770|65771|65772|65773|65774|65775|65776|65777|65778|65779|65780|65781|65782|65784|65785|65786|65787|65788|65789|65790|65791|65792|65793|65794|65795|65796|65797|65798|65799|65800|65802|65803|65804|65805|65806|65807|65808|65809|65810|65811|65812|65813|65814|65817|65818|65819|65820|65821|65822|65823|65824|65825|65826|65827|65828|65829|65830|65831|65832|65833|65834|65835|65836|65837|65838|65839|65840|65841|65842|65843|65844|65845|65846|65847|65848|65849|65850|65851|65852|65853|65854|65855|65856|65857|65858|65859|65860|65861|65862|65863|65864|65865|65866|65867|65868|65869|65872|65873|65874|65875|65876|65877|65878|65879|65880|65881|65882|65883|65884|65885|65886|65887|65888|65889|65890|65891|65893|65894|65895|65897|65898|65899|65900|65901|65902|65903|65904|65905|65906|65907|65908|65910|65911|65912|65913|65914|65915|65916|65917|65918|65919|65920|65921|65923|65924|65925|65926|65927|65928|65929|65930|65932|65933|65934|65935|65936|65937|65938|65939|65940|65941|65942|65943|65944|65945|65946|65947|65949|65950|65951|65952|65953|65954|65955|65956|65957|65958|65959|65960|65961|65962|65963|65964|65965|65966|65967|65968|65969|65970|65971|65972|65973|65974|65975|65976|65978|65979|65980|65981|65982|65983|65983|65984|65985|65986|65987|65988|65989|65990|65991|65992|65993|65994|65995|65996|65997|65998|65999|66000|66001|66002|66003|66004|66005|66006|66007|66008|66009|66010|66011|66012|66013|66014|66015|66016|66017|66018|66019|66020|66021|66022|66023|66024|66025|66026|66027|66028|66029|66030|66031|66032|66033|66034|66035|66036|66037|66038|66039|66040|66041|66042|66043|66044|66045|66046|66047|66048|66049|66050|66051|66052|66053|66054|66055|66056|66057|66058|66059|66060|66061|66062|66063|66064|66065|66066|66067|66068|66069|66070|66071|66072|66073|66074|66075|66076|66077|66078|66079|66080|66081|66082|66083|66084|66085|66086|66087|66088|66089|66090|66091|66092|66093|66094|66095|66096|66097|66098|66099|66100|66101|66102|66103|66104|66106|66107|66108|66109|66110|66111|66112|66114|66115|66116|66117|66118|66119|66120|66121|66122|66123|66124|66125|66126|66127|66128|66129|66130|66131|66132|66133|66135|66136|66137|66138|66139|66140|66141|66142|66143|66144|66145|66146|66147|66148|66149|66150|66152|66153|66154|66155|66156|66157|66158|66159|66160|66161|66162|66163|66165|66166|66167|66168|66169|66170|66171|66172|66173|66174|66175|66176|66177|66178|66179|66180|66181|66182|66183|66184|66185|66186|66187|66188|66189|66190|66191|66192|66193|66194|66195|66196|66197|66198|66199|66200|66201|66202|66203|66204|66205|66206|66207|66208|66209|66210|66211|66212|66213|66214|66215|66216|66217|66218|66219|66220|66221|66223|66224|66226|66227|66228|66229|66230|66231|66232|66233|66234|66235|66236|66237|66238|66239|66241|66242|66243|66244|66245|66246|66247|66248|66249|66250|66251|66252|66253|66254|66255|66256|66257|66258|66259|66260|66261|66262|66263|66264|66265|66266|66267|66268|66269|66270|66271|66272|66273|66274|66275|66276|66277|66278|66279|66280|66281|66282|66283|66284|66285|66286|66287|66288|66289|66290|66291|66292|66295|66297|66298|66299|66300|66301|66302|66303|66304|66305|66306|66307|66308|66309|66310|66311|66312|66313|66314|66315|66316|66317|66318|66319|66320|66321|66322|66323|66324|66325|66326|66327|66328|66329|66330|66331|66332|66333|66334|66335|66336|66337|66338|66339|66340|66341|66342|66344|66345|66346|66348|66349|66350|66351|66352|66354|66355|66356|66357|66358|66359|66360|66362|66363|66364|66365|66366|66367|66369|66370|66372|66373|66374|66375|66376|66377|66378|66379|66380|66381|66382|66383|66384|66385|66386|66387|66388|66389|66390|66391|66392|66393|66394|66395|66396|66397|66398|66399|66400|66401|66402|66403|66404|66405|66406|66407|66408|66409|66410|66411|66412|66413|66414|66415|66416|66417|66418|66419|66420|66421|66422|66423|66424|66425|66426|66427|66428|66429|66430|66432|66433|66434|66435|66436|66437|66438|66439|66440|66441|66442|66443|66445|66446|66447|66448|66449|66450|66451|66452|66453|66454|66455|66457|66458|66459|66460|66461|66462|66463|66465|66466|66467|66468|66469|66469|66470|66471|66472|66473|66474|66475|66476|66478|66479|66480|66481|66482|66483|66484|66485|66486|66487|66488|66489|66490|66491|66492|66493|66494|66496|66497|66498|66499|66500|66501|66502|66503|66504|66505|66506|66507|66508|66509|66510|66511|66512|66514|66515|66516|66517|66518|66519|66520|66521|66523|66524|66525|66526|66527|66528|66529|66530|66531|66532|66533|66534|66535|66536|66537|66539|66540|66541|66542|66543|66544|66545|66546|66547|66548|66549|66550|66551|66552|66553|66554|66555|66556|66557|66558|66559|66560|66561|66562|66563|66564|66565|66566|66567|66568|66569|66570|66571|66572|66573|66574|66575|66578|66579|66580|66581|66582|66584|66585|66586|66587|66589|66590|66591|66592|66593|66594|66595|66596|66597|66598|66599|66600|66601|66602|66603|66604|66605|66606|66607|66608|66609|66610|66611|66612|66613|66614|66615|66616|66617|66618|66619|66620|66621|66622|66623|66624|66625|66626|66627|66629|66630|66631|66632|66633|66634|66635|66636|66637|66638|66639|66640|66641|66642|66643|66644|66645|66646|66647|66648|66649|66650|66651|66652|66653|66654|66655|66658|66659|66661|66662|66663|66664|66665|66666|66667|66668|66669|66670|66671|66672|66673|66674|66675|66676|66677|66678|66679|66680|66681|66682|66683|66684|66685|66686|66687|66688|66689|66690|66691|66692|66693|66695|66696|66697|66698|66699|66700|66701|66702|66703|66704|66705|66707|66708|66709|66710|66711|66712|66713|66714|66715|66716|66717|66718|66719|66720|66722|66723|66724|66725|66726|66727|66728|66729|66731|66732|66733|66734|66735|66737|66739|66740|66741|66742|66743|66745|66747|66748|66749|66750|66751|66752|66753|66754|66755|66756|66757|66758|66759|66760|66762|66763|66764|66765|66766|66768|66769|66770|66771|66772|66773|66774|66775|66776|66777|66778|66779|66780|66781|66782|66783|66784|66785|66786|66787|66788|66789|66790|66791|66792|66793|66794|66795|66796|66797|66798|66799|66800|66801|66802|66803|66804|66805|66806|66807|66808|66809|66810|66811|66813|66814|66816|66817|66818|66819|66820|66821|66822|66823|66824|66825|66826|66827|66828|66829|66830|66831|66832|66833|66834|66835|66836|66838|66839|66840|66841|66842|66843|66844|66845|66846|66847|66848|66849|66850|66851|66852|66853|66855|66856|66858|66859|66860|66861|66862|66863|66864|66865|66866|66867|66868|66869|66870|66871|66872|66873|66874|66875|66876|66877|66878|66879|66880|66881|66882|66883|66884|66885|66886|66887|66888|66889|66890|66891|66892|66893|66894|66895|66896|66897|66899|66900|66901|66902|66903|66905|66905|66907|66907|66908|66909|66909|66910|66911|66912|66913|66914|66915|66916|66917|66918|66919|66920|66921|66922|66923|66924|66925|66926|66927|66928|66929|66930|66931|66932|66933|66934|66935|66936|66938|66939|66940|66941|66942|66943|66944|66945|66946|66947|66948|66949|66950|66951|66952|66953|66954|66955|66956|66957|66958|66959|66960|66961|66962|66963|66964|66965|66966|66967|66968|66969|66970|66972|66973|66974|66975|66976|66977|66978|66979|66980|66982|66983|66984|66985|66986|66987|66988|66989|66990|66991|66992|66993|66994|66995|66996|66997|66998|66999|67000|67001|67002|67003|67004|67005|67006|67007|67008|67009|67010|67011|67012|67013|67014|67015|67017|67018|67019|67020|67021|67022|67023|67024|67025|67026|67027|67028|67029|67030|67031|67032|67033|67034|67038|67039|67040|67042|67043|67044|67045|67046|67047|67049|67050|67051|67052|67053|67054|67055|67056|67057|67058|67059|67060|67062|67063|67064|67065|67066|67067|67068|67069|67070|67071|67072|67073|67074|67075|67076|67077|67078|67079|67080|67081|67082|67083|67084|67085|67086|67087|67088|67089|67090|67091|67092|67093|67094|67095|67096|67097|67098|67099|67100|67101|67102|67103|67104|67105|67106|67107|67108|67109|67110|67111|67112|67113|67114|67115|67116|67117|67118|67119|67120|67121|67122|67123|67124|67126|67127|67128|67129|67130|67131|67131|67132|67133|67134|67135|67136|67137|67138|67139|67139|67140|67141|67142|67143|67144|67145|67146|67147|67148|67149|67150|67151|67152|67153|67154|67155|67157|67158|67159|67160|67161|67162|67163|67164|67165|67166|67167|67168|67169|67170|67171|67172|67173|67174|67175|67176|67177|67178|67179|67180|67181|67183|67184|67185|67186|67187|67188|67189|67190|67191|67192|67193|67194|67195|67196|67197|67199|67200|67201|67202|67203|67204|67205|67206|67208|67209|67210|67211|67212|67214|67215|67216|67217|67218|67219|67220|67222|67223|67224|67225|67226|67227|67228|67229|67230|67231|67232|67233|67234|67235|67236|67237|67238|67239|67240|67241|67242|67244|67245|67247|67248|67249|67250|67251|67252|67253|67254|67255|67257|67258|67259|67260|67261|67262|67263|67264|67265|67266|67267|67268|67269|67270|67271|67272|67273|67274|67275|67276|67277|67278|67279|67280|67281|67282|67283|67284|67285|67286|67287|67288|67289|67290|67291|67292|67293|67294|67295|67297|67298|67299|67300|67301|67302|67303|67304|67305|67306|67307|67309|67310|67311|67312|67313|67314|67316|67317|67319|67320|67321|67322|67323|67324|67325|67326|67327|67328|67329|67330|67331|67332|67333|67335|67336|67337|67338|67339|67340|67341|67342|67343|67344|67345|67346|67348|67349|67350|67351|67352|67353|67354|67355|67356|67357|67358|67359|67360|67361|67362|67363|67364|67365|67366|67367|67368|67369|67370|67371|67372|67373|67374|67375|67376|67377|67379|67380|67381|67382|67383|67384|67385|67386|67387|67388|67389|67390|67391|67392|67393|67394|67395|67396|67397|67398|67399|67400|67401|67402|67403|67404|67405|67406|67407|67408|67409|67410|67411|67412|67413|67415|67416|67417|67418|67419|67420|67421|67422|67423|67425|67426|67427|67428|67429|67430|67431|67432|67433|67434|67435|67436|67437|67438|67439|67440|67441|67442|67443|67444|67445|67446|67447|67448|67449|67450|67451|67452|67453|67455|67456|67457|67458|67459|67461|67462|67463|67464|67465|67466|67467|67468|67469|67470|67471|67472|67473|67474|67475|67476|67477|67478|67479|67480|67481|67482|67484|67485|67486|67487|67488|67489|67490|67491|67492|67493|67494|67495|67496|67497|67498|67499|67500|67501|67502|67504|67505|67506|67507|67508|67509|67510|67511|67512|67513|67514|67515|67516|67517|67518|67519|67520|67521|67522|67523|67524|67526|67527|67528|67529|67530|67531|67532|67533|67534|67535|67536|67537|67538|67539|67540|67541|67542|67543|67544|67545|67546|67547|67548|67549|67550|67551|67552|67553|67554|67555|67556|67557|67558|67559|67561|67562|67563|67564|67565|67566|67567|67568|67569|67570|67571|67572|67573|67574|67575|67576|67577|67578|67579|67580|67581|67582|67583|67584|67585|67586|67587|67588|67589|67590|67591|67592|67593|67594|70445|70446|70447|70448|70574|94582|94583|94587|94589|94590|94591|94592|94596|96886|96887|96888|96889|96890|96891|96892|96893|96894|96895|96896|96897|96898|96899|96900|96901|96902|96903|96904|96905|96906|96907|96908|96909|96910|96911|96912|96914|96915|96916|96917|96918|96919|96920|96921|96922|96923|96924|96925|96926|96927|96928|96929|96930|96931|96932|96933|96934|96935|96936|96937|96938|96939|96940|96942|96943|96944|96945|96946|96947|96948|96949|96950|96951|96952|96953|96954|96955|96956|96957|96958|96959|96960|96961|96962|96963|96964|96965|96966|96967|96968|96969|96970|96971|96972|96973|96974|96975|96976|96977|96978|96979|96980|96981|96982|96983|96984|96985|96986|96987|96988|96989|96990|96991|96992|96993|96994|96995|96996|96997|96998|96999|97000|97001|97002|97003|97004|97006|97007|97008|97009|97010|97011|97012|97013|97014|97147|97148|97149|97150|97151|97152|97153|97154|97155|97156|97157|97158|97159|97160|97161|97162|97163|97164|97165|97166|97167|97168|97169|97170|97171|97172|97173|97174|97175|97176|97177|97178|97179|97180|97181|97182|97207|97208|97209|97210|97211|97212|97213|97214|97215|97216|97217|97218|97219|97220|97221|97222|97223|97224|97225|97226|97227|97228|97229|97230|97231|97232|97233|97234|97235|97236|97237|97238|97239|97241|97242|97243|97244|97245|97246|97247|97248|97249|97250|97251|97252|97253|97254|97255|97256|97257|97258|97259|97260|97261|97262|97264|97265|97266|97267|97268|97270|97271|97272|97273|97274|97275|97276|97277|97278|97279|97280|97281|97282|97283|97284|97285|97286|97287|97288|97289|97290|97291|97292|97293|97294|97295|97296|97297|97298|97299|97301|97302|97303|97304|97305|97306|97307|97308|97309|97310|97311|97312|97314|97315|97316|102661|102662|102663|102664|102665|102666|102667|102668|102669|102670|102671|102672|102673|102674|102675|102676|102677|102678|102679|102680|102681|102682|102683|102684|102685|102686|102687|102688|102689|102690|102691|102692|102693|102694|102695|102696|102697|102698|102700|102701|102703|102704|102705|102706|102707|102708|102709|102710|102711|102712|102713|102714|102715|102716|102717|102718|102719|102720|102721|102722|102723|102724|102725|102726|102727|102728|102729|102730|102731|102732|102733|102734|102735|102736|102737|102738|102739|102740|102741|102742|102743|102744|102745|102746|102747|102748|102749|102750|102751|102752|102753|102754|102755|102756|102757|102758|102760|102761|102762|102763|102764|102765|102766|102767|102768|102769|102770|102771|102772|102773|102774|102775|102776|102777|102778|102779|102780|102781|102782|102783|102784|102785|102786|102787|102788|102789|102790|102791|102792|102793|102861|102862|102863|102864|102865|102866|102867|102868|102869|102870|131459|131460|131462|131463|131464|131465|131466|131468|131469|131470|131471|131472|131473|131474|131475|131480|131481|131482|131483|131484|131485|131486|131487|131488|131489|131490|131491|131492|131493|131494|131495|131496|131500|131503|131504|131505|131508|131510|131511|131512|131513|131514|131515|131516|131517|131518|131519|131520|131522|131523|131526|131527|131528|131529|131530|131531|131533|131534|131535|131536|131537|131538|131539|131541|131542|131543|131545|131546|131547|131548|131549|131550|131552|131554|131556|131557|131558|131560|131561|131562|131565|131566|131567|131568|131569|131570|131571|131572|131573|131574|131575|131577|131579|131583|131584|131586|131587|131588|131589|131591|131593|131594|131595|131597|131600|131601|131602|131603|131604|131605|131607|131610|131611|131612|131614|131615|131617|131618|131620|131624|131625|131626|131627|131629|131630|131631|131633|131634|131635|131636|131637|131638|131640|131643|131644|131645|131646|131647|131648|131651|131652|131654|131655|131656|131658|131660|131661|131662|131663|131664|131666|131667|131668|131670|131671|131672|131673|131674|131675|131676|131677|131678|131679|131680|131681|131682|131683|131684|131685|131686|131687|131688|131689|131690|131691|131692|131693|131694|131695|131696|131697|131698|131700|131701|131702|131704|131705|131706|131707|131708|131711|131712|131713|131715|131716|131717|131718|131719|131721|131723|131725|131726|131727|131728|131729|131730|131731|131732|131733|131735|131736|131737|131738|131739|131740|131741|131742|131743|131744|131745|131747|131748|131749|131750|131751|131752|131753|131754|131755|132698|136435|136512|136518|136527|136528|136529|136530|137467|137468|137475|137477|137481|139502|139503|139505|139506|139507|139508|139509|139514|139515|139517|139518|139520|139521|139522|139524|139525|139526|139529|139532|140256|140257|140258|140259|140260|140261|140262|140263|140264|140265|140268|140269|140270|140271|140272|140273|140274|140275|140276|150722|150729|150752|150782|150784|150796|150798|150802|150818|150832|150843|150867|150869|150876|150909|150913|150927|150933|150948|150997|151048|151049|151059|151077|151113|151163|151183|151192|151220|151223|151224|151253|151286|151287|151340|151343|151344|151371|151411|151443|151494|151496|151501|151502|151507|151512|151513|151521|151525|151567|151581|151586|151615|151620|151675|151700|151701|151703|151737|151740|151744|151750|151768|151809|151929|152002|152021|152023|152027|152030|152105|152112|152136|152158|152234|152241|152302|152322|152331|152343|152352|152360|152362|152401|152431|152436|152485|152496|152497|152501|152509|152511|152543|152545|152547|152562|152575|152580|152582|152588|152603|152632|152637|152677|152711|152738|165476|165962|165963|165964|165965|165966|165967|165968|165969|165970|165971|165972|165973|165974|165975|165976|165977|165978|165979|165980|165998|165999|166254|166255|166256|166257|166258|171818|171819|171820|171822|180552|180554|180555|180557|180558|180563|180567|180568|180571|180572|180573|180576|180578|180579|180581|180584|180588|180596|180597|180600|180601|180604|180606|180608|180611|180613|180615|180622|180628|180630|180632|180636|180637|180642|180645|180651|180653|180657|180660|180661|180665|180666|180669|180670|180671|180680|180690|180691|180693|180695|180696|180697|180702|181310|181311|181312|183612|183614|183616|183617|183619|183620|183621|183622|183624|183625|183626|183627|183629|183632|183635|183638|183641|183642|183644|183645|183646|183647|183648|183649|183650|183651|183655|183657|183659|183660|183661|183662|183664|183667|183668|183670|183671|183674|183675|183680|183681|183682|183683|183684|183686|183688|183693|183695|183699|183701|183702|183704|183705|183706|183707|183708|183709|183711|183713|183714|183715|183716|183717|183718|183720|183722|183723|183724|183725|183728|183731|183733|183737|183738|183739|183740|183742|183744|183745|183747|183748|183750|183751|183752|183754|183756|183757|183758|183759|183763|183764|183765|183766|183769|183770|183771|183774|183776|183777|183778|183779|183782|183783|183784|183786|183787|183790|183791|183792|183793|183795|183796|183797|183798|183799|183800|183801|183802|183804|183805|183806|183807|183809|183810|183812|183813|183815|183816|183817|183819|183820|183821|183822|183823|183824|183826|183829|183830|183831|183832|183833|183835|183837|183841|183845|183847|183849|183850|183854|183855|183856|183857|183860|183861|183863|183864|183865|183866|183868|183870|183871|183872|183874|183875|183876|183877|183879|183881|183883|183884|183885|183886|183887|183888|183889|183890|183891|183892|183893|183894|183897|183898|183900|183902|183904|183905|183907|183908|183909|183911|183912|183914|183916|183917|183918|183919|183922|183923|183925|183926|183927|183928|183931|183934|183936|183937|183938|183939|183940|183941|183943|183944|183945|183946|183947|183948|183950|183951|183952|183954|183958|183959|183960|183961|183963|183965|183970|183971|183973|183974|183976|183979|183980|183981|183982|183984|183985|183986|183987|183989|183991|183993|184000|184001|184002|184003|184004|184006|184008|184009|184010|184011|184012|184013|184014|184016|184018|184021|184024|184025|184027|184028|184030|184031|184034|184037|184038|184039|184041|184042|184043|184044|184045|184046|184047|184048|184049|184050|184051|184052|184053|184054|184055|184056|184057|184058|184060|184066|184067|184068|184069|184070|184071|184072|184073|184074|184076|184080|184081|184082|184083|184084|184087|184089|184090|184092|184093|184095|184097|184098|184100|184102|184104|184105|186170|186175|186176|186437|186440|186441|186442|186443|186446|186450|186451|186452|186453|186454|186455|186456|186872|190027|190952|194260|204644|205807|205808|205809|205810|205811|205812|205813|205814|205815|205816|205817|205818|205819|205820|205821|205822|205823|205824|205825|205826|205827|205828|205829|205830|205831|205832|205833|205834|205835|205836|205837|205838|205839|205840|205841|205842|205843|205844|205845|205846|205847|205848|205849|205850|205851|205852|205853|205854|205855|205856|205857|205858|205859|205860|205861|205862|205863|205864|205865|205866|205867|205868|205869|205870|205871|205872|205873|205874|205875|205876|205877|205878|205879|205880|205881|205882|205883|205884|205885|205886|205887|205888|205889|205890|205891|205892|205893|205894|205895|205896|205897|205898|205899|205900|205901|205902|205903|205904|205905|205906|205907|205908|205909|205910|205912|205913|205914|205915|205916|205917|205918|205919|205920|205921|205922|205923|205924|205925|205926|205927|205928|205929|205930|205931|205932|205933|205934|205935|205936|205937|205938|205940|205941|205942|205943|205944|205945|205946|205947|205948|205949|205950|205951|205952|205953|205954|205955|205956|205957|205958|205959|205960|205961|205962|205963|205964|205965|205966|205967|205968|205969|205970|205972|205973|205974|205975|205976|205977|205978|205979|205980|205981|205982|205983|205984|205985|205986|205987|205988|205989|205990|205991|205992|205993|205994|205995|205996|205997|205998|205999|206000|206001|206002|206003|206004|206005|206006|206007|206008|206009|206010|206011|206012|206013|206014|206015|206016|206017|206018|206019|206021|206022|206023|206024|206025|206026|206027|206028|206029|206030|206031|206032|206033|206034|206035|206036|206037|206038|206039|206040|206041|206042|206043|206044|206045|206046|206047|206048|206049|206050|206051|206052|206053|206054|206055|206056|206057|206058|206059|206060|206061|206062|206063|206064|206066|206067|206068|206069|206070|206071|206072|206073|206074|206075|206076|206077|206078|206079|206080|206081|206082|206083|206084|206085|206086|206087|206088|206089|206090|206091|206092|206093|206094|206095|206096|206097|206098|206099|206100|206101|206102|206103|206104|206105|206106|206107|206108|206109|206110|206111|206112|206113|206114|206115|206116|206117|206118|206119|206120|206121|206122|206123|206124|206125|206126|206127|206128|206129|206130|206131|206132|206133|206134|206135|206136|206137|206138|206139|206140|206141|206142|206143|206144|206145|206146|206147|206148|206149|206150|206151|206152|206153|206154|206155|206156|206157|206158|206159|206160|206161|206162|206163|206164|206165|206167|206168|206169|206170|206171|206172|206173|206174|206175|206176|213020|213023|213028|213029|213030|213031|213038|213039|213042|213043|213045|213046|213047|213051|213056|213058|213060|213066|213067|213070|213072|213073|213074|213075|213076|213077|213078|213079|213080|213081|213082|213083|213084|213088|213095|213096|213098|222271|222274|222280|222281|222283|222284|222287|222288|222292|222295|222297|222298|222299|222302|222303|222307|222311|222314|222315|222317|222322|222325|222326|222327|222329|222330|222331|222333|222335|222336|222337|222341|222342|222343|222344|222345|222347|222350|222352|223361|225311|226152|226154|226155|226159|226164|226169|226171|226173|226178|226180|226181|226186|226189|226190|226191|226352|226353|227195|227519|227520|227521|227522|227523|227524|227525|227526|227527|227528|227529|227530|227531|227532|227533|227534|227535|227536|227537|227538|227539|227540|227541|227542|227543|227544|227545|227546|227547|227548|227549|227550|227551|227552|227553|227554|227555|227556|227572|230442|230443|231855|231864|231866|231871|231872|231875|231880|231882|231884|231890|231893|231894|231895|231902|231905|231906|231907|231908|231912|234590|234594|234595|234596|234597|234606|234607|234608|234609|234611|234615|234617|234618|234622|234624|234628|234629|234630|234634|234635|234639|234641|234643|234645|234647|234651|234658|234659|234660|234663|234665|234666|234667|234675|234676|234678|234679|234681|234682|234687|234688|234689|234692|234693|234697|234700|234703|234704|234705|234707|234708|234710|234711|234714|234715|234716|234718|234719|234721|234724|234730|234735|234738|234739|234740|234741|234746|234747|234748|234749|234751|234752|234753|234754|234755|234757|234758|234759|234760|234763|234766|234771|234773|234776|234777|234780|234782|234783|234786|234787|234793|234795|234796|234797|234799|234800|234802|234804|234806|234808|234809|234810|234812|234818|234821|234822|234823|234824|234830|234831|234833|234836|234838|234839|234840|234843|234844|234846|234848|234852|234855|234857|234859|234860|234861|234862|234863|234866|234868|234871|234872|234875|234878|234880|234881|234882|234884|234887|234888|234896|234899|234900|234903|234906|234907|234909|234911|234912|234914|234917|234919|234923|234924|234926|234929|234931|234933|234934|234938|234939|234942|234943|234945|234949|234951|234955|234965|234967|234973|234979|234980|234983|234983|234985|234986|234989|234998|235000|235003|235010|235015|235016|235019|235020|235022|235024|235026|235027|235028|235031|235032|235035|235036|235038|235041|235044|235045|235048|235050|235052|235054|235055|235059|235069|235073|235077|237817|237818|237819|237820|237821|237822|237823|237824|237825|237826|241632|241633|241634|241636|241638|241640|241643|241646|241649|241650|241651|241654|241655|241656|241661|241662|241663|241666|241667|241668|241670|241672|241675|241676|241677|241682|241683|241688|241690|241696|241697|241699|241703|241706|241710|241714|241715|241716|241719|241721|241725|241726|241733|241734|244842|244843|244849|244852|244854|246784|246785|246786|246787|246788|246789|246790|246791|246792|246793|246794|246795|246796|246797|246798|246799|246800|246801|246802|246803|246804|246805|246806|246807|246833|246834|246836|246837|246838|246839|246840|246841|246842|246843|246844|246845|247212|247213|247214|247215|247216|247217|247218|247219|247220|247221|247222|247223|247224|247225|247226|247227|247228|247229|247230|247231|247232|247233|247234|247235|247236|247237|247238|247239|247240|247241|247242|247243|247244|247245|247246|247247|247248|247249|247250|247251|247252|247253|247254|247255|247256|247257|247258|247259|247260|247261|247262|247295|247296|247439|248505|248906|248907|248908|248909|248910|248911|248912|248913|248914|248915|248916|248917|248918|248919|248920|248921|248922|248923|248924|248925|248926|248927|248928|248929|248930|248931|248932|248933|248934|248935|248936|248937|248938|248939|248940|248941|248942|248943|248944|248945|248946|248947|248948|248949|248950|248951|248952|248953|248954|248955|248956|248957|248958|248959|248960|248961|248962|248963|248964|248965|248966|248967|248968|248969|248970|248971|248972|248973|248974|248975|248976|248977|248978|248979|248980|248981|248982|248983|248984|248985|248986|248987|248988|248989|248990|248991|248992|248993|248994|248995|248996|248997|248998|248999|249000|249001|249002|249003|249004|249005|249006|249007|249008|249009|249010|249011|249012|249013|249014|249015|249016|249017|249018|249019|249020|249021|249022|249023|249024|249025|249026|249027|249028|249029|249030|249031|249032|249033|249034|249035|249036|249037|249038|249039|249040|249041|249042|249043|249044|249045|249046|249047|249048|249049|249050|249051|249052|249053|249054|249055|249056|249057|249058|249059|249060|249061|249062|249063|249064|249065|249066|249067|249068|249069|249070|249071|249178|249179|254846|254847|259407|259408|259409|259410|259411|259412|259413|259414|259415|259416|259417|259418|259419|259420|259421|259422|259423|259424|259425|259426|259427|259428|259429|259430|259431|259432|259433|259434|259435|259436|259437|259438|259439|259440|259441|259442|259443|259444|259445|259446|259447|259448|259449|259450|259451|259452|259453|259454|259455|259456|259457|259458|259459|259460|259461|259462|259463|259464|259465|259466|259467|259468|259469|259470|259471|259472|259473|259474|259475|259476|259477|259478|259479|259480|259481|259482|259483|259484|259485|259486|259487|259488|259489|259490|259491|259492|259493|259494|259495|259496|259497|259498|259499|259500|259501|259502|259503|259504|259505|259506|259507|259508|259509|259510|259511|259512|259513|259514|259515|259516|259517|259518|259519|259520|259521|259522|259523|259524|259525|259526|259527|259528|259529|259530|259531|259532|260040|260041|260046|260047|260048|260049|260984|260985|260986|260987|260988|260989|260990|260991|260992|260993|260994|260995|260996|260997|260998|260999|261000|261001|261002|261003|261004|261005|261006|261007|261008|261009|261010|261011|261012|261013|261014|261015|261016|261017|261018|261019|261020|261021|261022|261023|261024|261025|261026|261027|261028|261029|261030|261031|261032|261033|261034|261035|261036|261037|261038|261039|261040|261041|261042|261043|261044|261045|261046|261047|261048|261049|261050|261051|261052|261053|261054|261055|261056|261057|261058|261059|261060|261061|261062|261063|261064|261065|261066|261067|261068|261069|261070|261071|261072|261073|261074|261075|261076|261077|261078|261079|261080|261081|261082|261083|261084|261085|261086|261087|261088|261089|261090|261091|261092|261093|261094|261095|261096|261097|261098|261099|261100|261101|261102|261103|261104|261105|261106|261107|261108|261109|261110|261111|261112|261113|261114|261115|261116|261117|261118|261119|261120|261121|261122|261123|261124|261125|261126|261127|261128|261129|261130|261131|261132|261133|261134|261135|261136|261137|261138|261139|261140|261141|261142|261143|261144|261145|261146|261147|261148|261149|261150|261151|261152|261153|261154|261155|261156|261157|261158|261159|261160|261161|261162|261163|261164|261165|261166|261167|261168|261169|261170|261171|261172|261173|261174|261175|261176|261177|261178|261179|261180|261181|261182|261183|261184|261185|261186|261187|261188|261189|261190|261191|261192|261193|261194|261195|261196|261197|261198|261199|261200|261201|261202|261203|261204|261205|261206|261207|261208|261209|261210|261211|261212|261213|261214|261215|261216|261217|261218|261219|261220|261221|261222|261223|261224|261225|261226|261227|261228|261229|261230|261231|261232|261233|261234|261235|261236|261237|261238|261239|261240|261241|261242|261243|261244|261245|261246|261247|261248|261249|261250|261251|261252|261253|261254|261255|261256|261257|261258|261259|261260|261261|261262|261263|261264|261265|261266|261267|261268|261269|261270|261271|261272|261273|261274|261275|261276|261277|261278|261279|261280|261281|261282|261283|261284|261285|261286|261287|261288|261289|261290|261291|261292|261293|261294|261295|261296|261297|261298|261299|261300|261301|261302|261303|261304|261305|261306|261307|261308|261309|261310|261311|261312|261313|261314|261315|261316|261317|261318|261319|261320|261321|261322|261323|261324|261325|261326|261327|261328|261329|261330|261331|261332|261333|261334|261335|261336|261337|261338|261339|261340|261341|261342|261343|261344|261345|261346|261347|261348|261349|261350|261351|261352|261353|261354|261355|261356|261357|261358|261359|261360|261361|261362|261363|261364|261365|261366|261367|261368|261369|261370|261371|261372|261373|261374|261375|261376|261377|261378|261379|261380|261381|261382|261383|261384|261385|261386|261387|261388|261389|261390|261391|261392|261393|261394|261395|261396|261397|261398|261399|261400|261401|261402|261403|261404|261405|261406|261407|261408|261409|261410|261411|261412|261413|261414|261415|261416|261417|261418|261419|261420|261421|261422|261423|261424|261425|261426|261427|261428|261429|261430|261431|261432|261433|261434|261435|261436|261437|261438|261439|261440|261441|261442|261443|261444|261445|261446|261447|261448|261449|261450|261451|261452|261453|261454|261455|261456|261457|261458|261459|261460|261461|261462|261463|261464|261465|261466|261467|261468|261469|261470|261471|261472|261473|261474|261475|261476|261477|261478|261479|261480|261481|261482|261483|261484|261485|261486|261487|261488|261489|261490|261491|261492|261493|261494|261495|261496|261497|261498|261499|261500|261501|261502|261503|261504|261505|261506|261507|261508|261509|261510|261511|261512|261513|261514|261515|261516|261517|261518|261519|261520|261521|261522|261523|261524|261525|261526|261527|261528|261529|261530|261531|261532|261533|261534|261535|261536|261537|261538|261539|261540|261541|261542|261543|261544|261545|261546|261547|261548|261549|261550|261551|261552|261553|261554|261555|261556|261557|261558|261559|261560|261561|262097|262766|262767|262768|262769|262770|262771|262772|262773|262774|262775|262776|262777|262778|262779|262780|262781|262782|262783|262784|262785|262786|262787|262788|262789|262790|262791|262792|262793|262794|262795|262796|262797|262798|262799|262800|262801|262802|262803|262804|262805|262806|262807|262808|262809|262810|262811|262812|262813|262814|262815|262816|262817|262818|262819|262820|262821|262822|262823|262824|262825|262826|262827|262828|262829|262830|262831|262832|262833|262834|262835|262836|262837|262838|262839|262840|262841|262842|262843|262844|262845|262846|262847|262848|262849|262850|262851|262852|262853|262854|262855|262856|262857|262858|262859|262860|262861|262862|262863|263868|264668|319365|319367|319371|327917|327920|327924|334200|334204|334205|334218|335892|335896|335906|335918|335956|358888|358889|358890|358891|358892|358893|358894|358895|358896|358897|358898|360060|360712|360713|360714|360715|360719|360747|360748|360777|361610|362356|372685|372710|372717|372763|373401|373418|373436|373497|373654|373676|373679|373689|373703|373771|373777|373782|375573|390674|399162|399181|399183|399199|399207|399215|399216|399219|399221|399287|399292|399302|399320|399329|399334|399351|399363|399382|399385|399391|399393|399396|399409|399437|399445|399449|399458|399460|399607|399646|399656|399659|399677|399686|399699|399702|399714|399745|399759|399780|399804|399837|399854|399870|399878|399886|399894|399914|399936|399939|399952|399961|399979|399986|399992|400023|400038|400049|400063|400085|400122|400150|404598|404602|404604|408824|408829|408830|408832|408833|408835|408845|408847|408849|408851|408856|408857|408860|408861|408864|408866|408871|408874|408875|408890|408892|408893|408897|408902|408904|408910|408911|408914|408915|408918|408920|408925|408927|408929|408930|408943|408947|408948|408954|408958|408964|408968|408972|408976|408981|408986|408987|408996|408998|409004|409005|409009|409019|413880|416223|416225|416226|416227|416231|416232|416233|416234|416235|416236|416237|416238|416239|416240|416241|416242|416243|416244|416245|416246|416247|416248|416249|416250|416251|416252|416253|416254|416255|416256|416257|416258|416259|416260|416261|416262|416263|416264|416265|416266|416267|416268|416269|416270|416271|416272|416273|416274|416275|416276|416277|416278|416279|416280|416281|416282|416283|416284|416285|416286|416287|416288|416289|416290|416291|416292|416293|416294|416295|416296|416297|416298|416299|416300|416301|416302|416303|416304|416305|416306|416307|416308|416309|416310|416311|416312|416313|416314|416315|416316|416317|416318|416319|416320|416321|416322|416323|416324|416325|416326|416327|416328|416329|416330|416331|416332|416333|416334|416335|416336|416337|416338|416339|416340|416341|416342|416343|416344|416345|416346|416347|416348|416349|416350|416351|416352|416353|416354|416355|416356|416357|416358|416359|416360|416361|416362|416363|416364|416365|416366|416367|416368|416369|416370|416371|416372|416373|416374|416375|416376|416377|416378|416379|416380|416381|416382|416383|416384|416385|416386|416387|416388|416389|416390|416391|416392|416393|416394|416395|416396|416397|416398|416399|416400|416401|416402|416403|416404|416405|416406|416407|416408|416409|416410|416411|416412|416413|416414|416415|416416|416417|416418|416419|423245|423246|423247|423248|423249|424497|424722|424725|424727|424729|424730|424734|424736|424737|424738|424740|424752|424758|424762|424763|424765|424768|424769|424770|424772|424778|424780|426757|427338|427341|427345|427351|427358|427362|427369|427371|427372|427373|427375|427398|427411|427429|427430|429493|429494|429497|432007|432370|432383|432761|432762|432777|432784|432789|432793|432795|432796|432798|432799|432803|432810|432811|434051|434052|434053|434054|434055|434056|434057|434058|434059|434060|434061|434062|434063|434064|434065|434066|434067|434081|434082|434084|434944|434950|434951|434954|434955|434958|434965|434967|434972|434977|434980|434988|434993|434995|434998|435007|435010|435013|435016|435020|435021|435026|435027|435029|435030|435031|435034|435041|435047|435051|435063|435074|435078|435082|435090|462850|463133|463171|463485|463496|463547|463599|468155|476615|476660|476720|476836|476852|476911|476915|476967|476976|477132|480468|480469|480470|480471|480472|480473|480474|480475|480476|484611|484636|484755|484791|484850|484941|486647|487405|508878|508879|508880|508881|512860|512862|512863|512864|512865|512939|512940|513333|513334|513336|513337|513338|513369|527578|527796|527927|528073|528114|536423|538638|538639|538640|538641|538642|538643|538645|538646|538647|538648|538649|538650|538651|538652|538653|538654|538655|538656|538657|538658|538659|538660|538661|538662|538663|538664|538665|538666|538667|538668|538669|538670|538671|538672|538673|538674|538675|538676|538677|538678|538679|538680|538681|538682|538683|538684|538685|538686|538687|538688|538689|538690|538691|538692|538693|538694|538695|538696|538697|538698|538699|538700|538701|538702|538703|538704|538705|538706|538707|538708|538709|538710|538711|538712|538713|538714|538715|538716|538717|538718|538720|538721|538722|538723|538724|538725|538726|538727|538728|538729|538730|538731|538733|538734|538735|538736|538737|538738|538739|538740|538741|538742|538743|538744|538746|538747|538748|538749|538750|538751|538752|538753|538754|538755|538756|538757|539331|539332|539333|539334|539335|539336|539337|539338|539339|539340|550198|568308|575894|575896|575897|575899|575900|575901|575902|575903|575904|575905|575907|575908|575909|575911|575912|575913|575914|575915|575917|575919|575920|575922|576266|581823|609297|618039|618083|619905|625975|626441|641694|641915|645950|672000|672001|682731|753815|784568|789565|791298|791299|791300|791301|791302|791303|791304|791305|791306|791307|791308|791309|791310|791311|791312|791313|791314|791315|791316|791317|791318|791319|791320|791321|791322|791323|791324|791325|791326|791327|791328|791329|791330|791331|791332|791333|791334|791335|791336|791337|791338|791339|791340|791341|799100|800790|800793|800794|800795|800796|811340|840638|858807|858808|861539|861552|871070|871071|871072|871073|871074|871075|871076|871077|872326|919496|919497|964678|965615|966853|967199|972455|972476|972479|974563|974939|977409", + "upstreamId": "24356|24357|24358|24359|24361|24363|24364|24365|24367|24368|24379|24381|24382|24383|24384|24385|24386|24387|24388|46255|46270|46271|46272|46273|46274|46275|46276|46277|46278|46279|46280|46281|46282|46283|46284|46285|46286|46287|46288|46289|46290|46291|46292|46293|46294|46295|46296|46297|46298|46299|46300|46301|46302|46303|46304|46305|46306|46307|46309|46310|46311|46312|46313|46314|46315|46316|46318|46319|46320|46321|46322|46323|46324|46325|46326|46327|46328|46329|46330|46331|46332|46333|46334|46335|46336|46337|46339|46340|46341|46342|46343|46344|46345|46346|46347|46349|46350|46351|46352|46353|46354|46355|46356|46357|46359|46360|46361|46362|46363|46364|46365|46366|46367|46368|46369|46370|46371|46372|46373|46374|46375|46376|46377|46378|46379|46380|46381|46382|46383|46384|46385|46386|46388|46389|46390|46391|46392|46393|46394|46395|46396|46397|46398|46399|46400|46401|46402|46403|46404|46405|46406|46407|46408|46409|46410|46411|46412|46413|46414|46415|46416|46417|46418|46419|46421|46422|46423|46424|46425|46426|46427|46428|46429|46430|46431|46432|46433|46434|46436|46437|46438|46439|46440|46441|46442|46443|46444|46445|46446|46447|46448|46449|46450|46451|46452|46453|46454|46455|46456|46457|46458|46460|46461|46462|46464|46465|46466|46467|46468|46469|46470|46471|46472|46473|46474|46475|46476|46477|46478|46479|46480|46481|46482|46483|46484|46485|46486|46487|46488|46489|46491|46492|46492|46493|46494|46495|46496|46497|46498|46499|46500|46501|46502|46504|46505|46506|46507|46508|46509|46510|46511|46512|46513|46514|46515|46516|46517|46519|46520|46521|46523|46524|46525|46526|46527|46528|46529|46530|46531|46532|46533|46534|46535|46536|46537|46538|46539|46540|46541|46542|46543|46544|46545|46546|46547|46548|46549|46550|46551|46552|46553|46554|46555|46556|46557|46558|46559|46560|46561|46562|46563|46564|46565|46566|46567|46568|46569|46570|46571|46572|46574|46575|46576|46577|46578|46579|46580|46581|46582|46583|46584|46585|46586|46588|46589|46590|46591|46592|46593|46594|46595|46596|46597|46598|46599|46600|46601|46602|46603|46604|46605|46606|46607|46608|46609|46610|46614|46615|46616|46617|46618|46619|46620|46621|46622|46623|46624|46625|46626|46627|46628|46629|46630|46631|46632|46633|46634|46635|46636|46637|46638|46639|46640|46641|46642|46643|46644|46645|46646|46647|46648|46649|46650|46651|46652|46653|46654|46655|46656|46657|46658|46659|46660|46661|46662|46663|46664|46665|46666|46666|46667|46668|46669|46670|46671|46672|46673|46674|46675|46676|46677|46678|46679|46680|46681|46682|46683|46684|46685|46686|46687|46687|46688|46689|46690|46691|46692|46693|46694|46695|46696|46697|46698|46699|46700|46701|46702|46703|46704|46705|46706|46707|46708|46709|46710|46711|46711|46712|46713|46714|46715|46716|46717|46718|46719|46720|46721|46722|46723|46724|46725|46726|46727|46728|46729|46730|46731|46732|46733|46734|46735|46736|46737|46738|46739|46740|46741|46742|46743|46744|46745|46746|46747|46748|46749|46750|46751|46752|46753|46754|46755|46756|46757|46758|46759|46760|46761|46762|46763|46764|46765|46766|46767|46768|46769|46770|46771|46771|46772|46773|46774|46775|46776|46777|46778|46779|46780|46781|46782|46783|46784|46785|46786|46787|46788|46789|46790|46791|46792|46793|46794|46795|46796|46797|46798|46799|46800|46801|46802|46803|46804|46805|46806|46807|46808|46809|46810|46811|46812|46813|46814|46815|46816|46817|46818|46819|46820|46821|46822|46823|49978|49979|49980|49981|49982|49983|49984|49985|49987|49988|49990|49992|49995|49997|49998|49999|50000|50001|50002|50003|50004|50006|50007|50008|50009|50011|65703|65704|65706|65707|65708|65709|65710|65711|65712|65713|65714|65715|65716|65717|65718|65719|65720|65721|65722|65723|65724|65725|65726|65727|65728|65729|65730|65731|65732|65733|65734|65735|65736|65737|65738|65739|65740|65741|65742|65743|65744|65745|65746|65747|65748|65749|65750|65751|65752|65753|65754|65755|65756|65757|65758|65759|65760|65761|65762|65763|65764|65765|65766|65767|65768|65769|65770|65771|65772|65773|65774|65775|65776|65777|65778|65779|65780|65781|65782|65784|65785|65786|65787|65788|65789|65790|65791|65792|65793|65794|65795|65796|65797|65798|65799|65800|65802|65803|65804|65805|65806|65807|65808|65809|65810|65811|65812|65813|65814|65817|65818|65819|65820|65821|65822|65823|65824|65825|65826|65827|65828|65829|65830|65831|65832|65833|65834|65835|65836|65837|65838|65839|65840|65841|65842|65843|65844|65845|65846|65847|65848|65849|65850|65851|65852|65853|65854|65855|65856|65857|65858|65859|65860|65861|65862|65863|65864|65865|65866|65867|65868|65869|65872|65873|65874|65875|65876|65877|65878|65879|65880|65881|65882|65883|65884|65885|65886|65887|65888|65889|65890|65891|65893|65894|65895|65897|65898|65899|65900|65901|65902|65903|65904|65905|65906|65907|65908|65910|65911|65912|65913|65914|65915|65916|65917|65918|65919|65920|65921|65923|65924|65925|65926|65927|65928|65929|65930|65932|65933|65934|65935|65936|65937|65938|65939|65940|65941|65942|65943|65944|65945|65946|65947|65949|65950|65951|65952|65953|65954|65955|65956|65957|65958|65959|65960|65961|65962|65963|65964|65965|65966|65967|65968|65969|65970|65971|65972|65973|65974|65975|65976|65978|65979|65980|65981|65982|65983|65983|65984|65985|65986|65987|65988|65989|65990|65991|65992|65993|65994|65995|65996|65997|65998|65999|66000|66001|66002|66003|66004|66005|66006|66007|66008|66009|66010|66011|66012|66013|66014|66015|66016|66017|66018|66019|66020|66021|66022|66023|66024|66025|66026|66027|66028|66029|66030|66031|66032|66033|66034|66035|66036|66037|66038|66039|66040|66041|66042|66043|66044|66045|66046|66047|66048|66049|66050|66051|66052|66053|66054|66055|66056|66057|66058|66059|66060|66061|66062|66063|66064|66065|66066|66067|66068|66069|66070|66071|66072|66073|66074|66075|66076|66077|66078|66079|66080|66081|66082|66083|66084|66085|66086|66087|66088|66089|66090|66091|66092|66093|66094|66095|66096|66097|66098|66099|66100|66101|66102|66103|66104|66106|66107|66108|66109|66110|66111|66112|66114|66115|66116|66117|66118|66119|66120|66121|66122|66123|66124|66125|66126|66127|66128|66129|66130|66131|66132|66133|66135|66136|66137|66138|66139|66140|66141|66142|66143|66144|66145|66146|66147|66148|66149|66150|66152|66153|66154|66155|66156|66157|66158|66159|66160|66161|66162|66163|66165|66166|66167|66168|66169|66170|66171|66172|66173|66174|66175|66176|66177|66178|66179|66180|66181|66182|66183|66184|66185|66186|66187|66188|66189|66190|66191|66192|66193|66194|66195|66196|66197|66198|66199|66200|66201|66202|66203|66204|66205|66206|66207|66208|66209|66210|66211|66212|66213|66214|66215|66216|66217|66218|66219|66220|66221|66223|66224|66226|66227|66228|66229|66230|66231|66232|66233|66234|66235|66236|66237|66238|66239|66241|66242|66243|66244|66245|66246|66247|66248|66249|66250|66251|66252|66253|66254|66255|66256|66257|66258|66259|66260|66261|66262|66263|66264|66265|66266|66267|66268|66269|66270|66271|66272|66273|66274|66275|66276|66277|66278|66279|66280|66281|66282|66283|66284|66285|66286|66287|66288|66289|66290|66291|66292|66295|66297|66298|66299|66300|66301|66302|66303|66304|66305|66306|66307|66308|66309|66310|66311|66312|66313|66314|66315|66316|66317|66318|66319|66320|66321|66322|66323|66324|66325|66326|66327|66328|66329|66330|66331|66332|66333|66334|66335|66336|66337|66338|66339|66340|66341|66342|66344|66345|66346|66348|66349|66350|66351|66352|66354|66355|66356|66357|66358|66359|66360|66362|66363|66364|66365|66366|66367|66369|66370|66372|66373|66374|66375|66376|66377|66378|66379|66380|66381|66382|66383|66384|66385|66386|66387|66388|66389|66390|66391|66392|66393|66394|66395|66396|66397|66398|66399|66400|66401|66402|66403|66404|66405|66406|66407|66408|66409|66410|66411|66412|66413|66414|66415|66416|66417|66418|66419|66420|66421|66422|66423|66424|66425|66426|66427|66428|66429|66430|66432|66433|66434|66435|66436|66437|66438|66439|66440|66441|66442|66443|66445|66446|66447|66448|66449|66450|66451|66452|66453|66454|66455|66457|66458|66459|66460|66461|66462|66463|66465|66466|66467|66468|66469|66469|66470|66471|66472|66473|66474|66475|66476|66478|66479|66480|66481|66482|66483|66484|66485|66486|66487|66488|66489|66490|66491|66492|66493|66494|66496|66497|66498|66499|66500|66501|66502|66503|66504|66505|66506|66507|66508|66509|66510|66511|66512|66514|66515|66516|66517|66518|66519|66520|66521|66523|66524|66525|66526|66527|66528|66529|66530|66531|66532|66533|66534|66535|66536|66537|66539|66540|66541|66542|66543|66544|66545|66546|66547|66548|66549|66550|66551|66552|66553|66554|66555|66556|66557|66558|66559|66560|66561|66562|66563|66564|66565|66566|66567|66568|66569|66570|66571|66572|66573|66574|66575|66578|66579|66580|66581|66582|66584|66585|66586|66587|66589|66590|66591|66592|66593|66594|66595|66596|66597|66598|66599|66600|66601|66602|66603|66604|66605|66606|66607|66608|66609|66610|66611|66612|66613|66614|66615|66616|66617|66618|66619|66620|66621|66622|66623|66624|66625|66626|66627|66629|66630|66631|66632|66633|66634|66635|66636|66637|66638|66639|66640|66641|66642|66643|66644|66645|66646|66647|66648|66649|66650|66651|66652|66653|66654|66655|66658|66659|66661|66662|66663|66664|66665|66666|66667|66668|66669|66670|66671|66672|66673|66674|66675|66676|66677|66678|66679|66680|66681|66682|66683|66684|66685|66686|66687|66688|66689|66690|66691|66692|66693|66695|66696|66697|66698|66699|66700|66701|66702|66703|66704|66705|66707|66708|66709|66710|66711|66712|66713|66714|66715|66716|66717|66718|66719|66720|66722|66723|66724|66725|66726|66727|66728|66729|66731|66732|66733|66734|66735|66737|66739|66740|66741|66742|66743|66745|66747|66748|66749|66750|66751|66752|66753|66754|66755|66756|66757|66758|66759|66760|66762|66763|66764|66765|66766|66768|66769|66770|66771|66772|66773|66774|66775|66776|66777|66778|66779|66780|66781|66782|66783|66784|66785|66786|66787|66788|66789|66790|66791|66792|66793|66794|66795|66796|66797|66798|66799|66800|66801|66802|66803|66804|66805|66806|66807|66808|66809|66810|66811|66813|66814|66816|66817|66818|66819|66820|66821|66822|66823|66824|66825|66826|66827|66828|66829|66830|66831|66832|66833|66834|66835|66836|66838|66839|66840|66841|66842|66843|66844|66845|66846|66847|66848|66849|66850|66851|66852|66853|66855|66856|66858|66859|66860|66861|66862|66863|66864|66865|66866|66867|66868|66869|66870|66871|66872|66873|66874|66875|66876|66877|66878|66879|66880|66881|66882|66883|66884|66885|66886|66887|66888|66889|66890|66891|66892|66893|66894|66895|66896|66897|66899|66900|66901|66902|66903|66905|66905|66907|66907|66908|66909|66909|66910|66911|66912|66913|66914|66915|66916|66917|66918|66919|66920|66921|66922|66923|66924|66925|66926|66927|66928|66929|66930|66931|66932|66933|66934|66935|66936|66938|66939|66940|66941|66942|66943|66944|66945|66946|66947|66948|66949|66950|66951|66952|66953|66954|66955|66956|66957|66958|66959|66960|66961|66962|66963|66964|66965|66966|66967|66968|66969|66970|66972|66973|66974|66975|66976|66977|66978|66979|66980|66982|66983|66984|66985|66986|66987|66988|66989|66990|66991|66992|66993|66994|66995|66996|66997|66998|66999|67000|67001|67002|67003|67004|67005|67006|67007|67008|67009|67010|67011|67012|67013|67014|67015|67017|67018|67019|67020|67021|67022|67023|67024|67025|67026|67027|67028|67029|67030|67031|67032|67033|67034|67038|67039|67040|67042|67043|67044|67045|67046|67047|67049|67050|67051|67052|67053|67054|67055|67056|67057|67058|67059|67060|67062|67063|67064|67065|67066|67067|67068|67069|67070|67071|67072|67073|67074|67075|67076|67077|67078|67079|67080|67081|67082|67083|67084|67085|67086|67087|67088|67089|67090|67091|67092|67093|67094|67095|67096|67097|67098|67099|67100|67101|67102|67103|67104|67105|67106|67107|67108|67109|67110|67111|67112|67113|67114|67115|67116|67117|67118|67119|67120|67121|67122|67123|67124|67126|67127|67128|67129|67130|67131|67131|67132|67133|67134|67135|67136|67137|67138|67139|67139|67140|67141|67142|67143|67144|67145|67146|67147|67148|67149|67150|67151|67152|67153|67154|67155|67157|67158|67159|67160|67161|67162|67163|67164|67165|67166|67167|67168|67169|67170|67171|67172|67173|67174|67175|67176|67177|67178|67179|67180|67181|67183|67184|67185|67186|67187|67188|67189|67190|67191|67192|67193|67194|67195|67196|67197|67199|67200|67201|67202|67203|67204|67205|67206|67208|67209|67210|67211|67212|67214|67215|67216|67217|67218|67219|67220|67222|67223|67224|67225|67226|67227|67228|67229|67230|67231|67232|67233|67234|67235|67236|67237|67238|67239|67240|67241|67242|67244|67245|67247|67248|67249|67250|67251|67252|67253|67254|67255|67257|67258|67259|67260|67261|67262|67263|67264|67265|67266|67267|67268|67269|67270|67271|67272|67273|67274|67275|67276|67277|67278|67279|67280|67281|67282|67283|67284|67285|67286|67287|67288|67289|67290|67291|67292|67293|67294|67295|67297|67298|67299|67300|67301|67302|67303|67304|67305|67306|67307|67309|67310|67311|67312|67313|67314|67316|67317|67319|67320|67321|67322|67323|67324|67325|67326|67327|67328|67329|67330|67331|67332|67333|67335|67336|67337|67338|67339|67340|67341|67342|67343|67344|67345|67346|67348|67349|67350|67351|67352|67353|67354|67355|67356|67357|67358|67359|67360|67361|67362|67363|67364|67365|67366|67367|67368|67369|67370|67371|67372|67373|67374|67375|67376|67377|67379|67380|67381|67382|67383|67384|67385|67386|67387|67388|67389|67390|67391|67392|67393|67394|67395|67396|67397|67398|67399|67400|67401|67402|67403|67404|67405|67406|67407|67408|67409|67410|67411|67412|67413|67415|67416|67417|67418|67419|67420|67421|67422|67423|67425|67426|67427|67428|67429|67430|67431|67432|67433|67434|67435|67436|67437|67438|67439|67440|67441|67442|67443|67444|67445|67446|67447|67448|67449|67450|67451|67452|67453|67455|67456|67457|67458|67459|67461|67462|67463|67464|67465|67466|67467|67468|67469|67470|67471|67472|67473|67474|67475|67476|67477|67478|67479|67480|67481|67482|67484|67485|67486|67487|67488|67489|67490|67491|67492|67493|67494|67495|67496|67497|67498|67499|67500|67501|67502|67504|67505|67506|67507|67508|67509|67510|67511|67512|67513|67514|67515|67516|67517|67518|67519|67520|67521|67522|67523|67524|67526|67527|67528|67529|67530|67531|67532|67533|67534|67535|67536|67537|67538|67539|67540|67541|67542|67543|67544|67545|67546|67547|67548|67549|67550|67551|67552|67553|67554|67555|67556|67557|67558|67559|67561|67562|67563|67564|67565|67566|67567|67568|67569|67570|67571|67572|67573|67574|67575|67576|67577|67578|67579|67580|67581|67582|67583|67584|67585|67586|67587|67588|67589|67590|67591|67592|67593|67594|70445|70446|70447|70448|70574|94582|94583|94587|94589|94590|94591|94592|94596|96886|96887|96888|96889|96890|96891|96892|96893|96894|96895|96896|96897|96898|96899|96900|96901|96902|96903|96904|96905|96906|96907|96908|96909|96910|96911|96912|96914|96915|96916|96917|96918|96919|96920|96921|96922|96923|96924|96925|96926|96927|96928|96929|96930|96931|96932|96933|96934|96935|96936|96937|96938|96939|96940|96942|96943|96944|96945|96946|96947|96948|96949|96950|96951|96952|96953|96954|96955|96956|96957|96958|96959|96960|96961|96962|96963|96964|96965|96966|96967|96968|96969|96970|96971|96972|96973|96974|96975|96976|96977|96978|96979|96980|96981|96982|96983|96984|96985|96986|96987|96988|96989|96990|96991|96992|96993|96994|96995|96996|96997|96998|96999|97000|97001|97002|97003|97004|97006|97007|97008|97009|97010|97011|97012|97013|97014|97147|97148|97149|97150|97151|97152|97153|97154|97155|97156|97157|97158|97159|97160|97161|97162|97163|97164|97165|97166|97167|97168|97169|97170|97171|97172|97173|97174|97175|97176|97177|97178|97179|97180|97181|97182|97207|97208|97209|97210|97211|97212|97213|97214|97215|97216|97217|97218|97219|97220|97221|97222|97223|97224|97225|97226|97227|97228|97229|97230|97231|97232|97233|97234|97235|97236|97237|97238|97239|97241|97242|97243|97244|97245|97246|97247|97248|97249|97250|97251|97252|97253|97254|97255|97256|97257|97258|97259|97260|97261|97262|97264|97265|97266|97267|97268|97270|97271|97272|97273|97274|97275|97276|97277|97278|97279|97280|97281|97282|97283|97284|97285|97286|97287|97288|97289|97290|97291|97292|97293|97294|97295|97296|97297|97298|97299|97301|97302|97303|97304|97305|97306|97307|97308|97309|97310|97311|97312|97314|97315|97316|102661|102662|102663|102664|102665|102666|102667|102668|102669|102670|102671|102672|102673|102674|102675|102676|102677|102678|102679|102680|102681|102682|102683|102684|102685|102686|102687|102688|102689|102690|102691|102692|102693|102694|102695|102696|102697|102698|102700|102701|102703|102704|102705|102706|102707|102708|102709|102710|102711|102712|102713|102714|102715|102716|102717|102718|102719|102720|102721|102722|102723|102724|102725|102726|102727|102728|102729|102730|102731|102732|102733|102734|102735|102736|102737|102738|102739|102740|102741|102742|102743|102744|102745|102746|102747|102748|102749|102750|102751|102752|102753|102754|102755|102756|102757|102758|102760|102761|102762|102763|102764|102765|102766|102767|102768|102769|102770|102771|102772|102773|102774|102775|102776|102777|102778|102779|102780|102781|102782|102783|102784|102785|102786|102787|102788|102789|102790|102791|102792|102793|102861|102862|102863|102864|102865|102866|102867|102868|102869|102870|131459|131460|131462|131463|131464|131465|131466|131468|131469|131470|131471|131472|131473|131474|131475|131480|131481|131482|131483|131484|131485|131486|131487|131488|131489|131490|131491|131492|131493|131494|131495|131496|131500|131503|131504|131505|131508|131510|131511|131512|131513|131514|131515|131516|131517|131518|131519|131520|131522|131523|131526|131527|131528|131529|131530|131531|131533|131534|131535|131536|131537|131538|131539|131541|131542|131543|131545|131546|131547|131548|131549|131550|131552|131554|131556|131557|131558|131560|131561|131562|131565|131566|131567|131568|131569|131570|131571|131572|131573|131574|131575|131577|131579|131583|131584|131586|131587|131588|131589|131591|131593|131594|131595|131597|131600|131601|131602|131603|131604|131605|131607|131610|131611|131612|131614|131615|131617|131618|131620|131624|131625|131626|131627|131629|131630|131631|131633|131634|131635|131636|131637|131638|131640|131643|131644|131645|131646|131647|131648|131651|131652|131654|131655|131656|131658|131660|131661|131662|131663|131664|131666|131667|131668|131670|131671|131672|131673|131674|131675|131676|131677|131678|131679|131680|131681|131682|131683|131684|131685|131686|131687|131688|131689|131690|131691|131692|131693|131694|131695|131696|131697|131698|131700|131701|131702|131704|131705|131706|131707|131708|131711|131712|131713|131715|131716|131717|131718|131719|131721|131723|131725|131726|131727|131728|131729|131730|131731|131732|131733|131735|131736|131737|131738|131739|131740|131741|131742|131743|131744|131745|131747|131748|131749|131750|131751|131752|131753|131754|131755|132698|136435|136512|136518|136527|136528|136529|136530|137467|137468|137475|137477|137481|139502|139503|139505|139506|139507|139508|139509|139514|139515|139517|139518|139520|139521|139522|139524|139525|139526|139529|139532|140256|140257|140258|140259|140260|140261|140262|140263|140264|140265|140268|140269|140270|140271|140272|140273|140274|140275|140276|150722|150729|150752|150782|150784|150796|150798|150802|150818|150832|150843|150867|150869|150876|150909|150913|150927|150933|150948|150997|151048|151049|151059|151077|151113|151163|151183|151192|151220|151223|151224|151253|151286|151287|151340|151343|151344|151371|151411|151443|151494|151496|151501|151502|151507|151512|151513|151521|151525|151567|151581|151586|151615|151620|151675|151700|151701|151703|151737|151740|151744|151750|151768|151809|151929|152002|152021|152023|152027|152030|152105|152112|152136|152158|152234|152241|152302|152322|152331|152343|152352|152360|152362|152401|152431|152436|152485|152496|152497|152501|152509|152511|152543|152545|152547|152562|152575|152580|152582|152588|152603|152632|152637|152677|152711|152738|165476|165962|165963|165964|165965|165966|165967|165968|165969|165970|165971|165972|165973|165974|165975|165976|165977|165978|165979|165980|165998|165999|166254|166255|166256|166257|166258|171818|171819|171820|171822|180552|180554|180555|180557|180558|180563|180567|180568|180571|180572|180573|180576|180578|180579|180581|180584|180588|180596|180597|180600|180601|180604|180606|180608|180611|180613|180615|180622|180628|180630|180632|180636|180637|180642|180645|180651|180653|180657|180660|180661|180665|180666|180669|180670|180671|180680|180690|180691|180693|180695|180696|180697|180702|181310|181311|181312|183612|183614|183616|183617|183619|183620|183621|183622|183624|183625|183626|183627|183629|183632|183635|183638|183641|183642|183644|183645|183646|183647|183648|183649|183650|183651|183655|183657|183659|183660|183661|183662|183664|183667|183668|183670|183671|183674|183675|183680|183681|183682|183683|183684|183686|183688|183693|183695|183699|183701|183702|183704|183705|183706|183707|183708|183709|183711|183713|183714|183715|183716|183717|183718|183720|183722|183723|183724|183725|183728|183731|183733|183737|183738|183739|183740|183742|183744|183745|183747|183748|183750|183751|183752|183754|183756|183757|183758|183759|183763|183764|183765|183766|183769|183770|183771|183774|183776|183777|183778|183779|183782|183783|183784|183786|183787|183790|183791|183792|183793|183795|183796|183797|183798|183799|183800|183801|183802|183804|183805|183806|183807|183809|183810|183812|183813|183815|183816|183817|183819|183820|183821|183822|183823|183824|183826|183829|183830|183831|183832|183833|183835|183837|183841|183845|183847|183849|183850|183854|183855|183856|183857|183860|183861|183863|183864|183865|183866|183868|183870|183871|183872|183874|183875|183876|183877|183879|183881|183883|183884|183885|183886|183887|183888|183889|183890|183891|183892|183893|183894|183897|183898|183900|183902|183904|183905|183907|183908|183909|183911|183912|183914|183916|183917|183918|183919|183922|183923|183925|183926|183927|183928|183931|183934|183936|183937|183938|183939|183940|183941|183943|183944|183945|183946|183947|183948|183950|183951|183952|183954|183958|183959|183960|183961|183963|183965|183970|183971|183973|183974|183976|183979|183980|183981|183982|183984|183985|183986|183987|183989|183991|183993|184000|184001|184002|184003|184004|184006|184008|184009|184010|184011|184012|184013|184014|184016|184018|184021|184024|184025|184027|184028|184030|184031|184034|184037|184038|184039|184041|184042|184043|184044|184045|184046|184047|184048|184049|184050|184051|184052|184053|184054|184055|184056|184057|184058|184060|184066|184067|184068|184069|184070|184071|184072|184073|184074|184076|184080|184081|184082|184083|184084|184087|184089|184090|184092|184093|184095|184097|184098|184100|184102|184104|184105|186170|186175|186176|186437|186440|186441|186442|186443|186446|186450|186451|186452|186453|186454|186455|186456|186872|190027|190952|194260|204644|205807|205808|205809|205810|205811|205812|205813|205814|205815|205816|205817|205818|205819|205820|205821|205822|205823|205824|205825|205826|205827|205828|205829|205830|205831|205832|205833|205834|205835|205836|205837|205838|205839|205840|205841|205842|205843|205844|205845|205846|205847|205848|205849|205850|205851|205852|205853|205854|205855|205856|205857|205858|205859|205860|205861|205862|205863|205864|205865|205866|205867|205868|205869|205870|205871|205872|205873|205874|205875|205876|205877|205878|205879|205880|205881|205882|205883|205884|205885|205886|205887|205888|205889|205890|205891|205892|205893|205894|205895|205896|205897|205898|205899|205900|205901|205902|205903|205904|205905|205906|205907|205908|205909|205910|205912|205913|205914|205915|205916|205917|205918|205919|205920|205921|205922|205923|205924|205925|205926|205927|205928|205929|205930|205931|205932|205933|205934|205935|205936|205937|205938|205940|205941|205942|205943|205944|205945|205946|205947|205948|205949|205950|205951|205952|205953|205954|205955|205956|205957|205958|205959|205960|205961|205962|205963|205964|205965|205966|205967|205968|205969|205970|205972|205973|205974|205975|205976|205977|205978|205979|205980|205981|205982|205983|205984|205985|205986|205987|205988|205989|205990|205991|205992|205993|205994|205995|205996|205997|205998|205999|206000|206001|206002|206003|206004|206005|206006|206007|206008|206009|206010|206011|206012|206013|206014|206015|206016|206017|206018|206019|206021|206022|206023|206024|206025|206026|206027|206028|206029|206030|206031|206032|206033|206034|206035|206036|206037|206038|206039|206040|206041|206042|206043|206044|206045|206046|206047|206048|206049|206050|206051|206052|206053|206054|206055|206056|206057|206058|206059|206060|206061|206062|206063|206064|206066|206067|206068|206069|206070|206071|206072|206073|206074|206075|206076|206077|206078|206079|206080|206081|206082|206083|206084|206085|206086|206087|206088|206089|206090|206091|206092|206093|206094|206095|206096|206097|206098|206099|206100|206101|206102|206103|206104|206105|206106|206107|206108|206109|206110|206111|206112|206113|206114|206115|206116|206117|206118|206119|206120|206121|206122|206123|206124|206125|206126|206127|206128|206129|206130|206131|206132|206133|206134|206135|206136|206137|206138|206139|206140|206141|206142|206143|206144|206145|206146|206147|206148|206149|206150|206151|206152|206153|206154|206155|206156|206157|206158|206159|206160|206161|206162|206163|206164|206165|206167|206168|206169|206170|206171|206172|206173|206174|206175|206176|213020|213023|213028|213029|213030|213031|213038|213039|213042|213043|213045|213046|213047|213051|213056|213058|213060|213066|213067|213070|213072|213073|213074|213075|213076|213077|213078|213079|213080|213081|213082|213083|213084|213088|213095|213096|213098|222271|222274|222280|222281|222283|222284|222287|222288|222292|222295|222297|222298|222299|222302|222303|222307|222311|222314|222315|222317|222322|222325|222326|222327|222329|222330|222331|222333|222335|222336|222337|222341|222342|222343|222344|222345|222347|222350|222352|223361|225311|226152|226154|226155|226159|226164|226169|226171|226173|226178|226180|226181|226186|226189|226190|226191|226352|226353|227195|227519|227520|227521|227522|227523|227524|227525|227526|227527|227528|227529|227530|227531|227532|227533|227534|227535|227536|227537|227538|227539|227540|227541|227542|227543|227544|227545|227546|227547|227548|227549|227550|227551|227552|227553|227554|227555|227556|227572|230442|230443|231855|231864|231866|231871|231872|231875|231880|231882|231884|231890|231893|231894|231895|231902|231905|231906|231907|231908|231912|234590|234594|234595|234596|234597|234606|234607|234608|234609|234611|234615|234617|234618|234622|234624|234628|234629|234630|234634|234635|234639|234641|234643|234645|234647|234651|234658|234659|234660|234663|234665|234666|234667|234675|234676|234678|234679|234681|234682|234687|234688|234689|234692|234693|234697|234700|234703|234704|234705|234707|234708|234710|234711|234714|234715|234716|234718|234719|234721|234724|234730|234735|234738|234739|234740|234741|234746|234747|234748|234749|234751|234752|234753|234754|234755|234757|234758|234759|234760|234763|234766|234771|234773|234776|234777|234780|234782|234783|234786|234787|234793|234795|234796|234797|234799|234800|234802|234804|234806|234808|234809|234810|234812|234818|234821|234822|234823|234824|234830|234831|234833|234836|234838|234839|234840|234843|234844|234846|234848|234852|234855|234857|234859|234860|234861|234862|234863|234866|234868|234871|234872|234875|234878|234880|234881|234882|234884|234887|234888|234896|234899|234900|234903|234906|234907|234909|234911|234912|234914|234917|234919|234923|234924|234926|234929|234931|234933|234934|234938|234939|234942|234943|234945|234949|234951|234955|234965|234967|234973|234979|234980|234983|234983|234985|234986|234989|234998|235000|235003|235010|235015|235016|235019|235020|235022|235024|235026|235027|235028|235031|235032|235035|235036|235038|235041|235044|235045|235048|235050|235052|235054|235055|235059|235069|235073|235077|237817|237818|237819|237820|237821|237822|237823|237824|237825|237826|241632|241633|241634|241636|241638|241640|241643|241646|241649|241650|241651|241654|241655|241656|241661|241662|241663|241666|241667|241668|241670|241672|241675|241676|241677|241682|241683|241688|241690|241696|241697|241699|241703|241706|241710|241714|241715|241716|241719|241721|241725|241726|241733|241734|244842|244843|244849|244852|244854|246784|246785|246786|246787|246788|246789|246790|246791|246792|246793|246794|246795|246796|246797|246798|246799|246800|246801|246802|246803|246804|246805|246806|246807|246833|246834|246836|246837|246838|246839|246840|246841|246842|246843|246844|246845|247212|247213|247214|247215|247216|247217|247218|247219|247220|247221|247222|247223|247224|247225|247226|247227|247228|247229|247230|247231|247232|247233|247234|247235|247236|247237|247238|247239|247240|247241|247242|247243|247244|247245|247246|247247|247248|247249|247250|247251|247252|247253|247254|247255|247256|247257|247258|247259|247260|247261|247262|247295|247296|247439|248505|248906|248907|248908|248909|248910|248911|248912|248913|248914|248915|248916|248917|248918|248919|248920|248921|248922|248923|248924|248925|248926|248927|248928|248929|248930|248931|248932|248933|248934|248935|248936|248937|248938|248939|248940|248941|248942|248943|248944|248945|248946|248947|248948|248949|248950|248951|248952|248953|248954|248955|248956|248957|248958|248959|248960|248961|248962|248963|248964|248965|248966|248967|248968|248969|248970|248971|248972|248973|248974|248975|248976|248977|248978|248979|248980|248981|248982|248983|248984|248985|248986|248987|248988|248989|248990|248991|248992|248993|248994|248995|248996|248997|248998|248999|249000|249001|249002|249003|249004|249005|249006|249007|249008|249009|249010|249011|249012|249013|249014|249015|249016|249017|249018|249019|249020|249021|249022|249023|249024|249025|249026|249027|249028|249029|249030|249031|249032|249033|249034|249035|249036|249037|249038|249039|249040|249041|249042|249043|249044|249045|249046|249047|249048|249049|249050|249051|249052|249053|249054|249055|249056|249057|249058|249059|249060|249061|249062|249063|249064|249065|249066|249067|249068|249069|249070|249071|249178|249179|254846|254847|259407|259408|259409|259410|259411|259412|259413|259414|259415|259416|259417|259418|259419|259420|259421|259422|259423|259424|259425|259426|259427|259428|259429|259430|259431|259432|259433|259434|259435|259436|259437|259438|259439|259440|259441|259442|259443|259444|259445|259446|259447|259448|259449|259450|259451|259452|259453|259454|259455|259456|259457|259458|259459|259460|259461|259462|259463|259464|259465|259466|259467|259468|259469|259470|259471|259472|259473|259474|259475|259476|259477|259478|259479|259480|259481|259482|259483|259484|259485|259486|259487|259488|259489|259490|259491|259492|259493|259494|259495|259496|259497|259498|259499|259500|259501|259502|259503|259504|259505|259506|259507|259508|259509|259510|259511|259512|259513|259514|259515|259516|259517|259518|259519|259520|259521|259522|259523|259524|259525|259526|259527|259528|259529|259530|259531|259532|260040|260041|260046|260047|260048|260049|260984|260985|260986|260987|260988|260989|260990|260991|260992|260993|260994|260995|260996|260997|260998|260999|261000|261001|261002|261003|261004|261005|261006|261007|261008|261009|261010|261011|261012|261013|261014|261015|261016|261017|261018|261019|261020|261021|261022|261023|261024|261025|261026|261027|261028|261029|261030|261031|261032|261033|261034|261035|261036|261037|261038|261039|261040|261041|261042|261043|261044|261045|261046|261047|261048|261049|261050|261051|261052|261053|261054|261055|261056|261057|261058|261059|261060|261061|261062|261063|261064|261065|261066|261067|261068|261069|261070|261071|261072|261073|261074|261075|261076|261077|261078|261079|261080|261081|261082|261083|261084|261085|261086|261087|261088|261089|261090|261091|261092|261093|261094|261095|261096|261097|261098|261099|261100|261101|261102|261103|261104|261105|261106|261107|261108|261109|261110|261111|261112|261113|261114|261115|261116|261117|261118|261119|261120|261121|261122|261123|261124|261125|261126|261127|261128|261129|261130|261131|261132|261133|261134|261135|261136|261137|261138|261139|261140|261141|261142|261143|261144|261145|261146|261147|261148|261149|261150|261151|261152|261153|261154|261155|261156|261157|261158|261159|261160|261161|261162|261163|261164|261165|261166|261167|261168|261169|261170|261171|261172|261173|261174|261175|261176|261177|261178|261179|261180|261181|261182|261183|261184|261185|261186|261187|261188|261189|261190|261191|261192|261193|261194|261195|261196|261197|261198|261199|261200|261201|261202|261203|261204|261205|261206|261207|261208|261209|261210|261211|261212|261213|261214|261215|261216|261217|261218|261219|261220|261221|261222|261223|261224|261225|261226|261227|261228|261229|261230|261231|261232|261233|261234|261235|261236|261237|261238|261239|261240|261241|261242|261243|261244|261245|261246|261247|261248|261249|261250|261251|261252|261253|261254|261255|261256|261257|261258|261259|261260|261261|261262|261263|261264|261265|261266|261267|261268|261269|261270|261271|261272|261273|261274|261275|261276|261277|261278|261279|261280|261281|261282|261283|261284|261285|261286|261287|261288|261289|261290|261291|261292|261293|261294|261295|261296|261297|261298|261299|261300|261301|261302|261303|261304|261305|261306|261307|261308|261309|261310|261311|261312|261313|261314|261315|261316|261317|261318|261319|261320|261321|261322|261323|261324|261325|261326|261327|261328|261329|261330|261331|261332|261333|261334|261335|261336|261337|261338|261339|261340|261341|261342|261343|261344|261345|261346|261347|261348|261349|261350|261351|261352|261353|261354|261355|261356|261357|261358|261359|261360|261361|261362|261363|261364|261365|261366|261367|261368|261369|261370|261371|261372|261373|261374|261375|261376|261377|261378|261379|261380|261381|261382|261383|261384|261385|261386|261387|261388|261389|261390|261391|261392|261393|261394|261395|261396|261397|261398|261399|261400|261401|261402|261403|261404|261405|261406|261407|261408|261409|261410|261411|261412|261413|261414|261415|261416|261417|261418|261419|261420|261421|261422|261423|261424|261425|261426|261427|261428|261429|261430|261431|261432|261433|261434|261435|261436|261437|261438|261439|261440|261441|261442|261443|261444|261445|261446|261447|261448|261449|261450|261451|261452|261453|261454|261455|261456|261457|261458|261459|261460|261461|261462|261463|261464|261465|261466|261467|261468|261469|261470|261471|261472|261473|261474|261475|261476|261477|261478|261479|261480|261481|261482|261483|261484|261485|261486|261487|261488|261489|261490|261491|261492|261493|261494|261495|261496|261497|261498|261499|261500|261501|261502|261503|261504|261505|261506|261507|261508|261509|261510|261511|261512|261513|261514|261515|261516|261517|261518|261519|261520|261521|261522|261523|261524|261525|261526|261527|261528|261529|261530|261531|261532|261533|261534|261535|261536|261537|261538|261539|261540|261541|261542|261543|261544|261545|261546|261547|261548|261549|261550|261551|261552|261553|261554|261555|261556|261557|261558|261559|261560|261561|262097|262766|262767|262768|262769|262770|262771|262772|262773|262774|262775|262776|262777|262778|262779|262780|262781|262782|262783|262784|262785|262786|262787|262788|262789|262790|262791|262792|262793|262794|262795|262796|262797|262798|262799|262800|262801|262802|262803|262804|262805|262806|262807|262808|262809|262810|262811|262812|262813|262814|262815|262816|262817|262818|262819|262820|262821|262822|262823|262824|262825|262826|262827|262828|262829|262830|262831|262832|262833|262834|262835|262836|262837|262838|262839|262840|262841|262842|262843|262844|262845|262846|262847|262848|262849|262850|262851|262852|262853|262854|262855|262856|262857|262858|262859|262860|262861|262862|262863|263868|264668|319365|319367|319371|327917|327920|327924|334200|334204|334205|334218|335892|335896|335906|335918|335956|358888|358889|358890|358891|358892|358893|358894|358895|358896|358897|358898|360060|360712|360713|360714|360715|360719|360747|360748|360777|361610|362356|372685|372710|372717|372763|373401|373418|373436|373497|373654|373676|373679|373689|373703|373771|373777|373782|375573|390674|399162|399181|399183|399199|399207|399215|399216|399219|399221|399287|399292|399302|399320|399329|399334|399351|399363|399382|399385|399391|399393|399396|399409|399437|399445|399449|399458|399460|399607|399646|399656|399659|399677|399686|399699|399702|399714|399745|399759|399780|399804|399837|399854|399870|399878|399886|399894|399914|399936|399939|399952|399961|399979|399986|399992|400023|400038|400049|400063|400085|400122|400150|404598|404602|404604|408824|408829|408830|408832|408833|408835|408845|408847|408849|408851|408856|408857|408860|408861|408864|408866|408871|408874|408875|408890|408892|408893|408897|408902|408904|408910|408911|408914|408915|408918|408920|408925|408927|408929|408930|408943|408947|408948|408954|408958|408964|408968|408972|408976|408981|408986|408987|408996|408998|409004|409005|409009|409019|413880|416223|416225|416226|416227|416231|416232|416233|416234|416235|416236|416237|416238|416239|416240|416241|416242|416243|416244|416245|416246|416247|416248|416249|416250|416251|416252|416253|416254|416255|416256|416257|416258|416259|416260|416261|416262|416263|416264|416265|416266|416267|416268|416269|416270|416271|416272|416273|416274|416275|416276|416277|416278|416279|416280|416281|416282|416283|416284|416285|416286|416287|416288|416289|416290|416291|416292|416293|416294|416295|416296|416297|416298|416299|416300|416301|416302|416303|416304|416305|416306|416307|416308|416309|416310|416311|416312|416313|416314|416315|416316|416317|416318|416319|416320|416321|416322|416323|416324|416325|416326|416327|416328|416329|416330|416331|416332|416333|416334|416335|416336|416337|416338|416339|416340|416341|416342|416343|416344|416345|416346|416347|416348|416349|416350|416351|416352|416353|416354|416355|416356|416357|416358|416359|416360|416361|416362|416363|416364|416365|416366|416367|416368|416369|416370|416371|416372|416373|416374|416375|416376|416377|416378|416379|416380|416381|416382|416383|416384|416385|416386|416387|416388|416389|416390|416391|416392|416393|416394|416395|416396|416397|416398|416399|416400|416401|416402|416403|416404|416405|416406|416407|416408|416409|416410|416411|416412|416413|416414|416415|416416|416417|416418|416419|423245|423246|423247|423248|423249|424497|424722|424725|424727|424729|424730|424734|424736|424737|424738|424740|424752|424758|424762|424763|424765|424768|424769|424770|424772|424778|424780|426757|427338|427341|427345|427351|427358|427362|427369|427371|427372|427373|427375|427398|427411|427429|427430|429493|429494|429497|432007|432370|432383|432761|432762|432777|432784|432789|432793|432795|432796|432798|432799|432803|432810|432811|434051|434052|434053|434054|434055|434056|434057|434058|434059|434060|434061|434062|434063|434064|434065|434066|434067|434081|434082|434084|434944|434950|434951|434954|434955|434958|434965|434967|434972|434977|434980|434988|434993|434995|434998|435007|435010|435013|435016|435020|435021|435026|435027|435029|435030|435031|435034|435041|435047|435051|435063|435074|435078|435082|435090|462850|463133|463171|463485|463496|463547|463599|468155|476615|476660|476720|476836|476852|476911|476915|476967|476976|477132|480468|480469|480470|480471|480472|480473|480474|480475|480476|484611|484636|484755|484791|484850|484941|486647|487405|508878|508879|508880|508881|512860|512862|512863|512864|512865|512939|512940|513333|513334|513336|513337|513338|513369|527578|527796|527927|528073|528114|536423|538638|538639|538640|538641|538642|538643|538645|538646|538647|538648|538649|538650|538651|538652|538653|538654|538655|538656|538657|538658|538659|538660|538661|538662|538663|538664|538665|538666|538667|538668|538669|538670|538671|538672|538673|538674|538675|538676|538677|538678|538679|538680|538681|538682|538683|538684|538685|538686|538687|538688|538689|538690|538691|538692|538693|538694|538695|538696|538697|538698|538699|538700|538701|538702|538703|538704|538705|538706|538707|538708|538709|538710|538711|538712|538713|538714|538715|538716|538717|538718|538720|538721|538722|538723|538724|538725|538726|538727|538728|538729|538730|538731|538733|538734|538735|538736|538737|538738|538739|538740|538741|538742|538743|538744|538746|538747|538748|538749|538750|538751|538752|538753|538754|538755|538756|538757|539331|539332|539333|539334|539335|539336|539337|539338|539339|539340|550198|568308|575894|575896|575897|575899|575900|575901|575902|575903|575904|575905|575907|575908|575909|575911|575912|575913|575914|575915|575917|575919|575920|575922|576266|581823|609297|618039|618083|619905|625975|626441|641694|641915|645950|672000|672001|682731|753815|784568|789565|791298|791299|791300|791301|791302|791303|791304|791305|791306|791307|791308|791309|791310|791311|791312|791313|791314|791315|791316|791317|791318|791319|791320|791321|791322|791323|791324|791325|791326|791327|791328|791329|791330|791331|791332|791333|791334|791335|791336|791337|791338|791339|791340|791341|799100|800790|800793|800794|800795|800796|811340|840638|858807|858808|861539|861552|871070|871071|871072|871073|871074|871075|871076|871077|872326|919496|919497|964678|965615|966853|967199|972455|972476|972479|974563|974939|977409", "text": "Breast-ovarian cancer, familial 2" }, { - "baseId": "24364", + "upstreamId": "24364", "text": "Pancreatic cancer 2" }, { - "baseId": "24364|24368|24378|24381|24382|24383|24384|24386|24387|24388|46290|46297|46314|46324|46334|46357|46363|46419|46466|46483|46492|46492|46497|46506|46514|46531|46553|46577|46593|46608|46633|46637|46642|46658|46690|46698|46720|46724|46761|46768|46776|46797|46799|46804|46808|46814|46822|49979|49980|49981|49982|49983|49984|49985|49987|49995|49998|49999|50000|50001|50003|50004|50006|50008|50009|50011|65711|65716|65759|65761|65860|65861|65902|65946|65970|65973|65982|66011|66017|66023|66034|66038|66047|66049|66098|66103|66149|66199|66257|66260|66284|66312|66328|66345|66350|66470|66481|66526|66533|66558|66563|66564|66580|66595|66627|66650|66680|66725|66755|66833|66834|66851|66855|66867|66888|66909|66917|66928|66995|67005|67119|67197|67262|67266|67274|67360|67365|67447|67524|67537|67566|67578|67585|96914|96929|96932|97234|102665|102683|102691|131465|131481|131503|131514|131517|131548|131560|131671|131696|131755|136527|136528|136529|139502|139515|140259|140264|140270|140272|150752|151220|151521|151581|152234|152302|152511|183702|183725|183754|183765|183766|184083|205809|205810|206171|206172|206174|206175|206176|213029|231895|234645|234751|234836|235000|241633|249039|259530|259531|319365|319367|319371|327917|327920|327924|334200|334204|334205|334218|335892|335906|335918|335956|416354|432761|435021|476615|484868|550313|568308|612193|618083|641763|811340|871070|871071|871072|871073|871074|871075|871076|871077|872326", + "upstreamId": "24364|24368|24378|24381|24382|24383|24384|24386|24387|24388|46290|46297|46314|46324|46334|46357|46363|46419|46466|46483|46492|46492|46497|46506|46514|46531|46553|46577|46593|46608|46633|46637|46642|46658|46690|46698|46720|46724|46761|46768|46776|46797|46799|46804|46808|46814|46822|49979|49980|49981|49982|49983|49984|49985|49987|49995|49998|49999|50000|50001|50003|50004|50006|50008|50009|50011|65711|65716|65759|65761|65860|65861|65902|65946|65970|65973|65982|66011|66017|66023|66034|66038|66047|66049|66098|66103|66149|66199|66257|66260|66284|66312|66328|66345|66350|66470|66481|66526|66533|66558|66563|66564|66580|66595|66627|66650|66680|66725|66755|66833|66834|66851|66855|66867|66888|66909|66917|66928|66995|67005|67119|67197|67262|67266|67274|67360|67365|67447|67524|67537|67566|67578|67585|96914|96929|96932|97234|102665|102683|102691|131465|131481|131503|131514|131517|131548|131560|131671|131696|131755|136527|136528|136529|139502|139515|140259|140264|140270|140272|150752|151220|151521|151581|152234|152302|152511|183702|183725|183754|183765|183766|184083|205809|205810|206171|206172|206174|206175|206176|213029|231895|234645|234751|234836|235000|241633|249039|259530|259531|319365|319367|319371|327917|327920|327924|334200|334204|334205|334218|335892|335906|335918|335956|416354|432761|435021|476615|484868|550313|568308|612193|618083|641763|811340|871070|871071|871072|871073|871074|871075|871076|871077|872326", "text": "Fanconi anemia, complementation group D1" }, { - "baseId": "24364|24379|46287|46310|46796|66620", + "upstreamId": "24364|24379|46287|46310|46796|66620", "text": "BRCA2-Related Disorders" }, { - "baseId": "24381|24385", + "upstreamId": "24381|24385", "text": "Glioma susceptibility 3" }, { - "baseId": "24394|24394|24396|24396|24398|38391|104431|104432|104433|104433|104436|104440|104441|104447|104448|104456|104456|104471|104480|104492|152779|152779|191486|191862|192077|192078|192193|194278|194279|194279|195216|195217|256531|256534|267852|267852|361027|374152|410300|438037|468444|469027|469027|469226|489189|489189|493639|551585|569886|569892|570726|578553|584376|610116|623351|626263|646841|646842|646914|694210|694219|704421|704423|704424|704425|704426|704427|704428|715777|715781|731182|756205|756208|756209|771892|771893|771894|771918|778416|785781|791837|791839|791839|791840|791840|791841|791842|846355|846356|846357|846358|846359|846360|846365|846366|846367|846369|846370|846435|846436|846437|846438|846439|846440|846441|846442|846443|846444|846445|846446|846447|846448|846449|851759|903674|938267|938268|938269|938270|938271|938272|938273|938274|938277|938278|938279|938297|938298|938299|938300|938301|938302|938303|938304|950343|950344|950345|950348|950349|950350|950351|950368|950369|950370|950371|950372|950373|950374|950375|958342|958343|958344|958346|958347|958348|958373|958374|958375|958376|958377|960253|962029", + "upstreamId": "24394|24394|24396|24396|24398|38391|104431|104432|104433|104433|104436|104440|104441|104447|104448|104456|104456|104471|104480|104492|152779|152779|191486|191862|192077|192078|192193|194278|194279|194279|195216|195217|256531|256534|267852|267852|361027|374152|410300|438037|468444|469027|469027|469226|489189|489189|493639|551585|569886|569892|570726|578553|584376|610116|623351|626263|646841|646842|646914|694210|694219|704421|704423|704424|704425|704426|704427|704428|715777|715781|731182|756205|756208|756209|771892|771893|771894|771918|778416|785781|791837|791839|791839|791840|791840|791841|791842|846355|846356|846357|846358|846359|846360|846365|846366|846367|846369|846370|846435|846436|846437|846438|846439|846440|846441|846442|846443|846444|846445|846446|846447|846448|846449|851759|903674|938267|938268|938269|938270|938271|938272|938273|938274|938277|938278|938279|938297|938298|938299|938300|938301|938302|938303|938304|950343|950344|950345|950348|950349|950350|950351|950368|950369|950370|950371|950372|950373|950374|950375|958342|958343|958344|958346|958347|958348|958373|958374|958375|958376|958377|960253|962029", "text": "Cone-rod dystrophy 6" }, { - "baseId": "24394|104456|104471|267852|361027|438038|578553|609333|626263|919774|919781|920383", + "upstreamId": "24394|104456|104471|267852|361027|438038|578553|609333|626263|919774|919781|920383", "text": "Choroidal dystrophy, central areolar 1" }, { - "baseId": "24396|28222|57649|57709|105317|331368|431634|431838|438037|576244|623968|623984|623986", + "upstreamId": "24396|28222|57649|57709|105317|331368|431634|431838|438037|576244|623968|623984|623986", "text": "Progressive cone dystrophy (without rod involvement)" }, { - "baseId": "24399|24400|24401|24402|24403|24404|24405|45080|45081|45082|45085|91911|138304|138305|138308|138310|138311|138312|138314|138318|138319|138323|141299|141300|141302|141303|141304|188906|247160|332795|332803|332805|332806|332810|332811|332813|332817|332826|332828|332830|332832|342963|342964|342967|342968|342975|342976|342979|342984|342988|343000|343008|343009|343016|343018|343021|348311|348314|348315|348316|348320|348322|348324|348327|348329|348333|348338|348339|348343|348352|348358|348359|349510|349511|349513|349515|349516|349517|349520|349521|349524|349525|349527|349528|349531|349532|349533|349534|360407|362993|376383|377343|377347|379510|410548|410549|468562|469484|469485|470525|470527|532753|532778|532779|532780|532782|532843|532848|532852|533187|533209|570590|570592|570597|570599|572974|572977|574906|574907|574908|574909|574910|614457|624654|647796|647797|647798|647799|647800|647801|647802|647803|647804|647805|647806|647807|647808|647809|647810|647811|647812|647813|647814|647815|647816|647817|647818|647819|656521|694358|694359|695815|704851|741704|741707|741708|760833|772521|776569|778504|779992|791912|791913|791914|847413|847414|847415|847416|847417|847418|847419|847420|847421|847422|847423|847424|847425|847426|847427|847428|847429|847430|847431|847432|847433|847434|847435|852319|880087|880088|880089|880090|880091|880092|880093|880094|880095|880096|880097|880098|880099|880100|880101|880102|880103|880104|880105|880106|880107|880108|880109|880110|880111|880112|880113|880114|880115|880116|880117|880118|880119|880120|880121|880122|880123|880124|880125|880710|880711|880712|880713|928892|928893|928894|928895|938613|938614|938615|950712|950713|958568|958569|958570|958571|964517", + "upstreamId": "24399|24400|24401|24402|24403|24404|24405|45080|45081|45082|45085|91911|138304|138305|138308|138310|138311|138312|138314|138318|138319|138323|141299|141300|141302|141303|141304|188906|247160|332795|332803|332805|332806|332810|332811|332813|332817|332826|332828|332830|332832|342963|342964|342967|342968|342975|342976|342979|342984|342988|343000|343008|343009|343016|343018|343021|348311|348314|348315|348316|348320|348322|348324|348327|348329|348333|348338|348339|348343|348352|348358|348359|349510|349511|349513|349515|349516|349517|349520|349521|349524|349525|349527|349528|349531|349532|349533|349534|360407|362993|376383|377343|377347|379510|410548|410549|468562|469484|469485|470525|470527|532753|532778|532779|532780|532782|532843|532848|532852|533187|533209|570590|570592|570597|570599|572974|572977|574906|574907|574908|574909|574910|614457|624654|647796|647797|647798|647799|647800|647801|647802|647803|647804|647805|647806|647807|647808|647809|647810|647811|647812|647813|647814|647815|647816|647817|647818|647819|656521|694358|694359|695815|704851|741704|741707|741708|760833|772521|776569|778504|779992|791912|791913|791914|847413|847414|847415|847416|847417|847418|847419|847420|847421|847422|847423|847424|847425|847426|847427|847428|847429|847430|847431|847432|847433|847434|847435|852319|880087|880088|880089|880090|880091|880092|880093|880094|880095|880096|880097|880098|880099|880100|880101|880102|880103|880104|880105|880106|880107|880108|880109|880110|880111|880112|880113|880114|880115|880116|880117|880118|880119|880120|880121|880122|880123|880124|880125|880710|880711|880712|880713|928892|928893|928894|928895|938613|938614|938615|950712|950713|958568|958569|958570|958571|964517", "text": "Severe combined immunodeficiency, autosomal recessive, T cell-negative, B cell-positive, NK cell-negative" }, { - "baseId": "24406", + "upstreamId": "24406", "text": "GIL BLOOD GROUP" }, { - "baseId": "24408|24409|24413|24414|24415|24416|24421|24423|24426|24427|24428|24431|24432|24435|24438|24439|24440|24445|38447|45419|45421|45422|45423|45424|45426|45427|45428|48043|57443|57444|57446|57448|57448|57448|57450|57450|57450|57451|57453|57455|57456|57457|57458|57459|57460|57461|57464|57467|57470|57474|57476|57478|57478|57479|57481|78547|78555|78567|78578|78586|78588|78607|78607|78627|78629|78664|78665|78666|78667|78683|78697|78729|78731|78750|78797|78825|78826|78829|78831|78842|78870|78872|78877|78902|78906|78912|78914|78916|78917|78919|78924|78926|78945|142746|142747|142750|142754|142755|142756|142757|142764|142769|173784|173789|173792|173917|173920|173921|173926|173928|196826|196826|196863|196864|196868|196890|196904|196928|196929|196995|196998|204196|229045|239196|239203|246944|258319|290247|290248|290251|290261|290262|290267|290268|290269|290272|290275|290282|291024|291043|291051|291052|291054|291055|291056|291061|291079|291083|291086|291098|291099|291100|294304|294321|294323|294324|294336|294340|294343|294369|294382|294387|294400|294414|294719|294723|294725|294748|294749|367203|367473|367482|367499|367523|393593|404765|439876|452218|452452|452553|500768|509585|509600|511073|519397|551763|551765|551766|551767|558918|559467|559471|578417|616892|616902|616906|625791|625792|680043|680044|691385|818225|858552|888837|888838|888839|888840|888841|888842|888843|888844|888845|888846|888847|888848|888849|888850|888851|888852|888853|888854|888855|888856|888857|888858|888859|888860|888861|888862|888863|888864|888865|888866|888867|888868|888869|888870|888871|888872|891639|960995|966792|967149|967180", + "upstreamId": "24408|24409|24413|24414|24415|24416|24421|24423|24426|24427|24428|24431|24432|24435|24438|24439|24440|24445|38447|45419|45421|45422|45423|45424|45426|45427|45428|48043|57443|57444|57446|57448|57448|57448|57450|57450|57450|57451|57453|57455|57456|57457|57458|57459|57460|57461|57464|57467|57470|57474|57476|57478|57478|57479|57481|78547|78555|78567|78578|78586|78588|78607|78607|78627|78629|78664|78665|78666|78667|78683|78697|78729|78731|78750|78797|78825|78826|78829|78831|78842|78870|78872|78877|78902|78906|78912|78914|78916|78917|78919|78924|78926|78945|142746|142747|142750|142754|142755|142756|142757|142764|142769|173784|173789|173792|173917|173920|173921|173926|173928|196826|196826|196863|196864|196868|196890|196904|196928|196929|196995|196998|204196|229045|239196|239203|246944|258319|290247|290248|290251|290261|290262|290267|290268|290269|290272|290275|290282|291024|291043|291051|291052|291054|291055|291056|291061|291079|291083|291086|291098|291099|291100|294304|294321|294323|294324|294336|294340|294343|294369|294382|294387|294400|294414|294719|294723|294725|294748|294749|367203|367473|367482|367499|367523|393593|404765|439876|452218|452452|452553|500768|509585|509600|511073|519397|551763|551765|551766|551767|558918|559467|559471|578417|616892|616902|616906|625791|625792|680043|680044|691385|818225|858552|888837|888838|888839|888840|888841|888842|888843|888844|888845|888846|888847|888848|888849|888850|888851|888852|888853|888854|888855|888856|888857|888858|888859|888860|888861|888862|888863|888864|888865|888866|888867|888868|888869|888870|888871|888872|891639|960995|966792|967149|967180", "text": "Long QT syndrome 3" }, { - "baseId": "24410|24411|24412|24416|24419|24420|24421|24422|24426|24429|24430|24431|24432|24434|24436|24437|24438|24439|24441|24442|24445|24446|38446|38447|38448|39001|45419|45421|45422|45423|45424|45426|45427|45428|57443|57444|57446|57448|57448|57450|57450|57451|57453|57454|57455|57456|57457|57459|57460|57461|57464|57467|57470|57472|57473|57474|57476|57478|57478|57479|57481|78522|78528|78534|78552|78555|78559|78563|78567|78571|78577|78578|78579|78581|78587|78596|78605|78607|78607|78616|78627|78629|78643|78656|78658|78664|78665|78667|78670|78677|78683|78685|78696|78697|78702|78705|78714|78715|78727|78729|78750|78779|78805|78820|78831|78842|78859|78870|78877|78880|78888|78895|78897|78902|78906|78907|78912|78914|78916|78917|78925|78926|78934|78938|78939|78944|101304|142746|142747|142750|142754|142755|142756|142757|142764|142769|173781|173784|173788|173789|173792|173917|173920|173921|173926|173928|178526|188434|189217|189357|196826|196826|196863|196889|196890|196891|196896|196910|196913|196928|196929|196995|197003|197194|229045|229058|239196|239203|239222|248628|248629|251110|258311|258319|258926|290247|290248|290251|290261|290262|290267|290268|290269|290272|290275|290282|291024|291043|291051|291052|291054|291055|291056|291061|291079|291083|291086|291098|291099|291100|294304|294321|294323|294324|294336|294340|294343|294369|294382|294387|294400|294414|294719|294723|294725|294748|294749|367203|367473|367482|367499|367523|393560|393593|393828|393998|406291|424891|424899|439143|442549|452218|452553|452767|452775|500768|509585|509600|511073|519397|551764|558918|559467|559471|562851|578417|589828|589829|616892|616902|616906|625793|631281|631317|677131|679711|679712|691385|691397|790391|790392|858552|888837|888838|888839|888840|888841|888842|888843|888844|888845|888846|888847|888848|888849|888850|888851|888852|888853|888854|888855|888856|888857|888858|888859|888860|888861|888862|888863|888864|888865|888866|888867|888868|888869|888870|888871|888872|891639|909521|953454|960995|960996|960997|964222|966429|967149|967180|967264|967265|970532|983502", + "upstreamId": "24410|24411|24412|24416|24419|24420|24421|24422|24426|24429|24430|24431|24432|24434|24436|24437|24438|24439|24441|24442|24445|24446|38446|38447|38448|39001|45419|45421|45422|45423|45424|45426|45427|45428|57443|57444|57446|57448|57448|57450|57450|57451|57453|57454|57455|57456|57457|57459|57460|57461|57464|57467|57470|57472|57473|57474|57476|57478|57478|57479|57481|78522|78528|78534|78552|78555|78559|78563|78567|78571|78577|78578|78579|78581|78587|78596|78605|78607|78607|78616|78627|78629|78643|78656|78658|78664|78665|78667|78670|78677|78683|78685|78696|78697|78702|78705|78714|78715|78727|78729|78750|78779|78805|78820|78831|78842|78859|78870|78877|78880|78888|78895|78897|78902|78906|78907|78912|78914|78916|78917|78925|78926|78934|78938|78939|78944|101304|142746|142747|142750|142754|142755|142756|142757|142764|142769|173781|173784|173788|173789|173792|173917|173920|173921|173926|173928|178526|188434|189217|189357|196826|196826|196863|196889|196890|196891|196896|196910|196913|196928|196929|196995|197003|197194|229045|229058|239196|239203|239222|248628|248629|251110|258311|258319|258926|290247|290248|290251|290261|290262|290267|290268|290269|290272|290275|290282|291024|291043|291051|291052|291054|291055|291056|291061|291079|291083|291086|291098|291099|291100|294304|294321|294323|294324|294336|294340|294343|294369|294382|294387|294400|294414|294719|294723|294725|294748|294749|367203|367473|367482|367499|367523|393560|393593|393828|393998|406291|424891|424899|439143|442549|452218|452553|452767|452775|500768|509585|509600|511073|519397|551764|558918|559467|559471|562851|578417|589828|589829|616892|616902|616906|625793|631281|631317|677131|679711|679712|691385|691397|790391|790392|858552|888837|888838|888839|888840|888841|888842|888843|888844|888845|888846|888847|888848|888849|888850|888851|888852|888853|888854|888855|888856|888857|888858|888859|888860|888861|888862|888863|888864|888865|888866|888867|888868|888869|888870|888871|888872|891639|909521|953454|960995|960996|960997|964222|966429|967149|967180|967264|967265|970532|983502", "text": "Brugada syndrome 1" }, { - "baseId": "24413|24426|24431|24432|24433|24434|24435|24438|38447|45419|45421|45422|45423|45424|45426|45427|45428|57443|57444|57446|57448|57450|57451|57453|57456|57457|57459|57460|57461|57464|57467|57470|57474|57476|57478|57479|57481|78552|78555|78578|78607|78626|78664|78665|78666|78667|78683|78697|78714|78729|78750|78817|78842|78857|78870|78877|78880|78902|78906|78912|78914|78916|78917|78926|142746|142747|142750|142754|142755|142756|142757|142764|142769|173784|173789|173792|173917|173920|173921|173926|173928|196826|196849|196863|196890|196928|196929|196995|229045|239196|239203|258319|290247|290248|290251|290261|290262|290267|290268|290269|290272|290275|290282|291024|291043|291051|291052|291054|291055|291056|291061|291079|291083|291086|291098|291099|291100|294304|294321|294323|294324|294336|294340|294343|294369|294382|294387|294400|294414|294719|294723|294725|294748|294749|367203|367473|367499|367523|393593|452218|452553|500768|509585|509600|511073|513944|519397|558918|559471|616892|616902|616906|631317|691385|858552|888837|888838|888839|888840|888841|888842|888843|888844|888845|888846|888847|888848|888849|888850|888851|888852|888853|888854|888855|888856|888857|888858|888859|888860|888861|888862|888863|888864|888865|888866|888867|888868|888869|888870|888871|888872|891639|915654|918829", + "upstreamId": "24413|24426|24431|24432|24433|24434|24435|24438|38447|45419|45421|45422|45423|45424|45426|45427|45428|57443|57444|57446|57448|57450|57451|57453|57456|57457|57459|57460|57461|57464|57467|57470|57474|57476|57478|57479|57481|78552|78555|78578|78607|78626|78664|78665|78666|78667|78683|78697|78714|78729|78750|78817|78842|78857|78870|78877|78880|78902|78906|78912|78914|78916|78917|78926|142746|142747|142750|142754|142755|142756|142757|142764|142769|173784|173789|173792|173917|173920|173921|173926|173928|196826|196849|196863|196890|196928|196929|196995|229045|239196|239203|258319|290247|290248|290251|290261|290262|290267|290268|290269|290272|290275|290282|291024|291043|291051|291052|291054|291055|291056|291061|291079|291083|291086|291098|291099|291100|294304|294321|294323|294324|294336|294340|294343|294369|294382|294387|294400|294414|294719|294723|294725|294748|294749|367203|367473|367499|367523|393593|452218|452553|500768|509585|509600|511073|513944|519397|558918|559471|616892|616902|616906|631317|691385|858552|888837|888838|888839|888840|888841|888842|888843|888844|888845|888846|888847|888848|888849|888850|888851|888852|888853|888854|888855|888856|888857|888858|888859|888860|888861|888862|888863|888864|888865|888866|888867|888868|888869|888870|888871|888872|891639|915654|918829", "text": "Sick sinus syndrome 1, autosomal recessive" }, { - "baseId": "24416|173788|189359", + "upstreamId": "24416|173788|189359", "text": "Sinus node disease" }, { - "baseId": "24417|24424|24426|24431|24432|24438|38447|44159|44160|45419|45421|45422|45423|45424|45426|45427|45428|57443|57444|57446|57448|57450|57451|57453|57456|57457|57459|57460|57461|57464|57467|57470|57474|57476|57478|57479|57481|78552|78555|78578|78607|78664|78665|78666|78667|78683|78697|78714|78750|78842|78870|78877|78880|78902|78906|78912|78914|78916|78917|78926|142746|142747|142750|142754|142755|142756|142757|142764|142769|173784|173789|173792|173917|173920|173921|173926|173928|196826|196863|196890|196928|196929|196995|229045|239196|239203|258319|290247|290248|290251|290261|290262|290267|290268|290269|290272|290275|290282|291024|291043|291051|291052|291054|291055|291056|291061|291079|291083|291086|291098|291099|291100|294304|294321|294323|294324|294336|294340|294343|294369|294382|294387|294400|294414|294719|294723|294725|294748|294749|367203|367473|367499|367523|393593|452218|452553|500768|509585|509600|511073|519397|558918|559471|616892|616902|616906|691385|858552|888837|888838|888839|888840|888841|888842|888843|888844|888845|888846|888847|888848|888849|888850|888851|888852|888853|888854|888855|888856|888857|888858|888859|888860|888861|888862|888863|888864|888865|888866|888867|888868|888869|888870|888871|888872|891639", + "upstreamId": "24417|24424|24426|24431|24432|24438|38447|44159|44160|45419|45421|45422|45423|45424|45426|45427|45428|57443|57444|57446|57448|57450|57451|57453|57456|57457|57459|57460|57461|57464|57467|57470|57474|57476|57478|57479|57481|78552|78555|78578|78607|78664|78665|78666|78667|78683|78697|78714|78750|78842|78870|78877|78880|78902|78906|78912|78914|78916|78917|78926|142746|142747|142750|142754|142755|142756|142757|142764|142769|173784|173789|173792|173917|173920|173921|173926|173928|196826|196863|196890|196928|196929|196995|229045|239196|239203|258319|290247|290248|290251|290261|290262|290267|290268|290269|290272|290275|290282|291024|291043|291051|291052|291054|291055|291056|291061|291079|291083|291086|291098|291099|291100|294304|294321|294323|294324|294336|294340|294343|294369|294382|294387|294400|294414|294719|294723|294725|294748|294749|367203|367473|367499|367523|393593|452218|452553|500768|509585|509600|511073|519397|558918|559471|616892|616902|616906|691385|858552|888837|888838|888839|888840|888841|888842|888843|888844|888845|888846|888847|888848|888849|888850|888851|888852|888853|888854|888855|888856|888857|888858|888859|888860|888861|888862|888863|888864|888865|888866|888867|888868|888869|888870|888871|888872|891639", "text": "Progressive familial heart block, type 1A" }, { - "baseId": "24418", + "upstreamId": "24418", "text": "Heart block, nonprogressive" }, { - "baseId": "24422|24426|24431|24432|24438|38447|45400|45419|45421|45422|45423|45424|45426|45427|45428|52126|53160|56054|57443|57444|57446|57448|57450|57451|57453|57456|57457|57459|57460|57461|57464|57467|57470|57474|57476|57478|57479|57481|78552|78555|78578|78607|78664|78665|78666|78667|78683|78697|78714|78750|78842|78870|78877|78880|78902|78906|78912|78914|78916|78917|78926|142746|142747|142750|142754|142755|142756|142757|142764|142769|165527|165553|173784|173789|173792|173917|173920|173921|173926|173928|176814|178465|178571|178579|178607|178629|178655|178718|178754|196826|196863|196890|196928|196929|196995|229045|239196|239203|258319|290247|290248|290251|290261|290262|290267|290268|290269|290272|290275|290282|291024|291043|291051|291052|291054|291055|291056|291061|291079|291083|291086|291098|291099|291100|294304|294321|294323|294324|294336|294340|294343|294369|294382|294387|294400|294414|294719|294723|294725|294748|294749|367203|367473|367499|367523|393593|452218|452553|500768|509585|509600|511073|519397|558918|559471|578456|616892|616902|616906|691385|858552|888837|888838|888839|888840|888841|888842|888843|888844|888845|888846|888847|888848|888849|888850|888851|888852|888853|888854|888855|888856|888857|888858|888859|888860|888861|888862|888863|888864|888865|888866|888867|888868|888869|888870|888871|888872|891639", + "upstreamId": "24422|24426|24431|24432|24438|38447|45400|45419|45421|45422|45423|45424|45426|45427|45428|52126|53160|56054|57443|57444|57446|57448|57450|57451|57453|57456|57457|57459|57460|57461|57464|57467|57470|57474|57476|57478|57479|57481|78552|78555|78578|78607|78664|78665|78666|78667|78683|78697|78714|78750|78842|78870|78877|78880|78902|78906|78912|78914|78916|78917|78926|142746|142747|142750|142754|142755|142756|142757|142764|142769|165527|165553|173784|173789|173792|173917|173920|173921|173926|173928|176814|178465|178571|178579|178607|178629|178655|178718|178754|196826|196863|196890|196928|196929|196995|229045|239196|239203|258319|290247|290248|290251|290261|290262|290267|290268|290269|290272|290275|290282|291024|291043|291051|291052|291054|291055|291056|291061|291079|291083|291086|291098|291099|291100|294304|294321|294323|294324|294336|294340|294343|294369|294382|294387|294400|294414|294719|294723|294725|294748|294749|367203|367473|367499|367523|393593|452218|452553|500768|509585|509600|511073|519397|558918|559471|578456|616892|616902|616906|691385|858552|888837|888838|888839|888840|888841|888842|888843|888844|888845|888846|888847|888848|888849|888850|888851|888852|888853|888854|888855|888856|888857|888858|888859|888860|888861|888862|888863|888864|888865|888866|888867|888868|888869|888870|888871|888872|891639", "text": "Paroxysmal familial ventricular fibrillation 1" }, { - "baseId": "24424|24426", + "upstreamId": "24424|24426", "text": "Atrioventricular block" }, { - "baseId": "24425", + "upstreamId": "24425", "text": "Cardiac conduction defect, nonprogressive" }, { - "baseId": "24426|29188|45778|45780|54093|241801|514099", + "upstreamId": "24426|29188|45778|45780|54093|241801|514099", "text": "Hemiplegia" }, { - "baseId": "24426|29188|54093|193096|241801|359762|513896|514011|514092|970990", + "upstreamId": "24426|29188|54093|193096|241801|359762|513896|514011|514092|970990", "text": "Migraine" }, { - "baseId": "24426|24431|24432|24435|24440|24445|38447|45419|45421|45422|45423|45424|45426|45427|45428|48043|48044|57443|57444|57446|57448|57450|57451|57453|57456|57457|57459|57460|57461|57464|57467|57470|57474|57476|57478|57479|57481|78552|78555|78578|78607|78626|78664|78665|78666|78667|78683|78697|78714|78750|78842|78870|78877|78880|78902|78906|78912|78914|78916|78917|78925|78926|142746|142747|142750|142754|142755|142756|142757|142764|142769|173784|173789|173792|173917|173920|173921|173926|173928|196826|196863|196890|196928|196929|196943|196995|229045|239196|239203|258319|290247|290248|290251|290261|290262|290267|290268|290269|290272|290275|290282|291024|291043|291051|291052|291054|291055|291056|291061|291079|291083|291086|291098|291099|291100|294304|294321|294323|294324|294336|294340|294343|294369|294382|294387|294400|294414|294719|294723|294725|294748|294749|367203|367473|367499|367523|393593|452218|452553|500768|509585|509600|511073|519397|558918|559471|578417|616892|616902|616906|691385|827994|858552|888837|888838|888839|888840|888841|888842|888843|888844|888845|888846|888847|888848|888849|888850|888851|888852|888853|888854|888855|888856|888857|888858|888859|888860|888861|888862|888863|888864|888865|888866|888867|888868|888869|888870|888871|888872|891639", + "upstreamId": "24426|24431|24432|24435|24440|24445|38447|45419|45421|45422|45423|45424|45426|45427|45428|48043|48044|57443|57444|57446|57448|57450|57451|57453|57456|57457|57459|57460|57461|57464|57467|57470|57474|57476|57478|57479|57481|78552|78555|78578|78607|78626|78664|78665|78666|78667|78683|78697|78714|78750|78842|78870|78877|78880|78902|78906|78912|78914|78916|78917|78925|78926|142746|142747|142750|142754|142755|142756|142757|142764|142769|173784|173789|173792|173917|173920|173921|173926|173928|196826|196863|196890|196928|196929|196943|196995|229045|239196|239203|258319|290247|290248|290251|290261|290262|290267|290268|290269|290272|290275|290282|291024|291043|291051|291052|291054|291055|291056|291061|291079|291083|291086|291098|291099|291100|294304|294321|294323|294324|294336|294340|294343|294369|294382|294387|294400|294414|294719|294723|294725|294748|294749|367203|367473|367499|367523|393593|452218|452553|500768|509585|509600|511073|519397|558918|559471|578417|616892|616902|616906|691385|827994|858552|888837|888838|888839|888840|888841|888842|888843|888844|888845|888846|888847|888848|888849|888850|888851|888852|888853|888854|888855|888856|888857|888858|888859|888860|888861|888862|888863|888864|888865|888866|888867|888868|888869|888870|888871|888872|891639", "text": "Dilated cardiomyopathy 1E" }, { - "baseId": "24431|24432", + "upstreamId": "24431|24432", "text": "Long qt syndrome 3, acquired, susceptibility to" }, { - "baseId": "24432|28518|38447|40366|40367|40369|40376|40377|40378|40380|40399|44468|45099|45101|45419|45423|51655|51656|51658|51659|51660|51661|57444|57446|57453|57459|57460|57463|57467|57470|57474|57481|67638|67715|67718|77916|77926|78267|136399|140033|140036|140038|140041|140043|140044|140045|140046|140047|140048|140052|140053|141693|141694|141695|141696|141697|141698|141707|141708|141709|141712|141715|142740|142741|142747|142754|142757|142764|142925|173790|173917|173920|173931|175840|176358|178523|178587|178589|179082|186151|187117|187213|188430|188434|188440|188441|188458|188463|188716|188726|188744|188750|189264|189266|189267|189272|189273|189276|189277|189285|189286|189288|189297|189299|189300|189302|189303|189305|189306|189309|189322|196890|196928|196995|197424|212621|212923|221743|221747|222853|224269|229045|236772|238773|238774|239196|239203|240190|240193|240201|240203|243350|243351|243352|243578|258490|258516|259046|259054|290242|290243|290244|290247|290248|290251|290254|290261|290262|290267|290268|290269|290271|290272|290275|290276|290282|291024|291029|291030|291039|291040|291043|291049|291051|291052|291054|291055|291056|291061|291066|291078|291079|291083|291086|291087|291088|291095|291098|291099|291100|291730|291733|293055|293056|293071|293074|293079|294304|294310|294320|294321|294323|294324|294336|294337|294340|294342|294343|294369|294382|294384|294386|294387|294391|294399|294400|294413|294414|294701|294707|294717|294718|294719|294722|294723|294725|294738|294748|294749|296327|296330|296331|296333|296349|296387|296388|296389|296390|303490|303491|303492|303493|303498|303500|303501|303502|303507|303514|303515|303516|303524|303547|303549|306910|306912|306921|306928|306931|306932|306933|306939|306940|306943|306944|306950|306951|306952|306956|306967|306975|311818|311819|311820|311829|311831|311836|311837|311838|311839|311842|311844|311851|311852|311855|311856|311857|311858|311859|311865|311866|311867|311889|311890|312473|312475|312476|312477|312481|312483|312485|312486|312489|312493|312495|312502|312505|312506|312507|312509|312510|312511|312512|313257|313258|313262|313263|313264|313265|313267|313268|313284|313288|313292|313293|313294|313298|313299|313300|313301|313305|313306|313309|313312|313313|313314|313320|313322|313786|313787|313790|313794|313799|313800|313812|313816|313817|313822|313826|313828|313829|313831|313834|318378|318379|318384|318395|318396|318397|318408|318411|318415|318416|318418|318429|318430|318441|318442|318452|318454|318464|318466|318469|318470|318471|319388|319394|319395|319396|319397|319399|319400|319401|319402|319417|319418|319433|319434|319435|319441|319442|319443|319444|319980|319984|319986|319987|319988|319993|319999|320013|320015|320017|320018|320021|320022|320025|320026|320030|320032|324519|324524|324528|324529|324534|324535|324537|324542|324543|324544|324580|324581|324582|324583|324587|324588|324590|324591|325242|325244|325245|325252|325254|325257|325258|325259|325269|325270|325277|325278|325289|325291|325300|325306|325510|325511|325512|325513|325514|325524|325525|325528|325531|325532|325537|325538|325539|325545|325549|325560|325562|325570|325578|325579|326163|326169|326170|326178|326190|326191|326206|326209|326210|326211|326212|326214|326218|326474|326475|326478|326479|326489|326511|326517|326519|326520|326521|326523|326529|326533|326534|326535|326536|326539|326540|326545|326565|326566|326575|326583|326584|326586|327103|327120|327127|327130|327131|327132|327133|327139|327142|327143|327152|327157|327158|335276|335279|335288|335290|336609|336611|336618|336619|336622|336624|336627|336628|336632|336636|336638|336641|336647|336648|336656|336659|336663|336668|336670|336674|345097|345102|345105|345107|345111|345112|345116|346324|346325|346327|346329|346330|346335|346336|346337|346339|346340|346343|346344|346347|346349|346350|346351|346352|346354|346356|349881|349882|349884|349885|350563|350564|350566|350568|350569|350571|350572|350574|350575|350577|350578|350579|350583|350586|350589|350592|350593|350595|350597|350900|350901|350904|350907|350909|350911|350913|350916|350918|351605|351606|351609|351612|351613|351616|351619|351620|351623|351628|351633|351636|351637|351639|351640|351642|351644|351645|351647|351648|351650|353590|392694|403266|403267|403311|403778|450940|451057|469915|469916|471027|630071|630072|630073|648179|648180|648181|774764|786236|800961|826547|852874|940712|942952|942953|953105|960922", + "upstreamId": "24432|28518|38447|40366|40367|40369|40376|40377|40378|40380|40399|44468|45099|45101|45419|45423|51655|51656|51658|51659|51660|51661|57444|57446|57453|57459|57460|57463|57467|57470|57474|57481|67638|67715|67718|77916|77926|78267|136399|140033|140036|140038|140041|140043|140044|140045|140046|140047|140048|140052|140053|141693|141694|141695|141696|141697|141698|141707|141708|141709|141712|141715|142740|142741|142747|142754|142757|142764|142925|173790|173917|173920|173931|175840|176358|178523|178587|178589|179082|186151|187117|187213|188430|188434|188440|188441|188458|188463|188716|188726|188744|188750|189264|189266|189267|189272|189273|189276|189277|189285|189286|189288|189297|189299|189300|189302|189303|189305|189306|189309|189322|196890|196928|196995|197424|212621|212923|221743|221747|222853|224269|229045|236772|238773|238774|239196|239203|240190|240193|240201|240203|243350|243351|243352|243578|258490|258516|259046|259054|290242|290243|290244|290247|290248|290251|290254|290261|290262|290267|290268|290269|290271|290272|290275|290276|290282|291024|291029|291030|291039|291040|291043|291049|291051|291052|291054|291055|291056|291061|291066|291078|291079|291083|291086|291087|291088|291095|291098|291099|291100|291730|291733|293055|293056|293071|293074|293079|294304|294310|294320|294321|294323|294324|294336|294337|294340|294342|294343|294369|294382|294384|294386|294387|294391|294399|294400|294413|294414|294701|294707|294717|294718|294719|294722|294723|294725|294738|294748|294749|296327|296330|296331|296333|296349|296387|296388|296389|296390|303490|303491|303492|303493|303498|303500|303501|303502|303507|303514|303515|303516|303524|303547|303549|306910|306912|306921|306928|306931|306932|306933|306939|306940|306943|306944|306950|306951|306952|306956|306967|306975|311818|311819|311820|311829|311831|311836|311837|311838|311839|311842|311844|311851|311852|311855|311856|311857|311858|311859|311865|311866|311867|311889|311890|312473|312475|312476|312477|312481|312483|312485|312486|312489|312493|312495|312502|312505|312506|312507|312509|312510|312511|312512|313257|313258|313262|313263|313264|313265|313267|313268|313284|313288|313292|313293|313294|313298|313299|313300|313301|313305|313306|313309|313312|313313|313314|313320|313322|313786|313787|313790|313794|313799|313800|313812|313816|313817|313822|313826|313828|313829|313831|313834|318378|318379|318384|318395|318396|318397|318408|318411|318415|318416|318418|318429|318430|318441|318442|318452|318454|318464|318466|318469|318470|318471|319388|319394|319395|319396|319397|319399|319400|319401|319402|319417|319418|319433|319434|319435|319441|319442|319443|319444|319980|319984|319986|319987|319988|319993|319999|320013|320015|320017|320018|320021|320022|320025|320026|320030|320032|324519|324524|324528|324529|324534|324535|324537|324542|324543|324544|324580|324581|324582|324583|324587|324588|324590|324591|325242|325244|325245|325252|325254|325257|325258|325259|325269|325270|325277|325278|325289|325291|325300|325306|325510|325511|325512|325513|325514|325524|325525|325528|325531|325532|325537|325538|325539|325545|325549|325560|325562|325570|325578|325579|326163|326169|326170|326178|326190|326191|326206|326209|326210|326211|326212|326214|326218|326474|326475|326478|326479|326489|326511|326517|326519|326520|326521|326523|326529|326533|326534|326535|326536|326539|326540|326545|326565|326566|326575|326583|326584|326586|327103|327120|327127|327130|327131|327132|327133|327139|327142|327143|327152|327157|327158|335276|335279|335288|335290|336609|336611|336618|336619|336622|336624|336627|336628|336632|336636|336638|336641|336647|336648|336656|336659|336663|336668|336670|336674|345097|345102|345105|345107|345111|345112|345116|346324|346325|346327|346329|346330|346335|346336|346337|346339|346340|346343|346344|346347|346349|346350|346351|346352|346354|346356|349881|349882|349884|349885|350563|350564|350566|350568|350569|350571|350572|350574|350575|350577|350578|350579|350583|350586|350589|350592|350593|350595|350597|350900|350901|350904|350907|350909|350911|350913|350916|350918|351605|351606|351609|351612|351613|351616|351619|351620|351623|351628|351633|351636|351637|351639|351640|351642|351644|351645|351647|351648|351650|353590|392694|403266|403267|403311|403778|450940|451057|469915|469916|471027|630071|630072|630073|648179|648180|648181|774764|786236|800961|826547|852874|940712|942952|942953|953105|960922", "text": "Romano-Ward syndrome" }, { - "baseId": "24432|29166|45135|51881|51992|52111|52138|53649|54357|57209|136674|141245|172435|174890|175138|175197|175452|175457|175645|175998|176098|178182|178256|179675|189962|205199|205200|205201|205202|205203|205204|205205|390140|398720|439513|463912|464185|467858|481117|499142|511101|624835|635277|672427|672440", + "upstreamId": "24432|29166|45135|51881|51992|52111|52138|53649|54357|57209|136674|141245|172435|174890|175138|175197|175452|175457|175645|175998|176098|178182|178256|179675|189962|205199|205200|205201|205202|205203|205204|205205|390140|398720|439513|463912|464185|467858|481117|499142|511101|624835|635277|672427|672440", "text": "Left ventricular noncompaction" }, { - "baseId": "24433|57463|142741|173790|173931|178523|188736|224269|224275|290242|290243|290244|290254|290271|290276|291029|291030|291039|291040|291049|291066|291078|291087|291088|291095|294310|294320|294337|294342|294384|294386|294391|294399|294413|294701|294707|294717|294718|294722|294738", + "upstreamId": "24433|57463|142741|173790|173931|178523|188736|224269|224275|290242|290243|290244|290254|290271|290276|291029|291030|291039|291040|291049|291066|291078|291087|291088|291095|294310|294320|294337|294342|294384|294386|294391|294399|294413|294701|294707|294717|294718|294722|294738", "text": "Sick sinus syndrome" }, { - "baseId": "24435|178658", + "upstreamId": "24435|178658", "text": "AV junctional rhythm" }, { - "baseId": "24435|24438|78524|78817|196833|578417", + "upstreamId": "24435|24438|78524|78817|196833|578417", "text": "SCN5A-Related Disorders" }, { - "baseId": "24439|24440|39000|39001|39002|39003|39004|578417", + "upstreamId": "24439|24440|39000|39001|39002|39003|39004|578417", "text": "Atrial fibrillation, familial, 10" }, { - "baseId": "24440|78922", + "upstreamId": "24440|78922", "text": "Atrial standstill 1, digenic" }, { - "baseId": "24441|29481", + "upstreamId": "24441|29481", "text": "Long QT syndrome 2/3, digenic" }, { - "baseId": "24446|38448", + "upstreamId": "24446|38448", "text": "Brugada syndrome, lidocaine-induced" }, { - "baseId": "24447|24448|24449|24450|24451|24452|24453|24454|24454|24456|24459|24460|24461|24462|24463|24464|24465|38998|38999|50012|132983|139539|150825|180312|180325|212668|240597|397415|459102|459956|474923|475124|575787|575788|575789|575791", + "upstreamId": "24447|24448|24449|24450|24451|24452|24453|24454|24454|24456|24459|24460|24461|24462|24463|24464|24465|38998|38999|50012|132983|139539|150825|180312|180325|212668|240597|397415|459102|459956|474923|475124|575787|575788|575789|575791", "text": "Cutaneous malignant melanoma 2" }, { - "baseId": "24448|27386|27390|27395|27398|27413|27640|27641|27651|28691|40609|44227|50038|133269|139098|151478|151858|152480|179419|181011|232035|236455|237595|247391|247392|362912|362970|362976|363182|363352|363553|363555|403675|420985|423861|424253|424257|424258|424558|467518|479357|610691|610692|965896|965897|965898|965899|965900", + "upstreamId": "24448|27386|27390|27395|27398|27413|27640|27641|27651|28691|40609|44227|50038|133269|139098|151478|151858|152480|179419|181011|232035|236455|237595|247391|247392|362912|362970|362976|363182|363352|363553|363555|403675|420985|423861|424253|424257|424258|424558|467518|479357|610691|610692|965896|965897|965898|965899|965900", "text": "Lip and oral cavity carcinoma" }, { - "baseId": "24449|24451|24454|24454|24459|24462|45669|50012|50016|50017|50018|50019|132979|132980|132981|132983|133657|137619|137620|137621|137623|139538|140420|150825|150959|151314|180312|180315|180325|180325|180326|182929|212661|212662|212668|221816|221819|221820|221826|233746|233753|244545|244548|244550|244553|259924|358804|358805|358806|358807|358808|358809|358810|358811|358812|358813|358814|358815|358816|358817|371197|397415|397433|459097|459102|459420|459452|475122|539273|539274|539275|539276|575787|575789|790887|790888|790889|790890|790891|790892|790893|790894|790895|790896|790897|790898|790899|790900", + "upstreamId": "24449|24451|24454|24454|24459|24462|45669|50012|50016|50017|50018|50019|132979|132980|132981|132983|133657|137619|137620|137621|137623|139538|140420|150825|150959|151314|180312|180315|180325|180325|180326|182929|212661|212662|212668|221816|221819|221820|221826|233746|233753|244545|244548|244550|244553|259924|358804|358805|358806|358807|358808|358809|358810|358811|358812|358813|358814|358815|358816|358817|371197|397415|397433|459097|459102|459420|459452|475122|539273|539274|539275|539276|575787|575789|790887|790888|790889|790890|790891|790892|790893|790894|790895|790896|790897|790898|790899|790900", "text": "Melanoma-pancreatic cancer syndrome" }, { - "baseId": "24451|24453|24454|24457|24459|24462|24464|24465|31967|50012|50016|50017|50018|50019|88528|98338|132977|132979|132980|132981|132982|132983|133657|137612|137613|137614|137615|137616|137617|137618|137621|137622|139534|139535|139536|139537|139538|139539|140420|150825|151119|151133|151314|151316|151596|151775|151805|152439|152596|152601|180311|180312|180313|180314|180315|180316|180317|180320|180322|180325|180548|180549|180550|182928|182929|182930|182931|182933|182936|182937|182938|182940|182941|182943|183598|183600|183602|183603|183604|183605|183606|183608|183609|186094|186095|186166|186167|212659|212660|212661|212662|212663|212664|212665|212666|212667|212668|213001|213002|213003|213005|213006|213007|213008|221816|221817|221818|221819|221821|221822|221823|221824|221825|221826|222257|222258|222259|222260|222261|222264|222265|222266|233744|233745|233746|233748|233750|233751|233752|233753|233754|233757|233759|233761|233764|233766|233768|233769|233770|233771|234570|234571|234572|234573|234574|234576|234579|234581|234585|234586|234587|240434|240593|240594|240595|240596|240597|240598|240599|240600|240601|240602|240603|240604|240605|240606|241571|241572|241573|241574|241576|244545|244547|244548|244552|244553|244831|244832|259924|264403|318150|358806|358814|358816|363184|363185|363186|363189|371183|371193|372933|373213|373216|375393|396850|396856|396863|396864|396868|396869|397006|397055|397064|397065|397067|397075|397078|397082|397084|397085|397238|397246|397251|397259|397268|397270|397276|397409|397412|397415|397433|397437|399043|399044|399045|399046|399047|399179|399182|399194|399197|399198|399537|399542|399546|399552|399554|399803|399814|407649|407650|407651|407652|407655|407656|407658|407659|407661|407664|407666|407673|407674|407675|408723|408724|408725|408726|421038|421039|421040|421749|432735|432737|444464|458131|459088|459092|459094|459097|459098|459102|459103|459105|459116|459121|459123|459165|459398|459403|459405|459408|459415|459420|459423|459449|459450|459452|459453|459469|459470|459471|459480|459482|459483|459486|459501|459938|459940|459943|459947|459948|459954|459956|459959|459961|459969|459970|462415|462416|462659|462665|462668|462670|462675|462677|462679|462681|463152|463157|463168|463261|463262|463265|463283|463284|474893|474894|474895|474900|474905|474912|474916|474919|474923|475067|475068|475072|475086|475088|475095|475097|475098|475102|475104|475113|475116|475124|475128|476458|476470|476474|476480|476484|476491|476492|476499|476502|476503|476506|476757|476760|476761|476774|476777|476781|477059|477061|477074|477085|477094|482683|482710|482739|484020|484027|484030|484114|484118|484125|484131|484134|484143|484273|484276|487257|487369|487493|523829|524406|524483|524490|524492|524494|524501|524504|524506|524772|524775|524781|524783|524786|524788|524799|524800|524909|524912|524913|524916|524917|525050|525052|525057|525065|525068|525070|525072|525077|527312|527330|527621|527629|527852|527855|562602|563142|563144|563145|563148|563151|563154|563155|563158|563165|563171|563175|563176|563178|563873|563879|563881|563882|563883|563887|563900|563902|563904|563905|565021|565026|565027|565357|565668|565670|565672|565831|565834|565838|565840|565843|565845|565847|565848|566983|566985|566990|566995|568158|568159|568161|568932|568934|568951|568959|568960|568961|568975|568976|568982|575791|611081|617516|617517|617521|617524|617528|617529|617530|617533|617542|617543|621825|638147|638148|638149|638150|638151|638152|638153|638154|638155|638156|638157|638158|638159|638160|638161|638162|638163|638164|638165|638166|638167|638168|638169|638170|638171|638172|638173|638174|638175|638176|638177|638178|638179|638180|638181|641326|641327|641328|641329|641330|641331|641332|641333|641334|641335|641336|641337|641338|641339|641340|641341|641342|641343|641344|641345|641346|651846|651900|695436|738802|738803|753528|775915|784447|784449|809403|809412|809423|809424|809426|809429|809430|809434|811247|811256|811263|811264|811273|811276|811278|815403|820121|820122|820123|820510|820511|822022|822023|822024|822025|822026|822027|822028|822029|822272|835990|835991|835992|835993|835994|835995|835996|835997|835998|835999|836000|836001|836002|836003|836004|836005|840157|840158|840159|840160|840161|840162|840163|840164|840165|840166|840167|840168|840169|840170|840171|840172|840173|840174|840175|840176|840177|840178|840179|840180|840181|840182|840183|852496|911082|925546|925547|925548|925549|925550|925551|925552|926698|926699|926700|926701|926702|926703|926704|926705|926706|934705|934706|934707|934708|934709|934710|934711|934712|934713|936214|936215|936216|936217|936218|936219|936220|936221|936222|941040|946556|946557|946558|946559|946560|948119|948120|948121|948122|948123|948124|948125|948126|948127|948128|948129|955783|955784|955785|955786|955787|955788|955789|955790|955791|955792|956913|956914|956915|960682|960683", + "upstreamId": "24451|24453|24454|24457|24459|24462|24464|24465|31967|50012|50016|50017|50018|50019|88528|98338|132977|132979|132980|132981|132982|132983|133657|137612|137613|137614|137615|137616|137617|137618|137621|137622|139534|139535|139536|139537|139538|139539|140420|150825|151119|151133|151314|151316|151596|151775|151805|152439|152596|152601|180311|180312|180313|180314|180315|180316|180317|180320|180322|180325|180548|180549|180550|182928|182929|182930|182931|182933|182936|182937|182938|182940|182941|182943|183598|183600|183602|183603|183604|183605|183606|183608|183609|186094|186095|186166|186167|212659|212660|212661|212662|212663|212664|212665|212666|212667|212668|213001|213002|213003|213005|213006|213007|213008|221816|221817|221818|221819|221821|221822|221823|221824|221825|221826|222257|222258|222259|222260|222261|222264|222265|222266|233744|233745|233746|233748|233750|233751|233752|233753|233754|233757|233759|233761|233764|233766|233768|233769|233770|233771|234570|234571|234572|234573|234574|234576|234579|234581|234585|234586|234587|240434|240593|240594|240595|240596|240597|240598|240599|240600|240601|240602|240603|240604|240605|240606|241571|241572|241573|241574|241576|244545|244547|244548|244552|244553|244831|244832|259924|264403|318150|358806|358814|358816|363184|363185|363186|363189|371183|371193|372933|373213|373216|375393|396850|396856|396863|396864|396868|396869|397006|397055|397064|397065|397067|397075|397078|397082|397084|397085|397238|397246|397251|397259|397268|397270|397276|397409|397412|397415|397433|397437|399043|399044|399045|399046|399047|399179|399182|399194|399197|399198|399537|399542|399546|399552|399554|399803|399814|407649|407650|407651|407652|407655|407656|407658|407659|407661|407664|407666|407673|407674|407675|408723|408724|408725|408726|421038|421039|421040|421749|432735|432737|444464|458131|459088|459092|459094|459097|459098|459102|459103|459105|459116|459121|459123|459165|459398|459403|459405|459408|459415|459420|459423|459449|459450|459452|459453|459469|459470|459471|459480|459482|459483|459486|459501|459938|459940|459943|459947|459948|459954|459956|459959|459961|459969|459970|462415|462416|462659|462665|462668|462670|462675|462677|462679|462681|463152|463157|463168|463261|463262|463265|463283|463284|474893|474894|474895|474900|474905|474912|474916|474919|474923|475067|475068|475072|475086|475088|475095|475097|475098|475102|475104|475113|475116|475124|475128|476458|476470|476474|476480|476484|476491|476492|476499|476502|476503|476506|476757|476760|476761|476774|476777|476781|477059|477061|477074|477085|477094|482683|482710|482739|484020|484027|484030|484114|484118|484125|484131|484134|484143|484273|484276|487257|487369|487493|523829|524406|524483|524490|524492|524494|524501|524504|524506|524772|524775|524781|524783|524786|524788|524799|524800|524909|524912|524913|524916|524917|525050|525052|525057|525065|525068|525070|525072|525077|527312|527330|527621|527629|527852|527855|562602|563142|563144|563145|563148|563151|563154|563155|563158|563165|563171|563175|563176|563178|563873|563879|563881|563882|563883|563887|563900|563902|563904|563905|565021|565026|565027|565357|565668|565670|565672|565831|565834|565838|565840|565843|565845|565847|565848|566983|566985|566990|566995|568158|568159|568161|568932|568934|568951|568959|568960|568961|568975|568976|568982|575791|611081|617516|617517|617521|617524|617528|617529|617530|617533|617542|617543|621825|638147|638148|638149|638150|638151|638152|638153|638154|638155|638156|638157|638158|638159|638160|638161|638162|638163|638164|638165|638166|638167|638168|638169|638170|638171|638172|638173|638174|638175|638176|638177|638178|638179|638180|638181|641326|641327|641328|641329|641330|641331|641332|641333|641334|641335|641336|641337|641338|641339|641340|641341|641342|641343|641344|641345|641346|651846|651900|695436|738802|738803|753528|775915|784447|784449|809403|809412|809423|809424|809426|809429|809430|809434|811247|811256|811263|811264|811273|811276|811278|815403|820121|820122|820123|820510|820511|822022|822023|822024|822025|822026|822027|822028|822029|822272|835990|835991|835992|835993|835994|835995|835996|835997|835998|835999|836000|836001|836002|836003|836004|836005|840157|840158|840159|840160|840161|840162|840163|840164|840165|840166|840167|840168|840169|840170|840171|840172|840173|840174|840175|840176|840177|840178|840179|840180|840181|840182|840183|852496|911082|925546|925547|925548|925549|925550|925551|925552|926698|926699|926700|926701|926702|926703|926704|926705|926706|934705|934706|934707|934708|934709|934710|934711|934712|934713|936214|936215|936216|936217|936218|936219|936220|936221|936222|941040|946556|946557|946558|946559|946560|948119|948120|948121|948122|948123|948124|948125|948126|948127|948128|948129|955783|955784|955785|955786|955787|955788|955789|955790|955791|955792|956913|956914|956915|960682|960683", "text": "Hereditary melanoma" }, { - "baseId": "24454|24458|150825|180312|180325", + "upstreamId": "24454|24458|150825|180312|180325", "text": "Melanoma and neural system tumor syndrome" }, { - "baseId": "24466|134765|134766|134767|134769|134770|134771|134772|134773|134774|134775|177785|190388|190389|190390|190393|190395|191534|192748|207792|213600|247045|259940|267358|268258|268416|271282|271354|271795|272266|273737|273840|311137|311139|311140|311141|311147|311151|311153|311154|311155|311159|311161|311166|311171|316451|316455|316457|316458|316464|316466|316467|316468|316470|316475|316477|316478|316481|316488|322527|322531|322534|322538|322540|322541|322542|322544|322546|322547|322548|322552|322557|322558|322559|322561|322562|323207|323209|323210|323223|323224|323264|323268|323271|323272|323275|323276|323278|323279|323291|323295|323297|323299|359868|431491|437866|441382|444658|460156|460161|460165|460169|460171|460276|460280|460284|460292|460297|460535|460539|460542|460967|488565|489501|490853|492638|492638|493641|493671|493717|525400|525406|525412|525413|525419|525424|525426|525510|525511|525512|525599|525621|525646|525653|525654|525792|525796|552146|563952|563955|563961|566505|566510|569771|576383|577156|612886|614352|639162|639163|639164|639165|639166|639167|639168|639169|639170|639171|639172|639173|639174|639175|639176|639177|639178|639179|652335|652337|701432|701433|701434|701435|701436|712475|724069|724070|724071|737601|737602|737604|737606|744649|752265|752266|752267|752268|752269|767986|767988|767990|767996|775579|783742|783743|783745|783746|787701|787870|796468|796472|837312|837313|837314|837315|837316|837317|837318|837319|837320|837321|837322|837323|837324|837325|837326|837327|837328|837329|837330|837331|837332|837333|866284|866285|866286|866287|866288|866289|866290|866291|866292|866293|866294|866295|866296|866297|866298|866299|866300|866301|866302|866303|866304|868503|868504|868505|868506|919288|919289|919290|919291|925929|925930|925931|925932|925933|925934|925935|925936|925937|925938|925939|925940|925941|925942|935177|935178|935179|935180|935181|935182|935183|935184|935185|935186|935187|935188|940968|940969|947074|947075|947076|947077|947078|956210|956211|956212|956213|956214|956215|960729|964346|964347|964348", + "upstreamId": "24466|134765|134766|134767|134769|134770|134771|134772|134773|134774|134775|177785|190388|190389|190390|190393|190395|191534|192748|207792|213600|247045|259940|267358|268258|268416|271282|271354|271795|272266|273737|273840|311137|311139|311140|311141|311147|311151|311153|311154|311155|311159|311161|311166|311171|316451|316455|316457|316458|316464|316466|316467|316468|316470|316475|316477|316478|316481|316488|322527|322531|322534|322538|322540|322541|322542|322544|322546|322547|322548|322552|322557|322558|322559|322561|322562|323207|323209|323210|323223|323224|323264|323268|323271|323272|323275|323276|323278|323279|323291|323295|323297|323299|359868|431491|437866|441382|444658|460156|460161|460165|460169|460171|460276|460280|460284|460292|460297|460535|460539|460542|460967|488565|489501|490853|492638|492638|493641|493671|493717|525400|525406|525412|525413|525419|525424|525426|525510|525511|525512|525599|525621|525646|525653|525654|525792|525796|552146|563952|563955|563961|566505|566510|569771|576383|577156|612886|614352|639162|639163|639164|639165|639166|639167|639168|639169|639170|639171|639172|639173|639174|639175|639176|639177|639178|639179|652335|652337|701432|701433|701434|701435|701436|712475|724069|724070|724071|737601|737602|737604|737606|744649|752265|752266|752267|752268|752269|767986|767988|767990|767996|775579|783742|783743|783745|783746|787701|787870|796468|796472|837312|837313|837314|837315|837316|837317|837318|837319|837320|837321|837322|837323|837324|837325|837326|837327|837328|837329|837330|837331|837332|837333|866284|866285|866286|866287|866288|866289|866290|866291|866292|866293|866294|866295|866296|866297|866298|866299|866300|866301|866302|866303|866304|868503|868504|868505|868506|919288|919289|919290|919291|925929|925930|925931|925932|925933|925934|925935|925936|925937|925938|925939|925940|925941|925942|935177|935178|935179|935180|935181|935182|935183|935184|935185|935186|935187|935188|940968|940969|947074|947075|947076|947077|947078|956210|956211|956212|956213|956214|956215|960729|964346|964347|964348", "text": "Paroxysmal nonkinesigenic dyskinesia, 3, with or without generalized epilepsy" }, { - "baseId": "24467|24468|24469|24470|24471|24472|24473|38997|99648|100923|100932|100935|100936|100937|100946|100947|100956|137774|137778|169207|169208|169210|169211|169212|169213|169215|169216|169218|169219|169220|169221|169223|169226|169227|169228|169229|169230|169231|169233|169234|169235|169236|169237|169238|169239|169240|169242|169243|169244|169245|169246|169247|169248|169250|169251|169252|169253|169254|169255|169256|169258|169259|169260|169261|169263|169264|169265|169266|169267|169268|169269|169270|169271|169272|177285|191888|192379|193041|205026|205780|208240|208259|208260|208261|208262|208263|208264|208265|208267|208268|208269|208270|208271|208272|208273|208276|208277|208278|208279|208281|225888|263005|263759|264634|338281|338285|338289|338298|338300|338310|338323|338324|347913|347924|347930|347960|347966|347967|351703|351706|351710|351711|351714|351718|352602|352603|352608|352613|352614|360999|361586|362447|424990|429809|429810|431385|465732|465735|465745|465750|466446|466450|466463|466468|481223|511035|513131|513132|529241|529568|529980|529982|530098|530105|530307|530519|530522|530525|530527|536101|536103|536106|536108|536109|537256|539065|539104|550625|551791|567500|567504|568136|568137|570193|573660|574058|574060|574066|576341|578530|578531|583125|610645|611421|653890|677299|682825|682826|682835|682865|682866|682867|682868|682869|682870|682871|682872|682873|682874|682875|682876|682877|682878|682879|682880|682881|682882|682883|682884|682885|682886|682887|682888|682889|682890|682891|682892|682893|682894|682895|682896|682897|682898|682899|682900|682901|682902|682903|682904|682905|682906|682907|682908|682909|682910|682911|682912|682913|682914|682915|682916|682917|682918|682919|682920|682921|682922|682923|682924|682925|682926|682927|682928|682929|682930|682931|682932|682933|682934|682935|682936|682937|682938|682939|682940|682941|682942|682943|682944|682945|682946|682947|682948|682949|791615|791616|791617|791618|791619|792072|792074|792075|792076|792077|792078|792079|816004|857658|919648|919649|919650|919651|919652|919653|919654|919655|919656|961535|961536|961623|961624|963804|964049|964454|964455|964755|966029|966030|966031|969862|969880|971048|973041|975670|977275|977276", + "upstreamId": "24467|24468|24469|24470|24471|24472|24473|38997|99648|100923|100932|100935|100936|100937|100946|100947|100956|137774|137778|169207|169208|169210|169211|169212|169213|169215|169216|169218|169219|169220|169221|169223|169226|169227|169228|169229|169230|169231|169233|169234|169235|169236|169237|169238|169239|169240|169242|169243|169244|169245|169246|169247|169248|169250|169251|169252|169253|169254|169255|169256|169258|169259|169260|169261|169263|169264|169265|169266|169267|169268|169269|169270|169271|169272|177285|191888|192379|193041|205026|205780|208240|208259|208260|208261|208262|208263|208264|208265|208267|208268|208269|208270|208271|208272|208273|208276|208277|208278|208279|208281|225888|263005|263759|264634|338281|338285|338289|338298|338300|338310|338323|338324|347913|347924|347930|347960|347966|347967|351703|351706|351710|351711|351714|351718|352602|352603|352608|352613|352614|360999|361586|362447|424990|429809|429810|431385|465732|465735|465745|465750|466446|466450|466463|466468|481223|511035|513131|513132|529241|529568|529980|529982|530098|530105|530307|530519|530522|530525|530527|536101|536103|536106|536108|536109|537256|539065|539104|550625|551791|567500|567504|568136|568137|570193|573660|574058|574060|574066|576341|578530|578531|583125|610645|611421|653890|677299|682825|682826|682835|682865|682866|682867|682868|682869|682870|682871|682872|682873|682874|682875|682876|682877|682878|682879|682880|682881|682882|682883|682884|682885|682886|682887|682888|682889|682890|682891|682892|682893|682894|682895|682896|682897|682898|682899|682900|682901|682902|682903|682904|682905|682906|682907|682908|682909|682910|682911|682912|682913|682914|682915|682916|682917|682918|682919|682920|682921|682922|682923|682924|682925|682926|682927|682928|682929|682930|682931|682932|682933|682934|682935|682936|682937|682938|682939|682940|682941|682942|682943|682944|682945|682946|682947|682948|682949|791615|791616|791617|791618|791619|792072|792074|792075|792076|792077|792078|792079|816004|857658|919648|919649|919650|919651|919652|919653|919654|919655|919656|961535|961536|961623|961624|963804|964049|964454|964455|964755|966029|966030|966031|969862|969880|971048|973041|975670|977275|977276", "text": "Rubinstein-Taybi syndrome 1" }, { - "baseId": "24474|24475|24476|24477|24478|24479|45812|98212|135740|135741|168982|177027|177421|178065|186981|186982|194255|194256|194779|195192|195193|195194|213838|256270|265385|265523|265625|266096|266691|266748|267101|267355|267685|268237|268922|268945|269182|270055|270168|270250|270286|272832|273682|274010|274031|274128|274525|274759|274862|274955|329109|329113|358446|358447|358448|358449|358450|358451|358452|358453|358454|358455|358456|360257|378444|410065|410066|429989|445804|445806|466980|466985|467925|468175|468180|468374|468380|468383|468385|488497|488527|488615|488807|489091|489266|489699|491369|491436|491596|495843|531233|531400|531482|537290|548203|548208|548219|548227|548233|548240|548242|548244|548249|548534|548541|548542|548544|548545|548546|548552|548962|548966|548974|548975|548976|548977|548979|548985|569247|571259|571260|571626|574512|574513|574514|585149|587065|588618|608911|610086|646177|646178|646179|646180|646181|646182|646183|646184|652816|653480|681858|694115|694117|694118|695756|704210|740858|755933|776354|785638|788135|800046|802221|845601|845602|845603|845604|845605|845606|845607|845608|852760|852881|919740|928365|928366|928367|928368|938023|950026|958180|958181|958182|958183|958184|958185|958186|966167|966351", + "upstreamId": "24474|24475|24476|24477|24478|24479|45812|98212|135740|135741|168982|177027|177421|178065|186981|186982|194255|194256|194779|195192|195193|195194|213838|256270|265385|265523|265625|266096|266691|266748|267101|267355|267685|268237|268922|268945|269182|270055|270168|270250|270286|272832|273682|274010|274031|274128|274525|274759|274862|274955|329109|329113|358446|358447|358448|358449|358450|358451|358452|358453|358454|358455|358456|360257|378444|410065|410066|429989|445804|445806|466980|466985|467925|468175|468180|468374|468380|468383|468385|488497|488527|488615|488807|489091|489266|489699|491369|491436|491596|495843|531233|531400|531482|537290|548203|548208|548219|548227|548233|548240|548242|548244|548249|548534|548541|548542|548544|548545|548546|548552|548962|548966|548974|548975|548976|548977|548979|548985|569247|571259|571260|571626|574512|574513|574514|585149|587065|588618|608911|610086|646177|646178|646179|646180|646181|646182|646183|646184|652816|653480|681858|694115|694117|694118|695756|704210|740858|755933|776354|785638|788135|800046|802221|845601|845602|845603|845604|845605|845606|845607|845608|852760|852881|919740|928365|928366|928367|928368|938023|950026|958180|958181|958182|958183|958184|958185|958186|966167|966351", "text": "Autosomal recessive limb-girdle muscular dystrophy type 2D" }, { - "baseId": "24476|24478|98214|98559|98560|98561|98562|98564|135740|135741|135742|177027|177421|194779|195193|195194|254830|256270|266748|267685|268922|269182|269367|270070|270168|272508|272665|274010|274946|275451|319224|327710|327711|327722|327724|329101|329103|329104|329108|329109|329114|334008|334010|334017|334022|335624|335632|339230|345125|345126|345131|345132|346500|346505|346506|346510|504463|539048|652816|679459|693327|760608|870888|870889|870890|870891|870892|870893|870894|870895|870896|870897|870898|870899|870900|870901|870902|877911|877912|877913|877914|877915", + "upstreamId": "24476|24478|98214|98559|98560|98561|98562|98564|135740|135741|135742|177027|177421|194779|195193|195194|254830|256270|266748|267685|268922|269182|269367|270070|270168|272508|272665|274010|274946|275451|319224|327710|327711|327722|327724|329101|329103|329104|329108|329109|329114|334008|334010|334017|334022|335624|335632|339230|345125|345126|345131|345132|346500|346505|346506|346510|504463|539048|652816|679459|693327|760608|870888|870889|870890|870891|870892|870893|870894|870895|870896|870897|870898|870899|870900|870901|870902|877911|877912|877913|877914|877915", "text": "Sarcoglycanopathy" }, { - "baseId": "24478|71221|265264|858952", + "upstreamId": "24478|71221|265264|858952", "text": "Limb-girdle muscular dystrophy, autosomal recessive" }, { - "baseId": "24480|24481|135773|192372|244074|297370|297382|297394|297395|297405|297409|297413|297415|297421|299377|299379|299389|299398|299411|299419|299422|299423|299424|299428|299434|299438|299455|299471|299477|299478|299479|299484|303592|303602|303604|303606|303630|303631|303637|303641|303642|303910|303913|303915|303916|303922|303924|303929|303932|303936|303941|303942|415004|709902|749482|749485|793085|795697|795698|894180|894181|894182|894183|894184|894185|894186|894187|894188|894189|894190|894191|894192|894193|894194|894195|894196|894197|894198|894199|894200|896095|896096", + "upstreamId": "24480|24481|135773|192372|244074|297370|297382|297394|297395|297405|297409|297413|297415|297421|299377|299379|299389|299398|299411|299419|299422|299423|299424|299428|299434|299438|299455|299471|299477|299478|299479|299484|303592|303602|303604|303606|303630|303631|303637|303641|303642|303910|303913|303915|303916|303922|303924|303929|303932|303936|303941|303942|415004|709902|749482|749485|793085|795697|795698|894180|894181|894182|894183|894184|894185|894186|894187|894188|894189|894190|894191|894192|894193|894194|894195|894196|894197|894198|894199|894200|896095|896096", "text": "Episodic ataxia, type 6" }, { - "baseId": "24482|193507|312076|312081|312083|312085|312088|317728|317747|317748|317749|317755|323771|323789|323792|323793|323795|323796|323804|323809|323818|323831|323837|323843|324482|324490|324493|324496|324502|324525|324539|324545|324546|324547|551955|724175|866823|866824|866825|866826|866827|866828|866829|866830|866831|866832|866833|866834|866835|866836|868581|868582|964351", + "upstreamId": "24482|193507|312076|312081|312083|312085|312088|317728|317747|317748|317749|317755|323771|323789|323792|323793|323795|323796|323804|323809|323818|323831|323837|323843|324482|324490|324493|324496|324502|324525|324539|324545|324546|324547|551955|724175|866823|866824|866825|866826|866827|866828|866829|866830|866831|866832|866833|866834|866835|866836|868581|868582|964351", "text": "Spondyloepimetaphyseal dysplasia, Missouri type" }, { - "baseId": "24483|24484", + "upstreamId": "24483|24484", "text": "Metaphyseal anadysplasia 1, autosomal dominant" }, { - "baseId": "24485|181586|181587|324493|324539|539031|919313", + "upstreamId": "24485|181586|181587|324493|324539|539031|919313", "text": "Metaphyseal chondrodysplasia, Spahr type" }, { - "baseId": "24486|615263|615264", + "upstreamId": "24486|615263|615264", "text": "Noonan syndrome 12" }, { - "baseId": "24489|24490|24491|24492|24493|24494|24495|24496|34270|34271|34272|34273|48493|48494|85113|134936|134937|134938|134939|134940|134941|134942|134943|134944|134945|134946|134947|134948|134949|134950|134951|134952|134953|134954|134955|134956|134957|134958|134961|134962|134964|134965|134966|134967|134968|134969|134970|134971|134972|134973|134974|134975|134976|134977|134978|134979|134980|134981|134982|134985|134986|134987|134988|134989|134991|134992|206889|206890|206891|206892|206893|206894|206898|206899|206901|206902|206904|227222|227302|236930|250373|250374|250375|250379|250381|250383|274476|282637|282638|282639|282641|282642|282644|282648|282649|282655|282658|282660|282662|282666|282669|282670|282672|282673|282674|282678|282681|282686|282687|282689|282702|282704|282709|282714|282715|282716|282717|282721|282723|282725|282726|282735|282736|282738|282743|282744|282751|282753|282758|282759|282763|283409|283412|283413|283414|283416|283419|283431|283433|283450|283453|283455|283458|283460|283461|283462|283464|283471|283473|283475|283476|283477|283478|283484|283485|283488|283489|283498|283501|283503|283506|283507|283508|283510|283513|283514|283519|283521|283528|283533|283538|283563|283569|283575|283577|283578|283580|283582|283583|283591|284920|284939|284940|284941|284942|284946|284949|284951|284965|284966|284967|284970|284971|284981|284983|284984|284985|284987|284990|284997|284999|285007|285009|285017|285045|285049|285056|285059|285068|285078|285081|285082|285083|285093|285096|285101|285104|285105|285106|285108|285109|285114|285445|285446|285447|285448|285450|285454|285455|285456|285459|285467|285489|285490|285505|285510|285511|285514|285515|285517|285518|285519|285537|285542|285545|285547|285548|285551|285562|285566|285571|285573|285599|285601|285605|285609|285615|285616|285618|363856|366196|499026|508774|536617|550350|552056|614161|614162|622317|672033|672034|672035|697149|697150|707841|719389|719390|719393|719394|719395|719396|719398|719399|719402|719404|732911|732917|732920|732921|732923|732926|732927|732932|743847|746917|746930|746932|746936|746937|746938|762404|762413|780950|800666|881431|881432|881433|881434|881435|881436|881437|881438|881439|881440|881441|881442|881443|881444|881445|881446|881447|881448|881449|881450|881451|881452|881453|881454|881455|881456|881457|881458|881459|881460|881461|881462|881463|881464|881465|881466|881467|881468|881469|881470|881471|881472|881473|881474|881475|881476|881477|881478|881479|881480|881481|881482|881483|881484|881485|881486|881487|881488|881489|881490|881491|881492|881493|881494|881495|881496|881497|881498|881499|881500|881501|881502|881503|881504|881505|881506|881507|881508|881509|881510|881511|881512|881513|881514|881515|881516|881517|881518|881519|881520|881521|881522|881523|881524|881525|881526|881527|881528|881529|882831|882832|882833|882834|882835|882836|882837|882838|882839|882840|882841|882842|975855|983790", + "upstreamId": "24489|24490|24491|24492|24493|24494|24495|24496|34270|34271|34272|34273|48493|48494|85113|134936|134937|134938|134939|134940|134941|134942|134943|134944|134945|134946|134947|134948|134949|134950|134951|134952|134953|134954|134955|134956|134957|134958|134961|134962|134964|134965|134966|134967|134968|134969|134970|134971|134972|134973|134974|134975|134976|134977|134978|134979|134980|134981|134982|134985|134986|134987|134988|134989|134991|134992|206889|206890|206891|206892|206893|206894|206898|206899|206901|206902|206904|227222|227302|236930|250373|250374|250375|250379|250381|250383|274476|282637|282638|282639|282641|282642|282644|282648|282649|282655|282658|282660|282662|282666|282669|282670|282672|282673|282674|282678|282681|282686|282687|282689|282702|282704|282709|282714|282715|282716|282717|282721|282723|282725|282726|282735|282736|282738|282743|282744|282751|282753|282758|282759|282763|283409|283412|283413|283414|283416|283419|283431|283433|283450|283453|283455|283458|283460|283461|283462|283464|283471|283473|283475|283476|283477|283478|283484|283485|283488|283489|283498|283501|283503|283506|283507|283508|283510|283513|283514|283519|283521|283528|283533|283538|283563|283569|283575|283577|283578|283580|283582|283583|283591|284920|284939|284940|284941|284942|284946|284949|284951|284965|284966|284967|284970|284971|284981|284983|284984|284985|284987|284990|284997|284999|285007|285009|285017|285045|285049|285056|285059|285068|285078|285081|285082|285083|285093|285096|285101|285104|285105|285106|285108|285109|285114|285445|285446|285447|285448|285450|285454|285455|285456|285459|285467|285489|285490|285505|285510|285511|285514|285515|285517|285518|285519|285537|285542|285545|285547|285548|285551|285562|285566|285571|285573|285599|285601|285605|285609|285615|285616|285618|363856|366196|499026|508774|536617|550350|552056|614161|614162|622317|672033|672034|672035|697149|697150|707841|719389|719390|719393|719394|719395|719396|719398|719399|719402|719404|732911|732917|732920|732921|732923|732926|732927|732932|743847|746917|746930|746932|746936|746937|746938|762404|762413|780950|800666|881431|881432|881433|881434|881435|881436|881437|881438|881439|881440|881441|881442|881443|881444|881445|881446|881447|881448|881449|881450|881451|881452|881453|881454|881455|881456|881457|881458|881459|881460|881461|881462|881463|881464|881465|881466|881467|881468|881469|881470|881471|881472|881473|881474|881475|881476|881477|881478|881479|881480|881481|881482|881483|881484|881485|881486|881487|881488|881489|881490|881491|881492|881493|881494|881495|881496|881497|881498|881499|881500|881501|881502|881503|881504|881505|881506|881507|881508|881509|881510|881511|881512|881513|881514|881515|881516|881517|881518|881519|881520|881521|881522|881523|881524|881525|881526|881527|881528|881529|882831|882832|882833|882834|882835|882836|882837|882838|882839|882840|882841|882842|975855|983790", "text": "Donnai-Barrow syndrome" }, { - "baseId": "24497|24498|24499|24500|24501|24502|24503|24504|24505|24506|24508|24509|24510|24511|106628|336911|350787|350794", + "upstreamId": "24497|24498|24499|24500|24501|24502|24503|24504|24505|24506|24508|24509|24510|24511|106628|336911|350787|350794", "text": "Leukocyte adhesion deficiency" }, { - "baseId": "24497|24502|24508|24510|79106|79107|106609|106610|106611|106612|106613|106614|106615|106616|106617|106618|106619|106620|106621|106622|106623|106624|106625|106626|106627|106628|106629|106630|336913|336915|336919|336922|336925|336929|336932|336941|336943|346618|346621|346623|346628|346637|346638|346639|346640|346645|346646|346647|346650|346651|346657|346661|346662|346667|346668|346678|350790|350791|350795|350798|350799|350802|350803|350806|350807|350810|350811|350814|350815|350818|350820|350821|351833|351836|351837|351839|351841|351842|351845|351848|351850|351852|351854|351856|351858|351859|351861|351863|351865|379792|438819|469701|470747|470762|470763|471244|471712|471713|533940|533946|533955|533958|533960|533965|533968|533970|533995|533996|533998|534008|534009|534018|534479|534481|534484|534490|534505|571609|571611|573166|573167|573851|575184|575185|575186|575187|612110|614151|614483|620673|624694|649045|649046|649047|649048|649049|649050|649051|649052|649053|649054|649055|649056|649057|649058|649059|649060|649061|649062|649063|649064|649065|649066|649067|649068|653672|705738|705739|717255|717256|717257|717258|728959|728963|731384|742692|742693|742695|742696|742697|742698|742699|745350|757875|757876|757878|757880|757881|757882|760970|773388|773391|773392|773393|773396|776756|780013|786528|786529|786530|786531|792011|848882|848883|848884|848885|848886|848887|848888|848889|848890|848891|848892|848893|848894|848895|848896|848897|848898|848899|848900|848901|848902|848903|848904|848905|848906|848907|848908|848909|848910|886897|886898|886899|886900|886901|886902|886903|886904|886905|886906|886907|886908|886909|886910|886911|886912|886913|886914|886915|886916|886917|886918|886919|886920|886921|886922|886923|886924|887517|887518|887519|887520|887521|919938|929351|929352|929353|929354|929355|929356|929357|929358|929359|939142|939143|939144|939145|939146|939147|939148|939149|939150|939151|939152|940519|951271|951272|951273|951274|951275|951276|951277|951278|951279|951280|951281|958993|958994|958995|958996|958997|958998|960328", + "upstreamId": "24497|24502|24508|24510|79106|79107|106609|106610|106611|106612|106613|106614|106615|106616|106617|106618|106619|106620|106621|106622|106623|106624|106625|106626|106627|106628|106629|106630|336913|336915|336919|336922|336925|336929|336932|336941|336943|346618|346621|346623|346628|346637|346638|346639|346640|346645|346646|346647|346650|346651|346657|346661|346662|346667|346668|346678|350790|350791|350795|350798|350799|350802|350803|350806|350807|350810|350811|350814|350815|350818|350820|350821|351833|351836|351837|351839|351841|351842|351845|351848|351850|351852|351854|351856|351858|351859|351861|351863|351865|379792|438819|469701|470747|470762|470763|471244|471712|471713|533940|533946|533955|533958|533960|533965|533968|533970|533995|533996|533998|534008|534009|534018|534479|534481|534484|534490|534505|571609|571611|573166|573167|573851|575184|575185|575186|575187|612110|614151|614483|620673|624694|649045|649046|649047|649048|649049|649050|649051|649052|649053|649054|649055|649056|649057|649058|649059|649060|649061|649062|649063|649064|649065|649066|649067|649068|653672|705738|705739|717255|717256|717257|717258|728959|728963|731384|742692|742693|742695|742696|742697|742698|742699|745350|757875|757876|757878|757880|757881|757882|760970|773388|773391|773392|773393|773396|776756|780013|786528|786529|786530|786531|792011|848882|848883|848884|848885|848886|848887|848888|848889|848890|848891|848892|848893|848894|848895|848896|848897|848898|848899|848900|848901|848902|848903|848904|848905|848906|848907|848908|848909|848910|886897|886898|886899|886900|886901|886902|886903|886904|886905|886906|886907|886908|886909|886910|886911|886912|886913|886914|886915|886916|886917|886918|886919|886920|886921|886922|886923|886924|887517|887518|887519|887520|887521|919938|929351|929352|929353|929354|929355|929356|929357|929358|929359|939142|939143|939144|939145|939146|939147|939148|939149|939150|939151|939152|940519|951271|951272|951273|951274|951275|951276|951277|951278|951279|951280|951281|958993|958994|958995|958996|958997|958998|960328", "text": "Leukocyte adhesion deficiency 1" }, { - "baseId": "24512|24513|24514|24515|24516|24517|24518|24519|24520|24521|85648|166115|195931|205138|238008|250820|250822|268269|268388|269508|272579|273132|275245|287781|287782|287783|287785|287787|287792|287794|287797|288447|288449|288463|288467|288469|288471|288481|288483|291338|291346|291347|291355|291360|291361|291364|291365|291376|291392|291402|291414|291490|291504|291511|291512|291513|291514|291515|291522|291524|361607|363947|413546|488680|490192|551526|589204|590440|677413|720023|733648|747843|788757|788758|788759|800351|800482|818219|818220|827188|827202|856226|885756|885757|885758|885759|885760|885761|885762|885763|885764|885765|885766|885767|885768|885769|885770|885771|885772|885773|885774|885775|885776|885777|885778|885779|885780|885781|885782|887421|887422|887423|976714|976715|976716|976717|977194", + "upstreamId": "24512|24513|24514|24515|24516|24517|24518|24519|24520|24521|85648|166115|195931|205138|238008|250820|250822|268269|268388|269508|272579|273132|275245|287781|287782|287783|287785|287787|287792|287794|287797|288447|288449|288463|288467|288469|288471|288481|288483|291338|291346|291347|291355|291360|291361|291364|291365|291376|291392|291402|291414|291490|291504|291511|291512|291513|291514|291515|291522|291524|361607|363947|413546|488680|490192|551526|589204|590440|677413|720023|733648|747843|788757|788758|788759|800351|800482|818219|818220|827188|827202|856226|885756|885757|885758|885759|885760|885761|885762|885763|885764|885765|885766|885767|885768|885769|885770|885771|885772|885773|885774|885775|885776|885777|885778|885779|885780|885781|885782|887421|887422|887423|976714|976715|976716|976717|977194", "text": "Achromatopsia 2" }, { - "baseId": "24513|24517", + "upstreamId": "24513|24517", "text": "Monochromacy" }, { - "baseId": "24520", + "upstreamId": "24520", "text": "Photophobia" }, { - "baseId": "24520|188865|513965|514039", + "upstreamId": "24520|188865|513965|514039", "text": "Abnormality of color vision" }, { - "baseId": "24522|24523|24524|24526|24527|24528|24529|24531|24532|24533|24534|24535|24537|24538|24542|24544|24545|32963|227328|306295|306296|306303|306308|306310|306318|306320|306321|306326|306329|306343|306344|306353|306354|306357|306358|306363|306364|306367|306368|306369|306373|306375|306376|306383|306386|306387|306388|306398|306400|306401|306402|310412|310418|310419|310421|310423|310425|310427|310430|310433|310442|310443|310444|310448|310453|310454|310462|310465|310471|310472|310475|310477|310490|310491|310492|310493|310494|310510|310512|310525|310526|310527|310528|310532|310533|310534|310537|310542|310543|310546|310555|315754|315756|315758|315759|315760|315767|315768|315769|315770|315772|315773|315787|315802|315803|315810|315817|315818|315819|315830|315832|315834|315839|315840|315846|315847|315848|315849|315864|315865|315868|315869|315870|315871|315879|315880|315883|315884|315885|315886|315889|315897|315910|315911|315912|315914|315918|315919|315922|315933|315940|315945|315952|315958|315959|315961|315962|315964|315965|315966|315970|315973|315974|315985|315994|315996|315997|315998|316002|316005|316008|316013|316020|316024|316037|316038|316083|316087|316091|316093|316106|316109|316110|316122|316130|316131|316134|316137|316138|316139|316140|316141|316143|353848|361192|487348|487351|487359|539017|620314|900690|900691|900692|900693|900694|900695|900696|900697|900698|900699|900700|900701|900702|900703|900704|900705|900706|900707|900708|900709|900710|900711|900712|900713|900714|900715|900716|900717|900718|900719|900720|900721|900722|900723|900724|900725|900726|900727|900728|900729|900730|900731|900732|900733|900734|900735|900736|900737|900738|900739|900740|900741|900742|900743|900744|900745|900746|900747|900748|900749|900750|900751|900752|900753|900754|900755|900756|900757|900758|900759|900760|900761|900762|903280|903281|903282|903283|903284|903285|903286|903287", + "upstreamId": "24522|24523|24524|24526|24527|24528|24529|24531|24532|24533|24534|24535|24537|24538|24542|24544|24545|32963|227328|306295|306296|306303|306308|306310|306318|306320|306321|306326|306329|306343|306344|306353|306354|306357|306358|306363|306364|306367|306368|306369|306373|306375|306376|306383|306386|306387|306388|306398|306400|306401|306402|310412|310418|310419|310421|310423|310425|310427|310430|310433|310442|310443|310444|310448|310453|310454|310462|310465|310471|310472|310475|310477|310490|310491|310492|310493|310494|310510|310512|310525|310526|310527|310528|310532|310533|310534|310537|310542|310543|310546|310555|315754|315756|315758|315759|315760|315767|315768|315769|315770|315772|315773|315787|315802|315803|315810|315817|315818|315819|315830|315832|315834|315839|315840|315846|315847|315848|315849|315864|315865|315868|315869|315870|315871|315879|315880|315883|315884|315885|315886|315889|315897|315910|315911|315912|315914|315918|315919|315922|315933|315940|315945|315952|315958|315959|315961|315962|315964|315965|315966|315970|315973|315974|315985|315994|315996|315997|315998|316002|316005|316008|316013|316020|316024|316037|316038|316083|316087|316091|316093|316106|316109|316110|316122|316130|316131|316134|316137|316138|316139|316140|316141|316143|353848|361192|487348|487351|487359|539017|620314|900690|900691|900692|900693|900694|900695|900696|900697|900698|900699|900700|900701|900702|900703|900704|900705|900706|900707|900708|900709|900710|900711|900712|900713|900714|900715|900716|900717|900718|900719|900720|900721|900722|900723|900724|900725|900726|900727|900728|900729|900730|900731|900732|900733|900734|900735|900736|900737|900738|900739|900740|900741|900742|900743|900744|900745|900746|900747|900748|900749|900750|900751|900752|900753|900754|900755|900756|900757|900758|900759|900760|900761|900762|903280|903281|903282|903283|903284|903285|903286|903287", "text": "Tangier disease" }, { - "baseId": "24525|24540|24541|24542|24543|24545|227328|306296|306303|306308|306310|306318|306320|306321|306329|306343|306344|306353|306357|306358|306363|306367|306368|306373|306375|306376|306383|306386|306387|306388|306398|306400|306401|306402|310412|310419|310421|310423|310425|310427|310430|310433|310443|310444|310453|310454|310462|310471|310472|310475|310477|310490|310491|310492|310493|310494|310510|310512|310525|310526|310527|310528|310532|310533|310534|310537|310542|310543|310546|312407|312417|312421|312422|312424|315754|315756|315758|315759|315760|315767|315769|315770|315772|315773|315787|315802|315810|315817|315818|315819|315830|315832|315834|315839|315840|315846|315847|315848|315849|315864|315865|315868|315869|315870|315871|315879|315880|315883|315884|315885|315886|315889|315897|315910|315911|315912|315914|315918|315919|315933|315940|315945|315952|315958|315959|315961|315962|315964|315966|315970|315973|315974|315985|315994|315996|315997|315998|316002|316005|316008|316013|316020|316024|316037|316038|316083|316087|316091|316093|316106|316110|316122|316130|316131|316134|316137|316139|316140|316141|318297|318298|324450|325163|325164|325168|325178|487348|487351|487359|495696|620314|621343|867058|867059|867060|867061|867062|867063|867064|900690|900691|900692|900693|900694|900695|900696|900697|900698|900699|900700|900701|900702|900703|900704|900705|900706|900707|900708|900709|900710|900711|900712|900713|900714|900715|900716|900717|900718|900719|900720|900721|900722|900723|900724|900725|900726|900727|900728|900729|900730|900731|900732|900733|900734|900735|900736|900737|900738|900739|900740|900741|900742|900743|900744|900745|900746|900747|900748|900749|900750|900751|900752|900753|900754|900755|900756|900757|900758|900759|900760|900761|900762|903280|903281|903282|903283|903284|903285|903286|903287", + "upstreamId": "24525|24540|24541|24542|24543|24545|227328|306296|306303|306308|306310|306318|306320|306321|306329|306343|306344|306353|306357|306358|306363|306367|306368|306373|306375|306376|306383|306386|306387|306388|306398|306400|306401|306402|310412|310419|310421|310423|310425|310427|310430|310433|310443|310444|310453|310454|310462|310471|310472|310475|310477|310490|310491|310492|310493|310494|310510|310512|310525|310526|310527|310528|310532|310533|310534|310537|310542|310543|310546|312407|312417|312421|312422|312424|315754|315756|315758|315759|315760|315767|315769|315770|315772|315773|315787|315802|315810|315817|315818|315819|315830|315832|315834|315839|315840|315846|315847|315848|315849|315864|315865|315868|315869|315870|315871|315879|315880|315883|315884|315885|315886|315889|315897|315910|315911|315912|315914|315918|315919|315933|315940|315945|315952|315958|315959|315961|315962|315964|315966|315970|315973|315974|315985|315994|315996|315997|315998|316002|316005|316008|316013|316020|316024|316037|316038|316083|316087|316091|316093|316106|316110|316122|316130|316131|316134|316137|316139|316140|316141|318297|318298|324450|325163|325164|325168|325178|487348|487351|487359|495696|620314|621343|867058|867059|867060|867061|867062|867063|867064|900690|900691|900692|900693|900694|900695|900696|900697|900698|900699|900700|900701|900702|900703|900704|900705|900706|900707|900708|900709|900710|900711|900712|900713|900714|900715|900716|900717|900718|900719|900720|900721|900722|900723|900724|900725|900726|900727|900728|900729|900730|900731|900732|900733|900734|900735|900736|900737|900738|900739|900740|900741|900742|900743|900744|900745|900746|900747|900748|900749|900750|900751|900752|900753|900754|900755|900756|900757|900758|900759|900760|900761|900762|903280|903281|903282|903283|903284|903285|903286|903287", "text": "Familial hypoalphalipoproteinemia" }, { - "baseId": "24529|310464|620315", + "upstreamId": "24529|310464|620315", "text": "ABCA1-Related Disorders" }, { - "baseId": "24539", + "upstreamId": "24539", "text": "Tangier disease, variant" }, { - "baseId": "24545", + "upstreamId": "24545", "text": "Coronary heart disease in familial hypercholesterolemia, protection against" }, { - "baseId": "24546", + "upstreamId": "24546", "text": "ABCA1 polymorphism" }, { - "baseId": "24547|24548|24549|29201|29202|39402|102915|138566|138574|138577|138578|139303|194832|204470|204470|206802|238283|238284|249937|249938|251049|251050|271109|280611|280612|280613|280618|280620|280621|280626|280633|281072|281085|281098|281111|281129|281130|281131|281132|281134|281135|281136|281137|281138|282362|282363|282382|282383|282387|282391|282396|282399|282408|282416|282417|282418|282610|282612|282613|282614|282636|282657|282661|282675|282676|289675|290421|290423|290426|290431|290438|290439|293516|293520|293523|294064|294090|294091|391248|448099|448140|448238|489136|493110|515914|516009|557065|557282|558519|611368|620123|733942|763773|788762|861070|888486|888487|888488|888489|888490|888491|888492|888493|888494|888495|888496|891629|918818|964106", + "upstreamId": "24547|24548|24549|29201|29202|39402|102915|138566|138574|138577|138578|139303|194832|204470|204470|206802|238283|238284|249937|249938|251049|251050|271109|280611|280612|280613|280618|280620|280621|280626|280633|281072|281085|281098|281111|281129|281130|281131|281132|281134|281135|281136|281137|281138|282362|282363|282382|282383|282387|282391|282396|282399|282408|282416|282417|282418|282610|282612|282613|282614|282636|282657|282661|282675|282676|289675|290421|290423|290426|290431|290438|290439|293516|293520|293523|294064|294090|294091|391248|448099|448140|448238|489136|493110|515914|516009|557065|557282|558519|611368|620123|733942|763773|788762|861070|888486|888487|888488|888489|888490|888491|888492|888493|888494|888495|888496|891629|918818|964106", "text": "Thrombocythemia 1" }, { - "baseId": "24554|24555|24556|24557|38979|38980|38981|38982|38983|188073|188074|188075|273103|273131|329582|329583|329584|329585|329586|336193|336206|336207|338097|338104|338106|491931|535705|552178|654138|791415|800363|871960|871961|871962|871963|871964|871965|871966|871970", + "upstreamId": "24554|24555|24556|24557|38979|38980|38981|38982|38983|188073|188074|188075|273103|273131|329582|329583|329584|329585|329586|336193|336206|336207|338097|338104|338106|491931|535705|552178|654138|791415|800363|871960|871961|871962|871963|871964|871965|871966|871970", "text": "Syndromic microphthalmia type 5" }, { - "baseId": "24562|24563|24564|24565|84382|278463|278465|278473|278474|278476|278482|278488|278490|278491|278494|278498|278499|278504|278511|278571|278573|278581|278582|278583|278596|278597|278599|278602|278603|278604|278606|278608|278628|278637|279755|279756|279757|279766|279768|279776|279777|279843|279861|279870|279895|279904|279905|279919|279923|279924|279927|279932|279933|279934|279940|279941|447437|447562|549510|549513|549514|549515|549517|619984|620712|620713|696400|707004|707005|718544|718546|718547|863312|863313|863314|863315|863316|863317|863318|863319|863320|863321|863322|863323|863324|863325|863326|863327|863328|863329|863330|865095|865096|952217", + "upstreamId": "24562|24563|24564|24565|84382|278463|278465|278473|278474|278476|278482|278488|278490|278491|278494|278498|278499|278504|278511|278571|278573|278581|278582|278583|278596|278597|278599|278602|278603|278604|278606|278608|278628|278637|279755|279756|279757|279766|279768|279776|279777|279843|279861|279870|279895|279904|279905|279919|279923|279924|279927|279932|279933|279934|279940|279941|447437|447562|549510|549513|549514|549515|549517|619984|620712|620713|696400|707004|707005|718544|718546|718547|863312|863313|863314|863315|863316|863317|863318|863319|863320|863321|863322|863323|863324|863325|863326|863327|863328|863329|863330|865095|865096|952217", "text": "Chitotriosidase deficiency" }, { - "baseId": "24566|24567|24568|24569|24570|24571|106762|106764|353887|414768|920138", + "upstreamId": "24566|24567|24568|24569|24570|24571|106762|106764|353887|414768|920138", "text": "Pelger-Hu\u00ebt anomaly" }, { - "baseId": "24566|414768|536125|536126|536127|536128", + "upstreamId": "24566|414768|536125|536126|536127|536128", "text": "Regressive spondylometaphyseal dysplasia" }, { - "baseId": "24568|24572|106762|106763|106764|106765|215191|226718|226719|237384|249738|249740|249741|279344|279348|279353|279356|279357|279363|279368|279371|279372|279375|279551|279553|279559|279560|279561|279576|279578|279583|279584|279585|279587|279588|279589|279591|279594|279595|279596|280852|280853|280856|280859|280861|280862|280864|280865|280867|280959|280960|280994|280995|280996|281003|281007|414768|576522|718690|718691|732185|732188|743720|746178|758868|758871|758875|863760|863761|863762|863763|863764|863765|863766|863767|863768|863769|863770|863771|863772|863773|863774|863775|863776|863777|863778|863779|863780|863781|863782|863783|863784|863785|863786|863787|865131|865132", + "upstreamId": "24568|24572|106762|106763|106764|106765|215191|226718|226719|237384|249738|249740|249741|279344|279348|279353|279356|279357|279363|279368|279371|279372|279375|279551|279553|279559|279560|279561|279576|279578|279583|279584|279585|279587|279588|279589|279591|279594|279595|279596|280852|280853|280856|280859|280861|280862|280864|280865|280867|280959|280960|280994|280995|280996|281003|281007|414768|576522|718690|718691|732185|732188|743720|746178|758868|758871|758875|863760|863761|863762|863763|863764|863765|863766|863767|863768|863769|863770|863771|863772|863773|863774|863775|863776|863777|863778|863779|863780|863781|863782|863783|863784|863785|863786|863787|865131|865132", "text": "Greenberg dysplasia" }, { - "baseId": "24572|414768", + "upstreamId": "24572|414768", "text": "Reynolds syndrome" }, { - "baseId": "24576", + "upstreamId": "24576", "text": "Neurofibrosarcoma" }, { - "baseId": "24577", + "upstreamId": "24577", "text": "Opioid dependence 1" }, { - "baseId": "24577", + "upstreamId": "24577", "text": "naloxone response - Efficacy" }, { - "baseId": "24577", + "upstreamId": "24577", "text": "alfentanil response - Dosage, Efficacy, Metabolism/PK" }, { - "baseId": "24577", + "upstreamId": "24577", "text": "buprenorphine response - Dosage, Efficacy, Metabolism/PK" }, { - "baseId": "24577", + "upstreamId": "24577", "text": "Drugs used in opioid dependence response - Dosage, Efficacy, Metabolism/PK" }, { - "baseId": "24577", + "upstreamId": "24577", "text": "fentanyl response - Dosage, Efficacy, Metabolism/PK" }, { - "baseId": "24577", + "upstreamId": "24577", "text": "heroin response - Dosage, Efficacy, Metabolism/PK" }, { - "baseId": "24577", + "upstreamId": "24577", "text": "morphine response - Dosage, Efficacy, Metabolism/PK" }, { - "baseId": "24577", + "upstreamId": "24577", "text": "opioids response - Dosage, Efficacy, Metabolism/PK" }, { - "baseId": "24577", + "upstreamId": "24577", "text": "tramadol response - Dosage, Efficacy, Metabolism/PK" }, { - "baseId": "24577|31928|31932|32630|32631|47984|47996|176988|191350|227763|246999|257574|257575|389705|507605|508193|508196|656702|663108|698605|721047|736310|816535|816536|816537|816538|816539|816540|816541|816542|816543|816544|816545|816546|816547|816548|816549|816550|816551|816552|816553|816554|816555|816556|816557|816558|816559|816560|816561|816562|816563|816564|816565|816566|816567|816568|816569|816570|816571|816572|816573|816574|816575|816576|816577|816578|816579|816580|816581|816582|816583|816584|816585|816586|816587|816588|816589|816590|816591|816592|816593|816594|816595|816596|816597|816598|816599|816600|816601|816602|816603|816604|816605|816606|816607|816608|816609|816610|816611|816612|816613|816614|816615|816616|816617|816618|816619|816620|816621|816622|816623|816624|816625|816626|816627|816628|816629|816630|816631|816632|816633|816634|816635|816636|816637|816638|816639|816640|816641|816642|816643|816644|816645|816646|816647|816648|816649|816650|816651|816652|816653|816654|816655|816656|816657|816658|816659|816660|816661|816662|816663|816664|816665|816666|816667|816668|816669|816670|816671|816672|816673|816674|816675|816676|816677|816678|816679|816680|816681|816682|816683|816684|816685|816686|816687|816688|816689|816690|816691|816692|816693|816694|816695|816696|816697|816698|816699|816700|816701|816702|816703|816704|816705|816706|816707|816708|816709|816710|816711|816712|816713|816714|816715|816716|816717|816718|816719|816720|816721|816722|816723|816724|816725|816726|816727|816728|816729|816730|816731|816732|816733|816734|816735|816736|816737|816738|816739|816740|816741|816742|816743|816744|816745|816746|816747|816748|816749|816750|816751|816752|816753|816754|816755|816756|816757|816758|816759|816760|816761|816762|816763|816764|816765|816766|816767|816768|816769|816770|816771|816772|816773|816774|816775|816776|816777|816778|816779|816780|816781|816782|816783|816784|816785|816786|816787|816788|816789|816790|816791|816792|816793|816794|816795|816796|816797|816798|816799|816800|816801|816802|816803|816804|816805|816806|816807|816808|816809|816810|816811|816812|816813|816814|816815|816816|816817|816818|816819|816820|816821|816822|816823|816824|816825|816826|816827|816828|816829|816830|816831|816832|816833|816834|816835|816836|816837|816838|816839|816840|816841|816842|816843|816844|816845|816846|816847|816848|816849|816850|816851|816852|816853|816854|816855|816856|816857|816858|816859|816860|816861|816862|816863|816864|816865|816866|816867|816868|816869|816870|816871|816872|816873|816874|816875|816876|816877|816878|816879|816880|816881|816882|816883|816884|816885|816886|816887|816888|816889|816890|816891|816892|816893|816894|816895|816896|816897|816898|816899|816900|816901|816902|816903|816904|816905|816906|816907|816908|816909|816910|816911|816912|816913|816914|816915|816916|816917|816918|816919|816920|816921|816922|816923|816924|816925|816926|816927|816928|816929|816930|816931|816932|816933|816934|816935|816936|816937|816938|816939|816940|816941|816942|816943|816944|816945|816946|816947|816948|816949|816950|816951|816952|816953|816954|816955|816956|816957|816958|816959|816960|816961|816962|816963|816964|816965|816966|816967|816968|816969|816970|816971|816972|816973|816974|816975|816976|816977|816978|816979|816980|816981|816982|816983|816984|816985|816986|816987|816988|816989|816990|816991|816992|816993|816994|816995|816996|816997|816998|816999|817000|817001|817002|817003|817004|817005|817006|817007|817008|817009|817010|817011|817012|817013|817014|817015|817016|817017|817018|817019|817020|817021|817022|817023|817024|817025|817026|817027|817028|817029|817030|817031|817032|817033|817034|817035|817036|817037|817038|817039|817040|817041|817042|817043|817044|817045|817046|817047|817048|817049|817050|817051|817052|817053|817054|817055|817056|817057|817058|817059|817060|817061|817062|817063|817064|817065|817066|817067|817068|817069|817070|817071|817072|817073|817074|817075|817076|817077|817078|817079|817080|817081|817082|817083|817084|817085|817086|817087|817088|817089|817090|817091|817092|817093|817094|817095|817096|817097|817098|817099|817100|817101|817102|817103|817104|817105|817106|817107|817108|817109|817110|817111|817112|817113|817114|817115|817116|817117|817118|817119|817120|817121|817122|817123|817124|817125|817126|817127|817128|817129|817130|817131|817132|817133|817134|817135|817136|817137|817138|817139|817140|817141|817142|817143|817144|817145|817146|817147|817148|817149|817150|817151|817152|817153|817154|817155|817156|817157|817158|817159|817160|817161|817162|817163|817164|817165|817166|817167|817168|817169|817170|817171|817172|817173|817174|817175|817176|817177|817178|817179|817180|817181|817182|817183|817184|817185|817186|817187|817188|817189|817190|817191|817192|817193|817194|817195|817196|817197|817198|817199|817200|817201|817202|817203|817204|817205|817206|817207|817208|817209|817210|817211|817212|817213|817214|817215|817216|817217|817218|817219|817220|817221|817222|817223|817224|817225|817226|817227|817228|817229|817230|817231|817232|817233|817234|817235|817236|817237|817238|817239|817240|817241|817242|817243|817244|817245|817246|817247|817248|817249|817250|817251|817252|817253|817254|817255|817256|817257|817258|817259|817260|817261|817262|817263|817264|817265|817266|817267|817268|817269|817270|817271|817272|817273|817274|817275|817276|817277|817278|817279|817280|817281|817282|817283|817284|817285|817286|817287|817288|817289|817290|817291|817292|817293|817294|817295|817296|817297|817298|817299|817300|817301|817302|817303|817304|817305|817306|817307|817308|817309|817310|817311|817312|817313|817314|817315|817316|817317|817318|817319|817320|817321|817322|817323|817324|817325|817326|817327|817328|817329|817330|817331|817332|817333|817334|817335|817336|817337|817338|817339|817340|817341|817342|817343|817344|817345|817346|817347|817348|817349|817350|817351|817352|817353|817354|817355|817356|817357|817358|817359|817360|817361|817362|817363|817364|817365|817366|817367|817368|817369|817370|817371|817372|817373|817374|817375|817376|817377|817378|817379|817380|817381|817382|817383|817384|817385|817386|817387|817388|817389|817390|817391|817392|817393|817394|817395|817396|817397|817398|817399|817400|817401|817402|817403|817404|817405|817406|817407|817408|817409|817410|817411|817412|817413|817414|817415|817416|817417|817418|817419|817420|817421|817422|817423|817424|817425|817426|817427|817428|817429|817430|817431|817432|817433|817434|817435|817436|817437|817438|817439|817440|817441|817442|817443|817444|817445|817446|817447|817448|817449|817450|817451|817452|817453|817454|817455|817456|817457|817458|817459|817460|817461|817462|817463|817464|817465|817466|817467|817468|817469|817470|817471|817472|817473|817474|817475|817476|817477|817478|817479|817480|817481|817482|817483|817484|817485|817486|817487|817488|817489|817490|817491|817492|817493|817494|817495|817496|817497|817498|817499|817500|817501|817502|817503|817504|817505|817506|817507|817508|817509|817510|817511|817512|817513|817514|817515|817516|817517|817518|817519|817520|817521|817522|817523|817524|817525|817526|817527|817528|817529|817530|817531|817532|817533|817534|817535|817536|817537|817538|817539|817540|817541|817542|817543|817544|817545|817546|817547|817548|817549|817550|817551|817552|817553|817554|817555|817556|817557|817558|817559|817560|817561|817562|817563|817564|817565|817566|817567|817568|817569|817570|817571|817572|817573|817574|817575|817576|817577|817578|817579|817580|817581|817582|817583|817584|817585|817586|817587|817588|817589|817590|817591|817592|817593|817594|817595|817596|817597|817598|817599|817600|817601|817602|817603|817604|817605|817606|817607|817608|817609|817610|817611|817612|817613|817614|817615|817616|817617|817618|817619|817620|817621|817622|817623|817624|817625|817626|817627|817628|817629|817630|817631|817632|817633|817634|817635|817636|817637|817638|817639|817640|817641|817642|817643|817644|817645|817646|817647|817648|817649|817650|817651|817652|817653|817654|817655|817656|817657|817658|817659|817660|817661|817662|817663|817664|817665|817666|817667|817668|817669|817670|817671|817672|817673|817674|817675|817676|817677|817678|817679|817680|817681|817682|817683|817684|817685|817686|817687|817688|817689|817690|817691|817692|817693|817694|817695|817696|817697|817698|817699|817700|817701|817702|817703|817704|817705|817706|817707|817708|817709|817710|817711|817712|817713|817714|817715|817716|817717|817718|817719|817720|817721|817722|817723|817724|817725|817726|817727|817728|817729|817730|817731|817732|817733|817734|817735|817736|817737|817738|817739|817740|817741|817742|817743|817744|817745|817746|817747|817748|817749|817750|817751|817752|817753|817754|817755|817756|817757|817758|817759|817760|817761|817762|817763|817764|817765|817766|817767|817768|817769|817770|817771|817772|817773|817774|817775|817776|817777|817778|817779|817780|817781|817782|817783|817784|817785|817786|817787|817788|817789|817790|817791|817792|817793|817794|817795|817796|817797|817798|817799|817800|817801|817802|817803|817804|817805|817806|817807|817808|817809|817810|817811|817812|817813|817814|817815|817816|817817|817818|817819|817820|817821|817822|817823|817824|817825|817826|817827|817828|817829|817830|817831|817832|817833|817834|817835|817836|817837|817838|817839|817840|817841|817842|817843|817844|817845|817846|817847|817848|817849|817850|817851|817852|817853|817854|817855|817856|817857|817858|817859|817860|817861|817862|817863|817864|817865|817866|817867|817868|817869|817870|817871|817872|817873|817874|817875|817876|817877|817878|817879|817880|817881|817882|817883|817884|817885|817886|817887|817888|817889|817890|817891|817892|817893|817894|817895|817896|817897|817898|817899|817900|817901|817902|817903|817904|817905|817906|817907|817908|817909|817910|817911|817912|817913|817914|817915|817916|817917|817918|817919|817920|817921|817922|817923|817924|817925|817926|817927|817928|817929|817930|817931|817932|817933|817934|817935|817936|817937|817938|817939|817940|817941|817942|817943|817944|817945|817946|817947|817948|817949|817950|817951|817952|817953|817954|817955|817956|817957|817958|817959|817960|817961|817962|817963|817964|817965|817966|817967|817968|817969|817970|817971|817972|817973|817974|817975|817976|817977|817978|817979|817980|817981|817982|817983|817984|817985|817986|817987|817988|817989|817990|817991|817992|817993|817994|817995|817996|817997|817998|817999|818000|818001|818002|818003|818004|818005|818006|818007|818008|818009|818010|818011|818012|818013|818014|818015|818016|818017|818018|818019|818020|818021|818022|818023|818024|818025|818026|818027|818028|818029|818030|818031|818032|818033|818034|818035|818036|818037|818038|818039|818040|818041|818042|818043|818044|818045|818046|818047|818048|818049|818050|818051|818052|818053|818054|818055|818056|818057|818058|818059|818060|818061|818062|818063|818064|818065|818066|818067|818068|818069|818070|818071|818072|818073|818074|818075|818076|818077|818078|818079|818080|818081|818082|818083|818084|818085|818086|818087|818088|818089|818090|818091|818092|818093|818094|818095|818096|818097|818098|818099|818100|818101|818102|818103|818104|818105|818106|818107|818108|818109|818110|818111|818112|818113|818114|818115|818116|818117|818118|818119|818120|818121|818122", + "upstreamId": "24577|31928|31932|32630|32631|47984|47996|176988|191350|227763|246999|257574|257575|389705|507605|508193|508196|656702|663108|698605|721047|736310|816535|816536|816537|816538|816539|816540|816541|816542|816543|816544|816545|816546|816547|816548|816549|816550|816551|816552|816553|816554|816555|816556|816557|816558|816559|816560|816561|816562|816563|816564|816565|816566|816567|816568|816569|816570|816571|816572|816573|816574|816575|816576|816577|816578|816579|816580|816581|816582|816583|816584|816585|816586|816587|816588|816589|816590|816591|816592|816593|816594|816595|816596|816597|816598|816599|816600|816601|816602|816603|816604|816605|816606|816607|816608|816609|816610|816611|816612|816613|816614|816615|816616|816617|816618|816619|816620|816621|816622|816623|816624|816625|816626|816627|816628|816629|816630|816631|816632|816633|816634|816635|816636|816637|816638|816639|816640|816641|816642|816643|816644|816645|816646|816647|816648|816649|816650|816651|816652|816653|816654|816655|816656|816657|816658|816659|816660|816661|816662|816663|816664|816665|816666|816667|816668|816669|816670|816671|816672|816673|816674|816675|816676|816677|816678|816679|816680|816681|816682|816683|816684|816685|816686|816687|816688|816689|816690|816691|816692|816693|816694|816695|816696|816697|816698|816699|816700|816701|816702|816703|816704|816705|816706|816707|816708|816709|816710|816711|816712|816713|816714|816715|816716|816717|816718|816719|816720|816721|816722|816723|816724|816725|816726|816727|816728|816729|816730|816731|816732|816733|816734|816735|816736|816737|816738|816739|816740|816741|816742|816743|816744|816745|816746|816747|816748|816749|816750|816751|816752|816753|816754|816755|816756|816757|816758|816759|816760|816761|816762|816763|816764|816765|816766|816767|816768|816769|816770|816771|816772|816773|816774|816775|816776|816777|816778|816779|816780|816781|816782|816783|816784|816785|816786|816787|816788|816789|816790|816791|816792|816793|816794|816795|816796|816797|816798|816799|816800|816801|816802|816803|816804|816805|816806|816807|816808|816809|816810|816811|816812|816813|816814|816815|816816|816817|816818|816819|816820|816821|816822|816823|816824|816825|816826|816827|816828|816829|816830|816831|816832|816833|816834|816835|816836|816837|816838|816839|816840|816841|816842|816843|816844|816845|816846|816847|816848|816849|816850|816851|816852|816853|816854|816855|816856|816857|816858|816859|816860|816861|816862|816863|816864|816865|816866|816867|816868|816869|816870|816871|816872|816873|816874|816875|816876|816877|816878|816879|816880|816881|816882|816883|816884|816885|816886|816887|816888|816889|816890|816891|816892|816893|816894|816895|816896|816897|816898|816899|816900|816901|816902|816903|816904|816905|816906|816907|816908|816909|816910|816911|816912|816913|816914|816915|816916|816917|816918|816919|816920|816921|816922|816923|816924|816925|816926|816927|816928|816929|816930|816931|816932|816933|816934|816935|816936|816937|816938|816939|816940|816941|816942|816943|816944|816945|816946|816947|816948|816949|816950|816951|816952|816953|816954|816955|816956|816957|816958|816959|816960|816961|816962|816963|816964|816965|816966|816967|816968|816969|816970|816971|816972|816973|816974|816975|816976|816977|816978|816979|816980|816981|816982|816983|816984|816985|816986|816987|816988|816989|816990|816991|816992|816993|816994|816995|816996|816997|816998|816999|817000|817001|817002|817003|817004|817005|817006|817007|817008|817009|817010|817011|817012|817013|817014|817015|817016|817017|817018|817019|817020|817021|817022|817023|817024|817025|817026|817027|817028|817029|817030|817031|817032|817033|817034|817035|817036|817037|817038|817039|817040|817041|817042|817043|817044|817045|817046|817047|817048|817049|817050|817051|817052|817053|817054|817055|817056|817057|817058|817059|817060|817061|817062|817063|817064|817065|817066|817067|817068|817069|817070|817071|817072|817073|817074|817075|817076|817077|817078|817079|817080|817081|817082|817083|817084|817085|817086|817087|817088|817089|817090|817091|817092|817093|817094|817095|817096|817097|817098|817099|817100|817101|817102|817103|817104|817105|817106|817107|817108|817109|817110|817111|817112|817113|817114|817115|817116|817117|817118|817119|817120|817121|817122|817123|817124|817125|817126|817127|817128|817129|817130|817131|817132|817133|817134|817135|817136|817137|817138|817139|817140|817141|817142|817143|817144|817145|817146|817147|817148|817149|817150|817151|817152|817153|817154|817155|817156|817157|817158|817159|817160|817161|817162|817163|817164|817165|817166|817167|817168|817169|817170|817171|817172|817173|817174|817175|817176|817177|817178|817179|817180|817181|817182|817183|817184|817185|817186|817187|817188|817189|817190|817191|817192|817193|817194|817195|817196|817197|817198|817199|817200|817201|817202|817203|817204|817205|817206|817207|817208|817209|817210|817211|817212|817213|817214|817215|817216|817217|817218|817219|817220|817221|817222|817223|817224|817225|817226|817227|817228|817229|817230|817231|817232|817233|817234|817235|817236|817237|817238|817239|817240|817241|817242|817243|817244|817245|817246|817247|817248|817249|817250|817251|817252|817253|817254|817255|817256|817257|817258|817259|817260|817261|817262|817263|817264|817265|817266|817267|817268|817269|817270|817271|817272|817273|817274|817275|817276|817277|817278|817279|817280|817281|817282|817283|817284|817285|817286|817287|817288|817289|817290|817291|817292|817293|817294|817295|817296|817297|817298|817299|817300|817301|817302|817303|817304|817305|817306|817307|817308|817309|817310|817311|817312|817313|817314|817315|817316|817317|817318|817319|817320|817321|817322|817323|817324|817325|817326|817327|817328|817329|817330|817331|817332|817333|817334|817335|817336|817337|817338|817339|817340|817341|817342|817343|817344|817345|817346|817347|817348|817349|817350|817351|817352|817353|817354|817355|817356|817357|817358|817359|817360|817361|817362|817363|817364|817365|817366|817367|817368|817369|817370|817371|817372|817373|817374|817375|817376|817377|817378|817379|817380|817381|817382|817383|817384|817385|817386|817387|817388|817389|817390|817391|817392|817393|817394|817395|817396|817397|817398|817399|817400|817401|817402|817403|817404|817405|817406|817407|817408|817409|817410|817411|817412|817413|817414|817415|817416|817417|817418|817419|817420|817421|817422|817423|817424|817425|817426|817427|817428|817429|817430|817431|817432|817433|817434|817435|817436|817437|817438|817439|817440|817441|817442|817443|817444|817445|817446|817447|817448|817449|817450|817451|817452|817453|817454|817455|817456|817457|817458|817459|817460|817461|817462|817463|817464|817465|817466|817467|817468|817469|817470|817471|817472|817473|817474|817475|817476|817477|817478|817479|817480|817481|817482|817483|817484|817485|817486|817487|817488|817489|817490|817491|817492|817493|817494|817495|817496|817497|817498|817499|817500|817501|817502|817503|817504|817505|817506|817507|817508|817509|817510|817511|817512|817513|817514|817515|817516|817517|817518|817519|817520|817521|817522|817523|817524|817525|817526|817527|817528|817529|817530|817531|817532|817533|817534|817535|817536|817537|817538|817539|817540|817541|817542|817543|817544|817545|817546|817547|817548|817549|817550|817551|817552|817553|817554|817555|817556|817557|817558|817559|817560|817561|817562|817563|817564|817565|817566|817567|817568|817569|817570|817571|817572|817573|817574|817575|817576|817577|817578|817579|817580|817581|817582|817583|817584|817585|817586|817587|817588|817589|817590|817591|817592|817593|817594|817595|817596|817597|817598|817599|817600|817601|817602|817603|817604|817605|817606|817607|817608|817609|817610|817611|817612|817613|817614|817615|817616|817617|817618|817619|817620|817621|817622|817623|817624|817625|817626|817627|817628|817629|817630|817631|817632|817633|817634|817635|817636|817637|817638|817639|817640|817641|817642|817643|817644|817645|817646|817647|817648|817649|817650|817651|817652|817653|817654|817655|817656|817657|817658|817659|817660|817661|817662|817663|817664|817665|817666|817667|817668|817669|817670|817671|817672|817673|817674|817675|817676|817677|817678|817679|817680|817681|817682|817683|817684|817685|817686|817687|817688|817689|817690|817691|817692|817693|817694|817695|817696|817697|817698|817699|817700|817701|817702|817703|817704|817705|817706|817707|817708|817709|817710|817711|817712|817713|817714|817715|817716|817717|817718|817719|817720|817721|817722|817723|817724|817725|817726|817727|817728|817729|817730|817731|817732|817733|817734|817735|817736|817737|817738|817739|817740|817741|817742|817743|817744|817745|817746|817747|817748|817749|817750|817751|817752|817753|817754|817755|817756|817757|817758|817759|817760|817761|817762|817763|817764|817765|817766|817767|817768|817769|817770|817771|817772|817773|817774|817775|817776|817777|817778|817779|817780|817781|817782|817783|817784|817785|817786|817787|817788|817789|817790|817791|817792|817793|817794|817795|817796|817797|817798|817799|817800|817801|817802|817803|817804|817805|817806|817807|817808|817809|817810|817811|817812|817813|817814|817815|817816|817817|817818|817819|817820|817821|817822|817823|817824|817825|817826|817827|817828|817829|817830|817831|817832|817833|817834|817835|817836|817837|817838|817839|817840|817841|817842|817843|817844|817845|817846|817847|817848|817849|817850|817851|817852|817853|817854|817855|817856|817857|817858|817859|817860|817861|817862|817863|817864|817865|817866|817867|817868|817869|817870|817871|817872|817873|817874|817875|817876|817877|817878|817879|817880|817881|817882|817883|817884|817885|817886|817887|817888|817889|817890|817891|817892|817893|817894|817895|817896|817897|817898|817899|817900|817901|817902|817903|817904|817905|817906|817907|817908|817909|817910|817911|817912|817913|817914|817915|817916|817917|817918|817919|817920|817921|817922|817923|817924|817925|817926|817927|817928|817929|817930|817931|817932|817933|817934|817935|817936|817937|817938|817939|817940|817941|817942|817943|817944|817945|817946|817947|817948|817949|817950|817951|817952|817953|817954|817955|817956|817957|817958|817959|817960|817961|817962|817963|817964|817965|817966|817967|817968|817969|817970|817971|817972|817973|817974|817975|817976|817977|817978|817979|817980|817981|817982|817983|817984|817985|817986|817987|817988|817989|817990|817991|817992|817993|817994|817995|817996|817997|817998|817999|818000|818001|818002|818003|818004|818005|818006|818007|818008|818009|818010|818011|818012|818013|818014|818015|818016|818017|818018|818019|818020|818021|818022|818023|818024|818025|818026|818027|818028|818029|818030|818031|818032|818033|818034|818035|818036|818037|818038|818039|818040|818041|818042|818043|818044|818045|818046|818047|818048|818049|818050|818051|818052|818053|818054|818055|818056|818057|818058|818059|818060|818061|818062|818063|818064|818065|818066|818067|818068|818069|818070|818071|818072|818073|818074|818075|818076|818077|818078|818079|818080|818081|818082|818083|818084|818085|818086|818087|818088|818089|818090|818091|818092|818093|818094|818095|818096|818097|818098|818099|818100|818101|818102|818103|818104|818105|818106|818107|818108|818109|818110|818111|818112|818113|818114|818115|818116|818117|818118|818119|818120|818121|818122", "text": "Tramadol response" }, { - "baseId": "24578|134241|134242|134243|134244|134245|134246|207948|254503|254506|254508|254511|254513|254514|372263|372283|408647|408648|408650|415333|429414|429415|441540|444994|462151|462152|462156|462158|462401|462439|462444|462940|462946|463053|463061|463065|463072|463079|463081|463086|504415|527138|527144|527146|527167|527415|527628|527630|527634|527655|527657|565447|565457|565463|566829|566830|566832|568041|571844|571850|641112|641113|641114|641115|641116|641117|641118|641119|641120|641121|641122|641123|641124|641125|641126|652247|652709|693204|693205|693206|693207|693208|693209|695568|702306|702308|702310|738634|738635|753355|769113|784384|791233|820503|839887|839888|839889|839890|839891|839892|839893|839894|839895|839896|839897|839898|839899|839900|839901|839902|839903|926616|926617|926618|926619|926620|926621|926622|936112|948005|948006|948007|948008|948009|948010|948011|948012|956863|956864|956865|956866|956867", + "upstreamId": "24578|134241|134242|134243|134244|134245|134246|207948|254503|254506|254508|254511|254513|254514|372263|372283|408647|408648|408650|415333|429414|429415|441540|444994|462151|462152|462156|462158|462401|462439|462444|462940|462946|463053|463061|463065|463072|463079|463081|463086|504415|527138|527144|527146|527167|527415|527628|527630|527634|527655|527657|565447|565457|565463|566829|566830|566832|568041|571844|571850|641112|641113|641114|641115|641116|641117|641118|641119|641120|641121|641122|641123|641124|641125|641126|652247|652709|693204|693205|693206|693207|693208|693209|695568|702306|702308|702310|738634|738635|753355|769113|784384|791233|820503|839887|839888|839889|839890|839891|839892|839893|839894|839895|839896|839897|839898|839899|839900|839901|839902|839903|926616|926617|926618|926619|926620|926621|926622|936112|948005|948006|948007|948008|948009|948010|948011|948012|956863|956864|956865|956866|956867", "text": "Myopathy, congenital, compton-north" }, { - "baseId": "24579|24580|24581|24582|24583|24584", + "upstreamId": "24579|24580|24581|24582|24583|24584", "text": "Bare lymphocyte syndrome type 2, complementation group A" }, { - "baseId": "24586|140349|140350|140351|140352|166021|171118|171119|171120|171121|171122|171123|178613|178614|188478|188483|188484|188485|188486|188487|188488|188489|188490|188492|189313|189314|189317|189319|195796|212762|212763|221941|224385|240754|240755|240757|240758|253715|253716|253717|258637|258639|258640|309994|315000|315012|315013|321050|321601|321602|321615|362738|389940|397186|397187|397192|397410|397576|397579|397589|397744|397748|397751|404786|407836|407843|425869|459742|459744|459745|459920|460191|460631|460636|510159|512837|512838|512839|525047|525049|525055|525237|525244|525245|525248|525251|525253|525256|525258|525353|525366|525368|525374|525548|525550|525552|525553|551709|563648|563650|563655|564535|566221|566224|566235|569585|569593|638822|638823|638824|638825|638826|638827|653950|684166|687612|687613|687614|689977|689978|692821|767689|783579|820200|836745|836746|836747|836748|836749|836750|836751|836752|836753|836754|836755|852239|925779|925780|935003|935004|940953|946850|946851|946852|946853|956025|956026|956027|956028|956029|961005", + "upstreamId": "24586|140349|140350|140351|140352|166021|171118|171119|171120|171121|171122|171123|178613|178614|188478|188483|188484|188485|188486|188487|188488|188489|188490|188492|189313|189314|189317|189319|195796|212762|212763|221941|224385|240754|240755|240757|240758|253715|253716|253717|258637|258639|258640|309994|315000|315012|315013|321050|321601|321602|321615|362738|389940|397186|397187|397192|397410|397576|397579|397589|397744|397748|397751|404786|407836|407843|425869|459742|459744|459745|459920|460191|460631|460636|510159|512837|512838|512839|525047|525049|525055|525237|525244|525245|525248|525251|525253|525256|525258|525353|525366|525368|525374|525548|525550|525552|525553|551709|563648|563650|563655|564535|566221|566224|566235|569585|569593|638822|638823|638824|638825|638826|638827|653950|684166|687612|687613|687614|689977|689978|692821|767689|783579|820200|836745|836746|836747|836748|836749|836750|836751|836752|836753|836754|836755|852239|925779|925780|935003|935004|940953|946850|946851|946852|946853|956025|956026|956027|956028|956029|961005", "text": "Brugada syndrome 4" }, { - "baseId": "24587", + "upstreamId": "24587", "text": "Ataxia, progressive seizures, mental deterioration, and hearing loss" }, { - "baseId": "24587|24588|24592|24595|24598|24601|24602|24605|24608|24610|24611|24612|24615|24618|24619|24620|24623|24625|24627|24628|24628|24629|24629|24630|24631|24632|24633|24634|24635|24636|24637|24639|24640|24642|24643|24644|24647|24649|24652|24654|24655|24656|24657|24661|24664|24731|24738|24739|24740|24741|24742|24748|24772|24773|24774|38956|38959|38960|51394|51395|51396|51397|51398|51399|51400|153627|153628|153630|165629|165633|188274|189167|224979|231301|236823|236830|236832|236833|236834|237048|237121|237180|237206|354290|354298|354302|363842|363861|433992|434696|434780|497359|610271|672123|677483|677484|677485|677486|677487|677488|677489|677490|677491|677492|677493|677494|677495|677496|677497|677498|677499|677500|677501|677502|677503|677504|677505|677506|677507|677508|677509|677510|677511|677512|677513|677514|677515|677516|677517|677518|677519|677520|677521|677522|677523|677524|677525|677526|677527|677528|677529|677530|677531|677532|677533|677534|677535|677536|677537|677538|677539|677540|677541|677542|677543|677544|677545|677546|677547|677548|677549|677550|677551|677552|677553|677554|677555|677556|677557|677558|677559|677560|677561|677562|677563|677564|677565|677566|677567|677568|677569|677570|677571|677572|677573|677574|677575|677576|677577|677578|677579|677580|677581|677582|677583|677584|677585|677586|677587|677588|677589|677590|677591|677592|677593|677594|677595|677596|677597|677598|677599|677600|677601|677602|677603|677604|677605|677606|677607|677608|677609|677610|677611|677612|677613|677614|677615|677616|677617|677618|677619|677620|677621|677622|677623|677624|677625|677626|677627|677628|677629|677630|677631|677632|677633|677634|677635|677636|677637|677638|677639|677640|677641|677642|677643|677644|677645|677646|677647|677648|677649|677650|677651|677652|677653|677654|677655|677656|677657|677658|677659|677660|677661|677662|677663|677664|677665|677666|677667|677668|677669|677670|677671|677672|677673|677674|677675|677676|677677|677678|677679|677680|677681|677682|677683|677684|677685|677686|677687|677688|677689|677690|677691|677692|677693|677694|677695|677696|677697|677698|677699|677700|677701|677702|677703|677704|677705|677706|677707|677708|677709|677710|677711|677712|677713|677714|677715|677716|677717|677718|677719|677720|677721|677722|677723|677724|677725|677726|677727|677728|677729|677730|677731|677732|677733|677734|677735|677736|677737|677738|677739|677740|677741|677742|677743|677744|677745|677746|677747|677748|677749|677750|677751|677752|677753|677754|677755|677756|677757|677758|677759|677760|677761|677762|677763|677764|677765|677766|677767|677768|677769|677770|677771|677772|677773|677774|677775|677776|677777|677778|677779|677780|677781|677782|677783|677784|677785|677786|677787|677788|677789|677790|677791|677792|677793|677794|677795|677796|677797|677798|677799|677800|677801|677802|677803|677804|677805|677806|677807|677808|677809|677810|677811|677812|677813|677814|677815|677816|677817|677818|677819|677820|677821|677822|677823|677824|677825|677826|677827|677828|677829|677830|677831|677832|677833|677834|677835|677836|677837|677838|677839|677840|677841|677842|677843|677844|677845|677846|677847|677848|677849|677850|677851|677852|677853|677854|677855|677856|677857|677858|677859|677860|677861|677862|677863|677864|677865|677866|677867|677868|677869|677870|677871|677872|677873|677874|677875|677876|677877|677878|677879|677880|677881|677882|677883|677884|677885|677886|677887|677888|677889|677890|677891|677892|677893|677894|677895|677896|677897|677898|677899|677900|677901|677902|677903|677904|677905|677906|677907|677908|677909|677910|677911|677912|677913|677914|677915|677916|677917|677918|677919|677920|677921|677922|677923|677924|677925|677926|677927|677928|677929|677930|677931|677932|677933|677934|677935|677936|677937|677938|677939|677940|677941|677942|677943|677944|677945|677946|677947|677948|677949|677950|677951|677952|677953|677954|677955|680402|680406|680616|680882|680963", + "upstreamId": "24587|24588|24592|24595|24598|24601|24602|24605|24608|24610|24611|24612|24615|24618|24619|24620|24623|24625|24627|24628|24628|24629|24629|24630|24631|24632|24633|24634|24635|24636|24637|24639|24640|24642|24643|24644|24647|24649|24652|24654|24655|24656|24657|24661|24664|24731|24738|24739|24740|24741|24742|24748|24772|24773|24774|38956|38959|38960|51394|51395|51396|51397|51398|51399|51400|153627|153628|153630|165629|165633|188274|189167|224979|231301|236823|236830|236832|236833|236834|237048|237121|237180|237206|354290|354298|354302|363842|363861|433992|434696|434780|497359|610271|672123|677483|677484|677485|677486|677487|677488|677489|677490|677491|677492|677493|677494|677495|677496|677497|677498|677499|677500|677501|677502|677503|677504|677505|677506|677507|677508|677509|677510|677511|677512|677513|677514|677515|677516|677517|677518|677519|677520|677521|677522|677523|677524|677525|677526|677527|677528|677529|677530|677531|677532|677533|677534|677535|677536|677537|677538|677539|677540|677541|677542|677543|677544|677545|677546|677547|677548|677549|677550|677551|677552|677553|677554|677555|677556|677557|677558|677559|677560|677561|677562|677563|677564|677565|677566|677567|677568|677569|677570|677571|677572|677573|677574|677575|677576|677577|677578|677579|677580|677581|677582|677583|677584|677585|677586|677587|677588|677589|677590|677591|677592|677593|677594|677595|677596|677597|677598|677599|677600|677601|677602|677603|677604|677605|677606|677607|677608|677609|677610|677611|677612|677613|677614|677615|677616|677617|677618|677619|677620|677621|677622|677623|677624|677625|677626|677627|677628|677629|677630|677631|677632|677633|677634|677635|677636|677637|677638|677639|677640|677641|677642|677643|677644|677645|677646|677647|677648|677649|677650|677651|677652|677653|677654|677655|677656|677657|677658|677659|677660|677661|677662|677663|677664|677665|677666|677667|677668|677669|677670|677671|677672|677673|677674|677675|677676|677677|677678|677679|677680|677681|677682|677683|677684|677685|677686|677687|677688|677689|677690|677691|677692|677693|677694|677695|677696|677697|677698|677699|677700|677701|677702|677703|677704|677705|677706|677707|677708|677709|677710|677711|677712|677713|677714|677715|677716|677717|677718|677719|677720|677721|677722|677723|677724|677725|677726|677727|677728|677729|677730|677731|677732|677733|677734|677735|677736|677737|677738|677739|677740|677741|677742|677743|677744|677745|677746|677747|677748|677749|677750|677751|677752|677753|677754|677755|677756|677757|677758|677759|677760|677761|677762|677763|677764|677765|677766|677767|677768|677769|677770|677771|677772|677773|677774|677775|677776|677777|677778|677779|677780|677781|677782|677783|677784|677785|677786|677787|677788|677789|677790|677791|677792|677793|677794|677795|677796|677797|677798|677799|677800|677801|677802|677803|677804|677805|677806|677807|677808|677809|677810|677811|677812|677813|677814|677815|677816|677817|677818|677819|677820|677821|677822|677823|677824|677825|677826|677827|677828|677829|677830|677831|677832|677833|677834|677835|677836|677837|677838|677839|677840|677841|677842|677843|677844|677845|677846|677847|677848|677849|677850|677851|677852|677853|677854|677855|677856|677857|677858|677859|677860|677861|677862|677863|677864|677865|677866|677867|677868|677869|677870|677871|677872|677873|677874|677875|677876|677877|677878|677879|677880|677881|677882|677883|677884|677885|677886|677887|677888|677889|677890|677891|677892|677893|677894|677895|677896|677897|677898|677899|677900|677901|677902|677903|677904|677905|677906|677907|677908|677909|677910|677911|677912|677913|677914|677915|677916|677917|677918|677919|677920|677921|677922|677923|677924|677925|677926|677927|677928|677929|677930|677931|677932|677933|677934|677935|677936|677937|677938|677939|677940|677941|677942|677943|677944|677945|677946|677947|677948|677949|677950|677951|677952|677953|677954|677955|680402|680406|680616|680882|680963", "text": "Juvenile myopathy, encephalopathy, lactic acidosis AND stroke" }, { - "baseId": "24588|45818|181416|181420|181426|181450|679707|679709", + "upstreamId": "24588|45818|181416|181420|181426|181450|679707|679709", "text": "Neonatal death" }, { - "baseId": "24589", + "upstreamId": "24589", "text": "Exercise intolerance and complex III deficiency, somatic" }, { - "baseId": "24590|24591|24638|424215", + "upstreamId": "24590|24591|24638|424215", "text": "Kearns Sayre syndrome" }, { - "baseId": "24592", + "upstreamId": "24592", "text": "Focal segmental glomerulosclerosis and dilated cardiomyopathy" }, { - "baseId": "24593|24594|38960|354305|550203|550204|980879", + "upstreamId": "24593|24594|38960|354305|550203|550204|980879", "text": "Mitochondrial encephalopathy" }, { - "baseId": "24595|24617|24626|24656|24664|33288|142556|142557|142560|142561|142562|152778|172075|172076|211588|217217|229075|354293|503924|612469|679205|738547", + "upstreamId": "24595|24617|24626|24656|24664|33288|142556|142557|142560|142561|142562|152778|172075|172076|211588|217217|229075|354293|503924|612469|679205|738547", "text": "Mitochondrial myopathy" }, { - "baseId": "24596", + "upstreamId": "24596", "text": "Neurogastrointestinal syndrome, mitochondrial" }, { - "baseId": "24597", + "upstreamId": "24597", "text": "Encephalocardiomyopathy, mitochondrial" }, { - "baseId": "24599", + "upstreamId": "24599", "text": "Cerebellar ataxia, cataract, and diabetes mellitus" }, { - "baseId": "24599|54805|54812|54826|54839|54842|55037|55056|55057|55078|55102|55120|55143|55167|55193|55205|55236|55237|55245|55653|55658|172769|174544|175230|175287|175289|247044|253830|278929|278958|279100|280392|280397|280424|289918|293005|293389|293396|293404|293405|295655|310529|310535|310662|310741|310742|310745|315636|315674|315906|315931|315967|315972|316006|316010|316044|316047|316048|316100|316153|321656|322088|322101|322102|322105|322106|322108|322109|322395|322646|322651|322653|322702|322713|322714|322725|322726|325652|328178|329416|329796|336966|340100|340101|347193|353204|353205|353453|790978|790979", + "upstreamId": "24599|54805|54812|54826|54839|54842|55037|55056|55057|55078|55102|55120|55143|55167|55193|55205|55236|55237|55245|55653|55658|172769|174544|175230|175287|175289|247044|253830|278929|278958|279100|280392|280397|280424|289918|293005|293389|293396|293404|293405|295655|310529|310535|310662|310741|310742|310745|315636|315674|315906|315931|315967|315972|316006|316010|316044|316047|316048|316100|316153|321656|322088|322101|322102|322105|322106|322108|322109|322395|322646|322651|322653|322702|322713|322714|322725|322726|325652|328178|329416|329796|336966|340100|340101|347193|353204|353205|353453|790978|790979", "text": "Retinitis pigmentosa-deafness syndrome" }, { - "baseId": "24600|24601|24619|24628|24649", + "upstreamId": "24600|24601|24619|24628|24649", "text": "MERRF/MELAS overlap syndrome" }, { - "baseId": "24601|51396", + "upstreamId": "24601|51396", "text": "Mitochondrial cytochrome c oxidase deficiency" }, { - "baseId": "24602|32054|32066|32076|243935|487604", + "upstreamId": "24602|32054|32066|32076|243935|487604", "text": "Palmoplantar keratoderma-deafness syndrome" }, { - "baseId": "24602|24604|24605|24607|24642|24667|24667|24669|24670|24671|24672|24673|24702|38953|38959|48657|49378|51396|143262|619823|619824", + "upstreamId": "24602|24604|24605|24607|24642|24667|24667|24669|24670|24671|24672|24673|24702|38953|38959|48657|49378|51396|143262|619823|619824", "text": "Deafness, nonsyndromic sensorineural, mitochondrial" }, { - "baseId": "24608", + "upstreamId": "24608", "text": "Exercise intolerance, muscle pain, and lactic acidemia" }, { - "baseId": "24611", + "upstreamId": "24611", "text": "MERFF syndrome" }, { - "baseId": "24613|24618|24619|24620|24624|24628|24629|24630|24742", + "upstreamId": "24613|24618|24619|24620|24624|24628|24629|24630|24742", "text": "MERRF syndrome" }, { - "baseId": "24614", + "upstreamId": "24614", "text": "Myopathy, mitochondrial, late-onset" }, { - "baseId": "24615|24616", + "upstreamId": "24615|24616", "text": "Epilepsy, mitochondrial" }, { - "baseId": "24620", + "upstreamId": "24620", "text": "Cardiomyopathy and Deafness" }, { - "baseId": "24621", + "upstreamId": "24621", "text": "Progressive external ophthalmoplegia with myoclonus" }, { - "baseId": "24622|28542|28544|31692|31693|31694|31695|31696|31697|31698|31699|31700|31701|31702|31703|31704|31705|136139|136140|141573|141574|141575|141576|141579|141581|141582|141583|142784|142785|142787|142788|142789|142791|203044|211973|211976|211980|211983|211984|211989|211990|211991|224729|224731|224732|224733|224736|224738|224739|224740|224742|224743|224744|224745|224746|224747|224748|224749|224750|224751|224754|224755|224756|224757|224758|224761|224763|224764|224765|224766|224768|224769|224771|224773|224774|224775|224776|224777|224778|224779|224780|224781|224782|224783|224787|224788|224789|224790|224792|224793|224794|224795|224796|224797|224798|224799|224800|224801|224802|224803|224804|224805|224806|224808|224810|224811|224812|224813|257713|338584|338585|338593|338597|338599|338601|338602|348160|348167|348174|348175|348177|351827|351828|351830|351831|351832|351834|351835|351838|351840|352680|352681|352682|352683|352684|352685|434129|434130|508218|549170|549172|620930|682368|816497|891503|891504|891505|891506|891507|891508|891509", + "upstreamId": "24622|28542|28544|31692|31693|31694|31695|31696|31697|31698|31699|31700|31701|31702|31703|31704|31705|136139|136140|141573|141574|141575|141576|141579|141581|141582|141583|142784|142785|142787|142788|142789|142791|203044|211973|211976|211980|211983|211984|211989|211990|211991|224729|224731|224732|224733|224736|224738|224739|224740|224742|224743|224744|224745|224746|224747|224748|224749|224750|224751|224754|224755|224756|224757|224758|224761|224763|224764|224765|224766|224768|224769|224771|224773|224774|224775|224776|224777|224778|224779|224780|224781|224782|224783|224787|224788|224789|224790|224792|224793|224794|224795|224796|224797|224798|224799|224800|224801|224802|224803|224804|224805|224806|224808|224810|224811|224812|224813|257713|338584|338585|338593|338597|338599|338601|338602|348160|348167|348174|348175|348177|351827|351828|351830|351831|351832|351834|351835|351838|351840|352680|352681|352682|352683|352684|352685|434129|434130|508218|549170|549172|620930|682368|816497|891503|891504|891505|891506|891507|891508|891509", "text": "Mitochondrial DNA depletion syndrome 1 (MNGIE type)" }, { - "baseId": "24623|24628|24656|262350", + "upstreamId": "24623|24628|24656|262350", "text": "Diabetes-deafness syndrome maternally transmitted" }, { - "baseId": "24625|24633|24662|24719|38955|38962|48423|48430|76995", + "upstreamId": "24625|24633|24662|24719|38955|38962|48423|48430|76995", "text": "Mitochondrial encephalomyopathy" }, { - "baseId": "24627|550141|550142|550143|550144|550145|550146|550147", + "upstreamId": "24627|550141|550142|550143|550144|550145|550146|550147", "text": "Cardiomyopathy, mitochondrial" }, { - "baseId": "24628", + "upstreamId": "24628", "text": "Muscle stiffness, painful" }, { - "baseId": "24628", + "upstreamId": "24628", "text": "Cyclical vomiting syndrome" }, { - "baseId": "24628|32059|176723|186432|236877|263185|263248|354294|359177|359178|360876|361080|437859|508754|508758|513902|513971|550163|551445|578007|581736|612033|614154|623104|623105|623106|623107|623607|679341|682750|682755|682761|682863|857409|857412|857413|857415|859391|961221|961433|965405", + "upstreamId": "24628|32059|176723|186432|236877|263185|263248|354294|359177|359178|360876|361080|437859|508754|508758|513902|513971|550163|551445|578007|581736|612033|614154|623104|623105|623106|623107|623607|679341|682750|682755|682761|682863|857409|857412|857413|857415|859391|961221|961433|965405", "text": "Sensorineural hearing loss" }, { - "baseId": "24628", + "upstreamId": "24628", "text": "Glucose intolerance" }, { - "baseId": "24630", + "upstreamId": "24630", "text": "Diabetes mellitus, noninsulin-dependent, maternally transmitted" }, { - "baseId": "24631|24635", + "upstreamId": "24631|24635", "text": "Cardiomyopathy with or without skeletal myopathy" }, { - "baseId": "24632", + "upstreamId": "24632", "text": "Skeletal myopathy, responsive to riboflavin" }, { - "baseId": "24634", + "upstreamId": "24634", "text": "Progressive external ophthalmoplegia, proximal myopathy, and sudden death" }, { - "baseId": "24637", + "upstreamId": "24637", "text": "Neuropsychiatric disorder and early-onset cataract" }, { - "baseId": "24639|27386|27395|27641|27642|27652|28938|28940|29755|38666|38677|39943|48247|48938|48939|48940|166215|172332|205216|216786|216787|236469|239104|242980|362755|362759|362760|362761|362768|362770|362771|362772|362866|362867|362868|362903|362904|362905|363412|363531|393498|393500|393746|428133|452262|539096|539097|578573|919910|964095|976556", + "upstreamId": "24639|27386|27395|27641|27642|27652|28938|28940|29755|38666|38677|39943|48247|48938|48939|48940|166215|172332|205216|216786|216787|236469|239104|242980|362755|362759|362760|362761|362768|362770|362771|362772|362866|362867|362868|362903|362904|362905|363412|363531|393498|393500|393746|428133|452262|539096|539097|578573|919910|964095|976556", "text": "Myelodysplastic syndrome" }, { - "baseId": "24640", + "upstreamId": "24640", "text": "Cardiomyopathy, fatal infantile" }, { - "baseId": "24641", + "upstreamId": "24641", "text": "Cardiomyopathy, fatal" }, { - "baseId": "24643|24722", + "upstreamId": "24643|24722", "text": "Multisystem disorder" }, { - "baseId": "24644", + "upstreamId": "24644", "text": "Encephalopathy, familial progressive necrotizing" }, { - "baseId": "24645|45304|51954|179175|963070|963071", + "upstreamId": "24645|45304|51954|179175|963070|963071", "text": "Asymmetric septal hypertrophy" }, { - "baseId": "24646", + "upstreamId": "24646", "text": "Hypertension, hypercholesterolemia, and hypomagnesemia, mitochondrial" }, { - "baseId": "24647", + "upstreamId": "24647", "text": "Cardiomyopathy, idiopathic dilated, mitochondrial" }, { - "baseId": "24647", + "upstreamId": "24647", "text": "Cardiomyopathy, hypertrophic, mitochondrial" }, { - "baseId": "24648", + "upstreamId": "24648", "text": "Pigmentary retinopathy and sensorineural deafness" }, { - "baseId": "24651|24717|24718|24720|24721", + "upstreamId": "24651|24717|24718|24720|24721", "text": "Exercise intolerance" }, { - "baseId": "24652|259847|354290|515677", + "upstreamId": "24652|259847|354290|515677", "text": "Sudden death" }, { - "baseId": "24654", + "upstreamId": "24654", "text": "Sensorineural deafness and migraine" }, { - "baseId": "24656", + "upstreamId": "24656", "text": "Myopathy, mitochondrial, with diabetes mellitus" }, { - "baseId": "24657|24696|24717|24718|24720|24722|38958|680328|680382|680897|680908|681121|681160|681253|681497", + "upstreamId": "24657|24696|24717|24718|24720|24722|38958|680328|680382|680897|680908|681121|681160|681253|681497", "text": "Mitochondrial myopathy, infantile, transient" }, { - "baseId": "24658", + "upstreamId": "24658", "text": "Mitochondrial myopathy, isolated" }, { - "baseId": "24659|24660", + "upstreamId": "24659|24660", "text": "Ophthalmoplegia, isolated" }, { - "baseId": "24661", + "upstreamId": "24661", "text": "MITOCHONDRIAL COMPLEX I DEFICIENCY, MITOCHONDRIAL TYPE 2" }, { - "baseId": "24663", + "upstreamId": "24663", "text": "Myotonic dystrophy-like myopathy" }, { - "baseId": "24665|24666", + "upstreamId": "24665|24666", "text": "Chloramphenicol resistance" }, { - "baseId": "24667|24667|24668|24670|24671|24673|24702", + "upstreamId": "24667|24667|24668|24670|24671|24673|24702", "text": "Aminoglycoside-induced deafness" }, { - "baseId": "24667|27463|27463|27465|44675|44676|52080|52190|53659|54077|54949|99318|100371|172503|175451|175624|175645|176070|176073|176208|176214|178557|178683|178685|178749|258510|403833|438509|457357|535269|540432|540433|609028|679387|679431|679432|679472|828189", + "upstreamId": "24667|27463|27463|27465|44675|44676|52080|52190|53659|54077|54949|99318|100371|172503|175451|175624|175645|176070|176073|176208|176214|178557|178683|178685|178749|258510|403833|438509|457357|535269|540432|540433|609028|679387|679431|679432|679472|828189", "text": "Restrictive cardiomyopathy" }, { - "baseId": "24667|24670|24671", + "upstreamId": "24667|24670|24671", "text": "aminoglycoside antibacterials response - Toxicity/ADR" }, { - "baseId": "24667|24670|24671", + "upstreamId": "24667|24670|24671", "text": "amikacin response - Toxicity/ADR" }, { - "baseId": "24667|24670|24671", + "upstreamId": "24667|24670|24671", "text": "gentamicin response - Toxicity/ADR" }, { - "baseId": "24667|24670|24671", + "upstreamId": "24667|24670|24671", "text": "kanamycin response - Toxicity/ADR" }, { - "baseId": "24667|24670|24671", + "upstreamId": "24667|24670|24671", "text": "neomycin response - Toxicity/ADR" }, { - "baseId": "24667|24670|24671", + "upstreamId": "24667|24670|24671", "text": "streptomycin response - Toxicity/ADR" }, { - "baseId": "24667|24670|24671", + "upstreamId": "24667|24670|24671", "text": "tobramycin response - Toxicity/ADR" }, { - "baseId": "24667|24671|24673", + "upstreamId": "24667|24671|24673", "text": "Gentamicin response" }, { - "baseId": "24670", + "upstreamId": "24670", "text": "Auditory neuropathy" }, { - "baseId": "24677", + "upstreamId": "24677", "text": "Brain pseudoatrophy, reversible, valproate-induced, susceptibility to" }, { - "baseId": "24678", + "upstreamId": "24678", "text": "Cardiomyopathy, apical hypertrophic, and neuropathy" }, { - "baseId": "24679", + "upstreamId": "24679", "text": "Cardiomyopathy, infantile hypertrophic" }, { - "baseId": "24679|24723|188131|248609", + "upstreamId": "24679|24723|188131|248609", "text": "Histiocytoid cardiomyopathy" }, { - "baseId": "24680|24681|24687|576199|681583", + "upstreamId": "24680|24681|24687|576199|681583", "text": "NARP syndrome" }, { - "baseId": "24680|24681|24683|24686|24689", + "upstreamId": "24680|24681|24683|24686|24689", "text": "Mitochondrial complex v (atp synthase) deficiency, mitochondrial type 1" }, { - "baseId": "24681", + "upstreamId": "24681", "text": "Ataxia and polyneuropathy, adult-onset" }, { - "baseId": "24682|24690|24691|24702|24713|24714|24727|24728|24729|24730|24732|24735|24736|24739|24742|24743|24746|24747|24749|24750|24755|24756|24757|24761|24762|24763|24764|24766|24771|24772|24775|38954|76416|76417|76418|76419|76420|76421|76422|76423|76424|76425|76426|76427|76428|76829|237206|354298|424207|513236|514149|576199|677958|980887|983838", + "upstreamId": "24682|24690|24691|24702|24713|24714|24727|24728|24729|24730|24732|24735|24736|24739|24742|24743|24746|24747|24749|24750|24755|24756|24757|24761|24762|24763|24764|24766|24771|24772|24775|38954|76416|76417|76418|76419|76420|76421|76422|76423|76424|76425|76426|76427|76428|76829|237206|354298|424207|513236|514149|576199|677958|980887|983838", "text": "Leber's optic atrophy" }, { - "baseId": "24683|24684", + "upstreamId": "24683|24684", "text": "Striatonigral degeneration, infantile, mitochondrial" }, { - "baseId": "24685", + "upstreamId": "24685", "text": "Seizures and lactic acidosis" }, { - "baseId": "24693", + "upstreamId": "24693", "text": "Mitochondrial complex IV deficiency with recurrent myoglobinuria" }, { - "baseId": "24703|24704", + "upstreamId": "24703|24704", "text": "Sideroblastic anemia, acquired idiopathic" }, { - "baseId": "24708", + "upstreamId": "24708", "text": "Myoglobinuria, recurrent" }, { - "baseId": "24709|24710", + "upstreamId": "24709|24710", "text": "Cytochrome c oxidase i deficiency" }, { - "baseId": "24724", + "upstreamId": "24724", "text": "Exercise intolerance, cardiomyopathy, and septooptic dysplasia" }, { - "baseId": "24725", + "upstreamId": "24725", "text": "Parkinsonism/MELAS overlap syndrome" }, { - "baseId": "24728|24729|24749|24754|24772", + "upstreamId": "24728|24729|24749|24754|24772", "text": "Leber optic atrophy and dystonia" }, { - "baseId": "24728|24733|24737|24739|24740|24741|24742|24760", + "upstreamId": "24728|24733|24737|24739|24740|24741|24742|24760", "text": "Leigh syndrome due to mitochondrial complex I deficiency" }, { - "baseId": "24733", + "upstreamId": "24733", "text": "Striatal necrosis, bilateral, with dystonia" }, { - "baseId": "24751|24753|24754", + "upstreamId": "24751|24753|24754", "text": "Mitochondrial complex 1 deficiency, mitochondrial type 1" }, { - "baseId": "24752", + "upstreamId": "24752", "text": "Parkinson disease, resistance to" }, { - "baseId": "24761|24770", + "upstreamId": "24761|24770", "text": "MITOCHONDRIAL COMPLEX I DEFICIENCY, MITOCHONDRIAL TYPE 3" }, { - "baseId": "24769", + "upstreamId": "24769", "text": "Dystonia, adult-onset" }, { - "baseId": "24776|24777|24778|24779|24780|24781|24782|24783|24784|24785|24786|24787|24788|24789|24790|24791|24792|24793|24794|24795|380292|430955|472023|472025|485860|485861|535003|535213|650304|650305|694972|774283|929847", + "upstreamId": "24776|24777|24778|24779|24780|24781|24782|24783|24784|24785|24786|24787|24788|24789|24790|24791|24792|24793|24794|24795|380292|430955|472023|472025|485860|485861|535003|535213|650304|650305|694972|774283|929847", "text": "46,XY sex reversal, type 1" }, { - "baseId": "24780", + "upstreamId": "24780", "text": "46,XY true hermaphroditism, SRY-related" }, { - "baseId": "24796", + "upstreamId": "24796", "text": "Spermatogenic failure, Y-linked 2" }, { - "baseId": "24797", + "upstreamId": "24797", "text": "Hypospermatogenesis, nonobstructive, Y-linked" }, { - "baseId": "24798", + "upstreamId": "24798", "text": "Mental retardation, X-linked 45" }, { - "baseId": "24801|24802|136291|136294|136295|209310|339622|339624|339626|339627|339629|349116|349119|352460|352461|352462|352463|352970|352971|352972|352973|352974|352975|404662|404663|446797|486665|513696|583141|903255|903256|903257|903258|903259|903260|903261|903262|920073|964637", + "upstreamId": "24801|24802|136291|136294|136295|209310|339622|339624|339626|339627|339629|349116|349119|352460|352461|352462|352463|352970|352971|352972|352973|352974|352975|404662|404663|446797|486665|513696|583141|903255|903256|903257|903258|903259|903260|903261|903262|920073|964637", "text": "ZNF711-Related X-linked Mental Retardation" }, { - "baseId": "24803|24804|24805|24806|24807|24808|24809|24810", + "upstreamId": "24803|24804|24805|24806|24807|24808|24809|24810", "text": "McLeod neuroacanthocytosis syndrome" }, { - "baseId": "24811|24812|24813|24814|24815|24816|24817|38951|38952|134820|209093|248653|361245|362394|384427|424348|424677|446693|511020|513397|550656|583139|611453|611454|611455|622946|626322|653905|653906|678951|802237|804852|857381|861663|961360|961638|969302|971215|971216", + "upstreamId": "24811|24812|24813|24814|24815|24816|24817|38951|38952|134820|209093|248653|361245|362394|384427|424348|424677|446693|511020|513397|550656|583139|611453|611454|611455|622946|626322|653905|653906|678951|802237|804852|857381|861663|961360|961638|969302|971215|971216", "text": "Mental retardation, syndromic, Claes-Jensen type, X-linked" }, { - "baseId": "24818", + "upstreamId": "24818", "text": "X inactivation, familial skewed, 1" }, { - "baseId": "24819|24820|24821|339239|339251|339252|339255|339257|348762|348763|348766|348768|348774|348775|348776|348779|348780|352251|352252|352253|352254|352255|352256|352868|352869|352870|353866|470830|471559|471561|471884|471885|471889|472156|472157|492757|508273|508286|508580|508582|508674|508675|534820|534870|534883|534971|534973|534980|534981|534990|534998|535171|535172|535173|535174|535175|539114|572497|572500|574734|574736|575416|575417|650059|650060|650061|650062|650063|650064|650065|650066|650067|650068|650069|650070|650071|650072|650073|650074|653457|656779|689512|694888|694889|694890|694891|694893|694895|694897|706239|717794|743340|758506|758508|758510|760866|774062|774064|774065|774067|778703|786839|822225|850070|850071|850072|850073|850074|850075|850076|850077|850078|850079|852518|903063|903064|903065|903066|903067|903068|903475|903476|903477|920028|920029|929736|929737|929738|929739|929740|939601|939602|939603|939604|939605|951808|951809|959307|959308", + "upstreamId": "24819|24820|24821|339239|339251|339252|339255|339257|348762|348763|348766|348768|348774|348775|348776|348779|348780|352251|352252|352253|352254|352255|352256|352868|352869|352870|353866|470830|471559|471561|471884|471885|471889|472156|472157|492757|508273|508286|508580|508582|508674|508675|534820|534870|534883|534971|534973|534980|534981|534990|534998|535171|535172|535173|535174|535175|539114|572497|572500|574734|574736|575416|575417|650059|650060|650061|650062|650063|650064|650065|650066|650067|650068|650069|650070|650071|650072|650073|650074|653457|656779|689512|694888|694889|694890|694891|694893|694895|694897|706239|717794|743340|758506|758508|758510|760866|774062|774064|774065|774067|778703|786839|822225|850070|850071|850072|850073|850074|850075|850076|850077|850078|850079|852518|903063|903064|903065|903066|903067|903068|903475|903476|903477|920028|920029|929736|929737|929738|929739|929740|939601|939602|939603|939604|939605|951808|951809|959307|959308", "text": "Spinal muscular atrophy, X-linked 2" }, { - "baseId": "24822|24827|24828|24830|24832|24833|24834|24835|24836|24837|24838|24839|24840", + "upstreamId": "24822|24827|24828|24830|24832|24833|24834|24835|24836|24837|24838|24839|24840", "text": "Thyroxine-binding globulin quantitative trait locus" }, { - "baseId": "24823", + "upstreamId": "24823", "text": "Thyroxine-binding globulin, variant A" }, { - "baseId": "24823", + "upstreamId": "24823", "text": "Thyroxine-binding globulin deficiency" }, { - "baseId": "24824", + "upstreamId": "24824", "text": "Thyroxine-binding globulin, variant P" }, { - "baseId": "24825", + "upstreamId": "24825", "text": "Thyroxine-binding globulin, slow" }, { - "baseId": "24826|24829", + "upstreamId": "24826|24829", "text": "Thyroxine-binding globulin deficiency, partial" }, { - "baseId": "24831", + "upstreamId": "24831", "text": "Thyroxine-binding globulin, Chicago" }, { - "baseId": "24841|24842|24843|24843|24844|24845|24845|24846|24846|24847|24850|24852|24853|24854|24855|24858|24859|24862|24862|24864|24865|24866|24868|24868|24869|24869|24871|24876|24877|24878|24881|24887|24889|24889|24891|24892|24893|24895|24896|24897|24898|165510|165511|165512|165513|209141|213671|257865|260337|263527|265111|265114|265116|265118|265118|361102|390492|411438|411442|430877|430878|430883|430886|430887|442482|470430|470905|470914|470914|471654|471664|471928|471931|471937|471938|471939|471940|471942|471946|471947|471953|471954|471955|472174|472177|472178|472179|472181|472182|472183|472184|472185|485828|485829|485830|485831|485832|485833|485834|485835|485836|485837|485838|485839|485840|485841|485842|485843|485844|485845|485846|485847|485848|485849|485850|485850|485851|485852|485853|485854|485854|485855|485856|485857|485858|513400|534907|535186|535187|535188|538629|573952|573957|573960|574823|574825|575439|578598|578599|626300|650144|650145|650146|650147|650148|650149|650150|650151|650152|650153|650154|650155|650156|650157|653466|792488|792489|792592|850210|850211|850212|850213|850214|850215|850216|850217|850218|903655|929792|929793|929794|929795|939658|939659|939660|951861|951862|951863|959331|963207|967241|971226|975668|977309", + "upstreamId": "24841|24842|24843|24843|24844|24845|24845|24846|24846|24847|24850|24852|24853|24854|24855|24858|24859|24862|24862|24864|24865|24866|24868|24868|24869|24869|24871|24876|24877|24878|24881|24887|24889|24889|24891|24892|24893|24895|24896|24897|24898|165510|165511|165512|165513|209141|213671|257865|260337|263527|265111|265114|265116|265118|265118|361102|390492|411438|411442|430877|430878|430883|430886|430887|442482|470430|470905|470914|470914|471654|471664|471928|471931|471937|471938|471939|471940|471942|471946|471947|471953|471954|471955|472174|472177|472178|472179|472181|472182|472183|472184|472185|485828|485829|485830|485831|485832|485833|485834|485835|485836|485837|485838|485839|485840|485841|485842|485843|485844|485845|485846|485847|485848|485849|485850|485850|485851|485852|485853|485854|485854|485855|485856|485857|485858|513400|534907|535186|535187|535188|538629|573952|573957|573960|574823|574825|575439|578598|578599|626300|650144|650145|650146|650147|650148|650149|650150|650151|650152|650153|650154|650155|650156|650157|653466|792488|792489|792592|850210|850211|850212|850213|850214|850215|850216|850217|850218|903655|929792|929793|929794|929795|939658|939659|939660|951861|951862|951863|959331|963207|967241|971226|975668|977309", "text": "Androgen resistance syndrome" }, { - "baseId": "24843|24845|24846|24852|24857|24859|24862|24868|24869|24889|209141|260337|265114|265118|390492|404864|404865|404866|404867|411438|411442|430877|430878|430883|470430|470905|470914|471654|471664|471928|471937|471938|471939|471940|471942|471947|471953|471954|471955|472174|472178|472179|472181|472184|472185|485850|485854|534907|535186|535187|535188|573952|573957|573960|574823|574825|575439|650144|650145|650146|650147|650148|650149|650150|650151|650152|650153|650154|650155|650156|650157|653466|850210|850211|850212|850213|850214|850215|850216|850217|850218|929792|929793|929794|929795|939658|939659|939660|951861|951862|951863|959331", + "upstreamId": "24843|24845|24846|24852|24857|24859|24862|24868|24869|24889|209141|260337|265114|265118|390492|404864|404865|404866|404867|411438|411442|430877|430878|430883|470430|470905|470914|471654|471664|471928|471937|471938|471939|471940|471942|471947|471953|471954|471955|472174|472178|472179|472181|472184|472185|485850|485854|534907|535186|535187|535188|573952|573957|573960|574823|574825|575439|650144|650145|650146|650147|650148|650149|650150|650151|650152|650153|650154|650155|650156|650157|653466|850210|850211|850212|850213|850214|850215|850216|850217|850218|929792|929793|929794|929795|939658|939659|939660|951861|951862|951863|959331", "text": "Kennedy disease" }, { - "baseId": "24845|24863|24879|213671|390492|578598", + "upstreamId": "24845|24863|24879|213671|390492|578598", "text": "Hypospadias 1, X-linked" }, { - "baseId": "24845|24849|24852|24859|24861|24862|24868|24869|24880|24883|24884|24885|24886|24890|24896|24899|24900|213671|265055|390492|442482", + "upstreamId": "24845|24849|24852|24859|24861|24862|24868|24869|24880|24883|24884|24885|24886|24890|24896|24899|24900|213671|265055|390492|442482", "text": "Partial androgen insensitivity syndrome" }, { - "baseId": "24867|578598", + "upstreamId": "24867|578598", "text": "Androgen insensitivity, partial, with breast cancer" }, { - "baseId": "24888|133488", + "upstreamId": "24888|133488", "text": "Prostate cancer susceptibility" }, { - "baseId": "24900|430423|653825|653826|653827|653828|653829", + "upstreamId": "24900|430423|653825|653826|653827|653828|653829", "text": "TAFRO syndrome" }, { - "baseId": "24901|33863|404853", + "upstreamId": "24901|33863|404853", "text": "X-linked dystonia-parkinsonism" }, { - "baseId": "24902|24903|24904|24905|971210", + "upstreamId": "24902|24903|24904|24905|971210", "text": "Mental retardation, X-linked 96" }, { - "baseId": "24906|50325|50326|50327|102257|135832|135833|143086|143087|191103|191292|196342|204011|204012|204013|204016|204020|204022|204027|204029|204031|209054|209058|247196|415788|470837|470838|470840|470844|470848|470858|471566|471570|471574|471578|471595|471598|471600|471602|471891|472158|472159|486787|488164|490839|534439|534823|534889|534938|534999|572502|573885|574220|575418|575419|575420|650075|650076|650077|685013|689513|689514|758516|758517|774073|800411|816013|850080|850081|850082|850083|850084|850085|850086|850087|850088|851972|920030|920452|920453|921222|929741|929742|929743|929744|929745|939606|939607|939608|940563|951810|951811|951812|959309|960384|960385|960987|963980", + "upstreamId": "24906|50325|50326|50327|102257|135832|135833|143086|143087|191103|191292|196342|204011|204012|204013|204016|204020|204022|204027|204029|204031|209054|209058|247196|415788|470837|470838|470840|470844|470848|470858|471566|471570|471574|471578|471595|471598|471600|471602|471891|472158|472159|486787|488164|490839|534439|534823|534889|534938|534999|572502|573885|574220|575418|575419|575420|650075|650076|650077|685013|689513|689514|758516|758517|774073|800411|816013|850080|850081|850082|850083|850084|850085|850086|850087|850088|851972|920030|920452|920453|921222|929741|929742|929743|929744|929745|939606|939607|939608|940563|951810|951811|951812|959309|960384|960385|960987|963980", "text": "Epilepsy, X-linked, with variable learning disabilities and behavior disorders" }, { - "baseId": "24907", + "upstreamId": "24907", "text": "Mental retardation, X-linked, with isolated growth hormone deficiency" }, { - "baseId": "24908|24909|919979", + "upstreamId": "24908|24909|919979", "text": "Panhypopituitarism, X-linked" }, { - "baseId": "24911|45434|45435|45436|45437|76989|99002|189164|189165|189166|260556|260557|260558|260559|260560|260809|361265|384509|488077|623372|792518|921525|971233|980406|980407", + "upstreamId": "24911|45434|45435|45436|45437|76989|99002|189164|189165|189166|260556|260557|260558|260559|260560|260809|361265|384509|488077|623372|792518|921525|971233|980406|980407", "text": "Short stature, idiopathic, X-linked" }, { - "baseId": "24912|24913|24914|24915|24916|24917|24918|24921|24922|24923|38949|38950|76989|550853", + "upstreamId": "24912|24913|24914|24915|24916|24917|24918|24921|24922|24923|38949|38950|76989|550853", "text": "Leri-Weill dyschondrosteosis" }, { - "baseId": "24913|24918|24919|24920|24923|38949", + "upstreamId": "24913|24918|24919|24920|24923|38949", "text": "Langer mesomelic dysplasia syndrome" }, { - "baseId": "24924", + "upstreamId": "24924", "text": "SEROTONIN 5-HT-2C RECEPTOR POLYMORPHISM" }, { - "baseId": "24925|24926|24927|24928|24929|24930|24931|24932|24933|24934|24935|78963|104800|104813|104850|104869|104880|104887|104896|358692|358693|360557|537556|717750|729532|758416|758417|758418|773945|776904|786770|801469|851952|919998|919999|980974", + "upstreamId": "24925|24926|24927|24928|24929|24930|24931|24932|24933|24934|24935|78963|104800|104813|104850|104869|104880|104887|104896|358692|358693|360557|537556|717750|729532|758416|758417|758418|773945|776904|786770|801469|851952|919998|919999|980974", "text": "Juvenile retinoschisis" }, { - "baseId": "24934|104827|104828|104846|104849|104872|104884|800628", + "upstreamId": "24934|104827|104828|104846|104849|104872|104884|800628", "text": "Retinoschisis" }, { - "baseId": "24936|24937|24938|24939|24940|24941|24942|24943|24944|24945|24946|24947|24948|24949|24950|24959|24960|96865|104699|181395|192431|213666|265159|339211|339226|348750|348755|348757|352861|352864|418830|431819|431821|513165|551593|551595|551597|551599|551600|611982|611983|614094|792434|792457|792458|792459|800629|800631|800639|801477|802234|816012|856981|856982|856984|856985|856986|856987|856988|856989|856990|856991|856992|856993|856994|856995|856996|856997|856998|856999|857000|857001|857003|857004|857005|857006|857007|857008|857009|857010|857011|857012|857013|857014|857015|857016|857017|857018|857019|857021|857022|857023|857024|857025|857026|857027|857028|857029|857030|857031|857032|857033|857034|857035|857036|857037|857038|857061|860850|860857|920014|920015|920016|920450|920606|963400|963401|963402|963403|963404|963405|963406|963407|963408|963409|963410|963411|963412|963413|963414|963415|963416|963417|963418|963419|963420|963421|963422|963423|963424|963425|963426|963427|963428|963429|963430|963431|963432|963433|963434|964704|977317|977318|977319", + "upstreamId": "24936|24937|24938|24939|24940|24941|24942|24943|24944|24945|24946|24947|24948|24949|24950|24959|24960|96865|104699|181395|192431|213666|265159|339211|339226|348750|348755|348757|352861|352864|418830|431819|431821|513165|551593|551595|551597|551599|551600|611982|611983|614094|792434|792457|792458|792459|800629|800631|800639|801477|802234|816012|856981|856982|856984|856985|856986|856987|856988|856989|856990|856991|856992|856993|856994|856995|856996|856997|856998|856999|857000|857001|857003|857004|857005|857006|857007|857008|857009|857010|857011|857012|857013|857014|857015|857016|857017|857018|857019|857021|857022|857023|857024|857025|857026|857027|857028|857029|857030|857031|857032|857033|857034|857035|857036|857037|857038|857061|860850|860857|920014|920015|920016|920450|920606|963400|963401|963402|963403|963404|963405|963406|963407|963408|963409|963410|963411|963412|963413|963414|963415|963416|963417|963418|963419|963420|963421|963422|963423|963424|963425|963426|963427|963428|963429|963430|963431|963432|963433|963434|964704|977317|977318|977319", "text": "Retinitis pigmentosa 15" }, { - "baseId": "24949|24950|24953|24956|24957|104677|213666", + "upstreamId": "24949|24950|24953|24956|24957|104677|213666", "text": "Cone-rod dystrophy, X-linked 1" }, { - "baseId": "24951", + "upstreamId": "24951", "text": "Retinitis pigmentosa, X-linked, and sinorespiratory infections, with or without deafness" }, { - "baseId": "24952|213666", + "upstreamId": "24952|213666", "text": "Macular degeneration, X-linked atrophic" }, { - "baseId": "24954|24955|24958", + "upstreamId": "24954|24955|24958", "text": "Retinitis pigmentosa, X-linked, and sinorespiratory infections, with deafness" }, { - "baseId": "24961|38947|38948|430634|550375|580755|614102|792115|903701|903702|903703|903704|903705|964916", + "upstreamId": "24961|38947|38948|430634|550375|580755|614102|792115|903701|903702|903703|903704|903705|964916", "text": "Syndromic mental retardation, Nascimento type, X-linked" }, { - "baseId": "24962|24963|24964|24965|24966|257876|257880|339534|339538|339539|339541|349016|349017|349020|349021|349022|352423|352424|352427|352428|352429|352430|352431|352432|352441|352444|352445|352944|380120|426491|471723|508649|508697|573998|575448|614096|622498|650199|650200|650201|653543|821798|850258|850259|903177|903178|903179|903180|903181|903182|903183|903184|903185|903186|903187|903188|903189|903190|903191|903192|903193|903194|903195|903196|903197|903198|903199|903200|903201|903202|903203|903482|903656|920064|920065|929809|939677|951877|966352|971229", + "upstreamId": "24962|24963|24964|24965|24966|257876|257880|339534|339538|339539|339541|349016|349017|349020|349021|349022|352423|352424|352427|352428|352429|352430|352431|352432|352441|352444|352445|352944|380120|426491|471723|508649|508697|573998|575448|614096|622498|650199|650200|650201|653543|821798|850258|850259|903177|903178|903179|903180|903181|903182|903183|903184|903185|903186|903187|903188|903189|903190|903191|903192|903193|903194|903195|903196|903197|903198|903199|903200|903201|903202|903203|903482|903656|920064|920065|929809|939677|951877|966352|971229", "text": "Glycogen storage disease IXd" }, { - "baseId": "24967|24968|24969|24970|24971|24972|34175|99985|176313|338683|348278|348281|351934|351935|351938|351939|351942|351943|352709|352710|352711|439510|689320|792106|798778|902688|902689|902690|902691|902692|902693|902694|902695|902696", + "upstreamId": "24967|24968|24969|24970|24971|24972|34175|99985|176313|338683|348278|348281|351934|351935|351938|351939|351942|351943|352709|352710|352711|439510|689320|792106|798778|902688|902689|902690|902691|902692|902693|902694|902695|902696", "text": "Phosphoribosylpyrophosphate synthetase superactivity" }, { - "baseId": "24973|24974|106633|150246|150247|224828", + "upstreamId": "24973|24974|106633|150246|150247|224828", "text": "Charcot-Marie-Tooth disease, X-linked recessive, type 5" }, { - "baseId": "24974|25470|25471|25472|25474|25476|25477|25480|25481|25489|33933|33934|33936|33938|33939|34175|99985|140023|140025|140026|140027|140028|140029|165478|165480|167382|172155|176313|186290|186291|192187|211999|212000|212001|213497|213498|213499|213500|213501|213502|213890|213891|213892|213893|213894|222886|222887|231240|232146|232157|232161|243728|243739|243822|244166|245177|245178|245179|245180|245182|245184|245185|245187|245188|245189|338837|351935|352058|352942|360628|361105|377677|378903|379916|380117|404289|404290|404292|404296|404304|404306|404309|404439|404484|404594|404595|411470|411471|411472|411473|422511|433590|438582|442441|442442|442443|442446|442447|442450|442453|442454|442455|470975|470976|470989|470992|470996|470998|471000|471001|471256|471693|471708|471721|472031|472053|472198|472199|472200|472201|472202|507839|508250|508492|512743|534492|534507|534509|534600|534929|534951|534952|534953|534954|534956|534994|535064|535067|535069|535192|535193|535194|535195|537587|572564|572565|572569|572570|572572|572574|572576|572580|573989|573997|574881|574883|574885|575282|575325|575444|575445|575446|577977|585859|625455|625457|625474|625484|625488|625498|625499|625500|625501|625522|625531|625541|625542|625584|625598|625611|625648|625654|625681|625685|625704|649625|649669|649670|649671|649672|649673|649674|649675|649676|649677|649678|649679|649680|650193|650194|650195|650196|650197|653679|653735|653773|654959|656797|684944|685031|685032|689320|689321|689335|689550|690250|694766|694767|694768|717644|758294|760818|774195|774196|793893|800412|849543|849544|849603|849604|849605|849606|849607|849608|849609|849610|849611|849612|850241|850242|850243|850244|850245|850246|850247|850248|850249|850250|850251|850252|850253|850254|850255|850256|850257|902774|905514|929561|929562|929563|929802|929803|929804|929805|929806|929807|929808|939395|939423|939424|939425|939426|939672|939673|939674|939675|951590|951591|951592|951876|959163|959164|959165|959342|959343|959344", + "upstreamId": "24974|25470|25471|25472|25474|25476|25477|25480|25481|25489|33933|33934|33936|33938|33939|34175|99985|140023|140025|140026|140027|140028|140029|165478|165480|167382|172155|176313|186290|186291|192187|211999|212000|212001|213497|213498|213499|213500|213501|213502|213890|213891|213892|213893|213894|222886|222887|231240|232146|232157|232161|243728|243739|243822|244166|245177|245178|245179|245180|245182|245184|245185|245187|245188|245189|338837|351935|352058|352942|360628|361105|377677|378903|379916|380117|404289|404290|404292|404296|404304|404306|404309|404439|404484|404594|404595|411470|411471|411472|411473|422511|433590|438582|442441|442442|442443|442446|442447|442450|442453|442454|442455|470975|470976|470989|470992|470996|470998|471000|471001|471256|471693|471708|471721|472031|472053|472198|472199|472200|472201|472202|507839|508250|508492|512743|534492|534507|534509|534600|534929|534951|534952|534953|534954|534956|534994|535064|535067|535069|535192|535193|535194|535195|537587|572564|572565|572569|572570|572572|572574|572576|572580|573989|573997|574881|574883|574885|575282|575325|575444|575445|575446|577977|585859|625455|625457|625474|625484|625488|625498|625499|625500|625501|625522|625531|625541|625542|625584|625598|625611|625648|625654|625681|625685|625704|649625|649669|649670|649671|649672|649673|649674|649675|649676|649677|649678|649679|649680|650193|650194|650195|650196|650197|653679|653735|653773|654959|656797|684944|685031|685032|689320|689321|689335|689550|690250|694766|694767|694768|717644|758294|760818|774195|774196|793893|800412|849543|849544|849603|849604|849605|849606|849607|849608|849609|849610|849611|849612|850241|850242|850243|850244|850245|850246|850247|850248|850249|850250|850251|850252|850253|850254|850255|850256|850257|902774|905514|929561|929562|929563|929802|929803|929804|929805|929806|929807|929808|939395|939423|939424|939425|939426|939672|939673|939674|939675|951590|951591|951592|951876|959163|959164|959165|959342|959343|959344", "text": "Charcot-Marie-Tooth Neuropathy X" }, { - "baseId": "24975|24976|34173|34175|38944|99985|176313|224827|338683|348278|348281|351934|351935|351938|351939|351942|351943|352709|352710|352711|689320|789136|902688|902689|902690|902691|902692|902693|902694|902695|902696", + "upstreamId": "24975|24976|34173|34175|38944|99985|176313|224827|338683|348278|348281|351934|351935|351938|351939|351942|351943|352709|352710|352711|689320|789136|902688|902689|902690|902691|902692|902693|902694|902695|902696", "text": "Arts syndrome" }, { - "baseId": "24977|24978|24979|24980|34175|99985|150245|150246|176313|224827|338683|348278|348281|351935|351938|351939|351942|352709|352710|352711|689320|902688|902689|902690|902691|902692|902693|902694|902695|902696", + "upstreamId": "24977|24978|24979|24980|34175|99985|150245|150246|176313|224827|338683|348278|348281|351935|351938|351939|351942|352709|352710|352711|689320|902688|902689|902690|902691|902692|902693|902694|902695|902696", "text": "Deafness, X-linked 1" }, { - "baseId": "24981|24982|24983|24985|24986|24987|24988|24989|24990|24991|24992|24993|24994|24995|446789|486498|538518|792510|800322|961795", + "upstreamId": "24981|24982|24983|24985|24986|24987|24988|24989|24990|24991|24992|24993|24994|24995|446789|486498|538518|792510|800322|961795", "text": "Phosphoglycerate kinase 1 deficiency" }, { - "baseId": "24984", + "upstreamId": "24984", "text": "Phosphoglycerate kinase electrophoretic variant PGK II" }, { - "baseId": "24996|24997|24998|24999|25000|25001|25002|25003|25004|25005|49824|426413|471783|539098|961636", + "upstreamId": "24996|24997|24998|24999|25000|25001|25002|25003|25004|25005|49824|426413|471783|539098|961636", "text": "Paroxysmal nocturnal hemoglobinuria 1" }, { - "baseId": "25006|143124|195862|204578|204579|424619|430793|572493|573876|650053|650054|731470|743324|743325|743327|778524", + "upstreamId": "25006|143124|195862|204578|204579|424619|430793|572493|573876|650053|650054|731470|743324|743325|743327|778524", "text": "Brunner syndrome" }, { - "baseId": "25007", + "upstreamId": "25007", "text": "Antisocial behavior, susceptibility to" }, { - "baseId": "25007|361149", + "upstreamId": "25007|361149", "text": "Autism, severe" }, { - "baseId": "25008|25009|25010|25011|38942|99925|134550|181487|181492|208890|244025|438466|612431|792128|792129|961583|961584|961585", + "upstreamId": "25008|25009|25010|25011|38942|99925|134550|181487|181492|208890|244025|438466|612431|792128|792129|961583|961584|961585", "text": "Fragile X syndrome" }, { - "baseId": "25011|612430", + "upstreamId": "25011|612430", "text": "Fragile X tremor/ataxia syndrome" }, { - "baseId": "25011|166439|166440|166441|178175|612430", + "upstreamId": "25011|166439|166440|166441|178175|612430", "text": "Premature ovarian failure 1" }, { - "baseId": "25012|25013|25014|25015|25016|25017|25018|25019|25020|25021|25021|25022|25023|45103|45103|45104|53124|53582|53583|53590|53593|53594|53596|53597|53599|53600|53601|53603|53604|53605|53606|53609|53612|54739|141774|141775|176316|176318|176318|176319|176320|176322|176439|176440|176441|176443|176444|176734|178207|178762|179882|179884|179892|179893|179894|179894|179895|179899|179901|179906|179907|179911|231237|231245|231248|231249|243737|243738|259133|259136|259142|262413|338700|338709|338710|338713|338717|338721|338722|338724|338727|338736|338740|338742|338749|338751|348302|348304|348317|348321|348323|348325|348331|348332|348334|348335|348337|348341|348348|348349|348351|348353|348354|351976|351981|351982|351990|351991|351992|351993|351994|351995|351996|351997|352000|352001|352003|352005|352018|352019|352021|352717|352718|352719|352720|352721|352722|352723|352724|378857|378866|378957|379903|379904|404054|404057|404062|404085|404088|404092|404435|404436|404437|422409|446481|446483|446484|470451|470454|472048|472049|507816|510894|534395|534453|534456|534495|534515|535005|552241|572178|572180|573523|573527|574250|574251|574262|574264|574266|575322|623111|649649|649650|649651|649652|649653|649654|649655|649656|649657|653487|690249|695888|773724|773727|786689|821548|821549|849577|849578|849579|849580|849581|849582|849583|852459|852462|902707|902708|902709|902710|902711|902712|902713|902714|902715|902716|902717|902718|902719|902720|902721|902722|902723|902724|902725|902726|902727|902728|902729|902730|902731|902732|920434|929549|929550|929551|929552|929553|939410|939411|939412|939413|939414|939415|951580|951581|951582|959156|959157|959158|960358|960359", + "upstreamId": "25012|25013|25014|25015|25016|25017|25018|25019|25020|25021|25021|25022|25023|45103|45103|45104|53124|53582|53583|53590|53593|53594|53596|53597|53599|53600|53601|53603|53604|53605|53606|53609|53612|54739|141774|141775|176316|176318|176318|176319|176320|176322|176439|176440|176441|176443|176444|176734|178207|178762|179882|179884|179892|179893|179894|179894|179895|179899|179901|179906|179907|179911|231237|231245|231248|231249|243737|243738|259133|259136|259142|262413|338700|338709|338710|338713|338717|338721|338722|338724|338727|338736|338740|338742|338749|338751|348302|348304|348317|348321|348323|348325|348331|348332|348334|348335|348337|348341|348348|348349|348351|348353|348354|351976|351981|351982|351990|351991|351992|351993|351994|351995|351996|351997|352000|352001|352003|352005|352018|352019|352021|352717|352718|352719|352720|352721|352722|352723|352724|378857|378866|378957|379903|379904|404054|404057|404062|404085|404088|404092|404435|404436|404437|422409|446481|446483|446484|470451|470454|472048|472049|507816|510894|534395|534453|534456|534495|534515|535005|552241|572178|572180|573523|573527|574250|574251|574262|574264|574266|575322|623111|649649|649650|649651|649652|649653|649654|649655|649656|649657|653487|690249|695888|773724|773727|786689|821548|821549|849577|849578|849579|849580|849581|849582|849583|852459|852462|902707|902708|902709|902710|902711|902712|902713|902714|902715|902716|902717|902718|902719|902720|902721|902722|902723|902724|902725|902726|902727|902728|902729|902730|902731|902732|920434|929549|929550|929551|929552|929553|939410|939411|939412|939413|939414|939415|951580|951581|951582|959156|959157|959158|960358|960359", "text": "Danon disease" }, { - "baseId": "25024|25025|25026|25029|25030|25032|25034|25040|38941|195889|208929|227923|263869|411165|426418|553161|677467|792151|792152|792153|792154|792155|792156|816043|964901|970135|976680", + "upstreamId": "25024|25025|25026|25029|25030|25032|25034|25040|38941|195889|208929|227923|263869|411165|426418|553161|677467|792151|792152|792153|792154|792155|792156|816043|964901|970135|976680", "text": "X-linked hydrocephalus syndrome" }, { - "baseId": "25027|25028|25031|25032|25033|25034|538504|677467|969591|971188|976680|984267", + "upstreamId": "25027|25028|25031|25032|25033|25034|538504|677467|969591|971188|976680|984267", "text": "MASA syndrome" }, { - "baseId": "25029|170086|170088|208928|208929|430694", + "upstreamId": "25029|170086|170088|208928|208929|430694", "text": "Hydrocephalus due to aqueductal stenosis" }, { - "baseId": "25032|26446|70633|169564|421861|553412|578035|622834|964259|966700|966709|966710|966711|966720|966726|966727|966728|966729|966730|966731|966732|966736|976826", + "upstreamId": "25032|26446|70633|169564|421861|553412|578035|622834|964259|966700|966709|966710|966711|966720|966726|966727|966728|966729|966730|966731|966732|966736|976826", "text": "Hydrops fetalis" }, { - "baseId": "25035|25037|25038", + "upstreamId": "25035|25037|25038", "text": "Hydrocephalus, X-linked, with hirschsprung disease" }, { - "baseId": "25039", + "upstreamId": "25039", "text": "Hydrocephalus, X-linked, with congenital idiopathic intestinal pseudoobstruction" }, { - "baseId": "25040|208929|432227|677467|976680", + "upstreamId": "25040|208929|432227|677467|976680", "text": "Corpus callosum, partial agenesis of, X-linked" }, { - "baseId": "25041|25042|25043|25044|25045|25046|25047|25048|25049|25050|25051|25052|25053|25054|94235|150305|181584|226096|226097|227424|260344|362185|378676|380293|380294|417445|424680|430951|432348|471204|471776|471782|471784|472020|482267|508265|508443|508670|535108|550801|612201|653482|653796|678083|679937|679938|694953|694958|694960|694969|821801|821802|964638|964639", + "upstreamId": "25041|25042|25043|25044|25045|25046|25047|25048|25049|25050|25051|25052|25053|25054|94235|150305|181584|226096|226097|227424|260344|362185|378676|380293|380294|417445|424680|430951|432348|471204|471776|471782|471784|472020|482267|508265|508443|508670|535108|550801|612201|653482|653796|678083|679937|679938|694953|694958|694960|694969|821801|821802|964638|964639", "text": "Hypogonadotropic hypogonadism 1 with or without anosmia (Kallmann syndrome 1)" }, { - "baseId": "25055|25056|25057|25058|25059|25060|25061|25062|25063|25064|25065|25067|45047|45048|45049|45050|45051|45052|227109|227110|227110|227111|244011|260341|264921|339520|349013|352389|352390|352409|352937|352938|352939|360655|379370|379505|411458|446742|470931|470934|470940|471671|471672|471963|471964|472030|472189|495906|534940|534946|535057|535189|535190|574877|574879|575442|575443|610408|613425|621696|621697|650166|650167|650168|650169|650170|650171|650172|653470|729694|731485|743454|743455|758630|758631|758632|774184|774186|774187|774188|774189|786893|786894|786895|786897|786898|786899|788377|792494|806254|822234|850225|850226|850227|850228|850229|903169|929797|929798|939662|939663|939664|939665|939666|941315|951867|951868|951869|951870|951871|959334|959335|959336|959337|960989|969202|980110|980492", + "upstreamId": "25055|25056|25057|25058|25059|25060|25061|25062|25063|25064|25065|25067|45047|45048|45049|45050|45051|45052|227109|227110|227110|227111|244011|260341|264921|339520|349013|352389|352390|352409|352937|352938|352939|360655|379370|379505|411458|446742|470931|470934|470940|471671|471672|471963|471964|472030|472189|495906|534940|534946|535057|535189|535190|574877|574879|575442|575443|610408|613425|621696|621697|650166|650167|650168|650169|650170|650171|650172|653470|729694|731485|743454|743455|758630|758631|758632|774184|774186|774187|774188|774189|786893|786894|786895|786897|786898|786899|788377|792494|806254|822234|850225|850226|850227|850228|850229|903169|929797|929798|939662|939663|939664|939665|939666|941315|951867|951868|951869|951870|951871|959334|959335|959336|959337|960989|969202|980110|980492", "text": "X-linked severe combined immunodeficiency" }, { - "baseId": "25062|25066|227110|227110|227111|379505|411458|980492", + "upstreamId": "25062|25066|227110|227110|227111|379505|411458|980492", "text": "Combined immunodeficiency, X-linked" }, { - "baseId": "25068|25069|25070|25077|25080|25081|25085|25086|25098|25099|25103|25112|25113|25114|25115|25118|25120|25123|38940|38940|177770|266922|534373|534530|574292|649709|649710|649711|653299|653438|653634|821558|849663|849664|851938|853027|951616", + "upstreamId": "25068|25069|25070|25077|25080|25081|25085|25086|25098|25099|25103|25112|25113|25114|25115|25118|25120|25123|38940|38940|177770|266922|534373|534530|574292|649709|649710|649711|653299|653438|653634|821558|849663|849664|851938|853027|951616", "text": "Partial hypoxanthine-guanine phosphoribosyltransferase deficiency" }, { - "baseId": "25068", + "upstreamId": "25068", "text": "HPRT ANN ARBOR" }, { - "baseId": "25069", + "upstreamId": "25069", "text": "HPRT ARLINGTON" }, { - "baseId": "25070", + "upstreamId": "25070", "text": "HPRT ASHVILLE" }, { - "baseId": "25071|25072|25073|25074|25075|25076|25078|25079|25082|25083|25084|25085|25085|25086|25086|25087|25088|25089|25090|25091|25092|25093|25094|25095|25096|25097|25099|25099|25101|25102|25104|25105|25106|25107|25108|25109|25110|25111|25116|25117|25119|25121|25122|38940|177770|177770|192197|266922|424675|534373|534530|551342|574292|649709|649710|649711|653299|653438|653634|792123|821558|849663|849664|851938|853027|951616", + "upstreamId": "25071|25072|25073|25074|25075|25076|25078|25079|25082|25083|25084|25085|25085|25086|25086|25087|25088|25089|25090|25091|25092|25093|25094|25095|25096|25097|25099|25099|25101|25102|25104|25105|25106|25107|25108|25109|25110|25111|25116|25117|25119|25121|25122|38940|177770|177770|192197|266922|424675|534373|534530|551342|574292|649709|649710|649711|653299|653438|653634|792123|821558|849663|849664|851938|853027|951616", "text": "Lesch-Nyhan syndrome" }, { - "baseId": "25071", + "upstreamId": "25071", "text": "HPRT CHICAGO" }, { - "baseId": "25072", + "upstreamId": "25072", "text": "HPRT CONNERSVILLE" }, { - "baseId": "25073", + "upstreamId": "25073", "text": "HPRT DETROIT" }, { - "baseId": "25074", + "upstreamId": "25074", "text": "HPRT EVANSVILLE" }, { - "baseId": "25075", + "upstreamId": "25075", "text": "HPRT FLINT" }, { - "baseId": "25077", + "upstreamId": "25077", "text": "HPRT LONDON" }, { - "baseId": "25078", + "upstreamId": "25078", "text": "HPRT MICHIGAN" }, { - "baseId": "25079", + "upstreamId": "25079", "text": "HPRT MIDLAND" }, { - "baseId": "25080", + "upstreamId": "25080", "text": "HPRT MILWAUKEE" }, { - "baseId": "25081", + "upstreamId": "25081", "text": "HPRT MUNICH" }, { - "baseId": "25082", + "upstreamId": "25082", "text": "HPRT NEW BRITON" }, { - "baseId": "25083", + "upstreamId": "25083", "text": "HPRT NEW HAVEN" }, { - "baseId": "25084", + "upstreamId": "25084", "text": "HPRT YALE" }, { - "baseId": "25098", + "upstreamId": "25098", "text": "HPRT TORONTO" }, { - "baseId": "25099", + "upstreamId": "25099", "text": "HPRT FUJIMI" }, { - "baseId": "25100|38940", + "upstreamId": "25100|38940", "text": "Lesch-nyhan syndrome, neurologic variant" }, { - "baseId": "25100", + "upstreamId": "25100", "text": "HPRT MONTREAL" }, { - "baseId": "25113", + "upstreamId": "25113", "text": "HPRT URANGAN" }, { - "baseId": "25114", + "upstreamId": "25114", "text": "HPRT TOOWONG" }, { - "baseId": "25115", + "upstreamId": "25115", "text": "HPRT SWAN" }, { - "baseId": "25116", + "upstreamId": "25116", "text": "HPRT CHERMSIDE" }, { - "baseId": "25117", + "upstreamId": "25117", "text": "HPRT COORPAROO" }, { - "baseId": "25118", + "upstreamId": "25118", "text": "HPRT EDINBURGH" }, { - "baseId": "25119", + "upstreamId": "25119", "text": "HPRT TOKYO" }, { - "baseId": "25120", + "upstreamId": "25120", "text": "HPRT MOOSE JAW" }, { - "baseId": "25121", + "upstreamId": "25121", "text": "HPRT PARIS" }, { - "baseId": "25124|25125|25126|25127|25128|25129|25130|25131|25132|25133|25134|25135|25136|25137|25138|25139|25140|25141|25142|25144|25145|25146|25147|25148|25149|25150|25151|25152|25153|25154|25155|25156|25157|25158|25160|25161|25162|25163|25164|25165|25166|25167|25168|25169|25170|25171|25172|25173|25174|25175|25176|25177|25178|25179|25180|25181|25182|25183|25184|25185|25186|25187|25188|25189|25190|25191|25192|25193|25194|25195|25196|25197|25198|25199|25200|25201|25202|25203|25204|25205|25206|25207|25208|25209|25210|25211|25212|25213|25214|25215|25216|25217|25218|25219|25220|25221|25222|25223|25224|25225|25226|25227|25228|25229|25230|25231|25232|25233|25234|25235|25236|25237|25238|25239|25240|25241|25242|25243|25244|25245|25246|25247|25248|25249|25250|25251|25252|25253|25254|25255|25256|25257|25258|25259|25260|25261|25262|25263|25264|25265|25266|25267|25268|25269|25270|25271|25272|25273|25274|25275|25276|25277|25278|25279|25280|25281|25282|25283|25284|25285|25286|25287|25288|25289|25290|25291|25292|25293|25294|25295|25296|25297|25298|25299|25300|25301|25302|25303|25304|25305|25306|25307|25308|25309|25310|25311|25312|25313|25314|25315|25316|25317|25318|25319|25320|25321|25322|25323|25324|25325|25326|25327|25328|25329|25330|25331|25332|25333|25334|25335|25336|25337|25338|25339|25340|25341|25342|25343|25344|25345|25346|25347|25348|25349|25350|25351|25352|25353|25354|25355|25356|25357|25358|25359|25360|25361|25362|25363|25364|25365|25366|25367|25368|25369|25370|25371|25372|25373|25374|25375|25376|25377|25378|25379|25380|25381|25382|25383|25384|25385|25386|25387|25388|25389|25390|25391|25392|25612|25624|25641|25646|25650|25652|49420|49421|49422|49423|93036|213664|227420|257788|260943|339078|339079|339081|339082|339084|339085|348615|348617|348625|348627|352165|352166|352167|352168|352169|352803|352804|352805|352806|352807|352808|353915|353916|389210|433316|433317|433321|433322|433324|438478|481379|583136|610215|610226|610234|615663|615665|615667|615668|615669|615670|615672|615673|615674|615682|615699|615756|615757|615758|615759|615851|654965|689446|689448|788955|792174|792175|792176|792177|792178|792179|792180|792181|792182|800268|800269|800270|800271|800272|800273|800274|800275|800276|800277|800278|800279|800280|800281|800282|800283|800284|800285|800286|800287|800288|800289|800290|800291|800292|800293|800294|800295|800296|800297|800298|800299|800300|800301|800302|801223|860815|861047|902903|902904|902905|902906|902907|902908|902909|902910|902911|902912|902913|902914|902915|902916|902917|902918|902919|902920|902921|902922|902923|902924|902925|902926|902927|902928|902929|902930|902931|902932|902933|902934|918476|919994|962090|962091|962092|962093|962094|962095|962096|962097|962098|962099|962100|962101|962102|962103|962104|962105|962106|962109|962110|962111|967240|982302|982303|982304|982305|982306|982307|982308|982309|982310|982311|982312|982313|982314|982315|982316|982317|982318|982319|982320|982321|982322|982323|982324|982325|982326|982327|982328|982329|982330|982331|982332|982333|982334", + "upstreamId": "25124|25125|25126|25127|25128|25129|25130|25131|25132|25133|25134|25135|25136|25137|25138|25139|25140|25141|25142|25144|25145|25146|25147|25148|25149|25150|25151|25152|25153|25154|25155|25156|25157|25158|25160|25161|25162|25163|25164|25165|25166|25167|25168|25169|25170|25171|25172|25173|25174|25175|25176|25177|25178|25179|25180|25181|25182|25183|25184|25185|25186|25187|25188|25189|25190|25191|25192|25193|25194|25195|25196|25197|25198|25199|25200|25201|25202|25203|25204|25205|25206|25207|25208|25209|25210|25211|25212|25213|25214|25215|25216|25217|25218|25219|25220|25221|25222|25223|25224|25225|25226|25227|25228|25229|25230|25231|25232|25233|25234|25235|25236|25237|25238|25239|25240|25241|25242|25243|25244|25245|25246|25247|25248|25249|25250|25251|25252|25253|25254|25255|25256|25257|25258|25259|25260|25261|25262|25263|25264|25265|25266|25267|25268|25269|25270|25271|25272|25273|25274|25275|25276|25277|25278|25279|25280|25281|25282|25283|25284|25285|25286|25287|25288|25289|25290|25291|25292|25293|25294|25295|25296|25297|25298|25299|25300|25301|25302|25303|25304|25305|25306|25307|25308|25309|25310|25311|25312|25313|25314|25315|25316|25317|25318|25319|25320|25321|25322|25323|25324|25325|25326|25327|25328|25329|25330|25331|25332|25333|25334|25335|25336|25337|25338|25339|25340|25341|25342|25343|25344|25345|25346|25347|25348|25349|25350|25351|25352|25353|25354|25355|25356|25357|25358|25359|25360|25361|25362|25363|25364|25365|25366|25367|25368|25369|25370|25371|25372|25373|25374|25375|25376|25377|25378|25379|25380|25381|25382|25383|25384|25385|25386|25387|25388|25389|25390|25391|25392|25612|25624|25641|25646|25650|25652|49420|49421|49422|49423|93036|213664|227420|257788|260943|339078|339079|339081|339082|339084|339085|348615|348617|348625|348627|352165|352166|352167|352168|352169|352803|352804|352805|352806|352807|352808|353915|353916|389210|433316|433317|433321|433322|433324|438478|481379|583136|610215|610226|610234|615663|615665|615667|615668|615669|615670|615672|615673|615674|615682|615699|615756|615757|615758|615759|615851|654965|689446|689448|788955|792174|792175|792176|792177|792178|792179|792180|792181|792182|800268|800269|800270|800271|800272|800273|800274|800275|800276|800277|800278|800279|800280|800281|800282|800283|800284|800285|800286|800287|800288|800289|800290|800291|800292|800293|800294|800295|800296|800297|800298|800299|800300|800301|800302|801223|860815|861047|902903|902904|902905|902906|902907|902908|902909|902910|902911|902912|902913|902914|902915|902916|902917|902918|902919|902920|902921|902922|902923|902924|902925|902926|902927|902928|902929|902930|902931|902932|902933|902934|918476|919994|962090|962091|962092|962093|962094|962095|962096|962097|962098|962099|962100|962101|962102|962103|962104|962105|962106|962109|962110|962111|967240|982302|982303|982304|982305|982306|982307|982308|982309|982310|982311|982312|982313|982314|982315|982316|982317|982318|982319|982320|982321|982322|982323|982324|982325|982326|982327|982328|982329|982330|982331|982332|982333|982334", "text": "Hereditary factor VIII deficiency disease" }, { - "baseId": "25137|25150|25165|25216|25235|25256|25261|25271|25275|25284|25285|25292|25320|25354|25358|25366|25371|25603|25604|25605|25606|25607|25608|25609|25610|25611|25611|25612|25613|25614|25615|25616|25617|25618|25618|25619|25620|25621|25622|25623|25624|25625|25626|25626|25627|25628|25629|25631|25632|25634|25635|25636|25637|25638|25639|25639|25640|25641|25641|25642|25643|25644|25645|25646|25646|25647|25648|25649|25650|25651|25652|25653|25654|25654|25655|25656|25657|25658|25659|25660|25661|25662|25663|25664|25665|25666|25667|25668|25669|25670|25671|25672|25673|25674|25675|25676|25677|25678|25679|25680|25680|25681|25682|25686|25687|25688|25689|25690|25691|25693|25694|25695|25696|25697|25699|25701|25702|25703|25704|25705|25706|25707|97615|97615|213664|227419|227419|272487|272487|338968|338968|338973|338973|338978|338978|338980|338982|348532|348532|348533|348533|348544|348544|348545|348546|348547|348550|352093|352093|352094|352095|352777|352778|362218|362219|362220|433314|471322|471759|534874|573610|575339|610215|610226|615676|615677|615679|615681|615682|615683|615684|615685|615686|615687|615688|615690|615691|615692|615693|615694|615695|615696|615697|615698|615699|615700|615701|615702|615703|615704|615705|615706|615707|615708|615709|615710|615711|615712|615713|615762|615858|615859|649734|649735|653304|653623|653690|684952|684953|684955|684956|684957|684957|685484|689350|689351|689351|689353|689354|689356|689356|689357|694795|773781|773782|773783|786710|786712|792126|800214|800220|801219|801220|821564|849692|849693|849694|849695|852471|902830|902831|902832|902833|902834|939457|951629|962083|962084|962085|962086|962087|962088|962089|962108|980084|980085|980086|980087", + "upstreamId": "25137|25150|25165|25216|25235|25256|25261|25271|25275|25284|25285|25292|25320|25354|25358|25366|25371|25603|25604|25605|25606|25607|25608|25609|25610|25611|25611|25612|25613|25614|25615|25616|25617|25618|25618|25619|25620|25621|25622|25623|25624|25625|25626|25626|25627|25628|25629|25631|25632|25634|25635|25636|25637|25638|25639|25639|25640|25641|25641|25642|25643|25644|25645|25646|25646|25647|25648|25649|25650|25651|25652|25653|25654|25654|25655|25656|25657|25658|25659|25660|25661|25662|25663|25664|25665|25666|25667|25668|25669|25670|25671|25672|25673|25674|25675|25676|25677|25678|25679|25680|25680|25681|25682|25686|25687|25688|25689|25690|25691|25693|25694|25695|25696|25697|25699|25701|25702|25703|25704|25705|25706|25707|97615|97615|213664|227419|227419|272487|272487|338968|338968|338973|338973|338978|338978|338980|338982|348532|348532|348533|348533|348544|348544|348545|348546|348547|348550|352093|352093|352094|352095|352777|352778|362218|362219|362220|433314|471322|471759|534874|573610|575339|610215|610226|615676|615677|615679|615681|615682|615683|615684|615685|615686|615687|615688|615690|615691|615692|615693|615694|615695|615696|615697|615698|615699|615700|615701|615702|615703|615704|615705|615706|615707|615708|615709|615710|615711|615712|615713|615762|615858|615859|649734|649735|653304|653623|653690|684952|684953|684955|684956|684957|684957|685484|689350|689351|689351|689353|689354|689356|689356|689357|694795|773781|773782|773783|786710|786712|792126|800214|800220|801219|801220|821564|849692|849693|849694|849695|852471|902830|902831|902832|902833|902834|939457|951629|962083|962084|962085|962086|962087|962088|962089|962108|980084|980085|980086|980087", "text": "Hereditary factor IX deficiency disease" }, { - "baseId": "25143|25159", + "upstreamId": "25143|25159", "text": "FACTOR VIII POLYMORPHISM" }, { - "baseId": "25150", + "upstreamId": "25150", "text": "FACTOR VIII (OKAYAMA)" }, { - "baseId": "25153", + "upstreamId": "25153", "text": "FACTOR VIII (EAST HARTFORD)" }, { - "baseId": "25393|25394|176763|178250|178251|178254|190850|231306|231307|231342|231343|472233|472235|535216|535217|535219|535220|535221|535222|575464|575467|575469|575470|575471|575472|575475|623389|650287|650288|650289|650290|650291|650292|650293|650294|650295|650296|650297|650298|650299|650300|650301|650302|650303|717883|729745|729746|729747|743507|761007|774281|776976|780238|850350|850351|850352|850353|850354|850355|850356|850357|850358|850359|853066|853067|929842|929843|929844|929845|929846|939704|939705|939706|939707|939708|939709|951915|951916|951917|951918|951919|951920|959380|959381|959382|960992", + "upstreamId": "25393|25394|176763|178250|178251|178254|190850|231306|231307|231342|231343|472233|472235|535216|535217|535219|535220|535221|535222|575464|575467|575469|575470|575471|575472|575475|623389|650287|650288|650289|650290|650291|650292|650293|650294|650295|650296|650297|650298|650299|650300|650301|650302|650303|717883|729745|729746|729747|743507|761007|774281|776976|780238|850350|850351|850352|850353|850354|850355|850356|850357|850358|850359|853066|853067|929842|929843|929844|929845|929846|939704|939705|939706|939707|939708|939709|951915|951916|951917|951918|951919|951920|959380|959381|959382|960992", "text": "Surfactant metabolism dysfunction, pulmonary, 4" }, { - "baseId": "25395|25396|25397|25398|132679|195912|215613|225821|225850|377731|415737|424674|552242|552243|552244|626290|788948|792118|971175", + "upstreamId": "25395|25396|25397|25398|132679|195912|215613|225821|225850|377731|415737|424674|552242|552243|552244|626290|788948|792118|971175", "text": "Mental retardation, X-linked, syndromic, wu type" }, { - "baseId": "25399", + "upstreamId": "25399", "text": "G6PD A+" }, { - "baseId": "25399|25399|25399|25400|25400|25402|25402|25403|25406|25406|25407|25407|25409|25410|25411|25411|25419|25420|25421|25422|25425|25425|25427|25428|25428|25429|25430|25432|25433|25435|25436|25437|25438|25439|25440|25441|25442|25443|25444|25445|25446|25449|25450|25451|25453|25455|25456|25458|25461|26571|26572|26573|26573|26574|26575|99398|99400|99401|99404|190992|352163|352802|425278|430790|471838|472107|535115|572365|649893|649894|653781|694844|694845|729516|729517|773925|780232|786758|792172|792173|800262|849841|849842|849843|929633|951688|959209", + "upstreamId": "25399|25399|25399|25400|25400|25402|25402|25403|25406|25406|25407|25407|25409|25410|25411|25411|25419|25420|25421|25422|25425|25425|25427|25428|25428|25429|25430|25432|25433|25435|25436|25437|25438|25439|25440|25441|25442|25443|25444|25445|25446|25449|25450|25451|25453|25455|25456|25458|25461|26571|26572|26573|26573|26574|26575|99398|99400|99401|99404|190992|352163|352802|425278|430790|471838|472107|535115|572365|649893|649894|653781|694844|694845|729516|729517|773925|780232|786758|792172|792173|800262|849841|849842|849843|929633|951688|959209", "text": "Anemia, nonspherocytic hemolytic, due to G6PD deficiency" }, { - "baseId": "25399|25399|25400|25400|25401|25404|25405|25407|25411|25413|25419|25425|25426|25427|25428|25434|25461|99394|99398|99399|99401|99404|190992|339060|339062|339069|339073|352161|352162|352163|352798|352799|352800|352801|352802|786758|902892|902893|902894|902895|902896|902897|902898|902899|902900|902901|902902|903463|903464|903465|903466", + "upstreamId": "25399|25399|25400|25400|25401|25404|25405|25407|25411|25413|25419|25425|25426|25427|25428|25434|25461|99394|99398|99399|99401|99404|190992|339060|339062|339069|339073|352161|352162|352163|352798|352799|352800|352801|352802|786758|902892|902893|902894|902895|902896|902897|902898|902899|902900|902901|902902|903463|903464|903465|903466", "text": "Glucose 6 phosphate dehydrogenase deficiency" }, { - "baseId": "25399|94283|94284|94285|205806|424966|614100|792114|964897", + "upstreamId": "25399|94283|94284|94285|205806|424966|614100|792114|964897", "text": "Bone mineral density quantitative trait locus 18" }, { - "baseId": "25400", + "upstreamId": "25400", "text": "G6PD ASAHI" }, { - "baseId": "25400", + "upstreamId": "25400", "text": "chlorproguanil and dapsone response - Toxicity/ADR" }, { - "baseId": "25400|94337|204007", + "upstreamId": "25400|94337|204007", "text": "Parkinsonism with spasticity, X-linked" }, { - "baseId": "25402", + "upstreamId": "25402", "text": "G6PD CHATHAM" }, { - "baseId": "25403", + "upstreamId": "25403", "text": "G6PD ILESHA" }, { - "baseId": "25406", + "upstreamId": "25406", "text": "G6PD MAHIDOL" }, { - "baseId": "25407", + "upstreamId": "25407", "text": "G6PD MEDITERRANEAN" }, { - "baseId": "25407", + "upstreamId": "25407", "text": "G6PD SASSARI" }, { - "baseId": "25407", + "upstreamId": "25407", "text": "G6PD CAGLIARI" }, { - "baseId": "25407|26606", + "upstreamId": "25407|26606", "text": "Angioedema induced by ACE inhibitors, susceptibility to" }, { - "baseId": "25407|25425", + "upstreamId": "25407|25425", "text": "G6PD deficient hemolytic anemia" }, { - "baseId": "25407", + "upstreamId": "25407", "text": "Hemolytic anemia, G6PD deficient (favism)" }, { - "baseId": "25408", + "upstreamId": "25408", "text": "G6PD METAPONTO" }, { - "baseId": "25409", + "upstreamId": "25409", "text": "G6PD PORTICI" }, { - "baseId": "25409", + "upstreamId": "25409", "text": "G6PD NASHVILLE" }, { - "baseId": "25409", + "upstreamId": "25409", "text": "G6PD ANAHEIM" }, { - "baseId": "25410", + "upstreamId": "25410", "text": "G6PD SANTIAGO DE CUBA" }, { - "baseId": "25411", + "upstreamId": "25411", "text": "G6PD SEATTLE-LIKE" }, { - "baseId": "25411", + "upstreamId": "25411", "text": "G6PD MODENA" }, { - "baseId": "25412", + "upstreamId": "25412", "text": "G6PD HARILAOU" }, { - "baseId": "25414", + "upstreamId": "25414", "text": "G6PD IOWA" }, { - "baseId": "25414", + "upstreamId": "25414", "text": "G6PD IOWA CITY" }, { - "baseId": "25414", + "upstreamId": "25414", "text": "G6PD SPRINGFIELD" }, { - "baseId": "25414", + "upstreamId": "25414", "text": "G6PD WALTER REED" }, { - "baseId": "25415", + "upstreamId": "25415", "text": "G6PD BEVERLY HILLS" }, { - "baseId": "25416", + "upstreamId": "25416", "text": "G6PD TOMAH" }, { - "baseId": "25417", + "upstreamId": "25417", "text": "G6PD RIVERSIDE" }, { - "baseId": "25418", + "upstreamId": "25418", "text": "G6PD ANDALUS" }, { - "baseId": "25419", + "upstreamId": "25419", "text": "G6PD CANTON" }, { - "baseId": "25419", + "upstreamId": "25419", "text": "G6PD GIFU" }, { - "baseId": "25419", + "upstreamId": "25419", "text": "G6PD AGRIGENTO" }, { - "baseId": "25419", + "upstreamId": "25419", "text": "G6PD TAIWAN-HAKKA" }, { - "baseId": "25420", + "upstreamId": "25420", "text": "G6PD PUERTO LIMON" }, { - "baseId": "25421", + "upstreamId": "25421", "text": "G6PD MALAGA" }, { - "baseId": "25422", + "upstreamId": "25422", "text": "G6PD GASTONIA" }, { - "baseId": "25422", + "upstreamId": "25422", "text": "G6PD MARION" }, { - "baseId": "25422", + "upstreamId": "25422", "text": "G6PD MINNESOTA" }, { - "baseId": "25424", + "upstreamId": "25424", "text": "G6PD IERAPETRA" }, { - "baseId": "25425", + "upstreamId": "25425", "text": "G6PD VIANGCHAN" }, { - "baseId": "25425", + "upstreamId": "25425", "text": "G6PD JAMMU" }, { - "baseId": "25428", + "upstreamId": "25428", "text": "G6PD KAIPING" }, { - "baseId": "25428", + "upstreamId": "25428", "text": "G6PD ANANT" }, { - "baseId": "25428", + "upstreamId": "25428", "text": "G6PD DHON" }, { - "baseId": "25428", + "upstreamId": "25428", "text": "G6PD PETRICH-LIKE" }, { - "baseId": "25428", + "upstreamId": "25428", "text": "G6PD SAPPORO-LIKE" }, { - "baseId": "25429", + "upstreamId": "25429", "text": "G6PD LOMA LINDA" }, { - "baseId": "25430", + "upstreamId": "25430", "text": "G6PD COIMBRA" }, { - "baseId": "25432", + "upstreamId": "25432", "text": "G6PD TAIWAN-HAKKA 2" }, { - "baseId": "25433", + "upstreamId": "25433", "text": "G6PD SANTIAGO" }, { - "baseId": "25434", + "upstreamId": "25434", "text": "G6PD MEXICO CITY" }, { - "baseId": "25435", + "upstreamId": "25435", "text": "G6PD GUADALAJARA" }, { - "baseId": "25436", + "upstreamId": "25436", "text": "G6PD ALHAMBRA" }, { - "baseId": "25437", + "upstreamId": "25437", "text": "G6PD JAPAN" }, { - "baseId": "25438", + "upstreamId": "25438", "text": "G6PD PAWNEE" }, { - "baseId": "25439", + "upstreamId": "25439", "text": "G6PD SUNDERLAND" }, { - "baseId": "25440", + "upstreamId": "25440", "text": "G6PD KERALA-KALYAN" }, { - "baseId": "25440", + "upstreamId": "25440", "text": "G6PD KERALA" }, { - "baseId": "25440", + "upstreamId": "25440", "text": "G6PD KALYAN" }, { - "baseId": "25441", + "upstreamId": "25441", "text": "G6PD AURES" }, { - "baseId": "25442", + "upstreamId": "25442", "text": "G6PD GAOHE" }, { - "baseId": "25443", + "upstreamId": "25443", "text": "G6PD QUING YUAN" }, { - "baseId": "25444", + "upstreamId": "25444", "text": "G6PD MAHIDOL-LIKE" }, { - "baseId": "25445", + "upstreamId": "25445", "text": "G6PD ORISSA" }, { - "baseId": "25446", + "upstreamId": "25446", "text": "G6PD NANKANG" }, { - "baseId": "25448", + "upstreamId": "25448", "text": "G6PD NEAPOLIS" }, { - "baseId": "25449", + "upstreamId": "25449", "text": "G6PD SERRES" }, { - "baseId": "25451", + "upstreamId": "25451", "text": "G6PD AVEIRO" }, { - "baseId": "25453", + "upstreamId": "25453", "text": "G6PD REHOVOT" }, { - "baseId": "25454", + "upstreamId": "25454", "text": "G6PD SPLIT" }, { - "baseId": "25455", + "upstreamId": "25455", "text": "G6PD NAMORU" }, { - "baseId": "25456", + "upstreamId": "25456", "text": "G6PD NILGIRI" }, { - "baseId": "25459", + "upstreamId": "25459", "text": "G6PD ZURICH" }, { - "baseId": "25460", + "upstreamId": "25460", "text": "G6PD VARNSDORF" }, { - "baseId": "25461", + "upstreamId": "25461", "text": "G6PD COSENZA" }, { - "baseId": "25462|25466", + "upstreamId": "25462|25466", "text": "Dyserythropoietic anemia with thrombocytopenia" }, { - "baseId": "25462|25463|25464|25466|40607|166050|166051|166053|166054|166055|404581|471606|471610|472161|535011|535177|535178|575425|575426", + "upstreamId": "25462|25463|25464|25466|40607|166050|166051|166053|166054|166055|404581|471606|471610|472161|535011|535177|535178|575425|575426", "text": "GATA-1-related thrombocytopenia with dyserythropoiesis" }, { - "baseId": "25463|25464", + "upstreamId": "25463|25464", "text": "Thrombocytopenia, X-linked, without dyserythropoietic anemia" }, { - "baseId": "25465", + "upstreamId": "25465", "text": "Leukemia, megakaryoblastic, of Down syndrome" }, { - "baseId": "25467|40608|471610", + "upstreamId": "25467|40608|471610", "text": "Thrombocytopenia, platelet dysfunction, hemolysis, and imbalanced globin synthesis" }, { - "baseId": "25468|138312|138319|183028|215048|215049|215050|215051|215052|215053|215054|215055|362916|362992|362993|362994|362995|581224|611996", + "upstreamId": "25468|138312|138319|183028|215048|215049|215050|215051|215052|215053|215054|215055|362916|362992|362993|362994|362995|581224|611996", "text": "Acute megakaryoblastic leukemia" }, { - "baseId": "25470|25471|25472|25473|25474|25475|25476|25477|25478|25479|25480|25481|25482|25483|25484|25485|25486|25487|25488|25489|25490|33931|33932|33933|33934|33935|33936|33937|33938|33939|102962|165478|165479|165480|165481|186291|192187|213498|213502|213890|213891|213892|213893|213894|222886|244167|245177|339521|339522|352410|352422|352940|352941|352942|361106|404289|442441|470992|512742|534929|573997|609158|609184|625477|625569|625656|679697|792497|798821|903170|903171|903172|903173|903174|903175|903176|961022|964631", + "upstreamId": "25470|25471|25472|25473|25474|25475|25476|25477|25478|25479|25480|25481|25482|25483|25484|25485|25486|25487|25488|25489|25490|33931|33932|33933|33934|33935|33936|33937|33938|33939|102962|165478|165479|165480|165481|186291|192187|213498|213502|213890|213891|213892|213893|213894|222886|244167|245177|339521|339522|352410|352422|352940|352941|352942|361106|404289|442441|470992|512742|534929|573997|609158|609184|625477|625569|625656|679697|792497|798821|903170|903171|903172|903173|903174|903175|903176|961022|964631", "text": "Charcot-Marie-Tooth Neuropathy X Type 1" }, { - "baseId": "25492|25493|25494|25495|25496|25497|25499|25501|25502|25504|25505|25506|29396|35546|35549|35550|35551|35552|35553|35554|35555|35556|35557|35559|35561|35563|35567|35569|35570|35571|35572|35573|35574|35575|35578|35579|35580|35582|35583|35584|35585|35586|35587|35589|35590|35591|35592|35593|35594|35596|35597|35598|35599|35601|35602|35604|35605|35606|35607|35608|35609|35610|35611|35612|35616|35617|35618|35619|35620|35621|35623|35625|35626|35627|35628|35629|35630|35632|35633|35634|35635|35636|35637|35638|35639|35641|35642|35643|35644|35645|35647|35648|35649|35650|35651|35652|35653|35654|35655|35657|35658|35660|35661|35662|35663|35664|35665|35666|35668|35669|35670|35671|35674|35675|35676|35677|35678|35679|35680|35681|35682|35683|35684|35685|35686|35687|35689|35690|35691|35692|35693|35694|35695|35696|35697|35698|35699|35700|35701|35702|35704|35705|35706|35707|35708|35709|35710|35711|35712|35713|35714|35715|35716|35717|35718|35719|35720|35721|35722|35724|35725|35726|35727|35728|35729|35731|35733|35734|35736|35738|35739|35740|35742|35744|35745|35746|35747|35748|35749|35750|35751|35753|35754|35755|35756|35757|35758|35759|35760|35761|35762|35763|35765|35766|35767|35768|35769|35770|35771|35772|35773|35774|35775|35776|35777|35778|35779|35780|35781|35782|35783|35784|35785|35786|35787|35788|35789|35790|35791|35792|35793|35794|35795|35796|35797|35798|35799|35800|35801|35802|35803|35804|35805|35807|35808|35809|35810|35811|35812|35813|35814|35815|35816|35818|35819|35820|35821|35822|35823|35824|35825|35826|35827|35828|35829|35830|35831|35832|35833|35834|35835|35836|35837|35838|35839|35840|35841|35842|35843|35844|35845|35846|35847|35848|35850|35851|35852|35853|35854|35855|35856|35858|35859|35860|35861|35862|35866|35867|35868|35870|35871|35872|35875|35876|35877|35878|35879|35882|35884|35885|35886|35888|35889|35890|35891|35893|35895|35896|35897|35898|35899|35900|35902|35903|35904|35905|35906|35908|35909|35911|35914|35915|35916|35917|35920|35921|35923|35924|35925|35926|35928|35929|35931|35932|35933|35934|35935|35936|35937|35939|35940|35941|35942|35943|35944|35945|35946|35947|35948|35949|35951|35953|35954|35955|35956|35957|35958|35959|35962|35963|35964|35965|35967|35968|35969|35971|35973|35974|35975|35977|35978|35979|35981|35983|35984|35986|35987|35988|35989|35990|35991|35992|35993|35995|35996|35997|35998|35999|36000|36002|36003|36004|36006|36007|36008|36009|36010|36011|36012|36013|36014|36017|36018|36019|36020|36022|36023|36024|36025|36026|36030|36031|36032|36033|36034|36035|36037|36038|36039|36040|36041|36042|36043|36044|36047|36048|36049|36050|36052|36053|36054|36055|36057|36058|36059|36060|36061|36062|36063|36064|36065|36066|36067|36068|36070|36072|36073|36074|36075|36080|36081|36083|36084|36086|36089|36090|36091|36092|36093|36094|36095|36096|36097|36098|36099|36101|36102|36103|36104|36106|36107|36108|36109|36110|36111|36112|36113|36114|36115|36116|36117|36118|36120|36121|36123|36124|36126|36127|36129|36130|36132|36133|36134|47346|47347|47348|47351|47352|47353|47354|47356|47357|47359|47360|47361|47362|47363|47364|47365|47366|47367|47368|47369|47370|47371|47372|47373|47374|47375|47376|47377|47378|47379|47381|47382|47384|47387|47388|47389|47390|47391|47393|47394|189115|193020|205798|223755|223756|223757|223758|223759|223760|243893|257736|257739|260805|260806|260807|260808|354184|354185|384505|384506|384507|418976|422402|424442|426396|426397|426753|432344|432345|432346|433302|438462|439581|440657|446461|446463|513150|513151|513152|513153|513154|513155|513156|513157|513158|513159|513160|513161|513162|551799|553587|553601|553604|577917|577924|578004|578036|578037|578038|578039|578040|578041|578042|578043|578045|578046|578047|578048|578049|578050|578051|578052|578053|578054|578055|578056|578057|578058|578059|578060|578061|578062|578063|578064|578065|578066|578067|578068|578069|578070|578071|578072|578073|578074|578075|578076|578078|578079|578080|578081|578082|578083|578084|578085|578086|578087|578088|578089|578090|578091|578092|578093|578095|578096|578097|578098|578099|578100|578101|578102|578103|578104|578105|578106|578107|578108|578109|578110|578111|578112|578113|578114|578115|578116|578117|578118|578119|578120|578121|578122|578123|578124|578125|578126|578127|578128|578129|578130|578131|578132|578133|578134|578135|578136|578137|578138|578139|578140|578141|578142|578143|578144|578145|578146|578147|578148|578150|578151|578152|578154|578156|578157|578158|578159|578160|578161|578162|578163|578164|578165|578166|578167|578168|578169|578171|578172|578173|578174|578175|578176|578177|578178|578179|578180|578181|578182|578183|578184|578185|578186|578187|578188|578189|578190|578191|578192|578193|578194|578195|578196|578197|578198|578199|578200|578201|578202|578205|578206|578207|578208|578209|578210|578212|578213|578214|578215|578216|578217|578218|578219|578220|578221|578222|578223|578224|578225|578226|578227|578228|578229|578230|578231|578232|578233|578234|578235|578236|578237|578238|578239|578240|578243|578244|578245|578246|578247|578248|578249|578250|578251|578253|578254|578255|578256|578257|578258|578259|578260|578261|578262|578263|578264|578265|578266|578267|578268|578269|578270|578271|578272|578273|578274|578275|578276|578277|578278|578279|578280|578281|578282|578283|578284|578285|578286|578287|578288|578289|578290|578291|578292|578293|578294|578295|578296|578297|578298|578299|578300|578301|578302|578303|590341|590342|590343|590344|590345|590346|590347|590348|590349|590350|590351|590352|590353|590354|590355|590461|590474|611357|612112|612448|614099|622267|622927|623358|623359|623360|623361|623362|623363|623364|623365|624871|626419|654151|679522|680060|680061|695887|717593|792107|792108|792109|792110|792111|792112|792113|794269|798779|798780|798781|798782|798783|798784|798785|798786|798787|798788|798789|798790|798791|798792|798793|798794|798795|798796|798797|798798|798799|798800|800208|800209|800414|801558|818349|818350|818351|818352|818353|818354|818355|818356|818357|818358|818359|818360|818361|818362|818363|818364|818365|818366|818367|849552|857395|857659|858532|858533|858534|858535|858536|858537|858538|918475|919968|919969|919970|920433|961038|962805|962806|962807|962808|962809|962810|962811|962812|962813|962814|962815|962816|962817|962842|962843|962844|962845|962846|962847|962850|963379|963380|963381|963382|963383|963384|963385|963386|964565|971171|972373|972374|972375|972376|972377|972378|972379|972380|972381|972382|972383|972384|972385|972386|972387|972388|972389|972390|972391|972392|972393|972394|972395|972396|980079|980080|980081|980082|980083|980400|980401|982270|982271|982272|984011", + "upstreamId": "25492|25493|25494|25495|25496|25497|25499|25501|25502|25504|25505|25506|29396|35546|35549|35550|35551|35552|35553|35554|35555|35556|35557|35559|35561|35563|35567|35569|35570|35571|35572|35573|35574|35575|35578|35579|35580|35582|35583|35584|35585|35586|35587|35589|35590|35591|35592|35593|35594|35596|35597|35598|35599|35601|35602|35604|35605|35606|35607|35608|35609|35610|35611|35612|35616|35617|35618|35619|35620|35621|35623|35625|35626|35627|35628|35629|35630|35632|35633|35634|35635|35636|35637|35638|35639|35641|35642|35643|35644|35645|35647|35648|35649|35650|35651|35652|35653|35654|35655|35657|35658|35660|35661|35662|35663|35664|35665|35666|35668|35669|35670|35671|35674|35675|35676|35677|35678|35679|35680|35681|35682|35683|35684|35685|35686|35687|35689|35690|35691|35692|35693|35694|35695|35696|35697|35698|35699|35700|35701|35702|35704|35705|35706|35707|35708|35709|35710|35711|35712|35713|35714|35715|35716|35717|35718|35719|35720|35721|35722|35724|35725|35726|35727|35728|35729|35731|35733|35734|35736|35738|35739|35740|35742|35744|35745|35746|35747|35748|35749|35750|35751|35753|35754|35755|35756|35757|35758|35759|35760|35761|35762|35763|35765|35766|35767|35768|35769|35770|35771|35772|35773|35774|35775|35776|35777|35778|35779|35780|35781|35782|35783|35784|35785|35786|35787|35788|35789|35790|35791|35792|35793|35794|35795|35796|35797|35798|35799|35800|35801|35802|35803|35804|35805|35807|35808|35809|35810|35811|35812|35813|35814|35815|35816|35818|35819|35820|35821|35822|35823|35824|35825|35826|35827|35828|35829|35830|35831|35832|35833|35834|35835|35836|35837|35838|35839|35840|35841|35842|35843|35844|35845|35846|35847|35848|35850|35851|35852|35853|35854|35855|35856|35858|35859|35860|35861|35862|35866|35867|35868|35870|35871|35872|35875|35876|35877|35878|35879|35882|35884|35885|35886|35888|35889|35890|35891|35893|35895|35896|35897|35898|35899|35900|35902|35903|35904|35905|35906|35908|35909|35911|35914|35915|35916|35917|35920|35921|35923|35924|35925|35926|35928|35929|35931|35932|35933|35934|35935|35936|35937|35939|35940|35941|35942|35943|35944|35945|35946|35947|35948|35949|35951|35953|35954|35955|35956|35957|35958|35959|35962|35963|35964|35965|35967|35968|35969|35971|35973|35974|35975|35977|35978|35979|35981|35983|35984|35986|35987|35988|35989|35990|35991|35992|35993|35995|35996|35997|35998|35999|36000|36002|36003|36004|36006|36007|36008|36009|36010|36011|36012|36013|36014|36017|36018|36019|36020|36022|36023|36024|36025|36026|36030|36031|36032|36033|36034|36035|36037|36038|36039|36040|36041|36042|36043|36044|36047|36048|36049|36050|36052|36053|36054|36055|36057|36058|36059|36060|36061|36062|36063|36064|36065|36066|36067|36068|36070|36072|36073|36074|36075|36080|36081|36083|36084|36086|36089|36090|36091|36092|36093|36094|36095|36096|36097|36098|36099|36101|36102|36103|36104|36106|36107|36108|36109|36110|36111|36112|36113|36114|36115|36116|36117|36118|36120|36121|36123|36124|36126|36127|36129|36130|36132|36133|36134|47346|47347|47348|47351|47352|47353|47354|47356|47357|47359|47360|47361|47362|47363|47364|47365|47366|47367|47368|47369|47370|47371|47372|47373|47374|47375|47376|47377|47378|47379|47381|47382|47384|47387|47388|47389|47390|47391|47393|47394|189115|193020|205798|223755|223756|223757|223758|223759|223760|243893|257736|257739|260805|260806|260807|260808|354184|354185|384505|384506|384507|418976|422402|424442|426396|426397|426753|432344|432345|432346|433302|438462|439581|440657|446461|446463|513150|513151|513152|513153|513154|513155|513156|513157|513158|513159|513160|513161|513162|551799|553587|553601|553604|577917|577924|578004|578036|578037|578038|578039|578040|578041|578042|578043|578045|578046|578047|578048|578049|578050|578051|578052|578053|578054|578055|578056|578057|578058|578059|578060|578061|578062|578063|578064|578065|578066|578067|578068|578069|578070|578071|578072|578073|578074|578075|578076|578078|578079|578080|578081|578082|578083|578084|578085|578086|578087|578088|578089|578090|578091|578092|578093|578095|578096|578097|578098|578099|578100|578101|578102|578103|578104|578105|578106|578107|578108|578109|578110|578111|578112|578113|578114|578115|578116|578117|578118|578119|578120|578121|578122|578123|578124|578125|578126|578127|578128|578129|578130|578131|578132|578133|578134|578135|578136|578137|578138|578139|578140|578141|578142|578143|578144|578145|578146|578147|578148|578150|578151|578152|578154|578156|578157|578158|578159|578160|578161|578162|578163|578164|578165|578166|578167|578168|578169|578171|578172|578173|578174|578175|578176|578177|578178|578179|578180|578181|578182|578183|578184|578185|578186|578187|578188|578189|578190|578191|578192|578193|578194|578195|578196|578197|578198|578199|578200|578201|578202|578205|578206|578207|578208|578209|578210|578212|578213|578214|578215|578216|578217|578218|578219|578220|578221|578222|578223|578224|578225|578226|578227|578228|578229|578230|578231|578232|578233|578234|578235|578236|578237|578238|578239|578240|578243|578244|578245|578246|578247|578248|578249|578250|578251|578253|578254|578255|578256|578257|578258|578259|578260|578261|578262|578263|578264|578265|578266|578267|578268|578269|578270|578271|578272|578273|578274|578275|578276|578277|578278|578279|578280|578281|578282|578283|578284|578285|578286|578287|578288|578289|578290|578291|578292|578293|578294|578295|578296|578297|578298|578299|578300|578301|578302|578303|590341|590342|590343|590344|590345|590346|590347|590348|590349|590350|590351|590352|590353|590354|590355|590461|590474|611357|612112|612448|614099|622267|622927|623358|623359|623360|623361|623362|623363|623364|623365|624871|626419|654151|679522|680060|680061|695887|717593|792107|792108|792109|792110|792111|792112|792113|794269|798779|798780|798781|798782|798783|798784|798785|798786|798787|798788|798789|798790|798791|798792|798793|798794|798795|798796|798797|798798|798799|798800|800208|800209|800414|801558|818349|818350|818351|818352|818353|818354|818355|818356|818357|818358|818359|818360|818361|818362|818363|818364|818365|818366|818367|849552|857395|857659|858532|858533|858534|858535|858536|858537|858538|918475|919968|919969|919970|920433|961038|962805|962806|962807|962808|962809|962810|962811|962812|962813|962814|962815|962816|962817|962842|962843|962844|962845|962846|962847|962850|963379|963380|963381|963382|963383|963384|963385|963386|964565|971171|972373|972374|972375|972376|972377|972378|972379|972380|972381|972382|972383|972384|972385|972386|972387|972388|972389|972390|972391|972392|972393|972394|972395|972396|980079|980080|980081|980082|980083|980400|980401|982270|982271|982272|984011", "text": "Alport syndrome 1, X-linked recessive" }, { - "baseId": "25505|32448|32523|32531|189115|190092|215249|227237|250583|250584|250586|250587|250588|250589|250590|250591|250592|250594|250595|250596|250597|250599|250600|250601|250602|250603|250605|250606|250607|250608|250609|250610|250611|250613|250614|250616|250617|250618|250619|250620|250621|250622|250624|250625|250626|250627|250628|250629|250631|250632|250635|250636|250637|250638|250639|250640|250641|250642|250643|250644|250646|250647|250648|250649|250650|250651|250652|250654|272152|284955|284956|284962|284964|284980|284986|284991|284993|284998|285000|285004|285008|285010|285015|285018|285019|285021|285027|285030|285031|285033|285034|285035|285037|285051|285052|285057|285058|285060|285061|285063|285064|285070|285071|285076|285079|285080|285088|285089|285094|285097|285102|285103|285112|285115|285116|285124|285125|285126|285135|285136|285613|285614|285619|285620|285623|285634|285636|285665|285669|285670|285671|285672|285680|285681|285682|285686|285687|285688|285690|285694|285697|285698|285700|285710|285711|285713|285717|285718|285719|285721|285726|285727|285728|285730|285731|285743|285744|285745|285749|285750|285751|285763|285764|285772|285775|287958|287960|287961|287962|287966|287968|287969|287970|287975|287982|287994|287995|287996|287999|288001|288002|288003|288024|288025|288027|288028|288029|288036|288037|288041|288043|288048|288050|288056|288057|288058|288062|288064|288066|288072|288077|288078|288083|288084|288093|288102|288110|288112|288207|288223|288225|288226|288227|288239|288240|288241|288243|288244|288267|288268|288280|288281|288296|288299|288301|288304|288308|288309|288352|288365|288374|288375|288386|288403|288408|288409|288410|288411|288412|288414|288415|288420|288421|288424|288426|288446|288450|288457|288459|288460|288461|288464|288474|288475|288476|288479|288480|288484|288488|288490|288491|405643|405646|424890|440657|440670|440671|440673|440678|443176|443177|443179|443181|486961|490915|491213|491479|493402|493610|496225|496718|499552|499554|499804|499806|499956|536626|541884|541903|541925|541970|542004|542014|542034|553611|553629|576647|578248|584708|584926|586060|590241|622521|622948|654245|654246|654248|654249|654253|654259|654261|655429|658694|658695|697370|697371|719679|719682|719683|733227|733228|733229|733230|733233|733234|733237|733239|743891|743897|743902|747383|747385|747387|759153|762981|762990|762995|762996|762998|763001|763005|763011|763012|763014|774686|774710|774711|774745|774761|781196|781198|781199|781203|781204|781206|781207|781211|781218|781221|787098|787195|792967|795183|804846|818208|818211|821877|825794|825797|825810|883942|883943|883944|883945|883946|883947|883948|883949|883950|883951|883952|883953|883954|883955|883956|883957|883958|883959|883960|883961|883962|883963|883964|883965|883966|883967|883968|883969|883970|883971|883972|883973|883974|883975|883976|883977|883978|883979|883980|883981|883982|883983|883984|883985|883986|883987|883988|883989|883990|883991|883992|883993|883994|883995|883996|883997|883998|883999|884000|884001|884002|884003|884004|884005|884006|884007|884008|884009|884010|884011|884012|884013|884014|884015|884016|884017|884018|884019|884020|884021|884022|884023|884024|884025|884026|884027|884028|884029|884030|884031|884032|884033|884034|884035|884036|884037|884038|884039|884040|884041|884042|884043|884044|884045|884046|884047|884048|884049|884050|884051|884052|884053|884054|884055|884056|887284|887285|887286|887287|887288|887289|887290|887291|887292|887293|887294|887295|887296|887297|887298|887299|887300|887301|887302|887303|887304|887305|918504|918505|918509|918518|918519|918520|977688|977689|977690|977691|977692|977693|977694|977695|977696|977697|977698|977699|977700|977701|977702|977703|977704|977705", + "upstreamId": "25505|32448|32523|32531|189115|190092|215249|227237|250583|250584|250586|250587|250588|250589|250590|250591|250592|250594|250595|250596|250597|250599|250600|250601|250602|250603|250605|250606|250607|250608|250609|250610|250611|250613|250614|250616|250617|250618|250619|250620|250621|250622|250624|250625|250626|250627|250628|250629|250631|250632|250635|250636|250637|250638|250639|250640|250641|250642|250643|250644|250646|250647|250648|250649|250650|250651|250652|250654|272152|284955|284956|284962|284964|284980|284986|284991|284993|284998|285000|285004|285008|285010|285015|285018|285019|285021|285027|285030|285031|285033|285034|285035|285037|285051|285052|285057|285058|285060|285061|285063|285064|285070|285071|285076|285079|285080|285088|285089|285094|285097|285102|285103|285112|285115|285116|285124|285125|285126|285135|285136|285613|285614|285619|285620|285623|285634|285636|285665|285669|285670|285671|285672|285680|285681|285682|285686|285687|285688|285690|285694|285697|285698|285700|285710|285711|285713|285717|285718|285719|285721|285726|285727|285728|285730|285731|285743|285744|285745|285749|285750|285751|285763|285764|285772|285775|287958|287960|287961|287962|287966|287968|287969|287970|287975|287982|287994|287995|287996|287999|288001|288002|288003|288024|288025|288027|288028|288029|288036|288037|288041|288043|288048|288050|288056|288057|288058|288062|288064|288066|288072|288077|288078|288083|288084|288093|288102|288110|288112|288207|288223|288225|288226|288227|288239|288240|288241|288243|288244|288267|288268|288280|288281|288296|288299|288301|288304|288308|288309|288352|288365|288374|288375|288386|288403|288408|288409|288410|288411|288412|288414|288415|288420|288421|288424|288426|288446|288450|288457|288459|288460|288461|288464|288474|288475|288476|288479|288480|288484|288488|288490|288491|405643|405646|424890|440657|440670|440671|440673|440678|443176|443177|443179|443181|486961|490915|491213|491479|493402|493610|496225|496718|499552|499554|499804|499806|499956|536626|541884|541903|541925|541970|542004|542014|542034|553611|553629|576647|578248|584708|584926|586060|590241|622521|622948|654245|654246|654248|654249|654253|654259|654261|655429|658694|658695|697370|697371|719679|719682|719683|733227|733228|733229|733230|733233|733234|733237|733239|743891|743897|743902|747383|747385|747387|759153|762981|762990|762995|762996|762998|763001|763005|763011|763012|763014|774686|774710|774711|774745|774761|781196|781198|781199|781203|781204|781206|781207|781211|781218|781221|787098|787195|792967|795183|804846|818208|818211|821877|825794|825797|825810|883942|883943|883944|883945|883946|883947|883948|883949|883950|883951|883952|883953|883954|883955|883956|883957|883958|883959|883960|883961|883962|883963|883964|883965|883966|883967|883968|883969|883970|883971|883972|883973|883974|883975|883976|883977|883978|883979|883980|883981|883982|883983|883984|883985|883986|883987|883988|883989|883990|883991|883992|883993|883994|883995|883996|883997|883998|883999|884000|884001|884002|884003|884004|884005|884006|884007|884008|884009|884010|884011|884012|884013|884014|884015|884016|884017|884018|884019|884020|884021|884022|884023|884024|884025|884026|884027|884028|884029|884030|884031|884032|884033|884034|884035|884036|884037|884038|884039|884040|884041|884042|884043|884044|884045|884046|884047|884048|884049|884050|884051|884052|884053|884054|884055|884056|887284|887285|887286|887287|887288|887289|887290|887291|887292|887293|887294|887295|887296|887297|887298|887299|887300|887301|887302|887303|887304|887305|918504|918505|918509|918518|918519|918520|977688|977689|977690|977691|977692|977693|977694|977695|977696|977697|977698|977699|977700|977701|977702|977703|977704|977705", "text": "Alport syndrome" }, { - "baseId": "25507|25508|25509|25510|25514|25515|25516|25517|25518|25519|25520|25523|25524|49400|140054|140056|140057|140061|212022|212025|212026|212027|212028|212030|290283|290284|290285|291116|291118|291128|291136|291141|294419|294428|294431|294437|294438|294758|294768|294793|294827|294831|339502|339508|348990|348992|348994|348996|348999|349002|352379|352929|352930|352931|353648|434515|508348|903153|903154|903155|903156|903157|903158|903481", + "upstreamId": "25507|25508|25509|25510|25514|25515|25516|25517|25518|25519|25520|25523|25524|49400|140054|140056|140057|140061|212022|212025|212026|212027|212028|212030|290283|290284|290285|291116|291118|291128|291136|291141|294419|294428|294431|294437|294438|294758|294768|294793|294827|294831|339502|339508|348990|348992|348994|348996|348999|349002|352379|352929|352930|352931|353648|434515|508348|903153|903154|903155|903156|903157|903158|903481", "text": "Anemia, sideroblastic, 1" }, { - "baseId": "25511|25512", + "upstreamId": "25511|25512", "text": "Sideroblastic anemia 1, late-onset" }, { - "baseId": "25513", + "upstreamId": "25513", "text": "Anemia, hereditary sideroblastic 1, pyridoxine refractory" }, { - "baseId": "25521|25522|49400|75248|75249", + "upstreamId": "25521|25522|49400|75248|75249", "text": "Protoporphyria, erythropoietic, X-linked" }, { - "baseId": "25525|25526|25527|25528|25529|25530|25531|25532|25533|25534|25535|25536|25537|25540|98525|98526|98527|98530|192198|193394|195566|196156|222898|222900|222901|222902|222903|222904|222905|222906|222907|222908|222909|222910|222911|222912|222913|222914|222915|222916|222917|222918|222919|222920|222921|223658|223659|223660|223661|223662|223663|223664|223665|223666|223667|269097|271132|378928|413848|431004|431005|470358|470524|471335|471342|472073|513390|534493|534568|534573|534641|574329|574331|575344|580665|580668|580802|580807|580814|580816|580959|586929|613229|621679|621680|621681|625891|625892|625893|625894|625895|625896|625897|625898|625899|649743|649744|649745|653344|653624|653625|653691|689368|689369|694802|694804|706122|706123|706125|706126|706127|717673|717674|729447|729448|729449|743169|743170|743171|743172|758319|758320|758321|773826|773827|773830|773831|776857|778647|778699|792131|792132|800627|805047|821480|849703|849704|849705|849706|849707|849708|853030|857696|857697|929587|929588|929589|929590|939461|951632|959176|959177|959178|959179|965355|980088", + "upstreamId": "25525|25526|25527|25528|25529|25530|25531|25532|25533|25534|25535|25536|25537|25540|98525|98526|98527|98530|192198|193394|195566|196156|222898|222900|222901|222902|222903|222904|222905|222906|222907|222908|222909|222910|222911|222912|222913|222914|222915|222916|222917|222918|222919|222920|222921|223658|223659|223660|223661|223662|223663|223664|223665|223666|223667|269097|271132|378928|413848|431004|431005|470358|470524|471335|471342|472073|513390|534493|534568|534573|534641|574329|574331|575344|580665|580668|580802|580807|580814|580816|580959|586929|613229|621679|621680|621681|625891|625892|625893|625894|625895|625896|625897|625898|625899|649743|649744|649745|653344|653624|653625|653691|689368|689369|694802|694804|706122|706123|706125|706126|706127|717673|717674|729447|729448|729449|743169|743170|743171|743172|758319|758320|758321|773826|773827|773830|773831|776857|778647|778699|792131|792132|800627|805047|821480|849703|849704|849705|849706|849707|849708|853030|857696|857697|929587|929588|929589|929590|939461|951632|959176|959177|959178|959179|965355|980088", "text": "Mucopolysaccharidosis, MPS-II" }, { - "baseId": "25536|25538", + "upstreamId": "25536|25538", "text": "Mucopolysaccharidosis, type II, mild form" }, { - "baseId": "25537|25539", + "upstreamId": "25537|25539", "text": "Mucopolysaccharidosis, type II, severe form" }, { - "baseId": "25542|25544|25546|25547|442545", + "upstreamId": "25542|25544|25546|25547|442545", "text": "Cone monochromatism" }, { - "baseId": "25543", + "upstreamId": "25543", "text": "RED CONE POLYMORPHISM" }, { - "baseId": "25545", + "upstreamId": "25545", "text": "Protan defect" }, { - "baseId": "25547|25548|25549|25551|919984", + "upstreamId": "25547|25548|25549|25551|919984", "text": "Deuteranopia" }, { - "baseId": "25552", + "upstreamId": "25552", "text": "Cone dystrophy 5, X-linked" }, { - "baseId": "25553|25554|25555|25556|25557|25558|25559|25560|25562|38939|104522|171764|904074", + "upstreamId": "25553|25554|25555|25556|25557|25558|25559|25560|25562|38939|104522|171764|904074", "text": "Ocular albinism, type I" }, { - "baseId": "25561|25563|25564|611358|920075", + "upstreamId": "25561|25563|25564|611358|920075", "text": "Nystagmus 6, congenital, X-linked" }, { - "baseId": "25565|33006|38938|99929|133732|191365|217196|265456|426411|614105|792130|920437|963397|971183", + "upstreamId": "25565|33006|38938|99929|133732|191365|217196|265456|426411|614105|792130|920437|963397|971183", "text": "FRAXE" }, { - "baseId": "25566|25567|25568|25569|25570|25571|25572|25573|25574|25577|195873|205027|205339|205340|257794|257797|257798|257800|257801|257803|257804|257805|378058|378078|378089|379165|380013|439241|481444|492427|492524|508130|508133|508501|513163|513392|534696|534769|534775|534785|535123|573764|573768|574442|575285|575377|575378|575379|575380|584146|622490|626294|649913|649914|649915|649916|649917|649918|649919|649920|649921|649922|682741|682742|682743|682744|682745|682746|706185|729536|758422|792195|792196|792197|792198|792199|792200|798810|821579|849876|849877|849878|849879|851954|852486|852489|860822|920001|920002|929641|929642|929643|939518|939519|939520|940549|940550|951702|960979|961550|964703", + "upstreamId": "25566|25567|25568|25569|25570|25571|25572|25573|25574|25577|195873|205027|205339|205340|257794|257797|257798|257800|257801|257803|257804|257805|378058|378078|378089|379165|380013|439241|481444|492427|492524|508130|508133|508501|513163|513392|534696|534769|534775|534785|535123|573764|573768|574442|575285|575377|575378|575379|575380|584146|622490|626294|649913|649914|649915|649916|649917|649918|649919|649920|649921|649922|682741|682742|682743|682744|682745|682746|706185|729536|758422|792195|792196|792197|792198|792199|792200|798810|821579|849876|849877|849878|849879|851954|852486|852489|860822|920001|920002|929641|929642|929643|939518|939519|939520|940549|940550|951702|960979|961550|964703", "text": "Glycogen storage disease type IXa1" }, { - "baseId": "25572|25574|25575|25576|25577|25578|25579|25580", + "upstreamId": "25572|25574|25575|25576|25577|25578|25579|25580", "text": "Glycogen storage disease IXa2" }, { - "baseId": "25581|25582|192587|339086|339092|339097|339100|339103|348636|348637|348640|348643|348646|348654|352172|352177|352178|352179|352809|352810|352812|430743|902935|902936|902937|902938|902939|902940|902941|919995|919996", + "upstreamId": "25581|25582|192587|339086|339092|339097|339100|339103|348636|348637|348640|348643|348646|348654|352172|352177|352178|352179|352809|352810|352812|430743|902935|902936|902937|902938|902939|902940|902941|919995|919996", "text": "Mental retardation, X-linked 72" }, { - "baseId": "25583|25584|25585|25586|25587|25588|25589|25590|193605|578350|623367|800318|850066", + "upstreamId": "25583|25584|25585|25586|25587|25588|25589|25590|193605|578350|623367|800318|850066", "text": "Retinitis pigmentosa 2" }, { - "baseId": "25591|25592|25593|25594|25595|25596|185939|185940|185941|185942|613946|613986|613987|614160|626302|920460", + "upstreamId": "25591|25592|25593|25594|25595|25596|185939|185940|185941|185942|613946|613986|613987|614160|626302|920460", "text": "X-linked ichthyosis with steryl-sulfatase deficiency" }, { - "baseId": "25597|25598|25599|25600|25683|25684|25685", + "upstreamId": "25597|25598|25599|25600|25683|25684|25685", "text": "Hemophilia B Leyden" }, { - "baseId": "25601|25602|25680", + "upstreamId": "25601|25602|25680", "text": "FACTOR IX POLYMORPHISM" }, { - "baseId": "25611|25618|25626|25639|25641|25646|25654|25680|25707|97615|227419|272487|338968|338973|338978|348532|348533|348544|352093|471759|534874|573610|575339|649734|649735|653304|653623|653690|684952|684953|684955|684956|684957|685484|689350|689351|689353|689354|689356|689357|773781|773782|773783|786710|786712|816498|821564|849692|849693|849694|849695|852471|939457|951629", + "upstreamId": "25611|25618|25626|25639|25641|25646|25654|25680|25707|97615|227419|272487|338968|338973|338978|348532|348533|348544|352093|471759|534874|573610|575339|649734|649735|653304|653623|653690|684952|684953|684955|684956|684957|685484|689350|689351|689353|689354|689356|689357|773781|773782|773783|786710|786712|816498|821564|849692|849693|849694|849695|852471|939457|951629", "text": "Thrombophilia, X-linked, due to factor IX defect" }, { - "baseId": "25627", + "upstreamId": "25627", "text": "Deep venous thrombosis, protection against" }, { - "baseId": "25630|25633", + "upstreamId": "25630|25633", "text": "Hemophilia b(m)" }, { - "baseId": "25639", + "upstreamId": "25639", "text": "FACTOR IX, DNA POLYMORPHISM" }, { - "baseId": "25692", + "upstreamId": "25692", "text": "Hemophilia B Brandenburg" }, { - "baseId": "25698|25700", + "upstreamId": "25698|25700", "text": "Warfarin sensitivity, x-linked" }, { - "baseId": "25710|25711|25712|25713|25714", + "upstreamId": "25710|25711|25712|25713|25714", "text": "Syndactyly-telecanthus-anogenital and renal malformations syndrome" }, { - "baseId": "25715|25716|25717|102098|213670|227423|265043|361247|362599|362600|362601|362602|362603|362604|362605|362606|362607|362608|362609|362610|362611|362612|362613|362614|362615|379463|411426|512712|538515|552263|608875|615772|622496|678078|792480|798819|800321|816503|850200|858586|964625|964626|971218|971219|971220|971221", + "upstreamId": "25715|25716|25717|102098|213670|227423|265043|361247|362599|362600|362601|362602|362603|362604|362605|362606|362607|362608|362609|362610|362611|362612|362613|362614|362615|379463|411426|512712|538515|552263|608875|615772|622496|678078|792480|798819|800321|816503|850200|858586|964625|964626|971218|971219|971220|971221", "text": "Syndromic X-linked intellectual disability Turner type" }, { - "baseId": "25718|25719|25720|25721|25722|25724|25725|25726|25728|25729|25731|25732|25735|25736|25737|25738|177444|226404|237630|361098|800649", + "upstreamId": "25718|25719|25720|25721|25722|25724|25725|25726|25728|25729|25731|25732|25735|25736|25737|25738|177444|226404|237630|361098|800649", "text": "Atrophia bulborum hereditaria" }, { - "baseId": "25723|25727|25733|25734|513687", + "upstreamId": "25723|25727|25733|25734|513687", "text": "Familial exudative vitreoretinopathy, X-linked" }, { - "baseId": "25730", + "upstreamId": "25730", "text": "Exudative vitreoretinopathy, X-linked" }, { - "baseId": "25739|25740|25741|25742|244003|361152|480818|480819|679815|682677|802236|816511|972737|975661|983863", + "upstreamId": "25739|25740|25741|25742|244003|361152|480818|480819|679815|682677|802236|816511|972737|975661|983863", "text": "Focal dermal hypoplasia" }, { - "baseId": "25743|25744|25745|25746|25747|38934|45731|45732|137226|137240|432372|624063|717839|729670|792486|920049|963239|963240|963241|964073|964074", + "upstreamId": "25743|25744|25745|25746|25747|38934|45731|45732|137226|137240|432372|624063|717839|729670|792486|920049|963239|963240|963241|964073|964074", "text": "Osteopathia striata with cranial sclerosis" }, { - "baseId": "25748|25749|25750|25751|193633|225835|421144|470473|471250|471251|471686|471687|471688|471689|472051|472052|534472|534482|534485|534504|534598|535014|572196|574270|574272|574274|611441|649668|758284|758285|821475|822214|822215|849602|861156|919974|919975|929560|939421|939422|951589|959160|959161|959162|960362", + "upstreamId": "25748|25749|25750|25751|193633|225835|421144|470473|471250|471251|471686|471687|471688|471689|472051|472052|534472|534482|534485|534504|534598|535014|572196|574270|574272|574274|611441|649668|758284|758285|821475|822214|822215|849602|861156|919974|919975|929560|939421|939422|951589|959160|959161|959162|960362", "text": "Mental retardation, X-linked, syndromic, Raymond type" }, { - "baseId": "25752|25753|25754|25755|25756|25757|25758|25759|25761|25762|25763|25764|25765|25766|25767|25768|25769|25769|25770|25771|25772|25773|25774|25775|25776|25777|25778|25779|25780|25781|25782|25783|25784|25785|25786|25787|25788|25789|25791|25792|25793|25794|25795|25797|25798|25799|25800|25801|25804|25805|25806|25807|25807|25808|25809|25810|25813|38452|44944|51619|51621|51622|51623|51624|51625|51626|51627|51628|51629|51630|51634|51635|51636|98447|98450|98469|98472|98474|98477|98478|98482|165573|176805|176806|176808|177041|177172|177304|177748|178194|178194|178269|178286|178294|178306|179863|179865|179867|179868|179870|179872|179881|190221|192190|193387|194799|194800|195214|195560|195561|195562|195563|214012|214013|214014|214015|214016|214017|214018|214019|214020|214021|214022|214023|214024|214025|214026|214027|214028|214029|214030|214031|214032|214033|214034|214035|214036|214037|214038|214039|214040|214041|214042|214043|214044|214045|214046|214047|214048|214049|214050|214051|214052|214053|214054|215608|223790|223792|223795|223802|223804|223819|223822|223829|223834|223839|223842|223845|223862|223885|223886|223889|223894|223896|223898|223900|223927|223932|223935|223936|223938|223939|223944|223945|223952|223955|223998|224000|224036|224049|224054|224055|224083|224087|224089|224096|224099|224102|224112|224114|224119|224122|224123|224124|224135|224143|224147|224163|224164|224578|224579|236819|243726|243727|245172|245173|264797|265210|265915|268722|269807|271086|272545|274105|351933|358691|360625|377660|377668|378802|404055|404423|404424|404463|404465|439341|446453|446454|446455|471217|471218|471220|471225|471668|471670|472044|487981|488021|488025|488028|488029|488068|488069|488070|507744|508242|513676|514788|534430|534433|534463|534466|534984|534985|537031|549816|553425|572155|572157|573516|574245|575315|576191|576192|585239|587645|588605|619046|621661|621662|621663|621664|621665|621666|621667|621668|621669|621670|621671|621672|649616|649617|649618|649619|649620|653373|685475|694760|758203|792103|821542|849521|849522|849523|849524|849525|849526|849527|852957|858448|860761|905969|906113|906114|914974|914975|914976|914977|914978|914979|914980|914981|914982|914983|914984|914985|914986|914987|914988|914989|914990|914991|914992|914993|914994|914995|914996|914997|914998|914999|915000|915001|915002|916114|916694|916696|917335|917337|917338|917339|917340|917341|917342|917343|917344|917345|917346|917348|917351|917352|917353|917354|917571|921498|929531|929532|929533|929534|939389|939390|939391|941283|951562|951563|959148|963115|965870|969199|969200|970124|970127|972612|975850|977362|980204|980205|980206|980207|980398|980399|984009", + "upstreamId": "25752|25753|25754|25755|25756|25757|25758|25759|25761|25762|25763|25764|25765|25766|25767|25768|25769|25769|25770|25771|25772|25773|25774|25775|25776|25777|25778|25779|25780|25781|25782|25783|25784|25785|25786|25787|25788|25789|25791|25792|25793|25794|25795|25797|25798|25799|25800|25801|25804|25805|25806|25807|25807|25808|25809|25810|25813|38452|44944|51619|51621|51622|51623|51624|51625|51626|51627|51628|51629|51630|51634|51635|51636|98447|98450|98469|98472|98474|98477|98478|98482|165573|176805|176806|176808|177041|177172|177304|177748|178194|178194|178269|178286|178294|178306|179863|179865|179867|179868|179870|179872|179881|190221|192190|193387|194799|194800|195214|195560|195561|195562|195563|214012|214013|214014|214015|214016|214017|214018|214019|214020|214021|214022|214023|214024|214025|214026|214027|214028|214029|214030|214031|214032|214033|214034|214035|214036|214037|214038|214039|214040|214041|214042|214043|214044|214045|214046|214047|214048|214049|214050|214051|214052|214053|214054|215608|223790|223792|223795|223802|223804|223819|223822|223829|223834|223839|223842|223845|223862|223885|223886|223889|223894|223896|223898|223900|223927|223932|223935|223936|223938|223939|223944|223945|223952|223955|223998|224000|224036|224049|224054|224055|224083|224087|224089|224096|224099|224102|224112|224114|224119|224122|224123|224124|224135|224143|224147|224163|224164|224578|224579|236819|243726|243727|245172|245173|264797|265210|265915|268722|269807|271086|272545|274105|351933|358691|360625|377660|377668|378802|404055|404423|404424|404463|404465|439341|446453|446454|446455|471217|471218|471220|471225|471668|471670|472044|487981|488021|488025|488028|488029|488068|488069|488070|507744|508242|513676|514788|534430|534433|534463|534466|534984|534985|537031|549816|553425|572155|572157|573516|574245|575315|576191|576192|585239|587645|588605|619046|621661|621662|621663|621664|621665|621666|621667|621668|621669|621670|621671|621672|649616|649617|649618|649619|649620|653373|685475|694760|758203|792103|821542|849521|849522|849523|849524|849525|849526|849527|852957|858448|860761|905969|906113|906114|914974|914975|914976|914977|914978|914979|914980|914981|914982|914983|914984|914985|914986|914987|914988|914989|914990|914991|914992|914993|914994|914995|914996|914997|914998|914999|915000|915001|915002|916114|916694|916696|917335|917337|917338|917339|917340|917341|917342|917343|917344|917345|917346|917348|917351|917352|917353|917354|917571|921498|929531|929532|929533|929534|939389|939390|939391|941283|951562|951563|959148|963115|965870|969199|969200|970124|970127|972612|975850|977362|980204|980205|980206|980207|980398|980399|984009", "text": "Fabry disease" }, { - "baseId": "25754|25756|25760|25802|25803|25807", + "upstreamId": "25754|25756|25760|25802|25803|25807", "text": "Fabry disease, cardiac variant" }, { - "baseId": "25814|25815|101499|101500|135821|143026|143029|195723|196018|196290|203959|203960|203962|203965|203969|203973|203975|203977|208824|268445|377656|378782|404051|404052|404398|404420|470439|470442|471659|471663|472040|472041|534427|534567|534577|573507|575313|575314|580710|580733|583134|649589|649590|684925|776871|792098|821539|849506|849507|849508|903648|929526|929527|939381|939382|939383|959146", + "upstreamId": "25814|25815|101499|101500|135821|143026|143029|195723|196018|196290|203959|203960|203962|203965|203969|203973|203975|203977|208824|268445|377656|378782|404051|404052|404398|404420|470439|470442|471659|471663|472040|472041|534427|534567|534577|573507|575313|575314|580710|580733|583134|649589|649590|684925|776871|792098|821539|849506|849507|849508|903648|929526|929527|939381|939382|939383|959146", "text": "Rolandic epilepsy with mental retardation and speech dyspraxia, X-linked" }, { - "baseId": "25816|25817|25818|25819|25820|150141|384444|430637|430748|917754|961021|976520", + "upstreamId": "25816|25817|25818|25819|25820|150141|384444|430637|430748|917754|961021|976520", "text": "Pettigrew syndrome" }, { - "baseId": "25821|25822|25823|25824|25825|25826|25827|25828|25829|38931|38932|38933|190088|257750|257751|257752|257753|257754|338847|338848|338853|338863|338868|338876|338878|338882|348463|348466|348468|352061|352062|352063|352751|352752|352753|614104|729410|729411|745459|902778|902779|902780|902781|902782|902783|902784|902785|902786|902787|902788|902789|902790|903457|903458|964698", + "upstreamId": "25821|25822|25823|25824|25825|25826|25827|25828|25829|38931|38932|38933|190088|257750|257751|257752|257753|257754|338847|338848|338853|338863|338868|338876|338878|338882|348463|348466|348468|352061|352062|352063|352751|352752|352753|614104|729410|729411|745459|902778|902779|902780|902781|902782|902783|902784|902785|902786|902787|902788|902789|902790|903457|903458|964698", "text": "Infantile nystagmus, X-linked" }, { - "baseId": "25830|25831|25832|48172|48173|470465|649659|717622|849585|861669|939416|939417", + "upstreamId": "25830|25831|25832|48172|48173|470465|649659|717622|849585|861669|939416|939417", "text": "Polyagglutinable erythrocyte syndrome" }, { - "baseId": "25833|339629|339630|339631|339632|339634|349119|349120|349122|349124|349126|349130|349131|349133|349137|352464|352465|352466|352467|352468|352469|352470|352471|352472|352473|352975|352976|352977|352978|352979|352980|352981|352982|352983|352984|352985|352986|352987|620700|729725|745198|745426|903263|903264|903265|903266|903267|903268|903269|903270|903271|903272|903273|903274|903275", + "upstreamId": "25833|339629|339630|339631|339632|339634|349119|349120|349122|349124|349126|349130|349131|349133|349137|352464|352465|352466|352467|352468|352469|352470|352471|352472|352473|352975|352976|352977|352978|352979|352980|352981|352982|352983|352984|352985|352986|352987|620700|729725|745198|745426|903263|903264|903265|903266|903267|903268|903269|903270|903271|903272|903273|903274|903275", "text": "Premature ovarian failure 2b" }, { - "baseId": "25833|76339|133458|151128|152554|233445|238964|360884|360884|452897|486603|486604|486605|610437|610438|610439|610440|610441|610442|610443|610444|610445|610446|610447|610448|610449|610450|610451|610452|610453|610454|610455|610456|610457|610458|610459|610460|610461|610462|610463|610464|610465|610466|610467|610468|610469|610470|610471|610472|610473|610474|610475|610476|614158|798951|857360|857412|857413|857415|966618|969329", + "upstreamId": "25833|76339|133458|151128|152554|233445|238964|360884|360884|452897|486603|486604|486605|610437|610438|610439|610440|610441|610442|610443|610444|610445|610446|610447|610448|610449|610450|610451|610452|610453|610454|610455|610456|610457|610458|610459|610460|610461|610462|610463|610464|610465|610466|610467|610468|610469|610470|610471|610472|610473|610474|610475|610476|614158|798951|857360|857412|857413|857415|966618|969329", "text": "Premature ovarian insufficiency" }, { - "baseId": "25834|194486|404640|413833|508962|578596|622494|623368|626299|920039|971214|980404", + "upstreamId": "25834|194486|404640|413833|508962|578596|622494|623368|626299|920039|971214|980404", "text": "X-linked intellectual disability, Stocco dos Santos type" }, { - "baseId": "25836|25837|25838|25839|209132|361248|434695|539115|653919|920045|920046|972739", + "upstreamId": "25836|25837|25838|25839|209132|361248|434695|539115|653919|920045|920046|972739", "text": "Syndromic X-linked intellectual disability Siderius type" }, { - "baseId": "25840|101210|133935|133936|140166|140168|196272|204005|204006|204007|204007|204008|362040|380057|470799|470803|471558|534508|534816|774031|821791|850047|850048|850049|850050|857586|951790|959297", + "upstreamId": "25840|101210|133935|133936|140166|140168|196272|204005|204006|204007|204007|204008|362040|380057|470799|470803|471558|534508|534816|774031|821791|850047|850048|850049|850050|857586|951790|959297", "text": "Mental retardation, X-linked, syndromic, Hedera type" }, { - "baseId": "25841|25842|25843|102412|133980|192585|196081|209301|209307|213673|247209|339571|339572|339575|339580|339584|339591|339593|339599|339600|339601|339603|339611|349050|349051|349056|349057|349059|349062|349065|349067|349071|349072|349075|349082|349093|349101|349104|352448|352449|352450|352451|352452|352453|352454|352455|352456|352952|352953|352955|352956|352957|352958|352959|352960|352961|352962|352963|361256|553163|612340|614613|789392|792512|792513|805062|903216|903217|903218|903219|903220|903221|903222|903223|903224|903225|903226|903227|903228|903229|903230|903231|903232|903233|903234|903235|903236|903237|903238|903239|903240|903241|903242|903243|903244|903245|903246|903247|903248|903249|903487|903488|903489|903490|903491|903492|971232|976691", + "upstreamId": "25841|25842|25843|102412|133980|192585|196081|209301|209307|213673|247209|339571|339572|339575|339580|339584|339591|339593|339599|339600|339601|339603|339611|349050|349051|349056|349057|349059|349062|349065|349067|349071|349072|349075|349082|349093|349101|349104|352448|352449|352450|352451|352452|352453|352454|352455|352456|352952|352953|352955|352956|352957|352958|352959|352960|352961|352962|352963|361256|553163|612340|614613|789392|792512|792513|805062|903216|903217|903218|903219|903220|903221|903222|903223|903224|903225|903226|903227|903228|903229|903230|903231|903232|903233|903234|903235|903236|903237|903238|903239|903240|903241|903242|903243|903244|903245|903246|903247|903248|903249|903487|903488|903489|903490|903491|903492|971232|976691", "text": "Mental retardation, X-linked 93" }, { - "baseId": "25844|25845|25846|25847|25848|25849|25850|25851|38930|98783|98785|512558|513679|514789|538275|538276|538277|538278|538279|538280|538281|538282|538283|609027|677320|861662|961548|969760|977298", + "upstreamId": "25844|25845|25846|25847|25848|25849|25850|25851|38930|98783|98785|512558|513679|514789|538275|538276|538277|538278|538279|538280|538281|538282|538283|609027|677320|861662|961548|969760|977298", "text": "Opitz GBBB syndrome, type I" }, { - "baseId": "25852|25853|25854|25855|25856|25858|25859|25860|25861|25862|45334|45335|45336|45337|45338|45339|45340|192813|227421|227925|257806|264847|264860|264878|264990|264997|264998|265002|265078|265081|265088|265148|265152|265153|266010|271082|339116|339117|339123|339126|339127|348663|348667|348668|348671|352181|352182|352183|352184|352185|352186|352187|352813|352814|352815|352816|352817|352818|352819|352820|352821|352822|360620|378102|379204|411267|415766|422451|426451|426452|432106|432107|432108|432109|432110|432111|432112|432113|432114|432115|432116|432117|432118|432119|432120|432121|432122|432123|432124|432125|432126|432127|432128|432129|432130|432131|432132|432133|432134|432135|432136|432137|432138|432139|432140|432141|432142|432143|432144|432145|432146|432147|432148|432149|432150|432151|432152|432153|432154|432155|432156|432157|432158|432159|432160|432161|432162|432163|432164|432165|432166|432167|432168|432169|432170|432171|432172|432173|432174|432175|432176|432177|432179|432180|432181|432182|432183|432184|432185|432186|432187|432188|432189|432190|432191|432192|432193|432194|432195|432196|432197|432198|432199|442408|446613|490880|513164|576345|612170|612171|677468|731464|758434|786784|792205|792206|792207|792208|792209|792210|792211|792212|792213|792214|792215|792216|792217|792218|792219|792220|792221|792222|792223|792224|792225|792226|792227|792228|792229|792230|792231|792232|792233|792234|792235|792236|792237|792238|792239|792240|792241|792242|792243|792244|792245|792246|792247|792248|792249|818370|818371|818372|818373|818374|902986|902987|902988|902989|902990|902991|902992|902993|903468|903469|929646|965438|977390", + "upstreamId": "25852|25853|25854|25855|25856|25858|25859|25860|25861|25862|45334|45335|45336|45337|45338|45339|45340|192813|227421|227925|257806|264847|264860|264878|264990|264997|264998|265002|265078|265081|265088|265148|265152|265153|266010|271082|339116|339117|339123|339126|339127|348663|348667|348668|348671|352181|352182|352183|352184|352185|352186|352187|352813|352814|352815|352816|352817|352818|352819|352820|352821|352822|360620|378102|379204|411267|415766|422451|426451|426452|432106|432107|432108|432109|432110|432111|432112|432113|432114|432115|432116|432117|432118|432119|432120|432121|432122|432123|432124|432125|432126|432127|432128|432129|432130|432131|432132|432133|432134|432135|432136|432137|432138|432139|432140|432141|432142|432143|432144|432145|432146|432147|432148|432149|432150|432151|432152|432153|432154|432155|432156|432157|432158|432159|432160|432161|432162|432163|432164|432165|432166|432167|432168|432169|432170|432171|432172|432173|432174|432175|432176|432177|432179|432180|432181|432182|432183|432184|432185|432186|432187|432188|432189|432190|432191|432192|432193|432194|432195|432196|432197|432198|432199|442408|446613|490880|513164|576345|612170|612171|677468|731464|758434|786784|792205|792206|792207|792208|792209|792210|792211|792212|792213|792214|792215|792216|792217|792218|792219|792220|792221|792222|792223|792224|792225|792226|792227|792228|792229|792230|792231|792232|792233|792234|792235|792236|792237|792238|792239|792240|792241|792242|792243|792244|792245|792246|792247|792248|792249|818370|818371|818372|818373|818374|902986|902987|902988|902989|902990|902991|902992|902993|903468|903469|929646|965438|977390", "text": "Familial X-linked hypophosphatemic vitamin D refractory rickets" }, { - "baseId": "25863|25864|25865|25866|25867|25869|25870|25871|25872|25873|38929|100992|193550|226436|361249|481077|538315|538316|538317|538319|538320|538321|538516|682837|682838|792481|792482|792483|792484|798361|857660|920047|920456|971222", + "upstreamId": "25863|25864|25865|25866|25867|25869|25870|25871|25872|25873|38929|100992|193550|226436|361249|481077|538315|538316|538317|538319|538320|538321|538516|682837|682838|792481|792482|792483|792484|798361|857660|920047|920456|971222", "text": "Aarskog syndrome" }, { - "baseId": "25867", + "upstreamId": "25867", "text": "Syndromic X-linked mental retardation 16" }, { - "baseId": "25874|25875|25876|25877|25878|25879|25880|25881|25882|25883|25884|25885|25886|25887|25888|25889|25890|25891|25892|200712|257777|257778|257778|257779|257780|257781|257782|262272|263865|339043|339048|348595|348597|348599|348606|348607|352130|352132|352133|352146|352147|352792|352793|352794|361239|411518|432347|434690|438979|512609|729494|743213|743214|743215|743219|773877|792157|792158|792159|902871|902872|902873|902874|902875|902876|902877|902878|902879|902880|902881|902882|902883|902884|962818|963387|963388|969619|983816", + "upstreamId": "25874|25875|25876|25877|25878|25879|25880|25881|25882|25883|25884|25885|25886|25887|25888|25889|25890|25891|25892|200712|257777|257778|257778|257779|257780|257781|257782|262272|263865|339043|339048|348595|348597|348599|348606|348607|352130|352132|352133|352146|352147|352792|352793|352794|361239|411518|432347|434690|438979|512609|729494|743213|743214|743215|743219|773877|792157|792158|792159|902871|902872|902873|902874|902875|902876|902877|902878|902879|902880|902881|902882|902883|902884|962818|963387|963388|969619|983816", "text": "Nephrogenic diabetes insipidus, X-linked" }, { - "baseId": "25877|25892|32867|32869|32871|44358|44359|44360|44361|44401|44402|44403|44404|44405|44406|44407|44408|44409|44410|44411|44412|44413|254604|317493|331609|333087|441560|738689|738690|738691|753440|769168|769174|775850|979288", + "upstreamId": "25877|25892|32867|32869|32871|44358|44359|44360|44361|44401|44402|44403|44404|44405|44406|44407|44408|44409|44410|44411|44412|44413|254604|317493|331609|333087|441560|738689|738690|738691|753440|769168|769174|775850|979288", "text": "Nephrogenic diabetes insipidus" }, { - "baseId": "25893|25894|257778|434690", + "upstreamId": "25893|25894|257778|434690", "text": "Nephrogenic syndrome of inappropriate antidiuresis" }, { - "baseId": "25895|25896|25897|25898|25900|79587|79589|79590|79591|79592|79593|79594|79595|79596|79597|79598|79599|79600|79601|79602|79603|79605|79606|79607|79608|79609|79610|79611|79612|79613|79614|79615|79616|79617|98632|135296|135297|204258|204259|204260|204261|204262|204264|204278|204281|208866|265010|354269|470469|472050|492129|512586|534591|572191|572192|574268|575324|580763|585211|649663|649664|649665|649666|649667|653492|653687|653733|654142|677064|677065|717637|743141|773748|792121|818368|849600|849601|853026|861601|904883|929559|960361|972775", + "upstreamId": "25895|25896|25897|25898|25900|79587|79589|79590|79591|79592|79593|79594|79595|79596|79597|79598|79599|79600|79601|79602|79603|79605|79606|79607|79608|79609|79610|79611|79612|79613|79614|79615|79616|79617|98632|135296|135297|204258|204259|204260|204261|204262|204264|204278|204281|208866|265010|354269|470469|472050|492129|512586|534591|572191|572192|574268|575324|580763|585211|649663|649664|649665|649666|649667|653492|653687|653733|654142|677064|677065|717637|743141|773748|792121|818368|849600|849601|853026|861601|904883|929559|960361|972775", "text": "Lowe syndrome" }, { - "baseId": "25899|25900|38926|38927|38928|79588|79604|204279|204280|265010|539123|539165|649667|921248|963313|971177|971178", + "upstreamId": "25899|25900|38926|38927|38928|79588|79604|204279|204280|265010|539123|539165|649667|921248|963313|971177|971178", "text": "Dent disease type 2" }, { - "baseId": "25901|25903|25904|99463|131947|131948|131949|133666|134726|134728|134730|190332|191645|194880|205419|209101|209108|227679|264909|264918|273833|378441|378451|378452|378457|378466|378477|379317|379321|379449|379456|380077|380078|380082|380083|380084|380086|380087|384428|389192|411409|411411|411421|430836|430837|446696|446697|446698|446701|470880|471625|471626|471629|471633|471634|471637|471900|471903|471905|471908|471910|471913|472164|472165|495828|508598|508683|512701|513689|534387|534851|534852|534855|534856|534872|534881|534904|534905|534910|534911|534915|535032|535034|535036|535038|535040|535045|535046|535181|535182|535713|573913|573915|573921|573922|573923|574751|574803|574805|575431|575432|590809|590810|590811|611456|611471|611472|612123|650110|650111|650112|650113|650114|650115|650116|650117|650118|650119|650120|650121|650122|653790|677312|677473|694906|694907|706274|706275|717833|743393|745395|758559|758560|774111|774112|774113|774120|778527|786869|786873|792472|792473|792474|798346|800320|805131|805132|822229|822230|850168|850169|850170|850171|850172|850173|850174|850175|850176|850177|850178|850179|850180|850181|850182|850183|850184|850185|850186|850187|903653|904734|920040|920041|920042|929774|929775|929776|929777|929778|929779|929780|929781|939640|939641|939642|939643|939644|939645|939646|951852|951853|951854|959323|959324|959325|959326|959327|960390|963986|963987|964621|964622|967284|971217|972738|983656", + "upstreamId": "25901|25903|25904|99463|131947|131948|131949|133666|134726|134728|134730|190332|191645|194880|205419|209101|209108|227679|264909|264918|273833|378441|378451|378452|378457|378466|378477|379317|379321|379449|379456|380077|380078|380082|380083|380084|380086|380087|384428|389192|411409|411411|411421|430836|430837|446696|446697|446698|446701|470880|471625|471626|471629|471633|471634|471637|471900|471903|471905|471908|471910|471913|472164|472165|495828|508598|508683|512701|513689|534387|534851|534852|534855|534856|534872|534881|534904|534905|534910|534911|534915|535032|535034|535036|535038|535040|535045|535046|535181|535182|535713|573913|573915|573921|573922|573923|574751|574803|574805|575431|575432|590809|590810|590811|611456|611471|611472|612123|650110|650111|650112|650113|650114|650115|650116|650117|650118|650119|650120|650121|650122|653790|677312|677473|694906|694907|706274|706275|717833|743393|745395|758559|758560|774111|774112|774113|774120|778527|786869|786873|792472|792473|792474|798346|800320|805131|805132|822229|822230|850168|850169|850170|850171|850172|850173|850174|850175|850176|850177|850178|850179|850180|850181|850182|850183|850184|850185|850186|850187|903653|904734|920040|920041|920042|929774|929775|929776|929777|929778|929779|929780|929781|939640|939641|939642|939643|939644|939645|939646|951852|951853|951854|959323|959324|959325|959326|959327|960390|963986|963987|964621|964622|967284|971217|972738|983656", "text": "Mental retardation, X-linked 1" }, { - "baseId": "25902", + "upstreamId": "25902", "text": "Mental retardation, X-linked 18" }, { - "baseId": "25905|25906|25907|25908|25909|45729|45730|99372|194866|195603|245218|245222|257770|338984|338985|338987|338992|338998|339001|339005|348561|348562|348579|352098|352099|352102|352780|352781|352782|352783|352784|352785|352786|404139|404461|470515|471328|534596|553573|575340|678981|678982|678983|678985|678988|678989|678990|678991|678992|678993|678994|678996|678997|678998|678999|679000|679002|684959|902835|902836|902837|902838|902839|902840|902841|902842|902843|902844|902845|971182", + "upstreamId": "25905|25906|25907|25908|25909|45729|45730|99372|194866|195603|245218|245222|257770|338984|338985|338987|338992|338998|339001|339005|348561|348562|348579|352098|352099|352102|352780|352781|352782|352783|352784|352785|352786|404139|404461|470515|471328|534596|553573|575340|678981|678982|678983|678985|678988|678989|678990|678991|678992|678993|678994|678996|678997|678998|678999|679000|679002|684959|902835|902836|902837|902838|902839|902840|902841|902842|902843|902844|902845|971182", "text": "Fanconi anemia, complementation group B" }, { - "baseId": "25910|25911|25912|25913|25914|25915|25916|25917|25918|25919|25920|25921|25922|25923|25924|25925|25926|25927|25928|25929|25930|25932|98677|98678|98679|142349|142367|198647|205341|208994|212003|212004|212009|212010|212014|212015|212016|212019|212020|269240|361087|361241|361266|363794|379176|379177|379181|379278|411240|411241|424351|426447|439032|481436|481437|481438|481439|508137|508510|508511|508641|534786|535124|552254|552255|552256|552257|574444|581767|581779|581780|590462|624873|649923|649924|649925|649926|649927|649928|677311|729539|743274|745466|773951|773953|773954|773956|776966|786776|786777|786778|792201|792202|798811|805128|816501|821496|849880|849881|849882|849883|858658|902942|902943|902944|902945|902946|902947|902948|902949|902950|902951|902952|902953|902954|902955|902956|902957|902958|902959|902960|902961|902962|902963|902964|902965|902966|902967|902968|902969|902970|902971|902972|902973|902974|902975|902976|902977|902978|902979|902980|902981|902982|903467|920003|920443|920444|939521|951703|964591|971198|973048|975876|980752", + "upstreamId": "25910|25911|25912|25913|25914|25915|25916|25917|25918|25919|25920|25921|25922|25923|25924|25925|25926|25927|25928|25929|25930|25932|98677|98678|98679|142349|142367|198647|205341|208994|212003|212004|212009|212010|212014|212015|212016|212019|212020|269240|361087|361241|361266|363794|379176|379177|379181|379278|411240|411241|424351|426447|439032|481436|481437|481438|481439|508137|508510|508511|508641|534786|535124|552254|552255|552256|552257|574444|581767|581779|581780|590462|624873|649923|649924|649925|649926|649927|649928|677311|729539|743274|745466|773951|773953|773954|773956|776966|786776|786777|786778|792201|792202|798811|805128|816501|821496|849880|849881|849882|849883|858658|902942|902943|902944|902945|902946|902947|902948|902949|902950|902951|902952|902953|902954|902955|902956|902957|902958|902959|902960|902961|902962|902963|902964|902965|902966|902967|902968|902969|902970|902971|902972|902973|902974|902975|902976|902977|902978|902979|902980|902981|902982|903467|920003|920443|920444|939521|951703|964591|971198|973048|975876|980752", "text": "Pyruvate dehydrogenase E1-alpha deficiency" }, { - "baseId": "25924|98679|140795|140797|140798|140799|140800|140801|140803|140804|140805|140806|142351|200131|200139|200140|211018|212002|292521|292526|295908|295924|295936|301480|301484|301488|301489|301493|301494|301500|301501|301503|301504|304711|304712|304731|304734|304735|304737|304738|304739|304740|304742|304743|304744|304760|309367|309368|309370|309371|309499|309501|309502|309504|309505|320296|327354|353651|353804|368842|488040|501526|514795|566277|615914|649923|734259|743274|743962|765983|786778|849883|897233|897234|897235|897236|897237|897238|897239|897240|897241|897242|897243|897244|897245|897246|897247|897248|897249|897250|897251|897252|897253|897254|897255|953582|977983|977984|977985|977986|977987|977988|977989|977990|977991|977992|980097|980098|980099", + "upstreamId": "25924|98679|140795|140797|140798|140799|140800|140801|140803|140804|140805|140806|142351|200131|200139|200140|211018|212002|292521|292526|295908|295924|295936|301480|301484|301488|301489|301493|301494|301500|301501|301503|301504|304711|304712|304731|304734|304735|304737|304738|304739|304740|304742|304743|304744|304760|309367|309368|309370|309371|309499|309501|309502|309504|309505|320296|327354|353651|353804|368842|488040|501526|514795|566277|615914|649923|734259|743274|743962|765983|786778|849883|897233|897234|897235|897236|897237|897238|897239|897240|897241|897242|897243|897244|897245|897246|897247|897248|897249|897250|897251|897252|897253|897254|897255|953582|977983|977984|977985|977986|977987|977988|977989|977990|977991|977992|980097|980098|980099", "text": "Pyruvate dehydrogenase complex deficiency" }, { - "baseId": "25933|25934|25935|25936|424906|963981", + "upstreamId": "25933|25934|25935|25936|424906|963981", "text": "Mental retardation 9, X-linked" }, { - "baseId": "25937|25938|25939|25940|25941|25942|25943|25944|25945|25946|25947|25948|25949|76322|271618|338825|338827|338831|338832|348436|348446|348451|348452|348453|352051|352052|352053|352055|352056|352057|352744|352745|352746|352747|352748|534501|538284|538285|538286|539418|574193|575284|760829|849599|852961|902766|902767|902768|902769|902770|902771|902772|902773|929556|929557|929558|951587|951588|960972", + "upstreamId": "25937|25938|25939|25940|25941|25942|25943|25944|25945|25946|25947|25948|25949|76322|271618|338825|338827|338831|338832|348436|348446|348451|348452|348453|352051|352052|352053|352055|352056|352057|352744|352745|352746|352747|352748|534501|538284|538285|538286|539418|574193|575284|760829|849599|852961|902766|902767|902768|902769|902770|902771|902772|902773|929556|929557|929558|951587|951588|960972", "text": "Lymphoproliferative syndrome 1, X-linked" }, { - "baseId": "25937|621676", + "upstreamId": "25937|621676", "text": "X-Linked Lymphoproliferative Syndrome" }, { - "baseId": "25950|25951|25952|25953|25954|25956|25957|25958|101661|101662|101663|101664|101665|101669|133972|137418|137424|137425|137430|137432|137433|137434|177520|177521|178422|178423|178424|191264|196044|209036|209037|209040|213667|243725|243815|257836|269266|271259|364216|404451|404579|411329|430780|431933|446645|470789|470791|471551|471556|471877|471878|471880|472148|472149|472150|472151|493731|513396|534811|534861|534863|534864|534866|534968|572483|572490|573860|574728|575411|575412|582122|612138|650040|650041|650042|650043|650044|650045|650046|650047|650048|653421|684995|684999|685000|685001|685003|685008|685009|685012|689497|689500|689501|689507|689509|717788|729582|786823|786824|786825|816502|821790|850039|850040|850041|850042|850043|850044|850045|850046|920018|920019|920020|929726|939592|951785|951786|951787|951788|951789|959296|964607|964608", + "upstreamId": "25950|25951|25952|25953|25954|25956|25957|25958|101661|101662|101663|101664|101665|101669|133972|137418|137424|137425|137430|137432|137433|137434|177520|177521|178422|178423|178424|191264|196044|209036|209037|209040|213667|243725|243815|257836|269266|271259|364216|404451|404579|411329|430780|431933|446645|470789|470791|471551|471556|471877|471878|471880|472148|472149|472150|472151|493731|513396|534811|534861|534863|534864|534866|534968|572483|572490|573860|574728|575411|575412|582122|612138|650040|650041|650042|650043|650044|650045|650046|650047|650048|653421|684995|684999|685000|685001|685003|685008|685009|685012|689497|689500|689501|689507|689509|717788|729582|786823|786824|786825|816502|821790|850039|850040|850041|850042|850043|850044|850045|850046|920018|920019|920020|929726|939592|951785|951786|951787|951788|951789|959296|964607|964608", "text": "Oculofaciocardiodental syndrome" }, { - "baseId": "25959|25960|25963|25964|25965|25971|25975", + "upstreamId": "25959|25960|25963|25964|25965|25971|25975", "text": "Granulomatous disease, chronic, X-linked, variant" }, { - "baseId": "25961|25962|25965|25966|25967|25968|25969|25970|25972|25973|25976|25977|25978|25979|44631|44632|44633|44634|44635|44636|44637|44638|44639|44640|79259|79263|79276|79277|79282|79303|79306|205028|260316|265008|360631|413820|470778|488042|534791|534794|534858|534859|534950|535161|535162|572471|573846|573852|574724|574726|612122|614507|614507|621692|650029|650030|650031|650032|650033|650034|650035|653677|653784|717787|729577|729578|743305|743306|743307|758475|771138|774012|774013|774015|774016|774018|774019|774020|786818|788371|792433|818401|821779|821780|821781|821782|821783|850017|850018|850019|850020|850021|850022|850023|850024|850025|850026|850027|851968|852515|917368|929719|929720|929721|929722|939584|939585|939586|951773|951774|951775|951776|951777|951778|951779|959284|959285|959286|959287|959288", + "upstreamId": "25961|25962|25965|25966|25967|25968|25969|25970|25972|25973|25976|25977|25978|25979|44631|44632|44633|44634|44635|44636|44637|44638|44639|44640|79259|79263|79276|79277|79282|79303|79306|205028|260316|265008|360631|413820|470778|488042|534791|534794|534858|534859|534950|535161|535162|572471|573846|573852|574724|574726|612122|614507|614507|621692|650029|650030|650031|650032|650033|650034|650035|653677|653784|717787|729577|729578|743305|743306|743307|758475|771138|774012|774013|774015|774016|774018|774019|774020|786818|788371|792433|818401|821779|821780|821781|821782|821783|850017|850018|850019|850020|850021|850022|850023|850024|850025|850026|850027|851968|852515|917368|929719|929720|929721|929722|939584|939585|939586|951773|951774|951775|951776|951777|951778|951779|959284|959285|959286|959287|959288", "text": "Chronic granulomatous disease, X-linked" }, { - "baseId": "25980|25981|25982|25983|25984|25985|25986|25987", + "upstreamId": "25980|25981|25982|25983|25984|25985|25986|25987", "text": "Deficiency of glycerol kinase" }, { - "baseId": "25988|25989|25990|25991|25992|25993|25994|25995|25996|25997|25998|25999|26000|26002|26003|26004|26005|26006|26007|26008|26009|26010|26011|26012|26013|26014|26015|26016|45325|45326|70525|227422|227422|247501|390700|422461|422461|437712|437713|437714|437715|437716|437717|437718|437719|437720|437721|437722|437723|437724|437725|437726|437727|437728|437729|437730|437731|437732|437733|437734|471455|471847|472119|485815|485816|485817|485818|485818|485819|485820|485821|485822|485823|573780|578591|581824|581824|612339|694856|706207|821614|849921|849922|849923|951734|966573|969543|976813", + "upstreamId": "25988|25989|25990|25991|25992|25993|25994|25995|25996|25997|25998|25999|26000|26002|26003|26004|26005|26006|26007|26008|26009|26010|26011|26012|26013|26014|26015|26016|45325|45326|70525|227422|227422|247501|390700|422461|422461|437712|437713|437714|437715|437716|437717|437718|437719|437720|437721|437722|437723|437724|437725|437726|437727|437728|437729|437730|437731|437732|437733|437734|471455|471847|472119|485815|485816|485817|485818|485818|485819|485820|485821|485822|485823|573780|578591|581824|581824|612339|694856|706207|821614|849921|849922|849923|951734|966573|969543|976813", "text": "Congenital adrenal hypoplasia, X-linked" }, { - "baseId": "26001|227422|422461|471455|471847|472119|485818|573780|581824|694856|706207|821614|849921|849922|849923|951734", + "upstreamId": "26001|227422|422461|471455|471847|472119|485818|573780|581824|694856|706207|821614|849921|849922|849923|951734", "text": "46,XY sex reversal, type 2" }, { - "baseId": "26017", + "upstreamId": "26017", "text": "Mineralocorticoid deficiency, isolated" }, { - "baseId": "26018|26019|26020|26021|26022|26023|26024|101208|101209|339343|339345|348882|535359|538314|552259|798816|805049|903069|903070|903071|903072|903478|920032|920033|965889|966028|971208|976688", + "upstreamId": "26018|26019|26020|26021|26022|26023|26024|101208|101209|339343|339345|348882|535359|538314|552259|798816|805049|903069|903070|903071|903072|903478|920032|920033|965889|966028|971208|976688", "text": "Renpenning syndrome 1" }, { - "baseId": "26019|79446|137063|137063|137064|137064|137065|137065|153138|165849|166182|166183|166184|166185|166186|166187|166188|166189|166190|166191|166192|178411|178412|178415|248477|263202|263224|263249|263280|263289|263363|263393|263410|264749|322495|360857|360877|360939|360957|362170|426751|439633|439634|439635|513964|514016|514079|514090|514099|514170|514173|514201|514214|536013|536014|550129|550226|610430|610540|610541|610542|623596|623599|623600|623601|623602|678050|679483|801216|802096|805068|858271|861048|861284|965459|984026|984027|984028|984029|984030|984031|984032|984033|984034|984035", + "upstreamId": "26019|79446|137063|137063|137064|137064|137065|137065|153138|165849|166182|166183|166184|166185|166186|166187|166188|166189|166190|166191|166192|178411|178412|178415|248477|263202|263224|263249|263280|263289|263363|263393|263410|264749|322495|360857|360877|360939|360957|362170|426751|439633|439634|439635|513964|514016|514079|514090|514099|514170|514173|514201|514214|536013|536014|550129|550226|610430|610540|610541|610542|623596|623599|623600|623601|623602|678050|679483|801216|802096|805068|858271|861048|861284|965459|984026|984027|984028|984029|984030|984031|984032|984033|984034|984035", "text": "Delayed speech and language development" }, { - "baseId": "26019|263289|360889|360996", + "upstreamId": "26019|263289|360889|360996", "text": "Hyperactivity" }, { - "baseId": "26025|26026|26027|26028|26029|26030|26031|26032|26033|26035|26037|26038|26039|26040|26041|26042|26045|26046|26047|26048|26049|26050|26051|26052|26053|99127|99130|102992|102996|102999|103004|103006|103009|103010|103014|103028|103044|103050|103051|103054|103066|103067|103082|103084|103088|103090|103108|103119|103120|103129|103144|103147|103159|103162|103166|103167|103176|103191|103194|103205|103225|103229|103242|103257|103258|103263|103264|135313|171249|200389|213950|237753|257833|257835|339172|339179|348725|348727|352221|352224|352226|352227|379267|424256|446640|446643|480410|480413|480414|480415|480416|480536|488051|508255|508256|512654|514136|534860|534957|534965|535165|572127|572472|572475|573855|575304|580777|612172|650039|670077|694876|743309|743310|758478|774025|788361|792446|792447|792448|792449|821501|821787|821788|821789|850033|850034|850035|850036|850037|850038|853041|858480|858481|858482|858483|858487|858488|858489|858490|858491|858492|858493|858494|858495|858496|858497|858498|858772|903034|903035|903036|903474|903697|903698|903699|917369|920017|921447|921529|929724|929725|939587|939588|939589|939590|939591|951781|951782|951783|951784|959292|959293|959294|959295", + "upstreamId": "26025|26026|26027|26028|26029|26030|26031|26032|26033|26035|26037|26038|26039|26040|26041|26042|26045|26046|26047|26048|26049|26050|26051|26052|26053|99127|99130|102992|102996|102999|103004|103006|103009|103010|103014|103028|103044|103050|103051|103054|103066|103067|103082|103084|103088|103090|103108|103119|103120|103129|103144|103147|103159|103162|103166|103167|103176|103191|103194|103205|103225|103229|103242|103257|103258|103263|103264|135313|171249|200389|213950|237753|257833|257835|339172|339179|348725|348727|352221|352224|352226|352227|379267|424256|446640|446643|480410|480413|480414|480415|480416|480536|488051|508255|508256|512654|514136|534860|534957|534965|535165|572127|572472|572475|573855|575304|580777|612172|650039|670077|694876|743309|743310|758478|774025|788361|792446|792447|792448|792449|821501|821787|821788|821789|850033|850034|850035|850036|850037|850038|853041|858480|858481|858482|858483|858487|858488|858489|858490|858491|858492|858493|858494|858495|858496|858497|858498|858772|903034|903035|903036|903474|903697|903698|903699|917369|920017|921447|921529|929724|929725|939587|939588|939589|939590|939591|951781|951782|951783|951784|959292|959293|959294|959295", "text": "Ornithine carbamoyltransferase deficiency" }, { - "baseId": "26033", + "upstreamId": "26033", "text": "ORNITHINE TRANSCARBAMYLASE POLYMORPHISM" }, { - "baseId": "26055|26056|26057|26058|26059|26060|26061|99573|99574|99575|99576|99577|99578|99579|99581|99582|99583|142293|142294|142296|142299|142300|142301|142303|142304|169839|169840|169841|169842|169843|169844|169845|169846|169847|177303|190356|190361|190362|195290|203869|203872|203874|203875|203876|203879|203880|203886|203887|203891|203892|203897|203902|203905|203907|203911|203912|203913|203915|203917|203919|203921|203922|203923|203925|203926|203932|203939|203950|208821|208822|213663|271364|271785|361419|377638|377640|377645|378778|378882|404007|404010|404011|404037|404042|404418|404419|404452|404458|411060|413846|415727|438970|439889|442357|442358|446438|446440|446441|446447|470389|470436|470437|471206|471207|471208|471210|471655|471657|472032|472033|472034|472035|472036|472037|472038|472039|495779|507637|507726|508457|534371|534405|534410|534414|534418|534422|534441|534444|534450|534451|534560|534561|534565|534955|534960|534963|538624|552236|552237|572128|572130|572133|572135|572137|572148|572149|573488|573492|573497|573500|574221|574230|574231|575306|575307|575308|575309|575310|575311|575312|580592|580706|580711|580724|580730|580852|580855|610524|611437|614495|614496|623168|625826|649562|649563|649564|649565|649566|649567|649568|649569|649570|649571|649572|649573|649574|649575|649576|649577|649578|649578|649579|649580|649581|649582|649583|649584|649585|649586|649587|649588|653428|653429|653485|653632|653734|653771|680059|684924|689296|689300|689301|694757|694759|758195|773651|773655|789135|792085|792086|792087|792088|792089|792090|792091|792092|792093|792094|792095|792096|792097|794343|794344|794345|794346|794348|794349|794351|794352|802039|802040|802041|806145|821534|821535|821536|821537|821538|849469|849470|849471|849472|849473|849474|849475|849476|849477|849478|849479|849480|849481|849482|849483|849484|849485|849486|849487|849488|849489|849490|849491|849492|849493|849494|849495|849496|849497|849498|849499|849500|849501|849502|849503|849504|849505|852951|852952|852953|858358|858359|858360|858361|858362|858363|858364|858365|858515|917737|919963|919964|929514|929515|929516|929517|929518|929519|929520|929521|929522|929523|929524|929525|939369|939370|939371|939372|939373|939374|939375|939376|939377|939378|939379|939380|951538|951539|951540|951541|951542|951543|951544|951545|951546|951547|951548|951549|951550|951551|951552|951553|951554|951555|951556|951557|959138|959139|959140|959141|959142|959143|959144|959145|962866|963942|964559|964560|964561|964562|964563|965747|969568|971167", + "upstreamId": "26055|26056|26057|26058|26059|26060|26061|99573|99574|99575|99576|99577|99578|99579|99581|99582|99583|142293|142294|142296|142299|142300|142301|142303|142304|169839|169840|169841|169842|169843|169844|169845|169846|169847|177303|190356|190361|190362|195290|203869|203872|203874|203875|203876|203879|203880|203886|203887|203891|203892|203897|203902|203905|203907|203911|203912|203913|203915|203917|203919|203921|203922|203923|203925|203926|203932|203939|203950|208821|208822|213663|271364|271785|361419|377638|377640|377645|378778|378882|404007|404010|404011|404037|404042|404418|404419|404452|404458|411060|413846|415727|438970|439889|442357|442358|446438|446440|446441|446447|470389|470436|470437|471206|471207|471208|471210|471655|471657|472032|472033|472034|472035|472036|472037|472038|472039|495779|507637|507726|508457|534371|534405|534410|534414|534418|534422|534441|534444|534450|534451|534560|534561|534565|534955|534960|534963|538624|552236|552237|572128|572130|572133|572135|572137|572148|572149|573488|573492|573497|573500|574221|574230|574231|575306|575307|575308|575309|575310|575311|575312|580592|580706|580711|580724|580730|580852|580855|610524|611437|614495|614496|623168|625826|649562|649563|649564|649565|649566|649567|649568|649569|649570|649571|649572|649573|649574|649575|649576|649577|649578|649578|649579|649580|649581|649582|649583|649584|649585|649586|649587|649588|653428|653429|653485|653632|653734|653771|680059|684924|689296|689300|689301|694757|694759|758195|773651|773655|789135|792085|792086|792087|792088|792089|792090|792091|792092|792093|792094|792095|792096|792097|794343|794344|794345|794346|794348|794349|794351|794352|802039|802040|802041|806145|821534|821535|821536|821537|821538|849469|849470|849471|849472|849473|849474|849475|849476|849477|849478|849479|849480|849481|849482|849483|849484|849485|849486|849487|849488|849489|849490|849491|849492|849493|849494|849495|849496|849497|849498|849499|849500|849501|849502|849503|849504|849505|852951|852952|852953|858358|858359|858360|858361|858362|858363|858364|858365|858515|917737|919963|919964|929514|929515|929516|929517|929518|929519|929520|929521|929522|929523|929524|929525|939369|939370|939371|939372|939373|939374|939375|939376|939377|939378|939379|939380|951538|951539|951540|951541|951542|951543|951544|951545|951546|951547|951548|951549|951550|951551|951552|951553|951554|951555|951556|951557|959138|959139|959140|959141|959142|959143|959144|959145|962866|963942|964559|964560|964561|964562|964563|965747|969568|971167", "text": "Early infantile epileptic encephalopathy 9" }, { - "baseId": "26062|26063|26064|26065|26066|26067|102525|102527|102528|102531|102532|102533|102538|135215|135219|135220|135221|135223|177176|177308|188072|193759|195450|195455|208983|208987|227708|362596|430751|430753|470640|470642|470647|471426|471608|472111|534359|534679|534771|572367|573752|575279|575375|580756|580885|611936|649895|706184|729529|743266|758409|792183|821571|849847|849848|849849|849850|959215", + "upstreamId": "26062|26063|26064|26065|26066|26067|102525|102527|102528|102531|102532|102533|102538|135215|135219|135220|135221|135223|177176|177308|188072|193759|195450|195455|208983|208987|227708|362596|430751|430753|470640|470642|470647|471426|471608|472111|534359|534679|534771|572367|573752|575279|575375|580756|580885|611936|649895|706184|729529|743266|758409|792183|821571|849847|849848|849849|849850|959215", "text": "Nance-Horan syndrome" }, { - "baseId": "26068|26069|177308|208983|919997", + "upstreamId": "26068|26069|177308|208983|919997", "text": "Cataract 40" }, { - "baseId": "26070|26070|26071|26072|26073|26074|26074|26075|26076|26077|26078|26079|26080|26081|26082|26085|26086|26087|40564|48190|53352|53354|53355|53357|53358|53359|53360|53361|53362|53363|53364|53365|53366|53367|53369|53370|53371|53372|53376|53377|53378|53380|53382|53383|176310|176311|176312|176324|176325|176327|176328|176330|176432|176433|176434|176435|176445|176446|176447|176448|176450|176451|176452|231286|231287|231289|231291|231292|231292|231293|231294|231296|247465|247466|247467|257866|260338|260340|379504|380105|411448|422942|446737|470380|470433|470922|470927|471201|471669|471956|471957|471958|471959|471960|472186|472187|534391|534513|534909|534912|534933|534936|534942|535048|535053|535054|535055|573965|573970|574827|574868|574869|574870|574871|574874|574875|575440|575441|610258|612124|650159|650160|650161|650162|650163|650164|650165|653369|653372|653469|653539|653678|653718|653770|679215|689535|689536|694917|706295|706296|706297|706298|758620|774175|774177|792491|792492|798820|821794|821795|850219|850220|850221|850222|850223|853044|853045|929796|939661|941314|951864|951865|951866|959333|980108|980109", + "upstreamId": "26070|26070|26071|26072|26073|26074|26074|26075|26076|26077|26078|26079|26080|26081|26082|26085|26086|26087|40564|48190|53352|53354|53355|53357|53358|53359|53360|53361|53362|53363|53364|53365|53366|53367|53369|53370|53371|53372|53376|53377|53378|53380|53382|53383|176310|176311|176312|176324|176325|176327|176328|176330|176432|176433|176434|176435|176445|176446|176447|176448|176450|176451|176452|231286|231287|231289|231291|231292|231292|231293|231294|231296|247465|247466|247467|257866|260338|260340|379504|380105|411448|422942|446737|470380|470433|470922|470927|471201|471669|471956|471957|471958|471959|471960|472186|472187|534391|534513|534909|534912|534933|534936|534942|535048|535053|535054|535055|573965|573970|574827|574868|574869|574870|574871|574874|574875|575440|575441|610258|612124|650159|650160|650161|650162|650163|650164|650165|653369|653372|653469|653539|653678|653718|653770|679215|689535|689536|694917|706295|706296|706297|706298|758620|774175|774177|792491|792492|798820|821794|821795|850219|850220|850221|850222|850223|853044|853045|929796|939661|941314|951864|951865|951866|959333|980108|980109", "text": "Hypohidrotic X-linked ectodermal dysplasia" }, { - "baseId": "26070|26074|26083|26084|26087|132579|231292|247464|247465|247466|613835", + "upstreamId": "26070|26074|26083|26084|26087|132579|231292|247464|247465|247466|613835", "text": "Tooth agenesis, selective, X-linked, 1" }, { - "baseId": "26088|38923|133899|133900|226995|269241|271358|378527|379337|379342|379350|379477|379488|424678|426483|430872|446726|470882|470894|471649|471651|471652|472168|472169|472170|486788|492992|508686|534887|534888|534890|534924|535714|572553|573940|573941|573945|574815|574817|575435|575436|575437|581020|581102|650132|650133|650134|650135|650136|650137|650138|650139|650140|653792|653907|689533|690277|743428|743429|792485|792611|802053|802067|822232|822233|850202|850203|850204|850205|850206|850207|920048|929788|929789|929790|939654|939655|940567|941313|959329|963193|964628|976689|980510", + "upstreamId": "26088|38923|133899|133900|226995|269241|271358|378527|379337|379342|379350|379477|379488|424678|426483|430872|446726|470882|470894|471649|471651|471652|472168|472169|472170|486788|492992|508686|534887|534888|534890|534924|535714|572553|573940|573941|573945|574815|574817|575435|575436|575437|581020|581102|650132|650133|650134|650135|650136|650137|650138|650139|650140|653792|653907|689533|690277|743428|743429|792485|792611|802053|802067|822232|822233|850202|850203|850204|850205|850206|850207|920048|929788|929789|929790|939654|939655|940567|941313|959329|963193|964628|976689|980510", "text": "Early infantile epileptic encephalopathy 8" }, { - "baseId": "26089|268952", + "upstreamId": "26089|268952", "text": "Asperger syndrome X-linked 2" }, { - "baseId": "26089|26090|26091|101876|268952|361250|552264|818377|964627", + "upstreamId": "26089|26090|26091|101876|268952|361250|552264|818377|964627", "text": "Autism, susceptibility to, X-linked 2" }, { - "baseId": "26090|26091|166020|208879|338922|339091|339605|339609|339610|339629|348476|348494|348655|348674|348817|348863|349099|349107|349108|349119|349120|351947|352171|352188|352269|352272|352278|352459|352464|352714|352758|352761|352762|352811|352823|352824|352856|352881|352954|352964|352967|352968|352969|352975|352976|352978|352979|353861|353865|353868|430619|486700|970102|972842|973005", + "upstreamId": "26090|26091|166020|208879|338922|339091|339605|339609|339610|339629|348476|348494|348655|348674|348817|348863|349099|349107|349108|349119|349120|351947|352171|352188|352269|352272|352278|352459|352464|352714|352758|352761|352762|352811|352823|352824|352856|352881|352954|352964|352967|352968|352969|352975|352976|352978|352979|353861|353865|353868|430619|486700|970102|972842|973005", "text": "Non-syndromic X-linked intellectual disability" }, { - "baseId": "26102|26103|26104|26105|26106|26107|26108|26109|26110|26111|102115|135332|135333|138770|143192|215102|244000|361966|431931|481264|481443|585634|612169|792589|849662|920436|951615|964699|971180", + "upstreamId": "26102|26103|26104|26105|26106|26107|26108|26109|26110|26111|102115|135332|135333|138770|143192|215102|244000|361966|431931|481264|481443|585634|612169|792589|849662|920436|951615|964699|971180", "text": "Borjeson-Forssman-Lehmann syndrome" }, { - "baseId": "26112|26113|26114|26115|26116|26117|26118|26119|26120|26121|26125|26132|26133|26135|26138|205797|208829|222879|384416|404041|425233|488162|495615|535711|538274|552238|552239|552240|612344|614612|623125|792104|792105|804833|804911|804912|804913|919966|919967", + "upstreamId": "26112|26113|26114|26115|26116|26117|26118|26119|26120|26121|26125|26132|26133|26135|26138|205797|208829|222879|384416|404041|425233|488162|495615|535711|538274|552238|552239|552240|612344|614612|623125|792104|792105|804833|804911|804912|804913|919966|919967", "text": "Pelizaeus-Merzbacher disease" }, { - "baseId": "26122|26130", + "upstreamId": "26122|26130", "text": "Pelizaeus-Merzbacher disease, connatal" }, { - "baseId": "26123|26124|26128|26129|26131|26137|99139|99142|135421|222879|222880|262412|274662|404041|404041|404425|404473|424601|471675|471677|481448|534374|534434|534442|552238|552240|572164|573518|649623|649624|653272|653727|653772|679570|679572|806147|821474|849542|929538|939393|939394|941284|960354", + "upstreamId": "26123|26124|26128|26129|26131|26137|99139|99142|135421|222879|222880|262412|274662|404041|404041|404425|404473|424601|471675|471677|481448|534374|534434|534442|552238|552240|572164|573518|649623|649624|653272|653727|653772|679570|679572|806147|821474|849542|929538|939393|939394|941284|960354", "text": "Hereditary spastic paraplegia 2" }, { - "baseId": "26126|26127", + "upstreamId": "26126|26127", "text": "Pelizaeus-Merzbacher disease, mild" }, { - "baseId": "26129|26136", + "upstreamId": "26129|26136", "text": "Pelizaeus-Merzbacher disease, atypical" }, { - "baseId": "26139|26140|26141|26142|26143|26144|26145|26146|26147|26148|26149|26150|26151|44181|45455|51424|51425|51426|51427|51429|51431|51434|51435|51440|143091|143093|176309|176911|178190|178191|178197|178206|198557|198559|198560|198561|222884|224586|232152|243780|243781|243782|339057|348271|352158|352159|352160|352795|352796|352797|404498|404531|411200|415753|424452|424569|427120|446585|470627|471415|472106|481484|508958|508959|534659|534750|534757|534759|551752|573735|574373|575372|575373|649883|649884|649885|649886|649887|649888|649889|649890|649891|649892|653360|653450|653507|653703|679552|684977|689437|694843|798809|849833|849834|849835|849836|849837|849838|849839|849840|852477|852480|852971|853033|902885|902886|902887|902888|902889|902890|902891|903462|929630|929631|929632|941290|951686|951687|960370|980973", + "upstreamId": "26139|26140|26141|26142|26143|26144|26145|26146|26147|26148|26149|26150|26151|44181|45455|51424|51425|51426|51427|51429|51431|51434|51435|51440|143091|143093|176309|176911|178190|178191|178197|178206|198557|198559|198560|198561|222884|224586|232152|243780|243781|243782|339057|348271|352158|352159|352160|352795|352796|352797|404498|404531|411200|415753|424452|424569|427120|446585|470627|471415|472106|481484|508958|508959|534659|534750|534757|534759|551752|573735|574373|575372|575373|649883|649884|649885|649886|649887|649888|649889|649890|649891|649892|653360|653450|653507|653703|679552|684977|689437|694843|798809|849833|849834|849835|849836|849837|849838|849839|849840|852477|852480|852971|853033|902885|902886|902887|902888|902889|902890|902891|903462|929630|929631|929632|941290|951686|951687|960370|980973", "text": "3-Methylglutaconic aciduria type 2" }, { - "baseId": "26152|26153|26154|26154|26158|26159|26160|26162|26163|26167|26168|26169|26170|26171|26171|26172|26173|26174|38922|45569|45570|45571|45572|45572|45573|45574|139149|139150|139152|139153|139153|193420|209070|257843|257844|260329|272093|360647|360647|380065|380066|411388|411388|438442|446680|471605|487893|487984|488052|488054|488054|534824|534891|535002|535004|535176|539188|572504|572507|572514|573887|573889|574738|574741|575421|575422|575423|575424|621694|626360|626361|626362|626363|650078|650079|650080|650081|650082|650083|650084|650085|650086|650087|653787|653788|653789|685015|685016|689515|689516|689517|689518|743358|786849|821506|821507|821509|822226|822334|822335|850091|850092|850093|850094|850095|850096|850097|850098|850099|850100|850101|850102|850103|850104|858661|917576|929746|929747|929748|929749|929750|929751|929752|939609|939610|939611|951813|951814|951815|959310|959311|965873", + "upstreamId": "26152|26153|26154|26154|26158|26159|26160|26162|26163|26167|26168|26169|26170|26171|26171|26172|26173|26174|38922|45569|45570|45571|45572|45572|45573|45574|139149|139150|139152|139153|139153|193420|209070|257843|257844|260329|272093|360647|360647|380065|380066|411388|411388|438442|446680|471605|487893|487984|488052|488054|488054|534824|534891|535002|535004|535176|539188|572504|572507|572514|573887|573889|574738|574741|575421|575422|575423|575424|621694|626360|626361|626362|626363|650078|650079|650080|650081|650082|650083|650084|650085|650086|650087|653787|653788|653789|685015|685016|689515|689516|689517|689518|743358|786849|821506|821507|821509|822226|822334|822335|850091|850092|850093|850094|850095|850096|850097|850098|850099|850100|850101|850102|850103|850104|858661|917576|929746|929747|929748|929749|929750|929751|929752|939609|939610|939611|951813|951814|951815|959310|959311|965873", "text": "Wiskott-Aldrich syndrome" }, { - "baseId": "26154|26162|26164|26171|38921|38922|38922|45569|45570|45572|45573|139149|139150|139152|139152|139153|193420|209070|231093|257843|257844|260329|272093|360647|380066|411388|438442|446680|446681|471605|488054|534824|534891|535002|535004|535176|572504|572507|572514|573887|573889|574738|574741|575421|575422|575423|575424|650078|650079|650080|650081|650082|650083|650084|650085|650086|650087|653787|653788|653789|685015|685016|689515|689516|689517|689518|743358|786849|792462|792463|821506|821507|821509|822226|850091|850092|850093|850094|850095|850096|850097|850098|850099|850100|850101|850102|850103|850104|929746|929747|929748|929749|929750|929751|929752|939609|939610|939611|951813|951814|951815|959310|959311|971207|980208", + "upstreamId": "26154|26162|26164|26171|38921|38922|38922|45569|45570|45572|45573|139149|139150|139152|139152|139153|193420|209070|231093|257843|257844|260329|272093|360647|380066|411388|438442|446680|446681|471605|488054|534824|534891|535002|535004|535176|572504|572507|572514|573887|573889|574738|574741|575421|575422|575423|575424|650078|650079|650080|650081|650082|650083|650084|650085|650086|650087|653787|653788|653789|685015|685016|689515|689516|689517|689518|743358|786849|792462|792463|821506|821507|821509|822226|850091|850092|850093|850094|850095|850096|850097|850098|850099|850100|850101|850102|850103|850104|929746|929747|929748|929749|929750|929751|929752|939609|939610|939611|951813|951814|951815|959310|959311|971207|980208", "text": "X-linked severe congenital neutropenia" }, { - "baseId": "26154|26155|26156|26157|26162|26162|26168|26171|38922|45569|45570|45572|45573|45573|139149|139150|139152|139153|193420|209070|257843|257844|260329|260329|272093|360647|380066|411388|438442|446680|471605|487890|488054|488054|534824|534891|535002|535004|535176|572504|572507|572514|573887|573889|574738|574741|575421|575422|575423|575424|650078|650079|650080|650081|650082|650083|650084|650085|650086|650087|653787|653788|653789|685015|685016|689515|689516|689517|689518|743358|786849|818375|821506|821507|821509|822226|850091|850092|850093|850094|850095|850096|850097|850098|850099|850100|850101|850102|850103|850104|929746|929747|929748|929749|929750|929751|929752|939609|939610|939611|951813|951814|951815|959310|959311", + "upstreamId": "26154|26155|26156|26157|26162|26162|26168|26171|38922|45569|45570|45572|45573|45573|139149|139150|139152|139153|193420|209070|257843|257844|260329|260329|272093|360647|380066|411388|438442|446680|471605|487890|488054|488054|534824|534891|535002|535004|535176|572504|572507|572514|573887|573889|574738|574741|575421|575422|575423|575424|650078|650079|650080|650081|650082|650083|650084|650085|650086|650087|653787|653788|653789|685015|685016|689515|689516|689517|689518|743358|786849|818375|821506|821507|821509|822226|850091|850092|850093|850094|850095|850096|850097|850098|850099|850100|850101|850102|850103|850104|929746|929747|929748|929749|929750|929751|929752|939609|939610|939611|951813|951814|951815|959310|959311", "text": "X-linked thrombocytopenia with normal platelets" }, { - "baseId": "26161", + "upstreamId": "26161", "text": "Wiskott-Aldrich syndrome, attenuated" }, { - "baseId": "26165|26166", + "upstreamId": "26165|26166", "text": "Thrombocytopenia, X-linked, intermittent" }, { - "baseId": "26175|26176|26177|26178|26179|26180|26181|26182|26183|26184|26185", + "upstreamId": "26175|26176|26177|26178|26179|26180|26181|26182|26183|26184|26185", "text": "Amelogenesis imperfecta, type 1E" }, { - "baseId": "26186", + "upstreamId": "26186", "text": "Choroideremia, Salla type" }, { - "baseId": "26187|26188|26189|26190|26191|26192|26193|26195|48408|70863|104603|152796|187074|195885|265129|269993|274635|354188|358694|380133|434442|446803|623370|623371|623779|689584|689585|694963|694964|694966|694968|695913|695914|717876|786939|792514|792515|792516|792517|800325|800661|800662|800663|800709|801497|801498|801499|801500|801501|850345|920074|959378|980122|980123|980124|980125", + "upstreamId": "26187|26188|26189|26190|26191|26192|26193|26195|48408|70863|104603|152796|187074|195885|265129|269993|274635|354188|358694|380133|434442|446803|623370|623371|623779|689584|689585|694963|694964|694966|694968|695913|695914|717876|786939|792514|792515|792516|792517|800325|800661|800662|800663|800709|801497|801498|801499|801500|801501|850345|920074|959378|980122|980123|980124|980125", "text": "Choroideremia" }, { - "baseId": "26196|26198|26199|26200|26201|26202|26203|26204|26205|26206|26207|26208|26209|44475|44476|44477|44478|271617|378901|424451|433402|472066|508948|508949|534547|534636|534871|535049|573597|574313|574314|574317|574319|621678|621878|624712|649724|649725|649726|649727|649728|653301|653378|653494|729427|743160|758303|758305|773777|786708|818400|821561|849675|849676|849677|849678|849679|849680|849681|849682|849683|939451|939452|939453|951623|951624|951625|964569|972613", + "upstreamId": "26196|26198|26199|26200|26201|26202|26203|26204|26205|26206|26207|26208|26209|44475|44476|44477|44478|271617|378901|424451|433402|472066|508948|508949|534547|534636|534871|535049|573597|574313|574314|574317|574319|621678|621878|624712|649724|649725|649726|649727|649728|653301|653378|653494|729427|743160|758303|758305|773777|786708|818400|821561|849675|849676|849677|849678|849679|849680|849681|849682|849683|939451|939452|939453|951623|951624|951625|964569|972613", "text": "Hyper-IgM syndrome type 1" }, { - "baseId": "26210|26211|26212|26213|26214|26215|26216|26217|26218|26219|44694|51441|51442|51443|51444|51446|51448|98350|176796|178262|178291|195204|198541|198543|198545|198546|198549|198550|198551|224585|231344|231345|236821|236822|243723|243778|243779|264819|265324|269284|269369|270689|273723|274394|274742|274863|377994|379996|404179|404492|411198|415752|426729|426731|426732|426734|426737|438475|442404|471411|471836|472104|472105|489682|490413|492103|534655|534658|534737|534740|534763|535110|535112|535113|573442|573733|574371|575278|608976|609159|621689|649878|649879|649880|649881|649882|653353|653729|653731|656755|684976|689435|689436|694842|758387|758388|773911|773913|773914|786753|786754|792171|821488|821493|849825|849826|849827|849828|849829|849830|849831|849832|852474|853032|929628|929629|939502|939503|939504|951684|951685|959205|959206|959207|959208|963192", + "upstreamId": "26210|26211|26212|26213|26214|26215|26216|26217|26218|26219|44694|51441|51442|51443|51444|51446|51448|98350|176796|178262|178291|195204|198541|198543|198545|198546|198549|198550|198551|224585|231344|231345|236821|236822|243723|243778|243779|264819|265324|269284|269369|270689|273723|274394|274742|274863|377994|379996|404179|404492|411198|415752|426729|426731|426732|426734|426737|438475|442404|471411|471836|472104|472105|489682|490413|492103|534655|534658|534737|534740|534763|535110|535112|535113|573442|573733|574371|575278|608976|609159|621689|649878|649879|649880|649881|649882|653353|653729|653731|656755|684976|689435|689436|694842|758387|758388|773911|773913|773914|786753|786754|792171|821488|821493|849825|849826|849827|849828|849829|849830|849831|849832|852474|853032|929628|929629|939502|939503|939504|951684|951685|959205|959206|959207|959208|963192", "text": "Emery-Dreifuss muscular dystrophy 1, X-linked" }, { - "baseId": "26220|26222|26223|961991", + "upstreamId": "26220|26222|26223|961991", "text": "Properdin deficiency, X-linked" }, { - "baseId": "26221", + "upstreamId": "26221", "text": "Properdin deficiency, type II" }, { - "baseId": "26224", + "upstreamId": "26224", "text": "Properdin deficiency, type III" }, { - "baseId": "26225|26229|26231|26232|26233|26234|26236|26244|102349|167588|167589|167592|167594|167596|167604|167607|167613|209010|209011|209012|209013|209014|209017|209018|209022|209024|209026|209312|232150|271260|430771|573774|676972|983472", + "upstreamId": "26225|26229|26231|26232|26233|26234|26236|26244|102349|167588|167589|167592|167594|167596|167604|167607|167613|209010|209011|209012|209013|209014|209017|209018|209022|209024|209026|209312|232150|271260|430771|573774|676972|983472", "text": "Lissencephaly 2, X-linked" }, { - "baseId": "26225|26226|26226|26233|26237|26238|26238|102345|102347|102348|102348|102349|102350|140124|166526|167591|167601|167602|167603|167606|167608|167610|192561|192562|192564|194533|209009|209021|209024|209028|225842|232150|237434|243787|272619|364009|378138|379290|379292|404176|404510|404513|404534|404534|404535|411306|430770|470657|470658|471843|471844|472116|472117|472118|508145|508522|512648|534398|534701|534706|534707|534789|534792|534801|534806|535127|535128|572392|572394|573773|573774|573774|573776|574494|574525|575383|575384|580902|580943|586384|609301|614670|649936|649937|649938|649939|649940|649941|649942|649943|649944|649945|649946|653385|653637|689455|689457|689459|690269|773967|806383|806383|822223|849914|849915|849916|849917|849918|860837|917753|929675|929676|929677|929678|929679|929680|929681|939544|939545|939546|951723|951724|951725|951726|951727|951728|951729|951730|951731|951732|951733|959236|959237|977301", + "upstreamId": "26225|26226|26226|26233|26237|26238|26238|102345|102347|102348|102348|102349|102350|140124|166526|167591|167601|167602|167603|167606|167608|167610|192561|192562|192564|194533|209009|209021|209024|209028|225842|232150|237434|243787|272619|364009|378138|379290|379292|404176|404510|404513|404534|404534|404535|411306|430770|470657|470658|471843|471844|472116|472117|472118|508145|508522|512648|534398|534701|534706|534707|534789|534792|534801|534806|535127|535128|572392|572394|573773|573774|573774|573776|574494|574525|575383|575384|580902|580943|586384|609301|614670|649936|649937|649938|649939|649940|649941|649942|649943|649944|649945|649946|653385|653637|689455|689457|689459|690269|773967|806383|806383|822223|849914|849915|849916|849917|849918|860837|917753|929675|929676|929677|929678|929679|929680|929681|939544|939545|939546|951723|951724|951725|951726|951727|951728|951729|951730|951731|951732|951733|959236|959237|977301", "text": "Mental retardation, with or without seizures, ARX-related, X-linked" }, { - "baseId": "26226|232150|573774|806383", + "upstreamId": "26226|232150|573774|806383", "text": "Partington syndrome" }, { - "baseId": "26239|232150|573774|806383", + "upstreamId": "26239|232150|573774|806383", "text": "Corpus callosum agenesis-abnormal genitalia syndrome" }, { - "baseId": "26240|430769", + "upstreamId": "26240|430769", "text": "Hydranencephaly with abnormal genitalia" }, { - "baseId": "26246|26248|26249|26250|26251|26252|26253|26254|26255|26256|26257|26258|26259|26260|26261|26262|26263|26264|26267|26268|26271|26272|26273|26276|26278|26279|26281|26282|26283|26284|26286|26288|26289|26290|26291|26292|26293|26294|26295|26296|26297|26298|26299|26300|26301|26302|26303|26304|26305|26306|26307|26308|26309|26310|26311|26312|26314|26317|26321|26322|26323|26325|26327|26327|26329|38917|93070|100321|100328|100328|100333|100340|100344|100346|100347|100349|100350|100353|100354|100357|100361|100362|100364|100369|100370|100371|100372|100373|100375|100376|100376|100378|100380|100381|100382|100386|100387|100394|100398|100400|100403|100404|100409|100410|100411|100412|100413|100416|100418|100423|100424|100426|100430|100431|100432|100434|100437|100439|100441|100445|100448|100450|100451|100454|100476|100476|100479|100484|100487|100488|100489|100490|100497|100498|100500|100503|100504|100508|100511|100513|100515|100516|100518|100519|100522|100523|100527|100530|100532|100537|100538|100542|100544|100546|100548|100550|100554|100555|100556|100557|100558|100559|100569|100574|100575|100577|100579|100581|100583|100584|100587|100590|100597|100602|100603|100605|100641|100641|100642|100647|100649|100654|100655|100656|100657|100663|100664|100665|100668|100671|100672|100673|100676|100676|100678|100683|100684|100685|100697|100703|100705|100706|100707|100709|100710|100716|100717|100719|100737|100739|100741|100744|100749|100756|100761|100761|100763|100765|133080|140808|140808|140809|140809|140820|140820|165533|171246|171247|171248|172184|175867|177047|177179|177179|177310|177442|177478|177498|177527|177586|177591|177592|178764|189047|190428|190826|191547|191904|192007|192113|192114|192653|192654|192655|192760|192912|192913|192979|193039|193288|193535|194057|194238|194575|194683|194706|194771|195073|195097|195112|195129|195140|195142|195153|195172|195463|195480|195522|195663|195799|195948|198564|198566|198568|198570|198571|198572|198573|198573|198575|198576|198577|198578|198582|198583|198585|198586|198589|198591|198593|198594|198595|209031|213665|213840|213841|213842|213843|213844|213845|213846|213847|213848|213849|213850|213851|213852|213853|213854|213855|213856|213857|213858|213859|213860|213861|213862|213863|213864|213865|213866|213867|213868|213869|213870|213871|213872|213873|213874|213875|213876|213877|213878|213880|213881|213882|213883|213884|213885|213886|213887|213888|224592|226492|226493|227452|231252|231256|231259|231260|231261|231263|231264|231268|231269|231270|231271|231273|231274|231275|231276|231280|243788|243789|243790|243790|243791|243792|243793|243794|243796|243797|243798|243799|243800|243801|243802|243803|243804|243805|243806|243807|248539|248541|248542|248543|257810|257811|257812|257813|257814|259052|259175|259176|259177|259180|259182|259183|259185|259186|259188|259190|259192|259198|260861|262414|265495|265659|265672|265724|265957|266063|266198|266208|266547|266626|266724|266735|266735|266769|266835|267078|267117|267510|267583|267962|268182|268193|268525|268690|268694|268880|268949|268954|268969|269184|269215|269255|269364|269378|269432|269452|269456|269530|269576|269587|269589|269952|270203|270216|270394|270419|270481|270685|270822|270951|271065|271146|271162|271164|271222|271262|271461|272052|272154|272683|272743|272863|272962|273029|273059|273096|273160|273165|273352|273367|273471|273758|273824|273825|273828|273828|273829|273990|274377|274381|274397|274420|274437|274443|274544|274569|274682|274793|274841|274851|274866|275146|275162|275277|275354|275358|275407|275410|339159|339160|339167|348715|352209|360607|360687|361092|361092|361094|361242|361267|361273|361339|361890|361891|378221|378245|378251|378257|378276|378281|379228|379234|379237|379243|379247|379249|379258|379346|379352|379358|379360|379373|380035|380040|380041|380042|380046|380047|380049|380052|403991|403992|403993|403995|403997|404000|404023|404029|404033|404035|404183|404184|404189|404193|404195|404197|404198|404200|404207|404209|404214|404218|404222|404223|404224|404225|404228|404229|404231|404232|404233|404237|404239|404240|404245|404247|404248|404250|404256|404261|404273|404274|404277|404281|404291|404293|404399|404401|404404|404406|404408|404411|404413|404414|404415|404416|404426|404428|404430|404433|404438|404440|404446|404449|404450|404521|404522|404523|404525|404530|404532|404533|404536|404538|404539|404541|404542|404543|404544|404545|404546|404547|404548|404548|404549|404550|404552|404553|404554|404555|404557|404558|404559|404560|404561|404562|404563|404564|404565|404566|404567|404568|404569|404570|404571|404572|404574|404576|411313|411320|415775|415776|415778|422462|422463|422467|424372|433327|433328|434711|438436|442414|442415|442418|442426|442428|442429|442481|446623|446625|446628|446631|470397|470398|470400|470406|470409|470410|470414|470420|470424|470662|470669|470679|470684|470690|470693|470701|470719|470723|470727|470737|470740|470740|470743|470744|470748|470752|470754|470759|470761|470765|470768|470769|470771|470774|470776|471160|471161|471163|471169|471172|471174|471180|471181|471182|471183|471190|471191|471196|471457|471458|471464|471466|471470|471474|471479|471482|471483|471487|471491|471492|471494|471503|471508|471510|471512|471514|471519|471520|471521|471524|471525|471529|471533|471534|471536|471537|471540|471544|471611|471613|471615|471619|471621|471622|471624|471641|471642|471647|471848|471849|471851|471852|471853|471854|471855|471856|471857|471858|471862|471863|471865|471866|471867|471868|471869|471870|471871|471872|471992|471995|471996|472003|472004|472005|472008|472010|472014|472021|472022|472024|472026|472027|472028|472029|472120|472121|472122|472123|472124|472125|472126|472127|472128|472129|472130|472131|472132|472133|472134|472135|472136|472137|472138|472139|472140|472141|472142|472143|472144|485824|485825|485826|485827|486474|486668|488102|488571|488590|488596|488598|488725|488912|488925|488942|488979|489090|489643|489759|489761|489776|489778|489989|490012|490612|490721|490725|491095|491292|491392|491398|491725|492088|492233|492519|492642|492762|493022|493182|493196|493228|493245|493572|493865|508080|508197|508224|508533|508538|508548|508650|508658|508665|510933|510938|510939|510940|510943|510944|510945|510946|510949|510950|510952|510955|510957|510958|510959|510960|511143|511143|513225|513394|534376|534378|534381|534383|534386|534389|534392|534399|534400|534401|534404|534407|534415|534417|534423|534426|534435|534437|534538|534545|534549|534551|534553|534555|534557|534558|534720|534721|534735|534738|534742|534753|534755|534758|534760|534761|534762|534768|534774|534776|534779|534780|534781|534788|534790|534795|534797|534800|534802|534803|534804|534805|534808|534813|534814|534815|534817|534819|534821|534825|534827|534828|534830|534832|534833|534838|534840|534842|534843|534845|534846|534848|534853|534865|534867|534873|534875|534877|534878|534879|534880|534884|534885|534893|534895|534896|534898|534900|534903|534906|534908|534914|534916|534919|534920|534922|534926|534928|534930|534934|534941|534943|535129|535130|535131|535132|535133|535135|535136|535137|535138|535139|535140|535141|535142|535143|535144|535145|535146|535148|535149|535150|535151|535152|535153|535154|535155|535156|535157|535158|535159|535160|537049|550778|572086|572091|572098|572101|572102|572107|572108|572111|572118|572124|572125|572398|572399|572407|572414|572417|572419|572421|572426|572432|572433|572436|572437|572440|572441|572443|572445|572451|572454|572464|573446|573449|573450|573451|573460|573464|573465|573468|573469|573471|573475|573476|573479|573486|573781|573784|573785|573789|573791|573792|573796|573797|573799|573800|573804|573805|573807|573816|573818|573823|573825|573826|573828|573829|573832|573833|573837|574195|574197|574199|574201|574203|574205|574207|574208|574211|574213|574218|574219|574527|574529|574531|574623|574625|574627|574628|574630|574632|574634|574636|574638|574640|574640|574643|574644|574714|574716|574719|574721|575286|575287|575288|575289|575291|575292|575293|575294|575295|575296|575297|575298|575299|575300|575301|575302|575303|575385|575386|575387|575388|575389|575390|575391|575392|575393|575394|575395|575396|575397|575398|575399|575400|575401|575402|575403|575404|575405|575406|575407|575408|575409|575410|577960|577963|578592|581847|583665|584095|584295|584391|584545|584786|585203|585311|585312|585686|586147|586214|586215|586583|586584|586615|586970|587754|587906|588113|588159|588212|588224|589170|589254|589440|589742|608932|610238|610246|611449|611943|613948|614092|614093|626382|649948|649949|649950|649951|649952|649953|649954|649954|649955|649956|649957|649958|649959|649960|649961|649962|649963|649964|649965|649966|649967|649968|649969|649970|649971|649972|649973|649974|649975|649976|649977|649978|649979|649980|649981|649982|649983|649984|649985|649986|649987|649988|649989|649990|649991|649992|649993|649994|649995|649996|649997|649998|649999|650000|650001|650002|650003|650004|650005|650006|650007|650008|650009|650010|650011|650012|650013|650014|650015|650016|650017|650018|650019|650020|650021|650022|650023|650024|650025|650026|650027|650028|653315|653320|653321|653324|653328|653329|653334|653337|653339|653342|653349|653350|653355|653357|653359|653366|653368|653370|653383|653387|653390|653392|653393|653394|653396|653399|653404|653405|653407|653409|653411|653412|653413|653415|653419|653420|653426|653436|653437|653439|653440|653443|653446|653448|653452|653454|653456|653459|653512|653514|653519|653520|653523|653641|653642|653648|653649|653651|653652|653656|653658|653659|653663|653664|653665|653668|653670|653673|653675|653704|653706|653710|653712|653713|653714|653716|653739|653740|653741|653742|653743|653744|653745|653746|653747|653748|653749|653750|653751|653752|653753|653754|653755|653756|653757|653758|653759|653760|653761|653762|653763|653764|653765|653766|653767|653768|653783|654968|656766|656772|684983|684985|684986|684987|684988|684989|689460|689461|689462|689463|689464|689465|689466|689468|689469|689472|689474|689476|689477|689478|689479|689482|689483|689484|689485|689488|690271|690272|690273|690275|694861|694862|694865|694866|694867|694868|694869|694870|694871|694872|694874|706210|706211|717779|729566|731466|743296|743298|743300|743300|743301|758454|758455|758458|758460|758461|758462|758463|758464|758465|758467|758468|760857|760858|760863|760881|773976|773977|773979|773980|773988|773994|773995|774002|774005|774006|774007|776797|776970|776971|786794|786798|786799|786802|786805|786807|786809|786810|786811|786814|792254|792255|792256|792257|792258|792259|792260|792261|792262|792263|792264|792265|792266|792267|792268|792269|792270|792271|792272|792273|792274|792275|792276|792277|792278|792279|792280|792281|792282|792283|792284|792285|792286|792287|792288|792289|792290|792291|792292|792293|792294|792295|792296|792297|792298|792299|792300|792301|792302|792303|792304|792305|792306|792307|792308|792309|792310|792311|792312|792313|792314|792315|792316|792317|792318|792319|792320|792321|792322|792323|792324|792325|792326|792327|792328|792329|792329|792330|792331|792332|792333|792334|792335|792336|792336|792337|792338|792339|792340|792341|792342|792343|792344|792345|792346|792347|792348|792349|792350|792351|792352|792353|792354|792355|792356|792357|792358|792359|792360|792361|792362|792363|792364|792365|792366|792367|792368|792369|792370|792371|792372|792373|792374|792375|792376|792377|792378|792379|792380|792381|792382|792383|792384|792385|792386|792387|792388|792389|792390|792391|792392|792393|792394|792395|792396|792397|792398|792399|792400|792401|792402|792403|792404|792405|792406|792407|792408|792409|792410|792411|792412|792413|792414|792415|792416|792417|792418|792419|792420|792421|792422|792423|792424|792425|792426|792427|792428|792429|792430|792431|792432|792688|793884|794087|800307|800308|801745|801746|801747|801748|802242|806200|816418|816418|816419|816419|816420|816432|821615|821616|821617|821618|821619|821620|821621|821622|821623|821624|821625|821626|821627|821628|821629|821630|821631|821632|821633|821634|821635|821636|821637|821638|821639|821641|821642|821643|821644|821645|821646|821647|821648|821649|821650|821651|821652|821653|821654|821655|821656|821657|821658|821659|821660|821661|821662|821663|821664|821665|821666|821667|821668|821669|821670|821671|821672|821673|821674|821675|821676|821677|821678|821679|821680|821681|821682|821683|821684|821685|821686|821687|821688|821689|821690|821691|821692|821693|821694|821695|821696|821697|821698|821699|821700|821701|821702|821703|821704|821705|821706|821707|821708|821709|821710|821711|821712|821713|821714|821715|821716|821717|821718|821719|821720|821721|821722|821723|821724|821725|821726|821727|821728|821729|821730|821731|821732|821733|821734|821735|821736|821737|821738|821739|821740|821741|821742|821743|821744|821745|821747|821748|821749|821750|821751|821752|821753|821754|821755|821756|821757|821758|821759|821760|821761|821762|821763|821764|821765|821766|821767|821768|821769|821770|821771|821772|821773|821775|821776|821777|821778|849924|849925|849926|849927|849928|849929|849930|849931|849932|849933|849934|849935|849936|849937|849938|849939|849940|849941|849942|849943|849944|849945|849946|849947|849948|849949|849950|849951|849952|849953|849954|849955|849956|849957|849958|849959|849960|849961|849962|849963|849964|849965|849966|849967|849968|849969|849970|849971|849972|849973|849974|849975|849976|849977|849978|849979|849980|849981|849982|849983|849984|849985|849986|849987|849988|849989|849990|849991|849992|849993|849994|849995|849996|849997|849998|849999|850000|850001|850002|850003|850004|850005|850006|850007|850008|850009|850010|850011|850012|850013|850014|850015|850016|851958|851960|851962|851964|851966|852495|852497|852500|852503|852507|852509|852513|852976|852978|853038|853039|853040|858450|858756|903018|903023|905736|905810|905811|929682|929683|929684|929685|929686|929687|929688|929689|929690|929691|929692|929693|929694|929695|929696|929697|929698|929699|929700|929701|929702|929703|929704|929705|929706|929707|929708|929709|929710|929711|929712|929713|929714|929715|929716|929717|929718|939547|939548|939549|939550|939551|939552|939553|939554|939555|939556|939557|939558|939559|939560|939561|939562|939563|939564|939565|939566|939567|939568|939569|939570|939571|939572|939573|939574|939575|939576|939577|939578|939579|939579|939580|939581|939582|939583|940559|940560|941304|941305|941306|941307|941308|941309|941310|951735|951736|951737|951738|951739|951740|951741|951742|951743|951744|951745|951746|951747|951748|951749|951750|951751|951752|951753|951754|951755|951756|951757|951758|951759|951760|951761|951762|951763|951764|951765|951766|951767|951768|951769|951770|951771|951772|959238|959239|959240|959241|959242|959243|959244|959245|959246|959247|959248|959249|959250|959251|959252|959253|959254|959255|959256|959257|959258|959259|959260|959261|959262|959263|959264|959265|959266|959267|959268|959269|959270|959271|959272|959273|959274|959275|959276|959277|959278|959279|959280|959281|959282|960379|960380|960381|960382|960982|960983|960984|960985|960986|961398|961902|963398|964605|964606|970147|970409|971203|971204|972405|972406|972407|972408|972409|972410|972411|972412|972413|972414|972415|972416|972417|972418|972419|972420|972421|972422|972423|972424|972425|972426|972427|972428|972429|972430|972431|972432|972433|972434|972435|972436|972437|972438|972511|972512|972523|972524|972525|972526|972762|972763|972764|972765|972766|972767|972768|974567|977315", + "upstreamId": "26246|26248|26249|26250|26251|26252|26253|26254|26255|26256|26257|26258|26259|26260|26261|26262|26263|26264|26267|26268|26271|26272|26273|26276|26278|26279|26281|26282|26283|26284|26286|26288|26289|26290|26291|26292|26293|26294|26295|26296|26297|26298|26299|26300|26301|26302|26303|26304|26305|26306|26307|26308|26309|26310|26311|26312|26314|26317|26321|26322|26323|26325|26327|26327|26329|38917|93070|100321|100328|100328|100333|100340|100344|100346|100347|100349|100350|100353|100354|100357|100361|100362|100364|100369|100370|100371|100372|100373|100375|100376|100376|100378|100380|100381|100382|100386|100387|100394|100398|100400|100403|100404|100409|100410|100411|100412|100413|100416|100418|100423|100424|100426|100430|100431|100432|100434|100437|100439|100441|100445|100448|100450|100451|100454|100476|100476|100479|100484|100487|100488|100489|100490|100497|100498|100500|100503|100504|100508|100511|100513|100515|100516|100518|100519|100522|100523|100527|100530|100532|100537|100538|100542|100544|100546|100548|100550|100554|100555|100556|100557|100558|100559|100569|100574|100575|100577|100579|100581|100583|100584|100587|100590|100597|100602|100603|100605|100641|100641|100642|100647|100649|100654|100655|100656|100657|100663|100664|100665|100668|100671|100672|100673|100676|100676|100678|100683|100684|100685|100697|100703|100705|100706|100707|100709|100710|100716|100717|100719|100737|100739|100741|100744|100749|100756|100761|100761|100763|100765|133080|140808|140808|140809|140809|140820|140820|165533|171246|171247|171248|172184|175867|177047|177179|177179|177310|177442|177478|177498|177527|177586|177591|177592|178764|189047|190428|190826|191547|191904|192007|192113|192114|192653|192654|192655|192760|192912|192913|192979|193039|193288|193535|194057|194238|194575|194683|194706|194771|195073|195097|195112|195129|195140|195142|195153|195172|195463|195480|195522|195663|195799|195948|198564|198566|198568|198570|198571|198572|198573|198573|198575|198576|198577|198578|198582|198583|198585|198586|198589|198591|198593|198594|198595|209031|213665|213840|213841|213842|213843|213844|213845|213846|213847|213848|213849|213850|213851|213852|213853|213854|213855|213856|213857|213858|213859|213860|213861|213862|213863|213864|213865|213866|213867|213868|213869|213870|213871|213872|213873|213874|213875|213876|213877|213878|213880|213881|213882|213883|213884|213885|213886|213887|213888|224592|226492|226493|227452|231252|231256|231259|231260|231261|231263|231264|231268|231269|231270|231271|231273|231274|231275|231276|231280|243788|243789|243790|243790|243791|243792|243793|243794|243796|243797|243798|243799|243800|243801|243802|243803|243804|243805|243806|243807|248539|248541|248542|248543|257810|257811|257812|257813|257814|259052|259175|259176|259177|259180|259182|259183|259185|259186|259188|259190|259192|259198|260861|262414|265495|265659|265672|265724|265957|266063|266198|266208|266547|266626|266724|266735|266735|266769|266835|267078|267117|267510|267583|267962|268182|268193|268525|268690|268694|268880|268949|268954|268969|269184|269215|269255|269364|269378|269432|269452|269456|269530|269576|269587|269589|269952|270203|270216|270394|270419|270481|270685|270822|270951|271065|271146|271162|271164|271222|271262|271461|272052|272154|272683|272743|272863|272962|273029|273059|273096|273160|273165|273352|273367|273471|273758|273824|273825|273828|273828|273829|273990|274377|274381|274397|274420|274437|274443|274544|274569|274682|274793|274841|274851|274866|275146|275162|275277|275354|275358|275407|275410|339159|339160|339167|348715|352209|360607|360687|361092|361092|361094|361242|361267|361273|361339|361890|361891|378221|378245|378251|378257|378276|378281|379228|379234|379237|379243|379247|379249|379258|379346|379352|379358|379360|379373|380035|380040|380041|380042|380046|380047|380049|380052|403991|403992|403993|403995|403997|404000|404023|404029|404033|404035|404183|404184|404189|404193|404195|404197|404198|404200|404207|404209|404214|404218|404222|404223|404224|404225|404228|404229|404231|404232|404233|404237|404239|404240|404245|404247|404248|404250|404256|404261|404273|404274|404277|404281|404291|404293|404399|404401|404404|404406|404408|404411|404413|404414|404415|404416|404426|404428|404430|404433|404438|404440|404446|404449|404450|404521|404522|404523|404525|404530|404532|404533|404536|404538|404539|404541|404542|404543|404544|404545|404546|404547|404548|404548|404549|404550|404552|404553|404554|404555|404557|404558|404559|404560|404561|404562|404563|404564|404565|404566|404567|404568|404569|404570|404571|404572|404574|404576|411313|411320|415775|415776|415778|422462|422463|422467|424372|433327|433328|434711|438436|442414|442415|442418|442426|442428|442429|442481|446623|446625|446628|446631|470397|470398|470400|470406|470409|470410|470414|470420|470424|470662|470669|470679|470684|470690|470693|470701|470719|470723|470727|470737|470740|470740|470743|470744|470748|470752|470754|470759|470761|470765|470768|470769|470771|470774|470776|471160|471161|471163|471169|471172|471174|471180|471181|471182|471183|471190|471191|471196|471457|471458|471464|471466|471470|471474|471479|471482|471483|471487|471491|471492|471494|471503|471508|471510|471512|471514|471519|471520|471521|471524|471525|471529|471533|471534|471536|471537|471540|471544|471611|471613|471615|471619|471621|471622|471624|471641|471642|471647|471848|471849|471851|471852|471853|471854|471855|471856|471857|471858|471862|471863|471865|471866|471867|471868|471869|471870|471871|471872|471992|471995|471996|472003|472004|472005|472008|472010|472014|472021|472022|472024|472026|472027|472028|472029|472120|472121|472122|472123|472124|472125|472126|472127|472128|472129|472130|472131|472132|472133|472134|472135|472136|472137|472138|472139|472140|472141|472142|472143|472144|485824|485825|485826|485827|486474|486668|488102|488571|488590|488596|488598|488725|488912|488925|488942|488979|489090|489643|489759|489761|489776|489778|489989|490012|490612|490721|490725|491095|491292|491392|491398|491725|492088|492233|492519|492642|492762|493022|493182|493196|493228|493245|493572|493865|508080|508197|508224|508533|508538|508548|508650|508658|508665|510933|510938|510939|510940|510943|510944|510945|510946|510949|510950|510952|510955|510957|510958|510959|510960|511143|511143|513225|513394|534376|534378|534381|534383|534386|534389|534392|534399|534400|534401|534404|534407|534415|534417|534423|534426|534435|534437|534538|534545|534549|534551|534553|534555|534557|534558|534720|534721|534735|534738|534742|534753|534755|534758|534760|534761|534762|534768|534774|534776|534779|534780|534781|534788|534790|534795|534797|534800|534802|534803|534804|534805|534808|534813|534814|534815|534817|534819|534821|534825|534827|534828|534830|534832|534833|534838|534840|534842|534843|534845|534846|534848|534853|534865|534867|534873|534875|534877|534878|534879|534880|534884|534885|534893|534895|534896|534898|534900|534903|534906|534908|534914|534916|534919|534920|534922|534926|534928|534930|534934|534941|534943|535129|535130|535131|535132|535133|535135|535136|535137|535138|535139|535140|535141|535142|535143|535144|535145|535146|535148|535149|535150|535151|535152|535153|535154|535155|535156|535157|535158|535159|535160|537049|550778|572086|572091|572098|572101|572102|572107|572108|572111|572118|572124|572125|572398|572399|572407|572414|572417|572419|572421|572426|572432|572433|572436|572437|572440|572441|572443|572445|572451|572454|572464|573446|573449|573450|573451|573460|573464|573465|573468|573469|573471|573475|573476|573479|573486|573781|573784|573785|573789|573791|573792|573796|573797|573799|573800|573804|573805|573807|573816|573818|573823|573825|573826|573828|573829|573832|573833|573837|574195|574197|574199|574201|574203|574205|574207|574208|574211|574213|574218|574219|574527|574529|574531|574623|574625|574627|574628|574630|574632|574634|574636|574638|574640|574640|574643|574644|574714|574716|574719|574721|575286|575287|575288|575289|575291|575292|575293|575294|575295|575296|575297|575298|575299|575300|575301|575302|575303|575385|575386|575387|575388|575389|575390|575391|575392|575393|575394|575395|575396|575397|575398|575399|575400|575401|575402|575403|575404|575405|575406|575407|575408|575409|575410|577960|577963|578592|581847|583665|584095|584295|584391|584545|584786|585203|585311|585312|585686|586147|586214|586215|586583|586584|586615|586970|587754|587906|588113|588159|588212|588224|589170|589254|589440|589742|608932|610238|610246|611449|611943|613948|614092|614093|626382|649948|649949|649950|649951|649952|649953|649954|649954|649955|649956|649957|649958|649959|649960|649961|649962|649963|649964|649965|649966|649967|649968|649969|649970|649971|649972|649973|649974|649975|649976|649977|649978|649979|649980|649981|649982|649983|649984|649985|649986|649987|649988|649989|649990|649991|649992|649993|649994|649995|649996|649997|649998|649999|650000|650001|650002|650003|650004|650005|650006|650007|650008|650009|650010|650011|650012|650013|650014|650015|650016|650017|650018|650019|650020|650021|650022|650023|650024|650025|650026|650027|650028|653315|653320|653321|653324|653328|653329|653334|653337|653339|653342|653349|653350|653355|653357|653359|653366|653368|653370|653383|653387|653390|653392|653393|653394|653396|653399|653404|653405|653407|653409|653411|653412|653413|653415|653419|653420|653426|653436|653437|653439|653440|653443|653446|653448|653452|653454|653456|653459|653512|653514|653519|653520|653523|653641|653642|653648|653649|653651|653652|653656|653658|653659|653663|653664|653665|653668|653670|653673|653675|653704|653706|653710|653712|653713|653714|653716|653739|653740|653741|653742|653743|653744|653745|653746|653747|653748|653749|653750|653751|653752|653753|653754|653755|653756|653757|653758|653759|653760|653761|653762|653763|653764|653765|653766|653767|653768|653783|654968|656766|656772|684983|684985|684986|684987|684988|684989|689460|689461|689462|689463|689464|689465|689466|689468|689469|689472|689474|689476|689477|689478|689479|689482|689483|689484|689485|689488|690271|690272|690273|690275|694861|694862|694865|694866|694867|694868|694869|694870|694871|694872|694874|706210|706211|717779|729566|731466|743296|743298|743300|743300|743301|758454|758455|758458|758460|758461|758462|758463|758464|758465|758467|758468|760857|760858|760863|760881|773976|773977|773979|773980|773988|773994|773995|774002|774005|774006|774007|776797|776970|776971|786794|786798|786799|786802|786805|786807|786809|786810|786811|786814|792254|792255|792256|792257|792258|792259|792260|792261|792262|792263|792264|792265|792266|792267|792268|792269|792270|792271|792272|792273|792274|792275|792276|792277|792278|792279|792280|792281|792282|792283|792284|792285|792286|792287|792288|792289|792290|792291|792292|792293|792294|792295|792296|792297|792298|792299|792300|792301|792302|792303|792304|792305|792306|792307|792308|792309|792310|792311|792312|792313|792314|792315|792316|792317|792318|792319|792320|792321|792322|792323|792324|792325|792326|792327|792328|792329|792329|792330|792331|792332|792333|792334|792335|792336|792336|792337|792338|792339|792340|792341|792342|792343|792344|792345|792346|792347|792348|792349|792350|792351|792352|792353|792354|792355|792356|792357|792358|792359|792360|792361|792362|792363|792364|792365|792366|792367|792368|792369|792370|792371|792372|792373|792374|792375|792376|792377|792378|792379|792380|792381|792382|792383|792384|792385|792386|792387|792388|792389|792390|792391|792392|792393|792394|792395|792396|792397|792398|792399|792400|792401|792402|792403|792404|792405|792406|792407|792408|792409|792410|792411|792412|792413|792414|792415|792416|792417|792418|792419|792420|792421|792422|792423|792424|792425|792426|792427|792428|792429|792430|792431|792432|792688|793884|794087|800307|800308|801745|801746|801747|801748|802242|806200|816418|816418|816419|816419|816420|816432|821615|821616|821617|821618|821619|821620|821621|821622|821623|821624|821625|821626|821627|821628|821629|821630|821631|821632|821633|821634|821635|821636|821637|821638|821639|821641|821642|821643|821644|821645|821646|821647|821648|821649|821650|821651|821652|821653|821654|821655|821656|821657|821658|821659|821660|821661|821662|821663|821664|821665|821666|821667|821668|821669|821670|821671|821672|821673|821674|821675|821676|821677|821678|821679|821680|821681|821682|821683|821684|821685|821686|821687|821688|821689|821690|821691|821692|821693|821694|821695|821696|821697|821698|821699|821700|821701|821702|821703|821704|821705|821706|821707|821708|821709|821710|821711|821712|821713|821714|821715|821716|821717|821718|821719|821720|821721|821722|821723|821724|821725|821726|821727|821728|821729|821730|821731|821732|821733|821734|821735|821736|821737|821738|821739|821740|821741|821742|821743|821744|821745|821747|821748|821749|821750|821751|821752|821753|821754|821755|821756|821757|821758|821759|821760|821761|821762|821763|821764|821765|821766|821767|821768|821769|821770|821771|821772|821773|821775|821776|821777|821778|849924|849925|849926|849927|849928|849929|849930|849931|849932|849933|849934|849935|849936|849937|849938|849939|849940|849941|849942|849943|849944|849945|849946|849947|849948|849949|849950|849951|849952|849953|849954|849955|849956|849957|849958|849959|849960|849961|849962|849963|849964|849965|849966|849967|849968|849969|849970|849971|849972|849973|849974|849975|849976|849977|849978|849979|849980|849981|849982|849983|849984|849985|849986|849987|849988|849989|849990|849991|849992|849993|849994|849995|849996|849997|849998|849999|850000|850001|850002|850003|850004|850005|850006|850007|850008|850009|850010|850011|850012|850013|850014|850015|850016|851958|851960|851962|851964|851966|852495|852497|852500|852503|852507|852509|852513|852976|852978|853038|853039|853040|858450|858756|903018|903023|905736|905810|905811|929682|929683|929684|929685|929686|929687|929688|929689|929690|929691|929692|929693|929694|929695|929696|929697|929698|929699|929700|929701|929702|929703|929704|929705|929706|929707|929708|929709|929710|929711|929712|929713|929714|929715|929716|929717|929718|939547|939548|939549|939550|939551|939552|939553|939554|939555|939556|939557|939558|939559|939560|939561|939562|939563|939564|939565|939566|939567|939568|939569|939570|939571|939572|939573|939574|939575|939576|939577|939578|939579|939579|939580|939581|939582|939583|940559|940560|941304|941305|941306|941307|941308|941309|941310|951735|951736|951737|951738|951739|951740|951741|951742|951743|951744|951745|951746|951747|951748|951749|951750|951751|951752|951753|951754|951755|951756|951757|951758|951759|951760|951761|951762|951763|951764|951765|951766|951767|951768|951769|951770|951771|951772|959238|959239|959240|959241|959242|959243|959244|959245|959246|959247|959248|959249|959250|959251|959252|959253|959254|959255|959256|959257|959258|959259|959260|959261|959262|959263|959264|959265|959266|959267|959268|959269|959270|959271|959272|959273|959274|959275|959276|959277|959278|959279|959280|959281|959282|960379|960380|960381|960382|960982|960983|960984|960985|960986|961398|961902|963398|964605|964606|970147|970409|971203|971204|972405|972406|972407|972408|972409|972410|972411|972412|972413|972414|972415|972416|972417|972418|972419|972420|972421|972422|972423|972424|972425|972426|972427|972428|972429|972430|972431|972432|972433|972434|972435|972436|972437|972438|972511|972512|972523|972524|972525|972526|972762|972763|972764|972765|972766|972767|972768|974567|977315", "text": "Duchenne muscular dystrophy" }, { - "baseId": "26247|26330|488359", + "upstreamId": "26247|26330|488359", "text": "Becker muscular dystrophy, atypical" }, { - "baseId": "26252|26265|26266|26269|26276|26280|26287|26308|26315|26316|26319|26322|26325|26327|38917|100328|100376|100476|100484|100641|100657|100663|100676|100683|100705|100761|100763|140808|140808|140809|140820|171247|171248|172184|175867|177179|190826|192114|193039|198573|227452|243790|259052|266735|268525|273828|361092|361267|361273|361890|361891|404548|434711|470740|470754|471519|485824|485825|485826|485827|488725|492088|511143|513395|535156|550770|550778|574640|588159|611449|613947|649954|743300|792329|792336|801559|816418|816419|816420|816432|939579|961398|964604|972405|972406|972407|972408|972409|972410|972411|972412|972413|972414|972415|972416|972417|972418|972419|972420|972421|972422|972423|972424|972425|972426|972427|972428|972429|972430|972431|972432|972433|972434|972435|972436|972437|972438", + "upstreamId": "26252|26265|26266|26269|26276|26280|26287|26308|26315|26316|26319|26322|26325|26327|38917|100328|100376|100476|100484|100641|100657|100663|100676|100683|100705|100761|100763|140808|140808|140809|140820|171247|171248|172184|175867|177179|190826|192114|193039|198573|227452|243790|259052|266735|268525|273828|361092|361267|361273|361890|361891|404548|434711|470740|470754|471519|485824|485825|485826|485827|488725|492088|511143|513395|535156|550770|550778|574640|588159|611449|613947|649954|743300|792329|792336|801559|816418|816419|816420|816432|939579|961398|964604|972405|972406|972407|972408|972409|972410|972411|972412|972413|972414|972415|972416|972417|972418|972419|972420|972421|972422|972423|972424|972425|972426|972427|972428|972429|972430|972431|972432|972433|972434|972435|972436|972437|972438", "text": "Becker muscular dystrophy" }, { - "baseId": "26270|26306|26307|26308|26318|26320|26321|26324|26327|38917|100296|100319|100322|100328|100333|100336|100346|100353|100361|100367|100371|100373|100376|100382|100387|100394|100395|100410|100413|100416|100424|100428|100439|100448|100454|100476|100487|100500|100503|100504|100515|100516|100517|100518|100532|100537|100542|100548|100556|100557|100558|100574|100575|100579|100583|100602|100603|100641|100642|100647|100656|100657|100657|100665|100667|100671|100676|100683|100684|100705|100709|100716|100744|100754|171247|172184|175867|177179|177586|189047|190826|191904|192008|192114|192653|193039|193288|195522|198564|198572|198573|198582|198589|198591|198593|227852|231251|243790|243791|243795|243801|257810|259052|259180|266198|266626|266724|266740|268949|268969|269184|269255|269456|269576|269952|270216|273824|273828|274569|274769|339148|339149|339150|339152|339153|339159|339160|339164|339167|348271|348676|348677|348683|348684|348687|348688|348694|348695|348701|348702|348704|348706|348708|348709|348710|348715|348716|348717|348718|348724|352198|352199|352200|352201|352202|352203|352204|352205|352206|352207|352209|352218|352220|352831|352832|352833|352834|352835|352836|352837|352838|352839|352840|352841|352842|352843|352844|352845|361092|361095|361096|361890|361891|378257|378274|404223|404247|404548|470740|470754|471508|471854|508085|508551|510939|510940|511143|514135|534733|534880|538509|550778|572451|574640|611449|649974|649978|677126|689472|689476|689483|694861|694871|706211|758468|902999|903000|903001|903002|903003|903004|903005|903006|903007|903008|903009|903010|903011|903012|903013|903014|903015|903016|903017|903018|903019|903020|903021|903022|903023|903024|903025|903026|903027|903028|903029|903030|903031|903032|903033|903472|903473|920009|920010|920011|920012|920013|920448|920449", + "upstreamId": "26270|26306|26307|26308|26318|26320|26321|26324|26327|38917|100296|100319|100322|100328|100333|100336|100346|100353|100361|100367|100371|100373|100376|100382|100387|100394|100395|100410|100413|100416|100424|100428|100439|100448|100454|100476|100487|100500|100503|100504|100515|100516|100517|100518|100532|100537|100542|100548|100556|100557|100558|100574|100575|100579|100583|100602|100603|100641|100642|100647|100656|100657|100657|100665|100667|100671|100676|100683|100684|100705|100709|100716|100744|100754|171247|172184|175867|177179|177586|189047|190826|191904|192008|192114|192653|193039|193288|195522|198564|198572|198573|198582|198589|198591|198593|227852|231251|243790|243791|243795|243801|257810|259052|259180|266198|266626|266724|266740|268949|268969|269184|269255|269456|269576|269952|270216|273824|273828|274569|274769|339148|339149|339150|339152|339153|339159|339160|339164|339167|348271|348676|348677|348683|348684|348687|348688|348694|348695|348701|348702|348704|348706|348708|348709|348710|348715|348716|348717|348718|348724|352198|352199|352200|352201|352202|352203|352204|352205|352206|352207|352209|352218|352220|352831|352832|352833|352834|352835|352836|352837|352838|352839|352840|352841|352842|352843|352844|352845|361092|361095|361096|361890|361891|378257|378274|404223|404247|404548|470740|470754|471508|471854|508085|508551|510939|510940|511143|514135|534733|534880|538509|550778|572451|574640|611449|649974|649978|677126|689472|689476|689483|694861|694871|706211|758468|902999|903000|903001|903002|903003|903004|903005|903006|903007|903008|903009|903010|903011|903012|903013|903014|903015|903016|903017|903018|903019|903020|903021|903022|903023|903024|903025|903026|903027|903028|903029|903030|903031|903032|903033|903472|903473|920009|920010|920011|920012|920013|920448|920449", "text": "Dilated cardiomyopathy 3B" }, { - "baseId": "26275", + "upstreamId": "26275", "text": "Duchenne muscular dystrophy, mental retardation, and absence of erg b-wave" }, { - "baseId": "26277|26285|26313", + "upstreamId": "26277|26285|26313", "text": "Intermediate muscular dystrophy" }, { - "baseId": "26312", + "upstreamId": "26312", "text": "X-linked DMD-related dystrophinopathy" }, { - "baseId": "26331|26332|26333|26335|26336|26337|26338|26339|26340|26341|26342|26343|26344|26345|26346|26347|26348|26349|26351|26352|26353|26354|26355|26356|44302|44303|44304|44305|44306|44307|44308|98224|98225|98226|98227|98228|98231|98232|98234|171860|177044|177307|177455|177456|190198|190199|194257|195849|215175|215617|215618|215619|215620|265573|266490|273515|275414|339010|339017|339024|339026|339030|339036|339037|339041|348580|348582|348583|348584|348587|348588|348591|348593|352105|352107|352108|352113|352114|352117|352118|352123|352124|352787|352788|352789|352790|352791|353864|353952|360538|363912|377878|378997|379086|379953|379954|379955|411157|415746|422426|422427|422428|430689|438468|438469|442393|470545|470547|470556|470564|470573|470574|470576|471350|471351|471354|471356|471792|471798|471802|471808|472082|472083|472084|472085|472086|472087|472260|481244|507926|508957|513481|513683|514125|534499|534587|534588|534597|534599|534629|534632|534649|534657|534667|534673|534675|534678|534682|534687|534689|535077|535079|535081|537590|549826|553405|572269|572278|572284|572292|572295|572300|573651|573654|573655|573666|574336|574337|574338|574345|574347|575354|575355|575356|575357|575358|576356|576357|576358|577937|577938|577940|580678|580835|580978|581916|610687|610689|612113|612114|612115|612116|612117|612118|612119|612120|614106|620698|623388|649771|649772|649773|649774|649775|649776|649777|649778|649779|649780|649781|649782|649783|649784|649785|649786|649787|649788|649789|649790|649791|649792|649793|649794|649795|649796|653308|653310|653348|653627|653695|653738|656741|677040|677042|677061|677063|679725|679726|679727|681814|682736|694817|694818|694819|694820|694821|694823|694824|695900|706146|706147|717705|729480|729481|729482|729484|743206|773862|773864|773865|773866|773867|773868|780091|786738|786741|792142|792143|792144|792145|792146|792147|792148|792149|792150|821487|821568|821569|821570|849731|849732|849733|849734|849735|849736|849737|849738|849739|849740|849741|849742|849743|849744|849745|849746|849747|849748|849749|849750|849751|849752|849753|849754|849755|849756|849757|849758|849759|849760|849761|849762|849763|849764|849765|851942|858542|858694|858716|860801|861087|861088|861126|902846|902847|902848|902849|902850|902851|902852|902853|902854|902855|902856|902857|902858|902859|902860|902861|902862|902863|902864|902865|902866|902867|902868|902869|902870|903461|919981|920440|929600|929601|929602|929603|929604|929605|929606|929607|929608|939471|939472|939473|939474|939475|939476|941287|951641|951642|951643|951644|951645|951646|951647|951648|951649|951650|951651|951652|959188|959189|960365|961415|962187|962912|964573|964574|964575|964576|964577|964578|969328|971586|980091|980092|980093|980094|983471|983568|983803", + "upstreamId": "26331|26332|26333|26335|26336|26337|26338|26339|26340|26341|26342|26343|26344|26345|26346|26347|26348|26349|26351|26352|26353|26354|26355|26356|44302|44303|44304|44305|44306|44307|44308|98224|98225|98226|98227|98228|98231|98232|98234|171860|177044|177307|177455|177456|190198|190199|194257|195849|215175|215617|215618|215619|215620|265573|266490|273515|275414|339010|339017|339024|339026|339030|339036|339037|339041|348580|348582|348583|348584|348587|348588|348591|348593|352105|352107|352108|352113|352114|352117|352118|352123|352124|352787|352788|352789|352790|352791|353864|353952|360538|363912|377878|378997|379086|379953|379954|379955|411157|415746|422426|422427|422428|430689|438468|438469|442393|470545|470547|470556|470564|470573|470574|470576|471350|471351|471354|471356|471792|471798|471802|471808|472082|472083|472084|472085|472086|472087|472260|481244|507926|508957|513481|513683|514125|534499|534587|534588|534597|534599|534629|534632|534649|534657|534667|534673|534675|534678|534682|534687|534689|535077|535079|535081|537590|549826|553405|572269|572278|572284|572292|572295|572300|573651|573654|573655|573666|574336|574337|574338|574345|574347|575354|575355|575356|575357|575358|576356|576357|576358|577937|577938|577940|580678|580835|580978|581916|610687|610689|612113|612114|612115|612116|612117|612118|612119|612120|614106|620698|623388|649771|649772|649773|649774|649775|649776|649777|649778|649779|649780|649781|649782|649783|649784|649785|649786|649787|649788|649789|649790|649791|649792|649793|649794|649795|649796|653308|653310|653348|653627|653695|653738|656741|677040|677042|677061|677063|679725|679726|679727|681814|682736|694817|694818|694819|694820|694821|694823|694824|695900|706146|706147|717705|729480|729481|729482|729484|743206|773862|773864|773865|773866|773867|773868|780091|786738|786741|792142|792143|792144|792145|792146|792147|792148|792149|792150|821487|821568|821569|821570|849731|849732|849733|849734|849735|849736|849737|849738|849739|849740|849741|849742|849743|849744|849745|849746|849747|849748|849749|849750|849751|849752|849753|849754|849755|849756|849757|849758|849759|849760|849761|849762|849763|849764|849765|851942|858542|858694|858716|860801|861087|861088|861126|902846|902847|902848|902849|902850|902851|902852|902853|902854|902855|902856|902857|902858|902859|902860|902861|902862|902863|902864|902865|902866|902867|902868|902869|902870|903461|919981|920440|929600|929601|929602|929603|929604|929605|929606|929607|929608|939471|939472|939473|939474|939475|939476|941287|951641|951642|951643|951644|951645|951646|951647|951648|951649|951650|951651|951652|959188|959189|960365|961415|962187|962912|964573|964574|964575|964576|964577|964578|969328|971586|980091|980092|980093|980094|983471|983568|983803", "text": "Adrenoleukodystrophy" }, { - "baseId": "26349|26350", + "upstreamId": "26349|26350", "text": "Addison's disease" }, { - "baseId": "26357|26358|26359|26360|26361|26362|26363|26364|26365|34245|34246|792099|918496", + "upstreamId": "26357|26358|26359|26360|26361|26362|26363|26364|26365|34245|34246|792099|918496", "text": "Deafness dystonia syndrome" }, { - "baseId": "26366", + "upstreamId": "26366", "text": "Asperger syndrome X-linked 1" }, { - "baseId": "26366|920459", + "upstreamId": "26366|920459", "text": "Autism, susceptibility to, X-linked 1" }, { - "baseId": "26367|26368|26369|26370|26371|26372|26373|26374|26375", + "upstreamId": "26367|26368|26369|26370|26371|26372|26373|26374|26375", "text": "Cleft palate with ankyloglossia" }, { - "baseId": "26376|339549|339550|339552|339558|339559|339561|349035|349041|349045|349047|352446|352447|352947|352948|352949|352950|352951|439183|717870|729719|743485|792511|903209|903210|903211|903212|903213|903214|903215|903484|903485|903486", + "upstreamId": "26376|339549|339550|339552|339558|339559|339561|349035|349041|349045|349047|352446|352447|352947|352948|352949|352950|352951|439183|717870|729719|743485|792511|903209|903210|903211|903212|903213|903214|903215|903484|903485|903486", "text": "Cleft palate with or without ankyloglossia, X-linked" }, { - "baseId": "26377|26378|26379|191793|205357|205358|362397|411119|415736|439626|470456|470461|471241|495790|508486|514278|535007|535008|615948|649658|653901|729380|792117|849584|858584|951583|964567|976677", + "upstreamId": "26377|26378|26379|191793|205357|205358|362397|411119|415736|439626|470456|470461|471241|495790|508486|514278|535007|535008|615948|649658|653901|729380|792117|849584|858584|951583|964567|976677", "text": "Syndromic X-linked mental retardation, Cabezas type" }, { - "baseId": "26378|39226|49024|178380|181426|181431|181448|181453|203766|226235|226236|263192|263224|263257|263264|263284|263332|263344|263346|263360|263364|263405|263996|264749|360870|360912|361101|408757|513978|514048|514112|514124|514176|514199|514211|551271|551272|576328|590545|609036|609079|610516|610519|622034|622207|622834|623603|678949|905852|905853|905854|961035|971289|971411", + "upstreamId": "26378|39226|49024|178380|181426|181431|181448|181453|203766|226235|226236|263192|263224|263257|263264|263284|263332|263344|263346|263360|263364|263405|263996|264749|360870|360912|361101|408757|513978|514048|514112|514124|514176|514199|514211|551271|551272|576328|590545|609036|609079|610516|610519|622034|622207|622834|623603|678949|905852|905853|905854|961035|971289|971411", "text": "Abnormal facial shape" }, { - "baseId": "26381|26382|26383|26384|26385|26387|26388|26390|26391|26392|26393|26394|26395|26396|26397|26398|26399|26400|26401|26402|26403|26404|26405|26405|26406|26407|26408|26409|26411|26412|26413|26414|26415|26416|26417|26418|26419|26421|26422|26423|26424|26425|26426|26427|26428|26429|26430|26431|26432|26433|26434|26435|26436|44421|44422|44423|44424|44425|44426|44427|44428|44429|44430|192073|237392|237392|257719|265134|270564|338671|338673|338675|338677|348274|348276|351929|351930|351932|352708|485806|485808|487874|488019|488067|553416|610420|621657|621658|621659|621660|621875|649592|758201|792100|792101|792102|902683|902684|902685|902686|902687|917331|917332|917333|961900", + "upstreamId": "26381|26382|26383|26384|26385|26387|26388|26390|26391|26392|26393|26394|26395|26396|26397|26398|26399|26400|26401|26402|26403|26404|26405|26405|26406|26407|26408|26409|26411|26412|26413|26414|26415|26416|26417|26418|26419|26421|26422|26423|26424|26425|26426|26427|26428|26429|26430|26431|26432|26433|26434|26435|26436|44421|44422|44423|44424|44425|44426|44427|44428|44429|44430|192073|237392|237392|257719|265134|270564|338671|338673|338675|338677|348274|348276|351929|351930|351932|352708|485806|485808|487874|488019|488067|553416|610420|621657|621658|621659|621660|621875|649592|758201|792100|792101|792102|902683|902684|902685|902686|902687|917331|917332|917333|961900", "text": "X-linked agammaglobulinemia" }, { - "baseId": "26381|26387|26402|26416|26422|29848|29849|29851|29852|166058|416155|433631|433632|485798|485799|485800|485801|485802|485803|485804|485805|485806|485807|485808|485809|485810|578566|799759|799760|961903", + "upstreamId": "26381|26387|26402|26416|26422|29848|29849|29851|29852|166058|416155|433631|433632|485798|485799|485800|485801|485802|485803|485804|485805|485806|485807|485808|485809|485810|578566|799759|799760|961903", "text": "Autosomal recessive agammaglobulinemia 1" }, { - "baseId": "26381|26386|26387|26397|26402|26405|26410|26415|26416|26417|26420|26422|44425|44426|192073|237392|237392|257719|265134|270564|338671|338673|338675|338677|348276|351929|351930|351932|352708|363082|363083|378894|446452|470443|470445|472042|472043|485801|485806|534429|534455|534459|534978|572151|573508|573515|574234|574235|574236|574241|574243|621657|621660|621875|624703|649591|649592|649593|649594|649595|649596|649597|649598|649599|649600|649601|649602|649603|649604|649605|649606|649607|649608|649609|649610|649611|649612|649613|649614|649615|653432|653680|729328|743061|743062|758201|821540|821541|849509|849510|849511|849512|849513|849514|849515|849516|849517|849518|849519|849520|852450|852533|852954|852955|902683|902684|902685|902686|902687|917333|920432|929528|929529|929530|939384|939385|939386|939387|939388|940538|940539|940540|940541|951558|951559|951560|951561|959147|960353|960970", + "upstreamId": "26381|26386|26387|26397|26402|26405|26410|26415|26416|26417|26420|26422|44425|44426|192073|237392|237392|257719|265134|270564|338671|338673|338675|338677|348276|351929|351930|351932|352708|363082|363083|378894|446452|470443|470445|472042|472043|485801|485806|534429|534455|534459|534978|572151|573508|573515|574234|574235|574236|574241|574243|621657|621660|621875|624703|649591|649592|649593|649594|649595|649596|649597|649598|649599|649600|649601|649602|649603|649604|649605|649606|649607|649608|649609|649610|649611|649612|649613|649614|649615|653432|653680|729328|743061|743062|758201|821540|821541|849509|849510|849511|849512|849513|849514|849515|849516|849517|849518|849519|849520|852450|852533|852954|852955|902683|902684|902685|902686|902687|917333|920432|929528|929529|929530|939384|939385|939386|939387|939388|940538|940539|940540|940541|951558|951559|951560|951561|959147|960353|960970", "text": "X-linked agammaglobulinemia with growth hormone deficiency" }, { - "baseId": "26384|28188|29043|33344|39043|45898|76319|94255|125897|153737|205148|226599|359705|409927|424449|472216|549127|557045|570568|620059|621659|624766|650944|791014|799281|801876|815884|815885|815886|815887|815888|815889|815890|815891|815892|815893|815894|815895|815898|815901|815903|815904|815905|815906|815907|815908|815909|815910|815911|815912|815913|815914|815915|815916|815917|815919|815921|815922|815923|815924|815928|815929|815930|815931|815932|815933|815934|815935|815936|815937|815938|815939|815940|815941|815942|815944|815945|815947|815948|815949|815950|815951|815952|815953|815954", + "upstreamId": "26384|28188|29043|33344|39043|45898|76319|94255|125897|153737|205148|226599|359705|409927|424449|472216|549127|557045|570568|620059|621659|624766|650944|791014|799281|801876|815884|815885|815886|815887|815888|815889|815890|815891|815892|815893|815894|815895|815898|815901|815903|815904|815905|815906|815907|815908|815909|815910|815911|815912|815913|815914|815915|815916|815917|815919|815921|815922|815923|815924|815928|815929|815930|815931|815932|815933|815934|815935|815936|815937|815938|815939|815940|815941|815942|815944|815945|815947|815948|815949|815950|815951|815952|815953|815954", "text": "Inherited Immunodeficiency Diseases" }, { - "baseId": "26389", + "upstreamId": "26389", "text": "Hypogammaglobulinemia, X-linked" }, { - "baseId": "26438|26439|26440|195769|208853|208854|411112|481502|538503|575321|689331|792116|798802|905860|976676", + "upstreamId": "26438|26439|26440|195769|208853|208854|411112|481502|538503|575321|689331|792116|798802|905860|976676", "text": "Mental retardation, syndromic 14, X-linked" }, { - "baseId": "26441|26442|26443|26444|26445|132417|513685|581217|920006|920007|920547|920548|920549", + "upstreamId": "26441|26442|26443|26444|26445|132417|513685|581217|920006|920007|920547|920548|920549", "text": "IFAP syndrome with or without BRESHECK syndrome" }, { - "baseId": "26446|26447|26448|26449|26450|26451|26452|26453|26454|26455|26456|26457|26458|134557|209083|209084|430820|430821|430822|470878|534837|534899|535026|540039|572527|572529|573903|573904|574750|614509|650102|650103|650104|650105|650106|654154|679834|706261|717811|717812|729636|743383|786860|822228|850160|850161|850162|850163|850164|850165|851974|929764|929765|929766|929767|929768|929769|929770|939637|939638|941312|951848|951849|951850|951851|980491", + "upstreamId": "26446|26447|26448|26449|26450|26451|26452|26453|26454|26455|26456|26457|26458|134557|209083|209084|430820|430821|430822|470878|534837|534899|535026|540039|572527|572529|573903|573904|574750|614509|650102|650103|650104|650105|650106|654154|679834|706261|717811|717812|729636|743383|786860|822228|850160|850161|850162|850163|850164|850165|851974|929764|929765|929766|929767|929768|929769|929770|939637|939638|941312|951848|951849|951850|951851|980491", "text": "Insulin-dependent diabetes mellitus secretory diarrhea syndrome" }, { - "baseId": "26459|26460|26461|26462|26463|26464|192535|339181|339183|339192|339195|339198|339204|348731|352228|352230|352846|352847|352848|352849|352850|352851|587381|774037|903037|903038|903039|903040|903041|903042|903043|903044|903045|903046|903047|920026", + "upstreamId": "26459|26460|26461|26462|26463|26464|192535|339181|339183|339192|339195|339198|339204|348731|352228|352230|352846|352847|352848|352849|352850|352851|587381|774037|903037|903038|903039|903040|903041|903042|903043|903044|903045|903046|903047|920026", "text": "Congenital stationary night blindness, type 1A" }, { - "baseId": "26465|26466|26467|26468|26469|26470|34117|34119|170077|170078|170079|170081|170082|170085|208917|788950|792136", + "upstreamId": "26465|26466|26467|26468|26469|26470|34117|34119|170077|170078|170079|170081|170082|170085|208917|788950|792136", "text": "Child syndrome" }, { - "baseId": "26471|133896|208881|446508", + "upstreamId": "26471|133896|208881|446508", "text": "Mental retardation 46, X-linked" }, { - "baseId": "26472|26473|26475|26476|26477|26478|26479|26480|141661|141662|187961|213507|243722|257760|263864|338963|338964|348520|348522|348525|348530|348531|352091|352092|352774|352775|352776|404133|471742|471745|535052|535056|536053|536054|536055|536056|536057|572245|573607|573609|574323|649730|649731|805125|849690|849691|902817|902818|902819|902820|902821|902822|902823|902824|902825|902826|902827|902828|902829|929580|939455|951626|951627", + "upstreamId": "26472|26473|26475|26476|26477|26478|26479|26480|141661|141662|187961|213507|243722|257760|263864|338963|338964|348520|348522|348525|348530|348531|352091|352092|352774|352775|352776|404133|471742|471745|535052|535056|536053|536054|536055|536056|536057|572245|573607|573609|574323|649730|649731|805125|849690|849691|902817|902818|902819|902820|902821|902822|902823|902824|902825|902826|902827|902828|902829|929580|939455|951626|951627", "text": "Heterotaxy, visceral, 1, X-linked" }, { - "baseId": "26474|26478", + "upstreamId": "26474|26478", "text": "Congenital heart defects, multiple types, 1, X-linked" }, { - "baseId": "26478|38910|99372|187961|194866|195603|205672|245218|245222|257770|338963|338964|338984|338985|338987|338992|338998|339001|339005|348520|348522|348525|348530|348531|348561|348562|348579|352091|352092|352098|352099|352102|352774|352775|352776|352780|352781|352782|352783|352784|352785|352786|404139|404461|470515|471328|534596|575340|684959|902817|902818|902819|902820|902821|902822|902823|902824|902825|902826|902827|902828|902829|902835|902836|902837|902838|902839|902840|902841|902842|902843|902844|902845", + "upstreamId": "26478|38910|99372|187961|194866|195603|205672|245218|245222|257770|338963|338964|338984|338985|338987|338992|338998|339001|339005|348520|348522|348525|348530|348531|348561|348562|348579|352091|352092|352098|352099|352102|352774|352775|352776|352780|352781|352782|352783|352784|352785|352786|404139|404461|470515|471328|534596|575340|684959|902817|902818|902819|902820|902821|902822|902823|902824|902825|902826|902827|902828|902829|902835|902836|902837|902838|902839|902840|902841|902842|902843|902844|902845", "text": "VACTERL association, X-linked, with or without hydrocephalus" }, { - "baseId": "26478|187961|338963|338964|348520|348522|348525|348530|348531|352091|352092|352774|352775|352776", + "upstreamId": "26478|187961|338963|338964|348520|348522|348525|348530|348531|352091|352092|352774|352775|352776", "text": "Congenital heart defects 1, nonsyndromic, 1" }, { - "baseId": "26481|26482|26483|26484|26485|101001|153772|199813|248741|265040|430846|578597|801552|961794|964624", + "upstreamId": "26481|26482|26483|26484|26485|101001|153772|199813|248741|265040|430846|578597|801552|961794|964624", "text": "HSD10 disease" }, { - "baseId": "26486|26487|26488|26489|26490|26491|26496|26497|360602|446591|610414|614505|905011|905015|919992|963310", + "upstreamId": "26486|26487|26488|26489|26490|26491|26496|26497|360602|446591|610414|614505|905011|905015|919992|963310", "text": "Incontinentia pigmenti syndrome" }, { - "baseId": "26489|26496|446591|905011|905015", + "upstreamId": "26489|26496|446591|905011|905015", "text": "ECTODERMAL DYSPLASIA AND IMMUNODEFICIENCY 1, MALE-RESTRICTED" }, { - "baseId": "26492|26493|26495|26498|26499|26500|26501|26502|26505|45041|45042|45043|45044|45045|45046|79130|360602|424453|614505", + "upstreamId": "26492|26493|26495|26498|26499|26500|26501|26502|26505|45041|45042|45043|45044|45045|45046|79130|360602|424453|614505", "text": "Ectodermal dysplasia and immunodeficiency 1" }, { - "baseId": "26503|614505", + "upstreamId": "26503|614505", "text": "Immunodeficiency without anhidrotic ectodermal dysplasia" }, { - "baseId": "26504|26506|26507|26508|79125|79126|614505|905009|905010|905014", + "upstreamId": "26504|26506|26507|26508|79125|79126|614505|905009|905010|905014", "text": "Familial atypical mycobacteriosis, type 1, X-linked" }, { - "baseId": "26509|26510|26511|26513|140225|140226|257851|257853|257854|257855|339425|352342|352343|352916|620699|903111|903112|903113|903114|961490|961491|961492", + "upstreamId": "26509|26510|26511|26513|140225|140226|257851|257853|257854|257855|339425|352342|352343|352916|620699|903111|903112|903113|903114|961490|961491|961492", "text": "Ovarian dysgenesis 2" }, { - "baseId": "26510|26511|26512|26513", + "upstreamId": "26510|26511|26512|26513", "text": "Premature ovarian failure 4" }, { - "baseId": "26515|26516|26517|26518|38904|97547|101275|142903|142904|142906|142907|142909|142910|142911|142912|142913|142914|169937|169938|169939|169940|169941|169942|203981|203985|203986|203988|245213|362395|377787|404120|404453|411132|426407|471285|471288|471722|471733|471736|472064|472065|508507|534533|572224|573553|575333|580775|613522|615978|649712|649713|649714|649715|649716|758301|773769|792124|792125|794082|798807|802043|821559|849665|849666|929573|929574|929575|929576|939442|939443|939444|951617|951618|951619|960973|976678|976679", + "upstreamId": "26515|26516|26517|26518|38904|97547|101275|142903|142904|142906|142907|142909|142910|142911|142912|142913|142914|169937|169938|169939|169940|169941|169942|203981|203985|203986|203988|245213|362395|377787|404120|404453|411132|426407|471285|471288|471722|471733|471736|472064|472065|508507|534533|572224|573553|575333|580775|613522|615978|649712|649713|649714|649715|649716|758301|773769|792124|792125|794082|798807|802043|821559|849665|849666|929573|929574|929575|929576|939442|939443|939444|951617|951618|951619|960973|976678|976679", "text": "Christianson syndrome" }, { - "baseId": "26519|26520|26521|38899|209030|265258|339130|339135|339137|339138|339141|348672|352192|352194|352196|352825|352826|352827|352828|352829|352830|583205|611448|611470|792253|801566|902994|902995|902996|902997|902998|903470|903471|964603|971202", + "upstreamId": "26519|26520|26521|38899|209030|265258|339130|339135|339137|339138|339141|348672|352192|352194|352196|352825|352826|352827|352828|352829|352830|583205|611448|611470|792253|801566|902994|902995|902996|902997|902998|903470|903471|964603|971202", "text": "Intellectual disability, X-linked 21" }, { - "baseId": "26522|26523|26524|26525|26526|26527|26528|26529|26530|26531|170113|170114|170115|170116|170117|170118|170119|170120|170121|170122|170123|170124|170125|170126|170127|170128|170129|170130|170131|170132|170133|170134|170135|170136|209064|209065|209066|209067|209068|209069|792460|792461|798815|977305", + "upstreamId": "26522|26523|26524|26525|26526|26527|26528|26529|26530|26531|170113|170114|170115|170116|170117|170118|170119|170120|170121|170122|170123|170124|170125|170126|170127|170128|170129|170130|170131|170132|170133|170134|170135|170136|209064|209065|209066|209067|209068|209069|792460|792461|798815|977305", "text": "Chondrodysplasia punctata 2 X-linked dominant" }, { - "baseId": "26532|170113|205599|205600", + "upstreamId": "26532|170113|205599|205600", "text": "MEND syndrome" }, { - "baseId": "26533|26534|26535|26536|26539|26540|26541|26541|26542|26543|26544|26544|33489|33489|100006|100007|100008|100009|100010|100011|100011|100012|100012|100013|100013|100015|140412|140414|140415|140416|140417|140419|153499|153500|153501|153502|153503|153504|153505|153507|153509|153510|153511|153511|153512|153512|153513|153513|153515|153516|153516|153517|153518|153518|153520|153522|153523|153524|153525|153527|153528|153531|153532|153533|153534|153536|153537|153538|153539|153540|153541|153541|153542|153543|153544|153550|153551|153552|153553|153554|153555|153555|153556|153557|153558|153559|153559|153560|153562|153562|153563|153564|153565|153567|153568|153569|153570|153571|153572|165869|165869|165876|165877|165883|165886|165889|165891|165893|166453|166460|166514|166538|166539|166540|166544|166545|166547|166547|166548|170096|170097|170098|170099|170100|170101|170102|170104|170106|170107|170108|187436|187438|187439|187440|187441|187443|187444|187445|187446|187447|187448|187449|187451|187452|187453|187577|187580|187584|187586|187587|187591|187593|187595|187597|187598|187600|187605|187608|187618|187620|187621|187622|187624|187624|187625|187627|187632|191662|208989|208990|208993|214546|214547|227924|228220|243784|257790|257791|272497|360565|360605|362354|363972|378006|378025|379152|379159|379266|403990|404159|404163|404186|404509|411214|411215|411218|411223|411227|411231|426443|430758|430759|430760|430761|430972|435196|446600|470650|471428|471431|471434|471435|471436|471841|472112|472113|472114|480623|481345|481346|482246|482247|486783|486784|486785|488163|507990|508000|508099|508483|508488|508960|534520|534680|534683|534686|534690|534694|534765|534772|534773|534778|535117|535118|535119|535120|535121|535122|539111|539112|552251|552252|552253|552253|572370|572373|572376|572379|573755|573760|574188|574377|574380|574438|574440|575376|580760|580887|580917|611442|614506|649896|649897|649898|649899|649900|649901|649902|649903|649904|649905|649906|649907|649907|649908|649909|649910|649911|649912|653384|653782|656757|689451|689452|690267|758415|758415|786768|792184|792185|792186|792187|792188|792189|792190|792191|792192|792193|792194|798249|802047|802048|802065|802066|821495|821572|821573|821574|821575|821576|821577|822221|822222|849851|849852|849853|849854|849855|849856|849857|849858|849859|849860|849861|849862|849863|849864|849865|849870|849874|851950|852483|852972|852972|858367|858368|858369|858370|858371|858372|858373|858374|858375|858376|858377|858381|858382|858516|904944|904945|904946|906351|917738|917738|920000|920000|920442|929637|929638|929639|929640|939507|939508|939509|939510|939515|939516|939517|940548|941292|941293|951692|951693|951694|951695|951696|951697|951698|959216|959217|959218|959219|960372|960977|960978|964586|964587|964588|964589|964590|964702|969243|971195|971196|971197|976825", + "upstreamId": "26533|26534|26535|26536|26539|26540|26541|26541|26542|26543|26544|26544|33489|33489|100006|100007|100008|100009|100010|100011|100011|100012|100012|100013|100013|100015|140412|140414|140415|140416|140417|140419|153499|153500|153501|153502|153503|153504|153505|153507|153509|153510|153511|153511|153512|153512|153513|153513|153515|153516|153516|153517|153518|153518|153520|153522|153523|153524|153525|153527|153528|153531|153532|153533|153534|153536|153537|153538|153539|153540|153541|153541|153542|153543|153544|153550|153551|153552|153553|153554|153555|153555|153556|153557|153558|153559|153559|153560|153562|153562|153563|153564|153565|153567|153568|153569|153570|153571|153572|165869|165869|165876|165877|165883|165886|165889|165891|165893|166453|166460|166514|166538|166539|166540|166544|166545|166547|166547|166548|170096|170097|170098|170099|170100|170101|170102|170104|170106|170107|170108|187436|187438|187439|187440|187441|187443|187444|187445|187446|187447|187448|187449|187451|187452|187453|187577|187580|187584|187586|187587|187591|187593|187595|187597|187598|187600|187605|187608|187618|187620|187621|187622|187624|187624|187625|187627|187632|191662|208989|208990|208993|214546|214547|227924|228220|243784|257790|257791|272497|360565|360605|362354|363972|378006|378025|379152|379159|379266|403990|404159|404163|404186|404509|411214|411215|411218|411223|411227|411231|426443|430758|430759|430760|430761|430972|435196|446600|470650|471428|471431|471434|471435|471436|471841|472112|472113|472114|480623|481345|481346|482246|482247|486783|486784|486785|488163|507990|508000|508099|508483|508488|508960|534520|534680|534683|534686|534690|534694|534765|534772|534773|534778|535117|535118|535119|535120|535121|535122|539111|539112|552251|552252|552253|552253|572370|572373|572376|572379|573755|573760|574188|574377|574380|574438|574440|575376|580760|580887|580917|611442|614506|649896|649897|649898|649899|649900|649901|649902|649903|649904|649905|649906|649907|649907|649908|649909|649910|649911|649912|653384|653782|656757|689451|689452|690267|758415|758415|786768|792184|792185|792186|792187|792188|792189|792190|792191|792192|792193|792194|798249|802047|802048|802065|802066|821495|821572|821573|821574|821575|821576|821577|822221|822222|849851|849852|849853|849854|849855|849856|849857|849858|849859|849860|849861|849862|849863|849864|849865|849870|849874|851950|852483|852972|852972|858367|858368|858369|858370|858371|858372|858373|858374|858375|858376|858377|858381|858382|858516|904944|904945|904946|906351|917738|917738|920000|920000|920442|929637|929638|929639|929640|939507|939508|939509|939510|939515|939516|939517|940548|941292|941293|951692|951693|951694|951695|951696|951697|951698|959216|959217|959218|959219|960372|960977|960978|964586|964587|964588|964589|964590|964702|969243|971195|971196|971197|976825", "text": "Early infantile epileptic encephalopathy 2" }, { - "baseId": "26535|26536|26539|26541|26871|26872|153502|153506|153511|153512|153513|153514|153515|153517|153519|153526|153529|153533|153541|153544|153549|153550|153555|153561|153566|165870|165873|165878|165884|166445|187437|187438|187442|187444|187450|187574|187576|187587|187589|187596|187599|187601|187603|187604|187606|187610|187612|187613|187614|187615|187617|187619|187620|187628|187629", + "upstreamId": "26535|26536|26539|26541|26871|26872|153502|153506|153511|153512|153513|153514|153515|153517|153519|153526|153529|153533|153541|153544|153549|153550|153555|153561|153566|165870|165873|165878|165884|166445|187437|187438|187442|187444|187450|187574|187576|187587|187589|187596|187599|187601|187603|187604|187606|187610|187612|187613|187614|187615|187617|187619|187620|187628|187629", "text": "Atypical Rett syndrome" }, { - "baseId": "26541|26544|33489|100006|100007|100010|100011|100012|100013|100015|140414|140415|140416|140417|140419|153505|153507|153510|153511|153512|153513|153516|153518|153533|153541|153543|153544|153550|153555|153559|153562|165869|166453|166538|166539|166540|166544|166547|166548|187620|187624|187627|208989|208990|243784|257790|257791|272497|360565|360605|362354|363972|378006|378025|379152|379159|379266|403990|404159|404163|404186|404509|411214|411215|411218|411223|411227|411231|426443|430759|430760|446600|470650|471428|471431|471434|471435|471436|471841|472112|472113|472114|482246|507990|508000|508099|508483|508488|514525|534520|534680|534683|534686|534690|534694|534765|534772|534773|534778|535117|535118|535119|535120|535121|535122|552253|572370|572373|572376|572379|573755|573760|574188|574377|574380|574438|574440|575376|580760|580887|580917|613504|649896|649897|649898|649899|649900|649901|649902|649903|649904|649905|649906|649907|649908|649909|649910|649911|649912|653384|653782|656757|689451|689452|690267|758415|786768|798249|821495|821572|821573|821574|821575|821576|821577|822221|822222|849851|849852|849853|849854|849855|849856|849857|849858|849859|849860|849861|849862|849863|849864|849865|849870|849874|851950|852483|852972|917738|920000|929637|929638|929639|929640|939507|939508|939509|939510|939515|939516|939517|940548|941292|941293|951692|951693|951694|951695|951696|951697|951698|959216|959217|959218|959219|960372|960977|960978", + "upstreamId": "26541|26544|33489|100006|100007|100010|100011|100012|100013|100015|140414|140415|140416|140417|140419|153505|153507|153510|153511|153512|153513|153516|153518|153533|153541|153543|153544|153550|153555|153559|153562|165869|166453|166538|166539|166540|166544|166547|166548|187620|187624|187627|208989|208990|243784|257790|257791|272497|360565|360605|362354|363972|378006|378025|379152|379159|379266|403990|404159|404163|404186|404509|411214|411215|411218|411223|411227|411231|426443|430759|430760|446600|470650|471428|471431|471434|471435|471436|471841|472112|472113|472114|482246|507990|508000|508099|508483|508488|514525|534520|534680|534683|534686|534690|534694|534765|534772|534773|534778|535117|535118|535119|535120|535121|535122|552253|572370|572373|572376|572379|573755|573760|574188|574377|574380|574438|574440|575376|580760|580887|580917|613504|649896|649897|649898|649899|649900|649901|649902|649903|649904|649905|649906|649907|649908|649909|649910|649911|649912|653384|653782|656757|689451|689452|690267|758415|786768|798249|821495|821572|821573|821574|821575|821576|821577|822221|822222|849851|849852|849853|849854|849855|849856|849857|849858|849859|849860|849861|849862|849863|849864|849865|849870|849874|851950|852483|852972|917738|920000|929637|929638|929639|929640|939507|939508|939509|939510|939515|939516|939517|940548|941292|941293|951692|951693|951694|951695|951696|951697|951698|959216|959217|959218|959219|960372|960977|960978", "text": "Angelman syndrome-like" }, { - "baseId": "26542|26848|26849|26850|26850|26851|26852|26853|26854|26854|26855|26856|26857|26858|26858|26860|26862|26862|26863|26865|26867|26868|26868|26872|26873|26874|26875|26880|26882|26883|26883|26884|26885|45151|45154|45155|45156|45157|45158|101082|101084|101086|101087|101091|101096|101099|101100|101101|101102|101102|141890|141891|152982|153026|153029|153031|153032|153033|153035|153036|153038|153039|153041|153042|153044|153052|153054|153055|153056|153058|153060|153060|153061|153063|153066|153069|153072|153076|153077|153079|153081|153082|153083|153084|153085|153086|153087|153088|153089|153091|153092|153093|153094|153095|153096|153097|153098|153101|153103|153104|153105|153106|153107|153108|153109|153111|153114|153116|153117|153118|153119|153120|153124|153125|153129|153130|153132|153133|153134|153136|153137|153138|153138|153139|153140|153141|153143|153144|153145|153146|153152|153153|153154|153157|153160|153161|153164|153165|153166|153168|153170|153173|153174|153175|153179|153183|153185|153189|153191|153198|153199|153201|153203|153204|153205|153213|153214|153216|153217|153218|153221|153223|153224|153229|153230|153231|153232|153234|153235|153236|153239|153240|153242|153243|153244|153245|153247|153249|153250|153251|153252|153253|153255|153256|153257|153258|153259|153260|153261|153262|153263|153264|153265|153266|153267|153268|153269|153270|153272|153274|153275|153276|153278|153281|153282|153283|153284|153285|153286|153287|153288|153290|153291|153292|153293|153294|153295|153296|153297|153298|153299|153300|153301|153303|153304|153305|153308|153309|153310|153311|153312|153313|153314|153315|153317|153319|153320|153321|153322|153324|153326|153327|153328|153329|153330|153331|153332|153333|153335|153336|153337|153340|153340|153341|153346|153347|153349|153351|153352|153353|153354|153355|153356|153359|153361|153363|153364|153365|153367|153368|153371|153372|153373|153374|153375|153377|153379|153380|153381|153384|153385|153386|153387|153390|153394|153395|153396|153398|153402|153403|153404|153405|153406|153407|153408|153409|153410|153414|153416|153419|153420|153421|153422|153423|153424|153426|153427|153428|153429|153431|153432|153434|153435|153436|153437|153438|153440|153442|153446|153448|153450|153451|153452|153453|153454|153455|153457|153458|153459|153460|153461|153462|153463|153465|153466|153467|153468|153469|153470|153472|153473|153474|153476|153477|153478|153480|153481|153484|153485|153486|153488|153492|153495|153523|165841|165842|165844|165845|165846|165848|165849|165853|165854|165858|165859|165861|165862|165863|165864|166119|166468|166469|166486|166488|166490|166515|166521|178396|186595|187416|187417|187418|187419|187420|187421|187422|187423|187424|187425|187426|187427|187428|187429|187430|187431|187432|187433|187434|187435|187454|187455|187456|187457|187458|187460|187461|187462|187463|187465|187466|187467|187469|187471|187472|187474|187475|187476|187477|187479|187480|187481|187482|187483|187484|187485|187487|187488|187489|187490|187491|187492|187493|187495|187495|187496|187497|187498|187499|187500|187501|187502|187504|187505|187506|187507|187508|187509|187510|187511|187512|187513|187514|187515|187516|187518|187519|187520|187521|187522|187523|187524|187525|187526|187527|187528|187529|187530|187531|187532|187533|187534|187535|187537|187538|187539|187540|187541|187542|187543|187544|187545|187546|187547|187549|187551|187556|187558|187559|187560|187561|187562|187563|187565|187566|187567|187568|187569|187571|187633|187634|187635|187636|187637|187638|187639|187640|187641|187642|187643|187644|187645|187646|190082|190083|190084|190085|190086|190087|208946|208951|208954|208958|208962|208963|209313|237855|237856|237857|237858|361240|361299|361300|380318|380320|380321|380322|380323|380324|380325|380327|404014|411178|413218|425235|430712|430713|438474|439573|486748|486781|488032|513391|538288|538289|538290|538506|538611|539190|550653|575515|614500|621687|623641|623642|623643|625827|792162|792163|792164|792165|792166|792167|792168|792169|792170|792646|802045|802046|805126|806171|904250|962867|962868|962919|963191|964579|964580|964582|970101", + "upstreamId": "26542|26848|26849|26850|26850|26851|26852|26853|26854|26854|26855|26856|26857|26858|26858|26860|26862|26862|26863|26865|26867|26868|26868|26872|26873|26874|26875|26880|26882|26883|26883|26884|26885|45151|45154|45155|45156|45157|45158|101082|101084|101086|101087|101091|101096|101099|101100|101101|101102|101102|141890|141891|152982|153026|153029|153031|153032|153033|153035|153036|153038|153039|153041|153042|153044|153052|153054|153055|153056|153058|153060|153060|153061|153063|153066|153069|153072|153076|153077|153079|153081|153082|153083|153084|153085|153086|153087|153088|153089|153091|153092|153093|153094|153095|153096|153097|153098|153101|153103|153104|153105|153106|153107|153108|153109|153111|153114|153116|153117|153118|153119|153120|153124|153125|153129|153130|153132|153133|153134|153136|153137|153138|153138|153139|153140|153141|153143|153144|153145|153146|153152|153153|153154|153157|153160|153161|153164|153165|153166|153168|153170|153173|153174|153175|153179|153183|153185|153189|153191|153198|153199|153201|153203|153204|153205|153213|153214|153216|153217|153218|153221|153223|153224|153229|153230|153231|153232|153234|153235|153236|153239|153240|153242|153243|153244|153245|153247|153249|153250|153251|153252|153253|153255|153256|153257|153258|153259|153260|153261|153262|153263|153264|153265|153266|153267|153268|153269|153270|153272|153274|153275|153276|153278|153281|153282|153283|153284|153285|153286|153287|153288|153290|153291|153292|153293|153294|153295|153296|153297|153298|153299|153300|153301|153303|153304|153305|153308|153309|153310|153311|153312|153313|153314|153315|153317|153319|153320|153321|153322|153324|153326|153327|153328|153329|153330|153331|153332|153333|153335|153336|153337|153340|153340|153341|153346|153347|153349|153351|153352|153353|153354|153355|153356|153359|153361|153363|153364|153365|153367|153368|153371|153372|153373|153374|153375|153377|153379|153380|153381|153384|153385|153386|153387|153390|153394|153395|153396|153398|153402|153403|153404|153405|153406|153407|153408|153409|153410|153414|153416|153419|153420|153421|153422|153423|153424|153426|153427|153428|153429|153431|153432|153434|153435|153436|153437|153438|153440|153442|153446|153448|153450|153451|153452|153453|153454|153455|153457|153458|153459|153460|153461|153462|153463|153465|153466|153467|153468|153469|153470|153472|153473|153474|153476|153477|153478|153480|153481|153484|153485|153486|153488|153492|153495|153523|165841|165842|165844|165845|165846|165848|165849|165853|165854|165858|165859|165861|165862|165863|165864|166119|166468|166469|166486|166488|166490|166515|166521|178396|186595|187416|187417|187418|187419|187420|187421|187422|187423|187424|187425|187426|187427|187428|187429|187430|187431|187432|187433|187434|187435|187454|187455|187456|187457|187458|187460|187461|187462|187463|187465|187466|187467|187469|187471|187472|187474|187475|187476|187477|187479|187480|187481|187482|187483|187484|187485|187487|187488|187489|187490|187491|187492|187493|187495|187495|187496|187497|187498|187499|187500|187501|187502|187504|187505|187506|187507|187508|187509|187510|187511|187512|187513|187514|187515|187516|187518|187519|187520|187521|187522|187523|187524|187525|187526|187527|187528|187529|187530|187531|187532|187533|187534|187535|187537|187538|187539|187540|187541|187542|187543|187544|187545|187546|187547|187549|187551|187556|187558|187559|187560|187561|187562|187563|187565|187566|187567|187568|187569|187571|187633|187634|187635|187636|187637|187638|187639|187640|187641|187642|187643|187644|187645|187646|190082|190083|190084|190085|190086|190087|208946|208951|208954|208958|208962|208963|209313|237855|237856|237857|237858|361240|361299|361300|380318|380320|380321|380322|380323|380324|380325|380327|404014|411178|413218|425235|430712|430713|438474|439573|486748|486781|488032|513391|538288|538289|538290|538506|538611|539190|550653|575515|614500|621687|623641|623642|623643|625827|792162|792163|792164|792165|792166|792167|792168|792169|792170|792646|802045|802046|805126|806171|904250|962867|962868|962919|963191|964579|964580|964582|970101", "text": "Rett syndrome" }, { - "baseId": "26546|26547|26548|26549|26551|26552|26553|26554|26555|26556|132622|209358|338927|338931|338945|338956|338958|338959|338962|348509|348514|348518|352071|352076|352077|352078|352087|352089|352765|352766|352767|352768|352770|352771|352772|352773|612433|612434|682673|792690|902791|902792|902793|902794|902795|902796|902797|902798|902799|902800|902801|902802|902803|902804|902805|902806|902807|902808|902809|902810|902811|902812|902813|902814|902815|902816|903459|903460|919978", + "upstreamId": "26546|26547|26548|26549|26551|26552|26553|26554|26555|26556|132622|209358|338927|338931|338945|338956|338958|338959|338962|348509|348514|348518|352071|352076|352077|352078|352087|352089|352765|352766|352767|352768|352770|352771|352772|352773|612433|612434|682673|792690|902791|902792|902793|902794|902795|902796|902797|902798|902799|902800|902801|902802|902803|902804|902805|902806|902807|902808|902809|902810|902811|902812|902813|902814|902815|902816|903459|903460|919978", "text": "Spondyloepiphyseal dysplasia tarda" }, { - "baseId": "26557|26558|38897|38898|132677|132678|193667|217197|225825|259238|920055", + "upstreamId": "26557|26558|38897|38898|132677|132678|193667|217197|225825|259238|920055", "text": "X-Linked mental retardation 90" }, { - "baseId": "26559|26559|76591|101147|101153|101154|101155|101156|135035|135036|135039|138375|138376|138377|177599|177600|177601|177829|177830|177831|193566|194170|194628|194649|209154|209160|209161|209163|210545|210547|210548|210550|210550|210551|210555|210556|210565|210566|210567|210573|210576|210578|222885|227160|243820|243821|247364|247365|247366|247367|259189|259197|259200|378579|378595|378596|378607|379377|379378|379380|379508|379520|379521|380112|404002|404270|404284|404288|404584|404586|404587|404588|404590|404591|404593|411464|411468|411469|415814|424621|430907|438808|470946|470954|470967|470969|471683|471690|471692|471698|471699|471705|471966|471967|471969|471970|471972|471973|472190|472191|472192|472193|472194|472195|472196|472197|485859|490092|490095|508629|508644|508647|510970|510978|510979|534913|534917|534927|534948|535059|535061|535191|551347|572556|572558|572560|573972|573974|573980|573985|581033|610411|611457|611458|650173|650174|650175|650176|650177|650178|650179|650180|650181|650182|650183|650184|650185|650186|650187|650188|650189|650190|650191|650192|653474|653476|653793|653908|656792|685026|685029|689538|689544|689546|694918|694920|694921|694923|694924|694926|788314|792495|792496|821796|821797|850230|850231|850232|850233|850234|850235|850236|850237|850238|850239|850240|852526|906118|929799|929800|929801|939667|939668|939669|939670|939671|951872|951873|951874|951875|959338|959339|959340|959341|960990|961640", + "upstreamId": "26559|26559|76591|101147|101153|101154|101155|101156|135035|135036|135039|138375|138376|138377|177599|177600|177601|177829|177830|177831|193566|194170|194628|194649|209154|209160|209161|209163|210545|210547|210548|210550|210550|210551|210555|210556|210565|210566|210567|210573|210576|210578|222885|227160|243820|243821|247364|247365|247366|247367|259189|259197|259200|378579|378595|378596|378607|379377|379378|379380|379508|379520|379521|380112|404002|404270|404284|404288|404584|404586|404587|404588|404590|404591|404593|411464|411468|411469|415814|424621|430907|438808|470946|470954|470967|470969|471683|471690|471692|471698|471699|471705|471966|471967|471969|471970|471972|471973|472190|472191|472192|472193|472194|472195|472196|472197|485859|490092|490095|508629|508644|508647|510970|510978|510979|534913|534917|534927|534948|535059|535061|535191|551347|572556|572558|572560|573972|573974|573980|573985|581033|610411|611457|611458|650173|650174|650175|650176|650177|650178|650179|650180|650181|650182|650183|650184|650185|650186|650187|650188|650189|650190|650191|650192|653474|653476|653793|653908|656792|685026|685029|689538|689544|689546|694918|694920|694921|694923|694924|694926|788314|792495|792496|821796|821797|850230|850231|850232|850233|850234|850235|850236|850237|850238|850239|850240|852526|906118|929799|929800|929801|939667|939668|939669|939670|939671|951872|951873|951874|951875|959338|959339|959340|959341|960990|961640", "text": "FG syndrome 1" }, { - "baseId": "26559|26560|135035|210548|210550|210555|210565|210573|424621|551347|611457|611458|920056|920057|920458|961640|964630|971227|971228", + "upstreamId": "26559|26560|135035|210548|210550|210555|210565|210573|424621|551347|611457|611458|920056|920057|920458|961640|964630|971227|971228", "text": "X-linked mental retardation with marfanoid habitus syndrome" }, { - "baseId": "26559|59420|59421|59422|210548|210550|210555|210573|415813|424621|510982|513401|513692|551347|611457|611458|961640|963999|964000", + "upstreamId": "26559|59420|59421|59422|210548|210550|210555|210573|415813|424621|510982|513401|513692|551347|611457|611458|961640|963999|964000", "text": "Ohdo syndrome, X-linked" }, { - "baseId": "26561|26562|26563|26564|26565|26566|26567|26568|33883|33884|33885|167577|167580|167582|167585|237173|471446|508531|508961|513393|538508|649947|653313|694852|694853|695903|706197|706199|706201|778660|800303|800304|805129|821613|849919|849920|964602", + "upstreamId": "26561|26562|26563|26564|26565|26566|26567|26568|33883|33884|33885|167577|167580|167582|167585|237173|471446|508531|508961|513393|538508|649947|653313|694852|694853|695903|706197|706199|706201|778660|800303|800304|805129|821613|849919|849920|964602", "text": "X-linked chondrodysplasia punctata 1" }, { - "baseId": "26569|26570|26573|26575|38892|38894|38895|38896|167912|167913|167914|167916|167917|167918|167921|167924|167929|167932|167935|167937|167938|178395|192361|209041|209042|209046|213668|248723|361732|411363|424699|426464|427111|430786|430788|430790|430790|439692|439693|439694|495820|514314|575414|583138|610525|621037|621040|621041|626295|677470|792453|792454|792455|792456|802050|802235|816533|964613|964614|966026|966027|966048", + "upstreamId": "26569|26570|26573|26575|38892|38894|38895|38896|167912|167913|167914|167916|167917|167918|167921|167924|167929|167932|167935|167937|167938|178395|192361|209041|209042|209046|213668|248723|361732|411363|424699|426464|427111|430786|430788|430790|430790|439692|439693|439694|495820|514314|575414|583138|610525|621037|621040|621041|626295|677470|792453|792454|792455|792456|802050|802235|816533|964613|964614|966026|966027|966048", "text": "Mental retardation and microcephaly with pontine and cerebellar hypoplasia" }, { - "baseId": "26571|26572|26573|26573|26574|26575|38892|38893|430790|610525|677470|798307|920027|920451|964612", + "upstreamId": "26571|26572|26573|26573|26574|26575|38892|38893|430790|610525|677470|798307|920027|920451|964612", "text": "FG syndrome 4" }, { - "baseId": "26575|100274|100275|100277|100278|167915|167920|177311|177550|191214|191797|192004|209045|209047|226991|265958|266612|266797|268085|271800|272071|363745|379413|411370|430787|439692|470809|470810|470816|470820|471881|472152|472153|508575|534818|534868|534869|534970|535166|535167|535169|572491|573865|573868|573870|574730|574732|575413|575414|580907|587633|650051|650052|653422|706228|729593|758495|786830|821792|821793|822224|822286|850060|850061|850062|929729|929730|929731|929732|929733|939597|940561|940562|951799|951800|951801|959301|959302", + "upstreamId": "26575|100274|100275|100277|100278|167915|167920|177311|177550|191214|191797|192004|209045|209047|226991|265958|266612|266797|268085|271800|272071|363745|379413|411370|430787|439692|470809|470810|470816|470820|471881|472152|472153|508575|534818|534868|534869|534970|535166|535167|535169|572491|573865|573868|573870|574730|574732|575413|575414|580907|587633|650051|650052|653422|706228|729593|758495|786830|821792|821793|822224|822286|850060|850061|850062|929729|929730|929731|929732|929733|939597|940561|940562|951799|951800|951801|959301|959302", "text": "Mental retardation, CASK-related, X-linked" }, { - "baseId": "26576|26577|26579|26580|26582|44158|49472|49473|49474|49475|49476|49477|49478|49479|49480|49481|49482|49483|49484|49485|49486|49487|49488|49489|49490|49491|49492|49494|49495|49496|49497|49498|49499|49500|49501|49502|49503|49504|49505|49506|49507|49508|49510|49510|49511|49512|49513|49515|49516|49517|49518|49519|49520|49521|49522|49523|49524|49525|49525|49526|49529|49530|49531|49533|49534|49535|49536|49537|49538|49539|49539|49539|49540|49541|49542|49544|49545|49546|49547|49548|49549|49550|49551|49552|49553|49554|49555|49556|49557|49558|49559|49560|49562|49563|49564|49564|49565|49566|49567|49568|49570|49571|49572|49573|49574|49575|49576|49577|49578|49579|169943|169944|169945|169946|169948|169949|169950|169951|169953|186289|186295|190824|191794|191795|205331|208884|208885|213495|222882|243721|243764|260733|260734|260735|260736|260737|260738|260739|260740|260741|260742|260743|260745|260746|363655|404091|404096|404098|404102|404456|404459|404499|470391|470506|470513|471310|471312|471748|471751|471755|471990|472067|472068|472069|472070|508343|508512|511036|534556|534569|534570|535050|535051|535051|539966|550647|550648|550650|550651|550652|552268|572243|572252|573606|574322|574322|575335|575336|575337|575338|649729|649732|649733|653635|670734|677466|694789|694790|788949|816011|818369|821563|849684|849685|849686|849687|849688|849689|904072|929581|939454|939456|951628|959173|959174", + "upstreamId": "26576|26577|26579|26580|26582|44158|49472|49473|49474|49475|49476|49477|49478|49479|49480|49481|49482|49483|49484|49485|49486|49487|49488|49489|49490|49491|49492|49494|49495|49496|49497|49498|49499|49500|49501|49502|49503|49504|49505|49506|49507|49508|49510|49510|49511|49512|49513|49515|49516|49517|49518|49519|49520|49521|49522|49523|49524|49525|49525|49526|49529|49530|49531|49533|49534|49535|49536|49537|49538|49539|49539|49539|49540|49541|49542|49544|49545|49546|49547|49548|49549|49550|49551|49552|49553|49554|49555|49556|49557|49558|49559|49560|49562|49563|49564|49564|49565|49566|49567|49568|49570|49571|49572|49573|49574|49575|49576|49577|49578|49579|169943|169944|169945|169946|169948|169949|169950|169951|169953|186289|186295|190824|191794|191795|205331|208884|208885|213495|222882|243721|243764|260733|260734|260735|260736|260737|260738|260739|260740|260741|260742|260743|260745|260746|363655|404091|404096|404098|404102|404456|404459|404499|470391|470506|470513|471310|471312|471748|471751|471755|471990|472067|472068|472069|472070|508343|508512|511036|534556|534569|534570|535050|535051|535051|539966|550647|550648|550650|550651|550652|552268|572243|572252|573606|574322|574322|575335|575336|575337|575338|649729|649732|649733|653635|670734|677466|694789|694790|788949|816011|818369|821563|849684|849685|849686|849687|849688|849689|904072|929581|939454|939456|951628|959173|959174", "text": "Orofaciodigital syndrome I" }, { - "baseId": "26582|49539|535051|574322|677466|917752|980854", + "upstreamId": "26582|49539|535051|574322|677466|917752|980854", "text": "Simpson-Golabi-Behmel syndrome, type 2" }, { - "baseId": "26583|26584|44158|49539|49539|214374|214375|214376|535051|574322|677466|964709|966185|971181", + "upstreamId": "26583|26584|44158|49539|49539|214374|214375|214376|535051|574322|677466|964709|966185|971181", "text": "Joubert syndrome 10" }, { - "baseId": "26585|140023|140025|140026|140027|140028|140029|211999|212000|338837|338838|348454|348459|348460|352058|352059|352060|352749|352750|354190|379916|438582|534492|745478|745479|745483|849610|902774|902775|902776|902777|903454|903455|903456|971179", + "upstreamId": "26585|140023|140025|140026|140027|140028|140029|211999|212000|338837|338838|348454|348459|348460|352058|352059|352060|352749|352750|354190|379916|438582|534492|745478|745479|745483|849610|902774|902775|902776|902777|903454|903455|903456|971179", "text": "Combined oxidative phosphorylation deficiency 6" }, { - "baseId": "26586|26588|195627|677465|805046", + "upstreamId": "26586|26588|195627|677465|805046", "text": "Scapuloperoneal myopathy, X-linked dominant" }, { - "baseId": "26587|26588|26598|26599|195626|195627|195628|224581|224582|243720|243755|243756|243757|243758|243759|243761|243762|268750|269311|270721|270731|272418|272737|273324|377803|377815|378900|379010|404090|404128|404494|470504|471295|471304|471740|489247|491519|508330|508339|534531|534536|534539|534542|534544|534552|534554|534634|535037|535039|535041|535042|535044|537037|538956|539109|572226|572242|573554|573556|573564|573572|573578|573584|573588|573593|574293|574307|574309|574312|575334|589441|649717|649718|649719|649720|649721|649722|649723|653737|653775|671033|677465|689346|773773|798172|821560|849667|849668|849669|849670|849671|849672|849673|849674|852468|853028|853029|929577|929578|929579|939445|939446|939447|939448|939449|939450|951620|951621|951622|960974", + "upstreamId": "26587|26588|26598|26599|195626|195627|195628|224581|224582|243720|243755|243756|243757|243758|243759|243761|243762|268750|269311|270721|270731|272418|272737|273324|377803|377815|378900|379010|404090|404128|404494|470504|471295|471304|471740|489247|491519|508330|508339|534531|534536|534539|534542|534544|534552|534554|534634|535037|535039|535041|535042|535044|537037|538956|539109|572226|572242|573554|573556|573564|573572|573578|573584|573588|573593|574293|574307|574309|574312|575334|589441|649717|649718|649719|649720|649721|649722|649723|653737|653775|671033|677465|689346|773773|798172|821560|849667|849668|849669|849670|849671|849672|849673|849674|852468|853028|853029|929577|929578|929579|939445|939446|939447|939448|939449|939450|951620|951621|951622|960974", "text": "Myopathy with postural muscle atrophy, X-linked" }, { - "baseId": "26589|26590|26593|26600|26601|677465", + "upstreamId": "26589|26590|26593|26600|26601|677465", "text": "Myopathy, reducing body, X-linked, early-onset, severe" }, { - "baseId": "26591|26592|26594|26602|677465", + "upstreamId": "26591|26592|26594|26602|677465", "text": "Myopathy, reducing body, X-linked, childhood-onset" }, { - "baseId": "26595|26596|26597", + "upstreamId": "26595|26596|26597", "text": "Emery-Dreifuss muscular dystrophy 6" }, { - "baseId": "26603|26604|26605|512562|919971|963943|971172", + "upstreamId": "26603|26604|26605|512562|919971|963943|971172", "text": "Mental retardation 63, X-linked" }, { - "baseId": "26607|26608|26609|26610|26611|135319|208840|348285|351945|351946|351948|352712|352713|425237|430622|431930|513387|622037|677288|677310|773704|902697|902698|902699|902700|902701|902702|902703|902704|902705|902706|969136", + "upstreamId": "26607|26608|26609|26610|26611|135319|208840|348285|351945|351946|351948|352712|352713|425237|430622|431930|513387|622037|677288|677310|773704|902697|902698|902699|902700|902701|902702|902703|902704|902705|902706|969136", "text": "Mental retardation 30, X-linked" }, { - "baseId": "26612", + "upstreamId": "26612", "text": "Corpus callosum, agenesis of, with mental retardation, ocular coloboma, and micrognathia" }, { - "baseId": "26613|26614|26615|131981|139946|139947|349025|352945|352946|360664|802239|903204|903205|903206|903207|903208|903483|964707", + "upstreamId": "26613|26614|26615|131981|139946|139947|349025|352945|352946|360664|802239|903204|903205|903206|903207|903208|903483|964707", "text": "X-linked sideroblastic anemia with ataxia" }, { - "baseId": "26616|26617|26618|26619|26620|38889|170165|170169|170171|170172|209144|225828|431006|431007|624064|792490|800679|964629|980975|983698|983699", + "upstreamId": "26616|26617|26618|26619|26620|38889|170165|170169|170171|170172|209144|225828|431006|431007|624064|792490|800679|964629|980975|983698|983699", "text": "Mental retardation X-linked with cerebellar hypoplasia and distinctive facial appearance" }, { - "baseId": "26621|26622|26623|26624|26625|26626|26627|26629|26630|26631|26632|26633|26634|26635|47534|47535|47536|47537|47538|47539|47540|47541|47542|47543|47544|47545|47546|47547|47548|47549|47550|47551|47552|47553|47554|47555|47556|47557|47558|47559|47560|47561|47562|79307|79308|177673|208981|243783|379257|418962|430742|439831|904964|919993", + "upstreamId": "26621|26622|26623|26624|26625|26626|26627|26629|26630|26631|26632|26633|26634|26635|47534|47535|47536|47537|47538|47539|47540|47541|47542|47543|47544|47545|47546|47547|47548|47549|47550|47551|47552|47553|47554|47555|47556|47557|47558|47559|47560|47561|47562|79307|79308|177673|208981|243783|379257|418962|430742|439831|904964|919993", "text": "Dyskeratosis congenita, X-linked" }, { - "baseId": "26631|26632|447064|447144|514982|514986|515020|515026|515027|515047|515052|556556|556558|556589|556591|556851|556984|556986|626651|626652|626653|626654|626655|626656|706589|822564|822565|822566|822567|822568|822569|822570|822571|822572|822573|822574|921591|921592|921593|921594|921595|921596|921597|929978|929979|929980|929981|929982|941394|941395|952024|952025", + "upstreamId": "26631|26632|447064|447144|514982|514986|515020|515026|515027|515047|515052|556556|556558|556589|556591|556851|556984|556986|626651|626652|626653|626654|626655|626656|706589|822564|822565|822566|822567|822568|822569|822570|822571|822572|822573|822574|921591|921592|921593|921594|921595|921596|921597|929978|929979|929980|929981|929982|941394|941395|952024|952025", "text": "Hoyeraal-Hreidarsson syndrome" }, { - "baseId": "26636|26637|26638|26640|26641|26642|26648|26649|169852|169882|430630|430631|432226|486779|611440|789137|800677|962872", + "upstreamId": "26636|26637|26638|26640|26641|26642|26648|26649|169852|169882|430630|430631|432226|486779|611440|789137|800677|962872", "text": "Lissencephaly, X-linked" }, { - "baseId": "26636|26637|26638|26639|26640|26641|26642|26643|26645|26646|26647|26648|26649|430629|430630|430632", + "upstreamId": "26636|26637|26638|26639|26640|26641|26642|26643|26645|26646|26647|26648|26649|430629|430630|430632", "text": "Subcortical laminar heterotopia, X-linked" }, { - "baseId": "26637|26648|92943|169848|169849|169850|169851|169852|169853|169854|169855|169856|169857|169858|169859|169860|169861|169862|169863|169864|169865|169866|169867|169868|169869|169870|169871|169872|169873|169875|169876|169877|169878|169879|169880|169881|169882|169883|169884|169885|169886|169887|169888|169889|169890|169891|169892|169893|169894|169895|169896|169897|169898|169899|169900|169901|169902|169903|169905|169906|169907|169908|169909|169910|169911|169912|169913|169914|169915|169916|169917|169918|169919|169920|169921|169922|169923|169924|169925|169926|169927|169928|169929|169930|169931|169932|169933|169934|169935|169936|513940|514033", + "upstreamId": "26637|26648|92943|169848|169849|169850|169851|169852|169853|169854|169855|169856|169857|169858|169859|169860|169861|169862|169863|169864|169865|169866|169867|169868|169869|169870|169871|169872|169873|169875|169876|169877|169878|169879|169880|169881|169882|169883|169884|169885|169886|169887|169888|169889|169890|169891|169892|169893|169894|169895|169896|169897|169898|169899|169900|169901|169902|169903|169905|169906|169907|169908|169909|169910|169911|169912|169913|169914|169915|169916|169917|169918|169919|169920|169921|169922|169923|169924|169925|169926|169927|169928|169929|169930|169931|169932|169933|169934|169935|169936|513940|514033", "text": "Heterotopia" }, { - "baseId": "26650|26651|26652|424963|792133|971184", + "upstreamId": "26650|26651|26652|424963|792133|971184", "text": "Hypospadias 2, X-linked" }, { - "baseId": "26653|26654|26655|26656|26657|34295|257849|260333|267625|361099|390505|424183|578351|578595|800656|857093|920035|920036|971211|976724|976725|976726|976727|976728|976729", + "upstreamId": "26653|26654|26655|26656|26657|34295|257849|260333|267625|361099|390505|424183|578351|578595|800656|857093|920035|920036|971211|976724|976725|976726|976727|976728|976729", "text": "Congenital stationary night blindness, type 2A" }, { - "baseId": "26658", + "upstreamId": "26658", "text": "Congenital stationary night blindness, type 2A, severe" }, { - "baseId": "26659|214083|214084|354187|424183|578595", + "upstreamId": "26659|214083|214084|354187|424183|578595", "text": "X-linked cone-rod dystrophy 3" }, { - "baseId": "26660|192398|260333|413831|578595|589379|623878|624016", + "upstreamId": "26660|192398|260333|413831|578595|589379|623878|624016", "text": "Ocular albinism, type II" }, { - "baseId": "26661|717879", + "upstreamId": "26661|717879", "text": "Premature ovarian failure 2a" }, { - "baseId": "26662|26663|26664|76584|76585|76587|94346|190838|615269|788951|804834|815959|903651|904253|920008|961816", + "upstreamId": "26662|26663|26664|76584|76585|76587|94346|190838|615269|788951|804834|815959|903651|904253|920008|961816", "text": "Syndromic X-linked intellectual disability Snyder type" }, { - "baseId": "26665|26666|26667|38888|411202|963955|964584|964585", + "upstreamId": "26665|26666|26667|38888|411202|963955|964584|964585", "text": "X-Linked Mental Retardation 41" }, { - "baseId": "26668|26669|26670", + "upstreamId": "26668|26669|26670", "text": "Mental retardation 58, X-linked" }, { - "baseId": "26671|26672|26673|26674|26675|26676|26677|26678|26679|26680|26681|34312|34313|34314|34315|51276|170179|170180|170181|170182|170183|170184|209177|209178|209179|209181|209182|430913|430916|488315|513694|550658|626303|653909|682858|792500|792501|802238|903657|917761|971230", + "upstreamId": "26671|26672|26673|26674|26675|26676|26677|26678|26679|26680|26681|34312|34313|34314|34315|51276|170179|170180|170181|170182|170183|170184|209177|209178|209179|209181|209182|430913|430916|488315|513694|550658|626303|653909|682858|792500|792501|802238|903657|917761|971230", "text": "Allan-Herndon-Dudley syndrome" }, { - "baseId": "26682|26683|141316|426736|430797|614095|677471|964615|965591|974506", + "upstreamId": "26682|26683|141316|426736|430797|614095|677471|964615|965591|974506", "text": "TARP syndrome" }, { - "baseId": "26684|26685|26686|45837|227418|257745|271618|271618|338753|338757|338764|338766|338769|338771|338779|338780|338787|338791|338798|338805|338806|338809|338823|348369|348371|348376|348377|348379|348381|348383|348387|348389|348395|348406|348407|348410|348412|348417|348424|348432|348434|352022|352023|352025|352026|352028|352029|352030|352032|352033|352036|352037|352038|352039|352725|352726|352727|352728|352729|352730|352731|352732|352733|352734|352735|352736|352741|440026|440027|440028|471245|471246|471249|495793|514119|534457|534461|534464|534496|534498|535009|535013|572186|573530|574191|575283|575323|613424|614103|649661|649662|653434|653683|717625|758260|786695|792119|792120|821550|821551|821552|821553|821554|849586|849587|849588|849589|849590|849591|849592|849593|849594|849595|849596|849597|849598|902733|902734|902735|902736|902737|902738|902739|902740|902741|902742|902743|902744|902745|902746|902747|902748|902749|902750|902751|902752|902753|902754|902755|902756|902757|902758|902759|902760|902761|902762|902763|902764|902765|929555|939418|939419|939420|941286|951584|951585|951586|959159", + "upstreamId": "26684|26685|26686|45837|227418|257745|271618|271618|338753|338757|338764|338766|338769|338771|338779|338780|338787|338791|338798|338805|338806|338809|338823|348369|348371|348376|348377|348379|348381|348383|348387|348389|348395|348406|348407|348410|348412|348417|348424|348432|348434|352022|352023|352025|352026|352028|352029|352030|352032|352033|352036|352037|352038|352039|352725|352726|352727|352728|352729|352730|352731|352732|352733|352734|352735|352736|352741|440026|440027|440028|471245|471246|471249|495793|514119|534457|534461|534464|534496|534498|535009|535013|572186|573530|574191|575283|575323|613424|614103|649661|649662|653434|653683|717625|758260|786695|792119|792120|821550|821551|821552|821553|821554|849586|849587|849588|849589|849590|849591|849592|849593|849594|849595|849596|849597|849598|902733|902734|902735|902736|902737|902738|902739|902740|902741|902742|902743|902744|902745|902746|902747|902748|902749|902750|902751|902752|902753|902754|902755|902756|902757|902758|902759|902760|902761|902762|902763|902764|902765|929555|939418|939419|939420|941286|951584|951585|951586|959159", "text": "Lymphoproliferative syndrome 2, X-linked" }, { - "baseId": "26687|26688|45630|969255", + "upstreamId": "26687|26688|45630|969255", "text": "Mitochondrial complex 1 deficiency, nuclear type 12" }, { - "baseId": "26689|26690|26691|26692|26693|26694|26695|26696|26697|26699|26700|26701|26702|26703|26704|26705|26706|26707|101050|135609|188130|208995|208996|208999|227426|227426|361088|415762|431932|471437|481327|493724|513482|538304|538305|538306|538307|538308|538309|538310|538311|538507|550654|572389|573769|574446|574448|575381|611444|623170|624874|649929|649930|706190|792203|792204|821580|849884|853034|941294|959223|962244|963311|963960", + "upstreamId": "26689|26690|26691|26692|26693|26694|26695|26696|26697|26699|26700|26701|26702|26703|26704|26705|26706|26707|101050|135609|188130|208995|208996|208999|227426|227426|361088|415762|431932|471437|481327|493724|513482|538304|538305|538306|538307|538308|538309|538310|538311|538507|550654|572389|573769|574446|574448|575381|611444|623170|624874|649929|649930|706190|792203|792204|821580|849884|853034|941294|959223|962244|963311|963960", "text": "Coffin-Lowry syndrome" }, { - "baseId": "26698|38886|38887|135609|208995|208996|208997|208999|227426|471437|493724|538304|538507|572389|573769|574446|574448|575381|611444|649929|649930|706190|821580|849884|853034|920445|920446|941294|959223|964592", + "upstreamId": "26698|38886|38887|135609|208995|208996|208997|208999|227426|471437|493724|538304|538507|572389|573769|574446|574448|575381|611444|649929|649930|706190|821580|849884|853034|920445|920446|941294|959223|964592", "text": "Mental retardation, X-linked 19" }, { - "baseId": "26708|26709|26710|34296|188131|513680|626296|975875", + "upstreamId": "26708|26709|26710|34296|188131|513680|626296|975875", "text": "Linear skin defects with multiple congenital anomalies 1" }, { - "baseId": "26711|26712|26713|26714|38884|38885|101264|101265|101266|170138|170139|170140|170141|170142|170143|170145|170146|170147|170148|170149|170150|170151|170152|170153|170154|170155|170156|170157|170158|170159|170160|170161|170162|170163|170164|178084|178384|178385|190501|196000|205197|205198|205800|209110|209112|209113|209114|268274|339427|339429|339440|339445|339448|339455|339463|339469|339474|339475|339483|339484|339490|339492|339497|348970|348972|348976|348980|348982|348985|348989|352349|352355|352369|352375|352378|352917|352918|352920|352921|352922|352923|352924|352925|352926|352927|352928|361246|362235|362430|378478|424492|430841|430843|430973|442434|471644|471914|471917|472166|472167|512703|513833|513834|513835|513836|513837|513838|513839|513840|534882|534886|534918|534921|535047|535183|535184|538514|572540|572552|573925|573930|573933|573938|574189|574807|574809|574811|574813|575280|575433|575434|610425|650123|650124|650125|650126|650127|650128|650129|650130|653294|653465|653537|758566|774126|774127|774130|774132|774133|776891|788302|792475|792476|792477|792478|792479|798817|798818|800678|821511|821512|821513|822231|850188|850189|850190|850191|850192|850193|850194|850195|850196|850197|850198|850199|852523|903115|903116|903117|903118|903119|903120|903121|903122|903123|903124|903125|903126|903127|903128|903129|903130|903131|903132|903133|903134|903135|903136|903137|903138|903139|903140|903141|903142|903143|903144|903145|903146|903147|903148|903149|903150|903151|903152|903480|903654|917774|920043|920044|929782|929783|929784|929785|939647|939648|939649|939650|939651|951855|951856|960988|961639|964623|964921|966358|973112|977306|977307|977308", + "upstreamId": "26711|26712|26713|26714|38884|38885|101264|101265|101266|170138|170139|170140|170141|170142|170143|170145|170146|170147|170148|170149|170150|170151|170152|170153|170154|170155|170156|170157|170158|170159|170160|170161|170162|170163|170164|178084|178384|178385|190501|196000|205197|205198|205800|209110|209112|209113|209114|268274|339427|339429|339440|339445|339448|339455|339463|339469|339474|339475|339483|339484|339490|339492|339497|348970|348972|348976|348980|348982|348985|348989|352349|352355|352369|352375|352378|352917|352918|352920|352921|352922|352923|352924|352925|352926|352927|352928|361246|362235|362430|378478|424492|430841|430843|430973|442434|471644|471914|471917|472166|472167|512703|513833|513834|513835|513836|513837|513838|513839|513840|534882|534886|534918|534921|535047|535183|535184|538514|572540|572552|573925|573930|573933|573938|574189|574807|574809|574811|574813|575280|575433|575434|610425|650123|650124|650125|650126|650127|650128|650129|650130|653294|653465|653537|758566|774126|774127|774130|774132|774133|776891|788302|792475|792476|792477|792478|792479|798817|798818|800678|821511|821512|821513|822231|850188|850189|850190|850191|850192|850193|850194|850195|850196|850197|850198|850199|852523|903115|903116|903117|903118|903119|903120|903121|903122|903123|903124|903125|903126|903127|903128|903129|903130|903131|903132|903133|903134|903135|903136|903137|903138|903139|903140|903141|903142|903143|903144|903145|903146|903147|903148|903149|903150|903151|903152|903480|903654|917774|920043|920044|929782|929783|929784|929785|939647|939648|939649|939650|939651|951855|951856|960988|961639|964623|964921|966358|973112|977306|977307|977308", "text": "Congenital muscular hypertrophy-cerebral syndrome" }, { - "baseId": "26724|26725|26726|26727|26728|26731|26732|26733|26734|226397|260942|534603|553160|609300|611457|614104", + "upstreamId": "26724|26725|26726|26727|26728|26731|26732|26733|26734|226397|260942|534603|553160|609300|611457|614104", "text": "Simpson-Golabi-Behmel syndrome type 1" }, { - "baseId": "26735|26736|26737|26738|26739|26740|26741|26742|26743|34300|76600|76601|135802|208919|208921|208923|208924|208925|208926|215616|237230|243765|260285|271846|377852|377853|377855|377857|377859|377861|378959|378961|378963|378965|378966|378980|378981|378991|378994|379047|379048|379056|379061|379071|379075|379945|379948|379949|379951|379952|404104|404106|404114|404152|404156|404157|404162|404164|404462|404464|404502|404503|404504|404505|430685|430686|430687|430688|442390|446526|470536|470538|471348|471788|471789|471790|472078|472079|472080|472081|507792|507813|507914|508369|508529|508532|508537|508539|534583|534584|534586|534616|534662|535072|535074|552247|572253|572259|572263|572268|573645|573650|574334|574335|575351|575352|575353|580962|621994|623366|649762|649763|649764|649765|649766|649767|649768|649769|649770|654143|654152|656740|678963|684960|684961|684962|684964|689377|689378|689380|689381|689382|689383|690256|694814|695897|695898|706144|729478|758350|773852|773854|773855|773857|786734|792139|792140|799022|806382|806415|815874|821485|821567|822218|849725|849726|849727|849728|849729|849730|920439|929598|929599|939466|939467|939468|939469|939470|951639|951640|959184|959185|959186|959187|960364|960976|962880|963189|964571|964712|964713|971185|971599|972804|976710|976711", + "upstreamId": "26735|26736|26737|26738|26739|26740|26741|26742|26743|34300|76600|76601|135802|208919|208921|208923|208924|208925|208926|215616|237230|243765|260285|271846|377852|377853|377855|377857|377859|377861|378959|378961|378963|378965|378966|378980|378981|378991|378994|379047|379048|379056|379061|379071|379075|379945|379948|379949|379951|379952|404104|404106|404114|404152|404156|404157|404162|404164|404462|404464|404502|404503|404504|404505|430685|430686|430687|430688|442390|446526|470536|470538|471348|471788|471789|471790|472078|472079|472080|472081|507792|507813|507914|508369|508529|508532|508537|508539|534583|534584|534586|534616|534662|535072|535074|552247|572253|572259|572263|572268|573645|573650|574334|574335|575351|575352|575353|580962|621994|623366|649762|649763|649764|649765|649766|649767|649768|649769|649770|654143|654152|656740|678963|684960|684961|684962|684964|689377|689378|689380|689381|689382|689383|690256|694814|695897|695898|706144|729478|758350|773852|773854|773855|773857|786734|792139|792140|799022|806382|806415|815874|821485|821567|822218|849725|849726|849727|849728|849729|849730|920439|929598|929599|939466|939467|939468|939469|939470|951639|951640|959184|959185|959186|959187|960364|960976|962880|963189|964571|964712|964713|971185|971599|972804|976710|976711", "text": "Creatine transporter deficiency" }, { - "baseId": "26745|26746|26747|26748|26749|26750|26751|26752|26753|26754|106499|106500|361727|361728|361729|361730|361731|430892|430893|430894|430895|550657|622497|679254|800957|906117|917775|969276|969287|969288", + "upstreamId": "26745|26746|26747|26748|26749|26750|26751|26752|26753|26754|106499|106500|361727|361728|361729|361730|361731|430892|430893|430894|430895|550657|622497|679254|800957|906117|917775|969276|969287|969288", "text": "Craniofrontonasal syndrome" }, { - "baseId": "26755", + "upstreamId": "26755", "text": "X-Linked Mental Retardation 88" }, { - "baseId": "26760|26761|26762|26763|26764|26765|26766|26767|26768|26769|26770|26772|26773|26773|26774|26774|26775|26778|26781|99039|99041|99043|99044|99045|99047|99048|99049|99052|133940|133941|133944|133945|133946|137383|137388|137389|137390|137391|137392|137393|137394|137395|137396|137398|137399|166106|177185|177500|191160|193323|196185|196186|196189|209197|209198|209199|209204|243824|265761|265767|266207|269258|274176|274280|360681|361255|379543|380125|380126|380127|384429|390648|411489|411489|411493|424620|424679|426493|430936|430938|430940|430942|442458|442459|446776|471025|471046|471048|471050|471050|471057|471058|471737|471741|471746|471747|471753|471997|471998|471999|472000|472006|472007|472009|472207|472208|472209|472210|472211|472212|472213|472214|472215|491357|512762|512762|512763|512767|512768|512770|534939|534944|534945|534947|534958|534959|534966|534974|534975|534977|534982|535076|535078|535080|535086|535201|535202|535203|535204|535205|535206|535207|535208|535209|535210|535211|538322|538323|551801|552266|572595|572596|572599|572601|572603|574016|574018|574019|574020|574022|574914|574915|574915|574989|574990|575281|575454|575455|575456|575457|575458|575459|578600|581078|581081|581084|581197|622128|650231|650232|650233|650234|650235|650236|650237|650238|650239|650240|650241|650242|650243|650244|650245|650246|650247|650248|650249|650250|650251|650252|650253|650254|653545|653630|671182|677476|677477|679816|682845|685048|685049|685050|685051|685052|685053|685054|685497|685498|689563|689565|689566|689567|689568|689569|689570|689571|689572|689573|689574|689576|689577|689578|689579|689581|690281|690282|694937|694938|706320|706321|706322|729708|729709|729711|743478|758663|774222|774224|774226|774230|774231|774232|774233|774237|786907|786908|786910|786911|786912|786913|786917|786920|786923|788323|792503|792504|792505|798406|821515|822238|850296|850297|850298|850299|850300|850301|850302|850303|850304|850305|850306|850307|850308|850309|850310|850311|850312|850313|850314|850315|850316|850317|850318|850319|850320|850321|850322|850323|850324|853046|920068|920069|929824|929825|929826|929827|929828|929829|929830|929831|929832|939689|939690|939691|939692|951892|951893|951894|951895|951896|951897|951898|951899|959352|959353|959354|959355|959356|959357|959358|959359|959360|959361|959362|960391|964633|965874|971231|976690|980111|980112|980113|980114|980115|980116|980117|980118|980119", + "upstreamId": "26760|26761|26762|26763|26764|26765|26766|26767|26768|26769|26770|26772|26773|26773|26774|26774|26775|26778|26781|99039|99041|99043|99044|99045|99047|99048|99049|99052|133940|133941|133944|133945|133946|137383|137388|137389|137390|137391|137392|137393|137394|137395|137396|137398|137399|166106|177185|177500|191160|193323|196185|196186|196189|209197|209198|209199|209204|243824|265761|265767|266207|269258|274176|274280|360681|361255|379543|380125|380126|380127|384429|390648|411489|411489|411493|424620|424679|426493|430936|430938|430940|430942|442458|442459|446776|471025|471046|471048|471050|471050|471057|471058|471737|471741|471746|471747|471753|471997|471998|471999|472000|472006|472007|472009|472207|472208|472209|472210|472211|472212|472213|472214|472215|491357|512762|512762|512763|512767|512768|512770|534939|534944|534945|534947|534958|534959|534966|534974|534975|534977|534982|535076|535078|535080|535086|535201|535202|535203|535204|535205|535206|535207|535208|535209|535210|535211|538322|538323|551801|552266|572595|572596|572599|572601|572603|574016|574018|574019|574020|574022|574914|574915|574915|574989|574990|575281|575454|575455|575456|575457|575458|575459|578600|581078|581081|581084|581197|622128|650231|650232|650233|650234|650235|650236|650237|650238|650239|650240|650241|650242|650243|650244|650245|650246|650247|650248|650249|650250|650251|650252|650253|650254|653545|653630|671182|677476|677477|679816|682845|685048|685049|685050|685051|685052|685053|685054|685497|685498|689563|689565|689566|689567|689568|689569|689570|689571|689572|689573|689574|689576|689577|689578|689579|689581|690281|690282|694937|694938|706320|706321|706322|729708|729709|729711|743478|758663|774222|774224|774226|774230|774231|774232|774233|774237|786907|786908|786910|786911|786912|786913|786917|786920|786923|788323|792503|792504|792505|798406|821515|822238|850296|850297|850298|850299|850300|850301|850302|850303|850304|850305|850306|850307|850308|850309|850310|850311|850312|850313|850314|850315|850316|850317|850318|850319|850320|850321|850322|850323|850324|853046|920068|920069|929824|929825|929826|929827|929828|929829|929830|929831|929832|939689|939690|939691|939692|951892|951893|951894|951895|951896|951897|951898|951899|959352|959353|959354|959355|959356|959357|959358|959359|959360|959361|959362|960391|964633|965874|971231|976690|980111|980112|980113|980114|980115|980116|980117|980118|980119", "text": "Alpha thalassemia-X-linked intellectual disability syndrome" }, { - "baseId": "26763|27404|558396|612017", + "upstreamId": "26763|27404|558396|612017", "text": "Atypical teratoid/rhabdoid tumor" }, { - "baseId": "26763|27403|27404", + "upstreamId": "26763|27403|27404", "text": "Astrocytoma, anaplastic" }, { - "baseId": "26767|48495|48495|59193|181453|202291|214480|223771|263192|263996|514043|613536|613537|653986|676955|676971|794110|800332|904877|921253|965616|983725|983747", + "upstreamId": "26767|48495|48495|59193|181453|202291|214480|223771|263192|263996|514043|613536|613537|653986|676955|676971|794110|800332|904877|921253|965616|983725|983747", "text": "Intellectual disability, severe" }, { - "baseId": "26767|263244|434101|805085|969548", + "upstreamId": "26767|263244|434101|805085|969548", "text": "Ambiguous genitalia" }, { - "baseId": "26770|26771|26776|26781|26782|26783|26784|26785", + "upstreamId": "26770|26771|26776|26781|26782|26783|26784|26785", "text": "Mental retardation-hypotonic facies syndrome, X-linked" }, { - "baseId": "26770|26773|26774|26774|26781|99048|225841|263756|390648|411489|434706|471050|512762|512763|574915|583140|622930|622931|677476|677477|964003|964632|964634|964917|969733|976690", + "upstreamId": "26770|26773|26774|26774|26781|99048|225841|263756|390648|411489|434706|471050|512762|512763|574915|583140|622930|622931|677476|677477|964003|964632|964634|964917|969733|976690", "text": "X-linked intellectual disability-hypotonic face syndrome" }, { - "baseId": "26774|26779|26780|411489|471050|512762|512763|574915|976690", + "upstreamId": "26774|26779|26780|411489|471050|512762|512763|574915|976690", "text": "Acquired hemoglobin H disease" }, { - "baseId": "26774", + "upstreamId": "26774", "text": "Renier-Gabreels-Jasper syndrome" }, { - "baseId": "26786|26787|26788|26789|26790|26791|26792|26793|26800|26802|26803|26804|26806|26809|26811|26813|26814|38883|99651|99653|99653|99654|99656|99657|99660|99662|99664|99666|99668|99670|99673|99674|99675|99679|99680|134505|134506|134507|134508|134509|134511|134512|134513|134514|134515|134516|134517|134518|134519|134520|134521|134522|134523|141089|177439|177710|177714|188014|188015|188016|188017|188018|188019|188021|188022|188023|188023|188024|188025|188026|188027|188028|188030|188031|188031|188032|188032|188033|188034|188035|188036|188037|188038|188039|188040|188041|191008|191008|191359|191890|192831|192900|193109|193272|194223|194569|194589|194660|194679|194703|194889|195294|195629|205515|205799|208964|208964|208967|208968|208971|208973|208974|208977|208978|210456|210457|210460|210461|210462|210463|210464|210471|210472|210473|210476|210477|210478|210483|210484|210485|210486|210493|210496|210497|210504|210505|210506|210507|210508|210509|210512|210514|210515|210516|210518|210519|210521|210522|210523|210525|210526|210527|210528|210529|210531|210532|210533|210540|222883|232151|237396|243767|243768|243772|243773|243775|243776|243777|257784|257785|259150|259152|259154|259155|259158|259161|259163|259166|266603|267750|267764|270944|271084|271829|272989|273519|273844|273846|354186|377906|377915|377916|377927|377939|377943|377962|377974|377982|379072|379082|379088|379111|379167|379168|379192|379193|379195|379208|379209|379211|379978|379984|379985|379988|404020|404119|404121|404124|404127|404129|404131|404140|404146|404150|404166|404469|404470|404472|404474|404475|404476|404477|404479|404481|404490|404515|404516|404517|404519|404526|404527|404529|411193|411196|426433|426564|430717|430718|430720|430721|430722|430724|430725|430725|430726|430731|432228|433576|442400|442401|446563|446570|470586|470587|470594|470599|470602|470604|470610|470615|470621|470624|470626|471359|471360|471368|471371|471375|471381|471385|471391|471392|471395|471398|471401|471402|471404|471406|471811|471812|471813|471815|471817|471818|471819|471820|471823|471827|471830|471832|471833|471834|471835|472093|472094|472095|472096|472097|472098|472099|472100|472101|472102|481079|481080|481081|481081|481082|485812|489115|490318|494079|507880|507902|508014|508046|508061|508070|508073|508438|508441|508450|508451|508458|508460|508471|508574|508583|508591|508595|510901|510904|510905|510907|510909|510910|510912|510913|510916|510917|510920|510921|510927|512622|534625|534626|534630|534633|534635|534648|534653|534665|534671|534674|534677|534684|534685|534695|534700|534703|534704|534710|534713|534717|534724|534726|534728|534729|534731|534732|534734|534741|534744|534747|534749|534756|534850|535089|535090|535092|535094|535096|535097|535098|535103|535105|535107|538297|539110|552472|552473|553162|572083|572339|572344|572347|572349|572355|572356|572358|572359|572361|572364|573679|573686|573691|573697|573701|573704|573705|573708|573714|573718|573723|573726|573727|574180|574351|574353|574355|574357|574359|574361|574363|574365|574367|574369|575363|575364|575365|575366|575367|575368|575369|575370|575371|580857|580869|580889|580890|581025|582011|586385|609038|613239|614545|626293|649823|649824|649825|649826|649827|649828|649829|649830|649831|649832|649833|649834|649835|649836|649837|649838|649839|649840|649841|649842|649843|649844|649845|649846|649847|649848|649849|649850|649851|649852|649853|649854|649855|649856|649857|649858|649859|649860|649861|649862|649863|649864|649865|649866|649867|649868|649869|649870|649871|649872|649873|649874|649875|649876|649877|653289|653291|653293|653441|653779|653780|684973|684974|685486|689411|689412|689413|689414|689416|689418|689419|689420|689421|689422|689425|689426|689430|689433|689434|690260|690261|690262|694831|694834|694840|729507|758385|760994|773897|773901|773903|773910|776965|786748|786749|786751|798220|798808|821491|821492|849794|849795|849796|849797|849798|849799|849800|849801|849802|849803|849804|849805|849806|849807|849808|849809|849810|849811|849812|849813|849814|849815|849816|849817|849818|849819|849820|849821|849822|849823|849824|851948|852969|852970|853031|919986|929616|929617|929618|929619|929620|929621|929622|929623|929624|929625|929626|929627|939487|939488|939489|939490|939491|939492|939493|939494|939495|939496|939497|939498|939499|939500|939501|940546|941288|941289|951664|951665|951666|951667|951668|951669|951670|951671|951672|951673|951674|951675|951676|951677|951678|951679|951680|951681|951682|951683|959200|959201|959202|959203|959204|960369|964583|976681", + "upstreamId": "26786|26787|26788|26789|26790|26791|26792|26793|26800|26802|26803|26804|26806|26809|26811|26813|26814|38883|99651|99653|99653|99654|99656|99657|99660|99662|99664|99666|99668|99670|99673|99674|99675|99679|99680|134505|134506|134507|134508|134509|134511|134512|134513|134514|134515|134516|134517|134518|134519|134520|134521|134522|134523|141089|177439|177710|177714|188014|188015|188016|188017|188018|188019|188021|188022|188023|188023|188024|188025|188026|188027|188028|188030|188031|188031|188032|188032|188033|188034|188035|188036|188037|188038|188039|188040|188041|191008|191008|191359|191890|192831|192900|193109|193272|194223|194569|194589|194660|194679|194703|194889|195294|195629|205515|205799|208964|208964|208967|208968|208971|208973|208974|208977|208978|210456|210457|210460|210461|210462|210463|210464|210471|210472|210473|210476|210477|210478|210483|210484|210485|210486|210493|210496|210497|210504|210505|210506|210507|210508|210509|210512|210514|210515|210516|210518|210519|210521|210522|210523|210525|210526|210527|210528|210529|210531|210532|210533|210540|222883|232151|237396|243767|243768|243772|243773|243775|243776|243777|257784|257785|259150|259152|259154|259155|259158|259161|259163|259166|266603|267750|267764|270944|271084|271829|272989|273519|273844|273846|354186|377906|377915|377916|377927|377939|377943|377962|377974|377982|379072|379082|379088|379111|379167|379168|379192|379193|379195|379208|379209|379211|379978|379984|379985|379988|404020|404119|404121|404124|404127|404129|404131|404140|404146|404150|404166|404469|404470|404472|404474|404475|404476|404477|404479|404481|404490|404515|404516|404517|404519|404526|404527|404529|411193|411196|426433|426564|430717|430718|430720|430721|430722|430724|430725|430725|430726|430731|432228|433576|442400|442401|446563|446570|470586|470587|470594|470599|470602|470604|470610|470615|470621|470624|470626|471359|471360|471368|471371|471375|471381|471385|471391|471392|471395|471398|471401|471402|471404|471406|471811|471812|471813|471815|471817|471818|471819|471820|471823|471827|471830|471832|471833|471834|471835|472093|472094|472095|472096|472097|472098|472099|472100|472101|472102|481079|481080|481081|481081|481082|485812|489115|490318|494079|507880|507902|508014|508046|508061|508070|508073|508438|508441|508450|508451|508458|508460|508471|508574|508583|508591|508595|510901|510904|510905|510907|510909|510910|510912|510913|510916|510917|510920|510921|510927|512622|534625|534626|534630|534633|534635|534648|534653|534665|534671|534674|534677|534684|534685|534695|534700|534703|534704|534710|534713|534717|534724|534726|534728|534729|534731|534732|534734|534741|534744|534747|534749|534756|534850|535089|535090|535092|535094|535096|535097|535098|535103|535105|535107|538297|539110|552472|552473|553162|572083|572339|572344|572347|572349|572355|572356|572358|572359|572361|572364|573679|573686|573691|573697|573701|573704|573705|573708|573714|573718|573723|573726|573727|574180|574351|574353|574355|574357|574359|574361|574363|574365|574367|574369|575363|575364|575365|575366|575367|575368|575369|575370|575371|580857|580869|580889|580890|581025|582011|586385|609038|613239|614545|626293|649823|649824|649825|649826|649827|649828|649829|649830|649831|649832|649833|649834|649835|649836|649837|649838|649839|649840|649841|649842|649843|649844|649845|649846|649847|649848|649849|649850|649851|649852|649853|649854|649855|649856|649857|649858|649859|649860|649861|649862|649863|649864|649865|649866|649867|649868|649869|649870|649871|649872|649873|649874|649875|649876|649877|653289|653291|653293|653441|653779|653780|684973|684974|685486|689411|689412|689413|689414|689416|689418|689419|689420|689421|689422|689425|689426|689430|689433|689434|690260|690261|690262|694831|694834|694840|729507|758385|760994|773897|773901|773903|773910|776965|786748|786749|786751|798220|798808|821491|821492|849794|849795|849796|849797|849798|849799|849800|849801|849802|849803|849804|849805|849806|849807|849808|849809|849810|849811|849812|849813|849814|849815|849816|849817|849818|849819|849820|849821|849822|849823|849824|851948|852969|852970|853031|919986|929616|929617|929618|929619|929620|929621|929622|929623|929624|929625|929626|929627|939487|939488|939489|939490|939491|939492|939493|939494|939495|939496|939497|939498|939499|939500|939501|940546|941288|941289|951664|951665|951666|951667|951668|951669|951670|951671|951672|951673|951674|951675|951676|951677|951678|951679|951680|951681|951682|951683|959200|959201|959202|959203|959204|960369|964583|976681", "text": "Periventricular nodular heterotopia 1" }, { - "baseId": "26794|26805|26811|481224|976681", + "upstreamId": "26794|26805|26811|481224|976681", "text": "Oto-palato-digital syndrome, type I" }, { - "baseId": "26794|264749", + "upstreamId": "26794|264749", "text": "Conductive hearing impairment" }, { - "baseId": "26795|26798|26800|26811|26811|26812|26813|26814|99651|99653|99654|99656|99657|99660|99662|99666|99668|99670|99673|99674|99675|99679|99680|134505|134506|134507|134508|134509|134511|134512|134513|134514|134515|134516|134517|134518|134519|134520|134521|134522|134523|141089|177439|177710|177714|188021|188023|188031|188032|191008|191359|191890|192831|192900|193109|193272|194223|194569|194589|194660|194679|194703|194889|195294|195629|205515|205799|208964|208967|208968|208971|208973|208974|208977|208978|210456|210460|210461|210462|210463|210464|210471|210472|210473|210476|210477|210478|210483|210484|210485|210486|210493|210496|210497|210504|210505|210506|210507|210508|210509|210512|210514|210516|210518|210519|210521|210522|210523|210525|210526|210527|210528|210531|210532|210533|210540|222883|232151|237396|243767|243768|243772|243773|243775|243776|243777|257784|257785|259150|259152|259154|259155|259158|259161|259163|259166|266603|267750|267764|270944|271084|271829|272989|273519|273844|273846|377906|377915|377916|377927|377939|377943|377962|377974|377982|379072|379082|379088|379111|379167|379168|379192|379193|379195|379208|379209|379211|379978|379984|379985|379988|404119|404121|404124|404127|404129|404131|404140|404146|404150|404166|404469|404470|404474|404475|404476|404477|404479|404481|404490|404515|404516|404519|404526|404527|404529|411193|411196|426433|426564|430717|430718|430720|430721|430722|430724|430725|430726|430731|433576|442400|442401|446563|446570|470586|470587|470594|470599|470602|470604|470610|470615|470621|470624|470626|471359|471360|471368|471371|471375|471381|471385|471391|471392|471395|471398|471401|471402|471404|471406|471811|471812|471813|471815|471817|471818|471819|471820|471823|471827|471830|471832|471833|471834|471835|472093|472094|472095|472096|472097|472098|472099|472100|472101|472102|481081|485812|489115|490318|494079|507880|507902|508014|508046|508061|508070|508073|508438|508441|508450|508451|508458|508460|508471|508574|508583|508591|508595|510901|510904|510905|510907|510909|510910|510912|510913|510916|510917|510920|510921|510927|512622|534625|534626|534630|534633|534635|534648|534653|534665|534671|534674|534677|534684|534685|534695|534700|534703|534704|534710|534713|534717|534724|534726|534728|534729|534731|534732|534734|534741|534744|534747|534749|534756|534850|535089|535090|535092|535094|535096|535097|535098|535103|535105|535107|538297|552472|552473|572083|572339|572344|572347|572349|572355|572356|572358|572359|572361|572364|573679|573686|573691|573697|573701|573704|573705|573708|573714|573718|573723|573726|573727|574180|574351|574353|574355|574357|574359|574361|574363|574365|574367|574369|575363|575364|575365|575366|575367|575368|575369|575370|575371|580857|580869|580889|580890|581025|582011|586385|609038|613239|626293|649823|649824|649825|649826|649827|649828|649829|649830|649831|649832|649833|649834|649835|649836|649837|649838|649839|649840|649841|649842|649843|649844|649845|649846|649847|649848|649849|649850|649851|649852|649853|649854|649855|649856|649857|649858|649859|649860|649861|649862|649863|649864|649865|649866|649867|649868|649869|649870|649871|649872|649873|649874|649875|649876|649877|653289|653291|653293|653441|653779|653780|684973|684974|685486|689411|689412|689413|689414|689416|689418|689419|689420|689421|689422|689425|689426|689430|689433|689434|690260|690261|690262|694831|694834|694840|729507|758385|760994|773897|773901|773903|773910|776965|786748|786749|786751|798220|821491|821492|849794|849795|849796|849797|849798|849799|849800|849801|849802|849803|849804|849805|849806|849807|849808|849809|849810|849811|849812|849813|849814|849815|849816|849817|849818|849819|849820|849821|849822|849823|849824|851948|852969|852970|853031|919986|929616|929617|929618|929619|929620|929621|929622|929623|929624|929625|929626|929627|939487|939488|939489|939490|939491|939492|939493|939494|939495|939496|939497|939498|939499|939500|939501|940546|941288|941289|951664|951665|951666|951667|951668|951669|951670|951671|951672|951673|951674|951675|951676|951677|951678|951679|951680|951681|951682|951683|959200|959201|959202|959203|959204|960369|976681", + "upstreamId": "26795|26798|26800|26811|26811|26812|26813|26814|99651|99653|99654|99656|99657|99660|99662|99666|99668|99670|99673|99674|99675|99679|99680|134505|134506|134507|134508|134509|134511|134512|134513|134514|134515|134516|134517|134518|134519|134520|134521|134522|134523|141089|177439|177710|177714|188021|188023|188031|188032|191008|191359|191890|192831|192900|193109|193272|194223|194569|194589|194660|194679|194703|194889|195294|195629|205515|205799|208964|208967|208968|208971|208973|208974|208977|208978|210456|210460|210461|210462|210463|210464|210471|210472|210473|210476|210477|210478|210483|210484|210485|210486|210493|210496|210497|210504|210505|210506|210507|210508|210509|210512|210514|210516|210518|210519|210521|210522|210523|210525|210526|210527|210528|210531|210532|210533|210540|222883|232151|237396|243767|243768|243772|243773|243775|243776|243777|257784|257785|259150|259152|259154|259155|259158|259161|259163|259166|266603|267750|267764|270944|271084|271829|272989|273519|273844|273846|377906|377915|377916|377927|377939|377943|377962|377974|377982|379072|379082|379088|379111|379167|379168|379192|379193|379195|379208|379209|379211|379978|379984|379985|379988|404119|404121|404124|404127|404129|404131|404140|404146|404150|404166|404469|404470|404474|404475|404476|404477|404479|404481|404490|404515|404516|404519|404526|404527|404529|411193|411196|426433|426564|430717|430718|430720|430721|430722|430724|430725|430726|430731|433576|442400|442401|446563|446570|470586|470587|470594|470599|470602|470604|470610|470615|470621|470624|470626|471359|471360|471368|471371|471375|471381|471385|471391|471392|471395|471398|471401|471402|471404|471406|471811|471812|471813|471815|471817|471818|471819|471820|471823|471827|471830|471832|471833|471834|471835|472093|472094|472095|472096|472097|472098|472099|472100|472101|472102|481081|485812|489115|490318|494079|507880|507902|508014|508046|508061|508070|508073|508438|508441|508450|508451|508458|508460|508471|508574|508583|508591|508595|510901|510904|510905|510907|510909|510910|510912|510913|510916|510917|510920|510921|510927|512622|534625|534626|534630|534633|534635|534648|534653|534665|534671|534674|534677|534684|534685|534695|534700|534703|534704|534710|534713|534717|534724|534726|534728|534729|534731|534732|534734|534741|534744|534747|534749|534756|534850|535089|535090|535092|535094|535096|535097|535098|535103|535105|535107|538297|552472|552473|572083|572339|572344|572347|572349|572355|572356|572358|572359|572361|572364|573679|573686|573691|573697|573701|573704|573705|573708|573714|573718|573723|573726|573727|574180|574351|574353|574355|574357|574359|574361|574363|574365|574367|574369|575363|575364|575365|575366|575367|575368|575369|575370|575371|580857|580869|580889|580890|581025|582011|586385|609038|613239|626293|649823|649824|649825|649826|649827|649828|649829|649830|649831|649832|649833|649834|649835|649836|649837|649838|649839|649840|649841|649842|649843|649844|649845|649846|649847|649848|649849|649850|649851|649852|649853|649854|649855|649856|649857|649858|649859|649860|649861|649862|649863|649864|649865|649866|649867|649868|649869|649870|649871|649872|649873|649874|649875|649876|649877|653289|653291|653293|653441|653779|653780|684973|684974|685486|689411|689412|689413|689414|689416|689418|689419|689420|689421|689422|689425|689426|689430|689433|689434|690260|690261|690262|694831|694834|694840|729507|758385|760994|773897|773901|773903|773910|776965|786748|786749|786751|798220|821491|821492|849794|849795|849796|849797|849798|849799|849800|849801|849802|849803|849804|849805|849806|849807|849808|849809|849810|849811|849812|849813|849814|849815|849816|849817|849818|849819|849820|849821|849822|849823|849824|851948|852969|852970|853031|919986|929616|929617|929618|929619|929620|929621|929622|929623|929624|929625|929626|929627|939487|939488|939489|939490|939491|939492|939493|939494|939495|939496|939497|939498|939499|939500|939501|940546|941288|941289|951664|951665|951666|951667|951668|951669|951670|951671|951672|951673|951674|951675|951676|951677|951678|951679|951680|951681|951682|951683|959200|959201|959202|959203|959204|960369|976681", "text": "Oto-palato-digital syndrome, type II" }, { - "baseId": "26796|26800|26800|99662|188032|194589|208971|208977|210456|210508|210523|210526|210527|210528|222883|243767|243768|377916|404119|404124|404129|404166|404469|404474|404479|404490|404515|404516|404519|404526|404527|404529|411193|411196|426564|430720|430722|430731|442400|470586|470594|470599|470602|470604|470610|470621|470624|471359|471360|471368|471371|471375|471392|471398|471402|471406|471813|471820|471823|471830|471832|471833|471834|471835|472094|472101|472102|481081|508438|508460|510910|510916|534625|534626|534633|534648|534665|534674|534677|534685|534695|534703|534704|534710|534713|534724|534728|534732|534741|534747|534749|534756|534850|535090|535097|535098|535103|535105|535107|539110|572083|572339|572344|572347|572349|572355|572358|572359|572361|572364|573679|573686|573691|573697|573701|573704|573705|573708|573718|573723|573726|573727|574180|574351|574353|574357|574361|574363|574365|574367|574369|575363|575365|575366|575367|575368|575369|575370|575371|578589|649825|649826|649827|649828|649832|649834|649835|649836|649837|649838|649839|649840|649841|649842|649843|649844|649845|649846|649848|649849|649850|649851|649852|649854|649856|649857|649858|649861|649863|649864|649866|649867|649869|649870|649872|649873|649874|649875|649876|649877|653289|653293|653441", + "upstreamId": "26796|26800|26800|99662|188032|194589|208971|208977|210456|210508|210523|210526|210527|210528|222883|243767|243768|377916|404119|404124|404129|404166|404469|404474|404479|404490|404515|404516|404519|404526|404527|404529|411193|411196|426564|430720|430722|430731|442400|470586|470594|470599|470602|470604|470610|470621|470624|471359|471360|471368|471371|471375|471392|471398|471402|471406|471813|471820|471823|471830|471832|471833|471834|471835|472094|472101|472102|481081|508438|508460|510910|510916|534625|534626|534633|534648|534665|534674|534677|534685|534695|534703|534704|534710|534713|534724|534728|534732|534741|534747|534749|534756|534850|535090|535097|535098|535103|535105|535107|539110|572083|572339|572344|572347|572349|572355|572358|572359|572361|572364|573679|573686|573691|573697|573701|573704|573705|573708|573718|573723|573726|573727|574180|574351|574353|574357|574361|574363|574365|574367|574369|575363|575365|575366|575367|575368|575369|575370|575371|578589|649825|649826|649827|649828|649832|649834|649835|649836|649837|649838|649839|649840|649841|649842|649843|649844|649845|649846|649848|649849|649850|649851|649852|649854|649856|649857|649858|649861|649863|649864|649866|649867|649869|649870|649872|649873|649874|649875|649876|649877|653289|653293|653441", "text": "Frontometaphyseal dysplasia 1" }, { - "baseId": "26797|26798|26800|26811|26813|26814|34114|99651|99653|99654|99656|99657|99660|99662|99666|99668|99670|99673|99674|99675|99679|99680|134505|134506|134507|134508|134509|134511|134512|134513|134514|134515|134516|134517|134518|134519|134520|134521|134522|134523|141089|177439|177710|177714|188021|188023|188031|188032|191008|191359|191890|192831|192900|193109|193272|194223|194569|194589|194660|194679|194703|194889|195294|195629|205515|205799|208964|208967|208968|208971|208973|208974|208977|208978|210456|210460|210461|210462|210463|210464|210471|210472|210473|210476|210477|210478|210483|210484|210485|210486|210493|210496|210497|210504|210505|210506|210507|210508|210509|210512|210514|210516|210518|210519|210521|210522|210523|210525|210526|210526|210527|210528|210531|210532|210533|210540|222883|232151|237396|243767|243768|243772|243773|243775|243776|243777|257784|257785|259150|259152|259154|259155|259158|259161|259163|259166|266603|267750|267764|270944|271084|271829|272989|273519|273844|273846|377906|377915|377916|377927|377939|377943|377962|377974|377982|379072|379082|379088|379111|379167|379168|379192|379193|379195|379208|379209|379211|379978|379984|379985|379988|404119|404121|404124|404127|404129|404131|404140|404146|404150|404166|404469|404470|404474|404475|404476|404477|404479|404481|404490|404515|404516|404519|404526|404527|404529|411193|411196|426433|426564|430717|430718|430720|430721|430722|430724|430725|430726|430731|433576|442400|442401|446563|446570|470586|470587|470594|470599|470602|470604|470610|470615|470621|470624|470626|471359|471360|471368|471371|471375|471381|471385|471391|471392|471395|471398|471401|471402|471404|471406|471811|471812|471813|471815|471817|471818|471819|471820|471823|471827|471830|471832|471833|471834|471835|472093|472094|472095|472096|472097|472098|472099|472100|472101|472102|481081|485812|489115|490318|494079|507880|507902|508014|508046|508061|508070|508073|508438|508441|508450|508451|508458|508460|508471|508574|508583|508591|508595|510901|510904|510905|510907|510909|510910|510912|510913|510916|510917|510920|510921|510927|512622|534625|534626|534630|534633|534635|534648|534653|534665|534671|534674|534677|534684|534685|534695|534700|534703|534704|534710|534713|534717|534724|534726|534728|534729|534731|534732|534734|534741|534744|534747|534749|534756|534850|535089|535090|535092|535094|535096|535097|535098|535103|535105|535107|538297|539110|552472|552473|572083|572339|572344|572347|572349|572355|572356|572358|572359|572361|572364|573679|573686|573691|573697|573701|573704|573705|573708|573714|573718|573723|573726|573727|574180|574351|574353|574355|574357|574359|574361|574363|574365|574367|574369|575363|575364|575365|575366|575367|575368|575369|575370|575371|580857|580869|580889|580890|581025|582011|586385|609038|613239|626293|649823|649824|649825|649826|649827|649828|649829|649830|649831|649832|649833|649834|649835|649836|649837|649838|649839|649840|649841|649842|649843|649844|649845|649846|649847|649848|649849|649850|649851|649852|649853|649854|649855|649856|649857|649858|649859|649860|649861|649862|649863|649864|649865|649866|649867|649868|649869|649870|649871|649872|649873|649874|649875|649876|649877|653289|653291|653293|653441|653779|653780|684973|684974|685486|689411|689412|689413|689414|689416|689418|689419|689420|689421|689422|689425|689426|689430|689433|689434|690260|690261|690262|694831|694834|694840|729507|758385|760994|773897|773901|773903|773910|776965|786748|786749|786751|798220|821491|821492|849794|849795|849796|849797|849798|849799|849800|849801|849802|849803|849804|849805|849806|849807|849808|849809|849810|849811|849812|849813|849814|849815|849816|849817|849818|849819|849820|849821|849822|849823|849824|851948|852969|852970|853031|919986|929616|929617|929618|929619|929620|929621|929622|929623|929624|929625|929626|929627|939487|939488|939489|939490|939491|939492|939493|939494|939495|939496|939497|939498|939499|939500|939501|940546|941288|941289|951664|951665|951666|951667|951668|951669|951670|951671|951672|951673|951674|951675|951676|951677|951678|951679|951680|951681|951682|951683|959200|959201|959202|959203|959204|960369|970552|971191|971192|976681", + "upstreamId": "26797|26798|26800|26811|26813|26814|34114|99651|99653|99654|99656|99657|99660|99662|99666|99668|99670|99673|99674|99675|99679|99680|134505|134506|134507|134508|134509|134511|134512|134513|134514|134515|134516|134517|134518|134519|134520|134521|134522|134523|141089|177439|177710|177714|188021|188023|188031|188032|191008|191359|191890|192831|192900|193109|193272|194223|194569|194589|194660|194679|194703|194889|195294|195629|205515|205799|208964|208967|208968|208971|208973|208974|208977|208978|210456|210460|210461|210462|210463|210464|210471|210472|210473|210476|210477|210478|210483|210484|210485|210486|210493|210496|210497|210504|210505|210506|210507|210508|210509|210512|210514|210516|210518|210519|210521|210522|210523|210525|210526|210526|210527|210528|210531|210532|210533|210540|222883|232151|237396|243767|243768|243772|243773|243775|243776|243777|257784|257785|259150|259152|259154|259155|259158|259161|259163|259166|266603|267750|267764|270944|271084|271829|272989|273519|273844|273846|377906|377915|377916|377927|377939|377943|377962|377974|377982|379072|379082|379088|379111|379167|379168|379192|379193|379195|379208|379209|379211|379978|379984|379985|379988|404119|404121|404124|404127|404129|404131|404140|404146|404150|404166|404469|404470|404474|404475|404476|404477|404479|404481|404490|404515|404516|404519|404526|404527|404529|411193|411196|426433|426564|430717|430718|430720|430721|430722|430724|430725|430726|430731|433576|442400|442401|446563|446570|470586|470587|470594|470599|470602|470604|470610|470615|470621|470624|470626|471359|471360|471368|471371|471375|471381|471385|471391|471392|471395|471398|471401|471402|471404|471406|471811|471812|471813|471815|471817|471818|471819|471820|471823|471827|471830|471832|471833|471834|471835|472093|472094|472095|472096|472097|472098|472099|472100|472101|472102|481081|485812|489115|490318|494079|507880|507902|508014|508046|508061|508070|508073|508438|508441|508450|508451|508458|508460|508471|508574|508583|508591|508595|510901|510904|510905|510907|510909|510910|510912|510913|510916|510917|510920|510921|510927|512622|534625|534626|534630|534633|534635|534648|534653|534665|534671|534674|534677|534684|534685|534695|534700|534703|534704|534710|534713|534717|534724|534726|534728|534729|534731|534732|534734|534741|534744|534747|534749|534756|534850|535089|535090|535092|535094|535096|535097|535098|535103|535105|535107|538297|539110|552472|552473|572083|572339|572344|572347|572349|572355|572356|572358|572359|572361|572364|573679|573686|573691|573697|573701|573704|573705|573708|573714|573718|573723|573726|573727|574180|574351|574353|574355|574357|574359|574361|574363|574365|574367|574369|575363|575364|575365|575366|575367|575368|575369|575370|575371|580857|580869|580889|580890|581025|582011|586385|609038|613239|626293|649823|649824|649825|649826|649827|649828|649829|649830|649831|649832|649833|649834|649835|649836|649837|649838|649839|649840|649841|649842|649843|649844|649845|649846|649847|649848|649849|649850|649851|649852|649853|649854|649855|649856|649857|649858|649859|649860|649861|649862|649863|649864|649865|649866|649867|649868|649869|649870|649871|649872|649873|649874|649875|649876|649877|653289|653291|653293|653441|653779|653780|684973|684974|685486|689411|689412|689413|689414|689416|689418|689419|689420|689421|689422|689425|689426|689430|689433|689434|690260|690261|690262|694831|694834|694840|729507|758385|760994|773897|773901|773903|773910|776965|786748|786749|786751|798220|821491|821492|849794|849795|849796|849797|849798|849799|849800|849801|849802|849803|849804|849805|849806|849807|849808|849809|849810|849811|849812|849813|849814|849815|849816|849817|849818|849819|849820|849821|849822|849823|849824|851948|852969|852970|853031|919986|929616|929617|929618|929619|929620|929621|929622|929623|929624|929625|929626|929627|939487|939488|939489|939490|939491|939492|939493|939494|939495|939496|939497|939498|939499|939500|939501|940546|941288|941289|951664|951665|951666|951667|951668|951669|951670|951671|951672|951673|951674|951675|951676|951677|951678|951679|951680|951681|951682|951683|959200|959201|959202|959203|959204|960369|970552|971191|971192|976681", "text": "Melnick-Needles syndrome" }, { - "baseId": "26799", + "upstreamId": "26799", "text": "Heterotopia, periventricular, with frontometaphyseal dysplasia" }, { - "baseId": "26801|26807", + "upstreamId": "26801|26807", "text": "Otopalatodigital spectrum disorder" }, { - "baseId": "26809|26815|26816|26817|26818|205799|430731|539110|623788|623789|860809|919985|919986|919987|919988|919989|920441", + "upstreamId": "26809|26815|26816|26817|26818|205799|430731|539110|623788|623789|860809|919985|919986|919987|919988|919989|920441", "text": "Cardiac valvular dysplasia, X-linked" }, { - "baseId": "26810|481079|481083", + "upstreamId": "26810|481079|481083", "text": "Intestinal pseudoobstruction, neuronal, chronic idiopathic, X-linked" }, { - "baseId": "26811|26813|26814|99651|99653|99654|99656|99657|99660|99666|99668|99670|99673|99674|99675|99679|99680|134505|134506|134507|134508|134509|134511|134512|134513|134514|134515|134516|134517|134518|134519|134520|134521|134522|134523|141089|177439|177710|177714|188021|188023|188031|191008|191359|191890|192831|192900|193109|193272|194223|194569|194660|194679|194703|194889|195294|195629|205515|205799|208964|208967|208968|208973|208974|208978|210460|210461|210462|210463|210464|210471|210472|210473|210476|210477|210478|210483|210484|210485|210486|210493|210496|210497|210504|210505|210506|210507|210509|210512|210514|210516|210518|210519|210521|210522|210525|210531|210532|210533|210540|232151|237396|243772|243773|243775|243776|243777|257784|257785|259150|259152|259154|259155|259158|259161|259163|259166|266603|267750|267764|270944|271084|271829|272989|273519|273844|273846|377906|377915|377927|377939|377943|377962|377974|377982|379072|379082|379088|379111|379167|379168|379192|379193|379195|379208|379209|379211|379978|379984|379985|379988|404121|404127|404131|404140|404146|404150|404470|404475|404476|404477|404481|426433|430717|430718|430721|430724|430725|430726|433576|442401|446563|446570|470587|470615|470626|471381|471385|471391|471395|471401|471404|471811|471812|471815|471817|471818|471819|471827|472093|472095|472096|472097|472098|472099|472100|485812|489115|490318|494079|507880|507902|508014|508046|508061|508070|508073|508441|508450|508451|508458|508471|508574|508583|508591|508595|510901|510904|510905|510907|510909|510912|510913|510917|510920|510921|510927|512622|534630|534635|534653|534671|534684|534700|534717|534726|534729|534731|534734|534744|535089|535092|535094|535096|538297|552472|552473|572356|573714|574355|574359|575364|580857|580869|580889|580890|581025|582011|586385|609038|613239|626293|649823|649824|649829|649830|649831|649833|649847|649853|649855|649859|649860|649862|649865|649868|649871|653291|653779|653780|684973|684974|685486|689411|689412|689413|689414|689416|689418|689419|689420|689421|689422|689425|689426|689430|689433|689434|690260|690261|690262|694831|694834|694840|729507|758385|760994|773897|773901|773903|773910|776965|786748|786749|786751|798220|821491|821492|849794|849795|849796|849797|849798|849799|849800|849801|849802|849803|849804|849805|849806|849807|849808|849809|849810|849811|849812|849813|849814|849815|849816|849817|849818|849819|849820|849821|849822|849823|849824|851948|852969|852970|853031|919986|929616|929617|929618|929619|929620|929621|929622|929623|929624|929625|929626|929627|939487|939488|939489|939490|939491|939492|939493|939494|939495|939496|939497|939498|939499|939500|939501|940546|941288|941289|951664|951665|951666|951667|951668|951669|951670|951671|951672|951673|951674|951675|951676|951677|951678|951679|951680|951681|951682|951683|959200|959201|959202|959203|959204|960369", + "upstreamId": "26811|26813|26814|99651|99653|99654|99656|99657|99660|99666|99668|99670|99673|99674|99675|99679|99680|134505|134506|134507|134508|134509|134511|134512|134513|134514|134515|134516|134517|134518|134519|134520|134521|134522|134523|141089|177439|177710|177714|188021|188023|188031|191008|191359|191890|192831|192900|193109|193272|194223|194569|194660|194679|194703|194889|195294|195629|205515|205799|208964|208967|208968|208973|208974|208978|210460|210461|210462|210463|210464|210471|210472|210473|210476|210477|210478|210483|210484|210485|210486|210493|210496|210497|210504|210505|210506|210507|210509|210512|210514|210516|210518|210519|210521|210522|210525|210531|210532|210533|210540|232151|237396|243772|243773|243775|243776|243777|257784|257785|259150|259152|259154|259155|259158|259161|259163|259166|266603|267750|267764|270944|271084|271829|272989|273519|273844|273846|377906|377915|377927|377939|377943|377962|377974|377982|379072|379082|379088|379111|379167|379168|379192|379193|379195|379208|379209|379211|379978|379984|379985|379988|404121|404127|404131|404140|404146|404150|404470|404475|404476|404477|404481|426433|430717|430718|430721|430724|430725|430726|433576|442401|446563|446570|470587|470615|470626|471381|471385|471391|471395|471401|471404|471811|471812|471815|471817|471818|471819|471827|472093|472095|472096|472097|472098|472099|472100|485812|489115|490318|494079|507880|507902|508014|508046|508061|508070|508073|508441|508450|508451|508458|508471|508574|508583|508591|508595|510901|510904|510905|510907|510909|510912|510913|510917|510920|510921|510927|512622|534630|534635|534653|534671|534684|534700|534717|534726|534729|534731|534734|534744|535089|535092|535094|535096|538297|552472|552473|572356|573714|574355|574359|575364|580857|580869|580889|580890|581025|582011|586385|609038|613239|626293|649823|649824|649829|649830|649831|649833|649847|649853|649855|649859|649860|649862|649865|649868|649871|653291|653779|653780|684973|684974|685486|689411|689412|689413|689414|689416|689418|689419|689420|689421|689422|689425|689426|689430|689433|689434|690260|690261|690262|694831|694834|694840|729507|758385|760994|773897|773901|773903|773910|776965|786748|786749|786751|798220|821491|821492|849794|849795|849796|849797|849798|849799|849800|849801|849802|849803|849804|849805|849806|849807|849808|849809|849810|849811|849812|849813|849814|849815|849816|849817|849818|849819|849820|849821|849822|849823|849824|851948|852969|852970|853031|919986|929616|929617|929618|929619|929620|929621|929622|929623|929624|929625|929626|929627|939487|939488|939489|939490|939491|939492|939493|939494|939495|939496|939497|939498|939499|939500|939501|940546|941288|941289|951664|951665|951666|951667|951668|951669|951670|951671|951672|951673|951674|951675|951676|951677|951678|951679|951680|951681|951682|951683|959200|959201|959202|959203|959204|960369", "text": "Frontometaphyseal dysplasia" }, { - "baseId": "26813|471830|539110|578589|805127|966023|966024", + "upstreamId": "26813|471830|539110|578589|805127|966023|966024", "text": "FG syndrome 2" }, { - "baseId": "26814|539110", + "upstreamId": "26814|539110", "text": "Terminal osseous dysplasia" }, { - "baseId": "26819", + "upstreamId": "26819", "text": "Menkes disease, mild" }, { - "baseId": "26820|26821|26822|26826|26831|26832|26834|98292|98293|98296|177054|196147|209207|209208|209218|209220|209222|209229|209241|209250|209253|209261|209264|209277|209291|232158|232163|245190|245194|245197|245199|245200|245201|245202|245203|268459|268461|270367|271496|360693|361659|378665|378675|379450|379450|379452|379459|379462|379470|379546|379550|380130|411498|422518|422519|446780|446782|470384|471061|471063|471064|471066|471070|471073|471757|471758|471765|471766|471769|471771|472011|472012|472013|472015|472016|472017|472019|472217|472218|472219|472220|472221|472222|472223|508243|508247|508254|508701|512772|534393|534979|534983|534986|534987|534988|534989|534991|534992|534993|534995|535001|535091|535093|535095|535100|535101|535102|535104|535106|535212|572609|574032|574035|574038|574043|574994|575082|575083|575460|575461|575462|580995|581008|581157|650261|650262|650263|650264|650265|650266|650267|650268|650269|650270|650271|650272|650273|650274|650275|650276|650277|650278|650279|650280|650281|650282|650283|650284|650285|653477|653720|653795|656804|656805|694940|694943|694944|694945|694946|694947|694948|694949|694950|694951|694952|706324|706325|729712|743480|743481|758669|758670|758671|774241|774242|774243|774247|778708|786927|786928|786929|821518|821519|821520|821521|850326|850327|850328|850329|850330|850331|850332|850333|850334|850335|850336|850337|850338|850339|853048|917785|920071|920072|920461|920462|929833|929834|929835|929836|929837|929838|929839|939694|939695|940569|941316|951903|951904|951905|951906|951907|951908|959366|959367|959368|959369|959370|959371|959372|959373|959374|959375|964907", + "upstreamId": "26820|26821|26822|26826|26831|26832|26834|98292|98293|98296|177054|196147|209207|209208|209218|209220|209222|209229|209241|209250|209253|209261|209264|209277|209291|232158|232163|245190|245194|245197|245199|245200|245201|245202|245203|268459|268461|270367|271496|360693|361659|378665|378675|379450|379450|379452|379459|379462|379470|379546|379550|380130|411498|422518|422519|446780|446782|470384|471061|471063|471064|471066|471070|471073|471757|471758|471765|471766|471769|471771|472011|472012|472013|472015|472016|472017|472019|472217|472218|472219|472220|472221|472222|472223|508243|508247|508254|508701|512772|534393|534979|534983|534986|534987|534988|534989|534991|534992|534993|534995|535001|535091|535093|535095|535100|535101|535102|535104|535106|535212|572609|574032|574035|574038|574043|574994|575082|575083|575460|575461|575462|580995|581008|581157|650261|650262|650263|650264|650265|650266|650267|650268|650269|650270|650271|650272|650273|650274|650275|650276|650277|650278|650279|650280|650281|650282|650283|650284|650285|653477|653720|653795|656804|656805|694940|694943|694944|694945|694946|694947|694948|694949|694950|694951|694952|706324|706325|729712|743480|743481|758669|758670|758671|774241|774242|774243|774247|778708|786927|786928|786929|821518|821519|821520|821521|850326|850327|850328|850329|850330|850331|850332|850333|850334|850335|850336|850337|850338|850339|853048|917785|920071|920072|920461|920462|929833|929834|929835|929836|929837|929838|929839|939694|939695|940569|941316|951903|951904|951905|951906|951907|951908|959366|959367|959368|959369|959370|959371|959372|959373|959374|959375|964907", "text": "Cutis laxa, X-linked" }, { - "baseId": "26821|26823|26825|26827|26829|26830|26831|26832|26832|26834|98292|98293|98293|98295|98296|143211|177054|196147|196147|198649|209207|209207|209208|209209|209210|209211|209213|209214|209216|209217|209218|209218|209219|209220|209220|209221|209224|209225|209226|209227|209228|209229|209229|209230|209231|209232|209233|209234|209235|209236|209239|209240|209241|209241|209242|209243|209244|209245|209246|209247|209248|209249|209250|209250|209251|209252|209253|209254|209255|209256|209257|209258|209259|209260|209261|209261|209262|209263|209264|209264|209265|209266|209267|209268|209269|209270|209271|209272|209273|209274|209275|209276|209277|209278|209279|209281|209283|209284|209285|209286|209287|209288|209289|209290|209291|209292|209293|209294|209295|209296|209297|209298|209299|232158|232163|232163|245190|245194|245197|245199|245199|245200|245201|245201|245202|245203|268459|268461|270367|271496|360693|361659|378665|378675|379450|379450|379452|379459|379462|379470|379546|379550|380130|411496|411498|422518|422519|431024|446780|446782|470384|471061|471063|471064|471066|471070|471073|471757|471758|471765|471766|471769|471771|472011|472012|472013|472015|472016|472017|472019|472217|472218|472219|472220|472221|472222|472223|508243|508247|508254|508701|508731|512772|513695|534393|534979|534983|534986|534987|534988|534989|534991|534992|534993|534995|535001|535091|535093|535095|535100|535101|535102|535104|535106|535212|572609|574032|574035|574038|574043|574994|575082|575083|575460|575461|575462|580995|581006|581008|581157|614097|623171|650261|650262|650263|650264|650265|650266|650267|650268|650269|650270|650271|650272|650273|650274|650275|650276|650277|650278|650279|650280|650281|650282|650283|650284|650285|653477|653720|653795|656804|656805|679706|694940|694940|694943|694944|694944|694945|694946|694947|694948|694948|694949|694950|694951|694952|706324|706324|706325|706325|729712|729712|743480|743481|758669|758670|758671|774241|774241|774242|774243|774247|774252|778708|786927|786928|786928|786929|792506|792507|792508|792509|821518|821519|821520|821521|850326|850327|850328|850329|850330|850330|850331|850332|850333|850334|850335|850336|850337|850338|850339|853048|858594|929833|929834|929835|929836|929837|929838|929839|939694|939695|940569|941316|951903|951904|951905|951906|951907|951908|959366|959367|959368|959369|959370|959371|959372|959373|959374|959375|964636|980120|980121", + "upstreamId": "26821|26823|26825|26827|26829|26830|26831|26832|26832|26834|98292|98293|98293|98295|98296|143211|177054|196147|196147|198649|209207|209207|209208|209209|209210|209211|209213|209214|209216|209217|209218|209218|209219|209220|209220|209221|209224|209225|209226|209227|209228|209229|209229|209230|209231|209232|209233|209234|209235|209236|209239|209240|209241|209241|209242|209243|209244|209245|209246|209247|209248|209249|209250|209250|209251|209252|209253|209254|209255|209256|209257|209258|209259|209260|209261|209261|209262|209263|209264|209264|209265|209266|209267|209268|209269|209270|209271|209272|209273|209274|209275|209276|209277|209278|209279|209281|209283|209284|209285|209286|209287|209288|209289|209290|209291|209292|209293|209294|209295|209296|209297|209298|209299|232158|232163|232163|245190|245194|245197|245199|245199|245200|245201|245201|245202|245203|268459|268461|270367|271496|360693|361659|378665|378675|379450|379450|379452|379459|379462|379470|379546|379550|380130|411496|411498|422518|422519|431024|446780|446782|470384|471061|471063|471064|471066|471070|471073|471757|471758|471765|471766|471769|471771|472011|472012|472013|472015|472016|472017|472019|472217|472218|472219|472220|472221|472222|472223|508243|508247|508254|508701|508731|512772|513695|534393|534979|534983|534986|534987|534988|534989|534991|534992|534993|534995|535001|535091|535093|535095|535100|535101|535102|535104|535106|535212|572609|574032|574035|574038|574043|574994|575082|575083|575460|575461|575462|580995|581006|581008|581157|614097|623171|650261|650262|650263|650264|650265|650266|650267|650268|650269|650270|650271|650272|650273|650274|650275|650276|650277|650278|650279|650280|650281|650282|650283|650284|650285|653477|653720|653795|656804|656805|679706|694940|694940|694943|694944|694944|694945|694946|694947|694948|694948|694949|694950|694951|694952|706324|706324|706325|706325|729712|729712|743480|743481|758669|758670|758671|774241|774241|774242|774243|774247|774252|778708|786927|786928|786928|786929|792506|792507|792508|792509|821518|821519|821520|821521|850326|850327|850328|850329|850330|850330|850331|850332|850333|850334|850335|850336|850337|850338|850339|853048|858594|929833|929834|929835|929836|929837|929838|929839|939694|939695|940569|941316|951903|951904|951905|951906|951907|951908|959366|959367|959368|959369|959370|959371|959372|959373|959374|959375|964636|980120|980121", "text": "Menkes kinky-hair syndrome" }, { - "baseId": "26828", + "upstreamId": "26828", "text": "Menkes disease, copper-replacement responsive" }, { - "baseId": "26832|26833|26834|26834|98292|98293|98296|177054|196147|209207|209208|209218|209220|209229|209241|209250|209253|209261|209264|209277|209291|232158|232163|245190|245194|245197|245199|245200|245201|245202|245203|268459|268461|270367|271496|360693|361659|378665|378675|379450|379452|379459|379462|379470|379546|379550|380130|411498|422518|422519|446780|446782|470384|471061|471063|471064|471066|471070|471073|471757|471758|471765|471766|471769|471771|472011|472012|472013|472015|472016|472017|472019|472217|472218|472219|472220|472222|472223|508243|508247|508254|508701|512772|534393|534979|534983|534986|534987|534988|534989|534991|534992|534993|534995|535001|535091|535093|535095|535100|535101|535102|535104|535106|535212|540473|572609|574032|574035|574038|574043|574994|575082|575083|575460|575461|575462|580995|581008|581157|650261|650262|650263|650264|650265|650266|650267|650268|650269|650270|650271|650272|650273|650274|650275|650276|650277|650278|650279|650280|650281|650282|650283|650284|650285|653477|653720|653795|656804|656805|694940|694943|694944|694945|694946|694947|694948|694949|694950|694951|694952|706324|706325|729712|743480|743481|758669|758670|758671|774241|774242|774243|774247|778708|786927|786928|786929|821518|821519|821520|821521|850326|850327|850328|850329|850330|850331|850332|850333|850334|850335|850336|850337|850338|850339|853048|917785|929833|929834|929835|929836|929837|929838|929839|939694|939695|940569|941316|951903|951904|951905|951906|951907|951908|959366|959367|959368|959369|959370|959371|959372|959373|959374|959375", + "upstreamId": "26832|26833|26834|26834|98292|98293|98296|177054|196147|209207|209208|209218|209220|209229|209241|209250|209253|209261|209264|209277|209291|232158|232163|245190|245194|245197|245199|245200|245201|245202|245203|268459|268461|270367|271496|360693|361659|378665|378675|379450|379452|379459|379462|379470|379546|379550|380130|411498|422518|422519|446780|446782|470384|471061|471063|471064|471066|471070|471073|471757|471758|471765|471766|471769|471771|472011|472012|472013|472015|472016|472017|472019|472217|472218|472219|472220|472222|472223|508243|508247|508254|508701|512772|534393|534979|534983|534986|534987|534988|534989|534991|534992|534993|534995|535001|535091|535093|535095|535100|535101|535102|535104|535106|535212|540473|572609|574032|574035|574038|574043|574994|575082|575083|575460|575461|575462|580995|581008|581157|650261|650262|650263|650264|650265|650266|650267|650268|650269|650270|650271|650272|650273|650274|650275|650276|650277|650278|650279|650280|650281|650282|650283|650284|650285|653477|653720|653795|656804|656805|694940|694943|694944|694945|694946|694947|694948|694949|694950|694951|694952|706324|706325|729712|743480|743481|758669|758670|758671|774241|774242|774243|774247|778708|786927|786928|786929|821518|821519|821520|821521|850326|850327|850328|850329|850330|850331|850332|850333|850334|850335|850336|850337|850338|850339|853048|917785|929833|929834|929835|929836|929837|929838|929839|939694|939695|940569|941316|951903|951904|951905|951906|951907|951908|959366|959367|959368|959369|959370|959371|959372|959373|959374|959375", "text": "Distal spinal muscular atrophy, X-linked 3" }, { - "baseId": "26835|26836|26837|26838|26841|26846|26847|33490|49402|49403|49404|49405|49406|49407|49408|204263|204265|204266|204267|204268|204269|204270|204271|204272|204273|204274|204275|204276|339380|339382|339385|339394|339402|339406|339408|339414|339418|348898|348900|348904|348925|348926|348929|348933|348936|348941|348943|348954|348969|352291|352292|352294|352296|352297|352300|352301|352304|352305|352318|352320|352321|352323|352324|352338|352339|352902|352903|352905|352906|352907|352909|352911|352912|352913|352915|384508|432424|481351|482259|552262|578029|620931|792471|818376|850166|903073|903074|903075|903076|903077|903078|903079|903080|903081|903082|903083|903084|903085|903086|903087|903088|903089|903091|903092|903093|903094|903095|903096|903097|903098|903099|903101|903102|903103|903104|903105|903106|903107|903108|903109|903110|903479|918534|921032|921244|921246|921247|921249|962131|963389|963390|963391|964620|971212|971213|980403", + "upstreamId": "26835|26836|26837|26838|26841|26846|26847|33490|49402|49403|49404|49405|49406|49407|49408|204263|204265|204266|204267|204268|204269|204270|204271|204272|204273|204274|204275|204276|339380|339382|339385|339394|339402|339406|339408|339414|339418|348898|348900|348904|348925|348926|348929|348933|348936|348941|348943|348954|348969|352291|352292|352294|352296|352297|352300|352301|352304|352305|352318|352320|352321|352323|352324|352338|352339|352902|352903|352905|352906|352907|352909|352911|352912|352913|352915|384508|432424|481351|482259|552262|578029|620931|792471|818376|850166|903073|903074|903075|903076|903077|903078|903079|903080|903081|903082|903083|903084|903085|903086|903087|903088|903089|903091|903092|903093|903094|903095|903096|903097|903098|903099|903101|903102|903103|903104|903105|903106|903107|903108|903109|903110|903479|918534|921032|921244|921246|921247|921249|962131|963389|963390|963391|964620|971212|971213|980403", "text": "Dent disease type 1" }, { - "baseId": "26835|26842|26843|26844|962188", + "upstreamId": "26835|26842|26843|26844|962188", "text": "Proteinuria, low molecular weight, with hypercalciuria and nephrocalcinosis" }, { - "baseId": "26839|26840|26845", + "upstreamId": "26839|26840|26845", "text": "Nephrolithiasis, X-linked recessive" }, { - "baseId": "26839|920038", + "upstreamId": "26839|920038", "text": "X-linked recessive nephrolithiasis with renal failure" }, { - "baseId": "26841|204277|576346", + "upstreamId": "26841|204277|576346", "text": "Hypophosphatemic rickets, X-linked recessive" }, { - "baseId": "26848|26859|26861|26883", + "upstreamId": "26848|26859|26861|26883", "text": "Rett syndrome, zappella variant" }, { - "baseId": "26848|26850|26854|26856|26858|26862|26862|26864|26868|26868|26869|26880|26882|26883|26883|45152|45153|45157|45158|101102|101102|141890|153060|153074|153076|153101|153111|153115|153127|153138|153138|153170|153173|153190|153200|153206|153335|153338|153340|153388|153432|153432|153444|153481|165851|165866|166488|166490|166510|166511|186595|187470|187478|187495|187564|187570|187572|187573|187647|362434|404014|534722|614500", + "upstreamId": "26848|26850|26854|26856|26858|26862|26862|26864|26868|26868|26869|26880|26882|26883|26883|45152|45153|45157|45158|101102|101102|141890|153060|153074|153076|153101|153111|153115|153127|153138|153138|153170|153173|153190|153200|153206|153335|153338|153340|153388|153432|153432|153444|153481|165851|165866|166488|166490|166510|166511|186595|187470|187478|187495|187564|187570|187572|187573|187647|362434|404014|534722|614500", "text": "Mental retardation, X-linked, syndromic 13" }, { - "baseId": "26848|26850|26850|26851|26853|26854|26854|26858|26858|26862|26862|26863|26864|26867|26868|26868|26870|26872|26881|26883|26883|26885|45151|45152|45153|45154|45158|99461|101083|101084|101085|101086|101087|101088|101089|101091|101092|101093|101094|101095|101096|101097|101098|101101|101102|101102|101104|101105|141889|141890|141891|141892|141893|141894|141896|141897|141898|141899|141900|153036|153041|153046|153053|153057|153072|153073|153076|153098|153101|153104|153115|153125|153128|153135|153136|153138|153138|153144|153162|153165|153169|153170|153172|153173|153178|153181|153182|153189|153190|153195|153197|153207|153215|153217|153228|153233|153237|153241|153284|153285|153294|153306|153310|153311|153317|153333|153335|153336|153340|153341|153358|153359|153360|153366|153370|153376|153383|153385|153389|153391|153393|153396|153411|153412|153413|153418|153420|153432|153432|153434|153438|153441|153443|153446|153448|153459|153467|153468|153470|153481|153482|153490|153496|165851|165864|165865|166485|166486|166488|166488|166490|166490|166511|166521|166524|170093|186595|187495|187555|187559|187561|187566|187569|187570|190328|208948|208952|208955|237856|264950|265144|377892|377900|379123|404117|404466|404467|404468|404512|404514|413850|422439|426424|426425|470373|471357|472092|486780|507865|508424|508560|513391|534343|534503|534610|534613|534618|534620|534623|534661|534715|534722|534723|535084|535085|535087|538290|538506|572069|572070|572078|572331|572333|572335|572336|572338|573437|573439|573673|573675|574161|574162|574349|575277|575362|614500|649810|649811|649812|649813|649814|649815|649816|649817|649818|649819|649820|649821|649822|653287|653351|653699|653730|653732|689401|689404|689406|689408|717721|729506|773887|776964|800255|821486|821489|821490|822219|822220|849778|849779|849780|849781|849782|849783|849784|849785|849786|849787|849788|849789|849790|849791|849792|849793|851944|851946|929611|929612|929613|929614|929615|939480|939481|939482|939483|939484|939485|939486|940545|951658|951659|951660|951661|951662|951663|959198|959199|960368|964581", + "upstreamId": "26848|26850|26850|26851|26853|26854|26854|26858|26858|26862|26862|26863|26864|26867|26868|26868|26870|26872|26881|26883|26883|26885|45151|45152|45153|45154|45158|99461|101083|101084|101085|101086|101087|101088|101089|101091|101092|101093|101094|101095|101096|101097|101098|101101|101102|101102|101104|101105|141889|141890|141891|141892|141893|141894|141896|141897|141898|141899|141900|153036|153041|153046|153053|153057|153072|153073|153076|153098|153101|153104|153115|153125|153128|153135|153136|153138|153138|153144|153162|153165|153169|153170|153172|153173|153178|153181|153182|153189|153190|153195|153197|153207|153215|153217|153228|153233|153237|153241|153284|153285|153294|153306|153310|153311|153317|153333|153335|153336|153340|153341|153358|153359|153360|153366|153370|153376|153383|153385|153389|153391|153393|153396|153411|153412|153413|153418|153420|153432|153432|153434|153438|153441|153443|153446|153448|153459|153467|153468|153470|153481|153482|153490|153496|165851|165864|165865|166485|166486|166488|166488|166490|166490|166511|166521|166524|170093|186595|187495|187555|187559|187561|187566|187569|187570|190328|208948|208952|208955|237856|264950|265144|377892|377900|379123|404117|404466|404467|404468|404512|404514|413850|422439|426424|426425|470373|471357|472092|486780|507865|508424|508560|513391|534343|534503|534610|534613|534618|534620|534623|534661|534715|534722|534723|535084|535085|535087|538290|538506|572069|572070|572078|572331|572333|572335|572336|572338|573437|573439|573673|573675|574161|574162|574349|575277|575362|614500|649810|649811|649812|649813|649814|649815|649816|649817|649818|649819|649820|649821|649822|653287|653351|653699|653730|653732|689401|689404|689406|689408|717721|729506|773887|776964|800255|821486|821489|821490|822219|822220|849778|849779|849780|849781|849782|849783|849784|849785|849786|849787|849788|849789|849790|849791|849792|849793|851944|851946|929611|929612|929613|929614|929615|939480|939481|939482|939483|939484|939485|939486|940545|951658|951659|951660|951661|951662|951663|959198|959199|960368|964581", "text": "Severe neonatal-onset encephalopathy with microcephaly" }, { - "baseId": "26850|26850|26853|26854|26854|26858|26858|26859|26862|26862|26868|26883|45156|137081|152984|152986|152987|152988|152989|152990|152991|152996|152999|153007|153008|153010|153013|153022|153068|153101|153138|153138|153190|153325|153340|153348|153370|153432|153481|165843|165847|165855|166488|166490|186595|187569|422439|614500|919982|919983", + "upstreamId": "26850|26850|26853|26854|26854|26858|26858|26859|26862|26862|26868|26883|45156|137081|152984|152986|152987|152988|152989|152990|152991|152996|152999|153007|153008|153010|153013|153022|153068|153101|153138|153138|153190|153325|153340|153348|153370|153432|153481|165843|165847|165855|166488|166490|186595|187569|422439|614500|919982|919983", "text": "Autism, susceptibility to, X-linked 3" }, { - "baseId": "26850|26854|26858|26862|26868|26877|26883|101102|153138|153340|153432|166488|166490|186595|187495|243965|243966|613957|614500|614620|963190", + "upstreamId": "26850|26854|26858|26862|26868|26877|26883|101102|153138|153340|153432|166488|166490|186595|187495|243965|243966|613957|614500|614620|963190", "text": "Syndromic X-linked intellectual disability Lubs type" }, { - "baseId": "26854|153171|170092", + "upstreamId": "26854|153171|170092", "text": "Encephalopathy, neonatal severeMental retardation, X-linked, syndromic 13Rett syndrome" }, { - "baseId": "26862|244018|263218|263234|263346|263378|512868|513946|513964|513983|514017|514111|514327|550126|626018|626019|800980|801184|905852|905853|905854|984026|984027|984028|984030|984031|984032|984033|984034|984035", + "upstreamId": "26862|244018|263218|263234|263346|263378|512868|513946|513964|513983|514017|514111|514327|550126|626018|626019|800980|801184|905852|905853|905854|984026|984027|984028|984030|984031|984032|984033|984034|984035", "text": "Behavioral abnormality" }, { - "baseId": "26886|26887|26888|26889|26890|26891|26895|26897|26898|26899|26900|38879|52304|52309|52311|52312|52320|52323|52332|52334|52339|52340|52346|52347|52350|52354|52357|52358|52362|52365|52373|52375|52376|52384|52388|52390|52391|52392|52395|52401|52403|52411|52412|52414|52418|52422|52426|52427|52428|52430|52435|52437|52439|52441|52444|52448|52452|52455|52458|52463|52464|52466|52472|52473|52474|52477|52479|52483|52487|52489|52493|52494|52495|52498|52499|52505|52508|52513|52514|52515|174811|174815|174817|174819|174820|175221|175225|175226|175227|175230|175231|175232|175236|175238|176897|178187|178237|178242|191866|193401|194096|230245|230249|230250|231384|231419|231423|231424|231425|236904|266350|269755|272763|315230|322075|322076|328159|328161|328165|328171|328181|329420|329437|374343|415310|425944|486060|489321|497000|497399|497818|497875|497895|508743|508747|511946|538427|546726|552405|612931|654690|654694|654696|654699|656096|656097|666262|713192|724746|724747|738301|738302|738304|738305|752982|752984|752988|752990|752991|760047|760097|768771|768774|768779|768784|768785|768787|768788|768793|768795|768798|768803|768805|768806|775791|784187|784192|784195|784200|784205|784208|784211|784216|784222|787785|787833|791180|796659|822055|822056|839027|839030|839032|839039|839040|839046|839048|839049|839051|839055|839062|839067|839073|839074|839077|839083|839084|839085|852400|852407|868809|868817|868834|918366|956687|956689|956697|979148|979149|979150|979151|979152|979153|979154|979155|979156|979157|979158|979159|979160|979161|979162|979163|979164|979165|979166|979167|979168|979169|979170|979171|979172|979173|979174|979175|979176|979177|979178|979179|979180|979181|979182|979183|979184|979185|979186|979187|979188|979189|979190|979191|979192|979193|979194|979195|979196|979197|979198|979199|979200|979201|979202|979203|979204|979205|979206|979207|979208|979209|979210", + "upstreamId": "26886|26887|26888|26889|26890|26891|26895|26897|26898|26899|26900|38879|52304|52309|52311|52312|52320|52323|52332|52334|52339|52340|52346|52347|52350|52354|52357|52358|52362|52365|52373|52375|52376|52384|52388|52390|52391|52392|52395|52401|52403|52411|52412|52414|52418|52422|52426|52427|52428|52430|52435|52437|52439|52441|52444|52448|52452|52455|52458|52463|52464|52466|52472|52473|52474|52477|52479|52483|52487|52489|52493|52494|52495|52498|52499|52505|52508|52513|52514|52515|174811|174815|174817|174819|174820|175221|175225|175226|175227|175230|175231|175232|175236|175238|176897|178187|178237|178242|191866|193401|194096|230245|230249|230250|231384|231419|231423|231424|231425|236904|266350|269755|272763|315230|322075|322076|328159|328161|328165|328171|328181|329420|329437|374343|415310|425944|486060|489321|497000|497399|497818|497875|497895|508743|508747|511946|538427|546726|552405|612931|654690|654694|654696|654699|656096|656097|666262|713192|724746|724747|738301|738302|738304|738305|752982|752984|752988|752990|752991|760047|760097|768771|768774|768779|768784|768785|768787|768788|768793|768795|768798|768803|768805|768806|775791|784187|784192|784195|784200|784205|784208|784211|784216|784222|787785|787833|791180|796659|822055|822056|839027|839030|839032|839039|839040|839046|839048|839049|839051|839055|839062|839067|839073|839074|839077|839083|839084|839085|852400|852407|868809|868817|868834|918366|956687|956689|956697|979148|979149|979150|979151|979152|979153|979154|979155|979156|979157|979158|979159|979160|979161|979162|979163|979164|979165|979166|979167|979168|979169|979170|979171|979172|979173|979174|979175|979176|979177|979178|979179|979180|979181|979182|979183|979184|979185|979186|979187|979188|979189|979190|979191|979192|979193|979194|979195|979196|979197|979198|979199|979200|979201|979202|979203|979204|979205|979206|979207|979208|979209|979210", "text": "Usher syndrome, type 1B" }, { - "baseId": "26887|26889|26891|26892|26894|26895|26898|26899|26903|38881|52303|52304|52304|52305|52305|52306|52308|52309|52311|52312|52313|52315|52319|52320|52321|52323|52326|52328|52330|52331|52332|52333|52334|52336|52338|52339|52339|52340|52343|52345|52346|52346|52347|52348|52349|52350|52351|52352|52353|52354|52355|52356|52357|52358|52359|52360|52361|52362|52363|52364|52365|52367|52369|52370|52371|52373|52373|52376|52377|52378|52378|52378|52383|52385|52385|52388|52388|52390|52392|52393|52394|52394|52395|52396|52397|52399|52400|52401|52403|52404|52407|52407|52411|52411|52412|52414|52414|52416|52417|52418|52421|52422|52424|52425|52426|52427|52428|52430|52431|52432|52434|52435|52437|52438|52439|52440|52441|52442|52444|52446|52448|52449|52452|52453|52456|52457|52458|52458|52460|52461|52462|52463|52464|52465|52466|52467|52468|52469|52472|52473|52474|52475|52475|52477|52479|52483|52486|52487|52488|52492|52493|52494|52495|52496|52497|52497|52498|52499|52501|52504|52505|52508|52509|52513|52514|52515|53126|53126|129781|174810|174811|174812|174813|174814|174818|174819|174820|175221|175222|175225|175226|175227|175233|175236|175238|175238|175379|175519|175522|176872|176872|176880|176881|176882|176890|176894|176897|178183|178185|178187|178187|178237|178238|178239|178240|178241|178242|178245|178248|178280|178282|178299|178300|178301|178301|188830|188830|188830|193260|194566|194658|230238|230244|230245|230245|230249|230250|231364|231364|231366|231368|231369|231384|231384|231385|231387|231417|231417|231419|231420|231420|231421|231423|231424|231425|231426|231427|237612|237613|237614|237614|237614|238052|268060|269755|272763|275242|315220|315224|315230|315231|315242|315243|315244|315250|315250|315252|315256|315257|315258|315259|322038|322039|322043|322044|322052|322054|322055|322071|322072|322075|322076|322080|322082|322083|322084|322085|322086|322091|322094|322095|328157|328159|328161|328164|328165|328171|328172|328177|328181|328182|328183|328184|329415|329417|329419|329420|329422|329423|329424|329425|329427|329429|329431|329432|329437|329438|329439|329446|329447|329453|358080|358081|359920|360049|360049|361501|361502|374343|384410|389240|389241|389242|389242|389243|389244|408476|425944|431762|431763|431763|431766|431767|440019|444891|482004|488902|491741|493338|497208|497209|497399|497625|497811|497812|497820|497822|497860|508737|508743|514401|546382|546385|546387|546394|546395|546399|546403|546404|546408|546413|546417|546423|546425|546426|546428|546431|546436|546438|546440|546446|546457|546461|546463|546466|546469|546494|546496|546508|546520|546526|546527|546530|546599|546607|546607|546611|546612|546614|546625|546628|546637|546642|546645|546659|546664|546673|546674|546687|546688|546688|546691|546693|546694|546696|546696|546698|546700|546702|546705|546708|546709|546710|546716|546718|546720|546721|546723|546725|546726|546727|546731|546733|546734|546742|546742|546744|546746|546747|546754|546755|546756|546758|546761|546763|546766|546767|546780|546784|546790|546793|546803|546811|546814|546815|546824|546826|546828|546836|546838|546845|546856|546866|546867|546870|546873|547003|547006|547013|547015|547021|547031|547033|547034|547035|547038|547041|547042|547045|547046|547052|547055|547058|547060|547072|547079|547079|552405|553265|553266|553267|553268|615816|615841|615842|654690|713192|738305|760047|768788|768806|784189|784220|791171|791172|791173|791174|791175|791176|791177|791178|791179|791180|791181|839045|839075|857681|857682|868803|868804|868805|868806|868807|868808|868809|868810|868811|868812|868813|868814|868815|868816|868817|868818|868819|868820|868821|868822|868823|868824|868825|868826|868827|868828|868829|868830|868831|868832|868833|868834|868835|868836|868837|868838|868839|868840|868841|868842|872137|872138|872139|872140|872141|872142|872143|872144", + "upstreamId": "26887|26889|26891|26892|26894|26895|26898|26899|26903|38881|52303|52304|52304|52305|52305|52306|52308|52309|52311|52312|52313|52315|52319|52320|52321|52323|52326|52328|52330|52331|52332|52333|52334|52336|52338|52339|52339|52340|52343|52345|52346|52346|52347|52348|52349|52350|52351|52352|52353|52354|52355|52356|52357|52358|52359|52360|52361|52362|52363|52364|52365|52367|52369|52370|52371|52373|52373|52376|52377|52378|52378|52378|52383|52385|52385|52388|52388|52390|52392|52393|52394|52394|52395|52396|52397|52399|52400|52401|52403|52404|52407|52407|52411|52411|52412|52414|52414|52416|52417|52418|52421|52422|52424|52425|52426|52427|52428|52430|52431|52432|52434|52435|52437|52438|52439|52440|52441|52442|52444|52446|52448|52449|52452|52453|52456|52457|52458|52458|52460|52461|52462|52463|52464|52465|52466|52467|52468|52469|52472|52473|52474|52475|52475|52477|52479|52483|52486|52487|52488|52492|52493|52494|52495|52496|52497|52497|52498|52499|52501|52504|52505|52508|52509|52513|52514|52515|53126|53126|129781|174810|174811|174812|174813|174814|174818|174819|174820|175221|175222|175225|175226|175227|175233|175236|175238|175238|175379|175519|175522|176872|176872|176880|176881|176882|176890|176894|176897|178183|178185|178187|178187|178237|178238|178239|178240|178241|178242|178245|178248|178280|178282|178299|178300|178301|178301|188830|188830|188830|193260|194566|194658|230238|230244|230245|230245|230249|230250|231364|231364|231366|231368|231369|231384|231384|231385|231387|231417|231417|231419|231420|231420|231421|231423|231424|231425|231426|231427|237612|237613|237614|237614|237614|238052|268060|269755|272763|275242|315220|315224|315230|315231|315242|315243|315244|315250|315250|315252|315256|315257|315258|315259|322038|322039|322043|322044|322052|322054|322055|322071|322072|322075|322076|322080|322082|322083|322084|322085|322086|322091|322094|322095|328157|328159|328161|328164|328165|328171|328172|328177|328181|328182|328183|328184|329415|329417|329419|329420|329422|329423|329424|329425|329427|329429|329431|329432|329437|329438|329439|329446|329447|329453|358080|358081|359920|360049|360049|361501|361502|374343|384410|389240|389241|389242|389242|389243|389244|408476|425944|431762|431763|431763|431766|431767|440019|444891|482004|488902|491741|493338|497208|497209|497399|497625|497811|497812|497820|497822|497860|508737|508743|514401|546382|546385|546387|546394|546395|546399|546403|546404|546408|546413|546417|546423|546425|546426|546428|546431|546436|546438|546440|546446|546457|546461|546463|546466|546469|546494|546496|546508|546520|546526|546527|546530|546599|546607|546607|546611|546612|546614|546625|546628|546637|546642|546645|546659|546664|546673|546674|546687|546688|546688|546691|546693|546694|546696|546696|546698|546700|546702|546705|546708|546709|546710|546716|546718|546720|546721|546723|546725|546726|546727|546731|546733|546734|546742|546742|546744|546746|546747|546754|546755|546756|546758|546761|546763|546766|546767|546780|546784|546790|546793|546803|546811|546814|546815|546824|546826|546828|546836|546838|546845|546856|546866|546867|546870|546873|547003|547006|547013|547015|547021|547031|547033|547034|547035|547038|547041|547042|547045|547046|547052|547055|547058|547060|547072|547079|547079|552405|553265|553266|553267|553268|615816|615841|615842|654690|713192|738305|760047|768788|768806|784189|784220|791171|791172|791173|791174|791175|791176|791177|791178|791179|791180|791181|839045|839075|857681|857682|868803|868804|868805|868806|868807|868808|868809|868810|868811|868812|868813|868814|868815|868816|868817|868818|868819|868820|868821|868822|868823|868824|868825|868826|868827|868828|868829|868830|868831|868832|868833|868834|868835|868836|868837|868838|868839|868840|868841|868842|872137|872138|872139|872140|872141|872142|872143|872144", "text": "Deafness, autosomal recessive 2" }, { - "baseId": "26891|26896|26902|38879|38880|52304|52304|52305|52311|52312|52320|52321|52323|52331|52334|52339|52340|52346|52347|52349|52350|52353|52355|52356|52356|52357|52358|52359|52362|52363|52364|52365|52369|52370|52371|52373|52378|52384|52385|52388|52390|52392|52394|52395|52396|52397|52401|52403|52411|52412|52414|52414|52416|52417|52418|52421|52422|52424|52425|52426|52427|52428|52430|52435|52438|52439|52441|52442|52444|52446|52448|52449|52453|52457|52458|52460|52463|52466|52467|52472|52473|52474|52475|52477|52479|52486|52487|52492|52493|52494|52497|52498|52501|52504|52508|52509|52513|52514|53126|174812|174814|174818|174820|175221|175227|175233|175235|175238|175238|175379|175519|176872|176881|176894|178187|178187|178237|178238|178239|178240|178242|178245|178258|178300|178301|188830|188830|230238|230245|231364|231366|231368|231384|231419|231420|231423|231424|231425|237614|268060|269755|272763|275242|315220|315224|315230|315231|315242|315243|315244|315250|315252|315256|315257|315258|315259|322038|322039|322043|322044|322052|322054|322055|322071|322072|322075|322076|322080|322082|322083|322084|322085|322086|322091|322094|322095|328157|328159|328161|328164|328165|328171|328172|328177|328181|328182|328183|328184|329415|329417|329419|329420|329422|329423|329424|329425|329427|329429|329431|329432|329437|329438|329439|329446|329447|329453|360049|361501|361502|425944|488902|497208|497209|497399|497625|497811|497820|497822|497860|508737|508743|513605|538427|546440|546696|546742|547079|552405|625875|713192|738305|760047|768788|768806|784189|784220|788859|839045|839075|861637|868803|868804|868805|868806|868807|868808|868809|868810|868811|868812|868813|868814|868815|868816|868817|868818|868819|868820|868821|868822|868823|868824|868825|868826|868827|868828|868829|868830|868831|868832|868833|868834|868835|868836|868837|868838|868839|868840|868841|868842|872137|872138|872139|872140|872141|872142|872143|872144|918372|918503|919392|919393|920303|964370|970945", + "upstreamId": "26891|26896|26902|38879|38880|52304|52304|52305|52311|52312|52320|52321|52323|52331|52334|52339|52340|52346|52347|52349|52350|52353|52355|52356|52356|52357|52358|52359|52362|52363|52364|52365|52369|52370|52371|52373|52378|52384|52385|52388|52390|52392|52394|52395|52396|52397|52401|52403|52411|52412|52414|52414|52416|52417|52418|52421|52422|52424|52425|52426|52427|52428|52430|52435|52438|52439|52441|52442|52444|52446|52448|52449|52453|52457|52458|52460|52463|52466|52467|52472|52473|52474|52475|52477|52479|52486|52487|52492|52493|52494|52497|52498|52501|52504|52508|52509|52513|52514|53126|174812|174814|174818|174820|175221|175227|175233|175235|175238|175238|175379|175519|176872|176881|176894|178187|178187|178237|178238|178239|178240|178242|178245|178258|178300|178301|188830|188830|230238|230245|231364|231366|231368|231384|231419|231420|231423|231424|231425|237614|268060|269755|272763|275242|315220|315224|315230|315231|315242|315243|315244|315250|315252|315256|315257|315258|315259|322038|322039|322043|322044|322052|322054|322055|322071|322072|322075|322076|322080|322082|322083|322084|322085|322086|322091|322094|322095|328157|328159|328161|328164|328165|328171|328172|328177|328181|328182|328183|328184|329415|329417|329419|329420|329422|329423|329424|329425|329427|329429|329431|329432|329437|329438|329439|329446|329447|329453|360049|361501|361502|425944|488902|497208|497209|497399|497625|497811|497820|497822|497860|508737|508743|513605|538427|546440|546696|546742|547079|552405|625875|713192|738305|760047|768788|768806|784189|784220|788859|839045|839075|861637|868803|868804|868805|868806|868807|868808|868809|868810|868811|868812|868813|868814|868815|868816|868817|868818|868819|868820|868821|868822|868823|868824|868825|868826|868827|868828|868829|868830|868831|868832|868833|868834|868835|868836|868837|868838|868839|868840|868841|868842|872137|872138|872139|872140|872141|872142|872143|872144|918372|918503|919392|919393|920303|964370|970945", "text": "Deafness, autosomal dominant 11" }, { - "baseId": "26904|26905|26906|26907|26908|26909|26910|26911|26912|26913|26914|33906|33908|33909|33910|98353|98354|98355|177701|177702|186942|186943|186944|186945|193377|255375|265241|271735|272580|274348|275085|275312|275338|323422|323425|323426|323436|323438|323439|323442|333122|333127|333130|333132|333134|333136|333145|333146|339949|339956|339957|339962|339973|339976|339980|339984|341363|341364|341366|341367|358325|358326|358327|358328|358329|358330|358331|358332|358333|358334|358335|358336|358337|358338|358339|360304|373697|373702|373707|373710|374352|374355|374358|374364|374757|374758|389205|422048|431016|465199|465319|488353|489448|492386|493494|504988|505409|547593|547595|547598|547599|547601|547606|547607|547611|547615|547616|547617|547619|547631|547861|547864|547869|547873|547874|547876|548265|548268|548270|548275|548278|567290|567293|585874|589134|623379|643564|643565|652760|653068|656310|656311|688494|693747|703366|754708|754709|754711|770367|770368|785039|787965|788173|791486|791487|791488|791489|801725|801726|801727|801728|820739|820758|842736|842737|842738|842739|851631|852784|874200|874201|874202|874203|874204|874205|874206|874207|874208|874209|874210|876579|876580|876581|876582|917211|917537|927430|927431|927432|937082|940331|949030|949031|957518|957519|957520|957521|957522|972223|972224|972225|972226|972227|977272|979681|979682|979683|979684|979685|979686|979687|979688|979689", + "upstreamId": "26904|26905|26906|26907|26908|26909|26910|26911|26912|26913|26914|33906|33908|33909|33910|98353|98354|98355|177701|177702|186942|186943|186944|186945|193377|255375|265241|271735|272580|274348|275085|275312|275338|323422|323425|323426|323436|323438|323439|323442|333122|333127|333130|333132|333134|333136|333145|333146|339949|339956|339957|339962|339973|339976|339980|339984|341363|341364|341366|341367|358325|358326|358327|358328|358329|358330|358331|358332|358333|358334|358335|358336|358337|358338|358339|360304|373697|373702|373707|373710|374352|374355|374358|374364|374757|374758|389205|422048|431016|465199|465319|488353|489448|492386|493494|504988|505409|547593|547595|547598|547599|547601|547606|547607|547611|547615|547616|547617|547619|547631|547861|547864|547869|547873|547874|547876|548265|548268|548270|548275|548278|567290|567293|585874|589134|623379|643564|643565|652760|653068|656310|656311|688494|693747|703366|754708|754709|754711|770367|770368|785039|787965|788173|791486|791487|791488|791489|801725|801726|801727|801728|820739|820758|842736|842737|842738|842739|851631|852784|874200|874201|874202|874203|874204|874205|874206|874207|874208|874209|874210|876579|876580|876581|876582|917211|917537|927430|927431|927432|937082|940331|949030|949031|957518|957519|957520|957521|957522|972223|972224|972225|972226|972227|977272|979681|979682|979683|979684|979685|979686|979687|979688|979689", "text": "Tyrosinemia type I" }, { - "baseId": "26907", + "upstreamId": "26907", "text": "Fumarylacetoacetase pseudodeficiency" }, { - "baseId": "26916|456732|970844", + "upstreamId": "26916|456732|970844", "text": "Trypsinogen deficiency" }, { - "baseId": "26925|26926|26927|26928", + "upstreamId": "26925|26926|26927|26928", "text": "Ghosal hematodiaphyseal syndrome" }, { - "baseId": "26928|425733|490070|614310|614524", + "upstreamId": "26928|425733|490070|614310|614524", "text": "Ghosal hematodiaphyseal dysplasia" }, { - "baseId": "26929|26930|26931|26932|26933|26934|26935|26936|26937|26938|26939|26940|26941|26942|26943|26944|79070|79077|79078|79079|79080|79082|79083|79086|79087|79088|79095|186680|186681|186682|186683|186684|186685|186686|186687|186688|186689|186690|186691|186692|186693|186694|251429|251430|251431|251433|251434|264191|269616|271336|275318|293049|293050|293057|293060|293064|293066|293075|293076|293078|293080|293084|293094|294451|294453|294454|294455|294467|297921|297924|297925|297937|297939|297947|297998|298000|298009|298010|298031|298032|298035|298036|357337|357338|357339|357340|357341|357342|357343|357344|357345|357346|357347|357348|357349|357350|357351|357352|357353|367624|421485|443610|481715|543100|543101|543102|543104|543105|543107|543113|543115|543376|543378|543381|543385|543391|543394|543395|543396|543398|543399|543401|543403|543404|543406|543407|543408|543410|543411|543412|543416|543420|543444|543447|543452|543453|543455|543458|543462|543464|543467|543471|543482|543484|543486|543487|543489|543497|543499|615394|615395|615396|615397|615398|615399|615400|615401|615402|615403|615404|615405|615406|615407|615408|615409|615410|615411|615724|620160|698456|709277|720882|734564|748857|764415|775064|801505|861592|890577|890578|890579|890580|890581|890582|890583|890584|890585|890586|890587|890588|890589|890590|890591|890592|890593|890594|890595|890596|890597|890598|890599|890600|890601|890602|891781|891782|891783|891784|891785|961269", + "upstreamId": "26929|26930|26931|26932|26933|26934|26935|26936|26937|26938|26939|26940|26941|26942|26943|26944|79070|79077|79078|79079|79080|79082|79083|79086|79087|79088|79095|186680|186681|186682|186683|186684|186685|186686|186687|186688|186689|186690|186691|186692|186693|186694|251429|251430|251431|251433|251434|264191|269616|271336|275318|293049|293050|293057|293060|293064|293066|293075|293076|293078|293080|293084|293094|294451|294453|294454|294455|294467|297921|297924|297925|297937|297939|297947|297998|298000|298009|298010|298031|298032|298035|298036|357337|357338|357339|357340|357341|357342|357343|357344|357345|357346|357347|357348|357349|357350|357351|357352|357353|367624|421485|443610|481715|543100|543101|543102|543104|543105|543107|543113|543115|543376|543378|543381|543385|543391|543394|543395|543396|543398|543399|543401|543403|543404|543406|543407|543408|543410|543411|543412|543416|543420|543444|543447|543452|543453|543455|543458|543462|543464|543467|543471|543482|543484|543486|543487|543489|543497|543499|615394|615395|615396|615397|615398|615399|615400|615401|615402|615403|615404|615405|615406|615407|615408|615409|615410|615411|615724|620160|698456|709277|720882|734564|748857|764415|775064|801505|861592|890577|890578|890579|890580|890581|890582|890583|890584|890585|890586|890587|890588|890589|890590|890591|890592|890593|890594|890595|890596|890597|890598|890599|890600|890601|890602|891781|891782|891783|891784|891785|961269", "text": "Hereditary factor XI deficiency disease" }, { - "baseId": "26930|26931|26940|186682|264191|271336|293060|293064|298010|367624|443610|615400|698456|720882|734563|734564|748856|748857|764412|764415|764416|774895|775064|890580|891781|978069|978070|978071|978072|978073|978074|978075|978076|978077|978078|978079|978080|978081|978082|978083|978084", + "upstreamId": "26930|26931|26940|186682|264191|271336|293060|293064|298010|367624|443610|615400|698456|720882|734563|734564|748856|748857|764412|764415|764416|774895|775064|890580|891781|978069|978070|978071|978072|978073|978074|978075|978076|978077|978078|978079|978080|978081|978082|978083|978084", "text": "Plasma factor XI deficiency" }, { - "baseId": "26931", + "upstreamId": "26931", "text": "Factor XI" }, { - "baseId": "26946|106001|106002|106003|106004|106006|250889|250890|288437|288439|288442|288448|288453|288454|288456|288458|288465|288466|288468|288472|288477|288478|288482|288487|288489|288492|288494|288495|288496|288499|288501|288505|288507|288513|288514|288517|288519|288524|288529|288532|288533|289179|289181|289190|289191|289193|289195|289197|289198|289199|289219|289233|289234|289237|289239|289248|289249|289250|289256|289260|289261|289262|289264|289267|289269|289279|289280|289281|289282|292182|292183|292185|292186|292187|292188|292192|292193|292194|292200|292205|292206|292210|292212|292213|292214|292215|292216|292218|292221|292227|292234|292236|292239|292245|292246|292250|292258|292311|292312|292314|292316|292326|292328|292333|292335|292336|292337|292340|292342|292343|292344|292347|292349|292350|292351|292358|292362|292363|292364|292366|292368|292369|292370|292383|292385|292387|292388|292389|292399|292402|513528|620100|708516|708518|733735|887771|887772|887773|887774|887775|887776|887777|887778|887779|887780|887781|887782|887783|887784|887785|887786|887787|887788|887789|887790|887791|887792|887793|887794|887795|887796|887797|887798|887799|887800|887801|887802|887803|887804|887805|887806|887807|887808|887809|887810|887811|887812|887813|887814|887815|887816|887817|887818|887819|891557", + "upstreamId": "26946|106001|106002|106003|106004|106006|250889|250890|288437|288439|288442|288448|288453|288454|288456|288458|288465|288466|288468|288472|288477|288478|288482|288487|288489|288492|288494|288495|288496|288499|288501|288505|288507|288513|288514|288517|288519|288524|288529|288532|288533|289179|289181|289190|289191|289193|289195|289197|289198|289199|289219|289233|289234|289237|289239|289248|289249|289250|289256|289260|289261|289262|289264|289267|289269|289279|289280|289281|289282|292182|292183|292185|292186|292187|292188|292192|292193|292194|292200|292205|292206|292210|292212|292213|292214|292215|292216|292218|292221|292227|292234|292236|292239|292245|292246|292250|292258|292311|292312|292314|292316|292326|292328|292333|292335|292336|292337|292340|292342|292343|292344|292347|292349|292350|292351|292358|292362|292363|292364|292366|292368|292369|292370|292383|292385|292387|292388|292389|292399|292402|513528|620100|708516|708518|733735|887771|887772|887773|887774|887775|887776|887777|887778|887779|887780|887781|887782|887783|887784|887785|887786|887787|887788|887789|887790|887791|887792|887793|887794|887795|887796|887797|887798|887799|887800|887801|887802|887803|887804|887805|887806|887807|887808|887809|887810|887811|887812|887813|887814|887815|887816|887817|887818|887819|891557", "text": "Orotic aciduria" }, { - "baseId": "26947|26947|26948|26948|26949|26949|26950|26951|26953|26954|26955|26956|26958|26960|26961|26962|26963|26964|26966|75541|75543|75545|75551|75552|75555|75556|98541|98544|98546|98547|106588|177221|177778|190226|190227|192200|192201|192202|195857|224714|224715|224716|224717|224718|224719|228213|228214|259780|265213|265242|293215|453630|487045|488258|488285|493667|543006|543008|543013|543015|543021|543023|543037|543039|543164|543167|543174|543176|543177|543179|543180|543182|543197|543201|543203|543205|543212|543213|543216|543218|543221|543232|543234|543237|543239|543240|543244|543246|543251|543252|543253|543255|543259|543263|543265|543267|543269|543270|543272|543275|543276|543278|543280|543282|543283|543284|543285|543286|543292|543293|543294|543295|543296|543297|543303|543305|543306|543309|543310|543312|543314|543316|543318|543319|543320|543321|543323|543325|543328|543329|543331|543332|543335|543340|543343|543344|543345|543347|543349|543352|543364|543531|543538|543540|543542|543545|543546|543549|543552|543606|543609|543610|543618|543620|543625|543629|543671|543677|543695|543696|543698|543699|543700|543709|543713|543720|543722|612085|621165|790426|816406|921443|970781", + "upstreamId": "26947|26947|26948|26948|26949|26949|26950|26951|26953|26954|26955|26956|26958|26960|26961|26962|26963|26964|26966|75541|75543|75545|75551|75552|75555|75556|98541|98544|98546|98547|106588|177221|177778|190226|190227|192200|192201|192202|195857|224714|224715|224716|224717|224718|224719|228213|228214|259780|265213|265242|293215|453630|487045|488258|488285|493667|543006|543008|543013|543015|543021|543023|543037|543039|543164|543167|543174|543176|543177|543179|543180|543182|543197|543201|543203|543205|543212|543213|543216|543218|543221|543232|543234|543237|543239|543240|543244|543246|543251|543252|543253|543255|543259|543263|543265|543267|543269|543270|543272|543275|543276|543278|543280|543282|543283|543284|543285|543286|543292|543293|543294|543295|543296|543297|543303|543305|543306|543309|543310|543312|543314|543316|543318|543319|543320|543321|543323|543325|543328|543329|543331|543332|543335|543340|543343|543344|543345|543347|543349|543352|543364|543531|543538|543540|543542|543545|543546|543549|543552|543606|543609|543610|543618|543620|543625|543629|543671|543677|543695|543696|543698|543699|543700|543709|543713|543720|543722|612085|621165|790426|816406|921443|970781", "text": "Hurler syndrome" }, { - "baseId": "26947|26948|26949|26950|26956|26958|26959|26960|26961|26962|26964|26966|75541|98531|98532|98533|98534|98535|98537|98539|98543|98544|98545|98546|98547|98548|98549|98550|98552|98553|98554|98556|98557|98558|177221|177778|190226|190227|192200|192201|192202|193396|195857|224714|224715|224716|224717|224718|224719|224720|251307|251309|259780|265213|265229|265308|267722|270479|291836|291845|293202|293212|293213|293214|293215|296312|296502|296521|296527|296538|296558|300068|300111|300112|300121|359596|414951|421459|421460|438266|453187|453618|453630|487045|488258|488285|493667|519674|519934|519935|519946|520291|520527|520568|536655|543021|543037|543039|543176|543182|543201|543203|543213|543234|543265|543282|543283|543284|543305|543306|543319|543325|543328|543364|543540|549563|559551|559553|559821|563355|621165|625880|625881|625882|625915|631842|631843|631844|631845|632532|632533|632534|632535|651143|651265|709085|709086|709087|720677|720678|720679|720680|721122|721123|721124|734339|734340|734343|734344|734345|734346|734347|734776|748582|748585|748587|748588|748589|748591|749112|759258|759380|764212|764219|764221|764222|764224|764226|764227|764650|764651|774866|779003|779171|781828|781829|781832|781833|781835|781836|781838|787190|828629|828630|828631|828632|828633|828634|828636|828637|828638|828639|828640|828641|828642|828643|828644|829539|829540|829541|891863|891864|891865|891866|891867|891868|891869|891870|891871|891872|891873|891874|895975|895976|895977|895978|895979|896010|906010|916917|916918|916919|916920|916934|923375|923376|932106|932107|932476|932477|939953|940770|940771|943733|943734|943735|944148|953610|953611|953612|953613|953614|953615|953616|953617|953618|953619|953868|960526|961843|963262|975779|978003|978004|978005|978006|978007|978008|978009|978010|978011|978108|978109", + "upstreamId": "26947|26948|26949|26950|26956|26958|26959|26960|26961|26962|26964|26966|75541|98531|98532|98533|98534|98535|98537|98539|98543|98544|98545|98546|98547|98548|98549|98550|98552|98553|98554|98556|98557|98558|177221|177778|190226|190227|192200|192201|192202|193396|195857|224714|224715|224716|224717|224718|224719|224720|251307|251309|259780|265213|265229|265308|267722|270479|291836|291845|293202|293212|293213|293214|293215|296312|296502|296521|296527|296538|296558|300068|300111|300112|300121|359596|414951|421459|421460|438266|453187|453618|453630|487045|488258|488285|493667|519674|519934|519935|519946|520291|520527|520568|536655|543021|543037|543039|543176|543182|543201|543203|543213|543234|543265|543282|543283|543284|543305|543306|543319|543325|543328|543364|543540|549563|559551|559553|559821|563355|621165|625880|625881|625882|625915|631842|631843|631844|631845|632532|632533|632534|632535|651143|651265|709085|709086|709087|720677|720678|720679|720680|721122|721123|721124|734339|734340|734343|734344|734345|734346|734347|734776|748582|748585|748587|748588|748589|748591|749112|759258|759380|764212|764219|764221|764222|764224|764226|764227|764650|764651|774866|779003|779171|781828|781829|781832|781833|781835|781836|781838|787190|828629|828630|828631|828632|828633|828634|828636|828637|828638|828639|828640|828641|828642|828643|828644|829539|829540|829541|891863|891864|891865|891866|891867|891868|891869|891870|891871|891872|891873|891874|895975|895976|895977|895978|895979|896010|906010|916917|916918|916919|916920|916934|923375|923376|932106|932107|932476|932477|939953|940770|940771|943733|943734|943735|944148|953610|953611|953612|953613|953614|953615|953616|953617|953618|953619|953868|960526|961843|963262|975779|978003|978004|978005|978006|978007|978008|978009|978010|978011|978108|978109", "text": "Mucopolysaccharidosis type 1" }, { - "baseId": "26947|26948|26948|26949|26957|224715|623136", + "upstreamId": "26947|26948|26948|26949|26957|224715|623136", "text": "Mucopolysaccharidosis, MPS-I-S" }, { - "baseId": "26947|26947|26948|26948|26949|26958|26959|26961|26963|26964|26966|543265|828632|918912|971847|971848|971849|971850|971851", + "upstreamId": "26947|26947|26948|26948|26949|26958|26959|26961|26963|26964|26966|543265|828632|918912|971847|971848|971849|971850|971851", "text": "Mucopolysaccharidosis, MPS-I-H/S" }, { - "baseId": "26962", + "upstreamId": "26962", "text": "IDUA pseudodeficiency" }, { - "baseId": "26967|26968|26968|26969|26969|26970|26970|26971|26971|26971|26972|26973|26973|26974|48325|48326|94405|94405|102137|103452|103456|103461|103463|103464|103466|103470|103470|103473|103478|103487|103491|103491|103493|103512|103512|103523|103524|103524|103525|103526|135084|135085|135085|135086|142016|142016|142017|142017|190748|190748|200230|231816|231816|231819|231819|231821|244709|244711|244712|244712|254395|254396|254397|315956|315957|315960|315963|323148|323150|323152|323152|323159|323188|323199|323220|329210|329211|329231|329232|329248|329248|329262|329265|330383|330386|330389|330396|330408|330408|330430|330432|444905|462167|481424|526895|527212|537210|565034|566309|571185|571186|571187|624452|640599|640600|640601|640602|640602|640603|640604|640605|652649|775896|779494|779494|784267|799664|800361|839260|839261|839262|839263|839264|839265|839266|839267|839267|839268|839269|869216|869217|869218|869219|869220|869221|869222|869223|869224|869225|869226|869227|935901|935902|935903|935904|935905|940240|940241|941020|947775|956742|956743|960021|960772", + "upstreamId": "26967|26968|26968|26969|26969|26970|26970|26971|26971|26971|26972|26973|26973|26974|48325|48326|94405|94405|102137|103452|103456|103461|103463|103464|103466|103470|103470|103473|103478|103487|103491|103491|103493|103512|103512|103523|103524|103524|103525|103526|135084|135085|135085|135086|142016|142016|142017|142017|190748|190748|200230|231816|231816|231819|231819|231821|244709|244711|244712|244712|254395|254396|254397|315956|315957|315960|315963|323148|323150|323152|323152|323159|323188|323199|323220|329210|329211|329231|329232|329248|329248|329262|329265|330383|330386|330389|330396|330408|330408|330430|330432|444905|462167|481424|526895|527212|537210|565034|566309|571185|571186|571187|624452|640599|640600|640601|640602|640602|640603|640604|640605|652649|775896|779494|779494|784267|799664|800361|839260|839261|839262|839263|839264|839265|839266|839267|839267|839268|839269|869216|869217|869218|869219|869220|869221|869222|869223|869224|869225|869226|869227|935901|935902|935903|935904|935905|940240|940241|941020|947775|956742|956743|960021|960772", "text": "Mevalonic aciduria" }, { - "baseId": "26968|26968|26968|26969|26969|26970|26970|26971|26971|26971|26972|26972|26973|26973|26974|48324|48325|48326|94405|94405|94406|102137|103450|103451|103452|103452|103453|103454|103455|103456|103456|103457|103458|103459|103460|103461|103461|103462|103463|103463|103464|103464|103465|103466|103466|103468|103469|103470|103470|103471|103472|103473|103473|103474|103475|103476|103477|103478|103478|103479|103481|103483|103484|103485|103486|103487|103487|103488|103489|103490|103491|103491|103492|103493|103493|103494|103495|103496|103497|103498|103499|103500|103501|103502|103503|103504|103505|103507|103508|103509|103510|103511|103512|103512|103513|103514|103515|103516|103517|103518|103519|103520|103521|103522|103523|103523|103524|103524|103525|103526|103526|103527|103528|103529|103530|103531|103532|103533|103785|135084|135085|135085|135086|142016|142016|142017|142017|190748|190748|200230|231816|231816|231819|231819|231821|244709|244711|244712|244712|254395|254396|254397|315956|315957|315960|315963|323148|323150|323152|323152|323159|323188|323199|323220|329210|329211|329231|329232|329248|329248|329262|329265|330383|330386|330389|330396|330408|330408|330430|330432|444905|462167|526895|527212|537210|565034|566309|571185|571186|571187|624452|640599|640600|640601|640602|640602|640603|640604|640605|652649|775896|779494|779494|784267|791192|799664|800362|839260|839261|839262|839263|839264|839265|839266|839267|839267|839268|839269|869216|869217|869218|869219|869220|869221|869222|869223|869224|869225|869226|869227|935901|935902|935903|935904|935905|940240|940241|941020|947775|956742|956743|960021|960772|961963", + "upstreamId": "26968|26968|26968|26969|26969|26970|26970|26971|26971|26971|26972|26972|26973|26973|26974|48324|48325|48326|94405|94405|94406|102137|103450|103451|103452|103452|103453|103454|103455|103456|103456|103457|103458|103459|103460|103461|103461|103462|103463|103463|103464|103464|103465|103466|103466|103468|103469|103470|103470|103471|103472|103473|103473|103474|103475|103476|103477|103478|103478|103479|103481|103483|103484|103485|103486|103487|103487|103488|103489|103490|103491|103491|103492|103493|103493|103494|103495|103496|103497|103498|103499|103500|103501|103502|103503|103504|103505|103507|103508|103509|103510|103511|103512|103512|103513|103514|103515|103516|103517|103518|103519|103520|103521|103522|103523|103523|103524|103524|103525|103526|103526|103527|103528|103529|103530|103531|103532|103533|103785|135084|135085|135085|135086|142016|142016|142017|142017|190748|190748|200230|231816|231816|231819|231819|231821|244709|244711|244712|244712|254395|254396|254397|315956|315957|315960|315963|323148|323150|323152|323152|323159|323188|323199|323220|329210|329211|329231|329232|329248|329248|329262|329265|330383|330386|330389|330396|330408|330408|330430|330432|444905|462167|526895|527212|537210|565034|566309|571185|571186|571187|624452|640599|640600|640601|640602|640602|640603|640604|640605|652649|775896|779494|779494|784267|791192|799664|800362|839260|839261|839262|839263|839264|839265|839266|839267|839267|839268|839269|869216|869217|869218|869219|869220|869221|869222|869223|869224|869225|869226|869227|935901|935902|935903|935904|935905|940240|940241|941020|947775|956742|956743|960021|960772|961963", "text": "Hyperimmunoglobulin D with periodic fever" }, { - "baseId": "26968|103471|323176", + "upstreamId": "26968|103471|323176", "text": "MVK-Related Disorders" }, { - "baseId": "26976|26977|26978|26979|26980|102511", + "upstreamId": "26976|26977|26978|26979|26980|102511", "text": "MAPLE SYRUP URINE DISEASE, CLASSIC, TYPE IB" }, { - "baseId": "26976|76679|102455|102492|102501|102508|102511|102514|186721|207423|308960|357521|369081|487098|699678|710620|710621|765879|765888|782671|832583|916978|978358|978359|978360|978361|978362|978363|978364|978365", + "upstreamId": "26976|76679|102455|102492|102501|102508|102511|102514|186721|207423|308960|357521|369081|487098|699678|710620|710621|765879|765888|782671|832583|916978|978358|978359|978360|978361|978362|978363|978364|978365", "text": "Maple syrup urine disease type 1B" }, { - "baseId": "26981|26984|26989|26990|26992|99919|623123|623124", + "upstreamId": "26981|26984|26989|26990|26992|99919|623123|623124", "text": "Maple syrup urine disease type 2" }, { - "baseId": "26982|26983|26991", + "upstreamId": "26982|26983|26991", "text": "Maple syrup urine disease, thiamine-responsive, type II" }, { - "baseId": "26985|26986|26987|26988", + "upstreamId": "26985|26986|26987|26988", "text": "Intermediate maple syrup urine disease type 2" }, { - "baseId": "26993|26994|26995|26996|26997|40041|98510|176929|192195|280088|280089|280093|280413|280414|280416|280428|280432|281738|281739|281744|281746|281765|281891|281892|281916|281919|353100|364921|365136|365141|365143|425351|442782|442783|498531|498538|511253|511254|513508|515792|540999|541002|541004|541006|541008|541015|541016|541113|541117|541118|541120|541121|541128|541130|541131|541133|541134|541136|541137|541139|541151|541157|557253|619994|627622|627623|627624|627625|627626|627627|690556|690557|690558|696612|746339|746340|758889|761784|761785|761788|761789|761790|761791|780630|789953|818946|823753|823754|850767|850768|864138|864139|864140|864141|864142|864143|864144|864145|864146|920145|921938|921939|921940|930416|930417|941860|952351|952352|952353|960426|971669|971670|971671|971672|971673|977520|977521|977522|977523|977524|977525|977526", + "upstreamId": "26993|26994|26995|26996|26997|40041|98510|176929|192195|280088|280089|280093|280413|280414|280416|280428|280432|281738|281739|281744|281746|281765|281891|281892|281916|281919|353100|364921|365136|365141|365143|425351|442782|442783|498531|498538|511253|511254|513508|515792|540999|541002|541004|541006|541008|541015|541016|541113|541117|541118|541120|541121|541128|541130|541131|541133|541134|541136|541137|541139|541151|541157|557253|619994|627622|627623|627624|627625|627626|627627|690556|690557|690558|696612|746339|746340|758889|761784|761785|761788|761789|761790|761791|780630|789953|818946|823753|823754|850767|850768|864138|864139|864140|864141|864142|864143|864144|864145|864146|920145|921938|921939|921940|930416|930417|941860|952351|952352|952353|960426|971669|971670|971671|971672|971673|977520|977521|977522|977523|977524|977525|977526", "text": "Deficiency of hydroxymethylglutaryl-CoA lyase" }, { - "baseId": "26998|26999|27000|27001|27002|39892|39894|101491|101492|101494|101495|101497|101498|176995|191571|196017|212656|221803|240439|240440|243908|253247|271349|273772|274111|306203|306204|306205|306206|310311|310312|310318|310319|315566|315567|315603|315610|315755|315757|315761|315763|315765|315782|315789|389212|396782|488264|491021|492066|523842|584405|584568|587816|620312|620808|626183|678068|678069|687328|900614|900615|900616|900617|900618|900619|900620|900621|900622|900623|900624|900625|900626|900627|900628|900629|900630|900631|906254|962720", + "upstreamId": "26998|26999|27000|27001|27002|39892|39894|101491|101492|101494|101495|101497|101498|176995|191571|196017|212656|221803|240439|240440|243908|253247|271349|273772|274111|306203|306204|306205|306206|310311|310312|310318|310319|315566|315567|315603|315610|315755|315757|315761|315763|315765|315782|315789|389212|396782|488264|491021|492066|523842|584405|584568|587816|620312|620808|626183|678068|678069|687328|900614|900615|900616|900617|900618|900619|900620|900621|900622|900623|900624|900625|900626|900627|900628|900629|900630|900631|906254|962720", "text": "Infantile nephronophthisis" }, { - "baseId": "27003|27004|27005|27007|27008|27009|27010|27011|48683|48684|48685|140795|140797|140798|140799|140800|140801|140803|140804|140805|140806|200131|200137|200139|200140|200141|200144|252560|301484|301488|301489|301493|301494|301500|301501|301503|301504|304711|304712|304731|304734|304735|304737|304738|304739|304740|304742|304743|304760|309367|309368|309370|309371|309499|309501|309502|309504|309505|357555|357556|357557|357558|357559|357560|357561|368842|370664|370677|406953|406954|406957|501526|501757|544102|544104|544107|544111|544350|544354|544357|544364|544367|544426|544459|544467|544472|544473|544479|544483|563929|566277|635447|635448|635449|655765|710696|735864|735867|744168|750333|750334|750335|759528|765983|765985|775273|779204|782723|782724|782725|782727|787395|789369|819779|832781|832782|832783|832784|897233|897234|897235|897236|897237|897238|897239|897240|897241|897242|897243|897244|897245|897246|897247|897248|897249|897250|897251|897252|897253|897254|897255|919068|945310|954979|954980|960619|971974|971975|971976|971977|971978|971979|971980|978382|978383|978384|978385", + "upstreamId": "27003|27004|27005|27007|27008|27009|27010|27011|48683|48684|48685|140795|140797|140798|140799|140800|140801|140803|140804|140805|140806|200131|200137|200139|200140|200141|200144|252560|301484|301488|301489|301493|301494|301500|301501|301503|301504|304711|304712|304731|304734|304735|304737|304738|304739|304740|304742|304743|304760|309367|309368|309370|309371|309499|309501|309502|309504|309505|357555|357556|357557|357558|357559|357560|357561|368842|370664|370677|406953|406954|406957|501526|501757|544102|544104|544107|544111|544350|544354|544357|544364|544367|544426|544459|544467|544472|544473|544479|544483|563929|566277|635447|635448|635449|655765|710696|735864|735867|744168|750333|750334|750335|759528|765983|765985|775273|779204|782723|782724|782725|782727|787395|789369|819779|832781|832782|832783|832784|897233|897234|897235|897236|897237|897238|897239|897240|897241|897242|897243|897244|897245|897246|897247|897248|897249|897250|897251|897252|897253|897254|897255|919068|945310|954979|954980|960619|971974|971975|971976|971977|971978|971979|971980|978382|978383|978384|978385", "text": "Maple syrup urine disease, type 3" }, { - "baseId": "27005|27010|357558|620248", + "upstreamId": "27005|27010|357558|620248", "text": "DLD-Related Disorders" }, { - "baseId": "27012|27013|27014|27015|27016|27017|27018|27019|27020|27021|27023|27024|27025|27026|27027|27028|27029|27030|70674|70675|70676|70677|70678|70679|70680|70681|70682|70683|70684|70685|70686|70687|70688|70689|70690|70691|70692|70693|70694|70695|70696|70697|70698|70699|70700|70701|70702|70703|70704|70705|70706|70708|70709|70710|70711|70712|70713|70714|70715|70716|70717|70718|70719|70720|70721|70722|70723|70724|70725|70726|70727|70728|70729|70730|70731|70732|70733|70734|70735|70736|70737|70738|70739|70740|70741|70742|70743|70744|70745|70746|70747|70748|70749|70811|70812|70864|70865|70866|70867|70868|70869|70870|70871|70872|70873|70874|70875|70876|70877|70878|70879|70880|71054|203911|205141|213593|227333|237115|237242|237282|237289|237338|248726|251226|251227|253562|253563|253564|253565|253566|253567|253568|253569|264336|291109|291112|291113|291119|291120|292063|292065|292079|292083|292086|292091|295431|295432|295433|295434|295436|295437|295623|295625|295626|295627|295637|308613|308625|308627|308631|308632|308636|308637|308643|308647|313080|313082|313083|313089|313113|313116|313117|313123|313124|313138|313139|313145|313148|313154|313157|313165|313201|313206|313207|313209|318977|318985|318987|318989|318990|318993|318994|318997|319014|319022|319028|319031|319033|319603|319606|319609|319613|319614|319629|319635|319639|319640|319650|353859|357818|363717|367323|389138|424282|431014|446441|452507|452508|452519|452827|452830|458654|458662|458739|459252|459253|459262|459265|459266|459270|459272|459558|459559|459560|459563|459569|459572|459575|459579|459581|459583|459586|459589|459593|459596|459615|459628|459630|459631|459634|459639|459643|459645|459648|459652|459665|459667|460104|460106|460110|460113|460119|460127|460132|460137|460143|460148|460159|460160|466021|466733|466745|466751|466752|466792|467006|467012|467014|487389|500588|508839|511841|519408|519410|519416|519417|519634|519636|519640|519642|523837|524110|524412|524659|524660|524662|524665|524671|524872|524876|524893|524897|524905|524998|525001|525004|525012|525016|525018|525177|525179|525180|525184|530781|530790|542982|542984|542985|542986|542990|542994|542998|543004|543123|543125|543127|543129|543135|543140|543143|543145|543154|543158|543161|543162|543236|543238|543241|543245|543247|543248|543249|543250|543254|543256|543258|543260|543261|543266|544918|544920|544925|544928|544930|544932|544938|544940|544946|544950|544951|544952|544956|544957|544958|544960|545197|545199|545201|545203|545205|545218|545223|545232|545237|545242|545245|545247|545249|545251|545253|545262|545263|545300|545301|545309|545312|545313|545332|545334|545336|545338|545341|545344|545352|545356|545357|545550|545551|545553|545557|545566|545569|545578|545582|545584|545586|545595|545600|545603|545605|545607|545609|545610|545615|545616|545617|545621|545624|545628|559040|559042|563293|563298|563300|563301|564104|564105|564106|565954|565958|565963|568324|569138|569143|569144|569146|569148|569149|569170|570556|570557|577125|583127|612266|612286|612287|622396|623135|623150|623177|631545|631546|631547|631548|631549|631550|631551|631552|631553|631554|631555|638360|638361|638362|638363|638364|638365|638366|638367|638368|638369|638370|638371|638372|638373|638374|638375|638376|638377|638378|638379|638380|638381|638382|638383|638384|638385|645007|645008|649578|651104|651118|651208|651850|651863|651864|651867|651957|652080|652219|652224|688665|691445|692681|692682|692683|692684|692685|692686|695444|695445|695446|695447|698170|698171|698172|701028|701029|701030|701031|701032|701033|701034|701035|711998|723597|723598|723599|723600|723601|723602|723603|737162|737163|737167|737169|737170|737171|748371|751743|751744|751746|751747|759761|759849|764011|767446|767447|767450|767451|767454|767456|767457|767459|767460|774856|775008|775421|775423|777849|779408|779430|781741|783425|783427|783429|783430|783432|783433|783434|788837|790405|790406|790407|790915|793035|794343|794344|794345|794346|794348|794349|794351|794352|798620|801679|801680|819408|819409|820147|820148|820149|820150|820151|820152|820153|820154|820155|820156|820157|820158|820159|820160|820161|820162|820163|820886|822030|828316|828317|828318|828319|828320|828321|828322|828323|828324|828325|836218|836219|836220|836221|836222|836223|836224|836225|836226|836227|836228|836229|836230|836231|836232|836233|836234|844361|844362|844363|844364|844365|844366|844367|851347|851744|852191|852205|852207|852524|852672|861570|861571|889379|889380|889381|889382|889383|889384|889385|889386|889387|889388|889389|889390|891689|902269|902270|902271|902272|902273|902274|902275|902276|902277|902278|902279|902280|902281|902282|902283|902284|902285|902286|902287|902288|902289|903423|903424|903425|919237|923261|923262|925622|925623|925624|925625|925626|925627|925628|927963|927964|932012|932013|934801|934802|934803|934804|934805|934806|934807|934808|934809|937628|940152|940153|940940|943618|943619|943620|946656|946657|946658|946659|946660|946661|946662|946663|946664|946665|949591|949592|949593|949594|953529|953530|953531|953532|953533|953534|953535|953536|953537|953538|953539|955866|955867|955868|955869|955870|955871|955872|955873|955874|955875|955876|955877|955878|955879|955880|955881|955882|955883|957887|960517|960518|960705|966793|972045|972046|972047|972048|972049|972050|972051|972052|972053|972054|972055|972056|972057|972058|972059|972060|972061|972062|972063|972064|972065|972066|972067|972068|973020|977975|977976|977977|977978|978593|978594|978595|978596", + "upstreamId": "27012|27013|27014|27015|27016|27017|27018|27019|27020|27021|27023|27024|27025|27026|27027|27028|27029|27030|70674|70675|70676|70677|70678|70679|70680|70681|70682|70683|70684|70685|70686|70687|70688|70689|70690|70691|70692|70693|70694|70695|70696|70697|70698|70699|70700|70701|70702|70703|70704|70705|70706|70708|70709|70710|70711|70712|70713|70714|70715|70716|70717|70718|70719|70720|70721|70722|70723|70724|70725|70726|70727|70728|70729|70730|70731|70732|70733|70734|70735|70736|70737|70738|70739|70740|70741|70742|70743|70744|70745|70746|70747|70748|70749|70811|70812|70864|70865|70866|70867|70868|70869|70870|70871|70872|70873|70874|70875|70876|70877|70878|70879|70880|71054|203911|205141|213593|227333|237115|237242|237282|237289|237338|248726|251226|251227|253562|253563|253564|253565|253566|253567|253568|253569|264336|291109|291112|291113|291119|291120|292063|292065|292079|292083|292086|292091|295431|295432|295433|295434|295436|295437|295623|295625|295626|295627|295637|308613|308625|308627|308631|308632|308636|308637|308643|308647|313080|313082|313083|313089|313113|313116|313117|313123|313124|313138|313139|313145|313148|313154|313157|313165|313201|313206|313207|313209|318977|318985|318987|318989|318990|318993|318994|318997|319014|319022|319028|319031|319033|319603|319606|319609|319613|319614|319629|319635|319639|319640|319650|353859|357818|363717|367323|389138|424282|431014|446441|452507|452508|452519|452827|452830|458654|458662|458739|459252|459253|459262|459265|459266|459270|459272|459558|459559|459560|459563|459569|459572|459575|459579|459581|459583|459586|459589|459593|459596|459615|459628|459630|459631|459634|459639|459643|459645|459648|459652|459665|459667|460104|460106|460110|460113|460119|460127|460132|460137|460143|460148|460159|460160|466021|466733|466745|466751|466752|466792|467006|467012|467014|487389|500588|508839|511841|519408|519410|519416|519417|519634|519636|519640|519642|523837|524110|524412|524659|524660|524662|524665|524671|524872|524876|524893|524897|524905|524998|525001|525004|525012|525016|525018|525177|525179|525180|525184|530781|530790|542982|542984|542985|542986|542990|542994|542998|543004|543123|543125|543127|543129|543135|543140|543143|543145|543154|543158|543161|543162|543236|543238|543241|543245|543247|543248|543249|543250|543254|543256|543258|543260|543261|543266|544918|544920|544925|544928|544930|544932|544938|544940|544946|544950|544951|544952|544956|544957|544958|544960|545197|545199|545201|545203|545205|545218|545223|545232|545237|545242|545245|545247|545249|545251|545253|545262|545263|545300|545301|545309|545312|545313|545332|545334|545336|545338|545341|545344|545352|545356|545357|545550|545551|545553|545557|545566|545569|545578|545582|545584|545586|545595|545600|545603|545605|545607|545609|545610|545615|545616|545617|545621|545624|545628|559040|559042|563293|563298|563300|563301|564104|564105|564106|565954|565958|565963|568324|569138|569143|569144|569146|569148|569149|569170|570556|570557|577125|583127|612266|612286|612287|622396|623135|623150|623177|631545|631546|631547|631548|631549|631550|631551|631552|631553|631554|631555|638360|638361|638362|638363|638364|638365|638366|638367|638368|638369|638370|638371|638372|638373|638374|638375|638376|638377|638378|638379|638380|638381|638382|638383|638384|638385|645007|645008|649578|651104|651118|651208|651850|651863|651864|651867|651957|652080|652219|652224|688665|691445|692681|692682|692683|692684|692685|692686|695444|695445|695446|695447|698170|698171|698172|701028|701029|701030|701031|701032|701033|701034|701035|711998|723597|723598|723599|723600|723601|723602|723603|737162|737163|737167|737169|737170|737171|748371|751743|751744|751746|751747|759761|759849|764011|767446|767447|767450|767451|767454|767456|767457|767459|767460|774856|775008|775421|775423|777849|779408|779430|781741|783425|783427|783429|783430|783432|783433|783434|788837|790405|790406|790407|790915|793035|794343|794344|794345|794346|794348|794349|794351|794352|798620|801679|801680|819408|819409|820147|820148|820149|820150|820151|820152|820153|820154|820155|820156|820157|820158|820159|820160|820161|820162|820163|820886|822030|828316|828317|828318|828319|828320|828321|828322|828323|828324|828325|836218|836219|836220|836221|836222|836223|836224|836225|836226|836227|836228|836229|836230|836231|836232|836233|836234|844361|844362|844363|844364|844365|844366|844367|851347|851744|852191|852205|852207|852524|852672|861570|861571|889379|889380|889381|889382|889383|889384|889385|889386|889387|889388|889389|889390|891689|902269|902270|902271|902272|902273|902274|902275|902276|902277|902278|902279|902280|902281|902282|902283|902284|902285|902286|902287|902288|902289|903423|903424|903425|919237|923261|923262|925622|925623|925624|925625|925626|925627|925628|927963|927964|932012|932013|934801|934802|934803|934804|934805|934806|934807|934808|934809|937628|940152|940153|940940|943618|943619|943620|946656|946657|946658|946659|946660|946661|946662|946663|946664|946665|949591|949592|949593|949594|953529|953530|953531|953532|953533|953534|953535|953536|953537|953538|953539|955866|955867|955868|955869|955870|955871|955872|955873|955874|955875|955876|955877|955878|955879|955880|955881|955882|955883|957887|960517|960518|960705|966793|972045|972046|972047|972048|972049|972050|972051|972052|972053|972054|972055|972056|972057|972058|972059|972060|972061|972062|972063|972064|972065|972066|972067|972068|973020|977975|977976|977977|977978|978593|978594|978595|978596", "text": "Non-ketotic hyperglycinemia" }, { - "baseId": "27024|48278|79399|79402|79404|79418|203022|384510", + "upstreamId": "27024|48278|79399|79402|79404|79418|203022|384510", "text": "Generalized epilepsy" }, { - "baseId": "27031|27032|27033|27034|27035|34179|34180|34181|34182|34183|34184|34185|34186|34187|34188|34189|34190|34191|38457|187131|190401|190402|190807|191790|191898|254969|254970|254971|254972|254977|254979|254981|254982|254983|254984|254988|254990|320672|320675|320676|320687|320689|320690|329492|329493|329495|329496|329499|336071|336078|336081|336089|337998|338004|338005|490554|513344|528204|539053|566499|568106|568112|568121|572811|572813|620483|620484|620485|642497|642498|642499|642500|642501|642502|642503|652350|652469|714151|714152|725683|744805|754070|779629|779633|791412|816002|820628|841549|841550|851557|852745|871920|871921|871922|871923|871924|871925|871926|871927|871928|871929|871930|872368|872369|872370|872371|920335|927096|927097|936635|936636|948584|948585", + "upstreamId": "27031|27032|27033|27034|27035|34179|34180|34181|34182|34183|34184|34185|34186|34187|34188|34189|34190|34191|38457|187131|190401|190402|190807|191790|191898|254969|254970|254971|254972|254977|254979|254981|254982|254983|254984|254988|254990|320672|320675|320676|320687|320689|320690|329492|329493|329495|329496|329499|336071|336078|336081|336089|337998|338004|338005|490554|513344|528204|539053|566499|568106|568112|568121|572811|572813|620483|620484|620485|642497|642498|642499|642500|642501|642502|642503|652350|652469|714151|714152|725683|744805|754070|779629|779633|791412|816002|820628|841549|841550|851557|852745|871920|871921|871922|871923|871924|871925|871926|871927|871928|871929|871930|872368|872369|872370|872371|920335|927096|927097|936635|936636|948584|948585", "text": "Glycogen storage disease, type VI" }, { - "baseId": "27036|27037|27038|27039|27040|27041|27042|27043|27044|27045|27046|27047|27048|27049|33913|33914|33915|38395|102139|141108|142894|153573|186977|186978|186979|209409|211808|211809|211810|211811|211812|211814|211815|211816|256175|269769|273336|328576|328577|328582|328584|328586|328600|328603|338515|338519|338522|338528|338531|338536|338537|338540|338552|338554|338555|338557|344606|344615|344616|344617|344618|344623|344624|344631|344633|344639|344640|344642|345996|346002|346006|346007|346011|346014|346016|346024|346025|346026|346028|346033|346048|358438|358439|358440|358441|358442|358443|358444|358445|361015|375019|375032|466812|468100|493558|506058|506367|506832|512869|531157|531275|548181|548184|548189|548191|548192|548194|548195|548196|548198|548206|548207|548217|548508|548511|548512|548519|548520|548522|548530|548532|548942|548947|548959|551628|569062|645912|645913|645914|645915|652781|653460|727194|740781|740782|740783|740784|740785|740786|755870|755871|785581|785582|785583|788123|791749|791750|791751|791752|801733|801734|801735|821044|845352|845353|845354|845355|845356|857623|877605|877606|877607|877608|877609|877610|877611|877612|877613|877614|877615|877616|877617|877618|877619|877620|877621|877622|877623|877624|877625|877626|877627|877628|877629|877630|877631|877632|877633|877634|877635|880523|880524|917244|917245|920503|928268|928269|928270|928271|937937|949923|958114|961880|961881|961976|970243|979903|979904|979905", + "upstreamId": "27036|27037|27038|27039|27040|27041|27042|27043|27044|27045|27046|27047|27048|27049|33913|33914|33915|38395|102139|141108|142894|153573|186977|186978|186979|209409|211808|211809|211810|211811|211812|211814|211815|211816|256175|269769|273336|328576|328577|328582|328584|328586|328600|328603|338515|338519|338522|338528|338531|338536|338537|338540|338552|338554|338555|338557|344606|344615|344616|344617|344618|344623|344624|344631|344633|344639|344640|344642|345996|346002|346006|346007|346011|346014|346016|346024|346025|346026|346028|346033|346048|358438|358439|358440|358441|358442|358443|358444|358445|361015|375019|375032|466812|468100|493558|506058|506367|506832|512869|531157|531275|548181|548184|548189|548191|548192|548194|548195|548196|548198|548206|548207|548217|548508|548511|548512|548519|548520|548522|548530|548532|548942|548947|548959|551628|569062|645912|645913|645914|645915|652781|653460|727194|740781|740782|740783|740784|740785|740786|755870|755871|785581|785582|785583|788123|791749|791750|791751|791752|801733|801734|801735|821044|845352|845353|845354|845355|845356|857623|877605|877606|877607|877608|877609|877610|877611|877612|877613|877614|877615|877616|877617|877618|877619|877620|877621|877622|877623|877624|877625|877626|877627|877628|877629|877630|877631|877632|877633|877634|877635|880523|880524|917244|917245|920503|928268|928269|928270|928271|937937|949923|958114|961880|961881|961976|970243|979903|979904|979905", "text": "Glycogen storage disease due to glucose-6-phosphatase deficiency type IA" }, { - "baseId": "27050|27051|27052|27053|27054|27055|27056|27057|27058|27059|27060|27061|27062|27063|27064|47470|47471|47472|47473|47474|47475|47478|47480|47481|47482|47483|47484|47485|47486|47487|47488|98667|98668|98671|98672|99136|99137|136392|177910|190739|191344|191756|192617|192721|193405|193406|195589|195869|195900|200029|200031|200032|200033|200036|200037|200251|200252|200253|200256|214549|214550|214551|214552|214553|214554|214883|214884|214885|214886|214887|214888|214889|214890|214891|214892|214893|214894|214895|214896|214897|214898|214899|214900|227253|237131|237213|248623|254770|254771|254772|259751|264713|273639|273955|273956|288910|288917|288918|288924|288925|288927|288928|289618|289629|289642|289650|289652|289653|289654|289666|289680|292619|292620|292622|292628|292633|292829|292830|292844|292846|292848|292858|292859|292862|292863|292874|318785|318786|318787|318791|327138|327147|327150|327151|333268|333269|333271|333273|333279|334968|334971|334974|334976|334979|334988|334991|366954|367197|367207|367238|372603|373287|373548|373566|373574|375502|421950|433774|438258|445107|451865|452213|452332|462561|463324|463328|463329|463412|463439|463440|487044|500537|504707|505110|513529|513939|519108|519110|542751|542752|542756|542758|542764|542767|542768|542770|542774|542775|542780|542783|542786|542790|542907|542909|542912|542915|542921|542923|542924|542926|542927|542936|542938|542946|542947|542949|542950|542952|542954|542955|542957|542959|542961|542963|542966|542968|542969|542972|542974|542975|542976|542978|542979|542980|542988|542989|546738|546739|546741|546743|546745|546749|546757|546760|546762|546764|546891|546899|546902|546904|546909|546910|546911|546915|547050|547054|547059|547063|547070|547077|547078|547080|547267|547269|547278|547281|547282|547287|547291|547294|561214|562445|562450|562456|562477|567141|567142|568230|568235|572174|609866|610695|610896|610898|612263|612298|620108|620109|620462|620463|621827|622327|623157|623158|625839|625840|625841|625842|625843|625844|625845|625846|625847|625848|625849|625850|625851|625852|625853|625854|625855|625856|625857|625858|625859|625860|625861|625862|625863|625864|625865|625866|630959|630960|630961|630962|630963|630964|641512|641513|641514|641515|641516|641517|641518|641519|651026|652264|652268|652382|652505|652752|655521|655523|655524|656193|691310|691311|691312|691313|691314|693311|693312|693313|695175|697854|702563|708603|713802|713803|720201|738908|738909|738910|744765|744774|748029|748031|748032|753655|753656|753657|753658|760276|763652|769373|769374|769375|769376|769378|769379|774914|781561|784501|784503|784504|784508|784511|788100|790335|790336|790337|791289|801719|818396|818404|819328|820531|820532|820533|820535|820536|820537|820538|827567|827568|827569|827570|827571|827572|840485|840486|840487|840488|840489|840490|840491|840492|852517|852705|858568|870612|870613|870614|870615|870616|870617|870618|870619|870620|870621|870622|870623|870624|870625|870626|870627|872297|872298|888044|888045|888046|888047|888048|888049|888050|888051|891575|917434|918800|923060|923061|931776|931777|931778|931779|931780|936323|936324|940276|941046|943341|943342|943343|953341|953342|953343|953344|953345|957013|959681|960068|960069|966790|970190|977797|979341|979342|979343|979344|979345|979346|979347|979348|979349|979350|979351|979352|979353|979354|979355|979356", + "upstreamId": "27050|27051|27052|27053|27054|27055|27056|27057|27058|27059|27060|27061|27062|27063|27064|47470|47471|47472|47473|47474|47475|47478|47480|47481|47482|47483|47484|47485|47486|47487|47488|98667|98668|98671|98672|99136|99137|136392|177910|190739|191344|191756|192617|192721|193405|193406|195589|195869|195900|200029|200031|200032|200033|200036|200037|200251|200252|200253|200256|214549|214550|214551|214552|214553|214554|214883|214884|214885|214886|214887|214888|214889|214890|214891|214892|214893|214894|214895|214896|214897|214898|214899|214900|227253|237131|237213|248623|254770|254771|254772|259751|264713|273639|273955|273956|288910|288917|288918|288924|288925|288927|288928|289618|289629|289642|289650|289652|289653|289654|289666|289680|292619|292620|292622|292628|292633|292829|292830|292844|292846|292848|292858|292859|292862|292863|292874|318785|318786|318787|318791|327138|327147|327150|327151|333268|333269|333271|333273|333279|334968|334971|334974|334976|334979|334988|334991|366954|367197|367207|367238|372603|373287|373548|373566|373574|375502|421950|433774|438258|445107|451865|452213|452332|462561|463324|463328|463329|463412|463439|463440|487044|500537|504707|505110|513529|513939|519108|519110|542751|542752|542756|542758|542764|542767|542768|542770|542774|542775|542780|542783|542786|542790|542907|542909|542912|542915|542921|542923|542924|542926|542927|542936|542938|542946|542947|542949|542950|542952|542954|542955|542957|542959|542961|542963|542966|542968|542969|542972|542974|542975|542976|542978|542979|542980|542988|542989|546738|546739|546741|546743|546745|546749|546757|546760|546762|546764|546891|546899|546902|546904|546909|546910|546911|546915|547050|547054|547059|547063|547070|547077|547078|547080|547267|547269|547278|547281|547282|547287|547291|547294|561214|562445|562450|562456|562477|567141|567142|568230|568235|572174|609866|610695|610896|610898|612263|612298|620108|620109|620462|620463|621827|622327|623157|623158|625839|625840|625841|625842|625843|625844|625845|625846|625847|625848|625849|625850|625851|625852|625853|625854|625855|625856|625857|625858|625859|625860|625861|625862|625863|625864|625865|625866|630959|630960|630961|630962|630963|630964|641512|641513|641514|641515|641516|641517|641518|641519|651026|652264|652268|652382|652505|652752|655521|655523|655524|656193|691310|691311|691312|691313|691314|693311|693312|693313|695175|697854|702563|708603|713802|713803|720201|738908|738909|738910|744765|744774|748029|748031|748032|753655|753656|753657|753658|760276|763652|769373|769374|769375|769376|769378|769379|774914|781561|784501|784503|784504|784508|784511|788100|790335|790336|790337|791289|801719|818396|818404|819328|820531|820532|820533|820535|820536|820537|820538|827567|827568|827569|827570|827571|827572|840485|840486|840487|840488|840489|840490|840491|840492|852517|852705|858568|870612|870613|870614|870615|870616|870617|870618|870619|870620|870621|870622|870623|870624|870625|870626|870627|872297|872298|888044|888045|888046|888047|888048|888049|888050|888051|891575|917434|918800|923060|923061|931776|931777|931778|931779|931780|936323|936324|940276|941046|943341|943342|943343|953341|953342|953343|953344|953345|957013|959681|960068|960069|966790|970190|977797|979341|979342|979343|979344|979345|979346|979347|979348|979349|979350|979351|979352|979353|979354|979355|979356", "text": "Propionic acidemia" }, { - "baseId": "27065|27066|27067|27068|27069|40255", + "upstreamId": "27065|27066|27067|27068|27069|40255", "text": "Glutaric acidemia IIC" }, { - "baseId": "27070|27071|285755|285760|285761|285766|285768|285779|285785|285791|285792|285799|285800|285813|285815|285821|286464|286465|286466|286468|286501|286505|286506|286507|286515|286527|286538|286539|286540|288764|288766|288773|288774|288778|288785|288789|288790|288791|288794|289173|289183|289185|289186|289187|289188|289194|289203|289210|353569|719800|884536|884537|884538|884539|884540|884541|884542|884543|884544|884545|884546|884547|884548|884549|884550|884551|884552|884553|884554|884555|884556|884557|884558|884559|884560|884561|884562|887344|887345|887346", + "upstreamId": "27070|27071|285755|285760|285761|285766|285768|285779|285785|285791|285792|285799|285800|285813|285815|285821|286464|286465|286466|286468|286501|286505|286506|286507|286515|286527|286538|286539|286540|288764|288766|288773|288774|288778|288785|288789|288790|288791|288794|289173|289183|289185|289186|289187|289188|289194|289203|289210|353569|719800|884536|884537|884538|884539|884540|884541|884542|884543|884544|884545|884546|884547|884548|884549|884550|884551|884552|884553|884554|884555|884556|884557|884558|884559|884560|884561|884562|887344|887345|887346", "text": "Fructosuria, essential" }, { - "baseId": "27072|27073|27074|27075|27076|227267", + "upstreamId": "27072|27073|27074|27075|27076|227267", "text": "Prekallikrein deficiency" }, { - "baseId": "27077|27078|27079|27080|27081|138049|138050|138051|138052|138053|138054|138057|138058|138059|138063|138066|138067|215265|226494|239035|239036|239038|239039|250824|250831|250832|250836|250837|250838|250841|250845|250847|287808|287811|287815|287822|287823|287834|287837|287839|287841|287845|288498|288502|288503|288504|288506|288508|288509|288510|288512|288515|291416|291421|291422|291427|291434|291439|291440|291441|291450|291451|291452|291456|291526|291533|291534|291535|291537|291541|291542|291549|291552|291562|291563|291571|291578|291579|291587|291588|291596|291624|393135|393150|393152|393163|393334|393516|428109|428112|433549|451859|451899|452037|452041|452051|452068|508784|518661|559237|559239|559249|561059|612082|630672|654309|683524|689723|790306|790311|801068|801069|816308|887568|887569|887570|887571|887572|887573|887574|887575|887576|887577|887578|887579|887580|887581|887582|887583|887584|887585|887586|887587|891550|891551|891552|917960|917961|917962|917963|917964|917965|917966|917967|917968|917969|917970|917971|917972|917973|917974|917975|917976|917977|917978|917980|917981|917982|917983|917984|917986|917987|917988|917989|922967", + "upstreamId": "27077|27078|27079|27080|27081|138049|138050|138051|138052|138053|138054|138057|138058|138059|138063|138066|138067|215265|226494|239035|239036|239038|239039|250824|250831|250832|250836|250837|250838|250841|250845|250847|287808|287811|287815|287822|287823|287834|287837|287839|287841|287845|288498|288502|288503|288504|288506|288508|288509|288510|288512|288515|291416|291421|291422|291427|291434|291439|291440|291441|291450|291451|291452|291456|291526|291533|291534|291535|291537|291541|291542|291549|291552|291562|291563|291571|291578|291579|291587|291588|291596|291624|393135|393150|393152|393163|393334|393516|428109|428112|433549|451859|451899|452037|452041|452051|452068|508784|518661|559237|559239|559249|561059|612082|630672|654309|683524|689723|790306|790311|801068|801069|816308|887568|887569|887570|887571|887572|887573|887574|887575|887576|887577|887578|887579|887580|887581|887582|887583|887584|887585|887586|887587|891550|891551|891552|917960|917961|917962|917963|917964|917965|917966|917967|917968|917969|917970|917971|917972|917973|917974|917975|917976|917977|917978|917980|917981|917982|917983|917984|917986|917987|917988|917989|922967", "text": "Fanconi anemia, complementation group D2" }, { - "baseId": "27082|27083|27084|27085|27086|27086|27087|27088|27089|27090|27091|132985|132989|132991|132994|132995|132997|132998|132999|133000|133001|133004|133005|133007|138035|138036|138037|138040|138041|138043|138044|138046|140978|140979|140980|140983|140987|140988|140989|140990|180329|180331|180332|180333|180336|180337|180338|180339|180343|180344|180345|180347|180354|180355|180357|180358|180359|180364|186792|186793|186794|207730|207731|212673|212675|212683|212684|212685|212687|212689|215407|221834|221835|221838|221839|221843|221844|221846|221848|221849|221855|221856|221863|231721|231724|231728|231738|237216|240627|240629|240631|240634|240635|240638|240639|253595|253598|259928|308920|308922|308923|308924|308928|308939|308940|308944|308946|308952|313630|313634|313635|313636|313639|313644|313648|313652|313654|313658|313666|313678|313684|313685|319424|319426|319430|319431|319436|319437|319989|319990|319991|320001|320005|320027|320038|320045|320046|320050|320054|320058|357819|357820|357821|357822|357823|357824|357825|357826|357827|357828|357829|357830|357831|357832|357833|357834|357835|357836|357837|357838|357839|371006|371027|371034|371048|371373|371380|373207|396906|397128|397131|397149|397317|404784|407732|407735|407738|407740|407749|407750|407751|407753|407759|407763|407767|407768|407772|444541|444542|444544|459317|459325|459712|459720|460225|460242|474954|474961|475126|502987|503210|513303|524696|524702|524941|536781|544964|544971|544976|544977|544981|544982|544984|544987|544988|545271|545274|545275|545277|545278|545282|545284|545286|545288|545290|545360|545363|545369|545371|545374|545378|545380|545632|545638|545639|545643|563337|575792|575793|575794|575795|575796|575797|575798|620339|621309|638432|638436|638437|638439|638442|692713|695454|801681|801682|801683|801684|801685|809444|809450|809455|809466|809479|809485|809490|809494|809506|836331|836337|836341|902527|902528|902529|902530|902531|902532|902533|902534|902535|902536|902537|902538|902539|902540|902541|902542|902543|902544|902545|902546|902547|902548|902549|902550|902551|902552|902553|902554|902555|902556|902557|902558|903445|918116|918117|918118|918119|918123|918126|918128|918133|918134|918135|918136|918137|918138|921274|946693|972069|972070|972071|972072|972073|972074|972075|972076|978614", + "upstreamId": "27082|27083|27084|27085|27086|27086|27087|27088|27089|27090|27091|132985|132989|132991|132994|132995|132997|132998|132999|133000|133001|133004|133005|133007|138035|138036|138037|138040|138041|138043|138044|138046|140978|140979|140980|140983|140987|140988|140989|140990|180329|180331|180332|180333|180336|180337|180338|180339|180343|180344|180345|180347|180354|180355|180357|180358|180359|180364|186792|186793|186794|207730|207731|212673|212675|212683|212684|212685|212687|212689|215407|221834|221835|221838|221839|221843|221844|221846|221848|221849|221855|221856|221863|231721|231724|231728|231738|237216|240627|240629|240631|240634|240635|240638|240639|253595|253598|259928|308920|308922|308923|308924|308928|308939|308940|308944|308946|308952|313630|313634|313635|313636|313639|313644|313648|313652|313654|313658|313666|313678|313684|313685|319424|319426|319430|319431|319436|319437|319989|319990|319991|320001|320005|320027|320038|320045|320046|320050|320054|320058|357819|357820|357821|357822|357823|357824|357825|357826|357827|357828|357829|357830|357831|357832|357833|357834|357835|357836|357837|357838|357839|371006|371027|371034|371048|371373|371380|373207|396906|397128|397131|397149|397317|404784|407732|407735|407738|407740|407749|407750|407751|407753|407759|407763|407767|407768|407772|444541|444542|444544|459317|459325|459712|459720|460225|460242|474954|474961|475126|502987|503210|513303|524696|524702|524941|536781|544964|544971|544976|544977|544981|544982|544984|544987|544988|545271|545274|545275|545277|545278|545282|545284|545286|545288|545290|545360|545363|545369|545371|545374|545378|545380|545632|545638|545639|545643|563337|575792|575793|575794|575795|575796|575797|575798|620339|621309|638432|638436|638437|638439|638442|692713|695454|801681|801682|801683|801684|801685|809444|809450|809455|809466|809479|809485|809490|809494|809506|836331|836337|836341|902527|902528|902529|902530|902531|902532|902533|902534|902535|902536|902537|902538|902539|902540|902541|902542|902543|902544|902545|902546|902547|902548|902549|902550|902551|902552|902553|902554|902555|902556|902557|902558|903445|918116|918117|918118|918119|918123|918126|918128|918133|918134|918135|918136|918137|918138|921274|946693|972069|972070|972071|972072|972073|972074|972075|972076|978614", "text": "Fanconi anemia, complementation group C" }, { - "baseId": "27092|27093|27094|27095|27096|27097|27098|27099|27100|27101|27102|27103|27104|27119|40038|254820|319057|319065|319068|319069|319070|319078|319081|327504|327505|327512|327513|327515|327522|327523|327524|327532|333719|333751|333753|333757|333762|335397|335426|335433|335438|335441|611370|615536|615537|615538|615539|615540|615541|615542|615543|615544|615545|615546|615860|620466|725397|725398|730904|870784|870785|870786|870787|870788|870789|870790|870791|870792|870793|870794|872318", + "upstreamId": "27092|27093|27094|27095|27096|27097|27098|27099|27100|27101|27102|27103|27104|27119|40038|254820|319057|319065|319068|319069|319070|319078|319081|327504|327505|327512|327513|327515|327522|327523|327524|327532|333719|333751|333753|333757|333762|335397|335426|335433|335438|335441|611370|615536|615537|615538|615539|615540|615541|615542|615543|615544|615545|615546|615860|620466|725397|725398|730904|870784|870785|870786|870787|870788|870789|870790|870791|870792|870793|870794|872318", "text": "Factor X deficiency" }, { - "baseId": "27105", + "upstreamId": "27105", "text": "Factor x deficiency, autosomal dominant" }, { - "baseId": "27106", + "upstreamId": "27106", "text": "Factor VII Padua" }, { - "baseId": "27107|27108|27109|27110|27111|27112|27113|27114|27115|27116|27117|27119|27120|27121|27122|27123|27124|27125|27126|27127|27128|27129|254815|254816|254818|260038|319040|319051|319052|319057|319059|319064|319065|319066|319068|327482|327483|327484|327490|327496|327499|327501|327502|327504|327505|327509|327510|327511|327512|333696|333697|333714|333715|333716|333719|333723|333737|333743|333748|333749|333751|333753|333756|335367|335370|335376|335380|335381|335390|335397|335403|335410|335412|335426|335428|361209|390088|408803|408804|504461|615520|615521|615522|615523|615524|615525|615527|615528|615530|615531|615533|615535|615739|615740|615741|615742|615743|615744|620857|725395|725396|738970|796911|870757|870758|870759|870760|870761|870762|870763|870764|870765|870766|870767|870768|870769|870770|870771|870772|870773|870774|870775|870776|870777|870778|870779|870780|870781|870782|870783|872317", + "upstreamId": "27107|27108|27109|27110|27111|27112|27113|27114|27115|27116|27117|27119|27120|27121|27122|27123|27124|27125|27126|27127|27128|27129|254815|254816|254818|260038|319040|319051|319052|319057|319059|319064|319065|319066|319068|327482|327483|327484|327490|327496|327499|327501|327502|327504|327505|327509|327510|327511|327512|333696|333697|333714|333715|333716|333719|333723|333737|333743|333748|333749|333751|333753|333756|335367|335370|335376|335380|335381|335390|335397|335403|335410|335412|335426|335428|361209|390088|408803|408804|504461|615520|615521|615522|615523|615524|615525|615527|615528|615530|615531|615533|615535|615739|615740|615741|615742|615743|615744|620857|725395|725396|738970|796911|870757|870758|870759|870760|870761|870762|870763|870764|870765|870766|870767|870768|870769|870770|870771|870772|870773|870774|870775|870776|870777|870778|870779|870780|870781|870782|870783|872317", "text": "Factor VII deficiency" }, { - "baseId": "27118|27119", + "upstreamId": "27118|27119", "text": "Myocardial infarction, decreased susceptibility to" }, { - "baseId": "27130|27131|961561|961562", + "upstreamId": "27130|27131|961561|961562", "text": "Deficiency of bisphosphoglycerate mutase" }, { - "baseId": "27132|27133|27134|27135|27136|27137|27139|27140|27141|40087|40088|40089|45032|432331|441918|612312|612313|788900|962790|962791", + "upstreamId": "27132|27133|27134|27135|27136|27137|27139|27140|27141|40087|40088|40089|45032|432331|441918|612312|612313|788900|962790|962791", "text": "Apparent mineralocorticoid excess" }, { - "baseId": "27138|27139", + "upstreamId": "27138|27139", "text": "Apparent mineralocorticoid excess, mild" }, { - "baseId": "27142|27143|27144|27145|27146|27147|27148|27149|27150|27151|227286|623284|623285", + "upstreamId": "27142|27143|27144|27145|27146|27147|27148|27149|27150|27151|227286|623284|623285", "text": "Complement component 7 deficiency" }, { - "baseId": "27144", + "upstreamId": "27144", "text": "C7 and C6 deficiency, combined subtotal" }, { - "baseId": "27153", + "upstreamId": "27153", "text": "C6 deficiency, subtotal" }, { - "baseId": "27154|27155|27156|32077|38877|44259|205146|496803|788778", + "upstreamId": "27154|27155|27156|32077|38877|44259|205146|496803|788778", "text": "Complement component 6 deficiency" }, { - "baseId": "27157|27158|27159|27163|551236|614273", + "upstreamId": "27157|27158|27159|27163|551236|614273", "text": "Afibrinogenemia" }, { - "baseId": "27160|27161|27162|27164|27165|76488|76922|246959|291907|291908|291909|291914|291916|291922|291924|293307|293312|293318|293319|293323|293324|293325|293326|293327|296608|296616|296620|296626|296631|296632|296633|296634|296635|296637|296641|296642|296643|296644|296645|296649|296651|296654|296656|353663|406381|432292|513048|590272|614273|620139|623277|623278|730254|818228|818229|818230|818231|818232|889862|889863|889864|889865|889866|889867|889868|889869|889870|889871|889872|889873|891728|891729", + "upstreamId": "27160|27161|27162|27164|27165|76488|76922|246959|291907|291908|291909|291914|291916|291922|291924|293307|293312|293318|293319|293323|293324|293325|293326|293327|296608|296616|296620|296626|296631|296632|296633|296634|296635|296637|296641|296642|296643|296644|296645|296649|296651|296654|296656|353663|406381|432292|513048|590272|614273|620139|623277|623278|730254|818228|818229|818230|818231|818232|889862|889863|889864|889865|889866|889867|889868|889869|889870|889871|889872|889873|891728|891729", "text": "Atypical hemolytic-uremic syndrome 3" }, { - "baseId": "27166", + "upstreamId": "27166", "text": "C2 deficiency, type I" }, { - "baseId": "27167|27168", + "upstreamId": "27167|27168", "text": "C2 deficiency, type II" }, { - "baseId": "27169|27170|31114|31116|299764|299775|299776|299781|299782|299786|299793|302370|302371|302372|302382|302387|302388|302389|306761|306762|306777|306778|307086|307087|307088|307092|307093|307097|307101|353749|614299|895757|895758|895759|895760|895761|895762|895763|895764|895765|895766|895767|895768|895769|895770|895771|895772|895773|895774|895775|895776|895777|895778|895779|895780|895781|896217|896218|980457|980458", + "upstreamId": "27169|27170|31114|31116|299764|299775|299776|299781|299782|299786|299793|302370|302371|302372|302382|302387|302388|302389|306761|306762|306777|306778|307086|307087|307088|307092|307093|307097|307101|353749|614299|895757|895758|895759|895760|895761|895762|895763|895764|895765|895766|895767|895768|895769|895770|895771|895772|895773|895774|895775|895776|895777|895778|895779|895780|895781|896217|896218|980457|980458", "text": "Age-related macular degeneration 14" }, { - "baseId": "27169|31114|31115|31116|59668|227292|227293|299764|299768|299775|299776|299781|299782|299786|299793|299798|299801|299802|299810|299817|299818|302370|302371|302372|302382|302387|302388|302389|302401|302405|302413|306761|306762|306777|306778|306818|306825|307086|307087|307088|307092|307093|307097|307101|307117|353749|614299|895757|895758|895759|895760|895761|895762|895763|895764|895765|895766|895767|895768|895769|895770|895771|895772|895773|895774|895775|895776|895777|895778|895779|895780|895781|896217|896218|903543|961950|980457", + "upstreamId": "27169|31114|31115|31116|59668|227292|227293|299764|299768|299775|299776|299781|299782|299786|299793|299798|299801|299802|299810|299817|299818|302370|302371|302372|302382|302387|302388|302389|302401|302405|302413|306761|306762|306777|306778|306818|306825|307086|307087|307088|307092|307093|307097|307101|307117|353749|614299|895757|895758|895759|895760|895761|895762|895763|895764|895765|895766|895767|895768|895769|895770|895771|895772|895773|895774|895775|895776|895777|895778|895779|895780|895781|896217|896218|903543|961950|980457", "text": "Complement component 2 deficiency" }, { - "baseId": "27171|27172|27173|27174|27175|27176|27177|132031|132032|200052|237052|291025|291026|291034|291036|291044|291046|291048|291050|291062|291984|291990|291991|291992|295346|295347|295349|295572|295573|295577|295578|295582|295584|367614|452802|452806|519377|536282|559548|561640|578421|623134|631499|631500|631501|631502|631503|631504|631505|818386|828255|828256|889328|889329|889330|889331|889332|889333|889334|889335|889336|889337|889338|889339|889340|891684|920487|920488|923242|931994|931995|939946|953514|960515", + "upstreamId": "27171|27172|27173|27174|27175|27176|27177|132031|132032|200052|237052|291025|291026|291034|291036|291044|291046|291048|291050|291062|291984|291990|291991|291992|295346|295347|295349|295572|295573|295577|295578|295582|295584|367614|452802|452806|519377|536282|559548|561640|578421|623134|631499|631500|631501|631502|631503|631504|631505|818386|828255|828256|889328|889329|889330|889331|889332|889333|889334|889335|889336|889337|889338|889339|889340|891684|920487|920488|923242|931994|931995|939946|953514|960515", "text": "Carnitine acylcarnitine translocase deficiency" }, { - "baseId": "27178|27181", + "upstreamId": "27178|27181", "text": "Bombay phenotype" }, { - "baseId": "27179|27180|223368", + "upstreamId": "27179|27180|223368", "text": "Para-Bombay phenotype" }, { - "baseId": "27181|27986", + "upstreamId": "27181|27986", "text": "BOMBAY PHENOTYPE, DIGENIC" }, { - "baseId": "27189|27190|27191|27192|27193|27194|27195|27196|27197|27198|27199|27200|27201|27203|27207|27208|27209|27210|27211|27213|27214|27215|27216|27217|27218|27222|33491|76512|76514|76516|76517|76518|76519|186703|187078|187079|187080|187081|187082|187083|187084|187085|190758|193439|227294|227295|252234|260863|424373|439126|442474|442475|442476|576926|587370|612435|612438|612439|788798|789173|789174|789175|789176|789177|789178|789179|789180|789181|789182|789183|789184|789185|789186|789187|789188|789189|789190|789191|789192|789193|789194|789195|789196|789197|789198|789199|789200|789201|789202|789203|789204|789205|789206|789207|789208|789209|789210|789211|789212|789213|789214|789215|789216|789217|789218|789219|789220|789221|789222|789223|789224|789225|789226|789227|789228|789229|789230|789231|789232|789233|789234|789235|790612|790613", + "upstreamId": "27189|27190|27191|27192|27193|27194|27195|27196|27197|27198|27199|27200|27201|27203|27207|27208|27209|27210|27211|27213|27214|27215|27216|27217|27218|27222|33491|76512|76514|76516|76517|76518|76519|186703|187078|187079|187080|187081|187082|187083|187084|187085|190758|193439|227294|227295|252234|260863|424373|439126|442474|442475|442476|576926|587370|612435|612438|612439|788798|789173|789174|789175|789176|789177|789178|789179|789180|789181|789182|789183|789184|789185|789186|789187|789188|789189|789190|789191|789192|789193|789194|789195|789196|789197|789198|789199|789200|789201|789202|789203|789204|789205|789206|789207|789208|789209|789210|789211|789212|789213|789214|789215|789216|789217|789218|789219|789220|789221|789222|789223|789224|789225|789226|789227|789228|789229|789230|789231|789232|789233|789234|789235|790612|790613", "text": "Classic congenital adrenal hyperplasia due to 21-hydroxylase deficiency" }, { - "baseId": "27190", + "upstreamId": "27190", "text": "Adenoma, cortisol-producing" }, { - "baseId": "27190", + "upstreamId": "27190", "text": "Carcinoma, adrenocortical, androgen-secreting" }, { - "baseId": "27193|27201|27202", + "upstreamId": "27193|27201|27202", "text": "21-HYDROXYLASE POLYMORPHISM" }, { - "baseId": "27194", + "upstreamId": "27194", "text": "Adrenal hyperplasia" }, { - "baseId": "27219|27220", + "upstreamId": "27219|27220", "text": "Hyperandrogenism, nonclassic type, due to 21-hydroxylase deficiency" }, { - "baseId": "27223|27224|27226|27227|27228|27229|27230|27231|27232|27233|45033|276147|276149|276150|276152|276153|276154|276411|276412|276419|276741|276743|276745|276748|276750|276751|276754|276756|276801|276802|276803|276808|496564|718138|718139|731629|731631|745607|758839|761115|780288|862092|862093|862094|862095|862096|864964|977422|977423|977424|977425", + "upstreamId": "27223|27224|27226|27227|27228|27229|27230|27231|27232|27233|45033|276147|276149|276150|276152|276153|276154|276411|276412|276419|276741|276743|276745|276748|276750|276751|276754|276756|276801|276802|276803|276808|496564|718138|718139|731629|731631|745607|758839|761115|780288|862092|862093|862094|862095|862096|864964|977422|977423|977424|977425", "text": "3 beta-Hydroxysteroid dehydrogenase deficiency" }, { - "baseId": "27234", + "upstreamId": "27234", "text": "Major affective disorder 7, susceptibility to" }, { - "baseId": "27235|27236|27237|45557|45558|45559|54741|54743|54745|54746|54747|54748|54749|54750|54751|54753|54754|54755|54758|54759|54760|54761|54762|54764|54765|54765|54766|54767|54768|54769|54769|54770|54771|54772|54774|54775|54777|54778|54779|54781|54782|54783|54785|54786|54787|54788|54789|141603|141604|141605|175011|175015|175016|175019|175290|175291|175292|175293|175294|188808|189863|189864|189865|189866|189866|189867|189868|189869|189870|198286|198287|198291|198292|198293|198294|198295|198296|198297|198298|198299|198300|198304|198305|198306|224402|224403|229915|240842|240843|240844|240846|240847|258656|258661|311013|311015|311016|311017|311021|311029|311040|316341|316341|316350|316353|316354|316357|316360|316364|316373|316374|322416|322417|322421|322430|322431|322432|322439|322444|322459|323004|323006|323010|323012|323028|323040|323054|323064|323068|323069|323070|323085|323087|370882|371415|371431|371448|371797|397404|397405|397413|397414|397418|397420|397575|397578|397580|397799|397801|397805|397818|397930|397931|397940|397953|397958|404791|404791|407909|407910|407911|460136|460140|460141|460147|460154|460254|460257|460262|460263|460274|460509|460512|460526|460532|460941|460948|460949|460957|460960|460963|460965|480705|481133|497171|503433|503731|510220|514271|525378|525381|525384|525385|525386|525398|525458|525460|525462|525465|525481|525483|525487|525495|525497|525505|525573|525574|525576|525587|525588|525786|525787|550787|563937|563948|563949|564735|564742|564744|566481|566483|566488|566502|614990|639145|639146|639147|639148|639149|639150|639151|639152|639153|639154|639155|639156|639157|639158|639159|652009|652042|652260|656014|687672|692888|752262|752263|752264|767974|767976|796456|820240|820241|837278|837279|837280|837281|837282|837283|837284|837285|837286|837287|837288|837289|837290|837291|837292|837293|837294|837295|837296|837297|837298|837299|837300|837301|837302|837303|837304|837305|837306|851385|866256|866257|866258|866259|866260|866261|866262|866263|866264|866265|866266|866267|866268|866269|866270|866271|866272|866273|866274|868501|925921|925922|925923|925924|925925|925926|925927|925928|935171|935172|935173|935174|935175|935176|940965|940966|940967|947064|947065|947066|947067|947068|947069|947070|947071|947072|956203|956204|956205|956206|956207|956208|956209|959944|959945", + "upstreamId": "27235|27236|27237|45557|45558|45559|54741|54743|54745|54746|54747|54748|54749|54750|54751|54753|54754|54755|54758|54759|54760|54761|54762|54764|54765|54765|54766|54767|54768|54769|54769|54770|54771|54772|54774|54775|54777|54778|54779|54781|54782|54783|54785|54786|54787|54788|54789|141603|141604|141605|175011|175015|175016|175019|175290|175291|175292|175293|175294|188808|189863|189864|189865|189866|189866|189867|189868|189869|189870|198286|198287|198291|198292|198293|198294|198295|198296|198297|198298|198299|198300|198304|198305|198306|224402|224403|229915|240842|240843|240844|240846|240847|258656|258661|311013|311015|311016|311017|311021|311029|311040|316341|316341|316350|316353|316354|316357|316360|316364|316373|316374|322416|322417|322421|322430|322431|322432|322439|322444|322459|323004|323006|323010|323012|323028|323040|323054|323064|323068|323069|323070|323085|323087|370882|371415|371431|371448|371797|397404|397405|397413|397414|397418|397420|397575|397578|397580|397799|397801|397805|397818|397930|397931|397940|397953|397958|404791|404791|407909|407910|407911|460136|460140|460141|460147|460154|460254|460257|460262|460263|460274|460509|460512|460526|460532|460941|460948|460949|460957|460960|460963|460965|480705|481133|497171|503433|503731|510220|514271|525378|525381|525384|525385|525386|525398|525458|525460|525462|525465|525481|525483|525487|525495|525497|525505|525573|525574|525576|525587|525588|525786|525787|550787|563937|563948|563949|564735|564742|564744|566481|566483|566488|566502|614990|639145|639146|639147|639148|639149|639150|639151|639152|639153|639154|639155|639156|639157|639158|639159|652009|652042|652260|656014|687672|692888|752262|752263|752264|767974|767976|796456|820240|820241|837278|837279|837280|837281|837282|837283|837284|837285|837286|837287|837288|837289|837290|837291|837292|837293|837294|837295|837296|837297|837298|837299|837300|837301|837302|837303|837304|837305|837306|851385|866256|866257|866258|866259|866260|866261|866262|866263|866264|866265|866266|866267|866268|866269|866270|866271|866272|866273|866274|868501|925921|925922|925923|925924|925925|925926|925927|925928|935171|935172|935173|935174|935175|935176|940965|940966|940967|947064|947065|947066|947067|947068|947069|947070|947071|947072|956203|956204|956205|956206|956207|956208|956209|959944|959945", "text": "Dilated cardiomyopathy 1W" }, { - "baseId": "27236|27237|54765|54769|189866|198305|214108|316341|404791|481133|550787", + "upstreamId": "27236|27237|54765|54769|189866|198305|214108|316341|404791|481133|550787", "text": "Familial hypertrophic cardiomyopathy 15" }, { - "baseId": "27238|213984|413946|459741|460188|525347|687609|692818|692819|701274|712294|919263|925778|946848|946849", + "upstreamId": "27238|213984|413946|459741|460188|525347|687609|692818|692819|701274|712294|919263|925778|946848|946849", "text": "Cataract 30" }, { - "baseId": "27239|27240|27241|34233|70506|75338|136147|136149|136150|136151|136152|136153|136154|136155|136156|136158|136159|136160|136161|191375|207711|207713|207714|207717|207719|307964|307970|307975|307981|307987|307989|307990|307992|307993|307997|312309|312311|312323|312326|312327|312337|312339|312342|317994|318001|318007|318020|318033|318035|318559|318563|318566|318574|318586|318591|318598|370356|370860|425841|428998|429004|622893|767370|802170|901760|901761|901762|901763|901764|901765|901766|901767|901768|901769|901770|901771|901772|901773|901774|901775|901776|901777|901778|901779|901780|901781|901782|901783|901784|901785|901786|901787|901788|901789|901790|901791|901792|901793|901794|903375|903376|903377", + "upstreamId": "27239|27240|27241|34233|70506|75338|136147|136149|136150|136151|136152|136153|136154|136155|136156|136158|136159|136160|136161|191375|207711|207713|207714|207717|207719|307964|307970|307975|307981|307987|307989|307990|307992|307993|307997|312309|312311|312323|312326|312327|312337|312339|312342|317994|318001|318007|318020|318033|318035|318559|318563|318566|318574|318586|318591|318598|370356|370860|425841|428998|429004|622893|767370|802170|901760|901761|901762|901763|901764|901765|901766|901767|901768|901769|901770|901771|901772|901773|901774|901775|901776|901777|901778|901779|901780|901781|901782|901783|901784|901785|901786|901787|901788|901789|901790|901791|901792|901793|901794|903375|903376|903377", "text": "Cerebellar ataxia, mental retardation, and dysequilibrium syndrome 1" }, { - "baseId": "27240|27241", + "upstreamId": "27240|27241", "text": "Cerebellar ataxia and mental retardation with quadrupedal locomotion 1" }, { - "baseId": "27243|27244|27245|27246|27247|27248|27249|27250|27251|27252|27253|27254|27255|27256|27257|27259|27260|27261|354183|964529", + "upstreamId": "27243|27244|27245|27246|27247|27248|27249|27250|27251|27252|27253|27254|27255|27256|27257|27259|27260|27261|354183|964529", "text": "Neurohypophyseal diabetes insipidus" }, { - "baseId": "27258", + "upstreamId": "27258", "text": "Diabetes insipidus, neurohypophyseal, autosomal recessive" }, { - "baseId": "27262", + "upstreamId": "27262", "text": "Microvascular complications of diabetes 1" }, { - "baseId": "27263|29485", + "upstreamId": "27263|29485", "text": "Atherosclerosis, susceptibility to" }, { - "baseId": "27264|27265|27266|27267|27268|27269|53387|53388|53389|53390|53392|53393|53394|53395|53396|53397|53398|176751|176754|176755|178235|178236|178267|231305|231334|231335|231336|231337|231338|231395|231400|231401|264108|287114|287115|287121|287124|287125|287136|287137|287846|287851|287852|287867|290346|290347|290365|290382|290383|290389|290395|353575|511434|511435|542147|542315|542317|542319|620091|623271|626131|655472|697633|733544|733545|759186|763384|781427|790289|885396|885397|885398|885399|885400|885401|885402|885403|887388|887389|963356|977739|977740|977741|977742|977743|977744|977745|977746", + "upstreamId": "27264|27265|27266|27267|27268|27269|53387|53388|53389|53390|53392|53393|53394|53395|53396|53397|53398|176751|176754|176755|178235|178236|178267|231305|231334|231335|231336|231337|231338|231395|231400|231401|264108|287114|287115|287121|287124|287125|287136|287137|287846|287851|287852|287867|290346|290347|290365|290382|290383|290389|290395|353575|511434|511435|542147|542315|542317|542319|620091|623271|626131|655472|697633|733544|733545|759186|763384|781427|790289|885396|885397|885398|885399|885400|885401|885402|885403|887388|887389|963356|977739|977740|977741|977742|977743|977744|977745|977746", "text": "Renal tubular acidosis with progressive nerve deafness" }, { - "baseId": "27270|27271|27272|27273|27275|27276|27277|27278|27279|27280|27281|27282|27283|27284|27285|27286|27290|27291|33492|48922|50222|50223|50225|50226|133362|133363|133364|133365|133366|133367|133368|133369|133370|133371|133372|133372|133373|133374|133375|133376|133377|133378|133379|133380|133381|133382|133383|133384|133385|133386|133388|133389|133390|136440|136457|136468|136517|137584|137585|137586|137587|137588|137589|137590|137591|137592|137593|137594|139767|139768|139769|139770|139771|139772|139773|139774|139775|139776|139777|139778|139779|139780|139781|139782|140394|140395|140396|140397|140398|140399|140400|140401|140402|150470|150495|150498|150512|150517|150520|150554|150555|150567|150576|150585|150592|150609|150678|150682|150724|150728|150730|150874|150920|150975|150978|151002|151085|151090|151164|151198|151252|151284|151306|151353|151375|151387|151515|151516|151517|151519|151524|151542|151548|151568|151584|151634|151665|151698|151704|151725|151743|151754|151859|151999|152000|152008|152020|152035|152052|152071|152077|152149|152151|152169|152176|152183|152260|152279|152292|152306|152324|152346|152347|152374|152406|152484|152502|152516|152540|152553|152567|152602|152619|152638|152657|152658|152671|152682|152698|166156|166260|166261|166262|166263|166264|180760|180765|180766|180767|180768|180769|180770|180771|180772|180773|180774|180775|180776|180778|180779|180780|180783|180784|180785|180786|180788|180789|180790|184307|184309|184311|184313|184314|184316|184319|184320|184323|184325|184326|184327|184328|184329|184330|184331|184332|184333|184334|184335|184338|184339|184340|184342|184343|184345|184346|184347|184349|184350|184351|184352|184353|184355|184356|184359|184360|184361|184362|184363|184364|184365|184367|184368|184369|184370|184371|184372|184373|184374|184375|184376|184377|184378|184379|184382|184383|184384|184385|184386|184387|184388|184389|184390|184391|184392|184394|184395|184397|184399|184400|184402|184403|184404|184405|184406|184408|184409|184410|184411|184412|184416|184417|184418|184419|184420|184421|184422|184423|184425|184427|184428|184430|184432|184433|184435|184436|184437|184438|184439|184440|184441|184443|184444|184445|184446|184447|184449|184451|184453|184454|184455|184456|184457|184458|184459|184460|184464|184465|184466|184467|184468|184469|184470|184472|184474|184475|184476|184477|186209|186229|186230|186231|186232|213195|213196|213197|213198|213199|213200|213202|213203|213204|213205|213206|213207|213208|213209|213210|213211|213212|213213|213214|213215|222441|222491|222492|222493|222495|222496|222497|222498|222499|222500|222501|222502|222503|222504|222505|222506|222507|222508|222509|222510|222511|222512|222513|222514|222515|222516|222517|222518|222519|222520|222521|222522|222523|222524|222525|222526|222527|222529|222530|222531|225383|225386|225388|226361|226608|231958|231959|231962|231963|231965|231967|231968|231969|231970|231971|231972|231973|231973|231975|231976|231977|231980|231981|231982|231983|231984|231985|231986|235349|235350|235351|235352|235355|235356|235357|235360|235361|235364|235365|235368|235371|235372|235373|235374|235375|235378|235379|235380|235381|235383|235384|235385|235386|235387|235388|235389|235390|235391|235392|235393|235394|235395|235396|235397|235399|235400|235403|235404|235405|235407|235408|235410|235411|235412|235413|235415|235417|235419|235420|235421|235422|235424|235426|235427|235429|235431|235432|235434|235437|235438|235439|235440|235441|235444|235445|235446|235447|235448|235449|235450|235452|235455|235456|235458|235459|235460|235461|235463|235464|235465|235466|235467|235468|235469|235470|235471|235472|242187|242447|242448|242449|242450|242451|242453|242455|242456|242457|242458|242459|242460|242461|242462|242463|242465|242466|242467|242468|242469|242470|242471|242472|242473|242474|242475|242477|242478|242479|242480|242481|242482|242483|242484|242485|242486|242487|242488|242489|255855|255856|260122|260123|260124|264638|264640|264968|264974|326160|326162|326164|326166|326168|326171|326172|326174|326175|335828|335836|335837|335840|335843|335853|335854|342198|342199|342203|342205|342207|342220|343740|343741|343744|343748|343749|343750|343752|343753|343754|343755|343756|343757|343759|343762|343763|343767|343769|353351|353352|358912|358913|358914|358915|358916|358917|358918|374440|374449|374452|374457|374459|374488|374490|374495|374511|374522|375251|375286|375298|375311|375318|375322|375326|375523|375534|375544|377647|377662|377664|377667|377670|377701|377708|400655|401088|401204|401214|401219|401221|401239|401241|401244|401252|401254|401261|401262|401263|401265|401267|401269|401270|401271|401274|401276|401278|401284|401285|401287|401293|401296|401298|401300|401303|401307|401312|401315|401325|401327|401328|401334|401338|401339|401734|401737|401739|401743|401745|401750|401759|401760|401765|401768|401775|401776|401782|401788|401796|401797|401800|401803|401994|402003|402009|402012|402017|402019|402021|402026|402029|402030|402035|402036|402040|402045|402050|402059|402064|402072|402073|402076|402079|402083|402091|402093|402094|402097|402101|402104|402105|409664|409665|409667|409669|409670|409672|409674|409676|409677|409678|409679|409681|409686|409688|409689|409690|409691|409693|409694|409695|409696|409697|409699|409700|409703|409705|409706|409707|409708|409709|409710|409711|409712|409714|409715|409716|420589|420590|420591|420592|420593|420596|420597|420598|420599|420600|420602|420605|431550|432882|432884|432885|433405|439582|445599|445601|445602|445604|465424|465425|465430|465431|465435|465436|465688|465689|465826|465828|465837|465844|465855|465860|465862|465864|465867|465870|465871|465877|465883|465884|465886|465894|465903|465905|465908|465910|465915|465916|465917|465918|465920|466528|466529|466536|466539|466540|466546|466549|466551|466554|466555|466557|466558|466559|466561|466562|466564|466565|466566|466567|466568|466572|466574|466575|466577|466578|466579|466581|466582|466584|466586|466587|466589|466590|466594|466596|466597|466599|466604|466608|466610|466616|466619|466627|466636|466639|466644|466645|466650|466810|466817|466819|466826|466830|466834|466838|466839|466841|466855|466857|466858|466861|466863|466869|466875|466882|466883|466888|466898|466903|466908|466922|466923|466931|466932|466936|466938|466941|466945|466946|466952|466955|477732|477738|477752|477754|477759|477762|477763|477765|477768|477769|477773|477776|477778|477782|477784|477787|477790|477797|477802|477803|477804|477808|477817|477826|477827|477830|477832|477833|477834|477839|477841|477844|477849|477852|477853|477854|477859|477860|477861|477877|477880|477883|477884|477885|477887|477892|477899|477906|477931|477932|477933|477937|477938|477940|478326|478339|478342|478345|478352|478358|478360|478370|478375|478377|478389|478410|478418|478435|478437|478445|478456|478465|478479|478485|478487|478496|478498|478508|478527|481516|482919|482952|482960|484717|484853|484863|484869|484874|484876|484881|484884|484889|484892|484904|484919|484921|484929|484931|484934|484937|484943|485146|485152|485159|485170|485195|485666|485668|487892|488241|488242|488243|506405|529855|530112|530117|530120|530126|530131|530134|530137|530138|530141|530146|530150|530162|530168|530170|530171|530216|530220|530221|530225|530227|530230|530232|530234|530237|530238|530239|530424|530428|530431|530433|530440|530442|530445|530448|530459|530460|530461|530462|530471|530476|530483|530484|530486|530488|530646|530650|530654|530657|530677|530678|530679|530684|530691|530692|530694|530695|530697|530699|530703|530705|530713|536472|536473|536474|536475|539346|539347|539348|539349|551416|567522|567531|567532|568214|568216|568217|568226|568229|568231|568232|568234|568240|568241|568243|568245|568247|568251|568258|568262|568267|568270|569812|569814|570339|570340|570341|570348|570352|570355|570356|570357|570358|570360|570361|570363|570367|570369|570373|570375|570377|570379|570381|570382|570383|570394|570396|570398|570400|570402|570403|570417|570420|570425|570434|570438|570446|574102|574104|574106|574108|574109|574110|574111|574114|574116|574117|574119|574122|574123|574125|574127|574129|574131|575968|575969|575970|575971|575972|575973|575974|590987|590988|590989|590990|590991|590992|612022|612023|612024|618465|618470|618480|618484|618487|618494|618495|618501|618516|619499|621548|621549|644813|644814|644815|644816|644817|644818|644819|644820|644821|644822|644823|644824|644825|644826|644827|644828|644829|644830|644831|644832|644833|644834|644835|644836|644837|644838|644839|644840|644841|644842|644843|644844|644845|644846|644847|644848|644849|644850|644851|644852|644853|644854|644855|644856|644857|644858|644859|644860|644861|644862|644863|644864|644865|644866|644867|644868|644869|644870|644871|644872|644873|644874|644875|644876|644877|644878|644879|644880|644881|644882|644883|644884|644885|644886|644887|644888|644889|652475|652478|652634|652638|652639|652734|652736|652741|652747|652749|652863|652864|653051|653143|653284|653290|653302|653303|653305|656379|667559|688628|693911|755335|755337|755340|760342|760460|771011|771014|776199|785346|785350|785354|785356|785358|785359|785364|788062|791632|791633|791634|791635|791636|791637|791638|797363|806408|812862|812864|812866|812868|812869|812871|812873|812892|812901|812907|812915|812929|812940|812948|812950|812951|812958|812961|812962|812988|815638|820853|820854|820855|820856|820857|820859|820860|820861|820862|820863|820864|820865|820866|820867|844122|844123|844124|844125|844126|844127|844128|844129|844130|844131|844132|844133|844134|844135|844136|844137|844138|844139|844140|844141|844142|844143|844144|844145|844146|844147|844148|844149|844150|844151|844152|844153|844154|844155|844156|844157|844158|844159|844160|844161|844162|844163|844164|844165|844166|844167|844168|844169|844170|844171|844172|844173|844174|844175|844176|844177|844178|844179|844180|844181|844182|844183|844184|844185|844186|844187|844188|844189|844190|844191|844192|844193|851671|851673|852845|875834|875835|875836|875837|875838|875839|875840|875841|875842|875843|913728|913773|913779|913782|913784|913785|913792|916711|917218|927887|927888|927889|927890|927891|927892|927893|927894|927895|927896|927897|927898|927899|927900|927901|927902|927903|927904|927905|927906|927907|927908|937545|937546|937547|937548|937549|937550|937551|937552|937553|937554|937555|937556|937557|937558|937559|937560|937561|937562|937563|937564|937565|937566|937567|937568|940366|940367|940381|940382|941143|941144|949488|949489|949490|949491|949492|949493|949494|949495|949496|949497|949498|949499|949500|949501|949502|949503|949504|949505|949506|949507|949508|949509|949510|949511|949512|949513|949514|949515|949516|949517|957838|957839|957840|957841|957842|957843|957844|957845|957846|957847|957848|957849|960172|960173|960174|961662|969308", + "upstreamId": "27270|27271|27272|27273|27275|27276|27277|27278|27279|27280|27281|27282|27283|27284|27285|27286|27290|27291|33492|48922|50222|50223|50225|50226|133362|133363|133364|133365|133366|133367|133368|133369|133370|133371|133372|133372|133373|133374|133375|133376|133377|133378|133379|133380|133381|133382|133383|133384|133385|133386|133388|133389|133390|136440|136457|136468|136517|137584|137585|137586|137587|137588|137589|137590|137591|137592|137593|137594|139767|139768|139769|139770|139771|139772|139773|139774|139775|139776|139777|139778|139779|139780|139781|139782|140394|140395|140396|140397|140398|140399|140400|140401|140402|150470|150495|150498|150512|150517|150520|150554|150555|150567|150576|150585|150592|150609|150678|150682|150724|150728|150730|150874|150920|150975|150978|151002|151085|151090|151164|151198|151252|151284|151306|151353|151375|151387|151515|151516|151517|151519|151524|151542|151548|151568|151584|151634|151665|151698|151704|151725|151743|151754|151859|151999|152000|152008|152020|152035|152052|152071|152077|152149|152151|152169|152176|152183|152260|152279|152292|152306|152324|152346|152347|152374|152406|152484|152502|152516|152540|152553|152567|152602|152619|152638|152657|152658|152671|152682|152698|166156|166260|166261|166262|166263|166264|180760|180765|180766|180767|180768|180769|180770|180771|180772|180773|180774|180775|180776|180778|180779|180780|180783|180784|180785|180786|180788|180789|180790|184307|184309|184311|184313|184314|184316|184319|184320|184323|184325|184326|184327|184328|184329|184330|184331|184332|184333|184334|184335|184338|184339|184340|184342|184343|184345|184346|184347|184349|184350|184351|184352|184353|184355|184356|184359|184360|184361|184362|184363|184364|184365|184367|184368|184369|184370|184371|184372|184373|184374|184375|184376|184377|184378|184379|184382|184383|184384|184385|184386|184387|184388|184389|184390|184391|184392|184394|184395|184397|184399|184400|184402|184403|184404|184405|184406|184408|184409|184410|184411|184412|184416|184417|184418|184419|184420|184421|184422|184423|184425|184427|184428|184430|184432|184433|184435|184436|184437|184438|184439|184440|184441|184443|184444|184445|184446|184447|184449|184451|184453|184454|184455|184456|184457|184458|184459|184460|184464|184465|184466|184467|184468|184469|184470|184472|184474|184475|184476|184477|186209|186229|186230|186231|186232|213195|213196|213197|213198|213199|213200|213202|213203|213204|213205|213206|213207|213208|213209|213210|213211|213212|213213|213214|213215|222441|222491|222492|222493|222495|222496|222497|222498|222499|222500|222501|222502|222503|222504|222505|222506|222507|222508|222509|222510|222511|222512|222513|222514|222515|222516|222517|222518|222519|222520|222521|222522|222523|222524|222525|222526|222527|222529|222530|222531|225383|225386|225388|226361|226608|231958|231959|231962|231963|231965|231967|231968|231969|231970|231971|231972|231973|231973|231975|231976|231977|231980|231981|231982|231983|231984|231985|231986|235349|235350|235351|235352|235355|235356|235357|235360|235361|235364|235365|235368|235371|235372|235373|235374|235375|235378|235379|235380|235381|235383|235384|235385|235386|235387|235388|235389|235390|235391|235392|235393|235394|235395|235396|235397|235399|235400|235403|235404|235405|235407|235408|235410|235411|235412|235413|235415|235417|235419|235420|235421|235422|235424|235426|235427|235429|235431|235432|235434|235437|235438|235439|235440|235441|235444|235445|235446|235447|235448|235449|235450|235452|235455|235456|235458|235459|235460|235461|235463|235464|235465|235466|235467|235468|235469|235470|235471|235472|242187|242447|242448|242449|242450|242451|242453|242455|242456|242457|242458|242459|242460|242461|242462|242463|242465|242466|242467|242468|242469|242470|242471|242472|242473|242474|242475|242477|242478|242479|242480|242481|242482|242483|242484|242485|242486|242487|242488|242489|255855|255856|260122|260123|260124|264638|264640|264968|264974|326160|326162|326164|326166|326168|326171|326172|326174|326175|335828|335836|335837|335840|335843|335853|335854|342198|342199|342203|342205|342207|342220|343740|343741|343744|343748|343749|343750|343752|343753|343754|343755|343756|343757|343759|343762|343763|343767|343769|353351|353352|358912|358913|358914|358915|358916|358917|358918|374440|374449|374452|374457|374459|374488|374490|374495|374511|374522|375251|375286|375298|375311|375318|375322|375326|375523|375534|375544|377647|377662|377664|377667|377670|377701|377708|400655|401088|401204|401214|401219|401221|401239|401241|401244|401252|401254|401261|401262|401263|401265|401267|401269|401270|401271|401274|401276|401278|401284|401285|401287|401293|401296|401298|401300|401303|401307|401312|401315|401325|401327|401328|401334|401338|401339|401734|401737|401739|401743|401745|401750|401759|401760|401765|401768|401775|401776|401782|401788|401796|401797|401800|401803|401994|402003|402009|402012|402017|402019|402021|402026|402029|402030|402035|402036|402040|402045|402050|402059|402064|402072|402073|402076|402079|402083|402091|402093|402094|402097|402101|402104|402105|409664|409665|409667|409669|409670|409672|409674|409676|409677|409678|409679|409681|409686|409688|409689|409690|409691|409693|409694|409695|409696|409697|409699|409700|409703|409705|409706|409707|409708|409709|409710|409711|409712|409714|409715|409716|420589|420590|420591|420592|420593|420596|420597|420598|420599|420600|420602|420605|431550|432882|432884|432885|433405|439582|445599|445601|445602|445604|465424|465425|465430|465431|465435|465436|465688|465689|465826|465828|465837|465844|465855|465860|465862|465864|465867|465870|465871|465877|465883|465884|465886|465894|465903|465905|465908|465910|465915|465916|465917|465918|465920|466528|466529|466536|466539|466540|466546|466549|466551|466554|466555|466557|466558|466559|466561|466562|466564|466565|466566|466567|466568|466572|466574|466575|466577|466578|466579|466581|466582|466584|466586|466587|466589|466590|466594|466596|466597|466599|466604|466608|466610|466616|466619|466627|466636|466639|466644|466645|466650|466810|466817|466819|466826|466830|466834|466838|466839|466841|466855|466857|466858|466861|466863|466869|466875|466882|466883|466888|466898|466903|466908|466922|466923|466931|466932|466936|466938|466941|466945|466946|466952|466955|477732|477738|477752|477754|477759|477762|477763|477765|477768|477769|477773|477776|477778|477782|477784|477787|477790|477797|477802|477803|477804|477808|477817|477826|477827|477830|477832|477833|477834|477839|477841|477844|477849|477852|477853|477854|477859|477860|477861|477877|477880|477883|477884|477885|477887|477892|477899|477906|477931|477932|477933|477937|477938|477940|478326|478339|478342|478345|478352|478358|478360|478370|478375|478377|478389|478410|478418|478435|478437|478445|478456|478465|478479|478485|478487|478496|478498|478508|478527|481516|482919|482952|482960|484717|484853|484863|484869|484874|484876|484881|484884|484889|484892|484904|484919|484921|484929|484931|484934|484937|484943|485146|485152|485159|485170|485195|485666|485668|487892|488241|488242|488243|506405|529855|530112|530117|530120|530126|530131|530134|530137|530138|530141|530146|530150|530162|530168|530170|530171|530216|530220|530221|530225|530227|530230|530232|530234|530237|530238|530239|530424|530428|530431|530433|530440|530442|530445|530448|530459|530460|530461|530462|530471|530476|530483|530484|530486|530488|530646|530650|530654|530657|530677|530678|530679|530684|530691|530692|530694|530695|530697|530699|530703|530705|530713|536472|536473|536474|536475|539346|539347|539348|539349|551416|567522|567531|567532|568214|568216|568217|568226|568229|568231|568232|568234|568240|568241|568243|568245|568247|568251|568258|568262|568267|568270|569812|569814|570339|570340|570341|570348|570352|570355|570356|570357|570358|570360|570361|570363|570367|570369|570373|570375|570377|570379|570381|570382|570383|570394|570396|570398|570400|570402|570403|570417|570420|570425|570434|570438|570446|574102|574104|574106|574108|574109|574110|574111|574114|574116|574117|574119|574122|574123|574125|574127|574129|574131|575968|575969|575970|575971|575972|575973|575974|590987|590988|590989|590990|590991|590992|612022|612023|612024|618465|618470|618480|618484|618487|618494|618495|618501|618516|619499|621548|621549|644813|644814|644815|644816|644817|644818|644819|644820|644821|644822|644823|644824|644825|644826|644827|644828|644829|644830|644831|644832|644833|644834|644835|644836|644837|644838|644839|644840|644841|644842|644843|644844|644845|644846|644847|644848|644849|644850|644851|644852|644853|644854|644855|644856|644857|644858|644859|644860|644861|644862|644863|644864|644865|644866|644867|644868|644869|644870|644871|644872|644873|644874|644875|644876|644877|644878|644879|644880|644881|644882|644883|644884|644885|644886|644887|644888|644889|652475|652478|652634|652638|652639|652734|652736|652741|652747|652749|652863|652864|653051|653143|653284|653290|653302|653303|653305|656379|667559|688628|693911|755335|755337|755340|760342|760460|771011|771014|776199|785346|785350|785354|785356|785358|785359|785364|788062|791632|791633|791634|791635|791636|791637|791638|797363|806408|812862|812864|812866|812868|812869|812871|812873|812892|812901|812907|812915|812929|812940|812948|812950|812951|812958|812961|812962|812988|815638|820853|820854|820855|820856|820857|820859|820860|820861|820862|820863|820864|820865|820866|820867|844122|844123|844124|844125|844126|844127|844128|844129|844130|844131|844132|844133|844134|844135|844136|844137|844138|844139|844140|844141|844142|844143|844144|844145|844146|844147|844148|844149|844150|844151|844152|844153|844154|844155|844156|844157|844158|844159|844160|844161|844162|844163|844164|844165|844166|844167|844168|844169|844170|844171|844172|844173|844174|844175|844176|844177|844178|844179|844180|844181|844182|844183|844184|844185|844186|844187|844188|844189|844190|844191|844192|844193|851671|851673|852845|875834|875835|875836|875837|875838|875839|875840|875841|875842|875843|913728|913773|913779|913782|913784|913785|913792|916711|917218|927887|927888|927889|927890|927891|927892|927893|927894|927895|927896|927897|927898|927899|927900|927901|927902|927903|927904|927905|927906|927907|927908|937545|937546|937547|937548|937549|937550|937551|937552|937553|937554|937555|937556|937557|937558|937559|937560|937561|937562|937563|937564|937565|937566|937567|937568|940366|940367|940381|940382|941143|941144|949488|949489|949490|949491|949492|949493|949494|949495|949496|949497|949498|949499|949500|949501|949502|949503|949504|949505|949506|949507|949508|949509|949510|949511|949512|949513|949514|949515|949516|949517|957838|957839|957840|957841|957842|957843|957844|957845|957846|957847|957848|957849|960172|960173|960174|961662|969308", "text": "Hereditary diffuse gastric cancer" }, { - "baseId": "27273|27289|231973", + "upstreamId": "27273|27289|231973", "text": "Breast cancer, lobular" }, { - "baseId": "27287|166264", + "upstreamId": "27287|166264", "text": "Gastric cancer, familial diffuse, and cleft lip with or without cleft palate" }, { - "baseId": "27293|27294|27295|27296|27297|27298|27299|27300|27301|27302|27303|48017|75598|100029|193523|195653|247416|275222|384414|431549|434935|439514|481500|553578|553592|791530|906184|962741|980352|980353|984043|984044", + "upstreamId": "27293|27294|27295|27296|27297|27298|27299|27300|27301|27302|27303|48017|75598|100029|193523|195653|247416|275222|384414|431549|434935|439514|481500|553578|553592|791530|906184|962741|980352|980353|984043|984044", "text": "Familial juvenile gout" }, { - "baseId": "27304|29054", + "upstreamId": "27304|29054", "text": "Alzheimer disease, late-onset, susceptibility to" }, { - "baseId": "27305|27306|27307|27308|27310|27311|27312|27314|27315|27316|27317|27318|27320|27322|168046|206952|206952|260860|271236|489783", + "upstreamId": "27305|27306|27307|27308|27310|27311|27312|27314|27315|27316|27317|27318|27320|27322|168046|206952|206952|260860|271236|489783", "text": "Crigler-Najjar syndrome type 1" }, { - "baseId": "27308|27313|27314|27314|27319|27320|27320|27325|27327|27328|40587|168042|168046|168047|168048|168053|194308|206952|206952|254471|271236|273839|274119|274667|285391|286034|288354|288356|288357|288358|288359|288775|288783|489783|491568|583212|585621|586242|587512|588639|733280|798981|798982|798983|798984|884201|884202|884203|884204|884205|884206|884207|884208|884209|884210|884211|884212|884213|884214|884215|884216|884217", + "upstreamId": "27308|27313|27314|27314|27319|27320|27320|27325|27327|27328|40587|168042|168046|168047|168048|168053|194308|206952|206952|254471|271236|273839|274119|274667|285391|286034|288354|288356|288357|288358|288359|288775|288783|489783|491568|583212|585621|586242|587512|588639|733280|798981|798982|798983|798984|884201|884202|884203|884204|884205|884206|884207|884208|884209|884210|884211|884212|884213|884214|884215|884216|884217", "text": "Gilbert's syndrome" }, { - "baseId": "27309|27313|27314|27314|27319|27320|27320|27323|27324|27325|27326|206952|271236|489463|489783", + "upstreamId": "27309|27313|27314|27314|27319|27320|27320|27323|27324|27325|27326|206952|271236|489463|489783", "text": "Crigler-Najjar syndrome, type II" }, { - "baseId": "27314|27314|27319|27320|27320|27321|168042|168046|168047|168048|168053|194308|206952|271236|273839|274119|274667|285391|286034|288354|288356|288357|288358|288359|288775|288783|489783|491568|585621|586242|587512|588639|733280|884201|884202|884203|884204|884205|884206|884207|884208|884209|884210|884211|884212|884213|884214|884215|884216|884217", + "upstreamId": "27314|27314|27319|27320|27320|27321|168042|168046|168047|168048|168053|194308|206952|271236|273839|274119|274667|285391|286034|288354|288356|288357|288358|288359|288775|288783|489783|491568|585621|586242|587512|588639|733280|884201|884202|884203|884204|884205|884206|884207|884208|884209|884210|884211|884212|884213|884214|884215|884216|884217", "text": "Lucey-Driscoll syndrome" }, { - "baseId": "27314|27314|27319|27320|27328|206952|271236|489783", + "upstreamId": "27314|27314|27319|27320|27328|206952|271236|489783", "text": "Bilirubin, serum level of, quantitative trait locus 1" }, { - "baseId": "27314|27319|540561|540562|540563", + "upstreamId": "27314|27319|540561|540562|540563", "text": "Irinotecan response" }, { - "baseId": "27319", + "upstreamId": "27319", "text": "irinotecan response - Other" }, { - "baseId": "27319|227745|227835", + "upstreamId": "27319|227745|227835", "text": "SN-38 response - Other" }, { - "baseId": "27325|620072", + "upstreamId": "27325|620072", "text": "UGT1A1-Related Disorders" }, { - "baseId": "27327", + "upstreamId": "27327", "text": "Gilbert syndrome, susceptibility to" }, { - "baseId": "27329|27330|27331|27332|45554|45555|45556|315876|315877|315878|323016|323018|323023|323024|323026|323034|323036|323043|323044|329045|329053|329054|329058|329059|329061|329083|329092|329094|329096|329107|329111|330261|330262|330263|330267|330272|330276|330283|330291|330299|434025|461582|461584|462161|526630|526638|565032|571181|571184|640589|640590|640591|640592|640593|652201|652258|713314|724868|753070|768873|768874|820441|839253|869166|869167|869168|869169|869170|869171|869172|869173|869174|869175|869176|869177|869178|869179|872185|926451|926452|926453|926454|926455|947771|947772|947773|947774|956739|960020", + "upstreamId": "27329|27330|27331|27332|45554|45555|45556|315876|315877|315878|323016|323018|323023|323024|323026|323034|323036|323043|323044|329045|329053|329054|329058|329059|329061|329083|329092|329094|329096|329107|329111|330261|330262|330263|330267|330272|330276|330283|330291|330299|434025|461582|461584|462161|526630|526638|565032|571181|571184|640589|640590|640591|640592|640593|652201|652258|713314|724868|753070|768873|768874|820441|839253|869166|869167|869168|869169|869170|869171|869172|869173|869174|869175|869176|869177|869178|869179|872185|926451|926452|926453|926454|926455|947771|947772|947773|947774|956739|960020", "text": "Hyper-IgM syndrome type 5" }, { - "baseId": "27335|27335|45580|48372|48373|76381|76382|76382|76383|99631|99633|177396|177396|214748|312567|312568|312571|312573|312573|312574|318549|318551|324674|324675|324687|324691|324691|324708|324709|324717|324717|325434|325442|353169|371272|371272|372014|372014|372221|372225|373916|373916|460915|461727|461729|504107|511902|525958|525958|526018|526021|526436|538419|565535|567071|570370|570371|622399|639793|639794|639795|639796|639797|639798|639799|652499|652510|692941|692943|701604|737801|737801|737802|744485|768251|788847|791114|791115|798638|820431|838059|838059|838060|838061|838062|838063|838064|838065|851822|867129|867130|867131|867132|867133|867134|926145|935411|935412|935413|935414|940205|947340|956418", + "upstreamId": "27335|27335|45580|48372|48373|76381|76382|76382|76383|99631|99633|177396|177396|214748|312567|312568|312571|312573|312573|312574|318549|318551|324674|324675|324687|324691|324691|324708|324709|324717|324717|325434|325442|353169|371272|371272|372014|372014|372221|372225|373916|373916|460915|461727|461729|504107|511902|525958|525958|526018|526021|526436|538419|565535|567071|570370|570371|622399|639793|639794|639795|639796|639797|639798|639799|652499|652510|692941|692943|701604|737801|737801|737802|744485|768251|788847|791114|791115|798638|820431|838059|838059|838060|838061|838062|838063|838064|838065|851822|867129|867130|867131|867132|867133|867134|926145|935411|935412|935413|935414|940205|947340|956418", "text": "DPAGT1-CDG" }, { - "baseId": "27335|45579|45580|45580|45581|45582|45583|76382|177396|312573|324691|324717|371272|372014|372221|372225|373916|460915|461727|461729|504107|511902|525958|526018|526021|526436|538419|565535|567071|570370|570371|622399|639793|639794|639795|639796|639797|639798|639799|652499|652510|692941|692943|701604|737801|737802|744485|768251|820431|838059|838060|838061|838062|838063|838064|838065|851822|926145|935411|935412|935413|935414|940205|947340|956418", + "upstreamId": "27335|45579|45580|45580|45581|45582|45583|76382|177396|312573|324691|324717|371272|372014|372221|372225|373916|460915|461727|461729|504107|511902|525958|526018|526021|526436|538419|565535|567071|570370|570371|622399|639793|639794|639795|639796|639797|639798|639799|652499|652510|692941|692943|701604|737801|737802|744485|768251|820431|838059|838060|838061|838062|838063|838064|838065|851822|926145|935411|935412|935413|935414|940205|947340|956418", "text": "Congenital myasthenic syndrome 13" }, { - "baseId": "27336|27337|246966|293414|293418|294806|294808|294817|298441|298445|298446|298447|298451|298505|298506|298512|298513|362490|698518|744105|890654|890655|890656|890657|890658|890659|890660|890661|890662|890663|890664|891793|891794", + "upstreamId": "27336|27337|246966|293414|293418|294806|294808|294817|298441|298445|298446|298447|298451|298505|298506|298512|298513|362490|698518|744105|890654|890655|890656|890657|890658|890659|890660|890661|890662|890663|890664|891793|891794", "text": "Parkinson disease 5" }, { - "baseId": "27340|27341|27342|27343|27344|27345|27347|27348|27349|27350|27351|34157|34158|34159|34160|38397|38875|76399|142267|142269|171278|171279|188794|190294|191639|195272|205720|205721|231444|231445|237215|244241|244242|244243|244244|244246|244247|273732|276636|276637|276638|276640|276641|276643|276644|276646|276648|276902|276904|276910|276911|276916|276917|276919|276920|276921|276922|277483|277484|277501|277508|277513|277516|277517|277580|277581|277582|277584|277585|277599|364457|364459|364512|364518|364521|364531|364555|364603|364611|364613|404958|442643|442643|442644|447164|447165|447167|447171|447172|447241|447242|447246|447267|447271|447272|447320|447328|447333|447334|447334|447340|447347|498079|498148|498156|498161|515127|515132|515134|515140|515141|515142|515146|515147|515151|515154|515155|515156|515158|515168|515173|515175|515179|515180|515185|515186|515188|515192|515194|515286|515289|515292|515296|515297|515301|540663|540665|540666|540669|540680|556626|556628|556630|556632|556634|556636|556640|556685|556687|556689|556691|556693|556695|556697|556971|556973|556975|556977|556979|556981|558150|558152|558154|558156|558158|558160|558162|558164|575640|575643|575644|575645|575647|575648|575649|575650|575652|575653|611494|624974|624990|625727|625730|626932|626933|626934|626935|626936|626937|626938|626939|626940|626941|626942|626943|626944|626945|626946|626947|626948|626949|626950|626951|626952|626953|626954|626955|626956|626957|626958|626959|626960|626961|626962|626963|626964|626965|626966|650638|683291|690379|690380|690381|690382|690383|690384|690385|690386|690387|690388|690389|690390|695008|695009|696163|696164|696165|696166|696167|696168|706742|718284|731782|743691|743695|745751|745753|745755|745756|758809|758873|761261|761262|761265|761266|761267|761268|761270|761274|774396|780350|780355|789857|789858|789859|789860|789861|798913|799129|822830|822831|822832|822833|822834|822835|822836|822837|822838|822839|822840|822841|822842|822843|822844|822845|822846|822847|822848|822849|822850|822851|822852|822853|822854|822855|822856|822857|822858|822859|822860|850707|850731|862438|862439|862440|862441|862442|862443|862444|862445|862446|862447|862448|862449|862450|862451|864997|864998|864999|865000|865001|865002|865003|918569|921676|921677|921678|921679|921680|921681|921682|930078|930079|930080|930081|930082|930083|930084|930085|930086|930087|930088|939773|940601|940602|941511|941512|941513|952096|952097|952098|952099|952100|952101|952102|952103|952104|952105|952106|952107|952108|952109|952110|952111|966784|977450|977451|977452|977453|977454|977455|977456|977457|977458|977459|977460|977461|977462|977463|977464|977465|977466", + "upstreamId": "27340|27341|27342|27343|27344|27345|27347|27348|27349|27350|27351|34157|34158|34159|34160|38397|38875|76399|142267|142269|171278|171279|188794|190294|191639|195272|205720|205721|231444|231445|237215|244241|244242|244243|244244|244246|244247|273732|276636|276637|276638|276640|276641|276643|276644|276646|276648|276902|276904|276910|276911|276916|276917|276919|276920|276921|276922|277483|277484|277501|277508|277513|277516|277517|277580|277581|277582|277584|277585|277599|364457|364459|364512|364518|364521|364531|364555|364603|364611|364613|404958|442643|442643|442644|447164|447165|447167|447171|447172|447241|447242|447246|447267|447271|447272|447320|447328|447333|447334|447334|447340|447347|498079|498148|498156|498161|515127|515132|515134|515140|515141|515142|515146|515147|515151|515154|515155|515156|515158|515168|515173|515175|515179|515180|515185|515186|515188|515192|515194|515286|515289|515292|515296|515297|515301|540663|540665|540666|540669|540680|556626|556628|556630|556632|556634|556636|556640|556685|556687|556689|556691|556693|556695|556697|556971|556973|556975|556977|556979|556981|558150|558152|558154|558156|558158|558160|558162|558164|575640|575643|575644|575645|575647|575648|575649|575650|575652|575653|611494|624974|624990|625727|625730|626932|626933|626934|626935|626936|626937|626938|626939|626940|626941|626942|626943|626944|626945|626946|626947|626948|626949|626950|626951|626952|626953|626954|626955|626956|626957|626958|626959|626960|626961|626962|626963|626964|626965|626966|650638|683291|690379|690380|690381|690382|690383|690384|690385|690386|690387|690388|690389|690390|695008|695009|696163|696164|696165|696166|696167|696168|706742|718284|731782|743691|743695|745751|745753|745755|745756|758809|758873|761261|761262|761265|761266|761267|761268|761270|761274|774396|780350|780355|789857|789858|789859|789860|789861|798913|799129|822830|822831|822832|822833|822834|822835|822836|822837|822838|822839|822840|822841|822842|822843|822844|822845|822846|822847|822848|822849|822850|822851|822852|822853|822854|822855|822856|822857|822858|822859|822860|850707|850731|862438|862439|862440|862441|862442|862443|862444|862445|862446|862447|862448|862449|862450|862451|864997|864998|864999|865000|865001|865002|865003|918569|921676|921677|921678|921679|921680|921681|921682|930078|930079|930080|930081|930082|930083|930084|930085|930086|930087|930088|939773|940601|940602|941511|941512|941513|952096|952097|952098|952099|952100|952101|952102|952103|952104|952105|952106|952107|952108|952109|952110|952111|966784|977450|977451|977452|977453|977454|977455|977456|977457|977458|977459|977460|977461|977462|977463|977464|977465|977466", "text": "Hereditary insensitivity to pain with anhidrosis" }, { - "baseId": "27347|28950|28953|28968|28970|28972|28972|28974|28975|28977|28980|28982|28983|28985|28985|28989|28990|36273|36309|38397|47216|231445|244246|244247|276643|276910|277501|442643|447167|447334|575639|575640|575641|575642|575644|575645|575646|575647|575648|575649|575650|575651|575652|575653|575653|966784", + "upstreamId": "27347|28950|28953|28968|28970|28972|28972|28974|28975|28977|28980|28982|28983|28985|28985|28989|28990|36273|36309|38397|47216|231445|244246|244247|276643|276910|277501|442643|447167|447334|575639|575640|575641|575642|575644|575645|575646|575647|575648|575649|575650|575651|575652|575653|575653|966784", "text": "Familial medullary thyroid carcinoma" }, { - "baseId": "27352|27353|27354|27355|75297|194943|195999|249490|249491|249492|249496|277049|277050|277053|277303|277304|277308|278038|278049|278065|278068|278078|278080|278117|278119|278131|278132|493083|578368|578369|619960|619961|619962|718343|731830|743675|799144|862640|862641|862642|862643|862644|862645|862646|862647|862648|862649|862650|862651|862652|862653|862654|862655|862656|865022|865023|865024|865025|904209", + "upstreamId": "27352|27353|27354|27355|75297|194943|195999|249490|249491|249492|249496|277049|277050|277053|277303|277304|277308|278038|278049|278065|278068|278078|278080|278117|278119|278131|278132|493083|578368|578369|619960|619961|619962|718343|731830|743675|799144|862640|862641|862642|862643|862644|862645|862646|862647|862648|862649|862650|862651|862652|862653|862654|862655|862656|865022|865023|865024|865025|904209", "text": "Spondyloepimetaphyseal dysplasia-short limb-abnormal calcification syndrome" }, { - "baseId": "27358|27359|27360|27361|27362|133974|133975|133976|133977|133978|207496|253009|253010|253011|253017|303953|303997|304004|304006|304008|304026|304028|304030|304039|307501|307512|307514|307589|307591|307596|307598|307634|307635|307636|312558|312599|312601|312634|312642|312649|312666|312669|312671|312713|312714|312715|312725|312758|312762|312774|312775|312777|312780|540010|610600|610604|610608|730531|898749|898750|898751|898752|898753|898754|898755|898756|898757|898758|898759|898760|898761|898762|898763|898764|898765|898766|898767|898768|898769|898770|898771|898772|898773|900430|900431|900432|900433|900434", + "upstreamId": "27358|27359|27360|27361|27362|133974|133975|133976|133977|133978|207496|253009|253010|253011|253017|303953|303997|304004|304006|304008|304026|304028|304030|304039|307501|307512|307514|307589|307591|307596|307598|307634|307635|307636|312558|312599|312601|312634|312642|312649|312666|312669|312671|312713|312714|312715|312725|312758|312762|312774|312775|312777|312780|540010|610600|610604|610608|730531|898749|898750|898751|898752|898753|898754|898755|898756|898757|898758|898759|898760|898761|898762|898763|898764|898765|898766|898767|898768|898769|898770|898771|898772|898773|900430|900431|900432|900433|900434", "text": "Maturity-onset diabetes of the young, type 11" }, { - "baseId": "27374|27375|27376|27377|27378|27379|27380|27381|27382|27383|27384|27385|45724|103313|103314|103315|103316|103534|103535|103536|103537|103538|103539|103540|103541|103542|103543|103544|103545|103546|103547|103548|103549|103550|103551|103552|103553|103554|103555|103556|103557|103558|103559|103560|103561|103562|103563|103564|103565|103566|103567|103568|103569|103570|103571|103572|103573|103574|103575|103576|103577|103578|103579|103580|103581|103582|103583|103584|103585|103586|103587|103588|103589|103590|103591|103592|103593|103594|103595|103596|103597|103598|103599|103600|103601|103602|103603|103604|141383|141384|213624|213624|231847|231850|231851|231853|244834|244835|244836|254704|254705|318219|318226|318234|318235|318242|318243|326226|332465|332481|332496|332498|332500|334096|334100|334104|334105|334106|334108|334117|373236|375407|445071|462419|514272|527315|527632|527859|527863|537182|565674|565676|566999|567000|568162|571974|641347|641348|641349|641350|641351|652498|690049|695581|713691|725222|738810|753540|769258|769260|769261|784453|799723|799725|840190|840191|840192|840193|840194|840195|840196|840197|840198|840199|840200|840201|870260|870261|870262|870263|870264|870265|870266|870267|870268|870269|870270|872281|926709|926710|926711|926712|936225|936226|936227|936228|948133|960790", + "upstreamId": "27374|27375|27376|27377|27378|27379|27380|27381|27382|27383|27384|27385|45724|103313|103314|103315|103316|103534|103535|103536|103537|103538|103539|103540|103541|103542|103543|103544|103545|103546|103547|103548|103549|103550|103551|103552|103553|103554|103555|103556|103557|103558|103559|103560|103561|103562|103563|103564|103565|103566|103567|103568|103569|103570|103571|103572|103573|103574|103575|103576|103577|103578|103579|103580|103581|103582|103583|103584|103585|103586|103587|103588|103589|103590|103591|103592|103593|103594|103595|103596|103597|103598|103599|103600|103601|103602|103603|103604|141383|141384|213624|213624|231847|231850|231851|231853|244834|244835|244836|254704|254705|318219|318226|318234|318235|318242|318243|326226|332465|332481|332496|332498|332500|334096|334100|334104|334105|334106|334108|334117|373236|375407|445071|462419|514272|527315|527632|527859|527863|537182|565674|565676|566999|567000|568162|571974|641347|641348|641349|641350|641351|652498|690049|695581|713691|725222|738810|753540|769258|769260|769261|784453|799723|799725|840190|840191|840192|840193|840194|840195|840196|840197|840198|840199|840200|840201|870260|870261|870262|870263|870264|870265|870266|870267|870268|870269|870270|872281|926709|926710|926711|926712|936225|936226|936227|936228|948133|960790", "text": "TNF receptor-associated periodic fever syndrome (TRAPS)" }, { - "baseId": "27386|27387|27388|27389|27390|27394|27395|27396|27397|27400|27403|27404|27405|27412|27413|27414|27415|27416|27417|27418|27420|27421|27422|44228|50162|52757|52759|52760|52763|91599|99232|133261|133262|133263|133265|133267|133272|133273|133275|133278|133280|133281|133282|133283|133284|136456|136502|136721|139098|139100|139660|150500|150547|150657|150725|150816|151073|151197|151311|151677|151717|151987|152034|152038|152371|152480|152560|152568|152577|152630|166280|166281|166282|171191|171616|180989|180990|180991|180992|180993|180996|181004|181005|181014|181024|181026|181027|181029|185331|185334|185352|185374|185389|185394|185398|185400|185402|185403|185409|185412|185424|185426|213405|222734|222739|222744|236438|236444|236504|242978|242984|242987|242994|245067|245069|245072|330238|330239|330253|340457|340458|340461|340463|340465|340467|346157|346170|346177|346183|347481|347484|358960|358961|358962|358963|358964|358965|358966|358967|358968|363458|363505|363540|363563|363565|378811|402529|402994|403047|410276|410285|410927|432338|479321|480490|485143|485305|485507|531807|539380|539381|539382|622038|646787|878640|878641|878642|878643|878644|878645|878646|878647|878648|878649|914180|962183|964494", + "upstreamId": "27386|27387|27388|27389|27390|27394|27395|27396|27397|27400|27403|27404|27405|27412|27413|27414|27415|27416|27417|27418|27420|27421|27422|44228|50162|52757|52759|52760|52763|91599|99232|133261|133262|133263|133265|133267|133272|133273|133275|133278|133280|133281|133282|133283|133284|136456|136502|136721|139098|139100|139660|150500|150547|150657|150725|150816|151073|151197|151311|151677|151717|151987|152034|152038|152371|152480|152560|152568|152577|152630|166280|166281|166282|171191|171616|180989|180990|180991|180992|180993|180996|181004|181005|181014|181024|181026|181027|181029|185331|185334|185352|185374|185389|185394|185398|185400|185402|185403|185409|185412|185424|185426|213405|222734|222739|222744|236438|236444|236504|242978|242984|242987|242994|245067|245069|245072|330238|330239|330253|340457|340458|340461|340463|340465|340467|346157|346170|346177|346183|347481|347484|358960|358961|358962|358963|358964|358965|358966|358967|358968|363458|363505|363540|363563|363565|378811|402529|402994|403047|410276|410285|410927|432338|479321|480490|485143|485305|485507|531807|539380|539381|539382|622038|646787|878640|878641|878642|878643|878644|878645|878646|878647|878648|878649|914180|962183|964494", "text": "Li-Fraumeni syndrome 1" }, { - "baseId": "27386|27393|27395|27405|27645|28939|29003|29005|29011|44227|45735|49881|53980|53985|54284|80852|83949|150855|171614|175540|179419|180995|181000|185366|185367|213392|213398|236461|236463|236468|236469|236481|242980|245074|263939|359197|362753|362826|362887|362912|363083|363092|363093|363094|363165|363201|363293|363294|363295|363296|363297|363302|363303|363304|363305|363322|363323|363390|363409|363410|363411|363412|363413|363414|363415|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363464|363465|363466|363467|363468|363484|363491|363492|363493|363494|363495|363496|363497|363498|363499|363500|363501|363502|363509|363510|363511|363528|363531|363534|363535|363574|363575|363576", + "upstreamId": "27386|27393|27395|27405|27645|28939|29003|29005|29011|44227|45735|49881|53980|53985|54284|80852|83949|150855|171614|175540|179419|180995|181000|185366|185367|213392|213398|236461|236463|236468|236469|236481|242980|245074|263939|359197|362753|362826|362887|362912|363083|363092|363093|363094|363165|363201|363293|363294|363295|363296|363297|363302|363303|363304|363305|363322|363323|363390|363409|363410|363411|363412|363413|363414|363415|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363464|363465|363466|363467|363468|363484|363491|363492|363493|363494|363495|363496|363497|363498|363499|363500|363501|363502|363509|363510|363511|363528|363531|363534|363535|363574|363575|363576", "text": "Chronic lymphocytic leukemia" }, { - "baseId": "27386|27388|27394|27395|27398|27404|27405|28691|28692|28694|28695|28698|29000|38549|48304|133271|152428|166215|176503|181001|185366|185367|185375|185394|213402|213526|213943|226759|232035|236461|236469|236481|242980|245074|260191|362768|362770|362771|362772|362775|362865|362866|362895|362896|362928|363089|363242|363243|363278|363279|363308|363309|363313|363314|363315|363316|363317|363318|363355|363356|363360|363482|363483|363491|363492|363493|363515|363528|363531|363534|363535|363542|363543|363544|363545|363546|363547|363548|363558|363559", + "upstreamId": "27386|27388|27394|27395|27398|27404|27405|28691|28692|28694|28695|28698|29000|38549|48304|133271|152428|166215|176503|181001|185366|185367|185375|185394|213402|213526|213943|226759|232035|236461|236469|236481|242980|245074|260191|362768|362770|362771|362772|362775|362865|362866|362895|362896|362928|363089|363242|363243|363278|363279|363308|363309|363313|363314|363315|363316|363317|363318|363355|363356|363360|363482|363483|363491|363492|363493|363515|363528|363531|363534|363535|363542|363543|363544|363545|363546|363547|363548|363558|363559", "text": "Brainstem glioma" }, { - "baseId": "27386|27388|27394|27395|27397|27398|27403|27404|27405|27407|27408|27409|27422|27641|27642|27652|28691|28692|28694|28695|28698|28939|48304|70450|80852|83949|133271|133272|133274|133276|133277|139098|150535|150855|151476|151595|151897|151955|152428|171613|171614|174177|176503|180995|181000|181001|181005|185345|185350|185366|185367|185371|185375|185384|185394|213392|213398|213402|213943|222738|232035|236459|236461|236462|236463|236469|236471|236477|236479|236481|242978|242980|245074|260191|260192|263939|359197|360335|362753|362775|362894|362895|362896|363067|363068|363247|363248|363249|363250|363251|363255|363293|363294|363295|363296|363297|363302|363303|363304|363305|363360|363384|363385|363386|363438|363439|363440|363441|363442|363448|363449|363450|363451|363452|363453|363454|363455|363456|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363473|363474|363475|363476|363477|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363494|363495|363496|363497|363498|363499|363503|363504|363505|363506|363507|363508|363512|363513|363514|363515|363516|363517|363518|363519|363520|363521|363522|363523|363524|363525|363526|363527|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363538|363539|363540|363541|363542|363543|363544|363545|363546|363547|363548|363549|363550|363551|363552|363553|363554|363555|363556|363557|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|363572|363573", + "upstreamId": "27386|27388|27394|27395|27397|27398|27403|27404|27405|27407|27408|27409|27422|27641|27642|27652|28691|28692|28694|28695|28698|28939|48304|70450|80852|83949|133271|133272|133274|133276|133277|139098|150535|150855|151476|151595|151897|151955|152428|171613|171614|174177|176503|180995|181000|181001|181005|185345|185350|185366|185367|185371|185375|185384|185394|213392|213398|213402|213943|222738|232035|236459|236461|236462|236463|236469|236471|236477|236479|236481|242978|242980|245074|260191|260192|263939|359197|360335|362753|362775|362894|362895|362896|363067|363068|363247|363248|363249|363250|363251|363255|363293|363294|363295|363296|363297|363302|363303|363304|363305|363360|363384|363385|363386|363438|363439|363440|363441|363442|363448|363449|363450|363451|363452|363453|363454|363455|363456|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363473|363474|363475|363476|363477|363478|363479|363480|363481|363482|363483|363484|363485|363486|363487|363488|363489|363490|363491|363492|363493|363494|363495|363496|363497|363498|363499|363503|363504|363505|363506|363507|363508|363512|363513|363514|363515|363516|363517|363518|363519|363520|363521|363522|363523|363524|363525|363526|363527|363528|363529|363530|363531|363532|363533|363534|363535|363536|363537|363538|363539|363540|363541|363542|363543|363544|363545|363546|363547|363548|363549|363550|363551|363552|363553|363554|363555|363556|363557|363558|363559|363560|363561|363562|363563|363564|363565|363566|363567|363568|363569|363570|363571|363572|363573", "text": "Ovarian Serous Cystadenocarcinoma" }, { - "baseId": "27386|27388|27393|27394|27395|27397|27398|27403|27404|27405|27407|27408|27409|27422|27641|27642|27645|27652|28691|28692|28693|28694|28695|28696|28698|28916|28938|28939|28940|29009|29010|29011|29013|29022|31371|31378|31381|32616|32617|32618|32620|32622|32625|32627|32628|40609|44227|48304|48857|49213|49214|53970|53980|54284|54633|80852|83949|100947|133274|133276|133277|139098|150535|150855|151476|166215|166569|171613|171614|173901|176503|179419|180995|181000|185345|185350|185366|185367|185371|185384|185394|213392|213402|213943|222738|226760|236461|236462|236463|236469|236477|236481|242978|242980|245074|260191|263939|359197|362753|362755|362768|362770|362771|362772|362773|362774|362775|362777|362778|362822|362826|362860|362870|362871|362904|362905|362912|362914|362928|362933|363010|363067|363068|363107|363108|363109|363110|363113|363114|363121|363123|363186|363197|363201|363202|363222|363223|363253|363254|363258|363259|363260|363264|363265|363266|363267|363270|363271|363272|363280|363281|363282|363283|363286|363287|363288|363289|363290|363298|363299|363300|363301|363302|363303|363304|363305|363306|363307|363323|363329|363340|363341|363342|363343|363344|363345|363346|363347|363349|363350|363351|363352|363353|363354|363355|363356|363358|363359|363360|363364|363365|363366|363370|363389|363394|363395|363405|363406|363407|363408|363413|363414|363415|363438|363439|363440|363441|363442|363448|363449|363450|363451|363452|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363482|363483|363484|363491|363492|363493|363494|363495|363503|363504|363505|363506|363507|363508|363512|363513|363514|363518|363519|363520|363526|363527|363528|363529|363530|363531|363534|363535|363536|363537|363538|363542|363543|363544|363545|363546|363552|363566|363567|363568|363569|363570|363571", + "upstreamId": "27386|27388|27393|27394|27395|27397|27398|27403|27404|27405|27407|27408|27409|27422|27641|27642|27645|27652|28691|28692|28693|28694|28695|28696|28698|28916|28938|28939|28940|29009|29010|29011|29013|29022|31371|31378|31381|32616|32617|32618|32620|32622|32625|32627|32628|40609|44227|48304|48857|49213|49214|53970|53980|54284|54633|80852|83949|100947|133274|133276|133277|139098|150535|150855|151476|166215|166569|171613|171614|173901|176503|179419|180995|181000|185345|185350|185366|185367|185371|185384|185394|213392|213402|213943|222738|226760|236461|236462|236463|236469|236477|236481|242978|242980|245074|260191|263939|359197|362753|362755|362768|362770|362771|362772|362773|362774|362775|362777|362778|362822|362826|362860|362870|362871|362904|362905|362912|362914|362928|362933|363010|363067|363068|363107|363108|363109|363110|363113|363114|363121|363123|363186|363197|363201|363202|363222|363223|363253|363254|363258|363259|363260|363264|363265|363266|363267|363270|363271|363272|363280|363281|363282|363283|363286|363287|363288|363289|363290|363298|363299|363300|363301|363302|363303|363304|363305|363306|363307|363323|363329|363340|363341|363342|363343|363344|363345|363346|363347|363349|363350|363351|363352|363353|363354|363355|363356|363358|363359|363360|363364|363365|363366|363370|363389|363394|363395|363405|363406|363407|363408|363413|363414|363415|363438|363439|363440|363441|363442|363448|363449|363450|363451|363452|363453|363454|363455|363456|363457|363458|363459|363460|363461|363462|363463|363464|363465|363466|363467|363468|363469|363470|363471|363472|363482|363483|363484|363491|363492|363493|363494|363495|363503|363504|363505|363506|363507|363508|363512|363513|363514|363518|363519|363520|363526|363527|363528|363529|363530|363531|363534|363535|363536|363537|363538|363542|363543|363544|363545|363546|363552|363566|363567|363568|363569|363570|363571", "text": "Transitional cell carcinoma of the bladder" }, { - "baseId": "27386|27395|27397|27398|27403|27407|27641|27642|27645|27652|29009|29010|29013|44227|53970|87211|88528|133272|139098|150535|150855|151595|151897|151955|171613|171614|176503|179419|180995|181005|185345|185350|185394|213402|233761|236459|236462|236463|236469|236477|236479|242978|242980|362894|362912|363067|363068|363186|363197|363202|363241|363252|363258|363259|363260|363261|363262|363263|363268|363320|363391|363392|363464|363465|363466|363467|363468|363469|363470|363471|363472|363473|363474|363475|363476|363477|363484|363485|363486|363487|363488|363489|363490|363521|363522|363523|363524|363525|363529|363530|363531|363532|363533|363536|363537|363538|363542|363543|363544|363545|363546|363549|363550|363551|363552|363572|363573", + "upstreamId": "27386|27395|27397|27398|27403|27407|27641|27642|27645|27652|29009|29010|29013|44227|53970|87211|88528|133272|139098|150535|150855|151595|151897|151955|171613|171614|176503|179419|180995|181005|185345|185350|185394|213402|233761|236459|236462|236463|236469|236477|236479|242978|242980|362894|362912|363067|363068|363186|363197|363202|363241|363252|363258|363259|363260|363261|363262|363263|363268|363320|363391|363392|363464|363465|363466|363467|363468|363469|363470|363471|363472|363473|363474|363475|363476|363477|363484|363485|363486|363487|363488|363489|363490|363521|363522|363523|363524|363525|363529|363530|363531|363532|363533|363536|363537|363538|363542|363543|363544|363545|363546|363549|363550|363551|363552|363572|363573", "text": "Squamous cell carcinoma of the skin" }, { - "baseId": "27386|27423|432401|432410|432411", + "upstreamId": "27386|27423|432401|432410|432411", "text": "Choroid plexus carcinoma" }, { - "baseId": "27390", + "upstreamId": "27390", "text": "CODON 72 POLYMORPHISM" }, { - "baseId": "27390", + "upstreamId": "27390", "text": "paclitaxel response - Efficacy, Toxicity/ADR" }, { - "baseId": "27390", + "upstreamId": "27390", "text": "cyclophosphamide response - Efficacy, Toxicity/ADR" }, { - "baseId": "27390", + "upstreamId": "27390", "text": "antineoplastic agents response - Efficacy, Toxicity/ADR" }, { - "baseId": "27390", + "upstreamId": "27390", "text": "fluorouracil response - Efficacy, Toxicity/ADR" }, { - "baseId": "27390|227808", + "upstreamId": "27390|227808", "text": "cisplatin response - Efficacy, Toxicity/ADR" }, { - "baseId": "27391|31371|31378|920202", + "upstreamId": "27391|31371|31378|920202", "text": "Carcinoma of cervix" }, { - "baseId": "27393|27402|27403|27404|27411|181025", + "upstreamId": "27393|27402|27403|27404|27411|181025", "text": "Li-Fraumeni-like syndrome" }, { - "baseId": "27395|28694|96094|136706|136707|136708|136715|136717|136719|136720|136722|136723|137021|137022|137023|151642|550724", + "upstreamId": "27395|28694|96094|136706|136707|136708|136715|136717|136719|136720|136722|136723|137021|137022|137023|151642|550724", "text": "Sarcoma" }, { - "baseId": "27395|28372|45735|87659|87660|96841|363096|363097|363098|626059|626060|626061|626062|626063", + "upstreamId": "27395|28372|45735|87659|87660|96841|363096|363097|363098|626059|626060|626061|626062|626063", "text": "Lymphoma" }, { - "baseId": "27398|27422|27641|27642|27652|28694|28695|28698|28916|29000|31378|31381|40609|70450|133276|166563|174177|176503|185366|185367|213943|236481|362775|362914|363008|363016|363123|363222|363245|363246|363255|363264|363283|363298|363299|363300|363301|363336|363352|363353|363354|363394|363395|363491|363492|363493|363542|363543|363544|363566|363567|363568", + "upstreamId": "27398|27422|27641|27642|27652|28694|28695|28698|28916|29000|31378|31381|40609|70450|133276|166563|174177|176503|185366|185367|213943|236481|362775|362914|363008|363016|363123|363222|363245|363246|363255|363264|363283|363298|363299|363300|363301|363336|363352|363353|363354|363394|363395|363491|363492|363493|363542|363543|363544|363566|363567|363568", "text": "Papillary renal cell carcinoma, sporadic" }, { - "baseId": "27398|28694|28695|28698|133272|176503|213943|245074|362775|362873|363289|363290|363485|363486|363487|363488|363489|363490|363528|363542|363543|363544", + "upstreamId": "27398|28694|28695|28698|133272|176503|213943|245074|362775|362873|363289|363290|363485|363486|363487|363488|363489|363490|363528|363542|363543|363544", "text": "Carcinoma of gallbladder" }, { - "baseId": "27403|389215", + "upstreamId": "27403|389215", "text": "Pleomorphic xanthoastrocytoma" }, { - "baseId": "27404", + "upstreamId": "27404", "text": "Adenocarcinoma" }, { - "baseId": "27405", + "upstreamId": "27405", "text": "Thyroid gland undifferentiated (anaplastic) carcinoma" }, { - "baseId": "27407", + "upstreamId": "27407", "text": "Nasopharyngeal carcinoma" }, { - "baseId": "27407|27641|27642|27652|28694|28695|28698|28939|83949|139098|171613|213943|236477|245074|263939|359197|361709|362753|362775|363036|363194|363312|363528|363529|363530|363536|363537", + "upstreamId": "27407|27641|27642|27652|28694|28695|28698|28939|83949|139098|171613|213943|236477|245074|263939|359197|361709|362753|362775|363036|363194|363312|363528|363529|363530|363536|363537", "text": "Nasopharyngeal Neoplasms" }, { - "baseId": "27408|27409|27618|27641|27642|27652|40610|100947|139098|166215|173901|236477|260213|362768|362770|362771|362772|362929|363265|363266|363267|363293|363294|363295|363296|363297|363310|363348|363364|363365|363366|363367|363368|363369|363413|363414|363415|363518|363519|363520|363529|363530|473578|486679|486680|486681|486682|486683|486684|486685|486686|486687|486688|486689|486690|486691|486692|486693|486694", + "upstreamId": "27408|27409|27618|27641|27642|27652|40610|100947|139098|166215|173901|236477|260213|362768|362770|362771|362772|362929|363265|363266|363267|363293|363294|363295|363296|363297|363310|363348|363364|363365|363366|363367|363368|363369|363413|363414|363415|363518|363519|363520|363529|363530|473578|486679|486680|486681|486682|486683|486684|486685|486686|486687|486688|486689|486690|486691|486692|486693|486694", "text": "Adenoid cystic carcinoma" }, { - "baseId": "27413|27542|27558|209594|242512|258306|361860|363496|374588|389564|393403|401340|426686|443412|487074|508886|536912|550710|561355|570483|570491|614429|622642|792801|918826|973093|976548", + "upstreamId": "27413|27542|27558|209594|242512|258306|361860|363496|374588|389564|393403|401340|426686|443412|487074|508886|536912|550710|561355|570483|570491|614429|622642|792801|918826|973093|976548", "text": "Malignant tumor of esophagus" }, { - "baseId": "27418|27423", + "upstreamId": "27418|27423", "text": "Adrenocortical carcinoma, pediatric" }, { - "baseId": "27419", + "upstreamId": "27419", "text": "Choroid plexus papilloma" }, { - "baseId": "27424|27425", + "upstreamId": "27424|27425", "text": "TNF receptor binding, altered" }, { - "baseId": "27426|27427|28575|28576|29700", + "upstreamId": "27426|27427|28575|28576|29700", "text": "Malaria, cerebral, susceptibility to" }, { - "baseId": "27427", + "upstreamId": "27427", "text": "Septic shock, susceptibility to" }, { - "baseId": "27427", + "upstreamId": "27427", "text": "Human immunodeficiency virus dementia, susceptibility to" }, { - "baseId": "27427", + "upstreamId": "27427", "text": "Migraine without aura, susceptibility to" }, { - "baseId": "27428", + "upstreamId": "27428", "text": "Vascular dementia, susceptibility to" }, { - "baseId": "27429|45806", + "upstreamId": "27429|45806", "text": "Alzheimer disease, protection against" }, { - "baseId": "27431|27432|27433|27434|27435|27435|27436|27436|27437|27438|27439|27440|27441|27442|27443|27444|27445|27446|50163|50164|50165|50166|50167|50168|50169|50170|50171|50172|50173|50174|50175|50176|50177|50178|50179|50179|50180|50182|50184|50185|50186|50187|50188|50189|58302|58303|58304|58312|58313|58315|58316|58323|58324|58325|58328|58338|58342|58347|58356|58362|58364|58366|58367|58369|58374|58378|58379|58380|58387|58391|58393|58395|58397|58402|58403|58406|58408|58410|58412|58413|58414|58418|58419|58420|58421|58425|58426|58428|58429|58431|58432|58433|58442|58443|58444|58451|58454|58455|58460|58463|58464|58466|58467|58468|58472|58479|58486|58487|58488|58490|58493|58495|58497|58498|58502|58506|58507|58510|58513|58517|58521|58522|58525|58528|58532|58541|58542|58544|58546|58548|58550|58555|58557|58558|58559|58561|58572|58573|58579|58587|58593|58603|58604|58609|58610|58613|58618|58629|58630|58633|58633|58635|58639|58641|58647|58648|58654|58657|58659|58665|58666|58678|58684|58684|58686|58688|58689|58691|58692|58695|58697|58699|58701|58705|58710|58711|58713|58715|58717|58718|58722|58727|58730|58732|58734|58735|58742|58748|58749|58754|58759|58765|58773|58778|58783|58787|58788|58795|58797|58805|58805|58806|58808|58812|58815|58820|58822|58824|58828|58833|58836|58837|58839|58841|58842|58843|58845|58847|58848|58860|58865|58873|58875|58878|58880|58881|58887|58888|58890|58892|58896|58898|58900|58901|58902|58904|58913|58916|58917|58926|58932|58934|58935|58936|58951|58956|58959|58968|58977|58980|58991|58992|58993|58995|58996|58997|59003|59005|59006|59007|59008|59011|59013|59014|59015|59016|59017|59021|59026|59029|59036|59038|59039|59041|59042|59044|59049|59052|59054|59055|59060|59061|59064|59071|59074|59081|59084|59085|59087|59089|59091|59092|59092|59093|59097|59103|59105|59105|59106|59108|59112|59115|59119|59122|59131|59134|59138|59140|59143|59146|59148|59164|59166|59169|59171|59172|59175|59177|59178|59181|59182|59188|59189|59196|59200|59202|59205|59207|59214|59218|59219|59220|59222|59223|59224|59225|59226|59228|59230|59238|59240|59242|59245|59249|59251|59252|59255|59257|59259|59262|59267|59268|59278|59280|59282|59286|59287|59293|59293|59310|59324|59326|59332|59333|59337|59338|59343|59347|59351|59355|59356|75773|75776|75780|75785|75786|75788|75789|75797|75802|75804|75808|75812|75815|75817|75818|75819|75849|75850|75851|75852|75857|75862|75865|75870|75872|75873|75874|75878|75886|75888|75890|75895|75897|75899|75902|75903|75906|75910|75913|75918|75921|75922|75926|75927|75935|75948|75949|75951|75964|75966|75968|75969|75970|75974|75983|75989|75995|76006|76006|76011|76014|76015|76018|76020|76022|76034|76035|76039|76040|76041|76049|76050|76057|76058|76064|76065|76067|76068|76074|76077|76078|76079|76083|76090|76101|76120|76122|76125|76127|76128|76128|76130|76138|76147|76148|76153|76155|76161|76163|76166|76174|76176|76189|76195|76196|76200|76211|76212|76213|76217|76221|76232|76235|76239|76243|76245|76261|76265|76270|76273|76278|76279|76283|76284|76287|76292|76303|76311|76313|76316|76317|106772|106773|106774|106775|106776|106777|106778|106779|106780|106781|106782|106783|106784|106785|106786|106787|106788|106789|136089|137163|139109|139110|139111|139112|139113|139114|139115|139116|139117|139118|139119|139120|139122|139123|139124|139125|139127|139129|141438|141443|141444|141446|141447|141448|141450|141451|151070|151186|151196|151240|151384|171186|171187|184112|184112|184113|184114|184115|184116|184117|184119|184120|184121|184122|184123|184124|184125|184126|184127|184128|184129|184130|184131|184132|184133|184134|184135|184136|184137|184138|184139|184140|184141|184142|184143|184145|184146|184147|184148|184149|190765|191345|192086|194046|194155|195258|195259|203081|203082|203083|203084|203085|203086|203088|203089|203090|203091|203092|203093|203095|203096|203097|203098|203100|203101|203102|203103|203104|203105|203106|203108|203109|203110|203111|203112|203113|203115|203117|203117|203118|203121|203122|203124|203126|203128|203129|203131|203132|203133|203137|203138|203139|203140|203142|203143|203144|203147|203151|203152|203153|203154|203155|203156|203157|203158|203159|203161|203162|203163|203163|203164|203165|203166|203167|203168|203169|203170|203171|203176|203178|203179|203181|203182|203183|203184|203185|203186|203188|203189|203190|203192|203193|203194|203196|203202|203203|203204|203205|203206|203207|203209|203210|203212|203214|203215|203216|203217|203218|205408|213834|222450|222451|222452|222453|227853|230612|235088|235093|235094|235096|235101|235103|235105|235107|235108|235111|235113|235114|235115|235116|235119|235121|235123|235125|235128|235129|235130|235131|235132|235133|235134|235135|235138|235140|235141|235142|235143|235144|235145|235146|242204|242205|242206|242207|242208|242209|242210|242211|242212|242213|242214|242215|242216|242217|242218|242219|242220|242221|242222|242223|242224|242225|242226|242227|242228|242229|242230|242231|242231|242232|242233|242234|242235|242237|242238|242239|242240|242241|242242|242243|242244|242245|242246|242247|242249|242250|242251|242252|242253|242254|242255|242256|242257|242258|242259|242260|242261|242262|242264|242265|242266|242267|242268|242269|242271|242272|242273|242274|242275|242276|242277|242278|242279|242281|242282|242283|242284|242287|242290|242291|242292|242294|242295|242296|242297|242298|242299|242299|242300|242301|242302|242303|242304|242305|242306|242307|242308|242309|242310|242311|242312|242313|242314|242315|242316|242317|242318|242319|242320|242321|242322|242323|242324|242325|242326|242327|242328|242329|242330|242331|242332|242333|242334|242335|242336|242338|242339|242340|242341|242342|242343|242344|242345|247113|248512|255486|255487|255488|255489|255494|255499|255500|255501|260091|260800|264660|264758|264929|264936|265578|265615|265621|265860|267202|267209|267385|267769|268830|270190|271207|271247|271791|274074|324612|324618|324619|324621|324627|324628|324634|324639|334158|334162|334173|340849|340850|340851|340855|340856|340858|340859|340862|340863|340865|342258|342264|342264|342269|342270|342271|342274|360264|360267|360357|360985|361566|361881|374043|374066|374067|374072|374082|374087|374094|374096|374101|374116|374117|374118|374120|374126|374131|374135|374140|374151|374159|374160|374161|374163|374167|374171|374174|374175|374717|374726|374729|374732|374738|374751|374753|374782|374785|374799|374804|374819|374825|374839|374840|374841|374844|374860|375096|375104|375105|375115|375122|375128|375132|375158|375160|375163|375175|375182|375187|375194|375198|375199|375200|375208|377149|377167|377170|377173|377174|377178|377213|377215|377219|377225|377231|377260|377271|377294|377299|377307|384413|384442|390697|400494|400588|400590|400591|400636|400638|400645|400647|400649|400650|400661|400668|400669|400673|400681|400682|400684|400690|400695|400700|400701|400703|400707|400710|400716|400719|400724|400727|400733|400737|400741|400744|400746|400748|400749|400751|400752|400753|400754|400755|400756|400759|400760|400763|400766|400770|400771|400774|400775|400777|400778|400779|400780|400782|400783|400784|400786|400789|400790|400791|400792|400793|400793|400800|400803|400804|400805|400806|400814|400816|400821|400824|400825|400830|400832|400837|400838|400839|400840|400841|400842|400844|400848|400854|400857|400859|400861|400862|400864|400866|400872|400873|400874|400875|400878|400880|400881|400882|400884|400885|400887|400888|400889|400892|400893|400900|400904|400910|400913|400917|400919|400923|400926|400927|400930|400933|400936|400937|400939|400940|400941|400943|400947|400949|400951|400952|400954|400955|400956|400957|400958|400959|400963|400964|400966|400967|400971|400973|400974|400975|400976|400977|400978|400979|400979|400981|400985|400987|400990|400992|400999|401000|401008|401016|401020|401037|401040|401041|401073|401124|401130|401135|401136|401139|401140|401148|401152|401155|401158|401161|401165|401168|401171|401172|401182|401200|401201|401207|401210|401211|401212|401213|401216|401224|401234|401243|401251|401256|401268|401279|401280|401283|401289|401290|401292|401294|401301|401308|401313|401316|401317|401320|401331|401336|401344|401346|401361|401369|401371|401377|401379|401383|401383|401388|401390|401393|401394|401397|401401|401402|401404|401406|401407|401409|401413|401414|401415|401417|401418|401419|401423|401424|401426|401427|401428|401432|401433|401437|401438|401440|401441|401443|401445|401446|401447|401448|401449|401452|401453|401455|401457|401460|401461|401462|401468|401469|401472|401473|401474|401474|401478|401482|401484|401485|401486|401493|401494|401497|401503|401507|401510|401518|401519|401522|401523|401531|401534|401549|401555|401566|401568|401573|401574|401575|401576|401581|401589|401604|401605|401621|401622|401623|401624|401631|401637|401640|401656|401659|401661|401664|401667|401671|401673|401683|401686|401702|401708|401709|401716|401717|401718|401721|401723|401724|401725|401726|401727|409479|409485|409487|409488|409497|413206|419869|419873|422076|422077|422078|422079|424191|426153|426155|430966|432315|432384|437736|441778|441782|441788|441792|441798|445509|445512|445519|445522|445523|445524|445526|445529|445530|464809|465135|465138|465140|465143|465151|465153|465155|465156|465160|465165|465168|465169|465171|465173|465175|465179|465182|465186|465188|465190|465192|465195|465196|465197|465200|465203|465212|465216|465221|465227|465230|465232|465234|465238|465240|465247|465253|465254|465264|465266|465275|465278|465284|465285|465290|465291|465294|465300|465302|465304|465307|465309|465311|465315|465321|465322|465325|465329|465336|465337|465339|465342|465345|465350|465350|465353|465359|465360|465362|465364|465366|465367|465370|465373|465374|465377|465380|465381|465386|465387|465389|465392|465400|465403|465408|465410|465413|465417|465422|465524|465527|465660|465683|465702|465703|465705|465708|465713|465715|465718|465719|465721|465724|465731|465737|465741|465742|465747|465749|465752|465754|465759|465760|465764|465771|465779|465784|465785|465788|465801|465805|465809|465811|465815|465816|465818|465819|465821|465822|465823|465825|465829|465831|465832|465833|465834|465835|465836|465838|465841|465841|465842|465845|465847|465848|465850|465851|465852|465853|465854|465856|465858|465859|465865|465866|465868|465869|465872|465874|465875|465880|465882|465885|465887|465888|465889|465890|465892|465893|465896|465898|465899|465902|465907|465909|465911|465913|465914|465922|465925|465927|465929|465931|465932|465933|465934|465935|465936|465937|465939|465939|465944|465945|465951|465952|465953|465955|465958|465959|465961|465962|465965|465967|465972|465973|465974|465977|465980|465981|465983|465986|465988|465990|465992|465994|465996|465997|465998|466000|466001|466002|466003|466003|466005|466006|466007|466010|466011|466012|466013|466014|466015|466016|466019|466020|466023|466025|466026|466027|466028|466029|466030|466031|466033|466034|466037|466039|466040|466041|466045|466047|466048|466049|466050|466051|466052|466053|466054|466055|466057|466058|466059|466060|466061|466062|466063|466064|466066|466067|466069|466070|466071|466072|466073|466074|466076|466077|466078|466079|466080|466081|466082|466084|466086|466087|466088|466089|466092|466094|466095|466096|466100|466102|466107|466108|466110|466115|466117|466118|466119|466121|466122|466125|466127|466130|466133|466134|466135|466136|466140|466141|466143|466146|466148|466151|466152|466157|466158|466161|466163|466166|466167|466171|466175|466180|466182|466193|466201|466207|466209|466212|466214|466220|466222|466232|466235|466237|466238|466244|466248|466255|466264|466265|466276|466278|466281|466282|466289|466290|466293|466295|466296|466299|466301|466304|466317|466324|466327|466330|466333|466334|466335|477275|477283|477285|477288|477296|477298|477300|477306|477307|477310|477312|477315|477320|477323|477325|477328|477330|477335|477337|477346|477347|477349|477351|477352|477353|477357|477363|477370|477378|477389|477391|477398|477410|477411|477412|477413|477416|477418|477421|477423|477425|477426|477429|477446|477452|477456|477461|477463|477466|477480|477483|477495|477501|477512|477522|477532|477905|477909|477915|477922|477939|477942|477968|477970|478002|482091|488561|505166|505172|505173|505177|505204|505223|505228|505236|505465|505476|505688|505706|506137|506145|506149|506160|529228|529232|529239|529249|529505|529511|529513|529515|529517|529518|529519|529524|529525|529526|529527|529528|529529|529530|529532|529539|529543|529544|529547|529551|529552|529554|529556|529558|529560|529560|529561|529563|529565|529567|529572|529573|529574|529575|529578|529578|529580|529582|529583|529585|529587|529588|529591|529596|529598|529601|529602|529603|529604|529606|529609|529615|529616|529618|529622|529624|529626|529630|529633|529635|529636|529638|529639|529642|529644|529645|529646|529648|529649|529651|529654|529656|529657|529659|529660|529662|529664|529666|529668|529669|529673|529675|529677|529679|529686|529687|529688|529690|529694|529695|529696|529700|529704|529706|529708|529711|529717|529718|529719|529720|529723|529724|529725|529729|529731|529732|529735|529736|529740|529741|529744|529745|529746|529748|529749|529751|529752|529760|529761|529769|529773|529775|529783|529788|529798|529803|529804|529812|529813|529814|529815|529819|529824|529829|529835|529838|529841|529848|529850|529853|529865|529867|529868|529875|529877|529881|529885|529887|529888|529898|529906|529912|529915|529919|529925|529926|529927|529929|529938|529941|529944|529946|529948|529953|529961|529970|529971|529973|529973|529978|529979|529987|529989|529995|530007|530012|530015|530017|530023|530027|530029|530031|530036|530039|530044|530049|530054|530065|530069|530073|530074|530077|530078|530079|530080|530081|530083|530085|530087|530089|530091|530094|530095|530100|530102|530107|530113|530121|530127|530129|530142|530144|530145|530151|530152|530154|530158|530160|530164|530165|530166|530173|530178|530186|530189|530192|530195|530197|530199|530207|530209|530210|530212|530215|530218|530222|530228|530229|530231|530241|530244|530262|530265|530274|530276|530279|530281|530286|530288|530289|530292|530295|530296|530297|530301|530303|530305|530306|530319|537253|538095|538096|538097|538098|539064|567472|567474|567710|567712|567726|567729|567733|567736|567740|567741|567745|567753|567757|567759|567765|567770|567772|567773|567775|567777|567779|567787|567792|567797|567801|567802|567805|567807|567810|567812|567816|567817|567823|567826|567830|567832|567833|567844|567845|567849|567850|567853|567854|567856|567861|567865|567873|567880|567882|567891|567900|567908|567911|567913|567914|567919|569373|569579|569581|569583|569584|569588|569590|569596|569598|569617|569620|569621|569622|569624|569625|569629|569633|569636|569640|569642|569648|569651|569681|569681|569687|569698|569699|569703|569707|569708|569711|569712|569716|569718|569728|569736|569741|569744|569746|569749|569750|569758|569760|569761|569768|569769|569773|569778|569779|569783|569787|569789|569793|569796|569811|569819|569820|569823|569824|569825|569835|569843|569850|569852|569853|569861|569867|569868|569870|569874|569877|569880|569885|569897|569901|569907|569908|569910|569914|569916|570017|570028|570036|570037|570039|570042|570043|570045|570048|570053|570058|570063|570064|570069|570071|570073|570076|570078|570080|570081|570083|570088|570089|570091|570095|570099|570103|570106|570107|570111|570112|570114|570115|570124|570127|570128|570131|570133|570135|570136|570137|570139|570144|570147|570148|570150|570151|570155|570156|573647|573745|573751|573753|573758|573761|573765|573770|573775|573778|573779|573783|573787|573788|573794|573798|573802|573803|573808|573812|573813|573819|573820|573821|573827|573830|573831|573835|573838|573839|573840|573841|573843|573844|573845|573847|573853|573854|573856|573857|573859|573861|573862|573864|573866|573867|573873|573874|573877|573878|573879|573880|573884|573888|573891|573895|573898|573899|573900|573901|579974|579976|580053|580062|580270|583004|583044|609951|612160|614413|614414|614415|614416|614416|614417|614417|614418|614418|623323|644125|644126|644127|644128|644129|644130|644131|644132|644133|644134|644135|644136|644137|644138|644139|644140|644141|644142|644143|644144|644145|644146|644147|644148|644149|644150|644151|644152|644153|644154|644155|644156|644157|644158|644159|644160|644161|644162|644163|644164|644165|644166|644167|644168|644169|644170|644171|644172|644173|644174|644175|644176|644177|644178|644179|644180|644181|644182|644183|644184|644185|644186|644187|644188|644189|644190|644191|644192|644193|644194|644195|644196|644197|644198|644199|644200|644201|644202|644203|644204|644205|644206|644207|644208|644209|644210|644211|644212|644213|644214|644215|644216|644217|644218|644219|644220|644221|644222|644223|644224|644225|644226|644227|644228|644229|644230|644231|644232|644233|644234|644235|644236|644237|644238|644239|644240|644241|644242|644243|644244|644245|644246|644247|644248|644249|644250|644251|644252|644253|644254|644255|644256|644257|644258|644259|644260|644261|644262|644263|644264|644265|644266|644267|644268|644269|644270|644271|644272|644273|644274|644275|644276|644277|644278|644279|644280|644281|644282|644283|644284|644285|644286|644287|644288|644289|644290|644291|644292|644293|644294|644295|644296|644297|644298|644299|644300|644301|644302|644303|644304|644305|644306|644307|644308|644309|644310|644311|644312|644313|644314|644315|644316|644317|644318|644319|644320|644321|644322|644323|644324|644325|644326|644327|644328|644329|644330|644331|644332|644333|644334|644335|644336|644337|644338|644339|644340|644341|644342|644343|644344|644345|644346|644347|644348|644349|644350|644351|644352|644353|644354|644355|644356|644357|644358|644359|644360|644361|644362|644363|644364|644365|644366|644367|644368|644369|644370|644371|644372|644373|650511|652461|652464|652519|652522|652524|652530|652536|652539|652706|652707|652708|652714|652715|652795|652796|652802|652808|652810|652812|652934|652935|652937|652943|652945|652947|652953|652957|652961|652962|652977|653121|653227|653228|653236|653240|653245|653247|653250|653325|656346|656348|679793|684580|685415|685416|688536|688537|688538|688539|688540|688541|688542|688543|688544|688545|688547|688548|688549|688550|688551|688552|688553|690132|690133|690134|690135|693803|693804|693806|693807|693809|693811|693813|693814|693817|693819|693821|693822|693823|693824|693825|693826|693827|695680|695681|695682|695683|695685|703550|703551|703552|703553|703554|703555|714797|714799|726487|726488|726490|726491|726492|726494|726495|740014|740019|740023|744895|754977|754979|754981|754982|754983|754989|754990|754997|754999|755000|755003|755004|755006|760289|760420|760423|760467|770657|770659|770660|770661|770665|770673|770675|770676|770678|770681|770687|770689|770692|770696|770697|770698|770703|770706|770707|770708|770717|770718|770719|770722|770725|770727|770729|770731|770733|770734|770737|770738|770739|770742|770743|770744|770745|770747|770753|776117|776126|776128|776147|776150|776154|776160|776168|776173|776278|776284|776285|776292|776319|776485|776489|776512|778192|778194|778239|778396|785181|785182|785188|785191|785193|785194|785198|785199|785202|785205|785206|785207|785208|785209|785211|788000|788005|788038|791531|791532|791533|791534|791535|791536|791537|791538|791539|791540|791541|791542|797272|805865|812470|812471|812475|812485|812488|812491|812501|812506|812513|812515|812520|812527|812538|812540|812549|812561|812564|812565|812567|812569|812570|812571|812574|812575|812576|812581|812582|812584|812587|812596|812597|812598|812604|812606|812610|812616|812618|812620|812625|812630|812637|815615|815619|816331|816332|816333|820768|820776|820786|820787|820788|820789|820790|820791|820793|820794|820795|820796|820797|820968|820974|843300|843301|843302|843303|843304|843305|843306|843307|843308|843309|843310|843311|843312|843313|843314|843315|843316|843317|843318|843319|843320|843321|843322|843323|843324|843325|843326|843327|843328|843329|843330|843331|843332|843333|843334|843335|843336|843337|843338|843339|843340|843341|843342|843343|843344|843345|843346|843347|843348|843349|843350|843351|843352|843353|843354|843355|843356|843357|843358|843359|843360|843361|843362|843363|843364|843365|843366|843367|843368|843369|843370|843371|843372|843373|843374|843375|843376|843377|843378|843379|843380|843381|843382|843383|843384|843385|843386|843387|843388|843389|843390|843391|843392|843393|843394|843395|843396|843397|843398|843399|843400|843401|843402|843403|843404|843405|843406|843407|843408|843409|843410|843411|843412|843413|843414|843415|843416|843417|843418|843419|843420|843421|843422|843423|843424|843425|843426|843427|843428|843429|843430|843431|843432|843433|843434|843435|843436|843437|843438|843439|843440|843441|843442|843443|843444|843445|843446|843447|843448|843449|843450|843451|843452|843453|843454|843455|843456|843457|843458|843459|843460|843461|843462|843463|843464|843465|843466|843467|843468|843469|843470|843471|843472|843473|843474|843475|843476|843477|843478|843479|843480|843481|843482|843483|843484|843485|843486|843487|843488|843489|843490|843491|843492|843493|843494|843495|843496|843497|843498|843499|843500|843501|843502|843503|843504|843505|843506|843507|843508|843509|843510|843511|843512|843513|843514|843515|843516|843517|843518|843519|843520|843521|843522|843523|843524|843525|843526|843527|843528|843529|843530|843531|843532|843533|843534|843535|843536|843537|843538|843539|843540|843541|843542|843543|843544|843545|843546|843547|843548|843549|843550|851653|851655|851657|851659|851661|851663|851665|852091|852093|852095|852097|852099|852101|852103|852636|852637|852639|852643|852644|852645|852646|852647|852799|852803|852805|852807|852809|917823|917824|917825|917826|917827|917828|917829|917830|917831|917832|917833|917834|927605|927606|927607|927608|927609|927610|927611|927612|927613|927614|927615|927616|927617|927618|927619|927620|927621|927622|927623|927624|927625|927626|927627|927628|927629|927630|927631|927632|927633|927634|927635|927636|927637|927638|927639|927640|927641|927642|927643|927644|927645|927646|927647|927648|927649|927650|927651|927652|927653|927654|927655|927656|927657|927658|927659|927660|927661|927662|927663|927664|927665|927666|927667|927668|927669|927670|927671|927672|927673|927674|927675|927676|927677|927678|927679|927680|927681|927682|927683|927684|927685|927686|927687|927688|927689|927690|927691|927692|927693|927694|927695|927696|927697|937272|937273|937274|937275|937276|937277|937278|937279|937280|937281|937282|937283|937284|937285|937286|937287|937288|937289|937290|937291|937292|937293|937294|937295|937296|937297|937298|937299|937300|937301|937302|937303|937304|937305|937306|937307|937308|937309|937310|937311|937312|937313|937314|937315|937316|937317|937318|937319|937320|937321|937322|937323|937324|937325|937326|937327|937328|937329|937330|937331|937332|937333|937334|937335|937336|937337|937338|937339|937340|937341|937342|937343|937344|937345|937346|937347|937348|937349|937350|937351|937352|940347|940348|940349|940350|940351|940352|940353|940354|941120|941121|941122|941123|941124|941125|941126|941127|941128|941129|949220|949221|949222|949223|949224|949225|949226|949227|949228|949229|949230|949231|949232|949233|949234|949235|949236|949237|949238|949239|949240|949241|949242|949243|949244|949245|949246|949247|949248|949249|949250|949251|949252|949253|949254|949255|949256|949257|949258|949259|949260|949261|949262|949263|949264|949265|949266|949267|949268|949269|949270|949271|949272|949273|949274|949275|949276|949277|949278|949279|949280|949281|949282|949283|949284|949285|949286|949287|949288|949289|949290|949291|949292|949293|949294|949295|949296|949297|949298|949299|957664|957665|957666|957667|957668|957669|957670|957671|957672|957673|957674|957675|957676|957677|957678|957679|957680|957681|957682|957683|957684|957685|957686|957687|957688|957689|957690|957691|957692|960140|960141|960142|960143|960144|960145|960146|960147|960148|960149|960839|960840|960841|961580|961581|962742|962853|962881|962882|962883|962884|962885|962886|964444|965266|966665|966667|966683|967154|967160|971039|971040|980354|980355|980847", + "upstreamId": "27431|27432|27433|27434|27435|27435|27436|27436|27437|27438|27439|27440|27441|27442|27443|27444|27445|27446|50163|50164|50165|50166|50167|50168|50169|50170|50171|50172|50173|50174|50175|50176|50177|50178|50179|50179|50180|50182|50184|50185|50186|50187|50188|50189|58302|58303|58304|58312|58313|58315|58316|58323|58324|58325|58328|58338|58342|58347|58356|58362|58364|58366|58367|58369|58374|58378|58379|58380|58387|58391|58393|58395|58397|58402|58403|58406|58408|58410|58412|58413|58414|58418|58419|58420|58421|58425|58426|58428|58429|58431|58432|58433|58442|58443|58444|58451|58454|58455|58460|58463|58464|58466|58467|58468|58472|58479|58486|58487|58488|58490|58493|58495|58497|58498|58502|58506|58507|58510|58513|58517|58521|58522|58525|58528|58532|58541|58542|58544|58546|58548|58550|58555|58557|58558|58559|58561|58572|58573|58579|58587|58593|58603|58604|58609|58610|58613|58618|58629|58630|58633|58633|58635|58639|58641|58647|58648|58654|58657|58659|58665|58666|58678|58684|58684|58686|58688|58689|58691|58692|58695|58697|58699|58701|58705|58710|58711|58713|58715|58717|58718|58722|58727|58730|58732|58734|58735|58742|58748|58749|58754|58759|58765|58773|58778|58783|58787|58788|58795|58797|58805|58805|58806|58808|58812|58815|58820|58822|58824|58828|58833|58836|58837|58839|58841|58842|58843|58845|58847|58848|58860|58865|58873|58875|58878|58880|58881|58887|58888|58890|58892|58896|58898|58900|58901|58902|58904|58913|58916|58917|58926|58932|58934|58935|58936|58951|58956|58959|58968|58977|58980|58991|58992|58993|58995|58996|58997|59003|59005|59006|59007|59008|59011|59013|59014|59015|59016|59017|59021|59026|59029|59036|59038|59039|59041|59042|59044|59049|59052|59054|59055|59060|59061|59064|59071|59074|59081|59084|59085|59087|59089|59091|59092|59092|59093|59097|59103|59105|59105|59106|59108|59112|59115|59119|59122|59131|59134|59138|59140|59143|59146|59148|59164|59166|59169|59171|59172|59175|59177|59178|59181|59182|59188|59189|59196|59200|59202|59205|59207|59214|59218|59219|59220|59222|59223|59224|59225|59226|59228|59230|59238|59240|59242|59245|59249|59251|59252|59255|59257|59259|59262|59267|59268|59278|59280|59282|59286|59287|59293|59293|59310|59324|59326|59332|59333|59337|59338|59343|59347|59351|59355|59356|75773|75776|75780|75785|75786|75788|75789|75797|75802|75804|75808|75812|75815|75817|75818|75819|75849|75850|75851|75852|75857|75862|75865|75870|75872|75873|75874|75878|75886|75888|75890|75895|75897|75899|75902|75903|75906|75910|75913|75918|75921|75922|75926|75927|75935|75948|75949|75951|75964|75966|75968|75969|75970|75974|75983|75989|75995|76006|76006|76011|76014|76015|76018|76020|76022|76034|76035|76039|76040|76041|76049|76050|76057|76058|76064|76065|76067|76068|76074|76077|76078|76079|76083|76090|76101|76120|76122|76125|76127|76128|76128|76130|76138|76147|76148|76153|76155|76161|76163|76166|76174|76176|76189|76195|76196|76200|76211|76212|76213|76217|76221|76232|76235|76239|76243|76245|76261|76265|76270|76273|76278|76279|76283|76284|76287|76292|76303|76311|76313|76316|76317|106772|106773|106774|106775|106776|106777|106778|106779|106780|106781|106782|106783|106784|106785|106786|106787|106788|106789|136089|137163|139109|139110|139111|139112|139113|139114|139115|139116|139117|139118|139119|139120|139122|139123|139124|139125|139127|139129|141438|141443|141444|141446|141447|141448|141450|141451|151070|151186|151196|151240|151384|171186|171187|184112|184112|184113|184114|184115|184116|184117|184119|184120|184121|184122|184123|184124|184125|184126|184127|184128|184129|184130|184131|184132|184133|184134|184135|184136|184137|184138|184139|184140|184141|184142|184143|184145|184146|184147|184148|184149|190765|191345|192086|194046|194155|195258|195259|203081|203082|203083|203084|203085|203086|203088|203089|203090|203091|203092|203093|203095|203096|203097|203098|203100|203101|203102|203103|203104|203105|203106|203108|203109|203110|203111|203112|203113|203115|203117|203117|203118|203121|203122|203124|203126|203128|203129|203131|203132|203133|203137|203138|203139|203140|203142|203143|203144|203147|203151|203152|203153|203154|203155|203156|203157|203158|203159|203161|203162|203163|203163|203164|203165|203166|203167|203168|203169|203170|203171|203176|203178|203179|203181|203182|203183|203184|203185|203186|203188|203189|203190|203192|203193|203194|203196|203202|203203|203204|203205|203206|203207|203209|203210|203212|203214|203215|203216|203217|203218|205408|213834|222450|222451|222452|222453|227853|230612|235088|235093|235094|235096|235101|235103|235105|235107|235108|235111|235113|235114|235115|235116|235119|235121|235123|235125|235128|235129|235130|235131|235132|235133|235134|235135|235138|235140|235141|235142|235143|235144|235145|235146|242204|242205|242206|242207|242208|242209|242210|242211|242212|242213|242214|242215|242216|242217|242218|242219|242220|242221|242222|242223|242224|242225|242226|242227|242228|242229|242230|242231|242231|242232|242233|242234|242235|242237|242238|242239|242240|242241|242242|242243|242244|242245|242246|242247|242249|242250|242251|242252|242253|242254|242255|242256|242257|242258|242259|242260|242261|242262|242264|242265|242266|242267|242268|242269|242271|242272|242273|242274|242275|242276|242277|242278|242279|242281|242282|242283|242284|242287|242290|242291|242292|242294|242295|242296|242297|242298|242299|242299|242300|242301|242302|242303|242304|242305|242306|242307|242308|242309|242310|242311|242312|242313|242314|242315|242316|242317|242318|242319|242320|242321|242322|242323|242324|242325|242326|242327|242328|242329|242330|242331|242332|242333|242334|242335|242336|242338|242339|242340|242341|242342|242343|242344|242345|247113|248512|255486|255487|255488|255489|255494|255499|255500|255501|260091|260800|264660|264758|264929|264936|265578|265615|265621|265860|267202|267209|267385|267769|268830|270190|271207|271247|271791|274074|324612|324618|324619|324621|324627|324628|324634|324639|334158|334162|334173|340849|340850|340851|340855|340856|340858|340859|340862|340863|340865|342258|342264|342264|342269|342270|342271|342274|360264|360267|360357|360985|361566|361881|374043|374066|374067|374072|374082|374087|374094|374096|374101|374116|374117|374118|374120|374126|374131|374135|374140|374151|374159|374160|374161|374163|374167|374171|374174|374175|374717|374726|374729|374732|374738|374751|374753|374782|374785|374799|374804|374819|374825|374839|374840|374841|374844|374860|375096|375104|375105|375115|375122|375128|375132|375158|375160|375163|375175|375182|375187|375194|375198|375199|375200|375208|377149|377167|377170|377173|377174|377178|377213|377215|377219|377225|377231|377260|377271|377294|377299|377307|384413|384442|390697|400494|400588|400590|400591|400636|400638|400645|400647|400649|400650|400661|400668|400669|400673|400681|400682|400684|400690|400695|400700|400701|400703|400707|400710|400716|400719|400724|400727|400733|400737|400741|400744|400746|400748|400749|400751|400752|400753|400754|400755|400756|400759|400760|400763|400766|400770|400771|400774|400775|400777|400778|400779|400780|400782|400783|400784|400786|400789|400790|400791|400792|400793|400793|400800|400803|400804|400805|400806|400814|400816|400821|400824|400825|400830|400832|400837|400838|400839|400840|400841|400842|400844|400848|400854|400857|400859|400861|400862|400864|400866|400872|400873|400874|400875|400878|400880|400881|400882|400884|400885|400887|400888|400889|400892|400893|400900|400904|400910|400913|400917|400919|400923|400926|400927|400930|400933|400936|400937|400939|400940|400941|400943|400947|400949|400951|400952|400954|400955|400956|400957|400958|400959|400963|400964|400966|400967|400971|400973|400974|400975|400976|400977|400978|400979|400979|400981|400985|400987|400990|400992|400999|401000|401008|401016|401020|401037|401040|401041|401073|401124|401130|401135|401136|401139|401140|401148|401152|401155|401158|401161|401165|401168|401171|401172|401182|401200|401201|401207|401210|401211|401212|401213|401216|401224|401234|401243|401251|401256|401268|401279|401280|401283|401289|401290|401292|401294|401301|401308|401313|401316|401317|401320|401331|401336|401344|401346|401361|401369|401371|401377|401379|401383|401383|401388|401390|401393|401394|401397|401401|401402|401404|401406|401407|401409|401413|401414|401415|401417|401418|401419|401423|401424|401426|401427|401428|401432|401433|401437|401438|401440|401441|401443|401445|401446|401447|401448|401449|401452|401453|401455|401457|401460|401461|401462|401468|401469|401472|401473|401474|401474|401478|401482|401484|401485|401486|401493|401494|401497|401503|401507|401510|401518|401519|401522|401523|401531|401534|401549|401555|401566|401568|401573|401574|401575|401576|401581|401589|401604|401605|401621|401622|401623|401624|401631|401637|401640|401656|401659|401661|401664|401667|401671|401673|401683|401686|401702|401708|401709|401716|401717|401718|401721|401723|401724|401725|401726|401727|409479|409485|409487|409488|409497|413206|419869|419873|422076|422077|422078|422079|424191|426153|426155|430966|432315|432384|437736|441778|441782|441788|441792|441798|445509|445512|445519|445522|445523|445524|445526|445529|445530|464809|465135|465138|465140|465143|465151|465153|465155|465156|465160|465165|465168|465169|465171|465173|465175|465179|465182|465186|465188|465190|465192|465195|465196|465197|465200|465203|465212|465216|465221|465227|465230|465232|465234|465238|465240|465247|465253|465254|465264|465266|465275|465278|465284|465285|465290|465291|465294|465300|465302|465304|465307|465309|465311|465315|465321|465322|465325|465329|465336|465337|465339|465342|465345|465350|465350|465353|465359|465360|465362|465364|465366|465367|465370|465373|465374|465377|465380|465381|465386|465387|465389|465392|465400|465403|465408|465410|465413|465417|465422|465524|465527|465660|465683|465702|465703|465705|465708|465713|465715|465718|465719|465721|465724|465731|465737|465741|465742|465747|465749|465752|465754|465759|465760|465764|465771|465779|465784|465785|465788|465801|465805|465809|465811|465815|465816|465818|465819|465821|465822|465823|465825|465829|465831|465832|465833|465834|465835|465836|465838|465841|465841|465842|465845|465847|465848|465850|465851|465852|465853|465854|465856|465858|465859|465865|465866|465868|465869|465872|465874|465875|465880|465882|465885|465887|465888|465889|465890|465892|465893|465896|465898|465899|465902|465907|465909|465911|465913|465914|465922|465925|465927|465929|465931|465932|465933|465934|465935|465936|465937|465939|465939|465944|465945|465951|465952|465953|465955|465958|465959|465961|465962|465965|465967|465972|465973|465974|465977|465980|465981|465983|465986|465988|465990|465992|465994|465996|465997|465998|466000|466001|466002|466003|466003|466005|466006|466007|466010|466011|466012|466013|466014|466015|466016|466019|466020|466023|466025|466026|466027|466028|466029|466030|466031|466033|466034|466037|466039|466040|466041|466045|466047|466048|466049|466050|466051|466052|466053|466054|466055|466057|466058|466059|466060|466061|466062|466063|466064|466066|466067|466069|466070|466071|466072|466073|466074|466076|466077|466078|466079|466080|466081|466082|466084|466086|466087|466088|466089|466092|466094|466095|466096|466100|466102|466107|466108|466110|466115|466117|466118|466119|466121|466122|466125|466127|466130|466133|466134|466135|466136|466140|466141|466143|466146|466148|466151|466152|466157|466158|466161|466163|466166|466167|466171|466175|466180|466182|466193|466201|466207|466209|466212|466214|466220|466222|466232|466235|466237|466238|466244|466248|466255|466264|466265|466276|466278|466281|466282|466289|466290|466293|466295|466296|466299|466301|466304|466317|466324|466327|466330|466333|466334|466335|477275|477283|477285|477288|477296|477298|477300|477306|477307|477310|477312|477315|477320|477323|477325|477328|477330|477335|477337|477346|477347|477349|477351|477352|477353|477357|477363|477370|477378|477389|477391|477398|477410|477411|477412|477413|477416|477418|477421|477423|477425|477426|477429|477446|477452|477456|477461|477463|477466|477480|477483|477495|477501|477512|477522|477532|477905|477909|477915|477922|477939|477942|477968|477970|478002|482091|488561|505166|505172|505173|505177|505204|505223|505228|505236|505465|505476|505688|505706|506137|506145|506149|506160|529228|529232|529239|529249|529505|529511|529513|529515|529517|529518|529519|529524|529525|529526|529527|529528|529529|529530|529532|529539|529543|529544|529547|529551|529552|529554|529556|529558|529560|529560|529561|529563|529565|529567|529572|529573|529574|529575|529578|529578|529580|529582|529583|529585|529587|529588|529591|529596|529598|529601|529602|529603|529604|529606|529609|529615|529616|529618|529622|529624|529626|529630|529633|529635|529636|529638|529639|529642|529644|529645|529646|529648|529649|529651|529654|529656|529657|529659|529660|529662|529664|529666|529668|529669|529673|529675|529677|529679|529686|529687|529688|529690|529694|529695|529696|529700|529704|529706|529708|529711|529717|529718|529719|529720|529723|529724|529725|529729|529731|529732|529735|529736|529740|529741|529744|529745|529746|529748|529749|529751|529752|529760|529761|529769|529773|529775|529783|529788|529798|529803|529804|529812|529813|529814|529815|529819|529824|529829|529835|529838|529841|529848|529850|529853|529865|529867|529868|529875|529877|529881|529885|529887|529888|529898|529906|529912|529915|529919|529925|529926|529927|529929|529938|529941|529944|529946|529948|529953|529961|529970|529971|529973|529973|529978|529979|529987|529989|529995|530007|530012|530015|530017|530023|530027|530029|530031|530036|530039|530044|530049|530054|530065|530069|530073|530074|530077|530078|530079|530080|530081|530083|530085|530087|530089|530091|530094|530095|530100|530102|530107|530113|530121|530127|530129|530142|530144|530145|530151|530152|530154|530158|530160|530164|530165|530166|530173|530178|530186|530189|530192|530195|530197|530199|530207|530209|530210|530212|530215|530218|530222|530228|530229|530231|530241|530244|530262|530265|530274|530276|530279|530281|530286|530288|530289|530292|530295|530296|530297|530301|530303|530305|530306|530319|537253|538095|538096|538097|538098|539064|567472|567474|567710|567712|567726|567729|567733|567736|567740|567741|567745|567753|567757|567759|567765|567770|567772|567773|567775|567777|567779|567787|567792|567797|567801|567802|567805|567807|567810|567812|567816|567817|567823|567826|567830|567832|567833|567844|567845|567849|567850|567853|567854|567856|567861|567865|567873|567880|567882|567891|567900|567908|567911|567913|567914|567919|569373|569579|569581|569583|569584|569588|569590|569596|569598|569617|569620|569621|569622|569624|569625|569629|569633|569636|569640|569642|569648|569651|569681|569681|569687|569698|569699|569703|569707|569708|569711|569712|569716|569718|569728|569736|569741|569744|569746|569749|569750|569758|569760|569761|569768|569769|569773|569778|569779|569783|569787|569789|569793|569796|569811|569819|569820|569823|569824|569825|569835|569843|569850|569852|569853|569861|569867|569868|569870|569874|569877|569880|569885|569897|569901|569907|569908|569910|569914|569916|570017|570028|570036|570037|570039|570042|570043|570045|570048|570053|570058|570063|570064|570069|570071|570073|570076|570078|570080|570081|570083|570088|570089|570091|570095|570099|570103|570106|570107|570111|570112|570114|570115|570124|570127|570128|570131|570133|570135|570136|570137|570139|570144|570147|570148|570150|570151|570155|570156|573647|573745|573751|573753|573758|573761|573765|573770|573775|573778|573779|573783|573787|573788|573794|573798|573802|573803|573808|573812|573813|573819|573820|573821|573827|573830|573831|573835|573838|573839|573840|573841|573843|573844|573845|573847|573853|573854|573856|573857|573859|573861|573862|573864|573866|573867|573873|573874|573877|573878|573879|573880|573884|573888|573891|573895|573898|573899|573900|573901|579974|579976|580053|580062|580270|583004|583044|609951|612160|614413|614414|614415|614416|614416|614417|614417|614418|614418|623323|644125|644126|644127|644128|644129|644130|644131|644132|644133|644134|644135|644136|644137|644138|644139|644140|644141|644142|644143|644144|644145|644146|644147|644148|644149|644150|644151|644152|644153|644154|644155|644156|644157|644158|644159|644160|644161|644162|644163|644164|644165|644166|644167|644168|644169|644170|644171|644172|644173|644174|644175|644176|644177|644178|644179|644180|644181|644182|644183|644184|644185|644186|644187|644188|644189|644190|644191|644192|644193|644194|644195|644196|644197|644198|644199|644200|644201|644202|644203|644204|644205|644206|644207|644208|644209|644210|644211|644212|644213|644214|644215|644216|644217|644218|644219|644220|644221|644222|644223|644224|644225|644226|644227|644228|644229|644230|644231|644232|644233|644234|644235|644236|644237|644238|644239|644240|644241|644242|644243|644244|644245|644246|644247|644248|644249|644250|644251|644252|644253|644254|644255|644256|644257|644258|644259|644260|644261|644262|644263|644264|644265|644266|644267|644268|644269|644270|644271|644272|644273|644274|644275|644276|644277|644278|644279|644280|644281|644282|644283|644284|644285|644286|644287|644288|644289|644290|644291|644292|644293|644294|644295|644296|644297|644298|644299|644300|644301|644302|644303|644304|644305|644306|644307|644308|644309|644310|644311|644312|644313|644314|644315|644316|644317|644318|644319|644320|644321|644322|644323|644324|644325|644326|644327|644328|644329|644330|644331|644332|644333|644334|644335|644336|644337|644338|644339|644340|644341|644342|644343|644344|644345|644346|644347|644348|644349|644350|644351|644352|644353|644354|644355|644356|644357|644358|644359|644360|644361|644362|644363|644364|644365|644366|644367|644368|644369|644370|644371|644372|644373|650511|652461|652464|652519|652522|652524|652530|652536|652539|652706|652707|652708|652714|652715|652795|652796|652802|652808|652810|652812|652934|652935|652937|652943|652945|652947|652953|652957|652961|652962|652977|653121|653227|653228|653236|653240|653245|653247|653250|653325|656346|656348|679793|684580|685415|685416|688536|688537|688538|688539|688540|688541|688542|688543|688544|688545|688547|688548|688549|688550|688551|688552|688553|690132|690133|690134|690135|693803|693804|693806|693807|693809|693811|693813|693814|693817|693819|693821|693822|693823|693824|693825|693826|693827|695680|695681|695682|695683|695685|703550|703551|703552|703553|703554|703555|714797|714799|726487|726488|726490|726491|726492|726494|726495|740014|740019|740023|744895|754977|754979|754981|754982|754983|754989|754990|754997|754999|755000|755003|755004|755006|760289|760420|760423|760467|770657|770659|770660|770661|770665|770673|770675|770676|770678|770681|770687|770689|770692|770696|770697|770698|770703|770706|770707|770708|770717|770718|770719|770722|770725|770727|770729|770731|770733|770734|770737|770738|770739|770742|770743|770744|770745|770747|770753|776117|776126|776128|776147|776150|776154|776160|776168|776173|776278|776284|776285|776292|776319|776485|776489|776512|778192|778194|778239|778396|785181|785182|785188|785191|785193|785194|785198|785199|785202|785205|785206|785207|785208|785209|785211|788000|788005|788038|791531|791532|791533|791534|791535|791536|791537|791538|791539|791540|791541|791542|797272|805865|812470|812471|812475|812485|812488|812491|812501|812506|812513|812515|812520|812527|812538|812540|812549|812561|812564|812565|812567|812569|812570|812571|812574|812575|812576|812581|812582|812584|812587|812596|812597|812598|812604|812606|812610|812616|812618|812620|812625|812630|812637|815615|815619|816331|816332|816333|820768|820776|820786|820787|820788|820789|820790|820791|820793|820794|820795|820796|820797|820968|820974|843300|843301|843302|843303|843304|843305|843306|843307|843308|843309|843310|843311|843312|843313|843314|843315|843316|843317|843318|843319|843320|843321|843322|843323|843324|843325|843326|843327|843328|843329|843330|843331|843332|843333|843334|843335|843336|843337|843338|843339|843340|843341|843342|843343|843344|843345|843346|843347|843348|843349|843350|843351|843352|843353|843354|843355|843356|843357|843358|843359|843360|843361|843362|843363|843364|843365|843366|843367|843368|843369|843370|843371|843372|843373|843374|843375|843376|843377|843378|843379|843380|843381|843382|843383|843384|843385|843386|843387|843388|843389|843390|843391|843392|843393|843394|843395|843396|843397|843398|843399|843400|843401|843402|843403|843404|843405|843406|843407|843408|843409|843410|843411|843412|843413|843414|843415|843416|843417|843418|843419|843420|843421|843422|843423|843424|843425|843426|843427|843428|843429|843430|843431|843432|843433|843434|843435|843436|843437|843438|843439|843440|843441|843442|843443|843444|843445|843446|843447|843448|843449|843450|843451|843452|843453|843454|843455|843456|843457|843458|843459|843460|843461|843462|843463|843464|843465|843466|843467|843468|843469|843470|843471|843472|843473|843474|843475|843476|843477|843478|843479|843480|843481|843482|843483|843484|843485|843486|843487|843488|843489|843490|843491|843492|843493|843494|843495|843496|843497|843498|843499|843500|843501|843502|843503|843504|843505|843506|843507|843508|843509|843510|843511|843512|843513|843514|843515|843516|843517|843518|843519|843520|843521|843522|843523|843524|843525|843526|843527|843528|843529|843530|843531|843532|843533|843534|843535|843536|843537|843538|843539|843540|843541|843542|843543|843544|843545|843546|843547|843548|843549|843550|851653|851655|851657|851659|851661|851663|851665|852091|852093|852095|852097|852099|852101|852103|852636|852637|852639|852643|852644|852645|852646|852647|852799|852803|852805|852807|852809|917823|917824|917825|917826|917827|917828|917829|917830|917831|917832|917833|917834|927605|927606|927607|927608|927609|927610|927611|927612|927613|927614|927615|927616|927617|927618|927619|927620|927621|927622|927623|927624|927625|927626|927627|927628|927629|927630|927631|927632|927633|927634|927635|927636|927637|927638|927639|927640|927641|927642|927643|927644|927645|927646|927647|927648|927649|927650|927651|927652|927653|927654|927655|927656|927657|927658|927659|927660|927661|927662|927663|927664|927665|927666|927667|927668|927669|927670|927671|927672|927673|927674|927675|927676|927677|927678|927679|927680|927681|927682|927683|927684|927685|927686|927687|927688|927689|927690|927691|927692|927693|927694|927695|927696|927697|937272|937273|937274|937275|937276|937277|937278|937279|937280|937281|937282|937283|937284|937285|937286|937287|937288|937289|937290|937291|937292|937293|937294|937295|937296|937297|937298|937299|937300|937301|937302|937303|937304|937305|937306|937307|937308|937309|937310|937311|937312|937313|937314|937315|937316|937317|937318|937319|937320|937321|937322|937323|937324|937325|937326|937327|937328|937329|937330|937331|937332|937333|937334|937335|937336|937337|937338|937339|937340|937341|937342|937343|937344|937345|937346|937347|937348|937349|937350|937351|937352|940347|940348|940349|940350|940351|940352|940353|940354|941120|941121|941122|941123|941124|941125|941126|941127|941128|941129|949220|949221|949222|949223|949224|949225|949226|949227|949228|949229|949230|949231|949232|949233|949234|949235|949236|949237|949238|949239|949240|949241|949242|949243|949244|949245|949246|949247|949248|949249|949250|949251|949252|949253|949254|949255|949256|949257|949258|949259|949260|949261|949262|949263|949264|949265|949266|949267|949268|949269|949270|949271|949272|949273|949274|949275|949276|949277|949278|949279|949280|949281|949282|949283|949284|949285|949286|949287|949288|949289|949290|949291|949292|949293|949294|949295|949296|949297|949298|949299|957664|957665|957666|957667|957668|957669|957670|957671|957672|957673|957674|957675|957676|957677|957678|957679|957680|957681|957682|957683|957684|957685|957686|957687|957688|957689|957690|957691|957692|960140|960141|960142|960143|960144|960145|960146|960147|960148|960149|960839|960840|960841|961580|961581|962742|962853|962881|962882|962883|962884|962885|962886|964444|965266|966665|966667|966683|967154|967160|971039|971040|980354|980355|980847", "text": "Tuberous sclerosis 2" }, { - "baseId": "27447|27447|27448|27448|27449|27450|27450|27451|27453|27454|45545|45547|52571|52781|52784|52785|52785|52786|52787|52788|52789|52790|52790|52791|52795|52796|52797|52798|52798|52799|52800|52801|52804|52805|52806|52807|52809|52810|52811|52812|52816|52817|52818|52819|52820|52820|52821|52821|52823|52824|52825|52826|52828|52829|52829|52833|52834|52835|52836|52836|52837|52838|52839|52840|52841|52842|52843|52844|52844|52845|52846|136689|136690|136692|172354|172354|172355|172355|172361|172362|172497|172498|172499|172499|172503|172506|178434|178436|178438|178913|178915|178918|178920|178921|178923|178923|178929|178930|178930|178931|178932|178935|178935|178938|178939|178942|178943|178944|178954|186305|186305|189384|214101|214101|214102|228285|228288|238208|238209|249665|278568|279740|279740|279751|279841|364596|364601|390960|390976|390980|391016|391049|391055|391059|405014|414756|421199|430959|442697|442698|442699|447414|447415|447422|447423|447424|447426|447542|447544|447545|447552|447553|447649|447652|447677|447680|481116|498380|509125|515386|515389|515391|515457|515462|515475|515477|515481|515483|515487|515518|515532|515533|556754|556791|557110|557112|557114|558317|558319|558321|615185|627275|627276|627277|627278|627279|627280|627281|627282|627283|650606|654175|685089|794538|799150|823223|823224|823225|823226|823227|823228|823229|823230|823231|823232|863308|863309|863310|865091|865092|865093|865094|906489|921804|930239|930240|930241|930242|930243|939789|941656|952214|952215|952216|959537|959538", + "upstreamId": "27447|27447|27448|27448|27449|27450|27450|27451|27453|27454|45545|45547|52571|52781|52784|52785|52785|52786|52787|52788|52789|52790|52790|52791|52795|52796|52797|52798|52798|52799|52800|52801|52804|52805|52806|52807|52809|52810|52811|52812|52816|52817|52818|52819|52820|52820|52821|52821|52823|52824|52825|52826|52828|52829|52829|52833|52834|52835|52836|52836|52837|52838|52839|52840|52841|52842|52843|52844|52844|52845|52846|136689|136690|136692|172354|172354|172355|172355|172361|172362|172497|172498|172499|172499|172503|172506|178434|178436|178438|178913|178915|178918|178920|178921|178923|178923|178929|178930|178930|178931|178932|178935|178935|178938|178939|178942|178943|178944|178954|186305|186305|189384|214101|214101|214102|228285|228288|238208|238209|249665|278568|279740|279740|279751|279841|364596|364601|390960|390976|390980|391016|391049|391055|391059|405014|414756|421199|430959|442697|442698|442699|447414|447415|447422|447423|447424|447426|447542|447544|447545|447552|447553|447649|447652|447677|447680|481116|498380|509125|515386|515389|515391|515457|515462|515475|515477|515481|515483|515487|515518|515532|515533|556754|556791|557110|557112|557114|558317|558319|558321|615185|627275|627276|627277|627278|627279|627280|627281|627282|627283|650606|654175|685089|794538|799150|823223|823224|823225|823226|823227|823228|823229|823230|823231|823232|863308|863309|863310|865091|865092|865093|865094|906489|921804|930239|930240|930241|930242|930243|939789|941656|952214|952215|952216|959537|959538", "text": "Familial hypertrophic cardiomyopathy 2" }, { - "baseId": "27447|27447|27448|27450|27450|27451|27453|27453|27454|27454|27455|27456|45545|45547|52571|52781|52784|52785|52785|52786|52787|52787|52788|52789|52790|52791|52795|52796|52797|52798|52798|52800|52801|52804|52805|52806|52807|52809|52811|52812|52816|52817|52818|52819|52820|52821|52823|52824|52825|52826|52828|52828|52829|52833|52834|52835|52836|52836|52837|52838|52839|52840|52841|52842|52843|52844|52844|52845|52846|136689|136690|136692|172354|172355|172355|172361|172362|172362|172497|172498|172499|172503|172506|178434|178436|178438|178913|178918|178920|178921|178923|178929|178930|178930|178931|178932|178935|178935|178938|178939|178942|178943|178944|178944|178954|186305|186305|189384|214101|226594|228281|228285|228285|228288|238208|238209|278568|279740|279740|279751|279841|364596|364601|390960|390976|390980|391016|391049|391055|391059|405014|414756|421199|430959|430959|430960|442697|442698|442699|447414|447415|447422|447423|447424|447426|447542|447544|447545|447552|447553|447649|447652|447677|447680|481116|498380|509125|515386|515389|515391|515457|515462|515475|515477|515481|515483|515487|515518|515532|515533|556754|556791|557110|557112|557114|558317|558319|558321|615185|627275|627276|627277|627278|627279|627280|627281|627282|627283|650606|654175|679713|685089|794538|799150|823223|823224|823225|823226|823227|823228|823229|823230|823231|823232|863309|863310|865091|865092|865093|906489|918589|921804|930239|930240|930241|930242|930243|939789|941656|952214|952215|952216|959537|959538|970671", + "upstreamId": "27447|27447|27448|27450|27450|27451|27453|27453|27454|27454|27455|27456|45545|45547|52571|52781|52784|52785|52785|52786|52787|52787|52788|52789|52790|52791|52795|52796|52797|52798|52798|52800|52801|52804|52805|52806|52807|52809|52811|52812|52816|52817|52818|52819|52820|52821|52823|52824|52825|52826|52828|52828|52829|52833|52834|52835|52836|52836|52837|52838|52839|52840|52841|52842|52843|52844|52844|52845|52846|136689|136690|136692|172354|172355|172355|172361|172362|172362|172497|172498|172499|172503|172506|178434|178436|178438|178913|178918|178920|178921|178923|178929|178930|178930|178931|178932|178935|178935|178938|178939|178942|178943|178944|178944|178954|186305|186305|189384|214101|226594|228281|228285|228285|228288|238208|238209|278568|279740|279740|279751|279841|364596|364601|390960|390976|390980|391016|391049|391055|391059|405014|414756|421199|430959|430959|430960|442697|442698|442699|447414|447415|447422|447423|447424|447426|447542|447544|447545|447552|447553|447649|447652|447677|447680|481116|498380|509125|515386|515389|515391|515457|515462|515475|515477|515481|515483|515487|515518|515532|515533|556754|556791|557110|557112|557114|558317|558319|558321|615185|627275|627276|627277|627278|627279|627280|627281|627282|627283|650606|654175|679713|685089|794538|799150|823223|823224|823225|823226|823227|823228|823229|823230|823231|823232|863309|863310|865091|865092|865093|906489|918589|921804|930239|930240|930241|930242|930243|939789|941656|952214|952215|952216|959537|959538|970671", "text": "Left ventricular noncompaction 6" }, { - "baseId": "27447|27447|27448|27450|27453|27454|27457|45545|45547|52571|52781|52784|52785|52785|52786|52787|52788|52789|52790|52790|52791|52795|52796|52797|52798|52799|52800|52801|52804|52805|52806|52807|52809|52810|52811|52812|52816|52817|52818|52819|52820|52820|52821|52823|52824|52825|52826|52828|52829|52829|52833|52834|52835|52836|52837|52838|52839|52840|52841|52842|52843|52844|52844|52845|52846|136689|136690|136692|172354|172355|172361|172362|172497|172498|172499|172503|172506|178434|178436|178438|178913|178918|178920|178921|178923|178929|178930|178930|178931|178932|178935|178935|178939|178942|178943|178944|178954|186305|186305|189384|214101|228285|228288|238208|238209|278568|279740|279740|279751|279841|364596|364601|390960|390976|390980|391016|391049|391055|391059|405014|414756|421199|430959|442697|442698|442699|447414|447415|447422|447423|447424|447426|447542|447544|447545|447552|447553|447649|447652|447677|447680|481116|498380|509125|515386|515389|515391|515457|515462|515475|515477|515481|515483|515487|515518|515532|515533|556754|556791|557110|557112|557114|558317|558319|558321|615185|627275|627276|627277|627278|627279|627280|627281|627282|627283|650606|685089|794538|799150|823223|823224|823225|823226|823227|823228|823229|823230|823231|823232|863308|863309|863310|865091|865092|865093|865094|906489|921804|930239|930240|930241|930242|930243|939789|941656|952214|952215|952216|959537|959538", + "upstreamId": "27447|27447|27448|27450|27453|27454|27457|45545|45547|52571|52781|52784|52785|52785|52786|52787|52788|52789|52790|52790|52791|52795|52796|52797|52798|52799|52800|52801|52804|52805|52806|52807|52809|52810|52811|52812|52816|52817|52818|52819|52820|52820|52821|52823|52824|52825|52826|52828|52829|52829|52833|52834|52835|52836|52837|52838|52839|52840|52841|52842|52843|52844|52844|52845|52846|136689|136690|136692|172354|172355|172361|172362|172497|172498|172499|172503|172506|178434|178436|178438|178913|178918|178920|178921|178923|178929|178930|178930|178931|178932|178935|178935|178939|178942|178943|178944|178954|186305|186305|189384|214101|228285|228288|238208|238209|278568|279740|279740|279751|279841|364596|364601|390960|390976|390980|391016|391049|391055|391059|405014|414756|421199|430959|442697|442698|442699|447414|447415|447422|447423|447424|447426|447542|447544|447545|447552|447553|447649|447652|447677|447680|481116|498380|509125|515386|515389|515391|515457|515462|515475|515477|515481|515483|515487|515518|515532|515533|556754|556791|557110|557112|557114|558317|558319|558321|615185|627275|627276|627277|627278|627279|627280|627281|627282|627283|650606|685089|794538|799150|823223|823224|823225|823226|823227|823228|823229|823230|823231|823232|863308|863309|863310|865091|865092|865093|865094|906489|921804|930239|930240|930241|930242|930243|939789|941656|952214|952215|952216|959537|959538", "text": "Familial restrictive cardiomyopathy 3" }, { - "baseId": "27450|27639|27641|27642|27643|27644|27645|27646|27648|27649|27650|27651|27652|38866|38867|48901|48905|48907|48909|48910|48911|48912|48915|48916|48917|48918|54465|54467|54468|54469|54470|54471|54472|125817|138253|174801|174803|174804|174805|175214|175215|175217|179411|179412|179413|179414|179416|179417|179418|179419|223774|239987|241153|241154|241156|241157|241158|241159|254209|254210|254211|254212|372233|374139|398125|398222|398226|398227|398316|398318|398657|398664|398678|398679|398682|398759|398760|398766|421862|442535|461199|461203|461389|461391|461709|487566|494969|497621|503676|513316|526264|526298|526306|526310|526481|526483|526484|526759|564738|564743|564745|564747|567334|567338|567341|570706|621820|640150|640151|640152|640153|640154|640155|640156|640157|640158|652098|652212|652331|653969|653975|653976|687787|693059|693060|693061|693062|695528|701802|738027|744533|752702|820384|820386|820387|820388|838558|838559|838560|838561|838562|838563|838564|838565|838566|852362|926270|926271|926272|926273|926274|926275|935593|935594|935595|935596|935597|935598|935599|935600|947499|947500|947501|947502|947503|956531|956532|959992|964672|969688|977406", + "upstreamId": "27450|27639|27641|27642|27643|27644|27645|27646|27648|27649|27650|27651|27652|38866|38867|48901|48905|48907|48909|48910|48911|48912|48915|48916|48917|48918|54465|54467|54468|54469|54470|54471|54472|125817|138253|174801|174803|174804|174805|175214|175215|175217|179411|179412|179413|179414|179416|179417|179418|179419|223774|239987|241153|241154|241156|241157|241158|241159|254209|254210|254211|254212|372233|374139|398125|398222|398226|398227|398316|398318|398657|398664|398678|398679|398682|398759|398760|398766|421862|442535|461199|461203|461389|461391|461709|487566|494969|497621|503676|513316|526264|526298|526306|526310|526481|526483|526484|526759|564738|564743|564745|564747|567334|567338|567341|570706|621820|640150|640151|640152|640153|640154|640155|640156|640157|640158|652098|652212|652331|653969|653975|653976|687787|693059|693060|693061|693062|695528|701802|738027|744533|752702|820384|820386|820387|820388|838558|838559|838560|838561|838562|838563|838564|838565|838566|852362|926270|926271|926272|926273|926274|926275|935593|935594|935595|935596|935597|935598|935599|935600|947499|947500|947501|947502|947503|956531|956532|959992|964672|969688|977406", "text": "Costello syndrome" }, { - "baseId": "27453|576344", + "upstreamId": "27453|576344", "text": "Familial isolated dilated cardiomyopathy" }, { - "baseId": "27458|27459|27460|27461|27462|27471|27472|27473|45542|52532|52533|52534|52536|52537|52541|52542|52547|52548|52554|52558|52559|52561|52565|141388|141390|171245|176074|176215|176339|179836|186575|186585|186586|231083|257237|344272|349397|861652|882545|882546|882547|882548|882937|882938|980392", + "upstreamId": "27458|27459|27460|27461|27462|27471|27472|27473|45542|52532|52533|52534|52536|52537|52541|52542|52547|52548|52554|52558|52559|52561|52565|141388|141390|171245|176074|176215|176339|179836|186575|186585|186586|231083|257237|344272|349397|861652|882545|882546|882547|882548|882937|882938|980392", "text": "Familial hypertrophic cardiomyopathy 7" }, { - "baseId": "27460|40515|40525|45545|52531|52532|52534|52541|52782|52786|52801|52821|52826|52838|75286|99451|99452|99456|99457|99460|133708|136049|141390|178927|197057|198589|206767|249759|257238|257239|257242|257243|257246|257247|257248|257251|257252|257253|278453|278454|278568|279423|279424|279425|279716|279717|280963|280964|280965|281106|281107|281108|281109|322278|322281|322290|322292|322305|322315|322319|322320|322321|331578|331581|331583|331587|331597|331610|331619|331628|331630|331646|334391|334413|338527|338558|338582|338583|338588|338608|338610|338614|338623|340274|340279|340282|340299|340308|340311|340314|340316|340327|340328|340329|340336|340337|344273|350406|350409|353523|353524|353525|447811|624664|649955|679527|679554|679555|679556|690510|746246|863829|863830|863831|863832|863833|863834|863835", + "upstreamId": "27460|40515|40525|45545|52531|52532|52534|52541|52782|52786|52801|52821|52826|52838|75286|99451|99452|99456|99457|99460|133708|136049|141390|178927|197057|198589|206767|249759|257238|257239|257242|257243|257246|257247|257248|257251|257252|257253|278453|278454|278568|279423|279424|279425|279716|279717|280963|280964|280965|281106|281107|281108|281109|322278|322281|322290|322292|322305|322315|322319|322320|322321|331578|331581|331583|331587|331597|331610|331619|331628|331630|331646|334391|334413|338527|338558|338582|338583|338588|338608|338610|338614|338623|340274|340279|340282|340299|340308|340311|340314|340316|340327|340328|340329|340336|340337|344273|350406|350409|353523|353524|353525|447811|624664|649955|679527|679554|679555|679556|690510|746246|863829|863830|863831|863832|863833|863834|863835", "text": "Familial restrictive cardiomyopathy" }, { - "baseId": "27460|40515|40525|45542|52531|52532|52533|52534|52536|52537|52541|52542|52547|52548|52561|54894|54903|136049|141388|141390|176339|179136|186575|186585|186586|231083|257237|257238|257239|257242|257243|257246|257247|257248|257251|257252|257253|302201|302204|302207|302210|302214|302217|302218|302225|305395|305441|305446|305448|305449|305450|305452|310209|310230|310235|310322|310359|334391|334413|344272|344273|349397|350406|350409|353523|353524|353525|882545|882546|882547|882548|882937|882938", + "upstreamId": "27460|40515|40525|45542|52531|52532|52533|52534|52536|52537|52541|52542|52547|52548|52561|54894|54903|136049|141388|141390|176339|179136|186575|186585|186586|231083|257237|257238|257239|257242|257243|257246|257247|257248|257251|257252|257253|302201|302204|302207|302210|302214|302217|302218|302225|305395|305441|305446|305448|305449|305450|305452|310209|310230|310235|310322|310359|334391|334413|344272|344273|349397|350406|350409|353523|353524|353525|882545|882546|882547|882548|882937|882938", "text": "Familial Hypertrophic Cardiomyopathy with Wolff-Parkinson-White Syndrome" }, { - "baseId": "27460|40515|40525|52531|52532|52534|52541|136049|141390|172233|257238|257239|257242|257243|257246|257247|257248|257251|257252|257253|306405|306413|310567|315937|315939|316166|334391|334413|344273|350406|350409|353523|353524|353525|447176|447181|447183|447187|447190|447198|447204|447206|447207|447209|447210|447247|447251|447256|447264|447273|447276|447281|447282|447284|447285|447287|447291|447297|447298|447300|447304|447308|447310|447312|447313|447354|447355|447358|447360|447363|447364|447370|447372|447374|447386|447389|447392|447393|515160|515163|515165|515167|515177|515183|515184|515187|515189|515191|515193|515196|515197|515199|515201|515205|515207|515209|515303|515304|515308|556642|556644|556699|556701|556703|556705|556983|556985|556987|556995|556996|558148|558166|558168|558170|558172|558174|626967|626968|626969|626970|626971|626972|626973|626974|626975|626976|626977|626978|626979|626980|626981|650545|690392|690393|690395|690396|690397|690398|695010|696162|696173|696176|706749|718285|729927|761279|777037|818847|822829|822861|822862|822863|822864|822865|822866|822867|822868|822869|822870|822871|822872|822873|822874|822875|822876|822877|822878|850736|851106|921683|921684|921685|921686|921687|921688|921689|921690|930089|930090|930091|930092|930093|930094|930095|930096|930097|939774|939775|941514|941515|941516|941517|952112|952113", + "upstreamId": "27460|40515|40525|52531|52532|52534|52541|136049|141390|172233|257238|257239|257242|257243|257246|257247|257248|257251|257252|257253|306405|306413|310567|315937|315939|316166|334391|334413|344273|350406|350409|353523|353524|353525|447176|447181|447183|447187|447190|447198|447204|447206|447207|447209|447210|447247|447251|447256|447264|447273|447276|447281|447282|447284|447285|447287|447291|447297|447298|447300|447304|447308|447310|447312|447313|447354|447355|447358|447360|447363|447364|447370|447372|447374|447386|447389|447392|447393|515160|515163|515165|515167|515177|515183|515184|515187|515189|515191|515193|515196|515197|515199|515201|515205|515207|515209|515303|515304|515308|556642|556644|556699|556701|556703|556705|556983|556985|556987|556995|556996|558148|558166|558168|558170|558172|558174|626967|626968|626969|626970|626971|626972|626973|626974|626975|626976|626977|626978|626979|626980|626981|650545|690392|690393|690395|690396|690397|690398|695010|696162|696173|696176|706749|718285|729927|761279|777037|818847|822829|822861|822862|822863|822864|822865|822866|822867|822868|822869|822870|822871|822872|822873|822874|822875|822876|822877|822878|850736|851106|921683|921684|921685|921686|921687|921688|921689|921690|930089|930090|930091|930092|930093|930094|930095|930096|930097|939774|939775|941514|941515|941516|941517|952112|952113", "text": "Dilated Cardiomyopathy, Recessive" }, { - "baseId": "27460|28456|28456|28457|28458|28459|28460|28461|28462|28463|28465|28465|28466|28467|28468|28469|28471|28473|28474|28475|28476|28477|28478|28479|28480|28481|28482|28483|28484|28485|28486|28487|28489|28490|28491|28492|28492|28493|28494|28495|28496|28497|28498|28499|28500|28502|28505|28507|45550|45551|45552|51713|52623|52624|52625|52626|141551|176542|176680|176681|179802|179804|179805|179806|179808|179808|179811|179812|179813|179816|189469|194297|198436|229100|230872|230873|245091|245092|245093|268248|331216|331218|346968|346970|346974|346975|348237|348238|376813|376815|402722|402791|442026|467969|469742|487972|488022|506936|516875|532239|532250|532260|532263|536022|570116|570118|570120|570121|571911|571914|571917|574739|574740|620897|647184|647185|647186|647187|647188|647189|647190|647191|653085|760730|760731|785892|791854|791855|791856|797668|821188|821200|846806|846807|846808|846809|846810|846811|846812|846813|851773|879163|879164|879165|879166|879167|879168|919795|920390|928690|928691|938416|938417|938418|938419|950501|950502|950503|958458", + "upstreamId": "27460|28456|28456|28457|28458|28459|28460|28461|28462|28463|28465|28465|28466|28467|28468|28469|28471|28473|28474|28475|28476|28477|28478|28479|28480|28481|28482|28483|28484|28485|28486|28487|28489|28490|28491|28492|28492|28493|28494|28495|28496|28497|28498|28499|28500|28502|28505|28507|45550|45551|45552|51713|52623|52624|52625|52626|141551|176542|176680|176681|179802|179804|179805|179806|179808|179808|179811|179812|179813|179816|189469|194297|198436|229100|230872|230873|245091|245092|245093|268248|331216|331218|346968|346970|346974|346975|348237|348238|376813|376815|402722|402791|442026|467969|469742|487972|488022|506936|516875|532239|532250|532260|532263|536022|570116|570118|570120|570121|571911|571914|571917|574739|574740|620897|647184|647185|647186|647187|647188|647189|647190|647191|653085|760730|760731|785892|791854|791855|791856|797668|821188|821200|846806|846807|846808|846809|846810|846811|846812|846813|851773|879163|879164|879165|879166|879167|879168|919795|920390|928690|928691|938416|938417|938418|938419|950501|950502|950503|958458", "text": "Amyloidogenic transthyretin amyloidosis" }, { - "baseId": "27460|45542|52532|52533|52534|52536|52537|52541|52542|52547|52548|52554|52559|52561|52567|141388|141390|176218|176339|186575|186585|186586|231083|257237|259051|344272|349397|882545|882546|882547|882548|882937|882938", + "upstreamId": "27460|45542|52532|52533|52534|52536|52537|52541|52542|52547|52548|52554|52559|52561|52567|141388|141390|176218|176339|186575|186585|186586|231083|257237|259051|344272|349397|882545|882546|882547|882548|882937|882938", "text": "Dilated cardiomyopathy 2A" }, { - "baseId": "27460|27462|27463|27464|27465|27467|27468|29101|45542|52532|52533|52534|52536|52537|52541|52542|52547|52548|52554|52559|52561|141388|141390|176073|176215|176339|186575|186585|186586|231083|257237|260536|260545|344272|349397|536005|882545|882546|882547|882548|882937|882938", + "upstreamId": "27460|27462|27463|27464|27465|27467|27468|29101|45542|52532|52533|52534|52536|52537|52541|52542|52547|52548|52554|52559|52561|141388|141390|176073|176215|176339|186575|186585|186586|231083|257237|260536|260545|344272|349397|536005|882545|882546|882547|882548|882937|882938", "text": "Familial restrictive cardiomyopathy 1" }, { - "baseId": "27469|27470|52554|52559|52559|176215|681872", + "upstreamId": "27469|27470|52554|52559|52559|176215|681872", "text": "Dilated cardiomyopathy 1FF" }, { - "baseId": "27474|27475|27478|29184|40531|40532|100020|135094|135095|135096|135097|135098|135099|135100|135101|135102|135103|135104|135105|135106|135107|135108|135109|135110|135111|135112|135113|207861|208344|208345|208349|254091|254100|254104|256047|256051|256054|256055|256056|256057|256058|256059|256060|256061|256062|256063|256064|256069|256070|256075|265977|313520|319735|319756|325800|325923|326878|326880|326881|327185|327186|327187|327192|327199|327200|327201|327202|327209|327210|327215|327216|327221|327228|327231|327245|327248|327252|327253|327254|327255|337030|337031|337032|337035|337043|337049|337053|337054|337057|337065|337071|337078|337082|337084|337085|337086|343251|343263|343264|343268|343270|343275|343278|343279|343283|343284|343289|343290|343292|343295|343302|343304|343305|343306|343310|343312|344858|344860|344863|344864|344865|344866|344867|344869|344872|344873|344875|344876|504193|513366|539022|578537|578665|679765|681917|694024|694026|694027|694031|694032|694033|694038|694041|695727|703943|867709|867728|867729|867730|867731|867733|868633|868635|868639|876409|876410|876411|876412|876413|876414|876415|876416|876417|876418|876419|876420|876421|876422|876423|876424|876425|876426|876427|876428|876429|876430|876431|876752|876753|876754|876755|876756|876757|876758|876759|876760|876761|876762|876763|876764|876765|880462|964359", + "upstreamId": "27474|27475|27478|29184|40531|40532|100020|135094|135095|135096|135097|135098|135099|135100|135101|135102|135103|135104|135105|135106|135107|135108|135109|135110|135111|135112|135113|207861|208344|208345|208349|254091|254100|254104|256047|256051|256054|256055|256056|256057|256058|256059|256060|256061|256062|256063|256064|256069|256070|256075|265977|313520|319735|319756|325800|325923|326878|326880|326881|327185|327186|327187|327192|327199|327200|327201|327202|327209|327210|327215|327216|327221|327228|327231|327245|327248|327252|327253|327254|327255|337030|337031|337032|337035|337043|337049|337053|337054|337057|337065|337071|337078|337082|337084|337085|337086|343251|343263|343264|343268|343270|343275|343278|343279|343283|343284|343289|343290|343292|343295|343302|343304|343305|343306|343310|343312|344858|344860|344863|344864|344865|344866|344867|344869|344872|344873|344875|344876|504193|513366|539022|578537|578665|679765|681917|694024|694026|694027|694031|694032|694033|694038|694041|695727|703943|867709|867728|867729|867730|867731|867733|868633|868635|868639|876409|876410|876411|876412|876413|876414|876415|876416|876417|876418|876419|876420|876421|876422|876423|876424|876425|876426|876427|876428|876429|876430|876431|876752|876753|876754|876755|876756|876757|876758|876759|876760|876761|876762|876763|876764|876765|880462|964359", "text": "Distal arthrogryposis type 2B" }, { - "baseId": "27475|208347|237493|247055|322600|322680|330009|330036|480565|514015|514096|514097|905018|905019|905020|905021|983306", + "upstreamId": "27475|208347|237493|247055|322600|322680|330009|330036|480565|514015|514096|514097|905018|905019|905020|905021|983306", "text": "Distal arthrogryposis" }, { - "baseId": "27475|480565|480566|480567", + "upstreamId": "27475|480565|480566|480567", "text": "Ulnar deviation of the wrist" }, { - "baseId": "27475", + "upstreamId": "27475", "text": "Calcaneovalgus deformity" }, { - "baseId": "27475", + "upstreamId": "27475", "text": "Congenital finger flexion contractures" }, { - "baseId": "27479|40515|40516|40517|40523|40525|103512|136048|136049|191025|257229|257235|334388|334390|344270|349393|349396|350399|350402|376864|376867|377843|430268|469272|469277|470781|470782|470786|471289|471291|488431|507573|532393|533388|533410|533449|533456|533948|533950|570286|571088|573413|575056|575057|575058|613976|648488|648489|648490|648491|648492|648493|648494|648495|653074|653472|653586|653636|694515|772907|778657|792815|848078|848079|848080|848081|851832|851834|858788|858789|882541|882542|882543|882544|882936|929114|929115|929116|938852|938853|938854|938855|941247|950921|950922|950923|950924|958738", + "upstreamId": "27479|40515|40516|40517|40523|40525|103512|136048|136049|191025|257229|257235|334388|334390|344270|349393|349396|350399|350402|376864|376867|377843|430268|469272|469277|470781|470782|470786|471289|471291|488431|507573|532393|533388|533410|533449|533456|533948|533950|570286|571088|573413|575056|575057|575058|613976|648488|648489|648490|648491|648492|648493|648494|648495|653074|653472|653586|653636|694515|772907|778657|792815|848078|848079|848080|848081|851832|851834|858788|858789|882541|882542|882543|882544|882936|929114|929115|929116|938852|938853|938854|938855|941247|950921|950922|950923|950924|958738", "text": "Nemaline myopathy 5" }, { - "baseId": "27480|27481|27482|27484|53844|53844|53845|53846|53846|53848|53849|173801|173802|173943|173943|179069|179071|179073|179075|179077|179079|179080|221423|221424|229105|239289|260530|291189|291190|292148|292151|292151|295592|295721|367337|367338|368738|393757|393762|393766|393961|393963|394176|394179|453086|453105|453108|453121|453436|481126|481126|487102|495462|500616|519612|519615|519623|519872|559122|559124|559126|559128|559130|559132|563270|631741|631742|631743|651121|686457|686457|689745|691475|775027|819413|828508|828509|828510|923323|923324|932067|940762|943686|960524", + "upstreamId": "27480|27481|27482|27484|53844|53844|53845|53846|53846|53848|53849|173801|173802|173943|173943|179069|179071|179073|179075|179077|179079|179080|221423|221424|229105|239289|260530|291189|291190|292148|292151|292151|295592|295721|367337|367338|368738|393757|393762|393766|393961|393963|394176|394179|453086|453105|453108|453121|453436|481126|481126|487102|495462|500616|519612|519615|519623|519872|559122|559124|559126|559128|559130|559132|563270|631741|631742|631743|651121|686457|686457|689745|691475|775027|819413|828508|828509|828510|923323|923324|932067|940762|943686|960524", "text": "Dilated cardiomyopathy 1Z" }, { - "baseId": "27481|27481|27482|27482|27483|27484|27484|48431|53844|53844|53845|53846|53846|53848|53849|173801|173802|173943|173943|179069|179071|179073|179075|179077|179079|179080|221423|221424|229105|239289|260530|291189|291190|292148|292151|292151|295592|295721|367337|367338|368738|393757|393762|393766|393961|393963|394176|394179|453086|453105|453108|453121|453436|481126|481126|487102|495462|500616|519612|519615|519623|519872|559122|559124|559126|559128|559130|559132|563270|631741|631742|631743|651121|686457|686457|689745|691475|775027|819413|828508|828509|828510|923323|923324|932067|940762|943686|960524", + "upstreamId": "27481|27481|27482|27482|27483|27484|27484|48431|53844|53844|53845|53846|53846|53848|53849|173801|173802|173943|173943|179069|179071|179073|179075|179077|179079|179080|221423|221424|229105|239289|260530|291189|291190|292148|292151|292151|295592|295721|367337|367338|368738|393757|393762|393766|393961|393963|394176|394179|453086|453105|453108|453121|453436|481126|481126|487102|495462|500616|519612|519615|519623|519872|559122|559124|559126|559128|559130|559132|563270|631741|631742|631743|651121|686457|686457|689745|691475|775027|819413|828508|828509|828510|923323|923324|932067|940762|943686|960524", "text": "Familial hypertrophic cardiomyopathy 13" }, { - "baseId": "27485|27486|27486|27487|27487|27488|27489|27489|27490|27492|27493|51279|150176|206725|206725|236875|236876|276423|276424|276425|276466|276470|276474|276477|276484|276490|276495|276498|276499|276500|276651|276653|276662|276663|276664|276666|276667|276677|276678|276685|276693|276703|276704|276710|277182|277187|277213|277218|277230|277231|277232|277237|277266|277269|277271|277275|277276|277276|277291|277293|277297|277318|277319|277329|277330|277333|277344|277366|277375|430975|447137|447221|447294|498039|515083|515208|515220|515222|552032|556489|556651|556651|612471|626844|626845|626846|761219|789847|789848|822748|850727|862275|862276|862277|862278|862279|862280|862281|862282|862283|862284|862285|862287|862288|862289|862291|862293|862294|862295|862296|862298|862299|862300|862302|862304|862305|862306|862308|862309|862310|862311|862312|862313|862314|862315|862316|862317|862318|862319|862320|862321|862322|862323|862324|862325|862326|862327|862328|862329|862330|862331|862332|862333|862334|862335|862336|862337|862338|862339|862340|862341|862342|862343|862344|862345|864981|921645|921646|921647|921648|952072|960406|963116|964129", + "upstreamId": "27485|27486|27486|27487|27487|27488|27489|27489|27490|27492|27493|51279|150176|206725|206725|236875|236876|276423|276424|276425|276466|276470|276474|276477|276484|276490|276495|276498|276499|276500|276651|276653|276662|276663|276664|276666|276667|276677|276678|276685|276693|276703|276704|276710|277182|277187|277213|277218|277230|277231|277232|277237|277266|277269|277271|277275|277276|277276|277291|277293|277297|277318|277319|277329|277330|277333|277344|277366|277375|430975|447137|447221|447294|498039|515083|515208|515220|515222|552032|556489|556651|556651|612471|626844|626845|626846|761219|789847|789848|822748|850727|862275|862276|862277|862278|862279|862280|862281|862282|862283|862284|862285|862287|862288|862289|862291|862293|862294|862295|862296|862298|862299|862300|862302|862304|862305|862306|862308|862309|862310|862311|862312|862313|862314|862315|862316|862317|862318|862319|862320|862321|862322|862323|862324|862325|862326|862327|862328|862329|862330|862331|862332|862333|862334|862335|862336|862337|862338|862339|862340|862341|862342|862343|862344|862345|864981|921645|921646|921647|921648|952072|960406|963116|964129", "text": "Nemaline myopathy 1" }, { - "baseId": "27489|27493", + "upstreamId": "27489|27493", "text": "Cap myopathy 1" }, { - "baseId": "27494|27495|27496|40542|40544|40548|40549|52580|52591|52592|52619|141400|175996|176137|179749|323022|332635|332637|332642|339583|340975|340977|340980|340984|340985|615125|693707|802205|802206|873933|873934|873935|873936|873937|873938|873939|873940|876550|966357|971026", + "upstreamId": "27494|27495|27496|40542|40544|40548|40549|52580|52591|52592|52619|141400|175996|176137|179749|323022|332635|332637|332642|339583|340975|340977|340980|340984|340985|615125|693707|802205|802206|873933|873934|873935|873936|873937|873938|873939|873940|876550|966357|971026", "text": "Familial hypertrophic cardiomyopathy 3" }, { - "baseId": "27495|27497|27498|40544|40548|40549|52580|52590|52591|52592|52619|141400|175996|176137|248636|323022|332635|332637|332642|339583|340975|340977|340980|340984|340985|693707|873933|873934|873935|873936|873937|873938|873939|873940|876550|919585|919586|919587|980512", + "upstreamId": "27495|27497|27498|40544|40548|40549|52580|52590|52591|52592|52619|141400|175996|176137|248636|323022|332635|332637|332642|339583|340975|340977|340980|340984|340985|693707|873933|873934|873935|873936|873937|873938|873939|873940|876550|919585|919586|919587|980512", "text": "Dilated cardiomyopathy 1Y" }, { - "baseId": "27499|27501|27503|27504|100021|100022|100024|100025|150164|150174|178104|193519|194912|253550|274163|308279|308282|308294|312682|312683|312684|312692|319124|319129|319130|439464|444491|459224|459526|459528|460065|460073|460075|460082|502950|524620|524852|524985|525138|539022|552203|563259|565912|569071|578536|578537|622438|638296|638297|655964|655965|655966|692670|692671|775415|805017|805018|820139|836143|836144|836145|836146|836147|902009|902010|902011|902012|902013|902014|902015|902016|934772|965429", + "upstreamId": "27499|27501|27503|27504|100021|100022|100024|100025|150164|150174|178104|193519|194912|253550|274163|308279|308282|308294|312682|312683|312684|312692|319124|319129|319130|439464|444491|459224|459526|459528|460065|460073|460075|460082|502950|524620|524852|524985|525138|539022|552203|563259|565912|569071|578536|578537|622438|638296|638297|655964|655965|655966|692670|692671|775415|805017|805018|820139|836143|836144|836145|836146|836147|902009|902010|902011|902012|902013|902014|902015|902016|934772|965429", "text": "Distal arthrogryposis type 1A" }, { - "baseId": "27500|27501|27503|27504|100021|100022|150164|150174|226473|308279|308282|308294|312683|312684|312692|319124|319129|319130|460075|539022|608956|655964|655965|655966|902009|902010|902011|902012|902013|902014|902015|902016|965429", + "upstreamId": "27500|27501|27503|27504|100021|100022|150164|150174|226473|308279|308282|308294|312683|312684|312692|319124|319129|319130|460075|539022|608956|655964|655965|655966|902009|902010|902011|902012|902013|902014|902015|902016|965429", "text": "Nemaline myopathy 4" }, { - "baseId": "27502|619842|619843", + "upstreamId": "27502|619842|619843", "text": "ARTHROGRYPOSIS, DISTAL, TYPE 2B4" }, { - "baseId": "27504|27505|27506", + "upstreamId": "27504|27505|27506", "text": "Cap myopathy 2" }, { - "baseId": "27507|27509|27510|27511|27512|139884|139885|318369|318370|318372|318373|318374|318380|326497|326499|326508|326525|326526|326542|332747|334368|334374|334376|334381|334382|353255|353256|609859|615918|622418|725256|725257|799727|870376|870377|870378|870379|870380|870381|870382|870383|870384|870385|870386|870387|870388|870389|870390|872288|981826", + "upstreamId": "27507|27509|27510|27511|27512|139884|139885|318369|318370|318372|318373|318374|318380|326497|326499|326508|326525|326526|326542|332747|334368|334374|334376|334381|334382|353255|353256|609859|615918|622418|725256|725257|799727|870376|870377|870378|870379|870380|870381|870382|870383|870384|870385|870386|870387|870388|870389|870390|872288|981826", "text": "Triosephosphate isomerase deficiency" }, { - "baseId": "27508", + "upstreamId": "27508", "text": "Triosephosphate isomerase manchester" }, { - "baseId": "27513|27514|44673|45263|51676|53486|136111|171193|177252|186334|189960|193881|193925|193983|196533|196600|199336|227842|331167|398965|399928|522213|568296|622688|622689|624863|629097|966466|966485|966505", + "upstreamId": "27513|27514|44673|45263|51676|53486|136111|171193|177252|186334|189960|193881|193925|193983|196533|196600|199336|227842|331167|398965|399928|522213|568296|622688|622689|624863|629097|966466|966485|966505", "text": "Arrhythmogenic right ventricular dysplasia, familial 1" }, { - "baseId": "27513|45760|45761|45763|143119|153683|165589|189960|189961|189962|199890|209425|209426|209427|209429|209431|209432|209434|209442|224475|226713|226714|226715|226720|226721|228353|241889|241890|241891|241893|241894|241895|241896|241897|279021|279029|279031|279036|279038|279052|279057|279060|279076|279092|279098|279099|279114|279116|279117|279120|279124|279129|279132|279190|279191|279201|279217|279315|279317|279319|279322|279328|279331|279332|280476|280477|280478|280480|280481|280491|280500|280510|280511|280528|280529|280533|280534|280535|280537|280542|280548|280552|280553|280568|280570|280571|280572|280573|280574|280576|280579|280580|280581|280584|280609|280610|280614|280624|280625|280627|280629|330677|337312|339325|339326|361158|361850|364644|364755|364894|373181|374363|376206|376215|376217|391046|399744|399746|399925|399928|399933|399935|399946|399950|400296|400297|400537|400541|400543|400547|400548|405051|415404|445251|463499|463501|463508|463511|464101|464105|464107|464112|464114|464116|464123|464127|464134|464397|464498|464504|464505|464509|464516|464519|464522|480527|486712|504866|510506|510510|510513|510514|510517|512797|528301|528305|528309|528381|528760|528762|528768|528845|536167|537682|556784|566629|566631|566633|568286|568296|568297|569031|569032|569035|569037|572926|572928|572929|609899|611984|642729|642730|642731|642732|642733|642734|642735|642736|642737|642738|652883|652886|655064|684527|688371|784792|797070|799165|820650|841825|841826|841827|841828|841829|841830|841831|841832|841833|841834|851587|852015|863592|863593|863594|863595|863596|863597|863598|863599|863618|863619|863621|863622|863623|863624|863625|863626|863627|863628|863629|863630|863631|863632|863633|863634|863635|863636|863637|863638|863639|865116|865117|865118|927177|927178|927179|927180|936748|941067|948698|948699", + "upstreamId": "27513|45760|45761|45763|143119|153683|165589|189960|189961|189962|199890|209425|209426|209427|209429|209431|209432|209434|209442|224475|226713|226714|226715|226720|226721|228353|241889|241890|241891|241893|241894|241895|241896|241897|279021|279029|279031|279036|279038|279052|279057|279060|279076|279092|279098|279099|279114|279116|279117|279120|279124|279129|279132|279190|279191|279201|279217|279315|279317|279319|279322|279328|279331|279332|280476|280477|280478|280480|280481|280491|280500|280510|280511|280528|280529|280533|280534|280535|280537|280542|280548|280552|280553|280568|280570|280571|280572|280573|280574|280576|280579|280580|280581|280584|280609|280610|280614|280624|280625|280627|280629|330677|337312|339325|339326|361158|361850|364644|364755|364894|373181|374363|376206|376215|376217|391046|399744|399746|399925|399928|399933|399935|399946|399950|400296|400297|400537|400541|400543|400547|400548|405051|415404|445251|463499|463501|463508|463511|464101|464105|464107|464112|464114|464116|464123|464127|464134|464397|464498|464504|464505|464509|464516|464519|464522|480527|486712|504866|510506|510510|510513|510514|510517|512797|528301|528305|528309|528381|528760|528762|528768|528845|536167|537682|556784|566629|566631|566633|568286|568296|568297|569031|569032|569035|569037|572926|572928|572929|609899|611984|642729|642730|642731|642732|642733|642734|642735|642736|642737|642738|652883|652886|655064|684527|688371|784792|797070|799165|820650|841825|841826|841827|841828|841829|841830|841831|841832|841833|841834|851587|852015|863592|863593|863594|863595|863596|863597|863598|863599|863618|863619|863621|863622|863623|863624|863625|863626|863627|863628|863629|863630|863631|863632|863633|863634|863635|863636|863637|863638|863639|865116|865117|865118|927177|927178|927179|927180|936748|941067|948698|948699", "text": "Loeys-Dietz syndrome 4" }, { - "baseId": "27515|27516|138646|138660|138660|165578|178594|178757|213589|221811|223687|223688|224369|258556|258559|258583|258591|258594|258610|265345|270378|270379|270418|272323|361195|363225|370210|370282|370782|370791|396986|396996|397124|397338|397391|444444|459315|459333|459370|459780|465312|480522|510047|510064|510103|524714|563079|568846|581893|581894|581895|581896|581897|581898|581899|581900|581901|581902|581903|581904|581905|581906|581907|581908|581909|581910|614340|623396|672076|919208|919209|961613|964321|965624", + "upstreamId": "27515|27516|138646|138660|138660|165578|178594|178757|213589|221811|223687|223688|224369|258556|258559|258583|258591|258594|258610|265345|270378|270379|270418|272323|361195|363225|370210|370282|370782|370791|396986|396996|397124|397338|397391|444444|459315|459333|459370|459780|465312|480522|510047|510064|510103|524714|563079|568846|581893|581894|581895|581896|581897|581898|581899|581900|581901|581902|581903|581904|581905|581906|581907|581908|581909|581910|614340|623396|672076|919208|919209|961613|964321|965624", "text": "Aortic valve disorder" }, { - "baseId": "27517|27518|27519|27520|27521|27522|27523|27524|27525|27526|27527|27528|27529|27530|27531|27532|27533|27534|27535|27536|27537|27538|27539|47521|48121|48122|48123|48124|48125|48126|48127|48128|48129|48130|48131|48132|48133|48134|48135|48136|213952|227357|237394|244096|254935|254936|260054|260055|264584|264686|264694|264796|320400|320403|320404|320405|320406|320410|329095|329100|329105|329106|329124|329126|329128|329134|329135|335710|335711|335729|335747|335757|335758|335760|337546|337550|337554|337557|337558|337566|337573|337576|337578|360047|360057|360090|360147|360189|360191|360193|409111|414713|445218|445221|547123|547125|547129|547133|547137|547138|547147|547149|547150|547155|547156|547274|547280|547289|547292|547293|547301|547304|547306|547310|547314|547316|547317|547323|547436|547439|547444|547446|547449|547454|547455|547457|547459|547461|547465|547797|547800|547806|547810|547813|547814|547816|547818|547821|547822|547823|622234|622235|622236|622237|622238|622239|622240|622241|622242|622243|622263|622264|682508|702841|714090|714091|714093|725637|725638|725639|725643|725644|725645|730934|739183|739184|739185|739186|739187|744801|744812|754001|754002|754003|754004|754006|754007|754010|754011|760298|769757|769758|769759|769760|769761|769762|769765|769766|769773|769774|769775|775930|776263|778054|784705|802085|841350|871757|871758|871759|871760|871761|871762|871763|871764|871765|871766|871767|871768|871769|871770|871771|871772|871773|872366|979476|979477|979478|979479|979480|979481|979482|979483|979484|979485|979486|979487|979488|979489|979490|979491|979492|979493|979494|979495|979496|979497|979498|979499|979500|979501|979502|979503|979504|979505|979506|979507|979508|979509", + "upstreamId": "27517|27518|27519|27520|27521|27522|27523|27524|27525|27526|27527|27528|27529|27530|27531|27532|27533|27534|27535|27536|27537|27538|27539|47521|48121|48122|48123|48124|48125|48126|48127|48128|48129|48130|48131|48132|48133|48134|48135|48136|213952|227357|237394|244096|254935|254936|260054|260055|264584|264686|264694|264796|320400|320403|320404|320405|320406|320410|329095|329100|329105|329106|329124|329126|329128|329134|329135|335710|335711|335729|335747|335757|335758|335760|337546|337550|337554|337557|337558|337566|337573|337576|337578|360047|360057|360090|360147|360189|360191|360193|409111|414713|445218|445221|547123|547125|547129|547133|547137|547138|547147|547149|547150|547155|547156|547274|547280|547289|547292|547293|547301|547304|547306|547310|547314|547316|547317|547323|547436|547439|547444|547446|547449|547454|547455|547457|547459|547461|547465|547797|547800|547806|547810|547813|547814|547816|547818|547821|547822|547823|622234|622235|622236|622237|622238|622239|622240|622241|622242|622243|622263|622264|682508|702841|714090|714091|714093|725637|725638|725639|725643|725644|725645|730934|739183|739184|739185|739186|739187|744801|744812|754001|754002|754003|754004|754006|754007|754010|754011|760298|769757|769758|769759|769760|769761|769762|769765|769766|769773|769774|769775|775930|776263|778054|784705|802085|841350|871757|871758|871759|871760|871761|871762|871763|871764|871765|871766|871767|871768|871769|871770|871771|871772|871773|872366|979476|979477|979478|979479|979480|979481|979482|979483|979484|979485|979486|979487|979488|979489|979490|979491|979492|979493|979494|979495|979496|979497|979498|979499|979500|979501|979502|979503|979504|979505|979506|979507|979508|979509", "text": "Autosomal recessive congenital ichthyosis 1" }, { - "baseId": "27520|48145|213952|213955|360090|360854|361028|361275|513891|514093|514094|536019|609204|609271|801514", + "upstreamId": "27520|48145|213952|213955|360090|360854|361028|361275|513891|514093|514094|536019|609204|609271|801514", "text": "Ichthyosis (disease)" }, { - "baseId": "27540|27541|27550|27558|53818|209594|258306|361860|389564|393403|443412|561355|614261|614262", + "upstreamId": "27540|27541|27550|27558|53818|209594|258306|361860|389564|393403|443412|561355|614261|614262", "text": "Hereditary nonpolyposis colorectal cancer type 6" }, { - "baseId": "27541|27548|27550|27551|27558|27563|27564|27564|27565|31496|45518|45519|45520|45521|45523|45526|45527|45528|45529|45530|53818|53818|53819|53824|54260|54264|107231|141338|141339|141340|142915|142916|142917|142918|165588|165591|171075|171083|171185|173775|173912|173913|173914|173916|174853|174855|178439|178496|178507|178513|178514|178600|178705|178706|178707|195694|197618|209597|209598|209606|209607|209619|209630|209841|210162|210164|210170|210182|210245|210268|224187|224188|224262|224263|228353|242107|246943|247104|258614|258946|268446|279051|279058|279076|279101|279111|279138|279211|279220|279253|279316|279320|279321|280482|280487|280495|280519|280527|280541|280567|289903|289904|289915|289923|289924|289925|289927|289934|289937|289942|290671|290672|290673|290674|290679|290680|290683|290684|290685|290686|290687|290688|290689|290690|290691|290692|290693|290694|290695|290696|290697|293820|293826|293828|293830|293831|293832|293833|293834|293835|293837|293840|293841|293844|293845|293846|293849|293850|293870|293876|294355|294357|294358|294359|294361|294363|294365|294366|294368|294372|294373|294376|294377|294379|309059|309061|309069|309083|309089|309094|309095|309097|309098|309101|309105|309112|309113|309123|309124|309129|309130|309138|309140|309141|309142|309146|309147|309149|313814|313815|313818|313819|313820|313821|313823|313824|313825|313832|313838|313841|313842|313845|313847|313848|313852|313855|313865|313866|313875|313882|313883|319644|319648|319649|319653|319654|319676|319678|319685|319689|319695|319697|319702|319710|319711|319718|319719|319722|319723|319729|319736|319737|319742|319743|319754|319762|320207|320215|320222|320223|320224|320225|320231|320236|320237|320244|320245|320247|320248|320250|320251|320252|320253|320255|320256|320259|320260|320272|320273|320274|320275|320279|320280|320292|323132|323139|323144|323145|323149|323153|323154|323156|323160|323164|323167|323170|323178|323180|323189|323195|323205|323206|323208|323212|323215|323216|323217|332768|332774|332779|332781|332783|332784|332785|332787|332797|332799|332807|332808|332821|332822|332825|332827|332835|332836|332842|332843|332846|332848|332849|332858|332862|332871|332873|332874|332876|339731|339739|339741|339752|339754|339758|339761|339764|339766|339768|339771|339773|339779|339781|339786|341125|341126|341131|341133|341142|341143|341152|341154|341157|341159|341161|341162|341163|341164|341176|341177|341179|341181|341184|341187|341188|341189|341208|341212|341214|341216|353326|361860|452306|485735|485742|485753|654781", + "upstreamId": "27541|27548|27550|27551|27558|27563|27564|27564|27565|31496|45518|45519|45520|45521|45523|45526|45527|45528|45529|45530|53818|53818|53819|53824|54260|54264|107231|141338|141339|141340|142915|142916|142917|142918|165588|165591|171075|171083|171185|173775|173912|173913|173914|173916|174853|174855|178439|178496|178507|178513|178514|178600|178705|178706|178707|195694|197618|209597|209598|209606|209607|209619|209630|209841|210162|210164|210170|210182|210245|210268|224187|224188|224262|224263|228353|242107|246943|247104|258614|258946|268446|279051|279058|279076|279101|279111|279138|279211|279220|279253|279316|279320|279321|280482|280487|280495|280519|280527|280541|280567|289903|289904|289915|289923|289924|289925|289927|289934|289937|289942|290671|290672|290673|290674|290679|290680|290683|290684|290685|290686|290687|290688|290689|290690|290691|290692|290693|290694|290695|290696|290697|293820|293826|293828|293830|293831|293832|293833|293834|293835|293837|293840|293841|293844|293845|293846|293849|293850|293870|293876|294355|294357|294358|294359|294361|294363|294365|294366|294368|294372|294373|294376|294377|294379|309059|309061|309069|309083|309089|309094|309095|309097|309098|309101|309105|309112|309113|309123|309124|309129|309130|309138|309140|309141|309142|309146|309147|309149|313814|313815|313818|313819|313820|313821|313823|313824|313825|313832|313838|313841|313842|313845|313847|313848|313852|313855|313865|313866|313875|313882|313883|319644|319648|319649|319653|319654|319676|319678|319685|319689|319695|319697|319702|319710|319711|319718|319719|319722|319723|319729|319736|319737|319742|319743|319754|319762|320207|320215|320222|320223|320224|320225|320231|320236|320237|320244|320245|320247|320248|320250|320251|320252|320253|320255|320256|320259|320260|320272|320273|320274|320275|320279|320280|320292|323132|323139|323144|323145|323149|323153|323154|323156|323160|323164|323167|323170|323178|323180|323189|323195|323205|323206|323208|323212|323215|323216|323217|332768|332774|332779|332781|332783|332784|332785|332787|332797|332799|332807|332808|332821|332822|332825|332827|332835|332836|332842|332843|332846|332848|332849|332858|332862|332871|332873|332874|332876|339731|339739|339741|339752|339754|339758|339761|339764|339766|339768|339771|339773|339779|339781|339786|341125|341126|341131|341133|341142|341143|341152|341154|341157|341159|341161|341162|341163|341164|341176|341177|341179|341181|341184|341187|341188|341189|341208|341212|341214|341216|353326|361860|452306|485735|485742|485753|654781", "text": "Loeys-Dietz syndrome" }, { - "baseId": "27541|27563|31461|31462|31463|31464|31465|31466|31467|31468|31468|31469|31469|31470|31470|31471|31472|31475|31476|31476|31478|31478|31479|31479|31481|31482|31483|31484|31484|31487|31488|31488|31489|31490|31490|31490|31491|31491|31494|31495|31496|31496|31499|31500|31500|31501|31502|31503|31505|31505|31506|31507|38654|44696|44697|44698|44698|44699|44700|44701|44702|44704|44705|44705|44706|44706|44707|44707|44708|44708|44709|44710|44711|44712|44713|44714|44715|44717|44718|44719|44720|44721|44722|44723|44724|44724|44725|44726|44726|44727|44728|44728|44729|44729|44730|44731|44731|44732|44733|44735|44735|44736|44736|44737|44738|44738|44739|44739|44740|44740|44741|44742|44742|44743|44744|44745|44745|44746|44746|44747|44748|44748|44749|44749|44750|44750|44751|44753|44754|44756|44756|44757|44757|44758|44759|44760|44761|44761|44762|44763|44764|44765|44766|44767|44767|44768|44768|44769|44770|44771|44771|44772|44772|44773|44774|44775|44775|44776|44777|44778|44778|44779|44779|44780|44781|44782|44782|44783|44784|44785|44787|44788|44789|44790|44790|44791|44792|44792|44794|44795|44796|44796|44797|44797|45520|45528|45530|48266|48266|49841|51450|51451|51452|51453|51454|51454|51455|51455|51456|51457|51457|51458|51459|51461|51462|51463|51464|51464|51465|51465|51466|51466|51467|51468|51468|51469|51470|51470|51471|51472|51473|51474|51475|51476|51477|51477|51479|51480|51480|51481|51481|51482|51484|51485|51487|51488|51489|51489|51490|51490|51491|51491|51492|51494|51495|51495|51496|51497|51497|51499|51500|51500|51501|51502|51503|51504|51504|51505|51505|51506|51507|51507|51508|51510|51511|51512|51513|51513|51514|51515|51516|51517|51520|51521|51521|51523|51524|51524|51525|51525|51526|51526|51527|51528|51529|51530|51531|51533|51533|51534|51534|51535|51535|51536|51536|51537|51537|51538|51539|51540|51541|51542|51543|51543|51544|51545|51546|51546|51547|51548|51549|51550|51551|51551|51552|51552|51553|51553|51554|51555|51556|51558|51559|51560|51561|51562|51562|51563|51564|51564|51565|51566|51567|51568|51570|51571|51571|51572|51572|51573|51574|51575|51576|51577|51577|51578|51578|51580|51581|51582|51582|51583|51583|51584|51588|51589|51590|51591|51591|51592|51592|51593|51595|51595|51596|51597|51598|51599|51599|51603|51603|51604|51604|51606|51607|51608|51609|51609|51611|51613|51613|51614|51615|51616|51617|51618|53818|53819|53825|53828|77989|132461|132465|132473|141002|141002|141003|141004|141005|141005|141007|141007|141008|141009|141009|141012|141013|141014|141014|141016|141016|141017|141017|141339|141340|165543|165543|165544|165544|165545|165546|165547|165580|171082|171083|171171|171172|171172|171173|171173|171174|171176|171176|171177|171177|171178|171178|171179|171179|171180|171180|171181|171181|171182|171182|171763|173774|175772|175953|175978|175979|175979|175980|175982|175982|175983|175984|175986|175987|175987|175988|175988|175990|175990|175991|175991|176121|176122|176122|176123|176123|176124|176125|176127|176128|176129|176130|176130|176131|176132|176133|176134|178494|178495|178514|178690|178691|178692|178694|178694|178696|178697|178698|178699|178699|178700|178700|178701|178702|178703|178713|193009|194183|194769|197570|197570|197573|197574|197576|197579|197580|197581|197581|197582|197585|197585|197587|197588|197589|197590|197591|197592|197594|197596|197600|197600|197601|197602|197602|197603|197604|197604|197605|197610|197613|197615|197615|197617|197617|197618|197619|197619|197620|197620|197624|197625|197626|197631|197631|197632|197632|197634|197637|197640|197641|197641|197643|197645|197645|197646|197647|197649|197650|197650|197655|197655|197657|197658|197660|197661|197665|197665|197669|197672|197672|197674|197674|197675|197676|197677|197677|197678|197681|197685|197685|197686|197688|197690|197690|197698|197701|197703|197705|197705|197710|197710|197715|197715|197717|197717|197719|197721|197723|197723|197726|197731|197734|197735|197736|197739|197742|197742|197743|197743|197745|197746|197746|197749|197750|197753|197755|197755|197756|197756|197757|197757|197762|197763|197764|197765|197765|197771|197773|197774|197774|197776|197777|197777|197786|197787|197788|197789|197789|197793|197793|197795|197799|197802|197803|197806|197806|197808|197808|197811|197811|197815|197817|197817|197820|197823|197823|197824|197827|197829|197890|209570|209597|209607|209619|209630|222428|222429|224247|224299|224366|224368|224479|224480|224481|224481|224482|224483|224484|224485|224485|224486|224487|224488|224489|224489|224490|224491|224492|224492|224493|224494|224495|224496|224497|224497|224498|224499|224500|224500|224501|224502|224503|224504|224504|227370|227370|227463|227463|230585|230588|230590|230592|242025|242058|242058|242059|242059|242061|242062|242063|242064|242065|242066|242066|242067|242068|242069|242070|242071|242072|242072|242073|242074|242075|242076|242077|242079|242080|242080|242081|242081|242082|242082|242083|242084|255255|255255|255268|258264|258815|258815|258816|258816|258817|258818|258819|258821|258823|258823|258824|258825|258827|258829|258830|258836|258836|258842|258842|258845|258845|258847|258847|258851|258855|258859|258873|258874|258883|258885|258886|258887|258887|258890|258899|258906|258907|258909|258909|258910|258914|258917|258919|258925|258929|260073|260073|264731|264737|265846|265919|265919|265950|268313|269190|271960|273504|289903|289904|289914|289923|289924|289925|289934|289937|289942|289944|290671|290672|290673|290679|290680|290683|290684|290685|290686|290687|290688|290689|290691|290692|290693|290694|290695|290696|290697|293820|293826|293827|293828|293829|293830|293831|293832|293834|293835|293837|293839|293840|293841|293842|293843|293844|293845|293846|293849|293850|293870|294355|294356|294357|294358|294359|294361|294362|294363|294364|294365|294366|294367|294368|294372|294379|322730|322731|322733|322734|322736|322737|322739|322740|322742|322743|322749|322752|322760|322762|322767|322768|322769|322769|322772|322773|322781|322782|322787|322788|322792|322793|322793|322794|322796|322796|322805|322805|322810|322811|332233|332236|332237|332238|332243|332247|332248|332249|332251|332252|332254|332259|332260|332261|332263|332264|332265|332267|332267|332268|332271|332272|332272|332278|332279|332280|332283|339214|339217|339221|339222|339223|339224|339232|339237|339240|339241|339243|339245|339250|339263|339264|339265|339266|339275|339276|339277|339280|339280|339281|339285|339285|339286|339286|339287|339295|339295|339296|339297|339297|339304|340691|340694|340697|340712|340714|340715|340716|340718|340719|340720|340723|340726|340728|340728|340729|340732|340732|340736|340738|340743|340743|340744|340744|340745|340746|340748|360077|360080|360164|360164|360166|360174|360178|360178|360975|360976|362067|362069|362231|373447|373448|373456|373487|373504|373539|373539|373552|373562|373562|373568|373568|373571|374169|374188|374202|374217|374541|374541|374549|374555|374570|374574|374585|374601|374601|374614|374616|376479|376481|376492|376507|390131|400127|400129|400131|400138|400140|400143|400144|400145|400146|400157|400160|400162|400165|400165|400172|400174|400176|400177|400182|400189|400192|400194|400196|400206|400206|400214|400216|400225|400229|400243|400246|400246|400257|400259|400292|400302|400306|400313|400315|400318|400318|400324|400326|400333|400348|400358|400366|400368|400371|400383|400390|400391|400392|400395|400396|400397|400407|400410|400416|400423|400427|400620|400626|400627|400630|400633|400634|400640|400644|400646|400648|400656|400656|400658|400660|400664|400670|400674|400677|400683|400687|400688|400691|400692|400694|400696|400698|400702|400705|400711|400712|400714|400715|400725|400732|400742|400743|400747|400858|400932|400934|400934|400946|400950|400960|400961|400962|400968|400970|400970|400972|400982|400984|400991|401002|401006|401013|401013|401015|401015|401022|401026|401030|401031|401033|401035|401044|401046|401053|409254|409254|409256|409260|409260|409261|409261|409279|409287|409287|409288|409292|409294|409297|409298|409299|409300|415425|415425|415427|415429|415436|422019|422020|422024|422026|422026|422037|422039|426105|426107|426109|426109|426112|426115|426115|430986|433135|433136|433137|433139|433143|433145|433148|433148|433556|433557|433558|437979|437982|439468|440009|445341|445341|445342|445343|445344|445345|445345|445346|445347|445348|445350|445356|445362|445369|445370|445375|445376|445376|445378|445379|446890|450151|463946|463948|464306|464309|464311|464311|464313|464320|464320|464324|464334|464335|464338|464340|464342|464346|464348|464352|464353|464356|464359|464375|464377|464379|464381|464383|464384|464388|464390|464394|464521|464528|464532|464780|464782|464836|464837|464853|464856|464856|464858|464861|464872|464872|464876|464879|464882|464883|464887|464892|464901|464901|464904|464904|464906|464906|464909|464910|464910|464912|464912|464918|464927|464934|464935|464936|464937|464940|464940|464941|464945|464947|464955|464960|464961|464962|464967|464971|464974|464978|464984|464986|465086|465086|465092|465096|465099|465101|465105|465105|465106|465107|465108|465112|465115|465116|465116|465117|465121|465123|465123|465124|465124|465126|465136|465139|465146|465146|465147|465148|465149|465150|465152|465154|465158|465161|465161|465163|465166|465170|465170|465176|465177|465184|465185|465187|465189|465191|465194|465198|465201|465206|465206|465210|465219|465220|465226|465235|465244|465248|465251|482071|482071|482072|485756|485757|485757|485758|485759|485760|485761|485761|485812|486121|487543|487543|487544|487548|487563|487572|487575|487575|487581|487591|487591|487628|487628|487629|487639|487656|487707|487707|487719|487723|487775|487775|487784|487788|487788|487809|487844|487849|487858|487865|487876|487884|487886|487886|487888|493078|493902|497066|497067|497682|504789|504826|504832|505022|505643|505654|505700|508721|508723|510530|510532|510543|510544|510546|510546|510549|510553|510553|510554|510554|510555|510565|510567|510572|510573|510575|510578|510581|510585|510590|510591|510592|510594|510599|510601|510612|510617|510620|510622|510624|510631|510635|510635|510641|510646|511123|511124|511125|511125|511128|511129|511130|511131|511131|514674|528563|528881|528891|528892|528892|528893|528894|528897|528899|528900|528902|528907|528908|528909|528910|528912|528915|528916|528918|528919|528921|528927|528933|528935|528943|528944|528948|528956|528957|528962|528963|528964|528967|528972|528976|528978|528981|528983|528983|528991|528993|528995|528999|529000|529011|529016|529016|529018|529020|529026|529265|529273|529273|529275|529280|529291|529291|529294|529295|529300|529300|529307|529312|529313|529328|529331|529337|529338|529345|529345|529346|529348|529359|529359|529363|529364|529367|529367|529368|529419|529422|529425|529427|529429|529433|529435|529437|529438|529438|529441|529446|529452|529454|529456|529459|529469|529474|529481|529483|529485|529488|529493|529504|529507|529507|529514|529516|529520|529534|529538|536887|536889|538029|538030|538031|538032|538033|538034|538035|538036|538037|538038|538039|538040|538041|538042|538043|538043|538044|538045|538046|538047|538048|538049|538050|538051|538052|538053|538053|538054|538054|538055|538055|538056|538057|538058|538059|538060|538061|538061|538062|538063|538064|538065|538066|538067|538068|538069|538070|538071|538073|538074|538075|538076|538077|538078|538079|538079|538080|538081|538084|539060|539478|539479|539481|539482|539483|539483|539484|539485|539486|539487|539488|539489|539489|539490|539492|539493|539494|539495|539496|539497|539498|539499|539499|539500|539502|539503|539504|539505|539506|539506|539507|539508|539508|539509|539510|539510|539511|539512|539513|539514|539516|539517|539518|539519|539520|539521|539522|539523|539524|539525|539526|539527|539528|539529|539530|539531|539531|539532|539533|539534|539535|539536|539537|539537|539538|539538|539539|539540|539541|539541|539542|539543|539544|539545|539546|539547|539548|539549|539550|539551|539553|539554|539555|539555|539556|539557|539558|539560|539561|539562|539563|539564|539565|539566|539567|539568|539569|539570|539570|539571|539572|539573|539574|539575|539576|539577|539578|539579|539580|539581|539582|539583|539584|539585|539585|539586|539588|539589|539590|539591|539592|539593|539594|539595|539596|539597|539598|539599|539600|539601|539602|539602|539603|539604|539605|539606|539607|539608|539609|539610|539611|539613|539614|539615|539616|539617|539618|539619|539620|539621|539622|539623|539624|539625|539626|539627|539628|539629|539630|539631|539632|539633|539634|539635|539635|539636|539637|539638|539639|539640|539641|539642|539643|539644|539645|539646|539647|539648|539649|539650|539651|539652|539653|539654|539654|539655|539656|539657|539658|539659|539660|539661|539662|539663|539664|539665|539666|539667|539668|539669|539670|539670|539671|539671|539673|539674|539675|539676|539677|539678|539679|539680|539681|539682|539683|539684|539685|539686|539687|539688|539689|539690|539691|539692|539693|539694|539694|539695|539696|539697|539697|539698|539699|539700|539701|539702|539703|539704|539705|539706|539707|539708|539708|539709|539710|539711|539711|539712|539713|539714|539715|539715|539716|539717|539718|539719|539720|539721|539722|539723|539723|539724|539725|539726|539727|539727|539728|539729|539730|539731|539732|539733|539734|539735|539736|539737|539738|539739|539740|539741|539741|539742|539743|539744|539745|539746|539747|539748|539749|539750|539751|539752|539753|539754|539755|539756|539757|539758|539759|539760|539761|539762|539763|539763|539764|539765|539766|539767|539767|539768|539769|539770|539771|539772|539773|539774|539775|539776|539777|539778|539779|539780|539781|539782|539782|539783|539783|539784|539785|539786|539787|539788|539789|539789|539790|539791|539792|539793|539794|539795|539796|539797|539798|539800|539801|539802|539802|539803|539804|539804|539805|539806|539807|539808|539809|539809|539810|539811|539812|539814|539815|539816|539817|539818|539819|539820|539820|539821|539822|539823|539824|539825|539826|539827|539828|539829|539829|539830|539831|539832|539833|539834|539836|539836|539837|539838|539839|539840|539841|539842|539843|539844|539845|539846|539847|539848|539849|539850|539851|539852|539853|539853|539854|539855|539856|539857|539858|539859|539860|539861|539862|539863|539864|539865|539865|539866|539867|539868|539868|539869|539870|539871|539872|539873|539873|539874|539875|539876|539877|539878|539880|539880|539881|539882|539883|539884|539884|539885|539886|539887|539887|539888|539889|539889|539890|539891|539891|539892|539893|539894|539895|539896|539896|539897|539899|539900|539901|539902|539903|539904|539905|539906|539907|539908|539908|539909|539910|539911|539912|539913|539914|539914|539915|539915|539916|539917|539918|539919|539919|539920|539920|539921|539922|539923|539924|539925|539926|539927|539928|539928|539929|539930|539931|539932|539933|539934|539935|539936|539937|539938|539939|539940|539941|539942|539943|539944|539945|539945|539946|539947|539948|539949|539950|539951|539952|539953|539954|539955|539956|539957|539958|551267|551267|551268|551394|551395|551396|551397|551398|552461|553418|566875|566878|566880|567105|567107|567110|567115|567117|567121|567124|567133|567134|567137|567138|567140|567146|567147|567149|567151|567153|567157|567159|567163|567165|567172|567176|567178|567188|567189|567191|567191|567192|568573|568861|568873|568887|568893|568899|568905|568912|568914|568915|568918|568920|568926|568933|568937|568942|568943|568947|568953|568962|568964|568967|568973|568978|568987|568988|568994|569206|569208|569428|569429|569434|569436|569438|569442|569443|569449|569459|569460|569469|569471|569473|569476|569481|569482|569485|569486|569490|569491|569493|569496|569497|569499|569509|569510|569515|569516|569518|569519|569521|569523|569525|569531|569532|573113|573120|573121|573321|573321|573323|573324|573328|573329|573336|573340|573341|573343|573345|573349|573354|573358|573363|573365|573368|573368|573369|573370|573372|573375|573381|573387|573391|573394|573395|573402|581791|581870|609012|609339|609924|612100|612451|613463|613465|613466|613467|613468|613469|613470|613471|613472|613473|613474|613478|613478|613479|615099|615112|615118|618247|618267|618271|619580|619595|621487|621494|621494|621499|621501|621516|622211|623112|624502|625978|625979|626020|626021|626021|626025|626345|626346|626347|626350|626416|626443|626444|626451|643295|643296|643297|643298|643298|643299|643300|643301|643302|643303|643304|643305|643306|643307|643308|643309|643310|643311|643312|643313|643314|643315|643316|643317|643318|643319|643320|643321|643322|643323|643324|643325|643326|643327|643328|643329|643330|643331|643332|643333|643334|643335|643336|643337|643338|643339|643340|643341|643342|643343|643344|643345|643346|643347|643348|643349|643350|643351|643352|643353|643354|643355|643356|643357|643358|643359|643360|643361|643362|643363|643364|643365|643366|643367|643368|643369|643370|643371|643372|643373|643374|643375|643376|643377|643378|643379|643380|643381|643382|643383|643384|643385|643386|643387|643388|643389|643390|643391|643392|643393|643394|643395|643396|643397|643398|643399|643400|643401|643402|643403|643403|643404|643405|643406|643407|643408|643409|643410|643411|643412|643413|643414|643415|643416|643417|643417|643418|652390|652392|652394|652418|652419|652523|652568|652668|652674|652748|652750|652753|653005|653008|653012|653038|653045|653049|653057|653989|654111|654777|654778|654779|655012|672158|672159|672160|672161|672162|672163|672164|672164|672166|672167|672168|672169|672170|672171|672172|672173|672174|672175|672176|672177|672178|672179|672180|672181|672182|672183|672184|672185|672186|672187|672188|672189|672190|672191|672192|672193|672194|672195|672196|672197|672198|672199|672200|672322|672356|672359|672360|672361|672368|672369|672370|672370|672441|672442|672443|677071|677128|678117|678118|678172|679355|683146|688441|688442|688446|688447|688448|690107|693691|693692|693693|695648|703237|739656|739658|739660|739662|739663|754494|770200|770208|776012|784948|789089|791455|791456|791457|791458|791459|791460|791461|791462|791463|791464|791465|791466|791467|791468|791469|791470|791470|791471|791472|791473|791473|791474|791475|797158|798958|799801|799807|799811|816479|816508|820708|820709|820710|820711|820712|820713|820714|820715|820716|820717|820718|820719|820720|842430|842431|842432|842433|842434|842435|842436|842437|842438|842439|842440|842441|842442|842443|842444|842445|842446|842447|842447|842448|842449|842450|842451|842452|842453|842454|842455|842456|842457|842458|842459|842460|842461|842462|842463|842464|842465|842466|842467|842468|842469|842470|842471|842472|842473|842474|842475|842476|842477|842478|842479|842480|842481|842482|842483|842484|842485|842486|842487|842488|842489|842490|842491|842492|842493|842494|842495|842496|842497|842498|842499|842500|842501|842502|842503|842504|842505|842506|842507|842508|842509|842510|842511|842512|842513|842514|842515|842516|842517|842518|842519|842520|842521|842522|842523|842524|842525|842526|842527|842528|842529|842530|842531|842532|842533|842534|842535|842536|842537|842538|842539|842540|842541|842542|842543|842544|842545|851619|851621|851623|851625|851627|852043|852045|852047|852049|852051|852053|852055|852057|852059|852061|852592|852596|852598|852599|852767|852768|852769|852771|852775|852777|855103|858309|858386|858412|861646|873702|873703|873704|873705|873706|873707|873708|873709|873710|873711|873712|873713|873714|873715|873716|873717|873718|873719|873720|873721|873722|873723|873724|873725|873726|873727|873727|873728|873729|873730|873731|873732|873733|873734|873735|873736|873737|873738|873739|873740|873741|873742|876533|876534|876535|876536|876537|912674|912754|912768|912772|912788|912821|912838|912899|912906|912942|913011|913041|918184|927345|927346|927347|927348|927349|927350|927351|927352|927353|927354|927355|927356|927357|927358|927359|927360|927361|927362|927363|927364|927365|927366|927367|927368|927369|927370|927371|927372|927373|927374|927375|936956|936957|936958|936959|936960|936961|936962|936963|936964|936965|936966|936967|936968|936969|936970|936971|936972|936973|936974|936975|936976|936977|936978|936979|936980|936981|936982|936983|936984|936985|936986|936987|936988|936989|936990|936991|936992|936993|940327|940328|940329|941091|948913|948914|948915|948916|948917|948918|948919|948920|948921|948922|948923|948924|948925|948926|948927|948928|948929|948930|948931|948932|948933|948934|948935|948936|948937|948938|948939|948940|948941|948942|948943|948944|948945|948946|957440|957441|957442|957443|957444|957445|957446|957447|957448|957449|957450|957451|957452|957453|957454|957455|957456|960113|960114|960115|960116|960117|960823|961533|961874|962169|964422|966403|966476|967200|967201|967202|967203|971018|971019|972478", + "upstreamId": "27541|27563|31461|31462|31463|31464|31465|31466|31467|31468|31468|31469|31469|31470|31470|31471|31472|31475|31476|31476|31478|31478|31479|31479|31481|31482|31483|31484|31484|31487|31488|31488|31489|31490|31490|31490|31491|31491|31494|31495|31496|31496|31499|31500|31500|31501|31502|31503|31505|31505|31506|31507|38654|44696|44697|44698|44698|44699|44700|44701|44702|44704|44705|44705|44706|44706|44707|44707|44708|44708|44709|44710|44711|44712|44713|44714|44715|44717|44718|44719|44720|44721|44722|44723|44724|44724|44725|44726|44726|44727|44728|44728|44729|44729|44730|44731|44731|44732|44733|44735|44735|44736|44736|44737|44738|44738|44739|44739|44740|44740|44741|44742|44742|44743|44744|44745|44745|44746|44746|44747|44748|44748|44749|44749|44750|44750|44751|44753|44754|44756|44756|44757|44757|44758|44759|44760|44761|44761|44762|44763|44764|44765|44766|44767|44767|44768|44768|44769|44770|44771|44771|44772|44772|44773|44774|44775|44775|44776|44777|44778|44778|44779|44779|44780|44781|44782|44782|44783|44784|44785|44787|44788|44789|44790|44790|44791|44792|44792|44794|44795|44796|44796|44797|44797|45520|45528|45530|48266|48266|49841|51450|51451|51452|51453|51454|51454|51455|51455|51456|51457|51457|51458|51459|51461|51462|51463|51464|51464|51465|51465|51466|51466|51467|51468|51468|51469|51470|51470|51471|51472|51473|51474|51475|51476|51477|51477|51479|51480|51480|51481|51481|51482|51484|51485|51487|51488|51489|51489|51490|51490|51491|51491|51492|51494|51495|51495|51496|51497|51497|51499|51500|51500|51501|51502|51503|51504|51504|51505|51505|51506|51507|51507|51508|51510|51511|51512|51513|51513|51514|51515|51516|51517|51520|51521|51521|51523|51524|51524|51525|51525|51526|51526|51527|51528|51529|51530|51531|51533|51533|51534|51534|51535|51535|51536|51536|51537|51537|51538|51539|51540|51541|51542|51543|51543|51544|51545|51546|51546|51547|51548|51549|51550|51551|51551|51552|51552|51553|51553|51554|51555|51556|51558|51559|51560|51561|51562|51562|51563|51564|51564|51565|51566|51567|51568|51570|51571|51571|51572|51572|51573|51574|51575|51576|51577|51577|51578|51578|51580|51581|51582|51582|51583|51583|51584|51588|51589|51590|51591|51591|51592|51592|51593|51595|51595|51596|51597|51598|51599|51599|51603|51603|51604|51604|51606|51607|51608|51609|51609|51611|51613|51613|51614|51615|51616|51617|51618|53818|53819|53825|53828|77989|132461|132465|132473|141002|141002|141003|141004|141005|141005|141007|141007|141008|141009|141009|141012|141013|141014|141014|141016|141016|141017|141017|141339|141340|165543|165543|165544|165544|165545|165546|165547|165580|171082|171083|171171|171172|171172|171173|171173|171174|171176|171176|171177|171177|171178|171178|171179|171179|171180|171180|171181|171181|171182|171182|171763|173774|175772|175953|175978|175979|175979|175980|175982|175982|175983|175984|175986|175987|175987|175988|175988|175990|175990|175991|175991|176121|176122|176122|176123|176123|176124|176125|176127|176128|176129|176130|176130|176131|176132|176133|176134|178494|178495|178514|178690|178691|178692|178694|178694|178696|178697|178698|178699|178699|178700|178700|178701|178702|178703|178713|193009|194183|194769|197570|197570|197573|197574|197576|197579|197580|197581|197581|197582|197585|197585|197587|197588|197589|197590|197591|197592|197594|197596|197600|197600|197601|197602|197602|197603|197604|197604|197605|197610|197613|197615|197615|197617|197617|197618|197619|197619|197620|197620|197624|197625|197626|197631|197631|197632|197632|197634|197637|197640|197641|197641|197643|197645|197645|197646|197647|197649|197650|197650|197655|197655|197657|197658|197660|197661|197665|197665|197669|197672|197672|197674|197674|197675|197676|197677|197677|197678|197681|197685|197685|197686|197688|197690|197690|197698|197701|197703|197705|197705|197710|197710|197715|197715|197717|197717|197719|197721|197723|197723|197726|197731|197734|197735|197736|197739|197742|197742|197743|197743|197745|197746|197746|197749|197750|197753|197755|197755|197756|197756|197757|197757|197762|197763|197764|197765|197765|197771|197773|197774|197774|197776|197777|197777|197786|197787|197788|197789|197789|197793|197793|197795|197799|197802|197803|197806|197806|197808|197808|197811|197811|197815|197817|197817|197820|197823|197823|197824|197827|197829|197890|209570|209597|209607|209619|209630|222428|222429|224247|224299|224366|224368|224479|224480|224481|224481|224482|224483|224484|224485|224485|224486|224487|224488|224489|224489|224490|224491|224492|224492|224493|224494|224495|224496|224497|224497|224498|224499|224500|224500|224501|224502|224503|224504|224504|227370|227370|227463|227463|230585|230588|230590|230592|242025|242058|242058|242059|242059|242061|242062|242063|242064|242065|242066|242066|242067|242068|242069|242070|242071|242072|242072|242073|242074|242075|242076|242077|242079|242080|242080|242081|242081|242082|242082|242083|242084|255255|255255|255268|258264|258815|258815|258816|258816|258817|258818|258819|258821|258823|258823|258824|258825|258827|258829|258830|258836|258836|258842|258842|258845|258845|258847|258847|258851|258855|258859|258873|258874|258883|258885|258886|258887|258887|258890|258899|258906|258907|258909|258909|258910|258914|258917|258919|258925|258929|260073|260073|264731|264737|265846|265919|265919|265950|268313|269190|271960|273504|289903|289904|289914|289923|289924|289925|289934|289937|289942|289944|290671|290672|290673|290679|290680|290683|290684|290685|290686|290687|290688|290689|290691|290692|290693|290694|290695|290696|290697|293820|293826|293827|293828|293829|293830|293831|293832|293834|293835|293837|293839|293840|293841|293842|293843|293844|293845|293846|293849|293850|293870|294355|294356|294357|294358|294359|294361|294362|294363|294364|294365|294366|294367|294368|294372|294379|322730|322731|322733|322734|322736|322737|322739|322740|322742|322743|322749|322752|322760|322762|322767|322768|322769|322769|322772|322773|322781|322782|322787|322788|322792|322793|322793|322794|322796|322796|322805|322805|322810|322811|332233|332236|332237|332238|332243|332247|332248|332249|332251|332252|332254|332259|332260|332261|332263|332264|332265|332267|332267|332268|332271|332272|332272|332278|332279|332280|332283|339214|339217|339221|339222|339223|339224|339232|339237|339240|339241|339243|339245|339250|339263|339264|339265|339266|339275|339276|339277|339280|339280|339281|339285|339285|339286|339286|339287|339295|339295|339296|339297|339297|339304|340691|340694|340697|340712|340714|340715|340716|340718|340719|340720|340723|340726|340728|340728|340729|340732|340732|340736|340738|340743|340743|340744|340744|340745|340746|340748|360077|360080|360164|360164|360166|360174|360178|360178|360975|360976|362067|362069|362231|373447|373448|373456|373487|373504|373539|373539|373552|373562|373562|373568|373568|373571|374169|374188|374202|374217|374541|374541|374549|374555|374570|374574|374585|374601|374601|374614|374616|376479|376481|376492|376507|390131|400127|400129|400131|400138|400140|400143|400144|400145|400146|400157|400160|400162|400165|400165|400172|400174|400176|400177|400182|400189|400192|400194|400196|400206|400206|400214|400216|400225|400229|400243|400246|400246|400257|400259|400292|400302|400306|400313|400315|400318|400318|400324|400326|400333|400348|400358|400366|400368|400371|400383|400390|400391|400392|400395|400396|400397|400407|400410|400416|400423|400427|400620|400626|400627|400630|400633|400634|400640|400644|400646|400648|400656|400656|400658|400660|400664|400670|400674|400677|400683|400687|400688|400691|400692|400694|400696|400698|400702|400705|400711|400712|400714|400715|400725|400732|400742|400743|400747|400858|400932|400934|400934|400946|400950|400960|400961|400962|400968|400970|400970|400972|400982|400984|400991|401002|401006|401013|401013|401015|401015|401022|401026|401030|401031|401033|401035|401044|401046|401053|409254|409254|409256|409260|409260|409261|409261|409279|409287|409287|409288|409292|409294|409297|409298|409299|409300|415425|415425|415427|415429|415436|422019|422020|422024|422026|422026|422037|422039|426105|426107|426109|426109|426112|426115|426115|430986|433135|433136|433137|433139|433143|433145|433148|433148|433556|433557|433558|437979|437982|439468|440009|445341|445341|445342|445343|445344|445345|445345|445346|445347|445348|445350|445356|445362|445369|445370|445375|445376|445376|445378|445379|446890|450151|463946|463948|464306|464309|464311|464311|464313|464320|464320|464324|464334|464335|464338|464340|464342|464346|464348|464352|464353|464356|464359|464375|464377|464379|464381|464383|464384|464388|464390|464394|464521|464528|464532|464780|464782|464836|464837|464853|464856|464856|464858|464861|464872|464872|464876|464879|464882|464883|464887|464892|464901|464901|464904|464904|464906|464906|464909|464910|464910|464912|464912|464918|464927|464934|464935|464936|464937|464940|464940|464941|464945|464947|464955|464960|464961|464962|464967|464971|464974|464978|464984|464986|465086|465086|465092|465096|465099|465101|465105|465105|465106|465107|465108|465112|465115|465116|465116|465117|465121|465123|465123|465124|465124|465126|465136|465139|465146|465146|465147|465148|465149|465150|465152|465154|465158|465161|465161|465163|465166|465170|465170|465176|465177|465184|465185|465187|465189|465191|465194|465198|465201|465206|465206|465210|465219|465220|465226|465235|465244|465248|465251|482071|482071|482072|485756|485757|485757|485758|485759|485760|485761|485761|485812|486121|487543|487543|487544|487548|487563|487572|487575|487575|487581|487591|487591|487628|487628|487629|487639|487656|487707|487707|487719|487723|487775|487775|487784|487788|487788|487809|487844|487849|487858|487865|487876|487884|487886|487886|487888|493078|493902|497066|497067|497682|504789|504826|504832|505022|505643|505654|505700|508721|508723|510530|510532|510543|510544|510546|510546|510549|510553|510553|510554|510554|510555|510565|510567|510572|510573|510575|510578|510581|510585|510590|510591|510592|510594|510599|510601|510612|510617|510620|510622|510624|510631|510635|510635|510641|510646|511123|511124|511125|511125|511128|511129|511130|511131|511131|514674|528563|528881|528891|528892|528892|528893|528894|528897|528899|528900|528902|528907|528908|528909|528910|528912|528915|528916|528918|528919|528921|528927|528933|528935|528943|528944|528948|528956|528957|528962|528963|528964|528967|528972|528976|528978|528981|528983|528983|528991|528993|528995|528999|529000|529011|529016|529016|529018|529020|529026|529265|529273|529273|529275|529280|529291|529291|529294|529295|529300|529300|529307|529312|529313|529328|529331|529337|529338|529345|529345|529346|529348|529359|529359|529363|529364|529367|529367|529368|529419|529422|529425|529427|529429|529433|529435|529437|529438|529438|529441|529446|529452|529454|529456|529459|529469|529474|529481|529483|529485|529488|529493|529504|529507|529507|529514|529516|529520|529534|529538|536887|536889|538029|538030|538031|538032|538033|538034|538035|538036|538037|538038|538039|538040|538041|538042|538043|538043|538044|538045|538046|538047|538048|538049|538050|538051|538052|538053|538053|538054|538054|538055|538055|538056|538057|538058|538059|538060|538061|538061|538062|538063|538064|538065|538066|538067|538068|538069|538070|538071|538073|538074|538075|538076|538077|538078|538079|538079|538080|538081|538084|539060|539478|539479|539481|539482|539483|539483|539484|539485|539486|539487|539488|539489|539489|539490|539492|539493|539494|539495|539496|539497|539498|539499|539499|539500|539502|539503|539504|539505|539506|539506|539507|539508|539508|539509|539510|539510|539511|539512|539513|539514|539516|539517|539518|539519|539520|539521|539522|539523|539524|539525|539526|539527|539528|539529|539530|539531|539531|539532|539533|539534|539535|539536|539537|539537|539538|539538|539539|539540|539541|539541|539542|539543|539544|539545|539546|539547|539548|539549|539550|539551|539553|539554|539555|539555|539556|539557|539558|539560|539561|539562|539563|539564|539565|539566|539567|539568|539569|539570|539570|539571|539572|539573|539574|539575|539576|539577|539578|539579|539580|539581|539582|539583|539584|539585|539585|539586|539588|539589|539590|539591|539592|539593|539594|539595|539596|539597|539598|539599|539600|539601|539602|539602|539603|539604|539605|539606|539607|539608|539609|539610|539611|539613|539614|539615|539616|539617|539618|539619|539620|539621|539622|539623|539624|539625|539626|539627|539628|539629|539630|539631|539632|539633|539634|539635|539635|539636|539637|539638|539639|539640|539641|539642|539643|539644|539645|539646|539647|539648|539649|539650|539651|539652|539653|539654|539654|539655|539656|539657|539658|539659|539660|539661|539662|539663|539664|539665|539666|539667|539668|539669|539670|539670|539671|539671|539673|539674|539675|539676|539677|539678|539679|539680|539681|539682|539683|539684|539685|539686|539687|539688|539689|539690|539691|539692|539693|539694|539694|539695|539696|539697|539697|539698|539699|539700|539701|539702|539703|539704|539705|539706|539707|539708|539708|539709|539710|539711|539711|539712|539713|539714|539715|539715|539716|539717|539718|539719|539720|539721|539722|539723|539723|539724|539725|539726|539727|539727|539728|539729|539730|539731|539732|539733|539734|539735|539736|539737|539738|539739|539740|539741|539741|539742|539743|539744|539745|539746|539747|539748|539749|539750|539751|539752|539753|539754|539755|539756|539757|539758|539759|539760|539761|539762|539763|539763|539764|539765|539766|539767|539767|539768|539769|539770|539771|539772|539773|539774|539775|539776|539777|539778|539779|539780|539781|539782|539782|539783|539783|539784|539785|539786|539787|539788|539789|539789|539790|539791|539792|539793|539794|539795|539796|539797|539798|539800|539801|539802|539802|539803|539804|539804|539805|539806|539807|539808|539809|539809|539810|539811|539812|539814|539815|539816|539817|539818|539819|539820|539820|539821|539822|539823|539824|539825|539826|539827|539828|539829|539829|539830|539831|539832|539833|539834|539836|539836|539837|539838|539839|539840|539841|539842|539843|539844|539845|539846|539847|539848|539849|539850|539851|539852|539853|539853|539854|539855|539856|539857|539858|539859|539860|539861|539862|539863|539864|539865|539865|539866|539867|539868|539868|539869|539870|539871|539872|539873|539873|539874|539875|539876|539877|539878|539880|539880|539881|539882|539883|539884|539884|539885|539886|539887|539887|539888|539889|539889|539890|539891|539891|539892|539893|539894|539895|539896|539896|539897|539899|539900|539901|539902|539903|539904|539905|539906|539907|539908|539908|539909|539910|539911|539912|539913|539914|539914|539915|539915|539916|539917|539918|539919|539919|539920|539920|539921|539922|539923|539924|539925|539926|539927|539928|539928|539929|539930|539931|539932|539933|539934|539935|539936|539937|539938|539939|539940|539941|539942|539943|539944|539945|539945|539946|539947|539948|539949|539950|539951|539952|539953|539954|539955|539956|539957|539958|551267|551267|551268|551394|551395|551396|551397|551398|552461|553418|566875|566878|566880|567105|567107|567110|567115|567117|567121|567124|567133|567134|567137|567138|567140|567146|567147|567149|567151|567153|567157|567159|567163|567165|567172|567176|567178|567188|567189|567191|567191|567192|568573|568861|568873|568887|568893|568899|568905|568912|568914|568915|568918|568920|568926|568933|568937|568942|568943|568947|568953|568962|568964|568967|568973|568978|568987|568988|568994|569206|569208|569428|569429|569434|569436|569438|569442|569443|569449|569459|569460|569469|569471|569473|569476|569481|569482|569485|569486|569490|569491|569493|569496|569497|569499|569509|569510|569515|569516|569518|569519|569521|569523|569525|569531|569532|573113|573120|573121|573321|573321|573323|573324|573328|573329|573336|573340|573341|573343|573345|573349|573354|573358|573363|573365|573368|573368|573369|573370|573372|573375|573381|573387|573391|573394|573395|573402|581791|581870|609012|609339|609924|612100|612451|613463|613465|613466|613467|613468|613469|613470|613471|613472|613473|613474|613478|613478|613479|615099|615112|615118|618247|618267|618271|619580|619595|621487|621494|621494|621499|621501|621516|622211|623112|624502|625978|625979|626020|626021|626021|626025|626345|626346|626347|626350|626416|626443|626444|626451|643295|643296|643297|643298|643298|643299|643300|643301|643302|643303|643304|643305|643306|643307|643308|643309|643310|643311|643312|643313|643314|643315|643316|643317|643318|643319|643320|643321|643322|643323|643324|643325|643326|643327|643328|643329|643330|643331|643332|643333|643334|643335|643336|643337|643338|643339|643340|643341|643342|643343|643344|643345|643346|643347|643348|643349|643350|643351|643352|643353|643354|643355|643356|643357|643358|643359|643360|643361|643362|643363|643364|643365|643366|643367|643368|643369|643370|643371|643372|643373|643374|643375|643376|643377|643378|643379|643380|643381|643382|643383|643384|643385|643386|643387|643388|643389|643390|643391|643392|643393|643394|643395|643396|643397|643398|643399|643400|643401|643402|643403|643403|643404|643405|643406|643407|643408|643409|643410|643411|643412|643413|643414|643415|643416|643417|643417|643418|652390|652392|652394|652418|652419|652523|652568|652668|652674|652748|652750|652753|653005|653008|653012|653038|653045|653049|653057|653989|654111|654777|654778|654779|655012|672158|672159|672160|672161|672162|672163|672164|672164|672166|672167|672168|672169|672170|672171|672172|672173|672174|672175|672176|672177|672178|672179|672180|672181|672182|672183|672184|672185|672186|672187|672188|672189|672190|672191|672192|672193|672194|672195|672196|672197|672198|672199|672200|672322|672356|672359|672360|672361|672368|672369|672370|672370|672441|672442|672443|677071|677128|678117|678118|678172|679355|683146|688441|688442|688446|688447|688448|690107|693691|693692|693693|695648|703237|739656|739658|739660|739662|739663|754494|770200|770208|776012|784948|789089|791455|791456|791457|791458|791459|791460|791461|791462|791463|791464|791465|791466|791467|791468|791469|791470|791470|791471|791472|791473|791473|791474|791475|797158|798958|799801|799807|799811|816479|816508|820708|820709|820710|820711|820712|820713|820714|820715|820716|820717|820718|820719|820720|842430|842431|842432|842433|842434|842435|842436|842437|842438|842439|842440|842441|842442|842443|842444|842445|842446|842447|842447|842448|842449|842450|842451|842452|842453|842454|842455|842456|842457|842458|842459|842460|842461|842462|842463|842464|842465|842466|842467|842468|842469|842470|842471|842472|842473|842474|842475|842476|842477|842478|842479|842480|842481|842482|842483|842484|842485|842486|842487|842488|842489|842490|842491|842492|842493|842494|842495|842496|842497|842498|842499|842500|842501|842502|842503|842504|842505|842506|842507|842508|842509|842510|842511|842512|842513|842514|842515|842516|842517|842518|842519|842520|842521|842522|842523|842524|842525|842526|842527|842528|842529|842530|842531|842532|842533|842534|842535|842536|842537|842538|842539|842540|842541|842542|842543|842544|842545|851619|851621|851623|851625|851627|852043|852045|852047|852049|852051|852053|852055|852057|852059|852061|852592|852596|852598|852599|852767|852768|852769|852771|852775|852777|855103|858309|858386|858412|861646|873702|873703|873704|873705|873706|873707|873708|873709|873710|873711|873712|873713|873714|873715|873716|873717|873718|873719|873720|873721|873722|873723|873724|873725|873726|873727|873727|873728|873729|873730|873731|873732|873733|873734|873735|873736|873737|873738|873739|873740|873741|873742|876533|876534|876535|876536|876537|912674|912754|912768|912772|912788|912821|912838|912899|912906|912942|913011|913041|918184|927345|927346|927347|927348|927349|927350|927351|927352|927353|927354|927355|927356|927357|927358|927359|927360|927361|927362|927363|927364|927365|927366|927367|927368|927369|927370|927371|927372|927373|927374|927375|936956|936957|936958|936959|936960|936961|936962|936963|936964|936965|936966|936967|936968|936969|936970|936971|936972|936973|936974|936975|936976|936977|936978|936979|936980|936981|936982|936983|936984|936985|936986|936987|936988|936989|936990|936991|936992|936993|940327|940328|940329|941091|948913|948914|948915|948916|948917|948918|948919|948920|948921|948922|948923|948924|948925|948926|948927|948928|948929|948930|948931|948932|948933|948934|948935|948936|948937|948938|948939|948940|948941|948942|948943|948944|948945|948946|957440|957441|957442|957443|957444|957445|957446|957447|957448|957449|957450|957451|957452|957453|957454|957455|957456|960113|960114|960115|960116|960117|960823|961533|961874|962169|964422|966403|966476|967200|967201|967202|967203|971018|971019|972478", "text": "Marfan syndrome" }, { - "baseId": "27541|27543|27544|27545|27546|27547|27548|27549|27550|27551|27552|27553|27554|27555|27556|27557|27558|27558|27746|45526|45528|45535|45536|45537|45538|53818|53818|53819|53825|53828|53829|53830|53833|53837|53838|53839|53840|53841|53842|53843|141338|171083|173913|175752|175753|175756|175893|175894|175895|175896|175897|175898|178514|178659|178660|189917|189921|189922|189923|198463|198465|198466|198467|198468|209594|209628|209632|213550|230432|239131|241613|241614|251089|258306|289903|289914|289915|289924|289927|289944|290674|290679|290685|290688|290690|290692|290693|290694|290696|293827|293828|293829|293833|293839|293842|293843|293870|293876|294355|294356|294362|294364|294367|294373|294376|294377|318742|318743|333225|334943|361860|372598|375478|380155|389564|389564|393403|399090|399598|399601|399859|399862|419286|443412|445104|445106|462539|462541|462543|462819|462823|462828|462831|463297|463408|463409|504127|504690|505103|510406|527425|527429|527708|527711|527958|527968|527970|552072|561355|562661|565775|565779|565781|567093|567096|567097|567098|568207|572154|614261|614262|641506|641507|641508|641509|641510|641511|684378|769367|784499|840474|840475|840476|840477|840478|840479|840480|840481|840482|840483|840484|888650|888651|888652|888653|888654|888655|888656|888657|888658|888659|888660|888661|888662|891634|926789|926790|936319|936320|936321|936322|948244|948245|957010|957011|957012|967179", + "upstreamId": "27541|27543|27544|27545|27546|27547|27548|27549|27550|27551|27552|27553|27554|27555|27556|27557|27558|27558|27746|45526|45528|45535|45536|45537|45538|53818|53818|53819|53825|53828|53829|53830|53833|53837|53838|53839|53840|53841|53842|53843|141338|171083|173913|175752|175753|175756|175893|175894|175895|175896|175897|175898|178514|178659|178660|189917|189921|189922|189923|198463|198465|198466|198467|198468|209594|209628|209632|213550|230432|239131|241613|241614|251089|258306|289903|289914|289915|289924|289927|289944|290674|290679|290685|290688|290690|290692|290693|290694|290696|293827|293828|293829|293833|293839|293842|293843|293870|293876|294355|294356|294362|294364|294367|294373|294376|294377|318742|318743|333225|334943|361860|372598|375478|380155|389564|389564|393403|399090|399598|399601|399859|399862|419286|443412|445104|445106|462539|462541|462543|462819|462823|462828|462831|463297|463408|463409|504127|504690|505103|510406|527425|527429|527708|527711|527958|527968|527970|552072|561355|562661|565775|565779|565781|567093|567096|567097|567098|568207|572154|614261|614262|641506|641507|641508|641509|641510|641511|684378|769367|784499|840474|840475|840476|840477|840478|840479|840480|840481|840482|840483|840484|888650|888651|888652|888653|888654|888655|888656|888657|888658|888659|888660|888661|888662|891634|926789|926790|936319|936320|936321|936322|948244|948245|957010|957011|957012|967179", "text": "Loeys-Dietz syndrome 2" }, { - "baseId": "27548|101110|101111|101111|101112|101113|101115|101116|101116|101117|101118|101119|101120|101120|101121|101122|101123|101123|101125|101126|101126|101128|101129|101133|101136|101138|101140|135559|135560|135562|135563|135564|135566|135567|135568|135569|135569|135570|135570|135571|135572|135573|135574|135575|135576|135577|135578|135579|135580|135581|135581|135585|135587|135590|135591|135592|135593|135594|176982|176982|177113|177114|177244|177245|177245|177246|177376|177377|178007|178008|190463|190840|190841|191225|191382|191681|191681|191908|192016|192016|192763|192843|192843|192918|193188|193790|194028|194062|194118|194119|194600|194601|194627|194627|194646|195087|195130|195130|195130|195143|195165|195166|195173|195515|195515|195687|195687|196423|196424|196425|196426|204998|204999|205000|205000|205000|207439|207440|207442|207443|207451|207451|207452|207454|207454|207455|207456|207458|237211|237211|265480|265779|265869|265869|266388|269138|269492|269758|271076|271328|271362|271384|271384|271639|272072|272222|273754|275081|301330|301339|301346|301353|301355|301360|301362|301364|304513|304513|304524|304534|309111|309115|309116|309118|309119|309144|309150|309177|309277|309278|309293|309303|309315|309325|368816|368818|368819|368820|369398|426667|426667|428647|428648|428649|428651|441029|441030|441031|444034|444034|455889|455890|455893|455897|455905|455905|455911|455913|455914|455919|455922|455928|455932|455935|455941|455941|455949|455949|455950|455956|455960|455963|455968|456191|456193|456195|456198|456200|456206|456207|456209|456210|456213|456215|456509|456516|456518|456520|456522|456523|456527|456868|456874|456877|456879|456881|456885|456888|456890|456892|456904|456908|456910|456912|456913|456914|456915|456931|488628|488628|488848|489416|489507|489661|489661|489735|489914|492799|492833|493077|493423|501502|501834|501852|501856|502130|521909|521914|521917|521919|521922|521924|521932|521935|521938|521940|521942|521942|521944|522270|522276|522285|522287|522290|522293|522295|522297|522300|522320|522321|522323|522324|522327|522332|522335|522337|522342|522346|522349|522352|522356|522356|522677|522679|522685|522689|522692|522694|522698|522698|522701|522706|522708|536722|537514|538390|551773|561124|561131|561137|561145|561147|561148|561149|561152|561153|561161|561172|561173|561177|561179|561182|563906|563911|563912|563914|563917|563918|563921|563925|563928|566188|566198|566200|566214|566216|566228|566231|566237|566250|566254|566255|576123|576929|576930|584429|585958|587188|612768|635340|635341|635342|635343|635344|635345|635346|635347|635348|635349|635350|635351|635352|635353|635354|635355|635356|635357|635358|635359|635360|635361|635362|635363|635364|635365|635366|635367|635368|635369|635370|635371|635372|635373|635374|635375|635376|635377|635378|635379|635380|635381|635382|635383|635384|635385|635386|635387|635388|651624|692085|692086|692087|699719|699721|710674|710676|710678|722217|722218|722219|722220|722221|735851|735852|750312|750313|750314|750315|759617|759689|765937|765940|765944|765945|765948|765949|765959|775233|775240|775245|777569|777600|777667|777668|777669|779295|782699|782701|782702|782705|782707|782709|787605|793194|795944|819771|832631|832632|832633|832634|832635|832636|832637|832638|832639|832640|832641|832642|832643|832644|832645|832646|832647|832648|832649|832650|832651|832652|832653|832654|832655|832656|832657|832658|832659|832660|832661|832662|832663|832664|832665|832666|832667|832667|832668|832669|832670|832671|832672|832673|832674|832675|832676|832677|832677|832678|832679|832680|832681|832682|832683|832684|832685|832686|832687|832688|832689|832690|832691|832692|832693|832694|832695|832696|832697|832698|832699|832700|832701|832702|832703|832704|832705|832706|832707|832708|832709|832710|832711|832712|832713|832714|832715|832716|832717|832718|832719|832720|832721|832722|832723|832724|832725|832726|832727|832728|832729|832730|832731|832732|832733|832734|832735|832736|832737|832738|832739|832740|852048|852312|897097|919065|919065|919066|919067|920231|920232|920233|924530|924531|924532|924533|924534|924535|924536|924537|924538|924539|924540|924541|924542|924543|924544|924545|924546|924547|924548|924549|924550|924551|924552|924553|924554|924555|924556|924557|924558|924559|933548|933549|933550|933551|933552|933553|933554|933555|933556|933557|933558|933559|933560|933561|933562|933563|933564|933565|933566|933567|933568|933569|933570|933571|933572|933573|933574|933575|933576|933577|933578|940054|940863|940864|940865|945268|945269|945270|945271|945272|945273|945274|945275|945276|945277|945278|945279|945280|945281|945282|945283|945284|945285|945286|945287|945288|945289|945290|945291|945292|945293|945294|954946|954947|954948|954949|954950|954951|954952|954953|954954|954955|954956|954957|954958|954959|954960|954961|954962|954963|954964|954965|954966|954967|954968|954969|954970|959822|960616|963144|980924", + "upstreamId": "27548|101110|101111|101111|101112|101113|101115|101116|101116|101117|101118|101119|101120|101120|101121|101122|101123|101123|101125|101126|101126|101128|101129|101133|101136|101138|101140|135559|135560|135562|135563|135564|135566|135567|135568|135569|135569|135570|135570|135571|135572|135573|135574|135575|135576|135577|135578|135579|135580|135581|135581|135585|135587|135590|135591|135592|135593|135594|176982|176982|177113|177114|177244|177245|177245|177246|177376|177377|178007|178008|190463|190840|190841|191225|191382|191681|191681|191908|192016|192016|192763|192843|192843|192918|193188|193790|194028|194062|194118|194119|194600|194601|194627|194627|194646|195087|195130|195130|195130|195143|195165|195166|195173|195515|195515|195687|195687|196423|196424|196425|196426|204998|204999|205000|205000|205000|207439|207440|207442|207443|207451|207451|207452|207454|207454|207455|207456|207458|237211|237211|265480|265779|265869|265869|266388|269138|269492|269758|271076|271328|271362|271384|271384|271639|272072|272222|273754|275081|301330|301339|301346|301353|301355|301360|301362|301364|304513|304513|304524|304534|309111|309115|309116|309118|309119|309144|309150|309177|309277|309278|309293|309303|309315|309325|368816|368818|368819|368820|369398|426667|426667|428647|428648|428649|428651|441029|441030|441031|444034|444034|455889|455890|455893|455897|455905|455905|455911|455913|455914|455919|455922|455928|455932|455935|455941|455941|455949|455949|455950|455956|455960|455963|455968|456191|456193|456195|456198|456200|456206|456207|456209|456210|456213|456215|456509|456516|456518|456520|456522|456523|456527|456868|456874|456877|456879|456881|456885|456888|456890|456892|456904|456908|456910|456912|456913|456914|456915|456931|488628|488628|488848|489416|489507|489661|489661|489735|489914|492799|492833|493077|493423|501502|501834|501852|501856|502130|521909|521914|521917|521919|521922|521924|521932|521935|521938|521940|521942|521942|521944|522270|522276|522285|522287|522290|522293|522295|522297|522300|522320|522321|522323|522324|522327|522332|522335|522337|522342|522346|522349|522352|522356|522356|522677|522679|522685|522689|522692|522694|522698|522698|522701|522706|522708|536722|537514|538390|551773|561124|561131|561137|561145|561147|561148|561149|561152|561153|561161|561172|561173|561177|561179|561182|563906|563911|563912|563914|563917|563918|563921|563925|563928|566188|566198|566200|566214|566216|566228|566231|566237|566250|566254|566255|576123|576929|576930|584429|585958|587188|612768|635340|635341|635342|635343|635344|635345|635346|635347|635348|635349|635350|635351|635352|635353|635354|635355|635356|635357|635358|635359|635360|635361|635362|635363|635364|635365|635366|635367|635368|635369|635370|635371|635372|635373|635374|635375|635376|635377|635378|635379|635380|635381|635382|635383|635384|635385|635386|635387|635388|651624|692085|692086|692087|699719|699721|710674|710676|710678|722217|722218|722219|722220|722221|735851|735852|750312|750313|750314|750315|759617|759689|765937|765940|765944|765945|765948|765949|765959|775233|775240|775245|777569|777600|777667|777668|777669|779295|782699|782701|782702|782705|782707|782709|787605|793194|795944|819771|832631|832632|832633|832634|832635|832636|832637|832638|832639|832640|832641|832642|832643|832644|832645|832646|832647|832648|832649|832650|832651|832652|832653|832654|832655|832656|832657|832658|832659|832660|832661|832662|832663|832664|832665|832666|832667|832667|832668|832669|832670|832671|832672|832673|832674|832675|832676|832677|832677|832678|832679|832680|832681|832682|832683|832684|832685|832686|832687|832688|832689|832690|832691|832692|832693|832694|832695|832696|832697|832698|832699|832700|832701|832702|832703|832704|832705|832706|832707|832708|832709|832710|832711|832712|832713|832714|832715|832716|832717|832718|832719|832720|832721|832722|832723|832724|832725|832726|832727|832728|832729|832730|832731|832732|832733|832734|832735|832736|832737|832738|832739|832740|852048|852312|897097|919065|919065|919066|919067|920231|920232|920233|924530|924531|924532|924533|924534|924535|924536|924537|924538|924539|924540|924541|924542|924543|924544|924545|924546|924547|924548|924549|924550|924551|924552|924553|924554|924555|924556|924557|924558|924559|933548|933549|933550|933551|933552|933553|933554|933555|933556|933557|933558|933559|933560|933561|933562|933563|933564|933565|933566|933567|933568|933569|933570|933571|933572|933573|933574|933575|933576|933577|933578|940054|940863|940864|940865|945268|945269|945270|945271|945272|945273|945274|945275|945276|945277|945278|945279|945280|945281|945282|945283|945284|945285|945286|945287|945288|945289|945290|945291|945292|945293|945294|954946|954947|954948|954949|954950|954951|954952|954953|954954|954955|954956|954957|954958|954959|954960|954961|954962|954963|954964|954965|954966|954967|954968|954969|954970|959822|960616|963144|980924", "text": "Epilepsy, familial temporal lobe, 7" }, { - "baseId": "27559|27560|27561|27562|27563|27563|27564|27565|27565|27566|45518|54260|54264|171082|171117|174577|174853|174855|210162|210164|210166|210166|240717|259758|266296|309059|309061|309069|309083|309089|309094|309095|309097|309098|309101|309105|309112|309113|309123|309124|309129|309130|309138|309140|309141|309142|309146|309147|309149|313814|313815|313818|313819|313820|313821|313823|313824|313825|313832|313838|313841|313842|313845|313847|313848|313852|313855|313865|313866|313875|313882|313883|319644|319648|319649|319653|319654|319676|319678|319685|319689|319695|319697|319702|319710|319711|319718|319719|319722|319723|319729|319736|319737|319742|319743|319754|319762|320207|320215|320222|320223|320224|320225|320231|320236|320237|320244|320245|320247|320248|320250|320251|320252|320253|320255|320256|320259|320260|320272|320273|320274|320275|320279|320280|320292|371451|459531|481489|511094|511095|614980|624396|679766|682801|789088|902639|902640|902641|902643|902644|902645|902646|902647|902648|902649|902650|902651|902652|902653|902654|902655|902657|902659|902660|902661|902662|902663|902664|902666|902667|902668|902669|902670|902671|902672|902673|902674|902675|902676|902677|902678|902679|902680|902681|902682|980336", + "upstreamId": "27559|27560|27561|27562|27563|27563|27564|27565|27565|27566|45518|54260|54264|171082|171117|174577|174853|174855|210162|210164|210166|210166|240717|259758|266296|309059|309061|309069|309083|309089|309094|309095|309097|309098|309101|309105|309112|309113|309123|309124|309129|309130|309138|309140|309141|309142|309146|309147|309149|313814|313815|313818|313819|313820|313821|313823|313824|313825|313832|313838|313841|313842|313845|313847|313848|313852|313855|313865|313866|313875|313882|313883|319644|319648|319649|319653|319654|319676|319678|319685|319689|319695|319697|319702|319710|319711|319718|319719|319722|319723|319729|319736|319737|319742|319743|319754|319762|320207|320215|320222|320223|320224|320225|320231|320236|320237|320244|320245|320247|320248|320250|320251|320252|320253|320255|320256|320259|320260|320272|320273|320274|320275|320279|320280|320292|371451|459531|481489|511094|511095|614980|624396|679766|682801|789088|902639|902640|902641|902643|902644|902645|902646|902647|902648|902649|902650|902651|902652|902653|902654|902655|902657|902659|902660|902661|902662|902663|902664|902666|902667|902668|902669|902670|902671|902672|902673|902674|902675|902676|902677|902678|902679|902680|902681|902682|980336", "text": "Loeys-Dietz syndrome 1" }, { - "baseId": "27565|38870|38871|38872|38873|210166", + "upstreamId": "27565|38870|38871|38872|38873|210166", "text": "Multiple self-healing squamous epithelioma" }, { - "baseId": "27567|27568|27569|27570|27571|27572|27573|47494|47495|47500|47501|47503|47504|47505|47506|47908|622462|791931|791932", + "upstreamId": "27567|27568|27569|27570|27571|27572|27573|47494|47495|47500|47501|47503|47504|47505|47506|47908|622462|791931|791932", "text": "Diaphyseal dysplasia" }, { - "baseId": "27573", + "upstreamId": "27573", "text": "Breast cancer, invasive, susceptibility to" }, { - "baseId": "27574|27575|27576|27578|27581|27582|27584|27585|27586|27588|27589|27590|27591|27592|27593|27596|27597|27598|27602|27603|27604|27605|27606|27607|27609|195583|251085|251086|289816|289819|289824|289828|289829|289832|289834|289836|289841|289847|289851|289865|289866|289869|289872|289877|289879|289884|289886|289892|289901|290576|290580|290581|290590|290591|290593|290597|290605|290610|290611|290617|290618|290619|290623|290629|290637|290643|290658|290661|290662|290664|290669|293658|293671|293674|293678|293679|293680|293684|293702|293707|293712|293713|293714|293719|293743|293745|293766|293769|293782|293783|293799|293802|293803|293804|293807|293810|293812|293817|294221|294222|294223|294226|294233|294278|294279|294308|294309|294311|294316|294325|294326|294327|294334|294345|294346|294354|362074|384479|420977|428167|432550|432553|432557|485711|485712|485713|485714|485715|485716|485717|485718|485719|485720|485721|485722|485723|485724|485725|485726|485727|485728|485729|536152|538610|698010|790381|888592|888593|888594|888595|888596|888597|888598|888599|888600|888601|888602|888603|888604|888605|888606|888607|888608|888609|888610|888611|888612|888613|888614|888615|888616|888617|888618|888619|888620|888621|888622|888623|888624|888625|888626|888627|888628|888629|888630|888631|888632|888633|888634|888635|888636|888637|888638|888639|888640|888641|888642|888643|888644|888645|888646|888647|888648|888649|891633", + "upstreamId": "27574|27575|27576|27578|27581|27582|27584|27585|27586|27588|27589|27590|27591|27592|27593|27596|27597|27598|27602|27603|27604|27605|27606|27607|27609|195583|251085|251086|289816|289819|289824|289828|289829|289832|289834|289836|289841|289847|289851|289865|289866|289869|289872|289877|289879|289884|289886|289892|289901|290576|290580|290581|290590|290591|290593|290597|290605|290610|290611|290617|290618|290619|290623|290629|290637|290643|290658|290661|290662|290664|290669|293658|293671|293674|293678|293679|293680|293684|293702|293707|293712|293713|293714|293719|293743|293745|293766|293769|293782|293783|293799|293802|293803|293804|293807|293810|293812|293817|294221|294222|294223|294226|294233|294278|294279|294308|294309|294311|294316|294325|294326|294327|294334|294345|294346|294354|362074|384479|420977|428167|432550|432553|432557|485711|485712|485713|485714|485715|485716|485717|485718|485719|485720|485721|485722|485723|485724|485725|485726|485727|485728|485729|536152|538610|698010|790381|888592|888593|888594|888595|888596|888597|888598|888599|888600|888601|888602|888603|888604|888605|888606|888607|888608|888609|888610|888611|888612|888613|888614|888615|888616|888617|888618|888619|888620|888621|888622|888623|888624|888625|888626|888627|888628|888629|888630|888631|888632|888633|888634|888635|888636|888637|888638|888639|888640|888641|888642|888643|888644|888645|888646|888647|888648|888649|891633", "text": "Thyroid hormone resistance, generalized, autosomal dominant" }, { - "baseId": "27577|27578|485726", + "upstreamId": "27577|27578|485726", "text": "Thyroid hormone resistance, generalized, autosomal recessive" }, { - "baseId": "27579|27580|27583|27587|27599|27600", + "upstreamId": "27579|27580|27583|27587|27599|27600", "text": "Thyroid hormone resistance, generalized" }, { - "baseId": "27593|289842|289852|289859|289870|290582|290583|290584|290596|290598|290604|290639|290642|293687|293688|293689|293690|293691|293692|293815|293816|294247|294249|294330|294332|294344|294352|428167", + "upstreamId": "27593|289842|289852|289859|289870|290582|290583|290584|290596|290598|290604|290639|290642|293687|293688|293689|293690|293691|293692|293815|293816|294247|294249|294330|294332|294344|294352|428167", "text": "Thyroid hormone resistance syndrome" }, { - "baseId": "27594|27595|27597|27601|27608|27610", + "upstreamId": "27594|27595|27597|27601|27608|27610", "text": "Thyroid hormone resistance, selective pituitary" }, { - "baseId": "27611|622415|788869|966797", + "upstreamId": "27611|622415|788869|966797", "text": "Lethal congenital contracture syndrome 2" }, { - "baseId": "27612", + "upstreamId": "27612", "text": "Colon cancer, advanced" }, { - "baseId": "27613|27614|27615|27616|96841", + "upstreamId": "27613|27614|27615|27616|96841", "text": "Burkitt lymphoma" }, { - "baseId": "27617|27618|27619|27621|27622|27623|27632|27639|27641|27642|27645|27652|28957|28958|29005|29022|44227|53985|54282|54283|54284|54291|166218|170209|173901|175715|263939|359197|362753|362840|362841|362845|362847|362912|363165|363197|363201|363323|363364|363365|363366", + "upstreamId": "27617|27618|27619|27621|27622|27623|27632|27639|27641|27642|27645|27652|28957|28958|29005|29022|44227|53985|54282|54283|54284|54291|166218|170209|173901|175715|263939|359197|362753|362840|362841|362845|362847|362912|363165|363197|363201|363323|363364|363365|363366", "text": "Neoplasm of the thyroid gland" }, { - "baseId": "27618|27639|28116|28126|31378|31387|50139|57897|57909|57914|57923|57933|57958|57966|57970|57973|57983|57985|58014|58018|58027|58039|58047|58118|58143|58146|58168|58173|58183|58186|58206|58207|58213|58221|58238|58242|75214|75215|75216|75217|75218|75219|75220|75221|75222|75223|75224|75225|75226|75227|75228|75229|75230|75231|75232|75233|75234|75235|75247|75627|75648|75707|132342|462915|463279|463892|568568", + "upstreamId": "27618|27639|28116|28126|31378|31387|50139|57897|57909|57914|57923|57933|57958|57966|57970|57973|57983|57985|58014|58018|58027|58039|58047|58118|58143|58146|58168|58173|58183|58186|58206|58207|58213|58221|58238|58242|75214|75215|75216|75217|75218|75219|75220|75221|75222|75223|75224|75225|75226|75227|75228|75229|75230|75231|75232|75233|75234|75235|75247|75627|75648|75707|132342|462915|463279|463892|568568", "text": "Urinary bladder cancer" }, { - "baseId": "27619|27621|27629|28940|48930|54290|614370", + "upstreamId": "27619|27621|27629|28940|48930|54290|614370", "text": "RAS-associated autoimmune leukoproliferative disorder" }, { - "baseId": "27619|194404|214479|362841", + "upstreamId": "27619|194404|214479|362841", "text": "OCULOECTODERMAL SYNDROME, SOMATIC" }, { - "baseId": "27620", + "upstreamId": "27620", "text": "Bladder cancer, transitional cell, somatic" }, { - "baseId": "27621|27639|27652|28695|28939|31366|31371|31398|44227|48246|48247|360854|827717", + "upstreamId": "27621|27639|27652|28695|28939|31366|31371|31398|44227|48246|48247|360854|827717", "text": "Epidermal nevus" }, { - "baseId": "27621|27622|27641|27651|27652|44227", + "upstreamId": "27621|27622|27641|27651|27652|44227", "text": "Nevus sebaceous" }, { - "baseId": "27621|28939|44227|170209|363204|614370", + "upstreamId": "27621|28939|44227|170209|363204|614370", "text": "Epidermal nevus syndrome" }, { - "baseId": "27621|27622|29000|178328|452274|513906|513959|514053|535365|535366|535367|535368|535369|535370|535371|535372|535373|535374|535375|535376|677974", + "upstreamId": "27621|27622|29000|178328|452274|513906|513959|514053|535365|535366|535367|535368|535369|535370|535371|535372|535373|535374|535375|535376|677974", "text": "Cerebral arteriovenous malformation" }, { - "baseId": "27621|83949|170209|363202|539145|539146|539147", + "upstreamId": "27621|83949|170209|363202|539145|539146|539147", "text": "Vascular Tumors Including Pyogenic Granuloma" }, { - "baseId": "27621|682729", + "upstreamId": "27621|682729", "text": "Primary low grade serous adenocarcinoma of ovary" }, { - "baseId": "27625|27626|27629|27629|27633|27634|40605|40606|48922|48930|614370", + "upstreamId": "27625|27626|27629|27629|27633|27634|40605|40606|48922|48930|614370", "text": "Cardiofaciocutaneous syndrome 2" }, { - "baseId": "27626|27627|27628|27629|27630|27635|27636|27640|28364|28366|28372|28379|28383|48922|48922|48930|48930|48934|48958|48964|48965|48969|48970|48977|48983|48998|49036|49153|49171|53782|55703|175394|363197|424626|432423|487033|537879|614370|624857|872157|972725|972731", + "upstreamId": "27626|27627|27628|27629|27630|27635|27636|27640|28364|28366|28372|28379|28383|48922|48922|48930|48930|48934|48958|48964|48965|48969|48970|48977|48983|48998|49036|49153|49171|53782|55703|175394|363197|424626|432423|487033|537879|614370|624857|872157|972725|972731", "text": "Noonan syndrome 3" }, { - "baseId": "27638|512968|512969|512970", + "upstreamId": "27638|512968|512969|512970", "text": "Dermatofibrosarcoma protuberans" }, { - "baseId": "27639|27641|27647|27648", + "upstreamId": "27639|27641|27647|27648", "text": "Myopathy, congenital, with excess of muscle spindles" }, { - "baseId": "27640|31370", + "upstreamId": "27640|31370", "text": "Spermatocytic seminoma" }, { - "baseId": "27641", + "upstreamId": "27641", "text": "Epidermal nevus with urothelial cancer, somatic" }, { - "baseId": "27641", + "upstreamId": "27641", "text": "Nevus, woolly hair" }, { - "baseId": "27651", + "upstreamId": "27651", "text": "Costello syndrome, severe" }, { - "baseId": "27652|31372|31378|31381|31387|31398|363127", + "upstreamId": "27652|31372|31378|31381|31387|31398|363127", "text": "Bladder carcinoma" }, { - "baseId": "27653", + "upstreamId": "27653", "text": "Transferrin variant d1" }, { - "baseId": "27654", + "upstreamId": "27654", "text": "Transferrin variant chi" }, { - "baseId": "27654|27655|27656|27658|27659|27660|27661|27662|214927|288854|288855|288865|288885|288893|288895|288903|288905|288909|289608|289609|289610|289611|289616|292594|292595|292596|292598|292600|292601|292608|292612|292613|292615|292618|292812|292813|292818|292822|292823|292824|292825|292828|620107|682854|708585|733806|759351|763639|888029|888030|888031|888032|888033|888034|888035|888036|888037|888038|888039|888040|888041|888042|888043|891573|891574", + "upstreamId": "27654|27655|27656|27658|27659|27660|27661|27662|214927|288854|288855|288865|288885|288893|288895|288903|288905|288909|289608|289609|289610|289611|289616|292594|292595|292596|292598|292600|292601|292608|292612|292613|292615|292618|292812|292813|292818|292822|292823|292824|292825|292828|620107|682854|708585|733806|759351|763639|888029|888030|888031|888032|888033|888034|888035|888036|888037|888038|888039|888040|888041|888042|888043|891573|891574", "text": "Atransferrinemia" }, { - "baseId": "27655", + "upstreamId": "27655", "text": "Transferrin variant b2" }, { - "baseId": "27656", + "upstreamId": "27656", "text": "Transferrin variant c1/c2" }, { - "baseId": "27657", + "upstreamId": "27657", "text": "Transferrin variant bv" }, { - "baseId": "27661", + "upstreamId": "27661", "text": "Iron deficiency anemia" }, { - "baseId": "27663|27664|27665|27666", + "upstreamId": "27663|27664|27665|27666", "text": "Leukemia, Philadelphia chromosome-positive, resistant to imatinib" }, { - "baseId": "27663|27666|138312|138319|226760|226887|362830|362831|362832|362833|362882|362909|362977|362978|363229|363307", + "upstreamId": "27663|27666|138312|138319|226760|226887|362830|362831|362832|362833|362882|362909|362977|362978|363229|363307", "text": "Lymphoblastic leukemia, acute, with lymphomatous features" }, { - "baseId": "27669|512925|791117|801269|972520", + "upstreamId": "27669|512925|791117|801269|972520", "text": "Sveinsson chorioretinal atrophy" }, { - "baseId": "27670|27671", + "upstreamId": "27670|27671", "text": "Posterior polymorphous corneal dystrophy 3" }, { - "baseId": "27672|27673", + "upstreamId": "27672|27673", "text": "Corneal dystrophy, Fuchs endothelial, 6" }, { - "baseId": "27674|27675|27676|27677|27678|27679|27680|27681|27682|27683|27684|27685|27686|27687|45358|45497|45498|45499|45500|45501|45502|45503|45504|45505|45506|45507|45508|45509|45510|45511|45512|45513|45514|45515|45516|45517|190266|190267|226086|226090|256157|264673|264846|270802|272391|272691|275138|328255|328256|328257|328268|328269|328273|328277|328279|328280|328282|328285|328286|338131|338133|338135|338139|338142|338145|344275|344277|344283|345684|345685|345688|345689|345690|345691|345694|353374|360306|375878|376001|376007|409915|439497|441953|448380|491226|492929|505862|513136|540028|553576|577627|577628|577629|577631|586200|586328|586715|589333|589454|611852|623405|623406|623407|623408|623409|623410|623411|623412|623413|623414|623415|623416|623417|623418|623419|623420|623421|623422|623423|623424|623425|623426|623427|623428|623429|623430|623431|623432|623433|623434|623435|623436|623437|623438|623439|623440|623441|623442|623443|623444|623445|623446|623447|623448|623449|623450|623451|623452|623453|623454|623455|623456|623457|623458|623459|623460|623461|623462|623463|623464|623465|623466|623467|623468|623469|623470|623471|623472|623473|623474|623475|623476|623477|623478|623479|623480|623481|623482|623483|623484|623485|623486|623487|623488|623489|623490|623491|623492|623493|623494|623495|623496|623497|623498|623499|623500|623501|623502|623503|623504|623505|623506|623507|623508|623509|623510|623511|623512|623513|623514|623515|623516|623517|623518|623519|623520|623521|623522|623523|623524|623525|623526|623527|623528|623529|623530|623531|623532|623533|623534|623535|623536|623537|623538|623539|623540|623541|623542|623543|623544|623545|623546|623547|623548|623549|623550|623551|623552|623553|623554|623555|623556|623557|623558|623559|623560|623561|623562|623563|623564|623565|623566|623567|623568|623569|623570|623571|623572|623573|679902|802217|861190|877313|877314|877315|877316|877317|877318|877319|877320|877321|877322|877323|880509|962793|962794|962839|962840|962851|962852|963376|963377|963378|964476|967156|967209|970547|983854", + "upstreamId": "27674|27675|27676|27677|27678|27679|27680|27681|27682|27683|27684|27685|27686|27687|45358|45497|45498|45499|45500|45501|45502|45503|45504|45505|45506|45507|45508|45509|45510|45511|45512|45513|45514|45515|45516|45517|190266|190267|226086|226090|256157|264673|264846|270802|272391|272691|275138|328255|328256|328257|328268|328269|328273|328277|328279|328280|328282|328285|328286|338131|338133|338135|338139|338142|338145|344275|344277|344283|345684|345685|345688|345689|345690|345691|345694|353374|360306|375878|376001|376007|409915|439497|441953|448380|491226|492929|505862|513136|540028|553576|577627|577628|577629|577631|586200|586328|586715|589333|589454|611852|623405|623406|623407|623408|623409|623410|623411|623412|623413|623414|623415|623416|623417|623418|623419|623420|623421|623422|623423|623424|623425|623426|623427|623428|623429|623430|623431|623432|623433|623434|623435|623436|623437|623438|623439|623440|623441|623442|623443|623444|623445|623446|623447|623448|623449|623450|623451|623452|623453|623454|623455|623456|623457|623458|623459|623460|623461|623462|623463|623464|623465|623466|623467|623468|623469|623470|623471|623472|623473|623474|623475|623476|623477|623478|623479|623480|623481|623482|623483|623484|623485|623486|623487|623488|623489|623490|623491|623492|623493|623494|623495|623496|623497|623498|623499|623500|623501|623502|623503|623504|623505|623506|623507|623508|623509|623510|623511|623512|623513|623514|623515|623516|623517|623518|623519|623520|623521|623522|623523|623524|623525|623526|623527|623528|623529|623530|623531|623532|623533|623534|623535|623536|623537|623538|623539|623540|623541|623542|623543|623544|623545|623546|623547|623548|623549|623550|623551|623552|623553|623554|623555|623556|623557|623558|623559|623560|623561|623562|623563|623564|623565|623566|623567|623568|623569|623570|623571|623572|623573|679902|802217|861190|877313|877314|877315|877316|877317|877318|877319|877320|877321|877322|877323|880509|962793|962794|962839|962840|962851|962852|963376|963377|963378|964476|967156|967209|970547|983854", "text": "Renal cysts and diabetes syndrome" }, { - "baseId": "27688|56736|56888|102219|172610|173163|198881|199203|199212|199237|199738|227229|266764|360828|481230|587151|818179|818635|970724|970727|970728|980305|983701", + "upstreamId": "27688|56736|56888|102219|172610|173163|198881|199203|199212|199237|199738|227229|266764|360828|481230|587151|818179|818635|970724|970727|970728|980305|983701", "text": "Familial hypertrophic cardiomyopathy 9" }, { - "baseId": "27689|27690|27691|27694|27695|27695|27696|27697|27697|27698|27698|46998|55738|55739|55739|55741|55741|55742|55742|55743|55743|55744|55744|55745|55745|55746|55746|55747|55749|55750|55750|55751|55752|55752|55753|55753|55754|55755|55756|55756|55757|55757|55758|55759|55759|55760|55760|55761|55762|55762|55763|55763|55764|55764|55766|55767|55768|55768|55769|55770|55771|55771|55772|55773|55774|55776|55777|55777|55778|55778|55779|55779|55780|55780|55781|55782|55782|55783|55783|55784|55784|55786|55786|55787|55787|55788|55788|55790|55790|55791|55793|55793|55794|55794|55795|55796|55796|55798|55798|55799|55800|55800|55801|55802|55803|55803|55804|55805|55806|55806|55807|55808|55808|55809|55809|55810|55810|55811|55811|55813|55813|55814|55814|55816|55816|55818|55818|55819|55819|55820|55820|55821|55822|55822|55823|55823|55825|55826|55826|55827|55828|55829|55829|55830|55831|55831|55832|55832|55833|55835|55835|55836|55836|55837|55837|55839|55840|55840|55841|55841|55842|55844|55844|55845|55845|55846|55846|55847|55847|55848|55848|55849|55849|55850|55850|55852|55852|55853|55853|55854|55855|55855|55858|55858|55859|55859|55860|55861|55863|55864|55864|55867|55867|55868|55868|55869|55870|55870|55871|55872|55872|55873|55873|55875|55876|55876|55877|55877|55878|55878|55879|55880|55880|55881|55881|55882|55882|55883|55883|55884|55886|55886|55887|55887|55889|55889|55890|55890|55891|55891|55892|55893|55894|55895|55895|55896|55898|55898|55899|55900|55901|55901|55903|55904|55904|55905|55906|55906|55907|55907|55908|55908|55910|55910|55911|55912|55912|55915|55917|55918|55919|55920|55921|55923|55923|55924|55924|55926|55927|55927|55928|55928|55929|55929|55931|55933|55933|55934|55935|55935|55936|55936|55938|55939|55940|55940|55941|55942|55943|55943|55944|55944|55945|55945|55946|55947|55949|55950|55950|55951|55952|55952|55953|55954|55956|55957|55957|55958|55958|55960|55960|55961|55962|55964|55965|55968|55970|55971|55971|55973|55973|55975|55977|55977|55979|55979|55981|55982|55982|55983|55984|55984|55985|55985|55987|55988|55989|55990|55991|55991|55992|55993|55994|55995|55995|55996|55996|55997|55997|55998|55998|55999|55999|56000|56001|56002|56002|56004|56004|56006|56006|56009|56009|56011|56013|56013|56014|56015|56016|56016|56017|56018|56018|56019|56020|56022|56022|56023|56023|56024|56025|56026|56027|56028|56028|56029|56029|56030|56031|56032|56032|56033|56033|56034|56035|56036|56036|56038|56038|56039|56039|56040|56040|56041|56041|56042|56043|56043|56045|56045|56046|56047|56047|56048|56048|56049|56049|56050|56050|56051|56052|56052|56053|56053|56054|56055|56055|56056|56057|56058|56059|56060|56060|56061|56062|56065|56066|56067|56068|56069|56069|56071|56072|56073|56074|56074|56075|56075|56076|56076|56077|56078|56079|56079|56080|56080|56081|56082|56082|56083|56084|56085|56087|56087|56088|56088|56089|56092|56093|56093|56094|56094|56095|56095|56096|56096|56097|56100|56100|56101|56101|56103|56103|56105|56105|56107|56108|56108|56111|56111|56113|56113|56114|56114|56115|56115|56116|56116|56117|56117|56118|56118|56119|56119|56120|56120|56121|56124|56125|56127|56128|56129|56130|56130|56132|56133|56133|56134|56134|56135|56135|56136|56136|56137|56137|56138|56139|56142|56143|56143|56145|56145|56146|56147|56147|56148|56148|56150|56151|56152|56152|56153|56153|56154|56155|56155|56156|56156|56158|56158|56160|56163|56164|56164|56165|56165|56166|56167|56170|56171|56171|56172|56172|56173|56173|56174|56174|56175|56175|56176|56176|56178|56178|56179|56179|56180|56180|56181|56181|56183|56183|56185|56187|56187|56189|56189|56190|56190|56191|56191|56193|56193|56195|56195|56196|56196|56197|56197|56199|56199|56200|56200|56201|56201|56202|56202|56203|56204|56205|56205|56207|56207|56208|56209|56209|56210|56211|56211|56214|56214|56215|56215|56216|56218|56218|56219|56221|56221|56222|56222|56224|56224|56225|56227|56228|56230|56230|56231|56231|56233|56233|56234|56235|56235|56237|56237|56239|56239|56240|56240|56241|56243|56243|56245|56246|56248|56248|56249|56251|56251|56253|56255|56256|56258|56258|56261|56262|56262|56263|56264|56264|56265|56265|56266|56268|56270|56270|56271|56271|56273|56275|56276|56276|56277|56278|56280|56281|56281|56282|56283|56285|56286|56288|56289|56291|56291|56292|56292|56293|56295|56297|56298|56298|56300|56300|56301|56302|56302|56303|56305|56307|56307|56308|56309|56311|56312|56313|56314|56315|56315|56316|56316|56317|56320|56320|56321|56321|56322|56323|56323|56324|56324|56325|56326|56327|56328|56328|56330|56330|56331|56331|56333|56333|56335|56337|56338|56339|56340|56342|56342|56343|56343|56344|56345|56345|56346|56347|56347|56349|56349|56350|56350|56352|56352|56353|56353|56354|56356|56356|56359|56359|56360|56362|56362|56364|56364|56365|56365|56366|56366|56367|56367|56368|56369|56370|56370|56371|56372|56373|56373|56374|56375|56375|56377|56378|56378|56381|56381|56383|56383|56386|56387|56387|56388|56388|56389|56389|56390|56390|56392|56393|56393|56394|56394|56395|56395|56396|56396|56397|56398|56399|56400|56401|56401|56403|56405|56405|56406|56408|56408|56409|56410|56412|56413|56413|56414|56415|56417|56418|56418|56420|56420|56421|56421|56423|56425|56425|56426|56428|56430|56430|56433|56433|56436|56436|56437|56439|56439|56440|56440|56441|56441|56442|56442|56443|56444|56446|56447|56448|56451|56451|56453|56454|56454|56455|56455|56456|56457|56457|56458|56459|56459|56460|56460|56462|56462|56463|56463|56464|56464|56466|56467|56467|56468|56469|56469|56470|56471|56471|56472|56472|56473|56473|56474|56474|56476|56477|56477|56478|56479|56480|56481|56481|56482|56482|56483|56483|56485|56485|56486|56487|56487|56489|56492|56493|56494|56495|56495|56496|56496|56497|56497|56498|56498|56499|56499|56500|56500|56503|56503|56504|56506|56507|56508|56508|56510|56512|56512|56513|56513|56514|56514|56515|56515|56516|56516|56518|56518|56520|56520|56521|56521|56522|56524|56524|56526|56526|56527|56528|56529|56530|56530|56532|56533|56533|56535|56535|56537|56537|56538|56538|56539|56539|56540|56540|56541|56542|56543|56544|56544|56545|56545|56547|56548|56549|56549|56551|56552|56555|56555|56556|56557|56557|56558|56558|56559|56559|56560|56560|56561|56563|56564|56564|56566|56567|56567|56568|56569|56570|56570|56572|56572|56573|56574|56575|56575|56576|56576|56577|56577|56578|56578|56579|56579|56580|56580|56581|56582|56582|56583|56583|56584|56584|56585|56586|56586|56587|56588|56589|56590|56592|56592|56593|56594|56594|56595|56595|56596|56596|56597|56597|56599|56600|56600|56601|56604|56604|56605|56606|56606|56607|56608|56608|56610|56610|56611|56614|56615|56616|56616|56618|56619|56619|56620|56620|56621|56621|56622|56624|56624|56625|56625|56626|56627|56628|56628|56629|56629|56631|56631|56633|56633|56634|56634|56636|56637|56637|56638|56639|56640|56641|56641|56642|56643|56643|56644|56645|56645|56646|56647|56647|56648|56648|56649|56649|56652|56652|56653|56653|56654|56655|56657|56658|56658|56659|56661|56661|56663|56665|56665|56667|56667|56668|56669|56671|56671|56672|56672|56674|56675|56675|56676|56676|56677|56677|56678|56678|56679|56679|56680|56680|56681|56682|56682|56683|56684|56684|56685|56685|56686|56686|56687|56687|56688|56689|56689|56691|56692|56693|56693|56694|56695|56696|56696|56700|56700|56701|56701|56703|56703|56704|56705|56705|56706|56708|56708|56709|56709|56710|56710|56711|56711|56712|56712|56714|56714|56715|56716|56716|56717|56717|56718|56718|56719|56719|56722|56722|56723|56723|56724|56725|56725|56726|56727|56728|56729|56730|56731|56731|56732|56732|56733|56735|56736|56736|56737|56737|56738|56738|56741|56742|56742|56743|56743|56746|56746|56749|56750|56751|56751|56752|56752|56753|56753|56754|56755|56755|56758|56759|56759|56760|56760|56762|56762|56763|56764|56764|56765|56766|56766|56767|56767|56768|56768|56769|56769|56771|56772|56773|56773|56774|56775|56775|56776|56777|56777|56778|56780|56781|56784|56785|56785|56786|56786|56787|56787|56788|56788|56789|56789|56790|56792|56792|56793|56793|56794|56794|56796|56797|56797|56798|56798|56800|56800|56802|56802|56803|56803|56804|56804|56805|56805|56806|56806|56807|56807|56808|56809|56809|56810|56810|56811|56811|56812|56813|56814|56815|56816|56816|56817|56818|56819|56819|56820|56822|56822|56823|56823|56824|56825|56826|56826|56827|56828|56829|56829|56831|56831|56832|56833|56833|56834|56834|56837|56838|56838|56839|56839|56841|56841|56842|56843|56845|56847|56847|56848|56848|56849|56849|56850|56851|56851|56852|56853|56854|56855|56855|56856|56857|56857|56858|56858|56863|56863|56864|56864|56865|56866|56867|56868|56870|56870|56871|56872|56872|56873|56873|56874|56874|56875|56875|56876|56876|56877|56878|56878|56879|56880|56880|56881|56881|56882|56882|56884|56884|56886|56886|56887|56887|56888|56906|56937|56970|56973|56975|56976|56978|56980|56981|56982|56983|56985|56986|56987|56989|56990|56991|56993|56995|56996|56998|56999|57001|57003|57005|57007|57008|57009|57010|57011|57012|57013|57014|71025|85139|85174|85176|85183|85203|102161|102164|102168|102169|102169|102170|102170|102171|102172|102172|102173|102176|102178|102179|102180|102182|102183|102183|102185|102185|102187|102188|102188|102190|102190|102192|102192|102193|102193|102194|102194|102195|102195|102196|102197|102200|102200|102201|102202|102203|102203|102206|102206|102207|102207|102208|102208|102209|102210|102210|102211|102212|102212|102214|102214|102215|102215|102217|102218|102218|102219|102220|102221|102221|136108|136109|136109|136110|136111|136112|136113|136114|136115|136116|136116|136117|136119|136120|136121|136121|136124|136125|136126|136126|136127|136128|136128|136129|136129|136130|136133|136134|136134|136135|136136|136355|136356|136358|136359|141478|141478|141479|141479|141482|141489|141490|141490|141492|141492|141493|141493|141494|141500|141501|141501|141502|141502|141504|141509|141509|141510|141510|141511|141512|141513|141515|141515|141516|141517|141520|141520|141521|141522|141523|141523|141524|141524|141526|141530|141532|141533|141534|141534|141536|141537|141539|141542|141542|141543|141544|141544|141545|141546|141547|141549|165598|165601|165601|165602|172606|172606|172609|172609|172610|172611|172615|172615|172617|172618|172621|172621|172622|172624|172626|172627|172628|172629|172630|172632|172635|172637|172638|172642|172644|172647|172647|172648|172651|172652|172652|172653|172656|172657|172657|172658|172661|172662|172663|172664|172665|172665|172666|172668|172668|172671|172672|172675|172677|172677|172679|172681|172682|172683|172683|172684|172686|172689|172691|172691|172693|172694|172696|172697|172697|172698|172698|172699|172699|172700|172701|172702|172704|172705|172708|172710|172715|172717|172717|172726|172727|172728|172729|172729|172731|172732|172734|172734|172737|172738|172738|172800|172800|172804|172805|172807|172808|172808|172813|172813|172816|172816|172818|172820|172820|172823|172823|172824|172825|172827|172829|172829|172830|172833|172833|172834|172835|172838|172838|172840|172841|172841|172849|172849|172850|172850|172852|172852|172853|172854|172854|172856|172859|172860|172862|172863|172868|172870|172872|172872|172877|172877|172878|172878|172879|172879|172942|172943|172944|172945|172945|172946|172948|172950|172951|172954|172955|172958|172962|172963|172964|172964|172967|172971|172971|172972|172973|172973|172975|172976|172979|172981|172981|172982|172982|172983|172984|172989|172990|172991|172992|172994|172995|172997|172997|172998|172998|172999|172999|173002|173003|173003|173005|173006|173008|173008|173009|173009|173011|173013|173015|173015|173022|173025|173026|173027|173028|173031|173031|173032|173035|173035|173036|173037|173040|173041|173043|173043|173044|173044|173045|173046|173047|173047|173048|173049|173049|173051|173053|173056|173059|173061|173061|173062|173068|173069|173072|173073|173073|173074|173074|173075|173079|173080|173081|173083|173088|173089|173090|173090|173092|173093|173095|173096|173097|173098|173099|173102|173102|173104|173104|173105|173107|173107|173108|173112|173114|173114|173115|173118|173121|173121|173126|173127|173132|173135|173136|173136|173137|173137|173141|173143|173144|173144|173147|173147|173149|173150|173152|173152|173156|173157|173158|173158|173159|173160|173161|173163|173163|173164|173165|173166|173166|173167|173167|173168|173169|173169|173172|173172|173173|173174|173175|173176|173176|173177|173178|173181|173182|173183|173186|173187|173189|173192|173192|173193|173193|173195|173197|173198|173199|173206|173207|173208|173212|173212|173213|173213|173218|173218|173219|173220|173221|173221|173225|173225|173227|173229|173229|173231|173234|173234|173235|173236|173240|173240|173243|173244|173245|173246|173246|173247|173247|173248|173248|173250|173252|173252|173254|173257|173258|173259|173262|173263|173264|173266|173300|173301|173301|173303|173304|173307|173308|173310|173311|173311|173312|173313|173314|173316|173316|173320|173321|173321|173322|173328|173328|173329|173329|173333|173334|173335|173342|173342|173344|173344|173346|173348|173349|173350|173351|173351|173353|173354|173354|173355|173356|173356|173357|173357|173358|173359|173359|173360|173361|173361|173363|173364|173364|173368|173372|173373|173374|173375|173376|173378|173381|173381|173383|173394|173394|173395|173396|173399|173400|173439|173441|173443|173443|173444|173445|173448|173448|173452|173452|173453|173453|173457|173460|173462|173463|173463|173464|173467|173467|173469|173472|173474|173475|173478|173478|173481|173482|173483|173483|173485|173486|173486|173581|173582|173583|173585|173586|173593|173593|173594|173597|173598|173599|173599|173600|173600|173603|173604|173612|173618|173618|173620|173623|173624|173624|173626|173626|173627|173628|173720|173723|173724|173726|173727|173728|173728|173730|173734|173861|173862|173863|173864|173864|173866|173867|173867|173868|173869|173871|176940|176941|176945|177073|177075|177206|177334|177335|177338|178108|178109|178112|178113|178114|178115|178117|178119|178120|178121|178122|178124|178128|178129|178130|178132|178135|178472|178478|178479|178482|178484|178485|178486|178486|178490|188930|188939|188939|188946|188946|189405|189407|189407|189409|189409|189411|189415|189415|189416|189422|189423|189423|189428|189430|189432|189435|189435|189436|189437|189437|189444|189445|189446|189446|189447|189449|189451|189451|189454|189454|189459|189459|189464|189464|189467|189467|189469|189469|189476|189476|189477|189478|189481|189483|189483|189486|189486|189489|189489|189490|189491|189491|189492|189493|189493|189494|189497|189498|189498|189499|189499|189503|189503|189507|189507|189512|189514|189514|189516|189518|189522|189523|189524|189524|189527|189531|189535|189535|189536|189539|189539|189541|189541|189543|189544|189548|189553|189553|189554|189556|189560|189566|189566|189569|189573|189573|189578|189578|189580|189582|189582|189584|189585|189586|189587|189588|189588|189589|189590|189591|189591|189592|189594|189594|189597|189599|189599|189600|189601|189603|189604|189605|189610|189616|189619|189619|189627|189628|189629|189629|189630|189630|189635|189636|189639|189640|189641|189642|189643|189647|189648|189649|189650|189652|189655|189655|189661|189661|189663|189665|189666|189667|189671|189673|189673|189674|189681|189686|189686|189687|189687|189691|189692|189699|189701|189702|189732|189733|189734|189738|189741|189743|189744|189745|189746|189746|189748|189753|189755|189756|189756|189758|189760|189760|189761|189763|189764|189764|189765|189766|189769|189769|189770|189770|190932|190941|191125|191126|191309|191461|191464|191743|191842|192072|192168|192707|192712|192712|192797|192797|192800|192868|192869|192870|192871|192874|192875|192877|192952|192952|192957|192957|193001|193003|193004|193004|193005|193006|193078|193079|193080|193081|193082|193082|193084|193084|193086|193154|193163|193165|193166|193217|193217|193219|193221|193221|193226|193226|193227|193228|193229|193229|193231|193231|193233|193237|193237|193238|193241|193243|193249|193252|193255|193257|193305|193310|193311|193312|193313|193316|193317|193355|193356|193357|193357|193734|193802|193804|193804|193805|193807|193814|193816|193884|193886|193962|193962|194739|194739|195077|195102|195117|195117|195118|195118|195137|195137|195518|195525|195775|195775|196105|196120|196130|196340|196340|196400|196400|196408|198682|198686|198688|198692|198697|198698|198699|198700|198701|198702|198703|198703|198704|198705|198710|198716|198718|198721|198723|198729|198730|198731|198733|198733|198736|198737|198738|198739|198743|198744|198744|198745|198746|198753|198753|198754|198754|198758|198760|198761|198767|198768|198769|198772|198772|198777|198780|198781|198788|198790|198790|198791|198793|198794|198796|198797|198799|198802|198804|198805|198806|198806|198811|198813|198817|198817|198819|198819|198820|198822|198825|198826|198827|198828|198832|198832|198833|198835|198838|198839|198839|198841|198845|198849|198850|198852|198852|198854|198856|198857|198858|198867|198869|198870|198875|198876|198878|198881|198881|198881|198886|198888|198888|198894|198895|198900|198900|198902|198903|198907|198908|198909|198909|198911|198912|198912|198915|198917|198918|198920|198924|198929|198931|198937|198940|198941|198944|198947|198952|198954|198957|198966|198966|198969|198969|198970|198973|198976|198978|198979|198988|198988|198995|198997|198997|198998|198999|199000|199011|199013|199015|199016|199019|199022|199024|199025|199026|199027|199028|199029|199029|199031|199035|199036|199040|199041|199042|199043|199050|199054|199064|199066|199070|199071|199072|199082|199085|199086|199090|199094|199096|199098|199104|199106|199107|199108|199109|199110|199110|199111|199112|199112|199114|199114|199116|199118|199120|199126|199127|199130|199131|199133|199139|199139|199141|199143|199146|199147|199148|199149|199149|199150|199156|199157|199157|199165|199166|199167|199172|199174|199174|199180|199184|199191|199191|199192|199192|199193|199200|199201|199203|199203|199204|199205|199208|199212|199212|199214|199216|199221|199222|199223|199224|199225|199228|199229|199229|199233|199233|199237|199237|199238|199242|199243|199244|199245|199249|199249|199251|199253|199254|199261|199264|199264|199265|199265|199266|199266|199269|199270|199271|199272|199274|199276|199277|199285|199286|199287|199289|199292|199296|199297|199298|199299|199302|199302|199304|199306|199310|199310|199313|199321|199322|199322|199325|199327|199329|199332|199334|199334|199336|199340|199342|199344|199344|199346|199352|199353|199361|199361|199365|199366|199372|199373|199374|199376|199380|199384|199385|199387|199391|199393|199398|199401|199402|199403|199405|199407|199409|199409|199410|199416|199418|199426|199430|199432|199432|199437|199438|199439|199441|199441|199444|199449|199449|199452|199454|199455|199458|199459|199461|199462|199467|199468|199470|199474|199474|199477|199479|199483|199485|199486|199490|199490|199492|199492|199495|199499|199501|199501|199505|199512|199512|199513|199513|199524|199526|199526|199530|199531|199532|199533|199535|199537|199539|199543|199544|199545|199555|199556|199556|199557|199559|199561|199562|199563|199563|199576|199577|199578|199578|199579|199580|199580|199583|199585|199586|199588|199593|199594|199595|199598|199601|199605|199608|199611|199671|199673|199674|199697|199698|199701|199707|199707|199712|199712|199714|199715|199716|199719|199720|199722|199723|199724|199728|199736|199738|199740|199749|199751|199753|199753|199754|199756|199759|199759|199761|199764|199764|199765|199771|199773|199774|199776|199777|205135|205135|205422|206910|206911|206917|206918|206919|206920|206921|206922|206929|206930|213528|215231|215231|221119|221120|221121|221122|221123|221124|221125|221126|221127|221128|221129|221130|221131|221132|221133|224228|224235|224240|224982|224987|224991|224992|224998|225000|225005|225009|225016|225018|225027|225034|225039|225040|225045|225046|225055|225057|225060|225074|225076|225077|225078|225079|225081|225089|225090|225093|225094|225100|225106|225108|225112|225114|225115|225116|226447|226454|226455|226892|227229|228549|228550|228552|228556|228558|228560|228564|228568|228569|228573|228577|228579|228580|228580|228584|228584|228588|228589|228593|228594|228594|228595|228595|228600|228609|228619|228622|228624|228631|228637|228638|228640|228640|228642|228644|228645|228646|228648|228651|228652|228654|228656|228656|228660|228660|228661|228662|228662|228666|228668|228675|228676|228677|228677|228678|228679|228680|228681|228687|228690|228690|228692|228695|228695|228699|228699|228700|228710|228711|228714|228716|228718|228719|228723|228725|228725|228729|228729|228730|228733|228734|228739|228740|228741|228742|228742|228744|228745|228746|228747|228749|228751|228752|228754|228754|228757|228761|228762|228762|228764|228771|228772|228775|228779|228784|228786|228786|228787|228789|228789|228792|228794|228797|228801|228806|228811|228812|228814|228816|228821|228822|228827|228829|228830|228832|228833|228838|228839|228842|228845|228847|228875|228876|228877|228880|228881|228885|228887|228892|228895|228900|228901|228904|228905|228907|236752|238389|238389|238390|238391|238392|238393|238393|238394|238395|238396|238397|238398|238399|238400|238401|238402|238403|238404|238405|238407|238408|238409|238410|238411|238412|238413|238414|238415|238416|238417|238418|238419|238420|238420|238421|238422|238422|238423|238424|238425|238426|238427|238428|238429|238430|238431|238432|238434|238435|238436|238437|238438|238440|238441|238441|238442|238443|238444|238445|238446|238447|238448|238449|238450|238451|238452|238453|238454|238455|238456|238457|238459|238461|238462|238464|238464|238465|238466|238467|238468|238469|238470|238471|238472|238473|238474|238475|238476|238477|238478|238479|238479|238480|238481|238482|238483|238484|238485|238486|238487|238488|238489|238490|238491|238492|238493|238494|238495|238496|238497|238498|238499|238500|238501|238502|238503|238504|238505|238506|238507|238508|238509|238510|238511|238512|238513|238514|238515|238516|238517|238518|238519|238520|238521|238522|238524|238524|238525|238526|238527|238528|238529|238530|238531|238532|238533|238534|238535|238536|238537|238538|238539|238540|238541|238542|238543|238544|238545|238547|238547|238548|238550|238551|238552|238553|238554|238555|238556|238557|238558|238559|238559|238560|238560|238562|238563|238564|238566|238567|238568|238569|238570|238571|238572|238573|238575|238576|238577|248627|250411|250413|250415|250416|250417|250420|250420|250426|250427|250429|250430|250430|257987|257990|257995|258006|258008|258009|258010|258011|258018|258019|258027|258032|258034|258036|258039|258040|258042|258044|258049|258054|258054|258056|258057|258060|258060|258061|258064|258068|258072|258075|258076|258080|258080|258082|258083|258084|258085|258089|258090|258091|258095|258096|258097|258099|258101|258101|258102|258105|258106|258111|258111|258114|258115|258121|258122|258122|258123|258124|258125|258128|258130|258130|258131|258132|258137|258137|258145|258146|258148|258150|258155|258156|258157|258157|258158|258159|258161|258163|258165|258165|258169|258175|258176|258182|258183|258185|258191|263857|264057|265399|265464|265497|265553|265624|265904|265936|266024|266024|266065|266075|266078|266084|266095|266186|266188|266197|266209|266230|266241|266245|266249|266256|266256|266333|266336|266373|266397|266411|266412|266423|266542|266653|266653|266666|266666|266671|266679|266725|266737|266744|266754|266755|266757|266764|266764|266782|266857|266857|266868|266875|266890|266892|266892|266893|266894|266899|266899|266904|267023|267023|267070|267084|267089|267093|267093|267112|267127|267127|267265|267341|267343|267409|267490|267534|267543|267557|267629|267639|267673|267674|267687|267687|267715|267717|267725|267725|267729|267860|267868|267872|267897|267901|267925|267951|267951|267961|267961|268111|268171|268216|268223|268239|268239|268326|268329|268329|268334|268335|268337|268487|268531|268531|268680|268703|268730|268795|268795|268915|268915|269034|269201|269229|269343|269544|269646|269669|269864|270161|270205|270836|271155|271221|271221|271689|271856|271856|271898|271933|271996|272032|272181|272182|272192|272661|272756|272756|272908|272997|272999|273034|273051|273235|273337|273378|273378|273700|273712|273760|273761|273815|274173|274309|274528|274548|274588|274603|274693|274705|274706|274707|274709|274711|274714|274935|274943|274948|274951|274951|274956|274957|275123|283197|283198|283200|283201|283204|283211|283212|283220|283221|283221|283222|283223|283225|283225|283228|283229|283232|283232|283233|283233|283235|283236|283240|283244|283244|283249|283250|283252|283252|283253|283255|283256|283262|283263|283269|283270|283271|283274|283275|283277|283277|283278|283294|283304|283309|283320|283321|283327|283328|283329|283332|283332|283341|283343|283344|283344|283346|283348|283349|283358|283361|283361|283371|283371|283374|283375|283375|283376|283378|283378|283379|283381|283389|283389|283390|283394|283395|283401|283404|283404|283405|283405|283408|283411|283411|283417|283418|283420|283424|283425|283430|283432|283435|283439|283905|283908|283910|283911|283912|283912|283914|283915|283923|283923|283924|283930|283931|283931|283933|283935|283936|283941|283942|283942|283947|283947|283956|283956|283959|283961|283966|283966|283969|283975|283976|283976|283990|283990|283991|283994|283994|283995|283996|283996|283997|283998|283999|284002|284006|284012|284020|284020|284021|284023|284024|284027|284036|284036|284044|284045|284046|284048|284051|284052|284052|284053|284055|284056|284061|284061|284062|284062|284064|284065|284067|284068|284069|284075|284075|284076|284082|284090|284091|284105|284106|284107|284109|284110|284110|284111|284114|284114|285677|285678|285679|285683|285689|285691|285692|285692|285693|285702|285704|285705|285706|285708|285715|285729|285729|285735|285737|285739|285740|285747|285752|285767|285767|285769|285770|285773|285774|285774|285776|285790|285793|285794|285814|285818|285818|285825|285825|285830|285830|285831|285834|285840|285840|285841|285843|285844|285851|285853|285855|285856|285859|285860|285861|285861|285878|285888|285888|285889|285892|285911|285912|285920|285920|285923|285923|285924|285926|285926|285938|285963|285963|285976|285977|285981|285981|285986|285987|285988|285990|285991|285993|285998|285998|286000|286001|286008|286009|286009|286010|286011|286014|286014|286015|286016|286016|286073|286074|286082|286085|286086|286091|286093|286093|286099|286100|286100|286101|286105|286106|286108|286110|286111|286111|286112|286115|286131|286131|286132|286136|286136|286138|286141|286145|286146|286150|286151|286152|286157|286158|286167|286175|286178|286183|286184|286186|286186|286187|286187|286191|286191|286195|286196|286197|286197|286201|286202|286205|286207|286208|286209|286209|286210|286239|286240|286240|286244|286259|286259|286263|286264|286264|286266|286267|286275|286287|286287|286290|286294|286294|286295|286304|286305|286311|286316|286316|286317|286318|286323|286323|286324|286325|286341|286341|286342|286361|286376|286386|286386|286387|286408|359329|359386|360828|365709|365711|365714|365723|365724|365734|365739|365753|365761|365843|365844|365857|365861|365862|365868|365874|365883|365897|365913|365933|365942|365963|365968|365975|365980|365990|365993|365995|365998|366003|366005|366006|366024|366029|366038|366039|366043|366047|366053|366057|366059|366059|366060|366065|366069|366071|366077|366079|366081|366082|366087|366097|366101|366102|366102|366108|366108|366109|366113|366125|366125|366132|366134|366144|366159|366185|366199|366230|366231|366260|366263|366309|366348|366394|366421|366433|366433|366438|366440|366453|366486|366488|366490|366505|366548|366550|366564|366573|366586|366591|366598|366672|366690|366703|391464|391471|391475|391480|391481|391485|391489|391492|391494|391497|391504|391509|391510|391515|391519|391520|391521|391523|391526|391533|391534|391535|391536|391537|391538|391538|391539|391540|391541|391541|391543|391544|391551|391552|391552|391554|391558|391562|391563|391564|391569|391570|391572|391574|391576|391577|391580|391580|391583|391584|391585|391588|391592|391593|391595|391597|391600|391603|391606|391607|391609|391610|391620|391620|391622|391624|391632|391634|391636|391637|391640|391642|391645|391646|391650|391651|391654|391659|391660|391662|391663|391664|391666|391667|391668|391669|391670|391671|391672|391673|391674|391675|391676|391677|391678|391679|391680|391681|391682|391683|391684|391685|391686|391687|391688|391689|391690|391690|391691|391692|391693|391694|391695|391696|391697|391698|391699|391700|391701|391703|391704|391705|391706|391707|391708|391709|391710|391711|391712|391713|391714|391715|391716|391717|391718|391719|391720|391721|391722|391723|391724|391725|391726|391727|391728|391730|391732|391733|391734|391734|391735|391736|391737|391739|391740|391741|391742|391743|391744|391746|391747|391748|391749|391750|391751|391752|391753|391754|391755|391756|391758|391759|391760|391762|391763|391764|391765|391766|391767|391768|391769|391770|391771|391772|391773|391774|391775|391776|391777|391778|391779|391780|391781|391782|391783|391784|391785|391786|391787|391788|391789|391790|391791|391792|391793|391794|391795|391796|391797|391798|391799|391800|391800|391801|391802|391803|391804|391805|391806|391807|391808|391809|391810|391811|391812|391814|391815|391816|391817|391818|391819|391820|391821|391822|391824|391825|391826|391827|391828|391829|391830|391831|391832|391834|391835|391836|391837|391838|391839|391840|391842|391843|391844|391845|391847|391848|391849|391850|391851|391853|391854|391855|391856|391857|391858|391859|391860|391861|391862|391865|391866|391867|391869|391870|391871|391872|391873|391874|391875|391876|391877|391878|391879|391880|391881|391882|391883|391883|391884|391885|391886|391887|391888|391889|391890|391891|391892|391893|391894|391896|391897|391898|391899|391900|391901|391902|391903|391904|391905|391906|391907|391908|391909|391910|391911|391912|391913|391914|391915|391916|391918|391919|391920|391921|391922|391923|391924|391925|391927|391928|391929|391930|391931|391932|391933|391934|391935|391936|391937|391938|391939|391940|391941|391942|391943|391944|391945|391946|391947|391949|391950|391951|391952|391953|391954|391955|391956|391957|391958|391959|391960|391962|391963|391964|391965|391966|391968|391970|391971|391972|391972|391973|391974|391975|391976|391977|391978|391980|391981|391982|391983|391983|391984|391985|391986|391987|391988|391989|391990|391991|391992|391993|391994|391994|391995|391996|391997|391998|391999|392000|392001|392002|392003|392004|392005|392006|392007|392009|392011|392012|392013|392014|392015|392016|392018|392019|392021|392022|392023|392024|392025|392026|392027|392028|392029|392030|392031|392032|392033|392034|392035|392036|392037|392038|392039|392040|392041|392042|392043|392044|392045|392046|392047|392048|392049|392051|392052|392053|392054|392055|392056|392057|392058|392059|392062|392064|392065|392066|392067|392068|392069|392069|392070|392071|392072|392073|392074|392075|392076|392077|392078|392079|392082|392083|392084|392086|392087|392089|392090|392091|392092|392093|392094|392095|392096|392097|392098|392099|392100|392101|392102|392103|392105|392106|392107|392108|392110|392111|392112|392113|392114|392115|392116|392117|392118|392119|392120|392121|392122|392123|392124|392125|392126|392127|392128|392129|392130|392131|392132|392133|392134|392135|392136|392137|392138|392139|392140|392141|392142|392143|392144|392145|392146|392147|392148|392150|392151|392152|392153|392154|392155|392156|392157|392158|392160|392161|392162|392163|392164|392165|392166|392167|392168|392169|392170|392171|392172|392173|392174|392175|392176|392177|392178|392178|392179|392180|392181|392182|392184|392186|392187|392188|392189|392190|392191|392192|392193|392194|392195|392196|392197|392198|392199|392200|392201|392201|392202|392203|392204|392205|392206|392207|392208|392209|392211|392213|392214|392215|392216|392217|392218|392220|392221|392222|392223|392223|392224|392225|392226|392227|392229|392230|392231|392232|392233|392234|392235|392236|392237|392238|392239|392240|392242|392243|392246|392247|392252|392253|392254|392255|392258|392259|392262|392263|392264|392265|392266|392268|392271|392273|392275|392277|392279|392281|392282|392285|392286|392287|392289|392290|392292|392293|392295|392297|392300|392302|392303|392304|392306|392310|392312|392313|392316|392317|392318|392320|392321|392322|392323|392325|392326|392327|392328|392336|392338|392340|392343|392344|392347|392349|392350|392355|392356|392358|392361|392370|392371|392373|392376|392378|392383|392384|392385|392390|392393|392397|392407|392413|392415|392420|392427|392430|392438|392447|392454|392454|405429|405431|405437|405445|405447|405449|405450|405451|405454|405458|405460|405462|405469|405471|405473|405481|405483|405489|405495|421324|421326|421327|421333|421339|425442|425444|425445|425448|425450|425453|427942|427943|427946|427947|427953|427953|430961|434002|434004|434005|434574|438182|439872|439873|439874|439874|439875|440572|440575|440580|440586|440593|440598|440599|440603|440604|440605|440614|440616|440618|440625|440630|440637|440638|440641|440642|443070|443077|443080|443080|443084|443085|443087|443088|443096|448997|449001|449006|449007|449013|449014|449016|449017|449021|449023|449029|449031|449033|449035|449039|449041|449043|449045|449046|449047|449053|449060|449061|449062|449065|449069|449077|449081|449082|449086|449090|449096|449098|449108|449116|449122|449126|449129|449132|449134|449136|449137|449142|449144|449147|449152|449155|449157|449167|449176|449177|449179|449182|449186|449188|449190|449192|449193|449194|449195|449200|449201|449202|449205|449206|449207|449208|449212|449213|449214|449215|449216|449217|449219|449220|449221|449224|449227|449229|449230|449232|449234|449236|449237|449238|449241|449242|449243|449245|449247|449249|449252|449255|449257|449258|449259|449263|449264|449266|449267|449270|449272|449273|449274|449275|449276|449277|449279|449280|449282|449284|449285|449287|449288|449289|449290|449291|449292|449293|449294|449295|449297|449300|449301|449302|449303|449305|449306|449307|449308|449309|449310|449311|449312|449313|449314|449315|449316|449317|449318|449319|449320|449321|449322|449323|449324|449325|449326|449327|449328|449329|449330|449331|449332|449333|449335|449336|449337|449338|449339|449340|449341|449342|449343|449343|449344|449345|449346|449347|449348|449349|449350|449351|449352|449353|449354|449355|449356|449357|449358|449359|449360|449361|449362|449363|449364|449365|449366|449367|449368|449369|449370|449371|449372|449373|449374|449375|449376|449377|449378|449379|449380|449381|449383|449384|449385|449386|449387|449388|449389|449390|449391|449392|449393|449394|449395|449396|449397|449398|449399|449400|449401|449402|449403|449404|449405|449406|449407|449408|449409|449410|449411|449412|449413|449414|449415|449416|449417|449418|449419|449420|449421|449422|449423|449424|449425|449426|449427|449428|449429|449430|449431|449432|449433|449434|449435|449436|449437|449438|449439|449440|449441|449442|449442|449443|449444|449445|449446|449447|449448|449449|449450|449451|449452|449453|449454|449455|449456|449457|449458|449459|449460|449461|449462|449463|449464|449465|449466|449466|449467|449468|449469|449470|449471|449472|449473|449474|449475|449476|449477|449479|449480|449481|449482|449483|449484|449485|449486|449487|449488|449489|449490|449491|449492|449493|449494|449495|449496|449497|449498|449499|449500|449501|449502|449502|449503|449504|449505|449506|449507|449508|449509|449510|449511|449511|449512|449513|449514|449515|449516|449517|449518|449518|449519|449520|449522|449523|449524|449525|449526|449526|449527|449528|449529|449530|449531|449532|449533|449534|449535|449536|449537|449538|449538|449539|449540|449542|449543|449544|449545|449546|449547|449548|449549|449550|449551|449552|449553|449554|449555|449557|449558|449559|449561|449562|449563|449564|449565|449566|449567|449568|449569|449570|449571|449572|449573|449574|449575|449577|449578|449578|449579|449580|449580|449581|449582|449583|449584|449585|449586|449587|449588|449589|449590|449591|449592|449593|449594|449595|449597|449598|449599|449600|449601|449602|449603|449604|449604|449605|449606|449607|449608|449609|449610|449611|449612|449613|449614|449615|449615|449617|449618|449619|449620|449621|449622|449623|449624|449625|449626|449627|449628|449629|449630|449631|449632|449633|449634|449635|449636|449637|449638|449639|449640|449641|449643|449644|449645|449646|449647|449648|449649|449649|449650|449651|449652|449653|449654|449655|449656|449657|449658|449659|449660|449661|449662|449663|449664|449665|449666|449667|449668|449670|449671|449673|449674|449675|449676|449677|449678|449679|449680|449681|449682|449683|449684|449685|449686|449687|449688|449689|449690|449691|449692|449693|449694|449695|449696|449697|449698|449699|449700|449701|449702|449703|449704|449705|449706|449707|449708|449709|449710|449711|449712|449713|449714|449715|449716|449717|449718|449719|449720|449721|449722|449723|449724|449725|449726|449727|449728|449729|449730|449731|449732|449733|449734|449735|449736|449737|449738|449739|449740|449740|449741|449742|449743|449744|449745|449746|449747|449748|449749|449750|449751|449752|449753|449754|449755|449756|449757|449758|449759|449760|449761|449762|449763|449764|449765|449766|449767|449768|449769|449770|449771|449772|449773|449774|449775|449776|449777|449778|449779|449780|449781|449782|449783|449784|449785|449786|449787|449788|449789|449790|449791|449792|449793|449794|449795|449795|449796|449797|449798|449799|449800|449801|449802|449803|449804|449805|449806|449807|449808|449809|449810|449811|449812|449812|449813|449814|449815|449816|449817|449818|449818|449819|449819|449820|449820|449821|449822|449823|449824|449825|449826|449827|449828|449829|449830|449831|449832|449833|449834|449835|449836|449837|449838|449839|449840|449841|449842|449843|449844|449845|449846|449847|449848|449849|449850|449851|449852|449853|449854|449855|449856|449857|449858|449859|449860|449861|449862|449863|449864|449865|449866|449867|449869|449870|449871|449872|449873|449874|449875|449876|449878|449879|449880|449881|449882|449883|449884|449885|449886|449887|449888|449889|449890|449891|449892|449893|449894|449895|449896|449897|449898|449898|449899|449900|449901|449902|449903|449904|449905|449906|449907|449908|449909|449910|449911|449912|449913|449914|449915|449916|449917|449918|449919|449920|449921|449922|449923|449924|449925|449926|449927|449928|449929|449930|449931|449932|449933|449934|449935|449936|449937|449938|449939|449940|449941|449942|449943|449944|449945|449946|449947|449948|449950|449951|449952|449953|449954|449955|449957|449958|449959|449959|449960|449961|449962|449963|449964|449965|449966|449967|449968|449969|449970|449971|449972|449973|449974|449975|449976|449977|449978|449979|449980|449981|449982|449983|449984|449985|449986|449987|449988|449989|449990|449991|449992|449993|449994|449995|449996|449997|449998|449999|450000|450001|450002|450003|450004|450005|450006|450007|450008|450009|450010|450011|450012|450013|450014|450015|450016|450017|450018|450019|450020|450021|450022|450023|450024|450025|450026|450027|450028|450028|450029|450030|450031|450032|450032|450033|450033|450034|450035|450036|450037|450038|450039|450040|450041|450042|450043|450044|450045|450046|450047|450047|450048|450049|450050|450051|450052|450053|450054|450055|450056|450057|450058|450058|450059|450059|450061|450062|450063|450064|450065|450066|450067|450068|450070|450071|450072|450073|450074|450075|450076|450077|450078|450079|450080|450081|450082|450083|450085|450086|450087|450088|450089|450090|450091|450092|450093|450094|450096|450097|450098|450100|450101|450102|450103|450104|450105|450107|450108|450109|450110|450111|450112|450115|450116|450118|450119|450120|450121|450123|450124|450125|450126|450127|450128|450129|450130|450131|450133|450134|450136|450139|450140|450141|450142|450144|450145|450146|450148|450149|450150|450152|450153|450153|450154|450155|450157|450161|450162|450163|450166|450168|450170|450171|450172|450175|450178|450181|450182|450183|450184|450186|450187|450190|450191|450192|450193|450194|450195|450197|450200|450201|450202|450204|450205|450207|450208|450210|450211|450212|450213|450214|450215|450216|450217|450218|450219|450221|450222|450223|450224|450226|450228|450230|450231|450232|450233|450234|450235|450236|450238|450239|450240|450241|450243|450244|450246|450247|450248|450250|450252|450253|450254|450256|450257|450258|450260|450261|450262|450265|450266|450268|450269|450270|450271|450272|450273|450274|450275|450278|450281|450282|450289|450304|450305|450307|450311|450318|450322|450323|450327|450328|450335|450343|450345|450346|450350|450351|450353|450357|450360|450385|450387|450389|450390|481118|481119|481120|481121|481230|481616|481618|481619|481625|481631|488370|488408|488415|488433|488434|488435|488441|488441|488446|488451|488511|488523|488530|488547|488549|488551|488554|488557|488575|488602|488612|488618|488619|488751|488757|488758|489017|489235|489248|489273|489487|489622|489631|490038|490049|490138|490145|490361|490421|490457|490521|490525|490650|490731|490735|490736|490737|490965|491024|491049|491061|491065|491598|491824|491964|492034|492047|492125|492156|492157|492163|492351|492527|492528|492596|492617|492618|492627|492690|492729|492911|492912|492980|492987|493054|493055|493192|493195|493213|493236|493509|493629|493807|493985|494087|494151|495116|495378|496171|496193|496248|496635|496660|496673|496674|496678|496712|498922|498926|498928|498931|498942|498943|498948|498970|499001|499022|499065|499088|499092|499093|499096|499122|499129|499142|499158|499160|499183|499189|499210|499213|499215|499218|499219|499224|499229|499231|499235|499240|499252|499270|499276|499276|499281|499282|499291|499294|499299|499299|499301|499308|499315|499315|499319|499326|499329|499332|499340|499341|499347|499364|499366|499374|499385|499392|499397|499398|499399|499404|499419|499423|499442|499458|499488|499509|499513|499516|499527|499543|499562|499565|499572|499578|499598|499612|499629|499637|499648|499665|499666|499685|499697|499701|499709|499713|499722|499728|499735|499767|499793|509253|509261|509270|509275|509281|509283|509289|509308|509311|509318|509350|509374|509397|509413|509416|509417|509424|509434|511005|511007|511022|511064|511364|511367|513249|513250|513251|513518|516212|516216|516302|516700|516712|516715|516718|516720|516731|516734|516737|516740|516743|516744|516745|516750|516754|516756|516758|516759|516761|516764|516765|516767|516768|516770|516772|516773|516774|516775|516776|516777|516778|516779|516780|516781|516782|516783|516784|516785|516786|516787|516788|516789|516791|516792|516793|516794|516795|516797|516798|516799|516799|516801|516802|516803|516805|516806|516809|516810|516811|516812|516814|516816|516817|516818|516819|516822|516823|516825|516826|516827|516828|516829|516830|516831|516832|516833|516834|516835|516836|516837|516839|516840|516842|516843|516844|516845|516846|516848|516849|516850|516853|516854|516855|516856|516857|516858|516859|516860|516861|516862|516863|516864|516865|516866|516867|516868|516869|516871|516872|516873|516874|516875|516876|516877|516879|516880|516881|516883|516885|516886|516887|516888|516889|516890|516891|516892|516893|516894|516895|516896|516897|516898|516899|516900|516901|516902|516903|516904|516905|516906|516907|516908|516909|516910|516911|516912|516913|516914|516915|516916|516917|516918|516919|516920|516921|516922|516923|516924|516925|516926|516927|516928|516929|516930|516931|516932|516933|516934|516935|516936|516937|516938|516939|516940|516941|516942|516943|516944|516945|516946|516947|516947|516948|516949|516950|516951|516952|516953|516954|516954|516955|516956|516957|516958|516959|516960|516961|516962|516963|516964|516965|516966|516967|516968|516969|516970|516971|516972|516973|516974|516975|516976|516976|516977|516978|516979|516980|516981|516982|516983|516984|516985|516986|516987|516988|516989|516990|516991|516992|516993|516994|516995|516996|516997|516998|516999|517000|517001|517002|517003|517004|517004|517005|517006|517007|517008|517009|517010|517011|517012|517013|517014|517015|517016|517017|517018|517019|517020|517021|517021|517022|517023|517024|517025|517026|517027|517028|517029|517030|517031|517032|517034|517035|517036|517037|517038|517039|517040|517041|517042|517043|517044|517045|517046|517047|517048|517049|517050|517051|517052|517053|517054|517055|517055|517056|517057|517058|517059|517060|517061|517062|517063|517064|517065|517066|517067|517068|517069|517070|517071|517072|517073|517074|517075|517076|517077|517078|517079|517080|517081|517082|517083|517084|517085|517086|517087|517088|517089|517090|517091|517092|517093|517094|517095|517096|517097|517098|517099|517100|517101|517102|517103|517104|517105|517106|517107|517108|517109|517110|517111|517112|517113|517114|517115|517117|517118|517119|517120|517121|517122|517123|517124|517125|517126|517127|517128|517129|517130|517131|517132|517133|517134|517135|517136|517137|517138|517139|517140|517141|517142|517143|517144|517144|517145|517146|517147|517148|517149|517150|517151|517152|517153|517154|517155|517156|517157|517158|517159|517160|517161|517162|517163|517164|517165|517166|517167|517168|517169|517170|517171|517172|517173|517174|517175|517176|517177|517178|517179|517180|517181|517182|517183|517184|517185|517186|517187|517188|517189|517190|517191|517192|517193|517194|517196|517197|517198|517199|517200|517201|517202|517203|517204|517205|517206|517207|517208|517209|517210|517211|517212|517213|517214|517215|517216|517217|517218|517219|517220|517221|517222|517223|517224|517225|517226|517227|517228|517229|517230|517231|517232|517233|517234|517235|517237|517238|517239|517240|517241|517242|517243|517244|517245|517246|517247|517248|517249|517250|517251|517252|517253|517254|517255|517258|517259|517260|517261|517262|517263|517264|517265|517266|517267|517268|517270|517271|517272|517273|517274|517275|517276|517277|517278|517280|517281|517283|517284|517285|517286|517287|517288|517290|517290|517291|517292|517293|517294|517295|517296|517297|517298|517299|517300|517300|517301|517302|517303|517304|517305|517306|517306|517307|517308|517309|517310|517311|517312|517313|517314|517315|517316|517317|517318|517320|517321|517322|517323|517324|517325|517326|517327|517328|517329|517330|517331|517332|517333|517334|517335|517336|517337|517338|517339|517340|517341|517341|517342|517343|517344|517345|517346|517347|517348|517349|517350|517351|517352|517353|517354|517355|517356|517357|517358|517359|517360|517361|517362|517363|517364|517365|517366|517367|517368|517369|517370|517371|517372|517373|517374|517375|517376|517377|517378|517379|517380|517381|517382|517383|517384|517386|517387|517388|517389|517390|517391|517392|517393|517394|517395|517396|517397|517398|517399|517401|517403|517404|517405|517406|517407|517409|517411|517412|517413|517414|517415|517416|517417|517418|517420|517421|517422|517423|517424|517426|517427|517429|517430|517432|517433|517434|517435|517436|517437|517438|517440|517442|517443|517444|517445|517446|517448|517449|517451|517452|517453|517454|517455|517456|517457|517458|517459|517460|517460|517461|517462|517463|517464|517465|517466|517468|517469|517470|517471|517472|517474|517476|517477|517478|517479|517480|517483|517484|517485|517487|517488|517489|517490|517491|517492|517493|517494|517495|517498|517499|517501|517503|517505|517510|517512|517513|517515|517517|517518|517519|517520|517521|517528|517529|517531|517532|517533|517534|517538|517540|517541|517543|517544|517547|517548|517550|517551|517554|517555|517557|517582|517586|517586|517588|517592|517594|517600|517605|517605|517609|517612|517614|517615|517616|517624|517627|517628|517634|517636|517637|517641|517643|517649|517651|517652|517654|517663|517667|517670|517671|517674|517678|517679|517683|517688|517689|517698|517699|517703|517708|538342|539471|550824|557424|557426|557704|557706|557708|557710|557712|557714|557716|557718|557720|557722|557724|557726|557730|557731|557732|557733|557734|557735|557736|557737|557738|557739|557740|557741|557742|557743|557744|557745|557746|557747|557748|557749|557750|557751|557752|557753|557754|557755|557756|557757|557758|557759|557760|557761|557762|557763|557764|557765|557766|557767|557768|557769|557770|557771|557772|557773|557773|557774|557775|557777|557779|557781|557783|557785|557787|557789|557791|557793|557795|557797|557799|557801|557803|557805|557807|557809|557811|557813|557815|557817|557819|557821|557825|558072|558633|558635|558921|558923|558925|558927|558929|558931|558933|558935|558937|558939|558941|558943|558945|558947|558949|558951|558953|558955|558957|558959|558961|558963|558965|558967|558969|558971|558973|558975|558977|558979|558981|558983|558985|558987|558989|558991|558993|558995|558997|558999|559001|559003|559003|559005|559402|559404|559406|559408|559410|559412|559414|559416|559418|559420|559422|559424|559426|559428|559430|559430|559432|559434|559436|559438|559440|559442|559444|559446|559448|559450|559452|559454|559456|559458|559460|559464|559466|559468|559470|559472|559474|559476|559478|559480|576588|576600|576601|576602|576620|576621|576626|583788|584002|584092|585032|585258|585477|585477|585482|585667|586532|586533|586782|586973|587073|587073|587132|587145|587668|588268|588608|588734|588929|589289|589484|608940|609450|609459|611549|611550|613499|613499|614745|614783|614818|614848|624208|624212|624220|624221|625788|629032|629033|629034|629035|629036|629037|629038|629039|629040|629041|629042|629043|629044|629045|629046|629047|629048|629049|629050|629051|629052|629053|629054|629055|629056|629057|629058|629059|629060|629061|629062|629063|629064|629065|629066|629067|629068|629069|629070|629071|629072|629073|629074|629075|629076|629077|629078|629079|629080|629081|629082|629083|629084|629085|629086|629087|629088|629089|629090|629091|629092|629093|629094|629095|629096|629097|629098|629099|629100|629101|629102|629103|629104|629105|629106|629107|629108|629109|629110|629111|629112|629113|629114|629115|629116|629117|629118|629119|629120|629121|629122|629123|629124|629125|629126|629127|629128|629129|629130|629131|629132|629133|629134|629135|629136|629137|629138|629139|629140|629141|629142|629143|629144|629145|629146|629146|629147|629148|629149|629150|629151|629152|629153|629154|629155|629156|629157|629158|629159|629160|629161|629162|629163|629164|629166|629167|629168|629169|629170|629171|629172|629173|629174|629175|629176|629177|650707|650724|650729|650866|650868|650870|650876|650877|650885|650892|650899|650900|650902|650903|650906|650911|650915|650923|650925|650927|653913|655182|655277|655296|655365|655380|655400|655401|672386|679387|679398|679556|683422|683423|683426|683429|683433|683434|683436|683437|683438|683440|683443|683444|683445|683446|683448|683450|683452|683453|683454|683455|683456|683458|685120|685122|685123|685124|685929|685931|685934|685934|685935|685936|685938|685940|685942|685944|685945|685946|685947|685949|685956|685958|685961|685964|685965|685966|685970|685971|685974|685978|685979|685979|685981|685984|685986|685987|685989|685990|685992|685993|685994|685996|685997|685998|685999|686000|686001|686002|686003|686004|686006|686008|686009|686009|686010|686011|686013|686015|686016|686018|686019|686020|686021|686023|686024|686025|686026|686027|686028|686029|686031|686032|686035|686036|686037|686041|686042|686043|686045|686046|686046|686047|686048|686049|686050|686053|686057|686058|686059|686061|686062|686063|686064|686067|686068|686071|686072|686073|686075|686076|686077|686079|686080|686081|686086|686087|689682|689683|689684|689685|689687|690906|690908|690911|690912|690913|690914|690915|690917|690918|690920|690921|690925|690934|690935|690940|690941|690942|690943|690944|690945|690946|690947|690948|690950|690951|690956|690957|690958|690959|690960|690961|690962|690964|690965|690968|690972|690973|690974|690977|690980|690981|690981|690982|690987|695103|695104|695108|695109|695110|695111|697179|697180|697181|697182|697184|697187|697189|697190|697192|707874|707876|707878|707879|707882|719440|719441|719445|719445|719449|730085|732973|732982|732985|732994|732996|732999|733002|733003|733005|733008|733009|743828|743833|743842|746981|746983|746985|746989|746991|746995|746999|747001|747004|747007|747010|747011|747024|747025|747029|747043|747057|747066|747072|747081|747087|758988|762443|762445|762446|762447|762451|762452|762454|762456|762460|762462|762464|762468|762472|762480|762481|762495|762496|762501|762504|762505|762508|762509|762521|762530|762538|762543|762550|762555|762557|762560|762561|762566|762567|762569|762577|762579|762582|762587|762588|762597|762599|762600|762601|762606|762608|762623|762628|762630|762636|762646|762647|762648|762649|762651|762657|762659|762660|762670|762677|762681|762684|762686|762687|762691|762699|762705|762706|774623|774638|774642|774655|774664|774668|777211|778939|780980|780981|780984|780986|780987|780990|780992|780998|780999|781006|781009|781011|781012|781014|781015|781019|781021|781022|781024|781025|781031|781032|781033|781034|781036|781040|781043|781046|781047|781049|781054|781055|781056|781057|781058|781060|781061|781067|781068|781069|781077|781079|781080|781082|781085|787088|787090|787130|790129|790130|790131|790132|790133|790134|794864|794943|795006|799267|804987|805257|805269|805274|819083|819084|819085|819086|825269|825270|825271|825272|825273|825274|825275|825276|825277|825278|825279|825280|825281|825282|825283|825284|825285|825286|825287|825288|825289|825290|825291|825292|825293|825294|825295|825296|825297|825298|825299|825300|825301|825302|825303|825304|825305|825306|825307|825308|825309|825310|825311|825312|825313|825314|825315|825316|825317|825318|825319|825320|825321|825322|825323|825324|825325|825326|825327|825328|825329|825330|825331|825332|825333|825334|825335|825336|825337|825338|825339|825340|825341|825342|825343|825344|825345|825346|825347|825348|825349|825350|825351|825352|825353|825354|825355|825356|825357|825358|825359|825360|825361|825362|825363|825364|825365|825366|825367|825368|825369|825370|825371|825372|825373|825374|825375|825376|825377|825378|825379|825380|825381|825382|825383|825384|825385|825386|825387|825388|825389|825390|825391|825392|825393|825394|825395|825396|825397|825398|825399|825400|825401|825402|825403|825404|825405|825406|825407|825408|825409|825410|825411|825412|825413|825414|825415|825416|825417|825418|825419|825420|825421|825422|825423|825424|825425|825426|825427|825428|825429|825430|825431|825432|825433|825434|825435|825436|825437|825438|825439|825440|825441|825442|825443|850811|850813|850815|850817|850819|850856|850858|850860|851113|851119|851121|851128|851135|851137|851139|851364|851366|851369|851372|851374|851376|851378|858400|858402|858427|858431|858468|859063|859071|861583|861616|881722|881723|881724|881725|881726|881727|881728|881729|881730|881730|881731|881732|881733|881734|881735|881736|881737|881738|881739|881740|881741|881742|881743|881744|881745|881746|881747|881748|881749|881750|881751|881752|881753|881754|881755|881756|881757|881758|881759|881760|881761|881762|881763|881764|881765|881766|881767|881768|881769|881770|881771|881772|881773|881774|881775|881776|881777|881778|881779|881780|881781|881782|881783|881784|881785|881786|881787|881788|881789|881790|881791|881792|881793|881794|881795|881796|881797|881798|881799|881800|881801|881802|881803|881804|881805|881806|881807|881808|881809|881810|881811|881812|881813|881814|881815|881816|881817|881818|881819|881820|881821|881822|881823|881824|881825|881826|881827|881828|881829|881830|881831|881832|881833|881834|881835|881836|881837|881838|881839|881840|881841|881842|881843|881844|881845|881846|881847|881848|881849|881850|881851|881852|881853|881854|881855|881856|881857|881858|881859|881860|881861|881862|881863|881864|881865|881866|881867|881868|881869|881870|881871|881872|881873|881874|881875|881876|881877|881878|881879|881880|881881|881882|881883|881884|881885|881886|881887|881888|881889|881890|881891|881892|881893|881894|881895|881896|881897|881898|881899|881900|881901|881902|881903|881904|881905|881906|881907|881908|881909|881910|881911|881912|881913|881914|881915|881916|881917|881918|881919|881920|881921|881922|881923|881924|882859|882860|882861|882862|882863|882864|882865|882866|882867|882868|882869|882870|882871|882872|882873|882874|882875|882876|882877|882878|882879|882987|882988|903751|922423|922424|922425|922426|922427|922428|922429|922430|922431|922432|922433|922434|922435|922436|922437|922438|922439|922440|922441|922442|922443|922444|922445|922446|922447|922448|922449|922450|922451|922452|922453|922454|922455|922456|922457|922458|922459|922460|922461|922462|922463|922464|922465|922466|922467|922468|922469|922470|922471|922472|922473|922474|922475|922476|922477|922478|922479|922480|922481|922482|922483|930995|930996|930997|930998|930999|931000|931001|931002|931003|931004|931005|931006|931007|931008|931009|931010|931011|931012|931013|931014|931015|931016|931017|931018|931019|931020|931021|931022|931023|931024|931025|931026|931027|931028|931029|931030|931030|931031|931032|931033|931034|931035|931036|931037|931038|931039|931040|931041|931042|931043|931044|931045|931046|939855|939856|939857|939858|939859|939860|939861|939862|939863|939864|939865|939866|939867|939868|940667|940668|940669|940670|940671|940672|940673|940674|940675|940676|940677|942438|942439|942440|942441|942442|942443|942444|942445|942446|942447|942448|942449|942450|942451|942452|942453|942454|942455|942456|942457|942458|942459|942460|942461|942462|942463|942464|942465|942466|942467|942468|942469|942470|942471|942472|942473|942474|942475|942476|942477|942478|942479|942480|942481|942482|942483|942484|942485|942486|942487|942488|942489|942490|942491|942492|942493|942494|942495|942496|942497|942498|942499|942500|942501|942502|942503|942504|952801|952802|952803|952804|952805|952806|952807|952808|952809|952810|952811|952812|952813|952814|952815|952816|952817|952818|952819|952820|952821|952822|952823|952824|952825|952826|952827|952828|952829|952830|952831|952832|952833|952834|952835|952836|952837|952838|952839|952840|952841|952842|952843|959601|959602|959603|959604|959605|959606|959607|959608|959609|959610|959611|959612|960456|960457|964185|964186|970726|983701", + "upstreamId": "27689|27690|27691|27694|27695|27695|27696|27697|27697|27698|27698|46998|55738|55739|55739|55741|55741|55742|55742|55743|55743|55744|55744|55745|55745|55746|55746|55747|55749|55750|55750|55751|55752|55752|55753|55753|55754|55755|55756|55756|55757|55757|55758|55759|55759|55760|55760|55761|55762|55762|55763|55763|55764|55764|55766|55767|55768|55768|55769|55770|55771|55771|55772|55773|55774|55776|55777|55777|55778|55778|55779|55779|55780|55780|55781|55782|55782|55783|55783|55784|55784|55786|55786|55787|55787|55788|55788|55790|55790|55791|55793|55793|55794|55794|55795|55796|55796|55798|55798|55799|55800|55800|55801|55802|55803|55803|55804|55805|55806|55806|55807|55808|55808|55809|55809|55810|55810|55811|55811|55813|55813|55814|55814|55816|55816|55818|55818|55819|55819|55820|55820|55821|55822|55822|55823|55823|55825|55826|55826|55827|55828|55829|55829|55830|55831|55831|55832|55832|55833|55835|55835|55836|55836|55837|55837|55839|55840|55840|55841|55841|55842|55844|55844|55845|55845|55846|55846|55847|55847|55848|55848|55849|55849|55850|55850|55852|55852|55853|55853|55854|55855|55855|55858|55858|55859|55859|55860|55861|55863|55864|55864|55867|55867|55868|55868|55869|55870|55870|55871|55872|55872|55873|55873|55875|55876|55876|55877|55877|55878|55878|55879|55880|55880|55881|55881|55882|55882|55883|55883|55884|55886|55886|55887|55887|55889|55889|55890|55890|55891|55891|55892|55893|55894|55895|55895|55896|55898|55898|55899|55900|55901|55901|55903|55904|55904|55905|55906|55906|55907|55907|55908|55908|55910|55910|55911|55912|55912|55915|55917|55918|55919|55920|55921|55923|55923|55924|55924|55926|55927|55927|55928|55928|55929|55929|55931|55933|55933|55934|55935|55935|55936|55936|55938|55939|55940|55940|55941|55942|55943|55943|55944|55944|55945|55945|55946|55947|55949|55950|55950|55951|55952|55952|55953|55954|55956|55957|55957|55958|55958|55960|55960|55961|55962|55964|55965|55968|55970|55971|55971|55973|55973|55975|55977|55977|55979|55979|55981|55982|55982|55983|55984|55984|55985|55985|55987|55988|55989|55990|55991|55991|55992|55993|55994|55995|55995|55996|55996|55997|55997|55998|55998|55999|55999|56000|56001|56002|56002|56004|56004|56006|56006|56009|56009|56011|56013|56013|56014|56015|56016|56016|56017|56018|56018|56019|56020|56022|56022|56023|56023|56024|56025|56026|56027|56028|56028|56029|56029|56030|56031|56032|56032|56033|56033|56034|56035|56036|56036|56038|56038|56039|56039|56040|56040|56041|56041|56042|56043|56043|56045|56045|56046|56047|56047|56048|56048|56049|56049|56050|56050|56051|56052|56052|56053|56053|56054|56055|56055|56056|56057|56058|56059|56060|56060|56061|56062|56065|56066|56067|56068|56069|56069|56071|56072|56073|56074|56074|56075|56075|56076|56076|56077|56078|56079|56079|56080|56080|56081|56082|56082|56083|56084|56085|56087|56087|56088|56088|56089|56092|56093|56093|56094|56094|56095|56095|56096|56096|56097|56100|56100|56101|56101|56103|56103|56105|56105|56107|56108|56108|56111|56111|56113|56113|56114|56114|56115|56115|56116|56116|56117|56117|56118|56118|56119|56119|56120|56120|56121|56124|56125|56127|56128|56129|56130|56130|56132|56133|56133|56134|56134|56135|56135|56136|56136|56137|56137|56138|56139|56142|56143|56143|56145|56145|56146|56147|56147|56148|56148|56150|56151|56152|56152|56153|56153|56154|56155|56155|56156|56156|56158|56158|56160|56163|56164|56164|56165|56165|56166|56167|56170|56171|56171|56172|56172|56173|56173|56174|56174|56175|56175|56176|56176|56178|56178|56179|56179|56180|56180|56181|56181|56183|56183|56185|56187|56187|56189|56189|56190|56190|56191|56191|56193|56193|56195|56195|56196|56196|56197|56197|56199|56199|56200|56200|56201|56201|56202|56202|56203|56204|56205|56205|56207|56207|56208|56209|56209|56210|56211|56211|56214|56214|56215|56215|56216|56218|56218|56219|56221|56221|56222|56222|56224|56224|56225|56227|56228|56230|56230|56231|56231|56233|56233|56234|56235|56235|56237|56237|56239|56239|56240|56240|56241|56243|56243|56245|56246|56248|56248|56249|56251|56251|56253|56255|56256|56258|56258|56261|56262|56262|56263|56264|56264|56265|56265|56266|56268|56270|56270|56271|56271|56273|56275|56276|56276|56277|56278|56280|56281|56281|56282|56283|56285|56286|56288|56289|56291|56291|56292|56292|56293|56295|56297|56298|56298|56300|56300|56301|56302|56302|56303|56305|56307|56307|56308|56309|56311|56312|56313|56314|56315|56315|56316|56316|56317|56320|56320|56321|56321|56322|56323|56323|56324|56324|56325|56326|56327|56328|56328|56330|56330|56331|56331|56333|56333|56335|56337|56338|56339|56340|56342|56342|56343|56343|56344|56345|56345|56346|56347|56347|56349|56349|56350|56350|56352|56352|56353|56353|56354|56356|56356|56359|56359|56360|56362|56362|56364|56364|56365|56365|56366|56366|56367|56367|56368|56369|56370|56370|56371|56372|56373|56373|56374|56375|56375|56377|56378|56378|56381|56381|56383|56383|56386|56387|56387|56388|56388|56389|56389|56390|56390|56392|56393|56393|56394|56394|56395|56395|56396|56396|56397|56398|56399|56400|56401|56401|56403|56405|56405|56406|56408|56408|56409|56410|56412|56413|56413|56414|56415|56417|56418|56418|56420|56420|56421|56421|56423|56425|56425|56426|56428|56430|56430|56433|56433|56436|56436|56437|56439|56439|56440|56440|56441|56441|56442|56442|56443|56444|56446|56447|56448|56451|56451|56453|56454|56454|56455|56455|56456|56457|56457|56458|56459|56459|56460|56460|56462|56462|56463|56463|56464|56464|56466|56467|56467|56468|56469|56469|56470|56471|56471|56472|56472|56473|56473|56474|56474|56476|56477|56477|56478|56479|56480|56481|56481|56482|56482|56483|56483|56485|56485|56486|56487|56487|56489|56492|56493|56494|56495|56495|56496|56496|56497|56497|56498|56498|56499|56499|56500|56500|56503|56503|56504|56506|56507|56508|56508|56510|56512|56512|56513|56513|56514|56514|56515|56515|56516|56516|56518|56518|56520|56520|56521|56521|56522|56524|56524|56526|56526|56527|56528|56529|56530|56530|56532|56533|56533|56535|56535|56537|56537|56538|56538|56539|56539|56540|56540|56541|56542|56543|56544|56544|56545|56545|56547|56548|56549|56549|56551|56552|56555|56555|56556|56557|56557|56558|56558|56559|56559|56560|56560|56561|56563|56564|56564|56566|56567|56567|56568|56569|56570|56570|56572|56572|56573|56574|56575|56575|56576|56576|56577|56577|56578|56578|56579|56579|56580|56580|56581|56582|56582|56583|56583|56584|56584|56585|56586|56586|56587|56588|56589|56590|56592|56592|56593|56594|56594|56595|56595|56596|56596|56597|56597|56599|56600|56600|56601|56604|56604|56605|56606|56606|56607|56608|56608|56610|56610|56611|56614|56615|56616|56616|56618|56619|56619|56620|56620|56621|56621|56622|56624|56624|56625|56625|56626|56627|56628|56628|56629|56629|56631|56631|56633|56633|56634|56634|56636|56637|56637|56638|56639|56640|56641|56641|56642|56643|56643|56644|56645|56645|56646|56647|56647|56648|56648|56649|56649|56652|56652|56653|56653|56654|56655|56657|56658|56658|56659|56661|56661|56663|56665|56665|56667|56667|56668|56669|56671|56671|56672|56672|56674|56675|56675|56676|56676|56677|56677|56678|56678|56679|56679|56680|56680|56681|56682|56682|56683|56684|56684|56685|56685|56686|56686|56687|56687|56688|56689|56689|56691|56692|56693|56693|56694|56695|56696|56696|56700|56700|56701|56701|56703|56703|56704|56705|56705|56706|56708|56708|56709|56709|56710|56710|56711|56711|56712|56712|56714|56714|56715|56716|56716|56717|56717|56718|56718|56719|56719|56722|56722|56723|56723|56724|56725|56725|56726|56727|56728|56729|56730|56731|56731|56732|56732|56733|56735|56736|56736|56737|56737|56738|56738|56741|56742|56742|56743|56743|56746|56746|56749|56750|56751|56751|56752|56752|56753|56753|56754|56755|56755|56758|56759|56759|56760|56760|56762|56762|56763|56764|56764|56765|56766|56766|56767|56767|56768|56768|56769|56769|56771|56772|56773|56773|56774|56775|56775|56776|56777|56777|56778|56780|56781|56784|56785|56785|56786|56786|56787|56787|56788|56788|56789|56789|56790|56792|56792|56793|56793|56794|56794|56796|56797|56797|56798|56798|56800|56800|56802|56802|56803|56803|56804|56804|56805|56805|56806|56806|56807|56807|56808|56809|56809|56810|56810|56811|56811|56812|56813|56814|56815|56816|56816|56817|56818|56819|56819|56820|56822|56822|56823|56823|56824|56825|56826|56826|56827|56828|56829|56829|56831|56831|56832|56833|56833|56834|56834|56837|56838|56838|56839|56839|56841|56841|56842|56843|56845|56847|56847|56848|56848|56849|56849|56850|56851|56851|56852|56853|56854|56855|56855|56856|56857|56857|56858|56858|56863|56863|56864|56864|56865|56866|56867|56868|56870|56870|56871|56872|56872|56873|56873|56874|56874|56875|56875|56876|56876|56877|56878|56878|56879|56880|56880|56881|56881|56882|56882|56884|56884|56886|56886|56887|56887|56888|56906|56937|56970|56973|56975|56976|56978|56980|56981|56982|56983|56985|56986|56987|56989|56990|56991|56993|56995|56996|56998|56999|57001|57003|57005|57007|57008|57009|57010|57011|57012|57013|57014|71025|85139|85174|85176|85183|85203|102161|102164|102168|102169|102169|102170|102170|102171|102172|102172|102173|102176|102178|102179|102180|102182|102183|102183|102185|102185|102187|102188|102188|102190|102190|102192|102192|102193|102193|102194|102194|102195|102195|102196|102197|102200|102200|102201|102202|102203|102203|102206|102206|102207|102207|102208|102208|102209|102210|102210|102211|102212|102212|102214|102214|102215|102215|102217|102218|102218|102219|102220|102221|102221|136108|136109|136109|136110|136111|136112|136113|136114|136115|136116|136116|136117|136119|136120|136121|136121|136124|136125|136126|136126|136127|136128|136128|136129|136129|136130|136133|136134|136134|136135|136136|136355|136356|136358|136359|141478|141478|141479|141479|141482|141489|141490|141490|141492|141492|141493|141493|141494|141500|141501|141501|141502|141502|141504|141509|141509|141510|141510|141511|141512|141513|141515|141515|141516|141517|141520|141520|141521|141522|141523|141523|141524|141524|141526|141530|141532|141533|141534|141534|141536|141537|141539|141542|141542|141543|141544|141544|141545|141546|141547|141549|165598|165601|165601|165602|172606|172606|172609|172609|172610|172611|172615|172615|172617|172618|172621|172621|172622|172624|172626|172627|172628|172629|172630|172632|172635|172637|172638|172642|172644|172647|172647|172648|172651|172652|172652|172653|172656|172657|172657|172658|172661|172662|172663|172664|172665|172665|172666|172668|172668|172671|172672|172675|172677|172677|172679|172681|172682|172683|172683|172684|172686|172689|172691|172691|172693|172694|172696|172697|172697|172698|172698|172699|172699|172700|172701|172702|172704|172705|172708|172710|172715|172717|172717|172726|172727|172728|172729|172729|172731|172732|172734|172734|172737|172738|172738|172800|172800|172804|172805|172807|172808|172808|172813|172813|172816|172816|172818|172820|172820|172823|172823|172824|172825|172827|172829|172829|172830|172833|172833|172834|172835|172838|172838|172840|172841|172841|172849|172849|172850|172850|172852|172852|172853|172854|172854|172856|172859|172860|172862|172863|172868|172870|172872|172872|172877|172877|172878|172878|172879|172879|172942|172943|172944|172945|172945|172946|172948|172950|172951|172954|172955|172958|172962|172963|172964|172964|172967|172971|172971|172972|172973|172973|172975|172976|172979|172981|172981|172982|172982|172983|172984|172989|172990|172991|172992|172994|172995|172997|172997|172998|172998|172999|172999|173002|173003|173003|173005|173006|173008|173008|173009|173009|173011|173013|173015|173015|173022|173025|173026|173027|173028|173031|173031|173032|173035|173035|173036|173037|173040|173041|173043|173043|173044|173044|173045|173046|173047|173047|173048|173049|173049|173051|173053|173056|173059|173061|173061|173062|173068|173069|173072|173073|173073|173074|173074|173075|173079|173080|173081|173083|173088|173089|173090|173090|173092|173093|173095|173096|173097|173098|173099|173102|173102|173104|173104|173105|173107|173107|173108|173112|173114|173114|173115|173118|173121|173121|173126|173127|173132|173135|173136|173136|173137|173137|173141|173143|173144|173144|173147|173147|173149|173150|173152|173152|173156|173157|173158|173158|173159|173160|173161|173163|173163|173164|173165|173166|173166|173167|173167|173168|173169|173169|173172|173172|173173|173174|173175|173176|173176|173177|173178|173181|173182|173183|173186|173187|173189|173192|173192|173193|173193|173195|173197|173198|173199|173206|173207|173208|173212|173212|173213|173213|173218|173218|173219|173220|173221|173221|173225|173225|173227|173229|173229|173231|173234|173234|173235|173236|173240|173240|173243|173244|173245|173246|173246|173247|173247|173248|173248|173250|173252|173252|173254|173257|173258|173259|173262|173263|173264|173266|173300|173301|173301|173303|173304|173307|173308|173310|173311|173311|173312|173313|173314|173316|173316|173320|173321|173321|173322|173328|173328|173329|173329|173333|173334|173335|173342|173342|173344|173344|173346|173348|173349|173350|173351|173351|173353|173354|173354|173355|173356|173356|173357|173357|173358|173359|173359|173360|173361|173361|173363|173364|173364|173368|173372|173373|173374|173375|173376|173378|173381|173381|173383|173394|173394|173395|173396|173399|173400|173439|173441|173443|173443|173444|173445|173448|173448|173452|173452|173453|173453|173457|173460|173462|173463|173463|173464|173467|173467|173469|173472|173474|173475|173478|173478|173481|173482|173483|173483|173485|173486|173486|173581|173582|173583|173585|173586|173593|173593|173594|173597|173598|173599|173599|173600|173600|173603|173604|173612|173618|173618|173620|173623|173624|173624|173626|173626|173627|173628|173720|173723|173724|173726|173727|173728|173728|173730|173734|173861|173862|173863|173864|173864|173866|173867|173867|173868|173869|173871|176940|176941|176945|177073|177075|177206|177334|177335|177338|178108|178109|178112|178113|178114|178115|178117|178119|178120|178121|178122|178124|178128|178129|178130|178132|178135|178472|178478|178479|178482|178484|178485|178486|178486|178490|188930|188939|188939|188946|188946|189405|189407|189407|189409|189409|189411|189415|189415|189416|189422|189423|189423|189428|189430|189432|189435|189435|189436|189437|189437|189444|189445|189446|189446|189447|189449|189451|189451|189454|189454|189459|189459|189464|189464|189467|189467|189469|189469|189476|189476|189477|189478|189481|189483|189483|189486|189486|189489|189489|189490|189491|189491|189492|189493|189493|189494|189497|189498|189498|189499|189499|189503|189503|189507|189507|189512|189514|189514|189516|189518|189522|189523|189524|189524|189527|189531|189535|189535|189536|189539|189539|189541|189541|189543|189544|189548|189553|189553|189554|189556|189560|189566|189566|189569|189573|189573|189578|189578|189580|189582|189582|189584|189585|189586|189587|189588|189588|189589|189590|189591|189591|189592|189594|189594|189597|189599|189599|189600|189601|189603|189604|189605|189610|189616|189619|189619|189627|189628|189629|189629|189630|189630|189635|189636|189639|189640|189641|189642|189643|189647|189648|189649|189650|189652|189655|189655|189661|189661|189663|189665|189666|189667|189671|189673|189673|189674|189681|189686|189686|189687|189687|189691|189692|189699|189701|189702|189732|189733|189734|189738|189741|189743|189744|189745|189746|189746|189748|189753|189755|189756|189756|189758|189760|189760|189761|189763|189764|189764|189765|189766|189769|189769|189770|189770|190932|190941|191125|191126|191309|191461|191464|191743|191842|192072|192168|192707|192712|192712|192797|192797|192800|192868|192869|192870|192871|192874|192875|192877|192952|192952|192957|192957|193001|193003|193004|193004|193005|193006|193078|193079|193080|193081|193082|193082|193084|193084|193086|193154|193163|193165|193166|193217|193217|193219|193221|193221|193226|193226|193227|193228|193229|193229|193231|193231|193233|193237|193237|193238|193241|193243|193249|193252|193255|193257|193305|193310|193311|193312|193313|193316|193317|193355|193356|193357|193357|193734|193802|193804|193804|193805|193807|193814|193816|193884|193886|193962|193962|194739|194739|195077|195102|195117|195117|195118|195118|195137|195137|195518|195525|195775|195775|196105|196120|196130|196340|196340|196400|196400|196408|198682|198686|198688|198692|198697|198698|198699|198700|198701|198702|198703|198703|198704|198705|198710|198716|198718|198721|198723|198729|198730|198731|198733|198733|198736|198737|198738|198739|198743|198744|198744|198745|198746|198753|198753|198754|198754|198758|198760|198761|198767|198768|198769|198772|198772|198777|198780|198781|198788|198790|198790|198791|198793|198794|198796|198797|198799|198802|198804|198805|198806|198806|198811|198813|198817|198817|198819|198819|198820|198822|198825|198826|198827|198828|198832|198832|198833|198835|198838|198839|198839|198841|198845|198849|198850|198852|198852|198854|198856|198857|198858|198867|198869|198870|198875|198876|198878|198881|198881|198881|198886|198888|198888|198894|198895|198900|198900|198902|198903|198907|198908|198909|198909|198911|198912|198912|198915|198917|198918|198920|198924|198929|198931|198937|198940|198941|198944|198947|198952|198954|198957|198966|198966|198969|198969|198970|198973|198976|198978|198979|198988|198988|198995|198997|198997|198998|198999|199000|199011|199013|199015|199016|199019|199022|199024|199025|199026|199027|199028|199029|199029|199031|199035|199036|199040|199041|199042|199043|199050|199054|199064|199066|199070|199071|199072|199082|199085|199086|199090|199094|199096|199098|199104|199106|199107|199108|199109|199110|199110|199111|199112|199112|199114|199114|199116|199118|199120|199126|199127|199130|199131|199133|199139|199139|199141|199143|199146|199147|199148|199149|199149|199150|199156|199157|199157|199165|199166|199167|199172|199174|199174|199180|199184|199191|199191|199192|199192|199193|199200|199201|199203|199203|199204|199205|199208|199212|199212|199214|199216|199221|199222|199223|199224|199225|199228|199229|199229|199233|199233|199237|199237|199238|199242|199243|199244|199245|199249|199249|199251|199253|199254|199261|199264|199264|199265|199265|199266|199266|199269|199270|199271|199272|199274|199276|199277|199285|199286|199287|199289|199292|199296|199297|199298|199299|199302|199302|199304|199306|199310|199310|199313|199321|199322|199322|199325|199327|199329|199332|199334|199334|199336|199340|199342|199344|199344|199346|199352|199353|199361|199361|199365|199366|199372|199373|199374|199376|199380|199384|199385|199387|199391|199393|199398|199401|199402|199403|199405|199407|199409|199409|199410|199416|199418|199426|199430|199432|199432|199437|199438|199439|199441|199441|199444|199449|199449|199452|199454|199455|199458|199459|199461|199462|199467|199468|199470|199474|199474|199477|199479|199483|199485|199486|199490|199490|199492|199492|199495|199499|199501|199501|199505|199512|199512|199513|199513|199524|199526|199526|199530|199531|199532|199533|199535|199537|199539|199543|199544|199545|199555|199556|199556|199557|199559|199561|199562|199563|199563|199576|199577|199578|199578|199579|199580|199580|199583|199585|199586|199588|199593|199594|199595|199598|199601|199605|199608|199611|199671|199673|199674|199697|199698|199701|199707|199707|199712|199712|199714|199715|199716|199719|199720|199722|199723|199724|199728|199736|199738|199740|199749|199751|199753|199753|199754|199756|199759|199759|199761|199764|199764|199765|199771|199773|199774|199776|199777|205135|205135|205422|206910|206911|206917|206918|206919|206920|206921|206922|206929|206930|213528|215231|215231|221119|221120|221121|221122|221123|221124|221125|221126|221127|221128|221129|221130|221131|221132|221133|224228|224235|224240|224982|224987|224991|224992|224998|225000|225005|225009|225016|225018|225027|225034|225039|225040|225045|225046|225055|225057|225060|225074|225076|225077|225078|225079|225081|225089|225090|225093|225094|225100|225106|225108|225112|225114|225115|225116|226447|226454|226455|226892|227229|228549|228550|228552|228556|228558|228560|228564|228568|228569|228573|228577|228579|228580|228580|228584|228584|228588|228589|228593|228594|228594|228595|228595|228600|228609|228619|228622|228624|228631|228637|228638|228640|228640|228642|228644|228645|228646|228648|228651|228652|228654|228656|228656|228660|228660|228661|228662|228662|228666|228668|228675|228676|228677|228677|228678|228679|228680|228681|228687|228690|228690|228692|228695|228695|228699|228699|228700|228710|228711|228714|228716|228718|228719|228723|228725|228725|228729|228729|228730|228733|228734|228739|228740|228741|228742|228742|228744|228745|228746|228747|228749|228751|228752|228754|228754|228757|228761|228762|228762|228764|228771|228772|228775|228779|228784|228786|228786|228787|228789|228789|228792|228794|228797|228801|228806|228811|228812|228814|228816|228821|228822|228827|228829|228830|228832|228833|228838|228839|228842|228845|228847|228875|228876|228877|228880|228881|228885|228887|228892|228895|228900|228901|228904|228905|228907|236752|238389|238389|238390|238391|238392|238393|238393|238394|238395|238396|238397|238398|238399|238400|238401|238402|238403|238404|238405|238407|238408|238409|238410|238411|238412|238413|238414|238415|238416|238417|238418|238419|238420|238420|238421|238422|238422|238423|238424|238425|238426|238427|238428|238429|238430|238431|238432|238434|238435|238436|238437|238438|238440|238441|238441|238442|238443|238444|238445|238446|238447|238448|238449|238450|238451|238452|238453|238454|238455|238456|238457|238459|238461|238462|238464|238464|238465|238466|238467|238468|238469|238470|238471|238472|238473|238474|238475|238476|238477|238478|238479|238479|238480|238481|238482|238483|238484|238485|238486|238487|238488|238489|238490|238491|238492|238493|238494|238495|238496|238497|238498|238499|238500|238501|238502|238503|238504|238505|238506|238507|238508|238509|238510|238511|238512|238513|238514|238515|238516|238517|238518|238519|238520|238521|238522|238524|238524|238525|238526|238527|238528|238529|238530|238531|238532|238533|238534|238535|238536|238537|238538|238539|238540|238541|238542|238543|238544|238545|238547|238547|238548|238550|238551|238552|238553|238554|238555|238556|238557|238558|238559|238559|238560|238560|238562|238563|238564|238566|238567|238568|238569|238570|238571|238572|238573|238575|238576|238577|248627|250411|250413|250415|250416|250417|250420|250420|250426|250427|250429|250430|250430|257987|257990|257995|258006|258008|258009|258010|258011|258018|258019|258027|258032|258034|258036|258039|258040|258042|258044|258049|258054|258054|258056|258057|258060|258060|258061|258064|258068|258072|258075|258076|258080|258080|258082|258083|258084|258085|258089|258090|258091|258095|258096|258097|258099|258101|258101|258102|258105|258106|258111|258111|258114|258115|258121|258122|258122|258123|258124|258125|258128|258130|258130|258131|258132|258137|258137|258145|258146|258148|258150|258155|258156|258157|258157|258158|258159|258161|258163|258165|258165|258169|258175|258176|258182|258183|258185|258191|263857|264057|265399|265464|265497|265553|265624|265904|265936|266024|266024|266065|266075|266078|266084|266095|266186|266188|266197|266209|266230|266241|266245|266249|266256|266256|266333|266336|266373|266397|266411|266412|266423|266542|266653|266653|266666|266666|266671|266679|266725|266737|266744|266754|266755|266757|266764|266764|266782|266857|266857|266868|266875|266890|266892|266892|266893|266894|266899|266899|266904|267023|267023|267070|267084|267089|267093|267093|267112|267127|267127|267265|267341|267343|267409|267490|267534|267543|267557|267629|267639|267673|267674|267687|267687|267715|267717|267725|267725|267729|267860|267868|267872|267897|267901|267925|267951|267951|267961|267961|268111|268171|268216|268223|268239|268239|268326|268329|268329|268334|268335|268337|268487|268531|268531|268680|268703|268730|268795|268795|268915|268915|269034|269201|269229|269343|269544|269646|269669|269864|270161|270205|270836|271155|271221|271221|271689|271856|271856|271898|271933|271996|272032|272181|272182|272192|272661|272756|272756|272908|272997|272999|273034|273051|273235|273337|273378|273378|273700|273712|273760|273761|273815|274173|274309|274528|274548|274588|274603|274693|274705|274706|274707|274709|274711|274714|274935|274943|274948|274951|274951|274956|274957|275123|283197|283198|283200|283201|283204|283211|283212|283220|283221|283221|283222|283223|283225|283225|283228|283229|283232|283232|283233|283233|283235|283236|283240|283244|283244|283249|283250|283252|283252|283253|283255|283256|283262|283263|283269|283270|283271|283274|283275|283277|283277|283278|283294|283304|283309|283320|283321|283327|283328|283329|283332|283332|283341|283343|283344|283344|283346|283348|283349|283358|283361|283361|283371|283371|283374|283375|283375|283376|283378|283378|283379|283381|283389|283389|283390|283394|283395|283401|283404|283404|283405|283405|283408|283411|283411|283417|283418|283420|283424|283425|283430|283432|283435|283439|283905|283908|283910|283911|283912|283912|283914|283915|283923|283923|283924|283930|283931|283931|283933|283935|283936|283941|283942|283942|283947|283947|283956|283956|283959|283961|283966|283966|283969|283975|283976|283976|283990|283990|283991|283994|283994|283995|283996|283996|283997|283998|283999|284002|284006|284012|284020|284020|284021|284023|284024|284027|284036|284036|284044|284045|284046|284048|284051|284052|284052|284053|284055|284056|284061|284061|284062|284062|284064|284065|284067|284068|284069|284075|284075|284076|284082|284090|284091|284105|284106|284107|284109|284110|284110|284111|284114|284114|285677|285678|285679|285683|285689|285691|285692|285692|285693|285702|285704|285705|285706|285708|285715|285729|285729|285735|285737|285739|285740|285747|285752|285767|285767|285769|285770|285773|285774|285774|285776|285790|285793|285794|285814|285818|285818|285825|285825|285830|285830|285831|285834|285840|285840|285841|285843|285844|285851|285853|285855|285856|285859|285860|285861|285861|285878|285888|285888|285889|285892|285911|285912|285920|285920|285923|285923|285924|285926|285926|285938|285963|285963|285976|285977|285981|285981|285986|285987|285988|285990|285991|285993|285998|285998|286000|286001|286008|286009|286009|286010|286011|286014|286014|286015|286016|286016|286073|286074|286082|286085|286086|286091|286093|286093|286099|286100|286100|286101|286105|286106|286108|286110|286111|286111|286112|286115|286131|286131|286132|286136|286136|286138|286141|286145|286146|286150|286151|286152|286157|286158|286167|286175|286178|286183|286184|286186|286186|286187|286187|286191|286191|286195|286196|286197|286197|286201|286202|286205|286207|286208|286209|286209|286210|286239|286240|286240|286244|286259|286259|286263|286264|286264|286266|286267|286275|286287|286287|286290|286294|286294|286295|286304|286305|286311|286316|286316|286317|286318|286323|286323|286324|286325|286341|286341|286342|286361|286376|286386|286386|286387|286408|359329|359386|360828|365709|365711|365714|365723|365724|365734|365739|365753|365761|365843|365844|365857|365861|365862|365868|365874|365883|365897|365913|365933|365942|365963|365968|365975|365980|365990|365993|365995|365998|366003|366005|366006|366024|366029|366038|366039|366043|366047|366053|366057|366059|366059|366060|366065|366069|366071|366077|366079|366081|366082|366087|366097|366101|366102|366102|366108|366108|366109|366113|366125|366125|366132|366134|366144|366159|366185|366199|366230|366231|366260|366263|366309|366348|366394|366421|366433|366433|366438|366440|366453|366486|366488|366490|366505|366548|366550|366564|366573|366586|366591|366598|366672|366690|366703|391464|391471|391475|391480|391481|391485|391489|391492|391494|391497|391504|391509|391510|391515|391519|391520|391521|391523|391526|391533|391534|391535|391536|391537|391538|391538|391539|391540|391541|391541|391543|391544|391551|391552|391552|391554|391558|391562|391563|391564|391569|391570|391572|391574|391576|391577|391580|391580|391583|391584|391585|391588|391592|391593|391595|391597|391600|391603|391606|391607|391609|391610|391620|391620|391622|391624|391632|391634|391636|391637|391640|391642|391645|391646|391650|391651|391654|391659|391660|391662|391663|391664|391666|391667|391668|391669|391670|391671|391672|391673|391674|391675|391676|391677|391678|391679|391680|391681|391682|391683|391684|391685|391686|391687|391688|391689|391690|391690|391691|391692|391693|391694|391695|391696|391697|391698|391699|391700|391701|391703|391704|391705|391706|391707|391708|391709|391710|391711|391712|391713|391714|391715|391716|391717|391718|391719|391720|391721|391722|391723|391724|391725|391726|391727|391728|391730|391732|391733|391734|391734|391735|391736|391737|391739|391740|391741|391742|391743|391744|391746|391747|391748|391749|391750|391751|391752|391753|391754|391755|391756|391758|391759|391760|391762|391763|391764|391765|391766|391767|391768|391769|391770|391771|391772|391773|391774|391775|391776|391777|391778|391779|391780|391781|391782|391783|391784|391785|391786|391787|391788|391789|391790|391791|391792|391793|391794|391795|391796|391797|391798|391799|391800|391800|391801|391802|391803|391804|391805|391806|391807|391808|391809|391810|391811|391812|391814|391815|391816|391817|391818|391819|391820|391821|391822|391824|391825|391826|391827|391828|391829|391830|391831|391832|391834|391835|391836|391837|391838|391839|391840|391842|391843|391844|391845|391847|391848|391849|391850|391851|391853|391854|391855|391856|391857|391858|391859|391860|391861|391862|391865|391866|391867|391869|391870|391871|391872|391873|391874|391875|391876|391877|391878|391879|391880|391881|391882|391883|391883|391884|391885|391886|391887|391888|391889|391890|391891|391892|391893|391894|391896|391897|391898|391899|391900|391901|391902|391903|391904|391905|391906|391907|391908|391909|391910|391911|391912|391913|391914|391915|391916|391918|391919|391920|391921|391922|391923|391924|391925|391927|391928|391929|391930|391931|391932|391933|391934|391935|391936|391937|391938|391939|391940|391941|391942|391943|391944|391945|391946|391947|391949|391950|391951|391952|391953|391954|391955|391956|391957|391958|391959|391960|391962|391963|391964|391965|391966|391968|391970|391971|391972|391972|391973|391974|391975|391976|391977|391978|391980|391981|391982|391983|391983|391984|391985|391986|391987|391988|391989|391990|391991|391992|391993|391994|391994|391995|391996|391997|391998|391999|392000|392001|392002|392003|392004|392005|392006|392007|392009|392011|392012|392013|392014|392015|392016|392018|392019|392021|392022|392023|392024|392025|392026|392027|392028|392029|392030|392031|392032|392033|392034|392035|392036|392037|392038|392039|392040|392041|392042|392043|392044|392045|392046|392047|392048|392049|392051|392052|392053|392054|392055|392056|392057|392058|392059|392062|392064|392065|392066|392067|392068|392069|392069|392070|392071|392072|392073|392074|392075|392076|392077|392078|392079|392082|392083|392084|392086|392087|392089|392090|392091|392092|392093|392094|392095|392096|392097|392098|392099|392100|392101|392102|392103|392105|392106|392107|392108|392110|392111|392112|392113|392114|392115|392116|392117|392118|392119|392120|392121|392122|392123|392124|392125|392126|392127|392128|392129|392130|392131|392132|392133|392134|392135|392136|392137|392138|392139|392140|392141|392142|392143|392144|392145|392146|392147|392148|392150|392151|392152|392153|392154|392155|392156|392157|392158|392160|392161|392162|392163|392164|392165|392166|392167|392168|392169|392170|392171|392172|392173|392174|392175|392176|392177|392178|392178|392179|392180|392181|392182|392184|392186|392187|392188|392189|392190|392191|392192|392193|392194|392195|392196|392197|392198|392199|392200|392201|392201|392202|392203|392204|392205|392206|392207|392208|392209|392211|392213|392214|392215|392216|392217|392218|392220|392221|392222|392223|392223|392224|392225|392226|392227|392229|392230|392231|392232|392233|392234|392235|392236|392237|392238|392239|392240|392242|392243|392246|392247|392252|392253|392254|392255|392258|392259|392262|392263|392264|392265|392266|392268|392271|392273|392275|392277|392279|392281|392282|392285|392286|392287|392289|392290|392292|392293|392295|392297|392300|392302|392303|392304|392306|392310|392312|392313|392316|392317|392318|392320|392321|392322|392323|392325|392326|392327|392328|392336|392338|392340|392343|392344|392347|392349|392350|392355|392356|392358|392361|392370|392371|392373|392376|392378|392383|392384|392385|392390|392393|392397|392407|392413|392415|392420|392427|392430|392438|392447|392454|392454|405429|405431|405437|405445|405447|405449|405450|405451|405454|405458|405460|405462|405469|405471|405473|405481|405483|405489|405495|421324|421326|421327|421333|421339|425442|425444|425445|425448|425450|425453|427942|427943|427946|427947|427953|427953|430961|434002|434004|434005|434574|438182|439872|439873|439874|439874|439875|440572|440575|440580|440586|440593|440598|440599|440603|440604|440605|440614|440616|440618|440625|440630|440637|440638|440641|440642|443070|443077|443080|443080|443084|443085|443087|443088|443096|448997|449001|449006|449007|449013|449014|449016|449017|449021|449023|449029|449031|449033|449035|449039|449041|449043|449045|449046|449047|449053|449060|449061|449062|449065|449069|449077|449081|449082|449086|449090|449096|449098|449108|449116|449122|449126|449129|449132|449134|449136|449137|449142|449144|449147|449152|449155|449157|449167|449176|449177|449179|449182|449186|449188|449190|449192|449193|449194|449195|449200|449201|449202|449205|449206|449207|449208|449212|449213|449214|449215|449216|449217|449219|449220|449221|449224|449227|449229|449230|449232|449234|449236|449237|449238|449241|449242|449243|449245|449247|449249|449252|449255|449257|449258|449259|449263|449264|449266|449267|449270|449272|449273|449274|449275|449276|449277|449279|449280|449282|449284|449285|449287|449288|449289|449290|449291|449292|449293|449294|449295|449297|449300|449301|449302|449303|449305|449306|449307|449308|449309|449310|449311|449312|449313|449314|449315|449316|449317|449318|449319|449320|449321|449322|449323|449324|449325|449326|449327|449328|449329|449330|449331|449332|449333|449335|449336|449337|449338|449339|449340|449341|449342|449343|449343|449344|449345|449346|449347|449348|449349|449350|449351|449352|449353|449354|449355|449356|449357|449358|449359|449360|449361|449362|449363|449364|449365|449366|449367|449368|449369|449370|449371|449372|449373|449374|449375|449376|449377|449378|449379|449380|449381|449383|449384|449385|449386|449387|449388|449389|449390|449391|449392|449393|449394|449395|449396|449397|449398|449399|449400|449401|449402|449403|449404|449405|449406|449407|449408|449409|449410|449411|449412|449413|449414|449415|449416|449417|449418|449419|449420|449421|449422|449423|449424|449425|449426|449427|449428|449429|449430|449431|449432|449433|449434|449435|449436|449437|449438|449439|449440|449441|449442|449442|449443|449444|449445|449446|449447|449448|449449|449450|449451|449452|449453|449454|449455|449456|449457|449458|449459|449460|449461|449462|449463|449464|449465|449466|449466|449467|449468|449469|449470|449471|449472|449473|449474|449475|449476|449477|449479|449480|449481|449482|449483|449484|449485|449486|449487|449488|449489|449490|449491|449492|449493|449494|449495|449496|449497|449498|449499|449500|449501|449502|449502|449503|449504|449505|449506|449507|449508|449509|449510|449511|449511|449512|449513|449514|449515|449516|449517|449518|449518|449519|449520|449522|449523|449524|449525|449526|449526|449527|449528|449529|449530|449531|449532|449533|449534|449535|449536|449537|449538|449538|449539|449540|449542|449543|449544|449545|449546|449547|449548|449549|449550|449551|449552|449553|449554|449555|449557|449558|449559|449561|449562|449563|449564|449565|449566|449567|449568|449569|449570|449571|449572|449573|449574|449575|449577|449578|449578|449579|449580|449580|449581|449582|449583|449584|449585|449586|449587|449588|449589|449590|449591|449592|449593|449594|449595|449597|449598|449599|449600|449601|449602|449603|449604|449604|449605|449606|449607|449608|449609|449610|449611|449612|449613|449614|449615|449615|449617|449618|449619|449620|449621|449622|449623|449624|449625|449626|449627|449628|449629|449630|449631|449632|449633|449634|449635|449636|449637|449638|449639|449640|449641|449643|449644|449645|449646|449647|449648|449649|449649|449650|449651|449652|449653|449654|449655|449656|449657|449658|449659|449660|449661|449662|449663|449664|449665|449666|449667|449668|449670|449671|449673|449674|449675|449676|449677|449678|449679|449680|449681|449682|449683|449684|449685|449686|449687|449688|449689|449690|449691|449692|449693|449694|449695|449696|449697|449698|449699|449700|449701|449702|449703|449704|449705|449706|449707|449708|449709|449710|449711|449712|449713|449714|449715|449716|449717|449718|449719|449720|449721|449722|449723|449724|449725|449726|449727|449728|449729|449730|449731|449732|449733|449734|449735|449736|449737|449738|449739|449740|449740|449741|449742|449743|449744|449745|449746|449747|449748|449749|449750|449751|449752|449753|449754|449755|449756|449757|449758|449759|449760|449761|449762|449763|449764|449765|449766|449767|449768|449769|449770|449771|449772|449773|449774|449775|449776|449777|449778|449779|449780|449781|449782|449783|449784|449785|449786|449787|449788|449789|449790|449791|449792|449793|449794|449795|449795|449796|449797|449798|449799|449800|449801|449802|449803|449804|449805|449806|449807|449808|449809|449810|449811|449812|449812|449813|449814|449815|449816|449817|449818|449818|449819|449819|449820|449820|449821|449822|449823|449824|449825|449826|449827|449828|449829|449830|449831|449832|449833|449834|449835|449836|449837|449838|449839|449840|449841|449842|449843|449844|449845|449846|449847|449848|449849|449850|449851|449852|449853|449854|449855|449856|449857|449858|449859|449860|449861|449862|449863|449864|449865|449866|449867|449869|449870|449871|449872|449873|449874|449875|449876|449878|449879|449880|449881|449882|449883|449884|449885|449886|449887|449888|449889|449890|449891|449892|449893|449894|449895|449896|449897|449898|449898|449899|449900|449901|449902|449903|449904|449905|449906|449907|449908|449909|449910|449911|449912|449913|449914|449915|449916|449917|449918|449919|449920|449921|449922|449923|449924|449925|449926|449927|449928|449929|449930|449931|449932|449933|449934|449935|449936|449937|449938|449939|449940|449941|449942|449943|449944|449945|449946|449947|449948|449950|449951|449952|449953|449954|449955|449957|449958|449959|449959|449960|449961|449962|449963|449964|449965|449966|449967|449968|449969|449970|449971|449972|449973|449974|449975|449976|449977|449978|449979|449980|449981|449982|449983|449984|449985|449986|449987|449988|449989|449990|449991|449992|449993|449994|449995|449996|449997|449998|449999|450000|450001|450002|450003|450004|450005|450006|450007|450008|450009|450010|450011|450012|450013|450014|450015|450016|450017|450018|450019|450020|450021|450022|450023|450024|450025|450026|450027|450028|450028|450029|450030|450031|450032|450032|450033|450033|450034|450035|450036|450037|450038|450039|450040|450041|450042|450043|450044|450045|450046|450047|450047|450048|450049|450050|450051|450052|450053|450054|450055|450056|450057|450058|450058|450059|450059|450061|450062|450063|450064|450065|450066|450067|450068|450070|450071|450072|450073|450074|450075|450076|450077|450078|450079|450080|450081|450082|450083|450085|450086|450087|450088|450089|450090|450091|450092|450093|450094|450096|450097|450098|450100|450101|450102|450103|450104|450105|450107|450108|450109|450110|450111|450112|450115|450116|450118|450119|450120|450121|450123|450124|450125|450126|450127|450128|450129|450130|450131|450133|450134|450136|450139|450140|450141|450142|450144|450145|450146|450148|450149|450150|450152|450153|450153|450154|450155|450157|450161|450162|450163|450166|450168|450170|450171|450172|450175|450178|450181|450182|450183|450184|450186|450187|450190|450191|450192|450193|450194|450195|450197|450200|450201|450202|450204|450205|450207|450208|450210|450211|450212|450213|450214|450215|450216|450217|450218|450219|450221|450222|450223|450224|450226|450228|450230|450231|450232|450233|450234|450235|450236|450238|450239|450240|450241|450243|450244|450246|450247|450248|450250|450252|450253|450254|450256|450257|450258|450260|450261|450262|450265|450266|450268|450269|450270|450271|450272|450273|450274|450275|450278|450281|450282|450289|450304|450305|450307|450311|450318|450322|450323|450327|450328|450335|450343|450345|450346|450350|450351|450353|450357|450360|450385|450387|450389|450390|481118|481119|481120|481121|481230|481616|481618|481619|481625|481631|488370|488408|488415|488433|488434|488435|488441|488441|488446|488451|488511|488523|488530|488547|488549|488551|488554|488557|488575|488602|488612|488618|488619|488751|488757|488758|489017|489235|489248|489273|489487|489622|489631|490038|490049|490138|490145|490361|490421|490457|490521|490525|490650|490731|490735|490736|490737|490965|491024|491049|491061|491065|491598|491824|491964|492034|492047|492125|492156|492157|492163|492351|492527|492528|492596|492617|492618|492627|492690|492729|492911|492912|492980|492987|493054|493055|493192|493195|493213|493236|493509|493629|493807|493985|494087|494151|495116|495378|496171|496193|496248|496635|496660|496673|496674|496678|496712|498922|498926|498928|498931|498942|498943|498948|498970|499001|499022|499065|499088|499092|499093|499096|499122|499129|499142|499158|499160|499183|499189|499210|499213|499215|499218|499219|499224|499229|499231|499235|499240|499252|499270|499276|499276|499281|499282|499291|499294|499299|499299|499301|499308|499315|499315|499319|499326|499329|499332|499340|499341|499347|499364|499366|499374|499385|499392|499397|499398|499399|499404|499419|499423|499442|499458|499488|499509|499513|499516|499527|499543|499562|499565|499572|499578|499598|499612|499629|499637|499648|499665|499666|499685|499697|499701|499709|499713|499722|499728|499735|499767|499793|509253|509261|509270|509275|509281|509283|509289|509308|509311|509318|509350|509374|509397|509413|509416|509417|509424|509434|511005|511007|511022|511064|511364|511367|513249|513250|513251|513518|516212|516216|516302|516700|516712|516715|516718|516720|516731|516734|516737|516740|516743|516744|516745|516750|516754|516756|516758|516759|516761|516764|516765|516767|516768|516770|516772|516773|516774|516775|516776|516777|516778|516779|516780|516781|516782|516783|516784|516785|516786|516787|516788|516789|516791|516792|516793|516794|516795|516797|516798|516799|516799|516801|516802|516803|516805|516806|516809|516810|516811|516812|516814|516816|516817|516818|516819|516822|516823|516825|516826|516827|516828|516829|516830|516831|516832|516833|516834|516835|516836|516837|516839|516840|516842|516843|516844|516845|516846|516848|516849|516850|516853|516854|516855|516856|516857|516858|516859|516860|516861|516862|516863|516864|516865|516866|516867|516868|516869|516871|516872|516873|516874|516875|516876|516877|516879|516880|516881|516883|516885|516886|516887|516888|516889|516890|516891|516892|516893|516894|516895|516896|516897|516898|516899|516900|516901|516902|516903|516904|516905|516906|516907|516908|516909|516910|516911|516912|516913|516914|516915|516916|516917|516918|516919|516920|516921|516922|516923|516924|516925|516926|516927|516928|516929|516930|516931|516932|516933|516934|516935|516936|516937|516938|516939|516940|516941|516942|516943|516944|516945|516946|516947|516947|516948|516949|516950|516951|516952|516953|516954|516954|516955|516956|516957|516958|516959|516960|516961|516962|516963|516964|516965|516966|516967|516968|516969|516970|516971|516972|516973|516974|516975|516976|516976|516977|516978|516979|516980|516981|516982|516983|516984|516985|516986|516987|516988|516989|516990|516991|516992|516993|516994|516995|516996|516997|516998|516999|517000|517001|517002|517003|517004|517004|517005|517006|517007|517008|517009|517010|517011|517012|517013|517014|517015|517016|517017|517018|517019|517020|517021|517021|517022|517023|517024|517025|517026|517027|517028|517029|517030|517031|517032|517034|517035|517036|517037|517038|517039|517040|517041|517042|517043|517044|517045|517046|517047|517048|517049|517050|517051|517052|517053|517054|517055|517055|517056|517057|517058|517059|517060|517061|517062|517063|517064|517065|517066|517067|517068|517069|517070|517071|517072|517073|517074|517075|517076|517077|517078|517079|517080|517081|517082|517083|517084|517085|517086|517087|517088|517089|517090|517091|517092|517093|517094|517095|517096|517097|517098|517099|517100|517101|517102|517103|517104|517105|517106|517107|517108|517109|517110|517111|517112|517113|517114|517115|517117|517118|517119|517120|517121|517122|517123|517124|517125|517126|517127|517128|517129|517130|517131|517132|517133|517134|517135|517136|517137|517138|517139|517140|517141|517142|517143|517144|517144|517145|517146|517147|517148|517149|517150|517151|517152|517153|517154|517155|517156|517157|517158|517159|517160|517161|517162|517163|517164|517165|517166|517167|517168|517169|517170|517171|517172|517173|517174|517175|517176|517177|517178|517179|517180|517181|517182|517183|517184|517185|517186|517187|517188|517189|517190|517191|517192|517193|517194|517196|517197|517198|517199|517200|517201|517202|517203|517204|517205|517206|517207|517208|517209|517210|517211|517212|517213|517214|517215|517216|517217|517218|517219|517220|517221|517222|517223|517224|517225|517226|517227|517228|517229|517230|517231|517232|517233|517234|517235|517237|517238|517239|517240|517241|517242|517243|517244|517245|517246|517247|517248|517249|517250|517251|517252|517253|517254|517255|517258|517259|517260|517261|517262|517263|517264|517265|517266|517267|517268|517270|517271|517272|517273|517274|517275|517276|517277|517278|517280|517281|517283|517284|517285|517286|517287|517288|517290|517290|517291|517292|517293|517294|517295|517296|517297|517298|517299|517300|517300|517301|517302|517303|517304|517305|517306|517306|517307|517308|517309|517310|517311|517312|517313|517314|517315|517316|517317|517318|517320|517321|517322|517323|517324|517325|517326|517327|517328|517329|517330|517331|517332|517333|517334|517335|517336|517337|517338|517339|517340|517341|517341|517342|517343|517344|517345|517346|517347|517348|517349|517350|517351|517352|517353|517354|517355|517356|517357|517358|517359|517360|517361|517362|517363|517364|517365|517366|517367|517368|517369|517370|517371|517372|517373|517374|517375|517376|517377|517378|517379|517380|517381|517382|517383|517384|517386|517387|517388|517389|517390|517391|517392|517393|517394|517395|517396|517397|517398|517399|517401|517403|517404|517405|517406|517407|517409|517411|517412|517413|517414|517415|517416|517417|517418|517420|517421|517422|517423|517424|517426|517427|517429|517430|517432|517433|517434|517435|517436|517437|517438|517440|517442|517443|517444|517445|517446|517448|517449|517451|517452|517453|517454|517455|517456|517457|517458|517459|517460|517460|517461|517462|517463|517464|517465|517466|517468|517469|517470|517471|517472|517474|517476|517477|517478|517479|517480|517483|517484|517485|517487|517488|517489|517490|517491|517492|517493|517494|517495|517498|517499|517501|517503|517505|517510|517512|517513|517515|517517|517518|517519|517520|517521|517528|517529|517531|517532|517533|517534|517538|517540|517541|517543|517544|517547|517548|517550|517551|517554|517555|517557|517582|517586|517586|517588|517592|517594|517600|517605|517605|517609|517612|517614|517615|517616|517624|517627|517628|517634|517636|517637|517641|517643|517649|517651|517652|517654|517663|517667|517670|517671|517674|517678|517679|517683|517688|517689|517698|517699|517703|517708|538342|539471|550824|557424|557426|557704|557706|557708|557710|557712|557714|557716|557718|557720|557722|557724|557726|557730|557731|557732|557733|557734|557735|557736|557737|557738|557739|557740|557741|557742|557743|557744|557745|557746|557747|557748|557749|557750|557751|557752|557753|557754|557755|557756|557757|557758|557759|557760|557761|557762|557763|557764|557765|557766|557767|557768|557769|557770|557771|557772|557773|557773|557774|557775|557777|557779|557781|557783|557785|557787|557789|557791|557793|557795|557797|557799|557801|557803|557805|557807|557809|557811|557813|557815|557817|557819|557821|557825|558072|558633|558635|558921|558923|558925|558927|558929|558931|558933|558935|558937|558939|558941|558943|558945|558947|558949|558951|558953|558955|558957|558959|558961|558963|558965|558967|558969|558971|558973|558975|558977|558979|558981|558983|558985|558987|558989|558991|558993|558995|558997|558999|559001|559003|559003|559005|559402|559404|559406|559408|559410|559412|559414|559416|559418|559420|559422|559424|559426|559428|559430|559430|559432|559434|559436|559438|559440|559442|559444|559446|559448|559450|559452|559454|559456|559458|559460|559464|559466|559468|559470|559472|559474|559476|559478|559480|576588|576600|576601|576602|576620|576621|576626|583788|584002|584092|585032|585258|585477|585477|585482|585667|586532|586533|586782|586973|587073|587073|587132|587145|587668|588268|588608|588734|588929|589289|589484|608940|609450|609459|611549|611550|613499|613499|614745|614783|614818|614848|624208|624212|624220|624221|625788|629032|629033|629034|629035|629036|629037|629038|629039|629040|629041|629042|629043|629044|629045|629046|629047|629048|629049|629050|629051|629052|629053|629054|629055|629056|629057|629058|629059|629060|629061|629062|629063|629064|629065|629066|629067|629068|629069|629070|629071|629072|629073|629074|629075|629076|629077|629078|629079|629080|629081|629082|629083|629084|629085|629086|629087|629088|629089|629090|629091|629092|629093|629094|629095|629096|629097|629098|629099|629100|629101|629102|629103|629104|629105|629106|629107|629108|629109|629110|629111|629112|629113|629114|629115|629116|629117|629118|629119|629120|629121|629122|629123|629124|629125|629126|629127|629128|629129|629130|629131|629132|629133|629134|629135|629136|629137|629138|629139|629140|629141|629142|629143|629144|629145|629146|629146|629147|629148|629149|629150|629151|629152|629153|629154|629155|629156|629157|629158|629159|629160|629161|629162|629163|629164|629166|629167|629168|629169|629170|629171|629172|629173|629174|629175|629176|629177|650707|650724|650729|650866|650868|650870|650876|650877|650885|650892|650899|650900|650902|650903|650906|650911|650915|650923|650925|650927|653913|655182|655277|655296|655365|655380|655400|655401|672386|679387|679398|679556|683422|683423|683426|683429|683433|683434|683436|683437|683438|683440|683443|683444|683445|683446|683448|683450|683452|683453|683454|683455|683456|683458|685120|685122|685123|685124|685929|685931|685934|685934|685935|685936|685938|685940|685942|685944|685945|685946|685947|685949|685956|685958|685961|685964|685965|685966|685970|685971|685974|685978|685979|685979|685981|685984|685986|685987|685989|685990|685992|685993|685994|685996|685997|685998|685999|686000|686001|686002|686003|686004|686006|686008|686009|686009|686010|686011|686013|686015|686016|686018|686019|686020|686021|686023|686024|686025|686026|686027|686028|686029|686031|686032|686035|686036|686037|686041|686042|686043|686045|686046|686046|686047|686048|686049|686050|686053|686057|686058|686059|686061|686062|686063|686064|686067|686068|686071|686072|686073|686075|686076|686077|686079|686080|686081|686086|686087|689682|689683|689684|689685|689687|690906|690908|690911|690912|690913|690914|690915|690917|690918|690920|690921|690925|690934|690935|690940|690941|690942|690943|690944|690945|690946|690947|690948|690950|690951|690956|690957|690958|690959|690960|690961|690962|690964|690965|690968|690972|690973|690974|690977|690980|690981|690981|690982|690987|695103|695104|695108|695109|695110|695111|697179|697180|697181|697182|697184|697187|697189|697190|697192|707874|707876|707878|707879|707882|719440|719441|719445|719445|719449|730085|732973|732982|732985|732994|732996|732999|733002|733003|733005|733008|733009|743828|743833|743842|746981|746983|746985|746989|746991|746995|746999|747001|747004|747007|747010|747011|747024|747025|747029|747043|747057|747066|747072|747081|747087|758988|762443|762445|762446|762447|762451|762452|762454|762456|762460|762462|762464|762468|762472|762480|762481|762495|762496|762501|762504|762505|762508|762509|762521|762530|762538|762543|762550|762555|762557|762560|762561|762566|762567|762569|762577|762579|762582|762587|762588|762597|762599|762600|762601|762606|762608|762623|762628|762630|762636|762646|762647|762648|762649|762651|762657|762659|762660|762670|762677|762681|762684|762686|762687|762691|762699|762705|762706|774623|774638|774642|774655|774664|774668|777211|778939|780980|780981|780984|780986|780987|780990|780992|780998|780999|781006|781009|781011|781012|781014|781015|781019|781021|781022|781024|781025|781031|781032|781033|781034|781036|781040|781043|781046|781047|781049|781054|781055|781056|781057|781058|781060|781061|781067|781068|781069|781077|781079|781080|781082|781085|787088|787090|787130|790129|790130|790131|790132|790133|790134|794864|794943|795006|799267|804987|805257|805269|805274|819083|819084|819085|819086|825269|825270|825271|825272|825273|825274|825275|825276|825277|825278|825279|825280|825281|825282|825283|825284|825285|825286|825287|825288|825289|825290|825291|825292|825293|825294|825295|825296|825297|825298|825299|825300|825301|825302|825303|825304|825305|825306|825307|825308|825309|825310|825311|825312|825313|825314|825315|825316|825317|825318|825319|825320|825321|825322|825323|825324|825325|825326|825327|825328|825329|825330|825331|825332|825333|825334|825335|825336|825337|825338|825339|825340|825341|825342|825343|825344|825345|825346|825347|825348|825349|825350|825351|825352|825353|825354|825355|825356|825357|825358|825359|825360|825361|825362|825363|825364|825365|825366|825367|825368|825369|825370|825371|825372|825373|825374|825375|825376|825377|825378|825379|825380|825381|825382|825383|825384|825385|825386|825387|825388|825389|825390|825391|825392|825393|825394|825395|825396|825397|825398|825399|825400|825401|825402|825403|825404|825405|825406|825407|825408|825409|825410|825411|825412|825413|825414|825415|825416|825417|825418|825419|825420|825421|825422|825423|825424|825425|825426|825427|825428|825429|825430|825431|825432|825433|825434|825435|825436|825437|825438|825439|825440|825441|825442|825443|850811|850813|850815|850817|850819|850856|850858|850860|851113|851119|851121|851128|851135|851137|851139|851364|851366|851369|851372|851374|851376|851378|858400|858402|858427|858431|858468|859063|859071|861583|861616|881722|881723|881724|881725|881726|881727|881728|881729|881730|881730|881731|881732|881733|881734|881735|881736|881737|881738|881739|881740|881741|881742|881743|881744|881745|881746|881747|881748|881749|881750|881751|881752|881753|881754|881755|881756|881757|881758|881759|881760|881761|881762|881763|881764|881765|881766|881767|881768|881769|881770|881771|881772|881773|881774|881775|881776|881777|881778|881779|881780|881781|881782|881783|881784|881785|881786|881787|881788|881789|881790|881791|881792|881793|881794|881795|881796|881797|881798|881799|881800|881801|881802|881803|881804|881805|881806|881807|881808|881809|881810|881811|881812|881813|881814|881815|881816|881817|881818|881819|881820|881821|881822|881823|881824|881825|881826|881827|881828|881829|881830|881831|881832|881833|881834|881835|881836|881837|881838|881839|881840|881841|881842|881843|881844|881845|881846|881847|881848|881849|881850|881851|881852|881853|881854|881855|881856|881857|881858|881859|881860|881861|881862|881863|881864|881865|881866|881867|881868|881869|881870|881871|881872|881873|881874|881875|881876|881877|881878|881879|881880|881881|881882|881883|881884|881885|881886|881887|881888|881889|881890|881891|881892|881893|881894|881895|881896|881897|881898|881899|881900|881901|881902|881903|881904|881905|881906|881907|881908|881909|881910|881911|881912|881913|881914|881915|881916|881917|881918|881919|881920|881921|881922|881923|881924|882859|882860|882861|882862|882863|882864|882865|882866|882867|882868|882869|882870|882871|882872|882873|882874|882875|882876|882877|882878|882879|882987|882988|903751|922423|922424|922425|922426|922427|922428|922429|922430|922431|922432|922433|922434|922435|922436|922437|922438|922439|922440|922441|922442|922443|922444|922445|922446|922447|922448|922449|922450|922451|922452|922453|922454|922455|922456|922457|922458|922459|922460|922461|922462|922463|922464|922465|922466|922467|922468|922469|922470|922471|922472|922473|922474|922475|922476|922477|922478|922479|922480|922481|922482|922483|930995|930996|930997|930998|930999|931000|931001|931002|931003|931004|931005|931006|931007|931008|931009|931010|931011|931012|931013|931014|931015|931016|931017|931018|931019|931020|931021|931022|931023|931024|931025|931026|931027|931028|931029|931030|931030|931031|931032|931033|931034|931035|931036|931037|931038|931039|931040|931041|931042|931043|931044|931045|931046|939855|939856|939857|939858|939859|939860|939861|939862|939863|939864|939865|939866|939867|939868|940667|940668|940669|940670|940671|940672|940673|940674|940675|940676|940677|942438|942439|942440|942441|942442|942443|942444|942445|942446|942447|942448|942449|942450|942451|942452|942453|942454|942455|942456|942457|942458|942459|942460|942461|942462|942463|942464|942465|942466|942467|942468|942469|942470|942471|942472|942473|942474|942475|942476|942477|942478|942479|942480|942481|942482|942483|942484|942485|942486|942487|942488|942489|942490|942491|942492|942493|942494|942495|942496|942497|942498|942499|942500|942501|942502|942503|942504|952801|952802|952803|952804|952805|952806|952807|952808|952809|952810|952811|952812|952813|952814|952815|952816|952817|952818|952819|952820|952821|952822|952823|952824|952825|952826|952827|952828|952829|952830|952831|952832|952833|952834|952835|952836|952837|952838|952839|952840|952841|952842|952843|959601|959602|959603|959604|959605|959606|959607|959608|959609|959610|959611|959612|960456|960457|964185|964186|970726|983701", "text": "Dilated cardiomyopathy 1G" }, { - "baseId": "27691|27692|27693|27698|46997|46998|46999|47000|47001|55739|55741|55742|55743|55744|55745|55746|55747|55750|55751|55752|55753|55755|55756|55757|55759|55760|55762|55763|55764|55768|55771|55772|55777|55778|55779|55780|55782|55783|55784|55786|55787|55788|55790|55793|55794|55796|55798|55800|55803|55806|55808|55809|55810|55811|55813|55814|55816|55818|55819|55820|55821|55822|55823|55826|55829|55831|55832|55835|55836|55837|55840|55841|55842|55844|55845|55846|55847|55848|55849|55850|55852|55853|55855|55858|55859|55860|55863|55864|55867|55868|55870|55872|55873|55875|55876|55877|55878|55879|55880|55881|55882|55883|55884|55886|55887|55889|55890|55891|55893|55895|55896|55898|55899|55901|55904|55906|55907|55908|55910|55912|55915|55921|55923|55924|55927|55928|55929|55931|55933|55934|55935|55936|55938|55939|55940|55941|55942|55943|55944|55945|55949|55950|55951|55952|55954|55957|55958|55960|55964|55970|55971|55973|55975|55977|55979|55982|55983|55984|55985|55987|55988|55990|55991|55993|55995|55996|55998|55999|56000|56002|56003|56004|56006|56009|56013|56015|56016|56017|56018|56022|56023|56024|56026|56028|56029|56031|56032|56033|56034|56036|56038|56039|56040|56041|56043|56045|56047|56048|56049|56050|56051|56052|56053|56055|56056|56059|56060|56066|56067|56068|56069|56072|56074|56075|56076|56079|56080|56082|56085|56087|56088|56093|56094|56095|56096|56099|56100|56101|56103|56105|56108|56111|56113|56114|56115|56116|56117|56118|56119|56120|56124|56128|56130|56133|56134|56135|56136|56137|56138|56143|56145|56147|56148|56150|56152|56153|56155|56156|56158|56160|56164|56165|56166|56171|56172|56173|56174|56175|56176|56178|56179|56180|56181|56183|56187|56189|56190|56191|56193|56195|56196|56197|56199|56200|56201|56202|56205|56207|56209|56211|56214|56215|56218|56221|56222|56224|56228|56230|56231|56233|56235|56237|56239|56240|56243|56248|56251|56255|56258|56261|56262|56263|56264|56265|56270|56271|56275|56276|56281|56282|56285|56291|56292|56298|56300|56301|56302|56307|56315|56316|56317|56320|56321|56323|56324|56328|56330|56331|56333|56335|56342|56343|56344|56345|56347|56349|56350|56352|56353|56356|56359|56362|56364|56365|56366|56367|56370|56372|56373|56374|56375|56378|56381|56383|56387|56388|56389|56390|56392|56393|56394|56395|56396|56401|56405|56406|56408|56412|56413|56415|56418|56420|56421|56423|56425|56428|56430|56433|56436|56439|56440|56441|56442|56451|56454|56455|56457|56458|56459|56460|56462|56463|56464|56467|56469|56470|56471|56472|56473|56474|56477|56481|56482|56483|56485|56487|56494|56495|56496|56497|56498|56499|56500|56503|56504|56508|56512|56513|56514|56515|56516|56518|56520|56521|56524|56526|56530|56532|56533|56535|56537|56538|56539|56540|56542|56544|56545|56547|56549|56555|56557|56558|56559|56560|56564|56567|56570|56572|56574|56575|56576|56577|56578|56579|56580|56581|56582|56583|56584|56585|56586|56589|56592|56593|56594|56595|56596|56597|56600|56604|56606|56608|56610|56615|56616|56619|56620|56621|56624|56625|56628|56629|56631|56633|56634|56637|56639|56640|56641|56643|56645|56647|56648|56649|56652|56653|56658|56661|56665|56667|56668|56671|56672|56674|56675|56676|56677|56678|56679|56680|56682|56683|56684|56685|56686|56687|56689|56691|56693|56694|56696|56700|56701|56703|56705|56706|56708|56709|56710|56711|56712|56714|56716|56717|56718|56719|56722|56723|56725|56730|56731|56732|56735|56736|56737|56738|56742|56743|56746|56750|56751|56752|56753|56754|56755|56758|56759|56760|56762|56764|56766|56767|56768|56769|56773|56774|56775|56777|56784|56785|56786|56787|56788|56789|56790|56792|56793|56794|56797|56798|56800|56802|56803|56804|56805|56806|56807|56809|56810|56811|56812|56814|56816|56819|56822|56823|56825|56826|56827|56829|56831|56833|56834|56838|56839|56841|56845|56847|56848|56849|56851|56853|56854|56855|56856|56857|56858|56863|56864|56865|56866|56867|56868|56870|56871|56872|56873|56874|56875|56876|56878|56880|56881|56882|56884|56886|56887|56917|56929|56956|71025|102168|102169|102170|102172|102183|102185|102188|102190|102192|102193|102194|102195|102200|102203|102206|102207|102208|102210|102212|102214|102215|102218|102221|136108|136109|136116|136119|136120|136121|136125|136126|136128|136129|136132|136133|136134|136358|141478|141479|141490|141492|141493|141494|141501|141502|141509|141510|141515|141520|141523|141524|141526|141530|141534|141539|141542|141544|165601|172606|172609|172615|172621|172638|172644|172647|172652|172657|172665|172668|172677|172683|172691|172697|172698|172699|172700|172704|172717|172729|172734|172738|172800|172808|172813|172816|172820|172823|172829|172833|172838|172840|172841|172849|172850|172852|172854|172872|172877|172878|172879|172942|172944|172945|172964|172971|172973|172976|172981|172982|172997|172998|172999|173003|173008|173009|173015|173031|173035|173043|173044|173047|173049|173061|173068|173073|173074|173079|173080|173090|173102|173104|173107|173114|173121|173136|173137|173144|173147|173152|173158|173163|173166|173167|173169|173172|173176|173192|173193|173212|173213|173218|173221|173225|173229|173234|173240|173243|173246|173247|173248|173252|173301|173311|173313|173316|173321|173328|173329|173334|173342|173344|173349|173351|173354|173356|173357|173359|173361|173364|173372|173381|173394|173410|173443|173444|173448|173452|173453|173463|173467|173478|173482|173483|173486|173487|173593|173598|173599|173600|173618|173624|173626|173720|173728|173728|173864|173867|177073|177335|177338|178113|178124|178128|178486|188939|189407|189409|189411|189415|189423|189435|189437|189446|189451|189454|189459|189464|189467|189469|189476|189483|189486|189489|189491|189493|189498|189499|189503|189507|189514|189524|189535|189539|189541|189553|189566|189573|189578|189582|189588|189591|189594|189597|189599|189601|189619|189629|189630|189655|189661|189665|189666|189673|189686|189687|189746|189756|189760|189763|189764|189769|189770|191309|191743|192712|192797|192869|192952|192957|192999|193004|193082|193084|193217|193221|193226|193229|193231|193237|193241|193255|193357|193804|193962|194739|195117|195118|195137|195775|196130|196340|196400|198697|198702|198703|198733|198744|198753|198754|198768|198769|198772|198790|198791|198806|198811|198813|198817|198819|198822|198827|198832|198838|198839|198852|198869|198881|198881|198888|198900|198909|198912|198924|198966|198969|198988|199000|199024|199029|199098|199110|199111|199112|199114|199126|199130|199139|199143|199149|199157|199174|199184|199191|199192|199203|199212|199229|199233|199237|199238|199249|199264|199265|199266|199277|199302|199310|199322|199334|199361|199365|199374|199407|199409|199432|199439|199441|199449|199474|199490|199492|199501|199512|199513|199524|199526|199539|199543|199556|199563|199578|199580|199674|199707|199712|199716|199753|199759|199764|199773|215231|224987|226456|226892|228556|228579|228580|228584|228594|228595|228637|228640|228644|228646|228651|228656|228660|228662|228677|228681|228690|228695|228699|228725|228729|228742|228744|228746|228754|228761|228762|228779|228784|228786|228787|228789|228797|228811|228812|228816|228822|228885|228907|238389|238393|238420|238422|238441|238464|238479|238524|238547|238559|238560|250420|250429|250430|258049|258054|258060|258080|258101|258111|258121|258122|258130|258137|258157|258158|258165|266024|266256|266423|266653|266666|266764|266857|266892|266899|267023|267084|267093|267127|267687|267725|267868|267951|267961|268239|268329|268531|268680|268795|268915|269229|269544|269646|271221|271856|272181|272182|272756|272908|273378|273761|274309|274709|274951|274956|283197|283198|283200|283201|283203|283204|283211|283212|283220|283221|283222|283223|283225|283228|283229|283232|283233|283235|283236|283240|283244|283249|283250|283251|283252|283253|283255|283256|283262|283263|283269|283270|283271|283274|283275|283277|283278|283294|283302|283303|283304|283309|283320|283321|283327|283328|283329|283332|283341|283343|283344|283346|283348|283349|283358|283361|283371|283374|283375|283376|283378|283379|283381|283389|283390|283394|283395|283401|283404|283405|283408|283411|283417|283418|283420|283424|283425|283427|283430|283432|283435|283439|283905|283908|283910|283911|283912|283914|283915|283923|283924|283925|283930|283931|283933|283935|283936|283941|283942|283947|283956|283957|283959|283961|283966|283969|283975|283976|283990|283991|283994|283995|283996|283997|283998|283999|284002|284006|284012|284020|284021|284023|284024|284027|284034|284036|284037|284044|284045|284046|284048|284051|284052|284053|284055|284056|284061|284062|284064|284065|284067|284068|284069|284075|284076|284082|284090|284091|284105|284106|284107|284109|284110|284111|284114|285677|285678|285679|285683|285684|285689|285691|285692|285693|285702|285704|285705|285706|285708|285715|285724|285729|285735|285737|285739|285740|285747|285752|285767|285769|285770|285773|285774|285776|285790|285793|285794|285814|285818|285825|285830|285831|285834|285840|285841|285843|285844|285851|285853|285855|285856|285859|285860|285861|285878|285888|285889|285892|285911|285912|285913|285920|285923|285924|285926|285938|285963|285976|285977|285981|285986|285987|285988|285990|285991|285993|285998|286000|286001|286008|286009|286010|286011|286014|286015|286016|286073|286074|286082|286085|286086|286091|286093|286099|286100|286101|286102|286105|286106|286108|286110|286111|286112|286115|286131|286132|286136|286138|286141|286145|286146|286150|286151|286152|286157|286158|286159|286167|286175|286178|286183|286184|286186|286187|286191|286195|286196|286197|286201|286202|286205|286207|286208|286209|286210|286239|286240|286244|286259|286263|286264|286266|286267|286275|286287|286290|286294|286295|286304|286305|286311|286316|286317|286318|286323|286324|286325|286333|286341|286342|286361|286376|286386|286387|286408|360828|360831|365857|365953|366029|366059|366081|366102|366108|366113|366125|366433|366550|366591|391538|391541|391552|391580|391620|391690|391734|391800|391883|391972|391983|391994|392069|392178|392201|392223|392454|427953|434002|434573|440575|440598|440625|443080|449343|449442|449466|449502|449511|449518|449526|449538|449578|449580|449604|449615|449649|449740|449795|449812|449813|449818|449819|449820|449898|449959|450028|450032|450033|450047|450058|450059|450153|481118|481119|481120|481121|488370|488408|488433|488434|488441|488554|490965|491061|492034|492157|492980|492987|493629|496635|498948|499088|499096|499183|499219|499276|499294|499299|499301|499315|499347|499565|499629|499648|499709|509270|509350|513911|516799|516947|516954|516976|517004|517021|517055|517144|517290|517300|517306|517341|517421|517460|517586|517605|557773|559003|559430|576600|576601|576602|576621|584002|585477|587073|614848|629146|655182|655277|655296|655401|679387|685934|685979|686006|686009|686018|686046|690915|690981|697189|719445|746985|747001|794943|795006|859071|881722|881723|881724|881725|881726|881727|881728|881729|881730|881731|881732|881733|881734|881735|881736|881737|881738|881739|881740|881741|881742|881743|881744|881745|881746|881747|881748|881749|881750|881751|881752|881753|881754|881755|881756|881757|881758|881759|881760|881761|881762|881763|881764|881765|881766|881767|881768|881769|881770|881771|881772|881773|881774|881775|881776|881777|881778|881779|881780|881781|881782|881783|881784|881785|881786|881787|881788|881789|881790|881791|881792|881793|881794|881795|881796|881797|881798|881799|881800|881801|881802|881803|881804|881805|881806|881807|881808|881809|881810|881811|881812|881813|881814|881815|881816|881817|881818|881819|881820|881821|881822|881823|881824|881825|881826|881827|881828|881829|881830|881831|881832|881833|881834|881835|881836|881837|881838|881839|881840|881841|881842|881843|881844|881845|881846|881847|881848|881849|881850|881851|881852|881853|881854|881855|881856|881857|881858|881859|881860|881861|881862|881863|881864|881865|881866|881867|881868|881869|881870|881871|881872|881873|881874|881875|881876|881877|881878|881879|881880|881881|881882|881883|881884|881885|881886|881887|881888|881889|881890|881891|881892|881893|881894|881895|881896|881897|881898|881899|881900|881901|881902|881903|881904|881905|881906|881907|881908|881909|881910|881911|881912|881913|881914|881915|881916|881917|881918|881919|881920|881921|881922|881923|881924|882859|882860|882861|882862|882863|882864|882865|882866|882867|882868|882869|882870|882871|882872|882873|882874|882875|882876|882877|882878|882879|882987|882988|918702|918703|918706|918707|918708|918709|918710|918711|918712|918713|920165|920166|920168|920169", + "upstreamId": "27691|27692|27693|27698|46997|46998|46999|47000|47001|55739|55741|55742|55743|55744|55745|55746|55747|55750|55751|55752|55753|55755|55756|55757|55759|55760|55762|55763|55764|55768|55771|55772|55777|55778|55779|55780|55782|55783|55784|55786|55787|55788|55790|55793|55794|55796|55798|55800|55803|55806|55808|55809|55810|55811|55813|55814|55816|55818|55819|55820|55821|55822|55823|55826|55829|55831|55832|55835|55836|55837|55840|55841|55842|55844|55845|55846|55847|55848|55849|55850|55852|55853|55855|55858|55859|55860|55863|55864|55867|55868|55870|55872|55873|55875|55876|55877|55878|55879|55880|55881|55882|55883|55884|55886|55887|55889|55890|55891|55893|55895|55896|55898|55899|55901|55904|55906|55907|55908|55910|55912|55915|55921|55923|55924|55927|55928|55929|55931|55933|55934|55935|55936|55938|55939|55940|55941|55942|55943|55944|55945|55949|55950|55951|55952|55954|55957|55958|55960|55964|55970|55971|55973|55975|55977|55979|55982|55983|55984|55985|55987|55988|55990|55991|55993|55995|55996|55998|55999|56000|56002|56003|56004|56006|56009|56013|56015|56016|56017|56018|56022|56023|56024|56026|56028|56029|56031|56032|56033|56034|56036|56038|56039|56040|56041|56043|56045|56047|56048|56049|56050|56051|56052|56053|56055|56056|56059|56060|56066|56067|56068|56069|56072|56074|56075|56076|56079|56080|56082|56085|56087|56088|56093|56094|56095|56096|56099|56100|56101|56103|56105|56108|56111|56113|56114|56115|56116|56117|56118|56119|56120|56124|56128|56130|56133|56134|56135|56136|56137|56138|56143|56145|56147|56148|56150|56152|56153|56155|56156|56158|56160|56164|56165|56166|56171|56172|56173|56174|56175|56176|56178|56179|56180|56181|56183|56187|56189|56190|56191|56193|56195|56196|56197|56199|56200|56201|56202|56205|56207|56209|56211|56214|56215|56218|56221|56222|56224|56228|56230|56231|56233|56235|56237|56239|56240|56243|56248|56251|56255|56258|56261|56262|56263|56264|56265|56270|56271|56275|56276|56281|56282|56285|56291|56292|56298|56300|56301|56302|56307|56315|56316|56317|56320|56321|56323|56324|56328|56330|56331|56333|56335|56342|56343|56344|56345|56347|56349|56350|56352|56353|56356|56359|56362|56364|56365|56366|56367|56370|56372|56373|56374|56375|56378|56381|56383|56387|56388|56389|56390|56392|56393|56394|56395|56396|56401|56405|56406|56408|56412|56413|56415|56418|56420|56421|56423|56425|56428|56430|56433|56436|56439|56440|56441|56442|56451|56454|56455|56457|56458|56459|56460|56462|56463|56464|56467|56469|56470|56471|56472|56473|56474|56477|56481|56482|56483|56485|56487|56494|56495|56496|56497|56498|56499|56500|56503|56504|56508|56512|56513|56514|56515|56516|56518|56520|56521|56524|56526|56530|56532|56533|56535|56537|56538|56539|56540|56542|56544|56545|56547|56549|56555|56557|56558|56559|56560|56564|56567|56570|56572|56574|56575|56576|56577|56578|56579|56580|56581|56582|56583|56584|56585|56586|56589|56592|56593|56594|56595|56596|56597|56600|56604|56606|56608|56610|56615|56616|56619|56620|56621|56624|56625|56628|56629|56631|56633|56634|56637|56639|56640|56641|56643|56645|56647|56648|56649|56652|56653|56658|56661|56665|56667|56668|56671|56672|56674|56675|56676|56677|56678|56679|56680|56682|56683|56684|56685|56686|56687|56689|56691|56693|56694|56696|56700|56701|56703|56705|56706|56708|56709|56710|56711|56712|56714|56716|56717|56718|56719|56722|56723|56725|56730|56731|56732|56735|56736|56737|56738|56742|56743|56746|56750|56751|56752|56753|56754|56755|56758|56759|56760|56762|56764|56766|56767|56768|56769|56773|56774|56775|56777|56784|56785|56786|56787|56788|56789|56790|56792|56793|56794|56797|56798|56800|56802|56803|56804|56805|56806|56807|56809|56810|56811|56812|56814|56816|56819|56822|56823|56825|56826|56827|56829|56831|56833|56834|56838|56839|56841|56845|56847|56848|56849|56851|56853|56854|56855|56856|56857|56858|56863|56864|56865|56866|56867|56868|56870|56871|56872|56873|56874|56875|56876|56878|56880|56881|56882|56884|56886|56887|56917|56929|56956|71025|102168|102169|102170|102172|102183|102185|102188|102190|102192|102193|102194|102195|102200|102203|102206|102207|102208|102210|102212|102214|102215|102218|102221|136108|136109|136116|136119|136120|136121|136125|136126|136128|136129|136132|136133|136134|136358|141478|141479|141490|141492|141493|141494|141501|141502|141509|141510|141515|141520|141523|141524|141526|141530|141534|141539|141542|141544|165601|172606|172609|172615|172621|172638|172644|172647|172652|172657|172665|172668|172677|172683|172691|172697|172698|172699|172700|172704|172717|172729|172734|172738|172800|172808|172813|172816|172820|172823|172829|172833|172838|172840|172841|172849|172850|172852|172854|172872|172877|172878|172879|172942|172944|172945|172964|172971|172973|172976|172981|172982|172997|172998|172999|173003|173008|173009|173015|173031|173035|173043|173044|173047|173049|173061|173068|173073|173074|173079|173080|173090|173102|173104|173107|173114|173121|173136|173137|173144|173147|173152|173158|173163|173166|173167|173169|173172|173176|173192|173193|173212|173213|173218|173221|173225|173229|173234|173240|173243|173246|173247|173248|173252|173301|173311|173313|173316|173321|173328|173329|173334|173342|173344|173349|173351|173354|173356|173357|173359|173361|173364|173372|173381|173394|173410|173443|173444|173448|173452|173453|173463|173467|173478|173482|173483|173486|173487|173593|173598|173599|173600|173618|173624|173626|173720|173728|173728|173864|173867|177073|177335|177338|178113|178124|178128|178486|188939|189407|189409|189411|189415|189423|189435|189437|189446|189451|189454|189459|189464|189467|189469|189476|189483|189486|189489|189491|189493|189498|189499|189503|189507|189514|189524|189535|189539|189541|189553|189566|189573|189578|189582|189588|189591|189594|189597|189599|189601|189619|189629|189630|189655|189661|189665|189666|189673|189686|189687|189746|189756|189760|189763|189764|189769|189770|191309|191743|192712|192797|192869|192952|192957|192999|193004|193082|193084|193217|193221|193226|193229|193231|193237|193241|193255|193357|193804|193962|194739|195117|195118|195137|195775|196130|196340|196400|198697|198702|198703|198733|198744|198753|198754|198768|198769|198772|198790|198791|198806|198811|198813|198817|198819|198822|198827|198832|198838|198839|198852|198869|198881|198881|198888|198900|198909|198912|198924|198966|198969|198988|199000|199024|199029|199098|199110|199111|199112|199114|199126|199130|199139|199143|199149|199157|199174|199184|199191|199192|199203|199212|199229|199233|199237|199238|199249|199264|199265|199266|199277|199302|199310|199322|199334|199361|199365|199374|199407|199409|199432|199439|199441|199449|199474|199490|199492|199501|199512|199513|199524|199526|199539|199543|199556|199563|199578|199580|199674|199707|199712|199716|199753|199759|199764|199773|215231|224987|226456|226892|228556|228579|228580|228584|228594|228595|228637|228640|228644|228646|228651|228656|228660|228662|228677|228681|228690|228695|228699|228725|228729|228742|228744|228746|228754|228761|228762|228779|228784|228786|228787|228789|228797|228811|228812|228816|228822|228885|228907|238389|238393|238420|238422|238441|238464|238479|238524|238547|238559|238560|250420|250429|250430|258049|258054|258060|258080|258101|258111|258121|258122|258130|258137|258157|258158|258165|266024|266256|266423|266653|266666|266764|266857|266892|266899|267023|267084|267093|267127|267687|267725|267868|267951|267961|268239|268329|268531|268680|268795|268915|269229|269544|269646|271221|271856|272181|272182|272756|272908|273378|273761|274309|274709|274951|274956|283197|283198|283200|283201|283203|283204|283211|283212|283220|283221|283222|283223|283225|283228|283229|283232|283233|283235|283236|283240|283244|283249|283250|283251|283252|283253|283255|283256|283262|283263|283269|283270|283271|283274|283275|283277|283278|283294|283302|283303|283304|283309|283320|283321|283327|283328|283329|283332|283341|283343|283344|283346|283348|283349|283358|283361|283371|283374|283375|283376|283378|283379|283381|283389|283390|283394|283395|283401|283404|283405|283408|283411|283417|283418|283420|283424|283425|283427|283430|283432|283435|283439|283905|283908|283910|283911|283912|283914|283915|283923|283924|283925|283930|283931|283933|283935|283936|283941|283942|283947|283956|283957|283959|283961|283966|283969|283975|283976|283990|283991|283994|283995|283996|283997|283998|283999|284002|284006|284012|284020|284021|284023|284024|284027|284034|284036|284037|284044|284045|284046|284048|284051|284052|284053|284055|284056|284061|284062|284064|284065|284067|284068|284069|284075|284076|284082|284090|284091|284105|284106|284107|284109|284110|284111|284114|285677|285678|285679|285683|285684|285689|285691|285692|285693|285702|285704|285705|285706|285708|285715|285724|285729|285735|285737|285739|285740|285747|285752|285767|285769|285770|285773|285774|285776|285790|285793|285794|285814|285818|285825|285830|285831|285834|285840|285841|285843|285844|285851|285853|285855|285856|285859|285860|285861|285878|285888|285889|285892|285911|285912|285913|285920|285923|285924|285926|285938|285963|285976|285977|285981|285986|285987|285988|285990|285991|285993|285998|286000|286001|286008|286009|286010|286011|286014|286015|286016|286073|286074|286082|286085|286086|286091|286093|286099|286100|286101|286102|286105|286106|286108|286110|286111|286112|286115|286131|286132|286136|286138|286141|286145|286146|286150|286151|286152|286157|286158|286159|286167|286175|286178|286183|286184|286186|286187|286191|286195|286196|286197|286201|286202|286205|286207|286208|286209|286210|286239|286240|286244|286259|286263|286264|286266|286267|286275|286287|286290|286294|286295|286304|286305|286311|286316|286317|286318|286323|286324|286325|286333|286341|286342|286361|286376|286386|286387|286408|360828|360831|365857|365953|366029|366059|366081|366102|366108|366113|366125|366433|366550|366591|391538|391541|391552|391580|391620|391690|391734|391800|391883|391972|391983|391994|392069|392178|392201|392223|392454|427953|434002|434573|440575|440598|440625|443080|449343|449442|449466|449502|449511|449518|449526|449538|449578|449580|449604|449615|449649|449740|449795|449812|449813|449818|449819|449820|449898|449959|450028|450032|450033|450047|450058|450059|450153|481118|481119|481120|481121|488370|488408|488433|488434|488441|488554|490965|491061|492034|492157|492980|492987|493629|496635|498948|499088|499096|499183|499219|499276|499294|499299|499301|499315|499347|499565|499629|499648|499709|509270|509350|513911|516799|516947|516954|516976|517004|517021|517055|517144|517290|517300|517306|517341|517421|517460|517586|517605|557773|559003|559430|576600|576601|576602|576621|584002|585477|587073|614848|629146|655182|655277|655296|655401|679387|685934|685979|686006|686009|686018|686046|690915|690981|697189|719445|746985|747001|794943|795006|859071|881722|881723|881724|881725|881726|881727|881728|881729|881730|881731|881732|881733|881734|881735|881736|881737|881738|881739|881740|881741|881742|881743|881744|881745|881746|881747|881748|881749|881750|881751|881752|881753|881754|881755|881756|881757|881758|881759|881760|881761|881762|881763|881764|881765|881766|881767|881768|881769|881770|881771|881772|881773|881774|881775|881776|881777|881778|881779|881780|881781|881782|881783|881784|881785|881786|881787|881788|881789|881790|881791|881792|881793|881794|881795|881796|881797|881798|881799|881800|881801|881802|881803|881804|881805|881806|881807|881808|881809|881810|881811|881812|881813|881814|881815|881816|881817|881818|881819|881820|881821|881822|881823|881824|881825|881826|881827|881828|881829|881830|881831|881832|881833|881834|881835|881836|881837|881838|881839|881840|881841|881842|881843|881844|881845|881846|881847|881848|881849|881850|881851|881852|881853|881854|881855|881856|881857|881858|881859|881860|881861|881862|881863|881864|881865|881866|881867|881868|881869|881870|881871|881872|881873|881874|881875|881876|881877|881878|881879|881880|881881|881882|881883|881884|881885|881886|881887|881888|881889|881890|881891|881892|881893|881894|881895|881896|881897|881898|881899|881900|881901|881902|881903|881904|881905|881906|881907|881908|881909|881910|881911|881912|881913|881914|881915|881916|881917|881918|881919|881920|881921|881922|881923|881924|882859|882860|882861|882862|882863|882864|882865|882866|882867|882868|882869|882870|882871|882872|882873|882874|882875|882876|882877|882878|882879|882987|882988|918702|918703|918706|918707|918708|918709|918710|918711|918712|918713|920165|920166|920168|920169", "text": "Tibial muscular dystrophy" }, { - "baseId": "27691|27691|27695|27697|27698|27698|46998|46998|55738|55739|55739|55741|55741|55742|55742|55743|55743|55744|55744|55745|55745|55746|55746|55747|55749|55750|55750|55751|55752|55752|55753|55753|55754|55755|55756|55756|55757|55757|55758|55759|55759|55760|55760|55761|55762|55762|55763|55763|55764|55764|55766|55767|55768|55768|55769|55770|55771|55771|55772|55773|55774|55776|55777|55777|55778|55778|55779|55779|55780|55780|55781|55782|55782|55783|55783|55784|55784|55786|55786|55787|55787|55788|55788|55790|55790|55791|55793|55793|55794|55794|55795|55796|55796|55798|55798|55799|55800|55800|55801|55802|55803|55803|55804|55805|55806|55806|55807|55808|55808|55809|55809|55810|55810|55811|55811|55813|55813|55814|55814|55816|55816|55818|55818|55819|55819|55820|55820|55821|55822|55822|55823|55823|55825|55826|55826|55827|55828|55829|55829|55830|55831|55831|55832|55832|55833|55835|55835|55836|55836|55837|55837|55839|55840|55840|55841|55841|55842|55844|55844|55845|55845|55846|55846|55847|55847|55848|55848|55849|55849|55850|55850|55852|55852|55853|55853|55854|55855|55855|55858|55858|55859|55859|55860|55861|55863|55864|55864|55867|55867|55868|55868|55869|55870|55870|55871|55872|55872|55873|55873|55875|55876|55876|55877|55877|55878|55878|55879|55880|55880|55881|55881|55882|55882|55883|55883|55884|55886|55886|55887|55887|55889|55889|55890|55890|55891|55891|55892|55893|55894|55895|55895|55896|55898|55898|55899|55900|55901|55901|55903|55904|55904|55905|55906|55906|55907|55907|55908|55908|55910|55910|55911|55912|55912|55915|55917|55918|55919|55920|55921|55923|55923|55924|55924|55926|55927|55927|55928|55928|55929|55929|55931|55933|55933|55934|55935|55935|55936|55936|55938|55939|55940|55940|55941|55942|55943|55943|55944|55944|55945|55945|55946|55947|55949|55950|55950|55951|55952|55952|55953|55954|55956|55957|55957|55958|55958|55960|55960|55961|55962|55964|55965|55968|55970|55971|55971|55973|55973|55975|55977|55977|55979|55979|55981|55982|55982|55983|55984|55984|55985|55985|55987|55988|55989|55990|55991|55991|55992|55993|55994|55995|55995|55996|55996|55997|55998|55998|55999|55999|56000|56001|56002|56002|56004|56004|56006|56006|56009|56009|56011|56013|56013|56014|56015|56016|56016|56017|56018|56018|56019|56020|56022|56022|56023|56023|56024|56025|56026|56027|56028|56028|56029|56029|56030|56031|56032|56032|56033|56033|56034|56035|56036|56036|56038|56038|56039|56039|56040|56040|56041|56041|56042|56043|56043|56045|56045|56046|56047|56047|56048|56048|56049|56049|56050|56050|56051|56052|56052|56053|56053|56054|56055|56055|56056|56057|56058|56059|56060|56060|56061|56062|56064|56065|56066|56067|56068|56069|56069|56071|56072|56073|56074|56074|56075|56076|56076|56077|56078|56079|56079|56080|56080|56081|56082|56082|56083|56084|56085|56087|56087|56088|56088|56089|56092|56093|56093|56094|56094|56095|56095|56096|56096|56097|56100|56100|56101|56101|56103|56103|56105|56105|56107|56108|56108|56111|56111|56113|56113|56114|56114|56115|56115|56116|56116|56117|56117|56118|56118|56119|56119|56120|56120|56121|56124|56125|56127|56128|56129|56130|56130|56132|56133|56133|56134|56134|56135|56135|56136|56136|56137|56137|56138|56139|56142|56143|56143|56145|56145|56146|56147|56147|56148|56148|56150|56151|56152|56152|56153|56153|56154|56155|56155|56156|56156|56158|56158|56160|56163|56164|56164|56165|56165|56166|56167|56170|56171|56171|56172|56172|56173|56173|56174|56174|56175|56175|56176|56176|56178|56178|56179|56179|56180|56180|56181|56181|56183|56183|56185|56187|56187|56189|56189|56190|56190|56191|56191|56193|56193|56195|56195|56196|56196|56197|56197|56199|56199|56200|56200|56201|56201|56202|56202|56203|56204|56205|56205|56207|56207|56208|56209|56209|56210|56211|56211|56214|56214|56215|56215|56216|56218|56218|56219|56221|56221|56222|56222|56224|56224|56225|56227|56228|56230|56230|56231|56231|56233|56233|56234|56235|56235|56237|56237|56239|56239|56240|56240|56241|56243|56243|56245|56246|56248|56248|56249|56251|56251|56253|56255|56256|56258|56258|56261|56262|56262|56263|56264|56264|56265|56265|56266|56268|56270|56270|56271|56271|56273|56275|56276|56276|56277|56278|56281|56281|56282|56283|56285|56286|56288|56289|56291|56291|56292|56292|56293|56295|56297|56298|56298|56300|56300|56301|56302|56302|56303|56305|56307|56307|56308|56309|56311|56312|56312|56313|56314|56315|56315|56316|56316|56317|56320|56320|56321|56321|56322|56322|56323|56323|56324|56324|56325|56326|56327|56328|56328|56330|56330|56331|56331|56333|56333|56335|56337|56338|56339|56340|56342|56342|56343|56343|56344|56345|56345|56346|56347|56347|56349|56349|56350|56350|56352|56352|56353|56353|56354|56356|56356|56359|56359|56360|56362|56362|56364|56364|56365|56365|56366|56366|56367|56367|56368|56369|56370|56370|56371|56372|56373|56373|56374|56375|56375|56377|56378|56378|56381|56381|56383|56383|56386|56387|56387|56388|56388|56389|56389|56390|56390|56392|56393|56393|56394|56394|56395|56395|56396|56396|56397|56398|56399|56400|56401|56401|56403|56405|56405|56406|56408|56408|56409|56410|56412|56413|56413|56414|56415|56417|56418|56418|56420|56420|56421|56421|56423|56425|56425|56426|56428|56430|56430|56433|56433|56436|56436|56437|56439|56439|56440|56440|56441|56441|56442|56442|56443|56444|56446|56447|56448|56451|56451|56453|56454|56454|56455|56455|56456|56457|56457|56458|56459|56459|56460|56460|56462|56462|56463|56463|56464|56464|56466|56467|56467|56468|56469|56469|56470|56471|56471|56472|56472|56473|56473|56474|56474|56476|56477|56477|56478|56479|56480|56481|56481|56482|56482|56483|56483|56485|56485|56486|56487|56487|56489|56492|56493|56494|56495|56495|56496|56496|56497|56497|56498|56498|56499|56499|56500|56500|56503|56503|56504|56506|56507|56508|56508|56510|56512|56512|56513|56513|56514|56514|56515|56515|56516|56516|56518|56518|56520|56520|56521|56521|56522|56524|56524|56526|56526|56527|56528|56529|56530|56530|56532|56533|56533|56535|56535|56537|56537|56538|56538|56539|56539|56540|56540|56541|56542|56543|56544|56544|56545|56545|56547|56548|56549|56549|56551|56552|56555|56555|56556|56557|56557|56558|56558|56559|56559|56560|56560|56561|56563|56564|56564|56566|56567|56567|56568|56569|56570|56570|56572|56572|56573|56574|56575|56575|56576|56576|56577|56577|56578|56578|56579|56579|56580|56580|56581|56582|56582|56583|56583|56584|56584|56585|56586|56586|56587|56588|56589|56590|56592|56592|56593|56594|56594|56595|56595|56596|56596|56597|56597|56599|56600|56600|56601|56604|56604|56605|56606|56606|56607|56608|56608|56610|56610|56611|56614|56615|56616|56616|56618|56619|56619|56620|56620|56621|56621|56622|56624|56624|56625|56625|56626|56627|56628|56628|56629|56629|56631|56631|56633|56633|56634|56634|56636|56637|56637|56638|56639|56640|56641|56641|56642|56643|56643|56644|56645|56645|56646|56647|56647|56648|56648|56649|56649|56652|56652|56653|56653|56654|56655|56657|56658|56658|56659|56661|56661|56663|56665|56665|56667|56667|56668|56669|56671|56671|56672|56672|56674|56675|56675|56676|56676|56677|56677|56678|56678|56679|56679|56680|56680|56681|56682|56682|56683|56684|56684|56685|56685|56686|56686|56687|56687|56688|56689|56689|56691|56692|56693|56693|56694|56695|56696|56696|56700|56700|56701|56701|56703|56703|56704|56705|56705|56706|56708|56708|56709|56709|56710|56710|56711|56711|56712|56712|56714|56714|56715|56716|56716|56717|56717|56718|56718|56719|56719|56722|56722|56723|56723|56724|56725|56725|56726|56727|56728|56729|56730|56731|56731|56732|56732|56733|56735|56736|56736|56737|56737|56738|56738|56741|56742|56742|56743|56743|56746|56746|56749|56750|56751|56751|56752|56752|56753|56753|56754|56755|56755|56758|56759|56759|56760|56760|56762|56762|56763|56764|56764|56765|56766|56766|56767|56767|56768|56768|56769|56769|56771|56772|56773|56773|56774|56775|56775|56776|56777|56777|56778|56780|56781|56784|56785|56785|56786|56786|56787|56787|56788|56788|56789|56789|56790|56792|56792|56793|56793|56794|56794|56796|56797|56797|56798|56798|56800|56800|56802|56802|56803|56803|56804|56804|56805|56805|56806|56806|56807|56807|56808|56809|56809|56810|56810|56811|56811|56812|56813|56814|56815|56816|56816|56817|56818|56819|56819|56820|56822|56822|56823|56823|56824|56825|56826|56826|56827|56828|56829|56829|56831|56831|56832|56833|56833|56834|56834|56837|56838|56838|56839|56839|56841|56841|56842|56843|56845|56847|56847|56848|56848|56849|56849|56850|56851|56851|56852|56853|56854|56855|56855|56856|56857|56857|56858|56858|56863|56863|56864|56864|56865|56866|56867|56868|56870|56870|56871|56872|56872|56873|56873|56874|56874|56875|56875|56876|56876|56877|56878|56878|56879|56880|56880|56881|56881|56882|56882|56884|56884|56886|56886|56887|56887|56906|56937|56970|56973|56975|56976|56978|56980|56981|56982|56983|56985|56986|56987|56989|56990|56991|56993|56995|56996|56998|56999|57001|57003|57005|57007|57008|57009|57010|57011|57012|57013|57014|71025|85139|85174|85176|85183|85203|102161|102164|102168|102169|102169|102170|102170|102171|102172|102172|102173|102176|102178|102179|102180|102182|102183|102183|102185|102185|102187|102188|102188|102190|102190|102192|102192|102193|102193|102194|102194|102195|102195|102196|102197|102200|102200|102201|102202|102203|102203|102206|102206|102207|102207|102208|102208|102209|102210|102210|102211|102212|102212|102214|102214|102215|102215|102217|102218|102218|102219|102220|102221|102221|136108|136109|136109|136110|136111|136112|136113|136114|136115|136116|136116|136117|136119|136120|136121|136121|136124|136125|136126|136126|136127|136128|136128|136129|136129|136130|136133|136134|136134|136135|136136|136355|136358|136359|141478|141478|141479|141479|141482|141489|141490|141490|141492|141492|141493|141493|141494|141500|141501|141501|141502|141502|141504|141509|141509|141510|141510|141511|141512|141513|141515|141515|141516|141517|141520|141520|141521|141522|141523|141523|141524|141524|141526|141530|141532|141533|141534|141534|141536|141537|141539|141542|141542|141543|141544|141544|141545|141546|141547|141549|165598|165601|165601|165602|172606|172606|172609|172609|172610|172611|172615|172615|172617|172618|172621|172621|172622|172624|172626|172627|172628|172629|172630|172632|172635|172637|172638|172642|172644|172647|172647|172648|172651|172652|172652|172653|172656|172657|172657|172658|172661|172662|172663|172664|172665|172665|172666|172668|172668|172671|172672|172675|172677|172677|172679|172681|172682|172683|172683|172684|172686|172689|172691|172691|172693|172694|172697|172697|172698|172698|172699|172699|172700|172701|172702|172704|172705|172708|172710|172715|172717|172717|172726|172727|172728|172729|172729|172731|172732|172734|172734|172737|172738|172738|172800|172800|172804|172805|172807|172808|172808|172813|172813|172816|172816|172818|172820|172820|172823|172823|172824|172825|172827|172829|172829|172830|172833|172833|172834|172835|172838|172838|172840|172841|172841|172849|172849|172850|172850|172852|172852|172853|172854|172854|172856|172859|172860|172862|172863|172868|172870|172872|172872|172877|172877|172878|172878|172879|172879|172942|172943|172944|172945|172945|172946|172948|172950|172951|172954|172955|172958|172962|172963|172964|172964|172967|172971|172971|172972|172973|172973|172975|172976|172979|172981|172981|172982|172982|172983|172984|172989|172990|172991|172992|172994|172995|172997|172997|172998|172998|172999|172999|173002|173003|173003|173005|173006|173008|173008|173009|173009|173011|173013|173015|173015|173022|173025|173026|173027|173028|173031|173031|173032|173035|173035|173036|173037|173040|173041|173043|173043|173044|173044|173045|173046|173047|173047|173048|173049|173049|173051|173053|173056|173059|173061|173061|173062|173068|173069|173072|173073|173073|173074|173074|173075|173079|173080|173081|173083|173088|173089|173090|173090|173092|173093|173095|173096|173097|173098|173099|173102|173102|173104|173104|173105|173107|173107|173108|173112|173114|173114|173115|173118|173121|173121|173126|173127|173132|173135|173136|173136|173137|173137|173141|173143|173144|173144|173147|173147|173149|173150|173152|173152|173156|173157|173158|173158|173159|173160|173161|173163|173163|173164|173165|173166|173166|173167|173167|173168|173169|173169|173172|173172|173173|173174|173175|173176|173176|173177|173178|173181|173182|173183|173186|173187|173189|173192|173192|173193|173193|173195|173197|173198|173199|173206|173207|173208|173212|173212|173213|173213|173218|173218|173219|173220|173221|173221|173225|173225|173227|173229|173229|173231|173234|173234|173235|173236|173240|173240|173243|173244|173245|173246|173246|173247|173247|173248|173248|173250|173252|173252|173254|173257|173258|173259|173262|173263|173264|173266|173300|173301|173301|173303|173304|173307|173308|173310|173311|173311|173312|173313|173314|173316|173316|173320|173321|173321|173322|173328|173328|173329|173329|173333|173334|173335|173342|173342|173344|173344|173346|173348|173349|173350|173351|173351|173353|173354|173354|173355|173356|173356|173357|173357|173358|173359|173359|173360|173361|173361|173363|173364|173364|173368|173372|173373|173374|173375|173376|173378|173381|173381|173383|173394|173394|173395|173396|173399|173400|173439|173441|173443|173443|173444|173445|173448|173448|173452|173452|173453|173453|173457|173460|173462|173463|173463|173464|173467|173467|173469|173472|173474|173475|173478|173478|173481|173482|173483|173483|173485|173486|173486|173581|173582|173583|173585|173586|173593|173593|173594|173597|173598|173599|173599|173600|173600|173603|173604|173612|173618|173618|173620|173623|173624|173624|173626|173626|173627|173628|173720|173723|173724|173726|173727|173728|173728|173728|173730|173734|173861|173862|173863|173864|173864|173867|173867|173868|173869|173871|176940|176941|176945|177073|177075|177206|177334|177335|177338|178108|178109|178112|178113|178114|178115|178117|178119|178120|178121|178122|178124|178128|178129|178130|178132|178135|178472|178478|178479|178482|178484|178485|178486|178486|178490|188930|188939|188939|188946|189405|189407|189407|189409|189409|189411|189415|189415|189416|189422|189423|189423|189428|189430|189432|189435|189435|189436|189437|189437|189444|189445|189446|189446|189447|189449|189451|189451|189454|189454|189459|189459|189464|189464|189467|189467|189469|189469|189476|189476|189477|189478|189481|189483|189483|189486|189486|189489|189489|189490|189491|189491|189492|189493|189493|189494|189497|189498|189498|189499|189499|189503|189503|189507|189507|189512|189514|189514|189516|189518|189522|189523|189524|189524|189527|189531|189535|189535|189536|189539|189539|189541|189541|189543|189544|189548|189553|189553|189554|189556|189560|189566|189566|189569|189573|189573|189578|189578|189580|189582|189582|189584|189585|189586|189587|189588|189588|189589|189590|189591|189591|189592|189594|189594|189597|189599|189599|189600|189601|189603|189604|189605|189610|189616|189619|189619|189627|189628|189629|189629|189630|189630|189635|189636|189639|189640|189641|189642|189643|189647|189648|189649|189650|189652|189655|189655|189661|189661|189663|189665|189666|189667|189671|189673|189673|189674|189681|189686|189686|189687|189687|189691|189692|189699|189701|189702|189732|189733|189734|189738|189741|189743|189744|189745|189746|189746|189748|189753|189755|189756|189756|189758|189760|189760|189761|189763|189764|189764|189765|189766|189769|189769|189770|189770|190932|190941|191125|191126|191309|191461|191464|191743|191842|192072|192168|192707|192712|192712|192797|192797|192800|192868|192869|192870|192871|192874|192875|192877|192952|192952|192957|192957|193001|193003|193004|193004|193005|193006|193078|193079|193080|193081|193082|193082|193084|193084|193086|193154|193163|193165|193166|193217|193217|193219|193221|193221|193226|193226|193227|193228|193229|193229|193231|193231|193233|193237|193237|193238|193241|193243|193249|193252|193255|193257|193305|193310|193311|193312|193313|193316|193317|193355|193356|193357|193357|193734|193802|193804|193804|193805|193807|193814|193816|193818|193884|193886|193962|193962|194739|194739|195077|195102|195117|195117|195118|195118|195137|195137|195518|195525|195775|195775|196105|196120|196130|196340|196340|196400|196400|196408|198682|198686|198688|198692|198697|198698|198699|198700|198701|198702|198703|198703|198704|198705|198710|198716|198718|198721|198723|198729|198730|198731|198733|198733|198736|198737|198738|198739|198743|198744|198744|198745|198746|198753|198753|198754|198754|198758|198760|198761|198767|198768|198769|198772|198772|198777|198780|198781|198788|198790|198790|198791|198793|198794|198796|198797|198799|198802|198804|198805|198806|198806|198811|198813|198817|198817|198819|198819|198820|198822|198825|198826|198827|198828|198832|198832|198833|198835|198838|198839|198839|198841|198845|198849|198850|198852|198852|198854|198856|198857|198858|198867|198869|198870|198875|198876|198878|198881|198881|198881|198886|198888|198888|198894|198895|198900|198900|198902|198903|198907|198908|198909|198909|198911|198912|198912|198915|198917|198918|198920|198924|198929|198931|198937|198940|198941|198944|198947|198952|198954|198957|198966|198966|198969|198969|198970|198973|198976|198978|198979|198988|198988|198995|198997|198998|198999|199000|199011|199013|199015|199016|199019|199022|199024|199025|199027|199028|199029|199029|199031|199035|199036|199040|199041|199042|199043|199050|199054|199064|199066|199070|199071|199072|199082|199085|199086|199090|199094|199096|199098|199104|199106|199107|199108|199110|199110|199111|199112|199112|199114|199114|199116|199118|199120|199126|199127|199130|199131|199133|199139|199139|199141|199143|199146|199147|199148|199149|199149|199150|199156|199157|199157|199165|199166|199167|199172|199174|199174|199180|199184|199191|199191|199192|199192|199193|199200|199201|199203|199204|199205|199208|199212|199212|199214|199216|199221|199222|199223|199224|199225|199228|199229|199229|199233|199233|199237|199237|199238|199242|199243|199245|199249|199249|199251|199253|199254|199261|199264|199264|199265|199265|199266|199266|199269|199270|199271|199272|199274|199276|199277|199285|199287|199289|199292|199296|199297|199298|199299|199302|199302|199304|199306|199310|199310|199313|199321|199322|199322|199325|199327|199329|199332|199334|199334|199336|199340|199342|199344|199346|199352|199353|199361|199361|199365|199366|199372|199373|199374|199376|199380|199384|199385|199387|199391|199393|199398|199401|199402|199403|199405|199407|199409|199409|199410|199416|199418|199426|199430|199432|199432|199437|199438|199439|199441|199441|199444|199449|199449|199452|199454|199455|199458|199459|199461|199462|199467|199468|199470|199474|199474|199477|199479|199483|199485|199486|199490|199490|199492|199492|199495|199499|199501|199501|199505|199512|199512|199513|199513|199524|199526|199526|199530|199531|199532|199533|199535|199537|199539|199543|199544|199545|199555|199556|199556|199557|199559|199561|199562|199563|199563|199576|199577|199578|199578|199579|199580|199580|199583|199585|199586|199588|199593|199594|199595|199598|199601|199605|199608|199611|199671|199673|199674|199697|199698|199701|199707|199707|199712|199712|199714|199715|199716|199719|199720|199722|199723|199724|199728|199736|199738|199740|199749|199751|199753|199753|199754|199756|199759|199759|199761|199764|199764|199765|199771|199773|199774|199776|199777|205135|205422|206910|206911|206917|206918|206919|206920|206921|206922|206929|206930|213528|215231|215231|221119|221120|221121|221122|221123|221124|221125|221126|221127|221128|221129|221130|221131|221132|221133|224228|224235|224240|224982|224987|224991|224992|224998|225000|225005|225009|225016|225018|225027|225034|225039|225040|225045|225046|225055|225057|225060|225074|225076|225077|225078|225079|225081|225082|225089|225090|225093|225094|225100|225106|225108|225114|225115|225119|226447|226447|226448|226454|226455|226455|226892|227229|228549|228550|228552|228556|228558|228560|228564|228568|228569|228573|228577|228579|228580|228580|228584|228584|228588|228589|228593|228594|228594|228595|228595|228600|228609|228619|228622|228624|228631|228637|228638|228640|228640|228642|228644|228645|228646|228648|228651|228654|228656|228656|228660|228660|228661|228662|228662|228666|228668|228675|228676|228677|228677|228678|228679|228680|228681|228687|228690|228690|228692|228695|228695|228699|228699|228700|228710|228711|228714|228716|228718|228719|228723|228725|228725|228729|228729|228730|228733|228734|228739|228740|228741|228742|228742|228744|228745|228746|228747|228749|228751|228752|228754|228754|228757|228761|228762|228762|228764|228771|228772|228775|228779|228784|228786|228786|228787|228789|228789|228792|228794|228797|228801|228806|228811|228812|228814|228816|228821|228822|228827|228829|228830|228832|228833|228838|228839|228842|228845|228847|228875|228876|228877|228880|228881|228885|228887|228892|228895|228900|228901|228904|228905|228907|238389|238389|238390|238391|238392|238393|238393|238394|238395|238396|238397|238399|238400|238401|238403|238404|238407|238408|238409|238410|238411|238412|238413|238414|238415|238417|238418|238419|238420|238420|238421|238422|238422|238423|238424|238425|238427|238428|238429|238430|238432|238434|238435|238436|238437|238438|238441|238441|238442|238443|238444|238445|238446|238447|238448|238449|238450|238451|238452|238454|238455|238456|238457|238459|238461|238462|238464|238464|238465|238466|238467|238468|238470|238471|238472|238473|238474|238475|238476|238477|238478|238479|238479|238480|238481|238482|238483|238484|238485|238486|238487|238488|238489|238490|238491|238492|238493|238494|238495|238496|238497|238498|238499|238500|238501|238502|238503|238504|238505|238506|238507|238508|238509|238510|238511|238512|238513|238514|238515|238516|238517|238518|238519|238520|238521|238522|238524|238524|238525|238526|238527|238528|238529|238530|238531|238532|238533|238534|238535|238536|238537|238538|238539|238540|238541|238542|238543|238544|238545|238547|238547|238548|238550|238551|238552|238553|238554|238555|238556|238557|238558|238559|238559|238560|238560|238562|238563|238564|238566|238567|238568|238569|238570|238571|238572|238573|238575|238576|238577|250411|250413|250415|250416|250417|250420|250420|250426|250427|250429|250430|250430|257987|257990|257995|258006|258008|258009|258010|258011|258018|258019|258027|258032|258034|258036|258039|258040|258042|258044|258049|258054|258054|258056|258057|258060|258060|258061|258064|258068|258072|258075|258076|258080|258080|258082|258083|258084|258085|258089|258090|258091|258095|258096|258097|258099|258101|258101|258102|258105|258106|258111|258111|258114|258115|258121|258122|258122|258123|258124|258125|258128|258130|258130|258131|258132|258137|258137|258145|258146|258148|258150|258155|258156|258157|258157|258158|258159|258161|258163|258165|258165|258169|258175|258176|258182|258183|258185|258191|265399|265464|265497|265553|265624|265904|265936|266024|266024|266065|266075|266078|266084|266095|266186|266188|266197|266209|266230|266241|266245|266249|266256|266256|266333|266336|266373|266397|266411|266412|266423|266542|266653|266653|266666|266666|266671|266679|266725|266737|266744|266754|266755|266757|266764|266782|266857|266857|266868|266875|266890|266892|266892|266893|266894|266899|266899|266904|267023|267023|267070|267084|267089|267093|267093|267112|267127|267127|267265|267341|267343|267409|267490|267534|267543|267557|267629|267639|267673|267674|267687|267687|267715|267717|267725|267725|267729|267860|267868|267872|267897|267901|267925|267951|267951|267961|267961|268111|268171|268216|268223|268239|268239|268326|268329|268329|268334|268335|268337|268487|268531|268531|268680|268703|268730|268795|268795|268915|268915|269034|269201|269229|269343|269544|269646|269669|269864|270161|270205|270836|271155|271221|271221|271689|271856|271856|271898|271933|271996|272032|272181|272182|272192|272661|272756|272756|272908|272997|272999|273034|273051|273235|273337|273378|273378|273700|273712|273760|273761|273815|274173|274309|274528|274548|274588|274603|274693|274705|274706|274707|274709|274711|274714|274943|274944|274948|274951|274951|274956|274957|275123|283197|283198|283200|283201|283204|283211|283212|283220|283221|283221|283222|283223|283225|283225|283228|283229|283232|283232|283233|283233|283235|283236|283240|283244|283244|283249|283250|283252|283252|283253|283255|283256|283262|283263|283269|283270|283271|283274|283275|283277|283277|283278|283294|283304|283309|283320|283321|283327|283328|283329|283332|283332|283341|283343|283344|283344|283346|283348|283349|283358|283361|283361|283371|283371|283374|283375|283375|283376|283378|283378|283379|283381|283389|283389|283390|283394|283395|283401|283404|283404|283405|283405|283408|283411|283411|283417|283418|283420|283424|283425|283430|283432|283435|283439|283905|283908|283910|283911|283912|283912|283914|283915|283923|283923|283924|283930|283931|283931|283933|283935|283936|283941|283942|283942|283947|283947|283956|283956|283959|283961|283966|283966|283969|283975|283976|283976|283990|283990|283991|283994|283994|283995|283996|283996|283997|283998|283999|284002|284006|284012|284020|284020|284021|284023|284024|284027|284036|284036|284044|284045|284046|284048|284051|284052|284052|284053|284055|284056|284061|284062|284062|284064|284065|284067|284068|284069|284075|284075|284076|284082|284090|284091|284105|284106|284107|284109|284110|284110|284111|284114|284114|285677|285678|285679|285683|285689|285691|285692|285692|285693|285702|285704|285705|285706|285708|285715|285729|285729|285735|285737|285739|285740|285747|285752|285767|285767|285769|285770|285773|285774|285774|285776|285790|285793|285794|285814|285818|285818|285825|285825|285830|285830|285831|285834|285840|285840|285841|285843|285844|285851|285853|285855|285856|285859|285860|285861|285861|285878|285888|285888|285889|285892|285911|285912|285920|285920|285923|285923|285924|285926|285926|285938|285963|285963|285976|285977|285981|285981|285986|285987|285988|285990|285991|285993|285998|285998|286000|286001|286008|286009|286009|286010|286011|286014|286014|286015|286016|286016|286073|286074|286082|286085|286086|286091|286093|286093|286099|286100|286100|286101|286105|286106|286108|286110|286111|286111|286112|286115|286131|286131|286132|286136|286136|286138|286141|286145|286146|286150|286151|286152|286157|286158|286167|286175|286178|286183|286184|286186|286186|286187|286187|286191|286191|286195|286196|286197|286197|286201|286202|286205|286207|286208|286209|286209|286210|286239|286240|286240|286244|286259|286259|286263|286264|286264|286266|286267|286275|286287|286287|286290|286294|286294|286295|286304|286305|286311|286316|286316|286317|286318|286323|286323|286324|286325|286341|286341|286342|286361|286376|286386|286386|286387|286408|359329|359386|360828|360828|365709|365711|365714|365723|365724|365734|365739|365753|365761|365843|365844|365857|365861|365862|365868|365874|365883|365897|365913|365933|365942|365963|365968|365975|365980|365990|365993|365995|365998|366003|366005|366006|366024|366029|366038|366039|366043|366047|366053|366057|366059|366059|366060|366065|366069|366071|366077|366079|366081|366082|366087|366097|366101|366102|366102|366108|366108|366109|366113|366125|366125|366132|366134|366144|366159|366185|366199|366230|366231|366260|366263|366309|366348|366394|366421|366433|366433|366438|366440|366453|366486|366488|366490|366505|366548|366550|366564|366573|366586|366591|366598|366672|366690|366703|391464|391471|391475|391480|391481|391485|391489|391492|391494|391497|391504|391509|391510|391512|391515|391519|391520|391521|391523|391524|391526|391528|391533|391534|391535|391536|391537|391538|391538|391540|391541|391541|391543|391544|391551|391552|391552|391554|391558|391562|391563|391564|391569|391570|391572|391574|391576|391577|391580|391580|391584|391585|391588|391592|391593|391595|391597|391600|391603|391606|391607|391609|391610|391620|391620|391622|391624|391632|391634|391636|391637|391640|391642|391645|391646|391650|391651|391654|391659|391660|391662|391663|391664|391666|391667|391668|391669|391670|391671|391672|391673|391674|391675|391676|391677|391678|391679|391680|391681|391682|391683|391684|391685|391686|391687|391688|391689|391690|391690|391691|391692|391693|391694|391695|391696|391697|391698|391699|391700|391701|391703|391704|391705|391706|391707|391708|391709|391710|391711|391712|391713|391714|391715|391716|391717|391718|391719|391720|391721|391722|391723|391724|391724|391725|391726|391727|391728|391730|391733|391734|391734|391735|391736|391737|391739|391740|391741|391742|391743|391744|391746|391747|391748|391749|391750|391751|391752|391753|391754|391755|391756|391758|391759|391760|391762|391763|391764|391765|391766|391768|391769|391770|391771|391772|391774|391775|391776|391778|391779|391780|391781|391782|391783|391784|391785|391786|391787|391788|391789|391790|391791|391793|391794|391795|391796|391797|391798|391799|391800|391800|391801|391802|391803|391804|391805|391806|391807|391808|391809|391810|391811|391812|391814|391815|391816|391817|391819|391820|391821|391822|391824|391825|391826|391827|391828|391829|391830|391831|391832|391834|391835|391836|391837|391839|391840|391842|391843|391844|391845|391848|391849|391850|391851|391853|391854|391855|391856|391857|391858|391859|391860|391861|391862|391865|391866|391867|391869|391870|391871|391872|391873|391874|391875|391876|391877|391878|391879|391880|391881|391882|391883|391883|391884|391885|391886|391887|391888|391890|391891|391892|391893|391894|391896|391897|391898|391899|391900|391901|391902|391903|391904|391905|391906|391907|391908|391909|391910|391910|391911|391912|391913|391914|391916|391919|391920|391921|391922|391923|391924|391925|391927|391929|391930|391931|391932|391933|391934|391935|391936|391938|391939|391940|391941|391942|391943|391944|391945|391946|391947|391949|391950|391951|391952|391953|391954|391955|391956|391957|391958|391959|391960|391962|391963|391964|391965|391966|391968|391970|391971|391972|391972|391973|391974|391975|391976|391977|391978|391980|391981|391982|391983|391983|391984|391985|391986|391987|391988|391989|391990|391991|391992|391993|391994|391994|391996|391997|391998|391999|392000|392001|392002|392003|392004|392005|392006|392009|392011|392012|392014|392015|392016|392018|392021|392022|392023|392024|392025|392026|392027|392028|392029|392030|392031|392032|392033|392034|392035|392036|392037|392038|392039|392040|392041|392042|392043|392044|392045|392046|392047|392048|392049|392051|392052|392053|392054|392055|392056|392057|392058|392059|392062|392064|392065|392066|392067|392068|392069|392069|392070|392071|392072|392073|392074|392075|392076|392077|392078|392079|392082|392083|392086|392087|392089|392090|392091|392092|392093|392094|392095|392096|392097|392098|392099|392100|392101|392102|392103|392105|392106|392107|392108|392110|392111|392112|392113|392114|392115|392116|392117|392118|392119|392120|392121|392122|392123|392124|392125|392126|392127|392128|392129|392130|392131|392132|392133|392134|392135|392136|392137|392138|392139|392140|392141|392142|392143|392144|392145|392146|392147|392148|392150|392151|392152|392153|392154|392155|392156|392157|392158|392160|392161|392162|392163|392164|392165|392166|392167|392168|392169|392170|392171|392173|392174|392175|392176|392177|392178|392178|392179|392180|392181|392182|392184|392186|392187|392188|392189|392190|392191|392192|392193|392194|392195|392196|392197|392198|392199|392200|392201|392201|392202|392203|392204|392205|392206|392207|392208|392209|392211|392213|392214|392215|392216|392217|392218|392220|392221|392222|392223|392223|392224|392225|392226|392227|392229|392230|392231|392232|392233|392234|392235|392236|392237|392238|392239|392240|392242|392243|392246|392247|392252|392253|392254|392255|392258|392259|392262|392263|392264|392265|392266|392268|392271|392273|392275|392277|392279|392281|392282|392285|392286|392287|392289|392290|392292|392293|392295|392297|392300|392302|392303|392304|392306|392310|392312|392313|392316|392317|392318|392320|392321|392322|392323|392325|392326|392327|392328|392336|392338|392340|392343|392344|392347|392349|392350|392355|392356|392358|392361|392370|392371|392373|392376|392378|392383|392384|392385|392390|392393|392397|392407|392413|392415|392420|392427|392430|392438|392447|392454|392454|405429|405437|405447|405449|405450|405451|405454|405458|405462|405469|405471|405473|405481|405483|405489|405495|421324|421326|421327|421333|421339|425442|425444|425445|425448|425450|425453|427942|427943|427946|427947|427953|427953|434002|434004|434005|434574|438182|439874|440571|440572|440575|440580|440586|440593|440598|440599|440603|440604|440605|440614|440616|440618|440625|440630|440637|440638|440641|440642|443070|443077|443080|443080|443084|443085|443087|443088|443096|448997|449001|449006|449007|449013|449014|449016|449017|449021|449023|449029|449031|449033|449035|449039|449041|449043|449045|449046|449047|449053|449060|449061|449062|449065|449069|449077|449081|449086|449090|449096|449098|449108|449116|449122|449126|449129|449132|449134|449136|449137|449142|449144|449147|449152|449155|449157|449167|449176|449177|449179|449182|449186|449188|449190|449192|449193|449194|449195|449200|449201|449202|449205|449206|449207|449208|449212|449213|449214|449215|449216|449217|449219|449220|449221|449224|449227|449229|449230|449232|449234|449236|449237|449238|449241|449242|449243|449245|449247|449249|449252|449255|449257|449258|449259|449263|449264|449266|449267|449270|449272|449273|449274|449275|449276|449277|449279|449280|449282|449284|449285|449287|449288|449289|449290|449291|449292|449293|449294|449295|449297|449300|449302|449303|449305|449306|449307|449308|449309|449310|449311|449312|449313|449314|449315|449316|449317|449318|449319|449320|449321|449322|449323|449324|449325|449326|449327|449328|449329|449330|449331|449332|449333|449335|449336|449337|449338|449339|449340|449341|449342|449343|449343|449344|449345|449346|449347|449348|449349|449350|449351|449352|449353|449354|449355|449356|449357|449358|449359|449360|449361|449362|449363|449364|449365|449366|449367|449368|449369|449370|449371|449372|449373|449374|449376|449377|449378|449379|449380|449381|449383|449384|449385|449386|449387|449388|449389|449390|449391|449392|449394|449395|449396|449397|449398|449400|449401|449402|449403|449404|449405|449406|449407|449408|449409|449411|449412|449413|449414|449415|449416|449417|449418|449419|449420|449421|449422|449423|449424|449425|449427|449428|449429|449430|449431|449432|449433|449434|449435|449436|449437|449438|449439|449440|449441|449442|449442|449443|449444|449445|449446|449448|449449|449450|449452|449453|449454|449455|449456|449457|449458|449459|449460|449461|449462|449463|449464|449465|449466|449466|449467|449468|449469|449470|449471|449472|449473|449474|449475|449476|449477|449479|449480|449481|449482|449483|449484|449485|449486|449487|449488|449489|449490|449491|449492|449493|449494|449495|449496|449497|449498|449499|449500|449501|449502|449502|449504|449505|449506|449507|449508|449509|449510|449511|449511|449512|449513|449514|449515|449516|449517|449518|449518|449519|449520|449522|449523|449524|449525|449526|449526|449527|449528|449529|449530|449531|449532|449533|449534|449535|449536|449537|449538|449538|449542|449543|449544|449545|449546|449547|449548|449549|449550|449551|449552|449553|449555|449557|449558|449559|449561|449562|449563|449564|449565|449566|449568|449569|449570|449571|449572|449573|449574|449575|449577|449578|449578|449579|449580|449580|449581|449582|449583|449584|449585|449586|449587|449589|449590|449591|449592|449593|449594|449595|449597|449598|449599|449600|449601|449602|449603|449604|449604|449605|449606|449607|449608|449609|449610|449611|449612|449613|449614|449615|449615|449617|449618|449619|449620|449621|449622|449623|449624|449625|449626|449627|449628|449629|449630|449631|449632|449633|449634|449635|449636|449637|449638|449639|449640|449641|449643|449644|449645|449647|449648|449649|449649|449650|449651|449652|449653|449654|449655|449656|449657|449658|449659|449660|449661|449662|449663|449664|449665|449666|449667|449668|449670|449671|449673|449674|449675|449676|449677|449678|449679|449680|449681|449682|449683|449684|449685|449686|449687|449688|449689|449690|449691|449692|449693|449694|449695|449696|449697|449698|449699|449700|449701|449702|449703|449704|449705|449706|449707|449708|449709|449710|449711|449712|449713|449714|449715|449716|449717|449718|449719|449720|449720|449721|449722|449723|449724|449725|449726|449727|449728|449729|449730|449731|449732|449733|449734|449735|449736|449737|449738|449739|449740|449740|449741|449742|449743|449745|449746|449747|449748|449749|449750|449751|449752|449753|449754|449755|449756|449757|449758|449759|449760|449761|449763|449764|449765|449766|449767|449768|449769|449770|449771|449772|449774|449775|449776|449777|449778|449779|449780|449781|449782|449783|449784|449785|449786|449787|449788|449789|449790|449791|449792|449793|449794|449795|449795|449796|449797|449798|449799|449800|449801|449802|449803|449804|449805|449806|449808|449809|449811|449812|449812|449813|449814|449815|449816|449817|449818|449818|449819|449819|449820|449820|449821|449822|449823|449824|449825|449826|449827|449828|449829|449830|449831|449832|449833|449834|449835|449836|449837|449838|449839|449840|449841|449842|449843|449844|449845|449846|449847|449849|449850|449851|449852|449853|449854|449855|449856|449857|449858|449859|449860|449861|449862|449863|449864|449865|449866|449867|449869|449870|449871|449872|449873|449874|449875|449876|449878|449879|449880|449881|449882|449883|449884|449885|449886|449887|449888|449889|449890|449891|449892|449893|449894|449895|449896|449897|449898|449898|449899|449900|449901|449902|449903|449904|449905|449906|449907|449908|449909|449910|449911|449912|449913|449914|449915|449916|449917|449918|449919|449920|449921|449922|449923|449924|449925|449926|449927|449928|449929|449930|449931|449932|449933|449934|449935|449936|449937|449938|449939|449940|449941|449942|449943|449944|449945|449946|449947|449948|449950|449951|449952|449953|449954|449955|449957|449958|449959|449959|449960|449961|449962|449963|449964|449965|449966|449967|449968|449969|449970|449971|449972|449973|449974|449975|449976|449977|449978|449979|449980|449981|449982|449983|449984|449985|449986|449987|449988|449989|449990|449991|449992|449993|449994|449995|449996|449997|449998|449999|450000|450001|450002|450003|450004|450005|450006|450007|450008|450009|450010|450011|450012|450013|450014|450015|450016|450017|450018|450019|450020|450021|450022|450023|450024|450025|450026|450027|450028|450028|450029|450030|450031|450032|450032|450033|450033|450034|450035|450036|450037|450038|450039|450040|450041|450042|450043|450044|450045|450046|450047|450047|450048|450049|450050|450051|450052|450053|450054|450055|450056|450057|450058|450058|450059|450059|450061|450062|450063|450064|450065|450066|450067|450068|450070|450071|450072|450073|450074|450075|450076|450077|450078|450079|450080|450081|450082|450083|450085|450086|450087|450088|450089|450090|450091|450092|450093|450094|450096|450097|450098|450100|450101|450102|450103|450104|450105|450107|450108|450109|450110|450111|450112|450115|450116|450118|450119|450120|450121|450123|450124|450125|450126|450127|450128|450129|450130|450131|450133|450134|450136|450139|450140|450141|450142|450144|450145|450146|450148|450149|450150|450152|450153|450153|450154|450155|450157|450161|450162|450163|450166|450168|450170|450171|450172|450175|450178|450181|450182|450183|450184|450186|450187|450190|450191|450192|450193|450194|450195|450197|450200|450201|450202|450204|450205|450207|450208|450210|450211|450212|450213|450214|450215|450216|450217|450218|450219|450221|450222|450223|450224|450226|450228|450230|450231|450232|450233|450234|450235|450236|450238|450239|450240|450241|450243|450244|450246|450247|450248|450250|450252|450253|450254|450256|450257|450258|450260|450261|450262|450265|450266|450268|450269|450270|450271|450272|450273|450274|450275|450278|450281|450282|450289|450304|450305|450307|450311|450318|450322|450323|450327|450328|450335|450343|450345|450346|450350|450351|450353|450357|450360|450385|450387|450389|450390|481118|481119|481120|481121|481230|481616|481618|481619|481625|481631|488370|488408|488415|488433|488434|488435|488441|488441|488446|488451|488511|488523|488530|488547|488549|488551|488554|488557|488575|488602|488612|488618|488619|488751|488757|488758|489017|489235|489248|489273|489487|489622|489631|490038|490049|490138|490145|490361|490421|490457|490511|490521|490525|490650|490731|490735|490736|490737|490965|491024|491049|491061|491065|491598|491824|491964|492034|492047|492125|492156|492157|492163|492351|492527|492528|492596|492617|492618|492627|492690|492729|492911|492912|492980|492987|493054|493055|493192|493195|493213|493236|493509|493629|493807|493985|494087|494151|495116|495378|496171|496193|496248|496635|496660|496673|496674|496678|496712|498922|498926|498928|498931|498942|498943|498948|498970|499001|499022|499065|499088|499092|499093|499096|499122|499129|499142|499158|499160|499183|499189|499210|499213|499215|499218|499219|499224|499229|499231|499235|499240|499252|499270|499276|499276|499281|499282|499291|499294|499299|499299|499301|499308|499315|499315|499319|499326|499329|499332|499340|499341|499347|499364|499366|499374|499385|499392|499397|499398|499399|499404|499419|499423|499442|499458|499488|499509|499513|499516|499527|499543|499562|499565|499572|499578|499598|499612|499629|499637|499648|499665|499666|499685|499697|499701|499709|499713|499722|499728|499735|499767|499793|509244|509253|509261|509270|509275|509281|509283|509289|509308|509311|509318|509350|509374|509397|509413|509416|509417|509424|509434|511064|511364|511367|513249|513249|516212|516216|516302|516700|516712|516715|516718|516720|516731|516734|516737|516740|516743|516744|516745|516750|516754|516756|516758|516759|516761|516764|516765|516767|516768|516770|516772|516773|516774|516775|516776|516777|516778|516779|516780|516781|516782|516783|516784|516785|516786|516787|516788|516789|516791|516792|516793|516794|516795|516797|516798|516799|516799|516801|516802|516803|516805|516806|516809|516810|516811|516812|516814|516816|516817|516818|516819|516822|516823|516825|516826|516827|516828|516829|516830|516831|516832|516833|516834|516835|516836|516837|516839|516840|516842|516843|516844|516845|516846|516848|516849|516850|516853|516854|516855|516856|516857|516858|516859|516860|516861|516862|516863|516864|516865|516866|516867|516868|516869|516871|516872|516873|516874|516875|516876|516877|516879|516880|516881|516883|516885|516886|516887|516888|516889|516890|516891|516892|516893|516894|516895|516896|516897|516898|516899|516900|516901|516902|516903|516904|516905|516906|516907|516908|516909|516910|516911|516912|516913|516914|516915|516916|516917|516918|516919|516920|516921|516922|516923|516924|516925|516926|516927|516928|516929|516930|516931|516932|516933|516934|516935|516936|516937|516938|516939|516940|516941|516942|516943|516944|516945|516946|516947|516947|516948|516949|516950|516951|516952|516953|516954|516954|516955|516956|516957|516958|516959|516960|516961|516962|516963|516964|516965|516966|516967|516968|516969|516970|516971|516972|516973|516974|516975|516976|516976|516977|516978|516979|516980|516981|516982|516983|516984|516985|516986|516987|516988|516989|516990|516991|516992|516993|516994|516995|516996|516997|516998|516999|517000|517001|517002|517003|517004|517004|517005|517006|517007|517008|517009|517010|517011|517012|517013|517014|517015|517016|517017|517018|517019|517020|517021|517021|517022|517023|517024|517025|517026|517027|517028|517029|517030|517031|517032|517034|517035|517036|517037|517038|517039|517040|517041|517042|517043|517044|517045|517046|517047|517048|517049|517050|517051|517052|517053|517054|517055|517055|517056|517057|517058|517059|517060|517061|517062|517063|517064|517065|517066|517067|517068|517069|517070|517071|517072|517073|517074|517075|517076|517077|517078|517079|517080|517081|517082|517083|517084|517085|517086|517087|517088|517089|517090|517091|517092|517093|517094|517095|517096|517097|517098|517099|517100|517101|517102|517103|517104|517105|517106|517107|517108|517109|517110|517111|517112|517113|517114|517115|517117|517118|517119|517120|517121|517122|517123|517124|517125|517126|517127|517128|517129|517130|517131|517132|517133|517134|517135|517136|517137|517138|517139|517140|517141|517142|517143|517144|517144|517145|517146|517147|517148|517149|517150|517151|517152|517153|517154|517155|517156|517157|517158|517159|517160|517161|517162|517163|517164|517165|517166|517167|517168|517169|517170|517171|517172|517173|517174|517175|517176|517177|517178|517179|517180|517181|517182|517183|517184|517185|517186|517187|517188|517189|517190|517191|517192|517193|517194|517196|517197|517198|517199|517200|517201|517202|517203|517204|517205|517206|517207|517208|517209|517210|517211|517212|517213|517214|517215|517216|517217|517218|517219|517220|517221|517222|517223|517224|517225|517226|517227|517228|517229|517230|517231|517232|517233|517234|517235|517237|517238|517239|517240|517241|517242|517243|517244|517245|517246|517247|517248|517249|517250|517251|517252|517253|517254|517255|517258|517259|517260|517261|517262|517263|517264|517265|517266|517267|517268|517270|517271|517272|517273|517274|517275|517276|517277|517278|517280|517281|517283|517284|517285|517286|517287|517288|517290|517290|517291|517292|517293|517294|517295|517296|517297|517298|517299|517300|517300|517301|517302|517303|517304|517305|517306|517306|517307|517308|517309|517310|517311|517312|517313|517314|517315|517316|517317|517318|517320|517321|517322|517323|517324|517325|517326|517327|517328|517329|517330|517331|517332|517333|517334|517335|517336|517337|517338|517339|517340|517341|517341|517342|517343|517344|517345|517346|517347|517348|517349|517350|517351|517352|517353|517354|517355|517356|517357|517358|517359|517360|517361|517362|517363|517364|517365|517366|517367|517368|517369|517370|517371|517372|517373|517374|517375|517376|517377|517378|517379|517380|517381|517382|517383|517384|517386|517387|517388|517389|517390|517391|517392|517393|517394|517395|517396|517397|517398|517399|517401|517403|517404|517405|517406|517407|517409|517411|517412|517413|517414|517415|517416|517417|517418|517420|517421|517422|517423|517424|517426|517427|517429|517430|517432|517433|517434|517435|517436|517437|517438|517440|517442|517443|517444|517445|517446|517448|517449|517451|517452|517453|517454|517455|517456|517457|517458|517459|517460|517460|517461|517462|517463|517464|517465|517466|517468|517469|517470|517471|517472|517474|517476|517477|517478|517479|517480|517483|517484|517485|517487|517488|517489|517490|517491|517492|517493|517494|517495|517498|517499|517501|517503|517505|517510|517512|517513|517515|517517|517518|517519|517520|517521|517528|517529|517531|517532|517533|517534|517538|517540|517541|517543|517544|517547|517548|517550|517551|517554|517555|517557|517582|517586|517586|517588|517592|517594|517600|517605|517605|517609|517612|517614|517615|517616|517624|517627|517628|517634|517636|517637|517641|517643|517649|517651|517652|517654|517663|517667|517670|517671|517674|517678|517679|517683|517688|517689|517698|517699|517703|517708|538343|538955|538956|538957|539471|539471|557424|557426|557704|557706|557708|557710|557712|557714|557716|557718|557720|557722|557724|557726|557730|557731|557732|557733|557734|557735|557736|557737|557738|557739|557740|557741|557742|557743|557744|557745|557746|557747|557748|557749|557750|557751|557752|557753|557754|557755|557756|557757|557758|557759|557760|557761|557762|557763|557764|557765|557766|557767|557768|557769|557770|557771|557772|557773|557773|557774|557775|557777|557779|557781|557783|557785|557787|557789|557791|557793|557795|557797|557799|557801|557803|557805|557807|557809|557811|557813|557815|557817|557819|557821|557825|558072|558633|558635|558921|558923|558925|558927|558929|558931|558933|558935|558937|558939|558941|558943|558945|558947|558949|558951|558953|558955|558957|558959|558961|558963|558965|558967|558969|558971|558973|558975|558977|558979|558981|558983|558985|558987|558989|558991|558993|558995|558997|558999|559001|559003|559003|559005|559402|559404|559406|559408|559410|559412|559414|559416|559418|559420|559422|559424|559426|559428|559430|559430|559432|559434|559436|559438|559440|559442|559444|559446|559448|559450|559452|559454|559456|559458|559460|559464|559466|559468|559470|559472|559474|559476|559478|559480|576588|576600|576601|576602|576620|576621|576626|578394|578395|583788|584002|584088|584092|585032|585258|585477|585477|585482|585667|586532|586533|586782|586973|587073|587073|587132|587145|587668|588268|588608|588734|588929|589289|589484|608940|608942|608943|609450|609459|611549|611550|613499|614745|614783|614818|614848|622500|622865|624208|624212|624220|624221|629032|629033|629034|629035|629036|629037|629038|629039|629040|629041|629042|629043|629044|629045|629046|629047|629048|629049|629050|629051|629052|629053|629054|629055|629056|629057|629058|629059|629060|629061|629062|629063|629064|629065|629066|629067|629068|629069|629070|629071|629072|629073|629074|629075|629076|629077|629078|629079|629080|629081|629082|629083|629084|629085|629086|629087|629088|629089|629090|629091|629092|629093|629094|629095|629096|629097|629098|629099|629100|629101|629102|629103|629104|629105|629106|629107|629108|629109|629110|629111|629112|629113|629114|629115|629116|629117|629118|629119|629120|629121|629122|629123|629124|629125|629126|629127|629128|629129|629130|629131|629132|629133|629134|629135|629136|629137|629138|629139|629140|629141|629142|629143|629144|629145|629146|629146|629147|629148|629149|629150|629151|629152|629153|629154|629155|629156|629157|629158|629159|629160|629161|629162|629163|629164|629166|629167|629168|629169|629170|629171|629172|629173|629174|629175|629176|629177|650707|650724|650729|650866|650868|650870|650876|650877|650885|650892|650899|650900|650902|650903|650906|650911|650915|650923|650925|650927|653913|655182|655277|655296|655365|655380|655400|655401|672386|679387|679398|679556|683422|683423|683426|683429|683433|683434|683436|683437|683438|683440|683443|683444|683445|683446|683448|683450|683452|683453|683454|683455|683456|683458|685120|685122|685123|685124|685929|685931|685934|685934|685935|685936|685938|685940|685942|685944|685945|685946|685947|685949|685956|685958|685961|685964|685965|685966|685970|685971|685974|685978|685979|685979|685981|685984|685986|685987|685989|685990|685992|685993|685994|685996|685997|685998|685999|686000|686001|686002|686003|686004|686006|686008|686009|686009|686010|686011|686013|686015|686016|686018|686019|686020|686021|686023|686024|686025|686026|686027|686028|686029|686031|686032|686035|686036|686037|686041|686042|686043|686045|686046|686046|686047|686048|686049|686050|686053|686057|686058|686059|686061|686062|686063|686064|686067|686068|686071|686072|686073|686075|686076|686077|686079|686080|686081|686086|686087|689682|689683|689684|689685|689687|690906|690908|690911|690912|690913|690914|690915|690917|690918|690920|690921|690925|690934|690935|690940|690941|690942|690943|690944|690945|690946|690947|690948|690950|690951|690956|690957|690958|690959|690960|690961|690962|690964|690965|690968|690972|690973|690974|690977|690980|690981|690981|690982|690987|695103|695104|695108|695109|695110|695111|697179|697180|697181|697182|697184|697187|697189|697190|697192|707874|707876|707878|707879|707882|719440|719441|719445|719445|719449|730085|732973|732982|732985|732994|732996|732999|733002|733003|733005|733008|733009|743828|743833|743842|746981|746983|746985|746989|746991|746995|746999|747001|747004|747007|747010|747011|747024|747025|747029|747043|747057|747066|747072|747081|747087|758988|762443|762445|762446|762447|762451|762452|762454|762456|762460|762462|762464|762468|762472|762480|762481|762495|762496|762501|762504|762505|762508|762509|762521|762530|762538|762543|762550|762555|762557|762560|762561|762566|762567|762569|762577|762579|762582|762587|762588|762597|762599|762600|762601|762606|762608|762623|762628|762630|762636|762646|762647|762648|762649|762651|762657|762659|762660|762670|762677|762681|762684|762686|762687|762691|762699|762705|762706|774623|774638|774642|774655|774664|774668|777211|778939|780980|780981|780984|780986|780987|780990|780992|780998|780999|781006|781009|781011|781012|781014|781015|781019|781021|781022|781024|781025|781031|781032|781033|781034|781036|781040|781043|781046|781047|781049|781054|781055|781056|781057|781058|781060|781061|781067|781068|781069|781077|781079|781080|781082|781085|787088|787090|787130|789111|789362|794864|794943|795006|799267|802128|802129|802130|804987|804987|805058|805257|805269|805274|819083|819084|819085|819086|825269|825270|825271|825272|825273|825274|825275|825276|825277|825278|825279|825280|825281|825282|825283|825284|825285|825286|825287|825288|825289|825290|825291|825292|825293|825294|825295|825296|825297|825298|825299|825300|825301|825302|825303|825304|825305|825306|825307|825308|825309|825310|825311|825312|825313|825314|825315|825316|825317|825318|825319|825320|825321|825322|825323|825324|825325|825326|825327|825328|825329|825330|825331|825332|825333|825334|825335|825336|825337|825338|825339|825340|825341|825342|825343|825344|825345|825346|825347|825348|825349|825350|825351|825352|825353|825354|825355|825356|825357|825358|825359|825360|825361|825362|825363|825364|825365|825366|825367|825368|825369|825370|825371|825372|825373|825374|825375|825376|825377|825378|825379|825380|825381|825382|825383|825384|825385|825386|825387|825388|825389|825390|825391|825392|825393|825394|825395|825396|825397|825398|825399|825400|825401|825402|825403|825404|825405|825406|825407|825408|825409|825410|825411|825412|825413|825414|825415|825416|825417|825418|825419|825420|825421|825422|825423|825424|825425|825426|825427|825428|825429|825430|825431|825432|825433|825434|825435|825436|825437|825438|825439|825440|825441|825442|825443|850811|850813|850815|850817|850819|850856|850858|850860|851113|851119|851121|851128|851135|851137|851139|851364|851366|851369|851372|851374|851376|851378|858400|858402|858427|858431|858468|859062|859063|859071|881722|881723|881724|881725|881726|881727|881728|881729|881730|881730|881731|881732|881733|881734|881735|881736|881737|881738|881739|881740|881741|881742|881743|881744|881745|881746|881747|881748|881749|881750|881751|881752|881753|881754|881755|881756|881757|881758|881759|881760|881761|881762|881763|881764|881765|881766|881767|881768|881769|881770|881771|881772|881773|881774|881775|881776|881777|881778|881779|881780|881781|881782|881783|881784|881785|881786|881787|881788|881789|881790|881791|881792|881793|881794|881795|881796|881797|881798|881799|881800|881801|881802|881803|881804|881805|881806|881807|881808|881809|881810|881811|881812|881813|881814|881815|881816|881817|881818|881819|881820|881821|881822|881823|881824|881825|881826|881827|881828|881829|881830|881831|881832|881833|881834|881835|881836|881837|881838|881839|881840|881841|881842|881843|881844|881845|881846|881847|881848|881849|881850|881851|881852|881853|881854|881855|881856|881857|881858|881859|881860|881861|881862|881863|881864|881865|881866|881867|881868|881869|881870|881871|881872|881873|881874|881875|881876|881877|881878|881879|881880|881881|881882|881883|881884|881885|881886|881887|881888|881889|881890|881891|881892|881893|881894|881895|881896|881897|881898|881899|881900|881901|881902|881903|881904|881905|881906|881907|881908|881909|881910|881911|881912|881913|881914|881915|881916|881917|881918|881919|881920|881921|881922|881923|881924|882859|882860|882861|882862|882863|882864|882865|882866|882867|882868|882869|882870|882871|882872|882873|882874|882875|882876|882877|882878|882879|882987|882988|903751|922423|922424|922425|922426|922427|922428|922429|922430|922431|922432|922433|922434|922435|922436|922437|922438|922439|922440|922441|922442|922443|922444|922445|922446|922447|922448|922449|922450|922451|922452|922453|922454|922455|922456|922457|922458|922459|922460|922461|922462|922463|922464|922465|922466|922467|922468|922469|922470|922471|922472|922473|922474|922475|922476|922477|922478|922479|922480|922481|922482|922483|930995|930996|930997|930998|930999|931000|931001|931002|931003|931004|931005|931006|931007|931008|931009|931010|931011|931012|931013|931014|931015|931016|931017|931018|931019|931020|931021|931022|931023|931024|931025|931026|931027|931028|931029|931030|931031|931032|931033|931034|931035|931036|931037|931038|931039|931040|931041|931042|931043|931044|931045|931046|939855|939856|939857|939858|939859|939860|939861|939862|939863|939864|939865|939866|939867|939868|940667|940668|940669|940670|940671|940672|940673|940674|940675|940676|940677|942438|942439|942440|942441|942442|942443|942444|942445|942446|942447|942448|942449|942450|942451|942452|942453|942454|942455|942456|942457|942458|942459|942460|942461|942462|942463|942464|942465|942466|942467|942468|942469|942470|942471|942472|942473|942474|942475|942476|942477|942478|942479|942480|942481|942482|942483|942484|942485|942486|942487|942488|942489|942490|942491|942492|942493|942494|942495|942496|942497|942498|942499|942500|942501|942502|942503|942504|952801|952802|952803|952804|952805|952806|952807|952808|952809|952810|952811|952812|952813|952814|952815|952816|952817|952818|952819|952820|952821|952822|952823|952824|952825|952826|952827|952828|952829|952830|952831|952832|952833|952834|952835|952836|952837|952838|952839|952840|952841|952842|952843|959601|959602|959603|959604|959605|959606|959607|959608|959609|959610|959611|959612|960456|960457|962152|962153|971337", + "upstreamId": "27691|27691|27695|27697|27698|27698|46998|46998|55738|55739|55739|55741|55741|55742|55742|55743|55743|55744|55744|55745|55745|55746|55746|55747|55749|55750|55750|55751|55752|55752|55753|55753|55754|55755|55756|55756|55757|55757|55758|55759|55759|55760|55760|55761|55762|55762|55763|55763|55764|55764|55766|55767|55768|55768|55769|55770|55771|55771|55772|55773|55774|55776|55777|55777|55778|55778|55779|55779|55780|55780|55781|55782|55782|55783|55783|55784|55784|55786|55786|55787|55787|55788|55788|55790|55790|55791|55793|55793|55794|55794|55795|55796|55796|55798|55798|55799|55800|55800|55801|55802|55803|55803|55804|55805|55806|55806|55807|55808|55808|55809|55809|55810|55810|55811|55811|55813|55813|55814|55814|55816|55816|55818|55818|55819|55819|55820|55820|55821|55822|55822|55823|55823|55825|55826|55826|55827|55828|55829|55829|55830|55831|55831|55832|55832|55833|55835|55835|55836|55836|55837|55837|55839|55840|55840|55841|55841|55842|55844|55844|55845|55845|55846|55846|55847|55847|55848|55848|55849|55849|55850|55850|55852|55852|55853|55853|55854|55855|55855|55858|55858|55859|55859|55860|55861|55863|55864|55864|55867|55867|55868|55868|55869|55870|55870|55871|55872|55872|55873|55873|55875|55876|55876|55877|55877|55878|55878|55879|55880|55880|55881|55881|55882|55882|55883|55883|55884|55886|55886|55887|55887|55889|55889|55890|55890|55891|55891|55892|55893|55894|55895|55895|55896|55898|55898|55899|55900|55901|55901|55903|55904|55904|55905|55906|55906|55907|55907|55908|55908|55910|55910|55911|55912|55912|55915|55917|55918|55919|55920|55921|55923|55923|55924|55924|55926|55927|55927|55928|55928|55929|55929|55931|55933|55933|55934|55935|55935|55936|55936|55938|55939|55940|55940|55941|55942|55943|55943|55944|55944|55945|55945|55946|55947|55949|55950|55950|55951|55952|55952|55953|55954|55956|55957|55957|55958|55958|55960|55960|55961|55962|55964|55965|55968|55970|55971|55971|55973|55973|55975|55977|55977|55979|55979|55981|55982|55982|55983|55984|55984|55985|55985|55987|55988|55989|55990|55991|55991|55992|55993|55994|55995|55995|55996|55996|55997|55998|55998|55999|55999|56000|56001|56002|56002|56004|56004|56006|56006|56009|56009|56011|56013|56013|56014|56015|56016|56016|56017|56018|56018|56019|56020|56022|56022|56023|56023|56024|56025|56026|56027|56028|56028|56029|56029|56030|56031|56032|56032|56033|56033|56034|56035|56036|56036|56038|56038|56039|56039|56040|56040|56041|56041|56042|56043|56043|56045|56045|56046|56047|56047|56048|56048|56049|56049|56050|56050|56051|56052|56052|56053|56053|56054|56055|56055|56056|56057|56058|56059|56060|56060|56061|56062|56064|56065|56066|56067|56068|56069|56069|56071|56072|56073|56074|56074|56075|56076|56076|56077|56078|56079|56079|56080|56080|56081|56082|56082|56083|56084|56085|56087|56087|56088|56088|56089|56092|56093|56093|56094|56094|56095|56095|56096|56096|56097|56100|56100|56101|56101|56103|56103|56105|56105|56107|56108|56108|56111|56111|56113|56113|56114|56114|56115|56115|56116|56116|56117|56117|56118|56118|56119|56119|56120|56120|56121|56124|56125|56127|56128|56129|56130|56130|56132|56133|56133|56134|56134|56135|56135|56136|56136|56137|56137|56138|56139|56142|56143|56143|56145|56145|56146|56147|56147|56148|56148|56150|56151|56152|56152|56153|56153|56154|56155|56155|56156|56156|56158|56158|56160|56163|56164|56164|56165|56165|56166|56167|56170|56171|56171|56172|56172|56173|56173|56174|56174|56175|56175|56176|56176|56178|56178|56179|56179|56180|56180|56181|56181|56183|56183|56185|56187|56187|56189|56189|56190|56190|56191|56191|56193|56193|56195|56195|56196|56196|56197|56197|56199|56199|56200|56200|56201|56201|56202|56202|56203|56204|56205|56205|56207|56207|56208|56209|56209|56210|56211|56211|56214|56214|56215|56215|56216|56218|56218|56219|56221|56221|56222|56222|56224|56224|56225|56227|56228|56230|56230|56231|56231|56233|56233|56234|56235|56235|56237|56237|56239|56239|56240|56240|56241|56243|56243|56245|56246|56248|56248|56249|56251|56251|56253|56255|56256|56258|56258|56261|56262|56262|56263|56264|56264|56265|56265|56266|56268|56270|56270|56271|56271|56273|56275|56276|56276|56277|56278|56281|56281|56282|56283|56285|56286|56288|56289|56291|56291|56292|56292|56293|56295|56297|56298|56298|56300|56300|56301|56302|56302|56303|56305|56307|56307|56308|56309|56311|56312|56312|56313|56314|56315|56315|56316|56316|56317|56320|56320|56321|56321|56322|56322|56323|56323|56324|56324|56325|56326|56327|56328|56328|56330|56330|56331|56331|56333|56333|56335|56337|56338|56339|56340|56342|56342|56343|56343|56344|56345|56345|56346|56347|56347|56349|56349|56350|56350|56352|56352|56353|56353|56354|56356|56356|56359|56359|56360|56362|56362|56364|56364|56365|56365|56366|56366|56367|56367|56368|56369|56370|56370|56371|56372|56373|56373|56374|56375|56375|56377|56378|56378|56381|56381|56383|56383|56386|56387|56387|56388|56388|56389|56389|56390|56390|56392|56393|56393|56394|56394|56395|56395|56396|56396|56397|56398|56399|56400|56401|56401|56403|56405|56405|56406|56408|56408|56409|56410|56412|56413|56413|56414|56415|56417|56418|56418|56420|56420|56421|56421|56423|56425|56425|56426|56428|56430|56430|56433|56433|56436|56436|56437|56439|56439|56440|56440|56441|56441|56442|56442|56443|56444|56446|56447|56448|56451|56451|56453|56454|56454|56455|56455|56456|56457|56457|56458|56459|56459|56460|56460|56462|56462|56463|56463|56464|56464|56466|56467|56467|56468|56469|56469|56470|56471|56471|56472|56472|56473|56473|56474|56474|56476|56477|56477|56478|56479|56480|56481|56481|56482|56482|56483|56483|56485|56485|56486|56487|56487|56489|56492|56493|56494|56495|56495|56496|56496|56497|56497|56498|56498|56499|56499|56500|56500|56503|56503|56504|56506|56507|56508|56508|56510|56512|56512|56513|56513|56514|56514|56515|56515|56516|56516|56518|56518|56520|56520|56521|56521|56522|56524|56524|56526|56526|56527|56528|56529|56530|56530|56532|56533|56533|56535|56535|56537|56537|56538|56538|56539|56539|56540|56540|56541|56542|56543|56544|56544|56545|56545|56547|56548|56549|56549|56551|56552|56555|56555|56556|56557|56557|56558|56558|56559|56559|56560|56560|56561|56563|56564|56564|56566|56567|56567|56568|56569|56570|56570|56572|56572|56573|56574|56575|56575|56576|56576|56577|56577|56578|56578|56579|56579|56580|56580|56581|56582|56582|56583|56583|56584|56584|56585|56586|56586|56587|56588|56589|56590|56592|56592|56593|56594|56594|56595|56595|56596|56596|56597|56597|56599|56600|56600|56601|56604|56604|56605|56606|56606|56607|56608|56608|56610|56610|56611|56614|56615|56616|56616|56618|56619|56619|56620|56620|56621|56621|56622|56624|56624|56625|56625|56626|56627|56628|56628|56629|56629|56631|56631|56633|56633|56634|56634|56636|56637|56637|56638|56639|56640|56641|56641|56642|56643|56643|56644|56645|56645|56646|56647|56647|56648|56648|56649|56649|56652|56652|56653|56653|56654|56655|56657|56658|56658|56659|56661|56661|56663|56665|56665|56667|56667|56668|56669|56671|56671|56672|56672|56674|56675|56675|56676|56676|56677|56677|56678|56678|56679|56679|56680|56680|56681|56682|56682|56683|56684|56684|56685|56685|56686|56686|56687|56687|56688|56689|56689|56691|56692|56693|56693|56694|56695|56696|56696|56700|56700|56701|56701|56703|56703|56704|56705|56705|56706|56708|56708|56709|56709|56710|56710|56711|56711|56712|56712|56714|56714|56715|56716|56716|56717|56717|56718|56718|56719|56719|56722|56722|56723|56723|56724|56725|56725|56726|56727|56728|56729|56730|56731|56731|56732|56732|56733|56735|56736|56736|56737|56737|56738|56738|56741|56742|56742|56743|56743|56746|56746|56749|56750|56751|56751|56752|56752|56753|56753|56754|56755|56755|56758|56759|56759|56760|56760|56762|56762|56763|56764|56764|56765|56766|56766|56767|56767|56768|56768|56769|56769|56771|56772|56773|56773|56774|56775|56775|56776|56777|56777|56778|56780|56781|56784|56785|56785|56786|56786|56787|56787|56788|56788|56789|56789|56790|56792|56792|56793|56793|56794|56794|56796|56797|56797|56798|56798|56800|56800|56802|56802|56803|56803|56804|56804|56805|56805|56806|56806|56807|56807|56808|56809|56809|56810|56810|56811|56811|56812|56813|56814|56815|56816|56816|56817|56818|56819|56819|56820|56822|56822|56823|56823|56824|56825|56826|56826|56827|56828|56829|56829|56831|56831|56832|56833|56833|56834|56834|56837|56838|56838|56839|56839|56841|56841|56842|56843|56845|56847|56847|56848|56848|56849|56849|56850|56851|56851|56852|56853|56854|56855|56855|56856|56857|56857|56858|56858|56863|56863|56864|56864|56865|56866|56867|56868|56870|56870|56871|56872|56872|56873|56873|56874|56874|56875|56875|56876|56876|56877|56878|56878|56879|56880|56880|56881|56881|56882|56882|56884|56884|56886|56886|56887|56887|56906|56937|56970|56973|56975|56976|56978|56980|56981|56982|56983|56985|56986|56987|56989|56990|56991|56993|56995|56996|56998|56999|57001|57003|57005|57007|57008|57009|57010|57011|57012|57013|57014|71025|85139|85174|85176|85183|85203|102161|102164|102168|102169|102169|102170|102170|102171|102172|102172|102173|102176|102178|102179|102180|102182|102183|102183|102185|102185|102187|102188|102188|102190|102190|102192|102192|102193|102193|102194|102194|102195|102195|102196|102197|102200|102200|102201|102202|102203|102203|102206|102206|102207|102207|102208|102208|102209|102210|102210|102211|102212|102212|102214|102214|102215|102215|102217|102218|102218|102219|102220|102221|102221|136108|136109|136109|136110|136111|136112|136113|136114|136115|136116|136116|136117|136119|136120|136121|136121|136124|136125|136126|136126|136127|136128|136128|136129|136129|136130|136133|136134|136134|136135|136136|136355|136358|136359|141478|141478|141479|141479|141482|141489|141490|141490|141492|141492|141493|141493|141494|141500|141501|141501|141502|141502|141504|141509|141509|141510|141510|141511|141512|141513|141515|141515|141516|141517|141520|141520|141521|141522|141523|141523|141524|141524|141526|141530|141532|141533|141534|141534|141536|141537|141539|141542|141542|141543|141544|141544|141545|141546|141547|141549|165598|165601|165601|165602|172606|172606|172609|172609|172610|172611|172615|172615|172617|172618|172621|172621|172622|172624|172626|172627|172628|172629|172630|172632|172635|172637|172638|172642|172644|172647|172647|172648|172651|172652|172652|172653|172656|172657|172657|172658|172661|172662|172663|172664|172665|172665|172666|172668|172668|172671|172672|172675|172677|172677|172679|172681|172682|172683|172683|172684|172686|172689|172691|172691|172693|172694|172697|172697|172698|172698|172699|172699|172700|172701|172702|172704|172705|172708|172710|172715|172717|172717|172726|172727|172728|172729|172729|172731|172732|172734|172734|172737|172738|172738|172800|172800|172804|172805|172807|172808|172808|172813|172813|172816|172816|172818|172820|172820|172823|172823|172824|172825|172827|172829|172829|172830|172833|172833|172834|172835|172838|172838|172840|172841|172841|172849|172849|172850|172850|172852|172852|172853|172854|172854|172856|172859|172860|172862|172863|172868|172870|172872|172872|172877|172877|172878|172878|172879|172879|172942|172943|172944|172945|172945|172946|172948|172950|172951|172954|172955|172958|172962|172963|172964|172964|172967|172971|172971|172972|172973|172973|172975|172976|172979|172981|172981|172982|172982|172983|172984|172989|172990|172991|172992|172994|172995|172997|172997|172998|172998|172999|172999|173002|173003|173003|173005|173006|173008|173008|173009|173009|173011|173013|173015|173015|173022|173025|173026|173027|173028|173031|173031|173032|173035|173035|173036|173037|173040|173041|173043|173043|173044|173044|173045|173046|173047|173047|173048|173049|173049|173051|173053|173056|173059|173061|173061|173062|173068|173069|173072|173073|173073|173074|173074|173075|173079|173080|173081|173083|173088|173089|173090|173090|173092|173093|173095|173096|173097|173098|173099|173102|173102|173104|173104|173105|173107|173107|173108|173112|173114|173114|173115|173118|173121|173121|173126|173127|173132|173135|173136|173136|173137|173137|173141|173143|173144|173144|173147|173147|173149|173150|173152|173152|173156|173157|173158|173158|173159|173160|173161|173163|173163|173164|173165|173166|173166|173167|173167|173168|173169|173169|173172|173172|173173|173174|173175|173176|173176|173177|173178|173181|173182|173183|173186|173187|173189|173192|173192|173193|173193|173195|173197|173198|173199|173206|173207|173208|173212|173212|173213|173213|173218|173218|173219|173220|173221|173221|173225|173225|173227|173229|173229|173231|173234|173234|173235|173236|173240|173240|173243|173244|173245|173246|173246|173247|173247|173248|173248|173250|173252|173252|173254|173257|173258|173259|173262|173263|173264|173266|173300|173301|173301|173303|173304|173307|173308|173310|173311|173311|173312|173313|173314|173316|173316|173320|173321|173321|173322|173328|173328|173329|173329|173333|173334|173335|173342|173342|173344|173344|173346|173348|173349|173350|173351|173351|173353|173354|173354|173355|173356|173356|173357|173357|173358|173359|173359|173360|173361|173361|173363|173364|173364|173368|173372|173373|173374|173375|173376|173378|173381|173381|173383|173394|173394|173395|173396|173399|173400|173439|173441|173443|173443|173444|173445|173448|173448|173452|173452|173453|173453|173457|173460|173462|173463|173463|173464|173467|173467|173469|173472|173474|173475|173478|173478|173481|173482|173483|173483|173485|173486|173486|173581|173582|173583|173585|173586|173593|173593|173594|173597|173598|173599|173599|173600|173600|173603|173604|173612|173618|173618|173620|173623|173624|173624|173626|173626|173627|173628|173720|173723|173724|173726|173727|173728|173728|173728|173730|173734|173861|173862|173863|173864|173864|173867|173867|173868|173869|173871|176940|176941|176945|177073|177075|177206|177334|177335|177338|178108|178109|178112|178113|178114|178115|178117|178119|178120|178121|178122|178124|178128|178129|178130|178132|178135|178472|178478|178479|178482|178484|178485|178486|178486|178490|188930|188939|188939|188946|189405|189407|189407|189409|189409|189411|189415|189415|189416|189422|189423|189423|189428|189430|189432|189435|189435|189436|189437|189437|189444|189445|189446|189446|189447|189449|189451|189451|189454|189454|189459|189459|189464|189464|189467|189467|189469|189469|189476|189476|189477|189478|189481|189483|189483|189486|189486|189489|189489|189490|189491|189491|189492|189493|189493|189494|189497|189498|189498|189499|189499|189503|189503|189507|189507|189512|189514|189514|189516|189518|189522|189523|189524|189524|189527|189531|189535|189535|189536|189539|189539|189541|189541|189543|189544|189548|189553|189553|189554|189556|189560|189566|189566|189569|189573|189573|189578|189578|189580|189582|189582|189584|189585|189586|189587|189588|189588|189589|189590|189591|189591|189592|189594|189594|189597|189599|189599|189600|189601|189603|189604|189605|189610|189616|189619|189619|189627|189628|189629|189629|189630|189630|189635|189636|189639|189640|189641|189642|189643|189647|189648|189649|189650|189652|189655|189655|189661|189661|189663|189665|189666|189667|189671|189673|189673|189674|189681|189686|189686|189687|189687|189691|189692|189699|189701|189702|189732|189733|189734|189738|189741|189743|189744|189745|189746|189746|189748|189753|189755|189756|189756|189758|189760|189760|189761|189763|189764|189764|189765|189766|189769|189769|189770|189770|190932|190941|191125|191126|191309|191461|191464|191743|191842|192072|192168|192707|192712|192712|192797|192797|192800|192868|192869|192870|192871|192874|192875|192877|192952|192952|192957|192957|193001|193003|193004|193004|193005|193006|193078|193079|193080|193081|193082|193082|193084|193084|193086|193154|193163|193165|193166|193217|193217|193219|193221|193221|193226|193226|193227|193228|193229|193229|193231|193231|193233|193237|193237|193238|193241|193243|193249|193252|193255|193257|193305|193310|193311|193312|193313|193316|193317|193355|193356|193357|193357|193734|193802|193804|193804|193805|193807|193814|193816|193818|193884|193886|193962|193962|194739|194739|195077|195102|195117|195117|195118|195118|195137|195137|195518|195525|195775|195775|196105|196120|196130|196340|196340|196400|196400|196408|198682|198686|198688|198692|198697|198698|198699|198700|198701|198702|198703|198703|198704|198705|198710|198716|198718|198721|198723|198729|198730|198731|198733|198733|198736|198737|198738|198739|198743|198744|198744|198745|198746|198753|198753|198754|198754|198758|198760|198761|198767|198768|198769|198772|198772|198777|198780|198781|198788|198790|198790|198791|198793|198794|198796|198797|198799|198802|198804|198805|198806|198806|198811|198813|198817|198817|198819|198819|198820|198822|198825|198826|198827|198828|198832|198832|198833|198835|198838|198839|198839|198841|198845|198849|198850|198852|198852|198854|198856|198857|198858|198867|198869|198870|198875|198876|198878|198881|198881|198881|198886|198888|198888|198894|198895|198900|198900|198902|198903|198907|198908|198909|198909|198911|198912|198912|198915|198917|198918|198920|198924|198929|198931|198937|198940|198941|198944|198947|198952|198954|198957|198966|198966|198969|198969|198970|198973|198976|198978|198979|198988|198988|198995|198997|198998|198999|199000|199011|199013|199015|199016|199019|199022|199024|199025|199027|199028|199029|199029|199031|199035|199036|199040|199041|199042|199043|199050|199054|199064|199066|199070|199071|199072|199082|199085|199086|199090|199094|199096|199098|199104|199106|199107|199108|199110|199110|199111|199112|199112|199114|199114|199116|199118|199120|199126|199127|199130|199131|199133|199139|199139|199141|199143|199146|199147|199148|199149|199149|199150|199156|199157|199157|199165|199166|199167|199172|199174|199174|199180|199184|199191|199191|199192|199192|199193|199200|199201|199203|199204|199205|199208|199212|199212|199214|199216|199221|199222|199223|199224|199225|199228|199229|199229|199233|199233|199237|199237|199238|199242|199243|199245|199249|199249|199251|199253|199254|199261|199264|199264|199265|199265|199266|199266|199269|199270|199271|199272|199274|199276|199277|199285|199287|199289|199292|199296|199297|199298|199299|199302|199302|199304|199306|199310|199310|199313|199321|199322|199322|199325|199327|199329|199332|199334|199334|199336|199340|199342|199344|199346|199352|199353|199361|199361|199365|199366|199372|199373|199374|199376|199380|199384|199385|199387|199391|199393|199398|199401|199402|199403|199405|199407|199409|199409|199410|199416|199418|199426|199430|199432|199432|199437|199438|199439|199441|199441|199444|199449|199449|199452|199454|199455|199458|199459|199461|199462|199467|199468|199470|199474|199474|199477|199479|199483|199485|199486|199490|199490|199492|199492|199495|199499|199501|199501|199505|199512|199512|199513|199513|199524|199526|199526|199530|199531|199532|199533|199535|199537|199539|199543|199544|199545|199555|199556|199556|199557|199559|199561|199562|199563|199563|199576|199577|199578|199578|199579|199580|199580|199583|199585|199586|199588|199593|199594|199595|199598|199601|199605|199608|199611|199671|199673|199674|199697|199698|199701|199707|199707|199712|199712|199714|199715|199716|199719|199720|199722|199723|199724|199728|199736|199738|199740|199749|199751|199753|199753|199754|199756|199759|199759|199761|199764|199764|199765|199771|199773|199774|199776|199777|205135|205422|206910|206911|206917|206918|206919|206920|206921|206922|206929|206930|213528|215231|215231|221119|221120|221121|221122|221123|221124|221125|221126|221127|221128|221129|221130|221131|221132|221133|224228|224235|224240|224982|224987|224991|224992|224998|225000|225005|225009|225016|225018|225027|225034|225039|225040|225045|225046|225055|225057|225060|225074|225076|225077|225078|225079|225081|225082|225089|225090|225093|225094|225100|225106|225108|225114|225115|225119|226447|226447|226448|226454|226455|226455|226892|227229|228549|228550|228552|228556|228558|228560|228564|228568|228569|228573|228577|228579|228580|228580|228584|228584|228588|228589|228593|228594|228594|228595|228595|228600|228609|228619|228622|228624|228631|228637|228638|228640|228640|228642|228644|228645|228646|228648|228651|228654|228656|228656|228660|228660|228661|228662|228662|228666|228668|228675|228676|228677|228677|228678|228679|228680|228681|228687|228690|228690|228692|228695|228695|228699|228699|228700|228710|228711|228714|228716|228718|228719|228723|228725|228725|228729|228729|228730|228733|228734|228739|228740|228741|228742|228742|228744|228745|228746|228747|228749|228751|228752|228754|228754|228757|228761|228762|228762|228764|228771|228772|228775|228779|228784|228786|228786|228787|228789|228789|228792|228794|228797|228801|228806|228811|228812|228814|228816|228821|228822|228827|228829|228830|228832|228833|228838|228839|228842|228845|228847|228875|228876|228877|228880|228881|228885|228887|228892|228895|228900|228901|228904|228905|228907|238389|238389|238390|238391|238392|238393|238393|238394|238395|238396|238397|238399|238400|238401|238403|238404|238407|238408|238409|238410|238411|238412|238413|238414|238415|238417|238418|238419|238420|238420|238421|238422|238422|238423|238424|238425|238427|238428|238429|238430|238432|238434|238435|238436|238437|238438|238441|238441|238442|238443|238444|238445|238446|238447|238448|238449|238450|238451|238452|238454|238455|238456|238457|238459|238461|238462|238464|238464|238465|238466|238467|238468|238470|238471|238472|238473|238474|238475|238476|238477|238478|238479|238479|238480|238481|238482|238483|238484|238485|238486|238487|238488|238489|238490|238491|238492|238493|238494|238495|238496|238497|238498|238499|238500|238501|238502|238503|238504|238505|238506|238507|238508|238509|238510|238511|238512|238513|238514|238515|238516|238517|238518|238519|238520|238521|238522|238524|238524|238525|238526|238527|238528|238529|238530|238531|238532|238533|238534|238535|238536|238537|238538|238539|238540|238541|238542|238543|238544|238545|238547|238547|238548|238550|238551|238552|238553|238554|238555|238556|238557|238558|238559|238559|238560|238560|238562|238563|238564|238566|238567|238568|238569|238570|238571|238572|238573|238575|238576|238577|250411|250413|250415|250416|250417|250420|250420|250426|250427|250429|250430|250430|257987|257990|257995|258006|258008|258009|258010|258011|258018|258019|258027|258032|258034|258036|258039|258040|258042|258044|258049|258054|258054|258056|258057|258060|258060|258061|258064|258068|258072|258075|258076|258080|258080|258082|258083|258084|258085|258089|258090|258091|258095|258096|258097|258099|258101|258101|258102|258105|258106|258111|258111|258114|258115|258121|258122|258122|258123|258124|258125|258128|258130|258130|258131|258132|258137|258137|258145|258146|258148|258150|258155|258156|258157|258157|258158|258159|258161|258163|258165|258165|258169|258175|258176|258182|258183|258185|258191|265399|265464|265497|265553|265624|265904|265936|266024|266024|266065|266075|266078|266084|266095|266186|266188|266197|266209|266230|266241|266245|266249|266256|266256|266333|266336|266373|266397|266411|266412|266423|266542|266653|266653|266666|266666|266671|266679|266725|266737|266744|266754|266755|266757|266764|266782|266857|266857|266868|266875|266890|266892|266892|266893|266894|266899|266899|266904|267023|267023|267070|267084|267089|267093|267093|267112|267127|267127|267265|267341|267343|267409|267490|267534|267543|267557|267629|267639|267673|267674|267687|267687|267715|267717|267725|267725|267729|267860|267868|267872|267897|267901|267925|267951|267951|267961|267961|268111|268171|268216|268223|268239|268239|268326|268329|268329|268334|268335|268337|268487|268531|268531|268680|268703|268730|268795|268795|268915|268915|269034|269201|269229|269343|269544|269646|269669|269864|270161|270205|270836|271155|271221|271221|271689|271856|271856|271898|271933|271996|272032|272181|272182|272192|272661|272756|272756|272908|272997|272999|273034|273051|273235|273337|273378|273378|273700|273712|273760|273761|273815|274173|274309|274528|274548|274588|274603|274693|274705|274706|274707|274709|274711|274714|274943|274944|274948|274951|274951|274956|274957|275123|283197|283198|283200|283201|283204|283211|283212|283220|283221|283221|283222|283223|283225|283225|283228|283229|283232|283232|283233|283233|283235|283236|283240|283244|283244|283249|283250|283252|283252|283253|283255|283256|283262|283263|283269|283270|283271|283274|283275|283277|283277|283278|283294|283304|283309|283320|283321|283327|283328|283329|283332|283332|283341|283343|283344|283344|283346|283348|283349|283358|283361|283361|283371|283371|283374|283375|283375|283376|283378|283378|283379|283381|283389|283389|283390|283394|283395|283401|283404|283404|283405|283405|283408|283411|283411|283417|283418|283420|283424|283425|283430|283432|283435|283439|283905|283908|283910|283911|283912|283912|283914|283915|283923|283923|283924|283930|283931|283931|283933|283935|283936|283941|283942|283942|283947|283947|283956|283956|283959|283961|283966|283966|283969|283975|283976|283976|283990|283990|283991|283994|283994|283995|283996|283996|283997|283998|283999|284002|284006|284012|284020|284020|284021|284023|284024|284027|284036|284036|284044|284045|284046|284048|284051|284052|284052|284053|284055|284056|284061|284062|284062|284064|284065|284067|284068|284069|284075|284075|284076|284082|284090|284091|284105|284106|284107|284109|284110|284110|284111|284114|284114|285677|285678|285679|285683|285689|285691|285692|285692|285693|285702|285704|285705|285706|285708|285715|285729|285729|285735|285737|285739|285740|285747|285752|285767|285767|285769|285770|285773|285774|285774|285776|285790|285793|285794|285814|285818|285818|285825|285825|285830|285830|285831|285834|285840|285840|285841|285843|285844|285851|285853|285855|285856|285859|285860|285861|285861|285878|285888|285888|285889|285892|285911|285912|285920|285920|285923|285923|285924|285926|285926|285938|285963|285963|285976|285977|285981|285981|285986|285987|285988|285990|285991|285993|285998|285998|286000|286001|286008|286009|286009|286010|286011|286014|286014|286015|286016|286016|286073|286074|286082|286085|286086|286091|286093|286093|286099|286100|286100|286101|286105|286106|286108|286110|286111|286111|286112|286115|286131|286131|286132|286136|286136|286138|286141|286145|286146|286150|286151|286152|286157|286158|286167|286175|286178|286183|286184|286186|286186|286187|286187|286191|286191|286195|286196|286197|286197|286201|286202|286205|286207|286208|286209|286209|286210|286239|286240|286240|286244|286259|286259|286263|286264|286264|286266|286267|286275|286287|286287|286290|286294|286294|286295|286304|286305|286311|286316|286316|286317|286318|286323|286323|286324|286325|286341|286341|286342|286361|286376|286386|286386|286387|286408|359329|359386|360828|360828|365709|365711|365714|365723|365724|365734|365739|365753|365761|365843|365844|365857|365861|365862|365868|365874|365883|365897|365913|365933|365942|365963|365968|365975|365980|365990|365993|365995|365998|366003|366005|366006|366024|366029|366038|366039|366043|366047|366053|366057|366059|366059|366060|366065|366069|366071|366077|366079|366081|366082|366087|366097|366101|366102|366102|366108|366108|366109|366113|366125|366125|366132|366134|366144|366159|366185|366199|366230|366231|366260|366263|366309|366348|366394|366421|366433|366433|366438|366440|366453|366486|366488|366490|366505|366548|366550|366564|366573|366586|366591|366598|366672|366690|366703|391464|391471|391475|391480|391481|391485|391489|391492|391494|391497|391504|391509|391510|391512|391515|391519|391520|391521|391523|391524|391526|391528|391533|391534|391535|391536|391537|391538|391538|391540|391541|391541|391543|391544|391551|391552|391552|391554|391558|391562|391563|391564|391569|391570|391572|391574|391576|391577|391580|391580|391584|391585|391588|391592|391593|391595|391597|391600|391603|391606|391607|391609|391610|391620|391620|391622|391624|391632|391634|391636|391637|391640|391642|391645|391646|391650|391651|391654|391659|391660|391662|391663|391664|391666|391667|391668|391669|391670|391671|391672|391673|391674|391675|391676|391677|391678|391679|391680|391681|391682|391683|391684|391685|391686|391687|391688|391689|391690|391690|391691|391692|391693|391694|391695|391696|391697|391698|391699|391700|391701|391703|391704|391705|391706|391707|391708|391709|391710|391711|391712|391713|391714|391715|391716|391717|391718|391719|391720|391721|391722|391723|391724|391724|391725|391726|391727|391728|391730|391733|391734|391734|391735|391736|391737|391739|391740|391741|391742|391743|391744|391746|391747|391748|391749|391750|391751|391752|391753|391754|391755|391756|391758|391759|391760|391762|391763|391764|391765|391766|391768|391769|391770|391771|391772|391774|391775|391776|391778|391779|391780|391781|391782|391783|391784|391785|391786|391787|391788|391789|391790|391791|391793|391794|391795|391796|391797|391798|391799|391800|391800|391801|391802|391803|391804|391805|391806|391807|391808|391809|391810|391811|391812|391814|391815|391816|391817|391819|391820|391821|391822|391824|391825|391826|391827|391828|391829|391830|391831|391832|391834|391835|391836|391837|391839|391840|391842|391843|391844|391845|391848|391849|391850|391851|391853|391854|391855|391856|391857|391858|391859|391860|391861|391862|391865|391866|391867|391869|391870|391871|391872|391873|391874|391875|391876|391877|391878|391879|391880|391881|391882|391883|391883|391884|391885|391886|391887|391888|391890|391891|391892|391893|391894|391896|391897|391898|391899|391900|391901|391902|391903|391904|391905|391906|391907|391908|391909|391910|391910|391911|391912|391913|391914|391916|391919|391920|391921|391922|391923|391924|391925|391927|391929|391930|391931|391932|391933|391934|391935|391936|391938|391939|391940|391941|391942|391943|391944|391945|391946|391947|391949|391950|391951|391952|391953|391954|391955|391956|391957|391958|391959|391960|391962|391963|391964|391965|391966|391968|391970|391971|391972|391972|391973|391974|391975|391976|391977|391978|391980|391981|391982|391983|391983|391984|391985|391986|391987|391988|391989|391990|391991|391992|391993|391994|391994|391996|391997|391998|391999|392000|392001|392002|392003|392004|392005|392006|392009|392011|392012|392014|392015|392016|392018|392021|392022|392023|392024|392025|392026|392027|392028|392029|392030|392031|392032|392033|392034|392035|392036|392037|392038|392039|392040|392041|392042|392043|392044|392045|392046|392047|392048|392049|392051|392052|392053|392054|392055|392056|392057|392058|392059|392062|392064|392065|392066|392067|392068|392069|392069|392070|392071|392072|392073|392074|392075|392076|392077|392078|392079|392082|392083|392086|392087|392089|392090|392091|392092|392093|392094|392095|392096|392097|392098|392099|392100|392101|392102|392103|392105|392106|392107|392108|392110|392111|392112|392113|392114|392115|392116|392117|392118|392119|392120|392121|392122|392123|392124|392125|392126|392127|392128|392129|392130|392131|392132|392133|392134|392135|392136|392137|392138|392139|392140|392141|392142|392143|392144|392145|392146|392147|392148|392150|392151|392152|392153|392154|392155|392156|392157|392158|392160|392161|392162|392163|392164|392165|392166|392167|392168|392169|392170|392171|392173|392174|392175|392176|392177|392178|392178|392179|392180|392181|392182|392184|392186|392187|392188|392189|392190|392191|392192|392193|392194|392195|392196|392197|392198|392199|392200|392201|392201|392202|392203|392204|392205|392206|392207|392208|392209|392211|392213|392214|392215|392216|392217|392218|392220|392221|392222|392223|392223|392224|392225|392226|392227|392229|392230|392231|392232|392233|392234|392235|392236|392237|392238|392239|392240|392242|392243|392246|392247|392252|392253|392254|392255|392258|392259|392262|392263|392264|392265|392266|392268|392271|392273|392275|392277|392279|392281|392282|392285|392286|392287|392289|392290|392292|392293|392295|392297|392300|392302|392303|392304|392306|392310|392312|392313|392316|392317|392318|392320|392321|392322|392323|392325|392326|392327|392328|392336|392338|392340|392343|392344|392347|392349|392350|392355|392356|392358|392361|392370|392371|392373|392376|392378|392383|392384|392385|392390|392393|392397|392407|392413|392415|392420|392427|392430|392438|392447|392454|392454|405429|405437|405447|405449|405450|405451|405454|405458|405462|405469|405471|405473|405481|405483|405489|405495|421324|421326|421327|421333|421339|425442|425444|425445|425448|425450|425453|427942|427943|427946|427947|427953|427953|434002|434004|434005|434574|438182|439874|440571|440572|440575|440580|440586|440593|440598|440599|440603|440604|440605|440614|440616|440618|440625|440630|440637|440638|440641|440642|443070|443077|443080|443080|443084|443085|443087|443088|443096|448997|449001|449006|449007|449013|449014|449016|449017|449021|449023|449029|449031|449033|449035|449039|449041|449043|449045|449046|449047|449053|449060|449061|449062|449065|449069|449077|449081|449086|449090|449096|449098|449108|449116|449122|449126|449129|449132|449134|449136|449137|449142|449144|449147|449152|449155|449157|449167|449176|449177|449179|449182|449186|449188|449190|449192|449193|449194|449195|449200|449201|449202|449205|449206|449207|449208|449212|449213|449214|449215|449216|449217|449219|449220|449221|449224|449227|449229|449230|449232|449234|449236|449237|449238|449241|449242|449243|449245|449247|449249|449252|449255|449257|449258|449259|449263|449264|449266|449267|449270|449272|449273|449274|449275|449276|449277|449279|449280|449282|449284|449285|449287|449288|449289|449290|449291|449292|449293|449294|449295|449297|449300|449302|449303|449305|449306|449307|449308|449309|449310|449311|449312|449313|449314|449315|449316|449317|449318|449319|449320|449321|449322|449323|449324|449325|449326|449327|449328|449329|449330|449331|449332|449333|449335|449336|449337|449338|449339|449340|449341|449342|449343|449343|449344|449345|449346|449347|449348|449349|449350|449351|449352|449353|449354|449355|449356|449357|449358|449359|449360|449361|449362|449363|449364|449365|449366|449367|449368|449369|449370|449371|449372|449373|449374|449376|449377|449378|449379|449380|449381|449383|449384|449385|449386|449387|449388|449389|449390|449391|449392|449394|449395|449396|449397|449398|449400|449401|449402|449403|449404|449405|449406|449407|449408|449409|449411|449412|449413|449414|449415|449416|449417|449418|449419|449420|449421|449422|449423|449424|449425|449427|449428|449429|449430|449431|449432|449433|449434|449435|449436|449437|449438|449439|449440|449441|449442|449442|449443|449444|449445|449446|449448|449449|449450|449452|449453|449454|449455|449456|449457|449458|449459|449460|449461|449462|449463|449464|449465|449466|449466|449467|449468|449469|449470|449471|449472|449473|449474|449475|449476|449477|449479|449480|449481|449482|449483|449484|449485|449486|449487|449488|449489|449490|449491|449492|449493|449494|449495|449496|449497|449498|449499|449500|449501|449502|449502|449504|449505|449506|449507|449508|449509|449510|449511|449511|449512|449513|449514|449515|449516|449517|449518|449518|449519|449520|449522|449523|449524|449525|449526|449526|449527|449528|449529|449530|449531|449532|449533|449534|449535|449536|449537|449538|449538|449542|449543|449544|449545|449546|449547|449548|449549|449550|449551|449552|449553|449555|449557|449558|449559|449561|449562|449563|449564|449565|449566|449568|449569|449570|449571|449572|449573|449574|449575|449577|449578|449578|449579|449580|449580|449581|449582|449583|449584|449585|449586|449587|449589|449590|449591|449592|449593|449594|449595|449597|449598|449599|449600|449601|449602|449603|449604|449604|449605|449606|449607|449608|449609|449610|449611|449612|449613|449614|449615|449615|449617|449618|449619|449620|449621|449622|449623|449624|449625|449626|449627|449628|449629|449630|449631|449632|449633|449634|449635|449636|449637|449638|449639|449640|449641|449643|449644|449645|449647|449648|449649|449649|449650|449651|449652|449653|449654|449655|449656|449657|449658|449659|449660|449661|449662|449663|449664|449665|449666|449667|449668|449670|449671|449673|449674|449675|449676|449677|449678|449679|449680|449681|449682|449683|449684|449685|449686|449687|449688|449689|449690|449691|449692|449693|449694|449695|449696|449697|449698|449699|449700|449701|449702|449703|449704|449705|449706|449707|449708|449709|449710|449711|449712|449713|449714|449715|449716|449717|449718|449719|449720|449720|449721|449722|449723|449724|449725|449726|449727|449728|449729|449730|449731|449732|449733|449734|449735|449736|449737|449738|449739|449740|449740|449741|449742|449743|449745|449746|449747|449748|449749|449750|449751|449752|449753|449754|449755|449756|449757|449758|449759|449760|449761|449763|449764|449765|449766|449767|449768|449769|449770|449771|449772|449774|449775|449776|449777|449778|449779|449780|449781|449782|449783|449784|449785|449786|449787|449788|449789|449790|449791|449792|449793|449794|449795|449795|449796|449797|449798|449799|449800|449801|449802|449803|449804|449805|449806|449808|449809|449811|449812|449812|449813|449814|449815|449816|449817|449818|449818|449819|449819|449820|449820|449821|449822|449823|449824|449825|449826|449827|449828|449829|449830|449831|449832|449833|449834|449835|449836|449837|449838|449839|449840|449841|449842|449843|449844|449845|449846|449847|449849|449850|449851|449852|449853|449854|449855|449856|449857|449858|449859|449860|449861|449862|449863|449864|449865|449866|449867|449869|449870|449871|449872|449873|449874|449875|449876|449878|449879|449880|449881|449882|449883|449884|449885|449886|449887|449888|449889|449890|449891|449892|449893|449894|449895|449896|449897|449898|449898|449899|449900|449901|449902|449903|449904|449905|449906|449907|449908|449909|449910|449911|449912|449913|449914|449915|449916|449917|449918|449919|449920|449921|449922|449923|449924|449925|449926|449927|449928|449929|449930|449931|449932|449933|449934|449935|449936|449937|449938|449939|449940|449941|449942|449943|449944|449945|449946|449947|449948|449950|449951|449952|449953|449954|449955|449957|449958|449959|449959|449960|449961|449962|449963|449964|449965|449966|449967|449968|449969|449970|449971|449972|449973|449974|449975|449976|449977|449978|449979|449980|449981|449982|449983|449984|449985|449986|449987|449988|449989|449990|449991|449992|449993|449994|449995|449996|449997|449998|449999|450000|450001|450002|450003|450004|450005|450006|450007|450008|450009|450010|450011|450012|450013|450014|450015|450016|450017|450018|450019|450020|450021|450022|450023|450024|450025|450026|450027|450028|450028|450029|450030|450031|450032|450032|450033|450033|450034|450035|450036|450037|450038|450039|450040|450041|450042|450043|450044|450045|450046|450047|450047|450048|450049|450050|450051|450052|450053|450054|450055|450056|450057|450058|450058|450059|450059|450061|450062|450063|450064|450065|450066|450067|450068|450070|450071|450072|450073|450074|450075|450076|450077|450078|450079|450080|450081|450082|450083|450085|450086|450087|450088|450089|450090|450091|450092|450093|450094|450096|450097|450098|450100|450101|450102|450103|450104|450105|450107|450108|450109|450110|450111|450112|450115|450116|450118|450119|450120|450121|450123|450124|450125|450126|450127|450128|450129|450130|450131|450133|450134|450136|450139|450140|450141|450142|450144|450145|450146|450148|450149|450150|450152|450153|450153|450154|450155|450157|450161|450162|450163|450166|450168|450170|450171|450172|450175|450178|450181|450182|450183|450184|450186|450187|450190|450191|450192|450193|450194|450195|450197|450200|450201|450202|450204|450205|450207|450208|450210|450211|450212|450213|450214|450215|450216|450217|450218|450219|450221|450222|450223|450224|450226|450228|450230|450231|450232|450233|450234|450235|450236|450238|450239|450240|450241|450243|450244|450246|450247|450248|450250|450252|450253|450254|450256|450257|450258|450260|450261|450262|450265|450266|450268|450269|450270|450271|450272|450273|450274|450275|450278|450281|450282|450289|450304|450305|450307|450311|450318|450322|450323|450327|450328|450335|450343|450345|450346|450350|450351|450353|450357|450360|450385|450387|450389|450390|481118|481119|481120|481121|481230|481616|481618|481619|481625|481631|488370|488408|488415|488433|488434|488435|488441|488441|488446|488451|488511|488523|488530|488547|488549|488551|488554|488557|488575|488602|488612|488618|488619|488751|488757|488758|489017|489235|489248|489273|489487|489622|489631|490038|490049|490138|490145|490361|490421|490457|490511|490521|490525|490650|490731|490735|490736|490737|490965|491024|491049|491061|491065|491598|491824|491964|492034|492047|492125|492156|492157|492163|492351|492527|492528|492596|492617|492618|492627|492690|492729|492911|492912|492980|492987|493054|493055|493192|493195|493213|493236|493509|493629|493807|493985|494087|494151|495116|495378|496171|496193|496248|496635|496660|496673|496674|496678|496712|498922|498926|498928|498931|498942|498943|498948|498970|499001|499022|499065|499088|499092|499093|499096|499122|499129|499142|499158|499160|499183|499189|499210|499213|499215|499218|499219|499224|499229|499231|499235|499240|499252|499270|499276|499276|499281|499282|499291|499294|499299|499299|499301|499308|499315|499315|499319|499326|499329|499332|499340|499341|499347|499364|499366|499374|499385|499392|499397|499398|499399|499404|499419|499423|499442|499458|499488|499509|499513|499516|499527|499543|499562|499565|499572|499578|499598|499612|499629|499637|499648|499665|499666|499685|499697|499701|499709|499713|499722|499728|499735|499767|499793|509244|509253|509261|509270|509275|509281|509283|509289|509308|509311|509318|509350|509374|509397|509413|509416|509417|509424|509434|511064|511364|511367|513249|513249|516212|516216|516302|516700|516712|516715|516718|516720|516731|516734|516737|516740|516743|516744|516745|516750|516754|516756|516758|516759|516761|516764|516765|516767|516768|516770|516772|516773|516774|516775|516776|516777|516778|516779|516780|516781|516782|516783|516784|516785|516786|516787|516788|516789|516791|516792|516793|516794|516795|516797|516798|516799|516799|516801|516802|516803|516805|516806|516809|516810|516811|516812|516814|516816|516817|516818|516819|516822|516823|516825|516826|516827|516828|516829|516830|516831|516832|516833|516834|516835|516836|516837|516839|516840|516842|516843|516844|516845|516846|516848|516849|516850|516853|516854|516855|516856|516857|516858|516859|516860|516861|516862|516863|516864|516865|516866|516867|516868|516869|516871|516872|516873|516874|516875|516876|516877|516879|516880|516881|516883|516885|516886|516887|516888|516889|516890|516891|516892|516893|516894|516895|516896|516897|516898|516899|516900|516901|516902|516903|516904|516905|516906|516907|516908|516909|516910|516911|516912|516913|516914|516915|516916|516917|516918|516919|516920|516921|516922|516923|516924|516925|516926|516927|516928|516929|516930|516931|516932|516933|516934|516935|516936|516937|516938|516939|516940|516941|516942|516943|516944|516945|516946|516947|516947|516948|516949|516950|516951|516952|516953|516954|516954|516955|516956|516957|516958|516959|516960|516961|516962|516963|516964|516965|516966|516967|516968|516969|516970|516971|516972|516973|516974|516975|516976|516976|516977|516978|516979|516980|516981|516982|516983|516984|516985|516986|516987|516988|516989|516990|516991|516992|516993|516994|516995|516996|516997|516998|516999|517000|517001|517002|517003|517004|517004|517005|517006|517007|517008|517009|517010|517011|517012|517013|517014|517015|517016|517017|517018|517019|517020|517021|517021|517022|517023|517024|517025|517026|517027|517028|517029|517030|517031|517032|517034|517035|517036|517037|517038|517039|517040|517041|517042|517043|517044|517045|517046|517047|517048|517049|517050|517051|517052|517053|517054|517055|517055|517056|517057|517058|517059|517060|517061|517062|517063|517064|517065|517066|517067|517068|517069|517070|517071|517072|517073|517074|517075|517076|517077|517078|517079|517080|517081|517082|517083|517084|517085|517086|517087|517088|517089|517090|517091|517092|517093|517094|517095|517096|517097|517098|517099|517100|517101|517102|517103|517104|517105|517106|517107|517108|517109|517110|517111|517112|517113|517114|517115|517117|517118|517119|517120|517121|517122|517123|517124|517125|517126|517127|517128|517129|517130|517131|517132|517133|517134|517135|517136|517137|517138|517139|517140|517141|517142|517143|517144|517144|517145|517146|517147|517148|517149|517150|517151|517152|517153|517154|517155|517156|517157|517158|517159|517160|517161|517162|517163|517164|517165|517166|517167|517168|517169|517170|517171|517172|517173|517174|517175|517176|517177|517178|517179|517180|517181|517182|517183|517184|517185|517186|517187|517188|517189|517190|517191|517192|517193|517194|517196|517197|517198|517199|517200|517201|517202|517203|517204|517205|517206|517207|517208|517209|517210|517211|517212|517213|517214|517215|517216|517217|517218|517219|517220|517221|517222|517223|517224|517225|517226|517227|517228|517229|517230|517231|517232|517233|517234|517235|517237|517238|517239|517240|517241|517242|517243|517244|517245|517246|517247|517248|517249|517250|517251|517252|517253|517254|517255|517258|517259|517260|517261|517262|517263|517264|517265|517266|517267|517268|517270|517271|517272|517273|517274|517275|517276|517277|517278|517280|517281|517283|517284|517285|517286|517287|517288|517290|517290|517291|517292|517293|517294|517295|517296|517297|517298|517299|517300|517300|517301|517302|517303|517304|517305|517306|517306|517307|517308|517309|517310|517311|517312|517313|517314|517315|517316|517317|517318|517320|517321|517322|517323|517324|517325|517326|517327|517328|517329|517330|517331|517332|517333|517334|517335|517336|517337|517338|517339|517340|517341|517341|517342|517343|517344|517345|517346|517347|517348|517349|517350|517351|517352|517353|517354|517355|517356|517357|517358|517359|517360|517361|517362|517363|517364|517365|517366|517367|517368|517369|517370|517371|517372|517373|517374|517375|517376|517377|517378|517379|517380|517381|517382|517383|517384|517386|517387|517388|517389|517390|517391|517392|517393|517394|517395|517396|517397|517398|517399|517401|517403|517404|517405|517406|517407|517409|517411|517412|517413|517414|517415|517416|517417|517418|517420|517421|517422|517423|517424|517426|517427|517429|517430|517432|517433|517434|517435|517436|517437|517438|517440|517442|517443|517444|517445|517446|517448|517449|517451|517452|517453|517454|517455|517456|517457|517458|517459|517460|517460|517461|517462|517463|517464|517465|517466|517468|517469|517470|517471|517472|517474|517476|517477|517478|517479|517480|517483|517484|517485|517487|517488|517489|517490|517491|517492|517493|517494|517495|517498|517499|517501|517503|517505|517510|517512|517513|517515|517517|517518|517519|517520|517521|517528|517529|517531|517532|517533|517534|517538|517540|517541|517543|517544|517547|517548|517550|517551|517554|517555|517557|517582|517586|517586|517588|517592|517594|517600|517605|517605|517609|517612|517614|517615|517616|517624|517627|517628|517634|517636|517637|517641|517643|517649|517651|517652|517654|517663|517667|517670|517671|517674|517678|517679|517683|517688|517689|517698|517699|517703|517708|538343|538955|538956|538957|539471|539471|557424|557426|557704|557706|557708|557710|557712|557714|557716|557718|557720|557722|557724|557726|557730|557731|557732|557733|557734|557735|557736|557737|557738|557739|557740|557741|557742|557743|557744|557745|557746|557747|557748|557749|557750|557751|557752|557753|557754|557755|557756|557757|557758|557759|557760|557761|557762|557763|557764|557765|557766|557767|557768|557769|557770|557771|557772|557773|557773|557774|557775|557777|557779|557781|557783|557785|557787|557789|557791|557793|557795|557797|557799|557801|557803|557805|557807|557809|557811|557813|557815|557817|557819|557821|557825|558072|558633|558635|558921|558923|558925|558927|558929|558931|558933|558935|558937|558939|558941|558943|558945|558947|558949|558951|558953|558955|558957|558959|558961|558963|558965|558967|558969|558971|558973|558975|558977|558979|558981|558983|558985|558987|558989|558991|558993|558995|558997|558999|559001|559003|559003|559005|559402|559404|559406|559408|559410|559412|559414|559416|559418|559420|559422|559424|559426|559428|559430|559430|559432|559434|559436|559438|559440|559442|559444|559446|559448|559450|559452|559454|559456|559458|559460|559464|559466|559468|559470|559472|559474|559476|559478|559480|576588|576600|576601|576602|576620|576621|576626|578394|578395|583788|584002|584088|584092|585032|585258|585477|585477|585482|585667|586532|586533|586782|586973|587073|587073|587132|587145|587668|588268|588608|588734|588929|589289|589484|608940|608942|608943|609450|609459|611549|611550|613499|614745|614783|614818|614848|622500|622865|624208|624212|624220|624221|629032|629033|629034|629035|629036|629037|629038|629039|629040|629041|629042|629043|629044|629045|629046|629047|629048|629049|629050|629051|629052|629053|629054|629055|629056|629057|629058|629059|629060|629061|629062|629063|629064|629065|629066|629067|629068|629069|629070|629071|629072|629073|629074|629075|629076|629077|629078|629079|629080|629081|629082|629083|629084|629085|629086|629087|629088|629089|629090|629091|629092|629093|629094|629095|629096|629097|629098|629099|629100|629101|629102|629103|629104|629105|629106|629107|629108|629109|629110|629111|629112|629113|629114|629115|629116|629117|629118|629119|629120|629121|629122|629123|629124|629125|629126|629127|629128|629129|629130|629131|629132|629133|629134|629135|629136|629137|629138|629139|629140|629141|629142|629143|629144|629145|629146|629146|629147|629148|629149|629150|629151|629152|629153|629154|629155|629156|629157|629158|629159|629160|629161|629162|629163|629164|629166|629167|629168|629169|629170|629171|629172|629173|629174|629175|629176|629177|650707|650724|650729|650866|650868|650870|650876|650877|650885|650892|650899|650900|650902|650903|650906|650911|650915|650923|650925|650927|653913|655182|655277|655296|655365|655380|655400|655401|672386|679387|679398|679556|683422|683423|683426|683429|683433|683434|683436|683437|683438|683440|683443|683444|683445|683446|683448|683450|683452|683453|683454|683455|683456|683458|685120|685122|685123|685124|685929|685931|685934|685934|685935|685936|685938|685940|685942|685944|685945|685946|685947|685949|685956|685958|685961|685964|685965|685966|685970|685971|685974|685978|685979|685979|685981|685984|685986|685987|685989|685990|685992|685993|685994|685996|685997|685998|685999|686000|686001|686002|686003|686004|686006|686008|686009|686009|686010|686011|686013|686015|686016|686018|686019|686020|686021|686023|686024|686025|686026|686027|686028|686029|686031|686032|686035|686036|686037|686041|686042|686043|686045|686046|686046|686047|686048|686049|686050|686053|686057|686058|686059|686061|686062|686063|686064|686067|686068|686071|686072|686073|686075|686076|686077|686079|686080|686081|686086|686087|689682|689683|689684|689685|689687|690906|690908|690911|690912|690913|690914|690915|690917|690918|690920|690921|690925|690934|690935|690940|690941|690942|690943|690944|690945|690946|690947|690948|690950|690951|690956|690957|690958|690959|690960|690961|690962|690964|690965|690968|690972|690973|690974|690977|690980|690981|690981|690982|690987|695103|695104|695108|695109|695110|695111|697179|697180|697181|697182|697184|697187|697189|697190|697192|707874|707876|707878|707879|707882|719440|719441|719445|719445|719449|730085|732973|732982|732985|732994|732996|732999|733002|733003|733005|733008|733009|743828|743833|743842|746981|746983|746985|746989|746991|746995|746999|747001|747004|747007|747010|747011|747024|747025|747029|747043|747057|747066|747072|747081|747087|758988|762443|762445|762446|762447|762451|762452|762454|762456|762460|762462|762464|762468|762472|762480|762481|762495|762496|762501|762504|762505|762508|762509|762521|762530|762538|762543|762550|762555|762557|762560|762561|762566|762567|762569|762577|762579|762582|762587|762588|762597|762599|762600|762601|762606|762608|762623|762628|762630|762636|762646|762647|762648|762649|762651|762657|762659|762660|762670|762677|762681|762684|762686|762687|762691|762699|762705|762706|774623|774638|774642|774655|774664|774668|777211|778939|780980|780981|780984|780986|780987|780990|780992|780998|780999|781006|781009|781011|781012|781014|781015|781019|781021|781022|781024|781025|781031|781032|781033|781034|781036|781040|781043|781046|781047|781049|781054|781055|781056|781057|781058|781060|781061|781067|781068|781069|781077|781079|781080|781082|781085|787088|787090|787130|789111|789362|794864|794943|795006|799267|802128|802129|802130|804987|804987|805058|805257|805269|805274|819083|819084|819085|819086|825269|825270|825271|825272|825273|825274|825275|825276|825277|825278|825279|825280|825281|825282|825283|825284|825285|825286|825287|825288|825289|825290|825291|825292|825293|825294|825295|825296|825297|825298|825299|825300|825301|825302|825303|825304|825305|825306|825307|825308|825309|825310|825311|825312|825313|825314|825315|825316|825317|825318|825319|825320|825321|825322|825323|825324|825325|825326|825327|825328|825329|825330|825331|825332|825333|825334|825335|825336|825337|825338|825339|825340|825341|825342|825343|825344|825345|825346|825347|825348|825349|825350|825351|825352|825353|825354|825355|825356|825357|825358|825359|825360|825361|825362|825363|825364|825365|825366|825367|825368|825369|825370|825371|825372|825373|825374|825375|825376|825377|825378|825379|825380|825381|825382|825383|825384|825385|825386|825387|825388|825389|825390|825391|825392|825393|825394|825395|825396|825397|825398|825399|825400|825401|825402|825403|825404|825405|825406|825407|825408|825409|825410|825411|825412|825413|825414|825415|825416|825417|825418|825419|825420|825421|825422|825423|825424|825425|825426|825427|825428|825429|825430|825431|825432|825433|825434|825435|825436|825437|825438|825439|825440|825441|825442|825443|850811|850813|850815|850817|850819|850856|850858|850860|851113|851119|851121|851128|851135|851137|851139|851364|851366|851369|851372|851374|851376|851378|858400|858402|858427|858431|858468|859062|859063|859071|881722|881723|881724|881725|881726|881727|881728|881729|881730|881730|881731|881732|881733|881734|881735|881736|881737|881738|881739|881740|881741|881742|881743|881744|881745|881746|881747|881748|881749|881750|881751|881752|881753|881754|881755|881756|881757|881758|881759|881760|881761|881762|881763|881764|881765|881766|881767|881768|881769|881770|881771|881772|881773|881774|881775|881776|881777|881778|881779|881780|881781|881782|881783|881784|881785|881786|881787|881788|881789|881790|881791|881792|881793|881794|881795|881796|881797|881798|881799|881800|881801|881802|881803|881804|881805|881806|881807|881808|881809|881810|881811|881812|881813|881814|881815|881816|881817|881818|881819|881820|881821|881822|881823|881824|881825|881826|881827|881828|881829|881830|881831|881832|881833|881834|881835|881836|881837|881838|881839|881840|881841|881842|881843|881844|881845|881846|881847|881848|881849|881850|881851|881852|881853|881854|881855|881856|881857|881858|881859|881860|881861|881862|881863|881864|881865|881866|881867|881868|881869|881870|881871|881872|881873|881874|881875|881876|881877|881878|881879|881880|881881|881882|881883|881884|881885|881886|881887|881888|881889|881890|881891|881892|881893|881894|881895|881896|881897|881898|881899|881900|881901|881902|881903|881904|881905|881906|881907|881908|881909|881910|881911|881912|881913|881914|881915|881916|881917|881918|881919|881920|881921|881922|881923|881924|882859|882860|882861|882862|882863|882864|882865|882866|882867|882868|882869|882870|882871|882872|882873|882874|882875|882876|882877|882878|882879|882987|882988|903751|922423|922424|922425|922426|922427|922428|922429|922430|922431|922432|922433|922434|922435|922436|922437|922438|922439|922440|922441|922442|922443|922444|922445|922446|922447|922448|922449|922450|922451|922452|922453|922454|922455|922456|922457|922458|922459|922460|922461|922462|922463|922464|922465|922466|922467|922468|922469|922470|922471|922472|922473|922474|922475|922476|922477|922478|922479|922480|922481|922482|922483|930995|930996|930997|930998|930999|931000|931001|931002|931003|931004|931005|931006|931007|931008|931009|931010|931011|931012|931013|931014|931015|931016|931017|931018|931019|931020|931021|931022|931023|931024|931025|931026|931027|931028|931029|931030|931031|931032|931033|931034|931035|931036|931037|931038|931039|931040|931041|931042|931043|931044|931045|931046|939855|939856|939857|939858|939859|939860|939861|939862|939863|939864|939865|939866|939867|939868|940667|940668|940669|940670|940671|940672|940673|940674|940675|940676|940677|942438|942439|942440|942441|942442|942443|942444|942445|942446|942447|942448|942449|942450|942451|942452|942453|942454|942455|942456|942457|942458|942459|942460|942461|942462|942463|942464|942465|942466|942467|942468|942469|942470|942471|942472|942473|942474|942475|942476|942477|942478|942479|942480|942481|942482|942483|942484|942485|942486|942487|942488|942489|942490|942491|942492|942493|942494|942495|942496|942497|942498|942499|942500|942501|942502|942503|942504|952801|952802|952803|952804|952805|952806|952807|952808|952809|952810|952811|952812|952813|952814|952815|952816|952817|952818|952819|952820|952821|952822|952823|952824|952825|952826|952827|952828|952829|952830|952831|952832|952833|952834|952835|952836|952837|952838|952839|952840|952841|952842|952843|959601|959602|959603|959604|959605|959606|959607|959608|959609|959610|959611|959612|960456|960457|962152|962153|971337", "text": "Limb-girdle muscular dystrophy, type 2J" }, { - "baseId": "27698|46998|55739|55741|55742|55743|55744|55745|55746|55747|55750|55751|55752|55753|55755|55756|55757|55759|55760|55762|55763|55764|55768|55771|55772|55777|55778|55779|55780|55782|55783|55784|55786|55787|55788|55790|55793|55794|55796|55798|55800|55803|55806|55808|55809|55810|55811|55813|55814|55816|55818|55819|55820|55821|55822|55823|55826|55829|55831|55832|55835|55836|55837|55840|55841|55842|55844|55845|55846|55847|55848|55849|55850|55852|55853|55855|55858|55859|55860|55863|55864|55867|55868|55870|55872|55873|55875|55876|55877|55878|55879|55880|55881|55882|55883|55884|55886|55887|55889|55890|55891|55893|55895|55896|55898|55899|55901|55904|55906|55907|55908|55910|55912|55915|55921|55923|55924|55927|55928|55929|55931|55933|55934|55935|55936|55938|55939|55940|55941|55942|55943|55944|55945|55949|55950|55951|55952|55954|55957|55958|55960|55964|55970|55971|55973|55975|55977|55979|55982|55983|55984|55985|55987|55988|55990|55991|55993|55995|55996|55998|55999|56000|56002|56003|56004|56006|56009|56013|56015|56016|56017|56018|56022|56023|56024|56026|56028|56029|56031|56032|56033|56034|56036|56038|56039|56040|56041|56043|56045|56047|56048|56049|56050|56051|56052|56053|56055|56056|56059|56060|56066|56067|56068|56069|56072|56074|56075|56076|56079|56080|56082|56085|56087|56088|56093|56094|56095|56096|56099|56100|56101|56103|56105|56108|56111|56113|56114|56115|56116|56117|56118|56119|56120|56124|56128|56130|56133|56134|56135|56136|56137|56138|56143|56145|56147|56148|56150|56152|56153|56155|56156|56158|56160|56164|56165|56166|56171|56172|56173|56174|56175|56176|56178|56179|56180|56181|56183|56187|56189|56190|56191|56193|56195|56196|56197|56199|56200|56201|56202|56205|56207|56209|56211|56214|56215|56218|56221|56222|56224|56228|56230|56231|56233|56235|56237|56239|56240|56243|56248|56251|56255|56258|56261|56262|56263|56264|56265|56270|56271|56275|56276|56281|56282|56285|56291|56292|56298|56300|56301|56302|56307|56315|56316|56317|56320|56321|56323|56324|56328|56330|56331|56333|56335|56342|56343|56344|56345|56347|56349|56350|56352|56353|56356|56359|56362|56364|56365|56366|56367|56370|56372|56373|56374|56375|56378|56381|56383|56387|56388|56389|56390|56392|56393|56394|56395|56396|56401|56405|56406|56408|56412|56413|56415|56418|56420|56421|56423|56425|56428|56430|56433|56436|56439|56440|56441|56442|56451|56454|56455|56457|56458|56459|56460|56462|56463|56464|56467|56469|56470|56471|56472|56473|56474|56477|56481|56482|56483|56485|56487|56494|56495|56496|56497|56498|56499|56500|56503|56504|56508|56512|56513|56514|56515|56516|56518|56520|56521|56524|56526|56530|56532|56533|56535|56537|56538|56539|56540|56542|56544|56545|56547|56549|56555|56557|56558|56559|56560|56564|56567|56570|56572|56574|56575|56576|56577|56578|56579|56580|56581|56582|56583|56584|56585|56586|56589|56592|56593|56594|56595|56596|56597|56600|56604|56606|56608|56610|56615|56616|56619|56620|56621|56624|56625|56628|56629|56631|56633|56634|56637|56639|56640|56641|56643|56645|56647|56648|56649|56652|56653|56658|56661|56665|56667|56668|56671|56672|56674|56675|56676|56677|56678|56679|56680|56682|56683|56684|56685|56686|56687|56689|56691|56693|56694|56696|56700|56701|56703|56705|56706|56708|56709|56710|56711|56712|56714|56716|56717|56718|56719|56722|56723|56725|56730|56731|56732|56735|56736|56737|56738|56742|56743|56746|56750|56751|56752|56753|56754|56755|56758|56759|56760|56762|56764|56766|56767|56768|56769|56773|56774|56775|56777|56784|56785|56786|56787|56788|56789|56790|56792|56793|56794|56797|56798|56800|56802|56803|56804|56805|56806|56807|56809|56810|56811|56812|56814|56816|56819|56822|56823|56825|56826|56827|56829|56831|56833|56834|56838|56839|56841|56845|56847|56848|56849|56851|56853|56854|56855|56856|56857|56858|56863|56864|56865|56866|56867|56868|56870|56871|56872|56873|56874|56875|56876|56878|56880|56881|56882|56884|56886|56887|56956|102168|102169|102170|102172|102183|102185|102188|102190|102192|102193|102194|102195|102200|102203|102206|102207|102208|102210|102212|102214|102215|102218|102219|102221|136109|136116|136120|136121|136126|136128|136129|136133|136134|136354|136355|136356|136357|136358|136359|136360|141478|141479|141490|141492|141493|141494|141501|141502|141509|141510|141515|141520|141523|141524|141526|141530|141534|141539|141542|141544|165601|172606|172609|172615|172621|172638|172644|172647|172652|172657|172665|172668|172677|172683|172691|172697|172698|172699|172700|172704|172717|172729|172734|172738|172800|172808|172813|172816|172820|172823|172829|172833|172838|172840|172841|172849|172850|172852|172854|172872|172877|172878|172879|172942|172944|172945|172964|172971|172973|172976|172981|172982|172997|172998|172999|173003|173008|173009|173015|173031|173035|173043|173044|173047|173049|173061|173068|173073|173074|173079|173080|173090|173102|173104|173107|173114|173121|173136|173137|173144|173147|173152|173158|173163|173166|173167|173169|173172|173176|173192|173193|173212|173213|173218|173221|173225|173229|173234|173240|173243|173246|173247|173248|173252|173301|173311|173313|173316|173321|173328|173329|173334|173342|173344|173349|173351|173354|173356|173357|173359|173361|173364|173372|173381|173394|173443|173444|173448|173452|173453|173463|173467|173478|173482|173483|173486|173487|173593|173598|173599|173600|173618|173624|173626|173720|173728|173728|173864|173867|177073|177335|177338|178113|178124|178128|178486|188939|189407|189409|189411|189415|189423|189437|189446|189451|189454|189459|189464|189467|189469|189476|189483|189486|189489|189491|189493|189498|189499|189503|189507|189514|189524|189535|189539|189541|189553|189566|189573|189578|189582|189588|189591|189594|189597|189599|189601|189619|189629|189630|189655|189661|189665|189666|189673|189686|189687|189746|189756|189760|189763|189764|189769|189770|191743|192712|192797|192869|192952|192957|193004|193082|193084|193217|193221|193226|193229|193231|193237|193241|193255|193357|193804|193962|194739|195117|195118|195137|195775|196130|196340|196400|198697|198702|198703|198733|198744|198753|198754|198768|198769|198772|198790|198791|198806|198811|198813|198817|198819|198827|198832|198838|198839|198852|198869|198881|198881|198888|198900|198909|198912|198924|198966|198969|198988|199000|199024|199029|199098|199110|199111|199112|199114|199126|199130|199139|199143|199149|199157|199174|199184|199191|199192|199203|199203|199212|199229|199233|199237|199238|199249|199264|199265|199266|199302|199310|199322|199334|199361|199365|199374|199407|199409|199432|199439|199441|199449|199474|199490|199492|199501|199512|199513|199524|199526|199539|199543|199556|199563|199578|199580|199674|199707|199712|199716|199753|199759|199764|199773|215231|224987|226892|228556|228579|228580|228584|228594|228595|228637|228640|228644|228646|228651|228656|228660|228662|228677|228681|228690|228695|228699|228725|228729|228742|228744|228746|228754|228761|228762|228779|228784|228786|228787|228789|228797|228811|228812|228816|228822|228885|228907|238389|238393|238420|238422|238441|238464|238479|238524|238547|238559|250420|258049|258054|258060|258080|258101|258111|258121|258122|258130|258137|258157|258158|258165|266024|266256|266423|266653|266666|266764|266857|266892|266899|267023|267084|267093|267127|267687|267725|267868|267951|267961|268239|268329|268531|268680|268795|268915|269229|269544|269646|271221|271856|272181|272182|272756|272908|273378|273761|274309|274709|274951|274956|283197|283198|283200|283201|283203|283204|283211|283212|283220|283221|283222|283223|283225|283228|283229|283232|283233|283235|283236|283240|283244|283249|283250|283251|283252|283253|283255|283256|283262|283263|283269|283270|283271|283274|283275|283277|283278|283294|283302|283303|283304|283309|283320|283321|283327|283328|283329|283332|283341|283343|283344|283346|283348|283349|283358|283361|283371|283374|283375|283376|283378|283379|283381|283389|283390|283394|283395|283401|283404|283405|283408|283411|283417|283418|283420|283424|283425|283427|283430|283432|283435|283439|283905|283908|283910|283911|283912|283914|283915|283923|283924|283925|283930|283931|283933|283935|283936|283941|283942|283947|283956|283957|283959|283961|283966|283969|283975|283976|283990|283991|283994|283995|283996|283997|283998|283999|284002|284006|284012|284020|284021|284023|284024|284027|284034|284036|284037|284044|284045|284046|284048|284051|284052|284053|284055|284056|284061|284062|284064|284065|284067|284068|284069|284075|284076|284082|284090|284091|284105|284106|284107|284109|284110|284111|284114|285677|285678|285679|285683|285684|285689|285691|285692|285693|285702|285704|285705|285706|285708|285715|285724|285729|285735|285737|285739|285740|285747|285752|285767|285769|285770|285773|285774|285776|285790|285793|285794|285814|285818|285825|285830|285831|285834|285840|285841|285843|285844|285851|285853|285855|285856|285859|285860|285861|285878|285888|285889|285892|285911|285912|285913|285920|285923|285924|285926|285938|285963|285976|285977|285981|285986|285987|285988|285990|285991|285993|285998|286000|286001|286008|286009|286010|286011|286014|286015|286016|286073|286074|286082|286085|286086|286091|286093|286099|286100|286101|286102|286105|286106|286108|286110|286111|286112|286115|286131|286132|286136|286138|286141|286145|286146|286150|286151|286152|286157|286158|286159|286167|286175|286178|286183|286184|286186|286187|286191|286195|286196|286197|286201|286202|286205|286207|286208|286209|286210|286239|286240|286244|286259|286263|286264|286266|286267|286275|286287|286290|286294|286295|286304|286305|286311|286316|286317|286318|286323|286324|286325|286333|286341|286342|286361|286376|286386|286387|286408|365857|366029|366059|366081|366102|366108|366113|366125|366433|366550|366591|391538|391541|391552|391580|391620|391690|391734|391800|391883|391972|391983|391994|392069|392178|392201|392223|392454|427953|434002|440575|440598|440625|443080|449343|449442|449466|449502|449511|449518|449526|449538|449578|449580|449604|449615|449649|449740|449795|449812|449813|449818|449819|449820|449898|449959|450028|450032|450033|450047|450058|450059|450153|481617|488370|488408|488433|488434|488441|488554|490965|491061|492034|492157|492980|492987|493629|496635|498948|499088|499096|499183|499219|499276|499294|499299|499301|499315|499347|499565|499629|499648|499709|509270|509350|516799|516947|516954|516976|517004|517021|517055|517144|517290|517300|517306|517341|517421|517460|517586|517605|557773|559003|559430|576600|576601|576602|576621|584002|585477|587073|608941|608944|614078|614848|629146|655182|655277|655296|655401|679387|685934|685979|686006|686009|686018|686046|690915|690981|697189|719445|746985|747001|794943|795006|859071|881722|881723|881724|881725|881726|881727|881728|881729|881730|881731|881732|881733|881734|881735|881736|881737|881738|881739|881740|881741|881742|881743|881744|881745|881746|881747|881748|881749|881750|881751|881752|881753|881754|881755|881756|881757|881758|881759|881760|881761|881762|881763|881764|881765|881766|881767|881768|881769|881770|881771|881772|881773|881774|881775|881776|881777|881778|881779|881780|881781|881782|881783|881784|881785|881786|881787|881788|881789|881790|881791|881792|881793|881794|881795|881796|881797|881798|881799|881800|881801|881802|881803|881804|881805|881806|881807|881808|881809|881810|881811|881812|881813|881814|881815|881816|881817|881818|881819|881820|881821|881822|881823|881824|881825|881826|881827|881828|881829|881830|881831|881832|881833|881834|881835|881836|881837|881838|881839|881840|881841|881842|881843|881844|881845|881846|881847|881848|881849|881850|881851|881852|881853|881854|881855|881856|881857|881858|881859|881860|881861|881862|881863|881864|881865|881866|881867|881868|881869|881870|881871|881872|881873|881874|881875|881876|881877|881878|881879|881880|881881|881882|881883|881884|881885|881886|881887|881888|881889|881890|881891|881892|881893|881894|881895|881896|881897|881898|881899|881900|881901|881902|881903|881904|881905|881906|881907|881908|881909|881910|881911|881912|881913|881914|881915|881916|881917|881918|881919|881920|881921|881922|881923|881924|882859|882860|882861|882862|882863|882864|882865|882866|882867|882868|882869|882870|882871|882872|882873|882874|882875|882876|882877|882878|882879|882987|882988|963072|970725", + "upstreamId": "27698|46998|55739|55741|55742|55743|55744|55745|55746|55747|55750|55751|55752|55753|55755|55756|55757|55759|55760|55762|55763|55764|55768|55771|55772|55777|55778|55779|55780|55782|55783|55784|55786|55787|55788|55790|55793|55794|55796|55798|55800|55803|55806|55808|55809|55810|55811|55813|55814|55816|55818|55819|55820|55821|55822|55823|55826|55829|55831|55832|55835|55836|55837|55840|55841|55842|55844|55845|55846|55847|55848|55849|55850|55852|55853|55855|55858|55859|55860|55863|55864|55867|55868|55870|55872|55873|55875|55876|55877|55878|55879|55880|55881|55882|55883|55884|55886|55887|55889|55890|55891|55893|55895|55896|55898|55899|55901|55904|55906|55907|55908|55910|55912|55915|55921|55923|55924|55927|55928|55929|55931|55933|55934|55935|55936|55938|55939|55940|55941|55942|55943|55944|55945|55949|55950|55951|55952|55954|55957|55958|55960|55964|55970|55971|55973|55975|55977|55979|55982|55983|55984|55985|55987|55988|55990|55991|55993|55995|55996|55998|55999|56000|56002|56003|56004|56006|56009|56013|56015|56016|56017|56018|56022|56023|56024|56026|56028|56029|56031|56032|56033|56034|56036|56038|56039|56040|56041|56043|56045|56047|56048|56049|56050|56051|56052|56053|56055|56056|56059|56060|56066|56067|56068|56069|56072|56074|56075|56076|56079|56080|56082|56085|56087|56088|56093|56094|56095|56096|56099|56100|56101|56103|56105|56108|56111|56113|56114|56115|56116|56117|56118|56119|56120|56124|56128|56130|56133|56134|56135|56136|56137|56138|56143|56145|56147|56148|56150|56152|56153|56155|56156|56158|56160|56164|56165|56166|56171|56172|56173|56174|56175|56176|56178|56179|56180|56181|56183|56187|56189|56190|56191|56193|56195|56196|56197|56199|56200|56201|56202|56205|56207|56209|56211|56214|56215|56218|56221|56222|56224|56228|56230|56231|56233|56235|56237|56239|56240|56243|56248|56251|56255|56258|56261|56262|56263|56264|56265|56270|56271|56275|56276|56281|56282|56285|56291|56292|56298|56300|56301|56302|56307|56315|56316|56317|56320|56321|56323|56324|56328|56330|56331|56333|56335|56342|56343|56344|56345|56347|56349|56350|56352|56353|56356|56359|56362|56364|56365|56366|56367|56370|56372|56373|56374|56375|56378|56381|56383|56387|56388|56389|56390|56392|56393|56394|56395|56396|56401|56405|56406|56408|56412|56413|56415|56418|56420|56421|56423|56425|56428|56430|56433|56436|56439|56440|56441|56442|56451|56454|56455|56457|56458|56459|56460|56462|56463|56464|56467|56469|56470|56471|56472|56473|56474|56477|56481|56482|56483|56485|56487|56494|56495|56496|56497|56498|56499|56500|56503|56504|56508|56512|56513|56514|56515|56516|56518|56520|56521|56524|56526|56530|56532|56533|56535|56537|56538|56539|56540|56542|56544|56545|56547|56549|56555|56557|56558|56559|56560|56564|56567|56570|56572|56574|56575|56576|56577|56578|56579|56580|56581|56582|56583|56584|56585|56586|56589|56592|56593|56594|56595|56596|56597|56600|56604|56606|56608|56610|56615|56616|56619|56620|56621|56624|56625|56628|56629|56631|56633|56634|56637|56639|56640|56641|56643|56645|56647|56648|56649|56652|56653|56658|56661|56665|56667|56668|56671|56672|56674|56675|56676|56677|56678|56679|56680|56682|56683|56684|56685|56686|56687|56689|56691|56693|56694|56696|56700|56701|56703|56705|56706|56708|56709|56710|56711|56712|56714|56716|56717|56718|56719|56722|56723|56725|56730|56731|56732|56735|56736|56737|56738|56742|56743|56746|56750|56751|56752|56753|56754|56755|56758|56759|56760|56762|56764|56766|56767|56768|56769|56773|56774|56775|56777|56784|56785|56786|56787|56788|56789|56790|56792|56793|56794|56797|56798|56800|56802|56803|56804|56805|56806|56807|56809|56810|56811|56812|56814|56816|56819|56822|56823|56825|56826|56827|56829|56831|56833|56834|56838|56839|56841|56845|56847|56848|56849|56851|56853|56854|56855|56856|56857|56858|56863|56864|56865|56866|56867|56868|56870|56871|56872|56873|56874|56875|56876|56878|56880|56881|56882|56884|56886|56887|56956|102168|102169|102170|102172|102183|102185|102188|102190|102192|102193|102194|102195|102200|102203|102206|102207|102208|102210|102212|102214|102215|102218|102219|102221|136109|136116|136120|136121|136126|136128|136129|136133|136134|136354|136355|136356|136357|136358|136359|136360|141478|141479|141490|141492|141493|141494|141501|141502|141509|141510|141515|141520|141523|141524|141526|141530|141534|141539|141542|141544|165601|172606|172609|172615|172621|172638|172644|172647|172652|172657|172665|172668|172677|172683|172691|172697|172698|172699|172700|172704|172717|172729|172734|172738|172800|172808|172813|172816|172820|172823|172829|172833|172838|172840|172841|172849|172850|172852|172854|172872|172877|172878|172879|172942|172944|172945|172964|172971|172973|172976|172981|172982|172997|172998|172999|173003|173008|173009|173015|173031|173035|173043|173044|173047|173049|173061|173068|173073|173074|173079|173080|173090|173102|173104|173107|173114|173121|173136|173137|173144|173147|173152|173158|173163|173166|173167|173169|173172|173176|173192|173193|173212|173213|173218|173221|173225|173229|173234|173240|173243|173246|173247|173248|173252|173301|173311|173313|173316|173321|173328|173329|173334|173342|173344|173349|173351|173354|173356|173357|173359|173361|173364|173372|173381|173394|173443|173444|173448|173452|173453|173463|173467|173478|173482|173483|173486|173487|173593|173598|173599|173600|173618|173624|173626|173720|173728|173728|173864|173867|177073|177335|177338|178113|178124|178128|178486|188939|189407|189409|189411|189415|189423|189437|189446|189451|189454|189459|189464|189467|189469|189476|189483|189486|189489|189491|189493|189498|189499|189503|189507|189514|189524|189535|189539|189541|189553|189566|189573|189578|189582|189588|189591|189594|189597|189599|189601|189619|189629|189630|189655|189661|189665|189666|189673|189686|189687|189746|189756|189760|189763|189764|189769|189770|191743|192712|192797|192869|192952|192957|193004|193082|193084|193217|193221|193226|193229|193231|193237|193241|193255|193357|193804|193962|194739|195117|195118|195137|195775|196130|196340|196400|198697|198702|198703|198733|198744|198753|198754|198768|198769|198772|198790|198791|198806|198811|198813|198817|198819|198827|198832|198838|198839|198852|198869|198881|198881|198888|198900|198909|198912|198924|198966|198969|198988|199000|199024|199029|199098|199110|199111|199112|199114|199126|199130|199139|199143|199149|199157|199174|199184|199191|199192|199203|199203|199212|199229|199233|199237|199238|199249|199264|199265|199266|199302|199310|199322|199334|199361|199365|199374|199407|199409|199432|199439|199441|199449|199474|199490|199492|199501|199512|199513|199524|199526|199539|199543|199556|199563|199578|199580|199674|199707|199712|199716|199753|199759|199764|199773|215231|224987|226892|228556|228579|228580|228584|228594|228595|228637|228640|228644|228646|228651|228656|228660|228662|228677|228681|228690|228695|228699|228725|228729|228742|228744|228746|228754|228761|228762|228779|228784|228786|228787|228789|228797|228811|228812|228816|228822|228885|228907|238389|238393|238420|238422|238441|238464|238479|238524|238547|238559|250420|258049|258054|258060|258080|258101|258111|258121|258122|258130|258137|258157|258158|258165|266024|266256|266423|266653|266666|266764|266857|266892|266899|267023|267084|267093|267127|267687|267725|267868|267951|267961|268239|268329|268531|268680|268795|268915|269229|269544|269646|271221|271856|272181|272182|272756|272908|273378|273761|274309|274709|274951|274956|283197|283198|283200|283201|283203|283204|283211|283212|283220|283221|283222|283223|283225|283228|283229|283232|283233|283235|283236|283240|283244|283249|283250|283251|283252|283253|283255|283256|283262|283263|283269|283270|283271|283274|283275|283277|283278|283294|283302|283303|283304|283309|283320|283321|283327|283328|283329|283332|283341|283343|283344|283346|283348|283349|283358|283361|283371|283374|283375|283376|283378|283379|283381|283389|283390|283394|283395|283401|283404|283405|283408|283411|283417|283418|283420|283424|283425|283427|283430|283432|283435|283439|283905|283908|283910|283911|283912|283914|283915|283923|283924|283925|283930|283931|283933|283935|283936|283941|283942|283947|283956|283957|283959|283961|283966|283969|283975|283976|283990|283991|283994|283995|283996|283997|283998|283999|284002|284006|284012|284020|284021|284023|284024|284027|284034|284036|284037|284044|284045|284046|284048|284051|284052|284053|284055|284056|284061|284062|284064|284065|284067|284068|284069|284075|284076|284082|284090|284091|284105|284106|284107|284109|284110|284111|284114|285677|285678|285679|285683|285684|285689|285691|285692|285693|285702|285704|285705|285706|285708|285715|285724|285729|285735|285737|285739|285740|285747|285752|285767|285769|285770|285773|285774|285776|285790|285793|285794|285814|285818|285825|285830|285831|285834|285840|285841|285843|285844|285851|285853|285855|285856|285859|285860|285861|285878|285888|285889|285892|285911|285912|285913|285920|285923|285924|285926|285938|285963|285976|285977|285981|285986|285987|285988|285990|285991|285993|285998|286000|286001|286008|286009|286010|286011|286014|286015|286016|286073|286074|286082|286085|286086|286091|286093|286099|286100|286101|286102|286105|286106|286108|286110|286111|286112|286115|286131|286132|286136|286138|286141|286145|286146|286150|286151|286152|286157|286158|286159|286167|286175|286178|286183|286184|286186|286187|286191|286195|286196|286197|286201|286202|286205|286207|286208|286209|286210|286239|286240|286244|286259|286263|286264|286266|286267|286275|286287|286290|286294|286295|286304|286305|286311|286316|286317|286318|286323|286324|286325|286333|286341|286342|286361|286376|286386|286387|286408|365857|366029|366059|366081|366102|366108|366113|366125|366433|366550|366591|391538|391541|391552|391580|391620|391690|391734|391800|391883|391972|391983|391994|392069|392178|392201|392223|392454|427953|434002|440575|440598|440625|443080|449343|449442|449466|449502|449511|449518|449526|449538|449578|449580|449604|449615|449649|449740|449795|449812|449813|449818|449819|449820|449898|449959|450028|450032|450033|450047|450058|450059|450153|481617|488370|488408|488433|488434|488441|488554|490965|491061|492034|492157|492980|492987|493629|496635|498948|499088|499096|499183|499219|499276|499294|499299|499301|499315|499347|499565|499629|499648|499709|509270|509350|516799|516947|516954|516976|517004|517021|517055|517144|517290|517300|517306|517341|517421|517460|517586|517605|557773|559003|559430|576600|576601|576602|576621|584002|585477|587073|608941|608944|614078|614848|629146|655182|655277|655296|655401|679387|685934|685979|686006|686009|686018|686046|690915|690981|697189|719445|746985|747001|794943|795006|859071|881722|881723|881724|881725|881726|881727|881728|881729|881730|881731|881732|881733|881734|881735|881736|881737|881738|881739|881740|881741|881742|881743|881744|881745|881746|881747|881748|881749|881750|881751|881752|881753|881754|881755|881756|881757|881758|881759|881760|881761|881762|881763|881764|881765|881766|881767|881768|881769|881770|881771|881772|881773|881774|881775|881776|881777|881778|881779|881780|881781|881782|881783|881784|881785|881786|881787|881788|881789|881790|881791|881792|881793|881794|881795|881796|881797|881798|881799|881800|881801|881802|881803|881804|881805|881806|881807|881808|881809|881810|881811|881812|881813|881814|881815|881816|881817|881818|881819|881820|881821|881822|881823|881824|881825|881826|881827|881828|881829|881830|881831|881832|881833|881834|881835|881836|881837|881838|881839|881840|881841|881842|881843|881844|881845|881846|881847|881848|881849|881850|881851|881852|881853|881854|881855|881856|881857|881858|881859|881860|881861|881862|881863|881864|881865|881866|881867|881868|881869|881870|881871|881872|881873|881874|881875|881876|881877|881878|881879|881880|881881|881882|881883|881884|881885|881886|881887|881888|881889|881890|881891|881892|881893|881894|881895|881896|881897|881898|881899|881900|881901|881902|881903|881904|881905|881906|881907|881908|881909|881910|881911|881912|881913|881914|881915|881916|881917|881918|881919|881920|881921|881922|881923|881924|882859|882860|882861|882862|882863|882864|882865|882866|882867|882868|882869|882870|882871|882872|882873|882874|882875|882876|882877|882878|882879|882987|882988|963072|970725", "text": "Myopathy, myofibrillar, 9, with early respiratory failure" }, { - "baseId": "27698|27699|27700|55739|55741|55742|55743|55744|55745|55746|55747|55750|55751|55752|55753|55755|55756|55757|55759|55760|55762|55763|55764|55768|55771|55772|55777|55778|55779|55780|55782|55783|55784|55786|55787|55788|55790|55793|55794|55796|55798|55800|55803|55806|55808|55809|55810|55811|55813|55814|55816|55818|55819|55820|55821|55822|55823|55826|55829|55831|55832|55835|55836|55837|55840|55841|55842|55844|55845|55846|55847|55848|55849|55850|55852|55853|55855|55858|55859|55860|55863|55864|55867|55868|55870|55872|55873|55875|55876|55877|55878|55879|55880|55881|55882|55883|55884|55886|55887|55889|55890|55891|55893|55895|55896|55898|55899|55901|55904|55906|55907|55908|55910|55912|55915|55921|55923|55924|55927|55928|55929|55931|55933|55934|55935|55936|55938|55939|55940|55941|55942|55943|55944|55945|55949|55950|55951|55952|55954|55957|55958|55960|55964|55970|55971|55973|55975|55977|55979|55982|55983|55984|55985|55987|55988|55990|55991|55993|55995|55996|55998|55999|56000|56002|56003|56004|56006|56009|56013|56015|56016|56017|56018|56022|56023|56024|56026|56028|56029|56031|56032|56033|56034|56036|56038|56039|56040|56041|56043|56045|56047|56048|56049|56050|56051|56052|56053|56055|56056|56059|56060|56066|56067|56068|56069|56072|56074|56075|56076|56079|56080|56082|56085|56087|56088|56093|56094|56095|56096|56099|56100|56101|56103|56105|56108|56111|56113|56114|56115|56116|56117|56118|56119|56120|56124|56128|56130|56133|56134|56135|56136|56137|56138|56143|56145|56147|56148|56150|56152|56153|56155|56156|56158|56160|56164|56165|56166|56171|56172|56173|56174|56175|56176|56178|56179|56180|56181|56183|56187|56189|56190|56191|56193|56195|56196|56197|56199|56200|56201|56202|56205|56207|56209|56211|56214|56215|56218|56221|56222|56224|56228|56230|56231|56233|56235|56237|56239|56240|56243|56248|56251|56255|56258|56261|56262|56263|56264|56265|56270|56271|56275|56276|56281|56282|56285|56291|56292|56298|56300|56301|56302|56307|56315|56316|56317|56320|56321|56322|56323|56324|56328|56330|56331|56333|56335|56342|56343|56344|56345|56347|56349|56350|56352|56353|56356|56359|56362|56364|56365|56366|56367|56370|56372|56373|56374|56375|56378|56381|56383|56387|56388|56389|56390|56392|56393|56394|56395|56396|56401|56405|56406|56408|56412|56413|56415|56418|56420|56421|56423|56425|56428|56430|56433|56436|56439|56440|56441|56442|56451|56454|56455|56457|56458|56459|56460|56462|56463|56464|56467|56469|56470|56471|56472|56473|56474|56477|56481|56482|56483|56485|56487|56494|56495|56496|56497|56498|56499|56500|56503|56504|56508|56512|56513|56514|56515|56516|56518|56520|56521|56524|56526|56530|56532|56533|56535|56537|56538|56539|56540|56542|56544|56545|56547|56549|56555|56557|56558|56559|56560|56564|56567|56570|56572|56574|56575|56576|56577|56578|56579|56580|56581|56582|56583|56584|56585|56586|56589|56592|56593|56594|56595|56596|56597|56600|56604|56606|56608|56610|56615|56616|56619|56620|56621|56624|56625|56628|56629|56631|56633|56634|56637|56639|56640|56641|56643|56645|56647|56648|56649|56652|56653|56658|56661|56665|56667|56668|56671|56672|56674|56675|56676|56677|56678|56679|56680|56682|56683|56684|56685|56686|56687|56689|56691|56693|56694|56696|56700|56701|56703|56705|56706|56708|56709|56710|56711|56712|56714|56716|56717|56718|56719|56722|56723|56725|56730|56731|56732|56735|56736|56737|56738|56742|56743|56746|56750|56751|56752|56753|56754|56755|56758|56759|56760|56762|56764|56766|56767|56768|56769|56773|56774|56775|56777|56784|56785|56786|56787|56788|56789|56790|56792|56793|56794|56797|56798|56800|56802|56803|56804|56805|56806|56807|56809|56810|56811|56812|56814|56816|56819|56822|56823|56825|56826|56827|56829|56831|56833|56834|56838|56839|56841|56845|56847|56848|56849|56851|56853|56854|56855|56856|56857|56858|56863|56864|56865|56866|56867|56868|56870|56871|56872|56873|56874|56875|56876|56878|56880|56881|56882|56884|56886|56887|56956|102168|102169|102170|102172|102183|102185|102188|102190|102192|102193|102194|102195|102200|102203|102206|102207|102208|102210|102212|102214|102215|102218|102219|102221|136109|136116|136120|136121|136126|136128|136129|136133|136134|136358|141478|141479|141490|141492|141493|141494|141501|141502|141509|141510|141515|141520|141523|141524|141526|141530|141534|141539|141542|141544|165601|172606|172609|172615|172621|172638|172644|172647|172652|172657|172665|172668|172677|172683|172691|172697|172698|172699|172700|172704|172717|172729|172734|172738|172800|172808|172813|172816|172820|172823|172829|172833|172838|172840|172841|172849|172850|172852|172854|172872|172877|172878|172879|172942|172944|172945|172964|172971|172973|172976|172981|172982|172997|172998|172999|173003|173008|173009|173015|173031|173035|173043|173044|173047|173049|173061|173068|173073|173074|173079|173080|173090|173102|173104|173107|173114|173121|173136|173137|173144|173147|173152|173158|173163|173166|173167|173169|173172|173176|173192|173193|173212|173213|173218|173221|173225|173229|173234|173240|173243|173246|173247|173248|173252|173301|173311|173313|173316|173321|173328|173329|173334|173342|173344|173349|173351|173354|173356|173357|173359|173361|173364|173372|173381|173394|173443|173444|173448|173452|173453|173463|173467|173478|173482|173483|173486|173487|173593|173598|173599|173600|173618|173624|173626|173720|173728|173864|173867|177073|177335|177338|178113|178124|178128|178486|188939|189407|189409|189411|189415|189423|189437|189446|189451|189454|189459|189464|189467|189469|189476|189483|189486|189489|189491|189493|189498|189499|189503|189507|189514|189524|189535|189539|189541|189553|189566|189573|189578|189582|189588|189591|189594|189597|189599|189601|189619|189629|189630|189655|189661|189665|189666|189673|189686|189687|189746|189756|189760|189763|189764|189769|189770|191743|192712|192797|192869|192952|192957|193004|193082|193084|193217|193221|193226|193229|193231|193237|193241|193255|193357|193804|193962|194739|195117|195118|195137|195775|196130|196340|196400|198697|198702|198703|198733|198744|198753|198754|198768|198769|198772|198790|198791|198806|198811|198813|198817|198819|198827|198832|198838|198839|198852|198869|198881|198888|198900|198909|198912|198924|198966|198969|198988|199000|199024|199029|199098|199110|199111|199112|199114|199126|199130|199139|199143|199149|199157|199174|199184|199191|199192|199203|199203|199212|199229|199233|199237|199238|199249|199264|199265|199266|199302|199310|199322|199334|199361|199365|199374|199407|199409|199432|199439|199441|199449|199474|199490|199492|199501|199512|199513|199524|199526|199539|199543|199556|199563|199578|199580|199674|199707|199712|199716|199753|199759|199764|199773|215231|226892|228556|228579|228580|228584|228594|228595|228637|228640|228644|228646|228651|228656|228660|228662|228677|228681|228690|228695|228699|228725|228729|228742|228744|228746|228754|228761|228762|228779|228784|228786|228787|228789|228797|228811|228812|228816|228822|228885|228907|238389|238393|238420|238422|238441|238464|238479|238514|238524|238547|238559|250420|258049|258054|258060|258080|258101|258111|258121|258122|258130|258137|258157|258158|258165|266024|266256|266423|266653|266666|266857|266892|266899|267023|267084|267093|267127|267687|267725|267868|267951|267961|268239|268329|268531|268680|268795|268915|269229|269544|269646|271221|271856|272181|272182|272756|272908|273378|273761|274309|274709|274951|274956|283197|283198|283200|283201|283203|283204|283211|283212|283220|283221|283222|283223|283225|283228|283229|283232|283233|283235|283236|283240|283244|283249|283250|283251|283252|283253|283255|283256|283262|283263|283269|283270|283271|283274|283275|283277|283278|283294|283302|283303|283304|283309|283320|283321|283327|283328|283329|283332|283341|283343|283344|283346|283348|283349|283358|283361|283371|283374|283375|283376|283378|283379|283381|283389|283390|283394|283395|283401|283404|283405|283408|283411|283417|283418|283420|283424|283425|283427|283430|283432|283435|283439|283905|283908|283910|283911|283912|283914|283915|283923|283924|283925|283930|283931|283933|283935|283936|283941|283942|283947|283956|283957|283959|283961|283966|283969|283975|283976|283990|283991|283994|283995|283996|283997|283998|283999|284002|284006|284012|284020|284021|284023|284024|284027|284034|284036|284037|284044|284045|284046|284048|284051|284052|284053|284055|284056|284061|284062|284064|284065|284067|284068|284069|284075|284076|284082|284090|284091|284105|284106|284107|284109|284110|284111|284114|285677|285678|285679|285683|285684|285689|285691|285692|285693|285702|285704|285705|285706|285708|285715|285724|285729|285735|285737|285739|285740|285747|285752|285767|285769|285770|285773|285774|285776|285790|285793|285794|285814|285818|285825|285830|285831|285834|285840|285841|285843|285844|285851|285853|285855|285856|285859|285860|285861|285878|285888|285889|285892|285911|285912|285913|285920|285923|285924|285926|285938|285963|285976|285977|285981|285986|285987|285988|285990|285991|285993|285998|286000|286001|286008|286009|286010|286011|286014|286015|286016|286073|286074|286082|286085|286086|286091|286093|286099|286100|286101|286102|286105|286106|286108|286110|286111|286112|286115|286131|286132|286136|286138|286141|286145|286146|286150|286151|286152|286157|286158|286159|286167|286175|286178|286183|286184|286186|286187|286191|286195|286196|286197|286201|286202|286205|286207|286208|286209|286210|286239|286240|286244|286259|286263|286264|286266|286267|286275|286287|286290|286294|286295|286304|286305|286311|286316|286317|286318|286323|286324|286325|286333|286341|286342|286361|286376|286386|286387|286408|365857|366029|366059|366081|366102|366108|366113|366125|366433|366550|366591|391538|391541|391552|391580|391620|391690|391724|391734|391800|391883|391910|391972|391983|391994|392069|392158|392178|392201|392223|392454|425444|427953|434002|440575|440598|440625|443080|449343|449442|449466|449502|449511|449518|449526|449538|449578|449580|449604|449615|449649|449740|449795|449812|449813|449818|449819|449820|449898|449959|450028|450032|450033|450047|450058|450059|450153|488370|488408|488433|488434|488441|488554|490965|491061|492034|492157|492980|492987|493629|496635|498948|499088|499096|499183|499219|499276|499294|499299|499301|499315|499347|499565|499629|499648|499709|509270|509350|513517|513519|516799|516947|516954|516976|517004|517021|517055|517144|517290|517300|517306|517341|517421|517434|517460|517586|517605|557773|559003|559430|576600|576601|576602|576621|578395|584002|585477|587073|610409|610585|614848|629146|653913|653914|655182|655277|655296|655401|679387|685934|685979|686006|686009|686018|686046|690915|690981|697189|719445|746985|747001|794943|795006|859071|881722|881723|881724|881725|881726|881727|881728|881729|881730|881731|881732|881733|881734|881735|881736|881737|881738|881739|881740|881741|881742|881743|881744|881745|881746|881747|881748|881749|881750|881751|881752|881753|881754|881755|881756|881757|881758|881759|881760|881761|881762|881763|881764|881765|881766|881767|881768|881769|881770|881771|881772|881773|881774|881775|881776|881777|881778|881779|881780|881781|881782|881783|881784|881785|881786|881787|881788|881789|881790|881791|881792|881793|881794|881795|881796|881797|881798|881799|881800|881801|881802|881803|881804|881805|881806|881807|881808|881809|881810|881811|881812|881813|881814|881815|881816|881817|881818|881819|881820|881821|881822|881823|881824|881825|881826|881827|881828|881829|881830|881831|881832|881833|881834|881835|881836|881837|881838|881839|881840|881841|881842|881843|881844|881845|881846|881847|881848|881849|881850|881851|881852|881853|881854|881855|881856|881857|881858|881859|881860|881861|881862|881863|881864|881865|881866|881867|881868|881869|881870|881871|881872|881873|881874|881875|881876|881877|881878|881879|881880|881881|881882|881883|881884|881885|881886|881887|881888|881889|881890|881891|881892|881893|881894|881895|881896|881897|881898|881899|881900|881901|881902|881903|881904|881905|881906|881907|881908|881909|881910|881911|881912|881913|881914|881915|881916|881917|881918|881919|881920|881921|881922|881923|881924|882859|882860|882861|882862|882863|882864|882865|882866|882867|882868|882869|882870|882871|882872|882873|882874|882875|882876|882877|882878|882879|882987|882988|974481|974482|980906", + "upstreamId": "27698|27699|27700|55739|55741|55742|55743|55744|55745|55746|55747|55750|55751|55752|55753|55755|55756|55757|55759|55760|55762|55763|55764|55768|55771|55772|55777|55778|55779|55780|55782|55783|55784|55786|55787|55788|55790|55793|55794|55796|55798|55800|55803|55806|55808|55809|55810|55811|55813|55814|55816|55818|55819|55820|55821|55822|55823|55826|55829|55831|55832|55835|55836|55837|55840|55841|55842|55844|55845|55846|55847|55848|55849|55850|55852|55853|55855|55858|55859|55860|55863|55864|55867|55868|55870|55872|55873|55875|55876|55877|55878|55879|55880|55881|55882|55883|55884|55886|55887|55889|55890|55891|55893|55895|55896|55898|55899|55901|55904|55906|55907|55908|55910|55912|55915|55921|55923|55924|55927|55928|55929|55931|55933|55934|55935|55936|55938|55939|55940|55941|55942|55943|55944|55945|55949|55950|55951|55952|55954|55957|55958|55960|55964|55970|55971|55973|55975|55977|55979|55982|55983|55984|55985|55987|55988|55990|55991|55993|55995|55996|55998|55999|56000|56002|56003|56004|56006|56009|56013|56015|56016|56017|56018|56022|56023|56024|56026|56028|56029|56031|56032|56033|56034|56036|56038|56039|56040|56041|56043|56045|56047|56048|56049|56050|56051|56052|56053|56055|56056|56059|56060|56066|56067|56068|56069|56072|56074|56075|56076|56079|56080|56082|56085|56087|56088|56093|56094|56095|56096|56099|56100|56101|56103|56105|56108|56111|56113|56114|56115|56116|56117|56118|56119|56120|56124|56128|56130|56133|56134|56135|56136|56137|56138|56143|56145|56147|56148|56150|56152|56153|56155|56156|56158|56160|56164|56165|56166|56171|56172|56173|56174|56175|56176|56178|56179|56180|56181|56183|56187|56189|56190|56191|56193|56195|56196|56197|56199|56200|56201|56202|56205|56207|56209|56211|56214|56215|56218|56221|56222|56224|56228|56230|56231|56233|56235|56237|56239|56240|56243|56248|56251|56255|56258|56261|56262|56263|56264|56265|56270|56271|56275|56276|56281|56282|56285|56291|56292|56298|56300|56301|56302|56307|56315|56316|56317|56320|56321|56322|56323|56324|56328|56330|56331|56333|56335|56342|56343|56344|56345|56347|56349|56350|56352|56353|56356|56359|56362|56364|56365|56366|56367|56370|56372|56373|56374|56375|56378|56381|56383|56387|56388|56389|56390|56392|56393|56394|56395|56396|56401|56405|56406|56408|56412|56413|56415|56418|56420|56421|56423|56425|56428|56430|56433|56436|56439|56440|56441|56442|56451|56454|56455|56457|56458|56459|56460|56462|56463|56464|56467|56469|56470|56471|56472|56473|56474|56477|56481|56482|56483|56485|56487|56494|56495|56496|56497|56498|56499|56500|56503|56504|56508|56512|56513|56514|56515|56516|56518|56520|56521|56524|56526|56530|56532|56533|56535|56537|56538|56539|56540|56542|56544|56545|56547|56549|56555|56557|56558|56559|56560|56564|56567|56570|56572|56574|56575|56576|56577|56578|56579|56580|56581|56582|56583|56584|56585|56586|56589|56592|56593|56594|56595|56596|56597|56600|56604|56606|56608|56610|56615|56616|56619|56620|56621|56624|56625|56628|56629|56631|56633|56634|56637|56639|56640|56641|56643|56645|56647|56648|56649|56652|56653|56658|56661|56665|56667|56668|56671|56672|56674|56675|56676|56677|56678|56679|56680|56682|56683|56684|56685|56686|56687|56689|56691|56693|56694|56696|56700|56701|56703|56705|56706|56708|56709|56710|56711|56712|56714|56716|56717|56718|56719|56722|56723|56725|56730|56731|56732|56735|56736|56737|56738|56742|56743|56746|56750|56751|56752|56753|56754|56755|56758|56759|56760|56762|56764|56766|56767|56768|56769|56773|56774|56775|56777|56784|56785|56786|56787|56788|56789|56790|56792|56793|56794|56797|56798|56800|56802|56803|56804|56805|56806|56807|56809|56810|56811|56812|56814|56816|56819|56822|56823|56825|56826|56827|56829|56831|56833|56834|56838|56839|56841|56845|56847|56848|56849|56851|56853|56854|56855|56856|56857|56858|56863|56864|56865|56866|56867|56868|56870|56871|56872|56873|56874|56875|56876|56878|56880|56881|56882|56884|56886|56887|56956|102168|102169|102170|102172|102183|102185|102188|102190|102192|102193|102194|102195|102200|102203|102206|102207|102208|102210|102212|102214|102215|102218|102219|102221|136109|136116|136120|136121|136126|136128|136129|136133|136134|136358|141478|141479|141490|141492|141493|141494|141501|141502|141509|141510|141515|141520|141523|141524|141526|141530|141534|141539|141542|141544|165601|172606|172609|172615|172621|172638|172644|172647|172652|172657|172665|172668|172677|172683|172691|172697|172698|172699|172700|172704|172717|172729|172734|172738|172800|172808|172813|172816|172820|172823|172829|172833|172838|172840|172841|172849|172850|172852|172854|172872|172877|172878|172879|172942|172944|172945|172964|172971|172973|172976|172981|172982|172997|172998|172999|173003|173008|173009|173015|173031|173035|173043|173044|173047|173049|173061|173068|173073|173074|173079|173080|173090|173102|173104|173107|173114|173121|173136|173137|173144|173147|173152|173158|173163|173166|173167|173169|173172|173176|173192|173193|173212|173213|173218|173221|173225|173229|173234|173240|173243|173246|173247|173248|173252|173301|173311|173313|173316|173321|173328|173329|173334|173342|173344|173349|173351|173354|173356|173357|173359|173361|173364|173372|173381|173394|173443|173444|173448|173452|173453|173463|173467|173478|173482|173483|173486|173487|173593|173598|173599|173600|173618|173624|173626|173720|173728|173864|173867|177073|177335|177338|178113|178124|178128|178486|188939|189407|189409|189411|189415|189423|189437|189446|189451|189454|189459|189464|189467|189469|189476|189483|189486|189489|189491|189493|189498|189499|189503|189507|189514|189524|189535|189539|189541|189553|189566|189573|189578|189582|189588|189591|189594|189597|189599|189601|189619|189629|189630|189655|189661|189665|189666|189673|189686|189687|189746|189756|189760|189763|189764|189769|189770|191743|192712|192797|192869|192952|192957|193004|193082|193084|193217|193221|193226|193229|193231|193237|193241|193255|193357|193804|193962|194739|195117|195118|195137|195775|196130|196340|196400|198697|198702|198703|198733|198744|198753|198754|198768|198769|198772|198790|198791|198806|198811|198813|198817|198819|198827|198832|198838|198839|198852|198869|198881|198888|198900|198909|198912|198924|198966|198969|198988|199000|199024|199029|199098|199110|199111|199112|199114|199126|199130|199139|199143|199149|199157|199174|199184|199191|199192|199203|199203|199212|199229|199233|199237|199238|199249|199264|199265|199266|199302|199310|199322|199334|199361|199365|199374|199407|199409|199432|199439|199441|199449|199474|199490|199492|199501|199512|199513|199524|199526|199539|199543|199556|199563|199578|199580|199674|199707|199712|199716|199753|199759|199764|199773|215231|226892|228556|228579|228580|228584|228594|228595|228637|228640|228644|228646|228651|228656|228660|228662|228677|228681|228690|228695|228699|228725|228729|228742|228744|228746|228754|228761|228762|228779|228784|228786|228787|228789|228797|228811|228812|228816|228822|228885|228907|238389|238393|238420|238422|238441|238464|238479|238514|238524|238547|238559|250420|258049|258054|258060|258080|258101|258111|258121|258122|258130|258137|258157|258158|258165|266024|266256|266423|266653|266666|266857|266892|266899|267023|267084|267093|267127|267687|267725|267868|267951|267961|268239|268329|268531|268680|268795|268915|269229|269544|269646|271221|271856|272181|272182|272756|272908|273378|273761|274309|274709|274951|274956|283197|283198|283200|283201|283203|283204|283211|283212|283220|283221|283222|283223|283225|283228|283229|283232|283233|283235|283236|283240|283244|283249|283250|283251|283252|283253|283255|283256|283262|283263|283269|283270|283271|283274|283275|283277|283278|283294|283302|283303|283304|283309|283320|283321|283327|283328|283329|283332|283341|283343|283344|283346|283348|283349|283358|283361|283371|283374|283375|283376|283378|283379|283381|283389|283390|283394|283395|283401|283404|283405|283408|283411|283417|283418|283420|283424|283425|283427|283430|283432|283435|283439|283905|283908|283910|283911|283912|283914|283915|283923|283924|283925|283930|283931|283933|283935|283936|283941|283942|283947|283956|283957|283959|283961|283966|283969|283975|283976|283990|283991|283994|283995|283996|283997|283998|283999|284002|284006|284012|284020|284021|284023|284024|284027|284034|284036|284037|284044|284045|284046|284048|284051|284052|284053|284055|284056|284061|284062|284064|284065|284067|284068|284069|284075|284076|284082|284090|284091|284105|284106|284107|284109|284110|284111|284114|285677|285678|285679|285683|285684|285689|285691|285692|285693|285702|285704|285705|285706|285708|285715|285724|285729|285735|285737|285739|285740|285747|285752|285767|285769|285770|285773|285774|285776|285790|285793|285794|285814|285818|285825|285830|285831|285834|285840|285841|285843|285844|285851|285853|285855|285856|285859|285860|285861|285878|285888|285889|285892|285911|285912|285913|285920|285923|285924|285926|285938|285963|285976|285977|285981|285986|285987|285988|285990|285991|285993|285998|286000|286001|286008|286009|286010|286011|286014|286015|286016|286073|286074|286082|286085|286086|286091|286093|286099|286100|286101|286102|286105|286106|286108|286110|286111|286112|286115|286131|286132|286136|286138|286141|286145|286146|286150|286151|286152|286157|286158|286159|286167|286175|286178|286183|286184|286186|286187|286191|286195|286196|286197|286201|286202|286205|286207|286208|286209|286210|286239|286240|286244|286259|286263|286264|286266|286267|286275|286287|286290|286294|286295|286304|286305|286311|286316|286317|286318|286323|286324|286325|286333|286341|286342|286361|286376|286386|286387|286408|365857|366029|366059|366081|366102|366108|366113|366125|366433|366550|366591|391538|391541|391552|391580|391620|391690|391724|391734|391800|391883|391910|391972|391983|391994|392069|392158|392178|392201|392223|392454|425444|427953|434002|440575|440598|440625|443080|449343|449442|449466|449502|449511|449518|449526|449538|449578|449580|449604|449615|449649|449740|449795|449812|449813|449818|449819|449820|449898|449959|450028|450032|450033|450047|450058|450059|450153|488370|488408|488433|488434|488441|488554|490965|491061|492034|492157|492980|492987|493629|496635|498948|499088|499096|499183|499219|499276|499294|499299|499301|499315|499347|499565|499629|499648|499709|509270|509350|513517|513519|516799|516947|516954|516976|517004|517021|517055|517144|517290|517300|517306|517341|517421|517434|517460|517586|517605|557773|559003|559430|576600|576601|576602|576621|578395|584002|585477|587073|610409|610585|614848|629146|653913|653914|655182|655277|655296|655401|679387|685934|685979|686006|686009|686018|686046|690915|690981|697189|719445|746985|747001|794943|795006|859071|881722|881723|881724|881725|881726|881727|881728|881729|881730|881731|881732|881733|881734|881735|881736|881737|881738|881739|881740|881741|881742|881743|881744|881745|881746|881747|881748|881749|881750|881751|881752|881753|881754|881755|881756|881757|881758|881759|881760|881761|881762|881763|881764|881765|881766|881767|881768|881769|881770|881771|881772|881773|881774|881775|881776|881777|881778|881779|881780|881781|881782|881783|881784|881785|881786|881787|881788|881789|881790|881791|881792|881793|881794|881795|881796|881797|881798|881799|881800|881801|881802|881803|881804|881805|881806|881807|881808|881809|881810|881811|881812|881813|881814|881815|881816|881817|881818|881819|881820|881821|881822|881823|881824|881825|881826|881827|881828|881829|881830|881831|881832|881833|881834|881835|881836|881837|881838|881839|881840|881841|881842|881843|881844|881845|881846|881847|881848|881849|881850|881851|881852|881853|881854|881855|881856|881857|881858|881859|881860|881861|881862|881863|881864|881865|881866|881867|881868|881869|881870|881871|881872|881873|881874|881875|881876|881877|881878|881879|881880|881881|881882|881883|881884|881885|881886|881887|881888|881889|881890|881891|881892|881893|881894|881895|881896|881897|881898|881899|881900|881901|881902|881903|881904|881905|881906|881907|881908|881909|881910|881911|881912|881913|881914|881915|881916|881917|881918|881919|881920|881921|881922|881923|881924|882859|882860|882861|882862|882863|882864|882865|882866|882867|882868|882869|882870|882871|882872|882873|882874|882875|882876|882877|882878|882879|882987|882988|974481|974482|980906", "text": "Myopathy, early-onset, with fatal cardiomyopathy" }, { - "baseId": "27701|27702|27703|27705|27706|27707|27708|27711|27713|49466|49469|49804|49805|49806|49807|49808|49809|49810|49811|49812|49813|49814|49815|49816|49817|49818|49819|49820|138831|187680|187681|187682|187683|187684|242957|242958|242959|242960|242961|242962|242963|242964|264800|329600|329602|329604|329606|329607|329614|339838|339843|339850|339862|339878|339888|339896|339905|345603|345607|345611|345612|345613|345614|345615|345621|345622|346931|346932|346943|346949|346958|346959|346973|376529|376530|402488|402491|402496|402497|402498|402500|402957|402959|402963|402969|403062|403066|403072|403073|403084|422190|426726|432415|467356|467358|467360|467365|467370|467378|467381|467391|468296|468298|468302|468736|468737|468748|468750|468752|468753|468758|468759|468766|468979|468983|468985|468995|468998|469000|479188|479267|479276|487763|494047|506162|514732|531712|531713|531719|531720|531722|531728|531731|531775|531776|531777|531779|531783|531786|531830|531832|531835|531838|531841|531845|531848|532076|532080|532082|532084|532085|532094|568661|569677|569679|569682|569685|570839|571564|571565|571567|572175|572187|572193|574279|574607|574608|574609|646603|646604|646605|646606|646607|646608|646609|646610|646611|646612|646613|646614|646615|646616|646617|646618|646619|646620|646621|646622|646623|646624|646625|646626|646627|646628|646629|646630|646631|646632|646633|652836|653018|685437|688817|688819|690184|694169|695768|704328|715649|727379|756084|771778|788140|814419|814420|814424|814425|814433|814435|814439|821151|821152|821153|822139|846119|846120|846121|846122|846123|846124|846125|846126|846127|846128|846129|846130|846131|846132|846133|846134|852789|878266|878267|878268|878269|878270|878271|878272|878273|878274|878275|878276|878277|878278|878279|878280|878281|878282|878283|878284|878285|878286|878287|878288|878289|880569|880570|928508|928509|928510|928511|928512|928513|928514|928515|938198|938199|938200|938201|940434|950252|950253|950254|950255|950256|958285|958286|958287|960239|960240|960895|960896|964493|980849", + "upstreamId": "27701|27702|27703|27705|27706|27707|27708|27711|27713|49466|49469|49804|49805|49806|49807|49808|49809|49810|49811|49812|49813|49814|49815|49816|49817|49818|49819|49820|138831|187680|187681|187682|187683|187684|242957|242958|242959|242960|242961|242962|242963|242964|264800|329600|329602|329604|329606|329607|329614|339838|339843|339850|339862|339878|339888|339896|339905|345603|345607|345611|345612|345613|345614|345615|345621|345622|346931|346932|346943|346949|346958|346959|346973|376529|376530|402488|402491|402496|402497|402498|402500|402957|402959|402963|402969|403062|403066|403072|403073|403084|422190|426726|432415|467356|467358|467360|467365|467370|467378|467381|467391|468296|468298|468302|468736|468737|468748|468750|468752|468753|468758|468759|468766|468979|468983|468985|468995|468998|469000|479188|479267|479276|487763|494047|506162|514732|531712|531713|531719|531720|531722|531728|531731|531775|531776|531777|531779|531783|531786|531830|531832|531835|531838|531841|531845|531848|532076|532080|532082|532084|532085|532094|568661|569677|569679|569682|569685|570839|571564|571565|571567|572175|572187|572193|574279|574607|574608|574609|646603|646604|646605|646606|646607|646608|646609|646610|646611|646612|646613|646614|646615|646616|646617|646618|646619|646620|646621|646622|646623|646624|646625|646626|646627|646628|646629|646630|646631|646632|646633|652836|653018|685437|688817|688819|690184|694169|695768|704328|715649|727379|756084|771778|788140|814419|814420|814424|814425|814433|814435|814439|821151|821152|821153|822139|846119|846120|846121|846122|846123|846124|846125|846126|846127|846128|846129|846130|846131|846132|846133|846134|852789|878266|878267|878268|878269|878270|878271|878272|878273|878274|878275|878276|878277|878278|878279|878280|878281|878282|878283|878284|878285|878286|878287|878288|878289|880569|880570|928508|928509|928510|928511|928512|928513|928514|928515|938198|938199|938200|938201|940434|950252|950253|950254|950255|950256|958285|958286|958287|960239|960240|960895|960896|964493|980849", "text": "Carney complex, type 1" }, { - "baseId": "27704|426726", + "upstreamId": "27704|426726", "text": "Familial atrial myxoma" }, { - "baseId": "27709|27710|27714|426726", + "upstreamId": "27709|27710|27714|426726", "text": "Pigmented nodular adrenocortical disease, primary, 1" }, { - "baseId": "27712|30942|30943", + "upstreamId": "27712|30942|30943", "text": "Adrenocortical tumor, somatic" }, { - "baseId": "27713|27714|49468|49469|49815|176495|329605|339854|339860|339863|339865|339867|339871|339887|339895|339904|345597|346936|346948|346960|346961|346964|353452|376530", + "upstreamId": "27713|27714|49468|49469|49815|176495|329605|339854|339860|339863|339865|339867|339871|339887|339895|339904|345597|346936|346948|346960|346961|346964|353452|376530", "text": "Carney complex" }, { - "baseId": "27715|27716|27717|27718|27719|257609|273658|337914|337916|337917|337918|337923|337924|337927|337930|337934|337939|337943|337945|337955|337956|337957|337958|347527|347532|347536|347541|347543|347544|347548|347549|347552|347554|347570|347577|347581|347585|347589|347590|347595|347596|351429|351432|351433|351436|351437|351440|351441|351444|351445|351448|351449|351452|351453|351458|351459|351462|351463|351468|351469|351472|351473|351476|351480|352436|352437|352438|352439|352440|352442|352443|352474|352475|352478|352479|352480|352481|352482|352483|352484|352485|891149|891150|891151|891152|891153|891154|891155|891156|891157|891158|891159|891160|891161|891162|891163|891164|891165|891166|891167|891168|891169|891170|891171|891172|891173|891174|891175|891176|891177|919950", + "upstreamId": "27715|27716|27717|27718|27719|257609|273658|337914|337916|337917|337918|337923|337924|337927|337930|337934|337939|337943|337945|337955|337956|337957|337958|347527|347532|347536|347541|347543|347544|347548|347549|347552|347554|347570|347577|347581|347585|347589|347590|347595|347596|351429|351432|351433|351436|351437|351440|351441|351444|351445|351448|351449|351452|351453|351458|351459|351462|351463|351468|351469|351472|351473|351476|351480|352436|352437|352438|352439|352440|352442|352443|352474|352475|352478|352479|352480|352481|352482|352483|352484|352485|891149|891150|891151|891152|891153|891154|891155|891156|891157|891158|891159|891160|891161|891162|891163|891164|891165|891166|891167|891168|891169|891170|891171|891172|891173|891174|891175|891176|891177|919950", "text": "Sorsby fundus dystrophy" }, { - "baseId": "27720|27721|676987|676988", + "upstreamId": "27720|27721|676987|676988", "text": "Hypothyroidism, congenital, nongoitrous, 7" }, { - "baseId": "27723|27724|27725|27726|27727|249367|275959|276298|427630|761093|862011|964125", + "upstreamId": "27723|27724|27725|27726|27727|249367|275959|276298|427630|761093|862011|964125", "text": "Secondary hypothyroidism" }, { - "baseId": "27728|27729|27730|27731|27732|27733|27734|27735|27736|27737|27738|27739|27740|27741|27742|27743|27744|27745|205157|214869|227318|253043|253045|253046|253048|253050|253051|253052|253053|253054|253055|253056|253057|253058|253059|270639|304276|304281|304284|304294|304295|304296|304298|304299|304300|304305|304306|304307|304308|304313|304318|304319|304320|304321|304326|304329|304330|304340|304342|304343|304350|304357|304358|307931|307933|307934|307939|307945|307956|307962|307968|307978|307979|307980|307983|307984|307994|307995|308005|308006|308054|308055|308056|308068|308098|308103|308105|308107|308108|313044|313055|313056|313057|313059|313061|313062|313063|313064|313065|313066|313070|313073|313087|313091|313092|313093|313095|313096|313097|313098|313101|313103|313104|313105|313106|313107|313111|313112|313118|313121|313127|313129|313130|313132|313134|313144|313162|313169|313170|313175|313177|313185|313186|313187|313188|363816|428763|428764|428764|428765|428766|428767|536111|620287|620288|620289|620290|620291|620292|620293|700398|700399|700400|700402|700403|700404|700406|700408|700409|700410|711289|711290|711291|711292|711293|711294|711295|711298|722852|722854|722855|722856|722859|722861|736436|736439|736443|736447|736448|736449|736452|736455|736459|736461|744441|744449|750912|750914|750920|750927|766550|775390|779392|790781|790782|790783|796123|898914|898915|898916|898917|898918|898919|898920|898921|898922|898923|898924|898925|898926|898927|898928|898929|898930|898931|898932|898933|898934|898935|898936|898937|898938|898939|898940|898941|898942|898943|898944|898945|898946|898947|898948|898949|898950|898951|898952|898953|898954|898955|898956|898957|898958|898959|898960|898961|898962|898963|898964|898965|898966|898967|898968|898969|898970|898971|898972|898973|898974|898975|898976|898977|898978|898979|898980|898981|898982|898983|898984|898985|898986|898987|898988|898989|900444|900445|900446|900447|900448|900449|900450|900451|903695|906175", + "upstreamId": "27728|27729|27730|27731|27732|27733|27734|27735|27736|27737|27738|27739|27740|27741|27742|27743|27744|27745|205157|214869|227318|253043|253045|253046|253048|253050|253051|253052|253053|253054|253055|253056|253057|253058|253059|270639|304276|304281|304284|304294|304295|304296|304298|304299|304300|304305|304306|304307|304308|304313|304318|304319|304320|304321|304326|304329|304330|304340|304342|304343|304350|304357|304358|307931|307933|307934|307939|307945|307956|307962|307968|307978|307979|307980|307983|307984|307994|307995|308005|308006|308054|308055|308056|308068|308098|308103|308105|308107|308108|313044|313055|313056|313057|313059|313061|313062|313063|313064|313065|313066|313070|313073|313087|313091|313092|313093|313095|313096|313097|313098|313101|313103|313104|313105|313106|313107|313111|313112|313118|313121|313127|313129|313130|313132|313134|313144|313162|313169|313170|313175|313177|313185|313186|313187|313188|363816|428763|428764|428764|428765|428766|428767|536111|620287|620288|620289|620290|620291|620292|620293|700398|700399|700400|700402|700403|700404|700406|700408|700409|700410|711289|711290|711291|711292|711293|711294|711295|711298|722852|722854|722855|722856|722859|722861|736436|736439|736443|736447|736448|736449|736452|736455|736459|736461|744441|744449|750912|750914|750920|750927|766550|775390|779392|790781|790782|790783|796123|898914|898915|898916|898917|898918|898919|898920|898921|898922|898923|898924|898925|898926|898927|898928|898929|898930|898931|898932|898933|898934|898935|898936|898937|898938|898939|898940|898941|898942|898943|898944|898945|898946|898947|898948|898949|898950|898951|898952|898953|898954|898955|898956|898957|898958|898959|898960|898961|898962|898963|898964|898965|898966|898967|898968|898969|898970|898971|898972|898973|898974|898975|898976|898977|898978|898979|898980|898981|898982|898983|898984|898985|898986|898987|898988|898989|900444|900445|900446|900447|900448|900449|900450|900451|903695|906175", "text": "Iodotyrosyl coupling defect" }, { - "baseId": "27729|240392|488076|610456|708658|739193|800373|800374|800375|800376|800379|800381|800385", + "upstreamId": "27729|240392|488076|610456|708658|739193|800373|800374|800375|800376|800379|800381|800385", "text": "Primary Ovarian Insufficiency" }, { - "baseId": "27746|53829|189921|227349|404811|512859", + "upstreamId": "27746|53829|189921|227349|404811|512859", "text": "Dilated cardiomyopathy 1T" }, { - "baseId": "27747|27748|27749|27750|47574|47575|47576|47577|47578|47579|47580|47581|47581|47582|47583|47584|47585|47586|47587|47588|47589|47590|47591|47592|47593|47593|47594|47595|47596|47597|47598|47599|47600|47601|48015|141363|141364|141366|141367|141368|141369|141370|141371|211730|211735|211736|227379|260120|326054|326056|326060|326065|326071|326072|326073|326077|326078|326088|335742|335749|335753|335754|335756|335762|335763|342075|342076|342078|342088|342089|342092|342093|342096|342100|342101|342104|342105|343610|343614|343616|343620|343621|343622|343623|343625|343626|445594|682364|682365|682366|682367|875734|875735|875736|875737|875738|875739|875740|875741|875742|875743|875744|875745|875746|875747|875748|875749|875750|875751|875752|875753|875754|875755|875756|875757|875758|875759|875760|875761|875762|875763|875764|875765|875766|875767|875768|875769|876702|876703|961242|961243|961244", + "upstreamId": "27747|27748|27749|27750|47574|47575|47576|47577|47578|47579|47580|47581|47581|47582|47583|47584|47585|47586|47587|47588|47589|47590|47591|47592|47593|47593|47594|47595|47596|47597|47598|47599|47600|47601|48015|141363|141364|141366|141367|141368|141369|141370|141371|211730|211735|211736|227379|260120|326054|326056|326060|326065|326071|326072|326073|326077|326078|326088|335742|335749|335753|335754|335756|335762|335763|342075|342076|342078|342088|342089|342092|342093|342096|342100|342101|342104|342105|343610|343614|343616|343620|343621|343622|343623|343625|343626|445594|682364|682365|682366|682367|875734|875735|875736|875737|875738|875739|875740|875741|875742|875743|875744|875745|875746|875747|875748|875749|875750|875751|875752|875753|875754|875755|875756|875757|875758|875759|875760|875761|875762|875763|875764|875765|875766|875767|875768|875769|876702|876703|961242|961243|961244", "text": "Mitochondrial DNA depletion syndrome 2" }, { - "baseId": "27751|38860|48189", + "upstreamId": "27751|38860|48189", "text": "Platelet-type bleeding disorder 13, susceptibility to" }, { - "baseId": "27752|32176", + "upstreamId": "27752|32176", "text": "Lumbar disc herniation, susceptibility to" }, { - "baseId": "27753|27754|27755|27756|38858|143163|614472", + "upstreamId": "27753|27754|27755|27756|38858|143163|614472", "text": "Thrombophilia due to thrombomodulin defect" }, { - "baseId": "27753|27757|27758|27759|143163|334888|334892|334895|334897|334901|334904|334910|334913|334918|334922|334925|344760|344762|344763|344766|344773|344778|344780|344782|344783|344784|349720|349723|349724|349725|349726|349727|349730|349733|349734|349737|349739|350715|350718|350719|350722|350723|350727|350729|350732|350734|350736|350738|350740|350741|350743|350745|432342|614472|742296|797961|885868|885869|885870|885871|885872|885873|885874|885875|885876|885877|885878|885879|885880|885881|885882|885883|885884|885885|885886|885887|885888|885889|885890|885891|885892|885893", + "upstreamId": "27753|27757|27758|27759|143163|334888|334892|334895|334897|334901|334904|334910|334913|334918|334922|334925|344760|344762|344763|344766|344773|344778|344780|344782|344783|344784|349720|349723|349724|349725|349726|349727|349730|349733|349734|349737|349739|350715|350718|350719|350722|350723|350727|350729|350732|350734|350736|350738|350740|350741|350743|350745|432342|614472|742296|797961|885868|885869|885870|885871|885872|885873|885874|885875|885876|885877|885878|885879|885880|885881|885882|885883|885884|885885|885886|885887|885888|885889|885890|885891|885892|885893", "text": "Atypical hemolytic-uremic syndrome 6" }, { - "baseId": "27760|27761|27762|27764|27765|27766|299637|302255|306639|306896|306905|306954", + "upstreamId": "27760|27761|27762|27764|27765|27766|299637|302255|306639|306896|306905|306954", "text": "Thiopurine methyltransferase deficiency" }, { - "baseId": "27767", + "upstreamId": "27767", "text": "Forebrain defects" }, { - "baseId": "27768|27769|27770|27771|27772|27775|27776|27777|38854|45601|45602|45605|45606|45607|45608|47713|47725|47727|47731|47732|173541|173543|173678|207165|229237|229238|229239|229240|239625|239629|239631|239634|239640|239641|239643|239645|239663|239675|251613|251614|251640|263518|295008|295009|295015|295110|295271|296781|296915|296945|300499|300506|300507|300508|300575|300731|300771|300775|300921|395064|395070|428346|439827|439829|439830|454179|454310|454390|454710|455105|455107|520445|521005|549224|564457|632878|633019|804862|804863|830021|892690|892691|892692|892693|892694|892695|892732|892816|892865|892866|892867|892868|892869", + "upstreamId": "27768|27769|27770|27771|27772|27775|27776|27777|38854|45601|45602|45605|45606|45607|45608|47713|47725|47727|47731|47732|173541|173543|173678|207165|229237|229238|229239|229240|239625|239629|239631|239634|239640|239641|239643|239645|239663|239675|251613|251614|251640|263518|295008|295009|295015|295110|295271|296781|296915|296945|300499|300506|300507|300508|300575|300731|300771|300775|300921|395064|395070|428346|439827|439829|439830|454179|454310|454390|454710|455105|455107|520445|521005|549224|564457|632878|633019|804862|804863|830021|892690|892691|892692|892693|892694|892695|892732|892816|892865|892866|892867|892868|892869", "text": "Pulmonary fibrosis and/or bone marrow failure, telomere-related, 1" }, { - "baseId": "27768|27768|27769|27769|27770|27772|27774|27775|38854|38855|38856|45603|45604|45605|45608|47713|47713|47714|47717|47718|47724|47725|47727|47727|47728|47730|47731|47731|47732|173541|173541|173543|173543|173678|173678|173679|173681|207153|207165|207165|227598|229234|229235|229237|229237|229238|229238|229239|229239|229240|229240|239624|239625|239625|239626|239627|239628|239629|239629|239630|239631|239631|239633|239634|239634|239635|239638|239639|239640|239640|239641|239641|239642|239643|239643|239644|239645|239645|239647|239663|239663|239664|239665|239666|239667|239668|239669|239670|239671|239672|239673|239674|239675|239675|239676|239677|251613|251613|251614|251614|251639|251640|251640|251666|259808|263518|263518|273563|295008|295009|295015|295110|295110|295271|295271|296781|296915|296915|296945|300499|300506|300507|300507|300508|300508|300575|300731|300731|300771|300775|300775|300921|300921|394497|394503|394506|394522|394531|394536|394537|394544|394546|394554|394556|394557|394560|394582|394584|394587|394588|394589|394591|394595|394599|394629|394631|394635|394638|394641|394651|394654|394657|394720|394731|394739|394742|394746|394755|394757|394761|394762|394764|394767|394768|394799|394802|394807|394808|394810|394815|394817|394824|394841|394848|394851|395006|395007|395038|395042|395044|395058|395060|395064|395064|395070|395070|395130|395132|395135|395138|395143|395145|395152|395153|395173|395184|406619|428333|428334|428336|428339|428340|428341|428347|439828|439828|439829|439830|439830|454152|454153|454156|454158|454179|454179|454181|454186|454187|454195|454222|454224|454226|454234|454238|454241|454244|454245|454295|454303|454305|454306|454309|454310|454310|454311|454312|454314|454320|454321|454323|454324|454328|454330|454333|454369|454370|454376|454378|454384|454388|454390|454390|454392|454393|454396|454397|454401|454445|454447|454456|454457|454459|454460|454467|454472|454472|454632|454634|454636|454638|454645|454666|454668|454669|454671|454710|454710|454717|454718|454721|454722|454726|454728|454737|454793|454813|454816|454818|454834|454837|454946|454952|454960|454963|454966|454984|455002|455003|455010|455015|455016|455025|455035|455105|455105|455106|455107|455107|455111|455112|496352|496352|520429|520430|520431|520433|520439|520443|520445|520449|520477|520478|520483|520494|520500|520506|520565|520571|520574|520579|520580|520596|520599|520600|520602|520605|520606|520608|520625|520627|520654|520656|520659|520660|520663|520666|520672|520674|520676|520677|520678|520702|520712|520713|520715|520720|520726|520733|520738|520824|520826|520828|520832|520833|520842|520845|520848|520850|520851|520852|520853|520855|520856|520859|520862|520868|520877|520882|520886|520888|520889|520891|520894|520895|520915|520917|520920|520925|520945|520952|520953|520979|520980|520983|520985|520986|520987|520989|520990|520991|520994|520995|520996|520997|520999|521000|521003|521005|521005|521057|521060|521062|521064|521065|521078|521079|521081|536677|537458|538371|559956|559973|559981|559983|560001|560003|560005|560007|560027|560029|560031|560033|560035|560037|560039|560041|560043|560045|560047|560049|560051|560053|560086|560088|560098|560108|560110|560112|560136|560138|560140|560142|560144|560146|560148|560150|562291|562567|562569|562570|562572|562581|562585|562590|562599|562601|562603|562605|562607|562646|562647|562649|562655|562658|562663|562665|562667|564432|564438|564439|564457|564457|564491|564492|564494|564498|564508|564514|632876|632877|632878|632878|632879|632880|632881|632882|632883|632884|632885|632886|632887|632888|632889|632890|632891|632892|632893|632908|632909|632910|632911|632912|632944|632945|632946|632947|632948|632948|632949|632950|632951|632952|632953|632954|632955|632956|632957|632958|632959|632960|632961|632962|632963|632964|632965|632966|632967|633006|633007|633008|633009|633010|633011|633012|633013|633014|633015|633016|633017|633018|633019|633019|633020|633021|633022|633023|633024|633025|633026|633027|633028|633029|633030|633031|633032|633033|633034|633035|633036|633037|633038|633039|633040|633041|633042|633043|633044|633045|633046|633047|633048|651189|651191|651192|651194|651204|651217|651245|651255|651264|651306|651307|651341|683654|683655|683659|683660|683661|683662|685165|685168|685169|686573|686574|686575|686576|686577|686579|686580|686581|686582|686583|686584|686585|686586|686587|686588|686590|686603|686604|686606|686607|686609|686610|686612|689766|689767|689771|691658|691660|691662|691663|691670|691672|691673|691678|691679|691681|695251|695256|698755|698756|698759|698760|698762|709605|709606|721197|721199|734826|734831|749186|749187|749196|759350|764765|764767|764772|764782|764783|764786|764788|764790|764807|764808|764814|774992|782109|782115|782117|782118|787239|787297|804862|819525|819526|819527|819528|819529|819586|819587|819588|829847|829848|829849|829850|829851|829852|829853|829854|829855|829856|829888|829889|829890|829891|829892|829893|829894|829895|829931|829932|829933|829934|829935|829936|829937|829938|829939|829940|829941|829942|829943|829944|829945|829946|829947|829951|829953|829993|829994|829995|829996|829997|829998|829999|830000|830001|830002|830003|830004|830005|830006|830007|830008|830009|830010|830011|830012|830013|830014|830015|830016|830017|830018|830019|830020|830021|830021|830022|830023|830024|830025|830026|830027|830028|830029|830030|830031|830032|830033|830034|830035|830036|830037|830038|830039|830040|830041|830042|830043|830044|830045|830046|830047|830048|830049|830050|830051|851004|851239|851846|851882|851884|892690|892691|892692|892693|892694|892695|892732|892816|892865|892866|892867|892868|892869|923727|923728|923729|923730|923731|923737|923738|923739|923748|923771|923772|923773|923774|923775|923776|923777|923778|923779|923780|923781|923782|923783|923784|923785|923786|923787|923788|923789|923790|923791|932582|932583|932584|932585|932586|932587|932588|932589|932596|932597|932605|932606|932607|932608|932609|932610|932626|932627|932628|932629|932630|932631|932632|932633|932634|932635|932636|932637|939977|939979|940792|940794|944256|944257|944258|944259|944267|944268|944269|944270|944271|944272|944282|944283|944284|944292|944293|944294|944295|944296|944297|944298|944299|944300|944301|944302|944303|944304|944305|944306|944307|944308|944309|944310|944311|944312|944313|944314|953928|953929|953936|953937|953938|953939|953940|953941|953943|953953|953954|953955|953956|953957|953958|953959|953960|959742|959744|960548|961941|961942|961943|961944|962155", + "upstreamId": "27768|27768|27769|27769|27770|27772|27774|27775|38854|38855|38856|45603|45604|45605|45608|47713|47713|47714|47717|47718|47724|47725|47727|47727|47728|47730|47731|47731|47732|173541|173541|173543|173543|173678|173678|173679|173681|207153|207165|207165|227598|229234|229235|229237|229237|229238|229238|229239|229239|229240|229240|239624|239625|239625|239626|239627|239628|239629|239629|239630|239631|239631|239633|239634|239634|239635|239638|239639|239640|239640|239641|239641|239642|239643|239643|239644|239645|239645|239647|239663|239663|239664|239665|239666|239667|239668|239669|239670|239671|239672|239673|239674|239675|239675|239676|239677|251613|251613|251614|251614|251639|251640|251640|251666|259808|263518|263518|273563|295008|295009|295015|295110|295110|295271|295271|296781|296915|296915|296945|300499|300506|300507|300507|300508|300508|300575|300731|300731|300771|300775|300775|300921|300921|394497|394503|394506|394522|394531|394536|394537|394544|394546|394554|394556|394557|394560|394582|394584|394587|394588|394589|394591|394595|394599|394629|394631|394635|394638|394641|394651|394654|394657|394720|394731|394739|394742|394746|394755|394757|394761|394762|394764|394767|394768|394799|394802|394807|394808|394810|394815|394817|394824|394841|394848|394851|395006|395007|395038|395042|395044|395058|395060|395064|395064|395070|395070|395130|395132|395135|395138|395143|395145|395152|395153|395173|395184|406619|428333|428334|428336|428339|428340|428341|428347|439828|439828|439829|439830|439830|454152|454153|454156|454158|454179|454179|454181|454186|454187|454195|454222|454224|454226|454234|454238|454241|454244|454245|454295|454303|454305|454306|454309|454310|454310|454311|454312|454314|454320|454321|454323|454324|454328|454330|454333|454369|454370|454376|454378|454384|454388|454390|454390|454392|454393|454396|454397|454401|454445|454447|454456|454457|454459|454460|454467|454472|454472|454632|454634|454636|454638|454645|454666|454668|454669|454671|454710|454710|454717|454718|454721|454722|454726|454728|454737|454793|454813|454816|454818|454834|454837|454946|454952|454960|454963|454966|454984|455002|455003|455010|455015|455016|455025|455035|455105|455105|455106|455107|455107|455111|455112|496352|496352|520429|520430|520431|520433|520439|520443|520445|520449|520477|520478|520483|520494|520500|520506|520565|520571|520574|520579|520580|520596|520599|520600|520602|520605|520606|520608|520625|520627|520654|520656|520659|520660|520663|520666|520672|520674|520676|520677|520678|520702|520712|520713|520715|520720|520726|520733|520738|520824|520826|520828|520832|520833|520842|520845|520848|520850|520851|520852|520853|520855|520856|520859|520862|520868|520877|520882|520886|520888|520889|520891|520894|520895|520915|520917|520920|520925|520945|520952|520953|520979|520980|520983|520985|520986|520987|520989|520990|520991|520994|520995|520996|520997|520999|521000|521003|521005|521005|521057|521060|521062|521064|521065|521078|521079|521081|536677|537458|538371|559956|559973|559981|559983|560001|560003|560005|560007|560027|560029|560031|560033|560035|560037|560039|560041|560043|560045|560047|560049|560051|560053|560086|560088|560098|560108|560110|560112|560136|560138|560140|560142|560144|560146|560148|560150|562291|562567|562569|562570|562572|562581|562585|562590|562599|562601|562603|562605|562607|562646|562647|562649|562655|562658|562663|562665|562667|564432|564438|564439|564457|564457|564491|564492|564494|564498|564508|564514|632876|632877|632878|632878|632879|632880|632881|632882|632883|632884|632885|632886|632887|632888|632889|632890|632891|632892|632893|632908|632909|632910|632911|632912|632944|632945|632946|632947|632948|632948|632949|632950|632951|632952|632953|632954|632955|632956|632957|632958|632959|632960|632961|632962|632963|632964|632965|632966|632967|633006|633007|633008|633009|633010|633011|633012|633013|633014|633015|633016|633017|633018|633019|633019|633020|633021|633022|633023|633024|633025|633026|633027|633028|633029|633030|633031|633032|633033|633034|633035|633036|633037|633038|633039|633040|633041|633042|633043|633044|633045|633046|633047|633048|651189|651191|651192|651194|651204|651217|651245|651255|651264|651306|651307|651341|683654|683655|683659|683660|683661|683662|685165|685168|685169|686573|686574|686575|686576|686577|686579|686580|686581|686582|686583|686584|686585|686586|686587|686588|686590|686603|686604|686606|686607|686609|686610|686612|689766|689767|689771|691658|691660|691662|691663|691670|691672|691673|691678|691679|691681|695251|695256|698755|698756|698759|698760|698762|709605|709606|721197|721199|734826|734831|749186|749187|749196|759350|764765|764767|764772|764782|764783|764786|764788|764790|764807|764808|764814|774992|782109|782115|782117|782118|787239|787297|804862|819525|819526|819527|819528|819529|819586|819587|819588|829847|829848|829849|829850|829851|829852|829853|829854|829855|829856|829888|829889|829890|829891|829892|829893|829894|829895|829931|829932|829933|829934|829935|829936|829937|829938|829939|829940|829941|829942|829943|829944|829945|829946|829947|829951|829953|829993|829994|829995|829996|829997|829998|829999|830000|830001|830002|830003|830004|830005|830006|830007|830008|830009|830010|830011|830012|830013|830014|830015|830016|830017|830018|830019|830020|830021|830021|830022|830023|830024|830025|830026|830027|830028|830029|830030|830031|830032|830033|830034|830035|830036|830037|830038|830039|830040|830041|830042|830043|830044|830045|830046|830047|830048|830049|830050|830051|851004|851239|851846|851882|851884|892690|892691|892692|892693|892694|892695|892732|892816|892865|892866|892867|892868|892869|923727|923728|923729|923730|923731|923737|923738|923739|923748|923771|923772|923773|923774|923775|923776|923777|923778|923779|923780|923781|923782|923783|923784|923785|923786|923787|923788|923789|923790|923791|932582|932583|932584|932585|932586|932587|932588|932589|932596|932597|932605|932606|932607|932608|932609|932610|932626|932627|932628|932629|932630|932631|932632|932633|932634|932635|932636|932637|939977|939979|940792|940794|944256|944257|944258|944259|944267|944268|944269|944270|944271|944272|944282|944283|944284|944292|944293|944294|944295|944296|944297|944298|944299|944300|944301|944302|944303|944304|944305|944306|944307|944308|944309|944310|944311|944312|944313|944314|953928|953929|953936|953937|953938|953939|953940|953941|953943|953953|953954|953955|953956|953957|953958|953959|953960|959742|959744|960548|961941|961942|961943|961944|962155", "text": "Dyskeratosis congenita, autosomal dominant, 2" }, { - "baseId": "27769|38855|38856|47714", + "upstreamId": "27769|38855|38856|47714", "text": "Dyskeratosis congenita, autosomal recessive, 4" }, { - "baseId": "27773|28774|28775|38716", + "upstreamId": "27773|28774|28775|38716", "text": "Coronary artery disease, susceptibility to" }, { - "baseId": "27778", + "upstreamId": "27778", "text": "Human immunodeficiency virus type 1, delayed disease progression with infection by" }, { - "baseId": "27779", + "upstreamId": "27779", "text": "Human immunodeficiency virus type 1, rapid disease progression with infection by" }, { - "baseId": "27780|75336|75337|296627|296628|296629|296636|296639|296640|296650|296652|296653|296655|296657|296662|296664|296669|296672|296679|296680|298492|298493|298494|298495|298496|298498|298499|298500|298507|298515|298517|298519|298534|298535|302632|302643|302648|302649|302661|302668|302671|302919|302920|302921|302928|302929|302942|302955|302964|454785|454786|512816|520959|520963|521396|521452|521465|521467|560239|560350|560352|563007|563009|564978|633673|633674|633675|633676|633677|633678|633679|633680|633681|633682|633683|651405|651435|709784|721351|734985|744211|749393|749394|764991|764994|774995|782234|830565|830566|830567|830568|830569|830570|830571|830572|830573|830574|830575|851272|852194|893710|893711|893712|893713|893714|893715|893716|893717|893718|893719|893720|893721|893722|893723|893724|893725|893726|893727|893728|893729|893730|893731|893732|893733|893734|893735|893736|893737|893738|896068|896069|896070|896071|896072|923963|923964|923965|923966|923967|923968|932807|932808|932809|932810|932811|932812|932813|932814|932815|944506|944507|961945", + "upstreamId": "27780|75336|75337|296627|296628|296629|296636|296639|296640|296650|296652|296653|296655|296657|296662|296664|296669|296672|296679|296680|298492|298493|298494|298495|298496|298498|298499|298500|298507|298515|298517|298519|298534|298535|302632|302643|302648|302649|302661|302668|302671|302919|302920|302921|302928|302929|302942|302955|302964|454785|454786|512816|520959|520963|521396|521452|521465|521467|560239|560350|560352|563007|563009|564978|633673|633674|633675|633676|633677|633678|633679|633680|633681|633682|633683|651405|651435|709784|721351|734985|744211|749393|749394|764991|764994|774995|782234|830565|830566|830567|830568|830569|830570|830571|830572|830573|830574|830575|851272|852194|893710|893711|893712|893713|893714|893715|893716|893717|893718|893719|893720|893721|893722|893723|893724|893725|893726|893727|893728|893729|893730|893731|893732|893733|893734|893735|893736|893737|893738|896068|896069|896070|896071|896072|923963|923964|923965|923966|923967|923968|932807|932808|932809|932810|932811|932812|932813|932814|932815|944506|944507|961945", "text": "Lymphoproliferative syndrome 1" }, { - "baseId": "27781|47516|47517|451480|451483|451749|451829|451833|518649|518743|518846|560995|614254|614255|630609|630610|630611|630612|630613|651010|719997|759157|763453|763454|774789|819280|819281|827095|827096|827097|827098|827099|827100|827101|827102|827103|827104|827105|922943|922944|922945|931614|931615|943144|943145|943146|943147|943148|953250|953251|959659|980448", + "upstreamId": "27781|47516|47517|451480|451483|451749|451829|451833|518649|518743|518846|560995|614254|614255|630609|630610|630611|630612|630613|651010|719997|759157|763453|763454|774789|819280|819281|827095|827096|827097|827098|827099|827100|827101|827102|827103|827104|827105|922943|922944|922945|931614|931615|943144|943145|943146|943147|943148|953250|953251|959659|980448", "text": "Cd8 deficiency, familial" }, { - "baseId": "27782|614354|799641|980466", + "upstreamId": "27782|614354|799641|980466", "text": "Common variable immunodeficiency 6" }, { - "baseId": "27783|27784|44470|44471|140393|312516|312519|318476|318478|318493|324593|324594|324596|325307|325314|325317|325319|325320|460900|487495|526014|526423|564448|570331|639739|639740|639741|639742|759838|759842|768222|783875|838023|838024|838025|838026|838027|838028|838029|838030|851427|867085|867086|867087|867088|867089|867090|867091|867092|867093|867094|867095|867096|867097|868606|868607|926136|956399", + "upstreamId": "27783|27784|44470|44471|140393|312516|312519|318476|318478|318493|324593|324594|324596|325307|325314|325317|325319|325320|460900|487495|526014|526423|564448|570331|639739|639740|639741|639742|759838|759842|768222|783875|838023|838024|838025|838026|838027|838028|838029|838030|851427|867085|867086|867087|867088|867089|867090|867091|867092|867093|867094|867095|867096|867097|868606|868607|926136|956399", "text": "Immunodeficiency 18" }, { - "baseId": "27785", + "upstreamId": "27785", "text": "Immunodeficiency 18, severe combined immunodeficiency variant" }, { - "baseId": "27786|27787|44469|178842|312522|318496|318499|324597|324598|325321|325323|325325|408277|461235|525950|526017|526425|526428|639743|639744|639745|639746|639747|639748|759916|768227|768228|768229|820428|838031|838032|838033|838034|838035|838036|838037|867098|867099|868608|926137|935405|947336|956400", + "upstreamId": "27786|27787|44469|178842|312522|318496|318499|324597|324598|325321|325323|325325|408277|461235|525950|526017|526425|526428|639743|639744|639745|639746|639747|639748|759916|768227|768228|768229|820428|838031|838032|838033|838034|838035|838036|838037|867098|867099|868608|926137|935405|947336|956400", "text": "Immunodeficiency 19" }, { - "baseId": "27788|27789|27790|27791|171727|404974|447345|447352|447361|447362|447366|447408|447464|515270|515300|515305|515349|556735|557030|558218|614188|627056|627057|650689|690407|695014|695015|731840|761311|761312|786983|822974|822975|850935|921729|921730|921731|921732|921733|921734|921735|930143|930144|930145|930146|930147|959530|980438", + "upstreamId": "27788|27789|27790|27791|171727|404974|447345|447352|447361|447362|447366|447408|447464|515270|515300|515305|515349|556735|557030|558218|614188|627056|627057|650689|690407|695014|695015|731840|761311|761312|786983|822974|822975|850935|921729|921730|921731|921732|921733|921734|921735|930143|930144|930145|930146|930147|959530|980438", "text": "Immunodeficiency due to defect in cd3-zeta" }, { - "baseId": "27792|27793|106498|312540|312541|312548|312549|318503|318516|324602|324608|324614|325331|325336|325344|325348|460902|460944|461237|525953|525954|526091|526094|564450|565528|567054|639749|639750|639751|639752|639753|639754|639755|787621|838038|838039|852332|867100|867101|867102|867103|867104|867105|867106|867107|867108|867109|926138|935406|940989|956401", + "upstreamId": "27792|27793|106498|312540|312541|312548|312549|318503|318516|324602|324608|324614|325331|325336|325344|325348|460902|460944|461237|525953|525954|526091|526094|564450|565528|567054|639749|639750|639751|639752|639753|639754|639755|787621|838038|838039|852332|867100|867101|867102|867103|867104|867105|867106|867107|867108|867109|926138|935406|940989|956401", "text": "Immunodeficiency 17" }, { - "baseId": "27794|27795", + "upstreamId": "27794|27795", "text": "Obesity, association with" }, { - "baseId": "27809", + "upstreamId": "27809", "text": "Leigh syndrome due to mitochondrial complex IV deficiency" }, { - "baseId": "27809|211361|211368|214997|214999|539019|539184", + "upstreamId": "27809|211361|211368|214997|214999|539019|539184", "text": "Charcot-Marie-Tooth disease, type 4k" }, { - "baseId": "27809|226957|359794|553143", + "upstreamId": "27809|226957|359794|553143", "text": "Abnormal pyramidal signs" }, { - "baseId": "27809|51184|205801|263335|359794|360846|361043|361060|361061|361062|361062|402131|539978|568036|801183|801191|801192", + "upstreamId": "27809|51184|205801|263335|359794|360846|361043|361060|361061|361062|361062|402131|539978|568036|801183|801191|801192", "text": "Dysarthria" }, { - "baseId": "27809|32660|32660|191616|205181|260246|265299|359794|360807|360821|360837|360838|360892|360956|361025|361025|361047|439927|513930|514049|514063|623675|624121|677222|677251|682759|972894", + "upstreamId": "27809|32660|32660|191616|205181|260246|265299|359794|360807|360821|360837|360838|360892|360956|361025|361025|361047|439927|513930|514049|514063|623675|624121|677222|677251|682759|972894", "text": "Muscle weakness" }, { - "baseId": "27810|27811|27812|27813|48740|139739|167463|167463|167464|221191|238787|238788|289810|481373|789114|790237|790238|790239|790240|790241|790242|790243|790244|961837|961838", + "upstreamId": "27810|27811|27812|27813|48740|139739|167463|167463|167464|221191|238787|238788|289810|481373|789114|790237|790238|790239|790240|790241|790242|790243|790244|961837|961838", "text": "Diarrhea 5, with tufting enteropathy, congenital" }, { - "baseId": "27814|27815|139739|167463|238782|238787|250741|250742|961261", + "upstreamId": "27814|27815|139739|167463|238782|238787|250741|250742|961261", "text": "Hereditary nonpolyposis colorectal cancer type 8" }, { - "baseId": "27816", + "upstreamId": "27816", "text": "Superoxide dismutase, elevated extracellular" }, { - "baseId": "27817|27817|27817|27818|27818|27820|27820|27821|27821|27822|27822|27823|27824|27826|27830|27830|27831|27831|33493|33493|33494|33495|38851|38851|38851|45429|45429|45430|45430|48183|50209|50210|53809|53809|53813|138931|150487|150487|151825|152351|152351|152351|152367|152477|152477|152478|152541|152741|171052|171053|171053|172353|172492|172493|181604|181605|181606|181607|181608|181608|181609|181609|181610|181611|181613|181614|181616|181616|181617|181618|181619|181620|181621|181622|181622|181623|181623|181624|181624|181624|181625|181627|181628|194371|196493|196494|221085|225740|232173|232175|232175|232175|232176|232176|232181|232183|232187|238108|238109|238170|238171|238173|238174|238175|238176|238177|238178|238179|238180|238181|238181|238182|238183|238184|238185|238186|238187|238188|238189|238190|238191|238192|238193|238194|248478|249530|277358|278420|358698|358698|358699|358699|358700|358701|358701|358701|390718|390721|390733|390870|390876|390877|390878|390880|390882|390890|390891|390892|390893|390894|390895|390898|390899|390900|390901|390903|390904|390905|390906|390907|390907|390908|390909|390910|390911|390912|390913|390914|390914|390915|390916|390917|390918|390919|390919|390920|390921|390922|390923|390924|390925|390926|390926|390927|390928|390929|390930|390931|390932|390934|390935|390936|390939|390940|390942|404976|404979|404981|404981|420737|420743|420745|420746|420746|420748|420750|420754|420755|432026|432028|432034|432038|432042|432988|442662|442663|442664|442665|446920|446940|447286|447290|447293|447295|447296|447301|447305|447306|447371|447377|447379|447381|447383|447387|447390|447391|447397|447400|447409|447417|447440|447451|447452|447456|447457|447473|447483|447485|447487|447489|447490|447492|447493|447494|447501|447502|447504|447505|447508|447510|447512|447515|447517|447518|447529|447530|472265|472268|472271|472272|472273|472274|472276|472277|472278|472279|472280|472283|472284|472318|472323|472339|513743|514854|514882|515267|515268|515273|515281|515283|515285|515287|515290|515291|515294|515295|515298|515302|515307|515310|515313|515314|515316|515322|515324|515328|515333|515334|515353|515355|515356|515357|515359|515362|515363|515364|515366|515369|515371|515372|515373|515375|539201|556488|556492|556517|556519|556521|556690|556692|556694|556696|556698|556700|556743|556745|556747|556749|556871|557040|557042|557044|557046|557048|557050|557052|557054|557056|557058|558236|558240|558242|558244|558246|558248|558250|575654|627077|627078|627079|627080|627081|627082|627083|627084|627085|627086|627087|627088|627089|627090|627091|627092|627093|627094|627095|627096|627097|627098|627099|627100|627101|627102|627103|627104|627105|627106|627107|627108|627109|627110|627111|627112|627113|627114|627115|627116|627117|627118|627119|627120|650537|650539|650564|650566|650595|650596|650644|650646|650649|650650|657158|690417|690420|690421|731863|745840|745844|758851|761325|761328|761331|761333|806488|806490|806491|806492|806494|806495|806501|818863|818864|818865|818866|818867|818868|818869|818870|822993|822994|822995|822996|822997|822998|822999|823000|823001|823002|823003|823004|823005|823006|823007|823008|823009|823010|823011|850733|850735|850937|858441|921742|921743|921744|921745|921746|921747|921748|921749|921750|921751|921752|921753|921754|921755|921756|930156|930157|930158|930159|930160|930161|930162|930163|930164|930165|930166|930167|930168|940607|940608|940609|941573|941574|941575|941576|941577|941578|941579|941580|952140|952141|952142|952143|952144|952145|952146|959531|959532", + "upstreamId": "27817|27817|27817|27818|27818|27820|27820|27821|27821|27822|27822|27823|27824|27826|27830|27830|27831|27831|33493|33493|33494|33495|38851|38851|38851|45429|45429|45430|45430|48183|50209|50210|53809|53809|53813|138931|150487|150487|151825|152351|152351|152351|152367|152477|152477|152478|152541|152741|171052|171053|171053|172353|172492|172493|181604|181605|181606|181607|181608|181608|181609|181609|181610|181611|181613|181614|181616|181616|181617|181618|181619|181620|181621|181622|181622|181623|181623|181624|181624|181624|181625|181627|181628|194371|196493|196494|221085|225740|232173|232175|232175|232175|232176|232176|232181|232183|232187|238108|238109|238170|238171|238173|238174|238175|238176|238177|238178|238179|238180|238181|238181|238182|238183|238184|238185|238186|238187|238188|238189|238190|238191|238192|238193|238194|248478|249530|277358|278420|358698|358698|358699|358699|358700|358701|358701|358701|390718|390721|390733|390870|390876|390877|390878|390880|390882|390890|390891|390892|390893|390894|390895|390898|390899|390900|390901|390903|390904|390905|390906|390907|390907|390908|390909|390910|390911|390912|390913|390914|390914|390915|390916|390917|390918|390919|390919|390920|390921|390922|390923|390924|390925|390926|390926|390927|390928|390929|390930|390931|390932|390934|390935|390936|390939|390940|390942|404976|404979|404981|404981|420737|420743|420745|420746|420746|420748|420750|420754|420755|432026|432028|432034|432038|432042|432988|442662|442663|442664|442665|446920|446940|447286|447290|447293|447295|447296|447301|447305|447306|447371|447377|447379|447381|447383|447387|447390|447391|447397|447400|447409|447417|447440|447451|447452|447456|447457|447473|447483|447485|447487|447489|447490|447492|447493|447494|447501|447502|447504|447505|447508|447510|447512|447515|447517|447518|447529|447530|472265|472268|472271|472272|472273|472274|472276|472277|472278|472279|472280|472283|472284|472318|472323|472339|513743|514854|514882|515267|515268|515273|515281|515283|515285|515287|515290|515291|515294|515295|515298|515302|515307|515310|515313|515314|515316|515322|515324|515328|515333|515334|515353|515355|515356|515357|515359|515362|515363|515364|515366|515369|515371|515372|515373|515375|539201|556488|556492|556517|556519|556521|556690|556692|556694|556696|556698|556700|556743|556745|556747|556749|556871|557040|557042|557044|557046|557048|557050|557052|557054|557056|557058|558236|558240|558242|558244|558246|558248|558250|575654|627077|627078|627079|627080|627081|627082|627083|627084|627085|627086|627087|627088|627089|627090|627091|627092|627093|627094|627095|627096|627097|627098|627099|627100|627101|627102|627103|627104|627105|627106|627107|627108|627109|627110|627111|627112|627113|627114|627115|627116|627117|627118|627119|627120|650537|650539|650564|650566|650595|650596|650644|650646|650649|650650|657158|690417|690420|690421|731863|745840|745844|758851|761325|761328|761331|761333|806488|806490|806491|806492|806494|806495|806501|818863|818864|818865|818866|818867|818868|818869|818870|822993|822994|822995|822996|822997|822998|822999|823000|823001|823002|823003|823004|823005|823006|823007|823008|823009|823010|823011|850733|850735|850937|858441|921742|921743|921744|921745|921746|921747|921748|921749|921750|921751|921752|921753|921754|921755|921756|930156|930157|930158|930159|930160|930161|930162|930163|930164|930165|930166|930167|930168|940607|940608|940609|941573|941574|941575|941576|941577|941578|941579|941580|952140|952141|952142|952143|952144|952145|952146|959531|959532", "text": "Paragangliomas 4" }, { - "baseId": "27832", + "upstreamId": "27832", "text": "Coronary heart disease 6" }, { - "baseId": "27834|27835", + "upstreamId": "27834|27835", "text": "ADRENAL INSUFFICIENCY, NR5A1-RELATED" }, { - "baseId": "27835|260482|562691", + "upstreamId": "27835|260482|562691", "text": "46,XX sex reversal 4" }, { - "baseId": "27843|27844|27845|27846|27847", + "upstreamId": "27843|27844|27845|27846|27847", "text": "Premature ovarian failure 7" }, { - "baseId": "27849|481458|576086|789989|965357", + "upstreamId": "27849|481458|576086|789989|965357", "text": "Leukoencephalopathy with dystonia and motor neuropathy" }, { - "baseId": "27850|27851", + "upstreamId": "27850|27851", "text": "Skin/hair/eye pigmentation, variation in, 7" }, { - "baseId": "27852|181300|181301", + "upstreamId": "27852|181300|181301", "text": "Familial progressive hyperpigmentation with or without hypopigmentation" }, { - "baseId": "27853|27854|27855|27856|27857|27858|27859|27860|27861|27862|27863|27866|27867|38845|38846|48403|48404|100004|100005|190415|439068|451536|452328|452484|519025|519193|559399|561296|562611|562617|562619|590520|651042|827756|827757|918813|923105|943434|964117|974903|974904|974905|974906|974907|974908|974909|974910|974911|974912|974913|974914|974915|974916|974917|974918|974919|974920|974921|974922|974923|974924|974925|974926|974927|974928|976006", + "upstreamId": "27853|27854|27855|27856|27857|27858|27859|27860|27861|27862|27863|27866|27867|38845|38846|48403|48404|100004|100005|190415|439068|451536|452328|452484|519025|519193|559399|561296|562611|562617|562619|590520|651042|827756|827757|918813|923105|943434|964117|974903|974904|974905|974906|974907|974908|974909|974910|974911|974912|974913|974914|974915|974916|974917|974918|974919|974920|974921|974922|974923|974924|974925|974926|974927|974928|976006", "text": "Anophthalmia/microphthalmia-esophageal atresia syndrome" }, { - "baseId": "27864|27865", + "upstreamId": "27864|27865", "text": "Optic nerve hypoplasia and abnormalities of the central nervous system" }, { - "baseId": "27870|27871|27872|27873|27875|27876|27879|857684", + "upstreamId": "27870|27871|27872|27873|27875|27876|27879|857684", "text": "Elliptocytosis 3" }, { - "baseId": "27874|27876|27877|27878|27880|27881|27882|27890|187086|227359|511038|535255|535256|535257|535258|535259|535260|788957|799777|858569|970998", + "upstreamId": "27874|27876|27877|27878|27880|27881|27882|27890|187086|227359|511038|535255|535256|535257|535258|535259|535260|788957|799777|858569|970998", "text": "Spherocytosis type 2" }, { - "baseId": "27875|27885|27888|27893|27894|27895|27896|27897|27898|27901|27904|237022|249424|249425|249426|249427|249428|249429|249430|249431|249432|249433|249434|249435|249437|249438|249439|249440|249441|249443|249446|249447|249448|249449|249450|249451|249452|249454|249455|249456|249457|249458|249459|249460|249461|249462|249463|249464|249465|249466|249467|249468|249469|249471|249472|276656|276660|276671|276673|276674|276675|276676|276686|276691|276697|276698|276699|276700|276701|276702|276712|276713|276714|276715|276716|276717|276718|276719|276720|276721|276722|276725|276726|276727|276728|276730|276731|276732|276733|276738|276739|276740|276744|276746|276758|276761|276762|276763|276935|276936|276949|276950|276955|276956|276957|276958|276967|276971|276975|276985|276986|276987|276988|276994|276995|276996|276997|277001|277002|277003|277004|277010|277011|277015|277016|277017|277018|277023|277024|277028|277029|277030|277518|277519|277521|277522|277523|277524|277525|277526|277527|277528|277546|277548|277549|277553|277556|277564|277565|277568|277570|277571|277572|277573|277574|277575|277586|277596|277597|277601|277602|277603|277604|277606|277607|277609|277610|277611|277622|277623|277627|277628|277631|277646|277653|277655|277656|277657|277659|277662|277663|277665|277666|277691|277692|277701|277706|277713|277715|277716|277717|277721|277722|277727|277730|277732|277733|277734|277735|277737|277739|277740|277741|277743|277750|277761|364557|535241|535244|552282|553135|609359|609361|609362|609364|696193|718293|745764|745765|777020|789862|789863|789864|794457|799137|862452|862453|862454|862455|862456|862457|862458|862459|862460|862461|862462|862463|862464|862465|862466|862467|862468|862469|862470|862471|862472|862473|862474|862475|862476|862477|862478|862479|862480|862481|862482|862483|862484|862485|862486|862487|862488|862489|862490|862491|862492|862493|862494|862495|862496|862497|862498|862499|862500|862501|865004|865005|865006|865007|865008|865009|865010|865011|865012|865013|865014", + "upstreamId": "27875|27885|27888|27893|27894|27895|27896|27897|27898|27901|27904|237022|249424|249425|249426|249427|249428|249429|249430|249431|249432|249433|249434|249435|249437|249438|249439|249440|249441|249443|249446|249447|249448|249449|249450|249451|249452|249454|249455|249456|249457|249458|249459|249460|249461|249462|249463|249464|249465|249466|249467|249468|249469|249471|249472|276656|276660|276671|276673|276674|276675|276676|276686|276691|276697|276698|276699|276700|276701|276702|276712|276713|276714|276715|276716|276717|276718|276719|276720|276721|276722|276725|276726|276727|276728|276730|276731|276732|276733|276738|276739|276740|276744|276746|276758|276761|276762|276763|276935|276936|276949|276950|276955|276956|276957|276958|276967|276971|276975|276985|276986|276987|276988|276994|276995|276996|276997|277001|277002|277003|277004|277010|277011|277015|277016|277017|277018|277023|277024|277028|277029|277030|277518|277519|277521|277522|277523|277524|277525|277526|277527|277528|277546|277548|277549|277553|277556|277564|277565|277568|277570|277571|277572|277573|277574|277575|277586|277596|277597|277601|277602|277603|277604|277606|277607|277609|277610|277611|277622|277623|277627|277628|277631|277646|277653|277655|277656|277657|277659|277662|277663|277665|277666|277691|277692|277701|277706|277713|277715|277716|277717|277721|277722|277727|277730|277732|277733|277734|277735|277737|277739|277740|277741|277743|277750|277761|364557|535241|535244|552282|553135|609359|609361|609362|609364|696193|718293|745764|745765|777020|789862|789863|789864|794457|799137|862452|862453|862454|862455|862456|862457|862458|862459|862460|862461|862462|862463|862464|862465|862466|862467|862468|862469|862470|862471|862472|862473|862474|862475|862476|862477|862478|862479|862480|862481|862482|862483|862484|862485|862486|862487|862488|862489|862490|862491|862492|862493|862494|862495|862496|862497|862498|862499|862500|862501|865004|865005|865006|865007|865008|865009|865010|865011|865012|865013|865014", "text": "Hereditary pyropoikilocytosis" }, { - "baseId": "27878", + "upstreamId": "27878", "text": "ANEMIA, PERINATAL HEMOLYTIC, FATAL OR NEAR-FATAL" }, { - "baseId": "27883|27884|27886|27887|27888|27889|27890|27890|27891|27892|27893|27894|27895|27896|27898|27899|27900|237022|249424|249425|249426|249427|249428|249429|249430|249431|249432|249433|249434|249435|249437|249438|249439|249440|249441|249443|249446|249447|249448|249449|249450|249451|249452|249454|249455|249456|249457|249458|249459|249460|249461|249462|249463|249464|249465|249466|249467|249468|249469|249471|249472|276656|276660|276674|276675|276676|276697|276698|276699|276700|276701|276702|276712|276713|276714|276715|276716|276717|276718|276719|276720|276721|276722|276725|276727|276728|276730|276731|276732|276733|276738|276739|276740|276744|276746|276758|276761|276762|276935|276936|276956|276957|276958|276967|276971|276975|276985|276986|276987|276988|276994|276995|276996|276997|277001|277002|277003|277010|277011|277015|277016|277017|277018|277023|277024|277028|277029|277030|277519|277523|277524|277525|277527|277546|277549|277553|277556|277564|277565|277568|277570|277571|277572|277573|277574|277575|277586|277596|277597|277601|277602|277603|277606|277607|277609|277622|277628|277631|277646|277655|277656|277657|277659|277662|277663|277665|277666|277691|277692|277701|277706|277713|277715|277716|277717|277721|277722|277733|277734|277735|277737|277739|277740|277741|277743|364557|535241|535244|609359|609361|609362|609364|696193|718293|745764|745765|777020|794457|799137|816434|862452|862453|862454|862455|862456|862457|862458|862459|862460|862461|862462|862463|862464|862465|862466|862467|862468|862469|862470|862471|862472|862473|862474|862475|862476|862477|862478|862479|862480|862481|862482|862483|862484|862485|862486|862487|862488|862489|862490|862491|862492|862493|862494|862495|862496|862497|862498|862499|862500|862501|865004|865005|865006|865007|865008|865009|865010|865011|865012|865013|865014|964132", + "upstreamId": "27883|27884|27886|27887|27888|27889|27890|27890|27891|27892|27893|27894|27895|27896|27898|27899|27900|237022|249424|249425|249426|249427|249428|249429|249430|249431|249432|249433|249434|249435|249437|249438|249439|249440|249441|249443|249446|249447|249448|249449|249450|249451|249452|249454|249455|249456|249457|249458|249459|249460|249461|249462|249463|249464|249465|249466|249467|249468|249469|249471|249472|276656|276660|276674|276675|276676|276697|276698|276699|276700|276701|276702|276712|276713|276714|276715|276716|276717|276718|276719|276720|276721|276722|276725|276727|276728|276730|276731|276732|276733|276738|276739|276740|276744|276746|276758|276761|276762|276935|276936|276956|276957|276958|276967|276971|276975|276985|276986|276987|276988|276994|276995|276996|276997|277001|277002|277003|277010|277011|277015|277016|277017|277018|277023|277024|277028|277029|277030|277519|277523|277524|277525|277527|277546|277549|277553|277556|277564|277565|277568|277570|277571|277572|277573|277574|277575|277586|277596|277597|277601|277602|277603|277606|277607|277609|277622|277628|277631|277646|277655|277656|277657|277659|277662|277663|277665|277666|277691|277692|277701|277706|277713|277715|277716|277717|277721|277722|277733|277734|277735|277737|277739|277740|277741|277743|364557|535241|535244|609359|609361|609362|609364|696193|718293|745764|745765|777020|794457|799137|816434|862452|862453|862454|862455|862456|862457|862458|862459|862460|862461|862462|862463|862464|862465|862466|862467|862468|862469|862470|862471|862472|862473|862474|862475|862476|862477|862478|862479|862480|862481|862482|862483|862484|862485|862486|862487|862488|862489|862490|862491|862492|862493|862494|862495|862496|862497|862498|862499|862500|862501|865004|865005|865006|865007|865008|865009|865010|865011|865012|865013|865014|964132", "text": "Elliptocytosis 2" }, { - "baseId": "27885", + "upstreamId": "27885", "text": "Spherocytosis, type 3, autosomal recessive" }, { - "baseId": "27885|27898|27902|27903|237022|249424|249425|249426|249427|249428|249429|249430|249431|249432|249433|249434|249435|249437|249438|249439|249440|249441|249443|249446|249447|249448|249449|249450|249451|249452|249454|249455|249456|249457|249458|249459|249460|249461|249462|249463|249464|249465|249466|249467|249468|249469|249471|249472|276656|276660|276674|276675|276676|276697|276698|276699|276700|276701|276702|276712|276713|276714|276715|276716|276717|276718|276719|276720|276721|276722|276725|276727|276728|276730|276731|276732|276733|276738|276739|276740|276744|276746|276758|276761|276762|276935|276936|276956|276957|276958|276967|276971|276975|276985|276986|276987|276988|276994|276995|276996|276997|277001|277002|277003|277010|277011|277015|277016|277017|277018|277023|277024|277028|277029|277030|277519|277523|277524|277525|277527|277546|277549|277553|277556|277564|277565|277568|277570|277571|277572|277573|277574|277575|277586|277596|277597|277601|277602|277603|277606|277607|277609|277622|277628|277631|277646|277655|277656|277657|277659|277662|277663|277665|277666|277691|277692|277701|277706|277713|277715|277716|277717|277721|277722|277733|277734|277735|277737|277739|277740|277741|277743|364557|488176|535241|535243|535244|538329|609359|609361|609362|609364|696193|718293|745764|745765|777020|788728|794457|799137|862452|862453|862454|862455|862456|862457|862458|862459|862460|862461|862462|862463|862464|862465|862466|862467|862468|862469|862470|862471|862472|862473|862474|862475|862476|862477|862478|862479|862480|862481|862482|862483|862484|862485|862486|862487|862488|862489|862490|862491|862492|862493|862494|862495|862496|862497|862498|862499|862500|862501|865004|865005|865006|865007|865008|865009|865010|865011|865012|865013|865014|904187|918570|920128|920129", + "upstreamId": "27885|27898|27902|27903|237022|249424|249425|249426|249427|249428|249429|249430|249431|249432|249433|249434|249435|249437|249438|249439|249440|249441|249443|249446|249447|249448|249449|249450|249451|249452|249454|249455|249456|249457|249458|249459|249460|249461|249462|249463|249464|249465|249466|249467|249468|249469|249471|249472|276656|276660|276674|276675|276676|276697|276698|276699|276700|276701|276702|276712|276713|276714|276715|276716|276717|276718|276719|276720|276721|276722|276725|276727|276728|276730|276731|276732|276733|276738|276739|276740|276744|276746|276758|276761|276762|276935|276936|276956|276957|276958|276967|276971|276975|276985|276986|276987|276988|276994|276995|276996|276997|277001|277002|277003|277010|277011|277015|277016|277017|277018|277023|277024|277028|277029|277030|277519|277523|277524|277525|277527|277546|277549|277553|277556|277564|277565|277568|277570|277571|277572|277573|277574|277575|277586|277596|277597|277601|277602|277603|277606|277607|277609|277622|277628|277631|277646|277655|277656|277657|277659|277662|277663|277665|277666|277691|277692|277701|277706|277713|277715|277716|277717|277721|277722|277733|277734|277735|277737|277739|277740|277741|277743|364557|488176|535241|535243|535244|538329|609359|609361|609362|609364|696193|718293|745764|745765|777020|788728|794457|799137|862452|862453|862454|862455|862456|862457|862458|862459|862460|862461|862462|862463|862464|862465|862466|862467|862468|862469|862470|862471|862472|862473|862474|862475|862476|862477|862478|862479|862480|862481|862482|862483|862484|862485|862486|862487|862488|862489|862490|862491|862492|862493|862494|862495|862496|862497|862498|862499|862500|862501|865004|865005|865006|865007|865008|865009|865010|865011|865012|865013|865014|904187|918570|920128|920129", "text": "Spherocytosis type 3" }, { - "baseId": "27895|623741", + "upstreamId": "27895|623741", "text": "Prenatal anemia" }, { - "baseId": "27900", + "upstreamId": "27900", "text": "Pyropoikilocytosis" }, { - "baseId": "27906|44156|142972|143003|143019|168759|168761|168762|168763|168764|168765|168768|168770|168771|168772|168776|168777|168779|168780|168784|168787|168788|168790|168792|168794|194022|202393|202433|202442|202454|370632|372248|421712|428923|428926|442553|459394|486750|563532|565554|612845|613759|614336|621028|625806|626184|653813|789348|790845|917796|919185|919186|919187|920262|946388|964310|964311|964312|964313|964314|964315|964316|970895|970896|975942|976518|983776", + "upstreamId": "27906|44156|142972|143003|143019|168759|168761|168762|168763|168764|168765|168768|168770|168771|168772|168776|168777|168779|168780|168784|168787|168788|168790|168792|168794|194022|202393|202433|202442|202454|370632|372248|421712|428923|428926|442553|459394|486750|563532|565554|612845|613759|614336|621028|625806|626184|653813|789348|790845|917796|919185|919186|919187|920262|946388|964310|964311|964312|964313|964314|964315|964316|970895|970896|975942|976518|983776", "text": "Early infantile epileptic encephalopathy 5" }, { - "baseId": "27907|27908|27910|27911|49111|49113|49125|49134|49135|49148|49154|49167|49172|49176|49178|49186|49192|54510|54515|54517|54520|54524|54529|54541|54548|142932|142939|173525|173668|173668|179029|179037|179037|179038|228963|228965|265889|286235|286237|286238|286245|286265|286272|286277|286285|286289|286291|286291|286296|286297|286298|286986|286987|286991|286992|286993|286997|286998|286999|287014|287020|287031|287051|289312|289322|289323|289327|289329|289330|289331|289335|289354|289356|289673|289686|289687|289689|289700|289706|289730|289731|289732|289733|289735|392656|417660|417661|417662|442511|442519|450901|451196|494957|518329|552535|620088|624074|884865|884866|884867|884868|884869|884870|884871|884872|884873|884874|884875|884876|884877|884878|884879|884880|884881|884882|884883|884884|884885|884886|884887|884888|884889|884890|884891|884892|884893|884894|884895|884896|884897|884898|884899|884900|884901|884902|884903|884904|884905|884906|884907|884908|884909|884910|884911|884912|884913|884914|884915|884916|884917|884918|887363|918772|920178|920179|980446", + "upstreamId": "27907|27908|27910|27911|49111|49113|49125|49134|49135|49148|49154|49167|49172|49176|49178|49186|49192|54510|54515|54517|54520|54524|54529|54541|54548|142932|142939|173525|173668|173668|179029|179037|179037|179038|228963|228965|265889|286235|286237|286238|286245|286265|286272|286277|286285|286289|286291|286291|286296|286297|286298|286986|286987|286991|286992|286993|286997|286998|286999|287014|287020|287031|287051|289312|289322|289323|289327|289329|289330|289331|289335|289354|289356|289673|289686|289687|289689|289700|289706|289730|289731|289732|289733|289735|392656|417660|417661|417662|442511|442519|450901|451196|494957|518329|552535|620088|624074|884865|884866|884867|884868|884869|884870|884871|884872|884873|884874|884875|884876|884877|884878|884879|884880|884881|884882|884883|884884|884885|884886|884887|884888|884889|884890|884891|884892|884893|884894|884895|884896|884897|884898|884899|884900|884901|884902|884903|884904|884905|884906|884907|884908|884909|884910|884911|884912|884913|884914|884915|884916|884917|884918|887363|918772|920178|920179|980446", "text": "Gingival fibromatosis 1" }, { - "baseId": "27908|27908|27909|27910|27910|27911|27911|27912|49111|49113|49125|49132|49134|49135|49142|49148|49153|49154|49162|49167|49169|49172|49176|49178|49186|49192|49196|49199|54510|54515|54517|54520|54524|54529|54541|54548|125843|142932|142939|173525|173668|173668|179037|179038|228963|228965|264097|265889|286235|286237|286238|286245|286265|286272|286277|286285|286289|286291|286291|286296|286297|286298|286986|286987|286991|286992|286993|286997|286998|286999|287014|287020|287031|287051|289312|289322|289323|289327|289329|289330|289331|289335|289354|289356|289673|289686|289687|289689|289700|289706|289730|289731|289732|289733|289735|392656|437668|442511|442519|451196|518215|518329|552535|583086|624847|818215|884865|884866|884867|884868|884869|884870|884871|884872|884873|884874|884875|884876|884877|884878|884879|884880|884881|884882|884883|884884|884885|884886|884887|884888|884889|884890|884891|884892|884893|884894|884895|884896|884897|884898|884899|884900|884901|884902|884903|884904|884905|884906|884907|884908|884909|884910|884911|884912|884913|884914|884915|884916|884917|884918|887363|921224|964201|975856|980315|980446|983791", + "upstreamId": "27908|27908|27909|27910|27910|27911|27911|27912|49111|49113|49125|49132|49134|49135|49142|49148|49153|49154|49162|49167|49169|49172|49176|49178|49186|49192|49196|49199|54510|54515|54517|54520|54524|54529|54541|54548|125843|142932|142939|173525|173668|173668|179037|179038|228963|228965|264097|265889|286235|286237|286238|286245|286265|286272|286277|286285|286289|286291|286291|286296|286297|286298|286986|286987|286991|286992|286993|286997|286998|286999|287014|287020|287031|287051|289312|289322|289323|289327|289329|289330|289331|289335|289354|289356|289673|289686|289687|289689|289700|289706|289730|289731|289732|289733|289735|392656|437668|442511|442519|451196|518215|518329|552535|583086|624847|818215|884865|884866|884867|884868|884869|884870|884871|884872|884873|884874|884875|884876|884877|884878|884879|884880|884881|884882|884883|884884|884885|884886|884887|884888|884889|884890|884891|884892|884893|884894|884895|884896|884897|884898|884899|884900|884901|884902|884903|884904|884905|884906|884907|884908|884909|884910|884911|884912|884913|884914|884915|884916|884917|884918|887363|921224|964201|975856|980315|980446|983791", "text": "Noonan syndrome 4" }, { - "baseId": "27909|27911|28363|28363|28363|28364|28364|28365|28365|28365|28365|28366|28366|28366|28367|28367|28368|28368|28369|28370|28370|28371|28372|28372|28372|28373|28373|28374|28379|28379|28380|28381|28382|28383|28384|28385|28388|28390|28941|28942|28996|29008|29020|38760|38760|38761|38762|38763|45369|45370|48246|48817|48955|48957|48957|48959|48959|48963|48965|48972|48973|48976|48978|48982|48983|48983|48986|48988|48989|48991|48992|48994|48995|48996|48997|48998|48998|49006|49010|49012|49019|49020|49022|49023|49024|49028|49028|49029|49029|49032|49032|49032|49036|49040|49055|49116|49142|49153|49156|53765|53766|53775|53966|53978|54515|70453|75093|138851|142546|142548|166118|174176|175395|175398|175540|179157|179456|181507|181513|224691|224692|225823|226150|230599|264459|264875|316040|316041|316046|316051|316057|316064|316065|323294|323298|323300|323304|323305|323306|323307|329404|329406|329458|329467|329470|329471|329472|329473|329475|329476|329477|329478|329485|329521|330584|330589|330590|330591|330595|330611|330625|330626|330628|330630|330634|354275|359646|359799|429364|481135|481136|481137|487580|494957|550169|552584|556612|569565|582588|624074|682796|682797|790236|792557|792700|798651|869289|869290|869291|869292|869293|869294|869295|869296|869297|869298|869299|869300|869301|869302|869303|869304|869305|869306|869307|869308|869309|869310|869311|869312|869313|869314|869315|869316|869317|970539|970540|975717|980344", + "upstreamId": "27909|27911|28363|28363|28363|28364|28364|28365|28365|28365|28365|28366|28366|28366|28367|28367|28368|28368|28369|28370|28370|28371|28372|28372|28372|28373|28373|28374|28379|28379|28380|28381|28382|28383|28384|28385|28388|28390|28941|28942|28996|29008|29020|38760|38760|38761|38762|38763|45369|45370|48246|48817|48955|48957|48957|48959|48959|48963|48965|48972|48973|48976|48978|48982|48983|48983|48986|48988|48989|48991|48992|48994|48995|48996|48997|48998|48998|49006|49010|49012|49019|49020|49022|49023|49024|49028|49028|49029|49029|49032|49032|49032|49036|49040|49055|49116|49142|49153|49156|53765|53766|53775|53966|53978|54515|70453|75093|138851|142546|142548|166118|174176|175395|175398|175540|179157|179456|181507|181513|224691|224692|225823|226150|230599|264459|264875|316040|316041|316046|316051|316057|316064|316065|323294|323298|323300|323304|323305|323306|323307|329404|329406|329458|329467|329470|329471|329472|329473|329475|329476|329477|329478|329485|329521|330584|330589|330590|330591|330595|330611|330625|330626|330628|330630|330634|354275|359646|359799|429364|481135|481136|481137|487580|494957|550169|552584|556612|569565|582588|624074|682796|682797|790236|792557|792700|798651|869289|869290|869291|869292|869293|869294|869295|869296|869297|869298|869299|869300|869301|869302|869303|869304|869305|869306|869307|869308|869309|869310|869311|869312|869313|869314|869315|869316|869317|970539|970540|975717|980344", "text": "Noonan syndrome 1" }, { - "baseId": "27911|48817|48818|48819|48955|49054|49134|49151|49154|49203|49288|53997|54540|70449|179102|359443|462420|533045|624073|624074", + "upstreamId": "27911|48817|48818|48819|48955|49054|49134|49151|49154|49203|49288|53997|54540|70449|179102|359443|462420|533045|624073|624074", "text": "Noonan syndrome and Noonan-related syndrome" }, { - "baseId": "27913", + "upstreamId": "27913", "text": "Somatostatin analog, resistance to" }, { - "baseId": "27914|27914|27915|27916|27917|27917|27918|27918|27919|27919|27920|27920|38841|38841|38843|38843|38844|135658|135658|135660|135661|135661|135663|135663|135664|135664|135665|135665|135666|135666|135667|135668|135668|135670|135670|135671|135671|135672|135672|135673|135673|142712|142712|142713|142713|142714|142714|142715|142716|142716|142718|142719|142720|142721|142721|142722|142722|142724|142725|142725|142727|142730|142730|142731|142732|142732|142735|142735|191718|193199|201272|201273|201274|201274|201275|201275|201276|201287|201290|201291|201292|201294|201297|201300|201308|201311|201312|201314|201314|201317|201318|201319|201321|201321|201322|201322|201323|201323|201328|201338|201344|201348|201349|201350|201351|201353|201353|201357|201357|201358|201360|201377|201391|201392|201393|201400|201403|201405|201410|201410|205224|206872|206872|206874|206874|206878|206879|206882|206882|206883|225807|238376|238376|266816|282352|282353|282354|282355|282359|282360|282365|282367|282367|282368|282368|282369|282369|282375|282375|282389|282401|282402|282404|282409|283021|283031|283032|283039|283042|283043|283056|283063|283064|283066|283067|283068|283072|283076|283077|283078|283090|283093|283094|283095|283096|284604|284606|284613|284628|284630|284634|284634|284642|284642|284650|284650|284651|284651|284655|284656|284657|284671|284673|285053|285054|285055|285062|285069|285084|285085|285085|285095|285095|285107|285110|285111|285113|285123|285129|353541|359288|359299|361613|365570|365577|365582|365587|365589|365601|365608|365811|365826|365829|365834|366032|366036|366044|391406|391410|391457|391458|391459|391567|391568|391568|391571|391627|391627|391638|391639|405345|405353|405354|425419|427922|427924|427924|427925|427925|438165|442983|442983|442987|442991|443000|443002|448781|448785|448791|448802|448802|448804|448807|448809|448810|448981|448984|448987|449050|449058|449064|449066|449068|449079|449084|449085|449088|449092|486251|486732|486735|486736|499046|511350|516206|516483|516485|516492|516497|516502|516511|516513|516587|516592|516595|516597|516600|516605|516606|516614|516615|516617|516620|516642|516643|516651|516652|516666|516668|516674|536609|539183|553374|553375|557418|557420|557594|557596|557598|557600|557639|557641|557643|557645|558070|558819|558821|558823|558825|559304|559306|559308|559310|559312|559314|559316|559318|576581|578922|578945|579001|579001|611377|611378|611379|611380|612565|614228|614229|614230|628769|628770|628771|628772|628773|628774|628775|628776|628777|628778|628778|628779|628780|628781|628782|628783|628784|628785|628786|628787|628788|628789|628790|628791|628792|628793|628794|628795|650887|677406|683411|685877|685878|685879|685880|685886|685887|690853|690858|695097|746880|746882|762350|780920|787067|790072|790073|790074|790075|790076|790077|790078|790079|790080|790081|790082|790083|790084|790085|794826|801978|819061|819063|821870|821871|825051|825052|825053|825054|825055|825056|825057|825058|825059|825060|825061|825062|825063|825064|825065|825066|825067|825068|825069|825070|825071|825072|825073|825074|825075|825076|825077|825078|825079|825080|825081|825082|825083|825084|825085|825086|825087|825088|825089|825090|825091|825092|825093|825094|825095|825096|825097|825098|850842|850844|851089|881274|881275|881276|881277|881278|881279|881280|881281|881282|881282|881283|881284|881285|881286|881287|881288|881289|881290|881291|881292|881293|881294|881295|881296|881297|881298|881299|881300|881301|881302|881303|881304|918679|918680|918681|922329|922330|922331|922331|922332|922333|922334|922335|922336|930891|930892|930893|930894|930895|930896|930897|930898|930899|930900|930901|930902|930903|930904|930905|930906|930907|930908|930909|942318|942319|942320|942321|942322|942323|942324|942325|942326|942327|942328|942329|952746|952747|952748|952749|959586|959587|964168|964172|964173|966786|966787|975945|976644|976645|976705|976706", + "upstreamId": "27914|27914|27915|27916|27917|27917|27918|27918|27919|27919|27920|27920|38841|38841|38843|38843|38844|135658|135658|135660|135661|135661|135663|135663|135664|135664|135665|135665|135666|135666|135667|135668|135668|135670|135670|135671|135671|135672|135672|135673|135673|142712|142712|142713|142713|142714|142714|142715|142716|142716|142718|142719|142720|142721|142721|142722|142722|142724|142725|142725|142727|142730|142730|142731|142732|142732|142735|142735|191718|193199|201272|201273|201274|201274|201275|201275|201276|201287|201290|201291|201292|201294|201297|201300|201308|201311|201312|201314|201314|201317|201318|201319|201321|201321|201322|201322|201323|201323|201328|201338|201344|201348|201349|201350|201351|201353|201353|201357|201357|201358|201360|201377|201391|201392|201393|201400|201403|201405|201410|201410|205224|206872|206872|206874|206874|206878|206879|206882|206882|206883|225807|238376|238376|266816|282352|282353|282354|282355|282359|282360|282365|282367|282367|282368|282368|282369|282369|282375|282375|282389|282401|282402|282404|282409|283021|283031|283032|283039|283042|283043|283056|283063|283064|283066|283067|283068|283072|283076|283077|283078|283090|283093|283094|283095|283096|284604|284606|284613|284628|284630|284634|284634|284642|284642|284650|284650|284651|284651|284655|284656|284657|284671|284673|285053|285054|285055|285062|285069|285084|285085|285085|285095|285095|285107|285110|285111|285113|285123|285129|353541|359288|359299|361613|365570|365577|365582|365587|365589|365601|365608|365811|365826|365829|365834|366032|366036|366044|391406|391410|391457|391458|391459|391567|391568|391568|391571|391627|391627|391638|391639|405345|405353|405354|425419|427922|427924|427924|427925|427925|438165|442983|442983|442987|442991|443000|443002|448781|448785|448791|448802|448802|448804|448807|448809|448810|448981|448984|448987|449050|449058|449064|449066|449068|449079|449084|449085|449088|449092|486251|486732|486735|486736|499046|511350|516206|516483|516485|516492|516497|516502|516511|516513|516587|516592|516595|516597|516600|516605|516606|516614|516615|516617|516620|516642|516643|516651|516652|516666|516668|516674|536609|539183|553374|553375|557418|557420|557594|557596|557598|557600|557639|557641|557643|557645|558070|558819|558821|558823|558825|559304|559306|559308|559310|559312|559314|559316|559318|576581|578922|578945|579001|579001|611377|611378|611379|611380|612565|614228|614229|614230|628769|628770|628771|628772|628773|628774|628775|628776|628777|628778|628778|628779|628780|628781|628782|628783|628784|628785|628786|628787|628788|628789|628790|628791|628792|628793|628794|628795|650887|677406|683411|685877|685878|685879|685880|685886|685887|690853|690858|695097|746880|746882|762350|780920|787067|790072|790073|790074|790075|790076|790077|790078|790079|790080|790081|790082|790083|790084|790085|794826|801978|819061|819063|821870|821871|825051|825052|825053|825054|825055|825056|825057|825058|825059|825060|825061|825062|825063|825064|825065|825066|825067|825068|825069|825070|825071|825072|825073|825074|825075|825076|825077|825078|825079|825080|825081|825082|825083|825084|825085|825086|825087|825088|825089|825090|825091|825092|825093|825094|825095|825096|825097|825098|850842|850844|851089|881274|881275|881276|881277|881278|881279|881280|881281|881282|881282|881283|881284|881285|881286|881287|881288|881289|881290|881291|881292|881293|881294|881295|881296|881297|881298|881299|881300|881301|881302|881303|881304|918679|918680|918681|922329|922330|922331|922331|922332|922333|922334|922335|922336|930891|930892|930893|930894|930895|930896|930897|930898|930899|930900|930901|930902|930903|930904|930905|930906|930907|930908|930909|942318|942319|942320|942321|942322|942323|942324|942325|942326|942327|942328|942329|952746|952747|952748|952749|959586|959587|964168|964172|964173|966786|966787|975945|976644|976645|976705|976706", "text": "Seizures, benign familial infantile, 3" }, { - "baseId": "27914|27917|27918|27918|27919|27919|27920|38840|38841|38841|38842|38843|38843|135658|135660|135661|135663|135664|135665|135666|135668|135670|135671|135672|135673|142712|142713|142714|142715|142716|142718|142719|142721|142722|142724|142725|142727|142730|142731|142732|142735|191718|191718|193199|193200|201272|201273|201274|201275|201276|201278|201287|201290|201291|201297|201299|201300|201306|201308|201311|201312|201314|201316|201317|201318|201319|201321|201322|201323|201328|201335|201338|201344|201345|201348|201348|201349|201350|201351|201353|201357|201358|201360|201367|201377|201391|201391|201392|201393|201393|201400|201400|201403|201405|201407|201410|206872|206874|206879|206881|206882|206883|225807|225807|225808|238376|244064|266816|282367|282368|282369|282375|284634|284642|284650|284651|285085|285095|359288|359288|359299|359306|361613|362318|365570|365577|365582|365587|365589|365601|365608|365811|365821|365826|365829|365834|366032|366036|366044|391406|391410|391457|391458|391459|391567|391568|391571|391627|391627|391638|391639|405345|405353|405354|405354|425417|425419|427920|427922|427924|427924|427925|427927|438165|439871|442983|442987|442991|443000|443002|448781|448785|448791|448802|448804|448807|448809|448810|448981|448984|448987|449050|449058|449064|449066|449068|449079|449084|449085|449088|449092|481228|486251|488153|499046|511004|511350|516206|516483|516485|516492|516497|516502|516511|516513|516587|516592|516595|516597|516600|516605|516606|516614|516615|516617|516620|516642|516643|516651|516652|516666|516668|516674|536609|539183|550585|553374|553375|557418|557420|557594|557596|557598|557600|557639|557641|557643|557645|558070|558819|558821|558823|558825|559304|559306|559308|559310|559312|559314|559316|559318|576581|578922|578945|579001|611377|611378|611379|611380|611460|612565|614228|614229|614230|628769|628770|628771|628772|628773|628774|628775|628776|628777|628778|628779|628780|628781|628782|628783|628783|628784|628785|628786|628787|628788|628789|628790|628791|628792|628793|628794|628795|650887|677406|683411|685877|685878|685879|685880|685886|685887|690853|690858|695097|746880|746882|762350|780920|787067|794819|794820|794826|798487|800390|801533|801977|801979|805077|816521|819061|819063|821870|821871|825051|825052|825053|825054|825055|825056|825057|825058|825059|825060|825061|825062|825063|825064|825065|825066|825067|825068|825069|825070|825071|825072|825073|825074|825075|825076|825077|825078|825079|825080|825081|825082|825083|825084|825085|825086|825087|825088|825089|825090|825091|825092|825093|825094|825095|825096|825097|825098|850842|850844|851089|858325|858326|858327|858328|858329|858330|858331|858332|858379|859024|881282|921265|921266|921267|922329|922330|922331|922331|922332|922333|922334|922335|922336|930891|930892|930893|930894|930895|930896|930897|930898|930899|930900|930901|930902|930903|930904|930905|930906|930907|930908|930909|942318|942319|942320|942321|942322|942323|942324|942325|942326|942327|942328|942329|952746|952747|952748|952749|959586|959587|962859|964167|964169|964170|964171|964174|964175|966786|966787|967261|970012|970131|970519|970716|970717|970718|970719|971235|976644|976645|983692", + "upstreamId": "27914|27917|27918|27918|27919|27919|27920|38840|38841|38841|38842|38843|38843|135658|135660|135661|135663|135664|135665|135666|135668|135670|135671|135672|135673|142712|142713|142714|142715|142716|142718|142719|142721|142722|142724|142725|142727|142730|142731|142732|142735|191718|191718|193199|193200|201272|201273|201274|201275|201276|201278|201287|201290|201291|201297|201299|201300|201306|201308|201311|201312|201314|201316|201317|201318|201319|201321|201322|201323|201328|201335|201338|201344|201345|201348|201348|201349|201350|201351|201353|201357|201358|201360|201367|201377|201391|201391|201392|201393|201393|201400|201400|201403|201405|201407|201410|206872|206874|206879|206881|206882|206883|225807|225807|225808|238376|244064|266816|282367|282368|282369|282375|284634|284642|284650|284651|285085|285095|359288|359288|359299|359306|361613|362318|365570|365577|365582|365587|365589|365601|365608|365811|365821|365826|365829|365834|366032|366036|366044|391406|391410|391457|391458|391459|391567|391568|391571|391627|391627|391638|391639|405345|405353|405354|405354|425417|425419|427920|427922|427924|427924|427925|427927|438165|439871|442983|442987|442991|443000|443002|448781|448785|448791|448802|448804|448807|448809|448810|448981|448984|448987|449050|449058|449064|449066|449068|449079|449084|449085|449088|449092|481228|486251|488153|499046|511004|511350|516206|516483|516485|516492|516497|516502|516511|516513|516587|516592|516595|516597|516600|516605|516606|516614|516615|516617|516620|516642|516643|516651|516652|516666|516668|516674|536609|539183|550585|553374|553375|557418|557420|557594|557596|557598|557600|557639|557641|557643|557645|558070|558819|558821|558823|558825|559304|559306|559308|559310|559312|559314|559316|559318|576581|578922|578945|579001|611377|611378|611379|611380|611460|612565|614228|614229|614230|628769|628770|628771|628772|628773|628774|628775|628776|628777|628778|628779|628780|628781|628782|628783|628783|628784|628785|628786|628787|628788|628789|628790|628791|628792|628793|628794|628795|650887|677406|683411|685877|685878|685879|685880|685886|685887|690853|690858|695097|746880|746882|762350|780920|787067|794819|794820|794826|798487|800390|801533|801977|801979|805077|816521|819061|819063|821870|821871|825051|825052|825053|825054|825055|825056|825057|825058|825059|825060|825061|825062|825063|825064|825065|825066|825067|825068|825069|825070|825071|825072|825073|825074|825075|825076|825077|825078|825079|825080|825081|825082|825083|825084|825085|825086|825087|825088|825089|825090|825091|825092|825093|825094|825095|825096|825097|825098|850842|850844|851089|858325|858326|858327|858328|858329|858330|858331|858332|858379|859024|881282|921265|921266|921267|922329|922330|922331|922331|922332|922333|922334|922335|922336|930891|930892|930893|930894|930895|930896|930897|930898|930899|930900|930901|930902|930903|930904|930905|930906|930907|930908|930909|942318|942319|942320|942321|942322|942323|942324|942325|942326|942327|942328|942329|952746|952747|952748|952749|959586|959587|962859|964167|964169|964170|964171|964174|964175|966786|966787|967261|970012|970131|970519|970716|970717|970718|970719|971235|976644|976645|983692", "text": "Early infantile epileptic encephalopathy 11" }, { - "baseId": "27919|38840|38843|49898|75278|135660|135667|171873|191718|193200|200402|201276|201282|201287|201301|201302|201335|201344|201348|201370|201372|201375|201381|201391|201393|201401|202667|202669|202670|205273|205795|206877|215118|225808|226651|226901|231838|244793|259702|260240|264016|264041|264589|266816|270091|359288|359770|360481|361141|365821|365825|372867|391458|395450|405349|405351|405359|408604|408605|410861|410863|410868|410871|413555|415049|415325|421910|422357|426142|428626|430428|430430|434773|442981|442999|443003|443959|481612|482276|486736|488156|511343|511345|511347|511350|511980|512486|512490|514637|514776|516620|521972|536235|539183|552158|552187|567934|586161|611460|611536|612447|628783|628785|790084|791217|794820|794823|859024|904931|961606|969324|972769|972770|972771|972772|972831|972833|972834|972838|972843|972846|972847|972848|972901|972902|972903|972904|972905|972906|972907|972908|972909|972910|972911|972912|972913|972914|972915|972916|972917|972918|972919|972920|972921|972922|972923|972924|972925|972926|972927|972935|972936|972937|972938|972960|972961|972962|972963|972964|972965|972966|972967|972970|972971|973003|977310", + "upstreamId": "27919|38840|38843|49898|75278|135660|135667|171873|191718|193200|200402|201276|201282|201287|201301|201302|201335|201344|201348|201370|201372|201375|201381|201391|201393|201401|202667|202669|202670|205273|205795|206877|215118|225808|226651|226901|231838|244793|259702|260240|264016|264041|264589|266816|270091|359288|359770|360481|361141|365821|365825|372867|391458|395450|405349|405351|405359|408604|408605|410861|410863|410868|410871|413555|415049|415325|421910|422357|426142|428626|430428|430430|434773|442981|442999|443003|443959|481612|482276|486736|488156|511343|511345|511347|511350|511980|512486|512490|514637|514776|516620|521972|536235|539183|552158|552187|567934|586161|611460|611536|612447|628783|628785|790084|791217|794820|794823|859024|904931|961606|969324|972769|972770|972771|972772|972831|972833|972834|972838|972843|972846|972847|972848|972901|972902|972903|972904|972905|972906|972907|972908|972909|972910|972911|972912|972913|972914|972915|972916|972917|972918|972919|972920|972921|972922|972923|972924|972925|972926|972927|972935|972936|972937|972938|972960|972961|972962|972963|972964|972965|972966|972967|972970|972971|973003|977310", "text": "Complex neurodevelopmental disorder" }, { - "baseId": "27921|27922|27923|27924|27925|27926|27928|27930|27931|27933|27934|27935|27937|45412|45412|45413|45414|45415|45415|79412|79415|79426|79443|79445|79450|79466|79470|79481|79496|79508|79523|79552|79563|79567|99530|99537|99539|99546|99547|99547|99550|99559|99561|99564|99565|99568|135655|142674|142676|142680|142688|142689|177070|187701|187795|187817|187828|188046|191002|191522|191884|192095|192292|193103|194348|194348|198608|198609|201417|201432|201440|201478|201481|201506|201519|201533|201534|201541|201560|201587|201597|201599|206886|259708|259710|282505|282517|282522|282523|282527|282530|282532|282536|282541|283171|283180|283181|283182|283183|284767|284774|284775|284779|284782|284785|284786|284787|284795|284796|284797|285215|285228|285235|285238|285246|285252|285253|285256|359321|361170|365852|365882|365919|405410|421309|440563|449111|480426|481455|486914|486914|489670|498967|513514|516639|516662|558853|613610|614231|615767|655172|655173|677407|678116|683415|798489|800664|800665|801980|801981|801982|818718|850506|858753|859026|881348|881349|881350|881351|881352|881353|881354|881355|881356|881357|881358|881359|881360|881361|881362|881363|881364|881365|881366|881367|881368|882824|882825|917728|917729|917730|917731|964177|964178|964180|964181|964182|966052|970720|970721|970722", + "upstreamId": "27921|27922|27923|27924|27925|27926|27928|27930|27931|27933|27934|27935|27937|45412|45412|45413|45414|45415|45415|79412|79415|79426|79443|79445|79450|79466|79470|79481|79496|79508|79523|79552|79563|79567|99530|99537|99539|99546|99547|99547|99550|99559|99561|99564|99565|99568|135655|142674|142676|142680|142688|142689|177070|187701|187795|187817|187828|188046|191002|191522|191884|192095|192292|193103|194348|194348|198608|198609|201417|201432|201440|201478|201481|201506|201519|201533|201534|201541|201560|201587|201597|201599|206886|259708|259710|282505|282517|282522|282523|282527|282530|282532|282536|282541|283171|283180|283181|283182|283183|284767|284774|284775|284779|284782|284785|284786|284787|284795|284796|284797|285215|285228|285235|285238|285246|285252|285253|285256|359321|361170|365852|365882|365919|405410|421309|440563|449111|480426|481455|486914|486914|489670|498967|513514|516639|516662|558853|613610|614231|615767|655172|655173|677407|678116|683415|798489|800664|800665|801980|801981|801982|818718|850506|858753|859026|881348|881349|881350|881351|881352|881353|881354|881355|881356|881357|881358|881359|881360|881361|881362|881363|881364|881365|881366|881367|881368|882824|882825|917728|917729|917730|917731|964177|964178|964180|964181|964182|966052|970720|970721|970722", "text": "Generalized epilepsy with febrile seizures plus, type 2" }, { - "baseId": "27921|27922|27927|27928|27928|27929|27933|27934|27937|27938|27939|27940|38838|38839|45412|45412|45415|45415|79391|79392|79393|79394|79395|79396|79397|79398|79400|79401|79403|79404|79405|79407|79408|79409|79410|79411|79412|79412|79413|79414|79415|79416|79417|79419|79420|79421|79422|79423|79424|79425|79426|79427|79428|79429|79430|79431|79432|79433|79434|79435|79436|79437|79438|79439|79440|79443|79443|79444|79445|79446|79447|79448|79450|79450|79452|79453|79455|79456|79457|79458|79459|79460|79461|79462|79463|79464|79465|79466|79467|79468|79469|79470|79470|79471|79472|79473|79475|79476|79477|79479|79480|79480|79481|79483|79485|79486|79487|79488|79489|79490|79491|79492|79493|79494|79495|79496|79497|79498|79499|79500|79501|79502|79503|79504|79506|79507|79508|79509|79510|79511|79512|79513|79514|79515|79516|79518|79519|79521|79522|79523|79524|79525|79526|79527|79528|79529|79530|79531|79533|79535|79536|79537|79538|79539|79541|79542|79543|79544|79546|79547|79548|79549|79550|79551|79552|79553|79554|79555|79556|79559|79560|79561|79562|79563|79564|79565|79566|79567|79739|80297|99539|99539|99547|99565|135712|135712|177069|177070|178046|178058|178058|187700|187701|187702|187703|187704|187705|187706|187707|187708|187709|187710|187711|187712|187713|187714|187715|187716|187717|187718|187719|187720|187721|187722|187723|187724|187725|187726|187727|187728|187729|187730|187731|187732|187733|187734|187735|187736|187737|187738|187739|187740|187741|187742|187743|187744|187745|187746|187747|187748|187749|187750|187751|187752|187753|187754|187755|187756|187757|187758|187759|187760|187761|187762|187763|187764|187765|187766|187767|187768|187769|187770|187771|187772|187773|187774|187775|187776|187777|187778|187779|187780|187781|187782|187783|187784|187785|187786|187787|187788|187789|187790|187791|187792|187793|187794|187795|187795|187796|187797|187798|187799|187800|187801|187802|187803|187804|187805|187806|187807|187808|187809|187810|187811|187812|187813|187814|187815|187816|187817|187818|187819|187820|187821|187822|187823|187824|187825|187826|187827|187828|187829|187830|187831|187832|187833|187834|187835|187836|187837|187838|187839|187840|187841|187842|187843|187844|187845|187846|187847|187848|187849|187850|187851|187852|187853|187854|187855|187856|187857|187858|187859|187860|187861|187862|187863|187864|187865|187866|187867|187868|187869|187870|187871|187872|187873|187874|187875|187876|187877|187878|187879|187880|187881|187882|187883|187884|187885|187886|187887|187888|187889|191370|191884|192292|194348|194348|198608|198609|201430|201440|201463|201477|201481|201481|201487|201506|201510|201517|201533|201572|201599|201600|201622|201624|213796|213797|213798|213799|213800|213801|213802|213803|213804|213805|225817|225846|259708|259708|259710|263856|264048|267210|273736|282565|282594|283206|283227|283258|283267|283293|283322|284810|285355|285356|298652|302896|361169|361170|362323|362324|362326|362327|391507|391655|440555|440563|443031|447104|447108|447110|447112|447115|447117|447120|447123|447127|447129|447130|447186|447191|447192|447194|447203|447213|447216|447223|447283|447288|449111|449127|480426|481145|481229|486733|486734|486737|486738|486739|486740|486914|486946|489670|515050|515061|515064|515073|515076|515077|515080|515123|515181|515182|515200|515202|516639|516681|552054|556596|556598|556639|556641|556643|556645|556647|556927|556929|556931|557604|557659|557671|558112|614231|614232|615767|626817|626818|626819|626820|626821|626822|626823|626824|626825|626826|626827|626828|626829|626830|628823|650619|677407|682116|682117|718213|743638|758804|758850|761198|761200|761204|790086|790087|790088|790089|790090|790091|790092|790093|790094|790095|790096|790097|790098|790099|790100|790101|790102|790103|790104|790105|790106|790107|790108|790109|790110|790111|790112|790113|790114|790115|790116|790117|790118|790119|790120|790121|790122|790123|798488|800754|801573|816025|818718|822718|822719|822720|822721|822722|822723|822724|822725|822726|822727|822728|822729|822730|822731|822732|822733|822734|822735|850425|850513|850931|858333|858334|858335|858336|858337|858338|858339|858340|858341|858514|858587|858753|861535|861561|861562|903513|917732|917733|917821|921631|921632|921633|921634|921635|921636|921637|921638|921639|921640|930032|930033|930034|930035|930036|941448|941449|941450|941451|941452|952066|952067|952068|960404|960405|961209|962860|964176|964179|964183|964184|964649|964650|966052|966060|966393|969250|969323|970151|980304|983301", + "upstreamId": "27921|27922|27927|27928|27928|27929|27933|27934|27937|27938|27939|27940|38838|38839|45412|45412|45415|45415|79391|79392|79393|79394|79395|79396|79397|79398|79400|79401|79403|79404|79405|79407|79408|79409|79410|79411|79412|79412|79413|79414|79415|79416|79417|79419|79420|79421|79422|79423|79424|79425|79426|79427|79428|79429|79430|79431|79432|79433|79434|79435|79436|79437|79438|79439|79440|79443|79443|79444|79445|79446|79447|79448|79450|79450|79452|79453|79455|79456|79457|79458|79459|79460|79461|79462|79463|79464|79465|79466|79467|79468|79469|79470|79470|79471|79472|79473|79475|79476|79477|79479|79480|79480|79481|79483|79485|79486|79487|79488|79489|79490|79491|79492|79493|79494|79495|79496|79497|79498|79499|79500|79501|79502|79503|79504|79506|79507|79508|79509|79510|79511|79512|79513|79514|79515|79516|79518|79519|79521|79522|79523|79524|79525|79526|79527|79528|79529|79530|79531|79533|79535|79536|79537|79538|79539|79541|79542|79543|79544|79546|79547|79548|79549|79550|79551|79552|79553|79554|79555|79556|79559|79560|79561|79562|79563|79564|79565|79566|79567|79739|80297|99539|99539|99547|99565|135712|135712|177069|177070|178046|178058|178058|187700|187701|187702|187703|187704|187705|187706|187707|187708|187709|187710|187711|187712|187713|187714|187715|187716|187717|187718|187719|187720|187721|187722|187723|187724|187725|187726|187727|187728|187729|187730|187731|187732|187733|187734|187735|187736|187737|187738|187739|187740|187741|187742|187743|187744|187745|187746|187747|187748|187749|187750|187751|187752|187753|187754|187755|187756|187757|187758|187759|187760|187761|187762|187763|187764|187765|187766|187767|187768|187769|187770|187771|187772|187773|187774|187775|187776|187777|187778|187779|187780|187781|187782|187783|187784|187785|187786|187787|187788|187789|187790|187791|187792|187793|187794|187795|187795|187796|187797|187798|187799|187800|187801|187802|187803|187804|187805|187806|187807|187808|187809|187810|187811|187812|187813|187814|187815|187816|187817|187818|187819|187820|187821|187822|187823|187824|187825|187826|187827|187828|187829|187830|187831|187832|187833|187834|187835|187836|187837|187838|187839|187840|187841|187842|187843|187844|187845|187846|187847|187848|187849|187850|187851|187852|187853|187854|187855|187856|187857|187858|187859|187860|187861|187862|187863|187864|187865|187866|187867|187868|187869|187870|187871|187872|187873|187874|187875|187876|187877|187878|187879|187880|187881|187882|187883|187884|187885|187886|187887|187888|187889|191370|191884|192292|194348|194348|198608|198609|201430|201440|201463|201477|201481|201481|201487|201506|201510|201517|201533|201572|201599|201600|201622|201624|213796|213797|213798|213799|213800|213801|213802|213803|213804|213805|225817|225846|259708|259708|259710|263856|264048|267210|273736|282565|282594|283206|283227|283258|283267|283293|283322|284810|285355|285356|298652|302896|361169|361170|362323|362324|362326|362327|391507|391655|440555|440563|443031|447104|447108|447110|447112|447115|447117|447120|447123|447127|447129|447130|447186|447191|447192|447194|447203|447213|447216|447223|447283|447288|449111|449127|480426|481145|481229|486733|486734|486737|486738|486739|486740|486914|486946|489670|515050|515061|515064|515073|515076|515077|515080|515123|515181|515182|515200|515202|516639|516681|552054|556596|556598|556639|556641|556643|556645|556647|556927|556929|556931|557604|557659|557671|558112|614231|614232|615767|626817|626818|626819|626820|626821|626822|626823|626824|626825|626826|626827|626828|626829|626830|628823|650619|677407|682116|682117|718213|743638|758804|758850|761198|761200|761204|790086|790087|790088|790089|790090|790091|790092|790093|790094|790095|790096|790097|790098|790099|790100|790101|790102|790103|790104|790105|790106|790107|790108|790109|790110|790111|790112|790113|790114|790115|790116|790117|790118|790119|790120|790121|790122|790123|798488|800754|801573|816025|818718|822718|822719|822720|822721|822722|822723|822724|822725|822726|822727|822728|822729|822730|822731|822732|822733|822734|822735|850425|850513|850931|858333|858334|858335|858336|858337|858338|858339|858340|858341|858514|858587|858753|861535|861561|861562|903513|917732|917733|917821|921631|921632|921633|921634|921635|921636|921637|921638|921639|921640|930032|930033|930034|930035|930036|941448|941449|941450|941451|941452|952066|952067|952068|960404|960405|961209|962860|964176|964179|964183|964184|964649|964650|966052|966060|966393|969250|969323|970151|980304|983301", "text": "Severe myoclonic epilepsy in infancy" }, { - "baseId": "27921|99543|201449|206884|362597|486877|486898|621100|916835", + "upstreamId": "27921|99543|201449|206884|362597|486877|486898|621100|916835", "text": "Autosomal dominant epilepsy" }, { - "baseId": "27928|27932|27941|27942|45412|45412|45413|45414|45415|45415|79398|79412|79419|79420|79426|79443|79450|79450|79466|79470|79480|79481|79508|79552|79563|79567|99530|99537|99539|99546|99547|99547|99550|99559|99561|99564|99565|99568|142674|142676|142680|142688|142689|177070|187795|191002|191522|191884|192095|192292|193103|194348|201432|201481|201519|201533|201534|201560|201587|201597|206886|213804|259708|259708|259710|282505|282517|282522|282523|282527|282530|282532|282536|282541|283171|283180|283181|283182|283183|284767|284774|284775|284779|284782|284785|284786|284787|284795|284796|284797|285215|285228|285235|285238|285246|285252|285253|285256|365882|365919|421309|440563|449111|480426|486914|489670|498967|516639|516662|558853|614231|655172|655173|677407|683415|881348|881349|881350|881351|881352|881353|881354|881355|881356|881357|881358|881359|881360|881361|881362|881363|881364|881365|881366|881367|881368|882824|882825|918682|918683|918684|918685|918686|918687|918688|918689|918690|920161|920162|920163", + "upstreamId": "27928|27932|27941|27942|45412|45412|45413|45414|45415|45415|79398|79412|79419|79420|79426|79443|79450|79450|79466|79470|79480|79481|79508|79552|79563|79567|99530|99537|99539|99546|99547|99547|99550|99559|99561|99564|99565|99568|142674|142676|142680|142688|142689|177070|187795|191002|191522|191884|192095|192292|193103|194348|201432|201481|201519|201533|201534|201560|201587|201597|206886|213804|259708|259708|259710|282505|282517|282522|282523|282527|282530|282532|282536|282541|283171|283180|283181|283182|283183|284767|284774|284775|284779|284782|284785|284786|284787|284795|284796|284797|285215|285228|285235|285238|285246|285252|285253|285256|365882|365919|421309|440563|449111|480426|486914|489670|498967|516639|516662|558853|614231|655172|655173|677407|683415|881348|881349|881350|881351|881352|881353|881354|881355|881356|881357|881358|881359|881360|881361|881362|881363|881364|881365|881366|881367|881368|882824|882825|918682|918683|918684|918685|918686|918687|918688|918689|918690|920161|920162|920163", "text": "Familial hemiplegic migraine type 3" }, { - "baseId": "27935|27936", + "upstreamId": "27935|27936", "text": "Febrile seizures, familial, 3a" }, { - "baseId": "27936|31643|31644", + "upstreamId": "27936|31643|31644", "text": "carbamazepine response - Dosage" }, { - "baseId": "27936", + "upstreamId": "27936", "text": "phenytoin response - Dosage" }, { - "baseId": "27936", + "upstreamId": "27936", "text": "carbamazepine response - Efficacy" }, { - "baseId": "27936", + "upstreamId": "27936", "text": "antiepileptics response - Efficacy" }, { - "baseId": "27943|27944|27945|38835|38836|38837|247547|325160|325161|325162|325166|325177|325184|325185|325186|325194|325195|325201|325212|334843|334844|334845|334849|334851|334855|334863|341327|341332|341333|341335|341336|342821|342822|342823|342828|342829|342831|342832|342836|409621|432329|513129|513130|513357|620875|626317|703670|714898|792800|818325|875171|875172|875173|875174|875175|875176|875177|875178|875179|875180|875181|875182|875183|875184|875185|875186|875187|875188|875189|875190|875191|875192|876660|876661|876662|876663|964453|980373|980374|980375|980376|980377|980848", + "upstreamId": "27943|27944|27945|38835|38836|38837|247547|325160|325161|325162|325166|325177|325184|325185|325186|325194|325195|325201|325212|334843|334844|334845|334849|334851|334855|334863|341327|341332|341333|341335|341336|342821|342822|342823|342828|342829|342831|342832|342836|409621|432329|513129|513130|513357|620875|626317|703670|714898|792800|818325|875171|875172|875173|875174|875175|875176|875177|875178|875179|875180|875181|875182|875183|875184|875185|875186|875187|875188|875189|875190|875191|875192|876660|876661|876662|876663|964453|980373|980374|980375|980376|980377|980848", "text": "Familial renal glucosuria" }, { - "baseId": "27946|27947|132588|337850|337853|337856|337862|337866|337873|337875|337878|337884|337885|337889|337892|347431|347432|347446|347447|347450|347451|347457|347458|347461|347467|347468|347471|347472|347473|347480|347491|347493|347501|351371|351373|351374|351377|351378|351380|351382|351383|351385|351386|351389|351392|351393|351394|351397|351398|351401|351402|351410|351412|351413|352397|352398|352399|352400|352401|352402|352403|352404|352405|352406|352407|352408|352411|352412|352413|352414|352415|352416|352417|431021|493545|534406|717409|717410|792056|792057|792058|891097|891098|891099|891100|891101|891102|891103|891104|891105|891106|891107|891108|891109|891110|891111|891112|891113|891114|891115|891116|891117|891118|891119|891120|891121|891122|891123|891124|891125|891126|891127|891128|891129|891130|891131|891132|891133|891134|891819|961897|980971", + "upstreamId": "27946|27947|132588|337850|337853|337856|337862|337866|337873|337875|337878|337884|337885|337889|337892|347431|347432|347446|347447|347450|347451|347457|347458|347461|347467|347468|347471|347472|347473|347480|347491|347493|347501|351371|351373|351374|351377|351378|351380|351382|351383|351385|351386|351389|351392|351393|351394|351397|351398|351401|351402|351410|351412|351413|352397|352398|352399|352400|352401|352402|352403|352404|352405|352406|352407|352408|352411|352412|352413|352414|352415|352416|352417|431021|493545|534406|717409|717410|792056|792057|792058|891097|891098|891099|891100|891101|891102|891103|891104|891105|891106|891107|891108|891109|891110|891111|891112|891113|891114|891115|891116|891117|891118|891119|891120|891121|891122|891123|891124|891125|891126|891127|891128|891129|891130|891131|891132|891133|891134|891819|961897|980971", "text": "Congenital glucose-galactose malabsorption" }, { - "baseId": "27948|27949|27950|27951|27952|27953|27954|27954|45777|45777|45778|45778|45779|45780|45780|76667|166024|167771|167772|167773|170965|170971|170972|170973|170977|170978|170985|170987|170989|170990|170992|170996|171000|171001|208601|227128|265087|265739|333688|333691|333694|333698|333701|333703|333705|333706|333707|333709|333710|333720|333722|333725|343686|343688|343690|343692|343697|343699|343701|343703|343704|349037|349038|349040|349042|349044|349046|349048|349049|349922|349923|349925|349926|349928|349930|349931|349933|349934|349935|349938|349939|349942|376590|376593|403265|403306|403753|403758|403759|410623|413523|413523|413524|415659|415661|422283|422287|430221|438113|468843|468845|468847|469862|469865|469867|469870|469871|470266|470268|470276|470277|470294|470937|470939|470942|470943|470945|470947|486226|495867|507425|512420|533058|533063|533124|533130|533132|533133|533140|533141|533142|533144|533149|533154|533160|533163|533165|533173|533556|533561|533563|570811|570827|570829|570835|572531|572533|572534|572536|573153|573157|573165|574982|574983|574984|574985|613141|614461|614462|648146|648147|648148|648149|648150|648151|648152|648153|648154|648155|648156|648157|648158|648159|648160|653054|653618|653621|677461|677461|684823|684825|684826|684827|684828|684829|684830|684831|685462|689072|689073|689074|689075|689076|689077|689079|689080|689081|689082|689083|689084|689085|689086|689087|690218|694434|694436|694437|694438|716473|716474|716476|716477|731283|741925|741926|757056|757057|760614|772719|786208|791934|791935|791936|791937|798754|798755|802026|821260|821261|822157|847739|847740|847741|847742|847743|847744|847745|847746|847747|847748|847749|847750|847751|847752|847753|851819|852336|882099|882100|882101|882102|882103|882104|882105|882106|882107|882899|882900|882901|882902|882903|917793|919869|919870|920409|928981|928982|928983|928984|928985|928986|928987|938707|938708|938709|938710|938711|938712|938713|938714|938715|938716|938717|950809|950810|950811|950812|950813|950814|960920|960921", + "upstreamId": "27948|27949|27950|27951|27952|27953|27954|27954|45777|45777|45778|45778|45779|45780|45780|76667|166024|167771|167772|167773|170965|170971|170972|170973|170977|170978|170985|170987|170989|170990|170992|170996|171000|171001|208601|227128|265087|265739|333688|333691|333694|333698|333701|333703|333705|333706|333707|333709|333710|333720|333722|333725|343686|343688|343690|343692|343697|343699|343701|343703|343704|349037|349038|349040|349042|349044|349046|349048|349049|349922|349923|349925|349926|349928|349930|349931|349933|349934|349935|349938|349939|349942|376590|376593|403265|403306|403753|403758|403759|410623|413523|413523|413524|415659|415661|422283|422287|430221|438113|468843|468845|468847|469862|469865|469867|469870|469871|470266|470268|470276|470277|470294|470937|470939|470942|470943|470945|470947|486226|495867|507425|512420|533058|533063|533124|533130|533132|533133|533140|533141|533142|533144|533149|533154|533160|533163|533165|533173|533556|533561|533563|570811|570827|570829|570835|572531|572533|572534|572536|573153|573157|573165|574982|574983|574984|574985|613141|614461|614462|648146|648147|648148|648149|648150|648151|648152|648153|648154|648155|648156|648157|648158|648159|648160|653054|653618|653621|677461|677461|684823|684825|684826|684827|684828|684829|684830|684831|685462|689072|689073|689074|689075|689076|689077|689079|689080|689081|689082|689083|689084|689085|689086|689087|690218|694434|694436|694437|694438|716473|716474|716476|716477|731283|741925|741926|757056|757057|760614|772719|786208|791934|791935|791936|791937|798754|798755|802026|821260|821261|822157|847739|847740|847741|847742|847743|847744|847745|847746|847747|847748|847749|847750|847751|847752|847753|851819|852336|882099|882100|882101|882102|882103|882104|882105|882106|882107|882899|882900|882901|882902|882903|917793|919869|919870|920409|928981|928982|928983|928984|928985|928986|928987|938707|938708|938709|938710|938711|938712|938713|938714|938715|938716|938717|950809|950810|950811|950812|950813|950814|960920|960921", "text": "Dystonia 12" }, { - "baseId": "27948|27954|27954|45777|45777|45778|45778|45779|45780|45780|143209|166024|167771|167772|167773|170966|170967|170968|170969|170970|170971|170972|170973|170974|170975|170976|170977|170978|170979|170980|170981|170982|170983|170984|170985|170986|170987|170988|170991|170993|170994|170995|170997|170998|170999|171000|171001|208600|265739|333688|333691|333694|333698|333701|333703|333705|333706|333707|333709|333710|333720|333722|333725|343686|343688|343690|343692|343697|343699|343701|343703|343704|349037|349038|349040|349042|349044|349046|349048|349049|349922|349923|349925|349926|349928|349930|349931|349933|349934|349935|349938|353910|360446|376590|403265|413523|413523|430223|438113|469867|470945|486226|614461|614462|648160|677461|684829|689074|802025|802026|802027|802029|882099|882100|882101|882102|882103|882104|882105|882106|882107|882899|882900|882901|882902|882903|917793|969246", + "upstreamId": "27948|27954|27954|45777|45777|45778|45778|45779|45780|45780|143209|166024|167771|167772|167773|170966|170967|170968|170969|170970|170971|170972|170973|170974|170975|170976|170977|170978|170979|170980|170981|170982|170983|170984|170985|170986|170987|170988|170991|170993|170994|170995|170997|170998|170999|171000|171001|208600|265739|333688|333691|333694|333698|333701|333703|333705|333706|333707|333709|333710|333720|333722|333725|343686|343688|343690|343692|343697|343699|343701|343703|343704|349037|349038|349040|349042|349044|349046|349048|349049|349922|349923|349925|349926|349928|349930|349931|349933|349934|349935|349938|353910|360446|376590|403265|413523|413523|430223|438113|469867|470945|486226|614461|614462|648160|677461|684829|689074|802025|802026|802027|802029|882099|882100|882101|882102|882103|882104|882105|882106|882107|882899|882900|882901|882902|882903|917793|969246", "text": "Alternating hemiplegia of childhood 2" }, { - "baseId": "27954|45777|45778|45780|166024|170985|213654|413523|424669|424670|614461|614462|677461|798753|964892", + "upstreamId": "27954|45777|45778|45780|166024|170985|213654|413523|424669|424670|614461|614462|677461|798753|964892", "text": "Cerebellar ataxia-areflexia-pes cavus-optic atrophy-sensorineural hearing loss syndrome" }, { - "baseId": "27956|27957|27958|27959|27961|27962|27963|27964|27966|27967|27968|27969|133926|133928|133929|133930|133932|133933|133934|140153|140155|140160|140161|191346|191876|192087|192627|194323|201067|201071|201072|201074|201078|201085|201089|201091|201097|201102|201103|223777|249473|249474|276790|276792|276798|276804|276805|276806|276809|276810|276811|276812|276819|276821|276823|276833|276842|276851|276852|276853|277075|277087|277088|277094|277095|277097|277099|277103|277104|277106|277119|277121|277122|277123|277133|277141|277143|277688|277689|277694|277695|277698|277703|277704|277708|277710|277783|277790|277796|277797|277798|277799|277800|277806|277807|277810|277813|277815|277817|277823|277825|364561|364566|364581|364583|364609|421183|425316|440368|447338|550200|556646|558184|576423|578796|613617|627003|685579|695011|789865|822890|862536|862537|862538|862539|862540|862541|862542|862543|862544|862545|862546|862547|862548|862549|862550|862551|862552|862553|862554|862555|862556|862557|862558|862559|865015|865016|865017|865018|918572|918573|967146|983845", + "upstreamId": "27956|27957|27958|27959|27961|27962|27963|27964|27966|27967|27968|27969|133926|133928|133929|133930|133932|133933|133934|140153|140155|140160|140161|191346|191876|192087|192627|194323|201067|201071|201072|201074|201078|201085|201089|201091|201097|201102|201103|223777|249473|249474|276790|276792|276798|276804|276805|276806|276809|276810|276811|276812|276819|276821|276823|276833|276842|276851|276852|276853|277075|277087|277088|277094|277095|277097|277099|277103|277104|277106|277119|277121|277122|277123|277133|277141|277143|277688|277689|277694|277695|277698|277703|277704|277708|277710|277783|277790|277796|277797|277798|277799|277800|277806|277807|277810|277813|277815|277817|277823|277825|364561|364566|364581|364583|364609|421183|425316|440368|447338|550200|556646|558184|576423|578796|613617|627003|685579|695011|789865|822890|862536|862537|862538|862539|862540|862541|862542|862543|862544|862545|862546|862547|862548|862549|862550|862551|862552|862553|862554|862555|862556|862557|862558|862559|865015|865016|865017|865018|918572|918573|967146|983845", "text": "Familial hemiplegic migraine type 2" }, { - "baseId": "27960|27967|27968|133926|133928|133929|133930|133932|133933|133934|140153|140155|140160|140161|191346|191876|192087|192627|194323|201067|201071|201072|201078|201085|201089|201091|201102|201103|249473|249474|276790|276792|276798|276804|276805|276806|276809|276810|276811|276812|276819|276821|276823|276833|276842|276851|276852|276853|277075|277087|277088|277094|277095|277097|277099|277103|277104|277106|277119|277121|277122|277123|277133|277141|277143|277688|277689|277694|277695|277698|277703|277704|277708|277710|277783|277790|277796|277797|277798|277799|277800|277806|277807|277810|277813|277815|277817|277823|277825|364561|364566|364581|364583|364609|421183|425316|440368|447338|556646|558184|578796|627003|685579|695011|802026|822890|862536|862537|862538|862539|862540|862541|862542|862543|862544|862545|862546|862547|862548|862549|862550|862551|862552|862553|862554|862555|862556|862557|862558|862559|865015|865016|865017|865018|970663", + "upstreamId": "27960|27967|27968|133926|133928|133929|133930|133932|133933|133934|140153|140155|140160|140161|191346|191876|192087|192627|194323|201067|201071|201072|201078|201085|201089|201091|201102|201103|249473|249474|276790|276792|276798|276804|276805|276806|276809|276810|276811|276812|276819|276821|276823|276833|276842|276851|276852|276853|277075|277087|277088|277094|277095|277097|277099|277103|277104|277106|277119|277121|277122|277123|277133|277141|277143|277688|277689|277694|277695|277698|277703|277704|277708|277710|277783|277790|277796|277797|277798|277799|277800|277806|277807|277810|277813|277815|277817|277823|277825|364561|364566|364581|364583|364609|421183|425316|440368|447338|556646|558184|578796|627003|685579|695011|802026|822890|862536|862537|862538|862539|862540|862541|862542|862543|862544|862545|862546|862547|862548|862549|862550|862551|862552|862553|862554|862555|862556|862557|862558|862559|865015|865016|865017|865018|970663", "text": "Alternating hemiplegia of childhood 1" }, { - "baseId": "27960|27964|27967|27968|27969|79876|99532|133926|133927|133928|133929|133930|133932|133933|133934|140150|140151|140153|140154|177497|191346|192627|192819|194323|195906|201065|201067|201070|201071|201072|201078|201079|201083|201085|201086|201088|201090|201091|201092|201095|201096|201102|201103|238154|238155|259633|276791|276848|276849|276850|277130|277689|277705|277709|277790|277798|277816|282516|282540|282542|284808|285241|285247|285248|359229|364484|364492|364494|364514|364566|364570|364581|364583|364589|364609|364612|364618|364619|364625|364630|364631|364633|364635|364659|364665|364676|364680|390831|390854|390857|390860|404963|421183|425316|437824|440365|440367|442647|446919|447218|447229|447232|447311|447316|447322|447338|447396|447401|447404|447406|447407|498077|498117|498240|511186|515190|515195|515198|515203|515204|515210|515215|515218|515219|515221|515223|515224|515309|515317|556646|556648|556650|556652|556654|556656|556713|558178|558180|558182|558184|558186|578762|578769|578770|578774|578789|578795|578796|578798|586559|626990|626991|626992|626993|626994|626995|626996|626997|626998|626999|627000|627001|627002|627003|627004|650589|685577|685579|685580|685581|689632|689633|761284|761288|761289|780358|792831|822888|822889|822890|822891|822892|822893|822894|822895|822896|822897|822898|822899|822900|822901|822902|822903|822904|822905|850738|851123|862536|921696|921697|921698|921699|921700|921701|921702|921703|921704|921705|921706|930101|930102|930103|930104|930105|930106|930107|930108|939776|940603|941523|941524|941525|941526|941527|941528|941529|941530|941531|952116|952117|952118|960407|960408", + "upstreamId": "27960|27964|27967|27968|27969|79876|99532|133926|133927|133928|133929|133930|133932|133933|133934|140150|140151|140153|140154|177497|191346|192627|192819|194323|195906|201065|201067|201070|201071|201072|201078|201079|201083|201085|201086|201088|201090|201091|201092|201095|201096|201102|201103|238154|238155|259633|276791|276848|276849|276850|277130|277689|277705|277709|277790|277798|277816|282516|282540|282542|284808|285241|285247|285248|359229|364484|364492|364494|364514|364566|364570|364581|364583|364589|364609|364612|364618|364619|364625|364630|364631|364633|364635|364659|364665|364676|364680|390831|390854|390857|390860|404963|421183|425316|437824|440365|440367|442647|446919|447218|447229|447232|447311|447316|447322|447338|447396|447401|447404|447406|447407|498077|498117|498240|511186|515190|515195|515198|515203|515204|515210|515215|515218|515219|515221|515223|515224|515309|515317|556646|556648|556650|556652|556654|556656|556713|558178|558180|558182|558184|558186|578762|578769|578770|578774|578789|578795|578796|578798|586559|626990|626991|626992|626993|626994|626995|626996|626997|626998|626999|627000|627001|627002|627003|627004|650589|685577|685579|685580|685581|689632|689633|761284|761288|761289|780358|792831|822888|822889|822890|822891|822892|822893|822894|822895|822896|822897|822898|822899|822900|822901|822902|822903|822904|822905|850738|851123|862536|921696|921697|921698|921699|921700|921701|921702|921703|921704|921705|921706|930101|930102|930103|930104|930105|930106|930107|930108|939776|940603|941523|941524|941525|941526|941527|941528|941529|941530|941531|952116|952117|952118|960407|960408", "text": "Familial hemiplegic migraine" }, { - "baseId": "27965", + "upstreamId": "27965", "text": "Migraine, familial basilar" }, { - "baseId": "27970|27971|236725|246984|297087|297089|297090|297091|297095|297100|297102|297103|297104|297110|297112|297116|299000|299015|299016|299019|299020|299021|299028|299029|299030|299039|299040|303238|303241|303247|303249|303255|303259|303260|303427|303429|303432|303435|303436|303438|427112|432294|779099|893979|893980|893981|893982|893983|893984|893985|893986|893987|893988|893989|893990|893991|893992|893993|893994|893995|893996|896079", + "upstreamId": "27970|27971|236725|246984|297087|297089|297090|297091|297095|297100|297102|297103|297104|297110|297112|297116|299000|299015|299016|299019|299020|299021|299028|299029|299030|299039|299040|303238|303241|303247|303249|303255|303259|303260|303427|303429|303432|303435|303436|303438|427112|432294|779099|893979|893980|893981|893982|893983|893984|893985|893986|893987|893988|893989|893990|893991|893992|893993|893994|893995|893996|896079", "text": "Nephrolithiasis/osteoporosis, hypophosphatemic, 1" }, { - "baseId": "27972|971577", + "upstreamId": "27972|971577", "text": "Fanconi renotubular syndrome 2" }, { - "baseId": "27973", + "upstreamId": "27973", "text": "Serotonin transporter activity, increased/decreased" }, { - "baseId": "27974|27976", + "upstreamId": "27974|27976", "text": "Obsessive-compulsive disorder, susceptibility to" }, { - "baseId": "27974|327923|327925|327926|327928|327929|327930|327937|327939|327940|327944|327950|327953|337750|337755|337756|337763|337764|337768|337771|337772|337774|337779|337783|337788|337789|337791|337792|337794|337797|343965|343973|343977|343982|343984|343985|343986|343987|343990|343996|343997|343999|344002|344003|344004|344005|345421|345427|345430|345434|345435|715351|727091|877117|877118|877119|877120|877121|877122|877123|877124|877125|877126|877127|877128|877129|877130|877131|877132|877133|877134|877135|877136|877137|877138|877139|877140|877141|877142|877143|877144|877145|877146|877147|877148|877149|877150|877151|877152|877153|877154|877155|877156|877157|877158|877159|877160|877161|877162|877163|877164|877165|877166|877167|877168|877169|877170|877172|877173|877174|877175|880493|880494", + "upstreamId": "27974|327923|327925|327926|327928|327929|327930|327937|327939|327940|327944|327950|327953|337750|337755|337756|337763|337764|337768|337771|337772|337774|337779|337783|337788|337789|337791|337792|337794|337797|343965|343973|343977|343982|343984|343985|343986|343987|343990|343996|343997|343999|344002|344003|344004|344005|345421|345427|345430|345434|345435|715351|727091|877117|877118|877119|877120|877121|877122|877123|877124|877125|877126|877127|877128|877129|877130|877131|877132|877133|877134|877135|877136|877137|877138|877139|877140|877141|877142|877143|877144|877145|877146|877147|877148|877149|877150|877151|877152|877153|877154|877155|877156|877157|877158|877159|877160|877161|877162|877163|877164|877165|877166|877167|877168|877169|877170|877172|877173|877174|877175|880493|880494", "text": "Behavior disorder" }, { - "baseId": "27978|27979|27980|27981|27982|27983|40573|48468|225853|237232|238970|287177|287197|287201|287203|287916|290475|290476|290498|290502|290504|290786|393235|451410|513525|581750|622872|630476|653853|798511|826972|885437|885438|885439|885440|885441|885442|885443|885444|885445|885446|885447|885448|887396|887397|887398|918780|918781", + "upstreamId": "27978|27979|27980|27981|27982|27983|40573|48468|225853|237232|238970|287177|287197|287201|287203|287916|290475|290476|290498|290502|290504|290786|393235|451410|513525|581750|622872|630476|653853|798511|826972|885437|885438|885439|885440|885441|885442|885443|885444|885445|885446|885447|885448|887396|887397|887398|918780|918781", "text": "Dopa-responsive dystonia due to sepiapterin reductase deficiency" }, { - "baseId": "27984", + "upstreamId": "27984", "text": "SECRETOR/NONSECRETOR POLYMORPHISM" }, { - "baseId": "27984|227407", + "upstreamId": "27984|227407", "text": "Vitamin b12 plasma level quantitative trait locus 1" }, { - "baseId": "27985", + "upstreamId": "27985", "text": "SECRETOR/NONSECRETOR POLYMORPHISM, JAPANESE TYPE" }, { - "baseId": "27987|27988|27989|34204|34205|34206|34207|34208|34209|97320|99994|99995|99997|167999|168000|168001|168002|168003|168004|168005|168007|168008|168009|168010|168011|168012|168013|168016|168017|168018|168019|168020|191372|191791|206824|214880|226883|237128|266987|274275|280753|280754|280755|280756|280766|280767|280770|280774|281235|281250|281260|281261|281262|281263|281269|282518|282519|282520|282533|282534|282538|282539|282790|282794|282805|282816|282820|282826|282827|282835|427840|442864|493551|536594|620004|746538|758927|789988|864541|864542|864543|864544|864545|864546|864547|864548|864549|864550|864551|864552|864553|864554|864555|864556|864557|864558|864559|864560|864561|864562|864563|864564|864565|865190|965356|970693", + "upstreamId": "27987|27988|27989|34204|34205|34206|34207|34208|34209|97320|99994|99995|99997|167999|168000|168001|168002|168003|168004|168005|168007|168008|168009|168010|168011|168012|168013|168016|168017|168018|168019|168020|191372|191791|206824|214880|226883|237128|266987|274275|280753|280754|280755|280756|280766|280767|280770|280774|281235|281250|281260|281261|281262|281263|281269|282518|282519|282520|282533|282534|282538|282539|282790|282794|282805|282816|282820|282826|282827|282835|427840|442864|493551|536594|620004|746538|758927|789988|864541|864542|864543|864544|864545|864546|864547|864548|864549|864550|864551|864552|864553|864554|864555|864556|864557|864558|864559|864560|864561|864562|864563|864564|864565|865190|965356|970693", "text": "Primary autosomal recessive microcephaly 7" }, { - "baseId": "27990|50332|50334|50335|108164|152802|177079|178038|178040|190978|191768|191769|285376|285381|285382|285383|285384|285386|285387|286007|286017|286022|288345|288347|288353|288768|288769|288770|288772|550168|626221|697415|708112|708113|719716|719718|719719|790212|799283|799284|825972|825976|884189|884190|884191|884192|884193|884194|884195|884196|884197|884198|884199|884200|887319|887320|977377", + "upstreamId": "27990|50332|50334|50335|108164|152802|177079|178038|178040|190978|191768|191769|285376|285381|285382|285383|285384|285386|285387|286007|286017|286022|288345|288347|288353|288768|288769|288770|288772|550168|626221|697415|708112|708113|719716|719718|719719|790212|799283|799284|825972|825976|884189|884190|884191|884192|884193|884194|884195|884196|884197|884198|884199|884200|887319|887320|977377", "text": "Oguchi's disease" }, { - "baseId": "27990|799284", + "upstreamId": "27990|799284", "text": "Retinitis pigmentosa 47" }, { - "baseId": "27990", + "upstreamId": "27990", "text": "SAG-Related Disorders" }, { - "baseId": "27991|27992|215583|215584|237265|335294|335299|335304|335311|345120|345127|345128|345146|345147|349888|349889|349890|349893|349894|349897|349898|349900|349901|350921|350923|470348|470350|470360|533553|573491|620656|620919|648633|716912|716913|728604|731338|742357|757465|821317|848306|848307|848308|886024|886025|886026|886027|886028|886029|886030|886031|886032|887455|938942|938943|951042", + "upstreamId": "27991|27992|215583|215584|237265|335294|335299|335304|335311|345120|345127|345128|345146|345147|349888|349889|349890|349893|349894|349897|349898|349900|349901|350921|350923|470348|470350|470360|533553|573491|620656|620919|648633|716912|716913|728604|731338|742357|757465|821317|848306|848307|848308|886024|886025|886026|886027|886028|886029|886030|886031|886032|887455|938942|938943|951042", "text": "Hypermethioninemia with s-adenosylhomocysteine hydrolase deficiency" }, { - "baseId": "27993|27994|27995|27996|27999|28000|28001|28002|31857|38834|45390|45393|45394|45396|45397|45398|45399|45400|45404|45406|45407|45408|45409|45410|45411|48356|48357|52867|52868|52870|52871|52880|52884|52885|52886|52887|52888|52892|52894|52897|52898|52899|52900|52901|52902|52903|52909|52911|52914|52915|52919|52920|52921|52922|52924|52927|52929|52931|52932|52933|52934|52935|52937|52938|52939|52941|52947|52951|52956|52959|52960|52961|52963|52964|52969|52974|52976|52979|52982|52985|52986|52987|52988|52989|52990|52996|52997|52999|53002|53003|53004|53005|53006|57199|78491|78870|99382|99385|142639|142640|142648|142655|142657|165585|165587|171059|171060|172338|172403|172406|172409|172410|172417|172420|172421|172425|172428|172435|172477|172540|172543|172545|172549|172559|172564|172565|172568|172575|174796|176137|178445|178452|178456|178458|178461|178466|178521|178545|178580|178641|188417|189190|189203|196507|196513|196533|196540|196542|196560|196566|196574|196577|196581|196587|196595|196596|196602|196604|196635|196638|196661|196664|196682|196711|196713|196723|196736|196751|199780|199780|215196|224177|224199|224202|224203|224324|224552|224558|228391|228392|228398|228406|238238|248624|248625|257961|257968|257975|257976|257978|257979|263854|263855|268132|276522|279942|279943|279949|279956|279964|279982|279984|279985|279988|279989|279990|280003|280005|280009|280010|280015|280025|280027|280039|280055|280279|280281|280282|280284|280286|280289|280291|280302|280316|280322|280328|280330|280341|280348|280388|280389|280401|281590|281591|281604|281616|281617|281622|281624|281626|281627|281630|281640|281641|281643|281647|281679|281681|281690|281693|281694|281711|281713|281721|281749|281757|281758|281766|281771|281774|281788|281790|281799|281802|281813|281815|281816|281819|281833|281835|281839|281840|281848|281857|281876|281881|364881|365058|365075|365085|365104|391029|391045|391053|391166|404744|405117|424559|424560|439870|442781|447620|447655|447671|447793|447895|447993|481117|490599|496161|498515|509172|509207|509218|515591|515619|515708|515716|515795|538332|551757|551758|551758|551759|556831|556837|556910|557249|615193|616048|621073|625786|625787|627580|680039|680040|680041|683315|690545|690550|780621|789950|789951|823654|857639|857640|857641|857642|857643|864086|864087|864088|864089|864090|864091|864092|864093|864094|864095|864096|864097|864098|864099|864100|864101|864102|864103|864104|864105|864106|864107|864108|864109|864110|864111|864112|864113|864114|864115|864116|864117|864118|864119|864120|864121|864122|864123|864124|864125|864126|864127|865154|865155|865156|865157|865158|906666|906850|918618|918619|918620|918621|918622|920144|967163|967164|967165|967166|967167|967258|967259", + "upstreamId": "27993|27994|27995|27996|27999|28000|28001|28002|31857|38834|45390|45393|45394|45396|45397|45398|45399|45400|45404|45406|45407|45408|45409|45410|45411|48356|48357|52867|52868|52870|52871|52880|52884|52885|52886|52887|52888|52892|52894|52897|52898|52899|52900|52901|52902|52903|52909|52911|52914|52915|52919|52920|52921|52922|52924|52927|52929|52931|52932|52933|52934|52935|52937|52938|52939|52941|52947|52951|52956|52959|52960|52961|52963|52964|52969|52974|52976|52979|52982|52985|52986|52987|52988|52989|52990|52996|52997|52999|53002|53003|53004|53005|53006|57199|78491|78870|99382|99385|142639|142640|142648|142655|142657|165585|165587|171059|171060|172338|172403|172406|172409|172410|172417|172420|172421|172425|172428|172435|172477|172540|172543|172545|172549|172559|172564|172565|172568|172575|174796|176137|178445|178452|178456|178458|178461|178466|178521|178545|178580|178641|188417|189190|189203|196507|196513|196533|196540|196542|196560|196566|196574|196577|196581|196587|196595|196596|196602|196604|196635|196638|196661|196664|196682|196711|196713|196723|196736|196751|199780|199780|215196|224177|224199|224202|224203|224324|224552|224558|228391|228392|228398|228406|238238|248624|248625|257961|257968|257975|257976|257978|257979|263854|263855|268132|276522|279942|279943|279949|279956|279964|279982|279984|279985|279988|279989|279990|280003|280005|280009|280010|280015|280025|280027|280039|280055|280279|280281|280282|280284|280286|280289|280291|280302|280316|280322|280328|280330|280341|280348|280388|280389|280401|281590|281591|281604|281616|281617|281622|281624|281626|281627|281630|281640|281641|281643|281647|281679|281681|281690|281693|281694|281711|281713|281721|281749|281757|281758|281766|281771|281774|281788|281790|281799|281802|281813|281815|281816|281819|281833|281835|281839|281840|281848|281857|281876|281881|364881|365058|365075|365085|365104|391029|391045|391053|391166|404744|405117|424559|424560|439870|442781|447620|447655|447671|447793|447895|447993|481117|490599|496161|498515|509172|509207|509218|515591|515619|515708|515716|515795|538332|551757|551758|551758|551759|556831|556837|556910|557249|615193|616048|621073|625786|625787|627580|680039|680040|680041|683315|690545|690550|780621|789950|789951|823654|857639|857640|857641|857642|857643|864086|864087|864088|864089|864090|864091|864092|864093|864094|864095|864096|864097|864098|864099|864100|864101|864102|864103|864104|864105|864106|864107|864108|864109|864110|864111|864112|864113|864114|864115|864116|864117|864118|864119|864120|864121|864122|864123|864124|864125|864126|864127|865154|865155|865156|865157|865158|906666|906850|918618|918619|918620|918621|918622|920144|967163|967164|967165|967166|967167|967258|967259", "text": "Catecholaminergic polymorphic ventricular tachycardia type 1" }, { - "baseId": "27993|27996|27998|28001|44436|45390|45391|45394|45397|45398|45399|45400|45401|45406|45407|45408|45409|45410|48357|49465|52865|52866|52867|52870|52874|52877|52879|52881|52884|52886|52887|52888|52889|52890|52891|52892|52894|52895|52896|52898|52899|52902|52903|52907|52910|52911|52914|52915|52916|52919|52920|52922|52924|52925|52927|52929|52931|52933|52934|52935|52936|52937|52938|52939|52941|52943|52944|52945|52946|52947|52951|52952|52954|52955|52956|52958|52961|52963|52964|52966|52967|52969|52970|52971|52972|52973|52974|52976|52979|52982|52984|52985|52987|52989|52990|52994|52995|52997|52998|53001|53002|53006|53007|53008|53009|53010|53320|53321|53323|53324|53325|53326|53327|53329|53330|53335|53337|76925|76926|99382|99383|99385|140360|142637|142638|142639|142640|142642|142645|142646|142648|142649|142652|142653|142654|142655|142656|142657|142658|165583|165584|171057|171058|171059|171060|171061|172333|172338|172339|172340|172403|172407|172408|172409|172410|172412|172415|172416|172417|172420|172425|172429|172433|172434|172435|172436|172437|172473|172474|172475|172476|172479|172539|172540|172541|172543|172545|172546|172547|172549|172554|172555|172556|172559|172560|172561|172562|172564|172565|172567|172568|172571|172572|172573|178037|178444|178445|178446|178447|178448|178453|178456|178458|178459|179359|188305|188306|188307|188313|188434|188804|188805|189181|189184|189185|189187|189188|189190|189195|189200|189201|189203|189204|189205|193271|194699|195122|196504|196510|196513|196521|196523|196525|196527|196529|196533|196534|196538|196540|196541|196542|196544|196546|196552|196554|196555|196560|196563|196566|196567|196569|196570|196571|196572|196574|196575|196580|196582|196586|196587|196588|196595|196598|196600|196601|196602|196603|196604|196607|196609|196610|196612|196616|196619|196620|196622|196632|196633|196638|196640|196642|196643|196645|196646|196647|196648|196650|196652|196658|196659|196660|196661|196666|196668|196669|196670|196673|196674|196675|196681|196682|196683|196685|196686|196687|196689|196704|196710|196711|196713|196714|196718|196720|196721|196722|196723|196724|196726|196729|196743|196749|196751|196753|204080|204081|204082|221091|224203|224208|224210|227290|228252|228259|228263|228265|228366|228369|228373|228375|228382|228383|228385|228386|228388|228391|228392|228397|228400|228401|228402|228406|229388|229389|229390|229398|229400|229403|229406|229407|229408|229412|229413|229414|229416|229417|229418|236746|236747|238128|238129|238130|238131|238132|238232|238233|238234|238236|238237|238238|238240|238241|238243|238244|238245|238251|238252|239880|239881|239882|239884|239885|239886|246879|246880|246881|257961|257962|257963|257964|257965|257968|257969|257975|257976|257977|258431|258432|258439|266956|268132|268758|268963|271579|274257|276037|276055|276056|276081|276248|276256|276262|276263|276264|276266|276271|276272|276284|276289|276290|276299|276408|276435|276450|276479|276480|276520|276522|276527|276533|276544|276555|276560|276563|276578|276581|276593|276597|279942|279955|279963|279964|279976|280009|280010|280014|280020|280023|280026|280032|280280|280281|280282|280289|280316|280324|280326|280327|280328|280330|280333|280340|280346|280347|280355|280373|280381|280387|280394|280402|281591|281593|281604|281622|281627|281630|281641|281646|281676|281680|281697|281699|281700|281747|281773|281774|281790|281816|281833|281849|281863|281874|298887|298894|298899|298900|301335|301358|301366|305880|305895|305896|305897|359249|359294|359707|359711|362734|364374|364824|364829|364830|364840|364842|364871|364902|364985|365018|365031|365037|365040|365047|365056|365058|365065|365068|365073|365077|365088|365096|365104|365109|365119|365122|368309|390728|390744|390771|390772|390779|390795|391002|391003|391015|391018|391019|391021|391023|391024|391027|391029|391031|391032|391035|391037|391039|391040|391041|391042|391043|391045|391047|391050|391051|391052|391053|391054|391056|391057|391060|391065|391066|391068|391071|391075|391080|391081|391088|391090|391091|391092|391093|391094|391097|391107|391109|391115|391122|391123|391126|391127|391132|391140|391143|391150|391153|391154|391157|391159|391161|391163|391172|391173|391175|391177|391180|391183|391190|391191|391193|391204|391205|391225|391228|395053|395061|395196|395199|395202|395206|395338|395369|395371|395374|395375|395376|395379|395382|395392|395402|395408|395409|395664|395667|395669|395679|395680|405106|405107|405118|406797|415020|419263|433898|442589|442763|442767|442772|442773|442775|442776|443861|443864|443866|446915|446918|446929|446931|446996|447002|447006|447132|447185|447603|447606|447609|447610|447614|447616|447620|447626|447628|447637|447642|447645|447650|447655|447658|447659|447660|447662|447664|447665|447668|447671|447777|447780|447782|447786|447791|447793|447799|447803|447804|447805|447812|447815|447825|447831|447832|447835|447837|447841|447842|447848|447854|447856|447859|447861|447862|447865|447868|447871|447872|447875|447879|447883|447884|447885|447886|447888|447889|447891|447892|447894|447895|447896|447898|447901|447905|447907|447909|447920|447923|447925|447930|447936|447939|447940|447941|447943|447944|447945|447946|447947|447948|447950|447951|447953|447956|447959|447961|447965|447968|447971|447976|447977|447978|447979|447980|447981|447982|447984|447985|447986|447989|447991|447992|447993|447994|447996|447998|448000|448001|448003|448004|455160|455166|455171|455174|455175|455176|455312|455314|455333|455829|455838|455840|455844|455851|456053|456055|456058|456065|480673|486852|486857|486862|486865|486899|490599|496650|496652|496849|498013|498283|498344|498346|498354|498365|498366|498372|498509|498526|498539|501122|501397|509076|509077|509172|509173|509178|509180|509185|509187|509195|509199|509201|509205|509207|509210|509212|509784|509786|509787|509791|509792|511042|511051|511054|512885|514343|514995|515051|515058|515588|515589|515591|515596|515598|515604|515606|515611|515619|515621|515624|515625|515627|515638|515639|515641|515644|515656|515658|515661|515663|515664|515667|515669|515670|515671|515672|515673|515674|515676|515677|515678|515679|515682|515684|515687|515689|515692|515693|515694|515696|515698|515699|515700|515701|515702|515704|515706|515707|515708|515710|515711|515712|515713|515714|515715|515716|515719|515720|515724|515725|515727|515728|515733|515734|515735|515736|515737|515741|515742|515746|515747|515750|515751|515753|515757|515758|515759|515762|515767|515768|515774|515776|515778|515779|515781|515783|515784|515787|515789|515795|515799|515803|515805|515816|515817|521275|521347|521348|521350|521362|521633|521639|521646|521653|521713|521715|521717|521723|521729|521731|521735|521870|521874|521978|521982|521983|521985|551689|556525|556562|556595|556831|556833|556835|556837|556839|556841|556843|556848|556852|556854|556864|556867|556876|556878|556901|556902|556904|556906|556908|556910|556912|556914|556989|556990|556992|556993|557172|557174|557176|557178|557180|557182|557184|557186|557188|557190|557192|557194|557196|557198|557200|557202|557204|557206|557208|557213|557215|557217|557219|557221|557223|557225|557227|557229|557231|557233|557235|557237|557239|557241|557243|557245|557247|557249|558391|558393|558395|558397|558399|558401|558403|558405|558407|558409|558411|558413|558415|558417|558419|558421|558423|558425|558427|558429|560427|560429|560431|560433|560554|560556|560560|560562|560564|560566|560568|563353|563354|563356|563360|563365|565365|565369|565374|610649|614715|615193|616032|616033|616036|616037|616043|616044|616061|616070|621053|621071|621073|621074|621077|626674|626675|626676|626677|626678|626679|627542|627543|627544|627545|627546|627547|627548|627549|627550|627551|627552|627553|627554|627555|627556|627557|627558|627559|627560|627561|627562|627563|627564|627565|627566|627567|627568|627569|627570|627571|627572|627573|627574|627575|627576|627577|627578|627579|627580|627581|627582|627583|627584|627585|627586|627587|627588|627589|627590|627591|627592|627593|627594|627595|627596|627597|627598|627599|627600|627601|627602|627603|627604|627605|627606|627607|627608|627609|627610|627611|627612|627613|627614|627615|634524|634525|634526|634527|634528|634529|634530|634531|634532|634533|634534|634535|634536|634537|634538|634539|650552|650556|650577|650579|650611|650627|650629|650635|650637|650640|650643|650722|650725|651461|651477|651514|651516|655709|683316|685190|685549|685645|685647|685648|685650|685651|685654|685655|685659|685660|685663|685670|685671|689648|689649|689650|689810|689811|690539|690541|690542|690543|690544|690547|690548|690551|690553|690554|695037|696606|718825|729985|732295|745594|746319|746325|746328|746329|746330|746333|746335|749796|758899|758960|758965|761746|761750|761757|761761|761772|761775|761778|774464|774467|774480|774502|780615|780616|780618|780623|782427|787028|787038|787041|787312|789950|794626|799016|818840|818937|818938|818939|818940|818941|818942|818943|818944|818945|819650|819651|819652|822585|822586|822587|822588|822589|823643|823644|823645|823646|823647|823648|823649|823650|823651|823652|823653|823654|823655|823656|823657|823658|823659|823660|823661|823662|823663|823664|823665|823666|823667|823668|823669|823670|823671|823672|823673|823674|823675|823676|823677|823678|823679|823680|823681|823682|823683|823684|823685|823686|823687|823688|823689|823690|823691|823692|823693|823694|823695|823696|823697|823698|823699|823700|823701|823702|823703|823704|823705|823706|823707|823708|823709|823710|823711|823712|823713|823714|823715|823716|823717|823718|823719|823720|823721|823722|823723|823724|823725|823726|823727|823728|823729|823730|823731|823732|823733|823734|823735|823736|823737|823738|823739|823740|823741|823742|823743|823744|823745|823746|823747|831474|831475|831476|831477|831478|831479|831480|831481|831482|831483|831484|831485|831486|831487|831488|831489|831490|831491|850759|850761|850763|850764|850765|850766|850967|851054|851056|852236|857639|858246|858443|864103|864104|903734|906526|906538|906551|906553|906557|906558|906559|906561|906613|906631|906693|906710|906714|906755|906758|906771|906863|906932|906960|906973|906989|906994|906997|907015|907026|907042|907123|907158|907174|915122|915141|915222|915242|915366|916822|921600|921902|921903|921904|921905|921906|921907|921908|921909|921910|921911|921912|921913|921914|921915|921916|921917|921918|921919|921920|921921|921922|921923|921924|921925|921926|921927|921928|921929|921930|921931|921932|921933|921934|921935|921936|924235|924236|924237|924238|924239|929986|929987|929988|929989|929990|930387|930388|930389|930390|930391|930392|930393|930394|930395|930396|930397|930398|930399|930400|930401|930402|930403|930404|930405|930406|930407|930408|930409|930410|930411|930412|930413|930414|930415|933151|933152|933153|933154|933155|939799|939800|939801|939802|940028|940029|940625|940626|941397|941821|941822|941823|941824|941825|941826|941827|941828|941829|941830|941831|941832|941833|941834|941835|941836|941837|941838|941839|941840|941841|941842|941843|941844|941845|941846|941847|941848|941849|941850|941851|941852|941853|941854|941855|941856|941857|941858|944866|944867|944868|944869|944870|952028|952029|952332|952333|952334|952335|952336|952337|952338|952339|952340|952341|952342|952343|952344|952345|952346|952347|952348|952349|952350|954333|959519|959549|959550|959551|959790|959791|960576|960577|977408", + "upstreamId": "27993|27996|27998|28001|44436|45390|45391|45394|45397|45398|45399|45400|45401|45406|45407|45408|45409|45410|48357|49465|52865|52866|52867|52870|52874|52877|52879|52881|52884|52886|52887|52888|52889|52890|52891|52892|52894|52895|52896|52898|52899|52902|52903|52907|52910|52911|52914|52915|52916|52919|52920|52922|52924|52925|52927|52929|52931|52933|52934|52935|52936|52937|52938|52939|52941|52943|52944|52945|52946|52947|52951|52952|52954|52955|52956|52958|52961|52963|52964|52966|52967|52969|52970|52971|52972|52973|52974|52976|52979|52982|52984|52985|52987|52989|52990|52994|52995|52997|52998|53001|53002|53006|53007|53008|53009|53010|53320|53321|53323|53324|53325|53326|53327|53329|53330|53335|53337|76925|76926|99382|99383|99385|140360|142637|142638|142639|142640|142642|142645|142646|142648|142649|142652|142653|142654|142655|142656|142657|142658|165583|165584|171057|171058|171059|171060|171061|172333|172338|172339|172340|172403|172407|172408|172409|172410|172412|172415|172416|172417|172420|172425|172429|172433|172434|172435|172436|172437|172473|172474|172475|172476|172479|172539|172540|172541|172543|172545|172546|172547|172549|172554|172555|172556|172559|172560|172561|172562|172564|172565|172567|172568|172571|172572|172573|178037|178444|178445|178446|178447|178448|178453|178456|178458|178459|179359|188305|188306|188307|188313|188434|188804|188805|189181|189184|189185|189187|189188|189190|189195|189200|189201|189203|189204|189205|193271|194699|195122|196504|196510|196513|196521|196523|196525|196527|196529|196533|196534|196538|196540|196541|196542|196544|196546|196552|196554|196555|196560|196563|196566|196567|196569|196570|196571|196572|196574|196575|196580|196582|196586|196587|196588|196595|196598|196600|196601|196602|196603|196604|196607|196609|196610|196612|196616|196619|196620|196622|196632|196633|196638|196640|196642|196643|196645|196646|196647|196648|196650|196652|196658|196659|196660|196661|196666|196668|196669|196670|196673|196674|196675|196681|196682|196683|196685|196686|196687|196689|196704|196710|196711|196713|196714|196718|196720|196721|196722|196723|196724|196726|196729|196743|196749|196751|196753|204080|204081|204082|221091|224203|224208|224210|227290|228252|228259|228263|228265|228366|228369|228373|228375|228382|228383|228385|228386|228388|228391|228392|228397|228400|228401|228402|228406|229388|229389|229390|229398|229400|229403|229406|229407|229408|229412|229413|229414|229416|229417|229418|236746|236747|238128|238129|238130|238131|238132|238232|238233|238234|238236|238237|238238|238240|238241|238243|238244|238245|238251|238252|239880|239881|239882|239884|239885|239886|246879|246880|246881|257961|257962|257963|257964|257965|257968|257969|257975|257976|257977|258431|258432|258439|266956|268132|268758|268963|271579|274257|276037|276055|276056|276081|276248|276256|276262|276263|276264|276266|276271|276272|276284|276289|276290|276299|276408|276435|276450|276479|276480|276520|276522|276527|276533|276544|276555|276560|276563|276578|276581|276593|276597|279942|279955|279963|279964|279976|280009|280010|280014|280020|280023|280026|280032|280280|280281|280282|280289|280316|280324|280326|280327|280328|280330|280333|280340|280346|280347|280355|280373|280381|280387|280394|280402|281591|281593|281604|281622|281627|281630|281641|281646|281676|281680|281697|281699|281700|281747|281773|281774|281790|281816|281833|281849|281863|281874|298887|298894|298899|298900|301335|301358|301366|305880|305895|305896|305897|359249|359294|359707|359711|362734|364374|364824|364829|364830|364840|364842|364871|364902|364985|365018|365031|365037|365040|365047|365056|365058|365065|365068|365073|365077|365088|365096|365104|365109|365119|365122|368309|390728|390744|390771|390772|390779|390795|391002|391003|391015|391018|391019|391021|391023|391024|391027|391029|391031|391032|391035|391037|391039|391040|391041|391042|391043|391045|391047|391050|391051|391052|391053|391054|391056|391057|391060|391065|391066|391068|391071|391075|391080|391081|391088|391090|391091|391092|391093|391094|391097|391107|391109|391115|391122|391123|391126|391127|391132|391140|391143|391150|391153|391154|391157|391159|391161|391163|391172|391173|391175|391177|391180|391183|391190|391191|391193|391204|391205|391225|391228|395053|395061|395196|395199|395202|395206|395338|395369|395371|395374|395375|395376|395379|395382|395392|395402|395408|395409|395664|395667|395669|395679|395680|405106|405107|405118|406797|415020|419263|433898|442589|442763|442767|442772|442773|442775|442776|443861|443864|443866|446915|446918|446929|446931|446996|447002|447006|447132|447185|447603|447606|447609|447610|447614|447616|447620|447626|447628|447637|447642|447645|447650|447655|447658|447659|447660|447662|447664|447665|447668|447671|447777|447780|447782|447786|447791|447793|447799|447803|447804|447805|447812|447815|447825|447831|447832|447835|447837|447841|447842|447848|447854|447856|447859|447861|447862|447865|447868|447871|447872|447875|447879|447883|447884|447885|447886|447888|447889|447891|447892|447894|447895|447896|447898|447901|447905|447907|447909|447920|447923|447925|447930|447936|447939|447940|447941|447943|447944|447945|447946|447947|447948|447950|447951|447953|447956|447959|447961|447965|447968|447971|447976|447977|447978|447979|447980|447981|447982|447984|447985|447986|447989|447991|447992|447993|447994|447996|447998|448000|448001|448003|448004|455160|455166|455171|455174|455175|455176|455312|455314|455333|455829|455838|455840|455844|455851|456053|456055|456058|456065|480673|486852|486857|486862|486865|486899|490599|496650|496652|496849|498013|498283|498344|498346|498354|498365|498366|498372|498509|498526|498539|501122|501397|509076|509077|509172|509173|509178|509180|509185|509187|509195|509199|509201|509205|509207|509210|509212|509784|509786|509787|509791|509792|511042|511051|511054|512885|514343|514995|515051|515058|515588|515589|515591|515596|515598|515604|515606|515611|515619|515621|515624|515625|515627|515638|515639|515641|515644|515656|515658|515661|515663|515664|515667|515669|515670|515671|515672|515673|515674|515676|515677|515678|515679|515682|515684|515687|515689|515692|515693|515694|515696|515698|515699|515700|515701|515702|515704|515706|515707|515708|515710|515711|515712|515713|515714|515715|515716|515719|515720|515724|515725|515727|515728|515733|515734|515735|515736|515737|515741|515742|515746|515747|515750|515751|515753|515757|515758|515759|515762|515767|515768|515774|515776|515778|515779|515781|515783|515784|515787|515789|515795|515799|515803|515805|515816|515817|521275|521347|521348|521350|521362|521633|521639|521646|521653|521713|521715|521717|521723|521729|521731|521735|521870|521874|521978|521982|521983|521985|551689|556525|556562|556595|556831|556833|556835|556837|556839|556841|556843|556848|556852|556854|556864|556867|556876|556878|556901|556902|556904|556906|556908|556910|556912|556914|556989|556990|556992|556993|557172|557174|557176|557178|557180|557182|557184|557186|557188|557190|557192|557194|557196|557198|557200|557202|557204|557206|557208|557213|557215|557217|557219|557221|557223|557225|557227|557229|557231|557233|557235|557237|557239|557241|557243|557245|557247|557249|558391|558393|558395|558397|558399|558401|558403|558405|558407|558409|558411|558413|558415|558417|558419|558421|558423|558425|558427|558429|560427|560429|560431|560433|560554|560556|560560|560562|560564|560566|560568|563353|563354|563356|563360|563365|565365|565369|565374|610649|614715|615193|616032|616033|616036|616037|616043|616044|616061|616070|621053|621071|621073|621074|621077|626674|626675|626676|626677|626678|626679|627542|627543|627544|627545|627546|627547|627548|627549|627550|627551|627552|627553|627554|627555|627556|627557|627558|627559|627560|627561|627562|627563|627564|627565|627566|627567|627568|627569|627570|627571|627572|627573|627574|627575|627576|627577|627578|627579|627580|627581|627582|627583|627584|627585|627586|627587|627588|627589|627590|627591|627592|627593|627594|627595|627596|627597|627598|627599|627600|627601|627602|627603|627604|627605|627606|627607|627608|627609|627610|627611|627612|627613|627614|627615|634524|634525|634526|634527|634528|634529|634530|634531|634532|634533|634534|634535|634536|634537|634538|634539|650552|650556|650577|650579|650611|650627|650629|650635|650637|650640|650643|650722|650725|651461|651477|651514|651516|655709|683316|685190|685549|685645|685647|685648|685650|685651|685654|685655|685659|685660|685663|685670|685671|689648|689649|689650|689810|689811|690539|690541|690542|690543|690544|690547|690548|690551|690553|690554|695037|696606|718825|729985|732295|745594|746319|746325|746328|746329|746330|746333|746335|749796|758899|758960|758965|761746|761750|761757|761761|761772|761775|761778|774464|774467|774480|774502|780615|780616|780618|780623|782427|787028|787038|787041|787312|789950|794626|799016|818840|818937|818938|818939|818940|818941|818942|818943|818944|818945|819650|819651|819652|822585|822586|822587|822588|822589|823643|823644|823645|823646|823647|823648|823649|823650|823651|823652|823653|823654|823655|823656|823657|823658|823659|823660|823661|823662|823663|823664|823665|823666|823667|823668|823669|823670|823671|823672|823673|823674|823675|823676|823677|823678|823679|823680|823681|823682|823683|823684|823685|823686|823687|823688|823689|823690|823691|823692|823693|823694|823695|823696|823697|823698|823699|823700|823701|823702|823703|823704|823705|823706|823707|823708|823709|823710|823711|823712|823713|823714|823715|823716|823717|823718|823719|823720|823721|823722|823723|823724|823725|823726|823727|823728|823729|823730|823731|823732|823733|823734|823735|823736|823737|823738|823739|823740|823741|823742|823743|823744|823745|823746|823747|831474|831475|831476|831477|831478|831479|831480|831481|831482|831483|831484|831485|831486|831487|831488|831489|831490|831491|850759|850761|850763|850764|850765|850766|850967|851054|851056|852236|857639|858246|858443|864103|864104|903734|906526|906538|906551|906553|906557|906558|906559|906561|906613|906631|906693|906710|906714|906755|906758|906771|906863|906932|906960|906973|906989|906994|906997|907015|907026|907042|907123|907158|907174|915122|915141|915222|915242|915366|916822|921600|921902|921903|921904|921905|921906|921907|921908|921909|921910|921911|921912|921913|921914|921915|921916|921917|921918|921919|921920|921921|921922|921923|921924|921925|921926|921927|921928|921929|921930|921931|921932|921933|921934|921935|921936|924235|924236|924237|924238|924239|929986|929987|929988|929989|929990|930387|930388|930389|930390|930391|930392|930393|930394|930395|930396|930397|930398|930399|930400|930401|930402|930403|930404|930405|930406|930407|930408|930409|930410|930411|930412|930413|930414|930415|933151|933152|933153|933154|933155|939799|939800|939801|939802|940028|940029|940625|940626|941397|941821|941822|941823|941824|941825|941826|941827|941828|941829|941830|941831|941832|941833|941834|941835|941836|941837|941838|941839|941840|941841|941842|941843|941844|941845|941846|941847|941848|941849|941850|941851|941852|941853|941854|941855|941856|941857|941858|944866|944867|944868|944869|944870|952028|952029|952332|952333|952334|952335|952336|952337|952338|952339|952340|952341|952342|952343|952344|952345|952346|952347|952348|952349|952350|954333|959519|959549|959550|959551|959790|959791|960576|960577|977408", "text": "Catecholaminergic polymorphic ventricular tachycardia" }, { - "baseId": "27997|27998|45390|45393|45394|45396|45397|45398|45399|45400|45404|45406|45407|45409|45410|45411|52867|52868|52870|52871|52880|52884|52885|52886|52887|52888|52892|52897|52898|52899|52900|52901|52902|52903|52909|52911|52914|52915|52919|52920|52921|52922|52924|52927|52929|52931|52932|52933|52935|52938|52939|52941|52947|52951|52956|52959|52960|52961|52963|52964|52969|52974|52976|52979|52982|52985|52986|52987|52988|52989|52990|52996|52997|52999|53002|53003|53004|53005|53006|99382|99385|142639|142640|142648|142655|142657|171058|171059|172403|172406|172409|172410|172417|172420|172421|172425|172428|172435|172543|172545|172549|172559|172564|172565|172568|172575|178456|189190|189203|196507|196540|196560|196566|196574|196577|196581|196587|196595|196604|196616|196638|196661|196682|196711|196723|196733|199780|199780|224202|224203|228391|228398|228406|238238|257961|257968|257975|257976|257978|268132|279942|279943|279949|279956|279964|279982|279984|279985|279988|279989|279990|280003|280005|280009|280010|280015|280025|280027|280039|280055|280279|280281|280282|280284|280286|280289|280291|280302|280316|280322|280328|280330|280341|280348|280388|280389|280401|281590|281591|281604|281616|281617|281622|281624|281626|281627|281630|281640|281641|281643|281647|281679|281681|281690|281693|281694|281711|281713|281721|281749|281757|281758|281766|281771|281774|281788|281790|281799|281802|281813|281815|281816|281819|281835|281839|281840|281848|281857|281876|281881|364881|365058|365075|365085|365104|391029|391045|391053|391166|404744|447620|447655|447793|447895|447993|481117|490599|496161|498515|509172|509207|509218|515591|515619|515716|515795|538332|551758|556837|556910|557249|609292|613918|615193|616048|627580|683315|690545|690550|780621|823654|864086|864087|864088|864089|864090|864091|864092|864093|864094|864095|864096|864097|864098|864099|864100|864101|864102|864103|864104|864105|864106|864107|864108|864109|864110|864111|864112|864113|864114|864115|864116|864117|864118|864119|864120|864121|864122|864123|864124|864125|864126|864127|865154|865155|865156|865157|865158|952349|970682|970683", + "upstreamId": "27997|27998|45390|45393|45394|45396|45397|45398|45399|45400|45404|45406|45407|45409|45410|45411|52867|52868|52870|52871|52880|52884|52885|52886|52887|52888|52892|52897|52898|52899|52900|52901|52902|52903|52909|52911|52914|52915|52919|52920|52921|52922|52924|52927|52929|52931|52932|52933|52935|52938|52939|52941|52947|52951|52956|52959|52960|52961|52963|52964|52969|52974|52976|52979|52982|52985|52986|52987|52988|52989|52990|52996|52997|52999|53002|53003|53004|53005|53006|99382|99385|142639|142640|142648|142655|142657|171058|171059|172403|172406|172409|172410|172417|172420|172421|172425|172428|172435|172543|172545|172549|172559|172564|172565|172568|172575|178456|189190|189203|196507|196540|196560|196566|196574|196577|196581|196587|196595|196604|196616|196638|196661|196682|196711|196723|196733|199780|199780|224202|224203|228391|228398|228406|238238|257961|257968|257975|257976|257978|268132|279942|279943|279949|279956|279964|279982|279984|279985|279988|279989|279990|280003|280005|280009|280010|280015|280025|280027|280039|280055|280279|280281|280282|280284|280286|280289|280291|280302|280316|280322|280328|280330|280341|280348|280388|280389|280401|281590|281591|281604|281616|281617|281622|281624|281626|281627|281630|281640|281641|281643|281647|281679|281681|281690|281693|281694|281711|281713|281721|281749|281757|281758|281766|281771|281774|281788|281790|281799|281802|281813|281815|281816|281819|281835|281839|281840|281848|281857|281876|281881|364881|365058|365075|365085|365104|391029|391045|391053|391166|404744|447620|447655|447793|447895|447993|481117|490599|496161|498515|509172|509207|509218|515591|515619|515716|515795|538332|551758|556837|556910|557249|609292|613918|615193|616048|627580|683315|690545|690550|780621|823654|864086|864087|864088|864089|864090|864091|864092|864093|864094|864095|864096|864097|864098|864099|864100|864101|864102|864103|864104|864105|864106|864107|864108|864109|864110|864111|864112|864113|864114|864115|864116|864117|864118|864119|864120|864121|864122|864123|864124|864125|864126|864127|865154|865155|865156|865157|865158|952349|970682|970683", "text": "Arrhythmogenic right ventricular dysplasia, familial, 2" }, { - "baseId": "28003|28004|28006|28008|28009|28010|28011|28012|28013|28014|28014|28015|28016|28017|28018|28021|28023|28032|38459|38832|38833|51078|70540|76888|76892|76904|76904|99145|99146|99147|99148|99149|99150|99153|99154|99156|99157|99158|99159|99160|99161|99162|99165|99166|99167|99168|99169|99170|99171|99172|99174|99175|99176|99177|99178|99180|99181|99183|99184|99185|99186|99188|99190|99191|99192|99194|99195|99196|99197|99199|99200|99201|99202|99203|99204|99205|99206|99207|99208|99209|99213|99215|136736|136739|136739|136745|136747|136758|136759|136761|136762|136767|136769|136769|136770|136774|136780|136782|136791|136794|136797|136800|136801|136823|136845|136845|136846|136848|136850|136858|136861|136867|136869|136870|136871|136881|136891|136896|136899|136915|136919|136920|136922|136922|136927|136929|136930|136934|136937|136938|136940|136941|136949|136951|136956|136979|136989|169542|169543|169546|169547|169548|169550|169553|169554|169559|169559|169561|169563|169564|169565|169568|169570|169571|169572|169575|169576|169577|169578|169579|169581|171056|171227|171228|171229|171230|171234|171236|171237|171238|171240|171241|171241|171242|171243|171244|177297|177429|178027|178029|178033|192085|194218|194319|194770|195107|195121|195121|195251|195489|195490|196101|196371|196376|196388|196401|198021|198022|198027|208580|208586|215566|215568|226098|226099|226100|226101|226102|226103|226104|226105|226106|226107|226108|226109|226110|226111|226112|226113|226114|226115|226116|226117|226118|226119|226120|226121|226122|226123|226124|226125|226126|226127|226127|226128|226129|226130|226131|226132|226133|226134|226135|226136|226137|226138|226138|226139|226140|226141|226142|226143|226144|226145|226146|226147|226974|256902|256903|256923|256927|256935|256941|256943|256946|256953|256957|256962|256967|256968|256974|256978|256980|256985|256993|257011|257031|257040|257046|257050|257052|257096|265716|268109|268402|270094|274154|274354|333289|333292|333303|333315|333324|333326|333328|333336|333337|333340|333348|333349|333356|333365|333372|333377|333379|333394|333395|333396|333397|333402|333415|333424|333430|333438|333457|333458|333459|343397|343402|343409|343410|343412|343414|343416|343417|343419|343421|343424|343428|343429|343433|343436|343439|343452|343457|343465|343469|343478|343490|343494|343495|348681|348682|348696|348700|348703|348705|348707|348712|348719|348721|348722|348723|348726|348730|348732|348733|348743|348745|348746|348748|348752|348756|348760|348767|348771|348772|348773|348784|348785|348788|348790|348799|348800|348804|348805|348809|348810|348816|348818|348820|348826|348828|349736|349740|349745|349746|349748|349750|349752|349754|349759|349760|349762|349765|349767|349770|349773|349774|349776|349777|349780|349783|349786|349789|360414|361049|361346|361886|361887|361888|377439|379547|390354|410578|410591|410596|413513|415649|434672|438105|446116|446123|468667|468667|468669|468693|469680|469738|469791|470195|470698|470790|470832|495721|507303|507315|513662|532913|532927|532933|533033|533050|533355|533390|536983|537327|539090|551330|551331|570695|570770|573075|574949|574950|578565|581435|581465|581526|581543|581570|581575|581642|624867|647965|648051|684786|684802|689022|694407|756962|756965|772648|772655|778371|791923|791924|791925|791926|791927|791928|847574|847620|847623|847635|860559|880414|880415|880416|880417|880418|880419|880420|880421|880422|880423|880424|880425|880426|880427|880428|880429|880430|880431|880432|880433|880434|880435|880436|880437|880438|880439|880440|880441|880442|880443|880444|880445|880446|880447|880448|880449|880450|880451|880452|880453|880454|880455|880456|880457|880458|880743|880744|880745|880746|880747|880748|880749|880750|880751|881925|881926|881927|881928|881929|881930|881931|881932|881933|881934|881935|881936|881937|881938|882880|961347|964571|967161|967217|967218|967219|967220|967221|967222|967223|967224|967225|967226|967227|970559|971127|971128|971129|971132|977293", + "upstreamId": "28003|28004|28006|28008|28009|28010|28011|28012|28013|28014|28014|28015|28016|28017|28018|28021|28023|28032|38459|38832|38833|51078|70540|76888|76892|76904|76904|99145|99146|99147|99148|99149|99150|99153|99154|99156|99157|99158|99159|99160|99161|99162|99165|99166|99167|99168|99169|99170|99171|99172|99174|99175|99176|99177|99178|99180|99181|99183|99184|99185|99186|99188|99190|99191|99192|99194|99195|99196|99197|99199|99200|99201|99202|99203|99204|99205|99206|99207|99208|99209|99213|99215|136736|136739|136739|136745|136747|136758|136759|136761|136762|136767|136769|136769|136770|136774|136780|136782|136791|136794|136797|136800|136801|136823|136845|136845|136846|136848|136850|136858|136861|136867|136869|136870|136871|136881|136891|136896|136899|136915|136919|136920|136922|136922|136927|136929|136930|136934|136937|136938|136940|136941|136949|136951|136956|136979|136989|169542|169543|169546|169547|169548|169550|169553|169554|169559|169559|169561|169563|169564|169565|169568|169570|169571|169572|169575|169576|169577|169578|169579|169581|171056|171227|171228|171229|171230|171234|171236|171237|171238|171240|171241|171241|171242|171243|171244|177297|177429|178027|178029|178033|192085|194218|194319|194770|195107|195121|195121|195251|195489|195490|196101|196371|196376|196388|196401|198021|198022|198027|208580|208586|215566|215568|226098|226099|226100|226101|226102|226103|226104|226105|226106|226107|226108|226109|226110|226111|226112|226113|226114|226115|226116|226117|226118|226119|226120|226121|226122|226123|226124|226125|226126|226127|226127|226128|226129|226130|226131|226132|226133|226134|226135|226136|226137|226138|226138|226139|226140|226141|226142|226143|226144|226145|226146|226147|226974|256902|256903|256923|256927|256935|256941|256943|256946|256953|256957|256962|256967|256968|256974|256978|256980|256985|256993|257011|257031|257040|257046|257050|257052|257096|265716|268109|268402|270094|274154|274354|333289|333292|333303|333315|333324|333326|333328|333336|333337|333340|333348|333349|333356|333365|333372|333377|333379|333394|333395|333396|333397|333402|333415|333424|333430|333438|333457|333458|333459|343397|343402|343409|343410|343412|343414|343416|343417|343419|343421|343424|343428|343429|343433|343436|343439|343452|343457|343465|343469|343478|343490|343494|343495|348681|348682|348696|348700|348703|348705|348707|348712|348719|348721|348722|348723|348726|348730|348732|348733|348743|348745|348746|348748|348752|348756|348760|348767|348771|348772|348773|348784|348785|348788|348790|348799|348800|348804|348805|348809|348810|348816|348818|348820|348826|348828|349736|349740|349745|349746|349748|349750|349752|349754|349759|349760|349762|349765|349767|349770|349773|349774|349776|349777|349780|349783|349786|349789|360414|361049|361346|361886|361887|361888|377439|379547|390354|410578|410591|410596|413513|415649|434672|438105|446116|446123|468667|468667|468669|468693|469680|469738|469791|470195|470698|470790|470832|495721|507303|507315|513662|532913|532927|532933|533033|533050|533355|533390|536983|537327|539090|551330|551331|570695|570770|573075|574949|574950|578565|581435|581465|581526|581543|581570|581575|581642|624867|647965|648051|684786|684802|689022|694407|756962|756965|772648|772655|778371|791923|791924|791925|791926|791927|791928|847574|847620|847623|847635|860559|880414|880415|880416|880417|880418|880419|880420|880421|880422|880423|880424|880425|880426|880427|880428|880429|880430|880431|880432|880433|880434|880435|880436|880437|880438|880439|880440|880441|880442|880443|880444|880445|880446|880447|880448|880449|880450|880451|880452|880453|880454|880455|880456|880457|880458|880743|880744|880745|880746|880747|880748|880749|880750|880751|881925|881926|881927|881928|881929|881930|881931|881932|881933|881934|881935|881936|881937|881938|882880|961347|964571|967161|967217|967218|967219|967220|967221|967222|967223|967224|967225|967226|967227|970559|971127|971128|971129|971132|977293", "text": "Malignant hyperthermia, susceptibility to, 1" }, { - "baseId": "28003|28005|28006|28008|28009|28010|28011|28013|28014|28015|28016|28018|28021|28023|28024|28027|28035|38459|38832|38833|51078|51264|70540|76835|76851|76867|76869|76887|76888|76889|76892|76894|76896|76897|76903|76904|99145|99151|99153|99154|99155|99156|99157|99159|99160|99162|99164|99167|99171|99172|99173|99174|99176|99177|99178|99180|99181|99182|99183|99188|99190|99197|99200|99208|99211|99212|136739|136745|136747|136759|136760|136761|136762|136767|136769|136774|136777|136778|136780|136782|136791|136792|136793|136794|136795|136797|136800|136801|136808|136818|136823|136830|136845|136846|136848|136849|136850|136851|136853|136855|136858|136861|136867|136869|136870|136871|136881|136883|136891|136894|136896|136899|136909|136912|136914|136915|136919|136920|136921|136922|136930|136934|136937|136938|136940|136942|136943|136948|136949|136950|136954|136956|136959|136971|136977|136979|136985|169542|169543|169546|169547|169548|169549|169550|169551|169553|169554|169557|169559|169560|169561|169562|169563|169564|169565|169567|169569|169571|169572|169573|169575|169576|169579|169580|169581|169582|171227|171228|171229|171230|171231|171233|171234|171235|171236|171237|171238|171240|171241|171242|177297|177429|178027|178028|178029|178030|178031|178033|190763|190935|191165|191977|192085|192244|193269|194043|194101|194218|194319|194770|195083|195107|195121|195251|195489|195490|196101|196371|196374|196375|196376|196388|196396|196401|196407|198021|198022|198024|198026|198029|198030|198031|198032|198033|198035|208586|208587|208589|208590|208591|208594|208595|208597|215566|215568|215569|226098|226100|226109|226113|226114|226115|226117|226119|226120|226124|226127|226129|226132|226135|226136|226137|226138|226140|226141|226144|226145|226147|226483|226484|226974|231014|247165|256896|256897|256902|256903|256910|256916|256920|256923|256925|256927|256932|256933|256935|256941|256943|256944|256946|256947|256948|256953|256958|256968|256971|256974|256975|256976|256978|256980|256984|256985|256987|256990|256993|256999|257000|257010|257011|257015|257020|257028|257031|257032|257033|257035|257040|257046|257052|257066|257069|257071|257072|257077|257079|257080|257087|257096|260214|265070|265716|265826|266963|267034|268109|268402|268411|268482|269246|269325|270094|271556|271587|272002|274154|274256|274354|275549|333301|333303|333320|333324|333326|333340|333348|333349|333356|333365|333371|333375|333379|333394|333396|333397|333407|333410|333413|333415|333420|333438|333457|343397|343402|343417|343425|343428|343432|343436|343490|343495|348700|348703|348707|348712|348722|348733|348740|348743|348746|348752|348758|348760|348765|348767|348771|348784|348785|348820|348828|349745|349746|349748|349752|349754|349757|349762|349764|349765|349770|349783|360414|361047|361049|361050|361051|361053|361346|361505|361886|376437|376442|376443|376454|376465|377439|377450|377604|377618|377623|377624|377628|377633|377634|377636|379544|379561|390410|410571|410573|410576|410578|410579|410585|410591|410593|410598|410599|410601|413512|413513|413514|415650|415653|422270|422276|426302|430199|430200|430204|430207|434672|438103|438105|438106|438107|442199|446098|446099|446101|446102|446108|446109|446110|446112|446116|446117|446119|446120|446122|446125|446127|446128|468643|468646|468647|468648|468650|468654|468656|468660|468661|468664|468666|468667|468669|468673|468677|468678|468685|468689|468693|468694|468696|468697|468703|468707|468717|468719|468726|468730|468740|468744|468746|468762|468765|468775|468776|468778|468782|468788|468789|468791|468792|468793|468796|469656|469662|469667|469675|469677|469680|469691|469692|469697|469699|469706|469715|469716|469720|469722|469726|469730|469733|469735|469738|469739|469741|469769|469772|469790|469791|469793|469795|469797|469801|469803|470060|470062|470069|470072|470074|470078|470080|470084|470097|470105|470110|470114|470125|470134|470136|470142|470144|470148|470156|470159|470160|470166|470170|470172|470178|470185|470186|470193|470195|470197|470198|470200|470205|470638|470645|470652|470666|470672|470673|470675|470680|470683|470686|470687|470698|470699|470702|470708|470712|470716|470720|470721|470726|470728|470731|470735|470738|470742|470749|470756|470758|470760|470775|470784|470787|470790|470793|470807|470814|470818|470821|470823|470831|470832|486222|488143|488767|490959|491838|491843|491844|495865|506636|506649|506652|506670|506708|506874|506890|506900|506912|507282|507296|507298|507315|507716|512412|512413|514762|532362|532489|532865|532867|532873|532875|532878|532880|532883|532892|532893|532895|532896|532898|532899|532900|532901|532904|532908|532909|532910|532911|532913|532917|532918|532920|532922|532924|532925|532927|532931|532932|532933|532934|532935|532936|532937|532938|532940|532943|532945|532947|532948|532949|532951|532955|532957|532958|532960|532962|532963|532965|532967|532968|532969|532970|532971|532973|532975|532977|532979|532980|532984|532985|532986|532987|532988|532992|532998|532999|533000|533003|533004|533005|533006|533007|533012|533013|533018|533020|533022|533024|533026|533027|533029|533030|533031|533033|533036|533037|533039|533040|533041|533042|533044|533049|533050|533053|533055|533056|533057|533059|533060|533062|533068|533069|533303|533307|533309|533314|533322|533325|533327|533336|533338|533341|533345|533347|533355|533356|533364|533368|533370|533375|533377|533390|533396|533403|533405|533409|533411|533418|533420|533430|533445|533447|533451|533453|533458|533464|533472|533477|536984|539090|570682|570687|570693|570695|570702|570704|570709|570711|570713|570715|570717|570722|570733|570735|570739|570740|570743|570744|570746|570750|570751|570756|570762|570770|570771|572368|572369|572371|572375|572380|572382|572384|572385|572388|572395|572396|572404|572405|572408|572409|572411|572415|572418|572427|572428|572438|572449|572450|572452|572458|572459|572460|572462|572465|572468|572470|572484|572486|572488|572498|572501|573044|573045|573046|573047|573049|573051|573052|573053|573059|573066|573069|573071|573072|573073|573075|573079|573085|573089|573091|573092|573097|573098|573100|574940|574941|574942|574943|574944|574945|574946|574947|574948|574949|574950|574951|574952|574953|574954|574955|574956|574957|574958|574959|574960|574961|574962|574963|574964|574965|574966|574967|574968|577775|578565|581418|581419|581423|581430|581432|581433|581435|581436|581437|581438|581442|581446|581449|581453|581459|581463|581465|581471|581472|581474|581475|581482|581486|581487|581496|581497|581500|581502|581508|581509|581515|581518|581520|581521|581524|581529|581536|581539|581543|581552|581561|581564|581566|581572|581573|581576|581593|581595|581601|581604|581614|581617|581618|581628|581636|581639|581651|581652|581655|581659|581663|581676|581695|581696|588099|620638|622458|626273|647950|647951|647952|647953|647954|647955|647956|647957|647958|647959|647960|647961|647962|647963|647964|647965|647966|647967|647968|647969|647970|647971|647972|647973|647974|647975|647976|647977|647978|647979|647980|647981|647982|647983|647984|647985|647986|647987|647988|647989|647990|647991|647992|647993|647994|647995|647996|647997|647998|647999|648000|648001|648002|648003|648004|648005|648006|648007|648008|648009|648010|648011|648012|648013|648014|648015|648016|648017|648018|648019|648020|648021|648022|648023|648024|648025|648026|648027|648028|648029|648030|648031|648032|648033|648034|648035|648036|648037|648038|648039|648040|648041|648042|648043|648044|648045|648046|648047|648048|648049|648050|648051|648052|648053|648054|648055|648056|648057|648058|648059|648060|648061|648062|648063|648064|648065|648066|648067|648068|648069|648070|648071|648072|648073|648074|648075|648076|648077|648078|648079|648080|648081|648082|648083|653037|653044|653046|653048|653164|653166|653451|653493|653496|653497|653611|653615|656551|656554|684786|684790|684794|684796|684799|684802|684804|684805|684808|685454|685456|685457|685458|688999|689000|689001|689002|689010|689014|689016|689017|689018|689019|689020|689021|689022|689027|689028|689030|689037|689039|689040|689041|689042|690204|690205|690206|690207|690208|690209|690214|694395|694396|694399|694400|694403|694404|694407|694412|694413|694414|695819|704961|716416|728155|731275|741845|741847|756962|756964|756968|756971|756977|760714|772638|772640|772647|772650|772655|772657|772663|772668|776597|778371|786165|786169|786177|786178|786179|786182|788320|797801|797808|797821|797835|806047|821250|821251|821252|821253|821254|847557|847558|847559|847560|847561|847562|847563|847564|847565|847566|847567|847568|847569|847570|847571|847572|847573|847574|847575|847576|847577|847578|847579|847580|847581|847582|847583|847584|847585|847586|847587|847588|847589|847590|847591|847592|847593|847594|847595|847596|847597|847598|847599|847600|847601|847602|847603|847604|847605|847606|847607|847608|847609|847610|847611|847612|847613|847614|847615|847616|847617|847618|847619|847620|847621|847622|847623|847624|847625|847626|847627|847628|847629|847630|847631|847632|847633|847634|847635|847636|847637|847638|847639|847640|847641|847642|847643|847644|847645|847646|847647|847648|847649|847650|847651|847652|847653|847654|847655|847656|847657|847658|847659|847660|847661|847662|847663|847664|847665|847666|847667|847668|847669|847670|847671|847672|847673|847674|847675|847676|851813|851815|851817|852863|852864|852866|852977|852979|852980|860559|860565|928934|928935|928936|928937|928938|928939|928940|928941|928942|928943|928944|928945|928946|928947|928948|928949|928950|928951|928952|928953|928954|928955|928956|928957|928958|928959|928960|928961|928962|928963|938653|938654|938655|938656|938657|938658|938659|938660|938661|938662|938663|938664|938665|938666|938667|938668|938669|938670|938671|938672|938673|938674|938675|938676|938677|938678|938679|938680|940482|940483|940484|940485|941230|941231|941232|950759|950760|950761|950762|950763|950764|950765|950766|950767|950768|950769|950770|950771|950772|950773|950774|950775|950776|950777|950778|950779|950780|950781|950782|958602|958603|958604|958605|958606|958607|958608|958609|958610|958611|958612|958613|958614|958615|958616|958617|958618|958619|958620|958621|958622|958623|958624|958625|958626|958627|958628|958629|958630|958631|958632|958633|958634|960291|960292|960917|960918", + "upstreamId": "28003|28005|28006|28008|28009|28010|28011|28013|28014|28015|28016|28018|28021|28023|28024|28027|28035|38459|38832|38833|51078|51264|70540|76835|76851|76867|76869|76887|76888|76889|76892|76894|76896|76897|76903|76904|99145|99151|99153|99154|99155|99156|99157|99159|99160|99162|99164|99167|99171|99172|99173|99174|99176|99177|99178|99180|99181|99182|99183|99188|99190|99197|99200|99208|99211|99212|136739|136745|136747|136759|136760|136761|136762|136767|136769|136774|136777|136778|136780|136782|136791|136792|136793|136794|136795|136797|136800|136801|136808|136818|136823|136830|136845|136846|136848|136849|136850|136851|136853|136855|136858|136861|136867|136869|136870|136871|136881|136883|136891|136894|136896|136899|136909|136912|136914|136915|136919|136920|136921|136922|136930|136934|136937|136938|136940|136942|136943|136948|136949|136950|136954|136956|136959|136971|136977|136979|136985|169542|169543|169546|169547|169548|169549|169550|169551|169553|169554|169557|169559|169560|169561|169562|169563|169564|169565|169567|169569|169571|169572|169573|169575|169576|169579|169580|169581|169582|171227|171228|171229|171230|171231|171233|171234|171235|171236|171237|171238|171240|171241|171242|177297|177429|178027|178028|178029|178030|178031|178033|190763|190935|191165|191977|192085|192244|193269|194043|194101|194218|194319|194770|195083|195107|195121|195251|195489|195490|196101|196371|196374|196375|196376|196388|196396|196401|196407|198021|198022|198024|198026|198029|198030|198031|198032|198033|198035|208586|208587|208589|208590|208591|208594|208595|208597|215566|215568|215569|226098|226100|226109|226113|226114|226115|226117|226119|226120|226124|226127|226129|226132|226135|226136|226137|226138|226140|226141|226144|226145|226147|226483|226484|226974|231014|247165|256896|256897|256902|256903|256910|256916|256920|256923|256925|256927|256932|256933|256935|256941|256943|256944|256946|256947|256948|256953|256958|256968|256971|256974|256975|256976|256978|256980|256984|256985|256987|256990|256993|256999|257000|257010|257011|257015|257020|257028|257031|257032|257033|257035|257040|257046|257052|257066|257069|257071|257072|257077|257079|257080|257087|257096|260214|265070|265716|265826|266963|267034|268109|268402|268411|268482|269246|269325|270094|271556|271587|272002|274154|274256|274354|275549|333301|333303|333320|333324|333326|333340|333348|333349|333356|333365|333371|333375|333379|333394|333396|333397|333407|333410|333413|333415|333420|333438|333457|343397|343402|343417|343425|343428|343432|343436|343490|343495|348700|348703|348707|348712|348722|348733|348740|348743|348746|348752|348758|348760|348765|348767|348771|348784|348785|348820|348828|349745|349746|349748|349752|349754|349757|349762|349764|349765|349770|349783|360414|361047|361049|361050|361051|361053|361346|361505|361886|376437|376442|376443|376454|376465|377439|377450|377604|377618|377623|377624|377628|377633|377634|377636|379544|379561|390410|410571|410573|410576|410578|410579|410585|410591|410593|410598|410599|410601|413512|413513|413514|415650|415653|422270|422276|426302|430199|430200|430204|430207|434672|438103|438105|438106|438107|442199|446098|446099|446101|446102|446108|446109|446110|446112|446116|446117|446119|446120|446122|446125|446127|446128|468643|468646|468647|468648|468650|468654|468656|468660|468661|468664|468666|468667|468669|468673|468677|468678|468685|468689|468693|468694|468696|468697|468703|468707|468717|468719|468726|468730|468740|468744|468746|468762|468765|468775|468776|468778|468782|468788|468789|468791|468792|468793|468796|469656|469662|469667|469675|469677|469680|469691|469692|469697|469699|469706|469715|469716|469720|469722|469726|469730|469733|469735|469738|469739|469741|469769|469772|469790|469791|469793|469795|469797|469801|469803|470060|470062|470069|470072|470074|470078|470080|470084|470097|470105|470110|470114|470125|470134|470136|470142|470144|470148|470156|470159|470160|470166|470170|470172|470178|470185|470186|470193|470195|470197|470198|470200|470205|470638|470645|470652|470666|470672|470673|470675|470680|470683|470686|470687|470698|470699|470702|470708|470712|470716|470720|470721|470726|470728|470731|470735|470738|470742|470749|470756|470758|470760|470775|470784|470787|470790|470793|470807|470814|470818|470821|470823|470831|470832|486222|488143|488767|490959|491838|491843|491844|495865|506636|506649|506652|506670|506708|506874|506890|506900|506912|507282|507296|507298|507315|507716|512412|512413|514762|532362|532489|532865|532867|532873|532875|532878|532880|532883|532892|532893|532895|532896|532898|532899|532900|532901|532904|532908|532909|532910|532911|532913|532917|532918|532920|532922|532924|532925|532927|532931|532932|532933|532934|532935|532936|532937|532938|532940|532943|532945|532947|532948|532949|532951|532955|532957|532958|532960|532962|532963|532965|532967|532968|532969|532970|532971|532973|532975|532977|532979|532980|532984|532985|532986|532987|532988|532992|532998|532999|533000|533003|533004|533005|533006|533007|533012|533013|533018|533020|533022|533024|533026|533027|533029|533030|533031|533033|533036|533037|533039|533040|533041|533042|533044|533049|533050|533053|533055|533056|533057|533059|533060|533062|533068|533069|533303|533307|533309|533314|533322|533325|533327|533336|533338|533341|533345|533347|533355|533356|533364|533368|533370|533375|533377|533390|533396|533403|533405|533409|533411|533418|533420|533430|533445|533447|533451|533453|533458|533464|533472|533477|536984|539090|570682|570687|570693|570695|570702|570704|570709|570711|570713|570715|570717|570722|570733|570735|570739|570740|570743|570744|570746|570750|570751|570756|570762|570770|570771|572368|572369|572371|572375|572380|572382|572384|572385|572388|572395|572396|572404|572405|572408|572409|572411|572415|572418|572427|572428|572438|572449|572450|572452|572458|572459|572460|572462|572465|572468|572470|572484|572486|572488|572498|572501|573044|573045|573046|573047|573049|573051|573052|573053|573059|573066|573069|573071|573072|573073|573075|573079|573085|573089|573091|573092|573097|573098|573100|574940|574941|574942|574943|574944|574945|574946|574947|574948|574949|574950|574951|574952|574953|574954|574955|574956|574957|574958|574959|574960|574961|574962|574963|574964|574965|574966|574967|574968|577775|578565|581418|581419|581423|581430|581432|581433|581435|581436|581437|581438|581442|581446|581449|581453|581459|581463|581465|581471|581472|581474|581475|581482|581486|581487|581496|581497|581500|581502|581508|581509|581515|581518|581520|581521|581524|581529|581536|581539|581543|581552|581561|581564|581566|581572|581573|581576|581593|581595|581601|581604|581614|581617|581618|581628|581636|581639|581651|581652|581655|581659|581663|581676|581695|581696|588099|620638|622458|626273|647950|647951|647952|647953|647954|647955|647956|647957|647958|647959|647960|647961|647962|647963|647964|647965|647966|647967|647968|647969|647970|647971|647972|647973|647974|647975|647976|647977|647978|647979|647980|647981|647982|647983|647984|647985|647986|647987|647988|647989|647990|647991|647992|647993|647994|647995|647996|647997|647998|647999|648000|648001|648002|648003|648004|648005|648006|648007|648008|648009|648010|648011|648012|648013|648014|648015|648016|648017|648018|648019|648020|648021|648022|648023|648024|648025|648026|648027|648028|648029|648030|648031|648032|648033|648034|648035|648036|648037|648038|648039|648040|648041|648042|648043|648044|648045|648046|648047|648048|648049|648050|648051|648052|648053|648054|648055|648056|648057|648058|648059|648060|648061|648062|648063|648064|648065|648066|648067|648068|648069|648070|648071|648072|648073|648074|648075|648076|648077|648078|648079|648080|648081|648082|648083|653037|653044|653046|653048|653164|653166|653451|653493|653496|653497|653611|653615|656551|656554|684786|684790|684794|684796|684799|684802|684804|684805|684808|685454|685456|685457|685458|688999|689000|689001|689002|689010|689014|689016|689017|689018|689019|689020|689021|689022|689027|689028|689030|689037|689039|689040|689041|689042|690204|690205|690206|690207|690208|690209|690214|694395|694396|694399|694400|694403|694404|694407|694412|694413|694414|695819|704961|716416|728155|731275|741845|741847|756962|756964|756968|756971|756977|760714|772638|772640|772647|772650|772655|772657|772663|772668|776597|778371|786165|786169|786177|786178|786179|786182|788320|797801|797808|797821|797835|806047|821250|821251|821252|821253|821254|847557|847558|847559|847560|847561|847562|847563|847564|847565|847566|847567|847568|847569|847570|847571|847572|847573|847574|847575|847576|847577|847578|847579|847580|847581|847582|847583|847584|847585|847586|847587|847588|847589|847590|847591|847592|847593|847594|847595|847596|847597|847598|847599|847600|847601|847602|847603|847604|847605|847606|847607|847608|847609|847610|847611|847612|847613|847614|847615|847616|847617|847618|847619|847620|847621|847622|847623|847624|847625|847626|847627|847628|847629|847630|847631|847632|847633|847634|847635|847636|847637|847638|847639|847640|847641|847642|847643|847644|847645|847646|847647|847648|847649|847650|847651|847652|847653|847654|847655|847656|847657|847658|847659|847660|847661|847662|847663|847664|847665|847666|847667|847668|847669|847670|847671|847672|847673|847674|847675|847676|851813|851815|851817|852863|852864|852866|852977|852979|852980|860559|860565|928934|928935|928936|928937|928938|928939|928940|928941|928942|928943|928944|928945|928946|928947|928948|928949|928950|928951|928952|928953|928954|928955|928956|928957|928958|928959|928960|928961|928962|928963|938653|938654|938655|938656|938657|938658|938659|938660|938661|938662|938663|938664|938665|938666|938667|938668|938669|938670|938671|938672|938673|938674|938675|938676|938677|938678|938679|938680|940482|940483|940484|940485|941230|941231|941232|950759|950760|950761|950762|950763|950764|950765|950766|950767|950768|950769|950770|950771|950772|950773|950774|950775|950776|950777|950778|950779|950780|950781|950782|958602|958603|958604|958605|958606|958607|958608|958609|958610|958611|958612|958613|958614|958615|958616|958617|958618|958619|958620|958621|958622|958623|958624|958625|958626|958627|958628|958629|958630|958631|958632|958633|958634|960291|960292|960917|960918", "text": "RYR1-Related Disorders" }, { - "baseId": "28003|28009|28010|28016|99151|99159|99173|99176|99182|99211|99212|136760|136777|136845|136922|136949|169560|169580|171238|196375|196500|198030|208594|227189|227190|249603|249620|249659|256909|256920|256925|256944|256948|256958|256987|257000|257032|257035|271556|278345|278362|278378|278397|278422|278461|279471|279503|279514|279524|279597|279598|279605|279676|279688|333301|333320|333371|333375|333410|333413|333414|333420|333435|333442|333452|333453|343386|343389|343390|343420|343425|343432|343435|343440|343453|343475|343476|343479|348713|348737|348738|348740|348758|348765|348777|349738|349753|349756|349757|349764|349779|353071|917293", + "upstreamId": "28003|28009|28010|28016|99151|99159|99173|99176|99182|99211|99212|136760|136777|136845|136922|136949|169560|169580|171238|196375|196500|198030|208594|227189|227190|249603|249620|249659|256909|256920|256925|256944|256948|256958|256987|257000|257032|257035|271556|278345|278362|278378|278397|278422|278461|279471|279503|279514|279524|279597|279598|279605|279676|279688|333301|333320|333371|333375|333410|333413|333414|333420|333435|333442|333452|333453|343386|343389|343390|343420|343425|343432|343435|343440|343453|343475|343476|343479|348713|348737|348738|348740|348758|348765|348777|349738|349753|349756|349757|349764|349779|353071|917293", "text": "Malignant hyperthermia susceptibility" }, { - "baseId": "28003|28004|28005|28006|28007|28008|28009|28010|28011|28012|28013|28014|28015|28017|28018|28021|28023|28032|76887|76888|136743|136775|136776|136793|136820|136822|136848|136850|136853|136911|136921|136927|136929|136930|136936|136940|136949|136953|136954|136985|275550|557106|623096|623101|623102|623103", + "upstreamId": "28003|28004|28005|28006|28007|28008|28009|28010|28011|28012|28013|28014|28015|28017|28018|28021|28023|28032|76887|76888|136743|136775|136776|136793|136820|136822|136848|136850|136853|136911|136921|136927|136929|136930|136936|136940|136949|136953|136954|136985|275550|557106|623096|623101|623102|623103", "text": "desflurane response - Toxicity/ADR" }, { - "baseId": "28003|28004|28005|28006|28007|28008|28009|28010|28011|28012|28013|28014|28015|28017|28018|28021|28023|28032|76887|76888|136743|136775|136776|136793|136820|136822|136848|136850|136853|136911|136921|136927|136929|136930|136936|136940|136949|136953|136954|136985|275550|557106|623096|623101|623102|623103", + "upstreamId": "28003|28004|28005|28006|28007|28008|28009|28010|28011|28012|28013|28014|28015|28017|28018|28021|28023|28032|76887|76888|136743|136775|136776|136793|136820|136822|136848|136850|136853|136911|136921|136927|136929|136930|136936|136940|136949|136953|136954|136985|275550|557106|623096|623101|623102|623103", "text": "enflurane response - Toxicity/ADR" }, { - "baseId": "28003|28004|28005|28006|28007|28008|28009|28010|28011|28012|28013|28014|28015|28017|28018|28021|28023|28032|76887|76888|136743|136775|136776|136793|136820|136822|136848|136850|136853|136911|136921|136927|136929|136930|136936|136940|136949|136953|136954|136985|275550|557106|623096|623101|623102|623103", + "upstreamId": "28003|28004|28005|28006|28007|28008|28009|28010|28011|28012|28013|28014|28015|28017|28018|28021|28023|28032|76887|76888|136743|136775|136776|136793|136820|136822|136848|136850|136853|136911|136921|136927|136929|136930|136936|136940|136949|136953|136954|136985|275550|557106|623096|623101|623102|623103", "text": "halothane response - Toxicity/ADR" }, { - "baseId": "28003|28004|28005|28006|28007|28008|28009|28010|28011|28012|28013|28014|28015|28017|28018|28021|28023|28032|76887|76888|136743|136775|136776|136793|136820|136822|136848|136850|136853|136911|136921|136927|136929|136930|136936|136940|136949|136953|136954|136985|275550|557106|623096|623101|623102|623103", + "upstreamId": "28003|28004|28005|28006|28007|28008|28009|28010|28011|28012|28013|28014|28015|28017|28018|28021|28023|28032|76887|76888|136743|136775|136776|136793|136820|136822|136848|136850|136853|136911|136921|136927|136929|136930|136936|136940|136949|136953|136954|136985|275550|557106|623096|623101|623102|623103", "text": "isoflurane response - Toxicity/ADR" }, { - "baseId": "28003|28004|28005|28006|28007|28008|28009|28010|28011|28012|28013|28014|28015|28017|28018|28021|28023|28032|76887|76888|136743|136775|136776|136793|136820|136822|136848|136850|136853|136911|136921|136927|136929|136930|136936|136940|136949|136953|136954|136985|275550|557106|623096|623101|623102|623103", + "upstreamId": "28003|28004|28005|28006|28007|28008|28009|28010|28011|28012|28013|28014|28015|28017|28018|28021|28023|28032|76887|76888|136743|136775|136776|136793|136820|136822|136848|136850|136853|136911|136921|136927|136929|136930|136936|136940|136949|136953|136954|136985|275550|557106|623096|623101|623102|623103", "text": "methoxyflurane response - Toxicity/ADR" }, { - "baseId": "28003|28004|28005|28006|28007|28008|28009|28010|28011|28012|28013|28014|28015|28017|28018|28021|28023|28032|76887|76888|136743|136775|136776|136793|136820|136822|136848|136850|136853|136911|136921|136927|136929|136930|136936|136940|136949|136953|136954|136985|275550|557106|623096|623101|623102|623103", + "upstreamId": "28003|28004|28005|28006|28007|28008|28009|28010|28011|28012|28013|28014|28015|28017|28018|28021|28023|28032|76887|76888|136743|136775|136776|136793|136820|136822|136848|136850|136853|136911|136921|136927|136929|136930|136936|136940|136949|136953|136954|136985|275550|557106|623096|623101|623102|623103", "text": "sevoflurane response - Toxicity/ADR" }, { - "baseId": "28003|28004|28005|28006|28007|28008|28009|28010|28011|28012|28013|28014|28015|28017|28018|28021|28023|28032|76887|76888|136743|136775|136776|136793|136820|136822|136848|136850|136853|136911|136921|136927|136929|136930|136936|136940|136949|136953|136954|136985|275550|557106|623096|623101|623102|623103", + "upstreamId": "28003|28004|28005|28006|28007|28008|28009|28010|28011|28012|28013|28014|28015|28017|28018|28021|28023|28032|76887|76888|136743|136775|136776|136793|136820|136822|136848|136850|136853|136911|136921|136927|136929|136930|136936|136940|136949|136953|136954|136985|275550|557106|623096|623101|623102|623103", "text": "succinylcholine response - Toxicity/ADR" }, { - "baseId": "28005|28006|28007|28012|28013|28014|28014|28018|28020|28021|28025|28031|28032|28034|38459|38833|51078|51264|51265|70540|76725|76830|76831|76832|76833|76834|76835|76840|76841|76842|76843|76844|76845|76846|76847|76848|76849|76850|76851|76852|76853|76854|76855|76856|76857|76859|76860|76861|76863|76864|76865|76866|76867|76868|76869|76870|76871|76872|76874|76876|76877|76878|76880|76881|76882|76883|76886|76887|76888|76889|76890|76892|76893|76894|76895|76896|76897|76898|76899|76900|76901|76903|76904|76904|76905|76908|76909|76910|76912|99145|99146|99147|99148|99149|99150|99151|99153|99154|99156|99157|99158|99160|99161|99162|99165|99166|99167|99168|99169|99170|99171|99172|99173|99174|99175|99176|99177|99178|99180|99181|99182|99183|99184|99185|99186|99188|99190|99191|99192|99194|99195|99196|99197|99199|99200|99201|99202|99203|99204|99205|99206|99207|99208|99209|99211|99212|99213|99215|101820|103331|105493|135467|136736|136739|136745|136747|136758|136759|136762|136767|136769|136770|136782|136791|136797|136801|136823|136845|136850|136858|136861|136869|136870|136881|136896|136899|136920|136922|136930|136937|136938|136940|136956|136957|136979|136986|136989|169542|169543|169546|169547|169550|169553|169554|169559|169560|169561|169563|169564|169565|169568|169569|169570|169571|169572|169575|169576|169577|169578|169579|169580|169581|171228|171234|171238|171241|171242|171244|177297|178027|178029|178033|192085|194218|194319|194770|195107|195121|195121|195251|195489|195490|196101|196371|196375|196376|196401|198025|198027|198030|208580|208585|208586|208594|215566|226098|226114|226117|226119|226127|226138|226140|226141|226482|226974|256902|256903|256909|256920|256923|256925|256935|256941|256943|256944|256946|256948|256953|256957|256958|256962|256967|256968|256974|256978|256980|256987|256993|257000|257011|257031|257032|257035|257040|257046|257050|257052|257096|265716|268402|270094|271556|274154|274354|294482|333289|333292|333301|333303|333315|333320|333324|333326|333328|333336|333337|333340|333348|333349|333356|333365|333371|333372|333375|333377|333379|333394|333395|333396|333397|333402|333410|333413|333414|333415|333420|333424|333430|333435|333438|333442|333452|333453|333457|333458|333459|343386|343389|343390|343397|343402|343409|343410|343412|343414|343416|343417|343419|343420|343421|343424|343425|343428|343429|343432|343433|343435|343436|343439|343440|343452|343453|343457|343465|343469|343475|343476|343478|343479|343490|343494|343495|348681|348682|348696|348700|348703|348705|348707|348712|348713|348719|348721|348722|348723|348726|348730|348732|348737|348738|348740|348743|348745|348746|348748|348752|348756|348758|348760|348765|348767|348771|348772|348773|348777|348784|348785|348788|348790|348799|348800|348804|348805|348809|348810|348816|348818|348820|348826|348828|349736|349738|349740|349745|349746|349748|349750|349752|349753|349754|349756|349757|349759|349760|349762|349764|349765|349767|349770|349773|349774|349776|349777|349779|349780|349783|349786|349789|361049|361346|377439|379547|390354|410591|410596|415649|438105|439888|446123|468667|468667|468669|469680|469791|470749|470790|470821|470832|507303|507315|532933|532998|533000|533033|533050|536983|537327|538485|539090|539091|551330|551331|552216|570695|570770|581543|581570|581575|581642|581696|608913|608914|608970|611981|612182|615946|622459|622922|626026|647965|648080|654880|772648|802225|847623|858582|858787|880414|880415|880416|880417|880419|880420|880422|880423|880424|880425|880426|880427|880428|880429|880430|880431|880432|880433|880434|880435|880436|880437|880438|880439|880440|880442|880443|880445|880446|880447|880448|880449|880450|880451|880452|880453|880454|880455|880456|880457|880458|880744|880745|880746|880747|880748|880749|880750|880751|881925|881927|881928|881929|881931|881932|881933|881934|881935|881936|881937|881938|961347|961633|966803|967229|971130|971131|974531", + "upstreamId": "28005|28006|28007|28012|28013|28014|28014|28018|28020|28021|28025|28031|28032|28034|38459|38833|51078|51264|51265|70540|76725|76830|76831|76832|76833|76834|76835|76840|76841|76842|76843|76844|76845|76846|76847|76848|76849|76850|76851|76852|76853|76854|76855|76856|76857|76859|76860|76861|76863|76864|76865|76866|76867|76868|76869|76870|76871|76872|76874|76876|76877|76878|76880|76881|76882|76883|76886|76887|76888|76889|76890|76892|76893|76894|76895|76896|76897|76898|76899|76900|76901|76903|76904|76904|76905|76908|76909|76910|76912|99145|99146|99147|99148|99149|99150|99151|99153|99154|99156|99157|99158|99160|99161|99162|99165|99166|99167|99168|99169|99170|99171|99172|99173|99174|99175|99176|99177|99178|99180|99181|99182|99183|99184|99185|99186|99188|99190|99191|99192|99194|99195|99196|99197|99199|99200|99201|99202|99203|99204|99205|99206|99207|99208|99209|99211|99212|99213|99215|101820|103331|105493|135467|136736|136739|136745|136747|136758|136759|136762|136767|136769|136770|136782|136791|136797|136801|136823|136845|136850|136858|136861|136869|136870|136881|136896|136899|136920|136922|136930|136937|136938|136940|136956|136957|136979|136986|136989|169542|169543|169546|169547|169550|169553|169554|169559|169560|169561|169563|169564|169565|169568|169569|169570|169571|169572|169575|169576|169577|169578|169579|169580|169581|171228|171234|171238|171241|171242|171244|177297|178027|178029|178033|192085|194218|194319|194770|195107|195121|195121|195251|195489|195490|196101|196371|196375|196376|196401|198025|198027|198030|208580|208585|208586|208594|215566|226098|226114|226117|226119|226127|226138|226140|226141|226482|226974|256902|256903|256909|256920|256923|256925|256935|256941|256943|256944|256946|256948|256953|256957|256958|256962|256967|256968|256974|256978|256980|256987|256993|257000|257011|257031|257032|257035|257040|257046|257050|257052|257096|265716|268402|270094|271556|274154|274354|294482|333289|333292|333301|333303|333315|333320|333324|333326|333328|333336|333337|333340|333348|333349|333356|333365|333371|333372|333375|333377|333379|333394|333395|333396|333397|333402|333410|333413|333414|333415|333420|333424|333430|333435|333438|333442|333452|333453|333457|333458|333459|343386|343389|343390|343397|343402|343409|343410|343412|343414|343416|343417|343419|343420|343421|343424|343425|343428|343429|343432|343433|343435|343436|343439|343440|343452|343453|343457|343465|343469|343475|343476|343478|343479|343490|343494|343495|348681|348682|348696|348700|348703|348705|348707|348712|348713|348719|348721|348722|348723|348726|348730|348732|348737|348738|348740|348743|348745|348746|348748|348752|348756|348758|348760|348765|348767|348771|348772|348773|348777|348784|348785|348788|348790|348799|348800|348804|348805|348809|348810|348816|348818|348820|348826|348828|349736|349738|349740|349745|349746|349748|349750|349752|349753|349754|349756|349757|349759|349760|349762|349764|349765|349767|349770|349773|349774|349776|349777|349779|349780|349783|349786|349789|361049|361346|377439|379547|390354|410591|410596|415649|438105|439888|446123|468667|468667|468669|469680|469791|470749|470790|470821|470832|507303|507315|532933|532998|533000|533033|533050|536983|537327|538485|539090|539091|551330|551331|552216|570695|570770|581543|581570|581575|581642|581696|608913|608914|608970|611981|612182|615946|622459|622922|626026|647965|648080|654880|772648|802225|847623|858582|858787|880414|880415|880416|880417|880419|880420|880422|880423|880424|880425|880426|880427|880428|880429|880430|880431|880432|880433|880434|880435|880436|880437|880438|880439|880440|880442|880443|880445|880446|880447|880448|880449|880450|880451|880452|880453|880454|880455|880456|880457|880458|880744|880745|880746|880747|880748|880749|880750|880751|881925|881927|881928|881929|881931|881932|881933|881934|881935|881936|881937|881938|961347|961633|966803|967229|971130|971131|974531", "text": "Central core myopathy" }, { - "baseId": "28014|28015|28023|28026|28027|28028|28029|28030|28033|38459|38833|51078|70540|76892|76904|76904|99145|99146|99147|99148|99149|99150|99153|99154|99156|99157|99158|99160|99161|99162|99165|99166|99167|99168|99169|99170|99171|99172|99174|99175|99176|99177|99178|99180|99181|99183|99184|99185|99186|99188|99190|99191|99192|99194|99195|99196|99197|99199|99200|99201|99202|99203|99204|99205|99206|99207|99208|99209|99213|99215|136736|136739|136747|136758|136759|136762|136767|136769|136770|136782|136791|136797|136800|136801|136823|136845|136846|136858|136861|136867|136869|136870|136881|136896|136899|136920|136922|136927|136930|136930|136937|136938|136940|136956|136979|136989|169542|169543|169546|169547|169550|169553|169554|169559|169561|169563|169564|169565|169568|169570|169571|169572|169575|169576|169577|169578|169579|169581|171228|171229|171234|171236|171241|171242|171244|177297|178027|178029|178033|188764|192085|194218|194319|194770|195107|195121|195121|195251|195489|195490|196101|196371|196376|196388|196401|198021|198022|198027|198030|208580|208585|208586|215566|226098|226114|226117|226119|226126|226127|226129|226138|226140|226141|226974|226974|256902|256903|256923|256927|256935|256941|256943|256946|256953|256957|256962|256967|256968|256974|256978|256980|256985|256993|257011|257031|257040|257046|257050|257052|257096|265716|268109|268402|270094|274154|274354|333289|333292|333303|333315|333324|333326|333328|333336|333337|333340|333348|333349|333356|333365|333372|333377|333379|333394|333395|333396|333397|333402|333415|333424|333430|333438|333457|333458|333459|343397|343402|343409|343410|343412|343414|343416|343417|343419|343421|343424|343428|343429|343433|343436|343439|343452|343457|343465|343469|343478|343490|343494|343495|348681|348682|348696|348700|348703|348705|348707|348712|348719|348721|348722|348723|348726|348730|348732|348743|348745|348746|348748|348752|348756|348760|348767|348771|348772|348773|348784|348785|348788|348790|348799|348800|348804|348805|348809|348810|348816|348818|348820|348826|348828|349736|349740|349745|349746|349748|349750|349752|349754|349759|349760|349762|349765|349767|349770|349773|349774|349776|349777|349780|349783|349786|349789|360414|361049|361346|377439|379547|390354|410578|410591|410596|413513|415649|438105|446123|468667|468667|468669|469680|469738|469791|470195|470698|470790|470832|507303|507315|532913|532927|532933|532998|533033|533050|533355|533390|536983|537327|539090|539091|552217|552218|570695|570770|573075|574949|574950|581435|581465|581543|581570|581575|581642|609148|609151|647965|684786|684802|689022|694407|756962|756965|772648|772655|778371|798752|847574|847620|847623|847635|858779|858782|858783|858784|858786|880414|880415|880416|880417|880418|880419|880420|880421|880422|880423|880424|880425|880426|880427|880428|880429|880430|880431|880432|880433|880434|880435|880436|880437|880438|880439|880440|880441|880442|880443|880444|880445|880446|880447|880448|880449|880450|880451|880452|880453|880454|880455|880456|880457|880458|880743|880744|880745|880746|880747|880748|880749|880750|880751|881925|881926|881927|881928|881929|881930|881931|881932|881933|881934|881935|881936|881937|881938|882880|961347|961633", + "upstreamId": "28014|28015|28023|28026|28027|28028|28029|28030|28033|38459|38833|51078|70540|76892|76904|76904|99145|99146|99147|99148|99149|99150|99153|99154|99156|99157|99158|99160|99161|99162|99165|99166|99167|99168|99169|99170|99171|99172|99174|99175|99176|99177|99178|99180|99181|99183|99184|99185|99186|99188|99190|99191|99192|99194|99195|99196|99197|99199|99200|99201|99202|99203|99204|99205|99206|99207|99208|99209|99213|99215|136736|136739|136747|136758|136759|136762|136767|136769|136770|136782|136791|136797|136800|136801|136823|136845|136846|136858|136861|136867|136869|136870|136881|136896|136899|136920|136922|136927|136930|136930|136937|136938|136940|136956|136979|136989|169542|169543|169546|169547|169550|169553|169554|169559|169561|169563|169564|169565|169568|169570|169571|169572|169575|169576|169577|169578|169579|169581|171228|171229|171234|171236|171241|171242|171244|177297|178027|178029|178033|188764|192085|194218|194319|194770|195107|195121|195121|195251|195489|195490|196101|196371|196376|196388|196401|198021|198022|198027|198030|208580|208585|208586|215566|226098|226114|226117|226119|226126|226127|226129|226138|226140|226141|226974|226974|256902|256903|256923|256927|256935|256941|256943|256946|256953|256957|256962|256967|256968|256974|256978|256980|256985|256993|257011|257031|257040|257046|257050|257052|257096|265716|268109|268402|270094|274154|274354|333289|333292|333303|333315|333324|333326|333328|333336|333337|333340|333348|333349|333356|333365|333372|333377|333379|333394|333395|333396|333397|333402|333415|333424|333430|333438|333457|333458|333459|343397|343402|343409|343410|343412|343414|343416|343417|343419|343421|343424|343428|343429|343433|343436|343439|343452|343457|343465|343469|343478|343490|343494|343495|348681|348682|348696|348700|348703|348705|348707|348712|348719|348721|348722|348723|348726|348730|348732|348743|348745|348746|348748|348752|348756|348760|348767|348771|348772|348773|348784|348785|348788|348790|348799|348800|348804|348805|348809|348810|348816|348818|348820|348826|348828|349736|349740|349745|349746|349748|349750|349752|349754|349759|349760|349762|349765|349767|349770|349773|349774|349776|349777|349780|349783|349786|349789|360414|361049|361346|377439|379547|390354|410578|410591|410596|413513|415649|438105|446123|468667|468667|468669|469680|469738|469791|470195|470698|470790|470832|507303|507315|532913|532927|532933|532998|533033|533050|533355|533390|536983|537327|539090|539091|552217|552218|570695|570770|573075|574949|574950|581435|581465|581543|581570|581575|581642|609148|609151|647965|684786|684802|689022|694407|756962|756965|772648|772655|778371|798752|847574|847620|847623|847635|858779|858782|858783|858784|858786|880414|880415|880416|880417|880418|880419|880420|880421|880422|880423|880424|880425|880426|880427|880428|880429|880430|880431|880432|880433|880434|880435|880436|880437|880438|880439|880440|880441|880442|880443|880444|880445|880446|880447|880448|880449|880450|880451|880452|880453|880454|880455|880456|880457|880458|880743|880744|880745|880746|880747|880748|880749|880750|880751|881925|881926|881927|881928|881929|881930|881931|881932|881933|881934|881935|881936|881937|881938|882880|961347|961633", "text": "Minicore myopathy with external ophthalmoplegia" }, { - "baseId": "28016", + "upstreamId": "28016", "text": "History of neonatal hypotonia" }, { - "baseId": "28016|48983|49142|360837|360838|361092|581713|623603|800785|801079", + "upstreamId": "28016|48983|49142|360837|360838|361092|581713|623603|800785|801079", "text": "Ptosis" }, { - "baseId": "28016", + "upstreamId": "28016", "text": "Sacral agenesis" }, { - "baseId": "28021|28034|28035|38459|38833|51078|99145|99146|99147|99148|99149|99150|99151|99154|99156|99157|99158|99160|99161|99162|99165|99166|99167|99168|99169|99170|99171|99173|99174|99175|99176|99177|99178|99180|99181|99182|99183|99184|99185|99186|99188|99190|99191|99192|99194|99195|99196|99197|99199|99200|99201|99202|99203|99204|99205|99206|99207|99208|99209|99211|99212|99213|99215|136736|136758|136759|136762|136767|136770|136782|136797|136823|136858|136861|136869|136870|136881|136896|136899|136920|136937|136938|136956|136979|136989|169542|169543|169546|169547|169550|169553|169560|169561|169563|169565|169568|169571|169572|169575|169576|169577|169578|169580|169581|171228|171229|171234|171238|171242|178027|178029|178033|192085|194218|194319|194770|195107|195489|195490|196101|196375|196376|196401|198030|208580|208586|208594|215566|226098|226114|226117|226119|226140|226141|256902|256903|256909|256920|256923|256925|256935|256941|256943|256944|256946|256948|256953|256958|256967|256968|256974|256978|256980|256987|257000|257031|257032|257035|257040|257046|257052|257096|265716|268402|270094|271556|274354|333289|333292|333301|333303|333315|333320|333324|333326|333328|333336|333337|333340|333348|333349|333356|333365|333371|333372|333375|333377|333379|333394|333395|333396|333397|333402|333410|333413|333414|333415|333420|333424|333430|333435|333438|333442|333452|333453|333457|333458|333459|343386|343389|343390|343397|343402|343409|343410|343412|343414|343416|343417|343419|343420|343421|343424|343425|343428|343429|343432|343433|343435|343436|343439|343440|343452|343453|343457|343465|343469|343475|343476|343478|343479|343490|343494|343495|348681|348682|348696|348700|348703|348705|348707|348712|348713|348719|348721|348722|348723|348726|348730|348732|348737|348738|348740|348743|348745|348746|348748|348752|348756|348758|348760|348765|348767|348771|348772|348773|348777|348784|348785|348788|348790|348799|348800|348804|348805|348809|348810|348816|348818|348820|348826|348828|349736|349738|349740|349745|349746|349748|349750|349752|349753|349754|349756|349757|349759|349760|349762|349764|349765|349767|349770|349773|349774|349776|349777|349779|349780|349783|349786|349789", + "upstreamId": "28021|28034|28035|38459|38833|51078|99145|99146|99147|99148|99149|99150|99151|99154|99156|99157|99158|99160|99161|99162|99165|99166|99167|99168|99169|99170|99171|99173|99174|99175|99176|99177|99178|99180|99181|99182|99183|99184|99185|99186|99188|99190|99191|99192|99194|99195|99196|99197|99199|99200|99201|99202|99203|99204|99205|99206|99207|99208|99209|99211|99212|99213|99215|136736|136758|136759|136762|136767|136770|136782|136797|136823|136858|136861|136869|136870|136881|136896|136899|136920|136937|136938|136956|136979|136989|169542|169543|169546|169547|169550|169553|169560|169561|169563|169565|169568|169571|169572|169575|169576|169577|169578|169580|169581|171228|171229|171234|171238|171242|178027|178029|178033|192085|194218|194319|194770|195107|195489|195490|196101|196375|196376|196401|198030|208580|208586|208594|215566|226098|226114|226117|226119|226140|226141|256902|256903|256909|256920|256923|256925|256935|256941|256943|256944|256946|256948|256953|256958|256967|256968|256974|256978|256980|256987|257000|257031|257032|257035|257040|257046|257052|257096|265716|268402|270094|271556|274354|333289|333292|333301|333303|333315|333320|333324|333326|333328|333336|333337|333340|333348|333349|333356|333365|333371|333372|333375|333377|333379|333394|333395|333396|333397|333402|333410|333413|333414|333415|333420|333424|333430|333435|333438|333442|333452|333453|333457|333458|333459|343386|343389|343390|343397|343402|343409|343410|343412|343414|343416|343417|343419|343420|343421|343424|343425|343428|343429|343432|343433|343435|343436|343439|343440|343452|343453|343457|343465|343469|343475|343476|343478|343479|343490|343494|343495|348681|348682|348696|348700|348703|348705|348707|348712|348713|348719|348721|348722|348723|348726|348730|348732|348737|348738|348740|348743|348745|348746|348748|348752|348756|348758|348760|348765|348767|348771|348772|348773|348777|348784|348785|348788|348790|348799|348800|348804|348805|348809|348810|348816|348818|348820|348826|348828|349736|349738|349740|349745|349746|349748|349750|349752|349753|349754|349756|349757|349759|349760|349762|349764|349765|349767|349770|349773|349774|349776|349777|349779|349780|349783|349786|349789", "text": "Neuromuscular disease, congenital, with uniform type 1 fiber" }, { - "baseId": "28022|28023|136794|581590", + "upstreamId": "28022|28023|136794|581590", "text": "Central core disease, autosomal recessive" }, { - "baseId": "28023|136775|136776|136985", + "upstreamId": "28023|136775|136776|136985", "text": "volatile anesthetics response - Toxicity/ADR" }, { - "baseId": "28028|39430|99791|360798|360799|360810|360882|513914", + "upstreamId": "28028|39430|99791|360798|360799|360810|360882|513914", "text": "EMG abnormality" }, { - "baseId": "28036|28037|28204", + "upstreamId": "28036|28037|28204", "text": "Retinitis pigmentosa 7, digenic" }, { - "baseId": "28037|28201|28203|28211|28217|28218|28219|28220|104587|192225", + "upstreamId": "28037|28201|28203|28211|28217|28218|28219|28220|104587|192225", "text": "Retinitis pigmentosa 7" }, { - "baseId": "28038|28039|94532|106497", + "upstreamId": "28038|28039|94532|106497", "text": "Diamond-Blackfan anemia 4" }, { - "baseId": "28040|28041|28042|289809|290574|290575|293655|294198|294202|294207|294208|451802|519049|559413|559415|562637|651033|798527|819361|819362|851554|888590|888591|931873", + "upstreamId": "28040|28041|28042|289809|290574|290575|293655|294198|294202|294207|294208|451802|519049|559413|559415|562637|651033|798527|819361|819362|851554|888590|888591|931873", "text": "Diamond-Blackfan anemia 5" }, { - "baseId": "28043|28044|678173|678174|678175|678176|678177|678178|678179|678180|678181|678182|678183|678184|678185|678186|678187|678188|678189|678190|678191|678192|678193|678194|678195|678196|678197|678198|678199|678200|678201|678202|678203|678204|678205|678206|678207|678208|678209|678210|678211|678212|678213|678214|678215|678216|678217|678218|678219|678220|678221|678222|678223|678224|678225|678226|678227|678228|678229|678230|678231|678232|678233|678234|678235|678236|678237|678238|678239|678240|678241|678242|678243|678244|678245|678246|678247|678248|678249|678250|678251|678252|678253|678254|678255|678256|678257|678258|678259|678260|678261|678262|678263|678264|678265|678266|678267|678268|678269|678270|678271|678272|678273|678274|678275|678276|678277|678278|678279|678280|678281|678282|678283|678284|678285|678286|678287|678288|678289|678290|678291|678292|678293|678294|678295|678296|678297|678298|678299|678300|678301|678302|678303|678304|678305|678306|678307|678308|678309|678310|678311|678312|678313|678314|678315|678316|678317|678318|678319|678320|678321|678322|678323|678324|678325|678326|678327|678328|678329|678330|678331|678332|678333|678334|678335|678336|678337|678338|678339|678340|678341|678342|678343|678344|678345|678346|678347|678348|678349|678350|678351|678352|678353|678354|678355|678356|678357|678358|678359|678360|678361|678362|678363|678364|678365|678366|678367|678368|678369|678370|678371|678372|678373|678374|678375|678376|678377|678378|678379|678380|678381|678382|678383|678384|678385|678386|678387|678388|678389|678390|678391|678392|678393|678394|678395|678396|678397|678398|678399|678400|678401|678402|678403|678404|678405|678406|678407|678408|678409|678410|678411|678412|678413|678414|678415|678416|678417|678418|678419|678420|678421|678422|678423|678424|678425|678426|678427|678428|678429|678430|678431|678432|678433|678434|678435|678436|678437|678438|678439|678440|678441|678442|678443|678444|678445|678446|678447|678448|678449|678450|678451|678452|678453|678454|678455|678456|678457|678458|678459|678460|678461|678462|678463|678464|678465|678466|678467|678468|678469|678470|678471|678472|678473|678474|678475|678476|678477|678478|678479|678480|678481|678482|678483|678484|678485|678486|678487|678488|678489|678490|678491|678492|678493|678494|678495|678496|678497|678498|678499|678500|678501|678502|678503|678504|678505|678506|678507|678508|678509|678510|678511|678512|678513|678514|678515|678516|678517|678518|678519|678520|678521|678522|678523|678524|678525|678526|678527|678528|678529|678530|678531|678532|678533|678534|678535|678536|678537|678538|678539|678540|678541|678542|678543|678544|678545|678546|678547|678548|678549|678550|678551|678552|678553|678554|678555|678556|678557|678558|678559|678560|678561|678562|678563|678564|678565|678566|678567|678568|678569|678570|678571|678572|678573|678574|678575|678576|678577|678578|678579|678580|678581|678582|678583|678584|678585|678586|678587|678588|678589|678590|678591|678592|678593|678594|678595|678596|678597|678598|678599|678600|678601|678602|678603|678604|678605|678606|678607|678608|678609|678610|678611|678612|678613|678614|678615|678616|678617|678618|678619|678620|678621|678622|678623|678624|678625|678626|678627|678628|678629|678630|678631|678632|678633|678634|678635|678636|678637|678638|678639|678640|678641|678642|678643|678644|678645|678646|678647|678648|678649|678650|678651|678652|678653|678654|678655|678656|678657|678658|678659|678660|678661|678662|678663|678664|678665|678666|678667|678668|678669|678670|678671|678672|678673|678674|678675|678676|678677|678678|678679|678680|678681|678682|678683|678684|678685|678686|678687|678688|678689|678690|678691|678692|678693|678694|678695|678696|678697|678698|678699|678700|678701|678702|678703|678704|678705|678706|678707|678708|678709|678710|678711|678712|678713|678714|678715|678716|678717|678718|678719|678720|678721|678722|678723|678724|678725|678726|678727|678728|678729|678730|678731|678732|678733|678734|678735|678736|678737|678738|678739|678740|678741|678742|678743|678744|678745|678746|678747|678748|678749|678750|678751|678752|678753|678754|678755|678756|678757|678758|678759|678760|678761|678762|678763|678764|678765|678766|678767|678768|678769|678770|678771|678772|678773|678774|678775|678776|678777|678778|678779|678780|678781|678782|678783|678784|678785|678786|678787|678788|678789|678790|678791|678792|678793|678794|678795|678796|678797|678798|678799|678800|678801|678802|678803|678804|678805|678806|678807|678808|678809|678810|678811|678812|678813|678814|678815|678816|678817|678818|678819|678820|678821|678822|678823|678824|678825|678826|678827|678828|678829|678830|678831|678832|678833|678834|678835|678836|678837|678838|678839|678840|678841|678842|678843|678844|678845|678846|678847|678848|678849|678850|678851|678852|678853|678854|678855|678856|678857|678858|678859|678860|678861|678862|678863|678864|678865|678866|678867|678868|678869|678870|678871|678872|678873|678874|678875|678876|678877|678878|678879|678880|678881|678882|678883|678884|678885|678886|678887|678888|678889|678890|678891|678892|678893|678894|678895|678896|678897|678898|678899|678900|678901|678902|678903|678904|678905|678906|678907|678908|678909|678910|678911|678912|678913|678914|678915|678916|678917|678918|678919|678920|678921|678922|678923|678924|678925|678926|678927|678928|678929|678930|678931|678932|678933|678934", + "upstreamId": "28043|28044|678173|678174|678175|678176|678177|678178|678179|678180|678181|678182|678183|678184|678185|678186|678187|678188|678189|678190|678191|678192|678193|678194|678195|678196|678197|678198|678199|678200|678201|678202|678203|678204|678205|678206|678207|678208|678209|678210|678211|678212|678213|678214|678215|678216|678217|678218|678219|678220|678221|678222|678223|678224|678225|678226|678227|678228|678229|678230|678231|678232|678233|678234|678235|678236|678237|678238|678239|678240|678241|678242|678243|678244|678245|678246|678247|678248|678249|678250|678251|678252|678253|678254|678255|678256|678257|678258|678259|678260|678261|678262|678263|678264|678265|678266|678267|678268|678269|678270|678271|678272|678273|678274|678275|678276|678277|678278|678279|678280|678281|678282|678283|678284|678285|678286|678287|678288|678289|678290|678291|678292|678293|678294|678295|678296|678297|678298|678299|678300|678301|678302|678303|678304|678305|678306|678307|678308|678309|678310|678311|678312|678313|678314|678315|678316|678317|678318|678319|678320|678321|678322|678323|678324|678325|678326|678327|678328|678329|678330|678331|678332|678333|678334|678335|678336|678337|678338|678339|678340|678341|678342|678343|678344|678345|678346|678347|678348|678349|678350|678351|678352|678353|678354|678355|678356|678357|678358|678359|678360|678361|678362|678363|678364|678365|678366|678367|678368|678369|678370|678371|678372|678373|678374|678375|678376|678377|678378|678379|678380|678381|678382|678383|678384|678385|678386|678387|678388|678389|678390|678391|678392|678393|678394|678395|678396|678397|678398|678399|678400|678401|678402|678403|678404|678405|678406|678407|678408|678409|678410|678411|678412|678413|678414|678415|678416|678417|678418|678419|678420|678421|678422|678423|678424|678425|678426|678427|678428|678429|678430|678431|678432|678433|678434|678435|678436|678437|678438|678439|678440|678441|678442|678443|678444|678445|678446|678447|678448|678449|678450|678451|678452|678453|678454|678455|678456|678457|678458|678459|678460|678461|678462|678463|678464|678465|678466|678467|678468|678469|678470|678471|678472|678473|678474|678475|678476|678477|678478|678479|678480|678481|678482|678483|678484|678485|678486|678487|678488|678489|678490|678491|678492|678493|678494|678495|678496|678497|678498|678499|678500|678501|678502|678503|678504|678505|678506|678507|678508|678509|678510|678511|678512|678513|678514|678515|678516|678517|678518|678519|678520|678521|678522|678523|678524|678525|678526|678527|678528|678529|678530|678531|678532|678533|678534|678535|678536|678537|678538|678539|678540|678541|678542|678543|678544|678545|678546|678547|678548|678549|678550|678551|678552|678553|678554|678555|678556|678557|678558|678559|678560|678561|678562|678563|678564|678565|678566|678567|678568|678569|678570|678571|678572|678573|678574|678575|678576|678577|678578|678579|678580|678581|678582|678583|678584|678585|678586|678587|678588|678589|678590|678591|678592|678593|678594|678595|678596|678597|678598|678599|678600|678601|678602|678603|678604|678605|678606|678607|678608|678609|678610|678611|678612|678613|678614|678615|678616|678617|678618|678619|678620|678621|678622|678623|678624|678625|678626|678627|678628|678629|678630|678631|678632|678633|678634|678635|678636|678637|678638|678639|678640|678641|678642|678643|678644|678645|678646|678647|678648|678649|678650|678651|678652|678653|678654|678655|678656|678657|678658|678659|678660|678661|678662|678663|678664|678665|678666|678667|678668|678669|678670|678671|678672|678673|678674|678675|678676|678677|678678|678679|678680|678681|678682|678683|678684|678685|678686|678687|678688|678689|678690|678691|678692|678693|678694|678695|678696|678697|678698|678699|678700|678701|678702|678703|678704|678705|678706|678707|678708|678709|678710|678711|678712|678713|678714|678715|678716|678717|678718|678719|678720|678721|678722|678723|678724|678725|678726|678727|678728|678729|678730|678731|678732|678733|678734|678735|678736|678737|678738|678739|678740|678741|678742|678743|678744|678745|678746|678747|678748|678749|678750|678751|678752|678753|678754|678755|678756|678757|678758|678759|678760|678761|678762|678763|678764|678765|678766|678767|678768|678769|678770|678771|678772|678773|678774|678775|678776|678777|678778|678779|678780|678781|678782|678783|678784|678785|678786|678787|678788|678789|678790|678791|678792|678793|678794|678795|678796|678797|678798|678799|678800|678801|678802|678803|678804|678805|678806|678807|678808|678809|678810|678811|678812|678813|678814|678815|678816|678817|678818|678819|678820|678821|678822|678823|678824|678825|678826|678827|678828|678829|678830|678831|678832|678833|678834|678835|678836|678837|678838|678839|678840|678841|678842|678843|678844|678845|678846|678847|678848|678849|678850|678851|678852|678853|678854|678855|678856|678857|678858|678859|678860|678861|678862|678863|678864|678865|678866|678867|678868|678869|678870|678871|678872|678873|678874|678875|678876|678877|678878|678879|678880|678881|678882|678883|678884|678885|678886|678887|678888|678889|678890|678891|678892|678893|678894|678895|678896|678897|678898|678899|678900|678901|678902|678903|678904|678905|678906|678907|678908|678909|678910|678911|678912|678913|678914|678915|678916|678917|678918|678919|678920|678921|678922|678923|678924|678925|678926|678927|678928|678929|678930|678931|678932|678933|678934", "text": "Prostate cancer, hereditary, 1" }, { - "baseId": "28046|28047|287533|287536|287537|287539|288295|288302|288303|288313|288314|291093|291094|291261|291267|291268|291269|291271|622953|885651|885652|885653|885654|885655|885656|885657|885658|885659|885660|885661|885662|885663|885664|885665|885666|916884|917429|964654", + "upstreamId": "28046|28047|287533|287536|287537|287539|288295|288302|288303|288313|288314|291093|291094|291261|291267|291268|291269|291271|622953|885651|885652|885653|885654|885655|885656|885657|885658|885659|885660|885661|885662|885663|885664|885665|885666|916884|917429|964654", "text": "Deficiency of ribose-5-phosphate isomerase" }, { - "baseId": "28048|28049|28050|28051|50332|512938|623880|858596|858597|858598|858599|858600|858601|858602|858603|858604|858605|858606|858607|858608|858609|858610|858611|972477", + "upstreamId": "28048|28049|28050|28051|50332|512938|623880|858596|858597|858598|858599|858600|858601|858602|858603|858604|858605|858606|858607|858608|858609|858610|858611|972477", "text": "Oguchi disease 2" }, { - "baseId": "28052|28052|28053|28054|28055|28056|28057|28058|28059|28060|28061|28062|28063|28064|28065|28066|28067|28068|28069|28070|28071|28072|28073|28074|28076|28077|28078|28079|28081|28082|28085|28086|28087|28088|28089|28090|28091|28092|28094|28095|152797|193443|404762|431666|486336|585498|613629|613630|613631|613632|613633|613634|613635|613636|613637|613638|622873|623273|623832|790329|790330|790331|790332|790333|799312|799313|800488|815978|827534|827535|851025|856279|856280|856283|856284|856288|856289|856293|943326|970753|970754|972851|972852|972853|972854|972855|972856|972857|972859|972860|972861|972862|972863|972864|972865|972866|972867|972868|972870|972871|972872|972873|972874", + "upstreamId": "28052|28052|28053|28054|28055|28056|28057|28058|28059|28060|28061|28062|28063|28064|28065|28066|28067|28068|28069|28070|28071|28072|28073|28074|28076|28077|28078|28079|28081|28082|28085|28086|28087|28088|28089|28090|28091|28092|28094|28095|152797|193443|404762|431666|486336|585498|613629|613630|613631|613632|613633|613634|613635|613636|613637|613638|622873|623273|623832|790329|790330|790331|790332|790333|799312|799313|800488|815978|827534|827535|851025|856279|856280|856283|856284|856288|856289|856293|943326|970753|970754|972851|972852|972853|972854|972855|972856|972857|972859|972860|972861|972862|972863|972864|972865|972866|972867|972868|972870|972871|972872|972873|972874", "text": "Retinitis pigmentosa 4" }, { - "baseId": "28052|28083|28084|28093|152800|190277|250919|250920|250921|250922|288724|288725|288729|288730|288733|288736|288745|288748|288749|289456|289458|289463|289469|289484|289489|289490|289493|289494|292512|292515|292516|292519|292520|292530|292533|292534|292535|292685|292689|292695|292710|292724|292732|292733|292734|292736|292737|404762|585498|620104|747971|827540|887948|887949|887950|887951|887952|887953|887954|887955|887956|887957|887958|887959|887960|887961|887962|887963|887964|887965|887966|887967|887968|887969|887970|887971|887972|887973|887974|891564|891565|972859|972869", + "upstreamId": "28052|28083|28084|28093|152800|190277|250919|250920|250921|250922|288724|288725|288729|288730|288733|288736|288745|288748|288749|289456|289458|289463|289469|289484|289489|289490|289493|289494|292512|292515|292516|292519|292520|292530|292533|292534|292535|292685|292689|292695|292710|292724|292732|292733|292734|292736|292737|404762|585498|620104|747971|827540|887948|887949|887950|887951|887952|887953|887954|887955|887956|887957|887958|887959|887960|887961|887962|887963|887964|887965|887966|887967|887968|887969|887970|887971|887972|887973|887974|891564|891565|972859|972869", "text": "Congenital stationary night blindness, autosomal dominant 1" }, { - "baseId": "28053|513929|514148|641434", + "upstreamId": "28053|513929|514148|641434", "text": "Nyctalopia" }, { - "baseId": "28053|40114|40115", + "upstreamId": "28053|40114|40115", "text": "Peripheral visual field loss" }, { - "baseId": "28053|104561|513966|513994", + "upstreamId": "28053|104561|513966|513994", "text": "Blurred vision" }, { - "baseId": "28067|28136|28138|28139|28140|189092|623000|800526|800579", + "upstreamId": "28067|28136|28138|28139|28140|189092|623000|800526|800579", "text": "Retinitis punctata albescens" }, { - "baseId": "28075|28085|38830", + "upstreamId": "28075|28085|38830", "text": "Retinitis pigmentosa 4, autosomal recessive" }, { - "baseId": "28096|28097|28099|28100|28101|28103|28104|28105", + "upstreamId": "28096|28097|28099|28100|28101|28103|28104|28105", "text": "Rh-null, regulator type" }, { - "baseId": "28098|28102", + "upstreamId": "28098|28102", "text": "Rh mod blood group phenotype" }, { - "baseId": "28106|28107|49861|919305|920289|964845", + "upstreamId": "28106|28107|49861|919305|920289|964845", "text": "Retinal dystrophy, iris coloboma, and comedogenic acne syndrome" }, { - "baseId": "28108|28109|28110|28111|28112|28113|28114|28115|28116|28119|28120|28121|28122|28123|28124|28125|28126|28126|28127|28128|28129|28130|28131|28132|28133|28134|28135|46756|50122|50123|50124|50178|98746|98749|98750|98751|98752|132294|132295|132296|132297|132298|132299|132300|132301|132302|132303|132304|132305|132306|132307|132308|132309|132310|132311|132312|132313|132314|132315|132316|132317|132319|132320|132321|132322|132323|132324|132325|132326|132328|132329|132330|132331|132332|132333|132334|132335|132336|132337|132338|132339|132340|132341|132342|132342|132343|132344|132345|132346|132347|132348|132349|132350|132351|132352|132353|132354|132355|138846|138854|138857|138858|138859|138860|138861|138862|138863|138864|143199|143200|151639|151676|178002|190247|213176|222613|239609|241741|241742|241743|241744|241746|241747|241748|241749|241750|241751|241752|241753|241754|241755|241756|241757|241759|241760|241761|241762|241855|247090|254855|254856|266488|269797|319912|319913|319914|319918|319919|319921|319922|319926|328435|328436|328437|328444|328447|328448|328449|328451|328452|328453|328455|328469|328470|334886|334891|334893|334899|334900|334919|334926|334933|334934|334935|334938|336777|336780|336789|336792|336793|336799|336802|336803|336804|336813|336818|363208|373551|390037|392722|399102|399427|399429|399431|399433|399434|399436|399441|399451|399454|399468|399469|399471|399474|399479|399482|399483|399486|399505|399508|399509|399513|399523|399524|399528|399529|399538|399539|399541|399547|399549|399551|399553|399556|399557|399559|399574|399611|399978|399984|399999|400002|400007|400010|400013|400015|400017|400027|400034|400042|400190|400193|400204|400209|400210|400212|409032|420503|420504|420513|420514|420522|420523|420527|420530|420532|420534|420535|420542|420546|420553|420560|420575|420582|420585|420586|434948|462855|462908|462915|462915|462916|462917|462918|462920|462922|462924|462925|462929|462933|462938|462942|462944|462945|462953|462955|462958|462959|463274|463279|463279|463298|463301|463304|463310|463317|463325|463326|463336|463343|463344|463349|463351|463361|463363|463366|463437|463632|463639|463654|463655|463656|463657|463669|463672|463675|463680|463684|463685|463691|463693|463694|463700|463704|463855|463858|463864|463870|463871|463875|463879|463882|463886|463892|463892|463896|463897|463899|463901|463903|463905|463907|463913|463922|463924|477005|477013|477018|477274|477279|477622|477624|477627|477637|487737|487738|505190|514031|527442|527719|527722|527738|527746|527748|527752|527753|527758|527764|527766|527770|527772|527773|527776|527778|527780|527782|527785|527786|527787|527788|527790|527792|527798|527800|527803|527806|527808|527813|528083|528085|528090|528097|528099|528102|528105|528109|528113|528115|528121|528123|528126|528129|528138|528146|528148|528275|528282|528292|528296|528298|528302|528303|528304|528307|528310|565827|566124|566125|566130|566132|566135|566139|566144|566146|566148|566149|566160|566161|566163|566165|566167|567580|567583|567587|567592|567595|567596|567612|567613|567615|567621|567638|567640|567655|567660|567665|567666|567670|567673|567679|567688|567692|567706|567709|567714|567718|567721|568222|568225|568551|568552|568554|568556|568558|568559|568561|568562|568568|568568|568575|568576|568581|568583|568586|568587|568589|568596|568598|568600|568602|568604|568610|568611|568613|568614|572492|572494|572496|572499|572506|572510|572516|572525|572526|572532|572537|572538|572539|572548|572549|572550|572551|572555|572567|572573|575924|575925|575926|575927|575928|575929|581783|581784|581785|581786|612001|612005|612006|612018|612019|623315|623316|641945|641946|641947|641948|641949|641950|641951|641952|641953|641954|641955|641956|641957|641958|641959|641960|641961|641962|641963|641964|641965|641966|641967|641968|641969|641970|641971|641972|641973|641974|641975|641976|641977|641978|641979|641980|641981|641982|641983|641984|641985|641986|641987|641988|641989|641990|641991|641992|641993|641994|641995|641996|641997|641998|641999|642000|642001|642002|642003|642004|642005|642006|642007|642008|642009|642010|642011|642012|642013|642014|642015|642016|642017|652281|652293|652295|652364|652374|652396|652401|652402|652514|652533|652538|652540|652793|652797|652830|652838|684419|688171|688172|688173|688174|688175|688176|690067|690068|693383|693385|693386|693388|693389|693390|693392|695600|702703|702704|702705|702706|702708|730922|739062|739063|744985|769575|769581|776223|778150|779608|779678|784605|784607|784608|784609|784610|784611|784613|787857|791346|791347|791348|791349|791350|791351|791352|791353|791354|791355|791356|791357|791358|791359|791360|791361|791362|791363|791364|791365|791366|791367|791368|791369|791370|791371|791372|791373|791374|811827|811834|811836|811838|811840|811841|811848|811852|811864|811866|811870|811873|811882|811891|811900|815581|815582|820569|820570|820571|820572|820573|820574|820575|820576|820577|820578|820579|820580|820581|820582|840894|840895|840896|840897|840898|840899|840900|840901|840902|840903|840904|840905|840906|840907|840908|840909|840910|840911|840912|840913|840914|840915|840916|840917|840918|840919|840920|840921|840922|840923|840924|840925|840926|840927|840928|840929|840930|840931|840932|840933|840934|840935|840936|840937|840938|840939|840940|840941|840942|840943|840944|840945|840946|840947|840948|840949|840950|840951|840952|840953|840954|840955|840956|840957|840958|840959|840960|840961|840962|840963|840964|840965|851531|851533|851535|851537|851973|851975|852541|852542|852718|852719|852721|871383|871384|871385|871386|871387|871388|871389|871390|871391|871392|871393|871394|871395|871396|871397|872343|872344|872345|920323|920324|920325|926921|926922|926923|926924|926925|926926|926927|926928|926929|926930|926931|926932|926933|926934|926935|926936|926937|926938|936447|936448|936449|936450|936451|936452|936453|936454|936455|936456|936457|936458|936459|936460|936461|936462|936463|936464|936465|936466|936467|936468|936469|936470|936471|936472|936473|936474|940286|940287|940288|940289|940290|941052|941053|941054|948372|948373|948374|948375|948376|948377|948378|948379|948380|948381|948382|948383|948384|948385|948386|948387|948388|948389|948390|948391|948392|948393|948394|948395|948396|948397|957108|957109|957110|957111|957112|957113|960072|960073|960798|966602|966603|966604|966605|966606|966607|983560|983561|983562", + "upstreamId": "28108|28109|28110|28111|28112|28113|28114|28115|28116|28119|28120|28121|28122|28123|28124|28125|28126|28126|28127|28128|28129|28130|28131|28132|28133|28134|28135|46756|50122|50123|50124|50178|98746|98749|98750|98751|98752|132294|132295|132296|132297|132298|132299|132300|132301|132302|132303|132304|132305|132306|132307|132308|132309|132310|132311|132312|132313|132314|132315|132316|132317|132319|132320|132321|132322|132323|132324|132325|132326|132328|132329|132330|132331|132332|132333|132334|132335|132336|132337|132338|132339|132340|132341|132342|132342|132343|132344|132345|132346|132347|132348|132349|132350|132351|132352|132353|132354|132355|138846|138854|138857|138858|138859|138860|138861|138862|138863|138864|143199|143200|151639|151676|178002|190247|213176|222613|239609|241741|241742|241743|241744|241746|241747|241748|241749|241750|241751|241752|241753|241754|241755|241756|241757|241759|241760|241761|241762|241855|247090|254855|254856|266488|269797|319912|319913|319914|319918|319919|319921|319922|319926|328435|328436|328437|328444|328447|328448|328449|328451|328452|328453|328455|328469|328470|334886|334891|334893|334899|334900|334919|334926|334933|334934|334935|334938|336777|336780|336789|336792|336793|336799|336802|336803|336804|336813|336818|363208|373551|390037|392722|399102|399427|399429|399431|399433|399434|399436|399441|399451|399454|399468|399469|399471|399474|399479|399482|399483|399486|399505|399508|399509|399513|399523|399524|399528|399529|399538|399539|399541|399547|399549|399551|399553|399556|399557|399559|399574|399611|399978|399984|399999|400002|400007|400010|400013|400015|400017|400027|400034|400042|400190|400193|400204|400209|400210|400212|409032|420503|420504|420513|420514|420522|420523|420527|420530|420532|420534|420535|420542|420546|420553|420560|420575|420582|420585|420586|434948|462855|462908|462915|462915|462916|462917|462918|462920|462922|462924|462925|462929|462933|462938|462942|462944|462945|462953|462955|462958|462959|463274|463279|463279|463298|463301|463304|463310|463317|463325|463326|463336|463343|463344|463349|463351|463361|463363|463366|463437|463632|463639|463654|463655|463656|463657|463669|463672|463675|463680|463684|463685|463691|463693|463694|463700|463704|463855|463858|463864|463870|463871|463875|463879|463882|463886|463892|463892|463896|463897|463899|463901|463903|463905|463907|463913|463922|463924|477005|477013|477018|477274|477279|477622|477624|477627|477637|487737|487738|505190|514031|527442|527719|527722|527738|527746|527748|527752|527753|527758|527764|527766|527770|527772|527773|527776|527778|527780|527782|527785|527786|527787|527788|527790|527792|527798|527800|527803|527806|527808|527813|528083|528085|528090|528097|528099|528102|528105|528109|528113|528115|528121|528123|528126|528129|528138|528146|528148|528275|528282|528292|528296|528298|528302|528303|528304|528307|528310|565827|566124|566125|566130|566132|566135|566139|566144|566146|566148|566149|566160|566161|566163|566165|566167|567580|567583|567587|567592|567595|567596|567612|567613|567615|567621|567638|567640|567655|567660|567665|567666|567670|567673|567679|567688|567692|567706|567709|567714|567718|567721|568222|568225|568551|568552|568554|568556|568558|568559|568561|568562|568568|568568|568575|568576|568581|568583|568586|568587|568589|568596|568598|568600|568602|568604|568610|568611|568613|568614|572492|572494|572496|572499|572506|572510|572516|572525|572526|572532|572537|572538|572539|572548|572549|572550|572551|572555|572567|572573|575924|575925|575926|575927|575928|575929|581783|581784|581785|581786|612001|612005|612006|612018|612019|623315|623316|641945|641946|641947|641948|641949|641950|641951|641952|641953|641954|641955|641956|641957|641958|641959|641960|641961|641962|641963|641964|641965|641966|641967|641968|641969|641970|641971|641972|641973|641974|641975|641976|641977|641978|641979|641980|641981|641982|641983|641984|641985|641986|641987|641988|641989|641990|641991|641992|641993|641994|641995|641996|641997|641998|641999|642000|642001|642002|642003|642004|642005|642006|642007|642008|642009|642010|642011|642012|642013|642014|642015|642016|642017|652281|652293|652295|652364|652374|652396|652401|652402|652514|652533|652538|652540|652793|652797|652830|652838|684419|688171|688172|688173|688174|688175|688176|690067|690068|693383|693385|693386|693388|693389|693390|693392|695600|702703|702704|702705|702706|702708|730922|739062|739063|744985|769575|769581|776223|778150|779608|779678|784605|784607|784608|784609|784610|784611|784613|787857|791346|791347|791348|791349|791350|791351|791352|791353|791354|791355|791356|791357|791358|791359|791360|791361|791362|791363|791364|791365|791366|791367|791368|791369|791370|791371|791372|791373|791374|811827|811834|811836|811838|811840|811841|811848|811852|811864|811866|811870|811873|811882|811891|811900|815581|815582|820569|820570|820571|820572|820573|820574|820575|820576|820577|820578|820579|820580|820581|820582|840894|840895|840896|840897|840898|840899|840900|840901|840902|840903|840904|840905|840906|840907|840908|840909|840910|840911|840912|840913|840914|840915|840916|840917|840918|840919|840920|840921|840922|840923|840924|840925|840926|840927|840928|840929|840930|840931|840932|840933|840934|840935|840936|840937|840938|840939|840940|840941|840942|840943|840944|840945|840946|840947|840948|840949|840950|840951|840952|840953|840954|840955|840956|840957|840958|840959|840960|840961|840962|840963|840964|840965|851531|851533|851535|851537|851973|851975|852541|852542|852718|852719|852721|871383|871384|871385|871386|871387|871388|871389|871390|871391|871392|871393|871394|871395|871396|871397|872343|872344|872345|920323|920324|920325|926921|926922|926923|926924|926925|926926|926927|926928|926929|926930|926931|926932|926933|926934|926935|926936|926937|926938|936447|936448|936449|936450|936451|936452|936453|936454|936455|936456|936457|936458|936459|936460|936461|936462|936463|936464|936465|936466|936467|936468|936469|936470|936471|936472|936473|936474|940286|940287|940288|940289|940290|941052|941053|941054|948372|948373|948374|948375|948376|948377|948378|948379|948380|948381|948382|948383|948384|948385|948386|948387|948388|948389|948390|948391|948392|948393|948394|948395|948396|948397|957108|957109|957110|957111|957112|957113|960072|960073|960798|966602|966603|966604|966605|966606|966607|983560|983561|983562", "text": "Retinoblastoma" }, { - "baseId": "28126|185345", + "upstreamId": "28126|185345", "text": "Vulvar adenocarcinoma of mammary gland type" }, { - "baseId": "28129", + "upstreamId": "28129", "text": "Retinoblastoma, trilateral" }, { - "baseId": "28137|28138|98754|194294|265976|268054|323448|323451|323456|323458|323459|323460|323461|323472|323473|333147|333149|333151|333153|333160|333162|333163|339985|339987|339991|339993|339996|339999|341371|341373|341378|341381|341382|341384|341387|726328|874211|874212|874213|874214|874215|874216|874217|874218|874219|874220|874221|874222|874223|874224|876583|876584|876585", + "upstreamId": "28137|28138|98754|194294|265976|268054|323448|323451|323456|323458|323459|323460|323461|323472|323473|333147|333149|333151|333153|333160|333162|333163|339985|339987|339991|339993|339996|339999|341371|341373|341378|341381|341382|341384|341387|726328|874211|874212|874213|874214|874215|874216|874217|874218|874219|874220|874221|874222|874223|874224|876583|876584|876585", "text": "Newfoundland rod-cone dystrophy" }, { - "baseId": "28139|189092", + "upstreamId": "28139|189092", "text": "Bothnia retinal dystrophy" }, { - "baseId": "28139|28140|495363", + "upstreamId": "28139|28140|495363", "text": "RLBP1-Related Disorders" }, { - "baseId": "28141", + "upstreamId": "28141", "text": "Retinitis pigmentosa 57" }, { - "baseId": "28142|28143|28144|28145|28147|28148|177924|214454|226524|226525|227273|293979|367986|431675|513054|513951|551536|551537|551538|551539|551540|551541|623839|672057|918902|918903|920204|974513|974514", + "upstreamId": "28142|28143|28144|28145|28147|28148|177924|214454|226524|226525|227273|293979|367986|431675|513054|513951|551536|551537|551538|551539|551540|551541|623839|672057|918902|918903|920204|974513|974514", "text": "Retinitis pigmentosa 40" }, { - "baseId": "28146|98674|98675|98676|106440|142341|142342|142343|142347|177922|190238|190239|192618|194288|194815|260350|266047|266049|271310|272984|293969|293970|293971|293978|293979|293980|293981|293985|293986|295264|295265|295273|295274|295279|295342|295348|295374|295375|295378|295379|295380|295386|295392|295395|295399|295400|295401|295404|295406|295407|295408|295416|299055|299091|299092|299102|299103|299104|299112|299115|299117|299125|299139|299140|299141|299144|299145|299151|299152|299153|299156|299164|299172|299173|299186|299187|299192|299193|299198|299199|299202|299205|299208|299210|299231|299233|367986|734694|764606|829437|829458|829459|851826|891998|891999|892000|892001|892002|892003|892004|892005|892051|892052|892053|892054|892055|892056|892057|892058|892059|892060|892061|892062|892063|892064|892065|892066|892067|892068|895986|895987|895988|895989|895990", + "upstreamId": "28146|98674|98675|98676|106440|142341|142342|142343|142347|177922|190238|190239|192618|194288|194815|260350|266047|266049|271310|272984|293969|293970|293971|293978|293979|293980|293981|293985|293986|295264|295265|295273|295274|295279|295342|295348|295374|295375|295378|295379|295380|295386|295392|295395|295399|295400|295401|295404|295406|295407|295408|295416|299055|299091|299092|299102|299103|299104|299112|299115|299117|299125|299139|299140|299141|299144|299145|299151|299152|299153|299156|299164|299172|299173|299186|299187|299192|299193|299198|299199|299202|299205|299208|299210|299231|299233|367986|734694|764606|829437|829458|829459|851826|891998|891999|892000|892001|892002|892003|892004|892005|892051|892052|892053|892054|892055|892056|892057|892058|892059|892060|892061|892062|892063|892064|892065|892066|892067|892068|895986|895987|895988|895989|895990", "text": "Congenital stationary night blindness, autosomal dominant 2" }, { - "baseId": "28149|28150|28151|38829|98917|106433|142336|227005|269281|296300|302411|433782|799401|799402|799403|920207", + "upstreamId": "28149|28150|28151|38829|98917|106433|142336|227005|269281|296300|302411|433782|799401|799402|799403|920207", "text": "Retinitis pigmentosa 43" }, { - "baseId": "28153|28153|28154|28154|28156|28156|28157|28157|28158|28158|28159|28159|38825|38825|38827|38828|38828|98766|98766|98767|98767|104710|104711|104715|104715|104718|104718|104720|104720|104724|104724|104726|104726|104727|104727|104730|104730|104731|104733|104735|104736|104736|104738|104739|104747|104748|104750|104750|104753|104756|104756|104757|104757|104759|104759|104760|104761|104761|104763|104763|104764|104770|104775|104776|104778|104778|104779|104779|104782|104783|104789|104789|104790|104792|104793|104793|104794|104794|193415|195577|281145|281146|281151|281153|281156|281764|281767|281769|282957|282958|282960|282960|282963|282966|283247|283248|283248|359276|360814|361383|418817|431611|448228|448228|448230|448370|513509|541288|541292|550246|550249|550249|551518|558585|587734|587734|612345|628252|628253|628253|628254|696860|696860|696861|696862|696863|696864|696864|707502|707503|707504|707504|719065|719065|719066|719066|719067|732571|732572|732573|746631|746632|746632|758920|758920|759059|759059|761008|762067|762071|762071|777151|777160|780761|780762|780763|789992|789993|789994|789995|789995|799224|818174|818992|824390|824391|824392|824393|824394|824394|824395|824396|824397|824398|824398|824399|824400|824401|824402|824403|856026|858499|858499|858500|858500|858501|858502|858502|858503|864771|864772|864773|864774|864775|864776|864777|864778|864779|864780|864781|864782|864783|864784|864785|864785|864786|864787|864788|864789|864790|864791|864792|864793|864794|865205|865206|865207|922156|930654|930655|930656|930657|939825|939826|939827|940648|940648|942093|942094|942095|942096|942097|942097|952510|952511|952512|952513|952514|952515|952516|952517|952518|952519|952520|952521|959569|962249|962250|962251|962252|962253|962254|962255|962256|962257|962258|962259|962260|962261|962262|962263|962264|962265|962266", + "upstreamId": "28153|28153|28154|28154|28156|28156|28157|28157|28158|28158|28159|28159|38825|38825|38827|38828|38828|98766|98766|98767|98767|104710|104711|104715|104715|104718|104718|104720|104720|104724|104724|104726|104726|104727|104727|104730|104730|104731|104733|104735|104736|104736|104738|104739|104747|104748|104750|104750|104753|104756|104756|104757|104757|104759|104759|104760|104761|104761|104763|104763|104764|104770|104775|104776|104778|104778|104779|104779|104782|104783|104789|104789|104790|104792|104793|104793|104794|104794|193415|195577|281145|281146|281151|281153|281156|281764|281767|281769|282957|282958|282960|282960|282963|282966|283247|283248|283248|359276|360814|361383|418817|431611|448228|448228|448230|448370|513509|541288|541292|550246|550249|550249|551518|558585|587734|587734|612345|628252|628253|628253|628254|696860|696860|696861|696862|696863|696864|696864|707502|707503|707504|707504|719065|719065|719066|719066|719067|732571|732572|732573|746631|746632|746632|758920|758920|759059|759059|761008|762067|762071|762071|777151|777160|780761|780762|780763|789992|789993|789994|789995|789995|799224|818174|818992|824390|824391|824392|824393|824394|824394|824395|824396|824397|824398|824398|824399|824400|824401|824402|824403|856026|858499|858499|858500|858500|858501|858502|858502|858503|864771|864772|864773|864774|864775|864776|864777|864778|864779|864780|864781|864782|864783|864784|864785|864785|864786|864787|864788|864789|864790|864791|864792|864793|864794|865205|865206|865207|922156|930654|930655|930656|930657|939825|939826|939827|940648|940648|942093|942094|942095|942096|942097|942097|952510|952511|952512|952513|952514|952515|952516|952517|952518|952519|952520|952521|959569|962249|962250|962251|962252|962253|962254|962255|962256|962257|962258|962259|962260|962261|962262|962263|962264|962265|962266", "text": "Leber congenital amaurosis 2" }, { - "baseId": "28153|28154|28154|28154|28155|28156|28156|28157|28157|28158|28158|28159|28159|38825|38825|38828|98766|98767|104715|104715|104718|104720|104724|104726|104727|104730|104731|104736|104739|104747|104750|104753|104756|104757|104759|104761|104763|104763|104775|104776|104778|104779|104789|104792|104793|104794|193415|195577|281153|281153|282960|283248|359276|360814|360814|361383|418817|448228|448230|448370|541288|541292|550246|550249|558585|587734|628252|628253|628254|696860|696861|696862|696863|696864|707502|707503|707504|719065|719066|719067|732571|732572|732573|746631|746632|758920|759059|761008|762067|762071|777151|777160|780761|780762|780763|789995|818174|818174|818992|824390|824391|824392|824393|824394|824395|824396|824397|824398|824399|824400|824401|824402|824403|858499|858500|858502|864785|922156|930654|930655|930656|930657|939825|939826|939827|940648|942093|942094|942095|942096|942097|952510|952511|952512|952513|952514|952515|952516|952517|952518|952519|952520|952521|959569", + "upstreamId": "28153|28154|28154|28154|28155|28156|28156|28157|28157|28158|28158|28159|28159|38825|38825|38828|98766|98767|104715|104715|104718|104720|104724|104726|104727|104730|104731|104736|104739|104747|104750|104753|104756|104757|104759|104761|104763|104763|104775|104776|104778|104779|104789|104792|104793|104794|193415|195577|281153|281153|282960|283248|359276|360814|360814|361383|418817|448228|448230|448370|541288|541292|550246|550249|558585|587734|628252|628253|628254|696860|696861|696862|696863|696864|707502|707503|707504|719065|719066|719067|732571|732572|732573|746631|746632|758920|759059|761008|762067|762071|777151|777160|780761|780762|780763|789995|818174|818174|818992|824390|824391|824392|824393|824394|824395|824396|824397|824398|824399|824400|824401|824402|824403|858499|858500|858502|864785|922156|930654|930655|930656|930657|939825|939826|939827|940648|942093|942094|942095|942096|942097|952510|952511|952512|952513|952514|952515|952516|952517|952518|952519|952520|952521|959569", "text": "Retinitis pigmentosa 20" }, { - "baseId": "28154|38825|104753|104763|361383|761008", + "upstreamId": "28154|38825|104753|104763|361383|761008", "text": "RPE65-Related Disorders" }, { - "baseId": "28160|177189|187661|187662|187663|187664|268145|278727|278730|278738|278740|278744|278746|278750|278759|278761|278766|278771|278774|278775|278776|278784|278792|278794|278922|278923|278930|278933|278936|278937|278943|278945|278960|278961|278962|278964|280091|280094|280097|280099|280102|280108|280109|280128|280129|280130|280131|280135|280145|280146|280147|280176|280178|280181|280182|280187|280194|280199|280200|280215|280216|280217|280220|280221|280222|280226|280229|280249|280250|280261|280269|280271|280272|280273|438752|447772|690482|690483|690484|690485|690486|690487|696441|696442|732081|799153|823311|823312|823313|823314|823315|863443|863444|863445|863446|863447|863448|863449|863450|863451|863452|863453|863454|863455|863456|863457|863458|863459|863460|863461|863462|863463|863464|863465|863466|863467|863468|863469|863470|863471|863472|930268|930269|941689", + "upstreamId": "28160|177189|187661|187662|187663|187664|268145|278727|278730|278738|278740|278744|278746|278750|278759|278761|278766|278771|278774|278775|278776|278784|278792|278794|278922|278923|278930|278933|278936|278937|278943|278945|278960|278961|278962|278964|280091|280094|280097|280099|280102|280108|280109|280128|280129|280130|280131|280135|280145|280146|280147|280176|280178|280181|280182|280187|280194|280199|280200|280215|280216|280217|280220|280221|280222|280226|280229|280249|280250|280261|280269|280271|280272|280273|438752|447772|690482|690483|690484|690485|690486|690487|696441|696442|732081|799153|823311|823312|823313|823314|823315|863443|863444|863445|863446|863447|863448|863449|863450|863451|863452|863453|863454|863455|863456|863457|863458|863459|863460|863461|863462|863463|863464|863465|863466|863467|863468|863469|863470|863471|863472|930268|930269|941689", "text": "Leber congenital amaurosis 12" }, { - "baseId": "28161", + "upstreamId": "28161", "text": "Hyperproreninemia, familial" }, { - "baseId": "28162|28163|33102|33103|33104|33105|33106|33107|33109|33110|33111|59366|59367|59368|59369|59370|59371|205185|237023|249673|249765|250978|250979|256303|256304|256305|256306|256308|256309|256310|256311|256312|256313|256314|278513|278514|278515|278516|278526|278527|278638|278639|278640|279426|279427|279430|279431|279435|279437|279438|279439|279450|279720|279727|279728|279730|279780|279784|279795|279944|279945|279946|279952|280966|280968|280970|280971|280974|280975|280980|280981|280982|280986|280989|280990|280999|281110|281112|281115|281116|281117|281119|281126|281128|281150|281157|281158|281159|281160|289068|289071|289072|289073|289075|289798|289807|289814|289833|289837|292880|292889|292891|292892|292893|292896|292898|292901|293137|293152|293156|293158|293167|293168|293169|329278|329282|329283|329284|329291|329294|329295|329304|329306|329311|329312|329313|329318|329319|329322|329323|329325|329326|329330|329331|339518|339519|339523|339525|339532|339535|339536|339540|339542|339546|339547|339548|339554|339555|339556|339557|339568|339570|339574|339581|339588|339596|345299|345300|345304|345306|345308|345311|345314|345315|345320|345321|345322|345323|345327|345334|345337|345338|345343|345344|345345|346688|346691|346692|346694|346696|346697|346700|346702|346705|346706|346707|346710|346714|346715|346718|346720|346722|346725|346726|346729|346730|346736|353097|353635|362071|362152|376493|550631|620598|620599|697877|704275|704276|704278|704279|707192|715613|715614|718781|720245|727337|727338|732254|732255|733866|733867|740930|746264|774432|778382|778409|785682|863331|863332|863333|863334|863335|863336|863337|863338|863339|863340|863836|863837|863838|863839|863840|863841|863842|863843|863844|863845|863846|863847|863848|863849|863850|863851|863852|863853|863854|863855|863856|863857|863858|863859|878041|878042|878043|878044|878045|878046|878047|878048|878049|878050|878051|878052|878053|878054|878055|878056|878057|878058|878059|878060|878061|878062|878063|878064|878065|878066|878067|878068|878069|878070|878071|878072|878073|878074|878075|878076|878077|878078|878079|878080|878081|878082|878083|878084|878085|878086|878087|878088|878089|878090|878091|878092|878093|878094|878095|878096|878097|878098|878099|878100|878101|878102|878103|878104|880561|880562|880563|880564|888142|888143|888144|888145|888146|888147|888148|888149|888150|888151|888152|888153|888154|888155|888156|888157|888158|888159|888160|891587|891588|906230|906270|918592|962795|962796|962797|962798", + "upstreamId": "28162|28163|33102|33103|33104|33105|33106|33107|33109|33110|33111|59366|59367|59368|59369|59370|59371|205185|237023|249673|249765|250978|250979|256303|256304|256305|256306|256308|256309|256310|256311|256312|256313|256314|278513|278514|278515|278516|278526|278527|278638|278639|278640|279426|279427|279430|279431|279435|279437|279438|279439|279450|279720|279727|279728|279730|279780|279784|279795|279944|279945|279946|279952|280966|280968|280970|280971|280974|280975|280980|280981|280982|280986|280989|280990|280999|281110|281112|281115|281116|281117|281119|281126|281128|281150|281157|281158|281159|281160|289068|289071|289072|289073|289075|289798|289807|289814|289833|289837|292880|292889|292891|292892|292893|292896|292898|292901|293137|293152|293156|293158|293167|293168|293169|329278|329282|329283|329284|329291|329294|329295|329304|329306|329311|329312|329313|329318|329319|329322|329323|329325|329326|329330|329331|339518|339519|339523|339525|339532|339535|339536|339540|339542|339546|339547|339548|339554|339555|339556|339557|339568|339570|339574|339581|339588|339596|345299|345300|345304|345306|345308|345311|345314|345315|345320|345321|345322|345323|345327|345334|345337|345338|345343|345344|345345|346688|346691|346692|346694|346696|346697|346700|346702|346705|346706|346707|346710|346714|346715|346718|346720|346722|346725|346726|346729|346730|346736|353097|353635|362071|362152|376493|550631|620598|620599|697877|704275|704276|704278|704279|707192|715613|715614|718781|720245|727337|727338|732254|732255|733866|733867|740930|746264|774432|778382|778409|785682|863331|863332|863333|863334|863335|863336|863337|863338|863339|863340|863836|863837|863838|863839|863840|863841|863842|863843|863844|863845|863846|863847|863848|863849|863850|863851|863852|863853|863854|863855|863856|863857|863858|863859|878041|878042|878043|878044|878045|878046|878047|878048|878049|878050|878051|878052|878053|878054|878055|878056|878057|878058|878059|878060|878061|878062|878063|878064|878065|878066|878067|878068|878069|878070|878071|878072|878073|878074|878075|878076|878077|878078|878079|878080|878081|878082|878083|878084|878085|878086|878087|878088|878089|878090|878091|878092|878093|878094|878095|878096|878097|878098|878099|878100|878101|878102|878103|878104|880561|880562|880563|880564|888142|888143|888144|888145|888146|888147|888148|888149|888150|888151|888152|888153|888154|888155|888156|888157|888158|888159|888160|891587|891588|906230|906270|918592|962795|962796|962797|962798", "text": "Renal dysplasia" }, { - "baseId": "28162|28164|28165|249673|278513|278514|278515|278516|278526|278527|278638|278639|278640|279780|279784|279795|279944|279945|279946|279952|432278|774432|863331|863332|863333|863334|863335|863336|863337|863338|863339|863340|962666", + "upstreamId": "28162|28164|28165|249673|278513|278514|278515|278516|278526|278527|278638|278639|278640|279780|279784|279795|279944|279945|279946|279952|432278|774432|863331|863332|863333|863334|863335|863336|863337|863338|863339|863340|962666", "text": "Hyperuricemic nephropathy, familial juvenile, 2" }, { - "baseId": "28166|38823|38824|185687|185688|472236|791447", + "upstreamId": "28166|38823|38824|185687|185688|472236|791447", "text": "Mirror movements 2" }, { - "baseId": "28167", + "upstreamId": "28167", "text": "Breast cancer, susceptibility to, in BRCA1 and BRCA2 carriers" }, { - "baseId": "28168|28169|28173|28174|28175|28178|28179|28180|28187|28192|28200", + "upstreamId": "28168|28169|28173|28174|28175|28178|28179|28180|28187|28192|28200", "text": "Severe combined immunodeficiency, B cell-negative" }, { - "baseId": "28168|28169|28170|28171|28174|28175|28176|28177|45377|45378|45379|45381|142590|408345|408346|415267|433888|481991|488103|488104|488105|488106|488107|488108|488109|488110|488111|488112|488113|488114|488115|488116|488117|488118|488119", + "upstreamId": "28168|28169|28170|28171|28174|28175|28176|28177|45377|45378|45379|45381|142590|408345|408346|415267|433888|481991|488103|488104|488105|488106|488107|488108|488109|488110|488111|488112|488113|488114|488115|488116|488117|488118|488119", "text": "Recombinase activating gene 2 deficiency" }, { - "baseId": "28168|28169|28170|28171|28174|28175|28176|28177|45377|45378|45379|45381|142590|408345|408346|415267|433888|481991|488103|488104|488105|488106|488107|488108|488109|488110|488111|488112|488113|488114|488115|488116|488117|488118|488119|589847|589848|589849|589850|589851", + "upstreamId": "28168|28169|28170|28171|28174|28175|28176|28177|45377|45378|45379|45381|142590|408345|408346|415267|433888|481991|488103|488104|488105|488106|488107|488108|488109|488110|488111|488112|488113|488114|488115|488116|488117|488118|488119|589847|589848|589849|589850|589851", "text": "Primary immunodeficiency" }, { - "baseId": "28169|28172|28172|28174|28176|28176|28177|28177|28177|28185|28193|28195|28197|28198|28198|28199|28200|38822|45371|45371|45372|45373|45374|45375|45376|45377|45380|45381|79572|79572|79574|79575|79576|79581|79582|142585|142586|142587|142588|142589|142590|142590|254148|254151|269282|313990|313992|320387|320393|320401|326382|326384|326430|326434|326435|326435|327380|327381|327462|327462|327474|327480|359878|359938|359941|371408|408342|415266|425922|433888|433888|444800|461092|461100|461295|461298|461300|461304|461574|461576|461890|461904|461907|481990|488104|488105|488113|488118|488119|491899|526182|526185|526190|526194|526666|526667|526671|526676|526679|526682|564612|564613|567235|567235|567239|567241|567241|567244|567245|567249|570614|570620|570629|612909|614356|614356|614357|624428|640003|640004|640005|640006|640007|640008|640009|640010|640011|640012|640013|640014|640015|640016|640017|640018|640019|640020|640021|640022|640023|640024|640025|640026|640027|640028|687777|687778|693020|693021|701752|712815|737962|768438|768440|768442|783988|783989|783990|791133|791134|820362|838357|838358|838359|838360|838361|838362|838363|838364|838365|838366|838367|838368|838369|838370|838371|838372|838373|838374|838375|838376|838377|838378|838379|838380|838381|838382|838383|838384|838385|838386|838387|838388|838389|838390|838391|838392|838393|838394|838395|838396|838397|838398|838399|838400|838401|838402|926215|926216|926217|926218|926219|926220|926221|926222|926223|926224|926225|935514|935515|935516|935517|935518|935519|935520|935521|947432|947433|947434|947435|947436|947437|947438|947439|947440|947441|947442|947443|947444|947445|956477|956478|956479|956480|956481|956482|956483|956484|956485|956486|956487|956488|956489|956490|956491|956492|956493|964363", + "upstreamId": "28169|28172|28172|28174|28176|28176|28177|28177|28177|28185|28193|28195|28197|28198|28198|28199|28200|38822|45371|45371|45372|45373|45374|45375|45376|45377|45380|45381|79572|79572|79574|79575|79576|79581|79582|142585|142586|142587|142588|142589|142590|142590|254148|254151|269282|313990|313992|320387|320393|320401|326382|326384|326430|326434|326435|326435|327380|327381|327462|327462|327474|327480|359878|359938|359941|371408|408342|415266|425922|433888|433888|444800|461092|461100|461295|461298|461300|461304|461574|461576|461890|461904|461907|481990|488104|488105|488113|488118|488119|491899|526182|526185|526190|526194|526666|526667|526671|526676|526679|526682|564612|564613|567235|567235|567239|567241|567241|567244|567245|567249|570614|570620|570629|612909|614356|614356|614357|624428|640003|640004|640005|640006|640007|640008|640009|640010|640011|640012|640013|640014|640015|640016|640017|640018|640019|640020|640021|640022|640023|640024|640025|640026|640027|640028|687777|687778|693020|693021|701752|712815|737962|768438|768440|768442|783988|783989|783990|791133|791134|820362|838357|838358|838359|838360|838361|838362|838363|838364|838365|838366|838367|838368|838369|838370|838371|838372|838373|838374|838375|838376|838377|838378|838379|838380|838381|838382|838383|838384|838385|838386|838387|838388|838389|838390|838391|838392|838393|838394|838395|838396|838397|838398|838399|838400|838401|838402|926215|926216|926217|926218|926219|926220|926221|926222|926223|926224|926225|935514|935515|935516|935517|935518|935519|935520|935521|947432|947433|947434|947435|947436|947437|947438|947439|947440|947441|947442|947443|947444|947445|956477|956478|956479|956480|956481|956482|956483|956484|956485|956486|956487|956488|956489|956490|956491|956492|956493|964363", "text": "Combined cellular and humoral immune defects with granulomas" }, { - "baseId": "28177|76319|467467|467469|467471|468332|531769|531844|531851|531892|569725|569734|571589|624272|646691|646692|646693|646694|646695|715703|727425|760655|815896|815899|815900|815902|815903|815905|815925|815943|815946|816028|816029|846193|846194|846195|846196|846197|846198|852907", + "upstreamId": "28177|76319|467467|467469|467471|468332|531769|531844|531851|531892|569725|569734|571589|624272|646691|646692|646693|646694|646695|715703|727425|760655|815896|815899|815900|815902|815903|815905|815925|815943|815946|816028|816029|846193|846194|846195|846196|846197|846198|852907", "text": "Common variable immunodeficiency" }, { - "baseId": "28181", + "upstreamId": "28181", "text": "RECOMBINATION ACTIVATING GENE 1 POLYMORPHISM" }, { - "baseId": "28190|28192|28193|28194|79572|567235|567241|614356|614357|964364", + "upstreamId": "28190|28192|28193|28194|79572|567235|567241|614356|614357|964364", "text": "Alpha/beta T-cell lymphopenia with gamma/delta T-cell expansion, severe cytomegalovirus infection, and autoimmunity" }, { - "baseId": "28203|28206|28209|28212|28218|28222|104543|104548|104554|104556|104570|104582|104585|104588|104601|104603|104611|152788|190248|270098|431694|456531|612147|623972|672067|691988|691989|699595|710519|735665|790628|800516|801389|819689|831954|831955|831956|831957|831958|831959|831960|831961|831962|831963|831964|831965|831966|831967|856459|856464|856466|933329|933330|933331|933332|933333|933334|933335|933336|933337|933338|933339|940037|940038|945031|945032|945033|945034|945035|945036|945037|954454|954455|954456|954457|954458|954459|954460|959805|959806|960584", + "upstreamId": "28203|28206|28209|28212|28218|28222|104543|104548|104554|104556|104570|104582|104585|104588|104601|104603|104611|152788|190248|270098|431694|456531|612147|623972|672067|691988|691989|699595|710519|735665|790628|800516|801389|819689|831954|831955|831956|831957|831958|831959|831960|831961|831962|831963|831964|831965|831966|831967|856459|856464|856466|933329|933330|933331|933332|933333|933334|933335|933336|933337|933338|933339|940037|940038|945031|945032|945033|945034|945035|945036|945037|954454|954455|954456|954457|954458|954459|954460|959805|959806|960584", "text": "PRPH2-Related Disorders" }, { - "baseId": "28203|28204|28206|28209|28212|28218|28222|104556|104588|104593|104603|104611|190248|307578|612147|801389|831959|831960|856446|856454|856461|856464|933335|945036|962012|962018|962019|962021", + "upstreamId": "28203|28204|28206|28209|28212|28218|28222|104556|104588|104593|104603|104611|190248|307578|612147|801389|831959|831960|856446|856454|856461|856464|933335|945036|962012|962018|962019|962021", "text": "Patterned dystrophy of the retinal pigment epithelium" }, { - "baseId": "28204|104581", + "upstreamId": "28204|104581", "text": "Leber congenital amaurosis 18" }, { - "baseId": "28204|28208|28210|28213|28217|28218|98753|104543|104548|104554|104556|104580|104581|104592|104611|142607|142608|142609|142611|177987|252356|270098|300152|300154|300156|300157|300161|300164|300166|300167|300169|300173|302873|302878|302879|302880|302885|302916|302918|302926|302934|302935|302948|302949|302951|302953|302954|302960|302962|302963|307343|307353|307354|307355|307361|307363|307369|307552|307564|307565|307570|307575|307578|307579|307586|431694|489877|612147|614544|699595|790628|790629|790630|800517|831963|896283|896284|896285|896286|896287|896288|896289|896290|896291|896292|896293|896294|896295|896296|896297|896298|896299|896300|896301|896302|896303|896304", + "upstreamId": "28204|28208|28210|28213|28217|28218|98753|104543|104548|104554|104556|104580|104581|104592|104611|142607|142608|142609|142611|177987|252356|270098|300152|300154|300156|300157|300161|300164|300166|300167|300169|300173|302873|302878|302879|302880|302885|302916|302918|302926|302934|302935|302948|302949|302951|302953|302954|302960|302962|302963|307343|307353|307354|307355|307361|307363|307369|307552|307564|307565|307570|307575|307578|307579|307586|431694|489877|612147|614544|699595|790628|790629|790630|800517|831963|896283|896284|896285|896286|896287|896288|896289|896290|896291|896292|896293|896294|896295|896296|896297|896298|896299|896300|896301|896302|896303|896304", "text": "Macular dystrophy, patterned, 1" }, { - "baseId": "28205", + "upstreamId": "28205", "text": "Retinitis punctata albescens, autosomal dominant" }, { - "baseId": "28206|28209|28221|28222|98753|104543|104548|104554|104592|104611|142607|142608|142609|142611|177987|252356|270098|300152|300154|300156|300157|300161|300164|300166|300167|300169|302873|302878|302879|302880|302885|302916|302918|302926|302934|302935|302948|302949|302951|302953|302954|302960|302962|302963|307343|307353|307354|307355|307552|307564|307565|307570|307575|307579|307586|489877|699595|831963|896283|896284|896285|896286|896287|896288|896289|896290|896291|896292|896293|896294|896295|896296|896297|896298|896299|896300|896301|896302|896303|896304", + "upstreamId": "28206|28209|28221|28222|98753|104543|104548|104554|104592|104611|142607|142608|142609|142611|177987|252356|270098|300152|300154|300156|300157|300161|300164|300166|300167|300169|302873|302878|302879|302880|302885|302916|302918|302926|302934|302935|302948|302949|302951|302953|302954|302960|302962|302963|307343|307353|307354|307355|307552|307564|307565|307570|307575|307579|307586|489877|699595|831963|896283|896284|896285|896286|896287|896288|896289|896290|896291|896292|896293|896294|896295|896296|896297|896298|896299|896300|896301|896302|896303|896304", "text": "Choroidal dystrophy, central areolar 2" }, { - "baseId": "28207|28212|28214|28215|28216|98753|104543|104548|104554|104556|104592|104607|104611|142607|142608|142609|142611|177987|252356|270098|300152|300154|300156|300157|300161|300164|300166|300167|300169|302873|302878|302879|302880|302885|302916|302918|302926|302934|302935|302948|302949|302951|302953|302954|302960|302962|302963|307343|307353|307354|307355|307552|307564|307565|307570|307575|307579|307586|432296|489877|590281|699595|818247|831963|896283|896284|896285|896286|896287|896288|896289|896290|896291|896292|896293|896294|896295|896296|896297|896298|896299|896300|896301|896302|896303|896304|964279|980328", + "upstreamId": "28207|28212|28214|28215|28216|98753|104543|104548|104554|104556|104592|104607|104611|142607|142608|142609|142611|177987|252356|270098|300152|300154|300156|300157|300161|300164|300166|300167|300169|302873|302878|302879|302880|302885|302916|302918|302926|302934|302935|302948|302949|302951|302953|302954|302960|302962|302963|307343|307353|307354|307355|307552|307564|307565|307570|307575|307579|307586|432296|489877|590281|699595|818247|831963|896283|896284|896285|896286|896287|896288|896289|896290|896291|896292|896293|896294|896295|896296|896297|896298|896299|896300|896301|896302|896303|896304|964279|980328", "text": "Macular dystrophy, vitelliform, adult-onset" }, { - "baseId": "28209|28222|104558|105193|105240|105308|105488|611528|800451|800470|800478|800532|800557|800568|800616", + "upstreamId": "28209|28222|104558|105193|105240|105308|105488|611528|800451|800470|800478|800532|800557|800568|800616", "text": "maculopathy" }, { - "baseId": "28223|28224|28225|28226|53803|53805|175340|312276|312277|312305|312306|312308|312310|318114|318136|318145|318147|318155|318159|318170|318171|318178|318181|318182|318183|318185|318186|318187|324141|324144|324148|324173|324185|324197|324198|324200|324213|324218|324223|324241|324254|324256|324263|324980|324986|324990|324994|324998|493016|620383|620384|625873|866987|866988|866989|866990|866991|866992|866993|866994|866995|866996|866997|866998|866999|867000|867001|867002|867003|867004|867005|867006|867007|867008|867009|867010|867011|867012|867013|867014|867015|867016|867017|867018|868602|868603|970560", + "upstreamId": "28223|28224|28225|28226|53803|53805|175340|312276|312277|312305|312306|312308|312310|318114|318136|318145|318147|318155|318159|318170|318171|318178|318181|318182|318183|318185|318186|318187|324141|324144|324148|324173|324185|324197|324198|324200|324213|324218|324223|324241|324254|324256|324263|324980|324986|324990|324994|324998|493016|620383|620384|625873|866987|866988|866989|866990|866991|866992|866993|866994|866995|866996|866997|866998|866999|867000|867001|867002|867003|867004|867005|867006|867007|867008|867009|867010|867011|867012|867013|867014|867015|867016|867017|867018|868602|868603|970560", "text": "Deafness, autosomal recessive 24" }, { - "baseId": "28227|28228|135326|142351|142352|142353|142355|142356|211018|211020|291384|292522|292523|292524|292526|292528|292540|292541|295904|295906|295916|295924|295925|295935|295938|367370|500371|626138|651138|660046|709006|734258|734259|743962|781793|828531|889544|889545|889546|889547|889548|889549|889550|889551|889552|889553|891701|923335|932075|953582|966668|966669|966670|966671|966672|966673|966675|966676", + "upstreamId": "28227|28228|135326|142351|142352|142353|142355|142356|211018|211020|291384|292522|292523|292524|292526|292528|292540|292541|295904|295906|295916|295924|295925|295935|295938|367370|500371|626138|651138|660046|709006|734258|734259|743962|781793|828531|889544|889545|889546|889547|889548|889549|889550|889551|889552|889553|891701|923335|932075|953582|966668|966669|966670|966671|966672|966673|966675|966676", "text": "Pyruvate dehydrogenase E1-beta deficiency" }, { - "baseId": "28229|28230|28231|28233|28234|28235|28236|266502|445922|481324|481325|682831|682832|682842|788918|816005|961629|963177|964882|983768|983769", + "upstreamId": "28229|28230|28231|28233|28234|28235|28236|266502|445922|481324|481325|682831|682832|682842|788918|816005|961629|963177|964882|983768|983769", "text": "Autosomal recessive cutis laxa type 2B" }, { - "baseId": "28236|28237|38818|38819|38820|266502|961629", + "upstreamId": "28236|28237|38818|38819|38820|266502|961629", "text": "Autosomal recessive cutis laxa type 3B" }, { - "baseId": "28240|28241|28242|28243|28244|173534|173535|173536|173537|173673|173674|173675|196087|228968|228969|287417|287421|287423|287424|287426|287427|287428|287429|288203|288208|288217|288218|288219|290870|290871|290873|290875|290882|290885|290890|291121|291122|291126|291127|291138|291145|291148|291149|291150|291152|291153|578406|578527|584248|588015|610681|620097|708393|719985|719986|774794|885569|885570|885571|885572|885573|885574|885575|885576|885577|885578|885579|885580|885581|885582|885583|885584|885585|885586|887407|887408|961003|965621|966788", + "upstreamId": "28240|28241|28242|28243|28244|173534|173535|173536|173537|173673|173674|173675|196087|228968|228969|287417|287421|287423|287424|287426|287427|287428|287429|288203|288208|288217|288218|288219|290870|290871|290873|290875|290882|290885|290890|291121|291122|291126|291127|291138|291145|291148|291149|291150|291152|291153|578406|578527|584248|588015|610681|620097|708393|719985|719986|774794|885569|885570|885571|885572|885573|885574|885575|885576|885577|885578|885579|885580|885581|885582|885583|885584|885585|885586|887407|887408|961003|965621|966788", "text": "Surfactant metabolism dysfunction, pulmonary, 1" }, { - "baseId": "28245|39082", + "upstreamId": "28245|39082", "text": "Pulmonary fibrosis, idiopathic, susceptibility to" }, { - "baseId": "28246|28247|28248|28249|28250|28251|28252|28253|174394|174395|174533|174534|227321|304867|304873|304874|304876|304877|304883|304888|304889|308589|308599|308600|313748|313749|313769|313772|313774|313788|313801|313802|313803|313804|313805|313806|313861|313864|313868|313869|681808|899330|899331|899332|899333|899334|899335|899336|966598", + "upstreamId": "28246|28247|28248|28249|28250|28251|28252|28253|174394|174395|174533|174534|227321|304867|304873|304874|304876|304877|304883|304888|304889|308589|308599|308600|313748|313749|313769|313772|313774|313788|313801|313802|313803|313804|313805|313806|313861|313864|313868|313869|681808|899330|899331|899332|899333|899334|899335|899336|966598", "text": "Surfactant metabolism dysfunction, pulmonary, 2" }, { - "baseId": "28254|28268|28269", + "upstreamId": "28254|28268|28269", "text": "Postanesthetic apnea" }, { - "baseId": "28254|28255|28257|28258|28259|28264|28265|28266|28267|209042|227254|227255|251000|289421|289427|289428|289430|289431|290196|290199|290202|290204|290205|290206|290219|293286|293294|293295|293302|293720|293723|293724|293725|293729|293732|293733|357302|357303|357304|357305|357306|357307|357308|357309|357310|357311|357312|357313|357314|357315|357316|357317|357318|357319|357320|357321|357322|357323|542900|542901|542903|542910|542913|542916|542918|543063|543066|543067|543072|543078|543084|543088|543089|543134|543149|543151|543153|543155|543159|543163|543166|543171|543172|543183|543189|543191|620118|620119|620120|888340|888341|888342|888343|888344|888345|888346|888347|888348|888349|888350|888351|888352|888353|888354|888355|888356|888357|891615", + "upstreamId": "28254|28255|28257|28258|28259|28264|28265|28266|28267|209042|227254|227255|251000|289421|289427|289428|289430|289431|290196|290199|290202|290204|290205|290206|290219|293286|293294|293295|293302|293720|293723|293724|293725|293729|293732|293733|357302|357303|357304|357305|357306|357307|357308|357309|357310|357311|357312|357313|357314|357315|357316|357317|357318|357319|357320|357321|357322|357323|542900|542901|542903|542910|542913|542916|542918|543063|543066|543067|543072|543078|543084|543088|543089|543134|543149|543151|543153|543155|543159|543163|543166|543171|543172|543183|543189|543191|620118|620119|620120|888340|888341|888342|888343|888344|888345|888346|888347|888348|888349|888350|888351|888352|888353|888354|888355|888356|888357|891615", "text": "Deficiency of butyrylcholine esterase" }, { - "baseId": "28256", + "upstreamId": "28256", "text": "Bche, h variant" }, { - "baseId": "28257", + "upstreamId": "28257", "text": "BCHE, flouride 1" }, { - "baseId": "28258", + "upstreamId": "28258", "text": "BCHE, fluoride 2" }, { - "baseId": "28259", + "upstreamId": "28259", "text": "Butyrylcholinesterase activity" }, { - "baseId": "28260", + "upstreamId": "28260", "text": "Bche, j variant" }, { - "baseId": "28261", + "upstreamId": "28261", "text": "BCHE Newfoundland" }, { - "baseId": "28262", + "upstreamId": "28262", "text": "BCHE Cynthiana" }, { - "baseId": "28263", + "upstreamId": "28263", "text": "BCHE Johannesburg" }, { - "baseId": "28265", + "upstreamId": "28265", "text": "Butyrylcholinesterase deficiency, fluoride-resistant, japanese type" }, { - "baseId": "28270|28271|188064|188065|255889|466018|466721|466723|467002|467005|530361|530563|530778|570496|645006|652665|693934|791647|820885|844360|919679|927962|949589|949590", + "upstreamId": "28270|28271|188064|188065|255889|466018|466721|466723|467002|467005|530361|530563|530778|570496|645006|652665|693934|791647|820885|844360|919679|927962|949589|949590", "text": "Cataract 21, multiple types" }, { - "baseId": "28272|28273|28274|28275|28276|136382|136383|136384|136385|136386|136387|255217|255218|255219|255220|255221|255222|255223|255224|255226|255227|322539|322543|322545|331908|331923|331931|331941|331943|331947|331952|338926|338928|338936|338942|338943|340540|340541|340543|340547|340548|340550|340555|620513|797135|799797|799798|799799|799800|873526|873527|873528|873529|873530|873531|873532|873533|876509|876510|876511", + "upstreamId": "28272|28273|28274|28275|28276|136382|136383|136384|136385|136386|136387|255217|255218|255219|255220|255221|255222|255223|255224|255226|255227|322539|322543|322545|331908|331923|331931|331941|331943|331947|331952|338926|338928|338936|338942|338943|340540|340541|340543|340547|340548|340550|340555|620513|797135|799797|799798|799799|799800|873526|873527|873528|873529|873530|873531|873532|873533|876509|876510|876511", "text": "Spherocytosis type 5" }, { - "baseId": "28277|28278|28279|28280|28281|28282|99979|99980|99981|99983|172094|172095|172096|178062|181391|194447|226998|227011|256760|256762|256763|256764|256765|267798|298565|298577|298596|298597|298614|298615|298622|298628|298633|298636|298637|300894|300937|300956|300960|300967|300990|300997|301001|301005|301009|301016|301025|301027|301033|301036|301038|305288|305322|305349|305358|305398|305401|305404|305437|305479|305500|305509|305549|305550|305584|332518|332520|332524|332526|332527|332534|332541|342734|342735|342737|342738|342739|342741|342746|342750|342752|342754|342757|342759|342762|342764|344622|344626|344630|348088|348092|348094|348099|348100|348101|348104|348105|348109|348110|348113|349359|349360|349363|349364|350622|350625|353740|360973|427500|485920|512818|513954|514058|620904|756701|879886|879887|879888|879889|879890|879891|879892|879893|879894|879895|879896|879897|879898|879899|879900|879901|879902|879903|879904|879905|879906|880691|880692|971112|980385|980386", + "upstreamId": "28277|28278|28279|28280|28281|28282|99979|99980|99981|99983|172094|172095|172096|178062|181391|194447|226998|227011|256760|256762|256763|256764|256765|267798|298565|298577|298596|298597|298614|298615|298622|298628|298633|298636|298637|300894|300937|300956|300960|300967|300990|300997|301001|301005|301009|301016|301025|301027|301033|301036|301038|305288|305322|305349|305358|305398|305401|305404|305437|305479|305500|305509|305549|305550|305584|332518|332520|332524|332526|332527|332534|332541|342734|342735|342737|342738|342739|342741|342746|342750|342752|342754|342757|342759|342762|342764|344622|344626|344630|348088|348092|348094|348099|348100|348101|348104|348105|348109|348110|348113|349359|349360|349363|349364|350622|350625|353740|360973|427500|485920|512818|513954|514058|620904|756701|879886|879887|879888|879889|879890|879891|879892|879893|879894|879895|879896|879897|879898|879899|879900|879901|879902|879903|879904|879905|879906|880691|880692|971112|980385|980386", "text": "Polycystic liver disease 1" }, { - "baseId": "28283|28284|28285|28286|28287|28288|28289|28290|28291|38812|38813|51295|51298|51306|51311|51314|51323|51327|51329|51330|51331|51332|51333|51335|51336|51337|51340|135482|135483|191541|208622|334232|334239|334241|344149|344151|344157|344158|344161|344162|344164|344168|344169|344176|344177|344179|344183|344185|349341|349346|349348|350342|350343|350346|350347|350350|350351|350355|350358|430264|442255|508930|508931|608915|791950|791951|791952|860608|882447|882448|882449|882450|882451|882452|882453|882454|882455|882456|882457|882458|882924|882925|882926|882927|882928|915095|915096|915097|915098|920545|966400", + "upstreamId": "28283|28284|28285|28286|28287|28288|28289|28290|28291|38812|38813|51295|51298|51306|51311|51314|51323|51327|51329|51330|51331|51332|51333|51335|51336|51337|51340|135482|135483|191541|208622|334232|334239|334241|344149|344151|344157|344158|344161|344162|344164|344168|344169|344176|344177|344179|344183|344185|349341|349346|349348|350342|350343|350346|350347|350350|350351|350355|350358|430264|442255|508930|508931|608915|791950|791951|791952|860608|882447|882448|882449|882450|882451|882452|882453|882454|882455|882456|882457|882458|882924|882925|882926|882927|882928|915095|915096|915097|915098|920545|966400", "text": "Spinocerebellar ataxia type 14" }, { - "baseId": "28292|28294|28295|28296|47515|49461|141642|141643|141644|287750|287756|287757|287763|287765|287773|287775|287779|288441|288443|288444|288445|291317|291327|291332|291333|291334|291336|291473|291479|291480|291481|291483|367104|451516|451793|451991|451991|559213|624252|630656|630661|691240|691241|720016|850925|885745|885746|885747|885748|885749|885750|885751|885752|885753|885754|885755|887417|887418|887419|887420", + "upstreamId": "28292|28294|28295|28296|47515|49461|141642|141643|141644|287750|287756|287757|287763|287765|287773|287775|287779|288441|288443|288444|288445|291317|291327|291332|291333|291334|291336|291473|291479|291480|291481|291483|367104|451516|451793|451991|451991|559213|624252|630656|630661|691240|691241|720016|850925|885745|885746|885747|885748|885749|885750|885751|885752|885753|885754|885755|887417|887418|887419|887420", "text": "Combined immunodeficiency due to ZAP70 deficiency" }, { - "baseId": "28297|28298|28299|28300|28301|249476|249477|249478|249479|249481|249482|249483|249484|249485|249486|249487|249488|263955|276914|276927|276930|276931|276947|276959|276960|276963|276964|276966|276968|276974|276979|276980|277020|277027|277032|277196|277202|277204|277205|277208|277209|277210|277223|277226|277228|277229|277287|277289|277290|277298|277300|277900|277903|277905|277915|277927|277945|277946|278002|278003|278004|278005|278009|278011|278012|278019|278031|278032|278033|278035|278037|278052|278055|278102|278104|278110|278111|278114|447339|447343|447375|515257|515278|515288|515344|556733|619959|622306|626100|627020|627039|627055|650555|650685|685583|718330|729934|822930|822963|862589|862590|862591|862592|862593|862594|862605|862606|862607|862608|862609|862610|862611|862612|862613|862614|862615|862631|862632|862633|862634|862635|862636|862637|862638|862639|865020|921727|941553", + "upstreamId": "28297|28298|28299|28300|28301|249476|249477|249478|249479|249481|249482|249483|249484|249485|249486|249487|249488|263955|276914|276927|276930|276931|276947|276959|276960|276963|276964|276966|276968|276974|276979|276980|277020|277027|277032|277196|277202|277204|277205|277208|277209|277210|277223|277226|277228|277229|277287|277289|277290|277298|277300|277900|277903|277905|277915|277927|277945|277946|278002|278003|278004|278005|278009|278011|278012|278019|278031|278032|278033|278035|278037|278052|278055|278102|278104|278110|278111|278114|447339|447343|447375|515257|515278|515288|515344|556733|619959|622306|626100|627020|627039|627055|650555|650685|685583|718330|729934|822930|822963|862589|862590|862591|862592|862593|862594|862605|862606|862607|862608|862609|862610|862611|862612|862613|862614|862615|862631|862632|862633|862634|862635|862636|862637|862638|862639|865020|921727|941553", "text": "Cataract 6, multiple types" }, { - "baseId": "28301", + "upstreamId": "28301", "text": "Cataract 6, age-related cortical" }, { - "baseId": "28301", + "upstreamId": "28301", "text": "Cortical senile cataract" }, { - "baseId": "28302|28303|28304|28305|28306|28307|28308|28309|28310|28314|28315|28321|28322|28323|28328|28329|28334|28338|28338|38808|138125|138127|138129|138131|139286|193378|193379|253699|253700|253704|253706|259933|268579|268591|309577|309579|309582|309583|309584|309585|309587|309588|309600|309606|309607|309608|314366|314367|314377|314378|314379|314389|314395|314396|314414|314416|314418|314419|314420|314421|314431|320436|320439|320440|320447|320448|320459|320461|320462|320467|320469|320470|320865|320874|320875|320877|320883|320884|320908|320909|320916|320920|320934|320936|320937|320942|320947|361709|361711|361713|361714|361715|361717|361718|361719|361721|406667|503156|539974|563601|569547|701223|737381|865489|865490|865491|865492|865493|865494|865495|865496|865497|865498|865499|865500|865501|865502|865503|865504|865505|865506|865507|865508|865509|865510|865511|865512|865513|865514|868451|868452|868453|969285", + "upstreamId": "28302|28303|28304|28305|28306|28307|28308|28309|28310|28314|28315|28321|28322|28323|28328|28329|28334|28338|28338|38808|138125|138127|138129|138131|139286|193378|193379|253699|253700|253704|253706|259933|268579|268591|309577|309579|309582|309583|309584|309585|309587|309588|309600|309606|309607|309608|314366|314367|314377|314378|314379|314389|314395|314396|314414|314416|314418|314419|314420|314421|314431|320436|320439|320440|320447|320448|320459|320461|320462|320467|320469|320470|320865|320874|320875|320877|320883|320884|320908|320909|320916|320920|320934|320936|320937|320942|320947|361709|361711|361713|361714|361715|361717|361718|361719|361721|406667|503156|539974|563601|569547|701223|737381|865489|865490|865491|865492|865493|865494|865495|865496|865497|865498|865499|865500|865501|865502|865503|865504|865505|865506|865507|865508|865509|865510|865511|865512|865513|865514|868451|868452|868453|969285", "text": "Crouzon syndrome" }, { - "baseId": "28302|28305|28306|28313|28315|28320|28325|28327|28329|28330|28331|28332|28333|28338|28338|28339|31318|31318|191949|192053|193672|193673|193674|248739|259933|305216|308951|308989|308993|308994|309577|314200|314213|314217|314378|314379|320877|320916|320937|361706|361707|361712|361716|361720|371850|425793|458465|458466|458898|458901|493549|513216|523562|523565|523567|524155|562414|562416|637202|651969|684009|687290|689920|819961|834738|834739|851694|925198|925199|925200|934303|934304|946062|946063", + "upstreamId": "28302|28305|28306|28313|28315|28320|28325|28327|28329|28330|28331|28332|28333|28338|28338|28339|31318|31318|191949|192053|193672|193673|193674|248739|259933|305216|308951|308989|308993|308994|309577|314200|314213|314217|314378|314379|320877|320916|320937|361706|361707|361712|361716|361720|371850|425793|458465|458466|458898|458901|493549|513216|523562|523565|523567|524155|562414|562416|637202|651969|684009|687290|689920|819961|834738|834739|851694|925198|925199|925200|934303|934304|946062|946063", "text": "Pfeiffer syndrome" }, { - "baseId": "28302|28303|28304|28305|28306|28307|28309|28310|28311|28312|28313|28314|28315|28316|28322|28325|28329|28330|28332|138125|138127|138129|138131|193378|193379|253700|253706|259933|265819|268579|268591|314395|314396|320884|361710|361711|361716|361721|444565|444566|459906|459911|459913|460155|460158|460619|491711|503164|524995|525006|525008|525009|525525|563599|563601|566187|566190|566194|569547|638760|638761|652256|692793|759899|818138|836683|836684|836685|836686|925760|959929", + "upstreamId": "28302|28303|28304|28305|28306|28307|28309|28310|28311|28312|28313|28314|28315|28316|28322|28325|28329|28330|28332|138125|138127|138129|138131|193378|193379|253700|253706|259933|265819|268579|268591|314395|314396|320884|361710|361711|361716|361721|444565|444566|459906|459911|459913|460155|460158|460619|491711|503164|524995|525006|525008|525009|525525|563599|563601|566187|566190|566194|569547|638760|638761|652256|692793|759899|818138|836683|836684|836685|836686|925760|959929", "text": "FGFR2 related craniosynostosis" }, { - "baseId": "28302|28305|28306|28312|28325|919259|919260", + "upstreamId": "28302|28305|28306|28312|28325|919259|919260", "text": "Antley-Bixler syndrome without genital anomalies or disordered steroidogenesis" }, { - "baseId": "28305|28306|28308|28315|31318|309577|314378|314379|320877|320916|320937|361710|361711", + "upstreamId": "28305|28306|28308|28315|31318|309577|314378|314379|320877|320916|320937|361710|361711", "text": "Jackson-Weiss syndrome" }, { - "baseId": "28307", + "upstreamId": "28307", "text": "Craniosynostosis, nonclassifiable autosomal dominant" }, { - "baseId": "28307", + "upstreamId": "28307", "text": "Scaphocephaly and axenfeld-rieger anomaly" }, { - "baseId": "28307|28333|31366|31367|31368|31371|31376|31377|31378|31379|31381|31386|31387|31394|76470|76763|138125|138127|138129|138131|138137|138138|138143|138147|138148|138149|139286|191137|191949|192053|193378|193379|193380|193381|193672|193674|194790|194791|195205|207114|209687|224372|251372|251373|251380|251381|251385|251388|251392|251393|251394|251397|253699|253700|253704|253706|268579|268591|271219|271513|272118|296994|298886|305196|305197|305206|305210|305211|305213|305216|305217|305227|305229|308949|308950|308951|308954|308955|308965|308966|308967|308968|308969|308987|308988|308989|308990|308991|308992|308993|308994|308995|309017|309019|309020|309577|309579|309582|309583|309584|309585|309587|309588|309600|309606|309607|309608|314169|314172|314173|314175|314176|314177|314180|314181|314182|314183|314185|314186|314189|314193|314194|314195|314196|314199|314200|314201|314204|314205|314206|314207|314209|314210|314212|314213|314217|314219|314220|314222|314223|314228|314231|314237|314238|314366|314367|314377|314378|314379|314389|314395|314396|314414|314416|314418|314419|314420|314421|314431|320436|320439|320440|320447|320448|320459|320461|320462|320467|320469|320470|320865|320874|320875|320877|320883|320884|320908|320909|320916|320920|320934|320936|320937|320942|320947|359618|360913|360914|363628|363629|369068|370233|371850|389089|389090|389091|428292|453055|453061|453062|453066|453069|453353|453434|453444|453446|453448|453833|453835|453843|488869|501129|503156|513216|519821|519822|519828|519844|519848|520148|523886|559637|559792|559794|559796|563605|569547|577061|632094|632095|632096|679248|679250|679251|679252|679253|679658|679659|679660|679661|679663|679664|679665|679666|679667|679668|679671|687284|687287|689918|691532|691533|695221|695222|695223|698441|701223|709242|709244|720842|720846|737381|748819|748823|764389|764391|787369|828965|828966|828967|828968|828969|865489|865490|865491|865492|865493|865494|865495|865496|865497|865498|865499|865500|865501|865502|865503|865504|865505|865506|865507|865508|865509|865510|865511|865512|865513|865514|868451|868452|868453|899458|899459|899460|899461|899462|899463|899464|899465|899466|899467|899468|899469|899470|899471|899472|899473|899474|899475|899476|899477|899478|899479|899480|899481|899482|899483|899484|899485|899486|899487|899488|899489|899490|899491|899492|899493|899494|899495|899496|899497|899498|899499|899500|899501|899502|899503|899504|899505|899506|899507|899508|899509|899510|899511|899512|900485|900486|900487|923468|923469|943907", + "upstreamId": "28307|28333|31366|31367|31368|31371|31376|31377|31378|31379|31381|31386|31387|31394|76470|76763|138125|138127|138129|138131|138137|138138|138143|138147|138148|138149|139286|191137|191949|192053|193378|193379|193380|193381|193672|193674|194790|194791|195205|207114|209687|224372|251372|251373|251380|251381|251385|251388|251392|251393|251394|251397|253699|253700|253704|253706|268579|268591|271219|271513|272118|296994|298886|305196|305197|305206|305210|305211|305213|305216|305217|305227|305229|308949|308950|308951|308954|308955|308965|308966|308967|308968|308969|308987|308988|308989|308990|308991|308992|308993|308994|308995|309017|309019|309020|309577|309579|309582|309583|309584|309585|309587|309588|309600|309606|309607|309608|314169|314172|314173|314175|314176|314177|314180|314181|314182|314183|314185|314186|314189|314193|314194|314195|314196|314199|314200|314201|314204|314205|314206|314207|314209|314210|314212|314213|314217|314219|314220|314222|314223|314228|314231|314237|314238|314366|314367|314377|314378|314379|314389|314395|314396|314414|314416|314418|314419|314420|314421|314431|320436|320439|320440|320447|320448|320459|320461|320462|320467|320469|320470|320865|320874|320875|320877|320883|320884|320908|320909|320916|320920|320934|320936|320937|320942|320947|359618|360913|360914|363628|363629|369068|370233|371850|389089|389090|389091|428292|453055|453061|453062|453066|453069|453353|453434|453444|453446|453448|453833|453835|453843|488869|501129|503156|513216|519821|519822|519828|519844|519848|520148|523886|559637|559792|559794|559796|563605|569547|577061|632094|632095|632096|679248|679250|679251|679252|679253|679658|679659|679660|679661|679663|679664|679665|679666|679667|679668|679671|687284|687287|689918|691532|691533|695221|695222|695223|698441|701223|709242|709244|720842|720846|737381|748819|748823|764389|764391|787369|828965|828966|828967|828968|828969|865489|865490|865491|865492|865493|865494|865495|865496|865497|865498|865499|865500|865501|865502|865503|865504|865505|865506|865507|865508|865509|865510|865511|865512|865513|865514|868451|868452|868453|899458|899459|899460|899461|899462|899463|899464|899465|899466|899467|899468|899469|899470|899471|899472|899473|899474|899475|899476|899477|899478|899479|899480|899481|899482|899483|899484|899485|899486|899487|899488|899489|899490|899491|899492|899493|899494|899495|899496|899497|899498|899499|899500|899501|899502|899503|899504|899505|899506|899507|899508|899509|899510|899511|899512|900485|900486|900487|923468|923469|943907", "text": "Craniosynostosis syndrome" }, { - "baseId": "28311|28312|28318|28326|28338|70518|309577|314378|314379|320877|320916|320937|818138", + "upstreamId": "28311|28312|28318|28326|28338|70518|309577|314378|314379|320877|320916|320937|818138", "text": "Acrocephalosyndactyly type I" }, { - "baseId": "28311|29022|361707|361709|363031|363032|363033|363034|363035|363036|363037|363038|363039|363040|363041|363042|363043|363044", + "upstreamId": "28311|29022|361707|361709|363031|363032|363033|363034|363035|363036|363037|363038|363039|363040|363041|363042|363043|363044", "text": "Endometrial Endometrioid Adenocarcinoma, Variant with Squamous Differentiation" }, { - "baseId": "28311", + "upstreamId": "28311", "text": "Acrocephalosyndactyly" }, { - "baseId": "28311|28316|28317|32616|363107|363109|363194|363195|363196|363235|363312|363604|363605|363606", + "upstreamId": "28311|28316|28317|32616|363107|363109|363194|363195|363196|363235|363312|363604|363605|363606", "text": "Endometrial neoplasm" }, { - "baseId": "28312|151858|362775|362960|363090|363091", + "upstreamId": "28312|151858|362775|362960|363090|363091", "text": "Head and Neck Neoplasms" }, { - "baseId": "28316|28317|38807|138125|138127|138129|138131|139286|193378|193379|253699|253700|253704|253706|268579|268591|309577|309579|309582|309583|309584|309585|309587|309588|309600|309606|309607|309608|314366|314367|314377|314378|314379|314389|314395|314396|314414|314416|314418|314419|314420|314421|314431|320436|320439|320440|320447|320448|320459|320461|320462|320467|320469|320470|320865|320874|320875|320877|320883|320884|320908|320909|320916|320920|320934|320936|320937|320942|320947|503156|569547|701223|737381|865489|865490|865491|865492|865493|865494|865495|865496|865497|865498|865499|865500|865501|865502|865503|865504|865505|865506|865507|865508|865509|865510|865511|865512|865513|865514|868451|868452|868453", + "upstreamId": "28316|28317|38807|138125|138127|138129|138131|139286|193378|193379|253699|253700|253704|253706|268579|268591|309577|309579|309582|309583|309584|309585|309587|309588|309600|309606|309607|309608|314366|314367|314377|314378|314379|314389|314395|314396|314414|314416|314418|314419|314420|314421|314431|320436|320439|320440|320447|320448|320459|320461|320462|320467|320469|320470|320865|320874|320875|320877|320883|320884|320908|320909|320916|320920|320934|320936|320937|320942|320947|503156|569547|701223|737381|865489|865490|865491|865492|865493|865494|865495|865496|865497|865498|865499|865500|865501|865502|865503|865504|865505|865506|865507|865508|865509|865510|865511|865512|865513|865514|868451|868452|868453", "text": "Beare-Stevenson cutis gyrata syndrome" }, { - "baseId": "28319", + "upstreamId": "28319", "text": "Pfeiffer syndrome variant" }, { - "baseId": "28325", + "upstreamId": "28325", "text": "Pfeiffer syndrome, type III" }, { - "baseId": "28328", + "upstreamId": "28328", "text": "Craniosynostosis, nonsyndromic unicoronal" }, { - "baseId": "28332", + "upstreamId": "28332", "text": "Craniofacial-skeletal-dermatologic dysplasia" }, { - "baseId": "28334", + "upstreamId": "28334", "text": "Scaphocephaly, maxillary retrusion, and mental retardation" }, { - "baseId": "28341", + "upstreamId": "28341", "text": "PROTHROMBIN TYPE 3" }, { - "baseId": "28341|28348|28349|38806|254180|254181|254182|254183|254184|254185|314178|314179|314187|314188|314190|314191|320729|320749|320751|320758|320767|320768|326803|326804|326811|327768|327769|327773|712845|724459|752685|768463|868030|868031|868032|868033|868034|868035|868650|868651|868652", + "upstreamId": "28341|28348|28349|38806|254180|254181|254182|254183|254184|254185|314178|314179|314187|314188|314190|314191|320729|320749|320751|320758|320767|320768|326803|326804|326811|327768|327769|327773|712845|724459|752685|768463|868030|868031|868032|868033|868034|868035|868650|868651|868652", "text": "Prothrombin deficiency, congenital" }, { - "baseId": "28342|28343|28344|28345|28346|28349|28350|28351|28352|28353|327765", + "upstreamId": "28342|28343|28344|28345|28346|28349|28350|28351|28352|28353|327765", "text": "Hereditary factor II deficiency disease" }, { - "baseId": "28347", + "upstreamId": "28347", "text": "DYSPROTHROMBINEMIA PROTHROMBIN HIMI-II" }, { - "baseId": "28349", + "upstreamId": "28349", "text": "Pregnancy loss, recurrent, susceptibility to, 2" }, { - "baseId": "28349", + "upstreamId": "28349", "text": "Venous thromboembolism" }, { - "baseId": "28355", + "upstreamId": "28355", "text": "Protein S Heerlen" }, { - "baseId": "28355|28357|38801|38802|38803|38804|171086|171089|171093|171096|212337|212338|212339|212340|212341|221425|221426|251293|291738|293097|293103|293105|296397|393153|393805|393807|439356|451897|453148|453197|453200|453563|495151|519613|519665|559528|559529|559531|559533|559684|559686|561822|615353|631800|631801|631802|651145|683599|683600|686466|759373|819422|819423|828582|828583|828584|828585|828586|828587|851095|851096|851473|851475|858404|923363|923364|932088|932089|932090|940766|943706|943707|943708|953596|959708", + "upstreamId": "28355|28357|38801|38802|38803|38804|171086|171089|171093|171096|212337|212338|212339|212340|212341|221425|221426|251293|291738|293097|293103|293105|296397|393153|393805|393807|439356|451897|453148|453197|453200|453563|495151|519613|519665|559528|559529|559531|559533|559684|559686|561822|615353|631800|631801|631802|651145|683599|683600|686466|759373|819422|819423|828582|828583|828584|828585|828586|828587|851095|851096|851473|851475|858404|923363|923364|932088|932089|932090|940766|943706|943707|943708|953596|959708", "text": "Thrombophilia due to protein S deficiency, autosomal recessive" }, { - "baseId": "28355|28356|28357|28358|28359|28360|28361|28362|38801|171085|171086|171087|171088|171089|171090|171091|171092|171093|171094|171095|171096|172172|212341|221425|251293|291735|291737|291738|291740|291741|291748|291749|293081|293083|293085|293086|293087|293090|293091|293097|293103|293104|293105|293109|296350|296359|296371|296372|296373|296375|296376|296379|296385|296391|296395|296396|296397|296399|296401|296406|296407|519665|683599|790423|800394|889754|889755|889756|889757|889758|889759|889760|889761|889762|889763|889764|889765|889766|889767|889768|889769|889770|889771|889772|889773|889774|889775|889776|889777|889778|889779|889780|889781|889782|891711|891712|891713|970779", + "upstreamId": "28355|28356|28357|28358|28359|28360|28361|28362|38801|171085|171086|171087|171088|171089|171090|171091|171092|171093|171094|171095|171096|172172|212341|221425|251293|291735|291737|291738|291740|291741|291748|291749|293081|293083|293085|293086|293087|293090|293091|293097|293103|293104|293105|293109|296350|296359|296371|296372|296373|296375|296376|296379|296385|296391|296395|296396|296397|296399|296401|296406|296407|519665|683599|790423|800394|889754|889755|889756|889757|889758|889759|889760|889761|889762|889763|889764|889765|889766|889767|889768|889769|889770|889771|889772|889773|889774|889775|889776|889777|889778|889779|889780|889781|889782|891711|891712|891713|970779", "text": "Thrombophilia due to protein S deficiency, autosomal dominant" }, { - "baseId": "28362|171093|171096|212340|212341|293105|495151|559686|615349|615350|615351|615352|615353|615354|615355|615356|615357|615358|615359|615360|615362|615363|615364|615365|615366|615367|615368|615370|615372|615373|615722|615866|801511", + "upstreamId": "28362|171093|171096|212340|212341|293105|495151|559686|615349|615350|615351|615352|615353|615354|615355|615356|615357|615358|615359|615360|615362|615363|615364|615365|615366|615367|615368|615370|615372|615373|615722|615866|801511", "text": "Reduced protein S activity" }, { - "baseId": "28363|28363|28364|28365|28365|28365|28365|28366|28366|28366|28367|28367|28368|28369|28370|28370|28372|28372|28373|28379|28381|28382|28383|28384|45369|45370|48957|48959|48965|48972|48983|48986|48992|48994|48997|48998|49006|49010|49012|49023|49024|49028|49029|49031|49032|49032|49033|49036|49040|53765|53766|53775|70453|76574|138851|142546|142548|175395|175398|230259|316040|316041|316046|316051|316057|316064|316065|323294|323298|323300|323304|323305|323306|323307|329404|329406|329458|329467|329470|329471|329472|329473|329475|329476|329477|329478|329485|329521|330584|330589|330590|330591|330595|330611|330625|330626|330628|330630|330634|429364|481135|481136|481137|487580|582588|869289|869290|869291|869292|869293|869294|869295|869296|869297|869298|869299|869300|869301|869302|869303|869304|869305|869306|869307|869308|869309|869310|869311|869312|869313|869314|869315|869316|869317|919411|920310|964372", + "upstreamId": "28363|28363|28364|28365|28365|28365|28365|28366|28366|28366|28367|28367|28368|28369|28370|28370|28372|28372|28373|28379|28381|28382|28383|28384|45369|45370|48957|48959|48965|48972|48983|48986|48992|48994|48997|48998|49006|49010|49012|49023|49024|49028|49029|49031|49032|49032|49033|49036|49040|53765|53766|53775|70453|76574|138851|142546|142548|175395|175398|230259|316040|316041|316046|316051|316057|316064|316065|323294|323298|323300|323304|323305|323306|323307|329404|329406|329458|329467|329470|329471|329472|329473|329475|329476|329477|329478|329485|329521|330584|330589|330590|330591|330595|330611|330625|330626|330628|330630|330634|429364|481135|481136|481137|487580|582588|869289|869290|869291|869292|869293|869294|869295|869296|869297|869298|869299|869300|869301|869302|869303|869304|869305|869306|869307|869308|869309|869310|869311|869312|869313|869314|869315|869316|869317|919411|920310|964372", "text": "LEOPARD syndrome 1" }, { - "baseId": "28363|28364|28365|28365|28366|28367|28368|28370|28372|28372|28373|28379|28386|28387|28388|40225|40226|40227|40228|40229|40230|40231|40232|40233|45369|45370|48957|48959|48972|48983|48984|48986|48992|48994|48997|48998|49006|49010|49012|49028|49029|49032|49032|49040|49040|53765|53766|53766|53775|53778|138851|142546|142548|175395|175398|316040|316041|316045|316046|316051|316054|316057|316064|316065|323294|323298|323300|323301|323302|323303|323304|323305|323306|323307|329404|329406|329407|329458|329467|329470|329471|329472|329473|329475|329476|329477|329478|329485|329521|330584|330589|330590|330591|330595|330605|330607|330611|330625|330626|330628|330630|330634|429364|481135|481136|481137|487580|582588|791197|818296|869289|869290|869291|869292|869293|869294|869295|869296|869297|869298|869299|869300|869301|869302|869303|869304|869305|869306|869307|869308|869309|869310|869311|869312|869313|869314|869315|869316|869317|969669", + "upstreamId": "28363|28364|28365|28365|28366|28367|28368|28370|28372|28372|28373|28379|28386|28387|28388|40225|40226|40227|40228|40229|40230|40231|40232|40233|45369|45370|48957|48959|48972|48983|48984|48986|48992|48994|48997|48998|49006|49010|49012|49028|49029|49032|49032|49040|49040|53765|53766|53766|53775|53778|138851|142546|142548|175395|175398|316040|316041|316045|316046|316051|316054|316057|316064|316065|323294|323298|323300|323301|323302|323303|323304|323305|323306|323307|329404|329406|329407|329458|329467|329470|329471|329472|329473|329475|329476|329477|329478|329485|329521|330584|330589|330590|330591|330595|330605|330607|330611|330625|330626|330628|330630|330634|429364|481135|481136|481137|487580|582588|791197|818296|869289|869290|869291|869292|869293|869294|869295|869296|869297|869298|869299|869300|869301|869302|869303|869304|869305|869306|869307|869308|869309|869310|869311|869312|869313|869314|869315|869316|869317|969669", "text": "Metachondromatosis" }, { - "baseId": "28366|48993", + "upstreamId": "28366|48993", "text": "PTPN11 Related Disorders" }, { - "baseId": "28367|28367|28370|28381|28382|28383|28383|28996|28996|28999|28999|34193|34194|38762|48818|48988|48995|49016|49023|49024|49033|49036|49043|49288|53792|53987|53988|173750|179051|289310|292323|301998|302001|309875|310013|316045|316054|323301|323302|323303|329407|330605|330607|497522|653974", + "upstreamId": "28367|28367|28370|28381|28382|28383|28383|28996|28996|28999|28999|34193|34194|38762|48818|48988|48995|49016|49023|49024|49033|49036|49043|49288|53792|53987|53988|173750|179051|289310|292323|301998|302001|309875|310013|316045|316054|323301|323302|323303|329407|330605|330607|497522|653974", "text": "Noonan syndrome with multiple lentigines" }, { - "baseId": "28367|28846|28847|28848|28849|48871|48878|48882|48888|48889|48891|48894|48897|54364|54365|54368|54369|54370|54372|54375|54376|54378|70452|125841|125841|125842|137546|137547|137551|137552|140366|140367|140368|175068|175346|179156|179160|179163|179164|264601|312586|312604|312607|312608|312610|312611|312612|312616|312618|312620|312629|312630|312637|312639|312650|312655|312660|312663|312664|312665|312672|312681|312685|312688|312696|312697|312698|312705|312719|312728|312732|312733|312734|312738|312740|312741|312742|318571|318577|318588|318589|318593|318601|318603|318608|318609|318625|318626|318644|318648|318664|318686|318688|318699|318705|318706|318711|318712|318713|318718|318722|318724|318726|318729|318734|318735|318739|324722|324734|324736|324737|324739|324753|324763|324766|324771|324782|324784|324786|324789|324790|324794|324795|324800|324801|324805|324806|324808|324816|324817|324822|324824|324826|324828|324830|324831|325444|325446|325448|325477|325479|325481|325482|325483|325490|325508|325515|325527|325533|325535|325542|325546|325564|325571|325572|325573|325575|325576|325577|325581|325583|325586|325600|325614|325619|325630|325637|325655|325656|325659|325668|325692|325694|325696|361723|361724|361725|460920|460955|481134|494968|504109|514315|526034|538420|552646|567080|677434|680062|867135|867136|867137|867138|867139|867140|867141|867142|867143|867144|867145|867146|867147|867148|867149|867150|867151|867152|867153|867154|867155|867156|867157|867158|867159|867160|867161|867162|867163|867164|867165|867166|867167|867168|867169|867170|867171|867172|867173|867174|867175|867176|867177|867178|867179|867180|867181|867182|867183|867184|867185|867186|867187|867188|867189|867190|867191|867192|867193|867194|867195|867196|867197|867198|867199|919324|919325|919326|919327|964107", + "upstreamId": "28367|28846|28847|28848|28849|48871|48878|48882|48888|48889|48891|48894|48897|54364|54365|54368|54369|54370|54372|54375|54376|54378|70452|125841|125841|125842|137546|137547|137551|137552|140366|140367|140368|175068|175346|179156|179160|179163|179164|264601|312586|312604|312607|312608|312610|312611|312612|312616|312618|312620|312629|312630|312637|312639|312650|312655|312660|312663|312664|312665|312672|312681|312685|312688|312696|312697|312698|312705|312719|312728|312732|312733|312734|312738|312740|312741|312742|318571|318577|318588|318589|318593|318601|318603|318608|318609|318625|318626|318644|318648|318664|318686|318688|318699|318705|318706|318711|318712|318713|318718|318722|318724|318726|318729|318734|318735|318739|324722|324734|324736|324737|324739|324753|324763|324766|324771|324782|324784|324786|324789|324790|324794|324795|324800|324801|324805|324806|324808|324816|324817|324822|324824|324826|324828|324830|324831|325444|325446|325448|325477|325479|325481|325482|325483|325490|325508|325515|325527|325533|325535|325542|325546|325564|325571|325572|325573|325575|325576|325577|325581|325583|325586|325600|325614|325619|325630|325637|325655|325656|325659|325668|325692|325694|325696|361723|361724|361725|460920|460955|481134|494968|504109|514315|526034|538420|552646|567080|677434|680062|867135|867136|867137|867138|867139|867140|867141|867142|867143|867144|867145|867146|867147|867148|867149|867150|867151|867152|867153|867154|867155|867156|867157|867158|867159|867160|867161|867162|867163|867164|867165|867166|867167|867168|867169|867170|867171|867172|867173|867174|867175|867176|867177|867178|867179|867180|867181|867182|867183|867184|867185|867186|867187|867188|867189|867190|867191|867192|867193|867194|867195|867196|867197|867198|867199|919324|919325|919326|919327|964107", "text": "Noonan syndrome-like disorder with or without juvenile myelomonocytic leukemia" }, { - "baseId": "28370|48992", + "upstreamId": "28370|48992", "text": "PTPN11-related disorder" }, { - "baseId": "28372|152318", + "upstreamId": "28372|152318", "text": "B lymphoblastic leukemia lymphoma, no ICD-O subtype" }, { - "baseId": "28374|204572|204573|204574", + "upstreamId": "28374|204572|204573|204574", "text": "Early T cell progenitor acute lymphoblastic leukemia" }, { - "baseId": "28375|28377|28378|133499|152038|166215|226759|226760|362770|362772|363307|363308|363309|363314|427762|488237|495045|495046|495913|513987", + "upstreamId": "28375|28377|28378|133499|152038|166215|226759|226760|362770|362772|363307|363308|363309|363314|427762|488237|495045|495046|495913|513987", "text": "Astrocytoma" }, { - "baseId": "28375|29000|965412|965413", + "upstreamId": "28375|29000|965412|965413", "text": "Cancer" }, { - "baseId": "28389|28390|28390|28391|49212|49213|49251|188202|230599|264875|264875|362860|569565|624057|822305|857582", + "upstreamId": "28389|28390|28390|28391|49212|49213|49251|188202|230599|264875|264875|362860|569565|624057|822305|857582", "text": "Cardiofaciocutaneous syndrome 3" }, { - "baseId": "28390", + "upstreamId": "28390", "text": "Melorheostosis" }, { - "baseId": "28392|28393|28394|28395|28396|28397|28398|206996|285610|285611|285622|285624|285631|286339|286340|288641|288642|289041|289047|289053|428043|443218|485896|654118|654119|719787|719788|884457|884458|884459|884460|884461|884462|884463|884464|884465|884466", + "upstreamId": "28392|28393|28394|28395|28396|28397|28398|206996|285610|285611|285622|285624|285631|286339|286340|288641|288642|289041|289047|289053|428043|443218|485896|654118|654119|719787|719788|884457|884458|884459|884460|884461|884462|884463|884464|884465|884466", "text": "Proopiomelanocortin deficiency" }, { - "baseId": "28395", + "upstreamId": "28395", "text": "Obesity, early-onset, susceptibility to" }, { - "baseId": "28400|28401|28402|28405|28406|28413|28414|99987|253829|253830|253834|253835|253836|267598|310748|310749|310750|310752|310754|310757|310768|310771|310773|310774|310779|310781|310792|310793|310803|310804|316048|316049|316050|316052|316053|316055|316058|316059|316062|322105|322106|322113|322114|322116|322118|322124|322126|322147|322152|322727|322728|322729|322732|322761|322766|322775|322777|322778|322779|407907|432427|437863|437864|438867|553410|553411|563935|566479|639143|639144|712458|712459|712460|724053|724054|730706|737588|737589|737590|737591|752247|752248|752249|752250|752251|752252|752253|752254|767959|767960|767962|767963|767964|767965|767970|775547|775552|783729|783733|783735|783736|787867|802173|820239|822047|837276|837277|866168|866169|866170|866171|866172|866173|866174|866175|866176|866177|866178|866179|866180|866181|866182|868499|935168|956199|960728", + "upstreamId": "28400|28401|28402|28405|28406|28413|28414|99987|253829|253830|253834|253835|253836|267598|310748|310749|310750|310752|310754|310757|310768|310771|310773|310774|310779|310781|310792|310793|310803|310804|316048|316049|316050|316052|316053|316055|316058|316059|316062|322105|322106|322113|322114|322116|322118|322124|322126|322147|322152|322727|322728|322729|322732|322761|322766|322775|322777|322778|322779|407907|432427|437863|437864|438867|553410|553411|563935|566479|639143|639144|712458|712459|712460|724053|724054|730706|737588|737589|737590|737591|752247|752248|752249|752250|752251|752252|752253|752254|767959|767960|767962|767963|767964|767965|767970|775547|775552|783729|783733|783735|783736|787867|802173|820239|822047|837276|837277|866168|866169|866170|866171|866172|866173|866174|866175|866176|866177|866178|866179|866180|866181|866182|868499|935168|956199|960728", "text": "Sphingolipid activator protein 1 deficiency" }, { - "baseId": "28402|28404|28407|28412|55236|55237|55239|55244|55245|55246|55247|99987|137043|175007|175287|175289|253829|253830|253834|253835|253836|310742|310745|310748|310749|310750|310752|310754|310757|310768|310771|310773|310774|310779|310781|310792|310793|310803|310804|310806|310808|310811|316006|316010|316044|316047|316048|316049|316050|316052|316053|316055|316058|316059|316062|316063|322088|322102|322105|322106|322108|322109|322113|322114|322116|322118|322124|322126|322147|322152|322165|322166|322713|322714|322725|322726|322727|322728|322729|322732|322738|322761|322766|322775|322776|322777|322778|322779|353137|353139|353147|353148|353153|432427|767962|866168|866169|866170|866171|866172|866173|866174|866175|866176|866177|866178|866179|866180|866181|866182|868499", + "upstreamId": "28402|28404|28407|28412|55236|55237|55239|55244|55245|55246|55247|99987|137043|175007|175287|175289|253829|253830|253834|253835|253836|310742|310745|310748|310749|310750|310752|310754|310757|310768|310771|310773|310774|310779|310781|310792|310793|310803|310804|310806|310808|310811|316006|316010|316044|316047|316048|316049|316050|316052|316053|316055|316058|316059|316062|316063|322088|322102|322105|322106|322108|322109|322113|322114|322116|322118|322124|322126|322147|322152|322165|322166|322713|322714|322725|322726|322727|322728|322729|322732|322738|322761|322766|322775|322776|322777|322778|322779|353137|353139|353147|353148|353153|432427|767962|866168|866169|866170|866171|866172|866173|866174|866175|866176|866177|866178|866179|866180|866181|866182|868499", "text": "Combined saposin deficiency" }, { - "baseId": "28403|28404|28409|28410|28411|99987|253829|253830|253834|253835|253836|310748|310749|310750|310752|310754|310757|310768|310771|310773|310774|310779|310781|310792|310793|310803|310804|316048|316049|316050|316052|316053|316055|316058|316059|316062|322105|322106|322113|322114|322116|322118|322124|322126|322147|322152|322727|322728|322729|322732|322761|322766|322775|322777|322778|322779|432427|767962|866168|866169|866170|866171|866172|866173|866174|866175|866176|866177|866178|866179|866180|866181|866182|868499", + "upstreamId": "28403|28404|28409|28410|28411|99987|253829|253830|253834|253835|253836|310748|310749|310750|310752|310754|310757|310768|310771|310773|310774|310779|310781|310792|310793|310803|310804|316048|316049|316050|316052|316053|316055|316058|316059|316062|322105|322106|322113|322114|322116|322118|322124|322126|322147|322152|322727|322728|322729|322732|322761|322766|322775|322777|322778|322779|432427|767962|866168|866169|866170|866171|866172|866173|866174|866175|866176|866177|866178|866179|866180|866181|866182|868499", "text": "Gaucher disease, atypical, due to saposin C deficiency" }, { - "baseId": "28408|99987|253829|253830|253834|253835|253836|310748|310749|310750|310752|310754|310757|310768|310771|310773|310774|310779|310781|310792|310793|310803|310804|316048|316049|316050|316052|316053|316055|316058|316059|316062|322105|322106|322113|322114|322116|322118|322124|322126|322147|322152|322727|322728|322729|322732|322761|322766|322775|322777|322778|322779|432427|767962|866168|866169|866170|866171|866172|866173|866174|866175|866176|866177|866178|866179|866180|866181|866182|868499", + "upstreamId": "28408|99987|253829|253830|253834|253835|253836|310748|310749|310750|310752|310754|310757|310768|310771|310773|310774|310779|310781|310792|310793|310803|310804|316048|316049|316050|316052|316053|316055|316058|316059|316062|322105|322106|322113|322114|322116|322118|322124|322126|322147|322152|322727|322728|322729|322732|322761|322766|322775|322777|322778|322779|432427|767962|866168|866169|866170|866171|866172|866173|866174|866175|866176|866177|866178|866179|866180|866181|866182|868499", "text": "Krabbe disease, atypical, due to saposin A deficiency" }, { - "baseId": "28415", + "upstreamId": "28415", "text": "Skeletal defects, genital hypoplasia, and mental retardation" }, { - "baseId": "28416|28417|28418|28419|28420|28421|28422", + "upstreamId": "28416|28417|28418|28419|28420|28421|28422", "text": "Hyperproinsulinemia" }, { - "baseId": "28426|28427|28428|33966|33969|33974|263780", + "upstreamId": "28426|28427|28428|33966|33969|33974|263780", "text": "Permanent neonatal diabetes mellitus 4" }, { - "baseId": "28429|28430|45062|79619|134725|247779|254105|254106|313620|313624|319803|319804|319810|319823|319825|319828|325998|326977|326978|609052|737916|867734|868641|919349", + "upstreamId": "28429|28430|45062|79619|134725|247779|254105|254106|313620|313624|319803|319804|319810|319823|319825|319828|325998|326977|326978|609052|737916|867734|868641|919349", "text": "Maturity-onset diabetes of the young, type 10" }, { - "baseId": "28431|33974", + "upstreamId": "28431|33974", "text": "Diabetes mellitus, insulin-dependent, 2" }, { - "baseId": "28433|28436|28437|28442|28444|28445|28450|94480", + "upstreamId": "28433|28436|28437|28442|28444|28445|28450|94480", "text": "Jakob-Creutzfeldt disease" }, { - "baseId": "28433|28434|28435|28440|28441|28443|28449|28451|28453|28454|94479|94484", + "upstreamId": "28433|28434|28435|28440|28441|28443|28449|28451|28453|28454|94479|94484", "text": "Gerstmann-Straussler-Scheinker syndrome" }, { - "baseId": "28433|28434|28436|28437|28438|28440|28442|28444|28445|28447|28448|76402|215591|335703|345428|345429|345431|345433|351099|351103|534134|573567|705521|705522|848464", + "upstreamId": "28433|28434|28436|28437|28438|28440|28442|28444|28445|28447|28448|76402|215591|335703|345428|345429|345431|345433|351099|351103|534134|573567|705521|705522|848464", "text": "Huntington disease-like 1" }, { - "baseId": "28433|28434|28435|28436|28437|28438|28440|28441|28442|28443|28444|28445|28446|28447|28448|28450|28451|28452|28454|33999|34000|76402|215591|335689|335690|335703|335704|335706|335707|345414|345418|345420|345422|345428|345429|345431|345433|345446|345448|345450|345451|345453|345455|350066|350068|350069|350070|350073|350074|350075|350076|351099|351103|351107|351108|351109|351110|351113|351114|351116|351117|886222|886223|886224|886225|886226|886227|886228|886229|886230|886231|886232", + "upstreamId": "28433|28434|28435|28436|28437|28438|28440|28441|28442|28443|28444|28445|28446|28447|28448|28450|28451|28452|28454|33999|34000|76402|215591|335689|335690|335703|335704|335706|335707|345414|345418|345420|345422|345428|345429|345431|345433|345446|345448|345450|345451|345453|345455|350066|350068|350069|350070|350073|350074|350075|350076|351099|351103|351107|351108|351109|351110|351113|351114|351116|351117|886222|886223|886224|886225|886226|886227|886228|886229|886230|886231|886232", "text": "Genetic prion disease" }, { - "baseId": "28436", + "upstreamId": "28436", "text": "Prion disease, susceptibility to" }, { - "baseId": "28436", + "upstreamId": "28436", "text": "Alzheimer disease, early-onset, susceptibility to" }, { - "baseId": "28436", + "upstreamId": "28436", "text": "Aphasia, primary progressive, susceptibility to" }, { - "baseId": "28437", + "upstreamId": "28437", "text": "Fatal familial insomnia" }, { - "baseId": "28446|28447|28451|28452|446895|446896", + "upstreamId": "28446|28447|28451|28452|446895|446896", "text": "Spongiform encephalopathy with neuropsychiatric features" }, { - "baseId": "28448", + "upstreamId": "28448", "text": "Protection against Creutzfeldt-Jakob disease" }, { - "baseId": "28455", + "upstreamId": "28455", "text": "Kuru, protection against" }, { - "baseId": "28456|28465|28470|28492|28493|179808", + "upstreamId": "28456|28465|28470|28492|28493|179808", "text": "Dystransthyretinemic euthyroidal hyperthyroxinemia" }, { - "baseId": "28456|28465|28492|179808|245092", + "upstreamId": "28456|28465|28492|179808|245092", "text": "Carpal tunnel syndrome" }, { - "baseId": "28464|28491", + "upstreamId": "28464|28491", "text": "TRANSTHYRETIN POLYMORPHISM" }, { - "baseId": "28465", + "upstreamId": "28465", "text": "Amyloid Cardiomyopathy, Transthyretin-related" }, { - "baseId": "28465|378413|615637", + "upstreamId": "28465|378413|615637", "text": "Pancytopenia" }, { - "baseId": "28465|226418|378413|590067|590098|966329|966331", + "upstreamId": "28465|226418|378413|590067|590098|966329|966331", "text": "Bone marrow hypocellularity" }, { - "baseId": "28465|30100|30200|30372|30694|360899|378413|513937|800975|800982|801226|801230|801247|857396", + "upstreamId": "28465|30100|30200|30372|30694|360899|378413|513937|800975|800982|801226|801230|801247|857396", "text": "Anemia" }, { - "baseId": "28465", + "upstreamId": "28465", "text": "ATTRV122I amyloidosis" }, { - "baseId": "28465", + "upstreamId": "28465", "text": "Postural tremor" }, { - "baseId": "28466|33195|40479|53708|54876|55760|55779|56325|56349|56354|56601|101339|172615|189264|265307|460115|488925|509961|520740|679409", + "upstreamId": "28466|33195|40479|53708|54876|55760|55779|56325|56349|56354|56601|101339|172615|189264|265307|460115|488925|509961|520740|679409", "text": "Heart failure" }, { - "baseId": "28473", + "upstreamId": "28473", "text": "AMYLOIDOSIS, HEREDITARY, TRANSTHYRETIN-RELATED, MODIFIER OF" }, { - "baseId": "28488", + "upstreamId": "28488", "text": "Carpal tunnel syndrome, familial" }, { - "baseId": "28500|28501|28502|28504|28505|28506", + "upstreamId": "28500|28501|28502|28504|28505|28506", "text": "AMYLOIDOSIS, LEPTOMENINGEAL, TRANSTHYRETIN-RELATED" }, { - "baseId": "28508|28509|28510|28511|132634|132635|189345|189346|189348|189349|189350|189351|189352|189353|189354|189356|189357|254607|317548|317549|317551|317552|317562|325380|325381|325387|331616|331621|331622|331625|333126|333129|333133|333135|360948|462262|462270|462276|462280|462286|462292|462511|462519|462525|462528|462538|462540|462542|462545|463008|463016|463140|463145|463149|463153|463156|463158|463166|463167|514020|527200|527207|527208|527210|527211|527216|527217|527454|527456|527460|527461|527756|527767|565534|565541|566861|566866|566871|566872|566879|568088|568090|571881|587516|641186|641187|641188|641189|641190|641191|641192|641193|641194|641195|684330|688004|688005|688006|688007|688011|688012|725141|738695|738696|769179|769180|840004|840005|840006|840007|840008|840009|840010|840011|840012|840013|840014|840015|840016|840017|840018|840019|840020|840021|870021|870022|870023|870024|870025|870026|870027|870028|870029|870030|870031|870032|870033|870034|919448|919449|926657|926658|926659|936148|936149|948059|948060|948061|948062|948063|948064|948065|956896|956897", + "upstreamId": "28508|28509|28510|28511|132634|132635|189345|189346|189348|189349|189350|189351|189352|189353|189354|189356|189357|254607|317548|317549|317551|317552|317562|325380|325381|325387|331616|331621|331622|331625|333126|333129|333133|333135|360948|462262|462270|462276|462280|462286|462292|462511|462519|462525|462528|462538|462540|462542|462545|463008|463016|463140|463145|463149|463153|463156|463158|463166|463167|514020|527200|527207|527208|527210|527211|527216|527217|527454|527456|527460|527461|527756|527767|565534|565541|566861|566866|566871|566872|566879|568088|568090|571881|587516|641186|641187|641188|641189|641190|641191|641192|641193|641194|641195|684330|688004|688005|688006|688007|688011|688012|725141|738695|738696|769179|769180|840004|840005|840006|840007|840008|840009|840010|840011|840012|840013|840014|840015|840016|840017|840018|840019|840020|840021|870021|870022|870023|870024|870025|870026|870027|870028|870029|870030|870031|870032|870033|870034|919448|919449|926657|926658|926659|936148|936149|948059|948060|948061|948062|948063|948064|948065|956896|956897", "text": "Atrial fibrillation, familial, 7" }, { - "baseId": "28512|28513|190461|205316|245205|272412|272421|442245|512879|512880|513379|577817|791944|791945|964525", + "upstreamId": "28512|28513|190461|205316|245205|272412|272421|442245|512879|512880|513379|577817|791944|791945|964525", "text": "Spinocerebellar ataxia type 13" }, { - "baseId": "28514|28515|28516|28518|136399|136421|136425|136427|136431|176235|176358|231116|336618|336619|336622|336628|336632|336636|336638|336641|336648|336656|336659|336663|336668|336670|336674|346327|346329|346330|346335|346336|346337|346339|346340|346343|346344|346347|346349|346350|346351|346352|346354|350566|350568|350569|350571|350572|350574|350575|350577|350578|350583|350586|350589|350592|350593|351609|351612|351613|351616|351619|351620|351623|351628|351636|351637|351639|351640|351644|351645|351647|351648|351650|497529|507490|537651|537652|537653|848735|886695|886696|886697|886698|886699|886700|886701|886702|886703|886704|886705|886706|886707|886708|886709|886710|886711|886712|886713|886714|886715", + "upstreamId": "28514|28515|28516|28518|136399|136421|136425|136427|136431|176235|176358|231116|336618|336619|336622|336628|336632|336636|336638|336641|336648|336656|336659|336663|336668|336670|336674|346327|346329|346330|346335|346336|346337|346339|346340|346343|346344|346347|346349|346350|346351|346352|346354|350566|350568|350569|350571|350572|350574|350575|350577|350578|350583|350586|350589|350592|350593|351609|351612|351613|351616|351619|351620|351623|351628|351636|351637|351639|351640|351644|351645|351647|351648|351650|497529|507490|537651|537652|537653|848735|886695|886696|886697|886698|886699|886700|886701|886702|886703|886704|886705|886706|886707|886708|886709|886710|886711|886712|886713|886714|886715", "text": "Jervell and Lange-Nielsen syndrome 2" }, { - "baseId": "28516|28517|28518|136399|136418|136421|136424|136426|136427|176235|176358|231116|336618|336619|336622|336628|336632|336636|336638|336641|336648|336656|336659|336663|336668|336670|336674|346327|346329|346330|346335|346336|346337|346339|346340|346343|346344|346347|346349|346350|346351|346352|346354|350566|350568|350569|350571|350572|350574|350575|350577|350578|350583|350586|350589|350592|350593|351609|351612|351613|351616|351619|351620|351623|351628|351636|351637|351639|351640|351644|351645|351647|351648|351650|497529|507490|589845|680057|848735|886695|886696|886697|886698|886699|886700|886701|886702|886703|886704|886705|886706|886707|886708|886709|886710|886711|886712|886713|886714|886715", + "upstreamId": "28516|28517|28518|136399|136418|136421|136424|136426|136427|176235|176358|231116|336618|336619|336622|336628|336632|336636|336638|336641|336648|336656|336659|336663|336668|336670|336674|346327|346329|346330|346335|346336|346337|346339|346340|346343|346344|346347|346349|346350|346351|346352|346354|350566|350568|350569|350571|350572|350574|350575|350577|350578|350583|350586|350589|350592|350593|351609|351612|351613|351616|351619|351620|351623|351628|351636|351637|351639|351640|351644|351645|351647|351648|351650|497529|507490|589845|680057|848735|886695|886696|886697|886698|886699|886700|886701|886702|886703|886704|886705|886706|886707|886708|886709|886710|886711|886712|886713|886714|886715", "text": "Long QT syndrome 5" }, { - "baseId": "28516|51661|67638|67718|67740|77926|141708|187117|197424|313787|313794|313799|313800|313812|313813|313817|319980|319984|319986|319987|319988|320021|320022|320025|326169|326170|326178|326190|326206|326214|327120|327127|327130|336624|336627|336647|346356|350579|350595|350597|351633|351642|353590", + "upstreamId": "28516|51661|67638|67718|67740|77926|141708|187117|197424|313787|313794|313799|313800|313812|313813|313817|319980|319984|319986|319987|319988|320021|320022|320025|326169|326170|326178|326190|326206|326214|327120|327127|327130|336624|336627|336647|346356|350579|350595|350597|351633|351642|353590", "text": "Jervell and Lange-Nielsen syndrome" }, { - "baseId": "28518", + "upstreamId": "28518", "text": "Long QT syndrome 5, acquired, susceptibility to" }, { - "baseId": "28518|29479", + "upstreamId": "28518|29479", "text": "Long QT syndrome 2/5" }, { - "baseId": "28519|28520|28521|28522|28523|28524|28525|28526|28527|28530|28531|33979|33980|33982|134759|192204|192205|192206|192207|274919|317386|317387|317395|317398|317401|317404|317407|317412|317415|317416|317418|317428|317433|317435|317451|317452|317456|317458|317463|317465|317470|325231|325232|325236|325238|325240|325255|325260|325265|325267|325271|325273|325279|325285|325287|325288|325294|325295|325296|325316|325326|331460|331461|331463|331468|331474|331475|331487|331488|331489|331495|331500|331501|331511|331539|331540|331542|331561|331563|331564|331565|331579|331582|331598|331600|332852|332867|332877|332887|332891|332895|332906|332918|332919|332921|332922|332923|332925|332931|332944|332947|332950|332955|332959|332969|332977|332979|332986|332996|332998|333005|333012|333013|333026|333027|333033|361311|424900|441551|441552|441553|445033|462249|462252|462258|462259|462503|462504|462507|527204|565532|566859|571880|577273|577277|641181|641182|641183|641184|641185|693223|702340|702342|713555|738681|820504|839993|839994|839995|839996|839997|839998|839999|869931|869932|869933|869934|869935|869936|869937|869938|869939|869940|869941|869942|869943|869944|869945|869946|869947|869948|869949|869950|869951|869952|869953|869954|869955|869956|869957|869958|869959|869960|869961|869962|869963|869964|869965|869966|869967|869968|869969|869970|869971|869972|869973|869974|869975|869976|869977|869978|869979|926653|926654|926655|926656|936146|936147|948051|948052|948053|948054|948055|948056|948057|956894|956895", + "upstreamId": "28519|28520|28521|28522|28523|28524|28525|28526|28527|28530|28531|33979|33980|33982|134759|192204|192205|192206|192207|274919|317386|317387|317395|317398|317401|317404|317407|317412|317415|317416|317418|317428|317433|317435|317451|317452|317456|317458|317463|317465|317470|325231|325232|325236|325238|325240|325255|325260|325265|325267|325271|325273|325279|325285|325287|325288|325294|325295|325296|325316|325326|331460|331461|331463|331468|331474|331475|331487|331488|331489|331495|331500|331501|331511|331539|331540|331542|331561|331563|331564|331565|331579|331582|331598|331600|332852|332867|332877|332887|332891|332895|332906|332918|332919|332921|332922|332923|332925|332931|332944|332947|332950|332955|332959|332969|332977|332979|332986|332996|332998|333005|333012|333013|333026|333027|333033|361311|424900|441551|441552|441553|445033|462249|462252|462258|462259|462503|462504|462507|527204|565532|566859|571880|577273|577277|641181|641182|641183|641184|641185|693223|702340|702342|713555|738681|820504|839993|839994|839995|839996|839997|839998|839999|869931|869932|869933|869934|869935|869936|869937|869938|869939|869940|869941|869942|869943|869944|869945|869946|869947|869948|869949|869950|869951|869952|869953|869954|869955|869956|869957|869958|869959|869960|869961|869962|869963|869964|869965|869966|869967|869968|869969|869970|869971|869972|869973|869974|869975|869976|869977|869978|869979|926653|926654|926655|926656|936146|936147|948051|948052|948053|948054|948055|948056|948057|956894|956895", "text": "Episodic ataxia type 1" }, { - "baseId": "28528|28529|28532", + "upstreamId": "28528|28529|28532", "text": "Myokymia 1" }, { - "baseId": "28533", + "upstreamId": "28533", "text": "Myokymia 1 with hypomagnesemia" }, { - "baseId": "28534|28535|28541|28541|28547|28548|28552|28553|76573|142453|142463|190806|193515|202922|202990|203013|203030|203044|203050|242144|445459|539063|576169|610742|614404|677036|682353|682358", + "upstreamId": "28534|28535|28541|28541|28547|28548|28552|28553|76573|142453|142463|190806|193515|202922|202990|203013|203030|203044|203050|242144|445459|539063|576169|610742|614404|677036|682353|682358", "text": "Autosomal dominant progressive external ophthalmoplegia with mitochondrial DNA deletions 1" }, { - "baseId": "28535|28536|28537|28541|28541|28542|28544|28551|28552|28552|76573|142453|142463|190806|193515|202922|202990|203013|203028|203030|203050|242144|264639|576169|614404|972490", + "upstreamId": "28535|28536|28537|28541|28541|28542|28544|28551|28552|28552|76573|142453|142463|190806|193515|202922|202990|203013|203028|203030|203050|242144|264639|576169|614404|972490", "text": "Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal recessive 1" }, { - "baseId": "28535|28546|28549", + "upstreamId": "28535|28546|28549", "text": "Myoclonic epilepsy myopathy sensory ataxia" }, { - "baseId": "28535|28540|28541|28542|28546|28548|28552|34162|34163|34164|34168|34170|34172|76573|135435|135436|135437|135438|135439|135440|135443|135445|142446|142447|142448|142449|142450|142451|142453|142455|142456|142457|142458|142459|142463|142469|142472|142475|142478|142479|142480|142482|177972|191896|192343|192648|193515|195312|202902|202928|202938|202940|202951|202955|202973|202975|202976|202978|202990|202996|203006|203013|203019|203024|203034|203036|203045|203048|203069|255389|264890|323491|323492|323499|323502|323507|323510|323514|323515|323523|323524|333243|333247|333252|333256|333262|333263|333274|340022|340026|340029|340031|340032|340034|340038|340039|341436|341440|341442|341443|341446|341447|341448|341451|341453|341454|373804|376794|400903|409375|445463|529683|569200|584698|610721|610779|610783|874251|874252|874253|874255|874256|874257|874258|874259|874260|874261|874262|874263|874264|874265|874266|874267", + "upstreamId": "28535|28540|28541|28542|28546|28548|28552|34162|34163|34164|34168|34170|34172|76573|135435|135436|135437|135438|135439|135440|135443|135445|142446|142447|142448|142449|142450|142451|142453|142455|142456|142457|142458|142459|142463|142469|142472|142475|142478|142479|142480|142482|177972|191896|192343|192648|193515|195312|202902|202928|202938|202940|202951|202955|202973|202975|202976|202978|202990|202996|203006|203013|203019|203024|203034|203036|203045|203048|203069|255389|264890|323491|323492|323499|323502|323507|323510|323514|323515|323523|323524|333243|333247|333252|333256|333262|333263|333274|340022|340026|340029|340031|340032|340034|340038|340039|341436|341440|341442|341443|341446|341447|341448|341451|341453|341454|373804|376794|400903|409375|445463|529683|569200|584698|610721|610779|610783|874251|874252|874253|874255|874256|874257|874258|874259|874260|874261|874262|874263|874264|874265|874266|874267", "text": "POLG-Related Spectrum Disorders" }, { - "baseId": "28535", + "upstreamId": "28535", "text": "POLG- Related Disorders" }, { - "baseId": "28535", + "upstreamId": "28535", "text": "POLG-related condition" }, { - "baseId": "28535|193515|202940|376748|426135|441759|610770", + "upstreamId": "28535|193515|202940|376748|426135|441759|610770", "text": "POLG-related disorders" }, { - "baseId": "28541", + "upstreamId": "28541", "text": "POLG- Related Disorder" }, { - "baseId": "28554", + "upstreamId": "28554", "text": "Abnormality of corpus callosum" }, { - "baseId": "28556|28557|28558|28559|28560|28561|28562|28563|28564|48615|48616|98699|98702|98703|98705|190244|221477|221478|221479|221480|239510|251600|251601|251602|251603|251605|263858|264213|271631|273640|294560|294561|294562|294569|294581|294583|294584|294585|294592|294595|294603|294609|294611|294615|294623|294627|296105|296114|296117|296118|296119|296121|296123|296124|296126|296129|296131|296134|299796|299806|299826|299827|299828|299834|299837|299842|299843|299884|299885|299886|299887|299891|299898|299902|299905|299907|360862|384403|384480|390696|394265|424508|424583|427228|432293|432993|432994|432996|432998|440852|440855|440858|443643|453845|454040|513057|513058|513954|514499|520284|520287|520555|520561|550230|553432|553480|590274|590275|590276|609555|609560|613481|622101|623279|623280|623281|624283|624285|624290|625831|672059|683647|790487|793065|799373|799374|799375|799376|799377|799378|799379|799380|799381|799382|799383|799384|799385|799386|799387|815963|815964|818235|818236|861458|861459|861460|861461|861462|861463|861464|861465|861466|861467|892469|892470|892471|892472|892473|892474|892475|892476|892477|892478|892479|892480|892481|892482|892483|892484|892485|892486|892487|892488|892489|892490|892491|892492|892493|892494|892495|892496|892497|892498|892499|892500|892501|892502|892503|892504|892505|892506|918906|918907|918908|918909|918910|918911|960998|960999|962704|962705|962832|963392|980322|980918", + "upstreamId": "28556|28557|28558|28559|28560|28561|28562|28563|28564|48615|48616|98699|98702|98703|98705|190244|221477|221478|221479|221480|239510|251600|251601|251602|251603|251605|263858|264213|271631|273640|294560|294561|294562|294569|294581|294583|294584|294585|294592|294595|294603|294609|294611|294615|294623|294627|296105|296114|296117|296118|296119|296121|296123|296124|296126|296129|296131|296134|299796|299806|299826|299827|299828|299834|299837|299842|299843|299884|299885|299886|299887|299891|299898|299902|299905|299907|360862|384403|384480|390696|394265|424508|424583|427228|432293|432993|432994|432996|432998|440852|440855|440858|443643|453845|454040|513057|513058|513954|514499|520284|520287|520555|520561|550230|553432|553480|590274|590275|590276|609555|609560|613481|622101|623279|623280|623281|624283|624285|624290|625831|672059|683647|790487|793065|799373|799374|799375|799376|799377|799378|799379|799380|799381|799382|799383|799384|799385|799386|799387|815963|815964|818235|818236|861458|861459|861460|861461|861462|861463|861464|861465|861466|861467|892469|892470|892471|892472|892473|892474|892475|892476|892477|892478|892479|892480|892481|892482|892483|892484|892485|892486|892487|892488|892489|892490|892491|892492|892493|892494|892495|892496|892497|892498|892499|892500|892501|892502|892503|892504|892505|892506|918906|918907|918908|918909|918910|918911|960998|960999|962704|962705|962832|963392|980322|980918", "text": "Polycystic kidney disease 2" }, { - "baseId": "28557|28561|98699|98702|98703|98705|190113|190244|221476|221477|221478|221479|221480|226951|239510|251600|251601|251603|251605|255505|255507|255510|255511|255512|255514|255515|255518|255532|255533|255535|255541|255545|255546|255547|255548|255550|255553|255558|255563|255566|255570|255571|255575|255578|255582|255585|255589|255592|255596|255604|255611|255613|255616|255617|255621|255623|255631|255634|255635|255637|255640|255642|255645|255647|255648|255655|255662|255668|271631|273640|294581|294594|294621|296114|296119|299840|299898|299900|299908|360989|394265|424508|427226|427228|427445|427499|427508|427512|432293|432996|433156|433157|433161|433175|433181|433187|433188|433189|433190|433193|433214|433221|433223|440850|440852|440858|441850|441874|441886|453259|453591|453593|453845|453855|454029|454039|454040|495789|520284|520287|520555|520561|550558|553446|553486|553502|559706|559819|562284|564100|581288|581291|581294|610008|610012|610020|622101|624552|632517|632518|632519|632520|632521|632522|632523|632524|632525|632526|683647|683650|686563|764638|793613|793617|799381|819502|829513|829514|829515|829516|829517|829518|829519|860228|892486|932462|932463|944140|944141|953860|953861|953862|961208|964928|964929|964930|964931|964932|964933|964934|964935|964936|964937|964938|964939|964940|964941|964942|964943|964944|964945|964946|964947|964948|964949|964950|964951|964952|964953|964954|964955|964956|964957|964958|964959|964960|964961|964962|964963|964964|964965|964966|964967|964968|964969|964970|964971|964972|964973|964974|964975|964976|966192", + "upstreamId": "28557|28561|98699|98702|98703|98705|190113|190244|221476|221477|221478|221479|221480|226951|239510|251600|251601|251603|251605|255505|255507|255510|255511|255512|255514|255515|255518|255532|255533|255535|255541|255545|255546|255547|255548|255550|255553|255558|255563|255566|255570|255571|255575|255578|255582|255585|255589|255592|255596|255604|255611|255613|255616|255617|255621|255623|255631|255634|255635|255637|255640|255642|255645|255647|255648|255655|255662|255668|271631|273640|294581|294594|294621|296114|296119|299840|299898|299900|299908|360989|394265|424508|427226|427228|427445|427499|427508|427512|432293|432996|433156|433157|433161|433175|433181|433187|433188|433189|433190|433193|433214|433221|433223|440850|440852|440858|441850|441874|441886|453259|453591|453593|453845|453855|454029|454039|454040|495789|520284|520287|520555|520561|550558|553446|553486|553502|559706|559819|562284|564100|581288|581291|581294|610008|610012|610020|622101|624552|632517|632518|632519|632520|632521|632522|632523|632524|632525|632526|683647|683650|686563|764638|793613|793617|799381|819502|829513|829514|829515|829516|829517|829518|829519|860228|892486|932462|932463|944140|944141|953860|953861|953862|961208|964928|964929|964930|964931|964932|964933|964934|964935|964936|964937|964938|964939|964940|964941|964942|964943|964944|964945|964946|964947|964948|964949|964950|964951|964952|964953|964954|964955|964956|964957|964958|964959|964960|964961|964962|964963|964964|964965|964966|964967|964968|964969|964970|964971|964972|964973|964974|964975|964976|966192", "text": "Autosomal dominant polycystic kidney disease" }, { - "baseId": "28565", + "upstreamId": "28565", "text": "Berger disease" }, { - "baseId": "28566|28567", + "upstreamId": "28566|28567", "text": "SELECTIN P POLYMORPHISM" }, { - "baseId": "28568|28569|28570|28571|28572|28573", + "upstreamId": "28568|28569|28570|28571|28572|28573", "text": "Bernard-Soulier syndrome type C" }, { - "baseId": "28568|28572|193388|250908|250909|288697|289405|289406|289407|289408|292421|292427|292440|292610|292611|353614|404833|429986|514274|576180|615646|615649|620752|720140|733766|887910|887911|887912|887913|887914|887915|887916|887917|887918|887919|891562|980909", + "upstreamId": "28568|28572|193388|250908|250909|288697|289405|289406|289407|289408|292421|292427|292440|292610|292611|353614|404833|429986|514274|576180|615646|615649|620752|720140|733766|887910|887911|887912|887913|887914|887915|887916|887917|887918|887919|891562|980909", "text": "Bernard Soulier syndrome" }, { - "baseId": "28574|28575|28576|28577|28578|28579|28580|227310|227311|303443|303446|303448|303452|303453|306836|306837|306842|306843|306844|306845|306846|306850|306857|306869|311683|311685|311691|311697|311698|311699|311701|311703|311717|311718|311757|311759|311770|311772|311784|311791|311794|311795|311801|404771|404771|404772|404773|404773|620270|620271|620272|620273|620274|620275|620799|620800|620801|620802|679757|679758|711137|730513|736286|796071|861594|898413|898414|898415|898416|898417|898418|898419|898420|898421|898422|898423|898424|898425|898426|898427|898428|898429|898430|898431|898432|898433|898434|898435|898436|898437|898438|898439|898440|898441|898442|898443|898444|898445|898446|900403|900404|900405|900406|900407|961852|975889", + "upstreamId": "28574|28575|28576|28577|28578|28579|28580|227310|227311|303443|303446|303448|303452|303453|306836|306837|306842|306843|306844|306845|306846|306850|306857|306869|311683|311685|311691|311697|311698|311699|311701|311703|311717|311718|311757|311759|311770|311772|311784|311791|311794|311795|311801|404771|404771|404772|404773|404773|620270|620271|620272|620273|620274|620275|620799|620800|620801|620802|679757|679758|711137|730513|736286|796071|861594|898413|898414|898415|898416|898417|898418|898419|898420|898421|898422|898423|898424|898425|898426|898427|898428|898429|898430|898431|898432|898433|898434|898435|898436|898437|898438|898439|898440|898441|898442|898443|898444|898445|898446|900403|900404|900405|900406|900407|961852|975889", "text": "Platelet glycoprotein IV deficiency" }, { - "baseId": "28574|404848|615436", + "upstreamId": "28574|404848|615436", "text": "Inherited bleeding disorder, platelet-type" }, { - "baseId": "28577|32792", + "upstreamId": "28577|32792", "text": "Malaria, cerebral, resistance to" }, { - "baseId": "28585|28590|28591|453597|623608|623609", + "upstreamId": "28585|28590|28591|453597|623608|623609", "text": "Polyps, multiple and recurrent inflammatory fibroid, gastrointestinal" }, { - "baseId": "28589", + "upstreamId": "28589", "text": "Hypereosinophilic syndrome, idiopathic, resistant to imatinib" }, { - "baseId": "28596", + "upstreamId": "28596", "text": "PEN(a)/PEN(b) ALLOANTIGEN POLYMORPHISM" }, { - "baseId": "28597", + "upstreamId": "28597", "text": "PL(A1)/(A2) ALLOANTIGEN POLYMORPHISM" }, { - "baseId": "28598", + "upstreamId": "28598", "text": "Mo ALLOANTIGEN POLYMORPHISM" }, { - "baseId": "28600", + "upstreamId": "28600", "text": "Ca/Tu ALLOANTIGEN POLYMORPHISM" }, { - "baseId": "28610|28612|301272|301273|301278|301279|301281|301282|301284|301289|304466|304467|304468|304476|304483|304486|309077|309079|309081|309082|309170|309171|309173|309175|309176|309180|309193|309196|309200|309202|309203|309205|309211|309217|309218|309221|309223|309225|480748|480749|550804|722204|777786|897054|897055|897056|897057|897058|897059|897060|897061|897062|897063|897064|897065|897066|897067|897068|897069|897070|897071|897072|897073|897074|897075|897076|897077|897078|897079|897080|897081|897082|897083|897084|900285|900286|900287", + "upstreamId": "28610|28612|301272|301273|301278|301279|301281|301282|301284|301289|304466|304467|304468|304476|304483|304486|309077|309079|309081|309082|309170|309171|309173|309175|309176|309180|309193|309196|309200|309202|309203|309205|309211|309217|309218|309221|309223|309225|480748|480749|550804|722204|777786|897054|897055|897056|897057|897058|897059|897060|897061|897062|897063|897064|897065|897066|897067|897068|897069|897070|897071|897072|897073|897074|897075|897076|897077|897078|897079|897080|897081|897082|897083|897084|900285|900286|900287", "text": "Congenital plasminogen activator inhibitor type 1 deficiency" }, { - "baseId": "28611", + "upstreamId": "28611", "text": "Transcription level of plasminogen activator inhibitor 1" }, { - "baseId": "28613|28614|28615|28619", + "upstreamId": "28613|28614|28615|28619", "text": "Dysplasminogenemia" }, { - "baseId": "28613|28616|28617|28618|28620|28621|28622|87115|615413|615414|615725|818636|919015", + "upstreamId": "28613|28616|28617|28618|28620|28621|28622|87115|615413|615414|615725|818636|919015", "text": "Plasminogen deficiency, type I" }, { - "baseId": "28622|213961|213962|241599|373488|373500|608923|608924|608925|608926|608927|608929|614671|614672|614673|614674|614675|614676|614677|679943|679944|679945|679946|685389", + "upstreamId": "28622|213961|213962|241599|373488|373500|608923|608924|608925|608926|608927|608929|614671|614672|614673|614674|614675|614676|614677|679943|679944|679945|679946|685389", "text": "Otitis media, susceptibility to" }, { - "baseId": "28624|28625|28626|28627|28628|28629|28630|28631|28633|28636|28637|38797|38798|38799|170937|170938|190498|190851|192018|193046|266324|269091|270014|298997|299002|299009|299010|299013|299017|299018|299023|299027|299032|299033|299034|299038|299056|299057|299062|299065|299068|299072|299076|299085|299088|299089|299090|301411|301415|301416|301417|301432|301433|301438|301440|301441|301456|301459|301460|301463|301464|301465|301466|301467|301468|301469|301470|301476|301486|301487|301490|301491|301492|301502|305802|305803|305804|305805|305806|305807|305808|305814|305815|305821|305829|305832|305834|305835|305841|305843|305844|305848|305850|305853|305854|305856|305863|305868|305871|305872|305873|305875|306028|306031|306033|306046|306048|306054|306055|306059|306068|306070|306071|306074|306076|306080|306081|306089|306091|306092|306096|306100|306105|306106|306107|306113|306114|306115|306116|306117|306122|306125|306128|306129|353743|428520|538382|538383|538383|552092|552093|587222|622833|710176|735417|735419|788792|798568|858556|858557|895327|895328|895329|895330|895331|895332|895333|895334|895335|895336|895337|895338|895339|895340|895341|895342|895343|895344|895345|895346|895347|895348|895349|895350|895351|895352|895353|895354|895355|895356|895357|895358|895359|895360|895361|895362|895363|895364|895365|895366|895367|895368|895369|895370|895371|895372|895373|895374|895375|895376|895377|895378|895379|895380|895381|895382|895383|896186|896187|896188|896189|896190|976532", + "upstreamId": "28624|28625|28626|28627|28628|28629|28630|28631|28633|28636|28637|38797|38798|38799|170937|170938|190498|190851|192018|193046|266324|269091|270014|298997|299002|299009|299010|299013|299017|299018|299023|299027|299032|299033|299034|299038|299056|299057|299062|299065|299068|299072|299076|299085|299088|299089|299090|301411|301415|301416|301417|301432|301433|301438|301440|301441|301456|301459|301460|301463|301464|301465|301466|301467|301468|301469|301470|301476|301486|301487|301490|301491|301492|301502|305802|305803|305804|305805|305806|305807|305808|305814|305815|305821|305829|305832|305834|305835|305841|305843|305844|305848|305850|305853|305854|305856|305863|305868|305871|305872|305873|305875|306028|306031|306033|306046|306048|306054|306055|306059|306068|306070|306071|306074|306076|306080|306081|306089|306091|306092|306096|306100|306105|306106|306107|306113|306114|306115|306116|306117|306122|306125|306128|306129|353743|428520|538382|538383|538383|552092|552093|587222|622833|710176|735417|735419|788792|798568|858556|858557|895327|895328|895329|895330|895331|895332|895333|895334|895335|895336|895337|895338|895339|895340|895341|895342|895343|895344|895345|895346|895347|895348|895349|895350|895351|895352|895353|895354|895355|895356|895357|895358|895359|895360|895361|895362|895363|895364|895365|895366|895367|895368|895369|895370|895371|895372|895373|895374|895375|895376|895377|895378|895379|895380|895381|895382|895383|896186|896187|896188|896189|896190|976532", "text": "Arterial calcification, generalized, of infancy, 1" }, { - "baseId": "28625|28628|28629|28632|28633|28634|28635|38797|170937|170938|190498|190851|192018|193046|269091|270014|299009|299013|299017|299018|299027|299032|299033|299034|299056|299057|299062|299065|299068|299072|299076|299085|299088|299089|299090|301411|301415|301416|301417|301432|301433|301438|301440|301441|301456|301459|301460|301463|301464|301465|301466|301467|301468|301469|301470|301476|301486|301487|301491|301492|301502|305802|305805|305806|305808|305814|305815|305821|305829|305832|305841|305843|305844|305848|305853|305854|305863|305871|305872|305873|305875|306028|306048|306054|306055|306059|306068|306070|306071|306074|306076|306080|306089|306091|306092|306096|306105|306106|306107|306113|306114|306115|306116|306117|306122|306125|306128|306129|428520|437699|538382|538383|538383|587222|710176|735417|735419|895327|895328|895329|895330|895331|895332|895333|895334|895335|895336|895337|895338|895339|895340|895341|895342|895343|895344|895345|895346|895347|895348|895349|895350|895351|895352|895353|895354|895355|895356|895357|895358|895359|895360|895361|895362|895363|895364|895365|895366|895367|895368|895369|895370|895371|895372|895373|895374|895375|895376|895377|895378|895379|895380|895381|895382|895383|896186|896187|896188|896189|896190|920221", + "upstreamId": "28625|28628|28629|28632|28633|28634|28635|38797|170937|170938|190498|190851|192018|193046|269091|270014|299009|299013|299017|299018|299027|299032|299033|299034|299056|299057|299062|299065|299068|299072|299076|299085|299088|299089|299090|301411|301415|301416|301417|301432|301433|301438|301440|301441|301456|301459|301460|301463|301464|301465|301466|301467|301468|301469|301470|301476|301486|301487|301491|301492|301502|305802|305805|305806|305808|305814|305815|305821|305829|305832|305841|305843|305844|305848|305853|305854|305863|305871|305872|305873|305875|306028|306048|306054|306055|306059|306068|306070|306071|306074|306076|306080|306089|306091|306092|306096|306105|306106|306107|306113|306114|306115|306116|306117|306122|306125|306128|306129|428520|437699|538382|538383|538383|587222|710176|735417|735419|895327|895328|895329|895330|895331|895332|895333|895334|895335|895336|895337|895338|895339|895340|895341|895342|895343|895344|895345|895346|895347|895348|895349|895350|895351|895352|895353|895354|895355|895356|895357|895358|895359|895360|895361|895362|895363|895364|895365|895366|895367|895368|895369|895370|895371|895372|895373|895374|895375|895376|895377|895378|895379|895380|895381|895382|895383|896186|896187|896188|896189|896190|920221", "text": "Hypophosphatemic rickets, autosomal recessive, 2" }, { - "baseId": "28630|679748", + "upstreamId": "28630|679748", "text": "Coronary sclerosis, medial, of infancy" }, { - "baseId": "28638|34156|45087|45088|45088|45089|45089|54995|54997|54997|54998|54999|54999|55000|55002|55002|55003|55003|55004|55007|55007|55008|55009|55010|55011|55011|55012|55012|55013|55013|55015|55015|55016|55017|55017|55018|55019|55020|55022|55022|55023|141663|141664|141664|141667|165554|165554|176810|176814|176814|176821|176822|176827|176827|176829|176830|178211|178212|178212|178213|178214|178215|178216|178256|178295|178295|178302|178718|178718|178719|178719|189967|189968|189968|189969|189969|189971|189972|189972|189973|189974|198483|198485|198486|198487|198488|198489|198490|198491|198492|198493|198495|198495|198496|198501|198502|198503|198503|198504|198505|198506|198508|198509|209378|209379|209379|209380|209381|224518|224519|224520|231347|231347|231348|231350|231351|231352|231352|231409|231990|242747|242747|242748|242749|242750|242751|242751|242752|259009|259010|259011|259012|259013|259018|259018|328410|328411|328413|328416|328421|338341|338344|338347|338354|338354|338357|338360|338360|338363|338363|338366|338372|338375|338377|344418|344420|344423|344424|344426|344432|344434|344435|345829|345830|345836|345838|345841|360442|360442|374966|374969|374970|374970|374982|374996|375906|375910|376039|378156|378166|378175|390545|401928|401930|401992|401992|402000|402002|402004|402008|402011|402442|402444|402449|402451|402614|415559|445770|445771|466804|466804|467661|467663|467664|467666|467856|467858|467860|467862|467865|467867|467868|468041|468042|468046|468051|468059|468066|487694|487930|487930|497846|505898|506036|506309|506807|510741|510744|510744|510746|511136|530995|531006|531127|531128|531131|531219|531221|531227|531229|531229|531240|531246|531249|531491|531495|531497|531500|569038|569045|571099|571101|571105|571109|571111|571316|571319|571326|571330|574452|574453|574454|621566|645852|645853|645854|645855|645856|645857|645858|645859|645860|645861|645862|645863|645864|645865|645866|645867|645868|645869|645870|645871|645872|645873|645874|652949|653453|653455|682628|684672|684675|688768|688769|715452|740741|797529|821042|822277|845295|845296|845297|845298|845299|845300|845301|845301|845302|845303|845304|845305|845306|845307|845308|845309|845310|845311|845312|845313|845314|845315|845316|845317|845318|845319|845320|845321|845322|845323|852201|852742|858262|877451|877452|877453|877454|877455|877456|877457|877458|877459|877460|877461|877462|877463|877464|877465|877466|877467|877467|877468|877469|877470|877471|877472|877473|877474|877475|877476|877477|877478|906102|919727|919728|919729|928249|928250|928251|928252|928253|928254|928255|928256|928257|937916|937917|937918|937919|937920|937921|937922|937923|937924|949906|949907|949908|949909|949910|949911|949912|949913|949914|958102|958103|958104|960218", + "upstreamId": "28638|34156|45087|45088|45088|45089|45089|54995|54997|54997|54998|54999|54999|55000|55002|55002|55003|55003|55004|55007|55007|55008|55009|55010|55011|55011|55012|55012|55013|55013|55015|55015|55016|55017|55017|55018|55019|55020|55022|55022|55023|141663|141664|141664|141667|165554|165554|176810|176814|176814|176821|176822|176827|176827|176829|176830|178211|178212|178212|178213|178214|178215|178216|178256|178295|178295|178302|178718|178718|178719|178719|189967|189968|189968|189969|189969|189971|189972|189972|189973|189974|198483|198485|198486|198487|198488|198489|198490|198491|198492|198493|198495|198495|198496|198501|198502|198503|198503|198504|198505|198506|198508|198509|209378|209379|209379|209380|209381|224518|224519|224520|231347|231347|231348|231350|231351|231352|231352|231409|231990|242747|242747|242748|242749|242750|242751|242751|242752|259009|259010|259011|259012|259013|259018|259018|328410|328411|328413|328416|328421|338341|338344|338347|338354|338354|338357|338360|338360|338363|338363|338366|338372|338375|338377|344418|344420|344423|344424|344426|344432|344434|344435|345829|345830|345836|345838|345841|360442|360442|374966|374969|374970|374970|374982|374996|375906|375910|376039|378156|378166|378175|390545|401928|401930|401992|401992|402000|402002|402004|402008|402011|402442|402444|402449|402451|402614|415559|445770|445771|466804|466804|467661|467663|467664|467666|467856|467858|467860|467862|467865|467867|467868|468041|468042|468046|468051|468059|468066|487694|487930|487930|497846|505898|506036|506309|506807|510741|510744|510744|510746|511136|530995|531006|531127|531128|531131|531219|531221|531227|531229|531229|531240|531246|531249|531491|531495|531497|531500|569038|569045|571099|571101|571105|571109|571111|571316|571319|571326|571330|574452|574453|574454|621566|645852|645853|645854|645855|645856|645857|645858|645859|645860|645861|645862|645863|645864|645865|645866|645867|645868|645869|645870|645871|645872|645873|645874|652949|653453|653455|682628|684672|684675|688768|688769|715452|740741|797529|821042|822277|845295|845296|845297|845298|845299|845300|845301|845301|845302|845303|845304|845305|845306|845307|845308|845309|845310|845311|845312|845313|845314|845315|845316|845317|845318|845319|845320|845321|845322|845323|852201|852742|858262|877451|877452|877453|877454|877455|877456|877457|877458|877459|877460|877461|877462|877463|877464|877465|877466|877467|877467|877468|877469|877470|877471|877472|877473|877474|877475|877476|877477|877478|906102|919727|919728|919729|928249|928250|928251|928252|928253|928254|928255|928256|928257|937916|937917|937918|937919|937920|937921|937922|937923|937924|949906|949907|949908|949909|949910|949911|949912|949913|949914|958102|958103|958104|960218", "text": "Naxos disease" }, { - "baseId": "28639|34156|45087|45088|45088|45089|45089|54995|54997|54997|54998|54999|54999|55000|55002|55002|55003|55003|55004|55007|55007|55008|55009|55010|55011|55011|55012|55012|55013|55013|55015|55015|55016|55017|55017|55018|55019|55020|55022|55022|55023|141663|141664|141664|141667|165554|165554|176810|176814|176814|176821|176822|176827|176827|176829|176830|178211|178212|178212|178213|178214|178215|178216|178256|178295|178295|178302|178718|178718|178719|178719|189967|189968|189968|189969|189969|189971|189972|189973|189974|198483|198485|198486|198487|198488|198489|198489|198490|198491|198492|198493|198495|198495|198496|198501|198502|198503|198503|198504|198505|198506|198508|198509|209379|224518|224519|224520|231347|231347|231348|231350|231351|231352|231352|231409|231990|242747|242747|242748|242749|242750|242751|242751|242752|259009|259010|259011|259012|259013|259018|259018|328410|328411|328413|328416|328421|338341|338344|338347|338354|338357|338360|338360|338363|338363|338375|338377|344418|344420|344423|344424|344426|344432|344434|344435|345829|345830|345836|345838|345841|360442|360442|374966|374969|374970|374970|374982|374996|375906|375910|376039|378156|378166|378175|390545|401928|401930|401992|401992|402000|402002|402004|402008|402011|402442|402444|402449|402451|402614|415559|445770|445771|466804|466804|467661|467663|467664|467666|467856|467858|467860|467862|467867|467868|468041|468042|468046|468051|468059|468066|487694|487930|487930|497846|505898|506036|506309|506807|510741|510744|510744|510746|511136|530995|531006|531127|531128|531131|531219|531221|531227|531229|531229|531240|531246|531249|531491|531495|531497|531500|569038|569045|571099|571101|571105|571109|571111|571316|571319|571326|571330|574452|574453|574454|621566|645852|645853|645854|645855|645856|645857|645858|645859|645860|645861|645862|645863|645864|645865|645866|645867|645868|645869|645870|645871|645872|645873|645874|652949|653453|653455|682628|684672|684675|688768|688769|715452|740741|797529|821042|822277|845295|845296|845297|845298|845299|845300|845301|845302|845303|845304|845305|845306|845307|845308|845309|845310|845311|845312|845313|845314|845315|845316|845317|845318|845319|845320|845321|845322|845323|852201|852742|858262|877451|877452|877453|877454|877455|877456|877457|877458|877459|877460|877461|877462|877463|877464|877465|877466|877467|877467|877468|877469|877470|877471|877472|877473|877474|877475|877476|877477|877478|906102|928249|928250|928251|928252|928253|928254|928255|928256|928257|937916|937917|937918|937919|937920|937921|937922|937923|937924|949906|949907|949908|949909|949910|949911|949912|949913|949914|958102|958103|958104|960218", + "upstreamId": "28639|34156|45087|45088|45088|45089|45089|54995|54997|54997|54998|54999|54999|55000|55002|55002|55003|55003|55004|55007|55007|55008|55009|55010|55011|55011|55012|55012|55013|55013|55015|55015|55016|55017|55017|55018|55019|55020|55022|55022|55023|141663|141664|141664|141667|165554|165554|176810|176814|176814|176821|176822|176827|176827|176829|176830|178211|178212|178212|178213|178214|178215|178216|178256|178295|178295|178302|178718|178718|178719|178719|189967|189968|189968|189969|189969|189971|189972|189973|189974|198483|198485|198486|198487|198488|198489|198489|198490|198491|198492|198493|198495|198495|198496|198501|198502|198503|198503|198504|198505|198506|198508|198509|209379|224518|224519|224520|231347|231347|231348|231350|231351|231352|231352|231409|231990|242747|242747|242748|242749|242750|242751|242751|242752|259009|259010|259011|259012|259013|259018|259018|328410|328411|328413|328416|328421|338341|338344|338347|338354|338357|338360|338360|338363|338363|338375|338377|344418|344420|344423|344424|344426|344432|344434|344435|345829|345830|345836|345838|345841|360442|360442|374966|374969|374970|374970|374982|374996|375906|375910|376039|378156|378166|378175|390545|401928|401930|401992|401992|402000|402002|402004|402008|402011|402442|402444|402449|402451|402614|415559|445770|445771|466804|466804|467661|467663|467664|467666|467856|467858|467860|467862|467867|467868|468041|468042|468046|468051|468059|468066|487694|487930|487930|497846|505898|506036|506309|506807|510741|510744|510744|510746|511136|530995|531006|531127|531128|531131|531219|531221|531227|531229|531229|531240|531246|531249|531491|531495|531497|531500|569038|569045|571099|571101|571105|571109|571111|571316|571319|571326|571330|574452|574453|574454|621566|645852|645853|645854|645855|645856|645857|645858|645859|645860|645861|645862|645863|645864|645865|645866|645867|645868|645869|645870|645871|645872|645873|645874|652949|653453|653455|682628|684672|684675|688768|688769|715452|740741|797529|821042|822277|845295|845296|845297|845298|845299|845300|845301|845302|845303|845304|845305|845306|845307|845308|845309|845310|845311|845312|845313|845314|845315|845316|845317|845318|845319|845320|845321|845322|845323|852201|852742|858262|877451|877452|877453|877454|877455|877456|877457|877458|877459|877460|877461|877462|877463|877464|877465|877466|877467|877467|877468|877469|877470|877471|877472|877473|877474|877475|877476|877477|877478|906102|928249|928250|928251|928252|928253|928254|928255|928256|928257|937916|937917|937918|937919|937920|937921|937922|937923|937924|949906|949907|949908|949909|949910|949911|949912|949913|949914|958102|958103|958104|960218", "text": "Arrhythmogenic right ventricular cardiomyopathy, type 12" }, { - "baseId": "28640|496458", + "upstreamId": "28640|496458", "text": "Deafness, autosomal recessive 91" }, { - "baseId": "28641|28642|28643|28644|28645|28646|28647|28648|28649|28650|28651|28652|28653|28654|28655|132061|171270|195230|248654|248655|263003|291712|291719|291720|291722|291725|291729|293048|293052|293053|293054|296315|296322|296380|296386|406365|485692|485693|485730|485731|485732|485733|485743|485744|500971|576108|589049|889738|889739|891710", + "upstreamId": "28641|28642|28643|28644|28645|28646|28647|28648|28649|28650|28651|28652|28653|28654|28655|132061|171270|195230|248654|248655|263003|291712|291719|291720|291722|291725|291729|293048|293052|293053|293054|296315|296322|296380|296386|406365|485692|485693|485730|485731|485732|485733|485743|485744|500971|576108|589049|889738|889739|891710", "text": "Pituitary hormone deficiency, combined, 1" }, { - "baseId": "28656|28657|28658|28659|28661|191630|195228|195229|255746|255747|255748|255749|255750|255753|255754|255755|265364|273730|325429|325430|325431|325447|325449|325450|325453|325454|325459|325460|325461|325465|325470|335076|335083|335093|335095|335106|335109|335110|335111|335119|335120|341526|341527|341530|341533|341534|341538|341539|341542|341544|341546|341548|341558|341559|341565|341568|341570|341571|341574|343041|343043|343044|343045|343046|343049|343051|343053|343054|374380|374384|377569|466456|466709|505400|513358|530118|530311|549733|567507|570300|570305|586789|589208|611824|620543|620544|620877|644688|644689|644690|644691|714925|714926|740203|822294|843875|843876|843877|843878|843879|875319|875320|875321|875322|875323|875324|875325|875326|875327|875328|875329|875330|875331|875332|875333|875334|875335|875336|875337|875338|875339|875340|875341|875342|875343|875344|875345|875346|875347|875348|875349|875350|875351|875352|876672|876673|927820|927821|937455|949405|949406|957766|971050", + "upstreamId": "28656|28657|28658|28659|28661|191630|195228|195229|255746|255747|255748|255749|255750|255753|255754|255755|265364|273730|325429|325430|325431|325447|325449|325450|325453|325454|325459|325460|325461|325465|325470|335076|335083|335093|335095|335106|335109|335110|335111|335119|335120|341526|341527|341530|341533|341534|341538|341539|341542|341544|341546|341548|341558|341559|341565|341568|341570|341571|341574|343041|343043|343044|343045|343046|343049|343051|343053|343054|374380|374384|377569|466456|466709|505400|513358|530118|530311|549733|567507|570300|570305|586789|589208|611824|620543|620544|620877|644688|644689|644690|644691|714925|714926|740203|822294|843875|843876|843877|843878|843879|875319|875320|875321|875322|875323|875324|875325|875326|875327|875328|875329|875330|875331|875332|875333|875334|875335|875336|875337|875338|875339|875340|875341|875342|875343|875344|875345|875346|875347|875348|875349|875350|875351|875352|876672|876673|927820|927821|937455|949405|949406|957766|971050", "text": "Glycogen storage disease IXb" }, { - "baseId": "28662|28663|187135|303227|303228|303230|303235|303239|303240|306521|306522|306526|306527|306530|306533|306534|306535|306537|306549|306550|306556|311386|311402|311403|311407|311415|311425|311426|311427|311430|311441|311549|311550|311552|311555|311556|311564|311567|311570|311583|311584|311585|311587|311594|311605|311610|311611|311612|311616|311620|369167|898258|898259|898260|898261|898262|898263|898264|898265|898266|898267|898268|898269|898270|898271|898272|898273|898274|898275|898276|898277|898278|898279|900382|924878|980926", + "upstreamId": "28662|28663|187135|303227|303228|303230|303235|303239|303240|306521|306522|306526|306527|306530|306533|306534|306535|306537|306549|306550|306556|311386|311402|311403|311407|311415|311425|311426|311427|311430|311441|311549|311550|311552|311555|311556|311564|311567|311570|311583|311584|311585|311587|311594|311605|311610|311611|311612|311616|311620|369167|898258|898259|898260|898261|898262|898263|898264|898265|898266|898267|898268|898269|898270|898271|898272|898273|898274|898275|898276|898277|898278|898279|900382|924878|980926", "text": "Deficiency of phosphoserine phosphatase" }, { - "baseId": "28664|28665|28666|28667|28668|28669|28670|255683|255684|255686|255687|255688|325084|325085|325088|334738|334745|334747|334751|341225|341228|341229|342736|342747|342749|375409|377545|466384|529996|530000|530422|530429|568095|570108|570252|570254|574030|612310|644597|644598|644599|644600|682739|682740|714876|791583|791584|843756|843757|875097|875098|875099|875100|875101|875102|875103|875104|875105|875106|876651|876652|927778|927779|927780|927781|937415|940358|949368|949369|957733", + "upstreamId": "28664|28665|28666|28667|28668|28669|28670|255683|255684|255686|255687|255688|325084|325085|325088|334738|334745|334747|334751|341225|341228|341229|342736|342747|342749|375409|377545|466384|529996|530000|530422|530429|568095|570108|570252|570254|574030|612310|644597|644598|644599|644600|682739|682740|714876|791583|791584|843756|843757|875097|875098|875099|875100|875101|875102|875103|875104|875105|875106|876651|876652|927778|927779|927780|927781|937415|940358|949368|949369|957733", "text": "Glycogen storage disease IXc" }, { - "baseId": "28671", + "upstreamId": "28671", "text": "Spina bifida, folate-sensitive, susceptibility to" }, { - "baseId": "28673", + "upstreamId": "28673", "text": "High density lipoprotein cholesterol level quantitative trait locus 9" }, { - "baseId": "28675|28676|38793|53745|53747|53749|198179|198180|221624|231648|239866|239867|239878|298816|298825|298827|298834|301293|301295|301306|301307|301316|301322|305675|305677|305680|305681|305682|305798|305800|395049|395050|455100|455310|455816|455820|521709|560550|614922|651458|651563|686792|831471|895241|895242|895243|895244|895245|895246|895247|895248|895249|895250|895251|895252|924233|933148", + "upstreamId": "28675|28676|38793|53745|53747|53749|198179|198180|221624|231648|239866|239867|239878|298816|298825|298827|298834|301293|301295|301306|301307|301316|301322|305675|305677|305680|305681|305682|305798|305800|395049|395050|455100|455310|455816|455820|521709|560550|614922|651458|651563|686792|831471|895241|895242|895243|895244|895245|895246|895247|895248|895249|895250|895251|895252|924233|933148", "text": "Dilated cardiomyopathy 1P" }, { - "baseId": "28676|38791|38792|53747|198626", + "upstreamId": "28676|38791|38792|53747|198626", "text": "Familial hypertrophic cardiomyopathy 18" }, { - "baseId": "28676|29190|52833|52938|55985|78119|78291|78555|78664|78844|178515|178537|178589|188540|188633|224352|224388|224414|224445|224464|224533|224556|243380|360883|372261|406276|419266|419289|485934|911626|984272", + "upstreamId": "28676|29190|52833|52938|55985|78119|78291|78555|78664|78844|178515|178537|178589|188540|188633|224352|224388|224414|224445|224464|224533|224556|243380|360883|372261|406276|419266|419289|485934|911626|984272", "text": "Sudden cardiac death" }, { - "baseId": "28676|51881|53163|53484|55325|55985|78578|178463|178534|178550|178554|178582|178585|178592|178613|178614|178665|189989|224197|224265|224279|224285|224288|224292|224293|224322|224335|224353|224356|224362|224387|224402|224437|224510|224527|224538|224555", + "upstreamId": "28676|51881|53163|53484|55325|55985|78578|178463|178534|178550|178554|178582|178585|178592|178613|178614|178665|189989|224197|224265|224279|224285|224288|224292|224293|224322|224335|224353|224356|224362|224387|224402|224437|224510|224527|224538|224555", "text": "Cardiac arrest" }, { - "baseId": "28678|28679|28680|28681|28682|28685|28686|28687|256854|433597|497509|800131|800132|982176|982177|982178|982179", + "upstreamId": "28678|28679|28680|28681|28682|28685|28686|28687|256854|433597|497509|800131|800132|982176|982177|982178|982179", "text": "Hemolytic anemia, nonspherocytic, due to glucose phosphate isomerase deficiency" }, { - "baseId": "28683|28684", + "upstreamId": "28683|28684", "text": "Hemolytic anemia, nonspherocytic, and neurologic deficits, due to glucose phosphate isomerase deficiency" }, { - "baseId": "28689|28690|48370|48371|137025|137026|137027|137028|137029|195644|246889|281017|281018|281027|281028|281030|281032|281038|281039|281042|281614|281615|281618|281621|281628|281633|281634|281638|282807|282808|282821|282823|282824|282825|282828|282829|282860|282862|283126|283134|283135|283139|283146|283147|365168|365345|365446|448401|490997|498786|557354|628208|628209|628210|628211|690657|746615|787021|788740|824351|824352|824353|864702|864703|864704|864706|864707|864708|864710|864711|864712|864714|864715|864717|864718|865199|865200|920152|922146|930643|952500|952501|964159", + "upstreamId": "28689|28690|48370|48371|137025|137026|137027|137028|137029|195644|246889|281017|281018|281027|281028|281030|281032|281038|281039|281042|281614|281615|281618|281621|281628|281633|281634|281638|282807|282808|282821|282823|282824|282825|282828|282829|282860|282862|283126|283134|283135|283139|283146|283147|365168|365345|365446|448401|490997|498786|557354|628208|628209|628210|628211|690657|746615|787021|788740|824351|824352|824353|864702|864703|864704|864706|864707|864708|864710|864711|864712|864714|864715|864717|864718|865199|865200|920152|922146|930643|952500|952501|964159", "text": "Congenital disorder of glycosylation type 1t" }, { - "baseId": "28691|28694|28696", + "upstreamId": "28691|28694|28696", "text": "OVARIAN CANCER, EPITHELIAL, SOMATIC" }, { - "baseId": "28691|28694|31371|31378", + "upstreamId": "28691|28694|31371|31378", "text": "Seborrheic keratosis" }, { - "baseId": "28691|28692|28694|40609|40610|54631", + "upstreamId": "28691|28692|28694|40609|40610|54631", "text": "Congenital lipomatous overgrowth, vascular malformations, and epidermal nevi" }, { - "baseId": "28691|28692|28694|28696|40610|48303|173901|213941|213942|213943|578414|983285|983286|983287", + "upstreamId": "28691|28692|28694|28696|40610|48303|173901|213941|213942|213943|578414|983285|983286|983287", "text": "PIK3CA related overgrowth spectrum" }, { - "baseId": "28691|226759|411524|411525", + "upstreamId": "28691|226759|411524|411525", "text": "Rosette-forming glioneuronal tumor" }, { - "baseId": "28691|576074", + "upstreamId": "28691|576074", "text": "MACRODACTYLY, SOMATIC" }, { - "baseId": "28692", + "upstreamId": "28692", "text": "Macrodactyly of toe" }, { - "baseId": "28692|40609|40610|576074|576075|970762", + "upstreamId": "28692|40609|40610|576074|576075|970762", "text": "Capillary malformation of the lower lip, lymphatic malformation of face and neck, asymmetry of face and limbs, and partial/generalized overgrowth" }, { - "baseId": "28692|28694|48302|48303|48304|48305|48407|48414|214867|363349|827717|855106", + "upstreamId": "28692|28694|48302|48303|48304|48305|48407|48414|214867|363349|827717|855106", "text": "Megalencephaly-capillary malformation-polymicrogyria syndrome" }, { - "baseId": "28699", + "upstreamId": "28699", "text": "ALKALINE PHOSPHATASE, PLACENTAL, ALLELE-1 POLYMORPHISM" }, { - "baseId": "28700", + "upstreamId": "28700", "text": "ALKALINE PHOSPHATASE, PLACENTAL, ALLELE-3 POLYMORPHISM" }, { - "baseId": "28701|28702|28703|28704|28705|28706|28707|28708|28709|28709|28710|28710|28711|28711|28712|28713|28714|28715|28716|28717|28718|28720|28721|28722|28722|28723|186615|186616|186616|186617|186618|186619|186620|186621|186622|249724|357053|357054|357055|357056|357057|357058|357059|357060|357062|357063|357064|357065|357066|357067|357068|357069|357070|357071|357072|364747|421205|439921|486846|495070|508966|511220|535284|540714|540716|540720|540723|540745|540774|540783|540788|540789|540797|540799|540802|540807|540808|540810|540812|540817|540818|540822|540824|540833|540839|540861|540863|540865|540867|540868|540870|540877|540879|540880|540881|540884|540888|540890|540894|540896|540900|540900|540902|540939|540943|540945|540947|540957|540957|540959|540986|540990|541001|541009|541011|612078|623243|941693|952240|966785", + "upstreamId": "28701|28702|28703|28704|28705|28706|28707|28708|28709|28709|28710|28710|28711|28711|28712|28713|28714|28715|28716|28717|28718|28720|28721|28722|28722|28723|186615|186616|186616|186617|186618|186619|186620|186621|186622|249724|357053|357054|357055|357056|357057|357058|357059|357060|357062|357063|357064|357065|357066|357067|357068|357069|357070|357071|357072|364747|421205|439921|486846|495070|508966|511220|535284|540714|540716|540720|540723|540745|540774|540783|540788|540789|540797|540799|540802|540807|540808|540810|540812|540817|540818|540822|540824|540833|540839|540861|540863|540865|540867|540868|540870|540877|540879|540880|540881|540884|540888|540890|540894|540896|540900|540900|540902|540939|540943|540945|540947|540957|540957|540959|540986|540990|541001|541009|541011|612078|623243|941693|952240|966785", "text": "Infantile hypophosphatasia" }, { - "baseId": "28703|28709|28709|28710|28711|28714|28715|28716|28721|28722|28722|28723|186616|540900|540957|621069", + "upstreamId": "28703|28709|28709|28710|28711|28714|28715|28716|28721|28722|28722|28723|186616|540900|540957|621069", "text": "Childhood hypophosphatasia" }, { - "baseId": "28703|28709|28709|28710|28710|28711|28711|28712|28714|28716|28718|28722|186616|186617|540900|540957|621068|621069|818168|918599|918600|918605|920132|941693|964143|964144|964145|964146|964147|964148|964645|980301", + "upstreamId": "28703|28709|28709|28710|28710|28711|28711|28712|28714|28716|28718|28722|186616|186617|540900|540957|621068|621069|818168|918599|918600|918605|920132|941693|964143|964144|964145|964146|964147|964148|964645|980301", "text": "Adult hypophosphatasia" }, { - "baseId": "28703|28706|28709|28710|28711|28712|28713|28714|28716|28718|28722|186619|191159|194838|194840|195584|249721|249722|249723|249727|272484|273374|274268|278888|278891|278892|278895|278903|278904|278909|278910|278914|278915|278918|278919|278920|279040|279041|279048|279050|279053|279054|279055|279066|280337|280339|280343|280349|280352|280353|280354|280356|280362|280378|280385|280390|280393|280395|357053|357058|357070|364857|417652|421205|442712|486846|540880|540890|540957|576481|621068|621069|621070|732099|732100|746101|761575|780524|780528|799156|823326|863513|863514|863515|863516|863517|863518|863519|863520|863521|863522|863523|863524|863525|863526|863527|863528|863529|916813|963248|964143|972538|977477|977478|977488|977491|977493|977494|977495|983942", + "upstreamId": "28703|28706|28709|28710|28711|28712|28713|28714|28716|28718|28722|186619|191159|194838|194840|195584|249721|249722|249723|249727|272484|273374|274268|278888|278891|278892|278895|278903|278904|278909|278910|278914|278915|278918|278919|278920|279040|279041|279048|279050|279053|279054|279055|279066|280337|280339|280343|280349|280352|280353|280354|280356|280362|280378|280385|280390|280393|280395|357053|357058|357070|364857|417652|421205|442712|486846|540880|540890|540957|576481|621068|621069|621070|732099|732100|746101|761575|780524|780528|799156|823326|863513|863514|863515|863516|863517|863518|863519|863520|863521|863522|863523|863524|863525|863526|863527|863528|863529|916813|963248|964143|972538|977477|977478|977488|977491|977493|977494|977495|983942", "text": "Hypophosphatasia" }, { - "baseId": "28709|28716|28719|28721", + "upstreamId": "28709|28716|28719|28721", "text": "Odontohypophosphatasia" }, { - "baseId": "28717|28718", + "upstreamId": "28717|28718", "text": "Hypophosphatasia, perinatal lethal" }, { - "baseId": "28724", + "upstreamId": "28724", "text": "ACID PHOSPHATASE 1, SOLUBLE, A/B POLYMORPHISM OF" }, { - "baseId": "28725|28726|28727|28729|28730|28733|28734|28736|189023|191497|192083|193434|195243|252953|252954|252955|252956|252957|252958|252959|265375|265376|267188|303476|303483|303485|303486|306890|306891|306901|306903|306906|311786|311788|311789|311817|311825|311827|311828|361407|369290|369987|369991|371396|493027|578462|584498|585376|588060|589154|589239|623143|898447|898448|898449|898450|898451|898452|898453|898454|898455|898456|898458|898460|898461|898462|898463|898464|898465|898466|898467|900408|900409|970221", + "upstreamId": "28725|28726|28727|28729|28730|28733|28734|28736|189023|191497|192083|193434|195243|252953|252954|252955|252956|252957|252958|252959|265375|265376|267188|303476|303483|303485|303486|306890|306891|306901|306903|306906|311786|311788|311789|311817|311825|311827|311828|361407|369290|369987|369991|371396|493027|578462|584498|585376|588060|589154|589239|623143|898447|898448|898449|898450|898451|898452|898453|898454|898455|898456|898458|898460|898461|898462|898463|898464|898465|898466|898467|900408|900409|970221", "text": "Progressive familial intrahepatic cholestasis 3" }, { - "baseId": "28726|28729|28730|28731|28732|28736|48440|193434|194305|361407|578462|590360", + "upstreamId": "28726|28729|28730|28731|28732|28736|48440|193434|194305|361407|578462|590360", "text": "Low phospholipid associated cholelithiasis" }, { - "baseId": "28736", + "upstreamId": "28736", "text": "ABCB4-related disorders" }, { - "baseId": "28737", + "upstreamId": "28737", "text": "Colchicine resistance" }, { - "baseId": "28740", + "upstreamId": "28740", "text": "Hyperapobetalipoproteinemia, susceptibility to" }, { - "baseId": "28741|28742", + "upstreamId": "28741|28742", "text": "Zellweger syndrome 2" }, { - "baseId": "28743|98744|98745|98745|135331|143213|143214|177124|253177|266584|271736|272407|272932|275181|275390|305885|305892|305893|305894|305899|305900|305911|305913|305914|305915|305919|305922|305925|305926|305927|305931|309956|309959|309971|309973|309975|309977|309979|309981|309982|309983|315236|315237|315239|315240|315241|315249|315251|315255|315261|315272|315277|315278|315282|315282|315286|315303|315304|315305|315314|315318|315325|315328|315343|315355|315357|315360|357639|487406|489384|492146|492372|494110|544462|544464|544469|544757|544760|544760|544763|544802|544857|544860|544862|544864|544868|544868|563082|584201|586608|587303|587303|589226|637402|637403|637404|637405|637406|711640|723187|751248|766891|766892|766893|766894|783156|835051|835052|835053|835054|835055|900052|900053|900054|900055|900056|900057|900058|900059|900060|900061|900062|900063|900064|900065|900066|900067|900068|900069|900070|900071|900072|900073|900074|900075|900076|900077|900078|900079|900080|900081|900082|900083|900084|900085|900086|934420|934421|946183|955500|955501|955502|955503", + "upstreamId": "28743|98744|98745|98745|135331|143213|143214|177124|253177|266584|271736|272407|272932|275181|275390|305885|305892|305893|305894|305899|305900|305911|305913|305914|305915|305919|305922|305925|305926|305927|305931|309956|309959|309971|309973|309975|309977|309979|309981|309982|309983|315236|315237|315239|315240|315241|315249|315251|315255|315261|315272|315277|315278|315282|315282|315286|315303|315304|315305|315314|315318|315325|315328|315343|315355|315357|315360|357639|487406|489384|492146|492372|494110|544462|544464|544469|544757|544760|544760|544763|544802|544857|544860|544862|544864|544868|544868|563082|584201|586608|587303|587303|589226|637402|637403|637404|637405|637406|711640|723187|751248|766891|766892|766893|766894|783156|835051|835052|835053|835054|835055|900052|900053|900054|900055|900056|900057|900058|900059|900060|900061|900062|900063|900064|900065|900066|900067|900068|900069|900070|900071|900072|900073|900074|900075|900076|900077|900078|900079|900080|900081|900082|900083|900084|900085|900086|934420|934421|946183|955500|955501|955502|955503", "text": "Peroxisome biogenesis disorder 5a (zellweger)" }, { - "baseId": "28743|28744|98745|143215|172169|271736|315282|357639|544462|544464|544469|544757|544760|544763|544802|544857|544860|544862|544864|544868|587303", + "upstreamId": "28743|28744|98745|143215|172169|271736|315282|357639|544462|544464|544469|544757|544760|544763|544802|544857|544860|544862|544864|544868|587303", "text": "Peroxisome biogenesis disorder 5B" }, { - "baseId": "28747|28748|28749|28750|28751|28752|28753|28754|28755|28756|28757|28759|28760|28761|28762|213598|253807|253808|253809|253810|253811|253813|253814|253815|264466|265681|310610|310612|310613|310615|310617|310618|310619|310623|315850|315853|315856|315857|315859|315860|321876|321886|321888|321894|321895|321898|321901|322582|322585|322593|322594|322595|384626|429125|460114|460116|460124|460126|460226|460230|460232|460248|460250|460482|460486|460488|460498|460504|460936|493972|511872|513595|525338|525342|525343|525345|525349|525349|525442|525444|525518|525531|525536|525775|525779|525781|539416|552144|563901|563907|563908|563922|564712|564716|564729|566441|569751|569754|569765|589284|612289|612290|639103|639104|639105|639106|639107|639108|639109|639110|639111|639112|639113|639114|639115|639116|639117|639118|639119|639120|639121|639122|639123|639123|639124|712449|712450|712451|712452|712453|712454|724044|724045|737568|737569|737570|767882|767883|767884|767885|783669|790973|790974|790975|790976|820232|837165|837166|837167|837168|837169|837170|837171|837172|837173|837174|837175|837176|837177|837178|837179|837180|866085|866086|866087|866088|866089|866090|866091|866092|866093|866094|866095|866096|866097|866098|866099|868486|903569|917790|925902|925903|925904|925905|925906|925907|925908|925909|935142|935143|935144|935145|935146|947017|947018|947019|947020|947021|947022|947023|947024|947025|947026|956146|956147|956148|956149|961861|964344", + "upstreamId": "28747|28748|28749|28750|28751|28752|28753|28754|28755|28756|28757|28759|28760|28761|28762|213598|253807|253808|253809|253810|253811|253813|253814|253815|264466|265681|310610|310612|310613|310615|310617|310618|310619|310623|315850|315853|315856|315857|315859|315860|321876|321886|321888|321894|321895|321898|321901|322582|322585|322593|322594|322595|384626|429125|460114|460116|460124|460126|460226|460230|460232|460248|460250|460482|460486|460488|460498|460504|460936|493972|511872|513595|525338|525342|525343|525345|525349|525349|525442|525444|525518|525531|525536|525775|525779|525781|539416|552144|563901|563907|563908|563922|564712|564716|564729|566441|569751|569754|569765|589284|612289|612290|639103|639104|639105|639106|639107|639108|639109|639110|639111|639112|639113|639114|639115|639116|639117|639118|639119|639120|639121|639122|639123|639123|639124|712449|712450|712451|712452|712453|712454|724044|724045|737568|737569|737570|767882|767883|767884|767885|783669|790973|790974|790975|790976|820232|837165|837166|837167|837168|837169|837170|837171|837172|837173|837174|837175|837176|837177|837178|837179|837180|866085|866086|866087|866088|866089|866090|866091|866092|866093|866094|866095|866096|866097|866098|866099|868486|903569|917790|925902|925903|925904|925905|925906|925907|925908|925909|935142|935143|935144|935145|935146|947017|947018|947019|947020|947021|947022|947023|947024|947025|947026|956146|956147|956148|956149|961861|964344", "text": "Familial hemophagocytic lymphohistiocytosis 2" }, { - "baseId": "28757", + "upstreamId": "28757", "text": "Hemophagocytic lymphohistiocytosis, familial, 2, susceptibility to" }, { - "baseId": "28763|28764|28765", + "upstreamId": "28763|28764|28765", "text": "PEPTIDE TRANSPORTER PSF2 POLYMORPHISM" }, { - "baseId": "28768|28769", + "upstreamId": "28768|28769", "text": "PEPTIDE TRANSPORTER PSF1 POLYMORPHISM" }, { - "baseId": "28770", + "upstreamId": "28770", "text": "TAP1 deficiency, somatic" }, { - "baseId": "28772", + "upstreamId": "28772", "text": "PRB3S(CYS)" }, { - "baseId": "28773", + "upstreamId": "28773", "text": "PRB3M(NULL)" }, { - "baseId": "28774", + "upstreamId": "28774", "text": "Coronary artery spasm 2, susceptibility to" }, { - "baseId": "28774|28775|28776", + "upstreamId": "28774|28775|28776", "text": "Enzyme activity finding" }, { - "baseId": "28775", + "upstreamId": "28775", "text": "Microvascular complications of diabetes 5" }, { - "baseId": "28777|28778|28779|28780", + "upstreamId": "28777|28778|28779|28780", "text": "Brachydactyly type E2" }, { - "baseId": "28781|28782|28786|28787|75363|265484|290731|290738|290748|290753|290757|290758|290763|290766|291668|291673|291687|291689|294874|294878|294882|294883|294894|294895|294898|294901|294912|295258|295260|295270|295275|295276|295277|744066|748295|889129|889130|889131|889132|889133|889134|889135|889136|889137|889138|889139|889140|889141|889142|891663|959509", + "upstreamId": "28781|28782|28786|28787|75363|265484|290731|290738|290748|290753|290757|290758|290763|290766|291668|291673|291687|291689|294874|294878|294882|294883|294894|294895|294898|294901|294912|295258|295260|295270|295275|295276|295277|744066|748295|889129|889130|889131|889132|889133|889134|889135|889136|889137|889138|889139|889140|889141|889142|891663|959509", "text": "Metaphyseal chondrodysplasia, Jansen type" }, { - "baseId": "28783|28784|28785|28789|28790|75363|265484|290731|290738|290748|290753|290757|290758|290763|290766|291668|291673|291687|291689|294874|294878|294882|294883|294894|294895|294898|294901|294912|295258|295260|295270|295275|295276|295277|744066|748295|889129|889130|889131|889132|889133|889134|889135|889136|889137|889138|889139|889140|889141|889142|891663", + "upstreamId": "28783|28784|28785|28789|28790|75363|265484|290731|290738|290748|290753|290757|290758|290763|290766|291668|291673|291687|291689|294874|294878|294882|294883|294894|294895|294898|294901|294912|295258|295260|295270|295275|295276|295277|744066|748295|889129|889130|889131|889132|889133|889134|889135|889136|889137|889138|889139|889140|889141|889142|891663", "text": "Chondrodysplasia Blomstrand type" }, { - "baseId": "28788|536213|619847", + "upstreamId": "28788|536213|619847", "text": "Eiken skeletal dysplasia" }, { - "baseId": "28791|28792|28793|513537|583090", + "upstreamId": "28791|28792|28793|513537|583090", "text": "Failure of tooth eruption, primary" }, { - "baseId": "28794", + "upstreamId": "28794", "text": "VON HIPPEL-LINDAU SYNDROME, MODIFIER OF" }, { - "baseId": "28794", + "upstreamId": "28794", "text": "Multiple myeloma, translocation 11,14 type" }, { - "baseId": "28795|28797", + "upstreamId": "28795|28797", "text": "Hypoparathyroidism, familial isolated 1" }, { - "baseId": "28798|50291|213769|213770|213771|213772", + "upstreamId": "28798|50291|213769|213770|213771|213772", "text": "Primary hyperparathyroidism" }, { - "baseId": "28802|45439|136364", + "upstreamId": "28802|45439|136364", "text": "Tropical calcific pancreatitis" }, { - "baseId": "28806|28807|28808|28809|28810|28811|28812|28813|28814|28815|28816|28817|28818|28819|28820|165743|254940|320515|320518|320519|320521|320522|320523|320534|329297|329298|329316|329317|329324|329327|329328|329335|329337|329338|329342|335880|335881|335898|335903|335905|335917|335921|337835|337837|337838|337839|337844|337871|337877|337880|362221|424223|464201|653888|871851|871852|871853|871854|871855|871856|871857|871858|871859|871860|871861|871862|871863|871864|871865|871866|871867|871868|964075", + "upstreamId": "28806|28807|28808|28809|28810|28811|28812|28813|28814|28815|28816|28817|28818|28819|28820|165743|254940|320515|320518|320519|320521|320522|320523|320534|329297|329298|329316|329317|329324|329327|329328|329335|329337|329338|329342|335880|335881|335898|335903|335905|335917|335921|337835|337837|337838|337839|337844|337871|337877|337880|362221|424223|464201|653888|871851|871852|871853|871854|871855|871856|871857|871858|871859|871860|871861|871862|871863|871864|871865|871866|871867|871868|964075", "text": "Tooth agenesis, selective, 3" }, { - "baseId": "28809|28814|53352|231292|320523|329317|335905|528503|568867|642356|642357|642358|754034|841371|927031|948538", + "upstreamId": "28809|28814|53352|231292|320523|329317|335905|528503|568867|642356|642357|642358|754034|841371|927031|948538", "text": "Partial congenital absence of teeth" }, { - "baseId": "28821", + "upstreamId": "28821", "text": "PAX8 POLYMORPHISM" }, { - "baseId": "28821|28822|28823|28824|28825|28826|28827|28828|177196|250091|281649|281651|281655|281656|281664|281665|281670|281672|281677|281678|282303|282304|282305|282306|282309|282310|282324|282325|282326|282328|282329|282330|282332|283714|283718|283719|283723|283725|283726|283729|283730|283731|283927|283928|283929|283945|283946|283955|283968|283973|283974|283980|283981|283983|283992|284003|427874|685834|690708|690709|690710|690712|695070|719196|732722|762164|790032|790033|790034|790035|861076|880884|880885|880886|880887|880888|880889|880890|880891|880892|880893|880894|880895|880896|880897|880898|880899|880900|880901|880902|880903|880904|880905|880906|880907|880908|880909|880910|880911|880912|880913|880914|880915|880916|882786|882787|903693|903694", + "upstreamId": "28821|28822|28823|28824|28825|28826|28827|28828|177196|250091|281649|281651|281655|281656|281664|281665|281670|281672|281677|281678|282303|282304|282305|282306|282309|282310|282324|282325|282326|282328|282329|282330|282332|283714|283718|283719|283723|283725|283726|283729|283730|283731|283927|283928|283929|283945|283946|283955|283968|283973|283974|283980|283981|283983|283992|284003|427874|685834|690708|690709|690710|690712|695070|719196|732722|762164|790032|790033|790034|790035|861076|880884|880885|880886|880887|880888|880889|880890|880891|880892|880893|880894|880895|880896|880897|880898|880899|880900|880901|880902|880903|880904|880905|880906|880907|880908|880909|880910|880911|880912|880913|880914|880915|880916|882786|882787|903693|903694", "text": "Hypothyroidism, congenital, nongoitrous, 2" }, { - "baseId": "28830|28831", + "upstreamId": "28830|28831", "text": "Diabetes mellitus, ketosis-prone, susceptibility to" }, { - "baseId": "28832|28833|432299", + "upstreamId": "28832|28833|432299", "text": "Maturity-onset diabetes of the young type 9" }, { - "baseId": "28834|28836|28837|28838|28839|28840|28841|28842|100286|100287|166076|166077|166077|166080|166081|167527|167528|460453|524875|525106|569426|623301|650386|650387|695464|836511|836512|836512|852537|903495|962724|962725|962726|962727|962833", + "upstreamId": "28834|28836|28837|28838|28839|28840|28841|28842|100286|100287|166076|166077|166077|166080|166081|167527|167528|460453|524875|525106|569426|623301|650386|650387|695464|836511|836512|836512|852537|903495|962724|962725|962726|962727|962833", "text": "Renal coloboma syndrome" }, { - "baseId": "28844", + "upstreamId": "28844", "text": "Papillorenal syndrome with macular abnormalities" }, { - "baseId": "28845", + "upstreamId": "28845", "text": "Colonic adenoma recurrence, reduced risk of" }, { - "baseId": "28850|38776|38777|38778|38779|54363", + "upstreamId": "28850|38776|38777|38778|38779|54363", "text": "Noonan syndrome-like disorder with juvenile myelomonocytic leukemia" }, { - "baseId": "28850|28891|28899|28902|28905|29203|38777|171928|171929|171930|363045|363149|363150|363151|363152|363582|615782|615783", + "upstreamId": "28850|28891|28899|28902|28905|29203|38777|171928|171929|171930|363045|363149|363150|363151|363152|363582|615782|615783", "text": "Hematologic neoplasm" }, { - "baseId": "28851", + "upstreamId": "28851", "text": "Tetraamelia, autosomal recessive" }, { - "baseId": "28852|28860|28860|28861|28863|28865|28865|28867|28867|28869|28870|28870|28871|28872|46890|141188|141189|191624|191624|191625|191625|191626|191626|207479|207480|236899|236899|252842|252844|252845|252845|252846|252847|252847|252848|252848|252849|252849|252850|252850|252854|252854|252855|252856|252856|252858|252860|252860|252864|252864|252866|252866|252868|252872|252873|252874|252875|252876|252876|252880|252881|259861|259861|259864|259864|266255|267367|267367|267807|267829|268321|268762|269149|269149|272005|272221|272371|272807|273308|273308|302938|302939|302940|302941|302943|302944|302947|302952|302961|302966|302968|302970|302973|302977|302978|302982|302983|302990|302992|302994|303006|303006|303007|303011|303011|303020|303020|303022|303022|303024|303026|303029|303029|303033|303034|303040|303041|303046|303046|303047|303048|303049|303049|303053|306259|306260|306264|306265|306266|306267|306268|306269|306271|306272|306273|306274|306275|306275|306276|306287|306290|306290|306294|310985|310988|310989|311012|311032|311033|311042|311058|311061|311068|311070|311071|311099|311107|311108|311109|311112|311114|311133|311135|311142|311143|311146|311148|311149|311149|311156|311157|311157|311164|311245|311246|311248|311252|311257|311259|311260|311261|311262|311264|311265|311266|311267|311268|311269|311272|311274|311277|311278|311279|311279|311280|311280|311282|311283|311284|311285|311286|311286|311287|311288|311288|311289|311290|311295|353817|353818|362226|363692|363692|369448|428713|428715|428717|456714|456720|456727|456728|456731|456734|457358|457360|457364|457781|502039|508730|514283|522675|522678|522680|522683|522925|522929|523100|523102|523306|523316|561052|561611|561615|561618|561623|561953|564313|566860|566863|566874|587106|615920|636154|636155|636156|636157|636158|636159|636160|636161|636162|636163|636164|636165|682808|692237|692238|692239|700063|700067|700070|700071|722524|750640|750642|750647|766287|766289|782863|782867|790721|790722|802088|821941|821942|821943|821944|821945|821946|821947|833602|833603|833604|833605|833606|833607|833608|833609|833610|833611|833612|833613|833614|833615|852088|852090|898063|898064|898065|898066|898067|898068|898069|898070|898071|898072|898073|898074|898075|898076|898077|898078|898079|898080|898081|898082|898083|898084|898085|898086|898087|898088|898089|898090|898091|898092|898093|898094|898094|898095|898096|898097|898098|898099|898100|898101|898102|898103|898104|898105|898106|898107|900361|900362|900363|900364|924851|924852|924853|924854|924855|933889|933890|945636|955159|961002|965968|965969|966059", + "upstreamId": "28852|28860|28860|28861|28863|28865|28865|28867|28867|28869|28870|28870|28871|28872|46890|141188|141189|191624|191624|191625|191625|191626|191626|207479|207480|236899|236899|252842|252844|252845|252845|252846|252847|252847|252848|252848|252849|252849|252850|252850|252854|252854|252855|252856|252856|252858|252860|252860|252864|252864|252866|252866|252868|252872|252873|252874|252875|252876|252876|252880|252881|259861|259861|259864|259864|266255|267367|267367|267807|267829|268321|268762|269149|269149|272005|272221|272371|272807|273308|273308|302938|302939|302940|302941|302943|302944|302947|302952|302961|302966|302968|302970|302973|302977|302978|302982|302983|302990|302992|302994|303006|303006|303007|303011|303011|303020|303020|303022|303022|303024|303026|303029|303029|303033|303034|303040|303041|303046|303046|303047|303048|303049|303049|303053|306259|306260|306264|306265|306266|306267|306268|306269|306271|306272|306273|306274|306275|306275|306276|306287|306290|306290|306294|310985|310988|310989|311012|311032|311033|311042|311058|311061|311068|311070|311071|311099|311107|311108|311109|311112|311114|311133|311135|311142|311143|311146|311148|311149|311149|311156|311157|311157|311164|311245|311246|311248|311252|311257|311259|311260|311261|311262|311264|311265|311266|311267|311268|311269|311272|311274|311277|311278|311279|311279|311280|311280|311282|311283|311284|311285|311286|311286|311287|311288|311288|311289|311290|311295|353817|353818|362226|363692|363692|369448|428713|428715|428717|456714|456720|456727|456728|456731|456734|457358|457360|457364|457781|502039|508730|514283|522675|522678|522680|522683|522925|522929|523100|523102|523306|523316|561052|561611|561615|561618|561623|561953|564313|566860|566863|566874|587106|615920|636154|636155|636156|636157|636158|636159|636160|636161|636162|636163|636164|636165|682808|692237|692238|692239|700063|700067|700070|700071|722524|750640|750642|750647|766287|766289|782863|782867|790721|790722|802088|821941|821942|821943|821944|821945|821946|821947|833602|833603|833604|833605|833606|833607|833608|833609|833610|833611|833612|833613|833614|833615|852088|852090|898063|898064|898065|898066|898067|898068|898069|898070|898071|898072|898073|898074|898075|898076|898077|898078|898079|898080|898081|898082|898083|898084|898085|898086|898087|898088|898089|898090|898091|898092|898093|898094|898094|898095|898096|898097|898098|898099|898100|898101|898102|898103|898104|898105|898106|898107|900361|900362|900363|900364|924851|924852|924853|924854|924855|933889|933890|945636|955159|961002|965968|965969|966059", "text": "Greig cephalopolysyndactyly syndrome" }, { - "baseId": "28853|28854|28857|28859|28860|28860|28862|28865|28867|28868|28870|46866|46867|46868|46869|46870|46871|46872|46873|46874|46875|46876|46877|46878|46879|46880|46881|46882|46883|46884|46885|46886|46887|46888|46889|46890|46890|141188|141189|191624|191624|191625|191625|191626|191626|207479|207480|236899|236899|252842|252844|252845|252845|252846|252847|252847|252848|252848|252849|252849|252850|252850|252854|252854|252855|252856|252856|252858|252860|252860|252864|252864|252866|252866|252868|252872|252873|252874|252875|252876|252876|252880|252881|259861|259861|259864|259864|266255|267367|267367|267807|267829|268321|268762|269149|269149|272005|272221|272371|272807|273308|273308|302938|302939|302940|302941|302943|302944|302947|302952|302961|302966|302968|302970|302973|302977|302978|302982|302983|302990|302992|302994|303006|303006|303007|303011|303011|303020|303020|303022|303022|303024|303026|303029|303029|303033|303034|303040|303041|303046|303046|303047|303048|303049|303049|303053|306259|306260|306264|306265|306266|306267|306268|306269|306271|306272|306273|306274|306275|306275|306276|306287|306290|306290|306294|310985|310988|310989|311012|311032|311033|311042|311058|311061|311068|311070|311071|311099|311107|311108|311109|311112|311114|311133|311135|311142|311143|311146|311148|311149|311149|311156|311157|311157|311164|311245|311246|311248|311252|311257|311259|311260|311261|311262|311264|311265|311266|311267|311268|311269|311272|311274|311277|311278|311279|311279|311280|311280|311282|311283|311284|311285|311286|311286|311287|311288|311288|311289|311290|311295|353817|353818|363692|369448|428713|428715|456714|456720|456727|456728|456731|456734|457358|457360|457364|457781|502039|522675|522678|522680|522683|522925|522929|523100|523102|523306|523316|561052|561611|561615|561618|561623|561953|564313|566860|566863|566874|587106|615920|636154|636155|636156|636157|636158|636159|636160|636161|636162|636163|636164|636165|692237|692238|692239|700063|700067|700070|700071|722524|750640|750642|750647|766287|766289|782863|782867|821941|821942|821943|821944|821945|821946|821947|833602|833603|833604|833605|833606|833607|833608|833609|833610|833611|833612|833613|833614|833615|852088|852090|898070|898076|898079|898083|898085|898087|898089|898094|898099|898102|898103|898104|898106|900362|900363|919105|919106|924851|924852|924853|924854|924855|933889|933890|945636|955159", + "upstreamId": "28853|28854|28857|28859|28860|28860|28862|28865|28867|28868|28870|46866|46867|46868|46869|46870|46871|46872|46873|46874|46875|46876|46877|46878|46879|46880|46881|46882|46883|46884|46885|46886|46887|46888|46889|46890|46890|141188|141189|191624|191624|191625|191625|191626|191626|207479|207480|236899|236899|252842|252844|252845|252845|252846|252847|252847|252848|252848|252849|252849|252850|252850|252854|252854|252855|252856|252856|252858|252860|252860|252864|252864|252866|252866|252868|252872|252873|252874|252875|252876|252876|252880|252881|259861|259861|259864|259864|266255|267367|267367|267807|267829|268321|268762|269149|269149|272005|272221|272371|272807|273308|273308|302938|302939|302940|302941|302943|302944|302947|302952|302961|302966|302968|302970|302973|302977|302978|302982|302983|302990|302992|302994|303006|303006|303007|303011|303011|303020|303020|303022|303022|303024|303026|303029|303029|303033|303034|303040|303041|303046|303046|303047|303048|303049|303049|303053|306259|306260|306264|306265|306266|306267|306268|306269|306271|306272|306273|306274|306275|306275|306276|306287|306290|306290|306294|310985|310988|310989|311012|311032|311033|311042|311058|311061|311068|311070|311071|311099|311107|311108|311109|311112|311114|311133|311135|311142|311143|311146|311148|311149|311149|311156|311157|311157|311164|311245|311246|311248|311252|311257|311259|311260|311261|311262|311264|311265|311266|311267|311268|311269|311272|311274|311277|311278|311279|311279|311280|311280|311282|311283|311284|311285|311286|311286|311287|311288|311288|311289|311290|311295|353817|353818|363692|369448|428713|428715|456714|456720|456727|456728|456731|456734|457358|457360|457364|457781|502039|522675|522678|522680|522683|522925|522929|523100|523102|523306|523316|561052|561611|561615|561618|561623|561953|564313|566860|566863|566874|587106|615920|636154|636155|636156|636157|636158|636159|636160|636161|636162|636163|636164|636165|692237|692238|692239|700063|700067|700070|700071|722524|750640|750642|750647|766287|766289|782863|782867|821941|821942|821943|821944|821945|821946|821947|833602|833603|833604|833605|833606|833607|833608|833609|833610|833611|833612|833613|833614|833615|852088|852090|898070|898076|898079|898083|898085|898087|898089|898094|898099|898102|898103|898104|898106|900362|900363|919105|919106|924851|924852|924853|924854|924855|933889|933890|945636|955159", "text": "Pallister-Hall syndrome" }, { - "baseId": "28856|28865|259861|259864|428715", + "upstreamId": "28856|28865|259861|259864|428715", "text": "Preaxial polydactyly 4" }, { - "baseId": "28858|28859|28860|48110", + "upstreamId": "28858|28859|28860|48110", "text": "Postaxial polydactyly, type A1/B" }, { - "baseId": "28864", + "upstreamId": "28864", "text": "Greig cephalopolysyndactyly syndrome, severe" }, { - "baseId": "28866", + "upstreamId": "28866", "text": "Postaxial polydactyly B" }, { - "baseId": "28873|28874|28875|45756|45756|45757|45758|45759|45759|101169|101170|101171|101172|101173|101173|190474|191228|191228|191383|191383|191385|191386|191386|191387|191387|191388|191390|191390|191391|191391|191392|191392|191393|191393|191394|191394|195689|195690|195977|195977|223606|223606|237012|250110|250111|250117|250117|250118|250119|250120|250120|250130|250130|250131|250131|250132|250133|250133|250135|250138|250138|266450|266450|266537|266537|266975|269631|269632|271804|271804|281725|281730|281733|281734|281736|281743|281745|281748|281760|282376|282377|282377|282378|282379|282380|282381|282381|282384|282384|282385|282386|282388|282390|282392|283816|283817|283817|283821|283821|283827|283837|283844|283844|283857|283860|283861|283872|283873|283873|283880|283883|283892|283894|283916|283938|283940|283949|284074|284081|284081|284084|284087|284088|284088|284092|284116|284117|284118|284120|284123|284132|284138|284143|284174|284176|361163|361164|361165|405286|442913|448555|448555|448667|448763|489506|511313|516361|558707|559192|559194|587219|587220|589597|628420|628420|628421|628422|628423|690714|690715|690717|690718|690719|690722|690724|690725|690728|690728|690729|696993|696994|696995|696997|696997|707697|707699|707702|719215|719216|719218|746754|778849|780822|801784|824722|824723|824724|880961|880962|880963|880964|880965|880966|880967|880968|880969|880970|880971|880972|880973|880974|880975|880976|880977|880978|880979|880980|880981|880982|880983|880984|880985|880986|880987|880988|880989|880990|880991|880992|882791|918668|918669|922230|942218|962151", + "upstreamId": "28873|28874|28875|45756|45756|45757|45758|45759|45759|101169|101170|101171|101172|101173|101173|190474|191228|191228|191383|191383|191385|191386|191386|191387|191387|191388|191390|191390|191391|191391|191392|191392|191393|191393|191394|191394|195689|195690|195977|195977|223606|223606|237012|250110|250111|250117|250117|250118|250119|250120|250120|250130|250130|250131|250131|250132|250133|250133|250135|250138|250138|266450|266450|266537|266537|266975|269631|269632|271804|271804|281725|281730|281733|281734|281736|281743|281745|281748|281760|282376|282377|282377|282378|282379|282380|282381|282381|282384|282384|282385|282386|282388|282390|282392|283816|283817|283817|283821|283821|283827|283837|283844|283844|283857|283860|283861|283872|283873|283873|283880|283883|283892|283894|283916|283938|283940|283949|284074|284081|284081|284084|284087|284088|284088|284092|284116|284117|284118|284120|284123|284132|284138|284143|284174|284176|361163|361164|361165|405286|442913|448555|448555|448667|448763|489506|511313|516361|558707|559192|559194|587219|587220|589597|628420|628420|628421|628422|628423|690714|690715|690717|690718|690719|690722|690724|690725|690728|690728|690729|696993|696994|696995|696997|696997|707697|707699|707702|719215|719216|719218|746754|778849|780822|801784|824722|824723|824724|880961|880962|880963|880964|880965|880966|880967|880968|880969|880970|880971|880972|880973|880974|880975|880976|880977|880978|880979|880980|880981|880982|880983|880984|880985|880986|880987|880988|880989|880990|880991|880992|882791|918668|918669|922230|942218|962151", "text": "Holoprosencephaly 9" }, { - "baseId": "28876|28877|28878|28879|28880|28881|38771|38772|38773|46945|46946|46947|404807|415302|615814", + "upstreamId": "28876|28877|28878|28879|28880|28881|38771|38772|38773|46945|46946|46947|404807|415302|615814", "text": "Deafness with labyrinthine aplasia microtia and microdontia (LAMM)" }, { - "baseId": "28891", + "upstreamId": "28891", "text": "Mast cell leukemia" }, { - "baseId": "28891|28902|45973|432379|432380", + "upstreamId": "28891|28902|45973|432379|432380", "text": "Dysgerminoma" }, { - "baseId": "28891", + "upstreamId": "28891", "text": "MAST CELL LEUKEMIA, SOMATIC" }, { - "baseId": "28891", + "upstreamId": "28891", "text": "MASTOCYTOSIS WITH ASSOCIATED HEMATOLOGIC DISORDER, SOMATIC" }, { - "baseId": "28891|28892", + "upstreamId": "28891|28892", "text": "MASTOCYTOSIS, SYSTEMIC, SOMATIC" }, { - "baseId": "28891|28904|536139|536140", + "upstreamId": "28891|28904|536139|536140", "text": "Cutaneous mastocytosis" }, { - "baseId": "28897", + "upstreamId": "28897", "text": "Piebaldism with sensorineural deafness" }, { - "baseId": "28899", + "upstreamId": "28899", "text": "MASTOCYTOSIS, CUTANEOUS AND SYSTEMIC, SOMATIC" }, { - "baseId": "28901|50038|50039|50040|50043|50045|138360|138368|171098|221466|221467|221469|221471|221472|221473|221474|227193|239444|239444|239458|239464|239467|239471|239474|239477|239482|239488|239491|239495|239497|239498|251500|251502|251504|251505|293581|293582|293587|293588|293595|293596|293612|295032|295038|295039|295040|298678|298679|298680|298681|298683|298688|298703|298704|298711|394068|394077|394098|394105|394222|394301|394334|394336|394339|394469|394518|394541|453445|453508|453809|453899|520120|520401|562207|563999|829329|890761|890762|890763|890764|890765|890766|890767|890768|890769|890770|890771|890772|890773|890774|890775|890776|890777|890778|890779|890780|890781|890782|890783|891800", + "upstreamId": "28901|50038|50039|50040|50043|50045|138360|138368|171098|221466|221467|221469|221471|221472|221473|221474|227193|239444|239444|239458|239464|239467|239471|239474|239477|239482|239488|239491|239495|239497|239498|251500|251502|251504|251505|293581|293582|293587|293588|293595|293596|293612|295032|295038|295039|295040|298678|298679|298680|298681|298683|298688|298703|298704|298711|394068|394077|394098|394105|394222|394301|394334|394336|394339|394469|394518|394541|453445|453508|453809|453899|520120|520401|562207|563999|829329|890761|890762|890763|890764|890765|890766|890767|890768|890769|890770|890771|890772|890773|890774|890775|890776|890777|890778|890779|890780|890781|890782|890783|891800", "text": "Mastocytosis" }, { - "baseId": "28902", + "upstreamId": "28902", "text": "Germ cell tumor of testis" }, { - "baseId": "28904|28905|50043|227193|362792", + "upstreamId": "28904|28905|50043|227193|362792", "text": "Gastrointestinal stromal tumor, familial" }, { - "baseId": "28904|179419|362782|362786|362788|362792|362798|362799|362804|362808", + "upstreamId": "28904|179419|362782|362786|362788|362792|362798|362799|362804|362808", "text": "Thymoma" }, { - "baseId": "28906|28907|28908|28909|28910|28911|38770|101163|101164|101167|101168|141091|141092|141093|141094|141095|169046|169048|169049|169050|169051|169052|169053|169054|169055|169056|169057|169058|169059|169060|169061|169062|177146|177278|177721|187399|187400|187401|187402|187403|187404|187405|187407|187408|187409|187410|187411|187412|187413|187415|190470|190472|202797|202800|202803|202809|202813|202817|202819|202825|202836|202839|202840|202841|202843|208087|225868|247389|265619|353907|354156|360091|360196|364043|373077|373079|373082|374207|374216|376029|376043|409114|413374|414698|414699|414700|429553|429554|431922|445223|446889|462969|463705|463706|463720|463723|463725|463729|464033|464186|464197|486756|486757|486758|504533|505050|528142|528144|528484|528486|528489|538022|538023|552174|566406|567998|568018|568019|568854|568860|572775|611419|642342|642343|642344|642345|642346|642347|642348|693473|693475|784711|784712|784713|791397|791398|798673|798674|820618|822095|822096|822097|822098|841351|841352|841353|841354|841355|841356|841357|841358|841359|841360|860100|861579|904256|917786|919524|919525|927020|927021|927022|927023|927024|927025|936596|936597|948530|948531|948532|948533|957200|961317|961620|964414|965993|965994|967280|971516|976663|983762", + "upstreamId": "28906|28907|28908|28909|28910|28911|38770|101163|101164|101167|101168|141091|141092|141093|141094|141095|169046|169048|169049|169050|169051|169052|169053|169054|169055|169056|169057|169058|169059|169060|169061|169062|177146|177278|177721|187399|187400|187401|187402|187403|187404|187405|187407|187408|187409|187410|187411|187412|187413|187415|190470|190472|202797|202800|202803|202809|202813|202817|202819|202825|202836|202839|202840|202841|202843|208087|225868|247389|265619|353907|354156|360091|360196|364043|373077|373079|373082|374207|374216|376029|376043|409114|413374|414698|414699|414700|429553|429554|431922|445223|446889|462969|463705|463706|463720|463723|463725|463729|464033|464186|464197|486756|486757|486758|504533|505050|528142|528144|528484|528486|528489|538022|538023|552174|566406|567998|568018|568019|568854|568860|572775|611419|642342|642343|642344|642345|642346|642347|642348|693473|693475|784711|784712|784713|791397|791398|798673|798674|820618|822095|822096|822097|822098|841351|841352|841353|841354|841355|841356|841357|841358|841359|841360|860100|861579|904256|917786|919524|919525|927020|927021|927022|927023|927024|927025|936596|936597|948530|948531|948532|948533|957200|961317|961620|964414|965993|965994|967280|971516|976663|983762", "text": "Rett syndrome, congenital variant" }, { - "baseId": "28912|28913", + "upstreamId": "28912|28913", "text": "ERBB2 POLYMORPHISM" }, { - "baseId": "28919", + "upstreamId": "28919", "text": "Ovarian Adenocarcinoma" }, { - "baseId": "28923|28924|31368|31370|31371|31372|31378|31381|50063|182676|192091|363005|363079|363127|363577|363607|363608", + "upstreamId": "28923|28924|31368|31370|31371|31372|31378|31381|50063|182676|192091|363005|363079|363127|363577|363607|363608", "text": "Carcinoma" }, { - "baseId": "28924|28926|192091|362947|363005|363006|363007|363008|363009", + "upstreamId": "28924|28926|192091|362947|363005|363006|363007|363008|363009", "text": "Kidney Carcinoma" }, { - "baseId": "28927|28928|28929", + "upstreamId": "28927|28928|28929", "text": "Childhood hepatocellular carcinoma" }, { - "baseId": "28930", + "upstreamId": "28930", "text": "Autism 9" }, { - "baseId": "28931|28932|28933|28934|28935|28936|28937|426707|426708|426709|426710|426711|426712|536234|683222|683223|805247|818178|963502|965958", + "upstreamId": "28931|28932|28933|28934|28935|28936|28937|426707|426708|426709|426710|426711|426712|536234|683222|683223|805247|818178|963502|965958", "text": "Feingold syndrome 1" }, { - "baseId": "28938|28939|83949", + "upstreamId": "28938|28939|83949", "text": "Large congenital melanocytic nevus" }, { - "baseId": "28939|83949", + "upstreamId": "28939|83949", "text": "Neurocutaneous melanocytosis" }, { - "baseId": "28940|28941|28942|48946|142241|142242|172330|172331|206711|275941|275948|275949|275955|275957|276087|276092|276093|276107|276109|276116|276117|276118|276130|276241|276242|276250|276258|276259|276265|276267|276282|276283|276286|276346|276347|276358|276367|276380|276403|276416|276418|276428|276429|276440|364371|404885|861980|861981|861982|861983|861984|861985|861986|861987|861988|861989|861990|861991|861992|861993|861994|861995|861996|861997|861998|861999|862000|862001|862002|862003|862004|862005|862006|862007|862008|862009|862010|864961", + "upstreamId": "28940|28941|28942|48946|142241|142242|172330|172331|206711|275941|275948|275949|275955|275957|276087|276092|276093|276107|276109|276116|276117|276118|276130|276241|276242|276250|276258|276259|276265|276267|276282|276283|276286|276346|276347|276358|276367|276380|276403|276416|276418|276428|276429|276440|364371|404885|861980|861981|861982|861983|861984|861985|861986|861987|861988|861989|861990|861991|861992|861993|861994|861995|861996|861997|861998|861999|862000|862001|862002|862003|862004|862005|862006|862007|862008|862009|862010|864961", "text": "Noonan syndrome 6" }, { - "baseId": "28943|462454|462456|463311|527341|840232|840233|840234|926723|926724|936243|936244|956924|956925|956926", + "upstreamId": "28943|462454|462456|463311|527341|840232|840233|840234|926723|926724|936243|936244|956924|956925|956926", "text": "Accelerated tumor formation, susceptibility to" }, { - "baseId": "28944|28947|28948|28949|28950|28952|28953|28954|28955|28956|28957|28958|28967|28968|28969|28970|28971|28972|28972|28974|28975|28977|28978|28981|28984|28985|28987|28988|28990|28993|36221|36222|36223|36224|36228|36230|36235|36242|36246|36247|36249|36255|36260|36261|36267|36269|36273|36275|36278|36279|36280|36284|36286|36288|36289|36291|36292|36293|36296|36298|36304|36310|38399|45382|45383|45384|45388|47198|47200|47215|47216|47217|47230|47233|50280|50281|50282|50283|50284|50285|136461|136475|136510|138916|138917|138918|138919|138920|138926|138928|139806|139807|139808|139809|139812|139813|139814|139816|139820|139822|139823|139825|139827|139828|139830|139832|139834|139835|151134|151385|171124|171125|182944|182945|182950|182955|182958|186115|186117|186118|197378|197386|212764|212766|212767|212768|212769|212772|212775|212776|212785|212787|212790|212792|212793|212794|212795|221949|221950|221952|221961|221962|221967|221969|221970|221971|221972|221976|221977|240783|240788|240790|240791|240792|240793|240795|240796|240806|240811|253762|310292|321368|321384|321388|358819|358820|358821|358822|358823|358824|358825|358826|358827|358828|358829|358830|358831|358832|359964|397244|397271|397281|397282|397451|397456|397793|397813|459825|460013|460278|460727|475257|525176|525320|525390|525471|539277|539278|539279|539280|539281|539282|539283|539284|539285|539286|539287|540534|540540|540543|540546|540550|563727|569655|575800|575801|575802|575803|575804|575805|790958|790959|967151", + "upstreamId": "28944|28947|28948|28949|28950|28952|28953|28954|28955|28956|28957|28958|28967|28968|28969|28970|28971|28972|28972|28974|28975|28977|28978|28981|28984|28985|28987|28988|28990|28993|36221|36222|36223|36224|36228|36230|36235|36242|36246|36247|36249|36255|36260|36261|36267|36269|36273|36275|36278|36279|36280|36284|36286|36288|36289|36291|36292|36293|36296|36298|36304|36310|38399|45382|45383|45384|45388|47198|47200|47215|47216|47217|47230|47233|50280|50281|50282|50283|50284|50285|136461|136475|136510|138916|138917|138918|138919|138920|138926|138928|139806|139807|139808|139809|139812|139813|139814|139816|139820|139822|139823|139825|139827|139828|139830|139832|139834|139835|151134|151385|171124|171125|182944|182945|182950|182955|182958|186115|186117|186118|197378|197386|212764|212766|212767|212768|212769|212772|212775|212776|212785|212787|212790|212792|212793|212794|212795|221949|221950|221952|221961|221962|221967|221969|221970|221971|221972|221976|221977|240783|240788|240790|240791|240792|240793|240795|240796|240806|240811|253762|310292|321368|321384|321388|358819|358820|358821|358822|358823|358824|358825|358826|358827|358828|358829|358830|358831|358832|359964|397244|397271|397281|397282|397451|397456|397793|397813|459825|460013|460278|460727|475257|525176|525320|525390|525471|539277|539278|539279|539280|539281|539282|539283|539284|539285|539286|539287|540534|540540|540543|540546|540550|563727|569655|575800|575801|575802|575803|575804|575805|790958|790959|967151", "text": "Multiple endocrine neoplasia, type 2a" }, { - "baseId": "28944|28947|28948|28949|28950|28952|28953|28954|28954|28955|28956|28957|28958|28964|28967|28968|28970|28971|28972|28973|28974|28975|28977|28978|28979|28982|28983|28984|28985|28986|28987|28988|28989|28990|28994|36221|36222|36223|36224|36226|36228|36231|36237|36238|36239|36240|36241|36242|36243|36244|36246|36246|36249|36250|36252|36254|36259|36260|36261|36266|36269|36270|36272|36273|36274|36275|36276|36277|36279|36280|36283|36284|36286|36287|36288|36289|36291|36292|36293|36296|36298|36299|36301|36302|36304|36305|36309|38399|45384|45388|46839|47198|47201|47205|47206|47209|47215|47216|47217|47218|47221|47223|47224|47225|47228|50278|50279|50280|50281|50282|50283|50284|50285|88840|101890|101891|101892|101893|136461|136472|136475|136510|138916|138917|138918|138919|138920|138921|138922|138923|138924|138925|138926|138927|138928|138929|138930|139806|139807|139808|139809|139810|139811|139812|139813|139814|139815|139816|139817|139818|139819|139820|139821|139822|139823|139824|139825|139826|139827|139828|139829|139830|139831|139832|139833|139834|139835|139836|139837|151134|151385|152390|171124|171125|171126|174942|175112|182944|182945|182948|182949|182950|182951|182953|182955|182956|182957|182958|186114|186115|186116|186117|186118|186119|195744|197379|197386|212764|212765|212766|212767|212768|212769|212770|212771|212772|212774|212775|212776|212777|212778|212779|212780|212781|212782|212783|212784|212785|212786|212787|212789|212790|212791|212792|212793|212794|212795|212796|213513|221944|221945|221946|221947|221948|221949|221950|221951|221952|221953|221954|221955|221956|221957|221958|221961|221962|221963|221964|221965|221966|221967|221968|221969|221970|221971|221972|221973|221974|221975|221976|221977|226087|233776|233777|233780|233785|233786|233787|233789|233790|233792|233794|240782|240783|240784|240785|240786|240787|240788|240789|240790|240791|240792|240793|240794|240795|240796|240797|240799|240800|240801|240802|240803|240804|240805|240806|240807|240808|240809|240810|240811|240813|240814|240815|253763|253764|253765|253766|271973|310270|310276|315392|315393|321370|321385|321388|322066|322067|322103|358822|358826|358827|358830|358832|359961|359964|363192|370742|371671|371676|397244|397249|397253|397255|397261|397262|397267|397269|397271|397281|397282|397294|397295|397313|397432|397444|397445|397449|397451|397452|397453|397456|397458|397461|397468|397472|397477|397480|397484|397494|397516|397674|397680|397681|397683|397690|397695|397697|397699|397700|397703|397710|397713|397723|397775|397776|397778|397783|397793|397807|397810|397813|397814|397824|397825|397828|397837|397846|397847|407855|407856|425873|425874|459768|459772|459774|459777|459794|459798|459809|459816|459817|459821|459825|459829|459832|459835|459845|459848|459850|459851|459855|459857|459861|459871|459872|459879|459882|459886|459973|459980|459990|459995|459998|460000|460003|460006|460008|460009|460013|460017|460021|460023|460024|460025|460027|460029|460031|460032|460051|460067|460069|460070|460235|460237|460239|460246|460247|460251|460259|460261|460265|460267|460271|460272|460278|460282|460285|460289|460291|460304|460309|460312|460316|460318|460320|460325|460664|460669|460677|460686|460688|460691|460695|460697|460710|460717|460719|460723|460727|460729|460733|460738|460753|475056|475065|475070|475076|475081|475101|475107|475250|475257|475258|475260|475261|475265|475270|475271|475272|475273|475276|475279|475289|475296|475297|475303|475305|475307|475308|475329|475336|475340|475345|502791|503619|503625|525078|525092|525093|525098|525100|525105|525109|525112|525123|525127|525132|525135|525149|525153|525164|525165|525176|525178|525284|525287|525292|525293|525294|525297|525299|525302|525306|525308|525315|525317|525320|525324|525331|525332|525337|525390|525395|525396|525401|525402|525407|525409|525415|525416|525420|525421|525428|525429|525436|525439|525445|525446|525450|525461|525471|525586|525594|525596|525606|525607|525610|525612|525614|525617|525627|525629|525640|525641|525642|525643|525644|525645|539278|539279|539280|539281|539282|539286|540533|540536|540542|540543|540553|551859|551860|551873|563694|563695|563710|563715|563725|563727|563732|563733|563735|563738|563740|563746|563748|563750|563752|563754|563758|563761|563766|563773|564563|564565|564567|564571|564585|564590|566257|566262|566263|566266|566270|566278|566279|566283|566284|566294|566295|566297|566298|566300|566302|569614|569630|569631|569635|569645|569646|569655|569658|569660|569662|569666|569668|575550|575553|575554|575555|575801|575802|575803|638860|638861|638862|638863|638864|638865|638866|638867|638868|638869|638870|638871|638872|638873|638874|638875|638876|638877|638878|638879|638880|638881|638882|638883|638884|638885|638886|638887|638888|638889|638890|638891|638892|638893|638894|638895|638896|638897|638898|638899|638900|638901|638902|638903|638904|638905|638906|638907|638908|638909|638910|638911|638912|638913|638914|638915|638916|638917|638918|638919|638920|638921|638922|638923|638924|638925|638926|638927|638928|638929|638930|638931|638932|638933|638934|638935|638936|638937|638938|638939|638940|651962|651964|652000|652032|652034|652127|684174|685272|687627|687628|687629|687630|687632|687633|687634|687635|689981|689982|692829|692831|692832|692834|692835|692839|692840|692842|695475|695478|695479|701341|701345|712366|712367|737485|744443|752096|752097|752098|752103|767715|767717|767721|767727|767729|767730|767734|767738|767739|775485|775666|783590|787586|787643|787663|809872|809875|809911|809915|809918|809922|809933|809934|809939|809947|809950|809953|809958|809962|809965|809968|809970|809971|809976|820204|820205|820206|836802|836803|836804|836805|836806|836807|836808|836809|836810|836811|836812|836813|836814|836815|836816|836817|836818|836819|836820|836821|836822|836823|836824|836825|836826|836827|836828|836829|836830|836831|836832|836833|836834|836835|836836|836837|836838|836839|836840|836841|836842|836843|836844|836845|836846|836847|836848|836849|836850|836851|836852|836853|836854|836855|836856|836857|836858|836859|836860|836861|836862|836863|836864|836865|836866|836867|836868|836869|836870|836871|836872|851373|851375|851772|852246|852251|852545|925792|925793|925794|925795|925796|925797|925798|925799|925800|925801|925802|925803|925804|925805|925806|925807|925808|925809|925810|925811|925812|925813|925814|935016|935017|935018|935019|935020|935021|935022|935023|935024|935025|935026|935027|935028|935029|935030|935031|935032|935033|935034|935035|935036|935037|935038|935039|935040|935041|935042|940167|940168|940169|940957|940958|946872|946873|946874|946875|946876|946877|946878|946879|946880|946881|946882|946883|946884|946885|946886|946887|946888|946889|946890|946891|946892|946893|946894|946895|946896|946897|946898|946899|946900|956040|956041|956042|956043|956044|956045|956046|956047|956048|956049|956050|956051|956052|956053|956054|956055|959415", + "upstreamId": "28944|28947|28948|28949|28950|28952|28953|28954|28954|28955|28956|28957|28958|28964|28967|28968|28970|28971|28972|28973|28974|28975|28977|28978|28979|28982|28983|28984|28985|28986|28987|28988|28989|28990|28994|36221|36222|36223|36224|36226|36228|36231|36237|36238|36239|36240|36241|36242|36243|36244|36246|36246|36249|36250|36252|36254|36259|36260|36261|36266|36269|36270|36272|36273|36274|36275|36276|36277|36279|36280|36283|36284|36286|36287|36288|36289|36291|36292|36293|36296|36298|36299|36301|36302|36304|36305|36309|38399|45384|45388|46839|47198|47201|47205|47206|47209|47215|47216|47217|47218|47221|47223|47224|47225|47228|50278|50279|50280|50281|50282|50283|50284|50285|88840|101890|101891|101892|101893|136461|136472|136475|136510|138916|138917|138918|138919|138920|138921|138922|138923|138924|138925|138926|138927|138928|138929|138930|139806|139807|139808|139809|139810|139811|139812|139813|139814|139815|139816|139817|139818|139819|139820|139821|139822|139823|139824|139825|139826|139827|139828|139829|139830|139831|139832|139833|139834|139835|139836|139837|151134|151385|152390|171124|171125|171126|174942|175112|182944|182945|182948|182949|182950|182951|182953|182955|182956|182957|182958|186114|186115|186116|186117|186118|186119|195744|197379|197386|212764|212765|212766|212767|212768|212769|212770|212771|212772|212774|212775|212776|212777|212778|212779|212780|212781|212782|212783|212784|212785|212786|212787|212789|212790|212791|212792|212793|212794|212795|212796|213513|221944|221945|221946|221947|221948|221949|221950|221951|221952|221953|221954|221955|221956|221957|221958|221961|221962|221963|221964|221965|221966|221967|221968|221969|221970|221971|221972|221973|221974|221975|221976|221977|226087|233776|233777|233780|233785|233786|233787|233789|233790|233792|233794|240782|240783|240784|240785|240786|240787|240788|240789|240790|240791|240792|240793|240794|240795|240796|240797|240799|240800|240801|240802|240803|240804|240805|240806|240807|240808|240809|240810|240811|240813|240814|240815|253763|253764|253765|253766|271973|310270|310276|315392|315393|321370|321385|321388|322066|322067|322103|358822|358826|358827|358830|358832|359961|359964|363192|370742|371671|371676|397244|397249|397253|397255|397261|397262|397267|397269|397271|397281|397282|397294|397295|397313|397432|397444|397445|397449|397451|397452|397453|397456|397458|397461|397468|397472|397477|397480|397484|397494|397516|397674|397680|397681|397683|397690|397695|397697|397699|397700|397703|397710|397713|397723|397775|397776|397778|397783|397793|397807|397810|397813|397814|397824|397825|397828|397837|397846|397847|407855|407856|425873|425874|459768|459772|459774|459777|459794|459798|459809|459816|459817|459821|459825|459829|459832|459835|459845|459848|459850|459851|459855|459857|459861|459871|459872|459879|459882|459886|459973|459980|459990|459995|459998|460000|460003|460006|460008|460009|460013|460017|460021|460023|460024|460025|460027|460029|460031|460032|460051|460067|460069|460070|460235|460237|460239|460246|460247|460251|460259|460261|460265|460267|460271|460272|460278|460282|460285|460289|460291|460304|460309|460312|460316|460318|460320|460325|460664|460669|460677|460686|460688|460691|460695|460697|460710|460717|460719|460723|460727|460729|460733|460738|460753|475056|475065|475070|475076|475081|475101|475107|475250|475257|475258|475260|475261|475265|475270|475271|475272|475273|475276|475279|475289|475296|475297|475303|475305|475307|475308|475329|475336|475340|475345|502791|503619|503625|525078|525092|525093|525098|525100|525105|525109|525112|525123|525127|525132|525135|525149|525153|525164|525165|525176|525178|525284|525287|525292|525293|525294|525297|525299|525302|525306|525308|525315|525317|525320|525324|525331|525332|525337|525390|525395|525396|525401|525402|525407|525409|525415|525416|525420|525421|525428|525429|525436|525439|525445|525446|525450|525461|525471|525586|525594|525596|525606|525607|525610|525612|525614|525617|525627|525629|525640|525641|525642|525643|525644|525645|539278|539279|539280|539281|539282|539286|540533|540536|540542|540543|540553|551859|551860|551873|563694|563695|563710|563715|563725|563727|563732|563733|563735|563738|563740|563746|563748|563750|563752|563754|563758|563761|563766|563773|564563|564565|564567|564571|564585|564590|566257|566262|566263|566266|566270|566278|566279|566283|566284|566294|566295|566297|566298|566300|566302|569614|569630|569631|569635|569645|569646|569655|569658|569660|569662|569666|569668|575550|575553|575554|575555|575801|575802|575803|638860|638861|638862|638863|638864|638865|638866|638867|638868|638869|638870|638871|638872|638873|638874|638875|638876|638877|638878|638879|638880|638881|638882|638883|638884|638885|638886|638887|638888|638889|638890|638891|638892|638893|638894|638895|638896|638897|638898|638899|638900|638901|638902|638903|638904|638905|638906|638907|638908|638909|638910|638911|638912|638913|638914|638915|638916|638917|638918|638919|638920|638921|638922|638923|638924|638925|638926|638927|638928|638929|638930|638931|638932|638933|638934|638935|638936|638937|638938|638939|638940|651962|651964|652000|652032|652034|652127|684174|685272|687627|687628|687629|687630|687632|687633|687634|687635|689981|689982|692829|692831|692832|692834|692835|692839|692840|692842|695475|695478|695479|701341|701345|712366|712367|737485|744443|752096|752097|752098|752103|767715|767717|767721|767727|767729|767730|767734|767738|767739|775485|775666|783590|787586|787643|787663|809872|809875|809911|809915|809918|809922|809933|809934|809939|809947|809950|809953|809958|809962|809965|809968|809970|809971|809976|820204|820205|820206|836802|836803|836804|836805|836806|836807|836808|836809|836810|836811|836812|836813|836814|836815|836816|836817|836818|836819|836820|836821|836822|836823|836824|836825|836826|836827|836828|836829|836830|836831|836832|836833|836834|836835|836836|836837|836838|836839|836840|836841|836842|836843|836844|836845|836846|836847|836848|836849|836850|836851|836852|836853|836854|836855|836856|836857|836858|836859|836860|836861|836862|836863|836864|836865|836866|836867|836868|836869|836870|836871|836872|851373|851375|851772|852246|852251|852545|925792|925793|925794|925795|925796|925797|925798|925799|925800|925801|925802|925803|925804|925805|925806|925807|925808|925809|925810|925811|925812|925813|925814|935016|935017|935018|935019|935020|935021|935022|935023|935024|935025|935026|935027|935028|935029|935030|935031|935032|935033|935034|935035|935036|935037|935038|935039|935040|935041|935042|940167|940168|940169|940957|940958|946872|946873|946874|946875|946876|946877|946878|946879|946880|946881|946882|946883|946884|946885|946886|946887|946888|946889|946890|946891|946892|946893|946894|946895|946896|946897|946898|946899|946900|956040|956041|956042|956043|956044|956045|956046|956047|956048|956049|956050|956051|956052|956053|956054|956055|959415", "text": "Multiple endocrine neoplasia, type 2" }, { - "baseId": "28948|28955|28956|28957|28958|28968|28970|28972|28975|28990|31716|31720|31721|31723|31724|31725|31726|31727|31728|31729|31731|31732|31735|31736|31738|31741|31742|31744|31747|31749|36242|36249|45179|45180|45181|45182|45183|45184|45185|45186|45187|45188|45189|45190|45191|45192|45193|45194|45195|45196|45197|45198|45199|45200|47217|47233|48362|50289|50291|50293|50294|102143|102144|102146|102147|136488|138379|138380|139876|139877|139878|139879|139880|139881|139882|139883|171148|171149|177834|181216|181217|186154|186155|186156|186157|186158|186159|195774|197513|197518|197519|197521|197524|197525|197527|197528|197530|197531|197533|197538|197539|197541|197542|197545|197546|197547|197548|197549|197550|197552|197555|197557|197558|197559|197562|197564|197568|212930|212931|212932|212933|212934|212935|212936|212937|212938|212939|212940|212941|212942|212943|212944|212945|212946|212947|212948|212949|212950|212951|222152|222153|222155|222156|222157|222158|222159|222160|222161|222163|222164|222165|222166|241167|241168|241169|241170|241171|241172|241173|241175|241176|241177|241178|241179|241180|241181|241182|241183|241184|241185|241186|241187|241188|241189|241190|241191|241192|241193|241194|241195|241196|241197|241198|241199|241200|241201|241202|241203|241204|254243|254244|259994|259996|259997|259998|259999|260000|260001|260002|264436|264443|314541|314543|314544|314549|314551|321250|321251|327382|327391|327398|327399|328432|328438|328445|328454|328456|328457|358841|371565|371566|372280|372506|390089|397583|398007|398266|398267|398272|398274|398276|398283|398284|398291|398294|398299|398300|398303|398317|398320|398322|398324|398330|398338|398350|398351|398354|398357|398359|398365|398372|398376|398380|398381|398396|398397|398401|398407|398408|398411|398415|398421|398422|398425|398426|398442|398702|398704|398707|398708|398711|398712|398713|398717|398719|398730|398733|398737|398739|398740|398743|398744|398749|398750|398752|398764|398807|398810|398814|398838|398839|398852|398854|398857|398859|398864|398872|398875|398877|398878|398892|398893|398894|408406|408410|415286|419780|419783|419786|419787|419790|419794|419802|419804|419810|419813|419815|419823|419824|419828|419830|419835|419842|419843|419848|419852|419858|419861|419864|419865|421872|433092|434509|444850|444851|444854|444855|461257|461259|461263|461265|461267|461268|461271|461273|461275|461278|461282|461283|461284|461286|461303|461306|461314|461315|461319|461327|461450|461453|461456|461459|461462|461464|461475|461476|461480|461484|461486|461494|461783|461785|461787|461789|461791|461797|461799|461805|461808|461810|461816|461822|461830|461840|461843|461845|461846|461847|461849|461852|461854|462110|462111|462113|462114|462115|462121|462127|462128|462140|462149|462150|462159|462160|462165|462168|462175|462178|462183|462185|462189|462206|475979|475981|475985|475986|476005|476009|476307|476312|476313|476466|476473|476476|476481|514012|525678|526328|526329|526333|526334|526336|526339|526345|526346|526358|526361|526365|526367|526368|526370|526372|526373|526374|526375|526376|526378|526381|526382|526383|526385|526386|526389|526391|526392|526394|526397|526403|526405|526407|526410|526414|526419|526427|526588|526589|526590|526591|526594|526603|526609|526611|526612|526616|526624|526627|526629|526631|526636|526641|526649|526654|526655|526657|526668|526670|526677|526678|526681|526866|526870|526872|526873|526877|526879|526880|526883|526885|526898|526903|526904|526907|526909|526914|526916|526919|537877|537878|539301|539302|539303|539304|564808|564819|564822|564825|564826|564830|564835|564836|564839|564841|564843|564845|565968|565970|565972|565973|565975|565979|565990|565993|565995|566003|566004|566009|566024|566025|566027|566029|566031|566032|566040|567415|567417|567422|567425|567426|567431|567433|567439|567440|567442|567445|567446|567449|570769|570777|570781|570784|570785|570788|570799|570807|575577|575853|575854|575855|575856|575857|612191|640254|640255|640256|640257|640258|640259|640260|640261|640262|640263|640264|640265|640266|640267|640268|640269|640270|640271|640272|640273|640274|640275|640276|640277|640278|640279|640280|640281|640282|640283|640284|640285|640286|640287|640288|640289|640290|640291|640292|640293|640294|640295|640296|640297|640298|640299|640300|640301|640302|640303|640304|640305|640306|640307|640308|640309|640310|640311|640312|640313|640314|640315|640316|640317|640318|640319|640320|652225|652340|652380|652580|652582|652585|652589|652591|687806|687809|693079|693081|724572|738106|752777|752778|752779|752780|752782|759919|768563|768571|768575|768576|768583|784068|784071|784072|784078|791150|791151|791152|799656|799657|799658|810804|810811|810819|810822|810823|810824|810828|810831|810842|810849|815507|820400|820401|820402|820403|838705|838706|838707|838708|838709|838710|838711|838712|838713|838714|838715|838716|838717|838718|838719|838720|838721|838722|838723|838724|838725|838726|838727|838728|838729|838730|838731|838732|838733|838734|838735|838736|838737|838738|838739|838740|838741|838742|838743|838744|838745|838746|838747|838748|838749|838750|838751|838752|838753|838754|851445|851447|851887|851889|851891|851893|851895|852379|852380|852621|868255|868256|868257|868258|868259|868260|868261|868262|868263|905928|906186|919378|926320|926321|926322|926323|926324|926325|926326|926327|926328|926329|926330|926331|926332|926333|926334|926335|926336|926337|926338|926339|926340|926341|935665|935666|935667|935668|935669|935670|935671|935672|935673|935674|935675|935676|935677|935678|935679|935680|935681|935682|935683|935684|935685|935686|940227|941005|947561|947562|947563|947564|947565|947566|947567|947568|947569|947570|947571|947572|947573|947574|947575|947576|947577|947578|947579|947580|956579|956580|956581|956582|956583|956584|956585|956586|960002|960003|964673|970940", + "upstreamId": "28948|28955|28956|28957|28958|28968|28970|28972|28975|28990|31716|31720|31721|31723|31724|31725|31726|31727|31728|31729|31731|31732|31735|31736|31738|31741|31742|31744|31747|31749|36242|36249|45179|45180|45181|45182|45183|45184|45185|45186|45187|45188|45189|45190|45191|45192|45193|45194|45195|45196|45197|45198|45199|45200|47217|47233|48362|50289|50291|50293|50294|102143|102144|102146|102147|136488|138379|138380|139876|139877|139878|139879|139880|139881|139882|139883|171148|171149|177834|181216|181217|186154|186155|186156|186157|186158|186159|195774|197513|197518|197519|197521|197524|197525|197527|197528|197530|197531|197533|197538|197539|197541|197542|197545|197546|197547|197548|197549|197550|197552|197555|197557|197558|197559|197562|197564|197568|212930|212931|212932|212933|212934|212935|212936|212937|212938|212939|212940|212941|212942|212943|212944|212945|212946|212947|212948|212949|212950|212951|222152|222153|222155|222156|222157|222158|222159|222160|222161|222163|222164|222165|222166|241167|241168|241169|241170|241171|241172|241173|241175|241176|241177|241178|241179|241180|241181|241182|241183|241184|241185|241186|241187|241188|241189|241190|241191|241192|241193|241194|241195|241196|241197|241198|241199|241200|241201|241202|241203|241204|254243|254244|259994|259996|259997|259998|259999|260000|260001|260002|264436|264443|314541|314543|314544|314549|314551|321250|321251|327382|327391|327398|327399|328432|328438|328445|328454|328456|328457|358841|371565|371566|372280|372506|390089|397583|398007|398266|398267|398272|398274|398276|398283|398284|398291|398294|398299|398300|398303|398317|398320|398322|398324|398330|398338|398350|398351|398354|398357|398359|398365|398372|398376|398380|398381|398396|398397|398401|398407|398408|398411|398415|398421|398422|398425|398426|398442|398702|398704|398707|398708|398711|398712|398713|398717|398719|398730|398733|398737|398739|398740|398743|398744|398749|398750|398752|398764|398807|398810|398814|398838|398839|398852|398854|398857|398859|398864|398872|398875|398877|398878|398892|398893|398894|408406|408410|415286|419780|419783|419786|419787|419790|419794|419802|419804|419810|419813|419815|419823|419824|419828|419830|419835|419842|419843|419848|419852|419858|419861|419864|419865|421872|433092|434509|444850|444851|444854|444855|461257|461259|461263|461265|461267|461268|461271|461273|461275|461278|461282|461283|461284|461286|461303|461306|461314|461315|461319|461327|461450|461453|461456|461459|461462|461464|461475|461476|461480|461484|461486|461494|461783|461785|461787|461789|461791|461797|461799|461805|461808|461810|461816|461822|461830|461840|461843|461845|461846|461847|461849|461852|461854|462110|462111|462113|462114|462115|462121|462127|462128|462140|462149|462150|462159|462160|462165|462168|462175|462178|462183|462185|462189|462206|475979|475981|475985|475986|476005|476009|476307|476312|476313|476466|476473|476476|476481|514012|525678|526328|526329|526333|526334|526336|526339|526345|526346|526358|526361|526365|526367|526368|526370|526372|526373|526374|526375|526376|526378|526381|526382|526383|526385|526386|526389|526391|526392|526394|526397|526403|526405|526407|526410|526414|526419|526427|526588|526589|526590|526591|526594|526603|526609|526611|526612|526616|526624|526627|526629|526631|526636|526641|526649|526654|526655|526657|526668|526670|526677|526678|526681|526866|526870|526872|526873|526877|526879|526880|526883|526885|526898|526903|526904|526907|526909|526914|526916|526919|537877|537878|539301|539302|539303|539304|564808|564819|564822|564825|564826|564830|564835|564836|564839|564841|564843|564845|565968|565970|565972|565973|565975|565979|565990|565993|565995|566003|566004|566009|566024|566025|566027|566029|566031|566032|566040|567415|567417|567422|567425|567426|567431|567433|567439|567440|567442|567445|567446|567449|570769|570777|570781|570784|570785|570788|570799|570807|575577|575853|575854|575855|575856|575857|612191|640254|640255|640256|640257|640258|640259|640260|640261|640262|640263|640264|640265|640266|640267|640268|640269|640270|640271|640272|640273|640274|640275|640276|640277|640278|640279|640280|640281|640282|640283|640284|640285|640286|640287|640288|640289|640290|640291|640292|640293|640294|640295|640296|640297|640298|640299|640300|640301|640302|640303|640304|640305|640306|640307|640308|640309|640310|640311|640312|640313|640314|640315|640316|640317|640318|640319|640320|652225|652340|652380|652580|652582|652585|652589|652591|687806|687809|693079|693081|724572|738106|752777|752778|752779|752780|752782|759919|768563|768571|768575|768576|768583|784068|784071|784072|784078|791150|791151|791152|799656|799657|799658|810804|810811|810819|810822|810823|810824|810828|810831|810842|810849|815507|820400|820401|820402|820403|838705|838706|838707|838708|838709|838710|838711|838712|838713|838714|838715|838716|838717|838718|838719|838720|838721|838722|838723|838724|838725|838726|838727|838728|838729|838730|838731|838732|838733|838734|838735|838736|838737|838738|838739|838740|838741|838742|838743|838744|838745|838746|838747|838748|838749|838750|838751|838752|838753|838754|851445|851447|851887|851889|851891|851893|851895|852379|852380|852621|868255|868256|868257|868258|868259|868260|868261|868262|868263|905928|906186|919378|926320|926321|926322|926323|926324|926325|926326|926327|926328|926329|926330|926331|926332|926333|926334|926335|926336|926337|926338|926339|926340|926341|935665|935666|935667|935668|935669|935670|935671|935672|935673|935674|935675|935676|935677|935678|935679|935680|935681|935682|935683|935684|935685|935686|940227|941005|947561|947562|947563|947564|947565|947566|947567|947568|947569|947570|947571|947572|947573|947574|947575|947576|947577|947578|947579|947580|956579|956580|956581|956582|956583|956584|956585|956586|960002|960003|964673|970940", "text": "Multiple endocrine neoplasia, type 1" }, { - "baseId": "28948|28949|28955|28956|28957|28958|28967|28968|28970|28972|28975|28977|28986|28987|28990|36221|36224|36228|36242|36249|36261|36280|36284|36293|36296|36298|38399|47198|47215|47217|47233|50281|50282|50283|136461|136475|138916|138917|138919|138920|138926|138928|139806|139808|139809|139812|139822|139823|139828|139830|139832|139834|139835|171124|171125|182944|182945|182950|182955|182958|186115|186117|212766|212775|212787|221950|221952|221961|221967|221970|221972|221977|240788|240791|240795|240811|321368|358819|358820|358821|358822|358823|358824|358825|358826|358827|358828|358829|358830|358831|358832|525640|919267|919268|919269|967151|974878", + "upstreamId": "28948|28949|28955|28956|28957|28958|28967|28968|28970|28972|28975|28977|28986|28987|28990|36221|36224|36228|36242|36249|36261|36280|36284|36293|36296|36298|38399|47198|47215|47217|47233|50281|50282|50283|136461|136475|138916|138917|138919|138920|138926|138928|139806|139808|139809|139812|139822|139823|139828|139830|139832|139834|139835|171124|171125|182944|182945|182950|182955|182958|186115|186117|212766|212775|212787|221950|221952|221961|221967|221970|221972|221977|240788|240791|240795|240811|321368|358819|358820|358821|358822|358823|358824|358825|358826|358827|358828|358829|358830|358831|358832|525640|919267|919268|919269|967151|974878", "text": "Multiple endocrine neoplasia, type 2b" }, { - "baseId": "28948|28955|28956|28957|28958|28968|28970|28972|28975|28990|36222|36224|36242|36249|36257|36272|36284|36301|47217|47233|54283|363191|363192|363193", + "upstreamId": "28948|28955|28956|28957|28958|28968|28970|28972|28975|28990|36222|36224|36242|36249|36257|36272|36284|36301|47217|47233|54283|363191|363192|363193", "text": "Medullary thyroid carcinoma" }, { - "baseId": "28954|28954|28955|28962|28975|28977|28983|28987|28991|36237|36246|36288|45384|50284|54761|101892|101893|133398|138927|171124|171125|171126|231108|514269|551710|590752|590753|590754|590755|590756|590757|590759|590760|590761|590966|590967|590968|590969|590970|590971|610667|672082|679030|679039|679042|679045|679054|679058|679061|679070|679071|679075|679080|679083|679085|679089|679092|679096|679097|679098|679099|679102|679105|679113|679121|679129|679130|679132|679133|679140|679160|679171|679172|679771|682630|683144|858654|858655", + "upstreamId": "28954|28954|28955|28962|28975|28977|28983|28987|28991|36237|36246|36288|45384|50284|54761|101892|101893|133398|138927|171124|171125|171126|231108|514269|551710|590752|590753|590754|590755|590756|590757|590759|590760|590761|590966|590967|590968|590969|590970|590971|610667|672082|679030|679039|679042|679045|679054|679058|679061|679070|679071|679075|679080|679083|679085|679089|679092|679096|679097|679098|679099|679102|679105|679113|679121|679129|679130|679132|679133|679140|679160|679171|679172|679771|682630|683144|858654|858655", "text": "Hirschsprung disease" }, { - "baseId": "28956", + "upstreamId": "28956", "text": "Thyroid carcinoma" }, { - "baseId": "28958", + "upstreamId": "28958", "text": "Thyroid carcinoma, sporadic medullary" }, { - "baseId": "28969", + "upstreamId": "28969", "text": "MULTIPLE ENDOCRINE NEOPLASIA, TYPE IIA, WITHOUT PHEOCHROMOCYTOMA" }, { - "baseId": "28972|28973", + "upstreamId": "28972|28973", "text": "MULTIPLE ENDOCRINE NEOPLASIA, TYPE IIA, WITH HIRSCHSPRUNG DISEASE" }, { - "baseId": "28975|28977|28985|28986|28993|28994|36221|36228|36230|36269|36275|36287|36305|45384|50278|50282|50284|50285|50293|101890|101891|101892|136461|136472|138916|138926|139807|139815|139817|139819|139827|139828|139830|139833|139835|171125|182944|182948|182956|182958|186117|186118|212767|212783|212784|212794|212930|213771|221946|240788|240790|240797|240802|271973|310269|310270|310276|310292|310293|310301|310303|310308|310309|310315|310324|310330|310333|310334|310337|314528|314532|314540|314552|315391|315392|315393|315394|315397|315398|315399|315400|315401|315409|315411|315412|315418|315419|316327|316346|321246|321368|321369|321370|321384|321385|321388|321398|321411|321412|321414|321415|321417|321419|321420|321423|322063|322066|322067|322068|322098|322103|322120|322121|322125|322128|322139|322140|322141|322142|322151|322153|322160|322161|322168|323758|327388|327389|327400|328439|331128|353127|353128|353220|358824|358829|397269|397444|397680|397699|459817|460008|460025|460251|460316|460325|460677|460686|475107|525176|539281|569630|569655|836830|865863|865864|865865|865866|865867|865868|865869|865870|865871|865872|865873|865874|865875|865876|865877|865878|865879|865880|865881|865882|868471|868472", + "upstreamId": "28975|28977|28985|28986|28993|28994|36221|36228|36230|36269|36275|36287|36305|45384|50278|50282|50284|50285|50293|101890|101891|101892|136461|136472|138916|138926|139807|139815|139817|139819|139827|139828|139830|139833|139835|171125|182944|182948|182956|182958|186117|186118|212767|212783|212784|212794|212930|213771|221946|240788|240790|240797|240802|271973|310269|310270|310276|310292|310293|310301|310303|310308|310309|310315|310324|310330|310333|310334|310337|314528|314532|314540|314552|315391|315392|315393|315394|315397|315398|315399|315400|315401|315409|315411|315412|315418|315419|316327|316346|321246|321368|321369|321370|321384|321385|321388|321398|321411|321412|321414|321415|321417|321419|321420|321423|322063|322066|322067|322068|322098|322103|322120|322121|322125|322128|322139|322140|322141|322142|322151|322153|322160|322161|322168|323758|327388|327389|327400|328439|331128|353127|353128|353220|358824|358829|397269|397444|397680|397699|459817|460008|460025|460251|460316|460325|460677|460686|475107|525176|539281|569630|569655|836830|865863|865864|865865|865866|865867|865868|865869|865870|865871|865872|865873|865874|865875|865876|865877|865878|865879|865880|865881|865882|868471|868472", "text": "Multiple endocrine neoplasia" }, { - "baseId": "28984", + "upstreamId": "28984", "text": "MEN2 phenotype: Unclassified" }, { - "baseId": "28987", + "upstreamId": "28987", "text": "Central hypoventilation syndrome, congenital, with hirschsprung disease" }, { - "baseId": "28988", + "upstreamId": "28988", "text": "MEN2 phenotype: Unknown" }, { - "baseId": "28993", + "upstreamId": "28993", "text": "Hirschsprung disease, protection against" }, { - "baseId": "28996|28996|28997|28998|28999|49044|49045|49046|49047|49048|49055|49056|49064|49072|49075|49076|49079|49081|49084|49089|49091|49095|49096|49097|49098|49100|49101|53790|53797|125840|173746|173883|173889|179046|221364|259750|288551|288552|288556|288557|289314|289320|289321|289324|289332|292325|292338|292352|292354|292462|292470|292475|425523|442524|451825|452141|487033|500278|500494|816448|887836|887837|887838|887839|887840|887841|887842|887843|887844|887845|887846|887847|887848|887849|887850|887851|887852|887853|887854|887855|966789", + "upstreamId": "28996|28996|28997|28998|28999|49044|49045|49046|49047|49048|49055|49056|49064|49072|49075|49076|49079|49081|49084|49089|49091|49095|49096|49097|49098|49100|49101|53790|53797|125840|173746|173883|173889|179046|221364|259750|288551|288552|288556|288557|289314|289320|289321|289324|289332|292325|292338|292352|292354|292462|292470|292475|425523|442524|451825|452141|487033|500278|500494|816448|887836|887837|887838|887839|887840|887841|887842|887843|887844|887845|887846|887847|887848|887849|887850|887851|887852|887853|887854|887855|966789", "text": "Noonan syndrome 5" }, { - "baseId": "28996|28996|28999|49044|49045|49046|49047|49048|49055|49056|49075|49079|49081|49083|49091|49095|49096|49097|49098|49100|49101|53790|53797|53800|173746|173883|173889|179046|179055|221364|259750|288551|288552|288556|288557|289314|289320|289321|289324|289332|292325|292338|292352|292354|292462|292470|292475|425523|442524|451825|452141|487033|500278|500494|790324|887836|887837|887838|887839|887840|887841|887842|887843|887844|887845|887846|887847|887848|887849|887850|887851|887852|887853|887854|887855|918797|966789", + "upstreamId": "28996|28996|28999|49044|49045|49046|49047|49048|49055|49056|49075|49079|49081|49083|49091|49095|49096|49097|49098|49100|49101|53790|53797|53800|173746|173883|173889|179046|179055|221364|259750|288551|288552|288556|288557|289314|289320|289321|289324|289332|292325|292338|292352|292354|292462|292470|292475|425523|442524|451825|452141|487033|500278|500494|790324|887836|887837|887838|887839|887840|887841|887842|887843|887844|887845|887846|887847|887848|887849|887850|887851|887852|887853|887854|887855|918797|966789", "text": "LEOPARD syndrome 2" }, { - "baseId": "28996|49075|152010|152012|152013|179044|179046|425523|487033", + "upstreamId": "28996|49075|152010|152012|152013|179044|179046|425523|487033", "text": "Cardiomyopathy, dilated, 1NN" }, { - "baseId": "29000|235242|243608|612016", + "upstreamId": "29000|235242|243608|612016", "text": "Papillary thyroid carcinoma" }, { - "baseId": "29000", + "upstreamId": "29000", "text": "Astrocytoma, low-grade, somatic" }, { - "baseId": "29000", + "upstreamId": "29000", "text": "Germ cell tumor, nonseminomatous" }, { - "baseId": "29000|236444|362948|363046", + "upstreamId": "29000|236444|362948|363046", "text": "Colonic neoplasm" }, { - "baseId": "29000", + "upstreamId": "29000", "text": "Cystic epithelial invagination containing papillae lined by columnar epithelium" }, { - "baseId": "29000|362820", + "upstreamId": "29000|362820", "text": "Trametinib-Dabrafenib Response" }, { - "baseId": "29000|362820", + "upstreamId": "29000|362820", "text": "Vemurafenib-Cobimetinib Response" }, { - "baseId": "29004|29012|29012|29013|29014|29015|29016|29017|29018|29019|29020|29020|38760|38762|38762|38762|48807|48817|48842|48843|48849|48854|48857|49239|53966|53978|53985|174176|175716|198628|264307|359646|359799|363168|537817|552584|790700|790701|790702|790703|790704|790705|919082|919083|919084|920237|964283|965456", + "upstreamId": "29004|29012|29012|29013|29014|29015|29016|29017|29018|29019|29020|29020|38760|38762|38762|38762|48807|48817|48842|48843|48849|48854|48857|49239|53966|53978|53985|174176|175716|198628|264307|359646|359799|363168|537817|552584|790700|790701|790702|790703|790704|790705|919082|919083|919084|920237|964283|965456", "text": "Cardiofaciocutaneous syndrome 1" }, { - "baseId": "29008|29012|29012|29020|38760|38760|38761|38762|38762|38763|48803|48805|48807|48817|48830|48832|48833|48861|48869|49883|49885|53955|53966|53966|53976|53978|53992|53994|137459|140239|174040|301991|302003|309876|310006|310007|359646|359799|395820|494963|496489|501861|552584|578455|654129|897546|897547|897548|897549|897550|897551|897552|897553|897554|897555|897556|897557", + "upstreamId": "29008|29012|29012|29020|38760|38760|38761|38762|38762|38763|48803|48805|48807|48817|48830|48832|48833|48861|48869|49883|49885|53955|53966|53966|53976|53978|53992|53994|137459|140239|174040|301991|302003|309876|310006|310007|359646|359799|395820|494963|496489|501861|552584|578455|654129|897546|897547|897548|897549|897550|897551|897552|897553|897554|897555|897556|897557", "text": "Noonan syndrome 7" }, { - "baseId": "29012|29020|38760|38762|38762|38762|48803|48805|48807|48817|48817|48830|48832|48833|48861|48869|49883|49885|53955|53966|53976|53978|53992|53994|137459|140239|174040|301991|302003|309876|310006|310007|359646|359799|395820|494963|496489|501861|552584|897546|897547|897548|897549|897550|897551|897552|897553|897554|897555|897556|897557", + "upstreamId": "29012|29020|38760|38762|38762|38762|48803|48805|48807|48817|48817|48830|48832|48833|48861|48869|49883|49885|53955|53966|53976|53978|53992|53994|137459|140239|174040|301991|302003|309876|310006|310007|359646|359799|395820|494963|496489|501861|552584|897546|897547|897548|897549|897550|897551|897552|897553|897554|897555|897556|897557", "text": "LEOPARD syndrome 3" }, { - "baseId": "29017", + "upstreamId": "29017", "text": "Familial cardiofaciocutaneous syndrome" }, { - "baseId": "29019|360041|621022|621029|621030", + "upstreamId": "29019|360041|621022|621029|621030", "text": "Genetic syndrome with a Dandy-Walker malformation as major feature" }, { - "baseId": "29019", + "upstreamId": "29019", "text": "Tethered cord" }, { - "baseId": "29019", + "upstreamId": "29019", "text": "PHACE syndrome" }, { - "baseId": "29019|181451|249186|360041|362521|419008|419011|538282|590021|621019|621022|621029|621030|621032|965915|980695|980696", + "upstreamId": "29019|181451|249186|360041|362521|419008|419011|538282|590021|621019|621022|621029|621030|621032|965915|980695|980696", "text": "Dandy-Walker syndrome" }, { - "baseId": "29022|789168", + "upstreamId": "29022|789168", "text": "Proteus syndrome" }, { - "baseId": "29022", + "upstreamId": "29022", "text": "Meningeal Neoplasms" }, { - "baseId": "29022|152509|362957|363226|363232", + "upstreamId": "29022|152509|362957|363226|363232", "text": "Prostate neoplasm" }, { - "baseId": "29022|48662|48663|137193|137194|222360|222361|222362|241781|241782|241783|241784|241785|241786|241787|241788|241789|241790|241791|241792|241793|241794|399550|399555|399560|399561|399660|399666|399671|399672|399674|399676|399678|399680|399685|399688|399692|399701|399703|400089|400091|400268|400269|400272|400276|400279|463114|463116|463565|463568|463569|463574|463575|463578|463863|463866|463869|463872|464062|464068|464070|464078|464079|464083|464090|464091|490094|504954|527961|528007|528011|528012|528018|528020|528027|528028|528352|528354|528357|528366|528368|528467|528469|528474|528480|528481|528488|528490|567840|567841|567852|567855|572691|572696|572705|572715|572717|572718|572722|572735|575930|575931|575932|642178|642179|642180|642181|642182|642183|642184|642185|642186|642187|642188|652581|652901|652902|652907|684465|685394|688245|688246|688247|688248|688249|688252|688253|690076|693447|693449|693450|695612|702779|725583|769700|791384|820598|841139|841140|841141|841142|841143|841144|841145|841146|841147|841148|841149|841150|841151|841152|841153|851985|926975|926976|926977|926978|936535|936536|936537|940298|940299|941056|948453|948454|948455|948456|948457|948458|948459|960078", + "upstreamId": "29022|48662|48663|137193|137194|222360|222361|222362|241781|241782|241783|241784|241785|241786|241787|241788|241789|241790|241791|241792|241793|241794|399550|399555|399560|399561|399660|399666|399671|399672|399674|399676|399678|399680|399685|399688|399692|399701|399703|400089|400091|400268|400269|400272|400276|400279|463114|463116|463565|463568|463569|463574|463575|463578|463863|463866|463869|463872|464062|464068|464070|464078|464079|464083|464090|464091|490094|504954|527961|528007|528011|528012|528018|528020|528027|528028|528352|528354|528357|528366|528368|528467|528469|528474|528480|528481|528488|528490|567840|567841|567852|567855|572691|572696|572705|572715|572717|572718|572722|572735|575930|575931|575932|642178|642179|642180|642181|642182|642183|642184|642185|642186|642187|642188|652581|652901|652902|652907|684465|685394|688245|688246|688247|688248|688249|688252|688253|690076|693447|693449|693450|695612|702779|725583|769700|791384|820598|841139|841140|841141|841142|841143|841144|841145|841146|841147|841148|841149|841150|841151|841152|841153|851985|926975|926976|926977|926978|936535|936536|936537|940298|940299|941056|948453|948454|948455|948456|948457|948458|948459|960078", "text": "Cowden syndrome 6" }, { - "baseId": "29023|29024|29757", + "upstreamId": "29023|29024|29757", "text": "Diabetes mellitus, type 1, susceptibility to" }, { - "baseId": "29025|29026|301785|301796|301797|301798|301799|301801|301802|301808|301809|301813|301816|301817|301818|301824|301825|304949|304950|304951|304954|304956|304970|304978|309593|309599|309601|309602|309603|309604|309629|309630|309638|309639|309640|309645|309654|309657|309658|309780|309781|309784|309785|309786|309790|442478|735933|897356|897357|897358|897359|897360|897361|897363|897365|897367|897368|897369|897370|897371|897372|897373|897374|897376|897377|897379|897380|897382|897384|897387|897388|897389|897391|897392|897394", + "upstreamId": "29025|29026|301785|301796|301797|301798|301799|301801|301802|301808|301809|301813|301816|301817|301818|301824|301825|304949|304950|304951|304954|304956|304970|304978|309593|309599|309601|309602|309603|309604|309629|309630|309638|309639|309640|309645|309654|309657|309658|309780|309781|309784|309785|309786|309790|442478|735933|897356|897357|897358|897359|897360|897361|897363|897365|897367|897368|897369|897370|897371|897372|897373|897374|897376|897377|897379|897380|897382|897384|897387|897388|897389|897391|897392|897394", "text": "Leptin deficiency or dysfunction" }, { - "baseId": "29027|29028|29029|29030|29031|29032|29033|29034|29035|29036|142432|142433|320249|320254|320258|320261|320264|320270|320271|328777|328781|328783|328786|328796|328798|328800|328812|328814|328815|328829|328837|328851|335434|335442|335444|335445|335459|337295|337304|337308|337310|337311|337315|337318|337323|337324|337325|373716|375911|421973|439296|445186|463876|497661|513342|528033|528374|528494|528495|566289|567860|567862|567863|568732|572739|624472|642189|642190|642191|642192|642193|739159|769715|841154|841155|841156|841157|841158|841159|871672|871673|871674|871675|871676|871677|871678|871679|871680|871681|871682|871683|871684|871685|872356|872357|926979|936538|936539|948460", + "upstreamId": "29027|29028|29029|29030|29031|29032|29033|29034|29035|29036|142432|142433|320249|320254|320258|320261|320264|320270|320271|328777|328781|328783|328786|328796|328798|328800|328812|328814|328815|328829|328837|328851|335434|335442|335444|335445|335459|337295|337304|337308|337310|337311|337315|337318|337323|337324|337325|373716|375911|421973|439296|445186|463876|497661|513342|528033|528374|528494|528495|566289|567860|567862|567863|568732|572739|624472|642189|642190|642191|642192|642193|739159|769715|841154|841155|841156|841157|841158|841159|871672|871673|871674|871675|871676|871677|871678|871679|871680|871681|871682|871683|871684|871685|872356|872357|926979|936538|936539|948460", "text": "Purine-nucleoside phosphorylase deficiency" }, { - "baseId": "29031", + "upstreamId": "29031", "text": "NUCLEOSIDE PHOSPHORYLASE POLYMORPHISM" }, { - "baseId": "29037|216786|216787|216788", + "upstreamId": "29037|216786|216787|216788", "text": "Myelodysplastic syndrome progressed to acute myeloid leukemia" }, { - "baseId": "29041|132071|132072|132073|251790|251792|295574|295575|295576|295580|295587|295608|295609|295611|295621|295624|295629|295631|295634|295636|295640|295645|297367|297373|297380|297383|297384|297391|297393|297396|297397|297398|297402|297403|297408|297410|297414|297416|297417|297418|297420|297422|297430|301196|301243|301247|301250|301251|301252|301254|301257|301258|301259|301271|301290|301296|301297|301431|301434|301435|301437|301448|301458|301461|301462|301471|301473|301474|301475|301478|301481|301482|301483|454639|454644|454646|454706|454707|455446|455449|520789|520793|521041|521219|560163|560165|560167|562858|562861|564791|564799|564804|633476|633477|633478|633479|633480|633481|633482|633483|691755|695276|698818|698819|698821|709651|734871|734872|734873|749252|749253|749254|764913|777511|782185|830352|830353|830354|830357|830358|830359|830360|830361|830362|893089|893090|893091|893092|893093|893094|893095|893096|893097|893098|893099|893100|893101|893102|893103|893104|893105|893106|893107|893108|932729|932730|944417|954052|960554", + "upstreamId": "29041|132071|132072|132073|251790|251792|295574|295575|295576|295580|295587|295608|295609|295611|295621|295624|295629|295631|295634|295636|295640|295645|297367|297373|297380|297383|297384|297391|297393|297396|297397|297398|297402|297403|297408|297410|297414|297416|297417|297418|297420|297422|297430|301196|301243|301247|301250|301251|301252|301254|301257|301258|301259|301271|301290|301296|301297|301431|301434|301435|301437|301448|301458|301461|301462|301471|301473|301474|301475|301478|301481|301482|301483|454639|454644|454646|454706|454707|455446|455449|520789|520793|521041|521219|560163|560165|560167|562858|562861|564791|564799|564804|633476|633477|633478|633479|633480|633481|633482|633483|691755|695276|698818|698819|698821|709651|734871|734872|734873|749252|749253|749254|764913|777511|782185|830352|830353|830354|830357|830358|830359|830360|830361|830362|893089|893090|893091|893092|893093|893094|893095|893096|893097|893098|893099|893100|893101|893102|893103|893104|893105|893106|893107|893108|932729|932730|944417|954052|960554", "text": "Amyotrophic lateral sclerosis 21" }, { - "baseId": "29042|29043|29044|320464|320465|320466|320468|320471|320475|320482|329238|329242|329255|329256|329257|329260|335859|335860|335861|335863|335864|337761|337777|337780|337782|337786|463733|464036|528122|528157|528492|528497|528629|568024|568029|568031|568865|572781|581247|581248|581249|581250|581251|581252|642353|642354|642355|652343|702862|739201|754028|754029|754031|784716|784717|841363|841364|841365|841366|841367|841368|841369|841370|871836|871837|871838|871839|871840|871841|871842|871843|871844|927027|927028|927029|927030|936598|936599|948536|957202", + "upstreamId": "29042|29043|29044|320464|320465|320466|320468|320471|320475|320482|329238|329242|329255|329256|329257|329260|335859|335860|335861|335863|335864|337761|337777|337780|337782|337786|463733|464036|528122|528157|528492|528497|528629|568024|568029|568031|568865|572781|581247|581248|581249|581250|581251|581252|642353|642354|642355|652343|702862|739201|754028|754029|754031|784716|784717|841363|841364|841365|841366|841367|841368|841369|841370|871836|871837|871838|871839|871840|871841|871842|871843|871844|927027|927028|927029|927030|936598|936599|948536|957202", "text": "Ectodermal dysplasia and immunodeficiency 2" }, { - "baseId": "29045|325808|325809|325811|325817|325821|335429|335436|341880|341881", + "upstreamId": "29045|325808|325809|325811|325817|325821|335429|335436|341880|341881", "text": "Orthostatic intolerance" }, { - "baseId": "29046|29046|29047|29050|102896|171811|294660|519673|632527|651126|691638|698680|698681", + "upstreamId": "29046|29046|29047|29050|102896|171811|294660|519673|632527|651126|691638|698680|698681", "text": "Parkinson disease 1" }, { - "baseId": "29048", + "upstreamId": "29048", "text": "Parkinson disease 4" }, { - "baseId": "29051", + "upstreamId": "29051", "text": "Pyloric stenosis, infantile hypertrophic 1" }, { - "baseId": "29053|32105", + "upstreamId": "29053|32105", "text": "Malaria, severe, resistance to" }, { - "baseId": "29054|29055", + "upstreamId": "29054|29055", "text": "Coronary artery spasm 1, susceptibility to" }, { - "baseId": "29054", + "upstreamId": "29054", "text": "Hypertension, pregnancy-induced, susceptibility to" }, { - "baseId": "29054", + "upstreamId": "29054", "text": "Hypertension resistant to conventional therapy" }, { - "baseId": "29054", + "upstreamId": "29054", "text": "Ischemic heart disease, susceptibility to" }, { - "baseId": "29056|29057|29058", + "upstreamId": "29056|29057|29058", "text": "Glaucoma 1, open angle, O" }, { - "baseId": "29056|132600|132601|512663|538511|553406|583137|611450|805130|920021|920022|961359|971205|976685", + "upstreamId": "29056|132600|132601|512663|538511|553406|583137|611450|805130|920021|920022|961359|971205|976685", "text": "Mental retardation, X-linked 99" }, { - "baseId": "29059|29060|29061|29062|250163|359373|427881|516338|516339|516353|559204|612558|628443|628444|628445|628446|628447|650782|707732|719261|732771|746776|762184|780829|794771|819047|824755|824756|824757|824758|922238|930799|942229|961927", + "upstreamId": "29059|29060|29061|29062|250163|359373|427881|516338|516339|516353|559204|612558|628443|628444|628445|628446|628447|650782|707732|719261|732771|746776|762184|780829|794771|819047|824755|824756|824757|824758|922238|930799|942229|961927", "text": "Warts, hypogammaglobulinemia, infections, and myelokathexis" }, { - "baseId": "29059", + "upstreamId": "29059", "text": "Myelokathexis, isolated" }, { - "baseId": "29063", + "upstreamId": "29063", "text": "NEUROPEPTIDE Y POLYMORPHISM" }, { - "baseId": "29064|29065|76986|76987|181582|291881|291882|291883|293276|293277|293279|293285|293291|296542|296545|296546|296567|296568|296569|296596|296599|296600|367744|406379|428249|438891|443537|500660|500982|576771|620770|720701|734383|806427|889835|889836|889837|889838|889839|889840|889841|889842|889843|889844", + "upstreamId": "29064|29065|76986|76987|181582|291881|291882|291883|293276|293277|293279|293285|293291|296542|296545|296546|296567|296568|296569|296596|296599|296600|367744|406379|428249|438891|443537|500660|500982|576771|620770|720701|734383|806427|889835|889836|889837|889838|889839|889840|889841|889842|889843|889844", "text": "Hypogonadotropic hypogonadism 11 with or without anosmia" }, { - "baseId": "29066", + "upstreamId": "29066", "text": "Hypogonadotropic hypogonadism 10 without anosmia" }, { - "baseId": "29068", + "upstreamId": "29068", "text": "Peripheral demyelination" }, { - "baseId": "29068|361106", + "upstreamId": "29068|361106", "text": "Hand muscle atrophy" }, { - "baseId": "29068|29215|213789|270687|275542|360799|361080|361106|514010", + "upstreamId": "29068|29215|213789|270687|275542|360799|361080|361106|514010", "text": "Distal muscle weakness" }, { - "baseId": "29068|29215|361106", + "upstreamId": "29068|29215|361106", "text": "Decreased nerve conduction velocity" }, { - "baseId": "29068|29215|360953|361106|361106|969265|972893", + "upstreamId": "29068|29215|360953|361106|361106|969265|972893", "text": "Pes cavus" }, { - "baseId": "29068|39536|360954|361106|513931|677219", + "upstreamId": "29068|39536|360954|361106|513931|677219", "text": "Distal lower limb muscle weakness" }, { - "baseId": "29068|29069|29073|38758|49660|49660|49661|49662|49663|77570|77573|77578|77583|77590|77592|212633|221757|231697|304959|304983|304984|305007|308667|308670|308671|308698|308700|308702|308708|313844|313846|313921|313922|313923|313931|313938|662832|676963|899361|899362|899364|899365|899366|899367|899368|899369|899370|899371|899372|899373|899374|899375|899376|899377|899378|899379|919147|919148", + "upstreamId": "29068|29069|29073|38758|49660|49660|49661|49662|49663|77570|77573|77578|77583|77590|77592|212633|221757|231697|304959|304983|304984|305007|308667|308670|308671|308698|308700|308702|308708|313844|313846|313921|313922|313923|313931|313938|662832|676963|899361|899362|899364|899365|899366|899367|899368|899369|899370|899371|899372|899373|899374|899375|899376|899377|899378|899379|919147|919148", "text": "Charcot-Marie-Tooth disease, demyelinating, type 1f" }, { - "baseId": "29075|29076|29077|29078|29080|298389|298390|298394|298395|298401|298402|298403|298407|298408|298415|298417|298418|300698|300699|300709|300710|300711|300726|300728|300729|300730|300733|300735|300740|300741|300742|300750|300756|305090|305097|305100|305102|305104|305111|305113|305114|305127|305129|305130|305136|305138|305139|305140|305239|305243|305244|305251|305252|305253|305264|305265|425653|428471|721598|790570|798563|798564|894996|894997|894998|894999|895000|895001|895002|895005|895006|895007|895008|895009|895012|895013|895015|895017|895018|895019|895020|895021|895022|895023|895024|895025|895026|895027|895028|895029|895030|895032|896162|896163|983657", + "upstreamId": "29075|29076|29077|29078|29080|298389|298390|298394|298395|298401|298402|298403|298407|298408|298415|298417|298418|300698|300699|300709|300710|300711|300726|300728|300729|300730|300733|300735|300740|300741|300742|300750|300756|305090|305097|305100|305102|305104|305111|305113|305114|305127|305129|305130|305136|305138|305139|305140|305239|305243|305244|305251|305252|305253|305264|305265|425653|428471|721598|790570|798563|798564|894996|894997|894998|894999|895000|895001|895002|895005|895006|895007|895008|895009|895012|895013|895015|895017|895018|895019|895020|895021|895022|895023|895024|895025|895026|895027|895028|895029|895030|895032|896162|896163|983657", "text": "Proprotein convertase 1/3 deficiency" }, { - "baseId": "29079", + "upstreamId": "29079", "text": "Body mass index quantitative trait locus 12" }, { - "baseId": "29081|48109|177889|551571|612304", + "upstreamId": "29081|48109|177889|551571|612304", "text": "Retinitis pigmentosa 27" }, { - "baseId": "29082|29083", + "upstreamId": "29082|29083", "text": "Retinal degeneration, autosomal recessive, clumped pigment type" }, { - "baseId": "29084|38757|244182|244183|244184|275970|275971|276175|276184|276303|276306|276307|276443|276444|276445|364307|364372|446990|446993|447079|447084|447092|447096|447097|447150|447168|447175|447178|447184|514984|514989|514991|514992|514993|515032|515036|515040|515057|556560|556593|556857|556988|624883|626662|626663|626664|626665|626666|626667|626668|626669|626670|626671|626672|626673|690348|761095|761096|761097|780278|792667|822577|822578|822579|822580|822581|822582|822583|822584|862012|862013|862014|921599|929983|929984|929985|941396|952026|952027", + "upstreamId": "29084|38757|244182|244183|244184|275970|275971|276175|276184|276303|276306|276307|276443|276444|276445|364307|364372|446990|446993|447079|447084|447092|447096|447097|447150|447168|447175|447178|447184|514984|514989|514991|514992|514993|515032|515036|515040|515057|556560|556593|556857|556988|624883|626662|626663|626664|626665|626666|626667|626668|626669|626670|626671|626672|626673|690348|761095|761096|761097|780278|792667|822577|822578|822579|822580|822581|822582|822583|822584|862012|862013|862014|921599|929983|929984|929985|941396|952026|952027", "text": "Congenital sensory neuropathy with selective loss of small myelinated fibers" }, { - "baseId": "29085|29086|29087|29088|29089|29090|29091|85027|85029|85031|85032|85033|85036|101002|101003|101004|101006|101007|101008|101009|101010|101011|101012|101013|101014|101015|101017|101018|101019|101020|101021|101023|101024|101025|101026|101027|101028|101029|101031|101032|101033|101034|101035|101036|101037|101038|101039|101041|135150|135151|135152|135153|135154|135155|135156|135158|135159|135160|135161|135162|135163|135164|135165|135166|135167|135168|135169|135170|135171|135172|135173|135174|135175|135176|135177|135178|135179|135180|135181|135182|135183|135184|135185|135186|135187|135188|135189|135190|135191|135192|135193|135194|135195|135196|135197|135198|135199|135200|135201|135202|135203|135204|135205|135206|135207|135208|177067|177199|177331|177332|177855|177856|177858|177860|177862|177863|177864|177865|177866|186648|186649|188272|190944|190946|191042|191043|191124|191304|191305|191307|191454|191455|191458|191460|191471|191475|191615|191616|191741|192842|192983|193043|193133|194026|194059|194060|194061|194168|194169|194685|194707|195163|195164|195469|195482|195523|195528|195530|195536|195807|195840|195970|196119|196126|196127|196381|196382|196383|196402|196409|205133|206863|206864|206865|206866|206867|206868|206869|206870|209343|215219|226443|226889|226891|228528|228529|228530|228535|228536|228537|228540|228541|228542|228543|228544|237087|237127|246899|246901|250181|250182|250187|250191|250192|250193|250196|250200|250205|250206|250210|250211|250237|250238|250239|250242|250243|250244|250246|250247|250248|250249|250252|250253|250256|250257|250258|250259|250260|250261|250262|250263|250264|250265|250266|250268|250269|250270|250272|250273|250274|250277|250278|250282|250283|250286|250288|250290|250291|250294|250302|259696|259697|264035|264046|264067|265361|265362|265595|265596|265599|265600|265627|265715|265722|265980|266610|267787|268017|268543|268544|269326|269327|269338|269667|269861|270582|270615|271659|271660|271859|272039|272042|272138|272611|273470|273703|274150|275112|275115|275121|282085|282086|282091|282092|282096|282097|282099|282101|282107|282109|282113|282115|282122|282124|282129|282131|282138|282142|282143|282144|282149|282151|282153|282155|282160|282162|282165|282166|282170|282172|282173|282175|282180|282183|282185|282194|282196|282200|282750|282764|282766|282768|282772|282773|282775|282788|282789|282791|282792|282795|282797|282806|282809|282812|282813|282814|282815|282817|282819|282822|282832|282837|282839|282842|282845|282847|282848|282849|282850|282852|282853|282854|282856|282857|282858|284340|284344|284363|284365|284371|284381|284387|284393|284394|284395|284405|284406|284410|284411|284422|284423|284425|284427|284433|284441|284443|284449|284469|284470|284472|284586|284591|284592|284593|284595|284597|284616|284620|284621|284622|284631|284633|284643|284660|284661|284663|284668|284669|284689|284691|284692|284694|284697|284702|284704|284707|284711|284712|284713|284716|284719|284720|284721|284734|284735|284736|284738|284748|284749|284759|284760|284768|284772|357225|357226|357227|357228|357229|357230|357231|357232|357233|357234|357235|359297|359394|360820|360821|362171|365442|365458|365467|365494|365497|365501|365507|365513|365526|365533|365535|365650|365657|365658|365660|365661|365682|365690|365691|365702|365704|365707|365720|365721|365725|365735|365738|365742|365743|365747|365748|365749|365750|365751|365752|365755|365855|365888|365891|365893|365907|365950|366001|366010|405310|405312|405313|405314|405320|405323|405327|405329|405330|405331|414822|421280|421281|421285|421287|425402|425403|425407|427909|427910|427911|427913|427914|427915|427916|427917|438159|438160|438161|438162|440526|440527|440529|440532|440533|442935|442936|442940|442941|442942|442943|442946|442947|442948|442949|442950|442951|442954|442955|442956|442957|442958|442959|442960|442962|442963|442964|442965|442966|442968|442969|442970|448546|448586|448588|448589|448590|448591|448595|448607|448608|448621|448625|448630|448634|448637|448643|448648|448650|448652|448655|448657|448662|448664|448666|448668|448673|448676|448679|448681|448686|448692|448696|448702|448704|448707|448711|448716|448721|448722|448725|448728|448729|448730|448734|448736|448738|448739|448743|448744|448746|448747|448758|448760|448761|448767|448769|448772|448773|448777|448779|448780|448783|448784|448787|448788|448793|448794|448795|448796|448798|448799|448800|448801|448803|448805|448811|448812|448814|448816|448818|448820|448821|448822|448823|448827|448828|448829|448831|448832|448834|448835|448836|448837|448840|448841|448843|448844|448845|448846|448847|448848|448849|448850|448852|448853|448854|448855|448856|448857|448859|448860|448861|448862|448863|448864|448867|448868|448869|448871|448872|448873|448875|448877|448881|448883|448884|448885|448886|448887|448888|448891|448892|448893|448894|448895|448896|448898|448899|448900|448901|448904|448905|448906|448907|448908|448909|448910|448911|448912|448914|448915|448916|448917|448918|448919|448920|448921|448923|448924|448925|448926|448929|448930|448931|448932|448933|448934|448935|448936|448937|448939|448940|448941|448942|448943|448944|448945|448946|448947|448948|448949|448950|448954|448956|448958|448959|448960|448962|448963|448964|448966|448967|448968|448969|448970|448971|448972|448973|448975|448977|448979|448982|448983|448992|448993|448994|448995|448999|449000|449002|449003|449004|449005|449008|449009|449010|449011|449012|449019|449022|449024|449025|449028|449030|449037|449042|449044|449048|449049|449051|449052|486874|486887|486889|486907|486940|488866|490201|490476|491243|492829|497909|497912|498711|498718|498723|498727|498735|498737|498750|498758|498762|498765|498796|498799|498801|498807|498810|498813|498815|498830|498950|498960|498978|498994|499014|499015|499025|499028|499035|499036|499049|499051|499073|499075|511326|511327|511329|511330|511332|516364|516368|516370|516372|516376|516378|516380|516382|516387|516388|516390|516394|516395|516397|516399|516400|516404|516406|516407|516408|516409|516410|516412|516414|516416|516417|516419|516422|516424|516425|516427|516429|516431|516433|516435|516438|516440|516442|516443|516444|516445|516448|516449|516450|516451|516452|516458|516459|516460|516465|516471|516473|516477|516479|516481|516486|516487|516488|516489|516491|516493|516494|516495|516496|516498|516499|516500|516501|516503|516504|516505|516506|516507|516508|516509|516510|516512|516514|516515|516516|516517|516518|516519|516521|516523|516524|516526|516527|516528|516529|516530|516531|516532|516533|516534|516535|516536|516537|516539|516540|516541|516542|516543|516544|516546|516547|516548|516549|516550|516551|516553|516554|516555|516556|516557|516558|516560|516561|516562|516563|516564|516568|516569|516570|516571|516573|516574|516577|516578|516585|516588|516589|538338|538950|538951|541387|541389|541390|541397|541400|541402|541404|541407|541412|541414|541416|541420|541425|541426|541429|541436|541437|541438|541446|541447|541448|541450|541454|541455|541456|541458|541459|541460|541461|541463|541465|541466|541470|541471|541472|541476|541477|541478|541479|541480|541482|541483|541485|541489|541490|541491|541492|541493|541494|541495|541496|541497|541498|541499|541500|541501|541502|541503|541504|541505|541506|541507|541508|541509|541510|541511|541512|541513|541514|541515|541516|541517|541518|541519|541520|541521|541522|541523|541524|541525|541526|541527|541528|541529|541530|541531|541532|541533|541534|541535|541536|541537|541538|541539|541540|541541|541542|541543|541544|541545|541546|541547|541548|541549|541550|541551|541552|541553|541554|541555|541556|541557|541558|541559|541560|541561|541562|541563|541564|541565|541566|541567|541568|541569|541570|541571|541572|541573|541574|541575|541576|541577|541578|541579|541580|541581|541582|541583|541584|541585|541586|541587|541588|541589|541590|541591|541592|541593|541594|541595|541596|541597|541598|541599|541600|541601|541602|541603|541604|541605|541606|541607|541608|541609|541610|541611|541612|541613|541614|541615|541616|541617|541618|541619|541620|541621|541622|541623|541624|541625|541626|541627|541628|541629|541630|541631|541632|541633|541634|541635|541636|541637|541638|541639|541640|541641|541642|541643|541644|541645|541646|541647|541648|541649|541650|541651|541652|541653|541654|541655|541656|541657|541658|541659|541660|541661|541662|541663|541664|541665|541666|541667|541669|541671|541673|541675|541677|541679|541680|541682|541683|541685|541687|541688|541689|541690|541692|541694|541695|541696|541697|541699|541701|541703|541706|541707|541708|541709|541710|541711|541714|541715|541717|541718|541719|541720|541721|541722|541723|541726|541727|541729|541732|541733|541736|541737|541738|541739|541740|541742|541743|541749|541750|541751|541753|541754|541755|541757|541761|541768|541771|541774|541775|541777|541778|541781|541782|541786|541789|541790|557534|557536|557538|557540|557542|557544|557546|557548|557550|557552|557554|557556|557558|557560|557562|557564|557566|557568|557570|557572|557574|557576|557577|557578|557579|557583|557585|557587|557589|557591|557593|557595|557597|557599|557601|557603|557605|557607|557609|557611|557613|557615|557617|557619|557621|557623|557625|557627|557629|557631|557633|557635|558631|558745|558747|558749|558751|558753|558755|558757|558759|558761|558763|558765|558767|558769|558771|558773|558777|558779|558781|558783|558785|558787|558791|558793|558795|558797|558799|558801|558803|558805|558807|559232|559234|559236|559238|559240|559242|559244|559246|559248|559250|559252|559254|559256|559258|559260|559262|559264|559266|559268|559270|559272|559274|559276|559278|559280|559282|559284|559286|559288|559290|576565|576568|585238|585702|612348|614596|620034|621094|621095|628491|628492|628493|628494|628495|628496|628497|628498|628499|628500|628501|628502|628503|628504|628505|628506|628507|628508|628509|628510|628511|628512|628513|628514|628515|628516|628517|628518|628519|628520|628521|628522|628523|628524|628525|628526|628527|628528|628529|628530|628531|628532|628533|628534|628535|628536|628537|628538|628539|628540|628541|628542|628543|628544|628545|628546|628547|628548|628549|628550|628551|628552|628553|628554|628555|628556|628557|628558|628559|628560|628561|628562|628563|628564|628565|628566|628567|628568|628569|628570|628571|628572|628573|628574|628575|628576|628577|628578|628579|628580|628581|628582|628583|628584|628585|628586|628587|628588|628589|628590|628591|628592|628593|628594|628595|628596|628597|628598|628599|628600|628601|628602|628603|628604|628605|628606|628607|628608|628609|628610|628611|628612|628613|628614|628615|628616|628617|628618|628619|628620|628621|628622|628623|628624|628625|628626|628627|628628|628629|628630|628631|628632|628633|628634|628635|628636|628637|628638|628639|628640|628641|628642|628643|628644|628645|628646|628647|628648|628649|628650|628651|628652|628653|628654|628655|628656|628657|628658|628659|628660|628661|628662|628663|628664|628665|628666|628667|628668|628669|628670|628671|628672|628673|628674|628675|628676|628677|650711|650713|650770|650785|650829|650831|650837|650839|650846|650849|650853|650855|650864|650865|650873|650874|650878|650893|650895|650896|655150|655151|655160|678059|679739|679740|679820|685851|685852|685853|689669|689670|690750|690751|690752|690753|690754|690755|690756|690757|690758|690759|690760|690761|690762|690763|690764|690765|690767|690768|690769|690770|690771|690772|690774|690775|690776|690777|690778|690779|690780|690781|690782|690783|690784|690785|690786|690787|690788|690789|690791|690792|690793|690795|690796|690797|690798|690799|690800|690802|690804|690805|690806|690807|690809|690810|690812|690813|690814|690815|690816|690817|690818|695072|695073|695074|695075|695076|695077|695078|695079|695080|695081|695082|695083|695084|695086|695087|695088|695089|695090|695091|695092|697049|697050|697052|697053|697054|697055|697056|697057|697058|697059|697060|697061|697062|697063|697065|697066|697067|697068|697070|697071|697072|697073|697074|697075|697076|697077|697078|697079|697080|697082|697084|697085|697086|707755|707756|707758|707759|707760|707761|707763|707764|707765|707766|707768|719286|719287|719288|719289|719290|719291|719292|719293|719295|719296|719297|719298|719300|719301|719302|719303|719304|719305|719306|719307|719310|730056|730057|732802|732803|732804|732805|732806|732807|732808|732809|732811|732813|732814|732815|732818|732819|732820|732821|732822|732823|732826|732828|732829|732830|732831|743792|743806|743809|743811|743816|746797|746799|746800|746801|746802|746806|746810|746812|746813|746814|746815|746816|746817|746819|746821|746822|746823|746825|746826|746827|746828|746829|746830|746831|746833|758947|758987|758989|758992|758996|758997|759023|759124|762218|762219|762223|762226|762230|762231|762233|762235|762236|762238|762239|762241|762242|762246|762250|762253|762261|762263|762264|762267|762269|762276|762278|762279|762280|762282|762285|762286|762288|762289|762290|762296|762299|762301|762303|762304|774567|774573|774575|774577|774578|774580|774581|774582|774592|777169|777175|777206|777210|780842|780846|780854|780855|780858|780859|780865|780868|780869|780872|780873|780875|780876|780878|780882|780883|780886|780887|780891|780892|780895|780896|780898|787036|787040|787044|787087|787215|787217|790055|790056|790057|790058|790059|790060|790061|790062|790063|794792|794796|798484|798485|801567|802125|802126|802127|802245|804985|816022|816023|819053|819054|819055|824816|824817|824818|824819|824820|824821|824822|824823|824824|824825|824826|824827|824828|824829|824830|824831|824832|824833|824834|824835|824836|824837|824838|824839|824840|824841|824842|824843|824844|824845|824846|824847|824848|824849|824850|824851|824852|824853|824854|824855|824856|824857|824858|824859|824860|824861|824862|824863|824864|824865|824866|824867|824868|824869|824870|824871|824872|824873|824874|824875|824876|824877|824878|824879|824880|824881|824882|824883|824884|824885|824886|824887|824888|824889|824890|824891|824892|824893|824894|824895|824896|824897|824898|824899|824900|824901|824902|824903|824904|824905|824906|824907|824908|824909|824910|824911|824912|824913|824914|824915|824916|824917|824918|824919|824920|824921|824922|824923|824924|824925|824926|824927|824928|824929|824930|824931|824932|824933|824934|824935|824936|824937|824938|824939|824940|824941|824942|824943|824944|824945|824946|824947|824948|824949|824950|824951|824952|824953|824954|824955|824956|824957|824958|824959|824960|824961|824962|824963|824964|824965|824966|824967|824968|824969|824970|824971|850793|850795|850797|850834|850836|851079|851081|851083|851085|851087|851334|851338|851340|858399|858776|881128|881129|881130|881131|881132|881133|881134|881135|881136|881137|881138|881139|881140|881141|881142|881143|881144|881145|881146|881147|881148|881149|881150|881151|881152|881153|881154|881155|881156|881157|881158|881159|881160|881161|881162|881163|881164|881165|881166|881167|881168|881169|881170|881171|881172|881173|881174|881175|881176|881177|881178|881179|881180|881181|881182|881183|881184|881185|881186|881187|881188|881192|881193|881195|881196|881197|881198|881199|881200|882808|882809|882810|882811|882812|882813|903509|903510|915016|922256|922257|922258|922259|922260|922261|922262|922263|922264|922265|922266|922267|922268|922269|922270|922271|922272|922273|922274|922275|922276|922277|922278|922279|922280|922281|922282|922283|922284|922285|922286|922287|922288|922289|922290|922291|922292|922293|922294|922295|922296|922297|930821|930822|930823|930824|930825|930826|930827|930828|930829|930830|930831|930832|930833|930834|930835|930836|930837|930838|930839|930840|930841|930842|930843|930844|930845|930846|930847|930848|930849|930850|930851|930852|930853|930854|930855|930856|930857|930858|930859|930860|930861|930862|939844|939845|939846|939847|939848|939849|939850|939851|940655|940656|940657|940658|940659|942252|942253|942254|942255|942256|942257|942258|942259|942260|942261|942262|942263|942264|942265|942266|942267|942268|942269|942270|942271|942272|942273|942274|942275|942276|942277|942278|942279|942280|942281|942282|942283|942284|942285|942286|942287|942288|942289|942290|942291|942292|942293|952640|952641|952642|952643|952644|952645|952646|952647|952648|952649|952650|952651|952652|952653|952654|952655|952656|952657|952658|952659|952660|952661|952662|952663|952664|952665|952666|952667|952668|952669|952670|952671|952672|952673|952674|952675|952676|952677|952678|952679|952680|952681|952682|952683|952684|952685|952686|952687|952688|952689|952690|952691|952692|952693|952694|952695|952696|952697|952698|952699|952700|952701|952702|952703|952704|952705|952706|952707|952708|952709|952710|952711|952712|952713|952714|952715|952716|952717|952718|952719|952720|952721|952722|952723|952724|952725|952726|952727|952728|952729|952730|952731|952732|952733|952734|952735|952736|959580|959581|959582|960445|960446|960447|960448|960449|960450|970146|974479|974480|977179|977180|977578|977579|977580|977581|977582|977583|977584|977585|977586|977587|977588|977589|977590|977591|977592|977593|977594|977595|977596|977597|977598|977599|977600|977601|977602|977603|977604|977605|977606|977607|977608|977609|977610|977611|977612|977613|977614|977615|977616|977617|977618|977619|977620|977621|977622|977623|977624|977625|977626|977627|977628|977629|977630|977631|977632|977633|983843", + "upstreamId": "29085|29086|29087|29088|29089|29090|29091|85027|85029|85031|85032|85033|85036|101002|101003|101004|101006|101007|101008|101009|101010|101011|101012|101013|101014|101015|101017|101018|101019|101020|101021|101023|101024|101025|101026|101027|101028|101029|101031|101032|101033|101034|101035|101036|101037|101038|101039|101041|135150|135151|135152|135153|135154|135155|135156|135158|135159|135160|135161|135162|135163|135164|135165|135166|135167|135168|135169|135170|135171|135172|135173|135174|135175|135176|135177|135178|135179|135180|135181|135182|135183|135184|135185|135186|135187|135188|135189|135190|135191|135192|135193|135194|135195|135196|135197|135198|135199|135200|135201|135202|135203|135204|135205|135206|135207|135208|177067|177199|177331|177332|177855|177856|177858|177860|177862|177863|177864|177865|177866|186648|186649|188272|190944|190946|191042|191043|191124|191304|191305|191307|191454|191455|191458|191460|191471|191475|191615|191616|191741|192842|192983|193043|193133|194026|194059|194060|194061|194168|194169|194685|194707|195163|195164|195469|195482|195523|195528|195530|195536|195807|195840|195970|196119|196126|196127|196381|196382|196383|196402|196409|205133|206863|206864|206865|206866|206867|206868|206869|206870|209343|215219|226443|226889|226891|228528|228529|228530|228535|228536|228537|228540|228541|228542|228543|228544|237087|237127|246899|246901|250181|250182|250187|250191|250192|250193|250196|250200|250205|250206|250210|250211|250237|250238|250239|250242|250243|250244|250246|250247|250248|250249|250252|250253|250256|250257|250258|250259|250260|250261|250262|250263|250264|250265|250266|250268|250269|250270|250272|250273|250274|250277|250278|250282|250283|250286|250288|250290|250291|250294|250302|259696|259697|264035|264046|264067|265361|265362|265595|265596|265599|265600|265627|265715|265722|265980|266610|267787|268017|268543|268544|269326|269327|269338|269667|269861|270582|270615|271659|271660|271859|272039|272042|272138|272611|273470|273703|274150|275112|275115|275121|282085|282086|282091|282092|282096|282097|282099|282101|282107|282109|282113|282115|282122|282124|282129|282131|282138|282142|282143|282144|282149|282151|282153|282155|282160|282162|282165|282166|282170|282172|282173|282175|282180|282183|282185|282194|282196|282200|282750|282764|282766|282768|282772|282773|282775|282788|282789|282791|282792|282795|282797|282806|282809|282812|282813|282814|282815|282817|282819|282822|282832|282837|282839|282842|282845|282847|282848|282849|282850|282852|282853|282854|282856|282857|282858|284340|284344|284363|284365|284371|284381|284387|284393|284394|284395|284405|284406|284410|284411|284422|284423|284425|284427|284433|284441|284443|284449|284469|284470|284472|284586|284591|284592|284593|284595|284597|284616|284620|284621|284622|284631|284633|284643|284660|284661|284663|284668|284669|284689|284691|284692|284694|284697|284702|284704|284707|284711|284712|284713|284716|284719|284720|284721|284734|284735|284736|284738|284748|284749|284759|284760|284768|284772|357225|357226|357227|357228|357229|357230|357231|357232|357233|357234|357235|359297|359394|360820|360821|362171|365442|365458|365467|365494|365497|365501|365507|365513|365526|365533|365535|365650|365657|365658|365660|365661|365682|365690|365691|365702|365704|365707|365720|365721|365725|365735|365738|365742|365743|365747|365748|365749|365750|365751|365752|365755|365855|365888|365891|365893|365907|365950|366001|366010|405310|405312|405313|405314|405320|405323|405327|405329|405330|405331|414822|421280|421281|421285|421287|425402|425403|425407|427909|427910|427911|427913|427914|427915|427916|427917|438159|438160|438161|438162|440526|440527|440529|440532|440533|442935|442936|442940|442941|442942|442943|442946|442947|442948|442949|442950|442951|442954|442955|442956|442957|442958|442959|442960|442962|442963|442964|442965|442966|442968|442969|442970|448546|448586|448588|448589|448590|448591|448595|448607|448608|448621|448625|448630|448634|448637|448643|448648|448650|448652|448655|448657|448662|448664|448666|448668|448673|448676|448679|448681|448686|448692|448696|448702|448704|448707|448711|448716|448721|448722|448725|448728|448729|448730|448734|448736|448738|448739|448743|448744|448746|448747|448758|448760|448761|448767|448769|448772|448773|448777|448779|448780|448783|448784|448787|448788|448793|448794|448795|448796|448798|448799|448800|448801|448803|448805|448811|448812|448814|448816|448818|448820|448821|448822|448823|448827|448828|448829|448831|448832|448834|448835|448836|448837|448840|448841|448843|448844|448845|448846|448847|448848|448849|448850|448852|448853|448854|448855|448856|448857|448859|448860|448861|448862|448863|448864|448867|448868|448869|448871|448872|448873|448875|448877|448881|448883|448884|448885|448886|448887|448888|448891|448892|448893|448894|448895|448896|448898|448899|448900|448901|448904|448905|448906|448907|448908|448909|448910|448911|448912|448914|448915|448916|448917|448918|448919|448920|448921|448923|448924|448925|448926|448929|448930|448931|448932|448933|448934|448935|448936|448937|448939|448940|448941|448942|448943|448944|448945|448946|448947|448948|448949|448950|448954|448956|448958|448959|448960|448962|448963|448964|448966|448967|448968|448969|448970|448971|448972|448973|448975|448977|448979|448982|448983|448992|448993|448994|448995|448999|449000|449002|449003|449004|449005|449008|449009|449010|449011|449012|449019|449022|449024|449025|449028|449030|449037|449042|449044|449048|449049|449051|449052|486874|486887|486889|486907|486940|488866|490201|490476|491243|492829|497909|497912|498711|498718|498723|498727|498735|498737|498750|498758|498762|498765|498796|498799|498801|498807|498810|498813|498815|498830|498950|498960|498978|498994|499014|499015|499025|499028|499035|499036|499049|499051|499073|499075|511326|511327|511329|511330|511332|516364|516368|516370|516372|516376|516378|516380|516382|516387|516388|516390|516394|516395|516397|516399|516400|516404|516406|516407|516408|516409|516410|516412|516414|516416|516417|516419|516422|516424|516425|516427|516429|516431|516433|516435|516438|516440|516442|516443|516444|516445|516448|516449|516450|516451|516452|516458|516459|516460|516465|516471|516473|516477|516479|516481|516486|516487|516488|516489|516491|516493|516494|516495|516496|516498|516499|516500|516501|516503|516504|516505|516506|516507|516508|516509|516510|516512|516514|516515|516516|516517|516518|516519|516521|516523|516524|516526|516527|516528|516529|516530|516531|516532|516533|516534|516535|516536|516537|516539|516540|516541|516542|516543|516544|516546|516547|516548|516549|516550|516551|516553|516554|516555|516556|516557|516558|516560|516561|516562|516563|516564|516568|516569|516570|516571|516573|516574|516577|516578|516585|516588|516589|538338|538950|538951|541387|541389|541390|541397|541400|541402|541404|541407|541412|541414|541416|541420|541425|541426|541429|541436|541437|541438|541446|541447|541448|541450|541454|541455|541456|541458|541459|541460|541461|541463|541465|541466|541470|541471|541472|541476|541477|541478|541479|541480|541482|541483|541485|541489|541490|541491|541492|541493|541494|541495|541496|541497|541498|541499|541500|541501|541502|541503|541504|541505|541506|541507|541508|541509|541510|541511|541512|541513|541514|541515|541516|541517|541518|541519|541520|541521|541522|541523|541524|541525|541526|541527|541528|541529|541530|541531|541532|541533|541534|541535|541536|541537|541538|541539|541540|541541|541542|541543|541544|541545|541546|541547|541548|541549|541550|541551|541552|541553|541554|541555|541556|541557|541558|541559|541560|541561|541562|541563|541564|541565|541566|541567|541568|541569|541570|541571|541572|541573|541574|541575|541576|541577|541578|541579|541580|541581|541582|541583|541584|541585|541586|541587|541588|541589|541590|541591|541592|541593|541594|541595|541596|541597|541598|541599|541600|541601|541602|541603|541604|541605|541606|541607|541608|541609|541610|541611|541612|541613|541614|541615|541616|541617|541618|541619|541620|541621|541622|541623|541624|541625|541626|541627|541628|541629|541630|541631|541632|541633|541634|541635|541636|541637|541638|541639|541640|541641|541642|541643|541644|541645|541646|541647|541648|541649|541650|541651|541652|541653|541654|541655|541656|541657|541658|541659|541660|541661|541662|541663|541664|541665|541666|541667|541669|541671|541673|541675|541677|541679|541680|541682|541683|541685|541687|541688|541689|541690|541692|541694|541695|541696|541697|541699|541701|541703|541706|541707|541708|541709|541710|541711|541714|541715|541717|541718|541719|541720|541721|541722|541723|541726|541727|541729|541732|541733|541736|541737|541738|541739|541740|541742|541743|541749|541750|541751|541753|541754|541755|541757|541761|541768|541771|541774|541775|541777|541778|541781|541782|541786|541789|541790|557534|557536|557538|557540|557542|557544|557546|557548|557550|557552|557554|557556|557558|557560|557562|557564|557566|557568|557570|557572|557574|557576|557577|557578|557579|557583|557585|557587|557589|557591|557593|557595|557597|557599|557601|557603|557605|557607|557609|557611|557613|557615|557617|557619|557621|557623|557625|557627|557629|557631|557633|557635|558631|558745|558747|558749|558751|558753|558755|558757|558759|558761|558763|558765|558767|558769|558771|558773|558777|558779|558781|558783|558785|558787|558791|558793|558795|558797|558799|558801|558803|558805|558807|559232|559234|559236|559238|559240|559242|559244|559246|559248|559250|559252|559254|559256|559258|559260|559262|559264|559266|559268|559270|559272|559274|559276|559278|559280|559282|559284|559286|559288|559290|576565|576568|585238|585702|612348|614596|620034|621094|621095|628491|628492|628493|628494|628495|628496|628497|628498|628499|628500|628501|628502|628503|628504|628505|628506|628507|628508|628509|628510|628511|628512|628513|628514|628515|628516|628517|628518|628519|628520|628521|628522|628523|628524|628525|628526|628527|628528|628529|628530|628531|628532|628533|628534|628535|628536|628537|628538|628539|628540|628541|628542|628543|628544|628545|628546|628547|628548|628549|628550|628551|628552|628553|628554|628555|628556|628557|628558|628559|628560|628561|628562|628563|628564|628565|628566|628567|628568|628569|628570|628571|628572|628573|628574|628575|628576|628577|628578|628579|628580|628581|628582|628583|628584|628585|628586|628587|628588|628589|628590|628591|628592|628593|628594|628595|628596|628597|628598|628599|628600|628601|628602|628603|628604|628605|628606|628607|628608|628609|628610|628611|628612|628613|628614|628615|628616|628617|628618|628619|628620|628621|628622|628623|628624|628625|628626|628627|628628|628629|628630|628631|628632|628633|628634|628635|628636|628637|628638|628639|628640|628641|628642|628643|628644|628645|628646|628647|628648|628649|628650|628651|628652|628653|628654|628655|628656|628657|628658|628659|628660|628661|628662|628663|628664|628665|628666|628667|628668|628669|628670|628671|628672|628673|628674|628675|628676|628677|650711|650713|650770|650785|650829|650831|650837|650839|650846|650849|650853|650855|650864|650865|650873|650874|650878|650893|650895|650896|655150|655151|655160|678059|679739|679740|679820|685851|685852|685853|689669|689670|690750|690751|690752|690753|690754|690755|690756|690757|690758|690759|690760|690761|690762|690763|690764|690765|690767|690768|690769|690770|690771|690772|690774|690775|690776|690777|690778|690779|690780|690781|690782|690783|690784|690785|690786|690787|690788|690789|690791|690792|690793|690795|690796|690797|690798|690799|690800|690802|690804|690805|690806|690807|690809|690810|690812|690813|690814|690815|690816|690817|690818|695072|695073|695074|695075|695076|695077|695078|695079|695080|695081|695082|695083|695084|695086|695087|695088|695089|695090|695091|695092|697049|697050|697052|697053|697054|697055|697056|697057|697058|697059|697060|697061|697062|697063|697065|697066|697067|697068|697070|697071|697072|697073|697074|697075|697076|697077|697078|697079|697080|697082|697084|697085|697086|707755|707756|707758|707759|707760|707761|707763|707764|707765|707766|707768|719286|719287|719288|719289|719290|719291|719292|719293|719295|719296|719297|719298|719300|719301|719302|719303|719304|719305|719306|719307|719310|730056|730057|732802|732803|732804|732805|732806|732807|732808|732809|732811|732813|732814|732815|732818|732819|732820|732821|732822|732823|732826|732828|732829|732830|732831|743792|743806|743809|743811|743816|746797|746799|746800|746801|746802|746806|746810|746812|746813|746814|746815|746816|746817|746819|746821|746822|746823|746825|746826|746827|746828|746829|746830|746831|746833|758947|758987|758989|758992|758996|758997|759023|759124|762218|762219|762223|762226|762230|762231|762233|762235|762236|762238|762239|762241|762242|762246|762250|762253|762261|762263|762264|762267|762269|762276|762278|762279|762280|762282|762285|762286|762288|762289|762290|762296|762299|762301|762303|762304|774567|774573|774575|774577|774578|774580|774581|774582|774592|777169|777175|777206|777210|780842|780846|780854|780855|780858|780859|780865|780868|780869|780872|780873|780875|780876|780878|780882|780883|780886|780887|780891|780892|780895|780896|780898|787036|787040|787044|787087|787215|787217|790055|790056|790057|790058|790059|790060|790061|790062|790063|794792|794796|798484|798485|801567|802125|802126|802127|802245|804985|816022|816023|819053|819054|819055|824816|824817|824818|824819|824820|824821|824822|824823|824824|824825|824826|824827|824828|824829|824830|824831|824832|824833|824834|824835|824836|824837|824838|824839|824840|824841|824842|824843|824844|824845|824846|824847|824848|824849|824850|824851|824852|824853|824854|824855|824856|824857|824858|824859|824860|824861|824862|824863|824864|824865|824866|824867|824868|824869|824870|824871|824872|824873|824874|824875|824876|824877|824878|824879|824880|824881|824882|824883|824884|824885|824886|824887|824888|824889|824890|824891|824892|824893|824894|824895|824896|824897|824898|824899|824900|824901|824902|824903|824904|824905|824906|824907|824908|824909|824910|824911|824912|824913|824914|824915|824916|824917|824918|824919|824920|824921|824922|824923|824924|824925|824926|824927|824928|824929|824930|824931|824932|824933|824934|824935|824936|824937|824938|824939|824940|824941|824942|824943|824944|824945|824946|824947|824948|824949|824950|824951|824952|824953|824954|824955|824956|824957|824958|824959|824960|824961|824962|824963|824964|824965|824966|824967|824968|824969|824970|824971|850793|850795|850797|850834|850836|851079|851081|851083|851085|851087|851334|851338|851340|858399|858776|881128|881129|881130|881131|881132|881133|881134|881135|881136|881137|881138|881139|881140|881141|881142|881143|881144|881145|881146|881147|881148|881149|881150|881151|881152|881153|881154|881155|881156|881157|881158|881159|881160|881161|881162|881163|881164|881165|881166|881167|881168|881169|881170|881171|881172|881173|881174|881175|881176|881177|881178|881179|881180|881181|881182|881183|881184|881185|881186|881187|881188|881192|881193|881195|881196|881197|881198|881199|881200|882808|882809|882810|882811|882812|882813|903509|903510|915016|922256|922257|922258|922259|922260|922261|922262|922263|922264|922265|922266|922267|922268|922269|922270|922271|922272|922273|922274|922275|922276|922277|922278|922279|922280|922281|922282|922283|922284|922285|922286|922287|922288|922289|922290|922291|922292|922293|922294|922295|922296|922297|930821|930822|930823|930824|930825|930826|930827|930828|930829|930830|930831|930832|930833|930834|930835|930836|930837|930838|930839|930840|930841|930842|930843|930844|930845|930846|930847|930848|930849|930850|930851|930852|930853|930854|930855|930856|930857|930858|930859|930860|930861|930862|939844|939845|939846|939847|939848|939849|939850|939851|940655|940656|940657|940658|940659|942252|942253|942254|942255|942256|942257|942258|942259|942260|942261|942262|942263|942264|942265|942266|942267|942268|942269|942270|942271|942272|942273|942274|942275|942276|942277|942278|942279|942280|942281|942282|942283|942284|942285|942286|942287|942288|942289|942290|942291|942292|942293|952640|952641|952642|952643|952644|952645|952646|952647|952648|952649|952650|952651|952652|952653|952654|952655|952656|952657|952658|952659|952660|952661|952662|952663|952664|952665|952666|952667|952668|952669|952670|952671|952672|952673|952674|952675|952676|952677|952678|952679|952680|952681|952682|952683|952684|952685|952686|952687|952688|952689|952690|952691|952692|952693|952694|952695|952696|952697|952698|952699|952700|952701|952702|952703|952704|952705|952706|952707|952708|952709|952710|952711|952712|952713|952714|952715|952716|952717|952718|952719|952720|952721|952722|952723|952724|952725|952726|952727|952728|952729|952730|952731|952732|952733|952734|952735|952736|959580|959581|959582|960445|960446|960447|960448|960449|960450|970146|974479|974480|977179|977180|977578|977579|977580|977581|977582|977583|977584|977585|977586|977587|977588|977589|977590|977591|977592|977593|977594|977595|977596|977597|977598|977599|977600|977601|977602|977603|977604|977605|977606|977607|977608|977609|977610|977611|977612|977613|977614|977615|977616|977617|977618|977619|977620|977621|977622|977623|977624|977625|977626|977627|977628|977629|977630|977631|977632|977633|983843", "text": "Nemaline myopathy 2" }, { - "baseId": "29092|29093|181494|296719|296720|296723|296724|296725|296737|298589|298593|298595|298602|298603|302717|302718|302727|302744|302778|302790|303018|303032|303035|303036|454853|455342|520965|520966|520976|521190|521192|521195|521196|521398|521468|521473|560241|560243|560354|564979|564981|620193|633684|633685|633686|633687|633688|698995|709789|734987|734988|744131|830576|830577|830578|830579|830580|830581|893762|893763|893764|893765|893766|893767|893768|893769|893770|893771|893772|893773|893774|893775|893776|893777|893778|893779|923969|932816|932817|939998|944508|944509|944510|954100", + "upstreamId": "29092|29093|181494|296719|296720|296723|296724|296725|296737|298589|298593|298595|298602|298603|302717|302718|302727|302744|302778|302790|303018|303032|303035|303036|454853|455342|520965|520966|520976|521190|521192|521195|521196|521398|521468|521473|560241|560243|560354|564979|564981|620193|633684|633685|633686|633687|633688|698995|709789|734987|734988|744131|830576|830577|830578|830579|830580|830581|893762|893763|893764|893765|893766|893767|893768|893769|893770|893771|893772|893773|893774|893775|893776|893777|893778|893779|923969|932816|932817|939998|944508|944509|944510|954100", "text": "Immunodeficiency 29" }, { - "baseId": "29094", + "upstreamId": "29094", "text": "Asthma, severe, susceptibility to" }, { - "baseId": "29095|29096|29098|314909|359994|626209|788853|964848", + "upstreamId": "29095|29096|29098|314909|359994|626209|788853|964848", "text": "Mitochondrial complex 1 deficiency, nuclear type 4" }, { - "baseId": "29100|29101|29102|40437|40440|52289|52291|52299|52300|173797|173798|173800|179061|229099|291667|294871|295253|295255|295257|576329|889125|889126|889127|889128", + "upstreamId": "29100|29101|29102|40437|40440|52289|52291|52299|52300|173797|173798|173800|179061|229099|291667|294871|295253|295255|295257|576329|889125|889126|889127|889128", "text": "Familial hypertrophic cardiomyopathy 8" }, { - "baseId": "29103|29104|29105|29106|29107|40426|40428|40431|40432|45305|45307|45308|45309|52627|52628|52630|52633|52634|52636|52638|52639|52640|52641|52642|52643|52644|52645|52646|52647|52648|52650|136725|142102|165570|175387|175390|175392|175532|175537|175538|179423|179424|179425|179426|179427|179430|179432|179433|179436|179437|179438|179439|189892|214121|215442|224436|241238|258711|258712|316034|316035|316036|329386|329400|329402|330565|372551|374583|389976|390072|398419|398437|398525|398830|398957|408523|415321|424565|438508|461609|461616|462181|462187|462412|462414|462418|508870|526673|526675|526680|526684|526918|527233|527238|527248|565053|566320|567664|567667|615035|615039|617889|617890|640634|640635|640636|640637|640638|652398|666512|685303|687879|791194|791195|799665|839314|839315|839316|839317|839318|839319|839320|839321|852655|869283|869284|869285|869286|869287|869288|872191|911909|926465|926466|935918|935919|956747|960774", + "upstreamId": "29103|29104|29105|29106|29107|40426|40428|40431|40432|45305|45307|45308|45309|52627|52628|52630|52633|52634|52636|52638|52639|52640|52641|52642|52643|52644|52645|52646|52647|52648|52650|136725|142102|165570|175387|175390|175392|175532|175537|175538|179423|179424|179425|179426|179427|179430|179432|179433|179436|179437|179438|179439|189892|214121|215442|224436|241238|258711|258712|316034|316035|316036|329386|329400|329402|330565|372551|374583|389976|390072|398419|398437|398525|398830|398957|408523|415321|424565|438508|461609|461616|462181|462187|462412|462414|462418|508870|526673|526675|526680|526684|526918|527233|527238|527248|565053|566320|567664|567667|615035|615039|617889|617890|640634|640635|640636|640637|640638|652398|666512|685303|687879|791194|791195|799665|839314|839315|839316|839317|839318|839319|839320|839321|852655|869283|869284|869285|869286|869287|869288|872191|911909|926465|926466|935918|935919|956747|960774", "text": "Familial hypertrophic cardiomyopathy 10" }, { - "baseId": "29103", + "upstreamId": "29103", "text": "MYL2-Related Disorders" }, { - "baseId": "29104|75310|78586", + "upstreamId": "29104|75310|78586", "text": "Death in early adulthood" }, { - "baseId": "29108|29109|255284|552183|583124|791476", + "upstreamId": "29108|29109|255284|552183|583124|791476", "text": "Griscelli syndrome type 1" }, { - "baseId": "29111|29112|29113|29114|29115|29116|29117|29118|29119|29120|29121|29122|29123|29124|29125|47567|47568|47569|47570|53729|53734|176268|176270|176394|176408|201017|351526|432343|434682|497536|513148|590338|590339|623356|818346|818347|818348|919951|921221", + "upstreamId": "29111|29112|29113|29114|29115|29116|29117|29118|29119|29120|29121|29122|29123|29124|29125|47567|47568|47569|47570|53729|53734|176268|176270|176394|176408|201017|351526|432343|434682|497536|513148|590338|590339|623356|818346|818347|818348|919951|921221", "text": "Macrothrombocytopenia and granulocyte inclusions with or without nephritis or sensorineural hearing loss" }, { - "baseId": "29111|29112|29113|29114|29117|29120|29121|29122|47569|47570|53715|53716|53717|53718|53719|53720|53721|53722|53723|53724|53725|53726|53727|53728|53729|53730|53732|53733|53734|53736|53737|53738|53739|53740|176254|176256|176257|176259|176260|176265|176267|176268|176269|176271|176272|176273|176277|176282|176286|176372|176380|176386|176388|176392|176395|176396|176401|176402|176404|176408|201017|231139|231148|231149|231155|231161|231162|231165|231168|231169|231170|231171|257619|257621|257641|257647|257658|274300|338000|338001|338003|338006|338008|338013|338018|338019|338024|338026|338028|338030|338034|338041|338057|338058|338060|338062|338063|338064|338068|347647|347648|347652|347653|347654|347658|347663|347670|347671|347672|347674|347676|347678|347681|347682|347683|347685|347686|347690|347691|347692|347697|347698|347707|351511|351512|351513|351515|351518|351523|351524|351526|351527|351529|351531|351534|351535|351536|351541|351551|351553|351555|352497|352498|352499|352500|352501|352502|352503|352504|352505|352506|352507|352508|352509|352510|352511|352512|352513|352514|352515|352516|352517|352518|353606|353607|363895|379851|497760|497763|514108|612057|612058|612059|612060|612061|612062|612063|612064|612065|612066|612067|612068|612069|612070|612071|612072|612073|612074|615654|615655|615657|615659|615662|620688|672115|760982|818346|891201|891202|891203|891204|891205|891206|891207|891208|891209|891210|891211|891212|891213|891214|891215|891216|891217|891218|891219|891220|891221|891222|891223|891224|891225|891226|891227|891228|891229|891230|891231|891232|891233|891234|891235|891236|891237|891238|891239|891240|891825|891826|891827|891828|891829|891830", + "upstreamId": "29111|29112|29113|29114|29117|29120|29121|29122|47569|47570|53715|53716|53717|53718|53719|53720|53721|53722|53723|53724|53725|53726|53727|53728|53729|53730|53732|53733|53734|53736|53737|53738|53739|53740|176254|176256|176257|176259|176260|176265|176267|176268|176269|176271|176272|176273|176277|176282|176286|176372|176380|176386|176388|176392|176395|176396|176401|176402|176404|176408|201017|231139|231148|231149|231155|231161|231162|231165|231168|231169|231170|231171|257619|257621|257641|257647|257658|274300|338000|338001|338003|338006|338008|338013|338018|338019|338024|338026|338028|338030|338034|338041|338057|338058|338060|338062|338063|338064|338068|347647|347648|347652|347653|347654|347658|347663|347670|347671|347672|347674|347676|347678|347681|347682|347683|347685|347686|347690|347691|347692|347697|347698|347707|351511|351512|351513|351515|351518|351523|351524|351526|351527|351529|351531|351534|351535|351536|351541|351551|351553|351555|352497|352498|352499|352500|352501|352502|352503|352504|352505|352506|352507|352508|352509|352510|352511|352512|352513|352514|352515|352516|352517|352518|353606|353607|363895|379851|497760|497763|514108|612057|612058|612059|612060|612061|612062|612063|612064|612065|612066|612067|612068|612069|612070|612071|612072|612073|612074|615654|615655|615657|615659|615662|620688|672115|760982|818346|891201|891202|891203|891204|891205|891206|891207|891208|891209|891210|891211|891212|891213|891214|891215|891216|891217|891218|891219|891220|891221|891222|891223|891224|891225|891226|891227|891228|891229|891230|891231|891232|891233|891234|891235|891236|891237|891238|891239|891240|891825|891826|891827|891828|891829|891830", "text": "MYH9-related disorder" }, { - "baseId": "29118|29122|47570|53715|53716|53717|53718|53719|53720|53721|53722|53723|53724|53725|53726|53727|53728|53729|53730|53732|53733|53734|53736|53737|53739|53740|176254|176256|176257|176259|176260|176265|176267|176268|176269|176271|176272|176273|176277|176282|176286|176372|176380|176386|176388|176392|176394|176395|176396|176401|176402|176404|176408|176408|231139|231148|231149|231155|231161|231162|231165|231168|231169|231170|231171|257619|257621|257641|257647|257658|274300|338000|338001|338003|338006|338008|338013|338018|338019|338024|338026|338028|338030|338034|338041|338057|338058|338060|338062|338063|338064|338068|347647|347652|347653|347654|347658|347663|347670|347671|347672|347674|347676|347678|347681|347682|347683|347685|347686|347690|347691|347692|347697|347698|351511|351512|351513|351518|351523|351524|351526|351527|351529|351531|351534|351535|351536|351541|351551|351553|352497|352498|352499|352500|352501|352502|352503|352504|352505|352506|352508|352509|352511|352512|352513|352515|352516|352518|379851|497536|497760|497763|513667|615654|654931|760982|818346|891201|891202|891203|891204|891205|891206|891207|891208|891209|891210|891211|891212|891213|891214|891215|891216|891217|891218|891219|891220|891221|891222|891223|891224|891225|891226|891227|891228|891229|891230|891231|891232|891233|891234|891235|891236|891237|891238|891239|891240|891825|891826|891827|891828|891829|891830", + "upstreamId": "29118|29122|47570|53715|53716|53717|53718|53719|53720|53721|53722|53723|53724|53725|53726|53727|53728|53729|53730|53732|53733|53734|53736|53737|53739|53740|176254|176256|176257|176259|176260|176265|176267|176268|176269|176271|176272|176273|176277|176282|176286|176372|176380|176386|176388|176392|176394|176395|176396|176401|176402|176404|176408|176408|231139|231148|231149|231155|231161|231162|231165|231168|231169|231170|231171|257619|257621|257641|257647|257658|274300|338000|338001|338003|338006|338008|338013|338018|338019|338024|338026|338028|338030|338034|338041|338057|338058|338060|338062|338063|338064|338068|347647|347652|347653|347654|347658|347663|347670|347671|347672|347674|347676|347678|347681|347682|347683|347685|347686|347690|347691|347692|347697|347698|351511|351512|351513|351518|351523|351524|351526|351527|351529|351531|351534|351535|351536|351541|351551|351553|352497|352498|352499|352500|352501|352502|352503|352504|352505|352506|352508|352509|352511|352512|352513|352515|352516|352518|379851|497536|497760|497763|513667|615654|654931|760982|818346|891201|891202|891203|891204|891205|891206|891207|891208|891209|891210|891211|891212|891213|891214|891215|891216|891217|891218|891219|891220|891221|891222|891223|891224|891225|891226|891227|891228|891229|891230|891231|891232|891233|891234|891235|891236|891237|891238|891239|891240|891825|891826|891827|891828|891829|891830", "text": "Autosomal dominant nonsyndromic deafness 17" }, { - "baseId": "29153|29156|29162|45303|45929|51986|51987|51989|51991|51993|51999|52023|52033|52034|52038|52039|52043|52056|52064|52066|52070|52101|52108|52111|52112|52114|52115|52116|52119|52122|52123|52126|52127|52140|52147|52150|52151|52153|52165|52168|52171|52177|52182|52194|52197|52202|52207|52208|52226|52242|52243|52252|52254|52261|52262|52273|52286|52287|142081|142083|142090|142091|142094|175443|175446|175448|175452|175513|175516|175586|175588|175606|178672|179466|179471|179522|179525|179526|179598|179680|179712|186460|186481|189951|213631|224471|254932|258801|258803|258808|320364|320370|320374|320376|320377|320379|320380|328973|328975|328980|328987|328990|328992|328994|328997|329003|335627|335628|335630|335631|335634|335643|335644|335647|335648|335649|337446|337452|337457|337458|337463|337467|337469|337478|337484|337486|353295|400159|463977|504491|528125|528424|624478|656238|688269|841243|841286|851989|871732|871733|871734|871735|871736|871737|871738|871739|872363|872364|872365|964412|964413|974522", + "upstreamId": "29153|29156|29162|45303|45929|51986|51987|51989|51991|51993|51999|52023|52033|52034|52038|52039|52043|52056|52064|52066|52070|52101|52108|52111|52112|52114|52115|52116|52119|52122|52123|52126|52127|52140|52147|52150|52151|52153|52165|52168|52171|52177|52182|52194|52197|52202|52207|52208|52226|52242|52243|52252|52254|52261|52262|52273|52286|52287|142081|142083|142090|142091|142094|175443|175446|175448|175452|175513|175516|175586|175588|175606|178672|179466|179471|179522|179525|179526|179598|179680|179712|186460|186481|189951|213631|224471|254932|258801|258803|258808|320364|320370|320374|320376|320377|320379|320380|328973|328975|328980|328987|328990|328992|328994|328997|329003|335627|335628|335630|335631|335634|335643|335644|335647|335648|335649|337446|337452|337457|337458|337463|337467|337469|337478|337484|337486|353295|400159|463977|504491|528125|528424|624478|656238|688269|841243|841286|851989|871732|871733|871734|871735|871736|871737|871738|871739|872363|872364|872365|964412|964413|974522", "text": "Myosin storage myopathy" }, { - "baseId": "29153|175452|179576|213631", + "upstreamId": "29153|175452|179576|213631", "text": "MYH7-related late-onset scapuloperoneal muscular dystrophy" }, { - "baseId": "29154|29161|45303|45929|51262|51986|51987|51989|51991|51993|51999|52023|52033|52034|52038|52039|52043|52056|52064|52066|52070|52101|52108|52111|52112|52114|52115|52116|52119|52122|52123|52126|52127|52140|52147|52150|52151|52153|52165|52168|52171|52177|52182|52190|52193|52194|52197|52202|52207|52208|52226|52239|52242|52243|52252|52254|52258|52258|52261|52262|52273|52286|52287|142081|142083|142090|142091|142094|152927|152928|152929|152930|152931|152932|152933|152934|152935|152936|152936|152937|171164|175443|175446|175448|175513|175516|175586|175588|175606|175630|178672|179466|179471|179522|179525|179576|179598|179680|179712|186460|186481|188227|188229|188230|188231|188232|188233|188234|188235|189951|213631|224471|254932|258801|258803|258808|320364|320370|320374|320376|320377|320379|320380|328973|328975|328980|328987|328990|328992|328994|328997|329003|335627|335628|335630|335631|335634|335643|335644|335647|335648|335649|337446|337452|337457|337458|337463|337467|337469|337478|337484|337486|353295|400159|463977|504491|528424|553353|624478|656238|688269|802192|841243|841286|851989|871732|871733|871734|871735|871736|871737|871738|871739|872363|872364|872365", + "upstreamId": "29154|29161|45303|45929|51262|51986|51987|51989|51991|51993|51999|52023|52033|52034|52038|52039|52043|52056|52064|52066|52070|52101|52108|52111|52112|52114|52115|52116|52119|52122|52123|52126|52127|52140|52147|52150|52151|52153|52165|52168|52171|52177|52182|52190|52193|52194|52197|52202|52207|52208|52226|52239|52242|52243|52252|52254|52258|52258|52261|52262|52273|52286|52287|142081|142083|142090|142091|142094|152927|152928|152929|152930|152931|152932|152933|152934|152935|152936|152936|152937|171164|175443|175446|175448|175513|175516|175586|175588|175606|175630|178672|179466|179471|179522|179525|179576|179598|179680|179712|186460|186481|188227|188229|188230|188231|188232|188233|188234|188235|189951|213631|224471|254932|258801|258803|258808|320364|320370|320374|320376|320377|320379|320380|328973|328975|328980|328987|328990|328992|328994|328997|329003|335627|335628|335630|335631|335634|335643|335644|335647|335648|335649|337446|337452|337457|337458|337463|337467|337469|337478|337484|337486|353295|400159|463977|504491|528424|553353|624478|656238|688269|802192|841243|841286|851989|871732|871733|871734|871735|871736|871737|871738|871739|872363|872364|872365", "text": "Myopathy, distal, 1" }, { - "baseId": "29159|514040", + "upstreamId": "29159|514040", "text": "Chest pain" }, { - "baseId": "29160|175443|175588|179477|179680", + "upstreamId": "29160|175443|175588|179477|179680", "text": "Myopathy, myosin storage, autosomal recessive" }, { - "baseId": "29162|29165|29166|29167|76983|76984", + "upstreamId": "29162|29165|29166|29167|76983|76984", "text": "Left ventricular noncompaction 5" }, { - "baseId": "29166|45110|45111|45112|45545|45929|51429|51431|51440|51710|51741|51883|51927|51933|51987|51989|51993|51999|52023|52033|52034|52070|52101|52112|52114|52115|52119|52126|52127|52147|52150|52153|52165|52177|52197|52202|52207|52208|52239|52242|52252|52254|52262|52273|52286|52782|52785|52786|52790|52801|52810|52820|52821|52826|52838|53044|53047|53049|54073|55012|55787|56974|78578|100361|136674|141809|142081|142083|142094|153685|165564|165600|172177|173313|173631|174793|174800|174866|175036|175577|175584|175588|175606|178464|178472|178490|178517|178558|178560|178618|178631|178681|178755|178927|178930|179285|179395|179598|179668|179712|179745|186358|186460|186481|189951|197080|197106|198042|198264|224185|224196|224217|224218|224235|224273|224310|224327|224396|224399|224459|224465|224469|224471|224478|224505|224515|224562|224587|229942|278453|278454|278568|279751|279841|311447|311448|311449|314279|314281|314284|314287|314289|314290|317037|317039|317042|320364|320370|320374|320376|320377|320379|320380|320886|320887|320892|320893|322278|322281|322290|322292|322305|322315|322319|322320|322321|323019|323021|323578|323593|323602|323607|323616|326925|326939|326941|326942|326951|327968|327969|327974|327975|328973|328975|328987|328990|328992|328994|328997|329003|331229|331578|331581|331583|331587|331597|331610|331619|331628|331630|331646|335627|335628|335630|335631|335634|335643|335644|335647|335649|337446|337452|337457|337458|337467|337469|337478|337484|337486|338527|338558|338582|338583|338588|338608|338610|338614|338623|339057|340274|340279|340282|340299|340308|340311|340314|340316|340327|340328|340329|340336|340337|346985|347003|347004|347005|348271|352158|352159|352160|352795|352796|352797|353295|400327|445196|510655|514088|557779|610480|627513|630979|648593|677247|679526|679539|679542|679547|679548|679549|679552|679553|679557|679558|858254|957503|965310|980685", + "upstreamId": "29166|45110|45111|45112|45545|45929|51429|51431|51440|51710|51741|51883|51927|51933|51987|51989|51993|51999|52023|52033|52034|52070|52101|52112|52114|52115|52119|52126|52127|52147|52150|52153|52165|52177|52197|52202|52207|52208|52239|52242|52252|52254|52262|52273|52286|52782|52785|52786|52790|52801|52810|52820|52821|52826|52838|53044|53047|53049|54073|55012|55787|56974|78578|100361|136674|141809|142081|142083|142094|153685|165564|165600|172177|173313|173631|174793|174800|174866|175036|175577|175584|175588|175606|178464|178472|178490|178517|178558|178560|178618|178631|178681|178755|178927|178930|179285|179395|179598|179668|179712|179745|186358|186460|186481|189951|197080|197106|198042|198264|224185|224196|224217|224218|224235|224273|224310|224327|224396|224399|224459|224465|224469|224471|224478|224505|224515|224562|224587|229942|278453|278454|278568|279751|279841|311447|311448|311449|314279|314281|314284|314287|314289|314290|317037|317039|317042|320364|320370|320374|320376|320377|320379|320380|320886|320887|320892|320893|322278|322281|322290|322292|322305|322315|322319|322320|322321|323019|323021|323578|323593|323602|323607|323616|326925|326939|326941|326942|326951|327968|327969|327974|327975|328973|328975|328987|328990|328992|328994|328997|329003|331229|331578|331581|331583|331587|331597|331610|331619|331628|331630|331646|335627|335628|335630|335631|335634|335643|335644|335647|335649|337446|337452|337457|337458|337467|337469|337478|337484|337486|338527|338558|338582|338583|338588|338608|338610|338614|338623|339057|340274|340279|340282|340299|340308|340311|340314|340316|340327|340328|340329|340336|340337|346985|347003|347004|347005|348271|352158|352159|352160|352795|352796|352797|353295|400327|445196|510655|514088|557779|610480|627513|630979|648593|677247|679526|679539|679542|679547|679548|679549|679552|679553|679557|679558|858254|957503|965310|980685", "text": "Cardiomyopathy, left ventricular noncompaction" }, { - "baseId": "29170|29171|29174|45278|45279|45280|45281|45282|45283|45284|45286|45287|75290|94510|142030|142031|142032|142033|142034|142035|142036|142037|142038|142040|142041|142042|142043|142044|142045|142046|142047|142048|142049|142050|142051|142052|142053|142054|142056|142057|142058|142059|142060|142061|142062|142063|142065|142066|142067|142068|142069|142070|142071|142072|142073|142074|142075|142076|165568|165569|169194|171183|171184|171185|171185|178710|178711|178712|178713|190107|193180|194229|194230|196238|197832|197834|197835|197836|197837|197838|197841|197842|197845|197846|197848|197849|197851|197852|197853|197854|197856|197859|197860|197866|197869|197870|197871|197875|197876|197877|197878|197879|197880|197881|197882|197883|197884|197886|197887|197888|197889|197890|197891|197892|197893|197894|197895|197896|197899|197900|197902|197905|197907|197908|197909|197910|197912|197914|197917|197920|197921|197922|197923|197926|199802|208248|208249|215506|215507|215508|215509|222446|222447|222448|222449|230609|230610|242193|242194|242195|242196|242197|242198|242199|242200|242202|242203|247111|247112|255472|255476|255477|255480|258959|258961|258962|258964|258965|258969|258971|258972|258973|258974|258975|258978|258979|258984|258991|258992|258993|258994|258995|258996|258997|258998|259000|259002|259003|262410|274177|324398|324399|324400|324401|324406|324408|324411|324412|324414|324420|324423|324455|324464|324474|324475|324487|333924|333927|333944|333947|333948|333949|333951|333954|333956|333957|333965|333980|333983|333993|333996|333999|334002|334004|334006|334014|340690|340692|340695|340696|340703|340704|340706|340709|340721|340724|340727|340730|340731|340734|340740|340741|340756|340758|340765|340773|342111|342116|342118|342123|342125|342129|342130|342151|342156|342174|342175|342176|360225|360230|360341|361878|361879|361880|362741|362742|373943|373948|373967|373971|373987|373992|373996|374634|374637|374638|374650|374652|374658|374675|374682|375018|375020|375050|375055|377068|377071|377077|377079|377083|400488|400536|400538|400544|400545|400546|400567|400569|400576|400577|400580|400672|400680|400686|400689|400697|400708|400709|400718|400731|400736|400739|400740|401057|401069|401103|401104|401110|401112|401116|401117|401363|401374|401376|401381|401386|401389|409453|409461|415469|422072|433719|445497|445502|465066|465067|465078|465079|465082|465084|465087|465089|465090|465110|465111|465118|465119|465128|465522|465523|465669|465678|465679|465682|465684|465690|465691|465696|465697|465738|465743|465746|465751|465758|465765|465783|465792|465794|465797|465798|465803|465804|465807|465946|465948|465956|465963|465964|465968|465975|465982|465984|465987|465989|487769|487900|505389|505410|505411|505586|505621|506082|506094|506101|510693|510694|510698|510699|510703|510706|510712|510715|510723|510729|510730|512947|512948|512949|529471|529473|529477|529478|529479|529480|529482|529489|529490|529492|529494|529495|529497|529501|529521|529522|529794|529795|529796|529797|530055|530059|530060|530062|530063|530064|530066|530068|530070|538085|538087|538088|538093|552465|567464|567682|567684|567690|567693|567699|567702|569553|569560|569561|569562|569567|569568|569994|569996|570000|570004|570005|570013|573719|573720|573722|573724|573730|573732|573734|573741|609937|614412|615137|618296|618300|618303|618308|618320|618327|618336|618341|618342|618344|619519|624533|624535|643937|643938|643939|643940|643941|643942|643943|643944|643945|643946|643947|643948|643949|643950|643951|643952|643953|643954|643955|643956|643957|643958|643959|643960|652605|652606|652690|652691|653110|653116|668126|668296|668331|682300|684578|688529|688532|688534|688535|690131|703511|714757|726451|726452|754940|760409|770566|770570|770571|770574|770579|778178|785147|785149|787919|797248|799832|799833|799834|799835|820769|820770|820771|820772|843158|843159|843160|843161|843162|843163|843164|843165|843166|843167|843168|843169|843170|843171|843172|843173|843174|843175|843176|843177|843178|843179|843180|843181|843182|843183|843184|843185|843186|843187|843188|843189|843190|843195|852627|874761|874762|874763|874764|874765|874766|874767|874768|874769|874770|874771|874772|874773|874782|874789|874790|874791|874792|874793|874794|874802|876627|876628|876629|913190|913229|913230|913273|913356|913393|913439|913450|913467|913557|913563|916368|916656|919608|919609|927571|927572|927573|927574|927575|927576|927577|949193|949194|957641|964442|967204|967205|967206|967207|971037|971038|981935|981936", + "upstreamId": "29170|29171|29174|45278|45279|45280|45281|45282|45283|45284|45286|45287|75290|94510|142030|142031|142032|142033|142034|142035|142036|142037|142038|142040|142041|142042|142043|142044|142045|142046|142047|142048|142049|142050|142051|142052|142053|142054|142056|142057|142058|142059|142060|142061|142062|142063|142065|142066|142067|142068|142069|142070|142071|142072|142073|142074|142075|142076|165568|165569|169194|171183|171184|171185|171185|178710|178711|178712|178713|190107|193180|194229|194230|196238|197832|197834|197835|197836|197837|197838|197841|197842|197845|197846|197848|197849|197851|197852|197853|197854|197856|197859|197860|197866|197869|197870|197871|197875|197876|197877|197878|197879|197880|197881|197882|197883|197884|197886|197887|197888|197889|197890|197891|197892|197893|197894|197895|197896|197899|197900|197902|197905|197907|197908|197909|197910|197912|197914|197917|197920|197921|197922|197923|197926|199802|208248|208249|215506|215507|215508|215509|222446|222447|222448|222449|230609|230610|242193|242194|242195|242196|242197|242198|242199|242200|242202|242203|247111|247112|255472|255476|255477|255480|258959|258961|258962|258964|258965|258969|258971|258972|258973|258974|258975|258978|258979|258984|258991|258992|258993|258994|258995|258996|258997|258998|259000|259002|259003|262410|274177|324398|324399|324400|324401|324406|324408|324411|324412|324414|324420|324423|324455|324464|324474|324475|324487|333924|333927|333944|333947|333948|333949|333951|333954|333956|333957|333965|333980|333983|333993|333996|333999|334002|334004|334006|334014|340690|340692|340695|340696|340703|340704|340706|340709|340721|340724|340727|340730|340731|340734|340740|340741|340756|340758|340765|340773|342111|342116|342118|342123|342125|342129|342130|342151|342156|342174|342175|342176|360225|360230|360341|361878|361879|361880|362741|362742|373943|373948|373967|373971|373987|373992|373996|374634|374637|374638|374650|374652|374658|374675|374682|375018|375020|375050|375055|377068|377071|377077|377079|377083|400488|400536|400538|400544|400545|400546|400567|400569|400576|400577|400580|400672|400680|400686|400689|400697|400708|400709|400718|400731|400736|400739|400740|401057|401069|401103|401104|401110|401112|401116|401117|401363|401374|401376|401381|401386|401389|409453|409461|415469|422072|433719|445497|445502|465066|465067|465078|465079|465082|465084|465087|465089|465090|465110|465111|465118|465119|465128|465522|465523|465669|465678|465679|465682|465684|465690|465691|465696|465697|465738|465743|465746|465751|465758|465765|465783|465792|465794|465797|465798|465803|465804|465807|465946|465948|465956|465963|465964|465968|465975|465982|465984|465987|465989|487769|487900|505389|505410|505411|505586|505621|506082|506094|506101|510693|510694|510698|510699|510703|510706|510712|510715|510723|510729|510730|512947|512948|512949|529471|529473|529477|529478|529479|529480|529482|529489|529490|529492|529494|529495|529497|529501|529521|529522|529794|529795|529796|529797|530055|530059|530060|530062|530063|530064|530066|530068|530070|538085|538087|538088|538093|552465|567464|567682|567684|567690|567693|567699|567702|569553|569560|569561|569562|569567|569568|569994|569996|570000|570004|570005|570013|573719|573720|573722|573724|573730|573732|573734|573741|609937|614412|615137|618296|618300|618303|618308|618320|618327|618336|618341|618342|618344|619519|624533|624535|643937|643938|643939|643940|643941|643942|643943|643944|643945|643946|643947|643948|643949|643950|643951|643952|643953|643954|643955|643956|643957|643958|643959|643960|652605|652606|652690|652691|653110|653116|668126|668296|668331|682300|684578|688529|688532|688534|688535|690131|703511|714757|726451|726452|754940|760409|770566|770570|770571|770574|770579|778178|785147|785149|787919|797248|799832|799833|799834|799835|820769|820770|820771|820772|843158|843159|843160|843161|843162|843163|843164|843165|843166|843167|843168|843169|843170|843171|843172|843173|843174|843175|843176|843177|843178|843179|843180|843181|843182|843183|843184|843185|843186|843187|843188|843189|843190|843195|852627|874761|874762|874763|874764|874765|874766|874767|874768|874769|874770|874771|874772|874773|874782|874789|874790|874791|874792|874793|874794|874802|876627|876628|876629|913190|913229|913230|913273|913356|913393|913439|913450|913467|913557|913563|916368|916656|919608|919609|927571|927572|927573|927574|927575|927576|927577|949193|949194|957641|964442|967204|967205|967206|967207|971037|971038|981935|981936", "text": "Aortic aneurysm, familial thoracic 4" }, { - "baseId": "29175|227384|384618|622438|919699|919700", + "upstreamId": "29175|227384|384618|622438|919699|919700", "text": "Carney complex variant" }, { - "baseId": "29175|135116|135117|135118|135119|135120|135121|135122|135123|135124|135125|135126|135127|208334|208337|208338|227384|256016|256021|256022|327061|327065|327077|327079|327084|327085|327086|327090|327092|327093|327094|327098|327102|336968|336970|336974|336978|336979|336982|336986|336987|336990|336992|336995|343188|343189|343194|343195|343200|343203|343204|343208|343209|343210|343213|343214|343221|344821|344822|344831|344833|344835|384618|438784|620568|620569|620570|620882|622438|703933|703934|715215|715218|715220|726970|755591|755594|876354|876355|876356|876357|876358|876359|876360|876361|876362|876363|876364|876365|876366|876367|876368|876369|876370|876371|876372|876373|876374|876375|876376|876377|876378|876379|876380|876381|876382|876383|876384|876385|876386|876387|876388|876389|876746|876747|876748|971064", + "upstreamId": "29175|135116|135117|135118|135119|135120|135121|135122|135123|135124|135125|135126|135127|208334|208337|208338|227384|256016|256021|256022|327061|327065|327077|327079|327084|327085|327086|327090|327092|327093|327094|327098|327102|336968|336970|336974|336978|336979|336982|336986|336987|336990|336992|336995|343188|343189|343194|343195|343200|343203|343204|343208|343209|343210|343213|343214|343221|344821|344822|344831|344833|344835|384618|438784|620568|620569|620570|620882|622438|703933|703934|715215|715218|715220|726970|755591|755594|876354|876355|876356|876357|876358|876359|876360|876361|876362|876363|876364|876365|876366|876367|876368|876369|876370|876371|876372|876373|876374|876375|876376|876377|876378|876379|876380|876381|876382|876383|876384|876385|876386|876387|876388|876389|876746|876747|876748|971064", "text": "Hecht syndrome" }, { - "baseId": "29176|181560|181561|181562|181563|181564|181565|181566|181567|192137|192677|192678|192853|192930|193058|193059|193196|194581|205184|205299|227385|256024|256025|256027|256029|256032|256034|256036|256038|256039|265906|267454|269075|269222|269609|271544|274167|275404|327105|327107|327109|327112|327113|327136|327144|327148|327149|327153|327168|327169|327171|327178|327184|336998|337000|337004|337016|337018|337022|337024|337027|343223|343229|343231|343233|343238|343240|343250|344841|344844|344849|344852|344853|360216|361226|409821|413457|426200|439223|445692|466308|466310|466313|466314|466318|466320|466331|466337|466340|467066|467071|467080|467081|467085|467087|467182|467185|467204|467208|467212|467220|467232|467251|467256|467258|467264|467270|467272|467384|467388|467396|467398|467402|467403|467408|490598|490957|491238|491762|530559|530560|530566|530567|530568|530681|530686|530693|530709|530716|530725|530727|530738|530740|530862|530864|530865|531052|531057|531069|531070|531075|531077|568683|568686|568687|570728|570729|570731|570752|570753|570755|570846|570848|570851|570854|570856|570857|570861|574246|574283|574285|574287|574289|574294|574295|574296|574297|574298|574299|574300|574301|576177|608967|613495|624069|645272|645273|645274|645275|645276|645277|645278|645279|645280|645281|645282|645283|645284|645285|645286|645287|645288|645289|645290|645291|645292|645293|645294|645295|645296|645297|645298|645299|645300|645301|645302|645303|645304|645305|645306|645307|645308|652683|652697|652877|652880|653185|653200|653204|694008|694010|694011|694012|694014|694015|694016|694017|694018|695724|703937|703938|703939|703940|715224|715225|740550|740552|740554|755597|771242|771244|785464|791672|793655|820979|820980|821179|844669|844670|844671|844672|844673|844674|844675|844676|844677|844678|844679|844680|844681|844682|844683|844684|844685|844686|844687|844688|844689|844690|844691|844692|844693|844694|844695|844696|844697|844698|844699|844700|844701|844702|844703|844704|844705|844706|852157|852159|852849|876390|876391|876392|876396|876397|876398|876400|876401|876402|876403|876404|876405|876406|876407|876408|876749|876751|918408|928050|928051|928052|928053|928054|928055|928056|928057|928058|928059|937712|937713|937714|937715|937716|937717|937718|937719|937720|937721|937722|949690|949691|949692|949693|949694|949695|949696|949697|949698|949699|949700|949701|949702|949703|949704|957978|957979|957980|957981|957982|964468|966356|977281", + "upstreamId": "29176|181560|181561|181562|181563|181564|181565|181566|181567|192137|192677|192678|192853|192930|193058|193059|193196|194581|205184|205299|227385|256024|256025|256027|256029|256032|256034|256036|256038|256039|265906|267454|269075|269222|269609|271544|274167|275404|327105|327107|327109|327112|327113|327136|327144|327148|327149|327153|327168|327169|327171|327178|327184|336998|337000|337004|337016|337018|337022|337024|337027|343223|343229|343231|343233|343238|343240|343250|344841|344844|344849|344852|344853|360216|361226|409821|413457|426200|439223|445692|466308|466310|466313|466314|466318|466320|466331|466337|466340|467066|467071|467080|467081|467085|467087|467182|467185|467204|467208|467212|467220|467232|467251|467256|467258|467264|467270|467272|467384|467388|467396|467398|467402|467403|467408|490598|490957|491238|491762|530559|530560|530566|530567|530568|530681|530686|530693|530709|530716|530725|530727|530738|530740|530862|530864|530865|531052|531057|531069|531070|531075|531077|568683|568686|568687|570728|570729|570731|570752|570753|570755|570846|570848|570851|570854|570856|570857|570861|574246|574283|574285|574287|574289|574294|574295|574296|574297|574298|574299|574300|574301|576177|608967|613495|624069|645272|645273|645274|645275|645276|645277|645278|645279|645280|645281|645282|645283|645284|645285|645286|645287|645288|645289|645290|645291|645292|645293|645294|645295|645296|645297|645298|645299|645300|645301|645302|645303|645304|645305|645306|645307|645308|652683|652697|652877|652880|653185|653200|653204|694008|694010|694011|694012|694014|694015|694016|694017|694018|695724|703937|703938|703939|703940|715224|715225|740550|740552|740554|755597|771242|771244|785464|791672|793655|820979|820980|821179|844669|844670|844671|844672|844673|844674|844675|844676|844677|844678|844679|844680|844681|844682|844683|844684|844685|844686|844687|844688|844689|844690|844691|844692|844693|844694|844695|844696|844697|844698|844699|844700|844701|844702|844703|844704|844705|844706|852157|852159|852849|876390|876391|876392|876396|876397|876398|876400|876401|876402|876403|876404|876405|876406|876407|876408|876749|876751|918408|928050|928051|928052|928053|928054|928055|928056|928057|928058|928059|937712|937713|937714|937715|937716|937717|937718|937719|937720|937721|937722|949690|949691|949692|949693|949694|949695|949696|949697|949698|949699|949700|949701|949702|949703|949704|957978|957979|957980|957981|957982|964468|966356|977281", "text": "Myopathy, proximal, and ophthalmoplegia" }, { - "baseId": "29177|29178|29179|29180|29184|135094|135095|135096|135097|135098|135099|135100|135101|135102|135103|135104|135105|135106|135107|135108|135109|135110|135111|135112|135113|208344|208345|208347|256045|256047|256051|256054|256055|256056|256057|256058|256059|256060|256061|256062|256063|256064|256069|256070|256075|327185|327186|327187|327191|327192|327199|327200|327201|327202|327209|327210|327215|327216|327221|327228|327231|327244|327245|327248|327252|327253|327254|327255|337030|337031|337032|337035|337043|337049|337052|337053|337054|337057|337065|337071|337078|337081|337082|337084|337085|337086|343251|343263|343264|343268|343270|343275|343278|343279|343283|343284|343289|343290|343292|343295|343302|343304|343305|343306|343310|343312|344858|344860|344863|344864|344865|344866|344867|344869|344872|344873|344875|344876|578665|682258|694024|694026|694027|694031|694032|694033|694038|694041|695727|703943|791673|791674|791675|876409|876410|876411|876412|876413|876414|876415|876416|876417|876418|876419|876420|876421|876422|876423|876424|876425|876426|876427|876428|876429|876430|876431|876752|876753|876754|876755|876756|876757|876758|876759|876760|876761|876762|876763|876764|876765|880462|962181", + "upstreamId": "29177|29178|29179|29180|29184|135094|135095|135096|135097|135098|135099|135100|135101|135102|135103|135104|135105|135106|135107|135108|135109|135110|135111|135112|135113|208344|208345|208347|256045|256047|256051|256054|256055|256056|256057|256058|256059|256060|256061|256062|256063|256064|256069|256070|256075|327185|327186|327187|327191|327192|327199|327200|327201|327202|327209|327210|327215|327216|327221|327228|327231|327244|327245|327248|327252|327253|327254|327255|337030|337031|337032|337035|337043|337049|337052|337053|337054|337057|337065|337071|337078|337081|337082|337084|337085|337086|343251|343263|343264|343268|343270|343275|343278|343279|343283|343284|343289|343290|343292|343295|343302|343304|343305|343306|343310|343312|344858|344860|344863|344864|344865|344866|344867|344869|344872|344873|344875|344876|578665|682258|694024|694026|694027|694031|694032|694033|694038|694041|695727|703943|791673|791674|791675|876409|876410|876411|876412|876413|876414|876415|876416|876417|876418|876419|876420|876421|876422|876423|876424|876425|876426|876427|876428|876429|876430|876431|876752|876753|876754|876755|876756|876757|876758|876759|876760|876761|876762|876763|876764|876765|880462|962181", "text": "Freeman-Sheldon syndrome" }, { - "baseId": "29179|29181|29182|29183|29184|327216|578660|619825|682259|682260|816488|919701|919702|919703|962181|971065", + "upstreamId": "29179|29181|29182|29183|29184|327216|578660|619825|682259|682260|816488|919701|919702|919703|962181|971065", "text": "Arthrogryposis, distal, type 2b3" }, { - "baseId": "29184|199883|199884|237491|495655|578537|578659|578660|578660|578661|578664|578665|578665|622708|622709|622710", + "upstreamId": "29184|199883|199884|237491|495655|578537|578659|578660|578660|578661|578664|578665|578665|622708|622709|622710", "text": "Contractures, pterygia, and variable skeletal fusions syndrome 1A" }, { - "baseId": "29185", + "upstreamId": "29185", "text": "Myosin, cardiac, heavy chain variant" }, { - "baseId": "29186|29188|29190|29190|29191|38754|45289|45290|45291|45296|53613|53615|53616|53617|53620|53625|53626|53627|53628|53634|53636|53636|53637|53638|53639|53640|53641|53641|53642|53643|53644|53646|53648|53649|53651|53653|53654|53655|53656|53659|53660|53661|53663|53664|53666|53667|53669|53672|53673|53676|53678|53679|53680|53680|53682|53683|53684|53686|53687|53688|53689|53690|53691|53692|53696|53700|53702|53703|53704|53708|53709|53712|53713|165563|175410|175411|175412|175413|175414|175415|175416|175417|175419|175420|175424|175426|175429|175430|175433|175434|175436|175554|175557|175559|175560|175562|175563|175565|175565|175569|175571|175572|175573|175574|175575|175577|175581|175582|178666|178667|178668|189930|189930|189931|189932|189933|189935|189937|189938|189939|189944|189947|189947|193334|194136|222364|222365|224451|224452|224454|224455|224456|230458|230459|230461|230462|230463|230470|230474|230480|230481|230482|241796|241797|241798|241799|241800|241801|241802|241803|241804|241805|241806|241807|241808|241809|241810|241811|241811|241812|241813|241814|254914|258754|258757|258758|258759|258761|258764|258766|258772|258773|258774|258778|258779|258784|258788|260540|320333|320339|320340|320362|328940|328957|335565|335571|335573|335590|335595|335601|335616|335619|337427|337435|337435|360038|360038|373004|373724|373732|375945|375962|375975|399564|399570|399577|399579|399581|399588|399589|399594|399706|399713|399720|399725|399727|399729|399732|399735|399739|399741|399742|399748|400097|400098|400108|400118|400126|400282|400290|400298|400299|400308|400309|400311|409082|409088|409091|421976|424895|426052|426054|426055|426055|426056|463121|463124|463125|463132|463134|463141|463143|463144|463146|463148|463150|463580|463582|463583|463585|463590|463594|463602|463603|463607|463609|463618|463622|463635|463638|463714|463884|463893|463895|463900|463909|463911|463912|463918|463919|463921|463927|463935|464102|464104|464110|464118|464119|464121|464124|464128|464131|464136|480712|487619|487731|497662|504457|504712|504977|504980|510414|510416|510419|510420|510429|510430|510432|510436|510438|510440|510444|510449|510452|510455|510457|511013|511111|514040|527996|528000|528002|528008|528009|528015|528019|528021|528023|528044|528049|528051|528054|528055|528056|528062|528063|528066|528068|528375|528377|528379|528384|528386|528395|528396|528396|528405|528416|528501|528502|528508|528510|528514|528516|528519|528524|528528|528532|528534|528540|528541|566319|566322|566323|566327|566334|566335|566341|566352|567870|567875|567879|567883|568757|568768|568778|568781|568782|568788|572745|572747|572753|572755|572756|572757|572759|615062|615063|615066|642205|642206|642207|642208|642209|642210|642211|642212|642213|642214|642215|642216|642217|642218|642219|642220|642221|642222|642223|642224|642225|642226|642227|642228|642229|642230|642231|642232|642233|642234|642235|642236|642237|642238|642239|642240|642241|642242|642243|642244|642245|642246|642247|642248|642249|642250|642251|642252|642253|642254|642255|652457|652588|652909|684466|684467|684468|685397|688257|688259|690078|693459|702820|739172|753988|778051|784684|796997|797002|820616|841200|841201|841202|841203|841204|841205|841206|841207|841208|841209|841210|841211|841212|841213|841214|841215|841216|841217|841218|841219|841220|841221|841222|841223|841224|841225|841226|841227|841228|841229|841230|841231|841232|841233|841234|841235|841236|841237|841238|841239|841240|841241|841242|904588|917184|919516|919517|926987|926988|926989|926990|926991|926992|926993|926994|926995|936555|936556|936557|936558|936559|936560|936561|936562|936563|936564|936565|936566|936567|936568|941057|948484|948485|948486|948487|948488|948489|948490|948491|948492|948493|948494|948495|957179|957180|957181|957182|957183|957184|957185|957186|960084|960085|960801", + "upstreamId": "29186|29188|29190|29190|29191|38754|45289|45290|45291|45296|53613|53615|53616|53617|53620|53625|53626|53627|53628|53634|53636|53636|53637|53638|53639|53640|53641|53641|53642|53643|53644|53646|53648|53649|53651|53653|53654|53655|53656|53659|53660|53661|53663|53664|53666|53667|53669|53672|53673|53676|53678|53679|53680|53680|53682|53683|53684|53686|53687|53688|53689|53690|53691|53692|53696|53700|53702|53703|53704|53708|53709|53712|53713|165563|175410|175411|175412|175413|175414|175415|175416|175417|175419|175420|175424|175426|175429|175430|175433|175434|175436|175554|175557|175559|175560|175562|175563|175565|175565|175569|175571|175572|175573|175574|175575|175577|175581|175582|178666|178667|178668|189930|189930|189931|189932|189933|189935|189937|189938|189939|189944|189947|189947|193334|194136|222364|222365|224451|224452|224454|224455|224456|230458|230459|230461|230462|230463|230470|230474|230480|230481|230482|241796|241797|241798|241799|241800|241801|241802|241803|241804|241805|241806|241807|241808|241809|241810|241811|241811|241812|241813|241814|254914|258754|258757|258758|258759|258761|258764|258766|258772|258773|258774|258778|258779|258784|258788|260540|320333|320339|320340|320362|328940|328957|335565|335571|335573|335590|335595|335601|335616|335619|337427|337435|337435|360038|360038|373004|373724|373732|375945|375962|375975|399564|399570|399577|399579|399581|399588|399589|399594|399706|399713|399720|399725|399727|399729|399732|399735|399739|399741|399742|399748|400097|400098|400108|400118|400126|400282|400290|400298|400299|400308|400309|400311|409082|409088|409091|421976|424895|426052|426054|426055|426055|426056|463121|463124|463125|463132|463134|463141|463143|463144|463146|463148|463150|463580|463582|463583|463585|463590|463594|463602|463603|463607|463609|463618|463622|463635|463638|463714|463884|463893|463895|463900|463909|463911|463912|463918|463919|463921|463927|463935|464102|464104|464110|464118|464119|464121|464124|464128|464131|464136|480712|487619|487731|497662|504457|504712|504977|504980|510414|510416|510419|510420|510429|510430|510432|510436|510438|510440|510444|510449|510452|510455|510457|511013|511111|514040|527996|528000|528002|528008|528009|528015|528019|528021|528023|528044|528049|528051|528054|528055|528056|528062|528063|528066|528068|528375|528377|528379|528384|528386|528395|528396|528396|528405|528416|528501|528502|528508|528510|528514|528516|528519|528524|528528|528532|528534|528540|528541|566319|566322|566323|566327|566334|566335|566341|566352|567870|567875|567879|567883|568757|568768|568778|568781|568782|568788|572745|572747|572753|572755|572756|572757|572759|615062|615063|615066|642205|642206|642207|642208|642209|642210|642211|642212|642213|642214|642215|642216|642217|642218|642219|642220|642221|642222|642223|642224|642225|642226|642227|642228|642229|642230|642231|642232|642233|642234|642235|642236|642237|642238|642239|642240|642241|642242|642243|642244|642245|642246|642247|642248|642249|642250|642251|642252|642253|642254|642255|652457|652588|652909|684466|684467|684468|685397|688257|688259|690078|693459|702820|739172|753988|778051|784684|796997|797002|820616|841200|841201|841202|841203|841204|841205|841206|841207|841208|841209|841210|841211|841212|841213|841214|841215|841216|841217|841218|841219|841220|841221|841222|841223|841224|841225|841226|841227|841228|841229|841230|841231|841232|841233|841234|841235|841236|841237|841238|841239|841240|841241|841242|904588|917184|919516|919517|926987|926988|926989|926990|926991|926992|926993|926994|926995|936555|936556|936557|936558|936559|936560|936561|936562|936563|936564|936565|936566|936567|936568|941057|948484|948485|948486|948487|948488|948489|948490|948491|948492|948493|948494|948495|957179|957180|957181|957182|957183|957184|957185|957186|960084|960085|960801", "text": "Familial hypertrophic cardiomyopathy 14" }, { - "baseId": "29187|53636|53640|53641|53680|175414|175565|189930|189947|241811|337435|360038|426055|528384|528396|680051", + "upstreamId": "29187|53636|53640|53641|53680|175414|175565|189930|189947|241811|337435|360038|426055|528384|528396|680051", "text": "Atrial septal defect 3" }, { - "baseId": "29189|29190|29191|53636|53640|53641|53680|175565|189930|189947|241811|258757|337435|360038|426055|528396", + "upstreamId": "29189|29190|29191|53636|53640|53641|53680|175565|189930|189947|241811|258757|337435|360038|426055|528396", "text": "Dilated cardiomyopathy 1EE" }, { - "baseId": "29192|429455|462474|462477|462478|462483|462739|462747|463216|463222|527345|565729|566276|572067|641394|840295|840296|840297|840298|936270|936271|936272", + "upstreamId": "29192|429455|462474|462477|462478|462483|462739|462747|463216|463222|527345|565729|566276|572067|641394|840295|840296|840297|840298|936270|936271|936272", "text": "Myopathy, centronuclear, 3" }, { - "baseId": "29193|29194|29195|29195|29196|29197|29197|29198|29199|29200|29201|29201|29203|138560|138561|138561|138564|138564|138566|138566|138567|138568|138568|138571|138571|138573|138573|138574|138574|138576|138576|138577|138577|138578|138578|139302|139302|139302|139303|139303|206802|206802|238283|238284|249935|249935|249937|249937|249938|249938|259670|259671|259671|280611|280612|280612|280613|280618|280620|280620|280621|280626|280633|281072|281085|281098|281111|281111|281129|281130|281131|281132|281134|281135|281136|281137|281138|282362|282363|282382|282383|282383|282387|282387|282391|282396|282399|282408|282416|282417|282418|282610|282612|282613|282614|282636|282657|282661|282675|282676|357085|357085|359248|391248|391248|427820|427821|427822|448099|448140|448238|515914|515914|516006|516006|516009|557065|557280|557282|558519|620001|621709|621709|627882|627882|627883|627884|627885|627886|650583|650664|683330|683330|683331|683331|685737|685737|685738|685738|685739|685740|685740|685741|685741|690606|696751|732458|761935|800986|800987|823992|823993|823993|823994|823995|823996|850971|861590|864454|864455|864456|864457|864458|864459|864460|864461|864462|864463|864464|864465|864466|864467|864468|864469|864470|864471|864473|864474|864475|906002|922030|922031|922032|922033|930495|941951|941951|971674|971675|971676|971677|971678|971679|971680|971681|971682|971683|971684|971685|977539|977540|977541|977542", + "upstreamId": "29193|29194|29195|29195|29196|29197|29197|29198|29199|29200|29201|29201|29203|138560|138561|138561|138564|138564|138566|138566|138567|138568|138568|138571|138571|138573|138573|138574|138574|138576|138576|138577|138577|138578|138578|139302|139302|139302|139303|139303|206802|206802|238283|238284|249935|249935|249937|249937|249938|249938|259670|259671|259671|280611|280612|280612|280613|280618|280620|280620|280621|280626|280633|281072|281085|281098|281111|281111|281129|281130|281131|281132|281134|281135|281136|281137|281138|282362|282363|282382|282383|282383|282387|282387|282391|282396|282399|282408|282416|282417|282418|282610|282612|282613|282614|282636|282657|282661|282675|282676|357085|357085|359248|391248|391248|427820|427821|427822|448099|448140|448238|515914|515914|516006|516006|516009|557065|557280|557282|558519|620001|621709|621709|627882|627882|627883|627884|627885|627886|650583|650664|683330|683330|683331|683331|685737|685737|685738|685738|685739|685740|685740|685741|685741|690606|696751|732458|761935|800986|800987|823992|823993|823993|823994|823995|823996|850971|861590|864454|864455|864456|864457|864458|864459|864460|864461|864462|864463|864464|864465|864466|864467|864468|864469|864470|864471|864473|864474|864475|906002|922030|922031|922032|922033|930495|941951|941951|971674|971675|971676|971677|971678|971679|971680|971681|971682|971683|971684|971685|977539|977540|977541|977542", "text": "Congenital amegakaryocytic thrombocytopenia" }, { - "baseId": "29195|29197|29201|138561|138564|138566|138567|138568|138571|138573|138574|138576|138577|138578|139302|139303|206802|249935|249937|249938|259670|259671|280612|280620|281111|282383|282387|357085|359248|427820|516006|557280|620001|621709|627882|627883|627884|627885|627886|650583|650664|683330|683331|685737|685738|685739|685740|685741|690606|732458|761935|823992|823993|823994|823995|823996|850971|922030|922031|922032|922033|930495|941951", + "upstreamId": "29195|29197|29201|138561|138564|138566|138567|138568|138571|138573|138574|138576|138577|138578|139302|139303|206802|249935|249937|249938|259670|259671|280612|280620|281111|282383|282387|357085|359248|427820|516006|557280|620001|621709|627882|627883|627884|627885|627886|650583|650664|683330|683331|685737|685738|685739|685740|685741|690606|732458|761935|823992|823993|823994|823995|823996|850971|922030|922031|922032|922033|930495|941951", "text": "essential thrombocytemia" }, { - "baseId": "29201|29202|139302|961925", + "upstreamId": "29201|29202|139302|961925", "text": "Thrombocytosis, benign familial microcytic" }, { - "baseId": "29202|362908|362916|362935", + "upstreamId": "29202|362908|362916|362935", "text": "Myeloproliferative Neoplasm" }, { - "baseId": "29202|29701|29701|39401|102915|139302|204470|227504|493110", + "upstreamId": "29202|29701|29701|39401|102915|139302|204470|227504|493110", "text": "Myelofibrosis" }, { - "baseId": "29203|29204", + "upstreamId": "29203|29204", "text": "Myelofibrosis with myeloid metaplasia" }, { - "baseId": "29203", + "upstreamId": "29203", "text": "Thrombocythemia 2, somatic" }, { - "baseId": "29205|29206|29210|29211|29212|29213|29214|29215|29216|29218|29220|29223|29224|29225|29226|29227|29230|29237|29239|29240|49436|49437|49438|49439|49440|49441|49442|49443|49444|49445|49446|49447|49448|49449|49450|135065|135065|141945|141945|204407|204408|204409|204479|213792|213793|238157|244139|244141|244171|244249|244251|244254|276934|276937|276938|276943|276944|277211|277215|277907|277912|277913|277914|278013|278014|278015|278027|390840|440400|515330|550200|862595|862596|862597|862598|862599|862600|862601|862602|862603|862604", + "upstreamId": "29205|29206|29210|29211|29212|29213|29214|29215|29216|29218|29220|29223|29224|29225|29226|29227|29230|29237|29239|29240|49436|49437|49438|49439|49440|49441|49442|49443|49444|49445|49446|49447|49448|49449|49450|135065|135065|141945|141945|204407|204408|204409|204479|213792|213793|238157|244139|244141|244171|244249|244251|244254|276934|276937|276938|276943|276944|277211|277215|277907|277912|277913|277914|278013|278014|278015|278027|390840|440400|515330|550200|862595|862596|862597|862598|862599|862600|862601|862602|862603|862604", "text": "Charcot-Marie-Tooth disease, demyelinating, type 1b" }, { - "baseId": "29215|213789|360953|514181", + "upstreamId": "29215|213789|360953|514181", "text": "Distal lower limb amyotrophy" }, { - "baseId": "29217|29231|29235|135065|141945|238157|244249|276934|276937|276938|276943|276944|277211|277215|277907|277912|277913|277914|278013|278014|278015|278027|515330|581855|626099|862595|862596|862597|862598|862599|862600|862601|862602|862603|862604", + "upstreamId": "29217|29231|29235|135065|141945|238157|244249|276934|276937|276938|276943|276944|277211|277215|277907|277912|277913|277914|278013|278014|278015|278027|515330|581855|626099|862595|862596|862597|862598|862599|862600|862601|862602|862603|862604", "text": "Congenital hypomyelinating neuropathy 2" }, { - "baseId": "29220|29223|29234|29238|135065|141945|440400", + "upstreamId": "29220|29223|29234|29238|135065|141945|440400", "text": "Charcot-Marie-Tooth disease type 2J" }, { - "baseId": "29220|29222|135065|141945|238157|244249|276934|276937|276938|276943|276944|277211|277215|277907|277912|277913|277914|278013|278014|278015|278027|515330|540438|624045|862595|862596|862597|862598|862599|862600|862601|862602|862603|862604|920598|964134", + "upstreamId": "29220|29222|135065|141945|238157|244249|276934|276937|276938|276943|276944|277211|277215|277907|277912|277913|277914|278013|278014|278015|278027|515330|540438|624045|862595|862596|862597|862598|862599|862600|862601|862602|862603|862604|920598|964134", "text": "Charcot-Marie-Tooth disease dominant intermediate d" }, { - "baseId": "29224|29232|29233|135065|141945|447442", + "upstreamId": "29224|29232|29233|135065|141945|447442", "text": "Charcot-Marie-Tooth disease type 2I" }, { - "baseId": "29227|29228", + "upstreamId": "29227|29228", "text": "Charcot-Marie-Tooth disease, type 1b, with focally folded myelin sheaths" }, { - "baseId": "29243", + "upstreamId": "29243", "text": "Asthma, protection against" }, { - "baseId": "29246", + "upstreamId": "29246", "text": "Spina bifida, susceptibility to" }, { - "baseId": "29246", + "upstreamId": "29246", "text": "Coronary artery disease, modifier of" }, { - "baseId": "29246", + "upstreamId": "29246", "text": "Coronary artery disease, development of, in hiv" }, { - "baseId": "29247|29247|29248|29249|29250|29251|29252|29253|29254|29258|29260|29261|29262|142624|142626|142627|187075|187075|264540|371271|373048|407700|415191|415192|415192|459199|459210|459520|480497|480498|502940|524974|524979|524984|525130|525133|544752|544755|544758|544759|544765|544769|544770|544773|544776|544785|544788|544790|544793|544796|544797|544801|544807|544808|544812|544815|544818|544823|544827|544831|544844|544848|544850|544851|544854|544861|544869|545022|545034|545041|545044|545049|545051|545053|545057|545060|545065|545068|545078|545083|545089|545090|545093|545095|545110|545112|545120|545123|545126|545129|545132|545134|545165|545176|545184|545185|545189|545190|545195|545196|545198|545202|545214|545220|545224|545225|545227|545229|545231|545234|545236|545239|545240|545248|545255|545308|545314|545318|545325|545326|545329|545335|545340|545343|545345|545347|545349|545351|545354|545355|545358|545361|545362|545364|545367|545384|545385|545390|545395|545398|545401|545402|545407|545408|545409|545414|545419|563255|565906|565908|621307|621308|621789|621790|621791|621792|621793|621794|638279|638282|638284|638286|638288|638289|638292|638293|638294|651905|651933|651944|652179|652183|652194|687494|695439|767403|767404|836133|836134|836137|836142|851343|851738|905987|905988|915083|915084|917040|917041|917477|917478|917479|963272|963273|963274|963275|972575|972576|978580|978581|978582|978583|978584", + "upstreamId": "29247|29247|29248|29249|29250|29251|29252|29253|29254|29258|29260|29261|29262|142624|142626|142627|187075|187075|264540|371271|373048|407700|415191|415192|415192|459199|459210|459520|480497|480498|502940|524974|524979|524984|525130|525133|544752|544755|544758|544759|544765|544769|544770|544773|544776|544785|544788|544790|544793|544796|544797|544801|544807|544808|544812|544815|544818|544823|544827|544831|544844|544848|544850|544851|544854|544861|544869|545022|545034|545041|545044|545049|545051|545053|545057|545060|545065|545068|545078|545083|545089|545090|545093|545095|545110|545112|545120|545123|545126|545129|545132|545134|545165|545176|545184|545185|545189|545190|545195|545196|545198|545202|545214|545220|545224|545225|545227|545229|545231|545234|545236|545239|545240|545248|545255|545308|545314|545318|545325|545326|545329|545335|545340|545343|545345|545347|545349|545351|545354|545355|545358|545361|545362|545364|545367|545384|545385|545390|545395|545398|545401|545402|545407|545408|545409|545414|545419|563255|565906|565908|621307|621308|621789|621790|621791|621792|621793|621794|638279|638282|638284|638286|638288|638289|638292|638293|638294|651905|651933|651944|652179|652183|652194|687494|695439|767403|767404|836133|836134|836137|836142|851343|851738|905987|905988|915083|915084|917040|917041|917477|917478|917479|963272|963273|963274|963275|972575|972576|978580|978581|978582|978583|978584", "text": "Metaphyseal chondrodysplasia, McKusick type" }, { - "baseId": "29247|29247|29255|29256|29257|29258|29259|187075|415192", + "upstreamId": "29247|29247|29255|29256|29257|29258|29259|187075|415192", "text": "Metaphyseal dysplasia without hypotrichosis" }, { - "baseId": "29247|29248|29249|29250|29253|29262|142623|142624|187075|264540|371271|373048|373049|373054|415192|433892|459199|459208|459210|459212|459219|459511|459518|459520|459594|459598|460060|460063|480497|480498|502940|524598|524609|524612|524618|524843|524850|524851|524973|524974|524979|524983|524984|525130|525133|525137|544785|544793|544796|544801|544808|544823|544851|545112|545120|545129|545185|545214|545224|545225|545240|545248|545329|545340|545354|545355|545358|545362|545385|545390|545409|563247|563253|563255|563257|564016|564023|564024|564037|565906|565907|565908|565910|569070|621308|621791|621792|621793|638279|638280|638281|638282|638283|638284|638285|638286|638287|638288|638289|638290|638291|638292|638293|638294|638295|651902|651903|651905|651911|651913|651918|651930|651933|651939|651944|651945|652021|652179|652183|652194|652197|652204|687494|689951|689952|695439|695440|695441|711963|767403|767404|820138|836131|836132|836133|836134|836135|836136|836137|836138|836139|836140|836141|836142|851341|851343|851738|852184|852508|852512|852514|852519|852520|905987|917477|925588|925589|925590|925591|925592|934764|934765|934766|934767|934768|934769|934770|934771|940148|940150|940938|940939|946631|946632|946633|946634|946635|955827|955828|955829|955830|955831|955832|955833|955834|955835|955836|955837|955838|955839|955840|955841|955842|955843|955844|955845|955846|955847|960686|960687|960688|960689|960690|960691|960692|960693|960694|960695|960696|960697|960698|960699|960700|960701|960702|960704", + "upstreamId": "29247|29248|29249|29250|29253|29262|142623|142624|187075|264540|371271|373048|373049|373054|415192|433892|459199|459208|459210|459212|459219|459511|459518|459520|459594|459598|460060|460063|480497|480498|502940|524598|524609|524612|524618|524843|524850|524851|524973|524974|524979|524983|524984|525130|525133|525137|544785|544793|544796|544801|544808|544823|544851|545112|545120|545129|545185|545214|545224|545225|545240|545248|545329|545340|545354|545355|545358|545362|545385|545390|545409|563247|563253|563255|563257|564016|564023|564024|564037|565906|565907|565908|565910|569070|621308|621791|621792|621793|638279|638280|638281|638282|638283|638284|638285|638286|638287|638288|638289|638290|638291|638292|638293|638294|638295|651902|651903|651905|651911|651913|651918|651930|651933|651939|651944|651945|652021|652179|652183|652194|652197|652204|687494|689951|689952|695439|695440|695441|711963|767403|767404|820138|836131|836132|836133|836134|836135|836136|836137|836138|836139|836140|836141|836142|851341|851343|851738|852184|852508|852512|852514|852519|852520|905987|917477|925588|925589|925590|925591|925592|934764|934765|934766|934767|934768|934769|934770|934771|940148|940150|940938|940939|946631|946632|946633|946634|946635|955827|955828|955829|955830|955831|955832|955833|955834|955835|955836|955837|955838|955839|955840|955841|955842|955843|955844|955845|955846|955847|960686|960687|960688|960689|960690|960691|960692|960693|960694|960695|960696|960697|960698|960699|960700|960701|960702|960704", "text": "Anauxetic dysplasia" }, { - "baseId": "29247|29264|29265|29266|29267|29268|187075|415192", + "upstreamId": "29247|29264|29265|29266|29267|29268|187075|415192", "text": "Anauxetic dysplasia 1" }, { - "baseId": "29269|29270|29271|29272|40569|65581|65582|65583|142182|142183|210748|265866|421356|425460|619933|620738|679334|788745|788746|861127|905017|918730", + "upstreamId": "29269|29270|29271|29272|40569|65581|65582|65583|142182|142183|210748|265866|421356|425460|619933|620738|679334|788745|788746|861127|905017|918730", "text": "Mitochondrial complex 1 deficiency, nuclear type 5" }, { - "baseId": "29273|29274|29275|29276|29277|29278|29279|29280|29281|29282|135071|135072|135073|135074|135075|194285|194809|267430|268464|269525|273699|294755|294756|294757|294764|294765|294769|294771|294774|294778|294779|294784|294786|294790|294800|294801|294802|296351|296352|296353|296358|296368|296370|296384|296394|296398|296404|296411|296412|300104|300106|300115|300117|300118|300119|300124|300136|300138|300139|300151|300153|300155|300160|300162|300163|300165|300172|300178|300180|300191|300198|300200|300214|300215|300222|300224|300225|413670|428330|487115|492548|508798|512899|543264|615975|615976|621179|651181|721136|721137|734783|734784|764653|764660|764661|764662|764664|782065|787394|829544|829545|829547|829554|829555|829559|890823|890824|890825|890826|890827|890828|890829|890830|890831|890832|890833|890834|890835|890836|890837|890838|890839|890840|890841|890842|890843|890844|890845|890846|890847|890848|891802|891803|891804|944153|971853|971854|971855|971856|971857|971858|971859|971860|971861|971862|971863|971864|971865|971866|971867|971868|971869|978110|978111|978112|978113|978114|978115|978116", + "upstreamId": "29273|29274|29275|29276|29277|29278|29279|29280|29281|29282|135071|135072|135073|135074|135075|194285|194809|267430|268464|269525|273699|294755|294756|294757|294764|294765|294769|294771|294774|294778|294779|294784|294786|294790|294800|294801|294802|296351|296352|296353|296358|296368|296370|296384|296394|296398|296404|296411|296412|300104|300106|300115|300117|300118|300119|300124|300136|300138|300139|300151|300153|300155|300160|300162|300163|300165|300172|300178|300180|300191|300198|300200|300214|300215|300222|300224|300225|413670|428330|487115|492548|508798|512899|543264|615975|615976|621179|651181|721136|721137|734783|734784|764653|764660|764661|764662|764664|782065|787394|829544|829545|829547|829554|829555|829559|890823|890824|890825|890826|890827|890828|890829|890830|890831|890832|890833|890834|890835|890836|890837|890838|890839|890840|890841|890842|890843|890844|890845|890846|890847|890848|891802|891803|891804|944153|971853|971854|971855|971856|971857|971858|971859|971860|971861|971862|971863|971864|971865|971866|971867|971868|971869|978110|978111|978112|978113|978114|978115|978116", "text": "Abetalipoproteinaemia" }, { - "baseId": "29281", + "upstreamId": "29281", "text": "Metabolic syndrome, protection against" }, { - "baseId": "29283", + "upstreamId": "29283", "text": "Prostate cancer, hereditary, 13" }, { - "baseId": "29284|29284|29285|29286|29286|29287|29290|29291|29292|29292|29293|29295|29296|29297|29300|29301|29305|29307|31050|33162|33163|33164|33166|33170|33175|33182|33184|33184|33187|33194|33195|33196|33880|46864|79017|103896|103907|103914|103918|103940|103945|103957|103986|104001|104044|104089|104095|104097|104100|104103|104105|104109|104111|104113|104114|104114|104117|104123|195230|199866|199867|199868|199869|199870|199871|217270|227392|255044|256221|275813|275835|275846|275852|275853|275859|275867|275874|275875|275885|275924|275994|276114|291699|291712|291719|291720|291722|293045|293046|296286|296298|296308|296311|296313|296319|296362|296363|296366|300690|328688|328797|330240|336729|338670|338744|338789|338792|344740|353027|360942|418804|418805|422174|467806|468102|468117|468120|531369|531370|531431|531670|531674|539073|568253|569009|569205|571537|577364|577367|590946|590947|590954|590956|590958|590959|590960|590961|590962|590963|590964|608810|614153|626253|642667|642668|642669|642670|642671|642672|642673|642674|646108|646109|646110|646111|646112|646113|677120|684679|685434|693591|694092|695745|695747|695749|739304|745294|755909|778505|789819|791784|798717|841713|841714|841715|841716|841717|841718|845515|858702|858704|858705|858707|858711|858712|936704|948648|949982|949983|949984|949985|957292|957293|958147|958148|960223|970503", + "upstreamId": "29284|29284|29285|29286|29286|29287|29290|29291|29292|29292|29293|29295|29296|29297|29300|29301|29305|29307|31050|33162|33163|33164|33166|33170|33175|33182|33184|33184|33187|33194|33195|33196|33880|46864|79017|103896|103907|103914|103918|103940|103945|103957|103986|104001|104044|104089|104095|104097|104100|104103|104105|104109|104111|104113|104114|104114|104117|104123|195230|199866|199867|199868|199869|199870|199871|217270|227392|255044|256221|275813|275835|275846|275852|275853|275859|275867|275874|275875|275885|275924|275994|276114|291699|291712|291719|291720|291722|293045|293046|296286|296298|296308|296311|296313|296319|296362|296363|296366|300690|328688|328797|330240|336729|338670|338744|338789|338792|344740|353027|360942|418804|418805|422174|467806|468102|468117|468120|531369|531370|531431|531670|531674|539073|568253|569009|569205|571537|577364|577367|590946|590947|590954|590956|590958|590959|590960|590961|590962|590963|590964|608810|614153|626253|642667|642668|642669|642670|642671|642672|642673|642674|646108|646109|646110|646111|646112|646113|677120|684679|685434|693591|694092|695745|695747|695749|739304|745294|755909|778505|789819|791784|798717|841713|841714|841715|841716|841717|841718|845515|858702|858704|858705|858707|858711|858712|936704|948648|949982|949983|949984|949985|957292|957293|958147|958148|960223|970503", "text": "Frontotemporal dementia" }, { - "baseId": "29284|29284|29286|29292|29302|29306|29308|227392|422174|539073|626253", + "upstreamId": "29284|29284|29286|29292|29302|29306|29308|227392|422174|539073|626253", "text": "Progressive supranuclear ophthalmoplegia" }, { - "baseId": "29284|29286|29292|104135|422174", + "upstreamId": "29284|29286|29292|104135|422174", "text": "Parkinson-dementia syndrome" }, { - "baseId": "29284|29286|29292|29294|29298|29299|29301|33162|33163|33164|33166|33170|33175|33182|33184|33187|33188|33194|33195|33196|33880|46864|103896|103907|103914|103918|103940|103945|103957|103986|104001|227392|255044|330240|336729|338744|422174|539073|568253|569009|577364|577367|626253|642667|642668|642669|642670|642671|642672|642673|642674|693591|739304|841713|841714|841715|841716|841717|841718|936704|948648|957292|957293", + "upstreamId": "29284|29286|29292|29294|29298|29299|29301|33162|33163|33164|33166|33170|33175|33182|33184|33187|33188|33194|33195|33196|33880|46864|103896|103907|103914|103918|103940|103945|103957|103986|104001|227392|255044|330240|336729|338744|422174|539073|568253|569009|577364|577367|626253|642667|642668|642669|642670|642671|642672|642673|642674|693591|739304|841713|841714|841715|841716|841717|841718|936704|948648|957292|957293", "text": "Pick's disease" }, { - "baseId": "29300|104096|104097|104099|104100|104101|104103|104108|256217|256219|328788|328789|328791|328792|328797|328802|328805|328808|328813|328817|328823|328825|328826|328828|328833|328835|328838|328839|328840|328844|328846|328847|328848|328853|328870|328876|328887|328892|328893|338763|338774|338782|338789|338792|338793|338794|338801|338804|338812|338814|338815|338817|338819|338821|338828|338829|338833|338841|338843|338846|338849|338852|338854|338857|338859|338860|338864|338872|338877|338879|338885|338887|344826|344829|344836|344837|344842|344845|344847|344848|344854|344855|344856|344859|344862|344868|344871|344877|344882|344884|344886|344887|344893|344897|344898|344902|344904|344906|344907|344911|344915|344922|344930|344933|346212|346213|346214|346215|346222|346223|346224|346225|346226|346228|346229|346233|346234|346236|346239|346240|346244|346251|346252|346253|346256|346265|346267|346268|346272|413472|531674|577644|646110|877785|877786|877787|877788|877789|877790|877791|877792|877793|877794|877795|877796|877797|877798|877799|877800|877801|877802|877803|877804|877805|877806|877807|877808|877809|877810|877811|877812|877813|877814|877815|877816|877817|877818|877819|877820|877821|880543", + "upstreamId": "29300|104096|104097|104099|104100|104101|104103|104108|256217|256219|328788|328789|328791|328792|328797|328802|328805|328808|328813|328817|328823|328825|328826|328828|328833|328835|328838|328839|328840|328844|328846|328847|328848|328853|328870|328876|328887|328892|328893|338763|338774|338782|338789|338792|338793|338794|338801|338804|338812|338814|338815|338817|338819|338821|338828|338829|338833|338841|338843|338846|338849|338852|338854|338857|338859|338860|338864|338872|338877|338879|338885|338887|344826|344829|344836|344837|344842|344845|344847|344848|344854|344855|344856|344859|344862|344868|344871|344877|344882|344884|344886|344887|344893|344897|344898|344902|344904|344906|344907|344911|344915|344922|344930|344933|346212|346213|346214|346215|346222|346223|346224|346225|346226|346228|346229|346233|346234|346236|346239|346240|346244|346251|346252|346253|346256|346265|346267|346268|346272|413472|531674|577644|646110|877785|877786|877787|877788|877789|877790|877791|877792|877793|877794|877795|877796|877797|877798|877799|877800|877801|877802|877803|877804|877805|877806|877807|877808|877809|877810|877811|877812|877813|877814|877815|877816|877817|877818|877819|877820|877821|880543", "text": "MAPT-Related Spectrum Disorders" }, { - "baseId": "29309|29310|29311|29312|29313|29315|29316|31677|38747|229145|229145|229146|229149|229149|229152|229153|229154|229155|237600|291435|291442|291443|291446|291448|291449|291454|291458|291463|291464|291468|291469|291475|291477|291484|292693|292694|292697|292698|292701|292705|292707|292708|292709|292713|292714|292716|292717|292722|295984|295987|295988|295989|295997|295999|296003|296010|296017|296031|296032|296043|296051|296058|296069|359493|361916|361917|361918|367718|443510|481055|481056|481057|481058|481059|495149|535279|535280|535381|535701|537754|537755|537756|537757|537758|537759|537760|631792|655579|734287|748510|793044|802068|828567|851093|889613|889614|889615|889616|889617|889618|889619|889620|889621|889622|889623|889624|889625|889626|889627|889628|889629|889630|889631|889632|889633|889634|889635|889636|889637|889638|889639|889640|889641|889642|889643|889644|889645|889646|889647|889648|889649|889650|889651|889652|889653|891702|891703|891704|891705|891706|964225|965737|983613|983614|983623|983624|983625|983626|983627|983628|983629", + "upstreamId": "29309|29310|29311|29312|29313|29315|29316|31677|38747|229145|229145|229146|229149|229149|229152|229153|229154|229155|237600|291435|291442|291443|291446|291448|291449|291454|291458|291463|291464|291468|291469|291475|291477|291484|292693|292694|292697|292698|292701|292705|292707|292708|292709|292713|292714|292716|292717|292722|295984|295987|295988|295989|295997|295999|296003|296010|296017|296031|296032|296043|296051|296058|296069|359493|361916|361917|361918|367718|443510|481055|481056|481057|481058|481059|495149|535279|535280|535381|535701|537754|537755|537756|537757|537758|537759|537760|631792|655579|734287|748510|793044|802068|828567|851093|889613|889614|889615|889616|889617|889618|889619|889620|889621|889622|889623|889624|889625|889626|889627|889628|889629|889630|889631|889632|889633|889634|889635|889636|889637|889638|889639|889640|889641|889642|889643|889644|889645|889646|889647|889648|889649|889650|889651|889652|889653|891702|891703|891704|891705|891706|964225|965737|983613|983614|983623|983624|983625|983626|983627|983628|983629", "text": "Waardenburg syndrome type 2A" }, { - "baseId": "29311|29314|38747|229145|229145|229146|229149|229149|229153|229154|229155|291435|291442|291443|291446|291448|291449|291454|291455|291457|291458|291463|291464|291468|291469|291475|291477|291484|292693|292694|292697|292698|292701|292705|292707|292708|292709|292713|292714|292716|292717|292718|292722|295984|295987|295988|295989|295997|295999|296003|296010|296017|296031|296032|296043|296046|296047|296048|296051|296058|296060|296069|443510|535381|535701|631792|655579|734287|748510|790415|793044|828567|851093|889613|889614|889615|889616|889617|889618|889619|889620|889621|889622|889623|889624|889625|889626|889627|889628|889629|889630|889631|889632|889633|889634|889635|889636|889637|889638|889639|889640|889641|889642|889643|889644|889645|889646|889647|889648|889649|889650|889651|889652|889653|891702|891703|891704|891705|891706|918856|918857", + "upstreamId": "29311|29314|38747|229145|229145|229146|229149|229149|229153|229154|229155|291435|291442|291443|291446|291448|291449|291454|291455|291457|291458|291463|291464|291468|291469|291475|291477|291484|292693|292694|292697|292698|292701|292705|292707|292708|292709|292713|292714|292716|292717|292718|292722|295984|295987|295988|295989|295997|295999|296003|296010|296017|296031|296032|296043|296046|296047|296048|296051|296058|296060|296069|443510|535381|535701|631792|655579|734287|748510|790415|793044|828567|851093|889613|889614|889615|889616|889617|889618|889619|889620|889621|889622|889623|889624|889625|889626|889627|889628|889629|889630|889631|889632|889633|889634|889635|889636|889637|889638|889639|889640|889641|889642|889643|889644|889645|889646|889647|889648|889649|889650|889651|889652|889653|891702|891703|891704|891705|891706|918856|918857", "text": "Tietz syndrome" }, { - "baseId": "29311|361916|361917|361918", + "upstreamId": "29311|361916|361917|361918", "text": "Coloboma, osteopetrosis, microphthalmia, macrocephaly, albinism, and deafness" }, { - "baseId": "29311|192593|215772|228526|228928|228929|228930|228931|228932|228936|228937|228938|230449|231226|231227|231228|231231|231235|284872|284880|284881|284886|285534|285535|287842|287843|287860|287879|287881|287886|288118|288125|288126|288127|288130|291455|291457|292718|296046|296047|296048|296060|335064|336129|337038|345839|347741|347742|347749|350281|350282|350287|351585|351588|351589|351593|351594|351597|351600|351602|352543|352544|352545|352546|352547|352548|360856|446415|496263|496265|496686|508172|694737|742898|747372|747374|883882|883883|883884|883885|883886|883887|883888|883889|883890|883891|883892|891282|891283|891284|891285|891286|891287|891288|891289|891290|891291|891292|891293|891294|891295", + "upstreamId": "29311|192593|215772|228526|228928|228929|228930|228931|228932|228936|228937|228938|230449|231226|231227|231228|231231|231235|284872|284880|284881|284886|285534|285535|287842|287843|287860|287879|287881|287886|288118|288125|288126|288127|288130|291455|291457|292718|296046|296047|296048|296060|335064|336129|337038|345839|347741|347742|347749|350281|350282|350287|351585|351588|351589|351593|351594|351597|351600|351602|352543|352544|352545|352546|352547|352548|360856|446415|496263|496265|496686|508172|694737|742898|747372|747374|883882|883883|883884|883885|883886|883887|883888|883889|883890|883891|883892|891282|891283|891284|891285|891286|891287|891288|891289|891290|891291|891292|891293|891294|891295", "text": "Waardenburg syndrome" }, { - "baseId": "29315", + "upstreamId": "29315", "text": "Poliosis" }, { - "baseId": "29315", + "upstreamId": "29315", "text": "Heterochromia iridis" }, { - "baseId": "29315|424972", + "upstreamId": "29315|424972", "text": "Prelingual sensorineural hearing impairment" }, { - "baseId": "29317|29318|29319|29320|29321|29322|29323|29325|29326|29327|141985|196160|199943|279787|279799|279810|279813|280114|280122|280140|281420|281427|281428|281437|281438|281439|281568|281576|281581|281635|364964|364968|425347|498246|498341|514894|515573|515577|515647|515652|515703|557168|558389|558389|627531|627532|627533|627534|627535|627536|627537|627538|627539|627540|650623|650717|707239|729984|746311|774474|789948|789949|823634|823635|823636|823637|823638|823639|823640|850760|864030|920142|920143|921899|921900|921901|930384|941817|941818|941819|952330|952331|960425|961749|961801|961802", + "upstreamId": "29317|29318|29319|29320|29321|29322|29323|29325|29326|29327|141985|196160|199943|279787|279799|279810|279813|280114|280122|280140|281420|281427|281428|281437|281438|281439|281568|281576|281581|281635|364964|364968|425347|498246|498341|514894|515573|515577|515647|515652|515703|557168|558389|558389|627531|627532|627533|627534|627535|627536|627537|627538|627539|627540|650623|650717|707239|729984|746311|774474|789948|789949|823634|823635|823636|823637|823638|823639|823640|850760|864030|920142|920143|921899|921900|921901|930384|941817|941818|941819|952330|952331|960425|961749|961801|961802", "text": "Methylcobalamin deficiency type cblG" }, { - "baseId": "29317|360996|405676", + "upstreamId": "29317|360996|405676", "text": "Intellectual disability, profound" }, { - "baseId": "29317|79480|181418|818745", + "upstreamId": "29317|79480|181418|818745", "text": "Seizure disorder" }, { - "baseId": "29317|800981", + "upstreamId": "29317|800981", "text": "Decreased methionine synthase activity" }, { - "baseId": "29328|29329|29330|29331|29333|29334|29335|29335|29338|29339|29340|29341|29342|46903|46904|46905|81233|98844|98845|98850|98851|98853|98856|98857|98858|98859|98861|98862|98863|98863|98867|98870|98871|98873|98874|98875|98877|98878|98883|98884|98885|98886|98887|98894|98895|98896|98897|98899|134888|134889|134891|172220|172221|172223|172224|172225|172226|172227|172228|172230|172231|176971|177811|177814|178769|187114|188050|189017|192082|193821|194098|194154|194185|194639|207312|207313|207316|225822|237299|237464|252102|252108|252112|252113|259832|259833|260810|260937|264273|267214|268652|269221|271726|271915|272150|272150|298960|301389|305769|305943|306020|359716|363855|370142|406807|406809|421568|425662|425666|425666|425668|428505|428511|428512|428513|430992|430993|434603|434604|440908|440910|440912|440913|440919|443870|443874|443879|455228|455260|455873|455876|455881|456070|456077|456094|456105|456115|492135|495250|511025|513562|513563|513564|513565|521746|521990|521997|536707|538380|538994|543480|543492|543495|543500|543501|543503|543504|543506|543516|543522|543524|543533|543535|543537|543539|543547|543558|543561|543564|543570|543579|543581|543583|543591|543597|543598|543600|543600|543601|543604|543751|543752|543754|543756|543758|543763|543765|543768|543769|543769|543773|543792|543799|543802|543803|543814|543816|543818|543831|543833|543834|543835|543838|543840|543842|543847|543849|543853|543854|543857|543860|543862|543865|543868|543871|543871|543872|543874|543878|543880|543881|543883|543889|543890|543891|543893|543896|543898|543901|543903|543904|543905|543906|543912|543914|543917|543939|543943|543945|543947|543949|543953|543961|543965|543967|543970|543971|543973|543974|543975|543977|543986|543987|543989|543990|543992|543993|543995|543996|543998|551293|563386|565379|576120|608951|612274|620210|622356|622882|634542|634595|634596|677124|788791|790578|790579|790580|790581|790582|790583|790584|795750|969125|971887|971888|971889|971890|971891|971892|971893|971894|971895|971896|971897|971898|971899|971900|971901|971902|971903|971904|971905|971906|971907|971908|971909|971910|971911|971912|971913|971914|971915|971916|971917|971918|971919|971920|971921|971922|971923|971924|971925|971926|971927|971928|971929|971930|971931|971932|971933|971934|971935|971936|971937|971938|971939|971940|971941|971942|971943|971944|971945|971946|971947|971948|971949|971950|971951|971952|972787|975953|984263|984264", + "upstreamId": "29328|29329|29330|29331|29333|29334|29335|29335|29338|29339|29340|29341|29342|46903|46904|46905|81233|98844|98845|98850|98851|98853|98856|98857|98858|98859|98861|98862|98863|98863|98867|98870|98871|98873|98874|98875|98877|98878|98883|98884|98885|98886|98887|98894|98895|98896|98897|98899|134888|134889|134891|172220|172221|172223|172224|172225|172226|172227|172228|172230|172231|176971|177811|177814|178769|187114|188050|189017|192082|193821|194098|194154|194185|194639|207312|207313|207316|225822|237299|237464|252102|252108|252112|252113|259832|259833|260810|260937|264273|267214|268652|269221|271726|271915|272150|272150|298960|301389|305769|305943|306020|359716|363855|370142|406807|406809|421568|425662|425666|425666|425668|428505|428511|428512|428513|430992|430993|434603|434604|440908|440910|440912|440913|440919|443870|443874|443879|455228|455260|455873|455876|455881|456070|456077|456094|456105|456115|492135|495250|511025|513562|513563|513564|513565|521746|521990|521997|536707|538380|538994|543480|543492|543495|543500|543501|543503|543504|543506|543516|543522|543524|543533|543535|543537|543539|543547|543558|543561|543564|543570|543579|543581|543583|543591|543597|543598|543600|543600|543601|543604|543751|543752|543754|543756|543758|543763|543765|543768|543769|543769|543773|543792|543799|543802|543803|543814|543816|543818|543831|543833|543834|543835|543838|543840|543842|543847|543849|543853|543854|543857|543860|543862|543865|543868|543871|543871|543872|543874|543878|543880|543881|543883|543889|543890|543891|543893|543896|543898|543901|543903|543904|543905|543906|543912|543914|543917|543939|543943|543945|543947|543949|543953|543961|543965|543967|543970|543971|543973|543974|543975|543977|543986|543987|543989|543990|543992|543993|543995|543996|543998|551293|563386|565379|576120|608951|612274|620210|622356|622882|634542|634595|634596|677124|788791|790578|790579|790580|790581|790582|790583|790584|795750|969125|971887|971888|971889|971890|971891|971892|971893|971894|971895|971896|971897|971898|971899|971900|971901|971902|971903|971904|971905|971906|971907|971908|971909|971910|971911|971912|971913|971914|971915|971916|971917|971918|971919|971920|971921|971922|971923|971924|971925|971926|971927|971928|971929|971930|971931|971932|971933|971934|971935|971936|971937|971938|971939|971940|971941|971942|971943|971944|971945|971946|971947|971948|971949|971950|971951|971952|972787|975953|984263|984264", "text": "Merosin deficient congenital muscular dystrophy" }, { - "baseId": "29329|29335|29336|29337|29338|29339|29340|46903|46904|81233|98843|98844|98846|98847|98848|98849|98852|98855|98861|98863|98865|98866|98868|98869|98872|98875|98876|98878|98881|98884|98885|98886|98887|98888|98890|98891|98893|98897|98898|98900|98901|134879|134880|134881|134882|134883|134884|134885|134886|134887|134888|134889|134890|134891|134892|134893|172220|172222|172223|172224|172226|172227|172229|172230|172231|176970|176971|177102|177233|177364|177809|177810|177811|177812|177813|188050|188051|189017|190260|191154|191155|191334|191635|191870|192082|192622|192727|193013|193431|193821|194042|194098|194154|194185|194217|194303|194614|194639|194719|195082|195106|195148|195488|207311|207314|213563|215326|225822|237014|237205|237299|237464|252070|252075|252081|252090|252094|252096|252097|252100|252101|252102|252111|252112|259831|259832|259833|259834|264267|264273|267214|267776|268652|269328|269340|270338|272146|272150|274165|275106|298918|298923|298927|298929|298933|298950|298960|298963|298966|298972|298974|298980|301382|301384|301389|305746|305750|305757|305758|305761|305769|305917|305943|305959|305975|305976|305992|305995|306018|306019|306020|359716|361443|368311|368314|368324|368328|368703|368709|368714|368717|368727|368841|370142|370143|370151|406811|406813|415022|415026|421566|421567|421568|421571|425658|425660|425661|425666|425667|425668|428503|428505|428506|428508|428509|428511|428512|428513|428514|434604|440907|440908|440909|440910|440913|440914|440915|440916|440919|440920|440921|443870|443872|443875|443876|443878|443879|443880|443881|455103|455104|455109|455110|455187|455195|455197|455199|455203|455207|455212|455213|455216|455220|455221|455225|455228|455229|455237|455241|455244|455249|455251|455256|455260|455266|455276|455334|455336|455339|455341|455344|455347|455349|455351|455352|455356|455360|455361|455363|455364|455365|455366|455369|455373|455375|455377|455381|455853|455862|455863|455873|455876|455881|455898|455899|455901|455902|455904|455906|455909|455915|455916|455924|455925|455934|455940|455953|455954|455955|455957|455959|456070|456074|456076|456077|456079|456080|456082|456083|456091|456094|456102|456103|456105|456109|456112|456115|456121|456124|456130|456138|488772|489351|490604|493421|501131|501151|501431|501443|501449|501527|501811|514520|521277|521366|521377|521378|521383|521385|521387|521388|521393|521397|521401|521406|521410|521419|521422|521424|521429|521621|521623|521655|521657|521673|521682|521683|521694|521698|521699|521704|521706|521708|521710|521737|521739|521740|521746|521748|521754|521756|521758|521762|521764|521765|521877|521990|521992|521993|521997|521998|522004|522005|522011|522016|522018|522023|538994|543492|543503|543506|543539|543547|543591|543600|543752|543756|543769|543814|543835|543860|543862|543865|543868|543872|543883|543939|543953|543961|543989|543992|551293|560395|560435|560437|560439|560441|560443|560445|560447|560449|560451|560453|560455|560457|560459|560570|560572|560574|560576|560578|560580|560582|560584|560586|560588|560590|560592|560594|560596|563373|563376|563378|563379|563380|563382|563384|563386|565379|565381|565382|565396|565404|565407|565410|565416|565418|565421|565424|576120|576836|611642|612274|620211|622356|634540|634541|634542|634543|634544|634545|634546|634547|634548|634549|634550|634551|634552|634553|634554|634555|634556|634557|634558|634559|634560|634561|634562|634563|634564|634565|634566|634567|634568|634569|634570|634571|634572|634573|634574|634575|634576|634577|634578|634579|634580|634581|634582|634583|634584|634585|634586|634587|634588|634589|634590|634591|634592|634593|634594|634595|634596|634597|634598|634599|634600|634601|634602|634603|634604|634605|634606|634607|634608|634609|634610|634611|634612|634613|634614|634615|634616|651506|651511|651518|651520|651525|651567|651569|651571|651573|651580|651589|651633|686796|686798|691904|691905|691906|691907|691908|691909|691910|691911|691912|691913|691914|691916|691917|691919|691920|691922|691923|691924|691925|691926|691927|691928|691929|691930|691931|691932|691933|691934|691935|691936|691937|691938|695309|695310|695311|695312|699296|699297|699299|699301|699302|699303|699304|699305|699306|699307|699308|699309|710168|710169|710170|710171|721712|721713|721714|721715|721716|735397|735398|735399|735400|735402|735404|735406|735407|735409|749798|749800|749801|749802|749807|749808|749809|759445|765461|765464|765466|765469|765472|765474|765478|765479|765480|765486|765488|775088|775169|775186|775253|777521|777525|777595|777656|779143|779190|782429|782433|782435|782439|782441|782447|782449|787452|787543|790578|793109|805464|819653|819654|819655|819656|819657|819658|819659|819660|819661|819662|831492|831493|831494|831495|831496|831497|831498|831499|831500|831501|831502|831503|831504|831505|831506|831507|831508|831509|831510|831511|831512|831513|831514|831515|831516|831517|831518|831519|831520|831521|831522|831523|831524|831525|831526|831527|831528|831529|831530|831531|831532|831533|831534|831535|831536|831537|831538|831539|831540|831541|831542|831543|831544|831545|831546|831547|831548|831549|831550|831551|831552|831553|851058|851310|851312|852004|852006|852237|852240|895279|895289|895298|895304|895311|895315|924240|924241|924242|924243|924244|924245|924246|924247|924248|924249|924250|924251|924252|924253|924254|924255|924256|924257|924258|924259|933156|933157|933158|933159|933160|933161|933162|933163|933164|933165|933166|933167|933168|933169|933170|933171|933172|933173|933174|933175|933176|933177|933178|933179|940833|940834|940835|940836|940837|940838|940839|944871|944872|944873|944874|944875|944876|944877|944878|944879|944880|944881|944882|944883|944884|944885|954334|954335|954336|954337|954338|954339|954340|954341|954342|954343|954344|954345|954346|954347|954348|954349|954350|954351|954352|954353|954354|954355|954356|954357|954358|954359|954360|954361|954362|954363|954364|954365|954366|954367|954368|959792|959794|959795|959796|959797|960578|960579|961278", + "upstreamId": "29329|29335|29336|29337|29338|29339|29340|46903|46904|81233|98843|98844|98846|98847|98848|98849|98852|98855|98861|98863|98865|98866|98868|98869|98872|98875|98876|98878|98881|98884|98885|98886|98887|98888|98890|98891|98893|98897|98898|98900|98901|134879|134880|134881|134882|134883|134884|134885|134886|134887|134888|134889|134890|134891|134892|134893|172220|172222|172223|172224|172226|172227|172229|172230|172231|176970|176971|177102|177233|177364|177809|177810|177811|177812|177813|188050|188051|189017|190260|191154|191155|191334|191635|191870|192082|192622|192727|193013|193431|193821|194042|194098|194154|194185|194217|194303|194614|194639|194719|195082|195106|195148|195488|207311|207314|213563|215326|225822|237014|237205|237299|237464|252070|252075|252081|252090|252094|252096|252097|252100|252101|252102|252111|252112|259831|259832|259833|259834|264267|264273|267214|267776|268652|269328|269340|270338|272146|272150|274165|275106|298918|298923|298927|298929|298933|298950|298960|298963|298966|298972|298974|298980|301382|301384|301389|305746|305750|305757|305758|305761|305769|305917|305943|305959|305975|305976|305992|305995|306018|306019|306020|359716|361443|368311|368314|368324|368328|368703|368709|368714|368717|368727|368841|370142|370143|370151|406811|406813|415022|415026|421566|421567|421568|421571|425658|425660|425661|425666|425667|425668|428503|428505|428506|428508|428509|428511|428512|428513|428514|434604|440907|440908|440909|440910|440913|440914|440915|440916|440919|440920|440921|443870|443872|443875|443876|443878|443879|443880|443881|455103|455104|455109|455110|455187|455195|455197|455199|455203|455207|455212|455213|455216|455220|455221|455225|455228|455229|455237|455241|455244|455249|455251|455256|455260|455266|455276|455334|455336|455339|455341|455344|455347|455349|455351|455352|455356|455360|455361|455363|455364|455365|455366|455369|455373|455375|455377|455381|455853|455862|455863|455873|455876|455881|455898|455899|455901|455902|455904|455906|455909|455915|455916|455924|455925|455934|455940|455953|455954|455955|455957|455959|456070|456074|456076|456077|456079|456080|456082|456083|456091|456094|456102|456103|456105|456109|456112|456115|456121|456124|456130|456138|488772|489351|490604|493421|501131|501151|501431|501443|501449|501527|501811|514520|521277|521366|521377|521378|521383|521385|521387|521388|521393|521397|521401|521406|521410|521419|521422|521424|521429|521621|521623|521655|521657|521673|521682|521683|521694|521698|521699|521704|521706|521708|521710|521737|521739|521740|521746|521748|521754|521756|521758|521762|521764|521765|521877|521990|521992|521993|521997|521998|522004|522005|522011|522016|522018|522023|538994|543492|543503|543506|543539|543547|543591|543600|543752|543756|543769|543814|543835|543860|543862|543865|543868|543872|543883|543939|543953|543961|543989|543992|551293|560395|560435|560437|560439|560441|560443|560445|560447|560449|560451|560453|560455|560457|560459|560570|560572|560574|560576|560578|560580|560582|560584|560586|560588|560590|560592|560594|560596|563373|563376|563378|563379|563380|563382|563384|563386|565379|565381|565382|565396|565404|565407|565410|565416|565418|565421|565424|576120|576836|611642|612274|620211|622356|634540|634541|634542|634543|634544|634545|634546|634547|634548|634549|634550|634551|634552|634553|634554|634555|634556|634557|634558|634559|634560|634561|634562|634563|634564|634565|634566|634567|634568|634569|634570|634571|634572|634573|634574|634575|634576|634577|634578|634579|634580|634581|634582|634583|634584|634585|634586|634587|634588|634589|634590|634591|634592|634593|634594|634595|634596|634597|634598|634599|634600|634601|634602|634603|634604|634605|634606|634607|634608|634609|634610|634611|634612|634613|634614|634615|634616|651506|651511|651518|651520|651525|651567|651569|651571|651573|651580|651589|651633|686796|686798|691904|691905|691906|691907|691908|691909|691910|691911|691912|691913|691914|691916|691917|691919|691920|691922|691923|691924|691925|691926|691927|691928|691929|691930|691931|691932|691933|691934|691935|691936|691937|691938|695309|695310|695311|695312|699296|699297|699299|699301|699302|699303|699304|699305|699306|699307|699308|699309|710168|710169|710170|710171|721712|721713|721714|721715|721716|735397|735398|735399|735400|735402|735404|735406|735407|735409|749798|749800|749801|749802|749807|749808|749809|759445|765461|765464|765466|765469|765472|765474|765478|765479|765480|765486|765488|775088|775169|775186|775253|777521|777525|777595|777656|779143|779190|782429|782433|782435|782439|782441|782447|782449|787452|787543|790578|793109|805464|819653|819654|819655|819656|819657|819658|819659|819660|819661|819662|831492|831493|831494|831495|831496|831497|831498|831499|831500|831501|831502|831503|831504|831505|831506|831507|831508|831509|831510|831511|831512|831513|831514|831515|831516|831517|831518|831519|831520|831521|831522|831523|831524|831525|831526|831527|831528|831529|831530|831531|831532|831533|831534|831535|831536|831537|831538|831539|831540|831541|831542|831543|831544|831545|831546|831547|831548|831549|831550|831551|831552|831553|851058|851310|851312|852004|852006|852237|852240|895279|895289|895298|895304|895311|895315|924240|924241|924242|924243|924244|924245|924246|924247|924248|924249|924250|924251|924252|924253|924254|924255|924256|924257|924258|924259|933156|933157|933158|933159|933160|933161|933162|933163|933164|933165|933166|933167|933168|933169|933170|933171|933172|933173|933174|933175|933176|933177|933178|933179|940833|940834|940835|940836|940837|940838|940839|944871|944872|944873|944874|944875|944876|944877|944878|944879|944880|944881|944882|944883|944884|944885|954334|954335|954336|954337|954338|954339|954340|954341|954342|954343|954344|954345|954346|954347|954348|954349|954350|954351|954352|954353|954354|954355|954356|954357|954358|954359|954360|954361|954362|954363|954364|954365|954366|954367|954368|959792|959794|959795|959796|959797|960578|960579|961278", "text": "Laminin alpha 2-related dystrophy" }, { - "baseId": "29335|75098|98863|172224|172224|193821|194098|268652|272150|301389|305943|306020|359716|425666|425668|428505|428511|428512|428513|440910|440912|440919|443870|455876|456094|521746|543600|543769|543871|563386|576066|576067|576068|620210|624851|634596|677124|677159|795750|965273|971887|971888|971889|971890|971891|971892|971893|971894|971895|971896|971897|971898|971899|971900|971901|971902|971903|971904|971905|971906|971907|971908|971909|971910|971911|971912|971913|971914|971915|971916|971917|971918|971919|971920|971921|971922|971923|971924|971925|971926|971927|971928|971929|971930|971931|971932|971933|971934|971935|971936|971937|971938|971939|971940|971941|971942|971943|971944|971945|971946|971947|971948|971949|971950|971951|971952", + "upstreamId": "29335|75098|98863|172224|172224|193821|194098|268652|272150|301389|305943|306020|359716|425666|425668|428505|428511|428512|428513|440910|440912|440919|443870|455876|456094|521746|543600|543769|543871|563386|576066|576067|576068|620210|624851|634596|677124|677159|795750|965273|971887|971888|971889|971890|971891|971892|971893|971894|971895|971896|971897|971898|971899|971900|971901|971902|971903|971904|971905|971906|971907|971908|971909|971910|971911|971912|971913|971914|971915|971916|971917|971918|971919|971920|971921|971922|971923|971924|971925|971926|971927|971928|971929|971930|971931|971932|971933|971934|971935|971936|971937|971938|971939|971940|971941|971942|971943|971944|971945|971946|971947|971948|971949|971950|971951|971952", "text": "Muscular dystrophy, limb-girdle, autosomal recessive 23" }, { - "baseId": "29336|29337|29338|29339|98845|98846|98847|98848|98850|98852|98855|98856|98858|98859|98860|98862|98865|98866|98869|98870|98873|98874|98875|98876|98881|98882|98885|98891|98894|98895|98896|98898|134879|134880|134881|134882|134883|134884|134885|134886|134888|134889|134890|134891|134892|134893|172222|172223|172224|172226|172227|172229|172230|172231|176970|177809|177810|177813|188051|191154|191155|192622|193014|193821|194042|194639|194719|195082|195488|207311|237014|237299|252070|252073|252075|252077|252081|252090|252094|252111|252113|252115|267776|268652|271915|298911|298913|298917|298918|298922|298923|298926|298927|298928|298929|298933|298937|298938|298942|298945|298946|298948|298949|298950|298960|298962|298963|298965|298966|298970|298971|298972|298974|298977|298980|298982|301367|301370|301382|301383|301384|301385|301386|301387|301388|301389|301391|301394|301401|305739|305740|305743|305744|305745|305750|305757|305758|305761|305764|305769|305912|305916|305917|305924|305928|305929|305940|305943|305959|305973|305975|305976|305992|305995|306014|306018|306019|306020|359761|361443|368311|368845|370145|370151|406811|415024|421569|421571|428505|428510|428512|428514|438785|440908|440912|440915|440919|443870|443877|455195|455207|455228|455241|455276|455344|455898|455901|456091|456109|456121|501823|513563|521388|521708|521710|538994|560584|563384|576120|584749|620209|620210|620211|620212|622356|634542|634545|634546|634582|634599|634606|691910|691912|691916|691918|691925|691934|699304|699308|710171|777595|895277|895278|895279|895280|895281|895282|895283|895284|895285|895286|895287|895288|895289|895290|895291|895292|895293|895294|895295|895296|895297|895298|895299|895300|895301|895302|895303|895304|895305|895306|895307|895308|895309|895310|895311|895312|895313|895314|895315|895316|895317|895318|895319|895320|895321|896181|896182|896183|896184|896185", + "upstreamId": "29336|29337|29338|29339|98845|98846|98847|98848|98850|98852|98855|98856|98858|98859|98860|98862|98865|98866|98869|98870|98873|98874|98875|98876|98881|98882|98885|98891|98894|98895|98896|98898|134879|134880|134881|134882|134883|134884|134885|134886|134888|134889|134890|134891|134892|134893|172222|172223|172224|172226|172227|172229|172230|172231|176970|177809|177810|177813|188051|191154|191155|192622|193014|193821|194042|194639|194719|195082|195488|207311|237014|237299|252070|252073|252075|252077|252081|252090|252094|252111|252113|252115|267776|268652|271915|298911|298913|298917|298918|298922|298923|298926|298927|298928|298929|298933|298937|298938|298942|298945|298946|298948|298949|298950|298960|298962|298963|298965|298966|298970|298971|298972|298974|298977|298980|298982|301367|301370|301382|301383|301384|301385|301386|301387|301388|301389|301391|301394|301401|305739|305740|305743|305744|305745|305750|305757|305758|305761|305764|305769|305912|305916|305917|305924|305928|305929|305940|305943|305959|305973|305975|305976|305992|305995|306014|306018|306019|306020|359761|361443|368311|368845|370145|370151|406811|415024|421569|421571|428505|428510|428512|428514|438785|440908|440912|440915|440919|443870|443877|455195|455207|455228|455241|455276|455344|455898|455901|456091|456109|456121|501823|513563|521388|521708|521710|538994|560584|563384|576120|584749|620209|620210|620211|620212|622356|634542|634545|634546|634582|634599|634606|691910|691912|691916|691918|691925|691934|699304|699308|710171|777595|895277|895278|895279|895280|895281|895282|895283|895284|895285|895286|895287|895288|895289|895290|895291|895292|895293|895294|895295|895296|895297|895298|895299|895300|895301|895302|895303|895304|895305|895306|895307|895308|895309|895310|895311|895312|895313|895314|895315|895316|895317|895318|895319|895320|895321|896181|896182|896183|896184|896185", "text": "Congenital muscular dystrophy due to partial LAMA2 deficiency" }, { - "baseId": "29343|437665|964427", + "upstreamId": "29343|437665|964427", "text": "Spondyloepiphyseal dysplasia, kimberley type" }, { - "baseId": "29344|610397|610398|788892|816526|816527", + "upstreamId": "29344|610397|610398|788892|816526|816527", "text": "Spondyloepimetaphyseal dysplasia, aggrecan type" }, { - "baseId": "29345|247337|434369|434370|434371|434372|434373|434374|434375|434376|434377|434378|437665|439352|623319|791493|791494|791495|861580|964425|964426|964428|964429|964430", + "upstreamId": "29345|247337|434369|434370|434371|434372|434373|434374|434375|434376|434377|434378|437665|439352|623319|791493|791494|791495|861580|964425|964426|964428|964429|964430", "text": "Osteochondritis dissecans" }, { - "baseId": "29346|29347|29349|29351", + "upstreamId": "29346|29347|29349|29351", "text": "Skin/hair/eye pigmentation 2, red hair/fair skin" }, { - "baseId": "29346|343069|445685|539156|539157|539158", + "upstreamId": "29346|343069|445685|539156|539157|539158", "text": "Skin and Hair Hypopigmentation" }, { - "baseId": "29346|29347|29348|29349|29350|29351|170206|227383|242562|242563|242564|242565|242566|242567|242568|242569|242569|242570|242571|242572|256009|256010|256012|256013|256014|260144|326869|326873|326877|326879|326883|326884|326889|326896|326897|326898|326900|326906|326908|326911|326915|336760|336761|336764|336770|336771|336774|336778|336781|336783|336786|336797|336806|336811|336817|336820|336821|336822|343007|343013|343014|343017|343020|343025|343030|343032|343035|343037|343042|343050|343058|343060|343062|343069|343070|343073|343075|343079|343084|344637|344638|344648|344650|344651|344652|344654|344657|344660|344661|344664|344665|344667|344670|344675|344678|344681|344682|344684|344687|344689|344694|401431|401431|401434|401435|401465|401466|401946|401950|401952|401953|401957|401959|402214|422134|422134|445685|445685|466179|466958|466960|466962|466964|466967|467003|467004|467011|467239|467240|467249|467249|467254|467255|467259|467261|467261|530446|530578|530584|530764|530766|530961|568517|568518|568521|570634|570637|570638|570696|570697|570700|570708|574227|645224|645225|645226|645227|645228|645229|645230|645231|645232|645233|645234|684648|684649|684650|684651|684652|688726|688727|820941|820959|820960|844607|844608|844609|844610|844611|844612|844613|844614|844615|844616|844617|844618|844619|844620|844621|844622|844623|876235|876236|876237|876238|876239|876240|876241|876242|876243|876244|876245|876246|876247|876248|876249|876250|876251|876252|876253|876254|876255|876256|876257|876258|876259|876260|876261|876262|876263|876264|876265|876266|876267|876268|876269|876270|876271|876272|876273|876274|876275|876276|876277|876278|876279|928030|928031|928032|928033|937688|937689|937690|937691|937692|937693|949663|949664|949665|949666|957971|957972|957973|957974", + "upstreamId": "29346|29347|29348|29349|29350|29351|170206|227383|242562|242563|242564|242565|242566|242567|242568|242569|242569|242570|242571|242572|256009|256010|256012|256013|256014|260144|326869|326873|326877|326879|326883|326884|326889|326896|326897|326898|326900|326906|326908|326911|326915|336760|336761|336764|336770|336771|336774|336778|336781|336783|336786|336797|336806|336811|336817|336820|336821|336822|343007|343013|343014|343017|343020|343025|343030|343032|343035|343037|343042|343050|343058|343060|343062|343069|343070|343073|343075|343079|343084|344637|344638|344648|344650|344651|344652|344654|344657|344660|344661|344664|344665|344667|344670|344675|344678|344681|344682|344684|344687|344689|344694|401431|401431|401434|401435|401465|401466|401946|401950|401952|401953|401957|401959|402214|422134|422134|445685|445685|466179|466958|466960|466962|466964|466967|467003|467004|467011|467239|467240|467249|467249|467254|467255|467259|467261|467261|530446|530578|530584|530764|530766|530961|568517|568518|568521|570634|570637|570638|570696|570697|570700|570708|574227|645224|645225|645226|645227|645228|645229|645230|645231|645232|645233|645234|684648|684649|684650|684651|684652|688726|688727|820941|820959|820960|844607|844608|844609|844610|844611|844612|844613|844614|844615|844616|844617|844618|844619|844620|844621|844622|844623|876235|876236|876237|876238|876239|876240|876241|876242|876243|876244|876245|876246|876247|876248|876249|876250|876251|876252|876253|876254|876255|876256|876257|876258|876259|876260|876261|876262|876263|876264|876265|876266|876267|876268|876269|876270|876271|876272|876273|876274|876275|876276|876277|876278|876279|928030|928031|928032|928033|937688|937689|937690|937691|937692|937693|949663|949664|949665|949666|957971|957972|957973|957974", "text": "Cutaneous malignant melanoma 5" }, { - "baseId": "29347|29350", + "upstreamId": "29347|29350", "text": "Skin/hair/eye pigmentation 2, blond hair/fair skin" }, { - "baseId": "29349|29351|242569|401431|422134|445685|467249|467261", + "upstreamId": "29349|29351|242569|401431|422134|445685|467249|467261", "text": "Increased analgesia from kappa-opioid receptor agonist, female-specific" }, { - "baseId": "29349|29351|32633", + "upstreamId": "29349|29351|32633", "text": "OCULOCUTANEOUS ALBINISM, TYPE II, MODIFIER OF" }, { - "baseId": "29352|29353|29354", + "upstreamId": "29352|29353|29354", "text": "Uv-induced skin damage, susceptibility to" }, { - "baseId": "29355|29356|29358|29359|29360|29361|29362|29363|29364|29365|29366|29367|29368|29369|29370|29371|29372|29373|29374|29375|29377|186255|430075|490974|553540|964500|964501", + "upstreamId": "29355|29356|29358|29359|29360|29361|29362|29363|29364|29365|29366|29367|29368|29369|29370|29371|29372|29373|29374|29375|29377|186255|430075|490974|553540|964500|964501", "text": "BODY MASS INDEX QUANTITATIVE TRAIT LOCUS 20" }, { - "baseId": "29357|153362|190849|207488|226431|226432|226433|226434|226435|481029|535227|535398|535399|535401|535403|535404|535405|535406|535407|535408|535409|535410|535411|535412|535413|535414|535415|535416|535419|535422|535425|535426|535428|535430|535431|535432|535433|535434|535435|535436|535439|535440|535441|535442|535444|535446|535447|535448|535450|535451|535452|535453|535454|535455|535456|535458|535460|535461|535464|535466|535467|535468|535469|535470|535471|535472|535473|535475|535476|535477|535478|535479|535484|535488|535489|535491|535494|535495|535498|535501|535504|535505|535506|535507|535510|535511|535512|535513|535514|535515|535516|535517|535518|535519|535520|535521|535522|535523|535524|535525|535526|535527|535531|535532|535533|535534|535536|535537|535538|535539|535541|535543|535544|535545|535547|535548|535553|535554|535555|535556|535558|535559|535560|535561|535562|535564|535565|535566|535570|535571|535573|535574|535575|535576|535577|535578|535581|535582|535583|535584|535586|535588|535589|535590|535591|535592|535593|535594|535595|535596|535597|535598|535600|535601|535602|535603|535604|535608|535610|535611|535613|535615|535616|535617|535618|535619|535620|535621|535622|535623|535626|535627|535629|535630|535632|535633|535634|535635|535637|535639|535640|535641|535642|535644|535645|535646|535648|535649|535653|535654|535655|535656|576146|904233|904234|904237|904238|967239|970337", + "upstreamId": "29357|153362|190849|207488|226431|226432|226433|226434|226435|481029|535227|535398|535399|535401|535403|535404|535405|535406|535407|535408|535409|535410|535411|535412|535413|535414|535415|535416|535419|535422|535425|535426|535428|535430|535431|535432|535433|535434|535435|535436|535439|535440|535441|535442|535444|535446|535447|535448|535450|535451|535452|535453|535454|535455|535456|535458|535460|535461|535464|535466|535467|535468|535469|535470|535471|535472|535473|535475|535476|535477|535478|535479|535484|535488|535489|535491|535494|535495|535498|535501|535504|535505|535506|535507|535510|535511|535512|535513|535514|535515|535516|535517|535518|535519|535520|535521|535522|535523|535524|535525|535526|535527|535531|535532|535533|535534|535536|535537|535538|535539|535541|535543|535544|535545|535547|535548|535553|535554|535555|535556|535558|535559|535560|535561|535562|535564|535565|535566|535570|535571|535573|535574|535575|535576|535577|535578|535581|535582|535583|535584|535586|535588|535589|535590|535591|535592|535593|535594|535595|535596|535597|535598|535600|535601|535602|535603|535604|535608|535610|535611|535613|535615|535616|535617|535618|535619|535620|535621|535622|535623|535626|535627|535629|535630|535632|535633|535634|535635|535637|535639|535640|535641|535642|535644|535645|535646|535648|535649|535653|535654|535655|535656|576146|904233|904234|904237|904238|967239|970337", "text": "Schizophrenia" }, { - "baseId": "29378|29379", + "upstreamId": "29378|29379", "text": "Body mass index quantitative trait locus 9" }, { - "baseId": "29380|29381|29382|29383|190292|265911|268606|270529|316418|316419|323886|323888|323889|323901|323902|323903|323907|323908|329942|329943|329944|329952|331244|331251|331254|331267|331287|331288|331303|331321|331322|738573|869553|869554|869555|869556|869557", + "upstreamId": "29380|29381|29382|29383|190292|265911|268606|270529|316418|316419|323886|323888|323889|323901|323902|323903|323907|323908|329942|329943|329944|329952|331244|331251|331254|331267|331287|331288|331303|331321|331322|738573|869553|869554|869555|869556|869557", "text": "Keutel syndrome" }, { - "baseId": "29384|29385|29386|29387|29388|99967|99968|99969|99970|99971|99972|99973|99974|177841|186941|193509|214749|214750|267163|323389|333058|333059|333061|333064|333065|333067|339899|339900|339903|341308|341310|341315|358317|358318|358319|358320|358321|358322|358323|358324|374745|374746|422045|445420|465180|465426|492216|504950|505805|547571|547575|547577|547581|547586|547589|547592|547603|547609|547835|547840|547843|547850|547854|547855|547856|547858|548259|548262|569151|576168|643546|643547|693741|693742|693743|693744|703338|739777|739778|754675|770342|770343|770344|785015|785016|785017|785018|785019|788159|788165|791484|842706|842707|842708|852071|874169|874170|874171|874172|874173|874174|874175|874176|874177|874178|874179|874180|874181|874182|874183|874184|874185|874186|876573|876574|927425|937075|957511|957512|979661|979662|979663|979664|979665|979666|979667|979668|979669", + "upstreamId": "29384|29385|29386|29387|29388|99967|99968|99969|99970|99971|99972|99973|99974|177841|186941|193509|214749|214750|267163|323389|333058|333059|333061|333064|333065|333067|339899|339900|339903|341308|341310|341315|358317|358318|358319|358320|358321|358322|358323|358324|374745|374746|422045|445420|465180|465426|492216|504950|505805|547571|547575|547577|547581|547586|547589|547592|547603|547609|547835|547840|547843|547850|547854|547855|547856|547858|548259|548262|569151|576168|643546|643547|693741|693742|693743|693744|703338|739777|739778|754675|770342|770343|770344|785015|785016|785017|785018|785019|788159|788165|791484|842706|842707|842708|852071|874169|874170|874171|874172|874173|874174|874175|874176|874177|874178|874179|874180|874181|874182|874183|874184|874185|874186|876573|876574|927425|937075|957511|957512|979661|979662|979663|979664|979665|979666|979667|979668|979669", "text": "MPI-CDG" }, { - "baseId": "29389|29390|29391|310466|310469|310476|310478|310484|310485|310487|310488|310496|310497|310502|310504|315585|315586|315587|315589|315592|315593|315594|315601|315602|315605|315607|315618|315620|315631|321597|321599|321600|321603|321607|321610|321616|321625|321629|321630|321631|321640|321641|322346|322355|322358|322359|322360|322365|322366|322370|322383|322384|353129|389887|620365|752131|865955|865956|865957|865958|865959|865960|865961|865962|865963|865964|865965|865966|865967|865968|865969|865970|865971|865972|865973|865974|865975|865976|865977|865978|865979|865980|865981|865982|865983|865984|868478", + "upstreamId": "29389|29390|29391|310466|310469|310476|310478|310484|310485|310487|310488|310496|310497|310502|310504|315585|315586|315587|315589|315592|315593|315594|315601|315602|315605|315607|315618|315620|315631|321597|321599|321600|321603|321607|321610|321616|321625|321629|321630|321631|321640|321641|322346|322355|322358|322359|322360|322365|322366|322370|322383|322384|353129|389887|620365|752131|865955|865956|865957|865958|865959|865960|865961|865962|865963|865964|865965|865966|865967|865968|865969|865970|865971|865972|865973|865974|865975|865976|865977|865978|865979|865980|865981|865982|865983|865984|868478", "text": "Mannose-binding protein deficiency" }, { - "baseId": "29392", + "upstreamId": "29392", "text": "Epilepsy, idiopathic generalized, susceptibility to" }, { - "baseId": "29393|29394|65630|254635|318061|318063|318068|318077|318080|325987|325989|325990|325992|325994|325995|326001|326004|326021|326027|332239|333739|333742|333744|333746|333750|364277|462367|462368|462635|463083|571950|693248|870195|870196|870197|870198|870199|870200|870201|870202|870203|870204|870205|870206|870207|870208|870209|941036|964396", + "upstreamId": "29393|29394|65630|254635|318061|318063|318068|318077|318080|325987|325989|325990|325992|325994|325995|326001|326004|326021|326027|332239|333739|333742|333744|333746|333750|364277|462367|462368|462635|463083|571950|693248|870195|870196|870197|870198|870199|870200|870201|870202|870203|870204|870205|870206|870207|870208|870209|941036|964396", "text": "Cataract 15, multiple types" }, { - "baseId": "29395|226063|334178|344055|344056|344062|344063|349298|349299|349300|349301|349304|350297|350300|350301|471277|533870|613458|689156|694512|694513|882402|882403|882404|882405|882406|882407|882408|882409|882410|882411|882412|882413|882414|882415|882416|882417|882418|882419|882923", + "upstreamId": "29395|226063|334178|344055|344056|344062|344063|349298|349299|349300|349301|349304|350297|350300|350301|471277|533870|613458|689156|694512|694513|882402|882403|882404|882405|882406|882407|882408|882409|882410|882411|882412|882413|882414|882415|882416|882417|882418|882419|882923", "text": "Cataract 19, multiple types" }, { - "baseId": "29398|29757", + "upstreamId": "29398|29757", "text": "Rheumatoid arthritis, systemic juvenile, susceptibility to" }, { - "baseId": "29399|29400|29401", + "upstreamId": "29399|29400|29401", "text": "Exfoliation syndrome, susceptibility to" }, { - "baseId": "29402", + "upstreamId": "29402", "text": "LYSYL OXIDASE POLYMORPHISM" }, { - "baseId": "29403|29404|29405|29406|29407|29408|29409|29410|29411|29412|193408|215017|249371|249372|249373|249375|249376|257908|257910|257912|257913|257914|257916|257919|257920|257921|257923|257924|257927|257935|259623|269140|272765|276139|276146|276155|276156|276157|276159|276160|276162|276163|276187|276190|276195|276206|276420|276426|276427|276431|276432|276433|276438|276448|276456|276464|276734|276736|276781|276783|276797|276813|276815|276817|276818|276820|276831|276832|276836|276837|276841|276860|276912|276913|276924|276925|276929|276951|359198|364317|364389|364398|364410|364414|364417|414724|425304|433837|433838|433839|433840|433841|442596|442597|446906|446916|447022|447025|447028|447033|447036|447037|447039|447044|447045|447058|447060|447062|447118|447119|447124|447125|447128|447136|447143|447146|447147|447151|447152|447153|447155|447157|447158|447160|447162|447195|447199|447205|447208|447212|447214|447219|447220|447222|447224|490197|497983|497984|498020|498022|498024|509088|509089|509090|509091|509092|509097|509098|513487|514996|514999|515001|515003|515004|515006|515009|515010|515011|515012|515019|515023|515025|515065|515066|515068|515072|515084|515087|515090|515101|515104|536561|538940|538941|552030|552031|556514|556566|556568|556599|556601|556603|556605|556882|556883|556885|556887|556889|556891|556893|557123|557160|558005|614549|619946|619947|622298|626695|626696|626697|626698|626699|626700|626701|626702|626703|626704|626705|626706|626707|626708|626709|626710|626711|626712|626713|626714|626715|626717|626723|626724|626725|626726|626727|650524|650525|650612|690349|695000|745608|745610|774359|776986|777009|789827|794389|799104|799105|799106|818841|822599|822600|822602|822603|822604|822605|822606|822607|822608|822609|822610|822611|822612|822613|822617|822618|850718|862097|862098|862099|862100|862117|862119|862120|864965|918547|921605|921606|921607|921608|921609|929997|929998|929999|930000|930001|939769|940598|941399|941400|941401|941402|941403|941404|941405|941406|952034|952035|959520|980432|981216|981217", + "upstreamId": "29403|29404|29405|29406|29407|29408|29409|29410|29411|29412|193408|215017|249371|249372|249373|249375|249376|257908|257910|257912|257913|257914|257916|257919|257920|257921|257923|257924|257927|257935|259623|269140|272765|276139|276146|276155|276156|276157|276159|276160|276162|276163|276187|276190|276195|276206|276420|276426|276427|276431|276432|276433|276438|276448|276456|276464|276734|276736|276781|276783|276797|276813|276815|276817|276818|276820|276831|276832|276836|276837|276841|276860|276912|276913|276924|276925|276929|276951|359198|364317|364389|364398|364410|364414|364417|414724|425304|433837|433838|433839|433840|433841|442596|442597|446906|446916|447022|447025|447028|447033|447036|447037|447039|447044|447045|447058|447060|447062|447118|447119|447124|447125|447128|447136|447143|447146|447147|447151|447152|447153|447155|447157|447158|447160|447162|447195|447199|447205|447208|447212|447214|447219|447220|447222|447224|490197|497983|497984|498020|498022|498024|509088|509089|509090|509091|509092|509097|509098|513487|514996|514999|515001|515003|515004|515006|515009|515010|515011|515012|515019|515023|515025|515065|515066|515068|515072|515084|515087|515090|515101|515104|536561|538940|538941|552030|552031|556514|556566|556568|556599|556601|556603|556605|556882|556883|556885|556887|556889|556891|556893|557123|557160|558005|614549|619946|619947|622298|626695|626696|626697|626698|626699|626700|626701|626702|626703|626704|626705|626706|626707|626708|626709|626710|626711|626712|626713|626714|626715|626717|626723|626724|626725|626726|626727|650524|650525|650612|690349|695000|745608|745610|774359|776986|777009|789827|794389|799104|799105|799106|818841|822599|822600|822602|822603|822604|822605|822606|822607|822608|822609|822610|822611|822612|822613|822617|822618|850718|862097|862098|862099|862100|862117|862119|862120|864965|918547|921605|921606|921607|921608|921609|929997|929998|929999|930000|930001|939769|940598|941399|941400|941401|941402|941403|941404|941405|941406|952034|952035|959520|980432|981216|981217", "text": "Ehlers-Danlos syndrome, hydroxylysine-deficient" }, { - "baseId": "29413|29414|29415|29416|29417|31447|31448|31449|31452|31459|32962|32966|32967|32972|32973|40563|237254|292513|293931|293932|293933|297256|297269|297293|297303|297304|297305|297307|297313|297314|297315|297334|297337|297349|297350|297353|312407|312417|312419|312421|312422|312424|318297|318298|318381|318383|318385|318387|318391|318400|318407|318409|318410|324450|325163|325164|325168|325178|326549|326552|326557|326561|326562|326563|332752|332753|332755|332758|332761|334385|334393|334397|334400|334403|334405|334407|620458|621343|624419|681806|709203|709204|790442|790443|867058|867059|867060|867061|867062|867063|867064|870391|870392|870393|870394|870395|870396|870397|870398|870399|870400|870401|870402|870403|870404|870405|870406|870407|890261|890262|890263|890264|890265|890266|890267|891754|921210|963004", + "upstreamId": "29413|29414|29415|29416|29417|31447|31448|31449|31452|31459|32962|32966|32967|32972|32973|40563|237254|292513|293931|293932|293933|297256|297269|297293|297303|297304|297305|297307|297313|297314|297315|297334|297337|297349|297350|297353|312407|312417|312419|312421|312422|312424|318297|318298|318381|318383|318385|318387|318391|318400|318407|318409|318410|324450|325163|325164|325168|325178|326549|326552|326557|326561|326562|326563|332752|332753|332755|332758|332761|334385|334393|334397|334400|334403|334405|334407|620458|621343|624419|681806|709203|709204|790442|790443|867058|867059|867060|867061|867062|867063|867064|870391|870392|870393|870394|870395|870396|870397|870398|870399|870400|870401|870402|870403|870404|870405|870406|870407|890261|890262|890263|890264|890265|890266|890267|891754|921210|963004", "text": "Familial visceral amyloidosis, Ostertag type" }, { - "baseId": "29420", + "upstreamId": "29420", "text": "Leprosy, early-onset, susceptibility to" }, { - "baseId": "29423|29423|29424|29428|29429|29433|29436|29441|29445|29446|29447|29451|45131|45132|45133|85537|141819|250744|250745|250746|286691|286693|286694|286696|286697|286699|286700|286702|287404|287405|287406|287407|287408|287411|287412|287413|289835|289853|289854|289855|289856|289857|289858|289860|290209|290210|290213|290214|290216|428064|719898|719900|733508|816019|885125|885126|885127|885128|885129|885130|885131|885132|885133|885134|885135|885136|885137|885138|885139|885140|885141|885142|885143|885144|885145|887378|887379", + "upstreamId": "29423|29423|29424|29428|29429|29433|29436|29441|29445|29446|29447|29451|45131|45132|45133|85537|141819|250744|250745|250746|286691|286693|286694|286696|286697|286699|286700|286702|287404|287405|287406|287407|287408|287411|287412|287413|289835|289853|289854|289855|289856|289857|289858|289860|290209|290210|290213|290214|290216|428064|719898|719900|733508|816019|885125|885126|885127|885128|885129|885130|885131|885132|885133|885134|885135|885136|885137|885138|885139|885140|885141|885142|885143|885144|885145|887378|887379", "text": "Gonadotropin-independent familial sexual precocity" }, { - "baseId": "29423|29433", + "upstreamId": "29423|29433", "text": "Precocious puberty in males" }, { - "baseId": "29423|29426|29427|29430|29431|29437|29438|29444|29448|29449|29450|45132|85537|141819|250744|250745|250746|286691|286693|286694|286696|286697|286699|286700|286702|287404|287405|287406|287407|287408|287411|287412|287413|289835|289853|289854|289855|289856|289857|289858|289860|290209|290210|290213|290214|290216|428064|485708|485710|536161|614511|719898|719900|733508|816019|816020|885125|885126|885127|885128|885129|885130|885131|885132|885133|885134|885135|885136|885137|885138|885139|885140|885141|885142|885143|885144|885145|887378|887379", + "upstreamId": "29423|29426|29427|29430|29431|29437|29438|29444|29448|29449|29450|45132|85537|141819|250744|250745|250746|286691|286693|286694|286696|286697|286699|286700|286702|287404|287405|287406|287407|287408|287411|287412|287413|289835|289853|289854|289855|289856|289857|289858|289860|290209|290210|290213|290214|290216|428064|485708|485710|536161|614511|719898|719900|733508|816019|816020|885125|885126|885127|885128|885129|885130|885131|885132|885133|885134|885135|885136|885137|885138|885139|885140|885141|885142|885143|885144|885145|887378|887379", "text": "Leydig cell hypoplasia, type 1" }, { - "baseId": "29427|29431|29437|29438", + "upstreamId": "29427|29431|29437|29438", "text": "Luteinizing hormone resistance, female" }, { - "baseId": "29432", + "upstreamId": "29432", "text": "Leydig hypoplasia, type I" }, { - "baseId": "29435|29439|29443", + "upstreamId": "29435|29439|29443", "text": "Leydig cell hypoplasia, type II" }, { - "baseId": "29440", + "upstreamId": "29440", "text": "Luteinizing hormone/choriogonadotropin receptor, lq variant" }, { - "baseId": "29442", + "upstreamId": "29442", "text": "Leydig cell adenoma, somatic, with male-limited precocious puberty" }, { - "baseId": "29452|29455|187176|187177|187178|187179|508926|508927|508928|508929|806424", + "upstreamId": "29452|29455|187176|187177|187178|187179|508926|508927|508928|508929|806424", "text": "Isolated lutropin deficiency" }, { - "baseId": "29454|29566|32737|38625|38658|38809|38859|39652|39948|40116|44157|44192|45804|45808|45834|45835|48062|48174|48183|48307|48398|48485|48486|48496|48715|48730|49899|51199|57803|59494|65577|65629|70494|70495|71447|71448|75073|75313|75315|75605|76378|76957|76958|76967|76968|79736", + "upstreamId": "29454|29566|32737|38625|38658|38809|38859|39652|39948|40116|44157|44192|45804|45808|45834|45835|48062|48174|48183|48307|48398|48485|48486|48496|48715|48730|49899|51199|57803|59494|65577|65629|70494|70495|71447|71448|75073|75313|75315|75605|76378|76957|76958|76967|76968|79736", "text": "Variant of unknown significance" }, { - "baseId": "29456|305012|308710|308720|313849|313851|313858|313859|313939|313941|711467|736598|899380|899381|899382|899383|899384|899385", + "upstreamId": "29456|305012|308710|308720|313849|313851|313858|313859|313939|313941|711467|736598|899380|899381|899382|899383|899384|899385", "text": "Hypogonadotropic hypogonadism 12 with or without anosmia" }, { - "baseId": "29457|29458|578364", + "upstreamId": "29457|29458|578364", "text": "Vohwinkel syndrome, variant form" }, { - "baseId": "29469", + "upstreamId": "29469", "text": "Long QT syndrome, bradycardia-induced" }, { - "baseId": "29472", + "upstreamId": "29472", "text": "Long QT syndrome 2, acquired, susceptibility to" }, { - "baseId": "29475|29476|78157|78188|78211|78325|78334|78393|78402|78405|78408|78431|78443|197230|197324|197333|302179|361864|361865|369621|389774|395489|395490|396190|456848|818254|833312|919088", + "upstreamId": "29475|29476|78157|78188|78211|78325|78334|78393|78402|78405|78408|78431|78443|197230|197324|197333|302179|361864|361865|369621|389774|395489|395490|396190|456848|818254|833312|919088", "text": "Short QT syndrome 1" }, { - "baseId": "29484", + "upstreamId": "29484", "text": "Thalassemia, gamma-delta-beta" }, { - "baseId": "29485", + "upstreamId": "29485", "text": "Asthma, diminished response to antileukotriene treatment in" }, { - "baseId": "29486", + "upstreamId": "29486", "text": "APOLIPOPROTEIN(a), TYPE C POLYMORPHISM" }, { - "baseId": "29487", + "upstreamId": "29487", "text": "APOLIPOPROTEIN(a), TYPE D POLYMORPHISM" }, { - "baseId": "29488|29489", + "upstreamId": "29488|29489", "text": "Lipoprotein(a) deficiency, congenital" }, { - "baseId": "29490|29491|38731|323001|323007|323011|323013|323017|323020|332614|332619|332620|332624|332633|339537|339544|339553|339560|339564|339566|339577|339578|339582|340947|340951|340955|340956|340963|340965|340966|340970|620524|714509|754560|873915|873916|873917|873918|873919|873920|873921|873922|873923|873924|873925|873926|873927|873928|873929|873930|873931|873932|876546|876547|876548|876549|919584", + "upstreamId": "29490|29491|38731|323001|323007|323011|323013|323017|323020|332614|332619|332620|332624|332633|339537|339544|339553|339560|339564|339566|339577|339578|339582|340947|340951|340955|340956|340963|340965|340966|340970|620524|714509|754560|873915|873916|873917|873918|873919|873920|873921|873922|873923|873924|873925|873926|873927|873928|873929|873930|873931|873932|876546|876547|876548|876549|919584", "text": "Hepatic lipase deficiency" }, { - "baseId": "29492|29493|29494", + "upstreamId": "29492|29493|29494", "text": "High density lipoprotein cholesterol level quantitative trait locus 12" }, { - "baseId": "29495|29670|70804|70805|70806|70807|70808|70809|77430", + "upstreamId": "29495|29670|70804|70805|70806|70807|70808|70809|77430", "text": "Susceptibility to hepatitis C virus" }, { - "baseId": "29496|29497|29878|29879|29880|29881|29882|45053|45055|45058|75283|138262|138263|138264|138266|138267|138269|138270|138271|138272|138273|138275|138276|138277|138278|138279|141288|141289|141290|142549|142550|142551|142552|142553|188798|205412|226681|226682|259823|297329|297338|297341|297343|297344|297345|297358|297359|297360|297366|297368|299336|299337|299338|299356|299369|299370|299371|299372|299375|303556|303558|303559|303564|303565|303567|303572|303575|303576|303861|303867|303869|303872|303873|303877|303880|303881|303885|303887|303888|303889|303900|364585|364699|364707|364708|364709|364744|364749|364757|364761|368162|368444|368447|406742|433881|433885|438290|442687|447365|447373|447482|447591|447593|447615|454992|454993|455617|498154|498158|498315|508860|515339|515385|515388|515393|515398|515400|515418|515422|515426|515428|515429|515430|515435|515438|515440|515441|515442|515443|515447|515450|515452|515456|520164|521442|521450|521540|521775|521778|556724|556726|556728|556730|556732|556734|556736|556769|556771|557084|557086|558270|558272|558274|558276|558278|558280|558282|558284|560317|560450|560452|563161|563163|563164|563166|563168|565122|565124|613426|614204|620783|623585|624170|624305|624306|627202|627203|627204|627205|627206|627207|627208|627209|627210|627211|627212|627213|627214|627215|627216|627217|627218|627219|627220|627221|627222|627223|627224|627225|627226|627227|627228|627229|633936|633937|633938|633939|633940|633941|633942|633943|650607|650705|650708|651232|651345|690439|690440|690441|691853|691854|696364|696365|699074|721439|721440|729948|735086|745960|761448|780433|780434|780435|787037|787285|818402|821832|823142|823143|823144|823145|823146|823147|823148|823149|823150|823151|823152|823153|823154|823155|823156|823157|823158|823159|823160|823161|823162|823163|823164|823165|823166|823167|823168|830837|830838|830839|830840|830841|830842|830843|830844|830845|850750|851034|851986|894137|894138|894139|894140|894141|894142|894143|894144|894145|894146|894147|894148|894149|894150|894151|894152|894153|894154|894155|894156|894157|894158|894159|894160|894161|894162|894163|894164|894165|894166|894167|894168|894169|894170|894171|894172|894173|894174|894175|894176|894177|894178|894179|896092|896093|896094|904219|921784|921785|921786|921787|921788|924062|924063|924064|924065|924066|924067|924068|930211|930212|930213|930214|930215|930216|930217|930218|932905|932906|932907|932908|939785|939786|940613|941632|941633|941634|941635|941636|941637|941638|941639|941640|941641|941642|941643|941644|941645|944617|944618|944619|944620|952201|952202|954171|959767", + "upstreamId": "29496|29497|29878|29879|29880|29881|29882|45053|45055|45058|75283|138262|138263|138264|138266|138267|138269|138270|138271|138272|138273|138275|138276|138277|138278|138279|141288|141289|141290|142549|142550|142551|142552|142553|188798|205412|226681|226682|259823|297329|297338|297341|297343|297344|297345|297358|297359|297360|297366|297368|299336|299337|299338|299356|299369|299370|299371|299372|299375|303556|303558|303559|303564|303565|303567|303572|303575|303576|303861|303867|303869|303872|303873|303877|303880|303881|303885|303887|303888|303889|303900|364585|364699|364707|364708|364709|364744|364749|364757|364761|368162|368444|368447|406742|433881|433885|438290|442687|447365|447373|447482|447591|447593|447615|454992|454993|455617|498154|498158|498315|508860|515339|515385|515388|515393|515398|515400|515418|515422|515426|515428|515429|515430|515435|515438|515440|515441|515442|515443|515447|515450|515452|515456|520164|521442|521450|521540|521775|521778|556724|556726|556728|556730|556732|556734|556736|556769|556771|557084|557086|558270|558272|558274|558276|558278|558280|558282|558284|560317|560450|560452|563161|563163|563164|563166|563168|565122|565124|613426|614204|620783|623585|624170|624305|624306|627202|627203|627204|627205|627206|627207|627208|627209|627210|627211|627212|627213|627214|627215|627216|627217|627218|627219|627220|627221|627222|627223|627224|627225|627226|627227|627228|627229|633936|633937|633938|633939|633940|633941|633942|633943|650607|650705|650708|651232|651345|690439|690440|690441|691853|691854|696364|696365|699074|721439|721440|729948|735086|745960|761448|780433|780434|780435|787037|787285|818402|821832|823142|823143|823144|823145|823146|823147|823148|823149|823150|823151|823152|823153|823154|823155|823156|823157|823158|823159|823160|823161|823162|823163|823164|823165|823166|823167|823168|830837|830838|830839|830840|830841|830842|830843|830844|830845|850750|851034|851986|894137|894138|894139|894140|894141|894142|894143|894144|894145|894146|894147|894148|894149|894150|894151|894152|894153|894154|894155|894156|894157|894158|894159|894160|894161|894162|894163|894164|894165|894166|894167|894168|894169|894170|894171|894172|894173|894174|894175|894176|894177|894178|894179|896092|896093|896094|904219|921784|921785|921786|921787|921788|924062|924063|924064|924065|924066|924067|924068|930211|930212|930213|930214|930215|930216|930217|930218|932905|932906|932907|932908|939785|939786|940613|941632|941633|941634|941635|941636|941637|941638|941639|941640|941641|941642|941643|941644|941645|944617|944618|944619|944620|952201|952202|954171|959767", "text": "Severe combined immunodeficiency, autosomal recessive, T cell-negative, B cell-positive, NK cell-positive" }, { - "baseId": "29499|29500|29501|187112|191536|191787|192645|213921|237224|265428|265681|267617|297518|297525|297526|297531|297532|297533|297536|297537|297541|297543|297547|297550|297559|297560|297562|297570|297572|297573|297576|297577|297584|297587|297595|297596|297597|297598|297601|297602|297606|297608|297609|299681|299687|299694|299695|299702|299705|299706|299707|299708|299710|299714|299722|299723|299732|299739|299740|299744|299749|299751|299756|299757|299767|299769|299772|299774|299777|299778|299779|299785|299787|299790|299791|299792|299795|299797|299812|299813|303773|303775|303776|303785|303793|303796|303799|303801|303802|303806|303810|303834|303838|303839|303853|303858|303859|303864|303919|303930|303937|303938|304199|304204|304207|304208|304209|304212|304213|304223|304224|304238|304250|304252|304253|304254|304257|304259|304266|304267|304277|304279|304291|304312|304314|304315|304316|304325|304327|304333|304334|304335|304337|304338|304339|353703|433664|438653|493341|496427|552088|552089|578376|609592|609593|609594|609595|620198|623233|625838|735097|735099|735100|765123|765124|765126|765128|765129|765130|765132|765134|765136|775024|782294|782298|782302|799412|799413|799414|799415|799416|799417|799418|799419|805007|805443|822300|894293|894294|894295|894296|894297|894298|894299|894300|894301|894302|894303|894304|894305|894306|894307|894308|894309|894310|894311|894312|894313|894314|894315|894316|894317|894318|894319|894320|894321|894322|894323|894324|894325|894326|894327|894328|894329|894330|894331|894332|894333|894334|894335|894336|894337|894338|894339|894340|894341|894342|894343|894344|894345|894346|894347|894348|894349|894350|894351|894352|894353|894354|894355|894356|894357|894358|894359|894360|894361|894362|894363|894364|894365|894366|894367|894368|894369|896108|896109|896110|978181|978182|978183|978184|983765", + "upstreamId": "29499|29500|29501|187112|191536|191787|192645|213921|237224|265428|265681|267617|297518|297525|297526|297531|297532|297533|297536|297537|297541|297543|297547|297550|297559|297560|297562|297570|297572|297573|297576|297577|297584|297587|297595|297596|297597|297598|297601|297602|297606|297608|297609|299681|299687|299694|299695|299702|299705|299706|299707|299708|299710|299714|299722|299723|299732|299739|299740|299744|299749|299751|299756|299757|299767|299769|299772|299774|299777|299778|299779|299785|299787|299790|299791|299792|299795|299797|299812|299813|303773|303775|303776|303785|303793|303796|303799|303801|303802|303806|303810|303834|303838|303839|303853|303858|303859|303864|303919|303930|303937|303938|304199|304204|304207|304208|304209|304212|304213|304223|304224|304238|304250|304252|304253|304254|304257|304259|304266|304267|304277|304279|304291|304312|304314|304315|304316|304325|304327|304333|304334|304335|304337|304338|304339|353703|433664|438653|493341|496427|552088|552089|578376|609592|609593|609594|609595|620198|623233|625838|735097|735099|735100|765123|765124|765126|765128|765129|765130|765132|765134|765136|775024|782294|782298|782302|799412|799413|799414|799415|799416|799417|799418|799419|805007|805443|822300|894293|894294|894295|894296|894297|894298|894299|894300|894301|894302|894303|894304|894305|894306|894307|894308|894309|894310|894311|894312|894313|894314|894315|894316|894317|894318|894319|894320|894321|894322|894323|894324|894325|894326|894327|894328|894329|894330|894331|894332|894333|894334|894335|894336|894337|894338|894339|894340|894341|894342|894343|894344|894345|894346|894347|894348|894349|894350|894351|894352|894353|894354|894355|894356|894357|894358|894359|894360|894361|894362|894363|894364|894365|894366|894367|894368|894369|896108|896109|896110|978181|978182|978183|978184|983765", "text": "St\u00fcve-Wiedemann syndrome" }, { - "baseId": "29502|29503|29504|29505|29506|29507|29508|29509|29510|208712|208713|243602|243603|243604|243605|243606|243607|243608|243609|243610|243611|243612|243613|243614|243615|243616|243617|243618|243619|243620|243621|248535|257451|257452|257453|257454|257456|257457|257458|336677|336681|336682|336686|336689|336692|336695|336699|336702|336711|336713|336716|336717|336719|336720|336722|336724|336726|336734|336736|336737|336738|336740|336742|336744|336745|346357|346369|346370|346371|346372|346375|346377|346378|346386|346389|346393|346394|346396|346401|346402|346405|346411|346412|346415|350599|350602|350603|350606|350608|350609|350611|350612|350614|350615|350616|350619|350620|350623|350624|350626|350627|350628|350631|350632|350633|350636|350638|350641|351653|351655|351657|351658|351661|351662|351663|351666|351667|351669|351670|351673|351675|351677|351679|351681|351683|351686|351688|351690|351693|351694|351696|362897|362900|362901|379769|403702|403712|403721|403726|403728|403732|403736|403737|403738|403739|403746|403749|404215|404217|404219|404220|404227|404236|404241|404246|404251|404254|404260|404263|404266|404269|404271|404272|404275|404847|404848|422354|430417|430419|430419|430421|430422|430423|469587|469592|469593|469595|469604|469605|469611|470630|470633|470637|470639|470641|470646|470648|470649|470656|471077|471146|471147|471155|471166|471170|471173|471175|471177|471184|471187|471189|471192|471193|471194|471612|471618|471620|471620|471623|471627|471631|471632|471635|471636|471638|533770|533817|533823|533827|533830|533838|533839|533840|533841|533842|533843|533844|533846|533847|533848|533849|533850|533851|533853|533854|533856|533857|533858|533859|533861|533863|533865|533867|533871|533873|533875|533879|534402|534403|534409|534413|534420|536024|552357|552362|552368|552369|552374|552379|552387|571518|571520|571527|571531|571541|571551|571553|573083|573084|573090|573093|573095|573099|573105|573108|573118|573126|573128|573767|573771|573772|573777|573782|575153|575154|575155|575156|575157|575158|575159|575160|575161|575162|575163|610162|615635|648949|648950|648951|648952|648953|648954|648955|648956|648957|648958|648959|648960|648961|648962|648963|648964|648965|648966|648967|648968|648969|648970|648971|648972|648973|648974|648975|648976|648977|648978|648979|648980|648981|648982|648983|653572|653660|653667|653830|653831|684901|684902|684903|689244|689246|689247|689248|694628|694629|695858|695859|705670|705671|745331|757788|757789|773310|773312|773317|776718|776947|821364|821365|821366|821367|821368|821369|848737|848738|848739|848740|848741|848742|848743|848744|848745|848746|848747|848748|848749|848750|848751|848752|848753|848754|848755|848756|848757|848758|848759|848760|848761|848762|848763|848764|848765|848766|848767|848768|848769|848770|848771|848772|848773|848774|848775|848776|848777|848778|848779|848780|848781|848782|848783|848784|848785|852399|852401|853004|853005|853006|857421|857422|857423|857424|886716|886717|886718|886719|886720|886721|886722|886723|886724|886725|886726|886727|886728|886729|886730|886731|886732|886733|886734|886735|886736|886737|886738|886739|886740|886741|886742|886743|886744|886745|886746|886747|886748|886749|886750|887503|919934|929308|929309|929310|929311|929312|929313|929314|929315|929316|929317|929318|939092|939093|939094|939095|939096|939097|939098|939099|939100|939101|939102|939103|939104|939105|939106|939107|939108|939109|939110|939111|939112|940516|940517|941260|951217|951218|951219|951220|951221|951222|951223|951224|951225|951226|951227|951228|951229|951230|951231|951232|951233|958945|958946|958947|958948|958949|958950|958951|958952|958953|958954|958955|960326|966896", + "upstreamId": "29502|29503|29504|29505|29506|29507|29508|29509|29510|208712|208713|243602|243603|243604|243605|243606|243607|243608|243609|243610|243611|243612|243613|243614|243615|243616|243617|243618|243619|243620|243621|248535|257451|257452|257453|257454|257456|257457|257458|336677|336681|336682|336686|336689|336692|336695|336699|336702|336711|336713|336716|336717|336719|336720|336722|336724|336726|336734|336736|336737|336738|336740|336742|336744|336745|346357|346369|346370|346371|346372|346375|346377|346378|346386|346389|346393|346394|346396|346401|346402|346405|346411|346412|346415|350599|350602|350603|350606|350608|350609|350611|350612|350614|350615|350616|350619|350620|350623|350624|350626|350627|350628|350631|350632|350633|350636|350638|350641|351653|351655|351657|351658|351661|351662|351663|351666|351667|351669|351670|351673|351675|351677|351679|351681|351683|351686|351688|351690|351693|351694|351696|362897|362900|362901|379769|403702|403712|403721|403726|403728|403732|403736|403737|403738|403739|403746|403749|404215|404217|404219|404220|404227|404236|404241|404246|404251|404254|404260|404263|404266|404269|404271|404272|404275|404847|404848|422354|430417|430419|430419|430421|430422|430423|469587|469592|469593|469595|469604|469605|469611|470630|470633|470637|470639|470641|470646|470648|470649|470656|471077|471146|471147|471155|471166|471170|471173|471175|471177|471184|471187|471189|471192|471193|471194|471612|471618|471620|471620|471623|471627|471631|471632|471635|471636|471638|533770|533817|533823|533827|533830|533838|533839|533840|533841|533842|533843|533844|533846|533847|533848|533849|533850|533851|533853|533854|533856|533857|533858|533859|533861|533863|533865|533867|533871|533873|533875|533879|534402|534403|534409|534413|534420|536024|552357|552362|552368|552369|552374|552379|552387|571518|571520|571527|571531|571541|571551|571553|573083|573084|573090|573093|573095|573099|573105|573108|573118|573126|573128|573767|573771|573772|573777|573782|575153|575154|575155|575156|575157|575158|575159|575160|575161|575162|575163|610162|615635|648949|648950|648951|648952|648953|648954|648955|648956|648957|648958|648959|648960|648961|648962|648963|648964|648965|648966|648967|648968|648969|648970|648971|648972|648973|648974|648975|648976|648977|648978|648979|648980|648981|648982|648983|653572|653660|653667|653830|653831|684901|684902|684903|689244|689246|689247|689248|694628|694629|695858|695859|705670|705671|745331|757788|757789|773310|773312|773317|776718|776947|821364|821365|821366|821367|821368|821369|848737|848738|848739|848740|848741|848742|848743|848744|848745|848746|848747|848748|848749|848750|848751|848752|848753|848754|848755|848756|848757|848758|848759|848760|848761|848762|848763|848764|848765|848766|848767|848768|848769|848770|848771|848772|848773|848774|848775|848776|848777|848778|848779|848780|848781|848782|848783|848784|848785|852399|852401|853004|853005|853006|857421|857422|857423|857424|886716|886717|886718|886719|886720|886721|886722|886723|886724|886725|886726|886727|886728|886729|886730|886731|886732|886733|886734|886735|886736|886737|886738|886739|886740|886741|886742|886743|886744|886745|886746|886747|886748|886749|886750|887503|919934|929308|929309|929310|929311|929312|929313|929314|929315|929316|929317|929318|939092|939093|939094|939095|939096|939097|939098|939099|939100|939101|939102|939103|939104|939105|939106|939107|939108|939109|939110|939111|939112|940516|940517|941260|951217|951218|951219|951220|951221|951222|951223|951224|951225|951226|951227|951228|951229|951230|951231|951232|951233|958945|958946|958947|958948|958949|958950|958951|958952|958953|958954|958955|960326|966896", "text": "Familial platelet disorder with associated myeloid malignancy" }, { - "baseId": "29508", + "upstreamId": "29508", "text": "Transient myeloproliferative disorder of Down syndrome" }, { - "baseId": "29508", + "upstreamId": "29508", "text": "Leukemia, acute myeloid, m0 subtype" }, { - "baseId": "29513|29514|77643|205534|964520", + "upstreamId": "29513|29514|77643|205534|964520", "text": "Acquired partial lipodystrophy" }, { - "baseId": "29513|29513|77643|205535|430166|430167|430168|468600|469514|469515|469516|469524|469526|469527|469977|469987|469989|469991|469992|469994|470001|470569|470579|470583|470590|532795|532797|532801|532803|532804|532807|532809|532813|532815|532816|532817|532824|532825|532828|532834|532870|532877|532879|533249|533253|533256|570621|570625|570632|572311|572318|572319|572321|572994|572996|572997|572999|574924|574925|574926|574927|574928|647869|647870|647871|647872|647873|647874|647875|647876|647877|647878|647879|647880|647881|647882|647883|647884|647885|647886|647887|647888|647889|647890|647891|647892|704887|704888|704889|704890|704891|716334|728079|728080|728081|745066|745228|756882|756883|756884|756885|756886|772556|772561|772563|776690|786126|793776|821246|847468|847469|847470|847471|847472|847473|847474|847475|847476|847477|847478|847479|847480|847481|847482|847483|928906|928907|928908|928909|928910|938624|938625|950726|950727|950728|950729|950730|950731|958584|958585|958586|958587|958588|958589", + "upstreamId": "29513|29513|77643|205535|430166|430167|430168|468600|469514|469515|469516|469524|469526|469527|469977|469987|469989|469991|469992|469994|470001|470569|470579|470583|470590|532795|532797|532801|532803|532804|532807|532809|532813|532815|532816|532817|532824|532825|532828|532834|532870|532877|532879|533249|533253|533256|570621|570625|570632|572311|572318|572319|572321|572994|572996|572997|572999|574924|574925|574926|574927|574928|647869|647870|647871|647872|647873|647874|647875|647876|647877|647878|647879|647880|647881|647882|647883|647884|647885|647886|647887|647888|647889|647890|647891|647892|704887|704888|704889|704890|704891|716334|728079|728080|728081|745066|745228|756882|756883|756884|756885|756886|772556|772561|772563|776690|786126|793776|821246|847468|847469|847470|847471|847472|847473|847474|847475|847476|847477|847478|847479|847480|847481|847482|847483|928906|928907|928908|928909|928910|938624|938625|950726|950727|950728|950729|950730|950731|958584|958585|958586|958587|958588|958589", "text": "Epilepsy, progressive myoclonic, 9" }, { - "baseId": "29513|77643|430166|430167|430168|468600|469514|469515|469516|469524|469526|469527|469977|469987|469989|469991|469992|469994|470001|470569|470579|470583|470590|532795|532797|532801|532803|532804|532807|532809|532813|532815|532816|532817|532824|532825|532828|532834|532870|532877|532879|533249|533253|533256|570621|570625|570632|572311|572318|572319|572321|572994|572996|572997|572999|574924|574925|574926|574927|574928|647869|647870|647871|647872|647873|647874|647875|647876|647877|647878|647879|647880|647881|647882|647883|647884|647885|647886|647887|647888|647889|647890|647891|647892|704887|704888|704889|704890|704891|716334|728079|728080|728081|745066|745228|756882|756883|756884|756885|756886|772556|772561|772563|776690|786126|793776|821246|847468|847469|847470|847471|847472|847473|847474|847475|847476|847477|847478|847479|847480|847481|847482|847483|928906|928907|928908|928909|928910|938624|938625|950726|950727|950728|950729|950730|950731|958584|958585|958586|958587|958588|958589", + "upstreamId": "29513|77643|430166|430167|430168|468600|469514|469515|469516|469524|469526|469527|469977|469987|469989|469991|469992|469994|470001|470569|470579|470583|470590|532795|532797|532801|532803|532804|532807|532809|532813|532815|532816|532817|532824|532825|532828|532834|532870|532877|532879|533249|533253|533256|570621|570625|570632|572311|572318|572319|572321|572994|572996|572997|572999|574924|574925|574926|574927|574928|647869|647870|647871|647872|647873|647874|647875|647876|647877|647878|647879|647880|647881|647882|647883|647884|647885|647886|647887|647888|647889|647890|647891|647892|704887|704888|704889|704890|704891|716334|728079|728080|728081|745066|745228|756882|756883|756884|756885|756886|772556|772561|772563|776690|786126|793776|821246|847468|847469|847470|847471|847472|847473|847474|847475|847476|847477|847478|847479|847480|847481|847482|847483|928906|928907|928908|928909|928910|938624|938625|950726|950727|950728|950729|950730|950731|958584|958585|958586|958587|958588|958589", "text": "Lipodystrophy, partial, acquired, susceptibility to" }, { - "baseId": "29515|77509|77510|77511|77512|134932|295100|295102|295107|296929|296930|296931|296937|296938|296939|296940|300561|300563|300566|300682|300700|300701|300702|300704|300706|300712|300718|892733|892734|892735|892736|892737|892738|892739|892740|892741|892742|892743|892744|892745|892746|892747|892748|896022|918915", + "upstreamId": "29515|77509|77510|77511|77512|134932|295100|295102|295107|296929|296930|296931|296937|296938|296939|296940|300561|300563|300566|300682|300700|300701|300702|300704|300706|300712|300718|892733|892734|892735|892736|892737|892738|892739|892740|892741|892742|892743|892744|892745|892746|892747|892748|896022|918915", "text": "Leukodystrophy, adult-onset, autosomal dominant" }, { - "baseId": "29516|29517|29520|29521|29529|29530|29531|29534|29547|29550|29553|29563|29564|45141|45142|49658|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|77746|77751|77815|77822|77828|172488|172489|196270|196461|196463|205007|213515|224183|226437|237758|238151|244232|276591|276609|276614|276876|277432|277441|277446|277453|277461|277537|481410|509122|556620|576413|609160|626918|672030|685575|822799|862419|862420|862421|862422|862423|864995", + "upstreamId": "29516|29517|29520|29521|29529|29530|29531|29534|29547|29550|29553|29563|29564|45141|45142|49658|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|77746|77751|77815|77822|77828|172488|172489|196270|196461|196463|205007|213515|224183|226437|237758|238151|244232|276591|276609|276614|276876|277432|277441|277446|277453|277461|277537|481410|509122|556620|576413|609160|626918|672030|685575|822799|862419|862420|862421|862422|862423|864995", "text": "Emery-Dreifuss muscular dystrophy 2, autosomal dominant" }, { - "baseId": "29517|57238|77759|213515|964644", + "upstreamId": "29517|57238|77759|213515|964644", "text": "Limb-girdle muscular dystrophy, type 1B" }, { - "baseId": "29518|29520|29525|29527|29528|29529|29532|29533|29556|29557|29558|45141|45142|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|57256|77659|77677|77726|77730|77747|77765|77775|77785|172488|172489|196270|196461|196463|224183|226437|238151|244232|276591|276609|276614|276876|277432|277441|277446|277453|277461|277537|509122|556620|576413|626918|685575|862419|862420|862421|862422|862423|864995", + "upstreamId": "29518|29520|29525|29527|29528|29529|29532|29533|29556|29557|29558|45141|45142|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|57256|77659|77677|77726|77730|77747|77765|77775|77785|172488|172489|196270|196461|196463|224183|226437|238151|244232|276591|276609|276614|276876|277432|277441|277446|277453|277461|277537|509122|556620|576413|626918|685575|862419|862420|862421|862422|862423|864995", "text": "Familial partial lipodystrophy 2" }, { - "baseId": "29525|45135|57241|172880|196467|228276", + "upstreamId": "29525|45135|57241|172880|196467|228276", "text": "Laminopathy" }, { - "baseId": "29525|29531|49658", + "upstreamId": "29525|29531|49658", "text": "Emery-Dreifuss muscular dystrophy 3, autosomal recessive" }, { - "baseId": "29526|29529|29538|29548|29552|29561|45141|45142|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|106555|172488|172489|196270|196461|196463|224183|226437|238151|244232|276591|276609|276614|276876|277432|277441|277446|277453|277461|277537|509122|556620|576413|626918|685575|862419|862420|862421|862422|862423|864995", + "upstreamId": "29526|29529|29538|29548|29552|29561|45141|45142|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|106555|172488|172489|196270|196461|196463|224183|226437|238151|244232|276591|276609|276614|276876|277432|277441|277446|277453|277461|277537|509122|556620|576413|626918|685575|862419|862420|862421|862422|862423|864995", "text": "Mandibuloacral dysplasia with type A lipodystrophy" }, { - "baseId": "29526|29529|29537|29539|29539|29540|29541|29555|31619|45141|45142|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|77699|77746|77755|77766|77776|137877|137889|172110|172111|172112|172113|172114|172115|172116|172117|172118|172488|172489|189381|196270|196461|196463|205007|224183|226437|238151|244232|276591|276601|276609|276610|276614|276876|277430|277432|277433|277434|277441|277445|277446|277447|277453|277456|277461|277537|353062|509122|552036|556620|576413|613483|626918|672030|685575|789856|862419|862420|862421|862422|862423|864995", + "upstreamId": "29526|29529|29537|29539|29539|29540|29541|29555|31619|45141|45142|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|77699|77746|77755|77766|77776|137877|137889|172110|172111|172112|172113|172114|172115|172116|172117|172118|172488|172489|189381|196270|196461|196463|205007|224183|226437|238151|244232|276591|276601|276609|276610|276614|276876|277430|277432|277433|277434|277441|277445|277446|277447|277453|277456|277461|277537|353062|509122|552036|556620|576413|613483|626918|672030|685575|789856|862419|862420|862421|862422|862423|864995", "text": "Hutchinson-Gilford syndrome" }, { - "baseId": "29527|29546|181469", + "upstreamId": "29527|29546|181469", "text": "Hutchinson-Gilford progeria syndrome, childhood-onset" }, { - "baseId": "29528|29556|276601|276610|277430|277433|277434|277445|277447|277456|353062", + "upstreamId": "29528|29556|276601|276610|277430|277433|277434|277445|277447|277456|353062", "text": "Familial partial lipodystrophy" }, { - "baseId": "29529|45141|45142|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|172488|172489|196270|196461|196463|224183|226437|238151|244232|276591|276601|276609|276610|276614|276876|277430|277432|277433|277434|277441|277445|277446|277447|277453|277456|277461|277537|353062|509122|556620|576413|626918|685575|862419|862420|862421|862422|862423|864995", + "upstreamId": "29529|45141|45142|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|172488|172489|196270|196461|196463|224183|226437|238151|244232|276591|276601|276609|276610|276614|276876|277430|277432|277433|277434|277441|277445|277446|277447|277453|277456|277461|277537|353062|509122|556620|576413|626918|685575|862419|862420|862421|862422|862423|864995", "text": "Lipoatrophy with Diabetes, Hepatic Steatosis, Hypertrophic Cardiomyopathy, and Leukomelanodermic Papules" }, { - "baseId": "29529|29537|45141|45142|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|77828|172488|172489|196270|196461|196463|224183|226437|238151|244232|276591|276609|276614|276876|277432|277441|277446|277453|277461|277537|509122|556620|576413|626918|626927|672030|685575|862419|862420|862421|862422|862423|864995", + "upstreamId": "29529|29537|45141|45142|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|77828|172488|172489|196270|196461|196463|224183|226437|238151|244232|276591|276609|276614|276876|277432|277441|277446|277453|277461|277537|509122|556620|576413|626918|626927|672030|685575|862419|862420|862421|862422|862423|864995", "text": "Charcot-Marie-Tooth disease type 2B1" }, { - "baseId": "29529|45141|45142|57199|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|172488|172489|176795|196270|196365|196461|196463|198545|198549|198550|198551|224183|226437|238151|243779|244232|267991|268805|270420|274788|276591|276601|276609|276610|276614|276876|277430|277432|277433|277434|277441|277445|277446|277447|277453|277456|277461|277537|299476|299490|301862|301890|301973|306312|306339|306415|306416|306417|306601|306602|320791|320814|320833|329859|329936|336359|336412|338232|338388|353062|438475|456964|456966|456973|456974|456977|456987|456993|456995|457015|457016|457018|457504|457509|457510|457619|457622|457623|457630|457631|457633|457635|457950|457952|457955|457959|457961|457965|457968|457970|457971|457973|457974|457975|470275|470278|470282|470287|470289|470290|470291|470298|470301|471128|471134|471136|471137|471140|471144|471584|471586|471587|471588|471590|471593|471968|471971|471974|509122|522860|522864|522868|523073|523074|523302|523305|523308|523312|523313|523395|523407|523410|523416|523424|534299|534301|534306|534314|534322|534323|534329|534334|534337|534462|534469|534475|534810|534812|534822|534829|534831|534834|556620|561765|561773|561776|561779|561781|561783|562214|562223|562230|562234|564423|564426|564428|564436|564440|567168|567170|567174|567187|571998|573409|574138|575270|575271|576413|626918|636356|636371|636372|636373|636374|636375|636376|636377|636378|636379|636380|636381|636382|636383|636384|636385|636386|636387|636388|649501|649502|649503|649504|649505|649506|649507|649508|649509|649510|649511|649512|653723|685575|689436|692311|692312|692313|692315|692316|692318|692319|692321|694741|694742|694743|694744|694746|695880|695881|695882|700262|700263|700266|705937|705940|731420|758090|758091|758093|773911|775370|780049|786754|787416|788091|819920|833873|833874|833875|833876|833877|833878|833879|833880|833881|833882|833883|849347|849348|849349|849350|849351|849352|849353|849354|849355|849356|849357|849358|849359|849360|849361|851926|852104|852377|862419|862420|862421|862422|862423|864995|924916|924917|924918|924919|924920|924921|924922|924923|924924|924925|929489|934004|934005|934006|934007|934008|934009|939318|940084|941281|945773|945774|951475|951476|951477|951478|951479|951480|955222|959096|959097|959098|959099|960638|980095|980096", + "upstreamId": "29529|45141|45142|57199|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|172488|172489|176795|196270|196365|196461|196463|198545|198549|198550|198551|224183|226437|238151|243779|244232|267991|268805|270420|274788|276591|276601|276609|276610|276614|276876|277430|277432|277433|277434|277441|277445|277446|277447|277453|277456|277461|277537|299476|299490|301862|301890|301973|306312|306339|306415|306416|306417|306601|306602|320791|320814|320833|329859|329936|336359|336412|338232|338388|353062|438475|456964|456966|456973|456974|456977|456987|456993|456995|457015|457016|457018|457504|457509|457510|457619|457622|457623|457630|457631|457633|457635|457950|457952|457955|457959|457961|457965|457968|457970|457971|457973|457974|457975|470275|470278|470282|470287|470289|470290|470291|470298|470301|471128|471134|471136|471137|471140|471144|471584|471586|471587|471588|471590|471593|471968|471971|471974|509122|522860|522864|522868|523073|523074|523302|523305|523308|523312|523313|523395|523407|523410|523416|523424|534299|534301|534306|534314|534322|534323|534329|534334|534337|534462|534469|534475|534810|534812|534822|534829|534831|534834|556620|561765|561773|561776|561779|561781|561783|562214|562223|562230|562234|564423|564426|564428|564436|564440|567168|567170|567174|567187|571998|573409|574138|575270|575271|576413|626918|636356|636371|636372|636373|636374|636375|636376|636377|636378|636379|636380|636381|636382|636383|636384|636385|636386|636387|636388|649501|649502|649503|649504|649505|649506|649507|649508|649509|649510|649511|649512|653723|685575|689436|692311|692312|692313|692315|692316|692318|692319|692321|694741|694742|694743|694744|694746|695880|695881|695882|700262|700263|700266|705937|705940|731420|758090|758091|758093|773911|775370|780049|786754|787416|788091|819920|833873|833874|833875|833876|833877|833878|833879|833880|833881|833882|833883|849347|849348|849349|849350|849351|849352|849353|849354|849355|849356|849357|849358|849359|849360|849361|851926|852104|852377|862419|862420|862421|862422|862423|864995|924916|924917|924918|924919|924920|924921|924922|924923|924924|924925|929489|934004|934005|934006|934007|934008|934009|939318|940084|941281|945773|945774|951475|951476|951477|951478|951479|951480|955222|959096|959097|959098|959099|960638|980095|980096", "text": "Emery-Dreifuss muscular dystrophy" }, { - "baseId": "29529|29549|29562|29563|29564|45137|45141|45142|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|77759|77857|172488|172489|196270|196461|196463|213515|215103|224183|226437|238151|244232|269995|276591|276601|276609|276610|276614|276876|277430|277432|277433|277434|277441|277445|277446|277447|277453|277456|277461|277537|353062|447227|509122|513494|552035|552036|556620|576413|578366|626918|672030|685575|792654|862419|862420|862421|862422|862423|864995", + "upstreamId": "29529|29549|29562|29563|29564|45137|45141|45142|57201|57207|57208|57212|57226|57227|57235|57242|57250|57252|77677|77759|77857|172488|172489|196270|196461|196463|213515|215103|224183|226437|238151|244232|269995|276591|276601|276609|276610|276614|276876|277430|277432|277433|277434|277441|277445|277446|277447|277453|277456|277461|277537|353062|447227|509122|513494|552035|552036|556620|576413|578366|626918|672030|685575|792654|862419|862420|862421|862422|862423|864995", "text": "Congenital muscular dystrophy, LMNA-related" }, { - "baseId": "29537|540444|540463", + "upstreamId": "29537|540444|540463", "text": "Autosomal recessive axonal hereditary motor and sensory neuropathy" }, { - "baseId": "29538|29542|29556|29559", + "upstreamId": "29538|29542|29556|29559", "text": "Mandibuloacral dysplasia with type A lipodystrophy, atypical" }, { - "baseId": "29538|276601|276610|277430|277433|277434|277445|277447|277456|280484|280486|280881|280882|282234|282235|282236|282440|353062", + "upstreamId": "29538|276601|276610|277430|277433|277434|277445|277447|277456|280484|280486|280881|280882|282234|282235|282236|282440|353062", "text": "Mandibuloacral dysplasia" }, { - "baseId": "29541|172113|172117|214091", + "upstreamId": "29541|172113|172117|214091", "text": "Hutchinson-Gilford progeria syndrome, atypical" }, { - "baseId": "29545|33496", + "upstreamId": "29545|33496", "text": "Dilated cardiomyopathy-hypergonadotropic hypogonadism syndrome" }, { - "baseId": "29568|29569|29570|29571|29572|29574|29574|178530|251205|251205|251207|251207|251208|251208|251210|251210|251212|251213|251214|251214|251215|251215|251216|251216|251217|251219|251219|251220|251220|251221|251223|251223|251224|251224|251225|251225|291063|291064|291065|291065|291067|291067|291068|291068|291076|291081|291082|291084|291084|291085|291085|291090|291092|291096|291097|291102|291103|291104|292016|292016|292027|292028|292029|292037|292038|292045|292045|292047|292054|292058|292059|292061|292062|295384|295384|295385|295393|295393|295402|295411|295412|295413|295414|295414|295415|295427|295427|295428|295428|295590|295590|295594|295596|295597|295598|295598|295601|295606|295606|295613|295614|295618|438242|443496|443496|452493|452493|452495|452497|452499|452499|452501|452502|452504|452504|452783|452783|452785|452787|452790|452793|452794|452794|452798|452798|452803|452803|452808|452811|452819|452825|452825|452839|452841|452841|452842|452842|452844|453042|453047|453051|453051|453056|453059|453072|496303|519387|519396|519399|519411|519411|519414|519589|519593|519596|519625|519626|519627|537425|537425|559032|559034|559036|559038|559564|559566|559568|559570|559570|559572|559572|561650|561653|561659|561661|561663|563055|563068|563075|576763|584722|631506|631507|631508|631509|631510|631511|631512|631513|631514|631515|631516|631516|631517|631518|631519|631520|631521|631522|631523|631524|631525|631526|631527|631528|631529|631530|631531|631532|631533|631534|631535|631536|631537|631538|631539|631540|631541|631542|631543|631544|691429|691429|691430|691431|691432|691433|691437|691437|691438|691438|691441|691441|691442|691443|691443|695206|695207|695207|695208|695210|695210|698164|698166|698167|698167|708924|720525|720525|734146|734149|748363|759214|777415|777415|781736|795449|828297|828298|828299|828300|828301|828302|828303|828304|828305|828306|828307|828308|828309|828310|828311|828312|828313|828314|828315|851460|889352|889353|889354|889355|889356|889357|889358|889359|889360|889361|889362|889363|889364|889365|889366|889367|889368|889369|889370|889371|889372|889373|889374|889375|889376|889377|889378|891685|891686|891687|891688|923256|923257|923258|923259|923260|932003|932004|932005|932006|932007|932008|932009|932010|932011|939949|943609|943610|943611|943612|943613|943614|943615|943616|943617|953523|953524|953525|953526|953527|953528|960516|963130|970202", + "upstreamId": "29568|29569|29570|29571|29572|29574|29574|178530|251205|251205|251207|251207|251208|251208|251210|251210|251212|251213|251214|251214|251215|251215|251216|251216|251217|251219|251219|251220|251220|251221|251223|251223|251224|251224|251225|251225|291063|291064|291065|291065|291067|291067|291068|291068|291076|291081|291082|291084|291084|291085|291085|291090|291092|291096|291097|291102|291103|291104|292016|292016|292027|292028|292029|292037|292038|292045|292045|292047|292054|292058|292059|292061|292062|295384|295384|295385|295393|295393|295402|295411|295412|295413|295414|295414|295415|295427|295427|295428|295428|295590|295590|295594|295596|295597|295598|295598|295601|295606|295606|295613|295614|295618|438242|443496|443496|452493|452493|452495|452497|452499|452499|452501|452502|452504|452504|452783|452783|452785|452787|452790|452793|452794|452794|452798|452798|452803|452803|452808|452811|452819|452825|452825|452839|452841|452841|452842|452842|452844|453042|453047|453051|453051|453056|453059|453072|496303|519387|519396|519399|519411|519411|519414|519589|519593|519596|519625|519626|519627|537425|537425|559032|559034|559036|559038|559564|559566|559568|559570|559570|559572|559572|561650|561653|561659|561661|561663|563055|563068|563075|576763|584722|631506|631507|631508|631509|631510|631511|631512|631513|631514|631515|631516|631516|631517|631518|631519|631520|631521|631522|631523|631524|631525|631526|631527|631528|631529|631530|631531|631532|631533|631534|631535|631536|631537|631538|631539|631540|631541|631542|631543|631544|691429|691429|691430|691431|691432|691433|691437|691437|691438|691438|691441|691441|691442|691443|691443|695206|695207|695207|695208|695210|695210|698164|698166|698167|698167|708924|720525|720525|734146|734149|748363|759214|777415|777415|781736|795449|828297|828298|828299|828300|828301|828302|828303|828304|828305|828306|828307|828308|828309|828310|828311|828312|828313|828314|828315|851460|889352|889353|889354|889355|889356|889357|889358|889359|889360|889361|889362|889363|889364|889365|889366|889367|889368|889369|889370|889371|889372|889373|889374|889375|889376|889377|889378|891685|891686|891687|891688|923256|923257|923258|923259|923260|932003|932004|932005|932006|932007|932008|932009|932010|932011|939949|943609|943610|943611|943612|943613|943614|943615|943616|943617|953523|953524|953525|953526|953527|953528|960516|963130|970202", "text": "Pierson syndrome" }, { - "baseId": "29571|29573|29574|29574|29575|29576|29577|38729|251205|251205|251207|251207|251208|251208|251210|251210|251212|251213|251214|251214|251215|251215|251216|251216|251217|251219|251219|251220|251220|251221|251223|251223|251224|251224|251225|251225|291063|291064|291065|291065|291067|291067|291068|291068|291076|291081|291082|291084|291084|291085|291090|291092|291096|291097|291102|292016|292016|292027|292028|292029|292037|292038|292045|292045|292047|292054|292058|292059|292061|295384|295384|295385|295393|295402|295412|295413|295414|295414|295415|295427|295427|295428|295428|295590|295590|295596|295597|295598|295598|295601|295606|295606|295613|295614|438242|443496|443496|452493|452493|452495|452497|452499|452499|452501|452502|452504|452504|452783|452783|452785|452787|452790|452793|452794|452794|452798|452798|452803|452803|452808|452811|452819|452825|452825|452839|452841|452841|452842|452842|452844|453042|453047|453051|453051|453056|453059|453072|519387|519396|519399|519411|519411|519414|519589|519593|519596|519625|519626|519627|537425|537425|559032|559034|559036|559038|559564|559566|559568|559570|559570|559572|559572|561650|561653|561659|561661|561663|563055|563068|563075|576763|584722|612129|622875|623276|631506|631507|631508|631509|631510|631511|631512|631513|631514|631515|631516|631516|631517|631518|631519|631520|631521|631522|631523|631524|631525|631526|631527|631528|631529|631530|631531|631532|631533|631534|631535|631536|631537|631538|631539|631540|631541|631542|631543|631544|691429|691429|691430|691431|691432|691433|691437|691437|691438|691438|691441|691441|691442|691443|691443|695206|695207|695207|695208|695210|695210|698164|698166|698167|698167|708924|720525|720525|734146|734149|748363|759214|777415|777415|781736|795449|818226|818227|828297|828298|828299|828300|828301|828302|828303|828304|828305|828306|828307|828308|828309|828310|828311|828312|828313|828314|828315|851460|889352|889353|889354|889355|889356|889357|889358|889359|889360|889361|889362|889363|889364|889365|889366|889367|889368|889369|889370|889371|889372|889373|889374|889375|889376|889377|889378|891685|891686|891687|891688|923256|923257|923258|923259|923260|932003|932004|932005|932006|932007|932008|932009|932010|932011|939949|943609|943610|943611|943612|943613|943614|943615|943616|943617|953523|953524|953525|953526|953527|953528|960516|967233", + "upstreamId": "29571|29573|29574|29574|29575|29576|29577|38729|251205|251205|251207|251207|251208|251208|251210|251210|251212|251213|251214|251214|251215|251215|251216|251216|251217|251219|251219|251220|251220|251221|251223|251223|251224|251224|251225|251225|291063|291064|291065|291065|291067|291067|291068|291068|291076|291081|291082|291084|291084|291085|291090|291092|291096|291097|291102|292016|292016|292027|292028|292029|292037|292038|292045|292045|292047|292054|292058|292059|292061|295384|295384|295385|295393|295402|295412|295413|295414|295414|295415|295427|295427|295428|295428|295590|295590|295596|295597|295598|295598|295601|295606|295606|295613|295614|438242|443496|443496|452493|452493|452495|452497|452499|452499|452501|452502|452504|452504|452783|452783|452785|452787|452790|452793|452794|452794|452798|452798|452803|452803|452808|452811|452819|452825|452825|452839|452841|452841|452842|452842|452844|453042|453047|453051|453051|453056|453059|453072|519387|519396|519399|519411|519411|519414|519589|519593|519596|519625|519626|519627|537425|537425|559032|559034|559036|559038|559564|559566|559568|559570|559570|559572|559572|561650|561653|561659|561661|561663|563055|563068|563075|576763|584722|612129|622875|623276|631506|631507|631508|631509|631510|631511|631512|631513|631514|631515|631516|631516|631517|631518|631519|631520|631521|631522|631523|631524|631525|631526|631527|631528|631529|631530|631531|631532|631533|631534|631535|631536|631537|631538|631539|631540|631541|631542|631543|631544|691429|691429|691430|691431|691432|691433|691437|691437|691438|691438|691441|691441|691442|691443|691443|695206|695207|695207|695208|695210|695210|698164|698166|698167|698167|708924|720525|720525|734146|734149|748363|759214|777415|777415|781736|795449|818226|818227|828297|828298|828299|828300|828301|828302|828303|828304|828305|828306|828307|828308|828309|828310|828311|828312|828313|828314|828315|851460|889352|889353|889354|889355|889356|889357|889358|889359|889360|889361|889362|889363|889364|889365|889366|889367|889368|889369|889370|889371|889372|889373|889374|889375|889376|889377|889378|891685|891686|891687|891688|923256|923257|923258|923259|923260|932003|932004|932005|932006|932007|932008|932009|932010|932011|939949|943609|943610|943611|943612|943613|943614|943615|943616|943617|953523|953524|953525|953526|953527|953528|960516|967233", "text": "Nephrotic syndrome, type 5, with or without ocular abnormalities" }, { - "baseId": "29578|29580|178844|178845|178846|359226|380444|380445|540778", + "upstreamId": "29578|29580|178844|178845|178846|359226|380444|380445|540778", "text": "Amelogenesis imperfecta, type IA" }, { - "baseId": "29578|29598|33855|192407|192764|249573|249574|249575|249576|249577|249578|249579|249580|249679|249680|249681|249682|249683|249684|249685|249688|249689|249691|249694|249695|259645|267151|267281|271754|274805|274810|274811|274812|277638|277645|277650|277651|277652|277667|277671|277672|277673|277674|277675|277685|277686|277693|277696|277707|277720|277723|277724|277742|277744|277747|277748|277781|277785|277786|277792|277793|277794|277795|277802|277808|277809|277811|277812|277814|277818|277819|277824|277827|277828|277836|277838|277839|278632|278634|278635|278636|278641|278642|278647|278649|278650|278654|278655|278660|278661|278663|278667|278669|278670|278671|278674|278675|278677|278681|278682|278683|278685|278688|278689|278691|278706|278713|278715|278717|278728|278729|278732|278737|278751|278753|278760|278762|278763|278764|278765|278768|278769|278777|278778|278781|278782|278783|278785|278787|278790|278791|278793|278795|278796|278797|278798|278800|278802|278803|278805|278810|278811|278812|278815|278816|278817|278819|278822|278823|278824|278827|278828|278829|278832|278833|278834|278839|278840|278847|278872|278874|278875|278876|278878|278881|279961|279968|279970|279974|279975|279986|279987|279994|279995|280018|280028|280029|280031|280033|280034|280035|280036|280037|280038|280040|280041|280042|280043|280065|280073|280082|280084|280098|280100|280101|280104|280106|280116|280139|280143|280144|280149|280155|280157|280158|309388|314061|320009|320493|320507|330874|330883|346751|353088|353089|357035|357037|357051|405022|497058|540686|540748|540776|620709|621706|654177|696310|696430|707057|707058|718592|731907|731912|732073|745880|745883|746041|746043|746048|761372|761376|761504|761508|761510|761511|761518|761520|761527|780466|862909|862910|862911|862912|862913|862914|862915|862916|862917|862918|862919|862920|862921|862922|862923|862924|862925|862926|862927|862928|862929|862930|862931|862932|862933|862934|862935|862936|862937|862938|862939|862940|862941|862942|862943|863390|863391|863392|863393|863394|863395|863396|863397|863398|863399|863400|863401|863402|863403|863404|863405|863406|863407|863408|863409|863410|863411|863412|863413|863414|863415|863416|863417|863418|863419|863420|863421|865044|865045|865046|865102|865103|865104|865105|961860", + "upstreamId": "29578|29598|33855|192407|192764|249573|249574|249575|249576|249577|249578|249579|249580|249679|249680|249681|249682|249683|249684|249685|249688|249689|249691|249694|249695|259645|267151|267281|271754|274805|274810|274811|274812|277638|277645|277650|277651|277652|277667|277671|277672|277673|277674|277675|277685|277686|277693|277696|277707|277720|277723|277724|277742|277744|277747|277748|277781|277785|277786|277792|277793|277794|277795|277802|277808|277809|277811|277812|277814|277818|277819|277824|277827|277828|277836|277838|277839|278632|278634|278635|278636|278641|278642|278647|278649|278650|278654|278655|278660|278661|278663|278667|278669|278670|278671|278674|278675|278677|278681|278682|278683|278685|278688|278689|278691|278706|278713|278715|278717|278728|278729|278732|278737|278751|278753|278760|278762|278763|278764|278765|278768|278769|278777|278778|278781|278782|278783|278785|278787|278790|278791|278793|278795|278796|278797|278798|278800|278802|278803|278805|278810|278811|278812|278815|278816|278817|278819|278822|278823|278824|278827|278828|278829|278832|278833|278834|278839|278840|278847|278872|278874|278875|278876|278878|278881|279961|279968|279970|279974|279975|279986|279987|279994|279995|280018|280028|280029|280031|280033|280034|280035|280036|280037|280038|280040|280041|280042|280043|280065|280073|280082|280084|280098|280100|280101|280104|280106|280116|280139|280143|280144|280149|280155|280157|280158|309388|314061|320009|320493|320507|330874|330883|346751|353088|353089|357035|357037|357051|405022|497058|540686|540748|540776|620709|621706|654177|696310|696430|707057|707058|718592|731907|731912|732073|745880|745883|746041|746043|746048|761372|761376|761504|761508|761510|761511|761518|761520|761527|780466|862909|862910|862911|862912|862913|862914|862915|862916|862917|862918|862919|862920|862921|862922|862923|862924|862925|862926|862927|862928|862929|862930|862931|862932|862933|862934|862935|862936|862937|862938|862939|862940|862941|862942|862943|863390|863391|863392|863393|863394|863395|863396|863397|863398|863399|863400|863401|863402|863403|863404|863405|863406|863407|863408|863409|863410|863411|863412|863413|863414|863415|863416|863417|863418|863419|863420|863421|865044|865045|865046|865102|865103|865104|865105|961860", "text": "Junctional epidermolysis bullosa" }, { - "baseId": "29601|29602|29603|29604|316663|316669|316672|324147|330140|330141|330143|330146|330147|330150|330161|330162|331552|331554|331555|331566|331567|331580|620439|869660|869661|869662|869663|869664|869665|869666|869667|869668|872226|872227", + "upstreamId": "29601|29602|29603|29604|316663|316669|316672|324147|330140|330141|330143|330146|330147|330150|330161|330162|331552|331554|331555|331566|331567|331580|620439|869660|869661|869662|869663|869664|869665|869666|869667|869668|872226|872227", "text": "Lactate dehydrogenase B deficiency" }, { - "baseId": "29605|29606|313482|313484|313490|313498|313501|313504|313512|313513|313517|319675|319681|319682|319684|319686|319720|319721|319724|325801|325802|325814|325834|325846|325848|325850|326868|326870|372321|374007|374008|461354|526157|549649|620397|851835|867701|867702|867703|867704|867705|867706|867707|867710|867711|867712|867713|867714|867715|867716|867717|867718|867719|867720|867721|868634|935454|964911", + "upstreamId": "29605|29606|313482|313484|313490|313498|313501|313504|313512|313513|313517|319675|319681|319682|319684|319686|319720|319721|319724|325801|325802|325814|325834|325846|325848|325850|326868|326870|372321|374007|374008|461354|526157|549649|620397|851835|867701|867702|867703|867704|867705|867706|867707|867710|867711|867712|867713|867714|867715|867716|867717|867718|867719|867720|867721|868634|935454|964911", "text": "Glycogen storage disease XI" }, { - "baseId": "29607|29608|29609|29610|29611|29612|29613|29614|29615|29615|29616|29617|29618|30946|30947|30948|30952|30953|30954|38719|38720|38721|77056|77518|77520|77556|77561|317865|317866|317877|317878|317884|317886|317888|317890|317901|317902|325742|325744|325757|325760|331990|331994|331999|332000|332003|332006|332018|332032|332034|333500|333506|333512|333518|360854|870136|870137|870138|870139|870140|870141|870142|870143|872262", + "upstreamId": "29607|29608|29609|29610|29611|29612|29613|29614|29615|29615|29616|29617|29618|30946|30947|30948|30952|30953|30954|38719|38720|38721|77056|77518|77520|77556|77561|317865|317866|317877|317878|317884|317886|317888|317890|317901|317902|325742|325744|325757|325760|331990|331994|331999|332000|332003|332006|332018|332032|332034|333500|333506|333512|333518|360854|870136|870137|870138|870139|870140|870141|870142|870143|872262", "text": "Bullous ichthyosiform erythroderma" }, { - "baseId": "29615|29619|30950|30951|977257", + "upstreamId": "29615|29619|30950|30951|977257", "text": "Ichthyosis, cyclic, with epidermolytic hyperkeratosis" }, { - "baseId": "29615|29620|29621|29622|29623|539150", + "upstreamId": "29615|29620|29621|29622|29623|539150", "text": "Erythroderma, ichthyosiform, congenital reticular" }, { - "baseId": "29624|29669|29670", + "upstreamId": "29624|29669|29670", "text": "Cirrhosis, cryptogenic" }, { - "baseId": "29624|29669", + "upstreamId": "29624|29669", "text": "Cirrhosis, noncryptogenic, susceptibility to" }, { - "baseId": "29625|29626|29627|29629|29630|29631|29632|29633|29634|29635|29637|29638|260166|508877", + "upstreamId": "29625|29626|29627|29629|29630|29631|29632|29633|29634|29635|29637|29638|260166|508877", "text": "Pachyonychia congenita 2" }, { - "baseId": "29626", + "upstreamId": "29626", "text": "Pachyonychia congenita syndrome" }, { - "baseId": "29628|29629|29630", + "upstreamId": "29628|29629|29630", "text": "Steatocystoma multiplex" }, { - "baseId": "29639|29640|29641|29641|29642|29643|29644|29645|29646|29647|29648|77505|165833|213644|578544", + "upstreamId": "29639|29640|29641|29641|29642|29643|29644|29645|29646|29647|29648|77505|165833|213644|578544", "text": "Pachyonychia congenita 1" }, { - "baseId": "29640|29641|29641|29649|77863|132049", + "upstreamId": "29640|29641|29641|29649|77863|132049", "text": "Palmoplantar keratoderma, nonepidermolytic, focal" }, { - "baseId": "29650|29656|29678|29680|29682|29685|29691|77110|259239|259240|259241|354282|432310", + "upstreamId": "29650|29656|29678|29680|29682|29685|29691|77110|259239|259240|259241|354282|432310", "text": "Epidermolysis bullosa simplex, Koebner type" }, { - "baseId": "29651|29652|29658|29660|29661|29662|29667|29677|29684|29689|34026|260024", + "upstreamId": "29651|29652|29658|29660|29661|29662|29667|29677|29684|29689|34026|260024", "text": "Epidermolysis bullosa simplex Dowling-Meara type" }, { - "baseId": "29651|77095|77110|77120|77121|77131|77161|77172|77174|77179|77180|236895|254617|254618|254619|254620|317780|317783|317788|317792|317796|317797|317799|317801|317804|317805|317806|317814|317816|317817|325682|325688|325689|325698|331905|331909|331911|331912|331913|331914|331927|331928|333432|333436|333437|333440|333443|333444|333449|333456|333460|612096|713585|870102|870103|870104|870105|870106|870107|870108|870109|870110|870111|870112|870113|870114|870115|870116|870117|870118|872259", + "upstreamId": "29651|77095|77110|77120|77121|77131|77161|77172|77174|77179|77180|236895|254617|254618|254619|254620|317780|317783|317788|317792|317796|317797|317799|317801|317804|317805|317806|317814|317816|317817|325682|325688|325689|325698|331905|331909|331911|331912|331913|331914|331927|331928|333432|333436|333437|333440|333443|333444|333449|333456|333460|612096|713585|870102|870103|870104|870105|870106|870107|870108|870109|870110|870111|870112|870113|870114|870115|870116|870117|870118|872259", "text": "Epidermolysis bullosa simplex" }, { - "baseId": "29653|29655|29659|29696|29697|77234|77266|77278|77282", + "upstreamId": "29653|29655|29659|29696|29697|77234|77266|77278|77282", "text": "Epidermolysis bullosa simplex, autosomal recessive" }, { - "baseId": "29659|29679|29680|29681|29683|29690|29696|29780|34026|77123|77195|77198|227396|329900|919771", + "upstreamId": "29659|29679|29680|29681|29683|29690|29696|29780|34026|77123|77195|77198|227396|329900|919771", "text": "Localized epidermolysis bullosa simplex" }, { - "baseId": "29665", + "upstreamId": "29665", "text": "Dermatopathia pigmentosa reticularis" }, { - "baseId": "29668|77648|328354|328355|328356|328358|328361|328364|328365|328369|328372|328374|328375|338262|338266|338278|338280|338282|338283|338291|338294|338301|338305|338307|338308|344363|344366|344368|344369|344370|344378|344379|344382|345799|345802|345803|345804|345807|345813|345815|345816|877404|877405|877406|877407|877408|877409|877410|877411|877412|877413|877414|877415|877416|877417|877418|877419", + "upstreamId": "29668|77648|328354|328355|328356|328358|328361|328364|328365|328369|328372|328374|328375|338262|338266|338278|338280|338282|338283|338291|338294|338301|338305|338307|338308|344363|344366|344368|344369|344370|344378|344379|344382|345799|345802|345803|345804|345807|345813|345815|345816|877404|877405|877406|877407|877408|877409|877410|877411|877412|877413|877414|877415|877416|877417|877418|877419", "text": "White sponge nevus 2" }, { - "baseId": "29671|77645|77646", + "upstreamId": "29671|77645|77646", "text": "Meesmann corneal dystrophy 2" }, { - "baseId": "29672|791259|804902", + "upstreamId": "29672|791259|804902", "text": "Pachyonychia congenita 4" }, { - "baseId": "29673|29674|29675|29676|77473|77482|77483|77485|77486|77488|165831|816294|920318", + "upstreamId": "29673|29674|29675|29676|77473|77482|77483|77485|77486|77488|165831|816294|920318", "text": "Pachyonychia congenita 3" }, { - "baseId": "29686|77132|970970", + "upstreamId": "29686|77132|970970", "text": "Dowling-Degos disease 1" }, { - "baseId": "29687|34026", + "upstreamId": "29687|34026", "text": "Epidermolysis bullosa simplex with mottled pigmentation" }, { - "baseId": "29692", + "upstreamId": "29692", "text": "Epidermolysis bullosa simplex, Dowling-Meara type, with severe palmoplantar keratoderma" }, { - "baseId": "29693", + "upstreamId": "29693", "text": "Epidermolysis bullosa simplex, generalized, with severe palmoplantar keratosis" }, { - "baseId": "29694", + "upstreamId": "29694", "text": "Epidermolysis bullosa simplex with migratory circinate erythema" }, { - "baseId": "29698", + "upstreamId": "29698", "text": "Kallikrein, decreased urinary activity of" }, { - "baseId": "29699", + "upstreamId": "29699", "text": "Soluble interleukin-6 receptor, serum level of, quantitative trait locus" }, { - "baseId": "29699", + "upstreamId": "29699", "text": "Interleukin 6, serum level of, quantitative trait locus" }, { - "baseId": "29701|362909|576133", + "upstreamId": "29701|362909|576133", "text": "Polycythemia vera" }, { - "baseId": "29701", + "upstreamId": "29701", "text": "Budd-Chiari syndrome, susceptibility to, somatic" }, { - "baseId": "29701|38718|138296|576133", + "upstreamId": "29701|38718|138296|576133", "text": "Thrombocythemia 3" }, { - "baseId": "29701|31634|31635|31636|31637|31638|31639|31640|39403|263756|263757|263758|332494|332495|332497|332499|332503|332504|332505|332510|332512|342718|342720|342721|342723|342728|342731|342732|348066|348067|348074|348076|348085|348086|349347|349349|349350|349351|349352|349355|349356|493110|611368|727892|879869|879870|879871|879872|879873|879874|879875|879876|879877|879878|879879|879880|879881|879882|879883|879884|879885|880689|880690", + "upstreamId": "29701|31634|31635|31636|31637|31638|31639|31640|39403|263756|263757|263758|332494|332495|332497|332499|332503|332504|332505|332510|332512|342718|342720|342721|342723|342728|342731|342732|348066|348067|348074|348076|348085|348086|349347|349349|349350|349351|349352|349355|349356|493110|611368|727892|879869|879870|879871|879872|879873|879874|879875|879876|879877|879878|879879|879880|879881|879882|879883|879884|879885|880689|880690", "text": "Primary familial polycythemia due to EPO receptor mutation" }, { - "baseId": "29701|31381|362830|363045|363095|363584|363585|801063|857631", + "upstreamId": "29701|31381|362830|363045|363095|363584|363585|801063|857631", "text": "Myeloproliferative disorder" }, { - "baseId": "29701", + "upstreamId": "29701", "text": "Subacute lymphoid leukemia" }, { - "baseId": "29701|171079", + "upstreamId": "29701|171079", "text": "Polycythemia (disease)" }, { - "baseId": "29703", + "upstreamId": "29703", "text": "ERYTHROCYTOSIS, JAK2-RELATED, SOMATIC" }, { - "baseId": "29704", + "upstreamId": "29704", "text": "Atopy, susceptibility to" }, { - "baseId": "29705|29706", + "upstreamId": "29705|29706", "text": "Atopy, resistance to" }, { - "baseId": "29705", + "upstreamId": "29705", "text": "Acquired immunodeficiency syndrome, slow progression to" }, { - "baseId": "29707|199915|199916|199917|199918|266233|266237|310549|310556|310559|310573|310579|310580|310592|310594|315708|315709|315710|315719|315720|315721|315722|315725|315726|315731|321766|321771|321772|321786|321793|321794|321801|321805|321806|321809|321815|321817|321820|321821|321833|321834|321841|321842|321846|322449|322461|322463|322466|322467|322468|322475|322478|322479|322480|322483|322497|322499|322503|322504|322505|353130|425881|459939|460364|525187|525193|525376|564622|566349|569683|569689|614349|614349|620822|638977|638978|638979|638980|638981|638982|638983|638984|652140|652142|723992|723997|737543|759979|767836|783648|790969|820224|836986|836987|836988|836989|836990|866011|866012|866013|866014|866015|866016|866017|866018|866019|866020|866021|866022|866023|866024|866025|866026|866027|866028|866029|866030|866031|866032|866033|866034|866035|866036|866037|868481|868482|868483|925838|925839|925840|946952|946953|956112|956113", + "upstreamId": "29707|199915|199916|199917|199918|266233|266237|310549|310556|310559|310573|310579|310580|310592|310594|315708|315709|315710|315719|315720|315721|315722|315725|315726|315731|321766|321771|321772|321786|321793|321794|321801|321805|321806|321809|321815|321817|321820|321821|321833|321834|321841|321842|321846|322449|322461|322463|322466|322467|322468|322475|322478|322479|322480|322483|322497|322499|322503|322504|322505|353130|425881|459939|460364|525187|525193|525376|564622|566349|569683|569689|614349|614349|620822|638977|638978|638979|638980|638981|638982|638983|638984|652140|652142|723992|723997|737543|759979|767836|783648|790969|820224|836986|836987|836988|836989|836990|866011|866012|866013|866014|866015|866016|866017|866018|866019|866020|866021|866022|866023|866024|866025|866026|866027|866028|866029|866030|866031|866032|866033|866034|866035|866036|866037|868481|868482|868483|925838|925839|925840|946952|946953|956112|956113", "text": "Interleukin 2 receptor, alpha, deficiency of" }, { - "baseId": "29708", + "upstreamId": "29708", "text": "TYPE 1 DIABETES MELLITUS, INSULIN-DEPENDENT, 10" }, { - "baseId": "29709|614349", + "upstreamId": "29709|614349", "text": "Diabetes mellitus, insulin-dependent, 10" }, { - "baseId": "29710|29713", + "upstreamId": "29710|29713", "text": "Gastric cancer susceptibility after h. pylori infection" }, { - "baseId": "29712", + "upstreamId": "29712", "text": "Allergic rhinitis, susceptibility to" }, { - "baseId": "29713", + "upstreamId": "29713", "text": "Microvascular complications of diabetes 4" }, { - "baseId": "29714|29715|29716|29717|281612|281619|281620|281623|281625|281629|281631|282290|282294|282295|282296|282300|282302|283641|283643|283652|283653|283658|283664|283679|283680|283681|283682|283695|283700|283709|283712|283874|283875|283884|283906|283922|283926|448759|516305|516313|516317|516358|516359|550254|557490|557492|558703|558705|559188|628416|628417|628418|628419|732721|746742|762163|774568|780809|798957|816305|819044|824720|824721|880876|880877|880878|880879|880880|880881|880882|880883|882784|882785|922228|922229|942214|942215|942216|942217", + "upstreamId": "29714|29715|29716|29717|281612|281619|281620|281623|281625|281629|281631|282290|282294|282295|282296|282300|282302|283641|283643|283652|283653|283658|283664|283679|283680|283681|283682|283695|283700|283709|283712|283874|283875|283884|283906|283922|283926|448759|516305|516313|516317|516358|516359|550254|557490|557492|558703|558705|559188|628416|628417|628418|628419|732721|746742|762163|774568|780809|798957|816305|819044|824720|824721|880876|880877|880878|880879|880880|880881|880882|880883|882784|882785|922228|922229|942214|942215|942216|942217", "text": "Osteomyelitis, sterile multifocal, with periostitis and pustulosis" }, { - "baseId": "29718|29722|29723|29724|29726|29731|29733|29734|29735|29736|29743|29746|29747|190228|190728|191864|191865|192203|195858|208628|208629|208630|208634|208636|208637|208639|208640|266492|270523|273448|334529|334531|334532|334533|334537|334540|334542|334544|334546|334548|334556|334557|334558|334561|334574|334575|334577|334580|334582|334585|334587|334591|334593|334595|334603|334604|334608|334611|334614|334616|334631|334632|334648|334652|334655|334664|334665|334666|344387|344388|344391|344402|344403|344404|344415|344416|344419|344427|344429|344436|344438|344443|344445|344450|344451|344455|344457|344461|344463|344466|344468|344470|344472|344473|344474|344475|344483|344484|344486|344495|344496|344498|344500|344502|344504|344506|349475|349476|349478|349480|349481|349483|349484|349486|349487|349488|349490|349492|349493|349496|349499|349500|349502|349503|349504|349506|349509|349512|349514|349519|349522|349523|349526|349529|349530|349537|349538|349540|350477|350479|350480|350483|350484|350487|350489|350491|350493|350495|350496|350497|350502|350506|350507|350511|350514|350517|350519|350520|350523|350526|350531|350536|350539|350540|350543|350544|350546|350547|350549|350550|353528|353529|430269|430271|430272|430276|493723|540035|540035|583525|619930|716760|745301|757309|757316|757317|757318|786303|791962|791963|791964|882612|882613|882614|882615|882616|882617|882618|882619|882620|882621|882622|882623|882624|882625|882626|882627|882628|882629|882630|882631|882632|882633|882634|882635|882636|882637|882638|882639|882640|882641|882642|882643|882644|882645|882646|882647|882648|882649|882650|882651|882652|882653|882654|882655|882656|882657|882658|882659|882660|882661|882662|882663|882664|882665|882666|882667|882668|882669|882670|882671|882672|882673|882674|882675|882676|882677|882678|882954|882955|964527", + "upstreamId": "29718|29722|29723|29724|29726|29731|29733|29734|29735|29736|29743|29746|29747|190228|190728|191864|191865|192203|195858|208628|208629|208630|208634|208636|208637|208639|208640|266492|270523|273448|334529|334531|334532|334533|334537|334540|334542|334544|334546|334548|334556|334557|334558|334561|334574|334575|334577|334580|334582|334585|334587|334591|334593|334595|334603|334604|334608|334611|334614|334616|334631|334632|334648|334652|334655|334664|334665|334666|344387|344388|344391|344402|344403|344404|344415|344416|344419|344427|344429|344436|344438|344443|344445|344450|344451|344455|344457|344461|344463|344466|344468|344470|344472|344473|344474|344475|344483|344484|344486|344495|344496|344498|344500|344502|344504|344506|349475|349476|349478|349480|349481|349483|349484|349486|349487|349488|349490|349492|349493|349496|349499|349500|349502|349503|349504|349506|349509|349512|349514|349519|349522|349523|349526|349529|349530|349537|349538|349540|350477|350479|350480|350483|350484|350487|350489|350491|350493|350495|350496|350497|350502|350506|350507|350511|350514|350517|350519|350520|350523|350526|350531|350536|350539|350540|350543|350544|350546|350547|350549|350550|353528|353529|430269|430271|430272|430276|493723|540035|540035|583525|619930|716760|745301|757309|757316|757317|757318|786303|791962|791963|791964|882612|882613|882614|882615|882616|882617|882618|882619|882620|882621|882622|882623|882624|882625|882626|882627|882628|882629|882630|882631|882632|882633|882634|882635|882636|882637|882638|882639|882640|882641|882642|882643|882644|882645|882646|882647|882648|882649|882650|882651|882652|882653|882654|882655|882656|882657|882658|882659|882660|882661|882662|882663|882664|882665|882666|882667|882668|882669|882670|882671|882672|882673|882674|882675|882676|882677|882678|882954|882955|964527", "text": "Insulin-resistant diabetes mellitus AND acanthosis nigricans" }, { - "baseId": "29719|29720|29721|29725|29728|29732|29738|29740|29741|29742|29744|29745|29746|29749|29750|29753|190228|190728|191864|191865|192203|195858|208629|208630|208634|208636|208637|208639|208640|266492|273448|334529|334531|334532|334533|334537|334540|334542|334544|334546|334548|334556|334557|334558|334561|334574|334575|334577|334580|334582|334585|334587|334591|334593|334595|334603|334604|334608|334611|334614|334616|334631|334632|334648|334652|334655|334664|334665|334666|344387|344388|344391|344402|344403|344404|344415|344416|344419|344427|344429|344436|344438|344443|344445|344450|344451|344455|344457|344461|344463|344466|344468|344470|344472|344473|344474|344475|344483|344484|344486|344495|344496|344498|344500|344502|344504|344506|349475|349476|349478|349480|349481|349483|349484|349486|349487|349488|349490|349492|349493|349496|349499|349500|349502|349503|349504|349506|349509|349512|349514|349519|349522|349523|349526|349529|349530|349537|349538|349540|350477|350479|350480|350483|350484|350487|350489|350491|350493|350495|350496|350497|350502|350506|350507|350511|350514|350517|350519|350520|350523|350526|350531|350536|350539|350540|350543|350544|350546|350547|350549|350550|353528|353529|430269|430271|430272|430276|493723|495914|495915|540035|540035|583525|584427|619930|619931|716760|745301|757309|757316|757317|757318|786303|882612|882613|882614|882615|882616|882617|882618|882619|882620|882621|882622|882623|882624|882625|882626|882627|882628|882629|882630|882631|882632|882633|882634|882635|882636|882637|882638|882639|882640|882641|882642|882643|882644|882645|882646|882647|882648|882649|882650|882651|882652|882653|882654|882655|882656|882657|882658|882659|882660|882661|882662|882663|882664|882665|882666|882667|882668|882669|882670|882671|882672|882673|882674|882675|882676|882677|882678|882954|882955|904884", + "upstreamId": "29719|29720|29721|29725|29728|29732|29738|29740|29741|29742|29744|29745|29746|29749|29750|29753|190228|190728|191864|191865|192203|195858|208629|208630|208634|208636|208637|208639|208640|266492|273448|334529|334531|334532|334533|334537|334540|334542|334544|334546|334548|334556|334557|334558|334561|334574|334575|334577|334580|334582|334585|334587|334591|334593|334595|334603|334604|334608|334611|334614|334616|334631|334632|334648|334652|334655|334664|334665|334666|344387|344388|344391|344402|344403|344404|344415|344416|344419|344427|344429|344436|344438|344443|344445|344450|344451|344455|344457|344461|344463|344466|344468|344470|344472|344473|344474|344475|344483|344484|344486|344495|344496|344498|344500|344502|344504|344506|349475|349476|349478|349480|349481|349483|349484|349486|349487|349488|349490|349492|349493|349496|349499|349500|349502|349503|349504|349506|349509|349512|349514|349519|349522|349523|349526|349529|349530|349537|349538|349540|350477|350479|350480|350483|350484|350487|350489|350491|350493|350495|350496|350497|350502|350506|350507|350511|350514|350517|350519|350520|350523|350526|350531|350536|350539|350540|350543|350544|350546|350547|350549|350550|353528|353529|430269|430271|430272|430276|493723|495914|495915|540035|540035|583525|584427|619930|619931|716760|745301|757309|757316|757317|757318|786303|882612|882613|882614|882615|882616|882617|882618|882619|882620|882621|882622|882623|882624|882625|882626|882627|882628|882629|882630|882631|882632|882633|882634|882635|882636|882637|882638|882639|882640|882641|882642|882643|882644|882645|882646|882647|882648|882649|882650|882651|882652|882653|882654|882655|882656|882657|882658|882659|882660|882661|882662|882663|882664|882665|882666|882667|882668|882669|882670|882671|882672|882673|882674|882675|882676|882677|882678|882954|882955|904884", "text": "Leprechaunism syndrome" }, { - "baseId": "29726|29748|263347|553407|553409", + "upstreamId": "29726|29748|263347|553407|553409", "text": "Insulin resistance" }, { - "baseId": "29729", + "upstreamId": "29729", "text": "Insulin-resistant diabetes mellitus" }, { - "baseId": "29730|29731|29746|29751|29752|190228|190728|191864|191865|192203|195858|205413|208629|208630|208634|208636|208637|208639|208640|266492|273448|334529|334531|334532|334533|334537|334540|334542|334544|334546|334548|334556|334557|334558|334561|334574|334575|334577|334580|334582|334585|334587|334591|334593|334595|334603|334604|334608|334611|334614|334616|334631|334632|334648|334652|334655|334664|334665|334666|344387|344388|344391|344402|344403|344404|344415|344416|344419|344427|344429|344436|344438|344443|344445|344450|344451|344455|344457|344461|344463|344466|344468|344470|344472|344473|344474|344475|344483|344484|344486|344495|344496|344498|344500|344502|344504|344506|349475|349476|349478|349480|349481|349483|349484|349486|349487|349488|349490|349492|349493|349496|349499|349500|349502|349503|349504|349506|349509|349512|349514|349519|349522|349523|349526|349529|349530|349537|349538|349540|350477|350479|350480|350483|350484|350487|350489|350491|350493|350495|350496|350497|350502|350506|350507|350511|350514|350517|350519|350520|350523|350526|350531|350536|350539|350540|350543|350544|350546|350547|350549|350550|353528|353529|423235|430269|430271|430272|430276|493723|540035|540035|583525|619930|716760|745301|757309|757316|757317|757318|786303|882612|882613|882614|882615|882616|882617|882618|882619|882620|882621|882622|882623|882624|882625|882626|882627|882628|882629|882630|882631|882632|882633|882634|882635|882636|882637|882638|882639|882640|882641|882642|882643|882644|882645|882646|882647|882648|882649|882650|882651|882652|882653|882654|882655|882656|882657|882658|882659|882660|882661|882662|882663|882664|882665|882666|882667|882668|882669|882670|882671|882672|882673|882674|882675|882676|882677|882678|882954|882955", + "upstreamId": "29730|29731|29746|29751|29752|190228|190728|191864|191865|192203|195858|205413|208629|208630|208634|208636|208637|208639|208640|266492|273448|334529|334531|334532|334533|334537|334540|334542|334544|334546|334548|334556|334557|334558|334561|334574|334575|334577|334580|334582|334585|334587|334591|334593|334595|334603|334604|334608|334611|334614|334616|334631|334632|334648|334652|334655|334664|334665|334666|344387|344388|344391|344402|344403|344404|344415|344416|344419|344427|344429|344436|344438|344443|344445|344450|344451|344455|344457|344461|344463|344466|344468|344470|344472|344473|344474|344475|344483|344484|344486|344495|344496|344498|344500|344502|344504|344506|349475|349476|349478|349480|349481|349483|349484|349486|349487|349488|349490|349492|349493|349496|349499|349500|349502|349503|349504|349506|349509|349512|349514|349519|349522|349523|349526|349529|349530|349537|349538|349540|350477|350479|350480|350483|350484|350487|350489|350491|350493|350495|350496|350497|350502|350506|350507|350511|350514|350517|350519|350520|350523|350526|350531|350536|350539|350540|350543|350544|350546|350547|350549|350550|353528|353529|423235|430269|430271|430272|430276|493723|540035|540035|583525|619930|716760|745301|757309|757316|757317|757318|786303|882612|882613|882614|882615|882616|882617|882618|882619|882620|882621|882622|882623|882624|882625|882626|882627|882628|882629|882630|882631|882632|882633|882634|882635|882636|882637|882638|882639|882640|882641|882642|882643|882644|882645|882646|882647|882648|882649|882650|882651|882652|882653|882654|882655|882656|882657|882658|882659|882660|882661|882662|882663|882664|882665|882666|882667|882668|882669|882670|882671|882672|882673|882674|882675|882676|882677|882678|882954|882955", "text": "Pineal hyperplasia AND diabetes mellitus syndrome" }, { - "baseId": "29746|94325|252632|254638|254639|254641|254642|254643|254645|413341|413342|462372|462373|463084|463089|513322|527296|527299|527302|527304|527581|527586|550572|566965|566973|568139|568140|571952|571958|641296|641297|641298|641299|641300|641301|641302|652259|678969|693249|693250|693251|695576|769240|778103|820509|840125|840126|840127|840128|840129|840130|840131|840132|840133|840134|840135|840136|840137|840138|851517|926686|926687|926688|941037|948112|948113|948114|948115|956910", + "upstreamId": "29746|94325|252632|254638|254639|254641|254642|254643|254645|413341|413342|462372|462373|463084|463089|513322|527296|527299|527302|527304|527581|527586|550572|566965|566973|568139|568140|571952|571958|641296|641297|641298|641299|641300|641301|641302|652259|678969|693249|693250|693251|695576|769240|778103|820509|840125|840126|840127|840128|840129|840130|840131|840132|840133|840134|840135|840136|840137|840138|851517|926686|926687|926688|941037|948112|948113|948114|948115|956910", "text": "Bailey-Bloch congenital myopathy" }, { - "baseId": "29747|208635|266492|430269|493723|540035", + "upstreamId": "29747|208635|266492|430269|493723|540035", "text": "Hyperinsulinemic hypoglycemia familial 5" }, { - "baseId": "29755|29756|169178|169179|169181|169182|169184|208230|208231|208232|208233|429747|550029|643629|643630|643631|714686|714687|726342|726343|739875|770416|776102|779729|816480|842801|842802|920348|927460|927461|937116|949058", + "upstreamId": "29755|29756|169178|169179|169181|169182|169184|208230|208231|208232|208233|429747|550029|643629|643630|643631|714686|714687|726342|726343|739875|770416|776102|779729|816480|842801|842802|920348|927460|927461|937116|949058", "text": "D-2-hydroxyglutaric aciduria 2" }, { - "baseId": "29757", + "upstreamId": "29757", "text": "Kaposi sarcoma, susceptibility to" }, { - "baseId": "29757", + "upstreamId": "29757", "text": "Crohn disease-associated growth failure, susceptibility to" }, { - "baseId": "29757", + "upstreamId": "29757", "text": "Intracranial hemorrhage in brain cerebrovascular malformations, susceptibility to" }, { - "baseId": "29758", + "upstreamId": "29758", "text": "INTERLEUKIN 6 POLYMORPHISM" }, { - "baseId": "29761", + "upstreamId": "29761", "text": "Tsc2 angiomyolipomas, renal, modifier of" }, { - "baseId": "29763", + "upstreamId": "29763", "text": "Acquired immunodeficiency syndrome, rapid progression to" }, { - "baseId": "29764", + "upstreamId": "29764", "text": "Hepatitis C virus infection, response to therapy of" }, { - "baseId": "29765|29766|29767|45039|45859|116913|116928|116929|116932|116941|116942|438866|469579|469583|471138|471141|533796|533806|533822|533836|534328|571512|573068|573070|573074|573763|624690|648936|648937|648938|648939|648940|648941|653244|728865|728866|742595|757752|757753|848727|848728|848729|848730|853003|929306|929307|939088|939089|939090|951213|975708|975724", + "upstreamId": "29765|29766|29767|45039|45859|116913|116928|116929|116932|116941|116942|438866|469579|469583|471138|471141|533796|533806|533822|533836|534328|571512|573068|573070|573074|573763|624690|648936|648937|648938|648939|648940|648941|653244|728865|728866|742595|757752|757753|848727|848728|848729|848730|853003|929306|929307|939088|939089|939090|951213|975708|975724", "text": "Immunodeficiency 28" }, { - "baseId": "29768|29769|29770|29771|29772|29773|29774|29775|29776|29777|29778|29781|29782|29783|29784|205186|205421|227223|227396|256412|256413|282905|282907|282917|282918|282924|282925|282930|282931|282934|282938|282948|282953|282955|283691|283693|283694|283697|283698|283699|283701|283704|283705|283735|283739|283740|283741|283742|283745|283746|283747|283755|283763|283766|283767|283769|285237|285262|285264|285266|285271|285272|285274|285275|285278|285279|285280|285283|285315|285316|285317|285334|285342|285343|285344|285353|285354|285366|285371|285372|285374|285389|285786|285795|285796|285797|285798|285801|285802|285803|285804|285805|285807|285809|285812|285816|285817|329836|329856|329864|329866|329867|329869|329872|329873|329877|329878|329882|329885|329886|329887|329894|329896|329900|329901|329904|329905|329907|329908|329921|329922|329925|329928|329929|329930|329940|329941|340158|340160|340162|340163|340165|340171|340174|340176|340179|340181|340187|340197|340198|340201|340203|340205|340210|340212|340214|345853|345857|345865|345868|345869|345870|345871|345873|345876|345877|345880|345885|345886|345888|345889|345890|345891|345895|345902|345903|345905|345906|345909|345910|345914|345917|345918|345923|345929|345931|345935|347222|347223|347230|347231|347232|347235|347238|347241|347242|347243|347250|347251|347253|347254|347256|347258|347259|347264|347265|347272|347276|347277|347280|347282|389207|468839|582781|612187|620036|620037|620889|620890|704376|715705|715707|719409|727435|727437|732940|741024|741028|741029|741031|741033|741034|741036|743848|746949|756128|762422|791827|878434|878435|878436|878437|878438|878439|878440|878441|878442|878443|878444|878445|878446|878447|878448|878449|878450|878451|878452|878453|878454|878455|878456|878457|878458|878459|878460|878461|878462|878463|878464|878465|878466|878467|878468|878469|878470|878471|878472|878473|878474|878475|878476|878477|878478|878479|878480|878481|878482|878483|878484|878485|878486|880579|880580|880581|880582|880583|880584|880585|880586|880587|880588|880589|880590|881587|881588|881589|881590|881591|881592|881593|881594|881595|881596|881597|881598|881599|881600|881601|881602|881603|881604|881605|881606|881607|881608|881609|881610|881611|881612|881613|881614|881615|881616|881617|882848|882849|882850|882851|882852|882853|882854|904220|962182|962192", + "upstreamId": "29768|29769|29770|29771|29772|29773|29774|29775|29776|29777|29778|29781|29782|29783|29784|205186|205421|227223|227396|256412|256413|282905|282907|282917|282918|282924|282925|282930|282931|282934|282938|282948|282953|282955|283691|283693|283694|283697|283698|283699|283701|283704|283705|283735|283739|283740|283741|283742|283745|283746|283747|283755|283763|283766|283767|283769|285237|285262|285264|285266|285271|285272|285274|285275|285278|285279|285280|285283|285315|285316|285317|285334|285342|285343|285344|285353|285354|285366|285371|285372|285374|285389|285786|285795|285796|285797|285798|285801|285802|285803|285804|285805|285807|285809|285812|285816|285817|329836|329856|329864|329866|329867|329869|329872|329873|329877|329878|329882|329885|329886|329887|329894|329896|329900|329901|329904|329905|329907|329908|329921|329922|329925|329928|329929|329930|329940|329941|340158|340160|340162|340163|340165|340171|340174|340176|340179|340181|340187|340197|340198|340201|340203|340205|340210|340212|340214|345853|345857|345865|345868|345869|345870|345871|345873|345876|345877|345880|345885|345886|345888|345889|345890|345891|345895|345902|345903|345905|345906|345909|345910|345914|345917|345918|345923|345929|345931|345935|347222|347223|347230|347231|347232|347235|347238|347241|347242|347243|347250|347251|347253|347254|347256|347258|347259|347264|347265|347272|347276|347277|347280|347282|389207|468839|582781|612187|620036|620037|620889|620890|704376|715705|715707|719409|727435|727437|732940|741024|741028|741029|741031|741033|741034|741036|743848|746949|756128|762422|791827|878434|878435|878436|878437|878438|878439|878440|878441|878442|878443|878444|878445|878446|878447|878448|878449|878450|878451|878452|878453|878454|878455|878456|878457|878458|878459|878460|878461|878462|878463|878464|878465|878466|878467|878468|878469|878470|878471|878472|878473|878474|878475|878476|878477|878478|878479|878480|878481|878482|878483|878484|878485|878486|880579|880580|880581|880582|880583|880584|880585|880586|880587|880588|880589|880590|881587|881588|881589|881590|881591|881592|881593|881594|881595|881596|881597|881598|881599|881600|881601|881602|881603|881604|881605|881606|881607|881608|881609|881610|881611|881612|881613|881614|881615|881616|881617|882848|882849|882850|882851|882852|882853|882854|904220|962182|962192", "text": "Epidermolysis bullosa junctionalis with pyloric atresia" }, { - "baseId": "29785|29786|214743|214744|214745|410739|425229|439174|469334|470313|470321|470322|470329|470331|470868|470871|470873|471377|533431|533473|533474|533479|533519|533521|533526|533528|533529|533530|533531|533537|534039|534043|534046|534056|571173|571174|572870|572874|573477|573482|573484|648602|648603|648604|648605|648606|653090|653207|653540|653644|653645|716897|716898|742314|773029|773031|780041|791974|791975|848278|848279|848280|848281|848282|851845|929152|938930|938931|940500|951030|951031|951032", + "upstreamId": "29785|29786|214743|214744|214745|410739|425229|439174|469334|470313|470321|470322|470329|470331|470868|470871|470873|471377|533431|533473|533474|533479|533519|533521|533526|533528|533529|533530|533531|533537|534039|534043|534046|534056|571173|571174|572870|572874|573477|573482|573484|648602|648603|648604|648605|648606|653090|653207|653540|653644|653645|716897|716898|742314|773029|773031|780041|791974|791975|848278|848279|848280|848281|848282|851845|929152|938930|938931|940500|951030|951031|951032", "text": "Inosine triphosphatase deficiency" }, { - "baseId": "29785|29786", + "upstreamId": "29785|29786", "text": "peginterferon alfa-2b and ribavirin response - Toxicity/ADR" }, { - "baseId": "29785", + "upstreamId": "29785", "text": "interferon alfa-2b, recombinant and ribavirin response - Dosage, Toxicity/ADR" }, { - "baseId": "29786", + "upstreamId": "29786", "text": "azathioprine response - Toxicity/ADR" }, { - "baseId": "29787|29788|29789", + "upstreamId": "29787|29788|29789", "text": "INSULIN-LIKE GROWTH FACTOR II POLYMORPHISM" }, { - "baseId": "29790", + "upstreamId": "29790", "text": "SUPEROXIDE DISMUTASE 2 POLYMORPHISM" }, { - "baseId": "29790", + "upstreamId": "29790", "text": "Microvascular complications of diabetes 6" }, { - "baseId": "29790|339355", + "upstreamId": "29790|339355", "text": "cyclophosphamide response - Efficacy" }, { - "baseId": "29791|29800|29823|34335|194306|196284|260865|260866|260867|260868|260869|260870|260871|260872|260873|260874|260875|260876|260877|260878|260879|260880|260881|260882|260883|260884|260885|260886|260887|260888|260889|260890|260891|260892|260893|260894|260895|540449", + "upstreamId": "29791|29800|29823|34335|194306|196284|260865|260866|260867|260868|260869|260870|260871|260872|260873|260874|260875|260876|260877|260878|260879|260880|260881|260882|260883|260884|260885|260886|260887|260888|260889|260890|260891|260892|260893|260894|260895|540449", "text": "Motor neuron disease" }, { - "baseId": "29805|29806|29822", + "upstreamId": "29805|29806|29822", "text": "Amyotrophic lateral sclerosis 1, autosomal recessive" }, { - "baseId": "29805|101563|138100|138105|138106|138109|253530|253535|257862|275813|275835|275846|275852|275853|275859|275867|275874|275875|275885|275924|275994|276114|301223|307148|308234|311342|312615|312633|316839|316886|317274|318533|318542|319067|325125|325141|334817|335933|335979|336000|339510|339513|339516|341312|342768|342779|342814|342820|345642|345650|345651|345654|345735|345740|345745|345747|349006|349009|349010|350179|350191|350195|350203|350220|351241|351252|351255|351273|351279|352384|352385|352933|352934|352935|352936|353027|353589", + "upstreamId": "29805|101563|138100|138105|138106|138109|253530|253535|257862|275813|275835|275846|275852|275853|275859|275867|275874|275875|275885|275924|275994|276114|301223|307148|308234|311342|312615|312633|316839|316886|317274|318533|318542|319067|325125|325141|334817|335933|335979|336000|339510|339513|339516|341312|342768|342779|342814|342820|345642|345650|345651|345654|345735|345740|345745|345747|349006|349009|349010|350179|350191|350195|350203|350220|351241|351252|351255|351273|351279|352384|352385|352933|352934|352935|352936|353027|353589", "text": "Amyotrophic Lateral Sclerosis, Dominant" }, { - "baseId": "29826|29827|29828|132700|192256|272303|315777|315778|315783|315785|315786|315790|315792|315793|315794|315797|315798|315799|315806|315807|315811|315812|315820|315821|315822|315823|315825|315826|315837|322844|322847|322859|322871|322872|322875|322881|322885|322897|322899|322903|322905|322906|322907|322911|322912|322913|322919|322925|328881|328883|328889|328890|328907|328913|328921|328922|328925|328929|328945|328946|328948|328951|328959|328960|328967|328970|328971|328977|328981|328982|328986|328988|330126|330127|330131|330137|330139|330142|330151|330159|330163|330166|330175|330183|330185|330186|330187|330189|702060|738394|805022|818294|869086|869087|869088|869089|869090|869091|869092|869093|869094|869095|869096|869097|869098|869099|869100|869101|869102|869103|869104|869105|869106|869107|869108|869109|869110|869111|869112|869113|869114|869115|869116|869117|869118|869119|869120|869121|869122|869123|869124|869125|869126|869127|869128|869129|869130|869131|869132|869133|869134|869135|869136|869137|869138|869139", + "upstreamId": "29826|29827|29828|132700|192256|272303|315777|315778|315783|315785|315786|315790|315792|315793|315794|315797|315798|315799|315806|315807|315811|315812|315820|315821|315822|315823|315825|315826|315837|322844|322847|322859|322871|322872|322875|322881|322885|322897|322899|322903|322905|322906|322907|322911|322912|322913|322919|322925|328881|328883|328889|328890|328907|328913|328921|328922|328925|328929|328945|328946|328948|328951|328959|328960|328967|328970|328971|328977|328981|328982|328986|328988|330126|330127|330131|330137|330139|330142|330151|330159|330163|330166|330175|330183|330185|330186|330187|330189|702060|738394|805022|818294|869086|869087|869088|869089|869090|869091|869092|869093|869094|869095|869096|869097|869098|869099|869100|869101|869102|869103|869104|869105|869106|869107|869108|869109|869110|869111|869112|869113|869114|869115|869116|869117|869118|869119|869120|869121|869122|869123|869124|869125|869126|869127|869128|869129|869130|869131|869132|869133|869134|869135|869136|869137|869138|869139", "text": "Growth delay due to insulin-like growth factor type 1 deficiency" }, { - "baseId": "29829|29830|29831|29832|29833|190981|191348|191773|192262|192729|192731|195269|196202|265408|266452|266569|268529|268807|271673|323603|323611|323612|323619|323620|323622|323624|323633|323634|323636|323642|323643|323646|323648|323657|323659|323660|323663|323666|323670|323672|323673|323675|323678|323679|323680|323682|323684|323687|323691|323709|323712|323717|323718|323719|323720|323728|323735|323741|323755|323756|323762|323764|323766|323774|323775|323786|323790|323791|323794|323798|323801|323802|323805|323806|323810|323811|323812|323816|323819|323820|323821|323829|323835|323839|323840|323842|323844|333329|333338|333339|333341|333342|333350|333351|333355|333357|333359|333360|333374|333376|333380|333381|333390|333392|333393|333399|333401|333404|333408|333412|333421|333423|333428|333429|333431|333433|333439|333445|333447|333450|333451|333463|333465|333467|333472|333475|333486|333490|333495|333502|333509|333511|333514|333517|333523|333525|333528|333529|340116|340117|340118|340119|340124|340126|340127|340129|340132|340133|340137|340138|340139|340143|340144|340149|340150|340157|340161|340164|340166|340167|340168|340169|340170|340172|340177|340178|340184|340185|340186|340188|340190|340195|340196|340200|340202|340204|340207|340209|340215|340216|340218|340220|340224|340225|340226|340230|340238|340239|340244|340246|340248|340249|340250|340251|340252|340253|340254|340255|340256|340257|341556|341557|341561|341562|341564|341566|341567|341569|341572|341573|341575|341577|341578|341584|341586|341588|341590|341591|341594|341595|341596|341599|341601|341602|341604|341605|341612|341614|341615|341621|341624|341625|341626|341627|341628|341635|341636|341638|341639|341641|341643|341644|341649|341651|341653|353334|353335|440330|440331|440332|440333|489117|492694|493391|538449|587925|589734|622430|623654|623655|623656|623657|623658|623659|623660|623661|623662|726370|726372|726374|731034|739904|739908|744934|754822|754825|770461|779744|785080|788893|874336|874337|874338|874339|874340|874341|874342|874343|874344|874345|874346|874347|874348|874349|874350|874351|874352|874353|874354|874355|874356|874357|874358|874359|874360|874361|874362|874363|874364|874365|874366|874367|874368|874369|874370|874371|874372|874373|874374|874375|874376|874377|874378|874379|874380|874381|874382|874383|874384|874385|874386|874387|874388|874389|874390|874391|874392|874393|874394|874395|874396|874397|874398|874399|874400|874401|874402|874403|874404|874405|874406|874407|874408|874409|874410|874411|874412|874413|874414|874415|874416|874417|874418|874419|874420|874421|874422|874423|874424|874425|874426|874427|874428|874429|874430|874431|874432|874433|874434|874435|874436|874437|874438|874439|874440|874441|874442|874443|874444|874445|874446|874447|874448|874449|874450|874451|874452|874453|874454|874455|874456|874457|874458|874459|874460|874461|874462|874463|874464|874465|874466|874467|874468|874469|874470|874471|874472|874473|874474|874475|874476|874477|874478|874479|874480|874481|874482|874483|876597|876598|876599|876600|876601|919605|961325|961656|964437|964438|964439|965743", + "upstreamId": "29829|29830|29831|29832|29833|190981|191348|191773|192262|192729|192731|195269|196202|265408|266452|266569|268529|268807|271673|323603|323611|323612|323619|323620|323622|323624|323633|323634|323636|323642|323643|323646|323648|323657|323659|323660|323663|323666|323670|323672|323673|323675|323678|323679|323680|323682|323684|323687|323691|323709|323712|323717|323718|323719|323720|323728|323735|323741|323755|323756|323762|323764|323766|323774|323775|323786|323790|323791|323794|323798|323801|323802|323805|323806|323810|323811|323812|323816|323819|323820|323821|323829|323835|323839|323840|323842|323844|333329|333338|333339|333341|333342|333350|333351|333355|333357|333359|333360|333374|333376|333380|333381|333390|333392|333393|333399|333401|333404|333408|333412|333421|333423|333428|333429|333431|333433|333439|333445|333447|333450|333451|333463|333465|333467|333472|333475|333486|333490|333495|333502|333509|333511|333514|333517|333523|333525|333528|333529|340116|340117|340118|340119|340124|340126|340127|340129|340132|340133|340137|340138|340139|340143|340144|340149|340150|340157|340161|340164|340166|340167|340168|340169|340170|340172|340177|340178|340184|340185|340186|340188|340190|340195|340196|340200|340202|340204|340207|340209|340215|340216|340218|340220|340224|340225|340226|340230|340238|340239|340244|340246|340248|340249|340250|340251|340252|340253|340254|340255|340256|340257|341556|341557|341561|341562|341564|341566|341567|341569|341572|341573|341575|341577|341578|341584|341586|341588|341590|341591|341594|341595|341596|341599|341601|341602|341604|341605|341612|341614|341615|341621|341624|341625|341626|341627|341628|341635|341636|341638|341639|341641|341643|341644|341649|341651|341653|353334|353335|440330|440331|440332|440333|489117|492694|493391|538449|587925|589734|622430|623654|623655|623656|623657|623658|623659|623660|623661|623662|726370|726372|726374|731034|739904|739908|744934|754822|754825|770461|779744|785080|788893|874336|874337|874338|874339|874340|874341|874342|874343|874344|874345|874346|874347|874348|874349|874350|874351|874352|874353|874354|874355|874356|874357|874358|874359|874360|874361|874362|874363|874364|874365|874366|874367|874368|874369|874370|874371|874372|874373|874374|874375|874376|874377|874378|874379|874380|874381|874382|874383|874384|874385|874386|874387|874388|874389|874390|874391|874392|874393|874394|874395|874396|874397|874398|874399|874400|874401|874402|874403|874404|874405|874406|874407|874408|874409|874410|874411|874412|874413|874414|874415|874416|874417|874418|874419|874420|874421|874422|874423|874424|874425|874426|874427|874428|874429|874430|874431|874432|874433|874434|874435|874436|874437|874438|874439|874440|874441|874442|874443|874444|874445|874446|874447|874448|874449|874450|874451|874452|874453|874454|874455|874456|874457|874458|874459|874460|874461|874462|874463|874464|874465|874466|874467|874468|874469|874470|874471|874472|874473|874474|874475|874476|874477|874478|874479|874480|874481|874482|874483|876597|876598|876599|876600|876601|919605|961325|961656|964437|964438|964439|965743", "text": "Growth delay due to insulin-like growth factor I resistance" }, { - "baseId": "29839|29840|225849|259766|440803|508732|511499|550873|793021|970770", + "upstreamId": "29839|29840|225849|259766|440803|508732|511499|550873|793021|970770", "text": "Spinocerebellar Ataxia Type 15" }, { - "baseId": "29841|29842|137577|467196|468149|531447|531451|569477|572001|574566|614442|646384|646385|646386|646387|646388|704283|727343|731174|740938|756022|760470|779824|845847|845848|845849|928438|938117|950134|958237", + "upstreamId": "29841|29842|137577|467196|468149|531447|531451|569477|572001|574566|614442|646384|646385|646386|646387|646388|704283|727343|731174|740938|756022|760470|779824|845847|845848|845849|928438|938117|950134|958237", "text": "Agammaglobulinemia 6, autosomal recessive" }, { - "baseId": "29843", + "upstreamId": "29843", "text": "IMMUNOGLOBULIN KAPPA LIGHT CHAIN POLYMORPHISM Inv1" }, { - "baseId": "29844", + "upstreamId": "29844", "text": "IMMUNOGLOBULIN KAPPA LIGHT CHAIN POLYMORPHISM Inv2" }, { - "baseId": "29845", + "upstreamId": "29845", "text": "IMMUNOGLOBULIN KAPPA LIGHT CHAIN POLYMORPHISM Inv3" }, { - "baseId": "29846", + "upstreamId": "29846", "text": "Atopic asthma, susceptibility to" }, { - "baseId": "29847", + "upstreamId": "29847", "text": "Immunoglobulin IgG2 deficiency" }, { - "baseId": "29853|29854|48029|48031|194358|247051|266227|269232|270570|312436|312438|312439|312443|312453|312454|312455|312459|312460|312461|312465|318321|318324|318325|318326|318338|318353|318356|318357|318358|318359|318360|318366|324452|324454|324456|324465|324468|324471|324473|324476|324477|324478|324483|324484|324491|324507|324509|324511|324512|324516|324517|325206|325207|325208|325209|325211|325215|325216|325226|325227|325241|460898|460899|460914|460933|460942|461229|461716|461720|490830|491185|525919|525921|525924|525995|526003|526004|526079|526083|526086|526417|526420|564442|567052|570306|570308|584147|639722|639723|639724|639725|639726|639727|639728|639729|639730|639731|639732|639733|639734|639735|712626|724210|724211|724212|737750|737751|737752|752446|752447|768220|791102|818393|818394|838005|838006|838007|838008|838009|838010|838011|838012|838013|838014|838015|838016|838017|838018|867068|867069|867070|867071|867072|867073|867074|867075|867076|867077|867078|867079|867080|867081|867082|867083|867084|868605|926131|926132|935401|935402|947330|947331|947332|956394|956395|956396", + "upstreamId": "29853|29854|48029|48031|194358|247051|266227|269232|270570|312436|312438|312439|312443|312453|312454|312455|312459|312460|312461|312465|318321|318324|318325|318326|318338|318353|318356|318357|318358|318359|318360|318366|324452|324454|324456|324465|324468|324471|324473|324476|324477|324478|324483|324484|324491|324507|324509|324511|324512|324516|324517|325206|325207|325208|325209|325211|325215|325216|325226|325227|325241|460898|460899|460914|460933|460942|461229|461716|461720|490830|491185|525919|525921|525924|525995|526003|526004|526079|526083|526086|526417|526420|564442|567052|570306|570308|584147|639722|639723|639724|639725|639726|639727|639728|639729|639730|639731|639732|639733|639734|639735|712626|724210|724211|724212|737750|737751|737752|752446|752447|768220|791102|818393|818394|838005|838006|838007|838008|838009|838010|838011|838012|838013|838014|838015|838016|838017|838018|867068|867069|867070|867071|867072|867073|867074|867075|867076|867077|867078|867079|867080|867081|867082|867083|867084|868605|926131|926132|935401|935402|947330|947331|947332|956394|956395|956396", "text": "Inflammatory bowel disease 28, autosomal recessive" }, { - "baseId": "29856|29857|29858|29859|29860|29861|48057|48057|131928|131928|190331|192273|193473|237026|249407|249408|249409|269259|269259|271648|271648|276509|276510|276511|276512|276530|276531|276532|276534|276535|276538|276541|276542|276543|276543|276551|276554|276558|276558|276562|276562|276571|276572|276742|276747|276749|276757|276759|276760|276768|276770|276773|276774|276782|276784|276785|276793|276794|276794|276800|276807|276807|276814|276816|276824|276825|276825|276829|276830|276830|276834|277325|277335|277338|277339|277340|277342|277345|277348|277350|277354|277355|277361|277364|277369|277373|277373|277374|277374|277381|277381|277382|277382|277384|277413|277415|277417|277418|277419|277437|277438|277439|277440|277442|277442|277448|277450|277450|277451|277457|277464|277464|277465|277465|277470|364461|364502|404940|447149|447303|511176|515098|515130|515133|515148|515152|515236|515244|515245|515250|556606|556608|556610|556661|556663|556665|556667|558134|558136|626873|626873|626874|626875|626876|626877|626878|626879|626880|626881|626882|626883|626884|626885|626886|626887|626888|626889|626890|626891|626892|650630|690363|690364|690367|690369|690371|690372|690374|695001|696128|696131|696132|696133|718251|729922|743713|777034|780340|789849|789850|789851|794432|794433|822768|822769|822770|822771|822772|822773|822774|822775|822776|822777|822778|822779|822780|822781|862359|862360|862361|862362|862363|862364|862365|862366|862367|862368|862369|862370|862371|862372|862373|862374|862375|862376|862377|862378|862379|862380|862381|862382|862383|862384|862385|862386|862387|862388|862389|862390|862391|862392|862393|862394|862395|862396|864984|864985|864986|864987|864988|921660|921661|921662|921663|930055|930056|930057|941473|941474|941475|941476|941477|941478|941479|941480|941481|941482|941483|941484|941485|941486|941487|952084|952085|952086|952087|952088|952089|959522|980436", + "upstreamId": "29856|29857|29858|29859|29860|29861|48057|48057|131928|131928|190331|192273|193473|237026|249407|249408|249409|269259|269259|271648|271648|276509|276510|276511|276512|276530|276531|276532|276534|276535|276538|276541|276542|276543|276543|276551|276554|276558|276558|276562|276562|276571|276572|276742|276747|276749|276757|276759|276760|276768|276770|276773|276774|276782|276784|276785|276793|276794|276794|276800|276807|276807|276814|276816|276824|276825|276825|276829|276830|276830|276834|277325|277335|277338|277339|277340|277342|277345|277348|277350|277354|277355|277361|277364|277369|277373|277373|277374|277374|277381|277381|277382|277382|277384|277413|277415|277417|277418|277419|277437|277438|277439|277440|277442|277442|277448|277450|277450|277451|277457|277464|277464|277465|277465|277470|364461|364502|404940|447149|447303|511176|515098|515130|515133|515148|515152|515236|515244|515245|515250|556606|556608|556610|556661|556663|556665|556667|558134|558136|626873|626873|626874|626875|626876|626877|626878|626879|626880|626881|626882|626883|626884|626885|626886|626887|626888|626889|626890|626891|626892|650630|690363|690364|690367|690369|690371|690372|690374|695001|696128|696131|696132|696133|718251|729922|743713|777034|780340|789849|789850|789851|794432|794433|822768|822769|822770|822771|822772|822773|822774|822775|822776|822777|822778|822779|822780|822781|862359|862360|862361|862362|862363|862364|862365|862366|862367|862368|862369|862370|862371|862372|862373|862374|862375|862376|862377|862378|862379|862380|862381|862382|862383|862384|862385|862386|862387|862388|862389|862390|862391|862392|862393|862394|862395|862396|864984|864985|864986|864987|864988|921660|921661|921662|921663|930055|930056|930057|941473|941474|941475|941476|941477|941478|941479|941480|941481|941482|941483|941484|941485|941486|941487|952084|952085|952086|952087|952088|952089|959522|980436", "text": "Symmetrical dyschromatosis of extremities" }, { - "baseId": "29862", + "upstreamId": "29862", "text": "Lupus nephritis, susceptibility to" }, { - "baseId": "29862", + "upstreamId": "29862", "text": "Pseudomonas aeruginosa, susceptibility to chronic infection by, in cystic fibrosis" }, { - "baseId": "29862", + "upstreamId": "29862", "text": "Malaria, severe, susceptibility to" }, { - "baseId": "29862|227742", + "upstreamId": "29862|227742", "text": "trastuzumab response - Efficacy" }, { - "baseId": "29863|29864|237583|433637|433638|433639|433640|433641|469908|469910|469911|469912|469913|470911|471373|534061|534063|534071|534073|534078|534080|534156|534158|538496|571711|571712|571714|571715|571717|573201|573275|573278|573953|573954|575201|575216|610168|649202|649203|649204|649205|649206|649207|649208|653596|705819|705820|717349|717350|717351|729059|729060|729061|729062|729063|742784|757986|757987|773451|849078|849079|849080|849081|849082|849083|929408|929409|939210|951359|959035|959036|959037", + "upstreamId": "29863|29864|237583|433637|433638|433639|433640|433641|469908|469910|469911|469912|469913|470911|471373|534061|534063|534071|534073|534078|534080|534156|534158|538496|571711|571712|571714|571715|571717|573201|573275|573278|573953|573954|575201|575216|610168|649202|649203|649204|649205|649206|649207|649208|653596|705819|705820|717349|717350|717351|729059|729060|729061|729062|729063|742784|757986|757987|773451|849078|849079|849080|849081|849082|849083|929408|929409|939210|951359|959035|959036|959037", "text": "Agammaglobulinemia 2, autosomal recessive" }, { - "baseId": "29865", + "upstreamId": "29865", "text": "IGG receptor I, phagocytic, familial deficiency of" }, { - "baseId": "29867|614187", + "upstreamId": "29867|614187", "text": "Immunodeficiency 20" }, { - "baseId": "29872", + "upstreamId": "29872", "text": "Impdh2 enzyme activity, variation in" }, { - "baseId": "29873|29874|29875|190982|248646|551553|818253", + "upstreamId": "29873|29874|29875|190982|248646|551553|818253", "text": "Retinitis pigmentosa 10" }, { - "baseId": "29876|29877|190982|190982|191349|191774|194330|301832|301833|301839|301840|301844|301845|304990|304997|305010|305021|305023|309672|309673|309674|309675|309676|309681|309683|309793|309795|309815|309818|309819|309821|309824|309845|360887|444052|551553|623976|692130|699814|699816|722294|735938|777623|777625|801405|832961|832967|897395|897396|897397|897398|897399|897400|897401|897402|897403|897404|897405|897406|897407|897408|897409|897410|897411|897412|897413|897414|897415|897416|897417|897418|897419|897420|897421|900309|900310|900311|900312|919072|919073|919074", + "upstreamId": "29876|29877|190982|190982|191349|191774|194330|301832|301833|301839|301840|301844|301845|304990|304997|305010|305021|305023|309672|309673|309674|309675|309676|309681|309683|309793|309795|309815|309818|309819|309821|309824|309845|360887|444052|551553|623976|692130|699814|699816|722294|735938|777623|777625|801405|832961|832967|897395|897396|897397|897398|897399|897400|897401|897402|897403|897404|897405|897406|897407|897408|897409|897410|897411|897412|897413|897414|897415|897416|897417|897418|897419|897420|897421|900309|900310|900311|900312|919072|919073|919074", "text": "Leber congenital amaurosis 11" }, { - "baseId": "29889|29890|29891|29892|29893|29894|29895|29896|29897|29898|226665|428696", + "upstreamId": "29889|29890|29891|29892|29893|29894|29895|29896|29897|29898|226665|428696", "text": "Currarino triad" }, { - "baseId": "29899|29900", + "upstreamId": "29899|29900", "text": "Microphthalmia, cataracts, and iris abnormalities" }, { - "baseId": "29900|29901|29902|177410|178152|190674|195056|195057|265563|269268|274085|321288|321289|321293|321295|321297|321299|330480|330482|330483|330485|330487|330488|330491|330493|330500|330506|337020|337037|337040|337046|337048|337059|337060|337063|337068|337070|337072|337073|338954|338961|338966|338970|338971|338972|338976|338981|338996|338997|339002|339003|339007|339009|463476|464354|464355|464476|490994|528796|528803|569013|584936|642679|652424|693593|693594|693595|693596|693597|714230|739309|754144|754145|754146|769901|769902|769903|784779|841719|841720|872522|872523|872524|872525|872526|872527|872528|872529|872530|872531|872532|872533|872534|872535|872536|872537|872538|872539|872540|872541|876440|876441|876442|876443|936706|936707|957294|957295", + "upstreamId": "29900|29901|29902|177410|178152|190674|195056|195057|265563|269268|274085|321288|321289|321293|321295|321297|321299|330480|330482|330483|330485|330487|330488|330491|330493|330500|330506|337020|337037|337040|337046|337048|337059|337060|337063|337068|337070|337072|337073|338954|338961|338966|338970|338971|338972|338976|338981|338996|338997|339002|339003|339007|339009|463476|464354|464355|464476|490994|528796|528803|569013|584936|642679|652424|693593|693594|693595|693596|693597|714230|739309|754144|754145|754146|769901|769902|769903|784779|841719|841720|872522|872523|872524|872525|872526|872527|872528|872529|872530|872531|872532|872533|872534|872535|872536|872537|872538|872539|872540|872541|876440|876441|876442|876443|936706|936707|957294|957295", "text": "Microphthalmia, isolated 2" }, { - "baseId": "29901|29903|78970|177410|178152|195056|195057|269268|321288|321289|321293|321295|321297|321299|330480|330482|330483|330485|330487|330488|330491|330493|330500|330506|337020|337037|337040|337046|337048|337059|337060|337063|337068|337070|337072|337073|338954|338961|338966|338970|338971|338972|338976|338981|338996|338997|339002|339003|339007|339009|464355|464476|693593|693594|693595|754144|872522|872523|872524|872525|872526|872527|872528|872529|872530|872531|872532|872533|872534|872535|872536|872537|872538|872539|872540|872541|876440|876441|876442|876443", + "upstreamId": "29901|29903|78970|177410|178152|195056|195057|269268|321288|321289|321293|321295|321297|321299|330480|330482|330483|330485|330487|330488|330491|330493|330500|330506|337020|337037|337040|337046|337048|337059|337060|337063|337068|337070|337072|337073|338954|338961|338966|338970|338971|338972|338976|338981|338996|338997|339002|339003|339007|339009|464355|464476|693593|693594|693595|754144|872522|872523|872524|872525|872526|872527|872528|872529|872530|872531|872532|872533|872534|872535|872536|872537|872538|872539|872540|872541|876440|876441|876442|876443", "text": "Microphthalmia, isolated, with coloboma 3" }, { - "baseId": "29901|171866|177410|190674|263187|265563|321288|330485|337020|338972|424443|424444|464355|528803|625774|693593|693594|693596|754144|754145|754146|769902|769903|822308|957295|979522|979523|979524|979525|979526", + "upstreamId": "29901|171866|177410|190674|263187|265563|321288|330485|337020|338972|424443|424444|464355|528803|625774|693593|693594|693596|754144|754145|754146|769902|769903|822308|957295|979522|979523|979524|979525|979526", "text": "Microphthalmia" }, { - "baseId": "29901|313870|320062|320088|320089|320100|320112|320165|320174|320199|327204|327217|327218|327272|424445|802092|802093|802094", + "upstreamId": "29901|313870|320062|320088|320089|320100|320112|320165|320174|320199|327204|327217|327218|327272|424445|802092|802093|802094", "text": "Anophthalmia" }, { - "baseId": "29904|190108", + "upstreamId": "29904|190108", "text": "Oculoauricular syndrome" }, { - "baseId": "29906|29907|29910|29911|29915|227486|227487|227488|227489|227490|227492|360827|550229|677408|904414|918699", + "upstreamId": "29906|29907|29910|29911|29915|227486|227487|227488|227489|227490|227492|360827|550229|677408|904414|918699", "text": "Synpolydactyly 1" }, { - "baseId": "29908|29909|244065|677408", + "upstreamId": "29908|29909|244065|677408", "text": "Brachydactyly type E1" }, { - "baseId": "29908|29909|677408", + "upstreamId": "29908|29909|677408", "text": "Brachydactyly type D" }, { - "baseId": "29912|29913|677408|818241", + "upstreamId": "29912|29913|677408|818241", "text": "Syndactyly, type V" }, { - "baseId": "29914|360827", + "upstreamId": "29914|360827", "text": "Brachydactyly-syndactyly syndrome" }, { - "baseId": "29916", + "upstreamId": "29916", "text": "VACTERL association" }, { - "baseId": "29917|263231|282990|282991|282999|283000|283005|283006|283014|283836|283839|283840|283841|283843|283845|285472|285473|285477|285499|285504|285506|285507|285866|285875|285876|285877|285881|285883|285884|285885|285886|285887|285895|881651|881652|881653|881654|881655|881656|881657|881658|881659|918700", + "upstreamId": "29917|263231|282990|282991|282999|283000|283005|283006|283014|283836|283839|283840|283841|283843|283845|285472|285473|285477|285499|285504|285506|285507|285866|285875|285876|285877|285881|285883|285884|285885|285886|285887|285895|881651|881652|881653|881654|881655|881656|881657|881658|881659|918700", "text": "Vertical talus, congenital" }, { - "baseId": "29918|29919|29920|29925|29926|132730|227271", + "upstreamId": "29918|29919|29920|29925|29926|132730|227271", "text": "Selective tooth agenesis 1" }, { - "baseId": "29921|227271|453202|453457|453560|453935|453940|453942|453944|520201|559850|563721|632230|691569|698533|781960|781961|790475|829191|829192|918896|923522|970794", + "upstreamId": "29921|227271|453202|453457|453560|453935|453940|453942|453944|520201|559850|563721|632230|691569|698533|781960|781961|790475|829191|829192|918896|923522|970794", "text": "Hypoplastic enamel-onycholysis-hypohidrosis syndrome" }, { - "baseId": "29922|29923|29924|227271", + "upstreamId": "29922|29923|29924|227271", "text": "Orofacial cleft 5" }, { - "baseId": "29928|29929|29930|29931|29933|29934|29935", + "upstreamId": "29928|29929|29930|29931|29933|29934|29935", "text": "Hand-foot-genital syndrome" }, { - "baseId": "29932", + "upstreamId": "29932", "text": "Guttmacher syndrome" }, { - "baseId": "29936", + "upstreamId": "29936", "text": "Radioulnar synostosis with amegakaryocytic thrombocytopenia 1" }, { - "baseId": "29937|29938|29940|302734|302735|302736|302738|302739|302745|302746|302749|302750|302751|302756|302767|306063|306065|306072|306075|306082|306084|306086|306087|306093|310817|310833|310834|310835|310841|310854|310855|310856|311028|311036", + "upstreamId": "29937|29938|29940|302734|302735|302736|302738|302739|302745|302746|302749|302750|302751|302756|302767|306063|306065|306072|306075|306082|306084|306086|306087|306093|310817|310833|310834|310835|310841|310854|310855|310856|311028|311036", "text": "Bosley-Salih-Alorainy syndrome" }, { - "baseId": "29937|29939|302767|306082|306086|306087|310834|579319|897937|897938|897939|897940|897941|897942|897943|897944|897945|897946|897947|897948|897949|897950|897951|897952|897953|897954|897955|897956", + "upstreamId": "29937|29939|302767|306082|306086|306087|310834|579319|897937|897938|897939|897940|897941|897942|897943|897944|897945|897946|897947|897948|897949|897950|897951|897952|897953|897954|897955|897956", "text": "Human HOXA1 syndromes" }, { - "baseId": "29942", + "upstreamId": "29942", "text": "Low density lipoprotein cholesterol level quantitative trait locus 3" }, { - "baseId": "29943", + "upstreamId": "29943", "text": "Beryllium disease, chronic, susceptibility to" }, { - "baseId": "29944", + "upstreamId": "29944", "text": "Sarcoidosis 1" }, { - "baseId": "29945", + "upstreamId": "29945", "text": "Psoriasis susceptibility 1" }, { - "baseId": "29946", + "upstreamId": "29946", "text": "HIV-1 viremia, susceptibility to" }, { - "baseId": "29947", + "upstreamId": "29947", "text": "Ankylosing spondylitis" }, { - "baseId": "29947", + "upstreamId": "29947", "text": "Synovitis, chronic, susceptibility to" }, { - "baseId": "29948|29950|434609", + "upstreamId": "29948|29950|434609", "text": "Susceptibility to severe cutaneous adverse reaction" }, { - "baseId": "29948|29950", + "upstreamId": "29948|29950", "text": "Erythema multiforme major" }, { - "baseId": "29948|29950", + "upstreamId": "29948|29950", "text": "Toxic epidermal necrolysis" }, { - "baseId": "29949", + "upstreamId": "29949", "text": "Abacavir hypersensitivity" }, { - "baseId": "29949", + "upstreamId": "29949", "text": "Drug-induced liver injury due to flucloxacillin" }, { - "baseId": "29950", + "upstreamId": "29950", "text": "Allopurinol response" }, { - "baseId": "29953|361737|434541", + "upstreamId": "29953|361737|434541", "text": "Thrombophilia, histidine-rich glycoprotein-related" }, { - "baseId": "29954|29955|70505|359832", + "upstreamId": "29954|29955|70505|359832", "text": "Hemolytic anemia due to hexokinase deficiency" }, { - "baseId": "29956|29957|29961|29962|29963|29964|29965|190843|191683|191804|192986|193044|193134|194171|194241|194708|194710|195168|195830|195841|196118|196131|196393|204609|205727|237209|237393|260932|267171|267758|268045|268090|268605|268614|268614|268665|268767|269080|269081|269082|269851|269992|271761|271761|272102|273143|273305|273645|274292|274292|275268|275273|275473|278989|278990|278991|278995|278997|278998|278999|279004|279005|279012|279020|279064|279065|279067|279072|279075|279077|279079|279080|279084|279085|279094|279104|279106|279107|279109|279113|279125|279126|279127|279131|279135|279137|279139|279144|279145|279146|279147|279152|279154|279155|279156|279160|279161|279164|279165|279166|279169|279173|279175|279179|279180|279181|279188|279189|279194|279195|279196|279200|279202|279210|279212|279213|279219|279221|279225|279226|279229|279231|279233|279234|279235|279236|279237|279241|279242|279243|279244|279246|279249|279250|279254|279256|279257|279274|279275|279298|279314|279333|279337|279345|279346|279351|279354|279367|279378|279386|279387|279388|279391|279401|279407|279411|279412|279413|279415|279434|279436|279442|279443|279444|279446|279454|279457|279458|279461|279467|279469|280426|280431|280433|280435|280437|280438|280439|280440|280441|280442|280443|280447|280452|280453|280457|280461|280462|280464|280465|280470|280488|280489|280490|280492|280493|280493|280496|280497|280499|280512|280514|280515|280517|280518|280520|280524|280536|280547|280549|280550|280551|280554|280555|280557|280558|280559|280575|280595|280597|280605|280606|280616|280617|280623|280631|280632|280637|280638|280639|280640|280642|280645|280647|280648|280649|280654|280661|280664|280665|280666|280667|280670|280671|280672|280673|280674|280675|280677|280679|280680|280681|280682|280686|280687|280688|280690|280693|280697|280698|280699|280705|280709|280710|280711|280718|280719|280722|280723|280724|280733|280741|280757|280758|280760|280762|280763|280764|280765|280769|280771|280772|280773|280773|280776|280778|280779|280780|280781|280796|280817|280818|280819|363681|433624|433625|439325|440448|440451|440472|440475|440478|440480|440484|489141|490068|490867|491193|513504|538945|553372|553373|576483|576495|576497|576498|576513|578376|584808|585422|587066|609378|609387|609390|612255|696465|696467|696468|696471|707091|707092|707093|707094|707095|707097|732132|732136|732139|732151|743751|746131|746135|746138|746140|746150|746155|746156|761642|774463|787045|789106|789932|789933|792869|794580|799180|823470|863556|863557|863558|863559|863560|863561|863562|863563|863564|863565|863566|863567|863568|863569|863570|863571|863572|863573|863574|863575|863576|863577|863578|863579|863580|863581|863582|863583|863584|863585|863586|863587|863588|863589|863590|863591|863600|863601|863602|863603|863604|863605|863606|863607|863608|863609|863610|863611|863612|863613|863614|863615|863616|863617|863620|863640|863641|863642|863643|863644|863645|863646|863647|863648|863649|863650|863651|863652|863653|863654|863655|863656|863657|863658|863659|863660|863661|863662|863663|863664|863665|863666|863667|863668|863669|863670|863671|863672|863673|863674|863675|863676|863677|863678|863679|863680|863681|863682|863683|863684|863685|863686|863687|863688|863689|863690|863691|863692|863693|863694|863695|863696|863697|863698|863699|863700|863701|865111|865112|865113|865114|865115|865119|865120|865121|865122|865123|865124|865125|865126|903504|903505|961040|970196", + "upstreamId": "29956|29957|29961|29962|29963|29964|29965|190843|191683|191804|192986|193044|193134|194171|194241|194708|194710|195168|195830|195841|196118|196131|196393|204609|205727|237209|237393|260932|267171|267758|268045|268090|268605|268614|268614|268665|268767|269080|269081|269082|269851|269992|271761|271761|272102|273143|273305|273645|274292|274292|275268|275273|275473|278989|278990|278991|278995|278997|278998|278999|279004|279005|279012|279020|279064|279065|279067|279072|279075|279077|279079|279080|279084|279085|279094|279104|279106|279107|279109|279113|279125|279126|279127|279131|279135|279137|279139|279144|279145|279146|279147|279152|279154|279155|279156|279160|279161|279164|279165|279166|279169|279173|279175|279179|279180|279181|279188|279189|279194|279195|279196|279200|279202|279210|279212|279213|279219|279221|279225|279226|279229|279231|279233|279234|279235|279236|279237|279241|279242|279243|279244|279246|279249|279250|279254|279256|279257|279274|279275|279298|279314|279333|279337|279345|279346|279351|279354|279367|279378|279386|279387|279388|279391|279401|279407|279411|279412|279413|279415|279434|279436|279442|279443|279444|279446|279454|279457|279458|279461|279467|279469|280426|280431|280433|280435|280437|280438|280439|280440|280441|280442|280443|280447|280452|280453|280457|280461|280462|280464|280465|280470|280488|280489|280490|280492|280493|280493|280496|280497|280499|280512|280514|280515|280517|280518|280520|280524|280536|280547|280549|280550|280551|280554|280555|280557|280558|280559|280575|280595|280597|280605|280606|280616|280617|280623|280631|280632|280637|280638|280639|280640|280642|280645|280647|280648|280649|280654|280661|280664|280665|280666|280667|280670|280671|280672|280673|280674|280675|280677|280679|280680|280681|280682|280686|280687|280688|280690|280693|280697|280698|280699|280705|280709|280710|280711|280718|280719|280722|280723|280724|280733|280741|280757|280758|280760|280762|280763|280764|280765|280769|280771|280772|280773|280773|280776|280778|280779|280780|280781|280796|280817|280818|280819|363681|433624|433625|439325|440448|440451|440472|440475|440478|440480|440484|489141|490068|490867|491193|513504|538945|553372|553373|576483|576495|576497|576498|576513|578376|584808|585422|587066|609378|609387|609390|612255|696465|696467|696468|696471|707091|707092|707093|707094|707095|707097|732132|732136|732139|732151|743751|746131|746135|746138|746140|746150|746155|746156|761642|774463|787045|789106|789932|789933|792869|794580|799180|823470|863556|863557|863558|863559|863560|863561|863562|863563|863564|863565|863566|863567|863568|863569|863570|863571|863572|863573|863574|863575|863576|863577|863578|863579|863580|863581|863582|863583|863584|863585|863586|863587|863588|863589|863590|863591|863600|863601|863602|863603|863604|863605|863606|863607|863608|863609|863610|863611|863612|863613|863614|863615|863616|863617|863620|863640|863641|863642|863643|863644|863645|863646|863647|863648|863649|863650|863651|863652|863653|863654|863655|863656|863657|863658|863659|863660|863661|863662|863663|863664|863665|863666|863667|863668|863669|863670|863671|863672|863673|863674|863675|863676|863677|863678|863679|863680|863681|863682|863683|863684|863685|863686|863687|863688|863689|863690|863691|863692|863693|863694|863695|863696|863697|863698|863699|863700|863701|865111|865112|865113|865114|865115|865119|865120|865121|865122|865123|865124|865125|865126|903504|903505|961040|970196", "text": "Schwartz-Jampel syndrome" }, { - "baseId": "29958|29959|29960|190843|191683|191804|193044|193134|194171|194241|194708|194710|195168|195830|195841|196118|196131|196393|204609|205727|237209|237393|267171|267758|268045|268090|268605|268614|268614|268665|268767|269080|269081|269082|269851|269992|271761|271761|272102|273143|273305|273645|274292|274292|275268|275273|275473|278989|278990|278991|278995|278997|278998|278999|279004|279005|279012|279020|279064|279065|279067|279072|279075|279077|279079|279080|279084|279085|279094|279104|279106|279107|279109|279113|279125|279126|279127|279131|279135|279137|279139|279144|279145|279146|279147|279152|279154|279155|279156|279160|279161|279164|279165|279166|279169|279173|279175|279179|279180|279181|279188|279189|279194|279195|279196|279200|279202|279210|279212|279213|279219|279221|279225|279226|279229|279231|279233|279234|279235|279236|279237|279241|279242|279243|279244|279246|279249|279250|279254|279256|279257|279274|279275|279298|279314|279333|279337|279345|279346|279351|279354|279367|279378|279386|279387|279388|279391|279401|279407|279411|279412|279413|279415|279434|279436|279442|279443|279444|279446|279454|279457|279458|279461|279467|279469|280426|280431|280433|280435|280437|280438|280439|280440|280441|280442|280443|280447|280452|280453|280457|280461|280462|280464|280465|280470|280488|280489|280490|280492|280493|280493|280496|280497|280499|280512|280514|280515|280517|280518|280520|280524|280536|280547|280549|280550|280551|280554|280555|280557|280558|280559|280575|280595|280597|280605|280606|280616|280617|280623|280631|280632|280637|280638|280639|280640|280642|280645|280647|280648|280649|280654|280661|280664|280665|280666|280667|280670|280671|280672|280673|280674|280675|280677|280679|280680|280681|280682|280686|280687|280688|280690|280693|280697|280698|280699|280705|280709|280710|280711|280718|280719|280722|280723|280724|280733|280741|280757|280758|280760|280762|280763|280764|280765|280769|280771|280772|280773|280773|280776|280778|280779|280780|280781|280796|280817|280818|280819|363681|433624|433625|439325|440448|440451|440472|440475|440478|440480|440484|489141|490068|490867|538945|576495|576497|576498|576513|578376|584808|585422|587066|609378|609387|609390|612254|696465|696467|696468|696471|707091|707092|707093|707094|707095|707097|732132|732136|732139|732151|743751|746131|746135|746138|746140|746150|746155|746156|761642|774463|787045|789360|792869|794580|799180|823470|863556|863557|863558|863559|863560|863561|863562|863563|863564|863565|863566|863567|863568|863569|863570|863571|863572|863573|863574|863575|863576|863577|863578|863579|863580|863581|863582|863583|863584|863585|863586|863587|863588|863589|863590|863591|863600|863601|863602|863603|863604|863605|863606|863607|863608|863609|863610|863611|863612|863613|863614|863615|863616|863617|863620|863640|863641|863642|863643|863644|863645|863646|863647|863648|863649|863650|863651|863652|863653|863654|863655|863656|863657|863658|863659|863660|863661|863662|863663|863664|863665|863666|863667|863668|863669|863670|863671|863672|863673|863674|863675|863676|863677|863678|863679|863680|863681|863682|863683|863684|863685|863686|863687|863688|863689|863690|863691|863692|863693|863694|863695|863696|863697|863698|863699|863700|863701|865111|865112|865113|865114|865115|865119|865120|865121|865122|865123|865124|865125|865126|918610|918611|920135|920136", + "upstreamId": "29958|29959|29960|190843|191683|191804|193044|193134|194171|194241|194708|194710|195168|195830|195841|196118|196131|196393|204609|205727|237209|237393|267171|267758|268045|268090|268605|268614|268614|268665|268767|269080|269081|269082|269851|269992|271761|271761|272102|273143|273305|273645|274292|274292|275268|275273|275473|278989|278990|278991|278995|278997|278998|278999|279004|279005|279012|279020|279064|279065|279067|279072|279075|279077|279079|279080|279084|279085|279094|279104|279106|279107|279109|279113|279125|279126|279127|279131|279135|279137|279139|279144|279145|279146|279147|279152|279154|279155|279156|279160|279161|279164|279165|279166|279169|279173|279175|279179|279180|279181|279188|279189|279194|279195|279196|279200|279202|279210|279212|279213|279219|279221|279225|279226|279229|279231|279233|279234|279235|279236|279237|279241|279242|279243|279244|279246|279249|279250|279254|279256|279257|279274|279275|279298|279314|279333|279337|279345|279346|279351|279354|279367|279378|279386|279387|279388|279391|279401|279407|279411|279412|279413|279415|279434|279436|279442|279443|279444|279446|279454|279457|279458|279461|279467|279469|280426|280431|280433|280435|280437|280438|280439|280440|280441|280442|280443|280447|280452|280453|280457|280461|280462|280464|280465|280470|280488|280489|280490|280492|280493|280493|280496|280497|280499|280512|280514|280515|280517|280518|280520|280524|280536|280547|280549|280550|280551|280554|280555|280557|280558|280559|280575|280595|280597|280605|280606|280616|280617|280623|280631|280632|280637|280638|280639|280640|280642|280645|280647|280648|280649|280654|280661|280664|280665|280666|280667|280670|280671|280672|280673|280674|280675|280677|280679|280680|280681|280682|280686|280687|280688|280690|280693|280697|280698|280699|280705|280709|280710|280711|280718|280719|280722|280723|280724|280733|280741|280757|280758|280760|280762|280763|280764|280765|280769|280771|280772|280773|280773|280776|280778|280779|280780|280781|280796|280817|280818|280819|363681|433624|433625|439325|440448|440451|440472|440475|440478|440480|440484|489141|490068|490867|538945|576495|576497|576498|576513|578376|584808|585422|587066|609378|609387|609390|612254|696465|696467|696468|696471|707091|707092|707093|707094|707095|707097|732132|732136|732139|732151|743751|746131|746135|746138|746140|746150|746155|746156|761642|774463|787045|789360|792869|794580|799180|823470|863556|863557|863558|863559|863560|863561|863562|863563|863564|863565|863566|863567|863568|863569|863570|863571|863572|863573|863574|863575|863576|863577|863578|863579|863580|863581|863582|863583|863584|863585|863586|863587|863588|863589|863590|863591|863600|863601|863602|863603|863604|863605|863606|863607|863608|863609|863610|863611|863612|863613|863614|863615|863616|863617|863620|863640|863641|863642|863643|863644|863645|863646|863647|863648|863649|863650|863651|863652|863653|863654|863655|863656|863657|863658|863659|863660|863661|863662|863663|863664|863665|863666|863667|863668|863669|863670|863671|863672|863673|863674|863675|863676|863677|863678|863679|863680|863681|863682|863683|863684|863685|863686|863687|863688|863689|863690|863691|863692|863693|863694|863695|863696|863697|863698|863699|863700|863701|865111|865112|865113|865114|865115|865119|865120|865121|865122|865123|865124|865125|865126|918610|918611|920135|920136", "text": "Lethal Kniest-like syndrome" }, { - "baseId": "29966|29967|29968|29969|29971|29972|29974|29975|29976|29978|29979|29980|29981|29982|29983|29984|29985|29986|29987|45456|45457|45458|45459|45460|45461|45462|45463|45464|45465|45466|45467|45468|45469|45470|45471|45472|45473|45474|45475|45476|45477|45478|45480|45481|45482|45483|45484|45485|45486|45487|45488|45489|45490|45491|45492|45493|45494|45495|45496|134673|134675|134676|134677|134678|134679|134680|134682|138249|138250|138251|139383|254435|316185|316196|316197|323468|323469|323471|323495|323496|323500|323503|323505|323513|323516|329688|329692|329693|329694|330911|330919|330926|330935|330940|360075|424382|425956|429373|429376|429377|429378|429379|429380|429381|429384|432308|441509|441528|513098|553557|553650|576265|577242|577251|577254|589203|609053|609054|684306|791199|791200|869395|869396|869397|869398|869399|869400|869401|869402|869403|869404|869405|869406|869407|869408|869409|869410|869411|869412|869413|920313|961079|961080|961081|961082|961083|961084|961085|961086|961087|961088|961089|961090|961091|961092|961093|961094|961095|961096|961097|961098|961099|961100|961101|961102|961103|964379|967194|967195", + "upstreamId": "29966|29967|29968|29969|29971|29972|29974|29975|29976|29978|29979|29980|29981|29982|29983|29984|29985|29986|29987|45456|45457|45458|45459|45460|45461|45462|45463|45464|45465|45466|45467|45468|45469|45470|45471|45472|45473|45474|45475|45476|45477|45478|45480|45481|45482|45483|45484|45485|45486|45487|45488|45489|45490|45491|45492|45493|45494|45495|45496|134673|134675|134676|134677|134678|134679|134680|134682|138249|138250|138251|139383|254435|316185|316196|316197|323468|323469|323471|323495|323496|323500|323503|323505|323513|323516|329688|329692|329693|329694|330911|330919|330926|330935|330940|360075|424382|425956|429373|429376|429377|429378|429379|429380|429381|429384|432308|441509|441528|513098|553557|553650|576265|577242|577251|577254|589203|609053|609054|684306|791199|791200|869395|869396|869397|869398|869399|869400|869401|869402|869403|869404|869405|869406|869407|869408|869409|869410|869411|869412|869413|920313|961079|961080|961081|961082|961083|961084|961085|961086|961087|961088|961089|961090|961091|961092|961093|961094|961095|961096|961097|961098|961099|961100|961101|961102|961103|964379|967194|967195", "text": "Maturity-onset diabetes of the young, type 3" }, { - "baseId": "29966", + "upstreamId": "29966", "text": "Hepatic adenomas, familial" }, { - "baseId": "29966|134681|263530|980491", + "upstreamId": "29966|134681|263530|980491", "text": "Diabetes mellitus type 1" }, { - "baseId": "29966|29970|29971|29977|970953", + "upstreamId": "29966|29970|29971|29977|970953", "text": "Diabetes mellitus, insulin-dependent, 20" }, { - "baseId": "29976", + "upstreamId": "29976", "text": "SERUM HDL CHOLESTEROL LEVEL, MODIFIER OF" }, { - "baseId": "29988|29989|29990|52775|52776|174255|174256", + "upstreamId": "29988|29989|29990|52775|52776|174255|174256", "text": "Deafness, autosomal recessive 39" }, { - "baseId": "29991|29992|29993|29994|919943", + "upstreamId": "29991|29992|29993|29994|919943", "text": "Heparin cofactor II deficiency" }, { - "baseId": "29996", + "upstreamId": "29996", "text": "HEMOGLOBIN F (ALBAICIN)" }, { - "baseId": "29997", + "upstreamId": "29997", "text": "HEMOGLOBIN F (AUCKLAND)" }, { - "baseId": "29998", + "upstreamId": "29998", "text": "HEMOGLOBIN F (CALTECH)" }, { - "baseId": "29999", + "upstreamId": "29999", "text": "HEMOGLOBIN F (CARLTON)" }, { - "baseId": "30000", + "upstreamId": "30000", "text": "HEMOGLOBIN F (CLARKE)" }, { - "baseId": "30001", + "upstreamId": "30001", "text": "HEMOGLOBIN F (COLUMBUS-GA)" }, { - "baseId": "30002", + "upstreamId": "30002", "text": "HEMOGLOBIN F (FUCHU)" }, { - "baseId": "30003", + "upstreamId": "30003", "text": "HEMOGLOBIN F (HEATHER)" }, { - "baseId": "30004", + "upstreamId": "30004", "text": "HEMOGLOBIN F (KENNESTONE)" }, { - "baseId": "30005", + "upstreamId": "30005", "text": "HEMOGLOBIN F (KINGSTON)" }, { - "baseId": "30006", + "upstreamId": "30006", "text": "HEMOGLOBIN F (LA GRANGE)" }, { - "baseId": "30007", + "upstreamId": "30007", "text": "HEMOGLOBIN F (LODZ)" }, { - "baseId": "30008", + "upstreamId": "30008", "text": "HEMOGLOBIN F (MALAYSIA)" }, { - "baseId": "30009", + "upstreamId": "30009", "text": "HEMOGLOBIN F (MALTA)" }, { - "baseId": "30010", + "upstreamId": "30010", "text": "HEMOGLOBIN F (MARIETTA)" }, { - "baseId": "30011", + "upstreamId": "30011", "text": "HEMOGLOBIN F (MEINOHAMA)" }, { - "baseId": "30012", + "upstreamId": "30012", "text": "HEMOGLOBIN F (MELBOURNE)" }, { - "baseId": "30013", + "upstreamId": "30013", "text": "HEMOGLOBIN F (MINOO)" }, { - "baseId": "30014", + "upstreamId": "30014", "text": "HEMOGLOBIN F (OAKLAND)" }, { - "baseId": "30015", + "upstreamId": "30015", "text": "HEMOGLOBIN F (POOLE)" }, { - "baseId": "30016", + "upstreamId": "30016", "text": "HEMOGLOBIN F (PORT ROYAL)" }, { - "baseId": "30017", + "upstreamId": "30017", "text": "HEMOGLOBIN F (SHANGHAI)" }, { - "baseId": "30018", + "upstreamId": "30018", "text": "HEMOGLOBIN F (TOKYO)" }, { - "baseId": "30019", + "upstreamId": "30019", "text": "HEMOGLOBIN F (URUMQI)" }, { - "baseId": "30020|30028|30035|38707|38708|789092", + "upstreamId": "30020|30028|30035|38707|38708|789092", "text": "Cyanosis, transient neonatal" }, { - "baseId": "30021|30022|30023|30029|30040|30069|30070|30072|30073|30074|30079|30109|30177|30177|30191|30228|30372|30456|30489|30493|38706|38709|44955|44986|44991|190271|314320|314322|320911|320913|320919|326999|328030|328037|328057|432683|433086|433087|868119|868120|868121|868123|868124|868125|868126|868127|868128", + "upstreamId": "30021|30022|30023|30029|30040|30069|30070|30072|30073|30074|30079|30109|30177|30177|30191|30228|30372|30456|30489|30493|38706|38709|44955|44986|44991|190271|314320|314322|320911|320913|320919|326999|328030|328037|328057|432683|433086|433087|868119|868120|868121|868123|868124|868125|868126|868127|868128", "text": "Fetal hemoglobin quantitative trait locus 1" }, { - "baseId": "30024", + "upstreamId": "30024", "text": "HEMOGLOBIN F (GRANADA)" }, { - "baseId": "30025", + "upstreamId": "30025", "text": "HEMOGLOBIN F (AUSTELL)" }, { - "baseId": "30026", + "upstreamId": "30026", "text": "HEMOGLOBIN F (BROOKLYN)" }, { - "baseId": "30027", + "upstreamId": "30027", "text": "HEMOGLOBIN F (ONODA)" }, { - "baseId": "30030", + "upstreamId": "30030", "text": "HEMOGLOBIN F (CATALONIA)" }, { - "baseId": "30031", + "upstreamId": "30031", "text": "HEMOGLOBIN F (COSENZA)" }, { - "baseId": "30032", + "upstreamId": "30032", "text": "HEMOGLOBIN F (SACROMONTE)" }, { - "baseId": "30033", + "upstreamId": "30033", "text": "HEMOGLOBIN F (WAYNESBORO)" }, { - "baseId": "30033", + "upstreamId": "30033", "text": "HEMOGLOBIN F (LESVOS)" }, { - "baseId": "30034", + "upstreamId": "30034", "text": "HEMOGLOBIN F (MACEDONIA II)" }, { - "baseId": "30036", + "upstreamId": "30036", "text": "HEMOGLOBIN F (EMIRATES)" }, { - "baseId": "30038", + "upstreamId": "30038", "text": "HEMOGLOBIN F (VELETA)" }, { - "baseId": "30041", + "upstreamId": "30041", "text": "HEMOGLOBIN F (CALABRIA)" }, { - "baseId": "30042", + "upstreamId": "30042", "text": "HEMOGLOBIN F (CLAMART)" }, { - "baseId": "30043", + "upstreamId": "30043", "text": "HEMOGLOBIN F (OULED RABAH)" }, { - "baseId": "30044", + "upstreamId": "30044", "text": "HBG1 POLYMORPHISM" }, { - "baseId": "30044", + "upstreamId": "30044", "text": "HEMOGLOBIN F (SARDINIA)" }, { - "baseId": "30045", + "upstreamId": "30045", "text": "HEMOGLOBIN F (BASKENT)" }, { - "baseId": "30046", + "upstreamId": "30046", "text": "HEMOGLOBIN F (BEECH ISLAND)" }, { - "baseId": "30047", + "upstreamId": "30047", "text": "HEMOGLOBIN F (BONAIRE)" }, { - "baseId": "30048", + "upstreamId": "30048", "text": "HEMOGLOBIN F (CALLUNA)" }, { - "baseId": "30049", + "upstreamId": "30049", "text": "HEMOGLOBIN F (COBB)" }, { - "baseId": "30050", + "upstreamId": "30050", "text": "HEMOGLOBIN F (DAMMAM)" }, { - "baseId": "30051", + "upstreamId": "30051", "text": "HEMOGLOBIN F (DICKINSON)" }, { - "baseId": "30052", + "upstreamId": "30052", "text": "HEMOGLOBIN F (FOREST PARK)" }, { - "baseId": "30053", + "upstreamId": "30053", "text": "HEMOGLOBIN F (FUKUYAMA)" }, { - "baseId": "30054", + "upstreamId": "30054", "text": "HEMOGLOBIN F (IWATA)" }, { - "baseId": "30055", + "upstreamId": "30055", "text": "HEMOGLOBIN F (IZUMI)" }, { - "baseId": "30055", + "upstreamId": "30055", "text": "HEMOGLOBIN F (KOTOBUKI)" }, { - "baseId": "30056", + "upstreamId": "30056", "text": "HEMOGLOBIN F (JAMAICA)" }, { - "baseId": "30058", + "upstreamId": "30058", "text": "HEMOGLOBIN F (KUALA LUMPUR)" }, { - "baseId": "30059", + "upstreamId": "30059", "text": "HEMOGLOBIN F (PENDERGRASS)" }, { - "baseId": "30060", + "upstreamId": "30060", "text": "HEMOGLOBIN F (PORDENONE)" }, { - "baseId": "30062", + "upstreamId": "30062", "text": "HEMOGLOBIN F (SIENA)" }, { - "baseId": "30062", + "upstreamId": "30062", "text": "HEMOGLOBIN F (HULL)" }, { - "baseId": "30063", + "upstreamId": "30063", "text": "HEMOGLOBIN F (TEXAS I)" }, { - "baseId": "30064", + "upstreamId": "30064", "text": "HEMOGLOBIN F (VICTORIA JUBILEE)" }, { - "baseId": "30065", + "upstreamId": "30065", "text": "HEMOGLOBIN F (XINJIANG)" }, { - "baseId": "30066", + "upstreamId": "30066", "text": "HEMOGLOBIN F (XIN-SU)" }, { - "baseId": "30067", + "upstreamId": "30067", "text": "HEMOGLOBIN F (YAMAGUCHI)" }, { - "baseId": "30068", + "upstreamId": "30068", "text": "HEMOGLOBIN KENYA" }, { - "baseId": "30069", + "upstreamId": "30069", "text": "Sardinian HPFH" }, { - "baseId": "30069", + "upstreamId": "30069", "text": "Greek HPFH" }, { - "baseId": "30070", + "upstreamId": "30070", "text": "British HPFH" }, { - "baseId": "30071", + "upstreamId": "30071", "text": "HEMOGLOBIN F (JIANGSU)" }, { - "baseId": "30076", + "upstreamId": "30076", "text": "HEMOGLOBIN F (WOODSTOCK)" }, { - "baseId": "30077", + "upstreamId": "30077", "text": "Fetal hemoglobin, a-gamma type, reduction in" }, { - "baseId": "30078", + "upstreamId": "30078", "text": "HEMOGLOBIN F (MACEDONIA-I)" }, { - "baseId": "30081", + "upstreamId": "30081", "text": "HEMOGLOBIN A(2)-PRIME" }, { - "baseId": "30081", + "upstreamId": "30081", "text": "HEMOGLOBIN B(2)" }, { - "baseId": "30082", + "upstreamId": "30082", "text": "HEMOGLOBIN A(2) ADRIA" }, { - "baseId": "30083", + "upstreamId": "30083", "text": "HEMOGLOBIN A(2) BABINGA" }, { - "baseId": "30084", + "upstreamId": "30084", "text": "HEMOGLOBIN A(2) CANADA" }, { - "baseId": "30085", + "upstreamId": "30085", "text": "HEMOGLOBIN A(2) COBURG" }, { - "baseId": "30086", + "upstreamId": "30086", "text": "HEMOGLOBIN A(2) FITZROY" }, { - "baseId": "30087", + "upstreamId": "30087", "text": "HEMOGLOBIN A(2) FLATBUSH" }, { - "baseId": "30087", + "upstreamId": "30087", "text": "HEMOGLOBIN FLATBUSH (GEORGIA)" }, { - "baseId": "30088", + "upstreamId": "30088", "text": "HEMOGLOBIN A(2) HONAI" }, { - "baseId": "30089", + "upstreamId": "30089", "text": "HEMOGLOBIN A(2) INDONESIA" }, { - "baseId": "30090", + "upstreamId": "30090", "text": "HEMOGLOBIN A(2) MANZANARES" }, { - "baseId": "30091", + "upstreamId": "30091", "text": "HEMOGLOBIN A(2) MELBOURNE" }, { - "baseId": "30092", + "upstreamId": "30092", "text": "HEMOGLOBIN A(2) NYU" }, { - "baseId": "30092", + "upstreamId": "30092", "text": "HEMOGLOBIN NYU" }, { - "baseId": "30093", + "upstreamId": "30093", "text": "HEMOGLOBIN A(2) ROOSEVELT" }, { - "baseId": "30094", + "upstreamId": "30094", "text": "HEMOGLOBIN A(2) SPHAKIA" }, { - "baseId": "30095", + "upstreamId": "30095", "text": "HEMOGLOBIN A(2) VICTORIA" }, { - "baseId": "30096", + "upstreamId": "30096", "text": "HEMOGLOBIN A(2) WRENS" }, { - "baseId": "30097", + "upstreamId": "30097", "text": "HEMOGLOBIN A(2) YOKOSHIMA" }, { - "baseId": "30098", + "upstreamId": "30098", "text": "HEMOGLOBIN A(2) ZAGREB" }, { - "baseId": "30099|30100|30102", + "upstreamId": "30099|30100|30102", "text": "Hemoglobin Lepore trait" }, { - "baseId": "30100|30717", + "upstreamId": "30100|30717", "text": "Abnormal hemoglobin" }, { - "baseId": "30100", + "upstreamId": "30100", "text": "Reduced beta/alpha synthesis ratio" }, { - "baseId": "30100", + "upstreamId": "30100", "text": "Persistence of hemoglobin F" }, { - "baseId": "30100|30441|30663|30669|30671|30675|30682|30683|30684|30692|30707|30725|30726|30763|30772|30832|30837|30842|30904|30914|30931|47238|47240|47241|264908|362628|362629|362630|362633|362634|362638|362639|390135|427127|432842|432844|432860|432863|432864|432865|432866|432873|433150|433152|433154|480507|480508|609943|614132|614133|623322|739999|789593|792575|799847|799853|799854|816416|857543|857544|857545|857546|857547|857548|857549|857550|857551|857573|857574|857575|857576|857577|903608|979760|979761|979762|983498|983499|983500", + "upstreamId": "30100|30441|30663|30669|30671|30675|30682|30683|30684|30692|30707|30725|30726|30763|30772|30832|30837|30842|30904|30914|30931|47238|47240|47241|264908|362628|362629|362630|362633|362634|362638|362639|390135|427127|432842|432844|432860|432863|432864|432865|432866|432873|433150|433152|433154|480507|480508|609943|614132|614133|623322|739999|789593|792575|799847|799853|799854|816416|857543|857544|857545|857546|857547|857548|857549|857550|857551|857573|857574|857575|857576|857577|903608|979760|979761|979762|983498|983499|983500", "text": "alpha Thalassemia" }, { - "baseId": "30101", + "upstreamId": "30101", "text": "HEMOGLOBIN A(2) PELENDRI" }, { - "baseId": "30103", + "upstreamId": "30103", "text": "HEMOGLOBIN PARCHMAN" }, { - "baseId": "30104", + "upstreamId": "30104", "text": "Delta-zero-thalassemia, knossos type" }, { - "baseId": "30105", + "upstreamId": "30105", "text": "HEMOGLOBIN A(2) CORFU" }, { - "baseId": "30105", + "upstreamId": "30105", "text": "HEMOGLOBIN A(2) TROODOS" }, { - "baseId": "30106", + "upstreamId": "30106", "text": "HEMOGLOBIN A(2) PARKVILLE" }, { - "baseId": "30107|30109|30110|30111|30112|30113|30123|30124|620405", + "upstreamId": "30107|30109|30110|30111|30112|30113|30123|30124|620405", "text": "delta Thalassemia" }, { - "baseId": "30108", + "upstreamId": "30108", "text": "HEMOGLOBIN A(2) NIIGATA" }, { - "baseId": "30109", + "upstreamId": "30109", "text": "HEMOGLOBIN A(2) YIALOUSA" }, { - "baseId": "30113", + "upstreamId": "30113", "text": "HEMOGLOBIN A(2) GROVETOWN" }, { - "baseId": "30114", + "upstreamId": "30114", "text": "HEMOGLOBIN A(2) PUGLIA" }, { - "baseId": "30115", + "upstreamId": "30115", "text": "Delta-0-thalassemia" }, { - "baseId": "30116", + "upstreamId": "30116", "text": "HEMOGLOBIN A(2) SANT' ANTIOCO" }, { - "baseId": "30117", + "upstreamId": "30117", "text": "HEMOGLOBIN A(2) AGRINIO" }, { - "baseId": "30118", + "upstreamId": "30118", "text": "HEMOGLOBIN A(2) MONREALE" }, { - "baseId": "30119", + "upstreamId": "30119", "text": "HEMOGLOBIN A(2) METAPONTO" }, { - "baseId": "30120", + "upstreamId": "30120", "text": "HEMOGLOBIN A(2) CAMPANIA" }, { - "baseId": "30121", + "upstreamId": "30121", "text": "HEMOGLOBIN A(2) LUCANIA" }, { - "baseId": "30122", + "upstreamId": "30122", "text": "HEMOGLOBIN A(2) CAPRI" }, { - "baseId": "30125", + "upstreamId": "30125", "text": "HEMOGLOBIN A(2) NINIVE" }, { - "baseId": "30126", + "upstreamId": "30126", "text": "Delta-plus-thalassemia" }, { - "baseId": "30128", + "upstreamId": "30128", "text": "HEMOGLOBIN AALBORG" }, { - "baseId": "30129", + "upstreamId": "30129", "text": "HEMOGLOBIN ABRUZZO" }, { - "baseId": "30130", + "upstreamId": "30130", "text": "HEMOGLOBIN AGENOGI" }, { - "baseId": "30131", + "upstreamId": "30131", "text": "HEMOGLOBIN ALABAMA" }, { - "baseId": "30132", + "upstreamId": "30132", "text": "HEMOGLOBIN ALAMO" }, { - "baseId": "30133", + "upstreamId": "30133", "text": "HEMOGLOBIN ALBERTA" }, { - "baseId": "30133|30135|30143|30151|30155|30156|30157|30173|30183|30186|30231|30232|30239|30243|30275|30289|30298|30304|30333|30339|30340|30345|30351|30354|30356|30358|30360|30361|30378|30381|30404|30419|30422|30429|30430|30434|30436|30617|906174", + "upstreamId": "30133|30135|30143|30151|30155|30156|30157|30173|30183|30186|30231|30232|30239|30243|30275|30289|30298|30304|30333|30339|30340|30345|30351|30354|30356|30358|30360|30361|30378|30381|30404|30419|30422|30429|30430|30434|30436|30617|906174", "text": "Erythrocytosis 6, familial" }, { - "baseId": "30134", + "upstreamId": "30134", "text": "HEMOGLOBIN ALTDORF" }, { - "baseId": "30135", + "upstreamId": "30135", "text": "HEMOGLOBIN ANDREW-MINNEAPOLIS" }, { - "baseId": "30136", + "upstreamId": "30136", "text": "HEMOGLOBIN ANKARA" }, { - "baseId": "30138", + "upstreamId": "30138", "text": "HEMOGLOBIN ATHENS-GEORGIA" }, { - "baseId": "30139", + "upstreamId": "30139", "text": "HEMOGLOBIN ATLANTA" }, { - "baseId": "30139", + "upstreamId": "30139", "text": "HEMOGLOBIN ATLANTA-COVENTRY" }, { - "baseId": "30141", + "upstreamId": "30141", "text": "HEMOGLOBIN AUSTIN" }, { - "baseId": "30142", + "upstreamId": "30142", "text": "HEMOGLOBIN AVICENNA" }, { - "baseId": "30143", + "upstreamId": "30143", "text": "HEMOGLOBIN BARCELONA" }, { - "baseId": "30144", + "upstreamId": "30144", "text": "HEMOGLOBIN BAYLOR" }, { - "baseId": "30145", + "upstreamId": "30145", "text": "HEMOGLOBIN BEIRUT" }, { - "baseId": "30146", + "upstreamId": "30146", "text": "HEMOGLOBIN BELFAST" }, { - "baseId": "30147", + "upstreamId": "30147", "text": "HEMOGLOBIN BORAS" }, { - "baseId": "30148", + "upstreamId": "30148", "text": "HEMOGLOBIN BOUGARDIREY-MALI" }, { - "baseId": "30149", + "upstreamId": "30149", "text": "HEMOGLOBIN BEOGRAD" }, { - "baseId": "30149", + "upstreamId": "30149", "text": "HEMOGLOBIN D (CAMPERDOWN)" }, { - "baseId": "30150", + "upstreamId": "30150", "text": "HEMOGLOBIN BETH ISRAEL" }, { - "baseId": "30151", + "upstreamId": "30151", "text": "HEMOGLOBIN BETHESDA" }, { - "baseId": "30152", + "upstreamId": "30152", "text": "HEMOGLOBIN BICETRE" }, { - "baseId": "30153", + "upstreamId": "30153", "text": "HEMOGLOBIN BOLOGNA" }, { - "baseId": "30154", + "upstreamId": "30154", "text": "HEMOGLOBIN BREST" }, { - "baseId": "30155", + "upstreamId": "30155", "text": "HEMOGLOBIN BRIGHAM" }, { - "baseId": "30156", + "upstreamId": "30156", "text": "HEMOGLOBIN BRISBANE" }, { - "baseId": "30156", + "upstreamId": "30156", "text": "HEMOGLOBIN GREAT LAKES" }, { - "baseId": "30157", + "upstreamId": "30157", "text": "HEMOGLOBIN BRITISH COLUMBIA" }, { - "baseId": "30158", + "upstreamId": "30158", "text": "HEMOGLOBIN BROCKTON" }, { - "baseId": "30160|30161|30205|30245|30277|30278|30280|30325|30329|30437|30444|30445|30453|30462|30465|30470|30471|30499|30512|30522|30527|30533|30565|38470|44949|44951|47255|47264|380592|380595|380597|432695|432704|546034|546666|590730|611095|621358|621360|621361|917086|983932", + "upstreamId": "30160|30161|30205|30245|30277|30278|30280|30325|30329|30437|30444|30445|30453|30462|30465|30470|30471|30499|30512|30522|30527|30533|30565|38470|44949|44951|47255|47264|380592|380595|380597|432695|432704|546034|546666|590730|611095|621358|621360|621361|917086|983932", "text": "Hemoglobinopathy" }, { - "baseId": "30160|30229|30246|30280|30400|30407|30694|30867", + "upstreamId": "30160|30229|30246|30280|30400|30407|30694|30867", "text": "Heinz body anemia" }, { - "baseId": "30162", + "upstreamId": "30162", "text": "HEMOGLOBIN BUNBURY" }, { - "baseId": "30163", + "upstreamId": "30163", "text": "HEMOGLOBIN BURKE" }, { - "baseId": "30164", + "upstreamId": "30164", "text": "HEMOGLOBIN BUSHWICK" }, { - "baseId": "30165", + "upstreamId": "30165", "text": "HEMOGLOBIN C" }, { - "baseId": "30165|30177|30177|30191|30200|30228|30241|30273|30278|30284|30331|30372|30391|30440|30441|30442|30443|30445|30452|30456|30457|30461|30470|30471|30473|30475|30476|30477|30486|30489|30493|30496|30497|30498|30509|30510|34043|44945|44951|44955|44972|44986|44991|44996|190271|320911|328030|432683|433086|433087|546448|868119|868120|868121", + "upstreamId": "30165|30177|30177|30191|30200|30228|30241|30273|30278|30284|30331|30372|30391|30440|30441|30442|30443|30445|30452|30456|30457|30461|30470|30471|30473|30475|30476|30477|30486|30489|30493|30496|30497|30498|30509|30510|34043|44945|44951|44955|44972|44986|44991|44996|190271|320911|328030|432683|433086|433087|546448|868119|868120|868121", "text": "Hb SS disease" }, { - "baseId": "30165|30177|30177|30191|30200|30210|30228|30236|30241|30263|30273|30278|30295|30297|30331|30341|30372|30381|30391|30394|30424|30440|30441|30442|30443|30444|30445|30446|30447|30452|30453|30454|30456|30457|30458|30459|30461|30462|30463|30465|30466|30468|30470|30471|30472|30473|30475|30476|30477|30480|30481|30484|30485|30486|30487|30488|30489|30490|30492|30493|30496|30497|30498|30499|30500|30501|30503|30504|30505|30506|30508|30509|30510|30512|30522|30524|30527|30528|30531|30543|30545|30547|30551|30553|30554|30558|30576|30590|30599|30601|30602|34042|34043|44945|44946|44948|44949|44951|44954|44955|44956|44958|44962|44965|44966|44967|44969|44970|44972|44973|44974|44975|44976|44977|44978|44979|44980|44984|44986|44991|44993|44995|44996|44998|45001|45004|45005|47251|47252|47255|47264|47272|47276|47287|47306|47307|75268|186822|190271|254202|254205|254206|260797|320911|328030|380592|380593|380594|380595|380596|380597|380598|380599|432675|432677|432681|432683|432687|432690|432692|432694|432695|432704|432705|433082|433083|433084|433086|433087|433088|487421|487444|487446|487504|487518|487527|487534|487561|487562|546034|546035|546317|546448|546662|546666|581709|581827|581920|611303|611304|611306|621353|621362|621817|621818|685287|690005|787983|789684|789685|818290|838557|857427|857428|857429|857430|857431|857432|857433|857435|857436|857437|857438|857439|857440|857441|857442|857443|857444|857445|857446|857447|857448|857449|857450|857451|857452|857453|857454|857455|857456|857457|857458|857459|857460|857461|857462|857463|857464|857465|857466|857467|857468|857469|857470|857471|857472|857473|857474|857475|857476|857477|857478|857479|857480|857481|857482|857483|857484|857485|857486|857487|857488|857489|857490|857491|857492|857493|857494|857495|857496|857497|857498|857499|857500|857501|857502|857503|857504|857505|857506|857507|857508|857509|857510|857511|857512|857513|857514|857515|857516|857517|857518|857519|857520|857521|857522|857523|857525|857526|857527|857528|857529|857530|857531|857532|857533|857534|857535|857536|857537|857538|857539|857540|857541|857542|857552|857553|857555|857557|857558|857559|857560|857561|857563|857564|857565|857566|857567|857568|857569|857570|857571|857572|868119|868120|868121|970074|972531|979011|979012|983496|983497", + "upstreamId": "30165|30177|30177|30191|30200|30210|30228|30236|30241|30263|30273|30278|30295|30297|30331|30341|30372|30381|30391|30394|30424|30440|30441|30442|30443|30444|30445|30446|30447|30452|30453|30454|30456|30457|30458|30459|30461|30462|30463|30465|30466|30468|30470|30471|30472|30473|30475|30476|30477|30480|30481|30484|30485|30486|30487|30488|30489|30490|30492|30493|30496|30497|30498|30499|30500|30501|30503|30504|30505|30506|30508|30509|30510|30512|30522|30524|30527|30528|30531|30543|30545|30547|30551|30553|30554|30558|30576|30590|30599|30601|30602|34042|34043|44945|44946|44948|44949|44951|44954|44955|44956|44958|44962|44965|44966|44967|44969|44970|44972|44973|44974|44975|44976|44977|44978|44979|44980|44984|44986|44991|44993|44995|44996|44998|45001|45004|45005|47251|47252|47255|47264|47272|47276|47287|47306|47307|75268|186822|190271|254202|254205|254206|260797|320911|328030|380592|380593|380594|380595|380596|380597|380598|380599|432675|432677|432681|432683|432687|432690|432692|432694|432695|432704|432705|433082|433083|433084|433086|433087|433088|487421|487444|487446|487504|487518|487527|487534|487561|487562|546034|546035|546317|546448|546662|546666|581709|581827|581920|611303|611304|611306|621353|621362|621817|621818|685287|690005|787983|789684|789685|818290|838557|857427|857428|857429|857430|857431|857432|857433|857435|857436|857437|857438|857439|857440|857441|857442|857443|857444|857445|857446|857447|857448|857449|857450|857451|857452|857453|857454|857455|857456|857457|857458|857459|857460|857461|857462|857463|857464|857465|857466|857467|857468|857469|857470|857471|857472|857473|857474|857475|857476|857477|857478|857479|857480|857481|857482|857483|857484|857485|857486|857487|857488|857489|857490|857491|857492|857493|857494|857495|857496|857497|857498|857499|857500|857501|857502|857503|857504|857505|857506|857507|857508|857509|857510|857511|857512|857513|857514|857515|857516|857517|857518|857519|857520|857521|857522|857523|857525|857526|857527|857528|857529|857530|857531|857532|857533|857534|857535|857536|857537|857538|857539|857540|857541|857542|857552|857553|857555|857557|857558|857559|857560|857561|857563|857564|857565|857566|857567|857568|857569|857570|857571|857572|868119|868120|868121|970074|972531|979011|979012|983496|983497", "text": "beta Thalassemia" }, { - "baseId": "30168", + "upstreamId": "30168", "text": "HEMOGLOBIN CAMDEN" }, { - "baseId": "30168", + "upstreamId": "30168", "text": "HEMOGLOBIN MOTOWN" }, { - "baseId": "30168", + "upstreamId": "30168", "text": "HEMOGLOBIN TOKUCHI" }, { - "baseId": "30169", + "upstreamId": "30169", "text": "HEMOGLOBIN CAMPERDOWN" }, { - "baseId": "30170", + "upstreamId": "30170", "text": "HEMOGLOBIN CARIBBEAN" }, { - "baseId": "30171", + "upstreamId": "30171", "text": "HEMOGLOBIN CASTILLA" }, { - "baseId": "30172", + "upstreamId": "30172", "text": "HEMOGLOBIN CHANDIGARH" }, { - "baseId": "30173", + "upstreamId": "30173", "text": "HEMOGLOBIN CHEMILLY" }, { - "baseId": "30174", + "upstreamId": "30174", "text": "HEMOGLOBIN CHEVERLY" }, { - "baseId": "30175", + "upstreamId": "30175", "text": "HEMOGLOBIN CHICO" }, { - "baseId": "30176", + "upstreamId": "30176", "text": "HEMOGLOBIN CHRISTCHURCH" }, { - "baseId": "30177", + "upstreamId": "30177", "text": "HEMOGLOBIN CITY OF HOPE" }, { - "baseId": "30177|30443|30648|44966", + "upstreamId": "30177|30443|30648|44966", "text": "Beta-thalassemia, dominant inclusion body type" }, { - "baseId": "30177|30191|30200|30228|30372|30489|44955|44986|44991|190271|320911|328030|432683|433086|433087|868119|868120|868121", + "upstreamId": "30177|30191|30200|30228|30372|30489|44955|44986|44991|190271|320911|328030|432683|433086|433087|868119|868120|868121", "text": "Hemoglobin E" }, { - "baseId": "30178", + "upstreamId": "30178", "text": "HEMOGLOBIN COCHIN-PORT ROYAL" }, { - "baseId": "30179", + "upstreamId": "30179", "text": "HEMOGLOBIN COCODY" }, { - "baseId": "30180", + "upstreamId": "30180", "text": "HEMOGLOBIN COLLINGWOOD" }, { - "baseId": "30181", + "upstreamId": "30181", "text": "HEMOGLOBIN CONNECTICUT" }, { - "baseId": "30182", + "upstreamId": "30182", "text": "HEMOGLOBIN COVENTRY" }, { - "baseId": "30183", + "upstreamId": "30183", "text": "HEMOGLOBIN COWTOWN" }, { - "baseId": "30184", + "upstreamId": "30184", "text": "HEMOGLOBIN CRANSTON" }, { - "baseId": "30185", + "upstreamId": "30185", "text": "HEMOGLOBIN CRETE" }, { - "baseId": "30186", + "upstreamId": "30186", "text": "HEMOGLOBIN CRETEIL" }, { - "baseId": "30187", + "upstreamId": "30187", "text": "HEMOGLOBIN D (BUSHMAN)" }, { - "baseId": "30188", + "upstreamId": "30188", "text": "HEMOGLOBIN D (GRANADA)" }, { - "baseId": "30189", + "upstreamId": "30189", "text": "HEMOGLOBIN D (IBADAN)" }, { - "baseId": "30190", + "upstreamId": "30190", "text": "HEMOGLOBIN D (IRAN)" }, { - "baseId": "30191", + "upstreamId": "30191", "text": "Hb D-Los Angeles" }, { - "baseId": "30191|44972", + "upstreamId": "30191|44972", "text": "HBB-Related Disorders" }, { - "baseId": "30191", + "upstreamId": "30191", "text": "Hemoglobin D disease" }, { - "baseId": "30192", + "upstreamId": "30192", "text": "HEMOGLOBIN D (OULED RABAH)" }, { - "baseId": "30193|30194|30200|30278|30297|30391|30449|30450|30486|30487|30488|30489|30490|30492|30493|30496|30498|30499|30500|30501|30503|30504|30505|30506|30508|30509|30510|30512|30513|30514|30515|30516|30526|30527|30531|30545|30553|30625|30655|44976|44996|45005|380597|857535", + "upstreamId": "30193|30194|30200|30278|30297|30391|30449|30450|30486|30487|30488|30489|30490|30492|30493|30496|30498|30499|30500|30501|30503|30504|30505|30506|30508|30509|30510|30512|30513|30514|30515|30516|30526|30527|30531|30545|30553|30625|30655|44976|44996|45005|380597|857535", "text": "Beta-plus-thalassemia" }, { - "baseId": "30195", + "upstreamId": "30195", "text": "HEMOGLOBIN DEER LODGE" }, { - "baseId": "30196", + "upstreamId": "30196", "text": "HEMOGLOBIN DETROIT" }, { - "baseId": "30197", + "upstreamId": "30197", "text": "HEMOGLOBIN DJELFA" }, { - "baseId": "30198", + "upstreamId": "30198", "text": "HEMOGLOBIN DOHA" }, { - "baseId": "30199", + "upstreamId": "30199", "text": "HEMOGLOBIN DUARTE" }, { - "baseId": "30200", + "upstreamId": "30200", "text": "Hemoglobin E/beta thalassemia disease" }, { - "baseId": "30200", + "upstreamId": "30200", "text": "Hemoglobin E disease" }, { - "baseId": "30201", + "upstreamId": "30201", "text": "HEMOGLOBIN E (SASKATOON)" }, { - "baseId": "30202", + "upstreamId": "30202", "text": "HEMOGLOBIN EDMONTON" }, { - "baseId": "30203", + "upstreamId": "30203", "text": "HEMOGLOBIN EXTREMADURA" }, { - "baseId": "30206", + "upstreamId": "30206", "text": "HEMOGLOBIN FUKUOKA" }, { - "baseId": "30207", + "upstreamId": "30207", "text": "HEMOGLOBIN FUKUYAMA" }, { - "baseId": "30208", + "upstreamId": "30208", "text": "HEMOGLOBIN G (ACCRA)" }, { - "baseId": "30208", + "upstreamId": "30208", "text": "HEMOGLOBIN YAIZU" }, { - "baseId": "30209", + "upstreamId": "30209", "text": "HEMOGLOBIN G (COPENHAGEN)" }, { - "baseId": "30210", + "upstreamId": "30210", "text": "HEMOGLOBIN G (COUSHATTA)" }, { - "baseId": "30210", + "upstreamId": "30210", "text": "HEMOGLOBIN G (SASKATOON)" }, { - "baseId": "30210", + "upstreamId": "30210", "text": "HEMOGLOBIN G (HSIN-CHU)" }, { - "baseId": "30210", + "upstreamId": "30210", "text": "HEMOGLOBIN G (TAEGU)" }, { - "baseId": "30211", + "upstreamId": "30211", "text": "HEMOGLOBIN G (FERRARA)" }, { - "baseId": "30212", + "upstreamId": "30212", "text": "HEMOGLOBIN G (GALVESTON)" }, { - "baseId": "30212", + "upstreamId": "30212", "text": "HEMOGLOBIN G (PORT ARTHUR)" }, { - "baseId": "30212", + "upstreamId": "30212", "text": "HEMOGLOBIN G (TEXAS)" }, { - "baseId": "30213", + "upstreamId": "30213", "text": "HEMOGLOBIN G (HSI-TSOU)" }, { - "baseId": "30214", + "upstreamId": "30214", "text": "HEMOGLOBIN G (MAKASSAR)" }, { - "baseId": "30215", + "upstreamId": "30215", "text": "HEMOGLOBIN G (SAN JOSE)" }, { - "baseId": "30216", + "upstreamId": "30216", "text": "HEMOGLOBIN G (SZUHU)" }, { - "baseId": "30216", + "upstreamId": "30216", "text": "HEMOGLOBIN GIFU" }, { - "baseId": "30217", + "upstreamId": "30217", "text": "HEMOGLOBIN G (TAIPEI)" }, { - "baseId": "30218", + "upstreamId": "30218", "text": "HEMOGLOBIN G (TAIWAN-AMI)" }, { - "baseId": "30219", + "upstreamId": "30219", "text": "HEMOGLOBIN GAINESVILLE-GA" }, { - "baseId": "30220", + "upstreamId": "30220", "text": "HEMOGLOBIN GAVELLO" }, { - "baseId": "30221", + "upstreamId": "30221", "text": "HEMOGLOBIN GEELONG" }, { - "baseId": "30221", + "upstreamId": "30221", "text": "HEMOGLOBIN JINAN" }, { - "baseId": "30222", + "upstreamId": "30222", "text": "HEMOGLOBIN GENOVA" }, { - "baseId": "30222", + "upstreamId": "30222", "text": "HEMOGLOBIN HYOGO" }, { - "baseId": "30223", + "upstreamId": "30223", "text": "HEMOGLOBIN GRANGE-BLANCHE" }, { - "baseId": "30224", + "upstreamId": "30224", "text": "HEMOGLOBIN GUN HILL" }, { - "baseId": "30225", + "upstreamId": "30225", "text": "HEMOGLOBIN HACETTEPE" }, { - "baseId": "30225", + "upstreamId": "30225", "text": "HEMOGLOBIN COMPLUTENSE" }, { - "baseId": "30226", + "upstreamId": "30226", "text": "HEMOGLOBIN HAFNIA" }, { - "baseId": "30227", + "upstreamId": "30227", "text": "HEMOGLOBIN HAMADAN" }, { - "baseId": "30228", + "upstreamId": "30228", "text": "HEMOGLOBIN HAMILTON" }, { - "baseId": "30229", + "upstreamId": "30229", "text": "HEMOGLOBIN HAMMERSMITH" }, { - "baseId": "30229", + "upstreamId": "30229", "text": "HEMOGLOBIN CHIBA" }, { - "baseId": "30230", + "upstreamId": "30230", "text": "HEMOGLOBIN HAZEBROUCK" }, { - "baseId": "30231", + "upstreamId": "30231", "text": "HEMOGLOBIN HEATHROW" }, { - "baseId": "30232", + "upstreamId": "30232", "text": "HEMOGLOBIN HELSINKI" }, { - "baseId": "30233", + "upstreamId": "30233", "text": "HEMOGLOBIN HENRI MONDOR" }, { - "baseId": "30234", + "upstreamId": "30234", "text": "HEMOGLOBIN HIJIYAMA" }, { - "baseId": "30235", + "upstreamId": "30235", "text": "HEMOGLOBIN HIKARI" }, { - "baseId": "30236", + "upstreamId": "30236", "text": "HEMOGLOBIN HIMEJI" }, { - "baseId": "30237", + "upstreamId": "30237", "text": "HEMOGLOBIN HINSDALE" }, { - "baseId": "30238", + "upstreamId": "30238", "text": "HEMOGLOBIN HIROSE" }, { - "baseId": "30239", + "upstreamId": "30239", "text": "HEMOGLOBIN HIROSHIMA" }, { - "baseId": "30240", + "upstreamId": "30240", "text": "HEMOGLOBIN HOFU" }, { - "baseId": "30243", + "upstreamId": "30243", "text": "HEMOGLOBIN HOTEL-DIEU" }, { - "baseId": "30244", + "upstreamId": "30244", "text": "HEMOGLOBIN I (HIGH WYCOMBE)" }, { - "baseId": "30246", + "upstreamId": "30246", "text": "HEMOGLOBIN INDIANAPOLIS" }, { - "baseId": "30247", + "upstreamId": "30247", "text": "HEMOGLOBIN SAINT ETIENNE" }, { - "baseId": "30248", + "upstreamId": "30248", "text": "HEMOGLOBIN J (ALTGELD GARDENS)" }, { - "baseId": "30249", + "upstreamId": "30249", "text": "HEMOGLOBIN J (AMIENS)" }, { - "baseId": "30250", + "upstreamId": "30250", "text": "HEMOGLOBIN J (ANTAKYA)" }, { - "baseId": "30251", + "upstreamId": "30251", "text": "HEMOGLOBIN J (AUCKLAND)" }, { - "baseId": "30252", + "upstreamId": "30252", "text": "HEMOGLOBIN J (BALTIMORE)" }, { - "baseId": "30254", + "upstreamId": "30254", "text": "HEMOGLOBIN J (CAIRO)" }, { - "baseId": "30255", + "upstreamId": "30255", "text": "HEMOGLOBIN J (CALABRIA)" }, { - "baseId": "30255", + "upstreamId": "30255", "text": "HEMOGLOBIN J (COSENZA)" }, { - "baseId": "30255", + "upstreamId": "30255", "text": "HEMOGLOBIN J (BARI)" }, { - "baseId": "30256", + "upstreamId": "30256", "text": "HEMOGLOBIN J (CHICAGO)" }, { - "baseId": "30257", + "upstreamId": "30257", "text": "HEMOGLOBIN J (CORDOBA)" }, { - "baseId": "30258", + "upstreamId": "30258", "text": "HEMOGLOBIN J (DALOA)" }, { - "baseId": "30259", + "upstreamId": "30259", "text": "HEMOGLOBIN J (GUANTANAMO)" }, { - "baseId": "30260", + "upstreamId": "30260", "text": "HEMOGLOBIN J (IRAN)" }, { - "baseId": "30262", + "upstreamId": "30262", "text": "HEMOGLOBIN J (LENS)" }, { - "baseId": "30263", + "upstreamId": "30263", "text": "HEMOGLOBIN J (LOME)" }, { - "baseId": "30264", + "upstreamId": "30264", "text": "HEMOGLOBIN J (LUHE)" }, { - "baseId": "30266", + "upstreamId": "30266", "text": "HEMOGLOBIN J (SICILIA)" }, { - "baseId": "30267", + "upstreamId": "30267", "text": "HEMOGLOBIN J (TAICHUNG)" }, { - "baseId": "30267", + "upstreamId": "30267", "text": "HEMOGLOBIN K (CAMEROON)" }, { - "baseId": "30268", + "upstreamId": "30268", "text": "HEMOGLOBIN JIANGHUA" }, { - "baseId": "30269", + "upstreamId": "30269", "text": "HEMOGLOBIN JOHNSTOWN" }, { - "baseId": "30271", + "upstreamId": "30271", "text": "HEMOGLOBIN K (IBADAN)" }, { - "baseId": "30272", + "upstreamId": "30272", "text": "HEMOGLOBIN K (WOOLWICH)" }, { - "baseId": "30275", + "upstreamId": "30275", "text": "HEMOGLOBIN KEMPSEY" }, { - "baseId": "30276", + "upstreamId": "30276", "text": "HEMOGLOBIN KENITRA" }, { - "baseId": "30277", + "upstreamId": "30277", "text": "HEMOGLOBIN KHARTOUM" }, { - "baseId": "30278", + "upstreamId": "30278", "text": "HEMOGLOBIN KNOSSOS" }, { - "baseId": "30278", + "upstreamId": "30278", "text": "Beta-knossos-thalassemia" }, { - "baseId": "30279", + "upstreamId": "30279", "text": "HEMOGLOBIN KOFU" }, { - "baseId": "30281", + "upstreamId": "30281", "text": "HEMOGLOBIN KORIYAMA" }, { - "baseId": "30282", + "upstreamId": "30282", "text": "HEMOGLOBIN MACHIDA" }, { - "baseId": "30283", + "upstreamId": "30283", "text": "HEMOGLOBIN KORLE-BU" }, { - "baseId": "30284", + "upstreamId": "30284", "text": "HEMOGLOBIN LA DESIRADE" }, { - "baseId": "30285", + "upstreamId": "30285", "text": "HEMOGLOBIN LAS PALMAS" }, { - "baseId": "30286", + "upstreamId": "30286", "text": "HEMOGLOBIN LEIDEN" }, { - "baseId": "30287", + "upstreamId": "30287", "text": "HEMOGLOBIN LINCOLN PARK" }, { - "baseId": "30287|30308|30343|30344", + "upstreamId": "30287|30308|30343|30344", "text": "HBB/HBD anti-Lepore" }, { - "baseId": "30288", + "upstreamId": "30288", "text": "HEMOGLOBIN LINKOPING" }, { - "baseId": "30288", + "upstreamId": "30288", "text": "HEMOGLOBIN MEILAHTI" }, { - "baseId": "30290|30386|32791|32793|32795|32798|32807|32821|32822|75388|249427|249428|249434|256186|256187|256188|256190|256192|256193|256194|256195|256196|256197|256198|328654|328655|328658|328660|328662|328667|328670|328672|328673|328681|328682|328683|338624|338630|338631|338644|338649|338650|338651|338653|338655|338656|338661|338663|338665|344704|344706|344708|344710|344712|344719|344720|344722|344723|344724|344726|344727|344730|344734|346097|346103|346104|346106|346108|346110|346111|346117|346121|346122|346126|346127|346132|361085|514047|727205|727207|740809|740810|755890|800132|800977|800978|800979|845491|877685|877686|877687|877688|877689|877690|877691|877692|877693|877694|877695|877696|877697|877698|877699|877700|877701|877702|877703|877704|877705|877706|877707|877708|877709|877710|877711|877712|877713|877714|877715|877716|877717|877718|877719|877720|877721|877722|877723|877724|877725|877726|877727|877728|877729|877730|877731|877732|877733|877734|880529|880530|880531", + "upstreamId": "30290|30386|32791|32793|32795|32798|32807|32821|32822|75388|249427|249428|249434|256186|256187|256188|256190|256192|256193|256194|256195|256196|256197|256198|328654|328655|328658|328660|328662|328667|328670|328672|328673|328681|328682|328683|338624|338630|338631|338644|338649|338650|338651|338653|338655|338656|338661|338663|338665|344704|344706|344708|344710|344712|344719|344720|344722|344723|344724|344726|344727|344730|344734|346097|346103|346104|346106|346108|346110|346111|346117|346121|346122|346126|346127|346132|361085|514047|727205|727207|740809|740810|755890|800132|800977|800978|800979|845491|877685|877686|877687|877688|877689|877690|877691|877692|877693|877694|877695|877696|877697|877698|877699|877700|877701|877702|877703|877704|877705|877706|877707|877708|877709|877710|877711|877712|877713|877714|877715|877716|877717|877718|877719|877720|877721|877722|877723|877724|877725|877726|877727|877728|877729|877730|877731|877732|877733|877734|880529|880530|880531", "text": "Hemolytic anemia" }, { - "baseId": "30291", + "upstreamId": "30291", "text": "HEMOGLOBIN LUFKIN" }, { - "baseId": "30292", + "upstreamId": "30292", "text": "HEMOGLOBIN LYON" }, { - "baseId": "30293", + "upstreamId": "30293", "text": "HEMOGLOBIN M (MILWAUKEE 1)" }, { - "baseId": "30293|30294|30417", + "upstreamId": "30293|30294|30417", "text": "Methemoglobinemia, beta-globin type" }, { - "baseId": "30294", + "upstreamId": "30294", "text": "HEMOGLOBIN M (MILWAUKEE 2)" }, { - "baseId": "30294", + "upstreamId": "30294", "text": "HEMOGLOBIN M (HYDE PARK)" }, { - "baseId": "30294", + "upstreamId": "30294", "text": "HEMOGLOBIN M (AKITA)" }, { - "baseId": "30295", + "upstreamId": "30295", "text": "HEMOGLOBIN M (SASKATOON)" }, { - "baseId": "30295", + "upstreamId": "30295", "text": "HEMOGLOBIN M (RADOM) METHEMOGLOBINEMIA, BETA TYPE" }, { - "baseId": "30296", + "upstreamId": "30296", "text": "HEMOGLOBIN MADRID" }, { - "baseId": "30297", + "upstreamId": "30297", "text": "HEMOGLOBIN MALAY" }, { - "baseId": "30297", + "upstreamId": "30297", "text": "Beta-malay-thalassemia" }, { - "baseId": "30298", + "upstreamId": "30298", "text": "HEMOGLOBIN MALMO" }, { - "baseId": "30299", + "upstreamId": "30299", "text": "HEMOGLOBIN MAPUTO" }, { - "baseId": "30302", + "upstreamId": "30302", "text": "HEMOGLOBIN MATERA" }, { - "baseId": "30303", + "upstreamId": "30303", "text": "HEMOGLOBIN MEQUON" }, { - "baseId": "30304", + "upstreamId": "30304", "text": "HEMOGLOBIN MCKEES ROCKS" }, { - "baseId": "30305", + "upstreamId": "30305", "text": "HEMOGLOBIN MINNEAPOLIS-LAOS" }, { - "baseId": "30307", + "upstreamId": "30307", "text": "HEMOGLOBIN MITO" }, { - "baseId": "30308", + "upstreamId": "30308", "text": "HEMOGLOBIN MIYADA" }, { - "baseId": "30309", + "upstreamId": "30309", "text": "HEMOGLOBIN MIYASHIRO" }, { - "baseId": "30310", + "upstreamId": "30310", "text": "HEMOGLOBIN MIZUHO" }, { - "baseId": "30311", + "upstreamId": "30311", "text": "HEMOGLOBIN MIZUNAMI" }, { - "baseId": "30312", + "upstreamId": "30312", "text": "HEMOGLOBIN MOBILE" }, { - "baseId": "30313", + "upstreamId": "30313", "text": "HEMOGLOBIN MORIGUCHI" }, { - "baseId": "30314", + "upstreamId": "30314", "text": "HEMOGLOBIN MOSCVA" }, { - "baseId": "30315", + "upstreamId": "30315", "text": "HEMOGLOBIN MOZHAISK" }, { - "baseId": "30316", + "upstreamId": "30316", "text": "HEMOGLOBIN N, BETA TYPE" }, { - "baseId": "30317", + "upstreamId": "30317", "text": "HEMOGLOBIN N (BALTIMORE)" }, { - "baseId": "30317", + "upstreamId": "30317", "text": "HEMOGLOBIN N (JENKINS)" }, { - "baseId": "30317", + "upstreamId": "30317", "text": "HEMOGLOBIN JENKINS" }, { - "baseId": "30317", + "upstreamId": "30317", "text": "HEMOGLOBIN HOPKINS 1" }, { - "baseId": "30317", + "upstreamId": "30317", "text": "HEMOGLOBIN KENWOOD" }, { - "baseId": "30318", + "upstreamId": "30318", "text": "HEMOGLOBIN N (MEMPHIS)" }, { - "baseId": "30319", + "upstreamId": "30319", "text": "HEMOGLOBIN N (SEATTLE)" }, { - "baseId": "30320", + "upstreamId": "30320", "text": "HEMOGLOBIN N (TIMONE)" }, { - "baseId": "30321", + "upstreamId": "30321", "text": "HEMOGLOBIN NAGASAKI" }, { - "baseId": "30322", + "upstreamId": "30322", "text": "HEMOGLOBIN NAGOYA" }, { - "baseId": "30323", + "upstreamId": "30323", "text": "HEMOGLOBIN NEVERS" }, { - "baseId": "30324", + "upstreamId": "30324", "text": "HEMOGLOBIN NEW MEXICO" }, { - "baseId": "30326", + "upstreamId": "30326", "text": "HEMOGLOBIN NEWCASTLE" }, { - "baseId": "30327", + "upstreamId": "30327", "text": "HEMOGLOBIN NITEROI" }, { - "baseId": "30328", + "upstreamId": "30328", "text": "HEMOGLOBIN NORTH CHICAGO" }, { - "baseId": "30330", + "upstreamId": "30330", "text": "HEMOGLOBIN NOTTINGHAM" }, { - "baseId": "30331", + "upstreamId": "30331", "text": "HEMOGLOBIN O (ARAB)" }, { - "baseId": "30331", + "upstreamId": "30331", "text": "HEMOGLOBIN EGYPT" }, { - "baseId": "30331", + "upstreamId": "30331", "text": "Sickle cell-Hemoglobin O Arab disease" }, { - "baseId": "30332", + "upstreamId": "30332", "text": "HEMOGLOBIN OCHO RIOS" }, { - "baseId": "30333", + "upstreamId": "30333", "text": "HEMOGLOBIN OHIO" }, { - "baseId": "30334", + "upstreamId": "30334", "text": "HEMOGLOBIN OKALOOSA" }, { - "baseId": "30335", + "upstreamId": "30335", "text": "HEMOGLOBIN OKAYAMA" }, { - "baseId": "30336", + "upstreamId": "30336", "text": "HEMOGLOBIN OKAZAKI" }, { - "baseId": "30337", + "upstreamId": "30337", "text": "HEMOGLOBIN OLMSTED" }, { - "baseId": "30338", + "upstreamId": "30338", "text": "HEMOGLOBIN OLOMOUC" }, { - "baseId": "30339", + "upstreamId": "30339", "text": "HEMOGLOBIN OLYMPIA" }, { - "baseId": "30340", + "upstreamId": "30340", "text": "HEMOGLOBIN OSLER" }, { - "baseId": "30340", + "upstreamId": "30340", "text": "HEMOGLOBIN NANCY" }, { - "baseId": "30340", + "upstreamId": "30340", "text": "HEMOGLOBIN FORT GORDON" }, { - "baseId": "30342", + "upstreamId": "30342", "text": "HEMOGLOBIN P" }, { - "baseId": "30342", + "upstreamId": "30342", "text": "HEMOGLOBIN P (GALVESTON)" }, { - "baseId": "30343", + "upstreamId": "30343", "text": "HEMOGLOBIN P (CONGO)" }, { - "baseId": "30344", + "upstreamId": "30344", "text": "HEMOGLOBIN P (NILOTIC)" }, { - "baseId": "30345", + "upstreamId": "30345", "text": "HEMOGLOBIN PALMERSTON NORTH" }, { - "baseId": "30346", + "upstreamId": "30346", "text": "HEMOGLOBIN PASADENA" }, { - "baseId": "30347", + "upstreamId": "30347", "text": "HEMOGLOBIN PERTH" }, { - "baseId": "30347", + "upstreamId": "30347", "text": "HEMOGLOBIN ABRAHAM LINCOLN" }, { - "baseId": "30347", + "upstreamId": "30347", "text": "HEMOGLOBIN KOBE" }, { - "baseId": "30348", + "upstreamId": "30348", "text": "HEMOGLOBIN PETERBOROUGH" }, { - "baseId": "30349", + "upstreamId": "30349", "text": "HEMOGLOBIN PHILLY" }, { - "baseId": "30350", + "upstreamId": "30350", "text": "HEMOGLOBIN PIERRE-BENITE" }, { - "baseId": "30351", + "upstreamId": "30351", "text": "Erythrocytosis" }, { - "baseId": "30353", + "upstreamId": "30353", "text": "HEMOGLOBIN QUIN-HAI" }, { - "baseId": "30354", + "upstreamId": "30354", "text": "HEMOGLOBIN RADCLIFFE" }, { - "baseId": "30355", + "upstreamId": "30355", "text": "HEMOGLOBIN PORTO ALEGRE" }, { - "baseId": "30356", + "upstreamId": "30356", "text": "HEMOGLOBIN POTOMAC" }, { - "baseId": "30357", + "upstreamId": "30357", "text": "HEMOGLOBIN PRESBYTERIAN" }, { - "baseId": "30358", + "upstreamId": "30358", "text": "HEMOGLOBIN PROVIDENCE" }, { - "baseId": "30359", + "upstreamId": "30359", "text": "HEMOGLOBIN PYRGOS" }, { - "baseId": "30360", + "upstreamId": "30360", "text": "HEMOGLOBIN RAHERE" }, { - "baseId": "30361", + "upstreamId": "30361", "text": "HEMOGLOBIN RAINIER" }, { - "baseId": "30362", + "upstreamId": "30362", "text": "HEMOGLOBIN RALEIGH" }, { - "baseId": "30363", + "upstreamId": "30363", "text": "HEMOGLOBIN RANDWICK" }, { - "baseId": "30364", + "upstreamId": "30364", "text": "HEMOGLOBIN REGINA" }, { - "baseId": "30365", + "upstreamId": "30365", "text": "HEMOGLOBIN RICHMOND" }, { - "baseId": "30366", + "upstreamId": "30366", "text": "HEMOGLOBIN RIO GRANDE" }, { - "baseId": "30367", + "upstreamId": "30367", "text": "HEMOGLOBIN RIVERDALE-BRONX" }, { - "baseId": "30369", + "upstreamId": "30369", "text": "HEMOGLOBIN ROSEAU-POINTE A PITRE" }, { - "baseId": "30370", + "upstreamId": "30370", "text": "HEMOGLOBIN ROTHSCHILD" }, { - "baseId": "30371", + "upstreamId": "30371", "text": "HEMOGLOBIN RUSH" }, { - "baseId": "30372", + "upstreamId": "30372", "text": "HEMOGLOBIN S" }, { - "baseId": "30372", + "upstreamId": "30372", "text": "Sickle cell disease and related diseases" }, { - "baseId": "30377", + "upstreamId": "30377", "text": "HEMOGLOBIN SABINE" }, { - "baseId": "30378", + "upstreamId": "30378", "text": "HEMOGLOBIN SAINT JACQUES" }, { - "baseId": "30379", + "upstreamId": "30379", "text": "HEMOGLOBIN SAITAMA" }, { - "baseId": "30380", + "upstreamId": "30380", "text": "HEMOGLOBIN SAKI" }, { - "baseId": "30381", + "upstreamId": "30381", "text": "HEMOGLOBIN SAN DIEGO" }, { - "baseId": "30382", + "upstreamId": "30382", "text": "HEMOGLOBIN SANTA ANA" }, { - "baseId": "30383", + "upstreamId": "30383", "text": "HEMOGLOBIN SAVANNAH" }, { - "baseId": "30384", + "upstreamId": "30384", "text": "HEMOGLOBIN SAVERNE" }, { - "baseId": "30385", + "upstreamId": "30385", "text": "HEMOGLOBIN SEATTLE" }, { - "baseId": "30387", + "upstreamId": "30387", "text": "HEMOGLOBIN SHANGHAI" }, { - "baseId": "30388", + "upstreamId": "30388", "text": "HEMOGLOBIN SHELBY" }, { - "baseId": "30388", + "upstreamId": "30388", "text": "HEMOGLOBIN LESLIE" }, { - "baseId": "30388", + "upstreamId": "30388", "text": "HEMOGLOBIN DEACONESS" }, { - "baseId": "30389", + "upstreamId": "30389", "text": "HEMOGLOBIN SHEPHERDS BUSH" }, { - "baseId": "30390", + "upstreamId": "30390", "text": "HEMOGLOBIN SHERWOOD FOREST" }, { - "baseId": "30391", + "upstreamId": "30391", "text": "HEMOGLOBIN SHOWA-YAKUSHIJI" }, { - "baseId": "30391", + "upstreamId": "30391", "text": "Beta-showa-yakushiji thalassemia" }, { - "baseId": "30393", + "upstreamId": "30393", "text": "HEMOGLOBIN ST. MANDE" }, { - "baseId": "30394", + "upstreamId": "30394", "text": "HEMOGLOBIN SOGN" }, { - "baseId": "30395", + "upstreamId": "30395", "text": "HEMOGLOBIN SOUTHAMPTON" }, { - "baseId": "30395", + "upstreamId": "30395", "text": "HEMOGLOBIN CASPER" }, { - "baseId": "30396", + "upstreamId": "30396", "text": "HEMOGLOBIN STANMORE" }, { - "baseId": "30397", + "upstreamId": "30397", "text": "HEMOGLOBIN STRASBOURG" }, { - "baseId": "30398", + "upstreamId": "30398", "text": "HEMOGLOBIN SOUTH FLORIDA" }, { - "baseId": "30399", + "upstreamId": "30399", "text": "HEMOGLOBIN ST. ANTOINE" }, { - "baseId": "30400", + "upstreamId": "30400", "text": "HEMOGLOBIN ST. LOUIS" }, { - "baseId": "30401", + "upstreamId": "30401", "text": "HEMOGLOBIN SUMMER HILL" }, { - "baseId": "30402", + "upstreamId": "30402", "text": "HEMOGLOBIN SUNNYBROOK" }, { - "baseId": "30403", + "upstreamId": "30403", "text": "HEMOGLOBIN SYDNEY" }, { - "baseId": "30404", + "upstreamId": "30404", "text": "HEMOGLOBIN SYRACUSE" }, { - "baseId": "30406", + "upstreamId": "30406", "text": "HEMOGLOBIN TA-LI" }, { - "baseId": "30409", + "upstreamId": "30409", "text": "HEMOGLOBIN TAKAMATSU" }, { - "baseId": "30410", + "upstreamId": "30410", "text": "HEMOGLOBIN TAMPA" }, { - "baseId": "30411", + "upstreamId": "30411", "text": "HEMOGLOBIN TIANSHUI" }, { - "baseId": "30412", + "upstreamId": "30412", "text": "HEMOGLOBIN TILBURG" }, { - "baseId": "30413", + "upstreamId": "30413", "text": "HEMOGLOBIN TOCHIGI" }, { - "baseId": "30414", + "upstreamId": "30414", "text": "HEMOGLOBIN TOURS" }, { - "baseId": "30415", + "upstreamId": "30415", "text": "HEMOGLOBIN TOYOAKE" }, { - "baseId": "30416", + "upstreamId": "30416", "text": "HEMOGLOBIN WILLAMETTE" }, { - "baseId": "30418", + "upstreamId": "30418", "text": "HEMOGLOBIN TUNIS" }, { - "baseId": "30419", + "upstreamId": "30419", "text": "HEMOGLOBIN TY GARD" }, { - "baseId": "30420", + "upstreamId": "30420", "text": "HEMOGLOBIN VAASA" }, { - "baseId": "30421", + "upstreamId": "30421", "text": "HEMOGLOBIN VANCOUVER" }, { - "baseId": "30422", + "upstreamId": "30422", "text": "HEMOGLOBIN VANDERBILT" }, { - "baseId": "30423", + "upstreamId": "30423", "text": "HEMOGLOBIN VICKSBURG" }, { - "baseId": "30424", + "upstreamId": "30424", "text": "HEMOGLOBIN VILLEJUIF" }, { - "baseId": "30425", + "upstreamId": "30425", "text": "HEMOGLOBIN VOLGA" }, { - "baseId": "30425", + "upstreamId": "30425", "text": "HEMOGLOBIN DRENTHE" }, { - "baseId": "30426", + "upstreamId": "30426", "text": "HEMOGLOBIN WARWICKSHIRE" }, { - "baseId": "30427", + "upstreamId": "30427", "text": "HEMOGLOBIN WIEN" }, { - "baseId": "30428", + "upstreamId": "30428", "text": "HEMOGLOBIN WINDSOR" }, { - "baseId": "30429", + "upstreamId": "30429", "text": "HEMOGLOBIN WOOD" }, { - "baseId": "30430", + "upstreamId": "30430", "text": "HEMOGLOBIN YAKIMA" }, { - "baseId": "30431", + "upstreamId": "30431", "text": "HEMOGLOBIN YAMAGATA" }, { - "baseId": "30432", + "upstreamId": "30432", "text": "HEMOGLOBIN YATSUSHIRO" }, { - "baseId": "30433", + "upstreamId": "30433", "text": "HEMOGLOBIN YOKOHAMA" }, { - "baseId": "30434", + "upstreamId": "30434", "text": "HEMOGLOBIN YORK" }, { - "baseId": "30435", + "upstreamId": "30435", "text": "HEMOGLOBIN YOSHIZUKA" }, { - "baseId": "30436", + "upstreamId": "30436", "text": "HEMOGLOBIN YPSILANTI" }, { - "baseId": "30438", + "upstreamId": "30438", "text": "HEMOGLOBIN YUSA" }, { - "baseId": "30439", + "upstreamId": "30439", "text": "Hemoglobin Zurich" }, { - "baseId": "30440|30441|30442|30444|30445|30446|30447|30452|30453|30454|30456|30457|30458|30459|30461|30462|30463|30464|30465|30466|30467|30468|30469|30470|30471|30472|30473|30475|30476|30477|30480|30481|30484|30485|30497|30543|30547|30551|30558|30599|30601|30602|34042|34043|44972|44974|47272|432675|432694|546034|546666|611303|611306|857566", + "upstreamId": "30440|30441|30442|30444|30445|30446|30447|30452|30453|30454|30456|30457|30458|30459|30461|30462|30463|30464|30465|30466|30467|30468|30469|30470|30471|30472|30473|30475|30476|30477|30480|30481|30484|30485|30497|30543|30547|30551|30558|30599|30601|30602|34042|34043|44972|44974|47272|432675|432694|546034|546666|611303|611306|857566", "text": "beta^0^ Thalassemia" }, { - "baseId": "30448", + "upstreamId": "30448", "text": "Beta-Houston-thalassemia" }, { - "baseId": "30448", + "upstreamId": "30448", "text": "Beta-plus-thalassemia, dominant" }, { - "baseId": "30450", + "upstreamId": "30450", "text": "HEMOGLOBIN CAGLIARI" }, { - "baseId": "30487|30493|30497|34042|970126", + "upstreamId": "30487|30493|30497|34042|970126", "text": "Beta thalassemia major" }, { - "baseId": "30490|30501|30503|30505|30522|30552|30553", + "upstreamId": "30490|30501|30503|30505|30522|30552|30553", "text": "Beta thalassemia intermedia" }, { - "baseId": "30517", + "upstreamId": "30517", "text": "HEMOGLOBIN BIRMINGHAM" }, { - "baseId": "30518", + "upstreamId": "30518", "text": "HEMOGLOBIN GALICIA" }, { - "baseId": "30519", + "upstreamId": "30519", "text": "HEMOGLOBIN SOUTH MILWAUKEE" }, { - "baseId": "30521", + "upstreamId": "30521", "text": "HEMOGLOBIN CALAIS" }, { - "baseId": "30523", + "upstreamId": "30523", "text": "HEMOGLOBIN IOWA" }, { - "baseId": "30525", + "upstreamId": "30525", "text": "HEMOGLOBIN ZENGCHENG" }, { - "baseId": "30526", + "upstreamId": "30526", "text": "HEMOGLOBIN TERRE HAUTE" }, { - "baseId": "30528", + "upstreamId": "30528", "text": "HEMOGLOBIN VALLETTA" }, { - "baseId": "30529", + "upstreamId": "30529", "text": "HEMOGLOBIN JACKSONVILLE" }, { - "baseId": "30530", + "upstreamId": "30530", "text": "HEMOGLOBIN CHESTERFIELD" }, { - "baseId": "30534", + "upstreamId": "30534", "text": "HEMOGLOBIN COIMBRA" }, { - "baseId": "30537", + "upstreamId": "30537", "text": "HEMOGLOBIN KODAIRA" }, { - "baseId": "30538", + "upstreamId": "30538", "text": "HEMOGLOBIN MONTREAL" }, { - "baseId": "30539", + "upstreamId": "30539", "text": "HEMOGLOBIN NIKOSIA" }, { - "baseId": "30540", + "upstreamId": "30540", "text": "HEMOGLOBIN ST. FRANCIS" }, { - "baseId": "30541", + "upstreamId": "30541", "text": "HEMOGLOBIN YAHATA" }, { - "baseId": "30542", + "upstreamId": "30542", "text": "HEMOGLOBIN RANCHO MIRAGE" }, { - "baseId": "30548", + "upstreamId": "30548", "text": "HEMOGLOBIN MUSCAT" }, { - "baseId": "30549", + "upstreamId": "30549", "text": "HEMOGLOBIN BAB-SAADOUN" }, { - "baseId": "30550", + "upstreamId": "30550", "text": "HEMOGLOBIN MANHATTAN" }, { - "baseId": "30552", + "upstreamId": "30552", "text": "HEMOGLOBIN BRESCIA" }, { - "baseId": "30552", + "upstreamId": "30552", "text": "HEMOGLOBIN DURHAM-N.C." }, { - "baseId": "30552|30639|857570", + "upstreamId": "30552|30639|857570", "text": "Beta-thalassemia dominant" }, { - "baseId": "30554", + "upstreamId": "30554", "text": "Beta-thalassemia intermedia, dominant" }, { - "baseId": "30556", + "upstreamId": "30556", "text": "HEMOGLOBIN BADEN" }, { - "baseId": "30557", + "upstreamId": "30557", "text": "HEMOGLOBIN GRAZ" }, { - "baseId": "30559", + "upstreamId": "30559", "text": "HEMOGLOBIN KARLSKOGA" }, { - "baseId": "30560", + "upstreamId": "30560", "text": "HEMOGLOBIN MUSKEGON" }, { - "baseId": "30561", + "upstreamId": "30561", "text": "HEMOGLOBIN TIGRAYE" }, { - "baseId": "30562", + "upstreamId": "30562", "text": "HEMOGLOBIN SARREBOURG" }, { - "baseId": "30563", + "upstreamId": "30563", "text": "HEMOGLOBIN SAINT NAZAIRE" }, { - "baseId": "30564", + "upstreamId": "30564", "text": "Hb camperdown" }, { - "baseId": "30566", + "upstreamId": "30566", "text": "HEMOGLOBIN MANUKAU" }, { - "baseId": "30567", + "upstreamId": "30567", "text": "HEMOGLOBIN VILLAVERDE" }, { - "baseId": "30568", + "upstreamId": "30568", "text": "HEMOGLOBIN HOWICK" }, { - "baseId": "30569", + "upstreamId": "30569", "text": "HEMOGLOBIN DENVER" }, { - "baseId": "30570", + "upstreamId": "30570", "text": "HEMOGLOBIN BECKMAN" }, { - "baseId": "30571", + "upstreamId": "30571", "text": "HEMOGLOBIN KOREA" }, { - "baseId": "30573", + "upstreamId": "30573", "text": "HEMOGLOBIN D (NEATH)" }, { - "baseId": "30574", + "upstreamId": "30574", "text": "HEMOGLOBIN WASHTENAW" }, { - "baseId": "30575", + "upstreamId": "30575", "text": "HEMOGLOBIN BRISTOL" }, { - "baseId": "30575", + "upstreamId": "30575", "text": "HEMOGLOBIN ALESHA" }, { - "baseId": "30576", + "upstreamId": "30576", "text": "HEMOGLOBIN DIEPPE" }, { - "baseId": "30577", + "upstreamId": "30577", "text": "HEMOGLOBIN HIGASHITOCHIGI" }, { - "baseId": "30577", + "upstreamId": "30577", "text": "HEMOGLOBIN HT" }, { - "baseId": "30578", + "upstreamId": "30578", "text": "HEMOGLOBIN TROLLHAETTAN" }, { - "baseId": "30579", + "upstreamId": "30579", "text": "HEMOGLOBIN TYNE" }, { - "baseId": "30583", + "upstreamId": "30583", "text": "HEMOGLOBIN HAKKARI" }, { - "baseId": "30584", + "upstreamId": "30584", "text": "HEMOGLOBIN PUTTELANGE" }, { - "baseId": "30585", + "upstreamId": "30585", "text": "HEMOGLOBIN ARTA" }, { - "baseId": "30586", + "upstreamId": "30586", "text": "HEMOGLOBIN AURORA" }, { - "baseId": "30587", + "upstreamId": "30587", "text": "HEMOGLOBIN NAKANO" }, { - "baseId": "30588", + "upstreamId": "30588", "text": "HEMOGLOBIN HINWIL" }, { - "baseId": "30589", + "upstreamId": "30589", "text": "HEMOGLOBIN DEBROUSSE" }, { - "baseId": "30591", + "upstreamId": "30591", "text": "HEMOGLOBIN TSURUMAI" }, { - "baseId": "30592", + "upstreamId": "30592", "text": "HEMOGLOBIN J (EUROPA)" }, { - "baseId": "30593", + "upstreamId": "30593", "text": "Hb aubenas" }, { - "baseId": "30595", + "upstreamId": "30595", "text": "HEMOGLOBIN COSTA RICA" }, { - "baseId": "30596", + "upstreamId": "30596", "text": "Beta-thalassemia, Ashkenazi Jewish type" }, { - "baseId": "30597", + "upstreamId": "30597", "text": "Hb niigata" }, { - "baseId": "30598", + "upstreamId": "30598", "text": "HEMOGLOBIN HOKUSETSU" }, { - "baseId": "30600", + "upstreamId": "30600", "text": "Hb gambara" }, { - "baseId": "30603", + "upstreamId": "30603", "text": "HEMOGLOBIN SILVER SPRINGS" }, { - "baseId": "30605", + "upstreamId": "30605", "text": "HEMOGLOBIN RIO CLARO" }, { - "baseId": "30606", + "upstreamId": "30606", "text": "HEMOGLOBIN NIJKERK" }, { - "baseId": "30607", + "upstreamId": "30607", "text": "HEMOGLOBIN CHILE" }, { - "baseId": "30608", + "upstreamId": "30608", "text": "HEMOGLOBIN TENDE" }, { - "baseId": "30609", + "upstreamId": "30609", "text": "HEMOGLOBIN LA ROCHE-SUR-YON" }, { - "baseId": "30610", + "upstreamId": "30610", "text": "HEMOGLOBIN IRAQ-HALABJA" }, { - "baseId": "30611", + "upstreamId": "30611", "text": "HEMOGLOBIN LUCKNOW" }, { - "baseId": "30612", + "upstreamId": "30612", "text": "HEMOGLOBIN SAGAMI" }, { - "baseId": "30613", + "upstreamId": "30613", "text": "HEMOGLOBIN HARROW" }, { - "baseId": "30614", + "upstreamId": "30614", "text": "HEMOGLOBIN BRIE COMTE ROBERT" }, { - "baseId": "30615", + "upstreamId": "30615", "text": "HEMOGLOBIN BARBIZON" }, { - "baseId": "30616", + "upstreamId": "30616", "text": "HEMOGLOBIN BOLOGNA-ST. ORSOLA" }, { - "baseId": "30617", + "upstreamId": "30617", "text": "HEMOGLOBIN VILA REAL" }, { - "baseId": "30618", + "upstreamId": "30618", "text": "HEMOGLOBIN SAALE" }, { - "baseId": "30619", + "upstreamId": "30619", "text": "HEMOGLOBIN BUSHEY" }, { - "baseId": "30621", + "upstreamId": "30621", "text": "HEMOGLOBIN TSUKUMI" }, { - "baseId": "30622", + "upstreamId": "30622", "text": "HEMOGLOBIN SITIA" }, { - "baseId": "30623", + "upstreamId": "30623", "text": "HEMOGLOBIN ERNZ" }, { - "baseId": "30624", + "upstreamId": "30624", "text": "HEMOGLOBIN RENERT" }, { - "baseId": "30626", + "upstreamId": "30626", "text": "HEMOGLOBIN WATFORD" }, { - "baseId": "30627", + "upstreamId": "30627", "text": "HEMOGLOBIN YAOUNDE" }, { - "baseId": "30628", + "upstreamId": "30628", "text": "HEMOGLOBIN MONT SAINT-AIGNAN" }, { - "baseId": "30629", + "upstreamId": "30629", "text": "HEMOGLOBIN 'T LANGE LAND" }, { - "baseId": "30631", + "upstreamId": "30631", "text": "HEMOGLOBIN ANTALYA" }, { - "baseId": "30632", + "upstreamId": "30632", "text": "HEMOGLOBIN LIMASSOL" }, { - "baseId": "30633", + "upstreamId": "30633", "text": "Thalassemia intermedia" }, { - "baseId": "30634", + "upstreamId": "30634", "text": "HEMOGLOBIN CANTERBURY" }, { - "baseId": "30636", + "upstreamId": "30636", "text": "HEMOGLOBIN MOLFETTA" }, { - "baseId": "30637", + "upstreamId": "30637", "text": "HEMOGLOBIN ILMENAU" }, { - "baseId": "30638", + "upstreamId": "30638", "text": "HEMOGLOBIN AUBAGNE" }, { - "baseId": "30640", + "upstreamId": "30640", "text": "HEMOGLOBIN KODAIRA II" }, { - "baseId": "30641", + "upstreamId": "30641", "text": "HEMOGLOBIN COLIMA" }, { - "baseId": "30642", + "upstreamId": "30642", "text": "HEMOGLOBIN POCOS DE CALDAS" }, { - "baseId": "30643", + "upstreamId": "30643", "text": "HEMOGLOBIN TRENTO" }, { - "baseId": "30644", + "upstreamId": "30644", "text": "HEMOGLOBIN SANTANDER" }, { - "baseId": "30645", + "upstreamId": "30645", "text": "HEMOGLOBIN BUZEN" }, { - "baseId": "30646", + "upstreamId": "30646", "text": "HEMOGLOBIN SANTA CLARA" }, { - "baseId": "30647", + "upstreamId": "30647", "text": "HEMOGLOBIN SPARTA" }, { - "baseId": "30650", + "upstreamId": "30650", "text": "HEMOGLOBIN CARDARELLI" }, { - "baseId": "30652", + "upstreamId": "30652", "text": "HEMOGLOBIN ROCKFORD" }, { - "baseId": "30653", + "upstreamId": "30653", "text": "HEMOGLOBIN TRIPOLI" }, { - "baseId": "30654", + "upstreamId": "30654", "text": "HEMOGLOBIN TIZI-OUZOU" }, { - "baseId": "30657", + "upstreamId": "30657", "text": "HEMOGLOBIN ZOETERWOUDE" }, { - "baseId": "30658", + "upstreamId": "30658", "text": "HEMOGLOBIN BREM-SUR-MER" }, { - "baseId": "30659", + "upstreamId": "30659", "text": "HEMOGLOBIN GELDROP ST. ANNA" }, { - "baseId": "30660", + "upstreamId": "30660", "text": "HEMOGLOBIN MARINEO" }, { - "baseId": "30661", + "upstreamId": "30661", "text": "HEMOGLOBIN LA CORUNA" }, { - "baseId": "30663", + "upstreamId": "30663", "text": "Hemoglobin constant spring" }, { - "baseId": "30663|30665|30684|30686|30690|30691|30695|30707|30731|30888|30914", + "upstreamId": "30663|30665|30684|30686|30690|30691|30695|30707|30731|30888|30914", "text": "Hemoglobin H disease, nondeletional" }, { - "baseId": "30664", + "upstreamId": "30664", "text": "HEMOGLOBIN SPANISH TOWN" }, { - "baseId": "30665", + "upstreamId": "30665", "text": "HEMOGLOBIN ICARIA" }, { - "baseId": "30666", + "upstreamId": "30666", "text": "HEMOGLOBIN KOYA DORA" }, { - "baseId": "30667", + "upstreamId": "30667", "text": "HEMOGLOBIN COLUMBIA MISSOURI" }, { - "baseId": "30667|30672|30678|30685|30750|30791|30812|30815|30822|30831|30846|30860|30861|30883|30895", + "upstreamId": "30667|30672|30678|30685|30750|30791|30812|30815|30822|30831|30846|30860|30861|30883|30895", "text": "Erythrocytosis, familial, 7" }, { - "baseId": "30668", + "upstreamId": "30668", "text": "HEMOGLOBIN WAYNE" }, { - "baseId": "30669", + "upstreamId": "30669", "text": "Hemoglobin Quong Sze" }, { - "baseId": "30670", + "upstreamId": "30670", "text": "HEMOGLOBIN EVANS" }, { - "baseId": "30671", + "upstreamId": "30671", "text": "HEMOGLOBIN SUAN-DOK" }, { - "baseId": "30672", + "upstreamId": "30672", "text": "HEMOGLOBIN J (BUDA)" }, { - "baseId": "30673", + "upstreamId": "30673", "text": "HEMOGLOBIN J (OXFORD)" }, { - "baseId": "30673", + "upstreamId": "30673", "text": "HEMOGLOBIN I (INTERLAKEN)" }, { - "baseId": "30673", + "upstreamId": "30673", "text": "HEMOGLOBIN N (COSENZA)" }, { - "baseId": "30674|30785", + "upstreamId": "30674|30785", "text": "HEMOGLOBIN I" }, { - "baseId": "30674|30785", + "upstreamId": "30674|30785", "text": "HEMOGLOBIN I (BURLINGTON)" }, { - "baseId": "30674|30785", + "upstreamId": "30674|30785", "text": "HEMOGLOBIN I (PHILADELPHIA)" }, { - "baseId": "30674|30785", + "upstreamId": "30674|30785", "text": "HEMOGLOBIN I (SKAMANIA)" }, { - "baseId": "30674|30785", + "upstreamId": "30674|30785", "text": "HEMOGLOBIN I (TEXAS)" }, { - "baseId": "30675", + "upstreamId": "30675", "text": "HEMOGLOBIN L (FERRARA)" }, { - "baseId": "30675", + "upstreamId": "30675", "text": "HEMOGLOBIN HASHARON" }, { - "baseId": "30675", + "upstreamId": "30675", "text": "HEMOGLOBIN SINAI" }, { - "baseId": "30675", + "upstreamId": "30675", "text": "HEMOGLOBIN SEALY" }, { - "baseId": "30676", + "upstreamId": "30676", "text": "HEMOGLOBIN MONTGOMERY" }, { - "baseId": "30676", + "upstreamId": "30676", "text": "HEMOGLOBIN BIRMINGHAM (USA)" }, { - "baseId": "30677", + "upstreamId": "30677", "text": "HEMOGLOBIN G (BRISTOL)" }, { - "baseId": "30677", + "upstreamId": "30677", "text": "HEMOGLOBIN D (BALTIMORE)" }, { - "baseId": "30677", + "upstreamId": "30677", "text": "HEMOGLOBIN D (ST. LOUIS)" }, { - "baseId": "30677", + "upstreamId": "30677", "text": "HEMOGLOBIN D (WASHINGTON)" }, { - "baseId": "30677", + "upstreamId": "30677", "text": "HEMOGLOBIN G (AZAKUOLI)" }, { - "baseId": "30677", + "upstreamId": "30677", "text": "HEMOGLOBIN G (KNOXVILLE)" }, { - "baseId": "30677", + "upstreamId": "30677", "text": "HEMOGLOBIN G (PHILADELPHIA)" }, { - "baseId": "30677", + "upstreamId": "30677", "text": "HEMOGLOBIN KNOXVILLE-1" }, { - "baseId": "30677", + "upstreamId": "30677", "text": "HEMOGLOBIN STANLEYVILLE-I" }, { - "baseId": "30678", + "upstreamId": "30678", "text": "HEMOGLOBIN INKSTER" }, { - "baseId": "30679", + "upstreamId": "30679", "text": "HEMOGLOBIN SUN PRAIRIE" }, { - "baseId": "30680", + "upstreamId": "30680", "text": "HEMOGLOBIN BOYLE HEIGHTS" }, { - "baseId": "30681", + "upstreamId": "30681", "text": "HEMOGLOBIN DAVENPORT" }, { - "baseId": "30685", + "upstreamId": "30685", "text": "HEMOGLOBIN HANAMAKI" }, { - "baseId": "30686", + "upstreamId": "30686", "text": "Alpha-thalassemia-2, nondeletional" }, { - "baseId": "30687", + "upstreamId": "30687", "text": "HEMOGLOBIN KURDISTAN" }, { - "baseId": "30688|30707", + "upstreamId": "30688|30707", "text": "HEMOGLOBIN CLINICO-MADRID" }, { - "baseId": "30689", + "upstreamId": "30689", "text": "HEMOGLOBIN PARK RIDGE" }, { - "baseId": "30690", + "upstreamId": "30690", "text": "HEMOGLOBIN AGRINIO" }, { - "baseId": "30692", + "upstreamId": "30692", "text": "HEMOGLOBIN SEAL ROCK" }, { - "baseId": "30693", + "upstreamId": "30693", "text": "HEMOGLOBIN ANAMOSA" }, { - "baseId": "30695", + "upstreamId": "30695", "text": "HEMOGLOBIN SALLANCHES" }, { - "baseId": "30696", + "upstreamId": "30696", "text": "Alpha trait thalassemia" }, { - "baseId": "30697", + "upstreamId": "30697", "text": "HEMOGLOBIN NATAL" }, { - "baseId": "30698", + "upstreamId": "30698", "text": "HEMOGLOBIN WATTS" }, { - "baseId": "30699", + "upstreamId": "30699", "text": "HEMOGLOBIN CONAKRY" }, { - "baseId": "30700", + "upstreamId": "30700", "text": "HEMOGLOBIN J (SARDEGNA)" }, { - "baseId": "30701", + "upstreamId": "30701", "text": "HEMOGLOBIN TARRANT" }, { - "baseId": "30702", + "upstreamId": "30702", "text": "HEMOGLOBIN ANTANANARIVO" }, { - "baseId": "30703", + "upstreamId": "30703", "text": "HEMOGLOBIN BOGHE" }, { - "baseId": "30704", + "upstreamId": "30704", "text": "HEMOGLOBIN TOULON" }, { - "baseId": "30705", + "upstreamId": "30705", "text": "HEMOGLOBIN CAMPINAS" }, { - "baseId": "30706", + "upstreamId": "30706", "text": "HEMOGLOBIN NIKAIA" }, { - "baseId": "30708", + "upstreamId": "30708", "text": "HEMOGLOBIN DARTMOUTH" }, { - "baseId": "30709", + "upstreamId": "30709", "text": "HEMOGLOBIN GERLAND" }, { - "baseId": "30710", + "upstreamId": "30710", "text": "HEMOGLOBIN MANITOBA" }, { - "baseId": "30711", + "upstreamId": "30711", "text": "HEMOGLOBIN NORTON" }, { - "baseId": "30712", + "upstreamId": "30712", "text": "HEMOGLOBIN LOMBARD" }, { - "baseId": "30713", + "upstreamId": "30713", "text": "HEMOGLOBIN SAN ANTONIO" }, { - "baseId": "30714", + "upstreamId": "30714", "text": "HEMOGLOBIN RAMPA" }, { - "baseId": "30715", + "upstreamId": "30715", "text": "HEMOGLOBIN MANAWATU" }, { - "baseId": "30716", + "upstreamId": "30716", "text": "HEMOGLOBIN G (HONOLULU)" }, { - "baseId": "30716", + "upstreamId": "30716", "text": "HEMOGLOBIN G (HONG KONG)" }, { - "baseId": "30716", + "upstreamId": "30716", "text": "HEMOGLOBIN G (SINGAPORE)" }, { - "baseId": "30716", + "upstreamId": "30716", "text": "HEMOGLOBIN G (CHINESE)" }, { - "baseId": "30718|30726|30727|30918|30919", + "upstreamId": "30718|30726|30727|30918|30919", "text": "Alpha plus thalassemia" }, { - "baseId": "30719", + "upstreamId": "30719", "text": "Alpha-thalassemia, zf type" }, { - "baseId": "30720", + "upstreamId": "30720", "text": "HEMOGLOBIN CHARTRES" }, { - "baseId": "30721", + "upstreamId": "30721", "text": "HEMOGLOBIN FUKUI" }, { - "baseId": "30722", + "upstreamId": "30722", "text": "HEMOGLOBIN PART-DIEU" }, { - "baseId": "30723", + "upstreamId": "30723", "text": "HEMOGLOBIN DECINES-CHARPIEU" }, { - "baseId": "30724", + "upstreamId": "30724", "text": "Hemoglobin Val de Marne" }, { - "baseId": "30727", + "upstreamId": "30727", "text": "HEMOGLOBIN ZURICH ALBISRIEDEN" }, { - "baseId": "30728", + "upstreamId": "30728", "text": "HEMOGLOBIN PASSY" }, { - "baseId": "30729", + "upstreamId": "30729", "text": "HEMOGLOBIN PLASENCIA" }, { - "baseId": "30730", + "upstreamId": "30730", "text": "HEMOGLOBIN KUROSAKI" }, { - "baseId": "30732", + "upstreamId": "30732", "text": "HEMOGLOBIN AL-HAMMADI RIYADH" }, { - "baseId": "30733", + "upstreamId": "30733", "text": "Alpha-thalassemia, Hmong type" }, { - "baseId": "30734", + "upstreamId": "30734", "text": "HEMOGLOBIN AICHI" }, { - "baseId": "30735", + "upstreamId": "30735", "text": "HEMOGLOBIN ALBANY-GEORGIA" }, { - "baseId": "30735", + "upstreamId": "30735", "text": "HEMOGLOBIN ALBANY-SUMA" }, { - "baseId": "30736", + "upstreamId": "30736", "text": "HEMOGLOBIN ANANTHARAJ" }, { - "baseId": "30737", + "upstreamId": "30737", "text": "HEMOGLOBIN ANN ARBOR" }, { - "baseId": "30738", + "upstreamId": "30738", "text": "HEMOGLOBIN ARYA" }, { - "baseId": "30739", + "upstreamId": "30739", "text": "HEMOGLOBIN ATAGO" }, { - "baseId": "30740", + "upstreamId": "30740", "text": "HEMOGLOBIN ATTLEBORO" }, { - "baseId": "30741", + "upstreamId": "30741", "text": "HEMOGLOBIN AZTEC" }, { - "baseId": "30742", + "upstreamId": "30742", "text": "HEMOGLOBIN BARI" }, { - "baseId": "30743", + "upstreamId": "30743", "text": "HEMOGLOBIN BEIJING" }, { - "baseId": "30745", + "upstreamId": "30745", "text": "HEMOGLOBIN BOURMEDES" }, { - "baseId": "30746", + "upstreamId": "30746", "text": "HEMOGLOBIN BROUSSAIS" }, { - "baseId": "30746", + "upstreamId": "30746", "text": "HEMOGLOBIN J (BROUSSAIS)" }, { - "baseId": "30746", + "upstreamId": "30746", "text": "HEMOGLOBIN TAGAWA I" }, { - "baseId": "30747", + "upstreamId": "30747", "text": "HEMOGLOBIN CATONSVILLE" }, { - "baseId": "30748", + "upstreamId": "30748", "text": "HEMOGLOBIN CHAD" }, { - "baseId": "30749", + "upstreamId": "30749", "text": "HEMOGLOBIN CHAPEL HILL" }, { - "baseId": "30750", + "upstreamId": "30750", "text": "HEMOGLOBIN CHESAPEAKE" }, { - "baseId": "30751", + "upstreamId": "30751", "text": "HEMOGLOBIN CHIAPAS" }, { - "baseId": "30752", + "upstreamId": "30752", "text": "HEMOGLOBIN CHICAGO" }, { - "baseId": "30753", + "upstreamId": "30753", "text": "HEMOGLOBIN CHONGQING" }, { - "baseId": "30754", + "upstreamId": "30754", "text": "HEMOGLOBIN CONTALDO" }, { - "baseId": "30755", + "upstreamId": "30755", "text": "HEMOGLOBIN CORDELE" }, { - "baseId": "30756", + "upstreamId": "30756", "text": "HEMOGLOBIN DAGESTAN" }, { - "baseId": "30757", + "upstreamId": "30757", "text": "HEMOGLOBIN DALLAS" }, { - "baseId": "30758", + "upstreamId": "30758", "text": "HEMOGLOBIN DANESHGAH-TEHRAN" }, { - "baseId": "30759", + "upstreamId": "30759", "text": "HEMOGLOBIN DENMARK HILL" }, { - "baseId": "30760", + "upstreamId": "30760", "text": "HEMOGLOBIN DUAN" }, { - "baseId": "30761", + "upstreamId": "30761", "text": "HEMOGLOBIN DUNN" }, { - "baseId": "30762", + "upstreamId": "30762", "text": "HEMOGLOBIN ETOBICOKE" }, { - "baseId": "30764", + "upstreamId": "30764", "text": "HEMOGLOBIN FERNDOWN" }, { - "baseId": "30765", + "upstreamId": "30765", "text": "HEMOGLOBIN FONTAINEBLEAU" }, { - "baseId": "30766", + "upstreamId": "30766", "text": "HEMOGLOBIN FORT DE FRANCE" }, { - "baseId": "30767", + "upstreamId": "30767", "text": "HEMOGLOBIN G (AUDHALI)" }, { - "baseId": "30768", + "upstreamId": "30768", "text": "HEMOGLOBIN G (FORT WORTH)" }, { - "baseId": "30768", + "upstreamId": "30768", "text": "HEMOGLOBIN FORT WORTH" }, { - "baseId": "30769", + "upstreamId": "30769", "text": "HEMOGLOBIN G (GEORGIA)" }, { - "baseId": "30770", + "upstreamId": "30770", "text": "HEMOGLOBIN G (NORFOLK)" }, { - "baseId": "30771", + "upstreamId": "30771", "text": "HEMOGLOBIN G (PEST)" }, { - "baseId": "30772", + "upstreamId": "30772", "text": "HEMOGLOBIN G (TAICHUNG)" }, { - "baseId": "30772", + "upstreamId": "30772", "text": "HEMOGLOBIN Q" }, { - "baseId": "30772", + "upstreamId": "30772", "text": "HEMOGLOBIN Q (THAILAND)" }, { - "baseId": "30772", + "upstreamId": "30772", "text": "HEMOGLOBIN MAHIDOL" }, { - "baseId": "30772", + "upstreamId": "30772", "text": "HEMOGLOBIN ASABARA" }, { - "baseId": "30772", + "upstreamId": "30772", "text": "HEMOGLOBIN KURASHIKI" }, { - "baseId": "30773", + "upstreamId": "30773", "text": "HEMOGLOBIN G (WAIMANALO)" }, { - "baseId": "30773", + "upstreamId": "30773", "text": "HEMOGLOBIN AIDA" }, { - "baseId": "30774", + "upstreamId": "30774", "text": "HEMOGLOBIN GARDEN STATE" }, { - "baseId": "30775", + "upstreamId": "30775", "text": "HEMOGLOBIN HANDSWORTH" }, { - "baseId": "30776", + "upstreamId": "30776", "text": "HEMOGLOBIN GRADY" }, { - "baseId": "30776", + "upstreamId": "30776", "text": "HEMOGLOBIN DAKAR" }, { - "baseId": "30777", + "upstreamId": "30777", "text": "HEMOGLOBIN GUANGZHOU" }, { - "baseId": "30777", + "upstreamId": "30777", "text": "HEMOGLOBIN HANGZHOU" }, { - "baseId": "30778", + "upstreamId": "30778", "text": "HEMOGLOBIN GUIZHOU" }, { - "baseId": "30778", + "upstreamId": "30778", "text": "HEMOGLOBIN UTSUNOMIYA" }, { - "baseId": "30779", + "upstreamId": "30779", "text": "HEMOGLOBIN HANDA" }, { - "baseId": "30779", + "upstreamId": "30779", "text": "HEMOGLOBIN MUNAKATA" }, { - "baseId": "30780", + "upstreamId": "30780", "text": "HEMOGLOBIN HARBIN" }, { - "baseId": "30781", + "upstreamId": "30781", "text": "HEMOGLOBIN HEKINAN" }, { - "baseId": "30782", + "upstreamId": "30782", "text": "HEMOGLOBIN HIROSAKI" }, { - "baseId": "30783", + "upstreamId": "30783", "text": "HEMOGLOBIN HOBART" }, { - "baseId": "30784", + "upstreamId": "30784", "text": "HEMOGLOBIN HOPKINS 2" }, { - "baseId": "30786", + "upstreamId": "30786", "text": "HEMOGLOBIN IWATA" }, { - "baseId": "30787", + "upstreamId": "30787", "text": "HEMOGLOBIN J (ABIDJAN)" }, { - "baseId": "30788", + "upstreamId": "30788", "text": "HEMOGLOBIN J (ANATOLIA)" }, { - "baseId": "30789", + "upstreamId": "30789", "text": "HEMOGLOBIN J (BIRMINGHAM)" }, { - "baseId": "30789", + "upstreamId": "30789", "text": "HEMOGLOBIN J (MEERUT)" }, { - "baseId": "30790", + "upstreamId": "30790", "text": "HEMOGLOBIN J (CAMAGUEY)" }, { - "baseId": "30791", + "upstreamId": "30791", "text": "HEMOGLOBIN J (CAPE TOWN)" }, { - "baseId": "30792", + "upstreamId": "30792", "text": "HEMOGLOBIN J (CUBUJUQUI)" }, { - "baseId": "30793", + "upstreamId": "30793", "text": "HEMOGLOBIN J (HABANA)" }, { - "baseId": "30794", + "upstreamId": "30794", "text": "HEMOGLOBIN J (KUROSH)" }, { - "baseId": "30795", + "upstreamId": "30795", "text": "HEMOGLOBIN J (MEDELLIN)" }, { - "baseId": "30796", + "upstreamId": "30796", "text": "HEMOGLOBIN J (NYANZA)" }, { - "baseId": "30797", + "upstreamId": "30797", "text": "HEMOGLOBIN J (PARIS 1)" }, { - "baseId": "30797", + "upstreamId": "30797", "text": "HEMOGLOBIN J (ALJEZUR)" }, { - "baseId": "30798", + "upstreamId": "30798", "text": "HEMOGLOBIN J (RAJAPPEN)" }, { - "baseId": "30799", + "upstreamId": "30799", "text": "HEMOGLOBIN J (ROVIGO)" }, { - "baseId": "30800", + "upstreamId": "30800", "text": "HEMOGLOBIN J (SINGA)" }, { - "baseId": "30802", + "upstreamId": "30802", "text": "HEMOGLOBIN J (TASHIKUERGAN)" }, { - "baseId": "30803", + "upstreamId": "30803", "text": "HEMOGLOBIN J (TONGARIKI)" }, { - "baseId": "30804", + "upstreamId": "30804", "text": "HEMOGLOBIN J (TORONTO)" }, { - "baseId": "30805", + "upstreamId": "30805", "text": "HEMOGLOBIN JACKSON" }, { - "baseId": "30806", + "upstreamId": "30806", "text": "HEMOGLOBIN KARACHI" }, { - "baseId": "30807", + "upstreamId": "30807", "text": "HEMOGLOBIN KARIYA" }, { - "baseId": "30808", + "upstreamId": "30808", "text": "HEMOGLOBIN KAWACHI" }, { - "baseId": "30809", + "upstreamId": "30809", "text": "HEMOGLOBIN KOELLIKER" }, { - "baseId": "30809", + "upstreamId": "30809", "text": "HEMOGLOBIN F (KOELLIKER)" }, { - "baseId": "30810", + "upstreamId": "30810", "text": "HEMOGLOBIN KOKURA" }, { - "baseId": "30810", + "upstreamId": "30810", "text": "HEMOGLOBIN BEILINSON" }, { - "baseId": "30810", + "upstreamId": "30810", "text": "HEMOGLOBIN MICHIGAN-I" }, { - "baseId": "30810", + "upstreamId": "30810", "text": "HEMOGLOBIN MICHIGAN-II" }, { - "baseId": "30810", + "upstreamId": "30810", "text": "HEMOGLOBIN L (GASLINI)" }, { - "baseId": "30810", + "upstreamId": "30810", "text": "HEMOGLOBIN TAGAWA II" }, { - "baseId": "30810", + "upstreamId": "30810", "text": "HEMOGLOBIN UMI" }, { - "baseId": "30810", + "upstreamId": "30810", "text": "HEMOGLOBIN MUGINO" }, { - "baseId": "30810", + "upstreamId": "30810", "text": "HEMOGLOBIN YUKUHASHI-2" }, { - "baseId": "30811", + "upstreamId": "30811", "text": "HEMOGLOBIN L (PERSIAN GULF)" }, { - "baseId": "30812", + "upstreamId": "30812", "text": "HEMOGLOBIN LEGNANO" }, { - "baseId": "30813", + "upstreamId": "30813", "text": "HEMOGLOBIN LE LAMENTIN" }, { - "baseId": "30814", + "upstreamId": "30814", "text": "HEMOGLOBIN LILLE" }, { - "baseId": "30815", + "upstreamId": "30815", "text": "HEMOGLOBIN LOIRE" }, { - "baseId": "30816", + "upstreamId": "30816", "text": "HEMOGLOBIN LUXEMBOURG" }, { - "baseId": "30817", + "upstreamId": "30817", "text": "HEMOGLOBIN M (BOSTON)" }, { - "baseId": "30817", + "upstreamId": "30817", "text": "HEMOGLOBIN GOTHENBURG" }, { - "baseId": "30817", + "upstreamId": "30817", "text": "HEMOGLOBIN M (GOTHENBURG)" }, { - "baseId": "30817", + "upstreamId": "30817", "text": "HEMOGLOBIN M (OSAKA)" }, { - "baseId": "30817", + "upstreamId": "30817", "text": "HEMOGLOBIN M (KISKUNHALAS)" }, { - "baseId": "30818", + "upstreamId": "30818", "text": "HEMOGLOBIN M (IWATE)" }, { - "baseId": "30818", + "upstreamId": "30818", "text": "HEMOGLOBIN M (KANKAKEE)" }, { - "baseId": "30818", + "upstreamId": "30818", "text": "HEMOGLOBIN M (OLDENBURG)" }, { - "baseId": "30818", + "upstreamId": "30818", "text": "HEMOGLOBIN M (SENDAI)" }, { - "baseId": "30819", + "upstreamId": "30819", "text": "HEMOGLOBIN MATSUE-OKI" }, { - "baseId": "30820", + "upstreamId": "30820", "text": "HEMOGLOBIN MEMPHIS" }, { - "baseId": "30821", + "upstreamId": "30821", "text": "HEMOGLOBIN MEXICO" }, { - "baseId": "30821", + "upstreamId": "30821", "text": "HEMOGLOBIN J" }, { - "baseId": "30821", + "upstreamId": "30821", "text": "HEMOGLOBIN J (MEXICO)" }, { - "baseId": "30821", + "upstreamId": "30821", "text": "HEMOGLOBIN J (PARIS 2)" }, { - "baseId": "30821", + "upstreamId": "30821", "text": "HEMOGLOBIN UPPSALA" }, { - "baseId": "30822", + "upstreamId": "30822", "text": "HEMOGLOBIN MILLEDGEVILLE" }, { - "baseId": "30823", + "upstreamId": "30823", "text": "HEMOGLOBIN MIYANO" }, { - "baseId": "30824", + "upstreamId": "30824", "text": "HEMOGLOBIN MIZUSHI" }, { - "baseId": "30825", + "upstreamId": "30825", "text": "HEMOGLOBIN MOABIT" }, { - "baseId": "30826", + "upstreamId": "30826", "text": "HEMOGLOBIN NECKER ENFANTS-MALADES" }, { - "baseId": "30827", + "upstreamId": "30827", "text": "HEMOGLOBIN NIGERIA" }, { - "baseId": "30828", + "upstreamId": "30828", "text": "HEMOGLOBIN NOKO" }, { - "baseId": "30829", + "upstreamId": "30829", "text": "HEMOGLOBIN NORFOLK" }, { - "baseId": "30829", + "upstreamId": "30829", "text": "HEMOGLOBIN J (NORFOLK)" }, { - "baseId": "30829", + "upstreamId": "30829", "text": "HEMOGLOBIN KAGOSHIMA" }, { - "baseId": "30829", + "upstreamId": "30829", "text": "HEMOGLOBIN NISHIK" }, { - "baseId": "30830", + "upstreamId": "30830", "text": "HEMOGLOBIN NOUAKCHOTT" }, { - "baseId": "30831", + "upstreamId": "30831", "text": "HEMOGLOBIN NUNOBIKI" }, { - "baseId": "30832", + "upstreamId": "30832", "text": "HEMOGLOBIN O (INDONESIA)" }, { - "baseId": "30832", + "upstreamId": "30832", "text": "HEMOGLOBIN O (BUGINESE-X)" }, { - "baseId": "30832", + "upstreamId": "30832", "text": "HEMOGLOBIN BUGINESE-X" }, { - "baseId": "30832", + "upstreamId": "30832", "text": "HEMOGLOBIN O (OLIVIERE)" }, { - "baseId": "30832", + "upstreamId": "30832", "text": "HEMOGLOBIN OLIVIERE" }, { - "baseId": "30833", + "upstreamId": "30833", "text": "HEMOGLOBIN O (PADOVA)" }, { - "baseId": "30834", + "upstreamId": "30834", "text": "HEMOGLOBIN OGI" }, { - "baseId": "30834", + "upstreamId": "30834", "text": "HEMOGLOBIN QUEENS" }, { - "baseId": "30835", + "upstreamId": "30835", "text": "HEMOGLOBIN OLEANDER" }, { - "baseId": "30836", + "upstreamId": "30836", "text": "HEMOGLOBIN OTTAWA" }, { - "baseId": "30836", + "upstreamId": "30836", "text": "HEMOGLOBIN SIAM" }, { - "baseId": "30837", + "upstreamId": "30837", "text": "HEMOGLOBIN OWARI" }, { - "baseId": "30838", + "upstreamId": "30838", "text": "HEMOGLOBIN PERSPOLIS" }, { - "baseId": "30839", + "upstreamId": "30839", "text": "HEMOGLOBIN PETAH TIKVA" }, { - "baseId": "30840", + "upstreamId": "30840", "text": "HEMOGLOBIN PONTOISE" }, { - "baseId": "30840", + "upstreamId": "30840", "text": "HEMOGLOBIN J (PONTOISE)" }, { - "baseId": "30841", + "upstreamId": "30841", "text": "HEMOGLOBIN PORT PHILLIP" }, { - "baseId": "30842", + "upstreamId": "30842", "text": "HEMOGLOBIN Q (INDIA)" }, { - "baseId": "30843", + "upstreamId": "30843", "text": "HEMOGLOBIN Q (IRAN)" }, { - "baseId": "30844", + "upstreamId": "30844", "text": "HEMOGLOBIN REIMS" }, { - "baseId": "30845", + "upstreamId": "30845", "text": "HEMOGLOBIN RUSS" }, { - "baseId": "30846", + "upstreamId": "30846", "text": "HEMOGLOBIN SASSARI" }, { - "baseId": "30847", + "upstreamId": "30847", "text": "HEMOGLOBIN SAVARIA" }, { - "baseId": "30848", + "upstreamId": "30848", "text": "HEMOGLOBIN SAWARA" }, { - "baseId": "30849", + "upstreamId": "30849", "text": "HEMOGLOBIN SETIF" }, { - "baseId": "30850", + "upstreamId": "30850", "text": "HEMOGLOBIN SHAARE ZEDEK" }, { - "baseId": "30851", + "upstreamId": "30851", "text": "HEMOGLOBIN SHENYANG" }, { - "baseId": "30852", + "upstreamId": "30852", "text": "HEMOGLOBIN SHIMONOSEKI" }, { - "baseId": "30852", + "upstreamId": "30852", "text": "HEMOGLOBIN HIKOSHIMA" }, { - "baseId": "30853", + "upstreamId": "30853", "text": "HEMOGLOBIN SHUANGFENG" }, { - "baseId": "30854", + "upstreamId": "30854", "text": "HEMOGLOBIN SINGAPORE" }, { - "baseId": "30855", + "upstreamId": "30855", "text": "HEMOGLOBIN ST. CLAUDE" }, { - "baseId": "30856", + "upstreamId": "30856", "text": "HEMOGLOBIN ST. LUKE'S" }, { - "baseId": "30857", + "upstreamId": "30857", "text": "HEMOGLOBIN STANLEYVILLE-II" }, { - "baseId": "30858", + "upstreamId": "30858", "text": "HEMOGLOBIN STRUMICA" }, { - "baseId": "30858", + "upstreamId": "30858", "text": "HEMOGLOBIN SERBIA" }, { - "baseId": "30859", + "upstreamId": "30859", "text": "HEMOGLOBIN SUNSHINE SETH" }, { - "baseId": "30860", + "upstreamId": "30860", "text": "HEMOGLOBIN SURESNES" }, { - "baseId": "30861", + "upstreamId": "30861", "text": "HEMOGLOBIN SWAN RIVER" }, { - "baseId": "30862", + "upstreamId": "30862", "text": "HEMOGLOBIN THAILAND" }, { - "baseId": "30863", + "upstreamId": "30863", "text": "HEMOGLOBIN TITUSVILLE" }, { - "baseId": "30864", + "upstreamId": "30864", "text": "HEMOGLOBIN TOKONAME" }, { - "baseId": "30865", + "upstreamId": "30865", "text": "HEMOGLOBIN TORINO" }, { - "baseId": "30866", + "upstreamId": "30866", "text": "HEMOGLOBIN TOTTORI" }, { - "baseId": "30867", + "upstreamId": "30867", "text": "HEMOGLOBIN TOYAMA" }, { - "baseId": "30868", + "upstreamId": "30868", "text": "HEMOGLOBIN TWIN PEAKS" }, { - "baseId": "30869", + "upstreamId": "30869", "text": "HEMOGLOBIN WUMING" }, { - "baseId": "30869", + "upstreamId": "30869", "text": "HEMOGLOBIN J (WENCHANG-WUMING)" }, { - "baseId": "30870", + "upstreamId": "30870", "text": "HEMOGLOBIN UBE-2" }, { - "baseId": "30871", + "upstreamId": "30871", "text": "HEMOGLOBIN UBE-4" }, { - "baseId": "30872", + "upstreamId": "30872", "text": "HEMOGLOBIN WESTMEAD" }, { - "baseId": "30873", + "upstreamId": "30873", "text": "HEMOGLOBIN WINNIPEG" }, { - "baseId": "30874", + "upstreamId": "30874", "text": "HEMOGLOBIN WOODVILLE" }, { - "baseId": "30875", + "upstreamId": "30875", "text": "HEMOGLOBIN ZAMBIA" }, { - "baseId": "30876", + "upstreamId": "30876", "text": "HEMOGLOBIN BELLIARD" }, { - "baseId": "30877", + "upstreamId": "30877", "text": "HEMOGLOBIN TONOSHO" }, { - "baseId": "30878", + "upstreamId": "30878", "text": "HEMOGLOBIN FUKUTOMI" }, { - "baseId": "30879", + "upstreamId": "30879", "text": "HEMOGLOBIN PORT HURON" }, { - "baseId": "30880", + "upstreamId": "30880", "text": "HEMOGLOBIN PAVIE" }, { - "baseId": "30881", + "upstreamId": "30881", "text": "HEMOGLOBIN QUESTEMBERT" }, { - "baseId": "30882", + "upstreamId": "30882", "text": "HEMOGLOBIN THIONVILLE" }, { - "baseId": "30883", + "upstreamId": "30883", "text": "HEMOGLOBIN KANAGAWA" }, { - "baseId": "30884", + "upstreamId": "30884", "text": "HEMOGLOBIN TURRIFF" }, { - "baseId": "30885", + "upstreamId": "30885", "text": "HEMOGLOBIN ZAIRE" }, { - "baseId": "30886", + "upstreamId": "30886", "text": "HEMOGLOBIN LUTON" }, { - "baseId": "30887", + "upstreamId": "30887", "text": "HEMOGLOBIN OZIERI" }, { - "baseId": "30888", + "upstreamId": "30888", "text": "HEMOGLOBIN ADANA" }, { - "baseId": "30889", + "upstreamId": "30889", "text": "HEMOGLOBIN AL-AIN ABU DHABI" }, { - "baseId": "30890", + "upstreamId": "30890", "text": "HEMOGLOBIN POITIERS" }, { - "baseId": "30891", + "upstreamId": "30891", "text": "HEMOGLOBIN CAEN" }, { - "baseId": "30892", + "upstreamId": "30892", "text": "HEMOGLOBIN YUDA" }, { - "baseId": "30893", + "upstreamId": "30893", "text": "HEMOGLOBIN CAPA" }, { - "baseId": "30894", + "upstreamId": "30894", "text": "HEMOGLOBIN MONTEFIORE" }, { - "baseId": "30895", + "upstreamId": "30895", "text": "HEMOGLOBIN ROUEN" }, { - "baseId": "30895", + "upstreamId": "30895", "text": "HEMOGLOBIN ETHIOPIA" }, { - "baseId": "30896", + "upstreamId": "30896", "text": "HEMOGLOBIN MELUSINE" }, { - "baseId": "30897", + "upstreamId": "30897", "text": "HEMOGLOBIN TAYBE" }, { - "baseId": "30898", + "upstreamId": "30898", "text": "HEMOGLOBIN CEMENELUM" }, { - "baseId": "30899", + "upstreamId": "30899", "text": "HEMOGLOBIN RAMONA" }, { - "baseId": "30900", + "upstreamId": "30900", "text": "HEMOGLOBIN TATRAS" }, { - "baseId": "30901", + "upstreamId": "30901", "text": "HEMOGLOBIN LISBON" }, { - "baseId": "30902", + "upstreamId": "30902", "text": "HEMOGLOBIN ROANNE" }, { - "baseId": "30903", + "upstreamId": "30903", "text": "HEMOGLOBIN MALHACEN" }, { - "baseId": "30904", + "upstreamId": "30904", "text": "HEMOGLOBIN TUNIS-BIZERTE" }, { - "baseId": "30905", + "upstreamId": "30905", "text": "HEMOGLOBIN BOIS GUILLAUME" }, { - "baseId": "30906", + "upstreamId": "30906", "text": "HEMOGLOBIN MANTES-LA-JOLIE" }, { - "baseId": "30907", + "upstreamId": "30907", "text": "HEMOGLOBIN MOSELLA" }, { - "baseId": "30908", + "upstreamId": "30908", "text": "HEMOGLOBIN FUCHU-I" }, { - "baseId": "30909", + "upstreamId": "30909", "text": "HEMOGLOBIN FUCHU-II" }, { - "baseId": "30910", + "upstreamId": "30910", "text": "HEMOGLOBIN GOUDA" }, { - "baseId": "30911", + "upstreamId": "30911", "text": "HEMOGLOBIN J (BISKRA)" }, { - "baseId": "30912", + "upstreamId": "30912", "text": "HEMOGLOBIN GODAVARI" }, { - "baseId": "30913", + "upstreamId": "30913", "text": "HEMOGLOBIN OITA" }, { - "baseId": "30914", + "upstreamId": "30914", "text": "HEMOGLOBIN AGHIA SOPHIA" }, { - "baseId": "30915", + "upstreamId": "30915", "text": "HEMOGLOBIN CHAROLLES" }, { - "baseId": "30916", + "upstreamId": "30916", "text": "HEMOGLOBIN ROUBAIX" }, { - "baseId": "30917", + "upstreamId": "30917", "text": "HEMOGLOBIN DOUALA" }, { - "baseId": "30920", + "upstreamId": "30920", "text": "HEMOGLOBIN DELFZICHT" }, { - "baseId": "30921", + "upstreamId": "30921", "text": "HEMOGLOBIN SARATOGA SPRINGS" }, { - "baseId": "30922", + "upstreamId": "30922", "text": "HEMOGLOBIN DIE" }, { - "baseId": "30923", + "upstreamId": "30923", "text": "HEMOGLOBIN BEZIERS" }, { - "baseId": "30924", + "upstreamId": "30924", "text": "HEMOGLOBIN BUFFALO" }, { - "baseId": "30925", + "upstreamId": "30925", "text": "HEMOGLOBIN VILLEURBANNE" }, { - "baseId": "30926", + "upstreamId": "30926", "text": "HEMOGLOBIN TOKYO" }, { - "baseId": "30927", + "upstreamId": "30927", "text": "HEMOGLOBIN TAMANO" }, { - "baseId": "30928", + "upstreamId": "30928", "text": "HEMOGLOBIN RICCARTON" }, { - "baseId": "30929", + "upstreamId": "30929", "text": "HEMOGLOBIN OEGSTGEEST" }, { - "baseId": "30930", + "upstreamId": "30930", "text": "HEMOGLOBIN LAMEN ISLAND" }, { - "baseId": "30932", + "upstreamId": "30932", "text": "HEMOGLOBIN AUCKLAND" }, { - "baseId": "30934|30935", + "upstreamId": "30934|30935", "text": "Heme oxygenase 1 deficiency" }, { - "baseId": "30936", + "upstreamId": "30936", "text": "Pulmonary disease, chronic obstructive, susceptibility to" }, { - "baseId": "30937", + "upstreamId": "30937", "text": "HAPTOGLOBIN, ALPHA-1, FAST-SLOW POLYMORPHISM" }, { - "baseId": "30938", + "upstreamId": "30938", "text": "Haptoglobin, alpha-2" }, { - "baseId": "30939|30940|30941|227380", + "upstreamId": "30939|30940|30941|227380", "text": "Anhaptoglobinemia" }, { - "baseId": "30939", + "upstreamId": "30939", "text": "Hypohaptoglobinemia" }, { - "baseId": "30942|30943", + "upstreamId": "30942|30943", "text": "Granulosa cell tumor of the ovary" }, { - "baseId": "30942|30943", + "upstreamId": "30942|30943", "text": "Thecoma, somatic" }, { - "baseId": "30945", + "upstreamId": "30945", "text": "Ventricular tachycardia, somatic" }, { - "baseId": "30949|30955|30956|77518|77520|77561|317865|317866|317877|317878|317884|317886|317888|317890|317901|317902|325742|325744|325757|325760|331990|331994|331999|332000|332003|332006|332018|332032|332034|333500|333506|333512|333518|870136|870137|870138|870139|870140|870141|870142|870143|872262", + "upstreamId": "30949|30955|30956|77518|77520|77561|317865|317866|317877|317878|317884|317886|317888|317890|317901|317902|325742|325744|325757|325760|331990|331994|331999|332000|332003|332006|332018|332032|332034|333500|333506|333512|333518|870136|870137|870138|870139|870140|870141|870142|870143|872262", "text": "Nonepidermolytic palmoplantar keratoderma" }, { - "baseId": "30957", + "upstreamId": "30957", "text": "Keratosis palmoplantaris striata 3" }, { - "baseId": "30958", + "upstreamId": "30958", "text": "Ichthyosis histrix, curth-macklin type" }, { - "baseId": "30960", + "upstreamId": "30960", "text": "Epidermolytic hyperkeratosis, late-onset" }, { - "baseId": "30961|30962|30963|30964|192402|194412|195978|249359|249360|249361|275830|275837|275838|275972|276046|276047|276058|276059|276074|513227|612232|612233|612234|612235|612236|612237|612238|612239|612240|612241|612242|612243|612244|612245|612246|612247|612248|612249|612250|800346|861875|861876|861877|861878|861879|861880|861881|864958|864959|864960", + "upstreamId": "30961|30962|30963|30964|192402|194412|195978|249359|249360|249361|275830|275837|275838|275972|276046|276047|276058|276059|276074|513227|612232|612233|612234|612235|612236|612237|612238|612239|612240|612241|612242|612243|612244|612245|612246|612247|612248|612249|612250|800346|861875|861876|861877|861878|861879|861880|861881|864958|864959|864960", "text": "Achromatopsia 4" }, { - "baseId": "30965|188775|291123|291124|291125|291130|291131|291137|291139|292094|292096|292101|292117|292118|292119|292121|292122|295451|295455|295471|295472|295475|295476|295477|295492|295493|295500|295503|295638|295642|295646|295648|295649|295650|295656|295667|481553|622331|889391|889392|889393|889394|889395|889396|889397|889398|889399|889400|889401|889402|889403|889404|891690", + "upstreamId": "30965|188775|291123|291124|291125|291130|291131|291137|291139|292094|292096|292101|292117|292118|292119|292121|292122|295451|295455|295471|295472|295475|295476|295477|295492|295493|295500|295503|295638|295642|295646|295648|295649|295650|295656|295667|481553|622331|889391|889392|889393|889394|889395|889396|889397|889398|889399|889400|889401|889402|889403|889404|891690", "text": "Congenital stationary night blindness, autosomal dominant 3" }, { - "baseId": "30966|30967|30968|30969|30970|30971|30977|30978|30979|30985|30986|30987|30988|30989|30990|30992|30996|30997|205793|213658|424627|623387|677060|679724|742480|804854|804855|805116|964535|969616", + "upstreamId": "30966|30967|30968|30969|30970|30971|30977|30978|30979|30985|30986|30987|30988|30989|30990|30992|30996|30997|205793|213658|424627|623387|677060|679724|742480|804854|804855|805116|964535|969616", "text": "Pseudohypoparathyroidism" }, { - "baseId": "30967|30968|30977|30979|30980|30981|30982|30986|30987|30989|30992|205793|424627|440007|575506|609150|622923|969617|983470", + "upstreamId": "30967|30968|30977|30979|30980|30981|30982|30986|30987|30989|30992|205793|424627|440007|575506|609150|622923|969617|983470", "text": "Pseudopseudohypoparathyroidism" }, { - "baseId": "30968|30977|30988|30991", + "upstreamId": "30968|30977|30988|30991", "text": "Progressive osseous heteroplasia" }, { - "baseId": "30972|30973|30974|30976|30984|206650|206651|206652|206653|612198|791993|791994", + "upstreamId": "30972|30973|30974|30976|30984|206650|206651|206652|206653|612198|791993|791994", "text": "McCune-Albright syndrome" }, { - "baseId": "30972|30973", + "upstreamId": "30972|30973", "text": "Sex cord-stromal tumor" }, { - "baseId": "30972|30973|30976", + "upstreamId": "30972|30973|30976", "text": "Cushing's syndrome" }, { - "baseId": "30972|30973|30974|30975", + "upstreamId": "30972|30973|30974|30975", "text": "Pituitary adenoma 3, multiple types" }, { - "baseId": "30976", + "upstreamId": "30976", "text": "PITUITARY TUMOR 3, GROWTH HORMONE-SECRETING, SOMATIC" }, { - "baseId": "30976", + "upstreamId": "30976", "text": "Polyostotic fibrous dysplasia, somatic, mosaic" }, { - "baseId": "30983", + "upstreamId": "30983", "text": "PSEUDOHYPOPARATHYROIDISM, TYPE IA, WITH TESTOTOXICOSIS" }, { - "baseId": "30994", + "upstreamId": "30994", "text": "Prolonged bleeding time, brachydactyly, and mental retardation" }, { - "baseId": "30998|38700|38701|38702|213658", + "upstreamId": "30998|38700|38701|38702|213658", "text": "Pseudohypoparathyroidism type 1C" }, { - "baseId": "31000", + "upstreamId": "31000", "text": "GMP REDUCTASE POLYMORPHISM" }, { - "baseId": "31001|31002|31003|31004|132698|132703|132705|132706|153653|273740|346745|426238|971087", + "upstreamId": "31001|31002|31003|31004|132698|132703|132705|132706|153653|273740|346745|426238|971087", "text": "Ateleiotic dwarfism" }, { - "baseId": "31005|31006|31015|44937|44938|44939|44940|71561|94317|171271|171272|171273|195265|195598|268806|271375|273740|302808|302809|306162|306163|306164|306165|310912|310914|310916|310923|310924|311095|311098|311103|311105|311115|346745|588296|614551|620259|620260|744281|750614|897984|897985|897986|897987|897988|897989|897990|897991|897992|897993|897994|897995|897996|897997|897998|897999|898000|898001|898002|900353|900354|900355|900356", + "upstreamId": "31005|31006|31015|44937|44938|44939|44940|71561|94317|171271|171272|171273|195265|195598|268806|271375|273740|302808|302809|306162|306163|306164|306165|310912|310914|310916|310923|310924|311095|311098|311103|311105|311115|346745|588296|614551|620259|620260|744281|750614|897984|897985|897986|897987|897988|897989|897990|897991|897992|897993|897994|897995|897996|897997|897998|897999|898000|898001|898002|900353|900354|900355|900356", "text": "Isolated growth hormone deficiency type 1B" }, { - "baseId": "31007|31009|31010|31011|31012|31014|31016|31017|31018|31019|31021|31022|31023|31024|192241|273740|346745", + "upstreamId": "31007|31009|31010|31011|31012|31014|31016|31017|31018|31019|31021|31022|31023|31024|192241|273740|346745", "text": "Autosomal dominant isolated somatotropin deficiency" }, { - "baseId": "31008|31013|31020|273740|346745", + "upstreamId": "31008|31013|31020|273740|346745", "text": "Short stature due to growth hormone qualitative anomaly" }, { - "baseId": "31025|31026|31027", + "upstreamId": "31025|31026|31027", "text": "GC1/GC2 POLYMORPHISM" }, { - "baseId": "31028|31029|31030|31031|31032|31033|31034", + "upstreamId": "31028|31029|31030|31031|31032|31033|31034", "text": "Isolated growth hormone deficiency, type 4" }, { - "baseId": "31038|31039|31040|31041|31042|209858|209860|209861|239859|239860|239861|239862|239863|239864|239865|298319|298323|298324|298325|298328|298331|298335|298336|298339|298340|298348|298354|300625|300626|300636|300637|300639|300640|304909|304910|304913|304923|304948|304960|304961|304962|304965|304969|304972|304988|304989|305124|305125|305133|305146|305149|305150|305151|305155|305168|305169|305172|305175|305183|305187|395154|395163|395638|395639|453625|455058|455059|455063|455250|455262|455718|455721|455724|455972|455980|455980|455987|455990|455994|514268|521254|521256|521258|521545|521548|521618|521864|521865|521866|560385|560387|560389|560391|560393|560496|560498|563237|563246|563251|565202|565211|634451|634452|634454|634456|634457|634458|634459|634461|634462|634463|634464|651332|651385|651395|651399|651484|651486|683746|683747|894835|894836|894837|894838|894839|894841|894842|894843|894844|894845|894846|894847|894848|894849|894850|894851|894852|894853|896143|961821|961822|975858", + "upstreamId": "31038|31039|31040|31041|31042|209858|209860|209861|239859|239860|239861|239862|239863|239864|239865|298319|298323|298324|298325|298328|298331|298335|298336|298339|298340|298348|298354|300625|300626|300636|300637|300639|300640|304909|304910|304913|304923|304948|304960|304961|304962|304965|304969|304972|304988|304989|305124|305125|305133|305146|305149|305150|305151|305155|305168|305169|305172|305175|305183|305187|395154|395163|395638|395639|453625|455058|455059|455063|455250|455262|455718|455721|455724|455972|455980|455980|455987|455990|455994|514268|521254|521256|521258|521545|521548|521618|521864|521865|521866|560385|560387|560389|560391|560393|560496|560498|563237|563246|563251|565202|565211|634451|634452|634454|634456|634457|634458|634459|634461|634462|634463|634464|651332|651385|651395|651399|651484|651486|683746|683747|894835|894836|894837|894838|894839|894841|894842|894843|894844|894845|894846|894847|894848|894849|894850|894851|894852|894853|896143|961821|961822|975858", "text": "Capillary malformation-arteriovenous malformation 1" }, { - "baseId": "31043", + "upstreamId": "31043", "text": "GNB3 POLYMORPHISM" }, { - "baseId": "31044", + "upstreamId": "31044", "text": "Hereditary neutrophilia" }, { - "baseId": "31045|31046|31047|31048|31049|31050|31051|31052|31053|31053|31058|31059|31060|31061|38697|38697|38698|104011|104012|104012|104015|104015|104017|104018|104022|104023|104026|104027|104027|104029|104036|104036|104037|104042|104042|104044|104049|104051|104051|104055|104057|104057|104061|104069|104070|104070|104072|104072|104073|104073|104074|104076|104081|104081|104083|104138|104138|191016|193498|193498|199868|199869|256200|256200|256201|256201|256202|256202|328684|328690|328691|338668|338672|344735|344739|344741|344743|346134|346138|346138|430968|441960|441962|445782|445783|468266|480432|480432|531144|571526|571530|571532|577633|577634|577635|577635|577636|580331|580331|580334|580336|580372|580515|620591|646081|646082|646083|646084|646084|646085|646086|653280|694088|776327|791780|791781|798712|798713|798714|798715|798716|821098|845492|845493|852752|877735|877736|877737|877737|877738|877739|877740|877741|877742|877743|877744|877745|877746|877747|877748|880532|880533|880534|880535|880536|880537|928337|928338|928339|928340|937984|937985|964880|971080", + "upstreamId": "31045|31046|31047|31048|31049|31050|31051|31052|31053|31053|31058|31059|31060|31061|38697|38697|38698|104011|104012|104012|104015|104015|104017|104018|104022|104023|104026|104027|104027|104029|104036|104036|104037|104042|104042|104044|104049|104051|104051|104055|104057|104057|104061|104069|104070|104070|104072|104072|104073|104073|104074|104076|104081|104081|104083|104138|104138|191016|193498|193498|199868|199869|256200|256200|256201|256201|256202|256202|328684|328690|328691|338668|338672|344735|344739|344741|344743|346134|346138|346138|430968|441960|441962|445782|445783|468266|480432|480432|531144|571526|571530|571532|577633|577634|577635|577635|577636|580331|580331|580334|580336|580372|580515|620591|646081|646082|646083|646084|646084|646085|646086|653280|694088|776327|791780|791781|798712|798713|798714|798715|798716|821098|845492|845493|852752|877735|877736|877737|877737|877738|877739|877740|877741|877742|877743|877744|877745|877746|877747|877748|880532|880533|880534|880535|880536|880537|928337|928338|928339|928340|937984|937985|964880|971080", "text": "Grn-related frontotemporal lobar degeneration with Tdp43 inclusions" }, { - "baseId": "31053|31059|38697|104012|104015|104017|104018|104023|104027|104036|104037|104042|104049|104051|104055|104057|104070|104072|104073|104081|104083|104138|191016|193498|256200|256201|256202|346138|441960|441962|445782|445783|468266|480432|513644|531144|571526|571530|571532|577635|577636|580331|580334|580336|580372|580515|646081|646082|646083|646084|646085|646086|653280|694088|776327|821098|845492|845493|852752|877737|919732|928337|928338|928339|928340|937984|937985", + "upstreamId": "31053|31059|38697|104012|104015|104017|104018|104023|104027|104036|104037|104042|104049|104051|104055|104057|104070|104072|104073|104081|104083|104138|191016|193498|256200|256201|256202|346138|441960|441962|445782|445783|468266|480432|513644|531144|571526|571530|571532|577635|577636|580331|580334|580336|580372|580515|646081|646082|646083|646084|646085|646086|653280|694088|776327|821098|845492|845493|852752|877737|919732|928337|928338|928339|928340|937984|937985", "text": "Ceroid lipofuscinosis, neuronal, 11" }, { - "baseId": "31054|31056|31059|104138", + "upstreamId": "31054|31056|31059|104138", "text": "Primary progressive aphasia" }, { - "baseId": "31062|31063|31064|31065|31066|31067|31068|31069|31070|31071|31072|31073|31075|31321|31338|38410|40123|132059|132060|150301|150302|178326|178329|178331|178333|178334|178335|178336|178337|178338|178341|178342|178343|181427|263181|269442|293990|293993|293994|294007|294008|294016|294023|294024|294025|294039|294055|294056|295417|295419|295420|295422|295424|295441|295462|295468|295484|295487|295504|295507|295508|295509|299209|299211|299215|299216|299217|299227|299229|299236|299238|299242|299243|299245|299247|299248|299255|299257|299258|299261|299264|299265|299273|299275|299278|299279|299280|299281|299283|299284|299286|299287|299288|299291|361060|361062|443633|482006|620173|626007|697013|709414|790043|790044|892069|892070|892071|892072|892073|892074|892075|892076|892077|892078|892079|892080|892081|892082|892083|892084|892085|892086|892087|892088|892089|892090|892091|892092|892093|892094|892095|892096|892097|892098|892099|892100|892101|892102|892103|892104|919116|919258", + "upstreamId": "31062|31063|31064|31065|31066|31067|31068|31069|31070|31071|31072|31073|31075|31321|31338|38410|40123|132059|132060|150301|150302|178326|178329|178331|178333|178334|178335|178336|178337|178338|178341|178342|178343|181427|263181|269442|293990|293993|293994|294007|294008|294016|294023|294024|294025|294039|294055|294056|295417|295419|295420|295422|295424|295441|295462|295468|295484|295487|295504|295507|295508|295509|299209|299211|299215|299216|299217|299227|299229|299236|299238|299242|299243|299245|299247|299248|299255|299257|299258|299261|299264|299265|299273|299275|299278|299279|299280|299281|299283|299284|299286|299287|299288|299291|361060|361062|443633|482006|620173|626007|697013|709414|790043|790044|892069|892070|892071|892072|892073|892074|892075|892076|892077|892078|892079|892080|892081|892082|892083|892084|892085|892086|892087|892088|892089|892090|892091|892092|892093|892094|892095|892096|892097|892098|892099|892100|892101|892102|892103|892104|919116|919258", "text": "Hypogonadotropic hypogonadism 7 with or without anosmia" }, { - "baseId": "31062", + "upstreamId": "31062", "text": "Isolated congenital hypogonadotropic hypogonadism" }, { - "baseId": "31062", + "upstreamId": "31062", "text": "Gonadotropin deficiency" }, { - "baseId": "31070|294004|294014|294021|294042|295463|296541|296564|299213|299239|299240|299263|299268|299274|299282|299297|305011|308722|308723|313876", + "upstreamId": "31070|294004|294014|294021|294042|295463|296541|296564|299213|299239|299240|299263|299268|299274|299282|299297|305011|308722|308723|313876", "text": "Isolated GnRH Deficiency" }, { - "baseId": "31076", + "upstreamId": "31076", "text": "Autism 1" }, { - "baseId": "31077|31078", + "upstreamId": "31077|31078", "text": "Macrothrombocytopenia, familial, Bernard-Soulier type" }, { - "baseId": "31079|31080|169754", + "upstreamId": "31079|31080|169754", "text": "Bernard-Soulier syndrome, type B" }, { - "baseId": "31079|801171", + "upstreamId": "31079|801171", "text": "Increased mean platelet volume" }, { - "baseId": "31081", + "upstreamId": "31081", "text": "APOH POLYMORPHISM" }, { - "baseId": "31082|31083|31084", + "upstreamId": "31082|31083|31084", "text": "Leanness, susceptibility to" }, { - "baseId": "31088|31089|31090|31091|31092|31093|31094|31095|89845|141225|141226|141227|141228|141229|141230|141231|141232|141233|196321|211598|211602|211606|211608|254474|254479|254481|254482|254483|254486|316622|316623|316625|316626|316636|316637|316658|316660|316661|316662|324114|324116|324119|324120|324121|324132|324133|324139|324142|324145|324146|330088|330089|330090|330095|330097|330099|330101|330115|330118|330130|330132|331529|331530|331531|331535|331537|331550|389203|527028|527553|565368|565372|566747|571733|620438|620847|641012|641013|641014|641015|652231|725041|725042|738591|753301|769040|839776|852478|869647|869648|869649|869650|869651|869652|869653|869654|869655|869656|869657|869658|869659|872225|926587|936072|936073|947957|956843", + "upstreamId": "31088|31089|31090|31091|31092|31093|31094|31095|89845|141225|141226|141227|141228|141229|141230|141231|141232|141233|196321|211598|211602|211606|211608|254474|254479|254481|254482|254483|254486|316622|316623|316625|316626|316636|316637|316658|316660|316661|316662|324114|324116|324119|324120|324121|324132|324133|324139|324142|324145|324146|330088|330089|330090|330095|330097|330099|330101|330115|330118|330130|330132|331529|331530|331531|331535|331537|331550|389203|527028|527553|565368|565372|566747|571733|620438|620847|641012|641013|641014|641015|652231|725041|725042|738591|753301|769040|839776|852478|869647|869648|869649|869650|869651|869652|869653|869654|869655|869656|869657|869658|869659|872225|926587|936072|936073|947957|956843", "text": "Glycogen storage disease due to hepatic glycogen synthase deficiency" }, { - "baseId": "31096|133691|166213|193499|334005|334009|334013|334015|334019|334021|334025|334027|334039|334040|334041|334047|334049|343936|343937|343944|343948|343949|343952|343954|343956|343963|343968|343969|343974|343975|349230|349231|349233|349234|349235|349236|349239|349240|349243|349244|350174|350175|350178|350181|350183|350185|350188|350189|350192|350196|350198|350199|353504|353506|353510|353514|353516|377804|377807|379611|422291|446160|489591|507892|507896|533220|572592|572594|572602|575003|576186|648222|648223|648224|648225|648226|648227|648228|648229|648230|648231|648232|656584|742042|742043|742045|742046|757166|797887|821275|821276|821277|847814|847815|847816|847817|847818|847819|847820|847821|847822|847823|847824|847825|847826|847827|847828|851821|852981|882269|882270|882271|882272|882273|882274|882275|882276|882277|882278|882279|882280|882281|882282|882283|882284|882285|882286|882287|882288|882289|882290|882291|882292|882293|882294|882295|882296|882297|882914|882915|929015|929016|929017|929018|929019|929020|929021|929022|929023|938761|938762|938763|938764|938765|938766|938767|938768|938769|940486|940487|941236|950843|950844|950845|950846|958680|958681|958682|958683|958684|958685", + "upstreamId": "31096|133691|166213|193499|334005|334009|334013|334015|334019|334021|334025|334027|334039|334040|334041|334047|334049|343936|343937|343944|343948|343949|343952|343954|343956|343963|343968|343969|343974|343975|349230|349231|349233|349234|349235|349236|349239|349240|349243|349244|350174|350175|350178|350181|350183|350185|350188|350189|350192|350196|350198|350199|353504|353506|353510|353514|353516|377804|377807|379611|422291|446160|489591|507892|507896|533220|572592|572594|572602|575003|576186|648222|648223|648224|648225|648226|648227|648228|648229|648230|648231|648232|656584|742042|742043|742045|742046|757166|797887|821275|821276|821277|847814|847815|847816|847817|847818|847819|847820|847821|847822|847823|847824|847825|847826|847827|847828|851821|852981|882269|882270|882271|882272|882273|882274|882275|882276|882277|882278|882279|882280|882281|882282|882283|882284|882285|882286|882287|882288|882289|882290|882291|882292|882293|882294|882295|882296|882297|882914|882915|929015|929016|929017|929018|929019|929020|929021|929022|929023|938761|938762|938763|938764|938765|938766|938767|938768|938769|940486|940487|941236|950843|950844|950845|950846|958680|958681|958682|958683|958684|958685", "text": "Glycogen storage disease 0, muscle" }, { - "baseId": "31097|31098|40211|292638|292641|292642|292643|292645|292646|292647|292659|292660|292667|292668|292671|294019|294020|294030|294031|294032|294033|294034|294036|294037|294041|294043|294044|294045|297419|297427|297428|297432|297437|297452|297475|297476|297477|297482|297500|297503|297505|297506|297507|519795|519811|520102|559623|563549|563550|632061|632062|632063|651253|698406|709209|720811|734503|748789|764363|790447|828912|828913|890331|890332|890333|890334|890335|890336|890337|890338|890339|890340|890341|890342|890343|890344|890345|890346|890347|890348|890349|891759|891760|923451|953707", + "upstreamId": "31097|31098|40211|292638|292641|292642|292643|292645|292646|292647|292659|292660|292667|292668|292671|294019|294020|294030|294031|294032|294033|294034|294036|294037|294041|294043|294044|294045|297419|297427|297428|297432|297437|297452|297475|297476|297477|297482|297500|297503|297505|297506|297507|519795|519811|520102|559623|563549|563550|632061|632062|632063|651253|698406|709209|720811|734503|748789|764363|790447|828912|828913|890331|890332|890333|890334|890335|890336|890337|890338|890339|890340|890341|890342|890343|890344|890345|890346|890347|890348|890349|891759|891760|923451|953707", "text": "Hyperekplexia 2" }, { - "baseId": "31100", + "upstreamId": "31100", "text": "Sleep myoclonus" }, { - "baseId": "31114|31115", + "upstreamId": "31114|31115", "text": "Factor B fast/slow polymorphism" }, { - "baseId": "31114", + "upstreamId": "31114", "text": "BF*FA/S" }, { - "baseId": "31114|31115|31116|59798|59799|139353|139354|139355|139356|139357|227292|278181|278610|293309|299776|299781|299782|299793|299794|299798|299817|302372|302388|306762|306777|307093|307117|334509|334907|344343|344359|344383|344771|349452|350459|353745|353749|439576|496599", + "upstreamId": "31114|31115|31116|59798|59799|139353|139354|139355|139356|139357|227292|278181|278610|293309|299776|299781|299782|299793|299794|299798|299817|302372|302388|306762|306777|307093|307117|334509|334907|344343|344359|344383|344771|349452|350459|353745|353749|439576|496599", "text": "Atypical hemolytic uremic syndrome" }, { - "baseId": "31114|31115|31116|31118|31119|227292|227293|299798|299800|299801|299802|299808|299809|299810|299817|299818|299823|299824|299825|299832|302401|302405|302413|302414|306782|306810|306818|306821|306823|306824|306825|306828|306830|307103|307110|307117|307120|307123|307132|354166|354167|818242|818243|818244|895776|895782|895783|895784|895785|895786|895787|895788|895789|895790|895791|895792|895793|896219|980458", + "upstreamId": "31114|31115|31116|31118|31119|227292|227293|299798|299800|299801|299802|299808|299809|299810|299817|299818|299823|299824|299825|299832|302401|302405|302413|302414|306782|306810|306818|306821|306823|306824|306825|306828|306830|307103|307110|307117|307120|307123|307132|354166|354167|818242|818243|818244|895776|895782|895783|895784|895785|895786|895787|895788|895789|895790|895791|895792|895793|896219|980458", "text": "Atypical hemolytic-uremic syndrome 4" }, { - "baseId": "31121", + "upstreamId": "31121", "text": "GLUTATHIONE PEROXIDASE POLYMORPHISM" }, { - "baseId": "31122|31123|38689|277506|277509|277514|277529|277538|277542|277543|277545|277558|277563|277566|277583|277587|277589|277593|277594|277595|277605|277624|277625|277629|277630|277633|277634|277635|277636|277637|277700|277702|277718|277719|277729|277731|277736|277738|277745|277746|277755|277756|277764|277765|277766|277767|277770|277771|277776|277777|277780|278609|278611|278615|278617|278618|278619|278620|278621|278623|278633|278646|278648|278651|278652|278653|278664|278665|278666|278668|278673|278686|278687|278695|278698|278699|278708|278709|278711|278712|278720|278721|278722|278734|278735|278739|278741|278742|278743|278745|278747|278748|278749|278773|353070|578371|706912|731905|862869|862870|862871|862872|862873|862874|862875|862876|862877|862878|862879|862880|862881|862882|862883|862884|862885|862886|862887|862888|862889|862890|862891|862892|862893|862894|862895|862896|862897|862898|862899|862900|862901|862902|862903|862904|862905|862906|862907|862908|930178|941592", + "upstreamId": "31122|31123|38689|277506|277509|277514|277529|277538|277542|277543|277545|277558|277563|277566|277583|277587|277589|277593|277594|277595|277605|277624|277625|277629|277630|277633|277634|277635|277636|277637|277700|277702|277718|277719|277729|277731|277736|277738|277745|277746|277755|277756|277764|277765|277766|277767|277770|277771|277776|277777|277780|278609|278611|278615|278617|278618|278619|278620|278621|278623|278633|278646|278648|278651|278652|278653|278664|278665|278666|278668|278673|278686|278687|278695|278698|278699|278708|278709|278711|278712|278720|278721|278722|278734|278735|278739|278741|278742|278743|278745|278747|278748|278749|278773|353070|578371|706912|731905|862869|862870|862871|862872|862873|862874|862875|862876|862877|862878|862879|862880|862881|862882|862883|862884|862885|862886|862887|862888|862889|862890|862891|862892|862893|862894|862895|862896|862897|862898|862899|862900|862901|862902|862903|862904|862905|862906|862907|862908|930178|941592", "text": "Congenital brain dysgenesis due to glutamine synthetase deficiency" }, { - "baseId": "31124|31125|38682|166329|166330|213604|213762|213763|213905|213920|253949|253951|253951|253952|311775|311779|311782|311782|311783|311783|311797|311799|311800|311800|311803|311811|317390|317392|317397|317399|317399|317400|317402|317414|317414|323413|323420|323423|323424|323424|323427|323434|323434|323437|323446|323455|323462|324029|324030|324046|324059|324060|324061|324069|324069|324070|324070|324072|324075|371913|373610|373610|373621|373621|373627|413295|421812|434637|437871|437871|460344|460358|460416|460700|460701|461164|461165|461169|502966|503312|503866|525626|525626|550619|566648|566650|566654|566655|566660|569906|569909|621898|626418|639320|639321|639322|639323|639324|639326|652348|652348|665615|692901|692902|692903|712533|712534|724130|775702|783785|798629|837521|837522|837523|837524|837525|837526|837527|859828|866634|866635|866636|866637|866638|866639|866640|866641|866642|866643|866644|866645|868543|868544|868545", + "upstreamId": "31124|31125|38682|166329|166330|213604|213762|213763|213905|213920|253949|253951|253951|253952|311775|311779|311782|311782|311783|311783|311797|311799|311800|311800|311803|311811|317390|317392|317397|317399|317399|317400|317402|317414|317414|323413|323420|323423|323424|323424|323427|323434|323434|323437|323446|323455|323462|324029|324030|324046|324059|324060|324061|324069|324069|324070|324070|324072|324075|371913|373610|373610|373621|373621|373627|413295|421812|434637|437871|437871|460344|460358|460416|460700|460701|461164|461165|461169|502966|503312|503866|525626|525626|550619|566648|566650|566654|566655|566660|569906|569909|621898|626418|639320|639321|639322|639323|639324|639326|652348|652348|665615|692901|692902|692903|712533|712534|724130|775702|783785|798629|837521|837522|837523|837524|837525|837526|837527|859828|866634|866635|866636|866637|866638|866639|866640|866641|866642|866643|866644|866645|868543|868544|868545", "text": "Cutis laxa, autosomal recessive IIIA" }, { - "baseId": "31126|187134", + "upstreamId": "31126|187134", "text": "Mental retardation, autosomal recessive 6" }, { - "baseId": "31127", + "upstreamId": "31127", "text": "GLUTAMIC PYRUVATE TRANSAMINASE POLYMORPHISM" }, { - "baseId": "31130|31131|31132|31134|31135|31136|31137|31138|31139|31140|31141|31142|31143|135795|135796|135797|135798|196172|251001|251002|251003|251004|251005|251006|289481|289486|289488|289491|289503|289506|289507|289509|289510|290252|290253|290255|290256|290257|290258|290259|290263|290265|290266|290278|290279|290281|293350|293361|293363|293768|293770|293771|293772|293774|293777|293778|293779|293779|293780|293787|293788|293798|414921|414921|418963|438543|451944|493692|500665|513047|513531|513532|518977|519148|519152|539992|558836|558838|559379|561258|620121|631046|748097|779098|827709|851548|888366|888367|888368|888369|888370|888371|888372|888373|888374|888375|888376|888377|888378|888379|888380|888381|888382|888383|888384|891619", + "upstreamId": "31130|31131|31132|31134|31135|31136|31137|31138|31139|31140|31141|31142|31143|135795|135796|135797|135798|196172|251001|251002|251003|251004|251005|251006|289481|289486|289488|289491|289503|289506|289507|289509|289510|290252|290253|290255|290256|290257|290258|290259|290263|290265|290266|290278|290279|290281|293350|293361|293363|293768|293770|293771|293772|293774|293777|293778|293779|293779|293780|293787|293788|293798|414921|414921|418963|438543|451944|493692|500665|513047|513531|513532|518977|519148|519152|539992|558836|558838|559379|561258|620121|631046|748097|779098|827709|851548|888366|888367|888368|888369|888370|888371|888372|888373|888374|888375|888376|888377|888378|888379|888380|888381|888382|888383|888384|891619", "text": "Fanconi-Bickel syndrome" }, { - "baseId": "31144|31145|31146|31149|31150|31152|31153|31157|101305|101306|101310|101311|101312|101313|101315|101316|101317|102597|142857|142858|142862|142864|142869|142870|142871|167987|167988|167989|167990|167991|167993|167994|167995|167996|195706|196002|196003|198605|201142|201142|201149|201150|201157|201160|201163|201165|201169|201170|201174|201177|206798|206799|237523|259669|264004|271180|280556|280569|280577|280578|280583|280585|280596|280599|280600|281019|281020|281021|281036|281037|281040|281041|281050|281051|281052|281063|281065|281070|282308|282314|282331|282346|282347|282558|282560|282561|282562|282566|282567|282568|282579|391203|434754|442473|481468|486609|498499|515910|536593|556476|589826|611376|614219|614220|622863|627870|627878|653850|789966|789967|789968|789969|794674|798473|798474|864437|864438|864439|864440|864441|864442|864443|864444|864445|864446|864447|864448|864449|864450|864451|864452|864453|961587|963494|964156|964157|980580", + "upstreamId": "31144|31145|31146|31149|31150|31152|31153|31157|101305|101306|101310|101311|101312|101313|101315|101316|101317|102597|142857|142858|142862|142864|142869|142870|142871|167987|167988|167989|167990|167991|167993|167994|167995|167996|195706|196002|196003|198605|201142|201142|201149|201150|201157|201160|201163|201165|201169|201170|201174|201177|206798|206799|237523|259669|264004|271180|280556|280569|280577|280578|280583|280585|280596|280599|280600|281019|281020|281021|281036|281037|281040|281041|281050|281051|281052|281063|281065|281070|282308|282314|282331|282346|282347|282558|282560|282561|282562|282566|282567|282568|282579|391203|434754|442473|481468|486609|498499|515910|536593|556476|589826|611376|614219|614220|622863|627870|627878|653850|789966|789967|789968|789969|794674|798473|798474|864437|864438|864439|864440|864441|864442|864443|864444|864445|864446|864447|864448|864449|864450|864451|864452|864453|961587|963494|964156|964157|980580", "text": "GLUT1 deficiency syndrome 1" }, { - "baseId": "31147|31148|31152|31156|31157|31158|31159|45874|45875|101305|101306|101307|101309|101311|101314|101315|101316|101317|102597|102598|142858|142859|142860|142861|142862|142863|142864|142866|142868|142869|142870|142871|167990|167992|167994|194443|195356|195704|195706|196003|201124|201125|201126|201127|201128|201129|201131|201132|201133|201137|201142|201147|201148|201149|201157|201163|201166|201168|201169|201170|206798|206799|238281|238282|264004|271180|280596|360813|365203|365206|365230|365276|365280|365281|365283|365284|365294|391203|391208|391241|391243|427818|434754|437804|440512|442473|447914|448081|448082|448091|448139|448231|448233|485999|486000|498499|498697|511275|511276|514877|515884|515892|515900|515901|515902|515903|515907|515908|515910|515912|515913|515941|515946|515954|516000|516001|516002|536593|556501|557059|557061|557063|557272|557274|557276|557278|557333|557335|557337|557339|557341|558517|578807|627861|627862|627863|627864|627865|627866|627867|627868|627869|627870|627871|627872|627873|627874|627875|627876|627877|627878|627879|627880|627881|650715|683328|685733|685734|690604|690605|696749|746481|800985|818967|818968|818969|823981|823982|823983|823984|823985|823986|823987|823988|823989|823990|823991|850969|851303|922023|922024|922025|922026|922027|922028|922029|930490|930491|930492|930493|930494|939814|941945|941946|941947|941948|941949|941950|952414|952415|952416|952417|959556", + "upstreamId": "31147|31148|31152|31156|31157|31158|31159|45874|45875|101305|101306|101307|101309|101311|101314|101315|101316|101317|102597|102598|142858|142859|142860|142861|142862|142863|142864|142866|142868|142869|142870|142871|167990|167992|167994|194443|195356|195704|195706|196003|201124|201125|201126|201127|201128|201129|201131|201132|201133|201137|201142|201147|201148|201149|201157|201163|201166|201168|201169|201170|206798|206799|238281|238282|264004|271180|280596|360813|365203|365206|365230|365276|365280|365281|365283|365284|365294|391203|391208|391241|391243|427818|434754|437804|440512|442473|447914|448081|448082|448091|448139|448231|448233|485999|486000|498499|498697|511275|511276|514877|515884|515892|515900|515901|515902|515903|515907|515908|515910|515912|515913|515941|515946|515954|516000|516001|516002|536593|556501|557059|557061|557063|557272|557274|557276|557278|557333|557335|557337|557339|557341|558517|578807|627861|627862|627863|627864|627865|627866|627867|627868|627869|627870|627871|627872|627873|627874|627875|627876|627877|627878|627879|627880|627881|650715|683328|685733|685734|690604|690605|696749|746481|800985|818967|818968|818969|823981|823982|823983|823984|823985|823986|823987|823988|823989|823990|823991|850969|851303|922023|922024|922025|922026|922027|922028|922029|930490|930491|930492|930493|930494|939814|941945|941946|941947|941948|941949|941950|952414|952415|952416|952417|959556", "text": "GLUT1 deficiency syndrome 1, autosomal recessive" }, { - "baseId": "31151|31152|31153|31154|31155|31156|31157|31158|38678|102597|196002|196003|201142|201142|201157|201174|206798|225820|225834|280596|391203|426739|434754|611376|614219|614220|800753|816520|858512|961587|965620|977176", + "upstreamId": "31151|31152|31153|31154|31155|31156|31157|31158|38678|102597|196002|196003|201142|201142|201157|201174|206798|225820|225834|280596|391203|426739|434754|611376|614219|614220|800753|816520|858512|961587|965620|977176", "text": "GLUT1 deficiency syndrome 2" }, { - "baseId": "31157|45874|101305|101306|101310|101311|101312|101313|101315|101316|101317|102597|142857|142858|142864|142869|142870|142871|167990|167993|195706|196002|196003|201142|201149|201157|201163|201165|201169|201170|201174|201177|206798|206799|271180|280556|280569|280577|280578|280583|280585|280596|280599|280600|281019|281020|281021|281036|281037|281040|281041|281050|281051|281052|281063|281065|281070|282308|282314|282331|282346|282347|282558|282560|282561|282562|282566|282567|282568|282579|391203|434754|498499|515910|536593|611376|614219|614220|794674|823985|864437|864438|864439|864440|864441|864442|864443|864444|864445|864446|864447|864448|864449|864450|864451|864452|864453|961587", + "upstreamId": "31157|45874|101305|101306|101310|101311|101312|101313|101315|101316|101317|102597|142857|142858|142864|142869|142870|142871|167990|167993|195706|196002|196003|201142|201149|201157|201163|201165|201169|201170|201174|201177|206798|206799|271180|280556|280569|280577|280578|280583|280585|280596|280599|280600|281019|281020|281021|281036|281037|281040|281041|281050|281051|281052|281063|281065|281070|282308|282314|282331|282346|282347|282558|282560|282561|282562|282566|282567|282568|282579|391203|434754|498499|515910|536593|611376|614219|614220|794674|823985|864437|864438|864439|864440|864441|864442|864443|864444|864445|864446|864447|864448|864449|864450|864451|864452|864453|961587", "text": "Dystonia 9" }, { - "baseId": "31157|102597|196002|196003|196003|201142|201157|201174|206798|215041|215042|391203|611376|614219|614220|961587", + "upstreamId": "31157|102597|196002|196003|196003|201142|201157|201174|206798|215041|215042|391203|611376|614219|614220|961587", "text": "Stomatin-deficient cryohydrocytosis with neurologic defects" }, { - "baseId": "31160|31161|31162|31163|31164|31165|31166|31167|31168|134607|134608|134609|134610|207795|227339|227919|253899|311493|311494|311495|311501|311503|317060|317061|317062|317073|317074|317075|317076|317078|317079|323058|323059|323061|323062|323078|323091|323655|323667|323669|323676|323677|323695|323696|323699|407950|525575|525886|539030|577159|639258|639259|744467|768029|783762|837407|837408|866477|866478|866479|866480|866481|866482|866483|866484|866485|866486|866487|866488|866489|868526|868527|919300|956261|956262|970923", + "upstreamId": "31160|31161|31162|31163|31164|31165|31166|31167|31168|134607|134608|134609|134610|207795|227339|227919|253899|311493|311494|311495|311501|311503|317060|317061|317062|317073|317074|317075|317076|317078|317079|323058|323059|323061|323062|323078|323091|323655|323667|323669|323676|323677|323695|323696|323699|407950|525575|525886|539030|577159|639258|639259|744467|768029|783762|837407|837408|866477|866478|866479|866480|866481|866482|866483|866484|866485|866486|866487|866488|866489|868526|868527|919300|956261|956262|970923", "text": "Hyperinsulinism-hyperammonemia syndrome" }, { - "baseId": "31160", + "upstreamId": "31160", "text": "Familial hyperinsulinemia" }, { - "baseId": "31169|31170|40268|40269|40270|40271|189064", + "upstreamId": "31169|31170|40268|40269|40270|40271|189064", "text": "Cortisone reductase deficiency 1" }, { - "baseId": "31171|31173|31174|31175|31176|31177|31178|31180|31184|44827|44828|44829|44830|44831|44832|44834|44835|44836|44837|44838|44839|44840|44841|44842|44843|44844|44845|44846|44847|44848|44849|44850|44851|44852|44853|44854|44855|44856|44857|44858|44859|44860|44861|44862|44863|44864|44864|44865|44866|44867|44868|44869|44870|44871|44872|44873|44874|44875|44876|44877|44878|44879|44880|44881|44882|44884|44886|44887|44888|44889|44890|44891|44892|44893|44894|44895|44896|44898|44899|44900|44901|44902|44903|44904|44905|44906|44907|44907|44908|44909|44910|44911|44912|44913|44914|44915|44916|44917|44918|44919|44920|44921|44922|44923|44924|44925|44926|44927|44928|44929|44930|44931|44932|44933|44934|44935|48358|134590|134590|134593|207484|207485|207486|217193|236860|237582|237750|252883|252884|259865|303069|303070|303071|303072|303073|303074|306341|306345|306346|306347|311169|311170|311172|311173|311302|311303|311306|311310|311312|380268|380270|380271|407147|407150|415104|421632|425758|428721|428722|428724|428725|428726|428727|428729|428730|428730|428732|428733|428734|428735|428737|428738|441126|513065|513066|513067|576978|609049|609050|611361|619858|759683|790723|790724|790725|792671|793237|793240|898116|898117|898118|898119|898120|898121|898122|898123|898124|898125|898126|898127|898128|898129|898130|898131|898132|898133|898134|900365|900366|900367|900368|904271|961068|961069|961070|961071|961072|961073|961074|961075|961076|961077|961078|961285|961569|964289|964290|964291|969738", + "upstreamId": "31171|31173|31174|31175|31176|31177|31178|31180|31184|44827|44828|44829|44830|44831|44832|44834|44835|44836|44837|44838|44839|44840|44841|44842|44843|44844|44845|44846|44847|44848|44849|44850|44851|44852|44853|44854|44855|44856|44857|44858|44859|44860|44861|44862|44863|44864|44864|44865|44866|44867|44868|44869|44870|44871|44872|44873|44874|44875|44876|44877|44878|44879|44880|44881|44882|44884|44886|44887|44888|44889|44890|44891|44892|44893|44894|44895|44896|44898|44899|44900|44901|44902|44903|44904|44905|44906|44907|44907|44908|44909|44910|44911|44912|44913|44914|44915|44916|44917|44918|44919|44920|44921|44922|44923|44924|44925|44926|44927|44928|44929|44930|44931|44932|44933|44934|44935|48358|134590|134590|134593|207484|207485|207486|217193|236860|237582|237750|252883|252884|259865|303069|303070|303071|303072|303073|303074|306341|306345|306346|306347|311169|311170|311172|311173|311302|311303|311306|311310|311312|380268|380270|380271|407147|407150|415104|421632|425758|428721|428722|428724|428725|428726|428727|428729|428730|428730|428732|428733|428734|428735|428737|428738|441126|513065|513066|513067|576978|609049|609050|611361|619858|759683|790723|790724|790725|792671|793237|793240|898116|898117|898118|898119|898120|898121|898122|898123|898124|898125|898126|898127|898128|898129|898130|898131|898132|898133|898134|900365|900366|900367|900368|904271|961068|961069|961070|961071|961072|961073|961074|961075|961076|961077|961078|961285|961569|964289|964290|964291|969738", "text": "Maturity-onset diabetes of the young, type 2" }, { - "baseId": "31173|31180", + "upstreamId": "31173|31180", "text": "Permanent neonatal diabetes mellitus 1" }, { - "baseId": "31179|31182|31183|31185|44864|44866|44870|44872|44877|44886|44899|44906|44907|134590|134593|207485|252883|252884|259865|303069|303070|303071|303072|303073|303074|306341|306345|306346|306347|311169|311170|311172|311173|311302|311303|311306|311310|311312|428720|428723|428730|428735|428737|428738|441126|576978|759683|898116|898117|898118|898119|898120|898121|898122|898123|898124|898125|898126|898127|898128|898129|898130|898131|898132|898133|898134|900365|900366|900367|900368", + "upstreamId": "31179|31182|31183|31185|44864|44866|44870|44872|44877|44886|44899|44906|44907|134590|134593|207485|252883|252884|259865|303069|303070|303071|303072|303073|303074|306341|306345|306346|306347|311169|311170|311172|311173|311302|311303|311306|311310|311312|428720|428723|428730|428735|428737|428738|441126|576978|759683|898116|898117|898118|898119|898120|898121|898122|898123|898124|898125|898126|898127|898128|898129|898130|898131|898132|898133|898134|900365|900366|900367|900368", "text": "Hyperinsulinism due to glucokinase deficiency" }, { - "baseId": "31186|31187|31189|31190|31191|31193|31194|31195|31196|31197|165651|295714|295715|295719|295722|295723|295724|295730|295732|295736|295739|295748|295751|295752|295753|295757|295758|295762|295768|295769|297551|297552|297556|297558|297561|297563|297566|297581|297582|297583|301396|301399|301400|301404|301406|301408|301410|301419|301420|301423|301424|301426|301445|301446|301447|301450|301454|301455|301472|301597|301598|301600|301601|301604|301625|301626|301641|301646|301647|301648|301650|301653|301665|301678|301679|721273|734895|749285|764933|893142|893143|893144|893145|893146|893147|893148|893149|893150|893151|893152|893153|893154|893155|893156|893157|893158|893159|893160|893161|893162|893163|893164|893165|893166|893167|893168|893169|893170|893171|893172|893173|893174|893175|893176|893177|893178|893179|893180|893181|893182|893183|893184|893185|893186|893187|893188|893189|893190|893191|893192|893193|893194|893195|896053|896054", + "upstreamId": "31186|31187|31189|31190|31191|31193|31194|31195|31196|31197|165651|295714|295715|295719|295722|295723|295724|295730|295732|295736|295739|295748|295751|295752|295753|295757|295758|295762|295768|295769|297551|297552|297556|297558|297561|297563|297566|297581|297582|297583|301396|301399|301400|301404|301406|301408|301410|301419|301420|301423|301424|301426|301445|301446|301447|301450|301454|301455|301472|301597|301598|301600|301601|301604|301625|301626|301641|301646|301647|301648|301650|301653|301665|301678|301679|721273|734895|749285|764933|893142|893143|893144|893145|893146|893147|893148|893149|893150|893151|893152|893153|893154|893155|893156|893157|893158|893159|893160|893161|893162|893163|893164|893165|893166|893167|893168|893169|893170|893171|893172|893173|893174|893175|893176|893177|893178|893179|893180|893181|893182|893183|893184|893185|893186|893187|893188|893189|893190|893191|893192|893193|893194|893195|896053|896054", "text": "Glucocorticoid resistance, generalized" }, { - "baseId": "31188", + "upstreamId": "31188", "text": "Glucocorticoid resistance, cellular" }, { - "baseId": "31189", + "upstreamId": "31189", "text": "GLUCOCORTICOID RECEPTOR POLYMORPHISM" }, { - "baseId": "31192", + "upstreamId": "31192", "text": "Pseudohermaphroditism, female, with hypokalemia, due to glucocorticoid resistance" }, { - "baseId": "31193", + "upstreamId": "31193", "text": "Glucocorticoid resistance, relative" }, { - "baseId": "31199|31200|31201|31202|31203|31204|31205|46909|46910|46911|46912|46913|46914|46915|46916|46917|46918|46919|46920|46921|46922|192333|210810|210811|244007|267822|268397|274680|285823|285827|286553|286555|286556|286557|286561|288795|288797|288800|289216|366331|366592|367172|405707|405708|405709|512982|512983|512984|512985|512986|512987|512988|585073|586019|623131|623132|679728|682251|682252|682253|682254|682255|682256|682257|691120|884563|884564|884565|884566|884567|884568|884569|884570|884571|975716", + "upstreamId": "31199|31200|31201|31202|31203|31204|31205|46909|46910|46911|46912|46913|46914|46915|46916|46917|46918|46919|46920|46921|46922|192333|210810|210811|244007|267822|268397|274680|285823|285827|286553|286555|286556|286557|286561|288795|288797|288800|289216|366331|366592|367172|405707|405708|405709|512982|512983|512984|512985|512986|512987|512988|585073|586019|623131|623132|679728|682251|682252|682253|682254|682255|682256|682257|691120|884563|884564|884565|884566|884567|884568|884569|884570|884571|975716", "text": "Navajo neurohepatopathy" }, { - "baseId": "31206|31207|31208|31209|31210|31211|31212|31213|31214|31215|31216|31217|31218|77325|77326|77327|77328|77329|77330|77331|77332|77333|77334|77335|77336|77337|77338|77340|77344|77345|77349|77350|77351|77353|77354|77356|77357|77358|77360|77361|77362|77363|77364|77365|77367|77368|77369|77370|77372|77374|77375|77376|77377|77378|77381|77385|77388|77389|77390|77391|77392|77393|77394|77395|77396|77397|77398|77399|77401|77402|77404|77411|77412|188159|188160|188161|188162|188163|188164|188165|188166|188167|188168|188169|188170|188171|188172|188173|188174|188175|188176|188177|188178|188179|188180|188181|188182|188183|188184|188185|188186|188187|188188|188189|188190|188191|188192|188193|188194|227391|338735|344817|344820|346185|346206|361227|513469|539072|581912|624864|791783|794270|797549|906206|919735|919736", + "upstreamId": "31206|31207|31208|31209|31210|31211|31212|31213|31214|31215|31216|31217|31218|77325|77326|77327|77328|77329|77330|77331|77332|77333|77334|77335|77336|77337|77338|77340|77344|77345|77349|77350|77351|77353|77354|77356|77357|77358|77360|77361|77362|77363|77364|77365|77367|77368|77369|77370|77372|77374|77375|77376|77377|77378|77381|77385|77388|77389|77390|77391|77392|77393|77394|77395|77396|77397|77398|77399|77401|77402|77404|77411|77412|188159|188160|188161|188162|188163|188164|188165|188166|188167|188168|188169|188170|188171|188172|188173|188174|188175|188176|188177|188178|188179|188180|188181|188182|188183|188184|188185|188186|188187|188188|188189|188190|188191|188192|188193|188194|227391|338735|344817|344820|346185|346206|361227|513469|539072|581912|624864|791783|794270|797549|906206|919735|919736", "text": "Alexander Disease" }, { - "baseId": "31219|31220|306647|306648|306655|306657|306659|306660|306664|306665|306668|306669|306671|310827|310837|310838|310839|310843|310845|310849|316265|316276|316285|316287|316291|316292|316295|316301|316316|316334|316335|316348|316349|316363|316367|316575|316581|316582|316583|316585|316592|316609|620317|711742|723308|730604|736859|751372|767080|900971|900972|900973|900974|900975|900976|900977|900978|900979|900980|900981|900982|900983|900984|900985|900986|900987|900988|900989|900990|900991|900992|900993|900994|900995|903307|903308|903309|919183|973055", + "upstreamId": "31219|31220|306647|306648|306655|306657|306659|306660|306664|306665|306668|306669|306671|310827|310837|310838|310839|310843|310845|310849|316265|316276|316285|316287|316291|316292|316295|316301|316316|316334|316335|316348|316349|316363|316367|316575|316581|316582|316583|316585|316592|316609|620317|711742|723308|730604|736859|751372|767080|900971|900972|900973|900974|900975|900976|900977|900978|900979|900980|900981|900982|900983|900984|900985|900986|900987|900988|900989|900990|900991|900992|900993|900994|900995|903307|903308|903309|919183|973055", "text": "Meretoja syndrome" }, { - "baseId": "31221|31222|31223|31224|31225|31226|31227|31228|280953|280954|280955|280967|280969|281497|281502|281504|281507|281508|281509|281510|281525|282697|282703|282705|282706|282707|282724|282727|282728|282729|282734|282741|282978|282980|282981|282982|282992|282993|282995|719034|864652|864653|864654|864655|864656|864657|864658|864659|864660|864661|864662|864663", + "upstreamId": "31221|31222|31223|31224|31225|31226|31227|31228|280953|280954|280955|280967|280969|281497|281502|281504|281507|281508|281509|281510|281525|282697|282703|282705|282706|282707|282724|282727|282728|282729|282734|282741|282978|282980|282981|282982|282992|282993|282995|719034|864652|864653|864654|864655|864656|864657|864658|864659|864660|864661|864662|864663", "text": "Lattice corneal dystrophy Type III" }, { - "baseId": "31229", + "upstreamId": "31229", "text": "Insomnia" }, { - "baseId": "31229|31230|224873|242024|242029|255128|255129|255130|361573|373352|373359|374006|374014|374442|376331|376332|376349|400043|400045|400054|400553|400863|400867|409197|441714|463963|464507|464510|464543|464546|464799|464804|464806|464808|482061|504698|505182|505188|505612|505615|528589|528596|528597|528603|528606|528618|528985|528994|529042|529054|529064|529066|539058|566890|566893|568627|568638|568640|569194|569227|569234|573144|573145|580235|643003|643004|643005|643006|643007|643008|643009|652637|656280|684532|688394|688395|770063|820670|820671|822099|822274|842093|842094|842095|842096|842097|842098|842099|842100|927261|927262|927263|936833|936834|936835|936836|936837|936838|948785|948786|957368|960817", + "upstreamId": "31229|31230|224873|242024|242029|255128|255129|255130|361573|373352|373359|374006|374014|374442|376331|376332|376349|400043|400045|400054|400553|400863|400867|409197|441714|463963|464507|464510|464543|464546|464799|464804|464806|464808|482061|504698|505182|505188|505612|505615|528589|528596|528597|528603|528606|528618|528985|528994|529042|529054|529064|529066|539058|566890|566893|568627|568638|568640|569194|569227|569234|573144|573145|580235|643003|643004|643005|643006|643007|643008|643009|652637|656280|684532|688394|688395|770063|820670|820671|822099|822274|842093|842094|842095|842096|842097|842098|842099|842100|927261|927262|927263|936833|936834|936835|936836|936837|936838|948785|948786|957368|960817", "text": "Epilepsy, childhood absence 1" }, { - "baseId": "31229|31230|31231|31232|205778|242024|242029|255128|255129|255130|361573|373352|373359|374006|374014|374442|376331|376332|376349|400043|400045|400054|400553|400863|400867|409197|429630|441714|463963|464507|464510|464543|464546|464799|464804|464806|464808|482061|504698|505182|505188|505612|505615|528589|528596|528597|528603|528606|528618|528985|528994|529042|529054|529064|529066|529066|566890|566893|568627|568638|568640|568640|569194|569227|569234|573144|573145|580235|643003|643004|643005|643006|643007|643008|643009|652637|656280|684532|688394|688395|770063|820670|820671|822099|822274|842093|842094|842095|842096|842097|842098|842099|842100|927261|927262|927263|936833|936834|936835|936836|936837|936838|948785|948786|957368|960817|963786", + "upstreamId": "31229|31230|31231|31232|205778|242024|242029|255128|255129|255130|361573|373352|373359|374006|374014|374442|376331|376332|376349|400043|400045|400054|400553|400863|400867|409197|429630|441714|463963|464507|464510|464543|464546|464799|464804|464806|464808|482061|504698|505182|505188|505612|505615|528589|528596|528597|528603|528606|528618|528985|528994|529042|529054|529064|529066|529066|566890|566893|568627|568638|568640|568640|569194|569227|569234|573144|573145|580235|643003|643004|643005|643006|643007|643008|643009|652637|656280|684532|688394|688395|770063|820670|820671|822099|822274|842093|842094|842095|842096|842097|842098|842099|842100|927261|927262|927263|936833|936834|936835|936836|936837|936838|948785|948786|957368|960817|963786", "text": "Epilepsy, childhood absence 5" }, { - "baseId": "31233|31234|31236|31237|287336|287337|287342|287344|287348|287350|287355|287360|287362|287368|287370|287371|287378|287379|287382|287383|287385|287387|287388|287390|287395|287397|287409|287415|288088|288089|288090|288091|288092|288095|288099|288100|288103|288128|288145|288153|288159|288160|288162|288164|288167|288170|288171|288175|288189|288191|288192|288193|288201|290754|290762|290773|290804|290816|290817|290820|290821|290822|290836|290837|290841|290842|290844|290845|290846|290847|290848|290858|290860|290861|290862|290866|290867|291017|291018|291027|291028|291031|291032|291038|291041|291042|291057|291058|291060|291069|291071|291072|291073|291089|291091|291108|291110|291111|291114|620096|697687|885487|885488|885489|885490|885491|885492|885493|885494|885495|885496|885497|885498|885499|885500|885501|885502|885503|885504|885505|885506|885507|885508|885509|885510|885511|885512|885513|885514|885515|885516|885517|885518|885519|885520|885521|885522|885523|885524|885525|885526|885527|885528|885529|885530|885531|885532|885533|885534|885535|885536|885537|885538|885539|885540|885541|885542|885543|885544|885545|885546|885547|885548|885549|885550|885551|885552|885553|885554|885555|885556|885557|885558|885559|885560|885561|885562|885563|885564|885565|885566|885567|885568|887404|887405|887406|980316|980317", + "upstreamId": "31233|31234|31236|31237|287336|287337|287342|287344|287348|287350|287355|287360|287362|287368|287370|287371|287378|287379|287382|287383|287385|287387|287388|287390|287395|287397|287409|287415|288088|288089|288090|288091|288092|288095|288099|288100|288103|288128|288145|288153|288159|288160|288162|288164|288167|288170|288171|288175|288189|288191|288192|288193|288201|290754|290762|290773|290804|290816|290817|290820|290821|290822|290836|290837|290841|290842|290844|290845|290846|290847|290848|290858|290860|290861|290862|290866|290867|291017|291018|291027|291028|291031|291032|291038|291041|291042|291057|291058|291060|291069|291071|291072|291073|291089|291091|291108|291110|291111|291114|620096|697687|885487|885488|885489|885490|885491|885492|885493|885494|885495|885496|885497|885498|885499|885500|885501|885502|885503|885504|885505|885506|885507|885508|885509|885510|885511|885512|885513|885514|885515|885516|885517|885518|885519|885520|885521|885522|885523|885524|885525|885526|885527|885528|885529|885530|885531|885532|885533|885534|885535|885536|885537|885538|885539|885540|885541|885542|885543|885544|885545|885546|885547|885548|885549|885550|885551|885552|885553|885554|885555|885556|885557|885558|885559|885560|885561|885562|885563|885564|885565|885566|885567|885568|887404|887405|887406|980316|980317", "text": "Vitamin K-dependent clotting factors, combined deficiency of, 1" }, { - "baseId": "31235|31238|31239|31240|31241|31242|31243|31244|31245|983672|983674", + "upstreamId": "31235|31238|31239|31240|31241|31242|31243|31244|31245|983672|983674", "text": "Pseudoxanthoma elasticum-like disorder with multiple coagulation factor deficiency" }, { - "baseId": "31246|31247|31247|31248|31249|31250|75270|99340|99341|99341|134572|134573|134573|134574|134575|141120|141124|141130|141132|177736|194858|201870|201876|201880|201881|201883|201884|201891|201892|201895|201896|201897|201898|201901|212514|239783|239784|266793|274648|298665|303103|368346|369732|394173|394844|394915|394920|395098|395103|395437|395439|406691|443745|453622|454805|455394|455395|455397|455659|486743|521227|521485|521493|521495|536690|560253|560255|560364|560366|563018|563022|565001|579117|614284|633701|633702|633703|633704|633705|633706|633707|633708|633709|633710|633711|633712|633713|661224|683728|685184|686717|686718|686720|689792|691815|782240|787275|793083|819569|819570|819571|819572|821913|830598|830599|830600|830601|830602|830603|830604|830605|830606|830607|830608|851276|851278|923982|923983|923984|923985|932825|932826|932827|932828|932829|932830|940812|940813|944523|944524|944525|944526|944527|944528|944529|959761", + "upstreamId": "31246|31247|31247|31248|31249|31250|75270|99340|99341|99341|134572|134573|134573|134574|134575|141120|141124|141130|141132|177736|194858|201870|201876|201880|201881|201883|201884|201891|201892|201895|201896|201897|201898|201901|212514|239783|239784|266793|274648|298665|303103|368346|369732|394173|394844|394915|394920|395098|395103|395437|395439|406691|443745|453622|454805|455394|455395|455397|455659|486743|521227|521485|521493|521495|536690|560253|560255|560364|560366|563018|563022|565001|579117|614284|633701|633702|633703|633704|633705|633706|633707|633708|633709|633710|633711|633712|633713|661224|683728|685184|686717|686718|686720|689792|691815|782240|787275|793083|819569|819570|819571|819572|821913|830598|830599|830600|830601|830602|830603|830604|830605|830606|830607|830608|851276|851278|923982|923983|923984|923985|932825|932826|932827|932828|932829|932830|940812|940813|944523|944524|944525|944526|944527|944528|944529|959761", "text": "Familial febrile seizures 8" }, { - "baseId": "31247|31247|31249|75270|99340|99341|99341|134572|134573|134573|134574|134574|134575|134575|141120|141120|141124|141124|141130|141130|141132|177736|194858|201870|201875|201876|201880|201881|201883|201884|201889|201891|201891|201892|201895|201896|201897|201898|201898|201901|212514|239783|239784|266793|274648|296772|296775|296788|296789|296791|296792|296793|296798|298646|298657|298665|298665|298668|298685|298686|298687|298702|298707|302892|302893|302894|302895|302898|302899|302900|302922|302923|302924|302925|302930|302931|302933|303093|303101|303102|303103|303103|303105|303112|303113|303117|303119|303120|303121|368346|368501|369732|394173|394844|394915|394920|395098|395103|395437|395439|406691|443745|453622|454805|455394|455395|455397|455659|521227|521485|521493|521495|536690|560253|560255|560364|560366|563018|563022|563022|565001|579117|579117|614284|633701|633702|633703|633704|633705|633706|633707|633708|633709|633710|633711|633712|633713|661224|683728|685184|686717|686718|686720|689792|691815|782240|787275|790534|793083|819569|819570|819571|819572|821913|830598|830599|830600|830601|830602|830603|830604|830605|830606|830607|830608|851276|851278|893821|893822|893823|893824|893825|893826|893827|893828|893829|893830|893831|893832|893833|893834|893835|893836|893837|893838|923982|923983|923984|923985|932825|932826|932827|932828|932829|932830|940812|940813|944523|944523|944524|944525|944526|944527|944528|944529|959761", + "upstreamId": "31247|31247|31249|75270|99340|99341|99341|134572|134573|134573|134574|134574|134575|134575|141120|141120|141124|141124|141130|141130|141132|177736|194858|201870|201875|201876|201880|201881|201883|201884|201889|201891|201891|201892|201895|201896|201897|201898|201898|201901|212514|239783|239784|266793|274648|296772|296775|296788|296789|296791|296792|296793|296798|298646|298657|298665|298665|298668|298685|298686|298687|298702|298707|302892|302893|302894|302895|302898|302899|302900|302922|302923|302924|302925|302930|302931|302933|303093|303101|303102|303103|303103|303105|303112|303113|303117|303119|303120|303121|368346|368501|369732|394173|394844|394915|394920|395098|395103|395437|395439|406691|443745|453622|454805|455394|455395|455397|455659|521227|521485|521493|521495|536690|560253|560255|560364|560366|563018|563022|563022|565001|579117|579117|614284|633701|633702|633703|633704|633705|633706|633707|633708|633709|633710|633711|633712|633713|661224|683728|685184|686717|686718|686720|689792|691815|782240|787275|790534|793083|819569|819570|819571|819572|821913|830598|830599|830600|830601|830602|830603|830604|830605|830606|830607|830608|851276|851278|893821|893822|893823|893824|893825|893826|893827|893828|893829|893830|893831|893832|893833|893834|893835|893836|893837|893838|923982|923983|923984|923985|932825|932826|932827|932828|932829|932830|940812|940813|944523|944523|944524|944525|944526|944527|944528|944529|959761", "text": "Epilepsy, childhood absence 2" }, { - "baseId": "31251|31252", + "upstreamId": "31251|31252", "text": "Generalized epilepsy with febrile seizures plus type 5" }, { - "baseId": "31252", + "upstreamId": "31252", "text": "Epilepsy, juvenile myoclonic 7" }, { - "baseId": "31252|440430|447685|583078|918590|969599|970672", + "upstreamId": "31252|440430|447685|583078|918590|969599|970672", "text": "Epilepsy, idiopathic generalized 10" }, { - "baseId": "31253|99338|99339|99339|132585|132585|132687|132688|134569|134570|134571|134571|141110|141111|141112|141113|141113|141114|141115|141115|141116|141117|141117|141118|141119|141119|193450|194328|195911|201852|201853|201860|201860|201861|201862|259817|259818|259819|296741|296742|296743|296745|296746|296748|296749|296754|296756|296757|296758|296763|296765|296769|298611|298619|298625|298626|298629|298631|298635|298638|298644|302793|302794|302797|302800|302801|302838|302847|302848|302875|302884|302888|302891|303037|303050|303051|303065|303083|303085|303086|303087|359664|368035|368330|369730|406687|454795|454797|454898|454906|454911|454916|454921|454923|455387|455392|488955|520982|521214|521221|521404|560360|560362|563011|563015|563016|565000|576799|579039|579119|614283|633696|633697|633698|633699|633700|685183|685183|686713|686715|749397|765001|782239|819641|821909|821910|821911|821912|830594|830595|830596|830597|851896|852198|893780|893781|893782|893783|893784|893785|893786|893787|893788|893789|893790|893791|893792|893793|893794|893795|893796|893797|893798|893799|893800|893801|893802|893803|893804|893805|893806|893807|893808|893809|893810|893811|893812|893813|893814|893815|893816|893817|893818|893819|893820|896074|896075|923975|923976|923977|923978|923979|923980|923981|932820|932821|932822|932823|932824|944517|944518|944519|944520|944521|944522|954105|960559", + "upstreamId": "31253|99338|99339|99339|132585|132585|132687|132688|134569|134570|134571|134571|141110|141111|141112|141113|141113|141114|141115|141115|141116|141117|141117|141118|141119|141119|193450|194328|195911|201852|201853|201860|201860|201861|201862|259817|259818|259819|296741|296742|296743|296745|296746|296748|296749|296754|296756|296757|296758|296763|296765|296769|298611|298619|298625|298626|298629|298631|298635|298638|298644|302793|302794|302797|302800|302801|302838|302847|302848|302875|302884|302888|302891|303037|303050|303051|303065|303083|303085|303086|303087|359664|368035|368330|369730|406687|454795|454797|454898|454906|454911|454916|454921|454923|455387|455392|488955|520982|521214|521221|521404|560360|560362|563011|563015|563016|565000|576799|579039|579119|614283|633696|633697|633698|633699|633700|685183|685183|686713|686715|749397|765001|782239|819641|821909|821910|821911|821912|830594|830595|830596|830597|851896|852198|893780|893781|893782|893783|893784|893785|893786|893787|893788|893789|893790|893791|893792|893793|893794|893795|893796|893797|893798|893799|893800|893801|893802|893803|893804|893805|893806|893807|893808|893809|893810|893811|893812|893813|893814|893815|893816|893817|893818|893819|893820|896074|896075|923975|923976|923977|923978|923979|923980|923981|932820|932821|932822|932823|932824|944517|944518|944519|944520|944521|944522|954105|960559", "text": "Epilepsy, juvenile myoclonic 5" }, { - "baseId": "31254|99339|132585|134571|141112|141113|141114|141115|141116|141117|141118|141119|193450|194328|195911|201852|201853|201860|201861|201862|259817|259818|259819|359664|368035|368330|369730|406687|454795|454797|454898|454906|454911|454916|454921|454923|455387|455392|488955|520982|521214|521221|521404|560360|560362|563011|563015|563016|565000|576799|579039|579119|633696|633697|633698|633699|633700|685183|686713|686715|749397|765001|782239|819641|821909|821910|821911|821912|830594|830595|830596|830597|851896|852198|923975|923976|923977|923978|923979|923980|923981|932820|932821|932822|932823|932824|944517|944518|944519|944520|944521|944522|954105|960559", + "upstreamId": "31254|99339|132585|134571|141112|141113|141114|141115|141116|141117|141118|141119|193450|194328|195911|201852|201853|201860|201861|201862|259817|259818|259819|359664|368035|368330|369730|406687|454795|454797|454898|454906|454911|454916|454921|454923|455387|455392|488955|520982|521214|521221|521404|560360|560362|563011|563015|563016|565000|576799|579039|579119|633696|633697|633698|633699|633700|685183|686713|686715|749397|765001|782239|819641|821909|821910|821911|821912|830594|830595|830596|830597|851896|852198|923975|923976|923977|923978|923979|923980|923981|932820|932821|932822|932823|932824|944517|944518|944519|944520|944521|944522|954105|960559", "text": "Epilepsy, childhood absence 4" }, { - "baseId": "31255|31256|171753|171754|171755|171756|191080|191082|191586|237078|237330|265698|266035|267762|326537|326538|326544|326546|326548|326555|326558|326559|326560|326568|326569|326573|326577|326581|326585|326593|326595|326596|326598|326601|326602|326603|326610|336367|336370|336375|336377|336381|336385|336387|336390|336396|336397|336401|336407|336409|336410|336411|336415|336417|342564|342566|342571|342573|342574|342576|342578|342580|342581|342584|342593|342596|342597|342600|342606|342608|342615|342616|342617|342621|342626|342635|342636|342637|342640|342643|342644|342648|342650|342651|342652|342653|342657|344186|344189|344195|344196|344198|344199|344210|344211|344217|344220|344225|344226|344230|344232|344235|344242|344243|344245|344255|344256|344259|344264|344265|344269|375542|432013|432014|432015|432017|434652|466090|466091|466093|466837|466840|466864|466865|466867|466879|467148|467149|492003|530370|530373|530473|530477|530479|530669|530882|530886|530895|530904|530905|530906|568444|568446|570579|570582|570602|570606|570610|574196|577572|585209|623086|623087|623088|623089|645084|645085|645086|645087|645088|645089|645090|645091|645092|645093|645094|645095|645096|652870|652874|715154|726868|740418|740434|776209|820891|820893|820894|820895|844442|844443|844444|844445|844446|844447|844448|844449|844450|844451|852131|876072|876073|876074|876075|876076|876077|876078|876079|876080|876081|876082|876083|876084|876085|876086|876087|876088|876089|876090|876091|876092|876093|876094|876095|876096|876097|876098|876099|876100|876101|876102|876103|876104|876105|876106|876107|876108|876109|876110|876111|876112|876113|876114|876115|876728|876729|876730|927990|927991|927992|927993|927994|937652|940375|941150|949621|957906", + "upstreamId": "31255|31256|171753|171754|171755|171756|191080|191082|191586|237078|237330|265698|266035|267762|326537|326538|326544|326546|326548|326555|326558|326559|326560|326568|326569|326573|326577|326581|326585|326593|326595|326596|326598|326601|326602|326603|326610|336367|336370|336375|336377|336381|336385|336387|336390|336396|336397|336401|336407|336409|336410|336411|336415|336417|342564|342566|342571|342573|342574|342576|342578|342580|342581|342584|342593|342596|342597|342600|342606|342608|342615|342616|342617|342621|342626|342635|342636|342637|342640|342643|342644|342648|342650|342651|342652|342653|342657|344186|344189|344195|344196|344198|344199|344210|344211|344217|344220|344225|344226|344230|344232|344235|344242|344243|344245|344255|344256|344259|344264|344265|344269|375542|432013|432014|432015|432017|434652|466090|466091|466093|466837|466840|466864|466865|466867|466879|467148|467149|492003|530370|530373|530473|530477|530479|530669|530882|530886|530895|530904|530905|530906|568444|568446|570579|570582|570602|570606|570610|574196|577572|585209|623086|623087|623088|623089|645084|645085|645086|645087|645088|645089|645090|645091|645092|645093|645094|645095|645096|652870|652874|715154|726868|740418|740434|776209|820891|820893|820894|820895|844442|844443|844444|844445|844446|844447|844448|844449|844450|844451|852131|876072|876073|876074|876075|876076|876077|876078|876079|876080|876081|876082|876083|876084|876085|876086|876087|876088|876089|876090|876091|876092|876093|876094|876095|876096|876097|876098|876099|876100|876101|876102|876103|876104|876105|876106|876107|876108|876109|876110|876111|876112|876113|876114|876115|876728|876729|876730|927990|927991|927992|927993|927994|937652|940375|941150|949621|957906", "text": "Gamma-aminobutyric acid transaminase deficiency" }, { - "baseId": "31257|31258|31259", + "upstreamId": "31257|31258|31259", "text": "Alcoholism, susceptibility to" }, { - "baseId": "31260", + "upstreamId": "31260", "text": "Amyotrophic lateral sclerosis 6, autosomal recessive" }, { - "baseId": "31261|31261|31262|31263|31264|31265|31266|31267|38662|38663|45745|255698|255699|255699|255700|255700|255702|255705|255705|264787|325119|325121|325121|325125|325126|325127|325127|325133|325136|325144|325145|325147|325148|325149|325153|325154|325158|334778|334784|334786|334787|334788|334816|334820|334827|334828|334834|334836|334839|334841|341258|341258|341259|341263|341264|341268|341269|341272|341273|341274|341284|341286|341289|341292|341293|341301|341306|341311|341316|341318|341320|341321|341324|342763|342765|342767|342769|342775|342778|342789|342790|342791|342793|342794|342799|342804|342805|342809|342810|342813|360997|422093|438008|438008|441901|441901|441904|441905|486142|495622|529932|529932|530247|530247|530252|530252|530443|530443|530447|530449|568102|570256|570258|574045|644615|644616|644617|644618|644619|644620|644621|644622|644623|693845|693847|693848|693848|693849|693850|703659|740157|770875|778292|791586|791587|793636|820825|843771|843772|843773|843774|843775|843775|843776|851669|861409|861410|861411|861412|861452|875120|875121|875122|875123|875124|875125|875126|875126|875127|875127|875128|875129|875130|875131|875132|875133|875134|875135|875136|875137|875138|875139|875140|875141|875142|875143|875144|875145|875146|875147|875148|875149|875150|875151|875152|875153|875154|875155|875156|875157|875158|875159|875160|875161|875162|875163|875164|875165|875166|875167|875168|875169|875170|876654|876655|876656|876657|876658|876659|921528|927785|937417|949376|957738|957739|977364", + "upstreamId": "31261|31261|31262|31263|31264|31265|31266|31267|38662|38663|45745|255698|255699|255699|255700|255700|255702|255705|255705|264787|325119|325121|325121|325125|325126|325127|325127|325133|325136|325144|325145|325147|325148|325149|325153|325154|325158|334778|334784|334786|334787|334788|334816|334820|334827|334828|334834|334836|334839|334841|341258|341258|341259|341263|341264|341268|341269|341272|341273|341274|341284|341286|341289|341292|341293|341301|341306|341311|341316|341318|341320|341321|341324|342763|342765|342767|342769|342775|342778|342789|342790|342791|342793|342794|342799|342804|342805|342809|342810|342813|360997|422093|438008|438008|441901|441901|441904|441905|486142|495622|529932|529932|530247|530247|530252|530252|530443|530443|530447|530449|568102|570256|570258|574045|644615|644616|644617|644618|644619|644620|644621|644622|644623|693845|693847|693848|693848|693849|693850|703659|740157|770875|778292|791586|791587|793636|820825|843771|843772|843773|843774|843775|843775|843776|851669|861409|861410|861411|861412|861452|875120|875121|875122|875123|875124|875125|875126|875126|875127|875127|875128|875129|875130|875131|875132|875133|875134|875135|875136|875137|875138|875139|875140|875141|875142|875143|875144|875145|875146|875147|875148|875149|875150|875151|875152|875153|875154|875155|875156|875157|875158|875159|875160|875161|875162|875163|875164|875165|875166|875167|875168|875169|875170|876654|876655|876656|876657|876658|876659|921528|927785|937417|949376|957738|957739|977364", "text": "Amyotrophic lateral sclerosis 6, with or without frontotemporal dementia" }, { - "baseId": "31261|31266|45745|45745|45746|255699|255700|255705|264787|325121|325125|325127|341258|438008|441901|441904|486142|495622|529932|530247|530252|530443|530447|530449|568102|570256|570258|574045|644615|644616|644617|644618|644619|644620|644621|644622|644623|693845|693847|693848|693849|693850|703659|740157|770875|778292|793636|820825|843771|843772|843773|843774|843775|843776|851669|875126|875127|927785|937417|949376|957738|957739", + "upstreamId": "31261|31266|45745|45745|45746|255699|255700|255705|264787|325121|325125|325127|341258|438008|441901|441904|486142|495622|529932|530247|530252|530443|530447|530449|568102|570256|570258|574045|644615|644616|644617|644618|644619|644620|644621|644622|644623|693845|693847|693848|693849|693850|703659|740157|770875|778292|793636|820825|843771|843772|843773|843774|843775|843776|851669|875126|875127|927785|937417|949376|957738|957739", "text": "Tremor, hereditary essential, 4" }, { - "baseId": "31268|790903", + "upstreamId": "31268|790903", "text": "B4GALT1-CDG" }, { - "baseId": "31269|31270|31271|31274|31275|38660|38661|50021|50022|50023|50024|51260|51261|98356|98360|98361|98362|98364|98365|98366|98367|98367|138152|138154|138155|138156|138157|141073|141074|141075|141076|151069|151752|151776|151789|151789|151791|152368|177192|177706|181629|181630|181631|181633|181634|181636|181637|181638|181639|181640|181641|181642|181643|195206|195552|204603|204604|210648|210650|210651|210652|210654|210657|210658|210663|210669|210670|210671|210673|210674|210676|210678|210680|210681|210682|210685|210687|210693|210694|210695|210696|210697|210699|210700|210701|210704|210706|210708|210709|210710|210711|210712|232189|232190|232194|232195|232197|232199|238253|238254|238255|238256|238257|238258|238259|238260|238261|238262|238263|238263|238264|259660|259661|259662|259663|259664|259665|264011|280141|280156|280159|280161|280165|280166|280167|280504|280508|280509|280521|280522|280523|281814|281817|281818|281821|281822|281825|281943|281944|281945|281954|359309|364940|380447|380450|380451|380452|380453|380454|380455|380458|380462|380463|380464|380469|380471|390724|390727|391074|391084|391095|391096|391098|391099|391101|391103|391104|391105|391106|391108|391110|391111|391113|391116|391117|391119|391121|391128|391130|391134|391136|391137|391139|391141|391146|391147|391156|391158|391162|391164|391171|391174|391181|391185|391198|391200|391202|391231|391254|391257|391266|391269|391279|391287|391296|405120|405122|405123|405126|421002|421003|421005|421006|421007|421009|421010|421011|421016|421019|421021|421023|425354|446926|446934|447673|447678|447679|447684|447693|447700|447702|447706|447707|447708|447713|447716|447718|447900|447913|447916|447919|447922|447926|447928|447932|447938|447942|448005|448006|448014|448015|448017|448018|448021|448023|448026|448029|448031|448032|448033|448034|448035|448036|448046|448052|448055|448056|448056|448059|448061|448063|448064|448066|472286|472289|472291|472292|472293|472296|472301|472304|472305|472308|472311|472313|472314|472316|472319|472321|472349|472375|498358|498548|515717|515718|515721|515722|515723|515726|515729|515731|515732|515738|515739|515743|515748|515754|515756|515761|515763|515766|515771|515773|515798|515801|515807|515808|515810|515812|515824|515826|515829|515831|515835|515837|515841|515843|515844|556499|556527|556529|556918|556920|556922|556924|556926|556928|556930|556932|556934|556936|556938|557210|557212|557214|557216|557218|557220|557222|557224|557226|557228|557230|557257|557259|557261|557263|557265|557267|557269|557271|557273|557275|558433|558435|558437|558439|558441|558443|558445|558447|558449|558451|558453|558455|627628|627629|627630|627631|627632|627633|627634|627635|627636|627637|627638|627639|627640|627641|627642|627643|627644|627645|627646|627647|627648|627649|627650|627651|627652|627653|627654|627655|627656|627657|627658|627659|627660|627661|627662|627663|627664|627665|627666|627667|627668|627669|627670|627671|627672|627673|627674|627675|627676|627677|627678|627679|627680|627681|627682|627683|627684|650559|650573|650578|650645|650704|650709|655085|685092|685673|685674|685675|685677|685678|685679|689651|689652|690561|690563|695041|718841|718842|732317|746358|758902|761811|761813|761815|761819|774484|774492|774506|794642|806531|806533|806534|806539|806541|806549|806550|806554|806555|806558|806565|806567|806568|806570|806579|806583|806585|806587|806589|806593|815218|818818|818819|818820|818949|818950|818951|818952|818953|818954|818955|823767|823768|823769|823770|823771|823772|823773|823774|823775|823776|823777|823778|823779|823780|823781|823782|823783|823784|823785|823786|823787|823788|823789|823790|823791|823792|823793|823794|823795|823796|823797|823798|823799|823800|823801|823802|823803|823804|850770|850772|850774|850776|855105|864177|864178|864179|865167|918624|921943|921944|921945|921946|921947|921948|921949|921950|921951|921952|921953|921954|921955|921956|921957|921958|930421|930422|930423|930424|930425|930426|930427|930428|930429|930430|930431|930432|930433|939803|939804|939805|939806|940627|940628|941867|941868|941869|941870|941871|941872|941873|941874|941875|941876|941877|941878|941879|941880|941881|941882|941883|941884|941885|941886|941887|952359|952360|952361|952362|952363|959552|959553|959554|977531|977532", + "upstreamId": "31269|31270|31271|31274|31275|38660|38661|50021|50022|50023|50024|51260|51261|98356|98360|98361|98362|98364|98365|98366|98367|98367|138152|138154|138155|138156|138157|141073|141074|141075|141076|151069|151752|151776|151789|151789|151791|152368|177192|177706|181629|181630|181631|181633|181634|181636|181637|181638|181639|181640|181641|181642|181643|195206|195552|204603|204604|210648|210650|210651|210652|210654|210657|210658|210663|210669|210670|210671|210673|210674|210676|210678|210680|210681|210682|210685|210687|210693|210694|210695|210696|210697|210699|210700|210701|210704|210706|210708|210709|210710|210711|210712|232189|232190|232194|232195|232197|232199|238253|238254|238255|238256|238257|238258|238259|238260|238261|238262|238263|238263|238264|259660|259661|259662|259663|259664|259665|264011|280141|280156|280159|280161|280165|280166|280167|280504|280508|280509|280521|280522|280523|281814|281817|281818|281821|281822|281825|281943|281944|281945|281954|359309|364940|380447|380450|380451|380452|380453|380454|380455|380458|380462|380463|380464|380469|380471|390724|390727|391074|391084|391095|391096|391098|391099|391101|391103|391104|391105|391106|391108|391110|391111|391113|391116|391117|391119|391121|391128|391130|391134|391136|391137|391139|391141|391146|391147|391156|391158|391162|391164|391171|391174|391181|391185|391198|391200|391202|391231|391254|391257|391266|391269|391279|391287|391296|405120|405122|405123|405126|421002|421003|421005|421006|421007|421009|421010|421011|421016|421019|421021|421023|425354|446926|446934|447673|447678|447679|447684|447693|447700|447702|447706|447707|447708|447713|447716|447718|447900|447913|447916|447919|447922|447926|447928|447932|447938|447942|448005|448006|448014|448015|448017|448018|448021|448023|448026|448029|448031|448032|448033|448034|448035|448036|448046|448052|448055|448056|448056|448059|448061|448063|448064|448066|472286|472289|472291|472292|472293|472296|472301|472304|472305|472308|472311|472313|472314|472316|472319|472321|472349|472375|498358|498548|515717|515718|515721|515722|515723|515726|515729|515731|515732|515738|515739|515743|515748|515754|515756|515761|515763|515766|515771|515773|515798|515801|515807|515808|515810|515812|515824|515826|515829|515831|515835|515837|515841|515843|515844|556499|556527|556529|556918|556920|556922|556924|556926|556928|556930|556932|556934|556936|556938|557210|557212|557214|557216|557218|557220|557222|557224|557226|557228|557230|557257|557259|557261|557263|557265|557267|557269|557271|557273|557275|558433|558435|558437|558439|558441|558443|558445|558447|558449|558451|558453|558455|627628|627629|627630|627631|627632|627633|627634|627635|627636|627637|627638|627639|627640|627641|627642|627643|627644|627645|627646|627647|627648|627649|627650|627651|627652|627653|627654|627655|627656|627657|627658|627659|627660|627661|627662|627663|627664|627665|627666|627667|627668|627669|627670|627671|627672|627673|627674|627675|627676|627677|627678|627679|627680|627681|627682|627683|627684|650559|650573|650578|650645|650704|650709|655085|685092|685673|685674|685675|685677|685678|685679|689651|689652|690561|690563|695041|718841|718842|732317|746358|758902|761811|761813|761815|761819|774484|774492|774506|794642|806531|806533|806534|806539|806541|806549|806550|806554|806555|806558|806565|806567|806568|806570|806579|806583|806585|806587|806589|806593|815218|818818|818819|818820|818949|818950|818951|818952|818953|818954|818955|823767|823768|823769|823770|823771|823772|823773|823774|823775|823776|823777|823778|823779|823780|823781|823782|823783|823784|823785|823786|823787|823788|823789|823790|823791|823792|823793|823794|823795|823796|823797|823798|823799|823800|823801|823802|823803|823804|850770|850772|850774|850776|855105|864177|864178|864179|865167|918624|921943|921944|921945|921946|921947|921948|921949|921950|921951|921952|921953|921954|921955|921956|921957|921958|930421|930422|930423|930424|930425|930426|930427|930428|930429|930430|930431|930432|930433|939803|939804|939805|939806|940627|940628|941867|941868|941869|941870|941871|941872|941873|941874|941875|941876|941877|941878|941879|941880|941881|941882|941883|941884|941885|941886|941887|952359|952360|952361|952362|952363|959552|959553|959554|977531|977532", "text": "Fumarase deficiency" }, { - "baseId": "31271|31273|31274|31275|31276|31277|38660|50021|50024|98356|98357|98360|98361|98364|98365|98367|98367|138152|138154|141073|141074|141075|141076|151752|151789|152368|177061|177192|181638|181639|181641|181642|195206|195552|204603|204604|210649|210651|210663|210670|210671|210673|210677|210685|210696|210701|210706|210707|210711|210712|238253|238255|238258|238262|238263|259659|263987|280141|280156|280159|280161|280165|280166|280167|280504|280508|280509|280521|280522|280523|281814|281817|281818|281821|281822|281825|281943|281944|281945|281954|380447|380448|380449|380450|380451|380452|380453|380454|380455|380456|380457|380458|380459|380460|380461|380462|380463|380464|380465|380466|380467|380468|380469|380470|380471|380472|380473|391106|391171|447679|447916|448056|513996|627663|677031|806555|815966|864177|864178|864179|865167|921452", + "upstreamId": "31271|31273|31274|31275|31276|31277|38660|50021|50024|98356|98357|98360|98361|98364|98365|98367|98367|138152|138154|141073|141074|141075|141076|151752|151789|152368|177061|177192|181638|181639|181641|181642|195206|195552|204603|204604|210649|210651|210663|210670|210671|210673|210677|210685|210696|210701|210706|210707|210711|210712|238253|238255|238258|238262|238263|259659|263987|280141|280156|280159|280161|280165|280166|280167|280504|280508|280509|280521|280522|280523|281814|281817|281818|281821|281822|281825|281943|281944|281945|281954|380447|380448|380449|380450|380451|380452|380453|380454|380455|380456|380457|380458|380459|380460|380461|380462|380463|380464|380465|380466|380467|380468|380469|380470|380471|380472|380473|391106|391171|447679|447916|448056|513996|627663|677031|806555|815966|864177|864178|864179|865167|921452", "text": "Hereditary leiomyomatosis and renal cell cancer" }, { - "baseId": "31278|227409|967235|967236|967237", + "upstreamId": "31278|227409|967235|967236|967237", "text": "Fucosyltransferase 6 deficiency" }, { - "baseId": "31279|31280|31281|187217|254134|313835|313839|313840|313853|313854|320035|320036|326220|327162|327163|327165|327173|327174|327183|327188|327189|362186|867813|867814|867815|867816|867817|867818|867819", + "upstreamId": "31279|31280|31281|187217|254134|313835|313839|313840|313853|313854|320035|320036|326220|327162|327163|327165|327173|327174|327183|327188|327189|362186|867813|867814|867815|867816|867817|867818|867819", "text": "Hypogonadotropic hypogonadism 24 without anosmia" }, { - "baseId": "31282|31283|31284|31285|31286|31287|31290|38659|70669|70670|70671|70672|70673|141106|250748|286704|286713|286715|287414|287431|287432|287433|287434|289861|289862|289864|290218|290222|290227|290234|290235|290241|290250|586941|763346|885146|885147|885148|885149|885150|885151|885152|885153|885154|885155|885156|885157|885158|885159|885160|885161|885162|885163|885164|885165|885166|885167|885168|885169|885170|983728|983729", + "upstreamId": "31282|31283|31284|31285|31286|31287|31290|38659|70669|70670|70671|70672|70673|141106|250748|286704|286713|286715|287414|287431|287432|287433|287434|289861|289862|289864|290218|290222|290227|290234|290235|290241|290250|586941|763346|885146|885147|885148|885149|885150|885151|885152|885153|885154|885155|885156|885157|885158|885159|885160|885161|885162|885163|885164|885165|885166|885167|885168|885169|885170|983728|983729", "text": "Ovarian dysgenesis 1" }, { - "baseId": "31283|31285|31286|31288|31289|31291|31292|31293|141106|250748|286704|286713|286715|286718|287414|287430|287431|287432|287433|287434|289861|289862|289863|289864|290218|290222|290227|290234|290235|290241|290250|353573|586941|763346|885146|885147|885148|885149|885150|885151|885152|885153|885154|885155|885156|885157|885158|885159|885160|885161|885162|885163|885164|885165|885166|885167|885168|885169|885170", + "upstreamId": "31283|31285|31286|31288|31289|31291|31292|31293|141106|250748|286704|286713|286715|286718|287414|287430|287431|287432|287433|287434|289861|289862|289863|289864|290218|290222|290227|290234|290235|290241|290250|353573|586941|763346|885146|885147|885148|885149|885150|885151|885152|885153|885154|885155|885156|885157|885158|885159|885160|885161|885162|885163|885164|885165|885166|885167|885168|885169|885170", "text": "Ovarian hyperstimulation syndrome" }, { - "baseId": "31285", + "upstreamId": "31285", "text": "Ovarian response to FSH stimulation" }, { - "baseId": "31294|31295|31296|45590|101647|141090|177716|192477|193636|193637|194991|194992|202609|202610|202614|202615|202618|315126|315127|321930|328012|329212|329241|372428|372430|372433|372436|372677|408467|421888|444885|461451|461455|461458|461669|461671|461985|503782|526769|566170|567519|567520|567523|579755|640441|640442|640443|640444|640445|640446|640447|768748|768749|820435|838984|838985|838986|838987|852633|868780|868781|917748|926382|926383|935773|935774|935775|935776|947654", + "upstreamId": "31294|31295|31296|45590|101647|141090|177716|192477|193636|193637|194991|194992|202609|202610|202614|202615|202618|315126|315127|321930|328012|329212|329241|372428|372430|372433|372436|372677|408467|421888|444885|461451|461455|461458|461669|461671|461985|503782|526769|566170|567519|567520|567523|579755|640441|640442|640443|640444|640445|640446|640447|768748|768749|820435|838984|838985|838986|838987|852633|868780|868781|917748|926382|926383|935773|935774|935775|935776|947654", "text": "Cerebral folate transport deficiency" }, { - "baseId": "31298|31299|31300|31301|31302|31304|31305|31306|31307|31308|679746|918951|918952|918953", + "upstreamId": "31298|31299|31300|31301|31302|31304|31305|31306|31307|31308|679746|918951|918952|918953", "text": "Hereditary lymphedema type I" }, { - "baseId": "31309", + "upstreamId": "31309", "text": "Leukemia, acute myeloid, reduced survival in, somatic" }, { - "baseId": "31318|31321|31330|31332|31333|31335|31337|31340|31341|31342|136393|136394|136395|136396|178334|181583|191949|191949|192053|192053|193672|193672|193673|193674|193674|236849|305196|305197|305206|305210|305211|305213|305216|305216|305217|305227|305229|308949|308950|308954|308955|308965|308966|308967|308968|308969|308987|308988|308989|308989|308990|308991|308992|308993|308993|308994|308994|308995|309017|309019|309020|314169|314172|314173|314175|314176|314177|314180|314181|314182|314183|314185|314186|314189|314193|314194|314195|314196|314199|314200|314200|314201|314204|314205|314206|314207|314209|314210|314213|314213|314217|314217|314219|314220|314222|314223|314228|314231|314237|314238|370233|371850|371850|384419|425792|425793|425793|428839|458465|458466|458898|458901|472259|493549|513216|513216|523562|523565|523567|523886|524155|539141|539142|562414|562416|577061|637202|651969|679003|679934|679935|684009|687284|687287|687290|689918|689920|819961|834738|834739|851694|899458|899459|899460|899461|899462|899463|899464|899465|899466|899467|899468|899469|899470|899471|899472|899473|899474|899475|899476|899477|899478|899479|899480|899481|899482|899483|899484|899485|899486|899487|899488|899489|899490|899491|899492|899493|899494|899495|899496|899497|899498|899499|899500|899501|899502|899503|899504|899505|899506|899507|899508|899509|899510|899511|899512|900485|900486|900487|925198|925199|925200|934303|934304|946062|946063|962716|963106|963107|963108|963109|963110|963111|963112|963113", + "upstreamId": "31318|31321|31330|31332|31333|31335|31337|31340|31341|31342|136393|136394|136395|136396|178334|181583|191949|191949|192053|192053|193672|193672|193673|193674|193674|236849|305196|305197|305206|305210|305211|305213|305216|305216|305217|305227|305229|308949|308950|308954|308955|308965|308966|308967|308968|308969|308987|308988|308989|308989|308990|308991|308992|308993|308993|308994|308994|308995|309017|309019|309020|314169|314172|314173|314175|314176|314177|314180|314181|314182|314183|314185|314186|314189|314193|314194|314195|314196|314199|314200|314200|314201|314204|314205|314206|314207|314209|314210|314213|314213|314217|314217|314219|314220|314222|314223|314228|314231|314237|314238|370233|371850|371850|384419|425792|425793|425793|428839|458465|458466|458898|458901|472259|493549|513216|513216|523562|523565|523567|523886|524155|539141|539142|562414|562416|577061|637202|651969|679003|679934|679935|684009|687284|687287|687290|689918|689920|819961|834738|834739|851694|899458|899459|899460|899461|899462|899463|899464|899465|899466|899467|899468|899469|899470|899471|899472|899473|899474|899475|899476|899477|899478|899479|899480|899481|899482|899483|899484|899485|899486|899487|899488|899489|899490|899491|899492|899493|899494|899495|899496|899497|899498|899499|899500|899501|899502|899503|899504|899505|899506|899507|899508|899509|899510|899511|899512|900485|900486|900487|925198|925199|925200|934303|934304|946062|946063|962716|963106|963107|963108|963109|963110|963111|963112|963113", "text": "Hypogonadotropic hypogonadism 2 with or without anosmia" }, { - "baseId": "31319|31320|31322|31323|31324|31334|31335|31336|31338|31339|59835|59836|59837|59838", + "upstreamId": "31319|31320|31322|31323|31324|31334|31335|31336|31338|31339|59835|59836|59837|59838", "text": "Hypogonadotropic hypogonadism 2 with anosmia" }, { - "baseId": "31321|31332|59853|178327|178328|178330|178331|178332|178335|178336|178337|178338|178339|178340|178341|178343|263372", + "upstreamId": "31321|31332|59853|178327|178328|178330|178331|178332|178335|178336|178337|178338|178339|178340|178341|178343|263372", "text": "Delayed puberty" }, { - "baseId": "31325|31326|31327|31329|191949|192053|193672|193674|305196|305197|305206|305210|305211|305213|305216|305217|305227|305229|308949|308950|308951|308954|308955|308965|308966|308967|308968|308969|308987|308988|308989|308990|308991|308992|308993|308994|308995|309017|309019|309020|314169|314172|314173|314175|314176|314177|314180|314181|314182|314183|314185|314186|314189|314193|314194|314195|314196|314199|314200|314201|314204|314205|314206|314207|314209|314210|314213|314217|314219|314220|314222|314223|314228|314231|314237|314238|370233|371850|513216|523886|577061|623634|687284|687287|689918|790799|899458|899459|899460|899461|899462|899463|899464|899465|899466|899467|899468|899469|899470|899471|899472|899473|899474|899475|899476|899477|899478|899479|899480|899481|899482|899483|899484|899485|899486|899487|899488|899489|899490|899491|899492|899493|899494|899495|899496|899497|899498|899499|899500|899501|899502|899503|899504|899505|899506|899507|899508|899509|899510|899511|899512|900485|900486|900487", + "upstreamId": "31325|31326|31327|31329|191949|192053|193672|193674|305196|305197|305206|305210|305211|305213|305216|305217|305227|305229|308949|308950|308951|308954|308955|308965|308966|308967|308968|308969|308987|308988|308989|308990|308991|308992|308993|308994|308995|309017|309019|309020|314169|314172|314173|314175|314176|314177|314180|314181|314182|314183|314185|314186|314189|314193|314194|314195|314196|314199|314200|314201|314204|314205|314206|314207|314209|314210|314213|314217|314219|314220|314222|314223|314228|314231|314237|314238|370233|371850|513216|523886|577061|623634|687284|687287|689918|790799|899458|899459|899460|899461|899462|899463|899464|899465|899466|899467|899468|899469|899470|899471|899472|899473|899474|899475|899476|899477|899478|899479|899480|899481|899482|899483|899484|899485|899486|899487|899488|899489|899490|899491|899492|899493|899494|899495|899496|899497|899498|899499|899500|899501|899502|899503|899504|899505|899506|899507|899508|899509|899510|899511|899512|900485|900486|900487", "text": "Osteoglophonic dysplasia" }, { - "baseId": "31328|191949|192053|193672|193674|305196|305197|305206|305210|305211|305213|305216|305217|305227|305229|308949|308950|308954|308955|308965|308966|308967|308968|308969|308987|308988|308989|308990|308991|308992|308993|308994|308995|309017|309019|309020|314169|314172|314173|314175|314176|314177|314180|314181|314182|314183|314185|314186|314189|314193|314194|314195|314196|314199|314200|314201|314204|314205|314206|314207|314209|314210|314213|314217|314219|314220|314222|314223|314228|314231|314237|314238|370233|371850|513216|523886|577061|687284|687287|689918|899458|899459|899460|899461|899462|899463|899464|899465|899466|899467|899468|899469|899470|899471|899472|899473|899474|899475|899476|899477|899478|899479|899480|899481|899482|899483|899484|899485|899486|899487|899488|899489|899490|899491|899492|899493|899494|899495|899496|899497|899498|899499|899500|899501|899502|899503|899504|899505|899506|899507|899508|899509|899510|899511|899512|900485|900486|900487", + "upstreamId": "31328|191949|192053|193672|193674|305196|305197|305206|305210|305211|305213|305216|305217|305227|305229|308949|308950|308954|308955|308965|308966|308967|308968|308969|308987|308988|308989|308990|308991|308992|308993|308994|308995|309017|309019|309020|314169|314172|314173|314175|314176|314177|314180|314181|314182|314183|314185|314186|314189|314193|314194|314195|314196|314199|314200|314201|314204|314205|314206|314207|314209|314210|314213|314217|314219|314220|314222|314223|314228|314231|314237|314238|370233|371850|513216|523886|577061|687284|687287|689918|899458|899459|899460|899461|899462|899463|899464|899465|899466|899467|899468|899469|899470|899471|899472|899473|899474|899475|899476|899477|899478|899479|899480|899481|899482|899483|899484|899485|899486|899487|899488|899489|899490|899491|899492|899493|899494|899495|899496|899497|899498|899499|899500|899501|899502|899503|899504|899505|899506|899507|899508|899509|899510|899511|899512|900485|900486|900487", "text": "Trigonocephaly 1" }, { - "baseId": "31343|31344|31345|31346|31347|31348|31350|31351|31352|31353|31354|31355|31356|31357|34316|38476|227205|227206|249537|249538|249541|249542|249543|249544|249547|277401|277402|277403|277592|277598|277600|277608|278457|278458|278462|278464|278466|278467|278468|278469|278470|278486|553150|553151|619969|619970|718385|862785|862786|862787|862788|862789|862790|862791|862792|862793|862794|862795|862796|862797|862798|862799|862800|862801|862802|865034|865035|865036", + "upstreamId": "31343|31344|31345|31346|31347|31348|31350|31351|31352|31353|31354|31355|31356|31357|34316|38476|227205|227206|249537|249538|249541|249542|249543|249544|249547|277401|277402|277403|277592|277598|277600|277608|278457|278458|278462|278464|278466|278467|278468|278469|278470|278486|553150|553151|619969|619970|718385|862785|862786|862787|862788|862789|862790|862791|862792|862793|862794|862795|862796|862797|862798|862799|862800|862801|862802|865034|865035|865036", "text": "Trimethylaminuria" }, { - "baseId": "31349", + "upstreamId": "31349", "text": "FMO3 activity, decreased" }, { - "baseId": "31358|31358|31358|31359|31359|31360|65592|65594|65594|132362|205128|227198|227199|227200|227201|259625|259629|259630|263950|263963|361156|404743|404918|438932|513891|514416|538328|578363|626093|682425|918558|970659", + "upstreamId": "31358|31358|31358|31359|31359|31360|65592|65594|65594|132362|205128|227198|227199|227200|227201|259625|259629|259630|263950|263963|361156|404743|404918|438932|513891|514416|538328|578363|626093|682425|918558|970659", "text": "Ichthyosis vulgaris" }, { - "baseId": "31358|31359|31360|404918", + "upstreamId": "31358|31359|31360|404918", "text": "Dermatitis, atopic, 2, susceptibility to" }, { - "baseId": "31358|31358|31359|31359|65592|65594|65594|259630|438932|513491|514416|538328", + "upstreamId": "31358|31358|31359|31359|65592|65594|65594|259630|438932|513491|514416|538328", "text": "Dermatitis, atopic, 2" }, { - "baseId": "31358|360928|514093|514094", + "upstreamId": "31358|360928|514093|514094", "text": "Dermatitis, atopic" }, { - "baseId": "31358|31359|263393", + "upstreamId": "31358|31359|263393", "text": "Eczema" }, { - "baseId": "31358|259630|263950", + "upstreamId": "31358|259630|263950", "text": "FLG-related disorders" }, { - "baseId": "31359", + "upstreamId": "31359", "text": "FLG-Related Disorder" }, { - "baseId": "31362|31363|31364|190044|190045|190046|576097|733142|804845|818182|965213|975946", + "upstreamId": "31362|31363|31364|190044|190045|190046|576097|733142|804845|818182|965213|975946", "text": "Glomerulopathy with fibronectin deposits 2" }, { - "baseId": "31365", + "upstreamId": "31365", "text": "Cancer progression and tumor cell motility" }, { - "baseId": "31366|31367|31369|31376|31395|576111|964230", + "upstreamId": "31366|31367|31369|31376|31395|576111|964230", "text": "Achondroplasia" }, { - "baseId": "31367|31376|31377|31379|31383|31384|31385|31386|31387|31388|31395|31396|31397|76434|76435|76731|76734|76737|76763|76788|76808|76809|76823|76824|138143|138148|576111|790461|964231|970790", + "upstreamId": "31367|31376|31377|31379|31383|31384|31385|31386|31387|31388|31395|31396|31397|76434|76435|76731|76734|76737|76763|76788|76808|76809|76823|76824|138143|138148|576111|790461|964231|970790", "text": "Hypochondroplasia" }, { - "baseId": "31368|361702|576111", + "upstreamId": "31368|361702|576111", "text": "Crouzon syndrome with acanthosis nigricans" }, { - "baseId": "31370|966849", + "upstreamId": "31370|966849", "text": "Thanatophoric dysplasia, type 2" }, { - "baseId": "31371|31372|31373|31374|31375|31378|31380|31381|31398|76469|76470|76471|76472|621895|966849", + "upstreamId": "31371|31372|31373|31374|31375|31378|31380|31381|31398|76469|76470|76471|76472|621895|966849", "text": "Thanatophoric dysplasia type 1" }, { - "baseId": "31371", + "upstreamId": "31371", "text": "Skeletal dysplasia with acanthosis nigricans" }, { - "baseId": "31379|964111", + "upstreamId": "31379|964111", "text": "Muenke syndrome" }, { - "baseId": "31380", + "upstreamId": "31380", "text": "SEVERE ACHONDRODYSPLASIA WITH DEVELOPMENTAL DELAY AND ACANTHOSIS NIGRICANS" }, { - "baseId": "31387|363578", + "upstreamId": "31387|363578", "text": "Acanthosis nigricans" }, { - "baseId": "31394|166328|576111|615789", + "upstreamId": "31394|166328|576111|615789", "text": "Camptodactyly-tall stature-scoliosis-hearing loss syndrome" }, { - "baseId": "31400", + "upstreamId": "31400", "text": "FIBRINOGEN TOKYO 2" }, { - "baseId": "31400|31401|31415|31417|31421|31430|31435|31441|31443|31454|496315|615377|615379|615380|615381|615382|615383|615384|615385|615386|615387|615388|615389", + "upstreamId": "31400|31401|31415|31417|31421|31430|31435|31441|31443|31454|496315|615377|615379|615380|615381|615382|615383|615384|615385|615386|615387|615388|615389", "text": "Hypofibrinogenemia" }, { - "baseId": "31401", + "upstreamId": "31401", "text": "FIBRINOGEN HAIFA 1" }, { - "baseId": "31402", + "upstreamId": "31402", "text": "FIBRINOGEN BALTIMORE 1" }, { - "baseId": "31403", + "upstreamId": "31403", "text": "FIBRINOGEN KYOTO 1" }, { - "baseId": "31404", + "upstreamId": "31404", "text": "FIBRINOGEN BALTIMORE 3" }, { - "baseId": "31405", + "upstreamId": "31405", "text": "FIBRINOGEN ASAHI" }, { - "baseId": "31406", + "upstreamId": "31406", "text": "FIBRINOGEN VLISSINGEN 1" }, { - "baseId": "31407", + "upstreamId": "31407", "text": "FIBRINOGEN NAGOYA 1" }, { - "baseId": "31408", + "upstreamId": "31408", "text": "FIBRINOGEN KYOTO 3" }, { - "baseId": "31409", + "upstreamId": "31409", "text": "FIBRINOGEN MILANO 1" }, { - "baseId": "31410", + "upstreamId": "31410", "text": "FIBRINOGEN PARIS 1" }, { - "baseId": "31411", + "upstreamId": "31411", "text": "FIBRINOGEN OSLO III" }, { - "baseId": "31412", + "upstreamId": "31412", "text": "FIBRINOGEN OSAKA 5" }, { - "baseId": "31413", + "upstreamId": "31413", "text": "FIBRINOGEN MATSUMOTO 1" }, { - "baseId": "31414", + "upstreamId": "31414", "text": "FIBRINOGEN GIESSEN 4" }, { - "baseId": "31415|31416|31417|31419|31423|31428|31429|31431|31432|31434|31435|31453|31454|31456|31459|237254|251340|251341|251343|251344|251345|292471|292473|292477|292478|292487|292488|292493|292501|292502|292505|292506|292513|292514|292527|293902|293903|293904|293905|293907|293913|293914|293924|293930|293931|293932|293933|293934|293935|293939|293943|297187|297196|297197|297200|297216|297220|297221|297222|297223|297229|297230|297241|297245|297256|297269|297281|297288|297290|297292|297293|297297|297299|297300|297303|297304|297305|297307|297313|297314|297315|297321|297334|297337|297349|297350|297353|297369|297371|297374|297375|353667|389197|496315|496316|538367|615375|615393|683623|709203|709204|779010|789171|789245|789247|795545|890231|890232|890233|890234|890235|890236|890237|890238|890239|890240|890241|890242|890243|890244|890245|890246|890247|890248|890249|890250|890251|890252|890253|890254|890255|890256|890257|890258|890259|890260|890261|890262|890263|890264|890265|890266|890267|890268|890269|890270|890271|890272|890273|890274|890275|890276|890277|891753|891754", + "upstreamId": "31415|31416|31417|31419|31423|31428|31429|31431|31432|31434|31435|31453|31454|31456|31459|237254|251340|251341|251343|251344|251345|292471|292473|292477|292478|292487|292488|292493|292501|292502|292505|292506|292513|292514|292527|293902|293903|293904|293905|293907|293913|293914|293924|293930|293931|293932|293933|293934|293935|293939|293943|297187|297196|297197|297200|297216|297220|297221|297222|297223|297229|297230|297241|297245|297256|297269|297281|297288|297290|297292|297293|297297|297299|297300|297303|297304|297305|297307|297313|297314|297315|297321|297334|297337|297349|297350|297353|297369|297371|297374|297375|353667|389197|496315|496316|538367|615375|615393|683623|709203|709204|779010|789171|789245|789247|795545|890231|890232|890233|890234|890235|890236|890237|890238|890239|890240|890241|890242|890243|890244|890245|890246|890247|890248|890249|890250|890251|890252|890253|890254|890255|890256|890257|890258|890259|890260|890261|890262|890263|890264|890265|890266|890267|890268|890269|890270|890271|890272|890273|890274|890275|890276|890277|891753|891754", "text": "Afibrinogenemia, congenital" }, { - "baseId": "31417", + "upstreamId": "31417", "text": "Fibrinogen Milano XII, digenic" }, { - "baseId": "31418", + "upstreamId": "31418", "text": "FIBRINOGEN HILLSBOROUGH" }, { - "baseId": "31420", + "upstreamId": "31420", "text": "FIBRINOGEN NEW YORK 1" }, { - "baseId": "31421", + "upstreamId": "31421", "text": "FIBRINOGEN CHRISTCHURCH 2" }, { - "baseId": "31422", + "upstreamId": "31422", "text": "FIBRINOGEN PONTOISE 2" }, { - "baseId": "31423", + "upstreamId": "31423", "text": "FIBRINOGEN BALTIMORE 2" }, { - "baseId": "31424", + "upstreamId": "31424", "text": "FIBRINOGEN ISE" }, { - "baseId": "31425", + "upstreamId": "31425", "text": "FIBRINOGEN NIJMEGEN" }, { - "baseId": "31426", + "upstreamId": "31426", "text": "FIBRINOGEN NAPLES" }, { - "baseId": "31427", + "upstreamId": "31427", "text": "FIBRINOGEN-BETA POLYMORPHISM" }, { - "baseId": "31430", + "upstreamId": "31430", "text": "FIBRINOGEN LONGMONT" }, { - "baseId": "31433", + "upstreamId": "31433", "text": "FIBRINOGEN, BETA-148 POLYMORPHISM" }, { - "baseId": "31436", + "upstreamId": "31436", "text": "FIBRINOGEN LILLE 1" }, { - "baseId": "31437", + "upstreamId": "31437", "text": "FIBRINOGEN ROUEN 1" }, { - "baseId": "31438|31443", + "upstreamId": "31438|31443", "text": "Dysfibrinogenemia" }, { - "baseId": "31439", + "upstreamId": "31439", "text": "FIBRINOGEN MUNICH 1" }, { - "baseId": "31440", + "upstreamId": "31440", "text": "FIBRINOGEN DETROIT 1" }, { - "baseId": "31441", + "upstreamId": "31441", "text": "FIBRINOGEN AARHUS 1" }, { - "baseId": "31442", + "upstreamId": "31442", "text": "FIBRINOGEN KYOTO 2" }, { - "baseId": "31444", + "upstreamId": "31444", "text": "FIBRINOGEN CARACAS 2" }, { - "baseId": "31445", + "upstreamId": "31445", "text": "FIBRINOGEN LIMA" }, { - "baseId": "31446", + "upstreamId": "31446", "text": "FIBRINOGEN MARBURG" }, { - "baseId": "31450", + "upstreamId": "31450", "text": "FIBRINOGEN DUSART" }, { - "baseId": "31451", + "upstreamId": "31451", "text": "FIBRINOGEN CANTERBURY" }, { - "baseId": "31454", + "upstreamId": "31454", "text": "Hypodysfibrinogenemia, congenital" }, { - "baseId": "31455", + "upstreamId": "31455", "text": "FIBRINOGEN NIEUWEGEIN" }, { - "baseId": "31457", + "upstreamId": "31457", "text": "FIBRINOGEN KEOKUK" }, { - "baseId": "31460", + "upstreamId": "31460", "text": "Marfan syndrome, severe classic" }, { - "baseId": "31461", + "upstreamId": "31461", "text": "Marfan syndrome, mild variable" }, { - "baseId": "31473|31490|31490|51537|51554|141005|165544|197665|258816|322740|322743|322762|322768|322772|322773|322810|332236|332237|332249|332259|332260|332264|332268|332271|332279|332280|339214|339221|339222|339224|339237|339240|339263|339264|339285|339295|339296|340691|340697|340712|340719|340723|340726|340746|551267|609340|672165", + "upstreamId": "31473|31490|31490|51537|51554|141005|165544|197665|258816|322740|322743|322762|322768|322772|322773|322810|332236|332237|332249|332259|332260|332264|332268|332271|332279|332280|339214|339221|339222|339224|339237|339240|339263|339264|339285|339295|339296|340691|340697|340712|340719|340723|340726|340746|551267|609340|672165", "text": "MASS syndrome" }, { - "baseId": "31476|31484|31490|31500|44705|44724|44729|44731|44735|44736|44748|44750|44767|44768|44772|44792|44796|44797|48266|51457|51467|51468|51489|51490|51500|51504|51505|51507|51525|51526|51551|51562|51578|51582|51583|51603|51609|132464|141002|141003|141004|141007|141008|141009|141012|141014|141016|141017|171173|171177|171181|175990|175991|197581|197615|197705|197717|197811|230585|242059|242072|242080|242082|255255|258836|258887|258909|265919|322730|322731|322733|322734|322736|322737|322739|322742|322749|322752|322760|322767|322769|322781|322782|322787|322788|322792|322793|322794|322796|322805|322811|332233|332238|332243|332247|332248|332251|332252|332254|332261|332263|332265|332267|332272|332278|332283|339217|339223|339232|339241|339243|339245|339250|339265|339266|339275|339276|339277|339280|339281|339286|339287|339297|339304|340694|340714|340715|340716|340718|340720|340728|340729|340732|340736|340738|340743|340744|340745|340748|374601|464856|464940|465086|465116|487788|505654|529291|538046|539060|573321|621494|643298|842447|873702|873703|873704|873705|873706|873707|873708|873709|873710|873711|873712|873713|873714|873715|873716|873717|873718|873719|873720|873721|873722|873723|873724|873725|873726|873727|873728|873729|873730|873731|873732|873733|873734|873735|873736|873737|873738|873739|873740|873741|873742|876533|876534|876535|876536|876537", + "upstreamId": "31476|31484|31490|31500|44705|44724|44729|44731|44735|44736|44748|44750|44767|44768|44772|44792|44796|44797|48266|51457|51467|51468|51489|51490|51500|51504|51505|51507|51525|51526|51551|51562|51578|51582|51583|51603|51609|132464|141002|141003|141004|141007|141008|141009|141012|141014|141016|141017|171173|171177|171181|175990|175991|197581|197615|197705|197717|197811|230585|242059|242072|242080|242082|255255|258836|258887|258909|265919|322730|322731|322733|322734|322736|322737|322739|322742|322749|322752|322760|322767|322769|322781|322782|322787|322788|322792|322793|322794|322796|322805|322811|332233|332238|332243|332247|332248|332251|332252|332254|332261|332263|332265|332267|332272|332278|332283|339217|339223|339232|339241|339243|339245|339250|339265|339266|339275|339276|339277|339280|339281|339286|339287|339297|339304|340694|340714|340715|340716|340718|340720|340728|340729|340732|340736|340738|340743|340744|340745|340748|374601|464856|464940|465086|465116|487788|505654|529291|538046|539060|573321|621494|643298|842447|873702|873703|873704|873705|873706|873707|873708|873709|873710|873711|873712|873713|873714|873715|873716|873717|873718|873719|873720|873721|873722|873723|873724|873725|873726|873727|873728|873729|873730|873731|873732|873733|873734|873735|873736|873737|873738|873739|873740|873741|873742|876533|876534|876535|876536|876537", "text": "Ectopia lentis, isolated, autosomal dominant" }, { - "baseId": "31476|32289|38552|44582|44594|44705|44724|44767|44768|44772|45279|45281|45284|45520|47468|51468|51508|55721|99654|99656|99662|99670|134506|134509|134511|134512|138649|138650|138658|138660|138671|138674|138676|138681|138690|138698|140557|140588|140590|140595|140601|140612|140640|140645|140646|140649|140653|140660|140664|140666|140668|141017|141018|141019|141021|141022|141024|141028|141030|141036|141041|141042|141044|141057|141058|141061|141062|141063|142038|142047|142051|142052|142060|142065|142076|165529|165530|165548|165580|171073|171075|171083|171181|171185|171281|174368|174497|174500|174506|177627|177628|177632|177710|178594|178596|178706|178711|188023|190915|191359|191890|192900|193008|193272|193589|193768|194227|194230|194638|194657|195081|195150|195180|195521|196760|196761|196770|196815|197695|197832|197837|197847|197869|197879|197893|197910|197914|197926|207158|207161|207163|209426|209434|209493|209500|209517|209518|209541|209562|209628|209718|209741|209754|209778|209786|209793|209799|209809|209826|209962|209971|209978|209992|209995|210001|210006|210051|210070|210078|210088|210100|210264|210462|210463|210478|210483|210490|210493|210530|210531|210540|215539|221811|228990|229466|229471|237388|239091|240519|240544|240554|240555|240563|240564|240578|240818|242203|243770|247081|247111|249283|249302|250440|250459|250865|251662|254528|254556|258257|258260|258274|258401|258567|258573|258578|258584|258594|259150|268275|268446|269195|269223|271988|273965|275701|275709|275721|288371|288372|292143|303634|307066|307071|307100|307211|311998|317169|317277|325004|325018|329145|331136|332776|333993|361858|364283|364310|364321|366013|366221|366257|366717|367154|368142|369128|369301|370197|370258|370271|370735|371102|371111|372534|372808|373447|373591|375313|377081|378450|379193|393266|393441|396673|396794|396810|397018|397316|397325|397329|397392|401009|401033|406105|407274|409453|415046|425770|425839|430726|433866|433867|437853|444183|445497|450099|450316|450429|451787|451801|455041|457591|457725|459312|459372|459786|459836|459868|465968|486698|486699|493909|497937|501643|501953|502344|502460|502469|502484|503639|503845|503882|505389|506513|510052|510101|510913|518850|519034|521044|524413|524747|525666|529291|535107|537668|537669|537670|537671|537672|537673|537674|537675|537676|537677|537678|537680|537685|537699|537704|537707|537708|537709|537738|537739|537740|537741|537742|537743|537744|537745|537746|537747|537748|537749|537762|537763|537764|537765|537766|537767|537769|537772|537773|537774|537804|537805|537806|537807|537808|537809|537810|537811|537812|537813|537814|537815|537816|537818|537819|537821|537822|537823|537824|537825|537826|537827|537828|537844|537845|537847|537848|537849|537850|537851|537852|537853|537855|537856|537857|537858|537859|537860|537861|537862|537863|537870|537871|537872|537880|537882|537885|537888|537889|537891|537895|537896|537897|537898|538018|538036|538072|538074|538082|538083|538086|538088|538089|538090|538091|538092|538093|538094|538240|538241|538242|538244|538245|538246|538247|538248|538291|538292|538293|538294|538295|538296|538297|538298|538299|552410|552411|552412|552413|552414|552415|552416|552417|552418|552419|552420|552421|552422|552423|552424|552425|552426|552427|552428|552429|552430|552431|552432|552433|552434|552435|552436|552437|552438|552439|552440|552441|552442|552443|552444|552445|552446|552447|552448|552449|552450|552451|552452|552454|552455|552456|552457|552458|552459|552460|552462|552463|552464|552465|552466|552467|552468|552469|552470|552471|552472|552473|552474", + "upstreamId": "31476|32289|38552|44582|44594|44705|44724|44767|44768|44772|45279|45281|45284|45520|47468|51468|51508|55721|99654|99656|99662|99670|134506|134509|134511|134512|138649|138650|138658|138660|138671|138674|138676|138681|138690|138698|140557|140588|140590|140595|140601|140612|140640|140645|140646|140649|140653|140660|140664|140666|140668|141017|141018|141019|141021|141022|141024|141028|141030|141036|141041|141042|141044|141057|141058|141061|141062|141063|142038|142047|142051|142052|142060|142065|142076|165529|165530|165548|165580|171073|171075|171083|171181|171185|171281|174368|174497|174500|174506|177627|177628|177632|177710|178594|178596|178706|178711|188023|190915|191359|191890|192900|193008|193272|193589|193768|194227|194230|194638|194657|195081|195150|195180|195521|196760|196761|196770|196815|197695|197832|197837|197847|197869|197879|197893|197910|197914|197926|207158|207161|207163|209426|209434|209493|209500|209517|209518|209541|209562|209628|209718|209741|209754|209778|209786|209793|209799|209809|209826|209962|209971|209978|209992|209995|210001|210006|210051|210070|210078|210088|210100|210264|210462|210463|210478|210483|210490|210493|210530|210531|210540|215539|221811|228990|229466|229471|237388|239091|240519|240544|240554|240555|240563|240564|240578|240818|242203|243770|247081|247111|249283|249302|250440|250459|250865|251662|254528|254556|258257|258260|258274|258401|258567|258573|258578|258584|258594|259150|268275|268446|269195|269223|271988|273965|275701|275709|275721|288371|288372|292143|303634|307066|307071|307100|307211|311998|317169|317277|325004|325018|329145|331136|332776|333993|361858|364283|364310|364321|366013|366221|366257|366717|367154|368142|369128|369301|370197|370258|370271|370735|371102|371111|372534|372808|373447|373591|375313|377081|378450|379193|393266|393441|396673|396794|396810|397018|397316|397325|397329|397392|401009|401033|406105|407274|409453|415046|425770|425839|430726|433866|433867|437853|444183|445497|450099|450316|450429|451787|451801|455041|457591|457725|459312|459372|459786|459836|459868|465968|486698|486699|493909|497937|501643|501953|502344|502460|502469|502484|503639|503845|503882|505389|506513|510052|510101|510913|518850|519034|521044|524413|524747|525666|529291|535107|537668|537669|537670|537671|537672|537673|537674|537675|537676|537677|537678|537680|537685|537699|537704|537707|537708|537709|537738|537739|537740|537741|537742|537743|537744|537745|537746|537747|537748|537749|537762|537763|537764|537765|537766|537767|537769|537772|537773|537774|537804|537805|537806|537807|537808|537809|537810|537811|537812|537813|537814|537815|537816|537818|537819|537821|537822|537823|537824|537825|537826|537827|537828|537844|537845|537847|537848|537849|537850|537851|537852|537853|537855|537856|537857|537858|537859|537860|537861|537862|537863|537870|537871|537872|537880|537882|537885|537888|537889|537891|537895|537896|537897|537898|538018|538036|538072|538074|538082|538083|538086|538088|538089|538090|538091|538092|538093|538094|538240|538241|538242|538244|538245|538246|538247|538248|538291|538292|538293|538294|538295|538296|538297|538298|538299|552410|552411|552412|552413|552414|552415|552416|552417|552418|552419|552420|552421|552422|552423|552424|552425|552426|552427|552428|552429|552430|552431|552432|552433|552434|552435|552436|552437|552438|552439|552440|552441|552442|552443|552444|552445|552446|552447|552448|552449|552450|552451|552452|552454|552455|552456|552457|552458|552459|552460|552462|552463|552464|552465|552466|552467|552468|552469|552470|552471|552472|552473|552474", "text": "Connective tissue disease" }, { - "baseId": "31477|31480|31481|31485|31486|31496|31501|31504", + "upstreamId": "31477|31480|31481|31485|31486|31496|31501|31504", "text": "Marfan syndrome, neonatal" }, { - "baseId": "31479|31492|32289", + "upstreamId": "31479|31492|32289", "text": "Marfan syndrome, atypical" }, { - "baseId": "31479|361136", + "upstreamId": "31479|361136", "text": "Arachnodactyly" }, { - "baseId": "31479|360977", + "upstreamId": "31479|360977", "text": "Lens subluxation" }, { - "baseId": "31479|514051", + "upstreamId": "31479|514051", "text": "High palate" }, { - "baseId": "31482", + "upstreamId": "31482", "text": "Marfan syndrome, mild" }, { - "baseId": "31484|31490|38651|38653|38655|38656|38657|44705|44724|44729|44731|44735|44736|44748|44750|44767|44768|44772|44792|44796|44797|51457|51467|51468|51489|51490|51500|51504|51505|51507|51525|51526|51537|51551|51554|51562|51578|51582|51583|51603|51609|141002|141003|141004|141005|141007|141008|141009|141012|141014|141016|141017|165544|171173|171177|171181|175984|175990|175991|197581|197615|197624|197665|197705|197717|197753|197811|230585|242059|242072|242080|242082|255255|258816|258836|258887|258909|265919|322730|322731|322733|322734|322736|322737|322739|322740|322742|322743|322749|322752|322760|322762|322767|322768|322769|322772|322773|322781|322782|322787|322788|322792|322793|322794|322796|322805|322810|322811|332233|332236|332237|332238|332243|332247|332248|332249|332251|332252|332254|332259|332260|332261|332263|332264|332265|332267|332268|332271|332272|332278|332279|332280|332283|339214|339217|339221|339222|339223|339224|339232|339237|339240|339241|339243|339245|339250|339263|339264|339265|339266|339275|339276|339277|339280|339281|339285|339286|339287|339295|339296|339297|339304|340691|340694|340697|340712|340714|340715|340716|340718|340719|340720|340723|340726|340728|340729|340732|340736|340738|340743|340744|340745|340746|340748|374601|464856|464940|465086|465116|487788|505654|529291|538046|539060|573321|621494|643298|842447|873702|873703|873704|873705|873706|873707|873708|873709|873710|873711|873712|873713|873714|873715|873716|873717|873718|873719|873720|873721|873722|873723|873724|873725|873726|873727|873728|873729|873730|873731|873732|873733|873734|873735|873736|873737|873738|873739|873740|873741|873742|876533|876534|876535|876536|876537", + "upstreamId": "31484|31490|38651|38653|38655|38656|38657|44705|44724|44729|44731|44735|44736|44748|44750|44767|44768|44772|44792|44796|44797|51457|51467|51468|51489|51490|51500|51504|51505|51507|51525|51526|51537|51551|51554|51562|51578|51582|51583|51603|51609|141002|141003|141004|141005|141007|141008|141009|141012|141014|141016|141017|165544|171173|171177|171181|175984|175990|175991|197581|197615|197624|197665|197705|197717|197753|197811|230585|242059|242072|242080|242082|255255|258816|258836|258887|258909|265919|322730|322731|322733|322734|322736|322737|322739|322740|322742|322743|322749|322752|322760|322762|322767|322768|322769|322772|322773|322781|322782|322787|322788|322792|322793|322794|322796|322805|322810|322811|332233|332236|332237|332238|332243|332247|332248|332249|332251|332252|332254|332259|332260|332261|332263|332264|332265|332267|332268|332271|332272|332278|332279|332280|332283|339214|339217|339221|339222|339223|339224|339232|339237|339240|339241|339243|339245|339250|339263|339264|339265|339266|339275|339276|339277|339280|339281|339285|339286|339287|339295|339296|339297|339304|340691|340694|340697|340712|340714|340715|340716|340718|340719|340720|340723|340726|340728|340729|340732|340736|340738|340743|340744|340745|340746|340748|374601|464856|464940|465086|465116|487788|505654|529291|538046|539060|573321|621494|643298|842447|873702|873703|873704|873705|873706|873707|873708|873709|873710|873711|873712|873713|873714|873715|873716|873717|873718|873719|873720|873721|873722|873723|873724|873725|873726|873727|873728|873729|873730|873731|873732|873733|873734|873735|873736|873737|873738|873739|873740|873741|873742|876533|876534|876535|876536|876537", "text": "Acromicric dysplasia" }, { - "baseId": "31484|31490|31490|44705|44724|44729|44731|44735|44736|44748|44750|44767|44772|44792|44796|44797|51457|51467|51468|51489|51490|51500|51504|51505|51507|51525|51526|51537|51551|51554|51562|51578|51582|51583|51603|51609|92363|132462|132464|132467|136585|141002|141003|141004|141005|141007|141008|141009|141012|141014|141016|141017|165544|171173|171177|171181|175984|175985|175990|175991|197581|197615|197665|197705|197717|197753|197811|230585|236903|242059|242072|242080|242082|255056|255057|255058|255059|255060|255255|258816|258836|258887|258909|265919|268435|321304|321305|321309|321311|321312|321313|321317|321319|321321|321323|321324|321327|321329|321332|321333|321334|321339|321340|321344|321346|322730|322731|322733|322734|322736|322737|322739|322740|322742|322743|322749|322752|322760|322762|322767|322768|322769|322772|322773|322781|322782|322787|322788|322792|322793|322794|322796|322805|322810|322811|330514|330515|330516|330526|330527|330533|330536|330537|330539|330540|330541|330543|330544|330546|330558|330570|330573|330576|330579|330580|332233|332236|332237|332238|332243|332247|332248|332249|332251|332252|332254|332259|332260|332261|332263|332264|332265|332267|332268|332271|332272|332278|332279|332280|332283|334742|334743|334749|334750|334752|334753|334754|334756|337092|337108|337117|337127|337136|337139|337140|337149|337151|337157|337160|337165|337174|337176|337179|337190|337191|337197|337198|337201|337204|337205|337207|337212|339033|339035|339038|339039|339052|339056|339058|339059|339068|339072|339074|339075|339083|339089|339095|339099|339101|339108|339118|339121|339122|339133|339214|339217|339221|339222|339223|339224|339232|339237|339240|339241|339243|339245|339250|339263|339264|339265|339266|339275|339276|339277|339280|339281|339285|339286|339287|339295|339296|339297|339304|340691|340694|340697|340712|340714|340715|340716|340718|340719|340720|340723|340726|340728|340729|340732|340736|340738|340743|340744|340745|340746|340748|344555|344557|344568|344569|344573|344575|344583|344584|344587|344588|344591|344592|344594|344599|344600|344601|344604|344609|344611|349588|349590|349593|349594|349596|349601|349602|349605|349606|349609|349610|350596|350598|350600|350601|350604|350605|350607|350610|350613|350617|350618|350621|374601|464856|464940|465086|465116|480526|487788|505654|529291|538046|573321|586928|621494|643298|702982|702983|702985|702986|702988|714235|714236|714237|714238|716803|725801|725802|725805|725807|728530|728531|728533|728534|739312|739313|739319|739320|739328|742244|742247|744825|745291|754151|757366|757369|757371|757375|760114|780113|780206|784787|816325|842447|848194|872545|872546|872547|872548|872549|872550|872551|872552|872553|872554|872555|872556|872557|872558|872559|872560|872561|872562|872563|872564|872565|872566|872567|872568|872569|872570|872571|872572|872573|872574|872575|872576|872577|872578|872579|872580|872581|872582|872583|872584|872585|872586|872587|872588|872589|872590|872591|872592|872593|872594|872595|872596|872597|872598|872599|872601|872602|872603|872604|872605|872606|872607|872608|872609|872610|872611|872612|872613|872614|872615|872616|872617|872618|872619|872620|872621|872622|873702|873703|873704|873705|873706|873707|873708|873709|873710|873711|873712|873713|873714|873715|873716|873717|873718|873719|873720|873721|873722|873723|873724|873725|873726|873727|873728|873729|873730|873731|873732|873733|873734|873735|873736|873737|873738|873739|873740|873741|873742|876444|876445|876446|876447|876448|876533|876534|876535|876536|876537|882736|882737|882738|882739|882740|882741|882742|882743|882744|882745|882746|882747|882748|882749|882750|882751|882752|882753|882754|882755|882756|882757|882758|882759|882760|882761|882762|882763|882764|882765|882766|882767|882768|882769|882770|882771|882772|882773|882774|882775|882976|882977|882978|882979|882980|882981|882982|882983|882984|882985", + "upstreamId": "31484|31490|31490|44705|44724|44729|44731|44735|44736|44748|44750|44767|44772|44792|44796|44797|51457|51467|51468|51489|51490|51500|51504|51505|51507|51525|51526|51537|51551|51554|51562|51578|51582|51583|51603|51609|92363|132462|132464|132467|136585|141002|141003|141004|141005|141007|141008|141009|141012|141014|141016|141017|165544|171173|171177|171181|175984|175985|175990|175991|197581|197615|197665|197705|197717|197753|197811|230585|236903|242059|242072|242080|242082|255056|255057|255058|255059|255060|255255|258816|258836|258887|258909|265919|268435|321304|321305|321309|321311|321312|321313|321317|321319|321321|321323|321324|321327|321329|321332|321333|321334|321339|321340|321344|321346|322730|322731|322733|322734|322736|322737|322739|322740|322742|322743|322749|322752|322760|322762|322767|322768|322769|322772|322773|322781|322782|322787|322788|322792|322793|322794|322796|322805|322810|322811|330514|330515|330516|330526|330527|330533|330536|330537|330539|330540|330541|330543|330544|330546|330558|330570|330573|330576|330579|330580|332233|332236|332237|332238|332243|332247|332248|332249|332251|332252|332254|332259|332260|332261|332263|332264|332265|332267|332268|332271|332272|332278|332279|332280|332283|334742|334743|334749|334750|334752|334753|334754|334756|337092|337108|337117|337127|337136|337139|337140|337149|337151|337157|337160|337165|337174|337176|337179|337190|337191|337197|337198|337201|337204|337205|337207|337212|339033|339035|339038|339039|339052|339056|339058|339059|339068|339072|339074|339075|339083|339089|339095|339099|339101|339108|339118|339121|339122|339133|339214|339217|339221|339222|339223|339224|339232|339237|339240|339241|339243|339245|339250|339263|339264|339265|339266|339275|339276|339277|339280|339281|339285|339286|339287|339295|339296|339297|339304|340691|340694|340697|340712|340714|340715|340716|340718|340719|340720|340723|340726|340728|340729|340732|340736|340738|340743|340744|340745|340746|340748|344555|344557|344568|344569|344573|344575|344583|344584|344587|344588|344591|344592|344594|344599|344600|344601|344604|344609|344611|349588|349590|349593|349594|349596|349601|349602|349605|349606|349609|349610|350596|350598|350600|350601|350604|350605|350607|350610|350613|350617|350618|350621|374601|464856|464940|465086|465116|480526|487788|505654|529291|538046|573321|586928|621494|643298|702982|702983|702985|702986|702988|714235|714236|714237|714238|716803|725801|725802|725805|725807|728530|728531|728533|728534|739312|739313|739319|739320|739328|742244|742247|744825|745291|754151|757366|757369|757371|757375|760114|780113|780206|784787|816325|842447|848194|872545|872546|872547|872548|872549|872550|872551|872552|872553|872554|872555|872556|872557|872558|872559|872560|872561|872562|872563|872564|872565|872566|872567|872568|872569|872570|872571|872572|872573|872574|872575|872576|872577|872578|872579|872580|872581|872582|872583|872584|872585|872586|872587|872588|872589|872590|872591|872592|872593|872594|872595|872596|872597|872598|872599|872601|872602|872603|872604|872605|872606|872607|872608|872609|872610|872611|872612|872613|872614|872615|872616|872617|872618|872619|872620|872621|872622|873702|873703|873704|873705|873706|873707|873708|873709|873710|873711|873712|873713|873714|873715|873716|873717|873718|873719|873720|873721|873722|873723|873724|873725|873726|873727|873728|873729|873730|873731|873732|873733|873734|873735|873736|873737|873738|873739|873740|873741|873742|876444|876445|876446|876447|876448|876533|876534|876535|876536|876537|882736|882737|882738|882739|882740|882741|882742|882743|882744|882745|882746|882747|882748|882749|882750|882751|882752|882753|882754|882755|882756|882757|882758|882759|882760|882761|882762|882763|882764|882765|882766|882767|882768|882769|882770|882771|882772|882773|882774|882775|882976|882977|882978|882979|882980|882981|882982|882983|882984|882985", "text": "Weill-Marchesani syndrome" }, { - "baseId": "31484|31490|44705|44724|44729|44735|44736|44748|44750|44767|44768|44772|44792|44796|44797|51457|51467|51468|51489|51490|51500|51504|51505|51507|51525|51526|51537|51551|51554|51562|51578|51582|51583|51603|51609|141002|141003|141004|141005|141007|141008|141009|141012|141014|141016|141017|165544|171173|171181|175984|175990|175991|197581|197615|197665|197705|197717|197753|197811|230585|242059|242072|242080|242082|258816|258836|258887|258909|265919|307335|307356|311629|317555|322730|322731|322733|322734|322736|322737|322739|322740|322742|322743|322749|322752|322760|322762|322767|322768|322769|322772|322773|322781|322782|322787|322788|322792|322793|322794|322796|322805|322810|322811|332233|332236|332237|332238|332243|332247|332248|332249|332251|332252|332254|332259|332260|332261|332263|332264|332265|332267|332268|332271|332272|332278|332279|332280|332283|339214|339217|339221|339222|339223|339224|339232|339237|339240|339241|339243|339245|339250|339263|339264|339265|339266|339275|339276|339277|339280|339281|339285|339286|339287|339295|339296|339297|339304|340691|340694|340697|340712|340714|340715|340716|340718|340719|340720|340723|340726|340728|340729|340732|340736|340738|340743|340744|340745|340746|340748|374601|422029|464856|464940|465116|487788|505654|529291|873703|873715|873724|873739|873740|876534|876535", + "upstreamId": "31484|31490|44705|44724|44729|44735|44736|44748|44750|44767|44768|44772|44792|44796|44797|51457|51467|51468|51489|51490|51500|51504|51505|51507|51525|51526|51537|51551|51554|51562|51578|51582|51583|51603|51609|141002|141003|141004|141005|141007|141008|141009|141012|141014|141016|141017|165544|171173|171181|175984|175990|175991|197581|197615|197665|197705|197717|197753|197811|230585|242059|242072|242080|242082|258816|258836|258887|258909|265919|307335|307356|311629|317555|322730|322731|322733|322734|322736|322737|322739|322740|322742|322743|322749|322752|322760|322762|322767|322768|322769|322772|322773|322781|322782|322787|322788|322792|322793|322794|322796|322805|322810|322811|332233|332236|332237|332238|332243|332247|332248|332249|332251|332252|332254|332259|332260|332261|332263|332264|332265|332267|332268|332271|332272|332278|332279|332280|332283|339214|339217|339221|339222|339223|339224|339232|339237|339240|339241|339243|339245|339250|339263|339264|339265|339266|339275|339276|339277|339280|339281|339285|339286|339287|339295|339296|339297|339304|340691|340694|340697|340712|340714|340715|340716|340718|340719|340720|340723|340726|340728|340729|340732|340736|340738|340743|340744|340745|340746|340748|374601|422029|464856|464940|465116|487788|505654|529291|873703|873715|873724|873739|873740|876534|876535", "text": "Geleophysic dysplasia" }, { - "baseId": "31484|31490|31508|31509|31510|31511|44705|44724|44729|44731|44735|44736|44748|44750|44767|44772|44792|44796|44797|51457|51467|51468|51489|51490|51500|51504|51505|51507|51525|51526|51537|51541|51551|51554|51562|51578|51582|51583|51603|51609|141002|141003|141004|141005|141007|141008|141009|141012|141014|141016|141017|165544|171173|171177|171181|175984|175990|175991|197581|197615|197665|197705|197717|197753|197811|230585|242059|242072|242080|242082|255255|258816|258836|258887|258909|265919|322730|322731|322733|322734|322736|322737|322739|322740|322742|322743|322749|322752|322760|322762|322767|322768|322769|322772|322773|322781|322782|322787|322788|322792|322793|322794|322796|322805|322810|322811|332233|332236|332237|332238|332243|332247|332248|332249|332251|332252|332254|332259|332260|332261|332263|332264|332265|332267|332268|332271|332272|332278|332279|332280|332283|339214|339217|339221|339222|339223|339224|339232|339237|339240|339241|339243|339245|339250|339263|339264|339265|339266|339275|339276|339277|339280|339281|339285|339286|339287|339295|339296|339297|339304|340691|340694|340697|340712|340714|340715|340716|340718|340719|340720|340723|340726|340728|340729|340732|340736|340738|340743|340744|340745|340746|340748|374601|464856|464940|465086|465116|487788|505654|529291|538046|539060|573321|621494|643298|842447|873702|873703|873704|873705|873706|873707|873708|873709|873710|873711|873712|873713|873714|873715|873716|873717|873718|873719|873720|873721|873722|873723|873724|873725|873726|873727|873728|873729|873730|873731|873732|873733|873734|873735|873736|873737|873738|873739|873740|873741|873742|876533|876534|876535|876536|876537", + "upstreamId": "31484|31490|31508|31509|31510|31511|44705|44724|44729|44731|44735|44736|44748|44750|44767|44772|44792|44796|44797|51457|51467|51468|51489|51490|51500|51504|51505|51507|51525|51526|51537|51541|51551|51554|51562|51578|51582|51583|51603|51609|141002|141003|141004|141005|141007|141008|141009|141012|141014|141016|141017|165544|171173|171177|171181|175984|175990|175991|197581|197615|197665|197705|197717|197753|197811|230585|242059|242072|242080|242082|255255|258816|258836|258887|258909|265919|322730|322731|322733|322734|322736|322737|322739|322740|322742|322743|322749|322752|322760|322762|322767|322768|322769|322772|322773|322781|322782|322787|322788|322792|322793|322794|322796|322805|322810|322811|332233|332236|332237|332238|332243|332247|332248|332249|332251|332252|332254|332259|332260|332261|332263|332264|332265|332267|332268|332271|332272|332278|332279|332280|332283|339214|339217|339221|339222|339223|339224|339232|339237|339240|339241|339243|339245|339250|339263|339264|339265|339266|339275|339276|339277|339280|339281|339285|339286|339287|339295|339296|339297|339304|340691|340694|340697|340712|340714|340715|340716|340718|340719|340720|340723|340726|340728|340729|340732|340736|340738|340743|340744|340745|340746|340748|374601|464856|464940|465086|465116|487788|505654|529291|538046|539060|573321|621494|643298|842447|873702|873703|873704|873705|873706|873707|873708|873709|873710|873711|873712|873713|873714|873715|873716|873717|873718|873719|873720|873721|873722|873723|873724|873725|873726|873727|873728|873729|873730|873731|873732|873733|873734|873735|873736|873737|873738|873739|873740|873741|873742|876533|876534|876535|876536|876537", "text": "Stiff skin syndrome" }, { - "baseId": "31488|31491|31499|44703|44713|44740|44752|44771|44786|48266|51453|51470|51556|51564|51577|51590|51591|51599|175979|175982|176122|178699|197590|197619|197677|197685|197690|197710|197731|197742|197755|197765|197799|197808|197817|258830|258859|258876|260073|360269|400742|409254|409288|433143|485759|487563|487564|487570|487589|487590|487591|487610|487621|487628|487632|487659|487668|487683|487690|487701|487747|487772|487775|487781|487784|487786|487816|487832|487838|487853|487854|487865|487876|487880|487897|510611|529534|567146|568887|568912|573381|609927|621485|621486|621490|621492|621496|621505|621507|621509|621513|682108|842473|904060|917199|917202|917207|917536|920499|921481|921482|965855|969182|980189", + "upstreamId": "31488|31491|31499|44703|44713|44740|44752|44771|44786|48266|51453|51470|51556|51564|51577|51590|51591|51599|175979|175982|176122|178699|197590|197619|197677|197685|197690|197710|197731|197742|197755|197765|197799|197808|197817|258830|258859|258876|260073|360269|400742|409254|409288|433143|485759|487563|487564|487570|487589|487590|487591|487610|487621|487628|487632|487659|487668|487683|487690|487701|487747|487772|487775|487781|487784|487786|487816|487832|487838|487853|487854|487865|487876|487880|487897|510611|529534|567146|568887|568912|573381|609927|621485|621486|621490|621492|621496|621505|621507|621509|621513|682108|842473|904060|917199|917202|917207|917536|920499|921481|921482|965855|969182|980189", "text": "Marfan Syndrome/Loeys-Dietz Syndrome/Familial Thoracic Aortic Aneurysms and Dissections" }, { - "baseId": "31490|178506|224192|224193|224245|224248|224373|224567", + "upstreamId": "31490|178506|224192|224193|224245|224248|224373|224567", "text": "Marfanoid habitus" }, { - "baseId": "31490|48154|51537|51554|141005|165544|175984|197665|258816|276361|276365|276376|276386|277082|322740|322743|322762|322768|322772|322773|322810|332236|332237|332249|332259|332260|332264|332268|332271|332279|332280|339214|339221|339222|339224|339237|339240|339263|339264|339285|339295|339296|340691|340697|340712|340719|340723|340726|340746|353061|360979", + "upstreamId": "31490|48154|51537|51554|141005|165544|175984|197665|258816|276361|276365|276376|276386|277082|322740|322743|322762|322768|322772|322773|322810|332236|332237|332249|332259|332260|332264|332268|332271|332279|332280|339214|339221|339222|339224|339237|339240|339263|339264|339285|339295|339296|340691|340697|340712|340719|340723|340726|340746|353061|360979", "text": "Ectopia lentis" }, { - "baseId": "31490|44740|51466|51525|171178|197619|209598|258283|258907|262311|262312|262313|360231|362492|362493|362741|362742|433137|488133|488138|511551|609191|609192|609193|609194|609197|609198|609199|609200|609231|609232|609233|609234|609235|609236", + "upstreamId": "31490|44740|51466|51525|171178|197619|209598|258283|258907|262311|262312|262313|360231|362492|362493|362741|362742|433137|488133|488138|511551|609191|609192|609193|609194|609197|609198|609199|609200|609231|609232|609233|609234|609235|609236", "text": "Familial thoracic aortic aneurysm" }, { - "baseId": "31498", + "upstreamId": "31498", "text": "Weill-Marchesani syndrome 2" }, { - "baseId": "31505|44782", + "upstreamId": "31505|44782", "text": "Marfan syndrome, autosomal recessive" }, { - "baseId": "31513|31513|31514|31515|31517|31518|31519|31519|31520|31520|31521|31523|31524|48182|102584|166212|166213|169583|334001|334013|334015|334019|334021|343936|343948|343949|343954|349228|349228|349229|349230|349233|349234|350169|350171|350172|350174|350175|350178|353504|353506|353510|353514|413528|533633|575002|648220|648221|653468|852344|882260|882261|882262|882263|882264|882265|882266|882267|882268|882912|882913|929014|938760|950841|950842", + "upstreamId": "31513|31513|31514|31515|31517|31518|31519|31519|31520|31520|31521|31523|31524|48182|102584|166212|166213|169583|334001|334013|334015|334019|334021|343936|343948|343949|343954|349228|349228|349229|349230|349233|349234|350169|350171|350172|350174|350175|350178|353504|353506|353510|353514|413528|533633|575002|648220|648221|653468|852344|882260|882261|882262|882263|882264|882265|882266|882267|882268|882912|882913|929014|938760|950841|950842", "text": "Hereditary hyperferritinemia with congenital cataracts" }, { - "baseId": "31513|31519|31520|31522|31525|31526|31527|31528|166212|166213|169583|334001|334013|334015|334019|334021|343936|343948|343949|343954|349228|349228|349229|349230|349233|349234|350169|350171|350172|350174|350175|350178|353504|353506|353510|353514|413528|533633|575002|648220|648221|653468|852344|882260|882261|882262|882263|882264|882265|882266|882267|882268|882912|882913|929014|938760|950841|950842", + "upstreamId": "31513|31519|31520|31522|31525|31526|31527|31528|166212|166213|169583|334001|334013|334015|334019|334021|343936|343948|343949|343954|349228|349228|349229|349230|349233|349234|350169|350171|350172|350174|350175|350178|353504|353506|353510|353514|413528|533633|575002|648220|648221|653468|852344|882260|882261|882262|882263|882264|882265|882266|882267|882268|882912|882913|929014|938760|950841|950842", "text": "Neuroferritinopathy" }, { - "baseId": "31529|314445|314447|321045|321046|321047|321053|321067|321070|327167|327195|327205|327211|328210|868180|868181|868182|868183|868184", + "upstreamId": "31529|314445|314447|321045|321046|321047|321053|321067|321070|327167|327195|327205|327211|328210|868180|868181|868182|868183|868184", "text": "Hemochromatosis type 5" }, { - "baseId": "31530", + "upstreamId": "31530", "text": "GLUTATHIONE S-TRANSFERASE PI POLYMORPHISM, TYPE A" }, { - "baseId": "31531", + "upstreamId": "31531", "text": "GLUTATHIONE S-TRANSFERASE PI POLYMORPHISM, TYPE B" }, { - "baseId": "31532", + "upstreamId": "31532", "text": "GLUTATHIONE S-TRANSFERASE PI POLYMORPHISM, TYPE C" }, { - "baseId": "31533", + "upstreamId": "31533", "text": "FATTY ACID-BINDING PROTEIN, INTESTINAL, POLYMORPHISM OF" }, { - "baseId": "31534|538943", + "upstreamId": "31534|538943", "text": "Autoimmune lymphoproliferative syndrome, type 1b" }, { - "baseId": "31536|31537|31538|31539|31540|31541|31542|31543|31544|31545|31546|31547|31548|31552|31553|31554|31555", + "upstreamId": "31536|31537|31538|31539|31540|31541|31542|31543|31544|31545|31546|31547|31548|31552|31553|31554|31555", "text": "Autoimmune lymphoproliferative syndrome, type 1a" }, { - "baseId": "31549|31550|31551", + "upstreamId": "31549|31550|31551", "text": "SQUAMOUS CELL CARCINOMA, BURN SCAR-RELATED, SOMATIC" }, { - "baseId": "31557|31558|31559|31560|31561|249586|249587|249588|278236|278241|278242|278244|278247|278248|278249|278254|278257|278258|278259|278265|278266|278272|278273|279281|279282|279283|279294|279297|279299|279326|279327|279445|706968|718479|718480|863151|863152|863153|863154|863155|863156|863157|863158|863159|863160|863161|863162|863163", + "upstreamId": "31557|31558|31559|31560|31561|249586|249587|249588|278236|278241|278242|278244|278247|278248|278249|278254|278257|278258|278259|278265|278266|278272|278273|279281|279282|279283|279294|279297|279299|279326|279327|279445|706968|718479|718480|863151|863152|863153|863154|863155|863156|863157|863158|863159|863160|863161|863162|863163", "text": "Factor XIII, b subunit, deficiency of" }, { - "baseId": "31562|31563|31564|31565|31566|31567|31568|31569|31570|31571|31572|31573|31574|31575|31576|31577|31578|31579|38649|38650|252445|252446|252447|252448|252450|300847|300849|300850|300857|300858|300862|300863|303782|303783|303784|303786|303789|303791|308355|308357|308358|308359|308361|308364|308376|308382|308383|308389|308400|308402|308403|308458|308462|308464|308465|308466|308467|308472|308473|552283|609016|615415|615416|615417|615418|710573|710574|722090|722092|896706|896707|896708|896709|896710|896711|896712|896713|896714|896715|896716|896717|896718|896719|896720|896721|896722|896723|896724|896725|896726|896727|896728|896729|900252|900253", + "upstreamId": "31562|31563|31564|31565|31566|31567|31568|31569|31570|31571|31572|31573|31574|31575|31576|31577|31578|31579|38649|38650|252445|252446|252447|252448|252450|300847|300849|300850|300857|300858|300862|300863|303782|303783|303784|303786|303789|303791|308355|308357|308358|308359|308361|308364|308376|308382|308383|308389|308400|308402|308403|308458|308462|308464|308465|308466|308467|308472|308473|552283|609016|615415|615416|615417|615418|710573|710574|722090|722092|896706|896707|896708|896709|896710|896711|896712|896713|896714|896715|896716|896717|896718|896719|896720|896721|896722|896723|896724|896725|896726|896727|896728|896729|900252|900253", "text": "Factor XIII subunit A deficiency" }, { - "baseId": "31571", + "upstreamId": "31571", "text": "Myocardial infarction, protection against" }, { - "baseId": "31571", + "upstreamId": "31571", "text": "Venous thrombosis, protection against" }, { - "baseId": "31581|31584|31585|31587|31589|31591|31592|31597|31598|31602|33941|33942|34152|34153|224677|260773|273573|278176|278180|278182|278184|278185|278188|278191|278192|278193|278197|278199|278200|278201|278203|278204|278205|278206|278209|278210|278211|278212|278215|278217|278220|278223|278224|279184|279185|279186|279187|279192|279193|279197|279198|279199|279203|279204|279205|279206|279207|279208|279209|279218|279222|279223|279358|279359|279360|279361|279364|279365|279369|279379|279380|279392|420987|432277|442682|513008|589722|590234|614201|614201|614202|623238|623239|623240|623241|800752|800959|818159|818160|818161|818162|818163|863112|863113|863114|863115|863116|863117|863118|863119|863120|863121|863122|863123|863124|863125|863126|863127|863128|865075|865076|865077|865078|965923", + "upstreamId": "31581|31584|31585|31587|31589|31591|31592|31597|31598|31602|33941|33942|34152|34153|224677|260773|273573|278176|278180|278182|278184|278185|278188|278191|278192|278193|278197|278199|278200|278201|278203|278204|278205|278206|278209|278210|278211|278212|278215|278217|278220|278223|278224|279184|279185|279186|279187|279192|279193|279197|279198|279199|279203|279204|279205|279206|279207|279208|279209|279218|279222|279223|279358|279359|279360|279361|279364|279365|279369|279379|279380|279392|420987|432277|442682|513008|589722|590234|614201|614201|614202|623238|623239|623240|623241|800752|800959|818159|818160|818161|818162|818163|863112|863113|863114|863115|863116|863117|863118|863119|863120|863121|863122|863123|863124|863125|863126|863127|863128|865075|865076|865077|865078|965923", "text": "Atypical hemolytic-uremic syndrome 1" }, { - "baseId": "31582|31583|31586|31590|31593|31594|31597|581999|614201|614202", + "upstreamId": "31582|31583|31586|31590|31593|31594|31597|581999|614201|614202", "text": "Factor H deficiency" }, { - "baseId": "31588|31589|31595|31596|31597|167424|273573|278176|278180|278182|278184|278185|278188|278191|278192|278193|278197|278199|278200|278201|278203|278204|278205|278206|278209|278210|278211|278212|278215|278217|278220|278223|278224|279184|279185|279186|279187|279192|279193|279197|279198|279199|279203|279204|279205|279206|279207|279208|279209|279218|279222|279223|279358|279359|279360|279361|279364|279365|279369|279379|279380|279392|442682|589722|614201|614201|614202|863112|863113|863114|863115|863116|863117|863118|863119|863120|863121|863122|863123|863124|863125|863126|863127|863128|865075|865076|865077|865078", + "upstreamId": "31588|31589|31595|31596|31597|167424|273573|278176|278180|278182|278184|278185|278188|278191|278192|278193|278197|278199|278200|278201|278203|278204|278205|278206|278209|278210|278211|278212|278215|278217|278220|278223|278224|279184|279185|279186|279187|279192|279193|279197|279198|279199|279203|279204|279205|279206|279207|279208|279209|279218|279222|279223|279358|279359|279360|279361|279364|279365|279369|279379|279380|279392|442682|589722|614201|614201|614202|863112|863113|863114|863115|863116|863117|863118|863119|863120|863121|863122|863123|863124|863125|863126|863127|863128|865075|865076|865077|865078", "text": "Age-related macular degeneration 4" }, { - "baseId": "31588|31589|31597|31599|31600|31601|273573|278176|278180|278181|278182|278184|278185|278188|278191|278192|278193|278197|278199|278200|278201|278203|278204|278205|278206|278209|278210|278211|278212|278215|278217|278220|278223|278224|279184|279185|279186|279187|279192|279193|279197|279198|279199|279203|279204|279205|279206|279207|279208|279209|279218|279222|279223|279358|279359|279360|279361|279364|279365|279369|279379|279380|279392|442682|589722|614201|614201|614202|863112|863113|863114|863115|863116|863117|863118|863119|863120|863121|863122|863123|863124|863125|863126|863127|863128|865075|865076|865077|865078|920131", + "upstreamId": "31588|31589|31597|31599|31600|31601|273573|278176|278180|278181|278182|278184|278185|278188|278191|278192|278193|278197|278199|278200|278201|278203|278204|278205|278206|278209|278210|278211|278212|278215|278217|278220|278223|278224|279184|279185|279186|279187|279192|279193|279197|279198|279199|279203|279204|279205|279206|279207|279208|279209|279218|279222|279223|279358|279359|279360|279361|279364|279365|279369|279379|279380|279392|442682|589722|614201|614201|614202|863112|863113|863114|863115|863116|863117|863118|863119|863120|863121|863122|863123|863124|863125|863126|863127|863128|865075|865076|865077|865078|920131", "text": "Basal laminar drusen" }, { - "baseId": "31589|31597|45835|79735|263997|273573|278176|278180|278182|278184|278185|278188|278191|278192|278193|278197|278199|278200|278201|278203|278204|278205|278206|278209|278210|278211|278212|278215|278217|278220|278223|278224|278226|278227|278228|278229|278231|278235|278237|278239|278243|278246|278250|278251|278252|278253|279184|279185|279186|279187|279192|279193|279197|279198|279199|279203|279204|279205|279206|279207|279208|279209|279218|279222|279223|279224|279227|279228|279245|279255|279259|279260|279261|279267|279358|279359|279360|279361|279364|279365|279369|279379|279380|279392|279395|279396|279397|279402|279406|279428|279429|279433|279440|364055|389348|442682|513500|589722|590764|614201|619976|619977|619978|696353|706967|718476|718477|718478|774429|863112|863113|863114|863115|863116|863117|863118|863119|863120|863121|863122|863123|863124|863125|863126|863127|863128|863129|863130|863131|863132|863133|863134|863135|863136|863137|863138|863139|863140|863141|863142|863143|863144|863145|863146|863147|863148|863149|863150|865075|865076|865077|865078|865079|865080", + "upstreamId": "31589|31597|45835|79735|263997|273573|278176|278180|278182|278184|278185|278188|278191|278192|278193|278197|278199|278200|278201|278203|278204|278205|278206|278209|278210|278211|278212|278215|278217|278220|278223|278224|278226|278227|278228|278229|278231|278235|278237|278239|278243|278246|278250|278251|278252|278253|279184|279185|279186|279187|279192|279193|279197|279198|279199|279203|279204|279205|279206|279207|279208|279209|279218|279222|279223|279224|279227|279228|279245|279255|279259|279260|279261|279267|279358|279359|279360|279361|279364|279365|279369|279379|279380|279392|279395|279396|279397|279402|279406|279428|279429|279433|279440|364055|389348|442682|513500|589722|590764|614201|619976|619977|619978|696353|706967|718476|718477|718478|774429|863112|863113|863114|863115|863116|863117|863118|863119|863120|863121|863122|863123|863124|863125|863126|863127|863128|863129|863130|863131|863132|863133|863134|863135|863136|863137|863138|863139|863140|863141|863142|863143|863144|863145|863146|863147|863148|863149|863150|865075|865076|865077|865078|865079|865080", "text": "CFH-Related Dense Deposit Disease / Membranoproliferative Glomerulonephritis Type II" }, { - "baseId": "31603|614471", + "upstreamId": "31603|614471", "text": "Complement factor d deficiency" }, { - "baseId": "31605|31606|31612|31613|31614|31615|31616|31617|49931|49932|134455|134456|134457|134458|137898|137899|137899|137901|137904|137905|137908|137910|137911|137913|137914|137915|137917|137918|137919|137920|137921|137922|137924|137931|137932|137934|205172|254790|254791|254792|254793|318811|318814|318816|318819|318821|318824|318825|318830|318832|318833|318834|318840|318841|318847|327190|327193|327194|327196|327198|327208|327213|327219|327225|327226|327226|327234|333317|333319|333321|333325|333331|333332|333334|333335|333346|333347|333352|335057|335058|335071|335081|335082|335088|335091|335092|512935|512936|512937|620464|725347|738923|738925|753682|753685|791291|791292|791293|870642|870643|870644|870645|870646|870647|870648|870649|870650|870651|870652|870653|870654|870655|870656|870657|870658|870659|870660|870661|870662|870663|870664|870665|870666|870667|870668|872299|872300|872301", + "upstreamId": "31605|31606|31612|31613|31614|31615|31616|31617|49931|49932|134455|134456|134457|134458|137898|137899|137899|137901|137904|137905|137908|137910|137911|137913|137914|137915|137917|137918|137919|137920|137921|137922|137924|137931|137932|137934|205172|254790|254791|254792|254793|318811|318814|318816|318819|318821|318824|318825|318830|318832|318833|318834|318840|318841|318847|327190|327193|327194|327196|327198|327208|327213|327219|327225|327226|327226|327234|333317|333319|333321|333325|333331|333332|333334|333335|333346|333347|333352|335057|335058|335071|335081|335082|335088|335091|335092|512935|512936|512937|620464|725347|738923|738925|753682|753685|791291|791292|791293|870642|870643|870644|870645|870646|870647|870648|870649|870650|870651|870652|870653|870654|870655|870656|870657|870658|870659|870660|870661|870662|870663|870664|870665|870666|870667|870668|872299|872300|872301", "text": "Xeroderma pigmentosum, group G" }, { - "baseId": "31607|137899|206564|327226|788874|966040", + "upstreamId": "31607|137899|206564|327226|788874|966040", "text": "Cerebrooculofacioskeletal syndrome 3" }, { - "baseId": "31608|31609|31610|31611", + "upstreamId": "31608|31609|31610|31611", "text": "Xeroderma pigmentosum group g/Cockayne syndrome" }, { - "baseId": "31618|31619|31619|31619|70482|70487|70487|134453|134454|134454|137870|137870|137871|137873|137873|137874|137874|137876|137877|137877|137880|137881|137881|137882|137882|137883|137884|137887|137887|137889|137889|137891|137892|137892|137892|137894|137896|137897|137897|208242|215505|215505|242189|242189|242190|242190|242191|242192|242192|255454|255455|255456|255456|255457|255457|255458|324109|324113|324117|324118|324123|324160|324161|324162|324164|324165|324171|324175|324178|324179|324180|324184|324188|324190|324201|324203|324207|324209|333730|333731|333735|333738|333738|333741|333747|333758|333759|333761|333766|333767|333769|340484|340487|340488|340492|340492|340500|340502|340505|340508|340511|340519|340521|340523|340534|340538|340542|340551|340552|340553|340554|341865|341866|341868|341868|341877|341877|341879|341879|341882|341885|341886|341887|341889|341901|341902|341905|341909|341910|341914|341915|341918|341920|341926|341927|341931|341938|341939|341941|341946|400521|400523|400529|400529|400665|400667|401098|401100|401337|413430|429758|429759|465041|465041|465045|465045|465053|465053|465057|465726|465919|529246|529434|529436|529444|529444|529465|529466|529467|529771|529772|529774|567671|567677|567678|567678|569972|569973|573713|643908|643909|643910|643911|643912|643913|643914|643915|643916|643917|643918|643919|643920|643921|643921|652453|684573|684574|684577|688527|688527|739952|754899|791522|797244|797245|820765|843092|843093|843094|843095|843096|843097|843098|843099|843100|843100|843101|843102|843103|843104|843105|843106|843107|843108|843109|843110|843111|843112|851649|851651|852620|874633|874634|874635|874636|874637|874638|874639|874640|874641|874642|874643|874644|874645|874646|874647|874648|874649|874650|874651|874652|874653|874654|874655|874656|874657|874658|874659|874660|874661|874662|874663|874664|874665|874666|874667|874668|874669|874670|874671|874672|874673|874674|874675|874676|874677|874678|874679|876612|927558|927559|927560|927561|927562|927563|927564|937217|937218|937219|937220|940343|949164|949165|949166|949167|957624|957625|957626|957627|960834", + "upstreamId": "31618|31619|31619|31619|70482|70487|70487|134453|134454|134454|137870|137870|137871|137873|137873|137874|137874|137876|137877|137877|137880|137881|137881|137882|137882|137883|137884|137887|137887|137889|137889|137891|137892|137892|137892|137894|137896|137897|137897|208242|215505|215505|242189|242189|242190|242190|242191|242192|242192|255454|255455|255456|255456|255457|255457|255458|324109|324113|324117|324118|324123|324160|324161|324162|324164|324165|324171|324175|324178|324179|324180|324184|324188|324190|324201|324203|324207|324209|333730|333731|333735|333738|333738|333741|333747|333758|333759|333761|333766|333767|333769|340484|340487|340488|340492|340492|340500|340502|340505|340508|340511|340519|340521|340523|340534|340538|340542|340551|340552|340553|340554|341865|341866|341868|341868|341877|341877|341879|341879|341882|341885|341886|341887|341889|341901|341902|341905|341909|341910|341914|341915|341918|341920|341926|341927|341931|341938|341939|341941|341946|400521|400523|400529|400529|400665|400667|401098|401100|401337|413430|429758|429759|465041|465041|465045|465045|465053|465053|465057|465726|465919|529246|529434|529436|529444|529444|529465|529466|529467|529771|529772|529774|567671|567677|567678|567678|569972|569973|573713|643908|643909|643910|643911|643912|643913|643914|643915|643916|643917|643918|643919|643920|643921|643921|652453|684573|684574|684577|688527|688527|739952|754899|791522|797244|797245|820765|843092|843093|843094|843095|843096|843097|843098|843099|843100|843100|843101|843102|843103|843104|843105|843106|843107|843108|843109|843110|843111|843112|851649|851651|852620|874633|874634|874635|874636|874637|874638|874639|874640|874641|874642|874643|874644|874645|874646|874647|874648|874649|874650|874651|874652|874653|874654|874655|874656|874657|874658|874659|874660|874661|874662|874663|874664|874665|874666|874667|874668|874669|874670|874671|874672|874673|874674|874675|874676|874677|874678|874679|876612|927558|927559|927560|927561|927562|927563|927564|937217|937218|937219|937220|940343|949164|949165|949166|949167|957624|957625|957626|957627|960834", "text": "Xeroderma pigmentosum, group F" }, { - "baseId": "31619|31619|70481|70482|70482|70483|70484|70487|70487|134454|137870|137873|137874|137876|137877|137880|137881|137882|137883|137884|137887|137889|137891|137892|137892|137897|215505|242189|242190|242191|242192|255456|255457|333738|340492|341868|341877|341879|400521|400523|400529|400665|400667|401098|401100|401337|413430|429758|429759|465041|465045|465053|465057|465726|465919|529246|529434|529436|529444|529465|529466|529467|529771|529772|529774|567671|567677|567678|569972|569973|573713|643908|643909|643910|643911|643912|643913|643914|643915|643916|643917|643918|643919|643920|643921|652453|684573|684574|684577|688527|739952|754899|797245|820765|843092|843093|843094|843095|843096|843097|843098|843099|843100|843101|843102|843103|843104|843105|843106|843107|843108|843109|843110|843111|843112|851649|851651|852620|919606|927558|927559|927560|927561|927562|927563|927564|937217|937218|937219|937220|940343|949164|949165|949166|949167|957624|957625|957626|957627|960834", + "upstreamId": "31619|31619|70481|70482|70482|70483|70484|70487|70487|134454|137870|137873|137874|137876|137877|137880|137881|137882|137883|137884|137887|137889|137891|137892|137892|137897|215505|242189|242190|242191|242192|255456|255457|333738|340492|341868|341877|341879|400521|400523|400529|400665|400667|401098|401100|401337|413430|429758|429759|465041|465045|465053|465057|465726|465919|529246|529434|529436|529444|529465|529466|529467|529771|529772|529774|567671|567677|567678|569972|569973|573713|643908|643909|643910|643911|643912|643913|643914|643915|643916|643917|643918|643919|643920|643921|652453|684573|684574|684577|688527|739952|754899|797245|820765|843092|843093|843094|843095|843096|843097|843098|843099|843100|843101|843102|843103|843104|843105|843106|843107|843108|843109|843110|843111|843112|851649|851651|852620|919606|927558|927559|927560|927561|927562|927563|927564|937217|937218|937219|937220|940343|949164|949165|949166|949167|957624|957625|957626|957627|960834", "text": "Fanconi anemia, complementation group Q" }, { - "baseId": "31619|31619|31620|70487|137892|613483", + "upstreamId": "31619|31619|31620|70487|137892|613483", "text": "XFE progeroid syndrome" }, { - "baseId": "31621|31622|31624|31625|31627|31628|137859|137867|137867|137869|259693|281793|281794|281798|281800|282412|282424|282425|282427|282429|284042|284047|284063|284070|284072|284080|284221|284229|284236|284238|284239|284240|284242|284244|284255|284275|284279|284281|284284|615785|620028|620029|620030|685111|707709|719233|774569|790037|790038|790039|790040|790041|790042|881009|881010|881011|881012|881013|881014|881015|881016|881017|881018|881019|881020|881021|881022|881023|881024|881025|881026", + "upstreamId": "31621|31622|31624|31625|31627|31628|137859|137867|137867|137869|259693|281793|281794|281798|281800|282412|282424|282425|282427|282429|284042|284047|284063|284070|284072|284080|284221|284229|284236|284238|284239|284240|284242|284244|284255|284275|284279|284281|284284|615785|620028|620029|620030|685111|707709|719233|774569|790037|790038|790039|790040|790041|790042|881009|881010|881011|881012|881013|881014|881015|881016|881017|881018|881019|881020|881021|881022|881023|881024|881025|881026", "text": "Xeroderma pigmentosum, complementation group b" }, { - "baseId": "31623|137867", + "upstreamId": "31623|137867", "text": "Trichothiodystrophy 2, photosensitive" }, { - "baseId": "31629", + "upstreamId": "31629", "text": "Estrogen receptor mutant, temperature-sensitive" }, { - "baseId": "31630", + "upstreamId": "31630", "text": "Migraine, susceptibility to" }, { - "baseId": "31631|31632|75131|165621|165622|165623|165624|165625|165626|165627|424252|578655|578656", + "upstreamId": "31631|31632|75131|165621|165622|165623|165624|165625|165626|165627|424252|578655|578656", "text": "Estrogen resistance" }, { - "baseId": "31633", + "upstreamId": "31633", "text": "Hdl cholesterol, augmented response of, to hormone replacement" }, { - "baseId": "31641", + "upstreamId": "31641", "text": "Microvascular complications of diabetes 2" }, { - "baseId": "31643|31644", + "upstreamId": "31643|31644", "text": "EPOXIDE HYDROLASE 1 POLYMORPHISM" }, { - "baseId": "31647|31648|31649|31650|31651", + "upstreamId": "31647|31648|31649|31650|31651", "text": "Nonsmall cell lung cancer, response to tyrosine kinase inhibitor in, somatic" }, { - "baseId": "31647|31648|31649|31651|31652|54420|174095|174097|174098|174099|174100|174101|174102|174103|174104|174105|174106|174107|174108|174109|174110|174112|174113|174115|174116|174117|174118|174230|174231|174232|174233|174234|174236|174237|174238|174239|174240|174241|174242|174243|174244|174245|174246|174247|174249|174250|174251|174252|174254|178179|178181|178198|178201", + "upstreamId": "31647|31648|31649|31651|31652|54420|174095|174097|174098|174099|174100|174101|174102|174103|174104|174105|174106|174107|174108|174109|174110|174112|174113|174115|174116|174117|174118|174230|174231|174232|174233|174234|174236|174237|174238|174239|174240|174241|174242|174243|174244|174245|174246|174247|174249|174250|174251|174252|174254|178179|178181|178198|178201", "text": "Tyrosine kinase inhibitor response" }, { - "baseId": "31648", + "upstreamId": "31648", "text": "Adenocarcinoma of lung, response to tyrosine kinase inhibitor in, somatic" }, { - "baseId": "31648", + "upstreamId": "31648", "text": "carboplatin, docetaxel, erlotinib, gemcitabine, and paclitaxel response - Efficacy" }, { - "baseId": "31648|31652|227818", + "upstreamId": "31648|31652|227818", "text": "gefitinib response - Efficacy" }, { - "baseId": "31648|31652", + "upstreamId": "31648|31652", "text": "erlotinib response - Efficacy" }, { - "baseId": "31648", + "upstreamId": "31648", "text": "Gefitinib response" }, { - "baseId": "31648", + "upstreamId": "31648", "text": "Erlotinib response" }, { - "baseId": "31652", + "upstreamId": "31652", "text": "Nonsmall cell lung cancer, resistance to tyrosine kinase inhibitor in" }, { - "baseId": "31652|54393|54416|54442|54443|54449|54462|54463|132039|137759|137761|137763|137764|137765|137766|137768|137769|137770|137771|205383|252902|303207|303209|303210|303216|306481|306483|311366|311367|311466|311467|311469|363091|550726|575762|575763|575765|575771|575775|575777|575778|575779|575780|683914|683915|683916|683917|711069|711070|711071|722589|736193|736194|736195|736196|736197|744422|750695|750696|750697|750698|750699|759690|759691|766312|766313|766315|777863|782880|790728|790729|790733|819877|819878|819879|819880|819881|819882|833644|833645|833646|833647|833648|833649|833650|833651|833652|833653|833654|833655|833656|833657|833658|833659|833660|833661|833662|833663|833664|833665|833666|833667|833668|833669|833670|833671|833672|833673|833674|833675|833676|833677|833678|833679|833680|833681|833682|833683|833684|833685|833686|833687|833688|833689|833690|833691|833692|833693|833694|833695|833696|833697|833698|833699|833700|833701|833702|833703|833704|833705|833706|833707|833708|833709|833710|833711|833712|833713|833714|833715|833716|833717|833718|833719|833720|833721|833722|833723|833724|833725|833726|833727|851154|851156|851644|852092|852371|924866|924867|924868|924869|924870|924871|924872|924873|924874|924875|933898|933899|933900|933901|933902|933903|933904|933905|933906|933907|933908|933909|933910|933911|933912|933913|933914|933915|933916|933917|933918|933919|933920|933921|933922|933923|933924|933925|933926|933927|933928|933929|933930|933931|933932|933933|933934|933935|933936|933937|933938|933939|933940|933941|933942|940077|940078|940079|940080|940081|945645|945646|945647|945648|945649|945650|945651|945652|945653|945654|945655|945656|945657|945658|945659|945660|945661|945662|945663|945664|945665|945666|945667|945668|945669|945670|945671|945672|945673|945674|945675|945676|945677|945678|945679|945680|945681|945682|945683|945684|945685|945686|945687|945688|945689|945690|945691|945692|945693|945694|945695|945696|945697|945698|945699|945700|945701|945702|945703|945704|945705|945706|945707|945708|945709|945710|945711|945712|945713|945714|945715|945716|945717|945718|955163|955164|955165|955166|955167|955168|955169|955170|955171|955172|955173|955174|955175|955176|955177|955178|955179|955180|959859|959860|959861|960633|960634|960635", + "upstreamId": "31652|54393|54416|54442|54443|54449|54462|54463|132039|137759|137761|137763|137764|137765|137766|137768|137769|137770|137771|205383|252902|303207|303209|303210|303216|306481|306483|311366|311367|311466|311467|311469|363091|550726|575762|575763|575765|575771|575775|575777|575778|575779|575780|683914|683915|683916|683917|711069|711070|711071|722589|736193|736194|736195|736196|736197|744422|750695|750696|750697|750698|750699|759690|759691|766312|766313|766315|777863|782880|790728|790729|790733|819877|819878|819879|819880|819881|819882|833644|833645|833646|833647|833648|833649|833650|833651|833652|833653|833654|833655|833656|833657|833658|833659|833660|833661|833662|833663|833664|833665|833666|833667|833668|833669|833670|833671|833672|833673|833674|833675|833676|833677|833678|833679|833680|833681|833682|833683|833684|833685|833686|833687|833688|833689|833690|833691|833692|833693|833694|833695|833696|833697|833698|833699|833700|833701|833702|833703|833704|833705|833706|833707|833708|833709|833710|833711|833712|833713|833714|833715|833716|833717|833718|833719|833720|833721|833722|833723|833724|833725|833726|833727|851154|851156|851644|852092|852371|924866|924867|924868|924869|924870|924871|924872|924873|924874|924875|933898|933899|933900|933901|933902|933903|933904|933905|933906|933907|933908|933909|933910|933911|933912|933913|933914|933915|933916|933917|933918|933919|933920|933921|933922|933923|933924|933925|933926|933927|933928|933929|933930|933931|933932|933933|933934|933935|933936|933937|933938|933939|933940|933941|933942|940077|940078|940079|940080|940081|945645|945646|945647|945648|945649|945650|945651|945652|945653|945654|945655|945656|945657|945658|945659|945660|945661|945662|945663|945664|945665|945666|945667|945668|945669|945670|945671|945672|945673|945674|945675|945676|945677|945678|945679|945680|945681|945682|945683|945684|945685|945686|945687|945688|945689|945690|945691|945692|945693|945694|945695|945696|945697|945698|945699|945700|945701|945702|945703|945704|945705|945706|945707|945708|945709|945710|945711|945712|945713|945714|945715|945716|945717|945718|955163|955164|955165|955166|955167|955168|955169|955170|955171|955172|955173|955174|955175|955176|955177|955178|955179|955180|959859|959860|959861|960633|960634|960635", "text": "EGFR-related lung cancer" }, { - "baseId": "31653|227748|291957|291959|291968|291978|291981|291986|291987|291995|292002|292004|292005|292007|292008|292009|292015|292017|292018|292022|292024|292025|293383|293408|293432|293435|293436|293437|293439|293440|293444|293451|293454|293456|293458|293460|293461|293462|296682|296683|296685|296688|296701|296703|296710|296718|296721|296722|296726|296727|296728|296730|296731|296736|296740|296744|296747|296750|296751|296752|296753|296755|296759|296760|296762|296764|296768|620141|620142|698334|698335|709124|709125|720707|720709|720710|720711|734402|734403|748667|764257|764258|779006|779022|889898|889899|889900|889901|889902|889903|889904|889905|889906|889907|889908|889909|889910|889911|889912|889913|889914|889915|889916|889917|889918|889919|889920|889921|889922|889923|889924|889925|889926|889927|889928|889929|891730|891731|891732|891733|891734|891735|918870", + "upstreamId": "31653|227748|291957|291959|291968|291978|291981|291986|291987|291995|292002|292004|292005|292007|292008|292009|292015|292017|292018|292022|292024|292025|293383|293408|293432|293435|293436|293437|293439|293440|293444|293451|293454|293456|293458|293460|293461|293462|296682|296683|296685|296688|296701|296703|296710|296718|296721|296722|296726|296727|296728|296730|296731|296736|296740|296744|296747|296750|296751|296752|296753|296755|296759|296760|296762|296764|296768|620141|620142|698334|698335|709124|709125|720707|720709|720710|720711|734402|734403|748667|764257|764258|779006|779022|889898|889899|889900|889901|889902|889903|889904|889905|889906|889907|889908|889909|889910|889911|889912|889913|889914|889915|889916|889917|889918|889919|889920|889921|889922|889923|889924|889925|889926|889927|889928|889929|891730|891731|891732|891733|891734|891735|918870", "text": "Hypomagnesemia 4, renal" }, { - "baseId": "31654|31655|204575", + "upstreamId": "31654|31655|204575", "text": "Eosinophil peroxidase deficiency" }, { - "baseId": "31656|31657|329065|329070|329071|329074|339128|339129|339134|339145|339157|339161|339168|339169|339173|339174|345095|345098|345099|346462|346463|346466|375275|375285|378434|434663|467919|506003|506917|569243|571257|574511|587869|646166|646167|646168|646169|797557|845594|845595|845596|845597|845598|877881|877882|877883|877884|877885|877886|880545|904885|919739|958179", + "upstreamId": "31656|31657|329065|329070|329071|329074|339128|339129|339134|339145|339157|339161|339168|339169|339173|339174|345095|345098|345099|346462|346463|346466|375275|375285|378434|434663|467919|506003|506917|569243|571257|574511|587869|646166|646167|646168|646169|797557|845594|845595|845596|845597|845598|877881|877882|877883|877884|877885|877886|880545|904885|919739|958179", "text": "Glycogen storage disease due to muscle beta-enolase deficiency" }, { - "baseId": "31658|31659|31660|31661|31662|31663|31664|31665|31666|31667|31668|31669|38647|38648|138209|138210|237608|253873|253874|253875|311299|311304|311305|311315|311317|311325|311326|311329|311330|311332|311336|311338|311340|311341|311346|311347|316776|316777|316796|316801|316804|316814|316817|316829|316830|316835|316837|316838|316841|316858|316864|322770|322791|322795|322797|322798|322799|322800|322819|322820|322821|322826|322827|322829|322838|323435|323465|323466|323470|323476|323477|323478|576138|590569|682248|790986|790987|857677|858561|866382|866383|866384|866385|866386|866387|866388|866389|866390|866391|866392|866393|866394|866395|866396|866397|866398|866399|866400|866401|868517|868518|919293|963003|963362|965221|965281|983853", + "upstreamId": "31658|31659|31660|31661|31662|31663|31664|31665|31666|31667|31668|31669|38647|38648|138209|138210|237608|253873|253874|253875|311299|311304|311305|311315|311317|311325|311326|311329|311330|311332|311336|311338|311340|311341|311346|311347|316776|316777|316796|316801|316804|316814|316817|316829|316830|316835|316837|316838|316841|316858|316864|322770|322791|322795|322797|322798|322799|322800|322819|322820|322821|322826|322827|322829|322838|323435|323465|323466|323470|323476|323477|323478|576138|590569|682248|790986|790987|857677|858561|866382|866383|866384|866385|866386|866387|866388|866389|866390|866391|866392|866393|866394|866395|866396|866397|866398|866399|866400|866401|868517|868518|919293|963003|963362|965221|965281|983853", "text": "Hypoparathyroidism-deafness-renal disease syndrome" }, { - "baseId": "31670|31671", + "upstreamId": "31670|31671", "text": "Autism 10" }, { - "baseId": "31672|31674|31675|31676|31677|31680|227355|230447|230450|230452|230454|254872|254873|320023|320024|320028|320029|320033|320034|320042|328581|328583|328585|328587|328588|328589|328590|328594|335062|335063|335065|335069|336973|336988|336994|337001|337002|337006|337019|337036|337039|337041|497032|576161|610531|871494|871495|871496|871497|871498|871499|871500|871501|871502|871503|871504|871505|871506|871507|871508|871509|871510|871511|871512|871513|871514|871515|871516|871517|871518|871519|871520|871521|871522|871523|871524|871525|872347", + "upstreamId": "31672|31674|31675|31676|31677|31680|227355|230447|230450|230452|230454|254872|254873|320023|320024|320028|320029|320033|320034|320042|328581|328583|328585|328587|328588|328589|328590|328594|335062|335063|335065|335069|336973|336988|336994|337001|337002|337006|337019|337036|337039|337041|497032|576161|610531|871494|871495|871496|871497|871498|871499|871500|871501|871502|871503|871504|871505|871506|871507|871508|871509|871510|871511|871512|871513|871514|871515|871516|871517|871518|871519|871520|871521|871522|871523|871524|871525|872347", "text": "Hirschsprung disease 2" }, { - "baseId": "31672|31673|31677|31678|31679|227355|535275|535276|538019|538020|538021|538435|576161|581727|612032", + "upstreamId": "31672|31673|31677|31678|31679|227355|535275|535276|538019|538020|538021|538435|576161|581727|612032", "text": "Waardenburg syndrome type 4A" }, { - "baseId": "31677|247444|247445|389334|622878", + "upstreamId": "31677|247444|247445|389334|622878", "text": "Mitochondrial DNA depletion syndrome 12a (cardiomyopathic type), autosomal dominant" }, { - "baseId": "31679|576161", + "upstreamId": "31679|576161", "text": "ABCD syndrome" }, { - "baseId": "31681", + "upstreamId": "31681", "text": "Migraine, resistance to" }, { - "baseId": "31682|31683|31686|31688|31689|31690|231108|336103|536012|538252", + "upstreamId": "31682|31683|31686|31688|31689|31690|231108|336103|536012|538252", "text": "Waardenburg syndrome type 4B" }, { - "baseId": "31685|31686|31687|231106|336098|336099|336103|336107|336110|336111|336112|336114|336118|336123|336124|336126|336132|345832|345834|345850|345851|345854|345856|345858|345862|345863|345867|345872|345874|350280|350283|350286|350289|350290|350293|350294|350295|350298|351312|351313|351314|351315|351316|351318|351320|351321|886443|886444|886445|886446|886447|886448|886449|886450|886451|886452|886453|886454|886455|886456|886457|886458|886459|886460|886461|886462|887479", + "upstreamId": "31685|31686|31687|231106|336098|336099|336103|336107|336110|336111|336112|336114|336118|336123|336124|336126|336132|345832|345834|345850|345851|345854|345856|345858|345862|345863|345867|345872|345874|350280|350283|350286|350289|350290|350293|350294|350295|350298|351312|351313|351314|351315|351316|351318|351320|351321|886443|886444|886445|886446|886447|886448|886449|886450|886451|886452|886453|886454|886455|886456|886457|886458|886459|886460|886461|886462|887479", "text": "Hirschsprung disease 4" }, { - "baseId": "31691", + "upstreamId": "31691", "text": "High density lipoprotein cholesterol level quantitative trait locus 7" }, { - "baseId": "31692|31694|31701|141573|141576|141579|141581|211968|211976|211980|211990|211993|224789|338584|338593|352680|415724|656705|729315|743039|758186|758187|760808|773628|773634|776839|786652|961241|980068|980069|980070|980071|980072|980073|980074|980075", + "upstreamId": "31692|31694|31701|141573|141576|141579|141581|211968|211976|211980|211990|211993|224789|338584|338593|352680|415724|656705|729315|743039|758186|758187|760808|773628|773634|776839|786652|961241|980068|980069|980070|980071|980072|980073|980074|980075", "text": "Mitochondrial neurogastrointestinal encephalomyopathy" }, { - "baseId": "31706", + "upstreamId": "31706", "text": "IgA nephropathy, susceptibility to" }, { - "baseId": "31707|31708|31709|31710|31712|31713|31715|140911|140912|140913|171109|171110|171112|171113|172175|174130|174131|178593|209943|209945|209948|209949|209952|209955|221804|227844|227845|229663|240449|240451|240452|240453|240455|240457|240459|240460|240462|240463|240464|253309|253310|253312|259913|259914|306870|306871|306874|306877|306879|311049|311050|311060|311062|311065|311066|311067|316665|316668|316671|316933|316943|316947|316949|316950|316951|316967|316969|316970|316971|316975|316976|316977|316979|316982|316996|316999|317000|317006|325595|331658|331659|331662|331668|331672|331679|331683|331684|331686|331694|331695|331701|331704|333281|341907|341932|341934|341935|341942|341944|341945|341948|347270|347281|347290|347332|347335|347347|348571|348608|348613|348647|348649|348653|348656|348660|348670|353480|353481|360048|361866|370234|396357|396401|396403|396409|396684|396686|396689|396695|396702|396773|396827|396851|397002|397049|397050|397057|397059|397069|397070|397071|397081|397083|397091|397093|407547|414378|421700|421701|428921|430980|433051|433053|433055|433056|433063|433527|437737|437738|437739|437740|437741|437742|444357|444363|446888|458237|458245|458250|458254|458260|458270|458282|458284|458289|458645|458720|458776|458777|458780|458789|458792|458798|458809|458812|458846|458853|458860|458867|459158|459277|459289|459290|459295|459297|459304|472247|495390|508963|523963|523975|523980|524233|524236|524242|524244|524266|524277|524281|524282|524434|524499|524508|524509|524511|524517|524523|524525|524529|524578|524584|524585|524587|524593|540529|562579|562738|562746|562752|562755|562756|562762|562769|563226|563423|563424|563425|563427|563447|563451|563461|563469|563470|563475|563476|565329|565500|565510|565517|565519|565523|565525|568310|568482|568488|568489|568494|568495|568496|568505|609706|609709|609710|609712|609714|609718|625987|637682|637697|637698|637705|637713|651901|651977|687370|689931|767104|796221|799564|799565|799566|799567|799568|799569|799570|799571|799572|799573|799574|799575|799576|835467|835471|835474|835488|835499|852481|901099|901100|901101|901102|901103|901104|901105|901106|901107|901108|901109|901110|901111|901112|901113|901114|901115|901116|901117|901118|901119|901120|901121|901122|901123|901124|901125|901126|901127|901129|901130|901131|905029|925377|925378|925383|934547|964309|970563|970564|970565|970566|970567|970568|970569|970570|970571|970572|970573|970574|970575|970576|970577|970578|970579|970580|970581|970582|970583|970584|970585|970586|970587|970588|970589|970590|970591|970592|970593|970594|970595|970596|970597|970598|970599|970600|970601|970602|970603|970604|970605|970606|970607|970608|970609|970610|970611|970612|981653|981654|981655|981656|981657|981658|981659|981660|981661|981662", + "upstreamId": "31707|31708|31709|31710|31712|31713|31715|140911|140912|140913|171109|171110|171112|171113|172175|174130|174131|178593|209943|209945|209948|209949|209952|209955|221804|227844|227845|229663|240449|240451|240452|240453|240455|240457|240459|240460|240462|240463|240464|253309|253310|253312|259913|259914|306870|306871|306874|306877|306879|311049|311050|311060|311062|311065|311066|311067|316665|316668|316671|316933|316943|316947|316949|316950|316951|316967|316969|316970|316971|316975|316976|316977|316979|316982|316996|316999|317000|317006|325595|331658|331659|331662|331668|331672|331679|331683|331684|331686|331694|331695|331701|331704|333281|341907|341932|341934|341935|341942|341944|341945|341948|347270|347281|347290|347332|347335|347347|348571|348608|348613|348647|348649|348653|348656|348660|348670|353480|353481|360048|361866|370234|396357|396401|396403|396409|396684|396686|396689|396695|396702|396773|396827|396851|397002|397049|397050|397057|397059|397069|397070|397071|397081|397083|397091|397093|407547|414378|421700|421701|428921|430980|433051|433053|433055|433056|433063|433527|437737|437738|437739|437740|437741|437742|444357|444363|446888|458237|458245|458250|458254|458260|458270|458282|458284|458289|458645|458720|458776|458777|458780|458789|458792|458798|458809|458812|458846|458853|458860|458867|459158|459277|459289|459290|459295|459297|459304|472247|495390|508963|523963|523975|523980|524233|524236|524242|524244|524266|524277|524281|524282|524434|524499|524508|524509|524511|524517|524523|524525|524529|524578|524584|524585|524587|524593|540529|562579|562738|562746|562752|562755|562756|562762|562769|563226|563423|563424|563425|563427|563447|563451|563461|563469|563470|563475|563476|565329|565500|565510|565517|565519|565523|565525|568310|568482|568488|568489|568494|568495|568496|568505|609706|609709|609710|609712|609714|609718|625987|637682|637697|637698|637705|637713|651901|651977|687370|689931|767104|796221|799564|799565|799566|799567|799568|799569|799570|799571|799572|799573|799574|799575|799576|835467|835471|835474|835488|835499|852481|901099|901100|901101|901102|901103|901104|901105|901106|901107|901108|901109|901110|901111|901112|901113|901114|901115|901116|901117|901118|901119|901120|901121|901122|901123|901124|901125|901126|901127|901129|901130|901131|905029|925377|925378|925383|934547|964309|970563|970564|970565|970566|970567|970568|970569|970570|970571|970572|970573|970574|970575|970576|970577|970578|970579|970580|970581|970582|970583|970584|970585|970586|970587|970588|970589|970590|970591|970592|970593|970594|970595|970596|970597|970598|970599|970600|970601|970602|970603|970604|970605|970606|970607|970608|970609|970610|970611|970612|981653|981654|981655|981656|981657|981658|981659|981660|981661|981662", "text": "Hereditary hemorrhagic telangiectasia type 1" }, { - "baseId": "31715|140913|171109|171110|171112|171113|172175|174130|174131|174685|191136|209943|209944|209945|209948|209949|209950|209955|209956|209960|221804|227845|240449|240450|240451|240452|240453|240454|240455|240458|240460|240462|253309|253310|259913|259914|266944|268906|306870|311060|316967|316970|316971|316976|361866|369766|370234|372136|396395|396396|396397|396408|396410|396413|396421|396423|396686|396689|396692|396695|396699|396702|396768|396830|396839|396844|396846|396851|397050|397054|397057|397079|397081|397086|407545|407547|407548|414377|421701|428921|433052|433055|433056|433059|433063|433529|444355|444361|458289|458780|458790|458808|458855|458862|459148|459279|459290|459295|459301|459306|502143|523957|523982|524230|524244|524248|524257|524268|524275|524497|524499|524511|524539|524587|562739|562744|562765|562767|563222|563424|563428|563445|563451|565323|565500|565503|565504|565512|565514|565516|565523|568505|568506|590609|609706|609711|637678|637679|637680|637681|637682|637683|637684|637685|637686|637687|637688|637689|637690|637691|637692|637693|637694|637695|637696|637697|637698|637699|637700|637701|637702|637703|637704|637705|637706|637707|637708|637709|637710|637711|637712|637713|637714|651825|651829|651901|651977|652099|684044|684047|687367|687368|687369|689931|689933|692574|736889|736890|767102|796223|796224|799570|799574|799576|820057|820059|820060|820061|820062|820063|820064|820065|820066|820067|820068|835467|835468|835469|835470|835471|835472|835473|835474|835475|835476|835477|835478|835479|835480|835481|835482|835483|835484|835485|835486|835487|835488|835489|835490|835491|835492|835493|835494|835495|835496|835497|835498|835499|851720|852481|901119|925372|925373|925374|925375|925376|925377|925378|925379|925380|925381|925382|925383|934538|934539|934540|934541|934542|934543|934544|934545|934546|934547|940127|940128|940923|946356|946357|946358|946359|946360|946361|946362|946363|946364|946365|946366|946367|946368|946369|946370|946371|946372|946373|955683|955684|955685|955686|955687|955688|955689|959910|959911", + "upstreamId": "31715|140913|171109|171110|171112|171113|172175|174130|174131|174685|191136|209943|209944|209945|209948|209949|209950|209955|209956|209960|221804|227845|240449|240450|240451|240452|240453|240454|240455|240458|240460|240462|253309|253310|259913|259914|266944|268906|306870|311060|316967|316970|316971|316976|361866|369766|370234|372136|396395|396396|396397|396408|396410|396413|396421|396423|396686|396689|396692|396695|396699|396702|396768|396830|396839|396844|396846|396851|397050|397054|397057|397079|397081|397086|407545|407547|407548|414377|421701|428921|433052|433055|433056|433059|433063|433529|444355|444361|458289|458780|458790|458808|458855|458862|459148|459279|459290|459295|459301|459306|502143|523957|523982|524230|524244|524248|524257|524268|524275|524497|524499|524511|524539|524587|562739|562744|562765|562767|563222|563424|563428|563445|563451|565323|565500|565503|565504|565512|565514|565516|565523|568505|568506|590609|609706|609711|637678|637679|637680|637681|637682|637683|637684|637685|637686|637687|637688|637689|637690|637691|637692|637693|637694|637695|637696|637697|637698|637699|637700|637701|637702|637703|637704|637705|637706|637707|637708|637709|637710|637711|637712|637713|637714|651825|651829|651901|651977|652099|684044|684047|687367|687368|687369|689931|689933|692574|736889|736890|767102|796223|796224|799570|799574|799576|820057|820059|820060|820061|820062|820063|820064|820065|820066|820067|820068|835467|835468|835469|835470|835471|835472|835473|835474|835475|835476|835477|835478|835479|835480|835481|835482|835483|835484|835485|835486|835487|835488|835489|835490|835491|835492|835493|835494|835495|835496|835497|835498|835499|851720|852481|901119|925372|925373|925374|925375|925376|925377|925378|925379|925380|925381|925382|925383|934538|934539|934540|934541|934542|934543|934544|934545|934546|934547|940127|940128|940923|946356|946357|946358|946359|946360|946361|946362|946363|946364|946365|946366|946367|946368|946369|946370|946371|946372|946373|955683|955684|955685|955686|955687|955688|955689|959910|959911", "text": "Hereditary hemorrhagic telangiectasia" }, { - "baseId": "31727|363534|419830|439678|439679|439680|439681|439682|439683|439684|439685|439686", + "upstreamId": "31727|363534|419830|439678|439679|439680|439681|439682|439683|439684|439685|439686", "text": "Metastatic pancreatic neuroendocrine tumours" }, { - "baseId": "31732", + "upstreamId": "31732", "text": "Lipoma, somatic" }, { - "baseId": "31733|31734", + "upstreamId": "31733|31734", "text": "Angiofibroma, somatic" }, { - "baseId": "31737", + "upstreamId": "31737", "text": "Adenoma of the adrenal gland" }, { - "baseId": "31750|31751|31752|31753|31754|576085|609423|792677|799214|799215|799216|799217|799218|981320|981321|981322", + "upstreamId": "31750|31751|31752|31753|31754|576085|609423|792677|799214|799215|799216|799217|799218|981320|981321|981322", "text": "Elliptocytosis 1" }, { - "baseId": "31755|31756|31757", + "upstreamId": "31755|31756|31757", "text": "Glutaric acidemia IIB" }, { - "baseId": "31758|31759|31760|31761|31762|31763|31764|31769|31770|31771|31772|38645|48909|52751|52752|52753|52754|52755|53059|176338|176460|176596|176775|176776|176777|176780|176781|176782|176783|176785|176785|176786|176788|176789|176790|178200|178208|178209|178257|178268|190789|192634|209906|209907|209911|209918|209918|209919|209925|209928|209931|209933|209939|209941|231309|231406|240166|240167|267658|303321|303323|303330|303340|303342|303348|303349|303350|303355|303357|303358|303359|306672|306679|306680|306689|306696|306703|306704|306707|306715|306716|306717|306722|306729|306742|306752|306756|311559|311563|311572|311574|311575|311577|311578|311580|311588|311589|311590|311591|311596|311597|311598|311602|311720|311721|311722|311723|311725|311727|311730|311734|369271|369272|369953|369955|395238|395902|396128|396411|396415|407257|444157|444158|456894|456896|456901|456907|457388|457392|457398|457578|457582|457913|457915|493689|494051|496484|497843|497857|501792|501795|502495|514560|522277|522812|522812|523047|523055|523060|523061|523242|523247|523369|536740|561743|561746|561748|562141|562143|564405|564406|567112|567122|576125|576125|636324|636325|636326|636327|651623|651696|651765|654496|655801|663012|683927|683928|683930|683931|683933|685225|687103|687105|687107|687108|819913|819914|819915|833819|833820|833821|833822|833823|833824|833825|833826|833827|833828|833829|851654|851656|852102|852376|859619|898343|898344|898345|898346|898347|898348|898349|898350|898351|898352|898353|898354|898355|898356|898357|898358|898359|898360|898361|898362|900388|900389|900390|900391|900392|924901|924902|933990|940882|940883|945754|945755|955211|955212|955213|960637|964665|975796|983573", + "upstreamId": "31758|31759|31760|31761|31762|31763|31764|31769|31770|31771|31772|38645|48909|52751|52752|52753|52754|52755|53059|176338|176460|176596|176775|176776|176777|176780|176781|176782|176783|176785|176785|176786|176788|176789|176790|178200|178208|178209|178257|178268|190789|192634|209906|209907|209911|209918|209918|209919|209925|209928|209931|209933|209939|209941|231309|231406|240166|240167|267658|303321|303323|303330|303340|303342|303348|303349|303350|303355|303357|303358|303359|306672|306679|306680|306689|306696|306703|306704|306707|306715|306716|306717|306722|306729|306742|306752|306756|311559|311563|311572|311574|311575|311577|311578|311580|311588|311589|311590|311591|311596|311597|311598|311602|311720|311721|311722|311723|311725|311727|311730|311734|369271|369272|369953|369955|395238|395902|396128|396411|396415|407257|444157|444158|456894|456896|456901|456907|457388|457392|457398|457578|457582|457913|457915|493689|494051|496484|497843|497857|501792|501795|502495|514560|522277|522812|522812|523047|523055|523060|523061|523242|523247|523369|536740|561743|561746|561748|562141|562143|564405|564406|567112|567122|576125|576125|636324|636325|636326|636327|651623|651696|651765|654496|655801|663012|683927|683928|683930|683931|683933|685225|687103|687105|687107|687108|819913|819914|819915|833819|833820|833821|833822|833823|833824|833825|833826|833827|833828|833829|851654|851656|852102|852376|859619|898343|898344|898345|898346|898347|898348|898349|898350|898351|898352|898353|898354|898355|898356|898357|898358|898359|898360|898361|898362|900388|900389|900390|900391|900392|924901|924902|933990|940882|940883|945754|945755|955211|955212|955213|960637|964665|975796|983573", "text": "Supravalvar aortic stenosis" }, { - "baseId": "31765|31766|31767|31773|31774|31775|31776|34304|52752|52753|176785|192634|198648|209911|209918|209918|209919|209939|231309|267658|303321|303323|303330|303348|303349|303350|303355|303357|303358|306672|306679|306680|306696|306703|306704|306707|306715|306716|306722|306742|311563|311574|311578|311580|311588|311589|311590|311591|311597|311598|311602|311720|311721|311722|311723|311725|311727|311734|369271|396128|407257|444157|444158|457915|522812|561746|562141|576125|654496|685225|687103|859619|898343|898344|898345|898346|898347|898348|898349|898350|898351|898352|898353|898354|898355|898356|898357|898358|898359|898360|898361|898362|900388|900389|900390|900391|900392", + "upstreamId": "31765|31766|31767|31773|31774|31775|31776|34304|52752|52753|176785|192634|198648|209911|209918|209918|209919|209939|231309|267658|303321|303323|303330|303348|303349|303350|303355|303357|303358|306672|306679|306680|306696|306703|306704|306707|306715|306716|306722|306742|311563|311574|311578|311580|311588|311589|311590|311591|311597|311598|311602|311720|311721|311722|311723|311725|311727|311734|369271|396128|407257|444157|444158|457915|522812|561746|562141|576125|654496|685225|687103|859619|898343|898344|898345|898346|898347|898348|898349|898350|898351|898352|898353|898354|898355|898356|898357|898358|898359|898360|898361|898362|900388|900389|900390|900391|900392", "text": "Cutis laxa, autosomal dominant 1" }, { - "baseId": "31777|31777|31778|31779|31779|31782|31784|31784|140903|140904|140904|140905|178750|205023|243853|243855|243865|243868|243869|243869|245163|245163|257294|257296|257297|257299|260218|410724|446203|470271|471345|471349|507235|507640|533462|533505|533967|533971|533973|533974|533978|571110|571125|571127|573440|573441|575069|575070|575071|648551|648552|648553|648554|648555|648556|648557|648558|648559|648560|648561|648562|648563|648564|648565|652970|653528|653529|656614|684860|689177|694523|791965|791966|800165|821298|848186|848187|848188|848189|848190|848191|848192|848193|852896|929134|929135|929136|929137|938897|938898|938899|938900|938901|940496|950968|950969|950970|950971|950972|950973|950974|950975|958769|958770", + "upstreamId": "31777|31777|31778|31779|31779|31782|31784|31784|140903|140904|140904|140905|178750|205023|243853|243855|243865|243868|243869|243869|245163|245163|257294|257296|257297|257299|260218|410724|446203|470271|471345|471349|507235|507640|533462|533505|533967|533971|533973|533974|533978|571110|571125|571127|573440|573441|575069|575070|575071|648551|648552|648553|648554|648555|648556|648557|648558|648559|648560|648561|648562|648563|648564|648565|652970|653528|653529|656614|684860|689177|694523|791965|791966|800165|821298|848186|848187|848188|848189|848190|848191|848192|848193|852896|929134|929135|929136|929137|938897|938898|938899|938900|938901|940496|950968|950969|950970|950971|950972|950973|950974|950975|958769|958770", "text": "Cyclical neutropenia" }, { - "baseId": "31777|31779|31782|31782|31783|31784|31784|31785|31787|132671|140903|140904|140905|205024|243853|243855|243865|243868|243869|243869|245163|257294|257296|257297|257299|260218|410724|446203|470271|471345|471349|507235|507640|533462|533505|533967|533971|533973|533974|533978|571110|571125|571127|573440|573441|575069|575070|575071|648551|648552|648553|648554|648555|648556|648557|648558|648559|648560|648561|648562|648563|648564|648565|652970|653528|653529|656614|684860|689177|694523|800165|821298|848186|848187|848188|848189|848190|848191|848192|848193|852896|929134|929135|929136|929137|938897|938898|938899|938900|938901|940496|950968|950969|950970|950971|950972|950973|950974|950975|958769|958770|965629|969615", + "upstreamId": "31777|31779|31782|31782|31783|31784|31784|31785|31787|132671|140903|140904|140905|205024|243853|243855|243865|243868|243869|243869|245163|257294|257296|257297|257299|260218|410724|446203|470271|471345|471349|507235|507640|533462|533505|533967|533971|533973|533974|533978|571110|571125|571127|573440|573441|575069|575070|575071|648551|648552|648553|648554|648555|648556|648557|648558|648559|648560|648561|648562|648563|648564|648565|652970|653528|653529|656614|684860|689177|694523|800165|821298|848186|848187|848188|848189|848190|848191|848192|848193|852896|929134|929135|929136|929137|938897|938898|938899|938900|938901|940496|950968|950969|950970|950971|950972|950973|950974|950975|958769|958770|965629|969615", "text": "Neutropenia, severe congenital 1, autosomal dominant" }, { - "baseId": "31788|31790|38481|53814|135065|141945|244249|276934|276937|276938|276943|276944|277211|277215|277216|277906|277907|277912|277913|277914|278013|278014|278015|278016|278027|353066|361263|539028|946956", + "upstreamId": "31788|31790|38481|53814|135065|141945|244249|276934|276937|276938|276943|276944|277211|277215|277216|277906|277907|277912|277913|277914|278013|278014|278015|278016|278027|353066|361263|539028|946956", "text": "Congenital hypomyelinating neuropathy 1, autosomal recessive" }, { - "baseId": "31789|31791|49429|49430|49431|221981|244557|244559|244560|253796|310600|310603|310604|315774|315775|315776|315779|315780|321852|321857|322507|322508|322510|322513|322519|322521|460793|539028|626198|866038|866039|866040|866041|866042|866043", + "upstreamId": "31789|31791|49429|49430|49431|221981|244557|244559|244560|253796|310600|310603|310604|315774|315775|315776|315779|315780|321852|321857|322507|322508|322510|322513|322519|322521|460793|539028|626198|866038|866039|866040|866041|866042|866043", "text": "Charcot-Marie-Tooth disease, demyelinating, type 1d" }, { - "baseId": "31791|31792", + "upstreamId": "31791|31792", "text": "Dejerine-sottas neuropathy, autosomal dominant" }, { - "baseId": "31793|31794|31795|31796|31798|31799|31800|70601|70602|70603|70604|70605|70606|70607|70608|70609|70610|70611|70612|70613|70614|70615|70616|70617|70618|70619|70620|70621|70622|70623|70624|70625|70626|70627|70628|70629|70630|70631|70632|70633|70634|70635|70636|70637|70638|70639|70640|70641|70642|70643|70644|70645|70646|70647|70648|301442|301443|301444|301449|301451|301452|301453|301479|304686|304694|304699|304700|304702|309309|309310|309313|309321|309330|309331|309333|309335|309345|309346|309353|309357|309467|309470|309474|309476|309477|309482|309485|309486|370663|623296|699735|699736|710694|710695|722231|722232|790671|792765|897214|897215|897216|897217|897218|897219|897220|897221|897222|897223|897224|897225|897226|897227|897228|897229|897230|897231|897232|900299|900300|900301|900302|900303", + "upstreamId": "31793|31794|31795|31796|31798|31799|31800|70601|70602|70603|70604|70605|70606|70607|70608|70609|70610|70611|70612|70613|70614|70615|70616|70617|70618|70619|70620|70621|70622|70623|70624|70625|70626|70627|70628|70629|70630|70631|70632|70633|70634|70635|70636|70637|70638|70639|70640|70641|70642|70643|70644|70645|70646|70647|70648|301442|301443|301444|301449|301451|301452|301453|301479|304686|304694|304699|304700|304702|309309|309310|309313|309321|309330|309331|309333|309335|309345|309346|309353|309357|309467|309470|309474|309476|309477|309482|309485|309486|370663|623296|699735|699736|710694|710695|722231|722232|790671|792765|897214|897215|897216|897217|897218|897219|897220|897221|897222|897223|897224|897225|897226|897227|897228|897229|897230|897231|897232|900299|900300|900301|900302|900303", "text": "Congenital secretory diarrhea, chloride type" }, { - "baseId": "31802|31803|38640|102921|102922|102923|196211|363960|363960|454675|454745|454768|454771|455167|508799|512901|512902|520794|521089|521203|521205|521263|521295|521298|559960|564805|564816|564872|622347|633510|633522|633546|633547|633548|633549|633550|633551|798553|920206|961603|961604", + "upstreamId": "31802|31803|38640|102921|102922|102923|196211|363960|363960|454675|454745|454768|454771|455167|508799|512901|512902|520794|521089|521203|521205|521263|521295|521298|559960|564805|564816|564872|622347|633510|633522|633546|633547|633548|633549|633550|633551|798553|920206|961603|961604", "text": "Parkinsonism-dystonia, infantile, 1" }, { - "baseId": "31804", + "upstreamId": "31804", "text": "Blepharospasm" }, { - "baseId": "31805|31808", + "upstreamId": "31805|31808", "text": "Attention deficit-hyperactivity disorder, susceptibility to" }, { - "baseId": "31806", + "upstreamId": "31806", "text": "Autonomic nervous system dysfunction" }, { - "baseId": "31807", + "upstreamId": "31807", "text": "DOPAMINE RECEPTOR D4 POLYMORPHISM" }, { - "baseId": "31809", + "upstreamId": "31809", "text": "Essential tremor, susceptibility to" }, { - "baseId": "31809|288123|288867|288871|288877|291812|291911|291912|291920|291923|291926|887702|887703", + "upstreamId": "31809|288123|288867|288871|288877|291812|291911|291912|291920|291923|291926|887702|887703", "text": "Hereditary essential tremor 1" }, { - "baseId": "31811", + "upstreamId": "31811", "text": "Dna topoisomerase II, resistance to inhibition of, by amsacrine" }, { - "baseId": "31813", + "upstreamId": "31813", "text": "DNA topoisomerase I, camptothecin-resistant" }, { - "baseId": "31814|31815", + "upstreamId": "31814|31815", "text": "DNA ligase I deficiency" }, { - "baseId": "31816|31817|227406|237162|583130|626277", + "upstreamId": "31816|31817|227406|237162|583130|626277", "text": "Cerebrooculofacioskeletal syndrome 4" }, { - "baseId": "31818|31819|31821|31822|31823|31827|31828|31829|31830|31831|31832|31832|137834|137836|137837|137838|137838|137839|137840|137841|137843|137844|137846|137853|137856|257141|257142|257144|257147|257148|259254|333807|333809|333810|333811|333816|333817|343771|343773|343780|343782|343784|343785|343786|349074|349076|349077|349077|349079|349083|349085|349974|349976|349977|349980|349982|349983|349984|349985|349988|349991|349996|349997|349998|350001|350005|389209|537335|615829|615830|615846|620642|620643|620644|620907|728270|731290|757111|757117|772746|772747|779918|779923|786226|791939|793797|882119|882120|882121|882122|882123|882124|882125|882126|882127|882128|882129|882130|882131|882132|882133|882134|882135|882136|882137|882138|882139|882140|882141|882142|882143|882144|882145|882146|882147|882148|882149|882906|882907|882908", + "upstreamId": "31818|31819|31821|31822|31823|31827|31828|31829|31830|31831|31832|31832|137834|137836|137837|137838|137838|137839|137840|137841|137843|137844|137846|137853|137856|257141|257142|257144|257147|257148|259254|333807|333809|333810|333811|333816|333817|343771|343773|343780|343782|343784|343785|343786|349074|349076|349077|349077|349079|349083|349085|349974|349976|349977|349980|349982|349983|349984|349985|349988|349991|349996|349997|349998|350001|350005|389209|537335|615829|615830|615846|620642|620643|620644|620907|728270|731290|757111|757117|772746|772747|779918|779923|786226|791939|793797|882119|882120|882121|882122|882123|882124|882125|882126|882127|882128|882129|882130|882131|882132|882133|882134|882135|882136|882137|882138|882139|882140|882141|882142|882143|882144|882145|882146|882147|882148|882149|882906|882907|882908", "text": "Xeroderma pigmentosum, group D" }, { - "baseId": "31818|31820|31823|31824|31825|31831|31831|31832|137838|137838|214806|349077|389209", + "upstreamId": "31818|31820|31823|31824|31825|31831|31831|31832|137838|137838|214806|349077|389209", "text": "Trichothiodystrophy 1, photosensitive" }, { - "baseId": "31826|31827|31831|31831|31832|137838|137855|349077|550640|970421", + "upstreamId": "31826|31827|31831|31831|31832|137838|137855|349077|550640|970421", "text": "Cerebrooculofacioskeletal syndrome 2" }, { - "baseId": "31831|622465", + "upstreamId": "31831|622465", "text": "Trichothiodystrophy" }, { - "baseId": "31831", + "upstreamId": "31831", "text": "ERCC2-related conditions" }, { - "baseId": "31833", + "upstreamId": "31833", "text": "Ventricular fibrillation, paroxysmal familial, 2" }, { - "baseId": "31834|31835|31836|31838|97384|97385|178310|310625|321902|321910|321912|321915|322602|322609|322610|420435|525555|737571|790977|866100|925910", + "upstreamId": "31834|31835|31836|31838|97384|97385|178310|310625|321902|321910|321912|321915|322602|322609|322610|420435|525555|737571|790977|866100|925910", "text": "Hyperphenylalaninemia, BH4-deficient, D" }, { - "baseId": "31839|31840|31841|31842|31843|31844|31845|31846|31847|134341|134342|255858|255859|326238|326242|326247|326265|326275|326281|326286|326287|326293|335981|335990|335993|335997|335999|336006|336008|336012|336013|336015|336022|336023|336025|336028|336033|336034|336036|336037|342297|342301|342304|342305|342307|342308|342311|342312|342315|343894|343899|343900|343901|343902|343906|343909|343914|343916|353355|703795|726776|875915|875916|875917|875918|875919|875920|875921|875922|875923|875924|875925|875926|875927|875928|875929|875930|875931|875932|875933|875934|876719|876720", + "upstreamId": "31839|31840|31841|31842|31843|31844|31845|31846|31847|134341|134342|255858|255859|326238|326242|326247|326265|326275|326281|326286|326287|326293|335981|335990|335993|335997|335999|336006|336008|336012|336013|336015|336022|336023|336025|336028|336033|336034|336036|336037|342297|342301|342304|342305|342307|342308|342311|342312|342315|343894|343899|343900|343901|343902|343906|343909|343914|343916|353355|703795|726776|875915|875916|875917|875918|875919|875920|875921|875922|875923|875924|875925|875926|875927|875928|875929|875930|875931|875932|875933|875934|876719|876720", "text": "Miller syndrome" }, { - "baseId": "31848", + "upstreamId": "31848", "text": "Benzene toxicity, susceptibility to" }, { - "baseId": "31848", + "upstreamId": "31848", "text": "Leukemia, post-chemotherapy, susceptibility to" }, { - "baseId": "31848", + "upstreamId": "31848", "text": "Breast cancer, post-chemotherapy poor survival in" }, { - "baseId": "31848", + "upstreamId": "31848", "text": "Alkylating Agents, anthracyclines and related substances, fluorouracil, and Platinum compounds response - Efficacy" }, { - "baseId": "31849|31850|31851|31852|31853|31854|31855|31856|31857|44673|44674|44675|44676|44677|44678|53444|53445|53446|53450|53451|53454|53455|53456|53457|53459|53460|53462|53463|53464|53465|53467|53469|53470|53471|53472|53473|53474|53475|53476|53477|53479|53480|53481|53482|53483|53484|53485|53486|53488|53489|53490|53491|53493|53495|53496|53497|53498|140863|140867|140868|140869|165536|171194|176526|176527|176529|176531|176532|176533|176534|176535|176536|176541|176664|176665|176667|176669|176671|176672|176673|176674|176676|176677|176678|176679|178729|186567|186568|186572|186574|188894|189986|189989|189993|189994|197966|197968|197969|197973|197974|197975|197976|197977|197979|197980|197984|197986|197990|197995|197998|198000|198001|198003|198005|198006|198007|198008|198009|215553|224539|224541|230862|230864|230865|230866|230868|230870|245257|245259|247150|256651|259026|259032|259033|259038|259043|264903|331153|331163|331167|331172|331175|331178|331180|331181|331187|331190|331193|331197|331200|331208|331212|331214|331215|341417|341421|341425|341427|341439|341452|341470|341473|341479|341483|341489|341490|341493|346908|346911|346912|346924|346928|346937|346939|346946|346956|346966|346967|348176|348180|348183|348188|348190|348194|348197|348200|348210|348217|348223|348224|348230|375884|375890|376942|376943|378958|378962|378964|378971|378974|402715|402720|402763|402769|402779|402783|402787|403248|403252|403258|403282|403284|403295|404835|410342|410344|410345|410349|410350|410351|410353|410358|410359|410360|415598|445956|445957|467956|467958|468882|468891|468900|468902|468905|468915|468916|469285|469286|469299|469302|469310|469313|469314|469717|469718|469725|469729|469734|469736|487932|506545|507339|507348|510783|510788|510789|511137|532221|532226|532228|532230|532234|532258|532321|532323|532325|532334|532336|532343|532666|532668|532679|532717|536966|570105|570110|571885|571888|571889|571895|571896|571898|571908|572617|572620|572621|572622|574729|574731|574733|574735|574737|576268|576269|610127|610128|618873|618874|647161|647164|647165|647166|647167|647168|647169|647170|647171|647172|647173|647174|647175|647176|647177|647178|647179|647180|647181|647182|653552|654842|684753|688905|688907|727703|772120|772121|788274|797666|821186|821187|846780|846781|846782|846783|846784|846785|846786|846787|846788|846789|846790|846791|846792|846793|846794|846795|846796|846797|846798|846799|846800|846801|846802|846803|846804|851771|852935|879140|879141|879142|879143|879144|879145|879146|879147|879148|879149|879150|879151|879152|879153|879154|879155|879156|879157|879158|879159|879160|879161|879162|880652|880653|904021|914429|914551|914571|914572|914607|916604|918429|919793|919794|928683|928684|928685|928686|928687|928688|928689|938410|938411|938412|938413|938414|938415|950496|950497|950498|950499|950500|958455|958456|958457|960264|961886|965745", + "upstreamId": "31849|31850|31851|31852|31853|31854|31855|31856|31857|44673|44674|44675|44676|44677|44678|53444|53445|53446|53450|53451|53454|53455|53456|53457|53459|53460|53462|53463|53464|53465|53467|53469|53470|53471|53472|53473|53474|53475|53476|53477|53479|53480|53481|53482|53483|53484|53485|53486|53488|53489|53490|53491|53493|53495|53496|53497|53498|140863|140867|140868|140869|165536|171194|176526|176527|176529|176531|176532|176533|176534|176535|176536|176541|176664|176665|176667|176669|176671|176672|176673|176674|176676|176677|176678|176679|178729|186567|186568|186572|186574|188894|189986|189989|189993|189994|197966|197968|197969|197973|197974|197975|197976|197977|197979|197980|197984|197986|197990|197995|197998|198000|198001|198003|198005|198006|198007|198008|198009|215553|224539|224541|230862|230864|230865|230866|230868|230870|245257|245259|247150|256651|259026|259032|259033|259038|259043|264903|331153|331163|331167|331172|331175|331178|331180|331181|331187|331190|331193|331197|331200|331208|331212|331214|331215|341417|341421|341425|341427|341439|341452|341470|341473|341479|341483|341489|341490|341493|346908|346911|346912|346924|346928|346937|346939|346946|346956|346966|346967|348176|348180|348183|348188|348190|348194|348197|348200|348210|348217|348223|348224|348230|375884|375890|376942|376943|378958|378962|378964|378971|378974|402715|402720|402763|402769|402779|402783|402787|403248|403252|403258|403282|403284|403295|404835|410342|410344|410345|410349|410350|410351|410353|410358|410359|410360|415598|445956|445957|467956|467958|468882|468891|468900|468902|468905|468915|468916|469285|469286|469299|469302|469310|469313|469314|469717|469718|469725|469729|469734|469736|487932|506545|507339|507348|510783|510788|510789|511137|532221|532226|532228|532230|532234|532258|532321|532323|532325|532334|532336|532343|532666|532668|532679|532717|536966|570105|570110|571885|571888|571889|571895|571896|571898|571908|572617|572620|572621|572622|574729|574731|574733|574735|574737|576268|576269|610127|610128|618873|618874|647161|647164|647165|647166|647167|647168|647169|647170|647171|647172|647173|647174|647175|647176|647177|647178|647179|647180|647181|647182|653552|654842|684753|688905|688907|727703|772120|772121|788274|797666|821186|821187|846780|846781|846782|846783|846784|846785|846786|846787|846788|846789|846790|846791|846792|846793|846794|846795|846796|846797|846798|846799|846800|846801|846802|846803|846804|851771|852935|879140|879141|879142|879143|879144|879145|879146|879147|879148|879149|879150|879151|879152|879153|879154|879155|879156|879157|879158|879159|879160|879161|879162|880652|880653|904021|914429|914551|914571|914572|914607|916604|918429|919793|919794|928683|928684|928685|928686|928687|928688|928689|938410|938411|938412|938413|938414|938415|950496|950497|950498|950499|950500|958455|958456|958457|960264|961886|965745", "text": "Arrhythmogenic right ventricular cardiomyopathy, type 10" }, { - "baseId": "31851|198007|572622", + "upstreamId": "31851|198007|572622", "text": "Arrhythmogenic right ventricular dysplasia/cardiomyopathy, type 10" }, { - "baseId": "31857|186568|198007|230865|404835|410357", + "upstreamId": "31857|186568|198007|230865|404835|410357", "text": "Dilated cardiomyopathy 1BB" }, { - "baseId": "31858|94243|94244|94245|94246|94247|94248|486662", + "upstreamId": "31858|94243|94244|94245|94246|94247|94248|486662", "text": "Palmoplantar keratoderma i, striate, focal, or diffuse" }, { - "baseId": "31859|31860|31861|31862|31863|31863|31864|31864|31865|31865|31866|31867|31868|31869|31870|31871|31872|31873|31873|31874|44665|44665|44666|44667|48317|48317|53409|53410|53410|53411|53412|53413|53414|53419|53419|53420|53421|53421|53422|53422|53423|53423|53423|53425|53425|53426|53427|53428|53429|53429|53430|53432|53432|53433|53433|53434|53435|53435|53437|53438|53438|53439|53440|53440|53441|53441|53442|71446|77284|77285|77286|77286|77290|77293|77294|77295|77299|77299|77305|77308|77309|77311|77316|77316|77320|77320|140780|173492|173494|173494|173630|173631|173631|173632|173633|173633|173735|178397|190384|190384|198108|198111|198112|198113|198114|198116|198121|198123|198124|198127|198128|198130|198130|198131|198132|198135|224252|228913|228914|228916|228917|228919|228920|228921|228922|228923|228924|238659|238660|238661|238662|238663|238664|238665|238666|258239|258242|258243|267704|267704|269244|269334|269574|270200|273357|274199|274251|284791|284792|284793|285474|285481|285482|287689|287699|287976|353560|366383|366437|366441|367018|367018|392363|392367|392368|392379|392391|392477|392479|392485|392488|392581|392592|392708|392712|392716|392719|392725|392729|405627|405629|405630|405631|405632|405634|443166|443167|450393|450395|450652|450654|450655|450663|450666|450677|450745|450750|450759|481123|486932|489161|489280|489771|490042|491451|491907|499542|499777|499780|500012|500018|513253|513411|517732|517741|517743|517835|517838|517839|517846|517847|517849|517853|538929|557886|557888|557890|557892|557941|557943|557945|557947|557949|558627|559127|559129|559131|560952|560960|560964|560984|587482|609183|614882|629488|629489|629490|629491|629492|629493|629494|629495|629496|629497|629498|629499|629500|629501|629502|629503|650939|655421|683487|733179|762954|762956|774706|781187|781188|790200|792962|802131|819126|819127|819128|825765|825766|825767|825768|825769|825770|825771|825772|825773|825774|825775|825776|825777|825778|825779|825780|825781|825782|825783|825784|825785|825786|825787|825788|850884|883802|883803|883804|883805|883806|883807|883808|883809|883810|883811|887277|918740|922584|922585|922586|922587|922588|922589|922590|931159|931160|931161|940696|940697|940698|942617|942618|942619|942620|942621|942622|942623|942624|942625|942626|952949|952950|952951", + "upstreamId": "31859|31860|31861|31862|31863|31863|31864|31864|31865|31865|31866|31867|31868|31869|31870|31871|31872|31873|31873|31874|44665|44665|44666|44667|48317|48317|53409|53410|53410|53411|53412|53413|53414|53419|53419|53420|53421|53421|53422|53422|53423|53423|53423|53425|53425|53426|53427|53428|53429|53429|53430|53432|53432|53433|53433|53434|53435|53435|53437|53438|53438|53439|53440|53440|53441|53441|53442|71446|77284|77285|77286|77286|77290|77293|77294|77295|77299|77299|77305|77308|77309|77311|77316|77316|77320|77320|140780|173492|173494|173494|173630|173631|173631|173632|173633|173633|173735|178397|190384|190384|198108|198111|198112|198113|198114|198116|198121|198123|198124|198127|198128|198130|198130|198131|198132|198135|224252|228913|228914|228916|228917|228919|228920|228921|228922|228923|228924|238659|238660|238661|238662|238663|238664|238665|238666|258239|258242|258243|267704|267704|269244|269334|269574|270200|273357|274199|274251|284791|284792|284793|285474|285481|285482|287689|287699|287976|353560|366383|366437|366441|367018|367018|392363|392367|392368|392379|392391|392477|392479|392485|392488|392581|392592|392708|392712|392716|392719|392725|392729|405627|405629|405630|405631|405632|405634|443166|443167|450393|450395|450652|450654|450655|450663|450666|450677|450745|450750|450759|481123|486932|489161|489280|489771|490042|491451|491907|499542|499777|499780|500012|500018|513253|513411|517732|517741|517743|517835|517838|517839|517846|517847|517849|517853|538929|557886|557888|557890|557892|557941|557943|557945|557947|557949|558627|559127|559129|559131|560952|560960|560964|560984|587482|609183|614882|629488|629489|629490|629491|629492|629493|629494|629495|629496|629497|629498|629499|629500|629501|629502|629503|650939|655421|683487|733179|762954|762956|774706|781187|781188|790200|792962|802131|819126|819127|819128|825765|825766|825767|825768|825769|825770|825771|825772|825773|825774|825775|825776|825777|825778|825779|825780|825781|825782|825783|825784|825785|825786|825787|825788|850884|883802|883803|883804|883805|883806|883807|883808|883809|883810|883811|887277|918740|922584|922585|922586|922587|922588|922589|922590|931159|931160|931161|940696|940697|940698|942617|942618|942619|942620|942621|942622|942623|942624|942625|942626|952949|952950|952951", "text": "Myofibrillar myopathy 1" }, { - "baseId": "31859|31863|44665|44666|44667|53409|53410|53411|53412|53419|53421|53422|53423|53423|53425|53429|53430|53432|53433|53438|53439|53440|53441|77320|173494|173631|190384|198108|267704|284791|284792|285474|285481|285482|287689|287699|287976|443167|481123|609294|883802|883803|883804|883805|883806|883807|883808|883809|883810|883811|887277", + "upstreamId": "31859|31863|44665|44666|44667|53409|53410|53411|53412|53419|53421|53422|53423|53423|53425|53429|53430|53432|53433|53438|53439|53440|53441|77320|173494|173631|190384|198108|267704|284791|284792|285474|285481|285482|287689|287699|287976|443167|481123|609294|883802|883803|883804|883805|883806|883807|883808|883809|883810|883811|887277", "text": "Dilated cardiomyopathy 1I" }, { - "baseId": "31863|31864|31865|31873|31874|44665|48317|53410|53411|53413|53414|53419|53420|53421|53422|53423|53423|53425|53426|53428|53429|53432|53433|53434|53435|53437|53438|53440|53441|53442|77284|77286|77290|77294|77295|77299|77305|77309|77311|77316|77320|140780|173492|173494|173630|173631|173633|173735|190384|198111|198112|198113|198114|198116|198121|198123|198124|198127|198128|198130|198131|198132|198135|224252|228913|228914|228916|228917|228919|228920|228921|228922|228923|228924|238659|238660|238661|238662|238663|238664|238665|238666|258239|258242|258243|267704|269244|269334|269574|270200|273357|274199|274251|366383|366437|366441|367018|392363|392367|392368|392379|392391|392479|392485|392488|392581|392592|392708|392712|392716|392719|392725|392729|405627|405629|405630|405631|405632|405634|443166|450393|450395|450652|450654|450655|450663|450666|450677|450745|450750|450759|481123|486932|489161|489280|489771|490042|491451|491907|499542|499777|499780|500012|500018|517732|517741|517743|517835|517838|517839|517846|517847|517849|517853|557886|557888|557890|557892|557941|557943|557945|557947|557949|558627|559127|559129|559131|560952|560960|560964|560984|587482|614882|629488|629489|629490|629491|629492|629493|629494|629495|629496|629497|629498|629499|629500|629501|629502|629503|650939|655421|683487|733179|762954|762956|774706|781187|781188|792962|819126|819127|819128|825765|825766|825767|825768|825769|825770|825771|825772|825773|825774|825775|825776|825777|825778|825779|825780|825781|825782|825783|825784|825785|825786|825787|825788|850884|922584|922585|922586|922587|922588|922589|922590|931159|931160|931161|940696|940697|940698|942617|942618|942619|942620|942621|942622|942623|942624|942625|942626|952949|952950|952951", + "upstreamId": "31863|31864|31865|31873|31874|44665|48317|53410|53411|53413|53414|53419|53420|53421|53422|53423|53423|53425|53426|53428|53429|53432|53433|53434|53435|53437|53438|53440|53441|53442|77284|77286|77290|77294|77295|77299|77305|77309|77311|77316|77320|140780|173492|173494|173630|173631|173633|173735|190384|198111|198112|198113|198114|198116|198121|198123|198124|198127|198128|198130|198131|198132|198135|224252|228913|228914|228916|228917|228919|228920|228921|228922|228923|228924|238659|238660|238661|238662|238663|238664|238665|238666|258239|258242|258243|267704|269244|269334|269574|270200|273357|274199|274251|366383|366437|366441|367018|392363|392367|392368|392379|392391|392479|392485|392488|392581|392592|392708|392712|392716|392719|392725|392729|405627|405629|405630|405631|405632|405634|443166|450393|450395|450652|450654|450655|450663|450666|450677|450745|450750|450759|481123|486932|489161|489280|489771|490042|491451|491907|499542|499777|499780|500012|500018|517732|517741|517743|517835|517838|517839|517846|517847|517849|517853|557886|557888|557890|557892|557941|557943|557945|557947|557949|558627|559127|559129|559131|560952|560960|560964|560984|587482|614882|629488|629489|629490|629491|629492|629493|629494|629495|629496|629497|629498|629499|629500|629501|629502|629503|650939|655421|683487|733179|762954|762956|774706|781187|781188|792962|819126|819127|819128|825765|825766|825767|825768|825769|825770|825771|825772|825773|825774|825775|825776|825777|825778|825779|825780|825781|825782|825783|825784|825785|825786|825787|825788|850884|922584|922585|922586|922587|922588|922589|922590|931159|931160|931161|940696|940697|940698|942617|942618|942619|942620|942621|942622|942623|942624|942625|942626|952949|952950|952951", "text": "Muscular dystrophy, limb-girdle, type 2R" }, { - "baseId": "31863|31874|44665|44666|44667|53409|53410|53412|53419|53421|53422|53423|53423|53425|53429|53430|53432|53433|53438|53439|53441|77320|173494|173631|190384|198108|267704|284791|284792|285474|285481|285482|287689|287699|287976|443167|883802|883803|883804|883805|883806|883807|883808|883809|883810|883811|887277", + "upstreamId": "31863|31874|44665|44666|44667|53409|53410|53412|53419|53421|53422|53423|53423|53425|53429|53430|53432|53433|53438|53439|53441|77320|173494|173631|190384|198108|267704|284791|284792|285474|285481|285482|287689|287699|287976|443167|883802|883803|883804|883805|883806|883807|883808|883809|883810|883811|887277", "text": "Neurogenic scapuloperoneal syndrome, Kaeser type" }, { - "baseId": "31875|31885|54106|173844|197036|444013|679437|919059|919060|919061", + "upstreamId": "31875|31885|54106|173844|197036|444013|679437|919059|919060|919061", "text": "Keratosis palmoplantaris striata II" }, { - "baseId": "31876|31876|31882|31883|31884|31885|44680|44683|44684|44685|44686|44689|44690|54017|54017|54018|54021|54023|54025|54027|54028|54031|54034|54036|54038|54040|54041|54042|54043|54045|54046|54048|54049|54052|54054|54057|54058|54060|54061|54062|54064|54065|54066|54067|54073|54074|54075|54077|54078|54079|54080|54081|54083|54084|54085|54086|54088|54089|54091|54093|54096|54098|54101|54102|54103|54105|54107|54108|54109|54110|54112|54113|54116|54117|54118|54120|54122|54123|54124|54127|54128|54129|54130|54134|54135|54136|54137|54138|54142|54143|54147|54148|54149|75137|140871|140873|140874|140875|140876|153685|165540|167522|171102|171103|171104|171104|171105|172173|173844|173849|173850|173853|173855|173858|173858|173989|173990|173991|173995|173996|173997|173998|174000|174005|174008|174134|174135|174136|174137|174142|174142|174143|174144|174145|174381|174382|174383|174384|174385|174520|174522|178549|178551|178552|178553|178554|178559|178560|178563|178566|178571|186326|186329|186332|186333|186334|186335|186336|186339|186340|189824|189825|189827|189829|189830|189832|189834|195967|197017|197020|197025|197027|197032|197033|197034|197036|197037|197039|197041|197045|197046|197050|197051|197052|197053|197057|197059|197064|197066|197067|197069|197070|197071|197073|197075|197076|197077|197078|197079|197080|197081|197083|197084|197086|197087|197088|197091|197092|197093|197096|197097|197098|197102|197105|197106|197108|197109|197110|197111|197115|197120|197122|197123|197126|215346|215348|215349|224318|224321|224324|224325|224329|224330|224332|224336|224337|229491|229493|229494|229495|229496|229499|229502|229503|229511|229514|229517|229519|229520|236835|245263|245264|245265|245266|245268|245269|245270|245271|245272|245273|245275|245278|245279|245281|245282|245283|252535|258442|258446|258450|258452|258456|258457|258458|258461|259846|259847|259848|260532|266210|301044|301049|301063|304029|304031|304035|308732|308733|308741|308743|308745|308746|308748|308803|359753|359754|368723|368725|368732|368743|368747|368749|368759|369038|369039|369045|369053|369075|369185|369208|369212|369221|369223|369239|369257|369263|370548|370550|370578|370583|395210|395213|395216|395223|395224|395231|395235|395430|395431|395433|395441|395447|395451|395456|395460|395466|395492|395493|395498|395499|395571|395574|395582|395583|395585|395591|395592|395858|395875|395877|395881|395889|395891|395893|395894|406905|406909|406917|406920|406921|406924|406926|406927|406928|415067|419272|421600|425706|425708|425709|444001|444002|444003|444004|444006|444012|444013|455811|455812|455813|455823|455826|455827|455831|455837|455839|455841|455843|455848|455857|455996|456001|456012|456014|456015|456023|456028|456034|456037|456069|456072|456081|456085|456093|456394|456399|456404|456406|456407|456411|456425|456432|456436|456754|456758|456761|456762|456763|456769|456773|456777|456790|456801|456803|481771|481772|487089|487093|487159|487204|487212|487215|487217|496869|501477|501697|509802|509803|509809|509819|509820|509821|509826|509833|509837|509839|511085|511086|521809|521819|521821|521827|521829|521834|521836|521840|521849|521852|521855|521862|522173|522174|522179|522180|522181|522184|522185|522186|522187|522188|522192|522195|522198|522199|522201|522202|522207|522209|522211|522213|522216|522217|522227|522232|522233|522236|522238|522239|522245|522247|522559|522561|522566|522567|522569|522571|522573|522584|522591|522595|522600|522602|522604|522606|522607|522609|522611|522614|536319|560954|560956|560957|560958|560962|560965|560971|560973|560974|560975|560981|560988|560994|560996|560998|561000|561009|561011|561013|561017|561018|561019|561043|561055|561061|561065|561073|561075|561077|561081|561084|561089|561091|561092|561095|561097|561100|561101|561107|561108|561118|561120|563763|563768|563770|563775|563777|563778|563786|563796|563797|563799|563803|563805|563807|563809|563813|563814|563819|563820|565255|565959|565960|565961|565965|565977|565978|565982|565988|565989|565997|565999|566005|566008|566013|566018|566021|566038|566041|609632|614926|614930|614936|614937|614941|614945|614946|617296|617303|617304|617305|617323|617326|617332|635243|635244|635245|635246|635247|635248|635249|635250|635251|635252|635253|635254|635255|635256|635257|635258|635259|635260|635261|635262|635263|635264|635265|635266|635267|635268|635269|635270|635271|635272|635273|635274|635275|635276|635277|635278|635279|635280|635281|635282|635283|635284|635285|635286|635287|635288|635289|635290|635291|635292|635293|635294|635295|635296|635297|635298|635299|635300|635301|635302|635303|635304|635305|635306|635307|651597|651604|651637|679438|679439|686909|686910|686912|686915|686916|686917|689839|692061|692063|695330|699673|722146|735777|750228|750232|759492|759614|765850|765851|765853|765860|782660|782661|782662|790658|795907|805512|819750|832443|832444|832445|832446|832447|832448|832449|832450|832451|832452|832453|832454|832455|832456|832457|832458|832459|832460|832461|832462|832463|832464|832465|832466|832467|832468|832469|832470|832471|832472|832473|832474|832475|832476|832477|832478|832479|832480|832481|832482|832483|832484|832485|832486|832487|832488|832489|832490|832491|832492|832493|832494|832495|832496|832497|832498|832499|832500|832501|832502|832503|832504|832505|832506|832507|832508|832509|832510|832511|832512|832513|832514|832515|832516|832517|832518|832519|832520|832521|832522|832523|832524|832525|832526|832527|852032|852034|852036|852300|910186|910202|910210|910236|910290|910307|910378|910404|910500|910502|910517|910521|910523|910538|910554|910555|910582|910597|910611|910657|915853|916130|916139|924490|924491|924492|924493|924494|924495|924496|924497|924498|924499|924500|924501|924502|924503|924504|924505|924506|924507|924508|924509|924510|924511|924512|933488|933489|933490|933491|933492|933493|933494|933495|933496|933497|933498|933499|933500|933501|933502|933503|933504|933505|940049|940050|940862|945205|945206|945207|945208|945209|945210|945211|945212|945213|945214|945215|945216|945217|945218|945219|945220|945221|945222|945223|945224|945225|945226|945227|945228|945229|945230|954898|954899|954900|954901|954902|954903|954904|954905|954906|954907|954908|959817|960612", + "upstreamId": "31876|31876|31882|31883|31884|31885|44680|44683|44684|44685|44686|44689|44690|54017|54017|54018|54021|54023|54025|54027|54028|54031|54034|54036|54038|54040|54041|54042|54043|54045|54046|54048|54049|54052|54054|54057|54058|54060|54061|54062|54064|54065|54066|54067|54073|54074|54075|54077|54078|54079|54080|54081|54083|54084|54085|54086|54088|54089|54091|54093|54096|54098|54101|54102|54103|54105|54107|54108|54109|54110|54112|54113|54116|54117|54118|54120|54122|54123|54124|54127|54128|54129|54130|54134|54135|54136|54137|54138|54142|54143|54147|54148|54149|75137|140871|140873|140874|140875|140876|153685|165540|167522|171102|171103|171104|171104|171105|172173|173844|173849|173850|173853|173855|173858|173858|173989|173990|173991|173995|173996|173997|173998|174000|174005|174008|174134|174135|174136|174137|174142|174142|174143|174144|174145|174381|174382|174383|174384|174385|174520|174522|178549|178551|178552|178553|178554|178559|178560|178563|178566|178571|186326|186329|186332|186333|186334|186335|186336|186339|186340|189824|189825|189827|189829|189830|189832|189834|195967|197017|197020|197025|197027|197032|197033|197034|197036|197037|197039|197041|197045|197046|197050|197051|197052|197053|197057|197059|197064|197066|197067|197069|197070|197071|197073|197075|197076|197077|197078|197079|197080|197081|197083|197084|197086|197087|197088|197091|197092|197093|197096|197097|197098|197102|197105|197106|197108|197109|197110|197111|197115|197120|197122|197123|197126|215346|215348|215349|224318|224321|224324|224325|224329|224330|224332|224336|224337|229491|229493|229494|229495|229496|229499|229502|229503|229511|229514|229517|229519|229520|236835|245263|245264|245265|245266|245268|245269|245270|245271|245272|245273|245275|245278|245279|245281|245282|245283|252535|258442|258446|258450|258452|258456|258457|258458|258461|259846|259847|259848|260532|266210|301044|301049|301063|304029|304031|304035|308732|308733|308741|308743|308745|308746|308748|308803|359753|359754|368723|368725|368732|368743|368747|368749|368759|369038|369039|369045|369053|369075|369185|369208|369212|369221|369223|369239|369257|369263|370548|370550|370578|370583|395210|395213|395216|395223|395224|395231|395235|395430|395431|395433|395441|395447|395451|395456|395460|395466|395492|395493|395498|395499|395571|395574|395582|395583|395585|395591|395592|395858|395875|395877|395881|395889|395891|395893|395894|406905|406909|406917|406920|406921|406924|406926|406927|406928|415067|419272|421600|425706|425708|425709|444001|444002|444003|444004|444006|444012|444013|455811|455812|455813|455823|455826|455827|455831|455837|455839|455841|455843|455848|455857|455996|456001|456012|456014|456015|456023|456028|456034|456037|456069|456072|456081|456085|456093|456394|456399|456404|456406|456407|456411|456425|456432|456436|456754|456758|456761|456762|456763|456769|456773|456777|456790|456801|456803|481771|481772|487089|487093|487159|487204|487212|487215|487217|496869|501477|501697|509802|509803|509809|509819|509820|509821|509826|509833|509837|509839|511085|511086|521809|521819|521821|521827|521829|521834|521836|521840|521849|521852|521855|521862|522173|522174|522179|522180|522181|522184|522185|522186|522187|522188|522192|522195|522198|522199|522201|522202|522207|522209|522211|522213|522216|522217|522227|522232|522233|522236|522238|522239|522245|522247|522559|522561|522566|522567|522569|522571|522573|522584|522591|522595|522600|522602|522604|522606|522607|522609|522611|522614|536319|560954|560956|560957|560958|560962|560965|560971|560973|560974|560975|560981|560988|560994|560996|560998|561000|561009|561011|561013|561017|561018|561019|561043|561055|561061|561065|561073|561075|561077|561081|561084|561089|561091|561092|561095|561097|561100|561101|561107|561108|561118|561120|563763|563768|563770|563775|563777|563778|563786|563796|563797|563799|563803|563805|563807|563809|563813|563814|563819|563820|565255|565959|565960|565961|565965|565977|565978|565982|565988|565989|565997|565999|566005|566008|566013|566018|566021|566038|566041|609632|614926|614930|614936|614937|614941|614945|614946|617296|617303|617304|617305|617323|617326|617332|635243|635244|635245|635246|635247|635248|635249|635250|635251|635252|635253|635254|635255|635256|635257|635258|635259|635260|635261|635262|635263|635264|635265|635266|635267|635268|635269|635270|635271|635272|635273|635274|635275|635276|635277|635278|635279|635280|635281|635282|635283|635284|635285|635286|635287|635288|635289|635290|635291|635292|635293|635294|635295|635296|635297|635298|635299|635300|635301|635302|635303|635304|635305|635306|635307|651597|651604|651637|679438|679439|686909|686910|686912|686915|686916|686917|689839|692061|692063|695330|699673|722146|735777|750228|750232|759492|759614|765850|765851|765853|765860|782660|782661|782662|790658|795907|805512|819750|832443|832444|832445|832446|832447|832448|832449|832450|832451|832452|832453|832454|832455|832456|832457|832458|832459|832460|832461|832462|832463|832464|832465|832466|832467|832468|832469|832470|832471|832472|832473|832474|832475|832476|832477|832478|832479|832480|832481|832482|832483|832484|832485|832486|832487|832488|832489|832490|832491|832492|832493|832494|832495|832496|832497|832498|832499|832500|832501|832502|832503|832504|832505|832506|832507|832508|832509|832510|832511|832512|832513|832514|832515|832516|832517|832518|832519|832520|832521|832522|832523|832524|832525|832526|832527|852032|852034|852036|852300|910186|910202|910210|910236|910290|910307|910378|910404|910500|910502|910517|910521|910523|910538|910554|910555|910582|910597|910611|910657|915853|916130|916139|924490|924491|924492|924493|924494|924495|924496|924497|924498|924499|924500|924501|924502|924503|924504|924505|924506|924507|924508|924509|924510|924511|924512|933488|933489|933490|933491|933492|933493|933494|933495|933496|933497|933498|933499|933500|933501|933502|933503|933504|933505|940049|940050|940862|945205|945206|945207|945208|945209|945210|945211|945212|945213|945214|945215|945216|945217|945218|945219|945220|945221|945222|945223|945224|945225|945226|945227|945228|945229|945230|954898|954899|954900|954901|954902|954903|954904|954905|954906|954907|954908|959817|960612", "text": "Dilated cardiomyopathy with woolly hair and keratoderma" }, { - "baseId": "31876|31877|31882|31883|31885|31885|31886|44679|44680|44680|44683|44683|44684|44684|44685|44685|44686|44689|44689|44690|44690|54017|54017|54018|54021|54022|54023|54025|54025|54027|54027|54028|54028|54030|54031|54034|54034|54036|54038|54040|54040|54041|54041|54042|54042|54043|54044|54045|54046|54046|54048|54048|54049|54052|54053|54054|54057|54057|54058|54060|54060|54061|54062|54064|54064|54065|54066|54066|54067|54067|54073|54073|54074|54074|54075|54075|54077|54078|54079|54080|54081|54082|54083|54084|54084|54085|54086|54086|54088|54089|54091|54091|54092|54093|54093|54096|54096|54098|54101|54102|54103|54103|54105|54105|54107|54108|54108|54109|54110|54110|54112|54112|54113|54114|54116|54117|54117|54118|54120|54120|54122|54123|54124|54124|54127|54128|54128|54129|54130|54134|54135|54135|54136|54136|54137|54138|54138|54142|54143|54147|54147|54148|54149|54149|140871|140871|140873|140874|140874|140875|140876|140876|153685|165540|171102|171102|171103|171103|171104|171104|172173|173844|173844|173849|173850|173850|173853|173853|173855|173855|173858|173858|173989|173989|173990|173991|173995|173996|173996|173997|173998|174000|174000|174002|174005|174008|174009|174134|174135|174136|174136|174137|174142|174142|174143|174143|174144|174145|174381|174382|174382|174383|174383|174384|174385|174520|174520|174522|178549|178551|178552|178553|178554|178559|178559|178560|178563|178566|178566|178571|186326|186329|186332|186332|186333|186334|186335|186336|186339|186339|186340|186340|189824|189825|189827|189827|189829|189830|189831|189832|189834|189834|197017|197020|197025|197027|197032|197033|197034|197036|197037|197039|197039|197041|197041|197045|197046|197050|197051|197052|197053|197056|197057|197057|197059|197064|197066|197067|197069|197070|197071|197073|197075|197076|197077|197078|197079|197080|197081|197083|197084|197086|197087|197088|197091|197092|197093|197095|197096|197097|197098|197102|197105|197106|197108|197109|197109|197110|197111|197115|197120|197122|197123|197126|199787|215346|215348|215349|224318|224321|224324|224325|224329|224330|224330|224332|224336|224337|229491|229491|229493|229494|229495|229496|229496|229499|229501|229502|229503|229511|229514|229517|229517|229519|229520|236835|245263|245264|245265|245266|245268|245269|245270|245271|245272|245273|245275|245278|245279|245281|245281|245282|245283|252535|258442|258446|258450|258452|258456|258457|258458|258461|259846|259847|259848|260532|266210|301042|301044|301044|301049|301049|301057|301063|301065|301066|304009|304013|304014|304029|304031|304031|304035|304035|304037|304040|304041|304042|304043|308732|308732|308733|308733|308740|308741|308741|308743|308743|308744|308745|308745|308746|308746|308748|308748|308764|308765|308773|308775|308795|308800|308803|308803|308804|308807|308814|308817|308818|308821|359753|359754|361863|368723|368725|368732|368743|368747|368749|368759|369038|369039|369045|369053|369075|369185|369208|369212|369221|369223|369239|369257|369263|370548|370550|370578|370583|395210|395213|395213|395216|395223|395224|395231|395235|395430|395431|395433|395441|395444|395447|395451|395456|395460|395466|395471|395472|395492|395493|395498|395499|395571|395574|395577|395582|395583|395585|395591|395592|395858|395867|395875|395877|395881|395889|395891|395893|395894|406905|406909|406917|406920|406921|406924|406926|406927|406928|415067|419272|421600|425706|425708|425709|425709|439878|444001|444002|444003|444004|444006|444012|444013|444013|455811|455812|455813|455823|455826|455827|455827|455831|455835|455837|455839|455841|455843|455848|455857|455996|456001|456009|456012|456014|456015|456023|456028|456034|456037|456059|456063|456069|456072|456081|456085|456093|456394|456399|456404|456406|456407|456411|456423|456425|456432|456436|456754|456758|456761|456762|456763|456769|456773|456777|456790|456801|456803|481771|481772|487089|487093|487159|487204|487212|487215|487217|496869|501465|501477|501697|509802|509803|509809|509819|509820|509820|509821|509824|509826|509833|509837|509839|511085|511086|521809|521819|521821|521827|521829|521834|521836|521840|521849|521852|521855|521862|522173|522174|522179|522180|522181|522184|522185|522186|522187|522188|522192|522192|522195|522195|522198|522199|522201|522202|522207|522209|522211|522213|522216|522217|522227|522232|522233|522236|522238|522238|522239|522245|522247|522559|522561|522566|522567|522567|522569|522571|522573|522584|522591|522595|522600|522602|522604|522606|522607|522609|522611|522614|536319|560954|560956|560957|560958|560962|560965|560971|560973|560974|560975|560981|560988|560994|560996|560998|561000|561009|561011|561013|561017|561018|561019|561043|561055|561061|561065|561073|561075|561077|561081|561084|561089|561091|561092|561092|561095|561097|561100|561101|561107|561108|561118|561120|563763|563768|563770|563775|563777|563778|563786|563796|563797|563799|563799|563803|563805|563805|563807|563809|563813|563814|563819|563820|565255|565959|565960|565961|565965|565977|565978|565982|565988|565989|565989|565997|565999|566005|566008|566008|566013|566018|566021|566021|566038|566041|609632|614926|614930|614936|614937|614941|614945|614946|614946|617296|617303|617304|617305|617313|617323|617326|617332|617332|635243|635244|635245|635246|635247|635248|635249|635250|635251|635252|635253|635254|635255|635256|635257|635258|635259|635260|635261|635262|635263|635264|635265|635266|635267|635268|635269|635270|635271|635272|635273|635274|635275|635276|635277|635277|635278|635279|635280|635281|635282|635283|635284|635285|635286|635287|635288|635289|635290|635291|635292|635293|635294|635295|635296|635297|635298|635299|635300|635301|635302|635303|635304|635305|635306|635307|651597|651604|651637|679438|679438|679439|679753|686909|686910|686912|686915|686916|686917|689839|692061|692061|692063|695330|699673|722146|735777|750228|750232|759492|759614|765850|765851|765853|765860|782660|782661|782662|795907|805512|819750|832443|832444|832445|832446|832447|832448|832448|832449|832450|832451|832452|832453|832454|832455|832456|832457|832458|832459|832460|832461|832462|832463|832464|832465|832466|832467|832468|832469|832470|832471|832472|832473|832474|832475|832476|832477|832478|832479|832480|832481|832482|832483|832484|832485|832486|832487|832488|832489|832490|832491|832492|832493|832494|832495|832496|832497|832498|832499|832500|832501|832502|832503|832504|832505|832506|832507|832508|832509|832510|832511|832512|832513|832514|832515|832516|832517|832518|832519|832520|832521|832522|832523|832524|832525|832526|832527|852032|852034|852036|852300|896845|896846|896847|896848|896849|896850|896851|896852|896853|896854|896855|896858|896862|896864|896869|896870|896871|896872|896873|896874|896875|900268|900269|900271|910186|910202|910210|910233|910236|910290|910307|910378|910404|910495|910500|910502|910517|910521|910523|910538|910554|910555|910582|910597|910611|910657|915853|916130|916139|924490|924491|924492|924493|924494|924495|924496|924497|924498|924499|924500|924501|924502|924503|924504|924505|924506|924507|924508|924509|924510|924511|924512|933488|933489|933490|933491|933492|933493|933494|933495|933496|933497|933498|933499|933500|933501|933502|933503|933504|933505|940049|940050|940862|945205|945206|945207|945208|945209|945210|945211|945212|945213|945214|945215|945216|945217|945218|945219|945220|945221|945222|945223|945224|945225|945226|945227|945228|945229|945230|954898|954899|954900|954901|954902|954903|954904|954905|954906|954907|954908|959817|960612|967181|967182|969605|970839|973025", + "upstreamId": "31876|31877|31882|31883|31885|31885|31886|44679|44680|44680|44683|44683|44684|44684|44685|44685|44686|44689|44689|44690|44690|54017|54017|54018|54021|54022|54023|54025|54025|54027|54027|54028|54028|54030|54031|54034|54034|54036|54038|54040|54040|54041|54041|54042|54042|54043|54044|54045|54046|54046|54048|54048|54049|54052|54053|54054|54057|54057|54058|54060|54060|54061|54062|54064|54064|54065|54066|54066|54067|54067|54073|54073|54074|54074|54075|54075|54077|54078|54079|54080|54081|54082|54083|54084|54084|54085|54086|54086|54088|54089|54091|54091|54092|54093|54093|54096|54096|54098|54101|54102|54103|54103|54105|54105|54107|54108|54108|54109|54110|54110|54112|54112|54113|54114|54116|54117|54117|54118|54120|54120|54122|54123|54124|54124|54127|54128|54128|54129|54130|54134|54135|54135|54136|54136|54137|54138|54138|54142|54143|54147|54147|54148|54149|54149|140871|140871|140873|140874|140874|140875|140876|140876|153685|165540|171102|171102|171103|171103|171104|171104|172173|173844|173844|173849|173850|173850|173853|173853|173855|173855|173858|173858|173989|173989|173990|173991|173995|173996|173996|173997|173998|174000|174000|174002|174005|174008|174009|174134|174135|174136|174136|174137|174142|174142|174143|174143|174144|174145|174381|174382|174382|174383|174383|174384|174385|174520|174520|174522|178549|178551|178552|178553|178554|178559|178559|178560|178563|178566|178566|178571|186326|186329|186332|186332|186333|186334|186335|186336|186339|186339|186340|186340|189824|189825|189827|189827|189829|189830|189831|189832|189834|189834|197017|197020|197025|197027|197032|197033|197034|197036|197037|197039|197039|197041|197041|197045|197046|197050|197051|197052|197053|197056|197057|197057|197059|197064|197066|197067|197069|197070|197071|197073|197075|197076|197077|197078|197079|197080|197081|197083|197084|197086|197087|197088|197091|197092|197093|197095|197096|197097|197098|197102|197105|197106|197108|197109|197109|197110|197111|197115|197120|197122|197123|197126|199787|215346|215348|215349|224318|224321|224324|224325|224329|224330|224330|224332|224336|224337|229491|229491|229493|229494|229495|229496|229496|229499|229501|229502|229503|229511|229514|229517|229517|229519|229520|236835|245263|245264|245265|245266|245268|245269|245270|245271|245272|245273|245275|245278|245279|245281|245281|245282|245283|252535|258442|258446|258450|258452|258456|258457|258458|258461|259846|259847|259848|260532|266210|301042|301044|301044|301049|301049|301057|301063|301065|301066|304009|304013|304014|304029|304031|304031|304035|304035|304037|304040|304041|304042|304043|308732|308732|308733|308733|308740|308741|308741|308743|308743|308744|308745|308745|308746|308746|308748|308748|308764|308765|308773|308775|308795|308800|308803|308803|308804|308807|308814|308817|308818|308821|359753|359754|361863|368723|368725|368732|368743|368747|368749|368759|369038|369039|369045|369053|369075|369185|369208|369212|369221|369223|369239|369257|369263|370548|370550|370578|370583|395210|395213|395213|395216|395223|395224|395231|395235|395430|395431|395433|395441|395444|395447|395451|395456|395460|395466|395471|395472|395492|395493|395498|395499|395571|395574|395577|395582|395583|395585|395591|395592|395858|395867|395875|395877|395881|395889|395891|395893|395894|406905|406909|406917|406920|406921|406924|406926|406927|406928|415067|419272|421600|425706|425708|425709|425709|439878|444001|444002|444003|444004|444006|444012|444013|444013|455811|455812|455813|455823|455826|455827|455827|455831|455835|455837|455839|455841|455843|455848|455857|455996|456001|456009|456012|456014|456015|456023|456028|456034|456037|456059|456063|456069|456072|456081|456085|456093|456394|456399|456404|456406|456407|456411|456423|456425|456432|456436|456754|456758|456761|456762|456763|456769|456773|456777|456790|456801|456803|481771|481772|487089|487093|487159|487204|487212|487215|487217|496869|501465|501477|501697|509802|509803|509809|509819|509820|509820|509821|509824|509826|509833|509837|509839|511085|511086|521809|521819|521821|521827|521829|521834|521836|521840|521849|521852|521855|521862|522173|522174|522179|522180|522181|522184|522185|522186|522187|522188|522192|522192|522195|522195|522198|522199|522201|522202|522207|522209|522211|522213|522216|522217|522227|522232|522233|522236|522238|522238|522239|522245|522247|522559|522561|522566|522567|522567|522569|522571|522573|522584|522591|522595|522600|522602|522604|522606|522607|522609|522611|522614|536319|560954|560956|560957|560958|560962|560965|560971|560973|560974|560975|560981|560988|560994|560996|560998|561000|561009|561011|561013|561017|561018|561019|561043|561055|561061|561065|561073|561075|561077|561081|561084|561089|561091|561092|561092|561095|561097|561100|561101|561107|561108|561118|561120|563763|563768|563770|563775|563777|563778|563786|563796|563797|563799|563799|563803|563805|563805|563807|563809|563813|563814|563819|563820|565255|565959|565960|565961|565965|565977|565978|565982|565988|565989|565989|565997|565999|566005|566008|566008|566013|566018|566021|566021|566038|566041|609632|614926|614930|614936|614937|614941|614945|614946|614946|617296|617303|617304|617305|617313|617323|617326|617332|617332|635243|635244|635245|635246|635247|635248|635249|635250|635251|635252|635253|635254|635255|635256|635257|635258|635259|635260|635261|635262|635263|635264|635265|635266|635267|635268|635269|635270|635271|635272|635273|635274|635275|635276|635277|635277|635278|635279|635280|635281|635282|635283|635284|635285|635286|635287|635288|635289|635290|635291|635292|635293|635294|635295|635296|635297|635298|635299|635300|635301|635302|635303|635304|635305|635306|635307|651597|651604|651637|679438|679438|679439|679753|686909|686910|686912|686915|686916|686917|689839|692061|692061|692063|695330|699673|722146|735777|750228|750232|759492|759614|765850|765851|765853|765860|782660|782661|782662|795907|805512|819750|832443|832444|832445|832446|832447|832448|832448|832449|832450|832451|832452|832453|832454|832455|832456|832457|832458|832459|832460|832461|832462|832463|832464|832465|832466|832467|832468|832469|832470|832471|832472|832473|832474|832475|832476|832477|832478|832479|832480|832481|832482|832483|832484|832485|832486|832487|832488|832489|832490|832491|832492|832493|832494|832495|832496|832497|832498|832499|832500|832501|832502|832503|832504|832505|832506|832507|832508|832509|832510|832511|832512|832513|832514|832515|832516|832517|832518|832519|832520|832521|832522|832523|832524|832525|832526|832527|852032|852034|852036|852300|896845|896846|896847|896848|896849|896850|896851|896852|896853|896854|896855|896858|896862|896864|896869|896870|896871|896872|896873|896874|896875|900268|900269|900271|910186|910202|910210|910233|910236|910290|910307|910378|910404|910495|910500|910502|910517|910521|910523|910538|910554|910555|910582|910597|910611|910657|915853|916130|916139|924490|924491|924492|924493|924494|924495|924496|924497|924498|924499|924500|924501|924502|924503|924504|924505|924506|924507|924508|924509|924510|924511|924512|933488|933489|933490|933491|933492|933493|933494|933495|933496|933497|933498|933499|933500|933501|933502|933503|933504|933505|940049|940050|940862|945205|945206|945207|945208|945209|945210|945211|945212|945213|945214|945215|945216|945217|945218|945219|945220|945221|945222|945223|945224|945225|945226|945227|945228|945229|945230|954898|954899|954900|954901|954902|954903|954904|954905|954906|954907|954908|959817|960612|967181|967182|969605|970839|973025", "text": "Arrhythmogenic right ventricular dysplasia 8" }, { - "baseId": "31878|31879|31880|31881|31885|38627|44679|44680|44683|44684|44685|44689|44690|54017|54022|54025|54027|54028|54030|54034|54040|54041|54042|54043|54044|54045|54046|54048|54053|54057|54060|54064|54066|54067|54073|54074|54075|54082|54084|54086|54091|54092|54093|54096|54103|54105|54108|54110|54114|54117|54120|54124|54128|54130|54134|54135|54136|54138|54147|54149|140871|140874|140875|140876|171102|171104|173850|173853|173855|173989|173996|173997|174000|174002|174009|174135|174136|174142|174143|174382|174383|174520|178559|178566|186332|186339|186340|189827|189831|189834|197039|197041|197056|197057|197095|197109|224330|229489|229491|229496|229501|229517|245264|245281|258459|301040|301042|301044|301049|301057|301063|301065|301066|301069|301070|304009|304010|304013|304014|304029|304031|304032|304033|304034|304035|304037|304040|304041|304042|304043|304045|308731|308732|308733|308740|308741|308743|308744|308745|308746|308748|308764|308765|308773|308774|308775|308785|308786|308795|308800|308803|308804|308807|308814|308817|308818|308821|308822|308823|308824|353797|395213|444013|455827|501465|509820|522192|522195|522238|561092|563799|565989|614946|617313|617332|679438|692061|896845|896846|896847|896848|896849|896850|896851|896852|896853|896854|896855|896858|896862|896864|896869|896870|896871|896872|896873|896874|896875|900268|900269|900271", + "upstreamId": "31878|31879|31880|31881|31885|38627|44679|44680|44683|44684|44685|44689|44690|54017|54022|54025|54027|54028|54030|54034|54040|54041|54042|54043|54044|54045|54046|54048|54053|54057|54060|54064|54066|54067|54073|54074|54075|54082|54084|54086|54091|54092|54093|54096|54103|54105|54108|54110|54114|54117|54120|54124|54128|54130|54134|54135|54136|54138|54147|54149|140871|140874|140875|140876|171102|171104|173850|173853|173855|173989|173996|173997|174000|174002|174009|174135|174136|174142|174143|174382|174383|174520|178559|178566|186332|186339|186340|189827|189831|189834|197039|197041|197056|197057|197095|197109|224330|229489|229491|229496|229501|229517|245264|245281|258459|301040|301042|301044|301049|301057|301063|301065|301066|301069|301070|304009|304010|304013|304014|304029|304031|304032|304033|304034|304035|304037|304040|304041|304042|304043|304045|308731|308732|308733|308740|308741|308743|308744|308745|308746|308748|308764|308765|308773|308774|308775|308785|308786|308795|308800|308803|308804|308807|308814|308817|308818|308821|308822|308823|308824|353797|395213|444013|455827|501465|509820|522192|522195|522238|561092|563799|565989|614946|617313|617332|679438|692061|896845|896846|896847|896848|896849|896850|896851|896852|896853|896854|896855|896858|896862|896864|896869|896870|896871|896872|896873|896874|896875|900268|900269|900271", "text": "Skin fragility-woolly hair-palmoplantar keratoderma syndrome" }, { - "baseId": "31882|31883|31885|44679|44680|44683|44684|44685|44689|44690|54017|54022|54025|54027|54028|54030|54034|54040|54041|54042|54043|54044|54045|54046|54048|54053|54057|54060|54064|54066|54067|54073|54074|54075|54082|54084|54086|54091|54092|54093|54096|54103|54105|54108|54110|54114|54117|54120|54124|54128|54130|54134|54135|54136|54138|54147|54149|140871|140874|140875|140876|171102|171104|173850|173853|173855|173989|173996|173997|174000|174002|174009|174135|174136|174142|174143|174382|174383|174520|178363|178364|178559|178566|186332|186339|186340|189827|189831|189834|197039|197041|197056|197057|197095|197109|224330|229489|229491|229496|229501|229517|245264|245281|258459|301040|301042|301044|301049|301057|301063|301065|301066|301069|301070|304009|304010|304013|304014|304029|304031|304032|304033|304034|304035|304037|304040|304041|304042|304043|304045|308731|308732|308733|308740|308741|308743|308744|308745|308746|308748|308764|308765|308773|308774|308775|308785|308786|308795|308800|308803|308804|308807|308814|308817|308818|308821|308822|308823|308824|353797|395213|444013|455827|501465|509820|522192|522195|522238|561092|563799|565989|614946|617313|617332|679438|692061|896845|896846|896847|896848|896849|896850|896851|896852|896853|896854|896855|896858|896862|896864|896869|896870|896871|896872|896873|896874|896875|900268|900269|900271", + "upstreamId": "31882|31883|31885|44679|44680|44683|44684|44685|44689|44690|54017|54022|54025|54027|54028|54030|54034|54040|54041|54042|54043|54044|54045|54046|54048|54053|54057|54060|54064|54066|54067|54073|54074|54075|54082|54084|54086|54091|54092|54093|54096|54103|54105|54108|54110|54114|54117|54120|54124|54128|54130|54134|54135|54136|54138|54147|54149|140871|140874|140875|140876|171102|171104|173850|173853|173855|173989|173996|173997|174000|174002|174009|174135|174136|174142|174143|174382|174383|174520|178363|178364|178559|178566|186332|186339|186340|189827|189831|189834|197039|197041|197056|197057|197095|197109|224330|229489|229491|229496|229501|229517|245264|245281|258459|301040|301042|301044|301049|301057|301063|301065|301066|301069|301070|304009|304010|304013|304014|304029|304031|304032|304033|304034|304035|304037|304040|304041|304042|304043|304045|308731|308732|308733|308740|308741|308743|308744|308745|308746|308748|308764|308765|308773|308774|308775|308785|308786|308795|308800|308803|308804|308807|308814|308817|308818|308821|308822|308823|308824|353797|395213|444013|455827|501465|509820|522192|522195|522238|561092|563799|565989|614946|617313|617332|679438|692061|896845|896846|896847|896848|896849|896850|896851|896852|896853|896854|896855|896858|896862|896864|896869|896870|896871|896872|896873|896874|896875|900268|900269|900271", "text": "Lethal acantholytic epidermolysis bullosa" }, { - "baseId": "31885|181469|360831|513967|679865", + "upstreamId": "31885|181469|360831|513967|679865", "text": "Right ventricular cardiomyopathy" }, { - "baseId": "31887|31889|44668|44669|44670|44671|55323|55325|55327|55328|55330|55331|55334|55335|55336|55337|55338|55340|55343|55344|55346|55347|55348|55349|55351|55352|55353|55354|55355|55356|55365|55367|55368|55370|83268|140861|165535|171192|171193|172182|176513|176515|176516|176517|176518|176519|176520|176521|176523|176651|176653|176654|176658|176659|178725|178726|189979|189980|189982|189983|189984|197929|197930|197935|197936|197937|197938|197939|197941|197947|197950|197952|197957|197959|197961|197962|222749|224528|230826|230827|230831|230832|236813|236814|236815|243041|243042|243043|256648|259014|259017|259019|259022|260544|331066|331068|331074|331080|331089|331096|331100|331105|331107|341317|341319|341323|341325|341329|341341|341342|341345|341350|341351|341353|346856|346860|346869|346873|348098|348102|348103|348106|348122|348133|348136|348140|348142|360336|360347|360486|361032|375874|378950|378951|402660|402666|402668|402679|402727|402731|402733|402734|403184|403189|403195|403202|403208|403212|403237|403238|403239|410335|410336|410338|419290|422216|422217|426267|426268|467912|467915|467916|467926|467934|467940|467941|468833|468844|468862|468867|468869|469224|469243|469245|469247|469251|469684|469685|469687|469690|469693|488140|488141|495482|508903|508904|510762|510763|510765|510768|510769|513753|532140|532191|532195|532198|532203|532205|532208|532210|532224|532227|532235|532247|532251|532254|532286|532288|532290|532294|532297|532299|532302|532305|532385|532623|532625|532629|532632|532641|570082|570085|570086|571862|571863|571865|571867|571869|571872|571875|572597|572598|572605|574718|574720|574722|574723|583129|615146|618853|618858|621612|647134|647135|647136|647137|647138|647139|647140|647141|647142|647143|647144|647145|647146|647147|647148|652889|653395|688897|690189|694260|727687|756423|772111|785882|785884|797663|821185|821199|846745|846746|846747|846748|846749|846750|846751|846752|846753|846754|846755|846756|846757|846758|846759|846760|846761|846762|846763|852933|860467|879085|879086|879087|879088|879089|879090|879091|879092|879093|879094|879095|879096|879097|879098|879099|879100|879101|879102|879103|879104|879105|879106|879107|879108|879109|879110|879111|879112|880644|880645|880646|880647|914249|914250|914283|914336|914340|914356|914364|916603|928676|928677|928678|928679|938399|938400|938401|938402|941208|950487|950488|950489|950490|950491|950492|958453|958454|960261|960262|966486|967211", + "upstreamId": "31887|31889|44668|44669|44670|44671|55323|55325|55327|55328|55330|55331|55334|55335|55336|55337|55338|55340|55343|55344|55346|55347|55348|55349|55351|55352|55353|55354|55355|55356|55365|55367|55368|55370|83268|140861|165535|171192|171193|172182|176513|176515|176516|176517|176518|176519|176520|176521|176523|176651|176653|176654|176658|176659|178725|178726|189979|189980|189982|189983|189984|197929|197930|197935|197936|197937|197938|197939|197941|197947|197950|197952|197957|197959|197961|197962|222749|224528|230826|230827|230831|230832|236813|236814|236815|243041|243042|243043|256648|259014|259017|259019|259022|260544|331066|331068|331074|331080|331089|331096|331100|331105|331107|341317|341319|341323|341325|341329|341341|341342|341345|341350|341351|341353|346856|346860|346869|346873|348098|348102|348103|348106|348122|348133|348136|348140|348142|360336|360347|360486|361032|375874|378950|378951|402660|402666|402668|402679|402727|402731|402733|402734|403184|403189|403195|403202|403208|403212|403237|403238|403239|410335|410336|410338|419290|422216|422217|426267|426268|467912|467915|467916|467926|467934|467940|467941|468833|468844|468862|468867|468869|469224|469243|469245|469247|469251|469684|469685|469687|469690|469693|488140|488141|495482|508903|508904|510762|510763|510765|510768|510769|513753|532140|532191|532195|532198|532203|532205|532208|532210|532224|532227|532235|532247|532251|532254|532286|532288|532290|532294|532297|532299|532302|532305|532385|532623|532625|532629|532632|532641|570082|570085|570086|571862|571863|571865|571867|571869|571872|571875|572597|572598|572605|574718|574720|574722|574723|583129|615146|618853|618858|621612|647134|647135|647136|647137|647138|647139|647140|647141|647142|647143|647144|647145|647146|647147|647148|652889|653395|688897|690189|694260|727687|756423|772111|785882|785884|797663|821185|821199|846745|846746|846747|846748|846749|846750|846751|846752|846753|846754|846755|846756|846757|846758|846759|846760|846761|846762|846763|852933|860467|879085|879086|879087|879088|879089|879090|879091|879092|879093|879094|879095|879096|879097|879098|879099|879100|879101|879102|879103|879104|879105|879106|879107|879108|879109|879110|879111|879112|880644|880645|880646|880647|914249|914250|914283|914336|914340|914356|914364|916603|928676|928677|928678|928679|938399|938400|938401|938402|941208|950487|950488|950489|950490|950491|950492|958453|958454|960261|960262|966486|967211", "text": "Arrhythmogenic right ventricular cardiomyopathy, type 11" }, { - "baseId": "31892|31893|31895|31897|31898|31900|918905|983785", + "upstreamId": "31892|31893|31895|31897|31898|31900|918905|983785", "text": "Dentinogenesis imperfecta - Shield's type II" }, { - "baseId": "31894|31895", + "upstreamId": "31894|31895", "text": "Deafness, autosomal dominant nonsyndromic sensorineural 39, with dentinogenesis imperfecta 1" }, { - "baseId": "31895", + "upstreamId": "31895", "text": "Dentinogenesis imperfecta - Shield's type III" }, { - "baseId": "31896|31899|539128|539129", + "upstreamId": "31896|31899|539128|539129", "text": "Denticles" }, { - "baseId": "31901|31902|31903|31904|31905|31907|31908|306496|306497|306498|306504|306511|306513|306514|306516|306525|306536|310673|310675|310677|310681|310686|310694|310698|310702|310705|310706|310707|310721|310723|316070|316076|316079|316084|316085|316086|316088|316089|316092|316095|316096|316097|316098|316384|316401|316402|316405|316406|316414|316417|316424|316444|316447|316450|316453|316459|316463|316465|316469|513073|536755|539433|637635|736820|900852|900853|900854|900855|900856|900857|900858|900859|900860|900861|900862|900863|900864|900865|900866|900867|900868|900869|900870|900871|900872|900873|900874|900875|900876|900877|900878|900879|900880|903298|903299|903300", + "upstreamId": "31901|31902|31903|31904|31905|31907|31908|306496|306497|306498|306504|306511|306513|306514|306516|306525|306536|310673|310675|310677|310681|310686|310694|310698|310702|310705|310706|310707|310721|310723|316070|316076|316079|316084|316085|316086|316088|316089|316092|316095|316096|316097|316098|316384|316401|316402|316405|316406|316414|316417|316424|316444|316447|316450|316453|316459|316463|316465|316469|513073|536755|539433|637635|736820|900852|900853|900854|900855|900856|900857|900858|900859|900860|900861|900862|900863|900864|900865|900866|900867|900868|900869|900870|900871|900872|900873|900874|900875|900876|900877|900878|900879|900880|903298|903299|903300", "text": "Porphobilinogen synthase deficiency" }, { - "baseId": "31903", + "upstreamId": "31903", "text": "AMINOLEVULINATE DEHYDRATASE, ALAD*1/ALAD*2 POLYMORPHISM" }, { - "baseId": "31906", + "upstreamId": "31906", "text": "Porphyria, acute hepatic, digenic" }, { - "baseId": "31909|34154|76571|131908|318693|318694|318698|318701|318702|318703|318707|318708|326991|326994|326998|327004|327006|327008|327024|327027|327028|327029|327035|333108|333109|333113|334826|334854|334856|334859|334860|620460|738897|870550|870551|870552|870553|870554|870555|870556|870557|870558|870559|870560|870561", + "upstreamId": "31909|34154|76571|131908|318693|318694|318698|318701|318702|318703|318707|318708|326991|326994|326998|327004|327006|327008|327024|327027|327028|327029|327035|333108|333109|333113|334826|334854|334856|334859|334860|620460|738897|870550|870551|870552|870553|870554|870555|870556|870557|870558|870559|870560|870561", "text": "Congenital stromal corneal dystrophy" }, { - "baseId": "31910|31911|226396", + "upstreamId": "31910|31911|226396", "text": "Cromer blood group system" }, { - "baseId": "31912", + "upstreamId": "31912", "text": "Graft-versus-host disease, resistance to" }, { - "baseId": "31913", + "upstreamId": "31913", "text": "Rheumatoid arthritis, progression of" }, { - "baseId": "31915|31919|304569|304593|304598|308315|313361|313446|313448|313479|711339|722890|722896|722897|730545|730546|736492|750944|750946|750948|766569|766570|783009|783010|787584|851183|978417|978418|978419|978420|978421|978422|978423|978424|978425|978426|978427|978428|978429|978430|978431|978432|978433|978434|978435|978436|978437|978438|978439|978440|978441|978442|978443|978444", + "upstreamId": "31915|31919|304569|304593|304598|308315|313361|313446|313448|313479|711339|722890|722896|722897|730545|730546|736492|750944|750946|750948|766569|766570|783009|783010|787584|851183|978417|978418|978419|978420|978421|978422|978423|978424|978425|978426|978427|978428|978429|978430|978431|978432|978433|978434|978435|978436|978437|978438|978439|978440|978441|978442|978443|978444", "text": "Corticosterone methyl oxidase type II deficiency" }, { - "baseId": "31916|31917|31918|31919|31921|304547|304548|304552|304553|304554|304555|304569|304570|304571|304572|304573|304577|304580|304581|304583|304593|304594|304596|304598|304602|304605|308289|308296|308310|308312|308315|308316|308321|308322|308323|313344|313345|313346|313347|313348|313349|313350|313355|313361|313362|313407|313411|313418|313425|313428|313433|313445|313446|313448|313449|313454|313455|313456|313457|313462|313464|313467|313479|353825|711339|722896|750943|750948|766574|783007|834166|899064|899065|899066|899067|899068|899069|899070|899071|899072|899073|899074|899075|899076|899077|899078|899079|899080|899081|899082|899083|899084|899085|899086|899087|900454|900455", + "upstreamId": "31916|31917|31918|31919|31921|304547|304548|304552|304553|304554|304555|304569|304570|304571|304572|304573|304577|304580|304581|304583|304593|304594|304596|304598|304602|304605|308289|308296|308310|308312|308315|308316|308321|308322|308323|313344|313345|313346|313347|313348|313349|313350|313355|313361|313362|313407|313411|313418|313425|313428|313433|313445|313446|313448|313449|313454|313455|313456|313457|313462|313464|313467|313479|353825|711339|722896|750943|750948|766574|783007|834166|899064|899065|899066|899067|899068|899069|899070|899071|899072|899073|899074|899075|899076|899077|899078|899079|899080|899081|899082|899083|899084|899085|899086|899087|900454|900455", "text": "Corticosterone methyloxidase type 1 deficiency" }, { - "baseId": "31916|31920|31924|31925|304547|304548|304552|304553|304554|304555|304569|304570|304571|304572|304573|304577|304580|304581|304583|304593|304594|304596|304598|304602|304605|308289|308296|308310|308312|308315|308316|308321|308322|308323|313344|313345|313346|313347|313348|313349|313350|313355|313361|313362|313407|313411|313418|313425|313428|313433|313445|313446|313448|313449|313454|313455|313456|313457|313462|313464|313467|313479|353825|711339|722896|750943|750948|766574|783007|899064|899065|899066|899067|899068|899069|899070|899071|899072|899073|899074|899075|899076|899077|899078|899079|899080|899081|899082|899083|899084|899085|899086|899087|900454|900455", + "upstreamId": "31916|31920|31924|31925|304547|304548|304552|304553|304554|304555|304569|304570|304571|304572|304573|304577|304580|304581|304583|304593|304594|304596|304598|304602|304605|308289|308296|308310|308312|308315|308316|308321|308322|308323|313344|313345|313346|313347|313348|313349|313350|313355|313361|313362|313407|313411|313418|313425|313428|313433|313445|313446|313448|313449|313454|313455|313456|313457|313462|313464|313467|313479|353825|711339|722896|750943|750948|766574|783007|899064|899065|899066|899067|899068|899069|899070|899071|899072|899073|899074|899075|899076|899077|899078|899079|899080|899081|899082|899083|899084|899085|899086|899087|900454|900455", "text": "Corticosterone methyloxidase type 2 deficiency" }, { - "baseId": "31916|38484|711337|711341|722891|722895|730547|750943|766572|766574|783007|783008|783015", + "upstreamId": "31916|38484|711337|711341|722891|722895|730547|750943|766572|766574|783007|783008|783015", "text": "Corticosterone 18-monooxygenase deficiency" }, { - "baseId": "31922|31923", + "upstreamId": "31922|31923", "text": "Aldosterone to renin ratio, increased" }, { - "baseId": "31927", + "upstreamId": "31927", "text": "CYP2E1*6 ALLELE" }, { - "baseId": "31928|31929|31930|31931|31932|31933", + "upstreamId": "31928|31929|31930|31931|31932|31933", "text": "Debrisoquine, poor metabolism of" }, { - "baseId": "31928", + "upstreamId": "31928", "text": "doxepin response - Dosage, Toxicity/ADR" }, { - "baseId": "31928", + "upstreamId": "31928", "text": "antidepressants response - Dosage, Toxicity/ADR" }, { - "baseId": "31928", + "upstreamId": "31928", "text": "trimipramine response - Dosage, Toxicity/ADR" }, { - "baseId": "31928", + "upstreamId": "31928", "text": "imipramine response - Dosage, Toxicity/ADR" }, { - "baseId": "31928", + "upstreamId": "31928", "text": "clomipramine response - Dosage, Toxicity/ADR" }, { - "baseId": "31928", + "upstreamId": "31928", "text": "tamoxifen response - Efficacy, Toxicity/ADR" }, { - "baseId": "31928", + "upstreamId": "31928", "text": "amitriptyline response - Dosage, Toxicity/ADR" }, { - "baseId": "31928", + "upstreamId": "31928", "text": "nortriptyline response - Dosage, Toxicity/ADR" }, { - "baseId": "31928", + "upstreamId": "31928", "text": "desipramine response - Dosage, Toxicity/ADR" }, { - "baseId": "31928|31930|31932|47984", + "upstreamId": "31928|31930|31932|47984", "text": "Deutetrabenazine response" }, { - "baseId": "31928|31929|31930|31932|47984", + "upstreamId": "31928|31929|31930|31932|47984", "text": "Tamoxifen response" }, { - "baseId": "31935", + "upstreamId": "31935", "text": "Codeine response" }, { - "baseId": "31936|31937|31938|31939", + "upstreamId": "31936|31937|31938|31939", "text": "Mephenytoin, poor metabolism of" }, { - "baseId": "31936|31938", + "upstreamId": "31936|31938", "text": "Proguanil, poor metabolism of" }, { - "baseId": "31936", + "upstreamId": "31936", "text": "Clopidogrel response" }, { - "baseId": "31936", + "upstreamId": "31936", "text": "amitriptyline response - Efficacy" }, { - "baseId": "31936|31938", + "upstreamId": "31936|31938", "text": "clopidogrel response - Efficacy, Toxicity/ADR" }, { - "baseId": "31936|227758|227777", + "upstreamId": "31936|227758|227777", "text": "citalopram response - Efficacy" }, { - "baseId": "31936", + "upstreamId": "31936", "text": "clomipramine response - Efficacy" }, { - "baseId": "31937|31938|31939|47946|47948|47949|622287|622289", + "upstreamId": "31937|31938|31939|47946|47948|47949|622287|622289", "text": "CYP2C19: no function" }, { - "baseId": "31939|227812", + "upstreamId": "31939|227812", "text": "clopidogrel response - Efficacy" }, { - "baseId": "31940|31941|31944|31946|31949|31950|31951|31952|31953|31954|306789|306817|311631|679662", + "upstreamId": "31940|31941|31944|31946|31949|31950|31951|31952|31953|31954|306789|306817|311631|679662", "text": "Antley-Bixler syndrome with genital anomalies and disordered steroidogenesis" }, { - "baseId": "31941|31942|31943|31945|31946|31952|31954|142492|142493|207490|252926|252927|252929|252930|268412|303365|303366|303373|303376|303386|303388|303394|303396|303404|303406|303410|303417|303419|306773|306779|306781|306788|306793|306794|306796|306797|306803|306805|306806|306807|306814|306819|306827|311603|311614|311617|311632|311634|311635|311637|311648|311649|311671|311672|311736|311741|311746|311749|311751|311755|428743|428744|433858|433859|444161|457445|501805|561753|561756|562151|562165|587443|609664|609665|609666|620267|620268|692294|692295|692296|700224|700226|711129|736273|750777|750778|777876|898363|898364|898365|898366|898367|898368|898369|898370|898371|898372|898373|898374|898375|898376|898377|898378|898379|898380|898381|898382|898383|898384|898385|898386|898387|898388|898389|898390|898391|898392|898393|898394|898395|898396|898397|898398|898399|898400|898401|898402|898403|898404|900393|900394|900395|900396|900397|900398|900399|900400|900401", + "upstreamId": "31941|31942|31943|31945|31946|31952|31954|142492|142493|207490|252926|252927|252929|252930|268412|303365|303366|303373|303376|303386|303388|303394|303396|303404|303406|303410|303417|303419|306773|306779|306781|306788|306793|306794|306796|306797|306803|306805|306806|306807|306814|306819|306827|311603|311614|311617|311632|311634|311635|311637|311648|311649|311671|311672|311736|311741|311746|311749|311751|311755|428743|428744|433858|433859|444161|457445|501805|561753|561756|562151|562165|587443|609664|609665|609666|620267|620268|692294|692295|692296|700224|700226|711129|736273|750777|750778|777876|898363|898364|898365|898366|898367|898368|898369|898370|898371|898372|898373|898374|898375|898376|898377|898378|898379|898380|898381|898382|898383|898384|898385|898386|898387|898388|898389|898390|898391|898392|898393|898394|898395|898396|898397|898398|898399|898400|898401|898402|898403|898404|900393|900394|900395|900396|900397|900398|900399|900400|900401", "text": "Disordered steroidogenesis due to cytochrome p450 oxidoreductase deficiency" }, { - "baseId": "31955", + "upstreamId": "31955", "text": "CYP3A4 PROMOTER POLYMORPHISM" }, { - "baseId": "31955", + "upstreamId": "31955", "text": "Cyp3a4-v" }, { - "baseId": "31955", + "upstreamId": "31955", "text": "tacrolimus response - Dosage" }, { - "baseId": "31956|178822|252772|590721", + "upstreamId": "31956|178822|252772|590721", "text": "Thrombocytopenia 4" }, { - "baseId": "31957|31958|31959|77413|317903|317904|317908|317909|317913|317915|317916|317917|317921|317923|317928|317929|325761|325764|325766|325779|325788|325792|325793|325795|325796|325805|325807|325810|325815|325822|325825|325826|325827|325837|325840|325844|332042|332043|332051|332062|332063|332065|332066|332069|332073|332076|332077|332079|332085|332088|332089|332091|333519|333521|333531|333532|333533|333541|333548|333549|333550|333551|333553|344375|620849|702382|870144|870145|870146|870147|870148|870149|870150|870151|870152|870153|870154|870155|870156|870157|870158|870159|872263|872264", + "upstreamId": "31957|31958|31959|77413|317903|317904|317908|317909|317913|317915|317916|317917|317921|317923|317928|317929|325761|325764|325766|325779|325788|325792|325793|325795|325796|325805|325807|325810|325815|325822|325825|325826|325827|325837|325840|325844|332042|332043|332051|332062|332063|332065|332066|332069|332073|332076|332077|332079|332085|332088|332089|332091|333519|333521|333531|333532|333533|333541|333548|333549|333550|333551|333553|344375|620849|702382|870144|870145|870146|870147|870148|870149|870150|870151|870152|870153|870154|870155|870156|870157|870158|870159|872263|872264", "text": "White sponge nevus 1" }, { - "baseId": "31960", + "upstreamId": "31960", "text": "Thyroid-associated orbitopathy, susceptibility to" }, { - "baseId": "31960|31961|425459", + "upstreamId": "31960|31961|425459", "text": "Celiac disease 3" }, { - "baseId": "31960", + "upstreamId": "31960", "text": "TYPE 1 DIABETES MELLITUS 12, SUSCEPTIBILITY TO" }, { - "baseId": "31962|31963|50339|336594|336599|336602|336606|336608|346300|346301|346304|346309|346315|346316|350548|350553|350554|350557|351591|351592|351595|351596|351598|351603|469525|533819|533820|533835|534375|534377|534379|573064|573065|573067|573762|575152|620670|648927|648928|648929|648930|648931|648932|648933|648934|648935|728861|742594|757750|757751|773295|773296|792005|821363|848721|848722|848723|848724|848725|848726|852397|886687|886688|886689|887502|920421|929304|929305|939084|939085|939086|939087|951210|951211|951212|958942|958943", + "upstreamId": "31962|31963|50339|336594|336599|336602|336606|336608|346300|346301|346304|346309|346315|346316|350548|350553|350554|350557|351591|351592|351595|351596|351598|351603|469525|533819|533820|533835|534375|534377|534379|573064|573065|573067|573762|575152|620670|648927|648928|648929|648930|648931|648932|648933|648934|648935|728861|742594|757750|757751|773295|773296|792005|821363|848721|848722|848723|848724|848725|848726|852397|886687|886688|886689|887502|920421|929304|929305|939084|939085|939086|939087|951210|951211|951212|958942|958943", "text": "Inflammatory bowel disease 25, autosomal recessive" }, { - "baseId": "31964|31965|31966|40503|40504|40507|40509|49860|323030|323031|323035|323037|323038|332650|332651|339586|339589|339598|339616|340992|340994|341001|341004|620874|656295|799814|799815|873941|873942|873943|873944|873945|873946|873947|873948|873949|873950|873951|873952|873953|873954|876551|876552", + "upstreamId": "31964|31965|31966|40503|40504|40507|40509|49860|323030|323031|323035|323037|323038|332650|332651|339586|339589|339598|339616|340992|340994|341001|341004|620874|656295|799814|799815|873941|873942|873943|873944|873945|873946|873947|873948|873949|873950|873951|873952|873953|873954|876551|876552", "text": "Osteogenesis imperfecta type 9" }, { - "baseId": "31967|31968|132977|137613|137615|137616|139534|139537|151805|180549|183600|183602|183603|183604|183606|183608|183610|222261|234586|244831|318133|318135|318142|318150|318151|318156|318157|332284|332289|332303|332312|332314|333856|333860|333870|333875|333890|333901|333903|372522|373213|408725|408726|462670|462675|462681|463262|476470|476480|539330|575892|575893|791265|791266|791267|870225|870226|870227|870228|870229|870230|870231", + "upstreamId": "31967|31968|132977|137613|137615|137616|139534|139537|151805|180549|183600|183602|183603|183604|183606|183608|183610|222261|234586|244831|318133|318135|318142|318150|318151|318156|318157|332284|332289|332303|332312|332314|333856|333860|333870|333875|333890|333901|333903|372522|373213|408725|408726|462670|462675|462681|463262|476470|476480|539330|575892|575893|791265|791266|791267|870225|870226|870227|870228|870229|870230|870231", "text": "Cutaneous malignant melanoma 3" }, { - "baseId": "31969|31970|31971|31972|152817|195551|206565|227269|227270|539191|799359|799360", + "upstreamId": "31969|31970|31971|31972|152817|195551|206565|227269|227270|539191|799359|799360", "text": "Retinitis pigmentosa 49" }, { - "baseId": "31973|31974|175915", + "upstreamId": "31973|31974|175915", "text": "Deafness, autosomal dominant 40" }, { - "baseId": "31975|452347|519216|608997|608998|691348|827773", + "upstreamId": "31975|452347|519216|608997|608998|691348|827773", "text": "Cataract 20 multiple types" }, { - "baseId": "31976|31977|31978|31979|31980|31981|79354|250511|250512|250513|250514|284256|284260|284264|284266|284988|284992|284994|286973|286976|286977|287346|287347|450404|450430|517680|517797|557824|883537|883538|883539|883540|883541|883542|887246", + "upstreamId": "31976|31977|31978|31979|31980|31981|79354|250511|250512|250513|250514|284256|284260|284264|284266|284988|284992|284994|286973|286976|286977|287346|287347|450404|450430|517680|517797|557824|883537|883538|883539|883540|883541|883542|887246", "text": "Cataract 4" }, { - "baseId": "31976|31979|284994|286973|286976|287347|557871|629319|825618", + "upstreamId": "31976|31979|284994|286973|286976|287347|557871|629319|825618", "text": "Aculeiform cataract" }, { - "baseId": "31979|31987|31988|51095|79349|79352|79367|98632|137432|181456|213975|213976|213977|213978|213979|213980|213981|213982|213983|213984|213985|213986|213987|213988|213989|213990|213991|213992|213993|213994|213995|213996|213999|214000|214003|214004|214005|214006|214007|214008|214009|214010|247345|247346|247347|247348|247349|247350|247351|247352|247353|247354|247355|247356|247357|247358|251155|263198|290603|290607|291502|291503|291509|291603|294724|295105|295123|302005|302006|302022|305180|305202|309011|309887|309889|309923|309925|309926|309936|309970|350766|354065|361002|361925|361933|424444|590734|624881|625774|792692|822308", + "upstreamId": "31979|31987|31988|51095|79349|79352|79367|98632|137432|181456|213975|213976|213977|213978|213979|213980|213981|213982|213983|213984|213985|213986|213987|213988|213989|213990|213991|213992|213993|213994|213995|213996|213999|214000|214003|214004|214005|214006|214007|214008|214009|214010|247345|247346|247347|247348|247349|247350|247351|247352|247353|247354|247355|247356|247357|247358|251155|263198|290603|290607|291502|291503|291509|291603|294724|295105|295123|302005|302006|302022|305180|305202|309011|309887|309889|309923|309925|309926|309936|309970|350766|354065|361002|361925|361933|424444|590734|624881|625774|792692|822308", "text": "Congenital cataract" }, { - "baseId": "31982", + "upstreamId": "31982", "text": "Cataract 2, Coppock-like" }, { - "baseId": "31983|31984|76976|76977|76978|79367|450438|450528|450531|517682", + "upstreamId": "31983|31984|76976|76977|76978|79367|450438|450528|450531|517682", "text": "Cataract 2, multiple types" }, { - "baseId": "31985|31986|214006|257591|416851|469990|469993|573973|649232|649233|694697|694699|742835|778468|788327|849107|929421|939226|951365|951366|959041", + "upstreamId": "31985|31986|214006|257591|416851|469990|469993|573973|649232|649233|694697|694699|742835|778468|788327|849107|929421|939226|951365|951366|959041", "text": "Cataract 23, multiple types" }, { - "baseId": "31987|152956|257577|337644|337645|347214|347216|347219|351223|351224|351227|351228|352237|352239|352242|470919|471407|471805|534092|620925|620926|649230|653230|694696|890960|890961|890962|890963|890964|890965|890966|890967|890968|890969|890970|890971|890972|890973|890974|890975|890976|891813", + "upstreamId": "31987|152956|257577|337644|337645|347214|347216|347219|351223|351224|351227|351228|352237|352239|352242|470919|471407|471805|534092|620925|620926|649230|653230|694696|890960|890961|890962|890963|890964|890965|890966|890967|890968|890969|890970|890971|890972|890973|890974|890975|890976|891813", "text": "Cataract, congenital nuclear, autosomal recessive 2" }, { - "baseId": "31988|31989|214002|257580|264987|470921|471806|471807|571750|656684|849105|849106|919945|919946|919947|929420|939225", + "upstreamId": "31988|31989|214002|257580|264987|470921|471806|471807|571750|656684|849105|849106|919945|919946|919947|929420|939225", "text": "Cataract 3, multiple types" }, { - "baseId": "31991|79364|227387|256110|413461|467213|512267|551584|570831|645432|844840", + "upstreamId": "31991|79364|227387|256110|413461|467213|512267|551584|570831|645432|844840", "text": "Cataract, congenital zonular, with sutural opacities" }, { - "baseId": "31992|31994|31995|38624|47566|51099|53399|53406|178210|312348|324369|565481|792582|798995|867042|867043", + "upstreamId": "31992|31994|31995|38624|47566|51099|53399|53406|178210|312348|324369|565481|792582|798995|867042|867043", "text": "Alpha-B crystallinopathy" }, { - "baseId": "31993|51095|51096|51097|51098|53399|53400|53401|53406|178210|312347|312350|318236|324369|325066|565481|798995|867042|867043|919317", + "upstreamId": "31993|51095|51096|51097|51098|53399|53400|53401|53406|178210|312347|312350|318236|324369|325066|565481|798995|867042|867043|919317", "text": "Cataract 16, multiple types" }, { - "baseId": "31996|31998|31999|79348|79349|79351|79352|79353|257472|257473|257474|336890|336900|336903|346592|346594|346604|346609|350768|350770|350771|350773|351810|351811|351813|351815|351816|351822|469654|533904|848821|886883|886884|886885|886886|886887|886888|886889", + "upstreamId": "31996|31998|31999|79348|79349|79351|79352|79353|257472|257473|257474|336890|336900|336903|346592|346594|346604|346609|350768|350770|350771|350773|351810|351811|351813|351815|351816|351822|469654|533904|848821|886883|886884|886885|886886|886887|886888|886889", "text": "Cataract, autosomal dominant" }, { - "baseId": "31997", + "upstreamId": "31997", "text": "Cataract 9, autosomal recessive" }, { - "baseId": "31999|79351|79352", + "upstreamId": "31999|79351|79352", "text": "Cataract, autosomal dominant, multiple types, with microcornea" }, { - "baseId": "32000|217218|251846|296975|296976|296982|296983|296987|296988|296991|298857|298858|298876|298877|298878|298879|298882|298883|298890|298892|298907|303179|303183|303317|303318|303320|303322|303325|303326|303328|303332|303333|303336|303344|893953|893954|893955|893956|893957|893958|893959|893960|893961|893962|893963|893964|893965|893966|893967|893968|893969|893970|893971|893972|893973|893974|893975|893976|893977|893978|918942|918943", + "upstreamId": "32000|217218|251846|296975|296976|296982|296983|296987|296988|296991|298857|298858|298876|298877|298878|298879|298882|298883|298890|298892|298907|303179|303183|303317|303318|303320|303322|303325|303326|303328|303332|303333|303336|303344|893953|893954|893955|893956|893957|893958|893959|893960|893961|893962|893963|893964|893965|893966|893967|893968|893969|893970|893971|893972|893973|893974|893975|893976|893977|893978|918942|918943", "text": "Craniosynostosis 2" }, { - "baseId": "32000|217218|296994|298886|314073|314117|320588|320659|326637|327546|521433|633760|633761", + "upstreamId": "32000|217218|296994|298886|314073|314117|320588|320659|326637|327546|521433|633760|633761", "text": "Enlarged parietal foramina" }, { - "baseId": "32001|32002|32003|32004|32005|32007|251846|296975|296976|296982|296983|296987|296988|296991|298857|298858|298876|298877|298878|298879|298882|298883|298890|298892|298907|303179|303183|303317|303318|303320|303322|303325|303326|303328|303332|303333|303336|303344|454951|790538|893953|893954|893955|893956|893957|893958|893959|893960|893961|893962|893963|893964|893965|893966|893967|893968|893969|893970|893971|893972|893973|893974|893975|893976|893977|893978", + "upstreamId": "32001|32002|32003|32004|32005|32007|251846|296975|296976|296982|296983|296987|296988|296991|298857|298858|298876|298877|298878|298879|298882|298883|298890|298892|298907|303179|303183|303317|303318|303320|303322|303325|303326|303328|303332|303333|303336|303344|454951|790538|893953|893954|893955|893956|893957|893958|893959|893960|893961|893962|893963|893964|893965|893966|893967|893968|893969|893970|893971|893972|893973|893974|893975|893976|893977|893978", "text": "Parietal foramina 1" }, { - "baseId": "32006", + "upstreamId": "32006", "text": "Parietal foramina with cleidocranial dysplasia" }, { - "baseId": "32008|32011", + "upstreamId": "32008|32011", "text": "Nicotine, poor metabolism of" }, { - "baseId": "32009", + "upstreamId": "32009", "text": "CYP2A6*4A" }, { - "baseId": "32010", + "upstreamId": "32010", "text": "Tegafur response" }, { - "baseId": "32011", + "upstreamId": "32011", "text": "CYP2A6*3" }, { - "baseId": "32011", + "upstreamId": "32011", "text": "Cyp2a6, v2" }, { - "baseId": "32012", + "upstreamId": "32012", "text": "CYP2A6*12A" }, { - "baseId": "32013|32014|32015", + "upstreamId": "32013|32014|32015", "text": "Corticosteroid-binding globulin deficiency" }, { - "baseId": "32017|32018|32019|32020|65604|65605|65606|65607|65608|213992|254821|254822|254823|319082|319083|319084|319085|319091|319093|319095|319097|319100|319109|319114|319116|327535|327537|327538|327539|327541|327542|327545|327561|327563|327570|333774|333778|333782|333783|333784|333787|333793|333801|333802|333804|333808|333812|333814|333818|333827|333828|333833|333840|333842|333847|333850|333852|333853|333857|333859|333861|335450|335451|335457|335463|335464|335471|335475|335493|335500|335505|335510|335511|335528|335530|335533|462598|462606|463378|463414|527510|567190|641577|641578|641579|820547|840576|870795|870796|870797|870798|870799|870800|870801|870802|870803|870804|870805|870806|870807|870808|870809|870810|870811|870812|870813|870814|870815|870816|870817|870818|870819|870820|870821|870822|870823|870824|870825|870826|870827|870828|870829|870830|936353|964402", + "upstreamId": "32017|32018|32019|32020|65604|65605|65606|65607|65608|213992|254821|254822|254823|319082|319083|319084|319085|319091|319093|319095|319097|319100|319109|319114|319116|327535|327537|327538|327539|327541|327542|327545|327561|327563|327570|333774|333778|333782|333783|333784|333787|333793|333801|333802|333804|333808|333812|333814|333818|333827|333828|333833|333840|333842|333847|333850|333852|333853|333857|333859|333861|335450|335451|335457|335463|335464|335471|335475|335493|335500|335505|335510|335511|335528|335530|335533|462598|462606|463378|463414|527510|567190|641577|641578|641579|820547|840576|870795|870796|870797|870798|870799|870800|870801|870802|870803|870804|870805|870806|870807|870808|870809|870810|870811|870812|870813|870814|870815|870816|870817|870818|870819|870820|870821|870822|870823|870824|870825|870826|870827|870828|870829|870830|936353|964402", "text": "Zonular pulverulent cataract 3" }, { - "baseId": "32021|32022|32023|32024|32025|32027|32028|32030|32031|32032|32033|32036|38622|38623|94303|141185|141186|252067|298839|298842|298843|298847|298849|298860|298864|298865|301323|301326|301327|301328|301329|301331|301332|301333|305689|305692|305693|305696|305699|305700|305708|305709|305810|305819|305822|305823|305838|305857|305858|305859|305860|353742|428500|428501|428502|565358|683759|790577|895253|895254|895255|895256|895257|895258|895259|895260|895261|895262|895263|895264|895265|895266|895267|895268|895269|895270|895271|895272|895273|895274|895275|895276", + "upstreamId": "32021|32022|32023|32024|32025|32027|32028|32030|32031|32032|32033|32036|38622|38623|94303|141185|141186|252067|298839|298842|298843|298847|298849|298860|298864|298865|301323|301326|301327|301328|301329|301331|301332|301333|305689|305692|305693|305696|305699|305700|305708|305709|305810|305819|305822|305823|305838|305857|305858|305859|305860|353742|428500|428501|428502|565358|683759|790577|895253|895254|895255|895256|895257|895258|895259|895260|895261|895262|895263|895264|895265|895266|895267|895268|895269|895270|895271|895272|895273|895274|895275|895276", "text": "Oculodentodigital dysplasia" }, { - "baseId": "32024|32029|32030|32034|32035|141185|141186|199879|239879|305810|305822|359706|455825|456046|456047|456052|521345|521976|560552|563349|565358|634522|634523|831472|831473|924234|933149|933150|944864|944865", + "upstreamId": "32024|32029|32030|32034|32035|141185|141186|199879|239879|305810|305822|359706|455825|456046|456047|456052|521345|521976|560552|563349|565358|634522|634523|831472|831473|924234|933149|933150|944864|944865", "text": "Oculodentodigital dysplasia, autosomal recessive" }, { - "baseId": "32026|32030|141185|298839|298842|298843|298847|298849|298860|298864|298865|301323|301326|301327|301332|301333|305689|305692|305693|305696|305699|305709|305810|305819|305822|305823|305838|305857|305858|305859|565358|683759|895253|895254|895255|895256|895257|895258|895259|895260|895261|895262|895263|895264|895265|895266|895267|895268|895269|895270|895271|895272|895273|895274|895275|895276", + "upstreamId": "32026|32030|141185|298839|298842|298843|298847|298849|298860|298864|298865|301323|301326|301327|301332|301333|305689|305692|305693|305696|305699|305709|305810|305819|305822|305823|305838|305857|305858|305859|565358|683759|895253|895254|895255|895256|895257|895258|895259|895260|895261|895262|895263|895264|895265|895266|895267|895268|895269|895270|895271|895272|895273|895274|895275|895276", "text": "Syndactyly type 3" }, { - "baseId": "32029|32030|70500|141185|239781|239782|252067|298839|298842|298843|298847|298849|298860|298864|298865|301323|301326|301327|301328|301329|301331|301332|301333|305689|305692|305693|305696|305699|305700|305708|305709|305810|305819|305822|305823|305838|305857|305858|305859|305860|353742|565358|683759|895253|895254|895255|895256|895257|895258|895259|895260|895261|895262|895263|895264|895265|895266|895267|895268|895269|895270|895271|895272|895273|895274|895275|895276", + "upstreamId": "32029|32030|70500|141185|239781|239782|252067|298839|298842|298843|298847|298849|298860|298864|298865|301323|301326|301327|301328|301329|301331|301332|301333|305689|305692|305693|305696|305699|305700|305708|305709|305810|305819|305822|305823|305838|305857|305858|305859|305860|353742|565358|683759|895253|895254|895255|895256|895257|895258|895259|895260|895261|895262|895263|895264|895265|895266|895267|895268|895269|895270|895271|895272|895273|895274|895275|895276", "text": "Hypoplastic left heart syndrome 1" }, { - "baseId": "32029|32030|360872|918994|918995", + "upstreamId": "32029|32030|360872|918994|918995", "text": "Atrioventricular septal defect 3" }, { - "baseId": "32037|32037|38618|38619|38620|38621|132416|276311|276312|276313|276313|276313|276314|276315|276539|276540|276545|276946|276962|276973|276983|277009|277100|277107|277108|277111|446905|515110|556588|556629|556919|556921|556923|558102|558104|614073|619949|619950|626782|626783|626784|626785|650516|683289|818812|822671|822672|822673|822674|822675|862173|862174|862176|862177|862178|862179|862180|862181|862182|930021|941436|952055|952056", + "upstreamId": "32037|32037|38618|38619|38620|38621|132416|276311|276312|276313|276313|276313|276314|276315|276539|276540|276545|276946|276962|276973|276983|277009|277100|277107|277108|277111|446905|515110|556588|556629|556919|556921|556923|558102|558104|614073|619949|619950|626782|626783|626784|626785|650516|683289|818812|822671|822672|822673|822674|822675|862173|862174|862176|862177|862178|862179|862180|862181|862182|930021|941436|952055|952056", "text": "Atrial fibrillation, familial, 11" }, { - "baseId": "32037|276313|276313|276314|446905|515110|556588|556629|556919|556921|556923|558102|558104|626782|626783|626784|626785|650516|683289|818812|822671|822672|822673|822674|822675|930021|941436|952055|952056", + "upstreamId": "32037|276313|276313|276314|446905|515110|556588|556629|556919|556921|556923|558102|558104|626782|626783|626784|626785|650516|683289|818812|822671|822672|822673|822674|822675|930021|941436|952055|952056", "text": "Atrial standstill 1" }, { - "baseId": "32038", + "upstreamId": "32038", "text": "Atrial fibrillation, somatic" }, { - "baseId": "32039|32041|32046|32049|32055|32059|32062|34237|44941|44942|44943|53882|53883|53884|53887|53888|53891|53899|53906|53910|53912|53916|53921|53922|100288|175762|175909|186432|192367|230437|319120|319122|327572|327575|327578|327579|327582|327583|327586|333862|333863|333864|335541|335544|335547|335548|335549|335550|335552|335553|335557|353285|362175|432245|620467|620469|621385|870831|870832|870833|870834|870835|870836|870837|870838|870839|870840|870841|870842|870843|870844|870845", + "upstreamId": "32039|32041|32046|32049|32055|32059|32062|34237|44941|44942|44943|53882|53883|53884|53887|53888|53891|53899|53906|53910|53912|53916|53921|53922|100288|175762|175909|186432|192367|230437|319120|319122|327572|327575|327578|327579|327582|327583|327586|333862|333863|333864|335541|335544|335547|335548|335549|335550|335552|335553|335557|353285|362175|432245|620467|620469|621385|870831|870832|870833|870834|870835|870836|870837|870838|870839|870840|870841|870842|870843|870844|870845", "text": "Hystrix-like ichthyosis with deafness" }, { - "baseId": "32039|32041|32042|32043|32046|32048|32049|32050|32053|32053|32055|32056|32057|32058|32062|32065|32066|32070|32075|34237|34239|38617|44941|44942|44943|44943|53882|53883|53884|53887|53888|53891|53899|53905|53906|53907|53909|53910|53912|53916|53921|53922|53927|53933|100288|169009|175762|175909|186432|192367|227135|227213|227350|230434|230437|319120|319122|327572|327575|327578|327579|327582|327583|327586|333862|333863|333864|335544|335547|335548|335549|335550|335552|335553|335557|358128|358129|358130|358131|358132|358133|358134|358135|362175|413167|413168|413169|413170|432245|511033|551725|581711|620467|620469|621385|870831|870832|870833|870834|870835|870836|870837|870838|870839|870840|870841|870842|870843|870844|870845", + "upstreamId": "32039|32041|32042|32043|32046|32048|32049|32050|32053|32053|32055|32056|32057|32058|32062|32065|32066|32070|32075|34237|34239|38617|44941|44942|44943|44943|53882|53883|53884|53887|53888|53891|53899|53905|53906|53907|53909|53910|53912|53916|53921|53922|53927|53933|100288|169009|175762|175909|186432|192367|227135|227213|227350|230434|230437|319120|319122|327572|327575|327578|327579|327582|327583|327586|333862|333863|333864|335544|335547|335548|335549|335550|335552|335553|335557|358128|358129|358130|358131|358132|358133|358134|358135|362175|413167|413168|413169|413170|432245|511033|551725|581711|620467|620469|621385|870831|870832|870833|870834|870835|870836|870837|870838|870839|870840|870841|870842|870843|870844|870845", "text": "Deafness, autosomal dominant 3a" }, { - "baseId": "32039|32041|32043|32044|32045|32046|32048|32049|32051|32053|32055|32059|32068|34241|38617|52376|53892|53904|53907|53909|53911|53916|53927|53928|100292|169011|175904|186432|186857|186864|229547|230143|230342|358134|408478|439510|439511|490937|551723|551724|551725|551726|551727|551728|792662|792663|792664|792665|861668|965617", + "upstreamId": "32039|32041|32043|32044|32045|32046|32048|32049|32051|32053|32055|32059|32068|34241|38617|52376|53892|53904|53907|53909|53911|53916|53927|53928|100292|169011|175904|186432|186857|186864|229547|230143|230342|358134|408478|439510|439511|490937|551723|551724|551725|551726|551727|551728|792662|792663|792664|792665|861668|965617", "text": "Hearing loss" }, { - "baseId": "32039|32062|53922|170211|171004|175904|358132|425880|431384|789142", + "upstreamId": "32039|32062|53922|170211|171004|175904|358132|425880|431384|789142", "text": "Nonsyndromic Deafness" }, { - "baseId": "32043|263404|590734", + "upstreamId": "32043|263404|590734", "text": "Severe sensorineural hearing impairment" }, { - "baseId": "32043|550227|553415", + "upstreamId": "32043|550227|553415", "text": "Bilateral conductive hearing impairment" }, { - "baseId": "32043|53210|54304|55057|55236|55237|55245|55291|55653|55658|57034|173796|174423|175230|175287|175289|192865|201048|228257|229964|230920|247044|252536|253830|256660|275808|275954|283145|283148|283152|283174|283899|283901|285701|285753|286066|288746|294822|294829|294859|299954|299983|299990|299995|299997|299999|300000|300001|300013|300016|300183|301071|301090|301098|301101|301314|301439|302642|302646|302652|302653|302654|302655|302656|302659|302669|304063|304629|307001|307019|307024|307037|307038|307039|307044|307270|307274|307282|307283|307300|307302|307303|307305|307306|307307|307312|308684|308796|308849|308861|308865|308869|308876|308933|309466|310068|310529|310535|310662|310741|310742|310745|312290|312292|312293|312294|312295|312297|312299|312300|312314|312318|312816|315094|315098|315636|315674|315906|315931|315967|315972|316006|316010|316044|316047|316048|316100|316153|318118|318119|318125|318137|318146|318158|318168|321120|321125|321177|321656|321707|321728|321749|321928|322088|322101|322102|322105|322106|322108|322109|322395|322646|322651|322653|322702|322713|322714|322725|322726|324177|324183|324187|324189|324196|324240|324947|324981|324985|324991|325652|325804|325849|327554|327557|327562|327600|327999|328005|328178|329099|329131|329139|329165|329173|329192|329209|329416|331390|335541|337361|337363|337368|337407|337410|341667|345140|346521|347050|350742|350746|353204|353205|353285|861642|861643", + "upstreamId": "32043|53210|54304|55057|55236|55237|55245|55291|55653|55658|57034|173796|174423|175230|175287|175289|192865|201048|228257|229964|230920|247044|252536|253830|256660|275808|275954|283145|283148|283152|283174|283899|283901|285701|285753|286066|288746|294822|294829|294859|299954|299983|299990|299995|299997|299999|300000|300001|300013|300016|300183|301071|301090|301098|301101|301314|301439|302642|302646|302652|302653|302654|302655|302656|302659|302669|304063|304629|307001|307019|307024|307037|307038|307039|307044|307270|307274|307282|307283|307300|307302|307303|307305|307306|307307|307312|308684|308796|308849|308861|308865|308869|308876|308933|309466|310068|310529|310535|310662|310741|310742|310745|312290|312292|312293|312294|312295|312297|312299|312300|312314|312318|312816|315094|315098|315636|315674|315906|315931|315967|315972|316006|316010|316044|316047|316048|316100|316153|318118|318119|318125|318137|318146|318158|318168|321120|321125|321177|321656|321707|321728|321749|321928|322088|322101|322102|322105|322106|322108|322109|322395|322646|322651|322653|322702|322713|322714|322725|322726|324177|324183|324187|324189|324196|324240|324947|324981|324985|324991|325652|325804|325849|327554|327557|327562|327600|327999|328005|328178|329099|329131|329139|329165|329173|329192|329209|329416|331390|335541|337361|337363|337368|337407|337410|341667|345140|346521|347050|350742|350746|353204|353205|353285|861642|861643", "text": "Nonsyndromic Hearing Loss, Recessive" }, { - "baseId": "32043|176412|247076|442564|497401|551992|551993|551994|551995|551996|551997|551998|551999|552000|552001|552002|552003|552004|552005|552006|552007|552008|552009|552010|552011|552012|552013|552014|552015|552016|552017|552018|552019|552020|552021|552022|552023|552024|552025|552026|552027|800970|861136", + "upstreamId": "32043|176412|247076|442564|497401|551992|551993|551994|551995|551996|551997|551998|551999|552000|552001|552002|552003|552004|552005|552006|552007|552008|552009|552010|552011|552012|552013|552014|552015|552016|552017|552018|552019|552020|552021|552022|552023|552024|552025|552026|552027|800970|861136", "text": "Deafness" }, { - "baseId": "32049|32051|247546|335541|353285", + "upstreamId": "32049|32051|247546|335541|353285", "text": "Mutilating keratoderma" }, { - "baseId": "32049|53738|54304|57028|57034|174345|174831|175230|175746|229190|229465|229964|252536|266947|282176|282187|282319|293956|293964|295337|295339|299083|299138|299143|301071|301090|301098|301101|301717|304063|305890|306130|306147|307200|308684|308796|308849|308861|308865|308869|308876|308933|312816|313213|313221|313225|315694|315695|315696|318100|319043|319668|320414|320766|320772|322570|322598|324947|325804|325849|328178|328754|328767|329416|329627|329629|329972|329987|332262|333789|334103|335541|335774|337581|338132|338140|338146|338147|338153|344052|344054|347648|347707|349280|350256|350267|351515|351555|352507|352510|352514|352517|353204|353205|353206|353285|353304|353606|353607|353769", + "upstreamId": "32049|53738|54304|57028|57034|174345|174831|175230|175746|229190|229465|229964|252536|266947|282176|282187|282319|293956|293964|295337|295339|299083|299138|299143|301071|301090|301098|301101|301717|304063|305890|306130|306147|307200|308684|308796|308849|308861|308865|308869|308876|308933|312816|313213|313221|313225|315694|315695|315696|318100|319043|319668|320414|320766|320772|322570|322598|324947|325804|325849|328178|328754|328767|329416|329627|329629|329972|329987|332262|333789|334103|335541|335774|337581|338132|338140|338146|338147|338153|344052|344054|347648|347707|349280|350256|350267|351515|351555|352507|352510|352514|352517|353204|353205|353206|353285|353304|353606|353607|353769", "text": "Nonsyndromic Hearing Loss, Dominant" }, { - "baseId": "32049|620468", + "upstreamId": "32049|620468", "text": "GJB2-Related Disorders" }, { - "baseId": "32049|335541|353285", + "upstreamId": "32049|335541|353285", "text": "Keratitis ichthyosis and deafness syndrome" }, { - "baseId": "32050|32066|361033|361034", + "upstreamId": "32050|32066|361033|361034", "text": "Hereditary palmoplantar keratoderma" }, { - "baseId": "32055|48180|918956", + "upstreamId": "32055|48180|918956", "text": "Horseshoe kidney" }, { - "baseId": "32055|805096|974533", + "upstreamId": "32055|805096|974533", "text": "Congenital omphalocele" }, { - "baseId": "32055", + "upstreamId": "32055", "text": "Short palpebral fissure" }, { - "baseId": "32059|32060|32061|32067|32072|590509", + "upstreamId": "32059|32060|32061|32067|32072|590509", "text": "Keratitis-ichthyosis-deafness syndrome, autosomal dominant" }, { - "baseId": "32069|32073", + "upstreamId": "32069|32073", "text": "Knuckle pads, deafness AND leukonychia syndrome" }, { - "baseId": "32075|33288|53912|226237|226666|226667|226668|362484|362485|362486|362487|362488|513982", + "upstreamId": "32075|33288|53912|226237|226666|226667|226668|362484|362485|362486|362487|362488|513982", "text": "Progressive sensorineural hearing impairment" }, { - "baseId": "32077|44257|44258|44259|44260|44261|44262|550315|816303|816304", + "upstreamId": "32077|44257|44258|44259|44260|44261|44262|550315|816303|816304", "text": "Type II complement component 8 deficiency" }, { - "baseId": "32078", + "upstreamId": "32078", "text": "COMPLEMENT COMPONENT 8, ALPHA SUBUNIT, A/B POLYMORPHISM" }, { - "baseId": "32079|32080|32081|32081|32082|38614|188759|389216|512817|818239|961947", + "upstreamId": "32079|32080|32081|32081|32082|38614|188759|389216|512817|818239|961947", "text": "Complement component 9 deficiency" }, { - "baseId": "32081|97546", + "upstreamId": "32081|97546", "text": "Macular degeneration, age-related, 15" }, { - "baseId": "32083|32084|32085|32086|32087|32088|260775|278614|278616|278622|278624|278629|278630|278725|278733|278736|278754|278755|278756|278757|278758|278770|278772|278779|278780|278786|278788|278789|279938|279947|279948|279950|279960|280016|280017|280022|280024|354159|432279|437833|496599|512796|590235|623242|707045|707046|818165|818166|818167|863367|863368|863369|863370|863371|863372|863373|863374|863375|863376|863377|863378|863379|863380|863381|863382|863383|863384|863385|863386|863387|863388|863389|865099|865100|865101", + "upstreamId": "32083|32084|32085|32086|32087|32088|260775|278614|278616|278622|278624|278629|278630|278725|278733|278736|278754|278755|278756|278757|278758|278770|278772|278779|278780|278786|278788|278789|279938|279947|279948|279950|279960|280016|280017|280022|280024|354159|432279|437833|496599|512796|590235|623242|707045|707046|818165|818166|818167|863367|863368|863369|863370|863371|863372|863373|863374|863375|863376|863377|863378|863379|863380|863381|863382|863383|863384|863385|863386|863387|863388|863389|865099|865100|865101", "text": "Atypical hemolytic-uremic syndrome 2" }, { - "baseId": "32089|32090|32091|32092|497052|538404|614334|970889", + "upstreamId": "32089|32090|32091|32092|497052|538404|614334|970889", "text": "Complement component 5 deficiency" }, { - "baseId": "32093", + "upstreamId": "32093", "text": "Liver fibrosis, susceptibility to" }, { - "baseId": "32094", + "upstreamId": "32094", "text": "C4a deficiency" }, { - "baseId": "32095|97565", + "upstreamId": "32095|97565", "text": "MACULAR DEGENERATION, AGE-RELATED, 9, SUSCEPTIBILITY TO" }, { - "baseId": "32095", + "upstreamId": "32095", "text": "C3S/C3F POLYMORPHISM" }, { - "baseId": "32095|32096|97565|97565|334455|334458|334469|334472|334475|334482|334483|334492|334494|334496|334500|334501|334503|334508|334514|334515|334517|334523|334527|344330|344330|344334|344335|344336|344339|344348|344354|344357|344360|344364|344365|344371|344373|344374|344380|344381|349443|349444|349446|349447|349449|349450|349451|349454|349457|349459|349461|349464|349467|349470|349471|349473|350429|350432|350433|350436|350441|350444|350447|350450|350452|350456|350457|350461|350462|350464|350467|350472|350475|376879|614464|622120|716757|731313|742162|742167|772939|776913|860623|882582|882583|882584|882585|882586|882587|882588|882589|882590|882591|882592|882593|882594|882595|882596|882597|882598|882599|882600|882601|882602|882603|882604|882605|882606|882607|882608|882609|882610|882611|882942|882943|882944|882945|882946|882947|882948|882949|882950|882951|882952|882953", + "upstreamId": "32095|32096|97565|97565|334455|334458|334469|334472|334475|334482|334483|334492|334494|334496|334500|334501|334503|334508|334514|334515|334517|334523|334527|344330|344330|344334|344335|344336|344339|344348|344354|344357|344360|344364|344365|344371|344373|344374|344380|344381|349443|349444|349446|349447|349449|349450|349451|349454|349457|349459|349461|349464|349467|349470|349471|349473|350429|350432|350433|350436|350441|350444|350447|350450|350452|350456|350457|350461|350462|350464|350467|350472|350475|376879|614464|622120|716757|731313|742162|742167|772939|776913|860623|882582|882583|882584|882585|882586|882587|882588|882589|882590|882591|882592|882593|882594|882595|882596|882597|882598|882599|882600|882601|882602|882603|882604|882605|882606|882607|882608|882609|882610|882611|882942|882943|882944|882945|882946|882947|882948|882949|882950|882951|882952|882953", "text": "Age-related macular degeneration 9" }, { - "baseId": "32096", + "upstreamId": "32096", "text": "C3 POLYMORPHISM, HAV 4-1 PLUS/MINUS TYPE" }, { - "baseId": "32096|32099|32100|32101|32102|97565|97565|198641|334455|334458|334469|334472|334475|334482|334483|334492|334494|334496|334500|334501|334503|334508|334514|334515|334517|334523|334527|344330|344330|344334|344335|344336|344339|344348|344354|344357|344360|344364|344365|344371|344373|344374|344380|344381|349443|349444|349446|349447|349449|349450|349451|349454|349457|349459|349461|349464|349467|349470|349471|349473|350429|350432|350433|350436|350441|350444|350447|350450|350452|350456|350457|350461|350462|350464|350467|350472|350475|376879|513145|590335|614464|622120|716757|731313|742162|742167|772939|776913|818342|818344|860623|882582|882583|882584|882585|882586|882587|882588|882589|882590|882591|882592|882593|882594|882595|882596|882597|882598|882599|882600|882601|882602|882603|882604|882605|882606|882607|882608|882609|882610|882611|882942|882943|882944|882945|882946|882947|882948|882949|882950|882951|882952|882953|980393", + "upstreamId": "32096|32099|32100|32101|32102|97565|97565|198641|334455|334458|334469|334472|334475|334482|334483|334492|334494|334496|334500|334501|334503|334508|334514|334515|334517|334523|334527|344330|344330|344334|344335|344336|344339|344348|344354|344357|344360|344364|344365|344371|344373|344374|344380|344381|349443|349444|349446|349447|349449|349450|349451|349454|349457|349459|349461|349464|349467|349470|349471|349473|350429|350432|350433|350436|350441|350444|350447|350450|350452|350456|350457|350461|350462|350464|350467|350472|350475|376879|513145|590335|614464|622120|716757|731313|742162|742167|772939|776913|818342|818344|860623|882582|882583|882584|882585|882586|882587|882588|882589|882590|882591|882592|882593|882594|882595|882596|882597|882598|882599|882600|882601|882602|882603|882604|882605|882606|882607|882608|882609|882610|882611|882942|882943|882944|882945|882946|882947|882948|882949|882950|882951|882952|882953|980393", "text": "Atypical hemolytic-uremic syndrome 5" }, { - "baseId": "32096|97565|97565|334455|334458|334469|334472|334475|334482|334483|334492|334494|334496|334500|334501|334503|334508|334514|334515|334517|334523|334527|344330|344330|344334|344335|344336|344339|344348|344354|344357|344360|344364|344365|344371|344373|344374|344380|344381|349443|349444|349446|349447|349449|349450|349451|349454|349457|349459|349461|349464|349467|349470|349471|349473|350429|350432|350433|350436|350441|350444|350447|350450|350452|350456|350457|350461|350462|350464|350467|350472|350475|376879|590336|614464|622120|716757|731313|742162|742167|772939|776913|818343|860623|882582|882583|882584|882585|882586|882587|882588|882589|882590|882591|882592|882593|882594|882595|882596|882597|882598|882599|882600|882601|882602|882603|882604|882605|882606|882607|882608|882609|882610|882611|882942|882943|882944|882945|882946|882947|882948|882949|882950|882951|882952|882953", + "upstreamId": "32096|97565|97565|334455|334458|334469|334472|334475|334482|334483|334492|334494|334496|334500|334501|334503|334508|334514|334515|334517|334523|334527|344330|344330|344334|344335|344336|344339|344348|344354|344357|344360|344364|344365|344371|344373|344374|344380|344381|349443|349444|349446|349447|349449|349450|349451|349454|349457|349459|349461|349464|349467|349470|349471|349473|350429|350432|350433|350436|350441|350444|350447|350450|350452|350456|350457|350461|350462|350464|350467|350472|350475|376879|590336|614464|622120|716757|731313|742162|742167|772939|776913|818343|860623|882582|882583|882584|882585|882586|882587|882588|882589|882590|882591|882592|882593|882594|882595|882596|882597|882598|882599|882600|882601|882602|882603|882604|882605|882606|882607|882608|882609|882610|882611|882942|882943|882944|882945|882946|882947|882948|882949|882950|882951|882952|882953", "text": "Complement component 3 deficiency, autosomal recessive" }, { - "baseId": "32097|32098|32103|334509|344343|344359|344383|349452|350459", + "upstreamId": "32097|32098|32103|334509|344343|344359|344383|349452|350459", "text": "C3 deficiency" }, { - "baseId": "32106|32107|540577|614383|614384|614384|818300|964399|980471", + "upstreamId": "32106|32107|540577|614383|614384|614384|818300|964399|980471", "text": "Complement component c1s deficiency" }, { - "baseId": "32108|32109|32110|32111|32112|434365|434366|434367|434368|512799|512800|614206|614207|624173|963120", + "upstreamId": "32108|32109|32110|32111|32112|434365|434366|434367|434368|512799|512800|614206|614207|624173|963120", "text": "C1q deficiency" }, { - "baseId": "32114", + "upstreamId": "32114", "text": "Esophageal carcinoma, somatic" }, { - "baseId": "32115|32116|185689|185690|185691|185692|185693|185694|185695|185696|185697|185698|185699|185700|185701|362052|362056|362057|550791|791867", + "upstreamId": "32115|32116|185689|185690|185691|185692|185693|185694|185695|185696|185697|185698|185699|185700|185701|362052|362056|362057|550791|791867", "text": "Mirror movements 1" }, { - "baseId": "32119|32126|32133|45202|45212|45234|45242|94671|94826|94837|94838|94924|95087|95218|95322|95360|95362|95460|95466|95473|95540|95665|95724|95734|95761|95792|95793|95830|95832|95854|95913|95979|95984|96029|96065|96080|96202|96238|96255|96258|96279|96367|96378|96420|96492|96564|96578|96584|98485|133027|133208|138591|150473|151109|152161|152481|152684|180033|182160|182245|231655|367409|393356|405792|416964|419364|419478|427193|432520|443423|473466|473514|483508|518396|560749|610947|610987|617377|622528|630084|630261|807302|807597|809178|826693|826706|909306|910956|943003|943028|961696|961697|961698|961699|961700|961701|961702|961703|961704|961705|961706|961707|961708|961709|961710|961711|961712|961713|961714|961715|961716|961717|961718|961719|961720|961721|961722|961723|961724|961725|961726|961727|961728|961729|961730|961731|961732|961733|961734|961735|961736|961737|961738|961739|961740|961741|961742|961743|961744|961745", + "upstreamId": "32119|32126|32133|45202|45212|45234|45242|94671|94826|94837|94838|94924|95087|95218|95322|95360|95362|95460|95466|95473|95540|95665|95724|95734|95761|95792|95793|95830|95832|95854|95913|95979|95984|96029|96065|96080|96202|96238|96255|96258|96279|96367|96378|96420|96492|96564|96578|96584|98485|133027|133208|138591|150473|151109|152161|152481|152684|180033|182160|182245|231655|367409|393356|405792|416964|419364|419478|427193|432520|443423|473466|473514|483508|518396|560749|610947|610987|617377|622528|630084|630261|807302|807597|809178|826693|826706|909306|910956|943003|943028|961696|961697|961698|961699|961700|961701|961702|961703|961704|961705|961706|961707|961708|961709|961710|961711|961712|961713|961714|961715|961716|961717|961718|961719|961720|961721|961722|961723|961724|961725|961726|961727|961728|961729|961730|961731|961732|961733|961734|961735|961736|961737|961738|961739|961740|961741|961742|961743|961744|961745", "text": "Lynch-like syndrome" }, { - "baseId": "32135", + "upstreamId": "32135", "text": "Colorectal cancer, sporadic, susceptibility to" }, { - "baseId": "32137|50226|95904|96145|133417|139704|195467|222826|239530|394483|417649|427217|452681|483849|550664|550666|550683|550730|550738|550739|623763|624831", + "upstreamId": "32137|50226|95904|96145|133417|139704|195467|222826|239530|394483|417649|427217|452681|483849|550664|550666|550683|550730|550738|550739|623763|624831", "text": "Malignant tumor of colon" }, { - "baseId": "32146|195340|266330|267601|268580|269600|335584|335585|335586|335587|335591|335596|345354|345357|345359|350025|350026|350027|350030|351061|351064|351065|351068|351069|351072|351073|351076|620660|620661|620662|620920|705508|717012|728687|728688|728689|742439|886167|886168|886169|886170|886171|886172|886173|886174|886175|886176|886177|886178|886179|886180|887464|887465", + "upstreamId": "32146|195340|266330|267601|268580|269600|335584|335585|335586|335587|335591|335596|345354|345357|345359|350025|350026|350027|350030|351061|351064|351065|351068|351069|351072|351073|351076|620660|620661|620662|620920|705508|717012|728687|728688|728689|742439|886167|886168|886169|886170|886171|886172|886173|886174|886175|886176|886177|886178|886179|886180|887464|887465", "text": "Metaphyseal anadysplasia 2" }, { - "baseId": "32147|32148|32149|32150|32151|191222|195335|267755|325733|325735|325736|325743|325749|325750|325751|325752|325756|325758|325759|325765|325777|335373|335375|335379|335383|335384|335387|335389|335392|335396|335399|335401|335404|341847|341849|341850|341854|341855|341856|341857|341858|341859|341860|341862|341863|343347|343350|343355|343358|343359|343361|343362|343365|343370|361221|489951|490882|614157|678072|714976|726688|726689|740248|740254|755242|875486|875487|875488|875489|875490|875491|875492|875493|875494|875495|875496|875497|875498|875499|875500|875501|875502|875503|875504|875505|875506|875507|875508|875509|875510|875511|875512|875513|875514|875515|875516|875517|875518|876679|903610", + "upstreamId": "32147|32148|32149|32150|32151|191222|195335|267755|325733|325735|325736|325743|325749|325750|325751|325752|325756|325758|325759|325765|325777|335373|335375|335379|335383|335384|335387|335389|335392|335396|335399|335401|335404|341847|341849|341850|341854|341855|341856|341857|341858|341859|341860|341862|341863|343347|343350|343355|343358|343359|343361|343362|343365|343370|361221|489951|490882|614157|678072|714976|726688|726689|740248|740254|755242|875486|875487|875488|875489|875490|875491|875492|875493|875494|875495|875496|875497|875498|875499|875500|875501|875502|875503|875504|875505|875506|875507|875508|875509|875510|875511|875512|875513|875514|875515|875516|875517|875518|876679|903610", "text": "Multicentric osteolysis, nodulosis and arthropathy" }, { - "baseId": "32153", + "upstreamId": "32153", "text": "Pulmonary disease, chronic obstructive, rate of decline of lung function in" }, { - "baseId": "32153", + "upstreamId": "32153", "text": "Epidermolysis bullosa dystrophica, autosomal recessive, modifier of" }, { - "baseId": "32154|32155|32156|32157|32158|38607|38608|39627|76340|76341|237151|257483|257484|257485|257486|257490|257492|257493|257494|257495|257496|257502|257503|257505|257507|257516|336945|336950|336954|336955|336967|336969|336971|336975|336980|336981|336983|336991|336993|336997|336999|337008|337009|337011|337012|337013|337014|337023|337025|337026|337028|337029|337033|337034|337044|337051|337056|337058|337066|346684|346685|346693|346704|346711|346717|346719|346723|346724|346731|346732|346733|346739|346740|346748|346769|346777|346782|346783|346784|346785|346787|346788|346796|346810|346811|346814|350824|350825|350827|350830|350831|350832|350838|350839|350842|350843|350846|350847|350850|350851|350854|350856|350859|350861|350863|350866|350867|350870|350871|350874|350875|350878|350879|350882|351867|351868|351869|351870|351871|351872|351873|351874|351875|351876|351877|351878|351879|351880|351881|351882|351883|351884|351885|351886|351887|351888|351889|351890|351891|351892|351893|390699|418973|442317|442319|442331|442333|442334|442335|508935|508936|508937|512964|539101|539163|539164|578580|583003|612199|612337|620674|654925|672300|705740|705741|788943|792012|792013|792521|800626|861045|861046|886925|886926|886927|886928|886929|886930|886931|886932|886933|886934|886935|886936|886937|886938|886939|886940|886941|886942|886943|886944|886945|886946|886947|886948|886949|886950|886951|886952|886953|886954|886955|886956|886957|886958|886959|886960|886961|886962|886963|886964|886965|886966|886967|886968|886969|886970|886971|886972|886973|886974|886975|886976|886977|886978|886979|886980|886981|887522|887523|887524|887525|887526|887527|887528|887529|887530|887531|887532|903640|903641|964549", + "upstreamId": "32154|32155|32156|32157|32158|38607|38608|39627|76340|76341|237151|257483|257484|257485|257486|257490|257492|257493|257494|257495|257496|257502|257503|257505|257507|257516|336945|336950|336954|336955|336967|336969|336971|336975|336980|336981|336983|336991|336993|336997|336999|337008|337009|337011|337012|337013|337014|337023|337025|337026|337028|337029|337033|337034|337044|337051|337056|337058|337066|346684|346685|346693|346704|346711|346717|346719|346723|346724|346731|346732|346733|346739|346740|346748|346769|346777|346782|346783|346784|346785|346787|346788|346796|346810|346811|346814|350824|350825|350827|350830|350831|350832|350838|350839|350842|350843|350846|350847|350850|350851|350854|350856|350859|350861|350863|350866|350867|350870|350871|350874|350875|350878|350879|350882|351867|351868|351869|351870|351871|351872|351873|351874|351875|351876|351877|351878|351879|351880|351881|351882|351883|351884|351885|351886|351887|351888|351889|351890|351891|351892|351893|390699|418973|442317|442319|442331|442333|442334|442335|508935|508936|508937|512964|539101|539163|539164|578580|583003|612199|612337|620674|654925|672300|705740|705741|788943|792012|792013|792521|800626|861045|861046|886925|886926|886927|886928|886929|886930|886931|886932|886933|886934|886935|886936|886937|886938|886939|886940|886941|886942|886943|886944|886945|886946|886947|886948|886949|886950|886951|886952|886953|886954|886955|886956|886957|886958|886959|886960|886961|886962|886963|886964|886965|886966|886967|886968|886969|886970|886971|886972|886973|886974|886975|886976|886977|886978|886979|886980|886981|887522|887523|887524|887525|887526|887527|887528|887529|887530|887531|887532|903640|903641|964549", "text": "Knobloch syndrome 1" }, { - "baseId": "32159|32161|32162|32166|55719|55720|55721|55722|55723|55724|55725|55726|55727|55729|55730|55731|55732|55733|55734|55735|174359|174360|174361|174362|174365|174366|174367|174368|174370|174371|174374|174376|174497|174500|174501|174502|174506|174506|191960|193796|194635|195091|195498|195517|195770|195770|227296|229440|229442|229444|229445|229447|229448|229452|229455|229456|229461|229462|229465|229466|229470|229475|229479|252330|252334|266947|266947|270329|270741|299883|299889|299892|299895|299897|299899|299901|299904|299906|302506|302507|302508|302511|302512|302513|302522|302532|302534|302535|302536|302537|306913|306914|306916|306917|306918|306919|306922|306923|306924|306925|306926|306934|306935|307189|307191|307199|307200|307201|307202|307207|307208|307211|307213|307214|353769|368659|406861|443954|496460|496461|501733|501959|537810|538385|552434|655743|682806|682819|682820|795841|895822|895823|895824|895825|895826|895827|895828|895829|895830|895831|895832|895833|895834|895835|895836|895837|895838|895839|895840|895841|895842|895843|895844|895845|895846|895847|896225|896226|896227|896228|896229|896230|896231", + "upstreamId": "32159|32161|32162|32166|55719|55720|55721|55722|55723|55724|55725|55726|55727|55729|55730|55731|55732|55733|55734|55735|174359|174360|174361|174362|174365|174366|174367|174368|174370|174371|174374|174376|174497|174500|174501|174502|174506|174506|191960|193796|194635|195091|195498|195517|195770|195770|227296|229440|229442|229444|229445|229447|229448|229452|229455|229456|229461|229462|229465|229466|229470|229475|229479|252330|252334|266947|266947|270329|270741|299883|299889|299892|299895|299897|299899|299901|299904|299906|302506|302507|302508|302511|302512|302513|302522|302532|302534|302535|302536|302537|306913|306914|306916|306917|306918|306919|306922|306923|306924|306925|306926|306934|306935|307189|307191|307199|307200|307201|307202|307207|307208|307211|307213|307214|353769|368659|406861|443954|496460|496461|501733|501959|537810|538385|552434|655743|682806|682819|682820|795841|895822|895823|895824|895825|895826|895827|895828|895829|895830|895831|895832|895833|895834|895835|895836|895837|895838|895839|895840|895841|895842|895843|895844|895845|895846|895847|896225|896226|896227|896228|896229|896230|896231", "text": "Otospondylomegaepiphyseal dysplasia, autosomal dominant" }, { - "baseId": "32160|32165|32167|32169|55719|55720|55721|55722|55723|55724|55725|55726|55727|55729|55730|55731|55732|55733|55734|55735|174359|174360|174361|174362|174365|174366|174367|174368|174370|174371|174374|174376|174497|174500|174501|174502|174506|174506|191960|193796|194635|195091|195498|195517|195770|227296|229440|229442|229444|229445|229447|229448|229452|229455|229456|229461|229462|229465|229466|229470|229475|229479|252330|252334|266947|266947|270329|270741|299883|299889|299892|299895|299897|299899|299901|299904|299906|302506|302507|302508|302511|302512|302513|302522|302532|302534|302535|302536|302537|306913|306914|306916|306917|306918|306919|306922|306923|306924|306925|306926|306934|306935|307189|307191|307199|307200|307201|307202|307207|307208|307211|307213|307214|353769|368659|406861|496460|496461|501733|501959|537810|552161|552434|655743|790614|790615|795841|798574|895822|895823|895824|895825|895826|895827|895828|895829|895830|895831|895832|895833|895834|895835|895836|895837|895838|895839|895840|895841|895842|895843|895844|895845|895846|895847|896225|896226|896227|896228|896229|896230|896231", + "upstreamId": "32160|32165|32167|32169|55719|55720|55721|55722|55723|55724|55725|55726|55727|55729|55730|55731|55732|55733|55734|55735|174359|174360|174361|174362|174365|174366|174367|174368|174370|174371|174374|174376|174497|174500|174501|174502|174506|174506|191960|193796|194635|195091|195498|195517|195770|227296|229440|229442|229444|229445|229447|229448|229452|229455|229456|229461|229462|229465|229466|229470|229475|229479|252330|252334|266947|266947|270329|270741|299883|299889|299892|299895|299897|299899|299901|299904|299906|302506|302507|302508|302511|302512|302513|302522|302532|302534|302535|302536|302537|306913|306914|306916|306917|306918|306919|306922|306923|306924|306925|306926|306934|306935|307189|307191|307199|307200|307201|307202|307207|307208|307211|307213|307214|353769|368659|406861|496460|496461|501733|501959|537810|552161|552434|655743|790614|790615|795841|798574|895822|895823|895824|895825|895826|895827|895828|895829|895830|895831|895832|895833|895834|895835|895836|895837|895838|895839|895840|895841|895842|895843|895844|895845|895846|895847|896225|896226|896227|896228|896229|896230|896231", "text": "Otospondylomegaepiphyseal dysplasia, autosomal recessive" }, { - "baseId": "32163|32164|32166|46196|174365|174502|174506|195770|195770|227296|368659|406861|625799|800396|964275|970831", + "upstreamId": "32163|32164|32166|46196|174365|174502|174506|195770|195770|227296|368659|406861|625799|800396|964275|970831", "text": "Deafness, autosomal dominant 13" }, { - "baseId": "32168|170211|174502|174506|195770|215057|227296|368659|406861|622369|800396|802072|802073", + "upstreamId": "32168|170211|174502|174506|195770|215057|227296|368659|406861|622369|800396|802072|802073", "text": "Deafness, autosomal recessive 53" }, { - "baseId": "32170|32174|32176|99869|99870|99871|177627|177628|192640|193940|195072|195125|195150|195180|195462|195521|195635|195937|237273|249270|249274|249277|249279|249282|249283|249285|249287|249291|249295|249297|249301|249304|268987|273644|273898|275071|275622|275645|275656|275657|275658|275659|275660|275662|275663|275664|275665|275666|275667|275668|275669|275670|275672|275673|275675|275678|275682|275683|275685|275686|275687|275688|275689|275691|275692|275693|275694|275695|275696|275697|275698|275699|275700|275701|275702|275705|275706|275707|275708|275709|275710|275713|275714|275715|275716|275717|275719|275720|275721|275722|275723|275724|275725|275726|275728|275729|275731|275734|275735|275738|275739|275741|275744|275745|275749|275753|361277|364283|364300|497934|497939|497966|537679|552029|611359|612075|612076|624845|655021|655022|731510|743655|745500|792817|861764|861765|861766|861767|861768|861769|861770|861771|861772|861773|861774|861775|861776|861777|861778|861779|861780|861781|861782|861784|861785|861786|861787|861788|861789|861790|861791|861792|861793|861794|861795|861796|861797|861798|861799|864943|864944|864946|864947|864948|864949|864950|917789|961249|961586|977165", + "upstreamId": "32170|32174|32176|99869|99870|99871|177627|177628|192640|193940|195072|195125|195150|195180|195462|195521|195635|195937|237273|249270|249274|249277|249279|249282|249283|249285|249287|249291|249295|249297|249301|249304|268987|273644|273898|275071|275622|275645|275656|275657|275658|275659|275660|275662|275663|275664|275665|275666|275667|275668|275669|275670|275672|275673|275675|275678|275682|275683|275685|275686|275687|275688|275689|275691|275692|275693|275694|275695|275696|275697|275698|275699|275700|275701|275702|275705|275706|275707|275708|275709|275710|275713|275714|275715|275716|275717|275719|275720|275721|275722|275723|275724|275725|275726|275728|275729|275731|275734|275735|275738|275739|275741|275744|275745|275749|275753|361277|364283|364300|497934|497939|497966|537679|552029|611359|612075|612076|624845|655021|655022|731510|743655|745500|792817|861764|861765|861766|861767|861768|861769|861770|861771|861772|861773|861774|861775|861776|861777|861778|861779|861780|861781|861782|861784|861785|861786|861787|861788|861789|861790|861791|861792|861793|861794|861795|861796|861797|861798|861799|864943|864944|864946|864947|864948|864949|864950|917789|961249|961586|977165", "text": "Stickler syndrome type 2" }, { - "baseId": "32172", + "upstreamId": "32172", "text": "Marshall/Stickler syndrome" }, { - "baseId": "32173|32175|48375|177630|194896|194897|195521|275654|275676|275681|275684|275690|275704|275711|275712|275718|275727|275732|275740|364319|490221|917789|918538|918539|918540|918541|920116|920117|961249|961586|964641|970656|970657", + "upstreamId": "32173|32175|48375|177630|194896|194897|195521|275654|275676|275681|275684|275690|275704|275711|275712|275718|275727|275732|275740|364319|490221|917789|918538|918539|918540|918541|920116|920117|961249|961586|964641|970656|970657", "text": "Marshall syndrome" }, { - "baseId": "32176|38601|38602|38603|38604|99869|99870|99871|177627|177628|177630|192640|193940|194896|194897|195072|195125|195150|195180|195462|195521|195635|195937|229456|229465|237273|249270|249274|249277|249279|249282|249283|249285|249287|249291|249295|249297|249301|249304|252334|266947|268987|273644|273898|275071|275622|275645|275654|275656|275657|275658|275659|275660|275662|275663|275664|275665|275666|275667|275668|275669|275670|275672|275673|275675|275676|275678|275681|275682|275683|275684|275685|275686|275687|275688|275689|275690|275691|275692|275693|275694|275695|275696|275697|275698|275699|275700|275701|275702|275704|275705|275706|275707|275708|275709|275710|275711|275712|275713|275714|275715|275716|275717|275718|275719|275720|275721|275722|275723|275724|275725|275726|275727|275728|275729|275731|275732|275734|275735|275738|275739|275740|275741|275744|275745|275749|275753|307200|353769|364283|364300|497934|497939|497966|513484|655021|655022|731509|731510|743655|745500|789814|789815|792817|861764|861765|861766|861767|861768|861769|861770|861771|861772|861773|861774|861775|861776|861777|861778|861779|861780|861781|861782|861784|861785|861786|861787|861788|861789|861790|861791|861792|861793|861794|861795|861796|861797|861798|861799|864943|864944|864946|864947|864948|864949|864950|961249|961586", + "upstreamId": "32176|38601|38602|38603|38604|99869|99870|99871|177627|177628|177630|192640|193940|194896|194897|195072|195125|195150|195180|195462|195521|195635|195937|229456|229465|237273|249270|249274|249277|249279|249282|249283|249285|249287|249291|249295|249297|249301|249304|252334|266947|268987|273644|273898|275071|275622|275645|275654|275656|275657|275658|275659|275660|275662|275663|275664|275665|275666|275667|275668|275669|275670|275672|275673|275675|275676|275678|275681|275682|275683|275684|275685|275686|275687|275688|275689|275690|275691|275692|275693|275694|275695|275696|275697|275698|275699|275700|275701|275702|275704|275705|275706|275707|275708|275709|275710|275711|275712|275713|275714|275715|275716|275717|275718|275719|275720|275721|275722|275723|275724|275725|275726|275727|275728|275729|275731|275732|275734|275735|275738|275739|275740|275741|275744|275745|275749|275753|307200|353769|364283|364300|497934|497939|497966|513484|655021|655022|731509|731510|743655|745500|789814|789815|792817|861764|861765|861766|861767|861768|861769|861770|861771|861772|861773|861774|861775|861776|861777|861778|861779|861780|861781|861782|861784|861785|861786|861787|861788|861789|861790|861791|861792|861793|861794|861795|861796|861797|861798|861799|864943|864944|864946|864947|864948|864949|864950|961249|961586", "text": "Fibrochondrogenesis 1" }, { - "baseId": "32177|32179|190383|193034|361234|377094|378137|481354|513382|513383|578577|620667|620668|677297|920419|971584", + "upstreamId": "32177|32179|190383|193034|361234|377094|378137|481354|513382|513383|578577|620667|620668|677297|920419|971584", "text": "Epiphyseal dysplasia, multiple, 3" }, { - "baseId": "32178|32184", + "upstreamId": "32178|32184", "text": "Intervertebral disc disease, susceptibility to" }, { - "baseId": "32180", + "upstreamId": "32180", "text": "Epiphyseal dysplasia, multiple, 3, with myopathy" }, { - "baseId": "32181|32182|32183|32185|192639|193781|193938|193939|195298|249892|249893|249894|249902|249905|249906|249908|249910|249911|249913|249914|249915|249918|249919|249920|249921|249923|249926|267042|267754|275467|280498|280501|280502|280505|280506|280507|280513|280516|280917|280936|280938|280942|280944|280945|280948|280961|282242|282245|282246|282248|282261|282279|282280|282460|282461|282469|282477|282479|282480|282482|282483|282483|282485|282493|282494|282494|282495|282496|282497|404746|404746|442838|489924|538337|538337|677276|759019|792890|864365|864366|864367|864368|864369|864370|864371|864372|864373|864374|864375|864376|864377|864378|864379|864380|864381|864382|865176|865177|865178|865179|918640|970689", + "upstreamId": "32181|32182|32183|32185|192639|193781|193938|193939|195298|249892|249893|249894|249902|249905|249906|249908|249910|249911|249913|249914|249915|249918|249919|249920|249921|249923|249926|267042|267754|275467|280498|280501|280502|280505|280506|280507|280513|280516|280917|280936|280938|280942|280944|280945|280948|280961|282242|282245|282246|282248|282261|282279|282280|282460|282461|282469|282477|282479|282480|282482|282483|282483|282485|282493|282494|282494|282495|282496|282497|404746|404746|442838|489924|538337|538337|677276|759019|792890|864365|864366|864367|864368|864369|864370|864371|864372|864373|864374|864375|864376|864377|864378|864379|864380|864381|864382|865176|865177|865178|865179|918640|970689", "text": "Epiphyseal dysplasia, multiple, 2" }, { - "baseId": "32186|32187|178168", + "upstreamId": "32186|32187|178168", "text": "Corneal dystrophy, Fuchs endothelial 1" }, { - "baseId": "32186|32187", + "upstreamId": "32186|32187", "text": "Corneal dystrophy, posterior polymorphous, 2" }, { - "baseId": "32188|32192|32193|32194|32198|32202|32203|32203|32205|32206|32207|32208|32209|32210|32211|32212|32213|32215|32219|32221|38594|38596|38597|38598|38599|71511|99705|99706|99707|99710|99711|99712|99714|99716|99721|99725|99726|99727|99730|99730|99732|99739|99741|99742|99745|99745|99746|99746|99747|99748|99750|99751|99753|99754|99755|99761|99762|99763|99764|99764|99765|99766|99767|99768|99768|99769|99770|99771|99773|99774|99784|99785|99796|99797|99804|99806|99809|99813|99817|99822|99827|99829|99829|99831|99835|99836|99837|99840|99843|99844|99845|99848|99849|99851|99853|99854|99855|99856|99858|99861|99862|99863|100801|100802|100803|100804|100806|100807|100808|100809|100810|100811|100812|100813|100814|100815|100816|100817|100819|100820|100822|100824|100825|100826|100827|100828|100829|100832|100834|100835|100837|100838|100838|100840|100841|100842|100843|100845|100847|100851|100852|100854|100856|100857|100858|100862|100867|100867|100868|100869|100870|100875|100876|100877|100877|100878|100878|100883|100884|100885|100885|100886|100888|100888|100889|100890|100891|100894|100895|100896|100897|100899|100901|100902|100907|100910|100911|100915|100916|100917|100921|134261|134262|134262|134263|134264|134265|134266|134267|134268|134269|134270|134270|134271|134271|134272|172209|172213|172214|172217|172217|172218|172219|172257|172258|172260|172262|172263|172265|172271|172273|172274|172275|176948|176949|177038|177080|177169|177211|177301|177342|177343|177635|177636|177637|177638|177639|177642|177644|177645|188959|190060|190061|190062|190063|190797|190835|191040|191040|191202|191204|191217|191218|191363|191529|191784|191785|191892|191893|191907|192311|192311|192312|192313|192638|192906|193113|193113|193116|193117|193131|193274|193275|193276|193277|193278|193279|193280|193281|193283|193284|193490|193491|193492|193541|193841|193937|194109|194110|194114|194115|194138|194139|194141|194143|194193|194194|194195|194240|194363|194394|194396|194576|194577|194578|194596|194597|194598|194644|194645|194892|194893|194922|194923|195327|195328|195329|195634|195669|195953|196229|196248|196249|196250|196251|196252|198611|198644|204973|206953|206955|208723|208724|208726|213661|215253|226467|226468|226490|226491|236989|237190|250675|250681|250684|250686|250687|250688|250689|250690|250692|250693|250695|257519|257521|257524|257529|257533|257534|257541|257547|257549|257554|257560|257571|257572|260246|260247|260862|264078|265291|265356|265401|265496|265526|265546|265548|265851|265852|265902|265978|266057|266079|266085|266087|266171|266183|266196|266201|266343|266353|266419|266420|266421|266432|266444|266447|266472|266476|266506|266528|266535|266654|266661|266667|266682|266700|266712|266712|266720|266721|266728|266762|266763|266766|266770|266780|266882|266889|266891|266897|266911|266917|266920|267011|267026|267049|267128|267131|267245|267251|267257|267268|267276|267284|267286|267296|267310|267415|267476|267479|267492|267494|267516|267525|267530|267531|267552|267562|267567|267573|267643|267646|267678|267680|267697|267880|267895|267919|267926|267929|267933|267949|267990|267994|267999|268128|268179|268186|268235|268236|268294|268301|268333|268346|268358|268360|268361|268363|268366|268377|268379|268382|268617|268618|268713|268716|268732|268733|268756|268790|268791|268792|268793|268794|268804|268821|268823|268836|268930|269005|269011|269015|269026|269028|269030|269033|269038|269046|269052|269063|269068|269070|269071|269072|269114|269179|269203|269213|269287|269295|269297|269315|269324|269374|269384|269386|269430|269470|269485|269521|269550|269590|269595|269598|269648|269684|269687|269690|269698|269701|269706|269717|269718|269808|269811|269815|269822|269831|269866|269869|269871|269873|269876|269917|269933|269947|269948|269955|269963|269967|269985|269985|270047|270064|270066|270196|270202|270221|270224|270234|270235|270254|270259|270264|270266|270268|270278|270283|270376|270383|270387|270397|270416|270444|270445|270457|270458|270471|270684|270688|270699|270702|270716|270717|270720|270816|270819|270824|271059|271061|271149|271165|271370|271420|271680|271953|271955|272025|272029|272031|272054|272128|272171|272172|272175|272190|272248|272318|272325|272352|272515|272542|272622|272624|272627|272629|272635|272650|272651|272656|272656|272659|272678|272680|272682|272685|272741|272753|272804|272823|272823|272839|272848|272850|272866|272876|272880|272923|273057|273073|273079|273081|273082|273100|273109|273112|273114|273161|273162|273166|273181|273210|273211|273281|273313|273334|273351|273354|273358|273368|273376|273383|273384|273393|273479|273586|273594|273707|273804|273810|273817|273832|273883|273921|273991|273992|274006|274018|274030|274148|274174|274174|274322|274395|274396|274398|274427|274432|274438|274468|274486|274487|274493|274574|274578|274580|274595|274699|274713|274717|274721|274727|274728|274732|274761|274766|274846|274870|274899|274908|274958|274959|275119|275164|275174|275316|275343|275446|275448|275452|275453|275463|285405|285411|285434|285444|285453|285457|285458|286068|286069|286080|286081|286088|286094|286109|286114|288387|288438|288451|288455|288470|288806|337093|337097|337114|337116|337124|346827|346846|346849|346852|346855|350886|350894|350922|350925|350926|350929|350930|351920|351926|351927|351928|359353|359381|360458|361356|361656|366249|366256|366262|367099|378488|378583|404758|405667|405668|405669|405672|410895|410896|413593|413594|413595|415706|421372|422367|425475|428004|430435|430437|443186|443191|443192|443194|443196|443197|443198|443201|446334|446336|446341|446342|448490|448585|450522|450524|450529|450535|450537|450539|450541|450545|450547|450565|450567|450569|450575|450578|450582|450583|450586|450588|450595|450596|450598|450602|450604|450646|450648|450649|450658|450661|450669|450670|450671|450674|450676|450682|450692|450697|450701|450703|450818|450822|450825|450826|450835|450839|450840|450844|450849|450851|450854|450857|450862|450865|450866|450869|450872|450873|450876|450877|450878|450879|450881|450883|450888|450899|450899|450904|469705|469708|469714|469719|469721|469723|469724|469731|469737|469740|469745|469747|469749|469750|469752|469755|469757|469760|469763|469777|469779|469784|469787|469802|469806|469807|469813|469820|469832|469835|470773|470777|470780|470783|470795|470796|470800|470802|470805|470806|470808|470812|470815|470817|470822|470824|470826|470827|471254|471255|471257|471258|471261|471265|471269|471270|471272|471273|471284|471287|471290|471293|471297|471298|471298|471300|471716|471724|471726|471728|471729|471730|471734|471735|471738|471739|471743|471744|471749|471750|471752|471754|471756|471762|471763|471764|471772|486291|488277|488468|488585|488649|488651|488662|488764|488797|488799|488808|488809|488929|488944|488992|489009|489222|489263|489275|489492|489550|489605|489613|489614|489698|489748|489749|489764|489992|490005|490189|490333|490357|490423|490467|490469|490523|490649|490733|490756|491115|491299|491310|491522|491637|491732|491784|491788|491789|491963|492079|492094|492098|492328|492467|492607|492608|492620|492879|493247|493258|493510|493510|493564|493581|493651|493795|493821|493970|494002|499573|499595|500007|500061|507426|507596|507602|512497|512498|512499|513523|513666|516319|517919|517921|517925|517963|517968|517972|517975|517977|517980|517981|517982|517983|517985|517990|517992|517993|517995|518002|518005|518037|518040|518042|518046|518047|518049|518052|518058|518065|518071|518072|533957|533962|533964|533969|533972|533976|533981|533983|533988|533989|533993|533997|533999|534003|534005|534006|534007|534013|534019|534020|534021|534024|534026|534032|534035|534045|534053|534068|534075|534077|534084|534090|534093|534094|534101|534511|534512|534517|534522|534523|534525|534526|534532|534534|534537|534540|534541|534543|534546|538966|540471|557940|557942|557944|557946|557948|557950|557952|557954|557956|557958|557960|557962|557964|558001|558003|558006|558009|558012|558014|558019|558302|558303|558304|558307|558310|558312|558641|559184|559523|559527|560507|560510|560512|560514|560516|560517|560519|560520|560522|561096|561103|561104|561114|561115|561116|561121|561127|561134|561143|561157|561159|561164|561170|561171|561176|561184|561192|561193|571462|571615|571616|571617|571619|571621|571623|571629|571636|571637|571641|571645|571646|571653|571654|571655|573015|573019|573169|573174|573175|573180|573184|573187|573188|573190|573194|573195|573858|573863|573869|573871|573872|573875|573881|573883|573886|573890|573893|573894|575145|575188|575189|575190|575191|575192|575193|575194|575195|575196|575197|575198|575199|575200|575508|584304|585204|585926|586012|586030|586458|586627|586781|587050|587051|587139|587458|587608|587612|587759|587835|588490|588533|588610|588704|588749|589034|589257|589360|589482|589552|589606|589778|590090|608945|608973|629626|629627|629628|629629|629630|629631|629632|629633|629634|629635|629636|629637|629638|629639|629640|629641|629642|629643|629644|629645|629646|629647|629648|629649|629650|629651|629652|629653|629654|629655|629656|629657|629658|629659|629660|629661|629662|629663|629664|629665|629666|629667|629668|629669|629670|629671|629672|629673|629674|629675|629676|629677|629678|629679|629680|629681|629682|629683|629684|629685|629686|629687|629688|629689|629690|629691|629692|629693|629694|629695|629696|629697|629698|629699|629700|649069|649070|649071|649072|649073|649074|649075|649076|649077|649078|649079|649080|649081|649082|649083|649084|649085|649086|649087|649088|649089|649090|649091|649092|649093|649094|649095|649096|649097|649098|649099|649100|649101|649102|649103|649104|649105|649106|649107|649108|649109|649110|649111|649112|649113|649114|649115|649116|649117|649118|649119|649120|649121|649122|649123|649124|649125|649126|649127|649128|649129|649130|650922|650959|650962|650990|653149|653176|653180|653184|653258|653260|653580|653582|653589|653591|653661|653674|653676|653681|653684|677217|691064|691068|691072|691074|694641|694645|694648|694650|694655|694657|694658|694661|695128|695864|697434|697435|697437|697438|697440|697443|705749|705751|705752|705753|705754|708127|708128|708129|717264|717266|719727|728971|728972|728973|728974|733286|733295|742702|742707|742708|747422|747431|747433|757887|757891|757892|757896|760921|763071|763075|763077|763079|763083|763087|773404|773411|774717|776710|776835|777259|781247|781250|781252|786533|786534|786535|790213|790214|792014|792015|792016|792017|795194|798328|804995|804996|819146|821380|821381|821382|821383|821384|822205|825988|825989|825990|825991|825992|825993|825994|825995|825996|825997|825998|825999|826000|826001|826002|826003|826004|826005|826006|826007|826008|826009|826010|826011|826012|826013|826014|826015|826016|826017|826018|826019|826020|826021|826022|826023|826024|826025|826026|826027|826028|826029|826030|826031|826032|826033|826034|826035|826036|826037|826038|826039|826040|826041|826042|826043|826044|826045|826046|826047|826048|826049|826050|848911|848912|848913|848914|848915|848916|848917|848918|848919|848920|848921|848922|848923|848924|848925|848926|848927|848928|848929|848930|848931|848932|848933|848934|848935|848936|848937|848938|848939|848940|848941|848942|848943|848944|848945|848946|848947|848948|848949|848950|848951|848952|848953|848954|848955|848956|848957|848958|848959|848960|848961|848962|848963|848964|848965|848966|848967|848968|848969|848970|848971|848972|848973|848974|848975|848976|848977|848978|848979|848980|848981|850847|850849|850894|851863|851865|851867|851869|851871|851873|852405|852408|852411|852414|853009|853010|853011|853012|884222|884260|887008|887009|887010|887021|920679|922639|922640|922641|922642|922643|922644|922645|922646|922647|922648|922649|922650|922651|922652|929360|929361|929362|929363|929364|929365|929366|929367|929368|929369|929370|929371|929372|929373|929374|929375|929376|929377|929378|929379|929380|929381|929382|929383|929384|929385|929386|931211|931212|931213|931214|931215|931216|931217|931218|931219|931220|931221|931222|931223|931224|931225|931226|931227|931228|931229|931230|931231|931232|931233|931234|931235|931236|931237|931238|931239|931240|931241|931242|931243|931244|939153|939154|939155|939156|939157|939158|939159|939160|939161|939162|939163|939164|939165|939166|939167|939168|939169|939170|939171|939172|939880|940520|940521|940703|941264|941265|941266|941267|941268|941269|942690|942691|942692|942693|942694|942695|942696|942697|942698|942699|942700|942701|942702|942703|942704|942705|942706|942707|942708|942709|942710|942711|942712|942713|942714|942715|942716|951282|951283|951284|951285|951286|951287|951288|951289|951290|951291|951292|952997|952998|952999|953000|953001|953002|953003|953004|953005|953006|958999|959000|959001|959002|959003|959004|959005|959006|959007|959008|959009|959010|959011|959632|960329|960330|960331|960332|960333|960334|960335|960336|960467|960954|960955|960956|961354|963186|964198", + "upstreamId": "32188|32192|32193|32194|32198|32202|32203|32203|32205|32206|32207|32208|32209|32210|32211|32212|32213|32215|32219|32221|38594|38596|38597|38598|38599|71511|99705|99706|99707|99710|99711|99712|99714|99716|99721|99725|99726|99727|99730|99730|99732|99739|99741|99742|99745|99745|99746|99746|99747|99748|99750|99751|99753|99754|99755|99761|99762|99763|99764|99764|99765|99766|99767|99768|99768|99769|99770|99771|99773|99774|99784|99785|99796|99797|99804|99806|99809|99813|99817|99822|99827|99829|99829|99831|99835|99836|99837|99840|99843|99844|99845|99848|99849|99851|99853|99854|99855|99856|99858|99861|99862|99863|100801|100802|100803|100804|100806|100807|100808|100809|100810|100811|100812|100813|100814|100815|100816|100817|100819|100820|100822|100824|100825|100826|100827|100828|100829|100832|100834|100835|100837|100838|100838|100840|100841|100842|100843|100845|100847|100851|100852|100854|100856|100857|100858|100862|100867|100867|100868|100869|100870|100875|100876|100877|100877|100878|100878|100883|100884|100885|100885|100886|100888|100888|100889|100890|100891|100894|100895|100896|100897|100899|100901|100902|100907|100910|100911|100915|100916|100917|100921|134261|134262|134262|134263|134264|134265|134266|134267|134268|134269|134270|134270|134271|134271|134272|172209|172213|172214|172217|172217|172218|172219|172257|172258|172260|172262|172263|172265|172271|172273|172274|172275|176948|176949|177038|177080|177169|177211|177301|177342|177343|177635|177636|177637|177638|177639|177642|177644|177645|188959|190060|190061|190062|190063|190797|190835|191040|191040|191202|191204|191217|191218|191363|191529|191784|191785|191892|191893|191907|192311|192311|192312|192313|192638|192906|193113|193113|193116|193117|193131|193274|193275|193276|193277|193278|193279|193280|193281|193283|193284|193490|193491|193492|193541|193841|193937|194109|194110|194114|194115|194138|194139|194141|194143|194193|194194|194195|194240|194363|194394|194396|194576|194577|194578|194596|194597|194598|194644|194645|194892|194893|194922|194923|195327|195328|195329|195634|195669|195953|196229|196248|196249|196250|196251|196252|198611|198644|204973|206953|206955|208723|208724|208726|213661|215253|226467|226468|226490|226491|236989|237190|250675|250681|250684|250686|250687|250688|250689|250690|250692|250693|250695|257519|257521|257524|257529|257533|257534|257541|257547|257549|257554|257560|257571|257572|260246|260247|260862|264078|265291|265356|265401|265496|265526|265546|265548|265851|265852|265902|265978|266057|266079|266085|266087|266171|266183|266196|266201|266343|266353|266419|266420|266421|266432|266444|266447|266472|266476|266506|266528|266535|266654|266661|266667|266682|266700|266712|266712|266720|266721|266728|266762|266763|266766|266770|266780|266882|266889|266891|266897|266911|266917|266920|267011|267026|267049|267128|267131|267245|267251|267257|267268|267276|267284|267286|267296|267310|267415|267476|267479|267492|267494|267516|267525|267530|267531|267552|267562|267567|267573|267643|267646|267678|267680|267697|267880|267895|267919|267926|267929|267933|267949|267990|267994|267999|268128|268179|268186|268235|268236|268294|268301|268333|268346|268358|268360|268361|268363|268366|268377|268379|268382|268617|268618|268713|268716|268732|268733|268756|268790|268791|268792|268793|268794|268804|268821|268823|268836|268930|269005|269011|269015|269026|269028|269030|269033|269038|269046|269052|269063|269068|269070|269071|269072|269114|269179|269203|269213|269287|269295|269297|269315|269324|269374|269384|269386|269430|269470|269485|269521|269550|269590|269595|269598|269648|269684|269687|269690|269698|269701|269706|269717|269718|269808|269811|269815|269822|269831|269866|269869|269871|269873|269876|269917|269933|269947|269948|269955|269963|269967|269985|269985|270047|270064|270066|270196|270202|270221|270224|270234|270235|270254|270259|270264|270266|270268|270278|270283|270376|270383|270387|270397|270416|270444|270445|270457|270458|270471|270684|270688|270699|270702|270716|270717|270720|270816|270819|270824|271059|271061|271149|271165|271370|271420|271680|271953|271955|272025|272029|272031|272054|272128|272171|272172|272175|272190|272248|272318|272325|272352|272515|272542|272622|272624|272627|272629|272635|272650|272651|272656|272656|272659|272678|272680|272682|272685|272741|272753|272804|272823|272823|272839|272848|272850|272866|272876|272880|272923|273057|273073|273079|273081|273082|273100|273109|273112|273114|273161|273162|273166|273181|273210|273211|273281|273313|273334|273351|273354|273358|273368|273376|273383|273384|273393|273479|273586|273594|273707|273804|273810|273817|273832|273883|273921|273991|273992|274006|274018|274030|274148|274174|274174|274322|274395|274396|274398|274427|274432|274438|274468|274486|274487|274493|274574|274578|274580|274595|274699|274713|274717|274721|274727|274728|274732|274761|274766|274846|274870|274899|274908|274958|274959|275119|275164|275174|275316|275343|275446|275448|275452|275453|275463|285405|285411|285434|285444|285453|285457|285458|286068|286069|286080|286081|286088|286094|286109|286114|288387|288438|288451|288455|288470|288806|337093|337097|337114|337116|337124|346827|346846|346849|346852|346855|350886|350894|350922|350925|350926|350929|350930|351920|351926|351927|351928|359353|359381|360458|361356|361656|366249|366256|366262|367099|378488|378583|404758|405667|405668|405669|405672|410895|410896|413593|413594|413595|415706|421372|422367|425475|428004|430435|430437|443186|443191|443192|443194|443196|443197|443198|443201|446334|446336|446341|446342|448490|448585|450522|450524|450529|450535|450537|450539|450541|450545|450547|450565|450567|450569|450575|450578|450582|450583|450586|450588|450595|450596|450598|450602|450604|450646|450648|450649|450658|450661|450669|450670|450671|450674|450676|450682|450692|450697|450701|450703|450818|450822|450825|450826|450835|450839|450840|450844|450849|450851|450854|450857|450862|450865|450866|450869|450872|450873|450876|450877|450878|450879|450881|450883|450888|450899|450899|450904|469705|469708|469714|469719|469721|469723|469724|469731|469737|469740|469745|469747|469749|469750|469752|469755|469757|469760|469763|469777|469779|469784|469787|469802|469806|469807|469813|469820|469832|469835|470773|470777|470780|470783|470795|470796|470800|470802|470805|470806|470808|470812|470815|470817|470822|470824|470826|470827|471254|471255|471257|471258|471261|471265|471269|471270|471272|471273|471284|471287|471290|471293|471297|471298|471298|471300|471716|471724|471726|471728|471729|471730|471734|471735|471738|471739|471743|471744|471749|471750|471752|471754|471756|471762|471763|471764|471772|486291|488277|488468|488585|488649|488651|488662|488764|488797|488799|488808|488809|488929|488944|488992|489009|489222|489263|489275|489492|489550|489605|489613|489614|489698|489748|489749|489764|489992|490005|490189|490333|490357|490423|490467|490469|490523|490649|490733|490756|491115|491299|491310|491522|491637|491732|491784|491788|491789|491963|492079|492094|492098|492328|492467|492607|492608|492620|492879|493247|493258|493510|493510|493564|493581|493651|493795|493821|493970|494002|499573|499595|500007|500061|507426|507596|507602|512497|512498|512499|513523|513666|516319|517919|517921|517925|517963|517968|517972|517975|517977|517980|517981|517982|517983|517985|517990|517992|517993|517995|518002|518005|518037|518040|518042|518046|518047|518049|518052|518058|518065|518071|518072|533957|533962|533964|533969|533972|533976|533981|533983|533988|533989|533993|533997|533999|534003|534005|534006|534007|534013|534019|534020|534021|534024|534026|534032|534035|534045|534053|534068|534075|534077|534084|534090|534093|534094|534101|534511|534512|534517|534522|534523|534525|534526|534532|534534|534537|534540|534541|534543|534546|538966|540471|557940|557942|557944|557946|557948|557950|557952|557954|557956|557958|557960|557962|557964|558001|558003|558006|558009|558012|558014|558019|558302|558303|558304|558307|558310|558312|558641|559184|559523|559527|560507|560510|560512|560514|560516|560517|560519|560520|560522|561096|561103|561104|561114|561115|561116|561121|561127|561134|561143|561157|561159|561164|561170|561171|561176|561184|561192|561193|571462|571615|571616|571617|571619|571621|571623|571629|571636|571637|571641|571645|571646|571653|571654|571655|573015|573019|573169|573174|573175|573180|573184|573187|573188|573190|573194|573195|573858|573863|573869|573871|573872|573875|573881|573883|573886|573890|573893|573894|575145|575188|575189|575190|575191|575192|575193|575194|575195|575196|575197|575198|575199|575200|575508|584304|585204|585926|586012|586030|586458|586627|586781|587050|587051|587139|587458|587608|587612|587759|587835|588490|588533|588610|588704|588749|589034|589257|589360|589482|589552|589606|589778|590090|608945|608973|629626|629627|629628|629629|629630|629631|629632|629633|629634|629635|629636|629637|629638|629639|629640|629641|629642|629643|629644|629645|629646|629647|629648|629649|629650|629651|629652|629653|629654|629655|629656|629657|629658|629659|629660|629661|629662|629663|629664|629665|629666|629667|629668|629669|629670|629671|629672|629673|629674|629675|629676|629677|629678|629679|629680|629681|629682|629683|629684|629685|629686|629687|629688|629689|629690|629691|629692|629693|629694|629695|629696|629697|629698|629699|629700|649069|649070|649071|649072|649073|649074|649075|649076|649077|649078|649079|649080|649081|649082|649083|649084|649085|649086|649087|649088|649089|649090|649091|649092|649093|649094|649095|649096|649097|649098|649099|649100|649101|649102|649103|649104|649105|649106|649107|649108|649109|649110|649111|649112|649113|649114|649115|649116|649117|649118|649119|649120|649121|649122|649123|649124|649125|649126|649127|649128|649129|649130|650922|650959|650962|650990|653149|653176|653180|653184|653258|653260|653580|653582|653589|653591|653661|653674|653676|653681|653684|677217|691064|691068|691072|691074|694641|694645|694648|694650|694655|694657|694658|694661|695128|695864|697434|697435|697437|697438|697440|697443|705749|705751|705752|705753|705754|708127|708128|708129|717264|717266|719727|728971|728972|728973|728974|733286|733295|742702|742707|742708|747422|747431|747433|757887|757891|757892|757896|760921|763071|763075|763077|763079|763083|763087|773404|773411|774717|776710|776835|777259|781247|781250|781252|786533|786534|786535|790213|790214|792014|792015|792016|792017|795194|798328|804995|804996|819146|821380|821381|821382|821383|821384|822205|825988|825989|825990|825991|825992|825993|825994|825995|825996|825997|825998|825999|826000|826001|826002|826003|826004|826005|826006|826007|826008|826009|826010|826011|826012|826013|826014|826015|826016|826017|826018|826019|826020|826021|826022|826023|826024|826025|826026|826027|826028|826029|826030|826031|826032|826033|826034|826035|826036|826037|826038|826039|826040|826041|826042|826043|826044|826045|826046|826047|826048|826049|826050|848911|848912|848913|848914|848915|848916|848917|848918|848919|848920|848921|848922|848923|848924|848925|848926|848927|848928|848929|848930|848931|848932|848933|848934|848935|848936|848937|848938|848939|848940|848941|848942|848943|848944|848945|848946|848947|848948|848949|848950|848951|848952|848953|848954|848955|848956|848957|848958|848959|848960|848961|848962|848963|848964|848965|848966|848967|848968|848969|848970|848971|848972|848973|848974|848975|848976|848977|848978|848979|848980|848981|850847|850849|850894|851863|851865|851867|851869|851871|851873|852405|852408|852411|852414|853009|853010|853011|853012|884222|884260|887008|887009|887010|887021|920679|922639|922640|922641|922642|922643|922644|922645|922646|922647|922648|922649|922650|922651|922652|929360|929361|929362|929363|929364|929365|929366|929367|929368|929369|929370|929371|929372|929373|929374|929375|929376|929377|929378|929379|929380|929381|929382|929383|929384|929385|929386|931211|931212|931213|931214|931215|931216|931217|931218|931219|931220|931221|931222|931223|931224|931225|931226|931227|931228|931229|931230|931231|931232|931233|931234|931235|931236|931237|931238|931239|931240|931241|931242|931243|931244|939153|939154|939155|939156|939157|939158|939159|939160|939161|939162|939163|939164|939165|939166|939167|939168|939169|939170|939171|939172|939880|940520|940521|940703|941264|941265|941266|941267|941268|941269|942690|942691|942692|942693|942694|942695|942696|942697|942698|942699|942700|942701|942702|942703|942704|942705|942706|942707|942708|942709|942710|942711|942712|942713|942714|942715|942716|951282|951283|951284|951285|951286|951287|951288|951289|951290|951291|951292|952997|952998|952999|953000|953001|953002|953003|953004|953005|953006|958999|959000|959001|959002|959003|959004|959005|959006|959007|959008|959009|959010|959011|959632|960329|960330|960331|960332|960333|960334|960335|960336|960467|960954|960955|960956|961354|963186|964198", "text": "Bethlem myopathy 1" }, { - "baseId": "32189|32190|32195|32196|32197|32199|32200|32203|32205|32207|32216|32217|32218|32219|32221|38594|38595|45577|45578|99707|99720|99730|99745|99746|99763|99764|99766|99767|99768|99796|99829|100811|100822|100838|100856|100862|100867|100868|100875|100877|100878|100885|100888|100889|100890|100897|134262|134270|134271|172217|172262|190060|191040|192311|192311|193113|204973|260941|264978|266712|268930|269203|269985|270234|272656|272740|272804|272823|272923|273883|274174|404758|443198|450899|470796|471298|488657|493510|538966|608972|612111|621016|622477|622869|622870|622925|649089|918756|918757|918758|920422|961354|964697", + "upstreamId": "32189|32190|32195|32196|32197|32199|32200|32203|32205|32207|32216|32217|32218|32219|32221|38594|38595|45577|45578|99707|99720|99730|99745|99746|99763|99764|99766|99767|99768|99796|99829|100811|100822|100838|100856|100862|100867|100868|100875|100877|100878|100885|100888|100889|100890|100897|134262|134270|134271|172217|172262|190060|191040|192311|192311|193113|204973|260941|264978|266712|268930|269203|269985|270234|272656|272740|272804|272823|272923|273883|274174|404758|443198|450899|470796|471298|488657|493510|538966|608972|612111|621016|622477|622869|622870|622925|649089|918756|918757|918758|920422|961354|964697", "text": "Ullrich congenital muscular dystrophy 1" }, { - "baseId": "32201|32206|32214|32219|32220|100856", + "upstreamId": "32201|32206|32214|32219|32220|100856", "text": "Ullrich congenital muscular dystrophy 1, autosomal dominant" }, { - "baseId": "32203|99804|99805|99806|99808|99813|99815|99816|99822|99823|99827|99829|99831|99832|99833|99836|99837|99838|99846|99847|99849|99850|99852|99853|99854|99856|99857|99858|99861|99862|99863|134263|134264|172275|177169|177638|190797|191204|191784|191785|191892|193116|193274|193278|193279|193281|193284|193491|193492|257549|257572|260246|265291|265548|266421|266447|266474|266476|266535|266700|266852|267353|267567|268327|268792|269052|269213|269324|269430|269958|270283|270684|271059|272175|272318|272542|274578|274958|274959|275174|337114|337116|337120|337122|337124|337126|337128|337133|337135|337138|346846|346849|346852|346855|346863|346864|346865|346868|346875|346885|346886|350915|350917|350919|350922|350924|350925|350926|350927|350929|350930|350939|350940|350943|350944|350946|351916|351917|351919|351920|351921|351924|351926|351927|351928|351931|351936|351937|351940|351941|353597|353598", + "upstreamId": "32203|99804|99805|99806|99808|99813|99815|99816|99822|99823|99827|99829|99831|99832|99833|99836|99837|99838|99846|99847|99849|99850|99852|99853|99854|99856|99857|99858|99861|99862|99863|134263|134264|172275|177169|177638|190797|191204|191784|191785|191892|193116|193274|193278|193279|193281|193284|193491|193492|257549|257572|260246|265291|265548|266421|266447|266474|266476|266535|266700|266852|267353|267567|268327|268792|269052|269213|269324|269430|269958|270283|270684|271059|272175|272318|272542|274578|274958|274959|275174|337114|337116|337120|337122|337124|337126|337128|337133|337135|337138|346846|346849|346852|346855|346863|346864|346865|346868|346875|346885|346886|350915|350917|350919|350922|350924|350925|350926|350927|350929|350930|350939|350940|350943|350944|350946|351916|351917|351919|351920|351921|351924|351926|351927|351928|351931|351936|351937|351940|351941|353597|353598", "text": "Myosclerosis" }, { - "baseId": "32203|32207|38599|71511|99694|99705|99706|99707|99709|99710|99711|99712|99714|99716|99721|99722|99725|99727|99730|99732|99739|99741|99743|99744|99745|99746|99747|99748|99750|99751|99753|99754|99755|99756|99761|99763|99765|99766|99767|99768|99769|99770|99771|99772|99773|99774|99775|99779|99781|99782|99784|99785|99799|99804|99805|99806|99808|99813|99815|99816|99822|99823|99827|99829|99831|99832|99833|99835|99836|99837|99838|99840|99846|99847|99849|99850|99851|99852|99853|99854|99855|99856|99857|99858|99861|99862|99863|100800|100801|100802|100803|100804|100806|100807|100808|100809|100810|100812|100813|100814|100815|100816|100817|100819|100820|100821|100822|100824|100825|100828|100829|100832|100833|100834|100835|100836|100837|100838|100841|100842|100843|100845|100847|100850|100852|100857|100862|100867|100868|100875|100876|100877|100878|100883|100884|100885|100888|100889|100890|100891|100894|100895|100896|100897|100898|100899|100901|100902|100903|100906|100907|100908|100909|100910|100911|100912|100913|100914|100915|100916|100917|100918|100919|100921|134261|134262|134263|134264|134268|134270|134272|172209|172214|172217|172218|172219|172257|172260|172266|172274|172275|176948|176949|177080|177169|177211|177342|177635|177638|177639|177642|177644|177645|190061|190062|190064|190797|191204|191363|191784|191785|191892|192311|192312|193116|193274|193278|193279|193280|193281|193284|193490|193491|193492|193541|193841|193937|194109|194110|194114|194115|194138|194193|194194|194195|194240|194396|194576|194577|194598|194645|194922|194923|195327|195328|195953|196229|196248|196249|196251|226467|237190|250681|250684|250688|250690|250691|250692|250695|250696|257521|257533|257534|257537|257540|257549|257554|257558|257571|257572|260246|260862|265291|265356|265496|265546|265548|265851|265852|265978|266057|266079|266201|266353|266421|266432|266447|266474|266476|266535|266682|266700|266766|266852|266882|266910|266911|266920|267011|267026|267128|267131|267251|267268|267276|267284|267310|267353|267405|267476|267479|267492|267516|267552|267567|267652|267697|267880|267926|267933|268128|268301|268327|268333|268346|268366|268732|268792|269011|269028|269052|269066|269072|269202|269204|269213|269287|269295|269324|269386|269430|269485|269550|269571|269590|269690|269701|269718|269811|269831|269875|269876|269933|269955|269958|269963|270047|270224|270235|270238|270259|270278|270283|270457|270684|270702|270720|271059|271061|271993|272025|272141|272171|272175|272183|272318|272352|272515|272542|272635|272638|272678|272680|272753|272839|272850|272866|272880|272917|273073|273114|273354|273575|273594|273909|274129|274174|274322|274398|274427|274432|274523|274574|274578|274717|274807|274846|274908|274958|274959|275164|275165|275174|275448|285394|285395|285396|285405|285407|285411|285415|285419|285424|285426|285434|285436|285443|285444|285449|285453|285457|285458|286060|286062|286068|286069|286070|286080|286081|286083|286088|286089|286094|286096|286107|286109|286114|286116|286119|288362|288363|288364|288367|288369|288377|288387|288394|288418|288428|288438|288440|288451|288452|288455|288470|288786|288787|288788|288804|288806|288809|288810|288812|288815|288816|288817|288819|337067|337069|337074|337077|337089|337091|337093|337094|337097|337098|337100|337102|337106|337107|337112|337114|337116|337120|337122|337124|337126|337128|337133|337135|337138|346821|346826|346827|346829|346832|346835|346838|346839|346842|346843|346846|346849|346852|346855|346863|346864|346865|346868|346875|346885|346886|350883|350886|350887|350890|350891|350894|350895|350897|350902|350903|350905|350906|350908|350910|350912|350914|350915|350917|350919|350920|350922|350924|350925|350926|350927|350929|350930|350939|350940|350943|350944|350946|351894|351897|351898|351899|351900|351903|351905|351910|351911|351912|351913|351914|351915|351916|351917|351919|351920|351921|351924|351926|351927|351928|351931|351936|351937|351940|351941|353592|353597|353598|366245|366256|378497|421371|421374|422367|443194|443195|469813|470802|470822|470827|488944|489016|490973|491437|491732|493223|493510|507446|508324|512498|517990|533962|560517|561121|561176|586497|588220|588749|589523|620675|620742|620924|629646|629653|649072|694638|694661|733286|733295|776710|777259|826016|826024|826037|848927|848938|848963|848974|884218|884219|884220|884221|884222|884223|884224|884225|884226|884227|884228|884229|884230|884231|884232|884233|884234|884235|884236|884237|884238|884239|884240|884241|884242|884243|884244|884245|884246|884247|884248|884249|884250|884251|884252|884253|884254|884255|884256|884257|884258|884259|884260|884261|884262|884263|886982|886983|886984|886985|886986|886987|886988|886989|886990|886991|886992|886993|886994|886995|886996|886997|886998|886999|887000|887001|887002|887003|887004|887005|887006|887007|887008|887009|887010|887011|887012|887013|887014|887015|887016|887017|887018|887019|887020|887021|887022|887023|887024|887025|887026|887027|887321|887322|887323|887324|887533|887534|887535|887536|887537|887538|887539|887540|887541|887542|887543|887544|887545|887546|887547|887548|887549|961546", + "upstreamId": "32203|32207|38599|71511|99694|99705|99706|99707|99709|99710|99711|99712|99714|99716|99721|99722|99725|99727|99730|99732|99739|99741|99743|99744|99745|99746|99747|99748|99750|99751|99753|99754|99755|99756|99761|99763|99765|99766|99767|99768|99769|99770|99771|99772|99773|99774|99775|99779|99781|99782|99784|99785|99799|99804|99805|99806|99808|99813|99815|99816|99822|99823|99827|99829|99831|99832|99833|99835|99836|99837|99838|99840|99846|99847|99849|99850|99851|99852|99853|99854|99855|99856|99857|99858|99861|99862|99863|100800|100801|100802|100803|100804|100806|100807|100808|100809|100810|100812|100813|100814|100815|100816|100817|100819|100820|100821|100822|100824|100825|100828|100829|100832|100833|100834|100835|100836|100837|100838|100841|100842|100843|100845|100847|100850|100852|100857|100862|100867|100868|100875|100876|100877|100878|100883|100884|100885|100888|100889|100890|100891|100894|100895|100896|100897|100898|100899|100901|100902|100903|100906|100907|100908|100909|100910|100911|100912|100913|100914|100915|100916|100917|100918|100919|100921|134261|134262|134263|134264|134268|134270|134272|172209|172214|172217|172218|172219|172257|172260|172266|172274|172275|176948|176949|177080|177169|177211|177342|177635|177638|177639|177642|177644|177645|190061|190062|190064|190797|191204|191363|191784|191785|191892|192311|192312|193116|193274|193278|193279|193280|193281|193284|193490|193491|193492|193541|193841|193937|194109|194110|194114|194115|194138|194193|194194|194195|194240|194396|194576|194577|194598|194645|194922|194923|195327|195328|195953|196229|196248|196249|196251|226467|237190|250681|250684|250688|250690|250691|250692|250695|250696|257521|257533|257534|257537|257540|257549|257554|257558|257571|257572|260246|260862|265291|265356|265496|265546|265548|265851|265852|265978|266057|266079|266201|266353|266421|266432|266447|266474|266476|266535|266682|266700|266766|266852|266882|266910|266911|266920|267011|267026|267128|267131|267251|267268|267276|267284|267310|267353|267405|267476|267479|267492|267516|267552|267567|267652|267697|267880|267926|267933|268128|268301|268327|268333|268346|268366|268732|268792|269011|269028|269052|269066|269072|269202|269204|269213|269287|269295|269324|269386|269430|269485|269550|269571|269590|269690|269701|269718|269811|269831|269875|269876|269933|269955|269958|269963|270047|270224|270235|270238|270259|270278|270283|270457|270684|270702|270720|271059|271061|271993|272025|272141|272171|272175|272183|272318|272352|272515|272542|272635|272638|272678|272680|272753|272839|272850|272866|272880|272917|273073|273114|273354|273575|273594|273909|274129|274174|274322|274398|274427|274432|274523|274574|274578|274717|274807|274846|274908|274958|274959|275164|275165|275174|275448|285394|285395|285396|285405|285407|285411|285415|285419|285424|285426|285434|285436|285443|285444|285449|285453|285457|285458|286060|286062|286068|286069|286070|286080|286081|286083|286088|286089|286094|286096|286107|286109|286114|286116|286119|288362|288363|288364|288367|288369|288377|288387|288394|288418|288428|288438|288440|288451|288452|288455|288470|288786|288787|288788|288804|288806|288809|288810|288812|288815|288816|288817|288819|337067|337069|337074|337077|337089|337091|337093|337094|337097|337098|337100|337102|337106|337107|337112|337114|337116|337120|337122|337124|337126|337128|337133|337135|337138|346821|346826|346827|346829|346832|346835|346838|346839|346842|346843|346846|346849|346852|346855|346863|346864|346865|346868|346875|346885|346886|350883|350886|350887|350890|350891|350894|350895|350897|350902|350903|350905|350906|350908|350910|350912|350914|350915|350917|350919|350920|350922|350924|350925|350926|350927|350929|350930|350939|350940|350943|350944|350946|351894|351897|351898|351899|351900|351903|351905|351910|351911|351912|351913|351914|351915|351916|351917|351919|351920|351921|351924|351926|351927|351928|351931|351936|351937|351940|351941|353592|353597|353598|366245|366256|378497|421371|421374|422367|443194|443195|469813|470802|470822|470827|488944|489016|490973|491437|491732|493223|493510|507446|508324|512498|517990|533962|560517|561121|561176|586497|588220|588749|589523|620675|620742|620924|629646|629653|649072|694638|694661|733286|733295|776710|777259|826016|826024|826037|848927|848938|848963|848974|884218|884219|884220|884221|884222|884223|884224|884225|884226|884227|884228|884229|884230|884231|884232|884233|884234|884235|884236|884237|884238|884239|884240|884241|884242|884243|884244|884245|884246|884247|884248|884249|884250|884251|884252|884253|884254|884255|884256|884257|884258|884259|884260|884261|884262|884263|886982|886983|886984|886985|886986|886987|886988|886989|886990|886991|886992|886993|886994|886995|886996|886997|886998|886999|887000|887001|887002|887003|887004|887005|887006|887007|887008|887009|887010|887011|887012|887013|887014|887015|887016|887017|887018|887019|887020|887021|887022|887023|887024|887025|887026|887027|887321|887322|887323|887324|887533|887534|887535|887536|887537|887538|887539|887540|887541|887542|887543|887544|887545|887546|887547|887548|887549|961546", "text": "Collagen VI-related myopathy" }, { - "baseId": "32204|32207|172274|257554|266712|268930|272823|350920|469813|493510|493510|608973|608974|887013|919941", + "upstreamId": "32204|32207|172274|257554|266712|268930|272823|350920|469813|493510|493510|608973|608974|887013|919941", "text": "Myosclerosis, autosomal recessive" }, { - "baseId": "32204|38598|38599", + "upstreamId": "32204|38598|38599", "text": "BETHLEM MYOPATHY 1, AUTOSOMAL RECESSIVE" }, { - "baseId": "32222|32223|32224|32225|32226|32227|32228|32229|32230|32231|32232|38593|524745|537853|637947|946472|967188|967189|967190|983673", + "upstreamId": "32222|32223|32224|32225|32226|32227|32228|32229|32230|32231|32232|38593|524745|537853|637947|946472|967188|967189|967190|983673", "text": "Ehlers-Danlos syndrome, classic type I" }, { - "baseId": "32224|32227|32235|32236|32237|32272|32289|32309|32382|38593|44597|44598|44600|44604|44605|44609|44612|44621|44624|47468|85246|87923|140562|140563|140566|140567|140568|140570|140571|140572|140574|140575|140577|140578|140579|140582|140583|140585|140586|140587|140588|140590|140591|140592|140593|140595|140596|140597|140598|140599|140600|140601|140602|140604|140605|140606|140607|140608|140609|140610|140611|140612|140613|140614|140615|140616|140617|140618|140620|140621|140622|140623|140624|140627|140628|140629|140630|140631|140632|140633|140635|140636|140637|140638|140640|140641|140642|140643|140644|140646|140647|140648|140649|140651|140652|140654|140655|140658|140660|140661|140662|140664|140665|140666|140667|140668|140671|165529|165530|178495|178497|178498|178594|178596|191856|192176|192811|193889|193892|194097|194215|194565|194613|194698|195202|196151|205008|205759|209493|209494|209495|209497|209498|209499|209500|209501|209502|209505|209507|209508|209512|209516|209517|209518|209519|209520|209521|209522|209523|209525|209527|209528|209529|209533|209534|209535|209538|209539|209540|209541|209542|209548|209555|209556|209557|209560|209562|209563|209569|209570|209572|209575|209576|209578|209579|209580|209581|209962|209964|209966|209967|209968|209970|209971|209972|209973|209974|209975|209978|209979|209982|209985|209986|209987|209988|209989|209990|209993|209994|209995|209996|209997|209998|210000|210001|210003|210005|210006|210008|210011|210014|210015|210016|210017|210018|210022|210023|210024|210024|210026|210028|210029|210031|210032|210035|210036|210037|210041|210042|210043|210044|210046|210047|210048|210051|210052|210053|210054|210055|210059|210062|210063|210064|210065|210066|210067|210068|210069|210070|210071|210072|210076|210078|210079|210083|210084|210087|210088|210089|210090|210091|210093|210094|210096|210100|210102|210106|210108|210109|210113|210114|210115|210117|210118|210119|210120|210122|210124|210125|210128|210130|210131|210134|210135|210136|210137|210138|210142|210144|210148|213575|213576|217340|217341|217343|221806|224247|224365|238580|238581|238582|238583|238584|238585|240512|240514|240515|240516|240517|240518|240519|240520|240522|240524|250467|252982|253410|253412|253420|253424|253434|253455|258231|258233|258234|258526|258530|258532|258533|258537|258542|258544|258545|258548|258549|258558|259715|259882|264322|265335|265723|266139|267364|267387|267390|269223|270042|270149|273679|283559|283566|283568|286226|286241|286243|286575|286579|303626|303634|303636|307100|307468|307488|307490|307495|307496|307502|307509|307524|307547|311704|311705|311706|311710|311711|311726|311732|311733|311987|311991|311998|312000|312001|312006|312019|317251|317263|317291|317298|317305|317318|317327|317367|317369|317660|317667|317688|317696|317714|317716|317731|317754|317766|317768|317798|317820|317828|317839|359684|359685|359796|359798|359913|361194|362443|365961|366205|366218|366219|366224|366226|366244|366270|366764|366790|369301|369302|369317|369676|370003|370022|370028|370056|370077|370539|370540|370812|370818|370835|370837|371437|372439|372466|372488|372533|372549|392269|392270|392364|392365|392366|392369|392372|392426|392428|392431|392444|392452|392478|392483|392492|392494|392507|392515|392516|396638|396642|396645|396647|396649|396655|396660|396673|396681|396687|396698|396700|396777|396780|396843|396845|396858|396859|396867|396885|396888|396891|396896|396959|396961|396964|396972|396980|396982|396983|396985|396995|396998|397004|397011|397018|397019|397273|397280|397288|397289|405513|405514|405516|405522|407274|407278|407590|407591|407595|407596|407598|407599|407601|413586|413953|413955|413955|413961|413963|415167|415170|415172|421350|421721|421722|421723|425770|432281|433414|433429|433430|433431|433432|433433|433436|433439|433442|433443|434575|441152|441154|441155|443112|443119|444179|444394|444396|444397|444398|444403|444408|448364|450138|450143|450147|450151|450156|450160|450164|450315|450316|450319|450329|450332|450334|450338|450348|450356|450361|450363|450364|450365|450366|450368|450369|450433|450436|450441|450443|450454|450457|450458|450462|450467|456859|457069|457072|457073|457076|457077|457081|457082|457084|457089|457090|457093|457096|457591|457602|457606|457615|457621|457645|457647|457662|457664|457676|457692|457699|457703|457707|457708|457712|457717|457721|457725|457727|457734|458044|458049|458052|458055|458058|458060|458063|458075|458084|458086|458091|458097|458647|458650|458767|458769|458774|458778|458782|458783|458791|458793|458796|458800|458803|458806|458807|458822|458841|458844|458850|459162|459164|459166|459175|459176|459178|459182|459190|459193|459194|459196|459197|459198|459200|459202|459203|459204|459206|459207|459209|459211|459213|459214|459215|459216|459218|459221|459223|459227|459230|459232|459240|459248|459256|459623|459626|459633|459636|459646|459653|459654|459656|459659|459661|459664|459669|459674|459683|480512|480515|480516|480520|480521|485740|485742|485763|485794|485814|485859|488362|492431|495362|499426|499841|502341|502350|502366|502372|502561|502562|502666|502696|502700|502767|502788|502801|502803|503064|503074|503096|509017|509018|509019|509020|509466|509470|509471|509475|509485|509488|509489|510002|510004|510009|510012|510018|510020|510023|510025|510028|510030|510038|510039|511732|513917|517447|517450|517525|517536|517537|517545|517575|517577|517580|517584|517585|517589|517744|517745|517749|522310|522932|522933|522934|523111|523112|523117|523119|523125|523128|523147|523149|523153|523379|523382|523479|523480|523483|523484|523488|523493|523495|523498|523827|524269|524270|524276|524287|524293|524299|524300|524301|524302|524303|524305|524310|524319|524391|524435|524439|524521|524522|524524|524530|524533|524537|524541|524549|524553|524560|524562|524564|524573|524575|524580|524582|524723|524726|524728|524740|524744|524745|524747|524753|524754|524883|524885|524892|524898|524900|524902|524910|524911|524914|524915|537546|537706|537822|537846|537852|537853|537854|538344|552419|552439|557428|557792|557794|557796|557841|557843|557845|557847|557849|557851|559013|559015|559017|559019|559496|559498|559500|559502|559504|559506|559508|561817|561825|561827|561831|561832|561836|562266|562267|562274|562275|562282|562292|562304|562596|562950|562951|562954|562956|562961|562963|562973|562974|562976|562977|562982|562984|562985|562986|563233|563699|563702|563703|563708|563714|563719|563720|563726|563728|563729|563730|563888|564501|564509|564520|564522|564524|565707|565709|565711|565719|565720|565721|565723|565727|565731|567221|567227|567236|567247|567250|567251|567262|567269|568750|568755|568756|568761|568764|568772|568775|568779|568780|568784|568785|568793|568804|568809|609467|609678|609723|609725|611363|612850|612851|613461|613859|614236|614237|614338|619932|624232|629211|629212|629213|629214|629215|629216|629217|629218|629219|629220|629221|629222|629223|629224|629225|629226|629227|629228|629229|629230|629231|629232|629233|629234|629235|629236|636453|636454|636455|636456|636457|636458|636459|636460|636461|636462|636463|636464|636465|636466|636467|636468|636469|636470|636471|636472|637939|637940|637941|637942|637943|637944|637945|637946|637947|637948|637949|637950|637951|637952|637953|637954|637955|637956|637957|637958|637959|637960|637961|637962|637963|637964|637965|637966|637967|637968|637969|637970|637971|637972|637973|637974|637975|637976|637977|637978|637979|637980|637981|637982|637983|637984|637985|637986|637987|637988|637989|637990|637991|637992|637993|637994|637995|637996|637997|637998|650904|650905|651710|651711|651732|651774|651837|651891|651915|651920|651922|651990|652016|652041|652139|652141|652145|655813|672350|683462|684059|684060|687396|687397|687399|687400|687401|687402|687408|687412|689695|689696|689697|689939|692630|692631|692633|695373|695428|700294|700295|700298|700299|700300|700882|711847|711848|722744|722746|730524|736995|744381|744459|750851|751529|759734|762734|766477|766480|767246|767248|767253|767256|775200|777731|779252|781098|782955|782959|789375|790759|790760|790761|790762|790763|790859|801113|816315|819093|819925|820091|820093|820094|820095|825493|825494|825495|825496|825497|825498|825499|825500|825501|825502|825503|825504|825505|825506|825507|825508|825509|825510|825511|825512|825513|825514|825515|825516|833946|833947|833948|833949|833950|833951|833952|833953|833954|833955|833956|833957|833958|833959|833960|833961|833962|833963|833964|833965|833966|833967|833968|833969|833970|833971|833972|833973|833974|833975|833976|833977|833978|833979|833980|835744|835745|835746|835747|835748|835749|835750|835751|835752|835753|835754|835755|835756|835757|835758|835759|835760|835761|835762|835763|835764|835765|835766|835767|835768|835769|835770|835771|835772|835773|835774|835775|835776|835777|835778|835779|835780|835781|835782|835783|835784|835785|835786|835787|835788|835789|835790|835791|835792|835793|835794|835795|835796|850823|850866|850868|851141|851165|851167|851247|851728|852168|852170|852394|852499|901480|901482|901483|901484|901485|901486|901487|901488|901489|903350|917035|922495|922496|922497|924935|924936|924937|924938|924939|924940|924941|924942|924943|924944|924945|924946|924947|924948|924949|924950|924951|925466|925467|925468|925469|925470|925471|925472|925473|925474|931060|931061|931062|934034|934035|934036|934037|934038|934039|934040|934041|934042|934043|934044|934628|934629|934630|934631|934632|934633|934634|934635|934636|934637|934638|934639|934640|939869|940139|940140|940683|940884|940885|940930|940931|940932|942522|942523|942524|942525|942526|942527|942528|942529|942530|942531|942532|945795|945796|945797|945798|945799|945800|945801|945802|946472|946473|946474|946475|946476|946477|946478|946479|946480|946481|952864|952865|952866|952867|955255|955256|955257|955258|955259|955260|955261|955739|955740|955741|955742|955743|955744|955745|955746|955747|955748|955749|955750|955751|955752|959614|959615|959616|960459|960675|960676|960677|960678|960679|961291|961335|966611|970900|970901|976739|980443|980463", + "upstreamId": "32224|32227|32235|32236|32237|32272|32289|32309|32382|38593|44597|44598|44600|44604|44605|44609|44612|44621|44624|47468|85246|87923|140562|140563|140566|140567|140568|140570|140571|140572|140574|140575|140577|140578|140579|140582|140583|140585|140586|140587|140588|140590|140591|140592|140593|140595|140596|140597|140598|140599|140600|140601|140602|140604|140605|140606|140607|140608|140609|140610|140611|140612|140613|140614|140615|140616|140617|140618|140620|140621|140622|140623|140624|140627|140628|140629|140630|140631|140632|140633|140635|140636|140637|140638|140640|140641|140642|140643|140644|140646|140647|140648|140649|140651|140652|140654|140655|140658|140660|140661|140662|140664|140665|140666|140667|140668|140671|165529|165530|178495|178497|178498|178594|178596|191856|192176|192811|193889|193892|194097|194215|194565|194613|194698|195202|196151|205008|205759|209493|209494|209495|209497|209498|209499|209500|209501|209502|209505|209507|209508|209512|209516|209517|209518|209519|209520|209521|209522|209523|209525|209527|209528|209529|209533|209534|209535|209538|209539|209540|209541|209542|209548|209555|209556|209557|209560|209562|209563|209569|209570|209572|209575|209576|209578|209579|209580|209581|209962|209964|209966|209967|209968|209970|209971|209972|209973|209974|209975|209978|209979|209982|209985|209986|209987|209988|209989|209990|209993|209994|209995|209996|209997|209998|210000|210001|210003|210005|210006|210008|210011|210014|210015|210016|210017|210018|210022|210023|210024|210024|210026|210028|210029|210031|210032|210035|210036|210037|210041|210042|210043|210044|210046|210047|210048|210051|210052|210053|210054|210055|210059|210062|210063|210064|210065|210066|210067|210068|210069|210070|210071|210072|210076|210078|210079|210083|210084|210087|210088|210089|210090|210091|210093|210094|210096|210100|210102|210106|210108|210109|210113|210114|210115|210117|210118|210119|210120|210122|210124|210125|210128|210130|210131|210134|210135|210136|210137|210138|210142|210144|210148|213575|213576|217340|217341|217343|221806|224247|224365|238580|238581|238582|238583|238584|238585|240512|240514|240515|240516|240517|240518|240519|240520|240522|240524|250467|252982|253410|253412|253420|253424|253434|253455|258231|258233|258234|258526|258530|258532|258533|258537|258542|258544|258545|258548|258549|258558|259715|259882|264322|265335|265723|266139|267364|267387|267390|269223|270042|270149|273679|283559|283566|283568|286226|286241|286243|286575|286579|303626|303634|303636|307100|307468|307488|307490|307495|307496|307502|307509|307524|307547|311704|311705|311706|311710|311711|311726|311732|311733|311987|311991|311998|312000|312001|312006|312019|317251|317263|317291|317298|317305|317318|317327|317367|317369|317660|317667|317688|317696|317714|317716|317731|317754|317766|317768|317798|317820|317828|317839|359684|359685|359796|359798|359913|361194|362443|365961|366205|366218|366219|366224|366226|366244|366270|366764|366790|369301|369302|369317|369676|370003|370022|370028|370056|370077|370539|370540|370812|370818|370835|370837|371437|372439|372466|372488|372533|372549|392269|392270|392364|392365|392366|392369|392372|392426|392428|392431|392444|392452|392478|392483|392492|392494|392507|392515|392516|396638|396642|396645|396647|396649|396655|396660|396673|396681|396687|396698|396700|396777|396780|396843|396845|396858|396859|396867|396885|396888|396891|396896|396959|396961|396964|396972|396980|396982|396983|396985|396995|396998|397004|397011|397018|397019|397273|397280|397288|397289|405513|405514|405516|405522|407274|407278|407590|407591|407595|407596|407598|407599|407601|413586|413953|413955|413955|413961|413963|415167|415170|415172|421350|421721|421722|421723|425770|432281|433414|433429|433430|433431|433432|433433|433436|433439|433442|433443|434575|441152|441154|441155|443112|443119|444179|444394|444396|444397|444398|444403|444408|448364|450138|450143|450147|450151|450156|450160|450164|450315|450316|450319|450329|450332|450334|450338|450348|450356|450361|450363|450364|450365|450366|450368|450369|450433|450436|450441|450443|450454|450457|450458|450462|450467|456859|457069|457072|457073|457076|457077|457081|457082|457084|457089|457090|457093|457096|457591|457602|457606|457615|457621|457645|457647|457662|457664|457676|457692|457699|457703|457707|457708|457712|457717|457721|457725|457727|457734|458044|458049|458052|458055|458058|458060|458063|458075|458084|458086|458091|458097|458647|458650|458767|458769|458774|458778|458782|458783|458791|458793|458796|458800|458803|458806|458807|458822|458841|458844|458850|459162|459164|459166|459175|459176|459178|459182|459190|459193|459194|459196|459197|459198|459200|459202|459203|459204|459206|459207|459209|459211|459213|459214|459215|459216|459218|459221|459223|459227|459230|459232|459240|459248|459256|459623|459626|459633|459636|459646|459653|459654|459656|459659|459661|459664|459669|459674|459683|480512|480515|480516|480520|480521|485740|485742|485763|485794|485814|485859|488362|492431|495362|499426|499841|502341|502350|502366|502372|502561|502562|502666|502696|502700|502767|502788|502801|502803|503064|503074|503096|509017|509018|509019|509020|509466|509470|509471|509475|509485|509488|509489|510002|510004|510009|510012|510018|510020|510023|510025|510028|510030|510038|510039|511732|513917|517447|517450|517525|517536|517537|517545|517575|517577|517580|517584|517585|517589|517744|517745|517749|522310|522932|522933|522934|523111|523112|523117|523119|523125|523128|523147|523149|523153|523379|523382|523479|523480|523483|523484|523488|523493|523495|523498|523827|524269|524270|524276|524287|524293|524299|524300|524301|524302|524303|524305|524310|524319|524391|524435|524439|524521|524522|524524|524530|524533|524537|524541|524549|524553|524560|524562|524564|524573|524575|524580|524582|524723|524726|524728|524740|524744|524745|524747|524753|524754|524883|524885|524892|524898|524900|524902|524910|524911|524914|524915|537546|537706|537822|537846|537852|537853|537854|538344|552419|552439|557428|557792|557794|557796|557841|557843|557845|557847|557849|557851|559013|559015|559017|559019|559496|559498|559500|559502|559504|559506|559508|561817|561825|561827|561831|561832|561836|562266|562267|562274|562275|562282|562292|562304|562596|562950|562951|562954|562956|562961|562963|562973|562974|562976|562977|562982|562984|562985|562986|563233|563699|563702|563703|563708|563714|563719|563720|563726|563728|563729|563730|563888|564501|564509|564520|564522|564524|565707|565709|565711|565719|565720|565721|565723|565727|565731|567221|567227|567236|567247|567250|567251|567262|567269|568750|568755|568756|568761|568764|568772|568775|568779|568780|568784|568785|568793|568804|568809|609467|609678|609723|609725|611363|612850|612851|613461|613859|614236|614237|614338|619932|624232|629211|629212|629213|629214|629215|629216|629217|629218|629219|629220|629221|629222|629223|629224|629225|629226|629227|629228|629229|629230|629231|629232|629233|629234|629235|629236|636453|636454|636455|636456|636457|636458|636459|636460|636461|636462|636463|636464|636465|636466|636467|636468|636469|636470|636471|636472|637939|637940|637941|637942|637943|637944|637945|637946|637947|637948|637949|637950|637951|637952|637953|637954|637955|637956|637957|637958|637959|637960|637961|637962|637963|637964|637965|637966|637967|637968|637969|637970|637971|637972|637973|637974|637975|637976|637977|637978|637979|637980|637981|637982|637983|637984|637985|637986|637987|637988|637989|637990|637991|637992|637993|637994|637995|637996|637997|637998|650904|650905|651710|651711|651732|651774|651837|651891|651915|651920|651922|651990|652016|652041|652139|652141|652145|655813|672350|683462|684059|684060|687396|687397|687399|687400|687401|687402|687408|687412|689695|689696|689697|689939|692630|692631|692633|695373|695428|700294|700295|700298|700299|700300|700882|711847|711848|722744|722746|730524|736995|744381|744459|750851|751529|759734|762734|766477|766480|767246|767248|767253|767256|775200|777731|779252|781098|782955|782959|789375|790759|790760|790761|790762|790763|790859|801113|816315|819093|819925|820091|820093|820094|820095|825493|825494|825495|825496|825497|825498|825499|825500|825501|825502|825503|825504|825505|825506|825507|825508|825509|825510|825511|825512|825513|825514|825515|825516|833946|833947|833948|833949|833950|833951|833952|833953|833954|833955|833956|833957|833958|833959|833960|833961|833962|833963|833964|833965|833966|833967|833968|833969|833970|833971|833972|833973|833974|833975|833976|833977|833978|833979|833980|835744|835745|835746|835747|835748|835749|835750|835751|835752|835753|835754|835755|835756|835757|835758|835759|835760|835761|835762|835763|835764|835765|835766|835767|835768|835769|835770|835771|835772|835773|835774|835775|835776|835777|835778|835779|835780|835781|835782|835783|835784|835785|835786|835787|835788|835789|835790|835791|835792|835793|835794|835795|835796|850823|850866|850868|851141|851165|851167|851247|851728|852168|852170|852394|852499|901480|901482|901483|901484|901485|901486|901487|901488|901489|903350|917035|922495|922496|922497|924935|924936|924937|924938|924939|924940|924941|924942|924943|924944|924945|924946|924947|924948|924949|924950|924951|925466|925467|925468|925469|925470|925471|925472|925473|925474|931060|931061|931062|934034|934035|934036|934037|934038|934039|934040|934041|934042|934043|934044|934628|934629|934630|934631|934632|934633|934634|934635|934636|934637|934638|934639|934640|939869|940139|940140|940683|940884|940885|940930|940931|940932|942522|942523|942524|942525|942526|942527|942528|942529|942530|942531|942532|945795|945796|945797|945798|945799|945800|945801|945802|946472|946473|946474|946475|946476|946477|946478|946479|946480|946481|952864|952865|952866|952867|955255|955256|955257|955258|955259|955260|955261|955739|955740|955741|955742|955743|955744|955745|955746|955747|955748|955749|955750|955751|955752|959614|959615|959616|960459|960675|960676|960677|960678|960679|961291|961335|966611|970900|970901|976739|980443|980463", "text": "Ehlers-Danlos syndrome, classic type" }, { - "baseId": "32233|192100|252474|267220|361186|443983|491272", + "upstreamId": "32233|192100|252474|267220|361186|443983|491272", "text": "Multiple epiphyseal dysplasia 6" }, { - "baseId": "32234|171284|267220|443983|491272|919045|919046", + "upstreamId": "32234|171284|267220|443983|491272|919045|919046", "text": "Stickler syndrome, type 4" }, { - "baseId": "32238|32239|32240|32241|32242|32243|32244|32245|32246|32247|32248|32249|32250|32251|32252|32253|32254|32255|32256|32257|32258|32259|32261|32262|32263|32264|32265|32266|32267|32268|32270|44625|44627|44628|85239|106846|106847|106848|106849|106850|106851|106852|106853|106854|106855|106856|106857|106858|106859|106860|106861|106862|106863|106864|106865|106866|106867|106868|106869|106870|106871|106872|106873|106874|106876|106877|106878|106879|106880|106881|106882|106883|106884|106885|106886|106887|106888|106889|106890|106891|106892|106893|106894|106895|106896|106897|106898|106899|106900|106901|106902|106903|106904|106905|106906|106907|106908|106909|106910|106911|106912|106913|106914|106915|106916|106917|106918|106919|106920|106921|106922|106923|106924|106925|106926|106927|106928|106929|106930|106931|106932|106933|106934|106935|106936|106937|106938|106939|106940|106941|106942|106943|106944|106945|106946|106947|106948|106949|106950|106951|106952|106953|106954|106955|106956|106957|106958|106959|106960|106961|106962|106963|106964|106965|106966|106967|106968|106969|106970|106971|106972|106973|106974|106976|106977|106978|106979|106980|106981|106982|106983|106984|106985|106986|106987|106988|106989|106990|106991|106992|106993|106994|106995|106996|106997|106998|106999|107000|107001|107002|107003|107004|107005|107006|107007|107008|107009|107010|107011|107012|107013|107014|107015|107016|107017|107018|107019|107020|107021|107022|107023|107024|107025|107026|107027|107028|107029|107030|107031|107032|107033|107034|107035|107036|107037|107038|107039|107040|107041|107042|107043|107044|107045|107046|107047|107048|107049|107050|107051|107052|107053|107054|107055|107056|107057|107058|107059|107060|107061|107062|107063|107064|107065|107066|107067|107068|107069|107070|107071|107072|107073|107074|107075|107076|107077|107078|107079|107080|107081|107082|107083|107084|107085|107086|107087|107088|107089|107090|107091|107092|107093|107094|107095|107096|107097|107098|107099|107100|107101|107102|107103|107104|107105|107106|107107|107108|107109|107110|107111|107112|107113|107114|107115|107116|107117|107118|107119|107120|107121|107122|107123|107124|107125|107126|107127|107128|107129|107130|107131|107132|107133|107134|107135|107136|107137|107138|107139|107140|107141|107142|107143|107144|107145|107146|107147|107148|107149|107150|107151|107152|107153|107156|107157|107158|107159|107160|107161|107162|107163|107164|107165|107166|107167|107168|107169|107170|107171|107172|107173|107174|107175|107176|107177|107178|107179|107180|107181|107182|107183|107184|107185|107186|107187|107188|107189|107190|107191|107192|107193|107194|107195|107196|107197|107198|107199|107200|107201|107202|107203|107204|107205|107206|107207|107208|107209|107210|107211|107212|107213|107214|107215|107216|107217|107218|107219|107220|107221|107222|107223|107224|107225|107226|107227|107228|107229|107230|107231|107232|107233|107234|107235|107236|107237|107238|107239|107240|107241|107242|107243|140544|140545|140546|140547|140548|140550|140551|140552|140553|140554|140556|140557|140559|140560|140561|171072|171073|171074|171075|178493|178494|192615|193008|194126|194638|196759|196760|196761|196763|196764|196767|196770|196771|196772|196775|196776|196779|196780|196782|196786|196789|196790|196791|196792|196794|196799|196800|196801|196804|196805|196806|196808|196809|196810|196812|196816|196817|196817|196819|196821|205423|213532|215235|224303|227191|228909|228910|231509|238578|238579|250445|258189|258192|258193|258194|258195|258196|258198|258199|258202|258204|258208|258212|258213|258215|258216|258223|258225|258226|283480|283481|283495|283496|283497|283504|283505|283511|283518|283523|283526|283527|283539|283540|284171|284172|284177|284178|284179|284186|284189|284190|284191|284192|284194|284195|286092|286095|286123|286124|286126|286128|286129|286443|286459|286460|286477|286479|286480|286488|286490|286496|286498|286502|286512|286516|286521|286524|286525|359399|359451|361853|365926|365940|365943|365954|366184|366187|366192|366201|366204|366214|391381|392210|392228|392241|392244|392245|392250|392256|392257|392261|392330|392332|392334|392351|392352|392354|392359|392392|392396|392399|392400|392401|392403|392409|392410|392416|392422|392457|392464|392472|392473|392475|405508|414857|414858|421346|421349|424967|425455|433424|433427|443099|443101|443106|443108|450095|450099|450106|450113|450114|450122|450132|450135|450137|450263|450284|450286|450288|450294|450295|450297|450298|450299|450300|450301|450303|450306|450309|450310|450312|450314|450325|450326|450331|450394|450408|450411|450416|450417|450419|450420|450423|450425|450429|450431|486908|486910|486911|496222|496260|499796|509436|509437|509442|509446|509449|509455|509459|511070|516167|517400|517402|517410|517419|517425|517428|517431|517439|517441|517496|517504|517506|517508|517514|517516|517522|517523|517559|517567|517569|517571|517572|517715|517716|517720|517722|517724|517731|517733|517738|537696|537697|537698|537700|537701|537702|537703|537704|537705|552284|557776|557778|557780|557782|557784|557786|557788|557790|557827|557829|557831|557833|557835|557837|557839|558637|559007|559009|559011|559482|559484|559486|559488|559490|559492|559494|610625|613459|614234|614235|614875|616206|616207|616214|621106|624228|629181|629182|629183|629184|629185|629186|629187|629188|629189|629190|629191|629192|629193|629194|629195|629196|629197|629198|629199|629200|629201|629202|629203|629204|629205|629206|629207|629208|629209|629210|650889|650890|650901|650921|650928|650929|650933|654237|677410|683459|683460|685127|686088|686089|689689|689692|689693|690989|759176|762722|762729|774685|778911|790137|790138|794279|795094|799270|816306|816307|819092|825468|825469|825470|825471|825472|825473|825474|825475|825476|825477|825478|825479|825480|825481|825482|825483|825484|825485|825486|825487|825488|825489|825490|825491|825492|850862|850864|851382|851384|883039|883040|883041|883042|883043|883044|883045|883046|883047|883048|883049|883050|883051|883052|883053|887219|887220|887221|887222|887223|907561|907629|907659|907660|907670|907687|907702|907715|922488|922489|922490|922491|922492|922493|922494|931054|931055|931056|931057|931058|931059|940679|940680|940681|940682|942513|942514|942515|942516|942517|942518|942519|942520|942521|952859|952860|952861|952862|952863|961257|961591|964714|965445|967168|967169|975769|983458", + "upstreamId": "32238|32239|32240|32241|32242|32243|32244|32245|32246|32247|32248|32249|32250|32251|32252|32253|32254|32255|32256|32257|32258|32259|32261|32262|32263|32264|32265|32266|32267|32268|32270|44625|44627|44628|85239|106846|106847|106848|106849|106850|106851|106852|106853|106854|106855|106856|106857|106858|106859|106860|106861|106862|106863|106864|106865|106866|106867|106868|106869|106870|106871|106872|106873|106874|106876|106877|106878|106879|106880|106881|106882|106883|106884|106885|106886|106887|106888|106889|106890|106891|106892|106893|106894|106895|106896|106897|106898|106899|106900|106901|106902|106903|106904|106905|106906|106907|106908|106909|106910|106911|106912|106913|106914|106915|106916|106917|106918|106919|106920|106921|106922|106923|106924|106925|106926|106927|106928|106929|106930|106931|106932|106933|106934|106935|106936|106937|106938|106939|106940|106941|106942|106943|106944|106945|106946|106947|106948|106949|106950|106951|106952|106953|106954|106955|106956|106957|106958|106959|106960|106961|106962|106963|106964|106965|106966|106967|106968|106969|106970|106971|106972|106973|106974|106976|106977|106978|106979|106980|106981|106982|106983|106984|106985|106986|106987|106988|106989|106990|106991|106992|106993|106994|106995|106996|106997|106998|106999|107000|107001|107002|107003|107004|107005|107006|107007|107008|107009|107010|107011|107012|107013|107014|107015|107016|107017|107018|107019|107020|107021|107022|107023|107024|107025|107026|107027|107028|107029|107030|107031|107032|107033|107034|107035|107036|107037|107038|107039|107040|107041|107042|107043|107044|107045|107046|107047|107048|107049|107050|107051|107052|107053|107054|107055|107056|107057|107058|107059|107060|107061|107062|107063|107064|107065|107066|107067|107068|107069|107070|107071|107072|107073|107074|107075|107076|107077|107078|107079|107080|107081|107082|107083|107084|107085|107086|107087|107088|107089|107090|107091|107092|107093|107094|107095|107096|107097|107098|107099|107100|107101|107102|107103|107104|107105|107106|107107|107108|107109|107110|107111|107112|107113|107114|107115|107116|107117|107118|107119|107120|107121|107122|107123|107124|107125|107126|107127|107128|107129|107130|107131|107132|107133|107134|107135|107136|107137|107138|107139|107140|107141|107142|107143|107144|107145|107146|107147|107148|107149|107150|107151|107152|107153|107156|107157|107158|107159|107160|107161|107162|107163|107164|107165|107166|107167|107168|107169|107170|107171|107172|107173|107174|107175|107176|107177|107178|107179|107180|107181|107182|107183|107184|107185|107186|107187|107188|107189|107190|107191|107192|107193|107194|107195|107196|107197|107198|107199|107200|107201|107202|107203|107204|107205|107206|107207|107208|107209|107210|107211|107212|107213|107214|107215|107216|107217|107218|107219|107220|107221|107222|107223|107224|107225|107226|107227|107228|107229|107230|107231|107232|107233|107234|107235|107236|107237|107238|107239|107240|107241|107242|107243|140544|140545|140546|140547|140548|140550|140551|140552|140553|140554|140556|140557|140559|140560|140561|171072|171073|171074|171075|178493|178494|192615|193008|194126|194638|196759|196760|196761|196763|196764|196767|196770|196771|196772|196775|196776|196779|196780|196782|196786|196789|196790|196791|196792|196794|196799|196800|196801|196804|196805|196806|196808|196809|196810|196812|196816|196817|196817|196819|196821|205423|213532|215235|224303|227191|228909|228910|231509|238578|238579|250445|258189|258192|258193|258194|258195|258196|258198|258199|258202|258204|258208|258212|258213|258215|258216|258223|258225|258226|283480|283481|283495|283496|283497|283504|283505|283511|283518|283523|283526|283527|283539|283540|284171|284172|284177|284178|284179|284186|284189|284190|284191|284192|284194|284195|286092|286095|286123|286124|286126|286128|286129|286443|286459|286460|286477|286479|286480|286488|286490|286496|286498|286502|286512|286516|286521|286524|286525|359399|359451|361853|365926|365940|365943|365954|366184|366187|366192|366201|366204|366214|391381|392210|392228|392241|392244|392245|392250|392256|392257|392261|392330|392332|392334|392351|392352|392354|392359|392392|392396|392399|392400|392401|392403|392409|392410|392416|392422|392457|392464|392472|392473|392475|405508|414857|414858|421346|421349|424967|425455|433424|433427|443099|443101|443106|443108|450095|450099|450106|450113|450114|450122|450132|450135|450137|450263|450284|450286|450288|450294|450295|450297|450298|450299|450300|450301|450303|450306|450309|450310|450312|450314|450325|450326|450331|450394|450408|450411|450416|450417|450419|450420|450423|450425|450429|450431|486908|486910|486911|496222|496260|499796|509436|509437|509442|509446|509449|509455|509459|511070|516167|517400|517402|517410|517419|517425|517428|517431|517439|517441|517496|517504|517506|517508|517514|517516|517522|517523|517559|517567|517569|517571|517572|517715|517716|517720|517722|517724|517731|517733|517738|537696|537697|537698|537700|537701|537702|537703|537704|537705|552284|557776|557778|557780|557782|557784|557786|557788|557790|557827|557829|557831|557833|557835|557837|557839|558637|559007|559009|559011|559482|559484|559486|559488|559490|559492|559494|610625|613459|614234|614235|614875|616206|616207|616214|621106|624228|629181|629182|629183|629184|629185|629186|629187|629188|629189|629190|629191|629192|629193|629194|629195|629196|629197|629198|629199|629200|629201|629202|629203|629204|629205|629206|629207|629208|629209|629210|650889|650890|650901|650921|650928|650929|650933|654237|677410|683459|683460|685127|686088|686089|689689|689692|689693|690989|759176|762722|762729|774685|778911|790137|790138|794279|795094|799270|816306|816307|819092|825468|825469|825470|825471|825472|825473|825474|825475|825476|825477|825478|825479|825480|825481|825482|825483|825484|825485|825486|825487|825488|825489|825490|825491|825492|850862|850864|851382|851384|883039|883040|883041|883042|883043|883044|883045|883046|883047|883048|883049|883050|883051|883052|883053|887219|887220|887221|887222|887223|907561|907629|907659|907660|907670|907687|907702|907715|922488|922489|922490|922491|922492|922493|922494|931054|931055|931056|931057|931058|931059|940679|940680|940681|940682|942513|942514|942515|942516|942517|942518|942519|942520|942521|952859|952860|952861|952862|952863|961257|961591|964714|965445|967168|967169|975769|983458", "text": "Ehlers-Danlos syndrome, type 4" }, { - "baseId": "32244", + "upstreamId": "32244", "text": "COLLAGEN TYPE III POLYMORPHISM" }, { - "baseId": "32260", + "upstreamId": "32260", "text": "EHLERS-DANLOS SYNDROME, NONVASCULAR VARIANT" }, { - "baseId": "32271|32272|32289|32290|32295|32309|44596|44598|44599|44600|44604|44609|44612|44624|193366|193367|252978|252979|252980|252981|252982|252983|252984|265335|266139|267364|269223|272375|303611|303618|303621|303624|303625|303626|303634|303636|303638|303639|303647|303648|303656|307066|307071|307080|307081|307082|307099|307100|307102|307104|311941|311959|311968|311978|311983|311985|311986|311987|311988|311991|311998|312000|312001|312006|312007|312009|312011|312019|312022|312024|312025|312030|312033|359685|369301|369302|370028|414024|425770|457591|457676|457725|457734|502172|523379|623145|626173|636458|692332|722743|898519|898520|898521|898522|898523|898524|898525|898526|898527|898528|898529|898530|898531|898532|898533|898534|898535|898536|898537|898538|898539|898540|898541|898542|898543|898544|898545|898546|898547|898548|898549|898550|898551|898552|898553|898554|898555|900419|900420", + "upstreamId": "32271|32272|32289|32290|32295|32309|44596|44598|44599|44600|44604|44609|44612|44624|193366|193367|252978|252979|252980|252981|252982|252983|252984|265335|266139|267364|269223|272375|303611|303618|303621|303624|303625|303626|303634|303636|303638|303639|303647|303648|303656|307066|307071|307080|307081|307082|307099|307100|307102|307104|311941|311959|311968|311978|311983|311985|311986|311987|311988|311991|311998|312000|312001|312006|312007|312009|312011|312019|312022|312024|312025|312030|312033|359685|369301|369302|370028|414024|425770|457591|457676|457725|457734|502172|523379|623145|626173|636458|692332|722743|898519|898520|898521|898522|898523|898524|898525|898526|898527|898528|898529|898530|898531|898532|898533|898534|898535|898536|898537|898538|898539|898540|898541|898542|898543|898544|898545|898546|898547|898548|898549|898550|898551|898552|898553|898554|898555|900419|900420", "text": "Ehlers-danlos syndrome, arthrochalasia type, 2" }, { - "baseId": "32272|32289|32309|32324|32330|32346|32348|32351|32361|32363|32367|32369|32373|32376|32382|32385|32386|44561|44562|44564|44566|44568|44570|44576|44578|44579|44580|44582|44584|44586|44589|44590|44592|44594|44595|44597|44598|44598|44600|44604|44605|44609|44612|44621|44624|87923|171603|191856|192612|193168|193768|194124|194611|194637|194657|194718|205787|213575|213576|215539|227394|237223|237388|237811|256278|259882|259882|260184|260185|260186|260801|265335|265559|266015|266139|266253|267364|267390|267843|268765|268771|269223|269476|270586|271557|272218|273413|303626|303634|303636|307100|311987|311991|311998|312000|312001|312006|312019|329145|339256|339270|339284|339288|339290|345157|345158|345159|346556|346557|359684|359685|360259|369301|369302|369317|369676|370003|370028|371437|375315|375317|376207|376210|376307|376313|378450|378455|378467|407274|407278|410071|410074|413474|413949|413950|413952|413953|413955|413955|413958|413961|413961|413963|413963|413968|413969|413970|413972|413974|413975|413976|413977|413979|413980|413981|413982|413983|413985|413986|413987|413988|413989|413990|413991|413992|413993|413994|413995|413996|413997|414000|414001|414003|414004|414005|414006|414007|414008|414009|414010|414011|414013|414014|414015|414017|414018|414019|414020|414021|414022|414023|414024|414025|414026|414027|414028|414029|414030|414035|415570|424019|424020|424567|424901|425770|426231|432336|432337|433414|438049|441152|441154|441155|441974|441976|441977|441978|444179|445808|445818|445819|445823|445824|456859|457069|457072|457073|457076|457077|457081|457082|457084|457089|457090|457093|457096|457591|457602|457606|457615|457621|457645|457647|457662|457664|457676|457692|457699|457703|457707|457708|457712|457717|457721|457725|457727|457734|458044|458049|458052|458055|458058|458060|458063|458075|458084|458086|458091|458097|466988|466991|466997|466999|467001|467007|467008|467015|467017|467023|467026|467027|467030|467032|467034|467036|467037|467039|467040|467045|467048|467049|467054|467142|467145|467928|467932|467935|467937|467938|467943|467945|467948|467951|467953|467957|467959|467961|467962|467965|467966|468188|468189|468196|468197|468206|468209|468211|468219|468221|468224|468229|468237|468238|468242|468386|468388|468394|468395|468403|468404|468411|468419|468422|468424|468426|468430|468432|468435|468438|468441|468451|468454|468461|468463|468469|468470|468471|468476|472258|480512|482137|482140|488774|489343|489950|490876|490881|492431|495362|495846|502561|502562|506041|506226|506513|511732|514720|514721|522310|522932|522933|522934|523111|523111|523112|523117|523119|523125|523128|523147|523149|523153|523379|523382|523479|523480|523483|523484|523488|523493|523495|523498|530489|530490|530491|531238|531242|531243|531244|531250|531251|531253|531254|531258|531259|531261|531402|531409|531411|531412|531414|531418|531485|531493|531507|531517|531520|531523|531524|531526|531530|531726|531729|531730|531733|531734|531736|531743|531745|531747|531748|536944|537820|537822|538240|538242|538243|552439|552469|552470|561817|561825|561827|561831|561832|561836|562266|562267|562274|562275|562282|562292|562304|563888|564501|564509|564520|564522|564524|567221|567227|567236|567247|567250|567251|567262|567269|569252|569262|569263|569267|569277|569278|569279|569285|569286|569297|569308|569309|569311|571262|571263|571264|571268|571279|571284|571286|571292|571294|571296|571297|571631|571634|571642|571643|571644|571647|571649|571650|571651|571663|571664|571672|571678|571684|571692|571701|574515|574516|574517|574518|574519|574520|574521|574522|574523|574524|574526|574528|574530|574532|577651|586605|590457|609678|612446|614678|623347|623348|624865|636453|636454|636455|636456|636457|636458|636459|636460|636461|636462|636463|636464|636465|636466|636467|636468|636469|636470|636471|636472|646185|646186|646187|646188|646189|646190|646191|646192|646193|646194|646195|646196|646197|646198|646199|646200|646201|646202|646203|646204|646205|646206|646207|646208|646209|646210|646211|646212|646213|646214|646215|646216|646217|646218|646219|646220|646221|646222|651710|651711|651732|651774|652817|652818|652822|652986|652989|652991|652993|652996|652997|652999|653292|653295|653296|655813|672350|688794|690179|694121|694122|695373|695759|700294|700295|700298|700299|700300|704212|704215|704217|715541|715543|722744|722746|730524|744381|750851|766477|766480|775200|778266|779252|782955|782959|788160|788167|789086|789087|791787|791788|791789|791790|791791|791792|791793|792675|798718|804851|819925|821106|821107|821108|833946|833947|833948|833949|833950|833951|833952|833953|833954|833955|833956|833957|833958|833959|833960|833961|833962|833963|833964|833965|833966|833967|833968|833969|833970|833971|833972|833973|833974|833975|833976|833977|833978|833979|833980|845609|845610|845611|845612|845613|845614|845615|845616|845617|845618|845619|845620|845621|845622|845623|845624|845625|845626|845627|845628|845629|845630|845631|845632|845633|845634|845635|845636|845637|845638|845639|845640|845641|845642|845643|845644|851165|851167|851731|851733|851735|851737|852221|852223|852226|852394|852762|852882|852883|852885|852889|852891|858311|858312|858313|877936|906202|924935|924936|924937|924938|924939|924940|924941|924942|924943|924944|924945|924946|924947|924948|924949|924950|924951|928369|928370|928371|928372|928373|928374|928375|928376|928377|928378|928379|928380|928381|928382|928383|928384|934034|934035|934036|934037|934038|934039|934040|934041|934042|934043|934044|938024|938025|938026|938027|938028|938029|938030|938031|938032|938033|938034|940884|940885|941185|941186|945795|945796|945797|945798|945799|945800|945801|945802|950027|950028|950029|950030|950031|950032|950033|950034|950035|950036|950037|950038|950039|950040|950041|950042|950043|955255|955256|955257|955258|955259|955260|955261|958187|958188|958189|958190|958191|958192|960224|960225|960226|960227|961335|964485|964486|964690|971084", + "upstreamId": "32272|32289|32309|32324|32330|32346|32348|32351|32361|32363|32367|32369|32373|32376|32382|32385|32386|44561|44562|44564|44566|44568|44570|44576|44578|44579|44580|44582|44584|44586|44589|44590|44592|44594|44595|44597|44598|44598|44600|44604|44605|44609|44612|44621|44624|87923|171603|191856|192612|193168|193768|194124|194611|194637|194657|194718|205787|213575|213576|215539|227394|237223|237388|237811|256278|259882|259882|260184|260185|260186|260801|265335|265559|266015|266139|266253|267364|267390|267843|268765|268771|269223|269476|270586|271557|272218|273413|303626|303634|303636|307100|311987|311991|311998|312000|312001|312006|312019|329145|339256|339270|339284|339288|339290|345157|345158|345159|346556|346557|359684|359685|360259|369301|369302|369317|369676|370003|370028|371437|375315|375317|376207|376210|376307|376313|378450|378455|378467|407274|407278|410071|410074|413474|413949|413950|413952|413953|413955|413955|413958|413961|413961|413963|413963|413968|413969|413970|413972|413974|413975|413976|413977|413979|413980|413981|413982|413983|413985|413986|413987|413988|413989|413990|413991|413992|413993|413994|413995|413996|413997|414000|414001|414003|414004|414005|414006|414007|414008|414009|414010|414011|414013|414014|414015|414017|414018|414019|414020|414021|414022|414023|414024|414025|414026|414027|414028|414029|414030|414035|415570|424019|424020|424567|424901|425770|426231|432336|432337|433414|438049|441152|441154|441155|441974|441976|441977|441978|444179|445808|445818|445819|445823|445824|456859|457069|457072|457073|457076|457077|457081|457082|457084|457089|457090|457093|457096|457591|457602|457606|457615|457621|457645|457647|457662|457664|457676|457692|457699|457703|457707|457708|457712|457717|457721|457725|457727|457734|458044|458049|458052|458055|458058|458060|458063|458075|458084|458086|458091|458097|466988|466991|466997|466999|467001|467007|467008|467015|467017|467023|467026|467027|467030|467032|467034|467036|467037|467039|467040|467045|467048|467049|467054|467142|467145|467928|467932|467935|467937|467938|467943|467945|467948|467951|467953|467957|467959|467961|467962|467965|467966|468188|468189|468196|468197|468206|468209|468211|468219|468221|468224|468229|468237|468238|468242|468386|468388|468394|468395|468403|468404|468411|468419|468422|468424|468426|468430|468432|468435|468438|468441|468451|468454|468461|468463|468469|468470|468471|468476|472258|480512|482137|482140|488774|489343|489950|490876|490881|492431|495362|495846|502561|502562|506041|506226|506513|511732|514720|514721|522310|522932|522933|522934|523111|523111|523112|523117|523119|523125|523128|523147|523149|523153|523379|523382|523479|523480|523483|523484|523488|523493|523495|523498|530489|530490|530491|531238|531242|531243|531244|531250|531251|531253|531254|531258|531259|531261|531402|531409|531411|531412|531414|531418|531485|531493|531507|531517|531520|531523|531524|531526|531530|531726|531729|531730|531733|531734|531736|531743|531745|531747|531748|536944|537820|537822|538240|538242|538243|552439|552469|552470|561817|561825|561827|561831|561832|561836|562266|562267|562274|562275|562282|562292|562304|563888|564501|564509|564520|564522|564524|567221|567227|567236|567247|567250|567251|567262|567269|569252|569262|569263|569267|569277|569278|569279|569285|569286|569297|569308|569309|569311|571262|571263|571264|571268|571279|571284|571286|571292|571294|571296|571297|571631|571634|571642|571643|571644|571647|571649|571650|571651|571663|571664|571672|571678|571684|571692|571701|574515|574516|574517|574518|574519|574520|574521|574522|574523|574524|574526|574528|574530|574532|577651|586605|590457|609678|612446|614678|623347|623348|624865|636453|636454|636455|636456|636457|636458|636459|636460|636461|636462|636463|636464|636465|636466|636467|636468|636469|636470|636471|636472|646185|646186|646187|646188|646189|646190|646191|646192|646193|646194|646195|646196|646197|646198|646199|646200|646201|646202|646203|646204|646205|646206|646207|646208|646209|646210|646211|646212|646213|646214|646215|646216|646217|646218|646219|646220|646221|646222|651710|651711|651732|651774|652817|652818|652822|652986|652989|652991|652993|652996|652997|652999|653292|653295|653296|655813|672350|688794|690179|694121|694122|695373|695759|700294|700295|700298|700299|700300|704212|704215|704217|715541|715543|722744|722746|730524|744381|750851|766477|766480|775200|778266|779252|782955|782959|788160|788167|789086|789087|791787|791788|791789|791790|791791|791792|791793|792675|798718|804851|819925|821106|821107|821108|833946|833947|833948|833949|833950|833951|833952|833953|833954|833955|833956|833957|833958|833959|833960|833961|833962|833963|833964|833965|833966|833967|833968|833969|833970|833971|833972|833973|833974|833975|833976|833977|833978|833979|833980|845609|845610|845611|845612|845613|845614|845615|845616|845617|845618|845619|845620|845621|845622|845623|845624|845625|845626|845627|845628|845629|845630|845631|845632|845633|845634|845635|845636|845637|845638|845639|845640|845641|845642|845643|845644|851165|851167|851731|851733|851735|851737|852221|852223|852226|852394|852762|852882|852883|852885|852889|852891|858311|858312|858313|877936|906202|924935|924936|924937|924938|924939|924940|924941|924942|924943|924944|924945|924946|924947|924948|924949|924950|924951|928369|928370|928371|928372|928373|928374|928375|928376|928377|928378|928379|928380|928381|928382|928383|928384|934034|934035|934036|934037|934038|934039|934040|934041|934042|934043|934044|938024|938025|938026|938027|938028|938029|938030|938031|938032|938033|938034|940884|940885|941185|941186|945795|945796|945797|945798|945799|945800|945801|945802|950027|950028|950029|950030|950031|950032|950033|950034|950035|950036|950037|950038|950039|950040|950041|950042|950043|955255|955256|955257|955258|955259|955260|955261|958187|958188|958189|958190|958191|958192|960224|960225|960226|960227|961335|964485|964486|964690|971084", "text": "Osteogenesis imperfecta type I" }, { - "baseId": "32274|32282|32283|32292|32302|32303|32307|32317|32325|32327|32334|32351|32370|32380|32382|32384|32385|213575|213576|213576|271557|361022|413951|413953|413955|413957|413960|413963|413967|413971|413972|413973|413974|413978|413995|413998|414012|414016|424604|457703|624865|626173|636458|798592|861042|861043|919124|919125|919126|919127|919741|919742|919743|919744|919745|920246|920375|920376|920377|961029|964295|970242", + "upstreamId": "32274|32282|32283|32292|32302|32303|32307|32317|32325|32327|32334|32351|32370|32380|32382|32384|32385|213575|213576|213576|271557|361022|413951|413953|413955|413957|413960|413963|413967|413971|413972|413973|413974|413978|413995|413998|414012|414016|424604|457703|624865|626173|636458|798592|861042|861043|919124|919125|919126|919127|919741|919742|919743|919744|919745|920246|920375|920376|920377|961029|964295|970242", "text": "Osteogenesis imperfecta with normal sclerae, dominant form" }, { - "baseId": "32275|32286|32292|32298|32300|32304|32306|32311|32321|32322|32327|32335|32342|32351|32363|32369|32370|32371|32375|32388|213575|213576|413954|413955|413955|413956|413959|413962|413964|413965|413966|413983|413984|413991|413999|414000|414002|414031|414034|424568|511010|552120|625805|626173|636458|672333|672334|672335|672336|672337|672338|672339|672340|672341|672342|672343|672344|672345|672346|672347|672348|672349|672350|672351|970242", + "upstreamId": "32275|32286|32292|32298|32300|32304|32306|32311|32321|32322|32327|32335|32342|32351|32363|32369|32370|32371|32375|32388|213575|213576|413954|413955|413955|413956|413959|413962|413964|413965|413966|413983|413984|413991|413999|414000|414002|414031|414034|424568|511010|552120|625805|626173|636458|672333|672334|672335|672336|672337|672338|672339|672340|672341|672342|672343|672344|672345|672346|672347|672348|672349|672350|672351|970242", "text": "Osteogenesis imperfecta type III" }, { - "baseId": "32276", + "upstreamId": "32276", "text": "Osteogenesis imperfecta, mild" }, { - "baseId": "32277|32278|32279|32280|32281|32284|32285|32287|32288|32291|32293|32296|32301|32320|32323|32326|32328|32329|32330|32331|32332|32333|32336|32337|32338|32339|32340|32341|32345|32347|32349|32352|32353|32357|32358|32360|32362|32364|32365|32366|32368|32377|32383|49905|49906|213575|213576|213576|266139|353896|360337|417441|457721|488774|590285|636458|677285|677286|800833|971583|980381", + "upstreamId": "32277|32278|32279|32280|32281|32284|32285|32287|32288|32291|32293|32296|32301|32320|32323|32326|32328|32329|32330|32331|32332|32333|32336|32337|32338|32339|32340|32341|32345|32347|32349|32352|32353|32357|32358|32360|32362|32364|32365|32366|32368|32377|32383|49905|49906|213575|213576|213576|266139|353896|360337|417441|457721|488774|590285|636458|677285|677286|800833|971583|980381", "text": "Osteogenesis imperfecta, recessive perinatal lethal" }, { - "baseId": "32289|32351|32355|32376|44560|44561|44562|44563|44564|44565|44566|44567|44568|44569|44570|44571|44572|44573|44574|44575|44576|44577|44578|44579|44580|44581|44582|44583|44584|44585|44586|44587|44588|44589|44590|44591|44592|44593|44594|44595|44596|44597|44599|44600|44601|44602|44603|44604|44605|44606|44607|44608|44609|44610|44611|44612|44613|44614|44615|44616|44617|44618|44619|44620|44621|44622|44623|44624|192612|193168|193366|193367|193768|194657|195079|213576|215539|227394|237223|252978|252979|252980|252981|252982|252983|252984|256273|256274|256275|256278|260184|260939|265335|265559|266015|266139|267364|267843|268771|269223|269476|270586|271303|272375|273413|303611|303618|303621|303624|303625|303626|303634|303636|303638|303639|303647|303648|303656|307066|307071|307080|307081|307082|307099|307100|307102|307104|311941|311959|311968|311978|311983|311985|311986|311987|311988|311991|311998|312000|312001|312006|312007|312009|312011|312019|312022|312024|312025|312030|312033|329125|329132|329142|329144|329145|329146|329147|329148|329152|339233|339234|339244|339247|339253|339256|339258|339269|339270|339272|339284|339288|339290|339292|339298|345133|345136|345137|345141|345144|345151|345154|345156|345157|345158|345159|345162|345163|345166|345170|346514|346519|346527|346528|346530|346547|346548|346549|346556|346557|346561|346565|346566|359685|369301|369302|370028|376210|376306|378450|407275|410074|413980|425770|437662|441977|441985|457591|457725|457734|468197|468432|468451|468461|486181|487364|487944|495845|506041|506210|506546|506952|523379|531261|538242|550207|574522|577015|581944|581945|581946|581947|581948|581949|581950|615942|615943|623126|623163|623348|626173|652993|679004|679005|679006|679007|679008|679009|679010|679011|679012|679013|679014|679015|679016|679017|679018|679019|679020|679021|679022|679023|679024|679941|692332|694122|694124|695759|704212|704214|715541|722743|789166|845630|858273|858274|858275|858276|858279|858280|858281|858282|858283|858284|858285|858286|858287|858289|858290|858292|858293|858294|877916|877917|877918|877919|877920|877921|877922|877923|877924|877925|877926|877927|877928|877929|877930|877931|877932|877933|877934|877935|877936|877937|877938|877939|877940|877941|877942|877943|877944|877945|880547|880548|880549|880550|898519|898520|898521|898522|898523|898524|898525|898526|898527|898528|898529|898530|898531|898532|898533|898534|898535|898536|898537|898538|898539|898540|898541|898542|898543|898544|898545|898546|898547|898548|898549|898550|898551|898552|898553|898554|898555|900419|900420", + "upstreamId": "32289|32351|32355|32376|44560|44561|44562|44563|44564|44565|44566|44567|44568|44569|44570|44571|44572|44573|44574|44575|44576|44577|44578|44579|44580|44581|44582|44583|44584|44585|44586|44587|44588|44589|44590|44591|44592|44593|44594|44595|44596|44597|44599|44600|44601|44602|44603|44604|44605|44606|44607|44608|44609|44610|44611|44612|44613|44614|44615|44616|44617|44618|44619|44620|44621|44622|44623|44624|192612|193168|193366|193367|193768|194657|195079|213576|215539|227394|237223|252978|252979|252980|252981|252982|252983|252984|256273|256274|256275|256278|260184|260939|265335|265559|266015|266139|267364|267843|268771|269223|269476|270586|271303|272375|273413|303611|303618|303621|303624|303625|303626|303634|303636|303638|303639|303647|303648|303656|307066|307071|307080|307081|307082|307099|307100|307102|307104|311941|311959|311968|311978|311983|311985|311986|311987|311988|311991|311998|312000|312001|312006|312007|312009|312011|312019|312022|312024|312025|312030|312033|329125|329132|329142|329144|329145|329146|329147|329148|329152|339233|339234|339244|339247|339253|339256|339258|339269|339270|339272|339284|339288|339290|339292|339298|345133|345136|345137|345141|345144|345151|345154|345156|345157|345158|345159|345162|345163|345166|345170|346514|346519|346527|346528|346530|346547|346548|346549|346556|346557|346561|346565|346566|359685|369301|369302|370028|376210|376306|378450|407275|410074|413980|425770|437662|441977|441985|457591|457725|457734|468197|468432|468451|468461|486181|487364|487944|495845|506041|506210|506546|506952|523379|531261|538242|550207|574522|577015|581944|581945|581946|581947|581948|581949|581950|615942|615943|623126|623163|623348|626173|652993|679004|679005|679006|679007|679008|679009|679010|679011|679012|679013|679014|679015|679016|679017|679018|679019|679020|679021|679022|679023|679024|679941|692332|694122|694124|695759|704212|704214|715541|722743|789166|845630|858273|858274|858275|858276|858279|858280|858281|858282|858283|858284|858285|858286|858287|858289|858290|858292|858293|858294|877916|877917|877918|877919|877920|877921|877922|877923|877924|877925|877926|877927|877928|877929|877930|877931|877932|877933|877934|877935|877936|877937|877938|877939|877940|877941|877942|877943|877944|877945|880547|880548|880549|880550|898519|898520|898521|898522|898523|898524|898525|898526|898527|898528|898529|898530|898531|898532|898533|898534|898535|898536|898537|898538|898539|898540|898541|898542|898543|898544|898545|898546|898547|898548|898549|898550|898551|898552|898553|898554|898555|900419|900420", "text": "Osteogenesis imperfecta" }, { - "baseId": "32294", + "upstreamId": "32294", "text": "Osteogenesis imperfecta, atypical, with joint hypermobility" }, { - "baseId": "32297|45143|45144|612445", + "upstreamId": "32297|45143|45144|612445", "text": "Postmenopausal osteoporosis" }, { - "baseId": "32308|32310|32316|413949|976554", + "upstreamId": "32308|32310|32316|413949|976554", "text": "COMBINED OSTEOGENESIS IMPERFECTA AND EHLERS-DANLOS SYNDROME 2" }, { - "baseId": "32312|32313|32314|32315|32318|32319|44598|266139|636458", + "upstreamId": "32312|32313|32314|32315|32318|32319|44598|266139|636458", "text": "Ehlers-Danlos syndrome, cardiac valvular type" }, { - "baseId": "32350|32378|32389|33224|44561|44568|44579|44582|44586|44594|192612|193168|193768|194657|195079|215539|227394|237223|256273|256274|256275|256278|265559|266015|266139|267843|268771|269476|270586|271303|273413|303612|303655|307094|329125|329132|329142|329144|329145|329146|329147|329148|329152|339233|339234|339244|339247|339253|339256|339258|339269|339270|339272|339284|339288|339290|339292|339298|345133|345136|345137|345141|345144|345151|345154|345156|345157|345158|345159|345162|345163|345166|345170|346514|346519|346527|346528|346530|346547|346548|346549|346556|346557|346561|346565|346566|376210|376306|378450|410074|441977|441985|468197|468451|506041|506210|506546|506952|531261|538242|574522|623348|694122|694124|695759|704212|704214|715541|845630|877916|877917|877918|877919|877920|877921|877922|877923|877924|877925|877926|877927|877928|877929|877930|877931|877932|877933|877934|877935|877936|877937|877938|877939|877940|877941|877942|877943|877944|877945|880547|880548|880549|880550|961335|961515", + "upstreamId": "32350|32378|32389|33224|44561|44568|44579|44582|44586|44594|192612|193168|193768|194657|195079|215539|227394|237223|256273|256274|256275|256278|265559|266015|266139|267843|268771|269476|270586|271303|273413|303612|303655|307094|329125|329132|329142|329144|329145|329146|329147|329148|329152|339233|339234|339244|339247|339253|339256|339258|339269|339270|339272|339284|339288|339290|339292|339298|345133|345136|345137|345141|345144|345151|345154|345156|345157|345158|345159|345162|345163|345166|345170|346514|346519|346527|346528|346530|346547|346548|346549|346556|346557|346561|346565|346566|376210|376306|378450|410074|441977|441985|468197|468451|506041|506210|506546|506952|531261|538242|574522|623348|694122|694124|695759|704212|704214|715541|845630|877916|877917|877918|877919|877920|877921|877922|877923|877924|877925|877926|877927|877928|877929|877930|877931|877932|877933|877934|877935|877936|877937|877938|877939|877940|877941|877942|877943|877944|877945|880547|880548|880549|880550|961335|961515", "text": "Ehlers-Danlos syndrome, procollagen proteinase deficient" }, { - "baseId": "32354", + "upstreamId": "32354", "text": "Osteogenesis imperfecta, type III/IV" }, { - "baseId": "32356", + "upstreamId": "32356", "text": "OSTEOGENESIS IMPERFECTA, TYPE IIC" }, { - "baseId": "32359|32373", + "upstreamId": "32359|32373", "text": "Osteogenesis imperfecta type 1, mild" }, { - "baseId": "32365|263418", + "upstreamId": "32365|263418", "text": "27 conditions" }, { - "baseId": "32372|32379|32381", + "upstreamId": "32372|32379|32381", "text": "Bone mineral density variation quantitative trait locus" }, { - "baseId": "32374", + "upstreamId": "32374", "text": "Osteogenesis imperfecta type 2, thin-bone" }, { - "baseId": "32382", + "upstreamId": "32382", "text": "Fragile skin" }, { - "baseId": "32382|263274|264319|360939|360978|513917|513990|514027|514084", + "upstreamId": "32382|263274|264319|360939|360978|513917|513990|514027|514084", "text": "Joint hypermobility" }, { - "baseId": "32382", + "upstreamId": "32382", "text": "Bruising susceptibility" }, { - "baseId": "32386|44561|44568|44579|44582|44586|44594|48035|192612|193168|193768|194657|195079|215539|227394|237223|256273|256274|256275|256278|265559|266015|267843|268771|269476|270586|271303|273413|311991|329115|329116|329117|329118|329119|329120|329121|329125|329132|329133|329136|329137|329142|329144|329145|329146|329147|329148|329152|339233|339234|339236|339242|339244|339247|339248|339253|339256|339258|339269|339270|339272|339284|339288|339290|339292|339298|345133|345136|345137|345141|345143|345144|345151|345153|345154|345156|345157|345158|345159|345162|345163|345166|345170|346514|346516|346519|346527|346528|346530|346533|346537|346539|346540|346545|346547|346548|346549|346556|346557|346561|346565|346566|346569|376210|376306|378450|410074|414011|441977|441985|468197|468451|506041|506210|506546|506952|531261|538242|623348|694122|694124|695759|704212|704214|715541|845630|877916|877917|877918|877919|877920|877921|877922|877923|877924|877925|877926|877927|877928|877929|877930|877931|877932|877933|877934|877935|877936|877937|877938|877939|877940|877941|877942|877943|877944|877945|880547|880548|880549|880550|961335|971083", + "upstreamId": "32386|44561|44568|44579|44582|44586|44594|48035|192612|193168|193768|194657|195079|215539|227394|237223|256273|256274|256275|256278|265559|266015|267843|268771|269476|270586|271303|273413|311991|329115|329116|329117|329118|329119|329120|329121|329125|329132|329133|329136|329137|329142|329144|329145|329146|329147|329148|329152|339233|339234|339236|339242|339244|339247|339248|339253|339256|339258|339269|339270|339272|339284|339288|339290|339292|339298|345133|345136|345137|345141|345143|345144|345151|345153|345154|345156|345157|345158|345159|345162|345163|345166|345170|346514|346516|346519|346527|346528|346530|346533|346537|346539|346540|346545|346547|346548|346549|346556|346557|346561|346565|346566|346569|376210|376306|378450|410074|414011|441977|441985|468197|468451|506041|506210|506546|506952|531261|538242|623348|694122|694124|695759|704212|704214|715541|845630|877916|877917|877918|877919|877920|877921|877922|877923|877924|877925|877926|877927|877928|877929|877930|877931|877932|877933|877934|877935|877936|877937|877938|877939|877940|877941|877942|877943|877944|877945|880547|880548|880549|880550|961335|971083", "text": "Infantile cortical hyperostosis" }, { - "baseId": "32387|360337|410071|414026", + "upstreamId": "32387|360337|410071|414026", "text": "COMBINED OSTEOGENESIS IMPERFECTA AND EHLERS-DANLOS SYNDROME 1" }, { - "baseId": "32390|32393|32400|32405|32420|32424|193539|204429|267835|268588|270886|270894|310812|310813|310820|310829|310830|310831|310832|310842|310844|310848|310850|310852|310858|310859|310862|310864|310866|310868|310870|310878|310884|310887|310890|310892|310895|310899|310907|310918|310919|310928|310929|310930|310931|316068|316069|316072|316073|316074|316082|316090|316094|316099|316103|316111|316112|316114|316120|316133|316144|316148|316149|316156|316162|316169|316174|316175|316176|316177|316180|316181|316189|316190|316200|316201|316204|316205|316210|316220|316221|316223|316226|322169|322170|322172|322183|322185|322190|322191|322192|322196|322197|322199|322200|322212|322213|322218|322231|322232|322233|322236|322239|322240|322241|322242|322245|322246|322254|322260|322261|322266|322267|322274|322275|322276|322780|322783|322784|322785|322786|322789|322790|322801|322802|322803|322804|322806|322807|322808|322815|322816|322822|322831|322832|322845|322849|322876|322879|322880|322882|322887|322888|322890|322891|322892|322893|322894|322896|322900|338924|338933|348502|348504|348506|348515|352075|352090|352769|445013|537893|588569|615941|963164|966624", + "upstreamId": "32390|32393|32400|32405|32420|32424|193539|204429|267835|268588|270886|270894|310812|310813|310820|310829|310830|310831|310832|310842|310844|310848|310850|310852|310858|310859|310862|310864|310866|310868|310870|310878|310884|310887|310890|310892|310895|310899|310907|310918|310919|310928|310929|310930|310931|316068|316069|316072|316073|316074|316082|316090|316094|316099|316103|316111|316112|316114|316120|316133|316144|316148|316149|316156|316162|316169|316174|316175|316176|316177|316180|316181|316189|316190|316200|316201|316204|316205|316210|316220|316221|316223|316226|322169|322170|322172|322183|322185|322190|322191|322192|322196|322197|322199|322200|322212|322213|322218|322231|322232|322233|322236|322239|322240|322241|322242|322245|322246|322254|322260|322261|322266|322267|322274|322275|322276|322780|322783|322784|322785|322786|322789|322790|322801|322802|322803|322804|322806|322807|322808|322815|322816|322822|322831|322832|322845|322849|322876|322879|322880|322882|322887|322888|322890|322891|322892|322893|322894|322896|322900|338924|338933|348502|348504|348506|348515|352075|352090|352769|445013|537893|588569|615941|963164|966624", "text": "Spondyloepiphyseal dysplasia congenita" }, { - "baseId": "32391|32396|32398", + "upstreamId": "32391|32396|32398", "text": "Hypochondrogenesis" }, { - "baseId": "32392", + "upstreamId": "32392", "text": "Namaqualand hip dysplasia" }, { - "baseId": "32394|32397|32399|32404|32407|32412|32413|32421|32422|32423|32434|32437|99689|99690|99691|99692|177632|192310|194050|194592|194664|195109|195632|247081|254527|254529|254530|254531|254533|254534|254535|254540|254542|254543|254545|254548|254552|254554|254555|254556|254558|254559|254562|254563|254566|267804|267844|268275|269225|270512|271988|317256|317257|317259|317260|317264|317265|317266|317270|317272|317277|317278|324975|324976|324977|324987|324995|325000|325001|325004|325007|325014|325016|325017|325018|325020|325021|325022|325023|331093|331121|331130|331131|331132|331136|331137|331156|331162|331166|331169|331171|332678|332679|332683|332685|332690|332693|373063|390689|408664|421923|445007|503887|504176|504204|504206|504216|504453|504905|511011|537881|537882|537883|537884|537886|537887|537890|537892|537894|537897|537899|584158|585420|587799|589804|612192|623309|677295|679785|769129|791237|791238|791239|791240|791241|791242|791243|798655|839947|869891|869892|869893|869894|869895|869896|869897|869898|869899|869900|869901|869902|869903|869904|869905|869906|872244|872245|872246|872247|872248|872249|956878|976030", + "upstreamId": "32394|32397|32399|32404|32407|32412|32413|32421|32422|32423|32434|32437|99689|99690|99691|99692|177632|192310|194050|194592|194664|195109|195632|247081|254527|254529|254530|254531|254533|254534|254535|254540|254542|254543|254545|254548|254552|254554|254555|254556|254558|254559|254562|254563|254566|267804|267844|268275|269225|270512|271988|317256|317257|317259|317260|317264|317265|317266|317270|317272|317277|317278|324975|324976|324977|324987|324995|325000|325001|325004|325007|325014|325016|325017|325018|325020|325021|325022|325023|331093|331121|331130|331131|331132|331136|331137|331156|331162|331166|331169|331171|332678|332679|332683|332685|332690|332693|373063|390689|408664|421923|445007|503887|504176|504204|504206|504216|504453|504905|511011|537881|537882|537883|537884|537886|537887|537890|537892|537894|537897|537899|584158|585420|587799|589804|612192|623309|677295|679785|769129|791237|791238|791239|791240|791241|791242|791243|798655|839947|869891|869892|869893|869894|869895|869896|869897|869898|869899|869900|869901|869902|869903|869904|869905|869906|872244|872245|872246|872247|872248|872249|956878|976030", "text": "Stickler syndrome type 1" }, { - "baseId": "32401|32408|32409|32414|32415|433418|590305|612355", + "upstreamId": "32401|32408|32409|32414|32415|433418|590305|612355", "text": "Kniest dysplasia" }, { - "baseId": "32402|32406|32416|32417|32436|329273|353209|405614|411544|411545|411546|411547|411548|411549|443163|445013|540474|540475|540476|790195", + "upstreamId": "32402|32406|32416|32417|32436|329273|353209|405614|411544|411545|411546|411547|411548|411549|443163|445013|540474|540475|540476|790195", "text": "Spondylometaphyseal dysplasia" }, { - "baseId": "32403|32423|32425|32438|32439|32440|32441|624858", + "upstreamId": "32403|32423|32425|32438|32439|32440|32441|624858", "text": "Stickler syndrome, type I, nonsyndromic ocular" }, { - "baseId": "32405|32419|32424|32428|32430|32431|192903|818297", + "upstreamId": "32405|32419|32424|32428|32430|32431|192903|818297", "text": "Spondyloperipheral dysplasia-short ulna syndrome" }, { - "baseId": "32407", + "upstreamId": "32407", "text": "Czech dysplasia, metatarsal type" }, { - "baseId": "32410|32411|32422|32427|32442|360944|360945|432309|433421|481353|621380|621823|672024|919435|919436|919437|920316|920317", + "upstreamId": "32410|32411|32422|32427|32442|360944|360945|432309|433421|481353|621380|621823|672024|919435|919436|919437|920316|920317", "text": "Achondrogenesis type II" }, { - "baseId": "32418", + "upstreamId": "32418", "text": "Epiphyseal dysplasia, multiple, with myopia and conductive deafness" }, { - "baseId": "32422|861640", + "upstreamId": "32422|861640", "text": "COL2A1-related disorders" }, { - "baseId": "32426", + "upstreamId": "32426", "text": "Vitreoretinopathy with phalangeal epiphyseal dysplasia" }, { - "baseId": "32428|32429|152979", + "upstreamId": "32428|32429|152979", "text": "Platyspondylic dysplasia, Torrance type" }, { - "baseId": "32432|32433|38591", + "upstreamId": "32432|32433|38591", "text": "Avascular necrosis of the head of femur" }, { - "baseId": "32432|47638|263185", + "upstreamId": "32432|47638|263185", "text": "Coxa plana" }, { - "baseId": "32434|32435", + "upstreamId": "32434|32435", "text": "Rhegmatogenous retinal detachment, autosomal dominant" }, { - "baseId": "32443|32444|32445|32446|32447|32448|32522|32523|32523|32524|32527|32529|32531|189115|190092|215249|223747|223748|227237|227238|250592|250601|250602|250603|250620|250623|250625|250629|250632|250635|250636|250639|260782|260782|260783|272152|285700|285718|288037|288064|288464|354160|357246|357247|360796|384400|384400|384476|405642|417659|432282|432283|432284|432285|432286|434902|438587|440658|440665|440666|440667|440669|440670|440679|440682|440687|443176|443177|443180|443181|486961|491213|491213|492678|513025|513026|513039|513039|513923|541801|541802|541804|541808|541809|541810|541811|541812|541813|541819|541821|541826|541837|541839|541842|541843|541845|541846|541850|541858|541859|541860|541861|541864|541865|541867|541869|541870|541872|541878|541880|541881|541882|541884|541886|541889|541891|541893|541895|541897|541898|541901|541902|541903|541904|541906|541907|541908|541909|541911|541913|541914|541916|541918|541919|541920|541921|541922|541923|541925|541928|541929|541930|541931|541932|541933|541934|541935|541936|541938|541939|541944|541946|541948|541951|541953|541954|541956|541957|541962|541964|541966|541967|541968|541970|541972|541974|541975|541978|541981|541982|541983|541984|541985|541987|541988|541990|541991|541992|541994|541996|541997|541999|542000|542001|542002|542003|542004|542005|542007|542008|542009|542010|542010|542011|542014|542016|542017|542018|542019|542020|542021|542022|542023|542025|542028|542030|542032|542034|542036|542038|542039|542040|542043|542046|542051|542052|542054|542056|542058|542060|542062|542064|542065|542068|542071|542073|542079|542083|542094|542095|542099|542103|542106|542111|542121|542123|542125|542126|542131|542133|542135|542136|542140|542142|542157|542159|542161|542164|542166|542168|542170|542172|542177|542180|553637|576666|590250|590262|609307|611565|612080|612081|622521|622522|623263|623264|625789|790203|790204|794007|798499|798500|798501|798502|798503|798504|798505|798506|800391|801546|801556|801557|804846|825808|858522|858523|858527|858530|858540|904076|920534|922592|962671|962672|962673|962674|962675|962676|962677|962678|962679|962680|962681|962682|962683|962685|962687|962691|962825|962826|962827|962828|962829|963124|964811|970736|970737|971743|971744|971745|971746|971747|971748|971749|971750|971751|971752|971753|971754|971755|971756|971757|971758|971759|971760|971761|971762|971763|971764|971765|971766|971767|971768|971769|971770|971771|971772|971773|971774|971775|971776|971777|971778|971779|971780|971781|971782|971783|971784|971785|971786|980308|980309|980311|980560", + "upstreamId": "32443|32444|32445|32446|32447|32448|32522|32523|32523|32524|32527|32529|32531|189115|190092|215249|223747|223748|227237|227238|250592|250601|250602|250603|250620|250623|250625|250629|250632|250635|250636|250639|260782|260782|260783|272152|285700|285718|288037|288064|288464|354160|357246|357247|360796|384400|384400|384476|405642|417659|432282|432283|432284|432285|432286|434902|438587|440658|440665|440666|440667|440669|440670|440679|440682|440687|443176|443177|443180|443181|486961|491213|491213|492678|513025|513026|513039|513039|513923|541801|541802|541804|541808|541809|541810|541811|541812|541813|541819|541821|541826|541837|541839|541842|541843|541845|541846|541850|541858|541859|541860|541861|541864|541865|541867|541869|541870|541872|541878|541880|541881|541882|541884|541886|541889|541891|541893|541895|541897|541898|541901|541902|541903|541904|541906|541907|541908|541909|541911|541913|541914|541916|541918|541919|541920|541921|541922|541923|541925|541928|541929|541930|541931|541932|541933|541934|541935|541936|541938|541939|541944|541946|541948|541951|541953|541954|541956|541957|541962|541964|541966|541967|541968|541970|541972|541974|541975|541978|541981|541982|541983|541984|541985|541987|541988|541990|541991|541992|541994|541996|541997|541999|542000|542001|542002|542003|542004|542005|542007|542008|542009|542010|542010|542011|542014|542016|542017|542018|542019|542020|542021|542022|542023|542025|542028|542030|542032|542034|542036|542038|542039|542040|542043|542046|542051|542052|542054|542056|542058|542060|542062|542064|542065|542068|542071|542073|542079|542083|542094|542095|542099|542103|542106|542111|542121|542123|542125|542126|542131|542133|542135|542136|542140|542142|542157|542159|542161|542164|542166|542168|542170|542172|542177|542180|553637|576666|590250|590262|609307|611565|612080|612081|622521|622522|623263|623264|625789|790203|790204|794007|798499|798500|798501|798502|798503|798504|798505|798506|800391|801546|801556|801557|804846|825808|858522|858523|858527|858530|858540|904076|920534|922592|962671|962672|962673|962674|962675|962676|962677|962678|962679|962680|962681|962682|962683|962685|962687|962691|962825|962826|962827|962828|962829|963124|964811|970736|970737|971743|971744|971745|971746|971747|971748|971749|971750|971751|971752|971753|971754|971755|971756|971757|971758|971759|971760|971761|971762|971763|971764|971765|971766|971767|971768|971769|971770|971771|971772|971773|971774|971775|971776|971777|971778|971779|971780|971781|971782|971783|971784|971785|971786|980308|980309|980311|980560", "text": "Alport syndrome, autosomal recessive" }, { - "baseId": "32445|32446|32449|32450|32523|32528|32529|223746|223749|223751|223752|223753|227238|250602|260782|354160|384400|440679|443177|491213|492678|513039|513040|541826|541837|541843|542010|553512|615935|622856|625789|825808|858524|858525|858526|858528|858529|858531|858539|918744|920171|952958|960993|960994|962684|963348|963349|963350|963351|963352|963353|964810|974566|980312", + "upstreamId": "32445|32446|32449|32450|32523|32528|32529|223746|223749|223751|223752|223753|227238|250602|260782|354160|384400|440679|443177|491213|492678|513039|513040|541826|541837|541843|542010|553512|615935|622856|625789|825808|858524|858525|858526|858528|858529|858531|858539|918744|920171|952958|960993|960994|962684|963348|963349|963350|963351|963352|963353|964810|974566|980312", "text": "Benign familial hematuria" }, { - "baseId": "32446|32523|32528|32530|32531|223748|226605|226606|226607|227238|250602|250620|250629|250632|250635|250636|250639|260782|260782|260783|260784|272152|285064|285080|285088|285089|285094|285700|285728|288002|288050|288064|288414|288415|288421|288464|354161|354162|354163|354164|354165|384400|384473|384475|384476|405643|432287|432288|432289|440679|440681|443177|443181|491213|492678|492678|513027|513028|513029|513030|513031|513032|513033|513034|513035|513037|513038|513039|513039|513040|513040|513041|513042|513043|541801|541808|541826|541850|541860|541884|541903|541913|541999|542001|542004|542010|542014|542038|542039|542043|542065|542099|553611|586060|590240|590241|590242|590243|590244|590245|590246|590247|590248|590249|590250|590251|590252|590254|590255|590256|590257|590258|590259|590260|590261|590262|590263|590264|590265|590266|590267|590268|590452|614513|623181|623253|623254|623255|623256|623257|623258|623259|623260|623261|623262|623263|623264|623265|623266|623267|623268|623269|654252|654260|654261|655430|672019|679514|733239|763019|763022|781219|790204|798504|800832|804846|818183|818184|818185|818186|818187|818188|818189|818190|818191|818192|818193|818194|818195|818196|818197|818198|818199|818200|818201|818202|818203|818204|818205|818206|818207|818208|818209|818210|818211|818212|825808|858524|858525|858526|858528|858529|858531|858539|918745|918746|918747|962686|962688|962689|962690|962692|962827|963354|980307|980310|980313|980314", + "upstreamId": "32446|32523|32528|32530|32531|223748|226605|226606|226607|227238|250602|250620|250629|250632|250635|250636|250639|260782|260782|260783|260784|272152|285064|285080|285088|285089|285094|285700|285728|288002|288050|288064|288414|288415|288421|288464|354161|354162|354163|354164|354165|384400|384473|384475|384476|405643|432287|432288|432289|440679|440681|443177|443181|491213|492678|492678|513027|513028|513029|513030|513031|513032|513033|513034|513035|513037|513038|513039|513039|513040|513040|513041|513042|513043|541801|541808|541826|541850|541860|541884|541903|541913|541999|542001|542004|542010|542014|542038|542039|542043|542065|542099|553611|586060|590240|590241|590242|590243|590244|590245|590246|590247|590248|590249|590250|590251|590252|590254|590255|590256|590257|590258|590259|590260|590261|590262|590263|590264|590265|590266|590267|590268|590452|614513|623181|623253|623254|623255|623256|623257|623258|623259|623260|623261|623262|623263|623264|623265|623266|623267|623268|623269|654252|654260|654261|655430|672019|679514|733239|763019|763022|781219|790204|798504|800832|804846|818183|818184|818185|818186|818187|818188|818189|818190|818191|818192|818193|818194|818195|818196|818197|818198|818199|818200|818201|818202|818203|818204|818205|818206|818207|818208|818209|818210|818211|818212|825808|858524|858525|858526|858528|858529|858531|858539|918745|918746|918747|962686|962688|962689|962690|962692|962827|963354|980307|980310|980313|980314", "text": "Alport syndrome 3, autosomal dominant" }, { - "baseId": "32451|32452|32453|32454|32455|32456|32460|32461|136540|171276|171277|171696|171697|171698|171699|190381|192972|193029|193111|193488|193489|194108|194680|194681|194704|195633|205773|254794|254795|254797|254798|254799|254800|254801|254802|254803|254805|254806|254808|254809|254810|254811|254813|254814|273865|318892|318893|318894|318895|318899|318906|318910|318911|318913|318916|318920|318921|318923|327278|327279|327289|327290|327292|327293|327294|327295|327297|327301|327304|327306|327307|327319|327322|327323|327327|327333|327334|327335|327336|333425|333434|333441|333446|333448|333454|333455|333471|333474|333481|333482|333483|333493|333499|333503|333505|333510|333515|333526|333527|333536|333537|333538|335132|335137|335147|335149|335152|335163|335173|335180|335181|335182|335183|335186|335193|335196|335197|335211|335212|335213|335223|335226|335229|335231|335235|335237|373299|408786|429479|434400|441572|552166|576156|577296|587357|693326|725365|725369|725370|738938|760068|769398|769400|784524|798665|815998|855113|870685|870686|870687|870688|870689|870690|870691|870692|870693|870694|870695|870696|870697|870698|870699|870700|870701|870702|870703|870704|870705|870706|870707|870708|870709|870710|870711|870712|870713|870714|870715|870716|872302|872303|872304|872305|919479|919480|919481|919482|919483|964856|965288|966163|970527|970543|971517|980947", + "upstreamId": "32451|32452|32453|32454|32455|32456|32460|32461|136540|171276|171277|171696|171697|171698|171699|190381|192972|193029|193111|193488|193489|194108|194680|194681|194704|195633|205773|254794|254795|254797|254798|254799|254800|254801|254802|254803|254805|254806|254808|254809|254810|254811|254813|254814|273865|318892|318893|318894|318895|318899|318906|318910|318911|318913|318916|318920|318921|318923|327278|327279|327289|327290|327292|327293|327294|327295|327297|327301|327304|327306|327307|327319|327322|327323|327327|327333|327334|327335|327336|333425|333434|333441|333446|333448|333454|333455|333471|333474|333481|333482|333483|333493|333499|333503|333505|333510|333515|333526|333527|333536|333537|333538|335132|335137|335147|335149|335152|335163|335173|335180|335181|335182|335183|335186|335193|335196|335197|335211|335212|335213|335223|335226|335229|335231|335235|335237|373299|408786|429479|434400|441572|552166|576156|577296|587357|693326|725365|725369|725370|738938|760068|769398|769400|784524|798665|815998|855113|870685|870686|870687|870688|870689|870690|870691|870692|870693|870694|870695|870696|870697|870698|870699|870700|870701|870702|870703|870704|870705|870706|870707|870708|870709|870710|870711|870712|870713|870714|870715|870716|872302|872303|872304|872305|919479|919480|919481|919482|919483|964856|965288|966163|970527|970543|971517|980947", "text": "Brain small vessel disease 1 with or without ocular anomalies" }, { - "baseId": "32457|32458|32459|33501|33502|33503|48462|171696|190381|192972|193029|193111|193488|193489|194108|194680|194681|194704|195633|254794|254795|254797|254798|254799|254800|254801|254802|254803|254805|254806|254808|254809|254810|254811|254812|254813|254814|318892|318893|318894|318895|318899|318906|318910|318911|318913|318916|318920|318921|318923|327277|327278|327279|327289|327290|327292|327293|327294|327295|327297|327301|327304|327305|327306|327307|327319|327322|327323|327327|327333|327334|327335|327336|327337|327338|333425|333427|333434|333441|333446|333448|333454|333455|333471|333474|333481|333482|333483|333493|333496|333499|333503|333505|333510|333515|333526|333527|333536|333537|333538|333543|333546|333555|335132|335137|335147|335149|335152|335163|335173|335180|335181|335182|335183|335186|335193|335196|335197|335211|335212|335213|335223|335226|335229|335230|335231|335235|335237|335248|353263|373299|408786|441572|513327|576156|577296|587357|615944|693326|725365|725369|725370|738938|760068|769398|769400|784524|791294|798666|801890|870685|870686|870687|870688|870689|870690|870691|870692|870693|870694|870695|870696|870697|870698|870699|870700|870701|870702|870703|870704|870705|870706|870707|870708|870709|870710|870711|870712|870713|870714|870715|870716|872302|872303|872304|872305|962732|962733|962734|962735|963364", + "upstreamId": "32457|32458|32459|33501|33502|33503|48462|171696|190381|192972|193029|193111|193488|193489|194108|194680|194681|194704|195633|254794|254795|254797|254798|254799|254800|254801|254802|254803|254805|254806|254808|254809|254810|254811|254812|254813|254814|318892|318893|318894|318895|318899|318906|318910|318911|318913|318916|318920|318921|318923|327277|327278|327279|327289|327290|327292|327293|327294|327295|327297|327301|327304|327305|327306|327307|327319|327322|327323|327327|327333|327334|327335|327336|327337|327338|333425|333427|333434|333441|333446|333448|333454|333455|333471|333474|333481|333482|333483|333493|333496|333499|333503|333505|333510|333515|333526|333527|333536|333537|333538|333543|333546|333555|335132|335137|335147|335149|335152|335163|335173|335180|335181|335182|335183|335186|335193|335196|335197|335211|335212|335213|335223|335226|335229|335230|335231|335235|335237|335248|353263|373299|408786|441572|513327|576156|577296|587357|615944|693326|725365|725369|725370|738938|760068|769398|769400|784524|791294|798666|801890|870685|870686|870687|870688|870689|870690|870691|870692|870693|870694|870695|870696|870697|870698|870699|870700|870701|870702|870703|870704|870705|870706|870707|870708|870709|870710|870711|870712|870713|870714|870715|870716|872302|872303|872304|872305|962732|962733|962734|962735|963364", "text": "Angiopathy, hereditary, with nephropathy, aneurysms, and muscle cramps" }, { - "baseId": "32460|47565|139371|190381|193111|193488|193489|194680|194681|194704|195633|205773|254794|254795|254797|254798|254800|254801|254802|254803|254806|254808|254809|254810|254811|254812|254813|318892|318913|318916|327277|327279|327293|327294|327297|327304|327305|327306|327307|327322|327323|327327|327333|327335|327336|327337|327338|333425|333427|333441|333446|333448|333454|333455|333474|333481|333493|333496|333499|333503|333505|333526|333527|333543|333546|333555|335137|335147|335182|335183|335186|335193|335211|335223|335226|335229|335230|335231|335237|335248|353263|361208|576156|624862|693325|861060|977263", + "upstreamId": "32460|47565|139371|190381|193111|193488|193489|194680|194681|194704|195633|205773|254794|254795|254797|254798|254800|254801|254802|254803|254806|254808|254809|254810|254811|254812|254813|318892|318913|318916|327277|327279|327293|327294|327297|327304|327305|327306|327307|327322|327323|327327|327333|327335|327336|327337|327338|333425|333427|333441|333446|333448|333454|333455|333474|333481|333493|333496|333499|333503|333505|333526|333527|333543|333546|333555|335137|335147|335182|335183|335186|335193|335211|335223|335226|335229|335230|335231|335237|335248|353263|361208|576156|624862|693325|861060|977263", "text": "Brain small vessel disease with hemorrhage" }, { - "baseId": "32462|32464|32465|32466|32467|32474|32482|32484|32485|32486|32488|32495|32497|32498|32499|32501|38590|166069|178859|178860|209348|217190|227262|227263|227264|251197|251203|264139|264158|264183|359454|359487|359560|359567|360853|411519|411520|411521|411522|411523|481232|481696|513263|581699|611590|612128|612188|612265|622742|677289|790400|790401|792701|792739|794091|970171|970200|970201", + "upstreamId": "32462|32464|32465|32466|32467|32474|32482|32484|32485|32486|32488|32495|32497|32498|32499|32501|38590|166069|178859|178860|209348|217190|227262|227263|227264|251197|251203|264139|264158|264183|359454|359487|359560|359567|360853|411519|411520|411521|411522|411523|481232|481696|513263|581699|611590|612128|612188|612265|622742|677289|790400|790401|792701|792739|794091|970171|970200|970201", "text": "Recessive dystrophic epidermolysis bullosa" }, { - "baseId": "32463|32477|32486|32487|32488|32489|32492|32496|32502|227262|227263|227264|295467|361178|720511|720516|720518|734129|763958|763968|763971|763975|774826|774881|781715|792739", + "upstreamId": "32463|32477|32486|32487|32488|32489|32492|32496|32502|227262|227263|227264|295467|361178|720511|720516|720518|734129|763958|763968|763971|763975|774826|774881|781715|792739", "text": "Generalized dominant dystrophic epidermolysis bullosa" }, { - "baseId": "32468|32477|792701|794091", + "upstreamId": "32468|32477|792701|794091", "text": "Pretibial epidermolysis bullosa" }, { - "baseId": "32469|166069", + "upstreamId": "32469|166069", "text": "Dominant dystrophic epidermolysis bullosa with absence of skin" }, { - "baseId": "32470|32471|32472|32473", + "upstreamId": "32470|32471|32472|32473", "text": "Epidermolysis bullosa dystrophica, autosomal recessive, localisata variant" }, { - "baseId": "32470|32472|32479|32480|32493", + "upstreamId": "32470|32472|32479|32480|32493", "text": "Epidermolysis bullosa pruriginosa, autosomal recessive" }, { - "baseId": "32475|32476|32500|38589|359584", + "upstreamId": "32475|32476|32500|38589|359584", "text": "Transient bullous dermolysis of the newborn" }, { - "baseId": "32475|32482|32486|166069", + "upstreamId": "32475|32482|32486|166069", "text": "Nail disorder, nonsyndromic congenital, 8" }, { - "baseId": "32475|32478|32481|32494", + "upstreamId": "32475|32478|32481|32494", "text": "Epidermolysis bullosa pruriginosa, autosomal dominant" }, { - "baseId": "32484|32490|32491", + "upstreamId": "32484|32490|32491", "text": "Epidermolysis bullosa, pretibial, autosomal recessive" }, { - "baseId": "32493|32501|32502|38587|38588|38590|86021|209348|227264|259767|259771|291947|295198|295238|295241|295310|295332|295334|295482|295565|359480|359486|359487|359566|359567|359584|421449|425565|443474|443477|481696|481697|494081|495459|651076|698155|708910|708911|708912|708914|708916|720512|720517|734131|734132|734133|734135|734137|734138|734139|734140|744071|748331|748333|748338|748341|748347|748349|748354|759312|759322|759329|759440|763957|763959|763963|763966|763967|763974|763976|763977|763978|763980|763987|763990|763994|774836|774838|774842|778985|779152|781697|781701|781721|787326|794091|795445|889266|889267|889269|889271|889279|889289|889297|889323|889326|903527|977844|977845|977846|977847|977848|977849|977850|977851|977852|977853|977854|977855|977856|977857|977858|977859|977860|977861|977862|977863|977864|977865|977866|977867|977868|977869|977870|977871|977872|977873|977874|977875|977876|977877|977878|977879|977880|977881|977882|977883|977884|977885|977886|977887|977888|977889|977890|977891|977892|977893|977894|977895|977896|977897|977898|977899|977900|977901|977902|977903|977904|977905|977906|977907|977908|977909|977910|977911|977912|977913|977914|977915|977916|977917|977918|977919|977920|977921|977922|977923|977924|977925|977926|977927|977928|977929|977930|977931|977932|977933|977934|977935|977936|977937|977938|977939|977940|977941|977942|977943|977944|977945|977946|977947|977948|977949|977950|977951|977952|977953|977954|977955|977956|977957|977958|977959|977960|977961|977962|977963|977964|977965|977966|977967|977968|977969|977970|977971|977972|977973|977974", + "upstreamId": "32493|32501|32502|38587|38588|38590|86021|209348|227264|259767|259771|291947|295198|295238|295241|295310|295332|295334|295482|295565|359480|359486|359487|359566|359567|359584|421449|425565|443474|443477|481696|481697|494081|495459|651076|698155|708910|708911|708912|708914|708916|720512|720517|734131|734132|734133|734135|734137|734138|734139|734140|744071|748331|748333|748338|748341|748347|748349|748354|759312|759322|759329|759440|763957|763959|763963|763966|763967|763974|763976|763977|763978|763980|763987|763990|763994|774836|774838|774842|778985|779152|781697|781701|781721|787326|794091|795445|889266|889267|889269|889271|889279|889289|889297|889323|889326|903527|977844|977845|977846|977847|977848|977849|977850|977851|977852|977853|977854|977855|977856|977857|977858|977859|977860|977861|977862|977863|977864|977865|977866|977867|977868|977869|977870|977871|977872|977873|977874|977875|977876|977877|977878|977879|977880|977881|977882|977883|977884|977885|977886|977887|977888|977889|977890|977891|977892|977893|977894|977895|977896|977897|977898|977899|977900|977901|977902|977903|977904|977905|977906|977907|977908|977909|977910|977911|977912|977913|977914|977915|977916|977917|977918|977919|977920|977921|977922|977923|977924|977925|977926|977927|977928|977929|977930|977931|977932|977933|977934|977935|977936|977937|977938|977939|977940|977941|977942|977943|977944|977945|977946|977947|977948|977949|977950|977951|977952|977953|977954|977955|977956|977957|977958|977959|977960|977961|977962|977963|977964|977965|977966|977967|977968|977969|977970|977971|977972|977973|977974", "text": "Epidermolysis bullosa dystrophica inversa, autosomal recessive" }, { - "baseId": "32502|360805|360853|513896|513947", + "upstreamId": "32502|360805|360853|513896|513947", "text": "Abnormal blistering of the skin" }, { - "baseId": "32502|38590|251195|360852|360853|792701|794091|918837|918838|918839|918841|920196", + "upstreamId": "32502|38590|251195|360852|360853|792701|794091|918837|918838|918839|918841|920196", "text": "Epidermolysis bullosa pruriginosa" }, { - "baseId": "32503|32504|32505|32506|32507|32508|32509|32510|32511|32512|32513|32514|32515|32516|32517|32518|32519|32520|32521|38586|192239|252058|252059|252060|252061|265673|298776|298782|298783|298784|298786|298787|298795|298796|298811|301232|301233|301234|301240|301241|301244|301245|301246|301260|301263|305602|305603|305606|305611|305619|305630|305635|305636|305639|305640|305645|305655|305707|305710|305712|305718|305719|305720|305722|305724|305730|305731|305771|537498|538993|735369|735370|749764|788790|790575|831458|895199|895200|895201|895202|895203|895204|895205|895206|895207|895208|895209|895210|895211|895212|895213|895214|895215|895216|895217|895218|895219|895220|895221|895222|895223|918993|964266", + "upstreamId": "32503|32504|32505|32506|32507|32508|32509|32510|32511|32512|32513|32514|32515|32516|32517|32518|32519|32520|32521|38586|192239|252058|252059|252060|252061|265673|298776|298782|298783|298784|298786|298787|298795|298796|298811|301232|301233|301234|301240|301241|301244|301245|301246|301260|301263|305602|305603|305606|305611|305619|305630|305635|305636|305639|305640|305645|305655|305707|305710|305712|305718|305719|305720|305722|305724|305730|305731|305771|537498|538993|735369|735370|749764|788790|790575|831458|895199|895200|895201|895202|895203|895204|895205|895206|895207|895208|895209|895210|895211|895212|895213|895214|895215|895216|895217|895218|895219|895220|895221|895222|895223|918993|964266", "text": "Metaphyseal chondrodysplasia, Schmid type" }, { - "baseId": "32532", + "upstreamId": "32532", "text": "CILIARY NEUROTROPHIC FACTOR POLYMORPHISM" }, { - "baseId": "32533|34257|34258|34259|34260|50315|50316|50317|176969|177101|177232|178143|178144|178145|178146|195331|195671|195955|195956|195957|195958|195959|195960|195961|195962|195963|216061|216062|216063|252020|252021|252022|252023|252024|252025|252026|252027|252028|252029|252030|252031|252032|252033|252034|252035|252036|252037|252038|298213|298214|298218|298219|298229|298230|298232|298238|298239|298243|298244|298249|298250|298251|298252|298256|298258|298265|298266|298274|298275|298279|298284|298285|298290|298291|298294|298298|298299|298302|298303|298304|298305|298306|298310|300523|300528|300534|300536|300537|300546|300553|300555|300557|300559|300560|300564|300565|300570|300571|300584|300585|300587|300588|300596|300597|300618|300619|300620|300622|300623|300624|304783|304785|304787|304788|304790|304792|304793|304794|304796|304797|304798|304799|304800|304801|304808|304823|304824|304828|304838|304839|304844|304848|304858|304859|304861|304864|304865|304875|304881|304882|304885|304886|304893|304899|304902|304905|305051|305066|305070|305071|305072|305073|305077|305078|305083|305089|305094|305107|305109|305110|305115|305116|305117|305119|305120|305122|305123|489874|735244|801381|831182|831183|831184|831214|831225|831229|894774|894775|894776|894777|894778|894779|894780|894781|894782|894783|894784|894785|894786|894787|894788|894789|894790|894791|894792|894793|894794|894795|894796|894797|894798|894799|894800|894801|894802|894803|894804|894805|894806|894807|894808|894809|894810|894811|894812|894813|894814|894815|894816|894817|894818|894819|894820|894821|894822|894823|894824|894825|894826|894827|894828|894829|894830|894831|894832|894833|894834|896140|896141|896142|918981|918982", + "upstreamId": "32533|34257|34258|34259|34260|50315|50316|50317|176969|177101|177232|178143|178144|178145|178146|195331|195671|195955|195956|195957|195958|195959|195960|195961|195962|195963|216061|216062|216063|252020|252021|252022|252023|252024|252025|252026|252027|252028|252029|252030|252031|252032|252033|252034|252035|252036|252037|252038|298213|298214|298218|298219|298229|298230|298232|298238|298239|298243|298244|298249|298250|298251|298252|298256|298258|298265|298266|298274|298275|298279|298284|298285|298290|298291|298294|298298|298299|298302|298303|298304|298305|298306|298310|300523|300528|300534|300536|300537|300546|300553|300555|300557|300559|300560|300564|300565|300570|300571|300584|300585|300587|300588|300596|300597|300618|300619|300620|300622|300623|300624|304783|304785|304787|304788|304790|304792|304793|304794|304796|304797|304798|304799|304800|304801|304808|304823|304824|304828|304838|304839|304844|304848|304858|304859|304861|304864|304865|304875|304881|304882|304885|304886|304893|304899|304902|304905|305051|305066|305070|305071|305072|305073|305077|305078|305083|305089|305094|305107|305109|305110|305115|305116|305117|305119|305120|305122|305123|489874|735244|801381|831182|831183|831184|831214|831225|831229|894774|894775|894776|894777|894778|894779|894780|894781|894782|894783|894784|894785|894786|894787|894788|894789|894790|894791|894792|894793|894794|894795|894796|894797|894798|894799|894800|894801|894802|894803|894804|894805|894806|894807|894808|894809|894810|894811|894812|894813|894814|894815|894816|894817|894818|894819|894820|894821|894822|894823|894824|894825|894826|894827|894828|894829|894830|894831|894832|894833|894834|896140|896141|896142|918981|918982", "text": "Wagner syndrome" }, { - "baseId": "32534|32535|49454|49455|49456|49457|49458|140473|167983|167985|201029|201030|201034|404938|421172", + "upstreamId": "32534|32535|49454|49455|49456|49457|49458|140473|167983|167985|201029|201030|201034|404938|421172", "text": "Epilepsy, nocturnal frontal lobe, type 3" }, { - "baseId": "32535|32537|32539|47403|49451|49459|83715|92655|99333|104193|104195|104197|104198|104199|104204|104205|104207|104208|104210|104211|104212|104213|104214|104215|104216|104217|104218|104219|104222|104227|104231|104233|134185|134186|134190|134191|134192|134193|134194|134197|140453|140456|140459|140460|140461|140462|140463|140464|140465|140468|140469|140470|140472|140473|140475|140476|140477|167982|167983|167985|177603|181175|189154|194850|194851|194853|194856|201024|201027|201029|201030|201031|201033|201039|201043|201044|202220|202222|202224|202228|202235|202240|202241|202243|202249|202252|202262|202265|202266|202268|202269|202271|203628|203631|203633|203634|203635|203636|203637|203638|203639|203640|203641|203642|203643|203645|203646|203647|203648|203649|203650|203651|203652|203653|203654|203655|203656|203658|203662|203664|203665|203670|203676|203677|203679|203683|203684|243587|249406|268660|271758|273514|275226|305036|305042|308761|359225|362228|363988|364441|364486|364505|364530|369465|369468|369896|369917|369918|369926|371793|371816|377105|377111|377129|377133|378148|378150|378158|378342|378345|379735|379736|379740|379742|390800|390805|390811|390814|390825|396147|396508|396517|396537|403671|403673|403678|403682|403683|403685|403686|404929|404930|404933|404937|407361|407362|407363|407369|410790|410791|410792|410793|410794|410795|410796|410799|410803|410804|410805|410811|421171|421172|426349|442306|442307|446280|447140|447142|447148|447228|447299|447302|457723|457736|458319|458320|458366|458369|458372|458373|458667|458676|458684|458686|458692|469429|469431|469434|470474|470477|470478|470968|470970|470974|470977|471353|471461|498051|502011|507276|507394|507395|507843|507847|508251|508253|513195|515095|515108|515109|515119|515126|515145|515226|515235|523421|523425|523428|523430|523732|523733|523987|523989|523993|523994|523995|523996|523997|533590|533595|533606|533653|533656|533659|533662|533663|533664|533666|533667|533669|533680|534172|534176|534193|536335|537008|556602|556604|556941|556943|556945|556947|556949|556951|558124|558126|558128|558130|562279|562281|562797|562808|564985|564987|564988|567749|567752|571322|571327|571332|571333|571335|571336|572952|572955|572957|573454|573583|573585|573586|573592|573594|573596|575122|575123|575124|575126|575127|575128|575129|578781|580593|580599|580658|614319|626866|626867|626868|626869|626870|626871|626872|637042|637043|637044|637045|637046|637047|637048|637049|637050|637051|637052|637053|637054|637055|637056|637057|637058|637059|637060|648782|648783|648784|648785|648786|648787|648788|648789|648790|648791|648792|648793|648794|648795|655040|655861|684000|684891|684892|685567|685568|687263|687264|689215|689217|689630|690234|694578|694579|700549|728798|751085|751086|761226|761231|761232|773194|776662|780339|783080|783082|786424|788826|821306|821307|821310|821312|821337|821338|821831|822173|822761|822762|822763|822764|822765|822766|822767|834567|834568|834569|834570|834571|834572|834573|834574|834575|834576|834577|834578|834579|834580|834581|834582|834583|834584|834585|834586|834587|848487|848488|848489|848490|848491|848492|848493|848494|848495|848496|848497|848498|848499|848500|848501|848502|848503|848504|848505|848506|848507|851195|851684|861537|921651|921652|921653|921654|921655|921656|921657|921658|921659|925147|925148|925149|925150|925151|929227|929228|929229|929230|929231|929232|929233|929234|929235|929236|930048|930049|930050|930051|930052|930053|930054|934236|934237|934238|934239|934240|939013|939014|939015|939016|939017|939018|939019|939772|941464|941465|941466|941467|941468|941469|941470|941471|941472|946007|946008|946009|946010|951132|951133|951134|951135|951137|951138|951139|951140|951141|951142|952081|952082|952083|955387|958859|958860|958861|958862|958863|958864|960321|960649", + "upstreamId": "32535|32537|32539|47403|49451|49459|83715|92655|99333|104193|104195|104197|104198|104199|104204|104205|104207|104208|104210|104211|104212|104213|104214|104215|104216|104217|104218|104219|104222|104227|104231|104233|134185|134186|134190|134191|134192|134193|134194|134197|140453|140456|140459|140460|140461|140462|140463|140464|140465|140468|140469|140470|140472|140473|140475|140476|140477|167982|167983|167985|177603|181175|189154|194850|194851|194853|194856|201024|201027|201029|201030|201031|201033|201039|201043|201044|202220|202222|202224|202228|202235|202240|202241|202243|202249|202252|202262|202265|202266|202268|202269|202271|203628|203631|203633|203634|203635|203636|203637|203638|203639|203640|203641|203642|203643|203645|203646|203647|203648|203649|203650|203651|203652|203653|203654|203655|203656|203658|203662|203664|203665|203670|203676|203677|203679|203683|203684|243587|249406|268660|271758|273514|275226|305036|305042|308761|359225|362228|363988|364441|364486|364505|364530|369465|369468|369896|369917|369918|369926|371793|371816|377105|377111|377129|377133|378148|378150|378158|378342|378345|379735|379736|379740|379742|390800|390805|390811|390814|390825|396147|396508|396517|396537|403671|403673|403678|403682|403683|403685|403686|404929|404930|404933|404937|407361|407362|407363|407369|410790|410791|410792|410793|410794|410795|410796|410799|410803|410804|410805|410811|421171|421172|426349|442306|442307|446280|447140|447142|447148|447228|447299|447302|457723|457736|458319|458320|458366|458369|458372|458373|458667|458676|458684|458686|458692|469429|469431|469434|470474|470477|470478|470968|470970|470974|470977|471353|471461|498051|502011|507276|507394|507395|507843|507847|508251|508253|513195|515095|515108|515109|515119|515126|515145|515226|515235|523421|523425|523428|523430|523732|523733|523987|523989|523993|523994|523995|523996|523997|533590|533595|533606|533653|533656|533659|533662|533663|533664|533666|533667|533669|533680|534172|534176|534193|536335|537008|556602|556604|556941|556943|556945|556947|556949|556951|558124|558126|558128|558130|562279|562281|562797|562808|564985|564987|564988|567749|567752|571322|571327|571332|571333|571335|571336|572952|572955|572957|573454|573583|573585|573586|573592|573594|573596|575122|575123|575124|575126|575127|575128|575129|578781|580593|580599|580658|614319|626866|626867|626868|626869|626870|626871|626872|637042|637043|637044|637045|637046|637047|637048|637049|637050|637051|637052|637053|637054|637055|637056|637057|637058|637059|637060|648782|648783|648784|648785|648786|648787|648788|648789|648790|648791|648792|648793|648794|648795|655040|655861|684000|684891|684892|685567|685568|687263|687264|689215|689217|689630|690234|694578|694579|700549|728798|751085|751086|761226|761231|761232|773194|776662|780339|783080|783082|786424|788826|821306|821307|821310|821312|821337|821338|821831|822173|822761|822762|822763|822764|822765|822766|822767|834567|834568|834569|834570|834571|834572|834573|834574|834575|834576|834577|834578|834579|834580|834581|834582|834583|834584|834585|834586|834587|848487|848488|848489|848490|848491|848492|848493|848494|848495|848496|848497|848498|848499|848500|848501|848502|848503|848504|848505|848506|848507|851195|851684|861537|921651|921652|921653|921654|921655|921656|921657|921658|921659|925147|925148|925149|925150|925151|929227|929228|929229|929230|929231|929232|929233|929234|929235|929236|930048|930049|930050|930051|930052|930053|930054|934236|934237|934238|934239|934240|939013|939014|939015|939016|939017|939018|939019|939772|941464|941465|941466|941467|941468|941469|941470|941471|941472|946007|946008|946009|946010|951132|951133|951134|951135|951137|951138|951139|951140|951141|951142|952081|952082|952083|955387|958859|958860|958861|958862|958863|958864|960321|960649", "text": "Autosomal dominant nocturnal frontal lobe epilepsy" }, { - "baseId": "32536|32542", + "upstreamId": "32536|32542", "text": "Lung cancer susceptibility 2" }, { - "baseId": "32536|32542", + "upstreamId": "32536|32542", "text": "Smoking as a quantitative trait locus 3" }, { - "baseId": "32536|32542", + "upstreamId": "32536|32542", "text": "nicotine response - Toxicity/ADR" }, { - "baseId": "32537|32538|32539|49451|49452|49453|99331|99332|99336|99337|104200|104211|104230|134196|203648|203649|203656|203676|203677|203679|203679|410787|446280|446280|507271|622472|973008", + "upstreamId": "32537|32538|32539|49451|49452|49453|99331|99332|99336|99337|104200|104211|104230|134196|203648|203649|203656|203676|203677|203679|203679|410787|446280|446280|507271|622472|973008", "text": "Epilepsy, nocturnal frontal lobe, type 1" }, { - "baseId": "32543|134185|134186|134187|134188|134189|134190|134191|140451|140452|140453|140454|140456|140457|202222|202233|202234|202235|202240|202262|202264|202266|202268|266386|273514|305017|305018|305024|305025|305026|305027|305031|305032|305035|305036|305040|305042|305044|305046|308734|308736|308738|308754|308756|308757|308758|308761|308777|308778|308780|313911|313912|313924|313926|313929|313930|313942|313945|313948|313951|313954|313955|313959|313961|313964|313971|313972|313977|313978|313982|313991|313997|313998|314001|314010|314020|314027|513196|523987|579376|614319|615938|637044|788826|899386|899387|899388|899389|899390|899391|899392|899393|899394|899395|899396|899397|899398|899399|899400|899401|899402|899403|899404|899405|899406|899407|899408|900475|919149|919150", + "upstreamId": "32543|134185|134186|134187|134188|134189|134190|134191|140451|140452|140453|140454|140456|140457|202222|202233|202234|202235|202240|202262|202264|202266|202268|266386|273514|305017|305018|305024|305025|305026|305027|305031|305032|305035|305036|305040|305042|305044|305046|308734|308736|308738|308754|308756|308757|308758|308761|308777|308778|308780|313911|313912|313924|313926|313929|313930|313942|313945|313948|313951|313954|313955|313959|313961|313964|313971|313972|313977|313978|313982|313991|313997|313998|314001|314010|314020|314027|513196|523987|579376|614319|615938|637044|788826|899386|899387|899388|899389|899390|899391|899392|899393|899394|899395|899396|899397|899398|899399|899400|899401|899402|899403|899404|899405|899406|899407|899408|900475|919149|919150", "text": "Epilepsy, nocturnal frontal lobe, type 4" }, { - "baseId": "32555|32556|32557|32558|32559|32560|32561|32562|38579|265180|323385|323386|323388|333049|333050|333056|339885|339886|339890|339897|339898|341298|341302|360206|390702|429719|620529|714598|739775|739776|754667|760362|874161|874162|874163|874164|874165|874166|874167|874168|876572|918401", + "upstreamId": "32555|32556|32557|32558|32559|32560|32561|32562|38579|265180|323385|323386|323388|333049|333050|333056|339885|339886|339890|339897|339898|341298|341302|360206|390702|429719|620529|714598|739775|739776|754667|760362|874161|874162|874163|874164|874165|874166|874167|874168|876572|918401", "text": "Adrenal insufficiency, congenital, with 46,XY sex reversal, partial or complete" }, { - "baseId": "32563|32564|32566|32567|91067|325921|325925|325927|325928|325937|325938|325942|335539|335540|335542|335543|341992|341996|341999|342001|342003|342006|342008|342010|342014|342015|343500|343502|343503|343506|343508|343510|343511|343517|343522|343526|353344|353345|620556|620557|740272|875584|875585|875586|875587|875588|875589|875590|875591|875592|875593|875594|875595|875596|876686|876687", + "upstreamId": "32563|32564|32566|32567|91067|325921|325925|325927|325928|325937|325938|325942|335539|335540|335542|335543|341992|341996|341999|342001|342003|342006|342008|342010|342014|342015|343500|343502|343503|343506|343508|343510|343511|343517|343522|343526|353344|353345|620556|620557|740272|875584|875585|875586|875587|875588|875589|875590|875591|875592|875593|875594|875595|875596|876686|876687", "text": "Hyperalphalipoproteinemia 1" }, { - "baseId": "32564|32565", + "upstreamId": "32564|32565", "text": "High density lipoprotein cholesterol level quantitative trait locus 10" }, { - "baseId": "32568|32569", + "upstreamId": "32568|32569", "text": "CHOLECYSTOKININ A RECEPTOR POLYMORPHISM" }, { - "baseId": "32570|32570|32571|32572|32572|32573|32574|32574|32576|32577|32578|32578|32579|32580|32580|32581|32581|32582|32583|32584|32584|32585|32586|32588|33889|33892|33893|33897|33898|33899|33901|33902|33904|33904|48726|196430|198629|204362|204363|205752|205752|205753|205753|247017|247017|247018|247018|259852|264231|264308|264312|264314|264346|273241|273242|274204|274204|302027|302032|302034|302035|302037|302038|302041|302048|302056|302060|302068|305219|305220|305224|305232|305233|309984|310026|310053|310054|310060|310061|310062|310078|310079|360888|360888|368970|369251|369518|369526|369529|406988|406990|406991|406992|406993|406994|406996|406997|413762|413762|421623|425736|441037|441039|441040|441042|441044|441046|441048|441049|441050|441051|441054|441054|441056|441058|441060|441061|441063|441064|441065|441066|441067|441071|444074|444076|444077|456426|456427|456431|456431|456434|456438|456741|456745|456746|457009|457013|457447|457450|457453|457464|457465|457468|457470|457473|457474|481778|501956|502245|522350|522357|522358|522359|522367|522380|522620|522622|522627|522629|522637|522639|522719|522720|522722|522726|523080|523082|523082|523084|523094|536725|536725|561385|561387|561389|561391|561583|561584|561588|561590|561594|561610|561612|561613|561614|564144|564146|566054|566511|566513|566518|566521|566522|566523|566529|566544|576947|611675|612281|622377|624118|635806|635807|635808|635809|635810|635811|635812|635813|635814|635815|635816|635817|635818|635819|635820|635821|635822|635823|635824|635825|635826|635827|635828|635829|635830|635831|635832|635833|635834|635835|635836|635837|635838|635839|651643|651668|686977|686978|692168|692169|692170|692171|692172|692173|692174|695353|695354|699908|766138|782810|790706|790707|790707|793199|793200|793207|805525|805526|819833|833232|833233|833234|833235|833236|833237|833238|833239|833240|833241|833242|833243|833244|833245|833246|833247|833248|833249|833250|833251|833252|833253|833254|833255|833256|833257|833258|833259|833260|852070|897580|919085|920238|920239|924719|924720|924721|924722|924723|924724|924725|924726|933723|933724|933725|933726|933727|933728|933729|933730|933731|933732|933733|933734|933735|940067|940068|940069|940872|940873|945492|945493|945494|945495|945496|945497|945498|955075|955076|955077|955078|955079", + "upstreamId": "32570|32570|32571|32572|32572|32573|32574|32574|32576|32577|32578|32578|32579|32580|32580|32581|32581|32582|32583|32584|32584|32585|32586|32588|33889|33892|33893|33897|33898|33899|33901|33902|33904|33904|48726|196430|198629|204362|204363|205752|205752|205753|205753|247017|247017|247018|247018|259852|264231|264308|264312|264314|264346|273241|273242|274204|274204|302027|302032|302034|302035|302037|302038|302041|302048|302056|302060|302068|305219|305220|305224|305232|305233|309984|310026|310053|310054|310060|310061|310062|310078|310079|360888|360888|368970|369251|369518|369526|369529|406988|406990|406991|406992|406993|406994|406996|406997|413762|413762|421623|425736|441037|441039|441040|441042|441044|441046|441048|441049|441050|441051|441054|441054|441056|441058|441060|441061|441063|441064|441065|441066|441067|441071|444074|444076|444077|456426|456427|456431|456431|456434|456438|456741|456745|456746|457009|457013|457447|457450|457453|457464|457465|457468|457470|457473|457474|481778|501956|502245|522350|522357|522358|522359|522367|522380|522620|522622|522627|522629|522637|522639|522719|522720|522722|522726|523080|523082|523082|523084|523094|536725|536725|561385|561387|561389|561391|561583|561584|561588|561590|561594|561610|561612|561613|561614|564144|564146|566054|566511|566513|566518|566521|566522|566523|566529|566544|576947|611675|612281|622377|624118|635806|635807|635808|635809|635810|635811|635812|635813|635814|635815|635816|635817|635818|635819|635820|635821|635822|635823|635824|635825|635826|635827|635828|635829|635830|635831|635832|635833|635834|635835|635836|635837|635838|635839|651643|651668|686977|686978|692168|692169|692170|692171|692172|692173|692174|695353|695354|699908|766138|782810|790706|790707|790707|793199|793200|793207|805525|805526|819833|833232|833233|833234|833235|833236|833237|833238|833239|833240|833241|833242|833243|833244|833245|833246|833247|833248|833249|833250|833251|833252|833253|833254|833255|833256|833257|833258|833259|833260|852070|897580|919085|920238|920239|924719|924720|924721|924722|924723|924724|924725|924726|933723|933724|933725|933726|933727|933728|933729|933730|933731|933732|933733|933734|933735|940067|940068|940069|940872|940873|945492|945493|945494|945495|945496|945497|945498|955075|955076|955077|955078|955079", "text": "Congenital myotonia, autosomal recessive form" }, { - "baseId": "32570|32570|32571|32571|32572|32574|32576|32576|32577|32577|32578|32578|32580|32581|32581|32584|32584|32585|32585|32587|32588|33889|33892|33893|33897|33898|33899|33901|33902|33904|196430|198629|198629|204362|204363|205752|205752|205753|247017|247018|259852|264231|264231|264308|264312|264314|264314|264346|273241|273242|274204|302027|302032|302034|302035|302037|302038|302041|302048|302056|302060|302068|305219|305220|305224|305232|305233|309984|310026|310053|310054|310060|310061|310062|310078|310079|360888|368970|369251|369518|369526|369529|406988|406990|406991|406992|406993|406994|406996|406997|413762|421623|425736|441037|441039|441040|441042|441044|441046|441048|441049|441050|441051|441054|441056|441058|441060|441061|441063|441064|441065|441066|441067|441071|444076|444077|456426|456427|456431|456434|456438|456741|456745|456746|457009|457013|457450|457453|457464|457468|457470|457474|481778|501956|502245|513577|522350|522357|522358|522359|522367|522380|522620|522622|522627|522629|522637|522639|522719|522720|522722|522726|523080|523082|523082|523084|523094|523094|536725|561385|561387|561389|561391|561583|561584|561588|561590|561594|561610|561612|561613|561614|564144|564146|566054|566511|566513|566518|566521|566522|566523|566529|566544|576947|611675|622377|624118|635806|635807|635808|635809|635810|635811|635812|635813|635814|635815|635816|635817|635818|635819|635820|635821|635822|635823|635824|635825|635826|635827|635828|635829|635830|635831|635832|635833|635834|635835|635836|635837|635838|635839|651643|651668|686977|686978|692168|692169|692170|692171|692172|692173|692174|695353|695354|699908|766138|782810|790707|793199|793207|800398|805525|805526|819833|833232|833233|833234|833235|833236|833237|833238|833239|833240|833241|833242|833243|833244|833245|833246|833247|833248|833249|833250|833251|833252|833253|833254|833255|833256|833257|833258|833259|833260|852070|861052|924719|924720|924721|924722|924723|924724|924725|924726|933723|933724|933725|933726|933727|933728|933729|933730|933731|933732|933733|933734|933735|940067|940068|940069|940872|940873|945492|945493|945494|945495|945496|945497|945498|955075|955076|955077|955078|955079|964284|970845", + "upstreamId": "32570|32570|32571|32571|32572|32574|32576|32576|32577|32577|32578|32578|32580|32581|32581|32584|32584|32585|32585|32587|32588|33889|33892|33893|33897|33898|33899|33901|33902|33904|196430|198629|198629|204362|204363|205752|205752|205753|247017|247018|259852|264231|264231|264308|264312|264314|264314|264346|273241|273242|274204|302027|302032|302034|302035|302037|302038|302041|302048|302056|302060|302068|305219|305220|305224|305232|305233|309984|310026|310053|310054|310060|310061|310062|310078|310079|360888|368970|369251|369518|369526|369529|406988|406990|406991|406992|406993|406994|406996|406997|413762|421623|425736|441037|441039|441040|441042|441044|441046|441048|441049|441050|441051|441054|441056|441058|441060|441061|441063|441064|441065|441066|441067|441071|444076|444077|456426|456427|456431|456434|456438|456741|456745|456746|457009|457013|457450|457453|457464|457468|457470|457474|481778|501956|502245|513577|522350|522357|522358|522359|522367|522380|522620|522622|522627|522629|522637|522639|522719|522720|522722|522726|523080|523082|523082|523084|523094|523094|536725|561385|561387|561389|561391|561583|561584|561588|561590|561594|561610|561612|561613|561614|564144|564146|566054|566511|566513|566518|566521|566522|566523|566529|566544|576947|611675|622377|624118|635806|635807|635808|635809|635810|635811|635812|635813|635814|635815|635816|635817|635818|635819|635820|635821|635822|635823|635824|635825|635826|635827|635828|635829|635830|635831|635832|635833|635834|635835|635836|635837|635838|635839|651643|651668|686977|686978|692168|692169|692170|692171|692172|692173|692174|695353|695354|699908|766138|782810|790707|793199|793207|800398|805525|805526|819833|833232|833233|833234|833235|833236|833237|833238|833239|833240|833241|833242|833243|833244|833245|833246|833247|833248|833249|833250|833251|833252|833253|833254|833255|833256|833257|833258|833259|833260|852070|861052|924719|924720|924721|924722|924723|924724|924725|924726|933723|933724|933725|933726|933727|933728|933729|933730|933731|933732|933733|933734|933735|940067|940068|940069|940872|940873|945492|945493|945494|945495|945496|945497|945498|955075|955076|955077|955078|955079|964284|970845", "text": "Congenital myotonia, autosomal dominant form" }, { - "baseId": "32571|32572|32576|32577|32578|32581|32584|32585|33889|33890|33891|33892|33893|33894|33895|33896|33897|33898|33899|33900|33901|33902|33903|33904|196430|204362|204363|205752|247017|247018|259852|264231|264314|273242|302023|302026|302027|302032|302034|302035|302037|302038|302041|302042|302045|302046|302048|302056|302060|302064|302068|305218|305219|305220|305224|305228|305230|305232|305233|305234|305245|309974|309984|309989|309993|310026|310027|310053|310054|310060|310061|310062|310073|310078|310079|310080|310082|310083|361025|368970|369251|441066|444077|456426|501892|501956|522627|564146|576937|620254|620798|635835|766139|897580|897581|897582|897583|897584|897585|897586|897587|897588|897589|897590|897591|897592|900322|900323|900324|900325|900326", + "upstreamId": "32571|32572|32576|32577|32578|32581|32584|32585|33889|33890|33891|33892|33893|33894|33895|33896|33897|33898|33899|33900|33901|33902|33903|33904|196430|204362|204363|205752|247017|247018|259852|264231|264314|273242|302023|302026|302027|302032|302034|302035|302037|302038|302041|302042|302045|302046|302048|302056|302060|302064|302068|305218|305219|305220|305224|305228|305230|305232|305233|305234|305245|309974|309984|309989|309993|310026|310027|310053|310054|310060|310061|310062|310073|310078|310079|310080|310082|310083|361025|368970|369251|441066|444077|456426|501892|501956|522627|564146|576937|620254|620798|635835|766139|897580|897581|897582|897583|897584|897585|897586|897587|897588|897589|897590|897591|897592|900322|900323|900324|900325|900326", "text": "Myotonia congenita" }, { - "baseId": "32577", + "upstreamId": "32577", "text": "Myotonia levior" }, { - "baseId": "32578|205752|360888|361024|361025|361047|513943|513969|513970|624118", + "upstreamId": "32578|205752|360888|361024|361025|361047|513943|513969|513970|624118", "text": "Myotonia" }, { - "baseId": "32584|32660|99159|360798|360803|360810|360873|361054|361094|513930", + "upstreamId": "32584|32660|99159|360798|360803|360810|360873|361054|361094|513930", "text": "EMG: myopathic abnormalities" }, { - "baseId": "32589|32590|32591|32592|32593|32594|32595|38577|38578|226408|226409|226410|226411|282965|282979|283809|283811|283815|283828|283831|283832|283835|285451|285464|285466|285468|285469|285846|285848|285849|285850|285865|550557|719420|732960|732961|762435|881631|881632|881633|881634|881635|881636|881637|881638|881639|881640|881641|881642|881643|881644|881645|881646|881647|881648|881649|881650|882855|882856|882857|918698|974510", + "upstreamId": "32589|32590|32591|32592|32593|32594|32595|38577|38578|226408|226409|226410|226411|282965|282979|283809|283811|283815|283828|283831|283832|283835|285451|285464|285466|285468|285469|285846|285848|285849|285850|285865|550557|719420|732960|732961|762435|881631|881632|881633|881634|881635|881636|881637|881638|881639|881640|881641|881642|881643|881644|881645|881646|881647|881648|881649|881650|882855|882856|882857|918698|974510", "text": "Duane retraction syndrome 2" }, { - "baseId": "32596|134687|134688|134689|141263|141264|141265|141266|141268|141269|141270|185964|210721|213533|221135|238588|283713|283721|283722|284392|284397|284398|286390|286391|286392|286761|286767|286769|286770|366829|552299|619900|883121|883122|883123|883124|883125|883126|883127|883128|883129|883130|887228", + "upstreamId": "32596|134687|134688|134689|141263|141264|141265|141266|141268|141269|141270|185964|210721|213533|221135|238588|283713|283721|283722|284392|284397|284398|286390|286391|286392|286761|286767|286769|286770|366829|552299|619900|883121|883122|883123|883124|883125|883126|883127|883128|883129|883130|887228", "text": "Hereditary spastic paraplegia 13" }, { - "baseId": "32597|581913|781103|804829|964188", + "upstreamId": "32597|581913|781103|804829|964188", "text": "Leukodystrophy, hypomyelinating, 4" }, { - "baseId": "32598|32599|32600|32601|32602|51213|51216|51217|51218|51219|51220|51221|51222|51223|51228|51285|51286|51287|51288|51289|51290|51291|51292|51294|51296|51297|51299|51301|51305|51307|51309|51310|51313|51316|51317|51318|51319|51320|51321|51322|51334|51338|134285|134286|134287|134288|134289|134290|134291|191314|191752|207060|207061|214522|269100|289089|289092|289095|289099|289100|289104|289106|289107|289116|289117|289121|289123|289124|289130|289846|289868|289880|289881|289882|289888|289889|289900|289902|289911|289912|289913|292937|292952|292959|292963|292965|292974|292976|292983|292984|292985|292987|292989|292992|292994|292997|292998|292999|293000|293001|293231|293232|293233|293236|293253|293255|293256|293265|293270|293281|293284|293289|293290|293303|293304|293321|367283|411511|424635|424636|451890|452346|452350|481112|481113|481114|481115|511462|518805|518917|518919|518923|536640|558826|559221|559357|562494|562499|620755|630990|630991|630992|630993|630994|630995|630996|630997|630998|651037|691327|695180|697883|697884|697886|781593|819338|827617|827618|827619|827620|827621|827622|827623|827624|888187|888188|888189|888190|888191|888192|888193|888194|888195|888196|888197|888198|888199|888200|888201|888202|888203|888204|888205|888206|888207|891591|891592|891593|923071|923072|931799|931800|943371|943372|943373|943374|953364", + "upstreamId": "32598|32599|32600|32601|32602|51213|51216|51217|51218|51219|51220|51221|51222|51223|51228|51285|51286|51287|51288|51289|51290|51291|51292|51294|51296|51297|51299|51301|51305|51307|51309|51310|51313|51316|51317|51318|51319|51320|51321|51322|51334|51338|134285|134286|134287|134288|134289|134290|134291|191314|191752|207060|207061|214522|269100|289089|289092|289095|289099|289100|289104|289106|289107|289116|289117|289121|289123|289124|289130|289846|289868|289880|289881|289882|289888|289889|289900|289902|289911|289912|289913|292937|292952|292959|292963|292965|292974|292976|292983|292984|292985|292987|292989|292992|292994|292997|292998|292999|293000|293001|293231|293232|293233|293236|293253|293255|293256|293265|293270|293281|293284|293289|293290|293303|293304|293321|367283|411511|424635|424636|451890|452346|452350|481112|481113|481114|481115|511462|518805|518917|518919|518923|536640|558826|559221|559357|562494|562499|620755|630990|630991|630992|630993|630994|630995|630996|630997|630998|651037|691327|695180|697883|697884|697886|781593|819338|827617|827618|827619|827620|827621|827622|827623|827624|888187|888188|888189|888190|888191|888192|888193|888194|888195|888196|888197|888198|888199|888200|888201|888202|888203|888204|888205|888206|888207|891591|891592|891593|923071|923072|931799|931800|943371|943372|943373|943374|953364", "text": "Deficiency of ferroxidase" }, { - "baseId": "32598|32600|32602", + "upstreamId": "32598|32600|32602", "text": "Hemosiderosis, systemic, due to aceruloplasminemia" }, { - "baseId": "32599", + "upstreamId": "32599", "text": "Ceruloplasmin belfast" }, { - "baseId": "32601", + "upstreamId": "32601", "text": "Hypoceruloplasminemia" }, { - "baseId": "32603", + "upstreamId": "32603", "text": "Myotonic dystrophy type 2" }, { - "baseId": "32604", + "upstreamId": "32604", "text": "CIP1/WAF1 TUMOR-ASSOCIATED POLYMORPHISM 1" }, { - "baseId": "32612|32613|32614|106597|106598|134318|134320|134321|134322|134323|134324|134325|140743|140744|140745|140746|140749|140753|140758|140762|140763|140765|202527|202532|202549|202553|202554|205409|205410|254079|266966|271803|313434|313436|313437|313438|313451|313453|313463|313465|319532|319538|319540|319554|319559|319561|319567|319568|325715|325718|325726|325730|325731|325740|325741|325746|325747|326749|326764|362445|408313|564507|867649|867650|867651|867652|867653|867654|867655|867657|867658|867659|867660|867661|867662|867663|867664|867665|867668|867669|867670", + "upstreamId": "32612|32613|32614|106597|106598|134318|134320|134321|134322|134323|134324|134325|140743|140744|140745|140746|140749|140753|140758|140762|140763|140765|202527|202532|202549|202553|202554|205409|205410|254079|266966|271803|313434|313436|313437|313438|313451|313453|313463|313465|319532|319538|319540|319554|319559|319561|319567|319568|325715|325718|325726|325730|325731|325740|325741|325746|325747|326749|326764|362445|408313|564507|867649|867650|867651|867652|867653|867654|867655|867657|867658|867659|867660|867661|867662|867663|867664|867665|867668|867669|867670", "text": "Neuronal ceroid lipofuscinosis 10" }, { - "baseId": "32620|32621|46196|75719|75964|94472|139116|182970|212758|222763|240729|363111|363112|397224|401519|466629|611995|612007|612028", + "upstreamId": "32620|32621|46196|75719|75964|94472|139116|182970|212758|222763|240729|363111|363112|397224|401519|466629|611995|612007|612028", "text": "Craniopharyngioma" }, { - "baseId": "32622", + "upstreamId": "32622", "text": "ADRENAL CORTICAL NEOPLASM" }, { - "baseId": "32627|32628|363120|363121", + "upstreamId": "32627|32628|363120|363121", "text": "Disease" }, { - "baseId": "32630", + "upstreamId": "32630", "text": "CATECHOL-O-METHYLTRANSFERASE POLYMORPHISM" }, { - "baseId": "32630", + "upstreamId": "32630", "text": "nicotine response - Efficacy" }, { - "baseId": "32630|227763", + "upstreamId": "32630|227763", "text": "tramadol response - Dosage, Efficacy" }, { - "baseId": "32630|227763", + "upstreamId": "32630|227763", "text": "methadone response - Dosage, Efficacy" }, { - "baseId": "32630|227763", + "upstreamId": "32630|227763", "text": "morphine response - Dosage, Efficacy" }, { - "baseId": "32630|227763", + "upstreamId": "32630|227763", "text": "opioids response - Dosage, Efficacy" }, { - "baseId": "32630|227763", + "upstreamId": "32630|227763", "text": "oxycodone response - Dosage, Efficacy" }, { - "baseId": "32630", + "upstreamId": "32630", "text": "remifentanil response - Dosage, Efficacy" }, { - "baseId": "32630", + "upstreamId": "32630", "text": "sufentanil response - Dosage, Efficacy" }, { - "baseId": "32632|32633|32634|32635|32636|32637|88451|192253|194322|195903|195904|207611|207612|253298|253301|253302|253303|306801|306802|306804|306820|310942|310944|310945|310966|310967|316538|316550|316553|316554|316555|316560|316562|316569|316788|316810|316811|316824|316825|316826|316831|316832|316843|316849|369697|428911|428912|428913|744514|751398|901053|901054|901055|901056|901057|901058|901059|901060|901061|901062|901063|901064|901065|901066|901067|901068|901069|901070|901071|901072|901073|901074|901075|901076|901077|901078|901079|901080|901081|901082|903313", + "upstreamId": "32632|32633|32634|32635|32636|32637|88451|192253|194322|195903|195904|207611|207612|253298|253301|253302|253303|306801|306802|306804|306820|310942|310944|310945|310966|310967|316538|316550|316553|316554|316555|316560|316562|316569|316788|316810|316811|316824|316825|316826|316831|316832|316843|316849|369697|428911|428912|428913|744514|751398|901053|901054|901055|901056|901057|901058|901059|901060|901061|901062|901063|901064|901065|901066|901067|901068|901069|901070|901071|901072|901073|901074|901075|901076|901077|901078|901079|901080|901081|901082|903313", "text": "Oculocutaneous albinism type 3" }, { - "baseId": "32638|38575", + "upstreamId": "32638|38575", "text": "Acatalasemia, japanese type" }, { - "baseId": "32639|44479|134140|275130|578474|816469|816470|920266", + "upstreamId": "32639|44479|134140|275130|578474|816469|816470|920266", "text": "Maturity-onset diabetes of the young type 8" }, { - "baseId": "32641|32642", + "upstreamId": "32641|32642", "text": "DRUG METABOLISM, ALTERED, CES1-RELATED" }, { - "baseId": "32643|38574|513213|551618|919162", + "upstreamId": "32643|38574|513213|551618|919162", "text": "Cerebellar ataxia, mental retardation, and dysequilibrium syndrome 3" }, { - "baseId": "32644", + "upstreamId": "32644", "text": "Carbonic anhydrase I, Guam" }, { - "baseId": "32645", + "upstreamId": "32645", "text": "Carbonic anhydrase I deficiency" }, { - "baseId": "32646|32647|32648|439256", + "upstreamId": "32646|32647|32648|439256", "text": "Retinitis pigmentosa 17" }, { - "baseId": "32649|32650|32651|44436|49464|49465|53320|53321|53325|53326|53327|53328|53329|53330|53331|53332|53333|53334|140361|172338|172338|172339|172473|172475|172476|172477|172477|188306|188317|189181|189184|189185|228262|228263|228265|238131|249369|260553|276056|276057|276063|276080|276083|276271|276272|276276|276280|276284|276300|276521|276522|276522|276523|276565|276566|276579|276581|276585|276587|276598|353050|419260|419261|419265|447185|509076|512792|512793|512794|512795|512885|789825|799103|862078|862079|862080|862081|862082|862083|862084|862085|862086|862087|862088|862089|862090|862091|864962|864963", + "upstreamId": "32649|32650|32651|44436|49464|49465|53320|53321|53325|53326|53327|53328|53329|53330|53331|53332|53333|53334|140361|172338|172338|172339|172473|172475|172476|172477|172477|188306|188317|189181|189184|189185|228262|228263|228265|238131|249369|260553|276056|276057|276063|276080|276083|276271|276272|276276|276280|276284|276300|276521|276522|276522|276523|276565|276566|276579|276581|276585|276587|276598|353050|419260|419261|419265|447185|509076|512792|512793|512794|512795|512885|789825|799103|862078|862079|862080|862081|862082|862083|862084|862085|862086|862087|862088|862089|862090|862091|864962|864963", "text": "Ventricular tachycardia, catecholaminergic polymorphic, 2" }, { - "baseId": "32652|32653|32654|32655|32656|32657|32658|32659|32660|32661|33888|98315|98316|98318|98319|98321|98322|98324|98325|98327|98328|98329|98330|98331|98333|134016|134017|134018|134019|134020|134021|134022|134023|134024|177149|177281|177281|177544|177545|177546|177547|177548|177549|188862|190202|190203|190955|191312|191854|192074|192173|192611|192713|192715|192802|194262|194264|194785|204177|208194|208195|208196|213633|213634|213634|213819|213819|213820|213821|213822|213823|213824|213825|213826|213827|213828|213829|213830|213831|213832|213833|226480|255175|255176|255185|255187|255188|255189|255192|255193|255194|255195|260066|264570|264572|264718|265248|265272|265299|265318|265323|265325|265421|265491|265594|265597|265742|265926|266354|266410|266648|266731|266731|266749|266773|266860|266883|266914|266918|267020|267021|267064|267104|267110|267336|267344|267416|267488|267496|267915|267928|268228|268305|268359|268370|268392|268622|268702|268705|268752|268755|268815|268876|269020|269044|269050|269183|269375|269382|269462|269548|269577|269707|269721|269809|269817|269888|270054|270201|270285|270432|270440|270455|270714|270828|270829|270831|270852|271050|271058|271662|271686|272127|272630|272641|272663|273208|273319|273329|273484|273609|273609|273881|273911|273912|273988|273989|274501|274502|274504|274571|274572|274585|274756|274910|275363|275464|322464|331826|331827|331833|331836|331840|338820|338830|340416|340419|340420|340422|340428|340430|340431|340432|340433|340434|373432|374514|409221|409222|409226|415418|422011|422012|434904|441715|441717|463945|464214|464219|464220|464513|464764|464768|464769|465009|465010|465012|465015|465022|465025|465031|465033|465038|488339|488426|488605|488605|488606|488661|488804|489220|489257|489629|489639|489691|489691|490360|490460|490626|490627|491815|491973|492116|492147|492475|492864|493178|493352|493576|493582|494013|495326|504997|505241|505634|528778|528781|528783|528787|528794|528798|528822|529164|529168|529170|529180|529301|529309|529311|538622|538623|547418|547422|547423|547425|547434|547438|547441|547442|547443|547450|547451|547453|547473|547476|547479|547481|547486|547487|547488|547489|547490|547491|547492|547493|547495|547500|547506|547509|547694|547696|547698|547704|547705|547707|547708|547710|547712|547714|547715|547718|547721|547723|547728|547730|548021|548028|548030|548035|548036|548047|548048|548060|548061|548063|548064|548067|548068|548069|548071|548073|548078|548096|548099|548100|548102|548104|548106|548107|548109|548113|548118|548130|548136|548142|548144|551617|567015|567017|567018|568762|568766|568773|568774|568777|568795|569352|573226|573230|584266|586029|586282|586368|587991|608965|611794|620509|620867|643161|643162|643163|643164|643165|643166|643167|643168|643169|643170|643171|643172|643173|643174|643175|643176|643177|643178|643179|643180|643181|643182|643183|643184|643185|643186|643187|652388|652409|652503|652515|652643|652661|652729|652733|656289|693671|693672|693673|693674|693675|703189|703190|703192|703193|726056|726057|730990|754430|754433|754434|770147|770149|784920|784921|784922|784923|784924|784925|801724|802195|802196|802197|802198|802199|802200|802201|820695|820696|820697|820698|842293|842294|842295|842296|842297|842298|842299|842300|842301|842302|842303|842304|842305|842306|842307|842308|842309|842310|842311|842312|842313|842314|851613|873429|873430|873431|873432|873433|873434|873435|873436|873437|873438|873439|873440|873441|873442|873443|873444|873445|873446|873447|876498|927310|927311|936917|936918|936919|936920|941086|948872|948873|948874|948875|948876|948877|948878|957410|957411|957412|957413|957414|957415|957416|957417|957418|957419|957420|957421|960108|960109|960110|961322|961555|966350|972203|972204|972205|972206|972207|972208|972209|979601|979602|979603|979604|979605|979606|979607|979608|979609|979610|979611|979612|979613|979614|979615|979616|979617|980351|980837|983766", + "upstreamId": "32652|32653|32654|32655|32656|32657|32658|32659|32660|32661|33888|98315|98316|98318|98319|98321|98322|98324|98325|98327|98328|98329|98330|98331|98333|134016|134017|134018|134019|134020|134021|134022|134023|134024|177149|177281|177281|177544|177545|177546|177547|177548|177549|188862|190202|190203|190955|191312|191854|192074|192173|192611|192713|192715|192802|194262|194264|194785|204177|208194|208195|208196|213633|213634|213634|213819|213819|213820|213821|213822|213823|213824|213825|213826|213827|213828|213829|213830|213831|213832|213833|226480|255175|255176|255185|255187|255188|255189|255192|255193|255194|255195|260066|264570|264572|264718|265248|265272|265299|265318|265323|265325|265421|265491|265594|265597|265742|265926|266354|266410|266648|266731|266731|266749|266773|266860|266883|266914|266918|267020|267021|267064|267104|267110|267336|267344|267416|267488|267496|267915|267928|268228|268305|268359|268370|268392|268622|268702|268705|268752|268755|268815|268876|269020|269044|269050|269183|269375|269382|269462|269548|269577|269707|269721|269809|269817|269888|270054|270201|270285|270432|270440|270455|270714|270828|270829|270831|270852|271050|271058|271662|271686|272127|272630|272641|272663|273208|273319|273329|273484|273609|273609|273881|273911|273912|273988|273989|274501|274502|274504|274571|274572|274585|274756|274910|275363|275464|322464|331826|331827|331833|331836|331840|338820|338830|340416|340419|340420|340422|340428|340430|340431|340432|340433|340434|373432|374514|409221|409222|409226|415418|422011|422012|434904|441715|441717|463945|464214|464219|464220|464513|464764|464768|464769|465009|465010|465012|465015|465022|465025|465031|465033|465038|488339|488426|488605|488605|488606|488661|488804|489220|489257|489629|489639|489691|489691|490360|490460|490626|490627|491815|491973|492116|492147|492475|492864|493178|493352|493576|493582|494013|495326|504997|505241|505634|528778|528781|528783|528787|528794|528798|528822|529164|529168|529170|529180|529301|529309|529311|538622|538623|547418|547422|547423|547425|547434|547438|547441|547442|547443|547450|547451|547453|547473|547476|547479|547481|547486|547487|547488|547489|547490|547491|547492|547493|547495|547500|547506|547509|547694|547696|547698|547704|547705|547707|547708|547710|547712|547714|547715|547718|547721|547723|547728|547730|548021|548028|548030|548035|548036|548047|548048|548060|548061|548063|548064|548067|548068|548069|548071|548073|548078|548096|548099|548100|548102|548104|548106|548107|548109|548113|548118|548130|548136|548142|548144|551617|567015|567017|567018|568762|568766|568773|568774|568777|568795|569352|573226|573230|584266|586029|586282|586368|587991|608965|611794|620509|620867|643161|643162|643163|643164|643165|643166|643167|643168|643169|643170|643171|643172|643173|643174|643175|643176|643177|643178|643179|643180|643181|643182|643183|643184|643185|643186|643187|652388|652409|652503|652515|652643|652661|652729|652733|656289|693671|693672|693673|693674|693675|703189|703190|703192|703193|726056|726057|730990|754430|754433|754434|770147|770149|784920|784921|784922|784923|784924|784925|801724|802195|802196|802197|802198|802199|802200|802201|820695|820696|820697|820698|842293|842294|842295|842296|842297|842298|842299|842300|842301|842302|842303|842304|842305|842306|842307|842308|842309|842310|842311|842312|842313|842314|851613|873429|873430|873431|873432|873433|873434|873435|873436|873437|873438|873439|873440|873441|873442|873443|873444|873445|873446|873447|876498|927310|927311|936917|936918|936919|936920|941086|948872|948873|948874|948875|948876|948877|948878|957410|957411|957412|957413|957414|957415|957416|957417|957418|957419|957420|957421|960108|960109|960110|961322|961555|966350|972203|972204|972205|972206|972207|972208|972209|979601|979602|979603|979604|979605|979606|979607|979608|979609|979610|979611|979612|979613|979614|979615|979616|979617|980351|980837|983766", "text": "Limb-girdle muscular dystrophy, type 2A" }, { - "baseId": "32653|32660|177281|213634|213819|213824|226480|266731|267496|270829|270837|270838|271368|273609|488605|489691|919569", + "upstreamId": "32653|32660|177281|213634|213819|213824|226480|266731|267496|270829|270837|270838|271368|273609|488605|489691|919569", "text": "Muscular dystrophy, limb-girdle, autosomal dominant 4" }, { - "baseId": "32657", + "upstreamId": "32657", "text": "Myositis, eosinophilic" }, { - "baseId": "32660|45141|45142|45433|52528|55954|56003|56066|56075|56099|56160|56406|56684|56784|56790|56956|57201|57207|57208|57212|57235|57250|57252|57274|57275|57278|57280|57281|57284|57289|71232|77677|98315|98328|98330|98331|98333|98559|98560|98561|98562|98564|98568|100165|100168|100175|100181|100182|100183|100185|100189|100190|100199|100201|100207|100212|100214|100216|100218|100222|100223|100225|100228|100229|100243|100245|100248|100253|100254|100261|100264|100269|101352|102168|102570|102574|102577|102580|133838|134016|134017|134022|134023|134392|150222|150223|172253|173313|173487|174409|174410|177548|177549|177684|178124|178128|192759|192909|193183|193611|194264|195128|196270|198172|198791|198838|199000|199203|199524|208195|228646|250783|250787|251489|254126|254830|255194|255195|265545|265920|266446|266936|267002|267104|267280|267681|267696|268176|268214|268739|268748|268817|269020|269053|269058|269367|269375|269711|269978|270059|270070|270455|270711|270831|272050|272648|272649|272665|272867|273335|273377|273720|273827|273912|274494|274907|274982|275299|275308|276591|276601|276609|276610|276614|276876|277430|277432|277433|277434|277441|277445|277446|277447|277453|277456|277461|277537|283203|283251|283302|283303|283427|283925|283957|284034|284037|284061|284064|285684|285724|285913|285986|286010|286102|286159|286333|287144|287148|287149|287157|287158|287164|287169|287171|287172|287173|287877|287896|287898|287899|287900|287903|287904|287906|287911|287912|290424|290428|290429|290430|290443|290454|290461|290463|290470|290471|290719|290721|290727|290728|290729|290742|290745|290746|290750|290759|290760|290761|290765|290767|293475|293476|293478|293479|293480|293486|293491|293493|293494|293499|293507|293508|294872|294875|294888|294889|294890|294899|294900|294902|296515|296516|296528|296529|296535|296537|296543|296544|296547|296549|296550|296551|296552|296559|296560|296561|296562|296565|296566|296570|296571|296573|296574|296576|296581|296584|296585|296589|296597|296598|296602|296603|296607|296618|296619|296624|298425|298426|298435|298442|298448|298449|298456|298457|298459|298460|298461|298462|298471|298472|298473|298477|298479|298480|298481|298482|298483|298487|298488|298489|298490|298547|298552|298560|298561|298564|298568|298569|298571|298572|298573|298574|298581|298585|298586|298590|298594|298599|298600|298618|298620|298621|298630|302528|302530|302531|302540|302541|302542|302543|302562|302564|302565|302566|302582|302583|302596|302597|302598|302599|302602|302603|302604|302605|302606|302607|302625|302802|302803|302804|302806|302807|302814|302815|302816|302817|302820|302821|302822|302823|302824|302825|302826|302827|302828|302829|302830|302831|302832|302833|302834|302836|302839|302876|302882|302886|302887|302903|302904|302905|302906|302909|302910|302911|302912|302913|302914|306582|307095|313659|313661|313662|313663|313667|313669|313673|313674|313675|313679|313680|313681|313682|313686|313691|313693|313701|313702|313704|313705|313706|313708|313709|313712|313717|313720|313725|316198|317235|317269|319224|319226|319863|319873|319874|319881|319882|319884|319886|319893|319898|319903|319906|319907|319915|319916|319925|319928|319930|319943|321513|322464|326019|326020|326023|326024|326025|326029|326031|326041|326051|326053|326059|326076|326101|326107|326108|326111|326137|326138|326139|326145|326995|326997|327003|327005|327012|327013|327018|327021|327039|327040|327044|327045|327047|327048|327050|327051|327052|327053|327710|327711|327722|327724|327754|327763|330729|330762|330775|331826|331827|331833|331836|331840|334008|334010|334017|334022|335624|335632|335639|335640|338820|338830|339410|340416|340419|340420|340428|340430|340431|340432|340433|340434|353062|353291", + "upstreamId": "32660|45141|45142|45433|52528|55954|56003|56066|56075|56099|56160|56406|56684|56784|56790|56956|57201|57207|57208|57212|57235|57250|57252|57274|57275|57278|57280|57281|57284|57289|71232|77677|98315|98328|98330|98331|98333|98559|98560|98561|98562|98564|98568|100165|100168|100175|100181|100182|100183|100185|100189|100190|100199|100201|100207|100212|100214|100216|100218|100222|100223|100225|100228|100229|100243|100245|100248|100253|100254|100261|100264|100269|101352|102168|102570|102574|102577|102580|133838|134016|134017|134022|134023|134392|150222|150223|172253|173313|173487|174409|174410|177548|177549|177684|178124|178128|192759|192909|193183|193611|194264|195128|196270|198172|198791|198838|199000|199203|199524|208195|228646|250783|250787|251489|254126|254830|255194|255195|265545|265920|266446|266936|267002|267104|267280|267681|267696|268176|268214|268739|268748|268817|269020|269053|269058|269367|269375|269711|269978|270059|270070|270455|270711|270831|272050|272648|272649|272665|272867|273335|273377|273720|273827|273912|274494|274907|274982|275299|275308|276591|276601|276609|276610|276614|276876|277430|277432|277433|277434|277441|277445|277446|277447|277453|277456|277461|277537|283203|283251|283302|283303|283427|283925|283957|284034|284037|284061|284064|285684|285724|285913|285986|286010|286102|286159|286333|287144|287148|287149|287157|287158|287164|287169|287171|287172|287173|287877|287896|287898|287899|287900|287903|287904|287906|287911|287912|290424|290428|290429|290430|290443|290454|290461|290463|290470|290471|290719|290721|290727|290728|290729|290742|290745|290746|290750|290759|290760|290761|290765|290767|293475|293476|293478|293479|293480|293486|293491|293493|293494|293499|293507|293508|294872|294875|294888|294889|294890|294899|294900|294902|296515|296516|296528|296529|296535|296537|296543|296544|296547|296549|296550|296551|296552|296559|296560|296561|296562|296565|296566|296570|296571|296573|296574|296576|296581|296584|296585|296589|296597|296598|296602|296603|296607|296618|296619|296624|298425|298426|298435|298442|298448|298449|298456|298457|298459|298460|298461|298462|298471|298472|298473|298477|298479|298480|298481|298482|298483|298487|298488|298489|298490|298547|298552|298560|298561|298564|298568|298569|298571|298572|298573|298574|298581|298585|298586|298590|298594|298599|298600|298618|298620|298621|298630|302528|302530|302531|302540|302541|302542|302543|302562|302564|302565|302566|302582|302583|302596|302597|302598|302599|302602|302603|302604|302605|302606|302607|302625|302802|302803|302804|302806|302807|302814|302815|302816|302817|302820|302821|302822|302823|302824|302825|302826|302827|302828|302829|302830|302831|302832|302833|302834|302836|302839|302876|302882|302886|302887|302903|302904|302905|302906|302909|302910|302911|302912|302913|302914|306582|307095|313659|313661|313662|313663|313667|313669|313673|313674|313675|313679|313680|313681|313682|313686|313691|313693|313701|313702|313704|313705|313706|313708|313709|313712|313717|313720|313725|316198|317235|317269|319224|319226|319863|319873|319874|319881|319882|319884|319886|319893|319898|319903|319906|319907|319915|319916|319925|319928|319930|319943|321513|322464|326019|326020|326023|326024|326025|326029|326031|326041|326051|326053|326059|326076|326101|326107|326108|326111|326137|326138|326139|326145|326995|326997|327003|327005|327012|327013|327018|327021|327039|327040|327044|327045|327047|327048|327050|327051|327052|327053|327710|327711|327722|327724|327754|327763|330729|330762|330775|331826|331827|331833|331836|331840|334008|334010|334017|334022|335624|335632|335639|335640|338820|338830|339410|340416|340419|340420|340428|340430|340431|340432|340433|340434|353062|353291", "text": "Limb-Girdle Muscular Dystrophy, Recessive" }, { - "baseId": "32660|32660|32660|360873|361094|969271", + "upstreamId": "32660|32660|32660|360873|361094|969271", "text": "Shoulder girdle muscle weakness" }, { - "baseId": "32660|271861|514133", + "upstreamId": "32660|271861|514133", "text": "Calf muscle hypertrophy" }, { - "baseId": "32660|265299", + "upstreamId": "32660|265299", "text": "Elbow flexion contracture" }, { - "baseId": "32660|265299", + "upstreamId": "32660|265299", "text": "Contractures of the joints of the lower limbs" }, { - "baseId": "32660|99159|101352|171050|172242|172253|191616|264319|360804|360821|361045|361046|361054|551426|676967", + "upstreamId": "32660|99159|101352|171050|172242|172253|191616|264319|360804|360821|361045|361046|361054|551426|676967", "text": "Congenital muscular dystrophy" }, { - "baseId": "32660|99791|198685|361040|361070", + "upstreamId": "32660|99791|198685|361040|361070", "text": "Limb-girdle muscle weakness" }, { - "baseId": "32660|514049", + "upstreamId": "32660|514049", "text": "Absent Achilles reflex" }, { - "baseId": "32662|32663|32664|32665|32669|33887|79970|171056|196498|196500|227189|227190|249594|249595|249599|249603|249607|249608|249609|249610|249611|249613|249615|249618|249621|249623|249624|249628|249629|249633|249635|249636|249638|249639|249640|249641|249642|249643|249644|249646|249647|249648|249649|249651|249652|249653|249655|249657|249658|249659|249660|259644|263994|263994|278356|278357|278359|278361|278362|278363|278372|278376|278379|278384|278405|278422|278423|278424|278446|278451|279473|279475|279514|279515|279518|279523|279555|279562|279563|279579|279581|279590|279605|279606|279607|279608|279611|279619|279621|279640|279646|279649|279658|279659|279661|279665|279671|279672|279675|279685|279687|279688|279689|359213|361847|361848|361849|364590|364595|364712|364714|364719|364720|364723|364732|364739|364746|364764|364767|364770|364797|364801|389351|389357|405008|405009|405010|405011|405012|413260|414755|421195|425328|438575|440422|440423|440424|440426|442691|442692|442693|442695|447385|447395|447398|447399|447402|447413|447495|447496|447498|447507|447513|447514|447516|447523|447524|447524|447528|447531|447539|447540|447594|447601|447604|447611|447612|447618|447619|447622|447627|447629|447632|447633|447635|447636|447638|447639|447640|447641|447646|447648|447654|447657|447666|447675|447676|447676|495100|498170|498172|498183|498193|498195|498205|498209|498233|498327|498361|515342|515348|515358|515360|515365|515412|515417|515420|515423|515425|515427|515431|515432|515444|515445|515449|515458|515459|515464|515465|515467|515469|515470|515471|515472|515473|515474|515476|515482|515485|515486|515491|515492|515506|515507|556738|556740|556742|556744|556746|556748|556750|556752|556752|556773|556775|556777|556779|556781|556783|556785|556787|556789|557088|557090|557092|557094|557096|557098|557100|557102|557104|557106|557108|558286|558288|558290|558292|558294|558296|558298|558300|558309|558311|558313|558315|576456|576456|582270|627230|627231|627232|627233|627234|627235|627236|627237|627238|627239|627240|627241|627242|627243|627244|627245|627246|627247|627248|627249|627250|627251|627252|627253|627254|627255|627256|627257|627258|627259|627260|627261|627262|627263|627264|627265|627266|627267|627268|627269|627270|627271|627272|627273|627274|650600|650605|650615|650716|683297|683298|683299|683300|683301|683302|685603|685604|685605|685606|685610|685613|685614|685614|685615|685617|685619|685620|685623|685624|689636|689637|689639|690442|690443|690444|690448|690450|718509|731994|745976|745982|761465|774431|780437|780438|780444|787022|794524|794532|794534|823174|823175|823176|823177|823178|823179|823180|823181|823182|823183|823184|823185|823186|823187|823188|823189|823190|823191|823192|823193|823194|823195|823196|823197|823198|823199|823200|823201|823202|823203|823204|823205|823206|823207|823208|823209|823210|823211|823212|823213|823214|823215|823216|823217|823218|823219|823220|823221|823222|851263|863247|921790|921791|921792|921793|921794|921795|921796|921797|921798|921799|921800|921801|921802|921803|930220|930221|930222|930223|930224|930225|930226|930227|930228|930229|930230|930231|930232|930233|930234|930235|930236|930237|930238|939787|939788|940614|941649|941650|941651|941652|941653|941654|941655|952205|952206|952207|952208|952209|952210|952211|952212|952213|960417|967162", + "upstreamId": "32662|32663|32664|32665|32669|33887|79970|171056|196498|196500|227189|227190|249594|249595|249599|249603|249607|249608|249609|249610|249611|249613|249615|249618|249621|249623|249624|249628|249629|249633|249635|249636|249638|249639|249640|249641|249642|249643|249644|249646|249647|249648|249649|249651|249652|249653|249655|249657|249658|249659|249660|259644|263994|263994|278356|278357|278359|278361|278362|278363|278372|278376|278379|278384|278405|278422|278423|278424|278446|278451|279473|279475|279514|279515|279518|279523|279555|279562|279563|279579|279581|279590|279605|279606|279607|279608|279611|279619|279621|279640|279646|279649|279658|279659|279661|279665|279671|279672|279675|279685|279687|279688|279689|359213|361847|361848|361849|364590|364595|364712|364714|364719|364720|364723|364732|364739|364746|364764|364767|364770|364797|364801|389351|389357|405008|405009|405010|405011|405012|413260|414755|421195|425328|438575|440422|440423|440424|440426|442691|442692|442693|442695|447385|447395|447398|447399|447402|447413|447495|447496|447498|447507|447513|447514|447516|447523|447524|447524|447528|447531|447539|447540|447594|447601|447604|447611|447612|447618|447619|447622|447627|447629|447632|447633|447635|447636|447638|447639|447640|447641|447646|447648|447654|447657|447666|447675|447676|447676|495100|498170|498172|498183|498193|498195|498205|498209|498233|498327|498361|515342|515348|515358|515360|515365|515412|515417|515420|515423|515425|515427|515431|515432|515444|515445|515449|515458|515459|515464|515465|515467|515469|515470|515471|515472|515473|515474|515476|515482|515485|515486|515491|515492|515506|515507|556738|556740|556742|556744|556746|556748|556750|556752|556752|556773|556775|556777|556779|556781|556783|556785|556787|556789|557088|557090|557092|557094|557096|557098|557100|557102|557104|557106|557108|558286|558288|558290|558292|558294|558296|558298|558300|558309|558311|558313|558315|576456|576456|582270|627230|627231|627232|627233|627234|627235|627236|627237|627238|627239|627240|627241|627242|627243|627244|627245|627246|627247|627248|627249|627250|627251|627252|627253|627254|627255|627256|627257|627258|627259|627260|627261|627262|627263|627264|627265|627266|627267|627268|627269|627270|627271|627272|627273|627274|650600|650605|650615|650716|683297|683298|683299|683300|683301|683302|685603|685604|685605|685606|685610|685613|685614|685614|685615|685617|685619|685620|685623|685624|689636|689637|689639|690442|690443|690444|690448|690450|718509|731994|745976|745982|761465|774431|780437|780438|780444|787022|794524|794532|794534|823174|823175|823176|823177|823178|823179|823180|823181|823182|823183|823184|823185|823186|823187|823188|823189|823190|823191|823192|823193|823194|823195|823196|823197|823198|823199|823200|823201|823202|823203|823204|823205|823206|823207|823208|823209|823210|823211|823212|823213|823214|823215|823216|823217|823218|823219|823220|823221|823222|851263|863247|921790|921791|921792|921793|921794|921795|921796|921797|921798|921799|921800|921801|921802|921803|930220|930221|930222|930223|930224|930225|930226|930227|930228|930229|930230|930231|930232|930233|930234|930235|930236|930237|930238|939787|939788|940614|941649|941650|941651|941652|941653|941654|941655|952205|952206|952207|952208|952209|952210|952211|952212|952213|960417|967162", "text": "Malignant hyperthermia, susceptibility to, 5" }, { - "baseId": "32671|32672|32673|78452|78453|99298|99329|140315|165528|178652|188519|188526|188530|188541|188542|188551|188574|188601|188608|188610|189343|189343|194127|194567|212999|236794|236794|258742|316516|316781|316790|324234|324278|330195|330349|331685|331818|373160|398923|462107|462982|527320|551787|565361|571766|625812|625813|641055|680050|791223|791224|919425|920315|961618|980501", + "upstreamId": "32671|32672|32673|78452|78453|99298|99329|140315|165528|178652|188519|188526|188530|188541|188542|188551|188574|188601|188608|188610|189343|189343|194127|194567|212999|236794|236794|258742|316516|316781|316790|324234|324278|330195|330349|331685|331818|373160|398923|462107|462982|527320|551787|565361|571766|625812|625813|641055|680050|791223|791224|919425|920315|961618|980501", "text": "Timothy syndrome" }, { - "baseId": "32671", + "upstreamId": "32671", "text": "CACNA1C-Related Disorders" }, { - "baseId": "32673|32674|78452|188519|188526|188610|189343|236794|462107|462982|527320|565361|571766|961618|980501", + "upstreamId": "32673|32674|78452|188519|188526|188610|189343|236794|462107|462982|527320|565361|571766|961618|980501", "text": "Brugada syndrome 3" }, { - "baseId": "32676", + "upstreamId": "32676", "text": "Calcitonin polymorphism" }, { - "baseId": "32677|32678|653832|653833|788901", + "upstreamId": "32677|32678|653832|653833|788901", "text": "Congenital hypotrichosis with juvenile macular dystrophy" }, { - "baseId": "32677|800604|800605", + "upstreamId": "32677|800604|800605", "text": "Hypotrichosis with juvenile macular dystrophy" }, { - "baseId": "32679|32680|99686|106447|191010|191011|265679|267814|269265|271578|326115|326116|326117|326118|326122|326126|326127|326130|326131|326133|326153|326154|335791|335798|335800|335801|335802|335807|335815|335823|335825|335827|342153|342154|342162|342166|342170|342172|342173|342177|342178|342182|342183|342184|342185|342186|342187|342188|342191|342193|342195|343674|343676|343681|343689|343691|343693|343694|343700|343707|343709|343710|343718|343720|343723|343724|343725|343727|343730|343731|343735|343736|438013|490886|490892|513362|588790|726753|740310|755332|771010|844118|875805|875806|875807|875808|875809|875810|875811|875812|875813|875814|875815|875816|875817|875818|875819|875820|875821|875822|875823|875824|875825|875826|875827|875828|875829|875830|875831|875832|875833|876706|876707|876708|876709|919673", + "upstreamId": "32679|32680|99686|106447|191010|191011|265679|267814|269265|271578|326115|326116|326117|326118|326122|326126|326127|326130|326131|326133|326153|326154|335791|335798|335800|335801|335802|335807|335815|335823|335825|335827|342153|342154|342162|342166|342170|342172|342173|342177|342178|342182|342183|342184|342185|342186|342187|342188|342191|342193|342195|343674|343676|343681|343689|343691|343693|343694|343700|343707|343709|343710|343718|343720|343723|343724|343725|343727|343730|343731|343735|343736|438013|490886|490892|513362|588790|726753|740310|755332|771010|844118|875805|875806|875807|875808|875809|875810|875811|875812|875813|875814|875815|875816|875817|875818|875819|875820|875821|875822|875823|875824|875825|875826|875827|875828|875829|875830|875831|875832|875833|876706|876707|876708|876709|919673", "text": "EEM syndrome" }, { - "baseId": "32681|32682|32683|429882|791652|791653|791654|804885", + "upstreamId": "32681|32682|32683|429882|791652|791653|791654|804885", "text": "Mental retardation, autosomal dominant 3" }, { - "baseId": "32684|32689", + "upstreamId": "32684|32689", "text": "Epidermolysis bullosa, junctional, localisata variant" }, { - "baseId": "32698", + "upstreamId": "32698", "text": "UCP1 POLYMORPHISM" }, { - "baseId": "32700|32701|32714|32714|32732|45982|46122|46150|50254|68798|68867|68894|69114|69232|69324|69436|69545|69596|69620|69706|69739|69880|69888|69923|70037|70118|70147|70247|70406|94602|97097|131092|151179|151518|180880|185052|185131|236066|242785|261965|402741|427542|478892|487936|531064|531347", + "upstreamId": "32700|32701|32714|32714|32732|45982|46122|46150|50254|68798|68867|68894|69114|69232|69324|69436|69545|69596|69620|69706|69739|69880|69888|69923|70037|70118|70147|70247|70406|94602|97097|131092|151179|151518|180880|185052|185131|236066|242785|261965|402741|427542|478892|487936|531064|531347", "text": "Pancreatic cancer 4" }, { - "baseId": "32700|32714|32732|45982|46027|46122|46150|46204|50254|68798|68801|68854|68867|68894|69114|69232|69324|69436|69545|69596|69620|69706|69739|69880|69888|69923|70037|70063|70118|70147|70247|70406|94602|97097|131092|151179|151518|185052|185131|205705|236066|242785|261965|402741|427542|478892|486720|487936|531064|531347", + "upstreamId": "32700|32714|32732|45982|46027|46122|46150|46204|50254|68798|68801|68854|68867|68894|69114|69232|69324|69436|69545|69596|69620|69706|69739|69880|69888|69923|70037|70063|70118|70147|70247|70406|94602|97097|131092|151179|151518|185052|185131|205705|236066|242785|261965|402741|427542|478892|486720|487936|531064|531347", "text": "Fanconi anemia, complementation group S" }, { - "baseId": "32710|45982|46102|46454|46545|67015|68797|69084|69166|69289|69528|70063|70235|70377|94834|102683|102720|133066|171076|171077|227553|246854|463554|550688|550695|550698|550707|550717|623687|969735", + "upstreamId": "32710|45982|46102|46454|46545|67015|68797|69084|69166|69289|69528|70063|70235|70377|94834|102683|102720|133066|171076|171077|227553|246854|463554|550688|550695|550698|550707|550717|623687|969735", "text": "Ovarian cancer" }, { - "baseId": "32716", + "upstreamId": "32716", "text": "Pancreatic cancer, susceptibility to" }, { - "baseId": "32716", + "upstreamId": "32716", "text": "Punctate palmoplantar keratoderma type 2" }, { - "baseId": "32736", + "upstreamId": "32736", "text": "Memory impairment, susceptibility to" }, { - "baseId": "32739|32740|32742|32743|32743|38569|38570|38571|38572|38572|194351|227358|320698|329500|329506|329508|336135|463821|463821|488913|528205|693513|693513|702899|702899|725691|739238|739239|754073|871932|871933|871935|871936|871938|871939|957236|957237", + "upstreamId": "32739|32740|32742|32743|32743|38569|38570|38571|38572|38572|194351|227358|320698|329500|329506|329508|336135|463821|463821|488913|528205|693513|693513|702899|702899|725691|739238|739239|754073|871932|871933|871935|871936|871938|871939|957236|957237", "text": "Microphthalmia with brain and digit anomalies" }, { - "baseId": "32741|32742|32743|32743|38570|38572|38572|194351|320698|320704|329500|329506|329507|329508|329509|336094|336096|336109|336119|336131|336135|338038|463821|463821|488913|528205|693513|702899|702899|725691|739238|739239|754073|871931|871932|871933|871934|871936|871937|871938|871939|871940|871941|957236|957237", + "upstreamId": "32741|32742|32743|32743|38570|38572|38572|194351|320698|320704|329500|329506|329507|329508|329509|336094|336096|336109|336119|336131|336135|338038|463821|463821|488913|528205|693513|702899|702899|725691|739238|739239|754073|871931|871932|871933|871934|871936|871937|871938|871939|871940|871941|957236|957237", "text": "Orofacial cleft 11" }, { - "baseId": "32744|609798|614360|799655", + "upstreamId": "32744|609798|614360|799655", "text": "Common variable immunodeficiency 5" }, { - "baseId": "32745|32746|137571|137573|137574|137576|433403|446138|468842|470263|570810|572530|573150|573151|648144|648145|741924|772716|847730|847731|847732|847733|847734|847735|847736|847737|847738|938705|938706|950808", + "upstreamId": "32745|32746|137571|137573|137574|137576|433403|446138|468842|470263|570810|572530|573150|573151|648144|648145|741924|772716|847730|847731|847732|847733|847734|847735|847736|847737|847738|938705|938706|950808", "text": "Agammaglobulinemia 3, autosomal recessive" }, { - "baseId": "32747", + "upstreamId": "32747", "text": "RH E/e POLYMORPHISM" }, { - "baseId": "32749|514288|514289|514290", + "upstreamId": "32749|514288|514289|514290", "text": "RH-NULL, AMORPH TYPE" }, { - "baseId": "32750", + "upstreamId": "32750", "text": "RHD-NEGATIVE POLYMORPHISM" }, { - "baseId": "32751", + "upstreamId": "32751", "text": "RhD category D-VII" }, { - "baseId": "32752", + "upstreamId": "32752", "text": "Rhd, weak d, type I" }, { - "baseId": "32753", + "upstreamId": "32753", "text": "BLOOD GROUP ERIK" }, { - "baseId": "32754|40056|791933", + "upstreamId": "32754|40056|791933", "text": "Landsteiner-Wiener phenotype" }, { - "baseId": "32756", + "upstreamId": "32756", "text": "KIDD BLOOD POLYMORPHISM Jk(a)/Jk(b)" }, { - "baseId": "32757|32758|32760", + "upstreamId": "32757|32758|32760", "text": "Jk-null variant" }, { - "baseId": "32759", + "upstreamId": "32759", "text": "Jk-null variant, finnish type" }, { - "baseId": "32761", + "upstreamId": "32761", "text": "KELL K/k BLOOD GROUP POLYMORPHISM" }, { - "baseId": "32762", + "upstreamId": "32762", "text": "KELL-NULL PHENOTYPE" }, { - "baseId": "32763|32765|32766", + "upstreamId": "32763|32765|32766", "text": "Blood group, Gerbich system" }, { - "baseId": "32764", + "upstreamId": "32764", "text": "Glycophorin c, gerbich variant" }, { - "baseId": "32767", + "upstreamId": "32767", "text": "DUFFY BLOOD GROUP SYSTEM, FYA/FYB POLYMORPHISM" }, { - "baseId": "32769|32770|32771|32772|32773", + "upstreamId": "32769|32770|32771|32772|32773", "text": "Blood group, Dombrock system" }, { - "baseId": "32774|32775|32776|32778", + "upstreamId": "32774|32775|32776|32778", "text": "ABO blood group system" }, { - "baseId": "32779|214524|529416|726090|842413", + "upstreamId": "32779|214524|529416|726090|842413", "text": "Hypoproteinemia, hypercatabolic" }, { - "baseId": "32781", + "upstreamId": "32781", "text": "Asthma, nocturnal, susceptibility to" }, { - "baseId": "32782", + "upstreamId": "32782", "text": "ADRB2 POLYMORPHISM" }, { - "baseId": "32783|32784", + "upstreamId": "32783|32784", "text": "Beta-2-adrenoreceptor agonist, reduced response to" }, { - "baseId": "32785|33199", + "upstreamId": "32785|33199", "text": "Congestive heart failure and beta-blocker response, modifier of" }, { - "baseId": "32786", + "upstreamId": "32786", "text": "Resting heart rate" }, { - "baseId": "32787|32788|32789|38565|335600|335602|335605|335607|335608|335613|335614|345366|345367|350034|350035|350038|350040|350044|350047|351080|351081|378249|487845|610160|620663|728697|757571|886181|886182|886183|886184|886185|886186|886187|887466|887467|887468|982221", + "upstreamId": "32787|32788|32789|38565|335600|335602|335605|335607|335608|335613|335614|345366|345367|350034|350035|350038|350040|350044|350047|351080|351081|378249|487845|610160|620663|728697|757571|886181|886182|886183|886184|886185|886186|886187|887466|887467|887468|982221", "text": "Hyper-IgM syndrome type 3" }, { - "baseId": "32790", + "upstreamId": "32790", "text": "BLOOD GROUP--OK" }, { - "baseId": "32791", + "upstreamId": "32791", "text": "Band 3 memphis" }, { - "baseId": "32791|32793|32795|32798|32802|32803|32804|32805|32807|32808|32810|32816|32821|32822|75388|256186|256187|256188|256190|256192|256193|256194|256195|256196|256196|256197|256198|328654|328655|328658|328667|328670|328681|328682|328683|338630|338644|338650|338651|338653|338656|338661|338663|338665|344706|344708|344710|344712|344719|344720|344722|344723|344724|344726|344727|344730|344734|346097|346103|346104|346106|346108|346110|346111|346117|346121|346122|346126|346127|346132|432335|727205|727207|740809|740810|755890|818334|845491|877685|877686|877687|877688|877689|877690|877691|877692|877693|877694|877695|877696|877697|877698|877699|877700|877701|877702|877703|877704|877705|877706|877707|877708|877709|877710|877711|877712|877713|877714|877715|877716|877717|877718|877719|877720|877721|877722|877723|877724|877725|877726|877727|877728|877729|877730|877731|877732|877733|877734|880529|880530|880531", + "upstreamId": "32791|32793|32795|32798|32802|32803|32804|32805|32807|32808|32810|32816|32821|32822|75388|256186|256187|256188|256190|256192|256193|256194|256195|256196|256196|256197|256198|328654|328655|328658|328667|328670|328681|328682|328683|338630|338644|338650|338651|338653|338656|338661|338663|338665|344706|344708|344710|344712|344719|344720|344722|344723|344724|344726|344727|344730|344734|346097|346103|346104|346106|346108|346110|346111|346117|346121|346122|346126|346127|346132|432335|727205|727207|740809|740810|755890|818334|845491|877685|877686|877687|877688|877689|877690|877691|877692|877693|877694|877695|877696|877697|877698|877699|877700|877701|877702|877703|877704|877705|877706|877707|877708|877709|877710|877711|877712|877713|877714|877715|877716|877717|877718|877719|877720|877721|877722|877723|877724|877725|877726|877727|877728|877729|877730|877731|877732|877733|877734|880529|880530|880531", "text": "Autosomal dominant distal renal tubular acidosis" }, { - "baseId": "32791|32793|32794|32795|32797|32798|32799|32800|32801|32807|32808|32809|32812|32814|32815|32819|32821|32822|75388|256186|256187|256188|256190|256192|256193|256194|256195|256196|256196|256197|256198|328654|328655|328658|328667|328670|328681|328682|328683|338630|338644|338650|338651|338653|338656|338661|338663|338665|344706|344708|344710|344712|344719|344720|344722|344723|344724|344726|344727|344730|344734|346097|346103|346104|346106|346108|346110|346111|346117|346121|346122|346126|346127|346132|511039|535262|535263|535264|535265|535266|727205|727207|740809|740810|755890|791779|845491|877685|877686|877687|877688|877689|877690|877691|877692|877693|877694|877695|877696|877697|877698|877699|877700|877701|877702|877703|877704|877705|877706|877707|877708|877709|877710|877711|877712|877713|877714|877715|877716|877717|877718|877719|877720|877721|877722|877723|877724|877725|877726|877727|877728|877729|877730|877731|877732|877733|877734|880529|880530|880531", + "upstreamId": "32791|32793|32794|32795|32797|32798|32799|32800|32801|32807|32808|32809|32812|32814|32815|32819|32821|32822|75388|256186|256187|256188|256190|256192|256193|256194|256195|256196|256196|256197|256198|328654|328655|328658|328667|328670|328681|328682|328683|338630|338644|338650|338651|338653|338656|338661|338663|338665|344706|344708|344710|344712|344719|344720|344722|344723|344724|344726|344727|344730|344734|346097|346103|346104|346106|346108|346110|346111|346117|346121|346122|346126|346127|346132|511039|535262|535263|535264|535265|535266|727205|727207|740809|740810|755890|791779|845491|877685|877686|877687|877688|877689|877690|877691|877692|877693|877694|877695|877696|877697|877698|877699|877700|877701|877702|877703|877704|877705|877706|877707|877708|877709|877710|877711|877712|877713|877714|877715|877716|877717|877718|877719|877720|877721|877722|877723|877724|877725|877726|877727|877728|877729|877730|877731|877732|877733|877734|880529|880530|880531", "text": "Spherocytosis type 4" }, { - "baseId": "32792", + "upstreamId": "32792", "text": "Ovalocytosis, southeast Asian" }, { - "baseId": "32795|214835|214836|214837|919731", + "upstreamId": "32795|214835|214836|214837|919731", "text": "Hereditary cryohydrocytosis with normal stomatin" }, { - "baseId": "32796", + "upstreamId": "32796", "text": "BLOOD GROUP--WALDNER TYPE" }, { - "baseId": "32798", + "upstreamId": "32798", "text": "BLOOD GROUP--WRIGHT ANTIGEN" }, { - "baseId": "32806|32810|32811|32812|32818|256196|513221|513222|513223", + "upstreamId": "32806|32810|32811|32812|32818|256196|513221|513222|513223", "text": "Renal tubular acidosis, distal, with hemolytic anemia" }, { - "baseId": "32807", + "upstreamId": "32807", "text": "DIEGO BLOOD GROUP ANTIGEN" }, { - "baseId": "32813|32821", + "upstreamId": "32813|32821", "text": "SWANN BLOOD GROUP ANTIGEN" }, { - "baseId": "32817", + "upstreamId": "32817", "text": "Renal tubular acidosis, distal, with normal red cell morphology" }, { - "baseId": "32820", + "upstreamId": "32820", "text": "BLOOD GROUP--FROESE" }, { - "baseId": "32822", + "upstreamId": "32822", "text": "Acanthocytosis due to band 3 ht" }, { - "baseId": "32822", + "upstreamId": "32822", "text": "Acanthocytosis" }, { - "baseId": "32823|32824|32825|32826|190426|190426|204583|204587|267323|272459|308303|308305|308307|312693|312703|312707|312716|312717|318592|318595|318595|318597|318600|319133|319133|319141|319143|319144|319145|319145|362062|362063|362064|362065|362066|438816|459243|459543|460088|490866|511840|511840|524861|524864|524865|524865|524989|524989|563262|563263|620811|622395|638314|638315|682631|695443|700994|700995|700996|700997|700998|700998|700999|701000|737129|751704|777818|777820|777820|790910|836153|836154|836155|836156|836157|858773|858774|861211|861212|861257|861258|861259|861260|861261|861262|861263|861264|861276|861277|861278|861279|861280|902017|902018|902019|902020|902021|902022|902023|902024|902025|902026|902027|902028|902029|903402|903403|903404|903405|903406|919233|925595|925596|925597|925598|925599|955850|961023|961295|964909", + "upstreamId": "32823|32824|32825|32826|190426|190426|204583|204587|267323|272459|308303|308305|308307|312693|312703|312707|312716|312717|318592|318595|318595|318597|318600|319133|319133|319141|319143|319144|319145|319145|362062|362063|362064|362065|362066|438816|459243|459543|460088|490866|511840|511840|524861|524864|524865|524865|524989|524989|563262|563263|620811|622395|638314|638315|682631|695443|700994|700995|700996|700997|700998|700998|700999|701000|737129|751704|777818|777820|777820|790910|836153|836154|836155|836156|836157|858773|858774|861211|861212|861257|861258|861259|861260|861261|861262|861263|861264|861276|861277|861278|861279|861280|902017|902018|902019|902020|902021|902022|902023|902024|902025|902026|902027|902028|902029|903402|903403|903404|903405|903406|919233|925595|925596|925597|925598|925599|955850|961023|961295|964909", "text": "Acromesomelic dysplasia, Maroteaux type" }, { - "baseId": "32827|132361|238133|238133|238134|238135|390780|390781|390808|390812|447018|447106|447114|447188|447193|514998|515054|515067|556861|556881|557006|557121|626689|626690|626691|626692|818836|822595|822596|822597|822598|921601|921602|929993|929994|952032", + "upstreamId": "32827|132361|238133|238133|238134|238135|390780|390781|390808|390812|447018|447106|447114|447188|447193|514998|515054|515067|556861|556881|557006|557121|626689|626690|626691|626692|818836|822595|822596|822597|822598|921601|921602|929993|929994|952032", "text": "Atrial fibrillation, familial, 6" }, { - "baseId": "32828|32829|32830|32833|32834|32835|32839|315992|315993|315995|315999|316000|316001|316003|316004|316007|316009|316014|316015|316016|316023|323249|323252|323253|323254|323269|323273|323280|323281|323282|323285|323286|323288|329296|329299|329300|329303|329305|329307|329308|329314|329315|329329|329339|329341|329364|329366|330502|330503|330504|330508|330512|330517|330518|330528|330529|330534|330542|330545|330551|330554|408521|702109|791193|794041|798650|869246|869247|869248|869249|869250|869251|869252|869253|869254|869255|869256|869257|869258|869259|869260|869261|869262|869263|869264|869265|869266|869267|869268|869269|869270|869271|872187|872188|872189|872190", + "upstreamId": "32828|32829|32830|32833|32834|32835|32839|315992|315993|315995|315999|316000|316001|316003|316004|316007|316009|316014|316015|316016|316023|323249|323252|323253|323254|323269|323273|323280|323281|323282|323285|323286|323288|329296|329299|329300|329303|329305|329307|329308|329314|329315|329329|329339|329341|329364|329366|330502|330503|330504|330508|330512|330517|330518|330528|330529|330534|330542|330545|330551|330554|408521|702109|791193|794041|798650|869246|869247|869248|869249|869250|869251|869252|869253|869254|869255|869256|869257|869258|869259|869260|869261|869262|869263|869264|869265|869266|869267|869268|869269|869270|869271|872187|872188|872189|872190", "text": "Keratosis follicularis" }, { - "baseId": "32831|32832", + "upstreamId": "32831|32832", "text": "Darier disease, acral hemorrhagic type" }, { - "baseId": "32836|32837", + "upstreamId": "32836|32837", "text": "Darier disease, segmental" }, { - "baseId": "32838|38564|919408|920309", + "upstreamId": "32838|38564|919408|920309", "text": "Acrokeratosis verruciformis of Hopf" }, { - "baseId": "32840", + "upstreamId": "32840", "text": "Deafness, autosomal recessive 12, modifier of" }, { - "baseId": "32841|32842|32843|32844|32845|102433|102434|102435|102436|102437|102438|102439|324938|324939|324941|324942|324944|324945|324946|324950|324951|324963|334586|334597|334609|334610|334612|334615|334617|334618|334622|334627|334630|341114|341116|341117|341118|342633|342634|342641|342645|342646|342655|374322|374323|374324|374327|374336|375056|375065|375355|375360|375361|375368|377489|409605|409608|415488|426167|426169|441893|441895|441898|445557|464825|465537|465598|465599|465612|465628|465630|466321|466323|466325|466328|466332|466343|466347|466350|466352|466353|466354|466356|466603|466605|466607|466609|466611|466621|466624|529892|529894|529896|529900|529975|529981|530214|530217|530399|530408|567489|568063|568066|568072|568074|568076|568077|570087|570092|570227|570229|570233|574013|574017|574024|577540|577541|644543|644544|644545|644546|644547|644548|644549|644550|644551|644552|644553|644554|644555|644556|644557|644558|644559|644560|644561|644562|644563|644564|644565|644566|644567|644568|644569|644570|644571|644572|644573|644574|652559|654800|693837|693838|693839|693842|693843|695686|695688|695689|714847|726557|726558|770839|785250|820820|820821|820822|843705|843706|843707|843708|843709|843710|843711|843712|843713|843714|843715|843716|843717|843718|843719|843720|843721|843722|843723|843724|843725|843726|843727|843728|851667|858305|858414|875073|875074|875075|875076|875077|875078|875079|875080|875081|875082|875083|875084|876650|927761|927762|927763|927764|927765|927766|937400|937401|937402|937403|949351|949352|949353|949354|949355|949356|957725|957726|957727|957728|957729|960153", + "upstreamId": "32841|32842|32843|32844|32845|102433|102434|102435|102436|102437|102438|102439|324938|324939|324941|324942|324944|324945|324946|324950|324951|324963|334586|334597|334609|334610|334612|334615|334617|334618|334622|334627|334630|341114|341116|341117|341118|342633|342634|342641|342645|342646|342655|374322|374323|374324|374327|374336|375056|375065|375355|375360|375361|375368|377489|409605|409608|415488|426167|426169|441893|441895|441898|445557|464825|465537|465598|465599|465612|465628|465630|466321|466323|466325|466328|466332|466343|466347|466350|466352|466353|466354|466356|466603|466605|466607|466609|466611|466621|466624|529892|529894|529896|529900|529975|529981|530214|530217|530399|530408|567489|568063|568066|568072|568074|568076|568077|570087|570092|570227|570229|570233|574013|574017|574024|577540|577541|644543|644544|644545|644546|644547|644548|644549|644550|644551|644552|644553|644554|644555|644556|644557|644558|644559|644560|644561|644562|644563|644564|644565|644566|644567|644568|644569|644570|644571|644572|644573|644574|652559|654800|693837|693838|693839|693842|693843|695686|695688|695689|714847|726557|726558|770839|785250|820820|820821|820822|843705|843706|843707|843708|843709|843710|843711|843712|843713|843714|843715|843716|843717|843718|843719|843720|843721|843722|843723|843724|843725|843726|843727|843728|851667|858305|858414|875073|875074|875075|875076|875077|875078|875079|875080|875081|875082|875083|875084|876650|927761|927762|927763|927764|927765|927766|937400|937401|937402|937403|949351|949352|949353|949354|949355|949356|957725|957726|957727|957728|957729|960153", "text": "Brody myopathy" }, { - "baseId": "32847", + "upstreamId": "32847", "text": "NAT1*17 ALLELE" }, { - "baseId": "32848|32849|32850|32851|32852|32853|38563|194327|198631|236936|236993|237084|303182|303185|303190|303192|306444|306452|306457|306460|306464|306465|306466|306468|306469|311343|311344|311345|311349|311350|311353|311354|311356|311457|311458|311461|311462|371156|407159|481234|508826|508827|550205|561990|561991|561994|620266|624052|636200|700133|711042|711043|736171|766308|782875|789120|789371|790726|852366|898242|898243|898244|898245|898246|898247|898248|898249|898250|898251|898252|898253|898254|898255|898256|898257|900376|900377|900378|900379|900380|900381|920242|924865|933896|933897|959858|961779|961780|965588", + "upstreamId": "32848|32849|32850|32851|32852|32853|38563|194327|198631|236936|236993|237084|303182|303185|303190|303192|306444|306452|306457|306460|306464|306465|306466|306468|306469|311343|311344|311345|311349|311350|311353|311354|311356|311457|311458|311461|311462|371156|407159|481234|508826|508827|550205|561990|561991|561994|620266|624052|636200|700133|711042|711043|736171|766308|782875|789120|789371|790726|852366|898242|898243|898244|898245|898246|898247|898248|898249|898250|898251|898252|898253|898254|898255|898256|898257|900376|900377|900378|900379|900380|900381|920242|924865|933896|933897|959858|961779|961780|965588", "text": "Deficiency of aromatic-L-amino-acid decarboxylase" }, { - "baseId": "32854|32855|32856|32857|32858|32859|32860|32861|32862|32865|140767|322823|322828|322830|322833|322834|322835|322839|322848|322850|322851|322853|322854|322856|322857|322858|322860|332349|332350|332356|332357|332358|332360|332365|332369|332371|332372|332373|332376|339339|339346|339347|339351|339352|339353|339354|339355|339362|339366|339374|340785|340786|340790|340793|340803|505323|505751|620872|739675|754517|754518|754520|760347|760348|770224|770225|770227|784954|784955|784956|873769|873770|873771|873772|873773|873774|873775|873776|873777|873778|873779|873780|873781|873782|873783|873784|873785|873786|873787|873788|873789|873790|873791|873792|873793|873794|873795|873796|873797|873798|873799|873800|873801|873802|873803|873804|873805|920346|979618|979619|979620|979621|979622|979623|979624|979625|979626|979627|979628|979629|979630|979631|979632|979633|979634|979635", + "upstreamId": "32854|32855|32856|32857|32858|32859|32860|32861|32862|32865|140767|322823|322828|322830|322833|322834|322835|322839|322848|322850|322851|322853|322854|322856|322857|322858|322860|332349|332350|332356|332357|332358|332360|332365|332369|332371|332372|332373|332376|339339|339346|339347|339351|339352|339353|339354|339355|339362|339366|339374|340785|340786|340790|340793|340803|505323|505751|620872|739675|754517|754518|754520|760347|760348|770224|770225|770227|784954|784955|784956|873769|873770|873771|873772|873773|873774|873775|873776|873777|873778|873779|873780|873781|873782|873783|873784|873785|873786|873787|873788|873789|873790|873791|873792|873793|873794|873795|873796|873797|873798|873799|873800|873801|873802|873803|873804|873805|920346|979618|979619|979620|979621|979622|979623|979624|979625|979626|979627|979628|979629|979630|979631|979632|979633|979634|979635", "text": "Aromatase deficiency" }, { - "baseId": "32863|32864|32866", + "upstreamId": "32863|32864|32866", "text": "Aromatase excess syndrome" }, { - "baseId": "32867|32868|32869|32870|32871|32872|32873|32874|32876|32877|32878|32881|32882|32883|32884", + "upstreamId": "32867|32868|32869|32870|32871|32872|32873|32874|32876|32877|32878|32881|32882|32883|32884", "text": "Diabetes insipidus, nephrogenic, autosomal recessive" }, { - "baseId": "32875|32879|32880", + "upstreamId": "32875|32879|32880", "text": "Diabetes insipidus, nephrogenic, autosomal dominant" }, { - "baseId": "32885", + "upstreamId": "32885", "text": "COLTON BLOOD GROUP POLYMORPHISM" }, { - "baseId": "32886", + "upstreamId": "32886", "text": "Colton-null phenotype" }, { - "baseId": "32887|32889|32890|32891|32892|32896|32897|32900|32901|32904|906167|961224|961225", + "upstreamId": "32887|32889|32890|32891|32892|32896|32897|32900|32901|32904|906167|961224|961225", "text": "Familial type 3 hyperlipoproteinemia" }, { - "baseId": "32887|227759|538603", + "upstreamId": "32887|227759|538603", "text": "atorvastatin response - Efficacy" }, { - "baseId": "32887|32895|215242|246297|287155|362735|434210|682121", + "upstreamId": "32887|32895|215242|246297|287155|362735|434210|682121", "text": "Hypercholesterolemia" }, { - "baseId": "32888", + "upstreamId": "32888", "text": "HYPERLIPOPROTEINEMIA, TYPE III, AND ATHEROSCLEROSIS ASSOCIATED WITH APOE5" }, { - "baseId": "32898", + "upstreamId": "32898", "text": "APOE2-DUNEDIN" }, { - "baseId": "32899", + "upstreamId": "32899", "text": "APOE5 VARIANT" }, { - "baseId": "32901", + "upstreamId": "32901", "text": "HYPERLIPOPROTEINEMIA, TYPE III, ASSOCIATED WITH APOE3(WASHINGTON)" }, { - "baseId": "32903", + "upstreamId": "32903", "text": "Alzheimer disease 2" }, { - "baseId": "32903|33133", + "upstreamId": "32903|33133", "text": "Primary degenerative dementia of the Alzheimer type, presenile onset" }, { - "baseId": "32903|32918|32919", + "upstreamId": "32903|32918|32919", "text": "Lipoprotein glomerulopathy" }, { - "baseId": "32910", + "upstreamId": "32910", "text": "APOE3(-)-FREIBURG" }, { - "baseId": "32913", + "upstreamId": "32913", "text": "APOE2 VARIANT" }, { - "baseId": "32914", + "upstreamId": "32914", "text": "APOE4 VARIANT" }, { - "baseId": "32915", + "upstreamId": "32915", "text": "APOE4(+)" }, { - "baseId": "32920|32921|32922|32923|32924|32925|32926|32927|32928|32929|32931|32933|32934|32935|32937|32938|38562|133873|238613|260642|280907|280912|280921|280922|280927|280928|280943|280947|281413|281414|281421|281423|281462|281464|281482|281488|281491|281492|282654|282656|282659|282664|282680|282691|282692|282936|282952|282971|282972|282974|282976|282977|284416|284421|284513|285074|285091|285100|285117|285119|285145|285188|287248|287258|287262|287263|287276|287316|287496|287500|287501|287521|287529|287554|287575|287586|287591|434172|434174|434175|434176|434177", + "upstreamId": "32920|32921|32922|32923|32924|32925|32926|32927|32928|32929|32931|32933|32934|32935|32937|32938|38562|133873|238613|260642|280907|280912|280921|280922|280927|280928|280943|280947|281413|281414|281421|281423|281462|281464|281482|281488|281491|281492|282654|282656|282659|282664|282680|282691|282692|282936|282952|282971|282972|282974|282976|282977|284416|284421|284513|285074|285091|285100|285117|285119|285145|285188|287248|287258|287262|287263|287276|287316|287496|287500|287501|287521|287529|287554|287575|287586|287591|434172|434174|434175|434176|434177", "text": "Familial hypobetalipoproteinemia" }, { - "baseId": "32920|32929|32929|32936|32936|48709|48709|80399|80401|80402|85303|85303|85305|85310|133865|133866|133867|133868|133868|133869|133870|133870|133871|133872|133872|133873|133874|133875|178500|178500|178501|178503|178503|187184|187185|187185|187189|187189|187190|187191|196823|196823|196824|215238|215238|215239|215239|215240|215240|215242|215242|215243|215243|215244|215245|215246|215246|215247|215247|215248|215248|236950|238598|238599|238599|238600|238600|238601|238602|238603|238603|238604|238604|238605|238605|238607|238608|238608|238609|238609|238610|238610|238611|238612|238612|238613|238614|238615|238615|238616|238616|238617|238619|246909|246910|246910|246911|246914|246915|250516|250516|250517|250517|250518|250518|250519|250519|250520|250520|250521|250522|250522|250523|250523|250524|250525|250525|250526|250526|250527|250527|250528|250528|250529|250529|250530|250530|250531|250531|250532|250533|250533|260627|260627|260630|260630|260631|260633|260633|260634|260635|260636|260636|260637|260637|260643|260646|260652|265379|265379|284377|284390|284396|284400|284403|284408|284408|284413|284416|284417|284418|284418|284420|284424|284424|284426|284426|284429|284434|284434|284442|284445|284447|284450|284451|284451|284454|284454|284455|284456|284456|284465|284466|284507|284507|284513|284515|284515|284527|284527|284529|284529|284530|284530|285065|285066|285067|285067|285072|285073|285075|285075|285077|285086|285087|285090|285090|285091|285092|285092|285098|285098|285099|285119|285120|285120|285121|285122|285153|285153|285167|285193|285193|285196|285196|285207|285207|285211|285214|285218|285219|285221|287123|287134|287134|287140|287141|287142|287151|287155|287170|287185|287185|287196|287202|287206|287206|287207|287208|287208|287213|287217|287224|287224|287234|287234|287242|287245|287246|287250|287259|287262|287263|287264|287264|287276|287316|287333|287334|287334|287361|287361|287372|287372|287374|287498|287521|287522|287524|287525|287529|287532|287535|287538|287543|287559|287561|287563|287566|287572|287572|287582|287583|287586|287589|287589|287591|287592|287592|287593|287593|287601|287601|287608|287609|287610|354070|354071|354072|359413|359413|362735|362735|366106|366335|366335|366341|366341|366937|389476|389476|389479|389484|389492|389492|389497|389499|389499|389506|389506|392294|392299|392301|392377|392380|392382|392387|392470|392476|392480|392486|392487|392489|392497|392541|392541|392544|392547|392547|392555|392557|392562|414865|425004|425004|425007|425009|425011|425011|425012|425012|425464|425464|425465|427986|431948|434167|434168|434170|437671|443149|443150|443151|443152|443153|450283|450285|450290|450290|450291|450292|450296|450308|450405|450405|450421|450426|450435|450435|450437|450437|450439|450442|450442|450444|450444|450445|450445|450446|450447|450450|450456|450464|450471|450471|450478|450488|450495|450495|450498|450540|450546|450549|450551|450558|450562|450563|450570|450571|450571|450573|450573|450579|450579|450581|450581|450585|481122|483177|483188|483200|483200|483208|483210|483211|483213|483223|483225|483249|483249|483253|486938|499500|499717|499894|516314|517546|517552|517556|517558|517564|517565|517566|517568|517570|517578|517579|517587|517590|517595|517603|517608|517646|517646|517647|517658|517660|517662|517664|517666|517681|517684|517686|517687|517690|517691|517692|517694|517695|517696|517701|517701|517705|517706|517714|517721|517725|517728|517729|517730|517730|517803|517803|517805|517808|517818|517821|517828|517829|517842|517845|517848|517854|517856|517856|517858|517861|517865|517867|517869|538529|538530|538530|538531|538533|538534|538538|538552|538558|538561|538562|538562|538563|557826|557828|557830|557832|557873|557875|557877|557879|557881|557883|557885|557887|559053|559055|559057|559059|559061|559063|559065|559067|560757|560759|560768|560773|560775|560777|560798|560800|560803|585794|588441|611282|611282|616235|616235|616237|616237|616241|616247|616247|616259|616268|616268|616273|616275|616276|616277|616279|616282|616289|616294|616295|616307|616325|616330|616334|616349|616355|616355|616360|616367|616368|616373|616379|616383|616398|616399|616401|616402|616403|616404|616411|616420|616424|616425|616436|616438|616440|616456|616459|616460|616461|616464|616464|616469|616472|616473|616481|616481|616494|616514|619103|619120|629321|629322|629323|629324|629325|629326|629327|629328|629329|629330|629331|629332|629333|629334|629335|629336|629337|629338|629339|629340|629341|629342|629343|629344|629345|629346|629347|629348|629348|629349|629350|629351|655411|672392|672394|672394|683475|683475|683477|683482|683482|683483|683484|686124|686125|686126|686131|686132|686134|686135|686138|689706|691018|691019|691020|691021|707993|719572|719574|730103|747229|762836|762837|781123|781124|781124|781126|781128|795134|825619|825620|825621|825622|825623|825623|825624|825625|825626|825626|825627|825628|825629|825630|825631|825632|825633|825634|825635|825636|825637|825638|825639|825640|825641|825642|825643|850829|883593|883594|883595|883596|883597|883598|883599|883600|883601|883602|883603|883604|883605|883606|883607|883608|883609|883610|883611|883612|883613|883614|883616|883617|883618|883619|883620|883621|883622|883623|883624|883625|883626|883627|883628|883629|883630|883631|883632|883633|883634|883635|883635|883636|883637|883638|883639|883640|907794|907820|907858|907887|907942|907991|908028|908059|908162|908311|922528|922529|922530|922531|922532|922533|922534|922535|922536|922537|922538|922539|922539|922540|931085|931086|931087|931088|931089|931090|931091|931092|931093|931094|931095|931096|931097|931098|931099|931100|931101|931102|939872|940688|942571|942572|942573|942574|942575|952892|952893|952894|952895|964191|964809|970733|970734|970735", + "upstreamId": "32920|32929|32929|32936|32936|48709|48709|80399|80401|80402|85303|85303|85305|85310|133865|133866|133867|133868|133868|133869|133870|133870|133871|133872|133872|133873|133874|133875|178500|178500|178501|178503|178503|187184|187185|187185|187189|187189|187190|187191|196823|196823|196824|215238|215238|215239|215239|215240|215240|215242|215242|215243|215243|215244|215245|215246|215246|215247|215247|215248|215248|236950|238598|238599|238599|238600|238600|238601|238602|238603|238603|238604|238604|238605|238605|238607|238608|238608|238609|238609|238610|238610|238611|238612|238612|238613|238614|238615|238615|238616|238616|238617|238619|246909|246910|246910|246911|246914|246915|250516|250516|250517|250517|250518|250518|250519|250519|250520|250520|250521|250522|250522|250523|250523|250524|250525|250525|250526|250526|250527|250527|250528|250528|250529|250529|250530|250530|250531|250531|250532|250533|250533|260627|260627|260630|260630|260631|260633|260633|260634|260635|260636|260636|260637|260637|260643|260646|260652|265379|265379|284377|284390|284396|284400|284403|284408|284408|284413|284416|284417|284418|284418|284420|284424|284424|284426|284426|284429|284434|284434|284442|284445|284447|284450|284451|284451|284454|284454|284455|284456|284456|284465|284466|284507|284507|284513|284515|284515|284527|284527|284529|284529|284530|284530|285065|285066|285067|285067|285072|285073|285075|285075|285077|285086|285087|285090|285090|285091|285092|285092|285098|285098|285099|285119|285120|285120|285121|285122|285153|285153|285167|285193|285193|285196|285196|285207|285207|285211|285214|285218|285219|285221|287123|287134|287134|287140|287141|287142|287151|287155|287170|287185|287185|287196|287202|287206|287206|287207|287208|287208|287213|287217|287224|287224|287234|287234|287242|287245|287246|287250|287259|287262|287263|287264|287264|287276|287316|287333|287334|287334|287361|287361|287372|287372|287374|287498|287521|287522|287524|287525|287529|287532|287535|287538|287543|287559|287561|287563|287566|287572|287572|287582|287583|287586|287589|287589|287591|287592|287592|287593|287593|287601|287601|287608|287609|287610|354070|354071|354072|359413|359413|362735|362735|366106|366335|366335|366341|366341|366937|389476|389476|389479|389484|389492|389492|389497|389499|389499|389506|389506|392294|392299|392301|392377|392380|392382|392387|392470|392476|392480|392486|392487|392489|392497|392541|392541|392544|392547|392547|392555|392557|392562|414865|425004|425004|425007|425009|425011|425011|425012|425012|425464|425464|425465|427986|431948|434167|434168|434170|437671|443149|443150|443151|443152|443153|450283|450285|450290|450290|450291|450292|450296|450308|450405|450405|450421|450426|450435|450435|450437|450437|450439|450442|450442|450444|450444|450445|450445|450446|450447|450450|450456|450464|450471|450471|450478|450488|450495|450495|450498|450540|450546|450549|450551|450558|450562|450563|450570|450571|450571|450573|450573|450579|450579|450581|450581|450585|481122|483177|483188|483200|483200|483208|483210|483211|483213|483223|483225|483249|483249|483253|486938|499500|499717|499894|516314|517546|517552|517556|517558|517564|517565|517566|517568|517570|517578|517579|517587|517590|517595|517603|517608|517646|517646|517647|517658|517660|517662|517664|517666|517681|517684|517686|517687|517690|517691|517692|517694|517695|517696|517701|517701|517705|517706|517714|517721|517725|517728|517729|517730|517730|517803|517803|517805|517808|517818|517821|517828|517829|517842|517845|517848|517854|517856|517856|517858|517861|517865|517867|517869|538529|538530|538530|538531|538533|538534|538538|538552|538558|538561|538562|538562|538563|557826|557828|557830|557832|557873|557875|557877|557879|557881|557883|557885|557887|559053|559055|559057|559059|559061|559063|559065|559067|560757|560759|560768|560773|560775|560777|560798|560800|560803|585794|588441|611282|611282|616235|616235|616237|616237|616241|616247|616247|616259|616268|616268|616273|616275|616276|616277|616279|616282|616289|616294|616295|616307|616325|616330|616334|616349|616355|616355|616360|616367|616368|616373|616379|616383|616398|616399|616401|616402|616403|616404|616411|616420|616424|616425|616436|616438|616440|616456|616459|616460|616461|616464|616464|616469|616472|616473|616481|616481|616494|616514|619103|619120|629321|629322|629323|629324|629325|629326|629327|629328|629329|629330|629331|629332|629333|629334|629335|629336|629337|629338|629339|629340|629341|629342|629343|629344|629345|629346|629347|629348|629348|629349|629350|629351|655411|672392|672394|672394|683475|683475|683477|683482|683482|683483|683484|686124|686125|686126|686131|686132|686134|686135|686138|689706|691018|691019|691020|691021|707993|719572|719574|730103|747229|762836|762837|781123|781124|781124|781126|781128|795134|825619|825620|825621|825622|825623|825623|825624|825625|825626|825626|825627|825628|825629|825630|825631|825632|825633|825634|825635|825636|825637|825638|825639|825640|825641|825642|825643|850829|883593|883594|883595|883596|883597|883598|883599|883600|883601|883602|883603|883604|883605|883606|883607|883608|883609|883610|883611|883612|883613|883614|883616|883617|883618|883619|883620|883621|883622|883623|883624|883625|883626|883627|883628|883629|883630|883631|883632|883633|883634|883635|883635|883636|883637|883638|883639|883640|907794|907820|907858|907887|907942|907991|908028|908059|908162|908311|922528|922529|922530|922531|922532|922533|922534|922535|922536|922537|922538|922539|922539|922540|931085|931086|931087|931088|931089|931090|931091|931092|931093|931094|931095|931096|931097|931098|931099|931100|931101|931102|939872|940688|942571|942572|942573|942574|942575|952892|952893|952894|952895|964191|964809|970733|970734|970735", "text": "Familial hypercholesterolemia 2" }, { - "baseId": "32920|32929|32929|32934|32936|48709|80399|80401|80402|85303|85303|85305|85310|133865|133866|133867|133868|133869|133870|133870|133871|133872|133873|133874|133875|178500|178503|187184|187185|187185|187189|187189|187190|187191|196823|196823|196824|215238|215239|215239|215240|215240|215242|215242|215243|215244|215245|215246|215246|215247|215247|215248|215248|228912|236950|238598|238599|238599|238600|238600|238601|238602|238603|238603|238604|238604|238605|238606|238607|238608|238608|238609|238609|238610|238610|238611|238612|238612|238613|238614|238615|238616|238616|238617|238618|238619|246909|246910|246910|246911|246914|246915|250516|250516|250517|250517|250518|250519|250519|250520|250520|250521|250522|250522|250523|250524|250525|250525|250526|250527|250527|250528|250528|250529|250529|250530|250530|250531|250531|250532|250533|250533|260627|260630|260630|260631|260633|260633|260634|260635|260636|260637|260637|260643|260646|265379|265379|284377|284390|284396|284400|284403|284408|284408|284413|284416|284417|284418|284418|284420|284424|284424|284426|284426|284429|284434|284434|284442|284445|284447|284450|284451|284451|284454|284454|284455|284456|284456|284465|284466|284507|284507|284513|284515|284515|284527|284527|284529|284529|284530|284530|285065|285066|285067|285067|285072|285073|285075|285075|285077|285086|285087|285090|285090|285091|285092|285092|285098|285098|285099|285119|285120|285120|285121|285122|285153|285153|285167|285193|285193|285196|285196|285207|285207|285211|285214|285218|285219|285221|287123|287134|287134|287140|287141|287142|287151|287155|287170|287185|287185|287196|287202|287206|287206|287207|287208|287208|287213|287217|287224|287224|287234|287234|287242|287245|287246|287250|287259|287262|287263|287264|287264|287276|287316|287333|287334|287334|287361|287361|287372|287372|287374|287498|287521|287522|287524|287525|287529|287532|287535|287538|287543|287559|287561|287563|287566|287572|287572|287582|287583|287586|287589|287589|287591|287592|287592|287593|287593|287601|287601|287608|287609|287610|354070|354071|354072|359413|359413|361171|362735|362735|366106|366335|366341|366341|366937|389476|389484|389492|389492|389497|389499|389499|389506|392294|392299|392301|392301|392377|392380|392382|392387|392470|392476|392480|392486|392487|392489|392497|392541|392541|392544|392547|392547|392554|392555|392557|392562|414865|425004|425004|425007|425009|425009|425011|425011|425012|425012|425464|425465|427986|427986|431948|434167|434168|434170|443149|443150|443151|443152|443153|450283|450285|450290|450290|450291|450292|450296|450308|450405|450405|450421|450426|450435|450435|450437|450437|450439|450442|450442|450444|450444|450445|450445|450446|450447|450450|450456|450464|450471|450471|450478|450483|450488|450492|450495|450495|450498|450540|450546|450549|450551|450558|450562|450563|450570|450571|450571|450573|450573|450579|450579|450581|450581|450585|481122|483177|483188|483200|483200|483208|483210|483211|483213|483223|483225|483249|483249|483253|486938|499500|499717|499894|516314|517546|517552|517556|517558|517564|517565|517566|517568|517570|517578|517579|517587|517590|517595|517603|517608|517646|517646|517647|517658|517660|517662|517664|517666|517681|517684|517686|517687|517690|517691|517692|517694|517695|517696|517701|517701|517705|517705|517706|517714|517721|517725|517728|517729|517730|517730|517803|517803|517805|517808|517818|517821|517828|517829|517842|517845|517848|517854|517856|517856|517858|517861|517865|517867|517869|538529|538530|538530|538531|538533|538534|538538|538552|538558|538561|538562|538562|538563|557826|557828|557830|557832|557873|557875|557877|557879|557881|557883|557885|557887|559053|559055|559057|559059|559061|559063|559065|559067|560757|560759|560768|560773|560775|560777|560798|560800|560803|585794|588441|611282|611282|616235|616235|616237|616237|616241|616247|616247|616259|616268|616268|616273|616275|616276|616276|616277|616279|616282|616289|616294|616295|616307|616325|616330|616334|616346|616349|616355|616355|616360|616367|616368|616373|616379|616383|616398|616399|616401|616402|616403|616404|616411|616420|616424|616425|616436|616438|616456|616460|616461|616463|616464|616464|616469|616472|616473|616481|616481|616494|616514|619103|619120|619120|629321|629322|629323|629324|629325|629326|629327|629328|629329|629330|629331|629332|629333|629334|629335|629336|629337|629338|629339|629340|629341|629342|629343|629344|629345|629346|629347|629348|629348|629349|629350|629351|655411|672392|672394|683475|683475|683477|683482|683482|683483|683484|686124|686125|686126|686131|686132|686134|686135|686138|689706|691018|691019|691020|691021|707993|719572|719574|730103|747229|762836|762837|781123|781124|781124|781126|781128|795134|815841|815842|815843|825619|825620|825621|825622|825623|825623|825624|825625|825626|825626|825627|825628|825629|825630|825631|825632|825633|825634|825635|825636|825637|825638|825639|825640|825641|825642|825643|850829|883593|883594|883595|883596|883597|883598|883599|883600|883601|883602|883603|883604|883605|883606|883607|883608|883609|883610|883611|883612|883613|883616|883617|883618|883619|883620|883621|883622|883623|883624|883625|883626|883627|883628|883629|883630|883631|883632|883633|883634|883635|883635|883636|883637|883638|883639|883640|906165|907794|907858|907887|907942|907991|908059|908162|908214|908311|918731|918732|922528|922529|922530|922531|922532|922533|922534|922535|922536|922537|922538|922539|922540|931085|931086|931087|931088|931089|931090|931091|931092|931093|931094|931095|931096|931097|931098|931099|931100|931101|931102|939872|940688|942571|942572|942573|942574|942575|952892|952893|952894|952895", + "upstreamId": "32920|32929|32929|32934|32936|48709|80399|80401|80402|85303|85303|85305|85310|133865|133866|133867|133868|133869|133870|133870|133871|133872|133873|133874|133875|178500|178503|187184|187185|187185|187189|187189|187190|187191|196823|196823|196824|215238|215239|215239|215240|215240|215242|215242|215243|215244|215245|215246|215246|215247|215247|215248|215248|228912|236950|238598|238599|238599|238600|238600|238601|238602|238603|238603|238604|238604|238605|238606|238607|238608|238608|238609|238609|238610|238610|238611|238612|238612|238613|238614|238615|238616|238616|238617|238618|238619|246909|246910|246910|246911|246914|246915|250516|250516|250517|250517|250518|250519|250519|250520|250520|250521|250522|250522|250523|250524|250525|250525|250526|250527|250527|250528|250528|250529|250529|250530|250530|250531|250531|250532|250533|250533|260627|260630|260630|260631|260633|260633|260634|260635|260636|260637|260637|260643|260646|265379|265379|284377|284390|284396|284400|284403|284408|284408|284413|284416|284417|284418|284418|284420|284424|284424|284426|284426|284429|284434|284434|284442|284445|284447|284450|284451|284451|284454|284454|284455|284456|284456|284465|284466|284507|284507|284513|284515|284515|284527|284527|284529|284529|284530|284530|285065|285066|285067|285067|285072|285073|285075|285075|285077|285086|285087|285090|285090|285091|285092|285092|285098|285098|285099|285119|285120|285120|285121|285122|285153|285153|285167|285193|285193|285196|285196|285207|285207|285211|285214|285218|285219|285221|287123|287134|287134|287140|287141|287142|287151|287155|287170|287185|287185|287196|287202|287206|287206|287207|287208|287208|287213|287217|287224|287224|287234|287234|287242|287245|287246|287250|287259|287262|287263|287264|287264|287276|287316|287333|287334|287334|287361|287361|287372|287372|287374|287498|287521|287522|287524|287525|287529|287532|287535|287538|287543|287559|287561|287563|287566|287572|287572|287582|287583|287586|287589|287589|287591|287592|287592|287593|287593|287601|287601|287608|287609|287610|354070|354071|354072|359413|359413|361171|362735|362735|366106|366335|366341|366341|366937|389476|389484|389492|389492|389497|389499|389499|389506|392294|392299|392301|392301|392377|392380|392382|392387|392470|392476|392480|392486|392487|392489|392497|392541|392541|392544|392547|392547|392554|392555|392557|392562|414865|425004|425004|425007|425009|425009|425011|425011|425012|425012|425464|425465|427986|427986|431948|434167|434168|434170|443149|443150|443151|443152|443153|450283|450285|450290|450290|450291|450292|450296|450308|450405|450405|450421|450426|450435|450435|450437|450437|450439|450442|450442|450444|450444|450445|450445|450446|450447|450450|450456|450464|450471|450471|450478|450483|450488|450492|450495|450495|450498|450540|450546|450549|450551|450558|450562|450563|450570|450571|450571|450573|450573|450579|450579|450581|450581|450585|481122|483177|483188|483200|483200|483208|483210|483211|483213|483223|483225|483249|483249|483253|486938|499500|499717|499894|516314|517546|517552|517556|517558|517564|517565|517566|517568|517570|517578|517579|517587|517590|517595|517603|517608|517646|517646|517647|517658|517660|517662|517664|517666|517681|517684|517686|517687|517690|517691|517692|517694|517695|517696|517701|517701|517705|517705|517706|517714|517721|517725|517728|517729|517730|517730|517803|517803|517805|517808|517818|517821|517828|517829|517842|517845|517848|517854|517856|517856|517858|517861|517865|517867|517869|538529|538530|538530|538531|538533|538534|538538|538552|538558|538561|538562|538562|538563|557826|557828|557830|557832|557873|557875|557877|557879|557881|557883|557885|557887|559053|559055|559057|559059|559061|559063|559065|559067|560757|560759|560768|560773|560775|560777|560798|560800|560803|585794|588441|611282|611282|616235|616235|616237|616237|616241|616247|616247|616259|616268|616268|616273|616275|616276|616276|616277|616279|616282|616289|616294|616295|616307|616325|616330|616334|616346|616349|616355|616355|616360|616367|616368|616373|616379|616383|616398|616399|616401|616402|616403|616404|616411|616420|616424|616425|616436|616438|616456|616460|616461|616463|616464|616464|616469|616472|616473|616481|616481|616494|616514|619103|619120|619120|629321|629322|629323|629324|629325|629326|629327|629328|629329|629330|629331|629332|629333|629334|629335|629336|629337|629338|629339|629340|629341|629342|629343|629344|629345|629346|629347|629348|629348|629349|629350|629351|655411|672392|672394|683475|683475|683477|683482|683482|683483|683484|686124|686125|686126|686131|686132|686134|686135|686138|689706|691018|691019|691020|691021|707993|719572|719574|730103|747229|762836|762837|781123|781124|781124|781126|781128|795134|815841|815842|815843|825619|825620|825621|825622|825623|825623|825624|825625|825626|825626|825627|825628|825629|825630|825631|825632|825633|825634|825635|825636|825637|825638|825639|825640|825641|825642|825643|850829|883593|883594|883595|883596|883597|883598|883599|883600|883601|883602|883603|883604|883605|883606|883607|883608|883609|883610|883611|883612|883613|883616|883617|883618|883619|883620|883621|883622|883623|883624|883625|883626|883627|883628|883629|883630|883631|883632|883633|883634|883635|883635|883636|883637|883638|883639|883640|906165|907794|907858|907887|907942|907991|908059|908162|908214|908311|918731|918732|922528|922529|922530|922531|922532|922533|922534|922535|922536|922537|922538|922539|922540|931085|931086|931087|931088|931089|931090|931091|931092|931093|931094|931095|931096|931097|931098|931099|931100|931101|931102|939872|940688|942571|942572|942573|942574|942575|952892|952893|952894|952895", "text": "Hypobetalipoproteinemia, familial, 1" }, { - "baseId": "32930", + "upstreamId": "32930", "text": "APOB POLYMORPHISM IN SIGNAL PEPTIDE" }, { - "baseId": "32932|32939|32940", + "upstreamId": "32932|32939|32940", "text": "Hypobetalipoproteinemia, normotriglyceridemic" }, { - "baseId": "32941", + "upstreamId": "32941", "text": "Apolipoprotein c-iii, nonglycosylated" }, { - "baseId": "32942|32943|143193|143194|143195|508859", + "upstreamId": "32942|32943|143193|143194|143195|508859", "text": "Hyperalphalipoproteinemia 2" }, { - "baseId": "32944", + "upstreamId": "32944", "text": "APOLIPOPROTEIN A-IV POLYMORPHISM, APOA4*1/APOA4*2" }, { - "baseId": "32945", + "upstreamId": "32945", "text": "APOLIPOPROTEIN A-IV RARE VARIANT, APOA4*0" }, { - "baseId": "32946", + "upstreamId": "32946", "text": "APOLIPOPROTEIN A-IV RARE VARIANT, APOA4*3" }, { - "baseId": "32947", + "upstreamId": "32947", "text": "APOLIPOPROTEIN A-IV RARE VARIANT, APOA4*5" }, { - "baseId": "32948", + "upstreamId": "32948", "text": "APOLIPOPROTEIN A-I (MILANO)" }, { - "baseId": "32949", + "upstreamId": "32949", "text": "APOLIPOPROTEIN A-I (GIESSEN)" }, { - "baseId": "32950", + "upstreamId": "32950", "text": "APOLIPOPROTEIN A-I (MARBURG)" }, { - "baseId": "32951", + "upstreamId": "32951", "text": "APOLIPOPROTEIN A-I (MUNSTER4)" }, { - "baseId": "32952", + "upstreamId": "32952", "text": "APOLIPOPROTEIN A-I (NORWAY)" }, { - "baseId": "32953", + "upstreamId": "32953", "text": "APOLIPOPROTEIN A-I (MUNSTER3C)" }, { - "baseId": "32954", + "upstreamId": "32954", "text": "APOLIPOPROTEIN A-I (MUNSTER3B)" }, { - "baseId": "32955|32958|32960|32961|32965|32968", + "upstreamId": "32955|32958|32960|32961|32965|32968", "text": "Apolipoprotein A-I deficiency" }, { - "baseId": "32956", + "upstreamId": "32956", "text": "Familial amyloid polyneuropathy, Iowa type" }, { - "baseId": "32957", + "upstreamId": "32957", "text": "Apolipoproteins a-i and c-iii, combined deficiency of" }, { - "baseId": "32957", + "upstreamId": "32957", "text": "High density lipoprotein deficiency, Detroit type" }, { - "baseId": "32959", + "upstreamId": "32959", "text": "APOLIPOPROTEIN A-I (BALTIMORE)" }, { - "baseId": "32969", + "upstreamId": "32969", "text": "Hypoalphalipoproteinemia, primary, 2" }, { - "baseId": "32970|32971", + "upstreamId": "32970|32971", "text": "Amyloidosis, cardiac and cutaneous" }, { - "baseId": "32974", + "upstreamId": "32974", "text": "APOLIPOPROTEIN A-II DEFICIENCY, FAMILIAL, DUE TO APOA-II (HIROSHIMA)" }, { - "baseId": "32976|32977|32978|32979|32980|33504|33505|190138|190139|511616|513960|537794|537795|537796|537797|537798|537799|537800|537801|537802|537803|550600|790571|798565|818137|918988|961513|969748|970818", + "upstreamId": "32976|32977|32978|32979|32980|33504|33505|190138|190139|511616|513960|537794|537795|537796|537797|537798|537799|537800|537801|537802|537803|550600|790571|798565|818137|918988|961513|969748|970818", "text": "Branchiooculofacial syndrome" }, { - "baseId": "32981|32982|32983|32984|32985|32986|32987|32988|32989|32990|38561|45034|45037|45038|116887|116889|116890|116891|116895|116928|205148|299195|299200|299201|299203|299204|301613|301614|301617|301624|301627|301629|301632|301633|305998|306000|306006|306024|306029|306030|306032|306314|332889|343076|348405|455399|455403|487189|512878|512881|521447|521454|521455|521730|521790|521799|522040|522044|560471|560606|560608|565449|614297|614297|620217|621747|634643|634644|634645|634646|634647|634648|634649|634649|634650|634651|634652|634653|634654|634655|651529|710193|721734|721735|721736|735434|735435|749834|765507|782458|782459|790593|790594|790595|818387|818388|819643|831610|831611|831612|831613|831614|831615|831616|831617|852014|895459|895460|895461|895462|895463|895464|895465|895466|895467|895468|895469|895470|895471|895472|895473|895474|895475|895476|895477|895478|924266|924267|924268|924269|924270|924271|924272|944901|944902|944903|954382|954383|954384|954385|980456", + "upstreamId": "32981|32982|32983|32984|32985|32986|32987|32988|32989|32990|38561|45034|45037|45038|116887|116889|116890|116891|116895|116928|205148|299195|299200|299201|299203|299204|301613|301614|301617|301624|301627|301629|301632|301633|305998|306000|306006|306024|306029|306030|306032|306314|332889|343076|348405|455399|455403|487189|512878|512881|521447|521454|521455|521730|521790|521799|522040|522044|560471|560606|560608|565449|614297|614297|620217|621747|634643|634644|634645|634646|634647|634648|634649|634649|634650|634651|634652|634653|634654|634655|651529|710193|721734|721735|721736|735434|735435|749834|765507|782458|782459|790593|790594|790595|818387|818388|819643|831610|831611|831612|831613|831614|831615|831616|831617|852014|895459|895460|895461|895462|895463|895464|895465|895466|895467|895468|895469|895470|895471|895472|895473|895474|895475|895476|895477|895478|924266|924267|924268|924269|924270|924271|924272|944901|944902|944903|954382|954383|954384|954385|980456", "text": "Disseminated atypical mycobacterial infection" }, { - "baseId": "32986|32991|32993|205148|614297|634649|980456", + "upstreamId": "32986|32991|32993|205148|614297|634649|980456", "text": "Immunodeficiency 27b" }, { - "baseId": "32986", + "upstreamId": "32986", "text": "IFN-gamma receptor 1 deficiency" }, { - "baseId": "32992|980456", + "upstreamId": "32992|980456", "text": "Helicobacter pylori infection, susceptibility to" }, { - "baseId": "32994|32995", + "upstreamId": "32994|32995", "text": "PI M1-ALA213" }, { - "baseId": "32994", + "upstreamId": "32994", "text": "PI, M1A" }, { - "baseId": "32994|32996|32997|33000|33001|33002|33003|33004|33005|33006|33006|33008|33008|33009|33010|33010|33011|33013|33014|33015|33016|33018|33019|33021|33022|33024|33025|33026|33031|33032|175951|176094|176095|186924|186925|186926|186927|194290|214472|221042|221043|221044|221045|221046|221047|221048|221049|221050|221051|221052|221053|221054|221055|221056|221057|221058|221059|221060|255114|255115|270546|272333|272693|273372|273566|275216|321835|321837|321838|321840|321844|321853|321854|321855|321856|321860|321861|321865|331140|331143|331146|331148|331149|331150|331152|331154|331157|331158|331161|331164|331168|331170|331174|337935|337949|337952|337959|337963|337965|337970|337989|337992|337993|339920|339924|339926|339931|339935|339939|339940|339943|339945|339948|339952|353313|354274|358271|358272|358273|358274|358275|358276|415410|434114|434115|434116|434117|434118|434119|434120|434121|434122|434123|434124|434126|434127|437676|437677|437678|437679|437680|437681|437682|437683|437684|437685|437686|464171|464192|490674|492173|492765|493455|547383|547456|547458|547460|547945|584517|585153|585525|586517|614632|614633|614634|614635|614636|614637|614638|614639|614640|620499|620500|679858|679859|679860|688374|688375|688377|688378|690092|690093|693619|841913|872966|872967|872968|872969|872970|872971|872972|872973|872974|872975|872976|872977|872978|872979|872980|872981|872982|872983|872984|872985|872986|872987|872988|872989", + "upstreamId": "32994|32996|32997|33000|33001|33002|33003|33004|33005|33006|33006|33008|33008|33009|33010|33010|33011|33013|33014|33015|33016|33018|33019|33021|33022|33024|33025|33026|33031|33032|175951|176094|176095|186924|186925|186926|186927|194290|214472|221042|221043|221044|221045|221046|221047|221048|221049|221050|221051|221052|221053|221054|221055|221056|221057|221058|221059|221060|255114|255115|270546|272333|272693|273372|273566|275216|321835|321837|321838|321840|321844|321853|321854|321855|321856|321860|321861|321865|331140|331143|331146|331148|331149|331150|331152|331154|331157|331158|331161|331164|331168|331170|331174|337935|337949|337952|337959|337963|337965|337970|337989|337992|337993|339920|339924|339926|339931|339935|339939|339940|339943|339945|339948|339952|353313|354274|358271|358272|358273|358274|358275|358276|415410|434114|434115|434116|434117|434118|434119|434120|434121|434122|434123|434124|434126|434127|437676|437677|437678|437679|437680|437681|437682|437683|437684|437685|437686|464171|464192|490674|492173|492765|493455|547383|547456|547458|547460|547945|584517|585153|585525|586517|614632|614633|614634|614635|614636|614637|614638|614639|614640|620499|620500|679858|679859|679860|688374|688375|688377|688378|690092|690093|693619|841913|872966|872967|872968|872969|872970|872971|872972|872973|872974|872975|872976|872977|872978|872979|872980|872981|872982|872983|872984|872985|872986|872987|872988|872989", "text": "Alpha-1-antitrypsin deficiency" }, { - "baseId": "32995", + "upstreamId": "32995", "text": "PI, M1V" }, { - "baseId": "32996", + "upstreamId": "32996", "text": "PI M2" }, { - "baseId": "32996", + "upstreamId": "32996", "text": "PI M4" }, { - "baseId": "32997", + "upstreamId": "32997", "text": "PI M3" }, { - "baseId": "32999", + "upstreamId": "32999", "text": "PI B(ALHAMBRA)" }, { - "baseId": "33000", + "upstreamId": "33000", "text": "PI F" }, { - "baseId": "33001", + "upstreamId": "33001", "text": "PI P(ST. ALBANS)" }, { - "baseId": "33002", + "upstreamId": "33002", "text": "PI X" }, { - "baseId": "33003", + "upstreamId": "33003", "text": "PI CHRISTCHURCH" }, { - "baseId": "33004", + "upstreamId": "33004", "text": "PI M(HEERLEN)" }, { - "baseId": "33005", + "upstreamId": "33005", "text": "PI M(MINERAL SPRINGS)" }, { - "baseId": "33006", + "upstreamId": "33006", "text": "PI Z" }, { - "baseId": "33006", + "upstreamId": "33006", "text": "PI Z(AUGSBURG)" }, { - "baseId": "33006", + "upstreamId": "33006", "text": "PI Z(TUN)" }, { - "baseId": "33006|33006|33008|33010|682501|682502|682503|682504|682505|682506|682507|858301|858302|858303", + "upstreamId": "33006|33006|33008|33010|682501|682502|682503|682504|682505|682506|682507|858301|858302|858303", "text": "Chronic obstructive pulmonary disease" }, { - "baseId": "33008", + "upstreamId": "33008", "text": "PI S" }, { - "baseId": "33009", + "upstreamId": "33009", "text": "PI Z(WREXHAM)" }, { - "baseId": "33010", + "upstreamId": "33010", "text": "PI M(PROCIDA)" }, { - "baseId": "33012", + "upstreamId": "33012", "text": "PI NULL(HONG KONG 2)" }, { - "baseId": "33013", + "upstreamId": "33013", "text": "PI I" }, { - "baseId": "33014", + "upstreamId": "33014", "text": "PI P(LOWELL)" }, { - "baseId": "33014", + "upstreamId": "33014", "text": "PI NULL(CARDIFF)" }, { - "baseId": "33014", + "upstreamId": "33014", "text": "PI Q0(CARDIFF)" }, { - "baseId": "33014", + "upstreamId": "33014", "text": "PI P(DUARTE)" }, { - "baseId": "33015", + "upstreamId": "33015", "text": "PI Q0(GRANITE FALLS)" }, { - "baseId": "33016", + "upstreamId": "33016", "text": "PI NULL(BELLINGHAM)" }, { - "baseId": "33016", + "upstreamId": "33016", "text": "PI Q0(BELLINGHAM)" }, { - "baseId": "33017", + "upstreamId": "33017", "text": "PI NULL(MATTAWA)" }, { - "baseId": "33018", + "upstreamId": "33018", "text": "PI NULL(PROCIDA)" }, { - "baseId": "33019", + "upstreamId": "33019", "text": "PI NULL(HONG KONG 1)" }, { - "baseId": "33019", + "upstreamId": "33019", "text": "PI Q0(HONG KONG 1)" }, { - "baseId": "33020", + "upstreamId": "33020", "text": "PI NULL(BOLTON)" }, { - "baseId": "33020", + "upstreamId": "33020", "text": "PI Q0(BOLTON)" }, { - "baseId": "33021", + "upstreamId": "33021", "text": "Hemorrhagic disease due to alpha-1-antitrypsin Pittsburgh mutation" }, { - "baseId": "33022", + "upstreamId": "33022", "text": "PI V(MUNICH)" }, { - "baseId": "33024", + "upstreamId": "33024", "text": "PI W(BETHESDA)" }, { - "baseId": "33025", + "upstreamId": "33025", "text": "PI NULL(DEVON)" }, { - "baseId": "33025", + "upstreamId": "33025", "text": "PI Q0(DEVON)" }, { - "baseId": "33025", + "upstreamId": "33025", "text": "PI NULL(NEWPORT)" }, { - "baseId": "33025", + "upstreamId": "33025", "text": "PI Q0(NEWPORT)" }, { - "baseId": "33026", + "upstreamId": "33026", "text": "PI NULL(LUDWIGSHAFEN)" }, { - "baseId": "33026", + "upstreamId": "33026", "text": "PI Q0(LUDWIGSHAFEN)" }, { - "baseId": "33027", + "upstreamId": "33027", "text": "PI NULL(RIEDENBURG)" }, { - "baseId": "33031", + "upstreamId": "33031", "text": "PI S(IIYAMA)" }, { - "baseId": "33032", + "upstreamId": "33032", "text": "PI Z(BRISTOL)" }, { - "baseId": "33033|33034|33035|33036|33037|33038|33039|33040|33041|133794|133795|133796|133797|133798|135660|140071|140073|140076|140078|140079|140081|140082|191988|194882|195288|201802|201803|201805|201808|201809|201816|201818|201819|201820|201821|201822|201823|201824|201827|201829|201830|201832|201833|201836|201837|201840|201842|201843|201846|201847|207150|207151|207152|221553|221554|221555|239636|251612|259803|259805|259807|264223|268025|271298|273031|295016|295023|295025|295026|295027|295033|295034|295042|295043|295044|295045|295051|295062|295064|295071|295075|295076|295079|295080|295085|296784|296785|296790|296815|296834|296844|296854|296855|296862|296863|296864|296868|296870|296877|296898|296902|296903|296904|300521|300526|300529|300530|300533|300535|300538|300539|300544|300545|300549|300551|300576|300578|300583|300589|300591|300593|300594|300595|300599|300601|300604|300605|300606|300607|300608|300627|300629|300635|300644|300649|300659|300660|300661|300663|359534|359635|360865|367843|368094|368095|368097|368112|368201|369423|369437|369462|394498|394570|394576|394748|394752|395013|395016|395021|406607|406608|414979|421513|443656|443657|454167|454169|454172|454178|454326|454327|454651|454656|454658|454968|454970|454973|454977|454981|500624|500625|520437|520667|520671|520943|551696|551736|551744|559827|559975|559977|559979|560090|560092|560094|560096|562574|562577|562580|564434|564435|564437|579014|579107|612270|614278|620178|620179|632894|632895|632896|632897|632898|632899|632900|632901|632902|632903|632904|632905|632906|632907|651290|651336|651338|683657|683658|685166|685167|695255|782112|790511|790512|819530|819531|829857|829858|829859|829860|829861|829862|829863|829864|829865|829866|829867|829868|829869|829870|829871|829872|829873|829874|829875|829876|829877|829878|829879|829880|829881|829882|829883|829884|829885|829886|829887|851242|851833|892696|892697|892698|892699|892700|892701|892702|892703|892704|892705|892706|892707|892708|892709|892710|892711|892712|892713|892714|892715|892716|892717|892718|892719|892720|892721|892722|892723|892724|892725|892726|892727|892728|892729|892730|892731|896020|896021|923732|923733|923734|923735|923736|932590|932591|932592|932593|932594|932595|940793|944260|944261|944262|944263|944264|944265|944266|953930|953931|953932|959743", + "upstreamId": "33033|33034|33035|33036|33037|33038|33039|33040|33041|133794|133795|133796|133797|133798|135660|140071|140073|140076|140078|140079|140081|140082|191988|194882|195288|201802|201803|201805|201808|201809|201816|201818|201819|201820|201821|201822|201823|201824|201827|201829|201830|201832|201833|201836|201837|201840|201842|201843|201846|201847|207150|207151|207152|221553|221554|221555|239636|251612|259803|259805|259807|264223|268025|271298|273031|295016|295023|295025|295026|295027|295033|295034|295042|295043|295044|295045|295051|295062|295064|295071|295075|295076|295079|295080|295085|296784|296785|296790|296815|296834|296844|296854|296855|296862|296863|296864|296868|296870|296877|296898|296902|296903|296904|300521|300526|300529|300530|300533|300535|300538|300539|300544|300545|300549|300551|300576|300578|300583|300589|300591|300593|300594|300595|300599|300601|300604|300605|300606|300607|300608|300627|300629|300635|300644|300649|300659|300660|300661|300663|359534|359635|360865|367843|368094|368095|368097|368112|368201|369423|369437|369462|394498|394570|394576|394748|394752|395013|395016|395021|406607|406608|414979|421513|443656|443657|454167|454169|454172|454178|454326|454327|454651|454656|454658|454968|454970|454973|454977|454981|500624|500625|520437|520667|520671|520943|551696|551736|551744|559827|559975|559977|559979|560090|560092|560094|560096|562574|562577|562580|564434|564435|564437|579014|579107|612270|614278|620178|620179|632894|632895|632896|632897|632898|632899|632900|632901|632902|632903|632904|632905|632906|632907|651290|651336|651338|683657|683658|685166|685167|695255|782112|790511|790512|819530|819531|829857|829858|829859|829860|829861|829862|829863|829864|829865|829866|829867|829868|829869|829870|829871|829872|829873|829874|829875|829876|829877|829878|829879|829880|829881|829882|829883|829884|829885|829886|829887|851242|851833|892696|892697|892698|892699|892700|892701|892702|892703|892704|892705|892706|892707|892708|892709|892710|892711|892712|892713|892714|892715|892716|892717|892718|892719|892720|892721|892722|892723|892724|892725|892726|892727|892728|892729|892730|892731|896020|896021|923732|923733|923734|923735|923736|932590|932591|932592|932593|932594|932595|940793|944260|944261|944262|944263|944264|944265|944266|953930|953931|953932|959743", "text": "Pyridoxine-dependent epilepsy" }, { - "baseId": "33034|171000|263288|263304|360865|434101|434634|514142|535230|621022|621038", + "upstreamId": "33034|171000|263288|263304|360865|434101|434634|514142|535230|621022|621038", "text": "Ventriculomegaly" }, { - "baseId": "33042|33043|33044|33045|33046|33047|33048|33049|33050|33051|33052|33053|33054|33055|33056|33058|33059|33060|33061|33062|33063|33064|33065|33066|33067|33068|33069|33070|33071|33072|33073|33074|33075|33076|33077|33078|33079|33080|33081|33082|33083|33084|33085|171055|185953|212078|221086|221087|238195|238196|238197|238198|249550|249551|277476|277479|277664|277668|278553|278556|354054|390735|390945|390949|447428|515311|515312|515340|515378|515387|557060|588364|615292|615293|615295|615296|615297|615298|615299|615300|615301|615302|615303|615304|615305|615306|615308|615855|615856|615857|615862|623052|627124|627125|627126|627127|627128|627129|650597|682730|685586|818873|823017|823018|823019|823020|858875|862838|862839|862840|862841|862842|862843|865041|930172|930173|930174|941582|941583|952147|952148|952149", + "upstreamId": "33042|33043|33044|33045|33046|33047|33048|33049|33050|33051|33052|33053|33054|33055|33056|33058|33059|33060|33061|33062|33063|33064|33065|33066|33067|33068|33069|33070|33071|33072|33073|33074|33075|33076|33077|33078|33079|33080|33081|33082|33083|33084|33085|171055|185953|212078|221086|221087|238195|238196|238197|238198|249550|249551|277476|277479|277664|277668|278553|278556|354054|390735|390945|390949|447428|515311|515312|515340|515378|515387|557060|588364|615292|615293|615295|615296|615297|615298|615299|615300|615301|615302|615303|615304|615305|615306|615308|615855|615856|615857|615862|623052|627124|627125|627126|627127|627128|627129|650597|682730|685586|818873|823017|823018|823019|823020|858875|862838|862839|862840|862841|862842|862843|865041|930172|930173|930174|941582|941583|952147|952148|952149", "text": "Antithrombin III deficiency" }, { - "baseId": "33050|33053|33062|33069|33077|171055", + "upstreamId": "33050|33053|33062|33069|33077|171055", "text": "Antithrombin deficiency" }, { - "baseId": "33086", + "upstreamId": "33086", "text": "ANTICHYMOTRYPSIN ISEHARA 1" }, { - "baseId": "33086", + "upstreamId": "33086", "text": "Peripheral arterial occlusive disease 1" }, { - "baseId": "33087", + "upstreamId": "33087", "text": "ANTICHYMOTRYPSIN ISEHARA 2" }, { - "baseId": "33088", + "upstreamId": "33088", "text": "ANTICHYMOTRYPSIN BOCHUM 1" }, { - "baseId": "33089", + "upstreamId": "33089", "text": "ANTICHYMOTRYPSIN BONN 1" }, { - "baseId": "33090", + "upstreamId": "33090", "text": "ANTICHYMOTRYPSIN SIGNAL PEPTIDE POLYMORPHISM" }, { - "baseId": "33091|75619|106632|513315|622400", + "upstreamId": "33091|75619|106632|513315|622400", "text": "CD59-mediated hemolytic anemia with or without immune-mediated polyneuropathy" }, { - "baseId": "33093|33094|237208|248709|248710|248711|248712|324964|324967|324968|324973|324979|324983|334633|334634|334636|334637|334639|334654|341120|341121|341123|341124|341129|342656|342663|342665|342668|342669|342670|342672|342673|620537|626244|740096|799951|816335|875085|875086|875087|875088|875089|875090|875091|875092|875093|875094|875095|875096|961968|961969|982005", + "upstreamId": "33093|33094|237208|248709|248710|248711|248712|324964|324967|324968|324973|324979|324983|334633|334634|334636|334637|334639|334654|341120|341121|341123|341124|341129|342656|342663|342665|342668|342669|342670|342672|342673|620537|626244|740096|799951|816335|875085|875086|875087|875088|875089|875090|875091|875092|875093|875094|875095|875096|961968|961969|982005", "text": "Common variable immunodeficiency 3" }, { - "baseId": "33095|33098", + "upstreamId": "33095|33098", "text": "Long QT syndrome 4" }, { - "baseId": "33095|33096|33097|33098|33099|44351|44354|44355|78492|78493|78495|78499|78500|78502|140083|140087|140089|140090|140093|140094|140097|140100|140101|140103|178533|178534|178536|178537|186018|188336|188337|188338|188344|188353|188374|188375|188379|188391|188392|188395|188401|188402|188405|188407|188408|189229|189235|189236|189238|189240|189243|189244|189245|189247|189248|189249|189250|189251|194641|212344|212346|221429|221431|221432|224288|224294|224296|236765|239301|239302|239303|239306|239309|239310|239311|239312|239316|239317|239318|239321|239324|239325|239326|239329|244014|251312|251313|251314|251315|258327|258329|258338|258339|258341|258353|273618|292034|292040|292041|292043|292053|292056|292060|292064|292066|292067|292069|292075|292076|292088|292089|292098|292103|293481|293482|293483|293484|293487|293492|293501|293502|293511|293513|293515|293527|293529|293540|293541|296777|296787|296794|296795|296796|296797|296801|296806|296807|296808|296809|296810|296812|296816|296817|296818|296821|296822|296824|296827|296828|296829|296831|296832|296833|296836|296840|296850|296858|296859|367497|367765|367776|367781|367784|367787|367801|367802|367811|367820|368850|393789|393813|393819|393846|393855|393874|394224|394286|425591|452857|453232|453286|500388|500695|501013|509640|509656|509658|509677|512812|519702|519718|536659|536660|551771|613402|620771|631885|683611|686483|686486|686487|730256|795505|795507|828685|889971|889972|889973|889974|889975|889976|889977|889978|889979|889980|889981|889982|889983|889984|889985|889986|889987|889988|889989|889990|889991|889992|889993|889994|889995|889996|889997|889998|889999|890000|890001|890002|890003|890004|890005|890006|890007|890008|890009|890010|890011|890012|890013|890014|890015|890016|890017|890018|890019|890020|890021|890022|891738|891739|891740|891741|891742|918871|918872|961268", + "upstreamId": "33095|33096|33097|33098|33099|44351|44354|44355|78492|78493|78495|78499|78500|78502|140083|140087|140089|140090|140093|140094|140097|140100|140101|140103|178533|178534|178536|178537|186018|188336|188337|188338|188344|188353|188374|188375|188379|188391|188392|188395|188401|188402|188405|188407|188408|189229|189235|189236|189238|189240|189243|189244|189245|189247|189248|189249|189250|189251|194641|212344|212346|221429|221431|221432|224288|224294|224296|236765|239301|239302|239303|239306|239309|239310|239311|239312|239316|239317|239318|239321|239324|239325|239326|239329|244014|251312|251313|251314|251315|258327|258329|258338|258339|258341|258353|273618|292034|292040|292041|292043|292053|292056|292060|292064|292066|292067|292069|292075|292076|292088|292089|292098|292103|293481|293482|293483|293484|293487|293492|293501|293502|293511|293513|293515|293527|293529|293540|293541|296777|296787|296794|296795|296796|296797|296801|296806|296807|296808|296809|296810|296812|296816|296817|296818|296821|296822|296824|296827|296828|296829|296831|296832|296833|296836|296840|296850|296858|296859|367497|367765|367776|367781|367784|367787|367801|367802|367811|367820|368850|393789|393813|393819|393846|393855|393874|394224|394286|425591|452857|453232|453286|500388|500695|501013|509640|509656|509658|509677|512812|519702|519718|536659|536660|551771|613402|620771|631885|683611|686483|686486|686487|730256|795505|795507|828685|889971|889972|889973|889974|889975|889976|889977|889978|889979|889980|889981|889982|889983|889984|889985|889986|889987|889988|889989|889990|889991|889992|889993|889994|889995|889996|889997|889998|889999|890000|890001|890002|890003|890004|890005|890006|890007|890008|890009|890010|890011|890012|890013|890014|890015|890016|890017|890018|890019|890020|890021|890022|891738|891739|891740|891741|891742|918871|918872|961268", "text": "Cardiac arrhythmia, ankyrin B-related" }, { - "baseId": "33100", + "upstreamId": "33100", "text": "ANGIOTENSIN I-CONVERTING ENZYME INSERTION/DELETION POLYMORPHISM" }, { - "baseId": "33100", + "upstreamId": "33100", "text": "Microvascular complications of diabetes 3" }, { - "baseId": "33100", + "upstreamId": "33100", "text": "Stroke, hemorrhagic, susceptibility to" }, { - "baseId": "33100", + "upstreamId": "33100", "text": "Severe acute respiratory syndrome, progression of" }, { - "baseId": "33100|33107", + "upstreamId": "33100|33107", "text": "Susceptibility to progression to renal failure in IgA nephropathy" }, { - "baseId": "33101", + "upstreamId": "33101", "text": "Angiotensin i-converting enzyme, benign serum increase" }, { - "baseId": "33107", + "upstreamId": "33107", "text": "Preeclampsia, susceptibility to" }, { - "baseId": "33108", + "upstreamId": "33108", "text": "Crohn disease, association with" }, { - "baseId": "33112|33113|33114|33115|33116|33117|33118|33119|33120|33121|254908|320276|320277|320278|320290|328854|328855|328869|328872|328873|328874|328877|335460|335468|335469|335472|335474|335476|337328|337329|337360|796983|871686|871687|871688|871689|871690|871691|871692|871693|871694|872358", + "upstreamId": "33112|33113|33114|33115|33116|33117|33118|33119|33120|33121|254908|320276|320277|320278|320290|328854|328855|328869|328872|328873|328874|328877|335460|335468|335469|335472|335474|335476|337328|337329|337360|796983|871686|871687|871688|871689|871690|871691|871692|871693|871694|872358", "text": "Amyotrophic lateral sclerosis type 9" }, { - "baseId": "33122|33123|33124|33125|34247|34719|76578|76579|80472|137196|137197|137198|137199|137200|137201|137202|137203|137204|137205|137206|137207|137208|137209|137210|137211|137212|137213|137214|137215|137216|137217|137218|137219|137220|137221|137222|137223|137224|214506|214507|214508|214509|214510|214511|214512|214513|214514|214515|215257|238704|238705|238706|238707|238708|238709|238710|238711|238712|238713|238714|238715|238716|238717|238718|238719|238720|238721|238722|238723|238724|238725|238726|238727|238728|238729|238730|238731|238732|238733|238734|238735|238736|238737|238738|238739|238740|238741|238742|238743|238744|238745|238746|238747|238748|238749|238750|238751|238752|238753|238754|238755|238756|238757|238758|238759|238760|238761|238762|238763|238764|250715|250716|250717|250718|250719|250720|250721|250722|250723|250724|285946|285952|285953|285967|285968|285971|285972|285982|285985|285989|285994|285999|286002|286018|286019|286731|286738|286740|286754|286756|286757|286758|286759|286765|286766|288958|288976|288984|288986|288988|288992|288993|288996|288997|288998|289004|289005|289006|289007|289015|289021|289022|289028|289079|289362|289366|289376|289378|289379|289385|289402|289420|289422|289425|366357|366537|366611|392510|392530|392534|392535|392539|392540|392550|392551|392553|392559|392560|392563|392565|392572|392576|392579|392583|392585|392588|392590|392593|392594|392595|392601|392603|392606|392607|392609|392610|392611|392612|392614|392620|392622|392623|392625|392626|392629|392630|392631|392633|392636|392638|392641|392643|392644|392646|392648|392652|392655|392657|392659|392662|392663|392668|392673|392676|392677|392680|392682|392688|392695|392696|392700|392702|392709|392711|392714|392715|392720|392722|392732|392734|392737|392740|392741|392745|392748|392751|392753|392756|392757|392760|392769|392772|392773|392778|392781|392782|392783|392785|392788|392797|392802|392865|392871|392872|392875|392891|392899|392901|392912|392913|392915|392917|392935|392938|392940|392953|392955|392959|392960|392961|392970|392972|392974|392987|392996|393006|405716|448538|448539|450698|450700|450708|450709|450714|450720|450721|450723|450729|450731|450733|450740|450741|450743|450746|450749|450752|450760|450767|450770|450775|450782|450783|450784|450791|450792|450796|450803|450806|450809|450810|450811|450812|450813|450814|450815|450817|450819|450820|450823|450824|450827|450830|450831|450833|450837|450842|450845|450846|450847|450855|450858|450860|450874|450875|450882|450890|450893|450894|450895|450896|450903|450905|450907|450912|450921|450922|450924|450926|450929|450931|450934|450935|450945|450946|450950|450953|450963|450966|450969|450970|450973|450974|450975|450978|450979|450983|450989|450995|451001|451005|451006|451008|451013|451015|451016|451021|451023|451024|451025|451026|451028|451029|451030|451034|451035|451038|451043|451044|451046|451048|451049|451050|451051|451052|451053|451054|451055|451056|451058|451059|451060|451061|451064|451065|451068|451069|451071|451072|451074|451076|451078|451079|451080|451081|451083|451091|451094|451095|451098|451099|451100|451101|451104|451106|451107|451110|451112|451113|451115|451117|451118|451122|451124|451125|451126|451127|451128|451135|451136|451139|451140|451144|451146|451147|451148|451152|451153|451154|451157|451160|451162|451169|451171|472683|472684|472686|472731|472732|472764|472769|472776|472777|472784|499664|499916|500154|516186|518022|518027|518038|518039|518051|518055|518059|518060|518064|518066|518068|518069|518070|518073|518078|518080|518081|518082|518083|518084|518085|518086|518087|518088|518089|518090|518092|518095|518096|518098|518100|518101|518105|518106|518107|518108|518109|518110|518113|518114|518115|518116|518119|518120|518121|518122|518123|518124|518127|518129|518130|518131|518132|518133|518134|518135|518138|518139|518140|518142|518143|518144|518145|518146|518147|518149|518150|518151|518152|518153|518155|518156|518158|518159|518160|518161|518162|518163|518164|518165|518166|518167|518168|518169|518170|518171|518172|518173|518174|518176|518177|518179|518180|518181|518182|518184|518187|518189|518190|518194|518196|518200|518202|518204|518210|518211|518212|518214|518216|518217|518221|518223|518224|518225|518230|518232|518233|518234|518235|518236|518238|518248|518250|518252|518261|518263|518271|518272|518276|518280|518283|518284|518286|518292|518296|518298|557994|557996|557998|558000|558002|558017|558021|558023|558025|558027|558029|558031|558033|558035|558037|558039|558041|558043|558045|558047|558049|558051|558053|558055|558057|558059|558061|558063|558065|558344|558346|558348|558350|558352|558354|558356|558358|558360|558362|558364|558366|558368|558370|558372|558374|558376|558378|558380|558382|558384|558386|558388|558390|558392|558394|558396|558398|558400|558402|558404|558406|558408|558410|558412|558414|558416|558418|558420|558422|558424|558426|560573|560575|560577|560579|560581|560583|560585|560587|560589|560591|560593|560595|560597|560599|560601|560603|560605|560607|560609|560611|560613|560615|561274|561275|561279|561283|561289|561295|561297|561305|561311|561317|561320|561321|561323|561324|561335|561337|561338|561339|561348|561356|561359|561360|561363|561365|561366|561368|561371|561392|561401|561405|561410|561414|561416|561421|561423|561426|561430|561443|561454|612029|629793|629794|629795|629796|629797|629798|629799|629800|629801|629802|629803|629804|629805|629806|629807|629808|629809|629810|629811|629812|629813|629814|629815|629816|629817|629818|629819|629820|629821|629822|629823|629824|629825|629826|629827|629828|629829|629830|629831|629832|629833|629834|629835|629836|629837|629838|629839|629840|629841|629842|629843|629844|629845|629846|629847|629848|629849|629850|629851|629852|629853|629854|629855|629856|629857|629858|629859|629860|629861|629862|629863|629864|629865|629866|629867|629868|629869|629870|629871|629872|629873|629874|629875|629876|629877|629878|629879|629880|629881|629882|629883|629884|629885|629886|629887|629888|629889|629890|629891|629892|629893|629894|629895|629896|629897|629898|629899|629900|629901|629902|629903|629904|629905|629906|629907|629908|629909|629910|629911|629912|629913|629914|629915|629916|629917|629918|629919|629920|629921|629922|629923|629924|629925|629926|629927|629928|629929|629930|629931|629932|629933|629934|629935|629936|629937|629938|629939|629940|629941|629942|629943|650750|650757|650827|650828|650924|650931|650951|650952|650983|650987|651016|651021|651031|651038|655442|683495|683496|683497|683498|683499|683500|686176|686177|686178|686179|686180|686181|686182|686183|686184|686185|686186|686188|686189|686191|686192|686194|686195|686196|686197|689713|689714|689715|689716|691123|691124|691125|691127|691128|691129|691134|691135|691136|691138|691141|691142|691144|691145|691146|691148|695143|697542|697544|697545|697546|697547|697548|708229|719841|719842|733444|733445|733446|733447|747580|747582|747585|747587|747588|763168|763170|763171|763173|763175|763177|763180|763182|763191|774821|777269|777309|778981|781300|781301|781306|781307|781308|806891|806897|806904|806906|806917|819151|819152|819153|819154|819155|826268|826269|826270|826271|826272|826273|826274|826275|826276|826277|826278|826279|826280|826281|826282|826283|826284|826285|826286|826287|826288|826289|826290|826291|826292|826293|826294|826295|826296|826297|826298|826299|826300|826301|826302|826303|826304|826305|826306|826307|826308|826309|826310|826311|826312|826313|826314|826315|826316|826317|826318|826319|826320|826321|826322|826323|826324|826325|826326|826327|826328|826329|826330|826331|826332|826333|826334|826335|826336|826337|826338|826339|826340|826341|826342|826343|826344|826345|826346|826347|826348|826349|826350|826351|826352|826353|826354|826355|826356|826357|826358|826359|826360|826361|826362|826363|826364|826365|826366|826367|826368|826369|826370|826371|826372|826373|826374|826375|826376|826377|826378|826379|826380|826381|826382|826383|826384|826385|826386|826387|826388|826389|826390|826391|826392|826393|826394|826395|826396|826397|826398|826399|826400|826401|826402|826403|826404|826405|826406|826407|826408|826409|826410|826411|826412|826413|850853|850855|850857|850859|850900|850902|851172|851174|851176|851420|851422|851424|851426|851428|884675|884676|884677|884678|884679|884680|884681|884682|884683|884684|884685|884686|884687|884688|884689|884690|884691|884692|884693|884694|884695|884696|884697|884698|884699|884700|884701|884702|916863|922693|922694|922695|922696|922697|922698|922699|922700|922701|922702|922703|922704|922705|922706|922707|922708|922709|922710|922711|922712|922713|922714|922715|922716|922717|922718|922719|922720|922721|922722|922723|922724|922725|922726|922727|922728|922729|922730|922731|922732|922733|922734|922735|922736|922737|922738|922739|922740|922741|922742|922743|922744|922745|922746|922747|922748|931335|931336|931337|931338|931339|931340|931341|931342|931343|931344|931345|931346|931347|931348|931349|931350|931351|931352|931353|931354|931355|931356|931357|931358|931359|931360|931361|931362|931363|931364|931365|931366|931367|931368|931369|931370|931371|931372|931373|931374|931375|931376|931377|931378|931379|939886|939887|939888|939889|939890|940706|942839|942840|942841|942842|942843|942844|942845|942846|942847|942848|942849|942850|942851|942852|942853|942854|942855|942856|942857|942858|942859|942860|942861|942862|942863|942864|942865|942866|942867|942868|942869|942870|942871|942872|942873|942874|942875|942876|942877|942878|942879|942880|942881|942882|942883|942884|942885|942886|942887|942888|942889|942890|953056|953057|953058|953059|953060|953061|953062|953063|953064|953065|953066|953067|953068|953069|953070|953071|953072|953073|953074|953075|953076|953077|953078|953079|953080|953081|959636|959637|959638|959639|959640|960473|960474", + "upstreamId": "33122|33123|33124|33125|34247|34719|76578|76579|80472|137196|137197|137198|137199|137200|137201|137202|137203|137204|137205|137206|137207|137208|137209|137210|137211|137212|137213|137214|137215|137216|137217|137218|137219|137220|137221|137222|137223|137224|214506|214507|214508|214509|214510|214511|214512|214513|214514|214515|215257|238704|238705|238706|238707|238708|238709|238710|238711|238712|238713|238714|238715|238716|238717|238718|238719|238720|238721|238722|238723|238724|238725|238726|238727|238728|238729|238730|238731|238732|238733|238734|238735|238736|238737|238738|238739|238740|238741|238742|238743|238744|238745|238746|238747|238748|238749|238750|238751|238752|238753|238754|238755|238756|238757|238758|238759|238760|238761|238762|238763|238764|250715|250716|250717|250718|250719|250720|250721|250722|250723|250724|285946|285952|285953|285967|285968|285971|285972|285982|285985|285989|285994|285999|286002|286018|286019|286731|286738|286740|286754|286756|286757|286758|286759|286765|286766|288958|288976|288984|288986|288988|288992|288993|288996|288997|288998|289004|289005|289006|289007|289015|289021|289022|289028|289079|289362|289366|289376|289378|289379|289385|289402|289420|289422|289425|366357|366537|366611|392510|392530|392534|392535|392539|392540|392550|392551|392553|392559|392560|392563|392565|392572|392576|392579|392583|392585|392588|392590|392593|392594|392595|392601|392603|392606|392607|392609|392610|392611|392612|392614|392620|392622|392623|392625|392626|392629|392630|392631|392633|392636|392638|392641|392643|392644|392646|392648|392652|392655|392657|392659|392662|392663|392668|392673|392676|392677|392680|392682|392688|392695|392696|392700|392702|392709|392711|392714|392715|392720|392722|392732|392734|392737|392740|392741|392745|392748|392751|392753|392756|392757|392760|392769|392772|392773|392778|392781|392782|392783|392785|392788|392797|392802|392865|392871|392872|392875|392891|392899|392901|392912|392913|392915|392917|392935|392938|392940|392953|392955|392959|392960|392961|392970|392972|392974|392987|392996|393006|405716|448538|448539|450698|450700|450708|450709|450714|450720|450721|450723|450729|450731|450733|450740|450741|450743|450746|450749|450752|450760|450767|450770|450775|450782|450783|450784|450791|450792|450796|450803|450806|450809|450810|450811|450812|450813|450814|450815|450817|450819|450820|450823|450824|450827|450830|450831|450833|450837|450842|450845|450846|450847|450855|450858|450860|450874|450875|450882|450890|450893|450894|450895|450896|450903|450905|450907|450912|450921|450922|450924|450926|450929|450931|450934|450935|450945|450946|450950|450953|450963|450966|450969|450970|450973|450974|450975|450978|450979|450983|450989|450995|451001|451005|451006|451008|451013|451015|451016|451021|451023|451024|451025|451026|451028|451029|451030|451034|451035|451038|451043|451044|451046|451048|451049|451050|451051|451052|451053|451054|451055|451056|451058|451059|451060|451061|451064|451065|451068|451069|451071|451072|451074|451076|451078|451079|451080|451081|451083|451091|451094|451095|451098|451099|451100|451101|451104|451106|451107|451110|451112|451113|451115|451117|451118|451122|451124|451125|451126|451127|451128|451135|451136|451139|451140|451144|451146|451147|451148|451152|451153|451154|451157|451160|451162|451169|451171|472683|472684|472686|472731|472732|472764|472769|472776|472777|472784|499664|499916|500154|516186|518022|518027|518038|518039|518051|518055|518059|518060|518064|518066|518068|518069|518070|518073|518078|518080|518081|518082|518083|518084|518085|518086|518087|518088|518089|518090|518092|518095|518096|518098|518100|518101|518105|518106|518107|518108|518109|518110|518113|518114|518115|518116|518119|518120|518121|518122|518123|518124|518127|518129|518130|518131|518132|518133|518134|518135|518138|518139|518140|518142|518143|518144|518145|518146|518147|518149|518150|518151|518152|518153|518155|518156|518158|518159|518160|518161|518162|518163|518164|518165|518166|518167|518168|518169|518170|518171|518172|518173|518174|518176|518177|518179|518180|518181|518182|518184|518187|518189|518190|518194|518196|518200|518202|518204|518210|518211|518212|518214|518216|518217|518221|518223|518224|518225|518230|518232|518233|518234|518235|518236|518238|518248|518250|518252|518261|518263|518271|518272|518276|518280|518283|518284|518286|518292|518296|518298|557994|557996|557998|558000|558002|558017|558021|558023|558025|558027|558029|558031|558033|558035|558037|558039|558041|558043|558045|558047|558049|558051|558053|558055|558057|558059|558061|558063|558065|558344|558346|558348|558350|558352|558354|558356|558358|558360|558362|558364|558366|558368|558370|558372|558374|558376|558378|558380|558382|558384|558386|558388|558390|558392|558394|558396|558398|558400|558402|558404|558406|558408|558410|558412|558414|558416|558418|558420|558422|558424|558426|560573|560575|560577|560579|560581|560583|560585|560587|560589|560591|560593|560595|560597|560599|560601|560603|560605|560607|560609|560611|560613|560615|561274|561275|561279|561283|561289|561295|561297|561305|561311|561317|561320|561321|561323|561324|561335|561337|561338|561339|561348|561356|561359|561360|561363|561365|561366|561368|561371|561392|561401|561405|561410|561414|561416|561421|561423|561426|561430|561443|561454|612029|629793|629794|629795|629796|629797|629798|629799|629800|629801|629802|629803|629804|629805|629806|629807|629808|629809|629810|629811|629812|629813|629814|629815|629816|629817|629818|629819|629820|629821|629822|629823|629824|629825|629826|629827|629828|629829|629830|629831|629832|629833|629834|629835|629836|629837|629838|629839|629840|629841|629842|629843|629844|629845|629846|629847|629848|629849|629850|629851|629852|629853|629854|629855|629856|629857|629858|629859|629860|629861|629862|629863|629864|629865|629866|629867|629868|629869|629870|629871|629872|629873|629874|629875|629876|629877|629878|629879|629880|629881|629882|629883|629884|629885|629886|629887|629888|629889|629890|629891|629892|629893|629894|629895|629896|629897|629898|629899|629900|629901|629902|629903|629904|629905|629906|629907|629908|629909|629910|629911|629912|629913|629914|629915|629916|629917|629918|629919|629920|629921|629922|629923|629924|629925|629926|629927|629928|629929|629930|629931|629932|629933|629934|629935|629936|629937|629938|629939|629940|629941|629942|629943|650750|650757|650827|650828|650924|650931|650951|650952|650983|650987|651016|651021|651031|651038|655442|683495|683496|683497|683498|683499|683500|686176|686177|686178|686179|686180|686181|686182|686183|686184|686185|686186|686188|686189|686191|686192|686194|686195|686196|686197|689713|689714|689715|689716|691123|691124|691125|691127|691128|691129|691134|691135|691136|691138|691141|691142|691144|691145|691146|691148|695143|697542|697544|697545|697546|697547|697548|708229|719841|719842|733444|733445|733446|733447|747580|747582|747585|747587|747588|763168|763170|763171|763173|763175|763177|763180|763182|763191|774821|777269|777309|778981|781300|781301|781306|781307|781308|806891|806897|806904|806906|806917|819151|819152|819153|819154|819155|826268|826269|826270|826271|826272|826273|826274|826275|826276|826277|826278|826279|826280|826281|826282|826283|826284|826285|826286|826287|826288|826289|826290|826291|826292|826293|826294|826295|826296|826297|826298|826299|826300|826301|826302|826303|826304|826305|826306|826307|826308|826309|826310|826311|826312|826313|826314|826315|826316|826317|826318|826319|826320|826321|826322|826323|826324|826325|826326|826327|826328|826329|826330|826331|826332|826333|826334|826335|826336|826337|826338|826339|826340|826341|826342|826343|826344|826345|826346|826347|826348|826349|826350|826351|826352|826353|826354|826355|826356|826357|826358|826359|826360|826361|826362|826363|826364|826365|826366|826367|826368|826369|826370|826371|826372|826373|826374|826375|826376|826377|826378|826379|826380|826381|826382|826383|826384|826385|826386|826387|826388|826389|826390|826391|826392|826393|826394|826395|826396|826397|826398|826399|826400|826401|826402|826403|826404|826405|826406|826407|826408|826409|826410|826411|826412|826413|850853|850855|850857|850859|850900|850902|851172|851174|851176|851420|851422|851424|851426|851428|884675|884676|884677|884678|884679|884680|884681|884682|884683|884684|884685|884686|884687|884688|884689|884690|884691|884692|884693|884694|884695|884696|884697|884698|884699|884700|884701|884702|916863|922693|922694|922695|922696|922697|922698|922699|922700|922701|922702|922703|922704|922705|922706|922707|922708|922709|922710|922711|922712|922713|922714|922715|922716|922717|922718|922719|922720|922721|922722|922723|922724|922725|922726|922727|922728|922729|922730|922731|922732|922733|922734|922735|922736|922737|922738|922739|922740|922741|922742|922743|922744|922745|922746|922747|922748|931335|931336|931337|931338|931339|931340|931341|931342|931343|931344|931345|931346|931347|931348|931349|931350|931351|931352|931353|931354|931355|931356|931357|931358|931359|931360|931361|931362|931363|931364|931365|931366|931367|931368|931369|931370|931371|931372|931373|931374|931375|931376|931377|931378|931379|939886|939887|939888|939889|939890|940706|942839|942840|942841|942842|942843|942844|942845|942846|942847|942848|942849|942850|942851|942852|942853|942854|942855|942856|942857|942858|942859|942860|942861|942862|942863|942864|942865|942866|942867|942868|942869|942870|942871|942872|942873|942874|942875|942876|942877|942878|942879|942880|942881|942882|942883|942884|942885|942886|942887|942888|942889|942890|953056|953057|953058|953059|953060|953061|953062|953063|953064|953065|953066|953067|953068|953069|953070|953071|953072|953073|953074|953075|953076|953077|953078|953079|953080|953081|959636|959637|959638|959639|959640|960473|960474", "text": "Neuroblastoma 3" }, { - "baseId": "33126", + "upstreamId": "33126", "text": "ABeta amyloidosis, Dutch type" }, { - "baseId": "33127|33128|33129|33130|33132|33133|33134|33135|33136|33137|33139|33141|33144", + "upstreamId": "33127|33128|33129|33130|33132|33133|33134|33135|33136|33137|33139|33141|33144", "text": "Alzheimer disease, type 1" }, { - "baseId": "33130", + "upstreamId": "33130", "text": "ABetaA21G amyloidosis" }, { - "baseId": "33137", + "upstreamId": "33137", "text": "ABeta amyloidosis, Arctic type" }, { - "baseId": "33138", + "upstreamId": "33138", "text": "ABeta amyloidosis, Italian type" }, { - "baseId": "33140", + "upstreamId": "33140", "text": "ABeta amyloidosis, Iowa type" }, { - "baseId": "33142", + "upstreamId": "33142", "text": "CEREBRAL AMYLOID ANGIOPATHY, APP-RELATED, PIEDMONT VARIANT" }, { - "baseId": "33143", + "upstreamId": "33143", "text": "Alzheimer disease, early-onset, with cerebral amyloid angiopathy" }, { - "baseId": "33146|33147", + "upstreamId": "33146|33147", "text": "Serum amyloid a variant" }, { - "baseId": "33148|33149|33150|33151|33152|33153|171740|538360|720546|720547|788766|961766", + "upstreamId": "33148|33149|33150|33151|33152|33153|171740|538360|720546|720547|788766|961766", "text": "Aminoacylase 1 deficiency" }, { - "baseId": "33162|33162|33163|33163|33164|33164|33165|33166|33166|33167|33168|33169|33170|33170|33171|33172|33173|33174|33175|33175|33176|33177|33179|33180|33181|33182|33182|33184|33184|33185|33186|33187|33187|33188|33189|33191|33194|33194|33195|33196|33196|33197|33878|33879|33880|33880|33881|46864|103896|103896|103907|103907|103914|103915|103918|103940|103945|103957|103973|103986|103986|103993|104001|125778|255044|255044|321078|321082|321094|321095|321099|321113|321115|321116|321117|321121|321122|321123|321124|330240|330240|330241|330246|330247|330249|330252|330254|330266|330269|330275|330278|330285|330286|330289|330296|330302|330308|330316|330317|330321|330326|336728|336729|336729|336730|336732|336733|336754|336762|336763|336767|336768|336779|336790|336808|336809|338737|338739|338744|338744|338747|338748|338752|338754|338755|338758|338759|338765|338767|338772|338773|338776|338777|338781|568253|569009|577364|577367|614153|622845|626017|642667|642668|642669|642670|642671|642672|642673|642673|642674|677120|680052|693590|693591|739304|739304|798677|841713|841714|841715|841716|841717|841718|872417|872418|872419|872420|872421|872422|872423|872424|872425|872426|872427|872428|872429|872430|872431|872432|872433|872434|872435|872436|872437|872438|872439|872440|872441|872442|872443|872444|872445|872446|872447|872448|872449|872450|872451|872452|872453|872454|872455|872456|872457|872458|872459|872460|872461|872462|872463|872464|936704|948648|957292|957293|980493", + "upstreamId": "33162|33162|33163|33163|33164|33164|33165|33166|33166|33167|33168|33169|33170|33170|33171|33172|33173|33174|33175|33175|33176|33177|33179|33180|33181|33182|33182|33184|33184|33185|33186|33187|33187|33188|33189|33191|33194|33194|33195|33196|33196|33197|33878|33879|33880|33880|33881|46864|103896|103896|103907|103907|103914|103915|103918|103940|103945|103957|103973|103986|103986|103993|104001|125778|255044|255044|321078|321082|321094|321095|321099|321113|321115|321116|321117|321121|321122|321123|321124|330240|330240|330241|330246|330247|330249|330252|330254|330266|330269|330275|330278|330285|330286|330289|330296|330302|330308|330316|330317|330321|330326|336728|336729|336729|336730|336732|336733|336754|336762|336763|336767|336768|336779|336790|336808|336809|338737|338739|338744|338744|338747|338748|338752|338754|338755|338758|338759|338765|338767|338772|338773|338776|338777|338781|568253|569009|577364|577367|614153|622845|626017|642667|642668|642669|642670|642671|642672|642673|642673|642674|677120|680052|693590|693591|739304|739304|798677|841713|841714|841715|841716|841717|841718|872417|872418|872419|872420|872421|872422|872423|872424|872425|872426|872427|872428|872429|872430|872431|872432|872433|872434|872435|872436|872437|872438|872439|872440|872441|872442|872443|872444|872445|872446|872447|872448|872449|872450|872451|872452|872453|872454|872455|872456|872457|872458|872459|872460|872461|872462|872463|872464|936704|948648|957292|957293|980493", "text": "Alzheimer disease, type 3" }, { - "baseId": "33162|33163|33164|33166|33170|33175|33182|33184|33187|33194|33195|33196|33880|38560|46864|103896|103907|103914|103918|103940|103945|103957|103986|104001|255044|330240|336729|338744|568253|569009|577364|577367|642667|642668|642669|642670|642671|642672|642673|642674|693591|739304|841713|841714|841715|841716|841717|841718|936704|948648|957292|957293", + "upstreamId": "33162|33163|33164|33166|33170|33175|33182|33184|33187|33194|33195|33196|33880|38560|46864|103896|103907|103914|103918|103940|103945|103957|103986|104001|255044|330240|336729|338744|568253|569009|577364|577367|642667|642668|642669|642670|642671|642672|642673|642674|693591|739304|841713|841714|841715|841716|841717|841718|936704|948648|957292|957293", "text": "Acne inversa, familial, 3" }, { - "baseId": "33171|33173|33178", + "upstreamId": "33171|33173|33178", "text": "Alzheimer disease, familial, with spastic paraparesis and unusual plaques" }, { - "baseId": "33175|33195|103896|103957|103986|255044|321078|321082|321094|321095|321099|321113|321115|321116|321117|321121|321122|321123|321124|330240|330241|330246|330247|330249|330252|330254|330266|330269|330275|330278|330285|330286|330289|330296|330302|330308|330316|330317|330321|330326|336728|336729|336730|336732|336733|336754|336762|336763|336767|336768|336779|336790|336808|336809|338737|338739|338744|338747|338748|338752|338754|338755|338758|338759|338765|338767|338772|338773|338776|338777|338781|642673|693590|739304|872417|872418|872419|872420|872421|872422|872423|872424|872425|872426|872427|872428|872429|872430|872431|872432|872433|872434|872435|872436|872437|872438|872439|872440|872441|872442|872443|872444|872445|872446|872447|872448|872449|872450|872451|872452|872453|872454|872455|872456|872457|872458|872459|872460|872461|872462|872463|872464", + "upstreamId": "33175|33195|103896|103957|103986|255044|321078|321082|321094|321095|321099|321113|321115|321116|321117|321121|321122|321123|321124|330240|330241|330246|330247|330249|330252|330254|330266|330269|330275|330278|330285|330286|330289|330296|330302|330308|330316|330317|330321|330326|336728|336729|336730|336732|336733|336754|336762|336763|336767|336768|336779|336790|336808|336809|338737|338739|338744|338747|338748|338752|338754|338755|338758|338759|338765|338767|338772|338773|338776|338777|338781|642673|693590|739304|872417|872418|872419|872420|872421|872422|872423|872424|872425|872426|872427|872428|872429|872430|872431|872432|872433|872434|872435|872436|872437|872438|872439|872440|872441|872442|872443|872444|872445|872446|872447|872448|872449|872450|872451|872452|872453|872454|872455|872456|872457|872458|872459|872460|872461|872462|872463|872464", "text": "Cardiomyopathy, dilated, 1u" }, { - "baseId": "33183|33192", + "upstreamId": "33183|33192", "text": "Alzheimer disease, familial, 3, with spastic paraparesis and apraxia" }, { - "baseId": "33187|33198", + "upstreamId": "33187|33198", "text": "Alzheimer disease, familial, 3, with unusual plaques" }, { - "baseId": "33190|33193", + "upstreamId": "33190|33193", "text": "Alzheimer disease, familial, 3, with spastic paraparesis and unusual plaques" }, { - "baseId": "33201|33201|33204|193403|195223|209357|338339|338345|338346|338348|347988|347989|347992|347993|347994|347997|347998|348003|348005|348006|351725|351726|351728|351729|351731|351735|351736|351737|351738|351740|351741|351742|351744|352616|352617|352618|352619|352620|352621|352621|352622|352623|352624|574145|575274|575275|649535|649536|649537|717487|729224|742946|742947|742948|742949|745348|758120|849391|891370|891371|891372|891373|891374|891375|891376|891377|891378|891379|891380|891381|891382|891383|891384|891385|891386|891387|891388|929500", + "upstreamId": "33201|33201|33204|193403|195223|209357|338339|338345|338346|338348|347988|347989|347992|347993|347994|347997|347998|348003|348005|348006|351725|351726|351728|351729|351731|351735|351736|351737|351738|351740|351741|351742|351744|352616|352617|352618|352619|352620|352621|352621|352622|352623|352624|574145|575274|575275|649535|649536|649537|717487|729224|742946|742947|742948|742949|745348|758120|849391|891370|891371|891372|891373|891374|891375|891376|891377|891378|891379|891380|891381|891382|891383|891384|891385|891386|891387|891388|929500", "text": "Alpha-N-acetylgalactosaminidase deficiency type 1" }, { - "baseId": "33201", + "upstreamId": "33201", "text": "Alpha-N-acetylgalactosaminidase deficiency" }, { - "baseId": "33201|33201|33202|33203|33204|33205|193403|195223|338339|338345|338346|338348|347988|347989|347992|347993|347994|347997|347998|348003|348005|348006|351725|351726|351728|351729|351731|351735|351736|351737|351738|351740|351741|351742|351744|352616|352617|352618|352619|352620|352621|352621|352622|352623|352624|717487|729224|758120|891370|891371|891372|891373|891374|891375|891376|891377|891378|891379|891380|891381|891382|891383|891384|891385|891386|891387|891388|920430", + "upstreamId": "33201|33201|33202|33203|33204|33205|193403|195223|338339|338345|338346|338348|347988|347989|347992|347993|347994|347997|347998|348003|348005|348006|351725|351726|351728|351729|351731|351735|351736|351737|351738|351740|351741|351742|351744|352616|352617|352618|352619|352620|352621|352621|352622|352623|352624|717487|729224|758120|891370|891371|891372|891373|891374|891375|891376|891377|891378|891379|891380|891381|891382|891383|891384|891385|891386|891387|891388|920430", "text": "Alpha-N-acetylgalactosaminidase deficiency type 2" }, { - "baseId": "33204", + "upstreamId": "33204", "text": "Schindler disease, type 3" }, { - "baseId": "33205|620691", + "upstreamId": "33205|620691", "text": "NAGA-Related Disorders" }, { - "baseId": "33207|205354", + "upstreamId": "33207|205354", "text": "Alpha-fetoprotein, hereditary persistence of" }, { - "baseId": "33208|33209", + "upstreamId": "33208|33209", "text": "Alpha-fetoprotein deficiency" }, { - "baseId": "33210|33211|33212|33213|390084", + "upstreamId": "33210|33211|33212|33213|390084", "text": "ALPHA-2-MACROGLOBULIN POLYMORPHISM" }, { - "baseId": "33216|33217|324993|324996|324997|325002|334656|334661|334670|334679|334682|334685|334686|334687|341138|341139|341140|342677|342680|342681|342683|342686|342687|342688|374354|375130|377510|377519|445566|495606|567499", + "upstreamId": "33216|33217|324993|324996|324997|325002|334656|334661|334670|334679|334682|334685|334686|334687|341138|341139|341140|342677|342680|342681|342683|342686|342687|342688|374354|375130|377510|377519|445566|495606|567499", "text": "HNSHA due to aldolase A deficiency" }, { - "baseId": "33218|33219|33221|33222|33429", + "upstreamId": "33218|33219|33221|33222|33429", "text": "Alcohol dependence" }, { - "baseId": "33221", + "upstreamId": "33221", "text": "Aerodigestive tract cancer, squamous cell, alcohol-related, protection against" }, { - "baseId": "33223", + "upstreamId": "33223", "text": "PROALBUMIN LILLE" }, { - "baseId": "33225", + "upstreamId": "33225", "text": "PROALBUMIN TAKEFU" }, { - "baseId": "33226", + "upstreamId": "33226", "text": "ALBUMIN BLENHEIM" }, { - "baseId": "33227", + "upstreamId": "33227", "text": "ALBUMIN NAGASAKI 3" }, { - "baseId": "33228", + "upstreamId": "33228", "text": "ALBUMIN YANOMAMA 2" }, { - "baseId": "33229", + "upstreamId": "33229", "text": "ALBUMIN NAGOYA" }, { - "baseId": "33231", + "upstreamId": "33231", "text": "ALBUMIN TAGLIACOZZO" }, { - "baseId": "33231|33252|33258|33259|33264|33266|33277|33278|294150|294151|294156|294159|294171|294172|295662|295666|295684|295692|295696|295697|295698|299435|299436|299437|299439|299444|299451|299454|299457|299459|299464|299465|299466|299470|299473|779052|892201|892202|892203|892204|892205|892206|892207|892208|892209|892210|892211|892212|892213|892214|892215|892216|892217|892218|892219|895995", + "upstreamId": "33231|33252|33258|33259|33264|33266|33277|33278|294150|294151|294156|294159|294171|294172|295662|295666|295684|295692|295696|295697|295698|299435|299436|299437|299439|299444|299451|299454|299457|299459|299464|299465|299466|299470|299473|779052|892201|892202|892203|892204|892205|892206|892207|892208|892209|892210|892211|892212|892213|892214|892215|892216|892217|892218|892219|895995", "text": "Hyperthyroxinemia, familial dysalbuminemic" }, { - "baseId": "33232", + "upstreamId": "33232", "text": "ALBUMIN REDHILL" }, { - "baseId": "33233", + "upstreamId": "33233", "text": "ALBUMIN ROMA" }, { - "baseId": "33234", + "upstreamId": "33234", "text": "ALBUMIN HIROSHIMA 1" }, { - "baseId": "33235", + "upstreamId": "33235", "text": "ALBUMIN COARI I" }, { - "baseId": "33236", + "upstreamId": "33236", "text": "ALBUMIN PARKLANDS" }, { - "baseId": "33237", + "upstreamId": "33237", "text": "ALBUMIN NASKAPI" }, { - "baseId": "33238", + "upstreamId": "33238", "text": "ALBUMIN NAGASAKI 2" }, { - "baseId": "33239", + "upstreamId": "33239", "text": "ALBUMIN TOCHIGI" }, { - "baseId": "33240", + "upstreamId": "33240", "text": "ALBUMIN HIROSHIMA 2" }, { - "baseId": "33241", + "upstreamId": "33241", "text": "ALBUMIN VANCOUVER" }, { - "baseId": "33243", + "upstreamId": "33243", "text": "ALBUMIN MEXICO 2" }, { - "baseId": "33244", + "upstreamId": "33244", "text": "ALBUMIN FUKUOKA 1" }, { - "baseId": "33245", + "upstreamId": "33245", "text": "ALBUMIN OSAKA 1" }, { - "baseId": "33246", + "upstreamId": "33246", "text": "ALBUMIN B" }, { - "baseId": "33248", + "upstreamId": "33248", "text": "ALBUMIN VANVES" }, { - "baseId": "33249|33263|166089|166091|166092|166093|166094|166099|166100|166102|166103|166104|624071", + "upstreamId": "33249|33263|166089|166091|166092|166093|166094|166099|166100|166102|166103|166104|624071", "text": "Analbuminemia" }, { - "baseId": "33250", + "upstreamId": "33250", "text": "ALBUMIN VENEZIA" }, { - "baseId": "33251", + "upstreamId": "33251", "text": "ALBUMIN CASTEL DI SANGRO" }, { - "baseId": "33252", + "upstreamId": "33252", "text": "PROALBUMIN MALMO" }, { - "baseId": "33253", + "upstreamId": "33253", "text": "PROALBUMIN JAFFNA" }, { - "baseId": "33254", + "upstreamId": "33254", "text": "ALBUMIN HAWKES BAY" }, { - "baseId": "33256", + "upstreamId": "33256", "text": "ALBUMIN TORINO" }, { - "baseId": "33257", + "upstreamId": "33257", "text": "ALBUMIN VIBO VALENTIA" }, { - "baseId": "33258", + "upstreamId": "33258", "text": "ALBUMIN CASEBROOK" }, { - "baseId": "33259", + "upstreamId": "33259", "text": "ALBUMIN IOWA CITY 1" }, { - "baseId": "33260", + "upstreamId": "33260", "text": "ALBUMIN KOMAGOME 2" }, { - "baseId": "33261", + "upstreamId": "33261", "text": "ALBUMIN RUGBY PARK" }, { - "baseId": "33262", + "upstreamId": "33262", "text": "ALBUMIN HERBORN" }, { - "baseId": "33265", + "upstreamId": "33265", "text": "ALBUMIN LARINO" }, { - "baseId": "33266", + "upstreamId": "33266", "text": "ALBUMIN TRADATE 2" }, { - "baseId": "33267", + "upstreamId": "33267", "text": "ALBUMIN CASERTA" }, { - "baseId": "33268", + "upstreamId": "33268", "text": "ALBUMIN BAZZANO" }, { - "baseId": "33269", + "upstreamId": "33269", "text": "ALBUMIN ASOLA" }, { - "baseId": "33270", + "upstreamId": "33270", "text": "ALBUMIN MALMO-95" }, { - "baseId": "33271", + "upstreamId": "33271", "text": "ALBUMIN MALMO-10" }, { - "baseId": "33272", + "upstreamId": "33272", "text": "ALBUMIN MALMO-47" }, { - "baseId": "33273", + "upstreamId": "33273", "text": "ALBUMIN SONDRIA" }, { - "baseId": "33274", + "upstreamId": "33274", "text": "ALBUMIN MALMO-5" }, { - "baseId": "33275", + "upstreamId": "33275", "text": "ALBUMIN DUBLIN" }, { - "baseId": "33276", + "upstreamId": "33276", "text": "ALBUMIN ORTONOVO" }, { - "baseId": "33279", + "upstreamId": "33279", "text": "Analbuminemia baghdad" }, { - "baseId": "33280|132068|132069|133740|133742|133743|133744|133745|133747|133748|133749|133752|133753|133754|133755|133757|133758|133760|133761|133762|133763|133765|133767|133769|188780|206690|206692|206694|206696|237251|244114|246856|249305|249306|249307|249308|249311|249312|249313|249315|249316|249318|249319|249322|249325|249326|249327|249328|249332|249333|249335|249339|249343|249344|249345|249347|249349|266945|364282|364295|364314|364318|364322|364331|364332|364336|364341|384432|404872|421151|421152|427605|427606|427607|427608|427609|440337|442574|446941|446942|446944|446946|446948|446955|446960|446962|446965|446967|446970|446971|446973|446974|446975|446978|446994|446995|446997|447000|447003|447005|447008|447009|447011|447012|447013|447015|447016|447017|447019|447020|447021|447023|447024|447026|447027|447029|447030|447031|447038|447042|447043|447046|447048|447050|447053|447054|447056|447059|447061|447063|447066|447069|447070|447074|447075|447076|447077|447078|447080|447081|447082|447085|447087|447099|447103|447109|447111|447113|492915|492917|497951|497985|514861|514872|514874|514879|514887|514889|514898|514900|514901|514905|514907|514912|514915|514916|514918|514919|514922|514923|514924|514925|514927|514929|514931|514932|514934|514935|514936|514937|514938|514939|514940|514941|514942|514943|514944|514945|514946|514947|514948|514949|514950|514951|514952|514953|514954|514956|514957|514958|514959|514960|514961|514962|514963|514965|514966|514967|514968|514969|514970|514971|514972|514973|514975|514978|514979|514990|514994|515000|538325|556511|556516|556524|556526|556528|556530|556532|556534|556536|556538|556540|556541|556542|556549|556551|556553|556555|556557|556559|556561|556563|556565|556567|556569|556571|556573|556575|556577|556810|556812|556814|556816|556818|556820|556822|556824|556826|556828|556830|556832|556892|556894|556896|556898|556950|556952|556954|556956|556958|556960|556962|556964|556966|556968|556970|576385|584751|608899|623584|626088|626478|626479|626480|626481|626482|626483|626496|626498|626499|626500|626501|626502|626503|626504|626505|626506|626507|626508|626509|626510|626511|626512|626513|626514|626515|626516|626517|626518|626519|626520|626521|626522|626523|626524|626525|626526|626527|626528|626529|626530|626531|626532|626533|626534|626535|626536|626537|626538|626539|626540|626541|626542|626543|626544|626545|626546|626547|626548|626549|626550|626551|626552|626553|626554|626555|626556|626557|626558|626559|626560|626561|626562|626563|626564|626565|650554|650560|650608|650620|685509|690287|690290|690293|690296|690297|690298|690299|690300|690301|690302|690303|690304|690306|690307|690308|690310|690311|690313|690315|690316|690317|690318|690320|694991|694992|694994|694995|694996|695921|695926|695927|695929|695930|695931|695935|695936|695937|695940|695941|718044|718050|731512|731516|731517|731518|731523|731527|745508|745515|745516|758802|761017|761018|761027|774350|774364|776987|776988|778711|780250|780251|780252|789818|792818|818822|818832|818834|818835|822359|822360|822378|822388|822389|822390|822391|822392|822393|822394|822395|822396|822397|822398|822399|822400|822401|822402|822403|822404|822405|822406|822407|822408|822409|822410|822411|822412|822413|822414|822415|822416|822417|822418|822419|822420|822421|822422|822423|822424|822425|822426|822427|822428|822429|822430|822431|822432|822433|822434|822435|822436|822437|822438|822439|822440|822441|822442|822443|822444|822445|822446|822447|822448|822449|822450|822451|822452|822453|822454|822455|822456|822457|822458|822459|822460|822461|822462|822463|822464|822465|850703|850705|850708|850712|850714|920118|921541|921542|921543|921544|921545|921546|921547|921548|921549|921550|921551|921552|921553|921554|921555|921556|921557|921558|921559|929902|929903|929904|929905|929906|929907|929908|929909|929910|929911|929912|929913|929914|929915|929916|929917|929918|929919|929920|929921|929922|929923|929924|929925|929926|929927|929928|929929|929930|929931|940594|940595|941324|941336|941337|941338|941339|941340|941341|941342|941343|941344|941345|941346|941347|941348|951981|951988|951989|951990|951991|951992|951993|951994|951995|951996|951997|951998|951999|952000|959515|960398", + "upstreamId": "33280|132068|132069|133740|133742|133743|133744|133745|133747|133748|133749|133752|133753|133754|133755|133757|133758|133760|133761|133762|133763|133765|133767|133769|188780|206690|206692|206694|206696|237251|244114|246856|249305|249306|249307|249308|249311|249312|249313|249315|249316|249318|249319|249322|249325|249326|249327|249328|249332|249333|249335|249339|249343|249344|249345|249347|249349|266945|364282|364295|364314|364318|364322|364331|364332|364336|364341|384432|404872|421151|421152|427605|427606|427607|427608|427609|440337|442574|446941|446942|446944|446946|446948|446955|446960|446962|446965|446967|446970|446971|446973|446974|446975|446978|446994|446995|446997|447000|447003|447005|447008|447009|447011|447012|447013|447015|447016|447017|447019|447020|447021|447023|447024|447026|447027|447029|447030|447031|447038|447042|447043|447046|447048|447050|447053|447054|447056|447059|447061|447063|447066|447069|447070|447074|447075|447076|447077|447078|447080|447081|447082|447085|447087|447099|447103|447109|447111|447113|492915|492917|497951|497985|514861|514872|514874|514879|514887|514889|514898|514900|514901|514905|514907|514912|514915|514916|514918|514919|514922|514923|514924|514925|514927|514929|514931|514932|514934|514935|514936|514937|514938|514939|514940|514941|514942|514943|514944|514945|514946|514947|514948|514949|514950|514951|514952|514953|514954|514956|514957|514958|514959|514960|514961|514962|514963|514965|514966|514967|514968|514969|514970|514971|514972|514973|514975|514978|514979|514990|514994|515000|538325|556511|556516|556524|556526|556528|556530|556532|556534|556536|556538|556540|556541|556542|556549|556551|556553|556555|556557|556559|556561|556563|556565|556567|556569|556571|556573|556575|556577|556810|556812|556814|556816|556818|556820|556822|556824|556826|556828|556830|556832|556892|556894|556896|556898|556950|556952|556954|556956|556958|556960|556962|556964|556966|556968|556970|576385|584751|608899|623584|626088|626478|626479|626480|626481|626482|626483|626496|626498|626499|626500|626501|626502|626503|626504|626505|626506|626507|626508|626509|626510|626511|626512|626513|626514|626515|626516|626517|626518|626519|626520|626521|626522|626523|626524|626525|626526|626527|626528|626529|626530|626531|626532|626533|626534|626535|626536|626537|626538|626539|626540|626541|626542|626543|626544|626545|626546|626547|626548|626549|626550|626551|626552|626553|626554|626555|626556|626557|626558|626559|626560|626561|626562|626563|626564|626565|650554|650560|650608|650620|685509|690287|690290|690293|690296|690297|690298|690299|690300|690301|690302|690303|690304|690306|690307|690308|690310|690311|690313|690315|690316|690317|690318|690320|694991|694992|694994|694995|694996|695921|695926|695927|695929|695930|695931|695935|695936|695937|695940|695941|718044|718050|731512|731516|731517|731518|731523|731527|745508|745515|745516|758802|761017|761018|761027|774350|774364|776987|776988|778711|780250|780251|780252|789818|792818|818822|818832|818834|818835|822359|822360|822378|822388|822389|822390|822391|822392|822393|822394|822395|822396|822397|822398|822399|822400|822401|822402|822403|822404|822405|822406|822407|822408|822409|822410|822411|822412|822413|822414|822415|822416|822417|822418|822419|822420|822421|822422|822423|822424|822425|822426|822427|822428|822429|822430|822431|822432|822433|822434|822435|822436|822437|822438|822439|822440|822441|822442|822443|822444|822445|822446|822447|822448|822449|822450|822451|822452|822453|822454|822455|822456|822457|822458|822459|822460|822461|822462|822463|822464|822465|850703|850705|850708|850712|850714|920118|921541|921542|921543|921544|921545|921546|921547|921548|921549|921550|921551|921552|921553|921554|921555|921556|921557|921558|921559|929902|929903|929904|929905|929906|929907|929908|929909|929910|929911|929912|929913|929914|929915|929916|929917|929918|929919|929920|929921|929922|929923|929924|929925|929926|929927|929928|929929|929930|929931|940594|940595|941324|941336|941337|941338|941339|941340|941341|941342|941343|941344|941345|941346|941347|941348|951981|951988|951989|951990|951991|951992|951993|951994|951995|951996|951997|951998|951999|952000|959515|960398", "text": "Myasthenic syndrome, congenital, 8" }, { - "baseId": "33282|33283|172167|172168", + "upstreamId": "33282|33283|172167|172168", "text": "Wilms tumor 2" }, { - "baseId": "33284|33285|33286|33287|33288|142855|142856|211025|292924|292925|292939|292946|292948|292953|292962|292964|292966|294301|294302|294306|294314|294317|294328|294329|294335|294338|294347|294350|294351|294353|297754|297773|297775|297786|297794|297800|297803|297804|297860|297861|297862|297872|297875|297877|297887|297888|679431|890501|890502|890503|890504|890505|890506|890507|890508|890509|890510|890511|890512|890513|890514|890515|890516|890517|890518|890519|890520|890521|890522|890523|890524|890525|890526|890527|890528", + "upstreamId": "33284|33285|33286|33287|33288|142855|142856|211025|292924|292925|292939|292946|292948|292953|292962|292964|292966|294301|294302|294306|294314|294317|294328|294329|294335|294338|294347|294350|294351|294353|297754|297773|297775|297786|297794|297800|297803|297804|297860|297861|297862|297872|297875|297877|297887|297888|679431|890501|890502|890503|890504|890505|890506|890507|890508|890509|890510|890511|890512|890513|890514|890515|890516|890517|890518|890519|890520|890521|890522|890523|890524|890525|890526|890527|890528", "text": "Autosomal dominant progressive external ophthalmoplegia with mitochondrial DNA deletions 2" }, { - "baseId": "33288|76919|263776|263777|553379", + "upstreamId": "33288|76919|263776|263777|553379", "text": "Mitochondrial DNA depletion syndrome 12b (cardiomyopathic type), autosomal recessive" }, { - "baseId": "33288|201345|513982", + "upstreamId": "33288|201345|513982", "text": "Vertigo" }, { - "baseId": "33288|51905|171147|177203|189973|198075|198264|198952|240006|259847|400327|488530|551741|551746|621903|621904", + "upstreamId": "33288|51905|171147|177203|189973|198075|198264|198952|240006|259847|400327|488530|551741|551746|621903|621904", "text": "Left ventricular hypertrophy" }, { - "baseId": "33288", + "upstreamId": "33288", "text": "Abnormality of mitochondrial metabolism" }, { - "baseId": "33288", + "upstreamId": "33288", "text": "Mitochondrial respiratory chain defects" }, { - "baseId": "33289|33290|33291|33292|33293|33294|33295|33297|33298|33299|33300|33301|140030|188786|439807|447822|448089|448120|498579|515822|515847|515860|515909|515911|515915|556504|557031|557033|558483|558485|627767|627768|627769|627770|627771|627772|627773|627774|627775|627776|627777|627778|627779|627780|627781|650655|690584|690585|732392|732393|743745|746431|746432|823894|823895|823896|823897|823898|921995|921996|921997|921998|930472|952392", + "upstreamId": "33289|33290|33291|33292|33293|33294|33295|33297|33298|33299|33300|33301|140030|188786|439807|447822|448089|448120|498579|515822|515847|515860|515909|515911|515915|556504|557031|557033|558483|558485|627767|627768|627769|627770|627771|627772|627773|627774|627775|627776|627777|627778|627779|627780|627781|650655|690584|690585|732392|732393|743745|746431|746432|823894|823895|823896|823897|823898|921995|921996|921997|921998|930472|952392", "text": "Reticular dysgenesis" }, { - "baseId": "33302|33303|33304|33305|33306|33307|33308|389880|433354|609719|799577|799578|799579", + "upstreamId": "33302|33303|33304|33305|33306|33307|33308|389880|433354|609719|799577|799578|799579", "text": "Adenylate kinase deficiency, hemolytic anemia due to" }, { - "baseId": "33309|99376|177486|190776|191176|195606|195919|312171|312172|312184|312186|312188|312190|312193|312194|312202|312203|312209|312213|312216|312217|312219|317937|317943|317955|317957|317958|317959|317964|317966|317975|317977|317978|323998|324002|324003|324004|324006|324007|324011|324018|324026|324027|324028|324732|324733|324754|324756|324768|324770|324773|324776|324785|324810|324812|324813|324814|324832|324834|324844|324845|324852|324866|701541|701542|866894|866895|866896|866897|866898|866899|866900|866901|866902|866903|866904|866905|866906|866907|866908|866909|866910|866911|866912|866913|866914|866915|866916|866917|866918|866919|866920|866921|866922|866923|866924|866925|866926|866927|866928|866929|866930|866931|866932|866933|866934|866935|868593|868594|868595|868596", + "upstreamId": "33309|99376|177486|190776|191176|195606|195919|312171|312172|312184|312186|312188|312190|312193|312194|312202|312203|312209|312213|312216|312217|312219|317937|317943|317955|317957|317958|317959|317964|317966|317975|317977|317978|323998|324002|324003|324004|324006|324007|324011|324018|324026|324027|324028|324732|324733|324754|324756|324768|324770|324773|324776|324785|324810|324812|324813|324814|324832|324834|324844|324845|324852|324866|701541|701542|866894|866895|866896|866897|866898|866899|866900|866901|866902|866903|866904|866905|866906|866907|866908|866909|866910|866911|866912|866913|866914|866915|866916|866917|866918|866919|866920|866921|866922|866923|866924|866925|866926|866927|866928|866929|866930|866931|866932|866933|866934|866935|868593|868594|868595|868596", "text": "Erythrocyte AMP deaminase deficiency" }, { - "baseId": "33310|33311|33312|97347|98241|98243|98244|98245|98246|98249|177319|177482|177483|177484|177485|194781|270892|275938|276232|276344|515028|538326|549851|556855|626657|626658|650518|706593|758825|822575|920123|921598", + "upstreamId": "33310|33311|33312|97347|98241|98243|98244|98245|98246|98249|177319|177482|177483|177484|177485|194781|270892|275938|276232|276344|515028|538326|549851|556855|626657|626658|650518|706593|758825|822575|920123|921598", "text": "Muscle AMP deaminase deficiency" }, { - "baseId": "33313", + "upstreamId": "33313", "text": "furosemide and spironolactone response - Efficacy" }, { - "baseId": "33314|611397|961609", + "upstreamId": "33314|611397|961609", "text": "Developmental malformations-deafness-dystonia syndrome" }, { - "baseId": "33314|38553|38554|38555|38556|76956|132659|132660|132661|132662|132663|132664|132665|132666|132667|132668|132669|132670|133711|133712|133713|199788|214776|259236|259867|264344|275077|275078|369485|369492|369760|369768|371162|371165|371180|424622|431916|431917|439880|457795|457806|457809|457811|481330|486791|486792|486793|501752|501754|502395|511009|522949|522960|522967|523318|561639|561995|564314|611397|636203|683918|683919|683921|683922|687076|687077|687078|687079|687080|687081|687083|689881|689883|798586|816466|833728|906195|919107|924876|924877|945719|955181|961609|964293|964834|970524|970860", + "upstreamId": "33314|38553|38554|38555|38556|76956|132659|132660|132661|132662|132663|132664|132665|132666|132667|132668|132669|132670|133711|133712|133713|199788|214776|259236|259867|264344|275077|275078|369485|369492|369760|369768|371162|371165|371180|424622|431916|431917|439880|457795|457806|457809|457811|481330|486791|486792|486793|501752|501754|502395|511009|522949|522960|522967|523318|561639|561995|564314|611397|636203|683918|683919|683921|683922|687076|687077|687078|687079|687080|687081|687083|689881|689883|798586|816466|833728|906195|919107|924876|924877|945719|955181|961609|964293|964834|970524|970860", "text": "Baraitser-Winter syndrome 1" }, { - "baseId": "33315|33316|33317|38552|38552|45281|53385|53386|76366|76367|139981|175327|197388|197393|197394|197396|197398|197402|197403|197832|227843|240891|240893|258662|258664|258665|258666|258668|258670|258672|258674|258675|259943|311573|311576|311579|317167|317169|323194|323198|350049|370978|370981|371600|371895|373591|373592|397529|397530|397973|398092|408018|460315|460317|460386|461149|461151|487766|502942|503845|510243|510244|525523|525527|525592|525595|525597|525598|525813|525937|525940|564034|564036|564038|564382|564889|566604|566606|569873|569887|582201|617616|624412|624413|639295|639296|639297|639298|639299|687678|768050|791010|820275|837454|837455|837456|837457|837458|852281|866511|866512|866513|866514|866515|866516|868528|911279|925973|935227|935228|947128|956270|956271|966481|967191", + "upstreamId": "33315|33316|33317|38552|38552|45281|53385|53386|76366|76367|139981|175327|197388|197393|197394|197396|197398|197402|197403|197832|227843|240891|240893|258662|258664|258665|258666|258668|258670|258672|258674|258675|259943|311573|311576|311579|317167|317169|323194|323198|350049|370978|370981|371600|371895|373591|373592|397529|397530|397973|398092|408018|460315|460317|460386|461149|461151|487766|502942|503845|510243|510244|525523|525527|525592|525595|525597|525598|525813|525937|525940|564034|564036|564038|564382|564889|566604|566606|569873|569887|582201|617616|624412|624413|639295|639296|639297|639298|639299|687678|768050|791010|820275|837454|837455|837456|837457|837458|852281|866511|866512|866513|866514|866515|866516|868528|911279|925973|935227|935228|947128|956270|956271|966481|967191", "text": "Aortic aneurysm, familial thoracic 6" }, { - "baseId": "33315|210379|259161|485695|485735|485756", + "upstreamId": "33315|210379|259161|485695|485735|485756", "text": "Aortic aneurysm, familial thoracic 2" }, { - "baseId": "33316|33317|38552|38552|919302", + "upstreamId": "33316|33317|38552|38552|919302", "text": "Moyamoya disease 5" }, { - "baseId": "33318|33319|33321|33322|33323|33324|33325|33328|33331|51272|51273|59459|99451|99452|99453|99454|99457|99460|132672|133708|193472|206767|206768|226438|228356|249757|249759|259655|279423|279424|279425|279717|280964|281106|281108|281109|361844|364872|364883|364928|364928|405080|414773|447511|447519|447520|447521|447522|447525|447527|447656|447661|447667|447669|447753|447757|447769|447775|447776|447779|447784|447811|447816|447818|447820|447824|447826|447828|447829|511241|515493|515569|515576|515612|515613|515614|552039|552040|556798|556800|556866|556868|556872|556877|556994|556999|557167|557169|558353|558355|608937|608938|627407|627408|627409|627410|627411|627412|627413|627414|627415|627416|627417|627418|627419|679734|679735|690509|690510|690511|696563|746245|746246|780594|789940|789941|789942|798465|805212|818933|823501|823502|823503|823504|823505|823506|823507|823508|823509|823510|823511|823512|850963|851287|858775|863829|863830|863831|863832|863833|863834|863835|921855|921856|921857|921858|921859|921860|921861|930338|941772|941773|941774|963224|963225", + "upstreamId": "33318|33319|33321|33322|33323|33324|33325|33328|33331|51272|51273|59459|99451|99452|99453|99454|99457|99460|132672|133708|193472|206767|206768|226438|228356|249757|249759|259655|279423|279424|279425|279717|280964|281106|281108|281109|361844|364872|364883|364928|364928|405080|414773|447511|447519|447520|447521|447522|447525|447527|447656|447661|447667|447669|447753|447757|447769|447775|447776|447779|447784|447811|447816|447818|447820|447824|447826|447828|447829|511241|515493|515569|515576|515612|515613|515614|552039|552040|556798|556800|556866|556868|556872|556877|556994|556999|557167|557169|558353|558355|608937|608938|627407|627408|627409|627410|627411|627412|627413|627414|627415|627416|627417|627418|627419|679734|679735|690509|690510|690511|696563|746245|746246|780594|789940|789941|789942|798465|805212|818933|823501|823502|823503|823504|823505|823506|823507|823508|823509|823510|823511|823512|850963|851287|858775|863829|863830|863831|863832|863833|863834|863835|921855|921856|921857|921858|921859|921860|921861|930338|941772|941773|941774|963224|963225", "text": "Congenital myopathy with excess of thin filaments" }, { - "baseId": "33320", + "upstreamId": "33320", "text": "Myopathy, actin, congenital, with excess of thin myofilaments" }, { - "baseId": "33322", + "upstreamId": "33322", "text": "ACTA1-related myopathies" }, { - "baseId": "33326|33327", + "upstreamId": "33326|33327", "text": "Myopathy, actin, congenital, with cores" }, { - "baseId": "33333|33334|33335|33336|33337|33338|33339|33340|33341|49434|199814|255948|326781|326785|326786|336613|336616|336623|336625|336637|336644|342867|342871|342872|342882|344511|344518|344520|344521|344525|344528|344533|353363|876140|876141|876142|876143|876144|876145|876146|876154|876734|975954|975955|975956|975957|975958|975959|975960|975961|975962|975963|975964|975965|975966|975967|975968|975969|975970|975971|975972|975973|975974|975975|975976|975977|975978|975979|975980|975981|975982|975983|975984|975985|975986|975987|975988|975989|975990|975991|975992|975993|975994|975995|975996|975997|975998|975999|976000|976001|976002|976003|976004", + "upstreamId": "33333|33334|33335|33336|33337|33338|33339|33340|33341|49434|199814|255948|326781|326785|326786|336613|336616|336623|336625|336637|336644|342867|342871|342872|342882|344511|344518|344520|344521|344525|344528|344533|353363|876140|876141|876142|876143|876144|876145|876146|876154|876734|975954|975955|975956|975957|975958|975959|975960|975961|975962|975963|975964|975965|975966|975967|975968|975969|975970|975971|975972|975973|975974|975975|975976|975977|975978|975979|975980|975981|975982|975983|975984|975985|975986|975987|975988|975989|975990|975991|975992|975993|975994|975995|975996|975997|975998|975999|976000|976001|976002|976003|976004", "text": "Adenine phosphoribosyltransferase deficiency" }, { - "baseId": "33335", + "upstreamId": "33335", "text": "APRT deficiency, Japanese type" }, { - "baseId": "33342|33343|33343|33344|33344|33345|33346|33347|33347|45444|45444|45445|45446|45447|45448|45449|45450|45451|45451|45452|45453|45454|45454|75618|143031|143031|226683|226690|260167|328431|328433|328434|328440|328441|328443|328467|328468|328472|328474|328478|328480|338408|338409|338415|338417|338417|338424|338424|338425|338428|344456|344459|344462|344464|344467|344476|344477|344478|344481|344503|344508|344508|345883|345884|345892|345896|345898|345904|345907|345907|345908|345911|345915|360444|378188|378191|409927|422166|424450|445773|467668|486616|487705|505911|505914|505914|506816|506816|531014|531513|531516|531519|531531|569047|571120|571120|571121|571136|571358|571370|574457|574458|574459|574460|621567|621568|645887|645888|645889|645890|645891|645892|645893|645894|645895|645896|645897|645898|645899|645900|653270|727181|740752|740753|740754|740754|745289|755847|755848|755849|755850|771497|771498|771499|771500|788119|788121|791744|845333|845334|845335|845336|845337|845338|845339|845340|845341|877505|877506|877507|877508|877509|877510|877511|877512|877513|877514|877515|877516|877517|877518|877518|877519|877520|877521|877522|877523|877524|877525|880518|880519|928261|928262|928263|928264|928265|928266|928267|937929|937930|937931|940412|941181|949918|949919|949920|958106|960885|960886|965877", + "upstreamId": "33342|33343|33343|33344|33344|33345|33346|33347|33347|45444|45444|45445|45446|45447|45448|45449|45450|45451|45451|45452|45453|45454|45454|75618|143031|143031|226683|226690|260167|328431|328433|328434|328440|328441|328443|328467|328468|328472|328474|328478|328480|338408|338409|338415|338417|338417|338424|338424|338425|338428|344456|344459|344462|344464|344467|344476|344477|344478|344481|344503|344508|344508|345883|345884|345892|345896|345898|345904|345907|345907|345908|345911|345915|360444|378188|378191|409927|422166|424450|445773|467668|486616|487705|505911|505914|505914|506816|506816|531014|531513|531516|531519|531531|569047|571120|571120|571121|571136|571358|571370|574457|574458|574459|574460|621567|621568|645887|645888|645889|645890|645891|645892|645893|645894|645895|645896|645897|645898|645899|645900|653270|727181|740752|740753|740754|740754|745289|755847|755848|755849|755850|771497|771498|771499|771500|788119|788121|791744|845333|845334|845335|845336|845337|845338|845339|845340|845341|877505|877506|877507|877508|877509|877510|877511|877512|877513|877514|877515|877516|877517|877518|877518|877519|877520|877521|877522|877523|877524|877525|880518|880519|928261|928262|928263|928264|928265|928266|928267|937929|937930|937931|940412|941181|949918|949919|949920|958106|960885|960886|965877", "text": "Hyper-IgE recurrent infection syndrome 1, autosomal dominant" }, { - "baseId": "33343|33344|33347|45444|45451|45454|143031|226683|226690|260167|338417|338424|344508|345907|360444|378188|378191|409927|422166|445773|467668|487705|505911|505914|506816|531014|531513|531516|531519|531531|569047|571120|571121|571136|571358|571370|574457|574458|574459|574460|621567|621568|645887|645888|645889|645890|645891|645892|645893|645894|645895|645896|645897|645898|645899|645900|653270|727181|740752|740753|740754|745289|755847|755848|755849|755850|771497|771498|771499|771500|788119|788121|845333|845334|845335|845336|845337|845338|845339|845340|845341|877518|928261|928262|928263|928264|928265|928266|928267|937929|937930|937931|940412|941181|949918|949919|949920|958106|960885|960886", + "upstreamId": "33343|33344|33347|45444|45451|45454|143031|226683|226690|260167|338417|338424|344508|345907|360444|378188|378191|409927|422166|445773|467668|487705|505911|505914|506816|531014|531513|531516|531519|531531|569047|571120|571121|571136|571358|571370|574457|574458|574459|574460|621567|621568|645887|645888|645889|645890|645891|645892|645893|645894|645895|645896|645897|645898|645899|645900|653270|727181|740752|740753|740754|745289|755847|755848|755849|755850|771497|771498|771499|771500|788119|788121|845333|845334|845335|845336|845337|845338|845339|845340|845341|877518|928261|928262|928263|928264|928265|928266|928267|937929|937930|937931|940412|941181|949918|949919|949920|958106|960885|960886", "text": "STAT3 gain of function" }, { - "baseId": "33347|137057|137058|166237|174690|176632|260167|308206|308440|308499|308512|318386|319408|328429|328479|338410|344453|344510|345882|345900|345901|353855|621568", + "upstreamId": "33347|137057|137058|166237|174690|176632|260167|308206|308440|308499|308512|318386|319408|328429|328479|338410|344453|344510|345882|345900|345901|353855|621568", "text": "Hyper-IgE syndrome" }, { - "baseId": "33348|33349|33350|38547|38548|38549|38550|38551|205405|213526|250303|250304|250305|282323|282333|282334|282339|282340|282348|282350|282351|283009|283010|283012|283013|283020|284579|284580|284581|284582|284583|284590|284594|284599|284600|284603|284982|284989|285001|285002|285006|285025|285029|285041|285044|759036|881263|881264|881265|881266|881267|881268|881269|881270|881271|881272|881273|882818|882819|961502|965346", + "upstreamId": "33348|33349|33350|38547|38548|38549|38550|38551|205405|213526|250303|250304|250305|282323|282333|282334|282339|282340|282348|282350|282351|283009|283010|283012|283013|283020|284579|284580|284581|284582|284583|284590|284594|284599|284600|284603|284982|284989|285001|285002|285006|285025|285029|285041|285044|759036|881263|881264|881265|881266|881267|881268|881269|881270|881271|881272|881273|882818|882819|961502|965346", "text": "Progressive myositis ossificans" }, { - "baseId": "33351", + "upstreamId": "33351", "text": "ACTININ, ALPHA-3 POLYMORPHISM" }, { - "baseId": "33351", + "upstreamId": "33351", "text": "ACTN3 deficiency" }, { - "baseId": "33351", + "upstreamId": "33351", "text": "Sprinting performance" }, { - "baseId": "33352|33352|44314|44315|44315|53062|53063|53066|53066|53068|53071|53071|53072|53072|53073|53073|53074|53075|53077|53077|53078|53078|53079|53080|53083|53084|53084|53085|53086|53086|53087|53088|53089|53089|53090|53090|53091|53092|53092|53093|53095|53096|53097|53098|53100|53100|53101|53102|53102|53103|53103|53104|53105|53106|53107|53109|53109|53111|53112|53112|53116|53117|53117|53118|53119|53119|53120|53120|53121|139985|139986|139987|139989|139990|139991|172391|172391|172392|172394|172394|172396|172397|172397|172400|172530|172533|172535|172537|172537|172538|172786|172787|172788|172928|172928|172929|187396|189393|189394|189395|189396|189396|189397|189402|189403|189403|198041|198042|198043|198044|198045|198048|198049|198050|198051|198054|198055|198056|198058|198058|198059|198059|198060|198061|198062|198067|198071|212080|212081|212084|212084|212085|214103|221090|221090|224194|228359|228362|228364|228365|238222|238222|238223|238224|238225|238227|238229|238230|257950|257951|257954|257955|257957|279741|279743|279744|279744|279746|279746|279753|279753|279754|279754|279767|279769|279774|280066|280075|280076|280076|280079|280085|280092|281356|281356|281358|281358|281360|281360|281364|281370|281372|281379|281380|281383|281385|281546|281547|281548|281555|281557|281557|281558|359244|359287|364787|364936|364942|364946|364967|364989|364991|364994|390978|390990|390991|390991|390994|391004|391005|391009|391009|391013|391017|391017|391026|391028|391033|391034|391079|391114|391131|391142|391145|391149|391151|421224|421225|421226|421226|433341|446925|446951|447588|447589|447590|447592|447595|447595|447597|447602|447602|447756|447760|447767|447774|447819|447821|447836|447840|447843|447845|447847|447849|447850|447866|447870|447873|447874|447877|447877|447881|447893|447897|447902|447906|447908|447918|508768|508768|509163|509164|509166|511047|515547|515549|515553|515572|515633|515637|515637|515645|515649|515651|515653|515654|515659|515662|515688|515690|515691|515695|515697|556523|556823|556825|556827|556829|557154|557156|557157|557161|557164|557166|557201|557203|557205|557207|557209|557211|558375|558377|558379|558381|558383|558385|558387|589825|614705|627509|627510|627511|627512|627513|627514|627515|627516|627517|627518|627519|627520|627521|627522|627523|627524|627525|627526|627527|627528|627529|627530|650621|650621|650626|650634|650693|685639|685639|685640|690535|690536|695036|732293|761741|794618|798985|818170|823612|823613|823614|823615|823616|823617|823618|823619|823620|823621|823622|823623|823624|823625|823626|823627|823628|823629|823630|823631|823632|823633|850702|863989|863989|863990|863991|863992|863993|863994|863995|863996|863997|863998|863999|864000|864001|864002|864003|864004|864005|864006|864007|864008|864009|864010|864011|864012|865149|921889|921890|921891|921892|921893|921894|921895|921896|921897|921898|930379|930380|930381|930382|930383|940624|941808|941809|941810|941811|941812|941813|941814|941815|941816|952324|952325|952326|952327|952328|952329|959546|959547|959548|960424", + "upstreamId": "33352|33352|44314|44315|44315|53062|53063|53066|53066|53068|53071|53071|53072|53072|53073|53073|53074|53075|53077|53077|53078|53078|53079|53080|53083|53084|53084|53085|53086|53086|53087|53088|53089|53089|53090|53090|53091|53092|53092|53093|53095|53096|53097|53098|53100|53100|53101|53102|53102|53103|53103|53104|53105|53106|53107|53109|53109|53111|53112|53112|53116|53117|53117|53118|53119|53119|53120|53120|53121|139985|139986|139987|139989|139990|139991|172391|172391|172392|172394|172394|172396|172397|172397|172400|172530|172533|172535|172537|172537|172538|172786|172787|172788|172928|172928|172929|187396|189393|189394|189395|189396|189396|189397|189402|189403|189403|198041|198042|198043|198044|198045|198048|198049|198050|198051|198054|198055|198056|198058|198058|198059|198059|198060|198061|198062|198067|198071|212080|212081|212084|212084|212085|214103|221090|221090|224194|228359|228362|228364|228365|238222|238222|238223|238224|238225|238227|238229|238230|257950|257951|257954|257955|257957|279741|279743|279744|279744|279746|279746|279753|279753|279754|279754|279767|279769|279774|280066|280075|280076|280076|280079|280085|280092|281356|281356|281358|281358|281360|281360|281364|281370|281372|281379|281380|281383|281385|281546|281547|281548|281555|281557|281557|281558|359244|359287|364787|364936|364942|364946|364967|364989|364991|364994|390978|390990|390991|390991|390994|391004|391005|391009|391009|391013|391017|391017|391026|391028|391033|391034|391079|391114|391131|391142|391145|391149|391151|421224|421225|421226|421226|433341|446925|446951|447588|447589|447590|447592|447595|447595|447597|447602|447602|447756|447760|447767|447774|447819|447821|447836|447840|447843|447845|447847|447849|447850|447866|447870|447873|447874|447877|447877|447881|447893|447897|447902|447906|447908|447918|508768|508768|509163|509164|509166|511047|515547|515549|515553|515572|515633|515637|515637|515645|515649|515651|515653|515654|515659|515662|515688|515690|515691|515695|515697|556523|556823|556825|556827|556829|557154|557156|557157|557161|557164|557166|557201|557203|557205|557207|557209|557211|558375|558377|558379|558381|558383|558385|558387|589825|614705|627509|627510|627511|627512|627513|627514|627515|627516|627517|627518|627519|627520|627521|627522|627523|627524|627525|627526|627527|627528|627529|627530|650621|650621|650626|650634|650693|685639|685639|685640|690535|690536|695036|732293|761741|794618|798985|818170|823612|823613|823614|823615|823616|823617|823618|823619|823620|823621|823622|823623|823624|823625|823626|823627|823628|823629|823630|823631|823632|823633|850702|863989|863989|863990|863991|863992|863993|863994|863995|863996|863997|863998|863999|864000|864001|864002|864003|864004|864005|864006|864007|864008|864009|864010|864011|864012|865149|921889|921890|921891|921892|921893|921894|921895|921896|921897|921898|930379|930380|930381|930382|930383|940624|941808|941809|941810|941811|941812|941813|941814|941815|941816|952324|952325|952326|952327|952328|952329|959546|959547|959548|960424", "text": "Dilated cardiomyopathy 1AA" }, { - "baseId": "33353|33353|33506|81479|134525|134528|134529|134531|134532|134533|134538|134539|134541|134544|134546|134547|190794|190795|191009|191201|191360|191361|192306|192637|192744|192901|192902|193110|193176|193328|193778|193935|194049|194161|194190|194225|194622|194623|194663|194663|194724|207465|229551|229553|247538|252582|252585|252587|252591|252592|252593|252595|252596|252598|252599|252602|252605|252605|260441|266992|269526|269543|269666|270578|271452|271589|272236|273311|274147|274245|274249|274474|274633|275110|275294|275305|361442|361510|361643|361646|368889|368901|368907|368913|368914|368920|368921|369193|369195|369203|369209|369217|369450|369457|369461|369474|369475|369476|369478|369478|369479|369493|370763|370766|370768|370770|370774|370776|370783|370786|370790|370798|370810|406963|406963|406964|406965|406966|406967|406968|406969|406970|406971|406972|406973|406974|406976|413759|413761|419002|419002|419002|421617|425723|425724|425726|425727|425728|425730|428675|434759|434759|434759|439242|441034|441035|444055|444056|444058|444060|444060|444061|444062|456218|456220|456223|456224|456234|456236|456242|456249|456251|456253|456256|456257|456261|456262|456266|456270|456272|456279|456280|456286|456287|456289|456290|456291|456293|456295|456297|456303|456303|456303|456304|456306|456310|456320|456321|456327|456328|456330|456339|456343|456347|456349|456350|456356|456360|456362|456371|456377|456378|456381|456385|456390|456391|456395|456456|456483|456486|456488|456495|456502|456506|456510|456528|456536|456545|456547|456549|456551|456553|456554|456556|456565|456567|456569|456570|456575|456578|456588|456600|456604|456607|456608|456610|456614|456616|456618|456620|456621|456622|456630|456631|456633|456637|456640|456643|456644|456646|456652|456655|456656|456658|456659|456664|456666|456674|456676|456678|456680|456682|456686|456690|456692|456694|456759|456766|456776|456779|456780|456785|456788|456791|456793|456795|456796|456797|456800|456809|456812|456813|456814|456818|456819|456821|456823|456832|456842|456844|456847|456849|456849|456850|456851|456857|456869|456871|456872|456875|456875|456882|456895|456898|456899|456905|456911|456917|456924|456928|456930|456932|456937|456939|456941|456942|456943|456945|456947|456953|456965|456972|457159|457161|457162|457183|457185|457189|457191|457194|457196|457198|457199|457205|457211|457212|457215|457217|457224|457226|457233|457237|457239|457241|457246|457250|457252|457259|457261|457264|457267|457268|457271|457278|457279|457283|457284|457288|457289|457291|457297|457308|457311|457313|457317|457319|457321|457322|457327|457331|457333|457341|457352|457353|457355|457357|457361|457367|457368|457369|457374|457376|457378|457380|457383|457386|457389|457394|457400|457404|457407|457409|457412|480694|481130|486428|492692|496884|501557|501570|501809|501881|501908|501922|501935|502196|522156|522161|522165|522167|522171|522175|522177|522183|522191|522194|522203|522204|522206|522208|522214|522219|522222|522230|522234|522241|522244|522246|522250|522252|522254|522256|522260|522262|522265|522266|522269|522271|522274|522275|522281|522294|522308|522309|522311|522394|522401|522402|522405|522409|522420|522421|522424|522427|522429|522432|522436|522441|522443|522444|522452|522461|522462|522465|522470|522473|522483|522484|522485|522486|522488|522494|522495|522500|522503|522504|522505|522509|522510|522511|522513|522514|522516|522517|522520|522521|522522|522524|522526|522527|522529|522531|522532|522538|522541|522544|522546|522547|522551|522553|522556|522557|522558|522560|522565|522570|522575|522576|522577|522578|522579|522580|522581|522582|522583|522585|522588|522589|522593|522596|522597|522599|522601|522610|522613|522616|522623|522625|522631|522643|522647|522648|522650|522654|522657|522668|522671|522674|522676|522681|522682|522703|522704|522707|522711|522861|522862|522866|522870|522871|522876|522877|522881|522883|522888|522890|522893|522897|522901|522908|522913|522915|522917|522924|522926|522937|522939|522942|522945|522957|522959|522961|522964|522970|522971|522973|522974|522978|522981|522990|522993|522999|523001|523002|523014|523015|523017|523023|523026|523030|523031|523034|523036|523037|523040|540432|561284|561287|561288|561291|561293|561294|561298|561299|561303|561304|561309|561310|561313|561315|561316|561318|561325|561327|561330|561332|561334|561336|561341|561343|561344|561347|561350|561351|561357|561358|561362|561364|561369|561374|561375|561376|561377|561378|561378|561382|561388|561394|561408|561424|561431|561433|561435|561437|561438|561439|561445|561447|561448|561452|561456|561468|561469|561473|561474|561475|561476|561478|561479|561484|561484|561486|561487|561488|561490|561492|561508|561511|561512|561515|561516|561518|561523|561524|561531|564018|564020|564022|564025|564026|564028|564031|564033|564035|564042|564043|564046|564047|564049|564051|564053|564058|564062|564064|564073|564075|564077|564080|564081|564107|564109|564110|564112|564117|564120|564121|564126|564128|564130|566048|566394|566402|566410|566412|566415|566423|566424|566433|566436|566443|566444|566445|566446|566452|566453|566456|566456|566457|566460|566462|566465|566466|566467|566468|566472|566478|566486|566491|566493|566494|576933|576934|578453|578453|578454|585342|586604|588095|611672|611673|624343|624346|635627|635628|635629|635630|635631|635632|635633|635634|635635|635636|635637|635638|635639|635640|635641|635642|635643|635644|635645|635646|635647|635648|635649|635650|635651|635652|635653|635654|635655|635656|635657|635658|635659|635660|635661|635662|635663|635664|635665|635666|635667|635668|635669|635670|635671|635672|635673|635674|635675|635676|635677|635678|635679|635680|635681|635682|635683|635684|635685|635686|635687|635688|635689|635690|635691|635692|635693|635694|635695|635696|635697|635698|635699|635700|635701|635702|635703|635704|635705|635706|635707|635708|635709|635710|635711|635712|635713|635714|635715|635716|635717|635718|635719|635720|635721|635722|635723|635724|635725|635726|635727|635728|635729|635730|635731|635732|635733|635734|635735|635736|635737|635738|635739|635740|635741|635742|635743|635744|635745|635746|635747|635748|635749|635750|635751|635752|635753|635754|635755|635756|635757|635758|635759|635760|635761|635762|635763|635764|635765|635766|635767|635768|635769|635770|635771|635772|635773|635774|635775|635776|635777|635778|635779|651575|651581|651660|651667|651755|651766|655774|655776|682327|682327|689855|692132|692133|692134|692135|692136|692137|692138|692141|692142|692143|692144|692146|692147|692148|692149|692150|692151|692152|692154|692156|695348|695349|695350|699820|699821|699822|699824|699825|699826|699827|699829|699830|699831|699832|699833|699834|699837|699838|699840|710761|710762|710763|722301|722304|722305|722306|722308|735944|735948|735949|735950|735951|744303|744308|750400|750403|750404|750407|750408|750409|750410|750411|750413|750415|759624|759633|759735|759742|766055|766056|766058|766069|766072|766074|766077|766078|766079|766084|766085|766087|766090|766096|766097|766098|766104|775135|775294|775327|775343|777626|777677|777824|777828|777829|779304|782772|782775|782777|782780|782784|782785|782788|782790|787498|790693|790694|795960|795962|795966|819822|819823|819824|819825|819826|832981|832982|832983|832984|832985|832986|832987|832988|832989|832990|832991|832992|832993|832994|832995|832996|832997|832998|832999|833000|833001|833002|833003|833004|833005|833006|833007|833008|833009|833010|833011|833012|833013|833014|833015|833016|833017|833018|833019|833020|833021|833022|833023|833024|833025|833026|833027|833028|833029|833030|833031|833032|833033|833034|833035|833036|833037|833038|833039|833040|833041|833042|833043|833044|833045|833046|833047|833048|833049|833050|833051|833052|833053|833054|833055|833056|833057|833058|833059|833060|833061|833062|833063|833064|833065|833066|833067|833068|833069|833070|833071|833072|833073|833074|833075|833076|833077|833078|833079|833080|833081|833082|833083|833084|833085|833086|833087|833088|833089|833090|833091|833092|833093|833094|833095|833096|833097|833098|833099|833100|833101|833102|833103|833104|833105|833106|833107|833108|833109|833110|833111|833112|833113|833114|833115|833116|833117|833118|833119|833120|833121|833122|833123|833124|833125|833126|833127|833128|833129|851134|851136|851138|851140|851626|851628|851630|852058|852060|852062|852064|852337|852338|924654|924655|924656|924657|924658|924659|924660|924661|924662|924663|924664|924665|924666|924667|924668|924669|924670|924671|924672|924673|924674|924675|924676|924677|924678|924679|924680|924681|924682|924683|924684|924685|924686|924687|924688|924689|924690|924691|924692|924693|924694|924695|924696|924697|924698|924699|924700|933640|933641|933642|933643|933644|933645|933646|933647|933648|933649|933650|933651|933652|933653|933654|933655|933656|933657|933658|933659|933660|933661|933662|933663|933664|933665|933666|933667|933668|933669|933670|933671|933672|933673|933674|933675|933676|933677|933678|933679|933680|933681|933682|933683|933684|933685|933686|940062|940063|940064|940065|940870|945378|945379|945380|945381|945382|945383|945384|945385|945386|945387|945388|945389|945390|945391|945392|945393|945394|945395|945396|945397|945398|945399|945400|945401|945402|945403|945404|945405|945406|945407|945408|945409|945410|945411|945412|945413|945414|945415|945416|945417|945418|945419|945420|945421|945422|945423|945424|955016|955017|955018|955019|955020|955021|955022|955023|955024|955025|955026|955027|955028|955029|955030|955031|955032|955033|955034|955035|955036|955037|955038|955039|955040|955041|955042|955043|955044|955045|955046|955047|955048|955049|955050|959832|959833|959834|959835|960624|960625|960626|960627", + "upstreamId": "33353|33353|33506|81479|134525|134528|134529|134531|134532|134533|134538|134539|134541|134544|134546|134547|190794|190795|191009|191201|191360|191361|192306|192637|192744|192901|192902|193110|193176|193328|193778|193935|194049|194161|194190|194225|194622|194623|194663|194663|194724|207465|229551|229553|247538|252582|252585|252587|252591|252592|252593|252595|252596|252598|252599|252602|252605|252605|260441|266992|269526|269543|269666|270578|271452|271589|272236|273311|274147|274245|274249|274474|274633|275110|275294|275305|361442|361510|361643|361646|368889|368901|368907|368913|368914|368920|368921|369193|369195|369203|369209|369217|369450|369457|369461|369474|369475|369476|369478|369478|369479|369493|370763|370766|370768|370770|370774|370776|370783|370786|370790|370798|370810|406963|406963|406964|406965|406966|406967|406968|406969|406970|406971|406972|406973|406974|406976|413759|413761|419002|419002|419002|421617|425723|425724|425726|425727|425728|425730|428675|434759|434759|434759|439242|441034|441035|444055|444056|444058|444060|444060|444061|444062|456218|456220|456223|456224|456234|456236|456242|456249|456251|456253|456256|456257|456261|456262|456266|456270|456272|456279|456280|456286|456287|456289|456290|456291|456293|456295|456297|456303|456303|456303|456304|456306|456310|456320|456321|456327|456328|456330|456339|456343|456347|456349|456350|456356|456360|456362|456371|456377|456378|456381|456385|456390|456391|456395|456456|456483|456486|456488|456495|456502|456506|456510|456528|456536|456545|456547|456549|456551|456553|456554|456556|456565|456567|456569|456570|456575|456578|456588|456600|456604|456607|456608|456610|456614|456616|456618|456620|456621|456622|456630|456631|456633|456637|456640|456643|456644|456646|456652|456655|456656|456658|456659|456664|456666|456674|456676|456678|456680|456682|456686|456690|456692|456694|456759|456766|456776|456779|456780|456785|456788|456791|456793|456795|456796|456797|456800|456809|456812|456813|456814|456818|456819|456821|456823|456832|456842|456844|456847|456849|456849|456850|456851|456857|456869|456871|456872|456875|456875|456882|456895|456898|456899|456905|456911|456917|456924|456928|456930|456932|456937|456939|456941|456942|456943|456945|456947|456953|456965|456972|457159|457161|457162|457183|457185|457189|457191|457194|457196|457198|457199|457205|457211|457212|457215|457217|457224|457226|457233|457237|457239|457241|457246|457250|457252|457259|457261|457264|457267|457268|457271|457278|457279|457283|457284|457288|457289|457291|457297|457308|457311|457313|457317|457319|457321|457322|457327|457331|457333|457341|457352|457353|457355|457357|457361|457367|457368|457369|457374|457376|457378|457380|457383|457386|457389|457394|457400|457404|457407|457409|457412|480694|481130|486428|492692|496884|501557|501570|501809|501881|501908|501922|501935|502196|522156|522161|522165|522167|522171|522175|522177|522183|522191|522194|522203|522204|522206|522208|522214|522219|522222|522230|522234|522241|522244|522246|522250|522252|522254|522256|522260|522262|522265|522266|522269|522271|522274|522275|522281|522294|522308|522309|522311|522394|522401|522402|522405|522409|522420|522421|522424|522427|522429|522432|522436|522441|522443|522444|522452|522461|522462|522465|522470|522473|522483|522484|522485|522486|522488|522494|522495|522500|522503|522504|522505|522509|522510|522511|522513|522514|522516|522517|522520|522521|522522|522524|522526|522527|522529|522531|522532|522538|522541|522544|522546|522547|522551|522553|522556|522557|522558|522560|522565|522570|522575|522576|522577|522578|522579|522580|522581|522582|522583|522585|522588|522589|522593|522596|522597|522599|522601|522610|522613|522616|522623|522625|522631|522643|522647|522648|522650|522654|522657|522668|522671|522674|522676|522681|522682|522703|522704|522707|522711|522861|522862|522866|522870|522871|522876|522877|522881|522883|522888|522890|522893|522897|522901|522908|522913|522915|522917|522924|522926|522937|522939|522942|522945|522957|522959|522961|522964|522970|522971|522973|522974|522978|522981|522990|522993|522999|523001|523002|523014|523015|523017|523023|523026|523030|523031|523034|523036|523037|523040|540432|561284|561287|561288|561291|561293|561294|561298|561299|561303|561304|561309|561310|561313|561315|561316|561318|561325|561327|561330|561332|561334|561336|561341|561343|561344|561347|561350|561351|561357|561358|561362|561364|561369|561374|561375|561376|561377|561378|561378|561382|561388|561394|561408|561424|561431|561433|561435|561437|561438|561439|561445|561447|561448|561452|561456|561468|561469|561473|561474|561475|561476|561478|561479|561484|561484|561486|561487|561488|561490|561492|561508|561511|561512|561515|561516|561518|561523|561524|561531|564018|564020|564022|564025|564026|564028|564031|564033|564035|564042|564043|564046|564047|564049|564051|564053|564058|564062|564064|564073|564075|564077|564080|564081|564107|564109|564110|564112|564117|564120|564121|564126|564128|564130|566048|566394|566402|566410|566412|566415|566423|566424|566433|566436|566443|566444|566445|566446|566452|566453|566456|566456|566457|566460|566462|566465|566466|566467|566468|566472|566478|566486|566491|566493|566494|576933|576934|578453|578453|578454|585342|586604|588095|611672|611673|624343|624346|635627|635628|635629|635630|635631|635632|635633|635634|635635|635636|635637|635638|635639|635640|635641|635642|635643|635644|635645|635646|635647|635648|635649|635650|635651|635652|635653|635654|635655|635656|635657|635658|635659|635660|635661|635662|635663|635664|635665|635666|635667|635668|635669|635670|635671|635672|635673|635674|635675|635676|635677|635678|635679|635680|635681|635682|635683|635684|635685|635686|635687|635688|635689|635690|635691|635692|635693|635694|635695|635696|635697|635698|635699|635700|635701|635702|635703|635704|635705|635706|635707|635708|635709|635710|635711|635712|635713|635714|635715|635716|635717|635718|635719|635720|635721|635722|635723|635724|635725|635726|635727|635728|635729|635730|635731|635732|635733|635734|635735|635736|635737|635738|635739|635740|635741|635742|635743|635744|635745|635746|635747|635748|635749|635750|635751|635752|635753|635754|635755|635756|635757|635758|635759|635760|635761|635762|635763|635764|635765|635766|635767|635768|635769|635770|635771|635772|635773|635774|635775|635776|635777|635778|635779|651575|651581|651660|651667|651755|651766|655774|655776|682327|682327|689855|692132|692133|692134|692135|692136|692137|692138|692141|692142|692143|692144|692146|692147|692148|692149|692150|692151|692152|692154|692156|695348|695349|695350|699820|699821|699822|699824|699825|699826|699827|699829|699830|699831|699832|699833|699834|699837|699838|699840|710761|710762|710763|722301|722304|722305|722306|722308|735944|735948|735949|735950|735951|744303|744308|750400|750403|750404|750407|750408|750409|750410|750411|750413|750415|759624|759633|759735|759742|766055|766056|766058|766069|766072|766074|766077|766078|766079|766084|766085|766087|766090|766096|766097|766098|766104|775135|775294|775327|775343|777626|777677|777824|777828|777829|779304|782772|782775|782777|782780|782784|782785|782788|782790|787498|790693|790694|795960|795962|795966|819822|819823|819824|819825|819826|832981|832982|832983|832984|832985|832986|832987|832988|832989|832990|832991|832992|832993|832994|832995|832996|832997|832998|832999|833000|833001|833002|833003|833004|833005|833006|833007|833008|833009|833010|833011|833012|833013|833014|833015|833016|833017|833018|833019|833020|833021|833022|833023|833024|833025|833026|833027|833028|833029|833030|833031|833032|833033|833034|833035|833036|833037|833038|833039|833040|833041|833042|833043|833044|833045|833046|833047|833048|833049|833050|833051|833052|833053|833054|833055|833056|833057|833058|833059|833060|833061|833062|833063|833064|833065|833066|833067|833068|833069|833070|833071|833072|833073|833074|833075|833076|833077|833078|833079|833080|833081|833082|833083|833084|833085|833086|833087|833088|833089|833090|833091|833092|833093|833094|833095|833096|833097|833098|833099|833100|833101|833102|833103|833104|833105|833106|833107|833108|833109|833110|833111|833112|833113|833114|833115|833116|833117|833118|833119|833120|833121|833122|833123|833124|833125|833126|833127|833128|833129|851134|851136|851138|851140|851626|851628|851630|852058|852060|852062|852064|852337|852338|924654|924655|924656|924657|924658|924659|924660|924661|924662|924663|924664|924665|924666|924667|924668|924669|924670|924671|924672|924673|924674|924675|924676|924677|924678|924679|924680|924681|924682|924683|924684|924685|924686|924687|924688|924689|924690|924691|924692|924693|924694|924695|924696|924697|924698|924699|924700|933640|933641|933642|933643|933644|933645|933646|933647|933648|933649|933650|933651|933652|933653|933654|933655|933656|933657|933658|933659|933660|933661|933662|933663|933664|933665|933666|933667|933668|933669|933670|933671|933672|933673|933674|933675|933676|933677|933678|933679|933680|933681|933682|933683|933684|933685|933686|940062|940063|940064|940065|940870|945378|945379|945380|945381|945382|945383|945384|945385|945386|945387|945388|945389|945390|945391|945392|945393|945394|945395|945396|945397|945398|945399|945400|945401|945402|945403|945404|945405|945406|945407|945408|945409|945410|945411|945412|945413|945414|945415|945416|945417|945418|945419|945420|945421|945422|945423|945424|955016|955017|955018|955019|955020|955021|955022|955023|955024|955025|955026|955027|955028|955029|955030|955031|955032|955033|955034|955035|955036|955037|955038|955039|955040|955041|955042|955043|955044|955045|955046|955047|955048|955049|955050|959832|959833|959834|959835|960624|960625|960626|960627", "text": "Myofibrillar myopathy, filamin C-related" }, { - "baseId": "33353|38545|38546|81479|134525|134528|134529|134531|134532|134533|134538|134539|134541|134544|134546|134547|190794|190795|191009|191201|191360|191361|192306|192637|192744|192901|192902|193110|193176|193328|193778|193935|194049|194161|194190|194225|194622|194623|194663|194663|194724|207465|229551|229553|247538|252582|252585|252587|252591|252592|252593|252595|252596|252598|252599|252602|252605|252605|260441|266992|269526|269543|269666|270578|271452|271589|272236|273311|274147|274245|274249|274474|274633|275110|275294|275305|361442|361510|361643|361646|368889|368901|368907|368913|368914|368920|368921|369193|369195|369203|369209|369217|369450|369457|369461|369474|369475|369476|369478|369478|369479|369493|370763|370766|370768|370770|370774|370776|370783|370786|370790|370798|370810|406963|406963|406963|406964|406965|406966|406967|406968|406969|406970|406971|406972|406973|406974|406976|413759|413761|419002|419002|421617|425723|425724|425726|425727|425728|425730|428675|434759|434759|439242|441034|441035|444055|444056|444058|444060|444060|444061|444062|456218|456220|456223|456224|456234|456236|456242|456249|456251|456253|456256|456257|456261|456262|456266|456270|456272|456279|456280|456286|456287|456289|456290|456291|456293|456295|456297|456303|456303|456303|456304|456306|456310|456320|456321|456327|456328|456330|456339|456343|456347|456349|456350|456356|456360|456362|456371|456377|456378|456381|456385|456390|456391|456395|456456|456483|456486|456488|456495|456502|456506|456510|456528|456536|456545|456547|456549|456551|456553|456554|456556|456565|456567|456569|456570|456575|456578|456588|456600|456604|456607|456608|456610|456614|456616|456618|456620|456621|456622|456630|456631|456633|456637|456640|456643|456644|456646|456652|456655|456656|456658|456659|456664|456666|456674|456676|456678|456680|456682|456686|456690|456692|456694|456759|456766|456776|456779|456780|456785|456788|456791|456793|456795|456796|456797|456800|456809|456812|456813|456814|456818|456819|456821|456823|456832|456842|456844|456847|456849|456849|456850|456851|456857|456869|456871|456872|456875|456875|456882|456895|456898|456899|456905|456911|456917|456924|456928|456930|456932|456937|456939|456941|456942|456943|456945|456947|456953|456965|456972|457159|457161|457162|457183|457185|457189|457191|457194|457196|457198|457199|457205|457211|457212|457215|457217|457224|457226|457233|457237|457239|457241|457246|457250|457252|457259|457261|457264|457267|457268|457271|457278|457279|457283|457284|457288|457289|457291|457297|457308|457311|457313|457317|457319|457321|457322|457327|457331|457333|457341|457352|457353|457355|457357|457361|457367|457368|457369|457374|457376|457378|457380|457383|457386|457389|457394|457400|457404|457407|457409|457412|480694|481130|486428|492692|496884|501557|501570|501809|501881|501908|501922|501935|502196|522156|522161|522165|522167|522171|522175|522177|522183|522191|522194|522203|522204|522206|522208|522214|522219|522222|522230|522234|522241|522244|522246|522250|522252|522254|522256|522260|522262|522265|522266|522269|522271|522274|522275|522281|522294|522308|522309|522311|522394|522401|522402|522405|522409|522420|522421|522424|522427|522429|522432|522436|522441|522443|522444|522452|522461|522462|522465|522470|522473|522483|522484|522485|522486|522488|522494|522495|522500|522503|522504|522505|522509|522510|522511|522513|522514|522516|522517|522520|522521|522522|522524|522526|522527|522529|522531|522532|522538|522541|522544|522546|522547|522551|522553|522556|522557|522558|522560|522565|522570|522575|522576|522577|522578|522579|522580|522581|522582|522583|522585|522588|522589|522593|522596|522597|522599|522601|522610|522613|522616|522623|522625|522631|522643|522647|522648|522650|522654|522657|522668|522671|522674|522676|522681|522682|522703|522704|522707|522711|522861|522862|522866|522870|522871|522876|522877|522881|522883|522888|522890|522893|522897|522901|522908|522913|522915|522917|522924|522926|522937|522939|522942|522945|522957|522959|522961|522964|522970|522971|522973|522974|522978|522981|522990|522993|522999|523001|523002|523014|523015|523017|523023|523026|523030|523031|523034|523036|523037|523040|540432|561284|561287|561288|561291|561293|561294|561298|561299|561303|561304|561309|561310|561313|561315|561316|561318|561325|561327|561330|561332|561334|561336|561341|561343|561344|561347|561350|561351|561357|561358|561362|561364|561369|561374|561375|561376|561377|561378|561378|561382|561388|561394|561408|561424|561431|561433|561435|561437|561438|561439|561445|561447|561448|561452|561456|561468|561469|561473|561474|561475|561476|561478|561479|561484|561484|561486|561487|561488|561490|561492|561508|561511|561512|561515|561516|561518|561523|561524|561531|564018|564020|564022|564025|564026|564028|564031|564033|564035|564042|564043|564046|564047|564049|564051|564053|564058|564062|564064|564073|564075|564077|564080|564081|564107|564109|564110|564112|564117|564120|564121|564126|564128|564130|566048|566394|566402|566410|566412|566415|566423|566424|566433|566436|566443|566444|566445|566446|566452|566453|566456|566456|566457|566460|566462|566465|566466|566467|566468|566472|566478|566486|566491|566493|566494|576933|576934|578408|578444|578453|578453|578454|585342|586604|588095|611672|611673|624343|624346|635627|635628|635629|635630|635631|635632|635633|635634|635635|635636|635637|635638|635639|635640|635641|635642|635643|635644|635645|635646|635647|635648|635649|635650|635651|635652|635653|635654|635655|635656|635657|635658|635659|635660|635661|635662|635663|635664|635665|635666|635667|635668|635669|635670|635671|635672|635673|635674|635675|635676|635677|635678|635679|635680|635681|635682|635683|635684|635685|635686|635687|635688|635689|635690|635691|635692|635693|635694|635695|635696|635697|635698|635699|635700|635701|635702|635703|635704|635705|635706|635707|635708|635709|635710|635711|635712|635713|635714|635715|635716|635717|635718|635719|635720|635721|635722|635723|635724|635725|635726|635727|635728|635729|635730|635731|635732|635733|635734|635735|635736|635737|635738|635739|635740|635741|635742|635743|635744|635745|635746|635747|635748|635749|635750|635751|635752|635753|635754|635755|635756|635757|635758|635759|635760|635761|635762|635763|635764|635765|635766|635767|635768|635769|635770|635771|635772|635773|635774|635775|635776|635777|635778|635779|651575|651581|651660|651667|651755|651766|655774|655776|682327|689855|692132|692133|692134|692135|692136|692137|692138|692141|692142|692143|692144|692146|692147|692148|692149|692150|692151|692152|692154|692156|695348|695349|695350|699820|699821|699822|699824|699825|699826|699827|699829|699830|699831|699832|699833|699834|699837|699838|699840|710761|710762|710763|722301|722304|722305|722306|722308|735944|735948|735949|735950|735951|744303|744308|750400|750403|750404|750407|750408|750409|750410|750411|750413|750415|759624|759633|759735|759742|766055|766056|766058|766069|766072|766074|766077|766078|766079|766084|766085|766087|766090|766096|766097|766098|766104|775135|775294|775327|775343|777626|777677|777824|777828|777829|779304|782772|782775|782777|782780|782784|782785|782788|782790|787498|795960|795962|795966|819822|819823|819824|819825|819826|832981|832982|832983|832984|832985|832986|832987|832988|832989|832990|832991|832992|832993|832994|832995|832996|832997|832998|832999|833000|833001|833002|833003|833004|833005|833006|833007|833008|833009|833010|833011|833012|833013|833014|833015|833016|833017|833018|833019|833020|833021|833022|833023|833024|833025|833026|833027|833028|833029|833030|833031|833032|833033|833034|833035|833036|833037|833038|833039|833040|833041|833042|833043|833044|833045|833046|833047|833048|833049|833050|833051|833052|833053|833054|833055|833056|833057|833058|833059|833060|833061|833062|833063|833064|833065|833066|833067|833068|833069|833070|833071|833072|833073|833074|833075|833076|833077|833078|833079|833080|833081|833082|833083|833084|833085|833086|833087|833088|833089|833090|833091|833092|833093|833094|833095|833096|833097|833098|833099|833100|833101|833102|833103|833104|833105|833106|833107|833108|833109|833110|833111|833112|833113|833114|833115|833116|833117|833118|833119|833120|833121|833122|833123|833124|833125|833126|833127|833128|833129|851134|851136|851138|851140|851626|851628|851630|852058|852060|852062|852064|852337|852338|924654|924655|924656|924657|924658|924659|924660|924661|924662|924663|924664|924665|924666|924667|924668|924669|924670|924671|924672|924673|924674|924675|924676|924677|924678|924679|924680|924681|924682|924683|924684|924685|924686|924687|924688|924689|924690|924691|924692|924693|924694|924695|924696|924697|924698|924699|924700|933640|933641|933642|933643|933644|933645|933646|933647|933648|933649|933650|933651|933652|933653|933654|933655|933656|933657|933658|933659|933660|933661|933662|933663|933664|933665|933666|933667|933668|933669|933670|933671|933672|933673|933674|933675|933676|933677|933678|933679|933680|933681|933682|933683|933684|933685|933686|940062|940063|940064|940065|940870|945378|945379|945380|945381|945382|945383|945384|945385|945386|945387|945388|945389|945390|945391|945392|945393|945394|945395|945396|945397|945398|945399|945400|945401|945402|945403|945404|945405|945406|945407|945408|945409|945410|945411|945412|945413|945414|945415|945416|945417|945418|945419|945420|945421|945422|945423|945424|955016|955017|955018|955019|955020|955021|955022|955023|955024|955025|955026|955027|955028|955029|955030|955031|955032|955033|955034|955035|955036|955037|955038|955039|955040|955041|955042|955043|955044|955045|955046|955047|955048|955049|955050|959832|959833|959834|959835|960624|960625|960626|960627", + "upstreamId": "33353|38545|38546|81479|134525|134528|134529|134531|134532|134533|134538|134539|134541|134544|134546|134547|190794|190795|191009|191201|191360|191361|192306|192637|192744|192901|192902|193110|193176|193328|193778|193935|194049|194161|194190|194225|194622|194623|194663|194663|194724|207465|229551|229553|247538|252582|252585|252587|252591|252592|252593|252595|252596|252598|252599|252602|252605|252605|260441|266992|269526|269543|269666|270578|271452|271589|272236|273311|274147|274245|274249|274474|274633|275110|275294|275305|361442|361510|361643|361646|368889|368901|368907|368913|368914|368920|368921|369193|369195|369203|369209|369217|369450|369457|369461|369474|369475|369476|369478|369478|369479|369493|370763|370766|370768|370770|370774|370776|370783|370786|370790|370798|370810|406963|406963|406963|406964|406965|406966|406967|406968|406969|406970|406971|406972|406973|406974|406976|413759|413761|419002|419002|421617|425723|425724|425726|425727|425728|425730|428675|434759|434759|439242|441034|441035|444055|444056|444058|444060|444060|444061|444062|456218|456220|456223|456224|456234|456236|456242|456249|456251|456253|456256|456257|456261|456262|456266|456270|456272|456279|456280|456286|456287|456289|456290|456291|456293|456295|456297|456303|456303|456303|456304|456306|456310|456320|456321|456327|456328|456330|456339|456343|456347|456349|456350|456356|456360|456362|456371|456377|456378|456381|456385|456390|456391|456395|456456|456483|456486|456488|456495|456502|456506|456510|456528|456536|456545|456547|456549|456551|456553|456554|456556|456565|456567|456569|456570|456575|456578|456588|456600|456604|456607|456608|456610|456614|456616|456618|456620|456621|456622|456630|456631|456633|456637|456640|456643|456644|456646|456652|456655|456656|456658|456659|456664|456666|456674|456676|456678|456680|456682|456686|456690|456692|456694|456759|456766|456776|456779|456780|456785|456788|456791|456793|456795|456796|456797|456800|456809|456812|456813|456814|456818|456819|456821|456823|456832|456842|456844|456847|456849|456849|456850|456851|456857|456869|456871|456872|456875|456875|456882|456895|456898|456899|456905|456911|456917|456924|456928|456930|456932|456937|456939|456941|456942|456943|456945|456947|456953|456965|456972|457159|457161|457162|457183|457185|457189|457191|457194|457196|457198|457199|457205|457211|457212|457215|457217|457224|457226|457233|457237|457239|457241|457246|457250|457252|457259|457261|457264|457267|457268|457271|457278|457279|457283|457284|457288|457289|457291|457297|457308|457311|457313|457317|457319|457321|457322|457327|457331|457333|457341|457352|457353|457355|457357|457361|457367|457368|457369|457374|457376|457378|457380|457383|457386|457389|457394|457400|457404|457407|457409|457412|480694|481130|486428|492692|496884|501557|501570|501809|501881|501908|501922|501935|502196|522156|522161|522165|522167|522171|522175|522177|522183|522191|522194|522203|522204|522206|522208|522214|522219|522222|522230|522234|522241|522244|522246|522250|522252|522254|522256|522260|522262|522265|522266|522269|522271|522274|522275|522281|522294|522308|522309|522311|522394|522401|522402|522405|522409|522420|522421|522424|522427|522429|522432|522436|522441|522443|522444|522452|522461|522462|522465|522470|522473|522483|522484|522485|522486|522488|522494|522495|522500|522503|522504|522505|522509|522510|522511|522513|522514|522516|522517|522520|522521|522522|522524|522526|522527|522529|522531|522532|522538|522541|522544|522546|522547|522551|522553|522556|522557|522558|522560|522565|522570|522575|522576|522577|522578|522579|522580|522581|522582|522583|522585|522588|522589|522593|522596|522597|522599|522601|522610|522613|522616|522623|522625|522631|522643|522647|522648|522650|522654|522657|522668|522671|522674|522676|522681|522682|522703|522704|522707|522711|522861|522862|522866|522870|522871|522876|522877|522881|522883|522888|522890|522893|522897|522901|522908|522913|522915|522917|522924|522926|522937|522939|522942|522945|522957|522959|522961|522964|522970|522971|522973|522974|522978|522981|522990|522993|522999|523001|523002|523014|523015|523017|523023|523026|523030|523031|523034|523036|523037|523040|540432|561284|561287|561288|561291|561293|561294|561298|561299|561303|561304|561309|561310|561313|561315|561316|561318|561325|561327|561330|561332|561334|561336|561341|561343|561344|561347|561350|561351|561357|561358|561362|561364|561369|561374|561375|561376|561377|561378|561378|561382|561388|561394|561408|561424|561431|561433|561435|561437|561438|561439|561445|561447|561448|561452|561456|561468|561469|561473|561474|561475|561476|561478|561479|561484|561484|561486|561487|561488|561490|561492|561508|561511|561512|561515|561516|561518|561523|561524|561531|564018|564020|564022|564025|564026|564028|564031|564033|564035|564042|564043|564046|564047|564049|564051|564053|564058|564062|564064|564073|564075|564077|564080|564081|564107|564109|564110|564112|564117|564120|564121|564126|564128|564130|566048|566394|566402|566410|566412|566415|566423|566424|566433|566436|566443|566444|566445|566446|566452|566453|566456|566456|566457|566460|566462|566465|566466|566467|566468|566472|566478|566486|566491|566493|566494|576933|576934|578408|578444|578453|578453|578454|585342|586604|588095|611672|611673|624343|624346|635627|635628|635629|635630|635631|635632|635633|635634|635635|635636|635637|635638|635639|635640|635641|635642|635643|635644|635645|635646|635647|635648|635649|635650|635651|635652|635653|635654|635655|635656|635657|635658|635659|635660|635661|635662|635663|635664|635665|635666|635667|635668|635669|635670|635671|635672|635673|635674|635675|635676|635677|635678|635679|635680|635681|635682|635683|635684|635685|635686|635687|635688|635689|635690|635691|635692|635693|635694|635695|635696|635697|635698|635699|635700|635701|635702|635703|635704|635705|635706|635707|635708|635709|635710|635711|635712|635713|635714|635715|635716|635717|635718|635719|635720|635721|635722|635723|635724|635725|635726|635727|635728|635729|635730|635731|635732|635733|635734|635735|635736|635737|635738|635739|635740|635741|635742|635743|635744|635745|635746|635747|635748|635749|635750|635751|635752|635753|635754|635755|635756|635757|635758|635759|635760|635761|635762|635763|635764|635765|635766|635767|635768|635769|635770|635771|635772|635773|635774|635775|635776|635777|635778|635779|651575|651581|651660|651667|651755|651766|655774|655776|682327|689855|692132|692133|692134|692135|692136|692137|692138|692141|692142|692143|692144|692146|692147|692148|692149|692150|692151|692152|692154|692156|695348|695349|695350|699820|699821|699822|699824|699825|699826|699827|699829|699830|699831|699832|699833|699834|699837|699838|699840|710761|710762|710763|722301|722304|722305|722306|722308|735944|735948|735949|735950|735951|744303|744308|750400|750403|750404|750407|750408|750409|750410|750411|750413|750415|759624|759633|759735|759742|766055|766056|766058|766069|766072|766074|766077|766078|766079|766084|766085|766087|766090|766096|766097|766098|766104|775135|775294|775327|775343|777626|777677|777824|777828|777829|779304|782772|782775|782777|782780|782784|782785|782788|782790|787498|795960|795962|795966|819822|819823|819824|819825|819826|832981|832982|832983|832984|832985|832986|832987|832988|832989|832990|832991|832992|832993|832994|832995|832996|832997|832998|832999|833000|833001|833002|833003|833004|833005|833006|833007|833008|833009|833010|833011|833012|833013|833014|833015|833016|833017|833018|833019|833020|833021|833022|833023|833024|833025|833026|833027|833028|833029|833030|833031|833032|833033|833034|833035|833036|833037|833038|833039|833040|833041|833042|833043|833044|833045|833046|833047|833048|833049|833050|833051|833052|833053|833054|833055|833056|833057|833058|833059|833060|833061|833062|833063|833064|833065|833066|833067|833068|833069|833070|833071|833072|833073|833074|833075|833076|833077|833078|833079|833080|833081|833082|833083|833084|833085|833086|833087|833088|833089|833090|833091|833092|833093|833094|833095|833096|833097|833098|833099|833100|833101|833102|833103|833104|833105|833106|833107|833108|833109|833110|833111|833112|833113|833114|833115|833116|833117|833118|833119|833120|833121|833122|833123|833124|833125|833126|833127|833128|833129|851134|851136|851138|851140|851626|851628|851630|852058|852060|852062|852064|852337|852338|924654|924655|924656|924657|924658|924659|924660|924661|924662|924663|924664|924665|924666|924667|924668|924669|924670|924671|924672|924673|924674|924675|924676|924677|924678|924679|924680|924681|924682|924683|924684|924685|924686|924687|924688|924689|924690|924691|924692|924693|924694|924695|924696|924697|924698|924699|924700|933640|933641|933642|933643|933644|933645|933646|933647|933648|933649|933650|933651|933652|933653|933654|933655|933656|933657|933658|933659|933660|933661|933662|933663|933664|933665|933666|933667|933668|933669|933670|933671|933672|933673|933674|933675|933676|933677|933678|933679|933680|933681|933682|933683|933684|933685|933686|940062|940063|940064|940065|940870|945378|945379|945380|945381|945382|945383|945384|945385|945386|945387|945388|945389|945390|945391|945392|945393|945394|945395|945396|945397|945398|945399|945400|945401|945402|945403|945404|945405|945406|945407|945408|945409|945410|945411|945412|945413|945414|945415|945416|945417|945418|945419|945420|945421|945422|945423|945424|955016|955017|955018|955019|955020|955021|955022|955023|955024|955025|955026|955027|955028|955029|955030|955031|955032|955033|955034|955035|955036|955037|955038|955039|955040|955041|955042|955043|955044|955045|955046|955047|955048|955049|955050|959832|959833|959834|959835|960624|960625|960626|960627", "text": "Myopathy, distal, 4" }, { - "baseId": "33353|44291|45110|45111|45112|45290|45545|51710|51741|51883|51927|51986|51989|51991|51999|52023|52033|52034|52038|52039|52043|52066|52101|52108|52111|52114|52115|52119|52126|52127|52147|52150|52153|52165|52177|52197|52202|52207|52208|52226|52242|52254|52262|52286|52782|52786|52790|52801|52810|52820|52821|52826|52838|53047|53048|53049|53138|53146|53339|53341|53344|53345|53349|53440|53666|53952|54552|54696|54796|55954|56003|56066|56099|56160|56406|56684|56784|56790|56956|57463|77677|81479|102168|134525|134528|134529|134531|134532|134533|134538|134539|134541|134544|134546|134547|142083|142091|142094|142741|173313|173487|173790|173931|174345|174800|175036|175328|175563|176016|176016|176526|178124|178128|178523|178927|178930|179395|179466|179471|179598|179712|186460|186481|189951|190794|190795|191009|191201|191360|191361|192306|192637|192744|192901|192902|193110|193176|193328|193778|193935|194049|194161|194190|194225|194622|194623|194663|194724|198236|198340|198348|198349|198791|198838|199000|199203|199524|207465|224269|224471|228646|229551|229553|229555|229556|229557|229558|229559|229560|229942|230864|240840|247538|252582|252585|252587|252591|252592|252593|252595|252596|252598|252599|252602|252605|254932|260441|266992|269526|269543|269666|270578|271452|271589|272236|273311|274147|274245|274249|274474|274633|275110|275294|275305|276601|276610|277430|277433|277434|277445|277447|277456|278453|278454|278568|279740|280068|280071|281045|281230|281382|281553|281853|281856|283203|283251|283295|283301|283302|283303|283427|283925|283957|284034|284037|284061|284064|284793|285684|285724|285913|285986|286010|286102|286159|286333|290242|290243|290244|290254|290271|290276|291029|291030|291039|291040|291049|291066|291078|291087|291088|291095|294310|294320|294337|294342|294384|294386|294391|294399|294413|294701|294707|294717|294718|294722|294738|296581|296619|298461|298480|298481|298832|299138|301280|301294|301302|302530|302543|302582|302607|302820|302831|302903|302906|302909|305890|306130|306147|309484|309488|309496|311022|311031|311038|311448|311449|313530|313531|314279|314281|314284|314287|314289|314290|314358|314360|314364|316355|316365|316673|316678|317037|317040|317041|317233|319738|319747|320233|320355|320364|320370|320374|320376|320377|320379|320380|320397|320409|320886|320887|320892|320893|321108|321109|322278|322281|322290|322292|322305|322315|322319|322320|322321|322440|322456|322458|322460|322469|323071|323073|323261|323262|323578|323593|323602|323616|323849|323862|323864|323866|323868|324153|325103|325110|325907|326925|326939|326941|326942|326951|327968|327969|327974|327975|328966|328973|328975|328980|328987|328990|328992|328994|329003|330167|330174|330235|330237|330257|330288|331159|331163|331173|331210|331578|331581|331583|331587|331597|331610|331619|331628|331630|331646|332639|333209|334762|335616|335619|335627|335628|335631|335634|335648|335649|337435|337457|337463|337467|337484|337486|338527|338558|338581|338582|338583|338588|338608|338610|338614|338623|338733|339585|340274|340279|340282|340299|340308|340311|340314|340316|340327|340328|340329|340336|340337|340978|341241|341419|341423|341449|341457|341476|341494|341496|346920|346921|346938|346947|346950|346952|346965|348190|348208|348211|348227|348229|348231|353062|353095|353178|353295|353305|353322|353560|361442|361510|361643|361646|368889|368901|368907|368913|368914|368920|368921|369193|369195|369203|369209|369217|369450|369457|369461|369474|369475|369476|369478|369479|369493|370763|370766|370768|370770|370774|370776|370783|370786|370790|370798|370810|406963|406964|406965|406966|406967|406968|406969|406970|406971|406972|406973|406974|406976|406981|413759|413761|419002|421617|425723|425724|425726|425727|425728|425730|428675|434759|439242|441034|441035|444055|444056|444058|444060|444061|444062|456218|456220|456223|456224|456234|456236|456242|456244|456249|456251|456253|456256|456257|456261|456262|456266|456270|456272|456279|456280|456286|456287|456289|456290|456291|456293|456295|456297|456303|456304|456306|456310|456320|456321|456327|456328|456330|456339|456343|456347|456349|456350|456356|456360|456362|456371|456377|456378|456381|456385|456390|456391|456395|456456|456483|456486|456488|456495|456502|456506|456510|456528|456536|456545|456547|456549|456551|456553|456554|456556|456565|456567|456569|456570|456575|456578|456588|456600|456604|456606|456607|456608|456610|456614|456616|456618|456620|456621|456622|456630|456631|456633|456637|456640|456643|456644|456646|456652|456655|456656|456658|456659|456664|456666|456674|456676|456678|456680|456682|456686|456690|456692|456694|456718|456722|456759|456766|456775|456776|456779|456780|456782|456785|456788|456791|456793|456795|456796|456797|456800|456809|456812|456813|456814|456818|456819|456821|456823|456832|456842|456844|456847|456849|456850|456851|456857|456869|456871|456872|456875|456882|456895|456898|456899|456905|456911|456917|456924|456928|456930|456932|456937|456939|456941|456942|456943|456945|456947|456953|456965|456972|456984|456986|456988|457159|457161|457162|457183|457185|457189|457191|457194|457196|457198|457199|457205|457211|457212|457215|457217|457224|457226|457233|457237|457239|457241|457246|457250|457252|457259|457261|457264|457267|457268|457271|457278|457279|457283|457284|457288|457289|457291|457297|457308|457311|457313|457317|457319|457321|457322|457327|457331|457333|457341|457352|457353|457355|457357|457361|457367|457368|457369|457374|457376|457378|457380|457383|457386|457389|457394|457400|457404|457407|457409|457412|457436|462462|462464|462704|462705|462706|462708|462717|463194|463203|463205|463208|463327|463331|465647|465649|466630|466632|480694|486428|492692|496884|501557|501570|501809|501857|501881|501908|501922|501935|502196|522156|522161|522165|522167|522171|522175|522177|522183|522191|522194|522203|522204|522206|522208|522214|522219|522222|522230|522234|522241|522244|522246|522250|522252|522254|522256|522260|522262|522265|522266|522269|522271|522274|522275|522281|522294|522308|522309|522311|522394|522401|522402|522405|522409|522420|522421|522424|522427|522429|522432|522436|522441|522443|522444|522452|522461|522462|522465|522470|522473|522483|522484|522485|522486|522488|522494|522495|522500|522503|522504|522505|522509|522510|522511|522513|522514|522516|522517|522520|522521|522522|522524|522526|522527|522529|522531|522532|522538|522541|522544|522546|522547|522551|522553|522556|522557|522558|522560|522565|522570|522575|522576|522577|522578|522579|522580|522581|522582|522583|522585|522588|522589|522593|522596|522597|522599|522601|522610|522613|522616|522623|522625|522631|522643|522647|522648|522650|522654|522657|522668|522671|522674|522676|522681|522682|522703|522704|522707|522711|522861|522862|522866|522870|522871|522876|522877|522881|522883|522888|522890|522893|522897|522901|522908|522913|522915|522917|522924|522926|522937|522939|522942|522945|522957|522959|522961|522964|522970|522971|522973|522974|522978|522981|522990|522993|522999|523001|523002|523014|523015|523017|523023|523026|523030|523031|523034|523036|523037|523040|527649|527873|527878|527880|529922|530002|540432|561284|561287|561288|561291|561293|561294|561298|561299|561303|561304|561309|561310|561313|561315|561316|561318|561325|561327|561330|561332|561334|561336|561341|561343|561344|561347|561350|561351|561357|561358|561362|561364|561369|561374|561375|561376|561377|561378|561381|561382|561388|561394|561408|561424|561431|561433|561435|561437|561438|561439|561445|561447|561448|561452|561456|561468|561469|561473|561474|561475|561476|561478|561479|561484|561486|561487|561488|561490|561492|561508|561511|561512|561515|561516|561518|561523|561524|561531|564018|564020|564022|564025|564026|564028|564031|564033|564035|564042|564043|564046|564047|564049|564051|564053|564058|564062|564064|564073|564075|564077|564080|564081|564107|564109|564110|564112|564117|564120|564121|564126|564128|564130|564132|565724|566048|566291|566394|566402|566410|566412|566415|566423|566424|566433|566436|566443|566444|566445|566446|566452|566453|566456|566457|566460|566462|566465|566466|566467|566468|566472|566478|566486|566491|566493|566494|568097|568099|572009|572010|572018|572019|572028|574034|574037|576933|576934|578453|585342|586604|588095|611672|611673|624343|624346|635627|635628|635629|635630|635631|635632|635633|635634|635635|635636|635637|635638|635639|635640|635641|635642|635643|635644|635645|635646|635647|635648|635649|635650|635651|635652|635653|635654|635655|635656|635657|635658|635659|635660|635661|635662|635663|635664|635665|635666|635667|635668|635669|635670|635671|635672|635673|635674|635675|635676|635677|635678|635679|635680|635681|635682|635683|635684|635685|635686|635687|635688|635689|635690|635691|635692|635693|635694|635695|635696|635697|635698|635699|635700|635701|635702|635703|635704|635705|635706|635707|635708|635709|635710|635711|635712|635713|635714|635715|635716|635717|635718|635719|635720|635721|635722|635723|635724|635725|635726|635727|635728|635729|635730|635731|635732|635733|635734|635735|635736|635737|635738|635739|635740|635741|635742|635743|635744|635745|635746|635747|635748|635749|635750|635751|635752|635753|635754|635755|635756|635757|635758|635759|635760|635761|635762|635763|635764|635765|635766|635767|635768|635769|635770|635771|635772|635773|635774|635775|635776|635777|635778|635779|635787|635788|635789|635790|635791|641381|641382|641383|641384|641385|644601|644602|644603|644604|651575|651581|651660|651667|651755|651766|653259|655774|655776|682327|688567|689855|692132|692133|692134|692135|692136|692137|692138|692141|692142|692143|692144|692146|692147|692148|692149|692150|692151|692152|692154|692156|692160|693281|693282|695348|695349|695350|699820|699821|699822|699824|699825|699826|699827|699829|699830|699831|699832|699833|699834|699837|699838|699840|710761|710762|710763|710800|722301|722304|722305|722306|722308|735944|735948|735949|735950|735951|744303|744308|750400|750403|750404|750407|750408|750409|750410|750411|750413|750415|753595|759624|759633|759735|759742|766055|766056|766058|766069|766072|766074|766077|766078|766079|766084|766085|766087|766090|766096|766097|766098|766104|766124|775135|775294|775327|775343|777626|777677|777824|777828|777829|779304|782772|782775|782777|782780|782784|782785|782788|782790|787498|795960|795962|795966|819822|819823|819824|819825|819826|832981|832982|832983|832984|832985|832986|832987|832988|832989|832990|832991|832992|832993|832994|832995|832996|832997|832998|832999|833000|833001|833002|833003|833004|833005|833006|833007|833008|833009|833010|833011|833012|833013|833014|833015|833016|833017|833018|833019|833020|833021|833022|833023|833024|833025|833026|833027|833028|833029|833030|833031|833032|833033|833034|833035|833036|833037|833038|833039|833040|833041|833042|833043|833044|833045|833046|833047|833048|833049|833050|833051|833052|833053|833054|833055|833056|833057|833058|833059|833060|833061|833062|833063|833064|833065|833066|833067|833068|833069|833070|833071|833072|833073|833074|833075|833076|833077|833078|833079|833080|833081|833082|833083|833084|833085|833086|833087|833088|833089|833090|833091|833092|833093|833094|833095|833096|833097|833098|833099|833100|833101|833102|833103|833104|833105|833106|833107|833108|833109|833110|833111|833112|833113|833114|833115|833116|833117|833118|833119|833120|833121|833122|833123|833124|833125|833126|833127|833128|833129|833149|833150|833151|833152|833153|840255|840256|840257|840258|840259|843758|843759|851134|851136|851138|851140|851626|851628|851630|852058|852060|852062|852064|852337|852338|924654|924655|924656|924657|924658|924659|924660|924661|924662|924663|924664|924665|924666|924667|924668|924669|924670|924671|924672|924673|924674|924675|924676|924677|924678|924679|924680|924681|924682|924683|924684|924685|924686|924687|924688|924689|924690|924691|924692|924693|924694|924695|924696|924697|924698|924699|924700|924706|926729|926730|933640|933641|933642|933643|933644|933645|933646|933647|933648|933649|933650|933651|933652|933653|933654|933655|933656|933657|933658|933659|933660|933661|933662|933663|933664|933665|933666|933667|933668|933669|933670|933671|933672|933673|933674|933675|933676|933677|933678|933679|933680|933681|933682|933683|933684|933685|933686|933694|936255|936256|936257|940062|940063|940064|940065|940870|945378|945379|945380|945381|945382|945383|945384|945385|945386|945387|945388|945389|945390|945391|945392|945393|945394|945395|945396|945397|945398|945399|945400|945401|945402|945403|945404|945405|945406|945407|945408|945409|945410|945411|945412|945413|945414|945415|945416|945417|945418|945419|945420|945421|945422|945423|945424|945440|945441|948151|948152|949370|955016|955017|955018|955019|955020|955021|955022|955023|955024|955025|955026|955027|955028|955029|955030|955031|955032|955033|955034|955035|955036|955037|955038|955039|955040|955041|955042|955043|955044|955045|955046|955047|955048|955049|955050|955062|956933|956934|957734|959832|959833|959834|959835|960624|960625|960626|960627", + "upstreamId": "33353|44291|45110|45111|45112|45290|45545|51710|51741|51883|51927|51986|51989|51991|51999|52023|52033|52034|52038|52039|52043|52066|52101|52108|52111|52114|52115|52119|52126|52127|52147|52150|52153|52165|52177|52197|52202|52207|52208|52226|52242|52254|52262|52286|52782|52786|52790|52801|52810|52820|52821|52826|52838|53047|53048|53049|53138|53146|53339|53341|53344|53345|53349|53440|53666|53952|54552|54696|54796|55954|56003|56066|56099|56160|56406|56684|56784|56790|56956|57463|77677|81479|102168|134525|134528|134529|134531|134532|134533|134538|134539|134541|134544|134546|134547|142083|142091|142094|142741|173313|173487|173790|173931|174345|174800|175036|175328|175563|176016|176016|176526|178124|178128|178523|178927|178930|179395|179466|179471|179598|179712|186460|186481|189951|190794|190795|191009|191201|191360|191361|192306|192637|192744|192901|192902|193110|193176|193328|193778|193935|194049|194161|194190|194225|194622|194623|194663|194724|198236|198340|198348|198349|198791|198838|199000|199203|199524|207465|224269|224471|228646|229551|229553|229555|229556|229557|229558|229559|229560|229942|230864|240840|247538|252582|252585|252587|252591|252592|252593|252595|252596|252598|252599|252602|252605|254932|260441|266992|269526|269543|269666|270578|271452|271589|272236|273311|274147|274245|274249|274474|274633|275110|275294|275305|276601|276610|277430|277433|277434|277445|277447|277456|278453|278454|278568|279740|280068|280071|281045|281230|281382|281553|281853|281856|283203|283251|283295|283301|283302|283303|283427|283925|283957|284034|284037|284061|284064|284793|285684|285724|285913|285986|286010|286102|286159|286333|290242|290243|290244|290254|290271|290276|291029|291030|291039|291040|291049|291066|291078|291087|291088|291095|294310|294320|294337|294342|294384|294386|294391|294399|294413|294701|294707|294717|294718|294722|294738|296581|296619|298461|298480|298481|298832|299138|301280|301294|301302|302530|302543|302582|302607|302820|302831|302903|302906|302909|305890|306130|306147|309484|309488|309496|311022|311031|311038|311448|311449|313530|313531|314279|314281|314284|314287|314289|314290|314358|314360|314364|316355|316365|316673|316678|317037|317040|317041|317233|319738|319747|320233|320355|320364|320370|320374|320376|320377|320379|320380|320397|320409|320886|320887|320892|320893|321108|321109|322278|322281|322290|322292|322305|322315|322319|322320|322321|322440|322456|322458|322460|322469|323071|323073|323261|323262|323578|323593|323602|323616|323849|323862|323864|323866|323868|324153|325103|325110|325907|326925|326939|326941|326942|326951|327968|327969|327974|327975|328966|328973|328975|328980|328987|328990|328992|328994|329003|330167|330174|330235|330237|330257|330288|331159|331163|331173|331210|331578|331581|331583|331587|331597|331610|331619|331628|331630|331646|332639|333209|334762|335616|335619|335627|335628|335631|335634|335648|335649|337435|337457|337463|337467|337484|337486|338527|338558|338581|338582|338583|338588|338608|338610|338614|338623|338733|339585|340274|340279|340282|340299|340308|340311|340314|340316|340327|340328|340329|340336|340337|340978|341241|341419|341423|341449|341457|341476|341494|341496|346920|346921|346938|346947|346950|346952|346965|348190|348208|348211|348227|348229|348231|353062|353095|353178|353295|353305|353322|353560|361442|361510|361643|361646|368889|368901|368907|368913|368914|368920|368921|369193|369195|369203|369209|369217|369450|369457|369461|369474|369475|369476|369478|369479|369493|370763|370766|370768|370770|370774|370776|370783|370786|370790|370798|370810|406963|406964|406965|406966|406967|406968|406969|406970|406971|406972|406973|406974|406976|406981|413759|413761|419002|421617|425723|425724|425726|425727|425728|425730|428675|434759|439242|441034|441035|444055|444056|444058|444060|444061|444062|456218|456220|456223|456224|456234|456236|456242|456244|456249|456251|456253|456256|456257|456261|456262|456266|456270|456272|456279|456280|456286|456287|456289|456290|456291|456293|456295|456297|456303|456304|456306|456310|456320|456321|456327|456328|456330|456339|456343|456347|456349|456350|456356|456360|456362|456371|456377|456378|456381|456385|456390|456391|456395|456456|456483|456486|456488|456495|456502|456506|456510|456528|456536|456545|456547|456549|456551|456553|456554|456556|456565|456567|456569|456570|456575|456578|456588|456600|456604|456606|456607|456608|456610|456614|456616|456618|456620|456621|456622|456630|456631|456633|456637|456640|456643|456644|456646|456652|456655|456656|456658|456659|456664|456666|456674|456676|456678|456680|456682|456686|456690|456692|456694|456718|456722|456759|456766|456775|456776|456779|456780|456782|456785|456788|456791|456793|456795|456796|456797|456800|456809|456812|456813|456814|456818|456819|456821|456823|456832|456842|456844|456847|456849|456850|456851|456857|456869|456871|456872|456875|456882|456895|456898|456899|456905|456911|456917|456924|456928|456930|456932|456937|456939|456941|456942|456943|456945|456947|456953|456965|456972|456984|456986|456988|457159|457161|457162|457183|457185|457189|457191|457194|457196|457198|457199|457205|457211|457212|457215|457217|457224|457226|457233|457237|457239|457241|457246|457250|457252|457259|457261|457264|457267|457268|457271|457278|457279|457283|457284|457288|457289|457291|457297|457308|457311|457313|457317|457319|457321|457322|457327|457331|457333|457341|457352|457353|457355|457357|457361|457367|457368|457369|457374|457376|457378|457380|457383|457386|457389|457394|457400|457404|457407|457409|457412|457436|462462|462464|462704|462705|462706|462708|462717|463194|463203|463205|463208|463327|463331|465647|465649|466630|466632|480694|486428|492692|496884|501557|501570|501809|501857|501881|501908|501922|501935|502196|522156|522161|522165|522167|522171|522175|522177|522183|522191|522194|522203|522204|522206|522208|522214|522219|522222|522230|522234|522241|522244|522246|522250|522252|522254|522256|522260|522262|522265|522266|522269|522271|522274|522275|522281|522294|522308|522309|522311|522394|522401|522402|522405|522409|522420|522421|522424|522427|522429|522432|522436|522441|522443|522444|522452|522461|522462|522465|522470|522473|522483|522484|522485|522486|522488|522494|522495|522500|522503|522504|522505|522509|522510|522511|522513|522514|522516|522517|522520|522521|522522|522524|522526|522527|522529|522531|522532|522538|522541|522544|522546|522547|522551|522553|522556|522557|522558|522560|522565|522570|522575|522576|522577|522578|522579|522580|522581|522582|522583|522585|522588|522589|522593|522596|522597|522599|522601|522610|522613|522616|522623|522625|522631|522643|522647|522648|522650|522654|522657|522668|522671|522674|522676|522681|522682|522703|522704|522707|522711|522861|522862|522866|522870|522871|522876|522877|522881|522883|522888|522890|522893|522897|522901|522908|522913|522915|522917|522924|522926|522937|522939|522942|522945|522957|522959|522961|522964|522970|522971|522973|522974|522978|522981|522990|522993|522999|523001|523002|523014|523015|523017|523023|523026|523030|523031|523034|523036|523037|523040|527649|527873|527878|527880|529922|530002|540432|561284|561287|561288|561291|561293|561294|561298|561299|561303|561304|561309|561310|561313|561315|561316|561318|561325|561327|561330|561332|561334|561336|561341|561343|561344|561347|561350|561351|561357|561358|561362|561364|561369|561374|561375|561376|561377|561378|561381|561382|561388|561394|561408|561424|561431|561433|561435|561437|561438|561439|561445|561447|561448|561452|561456|561468|561469|561473|561474|561475|561476|561478|561479|561484|561486|561487|561488|561490|561492|561508|561511|561512|561515|561516|561518|561523|561524|561531|564018|564020|564022|564025|564026|564028|564031|564033|564035|564042|564043|564046|564047|564049|564051|564053|564058|564062|564064|564073|564075|564077|564080|564081|564107|564109|564110|564112|564117|564120|564121|564126|564128|564130|564132|565724|566048|566291|566394|566402|566410|566412|566415|566423|566424|566433|566436|566443|566444|566445|566446|566452|566453|566456|566457|566460|566462|566465|566466|566467|566468|566472|566478|566486|566491|566493|566494|568097|568099|572009|572010|572018|572019|572028|574034|574037|576933|576934|578453|585342|586604|588095|611672|611673|624343|624346|635627|635628|635629|635630|635631|635632|635633|635634|635635|635636|635637|635638|635639|635640|635641|635642|635643|635644|635645|635646|635647|635648|635649|635650|635651|635652|635653|635654|635655|635656|635657|635658|635659|635660|635661|635662|635663|635664|635665|635666|635667|635668|635669|635670|635671|635672|635673|635674|635675|635676|635677|635678|635679|635680|635681|635682|635683|635684|635685|635686|635687|635688|635689|635690|635691|635692|635693|635694|635695|635696|635697|635698|635699|635700|635701|635702|635703|635704|635705|635706|635707|635708|635709|635710|635711|635712|635713|635714|635715|635716|635717|635718|635719|635720|635721|635722|635723|635724|635725|635726|635727|635728|635729|635730|635731|635732|635733|635734|635735|635736|635737|635738|635739|635740|635741|635742|635743|635744|635745|635746|635747|635748|635749|635750|635751|635752|635753|635754|635755|635756|635757|635758|635759|635760|635761|635762|635763|635764|635765|635766|635767|635768|635769|635770|635771|635772|635773|635774|635775|635776|635777|635778|635779|635787|635788|635789|635790|635791|641381|641382|641383|641384|641385|644601|644602|644603|644604|651575|651581|651660|651667|651755|651766|653259|655774|655776|682327|688567|689855|692132|692133|692134|692135|692136|692137|692138|692141|692142|692143|692144|692146|692147|692148|692149|692150|692151|692152|692154|692156|692160|693281|693282|695348|695349|695350|699820|699821|699822|699824|699825|699826|699827|699829|699830|699831|699832|699833|699834|699837|699838|699840|710761|710762|710763|710800|722301|722304|722305|722306|722308|735944|735948|735949|735950|735951|744303|744308|750400|750403|750404|750407|750408|750409|750410|750411|750413|750415|753595|759624|759633|759735|759742|766055|766056|766058|766069|766072|766074|766077|766078|766079|766084|766085|766087|766090|766096|766097|766098|766104|766124|775135|775294|775327|775343|777626|777677|777824|777828|777829|779304|782772|782775|782777|782780|782784|782785|782788|782790|787498|795960|795962|795966|819822|819823|819824|819825|819826|832981|832982|832983|832984|832985|832986|832987|832988|832989|832990|832991|832992|832993|832994|832995|832996|832997|832998|832999|833000|833001|833002|833003|833004|833005|833006|833007|833008|833009|833010|833011|833012|833013|833014|833015|833016|833017|833018|833019|833020|833021|833022|833023|833024|833025|833026|833027|833028|833029|833030|833031|833032|833033|833034|833035|833036|833037|833038|833039|833040|833041|833042|833043|833044|833045|833046|833047|833048|833049|833050|833051|833052|833053|833054|833055|833056|833057|833058|833059|833060|833061|833062|833063|833064|833065|833066|833067|833068|833069|833070|833071|833072|833073|833074|833075|833076|833077|833078|833079|833080|833081|833082|833083|833084|833085|833086|833087|833088|833089|833090|833091|833092|833093|833094|833095|833096|833097|833098|833099|833100|833101|833102|833103|833104|833105|833106|833107|833108|833109|833110|833111|833112|833113|833114|833115|833116|833117|833118|833119|833120|833121|833122|833123|833124|833125|833126|833127|833128|833129|833149|833150|833151|833152|833153|840255|840256|840257|840258|840259|843758|843759|851134|851136|851138|851140|851626|851628|851630|852058|852060|852062|852064|852337|852338|924654|924655|924656|924657|924658|924659|924660|924661|924662|924663|924664|924665|924666|924667|924668|924669|924670|924671|924672|924673|924674|924675|924676|924677|924678|924679|924680|924681|924682|924683|924684|924685|924686|924687|924688|924689|924690|924691|924692|924693|924694|924695|924696|924697|924698|924699|924700|924706|926729|926730|933640|933641|933642|933643|933644|933645|933646|933647|933648|933649|933650|933651|933652|933653|933654|933655|933656|933657|933658|933659|933660|933661|933662|933663|933664|933665|933666|933667|933668|933669|933670|933671|933672|933673|933674|933675|933676|933677|933678|933679|933680|933681|933682|933683|933684|933685|933686|933694|936255|936256|936257|940062|940063|940064|940065|940870|945378|945379|945380|945381|945382|945383|945384|945385|945386|945387|945388|945389|945390|945391|945392|945393|945394|945395|945396|945397|945398|945399|945400|945401|945402|945403|945404|945405|945406|945407|945408|945409|945410|945411|945412|945413|945414|945415|945416|945417|945418|945419|945420|945421|945422|945423|945424|945440|945441|948151|948152|949370|955016|955017|955018|955019|955020|955021|955022|955023|955024|955025|955026|955027|955028|955029|955030|955031|955032|955033|955034|955035|955036|955037|955038|955039|955040|955041|955042|955043|955044|955045|955046|955047|955048|955049|955050|955062|956933|956934|957734|959832|959833|959834|959835|960624|960625|960626|960627", "text": "Dilated Cardiomyopathy, Dominant" }, { - "baseId": "33353|81479|134525|134528|134529|134531|134532|134533|134538|134539|134541|134544|134546|134547|190794|190795|191009|191201|191360|191361|192306|192637|192744|192901|192902|193110|193176|193328|193778|193935|194049|194161|194190|194225|194622|194623|194663|194663|194724|207465|229551|229553|247535|247536|247537|247538|252582|252585|252587|252591|252592|252593|252595|252596|252598|252599|252602|252605|252605|260441|266992|269526|269543|269666|270578|271452|271589|272236|273311|274147|274245|274249|274474|274633|275110|275294|275305|361442|361510|361643|361646|368889|368901|368907|368913|368914|368920|368921|369193|369195|369203|369209|369217|369450|369457|369461|369474|369475|369476|369478|369478|369479|369493|370763|370766|370768|370770|370774|370776|370783|370786|370790|370798|370810|406963|406963|406964|406965|406966|406967|406968|406969|406970|406971|406972|406973|406974|406976|413759|413761|419002|419002|419002|421617|424271|425723|425724|425726|425727|425728|425728|425730|428675|432202|434759|434759|439242|441034|441035|444055|444056|444058|444060|444061|444062|456218|456220|456223|456224|456234|456236|456242|456249|456251|456253|456256|456257|456261|456262|456266|456270|456272|456279|456280|456286|456287|456289|456290|456291|456293|456295|456297|456303|456303|456304|456306|456310|456320|456321|456327|456328|456330|456339|456343|456347|456349|456350|456356|456360|456362|456371|456377|456378|456381|456385|456390|456391|456395|456456|456483|456486|456488|456495|456502|456506|456510|456528|456536|456545|456547|456549|456551|456553|456554|456556|456565|456567|456569|456570|456575|456578|456588|456600|456604|456607|456608|456610|456614|456616|456618|456620|456621|456622|456630|456631|456633|456637|456640|456643|456644|456646|456652|456655|456656|456658|456659|456664|456666|456674|456676|456678|456680|456682|456686|456690|456692|456694|456759|456766|456776|456779|456780|456785|456788|456791|456793|456795|456796|456797|456800|456809|456812|456813|456814|456818|456819|456821|456823|456832|456832|456842|456844|456847|456849|456850|456851|456857|456869|456871|456872|456875|456875|456882|456895|456898|456899|456905|456911|456917|456924|456928|456930|456932|456937|456939|456941|456942|456943|456945|456947|456953|456965|456972|457159|457161|457162|457183|457185|457189|457191|457194|457196|457198|457199|457205|457211|457212|457215|457217|457224|457226|457233|457237|457239|457241|457246|457250|457252|457259|457261|457264|457267|457268|457271|457278|457279|457283|457284|457288|457289|457291|457297|457308|457311|457313|457317|457319|457321|457322|457327|457331|457333|457341|457352|457353|457355|457357|457361|457367|457368|457369|457374|457376|457378|457380|457383|457386|457389|457394|457400|457404|457407|457409|457412|480694|481130|486428|492692|496884|501557|501570|501809|501881|501908|501922|501935|502196|522156|522161|522165|522167|522171|522175|522177|522183|522191|522194|522203|522204|522206|522208|522214|522219|522222|522230|522234|522241|522244|522246|522250|522252|522254|522256|522260|522262|522265|522266|522269|522271|522274|522275|522281|522294|522308|522309|522311|522394|522401|522402|522405|522409|522420|522421|522424|522427|522429|522432|522436|522441|522443|522444|522452|522461|522462|522465|522470|522473|522483|522484|522485|522486|522488|522494|522495|522500|522503|522504|522505|522509|522510|522511|522513|522514|522516|522517|522520|522521|522522|522524|522526|522527|522529|522531|522532|522538|522541|522544|522546|522547|522551|522553|522556|522557|522558|522560|522565|522570|522575|522576|522577|522578|522579|522580|522581|522582|522583|522585|522585|522588|522589|522593|522596|522597|522599|522601|522610|522613|522616|522623|522625|522631|522643|522647|522648|522650|522654|522657|522668|522671|522674|522676|522681|522682|522703|522704|522707|522711|522861|522862|522866|522870|522871|522876|522877|522881|522883|522888|522890|522893|522897|522901|522908|522913|522915|522917|522924|522926|522937|522939|522942|522945|522957|522959|522961|522964|522970|522971|522973|522974|522978|522981|522990|522993|522999|523001|523002|523014|523015|523017|523023|523026|523030|523031|523034|523036|523037|523040|540432|561284|561287|561288|561291|561293|561294|561298|561299|561303|561304|561309|561310|561313|561315|561316|561318|561325|561327|561330|561332|561334|561336|561341|561343|561344|561347|561350|561351|561357|561358|561362|561364|561369|561374|561375|561376|561377|561378|561378|561382|561388|561394|561408|561424|561431|561433|561435|561437|561438|561439|561445|561447|561448|561452|561456|561468|561469|561473|561474|561475|561476|561478|561479|561484|561484|561486|561487|561488|561490|561492|561508|561511|561512|561515|561516|561518|561523|561524|561531|564018|564020|564022|564025|564026|564028|564031|564033|564035|564042|564043|564046|564047|564049|564051|564053|564058|564062|564064|564073|564075|564077|564080|564081|564107|564109|564110|564112|564117|564120|564121|564126|564128|564130|566048|566394|566402|566410|566412|566415|566423|566424|566433|566436|566443|566444|566445|566446|566452|566453|566456|566456|566457|566460|566462|566465|566466|566467|566468|566472|566478|566486|566491|566493|566494|576933|576934|578453|585342|586604|588095|611672|611673|623588|624343|624346|635627|635628|635629|635630|635631|635632|635633|635634|635635|635636|635637|635638|635639|635640|635641|635642|635643|635644|635645|635646|635647|635648|635649|635650|635651|635652|635653|635654|635655|635656|635657|635658|635659|635660|635661|635662|635663|635664|635665|635666|635667|635668|635669|635670|635671|635672|635673|635674|635675|635676|635677|635678|635679|635680|635681|635682|635683|635684|635685|635686|635687|635688|635689|635690|635691|635692|635693|635694|635695|635696|635697|635698|635699|635700|635701|635702|635703|635704|635705|635706|635707|635708|635709|635710|635711|635712|635713|635714|635715|635716|635717|635718|635719|635720|635721|635722|635723|635724|635725|635726|635727|635728|635729|635730|635731|635732|635733|635734|635735|635736|635737|635738|635739|635740|635741|635742|635743|635744|635745|635746|635747|635748|635749|635750|635751|635752|635753|635754|635755|635756|635757|635758|635759|635760|635761|635762|635763|635764|635765|635766|635767|635768|635769|635770|635771|635772|635773|635774|635775|635776|635777|635778|635779|651575|651581|651660|651667|651755|651766|655774|655776|682327|689855|692132|692133|692134|692135|692136|692137|692138|692141|692142|692143|692144|692146|692147|692148|692149|692150|692151|692152|692154|692156|695348|695349|695350|699820|699821|699822|699824|699825|699826|699827|699829|699830|699831|699832|699833|699834|699837|699838|699840|710761|710762|710763|722301|722304|722305|722306|722306|722308|735944|735948|735949|735950|735951|744303|744308|750400|750403|750404|750407|750408|750409|750410|750411|750413|750415|759624|759633|759735|759742|766055|766056|766058|766069|766072|766074|766077|766078|766079|766084|766085|766087|766090|766096|766097|766098|766104|775135|775294|775327|775343|777626|777677|777824|777828|777829|779304|782772|782775|782777|782780|782784|782785|782788|782790|787498|795960|795962|795966|802163|819822|819823|819824|819825|819826|832981|832982|832983|832984|832985|832986|832987|832988|832989|832990|832991|832992|832993|832994|832995|832996|832997|832998|832999|833000|833001|833002|833003|833004|833005|833006|833007|833008|833009|833010|833011|833012|833013|833014|833015|833016|833017|833018|833019|833020|833021|833022|833023|833024|833025|833026|833027|833028|833029|833030|833031|833032|833033|833034|833035|833036|833037|833038|833039|833040|833041|833042|833043|833044|833045|833046|833047|833048|833049|833050|833051|833052|833053|833054|833055|833056|833057|833058|833059|833060|833061|833062|833063|833064|833065|833066|833067|833068|833069|833070|833071|833072|833073|833074|833075|833076|833077|833078|833079|833080|833081|833082|833083|833084|833085|833086|833087|833088|833089|833090|833091|833092|833093|833094|833095|833096|833097|833098|833099|833100|833101|833102|833103|833104|833105|833106|833107|833108|833109|833110|833111|833112|833113|833114|833115|833116|833117|833118|833119|833120|833121|833122|833123|833124|833125|833126|833127|833128|833129|851134|851136|851138|851140|851626|851628|851630|852058|852060|852062|852064|852337|852338|919075|919076|919078|919079|919080|919081|920235|920236|924654|924655|924656|924657|924658|924659|924660|924661|924662|924663|924664|924665|924666|924667|924668|924669|924670|924671|924672|924673|924674|924675|924676|924677|924678|924679|924680|924681|924682|924683|924684|924685|924686|924687|924688|924689|924690|924691|924692|924693|924694|924695|924696|924697|924698|924699|924700|933640|933641|933642|933643|933644|933645|933646|933647|933648|933649|933650|933651|933652|933653|933654|933655|933656|933657|933658|933659|933660|933661|933662|933663|933664|933665|933666|933667|933668|933669|933670|933671|933672|933673|933674|933675|933676|933677|933678|933679|933680|933681|933682|933683|933684|933685|933686|940062|940063|940064|940065|940870|945378|945379|945380|945381|945382|945383|945384|945385|945386|945387|945388|945389|945390|945391|945392|945393|945394|945395|945396|945397|945398|945399|945400|945401|945402|945403|945404|945405|945406|945407|945408|945409|945410|945411|945412|945413|945414|945415|945416|945417|945418|945419|945420|945421|945422|945423|945424|955016|955017|955018|955019|955020|955021|955022|955023|955024|955025|955026|955027|955028|955029|955030|955031|955032|955033|955034|955035|955036|955037|955038|955039|955040|955041|955042|955043|955044|955045|955046|955047|955048|955049|955050|959832|959833|959834|959835|960624|960625|960626|960627|970843", + "upstreamId": "33353|81479|134525|134528|134529|134531|134532|134533|134538|134539|134541|134544|134546|134547|190794|190795|191009|191201|191360|191361|192306|192637|192744|192901|192902|193110|193176|193328|193778|193935|194049|194161|194190|194225|194622|194623|194663|194663|194724|207465|229551|229553|247535|247536|247537|247538|252582|252585|252587|252591|252592|252593|252595|252596|252598|252599|252602|252605|252605|260441|266992|269526|269543|269666|270578|271452|271589|272236|273311|274147|274245|274249|274474|274633|275110|275294|275305|361442|361510|361643|361646|368889|368901|368907|368913|368914|368920|368921|369193|369195|369203|369209|369217|369450|369457|369461|369474|369475|369476|369478|369478|369479|369493|370763|370766|370768|370770|370774|370776|370783|370786|370790|370798|370810|406963|406963|406964|406965|406966|406967|406968|406969|406970|406971|406972|406973|406974|406976|413759|413761|419002|419002|419002|421617|424271|425723|425724|425726|425727|425728|425728|425730|428675|432202|434759|434759|439242|441034|441035|444055|444056|444058|444060|444061|444062|456218|456220|456223|456224|456234|456236|456242|456249|456251|456253|456256|456257|456261|456262|456266|456270|456272|456279|456280|456286|456287|456289|456290|456291|456293|456295|456297|456303|456303|456304|456306|456310|456320|456321|456327|456328|456330|456339|456343|456347|456349|456350|456356|456360|456362|456371|456377|456378|456381|456385|456390|456391|456395|456456|456483|456486|456488|456495|456502|456506|456510|456528|456536|456545|456547|456549|456551|456553|456554|456556|456565|456567|456569|456570|456575|456578|456588|456600|456604|456607|456608|456610|456614|456616|456618|456620|456621|456622|456630|456631|456633|456637|456640|456643|456644|456646|456652|456655|456656|456658|456659|456664|456666|456674|456676|456678|456680|456682|456686|456690|456692|456694|456759|456766|456776|456779|456780|456785|456788|456791|456793|456795|456796|456797|456800|456809|456812|456813|456814|456818|456819|456821|456823|456832|456832|456842|456844|456847|456849|456850|456851|456857|456869|456871|456872|456875|456875|456882|456895|456898|456899|456905|456911|456917|456924|456928|456930|456932|456937|456939|456941|456942|456943|456945|456947|456953|456965|456972|457159|457161|457162|457183|457185|457189|457191|457194|457196|457198|457199|457205|457211|457212|457215|457217|457224|457226|457233|457237|457239|457241|457246|457250|457252|457259|457261|457264|457267|457268|457271|457278|457279|457283|457284|457288|457289|457291|457297|457308|457311|457313|457317|457319|457321|457322|457327|457331|457333|457341|457352|457353|457355|457357|457361|457367|457368|457369|457374|457376|457378|457380|457383|457386|457389|457394|457400|457404|457407|457409|457412|480694|481130|486428|492692|496884|501557|501570|501809|501881|501908|501922|501935|502196|522156|522161|522165|522167|522171|522175|522177|522183|522191|522194|522203|522204|522206|522208|522214|522219|522222|522230|522234|522241|522244|522246|522250|522252|522254|522256|522260|522262|522265|522266|522269|522271|522274|522275|522281|522294|522308|522309|522311|522394|522401|522402|522405|522409|522420|522421|522424|522427|522429|522432|522436|522441|522443|522444|522452|522461|522462|522465|522470|522473|522483|522484|522485|522486|522488|522494|522495|522500|522503|522504|522505|522509|522510|522511|522513|522514|522516|522517|522520|522521|522522|522524|522526|522527|522529|522531|522532|522538|522541|522544|522546|522547|522551|522553|522556|522557|522558|522560|522565|522570|522575|522576|522577|522578|522579|522580|522581|522582|522583|522585|522585|522588|522589|522593|522596|522597|522599|522601|522610|522613|522616|522623|522625|522631|522643|522647|522648|522650|522654|522657|522668|522671|522674|522676|522681|522682|522703|522704|522707|522711|522861|522862|522866|522870|522871|522876|522877|522881|522883|522888|522890|522893|522897|522901|522908|522913|522915|522917|522924|522926|522937|522939|522942|522945|522957|522959|522961|522964|522970|522971|522973|522974|522978|522981|522990|522993|522999|523001|523002|523014|523015|523017|523023|523026|523030|523031|523034|523036|523037|523040|540432|561284|561287|561288|561291|561293|561294|561298|561299|561303|561304|561309|561310|561313|561315|561316|561318|561325|561327|561330|561332|561334|561336|561341|561343|561344|561347|561350|561351|561357|561358|561362|561364|561369|561374|561375|561376|561377|561378|561378|561382|561388|561394|561408|561424|561431|561433|561435|561437|561438|561439|561445|561447|561448|561452|561456|561468|561469|561473|561474|561475|561476|561478|561479|561484|561484|561486|561487|561488|561490|561492|561508|561511|561512|561515|561516|561518|561523|561524|561531|564018|564020|564022|564025|564026|564028|564031|564033|564035|564042|564043|564046|564047|564049|564051|564053|564058|564062|564064|564073|564075|564077|564080|564081|564107|564109|564110|564112|564117|564120|564121|564126|564128|564130|566048|566394|566402|566410|566412|566415|566423|566424|566433|566436|566443|566444|566445|566446|566452|566453|566456|566456|566457|566460|566462|566465|566466|566467|566468|566472|566478|566486|566491|566493|566494|576933|576934|578453|585342|586604|588095|611672|611673|623588|624343|624346|635627|635628|635629|635630|635631|635632|635633|635634|635635|635636|635637|635638|635639|635640|635641|635642|635643|635644|635645|635646|635647|635648|635649|635650|635651|635652|635653|635654|635655|635656|635657|635658|635659|635660|635661|635662|635663|635664|635665|635666|635667|635668|635669|635670|635671|635672|635673|635674|635675|635676|635677|635678|635679|635680|635681|635682|635683|635684|635685|635686|635687|635688|635689|635690|635691|635692|635693|635694|635695|635696|635697|635698|635699|635700|635701|635702|635703|635704|635705|635706|635707|635708|635709|635710|635711|635712|635713|635714|635715|635716|635717|635718|635719|635720|635721|635722|635723|635724|635725|635726|635727|635728|635729|635730|635731|635732|635733|635734|635735|635736|635737|635738|635739|635740|635741|635742|635743|635744|635745|635746|635747|635748|635749|635750|635751|635752|635753|635754|635755|635756|635757|635758|635759|635760|635761|635762|635763|635764|635765|635766|635767|635768|635769|635770|635771|635772|635773|635774|635775|635776|635777|635778|635779|651575|651581|651660|651667|651755|651766|655774|655776|682327|689855|692132|692133|692134|692135|692136|692137|692138|692141|692142|692143|692144|692146|692147|692148|692149|692150|692151|692152|692154|692156|695348|695349|695350|699820|699821|699822|699824|699825|699826|699827|699829|699830|699831|699832|699833|699834|699837|699838|699840|710761|710762|710763|722301|722304|722305|722306|722306|722308|735944|735948|735949|735950|735951|744303|744308|750400|750403|750404|750407|750408|750409|750410|750411|750413|750415|759624|759633|759735|759742|766055|766056|766058|766069|766072|766074|766077|766078|766079|766084|766085|766087|766090|766096|766097|766098|766104|775135|775294|775327|775343|777626|777677|777824|777828|777829|779304|782772|782775|782777|782780|782784|782785|782788|782790|787498|795960|795962|795966|802163|819822|819823|819824|819825|819826|832981|832982|832983|832984|832985|832986|832987|832988|832989|832990|832991|832992|832993|832994|832995|832996|832997|832998|832999|833000|833001|833002|833003|833004|833005|833006|833007|833008|833009|833010|833011|833012|833013|833014|833015|833016|833017|833018|833019|833020|833021|833022|833023|833024|833025|833026|833027|833028|833029|833030|833031|833032|833033|833034|833035|833036|833037|833038|833039|833040|833041|833042|833043|833044|833045|833046|833047|833048|833049|833050|833051|833052|833053|833054|833055|833056|833057|833058|833059|833060|833061|833062|833063|833064|833065|833066|833067|833068|833069|833070|833071|833072|833073|833074|833075|833076|833077|833078|833079|833080|833081|833082|833083|833084|833085|833086|833087|833088|833089|833090|833091|833092|833093|833094|833095|833096|833097|833098|833099|833100|833101|833102|833103|833104|833105|833106|833107|833108|833109|833110|833111|833112|833113|833114|833115|833116|833117|833118|833119|833120|833121|833122|833123|833124|833125|833126|833127|833128|833129|851134|851136|851138|851140|851626|851628|851630|852058|852060|852062|852064|852337|852338|919075|919076|919078|919079|919080|919081|920235|920236|924654|924655|924656|924657|924658|924659|924660|924661|924662|924663|924664|924665|924666|924667|924668|924669|924670|924671|924672|924673|924674|924675|924676|924677|924678|924679|924680|924681|924682|924683|924684|924685|924686|924687|924688|924689|924690|924691|924692|924693|924694|924695|924696|924697|924698|924699|924700|933640|933641|933642|933643|933644|933645|933646|933647|933648|933649|933650|933651|933652|933653|933654|933655|933656|933657|933658|933659|933660|933661|933662|933663|933664|933665|933666|933667|933668|933669|933670|933671|933672|933673|933674|933675|933676|933677|933678|933679|933680|933681|933682|933683|933684|933685|933686|940062|940063|940064|940065|940870|945378|945379|945380|945381|945382|945383|945384|945385|945386|945387|945388|945389|945390|945391|945392|945393|945394|945395|945396|945397|945398|945399|945400|945401|945402|945403|945404|945405|945406|945407|945408|945409|945410|945411|945412|945413|945414|945415|945416|945417|945418|945419|945420|945421|945422|945423|945424|955016|955017|955018|955019|955020|955021|955022|955023|955024|955025|955026|955027|955028|955029|955030|955031|955032|955033|955034|955035|955036|955037|955038|955039|955040|955041|955042|955043|955044|955045|955046|955047|955048|955049|955050|959832|959833|959834|959835|960624|960625|960626|960627|970843", "text": "Cardiomyopathy, familial hypertrophic, 26" }, { - "baseId": "33354|33355|33356|33357|33358|33359|33360|33361|38544|53316|53317|133720|176739|176746|178232|178233|178277|178309|208421|231325|231329|231330|269772|272126|376793|376801|378844|378858|378864|378867|433340|467703|490935|492667|497861|497892|506476|506802|507230|532015|532090|532383|553005|553006|646969|694220|694221|694223|695783|704457|704458|704462|791845|798726|966363", + "upstreamId": "33354|33355|33356|33357|33358|33359|33360|33361|38544|53316|53317|133720|176739|176746|178232|178233|178277|178309|208421|231325|231329|231330|269772|272126|376793|376801|378844|378858|378864|378867|433340|467703|490935|492667|497861|497892|506476|506802|507230|532015|532090|532383|553005|553006|646969|694220|694221|694223|695783|704457|704458|704462|791845|798726|966363", "text": "Deafness, autosomal dominant 20" }, { - "baseId": "33362|33362|33363|33365|33368|33370|54338|54339|54342|54345|54346|54348|54353|54358|54359|54361|54361|65597|65597|65598|139983|139983|139984|175955|175958|176101|179718|179721|179723|179724|179729|179733|179735|179737|179741|179743|193567|214543|222416|242032|322265|322269|322277|322280|322282|322283|322294|322300|322301|322304|322310|322312|322312|331584|331588|331590|331592|331593|331602|331634|331640|331647|338516|338517|338520|338523|338524|338564|338580|338586|338595|338606|340276|340281|340298|340305|340306|340312|340332|340332|340333|376392|376394|400055|400228|400230|400236|400868|400869|400871|400877|464140|464140|464144|464146|464148|464149|464958|464959|464980|504726|505620|505620|511121|528723|528755|528764|528954|529101|529231|529233|529234|529247|529248|566975|566976|568705|615097|618240|643102|643103|643104|643105|643106|643107|643108|643109|643110|643111|653034|667999|684533|695637|820687|842232|842233|842234|842235|842236|842237|873259|873260|873261|873262|873263|873264|873265|873266|873267|873268|873269|873270|873271|873272|873273|873274|873275|873276|873277|873278|873279|873280|873281|873282|873283|873284|873285|873286|873287|873288|873289|873290|873291|916260|927298|927299|936898|948847|948848|948849|957395", + "upstreamId": "33362|33362|33363|33365|33368|33370|54338|54339|54342|54345|54346|54348|54353|54358|54359|54361|54361|65597|65597|65598|139983|139983|139984|175955|175958|176101|179718|179721|179723|179724|179729|179733|179735|179737|179741|179743|193567|214543|222416|242032|322265|322269|322277|322280|322282|322283|322294|322300|322301|322304|322310|322312|322312|331584|331588|331590|331592|331593|331602|331634|331640|331647|338516|338517|338520|338523|338524|338564|338580|338586|338595|338606|340276|340281|340298|340305|340306|340312|340332|340332|340333|376392|376394|400055|400228|400230|400236|400868|400869|400871|400877|464140|464140|464144|464146|464148|464149|464958|464959|464980|504726|505620|505620|511121|528723|528755|528764|528954|529101|529231|529233|529234|529247|529248|566975|566976|568705|615097|618240|643102|643103|643104|643105|643106|643107|643108|643109|643110|643111|653034|667999|684533|695637|820687|842232|842233|842234|842235|842236|842237|873259|873260|873261|873262|873263|873264|873265|873266|873267|873268|873269|873270|873271|873272|873273|873274|873275|873276|873277|873278|873279|873280|873281|873282|873283|873284|873285|873286|873287|873288|873289|873290|873291|916260|927298|927299|936898|948847|948848|948849|957395", "text": "Dilated cardiomyopathy 1R" }, { - "baseId": "33362|33365|33366|33367|33368|33370|54338|54339|54342|54345|54346|54348|54353|54358|54359|54361|65597|65598|139983|175955|175958|176101|179718|179721|179723|179724|179729|179733|179735|179737|179741|179743|193567|222416|242032|322312|340332|376392|376394|400055|400228|400230|400236|400868|400869|400871|400877|464140|464144|464146|464148|464149|464958|464959|464980|504726|505620|511121|528723|528755|528764|528954|529101|529231|529233|529234|529247|529248|566975|566976|568705|615097|618240|643102|643103|643104|643105|643106|643107|643108|643109|643110|643111|653034|667999|684533|695637|820687|842232|842233|842234|842235|842236|842237|916260|927298|927299|936898|948847|948848|948849|957395", + "upstreamId": "33362|33365|33366|33367|33368|33370|54338|54339|54342|54345|54346|54348|54353|54358|54359|54361|65597|65598|139983|175955|175958|176101|179718|179721|179723|179724|179729|179733|179735|179737|179741|179743|193567|222416|242032|322312|340332|376392|376394|400055|400228|400230|400236|400868|400869|400871|400877|464140|464144|464146|464148|464149|464958|464959|464980|504726|505620|511121|528723|528755|528764|528954|529101|529231|529233|529234|529247|529248|566975|566976|568705|615097|618240|643102|643103|643104|643105|643106|643107|643108|643109|643110|643111|653034|667999|684533|695637|820687|842232|842233|842234|842235|842236|842237|916260|927298|927299|936898|948847|948848|948849|957395", "text": "Atrial septal defect 5" }, { - "baseId": "33362|33364|33365|33365|33368|33368|33369|33370|33370|54338|54339|54342|54345|54346|54348|54353|54358|54359|54361|54361|65597|65597|65598|139983|139983|139984|175955|175958|176101|179718|179721|179723|179724|179729|179733|179735|179737|179741|179743|193567|214137|214543|222416|242032|322265|322269|322277|322280|322282|322283|322294|322300|322301|322304|322310|322312|322312|331584|331588|331590|331592|331593|331602|331634|331640|331647|338516|338517|338520|338523|338524|338564|338580|338586|338595|338606|340276|340281|340298|340305|340306|340312|340332|340332|340333|376392|376394|400055|400228|400230|400236|400868|400869|400871|400877|464140|464140|464144|464146|464148|464149|464958|464959|464980|504726|505620|505620|511121|528723|528755|528764|528954|529101|529231|529233|529234|529247|529248|566975|566976|568705|615097|618240|643102|643103|643104|643105|643106|643107|643108|643109|643110|643111|653034|667999|684533|695637|820687|842232|842233|842234|842235|842236|842237|873259|873260|873261|873262|873263|873264|873265|873266|873267|873268|873269|873270|873271|873272|873273|873274|873275|873276|873277|873278|873279|873280|873281|873282|873283|873284|873285|873286|873287|873288|873289|873290|873291|916260|927298|927299|936898|948847|948848|948849|957395", + "upstreamId": "33362|33364|33365|33365|33368|33368|33369|33370|33370|54338|54339|54342|54345|54346|54348|54353|54358|54359|54361|54361|65597|65597|65598|139983|139983|139984|175955|175958|176101|179718|179721|179723|179724|179729|179733|179735|179737|179741|179743|193567|214137|214543|222416|242032|322265|322269|322277|322280|322282|322283|322294|322300|322301|322304|322310|322312|322312|331584|331588|331590|331592|331593|331602|331634|331640|331647|338516|338517|338520|338523|338524|338564|338580|338586|338595|338606|340276|340281|340298|340305|340306|340312|340332|340332|340333|376392|376394|400055|400228|400230|400236|400868|400869|400871|400877|464140|464140|464144|464146|464148|464149|464958|464959|464980|504726|505620|505620|511121|528723|528755|528764|528954|529101|529231|529233|529234|529247|529248|566975|566976|568705|615097|618240|643102|643103|643104|643105|643106|643107|643108|643109|643110|643111|653034|667999|684533|695637|820687|842232|842233|842234|842235|842236|842237|873259|873260|873261|873262|873263|873264|873265|873266|873267|873268|873269|873270|873271|873272|873273|873274|873275|873276|873277|873278|873279|873280|873281|873282|873283|873284|873285|873286|873287|873288|873289|873290|873291|916260|927298|927299|936898|948847|948848|948849|957395", "text": "Familial hypertrophic cardiomyopathy 11" }, { - "baseId": "33370", + "upstreamId": "33370", "text": "Left ventricular noncompaction 4" }, { - "baseId": "33374", + "upstreamId": "33374", "text": "YT BLOOD GROUP POLYMORPHISM" }, { - "baseId": "33375|33376|33377|33378|33379|33380|33381|38537|191227|195343|195688|196264|214403|236956|236956|237286|250402|250667|250668|250669|250670|266272|269668|274055|282964|283798|285276|285284|285298|285299|285306|285311|285312|285318|285319|285324|285836|285922|285941|285949|285958|285959|285960|285961|285962|285964|285966|285969|285970|288248|288264|288265|288266|288274|288276|288284|288306|288310|288685|288689|288690|288707|288716|288731|288732|288738|363715|384512|405661|405662|426713|443183|489164|538346|788751|790211|804994|884130|884140|884141|884142|884143|884144|884145|884146|884147|884148|884149|884150|884151|884152|884153|884154|884155|884156|884157|884158|884159|884160|884161|884162|884163|884164|884165|884166|884167|887317|887318|918753", + "upstreamId": "33375|33376|33377|33378|33379|33380|33381|38537|191227|195343|195688|196264|214403|236956|236956|237286|250402|250667|250668|250669|250670|266272|269668|274055|282964|283798|285276|285284|285298|285299|285306|285311|285312|285318|285319|285324|285836|285922|285941|285949|285958|285959|285960|285961|285962|285964|285966|285969|285970|288248|288264|288265|288266|288274|288276|288284|288306|288310|288685|288689|288690|288707|288716|288731|288732|288738|363715|384512|405661|405662|426713|443183|489164|538346|788751|790211|804994|884130|884140|884141|884142|884143|884144|884145|884146|884147|884148|884149|884150|884151|884152|884153|884154|884155|884156|884157|884158|884159|884160|884161|884162|884163|884164|884165|884166|884167|887317|887318|918753", "text": "Autosomal recessive multiple pterygium syndrome" }, { - "baseId": "33375|538346|724728|966718|966719|966721", + "upstreamId": "33375|538346|724728|966718|966719|966721", "text": "Ankle contracture" }, { - "baseId": "33375|39548|49024|136760|185948|263200|263296|360998|361017|361048|485813|514187|514310|514311|538346|626373|682328|682329|682330|682331|682332|682333|682334|682335|682336|682337|682338|682339|920586", + "upstreamId": "33375|39548|49024|136760|185948|263200|263296|360998|361017|361048|485813|514187|514310|514311|538346|626373|682328|682329|682330|682331|682332|682333|682334|682335|682336|682337|682338|682339|920586", "text": "Scoliosis" }, { - "baseId": "33375|538346", + "upstreamId": "33375|538346", "text": "Arthrogryposis-like hand anomaly" }, { - "baseId": "33376|33379|33381|33402|33407|33408|33409|33416|33418|33427|33428|38536|38537|134182|134183|134184|134204|134205|134206|134207|139373|190288|190766|191169|191227|192261|195200|195343|195550|195688|195909|196198|196264|206906|206949|236956|236956|237286|250660|250661|250667|250668|250670|265660|265660|266272|267375|267375|269668|270135|270617|270618|272295|274055|274172|282956|282959|283772|283773|283774|283775|283797|283803|283808|285265|285276|285277|285281|285284|285294|285296|285298|285299|285306|285311|285318|285319|285324|285404|285409|285413|285430|285431|285435|285437|285438|285819|285820|285822|285832|285833|285838|285906|285917|285922|285932|285940|285941|285943|285949|285950|285951|285956|285958|285959|285960|285961|285962|285964|288234|288235|288236|288242|288262|288264|288265|288266|288274|288276|288284|288657|288667|288668|288669|288670|288680|288681|288686|288688|288689|288690|288707|288716|288731|288732|288738|359351|363715|365698|367085|389195|405656|405661|413590|426713|443058|448551|448988|448991|448996|449165|449171|449173|449174|449262|449269|449296|449298|450493|450494|450497|450509|450517|450638|450640|450643|450808|450816|450856|480725|486265|489164|514462|516221|516697|516738|516741|516742|516746|516748|517902|517908|517910|517914|517949|517961|517962|517965|518029|518034|538346|557696|557698|557700|557702|557729|557938|557999|558915|558917|558919|559177|559179|559181|559183|559400|561093|576669|576670|578401|629016|629017|629018|629019|629020|629021|629022|629023|629024|629025|629026|629027|629028|629029|629619|629620|629621|629622|629623|629624|629625|650723|650884|650919|650946|650989|690894|690895|690897|690899|691051|691053|691054|691055|691056|691057|695126|697406|697407|697409|719712|733268|759068|762431|763056|763057|763060|780971|781240|781241|790209|790210|825247|825248|825249|825250|825251|825252|825253|825254|825255|825951|825952|825953|825954|825955|825956|825957|825958|825959|825960|825961|825962|825963|850854|851362|881618|881619|881620|881621|881622|881623|881624|881625|881626|881627|881628|881629|881630|884121|884122|884123|884124|884125|884126|884127|884128|884129|884131|884132|884133|884134|884135|884136|884137|884138|884139|884140|884141|884142|884143|884144|884145|884146|884147|884148|884149|884150|884151|884152|884153|884154|884155|884156|884157|884158|884159|884160|884161|884162|884163|884164|884165|884166|884167|887315|887316|887317|887318|922418|922419|922420|922637|922638|930984|930985|930986|930987|931201|931202|931203|931204|942421|942422|942423|942424|942425|942426|942675|942676|942677|942678|952795|952984|952985|959600", + "upstreamId": "33376|33379|33381|33402|33407|33408|33409|33416|33418|33427|33428|38536|38537|134182|134183|134184|134204|134205|134206|134207|139373|190288|190766|191169|191227|192261|195200|195343|195550|195688|195909|196198|196264|206906|206949|236956|236956|237286|250660|250661|250667|250668|250670|265660|265660|266272|267375|267375|269668|270135|270617|270618|272295|274055|274172|282956|282959|283772|283773|283774|283775|283797|283803|283808|285265|285276|285277|285281|285284|285294|285296|285298|285299|285306|285311|285318|285319|285324|285404|285409|285413|285430|285431|285435|285437|285438|285819|285820|285822|285832|285833|285838|285906|285917|285922|285932|285940|285941|285943|285949|285950|285951|285956|285958|285959|285960|285961|285962|285964|288234|288235|288236|288242|288262|288264|288265|288266|288274|288276|288284|288657|288667|288668|288669|288670|288680|288681|288686|288688|288689|288690|288707|288716|288731|288732|288738|359351|363715|365698|367085|389195|405656|405661|413590|426713|443058|448551|448988|448991|448996|449165|449171|449173|449174|449262|449269|449296|449298|450493|450494|450497|450509|450517|450638|450640|450643|450808|450816|450856|480725|486265|489164|514462|516221|516697|516738|516741|516742|516746|516748|517902|517908|517910|517914|517949|517961|517962|517965|518029|518034|538346|557696|557698|557700|557702|557729|557938|557999|558915|558917|558919|559177|559179|559181|559183|559400|561093|576669|576670|578401|629016|629017|629018|629019|629020|629021|629022|629023|629024|629025|629026|629027|629028|629029|629619|629620|629621|629622|629623|629624|629625|650723|650884|650919|650946|650989|690894|690895|690897|690899|691051|691053|691054|691055|691056|691057|695126|697406|697407|697409|719712|733268|759068|762431|763056|763057|763060|780971|781240|781241|790209|790210|825247|825248|825249|825250|825251|825252|825253|825254|825255|825951|825952|825953|825954|825955|825956|825957|825958|825959|825960|825961|825962|825963|850854|851362|881618|881619|881620|881621|881622|881623|881624|881625|881626|881627|881628|881629|881630|884121|884122|884123|884124|884125|884126|884127|884128|884129|884131|884132|884133|884134|884135|884136|884137|884138|884139|884140|884141|884142|884143|884144|884145|884146|884147|884148|884149|884150|884151|884152|884153|884154|884155|884156|884157|884158|884159|884160|884161|884162|884163|884164|884165|884166|884167|887315|887316|887317|887318|922418|922419|922420|922637|922638|930984|930985|930986|930987|931201|931202|931203|931204|942421|942422|942423|942424|942425|942426|942675|942676|942677|942678|952795|952984|952985|959600", "text": "Lethal multiple pterygium syndrome" }, { - "baseId": "33381|443183|620069|620070|620071", + "upstreamId": "33381|443183|620069|620070|620071", "text": "CHRNG-Related Disorders" }, { - "baseId": "33382|33383|33384|33385|33386|33387|33391|33396|33398|33399|48713|48714|134209|134213|134215|134216|134217|139374|244115|244116|244117|256235|256236|256240|256245|256249|256250|266273|268552|268552|270101|272149|272153|329052|329060|329063|339094|339096|339109|339111|339112|339125|345085|345087|345092|346448|346453|346457|346460|360460|378427|410057|410058|410059|413452|429984|441969|445796|466961|466968|466972|467864|467866|467869|467870|467878|467880|467895|467898|467902|467914|468162|468358|468359|468361|468362|468369|491632|506455|531216|531220|531224|531225|531393|531397|531399|531452|531459|531705|531707|531716|569230|569232|569233|569237|569241|571248|571251|571256|571592|571593|571596|574507|574508|574509|574510|577648|620886|646144|646145|646146|646147|646148|646149|646150|646151|646152|646153|646154|646155|646156|646157|646158|646159|646160|646161|646162|646163|652667|652811|652839|652978|653467|688793|694100|694101|694102|694103|694104|694105|694106|715521|740839|740840|740841|740842|740844|744977|745019|755920|755922|755924|771609|771611|771612|771613|771614|771616|771617|771619|776355|776695|776706|785629|785633|791786|821103|821105|845580|845581|845582|845583|845584|845585|845586|845587|845588|845589|845590|845591|845592|845593|852218|852753|852754|906392|928362|928363|928364|938019|938020|938021|938022|940419|940420|950019|950020|950021|950022|950023|950024|958165|958166|958167|958168|958169|958170|958171|958172|958173|958174|958175|958176|958177|958178|960889", + "upstreamId": "33382|33383|33384|33385|33386|33387|33391|33396|33398|33399|48713|48714|134209|134213|134215|134216|134217|139374|244115|244116|244117|256235|256236|256240|256245|256249|256250|266273|268552|268552|270101|272149|272153|329052|329060|329063|339094|339096|339109|339111|339112|339125|345085|345087|345092|346448|346453|346457|346460|360460|378427|410057|410058|410059|413452|429984|441969|445796|466961|466968|466972|467864|467866|467869|467870|467878|467880|467895|467898|467902|467914|468162|468358|468359|468361|468362|468369|491632|506455|531216|531220|531224|531225|531393|531397|531399|531452|531459|531705|531707|531716|569230|569232|569233|569237|569241|571248|571251|571256|571592|571593|571596|574507|574508|574509|574510|577648|620886|646144|646145|646146|646147|646148|646149|646150|646151|646152|646153|646154|646155|646156|646157|646158|646159|646160|646161|646162|646163|652667|652811|652839|652978|653467|688793|694100|694101|694102|694103|694104|694105|694106|715521|740839|740840|740841|740842|740844|744977|745019|755920|755922|755924|771609|771611|771612|771613|771614|771616|771617|771619|776355|776695|776706|785629|785633|791786|821103|821105|845580|845581|845582|845583|845584|845585|845586|845587|845588|845589|845590|845591|845592|845593|852218|852753|852754|906392|928362|928363|928364|938019|938020|938021|938022|940419|940420|950019|950020|950021|950022|950023|950024|958165|958166|958167|958168|958169|958170|958171|958172|958173|958174|958175|958176|958177|958178|960889", "text": "Myasthenic syndrome, congenital, 4a, slow-channel" }, { - "baseId": "33385|33396|33398|33399|33400|48688|244116|268552|346460|919737|919738|920374|961882", + "upstreamId": "33385|33396|33398|33399|33400|48688|244116|268552|346460|919737|919738|920374|961882", "text": "Myasthenic syndrome, congenital, 4b, fast-channel" }, { - "baseId": "33402|190766|265660|267375|270617|538964", + "upstreamId": "33402|190766|265660|267375|270617|538964", "text": "Myasthenic syndrome, congenital, 3a, slow-channel" }, { - "baseId": "33403|33404|33405|33406|33410|265660|267375|270617|538964", + "upstreamId": "33403|33404|33405|33406|33410|265660|267375|270617|538964", "text": "Congenital myasthenic syndrome 3B" }, { - "baseId": "33411|33412|134200|134202|134203|194325|196197|256398|256400|329773|329782|347173|347175|347178|445892|468825|468826|468830|468834|468837|469078|469079|495852|513646|531827|531831|531839|531843|531882|531883|531890|532150|568669|569715|569722|571586|571588|572244|572246|574611|574612|574613|574614|589390|646677|646678|646679|646680|646681|646682|646683|646684|646685|646686|646687|646688|646689|646690|652678|652867|653511|694193|694194|694195|694196|694199|694201|695775|704353|741011|741013|756111|760656|771810|778400|846174|846175|846176|846177|846178|846179|846180|852791|878369|878373|919768|919769|928525|928526|928527|938216|938217|941196|950271|950272|950273|950274|960243|960244", + "upstreamId": "33411|33412|134200|134202|134203|194325|196197|256398|256400|329773|329782|347173|347175|347178|445892|468825|468826|468830|468834|468837|469078|469079|495852|513646|531827|531831|531839|531843|531882|531883|531890|532150|568669|569715|569722|571586|571588|572244|572246|574611|574612|574613|574614|589390|646677|646678|646679|646680|646681|646682|646683|646684|646685|646686|646687|646688|646689|646690|652678|652867|653511|694193|694194|694195|694196|694199|694201|695775|704353|741011|741013|756111|760656|771810|778400|846174|846175|846176|846177|846178|846179|846180|852791|878369|878373|919768|919769|928525|928526|928527|938216|938217|941196|950271|950272|950273|950274|960243|960244", "text": "Myasthenic syndrome, congenital, 2a, slow-channel" }, { - "baseId": "33413|33414", + "upstreamId": "33413|33414", "text": "Myasthenic syndrome, congenital, 2c, associated with acetylcholine receptor deficiency" }, { - "baseId": "33415|33416|33417|33418|33419|33420|33426|918697", + "upstreamId": "33415|33416|33417|33418|33419|33420|33426|918697", "text": "Congenital myasthenic syndrome 1A" }, { - "baseId": "33421|33422|33423|33424|33425|38535|38536|139374", + "upstreamId": "33421|33422|33423|33424|33425|38535|38536|139374", "text": "Congenital myasthenic syndrome 1B, fast-channel" }, { - "baseId": "33429|578497", + "upstreamId": "33429|578497", "text": "Acute alcohol sensitivity" }, { - "baseId": "33429", + "upstreamId": "33429", "text": "Susceptibility to hangover" }, { - "baseId": "33429", + "upstreamId": "33429", "text": "Sublingual nitroglycerin, susceptibility to poor response to" }, { - "baseId": "33429", + "upstreamId": "33429", "text": "Esophageal cancer, alcohol-related, susceptibility to" }, { - "baseId": "33429|983526|983527|983528", + "upstreamId": "33429|983526|983527|983528", "text": "AMED SYNDROME, DIGENIC" }, { - "baseId": "33430|135070|141984|361200|441374", + "upstreamId": "33430|135070|141984|361200|441374", "text": "Ataxia, spastic, 4, autosomal recessive" }, { - "baseId": "33431|207300|428492", + "upstreamId": "33431|207300|428492", "text": "Mental retardation, anterior maxillary protrusion, and strabismus" }, { - "baseId": "33432|40320|40321|40322|40323|40324|192263|193452|193453|237063|237194|319992|319994|319995|319996|320000|320002|320003|320004|328552|328564|328565|335047|335052|336938|336949|336951|336956|336964|373873|409039|409041|463943|504817|527810|568228|572579|642054|642055|871457|871458|871459|871460|871461|871462|871463|871464|871465|871466|871467|871468|871469|871470|871471|871472|871473|871474|871475|926948|948417", + "upstreamId": "33432|40320|40321|40322|40323|40324|192263|193452|193453|237063|237194|319992|319994|319995|319996|320000|320002|320003|320004|328552|328564|328565|335047|335052|336938|336949|336951|336956|336964|373873|409039|409041|463943|504817|527810|568228|572579|642054|642055|871457|871458|871459|871460|871461|871462|871463|871464|871465|871466|871467|871468|871469|871470|871471|871472|871473|871474|871475|926948|948417", "text": "Congenital disorder of glycosylation type 1P" }, { - "baseId": "33434|33436", + "upstreamId": "33434|33436", "text": "DUFFY BLOOD GROUP SYSTEM, FY(a-b-) PHENOTYPE" }, { - "baseId": "33434", + "upstreamId": "33434", "text": "Plasmodium vivax, resistance to" }, { - "baseId": "33434", + "upstreamId": "33434", "text": "White blood cell count quantitative trait locus 1" }, { - "baseId": "33435", + "upstreamId": "33435", "text": "DUFFY BLOOD GROUP SYSTEM, FY(bwk) PHENOTYPE" }, { - "baseId": "33437|227335", + "upstreamId": "33437|227335", "text": "Migraine, with or without aura 13" }, { - "baseId": "33439|33440|135733|135734|135735|135736|135737|187972|264173|293244|293247|293252|293254|293258|293261|293262|293263|294579|294589|294591|294593|294598|294601|294604|298052|298058|298059|298072|298073|298088|298090|298091|298095|298097|298099|298138|298143|298180|298185|298187|298193|298195|298196|298205|298216|298233|298235|360859|513418|611612|620161|626143|683630|683631|683632|685160|685161|734612|764440|775069|787252|789115|798914|890603|890604|890605|890606|890607|890608|890609|890610|890611|890612|890613|890614|890615|890616|890617|890618|890619|890620|890621|890622|890623|890624|890625|891786|891787|891788|906151|971339|978085|978086|978087|978088|978089|978090|978091|978092|978093|978094|978095|978096|978097", + "upstreamId": "33439|33440|135733|135734|135735|135736|135737|187972|264173|293244|293247|293252|293254|293258|293261|293262|293263|294579|294589|294591|294593|294598|294601|294604|298052|298058|298059|298072|298073|298088|298090|298091|298095|298097|298099|298138|298143|298180|298185|298187|298193|298195|298196|298205|298216|298233|298235|360859|513418|611612|620161|626143|683630|683631|683632|685160|685161|734612|764440|775069|787252|789115|798914|890603|890604|890605|890606|890607|890608|890609|890610|890611|890612|890613|890614|890615|890616|890617|890618|890619|890620|890621|890622|890623|890624|890625|891786|891787|891788|906151|971339|978085|978086|978087|978088|978089|978090|978091|978092|978093|978094|978095|978096|978097", "text": "Pontocerebellar hypoplasia type 2D" }, { - "baseId": "33443|33444|33445|33446|33447|102019|190619|190620|194512|207120|293613|293618|293620|293625|293640|293641|293649|293650|293651|293652|293660|293661|293667|293677|295046|295047|295048|295053|295055|295057|295059|295060|295063|295070|295072|295074|295077|298689|298692|298694|298695|298712|298714|298721|298730|298734|298738|298741|298746|298750|298752|298753|298754|369137|562235|620168|623137|632437|632438|691594|792750|829402|890784|890785|890786|890787|890788|890789|890790|890791|890792|890793|890794|890795|890796|890797|890798|890799|890800|890801|890802|890803|890804|890805|890806|890807|890808|890809|890810|890811|891875|891876", + "upstreamId": "33443|33444|33445|33446|33447|102019|190619|190620|194512|207120|293613|293618|293620|293625|293640|293641|293649|293650|293651|293652|293660|293661|293667|293677|295046|295047|295048|295053|295055|295057|295059|295060|295063|295070|295072|295074|295077|298689|298692|298694|298695|298712|298714|298721|298730|298734|298738|298741|298746|298750|298752|298753|298754|369137|562235|620168|623137|632437|632438|691594|792750|829402|890784|890785|890786|890787|890788|890789|890790|890791|890792|890793|890794|890795|890796|890797|890798|890799|890800|890801|890802|890803|890804|890805|890806|890807|890808|890809|890810|890811|891875|891876", "text": "Congenital disorder of glycosylation type 1Q" }, { - "baseId": "33452|33453|33454", + "upstreamId": "33452|33453|33454", "text": "Vesicoureteral reflux 3" }, { - "baseId": "33455|190639|191956|195765|247047|269267|270345|311348|311357|311364|311365|311372|311373|311381|311388|311389|311393|311395|311397|311399|311400|311401|311406|311410|311411|311417|311419|311420|311421|311423|311424|311429|311431|311432|311433|316875|316876|316888|316901|316903|316920|316935|316936|316963|316964|316968|316972|316973|316974|322840|322852|322855|322862|322865|322869|322870|322873|322877|322908|322930|322944|322956|322969|322972|322973|322985|322990|322991|323005|323480|323481|323483|323484|323493|323494|323497|323508|323520|323521|323525|323526|323527|323531|323532|323541|323542|323543|323551|323558|578346|790988|790989|790990|790991|866402|866403|866404|866405|866406|866407|866408|866409|866410|866412|866413|866414|866415|866416|866417|866418|866419|866420|866421|866422|866423|866424|866425|866426|866427|866429|866430|866431|866432|866433|866434|866435|866436|866437|866438|866439|866440|866441|866442|868519|868520|868521|868522|919294|919295|919296|919297", + "upstreamId": "33455|190639|191956|195765|247047|269267|270345|311348|311357|311364|311365|311372|311373|311381|311388|311389|311393|311395|311397|311399|311400|311401|311406|311410|311411|311417|311419|311420|311421|311423|311424|311429|311431|311432|311433|316875|316876|316888|316901|316903|316920|316935|316936|316963|316964|316968|316972|316973|316974|322840|322852|322855|322862|322865|322869|322870|322873|322877|322908|322930|322944|322956|322969|322972|322973|322985|322990|322991|323005|323480|323481|323483|323484|323493|323494|323497|323508|323520|323521|323525|323526|323527|323531|323532|323541|323542|323543|323551|323558|578346|790988|790989|790990|790991|866402|866403|866404|866405|866406|866407|866408|866409|866410|866412|866413|866414|866415|866416|866417|866418|866419|866420|866421|866422|866423|866424|866425|866426|866427|866429|866430|866431|866432|866433|866434|866435|866436|866437|866438|866439|866440|866441|866442|868519|868520|868521|868522|919294|919295|919296|919297", "text": "Cone-rod dystrophy 15" }, { - "baseId": "33456|34511|34512|34513|34515|34516|34518|39740|101805|140421|169015|169015|169020|169021|169022|169023|169024|169027|169028|169031|169032|169032|169034|169038|169038|169039|169040|169041|169044|169045|191939|194480|208024|208026|208029|208030|208031|208033|208034|208036|208037|208038|208040|254844|319318|319320|319324|319331|319335|319339|319340|319344|327833|327837|327838|327860|327863|327872|327873|327877|327879|327880|327888|327890|327892|327893|334132|334133|334135|334148|334152|334165|334170|335735|335772|335797|335804|335810|335820|335829|335830|335833|335838|335845|335846|404812|426039|429484|437953|437953|490846|587191|870972|870973|870974|870975|870976|870977|870978|870979|870980|870981|870982|870983|870984|870985|870986|870987|870988|870989|870990|870991|870992|870993|870994|870995|870996|870997|870998|870999|872321|872322", + "upstreamId": "33456|34511|34512|34513|34515|34516|34518|39740|101805|140421|169015|169015|169020|169021|169022|169023|169024|169027|169028|169031|169032|169032|169034|169038|169038|169039|169040|169041|169044|169045|191939|194480|208024|208026|208029|208030|208031|208033|208034|208036|208037|208038|208040|254844|319318|319320|319324|319331|319335|319339|319340|319344|327833|327837|327838|327860|327863|327872|327873|327877|327879|327880|327888|327890|327892|327893|334132|334133|334135|334148|334152|334165|334170|335735|335772|335797|335804|335810|335820|335829|335830|335833|335838|335845|335846|404812|426039|429484|437953|437953|490846|587191|870972|870973|870974|870975|870976|870977|870978|870979|870980|870981|870982|870983|870984|870985|870986|870987|870988|870989|870990|870991|870992|870993|870994|870995|870996|870997|870998|870999|872321|872322", "text": "Seckel syndrome 4" }, { - "baseId": "33466|33467|165949|166311|166312|192059|207083|207085|207089|207089|213912|213913|213914|367721|406361|424647|426741|428216|431906|490210|511508|538978|550596|551770|552076|552077|611462|611463|614601|621730|677419|678956|678957|790416|790417|790418|790419|790420|798537|800393|861564|915025|918858|961600|963131|964226|964227|964228|964229|970778|972714|972928|972929|972930|972931|975857", + "upstreamId": "33466|33467|165949|166311|166312|192059|207083|207085|207089|207089|213912|213913|213914|367721|406361|424647|426741|428216|431906|490210|511508|538978|550596|551770|552076|552077|611462|611463|614601|621730|677419|678956|678957|790416|790417|790418|790419|790420|798537|800393|861564|915025|918858|961600|963131|964226|964227|964228|964229|970778|972714|972928|972929|972930|972931|975857", "text": "Mental retardation with language impairment and with or without autistic features" }, { - "baseId": "33477", + "upstreamId": "33477", "text": "Dystonia 1, torsion, late-onset" }, { - "baseId": "33478|33479|97340|97341|97342|97343|97344", + "upstreamId": "33478|33479|97340|97341|97342|97343|97344", "text": "Hypobetalipoproteinemia, familial, 2" }, { - "baseId": "33480|135041|135042|135043|135044|135046|135047|135051|135052|207924|207925|508868|508869|513318|702034|738355|738356|753025|768836|768838|768839|768841|768842|775955|784242|919401|966978|979211|979212|979213|979214|979215|979216|979217|979218|979219|979220|979221|979222|979223|979224|979225|979226|979227|979228|979229|979230", + "upstreamId": "33480|135041|135042|135043|135044|135046|135047|135051|135052|207924|207925|508868|508869|513318|702034|738355|738356|753025|768836|768838|768839|768841|768842|775955|784242|919401|966978|979211|979212|979213|979214|979215|979216|979217|979218|979219|979220|979221|979222|979223|979224|979225|979226|979227|979228|979229|979230", "text": "Microcephaly, postnatal progressive, with seizures and brain atrophy" }, { - "baseId": "33481|215094|215095|215096|552408|726177|962242", + "upstreamId": "33481|215094|215095|215096|552408|726177|962242", "text": "Hyperchlorhidrosis, isolated" }, { - "baseId": "33486|71504|71505|256779|332664|332667|332670|332672|332673|332674|332675|342847|342848|342850|348199|348201|348202|348203|348204|348207|348212|349404|349407|349408|349411|349412|349415|879976|879977|879978|879979|879980|879981|879982|879983|879984|879985", + "upstreamId": "33486|71504|71505|256779|332664|332667|332670|332672|332673|332674|332675|342847|342848|342850|348199|348201|348202|348203|348204|348207|348212|349404|349407|349408|349411|349412|349415|879976|879977|879978|879979|879980|879981|879982|879983|879984|879985", "text": "Congenital dyserythropoietic anemia, type IV" }, { - "baseId": "33497|33498|33499|33500|188054|208642|334842|334848|334850|334857|334867|334872|334873|334875|344718|344725|344728|344729|344733|344736|344742|344744|344746|344751|349705|349706|349710|349713|349714|350693|350695|350696|350697|350698|350702|350705|350706|350709|350710|350712|577833|620654|620917|742277|860632|885843|885844|885845|885846|885847|885848|885849|885850|885851|885852|885853|885854|885855|885856|885857|885858|885859|885860|885861|885862|885863|885864|885865|885866|885867", + "upstreamId": "33497|33498|33499|33500|188054|208642|334842|334848|334850|334857|334867|334872|334873|334875|344718|344725|344728|344729|344733|344736|344742|344744|344746|344751|349705|349706|349710|349713|349714|350693|350695|350696|350697|350698|350702|350705|350706|350709|350710|350712|577833|620654|620917|742277|860632|885843|885844|885845|885846|885847|885848|885849|885850|885851|885852|885853|885854|885855|885856|885857|885858|885859|885860|885861|885862|885863|885864|885865|885866|885867", "text": "Spinocerebellar ataxia type 23" }, { - "baseId": "33502", + "upstreamId": "33502", "text": "Retinal arteries, tortuosity of" }, { - "baseId": "33861|434712", + "upstreamId": "33861|434712", "text": "Chromosome 15q13.3 microdeletion syndrome" }, { - "baseId": "33887|249603|249620|249659|278345|278362|278378|278397|278399|278401|278422|278461|278471|279471|279503|279514|279524|279597|279598|279605|279612|279613|279676|279688|329365|339623|345381|346754|346763|353071", + "upstreamId": "33887|249603|249620|249659|278345|278362|278378|278397|278399|278401|278422|278461|278471|279471|279503|279514|279524|279597|279598|279605|279612|279613|279676|279688|329365|339623|345381|346754|346763|353071", "text": "Hypokalemic periodic paralysis" }, { - "baseId": "33966|33974|34018|44267|44269|44270|44271|44272|44274|44275|44276|44278|44280|44283|44284|44286|44287|44288|44883|45062|45063|45064|45068|45075|45093|45094|45095|45096", + "upstreamId": "33966|33974|34018|44267|44269|44270|44271|44272|44274|44275|44276|44278|44280|44283|44284|44286|44287|44288|44883|45062|45063|45064|45068|45075|45093|45094|45095|45096", "text": "Neonatal diabetes mellitus" }, { - "baseId": "33980|134759|192205|192207|317386|317391|317395|317415|317418|317429|317433|317451|317452|317456|317463|317465|317466|317470|325232|325233|325235|325236|325255|325260|325261|325262|325265|325274|325286|325287|325288|325296|331461|331464|331468|331495|331540|331564|331579|331600|332877|332891|332921|332923|332925|332937|332947|332950|332959|332969|332986|332996|333033", + "upstreamId": "33980|134759|192205|192207|317386|317391|317395|317415|317418|317429|317433|317451|317452|317456|317463|317465|317466|317470|325232|325233|325235|325236|325255|325260|325261|325262|325265|325274|325286|325287|325288|325296|331461|331464|331468|331495|331540|331564|331579|331600|332877|332891|332921|332923|332925|332937|332947|332950|332959|332969|332986|332996|333033", "text": "Myokymia" }, { - "baseId": "33982|201345|282265|282273|282291|282884|282949|282984|282985|282987|282994|284486|284491|284501|284503|284781|284892|284930|284935|297404|297412|299450|299456|303577|303616|303901|303925|317387|317391|317398|317401|317404|317407|317412|317416|317428|317429|317435|317458|317466|325231|325233|325235|325238|325240|325261|325262|325267|325271|325273|325274|325279|325285|325286|325294|325295|325316|325326|331460|331463|331464|331474|331475|331487|331488|331489|331500|331501|331511|331539|331542|331561|331563|331565|331582|331598|332852|332867|332887|332895|332906|332918|332919|332922|332931|332937|332944|332955|332977|332979|332998|333005|333012|333013|333026|333027|353540|551424|801216|970990", + "upstreamId": "33982|201345|282265|282273|282291|282884|282949|282984|282985|282987|282994|284486|284491|284501|284503|284781|284892|284930|284935|297404|297412|299450|299456|303577|303616|303901|303925|317387|317391|317398|317401|317404|317407|317412|317416|317428|317429|317435|317458|317466|325231|325233|325235|325238|325240|325261|325262|325267|325271|325273|325274|325279|325285|325286|325294|325295|325316|325326|331460|331463|331464|331474|331475|331487|331488|331489|331500|331501|331511|331539|331542|331561|331563|331565|331582|331598|332852|332867|332887|332895|332906|332918|332919|332922|332931|332937|332944|332955|332977|332979|332998|333005|333012|333013|333026|333027|353540|551424|801216|970990", "text": "Episodic ataxia" }, { - "baseId": "33999|34000|94483|94485", + "upstreamId": "33999|34000|94483|94485", "text": "CEREBRAL AMYLOID ANGIOPATHY, PRNP-RELATED" }, { - "baseId": "34038", + "upstreamId": "34038", "text": "Metachromatic leukodystrophy, late-onset" }, { - "baseId": "34118|34120|361083", + "upstreamId": "34118|34120|361083", "text": "CK syndrome" }, { - "baseId": "34125|360935", + "upstreamId": "34125|360935", "text": "Elevated 7-dehydrocholesterol" }, { - "baseId": "34125|217210|217211|217212|217213|264781|360935|495314|514043|514138", + "upstreamId": "34125|217210|217211|217212|217213|264781|360935|495314|514043|514138", "text": "Congenital microcephaly" }, { - "baseId": "34125|360935", + "upstreamId": "34125|360935", "text": "2-3 toe syndactyly" }, { - "baseId": "34125|166581|166586|166598|166599|166601|166604|166605|166609|166613|166620|166623|166626|166633|166642|166666|166667|166672|166674|166675|166686|166700|166702|166712|166715|166727|166739|166742|166746|166752|166755|166769|166773|166778|166783|166789|166793|166797|166802|166811|166815|166826|166840|166850|166851|166852|166856|166864|166868|166884|166886|166889|166913|166915|166926|166932|166939|166947|166966|166974|166977|166984|166985|166998|167001|167004|167005|167007|167013|167019|167027|167040|167044|167053|167054|167069|167070|167081|167083|167088|167101|167106|167111|167112|167119|167123|167135|167137|167151|167163|167170|167172|167173|167177|167179|167180|167188|167202|167204|167212|167220|167223|167247|167260|167264|167267|167273|167278|167283|167290|167293|167296|167307|167323|167329|167336|223422|263355|263368|360935", + "upstreamId": "34125|166581|166586|166598|166599|166601|166604|166605|166609|166613|166620|166623|166626|166633|166642|166666|166667|166672|166674|166675|166686|166700|166702|166712|166715|166727|166739|166742|166746|166752|166755|166769|166773|166778|166783|166789|166793|166797|166802|166811|166815|166826|166840|166850|166851|166852|166856|166864|166868|166884|166886|166889|166913|166915|166926|166932|166939|166947|166966|166974|166977|166984|166985|166998|167001|167004|167005|167007|167013|167019|167027|167040|167044|167053|167054|167069|167070|167081|167083|167088|167101|167106|167111|167112|167119|167123|167135|167137|167151|167163|167170|167172|167173|167177|167179|167180|167188|167202|167204|167212|167220|167223|167247|167260|167264|167267|167273|167278|167283|167290|167293|167296|167307|167323|167329|167336|223422|263355|263368|360935", "text": "Small for gestational age" }, { - "baseId": "34164", + "upstreamId": "34164", "text": "Association with valproate-induced liver toxicity" }, { - "baseId": "34211|244100|244101", + "upstreamId": "34211|244100|244101", "text": "Patent ductus arteriosus 2" }, { - "baseId": "34220|186058|212530|221642|221645|239956|252546|271323|301262|304461|304463|309043|309071|395264|395624|456499|561169|635337|683828|683829|683831|683833|683835|683837|685200|685202|685205|686929|686931|689846|692081|765927|978371|978372|978373|978374|978375|978376|978377", + "upstreamId": "34220|186058|212530|221642|221645|239956|252546|271323|301262|304461|304463|309043|309071|395264|395624|456499|561169|635337|683828|683829|683831|683833|683835|683837|685200|685202|685205|686929|686931|689846|692081|765927|978371|978372|978373|978374|978375|978376|978377", "text": "Hereditary hemochromatosis type 3" }, { - "baseId": "34221", + "upstreamId": "34221", "text": "Hereditary hemochromatosis type 4" }, { - "baseId": "34261|34262|34263|34264|34269|34637|81680|134792|134793|134794|134795|134796|141743|141749|141751|141752|141753|141754|141755|191041|191676|202143|202144|202145|202146|202149|202150|202151|202153|202154|202155|202156|202157|202158|202160|202162|202163|202170|202171|202172|202173|202174|202175|202179|202181|202181|202182|202187|202189|202190|202192|207503|207504|240232|264363|272269|304135|304150|304163|304164|304181|304186|304187|304189|304193|304194|304197|304205|304211|304217|304222|304229|304230|304232|304242|304244|304245|304249|304251|304263|304269|304271|304274|307750|307761|307788|307793|307795|307801|307810|307824|307839|307852|307853|307860|307862|307867|307871|307873|307883|307889|307890|307898|307900|307908|312806|312809|312819|312820|312827|312850|312870|312880|312889|312891|312901|312906|312908|312909|312911|312914|312916|312919|312921|312929|312935|312940|312942|312945|312947|312949|312953|312956|312957|312974|312975|312978|312980|312983|312984|312998|312999|313005|313008|313010|313013|313017|313018|313026|313028|313038|313042|359883|369338|369344|369703|370079|371511|371534|395898|395900|395912|396148|396288|396563|396571|396572|407314|421657|426672|444211|457184|457187|457193|457202|457204|457796|457798|457816|457819|457820|458184|458186|458196|489649|502590|522991|522997|522998|523000|523257|523268|523270|523476|523477|523492|523494|523620|523623|523625|523626|523627|561944|561947|561949|561951|561955|562352|562362|562365|562367|564632|564635|564636|564638|564639|564641|567365|567370|636584|636585|636586|636587|636588|636589|636590|636591|636592|636593|636594|636595|636596|636597|636598|636599|636600|636601|636602|636603|655830|687185|687187|689903|692350|695377|700394|722848|736429|750907|766531|819945|819946|834114|834115|834116|834117|834118|834119|834120|834121|834122|834123|834124|834125|834126|834127|834128|834129|834130|834131|834132|834133|834134|834135|834136|834137|834138|834139|834140|834141|851179|852112|925012|925013|925014|925015|925016|925017|925018|925019|934089|934090|934091|934092|934093|934094|934095|934096|934097|945850|945851|945852|945853|945854|945855|955288|955289|955290", + "upstreamId": "34261|34262|34263|34264|34269|34637|81680|134792|134793|134794|134795|134796|141743|141749|141751|141752|141753|141754|141755|191041|191676|202143|202144|202145|202146|202149|202150|202151|202153|202154|202155|202156|202157|202158|202160|202162|202163|202170|202171|202172|202173|202174|202175|202179|202181|202181|202182|202187|202189|202190|202192|207503|207504|240232|264363|272269|304135|304150|304163|304164|304181|304186|304187|304189|304193|304194|304197|304205|304211|304217|304222|304229|304230|304232|304242|304244|304245|304249|304251|304263|304269|304271|304274|307750|307761|307788|307793|307795|307801|307810|307824|307839|307852|307853|307860|307862|307867|307871|307873|307883|307889|307890|307898|307900|307908|312806|312809|312819|312820|312827|312850|312870|312880|312889|312891|312901|312906|312908|312909|312911|312914|312916|312919|312921|312929|312935|312940|312942|312945|312947|312949|312953|312956|312957|312974|312975|312978|312980|312983|312984|312998|312999|313005|313008|313010|313013|313017|313018|313026|313028|313038|313042|359883|369338|369344|369703|370079|371511|371534|395898|395900|395912|396148|396288|396563|396571|396572|407314|421657|426672|444211|457184|457187|457193|457202|457204|457796|457798|457816|457819|457820|458184|458186|458196|489649|502590|522991|522997|522998|523000|523257|523268|523270|523476|523477|523492|523494|523620|523623|523625|523626|523627|561944|561947|561949|561951|561955|562352|562362|562365|562367|564632|564635|564636|564638|564639|564641|567365|567370|636584|636585|636586|636587|636588|636589|636590|636591|636592|636593|636594|636595|636596|636597|636598|636599|636600|636601|636602|636603|655830|687185|687187|689903|692350|695377|700394|722848|736429|750907|766531|819945|819946|834114|834115|834116|834117|834118|834119|834120|834121|834122|834123|834124|834125|834126|834127|834128|834129|834130|834131|834132|834133|834134|834135|834136|834137|834138|834139|834140|834141|851179|852112|925012|925013|925014|925015|925016|925017|925018|925019|934089|934090|934091|934092|934093|934094|934095|934096|934097|945850|945851|945852|945853|945854|945855|955288|955289|955290", "text": "Benign familial neonatal seizures" }, { - "baseId": "34261|34263|34264|141754|202158|240232|304149|304178|304180|304182|304188|304193|304197|304200|304206|304218|304226|304232|304235|304243|304249|304251|304260|304261|304264|304265|304269|304271|304274|307801|307837|307838|307854|307860|307861|307863|307864|307873|307884|307886|307887|307889|307890|307891|307900|307908|307919|312763|312782|312807|312817|312821|312837|312838|312856|312890|312894|312895|312901|312910|312915|312916|312918|312920|312923|312925|312928|312939|312944|312946|312948|312952|312953|312956|312958|312960|312979|312981|312983|312990|312999|313005|313007|313008|313009|313010|313012|313013|313017|313018|313027|313038|313040|313042", + "upstreamId": "34261|34263|34264|141754|202158|240232|304149|304178|304180|304182|304188|304193|304197|304200|304206|304218|304226|304232|304235|304243|304249|304251|304260|304261|304264|304265|304269|304271|304274|307801|307837|307838|307854|307860|307861|307863|307864|307873|307884|307886|307887|307889|307890|307891|307900|307908|307919|312763|312782|312807|312817|312821|312837|312838|312856|312890|312894|312895|312901|312910|312915|312916|312918|312920|312923|312925|312928|312939|312944|312946|312948|312952|312953|312956|312958|312960|312979|312981|312983|312990|312999|313005|313007|313008|313009|313010|313012|313013|313017|313018|313027|313038|313040|313042", "text": "Benign Neonatal Epilepsy" }, { - "baseId": "34304|215086|404820|677447|919551|920339|971005", + "upstreamId": "34304|215086|404820|677447|919551|920339|971005", "text": "Cutis laxa, autosomal dominant 2" }, { - "baseId": "34351|331050|331071|374645|444943|970955", + "upstreamId": "34351|331050|331071|374645|444943|970955", "text": "Wrinkly skin syndrome" }, { - "baseId": "34359|34359|251291|291692|293023|293025|296355|559682|691486|695217|709053|720645|828574|859301|923359", + "upstreamId": "34359|34359|251291|291692|293023|293025|296355|559682|691486|695217|709053|720645|828574|859301|923359", "text": "Amyotrophic lateral sclerosis 17" }, { - "baseId": "34374|513942", + "upstreamId": "34374|513942", "text": "CNS demyelination" }, { - "baseId": "34374|48413|181438|187273|187274|187330|202625|263198|263255|263351|263363|322495|354286|354287|354295|360849|361119|361148|362226|407647|481485|512868|513983|514002|514076|514090|514111|514142|514192|514193|514215|535696|550740|550741|550742|550743|550744|550745|550746|553299|590061|608934|614512|682850|858734|904214|904239|904355|905854", + "upstreamId": "34374|48413|181438|187273|187274|187330|202625|263198|263255|263351|263363|322495|354286|354287|354295|360849|361119|361148|362226|407647|481485|512868|513983|514002|514076|514090|514111|514142|514192|514193|514215|535696|550740|550741|550742|550743|550744|550745|550746|553299|590061|608934|614512|682850|858734|904214|904239|904355|905854", "text": "Macrocephalus" }, { - "baseId": "34498|34503|34509|101791|101792|134035|134037|134038|134039|134040|134042|134044|134045|134047|134049|134052|134056|140408|140409|140410|140411|167689|168709|168710|168712|168718|168743|168749|169016|169039|190891|207601|208178|278308|278324|279339|279421|279500|280768|281229|281264|306597|306631|310814|310815|310825|314971|315139|316264|316544|316574|319325|319332|322446|327852|327862|333242|333266|334164|334169|335745|335746|335794|335803|335834|338745|340383|340388|340391|340750|340754|343342", + "upstreamId": "34498|34503|34509|101791|101792|134035|134037|134038|134039|134040|134042|134044|134045|134047|134049|134052|134056|140408|140409|140410|140411|167689|168709|168710|168712|168718|168743|168749|169016|169039|190891|207601|208178|278308|278324|279339|279421|279500|280768|281229|281264|306597|306631|310814|310815|310825|314971|315139|316264|316544|316574|319325|319332|322446|327852|327862|333242|333266|334164|334169|335745|335746|335794|335803|335834|338745|340383|340388|340391|340750|340754|343342", "text": "Primary Microcephaly, Recessive" }, { - "baseId": "34639|125784|203772|511019|535384|961353|973046", + "upstreamId": "34639|125784|203772|511019|535384|961353|973046", "text": "KCNQ2-Related Disorders" }, { - "baseId": "34722|39421|39422|39423|39424|49397|427631|427632|514860|576286|613845|679963|682674|777022|850717|850909|855118|855119|855120", + "upstreamId": "34722|39421|39422|39423|39424|49397|427631|427632|514860|576286|613845|679963|682674|777022|850717|850909|855118|855119|855120", "text": "Radial aplasia-thrombocytopenia syndrome" }, { - "baseId": "35747|432287|514115|514117", + "upstreamId": "35747|432287|514115|514117", "text": "Microscopic hematuria" }, { - "baseId": "35747|223747|384401|513894|513895|513923|513924|514113|514114|514118", + "upstreamId": "35747|223747|384401|513894|513895|513923|513924|514113|514114|514118", "text": "Hematuria" }, { - "baseId": "35796|514115", + "upstreamId": "35796|514115", "text": "Mild proteinuria" }, { - "baseId": "35796|384401", + "upstreamId": "35796|384401", "text": "Glomerulopathy" }, { - "baseId": "36140|36173|39105|39106|39106|39106|39107|50227|94253|133407|136441|136493|139786|142921|142922|142923|151879|151967|181036|181036|185427|185427|185428|185438|185443|236534|243064|243077|331636|331637|331639|331641|331643|331644|331645|331648|331650|331653|331656|331658|331659|331662|331664|331668|331672|331679|331683|331684|331686|331694|331695|331698|331701|331704|331707|331711|341892|341894|341895|341897|341898|341903|341904|341907|341916|341919|341922|341923|341928|341929|341932|341934|341935|341937|341940|341942|341944|341945|341948|341949|341956|341957|341959|341961|347245|347248|347262|347263|347266|347267|347270|347274|347278|347279|347281|347284|347285|347288|347289|347290|347292|347293|347295|347297|347313|347315|347320|347323|347325|347332|347333|347335|347337|347339|347340|347347|348571|348573|348574|348576|348581|348598|348600|348602|348608|348609|348610|348611|348613|348621|348622|348626|348628|348632|348633|348642|348644|348645|348647|348649|348652|348653|348656|348660|348669|348670|348680|353480|353481|377048|377096|379055|403342|410379|432469|468069|468948|468989|479334|479365|485542|539082|879352|879353|879354|879355|879356|879357|879358|879359|879360|879361|879362|879363|879364|879365|879366|879367|879368|879369|879370|879371|879372|879373|879374|879375|879376|879377|879378|879379|879380|879381|879382|879383|879384|879385|879386|879387|879388|879389|879390|879391|879392|879393|879394|879395|879396|879397|879398|879399|879400|879401|879402|879403|879404|879405|879406|879407|879408|879409|879410|879411|879412|879413|879414|879415|880666", + "upstreamId": "36140|36173|39105|39106|39106|39106|39107|50227|94253|133407|136441|136493|139786|142921|142922|142923|151879|151967|181036|181036|185427|185427|185428|185438|185443|236534|243064|243077|331636|331637|331639|331641|331643|331644|331645|331648|331650|331653|331656|331658|331659|331662|331664|331668|331672|331679|331683|331684|331686|331694|331695|331698|331701|331704|331707|331711|341892|341894|341895|341897|341898|341903|341904|341907|341916|341919|341922|341923|341928|341929|341932|341934|341935|341937|341940|341942|341944|341945|341948|341949|341956|341957|341959|341961|347245|347248|347262|347263|347266|347267|347270|347274|347278|347279|347281|347284|347285|347288|347289|347290|347292|347293|347295|347297|347313|347315|347320|347323|347325|347332|347333|347335|347337|347339|347340|347347|348571|348573|348574|348576|348581|348598|348600|348602|348608|348609|348610|348611|348613|348621|348622|348626|348628|348632|348633|348642|348644|348645|348647|348649|348652|348653|348656|348660|348669|348670|348680|353480|353481|377048|377096|379055|403342|410379|432469|468069|468948|468989|479334|479365|485542|539082|879352|879353|879354|879355|879356|879357|879358|879359|879360|879361|879362|879363|879364|879365|879366|879367|879368|879369|879370|879371|879372|879373|879374|879375|879376|879377|879378|879379|879380|879381|879382|879383|879384|879385|879386|879387|879388|879389|879390|879391|879392|879393|879394|879395|879396|879397|879398|879399|879400|879401|879402|879403|879404|879405|879406|879407|879408|879409|879410|879411|879412|879413|879414|879415|880666", "text": "Myhre syndrome" }, { - "baseId": "36230|139835|186118|231108|297514|303754|304144|304196|310292|310301|310308|310324|310337|315398|315399|315400|315401|315409|321368|321414|322063|322067|322068|322098|322121|322125|322128|322139|322140|322141|322151|322153|336093|336129|345839|350281|350282|350287|351309|351310|353127|353128|353702", + "upstreamId": "36230|139835|186118|231108|297514|303754|304144|304196|310292|310301|310308|310324|310337|315398|315399|315400|315401|315409|321368|321414|322063|322067|322068|322098|322121|322125|322128|322139|322140|322141|322151|322153|336093|336129|345839|350281|350282|350287|351309|351310|353127|353128|353702", "text": "Hirschsprung Disease, Dominant" }, { - "baseId": "36269", + "upstreamId": "36269", "text": "Elevated basal serum calcitonin" }, { - "baseId": "36278|212794|983518", + "upstreamId": "36278|212794|983518", "text": "Appendicitis" }, { - "baseId": "36301|802092", + "upstreamId": "36301|802092", "text": "Renal hypoplasia/aplasia" }, { - "baseId": "36445", + "upstreamId": "36445", "text": "Classical galactosemia, homozygous Duarte-type" }, { - "baseId": "36672", + "upstreamId": "36672", "text": "Inflammatory bowel disease 5" }, { - "baseId": "37785", + "upstreamId": "37785", "text": "fluorouracil and oxaliplatin response - Efficacy" }, { - "baseId": "37785", + "upstreamId": "37785", "text": "cyclophosphamide and epirubicin response - Efficacy, Toxicity/ADR" }, { - "baseId": "37785|227807|227832", + "upstreamId": "37785|227807|227832", "text": "Platinum compounds response - Toxicity/ADR" }, { - "baseId": "37785|187973|227807|538599", + "upstreamId": "37785|187973|227807|538599", "text": "cisplatin response - Toxicity/ADR" }, { - "baseId": "38302|227781|227783|227800", + "upstreamId": "38302|227781|227783|227800", "text": "acenocoumarol response - Dosage" }, { - "baseId": "38302|227781|227783|227800", + "upstreamId": "38302|227781|227783|227800", "text": "phenprocoumon response - Dosage" }, { - "baseId": "38302|287330|287354|287389|287403|287410|288101|288131|290764|290782|290805|290806|290826|290827|290869|291016|291037|291053|291059|291075|291077|325114|334774|353339", + "upstreamId": "38302|287330|287354|287389|287403|287410|288101|288131|290764|290782|290805|290806|290826|290827|290869|291016|291037|291053|291059|291075|291077|325114|334774|353339", "text": "Vitamin K-Dependent Clotting Factors" }, { - "baseId": "38414|166084|253402|800868|800869|800870|800871|800872|800873|800874|800875|800876|800877|800878|800879|800880|800881|800882|800883|800884|800885|800886|800887|800888|800889|800890|800891|800892|800893|800894|800895|800896|800897|800898", + "upstreamId": "38414|166084|253402|800868|800869|800870|800871|800872|800873|800874|800875|800876|800877|800878|800879|800880|800881|800882|800883|800884|800885|800886|800887|800888|800889|800890|800891|800892|800893|800894|800895|800896|800897|800898", "text": "Three Vessel Coronary Disease" }, { - "baseId": "38432|40114|40115|165819|360806|513906|513959|514053|568036|681597|971422", + "upstreamId": "38432|40114|40115|165819|360806|513906|513959|514053|568036|681597|971422", "text": "Tremor" }, { - "baseId": "38432|486013", + "upstreamId": "38432|486013", "text": "Cogwheel rigidity" }, { - "baseId": "38459|136747|136896|169549|169560|171242|198030|215566|215567|215568|215569|226117|247164|247165", + "upstreamId": "38459|136747|136896|169549|169560|171242|198030|215566|215567|215568|215569|226117|247164|247165", "text": "Malignant hypothermia" }, { - "baseId": "38538|187198|187198|187200|187201|187202|211934|211940|215011|215012|243998|411026|513671|553402|553403|578585|583133|792080|792081|805122|966178|966179|966181|971165", + "upstreamId": "38538|187198|187198|187200|187201|187202|211934|211940|215011|215012|243998|411026|513671|553402|553403|578585|583133|792080|792081|805122|966178|966179|966181|971165", "text": "Infantile cerebellar-retinal degeneration" }, { - "baseId": "38539|38540|38541|38542|38543|38544|53316|53317|133715|133720|176739|176746|178232|178233|178277|178309|208421|231325|231329|231330|269772|272126|361230|376793|376801|378844|378858|378864|378867|430028|430029|433340|445921|467703|490935|492667|497861|497892|506476|506802|507230|532015|532090|532383|553005|646969|677308|694220|694221|694223|695783|704457|704458|704462|798725|855114", + "upstreamId": "38539|38540|38541|38542|38543|38544|53316|53317|133715|133720|176739|176746|178232|178233|178277|178309|208421|231325|231329|231330|269772|272126|361230|376793|376801|378844|378858|378864|378867|430028|430029|433340|445921|467703|490935|492667|497861|497892|506476|506802|507230|532015|532090|532383|553005|646969|677308|694220|694221|694223|695783|704457|704458|704462|798725|855114", "text": "Baraitser-Winter Syndrome 2" }, { - "baseId": "38552|38552|139981|258664|258672|259943|311573|311576|311579|311581|311582|311586|311592|311593|317166|317167|317169|317170|323194|323197|323198|323201|323202|323203|323776|353158|373592|866511|866512|866513|866514|866515|866516|868528|900535|974940|974941", + "upstreamId": "38552|38552|139981|258664|258672|259943|311573|311576|311579|311581|311582|311586|311592|311593|317166|317167|317169|317170|323194|323197|323198|323201|323202|323203|323776|353158|373592|866511|866512|866513|866514|866515|866516|868528|900535|974940|974941", "text": "Multisystemic smooth muscle dysfunction syndrome" }, { - "baseId": "38552", + "upstreamId": "38552", "text": "alterations of great arteries and veins" }, { - "baseId": "38557|38558|38559|311041|311043|311044|311047|311051|311052|311056|311057|316378|316389|316390|322470|323094|323096|323097|323104|323107|323110|323116|724065|788842|790980|790981|866275|866276|866277|866278|866279|866280|866281|866282|866283|868502|903573", + "upstreamId": "38557|38558|38559|311041|311043|311044|311047|311051|311052|311056|311057|316378|316389|316390|322470|323094|323096|323097|323104|323107|323110|323116|724065|788842|790980|790981|866275|866276|866277|866278|866279|866280|866281|866282|866283|868502|903573", "text": "Hypermethioninemia due to adenosine kinase deficiency" }, { - "baseId": "38566|38567", + "upstreamId": "38566|38567", "text": "Hyperbiliverdinemia" }, { - "baseId": "38576|777951", + "upstreamId": "38576|777951", "text": "Acatalasia" }, { - "baseId": "38580|677115|677117|677119|789169|789170|789398|963093", + "upstreamId": "38580|677115|677117|677119|789169|789170|789398|963093", "text": "Prune belly syndrome" }, { - "baseId": "38581|38582|38583|38584|38585|205279|237364|260036|318925|318927|318930|318932|318936|318937|318943|318944|318952|318960|318961|318976|318979|318982|318986|318988|318999|319001|319002|319003|319004|319015|319018|319023|319025|319026|319027|319029|319030|319035|319037|319038|327337|327338|327339|327341|327342|327343|327348|327368|327370|327371|327372|327383|327386|327387|327393|327394|327395|327397|327401|327402|327404|327405|327419|327423|327437|327439|327447|327453|327458|327459|327460|327471|327472|327475|333543|333546|333555|333562|333565|333568|333569|333572|333573|333580|333585|333592|333594|333595|333604|333615|333616|333619|333629|333633|333634|333639|333642|333651|333658|333659|333660|333666|333672|333673|333675|333677|333692|335248|335254|335259|335265|335266|335269|335270|335277|335284|335286|335295|335296|335301|335312|335315|335317|335343|335345|335346|335349|335350|335356|335362|335366|372618|375515|408801|552167|620855|620856|622419|677182|730897|738945|753711|753712|769406|784530|798667|816477|855117|870717|870718|870719|870720|870721|870722|870723|870724|870725|870726|870727|870728|870729|870730|870731|870732|870733|870734|870735|870736|870737|870738|870739|870740|870741|870742|870743|870744|870745|870746|870747|870748|870749|870750|870751|870752|870753|870754|870755|870756|872306|872307|872308|872309|872310|872311|872312|872313|872314|872315|872316|919484|919485|919486|919487|919488|961654|965226|970978", + "upstreamId": "38581|38582|38583|38584|38585|205279|237364|260036|318925|318927|318930|318932|318936|318937|318943|318944|318952|318960|318961|318976|318979|318982|318986|318988|318999|319001|319002|319003|319004|319015|319018|319023|319025|319026|319027|319029|319030|319035|319037|319038|327337|327338|327339|327341|327342|327343|327348|327368|327370|327371|327372|327383|327386|327387|327393|327394|327395|327397|327401|327402|327404|327405|327419|327423|327437|327439|327447|327453|327458|327459|327460|327471|327472|327475|333543|333546|333555|333562|333565|333568|333569|333572|333573|333580|333585|333592|333594|333595|333604|333615|333616|333619|333629|333633|333634|333639|333642|333651|333658|333659|333660|333666|333672|333673|333675|333677|333692|335248|335254|335259|335265|335266|335269|335270|335277|335284|335286|335295|335296|335301|335312|335315|335317|335343|335345|335346|335349|335350|335356|335362|335366|372618|375515|408801|552167|620855|620856|622419|677182|730897|738945|753711|753712|769406|784530|798667|816477|855117|870717|870718|870719|870720|870721|870722|870723|870724|870725|870726|870727|870728|870729|870730|870731|870732|870733|870734|870735|870736|870737|870738|870739|870740|870741|870742|870743|870744|870745|870746|870747|870748|870749|870750|870751|870752|870753|870754|870755|870756|872306|872307|872308|872309|872310|872311|872312|872313|872314|872315|872316|919484|919485|919486|919487|919488|961654|965226|970978", "text": "Porencephaly 2" }, { - "baseId": "38583|38584|38585|48462|48463", + "upstreamId": "38583|38584|38585|48462|48463", "text": "Hemorrhage, intracerebral, susceptibility to" }, { - "baseId": "38590|360853", + "upstreamId": "38590|360853", "text": "Nail dystrophy" }, { - "baseId": "38590|360853|514024", + "upstreamId": "38590|360853|514024", "text": "Abnormality of the skin" }, { - "baseId": "38590|360853", + "upstreamId": "38590|360853", "text": "Skin erosion" }, { - "baseId": "38590|86021|86023|195809|209348|227262|227263|227264|251193|251196|251197|251198|251199|251201|251202|251203|264167|290937|290938|290956|290958|290964|290965|290966|290972|290973|290978|290979|290986|290987|290988|290989|290995|290996|291002|291003|291004|291010|291013|291021|291022|291878|291880|291892|291893|291894|291900|291901|291913|291929|291933|291942|291947|291948|291950|291953|291954|291955|291963|291964|291976|291979|291980|291982|291983|295187|295198|295199|295200|295203|295205|295206|295207|295222|295224|295234|295235|295236|295237|295238|295241|295252|295266|295284|295285|295286|295287|295295|295299|295301|295302|295310|295311|295315|295323|295330|295332|295334|295335|295336|295345|295464|295465|295466|295467|295478|295479|295482|295483|295496|295497|295498|295505|295510|295521|295525|295544|295547|295548|295559|295564|295565|295566|359454|359480|359543|359583|425565|443477|494081|513263|578420|620128|620129|620130|620131|620132|620133|677418|698155|708910|708913|708916|720512|720513|720514|720515|720516|720518|720519|734130|734131|734132|734139|734140|734141|744020|748332|748333|748334|748336|748338|748340|748342|748343|748344|748346|748349|748351|759205|759207|759433|759442|763956|763959|763961|763967|763969|763977|763979|763985|763996|774826|774828|774835|774838|774840|774843|774881|774889|781703|781718|781724|787197|889253|889254|889255|889256|889257|889258|889259|889260|889261|889262|889263|889264|889265|889266|889267|889268|889269|889270|889271|889272|889273|889274|889275|889276|889277|889278|889279|889280|889281|889282|889283|889284|889285|889286|889287|889288|889289|889290|889291|889292|889293|889294|889295|889296|889297|889298|889299|889300|889301|889302|889303|889304|889305|889306|889307|889308|889309|889310|889311|889312|889313|889314|889315|889316|889317|889318|889319|889320|889321|889322|889323|889324|889325|889326|889327|891674|891675|891676|891677|891678|891679|891680|891681|891682|891683|917439|961266", + "upstreamId": "38590|86021|86023|195809|209348|227262|227263|227264|251193|251196|251197|251198|251199|251201|251202|251203|264167|290937|290938|290956|290958|290964|290965|290966|290972|290973|290978|290979|290986|290987|290988|290989|290995|290996|291002|291003|291004|291010|291013|291021|291022|291878|291880|291892|291893|291894|291900|291901|291913|291929|291933|291942|291947|291948|291950|291953|291954|291955|291963|291964|291976|291979|291980|291982|291983|295187|295198|295199|295200|295203|295205|295206|295207|295222|295224|295234|295235|295236|295237|295238|295241|295252|295266|295284|295285|295286|295287|295295|295299|295301|295302|295310|295311|295315|295323|295330|295332|295334|295335|295336|295345|295464|295465|295466|295467|295478|295479|295482|295483|295496|295497|295498|295505|295510|295521|295525|295544|295547|295548|295559|295564|295565|295566|359454|359480|359543|359583|425565|443477|494081|513263|578420|620128|620129|620130|620131|620132|620133|677418|698155|708910|708913|708916|720512|720513|720514|720515|720516|720518|720519|734130|734131|734132|734139|734140|734141|744020|748332|748333|748334|748336|748338|748340|748342|748343|748344|748346|748349|748351|759205|759207|759433|759442|763956|763959|763961|763967|763969|763977|763979|763985|763996|774826|774828|774835|774838|774840|774843|774881|774889|781703|781718|781724|787197|889253|889254|889255|889256|889257|889258|889259|889260|889261|889262|889263|889264|889265|889266|889267|889268|889269|889270|889271|889272|889273|889274|889275|889276|889277|889278|889279|889280|889281|889282|889283|889284|889285|889286|889287|889288|889289|889290|889291|889292|889293|889294|889295|889296|889297|889298|889299|889300|889301|889302|889303|889304|889305|889306|889307|889308|889309|889310|889311|889312|889313|889314|889315|889316|889317|889318|889319|889320|889321|889322|889323|889324|889325|889326|889327|891674|891675|891676|891677|891678|891679|891680|891681|891682|891683|917439|961266", "text": "Dystrophic epidermolysis bullosa" }, { - "baseId": "38590|187110|496362", + "upstreamId": "38590|187110|496362", "text": "Epidermolysis bullosa dystrophica, AD, Epidermolysis bullosa dystrophica, AR" }, { - "baseId": "38592|106940|106974|106975|610623|610624|610625|907566|918715|918716|918717", + "upstreamId": "38592|106940|106974|106975|610623|610624|610625|907566|918715|918716|918717", "text": "Polymicrogyria with or without vascular-type ehlers-danlos syndrome" }, { - "baseId": "38600|267754|282483|282494|404746|538337|619998|677276", + "upstreamId": "38600|267754|282483|282494|404746|538337|619998|677276", "text": "Stickler syndrome, type 5" }, { - "baseId": "38605|38606|55719|55720|55721|55722|55723|55724|55725|55726|55727|55729|55730|55731|55732|55733|55734|55735|174359|174360|174361|174362|174365|174366|174367|174368|174370|174371|174374|174376|174497|174500|174501|174502|174506|174506|191960|193796|194635|195091|195498|195517|195770|227296|229440|229442|229444|229445|229447|229448|229452|229455|229461|229462|229466|229470|229475|229479|252330|266947|270329|270741|299883|299889|299892|299895|299897|299899|299901|299904|299906|302506|302507|302508|302511|302512|302513|302522|302532|302534|302535|302536|302537|306913|306914|306916|306917|306918|306919|306922|306923|306924|306925|306926|306934|306935|307189|307191|307199|307201|307202|307207|307208|307211|307213|307214|368659|406861|496460|496461|501733|501959|537810|552434|655743|795841|798574|895822|895823|895824|895825|895826|895827|895828|895829|895830|895831|895832|895833|895834|895835|895836|895837|895838|895839|895840|895841|895842|895843|895844|895845|895846|895847|896225|896226|896227|896228|896229|896230|896231", + "upstreamId": "38605|38606|55719|55720|55721|55722|55723|55724|55725|55726|55727|55729|55730|55731|55732|55733|55734|55735|174359|174360|174361|174362|174365|174366|174367|174368|174370|174371|174374|174376|174497|174500|174501|174502|174506|174506|191960|193796|194635|195091|195498|195517|195770|227296|229440|229442|229444|229445|229447|229448|229452|229455|229461|229462|229466|229470|229475|229479|252330|266947|270329|270741|299883|299889|299892|299895|299897|299899|299901|299904|299906|302506|302507|302508|302511|302512|302513|302522|302532|302534|302535|302536|302537|306913|306914|306916|306917|306918|306919|306922|306923|306924|306925|306926|306934|306935|307189|307191|307199|307201|307202|307207|307208|307211|307213|307214|368659|406861|496460|496461|501733|501959|537810|552434|655743|795841|798574|895822|895823|895824|895825|895826|895827|895828|895829|895830|895831|895832|895833|895834|895835|895836|895837|895838|895839|895840|895841|895842|895843|895844|895845|895846|895847|896225|896226|896227|896228|896229|896230|896231", "text": "Fibrochondrogenesis 2" }, { - "baseId": "38615|38616|614221", + "upstreamId": "38615|38616|614221", "text": "Type I complement component 8 deficiency" }, { - "baseId": "38626|125779|125780|125781|125782|125783|153633|153634|153635", + "upstreamId": "38626|125779|125780|125781|125782|125783|153633|153634|153635", "text": "Efavirenz response" }, { - "baseId": "38626|227805", + "upstreamId": "38626|227805", "text": "nevirapine response - Other" }, { - "baseId": "38626", + "upstreamId": "38626", "text": "efavirenz response - Dosage" }, { - "baseId": "38626", + "upstreamId": "38626", "text": "methadone response - Dosage" }, { - "baseId": "38626", + "upstreamId": "38626", "text": "efavirenz response - Toxicity/ADR" }, { - "baseId": "38628|38629|389689|389696|699194|699196|710044|721568", + "upstreamId": "38628|38629|389689|389696|699194|699196|710044|721568", "text": "Megaloblastic anemia due to dihydrofolate reductase deficiency" }, { - "baseId": "38630|38631|38632|38633|38634|38635|38636|205191|270131|335821|335826|335832|335839|335841|335842|335851|335852|335855|335858|335866|335873|335874|335879|335883|335884|345530|345533|345542|345549|345552|345553|345555|345557|345560|345561|345568|345582|345585|345590|345591|350134|350135|350136|350139|350140|350141|350142|350144|350145|350148|350149|350151|350152|350153|350154|350156|351186|351189|351190|351194|351196|351198|351199|351202|351207|351209|351210|620664|620665|622785|682487|689211|689212|694571|742471|886299|886300|886301|886302|886303|886304|886305|886306|886307|886308|886309|886310|886311|886312|886313|886314|886315|886316|886317|886318|886319|886320|886321|886322|919921|951130", + "upstreamId": "38630|38631|38632|38633|38634|38635|38636|205191|270131|335821|335826|335832|335839|335841|335842|335851|335852|335855|335858|335866|335873|335874|335879|335883|335884|345530|345533|345542|345549|345552|345553|345555|345557|345560|345561|345568|345582|345585|345590|345591|350134|350135|350136|350139|350140|350141|350142|350144|350145|350148|350149|350151|350152|350153|350154|350156|351186|351189|351190|351194|351196|351198|351199|351202|351207|351209|351210|620664|620665|622785|682487|689211|689212|694571|742471|886299|886300|886301|886302|886303|886304|886305|886306|886307|886308|886309|886310|886311|886312|886313|886314|886315|886316|886317|886318|886319|886320|886321|886322|919921|951130", "text": "Hypercalcemia, infantile, 1" }, { - "baseId": "38634", + "upstreamId": "38634", "text": "Muscle cramps" }, { - "baseId": "38637|38638|140835|140836|140837|171896|190998|193476|193775|194159|232060|232065|232066|245096|245098|245099|245100|245103|245104|245105|245106|256729|256730|256731|256732|256733|256735|256736|256737|266369|270033|270038|270739|273947|332307|332309|332315|332316|332324|332339|332340|332346|342461|342466|342468|342474|342483|342485|342487|342489|342497|342499|342506|347871|347874|347877|347881|347886|347887|347890|347893|347901|347904|347906|347908|347910|349204|349206|349213|349214|349216|349217|349219|349220|349223|349227|349232|349237|349238|349241|353483|360363|360364|361039|363769|376068|376078|376984|376986|376990|376993|377000|379110|379133|379135|379144|379145|379148|415611|432019|446014|468177|468184|468185|468190|468192|468193|469466|469472|469473|469477|469483|469491|469500|469927|469929|469936|469941|469942|469945|489958|492299|506637|507436|532373|532378|532380|532387|532395|532396|532402|532403|532407|532416|532420|532425|532432|532434|532439|532451|532493|532496|532501|532507|532509|532513|532514|532518|532522|532835|532836|532840|532845|532846|532847|536972|538482|570293|570294|570299|570301|572027|572029|572033|572035|572038|572039|572042|572048|572049|572720|572723|572724|572725|572728|572731|572732|574789|574790|574791|574792|574793|574794|574795|574796|584032|584381|610131|622449|647397|647398|647399|647400|647401|647402|647403|647404|647405|647406|647407|647408|647409|647410|647411|647412|647413|647414|647415|647416|647417|652973|653587|653588|694292|694293|694294|694297|694298|695797|704705|704706|704709|704710|704711|727836|727837|727838|727839|756606|760547|772280|772281|772290|776514|776518|778601|785987|797711|800095|847015|847016|847017|847018|847019|847020|847021|847022|847023|847024|847025|847026|847027|847028|847029|847030|847031|847032|847033|847034|847035|847036|847037|847038|847039|847040|847041|847042|847043|847044|851779|852297|852298|852828|852943|879744|879745|879746|879747|879748|879749|879750|879751|879752|879753|879754|879755|879756|879757|879758|879759|879760|879761|880680|880681|928768|928769|928770|928771|928772|928773|928774|928775|928776|928777|928778|928779|928780|928781|928782|928783|938493|938494|938495|938496|938497|938498|938499|938500|938501|950581|950582|950583|950584|950585|950586|950587|950588|950589|950590|950591|950592|950593|950594|958493|958494|958495|958496|958497|958498|958499|958500|960273|960909", + "upstreamId": "38637|38638|140835|140836|140837|171896|190998|193476|193775|194159|232060|232065|232066|245096|245098|245099|245100|245103|245104|245105|245106|256729|256730|256731|256732|256733|256735|256736|256737|266369|270033|270038|270739|273947|332307|332309|332315|332316|332324|332339|332340|332346|342461|342466|342468|342474|342483|342485|342487|342489|342497|342499|342506|347871|347874|347877|347881|347886|347887|347890|347893|347901|347904|347906|347908|347910|349204|349206|349213|349214|349216|349217|349219|349220|349223|349227|349232|349237|349238|349241|353483|360363|360364|361039|363769|376068|376078|376984|376986|376990|376993|377000|379110|379133|379135|379144|379145|379148|415611|432019|446014|468177|468184|468185|468190|468192|468193|469466|469472|469473|469477|469483|469491|469500|469927|469929|469936|469941|469942|469945|489958|492299|506637|507436|532373|532378|532380|532387|532395|532396|532402|532403|532407|532416|532420|532425|532432|532434|532439|532451|532493|532496|532501|532507|532509|532513|532514|532518|532522|532835|532836|532840|532845|532846|532847|536972|538482|570293|570294|570299|570301|572027|572029|572033|572035|572038|572039|572042|572048|572049|572720|572723|572724|572725|572728|572731|572732|574789|574790|574791|574792|574793|574794|574795|574796|584032|584381|610131|622449|647397|647398|647399|647400|647401|647402|647403|647404|647405|647406|647407|647408|647409|647410|647411|647412|647413|647414|647415|647416|647417|652973|653587|653588|694292|694293|694294|694297|694298|695797|704705|704706|704709|704710|704711|727836|727837|727838|727839|756606|760547|772280|772281|772290|776514|776518|778601|785987|797711|800095|847015|847016|847017|847018|847019|847020|847021|847022|847023|847024|847025|847026|847027|847028|847029|847030|847031|847032|847033|847034|847035|847036|847037|847038|847039|847040|847041|847042|847043|847044|851779|852297|852298|852828|852943|879744|879745|879746|879747|879748|879749|879750|879751|879752|879753|879754|879755|879756|879757|879758|879759|879760|879761|880680|880681|928768|928769|928770|928771|928772|928773|928774|928775|928776|928777|928778|928779|928780|928781|928782|928783|938493|938494|938495|938496|938497|938498|938499|938500|938501|950581|950582|950583|950584|950585|950586|950587|950588|950589|950590|950591|950592|950593|950594|958493|958494|958495|958496|958497|958498|958499|958500|960273|960909", "text": "Hereditary sensory neuropathy type IE" }, { - "baseId": "38642|38643|38644", + "upstreamId": "38642|38643|38644", "text": "Calcification of joints and arteries" }, { - "baseId": "38646|672204", + "upstreamId": "38646|672204", "text": "Pregnancy loss, recurrent, susceptibility to, 3" }, { - "baseId": "38651|38652|38653|38654|539060|581917", + "upstreamId": "38651|38652|38653|38654|539060|581917", "text": "Geleophysic dysplasia 2" }, { - "baseId": "38660|50024|138152|138154|141073|141074|141075|141076|151752|181639|181641|181642|210711|210712|238255|238258|280141|280156|280159|280161|280165|280166|280167|280504|280508|280509|280521|280522|280523|281814|281817|281818|281821|281822|281825|281943|281944|281945|281954", + "upstreamId": "38660|50024|138152|138154|141073|141074|141075|141076|151752|181639|181641|181642|210711|210712|238255|238258|280141|280156|280159|280161|280165|280166|280167|280504|280508|280509|280521|280522|280523|281814|281817|281818|281821|281822|281825|281943|281944|281945|281954", "text": "Multiple Cutaneous and Uterine Leiomyomas" }, { - "baseId": "38664|38665|38666|38666|38667|38668|38669|38670|38671|38674|48186|138203|138204|138205|138207|213546|227183|227183|239097|239099|239101|239102|239103|239104|239104|239105|239106|239106|239107|250899|250902|250903|250904|250905|288577|288595|288596|289352|289358|393297|393298|393299|393303|393309|393311|393315|393317|393319|393322|393324|393326|393368|393371|393379|393384|393392|393394|393396|393498|393498|393500|393500|393503|393504|393508|393518|393520|393523|393538|393545|393557|393713|393716|393730|393732|393733|393735|393743|393746|393746|393749|393750|424448|428133|428133|451830|451837|451842|451850|451852|451853|451854|452031|452032|452040|452042|452044|452054|452056|452058|452064|452066|452073|452074|452078|452082|452092|452094|452158|452161|452163|452164|452167|452168|452169|452172|452174|452262|452262|452263|452265|452269|452289|452291|452293|452293|452294|518871|518873|518878|518881|518883|518887|518888|518890|518893|518894|518902|518904|518904|518907|518909|518915|519065|519066|519071|519073|519077|519089|519091|519096|558796|558798|558800|558802|558804|558806|558808|558810|558812|558814|558816|558818|559337|559339|559341|559343|559345|561187|561189|561191|561194|561198|562180|562373|562381|562384|562387|562407|562408|624050|630893|630894|630895|630896|630897|630898|630899|630900|630901|630902|630903|630904|630905|630906|630907|630908|630909|630910|630911|630912|630913|630914|630915|630916|630917|630918|630919|630920|630921|630922|630923|630924|630925|630926|630927|630928|630929|630930|630931|630932|630933|630934|630935|630936|630937|630938|630939|630940|630941|630942|630943|630944|630945|630946|630947|651029|651106|683539|686323|686324|686325|686326|686327|686328|686330|689728|689729|689730|689731|691290|691291|691292|691293|691295|691296|691297|695173|697818|697819|697820|697821|708543|733761|747961|759191|763596|763597|763604|777347|781548|789281|819319|819320|827472|827473|827474|827475|827476|827477|827478|827479|827480|827481|827482|827483|827484|827485|827486|827487|827488|827489|827490|827491|827492|827493|827494|827495|827496|827497|827498|827499|827500|827501|827502|827503|827504|827505|827506|827507|827508|827509|827510|827511|827512|827513|827514|827515|827516|827517|851021|851023|851530|923031|923032|923033|923034|923035|923036|923037|923038|923039|923040|923041|923042|923043|923044|923045|931740|931741|931742|931743|931744|931745|931745|931746|931747|931748|931749|931750|931751|931752|931753|931754|931755|943304|943305|943306|943307|943308|943309|943310|943311|943312|943313|943314|943315|943316|943317|953325|953326|953327|953328|953329|953330|953331|953332|953333|953334", + "upstreamId": "38664|38665|38666|38666|38667|38668|38669|38670|38671|38674|48186|138203|138204|138205|138207|213546|227183|227183|239097|239099|239101|239102|239103|239104|239104|239105|239106|239106|239107|250899|250902|250903|250904|250905|288577|288595|288596|289352|289358|393297|393298|393299|393303|393309|393311|393315|393317|393319|393322|393324|393326|393368|393371|393379|393384|393392|393394|393396|393498|393498|393500|393500|393503|393504|393508|393518|393520|393523|393538|393545|393557|393713|393716|393730|393732|393733|393735|393743|393746|393746|393749|393750|424448|428133|428133|451830|451837|451842|451850|451852|451853|451854|452031|452032|452040|452042|452044|452054|452056|452058|452064|452066|452073|452074|452078|452082|452092|452094|452158|452161|452163|452164|452167|452168|452169|452172|452174|452262|452262|452263|452265|452269|452289|452291|452293|452293|452294|518871|518873|518878|518881|518883|518887|518888|518890|518893|518894|518902|518904|518904|518907|518909|518915|519065|519066|519071|519073|519077|519089|519091|519096|558796|558798|558800|558802|558804|558806|558808|558810|558812|558814|558816|558818|559337|559339|559341|559343|559345|561187|561189|561191|561194|561198|562180|562373|562381|562384|562387|562407|562408|624050|630893|630894|630895|630896|630897|630898|630899|630900|630901|630902|630903|630904|630905|630906|630907|630908|630909|630910|630911|630912|630913|630914|630915|630916|630917|630918|630919|630920|630921|630922|630923|630924|630925|630926|630927|630928|630929|630930|630931|630932|630933|630934|630935|630936|630937|630938|630939|630940|630941|630942|630943|630944|630945|630946|630947|651029|651106|683539|686323|686324|686325|686326|686327|686328|686330|689728|689729|689730|689731|691290|691291|691292|691293|691295|691296|691297|695173|697818|697819|697820|697821|708543|733761|747961|759191|763596|763597|763604|777347|781548|789281|819319|819320|827472|827473|827474|827475|827476|827477|827478|827479|827480|827481|827482|827483|827484|827485|827486|827487|827488|827489|827490|827491|827492|827493|827494|827495|827496|827497|827498|827499|827500|827501|827502|827503|827504|827505|827506|827507|827508|827509|827510|827511|827512|827513|827514|827515|827516|827517|851021|851023|851530|923031|923032|923033|923034|923035|923036|923037|923038|923039|923040|923041|923042|923043|923044|923045|931740|931741|931742|931743|931744|931745|931745|931746|931747|931748|931749|931750|931751|931752|931753|931754|931755|943304|943305|943306|943307|943308|943309|943310|943311|943312|943313|943314|943315|943316|943317|953325|953326|953327|953328|953329|953330|953331|953332|953333|953334", "text": "Dendritic cell, monocyte, B lymphocyte, and natural killer lymphocyte deficiency" }, { - "baseId": "38664|38666|47727|207040|207041|428130|428131", + "upstreamId": "38664|38666|47727|207040|207041|428130|428131", "text": "Leukemia, acute myeloid, susceptibility to" }, { - "baseId": "38666|38672|38673|38674|38674|38675|38676|138203|138204|138204|138205|138205|138206|138207|213545|213546|227183|239097|239097|239099|239101|239102|239102|239103|239104|239104|239105|239106|239107|239107|250899|250899|250902|250902|250903|250904|250904|250905|250905|250906|288558|288559|288562|288566|288567|288569|288577|288577|288595|288595|288596|288596|288605|288614|289333|289338|289350|289351|289352|289352|289358|289358|289361|292356|292357|292359|292371|292373|292382|292386|292390|292391|292392|292482|292483|292484|292486|292489|292490|292491|292497|292499|292503|292504|292508|393131|393297|393298|393299|393299|393303|393309|393311|393315|393317|393319|393322|393324|393326|393368|393371|393379|393384|393392|393394|393396|393498|393498|393500|393500|393500|393503|393504|393508|393518|393520|393523|393538|393538|393545|393557|393557|393713|393713|393716|393730|393732|393733|393735|393743|393746|393746|393749|393750|428130|428133|428133|451830|451837|451842|451850|451852|451853|451854|452031|452032|452040|452042|452044|452054|452056|452058|452064|452066|452073|452074|452078|452082|452092|452094|452158|452161|452163|452164|452167|452168|452169|452172|452174|452262|452262|452263|452265|452265|452269|452289|452291|452293|452294|518871|518871|518873|518878|518881|518883|518887|518888|518890|518893|518894|518902|518904|518907|518909|518915|519065|519066|519071|519073|519077|519089|519091|519096|558796|558798|558800|558802|558804|558806|558808|558810|558812|558814|558816|558818|559337|559339|559341|559343|559345|561187|561189|561191|561194|561194|561198|562180|562373|562381|562384|562387|562407|562408|612083|630893|630894|630895|630896|630897|630898|630899|630900|630901|630902|630903|630904|630905|630906|630907|630908|630909|630910|630911|630912|630913|630914|630915|630916|630917|630918|630919|630920|630921|630922|630923|630924|630925|630926|630927|630928|630929|630930|630931|630932|630933|630934|630935|630936|630937|630938|630939|630940|630941|630942|630943|630944|630945|630946|630947|651029|651106|683539|686323|686324|686325|686326|686327|686328|686330|689728|689729|689730|689731|691290|691291|691292|691293|691295|691296|691297|695173|697818|697819|697820|697821|708543|733761|747961|759191|763596|763597|763602|763604|777347|781548|789281|790325|790326|790327|819319|819320|827472|827473|827474|827475|827476|827477|827478|827479|827480|827481|827482|827483|827484|827485|827486|827487|827488|827489|827490|827491|827492|827493|827494|827495|827496|827497|827498|827499|827500|827501|827502|827503|827504|827505|827506|827507|827508|827509|827510|827511|827512|827513|827514|827515|827516|827517|851021|851023|851530|887856|887857|887858|887859|887860|887861|887862|887863|887864|887865|887866|887867|887868|887869|887870|887871|887872|887873|923031|923032|923033|923034|923035|923036|923037|923038|923039|923040|923041|923042|923043|923044|923045|931740|931741|931742|931743|931744|931745|931746|931747|931748|931749|931750|931751|931752|931753|931754|931755|943304|943305|943306|943307|943308|943309|943310|943311|943312|943313|943314|943315|943316|943317|953325|953326|953327|953328|953329|953330|953331|953332|953333|953334|970752", + "upstreamId": "38666|38672|38673|38674|38674|38675|38676|138203|138204|138204|138205|138205|138206|138207|213545|213546|227183|239097|239097|239099|239101|239102|239102|239103|239104|239104|239105|239106|239107|239107|250899|250899|250902|250902|250903|250904|250904|250905|250905|250906|288558|288559|288562|288566|288567|288569|288577|288577|288595|288595|288596|288596|288605|288614|289333|289338|289350|289351|289352|289352|289358|289358|289361|292356|292357|292359|292371|292373|292382|292386|292390|292391|292392|292482|292483|292484|292486|292489|292490|292491|292497|292499|292503|292504|292508|393131|393297|393298|393299|393299|393303|393309|393311|393315|393317|393319|393322|393324|393326|393368|393371|393379|393384|393392|393394|393396|393498|393498|393500|393500|393500|393503|393504|393508|393518|393520|393523|393538|393538|393545|393557|393557|393713|393713|393716|393730|393732|393733|393735|393743|393746|393746|393749|393750|428130|428133|428133|451830|451837|451842|451850|451852|451853|451854|452031|452032|452040|452042|452044|452054|452056|452058|452064|452066|452073|452074|452078|452082|452092|452094|452158|452161|452163|452164|452167|452168|452169|452172|452174|452262|452262|452263|452265|452265|452269|452289|452291|452293|452294|518871|518871|518873|518878|518881|518883|518887|518888|518890|518893|518894|518902|518904|518907|518909|518915|519065|519066|519071|519073|519077|519089|519091|519096|558796|558798|558800|558802|558804|558806|558808|558810|558812|558814|558816|558818|559337|559339|559341|559343|559345|561187|561189|561191|561194|561194|561198|562180|562373|562381|562384|562387|562407|562408|612083|630893|630894|630895|630896|630897|630898|630899|630900|630901|630902|630903|630904|630905|630906|630907|630908|630909|630910|630911|630912|630913|630914|630915|630916|630917|630918|630919|630920|630921|630922|630923|630924|630925|630926|630927|630928|630929|630930|630931|630932|630933|630934|630935|630936|630937|630938|630939|630940|630941|630942|630943|630944|630945|630946|630947|651029|651106|683539|686323|686324|686325|686326|686327|686328|686330|689728|689729|689730|689731|691290|691291|691292|691293|691295|691296|691297|695173|697818|697819|697820|697821|708543|733761|747961|759191|763596|763597|763602|763604|777347|781548|789281|790325|790326|790327|819319|819320|827472|827473|827474|827475|827476|827477|827478|827479|827480|827481|827482|827483|827484|827485|827486|827487|827488|827489|827490|827491|827492|827493|827494|827495|827496|827497|827498|827499|827500|827501|827502|827503|827504|827505|827506|827507|827508|827509|827510|827511|827512|827513|827514|827515|827516|827517|851021|851023|851530|887856|887857|887858|887859|887860|887861|887862|887863|887864|887865|887866|887867|887868|887869|887870|887871|887872|887873|923031|923032|923033|923034|923035|923036|923037|923038|923039|923040|923041|923042|923043|923044|923045|931740|931741|931742|931743|931744|931745|931746|931747|931748|931749|931750|931751|931752|931753|931754|931755|943304|943305|943306|943307|943308|943309|943310|943311|943312|943313|943314|943315|943316|943317|953325|953326|953327|953328|953329|953330|953331|953332|953333|953334|970752", "text": "Lymphedema, primary, with myelodysplasia" }, { - "baseId": "38679", + "upstreamId": "38679", "text": "Aspartate aminotransferase, serum level of, quantitative trait locus 1" }, { - "baseId": "38680|38681|104297|104298|134626|134627|205760|207676|207677|207679|226648|226648|240590|240591|240592|259921|361450|370290|370291|370301|370307|370318|370336|370807|370815|370817|371129|371144|372890|372907|384406|397053|397219|397223|397237|397395|397398|397407|413805|428970|459041|459048|459052|459054|459362|459363|459365|459903|459904|459908|459909|480551|480552|480553|480554|480555|480559|502869|503054|511823|511828|511828|513298|524440|524444|524446|524727|524733|524739|524884|525019|525024|525026|550363|552138|553173|563097|563099|565812|565815|568864|568866|568868|590061|614342|614343|638106|638107|638108|638109|638110|638111|638112|651895|651897|652151|655951|678940|687468|687469|687470|687472|687473|687476|687477|759791|767315|783367|790874|798617|798618|802169|816364|820032|820104|820105|821995|821996|821997|821998|821999|822000|822001|822002|822268|822269|835935|835936|835937|835938|835939|835940|835941|851258|852176|906193|906194|925521|925522|925523|925524|934683|940935|946534|946535|946536|946537|946538|946539|955773|955774|955775|961294|964322|964323|970903|975662", + "upstreamId": "38680|38681|104297|104298|134626|134627|205760|207676|207677|207679|226648|226648|240590|240591|240592|259921|361450|370290|370291|370301|370307|370318|370336|370807|370815|370817|371129|371144|372890|372907|384406|397053|397219|397223|397237|397395|397398|397407|413805|428970|459041|459048|459052|459054|459362|459363|459365|459903|459904|459908|459909|480551|480552|480553|480554|480555|480559|502869|503054|511823|511828|511828|513298|524440|524444|524446|524727|524733|524739|524884|525019|525024|525026|550363|552138|553173|563097|563099|565812|565815|568864|568866|568868|590061|614342|614343|638106|638107|638108|638109|638110|638111|638112|651895|651897|652151|655951|678940|687468|687469|687470|687472|687473|687476|687477|759791|767315|783367|790874|798617|798618|802169|816364|820032|820104|820105|821995|821996|821997|821998|821999|822000|822001|822002|822268|822269|835935|835936|835937|835938|835939|835940|835941|851258|852176|906193|906194|925521|925522|925523|925524|934683|940935|946534|946535|946536|946537|946538|946539|955773|955774|955775|961294|964322|964323|970903|975662", "text": "Neurodevelopmental disorder with or without hyperkinetic movements and seizures, autosomal dominant" }, { - "baseId": "38683|38684|38685|38686|48257|48258|48259|48260|82378|104323|104324|104326|104328|104329|104333|104334|134646|134649|134649|134652|134653|134654|141218|141218|141221|141222|141223|141224|152907|171801|171802|171803|202652|202654|202655|202656|202658|202661|202663|202664|202666|202667|202668|202669|202669|202670|202671|202672|202675|202676|202677|202678|202680|202681|205273|205273|205274|207945|207945|215446|225816|226651|231830|231831|231831|231833|231834|231836|231837|231838|231839|231840|231841|231842|231844|241528|241529|244773|244777|244778|244780|244782|244785|244787|244791|244793|244793|244794|244795|244797|244800|244803|244810|244814|244815|263825|264518|264589|264589|323830|323834|323848|329924|331237|360033|360082|360939|361140|361141|361203|363682|372139|372862|372867|372872|373105|374861|398860|398865|398867|398874|398876|399031|399032|399034|399332|399340|399343|399345|399346|399587|408604|421912|421913|424660|429407|429408|462048|462052|462055|462057|462059|462310|462312|462315|482276|482276|495730|503713|504002|504011|504018|504233|504235|504242|504700|527011|527015|527017|527018|527021|527029|527224|527229|527234|527237|527240|527242|527244|527544|527546|551720|552155|552157|552160|553385|565352|565355|566731|566732|566738|566744|566746|567923|567926|567928|567929|567934|567934|567941|571707|571713|571720|571731|579767|579773|579777|611410|614369|640993|640994|640995|640996|640997|640998|640999|641000|641001|641002|641003|641004|641005|641006|641007|641008|652460|652688|684314|684316|687937|687938|687939|687940|687942|687946|693171|753264|769021|769025|784347|788865|791215|791216|791217|791218|791219|791220|815997|820452|820453|822058|822059|822060|822061|822062|822063|822064|822065|822066|822067|822068|839694|839695|839696|839697|839698|839699|839700|839700|839701|839702|839703|839704|839705|839706|839707|839708|839709|839710|839711|839712|839713|839714|839715|839716|839717|839718|852467|855108|859953|904304|904916|904917|904918|904919|904920|904921|904922|904923|904924|904925|904926|904927|904928|904929|904930|904931|904932|904933|904934|904935|904936|904937|904938|904939|904940|917108|917108|919420|919421|920314|926574|926575|926576|926577|926578|926579|926580|936038|936039|936040|936041|936042|941028|947919|947920|947921|947922|947923|956820|956821|956822|956823|956824|963749|964381|967250|967276|969373|976661|980945|983304", + "upstreamId": "38683|38684|38685|38686|48257|48258|48259|48260|82378|104323|104324|104326|104328|104329|104333|104334|134646|134649|134649|134652|134653|134654|141218|141218|141221|141222|141223|141224|152907|171801|171802|171803|202652|202654|202655|202656|202658|202661|202663|202664|202666|202667|202668|202669|202669|202670|202671|202672|202675|202676|202677|202678|202680|202681|205273|205273|205274|207945|207945|215446|225816|226651|231830|231831|231831|231833|231834|231836|231837|231838|231839|231840|231841|231842|231844|241528|241529|244773|244777|244778|244780|244782|244785|244787|244791|244793|244793|244794|244795|244797|244800|244803|244810|244814|244815|263825|264518|264589|264589|323830|323834|323848|329924|331237|360033|360082|360939|361140|361141|361203|363682|372139|372862|372867|372872|373105|374861|398860|398865|398867|398874|398876|399031|399032|399034|399332|399340|399343|399345|399346|399587|408604|421912|421913|424660|429407|429408|462048|462052|462055|462057|462059|462310|462312|462315|482276|482276|495730|503713|504002|504011|504018|504233|504235|504242|504700|527011|527015|527017|527018|527021|527029|527224|527229|527234|527237|527240|527242|527244|527544|527546|551720|552155|552157|552160|553385|565352|565355|566731|566732|566738|566744|566746|567923|567926|567928|567929|567934|567934|567941|571707|571713|571720|571731|579767|579773|579777|611410|614369|640993|640994|640995|640996|640997|640998|640999|641000|641001|641002|641003|641004|641005|641006|641007|641008|652460|652688|684314|684316|687937|687938|687939|687940|687942|687946|693171|753264|769021|769025|784347|788865|791215|791216|791217|791218|791219|791220|815997|820452|820453|822058|822059|822060|822061|822062|822063|822064|822065|822066|822067|822068|839694|839695|839696|839697|839698|839699|839700|839700|839701|839702|839703|839704|839705|839706|839707|839708|839709|839710|839711|839712|839713|839714|839715|839716|839717|839718|852467|855108|859953|904304|904916|904917|904918|904919|904920|904921|904922|904923|904924|904925|904926|904927|904928|904929|904930|904931|904932|904933|904934|904935|904936|904937|904938|904939|904940|917108|917108|919420|919421|920314|926574|926575|926576|926577|926578|926579|926580|936038|936039|936040|936041|936042|941028|947919|947920|947921|947922|947923|956820|956821|956822|956823|956824|963749|964381|967250|967276|969373|976661|980945|983304", "text": "Mental retardation, autosomal dominant 6" }, { - "baseId": "38687|38688|48261|48262|94304|94305|94306|94307|94308|94309|94310|94311|104342|104346|104348|104352|104353|104354|104360|104362|104367|134632|134635|134636|134637|134638|134639|134640|134641|134642|134645|141207|141208|141209|141211|141212|141213|141214|141216|192825|203073|203074|203075|203076|203318|203319|203321|203322|203323|203324|203328|203330|203333|203334|203341|203342|203344|203345|203349|203350|203351|203353|203355|203356|203358|203359|203369|203371|203372|203374|205020|208329|208331|225838|242573|242574|247126|259310|260147|268933|268934|270005|271783|271883|326917|326918|326922|326924|326926|326927|326928|326933|326935|326936|326938|326945|326946|326950|326953|326955|326957|326963|326965|326968|326972|326974|326976|326985|326987|326996|327000|327007|327009|327011|327015|327016|327017|327025|327026|327030|327031|327034|327041|327042|327049|327059|336823|336827|336832|336842|336844|336845|336846|336850|336851|336853|336856|336862|336866|336867|336877|336882|336883|336888|336889|336893|336895|336896|336902|336907|336908|336909|336916|336918|336920|336926|336928|336930|336935|336937|336939|336940|336942|336952|336953|336957|336960|336962|341766|341768|343088|343089|343093|343095|343099|343101|343105|343106|343111|343112|343113|343114|343116|343119|343122|343123|343127|343128|343130|343131|343132|343133|343134|343135|343137|343139|343141|343146|343148|343149|343154|343157|343160|343161|343165|343166|343167|343171|343172|343173|343174|343178|343181|343182|343183|343184|343186|343187|344697|344700|344714|344716|344717|344721|344731|344732|344737|344738|344749|344750|344753|344756|344757|344759|344761|344764|344765|344769|344770|344775|344781|344787|344794|344799|344801|344802|344804|344807|344813|344815|344816|344818|361317|362338|362345|362346|374816|374818|374822|374830|375693|375698|375866|375872|375880|375897|375920|375922|376976|378002|378008|378010|378011|378015|378017|378028|378030|378038|378046|401444|401454|401459|401471|401477|401489|401490|401492|402223|402225|402229|409809|409815|409818|422139|426196|426197|426688|429917|429918|438002|441937|445689|465388|465466|465704|466195|466197|466978|466981|467042|467051|467052|467056|467296|467297|467303|467311|467312|481392|486724|505713|505723|505910|505912|506119|506674|512255|513255|513463|529254|529287|529586|529861|530452|530456|530467|530472|530598|530611|530612|530624|530791|530803|530812|530816|530997|530998|530999|536925|538462|539069|550846|551739|552198|567460|568529|568538|568560|569433|569437|570647|570648|570650|570657|570725|570732|574229|574233|574237|574238|574239|574240|580175|580272|588073|611423|611424|611425|613614|643760|643761|643762|643763|643764|645244|645245|645246|645247|645248|645249|645250|645251|645252|645253|645254|645255|645257|645258|645259|645260|645261|645262|645263|645264|645265|645266|645267|645268|645269|645270|645271|652604|656332|684654|684655|688733|688734|695722|695723|731123|740542|770467|771219|771220|771227|785457|785460|789383|791520|791665|791666|791667|791668|791669|791670|791671|800674|802015|802016|802017|802018|802019|802060|802061|820963|820964|820965|820966|820967|822113|822114|822115|822124|822125|822126|842947|844646|844647|844648|844649|844650|844651|844652|844653|844654|844655|844656|844657|844658|844660|844661|844662|844663|844664|844665|844666|844667|844668|852149|852151|852688|852844|858574|874561|874562|876280|876281|876282|876283|876284|876285|876286|876287|876288|876289|876290|876291|876292|876293|876294|876295|876296|876297|876298|876299|876300|876301|876302|876303|876304|876305|876306|876307|876308|876309|876310|876311|876312|876313|876314|876315|876316|876317|876318|876319|876320|876321|876322|876323|876324|876325|876326|876327|876328|876329|876330|876331|876332|876333|876334|876335|876336|876337|876338|876339|876340|876341|876342|876343|876344|876345|876346|876347|876348|876349|876350|876351|876352|876353|876744|876745|904245|906190|906191|906192|917225|919693|919694|919695|919696|927518|928036|928037|928038|928039|928040|928041|928042|928043|928044|928045|928046|928047|928048|928049|937161|937698|937699|937700|937701|937702|937703|937704|937707|937708|937709|937710|937711|940379|949122|949123|949675|949676|949677|949678|949679|949680|949681|949682|949684|949685|949686|949687|949688|949689|957975|957976|957977|961332|963823|964440|964464|964465|964466|964467|969124|971061|971062|977280|983689", + "upstreamId": "38687|38688|48261|48262|94304|94305|94306|94307|94308|94309|94310|94311|104342|104346|104348|104352|104353|104354|104360|104362|104367|134632|134635|134636|134637|134638|134639|134640|134641|134642|134645|141207|141208|141209|141211|141212|141213|141214|141216|192825|203073|203074|203075|203076|203318|203319|203321|203322|203323|203324|203328|203330|203333|203334|203341|203342|203344|203345|203349|203350|203351|203353|203355|203356|203358|203359|203369|203371|203372|203374|205020|208329|208331|225838|242573|242574|247126|259310|260147|268933|268934|270005|271783|271883|326917|326918|326922|326924|326926|326927|326928|326933|326935|326936|326938|326945|326946|326950|326953|326955|326957|326963|326965|326968|326972|326974|326976|326985|326987|326996|327000|327007|327009|327011|327015|327016|327017|327025|327026|327030|327031|327034|327041|327042|327049|327059|336823|336827|336832|336842|336844|336845|336846|336850|336851|336853|336856|336862|336866|336867|336877|336882|336883|336888|336889|336893|336895|336896|336902|336907|336908|336909|336916|336918|336920|336926|336928|336930|336935|336937|336939|336940|336942|336952|336953|336957|336960|336962|341766|341768|343088|343089|343093|343095|343099|343101|343105|343106|343111|343112|343113|343114|343116|343119|343122|343123|343127|343128|343130|343131|343132|343133|343134|343135|343137|343139|343141|343146|343148|343149|343154|343157|343160|343161|343165|343166|343167|343171|343172|343173|343174|343178|343181|343182|343183|343184|343186|343187|344697|344700|344714|344716|344717|344721|344731|344732|344737|344738|344749|344750|344753|344756|344757|344759|344761|344764|344765|344769|344770|344775|344781|344787|344794|344799|344801|344802|344804|344807|344813|344815|344816|344818|361317|362338|362345|362346|374816|374818|374822|374830|375693|375698|375866|375872|375880|375897|375920|375922|376976|378002|378008|378010|378011|378015|378017|378028|378030|378038|378046|401444|401454|401459|401471|401477|401489|401490|401492|402223|402225|402229|409809|409815|409818|422139|426196|426197|426688|429917|429918|438002|441937|445689|465388|465466|465704|466195|466197|466978|466981|467042|467051|467052|467056|467296|467297|467303|467311|467312|481392|486724|505713|505723|505910|505912|506119|506674|512255|513255|513463|529254|529287|529586|529861|530452|530456|530467|530472|530598|530611|530612|530624|530791|530803|530812|530816|530997|530998|530999|536925|538462|539069|550846|551739|552198|567460|568529|568538|568560|569433|569437|570647|570648|570650|570657|570725|570732|574229|574233|574237|574238|574239|574240|580175|580272|588073|611423|611424|611425|613614|643760|643761|643762|643763|643764|645244|645245|645246|645247|645248|645249|645250|645251|645252|645253|645254|645255|645257|645258|645259|645260|645261|645262|645263|645264|645265|645266|645267|645268|645269|645270|645271|652604|656332|684654|684655|688733|688734|695722|695723|731123|740542|770467|771219|771220|771227|785457|785460|789383|791520|791665|791666|791667|791668|791669|791670|791671|800674|802015|802016|802017|802018|802019|802060|802061|820963|820964|820965|820966|820967|822113|822114|822115|822124|822125|822126|842947|844646|844647|844648|844649|844650|844651|844652|844653|844654|844655|844656|844657|844658|844660|844661|844662|844663|844664|844665|844666|844667|844668|852149|852151|852688|852844|858574|874561|874562|876280|876281|876282|876283|876284|876285|876286|876287|876288|876289|876290|876291|876292|876293|876294|876295|876296|876297|876298|876299|876300|876301|876302|876303|876304|876305|876306|876307|876308|876309|876310|876311|876312|876313|876314|876315|876316|876317|876318|876319|876320|876321|876322|876323|876324|876325|876326|876327|876328|876329|876330|876331|876332|876333|876334|876335|876336|876337|876338|876339|876340|876341|876342|876343|876344|876345|876346|876347|876348|876349|876350|876351|876352|876353|876744|876745|904245|906190|906191|906192|917225|919693|919694|919695|919696|927518|928036|928037|928038|928039|928040|928041|928042|928043|928044|928045|928046|928047|928048|928049|937161|937698|937699|937700|937701|937702|937703|937704|937707|937708|937709|937710|937711|940379|949122|949123|949675|949676|949677|949678|949679|949680|949681|949682|949684|949685|949686|949687|949688|949689|957975|957976|957977|961332|963823|964440|964464|964465|964466|964467|969124|971061|971062|977280|983689", "text": "Epilepsy, focal, with speech disorder and with or without mental retardation" }, { - "baseId": "38690|38691|38692|38693|38694|38695|134597|134598|134599|205137|250763|250764|286995|287002|287004|287017|287018|287019|287027|287028|287042|287043|287045|287047|287048|287050|287054|287057|287059|287061|287063|287064|287068|287081|287082|287086|287758|287759|287760|287777|287789|287790|287799|287802|287803|287806|287810|287812|287813|287817|287818|287819|287820|287821|287824|287825|287826|287828|287829|287830|290135|290139|290140|290143|290146|290150|290159|290161|290166|290174|290179|290180|290192|290194|290224|290226|290237|290238|290523|290527|290544|290545|290546|290547|290551|290553|290554|290555|290558|290560|290564|290568|290577|290585|290587|290589|290592|290600|290620|290621|290622|290624|290626|290646|290647|290648|428086|428089|451373|451374|451376|451378|451539|451540|451730|451734|451736|451738|451740|451741|451742|451751|451754|451761|451768|518510|518516|518590|518592|558253|558255|558626|558628|561878|608900|608901|619840|619841|630408|630409|630410|630411|630412|695150|695151|733541|747743|774721|777304|781425|792747|819265|826902|826903|826904|826905|826906|826907|826908|826909|826910|826911|885326|885327|885328|885329|885330|885331|885332|885333|885334|885335|885336|885337|885338|885339|885340|885341|885342|885343|885344|885345|885346|885347|885348|885349|885350|885351|885352|885353|885354|885355|885356|885357|885358|885359|885360|885361|885362|885363|885364|885365|885366|885367|885368|885369|885370|885371|885372|885373|885374|885375|885376|885377|885378|885379|885380|922896|922897|922898|931549|931550|931551|939907|943083|943084|953173|953174|953175|953176|953177|959652", + "upstreamId": "38690|38691|38692|38693|38694|38695|134597|134598|134599|205137|250763|250764|286995|287002|287004|287017|287018|287019|287027|287028|287042|287043|287045|287047|287048|287050|287054|287057|287059|287061|287063|287064|287068|287081|287082|287086|287758|287759|287760|287777|287789|287790|287799|287802|287803|287806|287810|287812|287813|287817|287818|287819|287820|287821|287824|287825|287826|287828|287829|287830|290135|290139|290140|290143|290146|290150|290159|290161|290166|290174|290179|290180|290192|290194|290224|290226|290237|290238|290523|290527|290544|290545|290546|290547|290551|290553|290554|290555|290558|290560|290564|290568|290577|290585|290587|290589|290592|290600|290620|290621|290622|290624|290626|290646|290647|290648|428086|428089|451373|451374|451376|451378|451539|451540|451730|451734|451736|451738|451740|451741|451742|451751|451754|451761|451768|518510|518516|518590|518592|558253|558255|558626|558628|561878|608900|608901|619840|619841|630408|630409|630410|630411|630412|695150|695151|733541|747743|774721|777304|781425|792747|819265|826902|826903|826904|826905|826906|826907|826908|826909|826910|826911|885326|885327|885328|885329|885330|885331|885332|885333|885334|885335|885336|885337|885338|885339|885340|885341|885342|885343|885344|885345|885346|885347|885348|885349|885350|885351|885352|885353|885354|885355|885356|885357|885358|885359|885360|885361|885362|885363|885364|885365|885366|885367|885368|885369|885370|885371|885372|885373|885374|885375|885376|885377|885378|885379|885380|922896|922897|922898|931549|931550|931551|939907|943083|943084|953173|953174|953175|953176|953177|959652", "text": "Congenital myasthenic syndrome 12" }, { - "baseId": "38696|167405|792788", + "upstreamId": "38696|167405|792788", "text": "Hypertriglyceridemia, transient infantile" }, { - "baseId": "38697", + "upstreamId": "38697", "text": "FRONTOTEMPORAL LOBAR DEGENERATION WITH UBIQUITIN-POSITIVE INCLUSIONS, SUSCEPTIBILITY TO" }, { - "baseId": "38697|205022|361109|361110|539435|558220|965228", + "upstreamId": "38697|205022|361109|361110|539435|558220|965228", "text": "Ischemic stroke" }, { - "baseId": "38699|171700|610688|677039|682735", + "upstreamId": "38699|171700|610688|677039|682735", "text": "Surfactant metabolism dysfunction, pulmonary, 5" }, { - "baseId": "38703|38704|38705", + "upstreamId": "38703|38704|38705", "text": "HEMOGLOBIN H HYDROPS FETALIS SYNDROME" }, { - "baseId": "38706", + "upstreamId": "38706", "text": "Delta-beta thalassemia" }, { - "baseId": "38710", + "upstreamId": "38710", "text": "Carbamazepine hypersensitivity" }, { - "baseId": "38711|48573|195638|196233|229272|229273|229274|301312|301514|439703|439705|443694|454655|454657|454659|454661|454732|455190|455196|455462|455471|501015|520798|520800|520802|520815|520818|521053|521056|521059|521194|521197|521199|521250|521252|521260|537471|537471|559962|560171|560173|560278|560280|560282|562883|562885|562891|564834|564842|564861|609578|633511|633512|633513|633514|633515|633516|633517|633518|633519|633520|633521|651369|691758|691760|698854|698855|698856|721252|749269|782188|792641|819561|830381|830382|830383|830384|830385|830386|830387|830388|830389|830390|830391|830392|830393|830394|830395|830396|830397|830398|830399|852225|923898|923899|923900|923901|923902|923903|932741|932742|932743|932744|932745|932746|932747|944426|944427|944428|944429|944430|944431|944432|954060|954061|960556", + "upstreamId": "38711|48573|195638|196233|229272|229273|229274|301312|301514|439703|439705|443694|454655|454657|454659|454661|454732|455190|455196|455462|455471|501015|520798|520800|520802|520815|520818|521053|521056|521059|521194|521197|521199|521250|521252|521260|537471|537471|559962|560171|560173|560278|560280|560282|562883|562885|562891|564834|564842|564861|609578|633511|633512|633513|633514|633515|633516|633517|633518|633519|633520|633521|651369|691758|691760|698854|698855|698856|721252|749269|782188|792641|819561|830381|830382|830383|830384|830385|830386|830387|830388|830389|830390|830391|830392|830393|830394|830395|830396|830397|830398|830399|852225|923898|923899|923900|923901|923902|923903|932741|932742|932743|932744|932745|932746|932747|944426|944427|944428|944429|944430|944431|944432|954060|954061|960556", "text": "Usher syndrome, type 3B" }, { - "baseId": "38712", + "upstreamId": "38712", "text": "Multiple sclerosis susceptibility 1" }, { - "baseId": "38713|38714", + "upstreamId": "38713|38714", "text": "Immunoglobulin kappa light chain deficiency" }, { - "baseId": "38723|38724|38725|38726|38727|38728|181167|181168|190093|190094|207799|207800|207801|253912|354170|408021|429138|429140|429142|429144|429146|429148|429150|444684|446859|481972|486751|583108|654135|681828|791015|798628|798919|800359|818283|919304|920288|965977|965978|965979|965980|965981|965982|966038|966039|970497|980940", + "upstreamId": "38723|38724|38725|38726|38727|38728|181167|181168|190093|190094|207799|207800|207801|253912|354170|408021|429138|429140|429142|429144|429146|429148|429150|444684|446859|481972|486751|583108|654135|681828|791015|798628|798919|800359|818283|919304|920288|965977|965978|965979|965980|965981|965982|966038|966039|970497|980940", "text": "Microcephaly with or without chorioretinopathy, lymphedema, or mental retardation" }, { - "baseId": "38734|39805|40086", + "upstreamId": "38734|39805|40086", "text": "Barrett esophagus/esophageal adenocarcinoma" }, { - "baseId": "38735|38736|38737|38738|38739|191525", + "upstreamId": "38735|38736|38737|38738|38739|191525", "text": "Retinitis pigmentosa 62" }, { - "baseId": "38745|38746|307905|307909|307912|307914|307918|307920|307921|307923|307924|307926|307930|307936|307948|307949|307950|307951|312199|312201|312204|312205|312206|312208|312210|312211|312212|312215|312218|312223|312229|312230|312231|312237|312238|312242|312248|312257|312264|312265|312275|312278|312279|312280|312281|312282|317907|317911|317920|317922|317926|317927|317930|317935|317938|317939|317945|317947|317948|317950|317951|317962|317963|317969|317973|317974|318403|318405|318406|318424|318425|318426|318428|318437|318439|318448|318450|318451|318460|318467|318473|318481|318489|318512|353856|626188|901705|901706|901707|901708|901709|901710|901712|901713|901714|901715|901716|901717|901718|901719|901720|901721|901722|901723|901724|901725|901726|901727|901728|901729|901730|901731|901732|901733|901734|901735|901736|901737|901738|901739|901740|901741|901742|901743|901744", + "upstreamId": "38745|38746|307905|307909|307912|307914|307918|307920|307921|307923|307924|307926|307930|307936|307948|307949|307950|307951|312199|312201|312204|312205|312206|312208|312210|312211|312212|312215|312218|312223|312229|312230|312231|312237|312238|312242|312248|312257|312264|312265|312275|312278|312279|312280|312281|312282|317907|317911|317920|317922|317926|317927|317930|317935|317938|317939|317945|317947|317948|317950|317951|317962|317963|317969|317973|317974|318403|318405|318406|318424|318425|318426|318428|318437|318439|318448|318450|318451|318460|318467|318473|318481|318489|318512|353856|626188|901705|901706|901707|901708|901709|901710|901712|901713|901714|901715|901716|901717|901718|901719|901720|901721|901722|901723|901724|901725|901726|901727|901728|901729|901730|901731|901732|901733|901734|901735|901736|901737|901738|901739|901740|901741|901742|901743|901744", "text": "Diaphyseal medullary stenosis-bone malignancy syndrome" }, { - "baseId": "38748|38749|38750|38751|38752|86122|86124|237596|264277|269079|270630|305332|305333|305336|305337|305339|305340|305342|305350|305352|305361|305364|305369|305374|305376|305380|305383|305384|305386|309168|309169|309174|309182|309184|309187|309189|309191|309192|314427|314428|314429|314430|314434|314438|314442|314443|314444|314446|314448|314450|314453|314455|314456|314457|314460|314461|314465|314469|314475|314477|314478|314479|314480|314483|314509|513426|513427|575491|622729|622730|622731|622732|622733|622734|622735|622736|622737|624067|679656|736677|899607|899608|899609|899610|899611|899612|899613|899614|899615|899616|899617|899618|899619|899620|899621|899622|899623|899624|899625|899626|899627|899628|899629|899630|899631|900500|900501|919154|919155", + "upstreamId": "38748|38749|38750|38751|38752|86122|86124|237596|264277|269079|270630|305332|305333|305336|305337|305339|305340|305342|305350|305352|305361|305364|305369|305374|305376|305380|305383|305384|305386|309168|309169|309174|309182|309184|309187|309189|309191|309192|314427|314428|314429|314430|314434|314438|314442|314443|314444|314446|314448|314450|314453|314455|314456|314457|314460|314461|314465|314469|314475|314477|314478|314479|314480|314483|314509|513426|513427|575491|622729|622730|622731|622732|622733|622734|622735|622736|622737|624067|679656|736677|899607|899608|899609|899610|899611|899612|899613|899614|899615|899616|899617|899618|899619|899620|899621|899622|899623|899624|899625|899626|899627|899628|899629|899630|899631|900500|900501|919154|919155", "text": "Idiopathic basal ganglia calcification 1" }, { - "baseId": "38753|920227", + "upstreamId": "38753|920227", "text": "Narcolepsy 7" }, { - "baseId": "38754|53636|53641|53680|175565|189930|189947|241811|337435|360038|426055|528396", + "upstreamId": "38754|53636|53641|53680|175565|189930|189947|241811|337435|360038|426055|528396", "text": "Sick sinus syndrome 3, susceptibility to" }, { - "baseId": "38755|38756|135087|135088|135089|135090|135091|135092|135093|207928|207929|207930|254377|254379|254380|254383|315700|315702|315703|315705|315706|315712|315713|322599|322637|322641|322655|322661|322664|322666|322672|322676|322677|322691|322692|328778|328780|328793|328794|328795|328803|328820|328821|328830|330006|330008|330012|330015|330021|330029|330035|583113|869038|869039|869040|869041|869042|869043|869044|869045|869046|869047|869048|869049|869050|869051|872168|872169|872170|872171", + "upstreamId": "38755|38756|135087|135088|135089|135090|135091|135092|135093|207928|207929|207930|254377|254379|254380|254383|315700|315702|315703|315705|315706|315712|315713|322599|322637|322641|322655|322661|322664|322666|322672|322676|322677|322691|322692|328778|328780|328793|328794|328795|328803|328820|328821|328830|330006|330008|330012|330015|330021|330029|330035|583113|869038|869039|869040|869041|869042|869043|869044|869045|869046|869047|869048|869049|869050|869051|872168|872169|872170|872171", "text": "Distal arthrogryposis type 1B" }, { - "baseId": "38759|208598|430214|430215|430216|430217|469804|470212|694415|695821|704986|716446|728184|847677|847678|847679|950783|958635", + "upstreamId": "38759|208598|430214|430215|430216|430217|469804|470212|694415|695821|704986|716446|728184|847677|847678|847679|950783|958635", "text": "Hypoglycemia, neonatal, simulating foetopathia diabetica" }, { - "baseId": "38765|38766|38767|38768|38769|46934|46935|46936|46937|46938|46939|46940|46941|46942|46943|46944|76592|76593|76594|125917|125918|125919|171824|171825|171826|171827|171828|171829|171830|171831|171832|171833|171834|171835|171836|171837|171838|171839|171840|171841|171842|171843|171844|171845|227280|296361|296367|296369|296374|296377|296378|296381|296382|296383|296393|296400|296402|296403|296413|298190|298204|298208|298210|298211|298212|298215|298217|298220|298221|298222|298223|298224|298227|298228|298231|298234|298242|298245|298246|298247|302301|302304|302305|302306|302307|302309|302310|302316|302317|302319|302321|302322|302324|302326|302327|302336|302337|302340|302347|302348|302354|302358|302376|302379|302380|302381|302519|302521|302526|302527|302552|302554|302555|302563|302570|302577|302578|302581|302585|302587|302590|302591|302592|302618|302619|302620|302622|302628|302633|302650|302651|302657|302658|302660|438307|486382|540579|721299|790526|893576|893577|893578|893579|893580|893581|893582|893583|893584|893585|893586|893587|893588|893589|893590|893591|893592|893593|893594|893595|893596|893597|893598|893599|893600|893601|893602|893603|893604|893605|893606|893607|893608|893609|896062|896063|896064|961273|961510|964244|964245|964246|966615|970150", + "upstreamId": "38765|38766|38767|38768|38769|46934|46935|46936|46937|46938|46939|46940|46941|46942|46943|46944|76592|76593|76594|125917|125918|125919|171824|171825|171826|171827|171828|171829|171830|171831|171832|171833|171834|171835|171836|171837|171838|171839|171840|171841|171842|171843|171844|171845|227280|296361|296367|296369|296374|296377|296378|296381|296382|296383|296393|296400|296402|296403|296413|298190|298204|298208|298210|298211|298212|298215|298217|298220|298221|298222|298223|298224|298227|298228|298231|298234|298242|298245|298246|298247|302301|302304|302305|302306|302307|302309|302310|302316|302317|302319|302321|302322|302324|302326|302327|302336|302337|302340|302347|302348|302354|302358|302376|302379|302380|302381|302519|302521|302526|302527|302552|302554|302555|302563|302570|302577|302578|302581|302585|302587|302590|302591|302592|302618|302619|302620|302622|302628|302633|302650|302651|302657|302658|302660|438307|486382|540579|721299|790526|893576|893577|893578|893579|893580|893581|893582|893583|893584|893585|893586|893587|893588|893589|893590|893591|893592|893593|893594|893595|893596|893597|893598|893599|893600|893601|893602|893603|893604|893605|893606|893607|893608|893609|896062|896063|896064|961273|961510|964244|964245|964246|966615|970150", "text": "Hereditary diffuse leukoencephalopathy with spheroids" }, { - "baseId": "38774|38775|168098|168100|168101|168102|168103|168104|168799|172288|172289|172291|217240|217241|217242|217243|217244|291260|291272|291275|291279|291299|292293|292300|295681|295683|295701|295716|295816|295827|295829|295836|313508|319315|481065|481066|682840|718173|918550|918551|965215|977201", + "upstreamId": "38774|38775|168098|168100|168101|168102|168103|168104|168799|172288|172289|172291|217240|217241|217242|217243|217244|291260|291272|291275|291279|291299|292293|292300|295681|295683|295701|295716|295816|295827|295829|295836|313508|319315|481065|481066|682840|718173|918550|918551|965215|977201", "text": "Robinow syndrome, autosomal dominant 1" }, { - "baseId": "38780|38781|59533|59534|578370|970515", + "upstreamId": "38780|38781|59533|59534|578370|970515", "text": "Agnathia-otocephaly complex" }, { - "baseId": "38782|38783|622429|964431|983645", + "upstreamId": "38782|38783|622429|964431|983645", "text": "Familial partial lipodystrophy 4" }, { - "baseId": "38784|38785|38786|38787|38788|38789|38790|195282|195616|227493|227494|227495|468442|469323|469728|469744|469746|470364|470366|532691|532694|533089|570471|570476|572179|572888|574862|574863|584837|647638|647639|647640|647641|647642|647643|647644|647645|647646|647647|647648|647649|647650|647651|716156|716157|716158|727896|741576|756702|756703|772380|772381|791887|821230|847225|847226|847227|847228|847229|847230|847231|847232|847233|847234|928823|928824|928825|928826|938562|938563|938564|950657|950658|950659|950660|950661|958527|958528|960280", + "upstreamId": "38784|38785|38786|38787|38788|38789|38790|195282|195616|227493|227494|227495|468442|469323|469728|469744|469746|470364|470366|532691|532694|533089|570471|570476|572179|572888|574862|574863|584837|647638|647639|647640|647641|647642|647643|647644|647645|647646|647647|647648|647649|647650|647651|716156|716157|716158|727896|741576|756702|756703|772380|772381|791887|821230|847225|847226|847227|847228|847229|847230|847231|847232|847233|847234|928823|928824|928825|928826|938562|938563|938564|950657|950658|950659|950660|950661|958527|958528|960280", "text": "Spondyloenchondrodysplasia with immune dysregulation" }, { - "baseId": "38795|40511|40513|50329|50330|50331|215529|226723|263845|273903|275469|327476|327497|327498|337334|337339|337341|337345|337346|337348|343600|343601|343604|343606|343608|345115|345118|345119|612449|620572|667832|668752|668893|671983|671984|671985|671986|671987|671988|671999|740627|876892|876893|876894|876895|876896|876897|876898|876899|876900|876901|876902|876903|876904|876905|876906|876907|880478", + "upstreamId": "38795|40511|40513|50329|50330|50331|215529|226723|263845|273903|275469|327476|327497|327498|337334|337339|337341|337345|337346|337348|343600|343601|343604|343606|343608|345115|345118|345119|612449|620572|667832|668752|668893|671983|671984|671985|671986|671987|671988|671999|740627|876892|876893|876894|876895|876896|876897|876898|876899|876900|876901|876902|876903|876904|876905|876906|876907|880478", "text": "Osteogenesis imperfecta, type VI" }, { - "baseId": "38805", + "upstreamId": "38805", "text": "Protein Z deficiency" }, { - "baseId": "38810|38811", + "upstreamId": "38810|38811", "text": "Bent bone dysplasia syndrome" }, { - "baseId": "38815|38816|38817|299872|299876|299879|299880|302492|302497|302501|302502|302505|306907|306908|306909|307182|307185|307186|455509|455616|456335|456344|521554|521555|522226|522229|539436|539440|560682|560760|560762|560765|560767|560776|563511|634815|634816|634817|634818|634819|634820|634821|634822|735606|831808|831809|831810|831811|831812|831813|831814|831815|831816|851070|858662|858663|895817|895818|895819|895820|895821|924327|933274|933275|933276|933277|944965|944966|944967|944968|944969|944970|944971|944972", + "upstreamId": "38815|38816|38817|299872|299876|299879|299880|302492|302497|302501|302502|302505|306907|306908|306909|307182|307185|307186|455509|455616|456335|456344|521554|521555|522226|522229|539436|539440|560682|560760|560762|560765|560767|560776|563511|634815|634816|634817|634818|634819|634820|634821|634822|735606|831808|831809|831810|831811|831812|831813|831814|831815|831816|851070|858662|858663|895817|895818|895819|895820|895821|924327|933274|933275|933276|933277|944965|944966|944967|944968|944969|944970|944971|944972", "text": "Proteasome-associated autoinflammatory syndrome 1" }, { - "baseId": "38832", + "upstreamId": "38832", "text": "Congenital myopathy with cores" }, { - "baseId": "38843|135661|201395|201407|391627|859024|922331|976644|976645", + "upstreamId": "38843|135661|201395|201407|391627|859024|922331|976644|976645", "text": "Episodic ataxia type 9" }, { - "baseId": "38843", + "upstreamId": "38843", "text": "SCN2A-related condition" }, { - "baseId": "38847|38848|204993|204994", + "upstreamId": "38847|38848|204993|204994", "text": "Peeling skin syndrome 4" }, { - "baseId": "38849|38850", + "upstreamId": "38849|38850", "text": "Spermatogenic failure 8" }, { - "baseId": "38853|614381", + "upstreamId": "38853|614381", "text": "Okt4 epitope deficiency" }, { - "baseId": "38862|38863|38864|38865|49466|242958|242961|329600|329602|329604|329606|329607|329614|339838|339843|339850|339862|339878|339888|339896|339905|345603|345607|345611|345612|345613|345614|345615|345621|345622|346931|346932|346943|346949|346958|346959|346973|376529|402488|403073|426726|426726|468759|574607|626463|822139|878266|878267|878268|878269|878270|878271|878272|878273|878274|878275|878276|878277|878278|878279|878280|878281|878282|878283|878284|878285|878286|878287|878288|878289|880569|880570", + "upstreamId": "38862|38863|38864|38865|49466|242958|242961|329600|329602|329604|329606|329607|329614|339838|339843|339850|339862|339878|339888|339896|339905|345603|345607|345611|345612|345613|345614|345615|345621|345622|346931|346932|346943|346949|346958|346959|346973|376529|402488|403073|426726|426726|468759|574607|626463|822139|878266|878267|878268|878269|878270|878271|878272|878273|878274|878275|878276|878277|878278|878279|878280|878281|878282|878283|878284|878285|878286|878287|878288|878289|880569|880570", "text": "Acrodysostosis 1 with or without hormone resistance" }, { - "baseId": "38868|38869|190071|190072|190073|227389|552202|791743|980553", + "upstreamId": "38868|38869|190071|190072|190073|227389|552202|791743|980553", "text": "Hypothyroidism, congenital, nongoitrous, 6" }, { - "baseId": "38876|188095|310969|310971|310973|310986|310987|310991|310993|311004|311007|311008|311009|316280|316281|316284|316300|316302|316305|316310|316311|316317|316318|316324|316328|316336|316339|316340|322373|322376|322377|322378|322379|322380|322387|322388|322390|322392|322403|322410|322961|322965|322966|322977|322983|322986|322998|322999|323003|866241|866242|866243|866244|866245|866246|866247|866248|866249|866250|866251|866252|866253|866254|866255|868500", + "upstreamId": "38876|188095|310969|310971|310973|310986|310987|310991|310993|311004|311007|311008|311009|316280|316281|316284|316300|316302|316305|316310|316311|316317|316318|316324|316328|316336|316339|316340|322373|322376|322377|322378|322379|322380|322387|322388|322390|322392|322403|322410|322961|322965|322966|322977|322983|322986|322998|322999|323003|866241|866242|866243|866244|866245|866246|866247|866248|866249|866250|866251|866252|866253|866254|866255|868500", "text": "Quebec platelet disorder" }, { - "baseId": "38882|143263|143264|205334|214759|237814|237815|264811|362166|425234|481426|511146|552248|624872|792160|792161|858270|917760|961637|971189", + "upstreamId": "38882|143263|143264|205334|214759|237814|237815|264811|362166|425234|481426|511146|552248|624872|792160|792161|858270|917760|961637|971189", "text": "N-terminal acetyltransferase deficiency" }, { - "baseId": "38890|48505|48506|48507|96880|138333|138335|170111|181481|181482|181483|181484|188071|190610|209050|209052|209053|213669|257839|257840|260327|268639|380059|384426|424676|470828|472154|472155|481225|512682|535170|535357|535358|550379|550655|552258|573882|575415|611451|624875|650055|650056|650057|650058|653785|653786|677330|679813|679814|694884|695906|706232|706233|800316|800317|850063|858796|951803|960383|963977|964903|964904|967283|969761|969762|969763|969764|969765|969766|969767|969882|969883|969884|969885|969886|971206|973107|976687|976703", + "upstreamId": "38890|48505|48506|48507|96880|138333|138335|170111|181481|181482|181483|181484|188071|190610|209050|209052|209053|213669|257839|257840|260327|268639|380059|384426|424676|470828|472154|472155|481225|512682|535170|535357|535358|550379|550655|552258|573882|575415|611451|624875|650055|650056|650057|650058|653785|653786|677330|679813|679814|694884|695906|706232|706233|800316|800317|850063|858796|951803|960383|963977|964903|964904|967283|969761|969762|969763|969764|969765|969766|969767|969882|969883|969884|969885|969886|971206|973107|976687|976703", "text": "Kabuki syndrome 2" }, { - "baseId": "38900|38901|38902|38903|48574|339104|339107|348657|348662|352180|404851|902983|902984|902985|964595", + "upstreamId": "38900|38901|38902|38903|48574|339104|339107|348657|348662|352180|404851|902983|902984|902985|964595", "text": "Deafness, X-linked 4" }, { - "baseId": "38905|38906|38907|38908|38909|167455|257862|339510|349006|349009|349010|352384|352385|352933|352934|352935|352936|534923|650131|858692|861439|903159|903160|903161|903162|903163|903164|903165|903166|903167|903168|939652|939653|951859", + "upstreamId": "38905|38906|38907|38908|38909|167455|257862|339510|349006|349009|349010|352384|352385|352933|352934|352935|352936|534923|650131|858692|861439|903159|903160|903161|903162|903163|903164|903165|903166|903167|903168|939652|939653|951859", "text": "Amyotrophic lateral sclerosis 15, with or without frontotemporal dementia" }, { - "baseId": "38911", + "upstreamId": "38911", "text": "Keratosis follicularis spinulosa decalvans, X-linked" }, { - "baseId": "38912|38913|38914|38915|38916|214810|263296|353912", + "upstreamId": "38912|38913|38914|38915|38916|214810|263296|353912", "text": "Megalocornea" }, { - "baseId": "38917|100523|100737|213850|213851|213864|404245|411320|584392|849945|917367|917575|920526|921514|969201|970103|970104|970105|970106|970107|970108|970109|970110|970111|970112|970113|970114|970115|970116|970117|970118|970119|970120|970121|970122|970123|972534|975759|977302|980134|980135|980137|983935|983936|983937|984015|984017", + "upstreamId": "38917|100523|100737|213850|213851|213864|404245|411320|584392|849945|917367|917575|920526|921514|969201|970103|970104|970105|970106|970107|970108|970109|970110|970111|970112|970113|970114|970115|970116|970117|970118|970119|970120|970121|970122|970123|972534|975759|977302|980134|980135|980137|983935|983936|983937|984015|984017", "text": "Dystrophinopathies" }, { - "baseId": "38917|100520|100526|100534|100584|100683|100748|100761|101999|135741|171248|193535|198575|213848|265659|266626|266735|272508|272743|273101|275358|275412|313563|313602|339160|404291|404553|415778|433498|442428|446624|446630|470744|471494|492088|508553|510948|510954|534738|574529|574628|575403|589742|649978|649979|650006|650012|654968|656768|669966|670892|743300|773985|773998|786798|816418|816418|816419|816420|816432|849929|849949|849954|849975|850006|850016|980100", + "upstreamId": "38917|100520|100526|100534|100584|100683|100748|100761|101999|135741|171248|193535|198575|213848|265659|266626|266735|272508|272743|273101|275358|275412|313563|313602|339160|404291|404553|415778|433498|442428|446624|446630|470744|471494|492088|508553|510948|510954|534738|574529|574628|575403|589742|649978|649979|650006|650012|654968|656768|669966|670892|743300|773985|773998|786798|816418|816418|816419|816420|816432|849929|849949|849954|849975|850006|850016|980100", "text": "Dystrophin deficiency" }, { - "baseId": "38924|38925|614507", + "upstreamId": "38924|38925|614507", "text": "Atypical mycobacteriosis, familial, X-linked 2" }, { - "baseId": "38936|38937|102107|102108|135014|411494|439097|472216|534862|534976|535088|574029|574993|614142|650255|650256|650257|650258|650259|650260|653794|677000|677001|677002|706323|758664|758665|758666|758667|758668|821516|821517|850325|853047|920070|939693|940568|951900|951901|951902|959363|959364|959365|964635", + "upstreamId": "38936|38937|102107|102108|135014|411494|439097|472216|534862|534976|535088|574029|574993|614142|650255|650256|650257|650258|650259|650260|653794|677000|677001|677002|706323|758664|758665|758666|758667|758668|821516|821517|850325|853047|920070|939693|940568|951900|951901|951902|959363|959364|959365|964635", "text": "Immunodeficiency, X-Linked, with magnesium defect, Epstein-Barr virus infection, and neoplasia" }, { - "baseId": "38943|136563|136564|136565|136566|136567|136568|208918|379031|379034|379035|379928|380442|384425|422422|426413|446520|470535|471783|471783|471787|472077|481445|507782|507783|534580|534581|534644|534646|534652|534656|535068|552245|573636|573640|575348|575349|575350|580675|612338|614499|649753|649754|649755|649756|649757|649758|649759|649760|653501|653777|717696|789085|792137|792138|802044|816499|821566|822217|849717|849718|849719|849720|849721|849722|849723|849724|929595|929596|929597|939464|939465|940543|951636|951637|951638|959183|961636|972803|977299", + "upstreamId": "38943|136563|136564|136565|136566|136567|136568|208918|379031|379034|379035|379928|380442|384425|422422|426413|446520|470535|471783|471783|471787|472077|481445|507782|507783|534580|534581|534644|534646|534652|534656|535068|552245|573636|573640|575348|575349|575350|580675|612338|614499|649753|649754|649755|649756|649757|649758|649759|649760|653501|653777|717696|789085|792137|792138|802044|816499|821566|822217|849717|849718|849719|849720|849721|849722|849723|849724|929595|929596|929597|939464|939465|940543|951636|951637|951638|959183|961636|972803|977299", "text": "Multiple congenital anomalies-hypotonia-seizures syndrome 2" }, { - "baseId": "38945|38946", + "upstreamId": "38945|38946", "text": "Autism, susceptibility to, X-linked 5" }, { - "baseId": "38957", + "upstreamId": "38957", "text": "Dystonia, mitochondrial" }, { - "baseId": "38961", + "upstreamId": "38961", "text": "Interstitial nephritis" }, { - "baseId": "38963|38964|38965|38966|38967|38968|38969|38970|38971|38972|38973|38974|38975|40347|79652|79656|79657|131873|131874|131875|131876|131877|131878|131879|131880|131881|131883|131884|131885|131886|207700|207701|207703|213590|213591|262269|307876|307885|307888|307897|307899|307904|307911|307915|307917|307955|307957|307958|307960|307961|307963|312169|312176|312178|312182|312187|312189|312191|312284|312286|312303|312307|317849|317853|317858|317859|317870|317871|317874|317875|317882|317895|317910|317925|317981|317984|317985|317989|317990|318354|318355|318361|318363|318371|318375|318376|318377|318382|318401|318513|318522|318525|318541|318544|318545|318550|318556|318557|353884|384434|428990|428991|428992|444460|513587|552140|579643|579683|611443|612284|682813|790884|790885|790886|818146|901678|901679|901680|901681|901682|901683|901684|901685|901686|901687|901688|901689|901690|901691|901692|901693|901694|901695|901696|901697|901698|901699|901700|901701|901702|901703|901704|901711|901745|901746|901747|901748|901749|901750|901751|901752|901753|901754|901755|901756|901757|901758|901759|903370|903371|903372|903373|903374|919221|964327|964328|964329|964330|969544|969787|969788|970907|970908|970909|970910|973027|976657|980934", + "upstreamId": "38963|38964|38965|38966|38967|38968|38969|38970|38971|38972|38973|38974|38975|40347|79652|79656|79657|131873|131874|131875|131876|131877|131878|131879|131880|131881|131883|131884|131885|131886|207700|207701|207703|213590|213591|262269|307876|307885|307888|307897|307899|307904|307911|307915|307917|307955|307957|307958|307960|307961|307963|312169|312176|312178|312182|312187|312189|312191|312284|312286|312303|312307|317849|317853|317858|317859|317870|317871|317874|317875|317882|317895|317910|317925|317981|317984|317985|317989|317990|318354|318355|318361|318363|318371|318375|318376|318377|318382|318401|318513|318522|318525|318541|318544|318545|318550|318556|318557|353884|384434|428990|428991|428992|444460|513587|552140|579643|579683|611443|612284|682813|790884|790885|790886|818146|901678|901679|901680|901681|901682|901683|901684|901685|901686|901687|901688|901689|901690|901691|901692|901693|901694|901695|901696|901697|901698|901699|901700|901701|901702|901703|901704|901711|901745|901746|901747|901748|901749|901750|901751|901752|901753|901754|901755|901756|901757|901758|901759|903370|903371|903372|903373|903374|919221|964327|964328|964329|964330|969544|969787|969788|970907|970908|970909|970910|973027|976657|980934", "text": "Nicolaides-Baraitser syndrome" }, { - "baseId": "38972|181453|263192|511891|805140|969777|969881|969887", + "upstreamId": "38972|181453|263192|511891|805140|969777|969881|969887", "text": "Hirsutism" }, { - "baseId": "38976", + "upstreamId": "38976", "text": "Split-hand/foot malformation 1 with sensorineural hearing loss" }, { - "baseId": "38978|273103|273131|320738|329581|329582|329583|329584|329585|329586|336193|336203|336206|336207|338097|338103|338104|338106|769832|791415|871960|871961|871962|871963|871964|871965|871966|871967|871968|871969|871970", + "upstreamId": "38978|273103|273131|320738|329581|329582|329583|329584|329585|329586|336193|336203|336206|336207|338097|338103|338104|338106|769832|791415|871960|871961|871962|871963|871964|871965|871966|871967|871968|871969|871970", "text": "Pituitary hormone deficiency, combined 6" }, { - "baseId": "38984|70509|134370|134371|134372|134374|134375|134376|134377|134378|134379|134380|134381|134382|134383|134384|134385|134386|134387|134388|134389|134390|134391|143271|143271|192741|192971|194356|194619|195162|195513|208055|208056|208057|208058|208059|208060|208060|208062|208063|208065|208067|208069|208070|208073|208076|208077|208079|208080|208083|208084|222357|241764|241766|241767|241768|241769|241770|241771|241772|241773|241774|241775|241776|241777|244859|244862|244866|244868|244872|244875|244876|244877|244881|244885|244888|244889|244890|244892|244895|244898|244901|244902|244904|244906|265503|266360|267185|269783|270759|271447|320125|320127|320129|320133|320136|320139|320141|320151|320152|320153|320169|320170|320171|320175|320177|320179|320180|320185|320188|320192|320194|328711|328719|328720|328722|328723|328724|328725|328727|328728|328729|328730|328733|328735|328743|328745|335329|335332|335333|335337|335339|335340|335347|335351|335352|335353|335354|335355|337184|337203|337208|337210|337211|337213|337220|337222|337241|337247|337249|360017|360026|360953|360956|360957|372877|372900|372921|372942|372947|372953|372954|373589|373596|373599|373600|373616|373660|373912|373913|373918|373963|373968|373972|373973|373990|375719|375745|375792|375800|375808|375812|375814|375821|375832|375840|375842|399489|399501|399506|399507|399521|399527|399533|399599|399606|399610|399613|399616|399628|399630|399631|399632|400056|400072|400221|400222|400227|400232|400237|400247|400255|404814|409062|415379|415380|421967|421968|429514|429518|429519|429523|429527|429529|429530|429536|429538|429541|429548|441640|445167|462975|462977|462985|462991|462995|463003|463013|463015|463017|463023|463032|463037|463393|463395|463396|463403|463420|463431|463434|463455|463468|463475|463480|463482|463484|463495|463509|463518|463519|463528|463732|463745|463755|463759|463764|463765|463767|463768|463774|463781|463784|463797|463798|463800|463805|463811|463967|463968|463971|463973|463975|463979|463990|463993|463993|463995|463999|464002|464008|464010|464013|504329|504329|504331|504331|504338|504355|504375|504376|504380|504608|504609|504611|504858|504884|504899|504900|504903|504913|505270|505297|505314|527840|527842|527844|527851|527854|527856|527857|527858|527860|527861|527862|527871|527872|527875|527877|527879|527882|527883|527888|527890|527892|527895|527897|527899|527901|527905|527906|527908|527911|527918|527919|527921|527922|527924|527926|527930|528176|528178|528180|528181|528184|528191|528192|528197|528199|528200|528206|528208|528209|528211|528215|528223|528224|528235|528238|528241|528249|528251|528251|528252|528267|528267|528346|528347|528349|528356|528365|528369|528378|528383|528391|528394|528399|528404|528406|528409|536869|566192|566195|566197|566201|566209|566210|566212|566215|566217|566222|566225|566227|566229|567778|567782|567783|567785|567786|567790|567795|567795|567796|567803|567806|568642|568646|568652|568656|568662|568663|568665|568675|568678|568684|568693|572624|572626|572627|572631|572632|572635|572636|572638|572646|572650|572658|577341|577343|577345|577347|579818|579829|579833|579843|579852|579860|579867|579872|580120|609881|613519|614387|614387|614388|614389|614390|614391|614392|642067|642068|642069|642070|642071|642072|642073|642074|642075|642076|642077|642078|642079|642080|642081|642082|642083|642084|642085|642086|642087|642088|642089|642090|642091|642092|642093|642094|642095|642096|642097|642098|642099|642100|642101|642102|642103|642104|642105|642106|642107|642108|642109|642110|642111|652328|652436|652440|652443|652447|652571|652574|652577|652579|653886|656218|656219|656223|667162|683051|683052|683062|684421|684422|684424|684425|684426|684427|684428|684429|684431|684432|685390|688186|688187|688188|688189|688191|688192|688194|688195|688198|688202|688203|688204|688205|690069|693404|693405|693408|693416|693417|702757|702761|702762|702763|702766|714002|714003|725560|725561|725564|739119|739121|769647|769648|769649|769653|769658|769660|769666|769670|776244|778043|791378|791379|791380|791381|791382|791383|820593|822093|822094|841015|841016|841017|841018|841019|841020|841021|841022|841023|841024|841025|841026|841027|841028|841029|841030|841031|841032|841033|841034|841035|841036|841037|841038|841039|841040|841041|841042|841043|841044|841045|841046|841047|841048|841049|841050|841051|841052|841053|841054|841055|841056|841057|841058|841059|841060|841061|841062|841063|841064|841065|841066|841067|841068|851543|851983|852548|852550|852551|852552|871609|871610|871611|871612|871613|871614|871615|871616|871617|871618|871619|871620|871621|871622|871623|871624|871625|871626|871627|871628|871629|871630|871631|871632|871633|871634|871635|871636|871637|871638|871639|871640|871641|871642|871643|871644|872350|872351|872352|906346|919505|919506|919507|919508|920328|920329|926954|926955|926956|926957|926958|926959|926960|926961|926962|926963|926964|936492|936493|936494|936495|936496|936497|936498|936499|936500|936501|936502|936503|936504|936505|936506|936507|936508|936509|936510|936511|936512|936513|936514|936515|936516|940294|940295|940296|948424|948425|948426|948427|948428|948429|948430|948431|948432|948433|948434|948435|948436|948437|957143|957144|957145|957146|957147|960075|960076|961823|962985|962986|970987|970988|976531", + "upstreamId": "38984|70509|134370|134371|134372|134374|134375|134376|134377|134378|134379|134380|134381|134382|134383|134384|134385|134386|134387|134388|134389|134390|134391|143271|143271|192741|192971|194356|194619|195162|195513|208055|208056|208057|208058|208059|208060|208060|208062|208063|208065|208067|208069|208070|208073|208076|208077|208079|208080|208083|208084|222357|241764|241766|241767|241768|241769|241770|241771|241772|241773|241774|241775|241776|241777|244859|244862|244866|244868|244872|244875|244876|244877|244881|244885|244888|244889|244890|244892|244895|244898|244901|244902|244904|244906|265503|266360|267185|269783|270759|271447|320125|320127|320129|320133|320136|320139|320141|320151|320152|320153|320169|320170|320171|320175|320177|320179|320180|320185|320188|320192|320194|328711|328719|328720|328722|328723|328724|328725|328727|328728|328729|328730|328733|328735|328743|328745|335329|335332|335333|335337|335339|335340|335347|335351|335352|335353|335354|335355|337184|337203|337208|337210|337211|337213|337220|337222|337241|337247|337249|360017|360026|360953|360956|360957|372877|372900|372921|372942|372947|372953|372954|373589|373596|373599|373600|373616|373660|373912|373913|373918|373963|373968|373972|373973|373990|375719|375745|375792|375800|375808|375812|375814|375821|375832|375840|375842|399489|399501|399506|399507|399521|399527|399533|399599|399606|399610|399613|399616|399628|399630|399631|399632|400056|400072|400221|400222|400227|400232|400237|400247|400255|404814|409062|415379|415380|421967|421968|429514|429518|429519|429523|429527|429529|429530|429536|429538|429541|429548|441640|445167|462975|462977|462985|462991|462995|463003|463013|463015|463017|463023|463032|463037|463393|463395|463396|463403|463420|463431|463434|463455|463468|463475|463480|463482|463484|463495|463509|463518|463519|463528|463732|463745|463755|463759|463764|463765|463767|463768|463774|463781|463784|463797|463798|463800|463805|463811|463967|463968|463971|463973|463975|463979|463990|463993|463993|463995|463999|464002|464008|464010|464013|504329|504329|504331|504331|504338|504355|504375|504376|504380|504608|504609|504611|504858|504884|504899|504900|504903|504913|505270|505297|505314|527840|527842|527844|527851|527854|527856|527857|527858|527860|527861|527862|527871|527872|527875|527877|527879|527882|527883|527888|527890|527892|527895|527897|527899|527901|527905|527906|527908|527911|527918|527919|527921|527922|527924|527926|527930|528176|528178|528180|528181|528184|528191|528192|528197|528199|528200|528206|528208|528209|528211|528215|528223|528224|528235|528238|528241|528249|528251|528251|528252|528267|528267|528346|528347|528349|528356|528365|528369|528378|528383|528391|528394|528399|528404|528406|528409|536869|566192|566195|566197|566201|566209|566210|566212|566215|566217|566222|566225|566227|566229|567778|567782|567783|567785|567786|567790|567795|567795|567796|567803|567806|568642|568646|568652|568656|568662|568663|568665|568675|568678|568684|568693|572624|572626|572627|572631|572632|572635|572636|572638|572646|572650|572658|577341|577343|577345|577347|579818|579829|579833|579843|579852|579860|579867|579872|580120|609881|613519|614387|614387|614388|614389|614390|614391|614392|642067|642068|642069|642070|642071|642072|642073|642074|642075|642076|642077|642078|642079|642080|642081|642082|642083|642084|642085|642086|642087|642088|642089|642090|642091|642092|642093|642094|642095|642096|642097|642098|642099|642100|642101|642102|642103|642104|642105|642106|642107|642108|642109|642110|642111|652328|652436|652440|652443|652447|652571|652574|652577|652579|653886|656218|656219|656223|667162|683051|683052|683062|684421|684422|684424|684425|684426|684427|684428|684429|684431|684432|685390|688186|688187|688188|688189|688191|688192|688194|688195|688198|688202|688203|688204|688205|690069|693404|693405|693408|693416|693417|702757|702761|702762|702763|702766|714002|714003|725560|725561|725564|739119|739121|769647|769648|769649|769653|769658|769660|769666|769670|776244|778043|791378|791379|791380|791381|791382|791383|820593|822093|822094|841015|841016|841017|841018|841019|841020|841021|841022|841023|841024|841025|841026|841027|841028|841029|841030|841031|841032|841033|841034|841035|841036|841037|841038|841039|841040|841041|841042|841043|841044|841045|841046|841047|841048|841049|841050|841051|841052|841053|841054|841055|841056|841057|841058|841059|841060|841061|841062|841063|841064|841065|841066|841067|841068|851543|851983|852548|852550|852551|852552|871609|871610|871611|871612|871613|871614|871615|871616|871617|871618|871619|871620|871621|871622|871623|871624|871625|871626|871627|871628|871629|871630|871631|871632|871633|871634|871635|871636|871637|871638|871639|871640|871641|871642|871643|871644|872350|872351|872352|906346|919505|919506|919507|919508|920328|920329|926954|926955|926956|926957|926958|926959|926960|926961|926962|926963|926964|936492|936493|936494|936495|936496|936497|936498|936499|936500|936501|936502|936503|936504|936505|936506|936507|936508|936509|936510|936511|936512|936513|936514|936515|936516|940294|940295|940296|948424|948425|948426|948427|948428|948429|948430|948431|948432|948433|948434|948435|948436|948437|957143|957144|957145|957146|957147|960075|960076|961823|962985|962986|970987|970988|976531", "text": "Charcot-Marie-Tooth disease, axonal, type 2O" }, { - "baseId": "38984|38987|38988|38989|143271|143271|178391|208060|208069|360017|360026|404814|463993|504329|504331|528251|528267|536869|552169|567795|614387|614388|614389|614390|614391|614392|625287|861578|906346|976531", + "upstreamId": "38984|38987|38988|38989|143271|143271|178391|208060|208069|360017|360026|404814|463993|504329|504331|528251|528267|536869|552169|567795|614387|614388|614389|614390|614391|614392|625287|861578|906346|976531", "text": "Spinal muscular atrophy, lower extremity predominant 1, autosomal dominant" }, { - "baseId": "38985|38986|70507|70508|70509|143271|178391|205703|205704|208060|208062|208069|208078|213627|225860|360026|404814|409059|429525|429533|432219|463993|481362|488159|504329|504331|528251|528267|536869|552168|552170|567795|614387|614388|614389|614390|614391|614392|642069|642109|788878|789143|861578|906346|963773|964405|964406|964407|964408|964409|964410|964411|965741|965990|965991|965992|970985|970986|976531", + "upstreamId": "38985|38986|70507|70508|70509|143271|178391|205703|205704|208060|208062|208069|208078|213627|225860|360026|404814|409059|429525|429533|432219|463993|481362|488159|504329|504331|528251|528267|536869|552168|552170|567795|614387|614388|614389|614390|614391|614392|642069|642109|788878|789143|861578|906346|963773|964405|964406|964407|964408|964409|964410|964411|965741|965990|965991|965992|970985|970986|976531", "text": "Mental retardation, autosomal dominant 13" }, { - "baseId": "38990|38991|38992|38993|38994|38995|38996|48575|106816|106817|297832|297834|297841|297844|297848|297849|297851|297852|297858|297859|297864|297873|297884|297895|297896|297901|300009|300010|300014|300017|300032|300034|300041|300058|300069|300073|300081|300082|300083|300085|304246|304256|304258|304268|304270|304280|304283|304285|304287|304290|304292|304293|304302|304310|304322|304563|304568|304574|304575|304576|304578|304579|304582|304604|304616|304619|304630|304636|304638|304639|304642|304645|304648|304650|304651|304654|304657|304665|304666|304667|304670|304673|304676|304688|428440|550850|578437|735144|894526|894527|894528|894529|894530|894531|894532|894533|894534|894535|894536|894537|894538|894539|894540|894541|894542|894543|894544|894545|894546|894547|894548|894549|894550|894551|894552|894553|894554|894555|894556|894557|894558|894559|894560|894561|894562|894563|894564|894565|894566|894567|894568|894569|894570|894571|894572|894573|894574|894575|894576|896118|896119|896120|896121|918974|970811|977215|977216", + "upstreamId": "38990|38991|38992|38993|38994|38995|38996|48575|106816|106817|297832|297834|297841|297844|297848|297849|297851|297852|297858|297859|297864|297873|297884|297895|297896|297901|300009|300010|300014|300017|300032|300034|300041|300058|300069|300073|300081|300082|300083|300085|304246|304256|304258|304268|304270|304280|304283|304285|304287|304290|304292|304293|304302|304310|304322|304563|304568|304574|304575|304576|304578|304579|304582|304604|304616|304619|304630|304636|304638|304639|304642|304645|304648|304650|304651|304654|304657|304665|304666|304667|304670|304673|304676|304688|428440|550850|578437|735144|894526|894527|894528|894529|894530|894531|894532|894533|894534|894535|894536|894537|894538|894539|894540|894541|894542|894543|894544|894545|894546|894547|894548|894549|894550|894551|894552|894553|894554|894555|894556|894557|894558|894559|894560|894561|894562|894563|894564|894565|894566|894567|894568|894569|894570|894571|894572|894573|894574|894575|894576|896118|896119|896120|896121|918974|970811|977215|977216", "text": "Acrodysostosis 2, with or without hormone resistance" }, { - "baseId": "38997|100923|100926|100934|100935|100936|100937|100939|100940|100942|100944|100949|100952|100954|100956|100957|100958|100959|100962|100963|100964|100965|100966|100967|100970|137671|137672|169206|169216|169217|169241|169249|169257|177650|177653|191800|192013|192117|192379|192980|193132|193186|193789|265764|272980|465740|490287|530101|530304|567503|570296|576341|580079|580124|622484|644676|644677|644678|644679|644680|644681|644682|644683|644684|644685|652563|652630|652851|682919|693866|695695|695696|726633|770904|776345|778419|820828|820829|820831|820832|820833|820834|820835|822118|843862|843863|843864|843865|843866|843867|843868|843869|843870|843871|852820|918471|927815|927816|927817|927818|937453|937454|941136|949400|949401|949402|957762|957763|957764|957765|961547", + "upstreamId": "38997|100923|100926|100934|100935|100936|100937|100939|100940|100942|100944|100949|100952|100954|100956|100957|100958|100959|100962|100963|100964|100965|100966|100967|100970|137671|137672|169206|169216|169217|169241|169249|169257|177650|177653|191800|192013|192117|192379|192980|193132|193186|193789|265764|272980|465740|490287|530101|530304|567503|570296|576341|580079|580124|622484|644676|644677|644678|644679|644680|644681|644682|644683|644684|644685|652563|652630|652851|682919|693866|695695|695696|726633|770904|776345|778419|820828|820829|820831|820832|820833|820834|820835|822118|843862|843863|843864|843865|843866|843867|843868|843869|843870|843871|852820|918471|927815|927816|927817|927818|937453|937454|941136|949400|949401|949402|957762|957763|957764|957765|961547", "text": "Rubinstein-Taybi syndrome" }, { - "baseId": "39005|39006|39007|426184|433824|433825|433826|433829|433830|433831|433832|438794|466042|466043|466044|466046|466779|466781|466782|466797|466806|466807|466807|466809|466811|466813|466814|466815|467072|467074|467077|467079|467086|467093|467096|467098|530317|530318|530320|530325|530328|530331|530334|530337|530338|530403|530407|530412|530420|530427|530583|530586|530588|530591|530593|530600|530797|530801|530804|530808|530811|530814|530821|530825|530830|530836|530838|530841|530843|567548|568406|568407|568411|568412|568416|568420|568423|570515|570519|570523|570524|570526|570530|570531|570533|570574|570576|570577|570578|570578|574181|574182|574183|574184|574185|574186|574187|610028|610028|610030|610031|610033|613046|614430|614430|624613|645030|645031|645032|645033|645034|645035|645036|645037|645038|645039|645040|645041|645042|645043|645044|645045|645046|645047|645048|645049|645050|645051|645052|645053|645054|645055|645056|645057|645058|645059|645060|645061|652759|652761|652765|652769|703844|703845|715100|715101|715102|715103|726809|726810|726811|726812|726813|726814|726815|726816|726817|726818|731098|740374|740375|740377|740379|740381|755409|755412|755417|755418|755419|755420|755422|755426|760529|760531|771089|771093|771096|771103|776379|776383|779850|785393|785394|785396|785398|816340|822121|844388|844389|844390|844391|844392|844393|844394|844395|844396|844397|844398|844399|844400|844401|844402|844403|844404|844405|844406|844407|844408|844409|844410|844411|844412|852833|927968|927969|927970|927971|927972|927973|927974|927975|927976|937633|937634|937635|937636|937637|937638|937639|937640|937641|937642|941148|949602|949603|949604|949605|949606|949607|949608|949609|949610|949611|949612|957895|957896|957897|957898|957899|957900|957901|960180|960181", + "upstreamId": "39005|39006|39007|426184|433824|433825|433826|433829|433830|433831|433832|438794|466042|466043|466044|466046|466779|466781|466782|466797|466806|466807|466807|466809|466811|466813|466814|466815|467072|467074|467077|467079|467086|467093|467096|467098|530317|530318|530320|530325|530328|530331|530334|530337|530338|530403|530407|530412|530420|530427|530583|530586|530588|530591|530593|530600|530797|530801|530804|530808|530811|530814|530821|530825|530830|530836|530838|530841|530843|567548|568406|568407|568411|568412|568416|568420|568423|570515|570519|570523|570524|570526|570530|570531|570533|570574|570576|570577|570578|570578|574181|574182|574183|574184|574185|574186|574187|610028|610028|610030|610031|610033|613046|614430|614430|624613|645030|645031|645032|645033|645034|645035|645036|645037|645038|645039|645040|645041|645042|645043|645044|645045|645046|645047|645048|645049|645050|645051|645052|645053|645054|645055|645056|645057|645058|645059|645060|645061|652759|652761|652765|652769|703844|703845|715100|715101|715102|715103|726809|726810|726811|726812|726813|726814|726815|726816|726817|726818|731098|740374|740375|740377|740379|740381|755409|755412|755417|755418|755419|755420|755422|755426|760529|760531|771089|771093|771096|771103|776379|776383|779850|785393|785394|785396|785398|816340|822121|844388|844389|844390|844391|844392|844393|844394|844395|844396|844397|844398|844399|844400|844401|844402|844403|844404|844405|844406|844407|844408|844409|844410|844411|844412|852833|927968|927969|927970|927971|927972|927973|927974|927975|927976|937633|937634|937635|937636|937637|937638|937639|937640|937641|937642|941148|949602|949603|949604|949605|949606|949607|949608|949609|949610|949611|949612|957895|957896|957897|957898|957899|957900|957901|960180|960181", "text": "Familial cold autoinflammatory syndrome 3" }, { - "baseId": "39010|39011|39012|39013|39014|39015|39016|138702|138703|138704|138706|138707|138710|138711|138713|138714|138716|138717|138722|138724|138726|193068|193148|193953|194086|224678|249378|249379|249380|249381|268080|270663|270783|270855|270887|273621|274044|275095|275203|275435|447065|447071|447161|447170|447179|447244|447249|488855|489054|491424|494205|509039|509040|513232|515029|515031|515128|515139|536068|556572|556609|556899|584340|585705|608918|612470|612495|626736|626737|626739|650571|731635|789832|789833|789836|789837|789838|822624|822625|921612|921613|921614|921615|921617|930005|941412|941413|941414|952040|962054|964126", + "upstreamId": "39010|39011|39012|39013|39014|39015|39016|138702|138703|138704|138706|138707|138710|138711|138713|138714|138716|138717|138722|138724|138726|193068|193148|193953|194086|224678|249378|249379|249380|249381|268080|270663|270783|270855|270887|273621|274044|275095|275203|275435|447065|447071|447161|447170|447179|447244|447249|488855|489054|491424|494205|509039|509040|513232|515029|515031|515128|515139|536068|556572|556609|556899|584340|585705|608918|612470|612495|626736|626737|626739|650571|731635|789832|789833|789836|789837|789838|822624|822625|921612|921613|921614|921615|921617|930005|941412|941413|941414|952040|962054|964126", "text": "Hajdu-Cheney syndrome" }, { - "baseId": "39018|133411|133417|133422|141632|180244|180245|240014|240015|240018|244492|244497|407093|407096|575755|575756|575760", + "upstreamId": "39018|133411|133417|133422|141632|180244|180245|240014|240015|240018|244492|244497|407093|407096|575755|575756|575760", "text": "Fanconi anemia, complementation group U" }, { - "baseId": "39018|132703|205033|205034|205035|205036|205037|205038|205039|205040|654386|678062|678063", + "upstreamId": "39018|132703|205033|205034|205035|205036|205037|205038|205039|205040|654386|678062|678063", "text": "Short stature, microcephaly, and endocrine dysfunction" }, { - "baseId": "39019|39020|39021|39022|39023|429069", + "upstreamId": "39019|39020|39021|39022|39023|429069", "text": "46,XY sex reversal 8" }, { - "baseId": "39024|39025|39026|237408|299836|299838|299839|299841|299845|299847|299850|299852|299854|299855|299862|299870|302423|302444|302461|302463|302468|302475|302478|302482|302483|302485|302490|306854|306855|306864|306865|306866|306875|306881|306887|306888|306889|306893|306904|307139|307145|307147|307149|307151|307155|307157|307160|307169|307170|307177|307178|307180|364046|552104|620226|620227|677032|699530|788797|816461|857618|857619|895794|895795|895796|895797|895798|895799|895800|895801|895802|895803|895804|895805|895806|895807|895808|895809|895810|895811|895812|895813|895814|895815|895816|896220|896221|896222|896223|896224|917794|917795", + "upstreamId": "39024|39025|39026|237408|299836|299838|299839|299841|299845|299847|299850|299852|299854|299855|299862|299870|302423|302444|302461|302463|302468|302475|302478|302482|302483|302485|302490|306854|306855|306864|306865|306866|306875|306881|306887|306888|306889|306893|306904|307139|307145|307147|307149|307151|307155|307157|307160|307169|307170|307177|307178|307180|364046|552104|620226|620227|677032|699530|788797|816461|857618|857619|895794|895795|895796|895797|895798|895799|895800|895801|895802|895803|895804|895805|895806|895807|895808|895809|895810|895811|895812|895813|895814|895815|895816|896220|896221|896222|896223|896224|917794|917795", "text": "Trichohepatoenteric syndrome 2" }, { - "baseId": "39027|39028|508785|508786|508787", + "upstreamId": "39027|39028|508785|508786|508787", "text": "Parkinson disease 18" }, { - "baseId": "39029|39030|39031|39032|39033|227258|268102|269243|269771|270877|270999|274304|452231|452234|452359|491384|518796|519048|519204|558866|586117|614259|631111|651110|686381|686382|691350|691351|691353|691357|695191|697980|697981|720347|798525|799319|816309|819292|827774|827775|827776|827777|918819|918820|920191|969769|980449", + "upstreamId": "39029|39030|39031|39032|39033|227258|268102|269243|269771|270877|270999|274304|452231|452234|452359|491384|518796|519048|519204|558866|586117|614259|631111|651110|686381|686382|691350|691351|691353|691357|695191|697980|697981|720347|798525|799319|816309|819292|827774|827775|827776|827777|918819|918820|920191|969769|980449", "text": "3MC syndrome 1" }, { - "baseId": "39038|39038|39039|39039|39040|39040|39041|39042|39043|39044|39045|39046|39047|39048|39049|153735|153736|153737|153737|170197|170197|204402|204403|246906|283703|283706|283707|283708|284378|284382|286359|286368|286372|286373|286374|286714|286717|286719|286729|286732|286734|405526|414861|450165|450340|450469|517473|517475|517560|517561|517596|517597|517751|517762|557800|557802|559021|559510|559512|629241|629242|629243|629244|629245|629246|629246|629247|629248|629248|629249|629250|629251|650934|650935|743858|743869|762743|778989|781101|792652|815887|819094|825519|825520|825521|825522|825523|825524|825525|825526|825527|825528|825529|825530|825531|825532|825533|825534|850870|922499|922500|922501|931065|942534|942535|942536|952869|952870|952871|952872|952873|959617|960460|964448", + "upstreamId": "39038|39038|39039|39039|39040|39040|39041|39042|39043|39044|39045|39046|39047|39048|39049|153735|153736|153737|153737|170197|170197|204402|204403|246906|283703|283706|283707|283708|284378|284382|286359|286368|286372|286373|286374|286714|286717|286719|286729|286732|286734|405526|414861|450165|450340|450469|517473|517475|517560|517561|517596|517597|517751|517762|557800|557802|559021|559510|559512|629241|629242|629243|629244|629245|629246|629246|629247|629248|629248|629249|629250|629251|650934|650935|743858|743869|762743|778989|781101|792652|815887|819094|825519|825520|825521|825522|825523|825524|825525|825526|825527|825528|825529|825530|825531|825532|825533|825534|850870|922499|922500|922501|931065|942534|942535|942536|952869|952870|952871|952872|952873|959617|960460|964448", "text": "Immunodeficiency 31C" }, { - "baseId": "39039", + "upstreamId": "39039", "text": "Chronic mucocutaneous candidiasis" }, { - "baseId": "39050|99491|99496|99503|177214|192291|201649|201653|201655|201657|201675|201678|201686|201691|201720|201721|405989|495430|518499|550773|614247", + "upstreamId": "39050|99491|99496|99503|177214|192291|201649|201653|201655|201657|201675|201678|201686|201691|201720|201721|405989|495430|518499|550773|614247", "text": "Schizophrenia 17" }, { - "baseId": "39054|39056|39057|39058|39058|39061|39062|53503|457788", + "upstreamId": "39054|39056|39057|39058|39058|39061|39062|53503|457788", "text": "Ventricular septal defect 1" }, { - "baseId": "39065|39066", + "upstreamId": "39065|39066", "text": "Nephrotic syndrome, type 6" }, { - "baseId": "39070|39071|39072|395449", + "upstreamId": "39070|39071|39072|395449", "text": "Ventricular septal defect 3" }, { - "baseId": "39075", + "upstreamId": "39075", "text": "Familial periodic paralysis" }, { - "baseId": "39079|75271|135691|135695|135696|135699|139369|139369|142775|165903|165904|165905|171736|190110|190111|192849|202713|202741|202742|202756|202761|205018|205018|214541|225856|247710|247711|247712|247713|247714|247715|247716|247717|247718|247719|247720|247721|247722|247723|247724|247725|247726|247727|247728|247729|247730|247731|247732|274242|361206|361207|375261|408704|408707|424662|429437|429438|442469|481456|486752|512030|513321|538432|571890|614378|622135|641224|677439|677440|682181|791254|791255|791256|791257|802002|802003|802055|816524|857654|858349|858350|858351|858352|858353|919451|919452|919453|961526|963766|964390|964391|964392|964393|964394|970968|970969|977256", + "upstreamId": "39079|75271|135691|135695|135696|135699|139369|139369|142775|165903|165904|165905|171736|190110|190111|192849|202713|202741|202742|202756|202761|205018|205018|214541|225856|247710|247711|247712|247713|247714|247715|247716|247717|247718|247719|247720|247721|247722|247723|247724|247725|247726|247727|247728|247729|247730|247731|247732|274242|361206|361207|375261|408704|408707|424662|429437|429438|442469|481456|486752|512030|513321|538432|571890|614378|622135|641224|677439|677440|682181|791254|791255|791256|791257|802002|802003|802055|816524|857654|858349|858350|858351|858352|858353|919451|919452|919453|961526|963766|964390|964391|964392|964393|964394|970968|970969|977256", "text": "Early infantile epileptic encephalopathy 13" }, { - "baseId": "39081|97393", + "upstreamId": "39081|97393", "text": "Aldosterone-producing adrenal adenoma, somatic" }, { - "baseId": "39082|199803|230626|496794", + "upstreamId": "39082|199803|230626|496794", "text": "Diffuse interstitial pulmonary fibrosis" }, { - "baseId": "39087|48221|48222|92733|171866|171868|171873|171874|200400|200401|200402|200403|200404|200405|200406|200407|200408|200409|205794|205795|208716|208717|208718|208721|208722|215106|225882|271849|353886|360481|362432|362451|377240|377244|377246|377248|377261|377262|378397|378412|378421|378435|379772|379777|379779|379780|410857|410861|410863|422355|422362|430426|430427|430428|430430|430970|431925|446321|446324|446325|469618|469619|469620|469621|469624|470570|470660|470664|470665|470667|471076|471195|471199|471643|471646|497342|507355|507358|508310|533860|533872|533876|533877|533882|533884|533886|533888|533890|533896|533908|533916|533920|533930|550373|571556|573129|573716|573793|575165|577893|580584|580703|586014|589813|611436|611918|614482|615979|648990|648991|648992|648993|648994|648995|648996|648997|648998|648999|649000|653898|654150|656660|680058|705690|728910|757799|773337|773338|773340|773343|773344|786491|786493|798768|821353|821373|822176|822177|822178|822179|822180|822181|822182|822183|822184|822185|822186|822282|822283|822284|848794|848795|848796|848797|848798|848799|848800|848801|848802|848803|848804|904257|919935|919936|929321|929322|929323|929324|939113|939114|939115|939116|951236|951237|951238|951239|951240|958963|958964|963924|964546|964547|964548|964736|966014|966044|966045|971155|972801", + "upstreamId": "39087|48221|48222|92733|171866|171868|171873|171874|200400|200401|200402|200403|200404|200405|200406|200407|200408|200409|205794|205795|208716|208717|208718|208721|208722|215106|225882|271849|353886|360481|362432|362451|377240|377244|377246|377248|377261|377262|378397|378412|378421|378435|379772|379777|379779|379780|410857|410861|410863|422355|422362|430426|430427|430428|430430|430970|431925|446321|446324|446325|469618|469619|469620|469621|469624|470570|470660|470664|470665|470667|471076|471195|471199|471643|471646|497342|507355|507358|508310|533860|533872|533876|533877|533882|533884|533886|533888|533890|533896|533908|533916|533920|533930|550373|571556|573129|573716|573793|575165|577893|580584|580703|586014|589813|611436|611918|614482|615979|648990|648991|648992|648993|648994|648995|648996|648997|648998|648999|649000|653898|654150|656660|680058|705690|728910|757799|773337|773338|773340|773343|773344|786491|786493|798768|821353|821373|822176|822177|822178|822179|822180|822181|822182|822183|822184|822185|822186|822282|822283|822284|848794|848795|848796|848797|848798|848799|848800|848801|848802|848803|848804|904257|919935|919936|929321|929322|929323|929324|939113|939114|939115|939116|951236|951237|951238|951239|951240|958963|958964|963924|964546|964547|964548|964736|966014|966044|966045|971155|972801", "text": "Mental retardation, autosomal dominant 7" }, { - "baseId": "39089|39090|190914|190915|191731|192064|192065|193303|195766|195767|213544|221361|221362|227192|227843|228983|228984|228985|228986|228987|228988|228989|228990|228991|228992|228993|228995|228996|228997|228998|228999|229000|229001|229002|229003|229004|229005|229006|229007|239077|239078|239079|239080|239081|239082|239083|239084|239085|239086|239087|239088|239089|239090|239091|239092|239093|246930|246931|246933|250865|250866|250867|250868|250870|250872|250873|250874|250875|250876|250878|250879|250881|250885|250886|250888|258246|258247|258248|258250|258253|258254|258255|258256|258257|258258|258259|258260|258261|258262|258264|258265|258266|258268|258270|258273|258274|258276|258277|258281|258283|258284|263818|263819|268990|288324|288331|288338|288346|288349|288350|288355|288360|288361|288366|288368|288370|288371|288372|288380|288388|288390|288396|288397|288402|288416|288419|288425|289110|289115|289122|289125|289126|289127|289132|289144|289145|289155|289156|289163|289164|289165|289172|289175|292057|292070|292072|292077|292078|292084|292105|292113|292114|292130|292143|292144|292159|292163|292169|292179|292195|292196|292199|292241|292243|292251|292261|292277|292278|292288|292292|292294|292298|359474|361858|362736|366893|366894|366895|367151|367154|367156|367157|367158|367160|367163|368173|389561|393233|393240|393248|393249|393255|393260|393262|393264|393266|393267|393271|393276|393279|393285|393312|393320|393321|393325|393327|393332|393335|393341|393342|393353|393354|393359|393441|393454|393461|393463|393466|393467|393469|393477|393479|393481|393483|393489|393491|393661|393662|393664|393668|393669|393673|393678|393682|393684|393691|393693|393695|393702|393709|406107|413642|417440|433732|433734|443356|451756|451757|451759|451763|451770|451772|451774|451777|451778|451779|451780|451787|451794|451801|451806|451815|451819|451821|452008|452012|452013|452015|452016|452023|452026|452028|452083|452085|452104|452107|452109|452113|452114|452128|452130|452131|452225|452230|452237|452239|452242|452246|452248|452251|452253|480517|481425|486334|495133|500000|500261|500426|500428|500430|500452|509500|509501|509506|509511|509512|509516|509520|509522|509523|509526|509528|509533|509534|509535|509536|509538|509543|509547|518787|518791|518793|518795|518798|518807|518808|518810|518819|518827|518833|518837|518842|518847|518849|518850|518853|518863|518868|518872|518875|518879|518880|518882|519023|519033|519034|519037|519039|519040|519042|519043|519045|519046|519047|519051|519052|519056|519058|519060|519070|519075|537739|537741|537746|537748|552424|552428|558774|558776|558778|558780|558782|558784|558786|558788|558790|558792|558794|559219|559313|559315|559317|559319|559321|559323|559325|559327|559329|561140|561144|561150|561155|561166|561168|561174|561175|561178|562358|562359|562360|562364|562368|609295|609493|609496|612631|612635|614256|614257|614887|614890|630844|630845|630846|630847|630848|630849|630850|630851|630852|630853|630854|630855|630856|630857|630858|630859|630860|630861|630862|630863|630864|630865|630866|630867|630868|630869|630870|630871|630872|630873|630874|651015|651020|651025|655502|679743|682238|683532|683533|683534|683536|683537|686304|686307|686308|686311|686314|686315|686317|691282|691284|697786|759172|759184|763576|763578|779019|787148|799310|799311|819316|827415|827416|827417|827418|827419|827420|827421|827422|827423|827424|827425|827426|827427|827428|827429|827430|827431|827432|827433|827434|827435|827436|827437|827438|827439|827440|827441|827442|827443|827444|827445|827446|827447|850906|887735|887736|887737|887738|887739|887740|887741|887742|887743|887744|887745|887746|887747|887748|887749|887750|887751|887752|887753|887754|887755|887756|887757|887758|887760|887761|887762|887763|887764|887765|887766|918795|923018|923019|923020|923021|923022|923023|923024|923025|931724|931725|931726|931727|931728|931729|931730|931731|931732|931733|931734|931735|943289|943290|943291|943292|943293|943294|943295|943296|953315|953316|953317|953318|953319|953320|953321|959677|959678|967145|967176|967177", + "upstreamId": "39089|39090|190914|190915|191731|192064|192065|193303|195766|195767|213544|221361|221362|227192|227843|228983|228984|228985|228986|228987|228988|228989|228990|228991|228992|228993|228995|228996|228997|228998|228999|229000|229001|229002|229003|229004|229005|229006|229007|239077|239078|239079|239080|239081|239082|239083|239084|239085|239086|239087|239088|239089|239090|239091|239092|239093|246930|246931|246933|250865|250866|250867|250868|250870|250872|250873|250874|250875|250876|250878|250879|250881|250885|250886|250888|258246|258247|258248|258250|258253|258254|258255|258256|258257|258258|258259|258260|258261|258262|258264|258265|258266|258268|258270|258273|258274|258276|258277|258281|258283|258284|263818|263819|268990|288324|288331|288338|288346|288349|288350|288355|288360|288361|288366|288368|288370|288371|288372|288380|288388|288390|288396|288397|288402|288416|288419|288425|289110|289115|289122|289125|289126|289127|289132|289144|289145|289155|289156|289163|289164|289165|289172|289175|292057|292070|292072|292077|292078|292084|292105|292113|292114|292130|292143|292144|292159|292163|292169|292179|292195|292196|292199|292241|292243|292251|292261|292277|292278|292288|292292|292294|292298|359474|361858|362736|366893|366894|366895|367151|367154|367156|367157|367158|367160|367163|368173|389561|393233|393240|393248|393249|393255|393260|393262|393264|393266|393267|393271|393276|393279|393285|393312|393320|393321|393325|393327|393332|393335|393341|393342|393353|393354|393359|393441|393454|393461|393463|393466|393467|393469|393477|393479|393481|393483|393489|393491|393661|393662|393664|393668|393669|393673|393678|393682|393684|393691|393693|393695|393702|393709|406107|413642|417440|433732|433734|443356|451756|451757|451759|451763|451770|451772|451774|451777|451778|451779|451780|451787|451794|451801|451806|451815|451819|451821|452008|452012|452013|452015|452016|452023|452026|452028|452083|452085|452104|452107|452109|452113|452114|452128|452130|452131|452225|452230|452237|452239|452242|452246|452248|452251|452253|480517|481425|486334|495133|500000|500261|500426|500428|500430|500452|509500|509501|509506|509511|509512|509516|509520|509522|509523|509526|509528|509533|509534|509535|509536|509538|509543|509547|518787|518791|518793|518795|518798|518807|518808|518810|518819|518827|518833|518837|518842|518847|518849|518850|518853|518863|518868|518872|518875|518879|518880|518882|519023|519033|519034|519037|519039|519040|519042|519043|519045|519046|519047|519051|519052|519056|519058|519060|519070|519075|537739|537741|537746|537748|552424|552428|558774|558776|558778|558780|558782|558784|558786|558788|558790|558792|558794|559219|559313|559315|559317|559319|559321|559323|559325|559327|559329|561140|561144|561150|561155|561166|561168|561174|561175|561178|562358|562359|562360|562364|562368|609295|609493|609496|612631|612635|614256|614257|614887|614890|630844|630845|630846|630847|630848|630849|630850|630851|630852|630853|630854|630855|630856|630857|630858|630859|630860|630861|630862|630863|630864|630865|630866|630867|630868|630869|630870|630871|630872|630873|630874|651015|651020|651025|655502|679743|682238|683532|683533|683534|683536|683537|686304|686307|686308|686311|686314|686315|686317|691282|691284|697786|759172|759184|763576|763578|779019|787148|799310|799311|819316|827415|827416|827417|827418|827419|827420|827421|827422|827423|827424|827425|827426|827427|827428|827429|827430|827431|827432|827433|827434|827435|827436|827437|827438|827439|827440|827441|827442|827443|827444|827445|827446|827447|850906|887735|887736|887737|887738|887739|887740|887741|887742|887743|887744|887745|887746|887747|887748|887749|887750|887751|887752|887753|887754|887755|887756|887757|887758|887760|887761|887762|887763|887764|887765|887766|918795|923018|923019|923020|923021|923022|923023|923024|923025|931724|931725|931726|931727|931728|931729|931730|931731|931732|931733|931734|931735|943289|943290|943291|943292|943293|943294|943295|943296|953315|953316|953317|953318|953319|953320|953321|959677|959678|967145|967176|967177", "text": "Aortic aneurysm, familial thoracic 7" }, { - "baseId": "39092|39093|39094|39095|39096|513301|969283|969284", + "upstreamId": "39092|39093|39094|39095|39096|513301|969283|969284", "text": "Craniosynostosis and dental anomalies" }, { - "baseId": "39097|192301|192302|192304|192304|193485|194352|260581|271395|275012|315166|315168|315170|315171|315175|315181|315182|315189|315190|315195|315196|315200|315203|321989|322012|322013|322017|322020|322026|328077|328092|328113|328117|328123|328124|328131|328132|329346|329356|329359|329368|329370|329372|329391|433909|536181|590441|590442|620420|724739|738291|868783|868784|868785|868786|868787|868788|868789|868790|868791|868792|868793|868794|868795|868796|868797", + "upstreamId": "39097|192301|192302|192304|192304|193485|194352|260581|271395|275012|315166|315168|315170|315171|315175|315181|315182|315189|315190|315195|315196|315200|315203|321989|322012|322013|322017|322020|322026|328077|328092|328113|328117|328123|328124|328131|328132|329346|329356|329359|329368|329370|329372|329391|433909|536181|590441|590442|620420|724739|738291|868783|868784|868785|868786|868787|868788|868789|868790|868791|868792|868793|868794|868795|868796|868797", "text": "Osteogenesis imperfecta type 10" }, { - "baseId": "39100|39101|39102|39103|213561|246988|263526|424269|424270|428439|455034|455051|455218|455223|455227|455231|455680|455682|455689|508801|508802|508803|508804|508805|508806|521517|521577|521581|521844|563184|563196|633987|633988|633989|633990|633991|691871|691872|691873|691874|699120|699121|699122|699123|699124|699128|709954|777608|821921|821922|830904|918973|944639|970810", + "upstreamId": "39100|39101|39102|39103|213561|246988|263526|424269|424270|428439|455034|455051|455218|455223|455227|455231|455680|455682|455689|508801|508802|508803|508804|508805|508806|521517|521577|521581|521844|563184|563196|633987|633988|633989|633990|633991|691871|691872|691873|691874|699120|699121|699122|699123|699124|699128|709954|777608|821921|821922|830904|918973|944639|970810", "text": "46,XY sex reversal, type 6" }, { - "baseId": "39110|48337|48338|247502", + "upstreamId": "39110|48337|48338|247502", "text": "High density lipoprotein cholesterol level quantitative trait locus 6" }, { - "baseId": "39115|39548|39551|79366|253214|253218|270642|306119|310158|310160|310176|458107|692527|692528|700686|835158|835159|835160|835161|835162|835163|835164|835165|835166|900611|934450|934451|946230|946231|946232|946233|946234|946235|955528|955529|955530", + "upstreamId": "39115|39548|39551|79366|253214|253218|270642|306119|310158|310160|310176|458107|692527|692528|700686|835158|835159|835160|835161|835162|835163|835164|835165|835166|900611|934450|934451|946230|946231|946232|946233|946234|946235|955528|955529|955530", "text": "Microphthalmia, isolated, with coloboma 6" }, { - "baseId": "39116|39117|39118|39119|39120|512886", + "upstreamId": "39116|39117|39118|39119|39120|512886", "text": "Fleck retina, familial benign" }, { - "baseId": "39121|167827|413648", + "upstreamId": "39121|167827|413648", "text": "Cutaneous telangiectasia and cancer syndrome, familial" }, { - "baseId": "39122|39125|45670|76767|134830|134830|134831|134831|134832|134832|134833|134833|134834|134834|134835|134836|134836|134837|134838|134838|134839|134839|134840|134840|134841|134841|134842|134843|134843|134844|134844|141761|171771|171772|171780|185949|185949|188961|193290|193290|204421|205231|205730|206957|206957|206959|206959|206960|206961|206963|206963|206964|206965|206966|206967|206967|206968|206968|206969|206969|206970|206970|206972|206973|206973|206975|206976|206976|206977|206977|206978|206980|215254|231515|231515|231518|231518|231518|231524|244343|244344|244344|244346|244347|244348|244351|244353|244353|244356|244356|244362|264094|266623|266623|268250|268250|285493|285494|285516|285520|285521|285523|285525|285532|285538|285539|285540|285541|285546|285549|285549|285550|285550|285553|285553|285557|285557|285560|285565|285565|285567|285567|285568|285568|286211|286212|286213|286214|286215|286216|286217|286218|286220|286221|286229|286230|286232|286232|286233|286236|286236|286246|286247|286247|286248|286249|286249|286252|286252|286256|286261|288526|288527|288528|288530|288531|288545|288546|288547|288554|288554|288555|288555|288560|288560|288561|288563|288563|288575|288575|288581|288583|288583|288588|288589|288907|288923|288929|288930|288931|288942|288943|288949|288950|288965|288966|288968|288968|288969|288969|288970|288970|288971|288972|288973|288973|288980|359461|360839|363878|363878|364120|366280|366289|366292|366292|366300|366300|366308|366308|366482|366487|366496|366507|366508|366508|366511|366513|366522|366522|366524|366524|366525|405680|405682|405684|405686|405686|411554|411554|413596|413597|414880|414880|414882|420290|425478|425480|428009|428010|428011|428015|428017|428018|428019|428024|428027|438199|438201|438202|440688|440688|440692|440692|440692|440695|443210|443211|443212|443214|443214|443216|448393|448493|450608|450612|450614|450617|450622|450624|450626|450628|450636|450639|450642|450642|450704|450704|450710|450711|450718|450719|450725|450727|450728|450730|450732|450732|450734|450742|450742|450747|450880|450884|450884|450885|450885|450887|450897|450898|450900|450900|450906|450906|450910|450911|450913|450914|450914|450915|450916|450917|450918|450919|450920|450936|450939|450951|450958|450961|450964|450965|486277|490314|499602|499604|499610|499868|500051|500058|511410|511410|517932|517935|517942|517944|517950|517952|517955|517957|517964|517969|517970|517974|517976|517984|517987|517991|517997|517999|518004|518007|518008|518009|518010|518010|518013|518015|518017|518018|518024|518026|518028|518030|518031|518033|518035|518036|518043|518045|518048|518050|518074|518075|518076|518076|518076|518077|518079|518091|518093|518093|518094|518097|518099|518103|518104|518111|518112|518112|518117|518118|518125|518126|518128|537380|557436|557966|557968|557968|557970|557972|557974|557976|557978|557980|558314|558316|558318|558320|558322|558324|558326|558328|558330|558332|558334|560526|560526|560531|560533|560534|560549|561197|561205|561215|561217|561220|561230|561231|561233|561238|578976|578981|578981|578985|579005|579012|579013|579016|579036|579037|612606|629701|629702|629703|629704|629705|629706|629707|629708|629709|629710|629711|629712|629713|629714|629715|629716|629717|629718|629719|629720|629721|629722|629723|629723|629724|629725|629726|629727|629728|629729|629730|629731|629732|629733|629734|629735|629736|629737|629738|629739|629740|629741|629742|629743|629744|629744|650738|650753|650797|650947|650969|650972|650974|650975|650977|650978|650981|689711|691092|691093|691094|691095|691096|691098|691099|691100|691101|691104|691105|691106|691106|691107|691107|691108|691109|695132|695133|695135|695136|697474|697476|697478|697480|697481|708154|708156|708157|708158|719754|719756|733332|733339|733342|733343|747461|747465|759155|763102|763103|763107|763108|763110|774690|774731|777277|778917|790216|790217|790218|790219|790220|798507|819147|826068|826069|826070|826071|826072|826073|826074|826075|826076|826077|826078|826079|826080|826081|826082|826083|826084|826085|826086|826087|826088|826089|826090|826091|826092|826092|826093|826094|826095|826096|826097|826097|826098|826099|826100|826101|826102|826103|826104|826105|826106|826107|850898|851168|857365|857366|884347|884348|884349|884350|884351|884352|884353|884354|884355|884356|884357|884358|884359|884360|884361|884362|884363|884364|884365|884366|884367|884368|884369|884370|884371|884372|884373|884374|884375|884376|884377|884378|884379|884380|884381|884382|884383|884384|884385|884386|884387|884388|884389|884390|884391|884392|884393|884394|884395|884395|884396|884397|884398|884399|884400|884401|884402|884403|884404|884405|884406|887327|887328|887329|922658|922659|922660|922661|922662|922663|922664|922665|922666|922667|922668|922669|922670|922671|922672|922673|931252|931253|931254|931255|931256|931257|931258|931259|931260|939882|939883|939884|942731|942732|942733|942734|942735|942736|942737|942738|942739|942740|942741|942742|953013|953014|953015|953016|953017|953018|961259|963209|963210|963211|963212|963214|963216|963217|963219|963220|963221|963222|965947|967262", + "upstreamId": "39122|39125|45670|76767|134830|134830|134831|134831|134832|134832|134833|134833|134834|134834|134835|134836|134836|134837|134838|134838|134839|134839|134840|134840|134841|134841|134842|134843|134843|134844|134844|141761|171771|171772|171780|185949|185949|188961|193290|193290|204421|205231|205730|206957|206957|206959|206959|206960|206961|206963|206963|206964|206965|206966|206967|206967|206968|206968|206969|206969|206970|206970|206972|206973|206973|206975|206976|206976|206977|206977|206978|206980|215254|231515|231515|231518|231518|231518|231524|244343|244344|244344|244346|244347|244348|244351|244353|244353|244356|244356|244362|264094|266623|266623|268250|268250|285493|285494|285516|285520|285521|285523|285525|285532|285538|285539|285540|285541|285546|285549|285549|285550|285550|285553|285553|285557|285557|285560|285565|285565|285567|285567|285568|285568|286211|286212|286213|286214|286215|286216|286217|286218|286220|286221|286229|286230|286232|286232|286233|286236|286236|286246|286247|286247|286248|286249|286249|286252|286252|286256|286261|288526|288527|288528|288530|288531|288545|288546|288547|288554|288554|288555|288555|288560|288560|288561|288563|288563|288575|288575|288581|288583|288583|288588|288589|288907|288923|288929|288930|288931|288942|288943|288949|288950|288965|288966|288968|288968|288969|288969|288970|288970|288971|288972|288973|288973|288980|359461|360839|363878|363878|364120|366280|366289|366292|366292|366300|366300|366308|366308|366482|366487|366496|366507|366508|366508|366511|366513|366522|366522|366524|366524|366525|405680|405682|405684|405686|405686|411554|411554|413596|413597|414880|414880|414882|420290|425478|425480|428009|428010|428011|428015|428017|428018|428019|428024|428027|438199|438201|438202|440688|440688|440692|440692|440692|440695|443210|443211|443212|443214|443214|443216|448393|448493|450608|450612|450614|450617|450622|450624|450626|450628|450636|450639|450642|450642|450704|450704|450710|450711|450718|450719|450725|450727|450728|450730|450732|450732|450734|450742|450742|450747|450880|450884|450884|450885|450885|450887|450897|450898|450900|450900|450906|450906|450910|450911|450913|450914|450914|450915|450916|450917|450918|450919|450920|450936|450939|450951|450958|450961|450964|450965|486277|490314|499602|499604|499610|499868|500051|500058|511410|511410|517932|517935|517942|517944|517950|517952|517955|517957|517964|517969|517970|517974|517976|517984|517987|517991|517997|517999|518004|518007|518008|518009|518010|518010|518013|518015|518017|518018|518024|518026|518028|518030|518031|518033|518035|518036|518043|518045|518048|518050|518074|518075|518076|518076|518076|518077|518079|518091|518093|518093|518094|518097|518099|518103|518104|518111|518112|518112|518117|518118|518125|518126|518128|537380|557436|557966|557968|557968|557970|557972|557974|557976|557978|557980|558314|558316|558318|558320|558322|558324|558326|558328|558330|558332|558334|560526|560526|560531|560533|560534|560549|561197|561205|561215|561217|561220|561230|561231|561233|561238|578976|578981|578981|578985|579005|579012|579013|579016|579036|579037|612606|629701|629702|629703|629704|629705|629706|629707|629708|629709|629710|629711|629712|629713|629714|629715|629716|629717|629718|629719|629720|629721|629722|629723|629723|629724|629725|629726|629727|629728|629729|629730|629731|629732|629733|629734|629735|629736|629737|629738|629739|629740|629741|629742|629743|629744|629744|650738|650753|650797|650947|650969|650972|650974|650975|650977|650978|650981|689711|691092|691093|691094|691095|691096|691098|691099|691100|691101|691104|691105|691106|691106|691107|691107|691108|691109|695132|695133|695135|695136|697474|697476|697478|697480|697481|708154|708156|708157|708158|719754|719756|733332|733339|733342|733343|747461|747465|759155|763102|763103|763107|763108|763110|774690|774731|777277|778917|790216|790217|790218|790219|790220|798507|819147|826068|826069|826070|826071|826072|826073|826074|826075|826076|826077|826078|826079|826080|826081|826082|826083|826084|826085|826086|826087|826088|826089|826090|826091|826092|826092|826093|826094|826095|826096|826097|826097|826098|826099|826100|826101|826102|826103|826104|826105|826106|826107|850898|851168|857365|857366|884347|884348|884349|884350|884351|884352|884353|884354|884355|884356|884357|884358|884359|884360|884361|884362|884363|884364|884365|884366|884367|884368|884369|884370|884371|884372|884373|884374|884375|884376|884377|884378|884379|884380|884381|884382|884383|884384|884385|884386|884387|884388|884389|884390|884391|884392|884393|884394|884395|884395|884396|884397|884398|884399|884400|884401|884402|884403|884404|884405|884406|887327|887328|887329|922658|922659|922660|922661|922662|922663|922664|922665|922666|922667|922668|922669|922670|922671|922672|922673|931252|931253|931254|931255|931256|931257|931258|931259|931260|939882|939883|939884|942731|942732|942733|942734|942735|942736|942737|942738|942739|942740|942741|942742|953013|953014|953015|953016|953017|953018|961259|963209|963210|963211|963212|963214|963216|963217|963219|963220|963221|963222|965947|967262", "text": "Spastic paraplegia 30, autosomal recessive" }, { - "baseId": "39125|39125|76767|134830|134831|134832|134833|134834|134836|134838|134839|134840|134841|134843|134844|171771|171771|171772|171772|171773|171774|171775|171776|171777|171778|171779|171780|185949|188961|188961|193290|204420|204421|205231|205730|206957|206959|206959|206959|206960|206961|206963|206963|206964|206965|206966|206967|206968|206969|206970|206972|206973|206975|206976|206977|206978|206978|206980|215254|225885|231515|231515|231518|231524|244343|244344|244344|244346|244347|244347|244348|244351|244353|244356|244362|244362|264094|264094|266623|268250|285549|285550|285553|285557|285565|285567|285568|286232|286236|286247|286249|286252|288554|288555|288560|288563|288575|288583|288968|288969|288970|288973|359461|363878|363878|364120|366280|366289|366292|366300|366308|366487|366496|366507|366508|366511|366513|366522|366524|366525|405680|405682|405684|405684|405686|411554|413596|413596|413597|414880|414880|414882|414882|420290|420290|424260|425478|425480|428009|428010|428011|428015|428017|428018|428019|428021|428023|428024|428027|438199|438201|438202|440688|440688|440692|440692|440695|443210|443211|443212|443214|443214|443215|443216|448393|448493|450608|450612|450614|450617|450622|450624|450626|450628|450636|450639|450642|450704|450710|450711|450718|450719|450725|450727|450728|450730|450732|450734|450742|450747|450880|450884|450885|450887|450897|450898|450900|450900|450906|450910|450911|450913|450914|450915|450916|450917|450918|450919|450920|450936|450939|450951|450958|450961|450964|450965|486277|490314|499602|499604|499610|499868|500051|500058|511410|513254|517932|517935|517942|517944|517950|517952|517955|517957|517964|517969|517970|517974|517976|517984|517987|517991|517997|517999|518004|518007|518008|518009|518010|518013|518015|518017|518018|518024|518026|518028|518030|518031|518033|518035|518036|518043|518045|518048|518050|518074|518075|518076|518076|518077|518079|518091|518093|518094|518097|518099|518103|518104|518111|518112|518112|518117|518118|518125|518126|518128|537380|557436|557966|557968|557970|557972|557974|557976|557978|557980|558314|558316|558318|558320|558322|558324|558326|558328|558330|558332|558334|560526|560531|560533|560534|560534|560549|561197|561205|561215|561217|561220|561230|561231|561233|561238|578976|578981|578985|579005|579012|579013|579016|579036|579037|612606|629701|629702|629703|629704|629705|629706|629707|629708|629709|629710|629711|629712|629713|629714|629715|629716|629717|629718|629719|629720|629721|629722|629723|629724|629725|629726|629727|629728|629729|629730|629731|629732|629733|629734|629735|629736|629737|629738|629739|629740|629741|629742|629743|629744|650738|650753|650797|650947|650969|650972|650974|650975|650977|650978|650981|653809|680042|689711|691092|691093|691094|691095|691096|691098|691099|691100|691101|691104|691105|691106|691107|691108|691109|695132|695133|695135|695136|697474|697476|697478|697480|697481|708154|708156|708157|708158|719754|719756|733332|733339|733342|733343|747461|747465|759155|763102|763103|763107|763108|763110|774690|774731|777277|778917|818213|819147|826068|826069|826070|826071|826072|826073|826074|826075|826076|826077|826078|826079|826080|826081|826082|826083|826084|826085|826086|826087|826088|826089|826090|826091|826092|826093|826094|826095|826096|826097|826098|826099|826100|826101|826102|826103|826104|826105|826106|826107|850898|851168|857367|858299|884395|903517|922658|922659|922660|922661|922662|922663|922664|922665|922666|922667|922668|922669|922670|922671|922672|922673|931252|931253|931254|931255|931256|931257|931258|931259|931260|939882|939883|939884|942731|942732|942733|942734|942735|942736|942737|942738|942739|942740|942741|942742|953013|953014|953015|953016|953017|953018|961259|963125|963213|963215|963218|963521|970739|972713", + "upstreamId": "39125|39125|76767|134830|134831|134832|134833|134834|134836|134838|134839|134840|134841|134843|134844|171771|171771|171772|171772|171773|171774|171775|171776|171777|171778|171779|171780|185949|188961|188961|193290|204420|204421|205231|205730|206957|206959|206959|206959|206960|206961|206963|206963|206964|206965|206966|206967|206968|206969|206970|206972|206973|206975|206976|206977|206978|206978|206980|215254|225885|231515|231515|231518|231524|244343|244344|244344|244346|244347|244347|244348|244351|244353|244356|244362|244362|264094|264094|266623|268250|285549|285550|285553|285557|285565|285567|285568|286232|286236|286247|286249|286252|288554|288555|288560|288563|288575|288583|288968|288969|288970|288973|359461|363878|363878|364120|366280|366289|366292|366300|366308|366487|366496|366507|366508|366511|366513|366522|366524|366525|405680|405682|405684|405684|405686|411554|413596|413596|413597|414880|414880|414882|414882|420290|420290|424260|425478|425480|428009|428010|428011|428015|428017|428018|428019|428021|428023|428024|428027|438199|438201|438202|440688|440688|440692|440692|440695|443210|443211|443212|443214|443214|443215|443216|448393|448493|450608|450612|450614|450617|450622|450624|450626|450628|450636|450639|450642|450704|450710|450711|450718|450719|450725|450727|450728|450730|450732|450734|450742|450747|450880|450884|450885|450887|450897|450898|450900|450900|450906|450910|450911|450913|450914|450915|450916|450917|450918|450919|450920|450936|450939|450951|450958|450961|450964|450965|486277|490314|499602|499604|499610|499868|500051|500058|511410|513254|517932|517935|517942|517944|517950|517952|517955|517957|517964|517969|517970|517974|517976|517984|517987|517991|517997|517999|518004|518007|518008|518009|518010|518013|518015|518017|518018|518024|518026|518028|518030|518031|518033|518035|518036|518043|518045|518048|518050|518074|518075|518076|518076|518077|518079|518091|518093|518094|518097|518099|518103|518104|518111|518112|518112|518117|518118|518125|518126|518128|537380|557436|557966|557968|557970|557972|557974|557976|557978|557980|558314|558316|558318|558320|558322|558324|558326|558328|558330|558332|558334|560526|560531|560533|560534|560534|560549|561197|561205|561215|561217|561220|561230|561231|561233|561238|578976|578981|578985|579005|579012|579013|579016|579036|579037|612606|629701|629702|629703|629704|629705|629706|629707|629708|629709|629710|629711|629712|629713|629714|629715|629716|629717|629718|629719|629720|629721|629722|629723|629724|629725|629726|629727|629728|629729|629730|629731|629732|629733|629734|629735|629736|629737|629738|629739|629740|629741|629742|629743|629744|650738|650753|650797|650947|650969|650972|650974|650975|650977|650978|650981|653809|680042|689711|691092|691093|691094|691095|691096|691098|691099|691100|691101|691104|691105|691106|691107|691108|691109|695132|695133|695135|695136|697474|697476|697478|697480|697481|708154|708156|708157|708158|719754|719756|733332|733339|733342|733343|747461|747465|759155|763102|763103|763107|763108|763110|774690|774731|777277|778917|818213|819147|826068|826069|826070|826071|826072|826073|826074|826075|826076|826077|826078|826079|826080|826081|826082|826083|826084|826085|826086|826087|826088|826089|826090|826091|826092|826093|826094|826095|826096|826097|826098|826099|826100|826101|826102|826103|826104|826105|826106|826107|850898|851168|857367|858299|884395|903517|922658|922659|922660|922661|922662|922663|922664|922665|922666|922667|922668|922669|922670|922671|922672|922673|931252|931253|931254|931255|931256|931257|931258|931259|931260|939882|939883|939884|942731|942732|942733|942734|942735|942736|942737|942738|942739|942740|942741|942742|953013|953014|953015|953016|953017|953018|961259|963125|963213|963215|963218|963521|970739|972713", "text": "Intellectual disability, autosomal dominant 9" }, { - "baseId": "39125|204420|204421|417248|806368", + "upstreamId": "39125|204420|204421|417248|806368", "text": "PEHO syndrome" }, { - "baseId": "39125|76767|76767|76783|134830|134831|134832|134833|134834|134836|134838|134839|134840|134841|134843|134844|171771|171772|185949|188961|193290|205231|205730|206957|206959|206959|206960|206961|206963|206964|206965|206966|206967|206968|206969|206970|206972|206973|206975|206976|206977|206978|206980|215254|231515|231515|231518|231518|231524|244343|244344|244344|244346|244347|244348|244351|244353|244356|244362|264094|266623|268250|285549|285550|285553|285557|285565|285567|285568|286232|286236|286247|286249|286252|288554|288555|288560|288563|288575|288583|288968|288969|288970|288973|359461|363878|363878|364120|366280|366289|366292|366300|366308|366487|366496|366507|366508|366511|366513|366522|366524|366525|405680|405682|405684|405686|411554|413596|413597|414880|414880|414882|420290|425478|425480|428009|428010|428011|428015|428017|428018|428019|428024|428027|438199|438201|438202|440688|440688|440692|440692|440695|443210|443211|443212|443214|443214|443216|448393|448493|450608|450612|450614|450617|450622|450624|450626|450628|450636|450639|450642|450704|450710|450711|450718|450719|450725|450727|450728|450730|450732|450734|450742|450747|450880|450884|450885|450887|450897|450898|450900|450900|450906|450910|450911|450913|450914|450915|450916|450917|450918|450919|450920|450936|450939|450951|450958|450961|450964|450965|486277|490314|499602|499604|499610|499868|500051|500058|511410|517932|517935|517942|517944|517950|517952|517955|517957|517964|517969|517970|517974|517976|517984|517987|517991|517997|517999|518004|518007|518008|518009|518010|518013|518015|518017|518018|518024|518026|518028|518030|518031|518033|518035|518036|518043|518045|518048|518050|518074|518075|518076|518076|518077|518079|518091|518093|518094|518097|518099|518103|518104|518111|518112|518112|518117|518118|518125|518126|518128|537380|557436|557966|557968|557970|557972|557974|557976|557978|557980|558314|558316|558318|558320|558322|558324|558326|558328|558330|558332|558334|560526|560531|560533|560534|560549|561197|561205|561215|561217|561220|561230|561231|561233|561238|578976|578981|578985|579005|579012|579013|579016|579036|579037|612606|629701|629702|629703|629704|629705|629706|629707|629708|629709|629710|629711|629712|629713|629714|629715|629716|629717|629718|629719|629720|629721|629722|629723|629724|629725|629726|629727|629728|629729|629730|629731|629732|629733|629734|629735|629736|629737|629738|629739|629740|629741|629742|629743|629744|650738|650753|650797|650947|650969|650972|650974|650975|650977|650978|650981|689711|691092|691093|691094|691095|691096|691098|691099|691100|691101|691104|691105|691106|691107|691108|691109|695132|695133|695135|695136|697474|697476|697478|697480|697481|708154|708156|708157|708158|719754|719756|733332|733339|733342|733343|747461|747465|759155|763102|763103|763107|763108|763110|774690|774731|777277|778917|819147|826068|826069|826070|826071|826072|826073|826074|826075|826076|826077|826078|826079|826080|826081|826082|826083|826084|826085|826086|826087|826088|826089|826090|826091|826092|826093|826094|826095|826096|826097|826098|826099|826100|826101|826102|826103|826104|826105|826106|826107|850898|851168|884395|922658|922659|922660|922661|922662|922663|922664|922665|922666|922667|922668|922669|922670|922671|922672|922673|931252|931253|931254|931255|931256|931257|931258|931259|931260|939882|939883|939884|942731|942732|942733|942734|942735|942736|942737|942738|942739|942740|942741|942742|953013|953014|953015|953016|953017|953018|961259", + "upstreamId": "39125|76767|76767|76783|134830|134831|134832|134833|134834|134836|134838|134839|134840|134841|134843|134844|171771|171772|185949|188961|193290|205231|205730|206957|206959|206959|206960|206961|206963|206964|206965|206966|206967|206968|206969|206970|206972|206973|206975|206976|206977|206978|206980|215254|231515|231515|231518|231518|231524|244343|244344|244344|244346|244347|244348|244351|244353|244356|244362|264094|266623|268250|285549|285550|285553|285557|285565|285567|285568|286232|286236|286247|286249|286252|288554|288555|288560|288563|288575|288583|288968|288969|288970|288973|359461|363878|363878|364120|366280|366289|366292|366300|366308|366487|366496|366507|366508|366511|366513|366522|366524|366525|405680|405682|405684|405686|411554|413596|413597|414880|414880|414882|420290|425478|425480|428009|428010|428011|428015|428017|428018|428019|428024|428027|438199|438201|438202|440688|440688|440692|440692|440695|443210|443211|443212|443214|443214|443216|448393|448493|450608|450612|450614|450617|450622|450624|450626|450628|450636|450639|450642|450704|450710|450711|450718|450719|450725|450727|450728|450730|450732|450734|450742|450747|450880|450884|450885|450887|450897|450898|450900|450900|450906|450910|450911|450913|450914|450915|450916|450917|450918|450919|450920|450936|450939|450951|450958|450961|450964|450965|486277|490314|499602|499604|499610|499868|500051|500058|511410|517932|517935|517942|517944|517950|517952|517955|517957|517964|517969|517970|517974|517976|517984|517987|517991|517997|517999|518004|518007|518008|518009|518010|518013|518015|518017|518018|518024|518026|518028|518030|518031|518033|518035|518036|518043|518045|518048|518050|518074|518075|518076|518076|518077|518079|518091|518093|518094|518097|518099|518103|518104|518111|518112|518112|518117|518118|518125|518126|518128|537380|557436|557966|557968|557970|557972|557974|557976|557978|557980|558314|558316|558318|558320|558322|558324|558326|558328|558330|558332|558334|560526|560531|560533|560534|560549|561197|561205|561215|561217|561220|561230|561231|561233|561238|578976|578981|578985|579005|579012|579013|579016|579036|579037|612606|629701|629702|629703|629704|629705|629706|629707|629708|629709|629710|629711|629712|629713|629714|629715|629716|629717|629718|629719|629720|629721|629722|629723|629724|629725|629726|629727|629728|629729|629730|629731|629732|629733|629734|629735|629736|629737|629738|629739|629740|629741|629742|629743|629744|650738|650753|650797|650947|650969|650972|650974|650975|650977|650978|650981|689711|691092|691093|691094|691095|691096|691098|691099|691100|691101|691104|691105|691106|691107|691108|691109|695132|695133|695135|695136|697474|697476|697478|697480|697481|708154|708156|708157|708158|719754|719756|733332|733339|733342|733343|747461|747465|759155|763102|763103|763107|763108|763110|774690|774731|777277|778917|819147|826068|826069|826070|826071|826072|826073|826074|826075|826076|826077|826078|826079|826080|826081|826082|826083|826084|826085|826086|826087|826088|826089|826090|826091|826092|826093|826094|826095|826096|826097|826098|826099|826100|826101|826102|826103|826104|826105|826106|826107|850898|851168|884395|922658|922659|922660|922661|922662|922663|922664|922665|922666|922667|922668|922669|922670|922671|922672|922673|931252|931253|931254|931255|931256|931257|931258|931259|931260|939882|939883|939884|942731|942732|942733|942734|942735|942736|942737|942738|942739|942740|942741|942742|953013|953014|953015|953016|953017|953018|961259", "text": "Hereditary sensory and autonomic neuropathy type IIC" }, { - "baseId": "39127|81688|88117|98921|98922|98923|98924|98926|98928|98933|98934|98935|98936|98938|98939|98941|98943|98944|98946|98949|98950|98952|98955|98960|98961|98962|98965|98966|98967|98968|98969|98970|98972|98973|98976|98977|98981|98982|98983|98984|98986|98988|98992|98993|98995|98997|98998|135364|135365|135366|135367|135368|135370|135371|135372|135373|135375|135376|135377|135378|135379|135381|135382|135383|135385|135386|135387|135388|135389|135390|135391|135392|135394|135396|135397|135398|135399|135400|135401|135402|135404|135405|135406|135407|135408|135409|176989|177121|177252|177383|177959|177961|177962|177965|177966|191156|191157|191638|192163|192815|192816|192817|192962|192963|193017|193018|193076|193091|193265|193266|193267|193309|193435|193772|193823|193877|193878|193881|193882|193883|193893|193894|193895|193896|193897|193897|193899|193902|193903|193904|193905|193906|193907|193908|193909|193910|193911|193912|193913|193914|193915|193917|193918|193919|193920|193921|193922|193923|193925|193926|193928|193969|193971|193973|193974|193975|193977|193978|193980|193983|193984|193985|193986|193987|193989|193990|193994|193998|194000|194001|194002|194003|194004|194005|194008|194009|194010|194012|194013|194014|194015|194015|194019|194020|195245|195795|207532|207533|231311|231370|231429|231430|253066|253067|260855|260856|265349|265461|265465|265501|265502|265508|265512|265516|265517|265518|265519|265524|265531|265554|265593|265628|265629|265639|265718|265827|265831|265905|265922|265930|265931|265932|265938|266070|266073|266086|266092|266179|266185|266228|266229|266248|266334|266335|266357|266370|266405|266422|266425|266440|266481|266507|266522|266524|266534|266545|266545|266546|266550|266554|266563|266629|266630|266642|266656|266658|266659|266687|266692|266703|266723|266730|266736|266746|266756|266775|266779|266819|266876|266961|266991|267017|267018|267058|267063|267069|267090|267102|267121|267126|267133|267262|267271|267292|267309|267337|267338|267339|267439|267460|267461|267478|267481|267484|267491|267513|267523|267541|267568|267574|267631|267638|267641|267671|267700|267701|267707|267786|267867|267875|267877|267881|267882|267885|267899|267912|267924|267932|267981|268004|268114|268184|268195|268205|268206|268207|268212|268338|268339|268485|268486|268520|268521|268624|268704|268731|268747|268802|268812|268818|268819|268820|268835|268837|269027|269036|269247|269248|269316|269468|269573|269579|269645|269915|269970|269980|270225|270253|270274|270275|270360|270360|270506|270550|270555|270825|270961|271365|271460|271624|271858|271947|272140|272170|272415|272613|273236|273701|274532|274542|274576|274586|274590|274687|274701|274703|274704|274872|274876|274884|274886|274888|274895|274900|274934|274949|274965|274966|275304|361453|369376|369377|369380|369386|369388|369394|369396|369411|369412|369424|369428|369734|369742|369758|369763|369767|369769|369773|369791|369802|369809|369814|369825|369839|369841|369846|370091|370093|370095|370097|370102|370108|370111|370122|370128|370132|370138|370139|370149|370155|371589|371592|371593|371594|371618|371629|371631|371646|371656|371659|371661|371665|371667|371679|371681|390580|404777|407323|407324|407325|407326|407327|407328|407332|407334|407335|415126|421663|421664|421665|425783|425784|425786|428802|428803|428804|428805|428806|428807|428808|428810|434623|434623|438403|438405|441183|441184|441186|441188|441189|441190|441191|441193|441197|441199|441200|441201|441203|441204|441205|441206|441210|441211|441222|441223|441223|441224|444223|444224|444226|444228|444230|444235|444240|444241|444245|444247|444250|444251|457234|457236|457238|457240|457245|457248|457249|457255|457258|457272|457273|457277|457282|457286|457294|457296|457298|457300|457302|457305|457307|457310|457312|457316|457323|457324|457328|457336|457337|457347|457348|457351|457359|457362|457363|457366|457371|457385|457390|457391|457393|457397|457399|457401|457405|457406|457411|457422|457424|457426|457428|457817|457837|457838|457839|457843|457847|457849|457851|457856|457857|457860|457862|457865|457866|457867|457869|457870|457872|457876|457878|457880|457882|457883|457884|457886|457887|457888|457894|457896|457900|457901|457902|457904|457907|457908|457912|457914|457919|457920|457921|457922|457924|457925|457927|457928|457931|457932|457935|457936|457937|457938|457946|457949|457956|457958|457960|457962|457963|457967|457972|457977|457980|457981|457982|457983|457985|457988|457990|457996|457998|457999|458001|458002|458004|458006|458007|458008|458013|458014|458017|458020|458022|458023|458025|458028|458030|458032|458033|458034|458039|458040|458041|458043|458046|458047|458051|458054|458062|458064|458067|458068|458071|458072|458077|458079|458088|458241|458243|458248|458252|458256|458266|458268|458272|458273|458277|458279|458283|458286|458292|458296|458298|458301|458302|458305|458310|458311|458316|458318|458323|458327|458334|458337|458341|458343|458346|458347|458350|458352|458355|458363|458368|458370|458376|458379|458383|458386|486449|488410|488423|488425|488427|488429|488430|488437|488440|488453|488464|488466|488469|488474|488476|488477|488479|488488|488496|488505|488507|488509|488512|488519|488520|488538|488539|488562|488589|488617|488790|488793|488811|488922|489011|489080|489083|489246|489276|489281|489377|489481|489688|490087|490389|490392|490417|490506|490642|490644|490646|490714|491028|491054|491060|491066|491108|491112|491126|491242|491388|491529|491648|491734|491814|491816|491970|491980|492104|492115|492230|492337|492338|492462|492609|492868|492901|493049|493050|493061|493063|493156|493220|493225|493253|493351|493496|493504|493568|493569|493573|493622|493662|493665|493825|493873|493874|493982|494015|494082|494092|494093|501926|501929|501931|501936|501946|501964|502236|502239|502244|502255|502262|502276|502278|502299|502313|502355|502361|502603|502604|502619|502623|502626|502632|502637|511746|511748|511749|523032|523042|523045|523051|523054|523057|523059|523063|523086|523088|523095|523101|523103|523109|523118|523126|523132|523133|523134|523138|523139|523142|523148|523151|523156|523158|523171|523173|523174|523176|523179|523182|523202|523205|523207|523208|523211|523214|523215|523311|523321|523323|523336|523339|523341|523345|523348|523353|523355|523358|523361|523371|523375|523380|523387|523388|523390|523392|523399|523401|523405|523412|523413|523415|523417|523420|523423|523432|523436|523441|523442|523448|523451|523461|523466|523467|523474|523481|523531|523537|523542|523544|523547|523549|523552|523553|523555|523556|523563|523570|523572|523576|523584|523586|523594|523596|523601|523603|523606|523608|523610|523616|523618|523622|523624|523636|523639|523644|523647|523652|523654|523655|523656|523658|523662|523663|523665|523667|523669|523671|523675|523676|523678|523683|523685|523689|523690|523692|523693|523694|523695|523698|523700|523702|523706|523714|523716|523718|523726|523730|523735|536744|561957|561960|561963|561965|561974|561980|561981|561993|561996|562000|562002|562011|562014|562018|562020|562021|562026|562029|562032|562034|562036|562038|562040|562047|562050|562054|562057|562059|562380|562396|562397|562400|562401|562411|562423|562425|562432|562433|562436|562437|562443|562448|562459|562475|562476|562479|562487|562496|562497|562500|562501|562504|562511|564676|564679|564681|564683|564690|564699|564701|564704|564708|564710|564718|564719|564722|564724|564726|564731|564732|564736|564741|564751|564759|564765|564767|564771|564774|564776|564778|564780|564785|564788|564790|564794|564796|564800|564802|564809|567397|567399|567400|567401|567406|567409|567414|567418|567419|567420|567421|567423|567427|567428|567430|567434|567443|567448|567466|567471|567484|567487|567493|567494|567495|567496|567497|567502|577038|577042|577048|577050|583214|583818|583832|583842|583852|583863|583873|583888|583928|583989|584023|584100|584299|584656|584658|584660|585030|585144|585680|585726|585814|585970|586401|586783|586809|586971|587049|587287|587469|588315|588317|588432|588452|588464|588491|588509|588536|588609|588612|588626|588632|588860|588861|588863|589251|589263|589547|589607|589776|612808|623146|623147|623147|636629|636630|636631|636632|636633|636634|636635|636636|636637|636638|636639|636640|636641|636642|636643|636644|636645|636646|636647|636648|636649|636650|636651|636652|636653|636654|636655|636656|636657|636658|636659|636660|636661|636662|636663|636664|636665|636666|636667|636668|636669|636670|636671|636672|636673|636674|636675|636676|636677|636678|636679|636680|636681|636682|636683|636684|636685|636686|636687|636688|636689|636690|636691|636692|636693|636694|636695|636696|636697|636698|636699|636700|636701|636702|636703|636704|636705|636706|636707|636708|636709|636710|636711|636712|636713|636714|636715|636716|636717|636718|636719|636720|636721|636722|636723|636724|636725|636726|636727|636728|636729|636730|636731|636732|636733|636734|636735|636736|636737|636738|636739|636740|636741|636742|636743|636744|636745|636746|636747|636748|636749|636750|636751|636752|636753|636754|636755|636756|636757|636758|636759|636760|636761|636762|636763|636764|636765|636766|636767|636768|636769|636770|636771|636772|636773|636774|636775|636776|636777|636778|636779|636780|636781|651751|651754|651758|651760|651770|651773|655836|655845|655849|662710|687201|692371|692372|692373|692375|692376|692378|692379|692380|692381|692385|692385|692386|692387|692389|692391|692392|692393|692394|692395|692396|692397|692402|692403|692404|692406|692409|692411|692412|692413|692414|692418|692419|692420|692423|692424|692426|692430|692431|692432|692433|692434|692435|692436|692438|692440|695384|700445|700447|700450|700451|700455|700457|700458|700461|700463|700464|700467|711370|711371|711372|711374|711376|711381|711382|711385|711390|711391|711392|722917|722921|722922|736504|736505|736506|736507|736508|736510|736512|736513|736514|736521|736523|750972|750975|750976|750978|750979|750980|750985|750987|750989|750992|750995|766578|766583|766584|766586|766587|766599|766623|766628|775210|777720|783022|783024|783026|783029|783031|783035|793265|793267|793268|796133|796137|805011|834168|834169|834170|834171|834172|834173|834174|834175|834176|834177|834178|834179|834180|834181|834182|834183|834184|834185|834186|834187|834188|834189|834190|834191|834192|834193|834194|834195|834196|834197|834198|834199|834200|834201|834202|834203|834204|834205|834206|834207|834208|834209|834210|834211|834212|834213|834214|834215|834216|834217|834218|834219|834220|834221|834222|834223|834224|834225|834226|834227|834228|834229|834230|834231|834232|834233|834234|834235|834236|834237|834238|834239|834240|834241|834242|834243|834244|834245|834246|834247|834248|834249|834250|834251|834252|834253|834254|834255|834256|834257|834258|834259|834260|834261|834262|834263|834264|834265|834266|834267|834268|834269|834270|834271|834272|834273|834274|834275|834276|834277|834278|834279|834280|834281|834282|834283|834284|834285|834286|834287|834288|834289|834290|834291|834292|834293|852118|919142|920253|925028|925029|925030|925031|925032|925033|925034|925035|925036|925037|925038|925039|925040|925041|925042|925043|925044|925045|925046|925047|925048|925049|925050|925051|925052|925053|925054|925055|925056|925057|925058|925059|925060|925061|925062|925063|925064|925065|925066|925067|925068|934109|934110|934111|934112|934113|934114|934115|934116|934117|934118|934119|934120|934121|934122|934123|934124|934125|934126|934127|934128|934129|934130|934131|934132|934133|934134|934135|934136|934137|934138|934139|934140|934141|934142|934143|934144|934145|934146|934147|934148|934149|934150|934151|934152|934153|934154|934155|934156|934157|934158|934159|934160|934161|940891|945859|945860|945861|945862|945863|945864|945865|945866|945867|945868|945869|945870|945871|945872|945873|945874|945875|945876|945877|945878|945879|945880|945881|945882|945883|945884|945885|945886|945887|945888|945889|945890|945891|945892|945893|945894|945895|945896|945897|945898|945899|945900|945901|945902|945903|945904|945905|945906|945907|945908|945909|945910|945911|945912|955305|955306|955307|955308|955309|955310|955311|955312|955313|955314|955315|955316|955317|955318|955319|955320|955321|955322|955323|955324|955325|955326|955327|955328|955329|955330|955331|955332|955333|955334|955335|955336|955337|955338|955339|955340|959878|980333", + "upstreamId": "39127|81688|88117|98921|98922|98923|98924|98926|98928|98933|98934|98935|98936|98938|98939|98941|98943|98944|98946|98949|98950|98952|98955|98960|98961|98962|98965|98966|98967|98968|98969|98970|98972|98973|98976|98977|98981|98982|98983|98984|98986|98988|98992|98993|98995|98997|98998|135364|135365|135366|135367|135368|135370|135371|135372|135373|135375|135376|135377|135378|135379|135381|135382|135383|135385|135386|135387|135388|135389|135390|135391|135392|135394|135396|135397|135398|135399|135400|135401|135402|135404|135405|135406|135407|135408|135409|176989|177121|177252|177383|177959|177961|177962|177965|177966|191156|191157|191638|192163|192815|192816|192817|192962|192963|193017|193018|193076|193091|193265|193266|193267|193309|193435|193772|193823|193877|193878|193881|193882|193883|193893|193894|193895|193896|193897|193897|193899|193902|193903|193904|193905|193906|193907|193908|193909|193910|193911|193912|193913|193914|193915|193917|193918|193919|193920|193921|193922|193923|193925|193926|193928|193969|193971|193973|193974|193975|193977|193978|193980|193983|193984|193985|193986|193987|193989|193990|193994|193998|194000|194001|194002|194003|194004|194005|194008|194009|194010|194012|194013|194014|194015|194015|194019|194020|195245|195795|207532|207533|231311|231370|231429|231430|253066|253067|260855|260856|265349|265461|265465|265501|265502|265508|265512|265516|265517|265518|265519|265524|265531|265554|265593|265628|265629|265639|265718|265827|265831|265905|265922|265930|265931|265932|265938|266070|266073|266086|266092|266179|266185|266228|266229|266248|266334|266335|266357|266370|266405|266422|266425|266440|266481|266507|266522|266524|266534|266545|266545|266546|266550|266554|266563|266629|266630|266642|266656|266658|266659|266687|266692|266703|266723|266730|266736|266746|266756|266775|266779|266819|266876|266961|266991|267017|267018|267058|267063|267069|267090|267102|267121|267126|267133|267262|267271|267292|267309|267337|267338|267339|267439|267460|267461|267478|267481|267484|267491|267513|267523|267541|267568|267574|267631|267638|267641|267671|267700|267701|267707|267786|267867|267875|267877|267881|267882|267885|267899|267912|267924|267932|267981|268004|268114|268184|268195|268205|268206|268207|268212|268338|268339|268485|268486|268520|268521|268624|268704|268731|268747|268802|268812|268818|268819|268820|268835|268837|269027|269036|269247|269248|269316|269468|269573|269579|269645|269915|269970|269980|270225|270253|270274|270275|270360|270360|270506|270550|270555|270825|270961|271365|271460|271624|271858|271947|272140|272170|272415|272613|273236|273701|274532|274542|274576|274586|274590|274687|274701|274703|274704|274872|274876|274884|274886|274888|274895|274900|274934|274949|274965|274966|275304|361453|369376|369377|369380|369386|369388|369394|369396|369411|369412|369424|369428|369734|369742|369758|369763|369767|369769|369773|369791|369802|369809|369814|369825|369839|369841|369846|370091|370093|370095|370097|370102|370108|370111|370122|370128|370132|370138|370139|370149|370155|371589|371592|371593|371594|371618|371629|371631|371646|371656|371659|371661|371665|371667|371679|371681|390580|404777|407323|407324|407325|407326|407327|407328|407332|407334|407335|415126|421663|421664|421665|425783|425784|425786|428802|428803|428804|428805|428806|428807|428808|428810|434623|434623|438403|438405|441183|441184|441186|441188|441189|441190|441191|441193|441197|441199|441200|441201|441203|441204|441205|441206|441210|441211|441222|441223|441223|441224|444223|444224|444226|444228|444230|444235|444240|444241|444245|444247|444250|444251|457234|457236|457238|457240|457245|457248|457249|457255|457258|457272|457273|457277|457282|457286|457294|457296|457298|457300|457302|457305|457307|457310|457312|457316|457323|457324|457328|457336|457337|457347|457348|457351|457359|457362|457363|457366|457371|457385|457390|457391|457393|457397|457399|457401|457405|457406|457411|457422|457424|457426|457428|457817|457837|457838|457839|457843|457847|457849|457851|457856|457857|457860|457862|457865|457866|457867|457869|457870|457872|457876|457878|457880|457882|457883|457884|457886|457887|457888|457894|457896|457900|457901|457902|457904|457907|457908|457912|457914|457919|457920|457921|457922|457924|457925|457927|457928|457931|457932|457935|457936|457937|457938|457946|457949|457956|457958|457960|457962|457963|457967|457972|457977|457980|457981|457982|457983|457985|457988|457990|457996|457998|457999|458001|458002|458004|458006|458007|458008|458013|458014|458017|458020|458022|458023|458025|458028|458030|458032|458033|458034|458039|458040|458041|458043|458046|458047|458051|458054|458062|458064|458067|458068|458071|458072|458077|458079|458088|458241|458243|458248|458252|458256|458266|458268|458272|458273|458277|458279|458283|458286|458292|458296|458298|458301|458302|458305|458310|458311|458316|458318|458323|458327|458334|458337|458341|458343|458346|458347|458350|458352|458355|458363|458368|458370|458376|458379|458383|458386|486449|488410|488423|488425|488427|488429|488430|488437|488440|488453|488464|488466|488469|488474|488476|488477|488479|488488|488496|488505|488507|488509|488512|488519|488520|488538|488539|488562|488589|488617|488790|488793|488811|488922|489011|489080|489083|489246|489276|489281|489377|489481|489688|490087|490389|490392|490417|490506|490642|490644|490646|490714|491028|491054|491060|491066|491108|491112|491126|491242|491388|491529|491648|491734|491814|491816|491970|491980|492104|492115|492230|492337|492338|492462|492609|492868|492901|493049|493050|493061|493063|493156|493220|493225|493253|493351|493496|493504|493568|493569|493573|493622|493662|493665|493825|493873|493874|493982|494015|494082|494092|494093|501926|501929|501931|501936|501946|501964|502236|502239|502244|502255|502262|502276|502278|502299|502313|502355|502361|502603|502604|502619|502623|502626|502632|502637|511746|511748|511749|523032|523042|523045|523051|523054|523057|523059|523063|523086|523088|523095|523101|523103|523109|523118|523126|523132|523133|523134|523138|523139|523142|523148|523151|523156|523158|523171|523173|523174|523176|523179|523182|523202|523205|523207|523208|523211|523214|523215|523311|523321|523323|523336|523339|523341|523345|523348|523353|523355|523358|523361|523371|523375|523380|523387|523388|523390|523392|523399|523401|523405|523412|523413|523415|523417|523420|523423|523432|523436|523441|523442|523448|523451|523461|523466|523467|523474|523481|523531|523537|523542|523544|523547|523549|523552|523553|523555|523556|523563|523570|523572|523576|523584|523586|523594|523596|523601|523603|523606|523608|523610|523616|523618|523622|523624|523636|523639|523644|523647|523652|523654|523655|523656|523658|523662|523663|523665|523667|523669|523671|523675|523676|523678|523683|523685|523689|523690|523692|523693|523694|523695|523698|523700|523702|523706|523714|523716|523718|523726|523730|523735|536744|561957|561960|561963|561965|561974|561980|561981|561993|561996|562000|562002|562011|562014|562018|562020|562021|562026|562029|562032|562034|562036|562038|562040|562047|562050|562054|562057|562059|562380|562396|562397|562400|562401|562411|562423|562425|562432|562433|562436|562437|562443|562448|562459|562475|562476|562479|562487|562496|562497|562500|562501|562504|562511|564676|564679|564681|564683|564690|564699|564701|564704|564708|564710|564718|564719|564722|564724|564726|564731|564732|564736|564741|564751|564759|564765|564767|564771|564774|564776|564778|564780|564785|564788|564790|564794|564796|564800|564802|564809|567397|567399|567400|567401|567406|567409|567414|567418|567419|567420|567421|567423|567427|567428|567430|567434|567443|567448|567466|567471|567484|567487|567493|567494|567495|567496|567497|567502|577038|577042|577048|577050|583214|583818|583832|583842|583852|583863|583873|583888|583928|583989|584023|584100|584299|584656|584658|584660|585030|585144|585680|585726|585814|585970|586401|586783|586809|586971|587049|587287|587469|588315|588317|588432|588452|588464|588491|588509|588536|588609|588612|588626|588632|588860|588861|588863|589251|589263|589547|589607|589776|612808|623146|623147|623147|636629|636630|636631|636632|636633|636634|636635|636636|636637|636638|636639|636640|636641|636642|636643|636644|636645|636646|636647|636648|636649|636650|636651|636652|636653|636654|636655|636656|636657|636658|636659|636660|636661|636662|636663|636664|636665|636666|636667|636668|636669|636670|636671|636672|636673|636674|636675|636676|636677|636678|636679|636680|636681|636682|636683|636684|636685|636686|636687|636688|636689|636690|636691|636692|636693|636694|636695|636696|636697|636698|636699|636700|636701|636702|636703|636704|636705|636706|636707|636708|636709|636710|636711|636712|636713|636714|636715|636716|636717|636718|636719|636720|636721|636722|636723|636724|636725|636726|636727|636728|636729|636730|636731|636732|636733|636734|636735|636736|636737|636738|636739|636740|636741|636742|636743|636744|636745|636746|636747|636748|636749|636750|636751|636752|636753|636754|636755|636756|636757|636758|636759|636760|636761|636762|636763|636764|636765|636766|636767|636768|636769|636770|636771|636772|636773|636774|636775|636776|636777|636778|636779|636780|636781|651751|651754|651758|651760|651770|651773|655836|655845|655849|662710|687201|692371|692372|692373|692375|692376|692378|692379|692380|692381|692385|692385|692386|692387|692389|692391|692392|692393|692394|692395|692396|692397|692402|692403|692404|692406|692409|692411|692412|692413|692414|692418|692419|692420|692423|692424|692426|692430|692431|692432|692433|692434|692435|692436|692438|692440|695384|700445|700447|700450|700451|700455|700457|700458|700461|700463|700464|700467|711370|711371|711372|711374|711376|711381|711382|711385|711390|711391|711392|722917|722921|722922|736504|736505|736506|736507|736508|736510|736512|736513|736514|736521|736523|750972|750975|750976|750978|750979|750980|750985|750987|750989|750992|750995|766578|766583|766584|766586|766587|766599|766623|766628|775210|777720|783022|783024|783026|783029|783031|783035|793265|793267|793268|796133|796137|805011|834168|834169|834170|834171|834172|834173|834174|834175|834176|834177|834178|834179|834180|834181|834182|834183|834184|834185|834186|834187|834188|834189|834190|834191|834192|834193|834194|834195|834196|834197|834198|834199|834200|834201|834202|834203|834204|834205|834206|834207|834208|834209|834210|834211|834212|834213|834214|834215|834216|834217|834218|834219|834220|834221|834222|834223|834224|834225|834226|834227|834228|834229|834230|834231|834232|834233|834234|834235|834236|834237|834238|834239|834240|834241|834242|834243|834244|834245|834246|834247|834248|834249|834250|834251|834252|834253|834254|834255|834256|834257|834258|834259|834260|834261|834262|834263|834264|834265|834266|834267|834268|834269|834270|834271|834272|834273|834274|834275|834276|834277|834278|834279|834280|834281|834282|834283|834284|834285|834286|834287|834288|834289|834290|834291|834292|834293|852118|919142|920253|925028|925029|925030|925031|925032|925033|925034|925035|925036|925037|925038|925039|925040|925041|925042|925043|925044|925045|925046|925047|925048|925049|925050|925051|925052|925053|925054|925055|925056|925057|925058|925059|925060|925061|925062|925063|925064|925065|925066|925067|925068|934109|934110|934111|934112|934113|934114|934115|934116|934117|934118|934119|934120|934121|934122|934123|934124|934125|934126|934127|934128|934129|934130|934131|934132|934133|934134|934135|934136|934137|934138|934139|934140|934141|934142|934143|934144|934145|934146|934147|934148|934149|934150|934151|934152|934153|934154|934155|934156|934157|934158|934159|934160|934161|940891|945859|945860|945861|945862|945863|945864|945865|945866|945867|945868|945869|945870|945871|945872|945873|945874|945875|945876|945877|945878|945879|945880|945881|945882|945883|945884|945885|945886|945887|945888|945889|945890|945891|945892|945893|945894|945895|945896|945897|945898|945899|945900|945901|945902|945903|945904|945905|945906|945907|945908|945909|945910|945911|945912|955305|955306|955307|955308|955309|955310|955311|955312|955313|955314|955315|955316|955317|955318|955319|955320|955321|955322|955323|955324|955325|955326|955327|955328|955329|955330|955331|955332|955333|955334|955335|955336|955337|955338|955339|955340|959878|980333", "text": "Limb-girdle muscular dystrophy, type 2Q" }, { - "baseId": "39132|858656|858657|919422|966063", + "upstreamId": "39132|858656|858657|919422|966063", "text": "Diarrhea 6" }, { - "baseId": "39134|39135|39136|39137|39138|39139|39140|48041|48042|214738|214739|590544|612173|679819|965954|965955", + "upstreamId": "39134|39135|39136|39137|39138|39139|39140|48041|48042|214738|214739|590544|612173|679819|965954|965955", "text": "Osteodysplastic primordial dwarfism, type 1" }, { - "baseId": "39134|214736|214737|214738|214739|214740|214741|624198|800990|858738", + "upstreamId": "39134|214736|214737|214738|214739|214740|214741|624198|800990|858738", "text": "Roifman syndrome" }, { - "baseId": "39134|39137|624198|679818|679819|920651|965912|965913", + "upstreamId": "39134|39137|624198|679818|679819|920651|965912|965913", "text": "Lowry-Wood syndrome" }, { - "baseId": "39141|175845|189894|482272|536836", + "upstreamId": "39141|175845|189894|482272|536836", "text": "Atrial fibrillation, familial, 12" }, { - "baseId": "39142|39143|39144|45807|45809|45810|45811|227249|227250|227251|432290|697847|818222|818223|918799|966064|966065|966066|966067", + "upstreamId": "39142|39143|39144|45807|45809|45810|45811|227249|227250|227251|432290|697847|818222|818223|918799|966064|966065|966066|966067", "text": "Primary hypertrophic osteoarthropathy, autosomal recessive 2" }, { - "baseId": "39147|39148|798687|962739|962834|971023", + "upstreamId": "39147|39148|798687|962739|962834|971023", "text": "Focal segmental glomerulosclerosis 6" }, { - "baseId": "39149|39150|257662|257666|271893|273139|338070|338078|347715|347716|351557|352519|352521|352522|413615|415113|470272|492261|534287|534315|534318|534445|534783|534784|534793|534796|571989|571990|573407|573408|574130|574132|575207|575268|649472|649473|649474|649475|649476|649477|649478|649479|649480|649481|649482|649483|649484|649485|649486|717431|729168|742882|742883|758079|758080|758081|773542|776817|792059|792060|849322|849323|849324|849325|849326|849327|849328|849329|849330|849331|849332|849333|849334|849335|852443|852938|920610|920611|929485|929486|929487|929488|939313|951470|951471|951472|959093|959094", + "upstreamId": "39149|39150|257662|257666|271893|273139|338070|338078|347715|347716|351557|352519|352521|352522|413615|415113|470272|492261|534287|534315|534318|534445|534783|534784|534793|534796|571989|571990|573407|573408|574130|574132|575207|575268|649472|649473|649474|649475|649476|649477|649478|649479|649480|649481|649482|649483|649484|649485|649486|717431|729168|742882|742883|758079|758080|758081|773542|776817|792059|792060|849322|849323|849324|849325|849326|849327|849328|849329|849330|849331|849332|849333|849334|849335|852443|852938|920610|920611|929485|929486|929487|929488|939313|951470|951471|951472|959093|959094", "text": "Granulomatous disease, chronic, autosomal recessive, cytochrome b-positive, type III" }, { - "baseId": "39152|325360|325362|325366|325368|335042|335043|335061|341495|341497|341503|341506|341511|342987|342989|342990|343010|343011|466454|466476|466705|480750|480751|480752|480753|480754|480755|480756|480757|480758|480759|480760|480761|530114|570197|570298|644687|693878|693881|843873|843874|875290|875291|875292|875293|875294|875295|875296|875297|875298|875299|875300|875301|875302|875303|875304|875305|876670|876671|927819|949404|960159", + "upstreamId": "39152|325360|325362|325366|325368|335042|335043|335061|341495|341497|341503|341506|341511|342987|342989|342990|343010|343011|466454|466476|466705|480750|480751|480752|480753|480754|480755|480756|480757|480758|480759|480760|480761|530114|570197|570298|644687|693878|693881|843873|843874|875290|875291|875292|875293|875294|875295|875296|875297|875298|875299|875300|875301|875302|875303|875304|875305|876670|876671|927819|949404|960159", "text": "Parkinson disease 17" }, { - "baseId": "39154|39155|39156|76582|76583|137961|137965|139277|168166|168191|168571|168573|168574|168575|168576|168577|168578|168579|195012|195333|204364|204426|207471|207472|239991|297027|297047|297083|298909|298925|298999|302177|303194|303203|303206|303222|303407|303412|303413|303415|303426|305359|305365|310161|310164|310165|310167|310287|310297|353807|370962|395470|395474|395480|395665|395847|396125|407046|424390|444096|444097|456781|456784|456786|457503|457508|522435|522437|522761|561400|561402|561681|566555|581883|624153|635876|635877|635878|635879|635880|635881|635882|651706|651779|683854|683855|683856|685209|686986|686987|686988|686992|686993|686994|686995|689859|692176|692177|692178|819849|821940|833308|833309|833310|924746|924747|924748|924749|933760|933761|945514|955088|955089|959842|964285|964286|977225", + "upstreamId": "39154|39155|39156|76582|76583|137961|137965|139277|168166|168191|168571|168573|168574|168575|168576|168577|168578|168579|195012|195333|204364|204426|207471|207472|239991|297027|297047|297083|298909|298925|298999|302177|303194|303203|303206|303222|303407|303412|303413|303415|303426|305359|305365|310161|310164|310165|310167|310287|310297|353807|370962|395470|395474|395480|395665|395847|396125|407046|424390|444096|444097|456781|456784|456786|457503|457508|522435|522437|522761|561400|561402|561681|566555|581883|624153|635876|635877|635878|635879|635880|635881|635882|651706|651779|683854|683855|683856|685209|686986|686987|686988|686992|686993|686994|686995|689859|692176|692177|692178|819849|821940|833308|833309|833310|924746|924747|924748|924749|933760|933761|945514|955088|955089|959842|964285|964286|977225", "text": "Weaver syndrome" }, { - "baseId": "39157|39159|94452|208780|360483|431926|550644|552228", + "upstreamId": "39157|39159|94452|208780|360483|431926|550644|552228", "text": "Mental retardation, autosomal dominant 15" }, { - "baseId": "39164|39165|39166|134580|134581|208435|243031|243032|243033|243034|243035|402636|402639|402691|402695|402698|402702|403170|403171|403233|467893|467900|468783|468785|468786|469228|469232|469235|469588|532147|532147|532149|532159|532159|532160|532163|532165|532245|532246|532249|532519|532520|532525|532535|536962|571840|572542|572545|574709|574710|574711|647082|647083|647084|647085|647086|647087|647088|647089|647090|647091|647092|647093|684742|684743|684745|684747|685441|688882|688885|688886|688887|688890|694251|741307|821180|846679|846680|846681|846682|846683|846684|846685|846686|846687|846688|846689|846690|846691|928659|938380|938381|938382|938383|950455|950456|950457|950458|958435|958436|958437", + "upstreamId": "39164|39165|39166|134580|134581|208435|243031|243032|243033|243034|243035|402636|402639|402691|402695|402698|402702|403170|403171|403233|467893|467900|468783|468785|468786|469228|469232|469235|469588|532147|532147|532149|532159|532159|532160|532163|532165|532245|532246|532249|532519|532520|532525|532535|536962|571840|572542|572545|574709|574710|574711|647082|647083|647084|647085|647086|647087|647088|647089|647090|647091|647092|647093|684742|684743|684745|684747|685441|688882|688885|688886|688887|688890|694251|741307|821180|846679|846680|846681|846682|846683|846684|846685|846686|846687|846688|846689|846690|846691|928659|938380|938381|938382|938383|950455|950456|950457|950458|958435|958436|958437", "text": "Atrioventricular septal defect 5" }, { - "baseId": "39166|532147|532159", + "upstreamId": "39166|532147|532159", "text": "Atrial septal defect 9" }, { - "baseId": "39167|39168|39169|39170|39171|39172|48443|165814|165815|208434|532147|532159", + "upstreamId": "39167|39168|39169|39170|39171|39172|48443|165814|165815|208434|532147|532159", "text": "Pancreatic agenesis and congenital heart disease" }, { - "baseId": "39169|50063|53432|165814|165815|195509|215772|215773|215774|263329|334576|354191|354192|354193|354194|354195|354196|805118|805119|980498|980499", + "upstreamId": "39169|50063|53432|165814|165815|195509|215772|215773|215774|263329|334576|354191|354192|354193|354194|354195|354196|805118|805119|980498|980499", "text": "Congenital diaphragmatic hernia" }, { - "baseId": "39186|39187|39188|39189|39190|39191|39192|135300|135302|135303|135305|135306|135309|135310|206827|206828|206832|249981|280777|280784|280785|280786|281284|281288|281302|281305|281311|282556|282564|282574|282575|282576|282836|282840|427846|427848|438966|620005|626110|690638|690639|732501|732502|864566|864567|864568|864569|864570|864571|864572|864573|864574|864575|864576|864577|864578|864579|864580|864581|865191|865192|865193", + "upstreamId": "39186|39187|39188|39189|39190|39191|39192|135300|135302|135303|135305|135306|135309|135310|206827|206828|206832|249981|280777|280784|280785|280786|281284|281288|281302|281305|281311|282556|282564|282574|282575|282576|282836|282840|427846|427848|438966|620005|626110|690638|690639|732501|732502|864566|864567|864568|864569|864570|864571|864572|864573|864574|864575|864576|864577|864578|864579|864580|864581|865191|865192|865193", "text": "Meier-Gorlin syndrome 1" }, { - "baseId": "39188|39455|200397|200398|200399|255744|255745|282855|325397|325398|325421|325423|328352|335066|335068|335070|338247|341513|341519|343011|343036|343038|345786|345796", + "upstreamId": "39188|39455|200397|200398|200399|255744|255745|282855|325397|325398|325421|325423|328352|335066|335068|335070|338247|341513|341519|343011|343036|343038|345786|345796", "text": "Meier-Gorlin syndrome" }, { - "baseId": "39194|204389|205762|205762|424598|424599|441330|459438|459443|459444|459535|459999|460001|524527|524830|524937|524939|525087|525090|563212|563214|563216|563927|563941|565878|565882|565883|569005|569006|638210|638211|638212|638213|638214|638215|692663|700985|836071|836072|836073|836074|836075|861360|861361|925566|925567|934741|934742|934743|934744|934745|946597|946598", + "upstreamId": "39194|204389|205762|205762|424598|424599|441330|459438|459443|459444|459535|459999|460001|524527|524830|524937|524939|525087|525090|563212|563214|563216|563927|563941|565878|565882|565883|569005|569006|638210|638211|638212|638213|638214|638215|692663|700985|836071|836072|836073|836074|836075|861360|861361|925566|925567|934741|934742|934743|934744|934745|946597|946598", "text": "Amyotrophic lateral sclerosis 16, juvenile" }, { - "baseId": "39195|39196|39197|39198", + "upstreamId": "39195|39196|39197|39198", "text": "Leukonychia totalis" }, { - "baseId": "39201|39202|101161|176926|278587|278600|278702|279897|279915|279928|280001|364608|364610|498201|498279|513502|515415|556500|556770|576081|576082|627318|780459|823274|921815|939793", + "upstreamId": "39201|39202|101161|176926|278587|278600|278702|279897|279915|279928|280001|364608|364610|498201|498279|513502|515415|556500|556770|576081|576082|627318|780459|823274|921815|939793", "text": "Congenital disorder of glycosylation type Ir" }, { - "baseId": "39203|39204|39205|39206|106634|135505|310211|310212|310213|310222|310224|310226|310231|310232|310233|310239|310240|310244|310246|310247|310249|310252|310254|310255|310263|310268|315308|315311|315326|315329|315339|315340|315341|315347|315351|315353|315354|315370|315371|315389|321307|321318|321320|321331|321345|321347|321348|321349|321351|321353|321356|321359|321360|321367|321976|321977|321985|321986|321992|321997|322007|322008|322009|322014|322015|322023|322024|322025|322028|322045|322053|322062|865825|865826|865827|865828|865829|865830|865831|865832|865833|865834|865835|865836|865837|865838|865839|865840|865841|865842|865843|865844|865845|865846|865847|865848|865849|865850|865851|865852|865853|865854|865855|865856|865857|865858|865859|865860|865861|865862", + "upstreamId": "39203|39204|39205|39206|106634|135505|310211|310212|310213|310222|310224|310226|310231|310232|310233|310239|310240|310244|310246|310247|310249|310252|310254|310255|310263|310268|315308|315311|315326|315329|315339|315340|315341|315347|315351|315353|315354|315370|315371|315389|321307|321318|321320|321331|321345|321347|321348|321349|321351|321353|321356|321359|321360|321367|321976|321977|321985|321986|321992|321997|322007|322008|322009|322014|322015|322023|322024|322025|322028|322045|322053|322062|865825|865826|865827|865828|865829|865830|865831|865832|865833|865834|865835|865836|865837|865838|865839|865840|865841|865842|865843|865844|865845|865846|865847|865848|865849|865850|865851|865852|865853|865854|865855|865856|865857|865858|865859|865860|865861|865862", "text": "Warburg micro syndrome 3" }, { - "baseId": "39212", + "upstreamId": "39212", "text": "Systemic lupus erythematosus 16" }, { - "baseId": "39217|49801|49802|49803|252067|257118|257121|257122|257125|257126|269520|271078|273929|301328|301329|301331|305700|305708|305860|343596|343598|343599|348872|348886|348887|348888|348892|348894|348895|349840|349841|349842|353742|377467|446129|489138|490564|493096|506734|584444|625969|716437|728175|757014|772687|800135|882012|882013|882014|882015|882016|882017|882018|882019|882020|882021|882022|882023|882024|882025|882026|882027|882028|882029|882030|882031|882032|882033|882034|882035|882036|882037|882886|882887|882888", + "upstreamId": "39217|49801|49802|49803|252067|257118|257121|257122|257125|257126|269520|271078|273929|301328|301329|301331|305700|305708|305860|343596|343598|343599|348872|348886|348887|348888|348892|348894|348895|349840|349841|349842|353742|377467|446129|489138|490564|493096|506734|584444|625969|716437|728175|757014|772687|800135|882012|882013|882014|882015|882016|882017|882018|882019|882020|882021|882022|882023|882024|882025|882026|882027|882028|882029|882030|882031|882032|882033|882034|882035|882036|882037|882886|882887|882888", "text": "Non-syndromic syndactyly" }, { - "baseId": "39217|78958|78961|152875|177134|177265|177836|177837|191437|193722|193723|194518|195432|195757|254019|254020|272280|312754|312755|312766|312770|312778|312779|312783|312784|312788|312789|312795|312796|312801|312802|312808|318744|318758|318775|318784|318788|318798|318815|318817|318818|318820|318822|318823|324842|324846|324848|324853|324854|324870|324871|324872|324877|324894|324897|324912|324913|324914|324926|324932|325705|325706|325708|325719|325734|325737|325745|325753|325754|325763|325768|325769|325770|325774|325780|325782|360814|625969|858508|858509", + "upstreamId": "39217|78958|78961|152875|177134|177265|177836|177837|191437|193722|193723|194518|195432|195757|254019|254020|272280|312754|312755|312766|312770|312778|312779|312783|312784|312788|312789|312795|312796|312801|312802|312808|318744|318758|318775|318784|318788|318798|318815|318817|318818|318820|318822|318823|324842|324846|324848|324853|324854|324870|324871|324872|324877|324894|324897|324912|324913|324914|324926|324932|325705|325706|325708|325719|325734|325737|325745|325753|325754|325763|325768|325769|325770|325774|325780|325782|360814|625969|858508|858509", "text": "Retinal degeneration" }, { - "baseId": "39222|246905|389450|389462|448986|449163|449256|449283|449286|516692|516730|516732|516736|516838|516847|516851|559396|559398|629012|629013|629014|629015|650788|707859|732950|732951|732954|732955|746956|746958|762429|762430|780964|780965|780969|825238|825239|825240|825241|825242|825243|825244|825245|825246|922415|922416|922417|942415|942416|942417|942418|942419|942420|952789|952790|952791|952792|952793|952794|961928|964756", + "upstreamId": "39222|246905|389450|389462|448986|449163|449256|449283|449286|516692|516730|516732|516736|516838|516847|516851|559396|559398|629012|629013|629014|629015|650788|707859|732950|732951|732954|732955|746956|746958|762429|762430|780964|780965|780969|825238|825239|825240|825241|825242|825243|825244|825245|825246|922415|922416|922417|942415|942416|942417|942418|942419|942420|952789|952790|952791|952792|952793|952794|961928|964756", "text": "Wiskott-Aldrich syndrome 2" }, { - "baseId": "39223", + "upstreamId": "39223", "text": "Infections, recurrent, associated with encephalopathy, hepatic dysfunction, and cardiovascular malformations" }, { - "baseId": "39225|167425|167426|167427|167432|332001|790610|790611|791448", + "upstreamId": "39225|167425|167426|167427|167432|332001|790610|790611|791448", "text": "Peeling skin syndrome 1" }, { - "baseId": "39226", + "upstreamId": "39226", "text": "Abnormal glycosylation (CDG IIa)" }, { - "baseId": "39227|134084|134085|134087|134088|208392|208394|328337|328340|328345|328348|338249|338257|338258|344355|344358|345780|345784|345791|345792|345798|429965|620587|877396|877397|877398|877399|877400|877401|877402|877403|880511|880512|880513", + "upstreamId": "39227|134084|134085|134087|134088|208392|208394|328337|328340|328345|328348|338249|338257|338258|344355|344358|345780|345784|345791|345792|345798|429965|620587|877396|877397|877398|877399|877400|877401|877402|877403|880511|880512|880513", "text": "Meier-Gorlin syndrome 5" }, { - "baseId": "39233|39941", + "upstreamId": "39233|39941", "text": "Usher syndrome type 2c, GPR98/PDZD digenic" }, { - "baseId": "39236", + "upstreamId": "39236", "text": "Retinal arterial macroaneurysm with supravascular pulmonic stenosis" }, { - "baseId": "39237|552223|919912", + "upstreamId": "39237|552223|919912", "text": "Mental retardation, autosomal dominant 11" }, { - "baseId": "39238|920098", + "upstreamId": "39238|920098", "text": "Mental retardation, autosomal dominant 10" }, { - "baseId": "39239|39240|39241|39242|39244|133339|133340|133341|133342|133343|133345|133346|133347|133348|133349|133350|133351|133352|133353|133354|133355|142574|142575|142576|142577|142578|142579|142580|142581|142582|142583|150857|151014|151057|151166|151167|151233|151292|151323|151326|151421|151557|151659|151683|151816|151839|151873|152468|152525|152669|180791|180792|180793|180795|180796|180797|180798|180799|180800|180801|180802|180803|180804|180805|180806|180807|180809|181162|184798|184799|184800|184801|184803|184804|184805|184806|184807|184808|184809|184810|184811|184812|184813|184814|184815|184816|184817|184818|184819|184821|184823|184824|184825|184826|184827|184828|184829|184830|184831|184832|184833|184834|184835|184836|184837|184838|184839|184840|184841|184842|184843|184844|184845|184847|184848|184850|184851|184853|184854|184855|184857|184858|184859|184860|190808|235856|235858|235859|235860|235861|235862|235863|235864|235865|235866|235867|235869|235871|235872|235876|235877|235878|235880|235881|235883|235884|235885|235889|235890|235891|235892|235894|235895|235896|235898|235900|235901|235902|235904|235905|235906|235907|235908|235909|235910|235911|235912|235913|235915|235916|235921|242579|242720|242721|242722|242724|242725|242726|242728|242729|242730|242731|242732|245014|344110|358919|358920|358921|358922|358923|358924|374918|374928|374931|375864|375978|375987|375997|378131|401488|401851|401855|401857|401865|401872|401873|401875|401882|401884|401892|401926|401929|401932|401935|401937|402394|402396|402397|402400|402403|402410|402418|402422|402559|402560|402564|402570|402572|402578|402582|402588|402590|402595|402596|402605|402606|402609|409890|409891|409893|409896|409899|409900|409902|409906|409907|409908|409909|409910|409911|409913|413462|445755|466218|466221|466732|466735|466738|466739|466741|466748|466754|466755|466759|466765|467342|467586|467592|467593|467607|467611|467612|467618|467619|467620|467621|467624|467636|467638|467642|467644|467647|467797|467801|467805|467808|467809|467922|467929|467931|467936|467942|467944|467950|467952|467955|467963|467975|467977|467978|467984|467986|467989|467991|478420|478425|478431|478436|478439|478441|478443|478450|478453|478461|478463|478468|478475|478481|478482|478483|478488|478491|478492|478495|478513|478590|478591|478592|478594|478596|478600|478624|478627|479134|479153|479165|479169|479171|479191|479194|479205|479207|479213|479216|482978|482980|482981|482996|484764|484781|484789|484959|484977|484983|484995|485007|485016|485224|506270|506279|506776|530956|530958|530964|530965|530972|531087|531089|531090|531091|531094|531100|531150|531151|531152|531161|531166|531168|531171|531446|531448|531450|531453|531457|531460|539350|539351|539352|539353|539354|539355|539356|568582|568996|568998|569003|569008|569017|570674|570680|571079|571082|571083|571090|571091|571265|571267|571271|571272|571280|571287|571288|571289|571298|571299|571308|574255|574256|574437|574439|574441|575608|575986|575991|575993|618524|618535|618540|618542|618545|645793|645794|645795|645796|645797|645798|645799|645800|645801|645802|645803|645804|645805|645806|645807|645808|645809|645810|645811|645812|645813|645814|645815|645816|645817|645818|645819|645820|645821|645822|645823|652640|652806|653354|653433|653444|755776|755777|760405|771430|771432|778376|785538|789609|791734|791735|791736|791737|791738|791739|791740|791741|813540|813554|813566|813570|813571|813577|813584|815681|821035|821036|821037|821038|821039|845206|845207|845208|845209|845210|845211|845212|845213|845214|845215|845216|845217|845218|845219|845220|845221|845222|845223|845224|845225|845226|845227|845228|845229|845230|845231|845232|845233|845234|851713|851715|852195|852196|913820|913833|916485|928221|928222|928223|928224|928225|928226|928227|928228|928229|928230|928231|928232|928233|928234|928235|937885|937886|937887|937888|937889|937890|937891|937892|937893|940408|941179|949873|949874|949875|949876|949877|949878|949879|949880|949881|949882|949883|949884|949885|949886|949887|949888|958084|958085|958086|960213|960214", + "upstreamId": "39239|39240|39241|39242|39244|133339|133340|133341|133342|133343|133345|133346|133347|133348|133349|133350|133351|133352|133353|133354|133355|142574|142575|142576|142577|142578|142579|142580|142581|142582|142583|150857|151014|151057|151166|151167|151233|151292|151323|151326|151421|151557|151659|151683|151816|151839|151873|152468|152525|152669|180791|180792|180793|180795|180796|180797|180798|180799|180800|180801|180802|180803|180804|180805|180806|180807|180809|181162|184798|184799|184800|184801|184803|184804|184805|184806|184807|184808|184809|184810|184811|184812|184813|184814|184815|184816|184817|184818|184819|184821|184823|184824|184825|184826|184827|184828|184829|184830|184831|184832|184833|184834|184835|184836|184837|184838|184839|184840|184841|184842|184843|184844|184845|184847|184848|184850|184851|184853|184854|184855|184857|184858|184859|184860|190808|235856|235858|235859|235860|235861|235862|235863|235864|235865|235866|235867|235869|235871|235872|235876|235877|235878|235880|235881|235883|235884|235885|235889|235890|235891|235892|235894|235895|235896|235898|235900|235901|235902|235904|235905|235906|235907|235908|235909|235910|235911|235912|235913|235915|235916|235921|242579|242720|242721|242722|242724|242725|242726|242728|242729|242730|242731|242732|245014|344110|358919|358920|358921|358922|358923|358924|374918|374928|374931|375864|375978|375987|375997|378131|401488|401851|401855|401857|401865|401872|401873|401875|401882|401884|401892|401926|401929|401932|401935|401937|402394|402396|402397|402400|402403|402410|402418|402422|402559|402560|402564|402570|402572|402578|402582|402588|402590|402595|402596|402605|402606|402609|409890|409891|409893|409896|409899|409900|409902|409906|409907|409908|409909|409910|409911|409913|413462|445755|466218|466221|466732|466735|466738|466739|466741|466748|466754|466755|466759|466765|467342|467586|467592|467593|467607|467611|467612|467618|467619|467620|467621|467624|467636|467638|467642|467644|467647|467797|467801|467805|467808|467809|467922|467929|467931|467936|467942|467944|467950|467952|467955|467963|467975|467977|467978|467984|467986|467989|467991|478420|478425|478431|478436|478439|478441|478443|478450|478453|478461|478463|478468|478475|478481|478482|478483|478488|478491|478492|478495|478513|478590|478591|478592|478594|478596|478600|478624|478627|479134|479153|479165|479169|479171|479191|479194|479205|479207|479213|479216|482978|482980|482981|482996|484764|484781|484789|484959|484977|484983|484995|485007|485016|485224|506270|506279|506776|530956|530958|530964|530965|530972|531087|531089|531090|531091|531094|531100|531150|531151|531152|531161|531166|531168|531171|531446|531448|531450|531453|531457|531460|539350|539351|539352|539353|539354|539355|539356|568582|568996|568998|569003|569008|569017|570674|570680|571079|571082|571083|571090|571091|571265|571267|571271|571272|571280|571287|571288|571289|571298|571299|571308|574255|574256|574437|574439|574441|575608|575986|575991|575993|618524|618535|618540|618542|618545|645793|645794|645795|645796|645797|645798|645799|645800|645801|645802|645803|645804|645805|645806|645807|645808|645809|645810|645811|645812|645813|645814|645815|645816|645817|645818|645819|645820|645821|645822|645823|652640|652806|653354|653433|653444|755776|755777|760405|771430|771432|778376|785538|789609|791734|791735|791736|791737|791738|791739|791740|791741|813540|813554|813566|813570|813571|813577|813584|815681|821035|821036|821037|821038|821039|845206|845207|845208|845209|845210|845211|845212|845213|845214|845215|845216|845217|845218|845219|845220|845221|845222|845223|845224|845225|845226|845227|845228|845229|845230|845231|845232|845233|845234|851713|851715|852195|852196|913820|913833|916485|928221|928222|928223|928224|928225|928226|928227|928228|928229|928230|928231|928232|928233|928234|928235|937885|937886|937887|937888|937889|937890|937891|937892|937893|940408|941179|949873|949874|949875|949876|949877|949878|949879|949880|949881|949882|949883|949884|949885|949886|949887|949888|958084|958085|958086|960213|960214", "text": "Breast-ovarian cancer, familial 4" }, { - "baseId": "39248|39249|39250|206790|206793|227656|227657|227658|237025|257105|313744|427777|427778|427787|427794|442805|508769|513899|550581|552043|552044|612472|622861|677404|789958|789959|789960|800921|805073|906201|906379|918629|961500|964153|964154|964646|964993|970685|973016|974477|976642|977173|977174|980904", + "upstreamId": "39248|39249|39250|206790|206793|227656|227657|227658|237025|257105|313744|427777|427778|427787|427794|442805|508769|513899|550581|552043|552044|612472|622861|677404|789958|789959|789960|800921|805073|906201|906379|918629|961500|964153|964154|964646|964993|970685|973016|974477|976642|977173|977174|980904", "text": "Mental retardation, autosomal dominant 14" }, { - "baseId": "39250|40165|40166|40167|40168|40169|40170|40171|40172|40173|40174|207343|207352|207363|207365|207373|207375|207380|207381|207382|207384|207385|207388|225865|225886|262265|264206|264289|275248|360874|361185|361264|415033|424483|424649|428558|428560|428563|428569|428570|428571|428577|431909|431910|431911|431912|431913|432263|443919|443928|444460|481337|481338|481755|495270|511635|511636|514851|552097|552098|552099|552100|552101|552102|552103|552396|575513|576349|579236|583100|611392|611465|612443|613853|614090|620936|622884|623652|623653|624152|625798|653872|653873|654127|677422|677423|678939|682803|682804|788794|788795|790602|790603|790604|790605|798571|816018|816458|906344|919006|919007|919008|919009|919010|919011|919012|919013|919014|920224|920225|961223|962916|963195|964267|964268|964269|964717|964825|969749|969779|970011|970826|970827|970828|972718|976652|980584|980921", + "upstreamId": "39250|40165|40166|40167|40168|40169|40170|40171|40172|40173|40174|207343|207352|207363|207365|207373|207375|207380|207381|207382|207384|207385|207388|225865|225886|262265|264206|264289|275248|360874|361185|361264|415033|424483|424649|428558|428560|428563|428569|428570|428571|428577|431909|431910|431911|431912|431913|432263|443919|443928|444460|481337|481338|481755|495270|511635|511636|514851|552097|552098|552099|552100|552101|552102|552103|552396|575513|576349|579236|583100|611392|611465|612443|613853|614090|620936|622884|623652|623653|624152|625798|653872|653873|654127|677422|677423|678939|682803|682804|788794|788795|790602|790603|790604|790605|798571|816018|816458|906344|919006|919007|919008|919009|919010|919011|919012|919013|919014|920224|920225|961223|962916|963195|964267|964268|964269|964717|964825|969749|969779|970011|970826|970827|970828|972718|976652|980584|980921", "text": "Coffin-Siris syndrome 1" }, { - "baseId": "39251|39252|39253|168038|168039|206853|227220", + "upstreamId": "39251|39252|39253|168038|168039|206853|227220", "text": "Meier-Gorlin syndrome 2" }, { - "baseId": "39255|39256|39257|39258|39259|39260|39261|66213|66558|70526|70527|70528|131463|137400|137402|137403|137404|137405|137406|150659|150714|152122|152305|152492|184563|221420|221421|221422|222989|226316|239258|239259|239260|239261|239262|239263|239264|239265|239266|239267|239268|239269|239270|239271|239272|239273|239274|239275|239276|239277|239278|239279|239280|239281|239282|239283|239284|239285|239286|239287|251242|274513|291178|291179|291182|291187|292129|292131|292134|292135|292136|292137|292138|292145|292146|295531|295532|295536|295537|295561|295571|295685|295687|295688|295699|295700|295707|367689|367708|368721|393665|393674|393675|393676|393680|393688|393690|393694|393696|393697|393698|393699|393700|393701|393703|393704|393707|393708|393712|393714|393715|393718|393719|393720|393721|393722|393723|393724|393725|393726|393727|393728|393729|393734|393737|393738|393739|393745|393755|393756|393887|393893|393895|393901|393902|393905|393907|393908|393910|393918|393920|393923|393926|393928|393931|393934|393946|393950|394099|394104|394107|394108|394111|394114|394120|394126|394129|394137|394138|394143|394144|394159|394163|394165|394171|394175|406342|406345|428209|433376|438244|451811|451814|452693|452699|452700|452710|452712|452715|452717|452719|452721|452724|452730|452731|452732|452733|453011|453013|453015|453017|453021|453028|453029|453035|453039|453044|453046|453048|453049|453050|453052|453054|453057|453058|453060|453063|453064|453065|453067|453068|453074|453076|453077|453081|453083|453090|453091|453095|453096|453098|453104|453341|453360|453362|453366|453369|453377|453382|453385|453388|453393|453399|453422|453423|453429|453432|473457|473462|473463|473464|473467|473472|473483|473484|473490|473494|473499|473504|473509|473511|473521|473522|473524|473537|473538|473539|473542|473547|473548|473555|473561|473565|473566|473570|473571|473582|473583|473588|473687|473704|473711|473717|473718|473723|473738|473745|473752|482484|482492|482508|482510|482512|482515|482524|482527|482529|482535|482538|482541|482554|482555|482562|482567|482569|482583|482595|482602|482604|482605|483580|483583|483590|483602|483604|483609|483617|483628|483629|483630|483636|483640|483641|483642|483649|483651|483654|483655|483663|483666|483670|483680|483686|483688|483695|483698|483703|483705|483706|483707|483708|483709|483713|483720|483723|483728|483750|483778|500610|518708|519523|519525|519543|519544|519557|519562|519564|519569|519571|519577|519581|519588|519599|519601|519604|519605|519610|519778|519784|519790|519794|519803|519805|519807|519809|519812|519813|519815|519816|519817|519818|519819|519820|519823|519824|519825|519826|519829|519835|519836|519837|519839|519840|519846|519851|519854|519868|559098|559100|559102|559104|559106|559108|559110|559112|559114|559116|559118|559120|559638|559640|559642|559644|559646|559648|559650|559652|559654|559656|559658|561754|561760|561762|561767|561769|561774|561782|561785|561788|561789|563207|563209|563210|563211|563224|563242|563250|563261|563266|575708|575709|575710|575711|611994|612658|616935|616936|616939|616954|616961|616966|616968|616971|616981|616985|616992|616995|616996|616998|617002|617004|617006|617007|617009|617010|617011|617013|617014|617017|617022|619219|620766|631698|631699|631700|631701|631702|631703|631704|631705|631706|631707|631708|631709|631710|631711|631712|631713|631714|631715|631716|631717|631718|631719|631720|631721|631722|631723|631724|631725|631726|631727|631728|631729|631730|631731|631732|631733|631734|631735|631736|631737|631738|631739|631740|651047|651086|651089|651112|651113|651122|651129|651218|651235|683592|686456|691473|691474|695214|698225|748434|764082|774869|774871|774903|781773|781775|790408|807654|807660|807674|807698|807699|819411|819412|828454|828455|828456|828457|828458|828459|828460|828461|828462|828463|828464|828465|828466|828467|828468|828469|828470|828471|828472|828473|828474|828475|828476|828477|828478|828479|828480|828481|828482|828483|828484|828485|828486|828487|828488|828489|828490|828491|828492|828493|828494|828495|828496|828497|828498|828499|828500|828501|828502|828503|828504|828505|828506|828507|850958|851092|851471|851576|889417|889418|889419|889420|889421|889422|889423|889424|889425|889426|889427|889428|889429|889430|889431|889432|889433|891691|891692|909704|909727|909733|909736|909739|909753|909761|909789|923303|923304|923305|923306|923307|923308|923309|923310|923311|923312|923313|923314|923315|923316|923317|923318|923319|923320|923321|923322|932054|932055|932056|932057|932058|932059|932060|932061|932062|932063|932064|932065|932066|939951|939952|940761|943668|943669|943670|943671|943672|943673|943674|943675|943676|943677|943678|943679|943680|943681|943682|943683|943684|943685|953569|953570|953571|953572|953573|953574|953575|953576|959705|959706|959707|970776|970777", + "upstreamId": "39255|39256|39257|39258|39259|39260|39261|66213|66558|70526|70527|70528|131463|137400|137402|137403|137404|137405|137406|150659|150714|152122|152305|152492|184563|221420|221421|221422|222989|226316|239258|239259|239260|239261|239262|239263|239264|239265|239266|239267|239268|239269|239270|239271|239272|239273|239274|239275|239276|239277|239278|239279|239280|239281|239282|239283|239284|239285|239286|239287|251242|274513|291178|291179|291182|291187|292129|292131|292134|292135|292136|292137|292138|292145|292146|295531|295532|295536|295537|295561|295571|295685|295687|295688|295699|295700|295707|367689|367708|368721|393665|393674|393675|393676|393680|393688|393690|393694|393696|393697|393698|393699|393700|393701|393703|393704|393707|393708|393712|393714|393715|393718|393719|393720|393721|393722|393723|393724|393725|393726|393727|393728|393729|393734|393737|393738|393739|393745|393755|393756|393887|393893|393895|393901|393902|393905|393907|393908|393910|393918|393920|393923|393926|393928|393931|393934|393946|393950|394099|394104|394107|394108|394111|394114|394120|394126|394129|394137|394138|394143|394144|394159|394163|394165|394171|394175|406342|406345|428209|433376|438244|451811|451814|452693|452699|452700|452710|452712|452715|452717|452719|452721|452724|452730|452731|452732|452733|453011|453013|453015|453017|453021|453028|453029|453035|453039|453044|453046|453048|453049|453050|453052|453054|453057|453058|453060|453063|453064|453065|453067|453068|453074|453076|453077|453081|453083|453090|453091|453095|453096|453098|453104|453341|453360|453362|453366|453369|453377|453382|453385|453388|453393|453399|453422|453423|453429|453432|473457|473462|473463|473464|473467|473472|473483|473484|473490|473494|473499|473504|473509|473511|473521|473522|473524|473537|473538|473539|473542|473547|473548|473555|473561|473565|473566|473570|473571|473582|473583|473588|473687|473704|473711|473717|473718|473723|473738|473745|473752|482484|482492|482508|482510|482512|482515|482524|482527|482529|482535|482538|482541|482554|482555|482562|482567|482569|482583|482595|482602|482604|482605|483580|483583|483590|483602|483604|483609|483617|483628|483629|483630|483636|483640|483641|483642|483649|483651|483654|483655|483663|483666|483670|483680|483686|483688|483695|483698|483703|483705|483706|483707|483708|483709|483713|483720|483723|483728|483750|483778|500610|518708|519523|519525|519543|519544|519557|519562|519564|519569|519571|519577|519581|519588|519599|519601|519604|519605|519610|519778|519784|519790|519794|519803|519805|519807|519809|519812|519813|519815|519816|519817|519818|519819|519820|519823|519824|519825|519826|519829|519835|519836|519837|519839|519840|519846|519851|519854|519868|559098|559100|559102|559104|559106|559108|559110|559112|559114|559116|559118|559120|559638|559640|559642|559644|559646|559648|559650|559652|559654|559656|559658|561754|561760|561762|561767|561769|561774|561782|561785|561788|561789|563207|563209|563210|563211|563224|563242|563250|563261|563266|575708|575709|575710|575711|611994|612658|616935|616936|616939|616954|616961|616966|616968|616971|616981|616985|616992|616995|616996|616998|617002|617004|617006|617007|617009|617010|617011|617013|617014|617017|617022|619219|620766|631698|631699|631700|631701|631702|631703|631704|631705|631706|631707|631708|631709|631710|631711|631712|631713|631714|631715|631716|631717|631718|631719|631720|631721|631722|631723|631724|631725|631726|631727|631728|631729|631730|631731|631732|631733|631734|631735|631736|631737|631738|631739|631740|651047|651086|651089|651112|651113|651122|651129|651218|651235|683592|686456|691473|691474|695214|698225|748434|764082|774869|774871|774903|781773|781775|790408|807654|807660|807674|807698|807699|819411|819412|828454|828455|828456|828457|828458|828459|828460|828461|828462|828463|828464|828465|828466|828467|828468|828469|828470|828471|828472|828473|828474|828475|828476|828477|828478|828479|828480|828481|828482|828483|828484|828485|828486|828487|828488|828489|828490|828491|828492|828493|828494|828495|828496|828497|828498|828499|828500|828501|828502|828503|828504|828505|828506|828507|850958|851092|851471|851576|889417|889418|889419|889420|889421|889422|889423|889424|889425|889426|889427|889428|889429|889430|889431|889432|889433|891691|891692|909704|909727|909733|909736|909739|909753|909761|909789|923303|923304|923305|923306|923307|923308|923309|923310|923311|923312|923313|923314|923315|923316|923317|923318|923319|923320|923321|923322|932054|932055|932056|932057|932058|932059|932060|932061|932062|932063|932064|932065|932066|939951|939952|940761|943668|943669|943670|943671|943672|943673|943674|943675|943676|943677|943678|943679|943680|943681|943682|943683|943684|943685|953569|953570|953571|953572|953573|953574|953575|953576|959705|959706|959707|970776|970777", "text": "Tumor susceptibility linked to germline BAP1 mutations" }, { - "baseId": "39262|39263|39264|39265|39266|39267|39268|39269|39270|39271|142915|142916|142917|142918|142919|142920|178706|210262|210266|258935|258940|258946|258947|263525|323138|323151|323155|323166|323169|323180|323196|323200|332772|332774|332776|332781|332783|332785|332802|332835|332843|332846|332854|332858|332862|339727|339728|339738|339754|339760|339761|339769|339773|339777|341127|341137|341150|341159|341161|341164|341172|341196|360980|400464|401092|401108|415444|437987|464430|464449|465054|465074|465080|465241|465249|465256|465312|465324|465348|529004|529009|529404|529589|529590|529593|567222|567226|567229|567230|569054|569061|569566|569569|569570|569582|573480|573481|573487|573490|614165|682307|682308|682309|682310|682311|682312|688474|688477|791479|799816|822307|874018|874019|874021|874024|874025|874026|874027|874028|874029|874031|874032|874033|874034|874038|919592|964424|971027|981927", + "upstreamId": "39262|39263|39264|39265|39266|39267|39268|39269|39270|39271|142915|142916|142917|142918|142919|142920|178706|210262|210266|258935|258940|258946|258947|263525|323138|323151|323155|323166|323169|323180|323196|323200|332772|332774|332776|332781|332783|332785|332802|332835|332843|332846|332854|332858|332862|339727|339728|339738|339754|339760|339761|339769|339773|339777|341127|341137|341150|341159|341161|341164|341172|341196|360980|400464|401092|401108|415444|437987|464430|464449|465054|465074|465080|465241|465249|465256|465312|465324|465348|529004|529009|529404|529589|529590|529593|567222|567226|567229|567230|569054|569061|569566|569569|569570|569582|573480|573481|573487|573490|614165|682307|682308|682309|682310|682311|682312|688474|688477|791479|799816|822307|874018|874019|874021|874024|874025|874026|874027|874028|874029|874031|874032|874033|874034|874038|919592|964424|971027|981927", "text": "Loeys-Dietz syndrome 3" }, { - "baseId": "39272|227659|402429|550629|653822", + "upstreamId": "39272|227659|402429|550629|653822", "text": "Coffin-Siris syndrome 5" }, { - "baseId": "39272|45820|70490|70491|70492|70493|139022|139024|208396|233842|242736|242737|242738|242739|242740|242741|242742|242743|242744|242745|242746|359974|397335|401901|401903|401904|401906|401908|401914|401956|401961|401970|401971|401977|401981|401982|401985|401990|402423|402428|402429|402429|402433|402437|402438|402611|407985|460522|466771|466773|466776|466777|466780|466784|466786|466787|466796|466800|466803|467649|467650|467655|467658|467826|467830|467834|467840|467850|468011|468015|468017|468018|468021|468024|468027|468030|468036|470130|475248|478501|478514|478520|478533|478631|512279|525742|530977|530978|530979|530983|530984|530986|530987|530990|530992|531106|531109|531111|531114|531117|531120|531190|531199|531202|531206|531207|531209|531470|531477|531478|531489|534181|534181|569025|569026|569028|569030|569034|571095|571098|574062|574080|574451|575807|626284|639262|645834|645835|645836|645837|645838|645839|645840|645841|645842|645843|645844|645845|645846|645847|645848|645849|645850|645851|652942|653109|653269|688762|688764|694081|694082|694083|694084|695742|704123|715429|727153|755821|760425|771474|799619|813598|813602|813604|813606|813608|813609|813610|813612|813613|813616|813624|813629|813633|813635|821041|845270|845271|845272|845273|845274|845275|845276|845277|845278|845279|845280|845281|845282|845283|845284|845285|845286|845287|845288|845289|845290|845291|845292|845293|845294|852740|919252|919726|919954|920425|920426|928242|928243|928244|928245|928246|928247|928248|937905|937906|937907|937908|937909|937910|937911|937912|937913|937914|937915|940410|940411|949897|949898|949899|949900|949901|949902|949903|949904|949905|958098|958099|958100|958101|960216|960217", + "upstreamId": "39272|45820|70490|70491|70492|70493|139022|139024|208396|233842|242736|242737|242738|242739|242740|242741|242742|242743|242744|242745|242746|359974|397335|401901|401903|401904|401906|401908|401914|401956|401961|401970|401971|401977|401981|401982|401985|401990|402423|402428|402429|402429|402433|402437|402438|402611|407985|460522|466771|466773|466776|466777|466780|466784|466786|466787|466796|466800|466803|467649|467650|467655|467658|467826|467830|467834|467840|467850|468011|468015|468017|468018|468021|468024|468027|468030|468036|470130|475248|478501|478514|478520|478533|478631|512279|525742|530977|530978|530979|530983|530984|530986|530987|530990|530992|531106|531109|531111|531114|531117|531120|531190|531199|531202|531206|531207|531209|531470|531477|531478|531489|534181|534181|569025|569026|569028|569030|569034|571095|571098|574062|574080|574451|575807|626284|639262|645834|645835|645836|645837|645838|645839|645840|645841|645842|645843|645844|645845|645846|645847|645848|645849|645850|645851|652942|653109|653269|688762|688764|694081|694082|694083|694084|695742|704123|715429|727153|755821|760425|771474|799619|813598|813602|813604|813606|813608|813609|813610|813612|813613|813616|813624|813629|813633|813635|821041|845270|845271|845272|845273|845274|845275|845276|845277|845278|845279|845280|845281|845282|845283|845284|845285|845286|845287|845288|845289|845290|845291|845292|845293|845294|852740|919252|919726|919954|920425|920426|928242|928243|928244|928245|928246|928247|928248|937905|937906|937907|937908|937909|937910|937911|937912|937913|937914|937915|940410|940411|949897|949898|949899|949900|949901|949902|949903|949904|949905|958098|958099|958100|958101|960216|960217", "text": "Meningioma, familial" }, { - "baseId": "39279|106392|106393|106394|106395|106396|106397|250580|250581|250582|284888|284890|284891|284895|284901|284908|284917|284918|284919|284927|284929|284931|284932|284933|284937|284944|284950|285544|285564|285572|285574|285576|285577|285578|285579|285590|285593|285595|285598|285604|285612|287888|287890|287895|287908|287920|287924|287926|287927|287930|287931|287932|287934|288135|288136|288137|288146|288149|288151|288169|288184|288186|288198|288199|288204|288206|883893|883894|883895|883896|883897|883898|883899|883900|883901|883902|883903|883904|883905|883906|883907|883908|883909|883910|883911|883912|883913|883914|883915|883916|883917|883918|883919|883920|883921|883922|883923|883924|883925|883926|883927|883928|883929|883930|883931|883932|883933|883934|883935|883936|883937|883938|883939|883940|883941|887282|887283|963123|964195", + "upstreamId": "39279|106392|106393|106394|106395|106396|106397|250580|250581|250582|284888|284890|284891|284895|284901|284908|284917|284918|284919|284927|284929|284931|284932|284933|284937|284944|284950|285544|285564|285572|285574|285576|285577|285578|285579|285590|285593|285595|285598|285604|285612|287888|287890|287895|287908|287920|287924|287926|287927|287930|287931|287932|287934|288135|288136|288137|288146|288149|288151|288169|288184|288186|288198|288199|288204|288206|883893|883894|883895|883896|883897|883898|883899|883900|883901|883902|883903|883904|883905|883906|883907|883908|883909|883910|883911|883912|883913|883914|883915|883916|883917|883918|883919|883920|883921|883922|883923|883924|883925|883926|883927|883928|883929|883930|883931|883932|883933|883934|883935|883936|883937|883938|883939|883940|883941|887282|887283|963123|964195", "text": "Pseudohypoaldosteronism type 2E" }, { - "baseId": "39279|39473|39474|39475|39476|39477|39478|39479|39480|106392|106393|106394|106395|106396|106397|106398|106399|106400|106401|106402|106403|106404|106405|106406|106407|106408|106409|106410|106411|106413|106414|106415|106416|106417|106418|106421|106422|106425|106427|192995|260864|318655|318659|318675|318687|326790|326934|328531|328556|332884|332972|333031|333048|333051|333068|333083|333105|334543|334549|334732|334798|334799|334803|334807|334811|334818|334825", + "upstreamId": "39279|39473|39474|39475|39476|39477|39478|39479|39480|106392|106393|106394|106395|106396|106397|106398|106399|106400|106401|106402|106403|106404|106405|106406|106407|106408|106409|106410|106411|106413|106414|106415|106416|106417|106418|106421|106422|106425|106427|192995|260864|318655|318659|318675|318687|326790|326934|328531|328556|332884|332972|333031|333048|333051|333068|333083|333105|334543|334549|334732|334798|334799|334803|334807|334811|334818|334825", "text": "Pseudohypoaldosteronism type 2A" }, { - "baseId": "39280|39281|39282|343796|343800|343804|349089|350013|350016|380145|539093|621872|648173|882150|882151|882152|882153|882154|882909|882910|882911", + "upstreamId": "39280|39281|39282|343796|343800|343804|349089|350013|350016|380145|539093|621872|648173|882150|882151|882152|882153|882154|882909|882910|882911", "text": "Hereditary spastic paraplegia 12" }, { - "baseId": "39287|39288|188958|213535|226702|285325|285340|285341|285358|285360|285368|285369|285973|285974|285978|285992|285996|285997|286004|286005|286006|288312|288315|288317|288318|288339|288340|288342|288343|288739|288740|288741|288759|288767|884168|884169|884170|884171|884172|884173|884174|884175|884176|884177|884178|884179|884180|884181|884182|884183|884184|884185|884186|884187|884188|905049|966579|966580|966581", + "upstreamId": "39287|39288|188958|213535|226702|285325|285340|285341|285358|285360|285368|285369|285973|285974|285978|285992|285996|285997|286004|286005|286006|288312|288315|288317|288318|288339|288340|288342|288343|288739|288740|288741|288759|288767|884168|884169|884170|884171|884172|884173|884174|884175|884176|884177|884178|884179|884180|884181|884182|884183|884184|884185|884186|884187|884188|905049|966579|966580|966581", "text": "Leber congenital amaurosis 16" }, { - "baseId": "39289|39290|39291|39292|538452|791580|791581|980372", + "upstreamId": "39289|39290|39291|39292|538452|791580|791581|980372", "text": "Spondyloepimetaphyseal dysplasia with joint laxity, type 2" }, { - "baseId": "39298|39299|39300|39301|39302|39303|131893|208522|208522|208527|208529|243129|243191|243228|243251|390651|402865|402923|403125|403126|403448|410423|410427|430124|446024|468417|469136|469558|469573|469702|479479|479496|479504|533038|572136|611429|613500|647559|647574|647611|677460|798740|970550", + "upstreamId": "39298|39299|39300|39301|39302|39303|131893|208522|208522|208527|208529|243129|243191|243228|243251|390651|402865|402923|403125|403126|403448|410423|410427|430124|446024|468417|469136|469558|469573|469702|479479|479496|479504|533038|572136|611429|613500|647559|647574|647611|677460|798740|970550", "text": "Mental retardation, autosomal dominant 16" }, { - "baseId": "39305|492928", + "upstreamId": "39305|492928", "text": "Hypogonadotropic hypogonadism 13 with or without anosmia" }, { - "baseId": "39307|39308|39309|195974|205769|320695|490260|492179|552151|896571", + "upstreamId": "39307|39308|39309|195974|205769|320695|490260|492179|552151|896571", "text": "Peroxisome biogenesis disorder 8B" }, { - "baseId": "39311|39312|491077|790769|815955|815957|980928", + "upstreamId": "39311|39312|491077|790769|815955|815957|980928", "text": "Nail disorder, nonsyndromic congenital, 1" }, { - "baseId": "39311|39312", + "upstreamId": "39311|39312", "text": "Nail disease" }, { - "baseId": "39313|39314|39316|99992|135702|135704|135705|135706|135707|135709|135711|135714|135716|142779|167457|167458|178055|178058|178059|191022|191370|192649|231501|250347|272066|273736|282546|282559|282565|282569|282570|282573|282582|282586|282594|282598|282599|282600|282604|283199|283202|283206|283209|283226|283227|283243|283257|283258|283259|283267|283293|283307|283310|283311|283322|283323|283334|283354|283355|283356|283357|284810|284812|284826|284836|284837|284838|284841|284842|284849|284866|284868|284873|284879|284887|285259|285268|285269|285288|285292|285295|285305|285321|285322|285329|285332|285355|285356|285357|285359|285361|285362|285364|285365|285367|285388|285390|285402|285406", + "upstreamId": "39313|39314|39316|99992|135702|135704|135705|135706|135707|135709|135711|135714|135716|142779|167457|167458|178055|178058|178059|191022|191370|192649|231501|250347|272066|273736|282546|282559|282565|282569|282570|282573|282582|282586|282594|282598|282599|282600|282604|283199|283202|283206|283209|283226|283227|283243|283257|283258|283259|283267|283293|283307|283310|283311|283322|283323|283334|283354|283355|283356|283357|284810|284812|284826|284836|284837|284838|284841|284842|284849|284866|284868|284873|284879|284887|285259|285268|285269|285288|285292|285295|285305|285321|285322|285329|285332|285355|285356|285357|285359|285361|285362|285364|285365|285367|285388|285390|285402|285406", "text": "Small fiber neuropathy" }, { - "baseId": "39317|359095|359096|359097", + "upstreamId": "39317|359095|359096|359097", "text": "Mental retardation, autosomal recessive 34" }, { - "baseId": "39329|172080|244154|576110|581710", + "upstreamId": "39329|172080|244154|576110|581710", "text": "Hypomyelinating leukodystrophy 3" }, { - "baseId": "39330|192389|192390|195682|195683|255331|255332|255333|268403|270751|271809|323079|323080|323081|323086|323088|323089|323090|323100|323102|323105|332704|332707|332711|332716|332718|332720|332723|332728|332735|332745|332750|339695|339696|339698|339699|339700|339701|339702|339703|339709|339711|341070|341072|341074|341076|341078|341079|341080|341081|341083|341087|341088|341089|341090|341094|341095|341096|341097|482298|482299|482300|482301|551579|620525|726210|873980|873981|873982|873983|873984|873985|873986|873987|873988|873989|873990|873991|873992|873993|873994|873995|873996|873997|873998|873999|874000|874001|874002|874003|874004|874005|874006|874007|874008|874009|874010|874011|874012|874013|874014|874015|874016|874017|876553|876554|876555|876556|876557|876558|876559", + "upstreamId": "39330|192389|192390|195682|195683|255331|255332|255333|268403|270751|271809|323079|323080|323081|323086|323088|323089|323090|323100|323102|323105|332704|332707|332711|332716|332718|332720|332723|332728|332735|332745|332750|339695|339696|339698|339699|339700|339701|339702|339703|339709|339711|341070|341072|341074|341076|341078|341079|341080|341081|341083|341087|341088|341089|341090|341094|341095|341096|341097|482298|482299|482300|482301|551579|620525|726210|873980|873981|873982|873983|873984|873985|873986|873987|873988|873989|873990|873991|873992|873993|873994|873995|873996|873997|873998|873999|874000|874001|874002|874003|874004|874005|874006|874007|874008|874009|874010|874011|874012|874013|874014|874015|874016|874017|876553|876554|876555|876556|876557|876558|876559", "text": "Congenital stationary night blindness, type 1D" }, { - "baseId": "39331|451486|451491|451492|451497|451499|451752|451836|451945|451946|518652|518677|518750|518758|518759|518848|518851|518857|558692|559203|560997|560999|561001|561002|562100|562118|624249|630614|630615|630616|630617|630618|630619|630620|630621|630622|630623|630624|630625|630626|630627|630628|651011|651017|651097|708410|708411|708412|708413|720005|720008|733625|733626|733627|743971|743980|747813|759288|759293|763456|763458|763461|819282|819283|827106|827107|827108|827109|827110|827111|827112|827113|827114|827115|827116|827117|827118|827119|827120|827121|827122|827123|827124|827125|827126|851442|851444|922946|922947|922948|922949|922950|931616|931617|931618|943149|943150|943151|943152|943153|943154|960492", + "upstreamId": "39331|451486|451491|451492|451497|451499|451752|451836|451945|451946|518652|518677|518750|518758|518759|518848|518851|518857|558692|559203|560997|560999|561001|561002|562100|562118|624249|630614|630615|630616|630617|630618|630619|630620|630621|630622|630623|630624|630625|630626|630627|630628|651011|651017|651097|708410|708411|708412|708413|720005|720008|733625|733626|733627|743971|743980|747813|759288|759293|763456|763458|763461|819282|819283|827106|827107|827108|827109|827110|827111|827112|827113|827114|827115|827116|827117|827118|827119|827120|827121|827122|827123|827124|827125|827126|851442|851444|922946|922947|922948|922949|922950|931616|931617|931618|943149|943150|943151|943152|943153|943154|960492", "text": "Inflammatory skin and bowel disease, neonatal 1" }, { - "baseId": "39332|39333|39335|39336|672352|672353|672354|672355", + "upstreamId": "39332|39333|39335|39336|672352|672353|672354|672355", "text": "Congenital cataracts, hearing loss, and neurodegeneration" }, { - "baseId": "39340|39341|39342|39343|39344|39345|39346", + "upstreamId": "39340|39341|39342|39343|39344|39345|39346", "text": "Blood group, Junior system" }, { - "baseId": "39342|39343|39346", + "upstreamId": "39342|39343|39346", "text": "Uric acid concentration, serum, quantitative trait locus 1" }, { - "baseId": "39346", + "upstreamId": "39346", "text": "rosuvastatin response - Efficacy" }, { - "baseId": "39346", + "upstreamId": "39346", "text": "allopurinol response - Dosage, Efficacy" }, { - "baseId": "39346|135788|678115", + "upstreamId": "39346|135788|678115", "text": "Gemcitabine response" }, { - "baseId": "39347|314624|314628|314629|314633|314635|314640|314647|314650|314653|314658|321328|321330|321335|321336|321341|327481|327485|327486|328520|328523|328529|713049|868286|868287|868288|868289|868672", + "upstreamId": "39347|314624|314628|314629|314633|314635|314640|314647|314650|314653|314658|321328|321330|321335|321336|321341|327481|327485|327486|328520|328523|328529|713049|868286|868287|868288|868289|868672", "text": "Nestor-Guillermo progeria syndrome" }, { - "baseId": "39348|211645|578641|791236|905867", + "upstreamId": "39348|211645|578641|791236|905867", "text": "Mitochondrial complex 1 deficiency, nuclear type 26" }, { - "baseId": "39349|39350|359099|359100|620073", + "upstreamId": "39349|39350|359099|359100|620073", "text": "Mitochondrial complex 1 deficiency, nuclear type 22" }, { - "baseId": "39357|39358|39359|39360|39361|40319|48561|48562|134419|134420|134421|199808|208399|208400|213646|375142|415565|424666|429977|481240|513468|552204|677984|682841|791782|800835|917750|919733|919734|920373|961642|966002|966003|966004|966043|971081|971082|973043", + "upstreamId": "39357|39358|39359|39360|39361|40319|48561|48562|134419|134420|134421|199808|208399|208400|213646|375142|415565|424666|429977|481240|513468|552204|677984|682841|791782|800835|917750|919733|919734|920373|961642|966002|966003|966004|966043|971081|971082|973043", "text": "Mandibulofacial dysostosis-microcephaly syndrome" }, { - "baseId": "39363|141192|190439|205537|208401|344974|346298|685435", + "upstreamId": "39363|141192|190439|205537|208401|344974|346298|685435", "text": "Epilepsy, progressive myoclonic 6" }, { - "baseId": "39365|132702|135547", + "upstreamId": "39365|132702|135547", "text": "Seckel syndrome 2" }, { - "baseId": "39366|330837|347942|919789", + "upstreamId": "39366|330837|347942|919789", "text": "Microcephaly with mental retardation and digital anomalies" }, { - "baseId": "39367|39367|39368|187689|191369|191537|194164|194191|196235|207865|265791|266013|267194|270150|270796|270975|272453|272457|274999|314218|314221|314230|314232|314240|314249|320780|320783|320790|320821|320837|320852|320855|326846|326853|326855|326859|326875|326887|326891|327795|327798|327800|327817|327830|327858|327869|360043|371427|429241|444807|461121|461131|461137|461332|461333|461623|461624|461625|461626|461627|461630|461932|461939|461943|461953|488690|488691|488694|526218|526223|526224|526226|526227|526228|526409|526415|526429|526434|526706|526708|526713|526719|564646|564647|564651|564654|564655|564662|564669|564671|565803|565805|567275|567276|567280|567282|570669|570670|570671|570673|640069|640070|640071|640072|640073|640074|640075|640076|640077|640078|640079|640080|640081|640082|640083|640084|640085|640086|640087|640088|640089|640090|652547|693032|693033|693034|693037|693039|693040|693042|693043|693044|693045|695516|695518|701776|701777|701778|701780|712847|712848|712849|724460|724462|724464|752689|768468|784012|796596|838472|838473|838474|838475|838476|838477|838478|838479|838480|838481|838482|838483|838484|838485|838486|852613|926251|926252|926253|926254|926255|935567|935568|935569|935570|935571|935572|935573|935574|935575|935576|940214|940998|947480|947481|947482|947483|956513|956514|956515|959990", + "upstreamId": "39367|39367|39368|187689|191369|191537|194164|194191|196235|207865|265791|266013|267194|270150|270796|270975|272453|272457|274999|314218|314221|314230|314232|314240|314249|320780|320783|320790|320821|320837|320852|320855|326846|326853|326855|326859|326875|326887|326891|327795|327798|327800|327817|327830|327858|327869|360043|371427|429241|444807|461121|461131|461137|461332|461333|461623|461624|461625|461626|461627|461630|461932|461939|461943|461953|488690|488691|488694|526218|526223|526224|526226|526227|526228|526409|526415|526429|526434|526706|526708|526713|526719|564646|564647|564651|564654|564655|564662|564669|564671|565803|565805|567275|567276|567280|567282|570669|570670|570671|570673|640069|640070|640071|640072|640073|640074|640075|640076|640077|640078|640079|640080|640081|640082|640083|640084|640085|640086|640087|640088|640089|640090|652547|693032|693033|693034|693037|693039|693040|693042|693043|693044|693045|695516|695518|701776|701777|701778|701780|712847|712848|712849|724460|724462|724464|752689|768468|784012|796596|838472|838473|838474|838475|838476|838477|838478|838479|838480|838481|838482|838483|838484|838485|838486|852613|926251|926252|926253|926254|926255|935567|935568|935569|935570|935571|935572|935573|935574|935575|935576|940214|940998|947480|947481|947482|947483|956513|956514|956515|959990", "text": "Sclerosteosis 2" }, { - "baseId": "39367|187688|187689|187689|191369|191537|194164|194191|196235|207865|265791|266013|267194|270150|270796|270975|272453|272457|274999|314218|314221|314230|314232|314240|314249|320780|320783|320790|320821|320837|320852|320855|326846|326853|326855|326859|326875|326887|326891|327795|327798|327800|327817|327830|327858|327869|360043|371427|429241|444807|461121|461131|461137|461332|461333|461623|461624|461625|461626|461627|461630|461932|461939|461943|461953|488690|488691|488694|526218|526223|526224|526226|526227|526228|526409|526415|526429|526434|526706|526708|526713|526719|564646|564647|564651|564654|564655|564662|564669|564671|565803|565805|567275|567276|567280|567282|570669|570670|570671|570673|626206|640069|640070|640071|640072|640073|640074|640075|640076|640077|640078|640079|640080|640081|640082|640083|640084|640085|640086|640087|640088|640089|640090|652547|693032|693033|693034|693037|693039|693040|693042|693043|693044|693045|695516|695518|701776|701777|701778|701780|712847|712848|712849|724460|724462|724464|752689|768468|784012|796596|838472|838473|838474|838475|838476|838477|838478|838479|838480|838481|838482|838483|838484|838485|838486|852613|926251|926252|926253|926254|926255|935567|935568|935569|935570|935571|935572|935573|935574|935575|935576|940214|940998|947480|947481|947482|947483|956513|956514|956515|959990", + "upstreamId": "39367|187688|187689|187689|191369|191537|194164|194191|196235|207865|265791|266013|267194|270150|270796|270975|272453|272457|274999|314218|314221|314230|314232|314240|314249|320780|320783|320790|320821|320837|320852|320855|326846|326853|326855|326859|326875|326887|326891|327795|327798|327800|327817|327830|327858|327869|360043|371427|429241|444807|461121|461131|461137|461332|461333|461623|461624|461625|461626|461627|461630|461932|461939|461943|461953|488690|488691|488694|526218|526223|526224|526226|526227|526228|526409|526415|526429|526434|526706|526708|526713|526719|564646|564647|564651|564654|564655|564662|564669|564671|565803|565805|567275|567276|567280|567282|570669|570670|570671|570673|626206|640069|640070|640071|640072|640073|640074|640075|640076|640077|640078|640079|640080|640081|640082|640083|640084|640085|640086|640087|640088|640089|640090|652547|693032|693033|693034|693037|693039|693040|693042|693043|693044|693045|695516|695518|701776|701777|701778|701780|712847|712848|712849|724460|724462|724464|752689|768468|784012|796596|838472|838473|838474|838475|838476|838477|838478|838479|838480|838481|838482|838483|838484|838485|838486|852613|926251|926252|926253|926254|926255|935567|935568|935569|935570|935571|935572|935573|935574|935575|935576|940214|940998|947480|947481|947482|947483|956513|956514|956515|959990", "text": "Myasthenic syndrome, congenital, 17" }, { - "baseId": "39369|322652|429675|512944|567103|569423|643288|643289|643290|643291|643292|643293|643294|726111|754490|815879|815880|842427|842428|927343|927344|948911|960822", + "upstreamId": "39369|322652|429675|512944|567103|569423|643288|643289|643290|643291|643292|643293|643294|726111|754490|815879|815880|842427|842428|927343|927344|948911|960822", "text": "Hermansky-Pudlak syndrome 9" }, { - "baseId": "39370|39371|39372|135015|135016|135017|135018|135019|135020|135021|135022|135023|135024|135025|135026|135027|199791|207661|207663|207664|207665|207666|207667|207669|207671|207672|207673|307698|307706|307708|307709|307711|307712|311945|311956|311958|311961|311962|311963|311964|311967|311970|317545|317547|317558|317563|317565|317566|317573|317576|317577|317579|317593|317599|317604|317611|317615|318053|318069|318071|318073|318074|318075|318079|318081|318082|318085|318087|318089|318092|318096|318098|428958|428961|428964|428966|428967|438578|438957|459360|486814|511822|524425|524429|524721|524724|565808|579585|579630|579631|579646|579647|579652|579661|579817|579821|586585|620326|638105|711892|730625|751586|751589|777813|779313|783365|783366|790873|805616|835933|835934|901572|901573|901574|901575|901576|901577|901578|901579|901580|901581|901582|901583|901584|901585|901586|901587|901588|901589|901590|901591|901592|901593|901594|901595|903356|903357|903358|934682|946533|955772|971358|971361|971362|971363|971365|971366", + "upstreamId": "39370|39371|39372|135015|135016|135017|135018|135019|135020|135021|135022|135023|135024|135025|135026|135027|199791|207661|207663|207664|207665|207666|207667|207669|207671|207672|207673|307698|307706|307708|307709|307711|307712|311945|311956|311958|311961|311962|311963|311964|311967|311970|317545|317547|317558|317563|317565|317566|317573|317576|317577|317579|317593|317599|317604|317611|317615|318053|318069|318071|318073|318074|318075|318079|318081|318082|318085|318087|318089|318092|318096|318098|428958|428961|428964|428966|428967|438578|438957|459360|486814|511822|524425|524429|524721|524724|565808|579585|579630|579631|579646|579647|579652|579661|579817|579821|586585|620326|638105|711892|730625|751586|751589|777813|779313|783365|783366|790873|805616|835933|835934|901572|901573|901574|901575|901576|901577|901578|901579|901580|901581|901582|901583|901584|901585|901586|901587|901588|901589|901590|901591|901592|901593|901594|901595|903356|903357|903358|934682|946533|955772|971358|971361|971362|971363|971365|971366", "text": "Mental retardation, autosomal recessive 15" }, { - "baseId": "39372", + "upstreamId": "39372", "text": "MAN1B1-Related Disorders" }, { - "baseId": "39373|39374|39375|39376|134895|134897|134900|134901|134902|134906|134911|134913|134914|134916|134920|134923|191237|192120|192121|207620|264389|407563|421717|508834|538405|552132|552133|578473|796244|919192", + "upstreamId": "39373|39374|39375|39376|134895|134897|134900|134901|134902|134906|134911|134913|134914|134916|134920|134923|191237|192120|192121|207620|264389|407563|421717|508834|538405|552132|552133|578473|796244|919192", "text": "Cortical malformations, occipital" }, { - "baseId": "39384|172197|211841|211847|361845|537303|539078|961427|961428|961436", + "upstreamId": "39384|172197|211841|211847|361845|537303|539078|961427|961428|961436", "text": "Spastic ataxia 5, autosomal recessive" }, { - "baseId": "39391|39392|39393|361118", + "upstreamId": "39391|39392|39393|361118", "text": "Progressive external ophthalmoplegia" }, { - "baseId": "39394|39396|39444|39445|40587|247077|254467|254468|254469|254470|254471|254472|254473|316517|316522|316528|316532|316533|316535|316536|316537|316539|316545|316546|316566|316567|316577|316578|316587|316588|316593|316594|316599|316600|316604|316615|316616|316620|324045|324048|324053|324054|324055|324062|324066|324067|324068|324074|324078|324079|324080|324083|324092|324095|324098|324099|324100|324102|324104|324112|330011|330023|330039|330043|330044|330045|330050|330051|330055|330059|330061|330068|330070|330077|330084|330086|331377|331393|331394|331406|331407|331411|331423|331433|331438|331441|331442|331452|331454|331455|331457|331458|331465|331466|331467|331470|331471|331490|331506|331508|331512|331517|331518|331524|331528|433929|433930|609824|620432|620433|620434|620435|620436|620437|620842|620843|620844|620845|620846|725038|725039|738584|738585|738586|753295|799669|799674|869593|869594|869595|869596|869597|869598|869599|869600|869601|869602|869603|869604|869605|869606|869607|869608|869609|869610|869611|869612|869613|869614|869615|869616|869617|869618|869619|869620|869621|869622|869623|869624|869625|869626|869627|869628|869629|869630|869631|869632|869633|869634|869635|869636|869637|869638|869639|869640|869641|869642|869643|869644|869645|869646|872218|872219|872220|872221|872222|872223|872224|904186|965895|981776|981777|981778|981779|981780|981781|981782|981783|981784|981785|981786", + "upstreamId": "39394|39396|39444|39445|40587|247077|254467|254468|254469|254470|254471|254472|254473|316517|316522|316528|316532|316533|316535|316536|316537|316539|316545|316546|316566|316567|316577|316578|316587|316588|316593|316594|316599|316600|316604|316615|316616|316620|324045|324048|324053|324054|324055|324062|324066|324067|324068|324074|324078|324079|324080|324083|324092|324095|324098|324099|324100|324102|324104|324112|330011|330023|330039|330043|330044|330045|330050|330051|330055|330059|330061|330068|330070|330077|330084|330086|331377|331393|331394|331406|331407|331411|331423|331433|331438|331441|331442|331452|331454|331455|331457|331458|331465|331466|331467|331470|331471|331490|331506|331508|331512|331517|331518|331524|331528|433929|433930|609824|620432|620433|620434|620435|620436|620437|620842|620843|620844|620845|620846|725038|725039|738584|738585|738586|753295|799669|799674|869593|869594|869595|869596|869597|869598|869599|869600|869601|869602|869603|869604|869605|869606|869607|869608|869609|869610|869611|869612|869613|869614|869615|869616|869617|869618|869619|869620|869621|869622|869623|869624|869625|869626|869627|869628|869629|869630|869631|869632|869633|869634|869635|869636|869637|869638|869639|869640|869641|869642|869643|869644|869645|869646|872218|872219|872220|872221|872222|872223|872224|904186|965895|981776|981777|981778|981779|981780|981781|981782|981783|981784|981785|981786", "text": "Rotor syndrome" }, { - "baseId": "39399|140122|152910|152911|425669|430994|434605|538381|550601|611643|790588", + "upstreamId": "39399|140122|152910|152911|425669|430994|434605|538381|550601|611643|790588", "text": "Mental retardation, autosomal recessive 18" }, { - "baseId": "39402|576070|970948", + "upstreamId": "39402|576070|970948", "text": "Developmental and epileptic encephalopathy, 67" }, { - "baseId": "39404|39405", + "upstreamId": "39404|39405", "text": "Radiohumeral fusions with other skeletal and craniofacial anomalies" }, { - "baseId": "39406", + "upstreamId": "39406", "text": "Deafness, autosomal dominant 64" }, { - "baseId": "39407|39408|227268|799358", + "upstreamId": "39407|39408|227268|799358", "text": "Preeclampsia/eclampsia 5" }, { - "baseId": "39409|39410|39411|227203|439996|550576", + "upstreamId": "39409|39410|39411|227203|439996|550576", "text": "Familial acne inversa 1" }, { - "baseId": "39412|39413|39414|39415|101850|141305|141306|141307|141309|141310|141311|141312|141313|141314|186288|194483|198533|198536|198538|222854|259064|259066|410754|422320|446245|470900|497751|508934|512963|818345", + "upstreamId": "39412|39413|39414|39415|101850|141305|141306|141307|141309|141310|141311|141312|141313|141314|186288|194483|198533|198536|198538|222854|259064|259066|410754|422320|446245|470900|497751|508934|512963|818345", "text": "Familial hypertrophic cardiomyopathy 17" }, { - "baseId": "39422|240900|360879|361092|454614|462979|514048|514112|576328", + "upstreamId": "39422|240900|360879|361092|454614|462979|514048|514112|576328", "text": "Clinodactyly of the 5th finger" }, { - "baseId": "39434|39435|39436|39437|39438|214528|247410|247411", + "upstreamId": "39434|39435|39436|39437|39438|214528|247410|247411", "text": "Langereis blood group" }, { - "baseId": "39439|39440|79365|904247", + "upstreamId": "39439|39440|79365|904247", "text": "Microphthalmia, isolated, with coloboma 7" }, { - "baseId": "39443|337275|337277|337278|337291|337294|337296|337298|337299|337314|337322|337333|337335|337336|337340|337349|337354|337373|337381|337402|337403|337405|337413|337430|337431|337434|337441|346962|346963|346969|346971|346972|346979|346980|346983|346984|346988|346990|346991|346995|346997|347007|347009|347016|347023|347028|347034|347056|347057|351006|351008|351011|351013|351016|351018|351020|351026|351028|351033|351037|351039|351046|351054|351055|351058|351059|351062|351063|351066|351067|351071|351089|351092|351097|351100|351101|351102|352008|352009|352011|352012|352013|352015|352016|352017|352020|352040|352041|352044|352047|352048|352049|352072|352073|352074|352079|352083|352088|352106|352110|352111|352115|352121|352125|352127|352129|352134|359109|359110|359111|359112|359113|469873|469878|469880|470892|470896|470898|471314|471315|471316|471791|471793|534025|534027|534033|534038|534041|534126|534132|534135|534144|534566|534571|534572|534576|534579|534585|534592|571675|571679|571680|571682|571683|571685|573236|573239|573241|573242|573942|575209|575210|575211|614484|649137|649138|649139|649140|649141|649142|649143|649144|649145|649146|649147|649148|649149|649150|649151|649152|649153|649154|649155|649156|649157|649158|649159|649160|649161|649162|717276|717277|717278|728991|728992|728993|728994|728995|728996|728997|742729|757909|757911|757912|760973|773417|776717|786540|821397|848984|848985|848986|848987|848988|848989|848990|848991|848992|848993|848994|848995|848996|848997|848998|848999|849000|849001|849002|849003|849004|849005|849006|849007|852918|887129|887130|887131|887132|887133|887134|887135|887136|887137|887138|887139|887140|887141|887142|887143|887144|887146|887147|887148|887149|887150|887152|887153|887154|887155|887156|887157|887158|887160|887161|887162|887163|887164|887165|887166|887167|887169|887170|887171|887172|887173|887174|887175|887176|887177|887178|887179|887180|887181|887182|887183|887184|887185|887186|887187|887188|887189|887190|887191|887192|887193|887194|887195|887196|887197|887198|887199|887200|887201|887202|887203|887204|887205|887206|887207|887208|887209|887210|887211|887212|929388|929389|929390|929391|929392|939173|939174|939175|939176|939177|939178|939179|951296|951297|951298|951299|951300|951301|951302|951303|951304|951305|951306|951307|951308|951309|959013|959014|959015|960337", + "upstreamId": "39443|337275|337277|337278|337291|337294|337296|337298|337299|337314|337322|337333|337335|337336|337340|337349|337354|337373|337381|337402|337403|337405|337413|337430|337431|337434|337441|346962|346963|346969|346971|346972|346979|346980|346983|346984|346988|346990|346991|346995|346997|347007|347009|347016|347023|347028|347034|347056|347057|351006|351008|351011|351013|351016|351018|351020|351026|351028|351033|351037|351039|351046|351054|351055|351058|351059|351062|351063|351066|351067|351071|351089|351092|351097|351100|351101|351102|352008|352009|352011|352012|352013|352015|352016|352017|352020|352040|352041|352044|352047|352048|352049|352072|352073|352074|352079|352083|352088|352106|352110|352111|352115|352121|352125|352127|352129|352134|359109|359110|359111|359112|359113|469873|469878|469880|470892|470896|470898|471314|471315|471316|471791|471793|534025|534027|534033|534038|534041|534126|534132|534135|534144|534566|534571|534572|534576|534579|534585|534592|571675|571679|571680|571682|571683|571685|573236|573239|573241|573242|573942|575209|575210|575211|614484|649137|649138|649139|649140|649141|649142|649143|649144|649145|649146|649147|649148|649149|649150|649151|649152|649153|649154|649155|649156|649157|649158|649159|649160|649161|649162|717276|717277|717278|728991|728992|728993|728994|728995|728996|728997|742729|757909|757911|757912|760973|773417|776717|786540|821397|848984|848985|848986|848987|848988|848989|848990|848991|848992|848993|848994|848995|848996|848997|848998|848999|849000|849001|849002|849003|849004|849005|849006|849007|852918|887129|887130|887131|887132|887133|887134|887135|887136|887137|887138|887139|887140|887141|887142|887143|887144|887146|887147|887148|887149|887150|887152|887153|887154|887155|887156|887157|887158|887160|887161|887162|887163|887164|887165|887166|887167|887169|887170|887171|887172|887173|887174|887175|887176|887177|887178|887179|887180|887181|887182|887183|887184|887185|887186|887187|887188|887189|887190|887191|887192|887193|887194|887195|887196|887197|887198|887199|887200|887201|887202|887203|887204|887205|887206|887207|887208|887209|887210|887211|887212|929388|929389|929390|929391|929392|939173|939174|939175|939176|939177|939178|939179|951296|951297|951298|951299|951300|951301|951302|951303|951304|951305|951306|951307|951308|951309|959013|959014|959015|960337", "text": "Immunodeficiency 51" }, { - "baseId": "39446|39447|39448|48518|48519|48520|84944|170217|170218|281597|281598|281600|281606|281607|281611|282255|282256|282258|282259|282260|282269|282270|282272|282274|282289|283590|283603|283604|283611|283612|283620|283621|283623|283631|283638|283639|283788|283791|283792|283793|283794|283795|283800|283804|283807|283819|283822|283825|283826|283851|353536|486247|516296|516298|516311|516323|516324|516327|516398|559182|612557|620734|628413|628414|628415|732719|743807|762160|762161|819043|824716|824717|824718|824719|850832|880862|880863|880864|880865|880866|880867|880868|880869|880870|880871|880872|880873|880874|880875|882783|930789|930790", + "upstreamId": "39446|39447|39448|48518|48519|48520|84944|170217|170218|281597|281598|281600|281606|281607|281611|282255|282256|282258|282259|282260|282269|282270|282272|282274|282289|283590|283603|283604|283611|283612|283620|283621|283623|283631|283638|283639|283788|283791|283792|283793|283794|283795|283800|283804|283807|283819|283822|283825|283826|283851|353536|486247|516296|516298|516311|516323|516324|516327|516398|559182|612557|620734|628413|628414|628415|732719|743807|762160|762161|819043|824716|824717|824718|824719|850832|880862|880863|880864|880865|880866|880867|880868|880869|880870|880871|880872|880873|880874|880875|882783|930789|930790", "text": "Pustular psoriasis, generalized" }, { - "baseId": "39451|39452|309029|426755|552107|552108", + "upstreamId": "39451|39452|309029|426755|552107|552108", "text": "Ichthyosis, spastic quadriplegia, and mental retardation" }, { - "baseId": "39455|39456|39457|39458|39459|134113|134129|134132|208308|429860|429864|434653|715196", + "upstreamId": "39455|39456|39457|39458|39459|134113|134129|134132|208308|429860|429864|434653|715196", "text": "Meier-Gorlin syndrome 4" }, { - "baseId": "39460|39461|39463|679353", + "upstreamId": "39460|39461|39463|679353", "text": "Platelet-type bleeding disorder 11" }, { - "baseId": "39465|39466|40446|40447|40448|54943|54945|54949|54952|142112|142113|209638|227266|229156|292142|508791|550864", + "upstreamId": "39465|39466|40446|40447|40448|54943|54945|54949|54952|142112|142113|209638|227266|229156|292142|508791|550864", "text": "Familial hypertrophic cardiomyopathy 16" }, { - "baseId": "39468|39469|39470|39471|188968|237238|257465|257466|257467|257468|257469|257470|336829|336830|336833|336835|336838|336839|336840|346486|346496|346497|346498|346499|346502|346503|346507|346509|346511|346520|350694|350699|350700|350703|350704|350707|350708|350711|350713|350716|350717|350720|350721|350724|350725|350726|350728|351762|351763|351765|351768|351770|351773|351774|351776|351777|351778|351779|351780|351782|351786|351789|351791|351795|552226|576315|717217|728918|731374|742648|742649|757824|757830|757832|757833|773354|805042|886798|886799|886800|886801|886802|886803|886804|886805|886806|886807|886808|886809|886810|886811|886812|886813|886814|886815|886816|886817|886818|886819|886820|886821|886822|886823|886824|886825|886826|886827|886828|886829|886830|886831|886832|886833|886834|886835|886836|886837|886838|886839|886840|886841|886842|887510|887511", + "upstreamId": "39468|39469|39470|39471|188968|237238|257465|257466|257467|257468|257469|257470|336829|336830|336833|336835|336838|336839|336840|346486|346496|346497|346498|346499|346502|346503|346507|346509|346511|346520|350694|350699|350700|350703|350704|350707|350708|350711|350713|350716|350717|350720|350721|350724|350725|350726|350728|351762|351763|351765|351768|351770|351773|351774|351776|351777|351778|351779|351780|351782|351786|351789|351791|351795|552226|576315|717217|728918|731374|742648|742649|757824|757830|757832|757833|773354|805042|886798|886799|886800|886801|886802|886803|886804|886805|886806|886807|886808|886809|886810|886811|886812|886813|886814|886815|886816|886817|886818|886819|886820|886821|886822|886823|886824|886825|886826|886827|886828|886829|886830|886831|886832|886833|886834|886835|886836|886837|886838|886839|886840|886841|886842|887510|887511", "text": "Bartsocas-Papas syndrome" }, { - "baseId": "39472|39473|39474|39475|39476|39477|39478|39479|39480|40222|40223|40224|214534|251701|251704|251708|295398|295409|295425|295426|295429|295430|295435|295438|295443|295445|295446|295453|295456|295461|295469|295470|297203|297204|297211|297212|297218|297231|297234|297235|297236|297242|297243|297244|297246|297249|297250|297257|297259|297260|301006|301017|301019|301021|301034|301035|301060|301067|301079|301082|301087|301091|301094|301097|301099|301103|301104|301107|301109|301124|301132|301158|301161|301170|301171|301173|301183|301185|301186|301187|301197|301215|301216|301226|301253|301264|622346|892965|892966|892967|892968|892969|892970|892971|892972|892973|892974|892975|892976|892977|892978|892979|892980|892981|892982|892983|892984|892985|892986|892987|892988|892989|892990|892991|892992|892994|892995|892996|892997|893001|893002|893005|893006|893011|893012|893013|896033|896034", + "upstreamId": "39472|39473|39474|39475|39476|39477|39478|39479|39480|40222|40223|40224|214534|251701|251704|251708|295398|295409|295425|295426|295429|295430|295435|295438|295443|295445|295446|295453|295456|295461|295469|295470|297203|297204|297211|297212|297218|297231|297234|297235|297236|297242|297243|297244|297246|297249|297250|297257|297259|297260|301006|301017|301019|301021|301034|301035|301060|301067|301079|301082|301087|301091|301094|301097|301099|301103|301104|301107|301109|301124|301132|301158|301161|301170|301171|301173|301183|301185|301186|301187|301197|301215|301216|301226|301253|301264|622346|892965|892966|892967|892968|892969|892970|892971|892972|892973|892974|892975|892976|892977|892978|892979|892980|892981|892982|892983|892984|892985|892986|892987|892988|892989|892990|892991|892992|892994|892995|892996|892997|893001|893002|893005|893006|893011|893012|893013|896033|896034", "text": "Pseudohypoaldosteronism type 2D" }, { - "baseId": "39482|39483|39484|39485|47604|47604|47605|59481|59482|213599|253844|264349|311064|322495|323175|353900|431920|481403|514612|550617|550618|552633|583107|614350|614351|624855|677431|798626|798627|816515|818392|919286|919287|920285|964345|965204|967124|976660", + "upstreamId": "39482|39483|39484|39485|47604|47604|47605|59481|59482|213599|253844|264349|311064|322495|323175|353900|431920|481403|514612|550617|550618|552633|583107|614350|614351|624855|677431|798626|798627|816515|818392|919286|919287|920285|964345|965204|967124|976660", "text": "Blepharophimosis - intellectual disability syndrome, SBBYS type" }, { - "baseId": "39487|39489|39490|47604|47604|150148|150150|150152|207791|253844|253845|253846|253847|253849|253851|253852|322482|322517|495257|514612|552145|552633|563951|566503|614350|614351|639160|639161|677431|692889|775720|790982|790983|790984|837307|837308|837309|837310|837311|947073|967124|976660", + "upstreamId": "39487|39489|39490|47604|47604|150148|150150|150152|207791|253844|253845|253846|253847|253849|253851|253852|322482|322517|495257|514612|552145|552633|563951|566503|614350|614351|639160|639161|677431|692889|775720|790982|790983|790984|837307|837308|837309|837310|837311|947073|967124|976660", "text": "Genitopatellar syndrome" }, { - "baseId": "39492|66321|133499|222576|363242", + "upstreamId": "39492|66321|133499|222576|363242", "text": "Diffuse intrinsic pontine glioma" }, { - "baseId": "39501|39502|39503|39504|169314|169315|169316|169317|169318|169319|169320|169321|169322|169323|169324|169325|169326|169327|169328|169329|169330|169331|327361|327365|343427|343430|343431|343441|343443|345028|345029|345030|361006|620883|626251|876845|876846|876847|876848|876849|876850|880467|919704", + "upstreamId": "39501|39502|39503|39504|169314|169315|169316|169317|169318|169319|169320|169321|169322|169323|169324|169325|169326|169327|169328|169329|169330|169331|327361|327365|343427|343430|343431|343441|343443|345028|345029|345030|361006|620883|626251|876845|876846|876847|876848|876849|876850|880467|919704", "text": "CHIME syndrome" }, { - "baseId": "39501|169319|169322|169325|327361|327365|343427|343430|343431|343441|343443|345028|345029|345030", + "upstreamId": "39501|169319|169322|169325|327361|327365|343427|343430|343431|343441|343443|345028|345029|345030", "text": "Coloboma, Congenital Heart Disease, Ichthyosiform Dermatosis, Intellectual Disability, and Ear Anomalies (CHIME) Syndrome" }, { - "baseId": "39506|106812|106813|215560|259227|259228|259229|259230|259231|259232|259233|259234|376028|376041|389175|390374|390379|410404|415607|415608|439466|439467|442036|445996|445999|446000|446001|446002|468085|468089|468107|468108|468112|468122|468127|468131|468133|469021|469022|469029|469032|469039|469046|469049|469052|469059|469060|469424|469426|469432|469443|469444|469446|469866|469869|469872|469890|469892|469898|469900|469903|469904|481446|508906|513652|513653|532326|532328|532330|532338|532341|532347|532360|532365|532367|532369|532370|532374|532377|532475|532481|532483|532792|532794|532800|532806|532810|532814|532819|570244|570246|570248|570250|571985|571991|571993|571999|572003|572006|572535|572679|572682|572689|572692|574775|574776|574777|574778|574779|574780|574781|574782|577692|577695|577696|577697|580321|580383|580391|580425|580544|589286|626270|647367|647368|647369|647370|647371|647372|647373|647374|647375|647376|647377|647378|647379|647380|647381|647382|647383|647384|647385|647386|647387|647388|647389|647390|647391|647392|647393|647394|647395|647396|652884|652904|652910|652911|653081|653377|653410|653414|682107|694290|704642|704643|704644|704645|704646|704647|716020|716021|731222|741420|741422|745032|756501|756502|756505|756506|756509|756510|756513|778590|785966|791880|798738|821197|846984|846985|846986|846987|846988|846989|846990|846991|846992|846993|846994|846995|846996|846997|846998|846999|847000|847001|847002|847003|847004|847005|847006|847007|847008|847009|847010|847011|847012|847013|847014|852285|852288|852291|852294|852826|852937|852939|857693|860492|928752|928753|928754|928755|928756|928757|928758|928759|928760|928761|928762|928763|928764|928765|928766|928767|938478|938479|938480|938481|938482|938483|938484|938485|938486|938487|938488|938489|938490|938491|940460|941215|941216|950573|950574|950575|950576|950577|950578|950579|950580|958488|958489|958490|958491|958492|960272|960906|960907|960908|970549", + "upstreamId": "39506|106812|106813|215560|259227|259228|259229|259230|259231|259232|259233|259234|376028|376041|389175|390374|390379|410404|415607|415608|439466|439467|442036|445996|445999|446000|446001|446002|468085|468089|468107|468108|468112|468122|468127|468131|468133|469021|469022|469029|469032|469039|469046|469049|469052|469059|469060|469424|469426|469432|469443|469444|469446|469866|469869|469872|469890|469892|469898|469900|469903|469904|481446|508906|513652|513653|532326|532328|532330|532338|532341|532347|532360|532365|532367|532369|532370|532374|532377|532475|532481|532483|532792|532794|532800|532806|532810|532814|532819|570244|570246|570248|570250|571985|571991|571993|571999|572003|572006|572535|572679|572682|572689|572692|574775|574776|574777|574778|574779|574780|574781|574782|577692|577695|577696|577697|580321|580383|580391|580425|580544|589286|626270|647367|647368|647369|647370|647371|647372|647373|647374|647375|647376|647377|647378|647379|647380|647381|647382|647383|647384|647385|647386|647387|647388|647389|647390|647391|647392|647393|647394|647395|647396|652884|652904|652910|652911|653081|653377|653410|653414|682107|694290|704642|704643|704644|704645|704646|704647|716020|716021|731222|741420|741422|745032|756501|756502|756505|756506|756509|756510|756513|778590|785966|791880|798738|821197|846984|846985|846986|846987|846988|846989|846990|846991|846992|846993|846994|846995|846996|846997|846998|846999|847000|847001|847002|847003|847004|847005|847006|847007|847008|847009|847010|847011|847012|847013|847014|852285|852288|852291|852294|852826|852937|852939|857693|860492|928752|928753|928754|928755|928756|928757|928758|928759|928760|928761|928762|928763|928764|928765|928766|928767|938478|938479|938480|938481|938482|938483|938484|938485|938486|938487|938488|938489|938490|938491|940460|941215|941216|950573|950574|950575|950576|950577|950578|950579|950580|958488|958489|958490|958491|958492|960272|960906|960907|960908|970549", "text": "Multiple congenital anomalies-hypotonia-seizures syndrome 1" }, { - "baseId": "39508", + "upstreamId": "39508", "text": "Nuclearly-encoded mitochondrial complex V (ATP synthase) deficiency 3" }, { - "baseId": "39517|39518|247192|384424|976673|976674", + "upstreamId": "39517|39518|247192|384424|976673|976674", "text": "Schizophrenia 15" }, { - "baseId": "39519|39520|39521|39522|39523|137712|331230|399906|399958|400191|464570|464635|477067|528380|566698|573026|917735", + "upstreamId": "39519|39520|39521|39522|39523|137712|331230|399906|399958|400191|464570|464635|477067|528380|566698|573026|917735", "text": "Goiter, multinodular 1, with or without Sertoli-Leydig cell tumors" }, { - "baseId": "39525|39526|39527|39528|39529|141396|141397|211314|211315|211318|259853|370907|406999|432357|432358|456749|457017|481493|501893|522381|522383|523096|523098|561622|561634|566067|635840|635841|635842|635843|635844|635845|635846|635847|635848|651585|651608|651645|651776|710849|750474|750478|766143|766145|787505|819834|819835|819836|819837|819838|819839|819840|833261|833262|833263|833264|833265|833266|833267|833268|833269|833270|833271|924727|924728|924729|933736|933737|933738|945500|945501|961236|961237", + "upstreamId": "39525|39526|39527|39528|39529|141396|141397|211314|211315|211318|259853|370907|406999|432357|432358|456749|457017|481493|501893|522381|522383|523096|523098|561622|561634|566067|635840|635841|635842|635843|635844|635845|635846|635847|635848|651585|651608|651645|651776|710849|750474|750478|766143|766145|787505|819834|819835|819836|819837|819838|819839|819840|833261|833262|833263|833264|833265|833266|833267|833268|833269|833270|833271|924727|924728|924729|933736|933737|933738|945500|945501|961236|961237", "text": "Thiamine metabolism dysfunction syndrome 5 (episodic encephalopathy type)" }, { - "baseId": "39530|227735", + "upstreamId": "39530|227735", "text": "MULTIPLE JOINT DISLOCATIONS, SHORT STATURE, AND CRANIOFACIAL DYSMORPHISM WITH CONGENITAL HEART DEFECTS" }, { - "baseId": "39531|39532", + "upstreamId": "39531|39532", "text": "Retinitis pigmentosa 61" }, { - "baseId": "39536", + "upstreamId": "39536", "text": "Osteomyelitis leading to amputation due to slow healing fractures" }, { - "baseId": "39536", + "upstreamId": "39536", "text": "Penetrating foot ulcers" }, { - "baseId": "39536|361025", + "upstreamId": "39536|361025", "text": "Distal sensory impairment" }, { - "baseId": "39544|39545|135824|195354|391252|427838|794110", + "upstreamId": "39544|39545|135824|195354|391252|427838|794110", "text": "Mental retardation, autosomal recessive 12" }, { - "baseId": "39546|227301|300695|300697|300705|303620|303622|303623|308159|308161|308169|308220|308229|308230|456243|521692|560746|563629|563632|634979|634980|634981|765741|819698|832032|832033|832034|832035|832036|896665|896666|896667|900248|900249|924377|924378|924379|933356|945061|945062|945063|945064|954498|954499", + "upstreamId": "39546|227301|300695|300697|300705|303620|303622|303623|308159|308161|308169|308220|308229|308230|456243|521692|560746|563629|563632|634979|634980|634981|765741|819698|832032|832033|832034|832035|832036|896665|896666|896667|900248|900249|924377|924378|924379|933356|945061|945062|945063|945064|954498|954499", "text": "Candidiasis, familial, 6" }, { - "baseId": "39547|195408|430007|432359|432360|432361|432362|481466", + "upstreamId": "39547|195408|430007|432359|432360|432361|432362|481466", "text": "Striatal necrosis, bilateral, and progressive polyneuropathy" }, { - "baseId": "39548|462737|527886|641392|641393|702512|702513|725280|926738", + "upstreamId": "39548|462737|527886|641392|641393|702512|702513|725280|926738", "text": "Klippel-Feil syndrome 3, autosomal dominant" }, { - "baseId": "39548", + "upstreamId": "39548", "text": "Missing ribs" }, { - "baseId": "39548", + "upstreamId": "39548", "text": "Supernumerary ribs" }, { - "baseId": "39548|377641|966697|966704", + "upstreamId": "39548|377641|966697|966704", "text": "Hemivertebrae" }, { - "baseId": "39549|39550", + "upstreamId": "39549|39550", "text": "Microphthalmia, isolated 7" }, { - "baseId": "39555|140023|140025|140026|140027|140028|140029|172155|211999|212000|212001|243739|244166|288934|290052|292635|292640|293546|293586|300336|300339|300340|300368|303215|307681|307845|307865|307869|310954|310959|316234|322354|322361|322363|322914|322916|322918|322934|323545|324778|324927|324935|326185|329724|330971|334395|334560|334562|334578|338837|340989|342504|342509|342515|342525|352058|360628|379916|404439|404484|438582|471256|471693|472053|500638|507839|508492|534492|534507|534509|534600|537587|575325|585859|649669|649670|649671|649672|649673|649674|649675|649676|649677|649678|649679|649680|653773|684944|689335|690250|717644|758294|849603|849604|849605|849606|849607|849608|849609|849610|849611|849612|902774|905514|929561|929562|929563|939423|939424|939425|939426|951590|951591|951592|959163|959164|959165", + "upstreamId": "39555|140023|140025|140026|140027|140028|140029|172155|211999|212000|212001|243739|244166|288934|290052|292635|292640|293546|293586|300336|300339|300340|300368|303215|307681|307845|307865|307869|310954|310959|316234|322354|322361|322363|322914|322916|322918|322934|323545|324778|324927|324935|326185|329724|330971|334395|334560|334562|334578|338837|340989|342504|342509|342515|342525|352058|360628|379916|404439|404484|438582|471256|471693|472053|500638|507839|508492|534492|534507|534509|534600|537587|575325|585859|649669|649670|649671|649672|649673|649674|649675|649676|649677|649678|649679|649680|653773|684944|689335|690250|717644|758294|849603|849604|849605|849606|849607|849608|849609|849610|849611|849612|902774|905514|929561|929562|929563|939423|939424|939425|939426|951590|951591|951592|959163|959164|959165", "text": "Combined oxidative phosphorylation deficiency" }, { - "baseId": "39556|39557|39558|39559|190553|193642|195734|202871|445413|569589|972210|972211|972212", + "upstreamId": "39556|39557|39558|39559|190553|193642|195734|202871|445413|569589|972210|972211|972212", "text": "Adult neuronal ceroid lipofuscinosis" }, { - "baseId": "39562|335338|335358|335359|335360|335361|335369|335371|335374|335378|345199|345200|345203|345205|349932|349936|349937|349940|349941|349943|349944|350941|350942|350945|350947|350950|350951|350954|350955|350958|575091|575091|757496|886058|886059|886060|886061|886062|886063|886064|886065|886066|886067|886068|886069|886070|886071|887457|887458", + "upstreamId": "39562|335338|335358|335359|335360|335361|335369|335371|335374|335378|345199|345200|345203|345205|349932|349936|349937|349940|349941|349943|349944|350941|350942|350945|350947|350950|350951|350954|350955|350958|575091|575091|757496|886058|886059|886060|886061|886062|886063|886064|886065|886066|886067|886068|886069|886070|886071|887457|887458", "text": "Chilblain lupus 2" }, { - "baseId": "39564|50319|50320|50321|508863|508864|815993|919341", + "upstreamId": "39564|50319|50320|50321|508863|508864|815993|919341", "text": "Hemorrhagic destruction of the brain, subependymal calcification, and cataracts" }, { - "baseId": "39579|39580|39581|39582|142157", + "upstreamId": "39579|39580|39581|39582|142157", "text": "Mitochondrial complex 1 deficiency, nuclear type 11" }, { - "baseId": "39585|101888|101888|177144|177144|181437|190600|190601|237188|237188|319769|319770|319770|319781|319782|319790|319802|319805|319806|319808|319809|328296|328297|328299|328301|328301|328304|328304|328309|328310|328314|328325|328344|334768|334769|334775|334776|334779|334782|334782|334793|334795|336504|336505|336510|336512|336513|336519|372822|372827|373841|426044|463273|480625|480626|485963|485964|485965|485966|504270|527728|527728|527763|566119|567579|576160|578508|641939|641940|688170|688170|695598|695598|702685|730919|730919|769560|769561|784600|791344|805024|818397|840886|840887|840888|840889|840890|871286|871287|871288|871289|871290|871291|871292|871293|871294|871295|871296|871297|871298|871299|871300|871301|871302|871303|871304|871305|871306|871307|871308|871309|871310|871311|871312|871313|871314|872335|872336", + "upstreamId": "39585|101888|101888|177144|177144|181437|190600|190601|237188|237188|319769|319770|319770|319781|319782|319790|319802|319805|319806|319808|319809|328296|328297|328299|328301|328301|328304|328304|328309|328310|328314|328325|328344|334768|334769|334775|334776|334779|334782|334782|334793|334795|336504|336505|336510|336512|336513|336519|372822|372827|373841|426044|463273|480625|480626|485963|485964|485965|485966|504270|527728|527728|527763|566119|567579|576160|578508|641939|641940|688170|688170|695598|695598|702685|730919|730919|769560|769561|784600|791344|805024|818397|840886|840887|840888|840889|840890|871286|871287|871288|871289|871290|871291|871292|871293|871294|871295|871296|871297|871298|871299|871300|871301|871302|871303|871304|871305|871306|871307|871308|871309|871310|871311|871312|871313|871314|872335|872336", "text": "Congenital disorder of glycosylation type 2L" }, { - "baseId": "39586|141821|141822|201765|201767|201769|201770|201771|201772|201773|201774|201775|201778|226379|226380|367956|367959|368012|453153|453154|453157|453421|453427|453531|453533|453616|514496|519903|519907|519921|519925|519929|519930|519931|519939|520152|520183|520185|559673|559675|559677|559679|559681|559702|559834|559836|559838|562003|562004|562007|562008|562012|562013|563690|563700|563701|576782|586275|632198|632199|632200|632201|632202|632203|651190|695235|764460|764461|829143|829144|829145|829146|829147|829148|829149|829150|850986|905866|918893|918894|923507|923508|923509|923510|923511|923512|923513|932329|932330|932331|932332|932333|932334|932335|932336|932337|939967|943993|943994|943995|943996|943997|943998|966794|966795", + "upstreamId": "39586|141821|141822|201765|201767|201769|201770|201771|201772|201773|201774|201775|201778|226379|226380|367956|367959|368012|453153|453154|453157|453421|453427|453531|453533|453616|514496|519903|519907|519921|519925|519929|519930|519931|519939|520152|520183|520185|559673|559675|559677|559679|559681|559702|559834|559836|559838|562003|562004|562007|562008|562012|562013|563690|563700|563701|576782|586275|632198|632199|632200|632201|632202|632203|651190|695235|764460|764461|829143|829144|829145|829146|829147|829148|829149|829150|850986|905866|918893|918894|923507|923508|923509|923510|923511|923512|923513|932329|932330|932331|932332|932333|932334|932335|932336|932337|939967|943993|943994|943995|943996|943997|943998|966794|966795", "text": "Pyruvate dehydrogenase lipoic acid synthetase deficiency" }, { - "baseId": "39587", + "upstreamId": "39587", "text": "Psoriasis susceptibility 13" }, { - "baseId": "39588|39590|39591|39592|49863|49909|190898|204645|432334|619859|971076", + "upstreamId": "39588|39590|39591|39592|49863|49909|190898|204645|432334|619859|971076", "text": "Bruck syndrome 1" }, { - "baseId": "39593|39594|39595|190053|227388|328051|328056|328072|328078|328080|328104|337890|337902|337922|337928|337932|344128|344152|345491|345524|345529|345544|791742", + "upstreamId": "39593|39594|39595|190053|227388|328051|328056|328072|328078|328080|328104|337890|337902|337922|337928|337932|344128|344152|345491|345524|345529|345544|791742", "text": "Palmoplantar keratoderma, mutilating, with periorificial keratotic plaques" }, { - "baseId": "39600|434582|677003", + "upstreamId": "39600|434582|677003", "text": "Combined oxidative phosphorylation deficiency 9" }, { - "baseId": "39602|39603|39604|39605|39606|39607|251148|251149|251150|251151|251152|251154|251156|251157|251158|251159|251160|251161|251162|251163|251164|251165|251166|251167|251168|290588|290594|290595|290602|290606|290608|290612|290615|290616|290625|290627|290628|290632|290635|290636|290638|290640|290641|290644|290645|290652|290653|290663|290666|290670|290675|291470|291471|291472|291474|291476|291482|291488|291501|291505|291508|291510|291516|291517|291519|291521|291527|291543|291545|291548|291554|291555|291564|291565|291572|291589|291592|291606|291607|291608|294727|294728|294729|294731|294746|294747|294751|294752|294753|294763|294766|294767|294770|294772|294775|294776|294777|294780|294781|294782|294785|294787|295094|295095|295099|295106|295113|295114|295130|295131|295137|295144|295147|295148|295160|295162|295166|295167|295168|295170|295177|295181|295183|295189|295190|424503|424504|452427|452434|452436|452648|452656|452660|452662|452741|452742|452983|452985|452987|519310|519353|519554|631453|631454|631455|631456|631457|681803|686429|691422|691423|691424|695204|828187|828188|859272|889037|889038|889039|889040|889041|889042|889043|889044|889045|889046|889047|889048|889049|889050|889051|889052|889053|889054|889055|889056|889057|889058|889059|889060|889061|889062|889063|889064|889065|889066|889067|889068|889069|889070|889071|889072|889073|889074|889075|889076|889077|889078|889079|889080|889081|889082|889083|889084|889085|889086|889087|889088|889089|889090|889091|889092|889093|889094|889095|891650|891651|891652|891653|923218|931962|931963|943571|970768|970769", + "upstreamId": "39602|39603|39604|39605|39606|39607|251148|251149|251150|251151|251152|251154|251156|251157|251158|251159|251160|251161|251162|251163|251164|251165|251166|251167|251168|290588|290594|290595|290602|290606|290608|290612|290615|290616|290625|290627|290628|290632|290635|290636|290638|290640|290641|290644|290645|290652|290653|290663|290666|290670|290675|291470|291471|291472|291474|291476|291482|291488|291501|291505|291508|291510|291516|291517|291519|291521|291527|291543|291545|291548|291554|291555|291564|291565|291572|291589|291592|291606|291607|291608|294727|294728|294729|294731|294746|294747|294751|294752|294753|294763|294766|294767|294770|294772|294775|294776|294777|294780|294781|294782|294785|294787|295094|295095|295099|295106|295113|295114|295130|295131|295137|295144|295147|295148|295160|295162|295166|295167|295168|295170|295177|295181|295183|295189|295190|424503|424504|452427|452434|452436|452648|452656|452660|452662|452741|452742|452983|452985|452987|519310|519353|519554|631453|631454|631455|631456|631457|681803|686429|691422|691423|691424|695204|828187|828188|859272|889037|889038|889039|889040|889041|889042|889043|889044|889045|889046|889047|889048|889049|889050|889051|889052|889053|889054|889055|889056|889057|889058|889059|889060|889061|889062|889063|889064|889065|889066|889067|889068|889069|889070|889071|889072|889073|889074|889075|889076|889077|889078|889079|889080|889081|889082|889083|889084|889085|889086|889087|889088|889089|889090|889091|889092|889093|889094|889095|891650|891651|891652|891653|923218|931962|931963|943571|970768|970769", "text": "Cataract 18" }, { - "baseId": "39612|39613|135311|135312|247698|247699|247700|255744|255745|325373|325377|325378|325386|325388|325390|325391|325393|325399|341512|343012|343015|343019|343027|343031|343039|429811|429813|620542|620876|875306|875307|875308|875309|875310|875311|875312|875313|875314|875315|875316|875317|875318|966042", + "upstreamId": "39612|39613|135311|135312|247698|247699|247700|255744|255745|325373|325377|325378|325386|325388|325390|325391|325393|325399|341512|343012|343015|343019|343027|343031|343039|429811|429813|620542|620876|875306|875307|875308|875309|875310|875311|875312|875313|875314|875315|875316|875317|875318|966042", "text": "Meier-Gorlin syndrome 3" }, { - "baseId": "39614|227500", + "upstreamId": "39614|227500", "text": "Dentin dysplasia, type I, with extreme microdontia and misshapen teeth" }, { - "baseId": "39615|133856|208092|236721|236722|404816", + "upstreamId": "39615|133856|208092|236721|236722|404816", "text": "Spastic paraplegia 52, autosomal recessive" }, { - "baseId": "39616|39617|39618|133849|133850|133851|373594|465261|622907", + "upstreamId": "39616|39617|39618|133849|133850|133851|373594|465261|622907", "text": "Spastic paraplegia 51, autosomal recessive" }, { - "baseId": "39619|39620|166193|167564|167565|167566|167567|167568|167569|167570|167572|167574|167575|206568|206709|215180|221075|238125|238126|238127|364370|390789|390791|404883|427625|427626|427629|446986|447057|447094|447100|447102|447141|515015|515043|515044|556842|556847|556980|556982|578704|578715|626641|626642|626643|626644|626645|626646|626647|626648|626649|626650|683272|683275|685548|816519|818839|822560|822561|822562|822563|920121|920122|921589|921590|929977|941393|964124|964642", + "upstreamId": "39619|39620|166193|167564|167565|167566|167567|167568|167569|167570|167572|167574|167575|206568|206709|215180|221075|238125|238126|238127|364370|390789|390791|404883|427625|427626|427629|446986|447057|447094|447100|447102|447141|515015|515043|515044|556842|556847|556980|556982|578704|578715|626641|626642|626643|626644|626645|626646|626647|626648|626649|626650|683272|683275|685548|816519|818839|822560|822561|822562|822563|920121|920122|921589|921590|929977|941393|964124|964642", "text": "Spastic paraplegia 47, autosomal recessive" }, { - "baseId": "39635|39636|48439", + "upstreamId": "39635|39636|48439", "text": "Focal facial dermal dysplasia 3, Setleis type" }, { - "baseId": "39638|39639|439997|439998|439999|440000|440001|508923", + "upstreamId": "39638|39639|439997|439998|439999|440000|440001|508923", "text": "Acne inversa, familial, 2" }, { - "baseId": "39640|39641|309343|309344|309348|309349|309355|309356|309360|309363|309365|309366|309373|309374|314031|314038|314049|314051|314056|314057|314058|319931|319940|319942|319953|319954|319962|319964|319966|319968|319972|319976|320458|320477|320478|320481|320484|320488|320492|751932|767613|865326|865327|865328|865329|865330|865331|865332|865333|865334|865335|865336|865337|865338|865339|865340|865341|865342|865343|919253|920277", + "upstreamId": "39640|39641|309343|309344|309348|309349|309355|309356|309360|309363|309365|309366|309373|309374|314031|314038|314049|314051|314056|314057|314058|319931|319940|319942|319953|319954|319962|319964|319966|319968|319972|319976|320458|320477|320478|320481|320484|320488|320492|751932|767613|865326|865327|865328|865329|865330|865331|865332|865333|865334|865335|865336|865337|865338|865339|865340|865341|865342|865343|919253|920277", "text": "Hypomagnesemia 6, renal" }, { - "baseId": "39647|39648|39649|241215|241216|241217|398390|398393|398398|398481|398483|398786|398928|398929|398932|461722|461724|461730|462036|462037|462352|462355|462356|526528|526529|526539|526546|526550|526585|526587|526806|526808|527096|527100|527102|527108|564940|564947|564949|566223|566226|566234|566236|567575|571048|571050|626211|640525|640526|640527|640528|640529|640530|640531|640532|640533|652248|684269|685295|685296|687832|687833|687835|687836|687837|687838|693120|791184|839173|839174|839175|839176|839177|839178|839179|839180|839181|839182|839183|839184|839185|839186|839187|839188|839189|851468|852648|926418|926419|926420|926421|926422|926423|926424|926425|926426|935862|935863|935864|935865|935866|935867|935868|935869|935870|935871|935872|935873|935874|947735|947736|947737|947738|947739|947740|947741|947742|947743|947744|947745|947746|947747|956719|956720|956721|965927", + "upstreamId": "39647|39648|39649|241215|241216|241217|398390|398393|398398|398481|398483|398786|398928|398929|398932|461722|461724|461730|462036|462037|462352|462355|462356|526528|526529|526539|526546|526550|526585|526587|526806|526808|527096|527100|527102|527108|564940|564947|564949|566223|566226|566234|566236|567575|571048|571050|626211|640525|640526|640527|640528|640529|640530|640531|640532|640533|652248|684269|685295|685296|687832|687833|687835|687836|687837|687838|693120|791184|839173|839174|839175|839176|839177|839178|839179|839180|839181|839182|839183|839184|839185|839186|839187|839188|839189|851468|852648|926418|926419|926420|926421|926422|926423|926424|926425|926426|935862|935863|935864|935865|935866|935867|935868|935869|935870|935871|935872|935873|935874|947735|947736|947737|947738|947739|947740|947741|947742|947743|947744|947745|947746|947747|956719|956720|956721|965927", "text": "Mosaic variegated aneuploidy syndrome 2" }, { - "baseId": "39650|39651", + "upstreamId": "39650|39651", "text": "Stuttering, familial persistent 2" }, { - "baseId": "39653|39654|39655|96881|106505|185944|185946|185947|185948|244133|244134|244135|246742|590322|682339|815882|919641|919642", + "upstreamId": "39653|39654|39655|96881|106505|185944|185946|185947|185948|244133|244134|244135|246742|590322|682339|815882|919641|919642", "text": "Spondylocostal dysostosis 5" }, { - "baseId": "39653|550633", + "upstreamId": "39653|550633", "text": "Spondylocostal dysostosis 4, autosomal recessive" }, { - "baseId": "39656|39657|142217|142218|142219|142220|142221|210890|287089|287090|287092|287098|287831|287833|287835|290246|290270|290289|290292|290650|290654|290655|290656|290659|406004|481431|481432|518651|650821|792731|885381|885382|885383|885384|885385|885386|885387|922899", + "upstreamId": "39656|39657|142217|142218|142219|142220|142221|210890|287089|287090|287092|287098|287831|287833|287835|290246|290270|290289|290292|290650|290654|290655|290656|290659|406004|481431|481432|518651|650821|792731|885381|885382|885383|885384|885385|885386|885387|922899", "text": "Multiple mitochondrial dysfunctions syndrome 1" }, { - "baseId": "39660|39661|177355|246965|251473|251474|251475|251476|251477|251478|251479|251480|251484|271921|293387|293391|293392|293399|293401|293402|293403|293407|293411|293413|294760|294761|294762|294789|294794|294795|294796|294799|298350|298351|298360|298363|298384|298399|298413|298420|298421|298423|298424|298427|298430|298431|298432|298433|298434|298437|298475|406435|428297|453405|453413|609539|698513|709360|781951|795582|799353|890632|890633|890634|890635|890636|890637|890638|890639|890640|890641|890642|890643|890644|890645|890646|890647|890648|890649|890650|890651|890652|890653|891790|891791|891792|918892|920203", + "upstreamId": "39660|39661|177355|246965|251473|251474|251475|251476|251477|251478|251479|251480|251484|271921|293387|293391|293392|293399|293401|293402|293403|293407|293411|293413|294760|294761|294762|294789|294794|294795|294796|294799|298350|298351|298360|298363|298384|298399|298413|298420|298421|298423|298424|298427|298430|298431|298432|298433|298434|298437|298475|406435|428297|453405|453413|609539|698513|709360|781951|795582|799353|890632|890633|890634|890635|890636|890637|890638|890639|890640|890641|890642|890643|890644|890645|890646|890647|890648|890649|890650|890651|890652|890653|891790|891791|891792|918892|920203", "text": "Cranioectodermal dysplasia 4" }, { - "baseId": "39660|39660|132652|132653|132655|132656|132656|132656|132657|132657|177355|187261|187262|192783|246965|251476|251477|251478|251479|251480|251482|251484|260901|264179|270911|270914|270916|271921|293387|293399|294789|294794|294797|298351|298359|298399|298421|298427|298431|298432|406435|428297|434039|440088|440088|440089|453405|453413|453414|453420|453529|519919|520178|549469|553585|559832|609538|609541|620163|632194|632195|632196|632197|679660|698513|698514|698515|698516|709360|730288|730289|734629|748938|759518|764459|775076|777509|781951|795582|799353|829124|829125|829126|829127|829128|829129|829130|829131|829132|829133|829134|829135|829136|829137|829138|829139|829140|829141|829142|851122|851502|851604|890634|890635|890649|891790|923506|932317|932318|932319|932320|932321|932322|932323|932324|932325|932326|932327|932328|939966|943978|943979|943980|943981|943982|943983|943984|943985|943986|943987|943988|943989|943990|943991|943992|953769|953770|953771|953772|953773|953774|953775|959725|960538|962702", + "upstreamId": "39660|39660|132652|132653|132655|132656|132656|132656|132657|132657|177355|187261|187262|192783|246965|251476|251477|251478|251479|251480|251482|251484|260901|264179|270911|270914|270916|271921|293387|293399|294789|294794|294797|298351|298359|298399|298421|298427|298431|298432|406435|428297|434039|440088|440088|440089|453405|453413|453414|453420|453529|519919|520178|549469|553585|559832|609538|609541|620163|632194|632195|632196|632197|679660|698513|698514|698515|698516|709360|730288|730289|734629|748938|759518|764459|775076|777509|781951|795582|799353|829124|829125|829126|829127|829128|829129|829130|829131|829132|829133|829134|829135|829136|829137|829138|829139|829140|829141|829142|851122|851502|851604|890634|890635|890649|891790|923506|932317|932318|932319|932320|932321|932322|932323|932324|932325|932326|932327|932328|939966|943978|943979|943980|943981|943982|943983|943984|943985|943986|943987|943988|943989|943990|943991|943992|953769|953770|953771|953772|953773|953774|953775|959725|960538|962702", "text": "Senior-Loken syndrome 8" }, { - "baseId": "39660|39660|39662|132656|132657|177355|177355|192783|246965|246965|251473|251474|251475|251476|251476|251477|251477|251478|251478|251479|251479|251480|251480|251482|251484|251484|264179|270911|270914|270916|271921|271921|293387|293387|293391|293392|293399|293399|293401|293402|293403|293407|293411|293413|294760|294761|294762|294789|294789|294794|294794|294795|294796|294797|294799|298350|298351|298351|298359|298360|298363|298384|298399|298399|298413|298420|298421|298421|298423|298424|298427|298427|298430|298431|298431|298432|298432|298433|298434|298437|298475|406435|406435|428297|428297|434039|440088|440089|453405|453405|453413|453413|453414|453420|453529|519919|520178|549469|553585|559832|609538|609539|609541|632194|632195|632196|632197|679660|698513|698513|698514|698515|698516|709360|709360|730288|730289|734629|748938|759518|764459|775076|777509|781951|781951|790470|790471|790472|795582|795582|799353|799353|829124|829125|829126|829127|829128|829129|829130|829131|829132|829133|829134|829135|829136|829137|829138|829139|829140|829141|829142|851122|851502|851604|890632|890633|890634|890634|890635|890635|890636|890637|890638|890639|890640|890641|890642|890643|890644|890645|890646|890647|890648|890649|890649|890650|890651|890652|890653|891790|891790|891791|891792|923506|932317|932318|932319|932320|932321|932322|932323|932324|932325|932326|932327|932328|939966|943978|943979|943980|943981|943982|943983|943984|943985|943986|943987|943988|943989|943990|943991|943992|953769|953770|953771|953772|953773|953774|953775|959725|960538", + "upstreamId": "39660|39660|39662|132656|132657|177355|177355|192783|246965|246965|251473|251474|251475|251476|251476|251477|251477|251478|251478|251479|251479|251480|251480|251482|251484|251484|264179|270911|270914|270916|271921|271921|293387|293387|293391|293392|293399|293399|293401|293402|293403|293407|293411|293413|294760|294761|294762|294789|294789|294794|294794|294795|294796|294797|294799|298350|298351|298351|298359|298360|298363|298384|298399|298399|298413|298420|298421|298421|298423|298424|298427|298427|298430|298431|298431|298432|298432|298433|298434|298437|298475|406435|406435|428297|428297|434039|440088|440089|453405|453405|453413|453413|453414|453420|453529|519919|520178|549469|553585|559832|609538|609539|609541|632194|632195|632196|632197|679660|698513|698513|698514|698515|698516|709360|709360|730288|730289|734629|748938|759518|764459|775076|777509|781951|781951|790470|790471|790472|795582|795582|799353|799353|829124|829125|829126|829127|829128|829129|829130|829131|829132|829133|829134|829135|829136|829137|829138|829139|829140|829141|829142|851122|851502|851604|890632|890633|890634|890634|890635|890635|890636|890637|890638|890639|890640|890641|890642|890643|890644|890645|890646|890647|890648|890649|890649|890650|890651|890652|890653|891790|891790|891791|891792|923506|932317|932318|932319|932320|932321|932322|932323|932324|932325|932326|932327|932328|939966|943978|943979|943980|943981|943982|943983|943984|943985|943986|943987|943988|943989|943990|943991|943992|953769|953770|953771|953772|953773|953774|953775|959725|960538", "text": "Asphyxiating thoracic dystrophy 5" }, { - "baseId": "39663|39664|132653|132654|132655|132656|440088|613995|906240|962700|962701", + "upstreamId": "39663|39664|132653|132654|132655|132656|440088|613995|906240|962700|962701", "text": "Nephronophthisis 13" }, { - "baseId": "39665|190173|190174|590649|590650", + "upstreamId": "39665|190173|190174|590649|590650", "text": "46,XX sex reversal 2" }, { - "baseId": "39666|39666|195021|268151|280332|282024|447763|491179|515893|557285|557287|627740|627741|732350|732351|746394|746395|761844|761845|761847|761848|761849|780663|780665|788736|823865|823866|823867|823868|864265|918628|930460|930461|930462|940630|941910|941911|952383|952384|952385|952386|977534", + "upstreamId": "39666|39666|195021|268151|280332|282024|447763|491179|515893|557285|557287|627740|627741|732350|732351|746394|746395|761844|761845|761847|761848|761849|780663|780665|788736|823865|823866|823867|823868|864265|918628|930460|930461|930462|940630|941910|941911|952383|952384|952385|952386|977534", "text": "Retinitis pigmentosa 59" }, { - "baseId": "39666|442804|481158|798469", + "upstreamId": "39666|442804|481158|798469", "text": "Developmental delay and seizures with or without movement abnormalities" }, { - "baseId": "39667|39668|39669|39670|39671|39672|190540|265794|266619|267431|268766|272464|464536|464788|464792|464793|512114|528584|539056|585538|588796|642984|642985|642986|642987|714311|714312|714313|714314|714315|714316|714317|927252|927253|927254|948779|957366|957367", + "upstreamId": "39667|39668|39669|39670|39671|39672|190540|265794|266619|267431|268766|272464|464536|464788|464792|464793|512114|528584|539056|585538|588796|642984|642985|642986|642987|714311|714312|714313|714314|714315|714316|714317|927252|927253|927254|948779|957366|957367", "text": "Temtamy preaxial brachydactyly syndrome" }, { - "baseId": "39673", + "upstreamId": "39673", "text": "Inflammatory bowel disease 19" }, { - "baseId": "39674", + "upstreamId": "39674", "text": "Psychomotor retardation, epilepsy, and craniofacial dysmorphism" }, { - "baseId": "39676", + "upstreamId": "39676", "text": "Hypotrichosis 3" }, { - "baseId": "39677|134297|134298|134299|134300|140727|194135|199988|199990|199993|206940|237339|250535|250541|265568|284537|284542|284559|285223|285225|285239|285240|287384|287386|287393|287394|287416|287418|287420|287646|450317|450597|541822|541824|541833|541877|557834|560817|655413|655415|686141|691025|691026|707996|719576|719577|743846|743850|747240|759194|762852|762855|762856|781139|825645|825650|977662|977663|977664|977665|977666|977667|977668|977669|977670|977671|977672|977673|977674|977675", + "upstreamId": "39677|134297|134298|134299|134300|140727|194135|199988|199990|199993|206940|237339|250535|250541|265568|284537|284542|284559|285223|285225|285239|285240|287384|287386|287393|287394|287416|287418|287420|287646|450317|450597|541822|541824|541833|541877|557834|560817|655413|655415|686141|691025|691026|707996|719576|719577|743846|743850|747240|759194|762852|762855|762856|781139|825645|825650|977662|977663|977664|977665|977666|977667|977668|977669|977670|977671|977672|977673|977674|977675", "text": "Carbamoyl-phosphate synthase I deficiency" }, { - "baseId": "39683|39684|39685|418799|553307|553308|553309|553310|553311|590445", + "upstreamId": "39683|39684|39685|418799|553307|553308|553309|553310|553311|590445", "text": "Microphthalmia with limb anomalies" }, { - "baseId": "39689|134611|790599", + "upstreamId": "39689|134611|790599", "text": "Progressive myoclonic epilepsy, X-linked" }, { - "baseId": "39689|39690|135477|135478|135584|195065|195792|196090|196091|205736|266036|271784|292676|426664|440828|440830|440831|452753|452754|452757|453115|453116|453118|453130|453456|453465|453483|519654|519656|519657|519661|519858|519859|519861|519882|559134|559666|559668|559670|561795|561799|563290|563297|631768|631769|631770|631771|631772|631773|631774|631775|631776|631777|631778|691479|709013|720621|734268|734269|748500|764140|764143|777390|781795|793041|828532|828533|828534|828535|828536|828537|828538|828539|828540|828541|828542|828543|828544|828545|828546|828547|889600|923336|923337|923338|923339|923340|923341|923342|923343|932076|932077|932078|932079|932080|943692|943693|943694|943695|943696|943697|943698|953583|953584|953585|953586", + "upstreamId": "39689|39690|135477|135478|135584|195065|195792|196090|196091|205736|266036|271784|292676|426664|440828|440830|440831|452753|452754|452757|453115|453116|453118|453130|453456|453465|453483|519654|519656|519657|519661|519858|519859|519861|519882|559134|559666|559668|559670|561795|561799|563290|563297|631768|631769|631770|631771|631772|631773|631774|631775|631776|631777|631778|691479|709013|720621|734268|734269|748500|764140|764143|777390|781795|793041|828532|828533|828534|828535|828536|828537|828538|828539|828540|828541|828542|828543|828544|828545|828546|828547|889600|923336|923337|923338|923339|923340|923341|923342|923343|932076|932077|932078|932079|932080|943692|943693|943694|943695|943696|943697|943698|953583|953584|953585|953586", "text": "Epilepsy, progressive myoclonic 5" }, { - "baseId": "39696|344030|344036|578569|622469|805033|805034|882364|919885|919886|919887|919888|919889|919890|919891|961349", + "upstreamId": "39696|344030|344036|578569|622469|805033|805034|882364|919885|919886|919887|919888|919889|919890|919891|961349", "text": "Peripheral neuropathy, myopathy, hoarseness, and hearing loss" }, { - "baseId": "39697", + "upstreamId": "39697", "text": "SCOTT SYNDROME" }, { - "baseId": "39698|362439|789787|800380", + "upstreamId": "39698|362439|789787|800380", "text": "Ovarian dysgenesis 3" }, { - "baseId": "39699|39700|39701|39702|39703|302860|302862|302866|302868|302872|302874|302877|302881|302883|302889|302890|302897|302901|302902|302907|302908|302915|302917|302927|302932|302936|302937|306199|306200|306201|306202|306210|306219|306221|306224|306225|306226|306230|306232|306233|306235|306236|306242|306243|306244|306249|310938|310939|310948|310953|310956|310968|310970|310972|310974|310977|310980|310982|310984|311186|311187|311188|311190|311194|311195|311197|311198|311199|311200|311214|311215|311216|311236|311238|311241|311242|369441|389799|550165|578458|620262|700040|710978|898028|898029|898030|898031|898032|898033|898034|898035|898036|898037|898038|898039|898040|898041|898042|898043|898044|898045|898046|898047|898048|898049|898050|898051|898052|898053|898054|898055|898056|898057|898058|898059|898060|898061|898062|900359|900360", + "upstreamId": "39699|39700|39701|39702|39703|302860|302862|302866|302868|302872|302874|302877|302881|302883|302889|302890|302897|302901|302902|302907|302908|302915|302917|302927|302932|302936|302937|306199|306200|306201|306202|306210|306219|306221|306224|306225|306226|306230|306232|306233|306235|306236|306242|306243|306244|306249|310938|310939|310948|310953|310956|310968|310970|310972|310974|310977|310980|310982|310984|311186|311187|311188|311190|311194|311195|311197|311198|311199|311200|311214|311215|311216|311236|311238|311241|311242|369441|389799|550165|578458|620262|700040|710978|898028|898029|898030|898031|898032|898033|898034|898035|898036|898037|898038|898039|898040|898041|898042|898043|898044|898045|898046|898047|898048|898049|898050|898051|898052|898053|898054|898055|898056|898057|898058|898059|898060|898061|898062|900359|900360", "text": "Diaphanospondylodysostosis" }, { - "baseId": "39704|39705|39706|39707|101649|101650|190887|254031|254032|254033|254034|254035|254036|254037|254039|254043|254044|254045|254046|254047|254049|254052|254053|254056|313128|313133|313135|313137|313141|313143|313146|313150|313160|313163|313164|313167|313168|313172|313178|313179|313182|313183|313184|313193|313194|313195|319179|319184|319185|319186|319188|319189|319198|319205|319212|319214|319243|319253|319259|319262|319263|319265|319266|319271|319272|319273|319279|319280|319288|319289|319294|319313|319316|319317|319321|319322|319329|319330|319333|319334|325328|325329|325340|325350|325356|325359|325385|325392|325402|325403|325406|325411|325417|325418|325420|325422|325435|325436|325440|325441|325451|325452|325458|325462|325463|325471|325472|325476|326193|326213|326221|326230|326231|326234|326239|326240|326250|326254|326260|326261|326262|326330|326332|326336|326337|326342|326343|326353|326367|326371|326385|326393|326397|326398|326400|326402|326403|326404|326409|326411|408301|525984|526130|526482|620392|639817|687719|692953|692955|692956|692958|692960|695498|701650|701651|737844|752525|783907|801875|838106|838107|838108|867477|867478|867479|867480|867481|867482|867483|867484|867485|867486|867487|867488|867489|867490|867491|867492|867493|867494|867495|867496|867497|867498|867499|867500|867501|867502|867503|867504|867505|867506|867507|867508|867509|867510|867511|867512|867513|867514|867515|867516|867517|867518|867519|867520|867521|867522|867523|867524|867525|867526|867527|867528|867529|867530|867531|867532|867533|867534|867535|868616|868617|868618|919335|919336|919337|919338|926152|956425", + "upstreamId": "39704|39705|39706|39707|101649|101650|190887|254031|254032|254033|254034|254035|254036|254037|254039|254043|254044|254045|254046|254047|254049|254052|254053|254056|313128|313133|313135|313137|313141|313143|313146|313150|313160|313163|313164|313167|313168|313172|313178|313179|313182|313183|313184|313193|313194|313195|319179|319184|319185|319186|319188|319189|319198|319205|319212|319214|319243|319253|319259|319262|319263|319265|319266|319271|319272|319273|319279|319280|319288|319289|319294|319313|319316|319317|319321|319322|319329|319330|319333|319334|325328|325329|325340|325350|325356|325359|325385|325392|325402|325403|325406|325411|325417|325418|325420|325422|325435|325436|325440|325441|325451|325452|325458|325462|325463|325471|325472|325476|326193|326213|326221|326230|326231|326234|326239|326240|326250|326254|326260|326261|326262|326330|326332|326336|326337|326342|326343|326353|326367|326371|326385|326393|326397|326398|326400|326402|326403|326404|326409|326411|408301|525984|526130|526482|620392|639817|687719|692953|692955|692956|692958|692960|695498|701650|701651|737844|752525|783907|801875|838106|838107|838108|867477|867478|867479|867480|867481|867482|867483|867484|867485|867486|867487|867488|867489|867490|867491|867492|867493|867494|867495|867496|867497|867498|867499|867500|867501|867502|867503|867504|867505|867506|867507|867508|867509|867510|867511|867512|867513|867514|867515|867516|867517|867518|867519|867520|867521|867522|867523|867524|867525|867526|867527|867528|867529|867530|867531|867532|867533|867534|867535|868616|868617|868618|919335|919336|919337|919338|926152|956425", "text": "Holoprosencephaly 11" }, { - "baseId": "39710|39711|39712|39713|39714|39715|176585|497313|609025|615828", + "upstreamId": "39710|39711|39712|39713|39714|39715|176585|497313|609025|615828", "text": "Deafness, autosomal recessive 15" }, { - "baseId": "39719|39720|39721|39722|39724|191603|191843|192154|193798|195033|215396|215773|253486|253487|253488|253489|253490|253491|253492|253493|253494|253495|253496|253497|253498|265787|269506|270661|270789|273529|273864|307776|307777|307778|307780|307784|307785|307789|307791|307792|307794|307796|307797|307802|307803|307804|307811|307813|307815|307816|307817|307818|307822|307825|307828|307829|307831|307833|307834|307835|307836|307840|307841|307846|307856|307857|307859|307866|307868|307872|307875|312015|312016|312017|312028|312029|312034|312050|312051|312052|312062|312064|312071|312073|312100|312105|312106|312107|312108|312109|312122|312123|312141|312142|312147|312148|312154|312163|312164|312165|317697|317702|317705|317706|317717|317719|317723|317732|317736|317738|317740|317741|317742|317746|317750|317760|317771|317772|317775|317777|317781|317782|317784|317785|317786|317787|317789|317790|317800|317812|317813|317815|317824|317825|317830|317834|317838|317841|317843|317845|317846|317847|318175|318188|318193|318196|318200|318203|318205|318209|318225|318228|318253|318255|318265|318266|318270|318272|318275|318279|318281|318290|318291|318292|318293|318299|318302|318303|318313|318317|318323|318337|318345|318348|318350|318352|413788|489126|619923|700935|711907|723507|723509|723512|737074|737075|737079|737082|744368|751630|783387|783389|901596|901597|901598|901599|901600|901601|901602|901603|901604|901605|901606|901607|901608|901609|901610|901611|901612|901613|901614|901615|901616|901617|901618|901619|901620|901621|901622|901623|901624|901625|901626|901627|901628|901629|901630|901631|901632|901633|901634|901635|901636|901637|901638|901639|901640|901641|901642|901643|901644|901645|901646|901647|901648|901649|901650|901651|901652|901653|901654|901655|901656|901657|901658|901659|901660|901661|901662|901663|901664|901665|901666|901667|901668|901669|901670|901671|901672|901673|901674|901675|901676|901677|903359|903360|903361|903362|903363|903364|903365|903366|903367|903368|903369", + "upstreamId": "39719|39720|39721|39722|39724|191603|191843|192154|193798|195033|215396|215773|253486|253487|253488|253489|253490|253491|253492|253493|253494|253495|253496|253497|253498|265787|269506|270661|270789|273529|273864|307776|307777|307778|307780|307784|307785|307789|307791|307792|307794|307796|307797|307802|307803|307804|307811|307813|307815|307816|307817|307818|307822|307825|307828|307829|307831|307833|307834|307835|307836|307840|307841|307846|307856|307857|307859|307866|307868|307872|307875|312015|312016|312017|312028|312029|312034|312050|312051|312052|312062|312064|312071|312073|312100|312105|312106|312107|312108|312109|312122|312123|312141|312142|312147|312148|312154|312163|312164|312165|317697|317702|317705|317706|317717|317719|317723|317732|317736|317738|317740|317741|317742|317746|317750|317760|317771|317772|317775|317777|317781|317782|317784|317785|317786|317787|317789|317790|317800|317812|317813|317815|317824|317825|317830|317834|317838|317841|317843|317845|317846|317847|318175|318188|318193|318196|318200|318203|318205|318209|318225|318228|318253|318255|318265|318266|318270|318272|318275|318279|318281|318290|318291|318292|318293|318299|318302|318303|318313|318317|318323|318337|318345|318348|318350|318352|413788|489126|619923|700935|711907|723507|723509|723512|737074|737075|737079|737082|744368|751630|783387|783389|901596|901597|901598|901599|901600|901601|901602|901603|901604|901605|901606|901607|901608|901609|901610|901611|901612|901613|901614|901615|901616|901617|901618|901619|901620|901621|901622|901623|901624|901625|901626|901627|901628|901629|901630|901631|901632|901633|901634|901635|901636|901637|901638|901639|901640|901641|901642|901643|901644|901645|901646|901647|901648|901649|901650|901651|901652|901653|901654|901655|901656|901657|901658|901659|901660|901661|901662|901663|901664|901665|901666|901667|901668|901669|901670|901671|901672|901673|901674|901675|901676|901677|903359|903360|903361|903362|903363|903364|903365|903366|903367|903368|903369", "text": "Oculotrichoanal syndrome" }, { - "baseId": "39723|39724|413788|539021|624854", + "upstreamId": "39723|39724|413788|539021|624854", "text": "Trigonocephaly 2" }, { - "baseId": "39724|136471|136486|223621|223643|223651|263398|485734", + "upstreamId": "39724|136471|136486|223621|223643|223651|263398|485734", "text": "Rieger syndrome" }, { - "baseId": "39725|39726|39727|39728|39729|39730|335393|335394|335400|335405|335406|335408|335416|335418|335423|335431|335435|335446|345219|345221|345223|345225|345230|345231|345232|345233|345234|345236|345237|345240|345246|345247|345248|345249|345252|345253|345255|349954|349955|349960|349961|349963|349964|349967|349970|349973|349975|349978|350969|350970|350972|350974|350976|350979|350980|350984|791983|798765|802231|886087|886088|886089|886090|886091|886092|886093|886094|886095|886096|886097|886098|886099|886100|886101|886102|886103|886104|886105|886106|886107|886108|886109|886110", + "upstreamId": "39725|39726|39727|39728|39729|39730|335393|335394|335400|335405|335406|335408|335416|335418|335423|335431|335435|335446|345219|345221|345223|345225|345230|345231|345232|345233|345234|345236|345237|345240|345246|345247|345248|345249|345252|345253|345255|349954|349955|349960|349961|349963|349964|349967|349970|349973|349975|349978|350969|350970|350972|350974|350976|350979|350980|350984|791983|798765|802231|886087|886088|886089|886090|886091|886092|886093|886094|886095|886096|886097|886098|886099|886100|886101|886102|886103|886104|886105|886106|886107|886108|886109|886110", "text": "Multicentric carpo-tarsal osteolysis with or without nephropathy" }, { - "baseId": "39731", + "upstreamId": "39731", "text": "Body mass index quantitative trait locus 10" }, { - "baseId": "39739|106652|106653|106654|106655|135519|135520|135521|135521|135523|135523|135524|135524|135525|135526|205130|206757|206757|206758|206758|206761|206762|206762|237363|237363|270346|271432|271432|271433|279279|279280|279285|279300|279308|279309|279310|279311|279318|279318|279324|279324|279325|279329|279329|279330|279490|279496|279497|279498|279502|279506|279507|279508|279508|279512|279512|279536|279545|279545|279549|280797|280798|280805|280809|280810|280822|280823|280825|280825|280830|280835|280837|280839|280846|280847|280850|280851|280855|280863|280872|280876|280877|280887|280887|280897|280909|280913|280924|280924|280939|280940|280956|280957|364904|364905|425336|427709|427712|447500|447631|447634|447736|447738|447738|447743|447746|498243|515542|515555|556790|557153|558347|558347|627378|627379|627380|650679|690489|690489|690490|696474|696475|696475|696477|777096|780569|801776|823482|823483|823484|863719|863720|863721|863722|863723|863724|863725|863726|863727|863728|863729|863730|863731|863732|863733|863734|863735|863736|863737|863738|863739|863740|863741|863742|863743|863744|863745|863746|863747|863748|863749|863750|863751|863752|863753|863754|863755|863756|863757|863758|863759|865128|865129|865130|921848|930328|930329|940619|941768|941769|941770", + "upstreamId": "39739|106652|106653|106654|106655|135519|135520|135521|135521|135523|135523|135524|135524|135525|135526|205130|206757|206757|206758|206758|206761|206762|206762|237363|237363|270346|271432|271432|271433|279279|279280|279285|279300|279308|279309|279310|279311|279318|279318|279324|279324|279325|279329|279329|279330|279490|279496|279497|279498|279502|279506|279507|279508|279508|279512|279512|279536|279545|279545|279549|280797|280798|280805|280809|280810|280822|280823|280825|280825|280830|280835|280837|280839|280846|280847|280850|280851|280855|280863|280872|280876|280877|280887|280887|280897|280909|280913|280924|280924|280939|280940|280956|280957|364904|364905|425336|427709|427712|447500|447631|447634|447736|447738|447738|447743|447746|498243|515542|515555|556790|557153|558347|558347|627378|627379|627380|650679|690489|690489|690490|696474|696475|696475|696477|777096|780569|801776|823482|823483|823484|863719|863720|863721|863722|863723|863724|863725|863726|863727|863728|863729|863730|863731|863732|863733|863734|863735|863736|863737|863738|863739|863740|863741|863742|863743|863744|863745|863746|863747|863748|863749|863750|863751|863752|863753|863754|863755|863756|863757|863758|863759|865128|865129|865130|921848|930328|930329|940619|941768|941769|941770", "text": "Warburg micro syndrome 2" }, { - "baseId": "39742|39743|204984|208454|430064|469373|469783|532238|532440|574759|647284|647285|715990|776619|846896|846897|846898|846899|928719|928720|928721|938451|938452|940458|950534|950535|958472|958473", + "upstreamId": "39742|39743|204984|208454|430064|469373|469783|532238|532440|574759|647284|647285|715990|776619|846896|846897|846898|846899|928719|928720|928721|938451|938452|940458|950534|950535|958472|958473", "text": "Microcephaly, epilepsy, and diabetes syndrome" }, { - "baseId": "39744|39745|39746|45283|45287|142040|142041|142043|142044|142045|142050|142056|142057|142059|142063|142133|142134|142135|169185|169187|169188|169191|169192|169192|169194|190107|197845|197869|197871|197875|197877|197879|208245|208245|255476|267763|271568|271568|272268|324357|324358|324368|324372|324381|324385|324391|324429|324435|324455|324464|333894|333896|333906|333918|333920|333921|333964|333965|333966|333969|333978|333980|333982|333983|333984|333987|340665|340672|340673|340679|340680|340683|340685|340687|340692|340721|340724|340727|340730|340731|342053|342059|342063|342072|342073|342074|342081|342085|342098|342107|342108|342116|342135|342137|342138|342139|342140|342151|342155|342156|342159|342160|342164|342168|373941|429772|429774|429774|614127|620536|788894|874751|874752|874753|874754|874755|874757|874758|874759|874760|874771|874773|874774|874775|874776|874777|874778|874779|874780|874781|874782|874783|874784|874785|874786|874787|874788|874789|876626", + "upstreamId": "39744|39745|39746|45283|45287|142040|142041|142043|142044|142045|142050|142056|142057|142059|142063|142133|142134|142135|169185|169187|169188|169191|169192|169192|169194|190107|197845|197869|197871|197875|197877|197879|208245|208245|255476|267763|271568|271568|272268|324357|324358|324368|324372|324381|324385|324391|324429|324435|324455|324464|333894|333896|333906|333918|333920|333921|333964|333965|333966|333969|333978|333980|333982|333983|333984|333987|340665|340672|340673|340679|340680|340683|340685|340687|340692|340721|340724|340727|340730|340731|342053|342059|342063|342072|342073|342074|342081|342085|342098|342107|342108|342116|342135|342137|342138|342139|342140|342151|342155|342156|342159|342160|342164|342168|373941|429772|429774|429774|614127|620536|788894|874751|874752|874753|874754|874755|874757|874758|874759|874760|874771|874773|874774|874775|874776|874777|874778|874779|874780|874781|874782|874783|874784|874785|874786|874787|874788|874789|876626", "text": "Lissencephaly 4" }, { - "baseId": "39747", + "upstreamId": "39747", "text": "Amyloidosis, primary localized cutaneous, 2" }, { - "baseId": "39748|191078|194482|265506|268417|270851|305785|309776|309787|315028|315031|315179|315180|380289|407449|426674|428861|438397|438397|457948|457951|458520|458526|458595|458993|458997|523697|524006|524009|524009|524015|524280|524288|563056|568068|568083|568086|588769|637372|637373|637374|637375|637376|637377|637378|637379|637380|637381|637382|637383|700637|723173|766887|819978|819979|819980|819981|835022|835023|835024|835025|851700|852154|925254|925255|925256|925257|934412|934413|934414|934415|946172|946173|946174|955495|955496|955497|955498|959901", + "upstreamId": "39748|191078|194482|265506|268417|270851|305785|309776|309787|315028|315031|315179|315180|380289|407449|426674|428861|438397|438397|457948|457951|458520|458526|458595|458993|458997|523697|524006|524009|524009|524015|524280|524288|563056|568068|568083|568086|588769|637372|637373|637374|637375|637376|637377|637378|637379|637380|637381|637382|637383|700637|723173|766887|819978|819979|819980|819981|835022|835023|835024|835025|851700|852154|925254|925255|925256|925257|934412|934413|934414|934415|946172|946173|946174|955495|955496|955497|955498|959901", "text": "Febrile seizures, familial, 11" }, { - "baseId": "39748|88281|134293|134294|134295|189029|194482|265506|268417|270851|305779|305785|305787|309773|309775|309776|309787|309796|309797|309802|315026|315028|315031|315032|315156|315169|315179|315180|315183|315184|380289|380290|430963|438397|438397|458595|524009|524280|637382|700636|899964|899965|899966|899967|899968|899969|899970|899971|899972|899973|899974|899975|900512", + "upstreamId": "39748|88281|134293|134294|134295|189029|194482|265506|268417|270851|305779|305785|305787|309773|309775|309776|309787|309796|309797|309802|315026|315028|315031|315032|315156|315169|315179|315180|315183|315184|380289|380290|430963|438397|438397|458595|524009|524280|637382|700636|899964|899965|899966|899967|899968|899969|899970|899971|899972|899973|899974|899975|900512", "text": "Epilepsy, familial temporal lobe, 5" }, { - "baseId": "39753|39754|39755|496287|496724|553254|553255|615788|683136", + "upstreamId": "39753|39754|39755|496287|496724|553254|553255|615788|683136", "text": "Deafness, autosomal recessive 42" }, { - "baseId": "39760|99438|168891|168893|168894|168895|168897|181433|194340|195924|207936|223671|254410|316026|316027|316028|316032|323289|323290|323292|323293|329378|330555|330564|359929|461608|620428|622897|622898|656105|684285|818295|869272|869273|869274|869275|869276|869277|869278|869279|869280|869281|869282", + "upstreamId": "39760|99438|168891|168893|168894|168895|168897|181433|194340|195924|207936|223671|254410|316026|316027|316028|316032|323289|323290|323292|323293|329378|330555|330564|359929|461608|620428|622897|622898|656105|684285|818295|869272|869273|869274|869275|869276|869277|869278|869279|869280|869281|869282", "text": "Joubert syndrome 13" }, { - "baseId": "39764|153815|153816|153817|237630", + "upstreamId": "39764|153815|153816|153817|237630", "text": "Persistent hyperplastic primary vitreous, autosomal recessive" }, { - "baseId": "39766|172105|172106|172107|172108|172109|208802|430568|430587|486777|508942|508943|508944|508945|512971|512972|622485|681833|681834|792083|799021|939350|966020|966021|966022|980972", + "upstreamId": "39766|172105|172106|172107|172108|172109|208802|430568|430587|486777|508942|508943|508944|508945|512971|512972|622485|681833|681834|792083|799021|939350|966020|966021|966022|980972", "text": "Microcephaly and chorioretinopathy, autosomal recessive, 1" }, { - "baseId": "39767", + "upstreamId": "39767", "text": "Mental retardation, autosomal recessive 14" }, { - "baseId": "39768|39769|39770|39771|39772|200982|227298|300242|300247|300248|302996|302997|302998|302999|303004|303005|307453|307456|307459|307682|362145|538997|622977|622979|622982|622986|735682|765702|896359|896360|896361|896362|896363|896364|896365|896366|896367|896368|896369|896370", + "upstreamId": "39768|39769|39770|39771|39772|200982|227298|300242|300247|300248|302996|302997|302998|302999|303004|303005|307453|307456|307459|307682|362145|538997|622977|622979|622982|622986|735682|765702|896359|896360|896361|896362|896363|896364|896365|896366|896367|896368|896369|896370", "text": "Treacher Collins syndrome 3" }, { - "baseId": "39768|39772|200977|200978|200979|200980|200981|200982|207417|227298|264263|264293|269895|307675|362145|362145|362146|513282|538997|622974|622975|622976|622977|622978|622979|622980|622981|622982|622982|622983|622984|622985|622986|622987|622988", + "upstreamId": "39768|39772|200977|200978|200979|200980|200981|200982|207417|227298|264263|264293|269895|307675|362145|362145|362146|513282|538997|622974|622975|622976|622977|622978|622979|622980|622981|622982|622982|622983|622984|622985|622986|622987|622988", "text": "Leukodystrophy, hypomyelinating, 11" }, { - "baseId": "39773|176085|222386|230536|241874|241875|255045|330332|399596|399716|400252|400253|463472|464471|528712|566608|642675|642676|642677|642678|652421|652875|730950|936705|940312", + "upstreamId": "39773|176085|222386|230536|241874|241875|255045|330332|399596|399716|400252|400253|463472|464471|528712|566608|642675|642676|642677|642678|652421|652875|730950|936705|940312", "text": "Ciliary dyskinesia, primary, 16" }, { - "baseId": "39779|172136|227466|538358|623274", + "upstreamId": "39779|172136|227466|538358|623274", "text": "Myopia, high, with cataract and vitreoretinal degeneration" }, { - "baseId": "39780|39781|39782|39784|39785|39786|39787|39788|140021|140022|205750|205751|211298|211299|211299|211306|211307|211307|211309|211313|211313|302005|302006|302009|302013|302014|302016|302021|302022|305180|305185|305194|305195|305198|305202|305203|305204|309887|309889|309890|309893|309893|309896|309896|309901|309916|309916|309917|309918|309923|309924|309925|309926|309929|309931|309936|309948|309964|309970|310017|310025|368952|369244|369512|456416|457000|481332|481333|501886|514551|522605|608809|635793|692166|692166|695352|722363|788812|792767|861593|897558|897559|897560|897561|897562|897563|897564|897565|897566|897567|897568|897569|897570|897571|897572|897573|897574|897575|897576|897577|897578|897579|900320|900321|924716|975666|975667", + "upstreamId": "39780|39781|39782|39784|39785|39786|39787|39788|140021|140022|205750|205751|211298|211299|211299|211306|211307|211307|211309|211313|211313|302005|302006|302009|302013|302014|302016|302021|302022|305180|305185|305194|305195|305198|305202|305203|305204|309887|309889|309890|309893|309893|309896|309896|309901|309916|309916|309917|309918|309923|309924|309925|309926|309929|309931|309936|309948|309964|309970|310017|310025|368952|369244|369512|456416|457000|481332|481333|501886|514551|522605|608809|635793|692166|692166|695352|722363|788812|792767|861593|897558|897559|897560|897561|897562|897563|897564|897565|897566|897567|897568|897569|897570|897571|897572|897573|897574|897575|897576|897577|897578|897579|900320|900321|924716|975666|975667", "text": "Sengers syndrome" }, { - "baseId": "39792|39793|39794|98153|98154|246951|513539|513540|918847|918848|961767", + "upstreamId": "39792|39793|39794|98153|98154|246951|513539|513540|918847|918848|961767", "text": "D-Glyceric aciduria" }, { - "baseId": "39795|39796|39797|39799|39801|134154|237292|252622|269511|301846|301867|301869|301878|301888|301889|301891|301900|301903|301908|301912|301913|301919|301922|301926|301927|301928|301933|301934|301935|301936|301944|305030|305033|305034|305037|305038|305049|305053|305054|305055|309684|309692|309694|309695|309696|309699|309700|309701|309708|309711|309720|309721|309731|309740|309846|309850|309851|309852|309856|309859|309860|309861|309862|309863|309864|309865|309871|368934|370844|425732|456415|502216|523062|566495|582788|620250|620251|635786|679755|692159|750428|779424|782794|833143|833144|833145|833146|833147|833148|852068|897422|897423|897424|897425|897426|897427|897428|897429|897430|897431|897432|897433|897434|897435|897436|897437|897438|897439|897440|897441|897442|897443|897444|897445|897446|897447|897448|897449|897450|897451|897452|897453|897454|897455|897456|897457|897458|897459|897460|897461|897462|897463|897464|897465|897466|897467|897468|897469|897470|897471|897472|897473|897474|897475|897476|897477|897478|900313|924704|924705|933690|933691|933692|933693|945431|945432|945433|945434|945435|945436|945437|945438|945439|955061|959836|959837", + "upstreamId": "39795|39796|39797|39799|39801|134154|237292|252622|269511|301846|301867|301869|301878|301888|301889|301891|301900|301903|301908|301912|301913|301919|301922|301926|301927|301928|301933|301934|301935|301936|301944|305030|305033|305034|305037|305038|305049|305053|305054|305055|309684|309692|309694|309695|309696|309699|309700|309701|309708|309711|309720|309721|309731|309740|309846|309850|309851|309852|309856|309859|309860|309861|309862|309863|309864|309865|309871|368934|370844|425732|456415|502216|523062|566495|582788|620250|620251|635786|679755|692159|750428|779424|782794|833143|833144|833145|833146|833147|833148|852068|897422|897423|897424|897425|897426|897427|897428|897429|897430|897431|897432|897433|897434|897435|897436|897437|897438|897439|897440|897441|897442|897443|897444|897445|897446|897447|897448|897449|897450|897451|897452|897453|897454|897455|897456|897457|897458|897459|897460|897461|897462|897463|897464|897465|897466|897467|897468|897469|897470|897471|897472|897473|897474|897475|897476|897477|897478|900313|924704|924705|933690|933691|933692|933693|945431|945432|945433|945434|945435|945436|945437|945438|945439|955061|959836|959837", "text": "Joubert syndrome 15" }, { - "baseId": "39798|39858", + "upstreamId": "39798|39858", "text": "Joubert syndrome 12/15, digenic" }, { - "baseId": "39799|237292|301935|301936|970299|970300|970301|970302", + "upstreamId": "39799|237292|301935|301936|970299|970300|970301|970302", "text": "Familial Autism Spectrum Disorder" }, { - "baseId": "39806", + "upstreamId": "39806", "text": "N-acetylaspartate deficiency" }, { - "baseId": "39814|39815|195743|490784|514230|626133|918792", + "upstreamId": "39814|39815|195743|490784|514230|626133|918792", "text": "Adams-Oliver syndrome 1" }, { - "baseId": "39816|39817|49853|165508|200697|205258|231715|231716|231717|231719|240443|240444|240445|240446|244017|244538|244539|244541|244542|244543|263456|272799|306822|306826|306829|306833|306840|310978|310981|310983|310994|310995|310996|311000|311002|311003|311005|311010|316571|316589|316590|316591|316598|316601|316602|316603|316608|316611|316612|316613|316614|316621|316624|316850|316861|316870|316871|316894|316898|369704|369710|369722|370196|370463|372107|372108|396391|396393|396675|396677|396678|396760|396797|396801|396811|396813|397024|397029|407530|444345|444346|458208|458210|458214|458215|458216|458217|458747|458750|458756|458757|458760|458829|458831|458836|458838|459250|459254|459260|459264|502116|502592|502875|511782|523906|523911|523921|523927|523936|523937|524209|524214|524219|524220|524226|524473|524474|524476|524479|524481|524532|524534|524535|524538|524542|524544|524548|524551|524556|524558|524561|562703|562705|562706|562708|562710|562712|562717|563390|563394|563404|565440|565445|565446|565448|565453|565454|565459|565467|565473|565478|565480|565484|568433|568447|568450|568461|568465|576252|590030|637647|637648|637649|637650|637651|637652|637653|637654|637655|637656|637657|637658|637659|637660|637661|637662|637663|637664|637665|637666|637667|637668|637669|637670|637671|637672|651817|651893|651898|652096|655882|683023|684039|684040|684041|687354|687355|687357|687359|687360|687361|692572|695412|711763|767096|767098|767099|775473|783264|783265|783266|787775|790833|796215|799563|820047|820048|820049|835436|835437|835438|835439|835440|835441|835442|835443|835444|835445|835446|835447|835448|835449|835450|835451|835452|835453|835454|835455|835456|852469|852470|852475|901083|901084|901085|901086|901087|901088|901089|901090|901091|901092|901093|901094|901095|901096|901097|901098|903314|903315|903316|919184|920261|925349|925350|925351|925352|925353|925354|925355|925356|925357|925358|925359|925360|925361|934529|934530|934531|934532|934533|940922|946341|946342|946343|946344|946345|946346|946347|955676|955677|959908", + "upstreamId": "39816|39817|49853|165508|200697|205258|231715|231716|231717|231719|240443|240444|240445|240446|244017|244538|244539|244541|244542|244543|263456|272799|306822|306826|306829|306833|306840|310978|310981|310983|310994|310995|310996|311000|311002|311003|311005|311010|316571|316589|316590|316591|316598|316601|316602|316603|316608|316611|316612|316613|316614|316621|316624|316850|316861|316870|316871|316894|316898|369704|369710|369722|370196|370463|372107|372108|396391|396393|396675|396677|396678|396760|396797|396801|396811|396813|397024|397029|407530|444345|444346|458208|458210|458214|458215|458216|458217|458747|458750|458756|458757|458760|458829|458831|458836|458838|459250|459254|459260|459264|502116|502592|502875|511782|523906|523911|523921|523927|523936|523937|524209|524214|524219|524220|524226|524473|524474|524476|524479|524481|524532|524534|524535|524538|524542|524544|524548|524551|524556|524558|524561|562703|562705|562706|562708|562710|562712|562717|563390|563394|563404|565440|565445|565446|565448|565453|565454|565459|565467|565473|565478|565480|565484|568433|568447|568450|568461|568465|576252|590030|637647|637648|637649|637650|637651|637652|637653|637654|637655|637656|637657|637658|637659|637660|637661|637662|637663|637664|637665|637666|637667|637668|637669|637670|637671|637672|651817|651893|651898|652096|655882|683023|684039|684040|684041|687354|687355|687357|687359|687360|687361|692572|695412|711763|767096|767098|767099|775473|783264|783265|783266|787775|790833|796215|799563|820047|820048|820049|835436|835437|835438|835439|835440|835441|835442|835443|835444|835445|835446|835447|835448|835449|835450|835451|835452|835453|835454|835455|835456|852469|852470|852475|901083|901084|901085|901086|901087|901088|901089|901090|901091|901092|901093|901094|901095|901096|901097|901098|903314|903315|903316|919184|920261|925349|925350|925351|925352|925353|925354|925355|925356|925357|925358|925359|925360|925361|934529|934530|934531|934532|934533|940922|946341|946342|946343|946344|946345|946346|946347|955676|955677|959908", "text": "Charcot-Marie-Tooth disease type 2P" }, { - "baseId": "39818|135979|206755", + "upstreamId": "39818|135979|206755", "text": "Spinocerebellar ataxia, autosomal recessive 11" }, { - "baseId": "39836|44147|44148|44149|44150|44151|143267|143268|143269|578552|861163", + "upstreamId": "39836|44147|44148|44149|44150|44151|143267|143268|143269|578552|861163", "text": "Amelogenesis imperfecta type 1G" }, { - "baseId": "39842|39843|39844|39845|39846|46862|46965|46966|46967|46968|46969|279258|279262|279263|279268|279270|279277|279477|279483|279485|280782|280783|280787|280788|280789|280791|280793|280794|280820|280821|280831|280832|280833|280834|280838|280841|280843|362420|362421|362422|362423|863702|863703|863704|863705|863706|863707|863708|863709|863710|863711|863712|863713|863714|863715|863716|863717|863718|865127", + "upstreamId": "39842|39843|39844|39845|39846|46862|46965|46966|46967|46968|46969|279258|279262|279263|279268|279270|279277|279477|279483|279485|280782|280783|280787|280788|280789|280791|280793|280794|280820|280821|280831|280832|280833|280834|280838|280841|280843|362420|362421|362422|362423|863702|863703|863704|863705|863706|863707|863708|863709|863710|863711|863712|863713|863714|863715|863716|863717|863718|865127", "text": "Hypermanganesemia with dystonia 1" }, { - "baseId": "39847|39848|39849|205298|205782|208317|214453|214544|225887|243899|244063|245211|260139|260140|260852|264747|264749|264823|264834|264988|361224|362386|362427|362428|363822|363862|374759|375638|409796|409797|415528|422128|424663|424664|429885|429886|429890|434655|434772|438585|439224|439351|441931|441932|441933|445668|466885|466891|481321|482111|482112|492706|512246|512868|514705|530704|535707|536193|536480|536920|538460|538461|550370|550627|552191|552192|552193|552194|552196|552197|567551|568458|568459|569821|574206|574209|577580|577582|577583|577585|577586|577589|577595|577598|577599|577601|580058|580076|580078|580086|580112|580113|580133|580150|580155|580159|580165|580171|580174|580193|580197|580219|580220|580225|580232|580252|580259|580398|580400|580410|580421|580457|611404|611422|613052|621983|622437|645134|645135|645136|645137|645138|645139|645140|645141|645142|653892|654139|677454|678946|682827|682828|682829|682830|688676|688677|690150|693953|693955|693956|693958|693959|693960|693961|693962|693964|693965|693966|693968|693969|695708|695709|703898|703900|703901|703904|703905|703907|703909|703910|703914|703915|703917|703920|726943|731122|740510|740521|755550|755556|776216|785437|785439|798706|798707|798708|800673|805107|805904|805909|805916|816487|822122|822123|844491|844492|844493|844494|844495|844496|844497|858573|860317|919684|919685|919686|919687|919688|919689|919690|919691|928006|928007|928008|928009|937661|937662|949631|949632|949633|949634|949635|949636|949637|957922|957923|957924|960859|961626|961627|963812|963821|964458|964459|964460|964461|964462|967281|969771|969773|969863|969864|969865|969866|969867|969868|969869|969870|969871|969872|969873|969874|969876|969879|971058|972972|976668|980957", + "upstreamId": "39847|39848|39849|205298|205782|208317|214453|214544|225887|243899|244063|245211|260139|260140|260852|264747|264749|264823|264834|264988|361224|362386|362427|362428|363822|363862|374759|375638|409796|409797|415528|422128|424663|424664|429885|429886|429890|434655|434772|438585|439224|439351|441931|441932|441933|445668|466885|466891|481321|482111|482112|492706|512246|512868|514705|530704|535707|536193|536480|536920|538460|538461|550370|550627|552191|552192|552193|552194|552196|552197|567551|568458|568459|569821|574206|574209|577580|577582|577583|577585|577586|577589|577595|577598|577599|577601|580058|580076|580078|580086|580112|580113|580133|580150|580155|580159|580165|580171|580174|580193|580197|580219|580220|580225|580232|580252|580259|580398|580400|580410|580421|580457|611404|611422|613052|621983|622437|645134|645135|645136|645137|645138|645139|645140|645141|645142|653892|654139|677454|678946|682827|682828|682829|682830|688676|688677|690150|693953|693955|693956|693958|693959|693960|693961|693962|693964|693965|693966|693968|693969|695708|695709|703898|703900|703901|703904|703905|703907|703909|703910|703914|703915|703917|703920|726943|731122|740510|740521|755550|755556|776216|785437|785439|798706|798707|798708|800673|805107|805904|805909|805916|816487|822122|822123|844491|844492|844493|844494|844495|844496|844497|858573|860317|919684|919685|919686|919687|919688|919689|919690|919691|928006|928007|928008|928009|937661|937662|949631|949632|949633|949634|949635|949636|949637|957922|957923|957924|960859|961626|961627|963812|963821|964458|964459|964460|964461|964462|967281|969771|969773|969863|969864|969865|969866|969867|969868|969869|969870|969871|969872|969873|969874|969876|969879|971058|972972|976668|980957", "text": "KBG syndrome" }, { - "baseId": "39850|39851|140827|193688|203812|203814|203815|203817|203818|203819|336301|336304|336307|336310|336312|336318|336320|336322|336324|336325|336328|336329|336335|336336|336345|336348|336351|336357|336369|336371|336372|336378|336379|336383|346019|346027|346031|346032|346034|346035|346039|346045|346049|346051|346057|346063|346066|346068|346083|346085|346091|346092|346093|346098|346102|350384|350385|350388|350389|350392|350393|350396|350397|350400|350401|350404|350405|350407|350408|350413|350419|350420|350423|350424|350427|350428|350430|350431|351417|351418|351424|351425|351427|351430|351431|351434|351435|351438|351439|351442|351443|351446|351447|351450|351451|351454|351455|351457|351460|351461|351464|351465|351466|351467|351470|677069|886508|886509|886510|886511|886512|886513|886514|886515|886516|886517|886518|886519|886520|886521|886522|886523|886524|886525|886526|886527|886528|886529|886530|886531|886532|886533|886534|886535|886536|886537|886538|886539|886540|886541|886542|886543|886544|886545|886546|887483|887484|887485", + "upstreamId": "39850|39851|140827|193688|203812|203814|203815|203817|203818|203819|336301|336304|336307|336310|336312|336318|336320|336322|336324|336325|336328|336329|336335|336336|336345|336348|336351|336357|336369|336371|336372|336378|336379|336383|346019|346027|346031|346032|346034|346035|346039|346045|346049|346051|346057|346063|346066|346068|346083|346085|346091|346092|346093|346098|346102|350384|350385|350388|350389|350392|350393|350396|350397|350400|350401|350404|350405|350407|350408|350413|350419|350420|350423|350424|350427|350428|350430|350431|351417|351418|351424|351425|351427|351430|351431|351434|351435|351438|351439|351442|351443|351446|351447|351450|351451|351454|351455|351457|351460|351461|351464|351465|351466|351467|351470|677069|886508|886509|886510|886511|886512|886513|886514|886515|886516|886517|886518|886519|886520|886521|886522|886523|886524|886525|886526|886527|886528|886529|886530|886531|886532|886533|886534|886535|886536|886537|886538|886539|886540|886541|886542|886543|886544|886545|886546|887483|887484|887485", "text": "Neuronal ceroid lipofuscinosis 4B" }, { - "baseId": "39852|134861|267315|268160|270798|373810|445468|513354|513354|919601|919602", + "upstreamId": "39852|134861|267315|268160|270798|373810|445468|513354|513354|919601|919602", "text": "Hydrolethalus syndrome 2" }, { - "baseId": "39852|39853|39854|39855|39856|102542|102544|102545|102546|102548|102549|102550|134850|134851|134852|134853|134854|134855|134856|134857|134858|134859|134860|134861|134862|134863|134864|141762|191111|191735|192158|192159|192160|192162|193763|195060|195061|205178|214348|214349|247107|255392|255399|255402|255403|255405|255406|255410|266613|267315|268160|268160|268262|268897|270531|270798|270798|271178|271632|271873|323529|323530|323534|323539|323540|323547|323548|323550|323552|323555|323559|323561|323566|333276|333280|333286|333288|333290|333293|340040|340042|340044|340049|340052|340053|340055|340058|340059|340062|341458|341460|341461|341463|341464|341467|341468|341471|341485|341488|341492|341500|341501|341502|360982|373810|417073|417074|418968|418969|418970|445468|464622|465404|465405|490888|505304|505511|513354|529134|529136|529144|529152|529156|529460|567339|567340|567345|569211|573582|578521|587931|587933|587935|620532|643620|643621|643622|643623|643624|643625|643626|643627|726331|785055|842797|842798|874268|874269|874270|874271|874272|874273|874274|874275|874276|874277|874278|874279|874280|874281|874282|874283|874284|874285|874286|874287|874288|874289|874290|874291|874292|874293|874294|874295|874296|874297|874298|874299|874300|874301|874302|874303|874304|874305|874306|874307|874308|876589|876590|876591|906265|927457|927458|937114|937115|949057|957538|957539|957540|971031", + "upstreamId": "39852|39853|39854|39855|39856|102542|102544|102545|102546|102548|102549|102550|134850|134851|134852|134853|134854|134855|134856|134857|134858|134859|134860|134861|134862|134863|134864|141762|191111|191735|192158|192159|192160|192162|193763|195060|195061|205178|214348|214349|247107|255392|255399|255402|255403|255405|255406|255410|266613|267315|268160|268160|268262|268897|270531|270798|270798|271178|271632|271873|323529|323530|323534|323539|323540|323547|323548|323550|323552|323555|323559|323561|323566|333276|333280|333286|333288|333290|333293|340040|340042|340044|340049|340052|340053|340055|340058|340059|340062|341458|341460|341461|341463|341464|341467|341468|341471|341485|341488|341492|341500|341501|341502|360982|373810|417073|417074|418968|418969|418970|445468|464622|465404|465405|490888|505304|505511|513354|529134|529136|529144|529152|529156|529460|567339|567340|567345|569211|573582|578521|587931|587933|587935|620532|643620|643621|643622|643623|643624|643625|643626|643627|726331|785055|842797|842798|874268|874269|874270|874271|874272|874273|874274|874275|874276|874277|874278|874279|874280|874281|874282|874283|874284|874285|874286|874287|874288|874289|874290|874291|874292|874293|874294|874295|874296|874297|874298|874299|874300|874301|874302|874303|874304|874305|874306|874307|874308|876589|876590|876591|906265|927457|927458|937114|937115|949057|957538|957539|957540|971031", "text": "Acrocallosal syndrome" }, { - "baseId": "39857|39858", + "upstreamId": "39857|39858", "text": "Joubert syndrome 12" }, { - "baseId": "39860|253624|253627|253628|253629|253630|253631|253632|309015|309024|309026|309027|309034|309035|309039|309041|313773|313775|313776|313777|313789|313791|313793|319587|319589|319598|319599|319601|319602|320178|320182|320183|320184|320186|320190|320191|414474|418978|418979|459962|459963|460369|524827|525060|701100|788838|836460|859771|902603|902604|902605|902606|902607|902608|902609|902610|902611|902612|902613|902614|902615|902616|902617|902618|902619|902620|902621|902622|902623|902624|902625|902626|902627|902628|902629|903450|903451|903452|903453|946740|946741|946742", + "upstreamId": "39860|253624|253627|253628|253629|253630|253631|253632|309015|309024|309026|309027|309034|309035|309039|309041|313773|313775|313776|313777|313789|313791|313793|319587|319589|319598|319599|319601|319602|320178|320182|320183|320184|320186|320190|320191|414474|418978|418979|459962|459963|460369|524827|525060|701100|788838|836460|859771|902603|902604|902605|902606|902607|902608|902609|902610|902611|902612|902613|902614|902615|902616|902617|902618|902619|902620|902621|902622|902623|902624|902625|902626|902627|902628|902629|903450|903451|903452|903453|946740|946741|946742", "text": "Cataract, autosomal recessive congenital 4" }, { - "baseId": "39861|39862|40202|40203|40204|227089|227090|227091|227092|229569|252658|252660|265509|266184|266559|266777|266778|267640|267980|269065|270280|270502|270682|270697|272428|272684|273113|273215|274406|274760|302296|302297|302299|302314|302318|302320|302323|302325|302328|302331|302334|305507|305508|305522|305526|305543|305551|305553|305555|310338|310339|310342|310348|310367|310369|310440|310446|310467|310468|310470|310473|310479|310480|310481|369415|371078|456511|456903|489480|491727|522506|522739|523163|523166|561425|561429|561432|566632|584394|585772|622886|635958|635959|635960|635961|635962|635963|635964|692189|692191|710895|736043|766198|790714|793208|818720|833385|833386|833387|833388|852343|897736|897737|897738|897739|897740|897742|897743|897744|897745|897746|897747|897748|897749|897750|897751|897752|897753|897754|897755|919096|924775|933799|933800|945540|945541|959844", + "upstreamId": "39861|39862|40202|40203|40204|227089|227090|227091|227092|229569|252658|252660|265509|266184|266559|266777|266778|267640|267980|269065|270280|270502|270682|270697|272428|272684|273113|273215|274406|274760|302296|302297|302299|302314|302318|302320|302323|302325|302328|302331|302334|305507|305508|305522|305526|305543|305551|305553|305555|310338|310339|310342|310348|310367|310369|310440|310446|310467|310468|310470|310473|310479|310480|310481|369415|371078|456511|456903|489480|491727|522506|522739|523163|523166|561425|561429|561432|566632|584394|585772|622886|635958|635959|635960|635961|635962|635963|635964|692189|692191|710895|736043|766198|790714|793208|818720|833385|833386|833387|833388|852343|897736|897737|897738|897739|897740|897742|897743|897744|897745|897746|897747|897748|897749|897750|897751|897752|897753|897754|897755|919096|924775|933799|933800|945540|945541|959844", "text": "Limb-girdle muscular dystrophy, type 1E" }, { - "baseId": "39864|190006|190007|190008|222802|222803|243312|243314|243315|243316|403200|403206|403211|403250|403253|403661|403688|403694|403700|468536|468544|468546|468548|469089|469905|469907|469922|469924|470510|470521|487993|487994|487995|488044|508917|508918|510797|532763|532774|532830|532831|570278|570580|570583|570589|572286|572966|574902|574904|647785|647786|647787|647788|647789|647790|647791|647792|647793|647794|653156|653608|688973|688974|688977|694349|821243|847410|847411|847412|928891|938610|938611|938612|940476|950709|950710|950711|958566|958567", + "upstreamId": "39864|190006|190007|190008|222802|222803|243312|243314|243315|243316|403200|403206|403211|403250|403253|403661|403688|403694|403700|468536|468544|468546|468548|469089|469905|469907|469922|469924|470510|470521|487993|487994|487995|488044|508917|508918|510797|532763|532774|532830|532831|570278|570580|570583|570589|572286|572966|574902|574904|647785|647786|647787|647788|647789|647790|647791|647792|647793|647794|653156|653608|688973|688974|688977|694349|821243|847410|847411|847412|928891|938610|938611|938612|940476|950709|950710|950711|958566|958567", "text": "Familial hypertrophic cardiomyopathy 19" }, { - "baseId": "39865|39866|39867|48498|153784|169195|169201|194444|227374|255679|255681|325059|325070|334737|341193|342699|342729|553393|609008|622910|677449|791582|919643|971045|971046|976664", + "upstreamId": "39865|39866|39867|48498|153784|169195|169201|194444|227374|255679|255681|325059|325070|334737|341193|342699|342729|553393|609008|622910|677449|791582|919643|971045|971046|976664", "text": "Floating-Harbor syndrome" }, { - "baseId": "39870|97545|428830", + "upstreamId": "39870|97545|428830", "text": "Hereditary spastic paraplegia 18" }, { - "baseId": "39871|39872|39873|39874|39875|39876|39878|373928|426773|429180|626204|919331", + "upstreamId": "39871|39872|39873|39874|39875|39876|39878|373928|426773|429180|626204|919331", "text": "Megalencephalic leukoencephalopathy with subcortical cysts 2a" }, { - "baseId": "39876|39878|426773|429180|513438|626204", + "upstreamId": "39876|39878|426773|429180|513438|626204", "text": "Megalencephalic leukoencephalopathy with subcortical cysts 2b, remitting, with or without mental retardation" }, { - "baseId": "39877", + "upstreamId": "39877", "text": "Megalencephalic leukoencephalopathy with subcortical cysts 2b, remitting, with mental retardation" }, { - "baseId": "39883|39884|39885|167471|205154", + "upstreamId": "39883|39884|39885|167471|205154", "text": "Hydatidiform mole, recurrent, 2" }, { - "baseId": "39886|792750", + "upstreamId": "39886|792750", "text": "Kahrizi syndrome" }, { - "baseId": "39888|257138|672017|800408", + "upstreamId": "39888|257138|672017|800408", "text": "Meckel syndrome, type 10" }, { - "baseId": "39892|39892|39893|39894|102031|102032|136094|136095|136096|136097|136098|136099|136100|136101|136102|136103|136104|136105|136106|136107|191595|191595|192692|192938|195418|212121|221116|221117|238377|250324|250329|250331|250336|250337|265473|282446|282447|282453|282454|282464|282465|282470|282471|282473|282474|282491|282492|283108|283111|283114|283117|283127|283133|283141|283158|283161|283162|284705|284706|284708|284714|284715|284722|284724|284726|284730|284731|284733|284745|284746|284755|284762|284765|284766|285173|285174|285177|285178|285180|285181|285182|285186|285187|285191|285192|365832|440055|449094|486832|498877|499070|516603|628800|683414|685891|685895|685896|690860|881322|881323|881324|881325|881326|881327|881328|881329|881330|881331|881332|881333|881334|881335|881336|881337|881338|881339|881340|881341|881342|881343|881344|881345|881346|881347|882822|882823|906279|980839", + "upstreamId": "39892|39892|39893|39894|102031|102032|136094|136095|136096|136097|136098|136099|136100|136101|136102|136103|136104|136105|136106|136107|191595|191595|192692|192938|195418|212121|221116|221117|238377|250324|250329|250331|250336|250337|265473|282446|282447|282453|282454|282464|282465|282470|282471|282473|282474|282491|282492|283108|283111|283114|283117|283127|283133|283141|283158|283161|283162|284705|284706|284708|284714|284715|284722|284724|284726|284730|284731|284733|284745|284746|284755|284762|284765|284766|285173|285174|285177|285178|285180|285181|285182|285186|285187|285191|285192|365832|440055|449094|486832|498877|499070|516603|628800|683414|685891|685895|685896|690860|881322|881323|881324|881325|881326|881327|881328|881329|881330|881331|881332|881333|881334|881335|881336|881337|881338|881339|881340|881341|881342|881343|881344|881345|881346|881347|882822|882823|906279|980839", "text": "Nephronophthisis 12" }, { - "baseId": "39892|39895|39896|102031|102032|136094|136095|136096|136097|136098|136099|136100|136101|136102|136103|136104|136105|136106|136107|191595|191595|192692|192938|195418|212121|221116|221117|238377|250324|250329|250331|250336|250337|265473|282446|282447|282453|282454|282464|282465|282470|282471|282473|282474|282491|282492|283108|283111|283114|283117|283127|283133|283141|283158|283161|283162|284705|284706|284708|284714|284715|284722|284724|284726|284730|284731|284733|284745|284746|284755|284762|284765|284766|285173|285174|285177|285178|285180|285181|285182|285186|285187|285191|285192|365832|440054|440055|449094|498877|499070|516603|536039|628800|683414|685891|685895|685896|690860|881322|881323|881324|881325|881326|881327|881328|881329|881330|881331|881332|881333|881334|881335|881336|881337|881338|881339|881340|881341|881342|881343|881344|881345|881346|881347|882822|882823", + "upstreamId": "39892|39895|39896|102031|102032|136094|136095|136096|136097|136098|136099|136100|136101|136102|136103|136104|136105|136106|136107|191595|191595|192692|192938|195418|212121|221116|221117|238377|250324|250329|250331|250336|250337|265473|282446|282447|282453|282454|282464|282465|282470|282471|282473|282474|282491|282492|283108|283111|283114|283117|283127|283133|283141|283158|283161|283162|284705|284706|284708|284714|284715|284722|284724|284726|284730|284731|284733|284745|284746|284755|284762|284765|284766|285173|285174|285177|285178|285180|285181|285182|285186|285187|285191|285192|365832|440054|440055|449094|498877|499070|516603|536039|628800|683414|685891|685895|685896|690860|881322|881323|881324|881325|881326|881327|881328|881329|881330|881331|881332|881333|881334|881335|881336|881337|881338|881339|881340|881341|881342|881343|881344|881345|881346|881347|882822|882823", "text": "Asphyxiating thoracic dystrophy 4" }, { - "baseId": "39897|39898|139916|139917|139918|139919|139920|139921|139923|139925|139927|139928|139931|139932|139933|139934|139935|152754|152756|199785|211222|211225|211227|211228|211232|211233|211238|211239|211242|236962|266174|300333|300334|300337|300352|300354|300361|300364|300368|300369|300380|300383|303153|303154|303155|303157|303161|303162|303163|303164|303176|303177|303180|303181|303217|307653|307665|307670|307684|307686|307688|307693|307695|307697|307699|307704|307710|307720|307725|307731|307732|307734|307823|307830|307832|307847|307848|307855|307858|307870|307877|307881|307882|307892|307896|307903|307906|370455|481329|502003|612277|620233|620790|620791|744284|798575|861605|896464|896465|896466|896467|896468|896469|896470|896471|896472|896473|896474|896475|896476|896477|896478|896479|896480|896481|896482|896483|896484|896485|896486|896487|896488|896489|896490|896491|896492|896493|896494|896495|896496|896497|900235|900236|919033|919034", + "upstreamId": "39897|39898|139916|139917|139918|139919|139920|139921|139923|139925|139927|139928|139931|139932|139933|139934|139935|152754|152756|199785|211222|211225|211227|211228|211232|211233|211238|211239|211242|236962|266174|300333|300334|300337|300352|300354|300361|300364|300368|300369|300380|300383|303153|303154|303155|303157|303161|303162|303163|303164|303176|303177|303180|303181|303217|307653|307665|307670|307684|307686|307688|307693|307695|307697|307699|307704|307710|307720|307725|307731|307732|307734|307823|307830|307832|307847|307848|307855|307858|307870|307877|307881|307882|307892|307896|307903|307906|370455|481329|502003|612277|620233|620790|620791|744284|798575|861605|896464|896465|896466|896467|896468|896469|896470|896471|896472|896473|896474|896475|896476|896477|896478|896479|896480|896481|896482|896483|896484|896485|896486|896487|896488|896489|896490|896491|896492|896493|896494|896495|896496|896497|900235|900236|919033|919034", "text": "Combined oxidative phosphorylation deficiency 8" }, { - "baseId": "39897|152754", + "upstreamId": "39897|152754", "text": "Pulmonary hypoplasia" }, { - "baseId": "39909|39910|39911|39912|39913|134177|134178|134179|257714|257716|338604|338607|338609|338612|338617|338620|348178|348181|348182|348184|351843|351844|351846|351847|351849|351851|351853|351855|352686|352687|352688|352689|352690|377616|378767|378861|379872|379875|411043|411044|411046|442355|446429|470345|470346|470354|471601|471604|471986|534370|534844|538502|552235|572031|572036|572040|572044|573420|573424|574153|574156|574157|620697|622486|622487|626288|626289|649547|649548|649549|649550|649551|649552|649553|649554|653607|677067|694752|695884|695886|706020|773639|773641|821473|849452|849453|849454|849455|849456|849457|849458|849459|849460|852447|891510|891511|891512|891513|891857|891858|891859|891860|919960|929511|939365|951532|951533|959129|959130|959131|959132", + "upstreamId": "39909|39910|39911|39912|39913|134177|134178|134179|257714|257716|338604|338607|338609|338612|338617|338620|348178|348181|348182|348184|351843|351844|351846|351847|351849|351851|351853|351855|352686|352687|352688|352689|352690|377616|378767|378861|379872|379875|411043|411044|411046|442355|446429|470345|470346|470354|471601|471604|471986|534370|534844|538502|552235|572031|572036|572040|572044|573420|573424|574153|574156|574157|620697|622486|622487|626288|626289|649547|649548|649549|649550|649551|649552|649553|649554|653607|677067|694752|695884|695886|706020|773639|773641|821473|849452|849453|849454|849455|849456|849457|849458|849459|849460|852447|891510|891511|891512|891513|891857|891858|891859|891860|919960|929511|939365|951532|951533|959129|959130|959131|959132", "text": "Megaconial type congenital muscular dystrophy" }, { - "baseId": "39917|39918|39919|39920|39921|39922|246971|251616|251618|251619|251621|251622|251623|251624|251625|251626|251627|251628|251629|251630|251631|251632|251634|251635|251636|251637|251638|295112|295116|295119|295124|295126|295127|295138|295140|295141|295142|295149|295150|295154|295155|295156|295161|295163|295164|295165|295172|295173|295180|295182|295192|295193|295196|295202|295204|296949|296950|296951|296952|296953|296963|296964|296965|296966|296967|296973|296986|296989|296990|296992|296999|297002|297003|297005|297006|300567|300568|300580|300611|300612|300615|300632|300633|300648|300654|300656|300657|300658|300667|300671|300673|300732|300736|300744|300745|300749|300753|300754|300755|300770|300772|300784|300785|300794|300796|300797|300798|300827|300831|300832|300833|300835|300836|300837|300839|300852|300853|300855|300856|361182|367859|367867|368122|368209|368210|368212|368229|368231|369509|369514|406612|406615|406617|421517|454199|454201|454205|454336|454340|454342|454351|454367|454686|454687|454690|454692|454694|454701|454986|454990|455000|501112|501116|501118|501255|501265|513275|520451|520452|520460|520468|520472|520475|520685|520688|520697|520699|520700|520873|520875|520876|520968|520969|520971|559985|559987|559989|559991|559993|559995|559997|559999|560100|560102|560104|560106|562591|564447|564451|564455|564456|632913|632914|632915|632916|632917|632918|632919|632920|632921|632922|632923|632924|632925|632926|632927|632928|632929|632930|632931|632932|632933|632934|632935|632936|632937|632938|632939|632940|632941|632942|632943|651272|691668|691669|698758|709604|721191|734825|749180|749183|759434|764780|775129|782116|795614|829896|829897|829898|829899|829900|829901|829902|829903|829904|829905|829906|829907|829908|829909|829910|829911|829912|829913|829914|829915|829916|829917|829918|829919|829920|829921|829922|829923|829924|829925|829926|829927|829928|829929|829930|892749|892750|892751|892752|892753|892754|892755|892756|892757|892758|892759|892760|892761|892762|892763|892764|892765|892766|892767|892768|892769|892770|892771|892772|892773|892774|892775|892776|892777|892778|892779|892780|892781|892782|892783|892784|892785|892786|892787|892788|892789|892790|892791|892792|892793|892794|892795|892796|892797|892798|892799|892800|892801|892802|892803|892804|892805|892806|892807|892808|892809|892810|892811|892812|892813|892814|892815|896023|896024|896025|923740|923741|923742|923743|923744|923745|923746|923747|932598|932599|932600|932601|932602|932603|932604|944273|944274|944275|944276|944277|944278|944279|944280|944281|953933|953934|953935|960546|960547", + "upstreamId": "39917|39918|39919|39920|39921|39922|246971|251616|251618|251619|251621|251622|251623|251624|251625|251626|251627|251628|251629|251630|251631|251632|251634|251635|251636|251637|251638|295112|295116|295119|295124|295126|295127|295138|295140|295141|295142|295149|295150|295154|295155|295156|295161|295163|295164|295165|295172|295173|295180|295182|295192|295193|295196|295202|295204|296949|296950|296951|296952|296953|296963|296964|296965|296966|296967|296973|296986|296989|296990|296992|296999|297002|297003|297005|297006|300567|300568|300580|300611|300612|300615|300632|300633|300648|300654|300656|300657|300658|300667|300671|300673|300732|300736|300744|300745|300749|300753|300754|300755|300770|300772|300784|300785|300794|300796|300797|300798|300827|300831|300832|300833|300835|300836|300837|300839|300852|300853|300855|300856|361182|367859|367867|368122|368209|368210|368212|368229|368231|369509|369514|406612|406615|406617|421517|454199|454201|454205|454336|454340|454342|454351|454367|454686|454687|454690|454692|454694|454701|454986|454990|455000|501112|501116|501118|501255|501265|513275|520451|520452|520460|520468|520472|520475|520685|520688|520697|520699|520700|520873|520875|520876|520968|520969|520971|559985|559987|559989|559991|559993|559995|559997|559999|560100|560102|560104|560106|562591|564447|564451|564455|564456|632913|632914|632915|632916|632917|632918|632919|632920|632921|632922|632923|632924|632925|632926|632927|632928|632929|632930|632931|632932|632933|632934|632935|632936|632937|632938|632939|632940|632941|632942|632943|651272|691668|691669|698758|709604|721191|734825|749180|749183|759434|764780|775129|782116|795614|829896|829897|829898|829899|829900|829901|829902|829903|829904|829905|829906|829907|829908|829909|829910|829911|829912|829913|829914|829915|829916|829917|829918|829919|829920|829921|829922|829923|829924|829925|829926|829927|829928|829929|829930|892749|892750|892751|892752|892753|892754|892755|892756|892757|892758|892759|892760|892761|892762|892763|892764|892765|892766|892767|892768|892769|892770|892771|892772|892773|892774|892775|892776|892777|892778|892779|892780|892781|892782|892783|892784|892785|892786|892787|892788|892789|892790|892791|892792|892793|892794|892795|892796|892797|892798|892799|892800|892801|892802|892803|892804|892805|892806|892807|892808|892809|892810|892811|892812|892813|892814|892815|896023|896024|896025|923740|923741|923742|923743|923744|923745|923746|923747|932598|932599|932600|932601|932602|932603|932604|944273|944274|944275|944276|944277|944278|944279|944280|944281|953933|953934|953935|960546|960547", "text": "Myopathy, areflexia, respiratory distress, and dysphagia, early-onset" }, { - "baseId": "39922|39923|39924", + "upstreamId": "39922|39923|39924", "text": "Myopathy, areflexia, respiratory distress, and dysphagia, early-onset, mild variant" }, { - "baseId": "39932|39933|49675|49676|227399|256465|256466|256467|256469|256470|256472|330255|330258|330265|330270|340470|346186|346187|346188|346191|346192|346193|347496|347502|347503|347504|347505|347506|353464|353465|610686|614445|620610|626262|741061|756161|756165|878650|878651|878652|878653|878654|878655|878656|878657|878658|878659|880607|880608|880609|961978|961979", + "upstreamId": "39932|39933|49675|49676|227399|256465|256466|256467|256469|256470|256472|330255|330258|330265|330270|340470|346186|346187|346188|346191|346192|346193|347496|347502|347503|347504|347505|347506|353464|353465|610686|614445|620610|626262|741061|756161|756165|878650|878651|878652|878653|878654|878655|878656|878657|878658|878659|880607|880608|880609|961978|961979", "text": "Dyskeratosis congenita, autosomal recessive, 3" }, { - "baseId": "39938|185674|185675|185676|964237", + "upstreamId": "39938|185674|185675|185676|964237", "text": "Adermatoglyphia" }, { - "baseId": "39938|185677", + "upstreamId": "39938|185677", "text": "Basan syndrome" }, { - "baseId": "39939|142661|142663|142664|211878|211880|211881|211882|211884|211885|243995|333468|333469|333470|333476|333477|333479|343501|343507|343512|343513|343520|348832|348833|348834|348836|348837|348838|348839|349792|349794|349796|349801|349802|349805|349812|426310|506729|550087|656559|881939|881940|881941|881942|881943|881944|881945|881946|881947|881948|881949|881950|881951|881952|881953|881954|881955|881956|881957|881958|881959|881960|882881|966903", + "upstreamId": "39939|142661|142663|142664|211878|211880|211881|211882|211884|211885|243995|333468|333469|333470|333476|333477|333479|343501|343507|343512|343513|343520|348832|348833|348834|348836|348837|348838|348839|349792|349794|349796|349801|349802|349805|349812|426310|506729|550087|656559|881939|881940|881941|881942|881943|881944|881945|881946|881947|881948|881949|881950|881951|881952|881953|881954|881955|881956|881957|881958|881959|881960|882881|966903", "text": "Hyperuricemia, pulmonary hypertension, renal failure, and alkalosis" }, { - "baseId": "39940|53289|195622|535663|535664|535665|535666|535667|535668|535670|535671|857673|857674|904068|919249|946767|980585", + "upstreamId": "39940|53289|195622|535663|535664|535665|535666|535667|535668|535670|535671|857673|857674|904068|919249|946767|980585", "text": "Deafness, autosomal recessive 57" }, { - "baseId": "39942|39943|39944|39945|39946|48067|48068|272982|344968|345036|349823|349827|349831|350853|415680|425230|481326|481339|539097|552222|578573|589812|621639|621640|653897|679354|682834|791976|791977|798762|858750|964530|971142", + "upstreamId": "39942|39943|39944|39945|39946|48067|48068|272982|344968|345036|349823|349827|349831|350853|415680|425230|481326|481339|539097|552222|578573|589812|621639|621640|653897|679354|682834|791976|791977|798762|858750|964530|971142", "text": "Bohring-Opitz syndrome" }, { - "baseId": "39943", + "upstreamId": "39943", "text": "dystrophia" }, { - "baseId": "39952|39953|39954|39955|39956|39957|39958|39959|39960|39961|39962|48734|48735|208426|403099|403203|430041|469210|469548|469555|469574|532116|532462|553396|571808|619927|647035|647048|791846|791847|961980|980850|980851|980852", + "upstreamId": "39952|39953|39954|39955|39956|39957|39958|39959|39960|39961|39962|48734|48735|208426|403099|403203|430041|469210|469548|469555|469574|532116|532462|553396|571808|619927|647035|647048|791846|791847|961980|980850|980851|980852", "text": "Cerebroretinal microangiopathy with calcifications and cysts 1" }, { - "baseId": "39957|48734|430035", + "upstreamId": "39957|48734|430035", "text": "Cerebroretinal microangiopathy with calcifications and cysts" }, { - "baseId": "39964", + "upstreamId": "39964", "text": "EDICT syndrome" }, { - "baseId": "39975|434881|539076", + "upstreamId": "39975|434881|539076", "text": "Epiphyseal dysplasia, multiple, 7" }, { - "baseId": "39977|210904|226292|287256|287947|287948|287950|290538|290556|290565|366784|804904|805142|885458|885459|885460", + "upstreamId": "39977|210904|226292|287256|287947|287948|287950|290538|290556|290565|366784|804904|805142|885458|885459|885460", "text": "Multiple mitochondrial dysfunctions syndrome 2" }, { - "baseId": "39978|39979|39980|39981|39982|39983|186225|208254|208255|208257|213187|213188|213191|236954|236960|242400|242402|242403|242405|242406|242407|242408|242409|242410|242411|242415|242417|242418|242420|242421|242422|242424|242426|242427|242430|242432|242433|242435|242436|255707|255708|255709|255711|255712|255713|255714|255715|255716|255717|255718|255719|255722|255724|255725|255727|255728|255729|255730|255731|255732|255733|255734|255735|255736|325256|325266|325275|325280|325281|325283|325299|325301|325303|325312|325313|325315|325330|325332|334909|334911|334912|334914|334915|334916|334920|334921|334928|334930|334937|334940|334947|334950|334951|334957|334959|341359|341361|341362|341365|341370|341380|341389|341391|341392|341398|341400|341410|341415|341416|341418|341426|341428|341429|341430|341432|341433|341438|341444|341445|341450|342868|342874|342875|342876|342877|342888|342891|342896|342897|342899|342906|342910|342917|342920|342923|342927|342931|342932|342934|342939|342940|342944|342945|342946|342947|342950|401138|401151|401159|401170|401173|401176|401177|401199|401203|401240|401632|401652|401654|401676|401679|401894|401905|401911|409623|429791|429792|429793|429794|465680|465686|465722|465727|466381|466421|466427|466442|466462|466652|466653|466698|466702|529942|529977|530056|530072|530076|530266|530517|552189|568130|570280|612163|614424|614425|620540|620541|682684|688571|690140|693865|797319|816338|843808|843830|843838|843844|843846|843849|843855|843859|875217|875218|875219|875220|875221|875222|875223|875224|875225|875226|875227|875228|875229|875230|875231|875232|875233|875234|875235|875236|875237|875238|875239|875240|875241|875242|875243|875244|875245|875246|875247|875248|875249|875250|875251|875252|875253|875254|875255|875256|875257|875258|876664|876665|876666|876667|917931|917934|917938|919647|921524", + "upstreamId": "39978|39979|39980|39981|39982|39983|186225|208254|208255|208257|213187|213188|213191|236954|236960|242400|242402|242403|242405|242406|242407|242408|242409|242410|242411|242415|242417|242418|242420|242421|242422|242424|242426|242427|242430|242432|242433|242435|242436|255707|255708|255709|255711|255712|255713|255714|255715|255716|255717|255718|255719|255722|255724|255725|255727|255728|255729|255730|255731|255732|255733|255734|255735|255736|325256|325266|325275|325280|325281|325283|325299|325301|325303|325312|325313|325315|325330|325332|334909|334911|334912|334914|334915|334916|334920|334921|334928|334930|334937|334940|334947|334950|334951|334957|334959|341359|341361|341362|341365|341370|341380|341389|341391|341392|341398|341400|341410|341415|341416|341418|341426|341428|341429|341430|341432|341433|341438|341444|341445|341450|342868|342874|342875|342876|342877|342888|342891|342896|342897|342899|342906|342910|342917|342920|342923|342927|342931|342932|342934|342939|342940|342944|342945|342946|342947|342950|401138|401151|401159|401170|401173|401176|401177|401199|401203|401240|401632|401652|401654|401676|401679|401894|401905|401911|409623|429791|429792|429793|429794|465680|465686|465722|465727|466381|466421|466427|466442|466462|466652|466653|466698|466702|529942|529977|530056|530072|530076|530266|530517|552189|568130|570280|612163|614424|614425|620540|620541|682684|688571|690140|693865|797319|816338|843808|843830|843838|843844|843846|843849|843855|843859|875217|875218|875219|875220|875221|875222|875223|875224|875225|875226|875227|875228|875229|875230|875231|875232|875233|875234|875235|875236|875237|875238|875239|875240|875241|875242|875243|875244|875245|875246|875247|875248|875249|875250|875251|875252|875253|875254|875255|875256|875257|875258|876664|876665|876666|876667|917931|917934|917938|919647|921524", "text": "Fanconi anemia, complementation group P" }, { - "baseId": "39994", + "upstreamId": "39994", "text": "Primary microcephaly type 2" }, { - "baseId": "40000|40001|40002|76527|99368|99368|177078|178154|178155|178155|192629|192629|192964|192964|195918|195918|206935|206935|206937|250472|265346|265346|268034|268034|270910|271977|272560|272806|272806|273025|283724|283727|283728|283734|283736|283737|283738|283749|283751|283752|283757|283759|283764|283770|283771|283776|283778|283779|283780|283785|283796|283796|283799|283799|283805|283805|283810|283820|283823|283824|283829|283830|284401|284404|284407|284414|284419|284430|284431|284432|284437|284437|284438|284448|284457|284458|284459|284461|284463|284463|284471|284471|286403|286415|286416|286421|286422|286439|286446|286447|286448|286450|286451|286452|286470|286472|286472|286474|286475|286476|286478|286481|286484|286484|286777|286778|286779|286781|286786|286793|286794|286810|286816|286828|286841|286842|286855|286857|286857|286858|286865|286866|286876|286878|286881|286881|427983|427983|434042|434042|434044|434045|440064|450229|450242|450242|450249|450362|450490|481531|488635|488637|490556|517497|557806|557810|557857|559023|559522|559525|609305|609306|629268|629274|629274|629275|697232|697236|719510|730096|747156|762776|825542|825545|825548|825553|883131|883132|883133|883134|883135|883136|883137|883138|883139|883140|883141|883142|883143|883144|883145|883146|883147|883148|883149|883150|883151|883152|883153|883154|883155|883156|883157|883158|883159|883160|883161|883162|883163|883164|883165|883166|883167|883168|883169|883170|883171|883172|883173|883174|883175|883176|883177|883178|887229|887230|887231|887232|922506|931069|952874|959619", + "upstreamId": "40000|40001|40002|76527|99368|99368|177078|178154|178155|178155|192629|192629|192964|192964|195918|195918|206935|206935|206937|250472|265346|265346|268034|268034|270910|271977|272560|272806|272806|273025|283724|283727|283728|283734|283736|283737|283738|283749|283751|283752|283757|283759|283764|283770|283771|283776|283778|283779|283780|283785|283796|283796|283799|283799|283805|283805|283810|283820|283823|283824|283829|283830|284401|284404|284407|284414|284419|284430|284431|284432|284437|284437|284438|284448|284457|284458|284459|284461|284463|284463|284471|284471|286403|286415|286416|286421|286422|286439|286446|286447|286448|286450|286451|286452|286470|286472|286472|286474|286475|286476|286478|286481|286484|286484|286777|286778|286779|286781|286786|286793|286794|286810|286816|286828|286841|286842|286855|286857|286857|286858|286865|286866|286876|286878|286881|286881|427983|427983|434042|434042|434044|434045|440064|450229|450242|450242|450249|450362|450490|481531|488635|488637|490556|517497|557806|557810|557857|559023|559522|559525|609305|609306|629268|629274|629274|629275|697232|697236|719510|730096|747156|762776|825542|825545|825548|825553|883131|883132|883133|883134|883135|883136|883137|883138|883139|883140|883141|883142|883143|883144|883145|883146|883147|883148|883149|883150|883151|883152|883153|883154|883155|883156|883157|883158|883159|883160|883161|883162|883163|883164|883165|883166|883167|883168|883169|883170|883171|883172|883173|883174|883175|883176|883177|883178|887229|887230|887231|887232|922506|931069|952874|959619", "text": "Short rib polydactyly syndrome 5" }, { - "baseId": "40003|40004|153785|153786|188068|508939|508940|512883|792020|980970", + "upstreamId": "40003|40004|153785|153786|188068|508939|508940|512883|792020|980970", "text": "Van den Ende-Gupta syndrome" }, { - "baseId": "40006|40007|40008|40009|40010|40011|166231", + "upstreamId": "40006|40007|40008|40009|40010|40011|166231", "text": "Treacher Collins syndrome 2" }, { - "baseId": "40012|40013|553269", + "upstreamId": "40012|40013|553269", "text": "Deafness, autosomal recessive 74" }, { - "baseId": "40014|40015|40016|40017|133835|133836|133837|171737|171738|171739|207076|207077|251139|290298|290299|290309|290315|290317|290321|290324|290328|290343|290367|291143|291144|291170|291180|291181|291183|291184|291185|291194|291241|294449|294450|294457|294459|294460|294463|294470|294492|294832|294833|294850|294862|294866|294868|294876|294877|294884|294886|294937|294940|428190|428192|440792|653860|734068|748270|798534|888890|888891|888892|888893|888894|888895|888896|888897|888898|888899|888900|888901|888902|888903|888904|888905|888906|888907|888908|888929|891642|891643|891644|918831|964816", + "upstreamId": "40014|40015|40016|40017|133835|133836|133837|171737|171738|171739|207076|207077|251139|290298|290299|290309|290315|290317|290321|290324|290328|290343|290367|291143|291144|291170|291180|291181|291183|291184|291185|291194|291241|294449|294450|294457|294459|294460|294463|294470|294492|294832|294833|294850|294862|294866|294868|294876|294877|294884|294886|294937|294940|428190|428192|440792|653860|734068|748270|798534|888890|888891|888892|888893|888894|888895|888896|888897|888898|888899|888900|888901|888902|888903|888904|888905|888906|888907|888908|888929|891642|891643|891644|918831|964816", "text": "Spinocerebellar ataxia, autosomal recessive 10" }, { - "baseId": "40018|40019|40020|134751|134752|134753|134754|134755|134756|134757|134758|255321|255322|255323|255324|255325|255329|255330|323055|323056|323063|323065|323066|323067|323072|323076|323077|332658|332661|332665|332666|332668|332669|332684|332687|332689|332692|339671|339674|339675|339680|339685|339692|341029|341034|341041|341042|341051|341054|341055|341058|341061|341062|341063|341064|341065|341068|341069|374263|374659|374672|409320|429713|445402|464417|464418|464425|465024|465026|465036|465040|465047|465215|465218|465222|465224|465225|465237|465239|465287|465289|465298|465303|465308|465310|491142|504911|505119|505331|513348|528961|528965|528979|528986|528988|529078|529084|529086|529088|529394|529396|529400|529557|529559|529566|529569|550779|567218|567220|569039|569040|569545|569546|569548|569549|569556|569557|573459|573461|573466|573470|573473|573474|573478|643459|643460|643461|643462|643463|643464|643465|643466|643467|643468|643469|643470|643471|643472|643473|643474|693712|693713|693717|693718|693719|703293|726207|739746|754629|770289|784985|784987|822100|842577|842578|842579|842580|842581|842582|842583|842584|842585|842586|842587|842588|873965|873966|873967|873968|873969|873970|873971|873972|873973|873974|873975|873976|873977|873978|873979|905864|919589|919590|927391|927392|927393|927394|927395|927396|937004|937005|937006|937007|937008|948959|948960|948961|948962|948963|948964|957466|957467|957468", + "upstreamId": "40018|40019|40020|134751|134752|134753|134754|134755|134756|134757|134758|255321|255322|255323|255324|255325|255329|255330|323055|323056|323063|323065|323066|323067|323072|323076|323077|332658|332661|332665|332666|332668|332669|332684|332687|332689|332692|339671|339674|339675|339680|339685|339692|341029|341034|341041|341042|341051|341054|341055|341058|341061|341062|341063|341064|341065|341068|341069|374263|374659|374672|409320|429713|445402|464417|464418|464425|465024|465026|465036|465040|465047|465215|465218|465222|465224|465225|465237|465239|465287|465289|465298|465303|465308|465310|491142|504911|505119|505331|513348|528961|528965|528979|528986|528988|529078|529084|529086|529088|529394|529396|529400|529557|529559|529566|529569|550779|567218|567220|569039|569040|569545|569546|569548|569549|569556|569557|573459|573461|573466|573470|573473|573474|573478|643459|643460|643461|643462|643463|643464|643465|643466|643467|643468|643469|643470|643471|643472|643473|643474|693712|693713|693717|693718|693719|703293|726207|739746|754629|770289|784985|784987|822100|842577|842578|842579|842580|842581|842582|842583|842584|842585|842586|842587|842588|873965|873966|873967|873968|873969|873970|873971|873972|873973|873974|873975|873976|873977|873978|873979|905864|919589|919590|927391|927392|927393|927394|927395|927396|937004|937005|937006|937007|937008|948959|948960|948961|948962|948963|948964|957466|957467|957468", "text": "Nemaline myopathy 6" }, { - "baseId": "40021|48299|48300|206591|206592|206593|206594|206595|206596|206597|206598|206599|206600|404722|404723|404724|404725|404726|404727|404728|404729|404730|404731|404732|404733|404734|404735|404736|404737|404738|404739|404740|404741|404742|576249|576250|615848|624866|791843|800076|858575", + "upstreamId": "40021|48299|48300|206591|206592|206593|206594|206595|206596|206597|206598|206599|206600|404722|404723|404724|404725|404726|404727|404728|404729|404730|404731|404732|404733|404734|404735|404736|404737|404738|404739|404740|404741|404742|576249|576250|615848|624866|791843|800076|858575", "text": "Moyamoya disease 2" }, { - "baseId": "40024|40025|76858|76902|76906|173761|173762|173763|173764|173902|173903|173904|177350|192069|221373|221374|221375|229033|229034|229037|229038|239119|239121|239122|239125|251017|251018|251022|251028|251031|251032|251035|289566|289567|289570|289571|289577|289579|289591|289593|289595|289596|290329|290332|290335|290338|290339|290342|290345|290348|293431|293441|293442|293445|293446|293867|293869|293871|293872|293875|293885|293890|293894|293896|293906|293921|293923|293927|293937|293954|293958|393446|406156|451975|451978|452209|452465|519198|519209|620122|654318|683569|686375|851283|857587|857602|888432|888433|888434|888435|888436|888437|888438|888439|888440|888441|888442|888443|888444|888445|888446|888447|888448|888449|888450|888451|888452|891622|891623|891624|943428|966791|983459", + "upstreamId": "40024|40025|76858|76902|76906|173761|173762|173763|173764|173902|173903|173904|177350|192069|221373|221374|221375|229033|229034|229037|229038|239119|239121|239122|239125|251017|251018|251022|251028|251031|251032|251035|289566|289567|289570|289571|289577|289579|289591|289593|289595|289596|290329|290332|290335|290338|290339|290342|290345|290348|293431|293441|293442|293445|293446|293867|293869|293871|293872|293875|293885|293890|293894|293896|293906|293921|293923|293927|293937|293954|293958|393446|406156|451975|451978|452209|452465|519198|519209|620122|654318|683569|686375|851283|857587|857602|888432|888433|888434|888435|888436|888437|888438|888439|888440|888441|888442|888443|888444|888445|888446|888447|888448|888449|888450|888451|888452|891622|891623|891624|943428|966791|983459", "text": "Ciliary dyskinesia, primary, 14" }, { - "baseId": "40026|40027|40028|40029|76838|101777|150295|176025|176505|176506|176507|176508|176509|176510|176511|176512|176642|176643|176644|176645|176646|176647|176648|176649|177031|192684|194478|213408|213410|213412|213414|213415|213416|222746|230794|230796|230797|230798|230799|230800|230801|230802|230803|243000|243002|243003|243006|243009|243010|243014|256479|256485|256487|256497|256498|256499|256502|256504|256505|256509|256510|256513|272779|330388|330391|330392|330393|330399|330401|330403|330404|330406|330407|330412|330416|330417|330419|330420|330427|330429|330436|330437|340601|340602|340604|340612|340613|340614|340617|340622|340624|340627|340630|340632|346299|346303|347637|347638|347641|347645|347646|347650|347657|347661|347664|402584|402587|402628|403197|467613|468452|531891|531942|569832|572372|574658|620612|646846|646850|684722|791838|846361|878720|878721|878722|878723|878724|878725|878726|878727|878728|878729|878730|878731|878732|878733|878734|878735|878736|878737|878738|878739|878740|878741|878742|878743|880612|880613|880614|919775|919776|919777|919778|919779|980960", + "upstreamId": "40026|40027|40028|40029|76838|101777|150295|176025|176505|176506|176507|176508|176509|176510|176511|176512|176642|176643|176644|176645|176646|176647|176648|176649|177031|192684|194478|213408|213410|213412|213414|213415|213416|222746|230794|230796|230797|230798|230799|230800|230801|230802|230803|243000|243002|243003|243006|243009|243010|243014|256479|256485|256487|256497|256498|256499|256502|256504|256505|256509|256510|256513|272779|330388|330391|330392|330393|330399|330401|330403|330404|330406|330407|330412|330416|330417|330419|330420|330427|330429|330436|330437|340601|340602|340604|340612|340613|340614|340617|340622|340624|340627|340630|340632|346299|346303|347637|347638|347641|347645|347646|347650|347657|347661|347664|402584|402587|402628|403197|467613|468452|531891|531942|569832|572372|574658|620612|646846|646850|684722|791838|846361|878720|878721|878722|878723|878724|878725|878726|878727|878728|878729|878730|878731|878732|878733|878734|878735|878736|878737|878738|878739|878740|878741|878742|878743|880612|880613|880614|919775|919776|919777|919778|919779|980960", "text": "Ciliary dyskinesia, primary, 15" }, { - "baseId": "40030|40031|108179|108180|108181|108182|141469|141470|141475|141476|211793|211794|211795|211798|327330|327345|327347|327351|327355|337150|337153|337164|337175|337188|343391|343393|343394|343395|343399|343400|343405|343408|343418|343422|344977|344980|344982|344989|344994|344995|344996|344998|345001|345002|345006|345011|345014|429927|430988|505786|505800|538464|861665|876821|876822|876823|876824|876825|876826|876827|876828|876829|876830|876831|876832|876833|876834|876835|876836|876837|876838|876839|876840|876841|876842|876843|876844|880465|880466|970416|970417", + "upstreamId": "40030|40031|108179|108180|108181|108182|141469|141470|141475|141476|211793|211794|211795|211798|327330|327345|327347|327351|327355|337150|337153|337164|337175|337188|343391|343393|343394|343395|343399|343400|343405|343408|343418|343422|344977|344980|344982|344989|344994|344995|344996|344998|345001|345002|345006|345011|345014|429927|430988|505786|505800|538464|861665|876821|876822|876823|876824|876825|876826|876827|876828|876829|876830|876831|876832|876833|876834|876835|876836|876837|876838|876839|876840|876841|876842|876843|876844|880465|880466|970416|970417", "text": "Mitochondrial complex III deficiency, nuclear type 2" }, { - "baseId": "40033|131814|131815|131817|131818|131819|131820|131821|131823|131824|131826|131827|195422|195423|195754|207939|207940|207940|207941|214317|254446|254450|316256|316266|316267|316270|316272|316273|316274|323604|323608|323609|323618|323621|323623|323629|329742|329750|329751|329753|329759|329767|329768|329769|331021|331022|331024|331025|331028|331039|353213|684311|869457|869458|869459|869460|869461|869462|869463|869464|869465|869466|869467|869468|869469|869470|869471|869472|869473|869474|869475|869476|869477|869478|869479|872201|872202|872203|872204|906259|919418", + "upstreamId": "40033|131814|131815|131817|131818|131819|131820|131821|131823|131824|131826|131827|195422|195423|195754|207939|207940|207940|207941|214317|254446|254450|316256|316266|316267|316270|316272|316273|316274|323604|323608|323609|323618|323621|323623|323629|329742|329750|329751|329753|329759|329767|329768|329769|331021|331022|331024|331025|331028|331039|353213|684311|869457|869458|869459|869460|869461|869462|869463|869464|869465|869466|869467|869468|869469|869470|869471|869472|869473|869474|869475|869476|869477|869478|869479|872201|872202|872203|872204|906259|919418", "text": "Meckel syndrome type 8" }, { - "baseId": "40033|620840", + "upstreamId": "40033|620840", "text": "TCTN2-Related Disorders" }, { - "baseId": "40034|40035|40036|40037|78958|152875|177134|177837|181302|181303|181304|181305|181306|181307|195757|254019|312776|312788|312808|318775|318789|318827|321281|321298|324884|324913|324926|324932|325706|325720|325762|325768|325780|330507|337017|450807|517958|695124|695125|697405|825950|903677|918752|931200", + "upstreamId": "40034|40035|40036|40037|78958|152875|177134|177837|181302|181303|181304|181305|181306|181307|195757|254019|312776|312788|312808|318775|318789|318827|321281|321298|324884|324913|324926|324932|325706|325720|325762|325768|325780|330507|337017|450807|517958|695124|695125|697405|825950|903677|918752|931200", "text": "Microphthalmia, isolated 6" }, { - "baseId": "40034|551565", + "upstreamId": "40034|551565", "text": "Nanophthalmos" }, { - "baseId": "40039", + "upstreamId": "40039", "text": "Kel6 antigen" }, { - "baseId": "40040|107250|107251|107252|107253|107254|107255", + "upstreamId": "40040|107250|107251|107252|107253|107254|107255", "text": "Spermatogenic failure 9" }, { - "baseId": "40042|40043|51191|136030|136031|188077|188078|226978|334927|334929|334941|334945|334949|334952|334958|334961|334962|334964|334970|334975|334983|344785|344788|344789|344790|344791|344797|344798|344800|349741|349742|349743|349744|349747|349749|349751|349755|349758|349761|349763|350747|350750|350751|350754|350755|350758|350759|350761|350763|350765|350767|350769|442270|442277|442278|486279|514103|626281|716885|716889|728576|757405|791973|793821|885894|885895|885896|885897|885898|885899|885900|885901|885902|885903|885904|885905|885906|885907|885908|885909|885910|885911|887429|887430|887431|887432|887433|887434", + "upstreamId": "40042|40043|51191|136030|136031|188077|188078|226978|334927|334929|334941|334945|334949|334952|334958|334961|334962|334964|334970|334975|334983|344785|344788|344789|344790|344791|344797|344798|344800|349741|349742|349743|349744|349747|349749|349751|349755|349758|349761|349763|350747|350750|350751|350754|350755|350758|350759|350761|350763|350765|350767|350769|442270|442277|442278|486279|514103|626281|716885|716889|728576|757405|791973|793821|885894|885895|885896|885897|885898|885899|885900|885901|885902|885903|885904|885905|885906|885907|885908|885909|885910|885911|887429|887430|887431|887432|887433|887434", "text": "Spinocerebellar ataxia 35" }, { - "baseId": "40044", + "upstreamId": "40044", "text": "Cardioencephalomyopathy, fatal infantile, due to cytochrome c oxidase deficiency 3" }, { - "baseId": "40045", + "upstreamId": "40045", "text": "Autosomal recessive congenital ichthyosis 8" }, { - "baseId": "40046|792004|919927|919928|919929|920420|964544", + "upstreamId": "40046|792004|919927|919928|919929|920420|964544", "text": "Retinitis pigmentosa 60" }, { - "baseId": "40047|40048|40049|172127|305524|305527|305532|305536|305538|305539|305540|305545|305559|305572|305573|305581|305586|305593|305599|305610|305614|305617|309408|309417|309420|309422|309433|309436|309441|309454|309461|309469|309473|309475|309481|309487|309490|309491|309500|309509|309518|309519|309520|309522|309524|314730|314733|314734|314753|314755|314763|314771|314774|314776|314787|314788|314792|314794|314800|314802|314806|314809|314811|314815|314817|314818|314824|314826|314829|314830|314834|314835|314838|314842|314843|314847|314852|314853|314857|314858|314871|314877|314880|314883|314884|314888|314893|314903|620806|899782|899783|899784|899785|899786|899787|899788|899789|899790|899791|899792|899793|899794|899795|899796|899797|899798|899799|899800|899801|899802|899803|899804|899805|899806|899807|899808|899809|899810|899811|899812|899813|899814|899815|899816|899817|899818|899819|899820|899821|899822|899823|899824|899825|899826|899827|899828|899829|899830|899831|899832|899833|899834|899835|899836|899837|899838|899839|899840|899841|899842|899843|899844|899845|899846|899847|899848|899849|899850|899851|899852|899853|899854", + "upstreamId": "40047|40048|40049|172127|305524|305527|305532|305536|305538|305539|305540|305545|305559|305572|305573|305581|305586|305593|305599|305610|305614|305617|309408|309417|309420|309422|309433|309436|309441|309454|309461|309469|309473|309475|309481|309487|309490|309491|309500|309509|309518|309519|309520|309522|309524|314730|314733|314734|314753|314755|314763|314771|314774|314776|314787|314788|314792|314794|314800|314802|314806|314809|314811|314815|314817|314818|314824|314826|314829|314830|314834|314835|314838|314842|314843|314847|314852|314853|314857|314858|314871|314877|314880|314883|314884|314888|314893|314903|620806|899782|899783|899784|899785|899786|899787|899788|899789|899790|899791|899792|899793|899794|899795|899796|899797|899798|899799|899800|899801|899802|899803|899804|899805|899806|899807|899808|899809|899810|899811|899812|899813|899814|899815|899816|899817|899818|899819|899820|899821|899822|899823|899824|899825|899826|899827|899828|899829|899830|899831|899832|899833|899834|899835|899836|899837|899838|899839|899840|899841|899842|899843|899844|899845|899846|899847|899848|899849|899850|899851|899852|899853|899854", "text": "Chondrodysplasia with joint dislocations, GPAPP type" }, { - "baseId": "40050|40052|40053|40054|48678|246995|455135|455137|455141|455278|455764|456004|521278|521280|521287|521288|521289|521290|521560|521571|521645|521652|521656|521658|521898|521910|560401|560515|560521|563279|563285|563289|563296|565261|589602|634468|634469|634470|634471|634472|634473|634474|634475|699245|699246|710113|710115|710116|710117|721641|721642|721643|735331|735332|749736|749737|765422|765424|765425|787310|799433|831370|831371|831372|831373|831374|831375|831376|831377|831378|831379|831380|831381|831382|924206|924207|924208|924209|924210|924211|933114|933115|933116|933117|933118|940023|944841|944842|944843|944844|944845|954317|954318|954319|980455|981513", + "upstreamId": "40050|40052|40053|40054|48678|246995|455135|455137|455141|455278|455764|456004|521278|521280|521287|521288|521289|521290|521560|521571|521645|521652|521656|521658|521898|521910|560401|560515|560521|563279|563285|563289|563296|565261|589602|634468|634469|634470|634471|634472|634473|634474|634475|699245|699246|710113|710115|710116|710117|721641|721642|721643|735331|735332|749736|749737|765422|765424|765425|787310|799433|831370|831371|831372|831373|831374|831375|831376|831377|831378|831379|831380|831381|831382|924206|924207|924208|924209|924210|924211|933114|933115|933116|933117|933118|940023|944841|944842|944843|944844|944845|954317|954318|954319|980455|981513", "text": "Immunodeficiency-centromeric instability-facial anomalies syndrome 2" }, { - "baseId": "40055|620862", + "upstreamId": "40055|620862", "text": "Cranioectodermal dysplasia 3" }, { - "baseId": "40058", + "upstreamId": "40058", "text": "Oculomaxillofacial dysostosis" }, { - "baseId": "40059|40060|256098|256099|256100|256103|327647|337455|337456|343708|343713|345174|375803|684664|876991|876992|876993|876994|876995", + "upstreamId": "40059|40060|256098|256099|256100|256103|327647|337455|337456|343708|343713|345174|375803|684664|876991|876992|876993|876994|876995", "text": "Meckel syndrome, type 9" }, { - "baseId": "40059|214358|249229|249231|645399", + "upstreamId": "40059|214358|249229|249231|645399", "text": "Joubert syndrome 27" }, { - "baseId": "40061|40062|919877|919878|980966", + "upstreamId": "40061|40062|919877|919878|980966", "text": "Three M syndrome 3" }, { - "baseId": "40063|131983|131984", + "upstreamId": "40063|131983|131984", "text": "Spinocerebellar ataxia 36" }, { - "baseId": "40064|40065|40066|918658|918659", + "upstreamId": "40064|40065|40066|918658|918659", "text": "Myopia 21, autosomal dominant" }, { - "baseId": "40067|40068|40069|40070|40071|40072|192504|292157|293603|293604|293607|293611|296910|296913|296918|406392|500449|500455|891719|891720|891721|918873|969116|969117|969118", + "upstreamId": "40067|40068|40069|40070|40071|40072|192504|292157|293603|293604|293607|293611|296910|296913|296918|406392|500449|500455|891719|891720|891721|918873|969116|969117|969118", "text": "Brittle cornea syndrome 2" }, { - "baseId": "40073|40074|40075|40076|40077|40078|40079|251174|251175|251176|251177|251179|251180|251181|251182|251183|251184|251188|251189|271697|290778|290787|290792|290794|290798|290799|290801|290803|290812|290813|290814|290815|290818|290819|290824|290830|290831|290834|290839|290840|290843|290849|291691|291693|291694|291695|291696|291698|291701|291702|291706|291710|291717|291718|291721|291734|291736|291746|291762|291764|291767|291768|291769|291773|291775|291794|291795|291796|291798|291799|294914|294915|294916|294917|294918|294921|294925|294926|294931|294936|294953|294954|294955|294956|294958|294961|294962|294964|294965|294982|294983|295288|295290|295291|295294|295303|295305|295309|295312|295316|295318|295322|295324|295340|295341|295353|295355|295357|295358|295359|404766|428194|428195|428196|428197|428198|615339|615340|615341|615342|615343|615344|615345|615347|615348|698125|698126|708881|708886|708887|720475|720480|734089|744063|748301|777411|792738|801075|801076|801077|889145|889146|889147|889148|889149|889150|889151|889152|889153|889154|889155|889156|889157|889158|889159|889160|889161|889162|889163|889164|889165|889166|889167|889168|889169|889170|889171|889172|889173|889174|889175|889176|889178|889179|889180|889181|889182|889183|889184|889185|889186|889187|889188|889189|889190|889191|889192|889193|889194|889195|889196|889197|889198|889199|889200|889201|889202|889203|889204|889205|889206|889207|889208|889209|889210|889211|889212|889213|889214|889215|889216|889217|889218|889219|889220|889221|889222|891664|891665|891666|891667|891668|891669|891670|891671|891672|970385|970386|970387|970388|970389|970390|970391|970392|970393|970394|970395|970396|970397|970398|970399|970400|970401|970402|970403|970404|970405|970406", + "upstreamId": "40073|40074|40075|40076|40077|40078|40079|251174|251175|251176|251177|251179|251180|251181|251182|251183|251184|251188|251189|271697|290778|290787|290792|290794|290798|290799|290801|290803|290812|290813|290814|290815|290818|290819|290824|290830|290831|290834|290839|290840|290843|290849|291691|291693|291694|291695|291696|291698|291701|291702|291706|291710|291717|291718|291721|291734|291736|291746|291762|291764|291767|291768|291769|291773|291775|291794|291795|291796|291798|291799|294914|294915|294916|294917|294918|294921|294925|294926|294931|294936|294953|294954|294955|294956|294958|294961|294962|294964|294965|294982|294983|295288|295290|295291|295294|295303|295305|295309|295312|295316|295318|295322|295324|295340|295341|295353|295355|295357|295358|295359|404766|428194|428195|428196|428197|428198|615339|615340|615341|615342|615343|615344|615345|615347|615348|698125|698126|708881|708886|708887|720475|720480|734089|744063|748301|777411|792738|801075|801076|801077|889145|889146|889147|889148|889149|889150|889151|889152|889153|889154|889155|889156|889157|889158|889159|889160|889161|889162|889163|889164|889165|889166|889167|889168|889169|889170|889171|889172|889173|889174|889175|889176|889178|889179|889180|889181|889182|889183|889184|889185|889186|889187|889188|889189|889190|889191|889192|889193|889194|889195|889196|889197|889198|889199|889200|889201|889202|889203|889204|889205|889206|889207|889208|889209|889210|889211|889212|889213|889214|889215|889216|889217|889218|889219|889220|889221|889222|891664|891665|891666|891667|891668|891669|891670|891671|891672|970385|970386|970387|970388|970389|970390|970391|970392|970393|970394|970395|970396|970397|970398|970399|970400|970401|970402|970403|970404|970405|970406", "text": "Gray platelet syndrome" }, { - "baseId": "40080|40081|40082|40083|238667|238668|238669|238670|238671|238672|238673|238674|238675|238676|238677|238678|238679|238680|238681|238682|238683|238684|238685|238686|238687|238688|238689|238690|238691|238692|238693|238694|248479|250655|250656|250657|285216|285217|285220|285224|285226|285230|285244|285249|285251|285261|285896|285899|285900|285901|285902|285904|285905|288181|288182|288194|288196|288210|288212|288213|288214|288215|288216|288221|288232|288612|288613|288618|288621|288622|288625|288627|288632|288649|288650|288653|288654|288655|391466|391549|392394|392398|392402|392408|392412|392417|392421|392423|392425|392429|392432|392436|392439|392445|392446|392450|392459|392469|392471|392490|392496|392501|392502|392512|392513|392523|392525|392528|392532|392533|392537|392542|392545|392549|392552|392558|392561|392568|392570|392573|392596|392598|392600|392602|392605|392615|392616|392618|392628|392632|392634|392637|392639|392640|392647|392649|392651|392660|392746|392750|392754|392758|392761|392766|392770|392776|392786|392787|392789|392798|392799|392801|392803|392806|392812|392816|392818|392822|405655|448392|450406|450410|450413|450415|450418|450424|450427|450432|450448|450449|450451|450453|450455|450460|450465|450466|450468|450472|450475|450555|450556|450559|450560|450564|450566|450568|450572|450574|450576|450577|450580|450587|450589|450590|450592|450593|450600|450611|450616|450618|450627|450632|450634|450637|450685|450687|450690|450716|450722|450726|450736|450738|450739|450748|450753|450754|450756|450757|450765|450768|450771|450773|450774|450776|450777|450779|450780|450781|450787|450790|450793|450795|450797|450798|450799|450800|450801|450804|450805|450821|450828|450829|450832|450834|450836|450838|450841|450843|450848|450850|450853|516316|517760|517765|517771|517779|517782|517784|517787|517788|517789|517791|517804|517811|517813|517816|517819|517825|517837|517844|517850|517851|517855|517860|517862|517863|517864|517866|517868|517870|517871|517872|517873|517875|517877|517878|517881|517882|517884|517885|517888|517889|517891|517893|517896|517897|517898|517900|517903|517904|517905|517906|517909|517912|517917|517918|517920|517922|517923|517927|517929|517930|517931|517934|517937|517941|517943|517951|517959|517960|517966|517967|517971|517973|517979|517986|517988|517994|517996|518003|518014|518016|518020|518023|518025|557487|557904|557906|557908|557910|557912|557914|557916|557918|557920|557922|557924|557926|557928|557930|557932|557934|557936|557957|557959|557961|557963|557965|557967|557969|557971|557973|557975|557977|557979|557981|557983|557985|557987|557989|557991|557993|557995|557997|558082|558305|558639|559135|559139|559141|559143|559145|559147|559149|559151|559153|559155|559157|559159|559161|559163|559165|559167|559169|559171|559173|559175|561045|561046|561053|561056|561058|561060|561067|561071|561072|561078|561080|561085|578509|629539|629540|629541|629542|629543|629544|629545|629546|629547|629548|629549|629550|629551|629552|629553|629554|629555|629556|629557|629558|629559|629560|629561|629562|629563|629564|629565|629566|629567|629568|629569|629570|629571|629572|629573|629574|629575|629576|629577|629578|629579|629580|629581|629582|629583|629584|629585|629586|629587|629588|629589|629590|629591|629592|629593|629594|629595|629596|629597|629598|629599|629600|629601|629603|629604|629605|629606|629607|629608|629609|629610|629611|629612|629613|629614|629615|629616|629617|629618|650733|650734|650752|650801|650809|650815|650943|650957|650968|650980|650982|650985|683489|683490|686150|686151|686152|686154|686155|686156|686157|686158|686159|686161|686162|689708|689709|689710|691036|691037|691040|691041|691042|691043|691044|691046|691048|691049|691050|695119|695120|695123|697387|697389|708104|719701|719702|733255|747405|763040|763051|777260|781236|781237|781238|819136|819137|819138|819139|819140|819141|819142|825844|825845|825846|825847|825848|825849|825850|825851|825852|825853|825854|825855|825856|825857|825858|825859|825860|825861|825862|825863|825864|825865|825866|825867|825868|825869|825870|825871|825872|825873|825874|825875|825876|825877|825878|825879|825880|825881|825882|825883|825884|825885|825886|825887|825888|825889|825890|825891|825892|825893|825894|825895|825896|825897|825898|825899|825900|825901|825902|825903|825904|825905|825906|825907|825908|825909|825910|825911|825912|825913|825914|825915|825916|825917|825918|825919|825920|825921|825922|825923|825924|825925|825926|825927|825928|825929|825930|825931|825932|825933|825934|825935|825936|825937|825938|825939|825940|825941|825942|825943|825944|825945|825946|825947|825948|825949|850843|850890|850892|851160|851162|851408|884099|884100|884101|884102|884103|884104|884105|884106|884107|884108|884109|884110|884111|884112|884113|884114|884115|884116|884117|884118|884119|884120|887311|887312|887313|887314|922604|922605|922606|922607|922608|922609|922610|922611|922612|922613|922614|922615|922616|922617|922618|922619|922620|922621|922622|922623|922624|922625|922626|922627|922628|922629|922630|922631|922632|922633|922634|922635|922636|931176|931177|931178|931179|931180|931181|931182|931183|931184|931185|931186|931187|931188|931189|931190|931191|931192|931193|931194|931195|931196|931197|931198|931199|939879|940702|942643|942644|942645|942646|942647|942648|942649|942650|942651|942652|942653|942654|942655|942656|942657|942658|942659|942660|942661|942662|942663|942664|942665|942666|942667|942668|942669|942670|942671|942672|942673|942674|952966|952967|952968|952969|952970|952971|952972|952973|952974|952975|952976|952977|952978|952979|952980|952981|952982|952983|960466|970354", + "upstreamId": "40080|40081|40082|40083|238667|238668|238669|238670|238671|238672|238673|238674|238675|238676|238677|238678|238679|238680|238681|238682|238683|238684|238685|238686|238687|238688|238689|238690|238691|238692|238693|238694|248479|250655|250656|250657|285216|285217|285220|285224|285226|285230|285244|285249|285251|285261|285896|285899|285900|285901|285902|285904|285905|288181|288182|288194|288196|288210|288212|288213|288214|288215|288216|288221|288232|288612|288613|288618|288621|288622|288625|288627|288632|288649|288650|288653|288654|288655|391466|391549|392394|392398|392402|392408|392412|392417|392421|392423|392425|392429|392432|392436|392439|392445|392446|392450|392459|392469|392471|392490|392496|392501|392502|392512|392513|392523|392525|392528|392532|392533|392537|392542|392545|392549|392552|392558|392561|392568|392570|392573|392596|392598|392600|392602|392605|392615|392616|392618|392628|392632|392634|392637|392639|392640|392647|392649|392651|392660|392746|392750|392754|392758|392761|392766|392770|392776|392786|392787|392789|392798|392799|392801|392803|392806|392812|392816|392818|392822|405655|448392|450406|450410|450413|450415|450418|450424|450427|450432|450448|450449|450451|450453|450455|450460|450465|450466|450468|450472|450475|450555|450556|450559|450560|450564|450566|450568|450572|450574|450576|450577|450580|450587|450589|450590|450592|450593|450600|450611|450616|450618|450627|450632|450634|450637|450685|450687|450690|450716|450722|450726|450736|450738|450739|450748|450753|450754|450756|450757|450765|450768|450771|450773|450774|450776|450777|450779|450780|450781|450787|450790|450793|450795|450797|450798|450799|450800|450801|450804|450805|450821|450828|450829|450832|450834|450836|450838|450841|450843|450848|450850|450853|516316|517760|517765|517771|517779|517782|517784|517787|517788|517789|517791|517804|517811|517813|517816|517819|517825|517837|517844|517850|517851|517855|517860|517862|517863|517864|517866|517868|517870|517871|517872|517873|517875|517877|517878|517881|517882|517884|517885|517888|517889|517891|517893|517896|517897|517898|517900|517903|517904|517905|517906|517909|517912|517917|517918|517920|517922|517923|517927|517929|517930|517931|517934|517937|517941|517943|517951|517959|517960|517966|517967|517971|517973|517979|517986|517988|517994|517996|518003|518014|518016|518020|518023|518025|557487|557904|557906|557908|557910|557912|557914|557916|557918|557920|557922|557924|557926|557928|557930|557932|557934|557936|557957|557959|557961|557963|557965|557967|557969|557971|557973|557975|557977|557979|557981|557983|557985|557987|557989|557991|557993|557995|557997|558082|558305|558639|559135|559139|559141|559143|559145|559147|559149|559151|559153|559155|559157|559159|559161|559163|559165|559167|559169|559171|559173|559175|561045|561046|561053|561056|561058|561060|561067|561071|561072|561078|561080|561085|578509|629539|629540|629541|629542|629543|629544|629545|629546|629547|629548|629549|629550|629551|629552|629553|629554|629555|629556|629557|629558|629559|629560|629561|629562|629563|629564|629565|629566|629567|629568|629569|629570|629571|629572|629573|629574|629575|629576|629577|629578|629579|629580|629581|629582|629583|629584|629585|629586|629587|629588|629589|629590|629591|629592|629593|629594|629595|629596|629597|629598|629599|629600|629601|629603|629604|629605|629606|629607|629608|629609|629610|629611|629612|629613|629614|629615|629616|629617|629618|650733|650734|650752|650801|650809|650815|650943|650957|650968|650980|650982|650985|683489|683490|686150|686151|686152|686154|686155|686156|686157|686158|686159|686161|686162|689708|689709|689710|691036|691037|691040|691041|691042|691043|691044|691046|691048|691049|691050|695119|695120|695123|697387|697389|708104|719701|719702|733255|747405|763040|763051|777260|781236|781237|781238|819136|819137|819138|819139|819140|819141|819142|825844|825845|825846|825847|825848|825849|825850|825851|825852|825853|825854|825855|825856|825857|825858|825859|825860|825861|825862|825863|825864|825865|825866|825867|825868|825869|825870|825871|825872|825873|825874|825875|825876|825877|825878|825879|825880|825881|825882|825883|825884|825885|825886|825887|825888|825889|825890|825891|825892|825893|825894|825895|825896|825897|825898|825899|825900|825901|825902|825903|825904|825905|825906|825907|825908|825909|825910|825911|825912|825913|825914|825915|825916|825917|825918|825919|825920|825921|825922|825923|825924|825925|825926|825927|825928|825929|825930|825931|825932|825933|825934|825935|825936|825937|825938|825939|825940|825941|825942|825943|825944|825945|825946|825947|825948|825949|850843|850890|850892|851160|851162|851408|884099|884100|884101|884102|884103|884104|884105|884106|884107|884108|884109|884110|884111|884112|884113|884114|884115|884116|884117|884118|884119|884120|887311|887312|887313|887314|922604|922605|922606|922607|922608|922609|922610|922611|922612|922613|922614|922615|922616|922617|922618|922619|922620|922621|922622|922623|922624|922625|922626|922627|922628|922629|922630|922631|922632|922633|922634|922635|922636|931176|931177|931178|931179|931180|931181|931182|931183|931184|931185|931186|931187|931188|931189|931190|931191|931192|931193|931194|931195|931196|931197|931198|931199|939879|940702|942643|942644|942645|942646|942647|942648|942649|942650|942651|942652|942653|942654|942655|942656|942657|942658|942659|942660|942661|942662|942663|942664|942665|942666|942667|942668|942669|942670|942671|942672|942673|942674|952966|952967|952968|952969|952970|952971|952972|952973|952974|952975|952976|952977|952978|952979|952980|952981|952982|952983|960466|970354", "text": "Perlman syndrome" }, { - "baseId": "40085|70470|70471|181457|198640|247457|247458|247459|256756|256758|256759|490706|508908|508909|508910|508911|508912|508913|508914|508915|508916|512962|513656|514257|514258|576183|971111", + "upstreamId": "40085|70470|70471|181457|198640|247457|247458|247459|256756|256758|256759|490706|508908|508909|508910|508911|508912|508913|508914|508915|508916|512962|513656|514257|514258|576183|971111", "text": "Adams-Oliver syndrome 2" }, { - "baseId": "40086|226420|610419|789716|789717|789718|789719", + "upstreamId": "40086|226420|610419|789716|789717|789718|789719", "text": "Spinal muscular atrophy with congenital bone fractures 2" }, { - "baseId": "40090|48234|48235|523487|562062|562513|564811|564813|578468|622387|636782|636783|636784|636785|636786|700470|700471|700472|700473|700474|711396|711397|711399|711400|722927|730551|751000|777694|777917|779288|779491|834294|834295|834296|834297|834298|852419|925069|945913|945914|945915|955341|955342", + "upstreamId": "40090|48234|48235|523487|562062|562513|564811|564813|578468|622387|636782|636783|636784|636785|636786|700470|700471|700472|700473|700474|711396|711397|711399|711400|722927|730551|751000|777694|777917|779288|779491|834294|834295|834296|834297|834298|852419|925069|945913|945914|945915|955341|955342", "text": "5-Oxoprolinase deficiency" }, { - "baseId": "40091|40092|40093|40094|40095|40096|40097|40098|40099|200311|374719|374728|374736|375617|375620|375624|375625|375764|375770|375783|375793|375794|375801|377904|377918|409782|433338|433339|505665|505666|505854|506592|506600|506607|530701|568454|568456|570613|574204|589790|645124|645125|645126|645127|645128|645129|645130|645131|645132|645133|656394|656396|715199|715200|715201|715202|726924|726925|726927|726928|726929|726930|726931|726932|726933|731119|740502|744896|744945|745259|755536|755538|755540|755541|755542|771183|771184|771185|771186|771187|771188|771189|771190|771191|771192|771193|771194|771195|771196|771198|776412|776598|779853|785430|785431|785432|785433|787943|788103|820913|844482|844483|844484|844485|844486|844487|844488|844489|844490|852133|919683|928004|928005|937658|937659|937660|949627|949628|949629|949630|957914|957915|957916|957917|957918|957919|957920|957921|965208", + "upstreamId": "40091|40092|40093|40094|40095|40096|40097|40098|40099|200311|374719|374728|374736|375617|375620|375624|375625|375764|375770|375783|375793|375794|375801|377904|377918|409782|433338|433339|505665|505666|505854|506592|506600|506607|530701|568454|568456|570613|574204|589790|645124|645125|645126|645127|645128|645129|645130|645131|645132|645133|656394|656396|715199|715200|715201|715202|726924|726925|726927|726928|726929|726930|726931|726932|726933|731119|740502|744896|744945|745259|755536|755538|755540|755541|755542|771183|771184|771185|771186|771187|771188|771189|771190|771191|771192|771193|771194|771195|771196|771198|776412|776598|779853|785430|785431|785432|785433|787943|788103|820913|844482|844483|844484|844485|844486|844487|844488|844489|844490|852133|919683|928004|928005|937658|937659|937660|949627|949628|949629|949630|957914|957915|957916|957917|957918|957919|957920|957921|965208", "text": "Combined malonic and methylmalonic aciduria" }, { - "baseId": "40100|40101|40102|40103|40104|40105|40106|40123|49664|49665|49666|49667|49668|49669|49670|49671|49672|49673|135446|199793|207793|207794|269442|311174|311179|311180|311183|311184|311185|311189|311192|311202|311204|311205|311206|311221|311222|311226|311227|311232|311233|311239|316493|316494|316495|316518|316519|316520|316527|316529|316531|316534|316547|316548|316549|316551|316552|316564|316565|316572|316576|316579|316580|316619|316628|316629|316631|316632|316633|316639|316640|316641|316647|316650|316651|316654|316655|316656|322564|322567|322574|322575|322576|322588|322596|322597|322601|322603|322606|322611|322613|322617|322619|322626|322627|322631|322634|322657|322660|322662|322663|322665|322667|322669|323315|323316|323322|323342|323357|323359|323361|323362|323364|323365|323371|323372|323373|323378|323380|323381|323384|323390|353154|364113|421801|429128|439194|444659|482006|578488|624053|626348|672363|672364|672365|672366|701442|712482|724081|730712|737611|737614|752285|777881|779482|805020|866305|866306|866307|866308|866309|866310|866311|866312|866313|866314|866315|866316|866317|866318|866319|866320|866321|866322|866323|866324|866325|866326|866327|866328|866329|866330|866331|866332|866333|866334|866335|866336|866337|866338|866339|866340|866341|866342|866343|866344|866345|866346|866347|868507|868508|868509|868510|868511|904249|964258|964843", + "upstreamId": "40100|40101|40102|40103|40104|40105|40106|40123|49664|49665|49666|49667|49668|49669|49670|49671|49672|49673|135446|199793|207793|207794|269442|311174|311179|311180|311183|311184|311185|311189|311192|311202|311204|311205|311206|311221|311222|311226|311227|311232|311233|311239|316493|316494|316495|316518|316519|316520|316527|316529|316531|316534|316547|316548|316549|316551|316552|316564|316565|316572|316576|316579|316580|316619|316628|316629|316631|316632|316633|316639|316640|316641|316647|316650|316651|316654|316655|316656|322564|322567|322574|322575|322576|322588|322596|322597|322601|322603|322606|322611|322613|322617|322619|322626|322627|322631|322634|322657|322660|322662|322663|322665|322667|322669|323315|323316|323322|323342|323357|323359|323361|323362|323364|323365|323371|323372|323373|323378|323380|323381|323384|323390|353154|364113|421801|429128|439194|444659|482006|578488|624053|626348|672363|672364|672365|672366|701442|712482|724081|730712|737611|737614|752285|777881|779482|805020|866305|866306|866307|866308|866309|866310|866311|866312|866313|866314|866315|866316|866317|866318|866319|866320|866321|866322|866323|866324|866325|866326|866327|866328|866329|866330|866331|866332|866333|866334|866335|866336|866337|866338|866339|866340|866341|866342|866343|866344|866345|866346|866347|868507|868508|868509|868510|868511|904249|964258|964843", "text": "Hypomyelinating leukodystrophy 7" }, { - "baseId": "40101|40103|237149|425890|439194|444659|540040|540041|540042|540043|540044|540045|540046|540047|540048|540050|540051|540052|609288|609290|609291|610434|610435|610436|919292|920286", + "upstreamId": "40101|40103|237149|425890|439194|444659|540040|540041|540042|540043|540044|540045|540046|540047|540048|540050|540051|540052|609288|609290|609291|610434|610435|610436|919292|920286", "text": "Neonatal pseudo-hydrocephalic progeroid syndrome" }, { - "baseId": "40107|107259|107260|107261|107262|107263|447720|447952|448067|448069|685680|685681|685682|685683|690567|690568|707256|707258|920146", + "upstreamId": "40107|107259|107260|107261|107262|107263|447720|447952|448067|448069|685680|685681|685682|685683|690567|690568|707256|707258|920146", "text": "Van der Woude syndrome 2" }, { - "baseId": "40109", + "upstreamId": "40109", "text": "Glucocorticoid therapy, response to" }, { - "baseId": "40110|40111|818282|962165|980337|980842", + "upstreamId": "40110|40111|818282|962165|980337|980842", "text": "Renal dysplasia, cystic, susceptibility to" }, { - "baseId": "40112|40113|40114|40115|40115|40304|94434|94435|133985|133987|208565|227688|243317|243318|270629|332963|332964|332966|332967|332970|332984|332992|332997|333000|333006|333014|333023|333024|333025|333030|333034|333036|333038|333040|333042|333043|343108|343109|343110|343124|343125|343138|343147|343152|343155|343156|343163|348467|348469|348470|348473|348475|348481|348485|348486|348489|348492|348493|348495|348498|348500|348501|348505|348507|348508|348510|348512|348513|348516|348517|348526|348527|348534|348536|348537|348541|348542|349591|349592|349595|349597|349598|349599|349600|349603|349604|349607|349608|349611|349612|349615|349618|349619|349620|349621|349622|349623|349624|349627|349628|349629|349631|353491|377370|377571|389176|413502|430169|430170|507240|608843|608844|608864|622455|624086|624087|861656|880212|880213|880214|880215|880216|880217|880218|880219|880220|880221|880222|880223|880224|880225|880226|880227|880228|880229|880230|880231|880232|880233|880234|880235|880236|880237|880238|880239|880240|880241|880242|880243|880244|880245|880246|880247|880248|880249|880250|880251|880252|880253|970136", + "upstreamId": "40112|40113|40114|40115|40115|40304|94434|94435|133985|133987|208565|227688|243317|243318|270629|332963|332964|332966|332967|332970|332984|332992|332997|333000|333006|333014|333023|333024|333025|333030|333034|333036|333038|333040|333042|333043|343108|343109|343110|343124|343125|343138|343147|343152|343155|343156|343163|348467|348469|348470|348473|348475|348481|348485|348486|348489|348492|348493|348495|348498|348500|348501|348505|348507|348508|348510|348512|348513|348516|348517|348526|348527|348534|348536|348537|348541|348542|349591|349592|349595|349597|349598|349599|349600|349603|349604|349607|349608|349611|349612|349615|349618|349619|349620|349621|349622|349623|349624|349627|349628|349629|349631|353491|377370|377571|389176|413502|430169|430170|507240|608843|608844|608864|622455|624086|624087|861656|880212|880213|880214|880215|880216|880217|880218|880219|880220|880221|880222|880223|880224|880225|880226|880227|880228|880229|880230|880231|880232|880233|880234|880235|880236|880237|880238|880239|880240|880241|880242|880243|880244|880245|880246|880247|880248|880249|880250|880251|880252|880253|970136", "text": "Neurodegeneration with brain iron accumulation 4" }, { - "baseId": "40112|40114|40115|40115|94434|133987|181460|243317|243318|270629|349629|377370|377371|468606|469533|470004|470592|506829|532827|573001|608843|647893|653158|688979|821247|847484|847485|847486|928911|958590", + "upstreamId": "40112|40114|40115|40115|94434|133987|181460|243317|243318|270629|349629|377370|377371|468606|469533|470004|470592|506829|532827|573001|608843|647893|653158|688979|821247|847484|847485|847486|928911|958590", "text": "Spastic paraplegia 43, autosomal recessive" }, { - "baseId": "40113", + "upstreamId": "40113", "text": "Abnormality of iron homeostasis" }, { - "baseId": "40114|40115|103972|104114|360907|360961|861284", + "upstreamId": "40114|40115|103972|104114|360907|360961|861284", "text": "Mental deterioration" }, { - "baseId": "40114|40115|513915", + "upstreamId": "40114|40115|513915", "text": "Adult-onset night blindness" }, { - "baseId": "40117|40118|40119|40120|40121|40122|40123|40123|40124|135447|135448|135449|207933|207934|269442|269442|315851|315852|315855|315858|315861|315862|315863|315872|315873|315874|322947|322949|322953|322954|322962|322964|322967|322968|322974|322976|322980|322992|322994|323000|323002|329011|329012|329023|329024|329027|329028|329038|329039|330222|330223|330224|330226|330233|330236|330243|330244|362748|408505|482006|611987|620839|738412|858693|869149|869150|869151|869152|869153|869154|869155|869156|869157|869158|869159|869160|869161|869162|869163|869164|869165|872178|872179|872180|872181|872182|872183|872184|919403|961616", + "upstreamId": "40117|40118|40119|40120|40121|40122|40123|40123|40124|135447|135448|135449|207933|207934|269442|269442|315851|315852|315855|315858|315861|315862|315863|315872|315873|315874|322947|322949|322953|322954|322962|322964|322967|322968|322974|322976|322980|322992|322994|323000|323002|329011|329012|329023|329024|329027|329028|329038|329039|330222|330223|330224|330226|330233|330236|330243|330244|362748|408505|482006|611987|620839|738412|858693|869149|869150|869151|869152|869153|869154|869155|869156|869157|869158|869159|869160|869161|869162|869163|869164|869165|872178|872179|872180|872181|872182|872183|872184|919403|961616", "text": "Hypomyelinating leukodystrophy 8, with or without oligodontia and/or hypogonadotropic hypogonadism" }, { - "baseId": "40123|361949", + "upstreamId": "40123|361949", "text": "Cerebellar hypoplasia with endosteal sclerosis" }, { - "baseId": "40123|311191|311239|316543|316644|322577|322625|322671|322683|322935|323324|323393|330216|861638", + "upstreamId": "40123|311191|311239|316543|316644|322577|322625|322671|322683|322935|323324|323393|330216|861638", "text": "Pol III-related leukodystrophy" }, { - "baseId": "40123|977249|977250", + "upstreamId": "40123|977249|977250", "text": "POLR3-related leukodystrophy" }, { - "baseId": "40126|40127|40128|40133|40134|48351|48355|76664|76665|76666|76666|135484|142516|203303|268829|401080|401127|434539|445560|466359|466360|513169|529903|529907|529988|529990|529993|530240|551738|568080|570100|574025|614422|802010", + "upstreamId": "40126|40127|40128|40133|40134|48351|48355|76664|76665|76666|76666|135484|142516|203303|268829|401080|401127|434539|445560|466359|466360|513169|529903|529907|529988|529990|529993|530240|551738|568080|570100|574025|614422|802010", "text": "Episodic kinesigenic dyskinesia 1" }, { - "baseId": "40128|40129|40131|40132|40133|48352|76666|76666|268829|360996|401127|486761|574025|612309|614422|919638|919639|919640|964450|964451", + "upstreamId": "40128|40129|40131|40132|40133|48352|76666|76666|268829|360996|401127|486761|574025|612309|614422|919638|919639|919640|964450|964451", "text": "Infantile convulsions and choreoathetosis" }, { - "baseId": "40129|40131|48351|76665|76666|102388|135484|135485|142516|142517|142518|177990|192568|194540|203296|203298|203301|203302|203306|203309|203310|203311|203316|242399|264624|265740|268829|360175|360388|375084|375094|401127|401160|401889|409613|409614|441899|445558|445564|445565|464834|465541|465631|466357|466363|466366|466367|466626|491156|505578|529913|529985|530235|530236|530411|568082|568093|569809|570234|570237|570249|574025|574027|579992|621910|644575|644576|644577|644578|644579|644580|644581|644582|644583|644584|644585|644586|644587|644588|652624|652628|653013|688562|688564|693844|785253|822116|822117|843731|843732|843733|843734|843735|843736|843737|843738|843739|843740|843741|843742|843743|843744|843745|843746|843747|852107|852109|860252|860254|927767|927768|927769|927770|927771|927772|927773|937404|937405|937406|937407|937408|937409|937410|937411|949357|949358|949359|949360|949361|949362|949363|949364|949365|949366|957730|957731", + "upstreamId": "40129|40131|48351|76665|76666|102388|135484|135485|142516|142517|142518|177990|192568|194540|203296|203298|203301|203302|203306|203309|203310|203311|203316|242399|264624|265740|268829|360175|360388|375084|375094|401127|401160|401889|409613|409614|441899|445558|445564|445565|464834|465541|465631|466357|466363|466366|466367|466626|491156|505578|529913|529985|530235|530236|530411|568082|568093|569809|570234|570237|570249|574025|574027|579992|621910|644575|644576|644577|644578|644579|644580|644581|644582|644583|644584|644585|644586|644587|644588|652624|652628|653013|688562|688564|693844|785253|822116|822117|843731|843732|843733|843734|843735|843736|843737|843738|843739|843740|843741|843742|843743|843744|843745|843746|843747|852107|852109|860252|860254|927767|927768|927769|927770|927771|927772|927773|937404|937405|937406|937407|937408|937409|937410|937411|949357|949358|949359|949360|949361|949362|949363|949364|949365|949366|957730|957731", "text": "Paroxysmal kinesigenic dyskinesia" }, { - "baseId": "40130|48351|48353|48354|48355|76666|76666|181171|268829|401127|434539|491156|574025|614422|802011|802059|959507|964449", + "upstreamId": "40130|48351|48353|48354|48355|76666|76666|181171|268829|401127|434539|491156|574025|614422|802011|802059|959507|964449", "text": "Seizures, benign familial infantile, 2" }, { - "baseId": "40135|40136|330145|330154|330155|330157|330158|330160|330164|330168|330169|330170|330177|330179|330182|330184|330188|330190|330193|340348|340350|340352|340356|340359|340361|340375|340377|340386|340395|340396|340403|340404|340407|340408|340410|340412|346084|346088|346089|346094|346095|346096|346099|346100|346101|346105|346107|346109|346112|346113|346114|346119|346120|346124|346125|346128|346129|346130|347386|347387|347388|347389|347390|347394|347399|347402|347403|347406|347407|347411|347419|347420|347429|347433|347434|347437|347438|353458|353459|353460|620609|878589|878590|878591|878592|878593|878594|878595|878596|878597|878598|878599|878600|878601|878602|878603|878604|878605|878606|878607|878608|878609|878610|878611|878612|878613|878614|878615|878616|878617|878618|878619|878620|880603|880604|880605|961339", + "upstreamId": "40135|40136|330145|330154|330155|330157|330158|330160|330164|330168|330169|330170|330177|330179|330182|330184|330188|330190|330193|340348|340350|340352|340356|340359|340361|340375|340377|340386|340395|340396|340403|340404|340407|340408|340410|340412|346084|346088|346089|346094|346095|346096|346099|346100|346101|346105|346107|346109|346112|346113|346114|346119|346120|346124|346125|346128|346129|346130|347386|347387|347388|347389|347390|347394|347399|347402|347403|347406|347407|347411|347419|347420|347429|347433|347434|347437|347438|353458|353459|353460|620609|878589|878590|878591|878592|878593|878594|878595|878596|878597|878598|878599|878600|878601|878602|878603|878604|878605|878606|878607|878608|878609|878610|878611|878612|878613|878614|878615|878616|878617|878618|878619|878620|880603|880604|880605|961339", "text": "Palmoplantar keratoderma-esophageal carcinoma syndrome" }, { - "baseId": "40137|40138|40139|40140|40141|136038|136039|136040|190780|193468|194337|195277|206938|227230|250478|250480|250487|250491|270773|271183|283948|283950|283951|283953|283954|283958|284644|284649|284652|284654|284670|284678|284679|284680|284682|284683|284684|286558|286564|286573|286578|286602|286611|286615|286617|286621|286622|286626|287013|287016|287021|287033|287034|287035|287036|287037|287038|287039|359341|366304|366861|517638|557477|622866|622867|629291|629292|650936|679821|691006|697247|697248|707944|707945|719518|733073|774661|825571|825572|825573|825574|825575|825576|825577|825578|825579|825580|825581|825582|825583|825584|850872|851143|883261|883262|883263|883264|883265|883266|883267|883268|883269|883270|883271|883272|883273|883274|883275|883276|883277|883278|883279|883280|883281|883282|883283|883284|883285|883286|883287|883288|883289|883290|883291|883292|883293|883294|883295|883296|883297|883298|883299|883300|883301|883302|883303|883304|883305|883306|883307|883308|883309|887237|922514|922515|939870|942558|942559|942560|942561|952882|952883|952884|959621", + "upstreamId": "40137|40138|40139|40140|40141|136038|136039|136040|190780|193468|194337|195277|206938|227230|250478|250480|250487|250491|270773|271183|283948|283950|283951|283953|283954|283958|284644|284649|284652|284654|284670|284678|284679|284680|284682|284683|284684|286558|286564|286573|286578|286602|286611|286615|286617|286621|286622|286626|287013|287016|287021|287033|287034|287035|287036|287037|287038|287039|359341|366304|366861|517638|557477|622866|622867|629291|629292|650936|679821|691006|697247|697248|707944|707945|719518|733073|774661|825571|825572|825573|825574|825575|825576|825577|825578|825579|825580|825581|825582|825583|825584|850872|851143|883261|883262|883263|883264|883265|883266|883267|883268|883269|883270|883271|883272|883273|883274|883275|883276|883277|883278|883279|883280|883281|883282|883283|883284|883285|883286|883287|883288|883289|883290|883291|883292|883293|883294|883295|883296|883297|883298|883299|883300|883301|883302|883303|883304|883305|883306|883307|883308|883309|887237|922514|922515|939870|942558|942559|942560|942561|952882|952883|952884|959621", "text": "Joubert syndrome 14" }, { - "baseId": "40142|40143|332156|332159|332189|332192|332295|342362|342364|342373|347768|347784|347860|349152|349156|349157|349164|349168|349189|919808", + "upstreamId": "40142|40143|332156|332159|332189|332192|332295|342362|342364|342373|347768|347784|347860|349152|349156|349157|349164|349168|349189|919808", "text": "Aural atresia, congenital" }, { - "baseId": "40144|40145|40146|40147|40148|136032|254215|272201|314355|314362|314363|314369|320972|320989|320990|327038|327043|327054|327055|328129|328130|328139|328142|429245|461210|565866|567346|640172|701827|838574|838575|868150|868151|868152|868153|868154|868155|868156|868157|868158|906286", + "upstreamId": "40144|40145|40146|40147|40148|136032|254215|272201|314355|314362|314363|314369|320972|320989|320990|327038|327043|327054|327055|328129|328130|328139|328142|429245|461210|565866|567346|640172|701827|838574|838575|868150|868151|868152|868153|868154|868155|868156|868157|868158|906286", "text": "Joubert syndrome 16" }, { - "baseId": "40149|40152|404688|404689", + "upstreamId": "40149|40152|404688|404689", "text": "Retinitis pigmentosa 64" }, { - "baseId": "40150|40151|267667|275072|306077|306078|306079|306083|310085|310087|310088|310091|310095|310120|310121|315427|315432|315433|315434|315437|315438|315622|315623|315628|315629|315630|315633|315634|404691|512914|779562|790825|900550|900551|900552|900553|900554|900555|900556|900557|900558|900559|900560|900561|900562|900563|900564|900565|900566|900567|900568|900569|900570|900571|900572|900573|900574|900575|900576|900577|919179", + "upstreamId": "40150|40151|267667|275072|306077|306078|306079|306083|310085|310087|310088|310091|310095|310120|310121|315427|315432|315433|315434|315437|315438|315622|315623|315628|315629|315630|315633|315634|404691|512914|779562|790825|900550|900551|900552|900553|900554|900555|900556|900557|900558|900559|900560|900561|900562|900563|900564|900565|900566|900567|900568|900569|900570|900571|900572|900573|900574|900575|900576|900577|919179", "text": "Cone-rod dystrophy 16" }, { - "baseId": "40151|404690|424182|672021|672022", + "upstreamId": "40151|404690|424182|672021|672022", "text": "Bardet-Biedl syndrome 21" }, { - "baseId": "40153", + "upstreamId": "40153", "text": "Mitochondrial complex 4 deficiency, nuclear type 10" }, { - "baseId": "40155|171290|264319|361337|369134|369715|371086|415099|425749|425750|457147|457151|457332|457335|457749|457750|502005|511708|523071|561565|561571|590729|625974|636123|636124|636125|636126|636127|655793|692224|700030|782853|789119|798585|819870|833557|833558|833559|833560|833561|833562|924839|924840|924841|933867|933868|940876|960632", + "upstreamId": "40155|171290|264319|361337|369134|369715|371086|415099|425749|425750|457147|457151|457332|457335|457749|457750|502005|511708|523071|561565|561571|590729|625974|636123|636124|636125|636126|636127|655793|692224|700030|782853|789119|798585|819870|833557|833558|833559|833560|833561|833562|924839|924840|924841|933867|933868|940876|960632", "text": "Ehlers-Danlos syndrome with progressive kyphoscoliosis, myopathy, and hearing loss" }, { - "baseId": "40156|178317|178318|178319|178320|198630|236952|259858|264325|359788|363971|364240|415096|421631|428700|428701|428702|438349|438745|438779|439021|439158|441074|441075|441076|441076|441077|444115|444116|456461|456645|456647|456649|456651|456653|456661|456663|456665|456668|456669|456670|456671|456673|456675|457046|457049|457051|457053|457055|457058|457062|457064|457070|457071|457083|457085|457087|457094|457095|457106|457109|457111|457244|457247|457253|457254|457254|457257|457263|457265|457265|457274|457280|457281|457287|457290|457299|457672|457679|457681|457687|457689|457691|457694|457696|457697|457698|457701|457705|457715|457716|457722|457724|522563|522564|522568|522572|522574|522587|522590|522594|522619|522621|522852|522852|522854|522863|522869|522872|522873|522874|522878|522935|522938|522947|522948|522951|522956|522962|522975|522983|522985|522987|522996|523003|523004|523006|523009|523013|523016|523232|523239|523240|523243|523248|523250|523253|523256|536732|536733|550154|561485|561501|561504|561510|561514|561521|561529|561532|561534|561536|561538|561541|561542|561869|561871|561875|561888|561889|561891|561893|564226|564238|564242|564244|564249|564253|564258|564264|564270|566742|566750|566755|566761|566763|566767|566777|566786|566790|566792|566793|566797|566798|566800|576967|576968|576971|578457|589838|636052|636053|636054|636055|636056|636057|636058|636059|636060|636061|636062|636063|636064|636065|636066|636067|636068|636069|636070|636071|636072|636073|636074|636075|636076|636077|636078|636079|636080|636081|636082|636083|636084|636085|636086|636087|636088|636089|636090|636091|636092|636093|651613|651673|651675|651690|651699|651717|692217|700016|700017|700018|722464|722465|722466|736089|750577|750578|750581|750585|750586|750587|750589|759541|766217|766218|766219|766220|766222|766224|766226|766228|766229|766230|766233|766234|766235|766236|766238|766239|775257|777682|779329|782841|782843|787657|805540|819863|819864|819865|833500|833501|833502|833503|833504|833505|833506|833507|833508|833509|833510|833511|833512|833513|833514|833515|833516|833517|833518|833519|833520|833521|833522|833523|833524|833525|833526|833527|833528|833529|833530|833531|833532|833533|833534|833535|833536|833537|833538|851148|851150|851640|852082|861065|924818|924819|924820|924821|924822|924823|924824|924825|924826|924827|924828|924829|924830|924831|924832|924833|933839|933840|933841|933842|933843|933844|933845|933846|933847|933848|933849|933850|933851|933852|933853|933854|933855|933856|940074|945589|945590|945591|945592|945593|945594|945595|945596|945597|945598|945599|945600|945601|945602|945603|945604|955130|955131|955132|955133|955134|955135|959851|959852|959853|960631", + "upstreamId": "40156|178317|178318|178319|178320|198630|236952|259858|264325|359788|363971|364240|415096|421631|428700|428701|428702|438349|438745|438779|439021|439158|441074|441075|441076|441076|441077|444115|444116|456461|456645|456647|456649|456651|456653|456661|456663|456665|456668|456669|456670|456671|456673|456675|457046|457049|457051|457053|457055|457058|457062|457064|457070|457071|457083|457085|457087|457094|457095|457106|457109|457111|457244|457247|457253|457254|457254|457257|457263|457265|457265|457274|457280|457281|457287|457290|457299|457672|457679|457681|457687|457689|457691|457694|457696|457697|457698|457701|457705|457715|457716|457722|457724|522563|522564|522568|522572|522574|522587|522590|522594|522619|522621|522852|522852|522854|522863|522869|522872|522873|522874|522878|522935|522938|522947|522948|522951|522956|522962|522975|522983|522985|522987|522996|523003|523004|523006|523009|523013|523016|523232|523239|523240|523243|523248|523250|523253|523256|536732|536733|550154|561485|561501|561504|561510|561514|561521|561529|561532|561534|561536|561538|561541|561542|561869|561871|561875|561888|561889|561891|561893|564226|564238|564242|564244|564249|564253|564258|564264|564270|566742|566750|566755|566761|566763|566767|566777|566786|566790|566792|566793|566797|566798|566800|576967|576968|576971|578457|589838|636052|636053|636054|636055|636056|636057|636058|636059|636060|636061|636062|636063|636064|636065|636066|636067|636068|636069|636070|636071|636072|636073|636074|636075|636076|636077|636078|636079|636080|636081|636082|636083|636084|636085|636086|636087|636088|636089|636090|636091|636092|636093|651613|651673|651675|651690|651699|651717|692217|700016|700017|700018|722464|722465|722466|736089|750577|750578|750581|750585|750586|750587|750589|759541|766217|766218|766219|766220|766222|766224|766226|766228|766229|766230|766233|766234|766235|766236|766238|766239|775257|777682|779329|782841|782843|787657|805540|819863|819864|819865|833500|833501|833502|833503|833504|833505|833506|833507|833508|833509|833510|833511|833512|833513|833514|833515|833516|833517|833518|833519|833520|833521|833522|833523|833524|833525|833526|833527|833528|833529|833530|833531|833532|833533|833534|833535|833536|833537|833538|851148|851150|851640|852082|861065|924818|924819|924820|924821|924822|924823|924824|924825|924826|924827|924828|924829|924830|924831|924832|924833|933839|933840|933841|933842|933843|933844|933845|933846|933847|933848|933849|933850|933851|933852|933853|933854|933855|933856|940074|945589|945590|945591|945592|945593|945594|945595|945596|945597|945598|945599|945600|945601|945602|945603|945604|955130|955131|955132|955133|955134|955135|959851|959852|959853|960631", "text": "Rigidity and multifocal seizure syndrome, lethal neonatal" }, { - "baseId": "40156|226904|259858|264325|415096|441076|444115|457254|457265|522852|590703|965277", + "upstreamId": "40156|226904|259858|264325|415096|441076|444115|457254|457265|522852|590703|965277", "text": "Neurodevelopmental disorder with cerebellar atrophy and with or without seizures" }, { - "baseId": "40157|40158|40159|40160|40161|40162|40163|190984|190986|190987|190988|190989|193454|193455|194331|195602|266811|267422|328288|328292|328298|328302|328303|328305|328306|328313|328315|328316|328318|328319|328320|328324|328327|328336|338148|338154|338157|338168|338169|338178|338185|338186|338188|338194|338195|338197|338198|338200|338202|338206|338208|338213|338217|338228|338229|338237|338241|344285|344286|344291|344293|344294|344297|344298|344299|344302|344303|344306|344307|344308|344314|344318|344319|344327|344328|344329|344331|344341|345700|345708|345711|345713|345715|345721|345722|345727|345728|345738|345739|345744|345748|345750|345751|345752|345753|345754|345755|345760|345761|345764|345765|345766|345768|345771|374952|488915|512954|512955|512956|512957|512958|590325|612106|620583|620584|620585|620586|877324|877325|877326|877327|877328|877329|877330|877331|877332|877333|877334|877335|877336|877337|877338|877339|877340|877341|877342|877343|877344|877345|877346|877347|877348|877349|877350|877351|877352|877353|877354|877355|877356|877357|877358|877359|877360|877361|877362|877363|877364|877365|877366|877367|877368|877369|877370|877371|877372|877373|877374|877375|877376|877377|877378|877379|877380|877381|877382|877383|877384|877385|877386|877387|877388|877389|877390|880510", + "upstreamId": "40157|40158|40159|40160|40161|40162|40163|190984|190986|190987|190988|190989|193454|193455|194331|195602|266811|267422|328288|328292|328298|328302|328303|328305|328306|328313|328315|328316|328318|328319|328320|328324|328327|328336|338148|338154|338157|338168|338169|338178|338185|338186|338188|338194|338195|338197|338198|338200|338202|338206|338208|338213|338217|338228|338229|338237|338241|344285|344286|344291|344293|344294|344297|344298|344299|344302|344303|344306|344307|344308|344314|344318|344319|344327|344328|344329|344331|344341|345700|345708|345711|345713|345715|345721|345722|345727|345728|345738|345739|345744|345748|345750|345751|345752|345753|345754|345755|345760|345761|345764|345765|345766|345768|345771|374952|488915|512954|512955|512956|512957|512958|590325|612106|620583|620584|620585|620586|877324|877325|877326|877327|877328|877329|877330|877331|877332|877333|877334|877335|877336|877337|877338|877339|877340|877341|877342|877343|877344|877345|877346|877347|877348|877349|877350|877351|877352|877353|877354|877355|877356|877357|877358|877359|877360|877361|877362|877363|877364|877365|877366|877367|877368|877369|877370|877371|877372|877373|877374|877375|877376|877377|877378|877379|877380|877381|877382|877383|877384|877385|877386|877387|877388|877389|877390|880510", "text": "Congenital stationary night blindness, type 1E" }, { - "baseId": "40164|788871|791288", + "upstreamId": "40164|788871|791288", "text": "Mitochondrial complex 1 deficiency, nuclear type 23" }, { - "baseId": "40175|227354|445157|504312|504579|513617|903597|972614|977266", + "upstreamId": "40175|227354|445157|504312|504579|513617|903597|972614|977266", "text": "Auditory neuropathy, autosomal dominant, 1" }, { - "baseId": "40177|40180|167373|167374|167374|167375|167376|167377|167873|167874|167875|167877|167880|167882|167883|167884|167885|167886|167888|167889|167892|167894|167898|167899|167902|167903|167905|167906|167907|192147|192857|193872|194083|194692|207263|214197|214204|214208|214208|214213|214224|214224|226694|251954|251957|251958|251959|251962|251963|259826|264270|297473|299544|299627|303719|303744|303745|303747|304067|304127|304138|368170|368486|368487|368653|369882|455193|455194|455631|455640|455653|455878|455885|501209|501355|521204|521461|521469|521796|521797|560329|560331|560333|560335|560337|560339|560341|560343|560345|560458|560460|560462|560464|563172|563173|565134|565136|565141|565142|565154|565158|633955|633957|655663|677420|677421|691858|691859|699082|699084|709906|721448|777461|932913", + "upstreamId": "40177|40180|167373|167374|167374|167375|167376|167377|167873|167874|167875|167877|167880|167882|167883|167884|167885|167886|167888|167889|167892|167894|167898|167899|167902|167903|167905|167906|167907|192147|192857|193872|194083|194692|207263|214197|214204|214208|214208|214213|214224|214224|226694|251954|251957|251958|251959|251962|251963|259826|264270|297473|299544|299627|303719|303744|303745|303747|304067|304127|304138|368170|368486|368487|368653|369882|455193|455194|455631|455640|455653|455878|455885|501209|501355|521204|521461|521469|521796|521797|560329|560331|560333|560335|560337|560339|560341|560343|560345|560458|560460|560462|560464|563172|563173|565134|565136|565141|565142|565154|565158|633955|633957|655663|677420|677421|691858|691859|699082|699084|709906|721448|777461|932913", "text": "Orofaciodigital syndrome type 6" }, { - "baseId": "40182|40183|40184|40185|40186|49901|49902|49903|135607|242440|242441|255756|255757|255758|325474|325478|325480|325489|325491|325492|335122|335125|335126|335128|335133|335139|335142|341576|341579|341580|341582|341585|341589|341597|341598|341600|341603|341608|343063|343065|343066|343067|343068|361310|401185|401188|401245|401247|401248|401249|401694|401703|401713|401947|401948|401954|401955|446891|465753|465755|466457|466461|466464|466465|466478|466481|466715|466719|466722|466724|466726|466728|495621|513359|529983|529991|530119|530122|530124|530130|530136|530140|530143|530316|530327|530332|530530|530533|567509|568143|568152|568160|568167|570198|570205|570215|570220|570231|570307|570309|570310|570313|570314|574067|574068|574069|574070|574072|574074|574076|574078|614426|644692|644693|644694|644695|644696|644697|644698|644699|644700|644701|644702|644703|644704|644705|644706|644707|652564|652727|652730|652856|653024|653026|684596|688605|693883|703697|703698|703699|726648|740204|755197|778308|820830|843880|843881|843882|843883|843884|843885|843886|843887|843888|843889|843890|843891|843892|852662|875353|875354|875355|875356|875357|875358|875359|875360|875361|875362|875363|875364|875365|876674|876675|919657|919658|920362|927822|927823|927824|927825|927826|927827|937456|937457|937458|941137|941138|949407|949408|957767|957768|960160|960161|960845|977277", + "upstreamId": "40182|40183|40184|40185|40186|49901|49902|49903|135607|242440|242441|255756|255757|255758|325474|325478|325480|325489|325491|325492|335122|335125|335126|335128|335133|335139|335142|341576|341579|341580|341582|341585|341589|341597|341598|341600|341603|341608|343063|343065|343066|343067|343068|361310|401185|401188|401245|401247|401248|401249|401694|401703|401713|401947|401948|401954|401955|446891|465753|465755|466457|466461|466464|466465|466478|466481|466715|466719|466722|466724|466726|466728|495621|513359|529983|529991|530119|530122|530124|530130|530136|530140|530143|530316|530327|530332|530530|530533|567509|568143|568152|568160|568167|570198|570205|570215|570220|570231|570307|570309|570310|570313|570314|574067|574068|574069|574070|574072|574074|574076|574078|614426|644692|644693|644694|644695|644696|644697|644698|644699|644700|644701|644702|644703|644704|644705|644706|644707|652564|652727|652730|652856|653024|653026|684596|688605|693883|703697|703698|703699|726648|740204|755197|778308|820830|843880|843881|843882|843883|843884|843885|843886|843887|843888|843889|843890|843891|843892|852662|875353|875354|875355|875356|875357|875358|875359|875360|875361|875362|875363|875364|875365|876674|876675|919657|919658|920362|927822|927823|927824|927825|927826|927827|937456|937457|937458|941137|941138|949407|949408|957767|957768|960160|960161|960845|977277", "text": "Kohlschutter's syndrome" }, { - "baseId": "40188|40189|40190|40191|40192|40193|40194|193296|205750|237436|421561|552090|614292|614293|614294|614295|677324|677325|686770|735285|788788|792754|799432|805082|920216", + "upstreamId": "40188|40189|40190|40191|40192|40193|40194|193296|205750|237436|421561|552090|614292|614293|614294|614295|677324|677325|686770|735285|788788|792754|799432|805082|920216", "text": "Trichohepatoenteric syndrome 1" }, { - "baseId": "40195|236870|497644|654888|654889", + "upstreamId": "40195|236870|497644|654888|654889", "text": "Deafness, autosomal dominant 4b" }, { - "baseId": "40200", + "upstreamId": "40200", "text": "Influenza" }, { - "baseId": "40205|40206|40207|257238|257242|257246|257247|257248|334402|486617|571106|620648", + "upstreamId": "40205|40206|40207|257238|257242|257246|257247|257248|334402|486617|571106|620648", "text": "Ciliary dyskinesia, primary, 2" }, { - "baseId": "40241|40241|40242|40243|40244|40244|40245|40246|40247|40248|48208|48209|48210|48211|48212|134731|134732|134733|134734|134735|190323|195615|195925|195926|207476|229571|252664|264316|266194|266398|266415|266881|269121|269303|270263|270439|271687|272178|272417|273054|273084|273583|273914|273915|274335|274913|275461|302410|310676|310678|359660|369708|421628|441073|455864|456460|456524|456525|456530|456532|456533|456537|456921|456927|488656|488991|488993|501707|502340|511027|521886|522255|522512|522515|522753|522824|552116|552117|561049|561051|561440|561757|561758|564183|566071|566072|566643|585148|587299|635966|635967|635968|635969|651599|651612|651663|651664|651666|651686|722433|777643|833389|833390|833391|833392|833393|833394|833395|833396|833397|924777|924778|924779|924780|933801|933802|933803|933804|945545|945546|945547|945548|945549|945550|955102|959845", + "upstreamId": "40241|40241|40242|40243|40244|40244|40245|40246|40247|40248|48208|48209|48210|48211|48212|134731|134732|134733|134734|134735|190323|195615|195925|195926|207476|229571|252664|264316|266194|266398|266415|266881|269121|269303|270263|270439|271687|272178|272417|273054|273084|273583|273914|273915|274335|274913|275461|302410|310676|310678|359660|369708|421628|441073|455864|456460|456524|456525|456530|456532|456533|456537|456921|456927|488656|488991|488993|501707|502340|511027|521886|522255|522512|522515|522753|522824|552116|552117|561049|561051|561440|561757|561758|564183|566071|566072|566643|585148|587299|635966|635967|635968|635969|651599|651612|651663|651664|651666|651686|722433|777643|833389|833390|833391|833392|833393|833394|833395|833396|833397|924777|924778|924779|924780|933801|933802|933803|933804|945545|945546|945547|945548|945549|945550|955102|959845", "text": "Congenital muscular dystrophy-dystroglycanopathy with brain and eye anomalies, type A7" }, { - "baseId": "40241|40244|134731|134732|134733|134735|166226|166227|190323|195615|195925|195926|207476|252664|264316|266194|266398|266415|266881|269121|269303|270263|270439|271687|272178|272417|273054|273084|273583|273914|273915|274335|274913|275461|302410|310676|310678|359660|369708|421628|441073|455864|456460|456524|456525|456530|456532|456533|456537|456921|456927|488656|488991|488993|501707|502340|521886|522255|522512|522515|522753|522824|561049|561051|561440|561757|561758|564183|566071|566072|566643|585148|587299|635966|635967|635968|635969|651599|651612|651663|651664|651666|651686|722433|777643|788813|833389|833390|833391|833392|833393|833394|833395|833396|833397|924777|924778|924779|924780|933801|933802|933803|933804|945545|945546|945547|945548|945549|945550|955102|959845", + "upstreamId": "40241|40244|134731|134732|134733|134735|166226|166227|190323|195615|195925|195926|207476|252664|264316|266194|266398|266415|266881|269121|269303|270263|270439|271687|272178|272417|273054|273084|273583|273914|273915|274335|274913|275461|302410|310676|310678|359660|369708|421628|441073|455864|456460|456524|456525|456530|456532|456533|456537|456921|456927|488656|488991|488993|501707|502340|521886|522255|522512|522515|522753|522824|561049|561051|561440|561757|561758|564183|566071|566072|566643|585148|587299|635966|635967|635968|635969|651599|651612|651663|651664|651666|651686|722433|777643|788813|833389|833390|833391|833392|833393|833394|833395|833396|833397|924777|924778|924779|924780|933801|933802|933803|933804|945545|945546|945547|945548|945549|945550|955102|959845", "text": "Muscular dystrophy-dystroglycanopathy (limb-girdle), type c, 7" }, { - "baseId": "40249|40250|40251|790438", + "upstreamId": "40249|40250|40251|790438", "text": "UV-sensitive syndrome 3" }, { - "baseId": "40272|40273|76328", + "upstreamId": "40272|40273|76328", "text": "Cortisone reductase deficiency 2" }, { - "baseId": "40274|135605|205015|512913|626177|919157", + "upstreamId": "40274|135605|205015|512913|626177|919157", "text": "Ataxia, sensory, autosomal dominant" }, { - "baseId": "40277|40278", + "upstreamId": "40277|40278", "text": "Craniodiaphyseal dysplasia, autosomal dominant" }, { - "baseId": "40280|40283|140689|362105|362106|362107|362108|362109|429590|513622|798678|798679|798680|818307|971000|980428|980430", + "upstreamId": "40280|40283|140689|362105|362106|362107|362108|362109|429590|513622|798678|798679|798680|818307|971000|980428|980430", "text": "Coenzyme Q10 deficiency, primary, 6" }, { - "baseId": "40285|40286", + "upstreamId": "40285|40286", "text": "Glutaric acidemia iic, late-onset" }, { - "baseId": "40286", + "upstreamId": "40286", "text": "Acyl-CoA dehydrogenase deficiency, glutaric acidemia type II" }, { - "baseId": "40288|40289|171002|171003|725024|791221|791222|858656|858657|965206", + "upstreamId": "40288|40289|171002|171003|725024|791221|791222|858656|858657|965206", "text": "Meconium ileus" }, { - "baseId": "40290|40291|40292|40294|79667|79668|79669|79670|79671|79672|79673|79675|79677|410301|438057|467673|467685|467691|467695|467701|468580|468584|468585|468588|468597|469031|469034|469041|469042|469045|469053|469055|469057|469061|469337|469338|469341|469344|469347|469349|469351|469368|469371|531963|531969|531977|531981|531984|531988|531990|531991|531993|531995|531999|532001|532003|532005|532007|532013|532061|532070|532072|532074|532077|532087|532351|532359|532364|532366|532372|532382|569895|569900|569903|569904|569905|569923|569924|571737|571738|571739|571741|571742|571746|572413|572416|572420|572425|574676|574677|574678|574679|574680|574681|574682|646915|646916|646917|646918|646919|646920|646921|646922|646923|646924|646925|646926|646927|646928|646929|646930|646931|646932|646933|646934|646935|646936|646937|646938|646939|646940|646941|646942|646943|646944|646945|646946|646947|646948|646949|646950|646951|646952|646953|646954|646955|646956|646957|646958|646959|652865|652869|715783|727500|727501|727502|727503|727504|741113|741114|741115|741116|741117|741118|741119|745351|756210|756211|756212|756213|771921|771922|771923|771929|771931|771932|776563|779985|785795|785796|797620|846450|846451|846452|846453|846454|846455|846456|846457|846458|846459|846460|846461|846462|846463|846464|846465|846466|846467|846468|846469|846470|846471|846472|846473|846474|846475|846476|846477|846478|846479|846480|846481|846482|846483|846484|846485|846486|852802|928600|928601|928602|928603|928604|928605|928606|928607|928608|928609|938305|938306|938307|938308|938309|938310|938311|938312|938313|938314|938315|940445|950376|950377|950378|950379|950380|950381|950382|950383|950384|958378|958379|958380|958381|958382|958383|960254", + "upstreamId": "40290|40291|40292|40294|79667|79668|79669|79670|79671|79672|79673|79675|79677|410301|438057|467673|467685|467691|467695|467701|468580|468584|468585|468588|468597|469031|469034|469041|469042|469045|469053|469055|469057|469061|469337|469338|469341|469344|469347|469349|469351|469368|469371|531963|531969|531977|531981|531984|531988|531990|531991|531993|531995|531999|532001|532003|532005|532007|532013|532061|532070|532072|532074|532077|532087|532351|532359|532364|532366|532372|532382|569895|569900|569903|569904|569905|569923|569924|571737|571738|571739|571741|571742|571746|572413|572416|572420|572425|574676|574677|574678|574679|574680|574681|574682|646915|646916|646917|646918|646919|646920|646921|646922|646923|646924|646925|646926|646927|646928|646929|646930|646931|646932|646933|646934|646935|646936|646937|646938|646939|646940|646941|646942|646943|646944|646945|646946|646947|646948|646949|646950|646951|646952|646953|646954|646955|646956|646957|646958|646959|652865|652869|715783|727500|727501|727502|727503|727504|741113|741114|741115|741116|741117|741118|741119|745351|756210|756211|756212|756213|771921|771922|771923|771929|771931|771932|776563|779985|785795|785796|797620|846450|846451|846452|846453|846454|846455|846456|846457|846458|846459|846460|846461|846462|846463|846464|846465|846466|846467|846468|846469|846470|846471|846472|846473|846474|846475|846476|846477|846478|846479|846480|846481|846482|846483|846484|846485|846486|852802|928600|928601|928602|928603|928604|928605|928606|928607|928608|928609|938305|938306|938307|938308|938309|938310|938311|938312|938313|938314|938315|940445|950376|950377|950378|950379|950380|950381|950382|950383|950384|958378|958379|958380|958381|958382|958383|960254", "text": "Psoriasis susceptibility 2" }, { - "baseId": "40290|44240|588258|646922|672278|672279|672280|672281|672306", + "upstreamId": "40290|44240|588258|646922|672278|672279|672280|672281|672306", "text": "Papulosquamous eruptions" }, { - "baseId": "40293", + "upstreamId": "40293", "text": "Psoriasis 2, pustular" }, { - "baseId": "40295|136187|136188|226676|237371|538465|622440|672100|727020|755656|797496|965999|966000|971067|971068|972796", + "upstreamId": "40295|136187|136188|226676|237371|538465|622440|672100|727020|755656|797496|965999|966000|971067|971068|972796", "text": "Cerebellar ataxia, mental retardation, and dysequilibrium syndrome 2" }, { - "baseId": "40296|76920|266842|300757|300758|300765|300777|300777|300778|300779|300779|300781|300781|300782|300789|300789|300790|300795|300795|300799|300799|300800|300806|300806|300808|300808|300810|300810|300811|300811|300812|300812|300817|300819|300830|300830|303682|303683|303684|303689|303691|303692|303692|303694|303694|303700|303701|303701|303702|303704|303707|303708|303709|303713|303713|303720|303720|303724|303724|303725|303731|303731|303734|308248|308257|308259|308260|308260|308271|308271|308272|308273|308274|308274|308275|308275|308276|308278|308278|308286|308287|308288|308288|308290|308290|308291|308291|308292|308292|308293|308295|308297|308297|308298|308298|308299|308299|308300|308301|308301|308302|308304|308304|308308|308308|308309|308309|308313|308313|308314|308324|308324|308326|308326|308330|308330|308331|308333|308333|308335|308335|308337|308338|308338|308339|308367|308367|308370|308370|308371|308371|308377|308377|308378|308378|308379|308381|308381|308399|308399|308407|308408|308408|308409|308409|308410|308410|308416|308416|308420|308420|308424|353796|369003|369005|413715|413716|443976|455661|455667|455668|455673|455676|455679|455684|455686|455688|455693|455695|455698|455705|455717|455727|455729|455736|455738|455858|455861|455865|455880|455883|455884|455886|455887|455891|455892|456277|456278|456281|456284|456292|456296|456307|456308|456591|456593|456594|456602|456603|456619|456623|456624|456629|456634|456639|456648|456657|481764|481765|508816|508817|508818|508819|512907|512907|512908|512908|512909|512910|512910|512911|513570|521711|521712|521719|521721|521722|521724|521738|521745|521750|521752|521755|522054|522055|522056|522057|522067|522075|522078|522081|522086|522088|522089|522096|522097|522098|522101|522102|522104|522107|522110|522111|522112|522113|522114|522115|522121|522123|522125|522127|522133|522135|522138|522141|522414|522423|522425|522428|522430|522434|522438|522453|522455|522457|522459|522464|522469|522475|550380|550381|560771|560772|560774|560783|560785|560787|560788|560793|560795|560804|560806|560910|560911|560914|560918|560920|560924|560925|560927|560931|560933|560934|560935|560937|560942|560948|560949|563633|563635|563638|563642|563646|563649|563652|563653|563657|563659|563661|563665|563669|565760|565762|565767|565773|565786|565789|565790|565793|565796|565797|565801|565802|565809|565811|565820|565833|608953|608954|635013|635014|635015|635016|635017|635018|635019|635020|635021|635022|635023|635024|635025|635026|635027|635028|635029|635030|635031|635032|635033|635034|635035|635036|635037|635038|635039|635040|635041|635042|635043|635044|635045|635046|635047|635048|635049|635050|635051|635052|635053|635054|635055|635056|635057|635058|635059|635060|635061|635062|635063|635064|635065|635066|635067|635068|635069|635070|635071|635072|635073|635074|635075|635076|635077|635078|635079|635080|635081|635082|635083|635084|635085|635086|635087|635088|635089|635090|635091|635092|635093|635094|635095|635096|635097|635098|635099|635100|635101|635102|635103|635104|635105|635106|635107|635108|635109|635110|635111|635112|635113|635114|635115|635116|651572|651588|651620|651622|651628|686904|692014|692015|692017|692018|692019|692020|692021|692022|692023|692024|692025|692026|692027|692030|692033|692034|692035|695322|695323|695324|695326|699630|699632|699633|699634|699635|710569|710570|710571|722083|722085|722086|765747|765753|782588|782592|787322|787325|787329|787341|787342|787346|787349|787351|787366|787415|787417|787421|787422|787425|787426|787428|787431|787433|787437|787441|787443|787446|787448|787474|787476|787478|787480|787483|787486|787489|787494|787496|787497|787499|787504|787506|787557|787559|787560|787565|787567|787574|787577|787579|787592|787594|787596|787597|795881|795883|795884|819702|832079|832080|832081|832082|832083|832084|832085|832086|832087|832088|832089|832090|832091|832092|832093|832094|832095|832096|832097|832098|832099|832100|832101|832102|832103|832104|832105|832106|832107|832108|832109|832110|832111|832112|832113|832114|832115|832116|832117|832118|832119|832120|832121|832122|832123|832124|832125|832126|832127|832128|832129|832130|832131|832132|832133|832134|832135|832136|832137|832138|832139|832140|832141|832142|832143|832144|832145|832146|832147|832148|832149|832150|832151|832152|832153|851328|851330|851368|924390|924391|924392|924393|924394|924395|924396|924397|924398|924399|924400|924401|924402|924403|924404|924405|924406|924407|924408|924409|924410|924411|924412|924413|924414|933372|933373|933374|933375|933376|933377|933378|933379|933380|933381|933382|933383|933384|933385|933386|933387|933388|933389|933390|945078|945079|945080|945081|945082|945083|945084|945085|945086|945087|945088|945089|945090|945091|945092|945093|945094|945095|945096|945097|945098|945099|945100|945101|945102|945103|945104|945105|954505|954506|954507|954508|954509|954510|954511|954512|954513|954514|954515|954516|954517|954518|954519|954520|954521|954522|954523|954524|954525|954526|954527|954528|954529|954530|954531|954532|954533|954534|954535|954536|954537|954538|954539|954540|954541|954542|954543|954544|954545|954546|954547|954548|954549|954550|954551|954552|954553|954554|954555|954556|954557|954558|954559|954560|954561|954562|954563|954564|954565|954566|954567|954568|954569|954570|954571|954572|954573|954574|954575|954576|954577|954578|954579|954580|954581|954582|954583|954584|954585|954586|954587|954588|954589|954590|954591|954592|954593|954594|954595|954596|954597|954598|954599|954600|954601|954602|954603|954604|954605|954606|954607|954608|954609|954610|954611|954612|954613|954614|954615|954616|954617|954618|954619|954620|954621|954622|954623|954624|954625|954626|954627|954628|954629|954630|954631|954632|954633|954634|954635|954636|954637|954638|954639|954640|954641|954642|954643|954644|954645|954646|954647|954648|954649|954650|954651|954652|954653|954654|954655|954656|954657|954658|954659|954660|954661|954662|954663|954664|954665|954666|954667|954668|954669|954670|954671|954672|954673|954674|954675|954676|954677|954678|954679|954680|954681|954682|954683|954684|954685|954686|954687|954688|954689|954690|954691|954692|954693|954694|954695|954696|954697|954698|954699|954700|954701|954702|954703|954704|954705|954706|954707|954708|954709|954710|954711|954712|954713|954714|954715|954716|954717|954718|954719|954720|954721|954722|954723|954724|954725|954726|954727|954728|954729|954730|954731|954732|954733|954734|954735|954736|954737|954738|954739|954740|954741|954742|954743|954744|954745|954746|954747|954748|954749|954750|954751|954752|954753|954754|954755|954756|954757|954758|954759|954760|954761|954762|954763|954764|954765|954766|954767|954768|954769|954770|954771|954772|954773|954774|954775|954776|954777|954778|954779|954780|954781|954782|954783|954784|954785|954786|954787|954788|954789|954790|954791|954792|954793|954794|954795|959809|960589|960590|960591|960592|960593|960594|960595|960596|960597|960598|960599|960600|960601|960602", + "upstreamId": "40296|76920|266842|300757|300758|300765|300777|300777|300778|300779|300779|300781|300781|300782|300789|300789|300790|300795|300795|300799|300799|300800|300806|300806|300808|300808|300810|300810|300811|300811|300812|300812|300817|300819|300830|300830|303682|303683|303684|303689|303691|303692|303692|303694|303694|303700|303701|303701|303702|303704|303707|303708|303709|303713|303713|303720|303720|303724|303724|303725|303731|303731|303734|308248|308257|308259|308260|308260|308271|308271|308272|308273|308274|308274|308275|308275|308276|308278|308278|308286|308287|308288|308288|308290|308290|308291|308291|308292|308292|308293|308295|308297|308297|308298|308298|308299|308299|308300|308301|308301|308302|308304|308304|308308|308308|308309|308309|308313|308313|308314|308324|308324|308326|308326|308330|308330|308331|308333|308333|308335|308335|308337|308338|308338|308339|308367|308367|308370|308370|308371|308371|308377|308377|308378|308378|308379|308381|308381|308399|308399|308407|308408|308408|308409|308409|308410|308410|308416|308416|308420|308420|308424|353796|369003|369005|413715|413716|443976|455661|455667|455668|455673|455676|455679|455684|455686|455688|455693|455695|455698|455705|455717|455727|455729|455736|455738|455858|455861|455865|455880|455883|455884|455886|455887|455891|455892|456277|456278|456281|456284|456292|456296|456307|456308|456591|456593|456594|456602|456603|456619|456623|456624|456629|456634|456639|456648|456657|481764|481765|508816|508817|508818|508819|512907|512907|512908|512908|512909|512910|512910|512911|513570|521711|521712|521719|521721|521722|521724|521738|521745|521750|521752|521755|522054|522055|522056|522057|522067|522075|522078|522081|522086|522088|522089|522096|522097|522098|522101|522102|522104|522107|522110|522111|522112|522113|522114|522115|522121|522123|522125|522127|522133|522135|522138|522141|522414|522423|522425|522428|522430|522434|522438|522453|522455|522457|522459|522464|522469|522475|550380|550381|560771|560772|560774|560783|560785|560787|560788|560793|560795|560804|560806|560910|560911|560914|560918|560920|560924|560925|560927|560931|560933|560934|560935|560937|560942|560948|560949|563633|563635|563638|563642|563646|563649|563652|563653|563657|563659|563661|563665|563669|565760|565762|565767|565773|565786|565789|565790|565793|565796|565797|565801|565802|565809|565811|565820|565833|608953|608954|635013|635014|635015|635016|635017|635018|635019|635020|635021|635022|635023|635024|635025|635026|635027|635028|635029|635030|635031|635032|635033|635034|635035|635036|635037|635038|635039|635040|635041|635042|635043|635044|635045|635046|635047|635048|635049|635050|635051|635052|635053|635054|635055|635056|635057|635058|635059|635060|635061|635062|635063|635064|635065|635066|635067|635068|635069|635070|635071|635072|635073|635074|635075|635076|635077|635078|635079|635080|635081|635082|635083|635084|635085|635086|635087|635088|635089|635090|635091|635092|635093|635094|635095|635096|635097|635098|635099|635100|635101|635102|635103|635104|635105|635106|635107|635108|635109|635110|635111|635112|635113|635114|635115|635116|651572|651588|651620|651622|651628|686904|692014|692015|692017|692018|692019|692020|692021|692022|692023|692024|692025|692026|692027|692030|692033|692034|692035|695322|695323|695324|695326|699630|699632|699633|699634|699635|710569|710570|710571|722083|722085|722086|765747|765753|782588|782592|787322|787325|787329|787341|787342|787346|787349|787351|787366|787415|787417|787421|787422|787425|787426|787428|787431|787433|787437|787441|787443|787446|787448|787474|787476|787478|787480|787483|787486|787489|787494|787496|787497|787499|787504|787506|787557|787559|787560|787565|787567|787574|787577|787579|787592|787594|787596|787597|795881|795883|795884|819702|832079|832080|832081|832082|832083|832084|832085|832086|832087|832088|832089|832090|832091|832092|832093|832094|832095|832096|832097|832098|832099|832100|832101|832102|832103|832104|832105|832106|832107|832108|832109|832110|832111|832112|832113|832114|832115|832116|832117|832118|832119|832120|832121|832122|832123|832124|832125|832126|832127|832128|832129|832130|832131|832132|832133|832134|832135|832136|832137|832138|832139|832140|832141|832142|832143|832144|832145|832146|832147|832148|832149|832150|832151|832152|832153|851328|851330|851368|924390|924391|924392|924393|924394|924395|924396|924397|924398|924399|924400|924401|924402|924403|924404|924405|924406|924407|924408|924409|924410|924411|924412|924413|924414|933372|933373|933374|933375|933376|933377|933378|933379|933380|933381|933382|933383|933384|933385|933386|933387|933388|933389|933390|945078|945079|945080|945081|945082|945083|945084|945085|945086|945087|945088|945089|945090|945091|945092|945093|945094|945095|945096|945097|945098|945099|945100|945101|945102|945103|945104|945105|954505|954506|954507|954508|954509|954510|954511|954512|954513|954514|954515|954516|954517|954518|954519|954520|954521|954522|954523|954524|954525|954526|954527|954528|954529|954530|954531|954532|954533|954534|954535|954536|954537|954538|954539|954540|954541|954542|954543|954544|954545|954546|954547|954548|954549|954550|954551|954552|954553|954554|954555|954556|954557|954558|954559|954560|954561|954562|954563|954564|954565|954566|954567|954568|954569|954570|954571|954572|954573|954574|954575|954576|954577|954578|954579|954580|954581|954582|954583|954584|954585|954586|954587|954588|954589|954590|954591|954592|954593|954594|954595|954596|954597|954598|954599|954600|954601|954602|954603|954604|954605|954606|954607|954608|954609|954610|954611|954612|954613|954614|954615|954616|954617|954618|954619|954620|954621|954622|954623|954624|954625|954626|954627|954628|954629|954630|954631|954632|954633|954634|954635|954636|954637|954638|954639|954640|954641|954642|954643|954644|954645|954646|954647|954648|954649|954650|954651|954652|954653|954654|954655|954656|954657|954658|954659|954660|954661|954662|954663|954664|954665|954666|954667|954668|954669|954670|954671|954672|954673|954674|954675|954676|954677|954678|954679|954680|954681|954682|954683|954684|954685|954686|954687|954688|954689|954690|954691|954692|954693|954694|954695|954696|954697|954698|954699|954700|954701|954702|954703|954704|954705|954706|954707|954708|954709|954710|954711|954712|954713|954714|954715|954716|954717|954718|954719|954720|954721|954722|954723|954724|954725|954726|954727|954728|954729|954730|954731|954732|954733|954734|954735|954736|954737|954738|954739|954740|954741|954742|954743|954744|954745|954746|954747|954748|954749|954750|954751|954752|954753|954754|954755|954756|954757|954758|954759|954760|954761|954762|954763|954764|954765|954766|954767|954768|954769|954770|954771|954772|954773|954774|954775|954776|954777|954778|954779|954780|954781|954782|954783|954784|954785|954786|954787|954788|954789|954790|954791|954792|954793|954794|954795|959809|960589|960590|960591|960592|960593|960594|960595|960596|960597|960598|960599|960600|960601|960602", "text": "Neuropathy, hereditary sensory and autonomic, type VI" }, { - "baseId": "40299", + "upstreamId": "40299", "text": "Skin/hair/eye pigmentation, variation in, 11" }, { - "baseId": "40312", + "upstreamId": "40312", "text": "Arrhythmogenic right ventricular dysplasia, familial, 11, with mild palmoplantar keratoderma and woolly hair" }, { - "baseId": "40313|40314|40316|40317|40318|75620|205719|538936|977166", + "upstreamId": "40313|40314|40316|40317|40318|75620|205719|538936|977166", "text": "Auriculocondylar syndrome 1" }, { - "baseId": "40314|40315|40316|40317|40318|75621|75622|75623|75624|75625|336466|336467|336469|336472|336474|336475|336485|336490|336492|336495|336501|336514|336517|336518|336524|336525|346175|346180|346182|346184|346189|346190|346194|346195|346197|346202|346205|346208|346210|346217|346235|346237|350485|350486|350488|350490|350492|350494|350498|350499|350500|350501|350503|350504|350509|350510|350512|350513|351540|351542|351543|351544|351545|351546|351547|351548|351549|351550|351552|351554|351556|620669|622924|886605|886606|886607|886608|886609|886610|886611|886612|886613|886614|886615|886616|886617|886618|886619|886620|886621|886622|886623|886624|886625|886626|886627|886628|886629|886630|886631|886632|886633|886634|886635|886636|886637|886638|887496|887497|887498|887499|887500|919930", + "upstreamId": "40314|40315|40316|40317|40318|75621|75622|75623|75624|75625|336466|336467|336469|336472|336474|336475|336485|336490|336492|336495|336501|336514|336517|336518|336524|336525|346175|346180|346182|346184|346189|346190|346194|346195|346197|346202|346205|346208|346210|346217|346235|346237|350485|350486|350488|350490|350492|350494|350498|350499|350500|350501|350503|350504|350509|350510|350512|350513|351540|351542|351543|351544|351545|351546|351547|351548|351549|351550|351552|351554|351556|620669|622924|886605|886606|886607|886608|886609|886610|886611|886612|886613|886614|886615|886616|886617|886618|886619|886620|886621|886622|886623|886624|886625|886626|886627|886628|886629|886630|886631|886632|886633|886634|886635|886636|886637|886638|887496|887497|887498|887499|887500|919930", "text": "Auriculocondylar syndrome 2" }, { - "baseId": "40316|336506|336511|350505|350508|350515|351559", + "upstreamId": "40316|336506|336511|350505|350508|350515|351559", "text": "Auriculocondylar syndrome" }, { - "baseId": "40326|40327|40328|40329|76338|205389|205390|205391|205392|205393|205395|205396|205397|205398|205399|205400|205401|205402|205403|206712|206715|206717|206718|277041", + "upstreamId": "40326|40327|40328|40329|76338|205389|205390|205391|205392|205393|205395|205396|205397|205398|205399|205400|205401|205402|205403|206712|206715|206717|206718|277041", "text": "Nager syndrome" }, { - "baseId": "40332|54990|54991|54993|54994|141150|141151|174125|174258|229606|229607|229608|258517|359869|395822|457066|509986|523373|523376|561808|561809|562259|562260|564493|636443|636444|636445|692331|833925|833926|833927|833928|833929|924933|934026|934027|945786|945787|955242", + "upstreamId": "40332|54990|54991|54993|54994|141150|141151|174125|174258|229606|229607|229608|258517|359869|395822|457066|509986|523373|523376|561808|561809|562259|562260|564493|636443|636444|636445|692331|833925|833926|833927|833928|833929|924933|934026|934027|945786|945787|955242", "text": "Cardiomyopathy, dilated, 2b" }, { - "baseId": "40333", + "upstreamId": "40333", "text": "Periodic fever, menstrual cycle-dependent" }, { - "baseId": "40334|40335|207136|293761|293764|293765|293775|293776|293781|293784|293785|293786|295122|295125|295128|295129|295132|295135|295136|295139|295143|295151|295152|295153|295157|295158|295159|295169|295171|298800|298801|298805|298806|298809|298813|298817|298818|298821|298822|298823|298824|298831|298836|298837|298844|298845|298846|298862|298871|298872|298873|298888|298889|298896|298897|364015|891896|891897|891898|891899|891900|891901|891902|891903|891904|891905|891906|891907|891908|891909|891910|891911|895980", + "upstreamId": "40334|40335|207136|293761|293764|293765|293775|293776|293781|293784|293785|293786|295122|295125|295128|295129|295132|295135|295136|295139|295143|295151|295152|295153|295157|295158|295159|295169|295171|298800|298801|298805|298806|298809|298813|298817|298818|298821|298822|298823|298824|298831|298836|298837|298844|298845|298846|298862|298871|298872|298873|298888|298889|298896|298897|364015|891896|891897|891898|891899|891900|891901|891902|891903|891904|891905|891906|891907|891908|891909|891910|891911|895980", "text": "Bone marrow failure syndrome 1" }, { - "baseId": "40336|195424|404686|426744|508795|681824|681825|721015|965961|965962|966034|970210", + "upstreamId": "40336|195424|404686|426744|508795|681824|681825|721015|965961|965962|966034|970210", "text": "Primary autosomal recessive microcephaly 8" }, { - "baseId": "40337|40338|40339|40340|45671|135284|135285|135286|135287|135288|135289|135290|135291|207265|207266|207268|207274|297951|297953|297954|297964|297966|297967|297968|300109|300133|300135|300140|300142|300144|300147|300149|300171|300175|304370|304371|304375|304380|304701|304707|304708|304709|304710|424377|428449|428454|551291|551292|579087|579099|579168|735155|789117|792753|816456|894598|894599|894600|894601|894602|894603|894604|894605|894606|894607|894608|894609|894610|894611|894612|894613|894614|894615|896123|896124|896125|961277", + "upstreamId": "40337|40338|40339|40340|45671|135284|135285|135286|135287|135288|135289|135290|135291|207265|207266|207268|207274|297951|297953|297954|297964|297966|297967|297968|300109|300133|300135|300140|300142|300144|300147|300149|300171|300175|304370|304371|304375|304380|304701|304707|304708|304709|304710|424377|428449|428454|551291|551292|579087|579099|579168|735155|789117|792753|816456|894598|894599|894600|894601|894602|894603|894604|894605|894606|894607|894608|894609|894610|894611|894612|894613|894614|894615|896123|896124|896125|961277", "text": "Mental retardation, autosomal recessive 5" }, { - "baseId": "40341|40342|40343|40344|40345|40345|40346|102954|102955|102955|102956|134703|134704|134705|134706|134707|134708|191060|191700|192671|192851|193053|193339|193340|227372|260921|264652|265684|266012|267172|267605|268582|272104|272285|272286|272308|324291|324299|324301|324309|324317|324319|324322|324325|324326|324328|324333|324334|324338|324339|324342|324344|324345|324346|324352|324353|324375|324376|324386|324488|324497|324498|324514|324520|324521|324523|324527|324530|324532|324536|324540|333834|333837|333844|333849|333851|333858|333873|333877|333879|333882|333887|333891|333892|333905|334016|334020|334029|334032|334050|334053|334056|334060|334063|340631|340633|340635|340640|340641|340650|340651|340652|340657|340659|340663|340698|340699|340766|340774|340776|340778|340779|340783|340787|340791|340794|340797|341985|341991|341994|341997|342005|342007|342012|342013|342023|342025|342026|342029|342037|342042|342044|342048|342050|342082|342179|342180|342181|342189|342196|360153|374632|431788|439014|439757|440216|445505|465063|465065|465130|465701|465733|465734|465928|482086|489139|491139|493895|505581|505627|512946|513803|513805|513805|513805|513806|513807|513808|513809|513810|513811|529470|529802|530053|567704|569543|570016|573743|584448|586596|588174|588786|589209|611810|613978|620535|623321|643936|693790|693791|693792|693793|693794|693799|703500|703501|703502|703503|703504|703505|703506|703508|703509|703510|714753|714755|714756|726443|726444|726446|739978|754944|760279|770562|778175|785154|791525|801565|802208|820767|843125|843126|843127|843128|843129|843130|843131|843132|843133|843134|843135|843136|843137|843138|843139|843140|843141|843142|843143|843144|843145|843146|843147|843148|843149|843150|843151|843152|843153|843154|843155|843156|843157|843191|843192|843193|843194|843196|843197|843198|843199|843200|843201|843202|843203|843204|843205|843206|852626|857280|874725|874726|874727|874728|874729|874730|874731|874732|874733|874734|874735|874736|874737|874738|874739|874740|874741|874742|874743|874744|874745|874746|874747|874748|874749|874750|874756|874795|874796|874797|874798|874799|874800|874801|874803|874804|874805|874806|876622|876623|876624|876625|876630|876631|876632|919610|927569|927570|927578|927579|937227|937228|937229|937230|937231|937232|937233|937234|937235|937236|937237|937238|937239|937240|937241|937242|937243|937244|937245|937246|937247|937248|937249|937250|937251|940344|940345|941113|941114|949176|949177|949178|949179|949180|949181|949182|949183|949184|949185|949186|949187|949188|949189|949190|949191|949192|949195|949196|949197|949198|949199|949200|949201|949202|949203|949204|949205|949206|949207|949208|957629|957630|957631|957632|957633|957634|957635|957636|957637|957638|957639|957640|957642|957643|957644|957645|957646|957647|957648|960134|960135|960136|960835|960836|960837|962700|962702|962740|962855|963175", + "upstreamId": "40341|40342|40343|40344|40345|40345|40346|102954|102955|102955|102956|134703|134704|134705|134706|134707|134708|191060|191700|192671|192851|193053|193339|193340|227372|260921|264652|265684|266012|267172|267605|268582|272104|272285|272286|272308|324291|324299|324301|324309|324317|324319|324322|324325|324326|324328|324333|324334|324338|324339|324342|324344|324345|324346|324352|324353|324375|324376|324386|324488|324497|324498|324514|324520|324521|324523|324527|324530|324532|324536|324540|333834|333837|333844|333849|333851|333858|333873|333877|333879|333882|333887|333891|333892|333905|334016|334020|334029|334032|334050|334053|334056|334060|334063|340631|340633|340635|340640|340641|340650|340651|340652|340657|340659|340663|340698|340699|340766|340774|340776|340778|340779|340783|340787|340791|340794|340797|341985|341991|341994|341997|342005|342007|342012|342013|342023|342025|342026|342029|342037|342042|342044|342048|342050|342082|342179|342180|342181|342189|342196|360153|374632|431788|439014|439757|440216|445505|465063|465065|465130|465701|465733|465734|465928|482086|489139|491139|493895|505581|505627|512946|513803|513805|513805|513805|513806|513807|513808|513809|513810|513811|529470|529802|530053|567704|569543|570016|573743|584448|586596|588174|588786|589209|611810|613978|620535|623321|643936|693790|693791|693792|693793|693794|693799|703500|703501|703502|703503|703504|703505|703506|703508|703509|703510|714753|714755|714756|726443|726444|726446|739978|754944|760279|770562|778175|785154|791525|801565|802208|820767|843125|843126|843127|843128|843129|843130|843131|843132|843133|843134|843135|843136|843137|843138|843139|843140|843141|843142|843143|843144|843145|843146|843147|843148|843149|843150|843151|843152|843153|843154|843155|843156|843157|843191|843192|843193|843194|843196|843197|843198|843199|843200|843201|843202|843203|843204|843205|843206|852626|857280|874725|874726|874727|874728|874729|874730|874731|874732|874733|874734|874735|874736|874737|874738|874739|874740|874741|874742|874743|874744|874745|874746|874747|874748|874749|874750|874756|874795|874796|874797|874798|874799|874800|874801|874803|874804|874805|874806|876622|876623|876624|876625|876630|876631|876632|919610|927569|927570|927578|927579|937227|937228|937229|937230|937231|937232|937233|937234|937235|937236|937237|937238|937239|937240|937241|937242|937243|937244|937245|937246|937247|937248|937249|937250|937251|940344|940345|941113|941114|949176|949177|949178|949179|949180|949181|949182|949183|949184|949185|949186|949187|949188|949189|949190|949191|949192|949195|949196|949197|949198|949199|949200|949201|949202|949203|949204|949205|949206|949207|949208|957629|957630|957631|957632|957633|957634|957635|957636|957637|957638|957639|957640|957642|957643|957644|957645|957646|957647|957648|960134|960135|960136|960835|960836|960837|962700|962702|962740|962855|963175", "text": "Saldino-Mainzer syndrome" }, { - "baseId": "40341|40342|40345|439752|439753|439754|439755|439756|623320|623321", + "upstreamId": "40341|40342|40345|439752|439753|439754|439755|439756|623320|623321", "text": "Retinitis pigmentosa 80" }, { - "baseId": "40345|513804", + "upstreamId": "40345|513804", "text": "Retinal ciliopathy due to mutation in the retinitis pigmentosa-1 gene" }, { - "baseId": "40348|40349|40350|40351|40352|134469|134470|134471|134472|181189|207721|207722|207723|264333|308353|308354|308356|308360|308362|312805|312826|318660|318661|319245|319246|319257|319258|370434|370435|370940|371289|481858|503167|536776|564079|613400|638336|638337|692679|751718|751719|836167|836168|902078|902079|902080|902081|902082|902083|902084|902085|902086|902087|902088|902089|902090|903408|903409|934787|955859", + "upstreamId": "40348|40349|40350|40351|40352|134469|134470|134471|134472|181189|207721|207722|207723|264333|308353|308354|308356|308360|308362|312805|312826|318660|318661|319245|319246|319257|319258|370434|370435|370940|371289|481858|503167|536776|564079|613400|638336|638337|692679|751718|751719|836167|836168|902078|902079|902080|902081|902082|902083|902084|902085|902086|902087|902088|902089|902090|903408|903409|934787|955859", "text": "Pontocerebellar hypoplasia, type 1b" }, { - "baseId": "40353|40354|40355|40356|47532|47533|49396|141668|141669|141671|141672|141673|141674|141677|203376|203378|203381|203384|203385|203386|203387|203390|203391|203394|203396|203397|203399|203402|203406|203407|203408|203411|203413|203415|203416|203418|203421|203422|203423|203427|203428|203429|203431|203432|203433|203434|203435|203436|203438|203439|203440|203441|203443|203446|203447|203451|205784|242822|242823|328897|328914|344946|346272|346273|346281|346284|361228|363792|375147|375156|375165|375191|375202|376077|376080|376086|376088|376103|376118|376119|376128|376138|376147|376153|376177|376181|376201|376216|376229|376239|376250|376253|378317|378333|378337|378347|378367|378372|378382|378390|378415|402114|402598|402754|410051|441967|466940|467810|467813|467815|467820|467821|467827|467837|467839|467841|468121|468123|468124|468130|468132|468134|468295|468297|468299|468301|468304|468305|468308|480418|505967|506128|506134|506143|506429|506439|506896|512295|512297|531176|531177|531178|531179|531192|531193|531371|531373|531383|531387|531389|531391|531435|531440|531442|531680|531681|531685|531687|531691|531692|535708|538467|539074|552205|568641|569226|571237|571239|571240|571242|571542|571544|571546|571548|571552|571555|574273|574501|574502|574503|611426|611427|614437|626254|646114|646115|646116|646117|646118|646119|646120|646121|646122|646123|646124|646125|646126|646127|646128|653462|653893|654001|656441|677455|688781|771591|771592|771593|771594|771597|771599|771600|791785|821099|822127|822128|822129|822130|822131|822132|822133|822134|822135|822136|822137|822138|845516|845517|845518|845519|845520|845521|845522|845523|845524|845525|845526|845527|845528|845529|845530|845531|845532|845533|845534|845535|845536|845537|845538|845539|845540|845541|852879|928350|928351|928352|928353|928354|928355|928356|937995|937996|937997|937998|937999|940416|940417|941183|941184|949986|949987|949988|949989|949990|958149|958150|958151|964483|964720|966174|969247|969550|980958", + "upstreamId": "40353|40354|40355|40356|47532|47533|49396|141668|141669|141671|141672|141673|141674|141677|203376|203378|203381|203384|203385|203386|203387|203390|203391|203394|203396|203397|203399|203402|203406|203407|203408|203411|203413|203415|203416|203418|203421|203422|203423|203427|203428|203429|203431|203432|203433|203434|203435|203436|203438|203439|203440|203441|203443|203446|203447|203451|205784|242822|242823|328897|328914|344946|346272|346273|346281|346284|361228|363792|375147|375156|375165|375191|375202|376077|376080|376086|376088|376103|376118|376119|376128|376138|376147|376153|376177|376181|376201|376216|376229|376239|376250|376253|378317|378333|378337|378347|378367|378372|378382|378390|378415|402114|402598|402754|410051|441967|466940|467810|467813|467815|467820|467821|467827|467837|467839|467841|468121|468123|468124|468130|468132|468134|468295|468297|468299|468301|468304|468305|468308|480418|505967|506128|506134|506143|506429|506439|506896|512295|512297|531176|531177|531178|531179|531192|531193|531371|531373|531383|531387|531389|531391|531435|531440|531442|531680|531681|531685|531687|531691|531692|535708|538467|539074|552205|568641|569226|571237|571239|571240|571242|571542|571544|571546|571548|571552|571555|574273|574501|574502|574503|611426|611427|614437|626254|646114|646115|646116|646117|646118|646119|646120|646121|646122|646123|646124|646125|646126|646127|646128|653462|653893|654001|656441|677455|688781|771591|771592|771593|771594|771597|771599|771600|791785|821099|822127|822128|822129|822130|822131|822132|822133|822134|822135|822136|822137|822138|845516|845517|845518|845519|845520|845521|845522|845523|845524|845525|845526|845527|845528|845529|845530|845531|845532|845533|845534|845535|845536|845537|845538|845539|845540|845541|852879|928350|928351|928352|928353|928354|928355|928356|937995|937996|937997|937998|937999|940416|940417|941183|941184|949986|949987|949988|949989|949990|958149|958150|958151|964483|964720|966174|969247|969550|980958", "text": "Koolen-de Vries syndrome" }, { - "baseId": "40357|40358|242820|256213|256216|328726|328732|328734|328737|328752|328755|328756|338712|344774|344776|344777|344779|344786|344792|344793|346162|346163|346168|346176|688776|877774|877775|877776|877777|877778|877779|877780|877781|877782|877783|877784", + "upstreamId": "40357|40358|242820|256213|256216|328726|328732|328734|328737|328752|328755|328756|338712|344774|344776|344777|344779|344786|344792|344793|346162|346163|346168|346176|688776|877774|877775|877776|877777|877778|877779|877780|877781|877782|877783|877784", "text": "Ciliary dyskinesia, primary, 17" }, { - "baseId": "40412|40415|40416|40422|40422|134331|192381|192382|193542|193544|193545|193548|193549|205057|205058|205058|205059|229102|229103|251228|251229|251230|251231|266062|266362|266367|266544|266651|267013|267099|267266|267485|267553|268353|268535|269002|269594|269699|270827|270843|270953|271161|271547|273077|273811|274325|274429|275445|360855|367671|367673|421451|425572|428207|440827|452520|452833|452847|452849|452855|453073|453078|453085|488604|488986|490429|490672|493824|500592|519415|519423|519425|519427|519600|519606|519608|519618|519620|519650|519652|519658|519660|519666|519668|519671|519677|559044|559046|559574|559576|559578|561665|561667|561670|561676|561679|563084|563093|563095|584270|586994|588747|588928|631556|631557|631558|631559|631560|631561|631562|631563|631564|631565|631566|631567|631568|631569|631570|631571|631572|631573|631574|655559|691446|691448|691449|708929|764015|764018|781742|819407|819410|828326|828327|828328|828329|828330|828331|828332|828333|828334|828335|828336|828337|828338|828339|828340|851057|851464|923263|923264|923265|923266|923267|932014|932015|932016|932017|932018|943621|943622|943623|953540|953541|953542|960519", + "upstreamId": "40412|40415|40416|40422|40422|134331|192381|192382|193542|193544|193545|193548|193549|205057|205058|205058|205059|229102|229103|251228|251229|251230|251231|266062|266362|266367|266544|266651|267013|267099|267266|267485|267553|268353|268535|269002|269594|269699|270827|270843|270953|271161|271547|273077|273811|274325|274429|275445|360855|367671|367673|421451|425572|428207|440827|452520|452833|452847|452849|452855|453073|453078|453085|488604|488986|490429|490672|493824|500592|519415|519423|519425|519427|519600|519606|519608|519618|519620|519650|519652|519658|519660|519666|519668|519671|519677|559044|559046|559574|559576|559578|561665|561667|561670|561676|561679|563084|563093|563095|584270|586994|588747|588928|631556|631557|631558|631559|631560|631561|631562|631563|631564|631565|631566|631567|631568|631569|631570|631571|631572|631573|631574|655559|691446|691448|691449|708929|764015|764018|781742|819407|819410|828326|828327|828328|828329|828330|828331|828332|828333|828334|828335|828336|828337|828338|828339|828340|851057|851464|923263|923264|923265|923266|923267|932014|932015|932016|932017|932018|943621|943622|943623|953540|953541|953542|960519", "text": "Limb-girdle muscular dystrophy-dystroglycanopathy, type C9" }, { - "baseId": "40412|40416|40422|134331|192381|192381|192382|193542|193544|193545|193548|193549|205058|205059|205059|205060|229103|251228|251229|251230|251231|266062|266362|266367|266544|266651|267013|267099|267266|267485|267553|268353|268535|269002|269594|269699|270827|270843|270953|271161|271547|273077|273811|274325|274429|275445|360855|367671|367673|421451|425572|428207|440827|452520|452833|452847|452849|452855|453073|453078|453085|488604|488986|490429|490672|493824|500592|519415|519423|519425|519427|519600|519606|519608|519618|519620|519650|519652|519658|519660|519666|519668|519671|519677|559044|559046|559574|559576|559578|561665|561667|561670|561676|561679|563084|563093|563095|584270|586994|588747|588928|631556|631557|631558|631559|631560|631561|631562|631563|631564|631565|631566|631567|631568|631569|631570|631571|631572|631573|631574|655559|691446|691448|691449|708929|764015|764018|781742|819407|819410|828326|828327|828328|828329|828330|828331|828332|828332|828333|828334|828335|828336|828337|828338|828339|828340|851057|851464|918842|923263|923264|923265|923266|923267|932014|932015|932016|932017|932018|943621|943622|943623|953540|953541|953542|960519", + "upstreamId": "40412|40416|40422|134331|192381|192381|192382|193542|193544|193545|193548|193549|205058|205059|205059|205060|229103|251228|251229|251230|251231|266062|266362|266367|266544|266651|267013|267099|267266|267485|267553|268353|268535|269002|269594|269699|270827|270843|270953|271161|271547|273077|273811|274325|274429|275445|360855|367671|367673|421451|425572|428207|440827|452520|452833|452847|452849|452855|453073|453078|453085|488604|488986|490429|490672|493824|500592|519415|519423|519425|519427|519600|519606|519608|519618|519620|519650|519652|519658|519660|519666|519668|519671|519677|559044|559046|559574|559576|559578|561665|561667|561670|561676|561679|563084|563093|563095|584270|586994|588747|588928|631556|631557|631558|631559|631560|631561|631562|631563|631564|631565|631566|631567|631568|631569|631570|631571|631572|631573|631574|655559|691446|691448|691449|708929|764015|764018|781742|819407|819410|828326|828327|828328|828329|828330|828331|828332|828332|828333|828334|828335|828336|828337|828338|828339|828340|851057|851464|918842|923263|923264|923265|923266|923267|932014|932015|932016|932017|932018|943621|943622|943623|953540|953541|953542|960519", "text": "Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type a, 9" }, { - "baseId": "40426|178686", + "upstreamId": "40426|178686", "text": "Ventricular extrasystoles" }, { - "baseId": "40438|52111|52844", + "upstreamId": "40438|52111|52844", "text": "Increased left ventricular wall thickness" }, { - "baseId": "40450|40451|40452|40453|40454|40455|40456|40457|40458|40459|40460|40461|40462|40463|40464|40465|40466|40467|40468|40469|40470|40471|40472|40473|40474|40475|40477|40479|40480|40481|40482|40483|40484|40485|40486|40487|40491|40496|59549|142116|142117|142118|142119|142120|142121|142122|142124|142125|142126|142127|165576|178627|178628|189843|189844|189845|189846|189847|189849|189850|189852|189853|189854|189855|189858|189860|189861|189862|191955|195434|198256|198259|198261|198262|198264|198265|198266|198267|198268|198269|198271|198272|198274|198275|198279|198282|198283|221986|221987|224399|229825|229826|229827|229828|229829|229830|229832|229833|229834|229835|229836|229838|229839|229840|229841|229843|229844|240833|240834|240835|240836|240837|240838|258645|258648|258649|258650|258651|258659|362377|370816|370822|370841|371365|371375|371377|371382|371385|371746|371751|371758|373451|397377|397379|397389|397565|397573|397904|397911|397917|404789|407877|425882|425883|425883|444625|460054|460057|460061|460061|460062|460064|460068|460077|460081|460085|460087|460092|460094|460096|460183|460189|460198|460199|460202|460203|460208|460211|460214|460216|460467|460469|460477|460926|460929|460930|460932|460934|481132|497142|497142|502848|503260|503389|508853|508854|510193|510194|510196|510201|510204|510205|510207|510211|510212|510214|510217|512840|512841|512918|512919|525281|525301|525304|525309|525314|525325|525336|525399|525404|525414|525417|525422|525425|525431|525517|525731|525733|525739|525740|525753|525757|525759|525764|525765|525768|525770|536795|563509|563872|563874|563876|563876|563886|563890|563892|563895|563896|564682|564689|564692|564694|564696|564702|564703|566393|566396|566404|566409|566422|566429|566435|566438|566439|569735|569737|569738|569739|576333|639063|639064|639065|639066|639067|639068|639069|639070|639071|639072|639073|639074|639075|639076|639077|639078|639079|639080|639081|639082|639083|639084|639085|639086|639087|639088|639089|639090|639091|639092|639093|639094|639095|639096|639097|639098|639099|639100|652018|679446|687661|687663|689985|692877|692879|692881|692883|695484|737555|752185|767869|783661|787651|796436|820231|837098|837099|837100|837101|837102|837103|837104|837105|837106|837107|837108|837109|837110|837111|837112|837113|837114|837115|837116|837117|837118|837119|837120|837121|837122|837123|837124|837125|837126|837127|837128|837129|837130|837131|837132|837133|837134|837135|837136|837137|837138|837139|837140|837141|837142|837143|837144|837145|851377|851784|859804|920284|925888|925889|925890|925891|925892|925893|925894|925895|925896|925897|925898|935127|935128|935129|935130|935131|935132|935133|940174|940175|940963|946996|946997|946998|946999|947000|947001|947002|947003|947004|947005|947006|956137|956138|959940", + "upstreamId": "40450|40451|40452|40453|40454|40455|40456|40457|40458|40459|40460|40461|40462|40463|40464|40465|40466|40467|40468|40469|40470|40471|40472|40473|40474|40475|40477|40479|40480|40481|40482|40483|40484|40485|40486|40487|40491|40496|59549|142116|142117|142118|142119|142120|142121|142122|142124|142125|142126|142127|165576|178627|178628|189843|189844|189845|189846|189847|189849|189850|189852|189853|189854|189855|189858|189860|189861|189862|191955|195434|198256|198259|198261|198262|198264|198265|198266|198267|198268|198269|198271|198272|198274|198275|198279|198282|198283|221986|221987|224399|229825|229826|229827|229828|229829|229830|229832|229833|229834|229835|229836|229838|229839|229840|229841|229843|229844|240833|240834|240835|240836|240837|240838|258645|258648|258649|258650|258651|258659|362377|370816|370822|370841|371365|371375|371377|371382|371385|371746|371751|371758|373451|397377|397379|397389|397565|397573|397904|397911|397917|404789|407877|425882|425883|425883|444625|460054|460057|460061|460061|460062|460064|460068|460077|460081|460085|460087|460092|460094|460096|460183|460189|460198|460199|460202|460203|460208|460211|460214|460216|460467|460469|460477|460926|460929|460930|460932|460934|481132|497142|497142|502848|503260|503389|508853|508854|510193|510194|510196|510201|510204|510205|510207|510211|510212|510214|510217|512840|512841|512918|512919|525281|525301|525304|525309|525314|525325|525336|525399|525404|525414|525417|525422|525425|525431|525517|525731|525733|525739|525740|525753|525757|525759|525764|525765|525768|525770|536795|563509|563872|563874|563876|563876|563886|563890|563892|563895|563896|564682|564689|564692|564694|564696|564702|564703|566393|566396|566404|566409|566422|566429|566435|566438|566439|569735|569737|569738|569739|576333|639063|639064|639065|639066|639067|639068|639069|639070|639071|639072|639073|639074|639075|639076|639077|639078|639079|639080|639081|639082|639083|639084|639085|639086|639087|639088|639089|639090|639091|639092|639093|639094|639095|639096|639097|639098|639099|639100|652018|679446|687661|687663|689985|692877|692879|692881|692883|695484|737555|752185|767869|783661|787651|796436|820231|837098|837099|837100|837101|837102|837103|837104|837105|837106|837107|837108|837109|837110|837111|837112|837113|837114|837115|837116|837117|837118|837119|837120|837121|837122|837123|837124|837125|837126|837127|837128|837129|837130|837131|837132|837133|837134|837135|837136|837137|837138|837139|837140|837141|837142|837143|837144|837145|851377|851784|859804|920284|925888|925889|925890|925891|925892|925893|925894|925895|925896|925897|925898|935127|935128|935129|935130|935131|935132|935133|940174|940175|940963|946996|946997|946998|946999|947000|947001|947002|947003|947004|947005|947006|956137|956138|959940", "text": "Dilated cardiomyopathy 1KK" }, { - "baseId": "40451|40471", + "upstreamId": "40451|40471", "text": "Familial hypertrophic cardiomyopathy 22" }, { - "baseId": "40476", + "upstreamId": "40476", "text": "Cardiomyopathy, familial restrictive, 4" }, { - "baseId": "40515|45542|101012|101032|136049|196119|282776|282777|282793|284391|284405|284470|284584|284625|284664|320441|320444|329225|335831|335850|349393|350403", + "upstreamId": "40515|45542|101012|101032|136049|196119|282776|282777|282793|284391|284405|284470|284584|284625|284664|320441|320444|329225|335831|335850|349393|350403", "text": "Nemaline Myopathy, Recessive" }, { - "baseId": "40530|40531|40532|254103|271555|313489|313519|313534|313535|313536|313543|313546|319683|319725|319726|319733|319734|319735|319749|319750|319756|325831|325853|325854|325896|325916|325917|325922|326878", + "upstreamId": "40530|40531|40532|254103|271555|313489|313519|313534|313535|313536|313543|313546|319683|319725|319726|319733|319734|319735|319749|319750|319756|325831|325853|325854|325896|325916|325917|325922|326878", "text": "Arthrogryposis multiplex congenita distal" }, { - "baseId": "40542|40561|52584|52590", + "upstreamId": "40542|40561|52584|52590", "text": "Left ventricular noncompaction 9" }, { - "baseId": "40564|496632", + "upstreamId": "40564|496632", "text": "Ectodermal dysplasia" }, { - "baseId": "40566|40567|361219|361220", + "upstreamId": "40566|40567|361219|361220", "text": "Hamamy syndrome" }, { - "baseId": "40587", + "upstreamId": "40587", "text": "rosuvastatin response - Other" }, { - "baseId": "40587", + "upstreamId": "40587", "text": "pravastatin response - Metabolism/PK" }, { - "baseId": "40587|227779|227780", + "upstreamId": "40587|227779|227780", "text": "simvastatin response - Toxicity/ADR" }, { - "baseId": "40587", + "upstreamId": "40587", "text": "cerivastatin response - Toxicity/ADR" }, { - "baseId": "40587", + "upstreamId": "40587", "text": "hmg coa reductase inhibitors response - Toxicity/ADR, Metabolism/PK" }, { - "baseId": "40587", + "upstreamId": "40587", "text": "simvastatin acid response - Metabolism/PK" }, { - "baseId": "40594", + "upstreamId": "40594", "text": "Systemic lupus erythematosus 11" }, { - "baseId": "40602|227142|227143|227144|227145|446596|816500|971194", + "upstreamId": "40602|227142|227143|227144|227145|446596|816500|971194", "text": "Autism, susceptibility to, X-linked 6" }, { - "baseId": "40607|166050|166051|471610", + "upstreamId": "40607|166050|166051|471610", "text": "Anemia without thromobocytopenia, X-linked" }, { - "baseId": "40611|40612|40613|40614|44204|44205|44206|44207|44290|44291|44293|44295|44296|44297|44298|44300|54551|54552|54553|54555|54557|54558|54559|54564|54566|54569|54570|54572|54574|54576|54577|54579|54586|175402|175404|175406|175551|175845|189894|189903|198377|241532|316673|316674|316678|316679|316681|324150|324151|324153|324154|324155|324156|330167|330171|330174|330176|330194|331585|331595|353904|398886|503771|503799|504818|510363|527279|535704|536836|653882|839791|869669|869670|869671|869672|869673|869674|869675|872228|961525|961868", + "upstreamId": "40611|40612|40613|40614|44204|44205|44206|44207|44290|44291|44293|44295|44296|44297|44298|44300|54551|54552|54553|54555|54557|54558|54559|54564|54566|54569|54570|54572|54574|54576|54577|54579|54586|175402|175404|175406|175551|175845|189894|189903|198377|241532|316673|316674|316678|316679|316681|324150|324151|324153|324154|324155|324156|330167|330171|330174|330176|330194|331585|331595|353904|398886|503771|503799|504818|510363|527279|535704|536836|653882|839791|869669|869670|869671|869672|869673|869674|869675|872228|961525|961868", "text": "Hypertrichotic osteochondrodysplasia Cantu type" }, { - "baseId": "40611|263191|263207|263209|263227|263233|263268|263298|263312|514064|514065|514174|514200|615872|672319", + "upstreamId": "40611|263191|263207|263209|263227|263233|263268|263298|263312|514064|514065|514174|514200|615872|672319", "text": "15 conditions" }, { - "baseId": "44117", + "upstreamId": "44117", "text": "OBESITY (BMIQ17), SUSCEPTIBILITY TO" }, { - "baseId": "44118|44119|246872|389359|433459|433460|433461|433462|442703|447475|447477|447478|447585|447599|447605|447607|447727|447761|515419|515424|515433|515434|515436|515437|515439|515451|515453|515454|515519|515523|515526|515528|515531|515534|515537|537111|556772|556774|556776|556776|556778|556780|556845|556846|556850|557133|557135|557137|557139|557141|557143|558335|558337|558339|558341|614205|626103|627320|627321|627322|627323|627324|627325|627326|627327|627328|627329|627330|627331|627332|627333|627334|627335|627336|627336|627337|627338|627339|627340|627341|627342|627343|627344|627345|707036|707037|707040|707042|707044|718578|718579|732055|732056|732057|732058|732059|746027|746028|746029|746030|746031|746032|761493|761496|774433|774441|777083|778804|780462|780463|787023|794552|799151|823276|823277|823278|823279|823280|823281|823282|823283|823284|823285|823286|823287|823288|823289|823290|823291|823292|823293|823294|823295|823296|823297|823298|823299|823300|850739|851269|921208|921818|921819|921820|921821|921822|921823|921824|921825|921826|921827|921828|930254|930255|930256|930257|930258|930259|930260|930261|930262|930263|930264|930265|930266|940615|941670|941671|941672|941673|941674|941675|941676|941677|941678|941679|941680|941681|941682|952223|952224|952225|952226|952227|952228|952229|952230|960418|980442", + "upstreamId": "44118|44119|246872|389359|433459|433460|433461|433462|442703|447475|447477|447478|447585|447599|447605|447607|447727|447761|515419|515424|515433|515434|515436|515437|515439|515451|515453|515454|515519|515523|515526|515528|515531|515534|515537|537111|556772|556774|556776|556776|556778|556780|556845|556846|556850|557133|557135|557137|557139|557141|557143|558335|558337|558339|558341|614205|626103|627320|627321|627322|627323|627324|627325|627326|627327|627328|627329|627330|627331|627332|627333|627334|627335|627336|627336|627337|627338|627339|627340|627341|627342|627343|627344|627345|707036|707037|707040|707042|707044|718578|718579|732055|732056|732057|732058|732059|746027|746028|746029|746030|746031|746032|761493|761496|774433|774441|777083|778804|780462|780463|787023|794552|799151|823276|823277|823278|823279|823280|823281|823282|823283|823284|823285|823286|823287|823288|823289|823290|823291|823292|823293|823294|823295|823296|823297|823298|823299|823300|850739|851269|921208|921818|921819|921820|921821|921822|921823|921824|921825|921826|921827|921828|930254|930255|930256|930257|930258|930259|930260|930261|930262|930263|930264|930265|930266|940615|941670|941671|941672|941673|941674|941675|941676|941677|941678|941679|941680|941681|941682|952223|952224|952225|952226|952227|952228|952229|952230|960418|980442", "text": "Common variable immunodeficiency 7" }, { - "baseId": "44120|44121|44122|44123|172320|172321|194445|194603|194711|195707|215300|215301|266238|267279|268892|268984|271387|271616|271971|273534|273619|359490|367907|389659|389664|413674|413675|428287|433671|433673|433674|433675|438814|452972|452979|452981|452989|452992|452995|452998|453234|453278|453280|453282|453283|453285|453364|453367|453371|453374|453376|453383|453387|453744|453753|453754|453767|453783|453788|488828|490238|490290|494128|494129|512813|512814|519735|519741|519742|519745|519751|519753|519754|519756|519758|519761|519763|519765|519767|519768|519771|519772|519774|519776|519779|519785|519788|519789|519792|520025|520028|520032|520033|520034|520035|520039|520043|520044|520046|520048|520053|520066|520067|520069|520071|520084|520088|520090|520092|520094|538366|559549|559593|559595|559597|559599|559601|559603|559605|559607|559609|559611|559613|559615|559698|559742|559744|559746|559748|559750|559752|559754|559756|559758|559760|559762|559764|559766|559768|559770|561844|561917|561919|561921|561923|561925|561928|561930|561932|561933|563479|563487|563495|563497|563502|563516|563523|563525|563536|584325|585641|585642|609526|609529|609530|614275|614276|614522|624278|624279|631956|631957|631958|631959|631960|631961|631962|631963|631964|631965|631966|631967|631968|631969|631970|631971|631972|631973|631974|631975|631976|631977|631978|631979|631980|631981|631982|631983|631984|631985|631986|631987|631988|631989|631990|631991|631992|631993|631994|631995|631996|631997|631998|631999|632000|632001|632002|632003|632004|632005|632006|632007|632008|632009|632010|632011|632012|632013|632014|632015|632016|632017|632018|632019|632020|632021|632022|632023|632024|632025|632026|632027|632028|632029|632030|632031|632032|651095|651134|651140|651141|651154|651163|651179|651269|709186|709187|709188|709190|709191|709192|709193|709194|709195|720782|720783|720784|720785|720786|720787|720788|720790|730266|730267|734482|734483|734484|734486|734487|734488|734490|748760|748761|748762|748765|748766|748769|748770|759399|764334|764335|764345|764346|764349|774892|777419|777453|781882|790439|790440|790441|792745|792746|795536|795537|799344|816311|816452|819452|819453|819454|819455|819456|828816|828817|828818|828819|828820|828821|828822|828823|828824|828825|828826|828827|828828|828829|828830|828831|828832|828833|828834|828835|828836|828837|828838|828839|828840|828841|828842|828843|828844|828845|828846|828847|828848|828849|828850|828851|828852|828853|828854|828855|828856|828857|828858|828859|828860|828861|828862|828863|828864|828865|828866|828867|828868|828869|828870|828871|828872|828873|828874|828875|828876|828877|828878|828879|828880|828881|828882|828883|851111|851485|851487|851489|851592|904222|904223|923429|923430|923431|923432|923433|923434|923435|923436|923437|923438|923439|923440|923441|923442|932181|932182|932183|932184|932185|932186|932187|932188|932189|932190|932191|932192|932193|932194|932195|932196|932197|932198|932199|932200|932201|932202|932203|932204|932205|932206|932207|932208|932209|932210|932211|939958|939959|940773|940774|940775|943816|943817|943818|943819|943820|943821|943822|943823|943824|943825|943826|943827|943828|943829|943830|943831|943832|943833|943834|943835|943836|943837|943838|943839|943840|943841|943842|943843|943844|943845|943846|943847|953682|953683|953684|953685|953686|953687|953688|953689|953690|953691|959713|960528|961936|961937|961938|961939|980913|981447", + "upstreamId": "44120|44121|44122|44123|172320|172321|194445|194603|194711|195707|215300|215301|266238|267279|268892|268984|271387|271616|271971|273534|273619|359490|367907|389659|389664|413674|413675|428287|433671|433673|433674|433675|438814|452972|452979|452981|452989|452992|452995|452998|453234|453278|453280|453282|453283|453285|453364|453367|453371|453374|453376|453383|453387|453744|453753|453754|453767|453783|453788|488828|490238|490290|494128|494129|512813|512814|519735|519741|519742|519745|519751|519753|519754|519756|519758|519761|519763|519765|519767|519768|519771|519772|519774|519776|519779|519785|519788|519789|519792|520025|520028|520032|520033|520034|520035|520039|520043|520044|520046|520048|520053|520066|520067|520069|520071|520084|520088|520090|520092|520094|538366|559549|559593|559595|559597|559599|559601|559603|559605|559607|559609|559611|559613|559615|559698|559742|559744|559746|559748|559750|559752|559754|559756|559758|559760|559762|559764|559766|559768|559770|561844|561917|561919|561921|561923|561925|561928|561930|561932|561933|563479|563487|563495|563497|563502|563516|563523|563525|563536|584325|585641|585642|609526|609529|609530|614275|614276|614522|624278|624279|631956|631957|631958|631959|631960|631961|631962|631963|631964|631965|631966|631967|631968|631969|631970|631971|631972|631973|631974|631975|631976|631977|631978|631979|631980|631981|631982|631983|631984|631985|631986|631987|631988|631989|631990|631991|631992|631993|631994|631995|631996|631997|631998|631999|632000|632001|632002|632003|632004|632005|632006|632007|632008|632009|632010|632011|632012|632013|632014|632015|632016|632017|632018|632019|632020|632021|632022|632023|632024|632025|632026|632027|632028|632029|632030|632031|632032|651095|651134|651140|651141|651154|651163|651179|651269|709186|709187|709188|709190|709191|709192|709193|709194|709195|720782|720783|720784|720785|720786|720787|720788|720790|730266|730267|734482|734483|734484|734486|734487|734488|734490|748760|748761|748762|748765|748766|748769|748770|759399|764334|764335|764345|764346|764349|774892|777419|777453|781882|790439|790440|790441|792745|792746|795536|795537|799344|816311|816452|819452|819453|819454|819455|819456|828816|828817|828818|828819|828820|828821|828822|828823|828824|828825|828826|828827|828828|828829|828830|828831|828832|828833|828834|828835|828836|828837|828838|828839|828840|828841|828842|828843|828844|828845|828846|828847|828848|828849|828850|828851|828852|828853|828854|828855|828856|828857|828858|828859|828860|828861|828862|828863|828864|828865|828866|828867|828868|828869|828870|828871|828872|828873|828874|828875|828876|828877|828878|828879|828880|828881|828882|828883|851111|851485|851487|851489|851592|904222|904223|923429|923430|923431|923432|923433|923434|923435|923436|923437|923438|923439|923440|923441|923442|932181|932182|932183|932184|932185|932186|932187|932188|932189|932190|932191|932192|932193|932194|932195|932196|932197|932198|932199|932200|932201|932202|932203|932204|932205|932206|932207|932208|932209|932210|932211|939958|939959|940773|940774|940775|943816|943817|943818|943819|943820|943821|943822|943823|943824|943825|943826|943827|943828|943829|943830|943831|943832|943833|943834|943835|943836|943837|943838|943839|943840|943841|943842|943843|943844|943845|943846|943847|953682|953683|953684|953685|953686|953687|953688|953689|953690|953691|959713|960528|961936|961937|961938|961939|980913|981447", "text": "Common variable immunodeficiency 8, with autoimmunity" }, { - "baseId": "44124|44125|168580|168581|207499|207500|207502|213578|253018|359708|421648|428756|444199|457137|457148|457770|458145|458147|512830|513820|513821|523218|535385|550662|579320|579324|611689|692340|700358|750884|779458|790773|790774|798596|798597|805086|819935|834042|834043|855082|855083|855084|945823|961517|964297|969523|970871|980602", + "upstreamId": "44124|44125|168580|168581|207499|207500|207502|213578|253018|359708|421648|428756|444199|457137|457148|457770|458145|458147|512830|513820|513821|523218|535385|550662|579320|579324|611689|692340|700358|750884|779458|790773|790774|798596|798597|805086|819935|834042|834043|855082|855083|855084|945823|961517|964297|969523|970871|980602", "text": "Cornelia de Lange syndrome 4" }, { - "baseId": "44139|48175|48176|48717|48718|102593|102594|185943|206603|206604|206605|206606|206607|206608|206609|207534|244515|244516|244518|253078|359894|369436|369440|369860|369863|369865|370181|370184|370186|371716|407346|457430|457431|458042|458053|458094|458096|458099|458101|458390|458391|458393|458407|502305|502669|508749|509042|523217|523227|523228|523233|523234|523237|523489|523490|523496|523704|523705|523707|523710|523711|523720|523742|523747|539010|540451|540452|562067|562069|562071|562077|562080|562085|562086|562088|562092|562515|564815|564818|564824|564829|564831|564837|567513|567515|567518|567525|567530|567533|636787|636788|636789|636790|636791|636792|636793|636794|636795|636796|636797|636798|636799|636800|636801|636802|636803|651785|692444|692445|692447|692448|700478|700480|700481|722938|722940|766634|783038|819950|819951|834299|834300|834301|834302|834303|834304|834305|834306|834307|834308|834309|834310|834311|834312|834313|834314|834315|851185|918139|925070|925071|925072|925073|925074|925075|925076|925077|934162|934163|934164|934165|945916|945917|945918|945919|945920|945921|945922|955343|955344|967121", + "upstreamId": "44139|48175|48176|48717|48718|102593|102594|185943|206603|206604|206605|206606|206607|206608|206609|207534|244515|244516|244518|253078|359894|369436|369440|369860|369863|369865|370181|370184|370186|371716|407346|457430|457431|458042|458053|458094|458096|458099|458101|458390|458391|458393|458407|502305|502669|508749|509042|523217|523227|523228|523233|523234|523237|523489|523490|523496|523704|523705|523707|523710|523711|523720|523742|523747|539010|540451|540452|562067|562069|562071|562077|562080|562085|562086|562088|562092|562515|564815|564818|564824|564829|564831|564837|567513|567515|567518|567525|567530|567533|636787|636788|636789|636790|636791|636792|636793|636794|636795|636796|636797|636798|636799|636800|636801|636802|636803|651785|692444|692445|692447|692448|700478|700480|700481|722938|722940|766634|783038|819950|819951|834299|834300|834301|834302|834303|834304|834305|834306|834307|834308|834309|834310|834311|834312|834313|834314|834315|851185|918139|925070|925071|925072|925073|925074|925075|925076|925077|934162|934163|934164|934165|945916|945917|945918|945919|945920|945921|945922|955343|955344|967121", "text": "Brown-Vialetto-Van Laere syndrome 2" }, { - "baseId": "44165|275828|496561", + "upstreamId": "44165|275828|496561", "text": "GPSM2-Related Disorders" }, { - "baseId": "44168|44169|81402|94578|94579|141978|141979|141980|141981|239947|239948|239949|239950|239951|239952|395197|395204|395422|395424|395561|395566|395844|395848|395856|438739|455895|456309|456318|481128|481129|481418|481419|481420|481421|522145|522480|538389|560951|560955|560961|560963|560967|565836|626167|626310|635130|635131|635132|635133|635134|635135|635136|635137|651504|651594|686906|692036|798579|819746|832337|832338|832339|832340|832341|832342|832343|832344|832345|832346|852030|852296|919054|924441|924442|924443|933452|933453|933454|945170|945171|954877|954878|983820|983821", + "upstreamId": "44168|44169|81402|94578|94579|141978|141979|141980|141981|239947|239948|239949|239950|239951|239952|395197|395204|395422|395424|395561|395566|395844|395848|395856|438739|455895|456309|456318|481128|481129|481418|481419|481420|481421|522145|522480|538389|560951|560955|560961|560963|560967|565836|626167|626310|635130|635131|635132|635133|635134|635135|635136|635137|651504|651594|686906|692036|798579|819746|832337|832338|832339|832340|832341|832342|832343|832344|832345|832346|852030|852296|919054|924441|924442|924443|933452|933453|933454|945170|945171|954877|954878|983820|983821", "text": "Combined oxidative phosphorylation deficiency 10" }, { - "baseId": "44169|171703|496850|497470|497668", + "upstreamId": "44169|171703|496850|497470|497668", "text": "Mitochondrial oxidative phosphorylation disorder" }, { - "baseId": "44177", + "upstreamId": "44177", "text": "Piebaldism, progressive" }, { - "baseId": "44188|44189|44190|132010", + "upstreamId": "44188|44189|44190|132010", "text": "Digital arthropathy-brachydactyly, familial" }, { - "baseId": "44191|134566|540456|792623", + "upstreamId": "44191|134566|540456|792623", "text": "Friedreich ataxia 1" }, { - "baseId": "44194|207048|227252|363976|966033", + "upstreamId": "44194|207048|227252|363976|966033", "text": "Seckel syndrome 6" }, { - "baseId": "44195|44196|44197|44198|293686|295081|295101|298722|298726|298727|367643|453965|691595|891877|891878|891879|891880|891881|891882|891883|891887|891888|891889|953826", + "upstreamId": "44195|44196|44197|44198|293686|295081|295101|298722|298726|298727|367643|453965|691595|891877|891878|891879|891880|891881|891882|891883|891887|891888|891889|953826", "text": "Congenital disorder of glycosylation type 2k" }, { - "baseId": "44199|44200|44201|44202|44203|136352|190151|241125|248650|398572|461806|977247", + "upstreamId": "44199|44200|44201|44202|44203|136352|190151|241125|248650|398572|461806|977247", "text": "Intrauterine growth retardation, metaphyseal dysplasia, adrenal hypoplasia congenita, and genital anomalies" }, { - "baseId": "44209|44210|44211|44212|44213|44214|215092|260546|260549|260550|260551|691863|788780|918968|920211", + "upstreamId": "44209|44210|44211|44212|44213|44214|215092|260546|260549|260550|260551|691863|788780|918968|920211", "text": "Glucocorticoid deficiency 4 with or without mineralocorticoid deficiency" }, { - "baseId": "44215|44216|178804|178805|313526|362358|552122|552123|651777|800721|800727|800730|800740|800741|800744|861672", + "upstreamId": "44215|44216|178804|178805|313526|362358|552122|552123|651777|800721|800727|800730|800740|800741|800744|861672", "text": "Spinal muscular atrophy-progressive myoclonic epilepsy syndrome" }, { - "baseId": "44215", + "upstreamId": "44215", "text": "ASAH1-related disorders" }, { - "baseId": "44227", + "upstreamId": "44227", "text": "NEVUS SPILUS, SOMATIC" }, { - "baseId": "44227", + "upstreamId": "44227", "text": "SPITZ NEVUS, SOMATIC" }, { - "baseId": "44228", + "upstreamId": "44228", "text": "Basal cell carcinoma, susceptibility to, 7" }, { - "baseId": "44229|44231|44232|125792|142794|142800|205195|211206|211211|211213|211216|211217|368488|368796|368996|368997|370267|370285|423256|423258|439862|481460|501650|501894|522153|560640|563459|578651|578657|584196|612352|634748|634749|634750|677424|710285|721839|735501|765571|792756|831727|831728|831729|831730|831731|831732|852020|852254|857617|904230|933241|944948|954404|970214", + "upstreamId": "44229|44231|44232|125792|142794|142800|205195|211206|211211|211213|211216|211217|368488|368796|368996|368997|370267|370285|423256|423258|439862|481460|501650|501894|522153|560640|563459|578651|578657|584196|612352|634748|634749|634750|677424|710285|721839|735501|765571|792756|831727|831728|831729|831730|831731|831732|852020|852254|857617|904230|933241|944948|954404|970214", "text": "3-methylglutaconic aciduria with deafness, encephalopathy, and Leigh-like syndrome" }, { - "baseId": "44234|44235|481415", + "upstreamId": "44234|44235|481415", "text": "Mitochondrial pyruvate carrier deficiency" }, { - "baseId": "44236|486704|486705|622916", + "upstreamId": "44236|486704|486705|622916", "text": "Hereditary congenital facial paresis 3" }, { - "baseId": "44237|44238|44239|204980|205785|205786|508887|983457", + "upstreamId": "44237|44238|44239|204980|205785|205786|508887|983457", "text": "Interstitial lung disease, nephrotic syndrome, and epidermolysis bullosa, congenital" }, { - "baseId": "44240|44241|44242|79667|79668|79668|79669|79670|79671|79672|79673|79675|79677|410301|438057|467673|467685|467691|467695|467701|468580|468584|468585|468588|468597|469031|469034|469041|469042|469045|469053|469055|469057|469061|469337|469338|469341|469344|469347|469349|469351|469368|469371|531963|531969|531977|531981|531984|531988|531990|531991|531993|531995|531999|532001|532003|532005|532007|532013|532061|532070|532070|532072|532074|532077|532087|532351|532359|532364|532366|532372|532382|569895|569900|569903|569904|569905|569923|569924|571737|571738|571739|571741|571742|571746|572413|572416|572420|572425|574676|574677|574678|574679|574680|574681|574682|646915|646916|646917|646918|646919|646920|646921|646922|646923|646924|646925|646926|646927|646928|646929|646930|646931|646932|646933|646934|646935|646936|646937|646938|646939|646940|646941|646942|646943|646944|646945|646946|646947|646948|646949|646950|646951|646952|646953|646954|646955|646956|646957|646958|646959|652865|652869|715783|727500|727501|727502|727503|727504|741113|741114|741115|741116|741117|741118|741119|745351|756210|756211|756212|756213|771921|771922|771923|771929|771931|771932|776563|779985|785795|785796|797620|846450|846451|846452|846453|846454|846455|846456|846457|846458|846459|846460|846461|846462|846463|846464|846465|846466|846467|846468|846469|846470|846471|846472|846473|846474|846475|846476|846477|846478|846479|846480|846481|846482|846483|846484|846485|846486|852802|928600|928601|928602|928603|928604|928605|928606|928607|928608|928609|938305|938306|938307|938308|938309|938310|938311|938312|938313|938314|938315|940445|950376|950377|950378|950379|950380|950381|950382|950383|950384|958378|958379|958380|958381|958382|958383|960254", + "upstreamId": "44240|44241|44242|79667|79668|79668|79669|79670|79671|79672|79673|79675|79677|410301|438057|467673|467685|467691|467695|467701|468580|468584|468585|468588|468597|469031|469034|469041|469042|469045|469053|469055|469057|469061|469337|469338|469341|469344|469347|469349|469351|469368|469371|531963|531969|531977|531981|531984|531988|531990|531991|531993|531995|531999|532001|532003|532005|532007|532013|532061|532070|532070|532072|532074|532077|532087|532351|532359|532364|532366|532372|532382|569895|569900|569903|569904|569905|569923|569924|571737|571738|571739|571741|571742|571746|572413|572416|572420|572425|574676|574677|574678|574679|574680|574681|574682|646915|646916|646917|646918|646919|646920|646921|646922|646923|646924|646925|646926|646927|646928|646929|646930|646931|646932|646933|646934|646935|646936|646937|646938|646939|646940|646941|646942|646943|646944|646945|646946|646947|646948|646949|646950|646951|646952|646953|646954|646955|646956|646957|646958|646959|652865|652869|715783|727500|727501|727502|727503|727504|741113|741114|741115|741116|741117|741118|741119|745351|756210|756211|756212|756213|771921|771922|771923|771929|771931|771932|776563|779985|785795|785796|797620|846450|846451|846452|846453|846454|846455|846456|846457|846458|846459|846460|846461|846462|846463|846464|846465|846466|846467|846468|846469|846470|846471|846472|846473|846474|846475|846476|846477|846478|846479|846480|846481|846482|846483|846484|846485|846486|852802|928600|928601|928602|928603|928604|928605|928606|928607|928608|928609|938305|938306|938307|938308|938309|938310|938311|938312|938313|938314|938315|940445|950376|950377|950378|950379|950380|950381|950382|950383|950384|958378|958379|958380|958381|958382|958383|960254", "text": "Pityriasis rubra pilaris" }, { - "baseId": "44243|44244|44245|44246|44247|626010|626011", + "upstreamId": "44243|44244|44245|44246|44247|626010|626011", "text": "John Milton Hagen blood group system" }, { - "baseId": "44263", + "upstreamId": "44263", "text": "Distal hereditary motor neuronopathy type 5B" }, { - "baseId": "44264|44265|44266|195762|195763|215400|253539|253540|253541|253542|253543|253545|253546|270363|308277|312667|312668|312675|312676|312677|312679|318573|318576|318582|318584|318590|319104|319106|319107|319110|319113|359934|359936|370379|370393|370401|370405|370411|370414|370423|370893|370911|370920|371240|371248|371251|371267|372984|373011|373013|373014|373031|407693|407694|407697|407698|421755|421757|425847|434630|444480|444481|444482|444483|444485|458117|459163|459171|459172|459185|459187|459189|459489|459494|459497|459498|459503|459506|459507|459564|459565|459566|459567|459571|459576|459578|459588|460044|460045|460047|460049|460050|460056|460059|502932|503122|503145|503394|524572|524574|524579|524592|524596|524832|524836|524838|524958|524962|524965|525118|525120|525122|536775|563234|563235|563239|563243|563244|563248|563249|563252|563975|563981|563996|563997|564005|564008|564013|564014|565891|565899|565900|565902|568290|569036|569042|569044|569048|569049|569050|569056|569059|569060|569068|576132|611719|614344|614345|620330|638235|638236|638237|638238|638239|638240|638241|638242|638243|638244|638245|638246|638247|638248|638249|638250|638251|638252|638253|638254|638255|638256|638257|638258|638259|638260|638261|638262|638263|638264|638265|638266|638267|638268|638269|638270|638271|638272|638273|638274|638275|638276|638277|638278|677978|682630|711956|723560|737123|737124|751693|751695|767399|836101|836102|836103|836104|836105|836106|836107|836108|836109|836110|836111|836112|836113|836114|836115|836116|836117|836118|836119|836120|836121|836122|836123|836124|836125|836126|836127|836128|836129|836130|901993|901994|901995|901996|901997|901998|901999|902000|902001|902002|902003|902004|902005|902006|902007|902008|919229|925573|925574|925575|925576|925577|925578|925579|925580|925581|925582|925583|925584|925585|925586|925587|934754|934755|934756|934757|934758|934759|934760|934761|934762|934763|946606|946607|946608|946609|946610|946611|946612|946613|946614|946615|946616|946617|946618|946619|946620|946621|946622|946623|946624|946625|946626|946627|946628|946629|946630|955818|955819|955820|955821|955822|955823|955824|955825|955826|972723|972724|977239|977240", + "upstreamId": "44264|44265|44266|195762|195763|215400|253539|253540|253541|253542|253543|253545|253546|270363|308277|312667|312668|312675|312676|312677|312679|318573|318576|318582|318584|318590|319104|319106|319107|319110|319113|359934|359936|370379|370393|370401|370405|370411|370414|370423|370893|370911|370920|371240|371248|371251|371267|372984|373011|373013|373014|373031|407693|407694|407697|407698|421755|421757|425847|434630|444480|444481|444482|444483|444485|458117|459163|459171|459172|459185|459187|459189|459489|459494|459497|459498|459503|459506|459507|459564|459565|459566|459567|459571|459576|459578|459588|460044|460045|460047|460049|460050|460056|460059|502932|503122|503145|503394|524572|524574|524579|524592|524596|524832|524836|524838|524958|524962|524965|525118|525120|525122|536775|563234|563235|563239|563243|563244|563248|563249|563252|563975|563981|563996|563997|564005|564008|564013|564014|565891|565899|565900|565902|568290|569036|569042|569044|569048|569049|569050|569056|569059|569060|569068|576132|611719|614344|614345|620330|638235|638236|638237|638238|638239|638240|638241|638242|638243|638244|638245|638246|638247|638248|638249|638250|638251|638252|638253|638254|638255|638256|638257|638258|638259|638260|638261|638262|638263|638264|638265|638266|638267|638268|638269|638270|638271|638272|638273|638274|638275|638276|638277|638278|677978|682630|711956|723560|737123|737124|751693|751695|767399|836101|836102|836103|836104|836105|836106|836107|836108|836109|836110|836111|836112|836113|836114|836115|836116|836117|836118|836119|836120|836121|836122|836123|836124|836125|836126|836127|836128|836129|836130|901993|901994|901995|901996|901997|901998|901999|902000|902001|902002|902003|902004|902005|902006|902007|902008|919229|925573|925574|925575|925576|925577|925578|925579|925580|925581|925582|925583|925584|925585|925586|925587|934754|934755|934756|934757|934758|934759|934760|934761|934762|934763|946606|946607|946608|946609|946610|946611|946612|946613|946614|946615|946616|946617|946618|946619|946620|946621|946622|946623|946624|946625|946626|946627|946628|946629|946630|955818|955819|955820|955821|955822|955823|955824|955825|955826|972723|972724|977239|977240", "text": "Hyperphosphatasia with mental retardation syndrome 2" }, { - "baseId": "44274|45135|136967|244232|263179|263213|263236|263381|263385|263413|377390|514008|514009|514060|590042|590043|590090|801222|962913", + "upstreamId": "44274|45135|136967|244232|263179|263213|263236|263381|263385|263413|377390|514008|514009|514060|590042|590043|590090|801222|962913", "text": "12 conditions" }, { - "baseId": "44309|44625|44626|44627|44628|44629|45278|45279|45281|45282|45283|45285|45287|45288|107214|197402|197785|209442|210277|259943|397515|414860|539730|611797|621103|621523|621713|906046", + "upstreamId": "44309|44625|44626|44627|44628|44629|45278|45279|45281|45282|45283|45285|45287|45288|107214|197402|197785|209442|210277|259943|397515|414860|539730|611797|621103|621523|621713|906046", "text": "Familial aortopathy" }, { - "baseId": "44359|254603|254604|254605|254606|317483|317493|317494|317499|317501|317502|317504|317508|317510|317511|317513|317514|317515|317520|317522|317523|317525|317526|317534|317540|317541|317543|325345|325347|325349|325364|325371|325375|325376|325379|331604|331608|331612|331613|331615|333072|333076|333080|333081|333084|333088|333101|333111|333114|422801|434768|620444|725136|725138|738689|753440|769168|769169|816507|869980|869981|869982|869983|869984|869985|869986|869987|869988|869989|869990|869991|869992|869993|869994|869995|869996|869997|869998|869999|870000|870001|870002|870003|870004|870005|870006|870007|870008|870009|870010|870011|870012|870013|870014|870015|870016|870017|870018|870019|870020|872251|872252|962731", + "upstreamId": "44359|254603|254604|254605|254606|317483|317493|317494|317499|317501|317502|317504|317508|317510|317511|317513|317514|317515|317520|317522|317523|317525|317526|317534|317540|317541|317543|325345|325347|325349|325364|325371|325375|325376|325379|331604|331608|331612|331613|331615|333072|333076|333080|333081|333084|333088|333101|333111|333114|422801|434768|620444|725136|725138|738689|753440|769168|769169|816507|869980|869981|869982|869983|869984|869985|869986|869987|869988|869989|869990|869991|869992|869993|869994|869995|869996|869997|869998|869999|870000|870001|870002|870003|870004|870005|870006|870007|870008|870009|870010|870011|870012|870013|870014|870015|870016|870017|870018|870019|870020|872251|872252|962731", "text": "Nephrogenic diabetes insipidus, autosomal" }, { - "baseId": "44478|917573", + "upstreamId": "44478|917573", "text": "Hyperimmunoglobulin M syndrome" }, { - "baseId": "44503", + "upstreamId": "44503", "text": "Abnormality of the pancreas" }, { - "baseId": "44531|54320|212669|221599|256485|263269|263407|314659|314694|327517|328543|457637|481525|800839|800971|800972|800973|857358|858674|858675|858676|858677|858680|858681|858682|858683|858684|858687|858688|858689|858690|966128|966129|966130|966131|966132|966133|966134|966135|966136|966137|966138|966139|984045", + "upstreamId": "44531|54320|212669|221599|256485|263269|263407|314659|314694|327517|328543|457637|481525|800839|800971|800972|800973|857358|858674|858675|858676|858677|858680|858681|858682|858683|858684|858687|858688|858689|858690|966128|966129|966130|966131|966132|966133|966134|966135|966136|966137|966138|966139|984045", "text": "Male infertility" }, { - "baseId": "44665|44666|44667|45110|45111|45112|51095|53044|53047|53048|53049|53400|53401|53409|53410|53412|53419|53422|53425|53429|53430|53432|53438|53439|53440|53952|54696|101340|141809|173494|173631|175036|177852|195708|195709|198108|198236|229942|265307|265509|267704|267980|273196|284791|284792|284793|285474|285481|285482|287689|287699|287976|295481|295485|295486|295488|297261|297264|297267|297276|301110|301111|301112|301113|301277|302297|302312|302314|302318|302323|302325|302328|302331|302334|305507|305508|305522|305535|310338|310339|310367|310369|310440|310446|310467|310473|310479|310480|311447|311448|311449|312347|312348|312350|314358|314360|314364|317037|317039|317040|317041|317042|318236|320397|320409|323019|323021|323578|323593|323602|323607|323616|325066|353560", + "upstreamId": "44665|44666|44667|45110|45111|45112|51095|53044|53047|53048|53049|53400|53401|53409|53410|53412|53419|53422|53425|53429|53430|53432|53438|53439|53440|53952|54696|101340|141809|173494|173631|175036|177852|195708|195709|198108|198236|229942|265307|265509|267704|267980|273196|284791|284792|284793|285474|285481|285482|287689|287699|287976|295481|295485|295486|295488|297261|297264|297267|297276|301110|301111|301112|301113|301277|302297|302312|302314|302318|302323|302325|302328|302331|302334|305507|305508|305522|305535|310338|310339|310367|310369|310440|310446|310467|310473|310479|310480|311447|311448|311449|312347|312348|312350|314358|314360|314364|317037|317039|317040|317041|317042|318236|320397|320409|323019|323021|323578|323593|323602|323607|323616|325066|353560", "text": "Myofibrillar Myopathy, Dominant" }, { - "baseId": "44674|54130|54804|55576|56375", + "upstreamId": "44674|54130|54804|55576|56375", "text": "Systolic heart failure" }, { - "baseId": "44729", + "upstreamId": "44729", "text": "FNB1 POLYMORPHISM" }, { - "baseId": "44740|51466|51525|171178|197619|258907|262311|262312|262313|362492|362493|433137|511551|609191|609192|609193|609194|609197|609198|609199|609200|609231|609232|609233|609234|609235|609236", + "upstreamId": "44740|51466|51525|171178|197619|258907|262311|262312|262313|362492|362493|433137|511551|609191|609192|609193|609194|609197|609198|609199|609200|609231|609232|609233|609234|609235|609236", "text": "Acute aortic dissection" }, { - "baseId": "44866|44870|44872|44877|44886|44899|44906|134593|207485|252883|252884|302335|303069|303070|303071|303072|303073|303074|306341|306342|306345|306346|306347|306348|311169|311170|311172|311173|311302|311303|311306|311310|311312|428735|428737|428738|441126|759683|898116|898117|898118|898119|898120|898121|898122|898123|898124|898125|898126|898127|898128|898129|898130|898131|898132|898133|898134|900365|900366|900367|900368", + "upstreamId": "44866|44870|44872|44877|44886|44899|44906|134593|207485|252883|252884|302335|303069|303070|303071|303072|303073|303074|306341|306342|306345|306346|306347|306348|311169|311170|311172|311173|311302|311303|311306|311310|311312|428735|428737|428738|441126|759683|898116|898117|898118|898119|898120|898121|898122|898123|898124|898125|898126|898127|898128|898129|898130|898131|898132|898133|898134|900365|900366|900367|900368", "text": "Transient Neonatal Diabetes, Recessive" }, { - "baseId": "44922|134586|134590|134591|134592", + "upstreamId": "44922|134586|134590|134591|134592", "text": "Gestational diabetes" }, { - "baseId": "44937|44938|44939|44940", + "upstreamId": "44937|44938|44939|44940", "text": "Idiopathic growth hormone deficiency" }, { - "baseId": "44974", + "upstreamId": "44974", "text": "Beta-thalassemia, lermontov type" }, { - "baseId": "45009|165951|165951|165951|577852|677318|791984|816509|919914", + "upstreamId": "45009|165951|165951|165951|577852|677318|791984|816509|919914", "text": "Fanconi renotubular syndrome 4 with maturity-onset diabetes of the young" }, { - "baseId": "45028|165951|360928", + "upstreamId": "45028|165951|360928", "text": "Hyperinsulinemia" }, { - "baseId": "45034|45036|45037|45038|45039|45040", + "upstreamId": "45034|45036|45037|45038|45039|45040", "text": "Interferon gamma receptor deficiency" }, { - "baseId": "45062|134725|254105|254106|254108|313620|313624|313632|319803|319804|319810|319823|319825|319828|325998|326005|326977|326978|326979|326982|326983|737916|867734|868641", + "upstreamId": "45062|134725|254105|254106|254108|313620|313624|313632|319803|319804|319810|319823|319825|319828|325998|326005|326977|326978|326979|326982|326983|737916|867734|868641", "text": "Transient Neonatal Diabetes, Dominant/Recessive" }, { - "baseId": "45092|77991|78500|78501|78942", + "upstreamId": "45092|77991|78500|78501|78942", "text": "Torsades de pointes" }, { - "baseId": "45132|141819|250744|250745|250746|286691|286693|286694|286696|286697|286699|286700|286702|287404|287405|287406|287407|287408|287411|287412|287413|289835|289853|289854|289855|289856|289857|289858|289860|290209|290210|290213|290214|290216|802093", + "upstreamId": "45132|141819|250744|250745|250746|286691|286693|286694|286696|286697|286699|286700|286702|287404|287405|287406|287407|287408|287411|287412|287413|289835|289853|289854|289855|289856|289857|289858|289860|290209|290210|290213|290214|290216|802093", "text": "Hypergonadotropic hypogonadism" }, { - "baseId": "45135|77752", + "upstreamId": "45135|77752", "text": "Heart-hand syndrome, Slovenian type" }, { - "baseId": "45181|45186|50293|50294|102143|102146|102147|139878|139881|171148|171149|186157|186158|197521|212930|212936|212945|241193|254243|314528|314532|314540|314541|314543|314544|314549|314551|314552|321246|321250|321251|327382|327388|327389|327391|327398|327399|327400|328432|328438|328439|328445|328454|328456|328457|398322|398877|476473|806433|868255|868256|868257|868258|868259|868260|868261|868262|868263", + "upstreamId": "45181|45186|50293|50294|102143|102146|102147|139878|139881|171148|171149|186157|186158|197521|212930|212936|212945|241193|254243|314528|314532|314540|314541|314543|314544|314549|314551|314552|321246|321250|321251|327382|327388|327389|327391|327398|327399|327400|328432|328438|328439|328445|328454|328456|328457|398322|398877|476473|806433|868255|868256|868257|868258|868259|868260|868261|868262|868263", "text": "Hyperparathyroidism" }, { - "baseId": "45234|394626", + "upstreamId": "45234|394626", "text": "Malignant tumor of ascending colon" }, { - "baseId": "45287|101110|135555|142037|142040|142041|142042|142043|142045|142046|142050|142053|142060|194229|194230|197842|197852|197854|197875|197877|197879|255472|258971|265689|301318|301348|301371|304551|304556|304557|304558|309178|309179|309186|309190|309265|309277|309305|324371|324392|324398|324399|324400|324401|324406|324408|324411|324412|324414|324420|324429|324430|324437|324455|324464|324466|324467|333924|333925|333941|333944|333947|333948|333949|333951|333954|333965|333966|333972|333975|333980|333982|333983|333984|333987|340666|340676|340690|340695|340696|340703|340704|340706|340709|340721|340722|340727|340730|340731|342066|342077|342109|342111|342118|342121|342125|342130|342138|342139|342141|342151|342155|342156|342160|342168", + "upstreamId": "45287|101110|135555|142037|142040|142041|142042|142043|142045|142046|142050|142053|142060|194229|194230|197842|197852|197854|197875|197877|197879|255472|258971|265689|301318|301348|301371|304551|304556|304557|304558|309178|309179|309186|309190|309265|309277|309305|324371|324392|324398|324399|324400|324401|324406|324408|324411|324412|324414|324420|324429|324430|324437|324455|324464|324466|324467|333924|333925|333941|333944|333947|333948|333949|333951|333954|333965|333966|333972|333975|333980|333982|333983|333984|333987|340666|340676|340690|340695|340696|340703|340704|340706|340709|340721|340722|340727|340730|340731|342066|342077|342109|342111|342118|342121|342125|342130|342138|342139|342141|342151|342155|342156|342160|342168", "text": "Lissencephaly, Recessive" }, { - "baseId": "45290|45320|53666|175563|178504|263260|320355|322278|322281|322290|322292|322305|322315|322319|322320|322321|328966|331578|331581|331583|331587|331597|331610|331619|331628|331630|331646|335616|335619|335627|335628|337435|338527|338558|338582|338583|338588|338608|338610|338614|338623|340274|340279|340282|340299|340308|340311|340314|340316|340327|340328|340329|340336|340337|389561|513956|513978|514135|805068|805119", + "upstreamId": "45290|45320|53666|175563|178504|263260|320355|322278|322281|322290|322292|322305|322315|322319|322320|322321|328966|331578|331581|331583|331587|331597|331610|331619|331628|331630|331646|335616|335619|335627|335628|337435|338527|338558|338582|338583|338588|338608|338610|338614|338623|340274|340279|340282|340299|340308|340311|340314|340316|340327|340328|340329|340336|340337|389561|513956|513978|514135|805068|805119", "text": "Atrial septal defect" }, { - "baseId": "45321", + "upstreamId": "45321", "text": "Atrial septal defect-atrioventricular conduction defects syndrome" }, { - "baseId": "45358", + "upstreamId": "45358", "text": "PRKAG2 cardiac syndrome" }, { - "baseId": "45375|269282|620400", + "upstreamId": "45375|269282|620400", "text": "RAG1-Related Disorders" }, { - "baseId": "45377|45379|408345|488105|488117", + "upstreamId": "45377|45379|408345|488105|488117", "text": "Atypical severe combined immunodeficiency due to complete RAG1/2 deficiency" }, { - "baseId": "45426|178601", + "upstreamId": "45426|178601", "text": "Pulmonary valve stenosis (rare)" }, { - "baseId": "45429|239836", + "upstreamId": "45429|239836", "text": "Paraganglioma" }, { - "baseId": "45432|45433|52528|57274|57275|57276|57277|57278|57279|57280|57281|57284|57289|174409|174410|174412|193416|198172|296515|296516|296528|296529|296535|296537|296543|296544|296547|296549|296550|296551|296552|296559|296560|296561|296562|296565|296566|296570|296571|296573|296574|296576|296581|296584|296585|296589|296597|296598|296602|296603|296607|296618|296619|296624|298425|298426|298435|298442|298448|298449|298456|298457|298459|298460|298461|298462|298471|298472|298473|298477|298479|298480|298481|298482|298483|298487|298488|298489|298490|302528|302530|302531|302540|302541|302542|302543|302562|302564|302565|302566|302582|302583|302596|302597|302598|302599|302602|302603|302604|302605|302606|302607|302625|302802|302803|302804|302806|302807|302814|302815|302816|302817|302820|302821|302822|302823|302824|302825|302826|302827|302828|302829|302830|302831|302832|302833|302834|302836|302839|302876|302882|302886|302887|302903|302904|302905|302906|302909|302910|302911|302912|302913|302914|368457|454842|501223|893644|893645|893646|893647|893648|893649|893650|893651|893652|893653|893654|893655|893656|893657|893658|893659|893660|893661|893662|893663|893664|893665|893666|893667|893668|893669|893670|893671|893672|893673|893674|893675|893676|893677|893678|893679|893680|893681|893682|893683|893684|893685|893686|893687|893688|893689|893690|893691|893692|893693|893694|893695|893696|893697|893698|893699|893700|893701|893702|893703|893704|893705|893706|893707|893708|893709|896067", + "upstreamId": "45432|45433|52528|57274|57275|57276|57277|57278|57279|57280|57281|57284|57289|174409|174410|174412|193416|198172|296515|296516|296528|296529|296535|296537|296543|296544|296547|296549|296550|296551|296552|296559|296560|296561|296562|296565|296566|296570|296571|296573|296574|296576|296581|296584|296585|296589|296597|296598|296602|296603|296607|296618|296619|296624|298425|298426|298435|298442|298448|298449|298456|298457|298459|298460|298461|298462|298471|298472|298473|298477|298479|298480|298481|298482|298483|298487|298488|298489|298490|302528|302530|302531|302540|302541|302542|302543|302562|302564|302565|302566|302582|302583|302596|302597|302598|302599|302602|302603|302604|302605|302606|302607|302625|302802|302803|302804|302806|302807|302814|302815|302816|302817|302820|302821|302822|302823|302824|302825|302826|302827|302828|302829|302830|302831|302832|302833|302834|302836|302839|302876|302882|302886|302887|302903|302904|302905|302906|302909|302910|302911|302912|302913|302914|368457|454842|501223|893644|893645|893646|893647|893648|893649|893650|893651|893652|893653|893654|893655|893656|893657|893658|893659|893660|893661|893662|893663|893664|893665|893666|893667|893668|893669|893670|893671|893672|893673|893674|893675|893676|893677|893678|893679|893680|893681|893682|893683|893684|893685|893686|893687|893688|893689|893690|893691|893692|893693|893694|893695|893696|893697|893698|893699|893700|893701|893702|893703|893704|893705|893706|893707|893708|893709|896067", "text": "Qualitative or quantitative defects of delta-sarcoglycan" }, { - "baseId": "45445|153769|153770|153771|226683|226684|226685|226686|226687|226688|226689|226690|505914|537283|920371|961975|964480|965234", + "upstreamId": "45445|153769|153770|153771|226683|226684|226685|226686|226687|226688|226689|226690|505914|537283|920371|961975|964480|965234", "text": "Autoimmune disease, multisystem, infantile-onset, 1" }, { - "baseId": "45523|360895|360980|467795|514126|536138|536151|536160|536186|536187|678119", + "upstreamId": "45523|360895|360980|467795|514126|536138|536151|536160|536186|536187|678119", "text": "Dilatation" }, { - "baseId": "45523|360895|551447|551448|551449|551450|551451|551452|551453|551454|551455|551456|551457|551458", + "upstreamId": "45523|360895|551447|551448|551449|551450|551451|551452|551453|551454|551455|551456|551457|551458", "text": "Dilatation of ascending aorta" }, { - "baseId": "45589", + "upstreamId": "45589", "text": "Epilepsy, progressive myoclonic, 3, with intracellular inclusions" }, { - "baseId": "45612|267428|459890|459893|692773|692774|701198|701199|751971|836650", + "upstreamId": "45612|267428|459890|459893|692773|692774|701198|701199|751971|836650", "text": "Microphthalmia, syndromic 11" }, { - "baseId": "45613|45623|45624|97522|195940|205311|205791|379288|424668|446035|469909|488161|533138|550636|572021|572231|572931|611430|647719|647720|647721|647722|653449|694334|694335|704762|704763|716186|821239|822156|847322|847323|847324|917291|917553|941225|958545|964504|964886|971113", + "upstreamId": "45613|45623|45624|97522|195940|205311|205791|379288|424668|446035|469909|488161|533138|550636|572021|572231|572931|611430|647719|647720|647721|647722|653449|694334|694335|704762|704763|716186|821239|822156|847322|847323|847324|917291|917553|941225|958545|964504|964886|971113", "text": "Sotos syndrome 2" }, { - "baseId": "45613|45614|45615|45616|45617|45618|45619|45620|45621|45622|195940|205311|205311|208537|208538|379288|430127|469909|480574|533138|572021|572231|572931|611430|612165|647719|647720|647721|647722|653449|679805|679863|694334|694335|704762|704763|716186|791898|791899|791900|821239|822156|847322|847323|847324|855085|855086|855087|919823|919824|919825|941225|958545", + "upstreamId": "45613|45614|45615|45616|45617|45618|45619|45620|45621|45622|195940|205311|205311|208537|208538|379288|430127|469909|480574|533138|572021|572231|572931|611430|612165|647719|647720|647721|647722|653449|679805|679863|694334|694335|704762|704763|716186|791898|791899|791900|821239|822156|847322|847323|847324|855085|855086|855087|919823|919824|919825|941225|958545", "text": "Marshall-Smith syndrome" }, { - "baseId": "45627|45628|192146|196059|230343|240659|254710|254711|254712|254713|254714|257184|260034|267190|318341|318346|318347|318351|326407|326412|326414|326431|326433|326437|326441|326442|326445|326457|326463|326465|326468|326472|332708|332712|332713|332714|332722|332730|332734|334311|334327|334331|334333|334334|334336|334340|334345|334347|334348|373254|389156|488858|769292|776114|788076|870341|870342|870343|870344|870345|870346|870347|870348|870349|870350|870351|870352|870353|870354|870355|870356|870357|870358|870359|870360|870361|870362|870363|870364|870365|870366|870367|870368|870369|872285|872286|919467|962989|962990|962991|962992|962993|962994|962995|962996|962997|962998|962999|963000|963001|963002", + "upstreamId": "45627|45628|192146|196059|230343|240659|254710|254711|254712|254713|254714|257184|260034|267190|318341|318346|318347|318351|326407|326412|326414|326431|326433|326437|326441|326442|326445|326457|326463|326465|326468|326472|332708|332712|332713|332714|332722|332730|332734|334311|334327|334331|334333|334334|334336|334340|334345|334347|334348|373254|389156|488858|769292|776114|788076|870341|870342|870343|870344|870345|870346|870347|870348|870349|870350|870351|870352|870353|870354|870355|870356|870357|870358|870359|870360|870361|870362|870363|870364|870365|870366|870367|870368|870369|872285|872286|919467|962989|962990|962991|962992|962993|962994|962995|962996|962997|962998|962999|963000|963001|963002", "text": "Fraser syndrome 3" }, { - "baseId": "45631|45632", + "upstreamId": "45631|45632", "text": "Uric acid concentration, serum, quantitative trait locus 4" }, { - "baseId": "45672|45673|45674|213522|247397|424639|550582|551280|590570|590571|590572|590573|590574|590575|590576|622314|678058|707518|789998|918649|918650|918651|918652|920153|920154|961253|961588|964804|969701|970518|972710|976643", + "upstreamId": "45672|45673|45674|213522|247397|424639|550582|551280|590570|590571|590572|590573|590574|590575|590576|622314|678058|707518|789998|918649|918650|918651|918652|920153|920154|961253|961588|964804|969701|970518|972710|976643", "text": "Cerebellar ataxia, nonprogressive, with mental retardation" }, { - "baseId": "45680|205070|256668|256669|256671|256672|256675|256678|256679|256680|469786|532291|532304|647286|647287|704617|704618|704619|950536|950537|950538|950539|958474", + "upstreamId": "45680|205070|256668|256669|256671|256672|256675|256678|256679|256680|469786|532291|532304|647286|647287|704617|704618|704619|950536|950537|950538|950539|958474", "text": "Heterotaxy, visceral, 6, autosomal" }, { - "baseId": "45690|508946|508947", + "upstreamId": "45690|508946|508947", "text": "Mental retardation, X-linked, syndromic, martin-probst type" }, { - "baseId": "45707|47507|47508|207990|578658|581209", + "upstreamId": "45707|47507|47508|207990|578658|581209", "text": "Dentatorubral-pallidoluysian atrophy" }, { - "baseId": "45720|45721|45722|45723", + "upstreamId": "45720|45721|45722|45723", "text": "Amyotrophic lateral sclerosis 18" }, { - "baseId": "45724|213624", + "upstreamId": "45724|213624", "text": "Multiple sclerosis, susceptibility to, 5" }, { - "baseId": "45726|48099|181401|181460|202291|205386|361063|361064|361073|361074|361075|361076|801217", + "upstreamId": "45726|48099|181401|181460|202291|205386|361063|361064|361073|361074|361075|361076|801217", "text": "Neurodegeneration" }, { - "baseId": "45728|200974|259235|424188|424189|425207|425208|513512|613401|861670|963435|964991", + "upstreamId": "45728|200974|259235|424188|424189|425207|425208|513512|613401|861670|963435|964991", "text": "Short stature, optic nerve atrophy, and Pelger-Huet anomaly" }, { - "baseId": "45733|45734|514235|514236|514237", + "upstreamId": "45733|45734|514235|514236|514237", "text": "Adams-Oliver syndrome 3" }, { - "baseId": "45735", + "upstreamId": "45735", "text": "Macroglobulinemia, waldenstrom, somatic" }, { - "baseId": "45736|45737|45738|45739|45740|136024|136025|205165|207805|207806|214308|253957|253958|371008|371651|373633|460703|491337|502973|502978|502979|503869|525534|525632|525633|639327|639328|639329|724132|804670|919309|925987|935259", + "upstreamId": "45736|45737|45738|45739|45740|136024|136025|205165|207805|207806|214308|253957|253958|371008|371651|373633|460703|491337|502973|502978|502979|503869|525534|525632|525633|639327|639328|639329|724132|804670|919309|925987|935259", "text": "Orofacial-digital syndrome IV" }, { - "baseId": "45741|136024|136025|207805|207806|214308|214308|253957|253958|371008|371651|373633|460703|491337|502973|502978|502979|503869|525534|525632|525633|639327|639328|639329|724132|925987|935259", + "upstreamId": "45741|136024|136025|207805|207806|214308|214308|253957|253958|371008|371651|373633|460703|491337|502973|502978|502979|503869|525534|525632|525633|639327|639328|639329|724132|925987|935259", "text": "Joubert syndrome 18" }, { - "baseId": "45742|45743|578423|612267|653861|984049|984050", + "upstreamId": "45742|45743|578423|612267|653861|984049|984050", "text": "Short stature, onychodysplasia, facial dysmorphism, and hypotrichosis" }, { - "baseId": "45742", + "upstreamId": "45742", "text": "Primordial dwarfism" }, { - "baseId": "45747|45748|45749|45750|45751|168851|168852|168854|168858|168859|178382|178384|178386|189077|205767|207816|207817|213605|213606|213607|213608|264585|359911|361201|362433|362437|362438|362442|364273|408285|421828|424353|424489|424701|425906|429172|429173|429174|434105|439883|444733|481237|495699|513312|513437|513719|513720|514622|552149|553178|553179|611405|653878|653879|677432|678941|682816|791103|791104|791105|791106|791107|791108|791109|791110|791111|791112|791113|798636|798637|805092|805093|805094|815992|816523|861636|903575|919320|919321|919322|963156|963718|963721|964355|969778|969783|969790|970928|970929|977245|983850", + "upstreamId": "45747|45748|45749|45750|45751|168851|168852|168854|168858|168859|178382|178384|178386|189077|205767|207816|207817|213605|213606|213607|213608|264585|359911|361201|362433|362437|362438|362442|364273|408285|421828|424353|424489|424701|425906|429172|429173|429174|434105|439883|444733|481237|495699|513312|513437|513719|513720|514622|552149|553178|553179|611405|653878|653879|677432|678941|682816|791103|791104|791105|791106|791107|791108|791109|791110|791111|791112|791113|798636|798637|805092|805093|805094|815992|816523|861636|903575|919320|919321|919322|963156|963718|963721|964355|969778|969783|969790|970928|970929|977245|983850", "text": "Wiedemann-Steiner syndrome" }, { - "baseId": "45756|45759|101173|143120|143121|143122|143123|190474|191228|191383|191385|191386|191387|191390|191391|191392|191393|191394|195689|195690|195977|223606|237012|250117|250119|250120|250130|250131|250133|250135|250138|266450|266537|266975|271804|271885|282377|282381|282384|283817|283821|283844|283873|284081|284088|437660|448555|448667|448763|511313|513019|516361|558707|559192|559194|587219|587220|628420|628421|628422|628423|690714|690715|690718|690719|690724|690725|690728|696993|696994|696997|707697|707699|719215|719216|719218|746754|805075|824722|824723|824724|922230|942218|962151|964162|964163|969600|970706|970707", + "upstreamId": "45756|45759|101173|143120|143121|143122|143123|190474|191228|191383|191385|191386|191387|191390|191391|191392|191393|191394|195689|195690|195977|223606|237012|250117|250119|250120|250130|250131|250133|250135|250138|266450|266537|266975|271804|271885|282377|282381|282384|283817|283821|283844|283873|284081|284088|437660|448555|448667|448763|511313|513019|516361|558707|559192|559194|587219|587220|628420|628421|628422|628423|690714|690715|690718|690719|690724|690725|690728|696993|696994|696997|707697|707699|719215|719216|719218|746754|805075|824722|824723|824724|922230|942218|962151|964162|964163|969600|970706|970707", "text": "Culler-Jones syndrome" }, { - "baseId": "45764|45764|106771|166216|231596|244402|367075|367077|367117|367118|368056|368060|451581|451583|451592|451831|451844|451847|451907|452000|452055|452067|518716|518852|518860|518870|518884|518886|518895|518896|518898|558720|559241|559243|559245|561066|561068|562204|562205|562209|630682|630683|630684|630685|630686|630687|630688|630689|630690|630691|630692|630693|672045|691246|691248|691249|695166|708436|720041|747851|747852|747853|747854|763489|781497|827219|827220|827221|827223|827224|827225|827226|827227|827229|827231|827232|827233|827234|922968|922969|922971|931658|931659|931660|943209|943210|943211|943212", + "upstreamId": "45764|45764|106771|166216|231596|244402|367075|367077|367117|367118|368056|368060|451581|451583|451592|451831|451844|451847|451907|452000|452055|452067|518716|518852|518860|518870|518884|518886|518895|518896|518898|558720|559241|559243|559245|561066|561068|562204|562205|562209|630682|630683|630684|630685|630686|630687|630688|630689|630690|630691|630692|630693|672045|691246|691248|691249|695166|708436|720041|747851|747852|747853|747854|763489|781497|827219|827220|827221|827223|827224|827225|827226|827227|827229|827231|827232|827233|827234|922968|922969|922971|931658|931659|931660|943209|943210|943211|943212", "text": "Hereditary motor and sensory neuropathy, Okinawa type" }, { - "baseId": "45764|106771|106771|231596|244402|367075|367077|367117|367118|368056|368060|451581|451583|451592|451831|451844|451847|451907|452000|452055|452067|518716|518852|518860|518870|518884|518886|518895|518896|518898|558720|559241|559243|559245|561066|561068|562204|562205|562209|630682|630683|630684|630685|630686|630687|630688|630689|630690|630691|630692|630693|672045|691246|691248|691249|695166|708436|720041|747851|747852|747853|747854|763489|781497|827219|827220|827221|827223|827224|827225|827226|827227|827229|827231|827232|827233|827234|922968|922969|922971|931658|931659|931660|943209|943210|943211|943212", + "upstreamId": "45764|106771|106771|231596|244402|367075|367077|367117|367118|368056|368060|451581|451583|451592|451831|451844|451847|451907|452000|452055|452067|518716|518852|518860|518870|518884|518886|518895|518896|518898|558720|559241|559243|559245|561066|561068|562204|562205|562209|630682|630683|630684|630685|630686|630687|630688|630689|630690|630691|630692|630693|672045|691246|691248|691249|695166|708436|720041|747851|747852|747853|747854|763489|781497|827219|827220|827221|827223|827224|827225|827226|827227|827229|827231|827232|827233|827234|922968|922969|922971|931658|931659|931660|943209|943210|943211|943212", "text": "Spastic paraplegia 57, autosomal recessive" }, { - "baseId": "45764", + "upstreamId": "45764", "text": "Amyotrophic Lateral Sclerosis with Sensory Neuropathy" }, { - "baseId": "45766|134078|134079|134081|134082|134083|255861|255865|260126|409731|429842|429843|441920|441921|441922|441923|441925|441926|465942|465943|465947|465949|465950|465954|465960|465966|466677|466682|466683|466687|466688|466691|466716|466731|466737|466740|466744|466756|466976|466979|466982|466983|466989|495804|530223|530224|530226|530290|530294|530300|530308|530524|530526|530528|530529|530746|530747|530749|568298|568299|568303|568304|570428|570429|570433|570437|570439|570441|570445|570448|570451|570520|570521|570522|570525|570528|574151|574154|574155|574158|574160|574163|622511|644952|644953|644954|644955|644956|644957|644958|644959|644960|644961|644962|644963|644964|644965|644966|644967|653306|693925|693926|693927|693928|693930|695706|703802|755380|771057|785380|788902|793646|797376|820871|844273|844274|844275|844276|844277|844278|844279|844280|844281|851677|927931|927932|927933|927934|927935|927936|927937|927938|927939|927940|937593|937594|937595|949550|949551|957867|957868|957869", + "upstreamId": "45766|134078|134079|134081|134082|134083|255861|255865|260126|409731|429842|429843|441920|441921|441922|441923|441925|441926|465942|465943|465947|465949|465950|465954|465960|465966|466677|466682|466683|466687|466688|466691|466716|466731|466737|466740|466744|466756|466976|466979|466982|466983|466989|495804|530223|530224|530226|530290|530294|530300|530308|530524|530526|530528|530529|530746|530747|530749|568298|568299|568303|568304|570428|570429|570433|570437|570439|570441|570445|570448|570451|570520|570521|570522|570525|570528|574151|574154|574155|574158|574160|574163|622511|644952|644953|644954|644955|644956|644957|644958|644959|644960|644961|644962|644963|644964|644965|644966|644967|653306|693925|693926|693927|693928|693930|695706|703802|755380|771057|785380|788902|793646|797376|820871|844273|844274|844275|844276|844277|844278|844279|844280|844281|851677|927931|927932|927933|927934|927935|927936|927937|927938|927939|927940|937593|937594|937595|949550|949551|957867|957868|957869", "text": "Myopathy, centronuclear, 4" }, { - "baseId": "45768|132462|330533|330576|480523|480524|480525|480525|480526|714238|816325|961655", + "upstreamId": "45768|132462|330533|330576|480523|480524|480525|480525|480526|714238|816325|961655", "text": "Weill-Marchesani syndrome 3" }, { - "baseId": "45769|45770|45771|45772|45774|45775|45776|360222|430984|430985|611371|961966|963365", + "upstreamId": "45769|45770|45771|45772|45774|45775|45776|360222|430984|430985|611371|961966|963365", "text": "Interstitial nephritis, karyomegalic" }, { - "baseId": "45777", + "upstreamId": "45777", "text": "Tetraparesis" }, { - "baseId": "45777|45778|514099", + "upstreamId": "45777|45778|514099", "text": "Oculogyric crisis" }, { - "baseId": "45777", + "upstreamId": "45777", "text": "ATP1A3-Related Disorders" }, { - "baseId": "45783|45784|45785", + "upstreamId": "45783|45784|45785", "text": "Spermatogenic failure 10" }, { - "baseId": "45790|222256|359092|359093|359094|919461|970971", + "upstreamId": "45790|222256|359092|359093|359094|919461|970971", "text": "Myoclonus, intractable, neonatal" }, { - "baseId": "45793|45794|45795|45796|45797|45799|45800|45801|188783|192536|259687|446968|448403|448406|512890|623249|690681|780786|780787|799233|819007|819008|824565|824566|856129|858981|922181|922182|930717|942154|942155|952563|952564|952565|966364|966365|966366|966367|966368|966369|966370|966371|966372|966373|966374|966375|966376|966377|966378|966379|966380|966381|966382|966383|966384|966385|966386|966387|966388", + "upstreamId": "45793|45794|45795|45796|45797|45799|45800|45801|188783|192536|259687|446968|448403|448406|512890|623249|690681|780786|780787|799233|819007|819008|824565|824566|856129|858981|922181|922182|930717|942154|942155|952563|952564|952565|966364|966365|966366|966367|966368|966369|966370|966371|966372|966373|966374|966375|966376|966377|966378|966379|966380|966381|966382|966383|966384|966385|966386|966387|966388", "text": "Leber congenital amaurosis 9" }, { - "baseId": "45805|181576|190296|275014|677158", + "upstreamId": "45805|181576|190296|275014|677158", "text": "Osteogenesis imperfecta type 5" }, { - "baseId": "45816|79738|430082", + "upstreamId": "45816|79738|430082", "text": "MICROCEPHALY, SHORT STATURE, AND POLYMICROGYRIA WITH SEIZURES" }, { - "baseId": "45817|45818|45819|134660|166227|207075|251131|251132|251134|251135|251136|251137|364234|367236|367239|367242|367555|367581|368606|406306|425561|428182|428183|428185|428186|428187|443458|452416|452423|452426|452614|452617|452634|452637|452723|452734|452736|452954|452958|452968|452980|490206|500267|500744|518705|519296|519299|519301|519303|519304|519345|519351|519494|519497|519500|519548|519550|519552|535700|559000|559002|559004|559515|559517|559519|561573|561575|561586|561587|561593|561596|561598|562965|562967|631425|631426|631427|631428|631429|631430|631431|631432|631433|631434|631435|631436|631437|631438|631439|631440|631441|631442|631443|631444|631445|631446|631447|691415|691417|691418|691419|691420|698094|698095|708859|720445|734065|748265|748266|790395|828163|828164|828165|828166|828167|828168|828169|828170|828171|828172|828173|828174|828175|828176|828177|828178|828179|923210|923211|923212|923213|923214|923215|923216|931955|931956|931957|931958|931959|931960|943563|943564|943565|943566|953485|953486|953487|953488|953489|953490", + "upstreamId": "45817|45818|45819|134660|166227|207075|251131|251132|251134|251135|251136|251137|364234|367236|367239|367242|367555|367581|368606|406306|425561|428182|428183|428185|428186|428187|443458|452416|452423|452426|452614|452617|452634|452637|452723|452734|452736|452954|452958|452968|452980|490206|500267|500744|518705|519296|519299|519301|519303|519304|519345|519351|519494|519497|519500|519548|519550|519552|535700|559000|559002|559004|559515|559517|559519|561573|561575|561586|561587|561593|561596|561598|562965|562967|631425|631426|631427|631428|631429|631430|631431|631432|631433|631434|631435|631436|631437|631438|631439|631440|631441|631442|631443|631444|631445|631446|631447|691415|691417|691418|691419|691420|698094|698095|708859|720445|734065|748265|748266|790395|828163|828164|828165|828166|828167|828168|828169|828170|828171|828172|828173|828174|828175|828176|828177|828178|828179|923210|923211|923212|923213|923214|923215|923216|931955|931956|931957|931958|931959|931960|943563|943564|943565|943566|953485|953486|953487|953488|953489|953490", "text": "Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type a, 8" }, { - "baseId": "45821|45822|45823|45824|45825", + "upstreamId": "45821|45822|45823|45824|45825", "text": "Amelogenesis imperfecta, hypomaturation type IIA4" }, { - "baseId": "45829|305423|305427|305429|305430|305431|305435|305436|305442|305451|305457|305464|305466|305467|305469|305470|305471|305474|305475|309317|309318|309319|309320|309322|309323|309324|309326|309327|309332|309334|309336|309337|309340|309347|309350|309351|314561|314562|314563|314574|314578|314588|314593|314600|314607|314609|314613|314626|314627|314636|314637|314638|314639|314644|314645|314646|314648|314649|314651|314652|314657|314661|314662|314666|314669|314670|314680|314682|512834|614322|614323|620300|700601|723131|730581|730582|766857|899697|899698|899699|899700|899701|899702|899703|899704|899705|899706|899707|899708|899709|899710|899711|899712|899713|899714|899715|899716|899717|899718|899719|899720|899721|899722|899723|899724|899725|899726|899727|899728|899729|899730|899731|899732|899733|899734|899735|900504|900505|900506|900507|919159|980462", + "upstreamId": "45829|305423|305427|305429|305430|305431|305435|305436|305442|305451|305457|305464|305466|305467|305469|305470|305471|305474|305475|309317|309318|309319|309320|309322|309323|309324|309326|309327|309332|309334|309336|309337|309340|309347|309350|309351|314561|314562|314563|314574|314578|314588|314593|314600|314607|314609|314613|314626|314627|314636|314637|314638|314639|314644|314645|314646|314648|314649|314651|314652|314657|314661|314662|314666|314669|314670|314680|314682|512834|614322|614323|620300|700601|723131|730581|730582|766857|899697|899698|899699|899700|899701|899702|899703|899704|899705|899706|899707|899708|899709|899710|899711|899712|899713|899714|899715|899716|899717|899718|899719|899720|899721|899722|899723|899724|899725|899726|899727|899728|899729|899730|899731|899732|899733|899734|899735|900504|900505|900506|900507|919159|980462", "text": "Natural killer cell and glucocorticoid deficiency with DNA repair defect" }, { - "baseId": "45831|227915|278238|390510|513500|970669", + "upstreamId": "45831|227915|278238|390510|513500|970669", "text": "CFHR5 deficiency" }, { - "baseId": "45838", + "upstreamId": "45838", "text": "Achromatopsia 6" }, { - "baseId": "45838", + "upstreamId": "45838", "text": "PDE6H-Related Disorders" }, { - "baseId": "45845|48309|48310|48311|48312|48313|97521|170174|170176|170177|170178|205706|209171|209172|209173|209174|213672|225805|265124|353914|361252|423089|426754|439701|472203|513841|513842|513843|513844|534365|535678|551800|575447|575511|612125|677475|694933|786903|788953|792498|792499|852985|857661|917373|920062|920063|964002|975723", + "upstreamId": "45845|48309|48310|48311|48312|48313|97521|170174|170176|170177|170178|205706|209171|209172|209173|209174|213672|225805|265124|353914|361252|423089|426754|439701|472203|513841|513842|513843|513844|534365|535678|551800|575447|575511|612125|677475|694933|786903|788953|792498|792499|852985|857661|917373|920062|920063|964002|975723", "text": "Cornelia de Lange syndrome 5" }, { - "baseId": "45854|247093|463047|463533|464015|464019|527838|527962|528419|528425|528428|566240|566244|568711|568713|568714|572680|642123|642124|642125|642126|642127|652449|652850|714005|714006|725569|739130|760293|769679|769680|775973|779701|841078|841079|841080|841081|841082|841083|841084|841085|841086|841087|841088|841089|841090|852727|926967|936519|936520|936521|936522|936523|936524|957156", + "upstreamId": "45854|247093|463047|463533|464015|464019|527838|527962|528419|528425|528428|566240|566244|568711|568713|568714|572680|642123|642124|642125|642126|642127|652449|652850|714005|714006|725569|739130|760293|769679|769680|775973|779701|841078|841079|841080|841081|841082|841083|841084|841085|841086|841087|841088|841089|841090|852727|926967|936519|936520|936521|936522|936523|936524|957156", "text": "Herpes simplex encephalitis, susceptibility to, 3" }, { - "baseId": "45855|45856|468928|468929|469923|470355|470359|471047|486803|533088|533094|533095|533181|533185|533190|533195|533197|533200|533205|533208|533614|533617|533618|570875|570877|570881|570886|572559|572561|572563|572566|572568|573193|573198|573202|573205|573206|574998|648198|648199|648200|648201|648202|648203|648204|648205|648206|648207|648208|705136|716570|716571|716572|728307|728308|728309|742018|742020|757144|757145|757146|757148|772771|772772|772774|772778|786238|786239|847790|847791|847792|847793|847794|847795|847796|847797|847798|847799|847800|847801|847802|847803|847804|847805|847806|847807|847808|929005|929006|929007|938746|938747|938748|938749|938750|938751|938752|938753|950834|950835|950836|958673|958674", + "upstreamId": "45855|45856|468928|468929|469923|470355|470359|471047|486803|533088|533094|533095|533181|533185|533190|533195|533197|533200|533205|533208|533614|533617|533618|570875|570877|570881|570886|572559|572561|572563|572566|572568|573193|573198|573202|573205|573206|574998|648198|648199|648200|648201|648202|648203|648204|648205|648206|648207|648208|705136|716570|716571|716572|728307|728308|728309|742018|742020|757144|757145|757146|757148|772771|772772|772774|772778|786238|786239|847790|847791|847792|847793|847794|847795|847796|847797|847798|847799|847800|847801|847802|847803|847804|847805|847806|847807|847808|929005|929006|929007|938746|938747|938748|938749|938750|938751|938752|938753|950834|950835|950836|958673|958674", "text": "Herpes simplex encephalitis, susceptibility to, 4" }, { - "baseId": "45860|194977|194978|194979|194981|194982|194983|194984|194986|255759|255761|255762|255763|255764|255765|255767|255768|255769|255770|255771|255772|255773|255775|255778|268033|270923|389167|415495|445583|465756|465757|465761|465763|466466|466483|466487|466734|466736|466742|466743|512950|530147|530155|530156|530157|530336|530539|568169|570238|570245|570316|584314|644708|644709|644710|644711|644712|644713|644714|644715|644716|644717|644718|644719|652565|677450|693884|693885|693886|703718|703719|703720|703722|703723|703724|703725|703726|714950|726667|726668|726671|731072|740220|740221|740224|755206|755207|770916|770924|770926|778269|785284|788898|843893|843894|843895|843896|843897|843898|843899|843900|843901|843902|843903|843904|843905|843906|843907|843908|843909|843910|843911|843912|843913|843914|843915|843916|843917|843918|843919|843920|843921|843922|843923|843924|843925|843926|843927|852115|927828|927829|927830|927831|927832|927833|927834|927835|937459|937460|937461|937462|937463|937464|937465|937466|937467|937468|937469|937470|937471|937472|937473|937474|937475|949409|949410|949411|949412|949413|949414|949415|949416|949417|949418|949419|957769|957770|957771|957772|957773|957774|957775|957776|971547", + "upstreamId": "45860|194977|194978|194979|194981|194982|194983|194984|194986|255759|255761|255762|255763|255764|255765|255767|255768|255769|255770|255771|255772|255773|255775|255778|268033|270923|389167|415495|445583|465756|465757|465761|465763|466466|466483|466487|466734|466736|466742|466743|512950|530147|530155|530156|530157|530336|530539|568169|570238|570245|570316|584314|644708|644709|644710|644711|644712|644713|644714|644715|644716|644717|644718|644719|652565|677450|693884|693885|693886|703718|703719|703720|703722|703723|703724|703725|703726|714950|726667|726668|726671|731072|740220|740221|740224|755206|755207|770916|770924|770926|778269|785284|788898|843893|843894|843895|843896|843897|843898|843899|843900|843901|843902|843903|843904|843905|843906|843907|843908|843909|843910|843911|843912|843913|843914|843915|843916|843917|843918|843919|843920|843921|843922|843923|843924|843925|843926|843927|852115|927828|927829|927830|927831|927832|927833|927834|927835|937459|937460|937461|937462|937463|937464|937465|937466|937467|937468|937469|937470|937471|937472|937473|937474|937475|949409|949410|949411|949412|949413|949414|949415|949416|949417|949418|949419|957769|957770|957771|957772|957773|957774|957775|957776|971547", "text": "Nephronophthisis 14" }, { - "baseId": "45861|45862", + "upstreamId": "45861|45862", "text": "Joubert syndrome 19" }, { - "baseId": "45863|45864|135244|192046|208116|265344|714148|792792|919531|919532|920334", + "upstreamId": "45863|45864|135244|192046|208116|265344|714148|792792|919531|919532|920334", "text": "Seckel syndrome 7" }, { - "baseId": "45865|431741", + "upstreamId": "45865|431741", "text": "Retinitis pigmentosa 65" }, { - "baseId": "45867|45868|45869|45870|45871|191414|191573|237318|253997|254000|254001|254002|254007|254008|254009|254010|265400|269350|408273|408274|421822|460890|460895|460897|460904|460911|461224|461703|461710|461712|493315|525907|525982|564431|564433|565520|565524|567050|583109|622398|639720|639721|692932|692933|692934|692935|692936|692937|701575|701576|701578|701579|701580|701581|701582|701583|701584|701585|701586|701587|724203|724205|730727|737745|737746|752442|777901|779507|820338|837964|837965|837966|837967|837968|837969|837970|837971|837972|837973|837974|837975|837976|837977|837978|837979|837980|837981|837982|837983|837984|837985|837986|837987|837988|837989|837990|837991|837992|837993|837994|837995|837996|837997|837998|837999|838000|838001|838002|838003|838004|851423|851425|852327|852604|919319|926125|926126|926127|926128|926129|926130|935384|935385|935386|935387|935388|935389|935390|935391|935392|935393|935394|935395|935396|935397|935398|935399|935400|940204|947307|947308|947309|947310|947311|947312|947313|947314|947315|947316|947317|947318|947319|947320|947321|947322|947323|947324|947325|947326|947327|947328|947329|956381|956382|956383|956384|956385|956386|956387|956388|956389|956390|956391|956392|956393|959975|959976|959977|980338|980339|980941", + "upstreamId": "45867|45868|45869|45870|45871|191414|191573|237318|253997|254000|254001|254002|254007|254008|254009|254010|265400|269350|408273|408274|421822|460890|460895|460897|460904|460911|461224|461703|461710|461712|493315|525907|525982|564431|564433|565520|565524|567050|583109|622398|639720|639721|692932|692933|692934|692935|692936|692937|701575|701576|701578|701579|701580|701581|701582|701583|701584|701585|701586|701587|724203|724205|730727|737745|737746|752442|777901|779507|820338|837964|837965|837966|837967|837968|837969|837970|837971|837972|837973|837974|837975|837976|837977|837978|837979|837980|837981|837982|837983|837984|837985|837986|837987|837988|837989|837990|837991|837992|837993|837994|837995|837996|837997|837998|837999|838000|838001|838002|838003|838004|851423|851425|852327|852604|919319|926125|926126|926127|926128|926129|926130|935384|935385|935386|935387|935388|935389|935390|935391|935392|935393|935394|935395|935396|935397|935398|935399|935400|940204|947307|947308|947309|947310|947311|947312|947313|947314|947315|947316|947317|947318|947319|947320|947321|947322|947323|947324|947325|947326|947327|947328|947329|956381|956382|956383|956384|956385|956386|956387|956388|956389|956390|956391|956392|956393|959975|959976|959977|980338|980339|980941", "text": "Nephronophthisis 15" }, { - "baseId": "45875|48301|102597|102597|102598|196002|196003|196004|201157|201174|206798|360811|391203|434754|515912|611376|614219|614220", + "upstreamId": "45875|48301|102597|102597|102598|196002|196003|196004|201157|201174|206798|360811|391203|434754|515912|611376|614219|614220", "text": "Epilepsy, idiopathic generalized, susceptibility to, 12" }, { - "baseId": "45881|45882|188060|188061|188062|188063|304896|304903|304914|304916|304921|304922|304924|304925|304927|304934|304935|304944|304945|304946|304955|308601|308620|308621|308622|308649|308652|308653|308654|308665|313807|313808|313809|313827|313830|313833|313843|313879|313880|313881|313890|313894|313899|313907|313909|313910|489925|502433|620804|722994|722995|751066|766727|783075|783076|899337|899338|899339|899340|899341|899342|899343|899344|899345|899346|899347|899348|899349|899350|899351|899352|899353|899354|899355|899356|899357|899358|899359|899360|900469|900470|900471|900472|900473|900474", + "upstreamId": "45881|45882|188060|188061|188062|188063|304896|304903|304914|304916|304921|304922|304924|304925|304927|304934|304935|304944|304945|304946|304955|308601|308620|308621|308622|308649|308652|308653|308654|308665|313807|313808|313809|313827|313830|313833|313843|313879|313880|313881|313890|313894|313899|313907|313909|313910|489925|502433|620804|722994|722995|751066|766727|783075|783076|899337|899338|899339|899340|899341|899342|899343|899344|899345|899346|899347|899348|899349|899350|899351|899352|899353|899354|899355|899356|899357|899358|899359|899360|900469|900470|900471|900472|900473|900474", "text": "Osteogenesis imperfecta, type xiii" }, { - "baseId": "45883|45884|79733|917045", + "upstreamId": "45883|45884|79733|917045", "text": "Hypogonadotropic hypogonadism 14 with or without anosmia" }, { - "baseId": "45885", + "upstreamId": "45885", "text": "Hypogonadotropic hypogonadism 14 with anosmia" }, { - "baseId": "45886|231438|672114", + "upstreamId": "45886|231438|672114", "text": "Deafness, autosomal recessive 98" }, { - "baseId": "45886|581214", + "upstreamId": "45886|581214", "text": "ECTODERMAL DYSPLASIA 14, HAIR/TOOTH TYPE WITH HYPOHIDROSIS" }, { - "baseId": "45887|45888|45889|45890|45891|45892|45893|244461|443680|454334|454474|454843|520582|521013|536156|536157|560055|560057|564516|625110|633049|633050|633051|651206|651247|651274|691685|799396|799397|830052|830053|830054|830055|923792|923793|923794|932638|932639|944315|944316|944317|953961|966346", + "upstreamId": "45887|45888|45889|45890|45891|45892|45893|244461|443680|454334|454474|454843|520582|521013|536156|536157|560055|560057|564516|625110|633049|633050|633051|651206|651247|651274|691685|799396|799397|830052|830053|830054|830055|923792|923793|923794|932638|932639|944315|944316|944317|953961|966346", "text": "Autosomal recessive axonal neuropathy with neuromyotonia" }, { - "baseId": "45894|45895|45897|255053|264602|360112|363793|373153|373161|373897|373900|374295|374338|376136|376152|376157|376186|409149|409150|504596|504605|505516|505518|566610|568255|569014|569015|569016|578515|642680|642681|642682|642683|642684|656261|656262|739311|744709|744821|769909|841721|841722|841723|927157|927158|936708|936709|936710|940313|941066|948649|948650|948651|957296|957297|957298|961790|964860|964861", + "upstreamId": "45894|45895|45897|255053|264602|360112|363793|373153|373161|373897|373900|374295|374338|376136|376152|376157|376186|409149|409150|504596|504605|505516|505518|566610|568255|569014|569015|569016|578515|642680|642681|642682|642683|642684|656261|656262|739311|744709|744821|769909|841721|841722|841723|927157|927158|936708|936709|936710|940313|941066|948649|948650|948651|957296|957297|957298|961790|964860|964861", "text": "Methylmalonic acidemia with homocystinuria, type cblJ" }, { - "baseId": "45898|45899|45900|275441|469367|470401|470403|533545|533577|533579|533626|533630|533632|571250|571252|573522|573525|648707|648708|648709|648710|648711|648712|648713|648714|648715|648716|728675|742424|745437|757547|773118|848425|848426|848427|848428|853000|929198|929199|929200|938986|951106|951107|951108|958849|958850", + "upstreamId": "45898|45899|45900|275441|469367|470401|470403|533545|533577|533579|533626|533630|533632|571250|571252|573522|573525|648707|648708|648709|648710|648711|648712|648713|648714|648715|648716|728675|742424|745437|757547|773118|848425|848426|848427|848428|853000|929198|929199|929200|938986|951106|951107|951108|958849|958850", "text": "T-cell immunodeficiency, recurrent infections, and autoimmunity with or without cardiac malformations" }, { - "baseId": "45973|66594|132250|133046|196493|243095|422134", + "upstreamId": "45973|66594|132250|133046|196493|243095|422134", "text": "bilateral breast cancer" }, { - "baseId": "45976|46561|183836|408995|454262|494965|561356", + "upstreamId": "45976|46561|183836|408995|454262|494965|561356", "text": "B lymphoblastic leukemia lymphoma with hyperdiploidy" }, { - "baseId": "45994|65919|67015|69561|235341|432821|535741|550711|550712|550715|550716", + "upstreamId": "45994|65919|67015|69561|235341|432821|535741|550711|550712|550715|550716", "text": "Infiltrating duct carcinoma of breast" }, { - "baseId": "46090|550709", + "upstreamId": "46090|550709", "text": "Ovarian Serous Surface Papillary Adenocarcinoma" }, { - "baseId": "46149|46401|46599|49999|65717|66312|66327|66754|67015|70387|102669|131163|139844|213034|226153|409019|550699|550701|550714|550736", + "upstreamId": "46149|46401|46599|49999|65717|66312|66327|66754|67015|70387|102669|131163|139844|213034|226153|409019|550699|550701|550714|550736", "text": "Cancer of the pancreas" }, { - "baseId": "46422|150752|392715", + "upstreamId": "46422|150752|392715", "text": "Anaplastic/large cell medulloblastoma" }, { - "baseId": "46454", + "upstreamId": "46454", "text": "Invasive Lobular Breast Carcinoma" }, { - "baseId": "46540|983702", + "upstreamId": "46540|983702", "text": "Metastatic Prostate Small Cell Carcinoma" }, { - "baseId": "46816|66317|150689|615890", + "upstreamId": "46816|66317|150689|615890", "text": "Genetic non-acquired premature ovarian failure" }, { - "baseId": "46911|584407", + "upstreamId": "46911|584407", "text": "MPV17-related mitochondrial DNA maintenance defect" }, { - "baseId": "46918", + "upstreamId": "46918", "text": "MPV17-Related Disorders" }, { - "baseId": "46918|584407|614556|971338", + "upstreamId": "46918|584407|614556|971338", "text": "Charcot-marie-tooth disease, axonal, type 2ee" }, { - "baseId": "46918", + "upstreamId": "46918", "text": "Mitochondrial DNA depletion syndrome type 6" }, { - "baseId": "47241", + "upstreamId": "47241", "text": "Alpha-thalassemia and related diseases" }, { - "baseId": "47407", + "upstreamId": "47407", "text": "Hereditary mixed polyposis syndrome 1" }, { - "baseId": "47468|140563|140564|140566|140572|140573|140574|140578|140579|140580|140583|140590|140592|140593|140594|140595|140596|140597|140600|140601|140602|140603|140604|140605|140607|140611|140612|140614|140615|140617|140620|140621|140622|140623|140624|140625|140627|140628|140629|140630|140631|140632|140633|140634|140635|140636|140637|140638|140639|140642|140643|140644|140646|140647|140648|140649|140652|140655|140656|140657|140660|140661|140662|140663|140664|140666|140668|140669|140670|140673|140674|165530|178495|192176|194215|194613|195202|196151|209414|209502|209505|209518|209522|209531|209533|209541|209560|209562|209563|209576|209578|209580|209962|209966|209971|209973|209979|209991|209992|209995|209996|209998|210006|210018|210032|210035|210036|210062|210067|210072|210088|210114|210144|240514|250459|250467|253424|258233|270149|283541|283542|283547|283548|283559|283566|283567|283568|283571|284203|284208|284211|284212|284213|284215|284216|284222|284223|284225|284226|284228|284232|284233|284234|284247|286133|286134|286163|286165|286172|286199|286200|286204|286206|286223|286224|286226|286227|286228|286241|286242|286243|286251|286254|286255|286526|286528|286530|286541|286542|286543|286545|286560|286568|286569|286572|286575|286577|286579|286587|307452|307465|307467|307468|307469|307473|307475|307488|307490|307491|307495|307496|307502|307503|307505|307509|307513|307524|307525|307530|307531|307541|307542|307547|307548|307553|307554|307555|311695|311700|311702|311704|311705|311706|311709|311710|311711|311726|311732|311733|311738|311762|311763|311764|311767|311774|311778|311780|311781|311785|311787|311790|317251|317263|317291|317297|317298|317305|317318|317320|317322|317325|317327|317332|317337|317341|317354|317367|317369|317375|317385|317660|317665|317667|317679|317688|317695|317696|317714|317716|317730|317731|317753|317754|317766|317767|317768|317776|317778|317795|317798|317809|317819|317820|317828|317829|317833|317835|317839|317840|329115|329116|329117|329118|329119|329120|329121|329133|329136|329137|339236|339242|339248|345143|345153|346516|346533|346537|346539|346540|346545|346569", + "upstreamId": "47468|140563|140564|140566|140572|140573|140574|140578|140579|140580|140583|140590|140592|140593|140594|140595|140596|140597|140600|140601|140602|140603|140604|140605|140607|140611|140612|140614|140615|140617|140620|140621|140622|140623|140624|140625|140627|140628|140629|140630|140631|140632|140633|140634|140635|140636|140637|140638|140639|140642|140643|140644|140646|140647|140648|140649|140652|140655|140656|140657|140660|140661|140662|140663|140664|140666|140668|140669|140670|140673|140674|165530|178495|192176|194215|194613|195202|196151|209414|209502|209505|209518|209522|209531|209533|209541|209560|209562|209563|209576|209578|209580|209962|209966|209971|209973|209979|209991|209992|209995|209996|209998|210006|210018|210032|210035|210036|210062|210067|210072|210088|210114|210144|240514|250459|250467|253424|258233|270149|283541|283542|283547|283548|283559|283566|283567|283568|283571|284203|284208|284211|284212|284213|284215|284216|284222|284223|284225|284226|284228|284232|284233|284234|284247|286133|286134|286163|286165|286172|286199|286200|286204|286206|286223|286224|286226|286227|286228|286241|286242|286243|286251|286254|286255|286526|286528|286530|286541|286542|286543|286545|286560|286568|286569|286572|286575|286577|286579|286587|307452|307465|307467|307468|307469|307473|307475|307488|307490|307491|307495|307496|307502|307503|307505|307509|307513|307524|307525|307530|307531|307541|307542|307547|307548|307553|307554|307555|311695|311700|311702|311704|311705|311706|311709|311710|311711|311726|311732|311733|311738|311762|311763|311764|311767|311774|311778|311780|311781|311785|311787|311790|317251|317263|317291|317297|317298|317305|317318|317320|317322|317325|317327|317332|317337|317341|317354|317367|317369|317375|317385|317660|317665|317667|317679|317688|317695|317696|317714|317716|317730|317731|317753|317754|317766|317767|317768|317776|317778|317795|317798|317809|317819|317820|317828|317829|317833|317835|317839|317840|329115|329116|329117|329118|329119|329120|329121|329133|329136|329137|339236|339242|339248|345143|345153|346516|346533|346537|346539|346540|346545|346569", "text": "Ehlers-Danlos syndrome, type 7A" }, { - "baseId": "47563|47564", + "upstreamId": "47563|47564", "text": "FLNB-Related Disorders" }, { - "baseId": "47566|51094|51095|53399|53400|53402|53406|176761|178210|224412|260536|265743|372156|372162|398060|460867|460870|460873|461166|461170|461650|503133|525872|526384|526387|564379|564392|565479|565481|565481|565483|567039|639687|639688|639689|639690|639691|652091|684223|701557|820330|837939|837940|837941|837942|837943|837944|858562|919317|926112|926113|926114|926115|926116|935375|935376|947295|947296|947297|947298|947299", + "upstreamId": "47566|51094|51095|53399|53400|53402|53406|176761|178210|224412|260536|265743|372156|372162|398060|460867|460870|460873|461166|461170|461650|503133|525872|526384|526387|564379|564392|565479|565481|565481|565483|567039|639687|639688|639689|639690|639691|652091|684223|701557|820330|837939|837940|837941|837942|837943|837944|858562|919317|926112|926113|926114|926115|926116|935375|935376|947295|947296|947297|947298|947299", "text": "Dilated cardiomyopathy 1II" }, { - "baseId": "47581|47593|47595|47596", + "upstreamId": "47581|47593|47595|47596", "text": "Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal recessive 3" }, { - "baseId": "47593|76993|140787|143071|143072|192333|200016|200025|200027|203034|203048|264339|286556|286557|287233|287252|287253|287255|287320|287322|287323|287327|287329|288040|288052|288067|288073|288079|288085|288797|290524|290733|290734|290735|290736|290751|290752|290971|290990|290991|290992|290993|290994|291008|303732|303737|303738|307196|307236|309188|309201|309206|312159|312174|319813|320336|326063|326064|326069|328425|334869|335751|336685|336708|342086|342087|343618|400552|654473", + "upstreamId": "47593|76993|140787|143071|143072|192333|200016|200025|200027|203034|203048|264339|286556|286557|287233|287252|287253|287255|287320|287322|287323|287327|287329|288040|288052|288067|288073|288079|288085|288797|290524|290733|290734|290735|290736|290751|290752|290971|290990|290991|290992|290993|290994|291008|303732|303737|303738|307196|307236|309188|309201|309206|312159|312174|319813|320336|326063|326064|326069|328425|334869|335751|336685|336708|342086|342087|343618|400552|654473", "text": "Mitochondrial DNA depletion syndrome" }, { - "baseId": "47638", + "upstreamId": "47638", "text": "Juvenile osteochondrosis of spine" }, { - "baseId": "47804|679696", + "upstreamId": "47804|679696", "text": "Early onset Alzheimer disease with behavioral disturbance" }, { - "baseId": "47804|202949", + "upstreamId": "47804|202949", "text": "Spinocerebellar atrophy" }, { - "baseId": "47877|293008|293012|293015|294375|294393|294426|294429|294445|297815|297842|297866|297867|297868|297869|297870|297871|297882|297942|297955|297961|297962|297969|297970|344942", + "upstreamId": "47877|293008|293012|293015|294375|294393|294426|294429|294445|297815|297842|297866|297867|297868|297869|297870|297871|297882|297942|297955|297961|297962|297969|297970|344942", "text": "Corneal Dystrophy, Recessive" }, { - "baseId": "47950|47951|166409|166410|622295|622296", + "upstreamId": "47950|47951|166409|166410|622295|622296", "text": "CYP2C19: decreased function" }, { - "baseId": "47956", + "upstreamId": "47956", "text": "CYP2C19: increased function" }, { - "baseId": "48023|48024|48025", + "upstreamId": "48023|48024|48025", "text": "Hypocalciuric hypercalcemia, familial, type III" }, { - "baseId": "48032|75606|75607|75608|75609|75610|75611|75612|614263", + "upstreamId": "48032|75606|75607|75608|75609|75610|75611|75612|614263", "text": "Asplenia, isolated congenital" }, { - "baseId": "48037|48038|48039|48040|192597|194556|291931|291937|291945|291952|293332|293338|293339|293340|293343|293359|293364|293365|293377|296658|296659|296663|296665|296666|296668|296673|296678|296700|489319|512897|620140|672054|748664|748665|828662|828663|889874|889875|889876|889877|889878|889879|889880|889881|889882|889883|889884|889885|889886|889887|889888|889889|889890|889891|889892|889893|889894|889895|889896|889897", + "upstreamId": "48037|48038|48039|48040|192597|194556|291931|291937|291945|291952|293332|293338|293339|293340|293343|293359|293364|293365|293377|296658|296659|296663|296665|296666|296668|296673|296678|296700|489319|512897|620140|672054|748664|748665|828662|828663|889874|889875|889876|889877|889878|889879|889880|889881|889882|889883|889884|889885|889886|889887|889888|889889|889890|889891|889892|889893|889894|889895|889896|889897", "text": "Congenital stationary night blindness, type 1F" }, { - "baseId": "48045|48046|134365|134366|134367|134368|306884|306892|306894|306895|306897|311069|311074|311076|311077|316675|316676|316677|316680|317008|317016|317021|369771|523990|524289|524595|562775|565527|620318|637715|637716|651812|851722|901132|901133|901134|901135|901136|901137|901138|901139|901140|901141|903317|940129|946374|972574", + "upstreamId": "48045|48046|134365|134366|134367|134368|306884|306892|306894|306895|306897|311069|311074|311076|311077|316675|316676|316677|316680|317008|317016|317021|369771|523990|524289|524595|562775|565527|620318|637715|637716|651812|851722|901132|901133|901134|901135|901136|901137|901138|901139|901140|901141|903317|940129|946374|972574", "text": "Congenital disorder of glycosylation type 1u" }, { - "baseId": "48047|48048|48049|48050", + "upstreamId": "48047|48048|48049|48050", "text": "Sarcosine dehydrogenase deficiency" }, { - "baseId": "48054|48055|48056|48057|48057|48058|48059|48060|48061|131928|131928|132070|193473|237026|269259|271648|276543|276558|276562|276794|276807|276825|276830|277373|277374|277381|277382|277442|277450|277464|277465|364461|364502|404940|447149|447303|481331|511176|515098|515130|515133|515148|515152|515244|515245|515250|556606|556608|556610|556661|556663|556665|556667|558134|558136|626873|626874|626875|626876|626877|626878|626879|626880|626881|626882|626883|626884|626885|626886|626887|626888|626889|626890|626891|626892|650630|678121|690363|690364|690367|690369|690371|690372|690374|695001|696128|696131|696132|696133|718251|729922|743713|777034|780340|794432|794433|822768|822769|822770|822771|822772|822773|822774|822775|822776|822777|822778|822779|822780|822781|903676|918562|918563|921660|921661|921662|921663|930055|930056|930057|941473|941474|941475|941476|941477|941478|941479|941480|941481|941482|941483|941484|941485|941486|941487|952084|952085|952086|952087|952088|952089|959522|980436", + "upstreamId": "48054|48055|48056|48057|48057|48058|48059|48060|48061|131928|131928|132070|193473|237026|269259|271648|276543|276558|276562|276794|276807|276825|276830|277373|277374|277381|277382|277442|277450|277464|277465|364461|364502|404940|447149|447303|481331|511176|515098|515130|515133|515148|515152|515244|515245|515250|556606|556608|556610|556661|556663|556665|556667|558134|558136|626873|626874|626875|626876|626877|626878|626879|626880|626881|626882|626883|626884|626885|626886|626887|626888|626889|626890|626891|626892|650630|678121|690363|690364|690367|690369|690371|690372|690374|695001|696128|696131|696132|696133|718251|729922|743713|777034|780340|794432|794433|822768|822769|822770|822771|822772|822773|822774|822775|822776|822777|822778|822779|822780|822781|903676|918562|918563|921660|921661|921662|921663|930055|930056|930057|941473|941474|941475|941476|941477|941478|941479|941480|941481|941482|941483|941484|941485|941486|941487|952084|952085|952086|952087|952088|952089|959522|980436", "text": "Aicardi-Goutieres syndrome 6" }, { - "baseId": "48066", + "upstreamId": "48066", "text": "Epidermolysis bullosa, nonspecific, autosomal recessive" }, { - "baseId": "48072|48073|48074|48075|48076|48077|48078|48079|48080|237480|237482|424585|481067|581869|920302", + "upstreamId": "48072|48073|48074|48075|48076|48077|48078|48079|48080|237480|237482|424585|481067|581869|920302", "text": "Opsismodysplasia" }, { - "baseId": "48087|48088|48089|48090|48091|48092|106522|106523|106524|171286|188955|206947|237474|237475|237476|361175|427991|427993|427995|427996|481363|581866|590119|804990|804991|804992|804993|805059", + "upstreamId": "48087|48088|48089|48090|48091|48092|106522|106523|106524|171286|188955|206947|237474|237475|237476|361175|427991|427993|427995|427996|481363|581866|590119|804990|804991|804992|804993|805059", "text": "Distal arthrogryposis type 5D" }, { - "baseId": "48093|920258", + "upstreamId": "48093|920258", "text": "Osteogenesis imperfecta, type xiv" }, { - "baseId": "48094|260407|260408|433926|442901|448453|448461|448524|448576|448587|448594|448660|448665|516236|516237|516239|516244|516249|516250|516252|516255|516256|516262|516268|516343|516348|516354|516356|540442|557416|557456|557458|557460|557462|557464|557466|557468|557470|557519|557521|557523|557525|558667|558669|558671|558673|558675|558677|558679|559170|559172|609441|650390|650391|650394|650395|650396|650397|650398|650400|650401|650402|650403|690688|690690|690691|690692|690693|690694|690695|690696|690697|690698|695065|695066|695067|719178|719179|732694|762136|778868|780802|819023|819024|819025|824615|824616|824617|824618|824619|824620|824621|824622|824623|824624|824625|824626|824627|824628|824629|922205|922206|922207|922208|922209|922210|930746|930747|930748|942177|942178|952600|952601|952602|952603|964648", + "upstreamId": "48094|260407|260408|433926|442901|448453|448461|448524|448576|448587|448594|448660|448665|516236|516237|516239|516244|516249|516250|516252|516255|516256|516262|516268|516343|516348|516354|516356|540442|557416|557456|557458|557460|557462|557464|557466|557468|557470|557519|557521|557523|557525|558667|558669|558671|558673|558675|558677|558679|559170|559172|609441|650390|650391|650394|650395|650396|650397|650398|650400|650401|650402|650403|690688|690690|690691|690692|690693|690694|690695|690696|690697|690698|695065|695066|695067|719178|719179|732694|762136|778868|780802|819023|819024|819025|824615|824616|824617|824618|824619|824620|824621|824622|824623|824624|824625|824626|824627|824628|824629|922205|922206|922207|922208|922209|922210|930746|930747|930748|942177|942178|952600|952601|952602|952603|964648", "text": "Neuronopathy, distal hereditary motor, type viia" }, { - "baseId": "48095|48096|48097|48098|241088|565641|639919|798641|919354", + "upstreamId": "48095|48096|48097|48098|241088|565641|639919|798641|919354", "text": "Dystonia 24" }, { - "baseId": "48099|48100|48101|48102|48103|421466|426742|426743|553413|622877|792741|963133", + "upstreamId": "48099|48100|48101|48102|48103|421466|426742|426743|553413|622877|792741|963133", "text": "Spastic paraplegia 56, autosomal recessive" }, { - "baseId": "48104|48105", + "upstreamId": "48104|48105", "text": "Hypotrichosis 11" }, { - "baseId": "48106|48107|171847|215009", + "upstreamId": "48106|48107|171847|215009", "text": "Klippel-Feil syndrome 2, autosomal recessive" }, { - "baseId": "48114", + "upstreamId": "48114", "text": "Brachydactyly, type a1, c" }, { - "baseId": "48144", + "upstreamId": "48144", "text": "Congenital nonbullous ichthyosiform erythroderma" }, { - "baseId": "48144|285303|287455|287457|287669|287716|296690|296692|298558|298559|298575|298587|302679|302683|302685|302719|307050|307386|330559|332788|340757|340761|340769|346392|347722|347734|347764|348283|349495|361957|361959|443963|613741|672241|672242|672243|672244|672245|672246|672247|672248|672249|672250|672251|672252", + "upstreamId": "48144|285303|287455|287457|287669|287716|296690|296692|298558|298559|298575|298587|302679|302683|302685|302719|307050|307386|330559|332788|340757|340761|340769|346392|347722|347734|347764|348283|349495|361957|361959|443963|613741|672241|672242|672243|672244|672245|672246|672247|672248|672249|672250|672251|672252", "text": "Congenital ichthyosiform erythroderma" }, { - "baseId": "48151|48152", + "upstreamId": "48151|48152", "text": "Zinc deficiency, transient neonatal" }, { - "baseId": "48154|48155|48156|48158|249390|249391|276592|614182|614183|614184|614185|614186|816300|980433", + "upstreamId": "48154|48155|48156|48158|249390|249391|276592|614182|614183|614184|614185|614186|816300|980433", "text": "Ectopia lentis et pupillae" }, { - "baseId": "48160|48161|252342|252343|252344|252345|252346|300019|300029|300031|300036|300038|300042|300044|300048|302702|302703|302704|302705|302706|302709|302720|302721|307051|307054|307055|307056|307333|307334|307337|307366|307367|307368|307379|307380|307392|361956|361957|361958|361959|361960|389753|431011|438322|443963|609204|613741|622227|622228|622229|622230|622231|622262|710481|710482|722017|722019|895904|895905|895906|895907|895908|895909|895910|895911|895912|895913|895914|895915|895916|895917|895918|895919|895920|895921|896237|896238|896239", + "upstreamId": "48160|48161|252342|252343|252344|252345|252346|300019|300029|300031|300036|300038|300042|300044|300048|302702|302703|302704|302705|302706|302709|302720|302721|307051|307054|307055|307056|307333|307334|307337|307366|307367|307368|307379|307380|307392|361956|361957|361958|361959|361960|389753|431011|438322|443963|609204|613741|622227|622228|622229|622230|622231|622262|710481|710482|722017|722019|895904|895905|895906|895907|895908|895909|895910|895911|895912|895913|895914|895915|895916|895917|895918|895919|895920|895921|896237|896238|896239", "text": "Autosomal recessive congenital ichthyosis 10" }, { - "baseId": "48162|48163|48164|361490|407824|439114|459707|539027|563592|563593|563597|564510|569524|569541|576135|578482|609740|626196|638758|638759|652089|701216|701217|701219|701220|701221|712196|712197|712198|712199|712200|712201|723801|723802|723803|723805|723807|723808|723810|744552|759933|767653|779459|779461|790942|820192|836678|836679|836680|836681|836682|920281|925759|934976|960714|961783|961784", + "upstreamId": "48162|48163|48164|361490|407824|439114|459707|539027|563592|563593|563597|564510|569524|569541|576135|578482|609740|626196|638758|638759|652089|701216|701217|701219|701220|701221|712196|712197|712198|712199|712200|712201|723801|723802|723803|723805|723807|723808|723810|744552|759933|767653|779459|779461|790942|820192|836678|836679|836680|836681|836682|920281|925759|934976|960714|961783|961784", "text": "2-aminoadipic 2-oxoadipic aciduria" }, { - "baseId": "48165|213597|446857|539027|576135|608957|903493", + "upstreamId": "48165|213597|446857|539027|576135|608957|903493", "text": "Charcot-Marie-Tooth disease, axonal, type 2Q" }, { - "baseId": "48168|48169", + "upstreamId": "48168|48169", "text": "Phosphohydroxylysinuria" }, { - "baseId": "48170|48171|134744|205242|213552|244153|247430|259766|259766|290723|291634|291659|440803|443460|494945|494946|494947|494948|494949|494950|511499|576106|612473|790396|790397|963540|966847|969704", + "upstreamId": "48170|48171|134744|205242|213552|244153|247430|259766|259766|290723|291634|291659|440803|443460|494945|494946|494947|494948|494949|494950|511499|576106|612473|790396|790397|963540|966847|969704", "text": "Spinocerebellar ataxia type 29" }, { - "baseId": "48177|48178|48179|139356|139357|384501|384502|411517|513138|513139|623349|623350|818335", + "upstreamId": "48177|48178|48179|139356|139357|384501|384502|411517|513138|513139|623349|623350|818335", "text": "Nephrotic syndrome, type 7" }, { - "baseId": "48180|135314|135316|429275|461567|461898|462239|579720|579721|579732|579738|579760|579953|579968|672082|695536|701900|738162|768632|777983|778160|787698|941009", + "upstreamId": "48180|135314|135316|429275|461567|461898|462239|579720|579721|579732|579738|579760|579953|579968|672082|695536|701900|738162|768632|777983|778160|787698|941009", "text": "Schuurs-hoeijmakers syndrome" }, { - "baseId": "48180|198826|514050|514051", + "upstreamId": "48180|198826|514050|514051", "text": "Mitral valve prolapse" }, { - "baseId": "48180", + "upstreamId": "48180", "text": "Optic disc pallor" }, { - "baseId": "48180|360984|459248", + "upstreamId": "48180|360984|459248", "text": "Aortic root dilatation" }, { - "baseId": "48180|550131|590736", + "upstreamId": "48180|550131|590736", "text": "Hypotelorism" }, { - "baseId": "48180", + "upstreamId": "48180", "text": "PACS1-related syndrome" }, { - "baseId": "48187|48188|70502|70502|139368|251822|270125|270626|363941|363941|454742|454749|454815|454817|455307|455595|455600|455602|455604|513955|520924|520926|520927|521357|559833|560213|560334|562990|562995|562996|633635|633636|633637|691784|691785|691786|691787|691788|691789|691790|695283|698920|698921|698922|698924|698927|698928|698929|698930|698932|698933|698934|698935|698937|698938|698939|709731|709732|721300|721301|721302|721305|734934|749343|749349|830537|830538|918933|918934|923948|923949|944491|944492|944493|954093", + "upstreamId": "48187|48188|70502|70502|139368|251822|270125|270626|363941|363941|454742|454749|454815|454817|455307|455595|455600|455602|455604|513955|520924|520926|520927|521357|559833|560213|560334|562990|562995|562996|633635|633636|633637|691784|691785|691786|691787|691788|691789|691790|695283|698920|698921|698922|698924|698927|698928|698929|698930|698932|698933|698934|698935|698937|698938|698939|709731|709732|721300|721301|721302|721305|734934|749343|749349|830537|830538|918933|918934|923948|923949|944491|944492|944493|954093", "text": "Basal ganglia calcification, idiopathic, 4" }, { - "baseId": "48191|135824|195354|391252|427838|983535", + "upstreamId": "48191|135824|195354|391252|427838|983535", "text": "Early infantile epileptic encephalopathy 15" }, { - "baseId": "48192|48192|48193|48193|48194|48194|48195|48196|48197|48198|48198|97568|97568|131953|131953|134797|134800|134801|134802|134804|134804|134805|134806|134807|134808|134809|134810|134811|134812|134813|134814|190603|190604|191084|191085|191086|191275|191587|191944|192044|192045|192142|192143|192145|192779|192780|193143|193664|193793|194489|207650|207651|207652|207653|207654|207655|225839|225839|225840|225840|237102|240525|240527|240528|240529|240531|240532|259918|264399|264434|264494|265856|270947|270947|272505|273018|273452|273511|274244|274653|359914|361531|361532|361631|362336|370113|370123|370129|370135|370137|370147|370148|370157|370159|370162|370188|370555|370557|370592|370602|370609|370616|370625|370626|370633|370648|370673|370697|370701|370704|370708|370719|370725|370729|370730|370895|370902|370905|370929|370930|370937|370942|370972|370977|370982|370985|370988|370998|371009|371015|371017|371025|371033|371045|371052|371058|371073|372572|372631|372640|372655|372656|372693|372698|372700|372707|372719|372754|372755|372761|396706|396707|396710|396722|396723|396724|396728|396729|396730|396733|396900|396915|396917|396923|396924|396944|396946|396949|396953|397020|397025|397039|397045|397047|397299|397300|397305|397306|407610|407611|407614|407619|413802|413803|421727|425833|441324|441325|441326|444411|444414|444418|444419|444421|458856|458863|458864|458873|458875|458877|458887|458896|458904|458905|459229|459235|459238|459244|459246|459249|459251|459255|459258|459267|459275|459280|459281|459283|459285|459288|459294|459311|459313|459686|459691|459697|459700|459703|459705|459708|459710|459716|459718|459721|459724|459733|488158|489409|491623|492800|494056|502387|502408|502410|502412|502717|502720|502722|503119|503147|503172|524324|524326|524327|524336|524338|524344|524594|524597|524599|524600|524606|524608|524610|524615|524621|524625|524632|524636|524759|524760|524763|524764|524782|524785|524787|524791|524797|524803|524807|524922|524927|524934|524936|524940|524942|524944|524949|536766|539020|539020|552136|552137|562987|562991|563002|563004|563006|563012|563019|563021|563025|563236|563736|563742|563744|563756|563756|563757|563759|563764|563767|563769|563780|565734|565735|565740|565743|565745|565746|565748|568323|568810|568814|568817|568818|568825|579550|579555|579560|579567|579621|579632|584641|586592|586592|614339|637999|638000|638001|638002|638003|638004|638005|638006|638007|638008|638009|638010|638010|638011|638012|638013|638014|638015|638016|638017|638018|638019|638020|638021|638022|638023|638024|638025|638026|638027|638028|638029|638030|638031|651838|651929|651991|652146|655924|655926|684064|684065|685248|687420|687421|687422|687424|687426|687427|687432|687433|689943|692634|692635|695429|695430|736998|737001|751536|759890|767261|767269|767270|767272|790860|790861|790862|790863|790864|790865|793336|793338|801996|801997|801998|802000|820096|820097|821984|821985|821986|821987|821988|821989|821990|821991|821992|821993|821994|822267|835797|835798|835799|835800|835801|835802|835803|835804|835805|835806|835807|835808|835809|835810|835811|835812|835813|835814|835815|835816|835817|835818|835819|835820|835821|835822|835823|835824|835825|835826|835827|835828|851250|851253|851256|851730|852172|852174|858348|859740|859741|917734|919204|925475|925476|925477|925478|925479|925480|925481|925482|925483|925484|925485|925486|925487|925488|925489|925490|925491|925492|934641|934642|934643|934644|934645|934646|934647|946482|946483|946484|946485|946486|946487|946488|946489|946490|946491|946492|946493|946494|946495|946496|955753|955754|959916", + "upstreamId": "48192|48192|48193|48193|48194|48194|48195|48196|48197|48198|48198|97568|97568|131953|131953|134797|134800|134801|134802|134804|134804|134805|134806|134807|134808|134809|134810|134811|134812|134813|134814|190603|190604|191084|191085|191086|191275|191587|191944|192044|192045|192142|192143|192145|192779|192780|193143|193664|193793|194489|207650|207651|207652|207653|207654|207655|225839|225839|225840|225840|237102|240525|240527|240528|240529|240531|240532|259918|264399|264434|264494|265856|270947|270947|272505|273018|273452|273511|274244|274653|359914|361531|361532|361631|362336|370113|370123|370129|370135|370137|370147|370148|370157|370159|370162|370188|370555|370557|370592|370602|370609|370616|370625|370626|370633|370648|370673|370697|370701|370704|370708|370719|370725|370729|370730|370895|370902|370905|370929|370930|370937|370942|370972|370977|370982|370985|370988|370998|371009|371015|371017|371025|371033|371045|371052|371058|371073|372572|372631|372640|372655|372656|372693|372698|372700|372707|372719|372754|372755|372761|396706|396707|396710|396722|396723|396724|396728|396729|396730|396733|396900|396915|396917|396923|396924|396944|396946|396949|396953|397020|397025|397039|397045|397047|397299|397300|397305|397306|407610|407611|407614|407619|413802|413803|421727|425833|441324|441325|441326|444411|444414|444418|444419|444421|458856|458863|458864|458873|458875|458877|458887|458896|458904|458905|459229|459235|459238|459244|459246|459249|459251|459255|459258|459267|459275|459280|459281|459283|459285|459288|459294|459311|459313|459686|459691|459697|459700|459703|459705|459708|459710|459716|459718|459721|459724|459733|488158|489409|491623|492800|494056|502387|502408|502410|502412|502717|502720|502722|503119|503147|503172|524324|524326|524327|524336|524338|524344|524594|524597|524599|524600|524606|524608|524610|524615|524621|524625|524632|524636|524759|524760|524763|524764|524782|524785|524787|524791|524797|524803|524807|524922|524927|524934|524936|524940|524942|524944|524949|536766|539020|539020|552136|552137|562987|562991|563002|563004|563006|563012|563019|563021|563025|563236|563736|563742|563744|563756|563756|563757|563759|563764|563767|563769|563780|565734|565735|565740|565743|565745|565746|565748|568323|568810|568814|568817|568818|568825|579550|579555|579560|579567|579621|579632|584641|586592|586592|614339|637999|638000|638001|638002|638003|638004|638005|638006|638007|638008|638009|638010|638010|638011|638012|638013|638014|638015|638016|638017|638018|638019|638020|638021|638022|638023|638024|638025|638026|638027|638028|638029|638030|638031|651838|651929|651991|652146|655924|655926|684064|684065|685248|687420|687421|687422|687424|687426|687427|687432|687433|689943|692634|692635|695429|695430|736998|737001|751536|759890|767261|767269|767270|767272|790860|790861|790862|790863|790864|790865|793336|793338|801996|801997|801998|802000|820096|820097|821984|821985|821986|821987|821988|821989|821990|821991|821992|821993|821994|822267|835797|835798|835799|835800|835801|835802|835803|835804|835805|835806|835807|835808|835809|835810|835811|835812|835813|835814|835815|835816|835817|835818|835819|835820|835821|835822|835823|835824|835825|835826|835827|835828|851250|851253|851256|851730|852172|852174|858348|859740|859741|917734|919204|925475|925476|925477|925478|925479|925480|925481|925482|925483|925484|925485|925486|925487|925488|925489|925490|925491|925492|934641|934642|934643|934644|934645|934646|934647|946482|946483|946484|946485|946486|946487|946488|946489|946490|946491|946492|946493|946494|946495|946496|955753|955754|959916", "text": "Early infantile epileptic encephalopathy 14" }, { - "baseId": "48192|48192|48193|48194|48194|48196|48196|48197|48197|48198|48198|94262|94263|94264|97568|131953|131953|134797|134800|134801|134802|134804|134805|134806|134807|134808|134809|134810|134810|134811|134812|134813|134814|181176|190603|190604|191084|191085|191086|191275|191587|191944|192044|192045|192142|192143|192145|192779|192780|193143|193664|193793|194489|207650|207651|207652|207653|207654|207655|225839|225840|237102|240525|240527|240528|240529|240531|240532|259918|264399|264494|265856|270947|272505|273018|273452|273511|274244|274653|359914|361531|361532|361631|362336|370113|370123|370129|370135|370137|370147|370148|370157|370159|370162|370188|370555|370557|370592|370602|370609|370616|370625|370626|370633|370648|370673|370697|370701|370704|370708|370719|370725|370729|370730|370895|370902|370905|370929|370930|370937|370942|370972|370977|370982|370985|370988|370998|371009|371015|371017|371025|371033|371045|371052|371058|371073|372572|372631|372640|372655|372656|372693|372698|372700|372707|372719|372754|372755|372761|396706|396707|396710|396722|396723|396724|396728|396729|396730|396733|396900|396915|396917|396923|396924|396944|396946|396949|396953|397020|397025|397039|397045|397047|397299|397300|397305|397306|407610|407611|407614|407619|413802|413803|421727|425833|441324|441325|441326|444411|444414|444418|444419|444421|458856|458863|458864|458873|458875|458877|458887|458896|458904|458905|459229|459235|459238|459244|459246|459249|459251|459255|459258|459267|459275|459280|459281|459283|459285|459288|459294|459311|459313|459686|459691|459697|459700|459703|459705|459708|459710|459716|459718|459721|459724|459733|489409|491623|492800|494056|502387|502408|502410|502412|502717|502720|502722|503119|503147|503172|524324|524326|524327|524336|524338|524344|524594|524597|524599|524600|524606|524608|524610|524615|524621|524625|524632|524636|524759|524760|524763|524764|524782|524785|524787|524791|524797|524803|524807|524922|524927|524934|524936|524940|524942|524944|524949|536766|539020|539020|562987|562991|563002|563004|563006|563012|563019|563021|563025|563236|563736|563742|563744|563756|563757|563759|563764|563767|563769|563780|565734|565735|565740|565743|565745|565746|565748|568323|568810|568814|568817|568818|568818|568825|579550|579555|579560|579567|579621|579632|584641|586592|614339|637999|638000|638001|638002|638003|638004|638005|638006|638007|638008|638009|638010|638011|638012|638013|638014|638015|638016|638017|638018|638019|638020|638021|638022|638023|638024|638025|638026|638027|638028|638029|638030|638031|651838|651929|651991|652146|655924|655926|684064|684065|685248|687420|687421|687422|687424|687426|687427|687432|687433|689943|692634|692635|695429|695430|736998|737001|751536|759890|767261|767269|767270|767272|793336|793338|801995|801999|820096|820097|821984|821985|821986|821987|821988|821989|821990|821991|821992|821993|821994|821994|822267|835797|835798|835799|835800|835801|835802|835803|835804|835805|835806|835807|835808|835809|835810|835811|835812|835813|835814|835815|835816|835817|835818|835819|835820|835821|835822|835823|835824|835825|835826|835827|835828|851250|851253|851256|851730|852172|852174|859740|859741|919204|919204|919205|920269|920270|925475|925476|925477|925478|925479|925480|925481|925482|925483|925484|925485|925486|925487|925488|925489|925490|925491|925492|934641|934642|934643|934644|934645|934646|934647|946482|946483|946484|946485|946486|946487|946488|946489|946490|946491|946492|946493|946494|946495|946496|955753|955754|959916|964320|970902|977237", + "upstreamId": "48192|48192|48193|48194|48194|48196|48196|48197|48197|48198|48198|94262|94263|94264|97568|131953|131953|134797|134800|134801|134802|134804|134805|134806|134807|134808|134809|134810|134810|134811|134812|134813|134814|181176|190603|190604|191084|191085|191086|191275|191587|191944|192044|192045|192142|192143|192145|192779|192780|193143|193664|193793|194489|207650|207651|207652|207653|207654|207655|225839|225840|237102|240525|240527|240528|240529|240531|240532|259918|264399|264494|265856|270947|272505|273018|273452|273511|274244|274653|359914|361531|361532|361631|362336|370113|370123|370129|370135|370137|370147|370148|370157|370159|370162|370188|370555|370557|370592|370602|370609|370616|370625|370626|370633|370648|370673|370697|370701|370704|370708|370719|370725|370729|370730|370895|370902|370905|370929|370930|370937|370942|370972|370977|370982|370985|370988|370998|371009|371015|371017|371025|371033|371045|371052|371058|371073|372572|372631|372640|372655|372656|372693|372698|372700|372707|372719|372754|372755|372761|396706|396707|396710|396722|396723|396724|396728|396729|396730|396733|396900|396915|396917|396923|396924|396944|396946|396949|396953|397020|397025|397039|397045|397047|397299|397300|397305|397306|407610|407611|407614|407619|413802|413803|421727|425833|441324|441325|441326|444411|444414|444418|444419|444421|458856|458863|458864|458873|458875|458877|458887|458896|458904|458905|459229|459235|459238|459244|459246|459249|459251|459255|459258|459267|459275|459280|459281|459283|459285|459288|459294|459311|459313|459686|459691|459697|459700|459703|459705|459708|459710|459716|459718|459721|459724|459733|489409|491623|492800|494056|502387|502408|502410|502412|502717|502720|502722|503119|503147|503172|524324|524326|524327|524336|524338|524344|524594|524597|524599|524600|524606|524608|524610|524615|524621|524625|524632|524636|524759|524760|524763|524764|524782|524785|524787|524791|524797|524803|524807|524922|524927|524934|524936|524940|524942|524944|524949|536766|539020|539020|562987|562991|563002|563004|563006|563012|563019|563021|563025|563236|563736|563742|563744|563756|563757|563759|563764|563767|563769|563780|565734|565735|565740|565743|565745|565746|565748|568323|568810|568814|568817|568818|568818|568825|579550|579555|579560|579567|579621|579632|584641|586592|614339|637999|638000|638001|638002|638003|638004|638005|638006|638007|638008|638009|638010|638011|638012|638013|638014|638015|638016|638017|638018|638019|638020|638021|638022|638023|638024|638025|638026|638027|638028|638029|638030|638031|651838|651929|651991|652146|655924|655926|684064|684065|685248|687420|687421|687422|687424|687426|687427|687432|687433|689943|692634|692635|695429|695430|736998|737001|751536|759890|767261|767269|767270|767272|793336|793338|801995|801999|820096|820097|821984|821985|821986|821987|821988|821989|821990|821991|821992|821993|821994|821994|822267|835797|835798|835799|835800|835801|835802|835803|835804|835805|835806|835807|835808|835809|835810|835811|835812|835813|835814|835815|835816|835817|835818|835819|835820|835821|835822|835823|835824|835825|835826|835827|835828|851250|851253|851256|851730|852172|852174|859740|859741|919204|919204|919205|920269|920270|925475|925476|925477|925478|925479|925480|925481|925482|925483|925484|925485|925486|925487|925488|925489|925490|925491|925492|934641|934642|934643|934644|934645|934646|934647|946482|946483|946484|946485|946486|946487|946488|946489|946490|946491|946492|946493|946494|946495|946496|955753|955754|959916|964320|970902|977237", "text": "Epilepsy, nocturnal frontal lobe, 5" }, { - "baseId": "48200|244166|361080|438582|745480|745482", + "upstreamId": "48200|244166|361080|438582|745480|745482", "text": "Cowchock syndrome" }, { - "baseId": "48201|677303|919175", + "upstreamId": "48201|677303|919175", "text": "Familial episodic pain syndrome 1" }, { - "baseId": "48202|48203|48204|48205|48206|59640|59641|254707|267778|421948|462421|462427|462428|462435|462441|462686|504374|527322|527324|527636|527865|565685|567002|567010|567019|567030|568164|571166|571977|571983|622835|641352|641353|641355|693270|702462", + "upstreamId": "48202|48203|48204|48205|48206|59640|59641|254707|267778|421948|462421|462427|462428|462435|462441|462686|504374|527322|527324|527636|527865|565685|567002|567010|567019|567030|568164|571166|571977|571983|622835|641352|641353|641355|693270|702462", "text": "Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type a, 10" }, { - "baseId": "48207|206636|363982|481207|531433|531532|571709|574533|646229|646230|646231|646232|715547|715549|727264|740861|778274|785644|797564|845648|845649|845650|845651|845652|928385|950044|950045|958195", + "upstreamId": "48207|206636|363982|481207|531433|531532|571709|574533|646229|646230|646231|646232|715547|715549|727264|740861|778274|785644|797564|845648|845649|845650|845651|845652|928385|950044|950045|958195", "text": "Maternal riboflavin deficiency" }, { - "baseId": "48214|49912|207092|361804|361805|495159|513266|514291|583091|653865|653916|790431|792742", + "upstreamId": "48214|49912|207092|361804|361805|495159|513266|514291|583091|653865|653916|790431|792742", "text": "Alazami syndrome" }, { - "baseId": "48215|48216|48217|512805", + "upstreamId": "48215|48216|48217|512805", "text": "Cleft palate, isolated" }, { - "baseId": "48219|48220|204531|211115|211116|211118|227279|622070|622071|622072|970486", + "upstreamId": "48219|48220|204531|211115|211116|211118|227279|622070|622071|622072|970486", "text": "Perrault syndrome 2" }, { - "baseId": "48225|48226|48227|48228|48229|48230|48231|48232|48233|213629|213630|273614|361211|361212|362440|362441|409073|421974|424700|430983|481349|511012|551314|551315|552171|623318|653887|798671|799764|816021|857656|919512|919513|919514|919515|961529|964097|964680|969708", + "upstreamId": "48225|48226|48227|48228|48229|48230|48231|48232|48233|213629|213630|273614|361211|361212|362440|362441|409073|421974|424700|430983|481349|511012|551314|551315|552171|623318|653887|798671|799764|816021|857656|919512|919513|919514|919515|961529|964097|964680|969708", "text": "Autism, susceptibility to, 18" }, { - "baseId": "48236|48237|48238|48239|48240|533213|679723", + "upstreamId": "48236|48237|48238|48239|48240|533213|679723", "text": "Ciliary dyskinesia, primary, 20" }, { - "baseId": "48253|48254|48255|137052|213551|227078|247398|259764|259765|264142|264159|406301|421442|424246|428176|443452|495185|550355|550356|551769|552074|552075|553377|589801|589831|623275|653859|798531|798532|805344|903521|918237|964223|967266|969251", + "upstreamId": "48253|48254|48255|137052|213551|227078|247398|259764|259765|264142|264159|406301|421442|424246|428176|443452|495185|550355|550356|551769|552074|552075|553377|589801|589831|623275|653859|798531|798532|805344|903521|918237|964223|967266|969251", "text": "Mental retardation, autosomal dominant 19" }, { - "baseId": "48264|48265|76353|206722|259631|263969|361157|362431|364424|404923|423707|423708|425312|427639|427641|442546|535694|550761|575485|611374|614074|625784|626365|653912|789845|789846|804861|904242|918559|918560|920126|965735|969549|970369|970370|970514|970661|976640", + "upstreamId": "48264|48265|76353|206722|259631|263969|361157|362431|364424|404923|423707|423708|425312|427639|427641|442546|535694|550761|575485|611374|614074|625784|626365|653912|789845|789846|804861|904242|918559|918560|920126|965735|969549|970369|970370|970514|970661|976640", "text": "Mental retardation, autosomal dominant 18" }, { - "baseId": "48270|48271|48272|48273|222375|241849|241850|241851|241852|373109|373113|373868|376092|376094|399679|399681|399687|400219|400417|409131|463305|463814|464159|464308|464312|528668|528669|528672|528674|566500|568941|572814|572815|572818|642504|642505|642506|642507|642508|642509|642510|652952|684498|684499|685399|688307|688308|714161|788882|841551|841552|841553|841554|841555|841556|841557|841558|851559|927098|927099|927100|927101|927102|936637|948586|948587|948588|957233|957234|957235|960805", + "upstreamId": "48270|48271|48272|48273|222375|241849|241850|241851|241852|373109|373113|373868|376092|376094|399679|399681|399687|400219|400417|409131|463305|463814|464159|464308|464312|528668|528669|528672|528674|566500|568941|572814|572815|572818|642504|642505|642506|642507|642508|642509|642510|652952|684498|684499|685399|688307|688308|714161|788882|841551|841552|841553|841554|841555|841556|841557|841558|851559|927098|927099|927100|927101|927102|936637|948586|948587|948588|957233|957234|957235|960805", "text": "Spastic paraplegia 28, autosomal recessive" }, { - "baseId": "48274|222358|222359|241778|241779|241780|360152|361210|372956|372957|372958|372959|373686|373687|373699|374019|375849|375852|399487|399535|399540|399544|399548|399644|399645|399647|399652|399653|400073|400076|400080|400261|400265|445179|445180|445181|463046|463530|463813|463816|463818|504405|504654|504943|505327|527928|527932|527935|527937|527952|528270|528411|528412|528414|539052|547272|547431|566230|566232|566233|567813|567824|568694|568698|568699|568710|572669|572673|572676|572677|572678|642112|642113|642114|642115|642116|642117|642118|642119|642120|642121|642122|684433|684434|684435|684436|684437|684438|684439|684440|684441|684442|684443|684444|684445|684446|684447|684448|684449|684450|684451|684452|684453|685391|688209|688210|688211|688212|688214|688215|688216|688217|688218|688219|688220|688221|688222|688223|688224|688225|688226|688227|688228|688229|688230|688231|688232|688233|688234|688235|688236|688238|688239|688240|690071|690072|690073|693418|693419|693420|693422|695607|695608|702767|702768|702769|725567|725568|739124|739125|739126|739127|739128|769673|769675|769676|769677|775970|784648|784649|784656|820594|820595|820596|841069|841070|841071|841072|841073|841074|841075|841076|841077|926965|926966|936517|936518|948438|948439|948440|948441|957148|957149|957150|957151|957152|957153|957154|957155|961032|961034|961222|961312|961313|961811|962132|965618|966617|979423|979424|979425|979426|979427|979428|979429|979430|979431|979432|979433|979434|979435|979436|979437|979438|979439|979440|979441|979442|979443|979444|979445|979446|979447|979448|979449|979450|979451|979452|979453|979454|979455|979456|979457|979458|979459|979460|979461|979462|979463|979464|979465|979466|979467|983706|983707|983708", + "upstreamId": "48274|222358|222359|241778|241779|241780|360152|361210|372956|372957|372958|372959|373686|373687|373699|374019|375849|375852|399487|399535|399540|399544|399548|399644|399645|399647|399652|399653|400073|400076|400080|400261|400265|445179|445180|445181|463046|463530|463813|463816|463818|504405|504654|504943|505327|527928|527932|527935|527937|527952|528270|528411|528412|528414|539052|547272|547431|566230|566232|566233|567813|567824|568694|568698|568699|568710|572669|572673|572676|572677|572678|642112|642113|642114|642115|642116|642117|642118|642119|642120|642121|642122|684433|684434|684435|684436|684437|684438|684439|684440|684441|684442|684443|684444|684445|684446|684447|684448|684449|684450|684451|684452|684453|685391|688209|688210|688211|688212|688214|688215|688216|688217|688218|688219|688220|688221|688222|688223|688224|688225|688226|688227|688228|688229|688230|688231|688232|688233|688234|688235|688236|688238|688239|688240|690071|690072|690073|693418|693419|693420|693422|695607|695608|702767|702768|702769|725567|725568|739124|739125|739126|739127|739128|769673|769675|769676|769677|775970|784648|784649|784656|820594|820595|820596|841069|841070|841071|841072|841073|841074|841075|841076|841077|926965|926966|936517|936518|948438|948439|948440|948441|957148|957149|957150|957151|957152|957153|957154|957155|961032|961034|961222|961312|961313|961811|962132|965618|966617|979423|979424|979425|979426|979427|979428|979429|979430|979431|979432|979433|979434|979435|979436|979437|979438|979439|979440|979441|979442|979443|979444|979445|979446|979447|979448|979449|979450|979451|979452|979453|979454|979455|979456|979457|979458|979459|979460|979461|979462|979463|979464|979465|979466|979467|983706|983707|983708", "text": "Spastic paraplegia 49, autosomal recessive" }, { - "baseId": "48275|48276|48277|48278|48279|48280|96876|106844|207544|207546|370223|370224|371848|421672|428832|428833|428836|444273|457829|457833|457836|457840|457846|458891|458897|502017|502019|523554|523557|523882|524143|524154|562947|565113|565117|622389|622390|626175|637196|637197|637198|637199|637200|637201|651724|651967|655863|684005|684006|684007|687279|736641|744421|766801|796170|834736|834737|925197|934301|934302|940103|955406|955407", + "upstreamId": "48275|48276|48277|48278|48279|48280|96876|106844|207544|207546|370223|370224|371848|421672|428832|428833|428836|444273|457829|457833|457836|457840|457846|458891|458897|502017|502019|523554|523557|523882|524143|524154|562947|565113|565117|622389|622390|626175|637196|637197|637198|637199|637200|637201|651724|651967|655863|684005|684006|684007|687279|736641|744421|766801|796170|834736|834737|925197|934301|934302|940103|955406|955407", "text": "Spastic paraplegia 54, autosomal recessive" }, { - "baseId": "48283|240162|396135|396417|523259|677206", + "upstreamId": "48283|240162|396135|396417|523259|677206", "text": "Ciliary dyskinesia, primary, 18" }, { - "baseId": "48284|48285|48286|490904|609316", + "upstreamId": "48284|48285|48286|490904|609316", "text": "Deafness, autosomal recessive 48" }, { - "baseId": "48287", + "upstreamId": "48287", "text": "Usher syndrome, type 1J" }, { - "baseId": "48288", + "upstreamId": "48288", "text": "HYPOGONADOTROPIC HYPOGONADISM 15 WITH OR WITHOUT ANOSMIA, SUSCEPTIBILITY TO" }, { - "baseId": "48289|48290|48291|48292", + "upstreamId": "48289|48290|48291|48292", "text": "Hypogonadotropic hypogonadism 15 with anosmia" }, { - "baseId": "48293|48294|77869|77870|77871|134667|191229|191682|208938|208940|225851|237535|363640|363654|364204|377886|379012|379014|379020|379114|379118|379963|379964|379966|379969|380161|413849|430711|433601|439210|495892|507840|507934|507939|507963|508547|508552|534608|538505|572329|573671|649804|649805|649806|649807|649808|649809|729498|729499|729500|729501|743223|743224|743230|758367|758368|758370|758373|773878|773879|773884|773885|786745|786746|849772|849773|849774|849775|849776|849777|929610|939479|951654|951655|951656|951657|959195|959196|959197|960367|971190", + "upstreamId": "48293|48294|77869|77870|77871|134667|191229|191682|208938|208940|225851|237535|363640|363654|364204|377886|379012|379014|379020|379114|379118|379963|379964|379966|379969|380161|413849|430711|433601|439210|495892|507840|507934|507939|507963|508547|508552|534608|538505|572329|573671|649804|649805|649806|649807|649808|649809|729498|729499|729500|729501|743223|743224|743230|758367|758368|758370|758373|773878|773879|773884|773885|786745|786746|849772|849773|849774|849775|849776|849777|929610|939479|951654|951655|951656|951657|959195|959196|959197|960367|971190", "text": "Mental retardation 3, X-linked" }, { - "baseId": "48295|438794|466807|570578|610028|614430|816340|920365|971056", + "upstreamId": "48295|438794|466807|570578|610028|614430|816340|920365|971056", "text": "Autoinflammation, antibody deficiency, and immune dysregulation, plcg2-associated" }, { - "baseId": "48296|181182|181183|214533|231511|231521|244152|244340|244341|245298|248727|274228|366203|366375|421363|433504|448534|450538|450735|450737|450744|499536|499934|517820|517823|517826|517841|517843|557884|557935|557937|557939|559123|559125|560944|560946|560950|612349|629480|629481|629482|629483|629484|629485|629486|629487|650942|695116|695117|697338|743878|825755|825756|825757|825758|825759|825760|825761|825762|825763|825764|851151|851400|861336|922580|922581|922582|922583|931157|931158|940695|942614|942615|942616|952945|952946|952947|952948", + "upstreamId": "48296|181182|181183|214533|231511|231521|244152|244340|244341|245298|248727|274228|366203|366375|421363|433504|448534|450538|450735|450737|450744|499536|499934|517820|517823|517826|517841|517843|557884|557935|557937|557939|559123|559125|560944|560946|560950|612349|629480|629481|629482|629483|629484|629485|629486|629487|650942|695116|695117|697338|743878|825755|825756|825757|825758|825759|825760|825761|825762|825763|825764|851151|851400|861336|922580|922581|922582|922583|931157|931158|940695|942614|942615|942616|952945|952946|952947|952948", "text": "Spinal muscular atrophy, distal, autosomal recessive, 5" }, { - "baseId": "48297|48298|76384|390115|536051|536052|538453|679722|857599|858651|919676", + "upstreamId": "48297|48298|76384|390115|536051|536052|538453|679722|857599|858651|919676", "text": "Ciliary dyskinesia, primary, 5" }, { - "baseId": "48304|362837|362932", + "upstreamId": "48304|362837|362932", "text": "Malignant tumor of floor of mouth" }, { - "baseId": "48306|134026|134028|134031|134032|134033|134041|134042|134048|134053|134055|188860|208179|208186|208189|208191|208192|214161|322442|322445|322451|322454|331758|331762|331774|331775|331781|331782|331787|331791|331796|331799|331806|338741|338743|338746|338760|338762|338768|338770|338775|338778|338786|338795|338802|338807|340387|340392|340399|340401|361348|409214|409217|429654|429657|438764|486759|486760|739584|739586|739587|745083|754409|754410|754411|797117|873383|873384|873385|873386|873387|873388|873389|873390|873391|873392|873393|873394|873395|873396|873397|873398|873399|873400|873401|873402|873403|873404|873405|873406|873407|873408|873409|873410|873411|873412|873413|873414|873415|873416|873418|876494|876495|876496|876497|980952", + "upstreamId": "48306|134026|134028|134031|134032|134033|134041|134042|134048|134053|134055|188860|208179|208186|208189|208191|208192|214161|322442|322445|322451|322454|331758|331762|331774|331775|331781|331782|331787|331791|331796|331799|331806|338741|338743|338746|338760|338762|338768|338770|338775|338778|338786|338795|338802|338807|340387|340392|340399|340401|361348|409214|409217|429654|429657|438764|486759|486760|739584|739586|739587|745083|754409|754410|754411|797117|873383|873384|873385|873386|873387|873388|873389|873390|873391|873392|873393|873394|873395|873396|873397|873398|873399|873400|873401|873402|873403|873404|873405|873406|873407|873408|873409|873410|873411|873412|873413|873414|873415|873416|873418|876494|876495|876496|876497|980952", "text": "Primary autosomal recessive microcephaly 4" }, { - "baseId": "48308|229112|229117|389221|404767|496365|508788|622332|622333|790409|790410|790411|790412", + "upstreamId": "48308|229112|229117|389221|404767|496365|508788|622332|622333|790409|790410|790411|790412", "text": "Sinoatrial node dysfunction and deafness" }, { - "baseId": "48314|48315|48316|79722|79724|79726|79727|613937", + "upstreamId": "48314|48315|48316|79722|79724|79726|79727|613937", "text": "Hypogonadotropic hypogonadism 16 with or without anosmia" }, { - "baseId": "48322|446880|446881", + "upstreamId": "48322|446880|446881", "text": "Peroxisome biogenesis disorder 14B" }, { - "baseId": "48331|48332|48333|48334|48335|48336|791480", + "upstreamId": "48331|48332|48333|48334|48335|48336|791480", "text": "Keratosis palmoplantaris papulosa" }, { - "baseId": "48339", + "upstreamId": "48339", "text": "Diamond-Blackfan anemia 11" }, { - "baseId": "48340|268394|369870|457690|458281|458285|502423|513201|523684|523687|562252|562253|562777|562781|567730|637007|637008|637009|637010|651772|683993|683996|736559|777760|834522|834523|834524|834525|834526|940897|945995|955377", + "upstreamId": "48340|268394|369870|457690|458281|458285|502423|513201|523684|523687|562252|562253|562777|562781|567730|637007|637008|637009|637010|651772|683993|683996|736559|777760|834522|834523|834524|834525|834526|940897|945995|955377", "text": "Spastic paraplegia 53, autosomal recessive" }, { - "baseId": "48341", + "upstreamId": "48341", "text": "Microphthalmia, isolated, with coloboma 8" }, { - "baseId": "48342|48343|48344|133971|190847|190848|191230|194423|274071|429787|493682|589815|644614|653268|714885|714886|731066|770873|779766|843770|927784|949374|949375|957737", + "upstreamId": "48342|48343|48344|133971|190847|190848|191230|194423|274071|429787|493682|589815|644614|653268|714885|714886|731066|770873|779766|843770|927784|949374|949375|957737", "text": "Branched-chain keto acid dehydrogenase kinase deficiency" }, { - "baseId": "48356|48357|48357|171781|373940|374397|464413|464415|464421|464422|528327|528408|528802|642780|642781|841903|927193|927194|948723", + "upstreamId": "48356|48357|48357|171781|373940|374397|464413|464415|464421|464422|528327|528408|528802|642780|642781|841903|927193|927194|948723", "text": "Ventricular tachycardia, catecholaminergic polymorphic, 4" }, { - "baseId": "48357|171781|181363|181364|181365|373940|374397|464413|464415|464421|464422|528327|528408|528802|642780|642781|841903|927193|927194|948723|962908|962909", + "upstreamId": "48357|171781|181363|181364|181365|373940|374397|464413|464415|464421|464422|528327|528408|528802|642780|642781|841903|927193|927194|948723|962908|962909", "text": "Long QT syndrome 14" }, { - "baseId": "48363|48364|152761|171703|171704|361812|434606|653811|653812|788793|790600|792755|904229|970058", + "upstreamId": "48363|48364|152761|171703|171704|361812|434606|653811|653812|788793|790600|792755|904229|970058", "text": "Combined oxidative phosphorylation deficiency 11" }, { - "baseId": "48365|805021", + "upstreamId": "48365|805021", "text": "Lethal congenital contracture syndrome 4" }, { - "baseId": "48366|48367|48368|626304", + "upstreamId": "48366|48367|48368|626304", "text": "Linear skin defects with multiple congenital anomalies 2" }, { - "baseId": "48369|131913|131914|513536|816449", + "upstreamId": "48369|131913|131914|513536|816449", "text": "Bardet-Biedl syndrome 17" }, { - "baseId": "48374|76988|193095|215609|243730|243731|243732|243733|243734|243735|243736|270733|360560|377682|377690|377692|377694|377700|378831|378838|378845|378850|378855|378940|378941|378944|378947|378949|379895|379897|404048|404049|404070|404072|404074|404432|404434|404478|411101|411104|411105|411107|422404|426400|442385|470449|470450|471230|471680|471684|471685|472046|488365|507682|507786|507790|507797|507804|508260|508285|508292|508467|508472|508477|508478|534443|534446|534449|534483|534486|534488|534582|534589|534590|534996|534997|572176|573521|574248|575316|575317|575318|575319|575320|577925|577926|580629|614498|649629|649630|649631|649632|649633|649634|649635|649636|649637|649638|649639|649640|649641|649642|649643|649644|649645|649646|649647|649648|656727|684940|689323|689326|689328|689329|689330|706077|706078|706079|729367|729368|743106|773707|773708|773711|773712|802042|821547|822209|822210|822211|822212|822213|849558|849559|849560|849561|849562|849563|849564|849565|849566|849567|849568|849569|849570|849571|849572|849573|849574|849575|849576|858366|929540|929541|929542|929543|929544|929545|929546|929547|929548|939402|939403|939404|939405|939406|939407|939408|939409|951575|951576|951577|951578|951579|959155|960357|964566|971174", + "upstreamId": "48374|76988|193095|215609|243730|243731|243732|243733|243734|243735|243736|270733|360560|377682|377690|377692|377694|377700|378831|378838|378845|378850|378855|378940|378941|378944|378947|378949|379895|379897|404048|404049|404070|404072|404074|404432|404434|404478|411101|411104|411105|411107|422404|426400|442385|470449|470450|471230|471680|471684|471685|472046|488365|507682|507786|507790|507797|507804|508260|508285|508292|508467|508472|508477|508478|534443|534446|534449|534483|534486|534488|534582|534589|534590|534996|534997|572176|573521|574248|575316|575317|575318|575319|575320|577925|577926|580629|614498|649629|649630|649631|649632|649633|649634|649635|649636|649637|649638|649639|649640|649641|649642|649643|649644|649645|649646|649647|649648|656727|684940|689323|689326|689328|689329|689330|706077|706078|706079|729367|729368|743106|773707|773708|773711|773712|802042|821547|822209|822210|822211|822212|822213|849558|849559|849560|849561|849562|849563|849564|849565|849566|849567|849568|849569|849570|849571|849572|849573|849574|849575|849576|858366|929540|929541|929542|929543|929544|929545|929546|929547|929548|939402|939403|939404|939405|939406|939407|939408|939409|951575|951576|951577|951578|951579|959155|960357|964566|971174", "text": "Epileptic encephalopathy, early infantile, 36" }, { - "baseId": "48376", + "upstreamId": "48376", "text": "Acampomelic campomelic dysplasia with autosomal sex reversal" }, { - "baseId": "48377|48378|48379|486664|495308|497435|497650|512934|623313|672142|961373", + "upstreamId": "48377|48378|48379|486664|495308|497435|497650|512934|623313|672142|961373", "text": "Deafness, autosomal recessive 84b" }, { - "baseId": "48380|48381|59678", + "upstreamId": "48380|48381|59678", "text": "Ectodermal dysplasia 9, hair/nail type" }, { - "baseId": "48386|48387|48388|48389|48390|48391|48392|140886|140887|140888|140889|140890|140893|140894|260092|260347|260348|275196|324769|324772|324777|324779|324783|324787|324788|324791|334370|334378|334380|334386|334387|334389|334396|334399|334401|334404|340988|340991|340995|340996|340998|340999|341005|341006|342490|342491|342493|342495|342498|342500|342503|342511|342519|342521|342522|342528|342532|374227|375245|413435|434650|445541|513356|550035|740039|791560|791561|858723|874968|874969|874970|874971|874972|874973|874974|874975|874976|874977|874978|874979|874980|874981|874982|874983|874984|874985|874986|874987|874988|874989|874990|876647|961327|961566|961567", + "upstreamId": "48386|48387|48388|48389|48390|48391|48392|140886|140887|140888|140889|140890|140893|140894|260092|260347|260348|275196|324769|324772|324777|324779|324783|324787|324788|324791|334370|334378|334380|334386|334387|334389|334396|334399|334401|334404|340988|340991|340995|340996|340998|340999|341005|341006|342490|342491|342493|342495|342498|342500|342503|342511|342519|342521|342522|342528|342532|374227|375245|413435|434650|445541|513356|550035|740039|791560|791561|858723|874968|874969|874970|874971|874972|874973|874974|874975|874976|874977|874978|874979|874980|874981|874982|874983|874984|874985|874986|874987|874988|874989|874990|876647|961327|961566|961567", "text": "Combined oxidative phosphorylation deficiency 12" }, { - "baseId": "48393|48394|48395|48396|48397|76938|205560|253032|253033|253034|253036|253039|253040|253041|253042|304275|307929|313041|313043|313045|313046|457209|457801|457810|457830|458207|458212|458224|458227|523011|523012|523019|523271|523276|523278|523502|523507|523632|562371|564643|564653|564657|567375|567382|636604|636605|636606|636607|636608|636609|651921|651925|651932|700397|722850|722851|736434|750909|766536|777899|834142|834143|834144|834145|834146|851181|898901|898902|898903|898904|898905|898906|898907|898908|898909|898910|898911|898912|898913|900442|900443|925020|925021|934098|955291|955292|955293", + "upstreamId": "48393|48394|48395|48396|48397|76938|205560|253032|253033|253034|253036|253039|253040|253041|253042|304275|307929|313041|313043|313045|313046|457209|457801|457810|457830|458207|458212|458224|458227|523011|523012|523019|523271|523276|523278|523502|523507|523632|562371|564643|564653|564657|567375|567382|636604|636605|636606|636607|636608|636609|651921|651925|651932|700397|722850|722851|736434|750909|766536|777899|834142|834143|834144|834145|834146|851181|898901|898902|898903|898904|898905|898906|898907|898908|898909|898910|898911|898912|898913|900442|900443|925020|925021|934098|955291|955292|955293", "text": "Ciliary dyskinesia, primary, 19" }, { - "baseId": "48400|205731|205732|205732|210875|210875|210883|214827|247641|247642|539469|578332|578333|578334|578335|790283|857612|983739", + "upstreamId": "48400|205731|205732|205732|210875|210875|210883|214827|247641|247642|539469|578332|578333|578334|578335|790283|857612|983739", "text": "Combined oxidative phosphorylation deficiency 13" }, { - "baseId": "48401|205732|210875|210883|857612|961218|961219", + "upstreamId": "48401|205732|210875|210883|857612|961218|961219", "text": "Deafness, autosomal recessive 70" }, { - "baseId": "48402", + "upstreamId": "48402", "text": "Myoclonus, familial 1" }, { - "baseId": "48405|48406|264453|512928|857387", + "upstreamId": "48405|48406|264453|512928|857387", "text": "Vitreoretinopathy, neovascular inflammatory" }, { - "baseId": "48407|153720|237463|468564|468572|468574|468583|468586|468590|469934|469938|469943|470537|470540|470551|508919|508920|532766|532787|587942|613616|647843|647844|647845|672110|694361|694362|716298|728042|745056|772528|772530|791917|821245|847446|847447|847448|847449|847450|919843|919844|920404|958578|964518|964888|983288", + "upstreamId": "48407|153720|237463|468564|468572|468574|468583|468586|468590|469934|469938|469943|470537|470540|470551|508919|508920|532766|532787|587942|613616|647843|647844|647845|672110|694361|694362|716298|728042|745056|772528|772530|791917|821245|847446|847447|847448|847449|847450|919843|919844|920404|958578|964518|964888|983288", "text": "Megalencephaly-polymicrogyria-polydactyly-hydrocephalus syndrome 1" }, { - "baseId": "48413|48414|48415|244143|263837|447955|448037|448041|481588|515818|798467|850670|920096|951950|951951|951952|983284", + "upstreamId": "48413|48414|48415|244143|263837|447955|448037|448041|481588|515818|798467|850670|920096|951950|951951|951952|983284", "text": "Megalencephaly-polymicrogyria-polydactyly-hydrocephalus syndrome 2" }, { - "baseId": "48413|805108", + "upstreamId": "48413|805108", "text": "Capillary hemangiomas" }, { - "baseId": "48413|98875|305750|360822|360912|360923|360955|429431|432203|432204|432223|432224|540525|540526|801078|965430", + "upstreamId": "48413|98875|305750|360822|360912|360923|360955|429431|432203|432204|432223|432224|540525|540526|801078|965430", "text": "Polymicrogyria" }, { - "baseId": "48416|48417|48418|199795|230054|230063|404796|404797|404798|404799|404800|404801|444762|481984|488236|511040|612153|857680|859852|965209|967272|975898", + "upstreamId": "48416|48417|48418|199795|230054|230063|404796|404797|404798|404799|404800|404801|444762|481984|488236|511040|612153|857680|859852|965209|967272|975898", "text": "Deafness, autosomal recessive 18b" }, { - "baseId": "48420|48421|48421|136033|136034|136035|136036|208303|255873|255874|268656|269848|270909|271936|375420|375626|375630|429844|464841|465438|465556|466760|492696|505498|505756|506486|530534|530537|530768|568327|570534|644975|644976|644977|644978|644979|656386|693932|703818|715077|715078|755385|791642|844290|844291|937600|937601|937602|960855", + "upstreamId": "48420|48421|48421|136033|136034|136035|136036|208303|255873|255874|268656|269848|270909|271936|375420|375626|375630|429844|464841|465438|465556|466760|492696|505498|505756|506486|530534|530537|530768|568327|570534|644975|644976|644977|644978|644979|656386|693932|703818|715077|715078|755385|791642|844290|844291|937600|937601|937602|960855", "text": "Joubert syndrome 20" }, { - "baseId": "48421|75583|75584|136034|136035|136036|208303|237177|255874|268656|269848|270909|271936|375420|375626|375630|429844|429844|429845|464841|465438|465556|466760|492696|505498|505756|506486|530534|530537|530768|568327|570534|583126|622913|644975|644976|644977|644978|644979|656386|693932|703818|715077|715078|755385|844290|844291|937600|937601|937602|960855", + "upstreamId": "48421|75583|75584|136034|136035|136036|208303|237177|255874|268656|269848|270909|271936|375420|375626|375630|429844|429844|429845|464841|465438|465556|466760|492696|505498|505756|506486|530534|530537|530768|568327|570534|583126|622913|644975|644976|644977|644978|644979|656386|693932|703818|715077|715078|755385|844290|844291|937600|937601|937602|960855", "text": "Meckel syndrome, type 11" }, { - "baseId": "48422", + "upstreamId": "48422", "text": "Mental retardation, X-linked, syndromic 32" }, { - "baseId": "48423|48424|48425|140991|140992|140993|140994|140995|211247|211248|211249|211250|211252|211253|211254|211255|211257|211258|211259|211260|211262|247570|252444|363986|368681|368988|369007|369157|370501|421595|455121|455655|455657|455850|455852|455854|455856|455894|456258|456263|456585|456590|481208|481383|481384|501381|501674|501770|511685|521641|521702|521895|522053|522082|522083|522411|522412|560763|560904|563265|563273|563679|565749|565755|578604|578605|578606|578607|578608|578609|578610|578611|578612|578613|578614|578615|578616|578617|578618|578619|578620|578621|578622|578623|578624|578625|578626|578627|578629|578630|578631|578632|578633|578634|578635|635003|635004|635005|635006|635007|635008|635009|635010|635011|635012|692013|699637|699638|710563|722073|787413|801560|819701|832064|832065|832066|832067|832068|832069|832070|832071|832072|832073|832074|832075|832076|832077|832078|832155|919043|924382|924383|924384|924385|924386|924387|924388|924389|924415|933365|933366|933367|933368|933369|933370|933371|945071|945072|945073|945074|945075|945076|945077|954504|954796|959808|962036|962037|962038", + "upstreamId": "48423|48424|48425|140991|140992|140993|140994|140995|211247|211248|211249|211250|211252|211253|211254|211255|211257|211258|211259|211260|211262|247570|252444|363986|368681|368988|369007|369157|370501|421595|455121|455655|455657|455850|455852|455854|455856|455894|456258|456263|456585|456590|481208|481383|481384|501381|501674|501770|511685|521641|521702|521895|522053|522082|522083|522411|522412|560763|560904|563265|563273|563679|565749|565755|578604|578605|578606|578607|578608|578609|578610|578611|578612|578613|578614|578615|578616|578617|578618|578619|578620|578621|578622|578623|578624|578625|578626|578627|578629|578630|578631|578632|578633|578634|578635|635003|635004|635005|635006|635007|635008|635009|635010|635011|635012|692013|699637|699638|710563|722073|787413|801560|819701|832064|832065|832066|832067|832068|832069|832070|832071|832072|832073|832074|832075|832076|832077|832078|832155|919043|924382|924383|924384|924385|924386|924387|924388|924389|924415|933365|933366|933367|933368|933369|933370|933371|945071|945072|945073|945074|945075|945076|945077|954504|954796|959808|962036|962037|962038", "text": "Combined oxidative phosphorylation deficiency 14" }, { - "baseId": "48426|48427|48428|48429|125903|137060|137061|137062|141967|213637|429712|434648|481417|538446", + "upstreamId": "48426|48427|48428|48429|125903|137060|137061|137062|141967|213637|429712|434648|481417|538446", "text": "Combined oxidative phosphorylation deficiency 15" }, { - "baseId": "48426|48429", + "upstreamId": "48426|48429", "text": "Mitochondrial complex 1 deficiency, nuclear type 27" }, { - "baseId": "48430|247690|247691|247692|536071|622320|983735", + "upstreamId": "48430|247690|247691|247692|536071|622320|983735", "text": "Encephalopathy due to defective mitochondrial and peroxisomal fission 2" }, { - "baseId": "48435|246907", + "upstreamId": "48435|246907", "text": "Mitochondrial complex 1 deficiency, nuclear type 25" }, { - "baseId": "48436|48437", + "upstreamId": "48436|48437", "text": "Pontocerebellar hypoplasia type 8" }, { - "baseId": "48438|508950|508951|508952|508953|508954|508955|508956|552246|626291", + "upstreamId": "48438|508950|508951|508952|508953|508954|508955|508956|552246|626291", "text": "Spinocerebellar ataxia, X-linked 1" }, { - "baseId": "48442", + "upstreamId": "48442", "text": "Focal facial dermal dysplasia 4" }, { - "baseId": "48444|48445|48446|48447|215573|237201|430235|438904|468854|468859|468860|468865|468878|468880|468884|469881|469883|469885|469886|469888|469893|469899|470300|470303|470305|470307|470310|470314|470315|470978|470979|470981|470982|470985|470988|470999|471002|471004|533071|533081|533148|533153|533156|533176|533178|533183|533572|533573|533594|537331|551332|551333|552219|552220|552221|570840|570842|573170|573171|573172|573176|573177|573178|574785|574987|574988|574991|574992|648161|648162|648163|648164|648165|648166|648167|648168|648169|648170|689090|689091|689093|689094|689096|690219|694444|694445|694447|694450|694454|694462|694463|695829|705046|705047|705048|705049|705054|716489|728220|728223|731285|741943|760729|760814|847755|847756|847757|847758|847759|847760|847761|847762|847763|920411|928990|928991|928992|928993|928994|938720|938721|938722|938723|938724|938725|941233|950816|950817|950818|958652|983501", + "upstreamId": "48444|48445|48446|48447|215573|237201|430235|438904|468854|468859|468860|468865|468878|468880|468884|469881|469883|469885|469886|469888|469893|469899|470300|470303|470305|470307|470310|470314|470315|470978|470979|470981|470982|470985|470988|470999|471002|471004|533071|533081|533148|533153|533156|533176|533178|533183|533572|533573|533594|537331|551332|551333|552219|552220|552221|570840|570842|573170|573171|573172|573176|573177|573178|574785|574987|574988|574991|574992|648161|648162|648163|648164|648165|648166|648167|648168|648169|648170|689090|689091|689093|689094|689096|690219|694444|694445|694447|694450|694454|694462|694463|695829|705046|705047|705048|705049|705054|716489|728220|728223|731285|741943|760729|760814|847755|847756|847757|847758|847759|847760|847761|847762|847763|920411|928990|928991|928992|928993|928994|938720|938721|938722|938723|938724|938725|941233|950816|950817|950818|958652|983501", "text": "Carpenter syndrome 2" }, { - "baseId": "48448|48449|48450|48451|48452|99372|257747|257748|257749|352786|677332|677333|678986|678987|678995|679001|798806|918120|918121|918122", + "upstreamId": "48448|48449|48450|48451|48452|99372|257747|257748|257749|352786|677332|677333|678986|678987|678995|679001|798806|918120|918121|918122", "text": "Hypothyroidism, central, and testicular enlargement" }, { - "baseId": "48453|495299|792763|792764", + "upstreamId": "48453|495299|792763|792764", "text": "Mental retardation, enteropathy, deafness, peripheral neuropathy, ichthyosis, and keratoderma" }, { - "baseId": "48454|48455|48456|48457|48458|94288|193194|247147|256619|256620|256621|256622|256623|256624|256626|256627|256630|256633|256635|256637|256644|264720|265513|266331|266895|266900|267475|267986|267997|268729|268800|269069|269118|269363|269413|269419|269529|269976|270197|270429|271263|271422|273366|273875|273918|274265|362645|362646|442023|467908|468787|468797|468798|468799|468806|469610|469614|488928|489611|489627|489628|489772|490356|492081|492910|532161|532170|532172|532179|532183|532266|532547|532551|532553|570055|570059|571839|572693|574713|584398|585589|586462|587284|588633|647099|647100|647101|647102|647103|647104|647105|647106|647107|647108|647109|647110|694256|694258|715915|785879|787997|846711|846712|846713|846714|846715|846716|846717|846718|846719|852808|852929|928665|928666|928667|928668|938388|938389|938390|938391|938392|950466|950467|950468|950469|950470|950471|950472|950473|950474|950475|958444|958445|958446|958447|958448|960259|960260", + "upstreamId": "48454|48455|48456|48457|48458|94288|193194|247147|256619|256620|256621|256622|256623|256624|256626|256627|256630|256633|256635|256637|256644|264720|265513|266331|266895|266900|267475|267986|267997|268729|268800|269069|269118|269363|269413|269419|269529|269976|270197|270429|271263|271422|273366|273875|273918|274265|362645|362646|442023|467908|468787|468797|468798|468799|468806|469610|469614|488928|489611|489627|489628|489772|490356|492081|492910|532161|532170|532172|532179|532183|532266|532547|532551|532553|570055|570059|571839|572693|574713|584398|585589|586462|587284|588633|647099|647100|647101|647102|647103|647104|647105|647106|647107|647108|647109|647110|694256|694258|715915|785879|787997|846711|846712|846713|846714|846715|846716|846717|846718|846719|852808|852929|928665|928666|928667|928668|938388|938389|938390|938391|938392|950466|950467|950468|950469|950470|950471|950472|950473|950474|950475|958444|958445|958446|958447|958448|960259|960260", "text": "Facioscapulohumeral muscular dystrophy 2" }, { - "baseId": "48459|48460|48461|165628|361148|363858|437976|441703|441707|508883|612444|622425|906375|906378|919550", + "upstreamId": "48459|48460|48461|165628|361148|363858|437976|441703|441707|508883|612444|622425|906375|906378|919550", "text": "Congenital hydrocephalus 1" }, { - "baseId": "48487|48488|48489|48490|48491|48492|614663|614664|614665|791850", + "upstreamId": "48487|48488|48489|48490|48491|48492|614663|614664|614665|791850", "text": "Dystonia 25" }, { - "baseId": "48495|223024|227149|227467|354299|360849|360877|360940|360941|361091|362152|362157|362165|415601|434101|496932|513979|514091|514107|514163|514168|514186|514193|514199|581713|590047|590048|590736|620168|623231|678055|679509|679510|679511|679512|679513|801079|801225", + "upstreamId": "48495|223024|227149|227467|354299|360849|360877|360940|360941|361091|362152|362157|362165|415601|434101|496932|513979|514091|514107|514163|514168|514186|514193|514199|581713|590047|590048|590736|620168|623231|678055|679509|679510|679511|679512|679513|801079|801225", "text": "Generalized hypotonia" }, { - "baseId": "48499|243872|243880|415068|421603|514544|514546|535659|535661|535662|615878|615879|615880|615881|615882|615883|615884|622372|626381|805515|815985|816363|858814|919063|963617|964282|964708|969090|970840|973101", + "upstreamId": "48499|243872|243880|415068|421603|514544|514546|535659|535661|535662|615878|615879|615880|615881|615882|615883|615884|622372|626381|805515|815985|816363|858814|919063|963617|964282|964708|969090|970840|973101", "text": "Developmental delay, intellectual disability, obesity, and dysmorphic features" }, { - "baseId": "48500|48501|48502|48503|48504|190121|213972|215556|226969|226970|236965|237105|262714|354181|362072|376850|376852|390441|390442|417344|417345|438072|445975|467990|467993|467995|467997|467999|468925|468926|468927|468931|468933|468934|468936|468937|469329|469331|469339|469348|469359|469361|469363|469365|469369|469370|469764|469766|469768|469770|469771|469773|469775|469782|481374|481375|486199|492925|497296|512356|532257|532262|532274|532276|532283|532287|532289|532293|532295|532296|532298|532303|532381|532397|532400|532419|532422|532431|532438|532731|532733|532740|532742|532746|532748|532751|532754|532758|539081|570157|570159|570166|570172|570174|570180|570181|570187|570190|571946|571947|571951|571956|572640|572641|572643|572644|572645|572647|574752|574753|574754|574755|574756|574757|574758|590802|612326|612327|614451|614528|614529|614530|614531|614532|614533|614534|614535|614536|614537|614538|614539|614540|647223|647224|647225|647226|647227|647228|647229|647230|647231|647232|647233|647234|647235|647236|647237|647238|647239|647240|647241|647242|647243|647244|647245|647246|647247|647248|647249|647250|647251|647252|647253|647254|647255|647256|647257|647258|647259|647260|647261|647262|647263|647264|647265|647266|647267|647268|647269|647270|647271|647272|647273|647274|647275|647276|647277|653400|653554|656490|715980|715981|715982|715983|715984|715985|715986|727721|727723|727725|727726|727727|727729|727731|727732|727733|727734|741366|741368|741369|741373|741374|741377|741379|741380|741381|756446|756448|756449|756450|756451|756453|756457|756462|760702|772139|772141|772143|772150|776604|776796|778356|778357|780025|785900|785904|785905|791862|791863|791864|792812|801924|816344|816345|816490|821201|846833|846834|846835|846836|846837|846838|846839|846840|846841|846842|846843|846844|846845|846846|846847|846848|846849|846850|846851|846852|846853|846854|846855|846856|846857|846858|846859|846860|846861|846862|846863|846864|846865|846866|846867|846868|846869|846870|846871|846872|846873|846874|846875|846876|846877|846878|846879|846880|846881|846882|846883|852812|857624|857629|858726|928705|928706|928707|928708|928709|928710|928711|928712|928713|928714|928715|928716|928717|938431|938432|938433|938434|938435|938436|938437|938438|938439|938440|938441|938442|938443|938444|938445|938446|938447|938448|950517|950518|950519|950520|950521|950522|950523|950524|950525|950526|950527|950528|950529|950530|950531|958462|958463|958464|958465|958466|958467|958468|958469|958470|973045|974502|980487", + "upstreamId": "48500|48501|48502|48503|48504|190121|213972|215556|226969|226970|236965|237105|262714|354181|362072|376850|376852|390441|390442|417344|417345|438072|445975|467990|467993|467995|467997|467999|468925|468926|468927|468931|468933|468934|468936|468937|469329|469331|469339|469348|469359|469361|469363|469365|469369|469370|469764|469766|469768|469770|469771|469773|469775|469782|481374|481375|486199|492925|497296|512356|532257|532262|532274|532276|532283|532287|532289|532293|532295|532296|532298|532303|532381|532397|532400|532419|532422|532431|532438|532731|532733|532740|532742|532746|532748|532751|532754|532758|539081|570157|570159|570166|570172|570174|570180|570181|570187|570190|571946|571947|571951|571956|572640|572641|572643|572644|572645|572647|574752|574753|574754|574755|574756|574757|574758|590802|612326|612327|614451|614528|614529|614530|614531|614532|614533|614534|614535|614536|614537|614538|614539|614540|647223|647224|647225|647226|647227|647228|647229|647230|647231|647232|647233|647234|647235|647236|647237|647238|647239|647240|647241|647242|647243|647244|647245|647246|647247|647248|647249|647250|647251|647252|647253|647254|647255|647256|647257|647258|647259|647260|647261|647262|647263|647264|647265|647266|647267|647268|647269|647270|647271|647272|647273|647274|647275|647276|647277|653400|653554|656490|715980|715981|715982|715983|715984|715985|715986|727721|727723|727725|727726|727727|727729|727731|727732|727733|727734|741366|741368|741369|741373|741374|741377|741379|741380|741381|756446|756448|756449|756450|756451|756453|756457|756462|760702|772139|772141|772143|772150|776604|776796|778356|778357|780025|785900|785904|785905|791862|791863|791864|792812|801924|816344|816345|816490|821201|846833|846834|846835|846836|846837|846838|846839|846840|846841|846842|846843|846844|846845|846846|846847|846848|846849|846850|846851|846852|846853|846854|846855|846856|846857|846858|846859|846860|846861|846862|846863|846864|846865|846866|846867|846868|846869|846870|846871|846872|846873|846874|846875|846876|846877|846878|846879|846880|846881|846882|846883|852812|857624|857629|858726|928705|928706|928707|928708|928709|928710|928711|928712|928713|928714|928715|928716|928717|938431|938432|938433|938434|938435|938436|938437|938438|938439|938440|938441|938442|938443|938444|938445|938446|938447|938448|950517|950518|950519|950520|950521|950522|950523|950524|950525|950526|950527|950528|950529|950530|950531|958462|958463|958464|958465|958466|958467|958468|958469|958470|973045|974502|980487", "text": "Vici syndrome" }, { - "baseId": "48521|48522|48523|983856", + "upstreamId": "48521|48522|48523|983856", "text": "Spermatogenic failure 11" }, { - "baseId": "48524|48525", + "upstreamId": "48524|48525", "text": "C3HEX, ability to smell" }, { - "baseId": "48558|48559|75314|153734|215576|222819|222820|222821|222822|222823|222824|222825|222826|222827|222828|222828|222829|222830|222831|222832|222833|222834|222834|222835|222836|222837|222838|222839|222840|222841|222842|222843|222844|222845|222846|222847|222848|222849|222850|222852|227197|227197|227854|243385|243386|243387|243388|243389|243390|243390|243391|243392|243393|243394|243394|243395|243397|243398|243398|243399|243400|243401|243402|243403|243404|243405|243406|243407|243408|243409|243410|243411|243412|243413|243414|243415|243416|243417|243418|243419|243420|243421|243422|243423|243424|243424|243425|243426|243427|243428|243429|243430|243431|243432|243433|243434|243435|243436|243437|243438|243439|243440|243440|243441|243442|243443|243444|243445|243446|243446|243447|243448|243449|243451|243452|243453|243454|243455|243456|243457|243458|243459|243460|243461|243462|243463|243465|243466|243467|243468|243469|243472|243473|243474|243475|243476|243477|243478|243479|243480|243481|243482|243483|243484|243485|243486|243487|243488|243489|243490|243490|243491|243492|243493|243494|243495|243496|243497|243498|243499|243500|243501|243502|243503|243504|243505|243506|243507|243508|243509|243510|243511|243512|243514|243515|243516|243517|243518|243519|243520|243520|243521|243522|243523|243524|243525|243526|243527|243528|243529|243530|243531|243532|243533|243534|243535|243536|243537|243538|243539|243540|243541|243542|243543|243544|243545|243546|243547|245145|245146|245146|245147|245148|245149|245150|245151|245152|245153|245154|245155|245156|245157|245158|245159|245160|257196|358979|358980|358981|358982|358983|358984|358985|358986|358987|358988|358989|358990|358991|358992|358993|358994|358995|358996|358997|358998|358999|359000|359002|359003|362745|376725|376737|376745|376747|376757|376766|376774|376782|376786|376790|376791|376796|376799|376808|376818|376831|376834|376836|376844|376845|376847|376851|376860|377685|377706|377715|377719|377720|377724|377730|377734|377739|377747|377753|377755|377759|377760|377763|377769|377772|377775|377776|377780|377784|377794|377809|377811|377813|377830|377839|377903|377905|377909|377920|377929|377935|377936|377940|377942|377945|377947|377955|377960|377967|377968|377975|377980|377992|377998|378013|378019|378021|378031|378032|378037|378039|378040|378042|378045|378050|378053|378061|378063|378071|378085|379622|379623|379624|379626|379627|379628|379629|379630|379631|379634|379637|379638|379640|379642|379644|379647|379649|379651|379652|379653|379654|379655|379657|379658|379659|379660|402834|403363|403363|403372|403374|403377|403378|403379|403380|403381|403385|403387|403388|403391|403394|403396|403397|403398|403402|403405|403406|403407|403409|403410|403411|403412|403413|403414|403415|403417|403420|403421|403425|403426|403427|403431|403432|403433|403434|403435|403436|403437|403439|403443|403444|403447|403449|403450|403454|403455|403456|403466|403468|403468|403470|403476|403477|403484|403488|403489|403490|403491|403493|403496|403498|403501|403502|403503|403503|403504|403505|403506|403507|403509|403511|403513|403515|403518|403519|403525|403526|403527|403530|403531|403533|403533|403534|403535|403537|403540|403543|403544|403550|403553|403554|403557|403560|403561|403566|403567|403568|403570|403571|403586|403589|403596|403606|403609|403609|403611|403794|403797|403800|403801|403803|403803|403822|403828|403830|403830|403835|403841|403844|403844|403847|403849|403851|403854|403858|403859|403861|403862|403863|403865|403866|403868|403870|403871|403873|403874|403875|403876|403879|403881|403882|403887|403888|403892|403894|403896|403897|403898|403904|403905|403909|403912|403915|403915|403916|403917|403920|403923|403924|403926|403929|403930|403934|403935|403936|403937|403940|403941|403942|403943|403944|403948|403950|403951|403954|403955|403959|403961|403963|403964|403966|403967|403971|403973|403974|403975|403976|403977|403979|403986|403988|403989|403994|403996|403998|403999|404001|404003|404005|404005|404006|404009|404012|404013|404015|404018|404022|404024|404026|404028|404030|404031|404032|404034|404036|404038|404039|404043|404044|404045|404046|404047|404050|404053|404058|404060|404063|404065|404066|404067|404068|404069|404075|404076|404078|404079|404080|404081|404082|404087|404094|404097|404100|404103|404108|410670|410672|410673|410675|410677|410680|410681|410683|410684|410685|410686|410687|410688|410691|410692|410693|410694|410696|410697|410698|410701|410705|410706|410706|410707|410709|430263|432954|432955|432956|432957|432962|432963|432964|432965|432967|446179|446180|468165|469019|469020|469023|469024|469026|469028|469037|469038|469040|469044|469047|469051|469056|469058|469062|469064|469066|469069|469071|469074|469083|469087|469091|469105|469108|469111|469112|469114|469114|469120|469121|469131|469135|469139|469140|469143|469146|469147|469149|469153|469154|469157|469165|469167|469169|469173|469180|469186|469189|469196|469199|469199|469200|469201|469203|469206|469211|469217|469229|469250|469253|469459|469973|469975|469979|469981|469983|469986|469988|469996|469999|470007|470022|470030|470032|470035|470047|470049|470050|470051|470054|470058|470063|470065|470066|470073|470075|470081|470083|470085|470087|470089|470090|470091|470095|470098|470099|470106|470107|470108|470116|470117|470119|470122|470128|470132|470140|470143|470145|470151|470153|470154|470155|470161|470165|470168|470171|470175|470180|470187|470188|470190|470201|470203|470208|470218|470497|470514|470517|470522|470526|470528|470539|470543|470548|470553|470555|470558|470561|470565|470571|470575|470581|470582|470588|470614|470618|470622|470623|470625|470634|470635|470636|470643|470644|470651|470655|470659|470661|470663|470668|470670|470671|470677|470678|470681|470685|470689|470692|470694|470695|470700|470704|470706|470709|470710|470711|470713|470717|470718|470725|470730|470734|470736|470745|470750|470751|470753|470755|471132|471139|471143|471145|471149|471150|471153|471154|471156|471159|471162|471164|471165|471167|471168|471176|471178|471179|471185|471186|471188|471197|471198|471200|471203|471209|471211|471212|471212|471213|471216|471222|471224|471227|471229|471234|471236|471237|471239|471242|471243|471247|471248|471252|471253|471259|471262|471274|479827|479832|479841|479845|479848|479851|479852|479855|479859|479862|479865|479867|479869|479873|479878|479880|479883|479888|479901|479903|479905|479908|479908|479911|479914|479917|479920|479924|479930|479933|479937|479939|479941|479943|479944|479947|479957|479967|479969|479969|479972|479976|479979|479980|479985|479987|479990|479992|480002|480027|480301|480302|480303|480304|480305|480306|480308|480310|480311|480314|480317|480318|480319|480321|480322|480325|480327|480330|480336|480337|488148|497329|497747|497748|497785|506985|507001|507015|507142|507558|507946|507953|507968|507970|507976|532371|532392|532826|533155|533162|533169|533171|533180|533184|533189|533202|533203|533207|533210|533219|533222|533232|533233|533241|533243|533245|533252|533254|533262|533263|533265|533267|533268|533269|533270|533271|533272|533273|533279|533280|533281|533283|533288|533289|533290|533292|533293|533294|533295|533296|533297|533301|533302|533304|533305|533306|533310|533311|533313|533315|533316|533317|533318|533319|533321|533323|533324|533326|533328|533329|533330|533331|533333|533335|533337|533339|533340|533342|533343|533344|533346|533348|533349|533350|533351|533352|533353|533354|533357|533360|533362|533363|533366|533369|533371|533372|533373|533379|533380|533382|533383|533384|533389|533392|533397|533400|533407|533423|533425|533426|533427|533436|533727|533728|533729|533737|533743|533745|533748|533750|533753|533756|533763|533766|533767|533772|533773|533783|533790|533793|533797|533803|533807|533808|533810|533821|533826|533831|533832|533833|533834|533845|533852|533855|533862|533864|533866|533868|536530|539392|539395|539396|539397|539398|539399|539400|539401|539402|539403|539404|539405|539406|539407|551947|570955|570958|570969|570979|570983|570984|570987|570989|570991|570993|570995|571003|571017|571018|571020|571022|571026|571030|571032|571039|571040|571042|571054|571055|571062|571064|571067|572023|572633|572642|572653|572656|572657|572659|572660|572661|572663|572664|572667|572670|572672|572675|572681|572686|572690|572699|572706|572707|572708|572709|572711|572713|572716|572719|572721|572726|572727|572729|572730|572733|572736|572738|572742|572749|572754|572762|572764|572766|573277|573282|573285|573286|573293|573296|573299|573301|573305|573307|573308|573309|573312|573314|573315|573316|573327|573331|573332|573333|573339|573348|573352|573352|573355|573356|573359|573360|573371|573374|573376|573378|573379|573380|573386|573390|573393|573396|573398|574786|574787|575021|575022|575023|575024|575025|575025|575026|575027|575028|575029|575030|575031|575032|575033|575034|575035|575036|575037|575038|575039|575040|575041|575042|575043|575044|575045|575046|575047|576042|611267|611272|648308|648309|648310|648311|648312|648313|648314|648315|648316|648317|648318|648319|648320|648321|648322|648323|648324|648325|648326|648327|648328|648329|648330|648331|648332|648333|648334|648335|648336|648337|648338|648339|648340|648341|648342|648343|648344|648345|648346|648347|648348|648349|648350|648351|648352|648353|648354|648355|648356|648357|648358|648359|648360|648361|648362|648363|648364|648365|648366|648367|648368|648369|648370|648371|648372|648373|648374|648375|648376|648377|648378|648379|648380|648381|648382|648383|648384|648385|648386|648387|648388|648389|648390|648391|648392|648393|648394|648395|648396|648397|648398|648399|648400|648401|648402|648403|648404|648405|648406|648407|648408|648409|648410|648411|648412|648413|648414|648415|648416|648417|648418|648419|648420|648421|648422|648423|648424|648425|648426|648427|648428|648429|648430|648431|648432|648433|648434|648435|648436|653058|653067|653069|653072|653125|653171|653173|653175|653179|653181|653510|653513|653515|653517|653522|653525|653581|653583|653584|653628|653629|653631|653633|689152|689153|690226|690227|690228|694503|694504|694505|694506|694507|694508|694509|695837|695839|705187|705188|705191|716619|728365|728366|728367|742087|745264|757211|757213|757217|757218|757223|757225|760627|760746|760922|772833|772834|772838|772839|772840|772841|772843|772844|772846|772847|772849|772851|772855|772856|772858|772860|772865|772866|772867|772869|772871|772872|772875|772876|776623|778650|780089|786267|786268|786272|786273|786274|786277|786279|786280|788065|788326|788332|789699|791946|791947|791948|797907|814929|814939|814940|814954|814965|814984|815742|815743|815747|815749|815752|815753|821283|821284|821285|847908|847909|847910|847911|847912|847913|847914|847915|847916|847917|847918|847919|847920|847921|847922|847923|847924|847925|847926|847927|847928|847929|847930|847931|847932|847933|847934|847935|847936|847937|847938|847939|847940|847941|847942|847943|847944|847945|847946|847947|847948|847949|847950|847951|847952|847953|847954|847955|847956|847957|847958|847959|847960|847961|847962|847963|847964|847965|847966|847967|847968|847969|847970|847971|847972|847973|847974|847975|847976|847977|847978|847979|847980|847981|847982|847983|847984|847985|847986|847987|847988|847989|847990|847991|847992|847993|847994|847995|847996|847997|847998|847999|848000|848001|848002|848003|848004|848005|848006|848007|848008|848009|848010|848011|848012|848013|848014|848015|848016|848017|848018|848019|848020|848021|848022|848023|848024|848025|848026|848027|851825|851828|851830|852349|852351|852887|852888|852988|852989|852990|852991|929053|929054|929055|929056|929057|929058|929059|929060|929061|929062|929063|929064|929065|929066|929067|929068|929069|929070|929071|929072|929073|929074|929075|929076|929077|929078|929079|929080|929081|929082|929083|929084|929085|929086|929087|929088|929089|929090|929091|929092|929093|929094|929095|929096|929097|929098|929099|938799|938800|938801|938802|938803|938804|938805|938806|938807|938808|938809|938810|938811|938812|938813|938814|938815|938816|938817|938818|938819|938820|938821|938822|938823|938824|938825|938826|938827|938828|938829|938830|938831|938832|938833|938834|938835|938836|938837|938838|938839|938840|940490|940491|940492|940493|940494|941241|941242|941243|941244|941245|950874|950875|950876|950877|950878|950879|950880|950881|950882|950883|950884|950885|950886|950887|950888|950889|950890|950891|950892|950893|950894|950895|950896|950897|950898|950899|950900|950901|950902|950903|950904|950905|950906|958704|958705|958706|958707|958708|958709|958710|958711|958712|958713|958714|958715|958716|958717|958718|958719|958720|958721|958722|958723|958724|960300|960301", + "upstreamId": "48558|48559|75314|153734|215576|222819|222820|222821|222822|222823|222824|222825|222826|222827|222828|222828|222829|222830|222831|222832|222833|222834|222834|222835|222836|222837|222838|222839|222840|222841|222842|222843|222844|222845|222846|222847|222848|222849|222850|222852|227197|227197|227854|243385|243386|243387|243388|243389|243390|243390|243391|243392|243393|243394|243394|243395|243397|243398|243398|243399|243400|243401|243402|243403|243404|243405|243406|243407|243408|243409|243410|243411|243412|243413|243414|243415|243416|243417|243418|243419|243420|243421|243422|243423|243424|243424|243425|243426|243427|243428|243429|243430|243431|243432|243433|243434|243435|243436|243437|243438|243439|243440|243440|243441|243442|243443|243444|243445|243446|243446|243447|243448|243449|243451|243452|243453|243454|243455|243456|243457|243458|243459|243460|243461|243462|243463|243465|243466|243467|243468|243469|243472|243473|243474|243475|243476|243477|243478|243479|243480|243481|243482|243483|243484|243485|243486|243487|243488|243489|243490|243490|243491|243492|243493|243494|243495|243496|243497|243498|243499|243500|243501|243502|243503|243504|243505|243506|243507|243508|243509|243510|243511|243512|243514|243515|243516|243517|243518|243519|243520|243520|243521|243522|243523|243524|243525|243526|243527|243528|243529|243530|243531|243532|243533|243534|243535|243536|243537|243538|243539|243540|243541|243542|243543|243544|243545|243546|243547|245145|245146|245146|245147|245148|245149|245150|245151|245152|245153|245154|245155|245156|245157|245158|245159|245160|257196|358979|358980|358981|358982|358983|358984|358985|358986|358987|358988|358989|358990|358991|358992|358993|358994|358995|358996|358997|358998|358999|359000|359002|359003|362745|376725|376737|376745|376747|376757|376766|376774|376782|376786|376790|376791|376796|376799|376808|376818|376831|376834|376836|376844|376845|376847|376851|376860|377685|377706|377715|377719|377720|377724|377730|377734|377739|377747|377753|377755|377759|377760|377763|377769|377772|377775|377776|377780|377784|377794|377809|377811|377813|377830|377839|377903|377905|377909|377920|377929|377935|377936|377940|377942|377945|377947|377955|377960|377967|377968|377975|377980|377992|377998|378013|378019|378021|378031|378032|378037|378039|378040|378042|378045|378050|378053|378061|378063|378071|378085|379622|379623|379624|379626|379627|379628|379629|379630|379631|379634|379637|379638|379640|379642|379644|379647|379649|379651|379652|379653|379654|379655|379657|379658|379659|379660|402834|403363|403363|403372|403374|403377|403378|403379|403380|403381|403385|403387|403388|403391|403394|403396|403397|403398|403402|403405|403406|403407|403409|403410|403411|403412|403413|403414|403415|403417|403420|403421|403425|403426|403427|403431|403432|403433|403434|403435|403436|403437|403439|403443|403444|403447|403449|403450|403454|403455|403456|403466|403468|403468|403470|403476|403477|403484|403488|403489|403490|403491|403493|403496|403498|403501|403502|403503|403503|403504|403505|403506|403507|403509|403511|403513|403515|403518|403519|403525|403526|403527|403530|403531|403533|403533|403534|403535|403537|403540|403543|403544|403550|403553|403554|403557|403560|403561|403566|403567|403568|403570|403571|403586|403589|403596|403606|403609|403609|403611|403794|403797|403800|403801|403803|403803|403822|403828|403830|403830|403835|403841|403844|403844|403847|403849|403851|403854|403858|403859|403861|403862|403863|403865|403866|403868|403870|403871|403873|403874|403875|403876|403879|403881|403882|403887|403888|403892|403894|403896|403897|403898|403904|403905|403909|403912|403915|403915|403916|403917|403920|403923|403924|403926|403929|403930|403934|403935|403936|403937|403940|403941|403942|403943|403944|403948|403950|403951|403954|403955|403959|403961|403963|403964|403966|403967|403971|403973|403974|403975|403976|403977|403979|403986|403988|403989|403994|403996|403998|403999|404001|404003|404005|404005|404006|404009|404012|404013|404015|404018|404022|404024|404026|404028|404030|404031|404032|404034|404036|404038|404039|404043|404044|404045|404046|404047|404050|404053|404058|404060|404063|404065|404066|404067|404068|404069|404075|404076|404078|404079|404080|404081|404082|404087|404094|404097|404100|404103|404108|410670|410672|410673|410675|410677|410680|410681|410683|410684|410685|410686|410687|410688|410691|410692|410693|410694|410696|410697|410698|410701|410705|410706|410706|410707|410709|430263|432954|432955|432956|432957|432962|432963|432964|432965|432967|446179|446180|468165|469019|469020|469023|469024|469026|469028|469037|469038|469040|469044|469047|469051|469056|469058|469062|469064|469066|469069|469071|469074|469083|469087|469091|469105|469108|469111|469112|469114|469114|469120|469121|469131|469135|469139|469140|469143|469146|469147|469149|469153|469154|469157|469165|469167|469169|469173|469180|469186|469189|469196|469199|469199|469200|469201|469203|469206|469211|469217|469229|469250|469253|469459|469973|469975|469979|469981|469983|469986|469988|469996|469999|470007|470022|470030|470032|470035|470047|470049|470050|470051|470054|470058|470063|470065|470066|470073|470075|470081|470083|470085|470087|470089|470090|470091|470095|470098|470099|470106|470107|470108|470116|470117|470119|470122|470128|470132|470140|470143|470145|470151|470153|470154|470155|470161|470165|470168|470171|470175|470180|470187|470188|470190|470201|470203|470208|470218|470497|470514|470517|470522|470526|470528|470539|470543|470548|470553|470555|470558|470561|470565|470571|470575|470581|470582|470588|470614|470618|470622|470623|470625|470634|470635|470636|470643|470644|470651|470655|470659|470661|470663|470668|470670|470671|470677|470678|470681|470685|470689|470692|470694|470695|470700|470704|470706|470709|470710|470711|470713|470717|470718|470725|470730|470734|470736|470745|470750|470751|470753|470755|471132|471139|471143|471145|471149|471150|471153|471154|471156|471159|471162|471164|471165|471167|471168|471176|471178|471179|471185|471186|471188|471197|471198|471200|471203|471209|471211|471212|471212|471213|471216|471222|471224|471227|471229|471234|471236|471237|471239|471242|471243|471247|471248|471252|471253|471259|471262|471274|479827|479832|479841|479845|479848|479851|479852|479855|479859|479862|479865|479867|479869|479873|479878|479880|479883|479888|479901|479903|479905|479908|479908|479911|479914|479917|479920|479924|479930|479933|479937|479939|479941|479943|479944|479947|479957|479967|479969|479969|479972|479976|479979|479980|479985|479987|479990|479992|480002|480027|480301|480302|480303|480304|480305|480306|480308|480310|480311|480314|480317|480318|480319|480321|480322|480325|480327|480330|480336|480337|488148|497329|497747|497748|497785|506985|507001|507015|507142|507558|507946|507953|507968|507970|507976|532371|532392|532826|533155|533162|533169|533171|533180|533184|533189|533202|533203|533207|533210|533219|533222|533232|533233|533241|533243|533245|533252|533254|533262|533263|533265|533267|533268|533269|533270|533271|533272|533273|533279|533280|533281|533283|533288|533289|533290|533292|533293|533294|533295|533296|533297|533301|533302|533304|533305|533306|533310|533311|533313|533315|533316|533317|533318|533319|533321|533323|533324|533326|533328|533329|533330|533331|533333|533335|533337|533339|533340|533342|533343|533344|533346|533348|533349|533350|533351|533352|533353|533354|533357|533360|533362|533363|533366|533369|533371|533372|533373|533379|533380|533382|533383|533384|533389|533392|533397|533400|533407|533423|533425|533426|533427|533436|533727|533728|533729|533737|533743|533745|533748|533750|533753|533756|533763|533766|533767|533772|533773|533783|533790|533793|533797|533803|533807|533808|533810|533821|533826|533831|533832|533833|533834|533845|533852|533855|533862|533864|533866|533868|536530|539392|539395|539396|539397|539398|539399|539400|539401|539402|539403|539404|539405|539406|539407|551947|570955|570958|570969|570979|570983|570984|570987|570989|570991|570993|570995|571003|571017|571018|571020|571022|571026|571030|571032|571039|571040|571042|571054|571055|571062|571064|571067|572023|572633|572642|572653|572656|572657|572659|572660|572661|572663|572664|572667|572670|572672|572675|572681|572686|572690|572699|572706|572707|572708|572709|572711|572713|572716|572719|572721|572726|572727|572729|572730|572733|572736|572738|572742|572749|572754|572762|572764|572766|573277|573282|573285|573286|573293|573296|573299|573301|573305|573307|573308|573309|573312|573314|573315|573316|573327|573331|573332|573333|573339|573348|573352|573352|573355|573356|573359|573360|573371|573374|573376|573378|573379|573380|573386|573390|573393|573396|573398|574786|574787|575021|575022|575023|575024|575025|575025|575026|575027|575028|575029|575030|575031|575032|575033|575034|575035|575036|575037|575038|575039|575040|575041|575042|575043|575044|575045|575046|575047|576042|611267|611272|648308|648309|648310|648311|648312|648313|648314|648315|648316|648317|648318|648319|648320|648321|648322|648323|648324|648325|648326|648327|648328|648329|648330|648331|648332|648333|648334|648335|648336|648337|648338|648339|648340|648341|648342|648343|648344|648345|648346|648347|648348|648349|648350|648351|648352|648353|648354|648355|648356|648357|648358|648359|648360|648361|648362|648363|648364|648365|648366|648367|648368|648369|648370|648371|648372|648373|648374|648375|648376|648377|648378|648379|648380|648381|648382|648383|648384|648385|648386|648387|648388|648389|648390|648391|648392|648393|648394|648395|648396|648397|648398|648399|648400|648401|648402|648403|648404|648405|648406|648407|648408|648409|648410|648411|648412|648413|648414|648415|648416|648417|648418|648419|648420|648421|648422|648423|648424|648425|648426|648427|648428|648429|648430|648431|648432|648433|648434|648435|648436|653058|653067|653069|653072|653125|653171|653173|653175|653179|653181|653510|653513|653515|653517|653522|653525|653581|653583|653584|653628|653629|653631|653633|689152|689153|690226|690227|690228|694503|694504|694505|694506|694507|694508|694509|695837|695839|705187|705188|705191|716619|728365|728366|728367|742087|745264|757211|757213|757217|757218|757223|757225|760627|760746|760922|772833|772834|772838|772839|772840|772841|772843|772844|772846|772847|772849|772851|772855|772856|772858|772860|772865|772866|772867|772869|772871|772872|772875|772876|776623|778650|780089|786267|786268|786272|786273|786274|786277|786279|786280|788065|788326|788332|789699|791946|791947|791948|797907|814929|814939|814940|814954|814965|814984|815742|815743|815747|815749|815752|815753|821283|821284|821285|847908|847909|847910|847911|847912|847913|847914|847915|847916|847917|847918|847919|847920|847921|847922|847923|847924|847925|847926|847927|847928|847929|847930|847931|847932|847933|847934|847935|847936|847937|847938|847939|847940|847941|847942|847943|847944|847945|847946|847947|847948|847949|847950|847951|847952|847953|847954|847955|847956|847957|847958|847959|847960|847961|847962|847963|847964|847965|847966|847967|847968|847969|847970|847971|847972|847973|847974|847975|847976|847977|847978|847979|847980|847981|847982|847983|847984|847985|847986|847987|847988|847989|847990|847991|847992|847993|847994|847995|847996|847997|847998|847999|848000|848001|848002|848003|848004|848005|848006|848007|848008|848009|848010|848011|848012|848013|848014|848015|848016|848017|848018|848019|848020|848021|848022|848023|848024|848025|848026|848027|851825|851828|851830|852349|852351|852887|852888|852988|852989|852990|852991|929053|929054|929055|929056|929057|929058|929059|929060|929061|929062|929063|929064|929065|929066|929067|929068|929069|929070|929071|929072|929073|929074|929075|929076|929077|929078|929079|929080|929081|929082|929083|929084|929085|929086|929087|929088|929089|929090|929091|929092|929093|929094|929095|929096|929097|929098|929099|938799|938800|938801|938802|938803|938804|938805|938806|938807|938808|938809|938810|938811|938812|938813|938814|938815|938816|938817|938818|938819|938820|938821|938822|938823|938824|938825|938826|938827|938828|938829|938830|938831|938832|938833|938834|938835|938836|938837|938838|938839|938840|940490|940491|940492|940493|940494|941241|941242|941243|941244|941245|950874|950875|950876|950877|950878|950879|950880|950881|950882|950883|950884|950885|950886|950887|950888|950889|950890|950891|950892|950893|950894|950895|950896|950897|950898|950899|950900|950901|950902|950903|950904|950905|950906|958704|958705|958706|958707|958708|958709|958710|958711|958712|958713|958714|958715|958716|958717|958718|958719|958720|958721|958722|958723|958724|960300|960301", "text": "Colorectal cancer 10" }, { - "baseId": "48560|48560|49852|215445|222206|222207|222208|222209|222210|222211|222212|222213|222214|222215|222216|222217|222218|222219|222220|222221|222222|222223|222224|222225|222226|222227|222228|222229|222230|222231|222232|222233|222233|222234|222235|222236|222237|222238|222239|222240|222241|222242|222243|222244|222245|226348|226349|226350|226351|227849|237521|241260|241261|241262|241263|241264|241265|241266|241266|241267|241268|241269|241269|241270|241271|241272|241273|241274|241275|241276|241277|241278|241279|241280|241281|241283|241284|241285|241285|241287|241288|241289|241290|241291|241292|241293|241294|241295|241296|241297|241297|241298|241299|241300|241301|241302|241303|241304|241305|241306|241307|241308|241309|241310|241311|241312|241313|241314|241315|241316|241316|241317|241318|241319|241320|241321|241322|241323|241324|241325|241326|241326|241327|241328|241329|241330|241331|241332|241333|241334|241335|241336|241337|241338|241339|241340|241341|241341|241343|241344|241345|241346|241347|241347|241348|241349|241350|241351|241352|241353|241354|241355|241355|241357|241358|241359|241360|241361|241362|241363|241364|241366|241367|241368|241369|241370|241371|241372|241373|241374|241375|241376|241377|241378|241379|241380|241381|241382|241383|241384|241385|241386|241387|241389|241391|241392|241393|241394|241395|241396|241397|241398|241399|241400|241403|241404|241405|241406|241407|241408|241410|241411|241412|241413|241414|241415|241416|241417|241418|241419|241420|241420|241422|241423|241424|241425|241426|241427|241428|241429|241429|241430|241431|241431|241432|241433|241434|241435|241436|241437|241438|241439|241440|241441|241442|241443|241444|241445|241446|241447|241448|241449|241450|241451|241452|241453|241454|241455|241456|241457|241458|241459|241460|241461|241462|241463|241464|241465|241466|241467|241468|241469|241470|241471|241472|241473|241474|241475|241476|241477|241478|241479|241480|241481|241482|241482|241483|241484|241485|241486|241487|241489|241490|241491|241492|241493|241494|241495|241496|241497|241498|241499|241500|241501|241502|241503|241504|241505|241506|241507|241508|241509|241510|241511|241512|241513|241513|241514|241515|241516|241517|241517|241518|241519|241520|241521|241522|241523|241525|241526|241527|244734|244735|244737|244738|244739|244740|244741|244742|244743|244745|244746|244748|244749|244749|244750|244751|244752|244752|244753|244754|244755|244756|244759|244760|244762|244763|244764|244765|244766|244767|244768|244769|244770|247073|247074|248517|260013|260013|358843|358844|358845|358846|358847|358848|358849|358850|358851|358852|358853|358854|358855|358856|358857|358858|358859|358860|358861|358862|358863|358864|358865|358866|358867|358868|358869|358870|358871|358872|358873|358874|358875|358876|358877|358878|358879|358880|358881|358882|358883|358884|358885|358886|358887|361869|361870|361871|361872|361873|363379|371891|371892|371893|371896|371900|371920|371923|371934|371936|371939|371944|371945|371947|371962|371964|371965|371971|371983|371984|371988|371991|371996|372011|372020|372027|372036|372046|372051|372057|372060|372066|372072|372074|372080|372081|372083|372086|372100|372111|372112|372120|372634|372649|372662|372667|372672|372673|372681|372683|372727|372731|372736|372740|372741|372750|372756|372759|372784|372785|372786|372788|372790|372791|372794|372796|372818|372820|372823|372826|372828|372836|372922|372923|372926|372935|372936|372939|372946|372950|372952|372960|372970|372978|372980|372999|373003|373008|373012|373016|373020|373028|373036|373039|373046|373062|373065|373070|373073|373081|374667|374680|374681|374685|374696|374706|374708|374710|374725|374737|374748|374762|374777|374783|374784|374786|374792|374805|374809|374815|374826|374828|374834|374835|374851|390014|390014|390085|390137|398423|398530|398533|398537|398538|398539|398541|398544|398544|398556|398559|398568|398573|398576|398578|398579|398581|398582|398584|398588|398594|398595|398598|398600|398603|398604|398605|398606|398607|398610|398613|398615|398616|398617|398618|398621|398624|398627|398629|398630|398633|398641|398641|398643|398645|398648|398649|398650|398653|398653|398655|398658|398660|398661|398662|398663|398665|398666|398667|398669|398670|398670|398671|398671|398672|398673|398674|398675|398676|398677|398681|398684|398686|398689|398694|398695|398697|398698|398701|398703|398705|398709|398710|398714|398715|398716|398718|398721|398722|398723|398725|398726|398728|398729|398731|398734|398735|398738|398742|398745|398747|398748|398753|398756|398758|398761|398762|398763|398767|398767|398770|398771|398772|398777|398783|398784|398785|398787|398788|398792|398793|398794|398795|398796|398798|398799|398800|398805|398808|398809|398811|398812|398813|398815|398817|398818|398819|398820|398820|398822|398823|398824|398825|398827|398828|398829|398832|398834|398836|398837|398840|398841|398843|398846|398848|398849|398850|398851|398855|398856|398858|398861|398869|398870|398882|398887|398889|398890|398891|398895|398897|398899|398903|398904|398906|398907|398916|398917|398918|398919|398920|398922|398924|398925|398926|398930|398934|398935|398939|398940|398941|398942|398943|398945|398950|398952|398954|398956|398959|398964|398967|398969|398972|398973|398974|398975|398976|398977|398981|398982|398984|398988|398989|398990|398991|398993|398994|398998|399006|399008|399009|399010|399011|399012|399013|399014|399015|399016|399017|399019|399021|399022|399023|399024|399025|399027|399028|399030|399037|399041|399042|399050|399051|399051|399052|399053|399056|399061|399062|399065|399067|399068|399071|399072|399075|399076|399077|399078|399079|399082|399086|399091|399093|399093|399095|399096|399100|399103|399105|399107|399108|399109|399112|399115|399116|399117|399118|399122|399123|399128|399130|399133|399134|399136|399137|399139|399140|399145|399149|399150|399153|399154|399156|399159|399160|399163|399164|399165|399169|399171|399175|399177|399180|399184|399186|399188|399189|399192|399193|399195|399196|399200|399202|399204|399205|399206|399210|399212|399214|399217|399222|399223|399224|399226|399228|399231|399232|399233|399235|399237|399238|399239|399244|399246|399247|399252|399254|399255|399255|399256|399259|399261|399264|399270|399272|399273|399274|399276|399277|399278|399282|399283|399285|399286|399289|399290|399291|399294|399295|399297|399300|399301|399303|399304|399305|399306|399307|399310|399313|399314|399315|399316|399317|399319|399321|399323|399325|399326|399328|399330|399335|399344|399354|399357|399358|399362|399380|399388|399399|399399|399401|399403|399414|399417|399419|399432|399435|399443|399444|399455|399462|399466|399467|399472|399473|399492|399495|399496|399499|399500|399516|399517|399526|399530|399530|399531|399536|399543|399543|399545|399563|399565|399569|399571|399572|399573|399582|399583|408549|408550|408552|408554|408555|408556|408559|408560|408561|408562|408563|408564|408565|408566|408567|408569|408574|408575|408577|408578|408579|408581|408582|408584|408585|408585|408588|408590|408591|408592|408595|413356|432711|432712|432713|432714|432715|432717|432718|432721|432722|432726|432729|432730|432732|461558|461566|461573|461690|461697|461706|461708|461711|461714|461719|461726|461728|461735|461742|461743|461745|461747|461768|461769|461777|461794|461796|461801|461809|461811|461812|461815|461817|461819|461820|461823|461824|461827|461828|461832|461833|461837|461839|461850|461859|461862|461864|461871|461876|461878|461879|461882|461884|461888|461889|461892|461895|461897|461899|461900|461902|461903|461905|461906|461908|461910|461912|461918|461919|461925|461926|461928|461929|461933|461934|461937|461938|461940|461942|461946|461947|461949|461951|461954|461956|461958|461959|461961|461962|461963|461964|461965|461966|461967|461968|461969|461970|461971|461972|461973|461974|461975|461978|461981|461982|461987|461988|461989|461993|461997|461998|461999|462004|462005|462006|462007|462011|462013|462014|462018|462020|462021|462022|462024|462025|462026|462030|462031|462034|462035|462039|462040|462042|462043|462046|462051|462056|462058|462062|462069|462070|462072|462074|462079|462094|462100|462102|462109|462117|462119|462122|462124|462131|462132|462134|462142|462144|462145|462153|462154|462163|462166|462169|462173|462176|462179|462182|462184|462186|462192|462196|462200|462202|462208|462209|462212|462222|462223|462227|462231|462233|462235|462248|462250|462254|462257|462266|462268|462271|462273|462281|462283|462284|462285|462287|462288|462291|462295|462298|462304|462306|462308|462314|462323|462330|462336|462338|462350|462351|462354|462358|462371|462374|462376|462383|462390|462392|462393|462395|462405|462411|462413|462422|462431|462436|462438|462443|462451|462453|462463|462463|462465|462469|462471|462476|462480|462480|462481|462487|462488|462489|462505|462508|462509|462510|462512|462514|462517|462518|462520|462522|462523|462524|462529|462530|462531|462533|462535|462547|462548|462549|462556|462557|462558|462559|462560|462565|462566|462567|462569|462571|462577|462579|462581|462582|462584|462585|462587|462588|462589|462590|462594|462595|462600|462601|462602|462603|462607|462608|462609|462611|462614|462616|462620|462621|462623|462624|462625|462626|462627|462629|462630|462632|462634|462637|462638|462639|462640|462643|462645|462646|462648|462649|462650|462651|462652|462653|462654|462656|462657|462658|462661|462662|462664|462666|462669|462671|462674|462676|462678|462680|462683|462684|462687|462688|462689|462690|462692|462698|462699|462701|462703|462707|462709|462710|462711|462712|462713|462714|462715|462716|462718|462719|462721|462722|462723|462724|462725|462728|462731|462734|462742|462744|462745|462749|462751|462753|462756|462758|462760|462762|462763|462766|462767|462770|462772|462776|462777|462779|462780|462784|462787|462789|462793|462793|462796|462796|462800|462800|462802|462808|462809|462810|462821|462827|462833|462835|462838|462841|462844|462845|462848|462851|462853|462860|462863|462866|462871|462876|462878|462886|462889|462890|462893|462895|462898|462904|476254|476261|476262|476269|476280|476286|476288|476294|476296|476298|476305|476308|476317|476322|476327|476330|476331|476333|476336|476338|476340|476343|476348|476349|476350|476352|476360|476360|476362|476367|476372|476374|476382|476388|476389|476393|476400|476410|476413|476415|476421|476422|476425|476428|476432|476444|476448|476452|476457|476504|476507|476519|476522|476541|476546|476551|476557|476565|476603|476605|476606|476625|476653|476662|476668|476676|476678|476681|476684|476701|476707|476747|476770|476773|476796|476799|476802|476808|476814|476815|476829|476841|476850|476869|476872|476879|476886|476888|476905|476912|476918|476924|476925|476933|476938|476946|476956|476956|476982|476988|477027|477028|477043|497005|497006|497216|497217|497411|497414|497415|497634|497635|503620|503645|503662|503669|503684|503692|503927|503934|503941|503949|503952|503961|503974|503983|503990|504181|504205|504220|504610|504635|504648|504651|504660|504676|526610|526727|526729|526734|526738|526740|526743|526750|526751|526756|526757|526758|526760|526762|526763|526765|526766|526768|526771|526774|526775|526776|526777|526781|526782|526784|526786|526787|526789|526792|526793|526794|526795|526800|526802|526804|526809|526811|526815|526816|526817|526819|526820|526822|526823|526824|526825|526826|526828|526829|526830|526831|526832|526837|526839|526841|526843|526844|526846|526850|526851|526854|526855|526856|526857|526858|526860|526861|526862|526863|526864|526865|526868|526869|526871|526874|526875|526882|526884|526886|526887|526888|526889|526890|526891|526892|526893|526897|526900|526902|526905|526908|526910|526911|526915|526922|526924|526927|526928|526929|526930|526935|526935|526936|526940|526942|526943|526944|526946|526948|526952|526953|526954|526959|526962|526964|526966|526968|526971|526973|526976|526977|526981|526982|526983|526985|526987|526988|526990|526991|526992|526995|526996|526998|526999|527000|527001|527002|527004|527005|527006|527008|527009|527010|527012|527014|527016|527020|527022|527023|527024|527025|527027|527036|527044|527045|527049|527053|527058|527060|527069|527071|527079|527081|527083|527089|527093|527095|527097|527101|527103|527119|527125|527127|527128|527129|527133|527136|527136|527139|527142|527145|527149|527151|527153|527158|527159|527160|527168|527173|527174|527180|527183|527185|527193|527193|527195|527201|527205|527209|527220|527283|527288|527298|527303|527309|527310|527313|527317|527329|527333|527336|527337|527344|527346|527353|527354|527359|527361|527363|527367|527370|527374|527377|527378|527380|527383|527388|527395|527397|527401|527403|527408|527421|527423|527432|527433|527440|527441|527446|527448|527451|527455|527457|527459|527462|527465|527468|527468|527470|527481|527485|527487|527488|527491|527494|527497|527502|527503|527506|527507|527508|527509|527513|527516|527519|527520|527529|527534|527536|527538|536406|536408|539044|539306|539307|539308|539309|539310|539311|539312|539313|539314|539315|539316|539317|539318|539319|539320|539321|539322|539323|539325|539326|539327|539328|539329|540488|540489|551900|551902|551905|551906|551907|564996|565119|565137|565138|565140|565144|565146|565148|565149|565151|565152|565159|565162|565163|565171|565176|565181|565184|565186|565188|565195|565197|565199|565204|565205|565207|565209|565216|565219|565220|565222|565226|565228|565231|565233|565235|565241|565243|565249|565250|565252|565256|565263|565266|565268|565270|565272|565274|565277|565279|565287|565288|565289|565292|565300|565304|565306|565311|565314|565319|565320|565324|565325|565326|565327|565331|565333|565335|565337|565338|565341|565343|565347|565348|565349|565351|566282|566285|566417|566419|566420|566421|566426|566427|566428|566430|566431|566434|566440|566448|566455|566459|566473|566476|566477|566484|566485|566497|566498|566506|566514|566528|566543|566562|566563|566565|566573|566574|566575|566577|566579|566584|566590|566592|566593|566594|566599|566605|566609|566614|566619|566621|566623|566624|566626|566627|566630|566636|566637|566638|566645|566647|566652|566656|566676|566678|566684|566685|566688|566694|566699|566700|566701|566708|566709|566710|566713|566715|566717|566725|566730|567701|567703|567708|567711|567715|567716|567717|567719|567720|567727|567728|567734|567735|567737|567739|567744|567748|567751|567754|567755|567760|567761|567764|567766|567768|567769|567776|567781|567784|567791|567798|567800|567804|567808|567809|567811|567814|567819|567821|567822|567827|567834|567836|567842|567843|567846|567847|567851|567857|567868|567871|567872|567874|567877|567881|567884|567888|567894|567896|567898|567901|567902|567904|567907|567910|567912|567916|567917|567920|567921|571148|571150|571321|571324|571325|571334|571337|571340|571345|571346|571350|571353|571354|571359|571361|571364|571365|571366|571372|571376|571382|571383|571385|571388|571394|571403|571407|571408|571415|571423|571424|571435|571446|571451|571452|571457|571458|571460|571463|571464|571467|571468|571469|571471|571478|571487|571493|571494|571504|571519|571524|571545|571549|571550|571554|571557|571558|571559|571563|571572|571573|571576|571577|571590|571604|571612|571614|571618|571622|571628|571632|571635|571638|571639|571640|571648|571652|571657|571659|571665|571668|571674|571689|571694|571705|575858|575859|575861|575866|578307|611105|611111|611112|611117|611310|621373|640700|640701|640702|640703|640704|640705|640706|640707|640708|640709|640710|640711|640712|640713|640714|640715|640716|640717|640718|640719|640720|640721|640722|640723|640724|640725|640726|640727|640728|640729|640730|640731|640732|640733|640734|640735|640736|640737|640738|640739|640740|640741|640742|640743|640744|640745|640746|640747|640748|640749|640750|640751|640752|640753|640754|640755|640756|640757|640758|640759|640760|640761|640762|640763|640764|640765|640766|640767|640768|640769|640770|640771|640772|640773|640774|640775|640776|640777|640778|640779|640780|640781|640782|640783|640784|640785|640786|640787|640788|640789|640790|640791|640792|640793|640794|640795|640796|640797|640798|640799|640800|640801|640802|640803|640804|640805|640806|640807|640808|640809|640810|640811|640812|640813|640814|640815|640816|640817|640818|640819|640820|640821|640822|640823|640824|640825|640826|640827|640828|640829|640830|640831|640832|640833|640834|640835|640836|640837|640838|640839|640840|640841|640842|640843|640844|640845|640846|640847|640848|640849|640850|640851|640852|640853|640854|640855|640856|640857|640858|640859|640860|640861|640862|640863|640864|640865|640866|640867|640868|640869|640870|640871|640872|640873|640874|640875|640876|640877|640878|640879|640880|640881|640882|640883|640884|640885|640886|640887|640888|640889|640890|640891|640892|640893|640894|640895|640896|640897|640898|640899|640900|640901|640902|640903|640904|640905|640906|640907|640908|640909|640910|640911|640912|640913|640914|640915|640916|640917|640918|640919|640920|640921|640922|640923|640924|640925|640926|640927|640928|640929|640930|640931|640932|640933|640934|640935|640936|640937|640938|640939|640940|640941|640942|640943|640944|640945|640946|640947|640948|640949|640950|640951|640952|640953|640954|640955|640956|640957|640958|640959|640960|640961|640962|640963|640964|640965|640966|640967|640968|640969|640970|640971|640972|640973|640974|640975|640976|640977|640978|640979|640980|640981|640982|640983|640984|640985|640986|640987|640988|640989|640990|640991|640992|652166|652213|652216|652221|652223|652227|652263|652265|652266|652288|652292|652297|652298|652301|652309|652311|652313|652367|652368|652414|652417|652420|652425|652428|652434|652435|652437|652445|652446|652454|652629|652652|652653|652654|652656|652660|652664|652670|652672|652684|656118|656119|666198|685310|685311|687924|687925|687926|687927|687929|687931|687932|687933|687935|687936|690024|690026|690027|690028|690029|693165|693166|693167|693169|693170|695555|695556|702251|713448|725004|730854|738554|738555|738556|738557|744684|744815|753224|753230|753233|753234|753235|753239|753240|753241|753243|753245|759989|759996|760133|760135|760138|760154|760163|768965|768970|768972|768973|768974|768983|768987|768989|768999|769003|769009|769011|775798|775845|775976|778062|784311|784317|784318|784319|784322|784329|784331|784333|784336|784344|784345|787758|788048|788052|789506|789511|789512|789514|789516|789686|791203|791204|791205|791206|791207|791208|791209|791210|791211|791212|791213|796719|811164|811171|811173|811175|811184|811190|811194|811195|811201|811209|811216|811228|815531|815533|815536|815538|815540|815542|815545|815551|815554|815555|820457|820458|820459|820460|820461|820462|820463|820464|820465|820466|820467|820468|820469|820470|820471|820472|820473|820474|820475|820476|820478|820479|820480|839411|839412|839413|839414|839415|839416|839417|839418|839419|839420|839421|839422|839423|839424|839425|839426|839427|839428|839429|839430|839431|839432|839433|839434|839435|839436|839437|839438|839439|839440|839441|839442|839443|839444|839445|839446|839447|839448|839449|839450|839451|839452|839453|839454|839455|839456|839457|839458|839459|839460|839461|839462|839463|839464|839465|839466|839467|839468|839469|839470|839471|839472|839473|839474|839475|839476|839477|839478|839479|839480|839481|839482|839483|839484|839485|839486|839487|839488|839489|839490|839491|839492|839493|839494|839495|839496|839497|839498|839499|839500|839501|839502|839503|839504|839505|839506|839507|839508|839509|839510|839511|839512|839513|839514|839515|839516|839517|839518|839519|839520|839521|839522|839523|839524|839525|839526|839527|839528|839529|839530|839531|839532|839533|839534|839535|839536|839537|839538|839539|839540|839541|839542|839543|839544|839545|839546|839547|839548|839549|839550|839551|839552|839553|839554|839555|839556|839557|839558|839559|839560|839561|839562|839563|839564|839565|839566|839567|839568|839569|839570|839571|839572|839573|839574|839575|839576|839577|839578|839579|839580|839581|839582|839583|839584|839585|839586|839587|839588|839589|839590|839591|839592|839593|839594|839595|839596|839597|839598|839599|839600|839601|839602|839603|839604|839605|839606|839607|839608|839609|839610|839611|839612|839613|839614|839615|839616|839617|839618|839619|839620|839621|839622|839623|839624|839625|839626|839627|839628|839629|839630|839631|839632|839633|839634|839635|839636|839637|839638|839639|839640|839641|839642|839643|839644|839645|839646|839647|839648|839649|839650|839651|839652|839653|839654|839655|839656|839657|839658|839659|839660|839661|839662|839663|839664|839665|839666|839667|839668|839669|839670|839671|839672|839673|839674|839675|839676|839677|839678|839679|839680|839681|839682|839683|839684|839685|839686|839687|839688|839689|839690|839691|839692|839693|851478|851480|851482|851484|851486|851488|851490|851492|851933|851935|851937|852448|852449|852454|852455|852460|852461|852466|852661|852663|852664|852665|852667|852671|852674|852675|852676|926492|926493|926494|926495|926496|926497|926498|926499|926500|926501|926502|926503|926504|926505|926506|926507|926508|926509|926510|926511|926512|926513|926514|926515|926516|926517|926518|926519|926520|926521|926522|926523|926524|926525|926526|926527|926528|926529|926530|926531|926532|926533|926534|926535|926536|926537|926538|926539|926540|926541|926542|926543|926544|926545|926546|926547|926548|926549|926550|926551|926552|926553|926554|926555|926556|926557|926558|926559|926560|926561|926562|926563|926564|926565|926566|926567|926568|926569|926570|926571|926572|926573|935952|935953|935954|935955|935956|935957|935958|935959|935960|935961|935962|935963|935964|935965|935966|935967|935968|935969|935970|935971|935972|935973|935974|935975|935976|935977|935978|935979|935980|935981|935982|935983|935984|935985|935986|935987|935988|935989|935990|935991|935992|935993|935994|935995|935996|935997|935998|935999|936000|936001|936002|936003|936004|936005|936006|936007|936008|936009|936010|936011|936012|936013|936014|936015|936016|936017|936018|936019|936020|936021|936022|936023|936024|936025|936026|936027|936028|936029|936030|936031|936032|936033|936034|936035|936036|936037|940246|940247|940248|940249|940250|940251|940252|940253|940254|940255|940256|940257|941024|941025|941026|941027|947822|947823|947824|947825|947826|947827|947828|947829|947830|947831|947832|947833|947834|947835|947836|947837|947838|947839|947840|947841|947842|947843|947844|947845|947846|947847|947848|947849|947850|947851|947852|947853|947854|947855|947856|947857|947858|947859|947860|947861|947862|947863|947864|947865|947866|947867|947868|947869|947870|947871|947872|947873|947874|947875|947876|947877|947878|947879|947880|947881|947882|947883|947884|947885|947886|947887|947888|947889|947890|947891|947892|947893|947894|947895|947896|947897|947898|947899|947900|947901|947902|947903|947904|947905|947906|947907|947908|947909|947910|947911|947912|947913|947914|947915|947916|947917|947918|956772|956773|956774|956775|956776|956777|956778|956779|956780|956781|956782|956783|956784|956785|956786|956787|956788|956789|956790|956791|956792|956793|956794|956795|956796|956797|956798|956799|956800|956801|956802|956803|956804|956805|956806|956807|956808|956809|956810|956811|956812|956813|956814|956815|956816|956817|956818|956819|960025|960026|960027|960028|960029|960777|960778|960779|960780|960781|962064", + "upstreamId": "48560|48560|49852|215445|222206|222207|222208|222209|222210|222211|222212|222213|222214|222215|222216|222217|222218|222219|222220|222221|222222|222223|222224|222225|222226|222227|222228|222229|222230|222231|222232|222233|222233|222234|222235|222236|222237|222238|222239|222240|222241|222242|222243|222244|222245|226348|226349|226350|226351|227849|237521|241260|241261|241262|241263|241264|241265|241266|241266|241267|241268|241269|241269|241270|241271|241272|241273|241274|241275|241276|241277|241278|241279|241280|241281|241283|241284|241285|241285|241287|241288|241289|241290|241291|241292|241293|241294|241295|241296|241297|241297|241298|241299|241300|241301|241302|241303|241304|241305|241306|241307|241308|241309|241310|241311|241312|241313|241314|241315|241316|241316|241317|241318|241319|241320|241321|241322|241323|241324|241325|241326|241326|241327|241328|241329|241330|241331|241332|241333|241334|241335|241336|241337|241338|241339|241340|241341|241341|241343|241344|241345|241346|241347|241347|241348|241349|241350|241351|241352|241353|241354|241355|241355|241357|241358|241359|241360|241361|241362|241363|241364|241366|241367|241368|241369|241370|241371|241372|241373|241374|241375|241376|241377|241378|241379|241380|241381|241382|241383|241384|241385|241386|241387|241389|241391|241392|241393|241394|241395|241396|241397|241398|241399|241400|241403|241404|241405|241406|241407|241408|241410|241411|241412|241413|241414|241415|241416|241417|241418|241419|241420|241420|241422|241423|241424|241425|241426|241427|241428|241429|241429|241430|241431|241431|241432|241433|241434|241435|241436|241437|241438|241439|241440|241441|241442|241443|241444|241445|241446|241447|241448|241449|241450|241451|241452|241453|241454|241455|241456|241457|241458|241459|241460|241461|241462|241463|241464|241465|241466|241467|241468|241469|241470|241471|241472|241473|241474|241475|241476|241477|241478|241479|241480|241481|241482|241482|241483|241484|241485|241486|241487|241489|241490|241491|241492|241493|241494|241495|241496|241497|241498|241499|241500|241501|241502|241503|241504|241505|241506|241507|241508|241509|241510|241511|241512|241513|241513|241514|241515|241516|241517|241517|241518|241519|241520|241521|241522|241523|241525|241526|241527|244734|244735|244737|244738|244739|244740|244741|244742|244743|244745|244746|244748|244749|244749|244750|244751|244752|244752|244753|244754|244755|244756|244759|244760|244762|244763|244764|244765|244766|244767|244768|244769|244770|247073|247074|248517|260013|260013|358843|358844|358845|358846|358847|358848|358849|358850|358851|358852|358853|358854|358855|358856|358857|358858|358859|358860|358861|358862|358863|358864|358865|358866|358867|358868|358869|358870|358871|358872|358873|358874|358875|358876|358877|358878|358879|358880|358881|358882|358883|358884|358885|358886|358887|361869|361870|361871|361872|361873|363379|371891|371892|371893|371896|371900|371920|371923|371934|371936|371939|371944|371945|371947|371962|371964|371965|371971|371983|371984|371988|371991|371996|372011|372020|372027|372036|372046|372051|372057|372060|372066|372072|372074|372080|372081|372083|372086|372100|372111|372112|372120|372634|372649|372662|372667|372672|372673|372681|372683|372727|372731|372736|372740|372741|372750|372756|372759|372784|372785|372786|372788|372790|372791|372794|372796|372818|372820|372823|372826|372828|372836|372922|372923|372926|372935|372936|372939|372946|372950|372952|372960|372970|372978|372980|372999|373003|373008|373012|373016|373020|373028|373036|373039|373046|373062|373065|373070|373073|373081|374667|374680|374681|374685|374696|374706|374708|374710|374725|374737|374748|374762|374777|374783|374784|374786|374792|374805|374809|374815|374826|374828|374834|374835|374851|390014|390014|390085|390137|398423|398530|398533|398537|398538|398539|398541|398544|398544|398556|398559|398568|398573|398576|398578|398579|398581|398582|398584|398588|398594|398595|398598|398600|398603|398604|398605|398606|398607|398610|398613|398615|398616|398617|398618|398621|398624|398627|398629|398630|398633|398641|398641|398643|398645|398648|398649|398650|398653|398653|398655|398658|398660|398661|398662|398663|398665|398666|398667|398669|398670|398670|398671|398671|398672|398673|398674|398675|398676|398677|398681|398684|398686|398689|398694|398695|398697|398698|398701|398703|398705|398709|398710|398714|398715|398716|398718|398721|398722|398723|398725|398726|398728|398729|398731|398734|398735|398738|398742|398745|398747|398748|398753|398756|398758|398761|398762|398763|398767|398767|398770|398771|398772|398777|398783|398784|398785|398787|398788|398792|398793|398794|398795|398796|398798|398799|398800|398805|398808|398809|398811|398812|398813|398815|398817|398818|398819|398820|398820|398822|398823|398824|398825|398827|398828|398829|398832|398834|398836|398837|398840|398841|398843|398846|398848|398849|398850|398851|398855|398856|398858|398861|398869|398870|398882|398887|398889|398890|398891|398895|398897|398899|398903|398904|398906|398907|398916|398917|398918|398919|398920|398922|398924|398925|398926|398930|398934|398935|398939|398940|398941|398942|398943|398945|398950|398952|398954|398956|398959|398964|398967|398969|398972|398973|398974|398975|398976|398977|398981|398982|398984|398988|398989|398990|398991|398993|398994|398998|399006|399008|399009|399010|399011|399012|399013|399014|399015|399016|399017|399019|399021|399022|399023|399024|399025|399027|399028|399030|399037|399041|399042|399050|399051|399051|399052|399053|399056|399061|399062|399065|399067|399068|399071|399072|399075|399076|399077|399078|399079|399082|399086|399091|399093|399093|399095|399096|399100|399103|399105|399107|399108|399109|399112|399115|399116|399117|399118|399122|399123|399128|399130|399133|399134|399136|399137|399139|399140|399145|399149|399150|399153|399154|399156|399159|399160|399163|399164|399165|399169|399171|399175|399177|399180|399184|399186|399188|399189|399192|399193|399195|399196|399200|399202|399204|399205|399206|399210|399212|399214|399217|399222|399223|399224|399226|399228|399231|399232|399233|399235|399237|399238|399239|399244|399246|399247|399252|399254|399255|399255|399256|399259|399261|399264|399270|399272|399273|399274|399276|399277|399278|399282|399283|399285|399286|399289|399290|399291|399294|399295|399297|399300|399301|399303|399304|399305|399306|399307|399310|399313|399314|399315|399316|399317|399319|399321|399323|399325|399326|399328|399330|399335|399344|399354|399357|399358|399362|399380|399388|399399|399399|399401|399403|399414|399417|399419|399432|399435|399443|399444|399455|399462|399466|399467|399472|399473|399492|399495|399496|399499|399500|399516|399517|399526|399530|399530|399531|399536|399543|399543|399545|399563|399565|399569|399571|399572|399573|399582|399583|408549|408550|408552|408554|408555|408556|408559|408560|408561|408562|408563|408564|408565|408566|408567|408569|408574|408575|408577|408578|408579|408581|408582|408584|408585|408585|408588|408590|408591|408592|408595|413356|432711|432712|432713|432714|432715|432717|432718|432721|432722|432726|432729|432730|432732|461558|461566|461573|461690|461697|461706|461708|461711|461714|461719|461726|461728|461735|461742|461743|461745|461747|461768|461769|461777|461794|461796|461801|461809|461811|461812|461815|461817|461819|461820|461823|461824|461827|461828|461832|461833|461837|461839|461850|461859|461862|461864|461871|461876|461878|461879|461882|461884|461888|461889|461892|461895|461897|461899|461900|461902|461903|461905|461906|461908|461910|461912|461918|461919|461925|461926|461928|461929|461933|461934|461937|461938|461940|461942|461946|461947|461949|461951|461954|461956|461958|461959|461961|461962|461963|461964|461965|461966|461967|461968|461969|461970|461971|461972|461973|461974|461975|461978|461981|461982|461987|461988|461989|461993|461997|461998|461999|462004|462005|462006|462007|462011|462013|462014|462018|462020|462021|462022|462024|462025|462026|462030|462031|462034|462035|462039|462040|462042|462043|462046|462051|462056|462058|462062|462069|462070|462072|462074|462079|462094|462100|462102|462109|462117|462119|462122|462124|462131|462132|462134|462142|462144|462145|462153|462154|462163|462166|462169|462173|462176|462179|462182|462184|462186|462192|462196|462200|462202|462208|462209|462212|462222|462223|462227|462231|462233|462235|462248|462250|462254|462257|462266|462268|462271|462273|462281|462283|462284|462285|462287|462288|462291|462295|462298|462304|462306|462308|462314|462323|462330|462336|462338|462350|462351|462354|462358|462371|462374|462376|462383|462390|462392|462393|462395|462405|462411|462413|462422|462431|462436|462438|462443|462451|462453|462463|462463|462465|462469|462471|462476|462480|462480|462481|462487|462488|462489|462505|462508|462509|462510|462512|462514|462517|462518|462520|462522|462523|462524|462529|462530|462531|462533|462535|462547|462548|462549|462556|462557|462558|462559|462560|462565|462566|462567|462569|462571|462577|462579|462581|462582|462584|462585|462587|462588|462589|462590|462594|462595|462600|462601|462602|462603|462607|462608|462609|462611|462614|462616|462620|462621|462623|462624|462625|462626|462627|462629|462630|462632|462634|462637|462638|462639|462640|462643|462645|462646|462648|462649|462650|462651|462652|462653|462654|462656|462657|462658|462661|462662|462664|462666|462669|462671|462674|462676|462678|462680|462683|462684|462687|462688|462689|462690|462692|462698|462699|462701|462703|462707|462709|462710|462711|462712|462713|462714|462715|462716|462718|462719|462721|462722|462723|462724|462725|462728|462731|462734|462742|462744|462745|462749|462751|462753|462756|462758|462760|462762|462763|462766|462767|462770|462772|462776|462777|462779|462780|462784|462787|462789|462793|462793|462796|462796|462800|462800|462802|462808|462809|462810|462821|462827|462833|462835|462838|462841|462844|462845|462848|462851|462853|462860|462863|462866|462871|462876|462878|462886|462889|462890|462893|462895|462898|462904|476254|476261|476262|476269|476280|476286|476288|476294|476296|476298|476305|476308|476317|476322|476327|476330|476331|476333|476336|476338|476340|476343|476348|476349|476350|476352|476360|476360|476362|476367|476372|476374|476382|476388|476389|476393|476400|476410|476413|476415|476421|476422|476425|476428|476432|476444|476448|476452|476457|476504|476507|476519|476522|476541|476546|476551|476557|476565|476603|476605|476606|476625|476653|476662|476668|476676|476678|476681|476684|476701|476707|476747|476770|476773|476796|476799|476802|476808|476814|476815|476829|476841|476850|476869|476872|476879|476886|476888|476905|476912|476918|476924|476925|476933|476938|476946|476956|476956|476982|476988|477027|477028|477043|497005|497006|497216|497217|497411|497414|497415|497634|497635|503620|503645|503662|503669|503684|503692|503927|503934|503941|503949|503952|503961|503974|503983|503990|504181|504205|504220|504610|504635|504648|504651|504660|504676|526610|526727|526729|526734|526738|526740|526743|526750|526751|526756|526757|526758|526760|526762|526763|526765|526766|526768|526771|526774|526775|526776|526777|526781|526782|526784|526786|526787|526789|526792|526793|526794|526795|526800|526802|526804|526809|526811|526815|526816|526817|526819|526820|526822|526823|526824|526825|526826|526828|526829|526830|526831|526832|526837|526839|526841|526843|526844|526846|526850|526851|526854|526855|526856|526857|526858|526860|526861|526862|526863|526864|526865|526868|526869|526871|526874|526875|526882|526884|526886|526887|526888|526889|526890|526891|526892|526893|526897|526900|526902|526905|526908|526910|526911|526915|526922|526924|526927|526928|526929|526930|526935|526935|526936|526940|526942|526943|526944|526946|526948|526952|526953|526954|526959|526962|526964|526966|526968|526971|526973|526976|526977|526981|526982|526983|526985|526987|526988|526990|526991|526992|526995|526996|526998|526999|527000|527001|527002|527004|527005|527006|527008|527009|527010|527012|527014|527016|527020|527022|527023|527024|527025|527027|527036|527044|527045|527049|527053|527058|527060|527069|527071|527079|527081|527083|527089|527093|527095|527097|527101|527103|527119|527125|527127|527128|527129|527133|527136|527136|527139|527142|527145|527149|527151|527153|527158|527159|527160|527168|527173|527174|527180|527183|527185|527193|527193|527195|527201|527205|527209|527220|527283|527288|527298|527303|527309|527310|527313|527317|527329|527333|527336|527337|527344|527346|527353|527354|527359|527361|527363|527367|527370|527374|527377|527378|527380|527383|527388|527395|527397|527401|527403|527408|527421|527423|527432|527433|527440|527441|527446|527448|527451|527455|527457|527459|527462|527465|527468|527468|527470|527481|527485|527487|527488|527491|527494|527497|527502|527503|527506|527507|527508|527509|527513|527516|527519|527520|527529|527534|527536|527538|536406|536408|539044|539306|539307|539308|539309|539310|539311|539312|539313|539314|539315|539316|539317|539318|539319|539320|539321|539322|539323|539325|539326|539327|539328|539329|540488|540489|551900|551902|551905|551906|551907|564996|565119|565137|565138|565140|565144|565146|565148|565149|565151|565152|565159|565162|565163|565171|565176|565181|565184|565186|565188|565195|565197|565199|565204|565205|565207|565209|565216|565219|565220|565222|565226|565228|565231|565233|565235|565241|565243|565249|565250|565252|565256|565263|565266|565268|565270|565272|565274|565277|565279|565287|565288|565289|565292|565300|565304|565306|565311|565314|565319|565320|565324|565325|565326|565327|565331|565333|565335|565337|565338|565341|565343|565347|565348|565349|565351|566282|566285|566417|566419|566420|566421|566426|566427|566428|566430|566431|566434|566440|566448|566455|566459|566473|566476|566477|566484|566485|566497|566498|566506|566514|566528|566543|566562|566563|566565|566573|566574|566575|566577|566579|566584|566590|566592|566593|566594|566599|566605|566609|566614|566619|566621|566623|566624|566626|566627|566630|566636|566637|566638|566645|566647|566652|566656|566676|566678|566684|566685|566688|566694|566699|566700|566701|566708|566709|566710|566713|566715|566717|566725|566730|567701|567703|567708|567711|567715|567716|567717|567719|567720|567727|567728|567734|567735|567737|567739|567744|567748|567751|567754|567755|567760|567761|567764|567766|567768|567769|567776|567781|567784|567791|567798|567800|567804|567808|567809|567811|567814|567819|567821|567822|567827|567834|567836|567842|567843|567846|567847|567851|567857|567868|567871|567872|567874|567877|567881|567884|567888|567894|567896|567898|567901|567902|567904|567907|567910|567912|567916|567917|567920|567921|571148|571150|571321|571324|571325|571334|571337|571340|571345|571346|571350|571353|571354|571359|571361|571364|571365|571366|571372|571376|571382|571383|571385|571388|571394|571403|571407|571408|571415|571423|571424|571435|571446|571451|571452|571457|571458|571460|571463|571464|571467|571468|571469|571471|571478|571487|571493|571494|571504|571519|571524|571545|571549|571550|571554|571557|571558|571559|571563|571572|571573|571576|571577|571590|571604|571612|571614|571618|571622|571628|571632|571635|571638|571639|571640|571648|571652|571657|571659|571665|571668|571674|571689|571694|571705|575858|575859|575861|575866|578307|611105|611111|611112|611117|611310|621373|640700|640701|640702|640703|640704|640705|640706|640707|640708|640709|640710|640711|640712|640713|640714|640715|640716|640717|640718|640719|640720|640721|640722|640723|640724|640725|640726|640727|640728|640729|640730|640731|640732|640733|640734|640735|640736|640737|640738|640739|640740|640741|640742|640743|640744|640745|640746|640747|640748|640749|640750|640751|640752|640753|640754|640755|640756|640757|640758|640759|640760|640761|640762|640763|640764|640765|640766|640767|640768|640769|640770|640771|640772|640773|640774|640775|640776|640777|640778|640779|640780|640781|640782|640783|640784|640785|640786|640787|640788|640789|640790|640791|640792|640793|640794|640795|640796|640797|640798|640799|640800|640801|640802|640803|640804|640805|640806|640807|640808|640809|640810|640811|640812|640813|640814|640815|640816|640817|640818|640819|640820|640821|640822|640823|640824|640825|640826|640827|640828|640829|640830|640831|640832|640833|640834|640835|640836|640837|640838|640839|640840|640841|640842|640843|640844|640845|640846|640847|640848|640849|640850|640851|640852|640853|640854|640855|640856|640857|640858|640859|640860|640861|640862|640863|640864|640865|640866|640867|640868|640869|640870|640871|640872|640873|640874|640875|640876|640877|640878|640879|640880|640881|640882|640883|640884|640885|640886|640887|640888|640889|640890|640891|640892|640893|640894|640895|640896|640897|640898|640899|640900|640901|640902|640903|640904|640905|640906|640907|640908|640909|640910|640911|640912|640913|640914|640915|640916|640917|640918|640919|640920|640921|640922|640923|640924|640925|640926|640927|640928|640929|640930|640931|640932|640933|640934|640935|640936|640937|640938|640939|640940|640941|640942|640943|640944|640945|640946|640947|640948|640949|640950|640951|640952|640953|640954|640955|640956|640957|640958|640959|640960|640961|640962|640963|640964|640965|640966|640967|640968|640969|640970|640971|640972|640973|640974|640975|640976|640977|640978|640979|640980|640981|640982|640983|640984|640985|640986|640987|640988|640989|640990|640991|640992|652166|652213|652216|652221|652223|652227|652263|652265|652266|652288|652292|652297|652298|652301|652309|652311|652313|652367|652368|652414|652417|652420|652425|652428|652434|652435|652437|652445|652446|652454|652629|652652|652653|652654|652656|652660|652664|652670|652672|652684|656118|656119|666198|685310|685311|687924|687925|687926|687927|687929|687931|687932|687933|687935|687936|690024|690026|690027|690028|690029|693165|693166|693167|693169|693170|695555|695556|702251|713448|725004|730854|738554|738555|738556|738557|744684|744815|753224|753230|753233|753234|753235|753239|753240|753241|753243|753245|759989|759996|760133|760135|760138|760154|760163|768965|768970|768972|768973|768974|768983|768987|768989|768999|769003|769009|769011|775798|775845|775976|778062|784311|784317|784318|784319|784322|784329|784331|784333|784336|784344|784345|787758|788048|788052|789506|789511|789512|789514|789516|789686|791203|791204|791205|791206|791207|791208|791209|791210|791211|791212|791213|796719|811164|811171|811173|811175|811184|811190|811194|811195|811201|811209|811216|811228|815531|815533|815536|815538|815540|815542|815545|815551|815554|815555|820457|820458|820459|820460|820461|820462|820463|820464|820465|820466|820467|820468|820469|820470|820471|820472|820473|820474|820475|820476|820478|820479|820480|839411|839412|839413|839414|839415|839416|839417|839418|839419|839420|839421|839422|839423|839424|839425|839426|839427|839428|839429|839430|839431|839432|839433|839434|839435|839436|839437|839438|839439|839440|839441|839442|839443|839444|839445|839446|839447|839448|839449|839450|839451|839452|839453|839454|839455|839456|839457|839458|839459|839460|839461|839462|839463|839464|839465|839466|839467|839468|839469|839470|839471|839472|839473|839474|839475|839476|839477|839478|839479|839480|839481|839482|839483|839484|839485|839486|839487|839488|839489|839490|839491|839492|839493|839494|839495|839496|839497|839498|839499|839500|839501|839502|839503|839504|839505|839506|839507|839508|839509|839510|839511|839512|839513|839514|839515|839516|839517|839518|839519|839520|839521|839522|839523|839524|839525|839526|839527|839528|839529|839530|839531|839532|839533|839534|839535|839536|839537|839538|839539|839540|839541|839542|839543|839544|839545|839546|839547|839548|839549|839550|839551|839552|839553|839554|839555|839556|839557|839558|839559|839560|839561|839562|839563|839564|839565|839566|839567|839568|839569|839570|839571|839572|839573|839574|839575|839576|839577|839578|839579|839580|839581|839582|839583|839584|839585|839586|839587|839588|839589|839590|839591|839592|839593|839594|839595|839596|839597|839598|839599|839600|839601|839602|839603|839604|839605|839606|839607|839608|839609|839610|839611|839612|839613|839614|839615|839616|839617|839618|839619|839620|839621|839622|839623|839624|839625|839626|839627|839628|839629|839630|839631|839632|839633|839634|839635|839636|839637|839638|839639|839640|839641|839642|839643|839644|839645|839646|839647|839648|839649|839650|839651|839652|839653|839654|839655|839656|839657|839658|839659|839660|839661|839662|839663|839664|839665|839666|839667|839668|839669|839670|839671|839672|839673|839674|839675|839676|839677|839678|839679|839680|839681|839682|839683|839684|839685|839686|839687|839688|839689|839690|839691|839692|839693|851478|851480|851482|851484|851486|851488|851490|851492|851933|851935|851937|852448|852449|852454|852455|852460|852461|852466|852661|852663|852664|852665|852667|852671|852674|852675|852676|926492|926493|926494|926495|926496|926497|926498|926499|926500|926501|926502|926503|926504|926505|926506|926507|926508|926509|926510|926511|926512|926513|926514|926515|926516|926517|926518|926519|926520|926521|926522|926523|926524|926525|926526|926527|926528|926529|926530|926531|926532|926533|926534|926535|926536|926537|926538|926539|926540|926541|926542|926543|926544|926545|926546|926547|926548|926549|926550|926551|926552|926553|926554|926555|926556|926557|926558|926559|926560|926561|926562|926563|926564|926565|926566|926567|926568|926569|926570|926571|926572|926573|935952|935953|935954|935955|935956|935957|935958|935959|935960|935961|935962|935963|935964|935965|935966|935967|935968|935969|935970|935971|935972|935973|935974|935975|935976|935977|935978|935979|935980|935981|935982|935983|935984|935985|935986|935987|935988|935989|935990|935991|935992|935993|935994|935995|935996|935997|935998|935999|936000|936001|936002|936003|936004|936005|936006|936007|936008|936009|936010|936011|936012|936013|936014|936015|936016|936017|936018|936019|936020|936021|936022|936023|936024|936025|936026|936027|936028|936029|936030|936031|936032|936033|936034|936035|936036|936037|940246|940247|940248|940249|940250|940251|940252|940253|940254|940255|940256|940257|941024|941025|941026|941027|947822|947823|947824|947825|947826|947827|947828|947829|947830|947831|947832|947833|947834|947835|947836|947837|947838|947839|947840|947841|947842|947843|947844|947845|947846|947847|947848|947849|947850|947851|947852|947853|947854|947855|947856|947857|947858|947859|947860|947861|947862|947863|947864|947865|947866|947867|947868|947869|947870|947871|947872|947873|947874|947875|947876|947877|947878|947879|947880|947881|947882|947883|947884|947885|947886|947887|947888|947889|947890|947891|947892|947893|947894|947895|947896|947897|947898|947899|947900|947901|947902|947903|947904|947905|947906|947907|947908|947909|947910|947911|947912|947913|947914|947915|947916|947917|947918|956772|956773|956774|956775|956776|956777|956778|956779|956780|956781|956782|956783|956784|956785|956786|956787|956788|956789|956790|956791|956792|956793|956794|956795|956796|956797|956798|956799|956800|956801|956802|956803|956804|956805|956806|956807|956808|956809|956810|956811|956812|956813|956814|956815|956816|956817|956818|956819|960025|960026|960027|960028|960029|960777|960778|960779|960780|960781|962064", "text": "Colorectal cancer, susceptibility to, 12" }, { - "baseId": "48560|49852|222233|241266|241269|241285|241297|241316|241326|241341|241347|241355|241362|241420|241429|241431|241482|241513|241517|244749|244752|260013|390014|398544|398641|398653|398670|398671|398767|398820|399051|399093|399255|399399|399530|399543|408585|432713|462463|462480|462793|462796|462800|476360|476956|503662|526787|526935|527136|527193|527468|537658|611105", + "upstreamId": "48560|49852|222233|241266|241269|241285|241297|241316|241326|241341|241347|241355|241362|241420|241429|241431|241482|241513|241517|244749|244752|260013|390014|398544|398641|398653|398670|398671|398767|398820|399051|399093|399255|399399|399530|399543|408585|432713|462463|462480|462793|462796|462800|476360|476956|503662|526787|526935|527136|527193|527468|537658|611105", "text": "Facial dysmorphism, immunodeficiency, livedo, and short stature" }, { - "baseId": "48564|143196|792770", + "upstreamId": "48564|143196|792770", "text": "Osteopetrosis, autosomal recessive 8" }, { - "baseId": "48565|48566|237109|420146|438876|972799", + "upstreamId": "48565|48566|237109|420146|438876|972799", "text": "Mitochondrial DNA depletion syndrome 11" }, { - "baseId": "48573|214145|214146|214147|214148|439703|439704|439705|537471|538605", + "upstreamId": "48573|214145|214146|214147|214148|439703|439704|439705|537471|538605", "text": "Charcot-Marie-Tooth disease, axonal, type 2w" }, { - "baseId": "48592", + "upstreamId": "48592", "text": "STRA6-Related Disorder" }, { - "baseId": "48595", + "upstreamId": "48595", "text": "Autism, susceptibility to, 19" }, { - "baseId": "48597|48598|375834|376706|378927|378931|445938|506849|506866|508895|508896|508897|508898|512871|512872|512961", + "upstreamId": "48597|48598|375834|376706|378927|378931|445938|506849|506866|508895|508896|508897|508898|512871|512872|512961", "text": "Left ventricular noncompaction 7" }, { - "baseId": "48599", + "upstreamId": "48599", "text": "Focal T2 hyperintense basal ganglia lesion" }, { - "baseId": "48617|208670|208672|362163|362164|446252|552224|610404|610405|626282|788938|805113|805114|971144", + "upstreamId": "48617|208670|208672|362163|362164|446252|552224|610404|610405|626282|788938|805113|805114|971144", "text": "Primary autosomal recessive microcephaly 10" }, { - "baseId": "48664", + "upstreamId": "48664", "text": "Cowden syndrome 4" }, { - "baseId": "48689|538999|539000|622371|679584", + "upstreamId": "48689|538999|539000|622371|679584", "text": "Metaphyseal dysplasia with maxillary hypoplasia and brachydactyly" }, { - "baseId": "48690|48691|48692|237373|463957|464786|642983|652495|693635|693636|693637|703061|703063|703066|703067|730972|739453", + "upstreamId": "48690|48691|48692|237373|463957|464786|642983|652495|693635|693636|693637|703061|703063|703066|703067|730972|739453", "text": "Microphthalmia, isolated 8" }, { - "baseId": "48693|48694|48695|48696|538937|538938|654147", + "upstreamId": "48693|48694|48695|48696|538937|538938|654147", "text": "Urofacial syndrome 2" }, { - "baseId": "48698|204592|359832|578487|790972", + "upstreamId": "48698|204592|359832|578487|790972", "text": "Neuropathy, hereditary motor and sensory, Russe type" }, { - "baseId": "48727|48728|48729|51571|197755|197764|227462|227463|360976|426112|433140|445379|464936|514051|539060|573381|609338|618252|916563|919572|919574|919575|919576|919577|919578|920345", + "upstreamId": "48727|48728|48729|51571|197755|197764|227462|227463|360976|426112|433140|445379|464936|514051|539060|573381|609338|618252|916563|919572|919574|919575|919576|919577|919578|920345", "text": "Marfan lipodystrophy syndrome" }, { - "baseId": "48870|54366|312577|312600|312622|312651|312653|312687|312749|318564|318579|318580|318581|318594|318704|324719|324725|324740|324752|324767|324809|324825|325443|325467|325552|325565|325687|325690|325697|353170|480738|977246", + "upstreamId": "48870|54366|312577|312600|312622|312651|312653|312687|312749|318564|318579|318580|318581|318594|318704|324719|324725|324740|324752|324767|324809|324825|325443|325467|325552|325565|325687|325690|325697|353170|480738|977246", "text": "Noonan-like syndrome" }, { - "baseId": "48930", + "upstreamId": "48930", "text": "KRAS-related RASopathy" }, { - "baseId": "48983|360978|361092|581713|792733", + "upstreamId": "48983|360978|361092|581713|792733", "text": "Pectus excavatum" }, { - "baseId": "48983|514137|590047|590048", + "upstreamId": "48983|514137|590047|590048", "text": "Brachycephaly" }, { - "baseId": "49024|186247|361010|361013|514076|514078|514080|590084|645561|801197", + "upstreamId": "49024|186247|361010|361013|514076|514078|514080|590084|645561|801197", "text": "Cafe-au-lait spot" }, { - "baseId": "49024|203232|263246|263251|263289|263307|263367|263421|362234|514184|801159|801191|905852|905853|905854|966299|971562", + "upstreamId": "49024|203232|263246|263251|263289|263307|263367|263421|362234|514184|801159|801191|905852|905853|905854|966299|971562", "text": "Specific learning disability" }, { - "baseId": "49024|79397|205031|205755|205756|263388|263393|538627|550125|550227|553415|553417|581714|581715|610481|623598|679483|918185|918956|921254|921258|921260|965459|965500|970283|971286", + "upstreamId": "49024|79397|205031|205755|205756|263388|263393|538627|550125|550227|553415|553417|581714|581715|610481|623598|679483|918185|918956|921254|921258|921260|965459|965500|970283|971286", "text": "Intellectual disability, mild" }, { - "baseId": "49030|185546", + "upstreamId": "49030|185546", "text": "Embryonal rhabdomyosarcoma" }, { - "baseId": "49142", + "upstreamId": "49142", "text": "Abnormality of the sternum" }, { - "baseId": "49152", + "upstreamId": "49152", "text": "Abnormality of the aortic valve" }, { - "baseId": "49211", + "upstreamId": "49211", "text": "MAP2K1-Related Disorder" }, { - "baseId": "49251", + "upstreamId": "49251", "text": "MAP2K1-related RASopathy" }, { - "baseId": "49356|49357|451882", + "upstreamId": "49356|49357|451882", "text": "Emery-Dreifuss muscular dystrophy 7, autosomal dominant" }, { - "baseId": "49379|75599|167370|375408|409617|465411|466365|466368|466369|466375|466382|505381|529271|529916|530415|530416|530418|574028|644589|644590|644591|644592|644593|644594|644595|644596|652840|653133|703634|714862|714863|714864|726585|726587|726588|740128|744831|755104|770851|770855|776157|776338|779764|785259|816336|843748|843749|843750|843751|843752|843753|843754|927774|927775|927776|927777|937412|937413|937414|949367|957732|961844|961845", + "upstreamId": "49379|75599|167370|375408|409617|465411|466365|466368|466369|466375|466382|505381|529271|529916|530415|530416|530418|574028|644589|644590|644591|644592|644593|644594|644595|644596|652840|653133|703634|714862|714863|714864|726585|726587|726588|740128|744831|755104|770851|770855|776157|776338|779764|785259|816336|843748|843749|843750|843751|843752|843753|843754|927774|927775|927776|927777|937412|937413|937414|949367|957732|961844|961845", "text": "Immunodeficiency 8" }, { - "baseId": "49381|49382|463172|463174|463182|463309|527328|527331|527339|527867|565687|567033|567053|624462|641357|641358|641359|641360|641366|641367|641368|641369|641370|744912|769274|815927|840208|840209|840210|840215|840216|840217|840218|851521|926716|926717|926718|926719|936233|948135|948136|948137|956917|956920|961901", + "upstreamId": "49381|49382|463172|463174|463182|463309|527328|527331|527339|527867|565687|567033|567053|624462|641357|641358|641359|641360|641366|641367|641368|641369|641370|744912|769274|815927|840208|840209|840210|840215|840216|840217|840218|851521|926716|926717|926718|926719|936233|948135|948136|948137|956917|956920|961901", "text": "Lymphoproliferative syndrome 2" }, { - "baseId": "49388|49389", + "upstreamId": "49388|49389", "text": "Amelogenesis imperfecta, type 1E, with snow-capped teeth" }, { - "baseId": "49468|49469|237348|297853|297865|297880|297886|297893|300033|300064|300065|300077|300079|300080|304247|304262|304278|304286|304297|304301|304309|304323|304597|304640|304652|304675|329605|339854|339860|339863|339865|339867|339871|339887|339895|339904|345597|346936|346948|346960|346961|346964|353452", + "upstreamId": "49468|49469|237348|297853|297865|297880|297886|297893|300033|300064|300065|300077|300079|300080|304247|304262|304278|304286|304297|304301|304309|304323|304597|304640|304652|304675|329605|339854|339860|339863|339865|339867|339871|339887|339895|339904|345597|346936|346948|346960|346961|346964|353452", "text": "Acrodysostosis" }, { - "baseId": "49660|49660|77568|221757|231697", + "upstreamId": "49660|49660|77568|221757|231697", "text": "Charcot-Marie-Tooth disease, dominant intermediate G" }, { - "baseId": "49759|861645", + "upstreamId": "49759|861645", "text": "SPG11-related spastic paraplegia" }, { - "baseId": "49826|497248|589819|654985", + "upstreamId": "49826|497248|589819|654985", "text": "Deafness-infertility syndrome" }, { - "baseId": "49829|613906|613909|613910|613954|613992|653998|653999|800683|962876", + "upstreamId": "49829|613906|613909|613910|613954|613992|653998|653999|800683|962876", "text": "16p11.2 deletion syndrome" }, { - "baseId": "49842|207165|454710", + "upstreamId": "49842|207165|454710", "text": "Cutaneous malignant melanoma 9" }, { - "baseId": "49859|480538|480539|625868", + "upstreamId": "49859|480538|480539|625868", "text": "Microphthalmia, isolated, with coloboma 9" }, { - "baseId": "49877|453594|454044|454373|562287|651224|651281|698678|709506|744179|819503|829520|829521|829522|923621|932464", + "upstreamId": "49877|453594|454044|454373|562287|651224|651281|698678|709506|744179|819503|829520|829521|829522|923621|932464", "text": "Maple syrup urine disease, mild variant" }, { - "baseId": "49900|49922|152909|187250|237034|254152|254155|254157|254159|254160|254161|254163|361518|372380|444801|461106|461109|461112|461113|461115|461308|461310|461317|461322|461323|461326|461583|461587|461589|461600|461913|461915|526191|526199|526201|526207|526379|526380|526683|526697|564621|564624|565752|565764|567255|567258|567260|570639|570656|570662|640030|640031|640033|640040|640044|640045|640046|640048|640049|693022|693023|693024|693025|693026|693027|693028|693031|695512|695513|701756|701757|701761|724427|752667|778132|796572|820363|820364|820365|820366|838403|838404|838405|838406|838407|838408|838409|838410|838411|838412|838413|838414|838415|838416|838417|838418|838419|838420|838421|851839|852346|926226|926227|926228|926229|926230|926231|926232|926233|926234|926235|926236|926237|926238|935522|935523|935524|935525|935526|935527|935528|935529|935530|935531|935532|940995|940996|947446|947447|947448|947449|947450|947451|947452|947453|959987", + "upstreamId": "49900|49922|152909|187250|237034|254152|254155|254157|254159|254160|254161|254163|361518|372380|444801|461106|461109|461112|461113|461115|461308|461310|461317|461322|461323|461326|461583|461587|461589|461600|461913|461915|526191|526199|526201|526207|526379|526380|526683|526697|564621|564624|565752|565764|567255|567258|567260|570639|570656|570662|640030|640031|640033|640040|640044|640045|640046|640048|640049|693022|693023|693024|693025|693026|693027|693028|693031|695512|695513|701756|701757|701761|724427|752667|778132|796572|820363|820364|820365|820366|838403|838404|838405|838406|838407|838408|838409|838410|838411|838412|838413|838414|838415|838416|838417|838418|838419|838420|838421|851839|852346|926226|926227|926228|926229|926230|926231|926232|926233|926234|926235|926236|926237|926238|935522|935523|935524|935525|935526|935527|935528|935529|935530|935531|935532|940995|940996|947446|947447|947448|947449|947450|947451|947452|947453|959987", "text": "Myopathy with tubular aggregates" }, { - "baseId": "49900|49922|136636|136636|136636|152909|152909|187250|237034|237034|254152|254155|254157|254159|254160|254161|254163|361518|372380|444801|461105|461106|461109|461112|461113|461115|461115|461118|461120|461308|461310|461317|461322|461323|461326|461583|461587|461589|461591|461600|461610|461911|461913|461913|461915|526191|526197|526199|526201|526203|526207|526379|526380|526388|526683|526697|564617|564621|564624|564624|565728|565732|565739|565742|565752|565753|565754|565758|565764|567255|567256|567258|567260|567272|570635|570636|570639|570652|570656|570662|614358|640029|640030|640031|640032|640033|640034|640035|640036|640037|640038|640039|640040|640041|640042|640043|640044|640045|640046|640047|640048|640049|640050|652094|652546|693022|693023|693024|693025|693026|693027|693028|693031|695512|695513|701756|701757|701761|724427|752667|778132|796572|820363|820364|820365|820366|838403|838404|838405|838406|838407|838408|838409|838410|838411|838412|838413|838414|838415|838416|838417|838418|838419|838420|838421|851839|852346|926226|926227|926228|926229|926230|926231|926232|926233|926234|926235|926236|926237|926238|935522|935523|935524|935525|935526|935527|935528|935529|935530|935531|935532|940995|940996|947446|947447|947448|947449|947450|947451|947452|947453|959987|980467", + "upstreamId": "49900|49922|136636|136636|136636|152909|152909|187250|237034|237034|254152|254155|254157|254159|254160|254161|254163|361518|372380|444801|461105|461106|461109|461112|461113|461115|461115|461118|461120|461308|461310|461317|461322|461323|461326|461583|461587|461589|461591|461600|461610|461911|461913|461913|461915|526191|526197|526199|526201|526203|526207|526379|526380|526388|526683|526697|564617|564621|564624|564624|565728|565732|565739|565742|565752|565753|565754|565758|565764|567255|567256|567258|567260|567272|570635|570636|570639|570652|570656|570662|614358|640029|640030|640031|640032|640033|640034|640035|640036|640037|640038|640039|640040|640041|640042|640043|640044|640045|640046|640047|640048|640049|640050|652094|652546|693022|693023|693024|693025|693026|693027|693028|693031|695512|695513|701756|701757|701761|724427|752667|778132|796572|820363|820364|820365|820366|838403|838404|838405|838406|838407|838408|838409|838410|838411|838412|838413|838414|838415|838416|838417|838418|838419|838420|838421|851839|852346|926226|926227|926228|926229|926230|926231|926232|926233|926234|926235|926236|926237|926238|935522|935523|935524|935525|935526|935527|935528|935529|935530|935531|935532|940995|940996|947446|947447|947448|947449|947450|947451|947452|947453|959987|980467", "text": "Stormorken syndrome" }, { - "baseId": "49916|49917|49918|513594|798625", + "upstreamId": "49916|49917|49918|513594|798625", "text": "Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal dominant 6" }, { - "baseId": "49919|250766|250767|440722|451384|451388|451542|451557|451743|451745|451747|451783|518508|518512|518657|560898|560900|560909|561884|630413|630414|651007|651084|691191|691192|695152|747745|819266|826912|826913|826914|826915|826916|826917|826918|826919|922900|931552|931553|931554|931555|960489", + "upstreamId": "49919|250766|250767|440722|451384|451388|451542|451557|451743|451745|451747|451783|518508|518512|518657|560898|560900|560909|561884|630413|630414|651007|651084|691191|691192|695152|747745|819266|826912|826913|826914|826915|826916|826917|826918|826919|922900|931552|931553|931554|931555|960489", "text": "Welander distal myopathy" }, { - "baseId": "49920|49921|49922|49923|136636|152909|187250|237034|461105|461115|461118|461120|461591|461610|461911|526197|526203|526388|564617|564624|565728|565732|565739|565742|565753|565754|565758|567256|567272|570635|570636|570652|614358|640029|640032|640034|640035|640036|640037|640038|640039|640041|640042|640043|640047|640050|652094|652546|980467", + "upstreamId": "49920|49921|49922|49923|136636|152909|187250|237034|461105|461115|461118|461120|461591|461610|461911|526197|526203|526388|564617|564624|565728|565732|565739|565742|565753|565754|565758|567256|567272|570635|570636|570652|614358|640029|640032|640034|640035|640036|640037|640038|640039|640041|640042|640043|640047|640050|652094|652546|980467", "text": "Myopathy, tubular aggregate, 1" }, { - "baseId": "49924|49925|49927|49928|49929|97569|434631|626075|626076|626189|980172|980173", + "upstreamId": "49924|49925|49927|49928|49929|97569|434631|626075|626076|626189|980172|980173", "text": "Spastic paraplegia 46, autosomal recessive" }, { - "baseId": "49942|49975|132751|132752|137249|137269|139428|139436|150553|150761|151642|171099|171100", + "upstreamId": "49942|49975|132751|132752|137249|137269|139428|139436|150553|150761|151642|171099|171100", "text": "Colorectal adenoma" }, { - "baseId": "49960|136497|137276|394289|482603|482654|550666|550669|550671|550676", + "upstreamId": "49960|136497|137276|394289|482603|482654|550666|550669|550671|550676", "text": "Neoplasm of the liver" }, { - "baseId": "50035|50077|50084|50085|50090|51666|94666|95079|95170|95380|95490|95574|95856|96135|96447|96518|96572|96587|96718|96735|96857|171168|171169|171170", + "upstreamId": "50035|50077|50084|50085|50090|51666|94666|95079|95170|95380|95490|95574|95856|96135|96447|96518|96572|96587|96718|96735|96857|171168|171169|171170", "text": "Colorectal cancer, non-polyposis" }, { - "baseId": "50129", + "upstreamId": "50129", "text": "Primitive neuroectodermal tumor" }, { - "baseId": "50187", + "upstreamId": "50187", "text": "Tuberous sclerosis and lymphangiomyomatosis" }, { - "baseId": "50218|50227", + "upstreamId": "50218|50227", "text": "Gastrointestinal polyposis" }, { - "baseId": "50229|50231|50232|50233|50236|50237|50239|50240|50241|138765|138767|215302|215302|221459|221463|239368|239372|239375|239390|239407|239412|239417|239420|239431|239433|239437|239439|239442|251491|251492|251493|251495|251496|251497|251499|293512|293521|293522|293526|293533|293538|293539|293544|293554|293556|293562|293567|293568|293572|293573|293576|293580|294903|294904|294927|294932|294935|294941|294942|294943|294946|294948|294963|294970|294972|294981|294984|294985|294986|294995|294997|295030|298604|298605|298606|298612|298613|298632|298634|298642|298643|298647|298650|298651|298654|298658|298659|298660|298661|298662|298663|298670|298671|298672|298673|298674|298675|298691|298699|298700|353670|393992|394406|394415|394441|394452|394454|520014|520342|691579|807745|890731|890732|890733|890734|890735|890736|890737|890738|890739|890740|890741|890742|890743|890744|890745|890746|890747|890748|890749|890750|890751|890752|890753|890754|890755|890756|890757|890758|890759|890760|891799|918897", + "upstreamId": "50229|50231|50232|50233|50236|50237|50239|50240|50241|138765|138767|215302|215302|221459|221463|239368|239372|239375|239390|239407|239412|239417|239420|239431|239433|239437|239439|239442|251491|251492|251493|251495|251496|251497|251499|293512|293521|293522|293526|293533|293538|293539|293544|293554|293556|293562|293567|293568|293572|293573|293576|293580|294903|294904|294927|294932|294935|294941|294942|294943|294946|294948|294963|294970|294972|294981|294984|294985|294986|294995|294997|295030|298604|298605|298606|298612|298613|298632|298634|298642|298643|298647|298650|298651|298654|298658|298659|298660|298661|298662|298663|298670|298671|298672|298673|298674|298675|298691|298699|298700|353670|393992|394406|394415|394441|394452|394454|520014|520342|691579|807745|890731|890732|890733|890734|890735|890736|890737|890738|890739|890740|890741|890742|890743|890744|890745|890746|890747|890748|890749|890750|890751|890752|890753|890754|890755|890756|890757|890758|890759|890760|891799|918897", "text": "Idiopathic hypereosinophilic syndrome" }, { - "baseId": "50278|180168|239803", + "upstreamId": "50278|180168|239803", "text": "B Lymphoblastic Leukemia/Lymphoma with Hypodiploidy" }, { - "baseId": "50295", + "upstreamId": "50295", "text": "Birt-Hogg-Dub syndrome" }, { - "baseId": "50318|983770", + "upstreamId": "50318|983770", "text": "Mitochondrial complex III deficiency, nuclear type 5" }, { - "baseId": "51080|51081|51082|51083|51084|209072|209073|209075|209076|209077|215663|225806|227711|243898|260331|265026|265165|267206|275125|362749|378376|411396|422489|425236|446686|471614|471616|471898|471899|472163|481507|481508|486482|508588|514280|534835|534894|535015|535016|535022|535025|535360|536192|572515|572522|572523|573896|574745|574746|574749|578594|611452|611949|614508|622945|623593|650096|650097|650098|650099|650100|650101|653458|653464|653526|653535|653717|654153|672119|677472|706254|729629|774092|786856|786857|789702|792467|792468|792469|792470|802052|821510|822227|850117|850118|850119|850120|850121|850122|852521|860890|920034|929758|929759|929760|939617|939618|939619|940564|941311|951817|951818|951819|951820|963983|964616|964617|964618|964905|971209", + "upstreamId": "51080|51081|51082|51083|51084|209072|209073|209075|209076|209077|215663|225806|227711|243898|260331|265026|265165|267206|275125|362749|378376|411396|422489|425236|446686|471614|471616|471898|471899|472163|481507|481508|486482|508588|514280|534835|534894|535015|535016|535022|535025|535360|536192|572515|572522|572523|573896|574745|574746|574749|578594|611452|611949|614508|622945|623593|650096|650097|650098|650099|650100|650101|653458|653464|653526|653535|653717|654153|672119|677472|706254|729629|774092|786856|786857|789702|792467|792468|792469|792470|802052|821510|822227|850117|850118|850119|850120|850121|850122|852521|860890|920034|929758|929759|929760|939617|939618|939619|940564|941311|951817|951818|951819|951820|963983|964616|964617|964618|964905|971209", "text": "Neurodegeneration with brain iron accumulation 5" }, { - "baseId": "51085|51086|206561|253860", + "upstreamId": "51085|51086|206561|253860", "text": "Albinism, oculocutaneous, type VII" }, { - "baseId": "51095|53399|53400|53401|53406|178210|312347|312350|318236|324369|325066|565481|798995|867042|867043", + "upstreamId": "51095|53399|53400|53401|53406|178210|312347|312350|318236|324369|325066|565481|798995|867042|867043", "text": "Fatal infantile hypertonic myofibrillar myopathy" }, { - "baseId": "51095|56353|56430|56605|141530|177535|179133|188393|189935|196672|296809|301509|400363|497171|679364|679412", + "upstreamId": "51095|56353|56430|56605|141530|177535|179133|188393|189935|196672|296809|301509|400363|497171|679364|679412", "text": "Congestive heart failure" }, { - "baseId": "51100|51101|51102|51103|51104|51105|136728|136730|206771|249771|249772|364758|364760|364766|364776|364944|364947|364956|364958|364970|364979|405086|425344|442743|442744|447555|447569|447571|447717|447719|447725|447729|447800|447802|447806|447813|447814|447858|498413|498480|511249|514886|515512|515513|515568|515581|515583|515634|552041|556490|557122|557125|557128|557130|557179|557181|558361|558363|622859|627436|627437|627438|627439|627440|627441|627442|627443|627444|627445|627446|650515|650625|690516|758888|774473|789943|789944|818817|818934|823533|823534|823535|823536|823537|823538|823539|823540|823541|823542|823543|823544|823545|823546|823547|850753|921868|921869|930349|930350|930351|930352|930353|930354|930355|941782|952308|959545|960422", + "upstreamId": "51100|51101|51102|51103|51104|51105|136728|136730|206771|249771|249772|364758|364760|364766|364776|364944|364947|364956|364958|364970|364979|405086|425344|442743|442744|447555|447569|447571|447717|447719|447725|447729|447800|447802|447806|447813|447814|447858|498413|498480|511249|514886|515512|515513|515568|515581|515583|515634|552041|556490|557122|557125|557128|557130|557179|557181|558361|558363|622859|627436|627437|627438|627439|627440|627441|627442|627443|627444|627445|627446|650515|650625|690516|758888|774473|789943|789944|818817|818934|823533|823534|823535|823536|823537|823538|823539|823540|823541|823542|823543|823544|823545|823546|823547|850753|921868|921869|930349|930350|930351|930352|930353|930354|930355|941782|952308|959545|960422", "text": "Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type a, 11" }, { - "baseId": "51106|51107|221371|239118|393372|393433|393435|393436|393625|393809|451799|452192|452196|452204|452206|452308|452430|481390|518978|518991|519175|519180|519191|558850|558852|559387|559389|559391|561276|561278|561280|562587|562589|608986|631063|631064|631065|631066|631067|631068|631069|683568|686370|686371|686372|819355|827730|827731|827732|827733|827734|827735|827736|827737|827738|827739|827740|827741|827742|827743|923102|931844|931845|931846|940742|940743|943427", + "upstreamId": "51106|51107|221371|239118|393372|393433|393435|393436|393625|393809|451799|452192|452196|452204|452206|452308|452430|481390|518978|518991|519175|519180|519191|558850|558852|559387|559389|559391|561276|561278|561280|562587|562589|608986|631063|631064|631065|631066|631067|631068|631069|683568|686370|686371|686372|819355|827730|827731|827732|827733|827734|827735|827736|827737|827738|827739|827740|827741|827742|827743|923102|931844|931845|931846|940742|940743|943427", "text": "Charcot-Marie-Tooth disease, dominant intermediate F" }, { - "baseId": "51108|51109|165610|207992|207994|207996|243991|429447|462458|463188|463312|463319|527347|527349|527362|527868|527870|564991|565710|565712|565713|565715|565717|567055|567056|572005|611776|641372|641373|641374|641375|641376|641377|641378|641379|641380|652162|652338|702493|702494|725258|738853|769299|784465|791273|820437|840235|840236|840237|840238|840239|840240|840241|840242|840243|840244|840245|926725|926726|926727|936245|936246|936247|936248|936249|936250|936251|948144|948145|956927|956928|956929", + "upstreamId": "51108|51109|165610|207992|207994|207996|243991|429447|462458|463188|463312|463319|527347|527349|527362|527868|527870|564991|565710|565712|565713|565715|565717|567055|567056|572005|611776|641372|641373|641374|641375|641376|641377|641378|641379|641380|652162|652338|702493|702494|725258|738853|769299|784465|791273|820437|840235|840236|840237|840238|840239|840240|840241|840242|840243|840244|840245|926725|926726|926727|936245|936246|936247|936248|936249|936250|936251|948144|948145|956927|956928|956929", "text": "Temtamy syndrome" }, { - "baseId": "51108|432205|432206|432209|432210", + "upstreamId": "51108|432205|432206|432209|432210", "text": "Abnormality of the corpus callosum" }, { - "baseId": "51108", + "upstreamId": "51108", "text": "Colobomatous microphthalmia" }, { - "baseId": "51151|51152|450279|450280|450440|560756", + "upstreamId": "51151|51152|450279|450280|450440|560756", "text": "Cataract 39, multiple types" }, { - "baseId": "51182|51183|227502|227503|513290|552112|552113|919069|919070|961650|965967", + "upstreamId": "51182|51183|227502|227503|513290|552112|552113|919069|919070|961650|965967", "text": "Lissencephaly 5" }, { - "baseId": "51184|167412|205231|211767|243561|265656|265814|285543|288937|288967|288979|303125|303165|303174|309751|309760|311435|315004|315130|321064|322568|326827|332008|332014|332017|332035|336688|336694|338642|338986|340575|342933|344540|350562|350570|350576", + "upstreamId": "51184|167412|205231|211767|243561|265656|265814|285543|288937|288967|288979|303125|303165|303174|309751|309760|311435|315004|315130|321064|322568|326827|332008|332014|332017|332035|336688|336694|338642|338986|340575|342933|344540|350562|350570|350576", "text": "Spastic Paraplegia, Recessive" }, { - "baseId": "51184|402131", + "upstreamId": "51184|402131", "text": "Cerebral cortical atrophy" }, { - "baseId": "51184|59852|193488|327447|333616|488122|488126|488170|488177|488178|488179|488180|512780|800923|800924", + "upstreamId": "51184|59852|193488|327447|333616|488122|488126|488170|488177|488178|488179|488180|512780|800923|800924", "text": "Optic nerve hypoplasia" }, { - "baseId": "51184|360920|551420|577714|613539", + "upstreamId": "51184|360920|551420|577714|613539", "text": "Spastic ataxia" }, { - "baseId": "51185|51186|51186|51187|51187|51188|51188|51189|51189|51190|76342|76343|76344|76345|76346|76347|76347|188292|208708|208710|213932|390461|410840|410840|430376|430377|430378|430379|430380|430382|430383|430385|430386|430387|430388|430389|430389|430390|430391|430392|430392|430393|430395|430396|430400|430401|430403|430404|430405|430406|430410|430411|430412|430413|446303|469462|469467|469468|469469|469475|469476|469480|470503|470505|470509|470512|470520|470531|470533|471015|471019|471026|471031|471031|471034|471036|471038|471480|471484|471486|471490|471496|471499|471500|533655|533657|533661|533672|533675|533678|533684|533686|533689|533691|533696|533701|533702|533703|533703|533704|533705|533706|533707|533708|533710|533711|533712|533714|533715|533716|533717|533718|533719|533725|533731|533986|534219|534222|534230|534242|534246|534250|534252|534255|534259|534261|534264|534266|537009|548917|548919|548923|548928|548929|548929|548931|548933|548948|548948|548951|548957|548978|548980|548981|548981|548982|548983|548984|548988|548990|548991|548994|548996|548997|549003|549006|549011|549011|549015|549023|549027|549035|549040|549047|549054|549057|549059|549061|549066|549085|549086|549088|549213|549216|549217|549218|549220|549220|549222|549223|549223|549224|549229|549233|549236|549238|549239|549240|549242|549243|549244|549246|549247|549392|549393|549394|549395|549396|549397|549398|549399|549400|549401|549402|549403|549404|549405|549405|549406|549407|549408|549409|549409|549410|549411|549412|549413|549414|549415|571396|571397|571400|571404|572973|572975|572979|572980|573629|573630|573633|573634|573638|573644|573646|573648|573656|573663|573664|575134|575135|575136|575137|575138|614478|614479|614480|624688|648802|648803|648804|648805|648806|648807|648808|648809|648810|648811|648811|648812|648813|648814|648815|648816|648817|648817|648818|648819|648820|648821|648822|648823|648824|648825|648826|648827|648828|648829|648830|648831|648832|648833|648834|648835|648836|648837|648838|648839|648840|648841|648842|648843|648844|648845|648846|653131|653142|653224|653229|653563|653654|653655|705618|705619|717141|717143|717144|717145|728804|728806|728807|728809|728810|728811|728812|728813|728814|728815|731367|731368|731369|742532|742533|742534|742535|742536|742537|742538|742539|742540|742541|742542|742543|742544|742545|742546|742547|742548|745129|745321|745442|745443|757671|757672|757673|757674|757675|757676|757677|757678|757680|757681|757682|757683|757684|757685|757686|757687|757688|757689|757690|760697|760788|760964|760966|760969|773209|773211|773212|773213|773214|773215|773216|773217|773218|773220|773221|773222|773226|773227|773230|773231|773232|773235|773236|773238|773239|773240|773242|773243|773244|773247|773248|773249|773251|776668|776678|776704|776785|776789|776805|786432|786433|786436|786438|786439|786442|786443|786444|786445|786446|786447|786448|786452|786455|786456|786457|786459|786460|786461|786462|786463|788303|788345|788347|792003|821345|822281|848555|848556|848557|848558|848559|848560|848561|848562|848563|848564|848565|848566|848567|848568|848569|848570|848571|848572|848573|848574|848575|848576|848577|848578|848579|848580|848581|848582|848583|848584|848585|848586|848587|848588|848589|848590|848591|848592|848593|848594|848595|852912|906374|906380|929256|929257|929258|929259|929260|929261|929262|929263|939043|939044|939045|939046|939047|939048|939049|939050|939051|939052|939053|940513|940514|941255|951156|951157|951158|951159|951160|951161|951162|951163|951164|951165|951166|951167|951168|951169|951170|958874|958875|958876|958877|958878|958879|958880|958881|958882|958883|958884|958885|958886|958887|958888|958889|958890|958891|958892|958893|958894|958895|958896|958897|958897|958898|958899|958900|958901|958902|958903|958904|958905|958906|958907|958908|958909|958910|958911|958912|958913|958914|958915|958916|958917|960322|960323|960944|960945|960946|961985", + "upstreamId": "51185|51186|51186|51187|51187|51188|51188|51189|51189|51190|76342|76343|76344|76345|76346|76347|76347|188292|208708|208710|213932|390461|410840|410840|430376|430377|430378|430379|430380|430382|430383|430385|430386|430387|430388|430389|430389|430390|430391|430392|430392|430393|430395|430396|430400|430401|430403|430404|430405|430406|430410|430411|430412|430413|446303|469462|469467|469468|469469|469475|469476|469480|470503|470505|470509|470512|470520|470531|470533|471015|471019|471026|471031|471031|471034|471036|471038|471480|471484|471486|471490|471496|471499|471500|533655|533657|533661|533672|533675|533678|533684|533686|533689|533691|533696|533701|533702|533703|533703|533704|533705|533706|533707|533708|533710|533711|533712|533714|533715|533716|533717|533718|533719|533725|533731|533986|534219|534222|534230|534242|534246|534250|534252|534255|534259|534261|534264|534266|537009|548917|548919|548923|548928|548929|548929|548931|548933|548948|548948|548951|548957|548978|548980|548981|548981|548982|548983|548984|548988|548990|548991|548994|548996|548997|549003|549006|549011|549011|549015|549023|549027|549035|549040|549047|549054|549057|549059|549061|549066|549085|549086|549088|549213|549216|549217|549218|549220|549220|549222|549223|549223|549224|549229|549233|549236|549238|549239|549240|549242|549243|549244|549246|549247|549392|549393|549394|549395|549396|549397|549398|549399|549400|549401|549402|549403|549404|549405|549405|549406|549407|549408|549409|549409|549410|549411|549412|549413|549414|549415|571396|571397|571400|571404|572973|572975|572979|572980|573629|573630|573633|573634|573638|573644|573646|573648|573656|573663|573664|575134|575135|575136|575137|575138|614478|614479|614480|624688|648802|648803|648804|648805|648806|648807|648808|648809|648810|648811|648811|648812|648813|648814|648815|648816|648817|648817|648818|648819|648820|648821|648822|648823|648824|648825|648826|648827|648828|648829|648830|648831|648832|648833|648834|648835|648836|648837|648838|648839|648840|648841|648842|648843|648844|648845|648846|653131|653142|653224|653229|653563|653654|653655|705618|705619|717141|717143|717144|717145|728804|728806|728807|728809|728810|728811|728812|728813|728814|728815|731367|731368|731369|742532|742533|742534|742535|742536|742537|742538|742539|742540|742541|742542|742543|742544|742545|742546|742547|742548|745129|745321|745442|745443|757671|757672|757673|757674|757675|757676|757677|757678|757680|757681|757682|757683|757684|757685|757686|757687|757688|757689|757690|760697|760788|760964|760966|760969|773209|773211|773212|773213|773214|773215|773216|773217|773218|773220|773221|773222|773226|773227|773230|773231|773232|773235|773236|773238|773239|773240|773242|773243|773244|773247|773248|773249|773251|776668|776678|776704|776785|776789|776805|786432|786433|786436|786438|786439|786442|786443|786444|786445|786446|786447|786448|786452|786455|786456|786457|786459|786460|786461|786462|786463|788303|788345|788347|792003|821345|822281|848555|848556|848557|848558|848559|848560|848561|848562|848563|848564|848565|848566|848567|848568|848569|848570|848571|848572|848573|848574|848575|848576|848577|848578|848579|848580|848581|848582|848583|848584|848585|848586|848587|848588|848589|848590|848591|848592|848593|848594|848595|852912|906374|906380|929256|929257|929258|929259|929260|929261|929262|929263|939043|939044|939045|939046|939047|939048|939049|939050|939051|939052|939053|940513|940514|941255|951156|951157|951158|951159|951160|951161|951162|951163|951164|951165|951166|951167|951168|951169|951170|958874|958875|958876|958877|958878|958879|958880|958881|958882|958883|958884|958885|958886|958887|958888|958889|958890|958891|958892|958893|958894|958895|958896|958897|958897|958898|958899|958900|958901|958902|958903|958904|958905|958906|958907|958908|958909|958910|958911|958912|958913|958914|958915|958916|958917|960322|960323|960944|960945|960946|961985", "text": "Dyskeratosis congenita, autosomal recessive, 5" }, { - "baseId": "51186|51186|51187|51188|51189|76347|188291|188292|188294|208708|213930|213931|213932|247417|410840|430376|430377|430378|430379|430380|430382|430383|430385|430386|430387|430388|430389|430390|430391|430392|430393|430395|430396|430400|430401|430403|430404|430405|430406|430410|430411|430412|430413|469462|469467|469468|469469|469475|469476|469480|470503|470505|470509|470512|470520|470531|470533|471015|471019|471026|471031|471031|471034|471036|471038|471480|471484|471486|471490|471496|471499|471500|533655|533657|533661|533672|533675|533678|533684|533686|533689|533691|533696|533701|533702|533703|533704|533705|533706|533707|533708|533710|533711|533712|533714|533715|533716|533717|533718|533719|533725|533731|533986|534219|534222|534230|534242|534246|534250|534252|534255|534259|534261|534264|534266|537009|548929|548948|548981|549011|549220|549223|549405|549409|571396|571397|571400|571404|572973|572975|572979|572980|573629|573630|573633|573634|573638|573644|573646|573648|573656|573663|573664|575134|575135|575136|575137|575138|614478|614479|614480|624688|648802|648803|648804|648805|648806|648807|648808|648809|648810|648811|648812|648813|648814|648815|648816|648817|648818|648819|648819|648820|648821|648822|648823|648824|648825|648826|648827|648828|648829|648830|648831|648832|648833|648834|648835|648836|648837|648838|648839|648840|648841|648842|648843|648844|648845|648846|653131|653142|653224|653229|653563|653654|653655|705618|705619|717141|717143|717144|717145|728804|728806|728807|728809|728810|728811|728812|728813|728814|728815|731367|731368|731369|742532|742533|742534|742535|742536|742537|742538|742539|742540|742541|742542|742543|742544|742545|742546|742547|742548|745129|745321|745442|745443|757671|757672|757673|757674|757675|757676|757677|757678|757680|757681|757682|757683|757684|757685|757686|757687|757688|757689|757690|760697|760788|760964|760966|760969|773209|773211|773212|773213|773214|773215|773216|773217|773218|773220|773221|773222|773226|773227|773230|773231|773232|773235|773236|773238|773239|773240|773242|773243|773244|773247|773248|773249|773251|776668|776678|776704|776785|776789|776805|786432|786433|786436|786438|786439|786442|786443|786444|786445|786446|786447|786448|786452|786455|786456|786457|786459|786460|786461|786462|786463|788303|788345|788347|804868|821345|822281|848555|848556|848557|848558|848559|848560|848561|848562|848563|848564|848565|848566|848567|848568|848569|848570|848571|848572|848573|848574|848575|848576|848577|848578|848579|848580|848581|848582|848582|848583|848584|848585|848586|848587|848588|848589|848590|848591|848592|848593|848594|848595|852912|929256|929257|929258|929259|929260|929261|929262|929263|939043|939044|939045|939046|939047|939048|939049|939050|939051|939052|939053|940513|940514|941255|951156|951157|951158|951159|951160|951161|951162|951163|951164|951165|951166|951167|951168|951169|951170|958874|958875|958876|958877|958878|958879|958880|958881|958882|958883|958884|958885|958886|958887|958888|958889|958890|958891|958892|958893|958894|958895|958896|958897|958898|958899|958900|958901|958902|958903|958904|958905|958906|958907|958908|958909|958910|958911|958912|958913|958914|958915|958916|958917|960322|960323|960944|960945|960946|962184|965238|969618|971585", + "upstreamId": "51186|51186|51187|51188|51189|76347|188291|188292|188294|208708|213930|213931|213932|247417|410840|430376|430377|430378|430379|430380|430382|430383|430385|430386|430387|430388|430389|430390|430391|430392|430393|430395|430396|430400|430401|430403|430404|430405|430406|430410|430411|430412|430413|469462|469467|469468|469469|469475|469476|469480|470503|470505|470509|470512|470520|470531|470533|471015|471019|471026|471031|471031|471034|471036|471038|471480|471484|471486|471490|471496|471499|471500|533655|533657|533661|533672|533675|533678|533684|533686|533689|533691|533696|533701|533702|533703|533704|533705|533706|533707|533708|533710|533711|533712|533714|533715|533716|533717|533718|533719|533725|533731|533986|534219|534222|534230|534242|534246|534250|534252|534255|534259|534261|534264|534266|537009|548929|548948|548981|549011|549220|549223|549405|549409|571396|571397|571400|571404|572973|572975|572979|572980|573629|573630|573633|573634|573638|573644|573646|573648|573656|573663|573664|575134|575135|575136|575137|575138|614478|614479|614480|624688|648802|648803|648804|648805|648806|648807|648808|648809|648810|648811|648812|648813|648814|648815|648816|648817|648818|648819|648819|648820|648821|648822|648823|648824|648825|648826|648827|648828|648829|648830|648831|648832|648833|648834|648835|648836|648837|648838|648839|648840|648841|648842|648843|648844|648845|648846|653131|653142|653224|653229|653563|653654|653655|705618|705619|717141|717143|717144|717145|728804|728806|728807|728809|728810|728811|728812|728813|728814|728815|731367|731368|731369|742532|742533|742534|742535|742536|742537|742538|742539|742540|742541|742542|742543|742544|742545|742546|742547|742548|745129|745321|745442|745443|757671|757672|757673|757674|757675|757676|757677|757678|757680|757681|757682|757683|757684|757685|757686|757687|757688|757689|757690|760697|760788|760964|760966|760969|773209|773211|773212|773213|773214|773215|773216|773217|773218|773220|773221|773222|773226|773227|773230|773231|773232|773235|773236|773238|773239|773240|773242|773243|773244|773247|773248|773249|773251|776668|776678|776704|776785|776789|776805|786432|786433|786436|786438|786439|786442|786443|786444|786445|786446|786447|786448|786452|786455|786456|786457|786459|786460|786461|786462|786463|788303|788345|788347|804868|821345|822281|848555|848556|848557|848558|848559|848560|848561|848562|848563|848564|848565|848566|848567|848568|848569|848570|848571|848572|848573|848574|848575|848576|848577|848578|848579|848580|848581|848582|848582|848583|848584|848585|848586|848587|848588|848589|848590|848591|848592|848593|848594|848595|852912|929256|929257|929258|929259|929260|929261|929262|929263|939043|939044|939045|939046|939047|939048|939049|939050|939051|939052|939053|940513|940514|941255|951156|951157|951158|951159|951160|951161|951162|951163|951164|951165|951166|951167|951168|951169|951170|958874|958875|958876|958877|958878|958879|958880|958881|958882|958883|958884|958885|958886|958887|958888|958889|958890|958891|958892|958893|958894|958895|958896|958897|958898|958899|958900|958901|958902|958903|958904|958905|958906|958907|958908|958909|958910|958911|958912|958913|958914|958915|958916|958917|960322|960323|960944|960945|960946|962184|965238|969618|971585", "text": "Pulmonary fibrosis and/or bone marrow failure, telomere-related, 3" }, { - "baseId": "51193|51194|51195|51196|51197|51198|508727|615559|654100|654103|654104|654105|654106|654107|654108|654109|654110", + "upstreamId": "51193|51194|51195|51196|51197|51198|508727|615559|654100|654103|654104|654105|654106|654107|654108|654109|654110", "text": "Platelet-type bleeding disorder 15" }, { - "baseId": "51200|98568|251489|266485|267097|267280|268739|269058|269397|270198|272523|293475|293476|293478|293479|293480|293486|293491|293493|293494|293499|293507|293508|294872|294875|294888|294889|294890|294899|294900|294902|298547|298552|298560|298561|298564|298568|298569|298571|298572|298573|298574|298581|298585|298586|298590|298594|298599|298600|298618|298620|298621|298630|369115|490406|500997|563765|698542|748960|890699|890700|890701|890702|890703|890704|890705|890706|890707|890708|890709|890710|890711|890712|890713|890714|890715|890716|890717|890718|890719|890720|890721|890722|890723|890724|890725|890726|890727|890728|890729|890730", + "upstreamId": "51200|98568|251489|266485|267097|267280|268739|269058|269397|270198|272523|293475|293476|293478|293479|293480|293486|293491|293493|293494|293499|293507|293508|294872|294875|294888|294889|294890|294899|294900|294902|298547|298552|298560|298561|298564|298568|298569|298571|298572|298573|298574|298581|298585|298586|298590|298594|298599|298600|298618|298620|298621|298630|369115|490406|500997|563765|698542|748960|890699|890700|890701|890702|890703|890704|890705|890706|890707|890708|890709|890710|890711|890712|890713|890714|890715|890716|890717|890718|890719|890720|890721|890722|890723|890724|890725|890726|890727|890728|890729|890730", "text": "Qualitative or quantitative defects of beta-sarcoglycan" }, { - "baseId": "51215|256610|256611|256612|256613|256614|256615|256617|268010|269481|274819|330874|330878|330881|330882|330883|330892|330907|330910|330913|330915|330916|330917|330921|330923|330927|330928|330930|330931|330936|341171|341173|341180|341182|341183|341185|341192|341197|341198|341200|341201|341206|341207|341209|341211|341213|341215|346709|346712|346713|346716|346721|346727|346728|346734|346735|346737|346738|346747|346749|346750|346751|346752|347984|347985|347986|347990|347995|347999|348001|348014|348017|348019|348020|348028|348030|348036|348040|445947|548665|715911|727663|727664|727665|741319|741321|741323|741324|756407|785857|878995|878996|878997|878998|878999|879000|879001|879002|879003|879004|879005|879006|879007|879008|879009|879010|879011|879012|879013|879014|879015|879016|879017|879018|879019|879020|879021|879022|879023|879024|879025|879026|879027|879028|880639|880640|880641", + "upstreamId": "51215|256610|256611|256612|256613|256614|256615|256617|268010|269481|274819|330874|330878|330881|330882|330883|330892|330907|330910|330913|330915|330916|330917|330921|330923|330927|330928|330930|330931|330936|341171|341173|341180|341182|341183|341185|341192|341197|341198|341200|341201|341206|341207|341209|341211|341213|341215|346709|346712|346713|346716|346721|346727|346728|346734|346735|346737|346738|346747|346749|346750|346751|346752|347984|347985|347986|347990|347995|347999|348001|348014|348017|348019|348020|348028|348030|348036|348040|445947|548665|715911|727663|727664|727665|741319|741321|741323|741324|756407|785857|878995|878996|878997|878998|878999|879000|879001|879002|879003|879004|879005|879006|879007|879008|879009|879010|879011|879012|879013|879014|879015|879016|879017|879018|879019|879020|879021|879022|879023|879024|879025|879026|879027|879028|880639|880640|880641", "text": "Laryngo-onycho-cutaneous syndrome" }, { - "baseId": "51273|226148|540439|918616|920140", + "upstreamId": "51273|226148|540439|918616|920140", "text": "Myopathy, scapulohumeroperoneal" }, { - "baseId": "51363|51364|51365|51366|51367|51368|677322", + "upstreamId": "51363|51364|51365|51366|51367|51368|677322", "text": "Combined d-2- and l-2-hydroxyglutaric aciduria" }, { - "baseId": "51369|51370|226952|226953|226953|247115|390111|465591|466309|466311|466580|466583|529863|529864|529866|529869|529878|529882|529960|529962|529966|529967|530202|530397|568040|570050|570062|570067|614421|625911|644513|644514|644515|644516|644517|644518|644519|644520|644521|644522|644523|644524|644525|644526|644527|644528|644529|714820|726521|740048|740049|740050|740051|755049|770804|770806|770807|770813|785237|785238|785239|788045|843671|843672|843673|843674|843675|843676|843677|843678|843679|843680|843681|843682|843683|843684|843685|843686|843687|843688|843689|843690|927750|927751|927752|927753|927754|927755|927756|937393|937394|937395|937396|949336|949337|949338|949339|949340|949341|949342|949343|949344|957716|961967|964448", + "upstreamId": "51369|51370|226952|226953|226953|247115|390111|465591|466309|466311|466580|466583|529863|529864|529866|529869|529878|529882|529960|529962|529966|529967|530202|530397|568040|570050|570062|570067|614421|625911|644513|644514|644515|644516|644517|644518|644519|644520|644521|644522|644523|644524|644525|644526|644527|644528|644529|714820|726521|740048|740049|740050|740051|755049|770804|770806|770807|770813|785237|785238|785239|788045|843671|843672|843673|843674|843675|843676|843677|843678|843679|843680|843681|843682|843683|843684|843685|843686|843687|843688|843689|843690|927750|927751|927752|927753|927754|927755|927756|937393|937394|937395|937396|949336|949337|949338|949339|949340|949341|949342|949343|949344|957716|961967|964448", "text": "IL21R immunodeficiency" }, { - "baseId": "51396", + "upstreamId": "51396", "text": "Deafness, sensorineural, with neurologic features" }, { - "baseId": "51429|51431|51440|143093|339057|348271|352158|352159|352160|352795|352796|352797|446585|902885|902886|902887|902888|902889|902890|902891|903462", + "upstreamId": "51429|51431|51440|143093|339057|348271|352158|352159|352160|352795|352796|352797|446585|902885|902886|902887|902888|902889|902890|902891|903462", "text": "Endocardial fibroelastosis" }, { - "baseId": "51515|193009|672095", + "upstreamId": "51515|193009|672095", "text": "FBN1-Related Disorders" }, { - "baseId": "51634|177172|178306|214012|214013|214014|214015|214016|214017|214018|214019|214020|214021|214022|214023|214024|214025|214026|214027|214028|214029|214030|214031|214032|214033|214034|214035|214036|214037|214038|214039|214040|214041|214042|214043|214044|214045|214046|214047|214048|214049|214050|214051|214052|214053|214054", + "upstreamId": "51634|177172|178306|214012|214013|214014|214015|214016|214017|214018|214019|214020|214021|214022|214023|214024|214025|214026|214027|214028|214029|214030|214031|214032|214033|214034|214035|214036|214037|214038|214039|214040|214041|214042|214043|214044|214045|214046|214047|214048|214049|214050|214051|214052|214053|214054", "text": "Deoxygalactonojirimycin response" }, { - "baseId": "51643|51644|51645|51646|51647|51648|51650|51651|51652|51653|141298|152780|152781|210309|210310|210324|210334|210341|257314|257316|257324|259048|269659|271031|271733|273271|273422|273773|334790|334791|334796|334797|334800|334804|334808|334812|334813|334815|334819|334821|334822|344656|344669|344671|344672|344673|344674|344677|344685|344686|344688|344690|344692|344693|344701|344702|349635|349640|349645|349648|349651|349654|349655|349657|349658|349662|349667|349670|349672|349674|349678|349679|349681|350650|350651|350653|350654|350657|350659|350661|350663|350665|350668|350669|350671|350673|350674|350676|350677|350678|350680|350683|353581|491938|492576|493267|508047|533476|585063|585130|586838|587022|587857|589584|589729|684863|684864|689184|885797|885798|885799|885800|885801|885802|885803|885804|885805|885806|885807|885808|885809|885810|885811|885812|885813|885814|885815|885816|885817|885818|885819|885820|885821|885822|885823|885824|885825|885826|885827|885828|887424|887425|887426|887427", + "upstreamId": "51643|51644|51645|51646|51647|51648|51650|51651|51652|51653|141298|152780|152781|210309|210310|210324|210334|210341|257314|257316|257324|259048|269659|271031|271733|273271|273422|273773|334790|334791|334796|334797|334800|334804|334808|334812|334813|334815|334819|334821|334822|344656|344669|344671|344672|344673|344674|344677|344685|344686|344688|344690|344692|344693|344701|344702|349635|349640|349645|349648|349651|349654|349655|349657|349658|349662|349667|349670|349672|349674|349678|349679|349681|350650|350651|350653|350654|350657|350659|350661|350663|350665|350668|350669|350671|350673|350674|350676|350677|350678|350680|350683|353581|491938|492576|493267|508047|533476|585063|585130|586838|587022|587857|589584|589729|684863|684864|689184|885797|885798|885799|885800|885801|885802|885803|885804|885805|885806|885807|885808|885809|885810|885811|885812|885813|885814|885815|885816|885817|885818|885819|885820|885821|885822|885823|885824|885825|885826|885827|885828|887424|887425|887426|887427", "text": "Isolated Nonsyndromic Congenital Heart Disease" }, { - "baseId": "51661|54552|67638|77926|141708|225795|259021|276309|276310|276314|276317|276536|276945|276976|277085|313787|313794|313799|313800|313812|313813|313817|316673|316678|319980|319984|319986|319987|319988|320021|320022|320025|324153|326169|326170|326178|326190|326206|326214|327120|327127|327130|329620|329636|329643|329650|329654|329660|329663|329672|329675|330167|330174|339908|339921|339927|339929|339930|345653|345672|345676|345677|347000|347021|347026|350563|353057|353058|353249|481127", + "upstreamId": "51661|54552|67638|77926|141708|225795|259021|276309|276310|276314|276317|276536|276945|276976|277085|313787|313794|313799|313800|313812|313813|313817|316673|316678|319980|319984|319986|319987|319988|320021|320022|320025|324153|326169|326170|326178|326190|326206|326214|327120|327127|327130|329620|329636|329643|329650|329654|329660|329663|329672|329675|330167|330174|339908|339921|339927|339929|339930|345653|345672|345676|345677|347000|347021|347026|350563|353057|353058|353249|481127", "text": "Familial atrial fibrillation" }, { - "baseId": "51710|51755|171133|174776|179192", + "upstreamId": "51710|51755|171133|174776|179192", "text": "MYBPC3-Related Disorders" }, { - "baseId": "51720|54894|54903|172501|179136|302201|302204|302207|302210|302214|302217|302218|302225|305395|305441|305446|305448|305449|305450|305452|310209|310230|310235|310322|310359|442590", + "upstreamId": "51720|54894|54903|172501|179136|302201|302204|302207|302210|302214|302217|302218|302225|305395|305441|305446|305448|305449|305450|305452|310209|310230|310235|310322|310359|442590", "text": "Wolff-Parkinson-White syndrome" }, { - "baseId": "51796|51841|224525|858248", + "upstreamId": "51796|51841|224525|858248", "text": "Paroxysmal atrial fibrillation" }, { - "baseId": "51983|53540|54200|56467|56533|57079|240750|552686|679394", + "upstreamId": "51983|53540|54200|56467|56533|57079|240750|552686|679394", "text": "Premature ventricular contraction" }, { - "baseId": "52056|52082|136656|136657|136658|136659|136660|136661|136662|136663|136664|136665|136666|136667|136668|136669|136670|136671|136672|136673|136674|136675|136676|136677|136678|136679|136680|136681|136682|136683|136684|136685|136686|136687|171746|171747|198165", + "upstreamId": "52056|52082|136656|136657|136658|136659|136660|136661|136662|136663|136664|136665|136666|136667|136668|136669|136670|136671|136672|136673|136674|136675|136676|136677|136678|136679|136680|136681|136682|136683|136684|136685|136686|136687|171746|171747|198165", "text": "Familial cardiomyopathy" }, { - "baseId": "52101|52119|179712|186460|189951|224471|320364|320376|320380|328973|328987|328990|335627|335628|335649|337484|353295", + "upstreamId": "52101|52119|179712|186460|189951|224471|320364|320376|320380|328973|328987|328990|335627|335628|335649|337484|353295", "text": "Scapuloperoneal myopathy" }, { - "baseId": "52138|550125", + "upstreamId": "52138|550125", "text": "Ebstein anomaly of the tricuspid valve" }, { - "baseId": "52162|52199|175456|179576|328979|464003|622423|622424|626226", + "upstreamId": "52162|52199|175456|179576|328979|464003|622423|622424|626226", "text": "MYH7-Related Disorders" }, { - "baseId": "52388|52400|52458|52469|52470|52499|175522|176880|178187|231427|546607|620421|620422|620837", + "upstreamId": "52388|52400|52458|52469|52470|52499|175522|176880|178187|231427|546607|620421|620422|620837", "text": "MYO7A-Related Disorders" }, { - "baseId": "52751|52754|53059|176596|209906|209931|209933|209941|303340|303342|303359|306689|306717|306729|306752|306756|311559|311572|311575|311577|311596|311730", + "upstreamId": "52751|52754|53059|176596|209906|209931|209933|209941|303340|303342|303359|306689|306717|306729|306752|306756|311559|311572|311575|311577|311596|311730", "text": "Cutis laxa, autosomal dominant" }, { - "baseId": "52776|52778|52780|174084|174266|229605|276776|276786|276789|277042|277056|277061|277062|277074|277618|277644|277648|277682|277773|295695|296825|297461|301338|301342|301378|301380|301529|302594|302601|302624|302626|302958|303467|303469|303470|305956|305958|306872|306885|306886|310679|310696|311719|311744|311745|311765|311776|311777|311802|311804|311807|311808|353811|353820", + "upstreamId": "52776|52778|52780|174084|174266|229605|276776|276786|276789|277042|277056|277061|277062|277074|277618|277644|277648|277682|277773|295695|296825|297461|301338|301342|301378|301380|301529|302594|302601|302624|302626|302958|303467|303469|303470|305956|305958|306872|306885|306886|310679|310696|311719|311744|311745|311765|311776|311777|311802|311804|311807|311808|353811|353820", "text": "Nonsyndromic Hearing Loss, Mixed" }, { - "baseId": "52836", + "upstreamId": "52836", "text": "TNNT2-Related Cardiomyopathy" }, { - "baseId": "52844|55764|56038|56684|56803|56978|78464|173316|173342|188401|189319|198532", + "upstreamId": "52844|55764|56038|56684|56803|56978|78464|173316|173342|188401|189319|198532", "text": "Supraventricular tachycardia" }, { - "baseId": "52998|54768", + "upstreamId": "52998|54768", "text": "Dilated cardiomyopathy with left ventricular noncompaction" }, { - "baseId": "53080|172928|187391|187393|187394", + "upstreamId": "53080|172928|187391|187393|187394", "text": "Familial hypertrophic cardiomyopathy 23" }, { - "baseId": "53186|56440|78495", + "upstreamId": "53186|56440|78495", "text": "Familial dilated cardiomyopathy and peripheral neuropathy" }, { - "baseId": "53320|53321|53325|53327|176924|178142|181536|185765|248693|248694|248695|248696|248697|248698|248699|275973|275974|275979|275984|275985|275990|275991|275992|275993|276005|276006|276011|276018|276019|276020|276023|276024|276029|276030|276031|276037|276052|276053|276056|276186|276188|276189|276198|276199|276201|276202|276204|276205|276221|276222|276230|276231|276234|276235|276236|276237|276244|276246|276247|276248|276249|276251|276252|276254|276255|276256|276257|276261|276262|276263|276264|276266|276271|276272|276308|276316|276323|276330|276331|276335|276336|276337|276339|276345|276364|276379|276383|276384|276385|276388|276393|276394|276395|276396|276397|276398|276406|276408|276409|276410|276434|276435|276437|276446|276447|276450|276453|276454|276457|276458|276459|276460|276461|276462|276463|276478|276479|276480|276483|276489|276491|276492|276493|276494|276503|276508|276513|276517|276524|276525|276526|276527|276533|276537|276549|276563|276564|276578|353050|438861|439303|509057|509058|509059|509060|614554|682205|682206|682207|682208|682324|682325|682326|682345|696006|706602|718118|731600|731602|789823|789824|857416|857417|857418|857419|857420|862015|862016|862017|862018|862019|862020|862021|862022|862023|862024|862025|862026|862027|862028|862029|862030|862031|862032|862033|862034|862035|862036|862037|862038|862039|862040|862041|862042|862043|862044|862045|862046|862047|862048|862049|862050|862051|862052|862053|862054|862055|862056|862057|862058|862059|862060|862061|862062|862063|862064|862065|862066|862067|862068|862069|862070|862071|862072|862073|862074|862075|862076|862077", + "upstreamId": "53320|53321|53325|53327|176924|178142|181536|185765|248693|248694|248695|248696|248697|248698|248699|275973|275974|275979|275984|275985|275990|275991|275992|275993|276005|276006|276011|276018|276019|276020|276023|276024|276029|276030|276031|276037|276052|276053|276056|276186|276188|276189|276198|276199|276201|276202|276204|276205|276221|276222|276230|276231|276234|276235|276236|276237|276244|276246|276247|276248|276249|276251|276252|276254|276255|276256|276257|276261|276262|276263|276264|276266|276271|276272|276308|276316|276323|276330|276331|276335|276336|276337|276339|276345|276364|276379|276383|276384|276385|276388|276393|276394|276395|276396|276397|276398|276406|276408|276409|276410|276434|276435|276437|276446|276447|276450|276453|276454|276457|276458|276459|276460|276461|276462|276463|276478|276479|276480|276483|276489|276491|276492|276493|276494|276503|276508|276513|276517|276524|276525|276526|276527|276533|276537|276549|276563|276564|276578|353050|438861|439303|509057|509058|509059|509060|614554|682205|682206|682207|682208|682324|682325|682326|682345|696006|706602|718118|731600|731602|789823|789824|857416|857417|857418|857419|857420|862015|862016|862017|862018|862019|862020|862021|862022|862023|862024|862025|862026|862027|862028|862029|862030|862031|862032|862033|862034|862035|862036|862037|862038|862039|862040|862041|862042|862043|862044|862045|862046|862047|862048|862049|862050|862051|862052|862053|862054|862055|862056|862057|862058|862059|862060|862061|862062|862063|862064|862065|862066|862067|862068|862069|862070|862071|862072|862073|862074|862075|862076|862077", "text": "Neural tube defect" }, { - "baseId": "53320|53321|53325|53327|275991|276029|276056|276188|276237|276249|276254|276255|276264|276266|276271|276272|276308|276330|276345|276410|276434|276459|276513|276524|276578|353050", + "upstreamId": "53320|53321|53325|53327|275991|276029|276056|276188|276237|276249|276254|276255|276264|276266|276271|276272|276308|276330|276345|276410|276434|276459|276513|276524|276578|353050", "text": "Caudal dysgenesis syndrome" }, { - "baseId": "53386", + "upstreamId": "53386", "text": "ACTA2-Related Disorders" }, { - "baseId": "53440|284793|353560", + "upstreamId": "53440|284793|353560", "text": "Scapuloperoneal weakness" }, { - "baseId": "53506|53508|53509|53510|53513|53514|53515|53516|53517|53521|53523|53524|53527|53528|53532|53533|53534|53535|53537|53538|53540|53541|53542|53543|53544|53545|53546|53547|53548|53549|53550|53551|53552|53553|53554|53556|53560|53562|53563|53564|53565|53566|53567|53568|53569|53570|53571|53572|53573|53574|53575|53577|53578|53579|53580|59492|59493|141769|176848|176849|176853|176856|176858|178202|178203|178204|178217|178219|178221|178222|178223|178224|178225|178226|178227|178228|178229|178259|178545|178547|189788|189790|189798|189801|189805|191535|194052|209864|209865|209867|209870|209873|209878|209879|209882|209884|209886|209890|209891|209896|209898|209900|209903|224309|224311|226789|231310|231354|231358|231362|231363|231410|231411|231414|231415|239871|239873|239874|258424|258435|368291|368657|370076|395019|395020|395023|395024|395027|395187|395193|395358|395360|395364|395645|395648|395649|395651|406791|415018|425655|425656|443846|443850|443852|455155|455157|455291|455298|455781|455798|455799|456035|456038|456039|456042|481127|497905|501079|501082|501338|508810|508811|508812|508813|508814|508815|509765|509767|509771|509774|509776|509778|521306|521313|521317|521320|521328|521334|521607|521609|521613|521615|521687|521689|521691|521693|521696|521945|521947|521950|521951|521954|521955|521957|560538|560540|560542|560544|563321|563323|565321|565328|565336|565340|609612|623083|626154|634496|634497|634498|634499|634500|634501|634502|634503|634504|634505|634506|634507|634508|634509|634510|634511|651576|683754|686782|686784|691899|765438|765440|799434|819642|831421|831422|831423|831424|831425|831426|831427|831428|831429|831430|831431|831432|831433|831434|831435|831436|831437|831438|831439|831440|831441|831442|831443|831444|831445|831446|831447|831448|831449|831450|831451|831452|831453|920219|920220|924223|924224|924225|924226|924227|933128|933129|933130|933131|933132|933133|933134|933135|933136|933137|933138|933139|933140|940026|940027|940831|940832|944854|944855|944856|944857|944858|944859|944860|954326|954327|954328|954329|954330|981514", + "upstreamId": "53506|53508|53509|53510|53513|53514|53515|53516|53517|53521|53523|53524|53527|53528|53532|53533|53534|53535|53537|53538|53540|53541|53542|53543|53544|53545|53546|53547|53548|53549|53550|53551|53552|53553|53554|53556|53560|53562|53563|53564|53565|53566|53567|53568|53569|53570|53571|53572|53573|53574|53575|53577|53578|53579|53580|59492|59493|141769|176848|176849|176853|176856|176858|178202|178203|178204|178217|178219|178221|178222|178223|178224|178225|178226|178227|178228|178229|178259|178545|178547|189788|189790|189798|189801|189805|191535|194052|209864|209865|209867|209870|209873|209878|209879|209882|209884|209886|209890|209891|209896|209898|209900|209903|224309|224311|226789|231310|231354|231358|231362|231363|231410|231411|231414|231415|239871|239873|239874|258424|258435|368291|368657|370076|395019|395020|395023|395024|395027|395187|395193|395358|395360|395364|395645|395648|395649|395651|406791|415018|425655|425656|443846|443850|443852|455155|455157|455291|455298|455781|455798|455799|456035|456038|456039|456042|481127|497905|501079|501082|501338|508810|508811|508812|508813|508814|508815|509765|509767|509771|509774|509776|509778|521306|521313|521317|521320|521328|521334|521607|521609|521613|521615|521687|521689|521691|521693|521696|521945|521947|521950|521951|521954|521955|521957|560538|560540|560542|560544|563321|563323|565321|565328|565336|565340|609612|623083|626154|634496|634497|634498|634499|634500|634501|634502|634503|634504|634505|634506|634507|634508|634509|634510|634511|651576|683754|686782|686784|691899|765438|765440|799434|819642|831421|831422|831423|831424|831425|831426|831427|831428|831429|831430|831431|831432|831433|831434|831435|831436|831437|831438|831439|831440|831441|831442|831443|831444|831445|831446|831447|831448|831449|831450|831451|831452|831453|920219|920220|924223|924224|924225|924226|924227|933128|933129|933130|933131|933132|933133|933134|933135|933136|933137|933138|933139|933140|940026|940027|940831|940832|944854|944855|944856|944857|944858|944859|944860|954326|954327|954328|954329|954330|981514", "text": "Dilated cardiomyopathy 1JJ" }, { - "baseId": "53814|244523|268997|272211|277216|277906|278016|280737|282123|282137|282192|305882|309947|315140|315160|315209|315217|315221|315300|342546|342554|353066", + "upstreamId": "53814|244523|268997|272211|277216|277906|278016|280737|282123|282137|282192|305882|309947|315140|315160|315209|315217|315221|315300|342546|342554|353066", "text": "Charcot-Marie-Tooth, Intermediate" }, { - "baseId": "53818|171083|171185|540614|540615", + "upstreamId": "53818|171083|171185|540614|540615", "text": "Congenital aneurysm of ascending aorta" }, { - "baseId": "53818", + "upstreamId": "53818", "text": "Dilatation of the thoracic aorta" }, { - "baseId": "53818", + "upstreamId": "53818", "text": "Thoracic aortic dissection" }, { - "baseId": "54023", + "upstreamId": "54023", "text": "DSP-related arrhythmogenic cardiomyopathy" }, { - "baseId": "54098|77203|171102|360852|360853|513891|513948", + "upstreamId": "54098|77203|171102|360852|360853|513891|513948", "text": "Palmoplantar blistering" }, { - "baseId": "54098|77203|171102|513948", + "upstreamId": "54098|77203|171102|513948", "text": "Skin fragility with non-scarring blistering" }, { - "baseId": "54106|189307|189921|306649|310846|310847|316366|316595|316596|316597|316605|316606|316607|567976", + "upstreamId": "54106|189307|189921|306649|310846|310847|316366|316595|316596|316597|316605|316606|316607|567976", "text": "Amyloidosis" }, { - "baseId": "54134|167520|167521|167522|173858|359032|359033|359034", + "upstreamId": "54134|167520|167521|167522|173858|359032|359033|359034", "text": "Cardiomyopathy, dilated, with woolly hair, keratoderma, and tooth agenesis" }, { - "baseId": "54202|679379", + "upstreamId": "54202|679379", "text": "Family history of cardiomyopathy" }, { - "baseId": "54291", + "upstreamId": "54291", "text": "cetuximab response - Dosage" }, { - "baseId": "54291", + "upstreamId": "54291", "text": "panitumumab response - Dosage" }, { - "baseId": "54381|54382|54383|81088|173573|173574|173578|173709|173712|173714|173715|173718|181418|191802|214405|214406|229286|229290|229293|229294|229295|270875|295686|297502|297513|301380|301553|301554|301561|301578|438303|443695|454665|454670|454672|454746|454761|454764|455210|455215|455217|455226|455233|455477|455489|455498|455512|496385|496801|513276|520821|520822|520827|520836|521067|521070|521087|521216|521222|521223|521225|521229|521231|521233|521269|521271|521279|521285|538984|560175|560177|560284|560286|560288|560290|560292|562894|562898|562901|564862|564863|564864|564865|564870|584463|614130|633524|633525|633526|633527|633528|633529|633530|633531|633532|633533|633534|633535|633536|633537|633538|633539|633540|633541|633542|633543|698878|709681|721262|749277|749278|764930|764931|775018|777433|779083|782193|789116|801810|819562|830402|830403|830404|830405|830406|830407|830408|830409|830410|830411|830412|830413|830414|830415|830416|830417|830418|830419|830420|830421|893131|923904|923905|923906|923907|923908|923909|923910|923911|923912|923913|923914|923915|932748|932749|932750|932751|932752|944433|944434|944435|944436|944437|944439|944440|954062|954063|954064|954065|954066|954067", + "upstreamId": "54381|54382|54383|81088|173573|173574|173578|173709|173712|173714|173715|173718|181418|191802|214405|214406|229286|229290|229293|229294|229295|270875|295686|297502|297513|301380|301553|301554|301561|301578|438303|443695|454665|454670|454672|454746|454761|454764|455210|455215|455217|455226|455233|455477|455489|455498|455512|496385|496801|513276|520821|520822|520827|520836|521067|521070|521087|521216|521222|521223|521225|521229|521231|521233|521269|521271|521279|521285|538984|560175|560177|560284|560286|560288|560290|560292|562894|562898|562901|564862|564863|564864|564865|564870|584463|614130|633524|633525|633526|633527|633528|633529|633530|633531|633532|633533|633534|633535|633536|633537|633538|633539|633540|633541|633542|633543|698878|709681|721262|749277|749278|764930|764931|775018|777433|779083|782193|789116|801810|819562|830402|830403|830404|830405|830406|830407|830408|830409|830410|830411|830412|830413|830414|830415|830416|830417|830418|830419|830420|830421|893131|923904|923905|923906|923907|923908|923909|923910|923911|923912|923913|923914|923915|932748|932749|932750|932751|932752|944433|944434|944435|944436|944437|944439|944440|954062|954063|954064|954065|954066|954067", "text": "Seizures, cortical blindness, and microcephaly syndrome" }, { - "baseId": "54481|54482|54484|54486|54489|54490|54491|54492|54496|54497|54498|54499|54501|54502|54503|54505|54506|54507|54508|54509|89105|175072|175073|175074|175075|175076|175081|175082|175082|175083|175086|175090|175091|175348|175351|175352|175354|175359|175361|175366|229977|229980|229983|229990|229993|229994|229999|230001|230004|237610|273542|312810|312811|312812|312818|312829|312830|312835|312839|312841|312846|312851|312852|312853|312857|318828|318835|318836|318859|318870|318882|318883|318889|318898|324933|324943|324948|324959|324960|324961|324966|324969|324970|324971|324978|324982|324992|325005|325006|325011|325783|325803|325813|325818|325819|325820|325823|325828|325856|325862|325864|325867|325869|325870|325874|325878|389239|389963|404795|421833|489962|493527|553262|553263|553264|610568|615812|654629|654630|654637|752490|802076|805095|859843|867348|867349|867350|867351|867352|867353|867354|867355|867356|867357|867358|867359|867360|867361|867362|867363|867364|867365|867366|867367|867368|867369|867370|867371|867372|867373|867374|867375|867376|867377|867378|867379", + "upstreamId": "54481|54482|54484|54486|54489|54490|54491|54492|54496|54497|54498|54499|54501|54502|54503|54505|54506|54507|54508|54509|89105|175072|175073|175074|175075|175076|175081|175082|175082|175083|175086|175090|175091|175348|175351|175352|175354|175359|175361|175366|229977|229980|229983|229990|229993|229994|229999|230001|230004|237610|273542|312810|312811|312812|312818|312829|312830|312835|312839|312841|312846|312851|312852|312853|312857|318828|318835|318836|318859|318870|318882|318883|318889|318898|324933|324943|324948|324959|324960|324961|324966|324969|324970|324971|324978|324982|324992|325005|325006|325011|325783|325803|325813|325818|325819|325820|325823|325828|325856|325862|325864|325867|325869|325870|325874|325878|389239|389963|404795|421833|489962|493527|553262|553263|553264|610568|615812|654629|654630|654637|752490|802076|805095|859843|867348|867349|867350|867351|867352|867353|867354|867355|867356|867357|867358|867359|867360|867361|867362|867363|867364|867365|867366|867367|867368|867369|867370|867371|867372|867373|867374|867375|867376|867377|867378|867379", "text": "Deafness, autosomal recessive 21" }, { - "baseId": "54790|54796|54797|54801|54804|140104|140107|175330|198349|198350|323868|503859|508855|512843|512845", + "upstreamId": "54790|54796|54797|54801|54804|140104|140107|175330|198349|198350|323868|503859|508855|512843|512845", "text": "Congenital total pulmonary venous return anomaly" }, { - "baseId": "54790|54792|54793|54795|54796|54798|54800|54804|175049|175051|175330|189882|189885|196016|198335|198339|198345|198346|198347|198348|198351|198352|229953|258679|317236|397731|460328|460388|460682|460685|461152|495460|510249|511101|525611|525613|525816|525819|525949|525952|564054|564918|564921|566613|566615|566620|639305|639306|639307|639308|639309|639310|652346|837474|837475|837476|837477|837478|837479|851399|925976|935234|940187|940973|947132|956272|956273|960734", + "upstreamId": "54790|54792|54793|54795|54796|54798|54800|54804|175049|175051|175330|189882|189885|196016|198335|198339|198345|198346|198347|198348|198351|198352|229953|258679|317236|397731|460328|460388|460682|460685|461152|495460|510249|511101|525611|525613|525816|525819|525949|525952|564054|564918|564921|566613|566615|566620|639305|639306|639307|639308|639309|639310|652346|837474|837475|837476|837477|837478|837479|851399|925976|935234|940187|940973|947132|956272|956273|960734", "text": "ANKRD1-related dilated cardiomyopathy" }, { - "baseId": "54890", + "upstreamId": "54890", "text": "PRKAG2-Related Disorders" }, { - "baseId": "55056|535235|535236", + "upstreamId": "55056|535235|535236", "text": "Non-Syndromic Hereditary Hearing Impairment" }, { - "baseId": "55205|204061|205216|205458|247331|260847|265019|360151|420147|427753|428945|495885|511271|512539|521026|535230|540496|581716|590972|590973|590974|590975|590976|590977|590978|590979|590980|590981|590982|590983|676961|714860|740123|805074|805220|971479|972619|972620|972621|972622|972623|972624|972625|972626|972627|972628|972629|972630|972631|972632|972633|972634|972635|972636|972637|972638|972639|972640|972641|972642|972643|972644|972645|972646|972647|972648|972649|972650|972651|972652|972653|972654|972655|972656|972657|972658|972659|972660|972661|972662|972663|972664|972665|972666|972667|972668|972669|972670|972671|972672|972673|972674|972675|972676|972677|972678|972679|972680|972681|972682|972683|972684|972685|972686|972687|972688|972689|972690|972691|972692|972693|972694|972695|972696|972697|972698|972699|972700|972701|972702|972703|972704|972705|972706|972707|972708", + "upstreamId": "55205|204061|205216|205458|247331|260847|265019|360151|420147|427753|428945|495885|511271|512539|521026|535230|540496|581716|590972|590973|590974|590975|590976|590977|590978|590979|590980|590981|590982|590983|676961|714860|740123|805074|805220|971479|972619|972620|972621|972622|972623|972624|972625|972626|972627|972628|972629|972630|972631|972632|972633|972634|972635|972636|972637|972638|972639|972640|972641|972642|972643|972644|972645|972646|972647|972648|972649|972650|972651|972652|972653|972654|972655|972656|972657|972658|972659|972660|972661|972662|972663|972664|972665|972666|972667|972668|972669|972670|972671|972672|972673|972674|972675|972676|972677|972678|972679|972680|972681|972682|972683|972684|972685|972686|972687|972688|972689|972690|972691|972692|972693|972694|972695|972696|972697|972698|972699|972700|972701|972702|972703|972704|972705|972706|972707|972708", "text": "Neurodevelopmental abnormality" }, { - "baseId": "55236|55237|55239|55244|55245|55246|55247|99987|137043|175007|175287|175289|253830|310742|310745|310771|310806|310808|310811|316006|316010|316044|316047|316063|322088|322102|322108|322109|322165|322166|322713|322714|322725|322726|322738|322776|353137|353139|353147|353148|353153", + "upstreamId": "55236|55237|55239|55244|55245|55246|55247|99987|137043|175007|175287|175289|253830|310742|310745|310771|310806|310808|310811|316006|316010|316044|316047|316063|322088|322102|322108|322109|322165|322166|322713|322714|322725|322726|322738|322776|353137|353139|353147|353148|353153", "text": "Atypical Gaucher Disease" }, { - "baseId": "55321|78664|173755|173788|199000|199104|199701|442773|621161|631896|914872|965300|965303", + "upstreamId": "55321|78664|173755|173788|199000|199104|199701|442773|621161|631896|914872|965300|965303", "text": "Sudden cardiac arrest" }, { - "baseId": "55719|55720|55721|55722|55723|55724|55725|55726|55727|55729|55730|55731|55732|55733|55734|55735|174359|174360|174361|174362|174365|174367|174368|174371|174374|174376|174497|174500|174501|177630|193796|194635|194896|194897|195091|195498|227296|229440|229442|229444|229445|229447|229448|229452|229455|229456|229462|229465|229466|229470|229475|229479|252334|266947|270741|275654|275676|275681|275684|275690|275704|275711|275712|275718|275727|275732|275740|299883|299889|299892|299895|299897|299899|299901|299904|299906|302506|302507|302508|302511|302512|302513|302522|302532|302534|302535|302536|302537|306913|306914|306916|306917|306918|306919|306922|306923|306924|306925|306926|306934|306935|307189|307191|307199|307200|307201|307202|307207|307208|307211|307213|307214|331094|331165|353246|353769", + "upstreamId": "55719|55720|55721|55722|55723|55724|55725|55726|55727|55729|55730|55731|55732|55733|55734|55735|174359|174360|174361|174362|174365|174367|174368|174371|174374|174376|174497|174500|174501|177630|193796|194635|194896|194897|195091|195498|227296|229440|229442|229444|229445|229447|229448|229452|229455|229456|229462|229465|229466|229470|229475|229479|252334|266947|270741|275654|275676|275681|275684|275690|275704|275711|275712|275718|275727|275732|275740|299883|299889|299892|299895|299897|299899|299901|299904|299906|302506|302507|302508|302511|302512|302513|302522|302532|302534|302535|302536|302537|306913|306914|306916|306917|306918|306919|306922|306923|306924|306925|306926|306934|306935|307189|307191|307199|307200|307201|307202|307207|307208|307211|307213|307214|331094|331165|353246|353769", "text": "Stickler Syndrome, Dominant" }, { - "baseId": "55808|55947|172698|173473|198685|199454|224987|225089|225112|268495|269201|273235|285948|443093|489806|511068|513516|538958|608943|620038|620039|620040|620041|620736|626120|788744|961256", + "upstreamId": "55808|55947|172698|173473|198685|199454|224987|225089|225112|268495|269201|273235|285948|443093|489806|511068|513516|538958|608943|620038|620039|620040|620041|620736|626120|788744|961256", "text": "TTN-Related Disorders" }, { - "baseId": "56032|56625|168985|173089|198566|205422|205423|205424|205425|205426|205427|205428|205429|205430|205431|205432|205433|205434|205437|205438|205439|205440|205441|205442|205445|205446|205447|205448|205449|205450|205451|205452|205453|205456|205457|205461|205462|205463|205464|205465|205466|205467|205468|205469|205470|205473|205474|205475|205476|205477|205478|205479|205482|205483|205484|205485|205486|205487|205488|205489|205490|205493|205494|205495|205496|205497|205498|205499|205500|205501|205502|205503|205504|205505|205506|205507|205508|205509|205510|205511|205512|205513|205514|205515|205516|205517|205518|205519|205520|205521|205522|205523|205524|205525|205526|205527|205528|205529|205530|205531|215664|553412|578035|679574|679575|679576|679577", + "upstreamId": "56032|56625|168985|173089|198566|205422|205423|205424|205425|205426|205427|205428|205429|205430|205431|205432|205433|205434|205437|205438|205439|205440|205441|205442|205445|205446|205447|205448|205449|205450|205451|205452|205453|205456|205457|205461|205462|205463|205464|205465|205466|205467|205468|205469|205470|205473|205474|205475|205476|205477|205478|205479|205482|205483|205484|205485|205486|205487|205488|205489|205490|205493|205494|205495|205496|205497|205498|205499|205500|205501|205502|205503|205504|205505|205506|205507|205508|205509|205510|205511|205512|205513|205514|205515|205516|205517|205518|205519|205520|205521|205522|205523|205524|205525|205526|205527|205528|205529|205530|205531|215664|553412|578035|679574|679575|679576|679577", "text": "Abnormality of neuronal migration" }, { - "baseId": "57216", + "upstreamId": "57216", "text": "Insulin resistance syndrome, type A" }, { - "baseId": "57463|142741|171118|173790|173931|178523|214482|214485|224269|290242|290243|290244|290254|290271|290276|291029|291030|291039|291040|291049|291066|291078|291087|291088|291095|294310|294320|294337|294342|294384|294386|294391|294399|294413|294701|294707|294717|294718|294722|294738", + "upstreamId": "57463|142741|171118|173790|173931|178523|214482|214485|224269|290242|290243|290244|290254|290271|290276|291029|291030|291039|291040|291049|291066|291078|291087|291088|291095|294310|294320|294337|294342|294384|294386|294391|294399|294413|294701|294707|294717|294718|294722|294738", "text": "Paroxysmal familial ventricular fibrillation" }, { - "baseId": "57463|142741|173790|173931|178523|224269|290242|290243|290244|290254|290271|290276|291029|291030|291039|291040|291049|291066|291078|291087|291088|291095|294310|294320|294337|294342|294384|294386|294391|294399|294413|294701|294707|294717|294718|294722|294738|334065|343988|350201|353517|424552", + "upstreamId": "57463|142741|173790|173931|178523|224269|290242|290243|290244|290254|290271|290276|291029|291030|291039|291040|291049|291066|291078|291087|291088|291095|294310|294320|294337|294342|294384|294386|294391|294399|294413|294701|294707|294717|294718|294722|294738|334065|343988|350201|353517|424552", "text": "Progressive familial heart block" }, { - "baseId": "57808|75301|165812|165813|168532|168534|168535|359705|363137|428463|433821|455054|455232|455235|455691|455694|455697|455946|521519|521583|521589|521590|521845|560361|560363|560365|563199|565168|576118|612709|614289|633995|633996|633997|633998|651333|721506|735163|749563|749564|759604|765179|765180|765182|765185|779323|782328|815949|830918|830919|830920|830921|830922|830923|830924|830925|830926|830927|830928|830929|830930|830931|830932|830933|830934|852216|924094|924095|924096|932938|932939|932940|940007|944643|954185|954186|954187|959770", + "upstreamId": "57808|75301|165812|165813|168532|168534|168535|359705|363137|428463|433821|455054|455232|455235|455691|455694|455697|455946|521519|521583|521589|521590|521845|560361|560363|560365|563199|565168|576118|612709|614289|633995|633996|633997|633998|651333|721506|735163|749563|749564|759604|765179|765180|765182|765185|779323|782328|815949|830918|830919|830920|830921|830922|830923|830924|830925|830926|830927|830928|830929|830930|830931|830932|830933|830934|852216|924094|924095|924096|932938|932939|932940|940007|944643|954185|954186|954187|959770", "text": "Agammaglobulinemia 7, autosomal recessive" }, { - "baseId": "57809|57810|57810|81549|137523|137524|137525|137526|137527|137528|137530|137531|137532|137538|137539|137540|137541|137542|137543|137545|181280|199872|415098|428708|456684|456695|457131|457131|457133|457138|457139|457303|457306|457315|457320|457326|457729|457730|457732|457747|522626|522630|522886|522887|522889|522894|522896|522899|522902|523022|523025|523044|523046|523048|523052|523067|523266|523274|523280|523282|523285|553384|561544|561557|561563|561896|561899|561899|561901|561902|561903|561910|564278|564286|564288|566808|566815|566817|566819|566821|614312|614313|636095|636096|636097|636098|636099|636100|636101|636102|636103|636104|636105|636106|636107|636108|636109|636110|636111|636112|636113|636114|636115|636116|636117|636118|636119|636120|636121|636122|651671|651708|651805|700026|700027|710961|710962|710963|710964|710965|710966|710967|710968|722486|722487|722488|722489|736108|750604|750606|750610|759666|766250|766251|766253|766256|779229|787509|796030|819867|819868|819869|833539|833540|833541|833542|833543|833544|833545|833546|833547|833548|833549|833550|833551|833552|833553|833554|833555|833556|851642|852086|852360|859603|924835|924836|924837|924838|933858|933859|933860|933861|933862|933863|933864|933865|933866|945605|945606|945607|945608|945609|945610|945611|945612|945613|945614|945615|955137|955138|955139|955140|955141|955142|955143|955144|961953|970856", + "upstreamId": "57809|57810|57810|81549|137523|137524|137525|137526|137527|137528|137530|137531|137532|137538|137539|137540|137541|137542|137543|137545|181280|199872|415098|428708|456684|456695|457131|457131|457133|457138|457139|457303|457306|457315|457320|457326|457729|457730|457732|457747|522626|522630|522886|522887|522889|522894|522896|522899|522902|523022|523025|523044|523046|523048|523052|523067|523266|523274|523280|523282|523285|553384|561544|561557|561563|561896|561899|561899|561901|561902|561903|561910|564278|564286|564288|566808|566815|566817|566819|566821|614312|614313|636095|636096|636097|636098|636099|636100|636101|636102|636103|636104|636105|636106|636107|636108|636109|636110|636111|636112|636113|636114|636115|636116|636117|636118|636119|636120|636121|636122|651671|651708|651805|700026|700027|710961|710962|710963|710964|710965|710966|710967|710968|722486|722487|722488|722489|736108|750604|750606|750610|759666|766250|766251|766253|766256|779229|787509|796030|819867|819868|819869|833539|833540|833541|833542|833543|833544|833545|833546|833547|833548|833549|833550|833551|833552|833553|833554|833555|833556|851642|852086|852360|859603|924835|924836|924837|924838|933858|933859|933860|933861|933862|933863|933864|933865|933866|945605|945606|945607|945608|945609|945610|945611|945612|945613|945614|945615|955137|955138|955139|955140|955141|955142|955143|955144|961953|970856", "text": "B-cell expansion with NFKB and T-cell anergy" }, { - "baseId": "57810|57811|57812|81549|137523|137524|137525|137526|137527|137528|137530|137531|137532|137538|137539|137540|137541|137542|137543|137545|415098|428708|456684|456695|457131|457131|457133|457138|457139|457303|457306|457315|457320|457326|457729|457730|457732|457747|522626|522630|522886|522887|522889|522894|522896|522899|522902|523022|523025|523044|523046|523048|523052|523067|523266|523274|523280|523282|523285|553384|561544|561557|561563|561896|561899|561899|561901|561902|561903|561910|564278|564286|564288|566808|566815|566817|566819|566821|614312|614313|624739|636095|636096|636097|636098|636099|636100|636101|636102|636103|636104|636105|636106|636107|636108|636109|636110|636111|636112|636113|636114|636115|636116|636117|636118|636119|636120|636121|636122|651671|651708|651805|700026|700027|710961|710962|710963|710964|710965|710966|710967|710968|722486|722487|722488|722489|736108|750604|750606|750610|759666|766250|766251|766253|766256|779229|787509|790718|796030|819867|819868|819869|833539|833540|833541|833542|833543|833544|833545|833546|833547|833548|833549|833550|833551|833552|833553|833554|833555|833556|851642|852086|852360|859603|924835|924836|924837|924838|933858|933859|933860|933861|933862|933863|933864|933865|933866|945605|945606|945607|945608|945609|945610|945611|945612|945613|945614|945615|955137|955138|955139|955140|955141|955142|955143|955144", + "upstreamId": "57810|57811|57812|81549|137523|137524|137525|137526|137527|137528|137530|137531|137532|137538|137539|137540|137541|137542|137543|137545|415098|428708|456684|456695|457131|457131|457133|457138|457139|457303|457306|457315|457320|457326|457729|457730|457732|457747|522626|522630|522886|522887|522889|522894|522896|522899|522902|523022|523025|523044|523046|523048|523052|523067|523266|523274|523280|523282|523285|553384|561544|561557|561563|561896|561899|561899|561901|561902|561903|561910|564278|564286|564288|566808|566815|566817|566819|566821|614312|614313|624739|636095|636096|636097|636098|636099|636100|636101|636102|636103|636104|636105|636106|636107|636108|636109|636110|636111|636112|636113|636114|636115|636116|636117|636118|636119|636120|636121|636122|651671|651708|651805|700026|700027|710961|710962|710963|710964|710965|710966|710967|710968|722486|722487|722488|722489|736108|750604|750606|750610|759666|766250|766251|766253|766256|779229|787509|790718|796030|819867|819868|819869|833539|833540|833541|833542|833543|833544|833545|833546|833547|833548|833549|833550|833551|833552|833553|833554|833555|833556|851642|852086|852360|859603|924835|924836|924837|924838|933858|933859|933860|933861|933862|933863|933864|933865|933866|945605|945606|945607|945608|945609|945610|945611|945612|945613|945614|945615|955137|955138|955139|955140|955141|955142|955143|955144", "text": "Immunodeficiency 11" }, { - "baseId": "57813", + "upstreamId": "57813", "text": "Ataxia-oculomotor apraxia 3" }, { - "baseId": "58105", + "upstreamId": "58105", "text": "Cardiac rhabdomyoma" }, { - "baseId": "58105|360986", + "upstreamId": "58105|360986", "text": "Hamartoma" }, { - "baseId": "58133|360989|513953|514057|679672|679678", + "upstreamId": "58133|360989|513953|514057|679672|679678", "text": "Multiple renal cysts" }, { - "baseId": "58133|360908|360985|567807", + "upstreamId": "58133|360908|360985|567807", "text": "Cortical tubers" }, { - "baseId": "58297", + "upstreamId": "58297", "text": "Renal cortical cysts" }, { - "baseId": "58297|181426", + "upstreamId": "58297|181426", "text": "Cortical dysplasia" }, { - "baseId": "58496|76175", + "upstreamId": "58496|76175", "text": "Everolimus response" }, { - "baseId": "58541|152569|215257", + "upstreamId": "58541|152569|215257", "text": "Ganglioneuroblastoma" }, { - "baseId": "59193|243988|263247|459805|460363|460379|460383|460385|460387|460391|460393|460398|460399|460403|460427|460428|460715|460716|460722|460724|460726|460731|461183|461186|461188|461191|461194|461201|514032|525561|525565|525569|525572|525637|525639|525647|525651|525655|525827|525828|525830|525971|525974|525980|525986|551695|551753|564069|564072|564074|564076|564083|564954|564955|566664|566665|566671|566677|566681|569917|569918|569922|590093|639339|639340|639341|639342|639343|639344|639345|639346|639347|639348|652171|679509|679510|679511|679512|679513|692910|692911|701497|701498|712541|737665|737666|737667|768088|801130|822298|837544|837545|837546|837547|837548|837549|837550|837551|837552|837553|837554|837555|837556|837557|837558|837559|837560|837561|837562|837563|852287|861283|925991|925992|925993|925994|925995|935260|935261|947163|947164|947165|947166|947167|947168|956293|956294|956295|960738", + "upstreamId": "59193|243988|263247|459805|460363|460379|460383|460385|460387|460391|460393|460398|460399|460403|460427|460428|460715|460716|460722|460724|460726|460731|461183|461186|461188|461191|461194|461201|514032|525561|525565|525569|525572|525637|525639|525647|525651|525655|525827|525828|525830|525971|525974|525980|525986|551695|551753|564069|564072|564074|564076|564083|564954|564955|566664|566665|566671|566677|566681|569917|569918|569922|590093|639339|639340|639341|639342|639343|639344|639345|639346|639347|639348|652171|679509|679510|679511|679512|679513|692910|692911|701497|701498|712541|737665|737666|737667|768088|801130|822298|837544|837545|837546|837547|837548|837549|837550|837551|837552|837553|837554|837555|837556|837557|837558|837559|837560|837561|837562|837563|852287|861283|925991|925992|925993|925994|925995|935260|935261|947163|947164|947165|947166|947167|947168|956293|956294|956295|960738", "text": "Infantile spasms" }, { - "baseId": "59373|199976|205159|207647|513296|538631|538632|538633|538634|626185|626313|736960|792778|818265|818266|917769|917777|963152|970223|980933", + "upstreamId": "59373|199976|205159|207647|513296|538631|538632|538633|538634|626185|626313|736960|792778|818265|818266|917769|917777|963152|970223|980933", "text": "Hydrocephalus, congenital, 2, with or without brain or eye anomalies" }, { - "baseId": "59374|59375|59376|59377|59458|205774|623182|626227|626228|904123|917820|919527", + "upstreamId": "59374|59375|59376|59377|59458|205774|623182|626227|626228|904123|917820|919527", "text": "Mitochondrial complex 1 deficiency, nuclear type 21" }, { - "baseId": "59381|59382|59383|59386|59387|227393|361018|361019|404831|404832", + "upstreamId": "59381|59382|59383|59386|59387|227393|361018|361019|404831|404832", "text": "Platelet-type bleeding disorder 16" }, { - "baseId": "59384|59385|292267|292268|292269|292273|292279|292281|292286|292290|292297|292299|292304|292307|293718|293726|293727|293728|293730|293731|293735|293738|293740|293741|293742|297014|297018|297019|297020|297021|297029|297058|297062|297070|297071|297076|297079|413915|413916|413917|413918|590521|748750|890116|890117|890118|890119|890120|890121|890122|890123|890124|890125|890126|890127|890128|890129|890130|890131|890132|890133|890134|890135|890136|890137|890138|890139|890140|890141|890142|890143", + "upstreamId": "59384|59385|292267|292268|292269|292273|292279|292281|292286|292290|292297|292299|292304|292307|293718|293726|293727|293728|293730|293731|293735|293738|293740|293741|293742|297014|297018|297019|297020|297021|297029|297058|297062|297070|297071|297076|297079|413915|413916|413917|413918|590521|748750|890116|890117|890118|890119|890120|890121|890122|890123|890124|890125|890126|890127|890128|890129|890130|890131|890132|890133|890134|890135|890136|890137|890138|890139|890140|890141|890142|890143", "text": "Smith-McCort dysplasia 2" }, { - "baseId": "59388|59389|59390|59391|205272|226931|481499|653880|791191|818141|818142|858308|919404|972791|972792", + "upstreamId": "59388|59389|59390|59391|205272|226931|481499|653880|791191|818141|818142|858308|919404|972791|972792", "text": "Kaufman oculocerebrofacial syndrome" }, { - "baseId": "59404|59405|59406|59407|59408|59409|178389|481176|583117|861573", + "upstreamId": "59404|59405|59406|59407|59408|59409|178389|481176|583117|861573", "text": "Osteogenesis imperfecta, type xv" }, { - "baseId": "59404|59410|65585", + "upstreamId": "59404|59410|65585", "text": "Bone mineral density quantitative trait locus 16" }, { - "baseId": "59409|132441|335022|535387|535388|535389|535390|535391|535392|535393|535394|535395|535396|535397", + "upstreamId": "59409|132441|335022|535387|535388|535389|535390|535391|535392|535393|535394|535395|535396|535397", "text": "Keratoconus" }, { - "baseId": "59435", + "upstreamId": "59435", "text": "Postaxial polydactyly type A6" }, { - "baseId": "59456", + "upstreamId": "59456", "text": "Abruzzo-Erickson syndrome" }, { - "baseId": "59457|227395|362180|362181|380163|791794", + "upstreamId": "59457|227395|362180|362181|380163|791794", "text": "Palmoplantar carcinoma, multiple self-healing" }, { - "baseId": "59478", + "upstreamId": "59478", "text": "Mitochondrial complex v (atp synthase) deficiency, nuclear type 4" }, { - "baseId": "59487|611402", + "upstreamId": "59487|611402", "text": "Schizophrenia 18" }, { - "baseId": "59488|59489|59490|139386|139387|139388|226657|243816|243817|361244|378363|379305|379431|379432|404303|404397|404580|404583|446897|470863|470870|471896|472162|508136|508287|534385|534826|534857|535012|535179|535180|573892|575427|578006|581116|581117|622952|626297|650091|650092|650093|650094|650095|685020|685022|689525|774088|786855|792464|792465|792466|798316|798317|802051|850109|850110|850111|850112|850113|850114|850115|850116|852984|929757|939613|939614|939615|939616|951816|973049|983308", + "upstreamId": "59488|59489|59490|139386|139387|139388|226657|243816|243817|361244|378363|379305|379431|379432|404303|404397|404580|404583|446897|470863|470870|471896|472162|508136|508287|534385|534826|534857|535012|535179|535180|573892|575427|578006|581116|581117|622952|626297|650091|650092|650093|650094|650095|685020|685022|689525|774088|786855|792464|792465|792466|798316|798317|802051|850109|850110|850111|850112|850113|850114|850115|850116|852984|929757|939613|939614|939615|939616|951816|973049|983308", "text": "SLC35A2-CDG" }, { - "baseId": "59491|99989|177261|190406|190408|190409|192345|204535|204536|204537|204538|204539|204540|204541|204542|204543|204544|204545|204546|204547|204548|204549|204550|204551|204552|204553|204554|204555|204556|204557|204558|204559|204560|204561|204562|204563|204564|204565|204566|857383", + "upstreamId": "59491|99989|177261|190406|190408|190409|192345|204535|204536|204537|204538|204539|204540|204541|204542|204543|204544|204545|204546|204547|204548|204549|204550|204551|204552|204553|204554|204555|204556|204557|204558|204559|204560|204561|204562|204563|204564|204565|204566|857383", "text": "Retinitis pigmentosa 66" }, { - "baseId": "59495", + "upstreamId": "59495", "text": "Hypochromic microcytic anemia with iron overload 2" }, { - "baseId": "59505|59506|59507|59508|225799", + "upstreamId": "59505|59506|59507|59508|225799", "text": "Intestinal pseudo-obstruction" }, { - "baseId": "59522", + "upstreamId": "59522", "text": "Familial partial lipodystrophy 5" }, { - "baseId": "59540|150285|150286", + "upstreamId": "59540|150285|150286", "text": "Nephrotic syndrome, type 8" }, { - "baseId": "59541|59542|59543|59544|59545|682817|791135|791136|791137|791138|815994|815995|919360", + "upstreamId": "59541|59542|59543|59544|59545|682817|791135|791136|791137|791138|815994|815995|919360", "text": "Hyperphosphatasia with mental retardation syndrome 3" }, { - "baseId": "59642|59643|150258|150259|150260|150261|150262|188215|188216|188217|188218|188219|188220|188221|188222|188223|268384|268385|353890|367334|434519|434520|438765|438903|450927|450932|451033|451037|451039|451041|451045|451047|451225|451226|451238|451239|451241|451245|512810|518244|518245|518249|518254|518255|518257|518258|518259|518260|518266|518279|518287|518289|518290|518356|518361|518362|518364|518366|518375|518377|558107|558109|558111|558113|558115|558474|558476|558478|558480|560643|560645|560647|560649|560651|561549|614244|614245|614246|630034|630035|630036|630037|630038|630039|630040|630041|630042|630043|630044|630045|630046|630047|630048|630049|630050|630051|630052|630053|630054|630055|630056|630057|630058|630059|630060|630061|630062|630063|630064|630065|630066|630067|630068|630069|630070|651055|708298|708299|708300|708301|708302|719889|719890|719892|719893|719894|730143|733498|733500|733502|747662|747665|747666|763257|763258|763265|774739|778919|787140|816353|819174|826513|826514|826515|826516|826517|826518|826519|826520|826521|826522|826523|826524|826525|826526|826527|826528|826529|826530|826531|826532|826533|826534|826535|826536|826537|826538|826539|826540|826541|826542|826543|826544|826545|826546|850863|851180|851430|920180|922783|922784|922785|922786|922787|922788|922789|922790|922791|922792|931418|931419|931420|931421|931422|931423|931424|931425|939895|939896|939897|939898|940710|940711|942942|942943|942944|942945|942946|942947|942948|942949|942950|942951|953097|953098|953099|953100|953101|953102|953103|953104|959643|959644|960478|980447", + "upstreamId": "59642|59643|150258|150259|150260|150261|150262|188215|188216|188217|188218|188219|188220|188221|188222|188223|268384|268385|353890|367334|434519|434520|438765|438903|450927|450932|451033|451037|451039|451041|451045|451047|451225|451226|451238|451239|451241|451245|512810|518244|518245|518249|518254|518255|518257|518258|518259|518260|518266|518279|518287|518289|518290|518356|518361|518362|518364|518366|518375|518377|558107|558109|558111|558113|558115|558474|558476|558478|558480|560643|560645|560647|560649|560651|561549|614244|614245|614246|630034|630035|630036|630037|630038|630039|630040|630041|630042|630043|630044|630045|630046|630047|630048|630049|630050|630051|630052|630053|630054|630055|630056|630057|630058|630059|630060|630061|630062|630063|630064|630065|630066|630067|630068|630069|630070|651055|708298|708299|708300|708301|708302|719889|719890|719892|719893|719894|730143|733498|733500|733502|747662|747665|747666|763257|763258|763265|774739|778919|787140|816353|819174|826513|826514|826515|826516|826517|826518|826519|826520|826521|826522|826523|826524|826525|826526|826527|826528|826529|826530|826531|826532|826533|826534|826535|826536|826537|826538|826539|826540|826541|826542|826543|826544|826545|826546|850863|851180|851430|920180|922783|922784|922785|922786|922787|922788|922789|922790|922791|922792|931418|931419|931420|931421|931422|931423|931424|931425|939895|939896|939897|939898|940710|940711|942942|942943|942944|942945|942946|942947|942948|942949|942950|942951|953097|953098|953099|953100|953101|953102|953103|953104|959643|959644|960478|980447", "text": "Multiple gastrointestinal atresias" }, { - "baseId": "59644|59645|59645|137085|170191|170192|170192|253145|369966|371867|371870|425795|428841|428842|428843|457700|457868|457873|457874|457875|458471|458474|458515|458516|458519|458922|458936|458937|458942|523581|524184|524186|524188|524189|524197|562424|562953|562957|637220|637221|637222|651819|651820|651858|692499|692501|692503|723109|736684|736685|744495|783113|805578|834771|834772|834773|834774|834775|834776|834777|834778|834779|834780|925205|925206|925207|925208|934317|940908|946076|955416|955417|955418|955419|955420|955421", + "upstreamId": "59644|59645|59645|137085|170191|170192|170192|253145|369966|371867|371870|425795|428841|428842|428843|457700|457868|457873|457874|457875|458471|458474|458515|458516|458519|458922|458936|458937|458942|523581|524184|524186|524188|524189|524197|562424|562953|562957|637220|637221|637222|651819|651820|651858|692499|692501|692503|723109|736684|736685|744495|783113|805578|834771|834772|834773|834774|834775|834776|834777|834778|834779|834780|925205|925206|925207|925208|934317|940908|946076|955416|955417|955418|955419|955420|955421", "text": "Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type a, 12" }, { - "baseId": "59645|137085|170192|253145|369966|371867|371870|425795|428841|428842|428843|457700|457868|457873|457874|457875|458471|458474|458515|458516|458519|458922|458936|458937|458942|523581|524184|524186|524188|524189|524197|562424|562953|562957|637220|637221|637222|651819|651820|651858|692499|692501|692503|723109|736684|736685|744495|783113|802164|802165|805578|834771|834772|834773|834774|834775|834776|834777|834778|834779|834780|925205|925206|925207|925208|934317|940908|946076|955416|955417|955418|955419|955420|955421", + "upstreamId": "59645|137085|170192|253145|369966|371867|371870|425795|428841|428842|428843|457700|457868|457873|457874|457875|458471|458474|458515|458516|458519|458922|458936|458937|458942|523581|524184|524186|524188|524189|524197|562424|562953|562957|637220|637221|637222|651819|651820|651858|692499|692501|692503|723109|736684|736685|744495|783113|802164|802165|805578|834771|834772|834773|834774|834775|834776|834777|834778|834779|834780|925205|925206|925207|925208|934317|940908|946076|955416|955417|955418|955419|955420|955421", "text": "Muscular dystrophy-dystroglycanopathy (limb-girdle), type c, 12" }, { - "baseId": "59797|59798|59799|139355|139357", + "upstreamId": "59797|59798|59799|139355|139357", "text": "Hemolytic uremic syndrome, atypical, susceptibility to, 7" }, { - "baseId": "59800|59801|59802|59803|59804|59805|59806|168075|168079|168080|207026|428099|485890|801983", + "upstreamId": "59800|59801|59802|59803|59804|59805|59806|168075|168079|168080|207026|428099|485890|801983", "text": "Microcephaly-capillary malformation syndrome" }, { - "baseId": "59809|59810|59811|59812|59813|59814|59815|143125|143126|178806|178807|181177|181178|188295|208787|243704|243706|243711|243712|259327|259328|259329|259330|259331|259332|259333|259334|259335|259336|259337|259338|259339|259340|259341|259342|259343|259344|259345|259346|259347|259348|259349|259350|259351|259352|259353|259354|259355|259356|259357|259358|259359|259360|259361|259362|259363|259364|259365|259366|259367|259368|259369|259370|259371|259372|259373|259374|259375|259376|259377|259378|259379|379847|403956|403972|403980|403982|404370|404373|404380|404388|404402|404405|404409|404412|410990|410996|442348|442350|446402|470204|470215|470225|470229|470230|470252|470254|470889|471094|471110|471111|471535|471538|471545|471929|471932|471941|471948|471950|486776|512517|534226|534238|534248|534256|534284|534290|534302|534308|534384|534390|534394|534397|534563|534736|534739|534743|534745|534746|534752|534754|534766|534767|538498|551798|571938|571940|571941|571943|571945|571953|571963|571965|571967|571971|571973|571975|573228|573382|573384|573389|573392|574103|574107|574112|574120|574121|575261|575264|575265|575266|575267|580786|581846|589846|614608|649410|649412|649415|649416|649418|649419|649425|649427|649429|649430|649433|649435|649436|649437|649441|649443|649447|649450|649451|653209|653215|653257|653286|653326|653899|792054|792055|798087|802063|802064|905031|919948|919949|920427|963187|963347|966017|966018|971159|971598", + "upstreamId": "59809|59810|59811|59812|59813|59814|59815|143125|143126|178806|178807|181177|181178|188295|208787|243704|243706|243711|243712|259327|259328|259329|259330|259331|259332|259333|259334|259335|259336|259337|259338|259339|259340|259341|259342|259343|259344|259345|259346|259347|259348|259349|259350|259351|259352|259353|259354|259355|259356|259357|259358|259359|259360|259361|259362|259363|259364|259365|259366|259367|259368|259369|259370|259371|259372|259373|259374|259375|259376|259377|259378|259379|379847|403956|403972|403980|403982|404370|404373|404380|404388|404402|404405|404409|404412|410990|410996|442348|442350|446402|470204|470215|470225|470229|470230|470252|470254|470889|471094|471110|471111|471535|471538|471545|471929|471932|471941|471948|471950|486776|512517|534226|534238|534248|534256|534284|534290|534302|534308|534384|534390|534394|534397|534563|534736|534739|534743|534745|534746|534752|534754|534766|534767|538498|551798|571938|571940|571941|571943|571945|571953|571963|571965|571967|571971|571973|571975|573228|573382|573384|573389|573392|574103|574107|574112|574120|574121|575261|575264|575265|575266|575267|580786|581846|589846|614608|649410|649412|649415|649416|649418|649419|649425|649427|649429|649430|649433|649435|649436|649437|649441|649443|649447|649450|649451|653209|653215|653257|653286|653326|653899|792054|792055|798087|802063|802064|905031|919948|919949|920427|963187|963347|966017|966018|971159|971598", "text": "Epilepsy, familial focal, with variable foci 1" }, { - "baseId": "59809|59810|143125|178807|188295|208787|243705|243706|243707|243708|243709|243710|243712|243713|243714|257601|257602|257603|257605|257607|259330|259332|259338|259339|259345|259346|259352|259354|259357|259363|259365|259366|259367|259369|259372|360528|361622|378785|403947|403952|403953|403957|403958|403960|403962|403965|403968|403969|403970|403978|403981|403982|403983|403984|404004|404369|404374|404375|404376|404383|404385|404386|404390|404392|404395|404396|404400|404405|404407|404417|404421|404422|410986|410991|410996|411006|426705|438223|438224|442349|469863|470214|470217|470229|470238|470246|470259|470261|470887|471089|471090|471095|471098|471101|471103|471105|471109|471112|471526|471528|471531|471539|471543|471545|471547|471930|471933|471934|471935|471936|471943|471944|471945|471949|486303|507685|534014|534036|534231|534234|534239|534247|534251|534256|534267|534272|534276|534278|534281|534285|534294|534311|534361|534363|534366|534382|534388|534390|534748|534770|537407|571949|571954|571969|573377|573383|573385|573388|573397|574105|574113|574115|574118|575260|575262|575263|580494|580497|580623|580639|580655|580657|580659|580766|580780|580785|649408|649409|649411|649412|649413|649414|649417|649420|649421|649422|649423|649424|649426|649428|649431|649432|649434|649438|649439|649440|649442|649444|649445|649446|649448|649449|649452|649453|653261|653335|684918|684920|684921|685472|689277|689278|689279|689280|689281|689282|689283|689284|689286|705895|705897|729148|742861|758048|773522|821450|821451|821452|821453|821454|821455|821456|821457|821458|849252|849253|849254|849255|849256|849257|849258|849259|849260|849261|849262|849263|849264|849265|849266|849267|849268|849269|849270|849271|849272|849273|849274|849275|849276|849277|849278|849279|849280|849281|849282|849283|849284|849285|849286|849287|849288|849289|849290|849291|849292|849293|849294|849295|849296|849297|851922|851924|852436|852439|852931|852932|852934|929471|929472|929473|929474|929475|929476|929477|929478|929479|929480|929481|939276|939277|939278|939279|939280|939281|939282|939283|939284|939285|939286|939287|939288|939289|939290|939291|939292|939293|939294|939295|939296|939297|939298|939299|940531|940532|940533|941280|951436|951437|951438|951439|951440|951441|951442|951443|951444|951445|951446|951447|951448|951449|951450|951451|951452|951453|951454|951455|951456|951457|959074|959075|959076|959077|959078|959079|959080|959081|959082|959083|959084|960347", + "upstreamId": "59809|59810|143125|178807|188295|208787|243705|243706|243707|243708|243709|243710|243712|243713|243714|257601|257602|257603|257605|257607|259330|259332|259338|259339|259345|259346|259352|259354|259357|259363|259365|259366|259367|259369|259372|360528|361622|378785|403947|403952|403953|403957|403958|403960|403962|403965|403968|403969|403970|403978|403981|403982|403983|403984|404004|404369|404374|404375|404376|404383|404385|404386|404390|404392|404395|404396|404400|404405|404407|404417|404421|404422|410986|410991|410996|411006|426705|438223|438224|442349|469863|470214|470217|470229|470238|470246|470259|470261|470887|471089|471090|471095|471098|471101|471103|471105|471109|471112|471526|471528|471531|471539|471543|471545|471547|471930|471933|471934|471935|471936|471943|471944|471945|471949|486303|507685|534014|534036|534231|534234|534239|534247|534251|534256|534267|534272|534276|534278|534281|534285|534294|534311|534361|534363|534366|534382|534388|534390|534748|534770|537407|571949|571954|571969|573377|573383|573385|573388|573397|574105|574113|574115|574118|575260|575262|575263|580494|580497|580623|580639|580655|580657|580659|580766|580780|580785|649408|649409|649411|649412|649413|649414|649417|649420|649421|649422|649423|649424|649426|649428|649431|649432|649434|649438|649439|649440|649442|649444|649445|649446|649448|649449|649452|649453|653261|653335|684918|684920|684921|685472|689277|689278|689279|689280|689281|689282|689283|689284|689286|705895|705897|729148|742861|758048|773522|821450|821451|821452|821453|821454|821455|821456|821457|821458|849252|849253|849254|849255|849256|849257|849258|849259|849260|849261|849262|849263|849264|849265|849266|849267|849268|849269|849270|849271|849272|849273|849274|849275|849276|849277|849278|849279|849280|849281|849282|849283|849284|849285|849286|849287|849288|849289|849290|849291|849292|849293|849294|849295|849296|849297|851922|851924|852436|852439|852931|852932|852934|929471|929472|929473|929474|929475|929476|929477|929478|929479|929480|929481|939276|939277|939278|939279|939280|939281|939282|939283|939284|939285|939286|939287|939288|939289|939290|939291|939292|939293|939294|939295|939296|939297|939298|939299|940531|940532|940533|941280|951436|951437|951438|951439|951440|951441|951442|951443|951444|951445|951446|951447|951448|951449|951450|951451|951452|951453|951454|951455|951456|951457|959074|959075|959076|959077|959078|959079|959080|959081|959082|959083|959084|960347", "text": "Familial focal epilepsy with variable foci" }, { - "baseId": "59816", + "upstreamId": "59816", "text": "Vel blood group system" }, { - "baseId": "59839|59839", + "upstreamId": "59839|59839", "text": "Sturge-Weber syndrome" }, { - "baseId": "59839|59839", + "upstreamId": "59839|59839", "text": "Capillary malformation" }, { - "baseId": "59840|59841|59842|59843|791287", + "upstreamId": "59840|59841|59842|59843|791287", "text": "Hypogonadotropic hypogonadism 19 with or without anosmia" }, { - "baseId": "59844|59846", + "upstreamId": "59844|59846", "text": "Hypogonadotropic hypogonadism 20 with or without anosmia" }, { - "baseId": "59845", + "upstreamId": "59845", "text": "Hypogonadotropic hypogonadism 20 without anosmia" }, { - "baseId": "59847", + "upstreamId": "59847", "text": "Hypogonadotropic hypogonadism 8 with or without anosmia" }, { - "baseId": "59848|59849|59850", + "upstreamId": "59848|59849|59850", "text": "HYPOGONADOTROPIC HYPOGONADISM 21 WITH ANOSMIA, SUSCEPTIBILITY TO" }, { - "baseId": "59851", + "upstreamId": "59851", "text": "Hypogonadotropic hypogonadism 21 with or without anosmia" }, { - "baseId": "59853|59856|59857", + "upstreamId": "59853|59856|59857", "text": "Hypogonadotropic hypogonadism 18 with anosmia" }, { - "baseId": "59854|59855", + "upstreamId": "59854|59855", "text": "HYPOGONADOTROPIC HYPOGONADISM 18 WITH ANOSMIA, SUSCEPTIBILITY TO" }, { - "baseId": "59858|59859|59860|59861", + "upstreamId": "59858|59859|59860|59861", "text": "Hypogonadotropic hypogonadism 17 with or without anosmia" }, { - "baseId": "65568|65569|65570|226691|226692|226693|918779", + "upstreamId": "65568|65569|65570|226691|226692|226693|918779", "text": "GAPO syndrome" }, { - "baseId": "65571|65572|65573", + "upstreamId": "65571|65572|65573", "text": "Spermatogenic failure 3" }, { - "baseId": "65574|65575|65576|196432|196433|196434|578460|788818|790738|801572", + "upstreamId": "65574|65575|65576|196432|196433|196434|578460|788818|790738|801572", "text": "Gordon Holmes syndrome" }, { - "baseId": "65578|65579|65580|538482|622449|798739|919811|919812|964885", + "upstreamId": "65578|65579|65580|538482|622449|798739|919811|919812|964885", "text": "Cerebellar ataxia, deafness, and narcolepsy, autosomal dominant" }, { - "baseId": "65609|425223|512063|513332|538433|539049|788875|788876|789127|791297|800327|800328|800330|919494|920322|964857|981830", + "upstreamId": "65609|425223|512063|513332|538433|539049|788875|788876|789127|791297|800327|800328|800330|919494|920322|964857|981830", "text": "Cerebellar ataxia, mental retardation, and dysequilibrium syndrome 4" }, { - "baseId": "65610|65611|65612|199811|199812|205325|225889|247192|264790|360623|362396|362436|384424|430597|513149|537412|613834|613932|613967|614041|614076|789134|792084|798978|816531|861660|861661|919961|919962|961657|961695|963940|963941|964556|964557|964558|964994|964995|964996|964997|964998|964999|965000|965001|965002|965003|965004|965005|965006|965007|965008|965009|967017|976673|976674|983557|983802", + "upstreamId": "65610|65611|65612|199811|199812|205325|225889|247192|264790|360623|362396|362436|384424|430597|513149|537412|613834|613932|613967|614041|614076|789134|792084|798978|816531|861660|861661|919961|919962|961657|961695|963940|963941|964556|964557|964558|964994|964995|964996|964997|964998|964999|965000|965001|965002|965003|965004|965005|965006|965007|965008|965009|967017|976673|976674|983557|983802", "text": "22q13.3 deletion syndrome" }, { - "baseId": "65618|65619|65620|65621|105833|105834|105835|105836|105837|105838|105839|105840|105841|105842|105843|105844|105845|105846|105847|105848|105849|105850|105851|105852|105853|105854|105855|105856|105857|105858|105859|105860|105861|105862|105863|105864|105865|105866|105867|105868|105869|105870|105871|105872|105873|105874|105875|105876|105877|105878|105879", + "upstreamId": "65618|65619|65620|65621|105833|105834|105835|105836|105837|105838|105839|105840|105841|105842|105843|105844|105845|105846|105847|105848|105849|105850|105851|105852|105853|105854|105855|105856|105857|105858|105859|105860|105861|105862|105863|105864|105865|105866|105867|105868|105869|105870|105871|105872|105873|105874|105875|105876|105877|105878|105879", "text": "Glaucoma 1, open angle, F" }, { - "baseId": "65631|65632|131954|131955|131956|215281|223308|223309|223310|223311|223312|223313|223314|223315|223316|359521|367310|367313|404763|452009|452011|452014|452017|452020|452025|452235|452236|452241|452243|452247|452250|452271|452272|452277|452282|452284|452285|452288|452300|452302|452365|452367|452368|452370|452506|452510|452513|452514|481686|500683|519054|519057|519059|519062|519067|519069|519205|519206|519223|519225|519227|519229|519231|519235|539127|558868|558870|558872|558874|559417|559419|559421|561331|561340|561346|562643|562648|562650|562652|562654|631121|631122|631123|631124|631125|631126|631127|631128|631129|631130|631131|631132|631133|631134|631135|650984|651050|653858|691365|691366|698016|698017|720386|720387|720388|734005|743932|748183|763805|792735|798528|798529|805338|815810|815811|819364|827833|827834|827835|827836|827837|827838|827839|827840|827841|827842|827843|827844|827845|827846|827847|827848|827849|827850|827851|827852|827853|827854|827855|851037|851039|923115|923116|923117|923118|923119|923120|923121|923122|923123|923124|923125|923126|923127|923128|931875|931876|931877|931878|931879|931880|931881|940746|943456|943457|943458|943459|943460|943461|953417|953418|953419|953420|953421|953422|953423|960510|970764|976892|976893|976894", + "upstreamId": "65631|65632|131954|131955|131956|215281|223308|223309|223310|223311|223312|223313|223314|223315|223316|359521|367310|367313|404763|452009|452011|452014|452017|452020|452025|452235|452236|452241|452243|452247|452250|452271|452272|452277|452282|452284|452285|452288|452300|452302|452365|452367|452368|452370|452506|452510|452513|452514|481686|500683|519054|519057|519059|519062|519067|519069|519205|519206|519223|519225|519227|519229|519231|519235|539127|558868|558870|558872|558874|559417|559419|559421|561331|561340|561346|562643|562648|562650|562652|562654|631121|631122|631123|631124|631125|631126|631127|631128|631129|631130|631131|631132|631133|631134|631135|650984|651050|653858|691365|691366|698016|698017|720386|720387|720388|734005|743932|748183|763805|792735|798528|798529|805338|815810|815811|819364|827833|827834|827835|827836|827837|827838|827839|827840|827841|827842|827843|827844|827845|827846|827847|827848|827849|827850|827851|827852|827853|827854|827855|851037|851039|923115|923116|923117|923118|923119|923120|923121|923122|923123|923124|923125|923126|923127|923128|931875|931876|931877|931878|931879|931880|931881|940746|943456|943457|943458|943459|943460|943461|953417|953418|953419|953420|953421|953422|953423|960510|970764|976892|976893|976894", "text": "Congenital disorder of deglycosylation" }, { - "baseId": "65651|65652|65653|65654|380135|380136|380137|422499|426484|481509|513399|538517|576197|589822|677298|822347|920050|920051|920052|920053|965295|965890|971224|974537", + "upstreamId": "65651|65652|65653|65654|380135|380136|380137|422499|426484|481509|513399|538517|576197|589822|677298|822347|920050|920051|920052|920053|965295|965890|971224|974537", "text": "Intellectual disability-developmental delay-contractures syndrome" }, { - "baseId": "65655|65656|97543|139376|208626|243558|263149|334439|334441|334442|334445|334448|334451|344317|344322|344323|344324|344325|344326|349423|349426|349429|349430|349432|349433|349435|349436|349440|350426|378154|677462|679893|684854|882570|882571|882572|882573|882574|882575|882576|882577|882578|882579|882580|882581|882941", + "upstreamId": "65655|65656|97543|139376|208626|243558|263149|334439|334441|334442|334445|334448|334451|344317|344322|344323|344324|344325|344326|349423|349426|349429|349430|349432|349433|349435|349436|349440|350426|378154|677462|679893|684854|882570|882571|882572|882573|882574|882575|882576|882577|882578|882579|882580|882581|882941", "text": "Autosomal dominant torsion dystonia 4" }, { - "baseId": "65655|65656|65656|139376|139376|139377|143144|143145|190170|205792|208626|213656|243558|260216|263148|263149|263149|263150|263151|263152|263153|263154|263155|263156|263157|263158|263159|263160|263161|263162|263163|263164|263165|263166|263167|263168|263169|263170|334439|334441|334442|334445|334448|334451|344317|344322|344323|344324|344325|344326|349423|349426|349429|349430|349432|349433|349435|349436|349440|350426|353527|378154|410718|446894|507188|533469|533480|573423|575063|613156|648514|648515|648516|677462|684854|689160|694516|786298|791961|798758|798759|848096|848097|882570|882571|882572|882573|882574|882575|882576|882577|882578|882579|882580|882581|882941|919899|919900|919901|938867", + "upstreamId": "65655|65656|65656|139376|139376|139377|143144|143145|190170|205792|208626|213656|243558|260216|263148|263149|263149|263150|263151|263152|263153|263154|263155|263156|263157|263158|263159|263160|263161|263162|263163|263164|263165|263166|263167|263168|263169|263170|334439|334441|334442|334445|334448|334451|344317|344322|344323|344324|344325|344326|349423|349426|349429|349430|349432|349433|349435|349436|349440|350426|353527|378154|410718|446894|507188|533469|533480|573423|575063|613156|648514|648515|648516|677462|684854|689160|694516|786298|791961|798758|798759|848096|848097|882570|882571|882572|882573|882574|882575|882576|882577|882578|882579|882580|882581|882941|919899|919900|919901|938867", "text": "Leukodystrophy, hypomyelinating, 6" }, { - "baseId": "65657|65658|65659|65660|65661|65662|152908|481226|481227|513247|970708", + "upstreamId": "65657|65658|65659|65660|65661|65662|152908|481226|481227|513247|970708", "text": "Hypomyelination with brainstem and spinal cord involvement and leg spasticity" }, { - "baseId": "65666|165821|395001|406786|626307|965964", + "upstreamId": "65666|165821|395001|406786|626307|965964", "text": "Polymicrogyria, bilateral temporooccipital" }, { - "baseId": "65676|65677|171812|237111|361361|361557|361558|433901|433903|433905|513386|513674|610177|613200|613202|626287|706009|706012|717547|717548|717555|729300|729304|729306|729309|743016|743022|743028|758172|780073|798774|800193|800194|800195|800196|800197|800198|800199|800200|982258|982259|982260|982261|982262|982263|982264|982265|982266|982267", + "upstreamId": "65676|65677|171812|237111|361361|361557|361558|433901|433903|433905|513386|513674|610177|613200|613202|626287|706009|706012|717547|717548|717555|729300|729304|729306|729309|743016|743022|743028|758172|780073|798774|800193|800194|800195|800196|800197|800198|800199|800200|982258|982259|982260|982261|982262|982263|982264|982265|982266|982267", "text": "Charcot-Marie-Tooth disease, type 4B3" }, { - "baseId": "65837", + "upstreamId": "65837", "text": "Carcinoma of male breast" }, { - "baseId": "67271|213656|243827|801185|805069|971289", + "upstreamId": "67271|213656|243827|801185|805069|971289", "text": "Cerebral palsy" }, { - "baseId": "67593|550737", + "upstreamId": "67593|550737", "text": "Neuroendocrine tumor of pancreas" }, { - "baseId": "70063", + "upstreamId": "70063", "text": "Breast and colorectal cancer" }, { - "baseId": "70461|70462|70463|70464|70467|409773|539068|540049|818151|919681|966800|966801|971057|971376|975894|977278", + "upstreamId": "70461|70462|70463|70464|70467|409773|539068|540049|818151|919681|966800|966801|971057|971376|975894|977278", "text": "Xerocytosis" }, { - "baseId": "70472|70473|70474|363796|438567|438613|453120|514231|514232|514233|514234|559136|631779|698279|709026|709027|709029|709030|734283|734284|748507|828548|923344|923345", + "upstreamId": "70472|70473|70474|363796|438567|438613|453120|514231|514232|514233|514234|559136|631779|698279|709026|709027|709029|709030|734283|734284|748507|828548|923344|923345", "text": "Adams-Oliver syndrome 4" }, { - "baseId": "70473|181457|200762|200763|200764|200765|200766|200767|200768|200769|200770|288886|288933|291887|291946|292011|497310", + "upstreamId": "70473|181457|200762|200763|200764|200765|200766|200767|200768|200769|200770|288886|288933|291887|291946|292011|497310", "text": "Adams-Oliver syndrome" }, { - "baseId": "70475|224853|224854|224855|224856|224857|224858|224859|433790|433795|445659|539068|590357|590358|626249|626250|818145|904913|962247|962248|966800|966801|975894", + "upstreamId": "70475|224853|224854|224855|224856|224857|224858|224859|433790|433795|445659|539068|590357|590358|626249|626250|818145|904913|962247|962248|966800|966801|975894", "text": "Lymphedema, hereditary, III" }, { - "baseId": "70481|133578|259981|415549|857631", + "upstreamId": "70481|133578|259981|415549|857631", "text": "Pre-B-cell acute lymphoblastic leukemia" }, { - "baseId": "70485|70486|70487", + "upstreamId": "70485|70486|70487", "text": "Xeroderma pigmentosum, type F/Cockayne syndrome" }, { - "baseId": "70488|962821", + "upstreamId": "70488|962821", "text": "Medullary cystic kidney disease 1" }, { - "baseId": "70489|70540|136848", + "upstreamId": "70489|70540|136848", "text": "King Denborough syndrome" }, { - "baseId": "70496|75585|622244|788884|792794", + "upstreamId": "70496|75585|622244|788884|792794", "text": "Autosomal recessive congenital ichthyosis 9" }, { - "baseId": "70497|70498|450990|518021", + "upstreamId": "70497|70498|450990|518021", "text": "Ciliary dyskinesia, primary, 21" }, { - "baseId": "70500", + "upstreamId": "70500", "text": "Mitral atresia disorder" }, { - "baseId": "70500", + "upstreamId": "70500", "text": "Aortic valve atresia (disease)" }, { - "baseId": "70500", + "upstreamId": "70500", "text": "Single Ventricle Defect" }, { - "baseId": "70500", + "upstreamId": "70500", "text": "Pulmonary atresia with ventricular septal defect" }, { - "baseId": "70500|303321|362061|677996|789091", + "upstreamId": "70500|303321|362061|677996|789091", "text": "Atrioventricular septal defect" }, { - "baseId": "70502|70503|70504|215769|361944|362521|520924|559833|560334|562990|562995|562996|691784", + "upstreamId": "70502|70503|70504|215769|361944|362521|520924|559833|560334|562990|562995|562996|691784", "text": "Infantile myofibromatosis 1" }, { - "baseId": "70502|70502|215769|251822|270125|270626|362365|362366|362367|362520|362521|363941|454742|454749|454815|454817|455307|455595|455600|455602|455604|520926|520927|521357|560213|633635|633636|633637|691784|691785|691786|691787|691788|691789|691790|695283|698920|698921|698922|698924|698927|698928|698929|698930|698932|698933|698934|698935|698937|698938|698939|709731|709732|721300|721301|721302|721305|734934|749343|749349|830537|830538|923948|923949|944491|944492|944493|954093|961572|961573|961574|961575|961576|961577", + "upstreamId": "70502|70502|215769|251822|270125|270626|362365|362366|362367|362520|362521|363941|454742|454749|454815|454817|455307|455595|455600|455602|455604|520926|520927|521357|560213|633635|633636|633637|691784|691785|691786|691787|691788|691789|691790|695283|698920|698921|698922|698924|698927|698928|698929|698930|698932|698933|698934|698935|698937|698938|698939|709731|709732|721300|721301|721302|721305|734934|749343|749349|830537|830538|923948|923949|944491|944492|944493|954093|961572|961573|961574|961575|961576|961577", "text": "Infantile myofibromatosis" }, { - "baseId": "70502|213767|251822|270125|270626|363941|454742|454749|454815|454817|455307|455595|455600|455602|455604|520924|520926|520927|521357|559833|560213|560334|562990|562995|562996|633635|633636|633637|691784|691785|691786|691787|691788|691789|691790|695283|698920|698921|698922|698924|698927|698928|698929|698930|698932|698933|698934|698935|698937|698938|698939|709731|709732|721300|721301|721302|721305|734934|749343|749349|830537|830538|923948|923949|944491|944492|944493|954093", + "upstreamId": "70502|213767|251822|270125|270626|363941|454742|454749|454815|454817|455307|455595|455600|455602|455604|520924|520926|520927|521357|559833|560213|560334|562990|562995|562996|633635|633636|633637|691784|691785|691786|691787|691788|691789|691790|695283|698920|698921|698922|698924|698927|698928|698929|698930|698932|698933|698934|698935|698937|698938|698939|709731|709732|721300|721301|721302|721305|734934|749343|749349|830537|830538|923948|923949|944491|944492|944493|954093", "text": "Kosaki overgrowth syndrome" }, { - "baseId": "70502|213768|251822|270125|270626|363941|454742|454749|454815|454817|455307|455595|455600|455602|455604|520924|520926|520927|521357|559833|560213|560334|562990|562995|562996|633635|633636|633637|691784|691785|691786|691787|691788|691789|691790|695283|698920|698921|698922|698924|698927|698928|698929|698930|698932|698933|698934|698935|698937|698938|698939|709731|709732|721300|721301|721302|721305|734934|749343|749349|830537|830538|923948|923949|944491|944492|944493|954093", + "upstreamId": "70502|213768|251822|270125|270626|363941|454742|454749|454815|454817|455307|455595|455600|455602|455604|520924|520926|520927|521357|559833|560213|560334|562990|562995|562996|633635|633636|633637|691784|691785|691786|691787|691788|691789|691790|695283|698920|698921|698922|698924|698927|698928|698929|698930|698932|698933|698934|698935|698937|698938|698939|709731|709732|721300|721301|721302|721305|734934|749343|749349|830537|830538|923948|923949|944491|944492|944493|954093", "text": "Premature aging syndrome, Penttinen type" }, { - "baseId": "70504|106815|361523|442109|442138|442159|442168|536981", + "upstreamId": "70504|106815|361523|442109|442138|442159|442168|536981", "text": "Infantile myofibromatosis 2" }, { - "baseId": "70510|211189|227133|227134|434403|434404", + "upstreamId": "70510|211189|227133|227134|434403|434404", "text": "Combined oxidative phosphorylation deficiency 39" }, { - "baseId": "70511|70512|70513|70514|70515|70516|165482|165483|207729|236923|370452|370472|370964|370969|370970|370984|370987|371349|373178|407723|407724|407725|411572|425853|425854|433377|433378|433379|438414|441358|444534|444535|444536|459284|459291|459293|459296|459298|459302|459308|459310|459603|459607|459610|459681|459682|459688|459689|459692|459696|459698|459702|460175|460184|460186|460190|460192|460196|460197|460204|460206|502675|502680|502683|524688|524689|524930|524932|524933|525034|525037|525054|525056|525059|525214|525217|525230|525239|525241|552142|563317|563319|563322|563325|563327|564150|564152|564154|564158|564159|564164|564169|565987|565992|565994|569176|569180|569184|569186|577142|578480|578481|625198|626191|638401|638402|638403|638404|638405|638406|638407|638408|638409|638410|638411|638412|638413|638414|638415|638416|638417|638418|638419|638420|638421|638422|638423|638424|638425|638426|638427|638428|687548|687549|692704|692706|692707|692709|692711|695452|701091|712071|712072|723664|723665|737241|751838|767513|767517|790919|798622|836300|836301|836302|836303|836304|836305|836306|836307|836308|836309|836310|836311|836312|836313|836314|836315|836316|836317|836318|836319|836320|836321|836322|836323|836324|836325|836326|836327|851355|851357|904251|925637|925638|925639|925640|925641|925642|925643|925644|925645|925646|934829|934830|934831|934832|940943|946685|946686|946687|946688|955901|955902|955903|955904|955905|955906|970913", + "upstreamId": "70511|70512|70513|70514|70515|70516|165482|165483|207729|236923|370452|370472|370964|370969|370970|370984|370987|371349|373178|407723|407724|407725|411572|425853|425854|433377|433378|433379|438414|441358|444534|444535|444536|459284|459291|459293|459296|459298|459302|459308|459310|459603|459607|459610|459681|459682|459688|459689|459692|459696|459698|459702|460175|460184|460186|460190|460192|460196|460197|460204|460206|502675|502680|502683|524688|524689|524930|524932|524933|525034|525037|525054|525056|525059|525214|525217|525230|525239|525241|552142|563317|563319|563322|563325|563327|564150|564152|564154|564158|564159|564164|564169|565987|565992|565994|569176|569180|569184|569186|577142|578480|578481|625198|626191|638401|638402|638403|638404|638405|638406|638407|638408|638409|638410|638411|638412|638413|638414|638415|638416|638417|638418|638419|638420|638421|638422|638423|638424|638425|638426|638427|638428|687548|687549|692704|692706|692707|692709|692711|695452|701091|712071|712072|723664|723665|737241|751838|767513|767517|790919|798622|836300|836301|836302|836303|836304|836305|836306|836307|836308|836309|836310|836311|836312|836313|836314|836315|836316|836317|836318|836319|836320|836321|836322|836323|836324|836325|836326|836327|851355|851357|904251|925637|925638|925639|925640|925641|925642|925643|925644|925645|925646|934829|934830|934831|934832|940943|946685|946686|946687|946688|955901|955902|955903|955904|955905|955906|970913", "text": "Spinal muscular atrophy, lower extremity-predominant, 2A, autosomal dominant" }, { - "baseId": "70519|70520|70521|491715|536008|802080|857414", + "upstreamId": "70519|70520|70521|491715|536008|802080|857414", "text": "Perrault syndrome 3" }, { - "baseId": "70521", + "upstreamId": "70521", "text": "Autosomal recessive hearing impairment with normal menstrual cycles" }, { - "baseId": "70522|70523|70524|200390|200391|229076|424645|424646|496733|612084|677416|677417|679207|679208|679210|857410|970767|980889|980890", + "upstreamId": "70522|70523|70524|200390|200391|229076|424645|424646|496733|612084|677416|677417|679207|679208|679210|857410|970767|980889|980890", "text": "Perrault syndrome 4" }, { - "baseId": "70522|188976|245209|496733|679206|679208|679209|679211|980894", + "upstreamId": "70522|188976|245209|496733|679206|679208|679209|679211|980894", "text": "Hydrops, lactic acidosis, and sideroblastic anemia" }, { - "baseId": "70529|70530|70531|70532|70533|70534|70535|70536|237498|237499", + "upstreamId": "70529|70530|70531|70532|70533|70534|70535|70536|237498|237499", "text": "Scalp-ear-nipple syndrome" }, { - "baseId": "70537", + "upstreamId": "70537", "text": "Mitochondrial complex 4 deficiency, nuclear type 11" }, { - "baseId": "70549|70550|249386|427633|447090|447182|447269|447275|515049|515063|515115|515116|515120|515164|515174|556592|614181|626790|626791|626792|626793|626794|626795|626796|626797|626798|626799|626800|626801|650584|650585|706668|706669|718187|718188|731691|731693|731694|745658|745659|761174|761176|761177|761179|761180|774368|774388|780313|780316|780317|780318|786976|786995|822682|822683|822684|822685|822686|822687|822688|822689|822690|822691|822692|822693|822694|921625|921626|930023|941437|952057|952058|952059|952060|952061|952062|952063|961922|977430|977431|977432|977433|977434|977435|977436|977437|977438|977439|977440|977441", + "upstreamId": "70549|70550|249386|427633|447090|447182|447269|447275|515049|515063|515115|515116|515120|515164|515174|556592|614181|626790|626791|626792|626793|626794|626795|626796|626797|626798|626799|626800|626801|650584|650585|706668|706669|718187|718188|731691|731693|731694|745658|745659|761174|761176|761177|761179|761180|774368|774388|780313|780316|780317|780318|786976|786995|822682|822683|822684|822685|822686|822687|822688|822689|822690|822691|822692|822693|822694|921625|921626|930023|941437|952057|952058|952059|952060|952061|952062|952063|961922|977430|977431|977432|977433|977434|977435|977436|977437|977438|977439|977440|977441", "text": "Severe congenital neutropenia 5, autosomal recessive" }, { - "baseId": "70553|70554|70555|70556|70557|70558|70559|132726|132727|132728|132729|237372|361215|361216|429708|482074|680054|860172|919583|971022|973037|975868", + "upstreamId": "70553|70554|70555|70556|70557|70558|70559|132726|132727|132728|132729|237372|361215|361216|429708|482074|680054|860172|919583|971022|973037|975868", "text": "Craniosynostosis 3" }, { - "baseId": "70564", + "upstreamId": "70564", "text": "Bone mineral density quantitative trait locus 17" }, { - "baseId": "70565|70565|70566|70567|70568|70569|215790|215791|410626|533147|623355|965237", + "upstreamId": "70565|70565|70566|70567|70568|70569|215790|215791|410626|533147|623355|965237", "text": "Craniosynostosis 4" }, { - "baseId": "70565|262701", + "upstreamId": "70565|262701", "text": "Chitayat syndrome" }, { - "baseId": "70572", + "upstreamId": "70572", "text": "Borrone di Rocco Crovato syndrome" }, { - "baseId": "70633|263633|361146|481389|966710|966711|966718|966719|966725|966727|966729", + "upstreamId": "70633|263633|361146|481389|966710|966711|966718|966719|966725|966727|966729", "text": "Polyhydramnios" }, { - "baseId": "70633|966711", + "upstreamId": "70633|966711", "text": "Intestinal obstruction" }, { - "baseId": "70810", + "upstreamId": "70810", "text": "Essential tremor" }, { - "baseId": "70810|720180", + "upstreamId": "70810|720180", "text": "Parkinson disease 21" }, { - "baseId": "70939|177557|207112|214177|214194|239335|239336|251350|251352|251361|251362|266978|267183|292529|292604|292623|292624|292625|292627|292629|293984|294001|297363|297381|297387|297399|297424|297439|297441|297442|297443|297444|297458|297459|620155|620156|620773|975780", + "upstreamId": "70939|177557|207112|214177|214194|239335|239336|251350|251352|251361|251362|266978|267183|292529|292604|292623|292624|292625|292627|292629|293984|294001|297363|297381|297387|297399|297424|297439|297441|297442|297443|297444|297458|297459|620155|620156|620773|975780", "text": "CC2D2A-Related Disorders" }, { - "baseId": "71217|71221|71232|620003|620723|626109", + "upstreamId": "71217|71221|71232|620003|620723|626109", "text": "POMGNT1-Related Disorders" }, { - "baseId": "71221|429593", + "upstreamId": "71221|429593", "text": "Congenital muscular alpha-dystroglycanopathy with brain and eye anomalies" }, { - "baseId": "71256|620596|620887", + "upstreamId": "71256|620596|620887", "text": "MKS1-Related Disorders" }, { - "baseId": "71377|105746|265487|270185|514649|620459", + "upstreamId": "71377|105746|265487|270185|514649|620459", "text": "CEP290-Related Disorders" }, { - "baseId": "71435|71436|469336|470875|533484|571182|573483|705426|705427|728587|728588|938932", + "upstreamId": "71435|71436|469336|470875|533484|571182|573483|705426|705427|728587|728588|938932", "text": "Dowling-Degos disease 2" }, { - "baseId": "71437|71437|71439", + "upstreamId": "71437|71437|71439", "text": "Kenny-Caffey syndrome type 2" }, { - "baseId": "71437|71437|71438|71440|71441|71442|919369|970536", + "upstreamId": "71437|71437|71438|71440|71441|71442|919369|970536", "text": "Osteocraniostenosis" }, { - "baseId": "71452|364869|364882|447509|498222|513506|515479|515489|515595|515609|536141|536142|536143|536144|536145|536146|536147|536148|536149|536150|549875|549876|549877|556796|557165|558351|627402|627403|627404|627405|627406|690507|690508|695027|823498|823499|823500|930337|940621|961246", + "upstreamId": "71452|364869|364882|447509|498222|513506|515479|515489|515595|515609|536141|536142|536143|536144|536145|536146|536147|536148|536149|536150|549875|549876|549877|556796|557165|558351|627402|627403|627404|627405|627406|690507|690508|695027|823498|823499|823500|930337|940621|961246", "text": "Multiple mitochondrial dysfunctions syndrome 3" }, { - "baseId": "71460|409749|466083|466085|466835|466836|466846|467134|467136|467136|467143|486158|530355|530451|530453|530458|530463|530465|530468|530648|530649|530652|530656|530658|530663|530878|535755|535755|568436|568442|570568|570591|570593|613047|645078|645079|645080|645081|645082|652593|726854|726855|726856|740403|740404|740405|740406|755443|755444|776207|844429|844430|844431|844432|844433|844434|844435|844436|844437|852673|927986|927987|927988|927989|937649|937650|937651|940374|949617|949618|949619|949620|957905", + "upstreamId": "71460|409749|466083|466085|466835|466836|466846|467134|467136|467136|467143|486158|530355|530451|530453|530458|530463|530465|530468|530648|530649|530652|530656|530658|530663|530878|535755|535755|568436|568442|570568|570591|570593|613047|645078|645079|645080|645081|645082|652593|726854|726855|726856|740403|740404|740405|740406|755443|755444|776207|844429|844430|844431|844432|844433|844434|844435|844436|844437|852673|927986|927987|927988|927989|937649|937650|937651|940374|949617|949618|949619|949620|957905", "text": "Immunodeficiency 32b" }, { - "baseId": "71461|409749|466083|466085|466835|466836|466846|467134|467136|467143|486158|530355|530451|530453|530458|530463|530465|530468|530648|530649|530652|530656|530658|530663|530878|535755|568436|568442|570568|570591|570593|613047|645078|645079|645080|645081|645082|652593|726854|726855|726856|740403|740404|740405|740406|755443|755444|776207|844429|844430|844431|844432|844433|844434|844435|844436|844437|852673|927986|927987|927988|927989|937649|937650|937651|940374|949617|949618|949619|949620|957905", + "upstreamId": "71461|409749|466083|466085|466835|466836|466846|467134|467136|467143|486158|530355|530451|530453|530458|530463|530465|530468|530648|530649|530652|530656|530658|530663|530878|535755|568436|568442|570568|570591|570593|613047|645078|645079|645080|645081|645082|652593|726854|726855|726856|740403|740404|740405|740406|755443|755444|776207|844429|844430|844431|844432|844433|844434|844435|844436|844437|852673|927986|927987|927988|927989|937649|937650|937651|940374|949617|949618|949619|949620|957905", "text": "Immunodeficiency 32a" }, { - "baseId": "71463|71464|71465|96871|203228|203230|203241|203242|203250|614419", + "upstreamId": "71463|71464|71465|96871|203228|203230|203241|203242|203250|614419", "text": "Early infantile epileptic encephalopathy 16" }, { - "baseId": "71504|71505", + "upstreamId": "71504|71505", "text": "Fetal hemoglobin quantitative trait locus 6" }, { - "baseId": "71507|71508|71509|71510|431967|613480", + "upstreamId": "71507|71508|71509|71510|431967|613480", "text": "Precocious puberty, central, 2" }, { - "baseId": "71562|71563|134058|134059|205252|433389|455981|513274|522709|561181|635450|683843|683845|683846|686951|686952|686953|686954|722262|765995|782734|924580", + "upstreamId": "71562|71563|134058|134059|205252|433389|455981|513274|522709|561181|635450|683843|683845|683846|686951|686952|686953|686954|722262|765995|782734|924580", "text": "Primary pulmonary hypertension 3" }, { - "baseId": "75074|75075|75076|75077|75078|414373|450686|450694|450696|450786|450788|450789|450959|518067|518148|538347|557992|558342|560559|560561|560563|560565|583085|629782|629783|629784|629785|651013|691118|691119|781290|799296|799297|826135|826136|922684|922685|922686|922687|931271|942756", + "upstreamId": "75074|75075|75076|75077|75078|414373|450686|450694|450696|450786|450788|450789|450959|518067|518148|538347|557992|558342|560559|560561|560563|560565|583085|629782|629783|629784|629785|651013|691118|691119|781290|799296|799297|826135|826136|922684|922685|922686|922687|931271|942756", "text": "Primary pulmonary hypertension 4" }, { - "baseId": "75079|75080|75081|75082|75083|75084|414727|421163|442611|513007|515106|556915|556917|650523|974508", + "upstreamId": "75079|75080|75081|75082|75083|75084|414727|421163|442611|513007|515106|556915|556917|650523|974508", "text": "Spondyloepimetaphyseal dysplasia with joint laxity, type 1, with or without fractures" }, { - "baseId": "75085|75086|75087|75088|75089|190642|267606|359211|364354|364355|414726|421163|421163|442610|442611|513007|515106|556627|556915|556917|613455|626776|650523|655030|780306|818831|822665|822665|941428|941429|975853|983771|983772", + "upstreamId": "75085|75086|75087|75088|75089|190642|267606|359211|364354|364355|414726|421163|421163|442610|442611|513007|515106|556627|556915|556917|613455|626776|650523|655030|780306|818831|822665|822665|941428|941429|975853|983771|983772", "text": "Ehlers-Danlos syndrome, progeroid type, 2" }, { - "baseId": "75090|75091|75092|513007", + "upstreamId": "75090|75091|75092|513007", "text": "Spondyloepimetaphyseal dysplasia with joint laxity, type 1, with fractures" }, { - "baseId": "75093|75096|125844|178911|181505|181508|181510|181511|181513|181514|181515|188134|194951|225852|228269|259632|263951|263954|354275|390822|446917|447226|498091|498105|551682|552492|556612|556953|626898|626899|626900|689631|761244|822785|822786|822787|850933|930058|964130", + "upstreamId": "75093|75096|125844|178911|181505|181508|181510|181511|181513|181514|181515|188134|194951|225852|228269|259632|263951|263954|354275|390822|446917|447226|498091|498105|551682|552492|556612|556953|626898|626899|626900|689631|761244|822785|822786|822787|850933|930058|964130", "text": "Noonan syndrome 8" }, { - "baseId": "75097|75098|251410|251411|251413|251414|251420|251422|251423|251425|263497|263498|362142|369076|428293|440839|440840|440842|440843|440845|440846|440847|443602|453071|453075|453079|453080|453082|453084|453089|453093|453102|453107|453109|453355|453357|453359|453363|453365|453458|453464|453467|453471|453473|453475|453477|453481|453848|453851|453857|453860|453863|453864|513545|519830|519832|519834|519841|519843|519845|519849|519856|519860|519862|519870|520081|520082|520086|520087|520097|520099|520150|520151|538981|559639|559641|559643|559645|559798|559800|559802|559804|561977|561978|561982|563610|563614|563623|563634|563636|608949|632097|632098|632099|632100|632101|632102|632103|632104|632105|632106|632107|632108|632109|632110|632111|632112|632113|632114|632115|632116|651168|686514|691538|691539|691540|691541|691543|695225|695226|695228|698450|698451|698452|698453|720861|720863|734543|734544|734545|734547|734550|748838|748842|764403|777486|781911|788771|789365|819466|828970|828971|828972|828973|828974|828975|828976|828977|828978|828979|828980|828981|828982|828983|828984|828985|828986|828987|828988|828989|828990|850976|850978|850980|851116|851118|923470|923471|923472|923473|923474|923475|923476|923477|923478|932252|932253|932254|932255|932256|932257|932258|932259|940777|940778|940779|943908|943909|943910|943911|943912|953726|953727|953728|953729|953730|953731|953732|953733|959719", + "upstreamId": "75097|75098|251410|251411|251413|251414|251420|251422|251423|251425|263497|263498|362142|369076|428293|440839|440840|440842|440843|440845|440846|440847|443602|453071|453075|453079|453080|453082|453084|453089|453093|453102|453107|453109|453355|453357|453359|453363|453365|453458|453464|453467|453471|453473|453475|453477|453481|453848|453851|453857|453860|453863|453864|513545|519830|519832|519834|519841|519843|519845|519849|519856|519860|519862|519870|520081|520082|520086|520087|520097|520099|520150|520151|538981|559639|559641|559643|559645|559798|559800|559802|559804|561977|561978|561982|563610|563614|563623|563634|563636|608949|632097|632098|632099|632100|632101|632102|632103|632104|632105|632106|632107|632108|632109|632110|632111|632112|632113|632114|632115|632116|651168|686514|691538|691539|691540|691541|691543|695225|695226|695228|698450|698451|698452|698453|720861|720863|734543|734544|734545|734547|734550|748838|748842|764403|777486|781911|788771|789365|819466|828970|828971|828972|828973|828974|828975|828976|828977|828978|828979|828980|828981|828982|828983|828984|828985|828986|828987|828988|828989|828990|850976|850978|850980|851116|851118|923470|923471|923472|923473|923474|923475|923476|923477|923478|932252|932253|932254|932255|932256|932257|932258|932259|940777|940778|940779|943908|943909|943910|943911|943912|953726|953727|953728|953729|953730|953731|953732|953733|959719", "text": "Limb-girdle muscular dystrophy, type 2S" }, { - "baseId": "75099|75100|75101|75102|75103|251123|251124|251125|251126|251127|251128|251129|251130|264149|367548|367551|367577|367580|368592|406303|406304|440783|440784|452403|452406|452412|452414|452602|452604|452605|452610|452707|452708|452716|452911|452921|452922|452928|452936|452940|452949|519284|519290|519295|519335|519338|519475|519489|519492|519541|519545|519547|536648|558990|558992|558994|558996|558998|559503|559505|559507|559509|559511|559513|561567|561569|561572|562936|562943|562948|562955|562959|622329|631403|631404|631405|631406|631407|631408|631409|631410|631411|631412|631413|631414|631415|631416|631417|631418|631419|631420|631421|631422|631423|631424|651070|655550|677314|691414|695203|698089|698091|720440|748264|792737|798533|828145|828146|828147|828148|828149|828150|828151|828152|828153|828154|828155|828156|828157|828158|828159|828160|828161|828162|923199|923200|923201|923202|923203|923204|923205|923206|923207|923208|923209|931953|931954|943555|943556|943557|943558|943559|943560|943561|943562|953482|953483|953484", + "upstreamId": "75099|75100|75101|75102|75103|251123|251124|251125|251126|251127|251128|251129|251130|264149|367548|367551|367577|367580|368592|406303|406304|440783|440784|452403|452406|452412|452414|452602|452604|452605|452610|452707|452708|452716|452911|452921|452922|452928|452936|452940|452949|519284|519290|519295|519335|519338|519475|519489|519492|519541|519545|519547|536648|558990|558992|558994|558996|558998|559503|559505|559507|559509|559511|559513|561567|561569|561572|562936|562943|562948|562955|562959|622329|631403|631404|631405|631406|631407|631408|631409|631410|631411|631412|631413|631414|631415|631416|631417|631418|631419|631420|631421|631422|631423|631424|651070|655550|677314|691414|695203|698089|698091|720440|748264|792737|798533|828145|828146|828147|828148|828149|828150|828151|828152|828153|828154|828155|828156|828157|828158|828159|828160|828161|828162|923199|923200|923201|923202|923203|923204|923205|923206|923207|923208|923209|931953|931954|943555|943556|943557|943558|943559|943560|943561|943562|953482|953483|953484", "text": "Nemaline myopathy 8" }, { - "baseId": "75106|75107|75108|75109|75110|241570", + "upstreamId": "75106|75107|75108|75109|75110|241570", "text": "Hereditary spastic paraplegia 26" }, { - "baseId": "75117|75118|75119|75120|626253", + "upstreamId": "75117|75118|75119|75120|626253", "text": "Multiple system atrophy" }, { - "baseId": "75121|75121|75122|75124|75125|75126|75127|75128|227736|251232|251234|251235|272983|367329|367681|367682|367706|443498|452534|452535|452838|452840|452856|452860|453088|453092|519429|519431|519621|519624|519628|519631|519678|519680|559048|559050|559052|559054|559056|559058|559580|559582|559584|561685|561686|563098|563100|563104|626413|631575|631576|631577|631578|631579|631580|631581|631582|631583|631584|631585|631586|651209|655561|691451|720531|730224|744023|774861|777418|781744|828341|828342|828343|828344|828345|828346|828347|828348|828349|828350|828351|851059|923268|923269|923270|923271|932019|932020|932021|932022|943624|943625|953543|953544|960520", + "upstreamId": "75121|75121|75122|75124|75125|75126|75127|75128|227736|251232|251234|251235|272983|367329|367681|367682|367706|443498|452534|452535|452838|452840|452856|452860|453088|453092|519429|519431|519621|519624|519628|519631|519678|519680|559048|559050|559052|559054|559056|559058|559580|559582|559584|561685|561686|563098|563100|563104|626413|631575|631576|631577|631578|631579|631580|631581|631582|631583|631584|631585|631586|651209|655561|691451|720531|730224|744023|774861|777418|781744|828341|828342|828343|828344|828345|828346|828347|828348|828349|828350|828351|851059|923268|923269|923270|923271|932019|932020|932021|932022|943624|943625|953543|953544|960520", "text": "Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type a, 14" }, { - "baseId": "75121|75121|75123|75124|75124|75125|75125|75126|75126|75127|75127|75128|75128|227736|227736|227737|227738|251232|251234|251235|272983|367329|367681|367682|367706|443498|452534|452535|452838|452840|452856|452860|453088|453092|519429|519431|519621|519624|519628|519631|519678|519680|559048|559050|559052|559054|559056|559058|559580|559582|559584|561685|561686|563098|563100|563104|626413|626413|631575|631576|631577|631578|631579|631580|631581|631582|631583|631584|631585|631586|651209|655561|691451|720531|730224|744023|774861|777418|781744|828341|828342|828343|828344|828345|828346|828347|828348|828349|828350|828351|851059|918843|923268|923269|923270|923271|932019|932020|932021|932022|943624|943625|953543|953544|960520", + "upstreamId": "75121|75121|75123|75124|75124|75125|75125|75126|75126|75127|75127|75128|75128|227736|227736|227737|227738|251232|251234|251235|272983|367329|367681|367682|367706|443498|452534|452535|452838|452840|452856|452860|453088|453092|519429|519431|519621|519624|519628|519631|519678|519680|559048|559050|559052|559054|559056|559058|559580|559582|559584|561685|561686|563098|563100|563104|626413|626413|631575|631576|631577|631578|631579|631580|631581|631582|631583|631584|631585|631586|651209|655561|691451|720531|730224|744023|774861|777418|781744|828341|828342|828343|828344|828345|828346|828347|828348|828349|828350|828351|851059|918843|923268|923269|923270|923271|932019|932020|932021|932022|943624|943625|953543|953544|960520", "text": "Muscular dystrophy-dystroglycanopathy (limb-girdle), type c, 14" }, { - "baseId": "75121|75124|75124|75125|75125|75126|75126|75127|75128|227736|251232|251234|251235|272983|367329|367681|367682|367706|443498|452534|452535|452838|452840|452856|452860|453088|453092|519429|519431|519621|519624|519628|519631|519678|519680|559048|559050|559052|559054|559056|559058|559580|559582|559584|561685|561686|563098|563100|563104|626413|631575|631576|631577|631578|631579|631580|631581|631582|631583|631584|631585|631586|651209|655561|691451|720531|730224|744023|774861|777418|781744|828341|828342|828343|828344|828345|828346|828347|828348|828349|828350|828351|851059|923268|923269|923270|923271|932019|932020|932021|932022|943624|943625|953543|953544|960520", + "upstreamId": "75121|75124|75124|75125|75125|75126|75126|75127|75128|227736|251232|251234|251235|272983|367329|367681|367682|367706|443498|452534|452535|452838|452840|452856|452860|453088|453092|519429|519431|519621|519624|519628|519631|519678|519680|559048|559050|559052|559054|559056|559058|559580|559582|559584|561685|561686|563098|563100|563104|626413|631575|631576|631577|631578|631579|631580|631581|631582|631583|631584|631585|631586|651209|655561|691451|720531|730224|744023|774861|777418|781744|828341|828342|828343|828344|828345|828346|828347|828348|828349|828350|828351|851059|923268|923269|923270|923271|932019|932020|932021|932022|943624|943625|953543|953544|960520", "text": "Muscular dystrophy-dystroglycanopathy (congenital with mental retardation), type b, 14" }, { - "baseId": "75130", + "upstreamId": "75130", "text": "Autosomal recessive syndrome of syndactyly, undescended testes and central nervous system defects" }, { - "baseId": "75133|75134|429677|434110|434111", + "upstreamId": "75133|75134|429677|434110|434111", "text": "Albinism, oculocutaneous, type VI" }, { - "baseId": "75236|75237|683217", + "upstreamId": "75236|75237|683217", "text": "Hypocalciuric hypercalcemia, familial, type II" }, { - "baseId": "75238|75239|75240|75241|165722", + "upstreamId": "75238|75239|75240|75241|165722", "text": "Hypocalcemia, autosomal dominant 2" }, { - "baseId": "75250|75251|75252|75253|75254|205406|254263|254264|254266|254267|254269|254270|254271|260003|363854|413317|429281|566100|579733|579750|579984|640365|701925|738190|798644|935712", + "upstreamId": "75250|75251|75252|75253|75254|205406|254263|254264|254266|254267|254269|254270|254271|260003|363854|413317|429281|566100|579733|579750|579984|640365|701925|738190|798644|935712", "text": "Ceroid lipofuscinosis, neuronal, 13" }, { - "baseId": "75256|378125|413818|470653|470654|471439|471440|472115|534396|534535|534697|534782|534787|535125|572390|573445|574449|574450|575382|649932|649933|649934|649935|689454|690268|798262|920447|929673|929674|939541|939542|939543|951721|951722", + "upstreamId": "75256|378125|413818|470653|470654|471439|471440|472115|534396|534535|534697|534782|534787|535125|572390|573445|574449|574450|575382|649932|649933|649934|649935|689454|690268|798262|920447|929673|929674|939541|939542|939543|951721|951722", "text": "Charcot-Marie-Tooth disease, X-linked dominant, 6" }, { - "baseId": "75262|342541|553398", + "upstreamId": "75262|342541|553398", "text": "Lethal congenital contracture syndrome 5" }, { - "baseId": "75270", + "upstreamId": "75270", "text": "Generalized epilepsy with febrile seizures plus 3" }, { - "baseId": "75270|201880|201889|201889|918941|964661", + "upstreamId": "75270|201880|201889|201889|918941|964661", "text": "Developmental and epileptic encephalopathy, 74" }, { - "baseId": "75272|75273|75274|75275|75276|75277|97526|97527|97528|205288|208237|208238|215118|215119|215122|215123|225869|225877|242175|242176|242177|242178|242179|242180|242181|242182|247110|255441|255444|255448|255449|264750|360144|360145|361633|373822|373831|373836|373838|373846|373848|373849|373867|373870|373880|373894|374539|374547|374560|374563|374576|374577|374897|374899|374907|374908|374911|374920|374930|374935|374939|374940|374947|374963|376853|376858|376859|376883|376895|376897|376901|376919|376922|376935|376951|376953|376954|376965|376966|376967|400481|400484|400629|400639|400642|401039|401047|401309|401311|409398|409412|409415|409416|409419|409423|409425|409429|409431|409434|413410|413411|413413|422064|422065|426142|445475|463954|464755|464759|464763|464771|464779|464785|464798|465358|465375|465382|465502|465506|465507|465511|465512|465517|465518|465618|465619|465623|465627|465629|465633|465634|465636|465640|465644|482084|505322|505371|505536|505540|505564|505567|505934|505996|506016|506024|506025|512163|512164|512165|512167|514683|529208|529211|529224|529229|529237|529238|529243|529537|529540|529541|529817|529821|529822|529828|538447|552185|552186|552187|567444|567450|567452|567456|569356|569357|569360|569363|569367|569371|569743|569745|569762|573127|573641|573642|573643|577415|578523|580044|580060|580257|611420|614406|614407|625815|643731|643732|643733|643734|643735|643736|643737|643738|643739|643740|643741|643742|643743|643744|643745|643746|643747|643748|643749|643750|643751|643752|643753|643754|643755|652599|652601|652788|652790|652792|656325|682862|684569|684570|688514|688516|688517|693779|695671|754797|760429|788007|791516|791517|791518|791519|797225|798693|800671|800672|802006|802007|802008|802009|804864|818313|820752|820753|820754|820755|820756|822101|822102|822103|822104|822105|822106|822107|822108|822109|822110|822111|822112|842909|842910|842911|842912|842913|842914|842915|842916|842917|842918|842919|842920|842921|842922|842923|842924|842925|842926|842927|842928|842929|842930|842931|842932|842933|842934|842935|842936|842937|842938|842939|842940|842941|842942|852083|919603|919604|920349|920350|927498|927499|927500|927501|927502|927503|927504|927505|927506|927507|927508|927509|927510|927511|927512|927513|937144|937145|937146|937147|937148|937149|937150|937151|937152|937153|937154|937155|937156|937157|937158|937159|937160|940336|941104|949108|949109|949110|949111|949112|949113|949114|949115|949116|949117|949118|949119|957570|957571|957572|957573|960127|961621|962865|962870|964432|964433|964434|964435|964436|964682|970506|971032|971033|971034|971035|971036|972830", + "upstreamId": "75272|75273|75274|75275|75276|75277|97526|97527|97528|205288|208237|208238|215118|215119|215122|215123|225869|225877|242175|242176|242177|242178|242179|242180|242181|242182|247110|255441|255444|255448|255449|264750|360144|360145|361633|373822|373831|373836|373838|373846|373848|373849|373867|373870|373880|373894|374539|374547|374560|374563|374576|374577|374897|374899|374907|374908|374911|374920|374930|374935|374939|374940|374947|374963|376853|376858|376859|376883|376895|376897|376901|376919|376922|376935|376951|376953|376954|376965|376966|376967|400481|400484|400629|400639|400642|401039|401047|401309|401311|409398|409412|409415|409416|409419|409423|409425|409429|409431|409434|413410|413411|413413|422064|422065|426142|445475|463954|464755|464759|464763|464771|464779|464785|464798|465358|465375|465382|465502|465506|465507|465511|465512|465517|465518|465618|465619|465623|465627|465629|465633|465634|465636|465640|465644|482084|505322|505371|505536|505540|505564|505567|505934|505996|506016|506024|506025|512163|512164|512165|512167|514683|529208|529211|529224|529229|529237|529238|529243|529537|529540|529541|529817|529821|529822|529828|538447|552185|552186|552187|567444|567450|567452|567456|569356|569357|569360|569363|569367|569371|569743|569745|569762|573127|573641|573642|573643|577415|578523|580044|580060|580257|611420|614406|614407|625815|643731|643732|643733|643734|643735|643736|643737|643738|643739|643740|643741|643742|643743|643744|643745|643746|643747|643748|643749|643750|643751|643752|643753|643754|643755|652599|652601|652788|652790|652792|656325|682862|684569|684570|688514|688516|688517|693779|695671|754797|760429|788007|791516|791517|791518|791519|797225|798693|800671|800672|802006|802007|802008|802009|804864|818313|820752|820753|820754|820755|820756|822101|822102|822103|822104|822105|822106|822107|822108|822109|822110|822111|822112|842909|842910|842911|842912|842913|842914|842915|842916|842917|842918|842919|842920|842921|842922|842923|842924|842925|842926|842927|842928|842929|842930|842931|842932|842933|842934|842935|842936|842937|842938|842939|842940|842941|842942|852083|919603|919604|920349|920350|927498|927499|927500|927501|927502|927503|927504|927505|927506|927507|927508|927509|927510|927511|927512|927513|937144|937145|937146|937147|937148|937149|937150|937151|937152|937153|937154|937155|937156|937157|937158|937159|937160|940336|941104|949108|949109|949110|949111|949112|949113|949114|949115|949116|949117|949118|949119|957570|957571|957572|957573|960127|961621|962865|962870|964432|964433|964434|964435|964436|964682|970506|971032|971033|971034|971035|971036|972830", "text": "Epileptic encephalopathy, childhood-onset" }, { - "baseId": "75284|75285|75286|75287|75288|215209|221095|221096|228413|228414|228415|228416|228418|228420|228422|228426|228427|228428|228429|228430|228431|228432|228433|228434|228435|228436|228437|228438|228439|228444|228445|228446|228447|228448|228450|228451|228452|228453|228454|228455|228457|228459|228461|228462|228465|228466|228467|236958|238267|238269|238270|238271|238272|238273|238274|238275|238276|238278|238279|359261|359349|359356|365033|365036|365129|365226|365233|365235|365238|391167|391170|391176|391182|391187|391189|391192|391195|391196|391197|391199|391207|391209|391230|391232|391233|391237|391240|391323|391327|391328|391330|391333|391334|391340|391341|405162|405163|414795|414796|421241|425363|425366|442829|442831|446930|447765|447766|447768|447770|447823|447830|447834|447838|447839|447846|447851|447857|447863|447867|447997|447999|448002|448008|448009|448011|448012|448016|448019|448074|448076|448093|448096|448102|448124|448125|448135|448137|448142|448146|448154|448156|448159|448160|448162|480675|480677|496162|498401|498402|498414|498417|498435|498442|498453|498471|498478|498624|498631|498653|515772|515825|515827|515830|515834|515836|515838|515854|515861|515863|515864|515865|515866|515867|515868|515873|515875|515876|515921|515922|515933|515948|515950|515952|515958|536589|556875|557035|557037|557039|557041|557043|557256|557258|557260|557289|557291|557303|557305|557307|557309|558473|558487|558489|558491|558493|627744|627745|627746|627747|627748|627754|627782|627783|627784|627785|627786|627787|627788|627789|627790|627791|627792|627793|627794|627795|627796|627797|627798|627799|627800|627801|627802|627803|627804|627805|627806|627807|650599|650647|683321|683324|683325|683326|685711|685712|685718|685719|685720|685725|685726|685727|685729|690588|690589|690590|695048|746437|758999|761881|761889|777106|780674|818823|818960|818961|818962|818965|823879|823880|823899|823900|823901|823902|823903|823904|823905|823906|823907|823908|823909|823910|823911|823912|823913|823914|823915|823916|823917|823918|823919|823920|823921|823922|823923|823924|823925|850771|851299|918632|918633|921988|921999|922000|922001|922002|922003|922004|930463|930473|930474|930475|930476|930477|930478|930479|930480|940631|941912|941913|941914|941918|941919|941920|941921|941922|941923|941924|941925|941926|952387|952388|952393|952394|952395|952396|952397|952398|952399", + "upstreamId": "75284|75285|75286|75287|75288|215209|221095|221096|228413|228414|228415|228416|228418|228420|228422|228426|228427|228428|228429|228430|228431|228432|228433|228434|228435|228436|228437|228438|228439|228444|228445|228446|228447|228448|228450|228451|228452|228453|228454|228455|228457|228459|228461|228462|228465|228466|228467|236958|238267|238269|238270|238271|238272|238273|238274|238275|238276|238278|238279|359261|359349|359356|365033|365036|365129|365226|365233|365235|365238|391167|391170|391176|391182|391187|391189|391192|391195|391196|391197|391199|391207|391209|391230|391232|391233|391237|391240|391323|391327|391328|391330|391333|391334|391340|391341|405162|405163|414795|414796|421241|425363|425366|442829|442831|446930|447765|447766|447768|447770|447823|447830|447834|447838|447839|447846|447851|447857|447863|447867|447997|447999|448002|448008|448009|448011|448012|448016|448019|448074|448076|448093|448096|448102|448124|448125|448135|448137|448142|448146|448154|448156|448159|448160|448162|480675|480677|496162|498401|498402|498414|498417|498435|498442|498453|498471|498478|498624|498631|498653|515772|515825|515827|515830|515834|515836|515838|515854|515861|515863|515864|515865|515866|515867|515868|515873|515875|515876|515921|515922|515933|515948|515950|515952|515958|536589|556875|557035|557037|557039|557041|557043|557256|557258|557260|557289|557291|557303|557305|557307|557309|558473|558487|558489|558491|558493|627744|627745|627746|627747|627748|627754|627782|627783|627784|627785|627786|627787|627788|627789|627790|627791|627792|627793|627794|627795|627796|627797|627798|627799|627800|627801|627802|627803|627804|627805|627806|627807|650599|650647|683321|683324|683325|683326|685711|685712|685718|685719|685720|685725|685726|685727|685729|690588|690589|690590|695048|746437|758999|761881|761889|777106|780674|818823|818960|818961|818962|818965|823879|823880|823899|823900|823901|823902|823903|823904|823905|823906|823907|823908|823909|823910|823911|823912|823913|823914|823915|823916|823917|823918|823919|823920|823921|823922|823923|823924|823925|850771|851299|918632|918633|921988|921999|922000|922001|922002|922003|922004|930463|930473|930474|930475|930476|930477|930478|930479|930480|940631|941912|941913|941914|941918|941919|941920|941921|941922|941923|941924|941925|941926|952387|952388|952393|952394|952395|952396|952397|952398|952399", "text": "Left ventricular noncompaction 8" }, { - "baseId": "75287|75288|75289", + "upstreamId": "75287|75288|75289", "text": "Dilated cardiomyopathy 1LL" }, { - "baseId": "75292|75293|226957|230649|344048|431553|682863|682863", + "upstreamId": "75292|75293|226957|230649|344048|431553|682863|682863", "text": "Deafness, autosomal recessive 89" }, { - "baseId": "75294|75295|227691|227692|612143", + "upstreamId": "75294|75295|227691|227692|612143", "text": "Cone-rod dystrophy 18" }, { - "baseId": "75299|75300|75301|75301|75302|75303|131985|131986|131987|165812|165813|168532|168533|168534|168535|205745|359705|359705|363137|428463|433821|455054|455232|455235|455691|455694|455697|455946|521519|521583|521589|521590|521845|538987|560361|560363|560365|563199|565168|576118|612709|614289|633995|633996|633997|633998|651333|721506|735163|749563|749564|759604|765179|765180|765182|765185|779323|782328|815949|830918|830919|830920|830921|830922|830923|830924|830925|830926|830927|830928|830929|830930|830931|830932|830933|830934|852216|917444|924094|924095|924096|932938|932939|932940|940007|944643|954185|954186|954187|959770|964660", + "upstreamId": "75299|75300|75301|75301|75302|75303|131985|131986|131987|165812|165813|168532|168533|168534|168535|205745|359705|359705|363137|428463|433821|455054|455232|455235|455691|455694|455697|455946|521519|521583|521589|521590|521845|538987|560361|560363|560365|563199|565168|576118|612709|614289|633995|633996|633997|633998|651333|721506|735163|749563|749564|759604|765179|765180|765182|765185|779323|782328|815949|830918|830919|830920|830921|830922|830923|830924|830925|830926|830927|830928|830929|830930|830931|830932|830933|830934|852216|917444|924094|924095|924096|932938|932939|932940|940007|944643|954185|954186|954187|959770|964660", "text": "SHORT syndrome" }, { - "baseId": "75301|75301|165812|165812|165813|165813|168532|168534|168535|359705|359705|363137|428463|433821|440012|440013|440014|440015|455054|455232|455235|455691|455694|455697|455946|521519|521583|521589|521590|521845|560361|560363|560365|563199|565168|576118|612709|614289|633995|633996|633997|633998|651333|721506|735163|749563|749564|759604|765179|765180|765182|765185|779323|782328|815949|830918|830919|830920|830921|830922|830923|830924|830925|830926|830927|830928|830929|830930|830931|830932|830933|830934|852216|918977|924094|924095|924096|932938|932939|932940|940007|944643|954185|954186|954187|959770|970813", + "upstreamId": "75301|75301|165812|165812|165813|165813|168532|168534|168535|359705|359705|363137|428463|433821|440012|440013|440014|440015|455054|455232|455235|455691|455694|455697|455946|521519|521583|521589|521590|521845|560361|560363|560365|563199|565168|576118|612709|614289|633995|633996|633997|633998|651333|721506|735163|749563|749564|759604|765179|765180|765182|765185|779323|782328|815949|830918|830919|830920|830921|830922|830923|830924|830925|830926|830927|830928|830929|830930|830931|830932|830933|830934|852216|918977|924094|924095|924096|932938|932939|932940|940007|944643|954185|954186|954187|959770|970813", "text": "Immunodeficiency 36" }, { - "baseId": "75311|75312|75315|189324|189325|227341|241059|241060|398046|398052|398075|398414|398510|408276|461231|461723|503158|503729|504078|525941|570312|639738|687711|838022|926135|935404|947335|956398", + "upstreamId": "75311|75312|75315|189324|189325|227341|241059|241060|398046|398052|398075|398414|398510|408276|461231|461723|503158|503729|504078|525941|570312|639738|687711|838022|926135|935404|947335|956398", "text": "Atrial fibrillation, familial, 14" }, { - "baseId": "75314|222828|222834|227197|243390|243394|243398|243403|243424|243440|243446|243490|243520|245146|403363|403468|403503|403533|403609|403803|403830|403844|403915|404005|410706|432965|469114|469199|471212|479908|479969|573352|575025|919892|920412|983654", + "upstreamId": "75314|222828|222834|227197|243390|243394|243398|243403|243424|243440|243446|243490|243520|245146|403363|403468|403503|403533|403609|403803|403830|403844|403915|404005|410706|432965|469114|469199|471212|479908|479969|573352|575025|919892|920412|983654", "text": "Mandibular hypoplasia, deafness, progeroid features, and lipodystrophy syndrome" }, { - "baseId": "75316|75317|75318|75319|75319|84781|191716|191832|191940|192139|192687|192688|192689|193660|195741|196054|196056|231497|231498|236918|244278|244279|244281|244282|244283|244284|244285|244287|244288|244289|244290|244291|244292|244293|244294|265896|265963|266960|268743|268885|271724|271725|272148|274250|275506|281060|281068|281079|281083|281093|281101|281668|281687|281689|281698|281708|281723|282874|282883|282886|282891|282892|282894|282896|282899|282904|282906|282913|282914|283176|283208|283210|283213|359270|365178|365179|365185|365189|365195|365197|365199|365201|365363|365380|365385|365448|365460|365461|365464|405228|414805|414807|421254|442882|448208|448212|448214|448215|448219|448277|448288|448303|448308|448309|448314|448319|448323|448325|448334|448338|448343|448344|448346|448347|448354|448402|448404|448405|448409|448411|448413|448417|448426|481599|485980|498817|516031|516037|516051|516053|516057|516060|516067|516068|516069|516072|516073|516074|516082|516084|516092|516097|516099|516194|516202|516205|516209|516213|516218|516223|516226|536598|557356|557358|557360|557362|557364|557366|557368|557405|557407|557409|557411|557413|557415|557417|557419|557421|558024|558026|558028|558030|558032|558034|558036|558038|558040|558573|558575|558577|558579|558581|558583|612539|628212|628213|628214|628215|628216|628217|628218|628219|628220|628221|628222|628223|628224|628225|628226|628227|628228|628229|628230|628231|628232|628233|628234|628235|628236|628237|628238|628239|628240|628241|628242|628243|628244|628245|650769|690658|690659|690660|690661|695061|696837|696840|696841|746620|746623|762057|778838|780758|787165|818989|818990|824354|824355|824356|824357|824358|824359|824360|824361|824362|824363|824364|824365|824366|824367|824368|824369|824370|824371|824372|824373|824374|824375|824376|824377|824378|824379|824380|824381|824382|824383|850783|922147|922148|922149|922150|922151|922152|922153|922154|922155|930644|930645|930646|930647|930648|930649|930650|930651|930652|939824|940647|942083|942084|942085|942086|942087|942088|942089|942090|942091|952502|952503|952504|952505|952506", + "upstreamId": "75316|75317|75318|75319|75319|84781|191716|191832|191940|192139|192687|192688|192689|193660|195741|196054|196056|231497|231498|236918|244278|244279|244281|244282|244283|244284|244285|244287|244288|244289|244290|244291|244292|244293|244294|265896|265963|266960|268743|268885|271724|271725|272148|274250|275506|281060|281068|281079|281083|281093|281101|281668|281687|281689|281698|281708|281723|282874|282883|282886|282891|282892|282894|282896|282899|282904|282906|282913|282914|283176|283208|283210|283213|359270|365178|365179|365185|365189|365195|365197|365199|365201|365363|365380|365385|365448|365460|365461|365464|405228|414805|414807|421254|442882|448208|448212|448214|448215|448219|448277|448288|448303|448308|448309|448314|448319|448323|448325|448334|448338|448343|448344|448346|448347|448354|448402|448404|448405|448409|448411|448413|448417|448426|481599|485980|498817|516031|516037|516051|516053|516057|516060|516067|516068|516069|516072|516073|516074|516082|516084|516092|516097|516099|516194|516202|516205|516209|516213|516218|516223|516226|536598|557356|557358|557360|557362|557364|557366|557368|557405|557407|557409|557411|557413|557415|557417|557419|557421|558024|558026|558028|558030|558032|558034|558036|558038|558040|558573|558575|558577|558579|558581|558583|612539|628212|628213|628214|628215|628216|628217|628218|628219|628220|628221|628222|628223|628224|628225|628226|628227|628228|628229|628230|628231|628232|628233|628234|628235|628236|628237|628238|628239|628240|628241|628242|628243|628244|628245|650769|690658|690659|690660|690661|695061|696837|696840|696841|746620|746623|762057|778838|780758|787165|818989|818990|824354|824355|824356|824357|824358|824359|824360|824361|824362|824363|824364|824365|824366|824367|824368|824369|824370|824371|824372|824373|824374|824375|824376|824377|824378|824379|824380|824381|824382|824383|850783|922147|922148|922149|922150|922151|922152|922153|922154|922155|930644|930645|930646|930647|930648|930649|930650|930651|930652|939824|940647|942083|942084|942085|942086|942087|942088|942089|942090|942091|952502|952503|952504|952505|952506", "text": "Charcot-Marie-Tooth disease, recessive intermediate c" }, { - "baseId": "75321|75322|75323|75324|75325|253634|253636|253638|253639|253640|253641|253642|253647|253650|253651|253652|253653|253654|371440|459508|459512|459514|459517|459752|459754|459770|459779|459984|459985|460401|460407|460415|460418|524842|525073|525218|525224|525225|525226|525380|563458|564377|564381|566089|569347|569359|569366|569375|638607|638608|638609|638610|638611|652232|692747|701116|701117|701118|701119|701121|701122|701123|701124|723693|723695|737271|737272|751873|836482|836483|836484|836485|925704|934884|934885|940162|946753|946754|946755|946756|955948|955949|983823|983824", + "upstreamId": "75321|75322|75323|75324|75325|253634|253636|253638|253639|253640|253641|253642|253647|253650|253651|253652|253653|253654|371440|459508|459512|459514|459517|459752|459754|459770|459779|459984|459985|460401|460407|460415|460418|524842|525073|525218|525224|525225|525226|525380|563458|564377|564381|566089|569347|569359|569366|569375|638607|638608|638609|638610|638611|652232|692747|701116|701117|701118|701119|701121|701122|701123|701124|723693|723695|737271|737272|751873|836482|836483|836484|836485|925704|934884|934885|940162|946753|946754|946755|946756|955948|955949|983823|983824", "text": "Nephronophthisis 16" }, { - "baseId": "75332|75334|192432|314761|314779|314781|314801|314805|321476|321487|321489|321501|327622|327637|327642|327651|328668|328736|328739|429283|493811|576143|576144|611367|868688|868689|868690|868691", + "upstreamId": "75332|75334|192432|314761|314779|314781|314801|314805|321476|321487|321489|321501|327622|327637|327642|327651|328668|328736|328739|429283|493811|576143|576144|611367|868688|868689|868690|868691", "text": "Spinocerebellar ataxia, autosomal recessive 14" }, { - "baseId": "75335", + "upstreamId": "75335", "text": "T-cell receptor alpha/beta deficiency" }, { - "baseId": "75582|405018|405020|439204|447445|447446|447447|447453|447460|447462|447467|447468|447470|447563|447567|447570|447573|447574|447576|447584|447686|447689|447691|447694|447695|447696|447698|447701|447703|447704|447705|447709|447733|447735|447737|447739|447741|447744|447748|447758|447759|513239|515407|515494|515496|515501|515503|515505|515508|515509|515510|515511|515520|515559|515560|556760|556762|556764|556766|556799|556801|556803|556805|556844|557118|557126|557127|557129|557131|558329|558331|558333|627293|627294|627295|627296|627297|627298|627299|627300|627301|627302|627303|627304|627305|627306|627307|627308|627309|627310|627311|627312|650610|650675|690469|696411|696412|696413|696414|707018|707019|707020|729955|732035|732036|732038|732042|746014|746016|746017|758887|761484|761485|789914|794548|823251|823252|823253|823254|823255|823256|823257|823258|823259|823260|823261|823262|823263|823264|823265|823266|823267|823268|823269|823270|823271|850957|921810|921811|921812|921813|921814|930248|930249|930250|930251|939790|939791|941664|941665|941666|941667|941668|952218|952219|952220", + "upstreamId": "75582|405018|405020|439204|447445|447446|447447|447453|447460|447462|447467|447468|447470|447563|447567|447570|447573|447574|447576|447584|447686|447689|447691|447694|447695|447696|447698|447701|447703|447704|447705|447709|447733|447735|447737|447739|447741|447744|447748|447758|447759|513239|515407|515494|515496|515501|515503|515505|515508|515509|515510|515511|515520|515559|515560|556760|556762|556764|556766|556799|556801|556803|556805|556844|557118|557126|557127|557129|557131|558329|558331|558333|627293|627294|627295|627296|627297|627298|627299|627300|627301|627302|627303|627304|627305|627306|627307|627308|627309|627310|627311|627312|650610|650675|690469|696411|696412|696413|696414|707018|707019|707020|729955|732035|732036|732038|732042|746014|746016|746017|758887|761484|761485|789914|794548|823251|823252|823253|823254|823255|823256|823257|823258|823259|823260|823261|823262|823263|823264|823265|823266|823267|823268|823269|823270|823271|850957|921810|921811|921812|921813|921814|930248|930249|930250|930251|939790|939791|941664|941665|941666|941667|941668|952218|952219|952220", "text": "Epilepsy, familial adult myoclonic, 5" }, { - "baseId": "75586", + "upstreamId": "75586", "text": "Craniometaphyseal dysplasia, autosomal recessive" }, { - "baseId": "75588|576098", + "upstreamId": "75588|576098", "text": "Combined oxidative phosphorylation deficiency 16" }, { - "baseId": "75589|75590|790172|861331", + "upstreamId": "75589|75590|790172|861331", "text": "Amyotrophic lateral sclerosis 19" }, { - "baseId": "75600|75601|75602|204484", + "upstreamId": "75600|75601|75602|204484", "text": "Dyschromatosis universalis hereditaria 3" }, { - "baseId": "75603|152912|152913|227449|247178|247179|364044|404842|404842|434678|446250|471394|495875|533546|537659|538491|539098|573531|573549|575107|575108|611353|648717|648718|648719|717002|717003|717004|717005|728680|728681|757548|757549|848429|971143", + "upstreamId": "75603|152912|152913|227449|247178|247179|364044|404842|404842|434678|446250|471394|495875|533546|537659|538491|539098|573531|573549|575107|575108|611353|648717|648718|648719|717002|717003|717004|717005|728680|728681|757548|757549|848429|971143", "text": "Multiple congenital anomalies-hypotonia-seizures syndrome 3" }, { - "baseId": "75604|404842|538491|539414|590510|966062", + "upstreamId": "75604|404842|538491|539414|590510|966062", "text": "Paroxysmal nocturnal hemoglobinuria 2" }, { - "baseId": "75616|512191|512192|512193|512194|512195|552313|552314|552315|622126|622127|816486|861581|964873|970374|970375", + "upstreamId": "75616|512191|512192|512193|512194|512195|552313|552314|552315|622126|622127|816486|861581|964873|970374|970375", "text": "Beaulieu-Boycott-Innes syndrome" }, { - "baseId": "75617", + "upstreamId": "75617", "text": "Susceptibility to leprosy and multibacillary leprosy" }, { - "baseId": "76319|76320|165517|165518|165519|389926|459570|459585|459587|459814|459818|459819|459822|459823|459826|459828|460456|460466|460468|503239|525107|525111|525113|525116|525243|525249|525430|525432|525433|525434|525435|563512|563515|566098|566116|566121|569430|569440|638656|638657|638658|638659|638660|638661|638662|638663|638664|638665|638666|638667|638668|638669|638670|638671|638672|652303|712128|723733|723734|737301|737303|737305|737307|744575|751912|751914|751915|767589|767590|767591|767593|777802|790935|836549|836550|836551|836552|836553|836554|836555|836556|836557|836558|836559|836560|836561|836562|836563|859779|925723|934923|934924|934925|940948|940949|946784|946785|946786|946787|946788|946789|946790|946791|955965|955966|955967|960710|966159|970918|981680", + "upstreamId": "76319|76320|165517|165518|165519|389926|459570|459585|459587|459814|459818|459819|459822|459823|459826|459828|460456|460466|460468|503239|525107|525111|525113|525116|525243|525249|525430|525432|525433|525434|525435|563512|563515|566098|566116|566121|569430|569440|638656|638657|638658|638659|638660|638661|638662|638663|638664|638665|638666|638667|638668|638669|638670|638671|638672|652303|712128|723733|723734|737301|737303|737305|737307|744575|751912|751914|751915|767589|767590|767591|767593|777802|790935|836549|836550|836551|836552|836553|836554|836555|836556|836557|836558|836559|836560|836561|836562|836563|859779|925723|934923|934924|934925|940948|940949|946784|946785|946786|946787|946788|946789|946790|946791|955965|955966|955967|960710|966159|970918|981680", "text": "Common variable immunodeficiency 10" }, { - "baseId": "76321|920031", + "upstreamId": "76321|920031", "text": "Chondrodysplasia with platyspondyly, distinctive brachydactyly, hydrocephaly, and microphthalmia" }, { - "baseId": "76324|76325", + "upstreamId": "76324|76325", "text": "Spermatogenic failure 12" }, { - "baseId": "76330|76331|76332|802219|966001", + "upstreamId": "76330|76331|76332|802219|966001", "text": "Cortical dysplasia, complex, with other brain malformations 4" }, { - "baseId": "76333|76334|428443|514284|575489|788782|918976", + "upstreamId": "76333|76334|428443|514284|575489|788782|918976", "text": "Cortical dysplasia, complex, with other brain malformations 3" }, { - "baseId": "76335|150453|626023|626024|626115|920159|965957", + "upstreamId": "76335|150453|626023|626024|626115|920159|965957", "text": "Cortical dysplasia, complex, with other brain malformations 2" }, { - "baseId": "76337|208006", + "upstreamId": "76337|208006", "text": "Primary autosomal recessive microcephaly 11" }, { - "baseId": "76337|181398|181404|181422|181442|181443|181462|181468", + "upstreamId": "76337|181398|181404|181422|181442|181443|181462|181468", "text": "Primary microcephaly" }, { - "baseId": "76339|188878|195791|483111|483112|483113|483114|483115|483116|483117|483118|626252|962792", + "upstreamId": "76339|188878|195791|483111|483112|483113|483114|483115|483116|483117|483118|626252|962792", "text": "Renal-hepatic-pancreatic dysplasia 2" }, { - "baseId": "76340|361068|861044|861045|861046|919939|919940", + "upstreamId": "76340|361068|861044|861045|861046|919939|919940", "text": "Glaucoma, primary closed-angle" }, { - "baseId": "76347|76348", + "upstreamId": "76347|76348", "text": "Dyskeratosis congenita, autosomal dominant, 4" }, { - "baseId": "76352|94266|94267|482036|512042|513325|513326|513615|672265|672266|672267|672268|672269|672270|672271|672272|672273|672274|672275|672304|672305|713805|788872|788873|802182|858748|903596|903672|919475|919476|961309", + "upstreamId": "76352|94266|94267|482036|512042|513325|513326|513615|672265|672266|672267|672268|672269|672270|672271|672272|672273|672274|672275|672304|672305|713805|788872|788873|802182|858748|903596|903672|919475|919476|961309", "text": "Hypotonia, infantile, with psychomotor retardation and characteristic facies 1" }, { - "baseId": "76354", + "upstreamId": "76354", "text": "Myopia 22, autosomal dominant" }, { - "baseId": "76368|624860", + "upstreamId": "76368|624860", "text": "Inclusion body myopathy with early-onset paget disease with or without frontotemporal dementia 3" }, { - "baseId": "76369|76370", + "upstreamId": "76369|76370", "text": "Amyotrophic lateral sclerosis 20" }, { - "baseId": "76371|252783|252784|252785|456681|457114|457125|457301|522884|522885|523021|523261|523264|564276|636094|651725|651731|692218|692219|692220|692222|695362|700021|744331|766244|796027|819866|852084|955136", + "upstreamId": "76371|252783|252784|252785|456681|457114|457125|457301|522884|522885|523021|523261|523264|564276|636094|651725|651731|692218|692219|692220|692222|695362|700021|744331|766244|796027|819866|852084|955136", "text": "Inclusion body myopathy with early-onset Paget disease with or without frontotemporal dementia 2" }, { - "baseId": "76372|790778|790779", + "upstreamId": "76372|790778|790779", "text": "Mitochondrial complex 1 deficiency, nuclear type 24" }, { - "baseId": "76376|76377|188059", + "upstreamId": "76376|76377|188059", "text": "Myopia 23, autosomal recessive" }, { - "baseId": "76379|227356|791391|791392", + "upstreamId": "76379|227356|791391|791392", "text": "Winchester syndrome" }, { - "baseId": "76380", + "upstreamId": "76380", "text": "Deafness, autosomal recessive 88" }, { - "baseId": "76385|76386|550225", + "upstreamId": "76385|76386|550225", "text": "Retinitis pigmentosa 82 with or without situs inversus" }, { - "baseId": "76387|141780|425624|552085", + "upstreamId": "76387|141780|425624|552085", "text": "Infantile liver failure syndrome 1" }, { - "baseId": "76388|88878|206601|206602|221980|224392|240817|240818|240819|240820|258642|258643|258644|258652|370756|371303|373392|373398|397316|397496|397497|397499|397726|397728|397857|397858|433866|433867|437854|444610|444613|459922|459927|459930|459931|460035|460090|460093|460356|460359|460361|460784|460786|486035|503354|503627|510171|510172|510174|510180|510181|510190|525358|525364|525370|525478|525482|525488|525665|525666|525667|563798|563800|564615|564619|566111|566346|566347|569680|638968|638969|638970|638971|651968|652108|687652|687655|687656|692867|695481|752129|767785|783616|820207|820208|836941|836942|836943|836944|836945|836946|925830|925831|925832|925833|946935|956079|960720|981697", + "upstreamId": "76388|88878|206601|206602|221980|224392|240817|240818|240819|240820|258642|258643|258644|258652|370756|371303|373392|373398|397316|397496|397497|397499|397726|397728|397857|397858|433866|433867|437854|444610|444613|459922|459927|459930|459931|460035|460090|460093|460356|460359|460361|460784|460786|486035|503354|503627|510171|510172|510174|510180|510181|510190|525358|525364|525370|525478|525482|525488|525665|525666|525667|563798|563800|564615|564619|566111|566346|566347|569680|638968|638969|638970|638971|651968|652108|687652|687655|687656|692867|695481|752129|767785|783616|820207|820208|836941|836942|836943|836944|836945|836946|925830|925831|925832|925833|946935|956079|960720|981697", "text": "Aortic aneurysm, familial thoracic 8" }, { - "baseId": "76389|76390|76391|76392|76393", + "upstreamId": "76389|76390|76391|76392|76393", "text": "Palmoplantar keratoderma, Bothnian type" }, { - "baseId": "76427|226957|354303|354304|514150|553143", + "upstreamId": "76427|226957|354303|354304|514150|553143", "text": "Optic neuropathy" }, { - "baseId": "76427|267852|360814|360901|361027", + "upstreamId": "76427|267852|360814|360901|361027", "text": "Abnormal electroretinogram" }, { - "baseId": "76427|105349|360918|360926", + "upstreamId": "76427|105349|360918|360926", "text": "Visual loss" }, { - "baseId": "76527|620046|620737|622318", + "upstreamId": "76527|620046|620737|622318", "text": "WDR35-Related Disorders" }, { - "baseId": "76527|76649|132656|188988|192063|192782|250474|250911|250915|250917|260901|283786|283829|284409|284412|284415|284460|284474|286856|288710|289412|289426|292461|292469|294773|294797|298349|298359|298422|298440|321444|339360|513805|513809|549471", + "upstreamId": "76527|76649|132656|188988|192063|192782|250474|250911|250915|250917|260901|283786|283829|284409|284412|284415|284460|284474|286856|288710|289412|289426|292461|292469|294773|294797|298349|298359|298422|298440|321444|339360|513805|513809|549471", "text": "Cranioectodermal dysplasia" }, { - "baseId": "76542|187118|190368|190422|190423|190790|237346|255459|255461|255462|255464|255465|255466|255467|255469|255470|256719|256722|256723|271607|298645|298648|298649|301051|301053|301059|305472|305495|321722|321729|321732|321767|324214|324216|324224|324226|324227|324228|324235|324237|324244|324250|324251|324255|324257|324261|324264|324265|324266|324274|324275|324279|324286|324287|328909|333770|333771|333780|333788|333790|333791|333792|333796|333798|333803|333813|333819|333820|333822|333826|333830|336680|340566|340577|340578|340585|340586|340590|340595|340598|340599|340600|340606|340610|340611|340615|340616|340620|340623|340625|340626|340628|340629|341950|341953|341954|341958|341964|341967|341968|341970|341973|341974|341978|341980|341984|342322|342336|342348|342352|347747|347762|349112|349132|349138|349140|349145|349147|494062|546277|546889|620534|714741|726433|726434|731039|731041|739964|754906|754909|754915|760398|785138|874680|874681|874682|874683|874684|874685|874686|874687|874688|874689|874690|874691|874692|874693|874694|874695|874696|874697|874698|874699|874700|874701|874702|874703|874704|874705|874706|874707|874708|874709|874710|874711|874712|874713|874714|874715|874716|874717|874718|874719|874720|874721|874722|874723|874724|876613|876614|876615|876616|876617|876618|876619|876620|876621|963283", + "upstreamId": "76542|187118|190368|190422|190423|190790|237346|255459|255461|255462|255464|255465|255466|255467|255469|255470|256719|256722|256723|271607|298645|298648|298649|301051|301053|301059|305472|305495|321722|321729|321732|321767|324214|324216|324224|324226|324227|324228|324235|324237|324244|324250|324251|324255|324257|324261|324264|324265|324266|324274|324275|324279|324286|324287|328909|333770|333771|333780|333788|333790|333791|333792|333796|333798|333803|333813|333819|333820|333822|333826|333830|336680|340566|340577|340578|340585|340586|340590|340595|340598|340599|340600|340606|340610|340611|340615|340616|340620|340623|340625|340626|340628|340629|341950|341953|341954|341958|341964|341967|341968|341970|341973|341974|341978|341980|341984|342322|342336|342348|342352|347747|347762|349112|349132|349138|349140|349145|349147|494062|546277|546889|620534|714741|726433|726434|731039|731041|739964|754906|754909|754915|760398|785138|874680|874681|874682|874683|874684|874685|874686|874687|874688|874689|874690|874691|874692|874693|874694|874695|874696|874697|874698|874699|874700|874701|874702|874703|874704|874705|874706|874707|874708|874709|874710|874711|874712|874713|874714|874715|874716|874717|874718|874719|874720|874721|874722|874723|874724|876613|876614|876615|876616|876617|876618|876619|876620|876621|963283", "text": "Osteopetrosis" }, { - "baseId": "76552", + "upstreamId": "76552", "text": "CARNITINE PALMITOYLTRANSFERASE IA POLYMORPHISM" }, { - "baseId": "76552", + "upstreamId": "76552", "text": "CPT1A ARCTIC VARIANT" }, { - "baseId": "76552|76563|99879|99880|191998|200218|200219|200220|200221|271352|358057|361583|372374|372616|461594|504343|564873|609808|609810|640393|640394|640396|693104|693105|693106|695540|701949|713110|738243|738244|738247|768709|768719|768720|775736|838927|838928|919389|956640|956646|979114|979115|979116|979117|979118|979119|979120|979121|979122|979123|979124|979125|979126|979127|979128|979129|979130|979131|979132|979133|979134|979135|979136|979137|979138", + "upstreamId": "76552|76563|99879|99880|191998|200218|200219|200220|200221|271352|358057|361583|372374|372616|461594|504343|564873|609808|609810|640393|640394|640396|693104|693105|693106|695540|701949|713110|738243|738244|738247|768709|768719|768720|775736|838927|838928|919389|956640|956646|979114|979115|979116|979117|979118|979119|979120|979121|979122|979123|979124|979125|979126|979127|979128|979129|979130|979131|979132|979133|979134|979135|979136|979137|979138", "text": "Carnitine palmitoyltransferase type I deficiency" }, { - "baseId": "76573|136331|175587", + "upstreamId": "76573|136331|175587", "text": "Idiopathic camptocormia" }, { - "baseId": "76576|133956|133957|133958|512973|512974|512975|512976|512977|512978|791196|918177|918178|919409|919410", + "upstreamId": "76576|133956|133957|133958|512973|512974|512975|512976|512977|512978|791196|918177|918178|919409|919410", "text": "Spinocerebellar ataxia type 2" }, { - "baseId": "76666", + "upstreamId": "76666", "text": "PRRT2 insufficiency" }, { - "baseId": "76763", + "upstreamId": "76763", "text": "FGFR3-related disorder" }, { - "baseId": "76805|135054|135055|135056|135057|141924|141930|172081|172082|190927|193743|195779|195780|201728|201736|201737|201743|292252|425599|443586|496375|561913|563464|631943|686501|709167|764322|828805|828811|978016|978017", + "upstreamId": "76805|135054|135055|135056|135057|141924|141930|172081|172082|190927|193743|195779|195780|201728|201736|201737|201743|292252|425599|443586|496375|561913|563464|631943|686501|709167|764322|828805|828811|978016|978017", "text": "Late-infantile neuronal ceroid lipofuscinosis" }, { - "baseId": "76920|76920|76921|266842|300777|300779|300781|300789|300795|300799|300806|300808|300810|300811|300812|300830|303692|303694|303701|303713|303720|303724|303731|308260|308271|308274|308275|308278|308288|308290|308291|308292|308297|308298|308299|308301|308304|308308|308309|308313|308324|308326|308330|308333|308335|308338|308367|308370|308371|308377|308378|308381|308399|308408|308409|308410|308416|308420|369003|369005|413715|413716|443976|455661|455667|455668|455673|455676|455679|455684|455686|455688|455693|455695|455698|455705|455717|455727|455729|455736|455738|455858|455861|455865|455880|455883|455884|455886|455887|455891|455892|456277|456278|456281|456284|456292|456296|456307|456308|456591|456593|456594|456602|456603|456619|456623|456624|456629|456634|456639|456648|456657|481764|481765|512907|512908|512910|521711|521712|521719|521721|521722|521724|521738|521745|521750|521752|521755|522054|522055|522056|522057|522067|522075|522078|522081|522086|522088|522089|522096|522097|522098|522101|522102|522104|522107|522110|522111|522112|522113|522114|522115|522121|522123|522125|522127|522133|522135|522138|522141|522414|522423|522425|522428|522430|522434|522438|522453|522455|522457|522459|522464|522469|522475|560771|560772|560774|560783|560785|560787|560788|560793|560795|560804|560806|560910|560911|560914|560918|560920|560924|560925|560927|560931|560933|560934|560935|560937|560942|560948|560949|563633|563635|563638|563642|563646|563649|563652|563653|563657|563659|563661|563665|563669|565760|565762|565767|565773|565786|565789|565790|565793|565796|565797|565801|565802|565809|565811|565820|565833|578451|635013|635014|635015|635016|635017|635018|635019|635020|635021|635022|635023|635024|635025|635026|635027|635028|635029|635030|635031|635032|635033|635034|635035|635036|635037|635038|635039|635040|635041|635042|635043|635044|635045|635046|635047|635048|635049|635050|635051|635052|635053|635054|635055|635056|635057|635058|635059|635060|635061|635062|635063|635064|635065|635066|635067|635068|635069|635070|635071|635072|635073|635074|635075|635076|635077|635078|635079|635080|635081|635082|635083|635084|635085|635086|635087|635088|635089|635090|635091|635092|635093|635094|635095|635096|635097|635098|635099|635100|635101|635102|635103|635104|635105|635106|635107|635108|635109|635110|635111|635112|635113|635114|635115|635116|651572|651588|651620|651622|651628|686904|692014|692015|692017|692018|692019|692020|692021|692022|692023|692024|692025|692026|692027|692030|692033|692034|692035|695322|695323|695324|695326|699630|699632|699633|699634|699635|710569|710570|710571|722083|722085|722086|765747|765753|782588|782592|787322|787325|787329|787341|787342|787346|787349|787351|787366|787415|787417|787421|787422|787425|787426|787428|787431|787433|787437|787441|787443|787446|787448|787474|787476|787478|787480|787483|787486|787489|787494|787496|787497|787499|787504|787506|787557|787559|787560|787565|787567|787574|787577|787579|787592|787594|787596|787597|795881|795883|795884|819702|832079|832080|832081|832082|832083|832084|832085|832086|832087|832088|832089|832090|832091|832092|832093|832094|832095|832096|832097|832098|832099|832100|832101|832102|832103|832104|832105|832106|832107|832108|832109|832110|832111|832112|832113|832114|832115|832116|832117|832118|832119|832120|832121|832122|832123|832124|832125|832126|832127|832128|832129|832130|832131|832132|832133|832134|832135|832136|832137|832138|832139|832140|832141|832142|832143|832144|832145|832146|832147|832148|832149|832150|832151|832152|832153|851328|851330|851368|919044|924390|924391|924392|924393|924394|924395|924396|924397|924398|924399|924400|924401|924402|924403|924404|924405|924406|924407|924408|924409|924410|924411|924412|924413|924414|933372|933373|933374|933375|933376|933377|933378|933379|933380|933381|933382|933383|933384|933385|933386|933387|933388|933389|933390|945078|945079|945080|945081|945082|945083|945084|945085|945086|945087|945088|945089|945090|945091|945092|945093|945094|945095|945096|945097|945098|945099|945100|945101|945102|945103|945104|945105|954505|954506|954507|954508|954509|954510|954511|954512|954513|954514|954515|954516|954517|954518|954519|954520|954521|954522|954523|954524|954525|954526|954527|954528|954529|954530|954531|954532|954533|954534|954535|954536|954537|954538|954539|954540|954541|954542|954543|954544|954545|954546|954547|954548|954549|954550|954551|954552|954553|954554|954555|954556|954557|954558|954559|954560|954561|954562|954563|954564|954565|954566|954567|954568|954569|954570|954571|954572|954573|954574|954575|954576|954577|954578|954579|954580|954581|954582|954583|954584|954585|954586|954587|954588|954589|954590|954591|954592|954593|954594|954595|954596|954597|954598|954599|954600|954601|954602|954603|954604|954605|954606|954607|954608|954609|954610|954611|954612|954613|954614|954615|954616|954617|954618|954619|954620|954621|954622|954623|954624|954625|954626|954627|954628|954629|954630|954631|954632|954633|954634|954635|954636|954637|954638|954639|954640|954641|954642|954643|954644|954645|954646|954647|954648|954649|954650|954651|954652|954653|954654|954655|954656|954657|954658|954659|954660|954661|954662|954663|954664|954665|954666|954667|954668|954669|954670|954671|954672|954673|954674|954675|954676|954677|954678|954679|954680|954681|954682|954683|954684|954685|954686|954687|954688|954689|954690|954691|954692|954693|954694|954695|954696|954697|954698|954699|954700|954701|954702|954703|954704|954705|954706|954707|954708|954709|954710|954711|954712|954713|954714|954715|954716|954717|954718|954719|954720|954721|954722|954723|954724|954725|954726|954727|954728|954729|954730|954731|954732|954733|954734|954735|954736|954737|954738|954739|954740|954741|954742|954743|954744|954745|954746|954747|954748|954749|954750|954751|954752|954753|954754|954755|954756|954757|954758|954759|954760|954761|954762|954763|954764|954765|954766|954767|954768|954769|954770|954771|954772|954773|954774|954775|954776|954777|954778|954779|954780|954781|954782|954783|954784|954785|954786|954787|954788|954789|954790|954791|954792|954793|954794|954795|959809|960589|960590|960591|960592|960593|960594|960595|960596|960597|960598|960599|960600|960601|960602", + "upstreamId": "76920|76920|76921|266842|300777|300779|300781|300789|300795|300799|300806|300808|300810|300811|300812|300830|303692|303694|303701|303713|303720|303724|303731|308260|308271|308274|308275|308278|308288|308290|308291|308292|308297|308298|308299|308301|308304|308308|308309|308313|308324|308326|308330|308333|308335|308338|308367|308370|308371|308377|308378|308381|308399|308408|308409|308410|308416|308420|369003|369005|413715|413716|443976|455661|455667|455668|455673|455676|455679|455684|455686|455688|455693|455695|455698|455705|455717|455727|455729|455736|455738|455858|455861|455865|455880|455883|455884|455886|455887|455891|455892|456277|456278|456281|456284|456292|456296|456307|456308|456591|456593|456594|456602|456603|456619|456623|456624|456629|456634|456639|456648|456657|481764|481765|512907|512908|512910|521711|521712|521719|521721|521722|521724|521738|521745|521750|521752|521755|522054|522055|522056|522057|522067|522075|522078|522081|522086|522088|522089|522096|522097|522098|522101|522102|522104|522107|522110|522111|522112|522113|522114|522115|522121|522123|522125|522127|522133|522135|522138|522141|522414|522423|522425|522428|522430|522434|522438|522453|522455|522457|522459|522464|522469|522475|560771|560772|560774|560783|560785|560787|560788|560793|560795|560804|560806|560910|560911|560914|560918|560920|560924|560925|560927|560931|560933|560934|560935|560937|560942|560948|560949|563633|563635|563638|563642|563646|563649|563652|563653|563657|563659|563661|563665|563669|565760|565762|565767|565773|565786|565789|565790|565793|565796|565797|565801|565802|565809|565811|565820|565833|578451|635013|635014|635015|635016|635017|635018|635019|635020|635021|635022|635023|635024|635025|635026|635027|635028|635029|635030|635031|635032|635033|635034|635035|635036|635037|635038|635039|635040|635041|635042|635043|635044|635045|635046|635047|635048|635049|635050|635051|635052|635053|635054|635055|635056|635057|635058|635059|635060|635061|635062|635063|635064|635065|635066|635067|635068|635069|635070|635071|635072|635073|635074|635075|635076|635077|635078|635079|635080|635081|635082|635083|635084|635085|635086|635087|635088|635089|635090|635091|635092|635093|635094|635095|635096|635097|635098|635099|635100|635101|635102|635103|635104|635105|635106|635107|635108|635109|635110|635111|635112|635113|635114|635115|635116|651572|651588|651620|651622|651628|686904|692014|692015|692017|692018|692019|692020|692021|692022|692023|692024|692025|692026|692027|692030|692033|692034|692035|695322|695323|695324|695326|699630|699632|699633|699634|699635|710569|710570|710571|722083|722085|722086|765747|765753|782588|782592|787322|787325|787329|787341|787342|787346|787349|787351|787366|787415|787417|787421|787422|787425|787426|787428|787431|787433|787437|787441|787443|787446|787448|787474|787476|787478|787480|787483|787486|787489|787494|787496|787497|787499|787504|787506|787557|787559|787560|787565|787567|787574|787577|787579|787592|787594|787596|787597|795881|795883|795884|819702|832079|832080|832081|832082|832083|832084|832085|832086|832087|832088|832089|832090|832091|832092|832093|832094|832095|832096|832097|832098|832099|832100|832101|832102|832103|832104|832105|832106|832107|832108|832109|832110|832111|832112|832113|832114|832115|832116|832117|832118|832119|832120|832121|832122|832123|832124|832125|832126|832127|832128|832129|832130|832131|832132|832133|832134|832135|832136|832137|832138|832139|832140|832141|832142|832143|832144|832145|832146|832147|832148|832149|832150|832151|832152|832153|851328|851330|851368|919044|924390|924391|924392|924393|924394|924395|924396|924397|924398|924399|924400|924401|924402|924403|924404|924405|924406|924407|924408|924409|924410|924411|924412|924413|924414|933372|933373|933374|933375|933376|933377|933378|933379|933380|933381|933382|933383|933384|933385|933386|933387|933388|933389|933390|945078|945079|945080|945081|945082|945083|945084|945085|945086|945087|945088|945089|945090|945091|945092|945093|945094|945095|945096|945097|945098|945099|945100|945101|945102|945103|945104|945105|954505|954506|954507|954508|954509|954510|954511|954512|954513|954514|954515|954516|954517|954518|954519|954520|954521|954522|954523|954524|954525|954526|954527|954528|954529|954530|954531|954532|954533|954534|954535|954536|954537|954538|954539|954540|954541|954542|954543|954544|954545|954546|954547|954548|954549|954550|954551|954552|954553|954554|954555|954556|954557|954558|954559|954560|954561|954562|954563|954564|954565|954566|954567|954568|954569|954570|954571|954572|954573|954574|954575|954576|954577|954578|954579|954580|954581|954582|954583|954584|954585|954586|954587|954588|954589|954590|954591|954592|954593|954594|954595|954596|954597|954598|954599|954600|954601|954602|954603|954604|954605|954606|954607|954608|954609|954610|954611|954612|954613|954614|954615|954616|954617|954618|954619|954620|954621|954622|954623|954624|954625|954626|954627|954628|954629|954630|954631|954632|954633|954634|954635|954636|954637|954638|954639|954640|954641|954642|954643|954644|954645|954646|954647|954648|954649|954650|954651|954652|954653|954654|954655|954656|954657|954658|954659|954660|954661|954662|954663|954664|954665|954666|954667|954668|954669|954670|954671|954672|954673|954674|954675|954676|954677|954678|954679|954680|954681|954682|954683|954684|954685|954686|954687|954688|954689|954690|954691|954692|954693|954694|954695|954696|954697|954698|954699|954700|954701|954702|954703|954704|954705|954706|954707|954708|954709|954710|954711|954712|954713|954714|954715|954716|954717|954718|954719|954720|954721|954722|954723|954724|954725|954726|954727|954728|954729|954730|954731|954732|954733|954734|954735|954736|954737|954738|954739|954740|954741|954742|954743|954744|954745|954746|954747|954748|954749|954750|954751|954752|954753|954754|954755|954756|954757|954758|954759|954760|954761|954762|954763|954764|954765|954766|954767|954768|954769|954770|954771|954772|954773|954774|954775|954776|954777|954778|954779|954780|954781|954782|954783|954784|954785|954786|954787|954788|954789|954790|954791|954792|954793|954794|954795|959809|960589|960590|960591|960592|960593|960594|960595|960596|960597|960598|960599|960600|960601|960602", "text": "Epidermolysis bullosa simplex, autosomal recessive 2" }, { - "baseId": "76922|214518", + "upstreamId": "76922|214518", "text": "MACULAR DEGENERATION, AGE-RELATED, 13, SUSCEPTIBILITY TO" }, { - "baseId": "76925|76926|76927|227290|229390|229393|229399|229400|229406|229407|229412|229414|415020|496429|552091|799435|903669|981516", + "upstreamId": "76925|76926|76927|227290|229390|229393|229399|229400|229406|229407|229412|229414|415020|496429|552091|799435|903669|981516", "text": "Ventricular tachycardia, catecholaminergic polymorphic, 5, with or without muscle weakness" }, { - "baseId": "76929|76930|858728", + "upstreamId": "76929|76930|858728", "text": "Mitochondrial complex III deficiency, nuclear type 6" }, { - "baseId": "76931|76932|76933|76934|76935|76936|393851", + "upstreamId": "76931|76932|76933|76934|76935|76936|393851", "text": "Ciliary dyskinesia, primary, 22" }, { - "baseId": "76939", + "upstreamId": "76939", "text": "Body mass index quantitative trait locus 18" }, { - "baseId": "76945|76946|76947|76948|791643", + "upstreamId": "76945|76946|76947|76948|791643", "text": "Microcornea, myopic chorioretinal atrophy, and telecanthus" }, { - "baseId": "76950|76951|76952|76953|106835|205561|221943|240768|240769|240770|240771|240772|240773|240774|240775|240776|240777|240778|240779|240780|240781|243961|243962|243963|243964|397221|397225|397228|397229|397231|397233|397234|397235|397241|397425|397427|397430|397622|397625|397633|397634|397635|397638|397641|397647|397652|397657|397667|397668|397760|397762|397765|397768|397773|459761|459763|459767|459944|459946|459949|459951|459958|459966|459968|459971|460223|460229|460231|460640|460643|460651|460653|460658|460659|460661|460662|525062|525064|525069|525074|525076|525264|525272|525276|525282|525387|525389|525581|552288|563685|563688|563692|564554|564555|564556|564560|566252|569612|638843|638844|638845|638846|638847|638848|638849|638850|638851|638852|638853|638854|638855|638856|638857|651961|652319|684170|687619|687620|687622|687625|752069|787580|820203|836793|836794|836795|836796|836797|836798|836799|836800|836801|925789|925790|925791|935014|935015|946871|956037|956038|956039|960718|960719", + "upstreamId": "76950|76951|76952|76953|106835|205561|221943|240768|240769|240770|240771|240772|240773|240774|240775|240776|240777|240778|240779|240780|240781|243961|243962|243963|243964|397221|397225|397228|397229|397231|397233|397234|397235|397241|397425|397427|397430|397622|397625|397633|397634|397635|397638|397641|397647|397652|397657|397667|397668|397760|397762|397765|397768|397773|459761|459763|459767|459944|459946|459949|459951|459958|459966|459968|459971|460223|460229|460231|460640|460643|460651|460653|460658|460659|460661|460662|525062|525064|525069|525074|525076|525264|525272|525276|525282|525387|525389|525581|552288|563685|563688|563692|564554|564555|564556|564560|566252|569612|638843|638844|638845|638846|638847|638848|638849|638850|638851|638852|638853|638854|638855|638856|638857|651961|652319|684170|687619|687620|687622|687625|752069|787580|820203|836793|836794|836795|836796|836797|836798|836799|836800|836801|925789|925790|925791|935014|935015|946871|956037|956038|956039|960718|960719", "text": "Primary ciliary dyskinesia 23" }, { - "baseId": "76963|76964|170188", + "upstreamId": "76963|76964|170188", "text": "Metacarpal 4-5 fusion" }, { - "baseId": "76965|76966|190050|190052|206701|224176|238121|238122|257907|257911|359196|362133|364334|364337|364365|364367|390765|390767|390769|390773|390778|440340|446985|447051|447055|447091|447093|447138|481127|497975|497998|509061|509066|514977|514983|514985|515008|515013|515041|556587|556840|556978|576393|576401|614648|614649|614650|614651|626610|626611|626612|677121|683253|685527|685528|792823|815974|822537|822538|929962|929963|929964|941381|941382|941383|952015|964123", + "upstreamId": "76965|76966|190050|190052|206701|224176|238121|238122|257907|257911|359196|362133|364334|364337|364365|364367|390765|390767|390769|390773|390778|440340|446985|447051|447055|447091|447093|447138|481127|497975|497998|509061|509066|514977|514983|514985|515008|515013|515041|556587|556840|556978|576393|576401|614648|614649|614650|614651|626610|626611|626612|677121|683253|685527|685528|792823|815974|822537|822538|929962|929963|929964|941381|941382|941383|952015|964123", "text": "Spinocerebellar ataxia type 19/22" }, { - "baseId": "76974|76975|622332|622333|918850", + "upstreamId": "76974|76975|622332|622333|918850", "text": "Primary aldosteronism, seizures, and neurologic abnormalities" }, { - "baseId": "76979|434673", + "upstreamId": "76979|434673", "text": "Spinocerebellar ataxia type 26" }, { - "baseId": "76980|76981|76982|136395|224975|224976|224977|224978|236851|444275|488207|508757|513166|513170|513216|576331|621027|970880", + "upstreamId": "76980|76981|76982|136395|224975|224976|224977|224978|236851|444275|488207|508757|513166|513170|513216|576331|621027|970880", "text": "Hartsfield syndrome" }, { - "baseId": "76985", + "upstreamId": "76985", "text": "Hypogonadotropic hypogonadism 10 with or without anosmia" }, { - "baseId": "76988|77012|204060|205782|214480|260139|264340|264749|264789|408687|440937|444927|511891|512237|614601|655263|712015|795046|806228|848468|954352|966506|966507|966508|966509|966510|966511|966512|966513|966514|966515|966516|966517|966518|966519|966520|966521|966522|966523|966524|966525|966526|966527|966528|966529|966530|966531|966532|966533|966534|966535|966536|966537|966538|966539|966540|966541", + "upstreamId": "76988|77012|204060|205782|214480|260139|264340|264749|264789|408687|440937|444927|511891|512237|614601|655263|712015|795046|806228|848468|954352|966506|966507|966508|966509|966510|966511|966512|966513|966514|966515|966516|966517|966518|966519|966520|966521|966522|966523|966524|966525|966526|966527|966528|966529|966530|966531|966532|966533|966534|966535|966536|966537|966538|966539|966540|966541", "text": "Rare genetic intellectual disability" }, { - "baseId": "76991|132637|439184|469018|469423|469841|469848|469852|532324|532350|532352|532357|532790|538478|571984|572674|574769|574770|574771|574772|574773|574774|624646|624647|624648|647354|647355|647356|647357|647358|647359|647360|647361|647362|647363|647364|647365|653557|716016|716017|727758|741414|741415|780036|800091|821194|821195|821196|846971|846972|846973|846974|846975|846976|846977|846978|846979|846980|846981|846982|846983|928749|928750|938474|938475|938476|958484|958485|958486|958487", + "upstreamId": "76991|132637|439184|469018|469423|469841|469848|469852|532324|532350|532352|532357|532790|538478|571984|572674|574769|574770|574771|574772|574773|574774|624646|624647|624648|647354|647355|647356|647357|647358|647359|647360|647361|647362|647363|647364|647365|653557|716016|716017|727758|741414|741415|780036|800091|821194|821195|821196|846971|846972|846973|846974|846975|846976|846977|846978|846979|846980|846981|846982|846983|928749|928750|938474|938475|938476|958484|958485|958486|958487", "text": "Immunodeficiency 12" }, { - "baseId": "76992|76993|76994|76995|76996|205749|226780|237457|252543|252544|252545|259849|264218|359607|362147|368798|368803|369102|369106|369341|370629|370634|421607|431025|431026|431027|431028|431029|431030|431031|431032|431033|431034|431035|431036|431037|431038|431039|431040|431041|431042|431043|431044|431045|431046|431047|431048|431049|431050|431051|431052|431053|431054|431055|431056|431057|431058|431059|431060|431061|431062|431063|431064|431065|431066|431067|431068|431069|431070|431071|431072|431073|431074|431075|431076|431077|431078|431079|431080|431081|431082|431083|431084|431085|431086|431087|431088|431089|431090|431091|431092|431093|431094|431095|431096|431097|431098|431099|431100|431101|431102|431103|431104|431105|431106|431107|431108|431109|431110|431111|431112|431113|431114|431115|431116|431117|431118|431119|431120|431121|431122|431123|431124|431125|431126|431127|431128|431129|431130|431131|431132|431133|431134|431135|431136|431137|431138|431139|431140|431141|431142|431143|431144|431145|431146|431147|431148|431149|431150|431151|431152|431153|431154|431155|431156|431157|431158|431159|431160|431161|431162|431163|431164|431165|431166|431167|431168|431169|431170|431171|431172|431173|431174|431175|431176|431177|431178|431179|431180|431181|431182|431183|431184|431185|431186|431187|431188|431189|431190|431191|431192|431193|431194|431195|431196|431197|431198|431199|431200|431201|431202|431203|431204|431205|431206|431207|431208|431209|431210|431211|431212|431213|431214|431215|431216|431217|431218|431219|431220|431221|431222|431223|431224|431225|431226|431227|431228|431229|431230|431231|431232|431233|431234|431235|431236|431237|431238|431239|431240|431241|431242|431243|431244|431245|431246|431247|431248|431249|431250|431251|431252|431253|431254|431255|431256|431257|431258|431259|431260|431261|431262|431263|431264|431265|431266|431267|431268|431269|431270|431271|431273|431274|431275|431276|431277|431278|431279|431280|431281|431282|431283|431284|431285|431286|431287|431288|431289|431290|431291|431292|431293|431294|431295|431296|431297|431298|431299|431300|431301|431302|431303|431304|431305|431306|431307|431308|431309|431310|431311|431312|431313|431314|431315|431316|431317|431318|431319|431320|431321|431322|431323|431324|431325|431326|431327|431328|431329|431330|431331|431332|431333|431334|431335|431336|431337|431338|431339|431340|431341|431342|431343|431344|431345|431346|431347|431348|431349|431350|431351|431352|431353|431354|431355|431356|431357|431358|431359|431360|431361|431362|431363|431364|431365|431366|431367|431368|431369|431370|431371|431372|431373|431374|431375|431376|431377|431378|431379|431380|431381|431382|431383|682346|790668|790669|792761|904216|905862|964831", + "upstreamId": "76992|76993|76994|76995|76996|205749|226780|237457|252543|252544|252545|259849|264218|359607|362147|368798|368803|369102|369106|369341|370629|370634|421607|431025|431026|431027|431028|431029|431030|431031|431032|431033|431034|431035|431036|431037|431038|431039|431040|431041|431042|431043|431044|431045|431046|431047|431048|431049|431050|431051|431052|431053|431054|431055|431056|431057|431058|431059|431060|431061|431062|431063|431064|431065|431066|431067|431068|431069|431070|431071|431072|431073|431074|431075|431076|431077|431078|431079|431080|431081|431082|431083|431084|431085|431086|431087|431088|431089|431090|431091|431092|431093|431094|431095|431096|431097|431098|431099|431100|431101|431102|431103|431104|431105|431106|431107|431108|431109|431110|431111|431112|431113|431114|431115|431116|431117|431118|431119|431120|431121|431122|431123|431124|431125|431126|431127|431128|431129|431130|431131|431132|431133|431134|431135|431136|431137|431138|431139|431140|431141|431142|431143|431144|431145|431146|431147|431148|431149|431150|431151|431152|431153|431154|431155|431156|431157|431158|431159|431160|431161|431162|431163|431164|431165|431166|431167|431168|431169|431170|431171|431172|431173|431174|431175|431176|431177|431178|431179|431180|431181|431182|431183|431184|431185|431186|431187|431188|431189|431190|431191|431192|431193|431194|431195|431196|431197|431198|431199|431200|431201|431202|431203|431204|431205|431206|431207|431208|431209|431210|431211|431212|431213|431214|431215|431216|431217|431218|431219|431220|431221|431222|431223|431224|431225|431226|431227|431228|431229|431230|431231|431232|431233|431234|431235|431236|431237|431238|431239|431240|431241|431242|431243|431244|431245|431246|431247|431248|431249|431250|431251|431252|431253|431254|431255|431256|431257|431258|431259|431260|431261|431262|431263|431264|431265|431266|431267|431268|431269|431270|431271|431273|431274|431275|431276|431277|431278|431279|431280|431281|431282|431283|431284|431285|431286|431287|431288|431289|431290|431291|431292|431293|431294|431295|431296|431297|431298|431299|431300|431301|431302|431303|431304|431305|431306|431307|431308|431309|431310|431311|431312|431313|431314|431315|431316|431317|431318|431319|431320|431321|431322|431323|431324|431325|431326|431327|431328|431329|431330|431331|431332|431333|431334|431335|431336|431337|431338|431339|431340|431341|431342|431343|431344|431345|431346|431347|431348|431349|431350|431351|431352|431353|431354|431355|431356|431357|431358|431359|431360|431361|431362|431363|431364|431365|431366|431367|431368|431369|431370|431371|431372|431373|431374|431375|431376|431377|431378|431379|431380|431381|431382|431383|682346|790668|790669|792761|904216|905862|964831", "text": "Mitochondrial DNA depletion syndrome 13 (encephalomyopathic type)" }, { - "baseId": "76997|76998|137712|227699|331230|399906|399958|400191|464570|464635|477067|528380|566698|573026", + "upstreamId": "76997|76998|137712|227699|331230|399906|399958|400191|464570|464635|477067|528380|566698|573026", "text": "Rhabdomyosarcoma, embryonal, 2" }, { - "baseId": "77009|77010|77011|77012|77012|208289|208289|361222|409653|425224|429815|486765|488166|513460|653891|677451|791623|791624|791625|802013|858355|919665|963810|964456", + "upstreamId": "77009|77010|77011|77012|77012|208289|208289|361222|409653|425224|429815|486765|488166|513460|653891|677451|791623|791624|791625|802013|858355|919665|963810|964456", "text": "Early infantile epileptic encephalopathy 17" }, { - "baseId": "77012|205293|205294|208289|260118|409653|417339|417343|513460|536092|578532|677451", + "upstreamId": "77012|205293|205294|208289|260118|409653|417339|417343|513460|536092|578532|677451", "text": "Neurodevelopmental disorder with involuntary movements" }, { - "baseId": "77226|77230", + "upstreamId": "77226|77230", "text": "Naegeli-Franceschetti-Jadassohn syndrome" }, { - "baseId": "77430|324506|350559|350560|351599|351601|447726|515517|515521|627319|732050|743657|746024|761491|761492|823275|921816|921817|930253|941669|952222", + "upstreamId": "77430|324506|350559|350560|351599|351601|447726|515517|515521|627319|732050|743657|746024|761491|761492|823275|921816|921817|930253|941669|952222", "text": "Inflammatory bowel disease" }, { - "baseId": "77689|165538|178581|178686", + "upstreamId": "77689|165538|178581|178686", "text": "Collapse (finding)" }, { - "baseId": "77689", + "upstreamId": "77689", "text": "History of Sudden Cardiac Death" }, { - "baseId": "77770|361929", + "upstreamId": "77770|361929", "text": "Metabolic disease" }, { - "baseId": "77872|77873|77874|77875|77876|153742|469628|539100", + "upstreamId": "77872|77873|77874|77875|77876|153742|469628|539100", "text": "Primary ciliary dyskinesia 24" }, { - "baseId": "77879|77880|174516|174517|212521|221631|239937|252377|303151|307630|307640|307814|307821|456535|896457|896458|896459|896460|896461|896462|896463|900234", + "upstreamId": "77879|77880|174516|174517|212521|221631|239937|252377|303151|307630|307640|307814|307821|456535|896457|896458|896459|896460|896461|896462|896463|900234", "text": "Ciliary dyskinesia, primary, 12" }, { - "baseId": "77881|77882|77883|238290|359267|391227|391261|391263|391277|391357|391397|405179|421247|426650|427825|434567|434684|442854|480627|550253|578383|583081|590037|627914|802122|858545|858546|920150", + "upstreamId": "77881|77882|77883|238290|359267|391227|391261|391263|391277|391357|391397|405179|421247|426650|427825|434567|434684|442854|480627|550253|578383|583081|590037|627914|802122|858545|858546|920150", "text": "Early infantile epileptic encephalopathy 18" }, { - "baseId": "78058|78261|78277|78516|78717|78885", + "upstreamId": "78058|78261|78277|78516|78717|78885", "text": "Acquired long QT syndrome" }, { - "baseId": "78511|78586|78587", + "upstreamId": "78511|78586|78587", "text": "Long QT syndrome, drug-associated" }, { - "baseId": "78605", + "upstreamId": "78605", "text": "SCN5A-Related Arrhythmias" }, { - "baseId": "78735|196833", + "upstreamId": "78735|196833", "text": "SCN5A-related disorder" }, { - "baseId": "78963", + "upstreamId": "78963", "text": "Macular schisis" }, { - "baseId": "78963", + "upstreamId": "78963", "text": "Peripheral schisis" }, { - "baseId": "79064|615309|615444", + "upstreamId": "79064|615309|615444", "text": "Coagulation factor deficiency syndrome" }, { - "baseId": "79214|151696|210313|210342|242691|433256|653401|672282|672294|672295|672296", + "upstreamId": "79214|151696|210313|210342|242691|433256|653401|672282|672294|672295|672296", "text": "Midaortic syndrome" }, { - "baseId": "79323", + "upstreamId": "79323", "text": "Chronic and progressive ataxia" }, { - "baseId": "79323", + "upstreamId": "79323", "text": "Enlarged cisterna magna" }, { - "baseId": "79323", + "upstreamId": "79323", "text": "Ataxia _ Neurologic (child onset)" }, { - "baseId": "79323", + "upstreamId": "79323", "text": "Non-progressive congenital cerebellar ataxia" }, { - "baseId": "79335|79336|79337|361238|411155|481342|614106|792141|964572|976710|976711|976712", + "upstreamId": "79335|79336|79337|361238|411155|481342|614106|792141|964572|976710|976711|976712", "text": "Chromosome Xq28 deletion syndrome" }, { - "baseId": "79338|79339|79340|79341|792797|857598", + "upstreamId": "79338|79339|79340|79341|792797|857598", "text": "Primary ciliary dyskinesia 25" }, { - "baseId": "79342|79343|79345|208445|215555|225864|237537|264817|264905|265045|362232|404836|410363|415600|415601|422219|430056|434666|434667|445961|445962|445963|445964|495485|495692|512349|512351|512781|512784|513473|514740|538476|551327|589844|611883|622447|622920|626389|788922|791857|791858|798733|798734|798735|806011|806013|806014|903629|919796|920391|961342|963180|963852|964497|964498|969286|969560|969702|971101|972839|972973|972974|972975|972976|972977|972978|972979|972980|972981|972982|972983|972984|972985|972986", + "upstreamId": "79342|79343|79345|208445|215555|225864|237537|264817|264905|265045|362232|404836|410363|415600|415601|422219|430056|434666|434667|445961|445962|445963|445964|495485|495692|512349|512351|512781|512784|513473|514740|538476|551327|589844|611883|622447|622920|626389|788922|791857|791858|798733|798734|798735|806011|806013|806014|903629|919796|920391|961342|963180|963852|964497|964498|969286|969560|969702|971101|972839|972973|972974|972975|972976|972977|972978|972979|972980|972981|972982|972983|972984|972985|972986", "text": "Bainbridge-Ropers syndrome" }, { - "baseId": "79355|79356|165834|187251|187252|187254|361552|372476|373172|373174|373177|373192|373201|373407|373409|375357|375367|375382|408721|421946|437937|437938|445059|462380|462381|462391|462396|462397|462641|462647|463092|463108|463120|463122|463126|463131|463227|463228|463237|463239|463243|463248|463250|463256|480513|480514|488120|504010|504025|504562|527308|527314|527316|527319|527590|527601|527606|527610|527831|527833|527835|540458|565643|565645|566974|566977|566979|566980|568144|568145|568150|571959|609852|609853|641303|641304|641305|641306|641307|641308|641309|641310|652336|693254|693255|693256|702453|738798|778106|791263|791264|840139|840140|840141|840142|840143|840144|840145|905365|926689|926690|926691|936203|940273|941038|956911|960049|965224", + "upstreamId": "79355|79356|165834|187251|187252|187254|361552|372476|373172|373174|373177|373192|373201|373407|373409|375357|375367|375382|408721|421946|437937|437938|445059|462380|462381|462391|462396|462397|462641|462647|463092|463108|463120|463122|463126|463131|463227|463228|463237|463239|463243|463248|463250|463256|480513|480514|488120|504010|504025|504562|527308|527314|527316|527319|527590|527601|527606|527610|527831|527833|527835|540458|565643|565645|566974|566977|566979|566980|568144|568145|568150|571959|609852|609853|641303|641304|641305|641306|641307|641308|641309|641310|652336|693254|693255|693256|702453|738798|778106|791263|791264|840139|840140|840141|840142|840143|840144|840145|905365|926689|926690|926691|936203|940273|941038|956911|960049|965224", "text": "Interstitial lung and liver disease" }, { - "baseId": "79355|445062", + "upstreamId": "79355|445062", "text": "MARS-Related Disorder" }, { - "baseId": "79441", + "upstreamId": "79441", "text": "Myoclonic encephalopathy" }, { - "baseId": "79442|79445|79451|134806|135699|181402|202439|203324|205317|362316|362344|362351|362353", + "upstreamId": "79442|79445|79451|134806|135699|181402|202439|203324|205317|362316|362344|362351|362353", "text": "Focal epilepsy" }, { - "baseId": "79508|178411|513910", + "upstreamId": "79508|178411|513910", "text": "Absence seizures" }, { - "baseId": "79508|143011|201223|226495|514004|551721|551751|679898|679899|861283|861284", + "upstreamId": "79508|143011|201223|226495|514004|551721|551751|679898|679899|861283|861284", "text": "Generalized tonic-clonic seizures" }, { - "baseId": "79563|100010|100016|165893|538300|538301|538302|538303", + "upstreamId": "79563|100010|100016|165893|538300|538301|538302|538303", "text": "West syndrome" }, { - "baseId": "79644|536698|543869", + "upstreamId": "79644|536698|543869", "text": "UV-sensitive syndrome 2" }, { - "baseId": "79656|131887|131888|131889|131890|131891|131894|131895|131896|131897|131898|131899|138990|208505|208506|208507|208509|208513|208514|208515|208516|208518|208519|208524|208530|208531|222763|222765|222771|222772|222774|222777|243090|243097|243100|243110|243131|243132|243134|243145|243150|243153|243165|243170|243180|243185|243190|243194|243197|243204|243213|243221|243238|243244|243257|332432|332433|332438|332439|332443|332444|332449|337612|337623|342585|342586|342591|342599|342601|342603|342605|342610|342611|342614|342618|342619|342624|347191|347975|347980|347982|347987|347991|347996|348000|349277|349279|349281|349283|349284|349286|349288|361125|361126|377075|402931|403060|403500|425361|578442|622450|879824|918273|961514|963483|963484|974524|974525|975848", + "upstreamId": "79656|131887|131888|131889|131890|131891|131894|131895|131896|131897|131898|131899|138990|208505|208506|208507|208509|208513|208514|208515|208516|208518|208519|208524|208530|208531|222763|222765|222771|222772|222774|222777|243090|243097|243100|243110|243131|243132|243134|243145|243150|243153|243165|243170|243180|243185|243190|243194|243197|243204|243213|243221|243238|243244|243257|332432|332433|332438|332439|332443|332444|332449|337612|337623|342585|342586|342591|342599|342601|342603|342605|342610|342611|342614|342618|342619|342624|347191|347975|347980|347982|347987|347991|347996|348000|349277|349279|349281|349283|349284|349286|349288|361125|361126|377075|402931|403060|403500|425361|578442|622450|879824|918273|961514|963483|963484|974524|974525|975848", "text": "Coffin-Siris syndrome" }, { - "baseId": "79696|550300|550301|550311", + "upstreamId": "79696|550300|550301|550311", "text": "Thrombotic thrombocytopenic purpura" }, { - "baseId": "80741|80741|94567|167460|167460|167461|406294|413626|413627|443449|452329|452334|452338|452342|452344|452349|452355|452362|452363|452372|452377|452379|452386|452388|452399|452505|452509|452511|452512|452516|452523|452542|452546|452550|452552|452554|452556|452558|452565|452569|452570|452571|452573|452581|452582|452588|452595|452596|452623|452624|452628|452629|452635|452650|452652|452654|452658|452668|452669|452670|452674|452678|452685|452688|452705|452706|452814|452817|452820|452821|452823|452854|452859|452865|452867|452877|452893|452895|452899|452900|452902|452904|452905|452909|481692|519218|519220|519222|519226|519228|519230|519232|519241|519243|519253|519258|519259|519261|519265|519271|519272|519273|519277|519279|519281|519283|519292|519297|519302|519305|519306|519307|519308|519312|519316|519319|519325|519326|519329|519334|519433|519436|519438|519441|519446|519447|519449|519451|519459|519460|519462|519464|519468|519471|519474|519483|519502|519507|519510|519513|519515|519518|519524|519526|519532|519536|519538|558972|558974|558976|558978|558980|558982|558984|558986|558988|559491|559493|559495|559497|559499|559501|561530|561535|561537|561540|561547|561548|561552|561553|561554|561556|561560|561566|562870|562871|562873|562874|562876|562877|562882|562884|562886|562887|562888|562910|562919|625107|631357|631358|631359|631360|631361|631362|631363|631364|631365|631366|631367|631368|631369|631370|631371|631372|631373|631374|631375|631376|631377|631378|631379|631380|631381|631382|631383|631384|631385|631386|631387|631388|631389|631390|631391|631392|631393|631394|631395|631396|631397|631398|631399|631400|631401|631402|651049|651069|651088|651196|679892|686427|686428|691399|691401|691402|691403|691404|691407|691408|691411|695202|698067|720424|720426|734044|734048|744019|748241|763876|763878|763879|763882|763885|778988|781669|781671|787306|795426|795427|821889|821890|828101|828102|828103|828104|828105|828106|828107|828108|828109|828110|828111|828112|828113|828114|828115|828116|828117|828118|828119|828120|828121|828122|828123|828124|828125|828126|828127|828128|828129|828130|828131|828132|828133|828134|828135|828136|828137|828138|828139|828140|828141|828142|828143|828144|850940|850942|851387|851390|923187|923188|923189|923190|923191|923192|923193|923194|923195|923196|923197|923198|931946|931947|931948|931949|931950|931951|931952|939939|939940|940750|940751|943533|943534|943535|943536|943537|943538|943539|943540|943541|943542|943543|943544|943545|943546|943547|943548|943549|943550|943551|943552|943553|953471|953472|953473|953474|953475|953476|953477|953478|953479|953480|953481|961264", + "upstreamId": "80741|80741|94567|167460|167460|167461|406294|413626|413627|443449|452329|452334|452338|452342|452344|452349|452355|452362|452363|452372|452377|452379|452386|452388|452399|452505|452509|452511|452512|452516|452523|452542|452546|452550|452552|452554|452556|452558|452565|452569|452570|452571|452573|452581|452582|452588|452595|452596|452623|452624|452628|452629|452635|452650|452652|452654|452658|452668|452669|452670|452674|452678|452685|452688|452705|452706|452814|452817|452820|452821|452823|452854|452859|452865|452867|452877|452893|452895|452899|452900|452902|452904|452905|452909|481692|519218|519220|519222|519226|519228|519230|519232|519241|519243|519253|519258|519259|519261|519265|519271|519272|519273|519277|519279|519281|519283|519292|519297|519302|519305|519306|519307|519308|519312|519316|519319|519325|519326|519329|519334|519433|519436|519438|519441|519446|519447|519449|519451|519459|519460|519462|519464|519468|519471|519474|519483|519502|519507|519510|519513|519515|519518|519524|519526|519532|519536|519538|558972|558974|558976|558978|558980|558982|558984|558986|558988|559491|559493|559495|559497|559499|559501|561530|561535|561537|561540|561547|561548|561552|561553|561554|561556|561560|561566|562870|562871|562873|562874|562876|562877|562882|562884|562886|562887|562888|562910|562919|625107|631357|631358|631359|631360|631361|631362|631363|631364|631365|631366|631367|631368|631369|631370|631371|631372|631373|631374|631375|631376|631377|631378|631379|631380|631381|631382|631383|631384|631385|631386|631387|631388|631389|631390|631391|631392|631393|631394|631395|631396|631397|631398|631399|631400|631401|631402|651049|651069|651088|651196|679892|686427|686428|691399|691401|691402|691403|691404|691407|691408|691411|695202|698067|720424|720426|734044|734048|744019|748241|763876|763878|763879|763882|763885|778988|781669|781671|787306|795426|795427|821889|821890|828101|828102|828103|828104|828105|828106|828107|828108|828109|828110|828111|828112|828113|828114|828115|828116|828117|828118|828119|828120|828121|828122|828123|828124|828125|828126|828127|828128|828129|828130|828131|828132|828133|828134|828135|828136|828137|828138|828139|828140|828141|828142|828143|828144|850940|850942|851387|851390|923187|923188|923189|923190|923191|923192|923193|923194|923195|923196|923197|923198|931946|931947|931948|931949|931950|931951|931952|939939|939940|940750|940751|943533|943534|943535|943536|943537|943538|943539|943540|943541|943542|943543|943544|943545|943546|943547|943548|943549|943550|943551|943552|943553|953471|953472|953473|953474|953475|953476|953477|953478|953479|953480|953481|961264", "text": "Episodic pain syndrome, familial, 3" }, { - "baseId": "80741|94565|167460|406294|413626|413627|414717|443449|452329|452334|452338|452342|452344|452349|452355|452362|452363|452372|452377|452379|452386|452388|452399|452505|452509|452511|452512|452516|452523|452542|452546|452550|452552|452554|452556|452558|452565|452569|452570|452571|452573|452581|452582|452588|452595|452596|452623|452624|452628|452629|452635|452650|452652|452654|452658|452668|452669|452670|452674|452678|452685|452688|452705|452706|452814|452817|452820|452821|452823|452854|452859|452865|452867|452877|452893|452895|452899|452900|452902|452904|452905|452909|481692|496112|519218|519220|519222|519226|519228|519230|519232|519241|519243|519253|519258|519259|519261|519265|519271|519272|519273|519277|519279|519281|519283|519292|519297|519302|519305|519306|519307|519308|519312|519316|519319|519325|519326|519329|519334|519433|519436|519438|519441|519446|519447|519449|519451|519459|519460|519462|519464|519468|519471|519474|519483|519502|519507|519510|519513|519515|519518|519524|519526|519532|519536|519538|558972|558974|558976|558978|558980|558982|558984|558986|558988|559491|559493|559495|559497|559499|559501|561530|561535|561537|561540|561547|561548|561552|561553|561554|561556|561560|561566|562870|562871|562873|562874|562876|562877|562882|562884|562886|562887|562888|562910|562919|578418|625107|631357|631358|631359|631360|631361|631362|631363|631364|631365|631366|631367|631368|631369|631370|631371|631372|631373|631374|631375|631376|631377|631378|631379|631380|631381|631382|631383|631384|631385|631386|631387|631388|631389|631390|631391|631392|631393|631394|631395|631396|631397|631398|631399|631400|631401|631402|651049|651069|651088|651196|686427|686428|691399|691401|691402|691403|691404|691407|691408|691411|695202|698067|720424|720426|734044|734048|744019|748241|763876|763878|763879|763882|763885|778988|781669|781671|787306|795426|795427|821889|821890|828101|828102|828103|828104|828105|828106|828107|828108|828109|828110|828111|828112|828113|828114|828115|828116|828117|828118|828119|828120|828121|828122|828123|828124|828125|828126|828127|828128|828129|828130|828131|828132|828133|828134|828135|828136|828137|828138|828139|828140|828141|828142|828143|828144|850940|850942|851387|851390|923187|923188|923189|923190|923191|923192|923193|923194|923195|923196|923197|923198|931946|931947|931948|931949|931950|931951|931952|939939|939940|940750|940751|943533|943534|943535|943536|943537|943538|943539|943540|943541|943542|943543|943544|943545|943546|943547|943548|943549|943550|943551|943552|943553|953471|953472|953473|953474|953475|953476|953477|953478|953479|953480|953481|961263|961264|969707", + "upstreamId": "80741|94565|167460|406294|413626|413627|414717|443449|452329|452334|452338|452342|452344|452349|452355|452362|452363|452372|452377|452379|452386|452388|452399|452505|452509|452511|452512|452516|452523|452542|452546|452550|452552|452554|452556|452558|452565|452569|452570|452571|452573|452581|452582|452588|452595|452596|452623|452624|452628|452629|452635|452650|452652|452654|452658|452668|452669|452670|452674|452678|452685|452688|452705|452706|452814|452817|452820|452821|452823|452854|452859|452865|452867|452877|452893|452895|452899|452900|452902|452904|452905|452909|481692|496112|519218|519220|519222|519226|519228|519230|519232|519241|519243|519253|519258|519259|519261|519265|519271|519272|519273|519277|519279|519281|519283|519292|519297|519302|519305|519306|519307|519308|519312|519316|519319|519325|519326|519329|519334|519433|519436|519438|519441|519446|519447|519449|519451|519459|519460|519462|519464|519468|519471|519474|519483|519502|519507|519510|519513|519515|519518|519524|519526|519532|519536|519538|558972|558974|558976|558978|558980|558982|558984|558986|558988|559491|559493|559495|559497|559499|559501|561530|561535|561537|561540|561547|561548|561552|561553|561554|561556|561560|561566|562870|562871|562873|562874|562876|562877|562882|562884|562886|562887|562888|562910|562919|578418|625107|631357|631358|631359|631360|631361|631362|631363|631364|631365|631366|631367|631368|631369|631370|631371|631372|631373|631374|631375|631376|631377|631378|631379|631380|631381|631382|631383|631384|631385|631386|631387|631388|631389|631390|631391|631392|631393|631394|631395|631396|631397|631398|631399|631400|631401|631402|651049|651069|651088|651196|686427|686428|691399|691401|691402|691403|691404|691407|691408|691411|695202|698067|720424|720426|734044|734048|744019|748241|763876|763878|763879|763882|763885|778988|781669|781671|787306|795426|795427|821889|821890|828101|828102|828103|828104|828105|828106|828107|828108|828109|828110|828111|828112|828113|828114|828115|828116|828117|828118|828119|828120|828121|828122|828123|828124|828125|828126|828127|828128|828129|828130|828131|828132|828133|828134|828135|828136|828137|828138|828139|828140|828141|828142|828143|828144|850940|850942|851387|851390|923187|923188|923189|923190|923191|923192|923193|923194|923195|923196|923197|923198|931946|931947|931948|931949|931950|931951|931952|939939|939940|940750|940751|943533|943534|943535|943536|943537|943538|943539|943540|943541|943542|943543|943544|943545|943546|943547|943548|943549|943550|943551|943552|943553|953471|953472|953473|953474|953475|953476|953477|953478|953479|953480|953481|961263|961264|969707", "text": "Neuropathy, hereditary sensory and autonomic, type VII" }, { - "baseId": "81031|611474|611475|611476|611477|611478|611479|679873|679874|679875|679876|679877|679878|798549|798550", + "upstreamId": "81031|611474|611475|611476|611477|611478|611479|679873|679874|679875|679876|679877|679878|798549|798550", "text": "Neurodevelopmental disorder and language delay with or without structural brain abnormalities" }, { - "baseId": "81688|88117|98921|98922|98923|98924|98926|98928|98933|98934|98935|98936|98938|98939|98941|98943|98944|98946|98949|98950|98952|98955|98960|98961|98962|98965|98966|98967|98968|98969|98970|98972|98973|98976|98977|98981|98982|98983|98984|98986|98988|98992|98993|98995|98997|98998|135364|135365|135366|135367|135368|135370|135371|135372|135373|135375|135376|135377|135378|135379|135381|135382|135383|135385|135386|135387|135388|135389|135390|135391|135392|135394|135396|135397|135398|135399|135400|135401|135402|135404|135405|135406|135407|135408|135409|176989|177121|177252|177383|177959|177961|177962|177965|177966|191156|191157|191638|192163|192815|192816|192817|192962|192963|193017|193018|193076|193091|193265|193266|193267|193309|193435|193772|193823|193877|193878|193881|193882|193883|193893|193894|193895|193896|193897|193899|193902|193903|193904|193905|193906|193907|193908|193909|193910|193911|193912|193913|193914|193915|193917|193918|193919|193920|193921|193922|193923|193925|193926|193928|193969|193971|193973|193974|193975|193977|193978|193980|193983|193984|193985|193986|193987|193989|193990|193994|193998|194000|194001|194002|194003|194004|194005|194008|194009|194010|194012|194013|194014|194015|194019|194020|195245|195795|200792|207532|207533|231311|231370|231429|231430|253066|253067|265349|265461|265465|265501|265502|265512|265516|265517|265518|265519|265524|265531|265554|265593|265628|265629|265639|265718|265827|265831|265905|265922|265930|265931|265932|265938|266070|266073|266086|266092|266179|266185|266228|266229|266248|266334|266335|266357|266370|266405|266422|266425|266440|266481|266507|266522|266524|266534|266545|266546|266550|266554|266563|266629|266630|266642|266656|266658|266659|266687|266692|266703|266723|266730|266736|266746|266756|266775|266779|266819|266876|266961|266991|267017|267018|267058|267063|267069|267090|267102|267121|267126|267133|267262|267271|267292|267309|267337|267338|267339|267439|267460|267461|267478|267481|267484|267491|267513|267523|267541|267568|267574|267631|267638|267641|267671|267700|267701|267707|267786|267867|267875|267877|267881|267882|267885|267899|267912|267924|267932|267981|268004|268114|268184|268195|268205|268206|268207|268212|268338|268339|268485|268486|268520|268521|268624|268704|268731|268747|268802|268812|268818|268819|268820|268835|268837|269027|269036|269247|269248|269316|269468|269573|269579|269645|269915|269970|269980|270225|270253|270274|270275|270360|270506|270550|270555|270825|270961|271365|271460|271624|271858|271947|272140|272170|272415|273236|273701|274532|274542|274576|274586|274590|274687|274701|274703|274704|274872|274876|274884|274886|274888|274895|274900|274934|274949|274965|274966|275304|336380|361453|369376|369377|369380|369386|369388|369394|369396|369411|369412|369424|369428|369734|369742|369758|369763|369767|369769|369773|369791|369802|369809|369814|369825|369839|369841|369846|370091|370093|370095|370097|370102|370108|370111|370122|370128|370132|370138|370139|370149|370155|371589|371592|371593|371594|371618|371629|371631|371646|371656|371659|371661|371665|371667|371679|371681|390580|404777|407323|407324|407325|407326|407327|407328|407332|407334|407335|415126|421663|421664|421665|425783|425784|425786|428802|428803|428804|428805|428806|428807|428808|428810|434623|438403|438405|441183|441184|441186|441188|441189|441190|441191|441193|441197|441199|441200|441201|441203|441204|441205|441206|441210|441211|441222|441223|441224|444223|444224|444226|444228|444230|444235|444240|444241|444245|444247|444250|444251|457234|457236|457238|457240|457245|457248|457249|457255|457258|457272|457273|457277|457282|457286|457294|457296|457298|457300|457302|457305|457307|457310|457312|457316|457323|457324|457328|457336|457337|457347|457348|457351|457359|457362|457363|457366|457371|457385|457390|457391|457393|457397|457399|457401|457405|457406|457411|457422|457424|457426|457428|457817|457837|457838|457839|457843|457847|457849|457851|457856|457857|457860|457862|457865|457866|457867|457869|457870|457872|457876|457878|457880|457882|457883|457884|457886|457887|457888|457894|457896|457900|457901|457902|457904|457907|457908|457912|457914|457919|457920|457921|457922|457924|457925|457927|457928|457931|457932|457935|457936|457937|457938|457946|457949|457956|457958|457960|457962|457963|457967|457972|457977|457980|457981|457982|457983|457985|457988|457990|457996|457998|457999|458001|458002|458004|458006|458007|458008|458013|458014|458017|458020|458022|458023|458025|458028|458030|458032|458033|458034|458039|458040|458041|458043|458046|458047|458051|458054|458062|458064|458067|458068|458071|458072|458077|458079|458088|458241|458243|458248|458252|458256|458266|458268|458272|458273|458277|458279|458283|458286|458292|458296|458298|458301|458302|458305|458310|458311|458316|458318|458323|458327|458334|458337|458341|458343|458346|458347|458350|458352|458355|458363|458368|458370|458376|458379|458383|458386|486449|488410|488423|488425|488427|488429|488430|488437|488440|488453|488464|488466|488469|488474|488476|488477|488479|488488|488496|488505|488507|488509|488512|488519|488520|488538|488539|488562|488589|488617|488790|488793|488811|488922|489011|489080|489083|489246|489276|489281|489377|489481|489688|490087|490389|490392|490417|490506|490642|490644|490646|490714|491028|491054|491060|491066|491108|491112|491126|491242|491388|491529|491648|491734|491814|491816|491970|491980|492104|492115|492230|492337|492338|492462|492609|492868|492901|493049|493050|493061|493063|493156|493220|493225|493253|493351|493496|493504|493568|493569|493573|493622|493662|493665|493825|493873|493874|493982|494015|494082|494092|494093|501926|501929|501931|501936|501946|501964|502236|502239|502244|502255|502262|502276|502278|502299|502313|502355|502361|502603|502604|502619|502623|502626|502632|502637|511746|511748|511749|523032|523042|523045|523051|523054|523057|523059|523063|523086|523088|523095|523101|523103|523109|523118|523126|523132|523133|523134|523138|523139|523142|523148|523151|523156|523158|523171|523173|523174|523176|523179|523182|523202|523205|523207|523208|523211|523214|523215|523311|523321|523323|523336|523339|523341|523345|523348|523353|523355|523358|523361|523371|523375|523380|523387|523388|523390|523392|523399|523401|523405|523412|523413|523415|523417|523420|523423|523432|523436|523441|523442|523448|523451|523461|523466|523467|523474|523481|523531|523537|523542|523544|523547|523549|523552|523553|523555|523556|523563|523570|523572|523576|523584|523586|523594|523596|523601|523603|523606|523608|523610|523616|523618|523622|523624|523636|523639|523644|523647|523652|523654|523655|523656|523658|523662|523663|523665|523667|523669|523671|523675|523676|523678|523683|523685|523689|523690|523692|523693|523694|523695|523698|523700|523702|523706|523714|523716|523718|523726|523730|523735|536744|561957|561960|561963|561965|561974|561980|561981|561993|561996|562000|562002|562011|562014|562018|562020|562021|562026|562029|562032|562034|562036|562038|562040|562047|562050|562054|562057|562059|562380|562396|562397|562400|562401|562411|562423|562425|562432|562433|562436|562437|562443|562448|562459|562475|562476|562479|562487|562496|562497|562500|562501|562504|562511|564676|564679|564681|564683|564690|564699|564701|564704|564708|564710|564718|564719|564722|564724|564726|564731|564732|564736|564741|564751|564759|564765|564767|564771|564774|564776|564778|564780|564785|564788|564790|564794|564796|564800|564802|564809|567397|567399|567400|567401|567406|567409|567414|567418|567419|567420|567421|567423|567427|567428|567430|567434|567443|567448|567466|567471|567484|567487|567493|567494|567495|567496|567497|567502|577038|577042|577048|577050|583214|583818|583832|583842|583852|583863|583873|583888|583928|583989|584023|584100|584299|584656|584658|584660|585030|585144|585680|585726|585814|585970|586401|586783|586809|586971|587049|587287|587469|588315|588317|588432|588452|588464|588491|588509|588536|588609|588612|588626|588632|588860|588861|588863|589251|589263|589547|589607|589776|612808|623147|636629|636630|636631|636632|636633|636634|636635|636636|636637|636638|636639|636640|636641|636642|636643|636644|636645|636646|636647|636648|636649|636650|636651|636652|636653|636654|636655|636656|636657|636658|636659|636660|636661|636662|636663|636664|636665|636666|636667|636668|636669|636670|636671|636672|636673|636674|636675|636676|636677|636678|636679|636680|636681|636682|636683|636684|636685|636686|636687|636688|636689|636690|636691|636692|636693|636694|636695|636696|636697|636698|636699|636700|636701|636702|636703|636704|636705|636706|636707|636708|636709|636710|636711|636712|636713|636714|636715|636716|636717|636718|636719|636720|636721|636722|636723|636724|636725|636726|636727|636728|636729|636730|636731|636732|636733|636734|636735|636736|636737|636738|636739|636740|636741|636742|636743|636744|636745|636746|636747|636748|636749|636750|636751|636752|636753|636754|636755|636756|636757|636758|636759|636760|636761|636762|636763|636764|636765|636766|636767|636768|636769|636770|636771|636772|636773|636774|636775|636776|636777|636778|636779|636780|636781|651751|651754|651758|651760|651770|651773|655836|655845|655849|662710|687201|692371|692372|692373|692375|692376|692378|692379|692380|692381|692385|692386|692387|692389|692391|692392|692393|692394|692395|692396|692397|692402|692403|692404|692406|692409|692411|692412|692413|692414|692418|692419|692420|692423|692424|692426|692430|692431|692432|692433|692434|692435|692436|692438|692440|695384|700445|700447|700450|700451|700455|700457|700458|700461|700463|700464|700467|711370|711371|711372|711374|711376|711381|711382|711385|711390|711391|711392|722917|722921|722922|736504|736505|736506|736507|736508|736510|736512|736513|736514|736521|736523|750972|750975|750976|750978|750979|750980|750985|750987|750989|750992|750995|766578|766583|766584|766586|766587|766599|766623|766628|775210|777720|783022|783024|783026|783029|783031|783035|793265|793267|793268|796133|796137|818743|834168|834169|834170|834171|834172|834173|834174|834175|834176|834177|834178|834179|834180|834181|834182|834183|834184|834185|834186|834187|834188|834189|834190|834191|834192|834193|834194|834195|834196|834197|834198|834199|834200|834201|834202|834203|834204|834205|834206|834207|834208|834209|834210|834211|834212|834213|834214|834215|834216|834217|834218|834219|834220|834221|834222|834223|834224|834225|834226|834227|834228|834229|834230|834231|834232|834233|834234|834235|834236|834237|834238|834239|834240|834241|834242|834243|834244|834245|834246|834247|834248|834249|834250|834251|834252|834253|834254|834255|834256|834257|834258|834259|834260|834261|834262|834263|834264|834265|834266|834267|834268|834269|834270|834271|834272|834273|834274|834275|834276|834277|834278|834279|834280|834281|834282|834283|834284|834285|834286|834287|834288|834289|834290|834291|834292|834293|852118|858315|858316|858317|858318|858319|858320|858324|858421|925028|925029|925030|925031|925032|925033|925034|925035|925036|925037|925038|925039|925040|925041|925042|925043|925044|925045|925046|925047|925048|925049|925050|925051|925052|925053|925054|925055|925056|925057|925058|925059|925060|925061|925062|925063|925064|925065|925066|925067|925068|934109|934110|934111|934112|934113|934114|934115|934116|934117|934118|934119|934120|934121|934122|934123|934124|934125|934126|934127|934128|934129|934130|934131|934132|934133|934134|934135|934136|934137|934138|934139|934140|934141|934142|934143|934144|934145|934146|934147|934148|934149|934150|934151|934152|934153|934154|934155|934156|934157|934158|934159|934160|934161|940891|945859|945860|945861|945862|945863|945864|945865|945866|945867|945868|945869|945870|945871|945872|945873|945874|945875|945876|945877|945878|945879|945880|945881|945882|945883|945884|945885|945886|945887|945888|945889|945890|945891|945892|945893|945894|945895|945896|945897|945898|945899|945900|945901|945902|945903|945904|945905|945906|945907|945908|945909|945910|945911|945912|955305|955306|955307|955308|955309|955310|955311|955312|955313|955314|955315|955316|955317|955318|955319|955320|955321|955322|955323|955324|955325|955326|955327|955328|955329|955330|955331|955332|955333|955334|955335|955336|955337|955338|955339|955340|959878", + "upstreamId": "81688|88117|98921|98922|98923|98924|98926|98928|98933|98934|98935|98936|98938|98939|98941|98943|98944|98946|98949|98950|98952|98955|98960|98961|98962|98965|98966|98967|98968|98969|98970|98972|98973|98976|98977|98981|98982|98983|98984|98986|98988|98992|98993|98995|98997|98998|135364|135365|135366|135367|135368|135370|135371|135372|135373|135375|135376|135377|135378|135379|135381|135382|135383|135385|135386|135387|135388|135389|135390|135391|135392|135394|135396|135397|135398|135399|135400|135401|135402|135404|135405|135406|135407|135408|135409|176989|177121|177252|177383|177959|177961|177962|177965|177966|191156|191157|191638|192163|192815|192816|192817|192962|192963|193017|193018|193076|193091|193265|193266|193267|193309|193435|193772|193823|193877|193878|193881|193882|193883|193893|193894|193895|193896|193897|193899|193902|193903|193904|193905|193906|193907|193908|193909|193910|193911|193912|193913|193914|193915|193917|193918|193919|193920|193921|193922|193923|193925|193926|193928|193969|193971|193973|193974|193975|193977|193978|193980|193983|193984|193985|193986|193987|193989|193990|193994|193998|194000|194001|194002|194003|194004|194005|194008|194009|194010|194012|194013|194014|194015|194019|194020|195245|195795|200792|207532|207533|231311|231370|231429|231430|253066|253067|265349|265461|265465|265501|265502|265512|265516|265517|265518|265519|265524|265531|265554|265593|265628|265629|265639|265718|265827|265831|265905|265922|265930|265931|265932|265938|266070|266073|266086|266092|266179|266185|266228|266229|266248|266334|266335|266357|266370|266405|266422|266425|266440|266481|266507|266522|266524|266534|266545|266546|266550|266554|266563|266629|266630|266642|266656|266658|266659|266687|266692|266703|266723|266730|266736|266746|266756|266775|266779|266819|266876|266961|266991|267017|267018|267058|267063|267069|267090|267102|267121|267126|267133|267262|267271|267292|267309|267337|267338|267339|267439|267460|267461|267478|267481|267484|267491|267513|267523|267541|267568|267574|267631|267638|267641|267671|267700|267701|267707|267786|267867|267875|267877|267881|267882|267885|267899|267912|267924|267932|267981|268004|268114|268184|268195|268205|268206|268207|268212|268338|268339|268485|268486|268520|268521|268624|268704|268731|268747|268802|268812|268818|268819|268820|268835|268837|269027|269036|269247|269248|269316|269468|269573|269579|269645|269915|269970|269980|270225|270253|270274|270275|270360|270506|270550|270555|270825|270961|271365|271460|271624|271858|271947|272140|272170|272415|273236|273701|274532|274542|274576|274586|274590|274687|274701|274703|274704|274872|274876|274884|274886|274888|274895|274900|274934|274949|274965|274966|275304|336380|361453|369376|369377|369380|369386|369388|369394|369396|369411|369412|369424|369428|369734|369742|369758|369763|369767|369769|369773|369791|369802|369809|369814|369825|369839|369841|369846|370091|370093|370095|370097|370102|370108|370111|370122|370128|370132|370138|370139|370149|370155|371589|371592|371593|371594|371618|371629|371631|371646|371656|371659|371661|371665|371667|371679|371681|390580|404777|407323|407324|407325|407326|407327|407328|407332|407334|407335|415126|421663|421664|421665|425783|425784|425786|428802|428803|428804|428805|428806|428807|428808|428810|434623|438403|438405|441183|441184|441186|441188|441189|441190|441191|441193|441197|441199|441200|441201|441203|441204|441205|441206|441210|441211|441222|441223|441224|444223|444224|444226|444228|444230|444235|444240|444241|444245|444247|444250|444251|457234|457236|457238|457240|457245|457248|457249|457255|457258|457272|457273|457277|457282|457286|457294|457296|457298|457300|457302|457305|457307|457310|457312|457316|457323|457324|457328|457336|457337|457347|457348|457351|457359|457362|457363|457366|457371|457385|457390|457391|457393|457397|457399|457401|457405|457406|457411|457422|457424|457426|457428|457817|457837|457838|457839|457843|457847|457849|457851|457856|457857|457860|457862|457865|457866|457867|457869|457870|457872|457876|457878|457880|457882|457883|457884|457886|457887|457888|457894|457896|457900|457901|457902|457904|457907|457908|457912|457914|457919|457920|457921|457922|457924|457925|457927|457928|457931|457932|457935|457936|457937|457938|457946|457949|457956|457958|457960|457962|457963|457967|457972|457977|457980|457981|457982|457983|457985|457988|457990|457996|457998|457999|458001|458002|458004|458006|458007|458008|458013|458014|458017|458020|458022|458023|458025|458028|458030|458032|458033|458034|458039|458040|458041|458043|458046|458047|458051|458054|458062|458064|458067|458068|458071|458072|458077|458079|458088|458241|458243|458248|458252|458256|458266|458268|458272|458273|458277|458279|458283|458286|458292|458296|458298|458301|458302|458305|458310|458311|458316|458318|458323|458327|458334|458337|458341|458343|458346|458347|458350|458352|458355|458363|458368|458370|458376|458379|458383|458386|486449|488410|488423|488425|488427|488429|488430|488437|488440|488453|488464|488466|488469|488474|488476|488477|488479|488488|488496|488505|488507|488509|488512|488519|488520|488538|488539|488562|488589|488617|488790|488793|488811|488922|489011|489080|489083|489246|489276|489281|489377|489481|489688|490087|490389|490392|490417|490506|490642|490644|490646|490714|491028|491054|491060|491066|491108|491112|491126|491242|491388|491529|491648|491734|491814|491816|491970|491980|492104|492115|492230|492337|492338|492462|492609|492868|492901|493049|493050|493061|493063|493156|493220|493225|493253|493351|493496|493504|493568|493569|493573|493622|493662|493665|493825|493873|493874|493982|494015|494082|494092|494093|501926|501929|501931|501936|501946|501964|502236|502239|502244|502255|502262|502276|502278|502299|502313|502355|502361|502603|502604|502619|502623|502626|502632|502637|511746|511748|511749|523032|523042|523045|523051|523054|523057|523059|523063|523086|523088|523095|523101|523103|523109|523118|523126|523132|523133|523134|523138|523139|523142|523148|523151|523156|523158|523171|523173|523174|523176|523179|523182|523202|523205|523207|523208|523211|523214|523215|523311|523321|523323|523336|523339|523341|523345|523348|523353|523355|523358|523361|523371|523375|523380|523387|523388|523390|523392|523399|523401|523405|523412|523413|523415|523417|523420|523423|523432|523436|523441|523442|523448|523451|523461|523466|523467|523474|523481|523531|523537|523542|523544|523547|523549|523552|523553|523555|523556|523563|523570|523572|523576|523584|523586|523594|523596|523601|523603|523606|523608|523610|523616|523618|523622|523624|523636|523639|523644|523647|523652|523654|523655|523656|523658|523662|523663|523665|523667|523669|523671|523675|523676|523678|523683|523685|523689|523690|523692|523693|523694|523695|523698|523700|523702|523706|523714|523716|523718|523726|523730|523735|536744|561957|561960|561963|561965|561974|561980|561981|561993|561996|562000|562002|562011|562014|562018|562020|562021|562026|562029|562032|562034|562036|562038|562040|562047|562050|562054|562057|562059|562380|562396|562397|562400|562401|562411|562423|562425|562432|562433|562436|562437|562443|562448|562459|562475|562476|562479|562487|562496|562497|562500|562501|562504|562511|564676|564679|564681|564683|564690|564699|564701|564704|564708|564710|564718|564719|564722|564724|564726|564731|564732|564736|564741|564751|564759|564765|564767|564771|564774|564776|564778|564780|564785|564788|564790|564794|564796|564800|564802|564809|567397|567399|567400|567401|567406|567409|567414|567418|567419|567420|567421|567423|567427|567428|567430|567434|567443|567448|567466|567471|567484|567487|567493|567494|567495|567496|567497|567502|577038|577042|577048|577050|583214|583818|583832|583842|583852|583863|583873|583888|583928|583989|584023|584100|584299|584656|584658|584660|585030|585144|585680|585726|585814|585970|586401|586783|586809|586971|587049|587287|587469|588315|588317|588432|588452|588464|588491|588509|588536|588609|588612|588626|588632|588860|588861|588863|589251|589263|589547|589607|589776|612808|623147|636629|636630|636631|636632|636633|636634|636635|636636|636637|636638|636639|636640|636641|636642|636643|636644|636645|636646|636647|636648|636649|636650|636651|636652|636653|636654|636655|636656|636657|636658|636659|636660|636661|636662|636663|636664|636665|636666|636667|636668|636669|636670|636671|636672|636673|636674|636675|636676|636677|636678|636679|636680|636681|636682|636683|636684|636685|636686|636687|636688|636689|636690|636691|636692|636693|636694|636695|636696|636697|636698|636699|636700|636701|636702|636703|636704|636705|636706|636707|636708|636709|636710|636711|636712|636713|636714|636715|636716|636717|636718|636719|636720|636721|636722|636723|636724|636725|636726|636727|636728|636729|636730|636731|636732|636733|636734|636735|636736|636737|636738|636739|636740|636741|636742|636743|636744|636745|636746|636747|636748|636749|636750|636751|636752|636753|636754|636755|636756|636757|636758|636759|636760|636761|636762|636763|636764|636765|636766|636767|636768|636769|636770|636771|636772|636773|636774|636775|636776|636777|636778|636779|636780|636781|651751|651754|651758|651760|651770|651773|655836|655845|655849|662710|687201|692371|692372|692373|692375|692376|692378|692379|692380|692381|692385|692386|692387|692389|692391|692392|692393|692394|692395|692396|692397|692402|692403|692404|692406|692409|692411|692412|692413|692414|692418|692419|692420|692423|692424|692426|692430|692431|692432|692433|692434|692435|692436|692438|692440|695384|700445|700447|700450|700451|700455|700457|700458|700461|700463|700464|700467|711370|711371|711372|711374|711376|711381|711382|711385|711390|711391|711392|722917|722921|722922|736504|736505|736506|736507|736508|736510|736512|736513|736514|736521|736523|750972|750975|750976|750978|750979|750980|750985|750987|750989|750992|750995|766578|766583|766584|766586|766587|766599|766623|766628|775210|777720|783022|783024|783026|783029|783031|783035|793265|793267|793268|796133|796137|818743|834168|834169|834170|834171|834172|834173|834174|834175|834176|834177|834178|834179|834180|834181|834182|834183|834184|834185|834186|834187|834188|834189|834190|834191|834192|834193|834194|834195|834196|834197|834198|834199|834200|834201|834202|834203|834204|834205|834206|834207|834208|834209|834210|834211|834212|834213|834214|834215|834216|834217|834218|834219|834220|834221|834222|834223|834224|834225|834226|834227|834228|834229|834230|834231|834232|834233|834234|834235|834236|834237|834238|834239|834240|834241|834242|834243|834244|834245|834246|834247|834248|834249|834250|834251|834252|834253|834254|834255|834256|834257|834258|834259|834260|834261|834262|834263|834264|834265|834266|834267|834268|834269|834270|834271|834272|834273|834274|834275|834276|834277|834278|834279|834280|834281|834282|834283|834284|834285|834286|834287|834288|834289|834290|834291|834292|834293|852118|858315|858316|858317|858318|858319|858320|858324|858421|925028|925029|925030|925031|925032|925033|925034|925035|925036|925037|925038|925039|925040|925041|925042|925043|925044|925045|925046|925047|925048|925049|925050|925051|925052|925053|925054|925055|925056|925057|925058|925059|925060|925061|925062|925063|925064|925065|925066|925067|925068|934109|934110|934111|934112|934113|934114|934115|934116|934117|934118|934119|934120|934121|934122|934123|934124|934125|934126|934127|934128|934129|934130|934131|934132|934133|934134|934135|934136|934137|934138|934139|934140|934141|934142|934143|934144|934145|934146|934147|934148|934149|934150|934151|934152|934153|934154|934155|934156|934157|934158|934159|934160|934161|940891|945859|945860|945861|945862|945863|945864|945865|945866|945867|945868|945869|945870|945871|945872|945873|945874|945875|945876|945877|945878|945879|945880|945881|945882|945883|945884|945885|945886|945887|945888|945889|945890|945891|945892|945893|945894|945895|945896|945897|945898|945899|945900|945901|945902|945903|945904|945905|945906|945907|945908|945909|945910|945911|945912|955305|955306|955307|955308|955309|955310|955311|955312|955313|955314|955315|955316|955317|955318|955319|955320|955321|955322|955323|955324|955325|955326|955327|955328|955329|955330|955331|955332|955333|955334|955335|955336|955337|955338|955339|955340|959878", "text": "Epidermolysis bullosa simplex with nail dystrophy" }, { - "baseId": "82378|104323|104324|104326|104328|104329|104333|104334|134649|134652|134653|134654|141218|141221|141222|141223|141224|171801|171802|202652|202654|202655|202656|202658|202661|202663|202664|202669|202671|202672|202676|202677|202678|202680|202681|205273|207945|225816|225816|226651|231830|231831|231834|231844|241528|241529|244773|244777|244778|244780|244782|244785|244787|244791|244793|244794|244797|244800|244803|244810|244814|244815|264589|323830|323834|323848|329924|331237|360033|360082|360939|360939|363682|372139|372862|372872|373105|374861|384421|398860|398865|398867|398874|398876|399031|399032|399034|399332|399340|399343|399345|399346|399587|421912|424660|429407|429408|462048|462052|462055|462057|462059|462310|462312|462315|482276|503713|504002|504011|504018|504233|504235|504242|504700|527011|527015|527017|527018|527021|527029|527224|527229|527234|527237|527240|527242|527244|527544|527546|536833|551720|551720|551786|552156|552158|553385|565352|565355|565355|566731|566732|566738|566744|566746|567923|567926|567928|567929|567934|567941|571707|571713|571720|571731|579767|579773|579777|611410|614369|640993|640994|640995|640996|640997|640998|640999|641000|641001|641002|641003|641004|641005|641006|641007|641008|652460|652688|684314|684316|687937|687938|687939|687940|687942|687946|693171|753264|769021|769025|784347|788865|815997|816474|820452|820453|822058|822059|822060|822061|822062|822063|822064|822065|822066|822067|822068|839694|839695|839696|839697|839698|839699|839700|839701|839702|839703|839704|839705|839706|839707|839708|839709|839710|839711|839712|839713|839714|839715|839716|839717|839718|852467|859953|904918|906189|917108|926574|926575|926576|926577|926578|926579|926580|936038|936039|936040|936041|936042|941028|947919|947920|947921|947922|947923|956820|956821|956822|956823|956824|969373|970957|976661", + "upstreamId": "82378|104323|104324|104326|104328|104329|104333|104334|134649|134652|134653|134654|141218|141221|141222|141223|141224|171801|171802|202652|202654|202655|202656|202658|202661|202663|202664|202669|202671|202672|202676|202677|202678|202680|202681|205273|207945|225816|225816|226651|231830|231831|231834|231844|241528|241529|244773|244777|244778|244780|244782|244785|244787|244791|244793|244794|244797|244800|244803|244810|244814|244815|264589|323830|323834|323848|329924|331237|360033|360082|360939|360939|363682|372139|372862|372872|373105|374861|384421|398860|398865|398867|398874|398876|399031|399032|399034|399332|399340|399343|399345|399346|399587|421912|424660|429407|429408|462048|462052|462055|462057|462059|462310|462312|462315|482276|503713|504002|504011|504018|504233|504235|504242|504700|527011|527015|527017|527018|527021|527029|527224|527229|527234|527237|527240|527242|527244|527544|527546|536833|551720|551720|551786|552156|552158|553385|565352|565355|565355|566731|566732|566738|566744|566746|567923|567926|567928|567929|567934|567941|571707|571713|571720|571731|579767|579773|579777|611410|614369|640993|640994|640995|640996|640997|640998|640999|641000|641001|641002|641003|641004|641005|641006|641007|641008|652460|652688|684314|684316|687937|687938|687939|687940|687942|687946|693171|753264|769021|769025|784347|788865|815997|816474|820452|820453|822058|822059|822060|822061|822062|822063|822064|822065|822066|822067|822068|839694|839695|839696|839697|839698|839699|839700|839701|839702|839703|839704|839705|839706|839707|839708|839709|839710|839711|839712|839713|839714|839715|839716|839717|839718|852467|859953|904918|906189|917108|926574|926575|926576|926577|926578|926579|926580|936038|936039|936040|936041|936042|941028|947919|947920|947921|947922|947923|956820|956821|956822|956823|956824|969373|970957|976661", "text": "Epileptic encephalopathy, early infantile, 27" }, { - "baseId": "82560|165899|430131|577876|614385|793759|861077|861078|861079|861080|861081|861082|861083|861084|861085", + "upstreamId": "82560|165899|430131|577876|614385|793759|861077|861078|861079|861080|861081|861082|861083|861084|861085", "text": "Vascular dementia" }, { - "baseId": "82699|254996|254998|254999|255000|255001|255002|255003|255004|255005|255006|255008|255009|255010|255011|255012|255013|255014|255015|255017|255018|255019|255020|255023|255024|255025|255026|255027|255028|255029|255030|255032|255034|255035|276671|276673|276686|276691|276726|276763|276949|276950|276955|277004|277518|277521|277522|277526|277528|277548|277604|277610|277611|277623|277627|277653|277727|277730|277732|277750|277761|320929|320932|320938|320939|320943|320944|320945|320946|320948|320950|320951|320952|320960|320961|320965|320968|320974|320978|320979|320984|320986|329977|329979|329981|329982|329989|330005|330010|330013|330016|330018|330019|330020|330025|330030|330031|330033|330037|330038|330046|330048|330056|330057|330058|330064|330065|330069|330072|336523|336537|336538|336543|336550|336556|336557|336560|336564|336566|336569|336572|336573|336577|336578|336581|336587|336593|338442|338445|338446|338453|338456|338460|338461|338471|338472|338474|338477|338478|338485|338486|338499|338500|338501|338518|338521|338529|338532|338533|338535|338538|338539|338543|338544|338547", + "upstreamId": "82699|254996|254998|254999|255000|255001|255002|255003|255004|255005|255006|255008|255009|255010|255011|255012|255013|255014|255015|255017|255018|255019|255020|255023|255024|255025|255026|255027|255028|255029|255030|255032|255034|255035|276671|276673|276686|276691|276726|276763|276949|276950|276955|277004|277518|277521|277522|277526|277528|277548|277604|277610|277611|277623|277627|277653|277727|277730|277732|277750|277761|320929|320932|320938|320939|320943|320944|320945|320946|320948|320950|320951|320952|320960|320961|320965|320968|320974|320978|320979|320984|320986|329977|329979|329981|329982|329989|330005|330010|330013|330016|330018|330019|330020|330025|330030|330031|330033|330037|330038|330046|330048|330056|330057|330058|330064|330065|330069|330072|336523|336537|336538|336543|336550|336556|336557|336560|336564|336566|336569|336572|336573|336577|336578|336581|336587|336593|338442|338445|338446|338453|338456|338460|338461|338471|338472|338474|338477|338478|338485|338486|338499|338500|338501|338518|338521|338529|338532|338533|338535|338538|338539|338543|338544|338547", "text": "Elliptocytosis" }, { - "baseId": "82699|254996|254998|254999|255000|255001|255002|255003|255004|255005|255006|255008|255009|255010|255011|255012|255013|255014|255015|255017|255018|255019|255020|255023|255024|255025|255026|255027|255028|255029|255030|255032|255034|255035|305268|305280|305289|305321|309074|314297|314308|314318|314321|314333|314404|314408|320929|320932|320938|320939|320943|320944|320945|320946|320948|320950|320951|320952|320960|320961|320965|320968|320974|320978|320979|320984|320986|328660|328662|328672|328673|329977|329979|329981|329982|329989|330005|330010|330013|330016|330018|330019|330020|330025|330030|330031|330033|330037|330038|330046|330048|330056|330057|330058|330064|330065|330069|330072|336523|336537|336538|336543|336550|336556|336557|336560|336564|336566|336569|336572|336573|336577|336578|336581|336587|336593|338442|338445|338446|338453|338456|338460|338461|338471|338472|338474|338477|338478|338485|338486|338499|338500|338501|338518|338521|338529|338532|338533|338535|338538|338539|338543|338544|338547|338624|338631|338649|338655|344704", + "upstreamId": "82699|254996|254998|254999|255000|255001|255002|255003|255004|255005|255006|255008|255009|255010|255011|255012|255013|255014|255015|255017|255018|255019|255020|255023|255024|255025|255026|255027|255028|255029|255030|255032|255034|255035|305268|305280|305289|305321|309074|314297|314308|314318|314321|314333|314404|314408|320929|320932|320938|320939|320943|320944|320945|320946|320948|320950|320951|320952|320960|320961|320965|320968|320974|320978|320979|320984|320986|328660|328662|328672|328673|329977|329979|329981|329982|329989|330005|330010|330013|330016|330018|330019|330020|330025|330030|330031|330033|330037|330038|330046|330048|330056|330057|330058|330064|330065|330069|330072|336523|336537|336538|336543|336550|336556|336557|336560|336564|336566|336569|336572|336573|336577|336578|336581|336587|336593|338442|338445|338446|338453|338456|338460|338461|338471|338472|338474|338477|338478|338485|338486|338499|338500|338501|338518|338521|338529|338532|338533|338535|338538|338539|338543|338544|338547|338624|338631|338649|338655|344704", "text": "Spherocytosis, Dominant" }, { - "baseId": "82961|185748|249203|249204|512212|971605|971606|971607|971609|971610|976665", + "upstreamId": "82961|185748|249203|249204|512212|971605|971606|971607|971609|971610|976665", "text": "Mental retardation, autosomal recessive 49" }, { - "baseId": "83715|104193|104194|104195|104196|104197|104198|104199|104200|104201|104202|104203|104204|104205|104206|104207|104208|104209|104210|104211|104212|104213|104214|104215|104216|104217|104218|104219|104220|104221|104222|104223|104224|104225|104226|104227|104228|104229|104230|104231|104232|104233|104234", + "upstreamId": "83715|104193|104194|104195|104196|104197|104198|104199|104200|104201|104202|104203|104204|104205|104206|104207|104208|104209|104210|104211|104212|104213|104214|104215|104216|104217|104218|104219|104220|104221|104222|104223|104224|104225|104226|104227|104228|104229|104230|104231|104232|104233|104234", "text": "Tobacco use disorder" }, { - "baseId": "83803|166569|214480|363332|404624|511151|575484|798076|800806|800807|800809|800811|800812|921576|966338|966339|969259|969260|969261|969262|972733", + "upstreamId": "83803|166569|214480|363332|404624|511151|575484|798076|800806|800807|800809|800811|800812|921576|966338|966339|969259|969260|969261|969262|972733", "text": "CEBALID syndrome" }, { - "baseId": "83803|798076|800806|800807|800809|805119|966338|967136|967137|967138", + "upstreamId": "83803|798076|800806|800807|800809|805119|966338|967136|967137|967138", "text": "MN1 C-terminal truncation (MCTT) syndrome" }, { - "baseId": "83949", + "upstreamId": "83949", "text": "RAS Inhibitor response" }, { - "baseId": "84057|188136|188137|214794|214795|214796|214797|214798|226505|226506|226507|226508|226509|362381|424491|424637|427635|442619|511167|513490|550574|550575|578747|611372|611373|653845|653911|654148|788724|789842|789843|789844|805076|805084|918555|918556|961027|964011|964128|964710|970658|971564|975854", + "upstreamId": "84057|188136|188137|214794|214795|214796|214797|214798|226505|226506|226507|226508|226509|362381|424491|424637|427635|442619|511167|513490|550574|550575|578747|611372|611373|653845|653911|654148|788724|789842|789843|789844|805076|805084|918555|918556|961027|964011|964128|964710|970658|971564|975854", "text": "White-sutton syndrome" }, { - "baseId": "85522|380153|389514|428056|428058|448600|450908|450909|450925|451019|451022|451032|451212|451214|451216|451217|451222|451224|451231|451236|511424|514470|518228|518229|518231|518237|518241|518242|518268|518273|518278|538968|539197|539198|539199|539200|557442|558097|558099|558101|558103|558105|558464|558466|558468|558470|558643|560639|589084|589085|630010|630011|630012|630013|630014|630015|630016|630017|630018|630019|630020|630021|630022|630023|630024|630025|630026|630027|630028|630029|630030|630031|630032|650961|679597|686212|691163|691164|691165|691167|691168|691169|691170|691171|691172|691173|691174|691175|695145|697573|697575|697578|697581|743877|747652|747654|763250|777278|799301|819171|819172|819173|826490|826491|826492|826493|826494|826495|826496|826497|826498|826499|826500|826501|826502|826503|826504|826505|826506|826507|826508|826509|826510|826511|904185|904425|922777|922778|922779|922780|922781|922782|931410|931411|931412|931413|931414|931415|931416|931417|942927|942928|942929|942930|942931|942932|942933|942934|942935|942936|942937|942938|942939|942940|942941|953095|953096|963126", + "upstreamId": "85522|380153|389514|428056|428058|448600|450908|450909|450925|451019|451022|451032|451212|451214|451216|451217|451222|451224|451231|451236|511424|514470|518228|518229|518231|518237|518241|518242|518268|518273|518278|538968|539197|539198|539199|539200|557442|558097|558099|558101|558103|558105|558464|558466|558468|558470|558643|560639|589084|589085|630010|630011|630012|630013|630014|630015|630016|630017|630018|630019|630020|630021|630022|630023|630024|630025|630026|630027|630028|630029|630030|630031|630032|650961|679597|686212|691163|691164|691165|691167|691168|691169|691170|691171|691172|691173|691174|691175|695145|697573|697575|697578|697581|743877|747652|747654|763250|777278|799301|819171|819172|819173|826490|826491|826492|826493|826494|826495|826496|826497|826498|826499|826500|826501|826502|826503|826504|826505|826506|826507|826508|826509|826510|826511|904185|904425|922777|922778|922779|922780|922781|922782|931410|931411|931412|931413|931414|931415|931416|931417|942927|942928|942929|942930|942931|942932|942933|942934|942935|942936|942937|942938|942939|942940|942941|953095|953096|963126", "text": "Myasthenic syndrome, congenital, 22" }, { - "baseId": "86128|86130|86132|86134|86136|964554", + "upstreamId": "86128|86130|86132|86134|86136|964554", "text": "Idiopathic basal ganglia calcification 5" }, { - "baseId": "86177|199922|199923|199925|199927|199928|199929|199930|199931|199932|199936|200703|204039|204062|359478|414962|428275|440835|443568|452956|452957|452959|452960|452961|452962|453265|453268|453269|453337|453338|453340|453345|453347|453348|453350|453352|453354|453718|453719|453722|453724|453726|453727|481475|481476|481478|519721|519726|519728|519739|519743|519747|519750|519752|519936|519991|519993|519996|519997|520010|520012|520015|536661|538979|559545|559581|559583|559728|559730|559732|559734|559736|561885|561887|561892|561895|563434|563440|563453|563457|575512|576330|631914|631915|631916|631917|631918|631919|631920|631921|631922|631923|631924|631925|631926|631927|631928|631929|631930|631931|631932|631933|631934|631935|631936|631937|631938|631939|631940|631941|654124|698364|698366|698367|720744|720745|720746|730261|748714|748715|759319|764295|764296|764299|764303|764306|774880|781865|781866|781867|818233|819441|819442|828745|828746|828747|828748|828749|828750|828751|828752|828753|828754|828755|828756|828757|828758|828759|828760|828761|828762|828763|828764|828765|828766|828767|828768|828769|828770|828771|828772|828773|828774|828775|828776|828777|828778|828779|828780|828781|828782|828783|828784|851479|851586|903532|923405|923406|923407|923408|923409|923410|923411|923412|923413|923414|923415|923416|923417|923418|923419|923420|923421|923422|932152|932153|932154|932155|932156|932157|932158|932159|932160|932161|932162|932163|932164|932165|943789|943790|943791|943792|943793|953661|953662|953663|953664|953665|953666|970784|970785|970786|972784|980912", + "upstreamId": "86177|199922|199923|199925|199927|199928|199929|199930|199931|199932|199936|200703|204039|204062|359478|414962|428275|440835|443568|452956|452957|452959|452960|452961|452962|453265|453268|453269|453337|453338|453340|453345|453347|453348|453350|453352|453354|453718|453719|453722|453724|453726|453727|481475|481476|481478|519721|519726|519728|519739|519743|519747|519750|519752|519936|519991|519993|519996|519997|520010|520012|520015|536661|538979|559545|559581|559583|559728|559730|559732|559734|559736|561885|561887|561892|561895|563434|563440|563453|563457|575512|576330|631914|631915|631916|631917|631918|631919|631920|631921|631922|631923|631924|631925|631926|631927|631928|631929|631930|631931|631932|631933|631934|631935|631936|631937|631938|631939|631940|631941|654124|698364|698366|698367|720744|720745|720746|730261|748714|748715|759319|764295|764296|764299|764303|764306|774880|781865|781866|781867|818233|819441|819442|828745|828746|828747|828748|828749|828750|828751|828752|828753|828754|828755|828756|828757|828758|828759|828760|828761|828762|828763|828764|828765|828766|828767|828768|828769|828770|828771|828772|828773|828774|828775|828776|828777|828778|828779|828780|828781|828782|828783|828784|851479|851586|903532|923405|923406|923407|923408|923409|923410|923411|923412|923413|923414|923415|923416|923417|923418|923419|923420|923421|923422|932152|932153|932154|932155|932156|932157|932158|932159|932160|932161|932162|932163|932164|932165|943789|943790|943791|943792|943793|953661|953662|953663|953664|953665|953666|970784|970785|970786|972784|980912", "text": "Epilepsy, hearing loss, and mental retardation syndrome" }, { - "baseId": "91475|106831|106832|106833|106834|205788|205789|260578|375291|375299|375330|376197|376230|376232|376338|378494|378500|410063|411591|411592|411593|413453|426232|429990|438649|466977|467055|467921|467970|467972|467973|468169|468172|468245|468372|468478|531228|531421|531425|531432|531476|531724|569245|569314|571300|571305|571602|571624|571703|646170|646171|646172|646173|646174|646175|646176|646223|646224|646225|646226|646227|646228|653471|653475|653479|694110|694112|694113|694129|694130|694132|694134|694135|695753|695754|695755|695760|704208|727253|755932|776346|797559|802220|821104|845599|845600|845645|845646|845647|851727|851729|852756|860400|904649|938035|950025|958193|958194", + "upstreamId": "91475|106831|106832|106833|106834|205788|205789|260578|375291|375299|375330|376197|376230|376232|376338|378494|378500|410063|411591|411592|411593|413453|426232|429990|438649|466977|467055|467921|467970|467972|467973|468169|468172|468245|468372|468478|531228|531421|531425|531432|531476|531724|569245|569314|571300|571305|571602|571624|571703|646170|646171|646172|646173|646174|646175|646176|646223|646224|646225|646226|646227|646228|653471|653475|653479|694110|694112|694113|694129|694130|694132|694134|694135|695753|695754|695755|695760|704208|727253|755932|776346|797559|802220|821104|845599|845600|845645|845646|845647|851727|851729|852756|860400|904649|938035|950025|958193|958194", "text": "Ataxia, spastic, 2, autosomal recessive" }, { - "baseId": "91819|141566|141567|141568|141569|141571|141572|165726|226730|226731|226732|226733|227400|247156|256738|256739|256740|256741|256742|271335|332348|332352|332355|332359|332361|332366|332368|332375|332377|332381|332382|342508|342513|342514|342517|342518|342520|342526|342527|342530|342531|342533|342535|342538|342540|347911|347912|347914|347915|347919|347920|347921|347922|347926|347929|347932|349242|349245|349246|360352|377025|377042|377212|377222|379171|379173|422232|434354|434355|446017|446019|468200|469092|469949|506423|507450|532391|532401|532406|532410|532456|532471|532472|532526|532528|532532|532859|532861|532871|532889|532894|570322|570323|570324|570327|570332|570336|572051|572053|572734|572737|572740|574797|574798|574799|574800|574801|574802|574804|574806|614453|624649|647418|647419|647420|647421|647422|647423|647424|647425|647426|647427|647428|647429|647430|647431|647432|647433|647434|647435|647436|647437|647438|647439|647440|647441|647442|647443|647444|647445|647446|647447|647448|647449|652975|653590|716119|716120|716121|727848|727849|727850|731232|741499|741501|756611|756613|756615|756617|756619|760552|760664|772294|772295|788231|821202|821203|821204|847045|847046|847047|847048|847049|847050|847051|847052|847053|847054|847055|847056|847057|847058|847059|847060|847061|847062|847063|847064|847065|851781|852829|879762|879763|879764|879765|879766|879767|879768|879769|879770|879771|879772|879773|879774|879775|879776|879777|879778|879779|879780|879781|879782|879783|879784|879785|879786|879787|879788|879789|879790|879791|879792|879793|879794|879795|879796|879797|879798|879799|879800|879801|879802|880682|880683|880684|880685|880686|928784|928785|938502|938503|938504|938505|938506|938507|938508|938509|938510|938511|950595|950596|950597|950598|950599|950600|950601|950602|950603|958501|958502|958503|958504|958505|958506|958507|958508|958509", + "upstreamId": "91819|141566|141567|141568|141569|141571|141572|165726|226730|226731|226732|226733|227400|247156|256738|256739|256740|256741|256742|271335|332348|332352|332355|332359|332361|332366|332368|332375|332377|332381|332382|342508|342513|342514|342517|342518|342520|342526|342527|342530|342531|342533|342535|342538|342540|347911|347912|347914|347915|347919|347920|347921|347922|347926|347929|347932|349242|349245|349246|360352|377025|377042|377212|377222|379171|379173|422232|434354|434355|446017|446019|468200|469092|469949|506423|507450|532391|532401|532406|532410|532456|532471|532472|532526|532528|532532|532859|532861|532871|532889|532894|570322|570323|570324|570327|570332|570336|572051|572053|572734|572737|572740|574797|574798|574799|574800|574801|574802|574804|574806|614453|624649|647418|647419|647420|647421|647422|647423|647424|647425|647426|647427|647428|647429|647430|647431|647432|647433|647434|647435|647436|647437|647438|647439|647440|647441|647442|647443|647444|647445|647446|647447|647448|647449|652975|653590|716119|716120|716121|727848|727849|727850|731232|741499|741501|756611|756613|756615|756617|756619|760552|760664|772294|772295|788231|821202|821203|821204|847045|847046|847047|847048|847049|847050|847051|847052|847053|847054|847055|847056|847057|847058|847059|847060|847061|847062|847063|847064|847065|851781|852829|879762|879763|879764|879765|879766|879767|879768|879769|879770|879771|879772|879773|879774|879775|879776|879777|879778|879779|879780|879781|879782|879783|879784|879785|879786|879787|879788|879789|879790|879791|879792|879793|879794|879795|879796|879797|879798|879799|879800|879801|879802|880682|880683|880684|880685|880686|928784|928785|938502|938503|938504|938505|938506|938507|938508|938509|938510|938511|950595|950596|950597|950598|950599|950600|950601|950602|950603|958501|958502|958503|958504|958505|958506|958507|958508|958509", "text": "Tyrosine kinase 2 deficiency" }, { - "baseId": "92620|335886|335890|335894|335899|335901|335902|335904|335907|335909|335911|335914|335915|345594|345596|345598|345601|345602|345606|345617|350157|350158|350159|350161|350162|350163|350164|350167|350173|351214|351217|351218|351221|351222|351225|351226|351229|351230|351237|351238|434496|434497|620666|705566|717065|717066|717068|717070|728738|728739|757620|798766|886323|886324|886325|886326|886327|886328|886329|886330|886331|886332|886333|886334|886335|886336|886337|886338|886339|886340|886341|886342|886343|886344|886345|887474|887475|887476|920418", + "upstreamId": "92620|335886|335890|335894|335899|335901|335902|335904|335907|335909|335911|335914|335915|345594|345596|345598|345601|345602|345606|345617|350157|350158|350159|350161|350162|350163|350164|350167|350173|351214|351217|351218|351221|351222|351225|351226|351229|351230|351237|351238|434496|434497|620666|705566|717065|717066|717068|717070|728738|728739|757620|798766|886323|886324|886325|886326|886327|886328|886329|886330|886331|886332|886333|886334|886335|886336|886337|886338|886339|886340|886341|886342|886343|886344|886345|887474|887475|887476|920418", "text": "Phosphoenolpyruvate carboxykinase deficiency, cytosolic" }, { - "baseId": "92718|94413|380176|439199|469550|469552|469557|469561|469562|469563|469565|469567|469569|469576|470593|470595|470597|470598|470600|470606|470608|470609|470612|470613|471083|471088|471092|471096|471100|471102|471106|471107|471114|471120|471125|471126|471129|471133|471135|471567|471569|471571|471573|471577|471579|471582|471582|471585|471589|471591|471594|471599|533751|533758|533759|533768|533775|533777|533778|533779|533780|533781|533782|533784|533786|533787|533788|533789|533791|533792|533794|533795|533798|533799|533800|533801|533802|533804|533805|533809|533811|533814|533815|533816|533818|533825|534347|534349|534351|534354|534356|534364|534367|534368|534372|539985|571475|571476|571479|571485|571486|571490|571492|571498|571499|571503|571505|573029|573034|573036|573038|573042|573050|573055|573058|573060|573062|573063|573717|573729|573731|573736|573738|573739|573740|573746|573748|573749|573750|573754|573756|573757|573759|575147|575148|575149|575150|575151|622474|648889|648890|648891|648892|648893|648894|648895|648896|648897|648898|648899|648900|648901|648902|648903|648904|648905|648906|648907|648908|648909|648910|648911|648912|648913|648914|648915|648916|648917|648918|648919|648920|648921|648922|648923|648924|648925|648926|653575|653662|653666|694623|705654|705656|705657|717181|728858|728859|728860|742586|742588|742589|745133|757736|757737|757738|757740|757741|757743|757744|757747|773284|773286|773293|776944|776945|776946|780000|786481|786483|786484|788255|788353|798019|798022|821352|821361|821362|848670|848671|848672|848673|848674|848675|848676|848677|848678|848679|848680|848681|848682|848683|848684|848685|848686|848687|848688|848689|848690|848691|848692|848693|848694|848695|848696|848697|848698|848699|848700|848701|848702|848703|848704|848705|848706|848707|848708|848709|848710|848711|848712|848713|848714|848715|848716|848717|848718|848719|848720|851857|852396|852914|929282|929283|929284|929285|929286|929287|929288|929289|929290|929291|929292|929293|929294|929295|929296|929297|929298|929299|929300|929301|929302|929303|939069|939070|939071|939072|939073|939074|939075|939076|939077|939078|939079|939080|939081|939082|939083|941257|941258|951192|951193|951194|951195|951196|951197|951198|951199|951200|951201|951202|951203|951204|951205|951206|951207|951208|951209|958932|958933|958934|958935|958936|958937|958938|958939|958940|958941|960325|960950|980855|980856", + "upstreamId": "92718|94413|380176|439199|469550|469552|469557|469561|469562|469563|469565|469567|469569|469576|470593|470595|470597|470598|470600|470606|470608|470609|470612|470613|471083|471088|471092|471096|471100|471102|471106|471107|471114|471120|471125|471126|471129|471133|471135|471567|471569|471571|471573|471577|471579|471582|471582|471585|471589|471591|471594|471599|533751|533758|533759|533768|533775|533777|533778|533779|533780|533781|533782|533784|533786|533787|533788|533789|533791|533792|533794|533795|533798|533799|533800|533801|533802|533804|533805|533809|533811|533814|533815|533816|533818|533825|534347|534349|534351|534354|534356|534364|534367|534368|534372|539985|571475|571476|571479|571485|571486|571490|571492|571498|571499|571503|571505|573029|573034|573036|573038|573042|573050|573055|573058|573060|573062|573063|573717|573729|573731|573736|573738|573739|573740|573746|573748|573749|573750|573754|573756|573757|573759|575147|575148|575149|575150|575151|622474|648889|648890|648891|648892|648893|648894|648895|648896|648897|648898|648899|648900|648901|648902|648903|648904|648905|648906|648907|648908|648909|648910|648911|648912|648913|648914|648915|648916|648917|648918|648919|648920|648921|648922|648923|648924|648925|648926|653575|653662|653666|694623|705654|705656|705657|717181|728858|728859|728860|742586|742588|742589|745133|757736|757737|757738|757740|757741|757743|757744|757747|773284|773286|773293|776944|776945|776946|780000|786481|786483|786484|788255|788353|798019|798022|821352|821361|821362|848670|848671|848672|848673|848674|848675|848676|848677|848678|848679|848680|848681|848682|848683|848684|848685|848686|848687|848688|848689|848690|848691|848692|848693|848694|848695|848696|848697|848698|848699|848700|848701|848702|848703|848704|848705|848706|848707|848708|848709|848710|848711|848712|848713|848714|848715|848716|848717|848718|848719|848720|851857|852396|852914|929282|929283|929284|929285|929286|929287|929288|929289|929290|929291|929292|929293|929294|929295|929296|929297|929298|929299|929300|929301|929302|929303|939069|939070|939071|939072|939073|939074|939075|939076|939077|939078|939079|939080|939081|939082|939083|941257|941258|951192|951193|951194|951195|951196|951197|951198|951199|951200|951201|951202|951203|951204|951205|951206|951207|951208|951209|958932|958933|958934|958935|958936|958937|958938|958939|958940|958941|960325|960950|980855|980856", "text": "Parkinson disease 20, early-onset" }, { - "baseId": "92718|380177|380178|380179|380180|439199|469550|469552|469557|469561|469562|469563|469565|469567|469569|469576|470593|470595|470597|470598|470600|470606|470608|470609|470612|470613|471083|471088|471092|471096|471100|471102|471106|471107|471114|471120|471125|471126|471129|471133|471135|471567|471569|471571|471573|471577|471579|471582|471582|471585|471589|471591|471594|471599|533751|533758|533759|533768|533775|533777|533778|533779|533780|533781|533782|533784|533786|533787|533788|533789|533791|533792|533794|533795|533798|533799|533800|533801|533802|533804|533805|533809|533811|533814|533815|533816|533818|533825|534347|534349|534351|534354|534356|534364|534367|534368|534372|571475|571476|571479|571485|571486|571490|571492|571498|571498|571499|571503|571505|573029|573034|573036|573038|573042|573050|573055|573058|573060|573062|573063|573717|573729|573731|573736|573738|573739|573740|573746|573748|573749|573750|573754|573756|573757|573759|575147|575148|575149|575150|575151|622474|648889|648890|648891|648892|648893|648894|648895|648896|648897|648898|648899|648900|648901|648902|648903|648904|648905|648906|648907|648908|648909|648910|648911|648912|648913|648914|648915|648916|648917|648918|648919|648920|648921|648922|648923|648924|648925|648926|653575|653662|653666|694623|705654|705656|705657|717181|728858|728859|728860|742586|742588|742589|745133|757736|757737|757738|757740|757741|757743|757744|757747|773284|773286|773293|776944|776945|776946|780000|786481|786483|786484|788255|788353|798019|798019|798022|798924|821352|821361|821362|848670|848671|848672|848673|848674|848675|848676|848677|848678|848679|848680|848681|848682|848683|848684|848685|848686|848687|848688|848689|848690|848691|848692|848693|848694|848695|848696|848697|848698|848699|848700|848701|848702|848703|848704|848705|848706|848707|848708|848709|848710|848711|848712|848713|848714|848715|848716|848717|848718|848719|848720|851857|852396|852914|919932|929282|929283|929284|929285|929286|929287|929288|929289|929290|929291|929292|929293|929294|929295|929296|929297|929298|929299|929300|929301|929302|929303|939069|939070|939071|939072|939073|939074|939075|939076|939077|939078|939079|939080|939081|939082|939083|941257|941258|951192|951193|951194|951195|951196|951197|951198|951199|951200|951201|951202|951203|951204|951205|951206|951207|951208|951209|958932|958933|958934|958935|958936|958937|958938|958939|958940|958941|960325|960950|966776", + "upstreamId": "92718|380177|380178|380179|380180|439199|469550|469552|469557|469561|469562|469563|469565|469567|469569|469576|470593|470595|470597|470598|470600|470606|470608|470609|470612|470613|471083|471088|471092|471096|471100|471102|471106|471107|471114|471120|471125|471126|471129|471133|471135|471567|471569|471571|471573|471577|471579|471582|471582|471585|471589|471591|471594|471599|533751|533758|533759|533768|533775|533777|533778|533779|533780|533781|533782|533784|533786|533787|533788|533789|533791|533792|533794|533795|533798|533799|533800|533801|533802|533804|533805|533809|533811|533814|533815|533816|533818|533825|534347|534349|534351|534354|534356|534364|534367|534368|534372|571475|571476|571479|571485|571486|571490|571492|571498|571498|571499|571503|571505|573029|573034|573036|573038|573042|573050|573055|573058|573060|573062|573063|573717|573729|573731|573736|573738|573739|573740|573746|573748|573749|573750|573754|573756|573757|573759|575147|575148|575149|575150|575151|622474|648889|648890|648891|648892|648893|648894|648895|648896|648897|648898|648899|648900|648901|648902|648903|648904|648905|648906|648907|648908|648909|648910|648911|648912|648913|648914|648915|648916|648917|648918|648919|648920|648921|648922|648923|648924|648925|648926|653575|653662|653666|694623|705654|705656|705657|717181|728858|728859|728860|742586|742588|742589|745133|757736|757737|757738|757740|757741|757743|757744|757747|773284|773286|773293|776944|776945|776946|780000|786481|786483|786484|788255|788353|798019|798019|798022|798924|821352|821361|821362|848670|848671|848672|848673|848674|848675|848676|848677|848678|848679|848680|848681|848682|848683|848684|848685|848686|848687|848688|848689|848690|848691|848692|848693|848694|848695|848696|848697|848698|848699|848700|848701|848702|848703|848704|848705|848706|848707|848708|848709|848710|848711|848712|848713|848714|848715|848716|848717|848718|848719|848720|851857|852396|852914|919932|929282|929283|929284|929285|929286|929287|929288|929289|929290|929291|929292|929293|929294|929295|929296|929297|929298|929299|929300|929301|929302|929303|939069|939070|939071|939072|939073|939074|939075|939076|939077|939078|939079|939080|939081|939082|939083|941257|941258|951192|951193|951194|951195|951196|951197|951198|951199|951200|951201|951202|951203|951204|951205|951206|951207|951208|951209|958932|958933|958934|958935|958936|958937|958938|958939|958940|958941|960325|960950|966776", "text": "Epileptic encephalopathy, early infantile, 53" }, { - "baseId": "93526|453713", + "upstreamId": "93526|453713", "text": "B Lymphoblastic Leukemia/Lymphoma with t(v" }, { - "baseId": "93526|453713|612012", + "upstreamId": "93526|453713|612012", "text": "11q23.3)" }, { - "baseId": "93526|453713|612012", + "upstreamId": "93526|453713|612012", "text": " KMT2A Rearranged" }, { - "baseId": "94194|94195|244155|438283|438284|453001|453003|453014|453020|453292|453301|453305|453307|453308|453389|453392|453400|453403|453404|453606|453791|453798|519773|519780|519782|519786|519798|519802|519806|520049|520051|520056|520100|559617|559772|559774|559776|559778|559780|561935|561940|561950|563538|609531|632033|632034|632035|632036|632037|632038|632039|632040|632041|632042|632043|632044|632045|632046|632047|632048|632049|632050|632051|632052|632053|691513|691514|691517|691519|691520|691521|695218|698396|720795|748774|764352|764354|764357|764358|787414|828884|828885|828886|828887|828888|828889|828890|828891|828892|828893|828894|851491|923443|923444|923445|923446|932212|932213|932214|932215|932216|932217|932218|943848|943849|943850|943851|943852|943853|953692|953693", + "upstreamId": "94194|94195|244155|438283|438284|453001|453003|453014|453020|453292|453301|453305|453307|453308|453389|453392|453400|453403|453404|453606|453791|453798|519773|519780|519782|519786|519798|519802|519806|520049|520051|520056|520100|559617|559772|559774|559776|559778|559780|561935|561940|561950|563538|609531|632033|632034|632035|632036|632037|632038|632039|632040|632041|632042|632043|632044|632045|632046|632047|632048|632049|632050|632051|632052|632053|691513|691514|691517|691519|691520|691521|695218|698396|720795|748774|764352|764354|764357|764358|787414|828884|828885|828886|828887|828888|828889|828890|828891|828892|828893|828894|851491|923443|923444|923445|923446|932212|932213|932214|932215|932216|932217|932218|943848|943849|943850|943851|943852|943853|953692|953693", "text": "Charcot-Marie-Tooth disease, axonal, type 2R" }, { - "baseId": "94224|362490|362491|513218", + "upstreamId": "94224|362490|362491|513218", "text": "Spastic paraplegia 79, autosomal recessive" }, { - "baseId": "94225|94226|94227|208297|422102|553394|585918|613830|791631|798701|799962|964875|971053|973042", + "upstreamId": "94225|94226|94227|208297|422102|553394|585918|613830|791631|798701|799962|964875|971053|973042", "text": "Mental retardation, autosomal dominant 21" }, { - "baseId": "94228|94229", + "upstreamId": "94228|94229", "text": "Major depressive disorder" }, { - "baseId": "94232|94233|94234|428697|456514|456515|456517|456519|456521|456906|456909|456920|457142|457144|457145|457595|502324|522507|522745|522749|522822|523180|561038|564180|566634|635965|651672|692192|692194|692195|692197|692198|692199|692200|699973|699975|699978|699979|699980|699981|699982|710913|710914|710915|736057|736058|759656|851146|906251|906252|924776|945542|945543|945544|955101|960628", + "upstreamId": "94232|94233|94234|428697|456514|456515|456517|456519|456521|456906|456909|456920|457142|457144|457145|457595|502324|522507|522745|522749|522822|523180|561038|564180|566634|635965|651672|692192|692194|692195|692197|692198|692199|692200|699973|699975|699978|699979|699980|699981|699982|710913|710914|710915|736057|736058|759656|851146|906251|906252|924776|945542|945543|945544|955101|960628", "text": "Short-rib thoracic dysplasia 8 with or without polydactyly" }, { - "baseId": "94236|171810|207747|207753|207758|207768|207769|207781|247043|373416|407873|429080|429084|429095|429098|429099|538414|578486|790966|790967|790968|906324|919279|919280|919281|919282|920283", + "upstreamId": "94236|171810|207747|207753|207758|207768|207769|207781|247043|373416|407873|429080|429084|429095|429098|429099|538414|578486|790966|790967|790968|906324|919279|919280|919281|919282|920283", "text": "Mental retardation, autosomal recessive 37" }, { - "baseId": "94238|94239|94240|361491|371686|371690|421789|459888|459897|460072|460326|460441|460756|502795|525348|525652|525657|563779|564593|638941|638942|638943|638944|638945|638946|638947|655993|684175|684176|684177|684179|687636|687637|687639|687641|687643|692844|820189|836873|925815|925816|925817|956056|970613|981693|981694|981695", + "upstreamId": "94238|94239|94240|361491|371686|371690|421789|459888|459897|460072|460326|460441|460756|502795|525348|525652|525657|563779|564593|638941|638942|638943|638944|638945|638946|638947|655993|684175|684176|684177|684179|687636|687637|687639|687641|687643|692844|820189|836873|925815|925816|925817|956056|970613|981693|981694|981695", "text": "Telangiectasia, hereditary hemorrhagic, type 5" }, { - "baseId": "94241|94242|624846|788733|789911", + "upstreamId": "94241|94242|624846|788733|789911", "text": "Orofaciodigital syndrome V" }, { - "baseId": "94249|94250", + "upstreamId": "94249|94250", "text": "Erythroderma, congenital, with palmoplantar keratoderma, hypotrichosis, and hyper-ige" }, { - "baseId": "94253|206596|404733|431173|954586|970260|970261|970262|970263|970264|970265|970266|970268|970272|970303|970310|970311|970312|970313|970314|970315|970316|970317|970319|970322|970329|970330|970331|970332|970333|970345|970346|970349|970350|970352|970353", + "upstreamId": "94253|206596|404733|431173|954586|970260|970261|970262|970263|970264|970265|970266|970268|970272|970303|970310|970311|970312|970313|970314|970315|970316|970317|970319|970322|970329|970330|970331|970332|970333|970345|970346|970349|970350|970352|970353", "text": "Moyamoya angiopathy" }, { - "baseId": "94255|136555|136556|136557|359280|405271|405272|433818|433819|433820|448257|448261|448268|448270|448272|448274|448280|448389|448396|448464|448465|448466|448467|448471|516096|516098|516102|516106|516116|516138|516143|516145|516147|516152|516246|516251|557388|557431|558044|558046|558601|558603|558605|609440|624193|628289|628290|628291|628292|628293|628294|628295|628296|628297|628298|628299|628300|628301|628302|628303|650692|650694|650702|650778|696925|707607|707608|707609|707610|719147|719148|719149|732670|732671|732673|732674|732675|732677|746693|746695|746696|746697|746698|746699|758953|759087|762107|762116|774556|774558|778843|780782|780784|780785|790020|794748|799231|799232|818824|819006|824551|824552|824553|824554|824555|824556|824557|824558|824559|824560|824561|824562|824563|824564|920155|922176|922177|922178|922179|922180|930711|930712|930713|930714|930715|930716|939833|940649|940650|942149|942150|942151|942152|942153|952558|952559|952560|952561|952562|960436|961926|970704", + "upstreamId": "94255|136555|136556|136557|359280|405271|405272|433818|433819|433820|448257|448261|448268|448270|448272|448274|448280|448389|448396|448464|448465|448466|448467|448471|516096|516098|516102|516106|516116|516138|516143|516145|516147|516152|516246|516251|557388|557431|558044|558046|558601|558603|558605|609440|624193|628289|628290|628291|628292|628293|628294|628295|628296|628297|628298|628299|628300|628301|628302|628303|650692|650694|650702|650778|696925|707607|707608|707609|707610|719147|719148|719149|732670|732671|732673|732674|732675|732677|746693|746695|746696|746697|746698|746699|758953|759087|762107|762116|774556|774558|778843|780782|780784|780785|790020|794748|799231|799232|818824|819006|824551|824552|824553|824554|824555|824556|824557|824558|824559|824560|824561|824562|824563|824564|920155|922176|922177|922178|922179|922180|930711|930712|930713|930714|930715|930716|939833|940649|940650|942149|942150|942151|942152|942153|952558|952559|952560|952561|952562|960436|961926|970704", "text": "Immunodeficiency 14" }, { - "baseId": "94260|94261|94263|94264|221749|240211|240212|240213|240214|240215|240216|240217|240218|389829|395838|395839|395845|395854|395857|396112|396113|396116|396234|396242|396243|396245|396255|396522|396523|396524|396526|396527|396529|396531|396533|396541|439015|457123|457126|457709|457710|457718|457719|457726|457728|457731|457733|457741|457757|457759|457760|457761|457763|458123|458130|458136|458139|458141|458143|522958|522963|523184|523186|523194|523197|523422|523426|523543|561867|561872|561876|561879|561880|561881|561883|564574|564575|567313|567315|567317|636523|636524|636525|636526|636527|636528|636529|636530|636531|636532|651756|651882|683959|687156|689896|692339|819933|834020|834021|834022|834023|834024|834025|834026|834027|834028|834029|924976|924977|924978|934057|934058|934059|934060|934061|945814|945815|945816|945817|945818|945819|945820|955270|955271|955272", + "upstreamId": "94260|94261|94263|94264|221749|240211|240212|240213|240214|240215|240216|240217|240218|389829|395838|395839|395845|395854|395857|396112|396113|396116|396234|396242|396243|396245|396255|396522|396523|396524|396526|396527|396529|396531|396533|396541|439015|457123|457126|457709|457710|457718|457719|457726|457728|457731|457733|457741|457757|457759|457760|457761|457763|458123|458130|458136|458139|458141|458143|522958|522963|523184|523186|523194|523197|523422|523426|523543|561867|561872|561876|561879|561880|561881|561883|564574|564575|567313|567315|567317|636523|636524|636525|636526|636527|636528|636529|636530|636531|636532|651756|651882|683959|687156|689896|692339|819933|834020|834021|834022|834023|834024|834025|834026|834027|834028|834029|924976|924977|924978|934057|934058|934059|934060|934061|945814|945815|945816|945817|945818|945819|945820|955270|955271|955272", "text": "Ciliary dyskinesia, primary, 28" }, { - "baseId": "94265|222252|241554|241555|241556|254588|254589|398992|398995|398997|399146|399147|399459|399461|399463|399475|399476|399718|399722|462190|462470|462473|462479|462976|462979|462988|462994|463102|463105|463107|527444|527733|565486|568052|568057|641145|641146|641147|641148|641149|684328|685381|687994|687995|687996|687997|839968|839969|851951|926638|926639|926640|926641|936137|936138|948046|956887|956888|956889|956890|960045", + "upstreamId": "94265|222252|241554|241555|241556|254588|254589|398992|398995|398997|399146|399147|399459|399461|399463|399475|399476|399718|399722|462190|462470|462473|462479|462976|462979|462988|462994|463102|463105|463107|527444|527733|565486|568052|568057|641145|641146|641147|641148|641149|684328|685381|687994|687995|687996|687997|839968|839969|851951|926638|926639|926640|926641|936137|936138|948046|956887|956888|956889|956890|960045", "text": "Ciliary dyskinesia, primary, 27" }, { - "baseId": "94269|94270|205563|533776|857601", + "upstreamId": "94269|94270|205563|533776|857601", "text": "Ciliary dyskinesia, primary, 26" }, { - "baseId": "94271|94272|94273|94274|94275|271315|366397|366398|366399|366452|367034|367039|439637|450680|499936|560992|708066|708067|747352|747353|762966|781193|825789|825790|942627|952952", + "upstreamId": "94271|94272|94273|94274|94275|271315|366397|366398|366399|366452|367034|367039|439637|450680|499936|560992|708066|708067|747352|747353|762966|781193|825789|825790|942627|952952", "text": "Alacrima, achalasia, and mental retardation syndrome" }, { - "baseId": "94274|263260", + "upstreamId": "94274|263260", "text": "Gastroesophageal reflux" }, { - "baseId": "94314|256107|345378", + "upstreamId": "94314|256107|345378", "text": "Immunodeficiency 13" }, { - "baseId": "94315|243992|374023|513626|513627|538439|553390|626235|626236|626237|626238|791438|791439|792795|801563|858761|971011|971012", + "upstreamId": "94315|243992|374023|513626|513627|538439|553390|626235|626236|626237|626238|791438|791439|792795|801563|858761|971011|971012", "text": "Mental retardation, autosomal recessive 38" }, { - "baseId": "94316|187105|215660|259635|404973|590035|861559", + "upstreamId": "94316|187105|215660|259635|404973|590035|861559", "text": "Craniofacial dysmorphism, skeletal anomalies, and mental retardation syndrome" }, { - "baseId": "94331|94332|94333|970819", + "upstreamId": "94331|94332|94333|970819", "text": "Cole disease" }, { - "baseId": "94334|94335|94336|177793|188055|209190|225836|243875|265066|265173|265174|361253|361254|384417|430926|432099|432100|432101|471006|471007|471013|471017|471018|471979|471980|471993|472204|488165|534935|534937|534962|534964|534967|534969|534972|535075|535197|535198|535199|551349|552265|572589|574006|574009|574010|574011|574015|574897|574899|574901|574903|574912|574913|575451|575452|583209|611459|614510|650205|650209|650213|650214|650215|650217|650225|650226|672120|706317|743476|774210|792502|906198|915069|929812|929813|929818|939683|959506|963194|964906|969322|971502", + "upstreamId": "94334|94335|94336|177793|188055|209190|225836|243875|265066|265173|265174|361253|361254|384417|430926|432099|432100|432101|471006|471007|471013|471017|471018|471979|471980|471993|472204|488165|534935|534937|534962|534964|534967|534969|534972|535075|535197|535198|535199|551349|552265|572589|574006|574009|574010|574011|574015|574897|574899|574901|574903|574912|574913|575451|575452|583209|611459|614510|650205|650209|650213|650214|650215|650217|650225|650226|672120|706317|743476|774210|792502|906198|915069|929812|929813|929818|939683|959506|963194|964906|969322|971502", "text": "Mental retardation, X-linked 98" }, { - "baseId": "94338|94339|919600", + "upstreamId": "94338|94339|919600", "text": "Corneal dystrophy, Fuchs endothelial, 8" }, { - "baseId": "94341|94342|94343|94344|215046|215047|452503|481684|519050|550592|562641|631120|691363|695194|698011|698012|698013|748179|763801|779050|788763|819363|827831|827832|858551|931874|976007", + "upstreamId": "94341|94342|94343|94344|215046|215047|452503|481684|519050|550592|562641|631120|691363|695194|698011|698012|698013|748179|763801|779050|788763|819363|827831|827832|858551|931874|976007", "text": "Microphthalmia, syndromic 12" }, { - "baseId": "94347|455150|455288|456026|456031|521302|521304|521681|521685|521933|521937|521939|560413|560415|560417|560530|560535|560536|563315|563318|563320|565307|565308|565313|614296|634489|634490|634491|634492|634493|634494|634495|699257|699258|699259|721669|721673|721674|735363|749763|782412|819649|831412|831413|831414|831415|831416|831417|831418|831419|831420|924220|924221|924222|933126|933127|944851|944852|954324|954325|959789", + "upstreamId": "94347|455150|455288|456026|456031|521302|521304|521681|521685|521933|521937|521939|560413|560415|560417|560530|560535|560536|563315|563318|563320|565307|565308|565313|614296|634489|634490|634491|634492|634493|634494|634495|699257|699258|699259|721669|721673|721674|735363|749763|782412|819649|831412|831413|831414|831415|831416|831417|831418|831419|831420|924220|924221|924222|933126|933127|944851|944852|954324|954325|959789", "text": "Candidiasis, familial, 8" }, { - "baseId": "94407|457788", + "upstreamId": "94407|457788", "text": "Testicular anomalies with or without congenital heart disease" }, { - "baseId": "94408|94409|94410|94411|94412", + "upstreamId": "94408|94409|94410|94411|94412", "text": "Reticulate acropigmentation of Kitamura" }, { - "baseId": "94414", + "upstreamId": "94414", "text": "Microtia with or without hearing impairment" }, { - "baseId": "94415|94416", + "upstreamId": "94415|94416", "text": "Craniosynostosis 5, susceptibility to" }, { - "baseId": "94417|368674|368822|439518|455159|455801|501087|501096|501777|521626|583098|634512|634513|655701|655706|699265|749775|831459", + "upstreamId": "94417|368674|368822|439518|455159|455801|501087|501096|501777|521626|583098|634512|634513|655701|655706|699265|749775|831459", "text": "Ehlers-Danlos syndrome, musculocontractural type 2" }, { - "baseId": "94418", + "upstreamId": "94418", "text": "Autosomal recessive infantile epilepsy" }, { - "baseId": "94418|181458", + "upstreamId": "94418|181458", "text": "Infantile epilepsy" }, { - "baseId": "94423|94424|220990|260693|439003|448222|448345|448350|448369|448427|516077|516227|516230|557423|612540|628246|628247|628248|650698|690662|690664|690665|690667|690668|690669|690670|690671|690672|690673|818991|824384|824385|824386|824387|930653|942092|952507|964803", + "upstreamId": "94423|94424|220990|260693|439003|448222|448345|448350|448369|448427|516077|516227|516230|557423|612540|628246|628247|628248|650698|690662|690664|690665|690667|690668|690669|690670|690671|690672|690673|818991|824384|824385|824386|824387|930653|942092|952507|964803", "text": "Parkinson disease 19a, juvenile-onset" }, { - "baseId": "94423|172297|421965", + "upstreamId": "94423|172297|421965", "text": "Ataxia, combined cerebellar and peripheral, with hearing loss and diabetes mellitus" }, { - "baseId": "94425|205220|225855|227705|227734|384399|404642|424614|434502|536094|538333|550579|608800|654114|677403|789954|798468|802120|861560|963479|963480|964151|976641|980551", + "upstreamId": "94425|205220|225855|227705|227734|384399|404642|424614|434502|536094|538333|550579|608800|654114|677403|789954|798468|802120|861560|963479|963480|964151|976641|980551", "text": "Mental retardation, autosomal dominant 22" }, { - "baseId": "94429|94430|94431|583121", + "upstreamId": "94429|94430|94431|583121", "text": "Deafness and myopia" }, { - "baseId": "94436|94437|801840", + "upstreamId": "94436|94437|801840", "text": "Mental retardation, autosomal recessive 39" }, { - "baseId": "94438|903540|965965", + "upstreamId": "94438|903540|965965", "text": "Periventricular nodular heterotopia 6" }, { - "baseId": "94439", + "upstreamId": "94439", "text": "Deafness, autosomal recessive 76" }, { - "baseId": "94450|108170|404780|431977|431978", + "upstreamId": "94450|108170|404780|431977|431978", "text": "Platelet-type bleeding disorder 17" }, { - "baseId": "94451|508729|790912", + "upstreamId": "94451|508729|790912", "text": "Leukemia, acute lymphoblastic, susceptibility to, 3" }, { - "baseId": "94454|439604|439605|439606|439607|550136|623298|626383|682737|682737|790710|798583|903552|919091|919092|919093|921214|963622|970847|970848|970849|970850|970851", + "upstreamId": "94454|439604|439605|439606|439607|550136|623298|626383|682737|682737|790710|798583|903552|919091|919092|919093|921214|963622|970847|970848|970849|970850|970851", "text": "Kleefstra syndrome 2" }, { - "baseId": "94530|105990|106004|623100", + "upstreamId": "94530|105990|106004|623100", "text": "fluorouracil response - Toxicity/ADR" }, { - "baseId": "94530", + "upstreamId": "94530", "text": "Pyrimidine analogues response - Toxicity/ADR" }, { - "baseId": "94530|106004|623100", + "upstreamId": "94530|106004|623100", "text": "capecitabine response - Toxicity/ADR" }, { - "baseId": "94530|106004", + "upstreamId": "94530|106004", "text": "tegafur response - Toxicity/ADR" }, { - "baseId": "94536|614260|858550", + "upstreamId": "94536|614260|858550", "text": "Diamond-Blackfan anemia 12" }, { - "baseId": "94550", + "upstreamId": "94550", "text": "Multiple fibroadenomas of the breast" }, { - "baseId": "94551|94552|94553|225826|225827|431551|578492|965985|965986", + "upstreamId": "94551|94552|94553|225826|225827|431551|578492|965985|965986", "text": "Van Maldergem syndrome 1" }, { - "baseId": "94554|94555|94556|94557|187954|190563|190579|205286|205286|225862|298419|300776|305161|305266|390647|413396|422002|434101|434102|434104|539166|539167|590731|679792|791431|805104|858668|961320|961531|963169|971008", + "upstreamId": "94554|94555|94556|94557|187954|190563|190579|205286|205286|225862|298419|300776|305161|305266|390647|413396|422002|434101|434102|434104|539166|539167|590731|679792|791431|805104|858668|961320|961531|963169|971008", "text": "Schaaf-Yang syndrome" }, { - "baseId": "94558|94559|94560|94561|94562|94563|367890|367898|406400|513269|513417|578427|612350|790433|802149|802150", + "upstreamId": "94558|94559|94560|94561|94562|94563|367890|367898|406400|513269|513417|578427|612350|790433|802149|802150", "text": "Van Maldergem syndrome 2" }, { - "baseId": "94560|165908|165909|165910|165911|363766|918878|918879", + "upstreamId": "94560|165908|165909|165910|165911|363766|918878|918879", "text": "Hennekam lymphangiectasia-lymphedema syndrome 2" }, { - "baseId": "94568|94569|227259|239219|239222|363675|393828|394016|406288|424892|443446|452323|452496|452800|519252|559489|918830|920192|920193", + "upstreamId": "94568|94569|227259|239219|239222|363675|393828|394016|406288|424892|443446|452323|452496|452800|519252|559489|918830|920192|920193", "text": "Episodic pain syndrome, familial, 2" }, { - "baseId": "94572|513220|789154|816492", + "upstreamId": "94572|513220|789154|816492", "text": "Otofaciocervical syndrome 2" }, { - "baseId": "94573|590590|590591", + "upstreamId": "94573|590590|590591", "text": "Hyperprolactinemia" }, { - "baseId": "94575|94576|446969|446972|448523|448545|514863|514883|514888|514890|514891|514899|514906|516200|516201|516208|516288|556505|556507|556535|556849|556886|557414|626464|626465|628362|690686|695915|706511|706512|706513|707621|718029|729896|731499|731500|745484|801580|822351|822352|822353|822354|824610|824611|918536|921530|921531|922203|930742|930743|930744|939767|941321|942174|960394|977419|977420|977574", + "upstreamId": "94575|94576|446969|446972|448523|448545|514863|514883|514888|514890|514891|514899|514906|516200|516201|516208|516288|556505|556507|556535|556849|556886|557414|626464|626465|628362|690686|695915|706511|706512|706513|707621|718029|729896|731499|731500|745484|801580|822351|822352|822353|822354|824610|824611|918536|921530|921531|922203|930742|930743|930744|939767|941321|942174|960394|977419|977420|977574", "text": "Arthrogryposis, mental retardation, and seizures" }, { - "baseId": "94577|153773", + "upstreamId": "94577|153773", "text": "Macrocephaly/megalencephaly syndrome, autosomal recessive" }, { - "baseId": "94618|167523|167524|433862|452735|452745|453087|453097|453099|453101|453103|453442|519584|519632|519637|519641|519852|519873|519875|559662|561791|563274|563281|563282|609516|614269|631745|631746|631747|631748|631749|631750|631751|631752|631753|631754|631755|631756|631757|631758|631759|631760|631761|651124|651236|708989|708990|708991|720580|720582|730232|734212|734214|734215|744103|748444|748445|748446|759448|764100|764102|764103|764107|774857|779166|781779|781782|781783|787398|828511|828512|828513|828514|828515|828516|828517|828518|828519|828520|828521|828522|828523|828524|828525|828526|828527|828528|828529|859292|923325|923326|923327|923328|923329|923330|932068|932069|932070|932071|932072|940763|943687|943688|943689|953577|953578|953579|961934|981433", + "upstreamId": "94618|167523|167524|433862|452735|452745|453087|453097|453099|453101|453103|453442|519584|519632|519637|519641|519852|519873|519875|559662|561791|563274|563281|563282|609516|614269|631745|631746|631747|631748|631749|631750|631751|631752|631753|631754|631755|631756|631757|631758|631759|631760|631761|651124|651236|708989|708990|708991|720580|720582|730232|734212|734214|734215|744103|748444|748445|748446|759448|764100|764102|764103|764107|774857|779166|781779|781782|781783|787398|828511|828512|828513|828514|828515|828516|828517|828518|828519|828520|828521|828522|828523|828524|828525|828526|828527|828528|828529|859292|923325|923326|923327|923328|923329|923330|932068|932069|932070|932071|932072|940763|943687|943688|943689|953577|953578|953579|961934|981433", "text": "Autoimmune lymphoproliferative syndrome, type III" }, { - "baseId": "94805|94837|94853", + "upstreamId": "94805|94837|94853", "text": "MISMATCH REPAIR CANCER SYNDROME 3" }, { - "baseId": "94964", + "upstreamId": "94964", "text": "Colorectal cancer, early onset" }, { - "baseId": "94992|96714|550665", + "upstreamId": "94992|96714|550665", "text": "Malignant tumor of sigmoid colon" }, { - "baseId": "95421|169841|263323|485951|514022|590085|801162", + "upstreamId": "95421|169841|263323|485951|514022|590085|801162", "text": "Choreoathetosis" }, { - "baseId": "95421|485951", + "upstreamId": "95421|485951", "text": "Aqueductal stenosis" }, { - "baseId": "96064|133250|233596|590605|590607|590608", + "upstreamId": "96064|133250|233596|590605|590607|590608", "text": "Colon polyps" }, { - "baseId": "96098", + "upstreamId": "96098", "text": "Neoplasm of the rectum" }, { - "baseId": "96795|188286|199803|360903|361045|361046", + "upstreamId": "96795|188286|199803|360903|361045|361046", "text": "Respiratory insufficiency" }, { - "baseId": "96795|199803", + "upstreamId": "96795|199803", "text": "Pulmonary insufficiency" }, { - "baseId": "96867", + "upstreamId": "96867", "text": "Retinitis pigmentosa 67" }, { - "baseId": "96871|96872|96873|96874|96875|181288|181289|181290|181291|181293|203228|203228|203241|203242|614419|971044", + "upstreamId": "96871|96872|96873|96874|96875|181288|181289|181290|181291|181293|203228|203228|203241|203242|614419|971044", "text": "DOORS syndrome" }, { - "baseId": "97251|180234", + "upstreamId": "97251|180234", "text": "T Lymphoblastic Leukemia/Lymphoma" }, { - "baseId": "97317|97318|97319|205458|207494|207495|363880|369679|428751|438705|444193|513292|535733|535734|612282|622383|622888|623784|623785|623787|655822|700307|722761|736369|736371|744273|750864|782974|788821|788822|789122|790766|790767|834006|858590|965970|965971|973026|978409|978410|980927", + "upstreamId": "97317|97318|97319|205458|207494|207495|363880|369679|428751|438705|444193|513292|535733|535734|612282|622383|622888|623784|623785|623787|655822|700307|722761|736369|736371|744273|750864|782974|788821|788822|789122|790766|790767|834006|858590|965970|965971|973026|978409|978410|980927", "text": "Asparagine synthetase deficiency" }, { - "baseId": "97322|97323|97324|97325|97326|97327|97328|362110|362111|362112|362113|962801|962802|962803|962841|976827", + "upstreamId": "97322|97323|97324|97325|97326|97327|97328|362110|362111|362112|362113|962801|962802|962803|962841|976827", "text": "Nephrotic syndrome, type 9" }, { - "baseId": "97331|454705|454709|454780|454783|454787|455242|455248|455252|455255|455546|455554|455558|455567|455568|455570|520846|520866|520881|520885|520890|520892|521120|521122|521135|521139|521143|521145|521261|521264|521267|521270|521273|521274|521276|521312|521314|521316|521322|521323|521325|521326|521327|521329|521335|521337|537473|540446|560183|560185|560187|560189|560191|560300|560302|560304|560306|560308|562921|562923|562925|562927|562931|562939|564905|564914|564923|564929|626149|633579|633580|633581|633582|633583|633584|633585|633586|633587|633588|633589|633590|633591|633592|633593|633594|633595|633596|633597|633598|633599|633600|691765|691766|691767|691768|691769|691771|695280|698895|698897|698899|698900|698901|698902|730340|734921|782208|816505|819565|830451|830452|830453|830454|830455|830456|830457|830458|830459|830460|830461|830462|830463|830464|830465|830466|830467|830468|830469|830470|830471|830472|851266|918929|923927|923928|923929|923930|923931|923932|923933|923934|932765|932766|932767|932768|932769|932770|932771|944453|944454|944455|944456|944457|944458|954076|954077|954078", + "upstreamId": "97331|454705|454709|454780|454783|454787|455242|455248|455252|455255|455546|455554|455558|455567|455568|455570|520846|520866|520881|520885|520890|520892|521120|521122|521135|521139|521143|521145|521261|521264|521267|521270|521273|521274|521276|521312|521314|521316|521322|521323|521325|521326|521327|521329|521335|521337|537473|540446|560183|560185|560187|560189|560191|560300|560302|560304|560306|560308|562921|562923|562925|562927|562931|562939|564905|564914|564923|564929|626149|633579|633580|633581|633582|633583|633584|633585|633586|633587|633588|633589|633590|633591|633592|633593|633594|633595|633596|633597|633598|633599|633600|691765|691766|691767|691768|691769|691771|695280|698895|698897|698899|698900|698901|698902|730340|734921|782208|816505|819565|830451|830452|830453|830454|830455|830456|830457|830458|830459|830460|830461|830462|830463|830464|830465|830466|830467|830468|830469|830470|830471|830472|851266|918929|923927|923928|923929|923930|923931|923932|923933|923934|932765|932766|932767|932768|932769|932770|932771|944453|944454|944455|944456|944457|944458|954076|954077|954078", "text": "Distal hereditary motor neuronopathy 2D" }, { - "baseId": "97338|166235|214792|536084", + "upstreamId": "97338|166235|214792|536084", "text": "Split-hand/foot malformation 1" }, { - "baseId": "97339|153683|199889|199890|199891|199892|241893|399928|434940|480527|568296|919544|919545", + "upstreamId": "97339|153683|199889|199890|199891|199892|241893|399928|434940|480527|568296|919544|919545", "text": "Loeys-Dietz syndrome 5" }, { - "baseId": "97423|172145", + "upstreamId": "97423|172145", "text": "Pigmented nodular adrenocortical disease, primary, 4" }, { - "baseId": "97439|214085|214086|214087|447131|447134|447201|515074|515075|515079|515081|515082|515129|515206|556649|626831|626832|626833|626834|626835|626836|626837|626838|626839|626840|626841|626842|626843|696095|718215|718216|731729|745688|745689|745693|758816|761206|761207|761208|822736|822737|822738|822739|822740|822741|822742|822743|822744|822745|822746|822747|850724|918557|921641|921642|921643|921644|930037|930038|930039|930040|930041|941453|952069|952070|952071", + "upstreamId": "97439|214085|214086|214087|447131|447134|447201|515074|515075|515079|515081|515082|515129|515206|556649|626831|626832|626833|626834|626835|626836|626837|626838|626839|626840|626841|626842|626843|696095|718215|718216|731729|745688|745689|745693|758816|761206|761207|761208|822736|822737|822738|822739|822740|822741|822742|822743|822744|822745|822746|822747|850724|918557|921641|921642|921643|921644|930037|930038|930039|930040|930041|941453|952069|952070|952071", "text": "Immunodeficiency 42" }, { - "baseId": "97523", + "upstreamId": "97523", "text": "Worster-Drought syndrome" }, { - "baseId": "97529|97530|97531|481461|626195|677429", + "upstreamId": "97529|97530|97531|481461|626195|677429", "text": "Combined oxidative phosphorylation deficiency 18" }, { - "baseId": "97544|361261|413924|413927|424347|481211|511028|536072|576127|590426|590427|590428|590429|590430|613856|654131|788824|790785|917020|920252|961610|963647|963648|963649|964919|970876|974538", + "upstreamId": "97544|361261|413924|413927|424347|481211|511028|536072|576127|590426|590427|590428|590429|590430|613856|654131|788824|790785|917020|920252|961610|963647|963648|963649|964919|970876|974538", "text": "Verheij syndrome" }, { - "baseId": "97548|378876|625990|625992|905861|983849", + "upstreamId": "97548|378876|625990|625992|905861|983849", "text": "Shukla-Vernon syndrome" }, { - "baseId": "97549|553224|553225|553226|553227|553228|553229|553230|974517|974534", + "upstreamId": "97549|553224|553225|553226|553227|553228|553229|553230|974517|974534", "text": "Peripheral neuropathy, autosomal recessive, with or without impaired intellectual development" }, { - "baseId": "97566|97567", + "upstreamId": "97566|97567", "text": "Alzheimer disease 18" }, { - "baseId": "97587|97588|97589|97590|97591|97592|97593|97594|97595|97596|97597|97598|97599|97600|97601|97602|97603|97604|97605|97606|97607|97608|97609|97610|97611|97612|97613|97614|380469|513996|789378", + "upstreamId": "97587|97588|97589|97590|97591|97592|97593|97594|97595|97596|97597|97598|97599|97600|97601|97602|97603|97604|97605|97606|97607|97608|97609|97610|97611|97612|97613|97614|380469|513996|789378", "text": "Uterine leiomyoma" }, { - "baseId": "97607|214479|362913", + "upstreamId": "97607|214479|362913", "text": "Angiosarcoma" }, { - "baseId": "98157|98158|227292|227293|961951|980458", + "upstreamId": "98157|98158|227292|227293|961951|980458", "text": "Complement factor B deficiency" }, { - "baseId": "98160|98161|98162|653875", + "upstreamId": "98160|98161|98162|653875", "text": "Mental retardation, autosomal recessive 40" }, { - "baseId": "98163|173819|173835|173968|195351|195994|211038|211039|211046|211053|211055|211058|229181|361179|434047|496327|583094", + "upstreamId": "98163|173819|173835|173968|195351|195994|211038|211039|211046|211053|211055|211058|229181|361179|434047|496327|583094", "text": "Cataract 41" }, { - "baseId": "98174", + "upstreamId": "98174", "text": "MCAD deficiency, modifier of" }, { - "baseId": "98234|513942", + "upstreamId": "98234|513942", "text": "Spastic gait" }, { - "baseId": "98258", + "upstreamId": "98258", "text": "Desmoid tumor" }, { - "baseId": "98304|267722|303599|763016|869989|978946", + "upstreamId": "98304|267722|303599|763016|869989|978946", "text": "Hereditary Disorder" }, { - "baseId": "98438|205029|205030|332697", + "upstreamId": "98438|205029|205030|332697", "text": "Glutaric acidemia" }, { - "baseId": "98707|138351|151532|152299|166742|166842|223370|223371|223372|223373|223374|223375|223376|223377|223378|223379|223380|223381|223382|223383|223384|223385|223386|223387|223389|223390|223391|223392|223393|223394|223396|223397|223398|223399|223400|223401|223402|223403|223404|223405|223406|223407|223408|223409|223410|223411|223412|223413|223414|223415|223416|223417|223418|223419|223420|223421|223422|223423|223424|223425|223426|223427|223428|223429|223430|223431|223432|223433|223434|223435|223436|223437|223438|223439|223440|223441|223442|223443|223444|223445|223446|223447|223448|223449|223450|223451|223452|223453|223454|223455|223456|223457|223458|223459|223460|223461|223462|223463|223464|223465|223466|223467|223468|223469|223470|223471|223472|223473|223474|223475|223476|223477|223478|223479|223480|223481|223482|223483|223484|223485|223486|223487|223488|223489|223490|223491|223492|223493|223494|223495|223496|223497|223498|223499|223500|223501|223502|223503|223504|223505|223506|223507|223508|223509|223510|223511|223512|223513|223514|223515|223516|223517|223518|223519|223520|223521|223522|223523|223524|223525|223526|223527|223528|223529|223530|223531|223532|223533|223534|223535|223536|223537|223538|223539|223540|223541|223542|223543|223544|223545|223546|223547|223548|223549|223550|223551|223552|223553|223554|223555|223556|223557|223558|223559|223560|223561|223562|223563|223564|223565|223566|223567|223568|223569|223570|223571|223572|223573|223574|223575|223576|223577|223578|223579|223580|223581|223582|223583|223584|223585|223586|223587|223588|223589|287838|362513|389509|464005|515301|524536|623760|623766|841761|873799|918052|918053|918054|918055|918056|918057|918058|918059|918060|918061|918062|918063|918064|918065|918066|918067|918068|918069|918070|918071|918072|918073|918074|918075|918076|918077|918078|918079|918080|918081|918082|918083|918084|918085|918086|918087|918088|918089|918090|918091|918092|918093|918094|918095|918096|918097|918098|918099|918100|918101|918102|918103|918104|918105|918106|967238", + "upstreamId": "98707|138351|151532|152299|166742|166842|223370|223371|223372|223373|223374|223375|223376|223377|223378|223379|223380|223381|223382|223383|223384|223385|223386|223387|223389|223390|223391|223392|223393|223394|223396|223397|223398|223399|223400|223401|223402|223403|223404|223405|223406|223407|223408|223409|223410|223411|223412|223413|223414|223415|223416|223417|223418|223419|223420|223421|223422|223423|223424|223425|223426|223427|223428|223429|223430|223431|223432|223433|223434|223435|223436|223437|223438|223439|223440|223441|223442|223443|223444|223445|223446|223447|223448|223449|223450|223451|223452|223453|223454|223455|223456|223457|223458|223459|223460|223461|223462|223463|223464|223465|223466|223467|223468|223469|223470|223471|223472|223473|223474|223475|223476|223477|223478|223479|223480|223481|223482|223483|223484|223485|223486|223487|223488|223489|223490|223491|223492|223493|223494|223495|223496|223497|223498|223499|223500|223501|223502|223503|223504|223505|223506|223507|223508|223509|223510|223511|223512|223513|223514|223515|223516|223517|223518|223519|223520|223521|223522|223523|223524|223525|223526|223527|223528|223529|223530|223531|223532|223533|223534|223535|223536|223537|223538|223539|223540|223541|223542|223543|223544|223545|223546|223547|223548|223549|223550|223551|223552|223553|223554|223555|223556|223557|223558|223559|223560|223561|223562|223563|223564|223565|223566|223567|223568|223569|223570|223571|223572|223573|223574|223575|223576|223577|223578|223579|223580|223581|223582|223583|223584|223585|223586|223587|223588|223589|287838|362513|389509|464005|515301|524536|623760|623766|841761|873799|918052|918053|918054|918055|918056|918057|918058|918059|918060|918061|918062|918063|918064|918065|918066|918067|918068|918069|918070|918071|918072|918073|918074|918075|918076|918077|918078|918079|918080|918081|918082|918083|918084|918085|918086|918087|918088|918089|918090|918091|918092|918093|918094|918095|918096|918097|918098|918099|918100|918101|918102|918103|918104|918105|918106|967238", "text": "Premature ovarian failure" }, { - "baseId": "98777|105003|215730|215731|215732", + "upstreamId": "98777|105003|215730|215731|215732", "text": "Bull's eye maculopathy" }, { - "baseId": "98778|360817|513966|514150", + "upstreamId": "98778|360817|513966|514150", "text": "Central scotoma" }, { - "baseId": "98778|360817", + "upstreamId": "98778|360817", "text": "Retinal atrophy" }, { - "baseId": "98872|298910|298986|298989|301373|301403|305742|305746|305974|626155", + "upstreamId": "98872|298910|298986|298989|301373|301403|305742|305746|305974|626155", "text": "Congenital Muscular Dystrophy, LAMA2-related" }, { - "baseId": "98887|226138|360414|501808|514095", + "upstreamId": "98887|226138|360414|501808|514095", "text": "Exercise-induced myalgia" }, { - "baseId": "98887|205181|226138|360414|501808|513930|514063|514095", + "upstreamId": "98887|205181|226138|360414|501808|513930|514063|514095", "text": "Myalgia" }, { - "baseId": "99151|99173|99182|99211|99212|169560|169580|171226|171231|171238|196375|208594|256909|256920|256925|256944|256948|256958|256987|257000|257032|257035|271556|274528|333301|333320|333371|333375|333410|333413|333414|333420|333435|333442|333452|333453|343386|343389|343390|343420|343425|343432|343435|343440|343453|343475|343476|343479|348713|348737|348738|348740|348758|348765|348777|349738|349753|349756|349757|349764|349779|434672|470144|539091|816391|858777", + "upstreamId": "99151|99173|99182|99211|99212|169560|169580|171226|171231|171238|196375|208594|256909|256920|256925|256944|256948|256958|256987|257000|257032|257035|271556|274528|333301|333320|333371|333375|333410|333413|333414|333420|333435|333442|333452|333453|343386|343389|343390|343420|343425|343432|343435|343440|343453|343475|343476|343479|348713|348737|348738|348740|348758|348765|348777|349738|349753|349756|349757|349764|349779|434672|470144|539091|816391|858777", "text": "Multiminicore Disease" }, { - "baseId": "99156|99159|136823|136845|171234|196498|198035|227850|246870|249594|275549|275550|279688|361053|488128|488129|488130|488143|488144|488145", + "upstreamId": "99156|99159|136823|136845|171234|196498|198035|227850|246870|249594|275549|275550|279688|361053|488128|488129|488130|488143|488144|488145", "text": "Malignant hyperthermia" }, { - "baseId": "99159", + "upstreamId": "99159", "text": "Myopathy, progressive axial with cataracts" }, { - "baseId": "99159|260246|361054", + "upstreamId": "99159|260246|361054", "text": "Developmental dysplasia of the hip" }, { - "baseId": "99159|361054", + "upstreamId": "99159|361054", "text": "Generalized muscle weakness" }, { - "baseId": "99334|99335", + "upstreamId": "99334|99335", "text": "Nicotine addiction, protection against" }, { - "baseId": "99373|338995|352104", + "upstreamId": "99373|338995|352104", "text": "Fanconi Anemia, X-Linked" }, { - "baseId": "99373|187363|338995|352104|622117", + "upstreamId": "99373|187363|338995|352104|622117", "text": "VACTERL association with hydrocephalus" }, { - "baseId": "99410|101295|101297|134224|134225|134226|134227|134228|134229|134230|134231|134232|140496|202767|202775|202777|202784|203262|203276|203280|203281|203288|320006|320007|320010|320014|320016|324885|324886|324887|324893|324895|324896|324903|324904|326766|328567|328568|328571|328572|328578|334497|334502|334506|334507|334510|334518|335053|335056|335059|336965|336972|341059|341060|341073|341075|342609|342612|342613|342620|353338", + "upstreamId": "99410|101295|101297|134224|134225|134226|134227|134228|134229|134230|134231|134232|140496|202767|202775|202777|202784|203262|203276|203280|203281|203288|320006|320007|320010|320014|320016|324885|324886|324887|324893|324895|324896|324903|324904|326766|328567|328568|328571|328572|328578|334497|334502|334506|334507|334510|334518|335053|335056|335059|336965|336972|341059|341060|341073|341075|342609|342612|342613|342620|353338", "text": "Neuronal Ceroid-Lipofuscinosis, Dominant/Recessive" }, { - "baseId": "99456|249397|276421|276422|276430|276436|276449|276467|276468|276481|276654|276661|276692|277165|277200|277212|277217|277239|277292|277301|277315|277324|277327|277334|277341|277346|279716|280963|280965|281107|434672|858780", + "upstreamId": "99456|249397|276421|276422|276430|276436|276449|276467|276468|276481|276654|276661|276692|277165|277200|277212|277217|277239|277292|277301|277315|277324|277327|277334|277341|277346|279716|280963|280965|281107|434672|858780", "text": "Congenital fiber-type disproportion" }, { - "baseId": "99456|101004|181376|186649|188272|237087|249397|259696|271659|276421|276422|276430|276436|276449|276467|276468|276481|276654|276661|276692|277165|277200|277212|277217|277239|277292|277301|277315|277324|277327|277334|277341|277346|279716|280963|280965|281107|357230|434571|442935|442968|448783|486874|486887|486889|486940|511331|516394|516477|541416|541466|541518|541562|541648|541687|541733|541761|559236|559286|621094|621095|621096|621097|621099|621711|905884|915016|916831|916832|963250", + "upstreamId": "99456|101004|181376|186649|188272|237087|249397|259696|271659|276421|276422|276430|276436|276449|276467|276468|276481|276654|276661|276692|277165|277200|277212|277217|277239|277292|277301|277315|277324|277327|277334|277341|277346|279716|280963|280965|281107|357230|434571|442935|442968|448783|486874|486887|486889|486940|511331|516394|516477|541416|541466|541518|541562|541648|541687|541733|541761|559236|559286|621094|621095|621096|621097|621099|621711|905884|915016|916831|916832|963250", "text": "Nemaline myopathy" }, { - "baseId": "99689|99690|99691|99692|177632|192310|194050|194592|195109|195632|247081|254527|254529|254530|254531|254533|254534|254535|254540|254542|254543|254545|254548|254554|254555|254556|254558|254559|254562|254563|254566|267804|267844|268275|269225|271988|317256|317257|317259|317260|317264|317265|317266|317270|317272|317277|317278|324975|324976|324977|324987|324995|325000|325001|325004|325007|325014|325016|325017|325018|325020|325021|325022|325023|331093|331094|331121|331130|331131|331132|331136|331137|331156|331162|331165|331166|331169|331171|332678|332679|332683|332685|332690|332693|353246|373063|408664|503887|504176|504204|504206|504216|504453|504905|537882|537897|584158|585420|587799|769129|839947|869891|869892|869893|869894|869895|869896|869897|869898|869899|869900|869901|869902|869903|869904|869905|869906|872244|872245|872246|872247|872248|872249", + "upstreamId": "99689|99690|99691|99692|177632|192310|194050|194592|195109|195632|247081|254527|254529|254530|254531|254533|254534|254535|254540|254542|254543|254545|254548|254554|254555|254556|254558|254559|254562|254563|254566|267804|267844|268275|269225|271988|317256|317257|317259|317260|317264|317265|317266|317270|317272|317277|317278|324975|324976|324977|324987|324995|325000|325001|325004|325007|325014|325016|325017|325018|325020|325021|325022|325023|331093|331094|331121|331130|331131|331132|331136|331137|331156|331162|331165|331166|331169|331171|332678|332679|332683|332685|332690|332693|353246|373063|408664|503887|504176|504204|504206|504216|504453|504905|537882|537897|584158|585420|587799|769129|839947|869891|869892|869893|869894|869895|869896|869897|869898|869899|869900|869901|869902|869903|869904|869905|869906|872244|872245|872246|872247|872248|872249", "text": "Type II Collagenopathies" }, { - "baseId": "99791|263249|263250|263276|263280|271861|360939|360955|439633|439634|439635|513964|514016|514074|514211|587369|679897|805140|970520", + "upstreamId": "99791|263249|263250|263276|263280|271861|360939|360955|439633|439634|439635|513964|514016|514074|514211|587369|679897|805140|970520", "text": "Motor delay" }, { - "baseId": "99931|99932|190386|254709|267600|334234|713708|744914|769278|769279|840220|840221|851957|979290|979291|979292|979293", + "upstreamId": "99931|99932|190386|254709|267600|334234|713708|744914|769278|769279|840220|840221|851957|979290|979291|979292|979293", "text": "Sanfilippo disease" }, { - "baseId": "100016|181451|196242|207089|367600|434634|490210|496932|513979|621017|621021|621023|621027|621031|621034|621035|621036", + "upstreamId": "100016|181451|196242|207089|367600|434634|490210|496932|513979|621017|621021|621023|621027|621031|621034|621035|621036", "text": "Cerebellar vermis hypoplasia" }, { - "baseId": "100024|255320|312682|319125|323074|323075|332671|339678|341028|341056|353325", + "upstreamId": "100024|255320|312682|319125|323074|323075|332671|339678|341028|341056|353325", "text": "Nemaline Myopathy, Dominant" }, { - "baseId": "100029|193523|243897|275222|798696|919614|963366", + "upstreamId": "100029|193523|243897|275222|798696|919614|963366", "text": "Autosomal dominant medullary cystic kidney disease with hyperuricemia" }, { - "baseId": "100030|100031|100032|193523|195653|255481|275222|324592|334141|334154|340833|340835|340844|342226|342233|342239|342241|342244|354268", + "upstreamId": "100030|100031|100032|193523|195653|255481|275222|324592|334141|334154|340833|340835|340844|342226|342233|342239|342241|342244|354268", "text": "Uromodulin-associated kidney disease" }, { - "baseId": "100165|100168|100175|100181|100182|100183|100185|100189|100190|100199|100201|100207|100212|100214|100216|100218|100222|100223|100225|100228|100229|100243|100245|100248|100253|100254|100261|100264|100269|102570|102574|102577|102580|133838|134392|150222|150223|177684|192759|192909|193183|195128|250783|250787|254126|265545|265920|266446|266936|267002|267681|267696|268176|268214|268748|268817|269053|269711|269978|270059|270711|272050|272648|272649|272867|273335|273377|273720|274494|274907|274982|275299|275308|287144|287148|287149|287157|287158|287164|287169|287171|287172|287173|287877|287896|287898|287899|287900|287903|287904|287906|287911|287912|290424|290428|290429|290430|290443|290454|290461|290463|290470|290471|290719|290721|290727|290728|290729|290742|290745|290746|290750|290759|290760|290761|290765|290767|313659|313661|313662|313663|313667|313669|313673|313674|313675|313679|313680|313681|313682|313686|313691|313693|313701|313702|313704|313705|313706|313708|313709|313712|313717|313720|313725|319863|319873|319874|319881|319882|319884|319886|319893|319898|319903|319906|319907|319915|319916|319925|319928|319930|319943|326019|326020|326023|326024|326025|326029|326031|326041|326051|326053|326059|326076|326101|326107|326108|326111|326137|326138|326139|326145|326995|326997|327003|327005|327012|327013|327018|327021|327039|327040|327044|327045|327047|327048|327050|327051|327052|327053", + "upstreamId": "100165|100168|100175|100181|100182|100183|100185|100189|100190|100199|100201|100207|100212|100214|100216|100218|100222|100223|100225|100228|100229|100243|100245|100248|100253|100254|100261|100264|100269|102570|102574|102577|102580|133838|134392|150222|150223|177684|192759|192909|193183|195128|250783|250787|254126|265545|265920|266446|266936|267002|267681|267696|268176|268214|268748|268817|269053|269711|269978|270059|270711|272050|272648|272649|272867|273335|273377|273720|274494|274907|274982|275299|275308|287144|287148|287149|287157|287158|287164|287169|287171|287172|287173|287877|287896|287898|287899|287900|287903|287904|287906|287911|287912|290424|290428|290429|290430|290443|290454|290461|290463|290470|290471|290719|290721|290727|290728|290729|290742|290745|290746|290750|290759|290760|290761|290765|290767|313659|313661|313662|313663|313667|313669|313673|313674|313675|313679|313680|313681|313682|313686|313691|313693|313701|313702|313704|313705|313706|313708|313709|313712|313717|313720|313725|319863|319873|319874|319881|319882|319884|319886|319893|319898|319903|319906|319907|319915|319916|319925|319928|319930|319943|326019|326020|326023|326024|326025|326029|326031|326041|326051|326053|326059|326076|326101|326107|326108|326111|326137|326138|326139|326145|326995|326997|327003|327005|327012|327013|327018|327021|327039|327040|327044|327045|327047|327048|327050|327051|327052|327053", "text": "Miyoshi myopathy" }, { - "baseId": "100286|165724|165725|166077|166077|166081|460453|524875|525106|569426|590287|623302|650386|650387|695464|798624|818274|818275|836511|836512|836512|852537|903495|964337", + "upstreamId": "100286|165724|165725|166077|166077|166081|460453|524875|525106|569426|590287|623302|650386|650387|695464|798624|818274|818275|836511|836512|836512|852537|903495|964337", "text": "Focal segmental glomerulosclerosis 7" }, { - "baseId": "100811|134271|172217|190060|190061|190062|190063|190064|191040|269203|272656|272923|273883|274174|404758|443198|450899|538966", + "upstreamId": "100811|134271|172217|190060|190061|190062|190063|190064|191040|269203|272656|272923|273883|274174|404758|443198|450899|538966", "text": "Dystonia 27" }, { - "baseId": "101043|101044|101046|177186|194925|195676|249330|249354|249356|249357|270290|270940|272601|275429|275796|275797|275819|275820|275821|275964|275965|275967|489050|489534|489575|492777|549497|556544|584868|586522|586745|587044|626566|626567|706529|718051|745517|745519|761036|778712|780254|822466|822467|822468|822469|822470|822471|822472|850704|921560|929932|929933|929934|929935|941349|941350|941351|941352|941353|941354|952001|959516", + "upstreamId": "101043|101044|101046|177186|194925|195676|249330|249354|249356|249357|270290|270940|272601|275429|275796|275797|275819|275820|275821|275964|275965|275967|489050|489534|489575|492777|549497|556544|584868|586522|586745|587044|626566|626567|706529|718051|745517|745519|761036|778712|780254|822466|822467|822468|822469|822470|822471|822472|850704|921560|929932|929933|929934|929935|941349|941350|941351|941352|941353|941354|952001|959516", "text": "Peroxisome biogenesis disorder, complementation group K" }, { - "baseId": "101181|191188|193572|266783|268688|270409|308311|308317|308318|308319|308320|308328|308329|308332|308334|312724|312726|312735|312736|312737|312743|312744|312747|312748|312751|312752|312765|312768|312769|312771|312787|312793|312794|318605|318606|318613|318614|318616|318617|318619|318620|318627|318628|318635|318636|318637|318638|318640|318641|319156|319158|319161|319171|319172|319173|319182|319195|319201|319202|319203|319204", + "upstreamId": "101181|191188|193572|266783|268688|270409|308311|308317|308318|308319|308320|308328|308329|308332|308334|312724|312726|312735|312736|312737|312743|312744|312747|312748|312751|312752|312765|312768|312769|312771|312787|312793|312794|318605|318606|318613|318614|318616|318617|318619|318620|318627|318628|318635|318636|318637|318638|318640|318641|319156|319158|319161|319171|319172|319173|319182|319195|319201|319202|319203|319204", "text": "Inclusion Body Myopathy, Recessive" }, { - "baseId": "101204|263210|263217|360963|360964|590035|590040|590044|590055|612447|905820", + "upstreamId": "101204|263210|263217|360963|360964|590035|590040|590044|590055|612447|905820", "text": "19 conditions" }, { - "baseId": "101204|437667|792127", + "upstreamId": "101204|437667|792127", "text": "Mental retardation with panhypopituitarism, X-linked" }, { - "baseId": "101232|292712|297538|297540|297567|300173|300992|301008|303928|303952|303985|307361|307363|307369|307578|308615|308639|308641|308646|308648|308651|308668|329461|329474|329481|329484|329497|329498|329516|333272|333926|333959|339755|339757|339759|339770|339774|339778|339780|339785|339795|343356|343374|343375|343885|343913|345498|345511|345513|345518|345519|345527|345535|345536|345545|345573|346830|346833|346837|346840|346841|346847|346878|348650|349196|349200|349209|350128|353493", + "upstreamId": "101232|292712|297538|297540|297567|300173|300992|301008|303928|303952|303985|307361|307363|307369|307578|308615|308639|308641|308646|308648|308651|308668|329461|329474|329481|329484|329497|329498|329516|333272|333926|333959|339755|339757|339759|339770|339774|339778|339780|339785|339795|343356|343374|343375|343885|343913|345498|345511|345513|345518|345519|345527|345535|345536|345545|345573|346830|346833|346837|346840|346841|346847|346878|348650|349196|349200|349209|350128|353493", "text": "Cone-Rod Dystrophy, Dominant" }, { - "baseId": "101232|292712|297538|297540|297567", + "upstreamId": "101232|292712|297538|297540|297567", "text": "Retinal Macular Dystrophy" }, { - "baseId": "101232|292712|297538|297540|297567|301143|308921|308926|308942|308943|308956|309014|309044", + "upstreamId": "101232|292712|297538|297540|297567|301143|308921|308926|308942|308943|308956|309014|309044", "text": "Stargardt Disease, Dominant" }, { - "baseId": "101263|101264|102224|168817|168819|170137|207262|297423|297429|297448|297455|297457|299525|303646|303998|309448|314216|314227|320076|339452|339473|339498|348988|352348|352358|352359|352368|352374|352919|353110|353111|615936|683141|683142|792685|961512", + "upstreamId": "101263|101264|102224|168817|168819|170137|207262|297423|297429|297448|297455|297457|299525|303646|303998|309448|314216|314227|320076|339452|339473|339498|348988|352348|352358|352359|352368|352374|352919|353110|353111|615936|683141|683142|792685|961512", "text": "De Lange syndrome" }, { - "baseId": "101291|301212|308978|456454|481266|481267|481268|502112|561128|635323|695332|750270|765900|832596", + "upstreamId": "101291|301212|308978|456454|481266|481267|481268|502112|561128|635323|695332|750270|765900|832596", "text": "Congenital disorder of glycosylation type 2F" }, { - "baseId": "101414|131818|192025|311812|311814|314617|314618|314620|316267|316270|316274|316275|316277|316303|317377|317378|317417|317421|321290|323463|323625|323707|324085|329769|329777|329787|329793|329835|330592|331039|331041|331097|340848|340854|353213", + "upstreamId": "101414|131818|192025|311812|311814|314617|314618|314620|316267|316270|316274|316275|316277|316303|317377|317378|317417|317421|321290|323463|323625|323707|324085|329769|329777|329787|329793|329835|330592|331039|331041|331097|340848|340854|353213", "text": "Cutis laxa, recessive" }, { - "baseId": "101454|101455|101457|101459|101460|101464|101471|101472|101474|101475|134251|134252|134254|134256|140519|140520|140521|140527|140540|140542|176985|177621|191693|195720|202039|202060|202064|202065|202105|252644|286725|286739|286748|286755|286772|286807|286813|286817|286819|287439|287493|287553|287555|287556|287564|287565|289874|289875|289957|289960|290273|290286|290287|290288|290302|290304|290307|290313|290336|290361|290379|290380|302099|302105|302106|302110|302112|302118|302119|302122|302123|302124|302130|302131|302133|302136|302144|302146|302147|302148|302152|302154|302155|302156|302168|302169|302173|305257|305261|305271|305274|305278|305281|305282|305283|305285|305290|305292|305293|305303|305305|305306|305307|305311|305313|305314|305315|305317|305319|305326|305334|305335|305338|305341|305343|305344|305345|305348|305356|305357|310046|310047|310048|310049|310051|310056|310069|310070|310071|310076|310077|310081|310100|310101|310103|310110|310111|310112|310114|310116|310117|310118|310119|310122|310123|310126|310127|310129|310131|310132|310133|310134|310142|310143|310147|310148|310155|310159|310170|310177|310180|310183|310184|310185|310186|310187|310189|310196|310198|310200|310204|310205|310206|310207|310219|310237|310251|310257|310261|310265", + "upstreamId": "101454|101455|101457|101459|101460|101464|101471|101472|101474|101475|134251|134252|134254|134256|140519|140520|140521|140527|140540|140542|176985|177621|191693|195720|202039|202060|202064|202065|202105|252644|286725|286739|286748|286755|286772|286807|286813|286817|286819|287439|287493|287553|287555|287556|287564|287565|289874|289875|289957|289960|290273|290286|290287|290288|290302|290304|290307|290313|290336|290361|290379|290380|302099|302105|302106|302110|302112|302118|302119|302122|302123|302124|302130|302131|302133|302136|302144|302146|302147|302148|302152|302154|302155|302156|302168|302169|302173|305257|305261|305271|305274|305278|305281|305282|305283|305285|305290|305292|305293|305303|305305|305306|305307|305311|305313|305314|305315|305317|305319|305326|305334|305335|305338|305341|305343|305344|305345|305348|305356|305357|310046|310047|310048|310049|310051|310056|310069|310070|310071|310076|310077|310081|310100|310101|310103|310110|310111|310112|310114|310116|310117|310118|310119|310122|310123|310126|310127|310129|310131|310132|310133|310134|310142|310143|310147|310148|310155|310159|310170|310177|310180|310183|310184|310185|310186|310187|310189|310196|310198|310200|310204|310205|310206|310207|310219|310237|310251|310257|310261|310265", "text": "Pitt-Hopkins-like syndrome" }, { - "baseId": "101563|140118|195446|211373|211380|307148|308143|308151|308164|308165|311342|316839|316886|317274|318388|318389|318392|318394|318402|318863|318872", + "upstreamId": "101563|140118|195446|211373|211380|307148|308143|308151|308164|308165|311342|316839|316886|317274|318388|318389|318392|318394|318402|318863|318872", "text": "Ataxia with Oculomotor Apraxia" }, { - "baseId": "101665|108165|209037|608807|608811|608812|961637", + "upstreamId": "101665|108165|209037|608807|608811|608812|961637", "text": "Lenz microphthalmia syndrome" }, { - "baseId": "101673|305618|305623|305633|305676|308951|309529|309530|309550|309551|309564|309627|309713|314854|314860|314906|314911|314912|314916|314924|314940|314978|315029|353841|623774|626008|860727", + "upstreamId": "101673|305618|305623|305633|305676|308951|309529|309530|309550|309551|309564|309627|309713|314854|314860|314906|314911|314912|314916|314924|314940|314978|315029|353841|623774|626008|860727", "text": "Hypogonadism with anosmia" }, { - "baseId": "101888|177144|181437|237188|319770|328301|328304|334782|336519|372822|372827|373841|426044|463273|485964|504270|527728|527763|566119|567579|641939|641940|688170|695598|702685|730919|769560|769561|784600|840886|840887|840888|840889|840890", + "upstreamId": "101888|177144|181437|237188|319770|328301|328304|334782|336519|372822|372827|373841|426044|463273|485964|504270|527728|527763|566119|567579|641939|641940|688170|695598|702685|730919|769560|769561|784600|840886|840887|840888|840889|840890", "text": "Shaheen syndrome" }, { - "baseId": "102029|172295", + "upstreamId": "102029|172295", "text": "Gillessen-Kaesbach-Nishimura syndrome" }, { - "baseId": "102281|177954|186714|193213|395418|634949|919037|919038|919039|983840", + "upstreamId": "102281|177954|186714|193213|395418|634949|919037|919038|919039|983840", "text": "Polycystic kidney disease 4" }, { - "baseId": "102570|102573|102574|102580|133838|133839|133840|150222|150223|150224|192166|192704|192867|194564|195068|230189|254117|254126|265545|266733|266734|267681|268176|269711|269789|270711|273335|313659|313661|313662|313663|313667|313673|313679|313680|313681|313682|313686|313691|313693|313701|313704|313705|313706|313708|313709|313712|313717|313720|313725|319873|319874|319881|319882|319884|319886|319893|319898|319903|319906|319907|319925|319928|319930|319943|326019|326020|326023|326024|326025|326029|326031|326041|326051|326059|326076|326101|326107|326108|326111|326137|326138|326139|326995|326997|327003|327005|327012|327021|327039|327040|327044|327045|327047|327048|327050|327051|327053|488826|490435|492080|493833|677235|867749|867750|867751|867752|867753|867754|867755|867756|867757|867758|867759|867760|867761|867762|867763|867764|867765|867766|867767|867768|867769|867770|867771|867772|867773|867774|867775|867776|867777|867778|867779|867780", + "upstreamId": "102570|102573|102574|102580|133838|133839|133840|150222|150223|150224|192166|192704|192867|194564|195068|230189|254117|254126|265545|266733|266734|267681|268176|269711|269789|270711|273335|313659|313661|313662|313663|313667|313673|313679|313680|313681|313682|313686|313691|313693|313701|313704|313705|313706|313708|313709|313712|313717|313720|313725|319873|319874|319881|319882|319884|319886|319893|319898|319903|319906|319907|319925|319928|319930|319943|326019|326020|326023|326024|326025|326029|326031|326041|326051|326059|326076|326101|326107|326108|326111|326137|326138|326139|326995|326997|327003|327005|327012|327021|327039|327040|327044|327045|327047|327048|327050|327051|327053|488826|490435|492080|493833|677235|867749|867750|867751|867752|867753|867754|867755|867756|867757|867758|867759|867760|867761|867762|867763|867764|867765|867766|867767|867768|867769|867770|867771|867772|867773|867774|867775|867776|867777|867778|867779|867780", "text": "ANO5-Related Muscle Diseases" }, { - "baseId": "102582", + "upstreamId": "102582", "text": "L-ferritin deficiency" }, { - "baseId": "102583", + "upstreamId": "102583", "text": "L-ferritin deficiency, autosomal recessive" }, { - "baseId": "102585|447083|447197|447259|447260|447262|515055|515056|515105|556623|556625|556911|556913|558100|626766|626767|626768|626769|626770|626771|626772|626773|626774|626775|650580|706628|718155|718156|718157|731639|731640|731641|731643|745623|745624|761144|822654|822655|822656|822657|822658|822659|822660|822661|822662|822663|921619|921620|921621|930014|930015|930016|930017|939770|941426|941427|952044|952045|952046|960403", + "upstreamId": "102585|447083|447197|447259|447260|447262|515055|515056|515105|556623|556625|556911|556913|558100|626766|626767|626768|626769|626770|626771|626772|626773|626774|626775|650580|706628|718155|718156|718157|731639|731640|731641|731643|745623|745624|761144|822654|822655|822656|822657|822658|822659|822660|822661|822662|822663|921619|921620|921621|930014|930015|930016|930017|939770|941426|941427|952044|952045|952046|960403", "text": "Immunodeficiency 16" }, { - "baseId": "102595|141332|141334|141335|141336|141337|237492|237493|237494|237495|237496|237497|430044|962243|963178", + "upstreamId": "102595|141332|141334|141335|141336|141337|237492|237493|237494|237495|237496|237497|430044|962243|963178", "text": "Arthrogryposis- oculomotor limitation-electroretinal anomalies syndrome" }, { - "baseId": "102600|492383|965960", + "upstreamId": "102600|492383|965960", "text": "Fanconi renotubular syndrome 3" }, { - "baseId": "102607|102608|102609|102610|102611|181366|442548|481344|800961", + "upstreamId": "102607|102608|102609|102610|102611|181366|442548|481344|800961", "text": "Long QT syndrome 15" }, { - "baseId": "102652", + "upstreamId": "102652", "text": "Ectodermal dysplasia 7, hair/nail type" }, { - "baseId": "102879|102880|102881|102882|102883|102884", + "upstreamId": "102879|102880|102881|102882|102883|102884", "text": "X-linked amelogenesis imperfecta hypoplastic/hypomaturation 2" }, { - "baseId": "102898", + "upstreamId": "102898", "text": "Spastic paraplegia 72, autosomal dominant" }, { - "baseId": "102899|102900|454575|691722|698800|749234|792752|830230|830231|830232|830233", + "upstreamId": "102899|102900|454575|691722|698800|749234|792752|830230|830231|830232|830233", "text": "Spastic paraplegia 72, autosomal recessive" }, { - "baseId": "102917|102918|513982|550863|624853|677280|793297|920259", + "upstreamId": "102917|102918|513982|550863|624853|677280|793297|920259", "text": "Deafness, autosomal dominant 56" }, { - "baseId": "102927|102927|102929|102936|102937|205136|246920|359473|366339|366340|366531|366534|366536|366600|366603|366606|366608|367176|367190|405713|440069|443233|443235|443236|450794|450802|450997|451000|499897|500106|500142|511418|518154|518157|560567|560569|560571|561269|629787|629788|629789|629790|629791|629792|655441|691121|691122|695141|695142|697522|697523|697524|697525|697526|697527|697528|697529|697530|719823|719824|733424|733426|747563|747565|777266|779036|795220|805306|819150|826184|826185|826186|826187|826188|826189|826190|826191|826192|826193|826194|826195|826196|826197|826198|826199|826200|826201|826202|826203|826204|826205|826206|826207|826208|826209|826210|826211|826212|826213|826214|826215|826216|826217|826218|826219|826220|826221|826222|826223|826224|826225|826226|826227|851418|856168|905051|922689|922690|922691|931288|931289|931290|931291|931292|931293|931294|931295|931296|931297|931298|931299|931300|931301|931302|931303|931304|931305|931306|931307|931308|931309|931310|931311|931312|931313|931314|931315|931316|931317|931318|942792|942793|942794|942795|942796|942797|942798|942799|942800|942801|942802|942803|942804|942805|942806|942807|942808|942809|942810|942811|942812|953034|953035|953036|953037|953038|953039|953040|953041|953042|953043|953044|953045|959635|960470|960471|960472|963355|983852", + "upstreamId": "102927|102927|102929|102936|102937|205136|246920|359473|366339|366340|366531|366534|366536|366600|366603|366606|366608|367176|367190|405713|440069|443233|443235|443236|450794|450802|450997|451000|499897|500106|500142|511418|518154|518157|560567|560569|560571|561269|629787|629788|629789|629790|629791|629792|655441|691121|691122|695141|695142|697522|697523|697524|697525|697526|697527|697528|697529|697530|719823|719824|733424|733426|747563|747565|777266|779036|795220|805306|819150|826184|826185|826186|826187|826188|826189|826190|826191|826192|826193|826194|826195|826196|826197|826198|826199|826200|826201|826202|826203|826204|826205|826206|826207|826208|826209|826210|826211|826212|826213|826214|826215|826216|826217|826218|826219|826220|826221|826222|826223|826224|826225|826226|826227|851418|856168|905051|922689|922690|922691|931288|931289|931290|931291|931292|931293|931294|931295|931296|931297|931298|931299|931300|931301|931302|931303|931304|931305|931306|931307|931308|931309|931310|931311|931312|931313|931314|931315|931316|931317|931318|942792|942793|942794|942795|942796|942797|942798|942799|942800|942801|942802|942803|942804|942805|942806|942807|942808|942809|942810|942811|942812|953034|953035|953036|953037|953038|953039|953040|953041|953042|953043|953044|953045|959635|960470|960471|960472|963355|983852", "text": "Short-rib thoracic dysplasia 10 with or without polydactyly" }, { - "baseId": "102927|102937|189171|189172|189173|189174|189175|246920|359473|366339|366340|366531|366534|366536|366600|366603|366606|366608|367176|367190|405713|440069|443233|443235|443236|450794|450802|450997|451000|499897|500106|500142|511418|518154|518157|560567|560569|560571|561269|629787|629788|629789|629790|629791|629792|655441|691121|691122|695141|695142|697522|697523|697524|697525|697526|697527|697528|697529|697530|719823|719824|733424|733426|747563|747565|777266|779036|795220|805306|819150|826184|826185|826186|826187|826188|826189|826190|826191|826192|826193|826194|826195|826196|826197|826198|826199|826200|826201|826202|826203|826204|826205|826206|826207|826208|826209|826210|826211|826212|826213|826214|826215|826216|826217|826218|826219|826220|826221|826222|826223|826224|826225|826226|826227|851418|856168|905051|905051|922689|922690|922691|931288|931289|931290|931291|931292|931293|931294|931295|931296|931297|931298|931299|931300|931301|931302|931303|931304|931305|931306|931307|931308|931309|931310|931311|931312|931313|931314|931315|931316|931317|931318|942792|942793|942794|942795|942796|942797|942798|942799|942800|942801|942802|942803|942804|942805|942806|942807|942808|942809|942810|942811|942812|953034|953035|953036|953037|953038|953039|953040|953041|953042|953043|953044|953045|959635|960470|960471|960472", + "upstreamId": "102927|102937|189171|189172|189173|189174|189175|246920|359473|366339|366340|366531|366534|366536|366600|366603|366606|366608|367176|367190|405713|440069|443233|443235|443236|450794|450802|450997|451000|499897|500106|500142|511418|518154|518157|560567|560569|560571|561269|629787|629788|629789|629790|629791|629792|655441|691121|691122|695141|695142|697522|697523|697524|697525|697526|697527|697528|697529|697530|719823|719824|733424|733426|747563|747565|777266|779036|795220|805306|819150|826184|826185|826186|826187|826188|826189|826190|826191|826192|826193|826194|826195|826196|826197|826198|826199|826200|826201|826202|826203|826204|826205|826206|826207|826208|826209|826210|826211|826212|826213|826214|826215|826216|826217|826218|826219|826220|826221|826222|826223|826224|826225|826226|826227|851418|856168|905051|905051|922689|922690|922691|931288|931289|931290|931291|931292|931293|931294|931295|931296|931297|931298|931299|931300|931301|931302|931303|931304|931305|931306|931307|931308|931309|931310|931311|931312|931313|931314|931315|931316|931317|931318|942792|942793|942794|942795|942796|942797|942798|942799|942800|942801|942802|942803|942804|942805|942806|942807|942808|942809|942810|942811|942812|953034|953035|953036|953037|953038|953039|953040|953041|953042|953043|953044|953045|959635|960470|960471|960472", "text": "Retinitis pigmentosa 71" }, { - "baseId": "102928|102930|102931|102932|102933|102935|102937", + "upstreamId": "102928|102930|102931|102932|102933|102935|102937", "text": "Short-rib thoracic dysplasia 10 without polydactyly" }, { - "baseId": "102934|102938", + "upstreamId": "102934|102938", "text": "Short-rib thoracic dysplasia 10 with polydactyly" }, { - "baseId": "102939|102940|102941|421690|788831|790826|919180", + "upstreamId": "102939|102940|102941|421690|788831|790826|919180", "text": "Lenz-Majewski hyperostosis syndrome" }, { - "baseId": "102942|102943|102944|102945|102946|102947|102948|102949|102950|458405|458859|458868|458909|458911|458913|459395|459404|502690|524062|562828|563533|565332|565334|637768|692585|692586|695418|700812|700813|700814|711773|744351|751422|835550|835551|835552|835553|857649|934563|934564|955701|955702", + "upstreamId": "102942|102943|102944|102945|102946|102947|102948|102949|102950|458405|458859|458868|458909|458911|458913|459395|459404|502690|524062|562828|563533|565332|565334|637768|692585|692586|695418|700812|700813|700814|711773|744351|751422|835550|835551|835552|835553|857649|934563|934564|955701|955702", "text": "Short-rib thoracic dysplasia 11 with or without polydactyly" }, { - "baseId": "102955|513805|513806|513807", + "upstreamId": "102955|513805|513806|513807", "text": "Joubert syndrome with Jeune asphyxiating thoracic dystrophy" }, { - "baseId": "102956|102957", + "upstreamId": "102956|102957", "text": "Short-rib thoracic dysplasia without polydactyly" }, { - "baseId": "102959|102960|679888|679889|679890|679891", + "upstreamId": "102959|102960|679888|679889|679890|679891", "text": "Congenital dyserythropoietic anemia type type 1B" }, { - "baseId": "102963|102964|102965|102966|102967|102968|107270|107271|107272|107273|264568|373396|373397|373402|374053|374061|374064|374073|374483|374484|374485|376395|414412|414413|414414|414415|414416|414417|414418|414419|414420|414421|414422|414423|414424|414425|414426|433134|504732|504962|504974|505221|505227|505623|726022|799789|799790|799791|799792|799793|799794|799795|799796|801141|801142|801143|801144|801145|801146|801147|801148|801149|801150|801151|801152|801153|801154|801155|801248|801249|981893|981894|981895|981896|981897|981898|981899|981900|981901", + "upstreamId": "102963|102964|102965|102966|102967|102968|107270|107271|107272|107273|264568|373396|373397|373402|374053|374061|374064|374073|374483|374484|374485|376395|414412|414413|414414|414415|414416|414417|414418|414419|414420|414421|414422|414423|414424|414425|414426|433134|504732|504962|504974|505221|505227|505623|726022|799789|799790|799791|799792|799793|799794|799795|799796|801141|801142|801143|801144|801145|801146|801147|801148|801149|801150|801151|801152|801153|801154|801155|801248|801249|981893|981894|981895|981896|981897|981898|981899|981900|981901", "text": "Pulmonary venoocclusive disease 2, autosomal recessive" }, { - "baseId": "102969|371518|372272|461218|461234|461236|461242|461430|461436|461440|461754|461757|461759|461762|462078|526286|526290|526297|526299|526331|526344|526347|526521|526523|526525|526530|526533|526535|526813|526818|526821|526827|564781|565926|565933|565934|567378|567379|567381|570734|570736|570741|570747|570748|570754|570760|640211|640212|640213|640214|640215|640216|640217|640218|640219|640220|640221|640222|640223|640224|652130|652333|652551|687805|693068|695530|695532|768521|768522|777921|796614|820392|820393|820394|838651|838652|838653|838654|838655|838656|838657|838658|838659|838660|838661|838662|838663|838664|838665|838666|838667|851443|921269|926301|926302|926303|926304|926305|926306|935644|935645|935646|935647|941003|947544|947545|947546|947547|956556|956557|956558|959998|959999|960000", + "upstreamId": "102969|371518|372272|461218|461234|461236|461242|461430|461436|461440|461754|461757|461759|461762|462078|526286|526290|526297|526299|526331|526344|526347|526521|526523|526525|526530|526533|526535|526813|526818|526821|526827|564781|565926|565933|565934|567378|567379|567381|570734|570736|570741|570747|570748|570754|570760|640211|640212|640213|640214|640215|640216|640217|640218|640219|640220|640221|640222|640223|640224|652130|652333|652551|687805|693068|695530|695532|768521|768522|777921|796614|820392|820393|820394|838651|838652|838653|838654|838655|838656|838657|838658|838659|838660|838661|838662|838663|838664|838665|838666|838667|851443|921269|926301|926302|926303|926304|926305|926306|935644|935645|935646|935647|941003|947544|947545|947546|947547|956556|956557|956558|959998|959999|960000", "text": "Hereditary sensory neuropathy type IF" }, { - "baseId": "103067|288925|446643|513939|514136|801217", + "upstreamId": "103067|288925|446643|513939|514136|801217", "text": "Hyperammonemia" }, { - "baseId": "103595|431539|514022|514142|590061", + "upstreamId": "103595|431539|514022|514142|590061", "text": "Febrile seizures" }, { - "baseId": "103595", + "upstreamId": "103595", "text": "Hepatosplenomegaly" }, { - "baseId": "103705", + "upstreamId": "103705", "text": "Psoriasis" }, { - "baseId": "103972|104114|133431|360961|476220|679898|679899", + "upstreamId": "103972|104114|133431|360961|476220|679898|679899", "text": "Dementia" }, { - "baseId": "104114|402131|514220", + "upstreamId": "104114|402131|514220", "text": "Memory impairment" }, { - "baseId": "104456|676974|676975|676976|676977", + "upstreamId": "104456|676974|676975|676976|676977", "text": "Night blindness, congenital stationary, type1i" }, { - "baseId": "104561|513994", + "upstreamId": "104561|513994", "text": "Abnormality of retinal pigmentation" }, { - "baseId": "104580", + "upstreamId": "104580", "text": "Adult onset vitelliform dystrophy" }, { - "baseId": "105002|105199|438619", + "upstreamId": "105002|105199|438619", "text": "Abnormal retinal morphology" }, { - "baseId": "105494|188910|188921|189101|406115|431799|967074", + "upstreamId": "105494|188910|188921|189101|406115|431799|967074", "text": "Autosomal dominant retinitis pigmentosa" }, { - "baseId": "105565|105569|105571|105573|105575|190829|190830|314405|314406|314422|314440|314451|321046|321067|321070|327164|327176|327212|328209", + "upstreamId": "105565|105569|105571|105573|105575|190829|190830|314405|314406|314422|314440|314451|321046|321067|321070|327164|327176|327212|328209", "text": "Iron Overload" }, { - "baseId": "105615", + "upstreamId": "105615", "text": "BEST1-Related Disorders" }, { - "baseId": "106004", + "upstreamId": "106004", "text": "leucovorin response - Toxicity/ADR" }, { - "baseId": "106207|361018|361019", + "upstreamId": "106207|361018|361019", "text": "Prolonged bleeding time" }, { - "baseId": "106520|106521|125920|181448|208304|215521|227381|236971|237029|242507|242508|242509|242510|242511|242512|242512|242513|242514|242515|242516|242517|255881|255883|255884|255886|360300|361223|361223|361276|364067|374568|374571|374572|374578|374588|375442|375450|375456|375463|375464|375467|375477|375648|375652|375655|375669|375670|377779|377788|377798|377808|377812|384519|401330|401332|401340|401340|401341|401342|401343|401345|401349|401356|401358|401860|401861|401867|401868|401874|402122|402123|402125|409741|409744|415510|426181|426686|426686|426687|429847|429848|438018|445615|445617|445617|445618|445621|445622|445625|464847|465441|465453|465985|465991|465995|465999|466004|466008|466009|466017|466707|466711|466712|466714|466717|466718|466767|466770|466774|466783|466791|466996|466998|467000|505506|505767|505947|506504|529274|529276|530254|530256|530260|530270|530277|530280|530283|530291|530298|530356|530359|530552|530555|530561|530562|530770|530772|530773|536912|536912|536913|536914|567542|567543|567547|568339|568342|568346|568356|568358|568368|568371|569397|569399|569815|569817|570467|570470|570474|570477|570480|570481|570483|570483|570485|570491|570491|570544|570546|570551|570553|570555|574167|574168|574169|574170|574171|574172|574173|574174|577571|614429|644985|644986|644987|644988|644989|644990|644991|644992|644993|644994|644995|644996|644997|644998|644999|645000|645001|645002|645003|645004|645005|652481|652662|653150|653314|672099|677452|684627|684628|688658|688659|688661|690149|715087|771070|771071|776375|788071|792801|820877|820878|820879|820880|820881|820882|820883|820884|844334|844335|844336|844337|844338|844339|844340|844341|844342|844343|844344|844345|844346|844347|844348|844349|844350|844351|844352|844353|844354|844355|844356|844357|844358|844359|851681|852129|860286|927954|927955|927956|927957|927958|927959|927960|927961|937622|937623|937624|937625|937626|937627|949575|949576|949577|949578|949579|949580|949581|949582|949583|949584|949585|949586|949587|949588|957881|957882|957883|957884|957885|957886|960179", + "upstreamId": "106520|106521|125920|181448|208304|215521|227381|236971|237029|242507|242508|242509|242510|242511|242512|242512|242513|242514|242515|242516|242517|255881|255883|255884|255886|360300|361223|361223|361276|364067|374568|374571|374572|374578|374588|375442|375450|375456|375463|375464|375467|375477|375648|375652|375655|375669|375670|377779|377788|377798|377808|377812|384519|401330|401332|401340|401340|401341|401342|401343|401345|401349|401356|401358|401860|401861|401867|401868|401874|402122|402123|402125|409741|409744|415510|426181|426686|426686|426687|429847|429848|438018|445615|445617|445617|445618|445621|445622|445625|464847|465441|465453|465985|465991|465995|465999|466004|466008|466009|466017|466707|466711|466712|466714|466717|466718|466767|466770|466774|466783|466791|466996|466998|467000|505506|505767|505947|506504|529274|529276|530254|530256|530260|530270|530277|530280|530283|530291|530298|530356|530359|530552|530555|530561|530562|530770|530772|530773|536912|536912|536913|536914|567542|567543|567547|568339|568342|568346|568356|568358|568368|568371|569397|569399|569815|569817|570467|570470|570474|570477|570480|570481|570483|570483|570485|570491|570491|570544|570546|570551|570553|570555|574167|574168|574169|574170|574171|574172|574173|574174|577571|614429|644985|644986|644987|644988|644989|644990|644991|644992|644993|644994|644995|644996|644997|644998|644999|645000|645001|645002|645003|645004|645005|652481|652662|653150|653314|672099|677452|684627|684628|688658|688659|688661|690149|715087|771070|771071|776375|788071|792801|820877|820878|820879|820880|820881|820882|820883|820884|844334|844335|844336|844337|844338|844339|844340|844341|844342|844343|844344|844345|844346|844347|844348|844349|844350|844351|844352|844353|844354|844355|844356|844357|844358|844359|851681|852129|860286|927954|927955|927956|927957|927958|927959|927960|927961|937622|937623|937624|937625|937626|937627|949575|949576|949577|949578|949579|949580|949581|949582|949583|949584|949585|949586|949587|949588|957881|957882|957883|957884|957885|957886|960179", "text": "Spinocerebellar ataxia, autosomal recessive 12" }, { - "baseId": "106528|106529|165532|178621|178622|221983|221984|221985|224395|227338|240821|240823|240824|240825|240826|240827|240828|240829|240830|240831|240832|397324|397334|397345|397346|397352|397353|397354|397363|397368|397373|397536|397545|397546|397551|397553|397554|397556|397559|397757|397759|397761|397763|397777|397779|397780|397790|397794|397868|397881|397888|397902|459540|459797|459799|460028|460030|460033|460036|460037|460040|460041|460052|460166|460168|460172|460176|460178|460180|460449|460451|460452|460458|460459|460461|460463|460913|460924|525103|525252|525255|525265|525266|525277|525418|525514|525515|525516|525727|525729|563503|563850|563856|563858|563863|563866|563868|563870|564422|564667|564674|564680|566392|569405|569732|569733|639051|639052|639053|639054|639055|639056|639057|639058|639059|639060|639061|639062|651970|651999|652003|652004|652115|652257|652320|652324|684187|684188|684189|684190|684191|684192|684193|687659|689984|724009|724010|775683|783659|790970|820226|820227|820228|820229|820230|837075|837076|837077|837078|837079|837080|837081|837082|837083|837084|837085|837086|837087|837088|837089|837090|837091|837092|837093|837094|837095|837096|837097|852263|858454|925884|925885|925886|925887|935123|935124|935125|935126|940962|946988|946989|946990|946991|946992|946993|946994|946995|956133|956134|956135|956136|959938|959939", + "upstreamId": "106528|106529|165532|178621|178622|221983|221984|221985|224395|227338|240821|240823|240824|240825|240826|240827|240828|240829|240830|240831|240832|397324|397334|397345|397346|397352|397353|397354|397363|397368|397373|397536|397545|397546|397551|397553|397554|397556|397559|397757|397759|397761|397763|397777|397779|397780|397790|397794|397868|397881|397888|397902|459540|459797|459799|460028|460030|460033|460036|460037|460040|460041|460052|460166|460168|460172|460176|460178|460180|460449|460451|460452|460458|460459|460461|460463|460913|460924|525103|525252|525255|525265|525266|525277|525418|525514|525515|525516|525727|525729|563503|563850|563856|563858|563863|563866|563868|563870|564422|564667|564674|564680|566392|569405|569732|569733|639051|639052|639053|639054|639055|639056|639057|639058|639059|639060|639061|639062|651970|651999|652003|652004|652115|652257|652320|652324|684187|684188|684189|684190|684191|684192|684193|687659|689984|724009|724010|775683|783659|790970|820226|820227|820228|820229|820230|837075|837076|837077|837078|837079|837080|837081|837082|837083|837084|837085|837086|837087|837088|837089|837090|837091|837092|837093|837094|837095|837096|837097|852263|858454|925884|925885|925886|925887|935123|935124|935125|935126|940962|946988|946989|946990|946991|946992|946993|946994|946995|956133|956134|956135|956136|959938|959939", "text": "Arrhythmogenic right ventricular dysplasia, familial, 13" }, { - "baseId": "106531|106532|106533|626122|626123", + "upstreamId": "106531|106532|106533|626122|626123", "text": "Ataxia, spastic, 3, autosomal recessive" }, { - "baseId": "106534|106535|375921|375926|376057|378200|409937|434661|468094|506320|506339|506351|506352|531269|569055|590637|645906|645907|645908|645909|645910|645911|652779|678073|678082|694086|704147|704148|715463|821043|845348|845349|845350|845351|937936|958113", + "upstreamId": "106534|106535|375921|375926|376057|378200|409937|434661|468094|506320|506339|506351|506352|531269|569055|590637|645906|645907|645908|645909|645910|645911|652779|678073|678082|694086|704147|704148|715463|821043|845348|845349|845350|845351|937936|958113", "text": "Neurodegeneration with brain iron accumulation 6" }, { - "baseId": "106538|106539|106540|106541|106542|106543|106544|106545|106546|106547|106548|214260|214261|214262|214263|214264|214265|214266|214267|214268|214269|359715|369545|369549|369551|370000|370018|370019|370327|370329|371952|407442|428857|428858|428859|432214|432215|439323|444301|457944|457945|458518|502504|502770|523686|523696|524001|524279|562486|562489|563043|564549|568053|568054|568055|568062|637369|637370|637371|655865|655866|655867|692520|692521|692522|700630|700631|711607|736742|751235|766880|777954|792679|801849|819974|819975|819976|819977|834985|834986|834987|834988|834989|834990|834991|834992|834993|834994|834995|834996|834997|834998|834999|835000|835001|835002|835003|835004|835005|835006|835007|835008|835009|835010|835011|835012|835013|835014|835015|835016|835017|835018|835019|835020|835021|852148|852150|852152|906393|925253|934400|934401|934402|934403|934404|934405|934406|934407|934408|934409|934410|934411|940112|946159|946160|946161|946162|946163|946164|946165|946166|946167|946168|946169|946170|946171|955488|955489|955490|955491|955492|955493|955494|959900|960657|970886", + "upstreamId": "106538|106539|106540|106541|106542|106543|106544|106545|106546|106547|106548|214260|214261|214262|214263|214264|214265|214266|214267|214268|214269|359715|369545|369549|369551|370000|370018|370019|370327|370329|371952|407442|428857|428858|428859|432214|432215|439323|444301|457944|457945|458518|502504|502770|523686|523696|524001|524279|562486|562489|563043|564549|568053|568054|568055|568062|637369|637370|637371|655865|655866|655867|692520|692521|692522|700630|700631|711607|736742|751235|766880|777954|792679|801849|819974|819975|819976|819977|834985|834986|834987|834988|834989|834990|834991|834992|834993|834994|834995|834996|834997|834998|834999|835000|835001|835002|835003|835004|835005|835006|835007|835008|835009|835010|835011|835012|835013|835014|835015|835016|835017|835018|835019|835020|835021|852148|852150|852152|906393|925253|934400|934401|934402|934403|934404|934405|934406|934407|934408|934409|934410|934411|940112|946159|946160|946161|946162|946163|946164|946165|946166|946167|946168|946169|946170|946171|955488|955489|955490|955491|955492|955493|955494|959900|960657|970886", "text": "Joubert syndrome 21" }, { - "baseId": "106549|106550|135986|136991|203228|203241|203242|237618|578528|614419|615945|965354", + "upstreamId": "106549|106550|135986|136991|203228|203241|203242|237618|578528|614419|615945|965354", "text": "Deafness, autosomal recessive 86" }, { - "baseId": "106551|106552|247172|264742|430244|430248|430250|430252|438117|468914|470351|470353|471044|491078|491080|496111|533174|574996|574997|611905|623589|626279|716561|728297|728298|757142|776893|778641|791940|847783|852876|929000|929001|938738|938739|950830|960294", + "upstreamId": "106551|106552|247172|264742|430244|430248|430250|430252|438117|468914|470351|470353|471044|491078|491080|496111|533174|574996|574997|611905|623589|626279|716561|728297|728298|757142|776893|778641|791940|847783|852876|929000|929001|938738|938739|950830|960294", "text": "Mental retardation, autosomal recessive 41" }, { - "baseId": "106639|439358|517758|581741|695118|697385|906232", + "upstreamId": "106639|439358|517758|581741|695118|697385|906232", "text": "Joubert syndrome 22" }, { - "baseId": "106640|106641|106642|106643|106644|964531", + "upstreamId": "106640|106641|106642|106643|106644|964531", "text": "Warburg micro syndrome 4" }, { - "baseId": "106646|247524|247525|247526|247527|247528|486778|581227|614497|798777|816009|964564|964737|971169|971603|976675|976702", + "upstreamId": "106646|247524|247525|247526|247527|247528|486778|581227|614497|798777|816009|964564|964737|971169|971603|976675|976702", "text": "Mental retardation 49, X-linked" }, { - "baseId": "106647|190048|190049|247183|260237|264765|264912|377153|377155|377157|377169|377171|377179|377181|378228|378254|378258|378260|378267|378279|378297|378298|378309|378316|378321|378325|378439|378442|379758|379762|410838|410839|446299|446299|446300|469447|469452|470502|471008|471009|471473|471475|471477|507316|507320|507897|508279|508281|533641|533649|533694|533699|533984|534214|534216|571380|571387|571391|571393|572971|573625|573627|580570|580686|611435|614477|648796|648797|648798|648799|648800|648801|694596|705614|705615|705616|773200|773203|773205|788252|792002|818438|821344|848550|848551|848552|848553|848554|851853|858304|929254|929255|939038|939039|939040|939041|939042|951152|951153|951154|951155|958871|958872|958873|963920|971153", + "upstreamId": "106647|190048|190049|247183|260237|264765|264912|377153|377155|377157|377169|377171|377179|377181|378228|378254|378258|378260|378267|378279|378297|378298|378309|378316|378321|378325|378439|378442|379758|379762|410838|410839|446299|446299|446300|469447|469452|470502|471008|471009|471473|471475|471477|507316|507320|507897|508279|508281|533641|533649|533694|533699|533984|534214|534216|571380|571387|571391|571393|572971|573625|573627|580570|580686|611435|614477|648796|648797|648798|648799|648800|648801|694596|705614|705615|705616|773200|773203|773205|788252|792002|818438|821344|848550|848551|848552|848553|848554|851853|858304|929254|929255|939038|939039|939040|939041|939042|951152|951153|951154|951155|958871|958872|958873|963920|971153", "text": "Epileptic encephalopathy, early infantile, 33" }, { - "baseId": "106647|190049|264912|360502|446299|533694|818436|818437|818438", + "upstreamId": "106647|190049|264912|360502|446299|533694|818436|818437|818438", "text": "EEF1A2-related developmental and degenerative epileptic-dyskinetic encephalopathy" }, { - "baseId": "106650|519725|624843|624844", + "upstreamId": "106650|519725|624843|624844", "text": "Cerebellar atrophy with seizures and variable developmental delay" }, { - "baseId": "106766|106767|106768|106769|106770|362382|460530|460534|460541|524923|525139|525288|525463|564486|566137|566140|566145|569470|638709|638710|638711|638712|652245|692769|712134|737322|798918|836600|836601|836602|836603|925735|925736|934943|946808", + "upstreamId": "106766|106767|106768|106769|106770|362382|460530|460534|460541|524923|525139|525288|525463|564486|566137|566140|566145|569470|638709|638710|638711|638712|652245|692769|712134|737322|798918|836600|836601|836602|836603|925735|925736|934943|946808", "text": "Spastic paraplegia 45, autosomal recessive" }, { - "baseId": "106799|106800|106801|106802|106803|153652|205685|205686|274206|360505|553100|553104|622695|622696|622697|906039|919944|920424", + "upstreamId": "106799|106800|106801|106802|106803|153652|205685|205686|274206|360505|553100|553104|622695|622696|622697|906039|919944|920424", "text": "Schwannomatosis 2" }, { - "baseId": "106803|195650|243638|243639|274206|337612|337623|347191|351203|403784|404300|404323|404331|905964", + "upstreamId": "106803|195650|243638|243639|274206|337612|337623|347191|351203|403784|404300|404323|404331|905964", "text": "Schwannomatosis" }, { - "baseId": "106804|106805|106806|106807|153654|166309|166310|243566|538490", + "upstreamId": "106804|106805|106806|106807|153654|166309|166310|243566|538490", "text": "Ataxia-hypogonadism-choroidal dystrophy syndrome" }, { - "baseId": "106810|106811|259938|424657|424658|904756", + "upstreamId": "106810|106811|259938|424657|424658|904756", "text": "Myopathy with extrapyramidal signs" }, { - "baseId": "106815|204348|226724|226725|226726|226727|238106|361523|442109|442138|442159|442168|536981|682833", + "upstreamId": "106815|204348|226724|226725|226726|226727|238106|361523|442109|442138|442159|442168|536981|682833", "text": "Lateral meningocele syndrome" }, { - "baseId": "106818|106819", + "upstreamId": "106818|106819", "text": "Essential pentosuria" }, { - "baseId": "106822|106823|106824|106825|106826|106827|106828|106829|106830", + "upstreamId": "106822|106823|106824|106825|106826|106827|106828|106829|106830", "text": "Spondylometaphyseal dysplasia-cone-rod dystrophy syndrome" }, { - "baseId": "106836|206698|206699|427611|446977|446979|447032|447035|447040|514964|514980|556546|556579|556972|626568|626569|626570|690323|690324|690328|690329|690331|690332|690333|694998|731561|822491|822492|921562|921563|929947|929948|941364|941365|952008", + "upstreamId": "106836|206698|206699|427611|446977|446979|447032|447035|447040|514964|514980|556546|556579|556972|626568|626569|626570|690323|690324|690328|690329|690331|690332|690333|694998|731561|822491|822492|921562|921563|929947|929948|941364|941365|952008", "text": "Spastic paraplegia 63, autosomal recessive" }, { - "baseId": "106837|106838|360923|461176|461178|525820|525822|525970|538416|552356|626199|639330|639331|692904|692905|692906|692907|791018|791019|837528|837529|837530|837531|947161|956291", + "upstreamId": "106837|106838|360923|461176|461178|525820|525822|525970|538416|552356|626199|639330|639331|692904|692905|692906|692907|791018|791019|837528|837529|837530|837531|947161|956291", "text": "Spastic paraplegia 64, autosomal recessive" }, { - "baseId": "106840|465134|465810|530071|567469|569576|652512|693800|693801|703534|820775|927581|937254", + "upstreamId": "106840|465134|465810|530071|567469|569576|652512|693800|693801|703534|820775|927581|937254", "text": "Spastic paraplegia 61, autosomal recessive" }, { - "baseId": "106842|136319|224698|224699|224700|224701|224702|427971|427973|427974|427977|427978|427980|450174|450176|450349|450371|450374|450375|482304|495391|517481|517599|517766|538959|557804|559514|559516|629252|629253|629254|629255|677412|690995|690996|690998|690999|691000|691001|691002|695113|695114|695115|697227|759083|762757|790145|790146|825535|825536|825537|903514|922502|922503|970731|970732", + "upstreamId": "106842|136319|224698|224699|224700|224701|224702|427971|427973|427974|427977|427978|427980|450174|450176|450349|450371|450374|450375|482304|495391|517481|517599|517766|538959|557804|559514|559516|629252|629253|629254|629255|677412|690995|690996|690998|690999|691000|691001|691002|695113|695114|695115|697227|759083|762757|790145|790146|825535|825536|825537|903514|922502|922503|970731|970732", "text": "Mental retardation, autosomal recessive 42" }, { - "baseId": "107055|514019", + "upstreamId": "107055|514019", "text": "Connective tissue nevi" }, { - "baseId": "107137", + "upstreamId": "107137", "text": "COL3A1-Related Disorder" }, { - "baseId": "107245|514122|535051|574322", + "upstreamId": "107245|514122|535051|574322", "text": "Retinitis pigmentosa 23" }, { - "baseId": "107246|107247|107248|107249", + "upstreamId": "107246|107247|107248|107249", "text": "Richieri Costa-Pereira syndrome" }, { - "baseId": "108167|971170", + "upstreamId": "108167|971170", "text": "Deafness, X-linked 6" }, { - "baseId": "108185", + "upstreamId": "108185", "text": "Congenital disorder of glycosylation type 1w" }, { - "baseId": "108187|167509|457850|458503|458505|458506|458914|458915|523888|523894|524145|524152|524157|524164|524168|524170|524171|524183|538400|538401|562418|565120|565125|565127|565133|567925|622392|637203|637204|637205|637206|637207|637208|637209|637210|637211|637212|637213|637214|637215|637216|651787|651799|651896|700592|711537|711539|723106|730576|736671|736673|736674|744493|751163|751164|751165|751166|751167|751168|783110|790802|834757|834758|834759|834760|834761|834762|834763|834764|834765|834766|852138|925202|925203|934311|934312|934313|934314|934315|934316|946069|946070|946071|946072|946073|946074|955413|955414|959893|959894", + "upstreamId": "108187|167509|457850|458503|458505|458506|458914|458915|523888|523894|524145|524152|524157|524164|524168|524170|524171|524183|538400|538401|562418|565120|565125|565127|565133|567925|622392|637203|637204|637205|637206|637207|637208|637209|637210|637211|637212|637213|637214|637215|637216|651787|651799|651896|700592|711537|711539|723106|730576|736671|736673|736674|744493|751163|751164|751165|751166|751167|751168|783110|790802|834757|834758|834759|834760|834761|834762|834763|834764|834765|834766|852138|925202|925203|934311|934312|934313|934314|934315|934316|946069|946070|946071|946072|946073|946074|955413|955414|959893|959894", "text": "Immunodeficiency 15" }, { - "baseId": "108188|108189|108190|167428", + "upstreamId": "108188|108189|108190|167428", "text": "Palmoplantar keratoderma, nagashima type" }, { - "baseId": "108191|367105|367355|367367|367369|500186|500433|500436|513534|576105|631167|631168|691371|720400|734020|744058|827894|953430", + "upstreamId": "108191|367105|367355|367367|367369|500186|500433|500436|513534|576105|631167|631168|691371|720400|734020|744058|827894|953430", "text": "Congenital disorder of glycosylation type 1x" }, { - "baseId": "108192|538388", + "upstreamId": "108192|538388", "text": "Combined oxidative phosphorylation deficiency 19" }, { - "baseId": "108807|108810|108820|171256|171256|389522|405724|450891|451002|451185|451188|518198|518199|518201|518203|518205|518206|518208|518213|518218|518256|518323|518327|518328|538349|558083|558085|558087|558089|558452|558454|558456|560629|561506|561507|561520|561522|561525|561526|561528|629967|629968|629969|629970|629971|629972|629973|629974|629975|629976|629977|629978|629979|629980|629981|629982|629983|629984|629985|629986|629987|629988|629989|629990|629991|629992|708244|708245|719852|719853|719854|719855|733451|733453|743937|747604|747605|747607|747608|763200|763202|763203|763205|763207|774839|781316|781319|819018|819168|826439|826440|826441|826442|826443|826444|826445|826446|826447|826448|826449|826450|826451|826452|826453|826454|826455|826456|826457|826458|826459|826460|826461|826462|826463|826464|922759|922760|922761|922762|922763|922764|931395|931396|931397|931398|931399|931400|931401|942907|942908|942909|942910|942911|942912|942913|942914|942915|953087|953088", + "upstreamId": "108807|108810|108820|171256|171256|389522|405724|450891|451002|451185|451188|518198|518199|518201|518203|518205|518206|518208|518213|518218|518256|518323|518327|518328|538349|558083|558085|558087|558089|558452|558454|558456|560629|561506|561507|561520|561522|561525|561526|561528|629967|629968|629969|629970|629971|629972|629973|629974|629975|629976|629977|629978|629979|629980|629981|629982|629983|629984|629985|629986|629987|629988|629989|629990|629991|629992|708244|708245|719852|719853|719854|719855|733451|733453|743937|747604|747605|747607|747608|763200|763202|763203|763205|763207|774839|781316|781319|819018|819168|826439|826440|826441|826442|826443|826444|826445|826446|826447|826448|826449|826450|826451|826452|826453|826454|826455|826456|826457|826458|826459|826460|826461|826462|826463|826464|922759|922760|922761|922762|922763|922764|931395|931396|931397|931398|931399|931400|931401|942907|942908|942909|942910|942911|942912|942913|942914|942915|953087|953088", "text": "Familial cold autoinflammatory syndrome 4" }, { - "baseId": "108807|108810|108820|152952|166229|171256|361176|389522|405724|450891|451002|451185|451188|518198|518199|518201|518203|518205|518206|518208|518213|518218|518256|518323|518327|518328|538349|558083|558085|558087|558089|558452|558454|558456|560629|561506|561507|561520|561522|561525|561526|561528|629967|629968|629969|629970|629971|629972|629973|629974|629975|629976|629977|629978|629979|629980|629981|629982|629983|629984|629985|629986|629987|629988|629989|629990|629991|629992|708244|708245|719852|719853|719854|719855|733451|733453|743937|747604|747605|747607|747608|763200|763202|763203|763205|763207|774839|781316|781319|819018|819168|826439|826440|826441|826442|826443|826444|826445|826446|826447|826448|826449|826450|826451|826452|826453|826454|826455|826456|826457|826458|826459|826460|826461|826462|826463|826464|922759|922760|922761|922762|922763|922764|931395|931396|931397|931398|931399|931400|931401|942907|942908|942909|942910|942911|942912|942913|942914|942915|953087|953088|977190", + "upstreamId": "108807|108810|108820|152952|166229|171256|361176|389522|405724|450891|451002|451185|451188|518198|518199|518201|518203|518205|518206|518208|518213|518218|518256|518323|518327|518328|538349|558083|558085|558087|558089|558452|558454|558456|560629|561506|561507|561520|561522|561525|561526|561528|629967|629968|629969|629970|629971|629972|629973|629974|629975|629976|629977|629978|629979|629980|629981|629982|629983|629984|629985|629986|629987|629988|629989|629990|629991|629992|708244|708245|719852|719853|719854|719855|733451|733453|743937|747604|747605|747607|747608|763200|763202|763203|763205|763207|774839|781316|781319|819018|819168|826439|826440|826441|826442|826443|826444|826445|826446|826447|826448|826449|826450|826451|826452|826453|826454|826455|826456|826457|826458|826459|826460|826461|826462|826463|826464|922759|922760|922761|922762|922763|922764|931395|931396|931397|931398|931399|931400|931401|942907|942908|942909|942910|942911|942912|942913|942914|942915|953087|953088|977190", "text": "Autoinflammation with infantile enterocolitis" }, { - "baseId": "125776", + "upstreamId": "125776", "text": "Coronary heart disease 2" }, { - "baseId": "125778", + "upstreamId": "125778", "text": "Alzheimer disease familial 3, with spastic paraparesis" }, { - "baseId": "125779|227803|227805|362510", + "upstreamId": "125779|227803|227805|362510", "text": "efavirenz response - Metabolism/PK" }, { - "baseId": "125790|125791|264545|361846|788885|903601|972794", + "upstreamId": "125790|125791|264545|361846|788885|903601|972794", "text": "Mental retardation, autosomal recessive 27" }, { - "baseId": "125797|214840|247162|411594|411595|411596|446084|469650|470046|470056|470631|481411|532887|533299|533300|539088|570679|572352|572354|572360|573033|573039|574939|647943|647944|647945|647946|647947|647948|653159|694378|694379|694382|694383|694385|694390|694391|694392|704920|704922|704924|728109|772587|786138|797786|958599|964889|964890", + "upstreamId": "125797|214840|247162|411594|411595|411596|446084|469650|470046|470056|470631|481411|532887|533299|533300|539088|570679|572352|572354|572360|573033|573039|574939|647943|647944|647945|647946|647947|647948|653159|694378|694379|694382|694383|694385|694390|694391|694392|704920|704922|704924|728109|772587|786138|797786|958599|964889|964890", "text": "Spastic paraplegia 75, autosomal recessive" }, { - "baseId": "125798", + "upstreamId": "125798", "text": "Morbid obesity and spermatogenic failure" }, { - "baseId": "125809|125810", + "upstreamId": "125809|125810", "text": "Auriculocondylar syndrome 3" }, { - "baseId": "125811|125812|583099", + "upstreamId": "125811|125812|583099", "text": "Question mark ears, isolated" }, { - "baseId": "125813|243979|243980|538976", + "upstreamId": "125813|243979|243980|538976", "text": "Spinocerebellar ataxia, autosomal recessive 15" }, { - "baseId": "125814|125815|125816|260667|260668|260669", + "upstreamId": "125814|125815|125816|260667|260668|260669", "text": "Poikiloderma, hereditary fibrosing, with tendon contractures, myopathy, and pulmonary fibrosis" }, { - "baseId": "125818", + "upstreamId": "125818", "text": "Alzheimer disease 19" }, { - "baseId": "125820|125821|125822|125823|125824|125825|125826|125827|125828|125829|125830|125831|125832|125833|125834|125835|125836|125837|125838|125839|136532|136533|136534|136535|136536|136537|136538|136539", + "upstreamId": "125820|125821|125822|125823|125824|125825|125826|125827|125828|125829|125830|125831|125832|125833|125834|125835|125836|125837|125838|125839|136532|136533|136534|136535|136536|136537|136538|136539", "text": "Hypotension" }, { - "baseId": "125893|125894|125895|125896|125897|125898|125899|125900|125901|187231|361950|361951|361952|410908|424224|469882|470901|470902|471318|471794|513147|534040|534044|534047|534048|534049|534050|534051|534052|534054|534145|534147|534148|534594|534601|534602|571688|571696|573197|573247|573248|573253|573258|573261|573261|573916|573943|578008|613422|649163|649164|649165|649166|649167|649168|649169|649170|649171|649172|649173|649174|649175|649176|649177|653187|653220|717282|717283|728999|729000|729001|742730|786543|789391|849008|849009|849010|849011|849012|849013|849014|849015|849016|849017|849018|849019|849020|849021|849022|853013|929393|929394|929395|939180|939181|939182|939183|939184|939185|939186|941270|941271|951310|951311|951312|951313|951314|951315|951316|951317|951318|951319|951320|951321|961988|961989", + "upstreamId": "125893|125894|125895|125896|125897|125898|125899|125900|125901|187231|361950|361951|361952|410908|424224|469882|470901|470902|471318|471794|513147|534040|534044|534047|534048|534049|534050|534051|534052|534054|534145|534147|534148|534594|534601|534602|571688|571696|573197|573247|573248|573253|573258|573261|573261|573916|573943|578008|613422|649163|649164|649165|649166|649167|649168|649169|649170|649171|649172|649173|649174|649175|649176|649177|653187|653220|717282|717283|728999|729000|729001|742730|786543|789391|849008|849009|849010|849011|849012|849013|849014|849015|849016|849017|849018|849019|849020|849021|849022|853013|929393|929394|929395|939180|939181|939182|939183|939184|939185|939186|941270|941271|951310|951311|951312|951313|951314|951315|951316|951317|951318|951319|951320|951321|961988|961989", "text": "Polyarteritis nodosa, childhoood-onset" }, { - "baseId": "125920|178425|178426|178427|178428|178429|178430|181448|242512|265448|361000|361001|401340|426686|445617|486154|486667|536912|570483|570491|613979|613980|614124|614429|622914|677452|792801|801578|802014|860287|904200|919677|919678|920363|964457|966172", + "upstreamId": "125920|178425|178426|178427|178428|178429|178430|181448|242512|265448|361000|361001|401340|426686|445617|486154|486667|536912|570483|570491|613979|613980|614124|614429|622914|677452|792801|801578|802014|860287|904200|919677|919678|920363|964457|966172", "text": "Epileptic encephalopathy, early infantile, 28" }, { - "baseId": "125922|791022|919312|970927|976011", + "upstreamId": "125922|791022|919312|970927|976011", "text": "Coloboma, ocular, with or without hearing impairment, cleft lip/palate, and/or mental retardation" }, { - "baseId": "130975|130977|130978|226421|226422|226423|226424|226425|226426|226427|226428|226429|488160|513209|513643|538466|590083|788909|970529", + "upstreamId": "130975|130977|130978|226421|226422|226423|226424|226425|226426|226427|226428|226429|488160|513209|513643|538466|590083|788909|970529", "text": "Hyperphosphatasia with mental retardation syndrome 4" }, { - "baseId": "130979|133699", + "upstreamId": "130979|133699", "text": "Mitochondrial complex 4 deficiency, nuclear type 12" }, { - "baseId": "130980|130984|354177|360301|375541|679693|976730|976731|976732|976733", + "upstreamId": "130980|130984|354177|360301|375541|679693|976730|976731|976732|976733", "text": "Foveal hypoplasia 2" }, { - "baseId": "130980|679693|800923|800924|800925", + "upstreamId": "130980|679693|800923|800924|800925", "text": "Foveal hypoplasia" }, { - "baseId": "130981|130982", + "upstreamId": "130981|130982", "text": "FOVEAL HYPOPLASIA 2 WITH OPTIC NERVE MISROUTING AND ANTERIOR SEGMENT DYSGENESIS" }, { - "baseId": "130983", + "upstreamId": "130983", "text": "FOVEAL HYPOPLASIA 2 WITH OPTIC NERVE MISROUTING" }, { - "baseId": "130985|130986", + "upstreamId": "130985|130986", "text": "Foveal hypoplasia 2 and optic nerve misrouting with or without anterior segment dysgenesis" }, { - "baseId": "130987|130988|407794|790933|802171", + "upstreamId": "130987|130988|407794|790933|802171", "text": "Bone marrow failure syndrome 2" }, { - "baseId": "131565", + "upstreamId": "131565", "text": "Microprolactinoma" }, { - "baseId": "131815|131817|131818|131819|131820|131821|131823|131824|131826|131827|195422|195423|195754|207940|207940|207941|214315|214317|214753|214754|254446|254450|316256|316266|316267|316270|316272|316273|316274|323604|323608|323609|323618|323621|323623|323629|329742|329750|329751|329753|329759|329767|329768|329769|331021|331022|331024|331025|331028|331039|353213|684311|869457|869458|869459|869460|869461|869462|869463|869464|869465|869466|869467|869468|869469|869470|869471|869472|869473|869474|869475|869476|869477|869478|869479|872201|872202|872203|872204", + "upstreamId": "131815|131817|131818|131819|131820|131821|131823|131824|131826|131827|195422|195423|195754|207940|207940|207941|214315|214317|214753|214754|254446|254450|316256|316266|316267|316270|316272|316273|316274|323604|323608|323609|323618|323621|323623|323629|329742|329750|329751|329753|329759|329767|329768|329769|331021|331022|331024|331025|331028|331039|353213|684311|869457|869458|869459|869460|869461|869462|869463|869464|869465|869466|869467|869468|869469|869470|869471|869472|869473|869474|869475|869476|869477|869478|869479|872201|872202|872203|872204", "text": "Joubert syndrome 24" }, { - "baseId": "131847|131854|131863|131864|131882|131884", + "upstreamId": "131847|131854|131863|131864|131882|131884", "text": "Coffin Siris/Intellectual Disability" }, { - "baseId": "131912|539026|906285", + "upstreamId": "131912|539026|906285", "text": "Bardet-Biedl syndrome 18" }, { - "baseId": "131927|440822|519372|563013|563020", + "upstreamId": "131927|440822|519372|563013|563020", "text": "Chilblain lupus erythematosus" }, { - "baseId": "131928", + "upstreamId": "131928", "text": "ADAR-Related Disorders" }, { - "baseId": "131960|226766|360884|423236|679896|857382", + "upstreamId": "131960|226766|360884|423236|679896|857382", "text": "Premature ovarian failure 8" }, { - "baseId": "131961|131962|131963|131964|552292|983926", + "upstreamId": "131961|131962|131963|131964|552292|983926", "text": "Premature ovarian failure 9" }, { - "baseId": "131974|131975|131976|131977|578413", + "upstreamId": "131974|131975|131976|131977|578413", "text": "Retinitis pigmentosa 68" }, { - "baseId": "131982", + "upstreamId": "131982", "text": "Sea-blue histiocyte syndrome" }, { - "baseId": "132016", + "upstreamId": "132016", "text": "repeat number of microsatellite" }, { - "baseId": "132017|132018|132019|132020|213562|215770|215771|362143|404770|432229|432230|443836|511613|535702|550358|550359|612714|653870|653871|788787|801989|815960|815984|916962|918983|918984|920215|964264|964265|964823|973096|976651", + "upstreamId": "132017|132018|132019|132020|213562|215770|215771|362143|404770|432229|432230|443836|511613|535702|550358|550359|612714|653870|653871|788787|801989|815960|815984|916962|918983|918984|920215|964264|964265|964823|973096|976651", "text": "Bosch-Boonstra-Schaaf optic atrophy syndrome" }, { - "baseId": "132026|790790", + "upstreamId": "132026|790790", "text": "Renal hypodysplasia/aplasia 2" }, { - "baseId": "132046|132047|132048", + "upstreamId": "132046|132047|132048", "text": "Short stature, auditory canal atresia, mandibular hypoplasia, and skeletal abnormalities" }, { - "baseId": "132051", + "upstreamId": "132051", "text": "Palmoplantar keratoderma, nonepidermolytic, focal or diffuse" }, { - "baseId": "132052|132053|132054|132055|132056", + "upstreamId": "132052|132053|132054|132055|132056", "text": "Dowling-degos disease 4" }, { - "baseId": "132074", + "upstreamId": "132074", "text": "Sacral agenesis with vertebral anomalies" }, { - "baseId": "132091|133192|137764|137766|137769|152479|183392|260102|337250|360833|361023|430996|434681|575761|575762|575764|575765|575766|575767|575768|575769|575770|575771|575772|575773|575774|575775|575776|575777|575778|575779|575780", + "upstreamId": "132091|133192|137764|137766|137769|152479|183392|260102|337250|360833|361023|430996|434681|575761|575762|575764|575765|575766|575767|575768|575769|575770|575771|575772|575773|575774|575775|575776|575777|575778|575779|575780", "text": "Hereditary cancer" }, { - "baseId": "132103|132104|132133|132167|132191|132191|132204|132225|132237|132239|132250|132251|132267|133574|133576|133581|133585|133593|133601|133601|150777|151423|151688|152122|153698|180742|180754|184239|186220|186222|213153|235267|235276|242362|389266|389282|389283|401785|409517|409519|466178|477493|477581|478191|569950|967155|967208", + "upstreamId": "132103|132104|132133|132167|132191|132191|132204|132225|132237|132239|132250|132251|132267|133574|133576|133581|133585|133593|133601|133601|150777|151423|151688|152122|153698|180742|180754|184239|186220|186222|213153|235267|235276|242362|389266|389282|389283|401785|409517|409519|466178|477493|477581|478191|569950|967155|967208", "text": "Pancreatic cancer 3" }, { - "baseId": "132236|243618|432417|622843", + "upstreamId": "132236|243618|432417|622843", "text": "Anaplastic ependymoma" }, { - "baseId": "132360|238133", + "upstreamId": "132360|238133", "text": "Atrial standstill 2" }, { - "baseId": "132377|132378|132379|132380|132381|132382|132383|132384|132385|132386|132387|132388|132389|132390|132391|132392|132393|132394|132395|132396|132397|132398|132399|132400|132401|132402|243921|243922", + "upstreamId": "132377|132378|132379|132380|132381|132382|132383|132384|132385|132386|132387|132388|132389|132390|132391|132392|132393|132394|132395|132396|132397|132398|132399|132400|132401|132402|243921|243922", "text": "Calcium oxalate urolithiasis" }, { - "baseId": "132418", + "upstreamId": "132418", "text": "Palmoplantar keratoderma, mutilating, with periorificial keratotic plaques, X-linked" }, { - "baseId": "132462|132466|136585|136586", + "upstreamId": "132462|132466|136585|136586", "text": "Pseudoexfoliation glaucoma" }, { - "baseId": "132580|360047|445221", + "upstreamId": "132580|360047|445221", "text": "Lamellar ichthyosis" }, { - "baseId": "132582|132583", + "upstreamId": "132582|132583", "text": "Eculizumab, poor response to" }, { - "baseId": "132584|132585|132585|132586|201860|201865|214535|225873|243934|259818|389307|406687|614283|788774|798557|801988|858342|858517|918940|970132|980888", + "upstreamId": "132584|132585|132585|132586|201860|201865|214535|225873|243934|259818|389307|406687|614283|788774|798557|801988|858342|858517|918940|970132|980888", "text": "Epileptic encephalopathy, early infantile, 19" }, { - "baseId": "132590|169294|360182|577560|976666", + "upstreamId": "132590|169294|360182|577560|976666", "text": "Polymicrogyria, bilateral perisylvian, autosomal recessive" }, { - "baseId": "132597|132598|132599|375543|375557|375561|550055|550057|567550|568448|570611|715160|726873|801554|820899|820900|844452|844453|844454|844455|844456|927995|960182|961877", + "upstreamId": "132597|132598|132599|375543|375557|375561|550055|550057|567550|568448|570611|715160|726873|801554|820899|820900|844452|844453|844454|844455|844456|927995|960182|961877", "text": "Carbonic anhydrase VA deficiency, hyperammonemia due to" }, { - "baseId": "132603|132604|132605|550317|550318|550319|550320|970788", + "upstreamId": "132603|132604|132605|550317|550318|550319|550320|970788", "text": "Moyamoya disease 6 with achalasia" }, { - "baseId": "132609|132610|207399|213570|359747|369087|406855|511651|623289|788796|802162|964271|967268", + "upstreamId": "132609|132610|207399|213570|359747|369087|406855|511651|623289|788796|802162|964271|967268", "text": "Cortical dysplasia, complex, with other brain malformations 5" }, { - "baseId": "132611|132612|132613|132614|132615|217224|217225|380441|424628|428233|431907|431908|443526|481310|511024|611386|611464|611599|653862|653863|653864|788768|798538|798539|800395|806434|806435|905858|918862|961602|963548|963549|963550|963551|963552|964742|980321|983861", + "upstreamId": "132611|132612|132613|132614|132615|217224|217225|380441|424628|428233|431907|431908|443526|481310|511024|611386|611464|611599|653862|653863|653864|788768|798538|798539|800395|806434|806435|905858|918862|961602|963548|963549|963550|963551|963552|964742|980321|983861", "text": "Mental retardation, autosomal dominant 23" }, { - "baseId": "132623|132624|132625|132626|239239|239241|361614|361615|367282|367651|393595|393614|393635|393638|393642|393643|393651|393652|393841|393847|393848|394043|394047|406334|414945|414946|440823|443487|443492|452488|452740|452744|452747|452750|452771|452773|452774|452776|452807|452810|452813|452815|452834|452837|453027|453040|519373|519378|519382|519384|519385|519386|519388|519390|519400|519403|519565|519567|519570|519575|519586|519607|519609|519611|519622|536649|559020|559022|559024|559026|559028|559030|559550|559552|559554|559556|559558|559560|559562|561642|561644|561646|561648|563026|563041|563046|563048|563053|563054|614266|622501|801799|816450|828257|828258|828259|828260|828261|828262|828263|828264|828265|828266|828267|828268|828269|828270|828271|828272|828273|828274|828275|828276|828277|828278|828279|828280|828281|828282|828283|828284|828285|828286|828287|828288|828289|828290|828291|828292|828293|828294|828295|828296|850948|850950|851394|923243|923244|923245|923246|923247|923248|923249|923250|923251|923252|923253|923254|923255|931996|931997|931998|931999|932000|932001|932002|939947|939948|940758|943599|943600|943601|943602|943603|943604|943605|943606|943607|943608|953516|953517|953518|953519|953520|953521|953522|965441|973019", + "upstreamId": "132623|132624|132625|132626|239239|239241|361614|361615|367282|367651|393595|393614|393635|393638|393642|393643|393651|393652|393841|393847|393848|394043|394047|406334|414945|414946|440823|443487|443492|452488|452740|452744|452747|452750|452771|452773|452774|452776|452807|452810|452813|452815|452834|452837|453027|453040|519373|519378|519382|519384|519385|519386|519388|519390|519400|519403|519565|519567|519570|519575|519586|519607|519609|519611|519622|536649|559020|559022|559024|559026|559028|559030|559550|559552|559554|559556|559558|559560|559562|561642|561644|561646|561648|563026|563041|563046|563048|563053|563054|614266|622501|801799|816450|828257|828258|828259|828260|828261|828262|828263|828264|828265|828266|828267|828268|828269|828270|828271|828272|828273|828274|828275|828276|828277|828278|828279|828280|828281|828282|828283|828284|828285|828286|828287|828288|828289|828290|828291|828292|828293|828294|828295|828296|850948|850950|851394|923243|923244|923245|923246|923247|923248|923249|923250|923251|923252|923253|923254|923255|931996|931997|931998|931999|932000|932001|932002|939947|939948|940758|943599|943600|943601|943602|943603|943604|943605|943606|943607|943608|953516|953517|953518|953519|953520|953521|953522|965441|973019", "text": "Microcephaly, progressive, with seizures and cerebral and cerebellar atrophy" }, { - "baseId": "132633|447773|447781|447972|448104|515775|515788|515896|515897|557023|557252|557293|558475|627749|627750|627751|627752|627753|707348|718916|732390|761871|761872|761874|780671|787145|792716|823870|823871|823872|823873|823874|823875|823876|823877|823878|851297|930464|930465", + "upstreamId": "132633|447773|447781|447972|448104|515775|515788|515896|515897|557023|557252|557293|558475|627749|627750|627751|627752|627753|707348|718916|732390|761871|761872|761874|780671|787145|792716|823870|823871|823872|823873|823874|823875|823876|823877|823878|851297|930464|930465", "text": "Immunodeficiency 22" }, { - "baseId": "132638", + "upstreamId": "132638", "text": "Common variable immunodeficiency 11" }, { - "baseId": "132640|858770", + "upstreamId": "132640|858770", "text": "Atrial fibrillation, familial, 15" }, { - "baseId": "132641|132642|132643|132644|132645|132646|132647|132648|171813|208300|429838|429839|429840|512989|612194", + "upstreamId": "132641|132642|132643|132644|132645|132646|132647|132648|171813|208300|429838|429839|429840|512989|612194", "text": "Spinocerebellar ataxia, autosomal recessive 16" }, { - "baseId": "132663|552604|636201|636202|636204", + "upstreamId": "132663|552604|636201|636202|636204", "text": "Baraitser-Winter syndrome" }, { - "baseId": "132671", + "upstreamId": "132671", "text": "Congenital neutropenia" }, { - "baseId": "132673|132674|132675|237527|432213|790608|798573|964827|965966", + "upstreamId": "132673|132674|132675|237527|432213|790608|798573|964827|965966", "text": "Cortical dysplasia, complex, with other brain malformations 6" }, { - "baseId": "132683|676996|676997|676998|800944", + "upstreamId": "132683|676996|676997|676998|800944", "text": "Oocyte maturation defect 1" }, { - "baseId": "132690|132691|132692|132693|132694|132695|415474|569572|610576|610577|610578|610579|965349", + "upstreamId": "132690|132691|132692|132693|132694|132695|415474|569572|610576|610577|610578|610579|965349", "text": "Desbuquois dysplasia 2" }, { - "baseId": "132705|132706|223356|223357|613847|964812", + "upstreamId": "132705|132706|223356|223357|613847|964812", "text": "Short stature with microcephaly and distinctive facies" }, { - "baseId": "132722", + "upstreamId": "132722", "text": "Fetal hemoglobin quantitative trait locus 5" }, { - "baseId": "132722|247743|247744|247745|247747|247748|414892|495129|511432|550587|614250|621020|621021|822304|961508|964204|964205|976647|980412", + "upstreamId": "132722|247743|247744|247745|247747|247748|414892|495129|511432|550587|614250|621020|621021|822304|961508|964204|964205|976647|980412", "text": "Intellectual developmental disorder with persistence of fetal hemoglobin" }, { - "baseId": "132725|346275|626283|886665", + "upstreamId": "132725|346275|626283|886665", "text": "Cerebral amyloid angiopathy, APP-related" }, { - "baseId": "132920", + "upstreamId": "132920", "text": "Malignant Glioma" }, { - "baseId": "132977|184734|453098|678053|678054|778476", + "upstreamId": "132977|184734|453098|678053|678054|778476", "text": "Ewing's sarcoma" }, { - "baseId": "132980|587562", + "upstreamId": "132980|587562", "text": "Osteoblastic osteosarcoma" }, { - "baseId": "133154|133499|399557|557265|611997|612009", + "upstreamId": "133154|133499|399557|557265|611997|612009", "text": "B Lymphoblastic Leukemia/Lymphoma, Not Otherwise Specified" }, { - "baseId": "133167|151083|235612", + "upstreamId": "133167|151083|235612", "text": "Acute monoblastic leukemia" }, { - "baseId": "133167|151083|235612", + "upstreamId": "133167|151083|235612", "text": "Acute monocytic leukemia" }, { - "baseId": "133177|140203|151416|179958|181812", + "upstreamId": "133177|140203|151416|179958|181812", "text": "Triple-Negative Breast Cancer Finding" }, { - "baseId": "133389|138836|138849|177907|193750|195485|215434|223603|223605|223606|223607|223608|223609|223610|223611|223612|223613|223614|223615|223616|223617|223618|223619|223620|223622|223623|223624|223625|223626|223628|223630|223631|223632|223634|223635|223636|223638|223640|223641|223642|223644|223645|223646|223647|223648|223649|223650|223652|223654|223655|223656|223657|254136|254993|273131|274286|313856|313857|313862|313863|313867|313872|313873|313874|313877|313885|313886|313888|313889|320061|320069|320071|320080|320084|320087|320102|320108|320111|320114|320134|320135|320138|320142|320143|320145|320146|320147|320163|320166|320167|320197|320198|320746|320750|320757|320760|320761|326222|326244|326245|326246|326248|326251|326252|326255|326256|326257|326258|326270|326272|326273|326276|326277|327197|327203|327206|327207|327214|327222|327223|327224|327241|327242|327259|327263|327273|327276|327282|327283|329585|329589|329597|329598|329623|329626|331967|336213|336214|336218|338110|338117|338126|347551|347555|347559|348927|431507|439068|464179|512941|568146|612908|642521|642522|652322|652873|693514|714179|791415|841561|841562|841563|841564|841565|867820|867821|867822|867823|867824|867825|867826|867827|867828|867829|867830|867831|867832|867833|867834|867835|867836|867837|867838|867839|867840|867841|867842|867843|867844|867845|867846|867847|867848|867849|867850|867851|867852|867853|867854|867855|867856|867857|867858|867859|871971|871972|871973|871974|871975|871976|871977|871978|871979|871980|871981|871982|927105|936641|936642|948590|948591|957240", + "upstreamId": "133389|138836|138849|177907|193750|195485|215434|223603|223605|223606|223607|223608|223609|223610|223611|223612|223613|223614|223615|223616|223617|223618|223619|223620|223622|223623|223624|223625|223626|223628|223630|223631|223632|223634|223635|223636|223638|223640|223641|223642|223644|223645|223646|223647|223648|223649|223650|223652|223654|223655|223656|223657|254136|254993|273131|274286|313856|313857|313862|313863|313867|313872|313873|313874|313877|313885|313886|313888|313889|320061|320069|320071|320080|320084|320087|320102|320108|320111|320114|320134|320135|320138|320142|320143|320145|320146|320147|320163|320166|320167|320197|320198|320746|320750|320757|320760|320761|326222|326244|326245|326246|326248|326251|326252|326255|326256|326257|326258|326270|326272|326273|326276|326277|327197|327203|327206|327207|327214|327222|327223|327224|327241|327242|327259|327263|327273|327276|327282|327283|329585|329589|329597|329598|329623|329626|331967|336213|336214|336218|338110|338117|338126|347551|347555|347559|348927|431507|439068|464179|512941|568146|612908|642521|642522|652322|652873|693514|714179|791415|841561|841562|841563|841564|841565|867820|867821|867822|867823|867824|867825|867826|867827|867828|867829|867830|867831|867832|867833|867834|867835|867836|867837|867838|867839|867840|867841|867842|867843|867844|867845|867846|867847|867848|867849|867850|867851|867852|867853|867854|867855|867856|867857|867858|867859|871971|871972|871973|871974|871975|871976|871977|871978|871979|871980|871981|871982|927105|936641|936642|948590|948591|957240", "text": "Anophthalmia-microphthalmia syndrome" }, { - "baseId": "133390|227046|227047|227048|227051|227052|227054|227055|227058|320697|329500|329501|329502|336096|336097|336106|336109|336135|338009|338016|338023|970271|970321", + "upstreamId": "133390|227046|227047|227048|227051|227052|227054|227055|227058|320697|329500|329501|329502|336096|336097|336106|336109|336135|338009|338016|338023|970271|970321", "text": "Orofacial cleft" }, { - "baseId": "133391|133400|590610|609036|609079|677241|974932", + "upstreamId": "133391|133400|590610|609036|609079|677241|974932", "text": "Oligodontia" }, { - "baseId": "133431|476220|801188", + "upstreamId": "133431|476220|801188", "text": "Depressivity" }, { - "baseId": "133488|133495|478800|478922|478937", + "upstreamId": "133488|133495|478800|478922|478937", "text": "Prostate cancer, hereditary, 9" }, { - "baseId": "133499", + "upstreamId": "133499", "text": "Leiomyosarcoma" }, { - "baseId": "133499|470586|590073", + "upstreamId": "133499|470586|590073", "text": "Inflammation of the large intestine" }, { - "baseId": "133499|470586|590073", + "upstreamId": "133499|470586|590073", "text": "Hematochezia" }, { - "baseId": "133499|470586|590073|977163|977164|977313|977314|977316", + "upstreamId": "133499|470586|590073|977163|977164|977313|977314|977316", "text": "Colitis" }, { - "baseId": "133593|214804|214805", + "upstreamId": "133593|214804|214805", "text": "Triple-negative breast cancer" }, { - "baseId": "133658|152476|467801", + "upstreamId": "133658|152476|467801", "text": "Hereditary site-specific ovarian cancer syndrome" }, { - "baseId": "133667|150563", + "upstreamId": "133667|150563", "text": "RAD51C-Related Disorders" }, { - "baseId": "133687|133688|133689|133690|242183|242184|264906|401052|439469|465383|538448|538612|589805|643756|688520|754812|816481|842943|842944|842945|904258|927514|949120|957574", + "upstreamId": "133687|133688|133689|133690|242183|242184|264906|401052|439469|465383|538448|538612|589805|643756|688520|754812|816481|842943|842944|842945|904258|927514|949120|957574", "text": "Congenital heart defects, multiple types, 4" }, { - "baseId": "133696|133697|133698|801541", + "upstreamId": "133696|133697|133698|801541", "text": "Retinitis pigmentosa 69" }, { - "baseId": "133699|801126|801127", + "upstreamId": "133699|801126|801127", "text": "Congenital lactic acidosis" }, { - "baseId": "133709|133710|427722", + "upstreamId": "133709|133710|427722", "text": "Nemaline myopathy 3, autosomal dominant or recessive" }, { - "baseId": "133722|133724|140000|140002|140008|140290|140291|140292|140293|140296|140297|171737|171767|210625|210635|211434|211440|211441|211443|264339|264446|265652|279404|279416|279417|279418|279653|279654|279673|279677|279683|279702|279707|280918|280926|280931|280932|280933|280934|281064|281074|281076|281088|281089|281092|281094|281095|281105|290322|290351|294447|294852|294944|309183|309185|309188|309197|309201|309206|309208|309210|309213|309215|309219|309222|309226|309227|313903|313906|313908|313916|314804|319783|319784|319785|319786|319787|319794|319796|319797|319807|319812|319813|319819|319821|319822|320320|320327|320331|320332|320334|320336|321710|327636|328699|328731|330959|330996|337760|353096|371494|415211|502732|620340|620415|654425|865239|865240|865241|865242|865243|865244|865245|865246|865247|865248|865249|865250|865251|865252|865253|865254|865255|865256|865257|865258", + "upstreamId": "133722|133724|140000|140002|140008|140290|140291|140292|140293|140296|140297|171737|171767|210625|210635|211434|211440|211441|211443|264339|264446|265652|279404|279416|279417|279418|279653|279654|279673|279677|279683|279702|279707|280918|280926|280931|280932|280933|280934|281064|281074|281076|281088|281089|281092|281094|281095|281105|290322|290351|294447|294852|294944|309183|309185|309188|309197|309201|309206|309208|309210|309213|309215|309219|309222|309226|309227|313903|313906|313908|313916|314804|319783|319784|319785|319786|319787|319794|319796|319797|319807|319812|319813|319819|319821|319822|320320|320327|320331|320332|320334|320336|321710|327636|328699|328731|330959|330996|337760|353096|371494|415211|502732|620340|620415|654425|865239|865240|865241|865242|865243|865244|865245|865246|865247|865248|865249|865250|865251|865252|865253|865254|865255|865256|865257|865258", "text": "Autosomal recessive cerebellar ataxia" }, { - "baseId": "133723|139997|140001|140005|210635|210646|279405|279408|279409|279410|279414|279653|279657|279714|279715|280919|280920|280930|280933|280934|280935|280949|280950|280952|281067|281075|281087|281094|281096|281105|353096", + "upstreamId": "133723|139997|140001|140005|210635|210646|279405|279408|279409|279410|279414|279653|279657|279714|279715|280919|280920|280930|280933|280934|280935|280949|280950|280952|281067|281075|281087|281094|281096|281105|353096", "text": "Coenzyme Q10 deficiency, Spinocerebellar Ataxia Type" }, { - "baseId": "133851|465261|539061|919581|919582", + "upstreamId": "133851|465261|539061|919581|919582", "text": "Stuttering, familial persistent 1" }, { - "baseId": "133912|133913|133916|133918|133918|133921|133923|133925|191276|206728|206730|249528|249529|277309|277326|277331|277511|277512|277520|277530|277544|277547|277550|277554|278381|278382|278390|278392|278393|278410|278413|278414|361791|361792|361793|361794|361795|364534|437799|447270|447277|447278|447279|447369|447410|447418|447421|447430|447466|447469|447471|447476|447484|492028|515262|515264|515265|515274|515276|515306|515315|515351|515352|515354|536569|537080|549502|556682|556684|556686|556688|556737|556739|556741|557034|557036|557038|558222|558224|558226|558228|558230|558232|558234|576078|576438|576441|578778|578784|578790|578793|578794|578803|578804|578811|584195|614196|614197|614198|614199|614200|627059|627060|627061|627062|627063|627064|627065|627066|627067|627068|627069|627070|627071|627072|627073|627074|627075|627076|650536|650592|690409|690412|690415|695016|695017|695019|696253|696254|696256|718381|729937|731862|794490|822980|822981|822982|822983|822984|822985|822986|822987|822988|822989|822990|822991|822992|851237|858872|861588|861603|862772|921739|921740|921741|930152|930153|930154|930155|941568|941569|941570|941571|941572|952138|952139|970664", + "upstreamId": "133912|133913|133916|133918|133918|133921|133923|133925|191276|206728|206730|249528|249529|277309|277326|277331|277511|277512|277520|277530|277544|277547|277550|277554|278381|278382|278390|278392|278393|278410|278413|278414|361791|361792|361793|361794|361795|364534|437799|447270|447277|447278|447279|447369|447410|447418|447421|447430|447466|447469|447471|447476|447484|492028|515262|515264|515265|515274|515276|515306|515315|515351|515352|515354|536569|537080|549502|556682|556684|556686|556688|556737|556739|556741|557034|557036|557038|558222|558224|558226|558228|558230|558232|558234|576078|576438|576441|578778|578784|578790|578793|578794|578803|578804|578811|584195|614196|614197|614198|614199|614200|627059|627060|627061|627062|627063|627064|627065|627066|627067|627068|627069|627070|627071|627072|627073|627074|627075|627076|650536|650592|690409|690412|690415|695016|695017|695019|696253|696254|696256|718381|729937|731862|794490|822980|822981|822982|822983|822984|822985|822986|822987|822988|822989|822990|822991|822992|851237|858872|861588|861603|862772|921739|921740|921741|930152|930153|930154|930155|941568|941569|941570|941571|941572|952138|952139|970664", "text": "Spastic paraplegia 78, autosomal recessive" }, { - "baseId": "134067|153138|214797|248716|248717|248718|248720|248721|248722|248723|248725|248726", + "upstreamId": "134067|153138|214797|248716|248717|248718|248720|248721|248722|248723|248725|248726", "text": "Smith-Magenis Syndrome-like" }, { - "baseId": "134329|247629|247631|481312|481313|788839|802172|964839|964840|969252|973028", + "upstreamId": "134329|247629|247631|481312|481313|788839|802172|964839|964840|969252|973028", "text": "Spinocerebellar ataxia, autosomal recessive 17" }, { - "baseId": "134370|134371|134374|134375|134376|134377|134378|134379|134380|134382|134383|134384|134385|134386|134387|134388|134389|134390|134391|134744|134745|134746|134747|134748|134749|134750|135818|135819|191403|191807|192104|192643|192971|194228|194619|195513|208055|208056|208057|208058|208060|208062|208063|208065|208080|208083|211852|241764|241769|241770|241772|241773|241774|241775|241776|244872|244875|244877|244885|269783|270736|271447|273633|273697|290468|290473|290676|290677|290678|290681|290682|290705|290713|290716|290717|290722|290723|290724|290730|290769|290777|290850|290852|290853|290857|290859|290864|290874|290876|290881|290883|290884|290898|290921|290929|290930|290935|291359|291366|291368|291370|291610|291612|291613|291614|291616|291631|291634|291637|291638|291659|291690|291804|291819|291822|291824|291825|291826|291829|291831|291842|291843|291844|291860|291861|291867|291869|294596|294788|294791|294792|294798|294804|294809|294834|294841|294849|294851|294858|294870|294881|294913|294987|294990|294996|294998|295004|295006|295010|295014|295017|295018|295019|295031|295035|295090|295092|295133|295134|295145|295146|295184|295194|295195|295201|295212|295213|295214|295216|295219|295220|295221|295244|295247|295250|295278|295360|295364|295365|295367|295387|295390|295391|295403|295440|295442|295444|295448|295449|295450|295452|295454|295458|295460|314745|314758|314765|314766|314768|314769|314773|314777|314784|314785|314786|314790|314793|314796|314797|314801|314803|314804|314810|314812|314814|318796|318797|318808|320125|320127|320129|320133|320136|320139|320141|320150|320151|320152|320153|320157|320169|320170|320171|320175|320177|320179|320180|320185|320188|320192|320194|321466|321471|321474|321475|321487|321496|321497|321499|321503|321514|321516|321517|321519|321524|321528|321543|321546|322533|327154|327155|327156|327175|327601|327602|327604|327605|327608|327615|327618|327627|327628|327630|327631|327633|327634|327636|327638|327641|327643|327644|327646|327648|327650|328661|328671|328674|328678|328687|328689|328693|328694|328698|328701|328702|328706|328711|328715|328719|328720|328722|328723|328724|328725|328727|328728|328729|328730|328731|328733|328735|328738|328742|328743|328745|331889|333294|333300|333302|334858|334880|334982|335003|335012|335014|335029|335329|335332|335333|335337|335339|335340|335347|335351|335352|335353|335354|335355|337184|337203|337208|337210|337211|337213|337220|337222|337241|337247|337249|340964|340967|344752|344754|347879|349344|349709|349717|349719|350354|350701|350714|353320|353476|353477|360956|372921|372953|373589|373596|373963|373973|375800|375814|375821|399527|440800|440809|440811|440812|440820|441640|463468|463518|463781|463784|494949|504329|504375|504609|504899|504900|504903|527926|528406|572635|576738|576742|576760|577345|656218|656223|667162|684426|688189|708880|720472|720473|734086|739119|748286|763917|776244|793015|793016|793021|822094|841049|871609|871610|871611|871612|871613|871614|871615|871616|871617|871618|871619|871620|871621|871622|871623|871624|871625|871626|871627|871628|871629|871630|871631|871632|871633|871634|871635|871636|871637|871638|871639|871640|871641|871642|871643|871644|872350|872351|872352|888973|888974|888975|888976|889096|889097|889098|889099|889100|889101|889117|889118|889119|889120|889121|889122|889123|889124|889143|889144|889177|889223|889224|889225|889226|889227|889228|889229|889230|889231|889232|889233|889234|889235|889236|889242|889243|889244|889245|889246|889247|889248|889249|889250|889251|889252|891654|891655|891656|891657|891658|891659|891660|891661|891662|891673", + "upstreamId": "134370|134371|134374|134375|134376|134377|134378|134379|134380|134382|134383|134384|134385|134386|134387|134388|134389|134390|134391|134744|134745|134746|134747|134748|134749|134750|135818|135819|191403|191807|192104|192643|192971|194228|194619|195513|208055|208056|208057|208058|208060|208062|208063|208065|208080|208083|211852|241764|241769|241770|241772|241773|241774|241775|241776|244872|244875|244877|244885|269783|270736|271447|273633|273697|290468|290473|290676|290677|290678|290681|290682|290705|290713|290716|290717|290722|290723|290724|290730|290769|290777|290850|290852|290853|290857|290859|290864|290874|290876|290881|290883|290884|290898|290921|290929|290930|290935|291359|291366|291368|291370|291610|291612|291613|291614|291616|291631|291634|291637|291638|291659|291690|291804|291819|291822|291824|291825|291826|291829|291831|291842|291843|291844|291860|291861|291867|291869|294596|294788|294791|294792|294798|294804|294809|294834|294841|294849|294851|294858|294870|294881|294913|294987|294990|294996|294998|295004|295006|295010|295014|295017|295018|295019|295031|295035|295090|295092|295133|295134|295145|295146|295184|295194|295195|295201|295212|295213|295214|295216|295219|295220|295221|295244|295247|295250|295278|295360|295364|295365|295367|295387|295390|295391|295403|295440|295442|295444|295448|295449|295450|295452|295454|295458|295460|314745|314758|314765|314766|314768|314769|314773|314777|314784|314785|314786|314790|314793|314796|314797|314801|314803|314804|314810|314812|314814|318796|318797|318808|320125|320127|320129|320133|320136|320139|320141|320150|320151|320152|320153|320157|320169|320170|320171|320175|320177|320179|320180|320185|320188|320192|320194|321466|321471|321474|321475|321487|321496|321497|321499|321503|321514|321516|321517|321519|321524|321528|321543|321546|322533|327154|327155|327156|327175|327601|327602|327604|327605|327608|327615|327618|327627|327628|327630|327631|327633|327634|327636|327638|327641|327643|327644|327646|327648|327650|328661|328671|328674|328678|328687|328689|328693|328694|328698|328701|328702|328706|328711|328715|328719|328720|328722|328723|328724|328725|328727|328728|328729|328730|328731|328733|328735|328738|328742|328743|328745|331889|333294|333300|333302|334858|334880|334982|335003|335012|335014|335029|335329|335332|335333|335337|335339|335340|335347|335351|335352|335353|335354|335355|337184|337203|337208|337210|337211|337213|337220|337222|337241|337247|337249|340964|340967|344752|344754|347879|349344|349709|349717|349719|350354|350701|350714|353320|353476|353477|360956|372921|372953|373589|373596|373963|373973|375800|375814|375821|399527|440800|440809|440811|440812|440820|441640|463468|463518|463781|463784|494949|504329|504375|504609|504899|504900|504903|527926|528406|572635|576738|576742|576760|577345|656218|656223|667162|684426|688189|708880|720472|720473|734086|739119|748286|763917|776244|793015|793016|793021|822094|841049|871609|871610|871611|871612|871613|871614|871615|871616|871617|871618|871619|871620|871621|871622|871623|871624|871625|871626|871627|871628|871629|871630|871631|871632|871633|871634|871635|871636|871637|871638|871639|871640|871641|871642|871643|871644|872350|872351|872352|888973|888974|888975|888976|889096|889097|889098|889099|889100|889101|889117|889118|889119|889120|889121|889122|889123|889124|889143|889144|889177|889223|889224|889225|889226|889227|889228|889229|889230|889231|889232|889233|889234|889235|889236|889242|889243|889244|889245|889246|889247|889248|889249|889250|889251|889252|891654|891655|891656|891657|891658|891659|891660|891661|891662|891673", "text": "Autosomal dominant cerebellar ataxia" }, { - "baseId": "134459|134460|134461|134462|134463|134464|134465|134466|187995|188003|188007|191753|193374|237323|247041|271456|310384|310391|310392|310405|310413|310414|310463|315483|315490|315526|315555|321491|321510|321549|321588|322273|322279|322288|322302|322309|322331", + "upstreamId": "134459|134460|134461|134462|134463|134464|134465|134466|187995|188003|188007|191753|193374|237323|247041|271456|310384|310391|310392|310405|310413|310414|310463|315483|315490|315526|315555|321491|321510|321549|321588|322273|322279|322288|322302|322309|322331", "text": "COFS syndrome" }, { - "baseId": "134655|134656|134657|134658|134659|440927|614542|806437|973086", + "upstreamId": "134655|134656|134657|134658|134659|440927|614542|806437|973086", "text": "Spinocerebellar ataxia, autosomal recessive 13" }, { - "baseId": "134685|206704|253897|276016|276066|276120|276123|276126|276148|276158|276161|276168|276342|276343|306342|306348|317077|317092|323092|323668|323700|335448|335486|335509|335512|335513|335524|345258|345295|345298|349979|349993|350002|350003|350004|351012|351014|351015|351017|351019|351023", + "upstreamId": "134685|206704|253897|276016|276066|276120|276123|276126|276148|276158|276161|276168|276342|276343|306342|306348|317077|317092|323092|323668|323700|335448|335486|335509|335512|335513|335524|345258|345295|345298|349979|349993|350002|350003|350004|351012|351014|351015|351017|351019|351023", "text": "Hyperinsulinism, Dominant" }, { - "baseId": "134822|134823|186088|192927|212626|221753|273689|304117|304124|307707|307719|307730|307735|307738|312746|312877|312886|361439|369691|371499|395886|396284|425775|457807|457808|486611|489373|522984|567360|636578|683972|683974|683975|683976|685233|685234|685236|687181|687182|692345|722840|782989|796116|819944|834108|834109|834110|834111|834112|834113|925008|925009|925010|925011|934087|934088|945849|955287", + "upstreamId": "134822|134823|186088|192927|212626|221753|273689|304117|304124|307707|307719|307730|307735|307738|312746|312877|312886|361439|369691|371499|395886|396284|425775|457807|457808|486611|489373|522984|567360|636578|683972|683974|683975|683976|685233|685234|685236|687181|687182|692345|722840|782989|796116|819944|834108|834109|834110|834111|834112|834113|925008|925009|925010|925011|934087|934088|945849|955287", "text": "Ritscher-Schinzel syndrome" }, { - "baseId": "134861|417075|417076|417077", + "upstreamId": "134861|417075|417076|417077", "text": "Scoliosis, isolated, susceptibility to, 1" }, { - "baseId": "135260|204050|204058|204060|205063|205064|205065|205066|225830|225859|227709|227710|265017|361243|362167|362168|362169|411341|411343|422478|431935|431936|446655|495899|512673|513483|535712|538512|550376|550377|611947|621036|622493|625834|653902|653903|653904|654144|677469|682836|792450|792451|792452|798813|798814|861019|861021|861022|861023|920023|920024|920025|963971|963972|963973|964609|964610|964611|964902|966025|975877|976686|977374|980557", + "upstreamId": "135260|204050|204058|204060|205063|205064|205065|205066|225830|225859|227709|227710|265017|361243|362167|362168|362169|411341|411343|422478|431935|431936|446655|495899|512673|513483|535712|538512|550376|550377|611947|621036|622493|625834|653902|653903|653904|654144|677469|682836|792450|792451|792452|798813|798814|861019|861021|861022|861023|920023|920024|920025|963971|963972|963973|964609|964610|964611|964902|966025|975877|976686|977374|980557", "text": "Mental retardation, X-linked 102" }, { - "baseId": "135345|135347|135348|135349|135350|135354|135355|135356|135358|135360|135363|257446|315309|315310|322157|322158|329503|329528|329543|329552|336425|336432|336446|336457|336462|346145|346164|346165|346167|346171|346174|350463|350466|350478|350481|351516|351519|351522|351533|351538|351539|353587", + "upstreamId": "135345|135347|135348|135349|135350|135354|135355|135356|135358|135360|135363|257446|315309|315310|322157|322158|329503|329528|329543|329552|336425|336432|336446|336457|336462|346145|346164|346165|346167|346171|346174|350463|350466|350478|350481|351516|351519|351522|351533|351538|351539|353587", "text": "Early Infantile Epileptic Encephalopathy, Autosomal Recessive" }, { - "baseId": "135440|236995|237246", + "upstreamId": "135440|236995|237246", "text": "EEG abnormality" }, { - "baseId": "135489|135493|136058|136059|136060|136061|136063|136067|136068|136070|136071|136075|136076|136077|136078|136080|136081|136082|136084|136085|136086|136088|207507|207520|207521|207522|207524|207526|292124|292126|296847|296865|296883|297972|297982|300127|300148|300176|300177|300181|304384|304385|304392|304393|304421|304427|304431|304440|304444|304452|304454|304455|304715|304717|304719|308148|308150|308153|308154|308162|308168|308175|308181|308192|308202|308207|308208|311944|313174|313176|313180|313181|313204|313212|313230|313231|313259|313260|313266|313273|313274|313275|313276|313287|313289|313290|313310|313318|313319|313321|313324|317624|318067|353664|353853", + "upstreamId": "135489|135493|136058|136059|136060|136061|136063|136067|136068|136070|136071|136075|136076|136077|136078|136080|136081|136082|136084|136085|136086|136088|207507|207520|207521|207522|207524|207526|292124|292126|296847|296865|296883|297972|297982|300127|300148|300176|300177|300181|304384|304385|304392|304393|304421|304427|304431|304440|304444|304452|304454|304455|304715|304717|304719|308148|308150|308153|308154|308162|308168|308175|308181|308192|308202|308207|308208|311944|313174|313176|313180|313181|313204|313212|313230|313231|313259|313260|313266|313273|313274|313275|313276|313287|313289|313290|313310|313318|313319|313321|313324|317624|318067|353664|353853", "text": "Intellectual Disability, Recessive" }, { - "baseId": "135500|788841", + "upstreamId": "135500|788841", "text": "Pancreatic agenesis 2" }, { - "baseId": "135506|135513|279278|279286|279295|279301|279343|279491|279493|279494|279509|279534|279535|280795|280799|280804|280813|280845|280860|280873|280874|280875|280878|280923|280958|281836|281837|281838|284108|284129|284307|310250|315334|315350|315390|321364|321996|322000|322047|322051|353539", + "upstreamId": "135506|135513|279278|279286|279295|279301|279343|279491|279493|279494|279509|279534|279535|280795|280799|280804|280813|280845|280860|280873|280874|280875|280878|280923|280958|281836|281837|281838|284108|284129|284307|310250|315334|315350|315390|321364|321996|322000|322047|322051|353539", "text": "Warburg micro syndrome" }, { - "baseId": "135641|217210|217211|217212|217213|552213|553352|919805|919806|966005", + "upstreamId": "135641|217210|217211|217212|217213|552213|553352|919805|919806|966005", "text": "Microcephaly, short stature, and polymicrogyria with or without seizures" }, { - "baseId": "135699|139369|202181|202713|205018|247612|274242|408707|429438|538432|571890|614378|677439|677440", + "upstreamId": "135699|139369|202181|202713|205018|247612|274242|408707|429438|538432|571890|614378|677439|677440", "text": "Seizures, benign familial infantile, 5" }, { - "baseId": "135764|135765|135766|265447|277092|277098|277101|277102|277109|277129|277131|277132|277134|277142|277367|277368|277371|277386|277388|277391|277392|277399|277400|277407|277414|278152|278186|278187|278202|278207|278216|278218|278225|278230|278232|278233|278234|278245|278255|434561", + "upstreamId": "135764|135765|135766|265447|277092|277098|277101|277102|277109|277129|277131|277132|277134|277142|277367|277368|277371|277386|277388|277391|277392|277399|277400|277407|277414|278152|278186|278187|278202|278207|278216|278218|278225|278230|278232|278233|278234|278245|278255|434561", "text": "Thiamine-responsive megaloblastic anemia" }, { - "baseId": "135802|377861|422425|649762|649770|684964|778515|849730|980090", + "upstreamId": "135802|377861|422425|649762|649770|684964|778515|849730|980090", "text": "Creatine deficiency syndrome 1" }, { - "baseId": "136004|512821|553248|622363", + "upstreamId": "136004|512821|553248|622363", "text": "Spinocerebellar ataxia type 17" }, { - "baseId": "136063|963646", + "upstreamId": "136063|963646", "text": "Intellectual disability-obesity-brain malformations-facial dysmorphism syndrome" }, { - "baseId": "136139|136140|141576|141581|141582|141583|142784|142785|142787|142788|142789|142790|142791|211976|338584|348160|348167|348169|351827|351828|351830|351831|351832|352680|352681", + "upstreamId": "136139|136140|141576|141581|141582|141583|142784|142785|142787|142788|142789|142790|142791|211976|338584|348160|348167|348169|351827|351828|351830|351831|351832|352680|352681", "text": "Fatal Infantile Cardioencephalomyopathy" }, { - "baseId": "136364|513893", + "upstreamId": "136364|513893", "text": "Chronic pancreatitis" }, { - "baseId": "136391", + "upstreamId": "136391", "text": "Mitochondrial complex 1 deficiency, nuclear type 28" }, { - "baseId": "136399", + "upstreamId": "136399", "text": "Hearing loss, noise-induced, susceptibility to" }, { - "baseId": "136450|139869|339313|345189|345477|345487|345517", + "upstreamId": "136450|139869|339313|345189|345477|345487|345517", "text": "Breast and Ovarian Cancer Susceptibility" }, { - "baseId": "136501|138844|186099|186108|186113|209861|212720|221873|221902|240679|240690|397026|397440|397495|397507|448122|448169|455980|474983|475013|515929|524729|525191|525316|558529|563347|564225|564311|564323|809550|918641|919242|919243|919244|919245|919246|920213|970914", + "upstreamId": "136501|138844|186099|186108|186113|209861|212720|221873|221902|240679|240690|397026|397440|397495|397507|448122|448169|455980|474983|475013|515929|524729|525191|525316|558529|563347|564225|564311|564323|809550|918641|919242|919243|919244|919245|919246|920213|970914", "text": "BCC1" }, { - "baseId": "136541|136542|488150", + "upstreamId": "136541|136542|488150", "text": "Abdominal obesity-metabolic syndrome 3" }, { - "baseId": "136546|136547|136548|136549|136550|136551|136552|136554|166181|166358|178786|215005|215006|215007|215008|259620|259621|353891|418808|431535|486696|486697|608840|653854|682114|682115|682211|790294|798512|806410|806411|861037|961422|961423|961424|961425|980840", + "upstreamId": "136546|136547|136548|136549|136550|136551|136552|136554|166181|166358|178786|215005|215006|215007|215008|259620|259621|353891|418808|431535|486696|486697|608840|653854|682114|682115|682211|790294|798512|806410|806411|861037|961422|961423|961424|961425|980840", "text": "Visceral myopathy" }, { - "baseId": "136546|136551|136552|136552|205237|214167|616000", + "upstreamId": "136546|136551|136552|136552|205237|214167|616000", "text": "Chronic intestinal pseudoobstruction" }, { - "baseId": "136551|136552", + "upstreamId": "136551|136552", "text": "Visceral neuropathy, familial, autosomal dominant" }, { - "baseId": "136552|205237", + "upstreamId": "136552|205237", "text": "Megacystis" }, { - "baseId": "136558|136559|136560|136561|136562|206698|206699|227578|427611|446977|446979|447032|447035|447040|481335|514964|514980|556546|556579|556972|626091|626568|626569|626570|690323|690324|690328|690329|690331|690332|690333|694998|731561|798911|802116|822491|822492|921562|921563|929947|929948|941364|941365|952008|963345|963346", + "upstreamId": "136558|136559|136560|136561|136562|206698|206699|227578|427611|446977|446979|447032|447035|447040|481335|514964|514980|556546|556579|556972|626091|626568|626569|626570|690323|690324|690328|690329|690331|690332|690333|694998|731561|798911|802116|822491|822492|921562|921563|929947|929948|941364|941365|952008|963345|963346", "text": "Pontocerebellar hypoplasia, type 9" }, { - "baseId": "136583", + "upstreamId": "136583", "text": "Atrophoderma vermiculatum" }, { - "baseId": "136583|918498", + "upstreamId": "136583|918498", "text": "Keratosis pilaris" }, { - "baseId": "136587", + "upstreamId": "136587", "text": "Pyloric stenosis, infantile hypertrophic, 5" }, { - "baseId": "136739", + "upstreamId": "136739", "text": "Multiminicore/minicore/multicore disease" }, { - "baseId": "136760|353882|360892|361048|677243|980754", + "upstreamId": "136760|353882|360892|361048|677243|980754", "text": "Proximal muscle weakness" }, { - "baseId": "136760|361048|625198", + "upstreamId": "136760|361048|625198", "text": "Pelvic girdle muscle weakness" }, { - "baseId": "137030|137031|137032|137033|262391|362364|408455|424898|430956|430957|430958|577194|583112|791163|791167|791168|904173|904174|904175|904176|964121|964367|964369|970944", + "upstreamId": "137030|137031|137032|137033|262391|362364|408455|424898|430956|430957|430958|577194|583112|791163|791167|791168|904173|904174|904175|904176|964121|964367|964369|970944", "text": "Mental retardation, autosomal dominant 24" }, { - "baseId": "137034", + "upstreamId": "137034", "text": "Mitochondrial complex III deficiency, nuclear type 7" }, { - "baseId": "137035|683215|683216", + "upstreamId": "137035|683215|683216", "text": "Mental retardation, autosomal recessive 43" }, { - "baseId": "137053|137054|137055|137056|137057|137058|150445|150447|150448|226663|226664|247006|406937|438747|456104|456106|456440|456445|456452|456806|496877|521872|521875|522237|522243|522248|522272|561022|561123|563827|614307|614308|614309|635314|635315|635316|635317|635318|635319|635320|635321|635322|651683|651685|722155|730437|735788|735789|744153|744157|744290|750248|765889|765890|765891|782676|832590|832591|832592|832593|832594|832595|852042|852311|924522|933531|933532|933533|933534|933535|933536|933537|940052|945253|945254|954931|954932|954933|954934|959821", + "upstreamId": "137053|137054|137055|137056|137057|137058|150445|150447|150448|226663|226664|247006|406937|438747|456104|456106|456440|456445|456452|456806|496877|521872|521875|522237|522243|522248|522272|561022|561123|563827|614307|614308|614309|635314|635315|635316|635317|635318|635319|635320|635321|635322|651683|651685|722155|730437|735788|735789|744153|744157|744290|750248|765889|765890|765891|782676|832590|832591|832592|832593|832594|832595|852042|852311|924522|933531|933532|933533|933534|933535|933536|933537|940052|945253|945254|954931|954932|954933|954934|959821", "text": "Immunodeficiency 23" }, { - "baseId": "137063|137064|137065|260851|424625|424889|431902|481334|488151|536229|536230|538335|538946|550347|550348|576253|578382|621017|626107|654115|696668|788737|789961|789962|789963|798470|802121|805074|815977|918630|963487|964110|969277|969278|970165|975935|977175", + "upstreamId": "137063|137064|137065|260851|424625|424889|431902|481334|488151|536229|536230|538335|538946|550347|550348|576253|578382|621017|626107|654115|696668|788737|789961|789962|789963|798470|802121|805074|815977|918630|963487|964110|969277|969278|970165|975935|977175", "text": "Xia-Gibbs syndrome" }, { - "baseId": "137063|137063|137064|137064|137065|137065", + "upstreamId": "137063|137063|137064|137064|137065|137065", "text": "Sleep apnea" }, { - "baseId": "137063|137064|137065|166182|166183|166184|166185|166186|166187|166188|166189|166190|166191|166192|360874|514192|514215|682760", + "upstreamId": "137063|137064|137065|166182|166183|166184|166185|166186|166187|166188|166189|166190|166191|166192|360874|514192|514215|682760", "text": "Neonatal hypotonia" }, { - "baseId": "137078|462491|462492|462754|463223|463233|527350|527373|527376|527379|527889|567066|641395|641396|641397|702520|713761|738881|769319|820521|840299|840300|917818|936273|936274|956950|956951|956952|956953|964400", + "upstreamId": "137078|462491|462492|462754|463223|463233|527350|527373|527376|527379|527889|567066|641395|641396|641397|702520|713761|738881|769319|820521|840299|840300|917818|936273|936274|956950|956951|956952|956953|964400", "text": "Early infantile epileptic encephalopathy 21" }, { - "baseId": "137082|137083|217219|217220|225875|360894|364064|413748|413749|481792|536739|538395|550181|550361|550790|575490|611414|621025|654130|687091|790751|798589|798590|815988|858740|919110|919111|919112|919113|969327|970863|970864|970865|976654|983796", + "upstreamId": "137082|137083|217219|217220|225875|360894|364064|413748|413749|481792|536739|538395|550181|550361|550790|575490|611414|621025|654130|687091|790751|798589|798590|815988|858740|919110|919111|919112|919113|969327|970863|970864|970865|976654|983796", "text": "Mental retardation, autosomal dominant 26" }, { - "baseId": "137084|407359|457693|457704|457711|458294|458299|458353|458354|458661|510873|523717|523723|523961|523979|532147|532159|562257|567731|614485|637021|683997|687259|834547|834548|834549|955384|980490", + "upstreamId": "137084|407359|457693|457704|457711|458294|458299|458353|458354|458661|510873|523717|523723|523961|523979|532147|532159|562257|567731|614485|637021|683997|687259|834547|834548|834549|955384|980490", "text": "Conotruncal heart malformations" }, { - "baseId": "137086", + "upstreamId": "137086", "text": "Deafness, autosomal recessive 101" }, { - "baseId": "137087|918574", + "upstreamId": "137087|918574", "text": "Giant axonal neuropathy 2, autosomal dominant" }, { - "baseId": "137210|286735|286740|286758|288960|288992|289357", + "upstreamId": "137210|286735|286740|286758|288960|288992|289357", "text": "Neuroblastoma Susceptibility" }, { - "baseId": "137276|473782|550678", + "upstreamId": "137276|473782|550678", "text": "Intrahepatic cholangiocarcinoma" }, { - "baseId": "137297|204041|204042|204043|204044|442508|442509|442510|536197|791234|791235|798654|800919|903591|919434|964850|973030", + "upstreamId": "137297|204041|204042|204043|204044|442508|442509|442510|536197|791234|791235|798654|800919|903591|919434|964850|973030", "text": "Coffin-Siris syndrome 6" }, { - "baseId": "137721|137722|137725|143238|143239|143240|143241|143242|260854|269141|362760|362761|366311|366533|405690|428047|428050|428051|431903|450751|450755|450758|450968|490941|517998|518001|518041|518136|537347|550164|550351|550586|557489|557984|558336|560553|576102|608837|611383|611384|619907|629751|629752|629753|629754|629755|629756|650755|650948|672129|691110|691111|697499|697500|697502|733373|747496|747501|763124|763125|777287|781268|816445|826112|826113|826114|826115|826116|851412|922677|942746|953021|953022|961392|967263|970740|970852", + "upstreamId": "137721|137722|137725|143238|143239|143240|143241|143242|260854|269141|362760|362761|366311|366533|405690|428047|428050|428051|431903|450751|450755|450758|450968|490941|517998|518001|518041|518136|537347|550164|550351|550586|557489|557984|558336|560553|576102|608837|611383|611384|619907|629751|629752|629753|629754|629755|629756|650755|650948|672129|691110|691111|697499|697500|697502|733373|747496|747501|763124|763125|777287|781268|816445|826112|826113|826114|826115|826116|851412|922677|942746|953021|953022|961392|967263|970740|970852", "text": "Tatton-Brown-rahman syndrome" }, { - "baseId": "137834|513900|514100", + "upstreamId": "137834|513900|514100", "text": "Metachromatic leukodystrophy variant" }, { - "baseId": "137841", + "upstreamId": "137841", "text": "Mixed Phenotype Acute Leukemia, T/Myeloid, Not Otherwise Specified" }, { - "baseId": "137841|137849|333821|343775|349081|622466", + "upstreamId": "137841|137849|333821|343775|349081|622466", "text": "ERCC2-Related Disorders" }, { - "baseId": "137939|263045|304087|407292", + "upstreamId": "137939|263045|304087|407292", "text": "Langer-Giedion syndrome" }, { - "baseId": "138100|138105|138106|138109|253530|253535|256038|308234|312615|312633|318533|318542|319067|327107|327109|327113|327134|327136|327140|327141|327148|327149|327153|327168|327169|327171|327178|327179|336998|337004|337010|337016|337018|337021|337022|337024|337027|343231|343246|344838|344841|344844|344849|344850|344853|344857", + "upstreamId": "138100|138105|138106|138109|253530|253535|256038|308234|312615|312633|318533|318542|319067|327107|327109|327113|327134|327136|327140|327141|327148|327149|327153|327168|327169|327171|327178|327179|336998|337004|337010|337016|337018|337021|337022|337024|337027|343231|343246|344838|344841|344844|344849|344850|344853|344857", "text": "Inclusion Body Myopathy, Dominant" }, { - "baseId": "138125|138127|138129|138131|139286|193378|193379|253699|253700|253704|253706|268579|268591|309577|309579|309582|309583|309584|309585|309587|309588|309600|309606|309607|309608|314366|314367|314377|314378|314379|314389|314395|314396|314414|314416|314418|314419|314420|314421|314431|320436|320439|320440|320447|320448|320459|320461|320462|320467|320469|320470|320865|320874|320875|320877|320883|320884|320908|320909|320916|320920|320934|320936|320937|320942|320947|503156|569547|701223|737381|865489|865490|865491|865492|865493|865494|865495|865496|865497|865498|865499|865500|865501|865502|865503|865504|865505|865506|865507|865508|865509|865510|865511|865512|865513|865514|868451|868452|868453", + "upstreamId": "138125|138127|138129|138131|139286|193378|193379|253699|253700|253704|253706|268579|268591|309577|309579|309582|309583|309584|309585|309587|309588|309600|309606|309607|309608|314366|314367|314377|314378|314379|314389|314395|314396|314414|314416|314418|314419|314420|314421|314431|320436|320439|320440|320447|320448|320459|320461|320462|320467|320469|320470|320865|320874|320875|320877|320883|320884|320908|320909|320916|320920|320934|320936|320937|320942|320947|503156|569547|701223|737381|865489|865490|865491|865492|865493|865494|865495|865496|865497|865498|865499|865500|865501|865502|865503|865504|865505|865506|865507|865508|865509|865510|865511|865512|865513|865514|868451|868452|868453", "text": "Isolated coronal synostosis" }, { - "baseId": "138162|235483|247653|327448|402038|422146|467353|488185|530769", + "upstreamId": "138162|235483|247653|327448|402038|422146|467353|488185|530769", "text": "Potocki-Lupski syndrome" }, { - "baseId": "138201|257848|404264|430809|471610|535006|574743|650088|650089|650090|685017|685018|685019|685490|689519|689521|689522|695909|706246|821508|850105|850106|850107|850108|929753|929754|929755|929756|959312|960386", + "upstreamId": "138201|257848|404264|430809|471610|535006|574743|650088|650089|650090|685017|685018|685019|685490|689519|689521|689522|695909|706246|821508|850105|850106|850107|850108|929753|929754|929755|929756|959312|960386", "text": "gene sequencing" }, { - "baseId": "138388|361137", + "upstreamId": "138388|361137", "text": "Lymphedema" }, { - "baseId": "138512|425204|425209|425211|425219|425220|425227|425228", + "upstreamId": "138512|425204|425209|425211|425219|425220|425227|425228", "text": "atypical cerebral palsy" }, { - "baseId": "138646|138646|138649|138650|138651|138653|138657|138658|138659|138660|138660|138662|138665|138666|138667|138668|138669|138670|138671|138672|138673|138674|138676|138677|138678|138679|138680|138681|138683|138684|138688|138689|138690|138691|138692|138693|138694|138695|138696|138697|138698|138699|165580|165811|166009|166010|166011|171045|178597|192031|193301|194075|194471|195730|221062|221063|221064|221065|221066|221067|221068|221069|221070|221071|221807|221808|221809|221810|221811|221812|221813|221814|221815|224367|224368|240533|240534|240535|240536|240537|240538|240539|240540|240541|240542|240543|240544|240546|240547|240548|240549|240550|240551|240552|240553|240554|240555|240556|240557|240558|240559|240560|240561|240563|240564|240565|240566|240567|240568|240569|240570|240571|240572|240573|240574|240575|240576|240577|240578|240579|240580|240582|240583|240584|240585|240586|240587|240588|240589|258550|258553|258554|258556|258556|258559|258559|258561|258563|258564|258566|258567|258568|258569|258570|258572|258573|258575|258576|258577|258578|258581|258583|258583|258584|258586|258587|258588|258591|258592|258593|258594|258595|258597|258600|258602|258610|258610|269796|271889|273957|274161|274162|359915|359922|363225|363772|370197|370211|370217|370222|370271|370274|370278|370279|370735|370746|370751|370754|370775|370792|370795|371076|371092|371102|371111|371116|372772|372774|372778|372779|372782|396754|396755|396756|396763|396770|396774|396786|396787|396791|396794|396800|396803|396806|396809|396810|396819|396823|396824|396836|396842|396848|396849|396966|396975|396978|396986|396986|396993|396996|396996|396997|397001|397005|397007|397008|397021|397027|397032|397046|397068|397076|397080|397087|397088|397102|397105|397110|397113|397115|397119|397121|397124|397124|397129|397133|397138|397140|397142|397147|397148|397151|397156|397157|397160|397165|397166|397177|397184|397190|397195|397199|397214|397215|397318|397325|397329|397330|397331|397336|397338|397338|397339|397347|397355|397357|397362|397367|397384|397386|397391|397391|397392|407622|407624|415182|421733|421735|421736|425839|434941|444426|444427|444428|444429|444435|444436|444437|444438|444441|444442|458729|458924|458926|458928|458931|458932|458943|458954|458955|458957|458958|458966|458969|458972|458978|458983|458986|458991|458995|459000|459003|459015|459021|459033|459034|459039|459261|459263|459269|459273|459276|459278|459282|459286|459287|459292|459299|459300|459303|459305|459307|459312|459315|459315|459318|459322|459327|459333|459333|459336|459337|459338|459339|459341|459343|459344|459350|459351|459353|459355|459357|459359|459364|459366|459368|459370|459370|459372|459374|459376|459392|459397|459400|459402|459409|459411|459413|459416|459419|459751|459762|459764|459769|459771|459776|459778|459780|459780|459783|459786|459787|459791|459793|459807|459808|459811|459813|459815|459827|459836|459837|459841|459849|459867|459878|459889|459892|459900|480522|489967|491346|502437|502448|502449|502510|502514|502780|502782|502813|502827|502922|502941|502958|502964|503028|503196|503199|503292|510042|510045|510047|510050|510053|510060|510061|510062|510063|510066|510069|510070|510072|510074|510079|510084|510085|510087|510089|510091|510093|510095|510096|510098|510102|510103|510103|510110|510115|510119|514238|514239|514240|514241|514242|514243|514244|514245|514246|514247|514248|514249|514250|524367|524374|524383|524385|524396|524397|524404|524405|524409|524413|524418|524679|524682|524684|524691|524693|524698|524704|524708|524710|524714|524714|524718|524826|524833|524839|524841|524844|524846|524847|524853|524855|524858|524870|524873|524877|524879|524882|524961|524964|524968|524972|524976|524978|524992|524999|525002|525003|525011|525014|525017|536769|537857|551707|552444|552445|552446|563050|563052|563058|563060|563062|563064|563066|563078|563079|563079|563083|563085|563087|563089|563091|563783|563785|563791|563794|563795|563808|563815|563825|563828|563833|563842|563849|563851|565776|565777|565778|565780|565782|565783|565787|565788|565792|565794|565795|565800|568831|568834|568835|568839|568840|568843|568846|568846|568847|568848|568852|587013|614340|614961|614962|614967|614972|615211|624387|638047|638048|638049|638050|638051|638052|638053|638054|638055|638056|638057|638058|638059|638060|638061|638062|638063|638064|638065|638066|638067|638068|638069|638070|638071|638072|638073|638074|638075|638076|638077|638078|638079|638080|638081|638082|638083|638084|638085|638086|638087|638088|638089|638090|638091|638092|638093|638094|638095|638096|638097|638098|638099|638100|638101|638102|638103|638104|651818|651924|651928|651931|652012|655948|672076|672076|684074|684076|684077|684081|684082|684083|684085|687443|687446|687447|687449|687450|687452|687453|687456|687458|687459|687460|687462|689946|692641|692642|692650|692653|692654|692655|700895|700896|700897|723462|723467|723468|737024|737027|759782|759896|767294|767306|775536|787619|790866|790867|790868|790869|790870|790871|790872|796278|805615|820101|820102|820103|835873|835874|835875|835876|835877|835878|835879|835880|835881|835882|835883|835884|835885|835886|835887|835888|835889|835890|835891|835892|835893|835894|835895|835896|835897|835898|835899|835900|835901|835902|835903|835904|835905|835906|835907|835908|835909|835910|835911|835912|835913|835914|835915|835916|835917|835918|835919|835920|835921|835922|835923|835924|835925|835926|835927|835928|835929|835930|835931|835932|851732|925504|925505|925506|925507|925508|925509|925510|925511|925512|925513|925514|925515|925516|925517|925518|925519|925520|934666|934667|934668|934669|934670|934671|934672|934673|934674|934675|934676|934677|934678|934679|934680|934681|940934|946519|946520|946521|946522|946523|946524|946525|946526|946527|946528|946529|946530|946531|946532|955764|955765|955766|955767|955768|955769|955770|955771|961613", + "upstreamId": "138646|138646|138649|138650|138651|138653|138657|138658|138659|138660|138660|138662|138665|138666|138667|138668|138669|138670|138671|138672|138673|138674|138676|138677|138678|138679|138680|138681|138683|138684|138688|138689|138690|138691|138692|138693|138694|138695|138696|138697|138698|138699|165580|165811|166009|166010|166011|171045|178597|192031|193301|194075|194471|195730|221062|221063|221064|221065|221066|221067|221068|221069|221070|221071|221807|221808|221809|221810|221811|221812|221813|221814|221815|224367|224368|240533|240534|240535|240536|240537|240538|240539|240540|240541|240542|240543|240544|240546|240547|240548|240549|240550|240551|240552|240553|240554|240555|240556|240557|240558|240559|240560|240561|240563|240564|240565|240566|240567|240568|240569|240570|240571|240572|240573|240574|240575|240576|240577|240578|240579|240580|240582|240583|240584|240585|240586|240587|240588|240589|258550|258553|258554|258556|258556|258559|258559|258561|258563|258564|258566|258567|258568|258569|258570|258572|258573|258575|258576|258577|258578|258581|258583|258583|258584|258586|258587|258588|258591|258592|258593|258594|258595|258597|258600|258602|258610|258610|269796|271889|273957|274161|274162|359915|359922|363225|363772|370197|370211|370217|370222|370271|370274|370278|370279|370735|370746|370751|370754|370775|370792|370795|371076|371092|371102|371111|371116|372772|372774|372778|372779|372782|396754|396755|396756|396763|396770|396774|396786|396787|396791|396794|396800|396803|396806|396809|396810|396819|396823|396824|396836|396842|396848|396849|396966|396975|396978|396986|396986|396993|396996|396996|396997|397001|397005|397007|397008|397021|397027|397032|397046|397068|397076|397080|397087|397088|397102|397105|397110|397113|397115|397119|397121|397124|397124|397129|397133|397138|397140|397142|397147|397148|397151|397156|397157|397160|397165|397166|397177|397184|397190|397195|397199|397214|397215|397318|397325|397329|397330|397331|397336|397338|397338|397339|397347|397355|397357|397362|397367|397384|397386|397391|397391|397392|407622|407624|415182|421733|421735|421736|425839|434941|444426|444427|444428|444429|444435|444436|444437|444438|444441|444442|458729|458924|458926|458928|458931|458932|458943|458954|458955|458957|458958|458966|458969|458972|458978|458983|458986|458991|458995|459000|459003|459015|459021|459033|459034|459039|459261|459263|459269|459273|459276|459278|459282|459286|459287|459292|459299|459300|459303|459305|459307|459312|459315|459315|459318|459322|459327|459333|459333|459336|459337|459338|459339|459341|459343|459344|459350|459351|459353|459355|459357|459359|459364|459366|459368|459370|459370|459372|459374|459376|459392|459397|459400|459402|459409|459411|459413|459416|459419|459751|459762|459764|459769|459771|459776|459778|459780|459780|459783|459786|459787|459791|459793|459807|459808|459811|459813|459815|459827|459836|459837|459841|459849|459867|459878|459889|459892|459900|480522|489967|491346|502437|502448|502449|502510|502514|502780|502782|502813|502827|502922|502941|502958|502964|503028|503196|503199|503292|510042|510045|510047|510050|510053|510060|510061|510062|510063|510066|510069|510070|510072|510074|510079|510084|510085|510087|510089|510091|510093|510095|510096|510098|510102|510103|510103|510110|510115|510119|514238|514239|514240|514241|514242|514243|514244|514245|514246|514247|514248|514249|514250|524367|524374|524383|524385|524396|524397|524404|524405|524409|524413|524418|524679|524682|524684|524691|524693|524698|524704|524708|524710|524714|524714|524718|524826|524833|524839|524841|524844|524846|524847|524853|524855|524858|524870|524873|524877|524879|524882|524961|524964|524968|524972|524976|524978|524992|524999|525002|525003|525011|525014|525017|536769|537857|551707|552444|552445|552446|563050|563052|563058|563060|563062|563064|563066|563078|563079|563079|563083|563085|563087|563089|563091|563783|563785|563791|563794|563795|563808|563815|563825|563828|563833|563842|563849|563851|565776|565777|565778|565780|565782|565783|565787|565788|565792|565794|565795|565800|568831|568834|568835|568839|568840|568843|568846|568846|568847|568848|568852|587013|614340|614961|614962|614967|614972|615211|624387|638047|638048|638049|638050|638051|638052|638053|638054|638055|638056|638057|638058|638059|638060|638061|638062|638063|638064|638065|638066|638067|638068|638069|638070|638071|638072|638073|638074|638075|638076|638077|638078|638079|638080|638081|638082|638083|638084|638085|638086|638087|638088|638089|638090|638091|638092|638093|638094|638095|638096|638097|638098|638099|638100|638101|638102|638103|638104|651818|651924|651928|651931|652012|655948|672076|672076|684074|684076|684077|684081|684082|684083|684085|687443|687446|687447|687449|687450|687452|687453|687456|687458|687459|687460|687462|689946|692641|692642|692650|692653|692654|692655|700895|700896|700897|723462|723467|723468|737024|737027|759782|759896|767294|767306|775536|787619|790866|790867|790868|790869|790870|790871|790872|796278|805615|820101|820102|820103|835873|835874|835875|835876|835877|835878|835879|835880|835881|835882|835883|835884|835885|835886|835887|835888|835889|835890|835891|835892|835893|835894|835895|835896|835897|835898|835899|835900|835901|835902|835903|835904|835905|835906|835907|835908|835909|835910|835911|835912|835913|835914|835915|835916|835917|835918|835919|835920|835921|835922|835923|835924|835925|835926|835927|835928|835929|835930|835931|835932|851732|925504|925505|925506|925507|925508|925509|925510|925511|925512|925513|925514|925515|925516|925517|925518|925519|925520|934666|934667|934668|934669|934670|934671|934672|934673|934674|934675|934676|934677|934678|934679|934680|934681|940934|946519|946520|946521|946522|946523|946524|946525|946526|946527|946528|946529|946530|946531|946532|955764|955765|955766|955767|955768|955769|955770|955771|961613", "text": "Adams-Oliver syndrome 5" }, { - "baseId": "138657|210368|359762|360883|361033|400546|429714|510064|551447|551448|551449|551450|551451|551452|551453|551454|551455|551456|551457|551458|581210|581844|614653|971467", + "upstreamId": "138657|210368|359762|360883|361033|400546|429714|510064|551447|551448|551449|551450|551451|551452|551453|551454|551455|551456|551457|551458|581210|581844|614653|971467", "text": "Bicuspid aortic valve" }, { - "baseId": "138674|513183|552173", + "upstreamId": "138674|513183|552173", "text": "Congenital heart defects" }, { - "baseId": "138812|188141|188142|214099|363384|363385|512433|791949|904322|964526", + "upstreamId": "138812|188141|188142|214099|363384|363385|512433|791949|904322|964526", "text": "Mental retardation, autosomal dominant 36" }, { - "baseId": "138939|138942|138943|138944|138946|138948|138949|138950|138953|138954|138956|138958|138959|138960|138961|138963|138966|138967|138969|138970|138972|138976|138978|224672|224673|224674|224675|359475|367600|367600|443465|452450|452455|452459|452463|452464|452466|452467|452472|452476|452480|452487|452666|452673|452677|452692|452698|452701|452703|452704|452711|452718|452720|452725|452727|452728|452737|452748|452749|452752|452755|452759|452762|452777|452779|452781|452789|452791|452991|452993|452999|453000|453002|453005|453009|453012|453019|453024|511494|511497|511498|519321|519332|519343|519347|519348|519350|519354|519355|519356|519361|519362|519368|519503|519514|519516|519528|519530|519533|519539|519540|519542|519549|519556|519558|519566|519572|519574|519576|519578|519590|519597|559008|559010|559012|559014|559526|559530|559532|559534|559536|559538|559540|559542|559544|559546|561605|561606|561609|561616|561617|561619|561624|561627|561629|561636|561638|562975|562997|563008|576752|621022|622330|631462|631463|631464|631465|631466|631467|631468|631469|631470|631471|631472|631473|631474|631475|631476|631477|631478|631479|631480|631481|631482|631483|631484|631485|631486|631487|631488|631489|691426|691427|691428|698127|698128|698129|698130|698132|698133|698135|698136|698137|708888|708890|720485|720486|720487|720488|720493|734093|734094|734096|734100|734101|734102|734104|748304|748305|748310|763923|763924|763926|763927|763928|763934|763936|763941|774833|774986|781688|781689|781691|781692|781693|793025|821891|821892|821893|821894|821895|821896|821897|821898|821899|821900|821901|821902|828191|828192|828193|828194|828195|828196|828197|828198|828199|828200|828201|828202|828203|828204|828205|828206|828207|828208|828209|828210|828211|828212|828213|828214|828215|828216|828217|828218|828219|828220|828221|828222|828223|828224|828225|828226|828227|828228|828229|828230|918833|920195|923224|923225|923226|923227|923228|923229|923230|923231|923232|923233|923234|923235|931966|931967|931968|931969|931970|931971|931972|931973|931974|931975|931976|931977|931978|931979|931980|931981|943572|943573|943574|943575|943576|943577|943578|943579|943580|943581|943582|943583|943584|943585|943586|943587|943588|943589|953500|953501|953502|953503|953504|953505|953506|953507|959699|959700|964224|964817|965619", + "upstreamId": "138939|138942|138943|138944|138946|138948|138949|138950|138953|138954|138956|138958|138959|138960|138961|138963|138966|138967|138969|138970|138972|138976|138978|224672|224673|224674|224675|359475|367600|367600|443465|452450|452455|452459|452463|452464|452466|452467|452472|452476|452480|452487|452666|452673|452677|452692|452698|452701|452703|452704|452711|452718|452720|452725|452727|452728|452737|452748|452749|452752|452755|452759|452762|452777|452779|452781|452789|452791|452991|452993|452999|453000|453002|453005|453009|453012|453019|453024|511494|511497|511498|519321|519332|519343|519347|519348|519350|519354|519355|519356|519361|519362|519368|519503|519514|519516|519528|519530|519533|519539|519540|519542|519549|519556|519558|519566|519572|519574|519576|519578|519590|519597|559008|559010|559012|559014|559526|559530|559532|559534|559536|559538|559540|559542|559544|559546|561605|561606|561609|561616|561617|561619|561624|561627|561629|561636|561638|562975|562997|563008|576752|621022|622330|631462|631463|631464|631465|631466|631467|631468|631469|631470|631471|631472|631473|631474|631475|631476|631477|631478|631479|631480|631481|631482|631483|631484|631485|631486|631487|631488|631489|691426|691427|691428|698127|698128|698129|698130|698132|698133|698135|698136|698137|708888|708890|720485|720486|720487|720488|720493|734093|734094|734096|734100|734101|734102|734104|748304|748305|748310|763923|763924|763926|763927|763928|763934|763936|763941|774833|774986|781688|781689|781691|781692|781693|793025|821891|821892|821893|821894|821895|821896|821897|821898|821899|821900|821901|821902|828191|828192|828193|828194|828195|828196|828197|828198|828199|828200|828201|828202|828203|828204|828205|828206|828207|828208|828209|828210|828211|828212|828213|828214|828215|828216|828217|828218|828219|828220|828221|828222|828223|828224|828225|828226|828227|828228|828229|828230|918833|920195|923224|923225|923226|923227|923228|923229|923230|923231|923232|923233|923234|923235|931966|931967|931968|931969|931970|931971|931972|931973|931974|931975|931976|931977|931978|931979|931980|931981|943572|943573|943574|943575|943576|943577|943578|943579|943580|943581|943582|943583|943584|943585|943586|943587|943588|943589|953500|953501|953502|953503|953504|953505|953506|953507|959699|959700|964224|964817|965619", "text": "Luscan-lumish syndrome" }, { - "baseId": "139002|245206", + "upstreamId": "139002|245206", "text": "Curry-Jones syndrome" }, { - "baseId": "139020|236839|236840|236841|236842|236843|236844|236845|236850", + "upstreamId": "139020|236839|236840|236841|236842|236843|236844|236845|236850", "text": "Microform holoprosencephaly" }, { - "baseId": "139022|139024|240730|397335|439503|439504|460505|460522|475248|626194", + "upstreamId": "139022|139024|240730|397335|439503|439504|460505|460522|475248|626194", "text": "Joubert syndrome 32" }, { - "baseId": "139069|139073|139075|139084|216910|216911|216912|216913|216914|216915|682261|699337|721738|777535|799439|961949|981520|981521|981522|981523|981524", + "upstreamId": "139069|139073|139075|139084|216910|216911|216912|216913|216914|216915|682261|699337|721738|777535|799439|961949|981520|981521|981522|981523|981524", "text": "Autoinflammatory syndrome, familial, Behcet-like" }, { - "baseId": "139098|363522|364267|364268|364269|410258|513784|513786|513787|513788|513789|513790|513791|513792|513794|513795|513797|513802", + "upstreamId": "139098|363522|364267|364268|364269|410258|513784|513786|513787|513788|513789|513790|513791|513792|513794|513795|513797|513802", "text": "PARP Inhibitor response" }, { - "baseId": "139302|357085|620001|620002|620722", + "upstreamId": "139302|357085|620001|620002|620722", "text": "MPL-Related Disorders" }, { - "baseId": "139316|139317|139323|139325|139336|139337|139340", + "upstreamId": "139316|139317|139323|139325|139336|139337|139340", "text": "Relapsing remitting multiple sclerosis" }, { - "baseId": "139318|139319|139320|139321|139322|139324|139326|139327|139328|139329|139330|139331|139332|139333|139334|139335|139338|139339|139341", + "upstreamId": "139318|139319|139320|139321|139322|139324|139326|139327|139328|139329|139330|139331|139332|139333|139334|139335|139338|139339|139341", "text": "Chronic progressive multiple sclerosis" }, { - "baseId": "139361|139362|139363|139364|139365|139366|139367", + "upstreamId": "139361|139362|139363|139364|139365|139366|139367", "text": "Structural brain abnormalities" }, { - "baseId": "139361|139362|139363|139364|139365|139366|139367", + "upstreamId": "139361|139362|139363|139364|139365|139366|139367", "text": "Neurological deficit" }, { - "baseId": "139371|181422|536138|536151|536160|536186|536187", + "upstreamId": "139371|181422|536138|536151|536160|536186|536187", "text": "Cerebral calcification" }, { - "baseId": "139371", + "upstreamId": "139371", "text": "Intracranial hemorrhage" }, { - "baseId": "139372|139373|425210|682118", + "upstreamId": "139372|139373|425210|682118", "text": "Myasthenic syndrome, slow-channel congenital" }, { - "baseId": "139375", + "upstreamId": "139375", "text": "Spermatogenic failure 13" }, { - "baseId": "139378|139379|192126|252609|252613|259850|266683|266867|267345|267684|267728|268921|269124|269567|270377|270709|273597|273995|274386|274540|274549|274757|274829|275443|368925|368928|370821|456400|456410|456412|456413|456979|456983|457423|457427|457429|457433|489254|493199|522317|522319|522322|522326|522715|523049|523050|523053|523056|523058|561380|561539|581956|586225|635780|635781|635782|635783|635784|635785|692157|692158|730465|735954|750418|766108|790695|833130|833131|833132|833133|833134|833135|924701|924702|924703|933687|933688|933689|940066|945425|945426|945427|945428|955051|955052|955053|955054|955055", + "upstreamId": "139378|139379|192126|252609|252613|259850|266683|266867|267345|267684|267728|268921|269124|269567|270377|270709|273597|273995|274386|274540|274549|274757|274829|275443|368925|368928|370821|456400|456410|456412|456413|456979|456983|457423|457427|457429|457433|489254|493199|522317|522319|522322|522326|522715|523049|523050|523053|523056|523058|561380|561539|581956|586225|635780|635781|635782|635783|635784|635785|692157|692158|730465|735954|750418|766108|790695|833130|833131|833132|833133|833134|833135|924701|924702|924703|933687|933688|933689|940066|945425|945426|945427|945428|955051|955052|955053|955054|955055", "text": "Limb-girdle muscular dystrophy, type 1F" }, { - "baseId": "139381|800839", + "upstreamId": "139381|800839", "text": "Spermatogenic failure 14" }, { - "baseId": "139382|224860|224861|224862|224863|626147|858731", + "upstreamId": "139382|224860|224861|224862|224863|626147|858731", "text": "Mitochondrial complex III deficiency, nuclear type 8" }, { - "baseId": "139774", + "upstreamId": "139774", "text": "B Lymphoblastic Leukemia/Lymphoma" }, { - "baseId": "139827|185970", + "upstreamId": "139827|185970", "text": "Ewing sarcoma of soft tissue" }, { - "baseId": "139945|139947|139948|139949|212052|212054|349026|349033|352932", + "upstreamId": "139945|139947|139948|139949|212052|212054|349026|349033|352932", "text": "Sideroblastic Anemia and Ataxia" }, { - "baseId": "140021|140022|205751|211299|211299|211306|211307|211307|211309|211313|211313|302009|302013|302014|302016|302021|305185|305194|305195|305198|305203|305204|309890|309893|309893|309896|309896|309901|309916|309916|309917|309918|309924|309929|309931|309948|309964|310017|310025|368952|369244|369512|456416|501886|514551|522605|635793|692166|692166|695352|722363|897558|897559|897560|897561|897562|897563|897564|897565|897566|897567|897568|897569|897570|897571|897572|897573|897574|897575|897576|897577|897578|897579|900320|900321|924716", + "upstreamId": "140021|140022|205751|211299|211299|211306|211307|211307|211309|211313|211313|302009|302013|302014|302016|302021|305185|305194|305195|305198|305203|305204|309890|309893|309893|309896|309896|309901|309916|309916|309917|309918|309924|309929|309931|309948|309964|310017|310025|368952|369244|369512|456416|501886|514551|522605|635793|692166|692166|695352|722363|897558|897559|897560|897561|897562|897563|897564|897565|897566|897567|897568|897569|897570|897571|897572|897573|897574|897575|897576|897577|897578|897579|900320|900321|924716", "text": "Cataract, autosomal recessive congenital 5" }, { - "baseId": "140035", + "upstreamId": "140035", "text": "unspecified heart condition" }, { - "baseId": "140119|195446|211373|265577|308151|308152|308156|318388|318390|318392|318393|318856|318864|318874", + "upstreamId": "140119|195446|211373|265577|308151|308152|308156|318388|318390|318392|318393|318856|318864|318874", "text": "Coenzyme Q10 deficiency, Oculomotor Apraxia Type" }, { - "baseId": "140347|188490", + "upstreamId": "140347|188490", "text": "Short QT Syndrome 5" }, { - "baseId": "140562|140563|140566|140567|140568|140570|140571|140572|140574|140575|140577|140578|140579|140582|140583|140585|140586|140587|140588|140590|140591|140592|140593|140595|140595|140596|140597|140598|140599|140600|140601|140602|140604|140605|140606|140607|140608|140609|140610|140611|140612|140613|140614|140615|140616|140617|140618|140620|140621|140622|140623|140624|140627|140628|140629|140630|140631|140632|140633|140635|140635|140636|140636|140637|140637|140638|140638|140639|140640|140640|140641|140642|140642|140643|140643|140644|140644|140646|140646|140647|140647|140648|140648|140649|140649|140651|140651|140652|140652|140654|140655|140655|140656|140657|140658|140659|140660|140660|140661|140661|140662|140662|140663|140664|140664|140665|140665|140666|140666|140667|140668|140668|140669|140670|140671|140671|140673|140674|165529|165530|165530|178495|178495|178497|178498|178594|178596|192176|192811|193889|193892|194097|194215|194565|194613|194613|194698|195202|196151|205008|205759|209493|209493|209494|209495|209497|209498|209499|209499|209500|209500|209501|209502|209502|209505|209505|209507|209508|209512|209516|209517|209518|209518|209519|209520|209521|209522|209522|209523|209525|209527|209528|209529|209533|209533|209534|209534|209535|209538|209539|209539|209540|209541|209541|209542|209548|209555|209555|209556|209557|209559|209560|209560|209562|209562|209563|209569|209570|209572|209575|209576|209576|209578|209578|209579|209580|209580|209581|209962|209964|209966|209967|209968|209970|209971|209972|209973|209974|209975|209978|209979|209982|209985|209986|209987|209988|209989|209989|209990|209993|209994|209995|209996|209997|209998|210000|210001|210003|210005|210006|210008|210011|210014|210015|210016|210017|210018|210022|210023|210024|210024|210026|210028|210029|210031|210032|210035|210036|210037|210041|210042|210043|210044|210046|210047|210048|210051|210052|210053|210054|210055|210059|210062|210063|210064|210065|210066|210067|210068|210069|210070|210071|210072|210076|210078|210079|210083|210084|210087|210088|210089|210090|210091|210093|210094|210096|210100|210102|210106|210108|210109|210113|210114|210115|210117|210118|210119|210122|210124|210125|210128|210130|210131|210134|210135|210136|210137|210138|210142|210144|210148|217340|217341|217343|221806|224247|224247|224365|250467|252982|253410|253412|253420|253424|253434|253455|258231|258233|258233|258234|258526|258530|258532|258533|258537|258542|258544|258545|258548|258549|258558|259715|264322|265723|267387|283541|283547|283548|283559|283566|283568|283571|284203|284215|284216|284223|284226|284233|286134|286163|286165|286172|286200|286206|286224|286226|286241|286241|286243|286526|286528|286541|286542|286543|286545|286560|286569|286575|286575|286579|286579|286587|307468|307488|307490|307495|307496|307502|307509|307524|307547|311704|311705|311706|311710|311711|311726|311732|311733|317251|317263|317291|317298|317305|317318|317327|317367|317369|317660|317667|317688|317696|317714|317716|317731|317754|317766|317768|317798|317820|317828|317839|359796|359798|359913|361194|362443|365961|366013|366205|366218|366219|366223|366224|366226|366226|366233|366244|366270|366764|366764|366790|370022|370056|370077|370539|370540|370812|370818|370835|370837|372439|372466|372488|372533|372549|392269|392270|392364|392365|392366|392369|392426|392428|392431|392444|392452|392478|392483|392492|392494|392507|392515|392515|396638|396642|396645|396647|396649|396655|396660|396673|396681|396687|396698|396700|396843|396845|396858|396859|396867|396885|396888|396891|396896|396959|396964|396972|396980|396982|396983|396985|396995|396998|397004|397011|397018|397019|397273|397280|397288|397289|433444|433445|499416|499437|499448|510006|629211|629212|629212|629213|629213|629215|629216|629217|629218|629219|629220|629221|629222|629223|629224|629225|629225|629227|629229|629230|629231|629233|629234|629234|629235|629236|637939|637940|637941|637942|637943|637944|637945|637946|637947|637948|637949|637950|637953|637954|637955|637957|637958|637959|637960|637961|637962|637963|637964|637965|637966|637967|637968|637969|637970|637971|637972|637973|637974|637975|637976|637978|637980|637981|637982|637983|637984|637985|637986|637987|637988|637989|637990|637991|637992|637993|637994|637995|637996|637998|650904|650905|651837|651891|651915|651920|651922|651990|652041|652139|652145|683462|684059|684059|684060|687396|687397|687399|687400|687401|687402|687408|687412|689695|689696|689697|689939|692630|692631|692633|695428|700882|711847|711848|736995|744459|751529|759734|762734|767246|767248|767253|767256|777731|781098|781098|789375|799271|799272|825493|825494|825495|825497|825498|825499|825500|825502|825503|825504|825505|825507|825508|825509|825510|825510|825511|825513|825514|825516|835744|835745|835746|835747|835748|835749|835750|835752|835753|835755|835756|835757|835759|835760|835761|835763|835764|835765|835766|835767|835768|835769|835771|835772|835773|835774|835775|835776|835777|835778|835780|835781|835782|835784|835785|835786|835787|835788|835790|835791|835794|835795|835796|850823|850866|850868|851141|851247|851728|852168|852170|852499|858310|883054|883055|883056|883057|883058|883059|883060|918718|918719|918720|918721|918722|919199|919200|919201|919202|919203|920267|920268|964652|965875|981378|981379|981380|981381", + "upstreamId": "140562|140563|140566|140567|140568|140570|140571|140572|140574|140575|140577|140578|140579|140582|140583|140585|140586|140587|140588|140590|140591|140592|140593|140595|140595|140596|140597|140598|140599|140600|140601|140602|140604|140605|140606|140607|140608|140609|140610|140611|140612|140613|140614|140615|140616|140617|140618|140620|140621|140622|140623|140624|140627|140628|140629|140630|140631|140632|140633|140635|140635|140636|140636|140637|140637|140638|140638|140639|140640|140640|140641|140642|140642|140643|140643|140644|140644|140646|140646|140647|140647|140648|140648|140649|140649|140651|140651|140652|140652|140654|140655|140655|140656|140657|140658|140659|140660|140660|140661|140661|140662|140662|140663|140664|140664|140665|140665|140666|140666|140667|140668|140668|140669|140670|140671|140671|140673|140674|165529|165530|165530|178495|178495|178497|178498|178594|178596|192176|192811|193889|193892|194097|194215|194565|194613|194613|194698|195202|196151|205008|205759|209493|209493|209494|209495|209497|209498|209499|209499|209500|209500|209501|209502|209502|209505|209505|209507|209508|209512|209516|209517|209518|209518|209519|209520|209521|209522|209522|209523|209525|209527|209528|209529|209533|209533|209534|209534|209535|209538|209539|209539|209540|209541|209541|209542|209548|209555|209555|209556|209557|209559|209560|209560|209562|209562|209563|209569|209570|209572|209575|209576|209576|209578|209578|209579|209580|209580|209581|209962|209964|209966|209967|209968|209970|209971|209972|209973|209974|209975|209978|209979|209982|209985|209986|209987|209988|209989|209989|209990|209993|209994|209995|209996|209997|209998|210000|210001|210003|210005|210006|210008|210011|210014|210015|210016|210017|210018|210022|210023|210024|210024|210026|210028|210029|210031|210032|210035|210036|210037|210041|210042|210043|210044|210046|210047|210048|210051|210052|210053|210054|210055|210059|210062|210063|210064|210065|210066|210067|210068|210069|210070|210071|210072|210076|210078|210079|210083|210084|210087|210088|210089|210090|210091|210093|210094|210096|210100|210102|210106|210108|210109|210113|210114|210115|210117|210118|210119|210122|210124|210125|210128|210130|210131|210134|210135|210136|210137|210138|210142|210144|210148|217340|217341|217343|221806|224247|224247|224365|250467|252982|253410|253412|253420|253424|253434|253455|258231|258233|258233|258234|258526|258530|258532|258533|258537|258542|258544|258545|258548|258549|258558|259715|264322|265723|267387|283541|283547|283548|283559|283566|283568|283571|284203|284215|284216|284223|284226|284233|286134|286163|286165|286172|286200|286206|286224|286226|286241|286241|286243|286526|286528|286541|286542|286543|286545|286560|286569|286575|286575|286579|286579|286587|307468|307488|307490|307495|307496|307502|307509|307524|307547|311704|311705|311706|311710|311711|311726|311732|311733|317251|317263|317291|317298|317305|317318|317327|317367|317369|317660|317667|317688|317696|317714|317716|317731|317754|317766|317768|317798|317820|317828|317839|359796|359798|359913|361194|362443|365961|366013|366205|366218|366219|366223|366224|366226|366226|366233|366244|366270|366764|366764|366790|370022|370056|370077|370539|370540|370812|370818|370835|370837|372439|372466|372488|372533|372549|392269|392270|392364|392365|392366|392369|392426|392428|392431|392444|392452|392478|392483|392492|392494|392507|392515|392515|396638|396642|396645|396647|396649|396655|396660|396673|396681|396687|396698|396700|396843|396845|396858|396859|396867|396885|396888|396891|396896|396959|396964|396972|396980|396982|396983|396985|396995|396998|397004|397011|397018|397019|397273|397280|397288|397289|433444|433445|499416|499437|499448|510006|629211|629212|629212|629213|629213|629215|629216|629217|629218|629219|629220|629221|629222|629223|629224|629225|629225|629227|629229|629230|629231|629233|629234|629234|629235|629236|637939|637940|637941|637942|637943|637944|637945|637946|637947|637948|637949|637950|637953|637954|637955|637957|637958|637959|637960|637961|637962|637963|637964|637965|637966|637967|637968|637969|637970|637971|637972|637973|637974|637975|637976|637978|637980|637981|637982|637983|637984|637985|637986|637987|637988|637989|637990|637991|637992|637993|637994|637995|637996|637998|650904|650905|651837|651891|651915|651920|651922|651990|652041|652139|652145|683462|684059|684059|684060|687396|687397|687399|687400|687401|687402|687408|687412|689695|689696|689697|689939|692630|692631|692633|695428|700882|711847|711848|736995|744459|751529|759734|762734|767246|767248|767253|767256|777731|781098|781098|789375|799271|799272|825493|825494|825495|825497|825498|825499|825500|825502|825503|825504|825505|825507|825508|825509|825510|825510|825511|825513|825514|825516|835744|835745|835746|835747|835748|835749|835750|835752|835753|835755|835756|835757|835759|835760|835761|835763|835764|835765|835766|835767|835768|835769|835771|835772|835773|835774|835775|835776|835777|835778|835780|835781|835782|835784|835785|835786|835787|835788|835790|835791|835794|835795|835796|850823|850866|850868|851141|851247|851728|852168|852170|852499|858310|883054|883055|883056|883057|883058|883059|883060|918718|918719|918720|918721|918722|919199|919200|919201|919202|919203|920267|920268|964652|965875|981378|981379|981380|981381", "text": "Ehlers-Danlos syndrome classic type 2" }, { - "baseId": "140785|210896|210897|210898|247473|247477|247479|247480|626132", + "upstreamId": "140785|210896|210897|210898|247473|247477|247479|247480|626132", "text": "Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal recessive 4" }, { - "baseId": "141047|171281|171282|209762|209778|209807|258390|258402|258408|273965|297049|368157|443671|454415|520509|614279|614280|622345|799393|816312|918917|918918|918919|918920", + "upstreamId": "141047|171281|171282|209762|209778|209807|258390|258402|258408|273965|297049|368157|443671|454415|520509|614279|614280|622345|799393|816312|918917|918918|918919|918920", "text": "Macular degeneration, early-onset" }, { - "baseId": "141317|141318|612467", + "upstreamId": "141317|141318|612467", "text": "Facial dysmorphism, lens dislocation, anterior segment abnormalities, and spontaneous filtering blebs" }, { - "baseId": "141324|141325|141325|141326|141327|141328|141329|150464|150465|187227|187227|250309|275325|363749|363926|363926|363975|413549|414825|427919|438163|438702|442980|448752|448756|448764|448770|448771|448974|448976|449036|449054|449056|449070|449071|516211|516475|516478|516480|516567|516572|516575|516581|516583|516586|516591|516593|516596|516598|516599|516601|516602|516612|516619|516625|516629|516633|516637|516638|538339|538952|538952|557584|557586|557588|557590|558813|558815|558817|559296|559298|559300|559302|578389|578390|578391|612450|614222|614223|614224|614225|614226|614227|614597|624756|626117|626117|628684|628685|628686|628687|628688|628689|628690|628691|628692|628693|628694|628695|628696|628697|628698|628699|628700|628701|628702|628703|650851|650886|678120|690822|690823|690824|690825|690827|690828|690829|690830|690831|690832|690833|690834|690835|690837|690838|690839|690840|690841|695093|695094|695095|697109|697112|697113|697114|707805|707806|730067|732867|762319|762322|762323|777146|778889|790069|800764|800765|800766|800767|800768|800769|800770|800771|800772|800773|800774|800775|800776|800777|800778|800779|800780|800781|800782|824978|824979|824980|824981|824982|824983|824984|824985|824986|824987|824988|824989|824990|824991|824992|824993|824994|824995|824996|824997|824998|824999|825000|825001|825002|825003|825004|825005|825006|825007|825008|825009|850838|851342|918678|922300|922301|922302|922303|922304|930867|930868|930869|930870|930871|930872|930873|930874|930875|939852|940660|942295|942296|942297|942298|942299|942300|942301|942302|952737|952738|952739|952740|959583|959584|961254|961645|964165|970713|975892|975893", + "upstreamId": "141324|141325|141325|141326|141327|141328|141329|150464|150465|187227|187227|250309|275325|363749|363926|363926|363975|413549|414825|427919|438163|438702|442980|448752|448756|448764|448770|448771|448974|448976|449036|449054|449056|449070|449071|516211|516475|516478|516480|516567|516572|516575|516581|516583|516586|516591|516593|516596|516598|516599|516601|516602|516612|516619|516625|516629|516633|516637|516638|538339|538952|538952|557584|557586|557588|557590|558813|558815|558817|559296|559298|559300|559302|578389|578390|578391|612450|614222|614223|614224|614225|614226|614227|614597|624756|626117|626117|628684|628685|628686|628687|628688|628689|628690|628691|628692|628693|628694|628695|628696|628697|628698|628699|628700|628701|628702|628703|650851|650886|678120|690822|690823|690824|690825|690827|690828|690829|690830|690831|690832|690833|690834|690835|690837|690838|690839|690840|690841|695093|695094|695095|697109|697112|697113|697114|707805|707806|730067|732867|762319|762322|762323|777146|778889|790069|800764|800765|800766|800767|800768|800769|800770|800771|800772|800773|800774|800775|800776|800777|800778|800779|800780|800781|800782|824978|824979|824980|824981|824982|824983|824984|824985|824986|824987|824988|824989|824990|824991|824992|824993|824994|824995|824996|824997|824998|824999|825000|825001|825002|825003|825004|825005|825006|825007|825008|825009|850838|851342|918678|922300|922301|922302|922303|922304|930867|930868|930869|930870|930871|930872|930873|930874|930875|939852|940660|942295|942296|942297|942298|942299|942300|942301|942302|952737|952738|952739|952740|959583|959584|961254|961645|964165|970713|975892|975893", "text": "Aicardi-Goutieres syndrome 7" }, { - "baseId": "141325|187227|187227|250307|250309|275325|363749|363926|363926|363975|413549|414825|427919|438163|438702|448752|448756|448764|448770|448771|448974|448976|449036|449054|449056|449070|449071|516211|516475|516478|516480|516567|516572|516575|516581|516583|516586|516591|516593|516596|516598|516599|516601|516602|516612|516619|516625|516629|516633|516637|516638|538339|538952|538952|557584|557586|557588|557590|558813|558815|558817|558817|559296|559298|559300|559302|578389|578391|614222|614223|614224|614225|614226|614227|624756|626117|626117|628684|628685|628686|628687|628688|628689|628690|628691|628692|628693|628694|628695|628695|628696|628697|628698|628699|628700|628701|628702|628703|650851|650886|690822|690823|690824|690825|690827|690828|690829|690830|690831|690832|690833|690834|690835|690837|690838|690839|690840|690840|690841|695093|695094|695095|697109|697112|697113|697114|707805|707806|730067|732867|762319|762322|762323|777146|778889|790069|790069|824978|824979|824980|824981|824982|824983|824984|824985|824986|824987|824988|824989|824990|824991|824992|824993|824994|824995|824996|824997|824998|824999|825000|825001|825002|825003|825004|825005|825006|825007|825008|825009|850838|851342|918677|918678|918678|920160|922300|922301|922302|922303|922304|930867|930868|930869|930870|930871|930872|930873|930874|930875|939852|940660|942295|942296|942297|942298|942299|942300|942301|942302|952737|952738|952739|952740|959583|959584|961254|975892|975893", + "upstreamId": "141325|187227|187227|250307|250309|275325|363749|363926|363926|363975|413549|414825|427919|438163|438702|448752|448756|448764|448770|448771|448974|448976|449036|449054|449056|449070|449071|516211|516475|516478|516480|516567|516572|516575|516581|516583|516586|516591|516593|516596|516598|516599|516601|516602|516612|516619|516625|516629|516633|516637|516638|538339|538952|538952|557584|557586|557588|557590|558813|558815|558817|558817|559296|559298|559300|559302|578389|578391|614222|614223|614224|614225|614226|614227|624756|626117|626117|628684|628685|628686|628687|628688|628689|628690|628691|628692|628693|628694|628695|628695|628696|628697|628698|628699|628700|628701|628702|628703|650851|650886|690822|690823|690824|690825|690827|690828|690829|690830|690831|690832|690833|690834|690835|690837|690838|690839|690840|690840|690841|695093|695094|695095|697109|697112|697113|697114|707805|707806|730067|732867|762319|762322|762323|777146|778889|790069|790069|824978|824979|824980|824981|824982|824983|824984|824985|824986|824987|824988|824989|824990|824991|824992|824993|824994|824995|824996|824997|824998|824999|825000|825001|825002|825003|825004|825005|825006|825007|825008|825009|850838|851342|918677|918678|918678|920160|922300|922301|922302|922303|922304|930867|930868|930869|930870|930871|930872|930873|930874|930875|939852|940660|942295|942296|942297|942298|942299|942300|942301|942302|952737|952738|952739|952740|959583|959584|961254|975892|975893", "text": "Singleton-Merten syndrome 1" }, { - "baseId": "141331|141332|237493|430044|539077|619911|964495", + "upstreamId": "141331|141332|237493|430044|539077|619911|964495", "text": "Gordon's syndrome" }, { - "baseId": "141333|430044|539077|626266|626319", + "upstreamId": "141333|430044|539077|626266|626319", "text": "Marden-Walker syndrome" }, { - "baseId": "141637|141638|141640|211639|316885|316889|316904|316907|316909|316910|316912|316913|316916|324499|324508|324510|324522|330637|330661|330689|330692|330694|330705|330707|332004|332011|332012|332022|332036|332039|332072|332081|332087|332103|332105|332107|332108", + "upstreamId": "141637|141638|141640|211639|316885|316889|316904|316907|316909|316910|316912|316913|316916|324499|324508|324510|324522|330637|330661|330689|330692|330694|330705|330707|332004|332011|332012|332022|332036|332039|332072|332081|332087|332103|332105|332107|332108", "text": "Hereditary Sideroblastic Anemia with Myopathy and Lactic Acidosis" }, { - "baseId": "142240|187894|253284|359757|424259|439630|458740|502861|523825|562690|562691|622044|622045|622046|637644|637645|637646|687353|692569|820046|835434|835435|934528|940126|946339|946340", + "upstreamId": "142240|187894|253284|359757|424259|439630|458740|502861|523825|562690|562691|622044|622045|622046|637644|637645|637646|687353|692569|820046|835434|835435|934528|940126|946339|946340", "text": "Oligosynaptic infertility" }, { - "baseId": "142556|142557|142560|142561|142562|211588|503924|738547", + "upstreamId": "142556|142557|142560|142561|142562|211588|503924|738547", "text": "Sideroblastic anemia" }, { - "baseId": "142930|207000|207001|286250|286253|286271|286286|286288|287026|289328|289337|289342|289349|289674|289678|289679|289683|289702|858733", + "upstreamId": "142930|207000|207001|286250|286253|286271|286286|286288|287026|289328|289337|289342|289349|289674|289678|289679|289683|289702|858733", "text": "Gingival fibromatosis" }, { - "baseId": "143128|143129|143130|143138|143139|143140|143141|143142|215267|362137|610373|626433|626434|626435|626436|626437|626438|626439|672048|697765|790316|917745|963532", + "upstreamId": "143128|143129|143130|143138|143139|143140|143141|143142|215267|362137|610373|626433|626434|626435|626436|626437|626438|626439|672048|697765|790316|917745|963532", "text": "Intellectual disability-cataracts-calcified pinnae-myopathy syndrome" }, { - "baseId": "143136|143137|548213|548583|548989|806440", + "upstreamId": "143136|143137|548213|548583|548989|806440", "text": "Pontocerebellar hypoplasia, type 2e" }, { - "baseId": "143150", + "upstreamId": "143150", "text": "isolated follicle-stimulating hormone deficiency" }, { - "baseId": "143157|214100|538398|672025|672026|790788|790789|805087|961781", + "upstreamId": "143157|214100|538398|672025|672026|790788|790789|805087|961781", "text": "Diarrhea 7" }, { - "baseId": "143158|143159|143160|143161|143162|513102|513103|841787", + "upstreamId": "143158|143159|143160|143161|143162|513102|513103|841787", "text": "Cone-rod dystrophy 19" }, { - "baseId": "143164|143165|143166|143167|143168|143169|143170|143171|205690|205692|368885|406962|428667|428669|428671|428672|444050|456118|456127|456128|456131|456132|456134|456134|456136|456137|456144|456147|456149|456151|456153|456161|456168|456171|456176|456187|456188|456194|456205|456211|456387|456389|456393|456397|456403|456405|456409|456414|456418|456420|456422|456424|456433|456442|456446|456449|456457|456467|456474|456475|456685|456687|456689|456691|456696|456700|456701|456703|456705|456708|456710|456711|456712|456715|456719|456723|456725|456733|456735|456740|456742|456750|456752|456755|456756|456815|457035|457037|457039|457041|457043|457047|457048|457050|457067|457068|457074|457079|457086|457088|457091|457099|457101|457104|457108|457110|457112|457118|457119|457120|457122|457127|457128|457135|457143|457146|457149|457152|457155|457157|474473|474477|474483|474484|474485|474487|474488|474492|474496|474502|474505|474507|474508|474596|474603|474604|474608|474613|474614|501793|501874|502187|522092|522095|522105|522106|522116|522118|522122|522124|522126|522131|522132|522148|522149|522154|522362|522364|522368|522371|522372|522376|522378|522387|522389|522390|522391|522458|522460|522463|522466|522468|522471|522472|522476|522478|522490|522493|522497|522499|522814|522818|522823|522827|522832|522835|522847|522848|522851|522853|522856|522858|536322|561029|561249|561251|561253|561255|561260|561262|561264|561266|561268|561272|561277|561282|561328|561329|561333|561342|561345|561352|561353|561361|561370|561373|563841|563986|563988|563989|563991|563993|563995|563998|564000|564003|564011|564012|566345|566348|566351|566358|566360|566371|566373|566374|566379|566386|566387|635574|635575|635576|635577|635578|635579|635580|635581|635582|635583|635584|635585|635586|635587|635588|635589|635590|635591|635592|635593|635594|635595|635596|635597|635598|635599|635600|635601|635602|635603|635604|635605|635606|635607|635608|635609|635610|635611|635612|635613|635614|635615|635616|635617|635618|635619|635620|635621|635622|635623|635624|635625|635626|651638|651651|651653|651655|651657|651658|651704|692124|692125|692126|692127|692128|692129|695343|695344|699793|699794|699795|699796|699797|699798|699799|722282|722284|735921|759542|766040|766045|766046|782763|782765|808880|808885|808888|808889|808891|808906|808908|808909|808913|808914|808915|808926|808939|815370|815372|819810|819811|819812|819813|819814|819815|819816|819817|819818|819819|819820|832913|832914|832915|832916|832917|832918|832919|832920|832921|832922|832923|832924|832925|832926|832927|832928|832929|832930|832931|832932|832933|832934|832935|832936|832937|832938|832939|832940|832941|832942|832943|832944|832945|832946|832947|832948|832949|832950|832951|832952|832953|832954|851618|851620|851622|851624|852052|852054|852323|852324|852329|858446|924625|924626|924627|924628|924629|924630|924631|924632|924633|924634|924635|924636|924637|924638|924639|924640|924641|924642|924643|924644|924645|924646|924647|924648|924649|924650|924651|924652|924653|933614|933615|933616|933617|933618|933619|933620|933621|933622|933623|933624|933625|933626|933627|933628|933629|933630|933631|933632|940058|940059|940060|940061|940868|940869|945358|945359|945360|945361|945362|945363|945364|945365|945366|945367|945368|945369|945370|945371|945372|945373|955003|955004|955005|955006|955007|955008|955009|955010|955011|955012|959829|959830|960622|960623|983503", + "upstreamId": "143164|143165|143166|143167|143168|143169|143170|143171|205690|205692|368885|406962|428667|428669|428671|428672|444050|456118|456127|456128|456131|456132|456134|456134|456136|456137|456144|456147|456149|456151|456153|456161|456168|456171|456176|456187|456188|456194|456205|456211|456387|456389|456393|456397|456403|456405|456409|456414|456418|456420|456422|456424|456433|456442|456446|456449|456457|456467|456474|456475|456685|456687|456689|456691|456696|456700|456701|456703|456705|456708|456710|456711|456712|456715|456719|456723|456725|456733|456735|456740|456742|456750|456752|456755|456756|456815|457035|457037|457039|457041|457043|457047|457048|457050|457067|457068|457074|457079|457086|457088|457091|457099|457101|457104|457108|457110|457112|457118|457119|457120|457122|457127|457128|457135|457143|457146|457149|457152|457155|457157|474473|474477|474483|474484|474485|474487|474488|474492|474496|474502|474505|474507|474508|474596|474603|474604|474608|474613|474614|501793|501874|502187|522092|522095|522105|522106|522116|522118|522122|522124|522126|522131|522132|522148|522149|522154|522362|522364|522368|522371|522372|522376|522378|522387|522389|522390|522391|522458|522460|522463|522466|522468|522471|522472|522476|522478|522490|522493|522497|522499|522814|522818|522823|522827|522832|522835|522847|522848|522851|522853|522856|522858|536322|561029|561249|561251|561253|561255|561260|561262|561264|561266|561268|561272|561277|561282|561328|561329|561333|561342|561345|561352|561353|561361|561370|561373|563841|563986|563988|563989|563991|563993|563995|563998|564000|564003|564011|564012|566345|566348|566351|566358|566360|566371|566373|566374|566379|566386|566387|635574|635575|635576|635577|635578|635579|635580|635581|635582|635583|635584|635585|635586|635587|635588|635589|635590|635591|635592|635593|635594|635595|635596|635597|635598|635599|635600|635601|635602|635603|635604|635605|635606|635607|635608|635609|635610|635611|635612|635613|635614|635615|635616|635617|635618|635619|635620|635621|635622|635623|635624|635625|635626|651638|651651|651653|651655|651657|651658|651704|692124|692125|692126|692127|692128|692129|695343|695344|699793|699794|699795|699796|699797|699798|699799|722282|722284|735921|759542|766040|766045|766046|782763|782765|808880|808885|808888|808889|808891|808906|808908|808909|808913|808914|808915|808926|808939|815370|815372|819810|819811|819812|819813|819814|819815|819816|819817|819818|819819|819820|832913|832914|832915|832916|832917|832918|832919|832920|832921|832922|832923|832924|832925|832926|832927|832928|832929|832930|832931|832932|832933|832934|832935|832936|832937|832938|832939|832940|832941|832942|832943|832944|832945|832946|832947|832948|832949|832950|832951|832952|832953|832954|851618|851620|851622|851624|852052|852054|852323|852324|852329|858446|924625|924626|924627|924628|924629|924630|924631|924632|924633|924634|924635|924636|924637|924638|924639|924640|924641|924642|924643|924644|924645|924646|924647|924648|924649|924650|924651|924652|924653|933614|933615|933616|933617|933618|933619|933620|933621|933622|933623|933624|933625|933626|933627|933628|933629|933630|933631|933632|940058|940059|940060|940061|940868|940869|945358|945359|945360|945361|945362|945363|945364|945365|945366|945367|945368|945369|945370|945371|945372|945373|955003|955004|955005|955006|955007|955008|955009|955010|955011|955012|959829|959830|960622|960623|983503", "text": "Melanoma, cutaneous malignant, susceptibility to, 10" }, { - "baseId": "143173|143174|361177|589817|611385|654122|790284|798510|858549|963127", + "upstreamId": "143173|143174|361177|589817|611385|654122|790284|798510|858549|963127", "text": "Mental retardation, autosomal dominant 27" }, { - "baseId": "143175|143176|143177", + "upstreamId": "143175|143176|143177", "text": "Nephrotic syndrome, type 10" }, { - "baseId": "143180|143181|143182|143183|215212|363846|364008|427855|438773|438974|439236|440519|440520|448109|448138|448141|448152|448153|448155|448161|448170|448173|448175|448176|448181|448183|448192|448198|448202|448221|448223|448234|448248|448251|448254|448258|448259|448262|448264|448269|448271|448273|448275|448276|448279|448281|448290|448291|448293|448294|448298|448300|448301|448302|448305|448310|448311|448313|448317|448322|448385|448388|448390|448391|448394|448397|515999|516003|516012|516014|516020|516023|516025|516026|516033|516035|516038|516039|516044|516046|516050|516056|516058|516061|516063|516065|516066|516158|516165|516171|516175|516182|516184|516188|516193|557111|557113|557115|557117|557119|557120|557124|557158|557159|557330|557332|557334|557336|557338|557340|557342|557344|557346|557348|557350|557352|557387|557389|557391|557393|557395|557397|557399|558004|558010|558013|558015|558016|558018|558020|558022|558561|558563|558565|558567|558569|558571|576551|628171|628172|628173|628174|628175|628176|628177|628178|628179|628180|628181|628182|628183|628184|628185|628186|628187|628188|628189|628190|628191|628192|628193|628194|628195|628196|628197|628198|628199|628200|628201|628202|628203|628204|650594|650684|650686|650691|650739|650743|650744|695059|696822|696824|696825|696826|707486|707488|707489|707492|730018|732540|732541|732543|732546|732547|746603|746605|746607|758935|762028|762030|762032|762035|762036|762037|762039|762047|774532|774541|774559|777095|777142|780748|780750|780752|789990|789991|792719|794708|824291|824292|824293|824294|824295|824296|824297|824298|824299|824300|824301|824302|824303|824304|824305|824306|824307|824308|824309|824310|824311|824312|824313|824314|824315|824316|824317|824318|824319|824320|824321|824322|824323|824324|824325|824326|824327|824328|824329|824330|824331|824332|824333|824334|824335|824336|824337|824338|824339|824340|824341|824342|824343|824344|824345|850779|850781|850810|851001|851317|851319|922127|922128|922129|922130|922131|922132|922133|922134|922135|922136|922137|922138|922139|922140|922141|922142|922143|922144|922145|930620|930621|930622|930623|930624|930625|930626|930627|930628|930629|930630|930631|930632|930633|930634|930635|930636|930637|930638|930639|939823|940646|942057|942058|942059|942060|942061|942062|942063|942064|942065|942066|942067|942068|942069|942070|942071|942072|942073|942074|942075|942076|942077|942078|942079|942080|952488|952489|952490|952491|952492|952493|952494|952495|952496|959567|970699", + "upstreamId": "143180|143181|143182|143183|215212|363846|364008|427855|438773|438974|439236|440519|440520|448109|448138|448141|448152|448153|448155|448161|448170|448173|448175|448176|448181|448183|448192|448198|448202|448221|448223|448234|448248|448251|448254|448258|448259|448262|448264|448269|448271|448273|448275|448276|448279|448281|448290|448291|448293|448294|448298|448300|448301|448302|448305|448310|448311|448313|448317|448322|448385|448388|448390|448391|448394|448397|515999|516003|516012|516014|516020|516023|516025|516026|516033|516035|516038|516039|516044|516046|516050|516056|516058|516061|516063|516065|516066|516158|516165|516171|516175|516182|516184|516188|516193|557111|557113|557115|557117|557119|557120|557124|557158|557159|557330|557332|557334|557336|557338|557340|557342|557344|557346|557348|557350|557352|557387|557389|557391|557393|557395|557397|557399|558004|558010|558013|558015|558016|558018|558020|558022|558561|558563|558565|558567|558569|558571|576551|628171|628172|628173|628174|628175|628176|628177|628178|628179|628180|628181|628182|628183|628184|628185|628186|628187|628188|628189|628190|628191|628192|628193|628194|628195|628196|628197|628198|628199|628200|628201|628202|628203|628204|650594|650684|650686|650691|650739|650743|650744|695059|696822|696824|696825|696826|707486|707488|707489|707492|730018|732540|732541|732543|732546|732547|746603|746605|746607|758935|762028|762030|762032|762035|762036|762037|762039|762047|774532|774541|774559|777095|777142|780748|780750|780752|789990|789991|792719|794708|824291|824292|824293|824294|824295|824296|824297|824298|824299|824300|824301|824302|824303|824304|824305|824306|824307|824308|824309|824310|824311|824312|824313|824314|824315|824316|824317|824318|824319|824320|824321|824322|824323|824324|824325|824326|824327|824328|824329|824330|824331|824332|824333|824334|824335|824336|824337|824338|824339|824340|824341|824342|824343|824344|824345|850779|850781|850810|851001|851317|851319|922127|922128|922129|922130|922131|922132|922133|922134|922135|922136|922137|922138|922139|922140|922141|922142|922143|922144|922145|930620|930621|930622|930623|930624|930625|930626|930627|930628|930629|930630|930631|930632|930633|930634|930635|930636|930637|930638|930639|939823|940646|942057|942058|942059|942060|942061|942062|942063|942064|942065|942066|942067|942068|942069|942070|942071|942072|942073|942074|942075|942076|942077|942078|942079|942080|952488|952489|952490|952491|952492|952493|952494|952495|952496|959567|970699", "text": "Epileptic encephalopathy, early infantile, 23" }, { - "baseId": "143184|143185|143186|143187|143188|143189|143190|372595|375471|462537|462813|462818|463290|463296|527419|527707|527956|527957|568206|572146|641504|641505|695588|702548|702549|784496|840454|840455|840456|840457|840458|840459|840460|840461|840462|840463|840464|840465|840466|840467|840468|840469|840470|840471|840472|840473|851961|926785|926786|926787|926788|936316|936317|936318|948237|948238|948239|948240|948241|948242|948243|957004|957005|957006|957007|957008|957009|960795", + "upstreamId": "143184|143185|143186|143187|143188|143189|143190|372595|375471|462537|462813|462818|463290|463296|527419|527707|527956|527957|568206|572146|641504|641505|695588|702548|702549|784496|840454|840455|840456|840457|840458|840459|840460|840461|840462|840463|840464|840465|840466|840467|840468|840469|840470|840471|840472|840473|851961|926785|926786|926787|926788|936316|936317|936318|948237|948238|948239|948240|948241|948242|948243|957004|957005|957006|957007|957008|957009|960795", "text": "Nephronophthisis 18" }, { - "baseId": "143201|143202|143203|143204|143205|190605|362328|362329|488155|560357|560468|578433|614288|830876|970809", + "upstreamId": "143201|143202|143203|143204|143205|190605|362328|362329|488155|560357|560468|578433|614288|830876|970809", "text": "Epileptic encephalopathy, early infantile, 24" }, { - "baseId": "143212", + "upstreamId": "143212", "text": "Deafness, autosomal recessive 44" }, { - "baseId": "143224|143225|143226|143227|143228|143235|395336|788781|800940", + "upstreamId": "143224|143225|143226|143227|143228|143235|395336|788781|800940", "text": "Ciliary dyskinesia, primary, 29" }, { - "baseId": "143229|971089", + "upstreamId": "143229|971089", "text": "Gingival fibromatosis-hypertrichosis syndrome" }, { - "baseId": "143243|143244|143245|143246|418200|917884|918884|964113|976010", + "upstreamId": "143243|143244|143245|143246|418200|917884|918884|964113|976010", "text": "Microphthalmia/coloboma and skeletal dysplasia syndrome" }, { - "baseId": "143250|143251|143252|143253|174555|174828|214139|217221|217222|217223|264337|319672|361198|384405|384407|432381|481859|620335|682120|794155|794156|794157|794158|794159|794160|794161|794162|794163|794164|794165|961858|961859", + "upstreamId": "143250|143251|143252|143253|174555|174828|214139|217221|217222|217223|264337|319672|361198|384405|384407|432381|481859|620335|682120|794155|794156|794157|794158|794159|794160|794161|794162|794163|794164|794165|961858|961859", "text": "Progressive familial intrahepatic cholestasis 4" }, { - "baseId": "143254|143255|143256|143257|143258|188112|188113|227137|263863|264958|265101|265107|351150|360425|361112|378331|424673|430367|430370|431923|446267|512461|512464|537005|580560|580649|611432|611433|611434|682588|788940|791989|791990|805139|816495|919917|919918|919919|961352|963914|964533|964534|971149|972996|972997|972998|972999|973000|973001|973002", + "upstreamId": "143254|143255|143256|143257|143258|188112|188113|227137|263863|264958|265101|265107|351150|360425|361112|378331|424673|430367|430370|431923|446267|512461|512464|537005|580560|580649|611432|611433|611434|682588|788940|791989|791990|805139|816495|919917|919918|919919|961352|963914|964533|964534|971149|972996|972997|972998|972999|973000|973001|973002", "text": "Helsmoortel-Van der Aa Syndrome" }, { - "baseId": "143259", + "upstreamId": "143259", "text": "Hypotrichosis 12" }, { - "baseId": "143261|187138|187139|190633|371851|372605|372869|374641|421908|434505|461651|461865|503563|526694|526695|526698|526712|526941|527267|565087|565089|640658|640659|640660|640661|640662|640663|640664|713388|713389|724948|738502|753162|779751|784291|839359|839360|839362|839363|839364|839365|839366|839367|839368|839369|850699|851931|926479|926480|926481|935931|935932|935933|947800|947801|947802|947803|947804|947805|947806|956762", + "upstreamId": "143261|187138|187139|190633|371851|372605|372869|374641|421908|434505|461651|461865|503563|526694|526695|526698|526712|526941|527267|565087|565089|640658|640659|640660|640661|640662|640663|640664|713388|713389|724948|738502|753162|779751|784291|839359|839360|839362|839363|839364|839365|839366|839367|839368|839369|850699|851931|926479|926480|926481|935931|935932|935933|947800|947801|947802|947803|947804|947805|947806|956762", "text": "Myopathy, tubular aggregate, 2" }, { - "baseId": "143266|404804|404805|615449|801124|801125", + "upstreamId": "143266|404804|404805|615449|801124|801125", "text": "Platelet-type bleeding disorder 18" }, { - "baseId": "143271|210598|276217|276243|276475|276476|276486|276496|276497|276514|276860|276909|276951|276972|302044|633625", + "upstreamId": "143271|210598|276217|276243|276475|276476|276486|276496|276497|276514|276860|276909|276951|276972|302044|633625", "text": "Hereditary motor and sensory neuropathy" }, { - "baseId": "150121|150122|150123|677129", + "upstreamId": "150121|150122|150123|677129", "text": "Amelogenesis imperfecta, hypomaturation type IIA5" }, { - "baseId": "150138|448044|515859|515862|515887|515888|515916|515917|515920|515986|557053|557055|557317|627833|627834|627835|627836|627837|627838|627839|627840|627841|627842|707408|718963|718964|732450|732451|759022|761922|761925|777078|823960|823961|823962|823963|823964|922016|922017|930485|930486|939812|940635|941939", + "upstreamId": "150138|448044|515859|515862|515887|515888|515916|515917|515920|515986|557053|557055|557317|627833|627834|627835|627836|627837|627838|627839|627840|627841|627842|707408|718963|718964|732450|732451|759022|761922|761925|777078|823960|823961|823962|823963|823964|922016|922017|930485|930486|939812|940635|941939", "text": "Immunodeficiency 24" }, { - "baseId": "150140", + "upstreamId": "150140", "text": "Microphthalmia, syndromic 13" }, { - "baseId": "150142|181445|445590|445592|512217|983549", + "upstreamId": "150142|181445|445590|445592|512217|983549", "text": "Developmental and epileptic encephalopathy, 77" }, { - "baseId": "150144|792729", + "upstreamId": "150144|792729", "text": "Hypotrichosis 13" }, { - "baseId": "150146|980397", + "upstreamId": "150146|980397", "text": "Bardet-Biedl syndrome 19" }, { - "baseId": "150287|583166", + "upstreamId": "150287|583166", "text": "Retinitis pigmentosa 84" }, { - "baseId": "150292|150293", + "upstreamId": "150292|150293", "text": "Atrial fibrillation, familial, 17" }, { - "baseId": "150294", + "upstreamId": "150294", "text": "Fibrous Sheath Dysplasia" }, { - "baseId": "150295", + "upstreamId": "150295", "text": "axonemas with defects on microtubules" }, { - "baseId": "150295", + "upstreamId": "150295", "text": "sperm axonema without dynein arms and nexin bridges" }, { - "baseId": "150299|150300|230045|230052|230107|230111|230120|230135|230156|230180|230181|804844", + "upstreamId": "150299|150300|230045|230052|230107|230111|230120|230135|230156|230180|230181|804844", "text": "M\u00e9ni\u00e8re's disease" }, { - "baseId": "150320|150321|150322", + "upstreamId": "150320|150321|150322", "text": "Spondylometaphyseal dysplasia, Sedaghatian type" }, { - "baseId": "150326|150327|150328|150329|150330|150331|150332|150333|424441|426335|446236|469358|469360|470370|470374|470376|470888|533508|533510|533555|533560|533600|534091|571234|571235|572889|572893|572897|573501|573502|575100|575101|575102|614474|648670|648671|648672|648673|648674|648675|648676|648677|648678|648679|648680|648681|648682|648683|648684|648685|648686|648687|648688|648689|653211|653533|653553|716983|728658|742403|757522|757528|773104|779977|792583|821325|848388|848389|848390|848391|848392|848393|848394|848395|848396|848397|848398|848399|848400|920416|929184|929185|929186|929187|929188|929189|929190|938976|938977|938978|938979|951091|951092|951093|951094|951095|958835|958836|958837|958838|958839|958840|961965|980968", + "upstreamId": "150326|150327|150328|150329|150330|150331|150332|150333|424441|426335|446236|469358|469360|470370|470374|470376|470888|533508|533510|533555|533560|533600|534091|571234|571235|572889|572893|572897|573501|573502|575100|575101|575102|614474|648670|648671|648672|648673|648674|648675|648676|648677|648678|648679|648680|648681|648682|648683|648684|648685|648686|648687|648688|648689|653211|653533|653553|716983|728658|742403|757522|757528|773104|779977|792583|821325|848388|848389|848390|848391|848392|848393|848394|848395|848396|848397|848398|848399|848400|920416|929184|929185|929186|929187|929188|929189|929190|938976|938977|938978|938979|951091|951092|951093|951094|951095|958835|958836|958837|958838|958839|958840|961965|980968", "text": "Polyglucosan body myopathy 1 with or without immunodeficiency" }, { - "baseId": "150443|621038|792493", + "upstreamId": "150443|621038|792493", "text": "Mental retardation, X-linked 100" }, { - "baseId": "150449|150450|981454|981455", + "upstreamId": "150449|150450|981454|981455", "text": "Lymphedema, hereditary, ID" }, { - "baseId": "150451|150452|802193", + "upstreamId": "150451|150452|802193", "text": "Diamond-Blackfan anemia 13" }, { - "baseId": "150454|150455|150456|150457|213981|250311|250312|250316|250317|250320|250322|448978|449040|449075|449076|449223|449225|449239|449240|449271|516640|557592|557654|557656|558827|628976|682302|682303|682304|682305|682306|690843|690844|690845|690846|690848|690874|690885|690886|690887|690888|690893|695096|695101|697116|697118|697119|697120|697122|697123|697124|697135|697138|697142|697143|697145|697154|707831|732871|732905|746891|780914|825237|930876|930969|965212|973098|976005", + "upstreamId": "150454|150455|150456|150457|213981|250311|250312|250316|250317|250320|250322|448978|449040|449075|449076|449223|449225|449239|449240|449271|516640|557592|557654|557656|558827|628976|682302|682303|682304|682305|682306|690843|690844|690845|690846|690848|690874|690885|690886|690887|690888|690893|695096|695101|697116|697118|697119|697120|697122|697123|697124|697135|697138|697142|697143|697145|697154|707831|732871|732905|746891|780914|825237|930876|930969|965212|973098|976005", "text": "Anterior segment dysgenesis 7" }, { - "baseId": "150458|178407|178407|200688|200688|200689|200689|469914|469920|469926|469931|469933|470842|470915|471374|471379|471382|471799|508104|534074|534081|534085|534165|534606|571718|573279|573283|573287|573956|573958|573964|649209|649210|649211|649212|649213|649214|649215|649216|653271|653686|694692|705821|776953|786560|821403|849084|849085|849086|849087|849088|929410|939211|939212|939213|960960", + "upstreamId": "150458|178407|178407|200688|200688|200689|200689|469914|469920|469926|469931|469933|470842|470915|471374|471379|471382|471799|508104|534074|534081|534085|534165|534606|571718|573279|573283|573287|573956|573958|573964|649209|649210|649211|649212|649213|649214|649215|649216|653271|653686|694692|705821|776953|786560|821403|849084|849085|849086|849087|849088|929410|939211|939212|939213|960960", "text": "Frontotemporal dementia and/or amyotrophic lateral sclerosis 2" }, { - "baseId": "150458|178407|200688|200689|469914|469920|469926|469931|469933|470842|470915|471374|471379|471382|471799|508104|534074|534081|534085|534165|534606|571718|573279|573283|573287|573956|573958|573964|649209|649210|649211|649212|649213|649214|649215|649216|653271|653686|694692|705821|776953|786560|821403|849084|849085|849086|849087|849088|929410|939211|939212|939213|960960", + "upstreamId": "150458|178407|200688|200689|469914|469920|469926|469931|469933|470842|470915|471374|471379|471382|471799|508104|534074|534081|534085|534165|534606|571718|573279|573283|573287|573956|573958|573964|649209|649210|649211|649212|649213|649214|649215|649216|653271|653686|694692|705821|776953|786560|821403|849084|849085|849086|849087|849088|929410|939211|939212|939213|960960", "text": "Myopathy, isolated mitochondrial, autosomal dominant" }, { - "baseId": "150466|150467|150468|214822|214823|214824|214825|214826|264863|360315|362160|375599|375603|375605|375644|375661|376488|376494|376508|376514|376523|376570|376571|376584|376589|376591|376600|376603|378691|378710|378716|378721|378726|410222|422189|445867|445871|445872|467346|467351|467355|468279|468283|468286|468287|468292|468294|468722|468728|468729|468967|468969|468976|495441|507103|507105|531695|531698|531701|531710|531765|531825|531828|532064|532066|532069|532071|532075|536955|569672|569676|570745|571543|571547|571562|572165|572168|580266|580279|580353|646580|646581|646582|646583|646584|646585|646586|646587|646588|646589|646590|646591|646592|646593|646594|646595|646596|646597|646598|646599|646600|646601|646602|653361|715638|727366|727367|731176|756078|771773|771774|776516|780134|788262|791817|791818|791819|791820|821149|821150|846087|846088|846089|846090|846091|846092|846093|846094|846095|846096|846097|846098|846099|846100|846101|846102|846103|851751|928499|928500|928501|928502|928503|928504|928505|928506|928507|938185|938186|938187|938188|938189|938190|938191|940431|950226|950227|950228|950229|950230|950231|950232|950233|950234|950235|958279|958280|958281|964692", + "upstreamId": "150466|150467|150468|214822|214823|214824|214825|214826|264863|360315|362160|375599|375603|375605|375644|375661|376488|376494|376508|376514|376523|376570|376571|376584|376589|376591|376600|376603|378691|378710|378716|378721|378726|410222|422189|445867|445871|445872|467346|467351|467355|468279|468283|468286|468287|468292|468294|468722|468728|468729|468967|468969|468976|495441|507103|507105|531695|531698|531701|531710|531765|531825|531828|532064|532066|532069|532071|532075|536955|569672|569676|570745|571543|571547|571562|572165|572168|580266|580279|580353|646580|646581|646582|646583|646584|646585|646586|646587|646588|646589|646590|646591|646592|646593|646594|646595|646596|646597|646598|646599|646600|646601|646602|653361|715638|727366|727367|731176|756078|771773|771774|776516|780134|788262|791817|791818|791819|791820|821149|821150|846087|846088|846089|846090|846091|846092|846093|846094|846095|846096|846097|846098|846099|846100|846101|846102|846103|851751|928499|928500|928501|928502|928503|928504|928505|928506|928507|938185|938186|938187|938188|938189|938190|938191|940431|950226|950227|950228|950229|950230|950231|950232|950233|950234|950235|958279|958280|958281|964692", "text": "Epileptic encephalopathy, early infantile, 25" }, { - "baseId": "150467|168792|486728|486729|486762|486763", + "upstreamId": "150467|168792|486728|486729|486762|486763", "text": "Undetermined early-onset epileptic encephalopathy" }, { - "baseId": "150775|233048|550677|550679", + "upstreamId": "150775|233048|550677|550679", "text": "Rectal Adenocarcinoma" }, { - "baseId": "150897", + "upstreamId": "150897", "text": "Bilateral breast carcinoma" }, { - "baseId": "151124|151125|151127", + "upstreamId": "151124|151125|151127", "text": "Trichomegaly" }, { - "baseId": "151138|151140|151141|359597|368886|369077|370328|481504|481505|481506|513420|513421|626161|626162|790609|795814|903542|939762|939763|939764|939765|939766", + "upstreamId": "151138|151140|151141|359597|368886|369077|370328|481504|481505|481506|513420|513421|626161|626162|790609|795814|903542|939762|939763|939764|939765|939766", "text": "Combined oxidative phosphorylation deficiency 20" }, { - "baseId": "151642|496224|496686|677186", + "upstreamId": "151642|496224|496686|677186", "text": "Alveolar rhabdomyosarcoma (disease)" }, { - "baseId": "151773|182669|212544|227140|227141|309444|395996|396013|455993|522734|522773|566301", + "upstreamId": "151773|182669|212544|227140|227141|309444|395996|396013|455993|522734|522773|566301", "text": "Osteofibrous dysplasia" }, { - "baseId": "151773|181585|182669|212544|309444|395996|396013|455993|522734|522773|566301", + "upstreamId": "151773|181585|182669|212544|309444|395996|396013|455993|522734|522773|566301", "text": "Deafness, autosomal recessive 97" }, { - "baseId": "152171", + "upstreamId": "152171", "text": "Myeloid Leukemia Associated with Down Syndrome" }, { - "baseId": "152753|791991", + "upstreamId": "152753|791991", "text": "Ataxia-telangiectasia-like disorder 2" }, { - "baseId": "152755|152756|152757|152758|970835", + "upstreamId": "152755|152756|152757|152758|970835", "text": "Leukoencephalopathy, progressive, with ovarian failure" }, { - "baseId": "152759|152760|612252", + "upstreamId": "152759|152760|612252", "text": "Combined oxidative phosphorylation deficiency 21" }, { - "baseId": "152772|152773|152774|190426|190426|318595|319133|319145|438816|459243|459543|460088|511840|524861|524864|524865|524989|563262|563263|638314|638315|700994|700995|700996|700997|700998|700999|701000|737129|751704|777818|777820|836153|836154|836155|836156|836157|925595|925596|925597|925598|925599|955850|964332|964334", + "upstreamId": "152772|152773|152774|190426|190426|318595|319133|319145|438816|459243|459543|460088|511840|524861|524864|524865|524989|563262|563263|638314|638315|700994|700995|700996|700997|700998|700999|701000|737129|751704|777818|777820|836153|836154|836155|836156|836157|925595|925596|925597|925598|925599|955850|964332|964334", "text": "Epiphyseal chondrodysplasia, miura type" }, { - "baseId": "152775|309029|422800|428632", + "upstreamId": "152775|309029|422800|428632", "text": "Spinocerebellar ataxia type 34" }, { - "baseId": "152776|152777", + "upstreamId": "152776|152777", "text": "Retinitis pigmentosa 70" }, { - "baseId": "152952", + "upstreamId": "152952", "text": "Syndrome of entercolitis and autoinflmmation caused by mutation of NLRC4 (SCAN4)" }, { - "baseId": "152977|538403|550115|550116|550234|679962|798606|798607|816402|858614", + "upstreamId": "152977|538403|550115|550116|550234|679962|798606|798607|816402|858614", "text": "Steel syndrome" }, { - "baseId": "153138", + "upstreamId": "153138", "text": "Loss of ability to walk" }, { - "baseId": "153190|181434|181465|187513|243987|248477|263251|263269|263347|362144|362151|404617|514175|514196|550130|581716|677986|677997|677998|678003|678021|679836|921237|921238|965572", + "upstreamId": "153190|181434|181465|187513|243987|248477|263251|263269|263347|362144|362151|404617|514175|514196|550130|581716|677986|677997|677998|678003|678021|679836|921237|921238|965572", "text": "Attention deficit hyperactivity disorder" }, { - "baseId": "153385|203726|263305|263309|360878|415601|513945|514007|514130|550127", + "upstreamId": "153385|203726|263305|263309|360878|415601|513945|514007|514130|550127", "text": "Absent speech" }, { - "baseId": "153385", + "upstreamId": "153385", "text": "Irregular respiration" }, { - "baseId": "153574|965613|965614", + "upstreamId": "153574|965613|965614", "text": "Deafness, autosomal recessive 99" }, { - "baseId": "153582|225833|539108|788947|806421|976685", + "upstreamId": "153582|225833|539108|788947|806421|976685", "text": "Mental retardation, X-linked 101" }, { - "baseId": "153586|153587|153588|389615|454652|454654|454711|454712|454714|454716|455169|521042|521045|521173|521182|521224|521226|560264|560266|560268|564807|564814|612695|633485|633486|633487|633488|633489|633490|633491|633492|633493|633494|633495|633496|633497|633498|721243|721244|721245|721246|734875|749257|749259|749260|764915|764916|782186|819559|830363|830364|830365|830366|830367|830368|830369|830370|830371|830372|851917|923890|923891|923892|923893|932731|932732|932733|932734|944418|944419|944420|944421|954053|954054|960555", + "upstreamId": "153586|153587|153588|389615|454652|454654|454711|454712|454714|454716|455169|521042|521045|521173|521182|521224|521226|560264|560266|560268|564807|564814|612695|633485|633486|633487|633488|633489|633490|633491|633492|633493|633494|633495|633496|633497|633498|721243|721244|721245|721246|734875|749257|749259|749260|764915|764916|782186|819559|830363|830364|830365|830366|830367|830368|830369|830370|830371|830372|851917|923890|923891|923892|923893|932731|932732|932733|932734|944418|944419|944420|944421|954053|954054|960555", "text": "Sting-associated vasculopathy, infantile-onset" }, { - "baseId": "153636", + "upstreamId": "153636", "text": "Azathioprine response" }, { - "baseId": "153638|153639|172306", + "upstreamId": "153638|153639|172306", "text": "Ruijs-Aalfs syndrome" }, { - "baseId": "153653", + "upstreamId": "153653", "text": "Seckel syndrome 8" }, { - "baseId": "153655", + "upstreamId": "153655", "text": "Pontocerebellar hypoplasia, type 10" }, { - "baseId": "153684", + "upstreamId": "153684", "text": "Ocular coloboma, autosomal recessive" }, { - "baseId": "153711|153712|153713|153714|153715|153716|263838|654137", + "upstreamId": "153711|153712|153713|153714|153715|153716|263838|654137", "text": "Megalencephaly-polymicrogyria-polydactyly-hydrocephalus syndrome 3" }, { - "baseId": "153719|262391|360932|408455|408456|577194|904168|904169|904177|904178|904181|919380|963162", + "upstreamId": "153719|262391|360932|408455|408456|577194|904168|904169|904177|904178|904181|919380|963162", "text": "Dyskinesia, seizures, and intellectual developmental disorder" }, { - "baseId": "153721|153722", + "upstreamId": "153721|153722", "text": "Myopia 24, autosomal dominant" }, { - "baseId": "153744|153745|153746|153747|153748|153749|153750|153751|153752|153753|906166|964299", + "upstreamId": "153744|153745|153746|153747|153748|153749|153750|153751|153752|153753|906166|964299", "text": "Hyperlipoproteinemia, type ID" }, { - "baseId": "153754|153755|153756|800958", + "upstreamId": "153754|153755|153756|800958", "text": "Mental retardation, autosomal recessive 44" }, { - "baseId": "153775|153776|201016", + "upstreamId": "153775|153776|201016", "text": "Cardioencephalomyopathy, fatal infantile, due to cytochrome c oxidase deficiency 4" }, { - "baseId": "153777|153778|153779|539040|590788|613493|613494|788856|788857|791170|816354|816355|919391", + "upstreamId": "153777|153778|153779|539040|590788|613493|613494|788856|788857|791170|816354|816355|919391", "text": "Orofaciodigital syndrome xiv" }, { - "baseId": "153787|153788|153789|153790|153791|153792|153793|654801", + "upstreamId": "153787|153788|153789|153790|153791|153792|153793|654801", "text": "Acth-independent macronodular adrenal hyperplasia 2" }, { - "baseId": "153824|153825|453571|453572|453573|453575|453577|453579|453587|453588|453834|453837|453840|453982|454007|454008|454011|454365|454368|454371|513548|520139|520140|520149|520275|520282|520523|520545|520547|520549|520554|559948|562271|562278|632474|632475|632476|632477|632478|632479|632480|632481|632482|632483|632484|632485|651174|651280|691625|691629|691630|698652|698653|782045|829493|829494|829495|829496|829497|923617|932456|944132|944133", + "upstreamId": "153824|153825|453571|453572|453573|453575|453577|453579|453587|453588|453834|453837|453840|453982|454007|454008|454011|454365|454368|454371|513548|520139|520140|520149|520275|520282|520523|520545|520547|520549|520554|559948|562271|562278|632474|632475|632476|632477|632478|632479|632480|632481|632482|632483|632484|632485|651174|651280|691625|691629|691630|698652|698653|782045|829493|829494|829495|829496|829497|923617|932456|944132|944133", "text": "Limb-girdle muscular dystrophy, type 1G" }, { - "baseId": "153826|153827|207421|678968|919041|972773", + "upstreamId": "153826|153827|207421|678968|919041|972773", "text": "Spinocerebellar ataxia 38" }, { - "baseId": "153859|153860|153861|153862|153863|206575|206576|206577|206578|206579|206580|434669|497507|513474|513475|513654|513655|575504|578562|672150|791881|791882|791883|905870|919804|919807|971601|971602", + "upstreamId": "153859|153860|153861|153862|153863|206575|206576|206577|206578|206579|206580|434669|497507|513474|513475|513654|513655|575504|578562|672150|791881|791882|791883|905870|919804|919807|971601|971602", "text": "Poretti-Boltshauser syndrome" }, { - "baseId": "153865|153866|226083|226084|252303|415044|614300|614301|614302|614303|614304|816313|980459|980460", + "upstreamId": "153865|153866|226083|226084|252303|415044|614300|614301|614302|614303|614304|816313|980459|980460", "text": "Vesicoureteral reflux 8" }, { - "baseId": "164076", + "upstreamId": "164076", "text": "Immunodeficiency 26 without neurologic abnormalities" }, { - "baseId": "164077|164078|363870|363992|369480|369483|369486|369491|369498|369976|369977|369979|370260|370264|370265|370268|370270|370272|370276|370277|371875|371906|371915|371919|371922|407395|421681|433863|433864|433865|438392|457879|457885|457890|457892|457895|457898|457906|458476|458477|458479|458481|458523|458532|458534|458536|458545|458549|458551|458560|458944|458945|458947|458949|458961|458962|458963|458970|489679|502026|502336|523587|523589|523591|523592|523600|523604|523607|523609|523614|523621|523629|523633|523634|523922|523926|523928|523929|523931|523938|523943|523944|523946|523947|523953|523955|523959|523962|523965|524191|524194|524195|524196|524198|524199|524201|524203|524206|524207|524208|524211|524213|524215|524218|524221|524223|524231|524235|524243|524249|524250|539013|562431|562434|562439|562442|562444|562447|562452|562454|562457|562461|562463|562465|562467|562469|562962|562964|562966|562968|562970|562978|562981|562983|565145|565147|565150|565153|565155|565157|565160|565161|565164|565166|565172|565175|565177|567935|567943|567944|567956|567962|567966|567971|567974|567981|567986|567987|567991|567993|614320|614321|624373|637228|637229|637230|637231|637232|637233|637234|637235|637236|637237|637238|637239|637240|637241|637242|637243|637244|637245|637246|637247|637248|637249|637250|637251|637252|637253|637254|637255|637256|637257|637258|637259|637260|637261|637262|637263|637264|637265|637266|637267|637268|637269|637270|637271|637272|637273|637274|637275|637276|637277|637278|637279|637280|637281|637282|637283|637284|637285|637286|637287|637288|637289|637290|637291|637292|637293|637294|637295|637296|637297|637298|637299|637300|651753|651788|651790|651802|651804|651808|651904|651980|700597|700598|700599|711553|711554|711555|711556|711558|711559|711560|711561|723118|723119|723121|723124|723125|723126|723128|723129|723130|730580|736690|736691|736692|736696|736697|736698|736699|736700|751183|751185|751187|751188|751191|766837|766840|766849|766852|766853|777710|779290|783121|783128|783129|787609|819968|819969|819970|834796|834797|834798|834799|834800|834801|834802|834803|834804|834805|834806|834807|834808|834809|834810|834811|834812|834813|834814|834815|834816|834817|834818|834819|834820|834821|834822|834823|834824|834825|834826|834827|834828|834829|834830|834831|834832|834833|834834|834835|834836|834837|834838|834839|834840|834841|834842|834843|834844|834845|834846|834847|834848|834849|834850|834851|834852|834853|834854|834855|834856|834857|834858|834859|834860|834861|834862|834863|834864|834865|834866|851203|852140|852444|925210|925211|925212|925213|925214|925215|925216|925217|925218|925219|925220|925221|925222|925223|925224|925225|925226|925227|925228|925229|925230|925231|925232|934324|934325|934326|934327|934328|934329|934330|934331|934332|934333|934334|934335|934336|934337|934338|934339|934340|934341|934342|934343|934344|934345|934346|934347|934348|940107|940108|946087|946088|946089|946090|946091|946092|946093|946094|946095|946096|946097|946098|946099|946100|946101|946102|955431|955432|955433|955434|955435|955436|955437|955438|955439|955440|955441|955442|955443|955444|955445|955446|955447|955448|959895|959896|980461", + "upstreamId": "164077|164078|363870|363992|369480|369483|369486|369491|369498|369976|369977|369979|370260|370264|370265|370268|370270|370272|370276|370277|371875|371906|371915|371919|371922|407395|421681|433863|433864|433865|438392|457879|457885|457890|457892|457895|457898|457906|458476|458477|458479|458481|458523|458532|458534|458536|458545|458549|458551|458560|458944|458945|458947|458949|458961|458962|458963|458970|489679|502026|502336|523587|523589|523591|523592|523600|523604|523607|523609|523614|523621|523629|523633|523634|523922|523926|523928|523929|523931|523938|523943|523944|523946|523947|523953|523955|523959|523962|523965|524191|524194|524195|524196|524198|524199|524201|524203|524206|524207|524208|524211|524213|524215|524218|524221|524223|524231|524235|524243|524249|524250|539013|562431|562434|562439|562442|562444|562447|562452|562454|562457|562461|562463|562465|562467|562469|562962|562964|562966|562968|562970|562978|562981|562983|565145|565147|565150|565153|565155|565157|565160|565161|565164|565166|565172|565175|565177|567935|567943|567944|567956|567962|567966|567971|567974|567981|567986|567987|567991|567993|614320|614321|624373|637228|637229|637230|637231|637232|637233|637234|637235|637236|637237|637238|637239|637240|637241|637242|637243|637244|637245|637246|637247|637248|637249|637250|637251|637252|637253|637254|637255|637256|637257|637258|637259|637260|637261|637262|637263|637264|637265|637266|637267|637268|637269|637270|637271|637272|637273|637274|637275|637276|637277|637278|637279|637280|637281|637282|637283|637284|637285|637286|637287|637288|637289|637290|637291|637292|637293|637294|637295|637296|637297|637298|637299|637300|651753|651788|651790|651802|651804|651808|651904|651980|700597|700598|700599|711553|711554|711555|711556|711558|711559|711560|711561|723118|723119|723121|723124|723125|723126|723128|723129|723130|730580|736690|736691|736692|736696|736697|736698|736699|736700|751183|751185|751187|751188|751191|766837|766840|766849|766852|766853|777710|779290|783121|783128|783129|787609|819968|819969|819970|834796|834797|834798|834799|834800|834801|834802|834803|834804|834805|834806|834807|834808|834809|834810|834811|834812|834813|834814|834815|834816|834817|834818|834819|834820|834821|834822|834823|834824|834825|834826|834827|834828|834829|834830|834831|834832|834833|834834|834835|834836|834837|834838|834839|834840|834841|834842|834843|834844|834845|834846|834847|834848|834849|834850|834851|834852|834853|834854|834855|834856|834857|834858|834859|834860|834861|834862|834863|834864|834865|834866|851203|852140|852444|925210|925211|925212|925213|925214|925215|925216|925217|925218|925219|925220|925221|925222|925223|925224|925225|925226|925227|925228|925229|925230|925231|925232|934324|934325|934326|934327|934328|934329|934330|934331|934332|934333|934334|934335|934336|934337|934338|934339|934340|934341|934342|934343|934344|934345|934346|934347|934348|940107|940108|946087|946088|946089|946090|946091|946092|946093|946094|946095|946096|946097|946098|946099|946100|946101|946102|955431|955432|955433|955434|955435|955436|955437|955438|955439|955440|955441|955442|955443|955444|955445|955446|955447|955448|959895|959896|980461", "text": "Immunodeficiency 26 with or without neurologic abnormalities" }, { - "baseId": "165475|226067|226068|969135", + "upstreamId": "165475|226067|226068|969135", "text": "Nanophthalmos 4" }, { - "baseId": "165513", + "upstreamId": "165513", "text": "Kennedy disease)" }, { - "baseId": "165514|497221", + "upstreamId": "165514|497221", "text": "Deafness, autosomal recessive 102" }, { - "baseId": "165515|165516|919419", + "upstreamId": "165515|165516|919419", "text": "Deafness, autosomal dominant 41" }, { - "baseId": "165521|165522|165523|980297|980349", + "upstreamId": "165521|165522|165523|980297|980349", "text": "Cone-rod dystrophy 20" }, { - "baseId": "165524|538986|576117|918975", + "upstreamId": "165524|538986|576117|918975", "text": "Acromelic frontonasal dysostosis" }, { - "baseId": "165530|165571|486608|514051", + "upstreamId": "165530|165571|486608|514051", "text": "Disproportionate tall stature" }, { - "baseId": "165608|165609|308505|308514|308515|308519|308520|308522|308526|308533|308534|308535|308537|308538|308540|308546|308558|308560|308569|308570|312950|312951|312962|312963|312964|312965|312967|312970|312976|312977|312987|312988|312989|312991|312994|313000|318848|318849|318857|318865|318868|318869|318880|318881|318884|318888|318890|318891|318896|318897|318901|318903|319481|319482|319484|319500|319503|319507|319508|319509|319513|319533|319536|319537|319542|319546|611402|620813|711985|723587|737153|737154|902210|902214|902215|902216|902217|902218|902219|902220|902221|902222|902223|902224|902225|902226|902227|902228|902229|902230|902231|902232|902233|902234|902235|902236|902237|902238|902239|902240|902241|902242|902243|902244|902245|902246|902247|902248|902249|902250|902251|902252|902253|902254|902255|903417|903420|903421|903422|920274", + "upstreamId": "165608|165609|308505|308514|308515|308519|308520|308522|308526|308533|308534|308535|308537|308538|308540|308546|308558|308560|308569|308570|312950|312951|312962|312963|312964|312965|312967|312970|312976|312977|312987|312988|312989|312991|312994|313000|318848|318849|318857|318865|318868|318869|318880|318881|318884|318888|318890|318891|318896|318897|318901|318903|319481|319482|319484|319500|319503|319507|319508|319509|319513|319533|319536|319537|319542|319546|611402|620813|711985|723587|737153|737154|902210|902214|902215|902216|902217|902218|902219|902220|902221|902222|902223|902224|902225|902226|902227|902228|902229|902230|902231|902232|902233|902234|902235|902236|902237|902238|902239|902240|902241|902242|902243|902244|902245|902246|902247|902248|902249|902250|902251|902252|902253|902254|902255|903417|903420|903421|903422|920274", "text": "Dicarboxylic aminoaciduria" }, { - "baseId": "165628|363858|437976|441703|441707|578517|966897|971004", + "upstreamId": "165628|363858|437976|441703|441707|578517|966897|971004", "text": "Spinocerebellar ataxia 40" }, { - "baseId": "165645|166212|166213", + "upstreamId": "165645|166212|166213", "text": "sporadic abdominal aortic aneurysm" }, { - "baseId": "165646|178808|513208|622025|622026|622027", + "upstreamId": "165646|178808|513208|622025|622026|622027", "text": "Familial partial lipodystrophy 6" }, { - "baseId": "165650", + "upstreamId": "165650", "text": "Mental retardation, autosomal recessive 45" }, { - "baseId": "165692|789970", + "upstreamId": "165692|789970", "text": "Breasts and/or nipples, aplasia or hypoplasia of, 2" }, { - "baseId": "165720", + "upstreamId": "165720", "text": "Aplasia cutis congenita (disease)" }, { - "baseId": "165834|185749|187252|361552|372476|373172|373174|373177|373192|373201|373407|373409|375357|375367|375382|408721|421946|437937|437938|445059|462380|462381|462391|462396|462397|462641|462647|463092|463108|463120|463122|463126|463131|463227|463228|463237|463239|463243|463248|463250|463256|504010|504025|504562|527308|527314|527316|527319|527590|527601|527606|527610|527831|527833|527835|540458|565643|565645|566974|566977|566979|566980|568144|568145|568150|571959|609852|623312|641303|641304|641305|641306|641307|641308|641309|641310|652336|682112|693254|693255|693256|702453|738798|778106|840139|840140|840141|840142|840143|840144|840145|905365|926689|926690|926691|936203|940273|941038|956911|960049", + "upstreamId": "165834|185749|187252|361552|372476|373172|373174|373177|373192|373201|373407|373409|375357|375367|375382|408721|421946|437937|437938|445059|462380|462381|462391|462396|462397|462641|462647|463092|463108|463120|463122|463126|463131|463227|463228|463237|463239|463243|463248|463250|463256|504010|504025|504562|527308|527314|527316|527319|527590|527601|527606|527610|527831|527833|527835|540458|565643|565645|566974|566977|566979|566980|568144|568145|568150|571959|609852|623312|641303|641304|641305|641306|641307|641308|641309|641310|652336|682112|693254|693255|693256|702453|738798|778106|840139|840140|840141|840142|840143|840144|840145|905365|926689|926690|926691|936203|940273|941038|956911|960049", "text": "Charcot-Marie-Tooth disease, axonal, type 2u" }, { - "baseId": "165836", + "upstreamId": "165836", "text": "HPGD-Related Disorders" }, { - "baseId": "165849", + "upstreamId": "165849", "text": "Bruxism" }, { - "baseId": "165849|360877|446889|514155", + "upstreamId": "165849|360877|446889|514155", "text": "Stereotypy" }, { - "baseId": "165902", + "upstreamId": "165902", "text": "Hypodysfibrinogenemia" }, { - "baseId": "165903|203240|446446|551711", + "upstreamId": "165903|203240|446446|551711", "text": "developmental delay with seizures" }, { - "baseId": "165912|165913|165914|165915|165916|438236|453150|453156|453158|453159|453203|453569|453576|519616|519669|559233|559537|631812|631813|631814|631815|709073|720670|748574|828603|828604|828605|828606|828607|828608|923368|923369|932097|953603", + "upstreamId": "165912|165913|165914|165915|165916|438236|453150|453156|453158|453159|453203|453569|453576|519616|519669|559233|559537|631812|631813|631814|631815|709073|720670|748574|828603|828604|828605|828606|828607|828608|923368|923369|932097|953603", "text": "Severe congenital neutropenia 6, autosomal recessive" }, { - "baseId": "165912|165913|165914|165915|165916|171707|188298|188299|188300|276501|281295|281299|281300|281937|283195|283196|283207|283353|283368|344680|346087|794204|794205|794206|794207|794208|794209|799087|799088|800983|801231", + "upstreamId": "165912|165913|165914|165915|165916|171707|188298|188299|188300|276501|281295|281299|281300|281937|283195|283196|283207|283353|283368|344680|346087|794204|794205|794206|794207|794208|794209|799087|799088|800983|801231", "text": "Severe congenital neutropenia" }, { - "baseId": "165951|430312|430316", + "upstreamId": "165951|430312|430316", "text": "Hyperinsulinism due to HNF4A deficiency" }, { - "baseId": "165952|165953|178768", + "upstreamId": "165952|165953|178768", "text": "MITOCHONDRIAL COMPLEX II DEFICIENCY, NUCLEAR TYPE 3" }, { - "baseId": "165955|165956|363948|364179|467814|486796|568564|570661|570782|574443|574445|645824|704103|715398|715399|727122|727123|755801|755802|845244|845245|949889", + "upstreamId": "165955|165956|363948|364179|467814|486796|568564|570661|570782|574443|574445|645824|704103|715398|715399|727122|727123|755801|755802|845244|845245|949889", "text": "Hyperphosphatasia with mental retardation syndrome 5" }, { - "baseId": "165960", + "upstreamId": "165960", "text": "Single ventricle" }, { - "baseId": "165960", + "upstreamId": "165960", "text": "small Atrial septal defect" }, { - "baseId": "165961", + "upstreamId": "165961", "text": "ungueal dystrophy" }, { - "baseId": "165961", + "upstreamId": "165961", "text": "spino-cellular carcinoma" }, { - "baseId": "165961|514155", + "upstreamId": "165961|514155", "text": "Alopecia" }, { - "baseId": "165961", + "upstreamId": "165961", "text": "dyschromatosis" }, { - "baseId": "165961", + "upstreamId": "165961", "text": "CANCER, ALOPECIA, PIGMENT DYSCRASIA, ONYCHODYSTROPHY, AND KERATODERMA" }, { - "baseId": "166013|166014", + "upstreamId": "166013|166014", "text": "Ectodermal dysplasia/short stature syndrome" }, { - "baseId": "166016|166017", + "upstreamId": "166016|166017", "text": "Hypogonadotropic hypogonadism 22 with anosmia" }, { - "baseId": "166018|166019|260788|590284|623299|681807|818255|965925", + "upstreamId": "166018|166019|260788|590284|623299|681807|818255|965925", "text": "Focal segmental glomerulosclerosis 8" }, { - "baseId": "166020|247498|247499|247500|576292|576293|576294|590027|623369", + "upstreamId": "166020|247498|247499|247500|576292|576293|576294|590027|623369", "text": "Mental retardation, X-linked 61" }, { - "baseId": "166022|166023|428328|963135|972785", + "upstreamId": "166022|166023|428328|963135|972785", "text": "Microcephaly, short stature, and impaired glucose metabolism 1" }, { - "baseId": "166025|368464|369854|369861|446886|501559|521783|524398|565128|626180|633944|633945|633946|709901|721442|749478|782281|818631|830846|830847|924069|932909|944621|954172", + "upstreamId": "166025|368464|369854|369861|446886|501559|521783|524398|565128|626180|633944|633945|633946|709901|721442|749478|782281|818631|830846|830847|924069|932909|944621|954172", "text": "2,4-Dienoyl-CoA reductase deficiency" }, { - "baseId": "166084", + "upstreamId": "166084", "text": "PLATELET-ENDOTHELIAL CELL ADHESION MOLECULE 1 POLYMORPHISM" }, { - "baseId": "166086|166087|166088|166090|166093|166095|166096|166097|166098|166101", + "upstreamId": "166086|166087|166088|166090|166093|166095|166096|166097|166098|166101", "text": "Alloalbuminemia" }, { - "baseId": "166112|166113|408753|576352|656185|791278|961806", + "upstreamId": "166112|166113|408753|576352|656185|791278|961806", "text": "Deafness, autosomal recessive 84" }, { - "baseId": "166142|166143|166144|308847|319276|319887|359755|525186|525188|565966|565974|638391|638392|712032|712033|723631|737203|767483|836277|836278|836279|902443|934825|955897|955898|964743|964744", + "upstreamId": "166142|166143|166144|308847|319276|319887|359755|525186|525188|565966|565974|638391|638392|712032|712033|723631|737203|767483|836277|836278|836279|902443|934825|955897|955898|964743|964744", "text": "Neu-laxova syndrome 2" }, { - "baseId": "166145|166146|222780|230983|243280|243281|243282|243283|243284|243285|403138|403142|403143|403146|403150|403152|403159|403160|403167|403599|403602|403608|403620|403625|403626|403628|469319|469320|469727|470340|470352|470356|470357|470361|532653|532670|532671|532678|532681|533087|572879|572883|574860|574861|647629|647630|647631|647632|647633|647634|647635|647636|647637|653004|684779|694328|821299|847221|847222|847223|847224|852307|852948|928822|938560|938561|941223|950655|950656|960912", + "upstreamId": "166145|166146|222780|230983|243280|243281|243282|243283|243284|243285|403138|403142|403143|403146|403150|403152|403159|403160|403167|403599|403602|403608|403620|403625|403626|403628|469319|469320|469727|470340|470352|470356|470357|470361|532653|532670|532671|532678|532681|533087|572879|572883|574860|574861|647629|647630|647631|647632|647633|647634|647635|647636|647637|653004|684779|694328|821299|847221|847222|847223|847224|852307|852948|928822|938560|938561|941223|950655|950656|960912", "text": "Ciliary dyskinesia, primary, 30" }, { - "baseId": "166147|166148|918591|964141", + "upstreamId": "166147|166148|918591|964141", "text": "Myasthenic syndrome, congenital, 7, presynaptic" }, { - "baseId": "166149", + "upstreamId": "166149", "text": "Charcot-Marie-Tooth disease, recessive intermediate d" }, { - "baseId": "166182|166183|166184|166185|166186|166192|187205|187206|187207|190125|190129|260850|414991|425622|428353|428354|428356|428357|443692|454720|454730|455177|455180|455183|455188|455453|481311|481451|481452|481725|488154|521049|521184|521236|521249|535289|550598|551772|560169|560270|560272|560274|560276|562863|562867|562878|562881|564817|564820|564828|564832|564833|579028|579115|612146|623231|633499|633500|633501|633502|633503|633504|633505|633506|633507|633508|633509|653866|678061|698824|698825|698826|698827|698828|698829|698830|698831|698832|698833|698834|698835|698836|698837|698838|698839|698840|698841|698842|698843|698844|698845|698846|698847|698848|709660|749262|749263|782187|790518|790519|798551|800667|815979|819560|830373|830374|830375|830376|830377|830378|830379|918923|923894|923895|923896|923897|932735|932736|932737|932738|944422|944423|954055|954056|954057|954058|963137|963571|964069|964718|964821|972716", + "upstreamId": "166182|166183|166184|166185|166186|166192|187205|187206|187207|190125|190129|260850|414991|425622|428353|428354|428356|428357|443692|454720|454730|455177|455180|455183|455188|455453|481311|481451|481452|481725|488154|521049|521184|521236|521249|535289|550598|551772|560169|560270|560272|560274|560276|562863|562867|562878|562881|564817|564820|564828|564832|564833|579028|579115|612146|623231|633499|633500|633501|633502|633503|633504|633505|633506|633507|633508|633509|653866|678061|698824|698825|698826|698827|698828|698829|698830|698831|698832|698833|698834|698835|698836|698837|698838|698839|698840|698841|698842|698843|698844|698845|698846|698847|698848|709660|749262|749263|782187|790518|790519|798551|800667|815979|819560|830373|830374|830375|830376|830377|830378|830379|918923|923894|923895|923896|923897|932735|932736|932737|932738|944422|944423|954055|954056|954057|954058|963137|963571|964069|964718|964821|972716", "text": "Mental retardation, autosomal dominant 31" }, { - "baseId": "166195|166196|166197|166198", + "upstreamId": "166195|166196|166197|166198", "text": "Mitochondrial complex 4 deficiency, nuclear type 17" }, { - "baseId": "166199", + "upstreamId": "166199", "text": "Combined oxidative phosphorylation deficiency 22" }, { - "baseId": "166206|166207|185751|185752|215649|215650|353899|359810|364135|370650|384437|384438|407832|421784|444573|481236|481364|481365|481366|481367|481368|677430|678970|679768|679769|790946|790947|790948|790949|790950|790951|790952|858592|961042|961045|961785|969130|974519|974520", + "upstreamId": "166206|166207|185751|185752|215649|215650|353899|359810|364135|370650|384437|384438|407832|421784|444573|481236|481364|481365|481366|481367|481368|677430|678970|679768|679769|790946|790947|790948|790949|790950|790951|790952|858592|961042|961045|961785|969130|974519|974520", "text": "Mitochondrial short-chain enoyl-coa hydratase 1 deficiency" }, { - "baseId": "166215|623005|623006|623013", + "upstreamId": "166215|623005|623006|623013", "text": "Glioblastoma multiforme, somatic" }, { - "baseId": "166215|623008|623014", + "upstreamId": "166215|623008|623014", "text": "Oligodendroglioma" }, { - "baseId": "166215", + "upstreamId": "166215", "text": "Metaphyseal enchondromatosis with d-2-hydroxyglutaric aciduria" }, { - "baseId": "166218|166219|166220|166221|166222|166224|363377", + "upstreamId": "166218|166219|166220|166221|166222|166224|363377", "text": "Cowden syndrome 5" }, { - "baseId": "166303|167510|215090", + "upstreamId": "166303|167510|215090", "text": "Early-onset parkinsonism-intellectual disability syndrome" }, { - "baseId": "166304|166305|166306|260231|360423|377076|377084|378076|378077|378082|378083|378110|378112|378114|378124|378277|378280|378293|378294|378312|378323|378326|379712|379713|379714|379715|379718|379719|379720|379721|404843|404844|410766|413604|422321|422322|446262|446266|469403|469411|470452|470457|470459|470460|470941|470948|470956|470958|471425|471427|507204|508206|508220|533568|533574|533622|533646|534143|534159|534161|535710|550642|571276|571278|571285|571290|571291|571295|571303|572927|572937|573569|573574|575114|575115|575116|614475|622051|622058|622063|648754|648755|648756|648757|648758|648759|648760|648761|648762|648763|648764|648765|648766|705541|728714|773153|773154|788939|791987|791988|816494|821333|821334|822159|822160|822161|822162|822163|822164|822165|822166|822167|822168|822169|822170|822171|822172|848466|848467|848468|848469|848470|848471|848472|848473|848474|848475|848476|848477|848478|858356|904943|929217|929218|929219|929220|929221|929222|938999|939000|939001|939002|939003|939004|939005|939006|939007|951120|951121|951122|951123|951124|951125|951126|951127|958856|958857|971146|971147|971148", + "upstreamId": "166304|166305|166306|260231|360423|377076|377084|378076|378077|378082|378083|378110|378112|378114|378124|378277|378280|378293|378294|378312|378323|378326|379712|379713|379714|379715|379718|379719|379720|379721|404843|404844|410766|413604|422321|422322|446262|446266|469403|469411|470452|470457|470459|470460|470941|470948|470956|470958|471425|471427|507204|508206|508220|533568|533574|533622|533646|534143|534159|534161|535710|550642|571276|571278|571285|571290|571291|571295|571303|572927|572937|573569|573574|575114|575115|575116|614475|622051|622058|622063|648754|648755|648756|648757|648758|648759|648760|648761|648762|648763|648764|648765|648766|705541|728714|773153|773154|788939|791987|791988|816494|821333|821334|822159|822160|822161|822162|822163|822164|822165|822166|822167|822168|822169|822170|822171|822172|848466|848467|848468|848469|848470|848471|848472|848473|848474|848475|848476|848477|848478|858356|904943|929217|929218|929219|929220|929221|929222|938999|939000|939001|939002|939003|939004|939005|939006|939007|951120|951121|951122|951123|951124|951125|951126|951127|958856|958857|971146|971147|971148", "text": "Epileptic encephalopathy, early infantile, 26" }, { - "baseId": "166346|166347|578377|626355|626356|626357|626358|626359|789934", + "upstreamId": "166346|166347|578377|626355|626356|626357|626358|626359|789934", "text": "Cataracts, growth hormone deficiency, sensory neuropathy, sensorineural hearing loss, and skeletal dysplasia" }, { - "baseId": "166347|177103|177947|181382|193745|195045|251311|263244|267620|268631|284995|286978|288841|292026|292032|292033|293465|296770|296771|296774|296776|296778|296779|296782|296783|296786|318059|318060|318062|325979|325984|325996|332232|333745|343631|343665|343666|361067|361069|513949|513961|514013|550314|613458|801079|889930|889931|889932|889933|889934|889935|889936|889937|889938|889939|889940|889941|889942|889943|889944|889945|889946|889947|889948|889949|889950|889951|889952|889953|889954|889955|889956|889957|889958|889959|889960|889961|889962|889963|889964|889965|889966|889967|889968|889969|889970|891736|891737|983725|983747", + "upstreamId": "166347|177103|177947|181382|193745|195045|251311|263244|267620|268631|284995|286978|288841|292026|292032|292033|293465|296770|296771|296774|296776|296778|296779|296782|296783|296786|318059|318060|318062|325979|325984|325996|332232|333745|343631|343665|343666|361067|361069|513949|513961|514013|550314|613458|801079|889930|889931|889932|889933|889934|889935|889936|889937|889938|889939|889940|889941|889942|889943|889944|889945|889946|889947|889948|889949|889950|889951|889952|889953|889954|889955|889956|889957|889958|889959|889960|889961|889962|889963|889964|889965|889966|889967|889968|889969|889970|891736|891737|983725|983747", "text": "Cataract (disease)" }, { - "baseId": "166347", + "upstreamId": "166347", "text": "growth hormone deficiency with short stature" }, { - "baseId": "166347", + "upstreamId": "166347", "text": "partial sensorineural deafness" }, { - "baseId": "166361|166362|166363|188140|225871|264472|361193|363965|369776|369794|370245|370250|370251|370252|370256|370261|370275|370280|370297|370565|370587|370589|370591|370605|372170|413797|421706|444365|458308|458321|458326|458819|458830|458869|458870|458872|458879|458883|459330|459332|486455|486749|502157|502170|502171|502909|502920|511029|511794|511796|523999|524004|524292|524307|524308|524312|524540|524543|524546|524602|524604|562789|562794|562796|562801|562810|563485|565533|565540|578355|579520|579762|614335|637726|637727|637728|637729|637730|637731|637732|637733|637734|637735|637736|651823|651871|751406|767107|767109|767110|767111|767113|767114|767115|775479|777974|783272|783274|783275|790842|815989|820069|820070|821959|821960|821961|821962|821963|821964|822262|822263|835504|835505|835506|835507|835508|835509|835510|835511|835512|835513|835514|835515|835516|852162|925386|925387|925388|934550|934551|946376|946377|946378|946379|946380|946381|946382|955691|955692|970892|970893|970894", + "upstreamId": "166361|166362|166363|188140|225871|264472|361193|363965|369776|369794|370245|370250|370251|370252|370256|370261|370275|370280|370297|370565|370587|370589|370591|370605|372170|413797|421706|444365|458308|458321|458326|458819|458830|458869|458870|458872|458879|458883|459330|459332|486455|486749|502157|502170|502171|502909|502920|511029|511794|511796|523999|524004|524292|524307|524308|524312|524540|524543|524546|524602|524604|562789|562794|562796|562801|562810|563485|565533|565540|578355|579520|579762|614335|637726|637727|637728|637729|637730|637731|637732|637733|637734|637735|637736|651823|651871|751406|767107|767109|767110|767111|767113|767114|767115|775479|777974|783272|783274|783275|790842|815989|820069|820070|821959|821960|821961|821962|821963|821964|822262|822263|835504|835505|835506|835507|835508|835509|835510|835511|835512|835513|835514|835515|835516|852162|925386|925387|925388|934550|934551|946376|946377|946378|946379|946380|946381|946382|955691|955692|970892|970893|970894", "text": "Epileptic encephalopathy, early infantile, 31" }, { - "baseId": "166366|166369", + "upstreamId": "166366|166369", "text": "Hypogonadotropic hypogonadism 3 without anosmia" }, { - "baseId": "166402|166403|578578", + "upstreamId": "166402|166403|578578", "text": "Porokeratosis 8, disseminated superficial actinic type" }, { - "baseId": "166440|166441|404862|800377", + "upstreamId": "166440|166441|404862|800377", "text": "Ovarian dysgenesis 4" }, { - "baseId": "166525", + "upstreamId": "166525", "text": "Severe underweight in infancy childhood and adolescence" }, { - "baseId": "166525|624117", + "upstreamId": "166525|624117", "text": "Psychomotor retardation" }, { - "baseId": "166581|166583|166588|166594|166597|166600|166605|166608|166615|166619|166624|166631|166643|166647|166651|166652|166653|166657|166661|166676|166679|166682|166688|166691|166709|166712|166718|166726|166746|166756|166760|166786|166787|166800|166802|166818|166819|166825|166835|166840|166842|166847|166848|166849|166853|166856|166858|166862|166863|166881|166883|166909|166919|166941|166942|166945|166947|166961|166965|166981|166986|166992|166993|166995|167007|167015|167017|167023|167035|167045|167058|167069|167084|167091|167092|167096|167099|167107|167127|167128|167139|167145|167153|167156|167158|167160|167162|167163|167165|167168|167171|167187|167190|167194|167208|167210|167219|167222|167226|167238|167240|167245|167246|167247|167248|167256|167261|167262|167265|167269|167271|167279|167280|167283|167295|167303|167317|167327|167333|167334|167336|223422|514002|514192|514215", + "upstreamId": "166581|166583|166588|166594|166597|166600|166605|166608|166615|166619|166624|166631|166643|166647|166651|166652|166653|166657|166661|166676|166679|166682|166688|166691|166709|166712|166718|166726|166746|166756|166760|166786|166787|166800|166802|166818|166819|166825|166835|166840|166842|166847|166848|166849|166853|166856|166858|166862|166863|166881|166883|166909|166919|166941|166942|166945|166947|166961|166965|166981|166986|166992|166993|166995|167007|167015|167017|167023|167035|167045|167058|167069|167084|167091|167092|167096|167099|167107|167127|167128|167139|167145|167153|167156|167158|167160|167162|167163|167165|167168|167171|167187|167190|167194|167208|167210|167219|167222|167226|167238|167240|167245|167246|167247|167248|167256|167261|167262|167265|167269|167271|167279|167280|167283|167295|167303|167317|167327|167333|167334|167336|223422|514002|514192|514215", "text": "Large for gestational age" }, { - "baseId": "166584|166589|166590|166591|166596|166602|166605|166608|166615|166621|166626|166628|166633|166637|166640|166646|166647|166657|166660|166663|166670|166673|166676|166679|166681|166689|166691|166695|166696|166699|166701|166702|166706|166709|166714|166715|166716|166718|166729|166730|166734|166740|166743|166745|166746|166751|166753|166754|166756|166761|166762|166763|166766|166767|166768|166774|166775|166777|166778|166781|166782|166792|166794|166796|166801|166802|166815|166819|166823|166829|166830|166832|166835|166839|166840|166845|166846|166855|166860|166866|166869|166870|166871|166872|166873|166874|166875|166876|166877|166881|166885|166887|166890|166893|166895|166896|166898|166901|166905|166907|166909|166918|166920|166921|166922|166924|166925|166926|166929|166931|166932|166940|166943|166944|166947|166954|166959|166961|166963|166965|166966|166967|166982|166983|166989|166990|166991|166998|167006|167007|167011|167012|167014|167021|167025|167034|167035|167038|167039|167043|167045|167047|167048|167049|167050|167051|167056|167058|167062|167066|167074|167076|167078|167079|167092|167098|167105|167113|167114|167116|167117|167120|167121|167124|167129|167130|167132|167137|167142|167143|167148|167152|167157|167159|167161|167167|167169|167178|167180|167185|167186|167190|167196|167197|167200|167203|167206|167214|167216|167218|167228|167229|167231|167232|167234|167236|167240|167247|167248|167256|167259|167268|167270|167274|167280|167283|167290|167296|167301|167306|167308|167309|167311|167315|167316|167320|167321|167328|167331|167332|167336|167340|167341|223411|223422|223430", + "upstreamId": "166584|166589|166590|166591|166596|166602|166605|166608|166615|166621|166626|166628|166633|166637|166640|166646|166647|166657|166660|166663|166670|166673|166676|166679|166681|166689|166691|166695|166696|166699|166701|166702|166706|166709|166714|166715|166716|166718|166729|166730|166734|166740|166743|166745|166746|166751|166753|166754|166756|166761|166762|166763|166766|166767|166768|166774|166775|166777|166778|166781|166782|166792|166794|166796|166801|166802|166815|166819|166823|166829|166830|166832|166835|166839|166840|166845|166846|166855|166860|166866|166869|166870|166871|166872|166873|166874|166875|166876|166877|166881|166885|166887|166890|166893|166895|166896|166898|166901|166905|166907|166909|166918|166920|166921|166922|166924|166925|166926|166929|166931|166932|166940|166943|166944|166947|166954|166959|166961|166963|166965|166966|166967|166982|166983|166989|166990|166991|166998|167006|167007|167011|167012|167014|167021|167025|167034|167035|167038|167039|167043|167045|167047|167048|167049|167050|167051|167056|167058|167062|167066|167074|167076|167078|167079|167092|167098|167105|167113|167114|167116|167117|167120|167121|167124|167129|167130|167132|167137|167142|167143|167148|167152|167157|167159|167161|167167|167169|167178|167180|167185|167186|167190|167196|167197|167200|167203|167206|167214|167216|167218|167228|167229|167231|167232|167234|167236|167240|167247|167248|167256|167259|167268|167270|167274|167280|167283|167290|167296|167301|167306|167308|167309|167311|167315|167316|167320|167321|167328|167331|167332|167336|167340|167341|223411|223422|223430", "text": "Normal pregnancy" }, { - "baseId": "166585|166591|166593|166612|166615|166618|166622|166625|166629|166630|166632|166636|166639|166641|166645|166647|166656|166664|166668|166670|166678|166683|166686|166689|166694|166697|166698|166704|166706|166715|166716|166718|166728|166729|166734|166736|166737|166743|166746|166764|166765|166769|166771|166772|166778|166785|166790|166791|166795|166797|166799|166802|166806|166808|166809|166810|166814|166819|166826|166830|166832|166834|166835|166838|166840|166865|166877|166892|166894|166897|166899|166901|166903|166906|166909|166923|166932|166935|166937|166947|166952|166954|166956|166958|166967|166973|166974|166976|166979|166980|166987|166994|166997|167002|167003|167015|167020|167026|167029|167032|167035|167042|167057|167060|167061|167068|167069|167074|167082|167085|167086|167087|167088|167090|167092|167102|167103|167107|167118|167126|167131|167134|167137|167147|167148|167154|167155|167172|167176|167180|167184|167192|167194|167199|167200|167209|167225|167227|167230|167235|167237|167243|167244|167248|167254|167263|167275|167276|167289|167294|167296|167300|167302|167303|167313|167318|167324|167335", + "upstreamId": "166585|166591|166593|166612|166615|166618|166622|166625|166629|166630|166632|166636|166639|166641|166645|166647|166656|166664|166668|166670|166678|166683|166686|166689|166694|166697|166698|166704|166706|166715|166716|166718|166728|166729|166734|166736|166737|166743|166746|166764|166765|166769|166771|166772|166778|166785|166790|166791|166795|166797|166799|166802|166806|166808|166809|166810|166814|166819|166826|166830|166832|166834|166835|166838|166840|166865|166877|166892|166894|166897|166899|166901|166903|166906|166909|166923|166932|166935|166937|166947|166952|166954|166956|166958|166967|166973|166974|166976|166979|166980|166987|166994|166997|167002|167003|167015|167020|167026|167029|167032|167035|167042|167057|167060|167061|167068|167069|167074|167082|167085|167086|167087|167088|167090|167092|167102|167103|167107|167118|167126|167131|167134|167137|167147|167148|167154|167155|167172|167176|167180|167184|167192|167194|167199|167200|167209|167225|167227|167230|167235|167237|167243|167244|167248|167254|167263|167275|167276|167289|167294|167296|167300|167302|167303|167313|167318|167324|167335", "text": "Gestational diabetes mellitus uncontrolled" }, { - "baseId": "166587|166594|166603|166611|166613|166635|166638|166644|166647|166653|166655|166657|166661|166665|166669|166684|166685|166691|166705|166706|166709|166715|166716|166719|166728|166729|166737|166741|166746|166756|166759|166776|166784|166788|166806|166812|166813|166817|166819|166823|166826|166854|166859|166860|166867|166877|166878|166888|166891|166900|166903|166908|166909|166914|166916|166917|166928|166930|166932|166938|166946|166949|166950|166956|166960|166963|166966|166972|166977|166996|166998|167007|167018|167021|167023|167028|167040|167051|167055|167063|167064|167065|167067|167069|167077|167080|167092|167097|167104|167108|167110|167115|167124|167132|167135|167137|167144|167146|167150|167166|167172|167180|167189|167193|167198|167205|167206|167211|167213|167215|167217|167221|167224|167233|167239|167240|167248|167254|167256|167265|167272|167277|167280|167283|167287|167288|167290|167296|167303|167307|167312|167314|167319|167322|167325|167326|167330|167336|223543", + "upstreamId": "166587|166594|166603|166611|166613|166635|166638|166644|166647|166653|166655|166657|166661|166665|166669|166684|166685|166691|166705|166706|166709|166715|166716|166719|166728|166729|166737|166741|166746|166756|166759|166776|166784|166788|166806|166812|166813|166817|166819|166823|166826|166854|166859|166860|166867|166877|166878|166888|166891|166900|166903|166908|166909|166914|166916|166917|166928|166930|166932|166938|166946|166949|166950|166956|166960|166963|166966|166972|166977|166996|166998|167007|167018|167021|167023|167028|167040|167051|167055|167063|167064|167065|167067|167069|167077|167080|167092|167097|167104|167108|167110|167115|167124|167132|167135|167137|167144|167146|167150|167166|167172|167180|167189|167193|167198|167205|167206|167211|167213|167215|167217|167221|167224|167233|167239|167240|167248|167254|167256|167265|167272|167277|167280|167283|167287|167288|167290|167296|167303|167307|167312|167314|167319|167322|167325|167326|167330|167336|223543", "text": "Preeclampsia" }, { - "baseId": "167355|167356|920198", + "upstreamId": "167355|167356|920198", "text": "Primary autosomal recessive microcephaly 13" }, { - "baseId": "167357", + "upstreamId": "167357", "text": "Inflammatory skin and bowel disease, neonatal, 2" }, { - "baseId": "167358", + "upstreamId": "167358", "text": "Mirror movements 3" }, { - "baseId": "167369", + "upstreamId": "167369", "text": "Primary autosomal recessive microcephaly 12" }, { - "baseId": "167379|167380|167381", + "upstreamId": "167379|167380|167381", "text": "Neuroendocrine neoplasm" }, { - "baseId": "167389|263250|361005|440711|622268|861283|969269", + "upstreamId": "167389|263250|361005|440711|622268|861283|969269", "text": "Spasticity" }, { - "baseId": "167409|167410|167411", + "upstreamId": "167409|167410|167411", "text": "Laurin-Sandrow syndrome" }, { - "baseId": "167413|167414|167415|167416|167417|205263|227161|360917|380443|424615|424656|919265|961651|964341", + "upstreamId": "167413|167414|167415|167416|167417|205263|227161|360917|380443|424615|424656|919265|961651|964341", "text": "Mental retardation, autosomal dominant 30" }, { - "baseId": "167459", + "upstreamId": "167459", "text": "NEUROPATHY, HEREDITARY SENSORY AND AUTONOMIC, TYPE IID" }, { - "baseId": "167465|440249|622491|920004|920005|964593|964594", + "upstreamId": "167465|440249|622491|920004|920005|964593|964594", "text": "Intellectual disability, X-linked, syndromic, Houge type" }, { - "baseId": "167466", + "upstreamId": "167466", "text": "Retinal dystrophy with inner retinal dysfunction and ganglion cell abnormalities" }, { - "baseId": "167468|167469|539050|791343|802184|802185", + "upstreamId": "167468|167469|539050|791343|802184|802185", "text": "Pontocerebellar hypoplasia, type 1c" }, { - "baseId": "167472", + "upstreamId": "167472", "text": "TYPE 2 DIABETES MELLITUS 5, SUSCEPTIBILITY TO" }, { - "baseId": "167473|167474|167475|167475|167476|167477|167478|236731|367083|367089|367090|368385|389592|406178|452052|452316|482270|500170|500178|500184|519236|519250|519251|519254|561367|631147|631148|631149|631150|631151|631152|631153|631154|631155|631156|631157|631158|631159|631160|631161|631162|631163|631164|631165|631166|651053|651169|679744|698029|698030|698031|698032|708785|720394|730207|816310|819365|827870|827871|827872|827873|827874|827875|827876|827877|827878|827879|827880|827881|827882|827883|827884|827885|827886|827887|827888|827889|827890|827891|827892|827893|850924|918827|923132|923133|923134|923135|923136|923137|923138|931884|931885|931886|931887|943464|943465|943466|943467|943468|943469|943470|943471|943472|943472|943473|953424|953425|953426|953427|953428|953429", + "upstreamId": "167473|167474|167475|167475|167476|167477|167478|236731|367083|367089|367090|368385|389592|406178|452052|452316|482270|500170|500178|500184|519236|519250|519251|519254|561367|631147|631148|631149|631150|631151|631152|631153|631154|631155|631156|631157|631158|631159|631160|631161|631162|631163|631164|631165|631166|651053|651169|679744|698029|698030|698031|698032|708785|720394|730207|816310|819365|827870|827871|827872|827873|827874|827875|827876|827877|827878|827879|827880|827881|827882|827883|827884|827885|827886|827887|827888|827889|827890|827891|827892|827893|850924|918827|923132|923133|923134|923135|923136|923137|923138|931884|931885|931886|931887|943464|943465|943466|943467|943468|943469|943470|943471|943472|943472|943473|953424|953425|953426|953427|953428|953429", "text": "Sideroblastic anemia with B-cell immunodeficiency, periodic fevers, and developmental delay" }, { - "baseId": "167475|236729|236730|236731|236732|816310|943472", + "upstreamId": "167475|236729|236730|236731|236732|816310|943472", "text": "Retinitis pigmentosa and erythrocytic microcytosis" }, { - "baseId": "167501|167502|178316|372621|372623|372638|372644|372648|373314|373319|373320|373327|373597|373602|375517|375518|408802|445120|462570|462573|462574|462578|462592|462593|462862|462870|462875|462877|462879|462883|463337|463339|463341|463352|463357|463364|463369|463377|463457|463459|463461|463463|463464|463467|463470|463479|504710|512056|512057|512058|527464|527467|527471|527495|527499|527501|527737|527739|527743|565861|565863|565865|565868|567181|567184|567186|568257|568260|568261|568263|568266|572205|576157|626220|641558|641559|641560|641561|641562|641563|641564|641565|641566|641567|641568|641569|641570|641571|641572|641573|641574|641575|641576|656195|702599|702600|713832|713833|725375|730898|738952|744759|753719|760285|769408|769411|787808|820544|820545|820546|840541|840542|840543|840544|840545|840546|840547|840548|840549|840550|840551|840552|840553|840554|840555|840556|840557|840558|840559|840560|840561|840562|840563|840564|840565|840566|840567|840568|840569|840570|840571|840572|840573|840574|851963|851965|852706|852708|926803|926804|926805|926806|926807|926808|926809|926810|926811|926812|936335|936336|936337|936338|936339|936340|936341|936342|936343|936344|936345|936346|936347|936348|936349|936350|936351|936352|940277|941047|948260|948261|948262|948263|948264|948265|948266|948267|948268|948269|948270|948271|957021|957022|957023|957024|957025|957026|960071|961240", + "upstreamId": "167501|167502|178316|372621|372623|372638|372644|372648|373314|373319|373320|373327|373597|373602|375517|375518|408802|445120|462570|462573|462574|462578|462592|462593|462862|462870|462875|462877|462879|462883|463337|463339|463341|463352|463357|463364|463369|463377|463457|463459|463461|463463|463464|463467|463470|463479|504710|512056|512057|512058|527464|527467|527471|527495|527499|527501|527737|527739|527743|565861|565863|565865|565868|567181|567184|567186|568257|568260|568261|568263|568266|572205|576157|626220|641558|641559|641560|641561|641562|641563|641564|641565|641566|641567|641568|641569|641570|641571|641572|641573|641574|641575|641576|656195|702599|702600|713832|713833|725375|730898|738952|744759|753719|760285|769408|769411|787808|820544|820545|820546|840541|840542|840543|840544|840545|840546|840547|840548|840549|840550|840551|840552|840553|840554|840555|840556|840557|840558|840559|840560|840561|840562|840563|840564|840565|840566|840567|840568|840569|840570|840571|840572|840573|840574|851963|851965|852706|852708|926803|926804|926805|926806|926807|926808|926809|926810|926811|926812|936335|936336|936337|936338|936339|936340|936341|936342|936343|936344|936345|936346|936347|936348|936349|936350|936351|936352|940277|941047|948260|948261|948262|948263|948264|948265|948266|948267|948268|948269|948270|948271|957021|957022|957023|957024|957025|957026|960071|961240", "text": "Combined oxidative phosphorylation deficiency 27" }, { - "baseId": "167590|167593|167595|167597|167601|167605|167608|167609|167612|167614", + "upstreamId": "167590|167593|167595|167597|167601|167605|167608|167609|167612|167614", "text": "epileptic encephalopathy, early infanitle, 1" }, { - "baseId": "167927|170213|170214", + "upstreamId": "167927|170213|170214", "text": "Monocarboxylate transporter 1 deficiency, autosomal recessive" }, { - "baseId": "167930|167933|167936|170215|170216", + "upstreamId": "167930|167933|167936|170215|170216", "text": "Monocarboxylate transporter 1 deficiency, autosomal dominant" }, { - "baseId": "167939", + "upstreamId": "167939", "text": "Palmoplantar keratoderma and woolly hair" }, { - "baseId": "168042|168046|168047|168048|168053|194308|271236|273839|274119|274667|285391|286034|288354|288356|288357|288358|288359|288775|288783|427998|428000|428001|428002|430990|491568|538965|585621|586242|587512|588639|733280|884201|884202|884203|884204|884205|884206|884207|884208|884209|884210|884211|884212|884213|884214|884215|884216|884217", + "upstreamId": "168042|168046|168047|168048|168053|194308|271236|273839|274119|274667|285391|286034|288354|288356|288357|288358|288359|288775|288783|427998|428000|428001|428002|430990|491568|538965|585621|586242|587512|588639|733280|884201|884202|884203|884204|884205|884206|884207|884208|884209|884210|884211|884212|884213|884214|884215|884216|884217", "text": "Crigler-Najjar syndrome" }, { - "baseId": "168060|206986|206992|285585|286315", + "upstreamId": "168060|206986|206992|285585|286315", "text": "D-2-hydroxyglutaric aciduria" }, { - "baseId": "168105|168107", + "upstreamId": "168105|168107", "text": "Malformation of the heart and great vessels" }, { - "baseId": "168166|168191|195012|297027|297047|297083|298909|298925|298999|303194|303203|303206|303222|303407|303412|303413|303415|303426|964105", + "upstreamId": "168166|168191|195012|297027|297047|297083|298909|298925|298999|303194|303203|303206|303222|303407|303412|303413|303415|303426|964105", "text": "Sotos syndrome" }, { - "baseId": "168168|263193|263281|590070", + "upstreamId": "168168|263193|263281|590070", "text": "18 conditions" }, { - "baseId": "168552|513559|538953|578439", + "upstreamId": "168552|513559|538953|578439", "text": "Febrile seizures, familial, 1" }, { - "baseId": "168576", + "upstreamId": "168576", "text": "EZH2-related disorder" }, { - "baseId": "168624|205031|243985|263296|263364|361003|361041|485953|513907|626445|626446|626447|742154|805068|805101|805102|861055|861056|905848", + "upstreamId": "168624|205031|243985|263296|263364|361003|361041|485953|513907|626445|626446|626447|742154|805068|805101|805102|861055|861056|905848", "text": "Ventricular septal defect" }, { - "baseId": "168800|168804", + "upstreamId": "168800|168804", "text": "Brachydactyly, type B1Robinow syndrome, autosomal recessive" }, { - "baseId": "168841|168842|168843|168844|168845|168846|168847|168848|168849|207789|315788|429121|430995|495467|679093|679094|679095|679188|752193|866044|866045|866046|866047|866048|866049|866050|866051|866052|866053|866054|866055|866056|866057|866058|866059|866060|866061|866062|866063|866064|866065|866066|866067|866068|866069|866070|866071|868484|868485|963073", + "upstreamId": "168841|168842|168843|168844|168845|168846|168847|168848|168849|207789|315788|429121|430995|495467|679093|679094|679095|679188|752193|866044|866045|866046|866047|866048|866049|866050|866051|866052|866053|866054|866055|866056|866057|866058|866059|866060|866061|866062|866063|866064|866065|866066|866067|866068|866069|866070|866071|868484|868485|963073", "text": "Goldberg-Shprintzen megacolon syndrome" }, { - "baseId": "169007|801184", + "upstreamId": "169007|801184", "text": "Decreased head circumference" }, { - "baseId": "169016|169039|190891|192899|289000|289757|289779|289781|292804|292808|292867|293072|319325|319332|327852|327862|334164|334169|335745|335746|335794|335803|335834|340750|340754|347942|497068|578412", + "upstreamId": "169016|169039|190891|192899|289000|289757|289779|289781|292804|292808|292867|293072|319325|319332|327852|327862|334164|334169|335745|335746|335794|335803|335834|340750|340754|347942|497068|578412", "text": "Seckel syndrome" }, { - "baseId": "169192|208245|226386|271568|429774", + "upstreamId": "169192|208245|226386|271568|429774", "text": "NDE1-related microhydranencephaly" }, { - "baseId": "169548|169570|171228|171230|171233|171241|171242|171244|179700|676957|676970|682183|974511|974512", + "upstreamId": "169548|169570|171228|171230|171233|171241|171242|171244|179700|676957|676970|682183|974511|974512", "text": "Congenital myopathy" }, { - "baseId": "169564", + "upstreamId": "169564", "text": "Multi-minicore disease and atypical periodic paralysis" }, { - "baseId": "169692|351957|351958|351959|351988|352002|352006|352007", + "upstreamId": "169692|351957|351958|351959|351988|352002|352006|352007", "text": "Microcephalic osteodysplastic primordial dwarfism" }, { - "baseId": "169841|590085|801184|965474", + "upstreamId": "169841|590085|801184|965474", "text": "Sleep disturbance" }, { - "baseId": "169841|590085", + "upstreamId": "169841|590085", "text": "Paroxysmal choreoathetosis" }, { - "baseId": "170183", + "upstreamId": "170183", "text": "Decreased activity of the pyruvate dehydrogenase complex" }, { - "baseId": "170189", + "upstreamId": "170189", "text": "Skin/hair/eye pigmentation, variation in, 8" }, { - "baseId": "170190|448249|448384|448386|448440|516093|558599|628272|628273|628274|762092|774561|780772|787062|824427|824428|824429|850814|922163|922164|930665|930666|930667|942105|942106", + "upstreamId": "170190|448249|448384|448386|448440|516093|558599|628272|628273|628274|762092|774561|780772|787062|824427|824428|824429|850814|922163|922164|930665|930666|930667|942105|942106", "text": "Immunodeficiency 37" }, { - "baseId": "170198", + "upstreamId": "170198", "text": "Hydroxykynureninuria" }, { - "baseId": "170210|501748|539001", + "upstreamId": "170210|501748|539001", "text": "Deafness, autosomal recessive 103" }, { - "baseId": "170213|788722", + "upstreamId": "170213|788722", "text": "Monocarboxylate transporter 1 deficiency" }, { - "baseId": "170219|170220", + "upstreamId": "170219|170220", "text": "Psoriasis 15, pustular, susceptibility to" }, { - "baseId": "170953|170954|170955|170956|170957|170958|424446|424447|425459|425459|450276|450400|450403|450428|450526|486606|517539|517642|517650|517656|517659|517793|557818|557820|557822|557867|557869|559049|560545|560547|612437|629309|629310|629311|629312|629313|629314|629315|629316|733077|747175|781114|799281|819104|819105|825605|825606|825607|825608|825609|825610|825611|825612|825613|850827|851388|922522|922523|922524|922525|931080|940687|942566|942567|942568|942569|952889|959623|960461|961933|961992", + "upstreamId": "170953|170954|170955|170956|170957|170958|424446|424447|425459|425459|450276|450400|450403|450428|450526|486606|517539|517642|517650|517656|517659|517793|557818|557820|557822|557867|557869|559049|560545|560547|612437|629309|629310|629311|629312|629313|629314|629315|629316|733077|747175|781114|799281|819104|819105|825605|825606|825607|825608|825609|825610|825611|825612|825613|850827|851388|922522|922523|922524|922525|931080|940687|942566|942567|942568|942569|952889|959623|960461|961933|961992", "text": "Autoimmune lymphoproliferatiVe syndrome, type V" }, { - "baseId": "170959|170960", + "upstreamId": "170959|170960", "text": "Retinal dystrophy, juvenile cataracts, and short stature syndrome" }, { - "baseId": "170964", + "upstreamId": "170964", "text": "Mitochondrial complex III deficiency, nuclear type 9" }, { - "baseId": "171000|203766|263200", + "upstreamId": "171000|203766|263200", "text": "Epicanthus" }, { - "baseId": "171000|263200", + "upstreamId": "171000|263200", "text": "Abnormality of earlobe" }, { - "baseId": "171000", + "upstreamId": "171000", "text": "Depressed nasal bridge" }, { - "baseId": "171004|404670|455456|455458|455557|456066|456283|456294|456302|493774|501577|560523|560668|584282|585186|585191|586446|586503|634783|634784|699477|790606|792758|831759|831760|831761|933255", + "upstreamId": "171004|404670|455456|455458|455557|456066|456283|456294|456302|493774|501577|560523|560668|584282|585186|585191|586446|586503|634783|634784|699477|790606|792758|831759|831760|831761|933255", "text": "Deafness, autosomal recessive 66" }, { - "baseId": "171038|205371|205372|800382|800383|800384", + "upstreamId": "171038|205371|205372|800382|800383|800384", "text": "Premature ovarian failure 10" }, { - "baseId": "171039|171040|171041|171042|171043|215675|215676|215677|215678|513493|679589", + "upstreamId": "171039|171040|171041|171042|171043|215675|215676|215677|215678|513493|679589", "text": "Spinocerebellar ataxia type 21" }, { - "baseId": "171057|171058|171061|172475|189194", + "upstreamId": "171057|171058|171061|172475|189194", "text": "Polymorphic ventricular tachycardia" }, { - "baseId": "171072|171183|209432", + "upstreamId": "171072|171183|209432", "text": "Aortic aneurysm" }, { - "baseId": "171075|415173|613502|614549|961028|962031", + "upstreamId": "171075|415173|613502|614549|961028|962031", "text": "Ehlers-Danlos syndrome" }, { - "baseId": "171109|171110|171111|171112|171113|172175", + "upstreamId": "171109|171110|171111|171112|171113|172175", "text": "Haemorrhagic telangiectasia 1" }, { - "baseId": "171120", + "upstreamId": "171120", "text": "Early repolarization associated with ventricular fibrillation" }, { - "baseId": "171152|171153|171154|171155", + "upstreamId": "171152|171153|171154|171155", "text": "Haemorrhagic telangiectasia 2" }, { - "baseId": "171166|287195|287915|320711|329513|329573|336164|336174|338040|353302", + "upstreamId": "171166|287195|287915|320711|329513|329573|336164|336174|338040|353302", "text": "Dystonia, dopa-responsive" }, { - "baseId": "171167", + "upstreamId": "171167", "text": "Hyperphenylalaninemia due to tetrahydrobiopterin deficiency" }, { - "baseId": "171175", + "upstreamId": "171175", "text": "Marfan syndrome, incomplete" }, { - "baseId": "171185", + "upstreamId": "171185", "text": "Altered myosin contractile function" }, { - "baseId": "171227|171235|208586|626272", + "upstreamId": "171227|171235|208586|626272", "text": "Myopathy, RYR1-associated" }, { - "baseId": "171229|171236", + "upstreamId": "171229|171236", "text": "Malignant hyperthermia and exertional rhabdomyolosis" }, { - "baseId": "171232", + "upstreamId": "171232", "text": "Malignant hyperthermia equivocal with halotane" }, { - "baseId": "171236|361886|410595", + "upstreamId": "171236|361886|410595", "text": "RYR1-Related Disorder" }, { - "baseId": "171238|171239", + "upstreamId": "171238|171239", "text": "Axial myopathy, late-onset" }, { - "baseId": "171240", + "upstreamId": "171240", "text": "Muscular dystrophy and arthrogryposis" }, { - "baseId": "171247", + "upstreamId": "171247", "text": "Exertional myalgia, muscle stiffness and myoglobinuria" }, { - "baseId": "171252|171253|171254|171255|227282|428365|438309|443730|538373|538374", + "upstreamId": "171252|171253|171254|171255|227282|428365|438309|443730|538373|538374", "text": "Mental retardation, autosomal recessive 46" }, { - "baseId": "171257", + "upstreamId": "171257", "text": "Polyendocrine-polyneuropathy syndrome" }, { - "baseId": "171266|171267|171268|171269", + "upstreamId": "171266|171267|171268|171269", "text": "cerebellar-facial-dental syndrome" }, { - "baseId": "171266|171267|171268|171269|677444|677445", + "upstreamId": "171266|171267|171268|171269|677444|677445", "text": "Cerebellofaciodental syndrome" }, { - "baseId": "171280|259816|414996|480762|480763|480764|480765|821907|918939|961274|961275|961605|964249|970801|972809", + "upstreamId": "171280|259816|414996|480762|480763|480764|480765|821907|918939|961274|961275|961605|964249|970801|972809", "text": "Epileptic encephalopathy, infantile or early childhood 2" }, { - "baseId": "171283|581245|581246|614541|918648", + "upstreamId": "171283|581245|581246|614541|918648", "text": "Cardiac conduction disease with or without dilated cardiomyopathy" }, { - "baseId": "171288|171289|181485|446936|446939|446981|446987|514865|514896|514926|556509|556512|626468|626469|626470|626471|626472|626473|626474|626475|626476|626477|745491|745492|818829|818830|822358|903498|921534|929889|929890|941322|941323|951980|960396", + "upstreamId": "171288|171289|181485|446936|446939|446981|446987|514865|514896|514926|556509|556512|626468|626469|626470|626471|626472|626473|626474|626475|626476|626477|745491|745492|818829|818830|822358|903498|921534|929889|929890|941322|941323|951980|960396", "text": "Immunodeficiency 38 with basal ganglia calcification" }, { - "baseId": "171705|171706|171707|204572|206797|243939|249882|249883|249884|249887|249888|249889|249890|249891|425368|425369|427800|427801|427804|427805|427809|427810|427811|447869|448028|448165|515840|515842|515848|515870|515877|515878|515880|515962|556531|557045|557047|557049|557262|557264|558495|558497|558499|614217|614218|627808|627809|627810|627811|627812|627813|627814|627815|627816|627817|627818|627819|627820|627821|627822|627823|650658|707388|707389|718949|730001|732417|732418|732419|746455|746456|746457|761898|761899|761900|800983|823927|823928|823929|823930|823931|823932|823933|823934|823935|823936|823937|823938|823939|823940|823941|823942|823943|823944|823945|918635|922005|922006|922007|922008|922009|930481|930482|941927|941928|941929|941930|941931|941932|941933|952400|952401|952402|952403|952404", + "upstreamId": "171705|171706|171707|204572|206797|243939|249882|249883|249884|249887|249888|249889|249890|249891|425368|425369|427800|427801|427804|427805|427809|427810|427811|447869|448028|448165|515840|515842|515848|515870|515877|515878|515880|515962|556531|557045|557047|557049|557262|557264|558495|558497|558499|614217|614218|627808|627809|627810|627811|627812|627813|627814|627815|627816|627817|627818|627819|627820|627821|627822|627823|650658|707388|707389|718949|730001|732417|732418|732419|746455|746456|746457|761898|761899|761900|800983|823927|823928|823929|823930|823931|823932|823933|823934|823935|823936|823937|823938|823939|823940|823941|823942|823943|823944|823945|918635|922005|922006|922007|922008|922009|930481|930482|941927|941928|941929|941930|941931|941932|941933|952400|952401|952402|952403|952404", "text": "Neutropenia, severe congenital, 7, autosomal recessive" }, { - "baseId": "171728|171729|171730|171731|171732", + "upstreamId": "171728|171729|171730|171731|171732", "text": "Paternal uniparental disomy of chromosome 14" }, { - "baseId": "171761|171762|359201|612617|622991|654719", + "upstreamId": "171761|171762|359201|612617|622991|654719", "text": "Stickler syndrome" }, { - "baseId": "171767|171768|171769|171770|211429|481146|682322", + "upstreamId": "171767|171768|171769|171770|211429|481146|682322", "text": "Perrault syndrome 5" }, { - "baseId": "171783|171784|171785", + "upstreamId": "171783|171784|171785", "text": "Mesoaxial synostotic syndactyly with phalangeal reduction" }, { - "baseId": "171796|171797|171798|171799|171800|260554|354262|368072|368366|966051", + "upstreamId": "171796|171797|171798|171799|171800|260554|354262|368072|368366|966051", "text": "Leukodystrophy, hypomyelinating, 9" }, { - "baseId": "171806|171807|171808|205009|215062|215063|367150|368164|578409|790320|790321|790322|790323|798518|798519|798520|903519|906376|918793", + "upstreamId": "171806|171807|171808|205009|215062|215063|367150|368164|578409|790320|790321|790322|790323|798518|798519|798520|903519|906376|918793", "text": "Dyskinesia, familial, with facial myokymia" }, { - "baseId": "171811|255744|255745|293417|294628|294630|294633|294634|294636|294637|294640|294641|294645|294649|294651|294655|294658|294660|294666|294667|296136|296144|296145|296153|296179|296195|296211|299848|299856|299859|299868|299878|299881|299888|299890|299903|299912|299913|299916|299919|299923|299924|299930|299932|299935|299943|299944|299952|299953|299956|299958|299959|299963|299964|299966|299973|299975|299976|299977|299978|325355|325357|325358|332363|335034|335036|335039|341491|341499|341504|342991|342992|342995|342996|342998|343001|343005|343006|353674|620776|691637|691638|892507|892508|892509|892510|892511|892512|892513|892514|892515|892516|892517|892518|892519|892520|892521|892522|892523|892524|892525|892526|892527|892528|892529|892530|892531|892532|892533|892534|892535|892536|896006|896007", + "upstreamId": "171811|255744|255745|293417|294628|294630|294633|294634|294636|294637|294640|294641|294645|294649|294651|294655|294658|294660|294666|294667|296136|296144|296145|296153|296179|296195|296211|299848|299856|299859|299868|299878|299881|299888|299890|299903|299912|299913|299916|299919|299923|299924|299930|299932|299935|299943|299944|299952|299953|299956|299958|299959|299963|299964|299966|299973|299975|299976|299977|299978|325355|325357|325358|332363|335034|335036|335039|341491|341499|341504|342991|342992|342995|342996|342998|343001|343005|343006|353674|620776|691637|691638|892507|892508|892509|892510|892511|892512|892513|892514|892515|892516|892517|892518|892519|892520|892521|892522|892523|892524|892525|892526|892527|892528|892529|892530|892531|892532|892533|892534|892535|892536|896006|896007", "text": "Parkinson Disease, Dominant" }, { - "baseId": "171848|171849|171850|171851", + "upstreamId": "171848|171849|171850|171851", "text": "Macular dystrophy, vitelliform, 4" }, { - "baseId": "171866|171867|171874", + "upstreamId": "171866|171867|171874", "text": "Absent or delayed speech development" }, { - "baseId": "171866|171867|243985|263200|263355|361071|679509|679510|679511|679512|679513", + "upstreamId": "171866|171867|243985|263200|263355|361071|679509|679510|679511|679512|679513", "text": "Feeding difficulties" }, { - "baseId": "171866|189154|263234|859391", + "upstreamId": "171866|189154|263234|859391", "text": "Generalized seizures" }, { - "baseId": "171894|172292|178417|178418|178847|260442|264380|353897|438896|481817|514570|539011|550362|550607|550608|579357|589839|608878|611467|615239|622391|626176|679827|790801|798598|798599|806379|816467|964302|964923|970881|972721|973102|976655|976656", + "upstreamId": "171894|172292|178417|178418|178847|260442|264380|353897|438896|481817|514570|539011|550362|550607|550608|579357|589839|608878|611467|615239|622391|626176|679827|790801|798598|798599|806379|816467|964302|964923|970881|972721|973102|976655|976656", "text": "Mental retardation, autosomal dominant 32" }, { - "baseId": "171907|171908", + "upstreamId": "171907|171908", "text": "Aortic aneurysm, familial thoracic 9" }, { - "baseId": "171911|171912|171913|171914|171915|171916|188238|188239|188240|188241|247600|247601|247602|247606", + "upstreamId": "171911|171912|171913|171914|171915|171916|188238|188239|188240|188241|247600|247601|247602|247606", "text": "Burn-McKeown syndrome" }, { - "baseId": "171920|171921|171922|724328|788848|961786", + "upstreamId": "171920|171921|171922|724328|788848|961786", "text": "Peroxisomal fatty acyl-coa reductase 1 disorder" }, { - "baseId": "171923|171924|171925|171926|171927|215293|361384|361385|425577|428210|428211|451561|452760|452763|452764|452765|452766|452768|452772|452782|452784|452786|453123|453128|453136|453139|453140|453141|453143|453145|453152|453162|453166|453169|453171|453180|453182|453184|453493|453494|453505|453507|453511|453516|453520|453522|453525|453538|453539|453547|453550|453552|453556|519592|519594|519595|519663|519863|519883|519884|519885|519889|519894|519898|519899|559185|559672|559674|559676|561803|561813|563302|563308|563311|563312|631780|631781|631782|631783|631784|631785|631786|631787|631788|631789|631790|631791|651130|679952|679953|686463|691481|691483|691484|698280|698282|734286|781800|828549|828550|828551|828552|828553|828554|828555|828556|828557|828558|828559|828560|828561|828562|828563|828564|828565|828566|923346|923347|923348|923349|923350|923351|923352|923353|932081|932082|932083|932084|932085|943699|943700|943701|943702|943703|953587|953588|953589|953590|953591", + "upstreamId": "171923|171924|171925|171926|171927|215293|361384|361385|425577|428210|428211|451561|452760|452763|452764|452765|452766|452768|452772|452782|452784|452786|453123|453128|453136|453139|453140|453141|453143|453145|453152|453162|453166|453169|453171|453180|453182|453184|453493|453494|453505|453507|453511|453516|453520|453522|453525|453538|453539|453547|453550|453552|453556|519592|519594|519595|519663|519863|519883|519884|519885|519889|519894|519898|519899|559185|559672|559674|559676|561803|561813|563302|563308|563311|563312|631780|631781|631782|631783|631784|631785|631786|631787|631788|631789|631790|631791|651130|679952|679953|686463|691481|691483|691484|698280|698282|734286|781800|828549|828550|828551|828552|828553|828554|828555|828556|828557|828558|828559|828560|828561|828562|828563|828564|828565|828566|923346|923347|923348|923349|923350|923351|923352|923353|932081|932082|932083|932084|932085|943699|943700|943701|943702|943703|953587|953588|953589|953590|953591", "text": "Nemaline myopathy 10" }, { - "baseId": "171928|171929|171930|188138|429367|980846", + "upstreamId": "171928|171929|171930|188138|429367|980846", "text": "Thrombocytopenia 5" }, { - "baseId": "172081|172082|172083|172085|201742|201746|201752|614274", + "upstreamId": "172081|172082|172083|172085|201742|201746|201752|614274", "text": "Macular dystrophy with central cone involvement" }, { - "baseId": "172087|172088|172089|172090|172091|172092|792721|972780", + "upstreamId": "172087|172088|172089|172090|172091|172092|792721|972780", "text": "Filippi syndrome" }, { - "baseId": "172094|172095|181391|921215|935743|980342", + "upstreamId": "172094|172095|181391|921215|935743|980342", "text": "Polycystic liver disease 4 with or without kidney cysts" }, { - "baseId": "172096", + "upstreamId": "172096", "text": "POLYCYSTIC LIVER DISEASE 4 WITH KIDNEY CYSTS" }, { - "baseId": "172097", + "upstreamId": "172097", "text": "Platelet-type bleeding disorder 19" }, { - "baseId": "172098|172099|172100|172101|172102|260112|364006|464840|465651|466371|466390|466396|466397|466401|466637|529923|529924|529931|530005|530010|530011|530432|530436|530441|570119|570129|574041|577544|613033|644605|644606|644607|644608|644609|644610|644611|644612|644613|652846|653017|653020|653263|703654|726607|726608|755138|755139|770872|791585|798698|798699|802012|843760|843761|843762|843763|843764|843765|843766|843767|843768|843769|852111|852656|852658|852819|920361|927782|927783|937416|949371|949372|949373|957735|957736|960154|960155|960156", + "upstreamId": "172098|172099|172100|172101|172102|260112|364006|464840|465651|466371|466390|466396|466397|466401|466637|529923|529924|529931|530005|530010|530011|530432|530436|530441|570119|570129|574041|577544|613033|644605|644606|644607|644608|644609|644610|644611|644612|644613|652846|653017|653020|653263|703654|726607|726608|755138|755139|770872|791585|798698|798699|802012|843760|843761|843762|843763|843764|843765|843766|843767|843768|843769|852111|852656|852658|852819|920361|927782|927783|937416|949371|949372|949373|957735|957736|960154|960155|960156", "text": "Generalized epilepsy with febrile seizures plus, type 9" }, { - "baseId": "172103|172104", + "upstreamId": "172103|172104", "text": "Microcephaly and chorioretinopathy, autosomal recessive, 2" }, { - "baseId": "172121", + "upstreamId": "172121", "text": "Leptin dysfunction" }, { - "baseId": "172130|172131|172132|172133|172134|172135|966395|966396|966397|966398", + "upstreamId": "172130|172131|172132|172133|172134|172135|966395|966396|966397|966398", "text": "Catel Manzke syndrome" }, { - "baseId": "172139|172140|172141|172142|172143|172144", + "upstreamId": "172139|172140|172141|172142|172143|172144", "text": "Aldosterone-producing adrenal cortex adenoma" }, { - "baseId": "172146|172147|172148|172149|172150|172151|172152|172153|172154|172155|172156|172157|172158|172159|172160|214763|214765|352059|438582|792122", + "upstreamId": "172146|172147|172148|172149|172150|172151|172152|172153|172154|172155|172156|172157|172158|172159|172160|214763|214765|352059|438582|792122", "text": "Deafness, X-linked 5" }, { - "baseId": "172164|792613", + "upstreamId": "172164|792613", "text": "Retinal dystrophy and obesity" }, { - "baseId": "172170", + "upstreamId": "172170", "text": "Lacrimal duct defect" }, { - "baseId": "172185|172186|172187|172188|172189|172190|172191|255889|466018|466721|466723|467002|467005|530361|530563|530778|570496|645006|652665|693934|820885|844360|927962|949589|949590", + "upstreamId": "172185|172186|172187|172188|172189|172190|172191|255889|466018|466721|466723|467002|467005|530361|530563|530778|570496|645006|652665|693934|820885|844360|927962|949589|949590", "text": "Ayme-gripp syndrome" }, { - "baseId": "172192|215431|441418|460935|460938|460939|460945|461027|461032|461034|461316|461321|461324|461328|461345|461346|461751|461752|481404|526007|526059|526065|526066|526067|526076|526077|526141|526143|526144|526150|526153|526506|526508|526512|526515|564515|564518|564523|564525|564527|565569|565572|565574|565577|567099|567100|567101|567113|567114|567116|570411|570413|570421|579718|639845|639846|639847|639848|639849|639850|639851|679776|712747|724341|724342|737904|752601|752603|768368|768369|768370|768373|802001|820345|838159|838160|838161|838162|838163|838164|838165|838166|838167|838168|838169|838170|838171|838172|838173|917083|919344|919345|919346|919347|926164|926165|926166|935449|935450|935451|935452|935453|947377|947378|947379|947380|970931", + "upstreamId": "172192|215431|441418|460935|460938|460939|460945|461027|461032|461034|461316|461321|461324|461328|461345|461346|461751|461752|481404|526007|526059|526065|526066|526067|526076|526077|526141|526143|526144|526150|526153|526506|526508|526512|526515|564515|564518|564523|564525|564527|565569|565572|565574|565577|567099|567100|567101|567113|567114|567116|570411|570413|570421|579718|639845|639846|639847|639848|639849|639850|639851|679776|712747|724341|724342|737904|752601|752603|768368|768369|768370|768373|802001|820345|838159|838160|838161|838162|838163|838164|838165|838166|838167|838168|838169|838170|838171|838172|838173|917083|919344|919345|919346|919347|926164|926165|926166|935449|935450|935451|935452|935453|947377|947378|947379|947380|970931", "text": "Epilepsy, progressive myoclonic 7" }, { - "baseId": "172193|172193|172194|172195|172196|263996|578375|676935", + "upstreamId": "172193|172193|172194|172195|172196|263996|578375|676935", "text": "Temple-Baraitser syndrome" }, { - "baseId": "172193|172193|181517|181518|181519|181520|181521|181522|263996|578375|918595|918596", + "upstreamId": "172193|172193|181517|181518|181519|181520|181521|181522|263996|578375|918595|918596", "text": "Zimmermann-Laband syndrome 1" }, { - "baseId": "172283|172284|421230|626105|679039", + "upstreamId": "172283|172284|421230|626105|679039", "text": "Mental retardation, autosomal recessive 47" }, { - "baseId": "172292|178380|178847|328813|328823|328826|328846|328848|328852|328853|328862|328871|328876|328886|328887|328892|328893|338815|338817|338819|338821|338828|338833|338843|338846|338852|338857|338860|338861|338864|338872|338877|338883|338885|338887|338915|338918|344859|344868|344882|344884|344898|344906|344907|344927|344930|346223|346226|346251|346252|346253|346256|346265|346267|346272|353443|353444|420148|424651|622210|858617|965287|965292", + "upstreamId": "172292|178380|178847|328813|328823|328826|328846|328848|328852|328853|328862|328871|328876|328886|328887|328892|328893|338815|338817|338819|338821|338828|338833|338843|338846|338852|338857|338860|338861|338864|338872|338877|338883|338885|338887|338915|338918|344859|344868|344882|344884|344898|344906|344907|344927|344930|346223|346226|346251|346252|346253|346256|346265|346267|346272|353443|353444|420148|424651|622210|858617|965287|965292", "text": "Syndromic intellectual disability" }, { - "baseId": "172295", + "upstreamId": "172295", "text": "Gillessen-Kaesbach-Nishimura dysplasia" }, { - "baseId": "172305", + "upstreamId": "172305", "text": "Chronic atrial and intestinal dysrhythmia" }, { - "baseId": "172315|172315|172316|172317|172317|172318|172319|366990|366994|368248|500572|518913|519128|538972|562485|562493|630982|630983|630984|654315|827613|827614|918806|931798|943367|953362", + "upstreamId": "172315|172315|172316|172317|172317|172318|172319|366990|366994|368248|500572|518913|519128|538972|562485|562493|630982|630983|630984|654315|827613|827614|918806|931798|943367|953362", "text": "Polyglucosan body myopathy 2" }, { - "baseId": "172322|172323|221321|518637|677995", + "upstreamId": "172322|172323|221321|518637|677995", "text": "Congenital heart defects, hamartomas of tongue, and polysyndactyly" }, { - "baseId": "172323|209332|677995|906242|906289", + "upstreamId": "172323|209332|677995|906242|906289", "text": "Orofaciodigital syndrome" }, { - "baseId": "172604|228525", + "upstreamId": "172604|228525", "text": "Autosomal dominant hypohidrotic ectodermal dysplasia" }, { - "baseId": "172928", + "upstreamId": "172928", "text": "ACTN2-related disorders" }, { - "baseId": "174350", + "upstreamId": "174350", "text": "EYA4-Related Disorders" }, { - "baseId": "174363", + "upstreamId": "174363", "text": "COL11A2- Related Disorder" }, { - "baseId": "174394|174395|174533|174534|304873|308593|308600|308601|313748|313768|313769|313803|313804|313861|313869|313878|353833", + "upstreamId": "174394|174395|174533|174534|304873|308593|308600|308601|313748|313768|313769|313803|313804|313861|313869|313878|353833", "text": "Pulmonary Surfactant Metabolism Dysfunction, Dominant" }, { - "baseId": "174394|174395|174533|174534|191720|290057|290068|290121|290793|290900|294466|294471|294510|294514|294538|308600|308601|313748|313803|313804|313806|313869|313871|313878|317967|317979|327468|327473|328093|328424|329345|329393|332645|332647|332648|337343|338383|340987|343611|344449|345113|345864|345866|353323|353324|353833|365080|365083|365084|365092|365094|365167|365174|365182|365254|365272|414799|421243|433772|447899|447903|447904|447911|448057|448071|448116|448118|448227|488684|515872|515927|515997|619999|620000|627850|864414|864415|864416|864417|864419|864421|864422|864424|864425|864427|864430|864431|864433|864434|864435|864436|865180|865181|865182|865183|865184", + "upstreamId": "174394|174395|174533|174534|191720|290057|290068|290121|290793|290900|294466|294471|294510|294514|294538|308600|308601|313748|313803|313804|313806|313869|313871|313878|317967|317979|327468|327473|328093|328424|329345|329393|332645|332647|332648|337343|338383|340987|343611|344449|345113|345864|345866|353323|353324|353833|365080|365083|365084|365092|365094|365167|365174|365182|365254|365272|414799|421243|433772|447899|447903|447904|447911|448057|448071|448116|448118|448227|488684|515872|515927|515997|619999|620000|627850|864414|864415|864416|864417|864419|864421|864422|864424|864425|864427|864430|864431|864433|864434|864435|864436|865180|865181|865182|865183|865184", "text": "Osteogenesis Imperfecta, Recessive" }, { - "baseId": "175345|528518", + "upstreamId": "175345|528518", "text": "Malignant germ cell tumor of ovary" }, { - "baseId": "175405|258727", + "upstreamId": "175405|258727", "text": "ABCC9-Related Disorders" }, { - "baseId": "175458|360837|360838|362134", + "upstreamId": "175458|360837|360838|362134", "text": "Dyspnea" }, { - "baseId": "175969|237629", + "upstreamId": "175969|237629", "text": "Deafness, autosomal dominant 16" }, { - "baseId": "176408", + "upstreamId": "176408", "text": "Vitelliform macular dystrophy 1" }, { - "baseId": "176639", + "upstreamId": "176639", "text": "USH1G-Related Disorders" }, { - "baseId": "176733|344674|349635|349640|349645|349648|349657|349678|350651|350661|350674|350678|353581|514276|612109", + "upstreamId": "176733|344674|349635|349640|349645|349648|349657|349678|350651|350661|350674|350678|353581|514276|612109", "text": "Arteriohepatic dysplasia" }, { - "baseId": "176758", + "upstreamId": "176758", "text": "Childhood ganglioglioma" }, { - "baseId": "176785|513989", + "upstreamId": "176785|513989", "text": "Dural ectasia" }, { - "baseId": "176785|513903|513989", + "upstreamId": "176785|513903|513989", "text": "Venous malformation" }, { - "baseId": "176785|513989", + "upstreamId": "176785|513989", "text": "Abnormality of digit" }, { - "baseId": "176924|178142|181536|275973|275974|275979|275984|275985|275990|275992|275993|276005|276006|276011|276018|276019|276020|276023|276024|276030|276031|276037|276052|276053|276186|276189|276198|276199|276201|276202|276204|276205|276221|276222|276230|276231|276234|276235|276236|276244|276246|276247|276248|276251|276252|276256|276257|276261|276262|276263|276316|276323|276331|276335|276336|276337|276339|276364|276379|276383|276384|276385|276388|276393|276394|276395|276396|276397|276398|276406|276408|276409|276410|276434|276435|276437|276446|276447|276450|276453|276454|276457|276458|276460|276461|276462|276463|276478|276479|276480|276483|276489|276491|276492|276493|276494|276503|276508|276517|276525|276526|276527|276533|276537|276549|276563|276564|438861|439303|696006|706602|718118|731600|731602|862015|862016|862017|862018|862019|862020|862021|862022|862023|862024|862025|862026|862027|862028|862029|862030|862031|862032|862033|862034|862035|862036|862037|862038|862039|862040|862041|862042|862043|862044|862045|862046|862047|862048|862049|862050|862051|862052|862053|862054|862055|862056|862057|862058|862059|862060|862061|862062|862063|862064|862065|862066|862067|862068|862069|862070|862071|862072|862073|862074|862075|862076|862077", + "upstreamId": "176924|178142|181536|275973|275974|275979|275984|275985|275990|275992|275993|276005|276006|276011|276018|276019|276020|276023|276024|276030|276031|276037|276052|276053|276186|276189|276198|276199|276201|276202|276204|276205|276221|276222|276230|276231|276234|276235|276236|276244|276246|276247|276248|276251|276252|276256|276257|276261|276262|276263|276316|276323|276331|276335|276336|276337|276339|276364|276379|276383|276384|276385|276388|276393|276394|276395|276396|276397|276398|276406|276408|276409|276410|276434|276435|276437|276446|276447|276450|276453|276454|276457|276458|276460|276461|276462|276463|276478|276479|276480|276483|276489|276491|276492|276493|276494|276503|276508|276517|276525|276526|276527|276533|276537|276549|276563|276564|438861|439303|696006|706602|718118|731600|731602|862015|862016|862017|862018|862019|862020|862021|862022|862023|862024|862025|862026|862027|862028|862029|862030|862031|862032|862033|862034|862035|862036|862037|862038|862039|862040|862041|862042|862043|862044|862045|862046|862047|862048|862049|862050|862051|862052|862053|862054|862055|862056|862057|862058|862059|862060|862061|862062|862063|862064|862065|862066|862067|862068|862069|862070|862071|862072|862073|862074|862075|862076|862077", "text": "Caudal regression sequence" }, { - "baseId": "176988", + "upstreamId": "176988", "text": "Inflammatory bowel disease 13" }, { - "baseId": "176988|227763", + "upstreamId": "176988|227763", "text": "ondansetron response - Efficacy" }, { - "baseId": "176988|227752|538603", + "upstreamId": "176988|227752|538603", "text": "simvastatin response - Efficacy" }, { - "baseId": "177220|181445|354301|360916|361783|361784|361786|361787|361788|375817|442819|514150|514159|514160|537303|556459|800989|961430|961431|961432|961433|961434|961435", + "upstreamId": "177220|181445|354301|360916|361783|361784|361786|361787|361788|375817|442819|514150|514159|514160|537303|556459|800989|961430|961431|961432|961433|961434|961435", "text": "Optic atrophy" }, { - "baseId": "177240|186055", + "upstreamId": "177240|186055", "text": "Abnormality of the intrahepatic bile duct" }, { - "baseId": "177312", + "upstreamId": "177312", "text": "X-linked intellectual disability" }, { - "baseId": "177428", + "upstreamId": "177428", "text": "Guanidinoacetate methyltransferase (GAMT) deficiency" }, { - "baseId": "177497|276791|276848|276849|276850|277130|277705|277709|277816|349939|349942|654885|967146", + "upstreamId": "177497|276791|276848|276849|276850|277130|277705|277709|277816|349939|349942|654885|967146", "text": "Alternating hemiplegia of childhood" }, { - "baseId": "177728|205682|205683|205684|209003|404852|424905|430767|538287|611447|964596|976682|976683|976684", + "upstreamId": "177728|205682|205683|205684|209003|404852|424905|430767|538287|611447|964596|976682|976683|976684", "text": "Autism, susceptibility to, X-linked 4" }, { - "baseId": "177897", + "upstreamId": "177897", "text": "Ocular impairment" }, { - "baseId": "177923|289467|289492|292684|292690|295405|299220|353650", + "upstreamId": "177923|289467|289492|292684|292690|295405|299220|353650", "text": "Congenital Stationary Night Blindness, Dominant" }, { - "baseId": "177947|181382|193745|195045|251311|267620|292026|292033|293465|296770|296774|296776|296778|296779|296782|296783|296786|550314|889930|889931|889932|889933|889934|889935|889936|889937|889938|889939|889940|889941|889942|889943|889944|889945|889946|889947|889948|889949|889950|889951|889952|889953|889954|889955|889956|889957|889958|889959|889960|889961|889962|889963|889964|889965|889966|889967|889968|889969|889970|891736|891737", + "upstreamId": "177947|181382|193745|195045|251311|267620|292026|292033|293465|296770|296774|296776|296778|296779|296782|296783|296786|550314|889930|889931|889932|889933|889934|889935|889936|889937|889938|889939|889940|889941|889942|889943|889944|889945|889946|889947|889948|889949|889950|889951|889952|889953|889954|889955|889956|889957|889958|889959|889960|889961|889962|889963|889964|889965|889966|889967|889968|889969|889970|891736|891737", "text": "Hypoplasia of the iris" }, { - "baseId": "177947|181382|251311|267620|292032|296770|296771|296782|296786|359074|459553|459568|459812|492837|564449|628138|628139|628140|628142|638655", + "upstreamId": "177947|181382|251311|267620|292032|296770|296771|296782|296786|359074|459553|459568|459812|492837|564449|628138|628139|628140|628142|638655", "text": "Anterior segment dysgenesis 1" }, { - "baseId": "177947|181382|193745|195045|251311|267620|292026|292032|292033|293465|296770|296771|296774|296776|296778|296779|296782|296783|296786|550314|889930|889931|889932|889933|889934|889935|889936|889937|889938|889939|889940|889941|889942|889943|889944|889945|889946|889947|889948|889949|889950|889951|889952|889953|889954|889955|889956|889957|889958|889959|889960|889961|889962|889963|889964|889965|889966|889967|889968|889969|889970|891736|891737", + "upstreamId": "177947|181382|193745|195045|251311|267620|292026|292032|292033|293465|296770|296771|296774|296776|296778|296779|296782|296783|296786|550314|889930|889931|889932|889933|889934|889935|889936|889937|889938|889939|889940|889941|889942|889943|889944|889945|889946|889947|889948|889949|889950|889951|889952|889953|889954|889955|889956|889957|889958|889959|889960|889961|889962|889963|889964|889965|889966|889967|889968|889969|889970|891736|891737", "text": "PITX2-Related Eye Abnormalities" }, { - "baseId": "178047", + "upstreamId": "178047", "text": "Autosomal dominant SCN1A-related disorder" }, { - "baseId": "178055|178058|191370|273736|282565|282582|282594|283206|283227|283258|283259|283267|283293|283322|284810|284837|285292|285305|285321|285329|285355|285356|285364|285367", + "upstreamId": "178055|178058|191370|273736|282565|282582|282594|283206|283227|283258|283259|283267|283293|283322|284810|284837|285292|285305|285321|285329|285355|285356|285364|285367", "text": "Congenital Indifference to Pain" }, { - "baseId": "178058|191370|273736|282565|282594|283206|283227|283258|283267|283293|283322|284810|285355|285356", + "upstreamId": "178058|191370|273736|282565|282594|283206|283227|283258|283267|283293|283322|284810|285355|285356", "text": "Familial febrile seizures" }, { - "baseId": "178171|190059", + "upstreamId": "178171|190059", "text": "Pituitary adenoma, growth hormone-secreting, 2" }, { - "baseId": "178312|178313|178314|178315|244005|418553|481391|788772|918521", + "upstreamId": "178312|178313|178314|178315|244005|418553|481391|788772|918521", "text": "Spinocerebellar ataxia, autosomal recessive 18" }, { - "baseId": "178326|918670", + "upstreamId": "178326|918670", "text": "Hypogonadotropic hypogonadism 15 with or without anosmia" }, { - "baseId": "178365|178366|178367|178369|178370", + "upstreamId": "178365|178366|178367|178369|178370", "text": "Amyotrophic lateral sclerosis 22 with or without frontotemporal dementia" }, { - "baseId": "178368", + "upstreamId": "178368", "text": "Amyotrophic lateral sclerosis 22 with frontotemporal dementia" }, { - "baseId": "178380|178381", + "upstreamId": "178380|178381", "text": "Alazami-Yuan syndrome" }, { - "baseId": "178407|178408|200688|200688|200689|200689|378642|469914|469920|469926|469931|469933|470842|470915|471374|471379|471382|471799|508104|534074|534081|534085|534165|534606|571718|573279|573283|573287|573956|573958|573964|649209|649210|649211|649212|649213|649214|649215|649216|653271|653686|694692|705821|776953|786560|821403|849084|849085|849086|849087|849088|929410|939211|939212|939213|960960", + "upstreamId": "178407|178408|200688|200688|200689|200689|378642|469914|469920|469926|469931|469933|470842|470915|471374|471379|471382|471799|508104|534074|534081|534085|534165|534606|571718|573279|573283|573287|573956|573958|573964|649209|649210|649211|649212|649213|649214|649215|649216|653271|653686|694692|705821|776953|786560|821403|849084|849085|849086|849087|849088|929410|939211|939212|939213|960960", "text": "Spinal muscular atrophy, jokela type" }, { - "baseId": "178411|190570|202181|203766|211086|215118|225802|225802|225802|225802|263190|263260|263262|263282|263307|263324|263325|263326|263327|263328|263330|263331|263357|263375|263388|361081|430979|514017|514162|514320|514321|514322|514323|514325|514326|514328|514329|514330|514331|514333|514334|514335|514336|539432|550127|576328|581716|590061|619844|626018|626019|802091|805066|822302|921237|921238|921239|921241|921242|921243|921253|921255|921257|921258|921259|921448|965493|965570|965574|965578|966049|971452|971454|976699|980514|980662|980684|980687|980698", + "upstreamId": "178411|190570|202181|203766|211086|215118|225802|225802|225802|225802|263190|263260|263262|263282|263307|263324|263325|263326|263327|263328|263330|263331|263357|263375|263388|361081|430979|514017|514162|514320|514321|514322|514323|514325|514326|514328|514329|514330|514331|514333|514334|514335|514336|539432|550127|576328|581716|590061|619844|626018|626019|802091|805066|822302|921237|921238|921239|921241|921242|921243|921253|921255|921257|921258|921259|921448|965493|965570|965574|965578|966049|971452|971454|976699|980514|980662|980684|980687|980698", "text": "Autistic behavior" }, { - "baseId": "178412|178416|362591|362592|362593|362594|431934|861144|970520", + "upstreamId": "178412|178416|362591|362592|362593|362594|431934|861144|970520", "text": "Dysmorphic features" }, { - "baseId": "178413", + "upstreamId": "178413", "text": "generalized epilepsy with atypical absence seizures" }, { - "baseId": "178413|178414|178415", + "upstreamId": "178413|178414|178415", "text": "tremors" }, { - "baseId": "178414", + "upstreamId": "178414", "text": "generalized epilepsy with atypical absence and tonic/myoclonic seizures" }, { - "baseId": "178417|178418|816467|963652|963653|963655", + "upstreamId": "178417|178418|816467|963652|963653|963655", "text": "KAT6A syndrome" }, { - "baseId": "178441|178493|178598|178708|178758|224301", + "upstreamId": "178441|178493|178598|178708|178758|224301", "text": "Arterial dissection" }, { - "baseId": "178449|178483", + "upstreamId": "178449|178483", "text": "Diastolic dysfunction" }, { - "baseId": "178505", + "upstreamId": "178505", "text": "Familial abdominal aortic aneurysm 1" }, { - "baseId": "178532", + "upstreamId": "178532", "text": "Channelopathy" }, { - "baseId": "178551", + "upstreamId": "178551", "text": "Subvalvular aortic stenosis" }, { - "baseId": "178663", + "upstreamId": "178663", "text": "AV Block Third Degree Adverse Event" }, { - "baseId": "178708", + "upstreamId": "178708", "text": "Cutaneous polyarteritis nodosa" }, { - "baseId": "178762", + "upstreamId": "178762", "text": "Trifascicular block on electrocardiogram" }, { - "baseId": "178768", + "upstreamId": "178768", "text": "Fatal infantile mitochondrial cardiomyopathy" }, { - "baseId": "178780|178781|178782|178783|178784|178785|481393|481394|481395|481396|681812|681813|788923|919840|919841|961346", + "upstreamId": "178780|178781|178782|178783|178784|178785|481393|481394|481395|481396|681812|681813|788923|919840|919841|961346", "text": "Combined oxidative phosphorylation deficiency 23" }, { - "baseId": "178798|178799|178800|178801|178802|178803", + "upstreamId": "178798|178799|178800|178801|178802|178803", "text": "Lissencephaly 6, with microcephaly" }, { - "baseId": "178813|638465|918014|962617|966641|966642|966643|966644|966645|966646|966647|966648|966649|966650|966651|966652|966653|966654|966655|966656|966657|966660|966661|966662|966663|983679", + "upstreamId": "178813|638465|918014|962617|966641|966642|966643|966644|966645|966646|966647|966648|966649|966650|966651|966652|966653|966654|966655|966656|966657|966660|966661|966662|966663|983679", "text": "Pituitary stalk interruption syndrome" }, { - "baseId": "178823|178824|178825|178826|538488|788932|802227|802228|816006|816007|919896|919897|920413", + "upstreamId": "178823|178824|178825|178826|538488|788932|802227|802228|816006|816007|919896|919897|920413", "text": "CODAS syndrome" }, { - "baseId": "178827|178828|178829|178830|188289|216922|216923|377022|429761|429762|429763|429764|429765|429766|429767|429768|429769|429771|465728|465921|465924|529468|529789|529789|530043|530047|567680|569539|569975|569989|573715|619853|643922|643923|643924|643925|643926|643927|643928|643929|643930|643931|643932|643933|643934|643935|652689|653219|714737|714738|714739|714740|726435|726436|739961|739962|744886|754902|754908|754912|760259|779752|791523|791524|791524|818786|820766|843113|843114|843115|843116|843117|843118|843119|843120|843121|843122|843123|843124|852625|927565|927566|927567|927568|937221|937222|937223|937224|937225|937226|941111|941112|949168|949169|949170|949171|949172|949173|949174|949175|957628|960132|960133|961622", + "upstreamId": "178827|178828|178829|178830|188289|216922|216923|377022|429761|429762|429763|429764|429765|429766|429767|429768|429769|429771|465728|465921|465924|529468|529789|529789|530043|530047|567680|569539|569975|569989|573715|619853|643922|643923|643924|643925|643926|643927|643928|643929|643930|643931|643932|643933|643934|643935|652689|653219|714737|714738|714739|714740|726435|726436|739961|739962|744886|754902|754908|754912|760259|779752|791523|791524|791524|818786|820766|843113|843114|843115|843116|843117|843118|843119|843120|843121|843122|843123|843124|852625|927565|927566|927567|927568|937221|937222|937223|937224|937225|937226|941111|941112|949168|949169|949170|949171|949172|949173|949174|949175|957628|960132|960133|961622", "text": "Dyskeratosis congenita, autosomal recessive 6" }, { - "baseId": "178841|802251|802252|802253|802254|802255|980948", + "upstreamId": "178841|802251|802252|802253|802254|802255|980948", "text": "Juvenile arthritis due to defect in LACC1" }, { - "baseId": "178848|178849|178850|178851", + "upstreamId": "178848|178849|178850|178851", "text": "Amelogenesis imperfecta, type IH" }, { - "baseId": "178852|178853|178854|513568|792758|906246", + "upstreamId": "178852|178853|178854|513568|792758|906246", "text": "Nephronophthisis 19" }, { - "baseId": "178852|178853|404667|404668|404669|404670|404670|455456|455458|455557|456066|456283|456294|456302|493774|501577|560523|560668|584282|585186|585191|586446|586503|634783|634784|699477|792758|831759|831760|831761|933255|961848", + "upstreamId": "178852|178853|404667|404668|404669|404670|404670|455456|455458|455557|456066|456283|456294|456302|493774|501577|560523|560668|584282|585186|585191|586446|586503|634783|634784|699477|792758|831759|831760|831761|933255|961848", "text": "Sclerosing cholangitis, neonatal" }, { - "baseId": "178855|178856|178857", + "upstreamId": "178855|178856|178857", "text": "Fibrosis of extraocular muscles, congenital, 5" }, { - "baseId": "178858", + "upstreamId": "178858", "text": "Premature coronary artery disease" }, { - "baseId": "178864|178865|178866|178867|178868|513074|513075|513076|818261|818262|818263|962721|962722", + "upstreamId": "178864|178865|178866|178867|178868|513074|513075|513076|818261|818262|818263|962721|962722", "text": "Focal segmental glomerulosclerosis 9" }, { - "baseId": "178869|178871|178872|536756", + "upstreamId": "178869|178871|178872|536756", "text": "Ventriculomegaly with cystic kidney disease" }, { - "baseId": "178886|178887|178888|178889", + "upstreamId": "178886|178887|178888|178889", "text": "Cataplexy and narcolepsy" }, { - "baseId": "178906|205536", + "upstreamId": "178906|205536", "text": "Cavitary optic disc anomalies" }, { - "baseId": "180112|682317", + "upstreamId": "180112|682317", "text": "Cerebellar hemangioblastoma" }, { - "baseId": "180112", + "upstreamId": "180112", "text": "Spinal hemangioblastoma" }, { - "baseId": "180112", + "upstreamId": "180112", "text": "Retinal capillary hemangioma" }, { - "baseId": "180112|360844|360988|514057", + "upstreamId": "180112|360844|360988|514057", "text": "Pancreatic cysts" }, { - "baseId": "181116", + "upstreamId": "181116", "text": "Congenital heart defects, multiple types, 3" }, { - "baseId": "181165|181166|271566|363718|365258|365262|365560|448378|448387|448399|448456|448459|516094|516095|516133|516135|628286|628287|628288|650765|650776|690680|696917|824547|824548|824549|824550|918666|930709|930710|942146|942147|942148", + "upstreamId": "181165|181166|271566|363718|365258|365262|365560|448378|448387|448399|448456|448459|516094|516095|516133|516135|628286|628287|628288|650765|650776|690680|696917|824547|824548|824549|824550|918666|930709|930710|942146|942147|942148", "text": "Myasthenic syndrome, congenital, 15" }, { - "baseId": "181172|513496|538330|967251", + "upstreamId": "181172|513496|538330|967251", "text": "Myopathy, vacuolar, with casq1 aggregates" }, { - "baseId": "181222|434816|921468", + "upstreamId": "181222|434816|921468", "text": "Early-onset coronary artery disease" }, { - "baseId": "181284|181285|425378|621000|621001|621002|621004|970694|970695", + "upstreamId": "181284|181285|425378|621000|621001|621002|621004|970694|970695", "text": "Developmental and epileptic encephalopathy, 75" }, { - "baseId": "181286|181287|372457|408483|408484|434641|535321|621005|621006|621007|621011|621012|621014|791182|861035|959510", + "upstreamId": "181286|181287|372457|408483|408484|434641|535321|621005|621006|621007|621011|621012|621014|791182|861035|959510", "text": "Combined oxidative phosphorylation deficiency 24" }, { - "baseId": "181294", + "upstreamId": "181294", "text": "decreased blood alpha-hydroxyisovalerate levels" }, { - "baseId": "181308|791385", + "upstreamId": "181308|791385", "text": "Lethal congenital contracture syndrome 6" }, { - "baseId": "181374|181375|181376|181377|181378|250390|250391|250392|250393|250394|250395|448961|448965|448980|448985|449150|449156|449246|449248|449250|449251|449253|449254|449278|449281|516726|516727|516728|516820|516821|516824|557692|558909|559392|628981|628982|628983|628984|628985|628986|628987|683134|683135|690890|697156|762416|819081|825201|825202|825203|825204|825205|825206|825207|922406|922407|922408|922409|930973|930974|930975|942402|942403|942404|942405|942406|952785", + "upstreamId": "181374|181375|181376|181377|181378|250390|250391|250392|250393|250394|250395|448961|448965|448980|448985|449150|449156|449246|449248|449250|449251|449253|449254|449278|449281|516726|516727|516728|516820|516821|516824|557692|558909|559392|628981|628982|628983|628984|628985|628986|628987|683134|683135|690890|697156|762416|819081|825201|825202|825203|825204|825205|825206|825207|922406|922407|922408|922409|930973|930974|930975|942402|942403|942404|942405|942406|952785", "text": "Nemaline myopathy 9" }, { - "baseId": "181397", + "upstreamId": "181397", "text": "Brain malformation" }, { - "baseId": "181398|244080|244081", + "upstreamId": "181398|244080|244081", "text": "Pontocerebellar hypoplasia, type 2f" }, { - "baseId": "181401|226233|511244|970679|970680", + "upstreamId": "181401|226233|511244|970679|970680", "text": "Epileptic encephalopathy, early infantile, 38" }, { - "baseId": "181402|452274|918571", + "upstreamId": "181402|452274|918571", "text": "Hemiparesis" }, { - "baseId": "181402|181451|181452|181464|362521|444411|578517|578518|621026|621038", + "upstreamId": "181402|181451|181452|181464|362521|444411|578517|578518|621026|621038", "text": "Hydrocephalus" }, { - "baseId": "181406", + "upstreamId": "181406", "text": "Regression of motor development with severe dystonia and corresponding basal ganglia lesions" }, { - "baseId": "181407|198685|360828", + "upstreamId": "181407|198685|360828", "text": "Waddling gait" }, { - "baseId": "181407", + "upstreamId": "181407", "text": "Marked Hypotonia" }, { - "baseId": "181408", + "upstreamId": "181408", "text": "Classical primary microcephaly" }, { - "baseId": "181409|181423|181424|181440|181448|243981|243987|360942|361073|361074|361075|361076|624127|624128|624129|624130|624131|624132|624133|624134|624135|624136|624137|624138", + "upstreamId": "181409|181423|181424|181440|181448|243981|243987|360942|361073|361074|361075|361076|624127|624128|624129|624130|624131|624132|624133|624134|624135|624136|624137|624138", "text": "Brain atrophy" }, { - "baseId": "181409|624131|624133|624134|624137|624138|708891|904111|904112|904113|904114|904115", + "upstreamId": "181409|624131|624133|624134|624137|624138|708891|904111|904112|904113|904114|904115", "text": "Neurodevelopmental disorder and structural brain anomalies with or without seizures and spasticity" }, { - "baseId": "181410|227149|227150|227151|227152|227153|227154|227155|359599|425213|575514|578425|624065|626141|626380|626386|790428|792740|798540|798541|799338|903530|904199|920199|963132|964731|965658|965887|965888|966170|972783", + "upstreamId": "181410|227149|227150|227151|227152|227153|227154|227155|359599|425213|575514|578425|624065|626141|626380|626386|790428|792740|798540|798541|799338|903530|904199|920199|963132|964731|965658|965887|965888|966170|972783", "text": "Hypotonia, infantile, with psychomotor retardation and characteristic facies 3" }, { - "baseId": "181412|480596|480597|480598|480599|480600|513542|788770|792744|918154|918875|918876|970533|970534", + "upstreamId": "181412|480596|480597|480598|480599|480600|513542|788770|792744|918154|918875|918876|970533|970534", "text": "Alkuraya-Kucinskas syndrome" }, { - "baseId": "181415|181418|247328|247329|247330|247331|247332|263257|263275|263348|263353|263355|263380|361695|361696|406053|514128|535693|581713|801072|857396|966614|966618|969329", + "upstreamId": "181415|181418|247328|247329|247330|247331|247332|263257|263275|263348|263353|263355|263380|361695|361696|406053|514128|535693|581713|801072|857396|966614|966618|969329", "text": "Failure to thrive" }, { - "baseId": "181416", + "upstreamId": "181416", "text": "Cerebral ischemia" }, { - "baseId": "181419", + "upstreamId": "181419", "text": "Neurodegenerative illness progressing to crippling dystonia and death with relentless cerebral atrophy" }, { - "baseId": "181420", + "upstreamId": "181420", "text": "Severe primary microcephaly" }, { - "baseId": "181423|243981|243987|263279|362134|514032|789341|789342|789343|805096", + "upstreamId": "181423|243981|243987|263279|362134|514032|789341|789342|789343|805096", "text": "Hypoplasia of the corpus callosum" }, { - "baseId": "181423|514159|514160", + "upstreamId": "181423|514159|514160", "text": "CNS hypomyelination" }, { - "baseId": "181424|181445|201836|259817", + "upstreamId": "181424|181445|201836|259817", "text": "Intractable seizure" }, { - "baseId": "181426|181450", + "upstreamId": "181426|181450", "text": "Severe brain malformation" }, { - "baseId": "181430", + "upstreamId": "181430", "text": "Severe microlissencephaly" }, { - "baseId": "181430|613456|613457", + "upstreamId": "181430|613456|613457", "text": "Exaggerated startle response" }, { - "baseId": "181432|237126|408431|408432|408433|408434|408437|408439|415294|461386|461397|461398|461901|461909|462240|503719|503722|526447|526721|526955|526960|526965|564854|564857|564859|566094|567473|567476|570890|570891|570896|640359|640360|640361|640362|693093|693094|838805|838806|838807|926353|926354|935706|956598|956599", + "upstreamId": "181432|237126|408431|408432|408433|408434|408437|408439|415294|461386|461397|461398|461901|461909|462240|503719|503722|526447|526721|526955|526960|526965|564854|564857|564859|566094|567473|567476|570890|570891|570896|640359|640360|640361|640362|693093|693094|838805|838806|838807|926353|926354|935706|956598|956599", "text": "Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type a, 13" }, { - "baseId": "181434|583169|583170|919433|965222|965223", + "upstreamId": "181434|583169|583170|919433|965222|965223", "text": "Mental retardation, autosomal recessive 66" }, { - "baseId": "181435", + "upstreamId": "181435", "text": "Early onset focal segmental glomerulosclerosis" }, { - "baseId": "181435", + "upstreamId": "181435", "text": "Light complexion" }, { - "baseId": "181435|611342", + "upstreamId": "181435|611342", "text": "Galloway-Mowat syndrome 7" }, { - "baseId": "181437", + "upstreamId": "181437", "text": "Hypohidrosis" }, { - "baseId": "181437", + "upstreamId": "181437", "text": "COG6-related disorder" }, { - "baseId": "181438|904214", + "upstreamId": "181438|904214", "text": "Mild obesity" }, { - "baseId": "181438|514187|514192|514215|553301|904214", + "upstreamId": "181438|514187|514192|514215|553301|904214", "text": "Dolichocephaly" }, { - "baseId": "181441|514262|536033|626232", + "upstreamId": "181441|514262|536033|626232", "text": "Multiple mitochondrial dysfunctions syndrome 4" }, { - "baseId": "181441|287096|290249|362182", + "upstreamId": "181441|287096|290249|362182", "text": "Multiple mitochondrial dysfunctions syndrome" }, { - "baseId": "181444", + "upstreamId": "181444", "text": "Autistic spectrum disorder with isolated skills" }, { - "baseId": "181447", + "upstreamId": "181447", "text": "Iron deposition in globus pallidus" }, { - "baseId": "181450", + "upstreamId": "181450", "text": "Severe cerebellar hypoplasia" }, { - "baseId": "181450", + "upstreamId": "181450", "text": "Hydranencephaly" }, { - "baseId": "181450|189094|237371|919709", + "upstreamId": "181450|189094|237371|919709", "text": "Hydrocephalus, congenital, 3, with brain anomalies" }, { - "baseId": "181451|215783|512266|971072", + "upstreamId": "181451|215783|512266|971072", "text": "Developmental delay with short stature, dysmorphic features, and sparse hair" }, { - "baseId": "181452|181462|203232|361061|361062|362161|679520|679521|681597|682737|801079|801159|801164|815958", + "upstreamId": "181452|181462|203232|361061|361062|362161|679520|679521|681597|682737|801079|801159|801164|815958", "text": "Cerebellar atrophy" }, { - "baseId": "181452", + "upstreamId": "181452", "text": "Bilateral squint" }, { - "baseId": "181453|263181|966614", + "upstreamId": "181453|263181|966614", "text": "Abnormality of the skeletal system" }, { - "baseId": "181454|181534|683214", + "upstreamId": "181454|181534|683214", "text": "Neurologic, endocrine, and pancreatic disease, multisystem, infantile-onset" }, { - "baseId": "181456", + "upstreamId": "181456", "text": "Severe dystonia" }, { - "baseId": "181456|626261|971090", + "upstreamId": "181456|626261|971090", "text": "Neurodevelopmental disorder with microcephaly, cataracts, and renal abnormalities" }, { - "baseId": "181458", + "upstreamId": "181458", "text": "Severe cystic degeneration of the brain" }, { - "baseId": "181459|540564|971124", + "upstreamId": "181459|540564|971124", "text": "Mental retardation, autosomal recessive 36" }, { - "baseId": "181460", + "upstreamId": "181460", "text": "Brain iron accummulation" }, { - "baseId": "181461", + "upstreamId": "181461", "text": "Noonan-like facies" }, { - "baseId": "181466|260331|494918|494927|537080", + "upstreamId": "181466|260331|494918|494927|537080", "text": "Neurodegeneration with brain iron accumulation" }, { - "baseId": "181500|181501|414753|414754|980902", + "upstreamId": "181500|181501|414753|414754|980902", "text": "Meckel syndrome 12" }, { - "baseId": "181502|181503|181504", + "upstreamId": "181502|181503|181504", "text": "Multiple congenital anomalies/dysmorphic syndrome-intellectual disability" }, { - "baseId": "181522|424617|622759|919146", + "upstreamId": "181522|424617|622759|919146", "text": "Zimmermann-Laband syndrome 2" }, { - "baseId": "181523|181524|181525|364000|467981|469321|532255|532723|647204|653547|694266|694267|694268|704578|704581|704582|741341|846820|938422", + "upstreamId": "181523|181524|181525|364000|467981|469321|532255|532723|647204|653547|694266|694267|694268|704578|704581|704582|741341|846820|938422", "text": "Tenorio syndrome" }, { - "baseId": "181537|181538|181539|181540|181541", + "upstreamId": "181537|181538|181539|181540|181541", "text": "Cerebro-costo-mandibular syndrome" }, { - "baseId": "181559", + "upstreamId": "181559", "text": "Peeling skin syndrome 3" }, { - "baseId": "181571|181572|550645|816008|971157", + "upstreamId": "181571|181572|550645|816008|971157", "text": "Opitz GBBB syndrome, type II" }, { - "baseId": "181571|439220|552475|552476|552477|552478|552479|576361|576362|590719|705833|729070|792021|792022|816008|920109", + "upstreamId": "181571|439220|552475|552476|552477|552478|552479|576361|576362|590719|705833|729070|792021|792022|816008|920109", "text": "Hypertelorism, Teebi type" }, { - "baseId": "181578|181579|181580|181581", + "upstreamId": "181578|181579|181580|181581", "text": "Inactive tuberculosis" }, { - "baseId": "181585", + "upstreamId": "181585", "text": "Nonsyndromic Hearing Loss and Deafness, Autosomal Recessive" }, { - "baseId": "181588|359076|709437", + "upstreamId": "181588|359076|709437", "text": "Amelogenesis imperfecta, type IF" }, { - "baseId": "181613|181624|420752", + "upstreamId": "181613|181624|420752", "text": "SDHB-Related Disorders" }, { - "baseId": "182469|204463", + "upstreamId": "182469|204463", "text": "Granular cell cancer" }, { - "baseId": "182469", + "upstreamId": "182469", "text": "Neuroepithelial neoplasm" }, { - "baseId": "182679", + "upstreamId": "182679", "text": "Renal cell carcinoma" }, { - "baseId": "183028|215048|215049|215050|215051|215052|215053|215054|215055", + "upstreamId": "183028|215048|215049|215050|215051|215052|215053|215054|215055", "text": "Mediastinal germ cell tumor" }, { - "baseId": "184244", + "upstreamId": "184244", "text": "Generalized hypopigmentation" }, { - "baseId": "184244|362817|551429", + "upstreamId": "184244|362817|551429", "text": "Basal cell carcinoma" }, { - "baseId": "184747", + "upstreamId": "184747", "text": "Lisch nodules" }, { - "baseId": "184747|222607|361014", + "upstreamId": "184747|222607|361014", "text": "Subcutaneous neurofibromas" }, { - "baseId": "185491|363066|363579|363581|363586|613530|613531", + "upstreamId": "185491|363066|363579|363581|363586|613530|613531", "text": "Pancreatic Neoplasms" }, { - "baseId": "185643|466188|677335|677981|822297", + "upstreamId": "185643|466188|677335|677981|822297", "text": "Hereditary breast cancer" }, { - "baseId": "185667|185668", + "upstreamId": "185667|185668", "text": "Mental retardation, autosomal recessive 48" }, { - "baseId": "185669|185670|185671|185672|185673|185938|237483|237484|237485|237486|237487|237488|237489|237490|249193|254780|353906|362155|362156|414716|511032|512042|578506|609032|609033|624861|672273|679790|791290|805103|961309|961870|970976|970977", + "upstreamId": "185669|185670|185671|185672|185673|185938|237483|237484|237485|237486|237487|237488|237489|237490|249193|254780|353906|362155|362156|414716|511032|512042|578506|609032|609033|624861|672273|679790|791290|805103|961309|961870|970976|970977", "text": "Congenital contractures of the limbs and face, hypotonia, and developmental delay" }, { - "baseId": "185675|612049|612050", + "upstreamId": "185675|612049|612050", "text": "Keratoderma with scleroatrophy of the extremities" }, { - "baseId": "185678|185679|185680|185681|185682|185683|185684|185685|185686|190178|236906|263872|263873|263874|263875|263876|263877|263878|263879|263880|263881|371695|371699|371707|371711|372684|374301|374310|374314|461460|461463|461674|461678|462296|503785|504431|526471|526474|526524|526531|527059|527061|564908|566171|566182|566193|567524|567527|567529|567534|567536|567538|567541|570985|570997|570999|640448|640449|640450|640451|640452|640453|640454|640455|640456|640457|640458|640459|640460|640461|640462|640463|652132|652395|656089|713150|713151|724708|724709|724710|724712|738272|738273|738274|738276|738277|744665|744769|752947|752948|752949|752950|768757|775948|784178|784179|784180|791169|820416|838991|838992|838993|838994|838995|838996|838997|838998|838999|839000|839001|839002|839003|839004|839005|839006|857622|903584|926384|926385|926386|926387|926388|935777|935778|935779|935780|935781|935782|935783|947655|947656|947657|947658|947659|947660|956657|956658|956659|956660|956661|956662|956663|956664|960014", + "upstreamId": "185678|185679|185680|185681|185682|185683|185684|185685|185686|190178|236906|263872|263873|263874|263875|263876|263877|263878|263879|263880|263881|371695|371699|371707|371711|372684|374301|374310|374314|461460|461463|461674|461678|462296|503785|504431|526471|526474|526524|526531|527059|527061|564908|566171|566182|566193|567524|567527|567529|567534|567536|567538|567541|570985|570997|570999|640448|640449|640450|640451|640452|640453|640454|640455|640456|640457|640458|640459|640460|640461|640462|640463|652132|652395|656089|713150|713151|724708|724709|724710|724712|738272|738273|738274|738276|738277|744665|744769|752947|752948|752949|752950|768757|775948|784178|784179|784180|791169|820416|838991|838992|838993|838994|838995|838996|838997|838998|838999|839000|839001|839002|839003|839004|839005|839006|857622|903584|926384|926385|926386|926387|926388|935777|935778|935779|935780|935781|935782|935783|947655|947656|947657|947658|947659|947660|956657|956658|956659|956660|956661|956662|956663|956664|960014", "text": "3-methylglutaconic aciduria with cataracts, neurologic involvement, and neutropenia" }, { - "baseId": "185692|205017|360041|360874|362052|362053|362054|362055|362056|362057|362058|367600|513940|514033|514048|514109|514112|514137|621021|621025|621026|621031|621035|621038|758701|792610|794093|794094|794095|794096|794097|794098|794099|794100|794100", + "upstreamId": "185692|205017|360041|360874|362052|362053|362054|362055|362056|362057|362058|367600|513940|514033|514048|514109|514112|514137|621021|621025|621026|621031|621035|621038|758701|792610|794093|794094|794095|794096|794097|794098|794099|794100|794100", "text": "Corpus callosum, agenesis of" }, { - "baseId": "185715|576172|624089", + "upstreamId": "185715|576172|624089", "text": "Spondylometaphyseal dysplasia, megarbane-dagher-melki type" }, { - "baseId": "185723", + "upstreamId": "185723", "text": "appendicular lean mass relative to body height" }, { - "baseId": "185737", + "upstreamId": "185737", "text": "Bile acid synthesis defect, congenital, 5" }, { - "baseId": "185738", + "upstreamId": "185738", "text": "Diamond-Blackfan anemia 14 with mandibulofacial dysostosis" }, { - "baseId": "185738|185739|185740|185741", + "upstreamId": "185738|185739|185740|185741", "text": "Diamond-Blackfan anemia 15 with mandibulofacial dysostosis" }, { - "baseId": "185742", + "upstreamId": "185742", "text": "Cataract 43" }, { - "baseId": "185937|205420", + "upstreamId": "185937|205420", "text": "Megalencephaly with thick corpus callosum, cerebellar atrophy, and intellectual disability" }, { - "baseId": "185937|205420|244091|244092|364116|538445|792787|919588|973050", + "upstreamId": "185937|205420|244091|244092|364116|538445|792787|919588|973050", "text": "Macrocephaly, dysmorphic facies, and psychomotor retardation" }, { - "baseId": "185938", + "upstreamId": "185938", "text": "Intellectual disability with episodic ataxia and congenital arthrogryposis" }, { - "baseId": "186053|295960|295964|295986|295990|296025|296062|296065|296070|296089|296111|296171|296228|297782|297787|297812|297863|297876|297904|297905|297912|297914|297945|297952|297971|298007|298013|298024|298040|301689|301698|301702|301726|301859|301872|301874|301875|301921|301947|301978|301993|301995|302004|302043|302047|302062|302092|302093|302125|302157|302158|302171|302259|302260|302266|302267", + "upstreamId": "186053|295960|295964|295986|295990|296025|296062|296065|296070|296089|296111|296171|296228|297782|297787|297812|297863|297876|297904|297905|297912|297914|297945|297952|297971|298007|298013|298024|298040|301689|301698|301702|301726|301859|301872|301874|301875|301921|301947|301978|301993|301995|302004|302043|302047|302062|302092|302093|302125|302157|302158|302171|302259|302260|302266|302267", "text": "Mononeuropathy of the Median Nerve" }, { - "baseId": "186358|964259|976826|983572", + "upstreamId": "186358|964259|976826|983572", "text": "Concentric hypertrophic cardiomyopathy" }, { - "baseId": "186713|360880", + "upstreamId": "186713|360880", "text": "Ventricular hypertrophy" }, { - "baseId": "186749|357627", + "upstreamId": "186749|357627", "text": "Peroxisome biogenesis disorder type 1A" }, { - "baseId": "186926", + "upstreamId": "186926", "text": "PI NULL(WEST)" }, { - "baseId": "187056", + "upstreamId": "187056", "text": "Hyperhomocysteinemia" }, { - "baseId": "187087|513299|626187|783385", + "upstreamId": "187087|513299|626187|783385", "text": "Dystonia 23" }, { - "baseId": "187089|468972|468975|468978|469946|469950|469956|470404|470408|471091|471093|533127|533230|533234|533240|533654|533658|573238|648255|648256|648257|648258|694481|694482|694483|694484|694486|694487|694489|694491|694492|694493|705175|745428|778555|847860|847861|847862|847863|852880|903638|929030|950859|958691|966355", + "upstreamId": "187089|468972|468975|468978|469946|469950|469956|470404|470408|471091|471093|533127|533230|533234|533240|533654|533658|573238|648255|648256|648257|648258|694481|694482|694483|694484|694486|694487|694489|694491|694492|694493|705175|745428|778555|847860|847861|847862|847863|852880|903638|929030|950859|958691|966355", "text": "Spastic paraplegia 73, autosomal dominant" }, { - "baseId": "187090|187091|187092|187093|187094|187095|262448|262449|369797|370322|370324|370610|370612|370619|372184|458330|458335|458339|458344|458351|458360|458832|458834|458885|458892|459342|459347|481355|481356|524007|524314|524605|562811|562816|563229|563496|563499|563501|563505|563508|565547|565549|568514|568519|622394|626414|637737|637738|637739|637740|637741|637742|637743|637744|637745|651872|723337|736896|779297|783276|903557", + "upstreamId": "187090|187091|187092|187093|187094|187095|262448|262449|369797|370322|370324|370610|370612|370619|372184|458330|458335|458339|458344|458351|458360|458832|458834|458885|458892|459342|459347|481355|481356|524007|524314|524605|562811|562816|563229|563496|563499|563501|563505|563508|565547|565549|568514|568519|622394|626414|637737|637738|637739|637740|637741|637742|637743|637744|637745|651872|723337|736896|779297|783276|903557", "text": "Coenzyme Q10 deficiency, primary, 7" }, { - "baseId": "187125|227368", + "upstreamId": "187125|227368", "text": "Familial thyroid dyshormonogenesis" }, { - "baseId": "187125|227368|332084|609269|609270", + "upstreamId": "187125|227368|332084|609269|609270", "text": "Nongoitrous Euthyroid Hyperthyrotropinemia" }, { - "baseId": "187136|187137|425231|576188", + "upstreamId": "187136|187137|425231|576188", "text": "Keppen-Lubinsky syndrome" }, { - "baseId": "187145|244164|919438|983539|983540|983541", + "upstreamId": "187145|244164|919438|983539|983540|983541", "text": "Lethal congenital contracture syndrome 8" }, { - "baseId": "187146|187147|200707|248652|260940|513467|679798|972515", + "upstreamId": "187146|187147|200707|248652|260940|513467|679798|972515", "text": "Lethal congenital contracture syndrome 7" }, { - "baseId": "187198|187198|187199|211934|211934|211940|361073|361074|919956", + "upstreamId": "187198|187198|187199|211934|211934|211940|361073|361074|919956", "text": "Optic atrophy 9" }, { - "baseId": "187203|626106|966204", + "upstreamId": "187203|626106|966204", "text": "Lichtenstein-knorr syndrome" }, { - "baseId": "187204", + "upstreamId": "187204", "text": "Anhidrosis, isolated, with normal sweat glands" }, { - "baseId": "187223|187224|187225", + "upstreamId": "187223|187224|187225", "text": "Peeling skin with leukonychia, acral punctate keratoses, cheilitis, and knuckle pads" }, { - "baseId": "187226|919783", + "upstreamId": "187226|919783", "text": "Cole-Carpenter syndrome 1" }, { - "baseId": "187228|187229|187230|626000|626001|626002|626003|626004|626005|626006|790432", + "upstreamId": "187228|187229|187230|626000|626001|626002|626003|626004|626005|626006|790432", "text": "Cole-Carpenter syndrome 2" }, { - "baseId": "187231|187232|573261", + "upstreamId": "187231|187232|573261", "text": "Idiopathic livedo reticularis with systemic involvement" }, { - "baseId": "187233|187234|790901|919224|919225|919226", + "upstreamId": "187233|187234|790901|919224|919225|919226", "text": "Singleton-Merten syndrome 2" }, { - "baseId": "187235|187236|187237|187238|187239|187240|187241|187242|360795|361293", + "upstreamId": "187235|187236|187237|187238|187239|187240|187241|187242|360795|361293", "text": "Exstrophy-epispadias complex" }, { - "baseId": "187243|248750|789377", + "upstreamId": "187243|248750|789377", "text": "Thauvin-Robinet-Faivre syndrome" }, { - "baseId": "187254", + "upstreamId": "187254", "text": "Pulmonary alveolar proteinosis" }, { - "baseId": "187258|406603|406604|439489|439490|439492|454148|454149|454297|454298|454300|454301|454628|454944|520428|520647|520914|562566|564416|564419|564430|612476|612477|632871|632872|632873|632874|632875|691655|691656|721187|730324|829842|829843|829844|829845|829846|923726|932579|932580|932581|944255|953927", + "upstreamId": "187258|406603|406604|439489|439490|439492|454148|454149|454297|454298|454300|454301|454628|454944|520428|520647|520914|562566|564416|564419|564430|612476|612477|632871|632872|632873|632874|632875|691655|691656|721187|730324|829842|829843|829844|829845|829846|923726|932579|932580|932581|944255|953927", "text": "Short-rib thoracic dysplasia 13 with or without polydactyly" }, { - "baseId": "187269|187270|513578|790711|790712|790713|919094", + "upstreamId": "187269|187270|513578|790711|790712|790713|919094", "text": "Mental retardation, autosomal dominant 33" }, { - "baseId": "187358|398057|419703", + "upstreamId": "187358|398057|419703", "text": "PTEN hamartoma tumor syndromes" }, { - "baseId": "187648", + "upstreamId": "187648", "text": "Primary hyperaldosteronism" }, { - "baseId": "187685|187686|265660|267375|270617|538964", + "upstreamId": "187685|187686|265660|267375|270617|538964", "text": "Myasthenic syndrome, congenital, 3c, associated with acetylcholine receptor deficiency" }, { - "baseId": "187694|187695|187696|270108|427130|961761", + "upstreamId": "187694|187695|187696|270108|427130|961761", "text": "Lipoyltransferase 1 deficiency" }, { - "baseId": "187894|513881|513882|513883", + "upstreamId": "187894|513881|513882|513883", "text": "Spermatogenic failure 25" }, { - "baseId": "187937|187938|244984|244988|245001|445605|445605|540465|798702", + "upstreamId": "187937|187938|244984|244988|245001|445605|445605|540465|798702", "text": "Epileptic encephalopathy, early infantile, 29" }, { - "baseId": "187940|187941|187942|187943|187944|363759|363952|364017|438217|442312|469657|469658|469661|469663|469665|469670|469674|469678|469679|470691|470696|470697|470703|470705|470707|470714|470715|470722|470724|470729|470733|470739|470741|471080|471231|471232|471233|471235|471238|471674|471676|471679|471681|471691|471695|471696|471700|471702|471703|533905|533906|533907|533909|533910|533912|533913|533915|533917|533921|533922|533924|533925|533926|533927|533928|533929|533931|533932|533937|533938|533951|533953|533966|533975|533977|534452|534454|534458|534460|571580|571583|571585|571587|571591|573143|573815|573817|573822|573824|575174|575175|575176|577896|580477|580486|580586|580589|580597|580633|580638|580642|580644|580648|580726|580734|580736|650484|650485|650487|650488|650489|650491|650493|650494|650495|650496|650499|650501|650502|650503|650504|650505|650506|650507|650508|650509|653231|653570|694637|695862|705718|705720|705721|705722|717229|717231|717232|728928|728929|728930|728931|728932|742662|742664|742665|742668|745339|745349|757841|757842|757847|757850|773365|773369|773370|776736|776818|778597|786504|786509|788305|798030|821355|821376|822187|822188|822189|822190|822191|822192|822193|822194|822195|822196|822197|822198|822199|822200|822201|822202|822203|822204|848822|848823|848824|848825|848826|848827|848828|848829|848830|848831|848832|848833|848834|848835|848836|848837|848838|848839|848840|848841|848842|848843|848844|848845|848846|848847|848848|848849|848850|848851|848852|848853|848854|848855|848856|853007|919937|929332|929333|929334|929335|929336|929337|929338|929339|929340|929341|929342|929343|939124|939125|939126|939127|939128|939129|939130|939131|939132|939133|939134|939135|951243|951244|951245|951246|951247|951248|951249|951250|951251|951252|951253|951254|951255|958967|958968|958969|958970|960327", + "upstreamId": "187940|187941|187942|187943|187944|363759|363952|364017|438217|442312|469657|469658|469661|469663|469665|469670|469674|469678|469679|470691|470696|470697|470703|470705|470707|470714|470715|470722|470724|470729|470733|470739|470741|471080|471231|471232|471233|471235|471238|471674|471676|471679|471681|471691|471695|471696|471700|471702|471703|533905|533906|533907|533909|533910|533912|533913|533915|533917|533921|533922|533924|533925|533926|533927|533928|533929|533931|533932|533937|533938|533951|533953|533966|533975|533977|534452|534454|534458|534460|571580|571583|571585|571587|571591|573143|573815|573817|573822|573824|575174|575175|575176|577896|580477|580486|580586|580589|580597|580633|580638|580642|580644|580648|580726|580734|580736|650484|650485|650487|650488|650489|650491|650493|650494|650495|650496|650499|650501|650502|650503|650504|650505|650506|650507|650508|650509|653231|653570|694637|695862|705718|705720|705721|705722|717229|717231|717232|728928|728929|728930|728931|728932|742662|742664|742665|742668|745339|745349|757841|757842|757847|757850|773365|773369|773370|776736|776818|778597|786504|786509|788305|798030|821355|821376|822187|822188|822189|822190|822191|822192|822193|822194|822195|822196|822197|822198|822199|822200|822201|822202|822203|822204|848822|848823|848824|848825|848826|848827|848828|848829|848830|848831|848832|848833|848834|848835|848836|848837|848838|848839|848840|848841|848842|848843|848844|848845|848846|848847|848848|848849|848850|848851|848852|848853|848854|848855|848856|853007|919937|929332|929333|929334|929335|929336|929337|929338|929339|929340|929341|929342|929343|939124|939125|939126|939127|939128|939129|939130|939131|939132|939133|939134|939135|951243|951244|951245|951246|951247|951248|951249|951250|951251|951252|951253|951254|951255|958967|958968|958969|958970|960327", "text": "Epileptic encephalopathy, early infantile, 30" }, { - "baseId": "187945|187946|965946", + "upstreamId": "187945|187946|965946", "text": "Deafness, autosomal dominant 67" }, { - "baseId": "187949", + "upstreamId": "187949", "text": "Lissencephaly 7 with cerebellar hypoplasia" }, { - "baseId": "187950|187951|187952", + "upstreamId": "187950|187951|187952", "text": "Torsion dystonia 2" }, { - "baseId": "187953|214480|225813|225818|225878|243900|263826|363334|364356|390746|578358|626640|906341|961250", + "upstreamId": "187953|214480|225813|225818|225878|243900|263826|363334|364356|390746|578358|626640|906341|961250", "text": "Smith-Kingsmore syndrome" }, { - "baseId": "187955|187956|187957|187958|791449|971017", + "upstreamId": "187955|187956|187957|187958|791449|971017", "text": "Microcephaly and chorioretinopathy, autosomal recessive, 3" }, { - "baseId": "187955", + "upstreamId": "187955", "text": "Autosomal recessive chorioretinopathy-microcephaly syndrome" }, { - "baseId": "187959|187960|622374|792766|858558", + "upstreamId": "187959|187960|622374|792766|858558", "text": "Mitochondrial myopathy-lactic acidosis-deafness syndrome" }, { - "baseId": "187962|205671|380421|380422|380423|380424|380425|380426|380427|380428|380429|380430|380431|380432|380433|380434|380435|380436|380437|380438|380439|380440|587772", + "upstreamId": "187962|205671|380421|380422|380423|380424|380425|380426|380427|380428|380429|380430|380431|380432|380433|380434|380435|380436|380437|380438|380439|380440|587772", "text": "VATER association" }, { - "baseId": "188023|197886|360883|360973|485741|920586", + "upstreamId": "188023|197886|360883|360973|485741|920586", "text": "Aortic dilatation" }, { - "baseId": "188044", + "upstreamId": "188044", "text": "Oculocutaneous albinism type 1" }, { - "baseId": "188056", + "upstreamId": "188056", "text": "Colon Serrated Polyposis" }, { - "baseId": "188056|248607", + "upstreamId": "188056|248607", "text": "Sessile serrated polyposis cancer syndrome" }, { - "baseId": "188066|188067|461411|461715|461717|526312|526313|526323|526325|526487|526493|526494|526495|526504|526773|564756|564757|564768|565871|565889|567352|567354|567363|570727|570730|640162|640163|640164|640165|640166|640167|640168|640169|640170|640171|640173|640174|640175|640176|640177|640181|640194|640195|640196|640197|640198|652200|701829|712918|712919|712921|724515|752721|768497|768503|779550|820434|838570|838571|838572|838573|838576|838577|838581|838582|838596|838597|838598|838599|838600|851441|852363|852368|852615|926280|926281|926288|935603|935604|935605|935614|940221|940222|947505|947506|947508|947509|947512|947517|947518|947519|947520|956535|956539|956540|956541|956542|959994", + "upstreamId": "188066|188067|461411|461715|461717|526312|526313|526323|526325|526487|526493|526494|526495|526504|526773|564756|564757|564768|565871|565889|567352|567354|567363|570727|570730|640162|640163|640164|640165|640166|640167|640168|640169|640170|640171|640173|640174|640175|640176|640177|640181|640194|640195|640196|640197|640198|652200|701829|712918|712919|712921|724515|752721|768497|768503|779550|820434|838570|838571|838572|838573|838576|838577|838581|838582|838596|838597|838598|838599|838600|851441|852363|852368|852615|926280|926281|926288|935603|935604|935605|935614|940221|940222|947505|947506|947508|947509|947512|947517|947518|947519|947520|956535|956539|956540|956541|956542|959994", "text": "Immunodeficiency 39" }, { - "baseId": "188114|188115|214096|214097|214098|214562|214565|264294|406872|421592|511680|790632|790633|970496|972939|972940|972941|972942|972943|972944", + "upstreamId": "188114|188115|214096|214097|214098|214562|214565|264294|406872|421592|511680|790632|790633|970496|972939|972940|972941|972942|972943|972944", "text": "Mental retardation, autosomal dominant 35" }, { - "baseId": "188131|188131|188132", + "upstreamId": "188131|188131|188132", "text": "Linear skin defects with multiple congenital anomalies 3" }, { - "baseId": "188142", + "upstreamId": "188142", "text": "PPP2R1A-related neurodevelopmental disorders" }, { - "baseId": "188143|188144|188145|188146|188147|188148|188149|263760|361117|362361|513288|539004|622885|788807|788808|790664|919064", + "upstreamId": "188143|188144|188145|188146|188147|188148|188149|263760|361117|362361|513288|539004|622885|788807|788808|790664|919064", "text": "Spinocerebellar ataxia, autosomal recessive 20" }, { - "baseId": "188150|188151", + "upstreamId": "188150|188151", "text": "Mandibulofacial dysostosis with alopecia" }, { - "baseId": "188152|188153|188154|188155|263933|404878|404879|413244|437817|440338|442578|446984|447041|447047|447049|447086|447088|447116|447121|447122|486730|514981|514987|514988|515005|515007|515017|515018|515024|515037|550344|556550|556552|556554|556581|556583|556585|556834|556836|556838|556974|556976|576391|612492|626572|626573|626574|626575|626576|626577|626578|653844|690335|718084|718085|731569|731570|731571|745562|761051|761052|761053|818837|821810|822493|822494|822495|822496|822497|822498|822499|822500|822501|858825|921564|921565|921566|921567|929952|929953|941367|941368|941369|952009|952010|962858|964109|964122", + "upstreamId": "188152|188153|188154|188155|263933|404878|404879|413244|437817|440338|442578|446984|447041|447047|447049|447086|447088|447116|447121|447122|486730|514981|514987|514988|515005|515007|515017|515018|515024|515037|550344|556550|556552|556554|556581|556583|556585|556834|556836|556838|556974|556976|576391|612492|626572|626573|626574|626575|626576|626577|626578|653844|690335|718084|718085|731569|731570|731571|745562|761051|761052|761053|818837|821810|822493|822494|822495|822496|822497|822498|822499|822500|822501|858825|921564|921565|921566|921567|929952|929953|941367|941368|941369|952009|952010|962858|964109|964122", "text": "Epileptic encephalopathy, early infantile, 32" }, { - "baseId": "188156|188157|188158|513555|521116|691693|691694|691695|691697|691698|691699|698776|698779|698781|698782|698785|709621|721215|734841|782142|790514|790515|830176", + "upstreamId": "188156|188157|188158|513555|521116|691693|691694|691695|691697|691698|691699|698776|698779|698781|698782|698785|709621|721215|734841|782142|790514|790515|830176", "text": "Chops syndrome" }, { - "baseId": "188198|188199|188200|188201|205150|205747|205748|252244|252289|252303|415044|511656|614300|614301|614302|614303|614304|622366|622367|677033|789400|816313|977220|977221|977222|980459|980460|983810", + "upstreamId": "188198|188199|188200|188201|205150|205747|205748|252244|252289|252303|415044|511656|614300|614301|614302|614303|614304|622366|622367|677033|789400|816313|977220|977221|977222|980459|980460|983810", "text": "Ehlers-Danlos syndrome due to tenascin-X deficiency" }, { - "baseId": "188212|188213|188214|226239|226240|226241|552291|610533|612183|612184|677957|818723|918597|918598", + "upstreamId": "188212|188213|188214|226239|226240|226241|552291|610533|612183|612184|677957|818723|918597|918598", "text": "Stromme syndrome" }, { - "baseId": "188236|191777|326590|489752", + "upstreamId": "188236|191777|326590|489752", "text": "Rhizomelic chondrodysplasia punctata type 5" }, { - "baseId": "188286|244018|360903", + "upstreamId": "188286|244018|360903", "text": "Bilateral ptosis" }, { - "baseId": "188286|360903", + "upstreamId": "188286|360903", "text": "Stridor" }, { - "baseId": "188287|188288|188289|188289|188290|377022|429761|429762|429763|429764|429766|429767|429768|429769|465728|465921|465924|529468|529789|530043|530047|567680|569539|569975|569989|573715|643922|643923|643924|643925|643926|643927|643928|643929|643929|643930|643931|643932|643933|643934|643935|652689|653219|714737|714738|714739|714740|726435|726436|739961|739962|744886|754902|754908|754912|760259|779752|791524|818786|820766|843113|843114|843115|843116|843117|843118|843119|843120|843121|843122|843123|843124|852625|858660|927565|927566|927567|927568|937221|937222|937223|937223|937224|937225|937226|941111|941112|949168|949169|949170|949171|949172|949173|949174|949175|957628|960132|960133|961420|962894|965625|969609|975948", + "upstreamId": "188287|188288|188289|188289|188290|377022|429761|429762|429763|429764|429766|429767|429768|429769|465728|465921|465924|529468|529789|530043|530047|567680|569539|569975|569989|573715|643922|643923|643924|643925|643926|643927|643928|643929|643929|643930|643931|643932|643933|643934|643935|652689|653219|714737|714738|714739|714740|726435|726436|739961|739962|744886|754902|754908|754912|760259|779752|791524|818786|820766|843113|843114|843115|843116|843117|843118|843119|843120|843121|843122|843123|843124|852625|858660|927565|927566|927567|927568|937221|937222|937223|937223|937224|937225|937226|941111|941112|949168|949169|949170|949171|949172|949173|949174|949175|957628|960132|960133|961420|962894|965625|969609|975948", "text": "Pulmonary fibrosis and/or bone marrow failure, telomere-related, 4" }, { - "baseId": "188572|224443|622075|622077|622079|622080|967278|980501", + "upstreamId": "188572|224443|622075|622077|622079|622080|967278|980501", "text": "Long QT syndrome 8" }, { - "baseId": "188597|513443", + "upstreamId": "188597|513443", "text": "CACNA1C-related condition" }, { - "baseId": "188776|481553|622331|918844|918845", + "upstreamId": "188776|481553|622331|918844|918845", "text": "Night blindness, congenital stationary, type 1g" }, { - "baseId": "188778", + "upstreamId": "188778", "text": "Telomere length, mean leukocyte" }, { - "baseId": "188779|189041|202279|260857", + "upstreamId": "188779|189041|202279|260857", "text": "Early onset epileptic encephalopathy" }, { - "baseId": "188883|190898|190898|192531|193669|196060|223011|256170|256171|270858|328422|328428|338380|338381|338382|338387|338390|338398|338401|338404|338407|344439|344440|344447|344448|344452|345842|345847|345848|345852|345855|345859|345860|345861|432334|610082|610083|610084|619859|671989|671990|671991|671992|671993|671994|671995|671996|671997|671998|682343|727174|740744|800032|877479|877480|877481|877482|877483|877484|877485|877486|877487|877488|877489|877490|877491|877492|877493|877494|877495|877496|877497|877498|877499|877500|877501|877502|877503|877504|880515|880516|880517|977283", + "upstreamId": "188883|190898|190898|192531|193669|196060|223011|256170|256171|270858|328422|328428|338380|338381|338382|338387|338390|338398|338401|338404|338407|344439|344440|344447|344448|344452|345842|345847|345848|345852|345855|345859|345860|345861|432334|610082|610083|610084|619859|671989|671990|671991|671992|671993|671994|671995|671996|671997|671998|682343|727174|740744|800032|877479|877480|877481|877482|877483|877484|877485|877486|877487|877488|877489|877490|877491|877492|877493|877494|877495|877496|877497|877498|877499|877500|877501|877502|877503|877504|880515|880516|880517|977283", "text": "Osteogenesis imperfecta, type XI" }, { - "baseId": "188893|514319", + "upstreamId": "188893|514319", "text": "Neurodevelopmental disorder with spastic quadriplegia and brain abnormalities with or without seizures" }, { - "baseId": "189049|431836", + "upstreamId": "189049|431836", "text": "X-linked retinitis pigmentosa" }, { - "baseId": "189079|408742|480548|480549|581865|970972|970973", + "upstreamId": "189079|408742|480548|480549|581865|970972|970973", "text": "Congenital hypotonia, epilepsy, developmental delay, and digital anomalies" }, { - "baseId": "189103|247572|247573|247574|247575|286038|286040|286047|286061|286065|286072|286801|286803|286808|286825|286851|289094|289096|289097|289468|289470|289472|289475|289476|496231|518175|532282|558067|558069|558428|560617|561464|561465|561466|561471|571932|571935|571936|572637|572639|574748|629944|629945|629946|629947|629948|629949|629950|629951|629952|647214|647215|647216|647217|647218|647219|647220|647221|647222|704593|704594|708234|708235|708236|708237|708238|708239|708240|708241|708242|708243|715964|715965|715966|715967|715968|715969|715970|715971|715972|719844|719845|719846|719847|719848|719850|719851|727710|727711|730138|731216|733449|741352|741354|756436|756438|763194|774824|781312|781313|790228|819156|826414|826415|826416|826417|826418|846830|846831|846832|850904|884732|884767|922749|922750|922751|922752|928701|928702|928703|928704|931380|931381|931382|931383|931384|931385|938429|942891|942892|942893|942894|942895|950515|950516|953082|953083|953084|960265|960475|960476", + "upstreamId": "189103|247572|247573|247574|247575|286038|286040|286047|286061|286065|286072|286801|286803|286808|286825|286851|289094|289096|289097|289468|289470|289472|289475|289476|496231|518175|532282|558067|558069|558428|560617|561464|561465|561466|561471|571932|571935|571936|572637|572639|574748|629944|629945|629946|629947|629948|629949|629950|629951|629952|647214|647215|647216|647217|647218|647219|647220|647221|647222|704593|704594|708234|708235|708236|708237|708238|708239|708240|708241|708242|708243|715964|715965|715966|715967|715968|715969|715970|715971|715972|719844|719845|719846|719847|719848|719850|719851|727710|727711|730138|731216|733449|741352|741354|756436|756438|763194|774824|781312|781313|790228|819156|826414|826415|826416|826417|826418|846830|846831|846832|850904|884732|884767|922749|922750|922751|922752|928701|928702|928703|928704|931380|931381|931382|931383|931384|931385|938429|942891|942892|942893|942894|942895|950515|950516|953082|953083|953084|960265|960475|960476", "text": "Xanthinuria type II" }, { - "baseId": "189152|189153", + "upstreamId": "189152|189153", "text": "all trans retinoic acid (ATRA) response" }, { - "baseId": "189167", + "upstreamId": "189167", "text": "Myopathy, lactic acidosis, and sideroblastic anemia 3" }, { - "baseId": "189176|227684|227685|227686|424606|511467|535699|550354|614258|615905|653810|653815|798524|964218|964815", + "upstreamId": "189176|227684|227685|227686|424606|511467|535699|550354|614258|615905|653810|653815|798524|964218|964815", "text": "Mental retardation, autosomal dominant 41" }, { - "baseId": "189177|471576|534292|534448|574134|575269|649487|649488|649489|649490|649491|649492|653336|682340|694731|695875|849336|849337", + "upstreamId": "189177|471576|534292|534448|574134|575269|649487|649488|649489|649490|649491|649492|653336|682340|694731|695875|849336|849337", "text": "Dystonia 26, myoclonic" }, { - "baseId": "189353", + "upstreamId": "189353", "text": "altered potassium channel function" }, { - "baseId": "189551|360830", + "upstreamId": "189551|360830", "text": "Bilateral talipes equinovarus" }, { - "baseId": "189551|360830", + "upstreamId": "189551|360830", "text": "Restrictive ventilatory defect" }, { - "baseId": "189551|360830", + "upstreamId": "189551|360830", "text": "Spinal rigidity" }, { - "baseId": "189551|360830", + "upstreamId": "189551|360830", "text": "Areflexia of lower limbs" }, { - "baseId": "189551|360830", + "upstreamId": "189551|360830", "text": "Thoracic kyphoscoliosis" }, { - "baseId": "189940|224203|360948|360976", + "upstreamId": "189940|224203|360948|360976", "text": "Heart disease" }, { - "baseId": "190032|965904|965905", + "upstreamId": "190032|965904|965905", "text": "Primary autosomal recessive microcephaly 14" }, { - "baseId": "190033|190034|190036|190037|190039|354157", + "upstreamId": "190033|190034|190036|190037|190039|354157", "text": "Cone-rod dystrophy 21" }, { - "baseId": "190048|190049|410839|446299|611435|614477", + "upstreamId": "190048|190049|410839|446299|611435|614477", "text": "Mental retardation, autosomal dominant 38" }, { - "baseId": "190050|190051|190052|425302|481127|509061", + "upstreamId": "190050|190051|190052|425302|481127|509061", "text": "Brugada syndrome 9" }, { - "baseId": "190053|190054|328024|328031|328032|328033|328034|328038|328040|328041|328042|328046|328047|328055|328066|328068|328071|328079|328081|328085|328087|328091|328095|328100|328101|328103|328112|328114|328115|328120|328122|328144|328145|337842|337843|337848|337849|337855|337860|337863|337865|337867|337870|337876|337879|337883|337886|337888|337891|337900|337904|337912|337920|337926|337933|337940|337941|337942|337944|337950|337951|337953|337961|337966|337967|337971|337972|337980|338017|338021|338022|338025|338027|344101|344104|344105|344108|344111|344112|344114|344115|344118|344120|344121|344125|344129|344132|344135|344136|344140|344145|344147|344150|344153|344155|344156|344159|344165|344166|344191|344200|344201|345493|345494|345500|345504|345505|345507|345528|345531|345532|345538|345539|345540|345543|345547|345550|345551|345556|345558|345562|345563|345565|345567|345570|345572|345577|345595|715382|755784|755785|771438|778470|877209|877210|877211|877212|877213|877214|877215|877216|877217|877218|877219|877220|877221|877222|877223|877224|877225|877226|877227|877228|877229|877230|877231|877232|877233|877234|877235|877236|877237|877238|877239|877240|877241|877242|877243|877244|877245|877246|877247|877248|877249|877250|877251|877252|877253|877254|877255|877256|877257|877258|877259|877260|877275|880500|880501|880502|880503|880504|880505|880506|880507", + "upstreamId": "190053|190054|328024|328031|328032|328033|328034|328038|328040|328041|328042|328046|328047|328055|328066|328068|328071|328079|328081|328085|328087|328091|328095|328100|328101|328103|328112|328114|328115|328120|328122|328144|328145|337842|337843|337848|337849|337855|337860|337863|337865|337867|337870|337876|337879|337883|337886|337888|337891|337900|337904|337912|337920|337926|337933|337940|337941|337942|337944|337950|337951|337953|337961|337966|337967|337971|337972|337980|338017|338021|338022|338025|338027|344101|344104|344105|344108|344111|344112|344114|344115|344118|344120|344121|344125|344129|344132|344135|344136|344140|344145|344147|344150|344153|344155|344156|344159|344165|344166|344191|344200|344201|345493|345494|345500|345504|345505|345507|345528|345531|345532|345538|345539|345540|345543|345547|345550|345551|345556|345558|345562|345563|345565|345567|345570|345572|345577|345595|715382|755784|755785|771438|778470|877209|877210|877211|877212|877213|877214|877215|877216|877217|877218|877219|877220|877221|877222|877223|877224|877225|877226|877227|877228|877229|877230|877231|877232|877233|877234|877235|877236|877237|877238|877239|877240|877241|877242|877243|877244|877245|877246|877247|877248|877249|877250|877251|877252|877253|877254|877255|877256|877257|877258|877259|877260|877275|880500|880501|880502|880503|880504|880505|880506|880507", "text": "Palmoplantar keratoderma, nonepidermolytic, focal 2" }, { - "baseId": "190074", + "upstreamId": "190074", "text": "Spinocerebellar ataxia 41" }, { - "baseId": "190094", + "upstreamId": "190094", "text": "Microcephaly with or without chorioretinopathy, lymphedema or intellectual disability (MCLID)" }, { - "baseId": "190096|190097|190098|190099|622307|970666", + "upstreamId": "190096|190097|190098|190099|622307|970666", "text": "Basal ganglia calcification, idiopathic, 6" }, { - "baseId": "190112|214746|490569|578308|578309|653223|778392", + "upstreamId": "190112|214746|490569|578308|578309|653223|778392", "text": "Familial adenomatous polyposis 3" }, { - "baseId": "190115|190116|190117|790939|983751|983752|983753|983754|983755|983756|983757|983758|983759|983760|983761", + "upstreamId": "190115|190116|190117|790939|983751|983752|983753|983754|983755|983756|983757|983758|983759|983760|983761", "text": "Hypomagnesemia, seizures, and mental retardation 1" }, { - "baseId": "190135|190136|190137|790596|790597", + "upstreamId": "190135|190136|190137|790596|790597", "text": "Lethal congenital contracture syndrome 9" }, { - "baseId": "190151|247440|247441|247442|247443|247619|247733|613863|965450|969295", + "upstreamId": "190151|247440|247441|247442|247443|247619|247733|613863|965450|969295", "text": "Russell-Silver syndrome" }, { - "baseId": "190153|622967|682371", + "upstreamId": "190153|622967|682371", "text": "Epilepsy, familial adult myoclonic 2" }, { - "baseId": "190155|190156|190157|190158|190159|225837|264105|363943|366879|406078|406079|406081|406084|425516|451618|451621|451625|451631|451632|451644|451649|451896|451908|451911|451913|451915|451916|451917|451927|451953|451954|451955|451962|451967|451972|451980|451982|452126|452129|452132|452136|452138|452145|452160|518697|518702|518704|518707|518711|518714|518717|518752|518760|518762|518767|518924|518925|518927|518963|518970|518972|518980|518982|553165|558738|558740|558742|558744|558746|558748|559271|559273|559275|559277|561094|561098|561102|561105|562249|562255|562261|576710|578994|579056|579086|625790|630732|630733|630734|630735|630736|630737|630738|630739|630740|630741|630742|630743|630744|630745|630746|630747|630748|630749|630750|651057|653856|653915|677414|697744|697745|697746|708461|743896|747870|747872|763511|763513|763514|781503|781505|781506|790314|790315|795307|798516|801984|801985|801986|802056|819311|821881|821882|821883|821884|821885|821886|827300|827301|827302|827303|827304|827305|827306|827307|827308|827309|827310|827311|827312|827313|827314|827315|827316|827317|851260|851264|859210|922985|922986|922987|922988|931681|931682|931683|931684|931685|931686|931687|931688|931689|931690|939926|940734|943250|943251|943252|943253|943254|943255|953295|953296|953297|959674|963531|964210|964211|969700|970749|977195", + "upstreamId": "190155|190156|190157|190158|190159|225837|264105|363943|366879|406078|406079|406081|406084|425516|451618|451621|451625|451631|451632|451644|451649|451896|451908|451911|451913|451915|451916|451917|451927|451953|451954|451955|451962|451967|451972|451980|451982|452126|452129|452132|452136|452138|452145|452160|518697|518702|518704|518707|518711|518714|518717|518752|518760|518762|518767|518924|518925|518927|518963|518970|518972|518980|518982|553165|558738|558740|558742|558744|558746|558748|559271|559273|559275|559277|561094|561098|561102|561105|562249|562255|562261|576710|578994|579056|579086|625790|630732|630733|630734|630735|630736|630737|630738|630739|630740|630741|630742|630743|630744|630745|630746|630747|630748|630749|630750|651057|653856|653915|677414|697744|697745|697746|708461|743896|747870|747872|763511|763513|763514|781503|781505|781506|790314|790315|795307|798516|801984|801985|801986|802056|819311|821881|821882|821883|821884|821885|821886|827300|827301|827302|827303|827304|827305|827306|827307|827308|827309|827310|827311|827312|827313|827314|827315|827316|827317|851260|851264|859210|922985|922986|922987|922988|931681|931682|931683|931684|931685|931686|931687|931688|931689|931690|939926|940734|943250|943251|943252|943253|943254|943255|953295|953296|953297|959674|963531|964210|964211|969700|970749|977195", "text": "Myoclonic-atonic epilepsy" }, { - "baseId": "190163|190164|917886", + "upstreamId": "190163|190164|917886", "text": "Microphthalmia, isolated, with coloboma 10" }, { - "baseId": "190165|190166|190167|190168", + "upstreamId": "190165|190166|190167|190168", "text": "Spermatogenic failure, X-linked, 2" }, { - "baseId": "190169|805124|861029", + "upstreamId": "190169|805124|861029", "text": "Trichothiodystrophy 5, nonphotosensitive" }, { - "baseId": "190175|190176|190177", + "upstreamId": "190175|190176|190177", "text": "46,XY sex reversal 10" }, { - "baseId": "190179|190180|248761|248762|248763|248764|421212|427716|788735|861040|861041|918481", + "upstreamId": "190179|190180|248761|248762|248763|248764|421212|427716|788735|861040|861041|918481", "text": "Leukodystrophy, hypomyelinating, 10" }, { - "baseId": "190181|190182|190183|190184|190185|190186|678051|964119", + "upstreamId": "190181|190182|190183|190184|190185|190186|678051|964119", "text": "Brachydactyly-arterial hypertension syndrome" }, { - "baseId": "190187|789121", + "upstreamId": "190187|789121", "text": "Pontocerebellar hypoplasia type 3" }, { - "baseId": "190188|190189", + "upstreamId": "190188|190189", "text": "Combined oxidative phosphorylation deficiency 25" }, { - "baseId": "190381|192972|193029|193111|193489|194681|254797|254798|254799|254805|254808|254812|254813|254814|318893|318894|318895|318899|318906|318910|318911|318916|318920|318921|318923|319016|327277|327278|327289|327290|327292|327295|327301|327305|327319|327327|327334|327336|327337|327338|327349|327452|333427|333434|333471|333482|333483|333496|333510|333515|333536|333537|333538|333543|333546|333555|335132|335149|335152|335163|335173|335180|335181|335196|335197|335212|335213|335230|335235|335237|335248|335297|335357|335365|353263", + "upstreamId": "190381|192972|193029|193111|193489|194681|254797|254798|254799|254805|254808|254812|254813|254814|318893|318894|318895|318899|318906|318910|318911|318916|318920|318921|318923|319016|327277|327278|327289|327290|327292|327295|327301|327305|327319|327327|327334|327336|327337|327338|327349|327452|333427|333434|333471|333482|333483|333496|333510|333515|333536|333537|333538|333543|333546|333555|335132|335149|335152|335163|335173|335180|335181|335196|335197|335212|335213|335230|335235|335237|335248|335297|335357|335365|353263", "text": "Acquired porencephaly" }, { - "baseId": "190422|190423|256719|256722|256723|271607|297283|299226|303465|303468|342322|342336|342348|342352|347747|347762|349112|349132|349138|349140|349145|349147", + "upstreamId": "190422|190423|256719|256722|256723|271607|297283|299226|303465|303468|342322|342336|342348|342352|347747|347762|349112|349132|349138|349140|349145|349147", "text": "Paget disease of bone" }, { - "baseId": "190426|204583|204584|204585|204586|204587|204588|362062|919233|964333", + "upstreamId": "190426|204583|204584|204585|204586|204587|204588|362062|919233|964333", "text": "Short stature with nonspecific skeletal abnormalities" }, { - "baseId": "190563|205286|362184|374023|413396|429621|539057|614015|614017|614020|614021|614022|919554|919555|919556|919557|919558|919559|919560|919561|919562|919563|920342", + "upstreamId": "190563|205286|362184|374023|413396|429621|539057|614015|614017|614020|614021|614022|919554|919555|919556|919557|919558|919559|919560|919561|919562|919563|920342", "text": "Prader-Willi syndrome" }, { - "baseId": "190611|190612|190613|266005|309229|309233|309235|309249|309250|309263|309266|313917|313919|313920|313925|319831|319832|319834|319835|320337|320343|320344|320349|320350|320356|320365|320372|320375|613962|865259|865260|865261|865262|865263|865264|865265|865266|865267|865268|865269|868428", + "upstreamId": "190611|190612|190613|266005|309229|309233|309235|309249|309250|309263|309266|313917|313919|313920|313925|319831|319832|319834|319835|320337|320343|320344|320349|320350|320356|320365|320372|320375|613962|865259|865260|865261|865262|865263|865264|865265|865266|865267|865268|865269|868428", "text": "Split hand-foot malformation 3" }, { - "baseId": "190642|267606|359211|364354|364355|414726|421163|442610|556627|626776|655030|780306|818831|822665|941428|941429", + "upstreamId": "190642|267606|359211|364354|364355|414726|421163|442610|556627|626776|655030|780306|818831|822665|941428|941429", "text": "Spondyloepimetaphyseal dysplasia with joint laxity" }, { - "baseId": "190659|190660|243346|283711|284399|286121|286148|286149|286164|286776|286862|286863|286867|286869|287482|287485|287486|288269|288271|289167|289171|289180|289511|289554|289565|289594|290953|290954|290962|290968|290981|291188|291192|291217|291225|293496|304108|304131|307702|312729|317489|318129|322018|322037|322041|322064|322093|329480|331296|331312|331333|331349|333815|333854|338138|338203|338215|340050|340054|340078|340097|343799|343803|349090|350017", + "upstreamId": "190659|190660|243346|283711|284399|286121|286148|286149|286164|286776|286862|286863|286867|286869|287482|287485|287486|288269|288271|289167|289171|289180|289511|289554|289565|289594|290953|290954|290962|290968|290981|291188|291192|291217|291225|293496|304108|304131|307702|312729|317489|318129|322018|322037|322041|322064|322093|329480|331296|331312|331333|331349|333815|333854|338138|338203|338215|340050|340054|340078|340097|343799|343803|349090|350017", "text": "Spastic paraplegia, autosomal dominant" }, { - "baseId": "190793|192097|192636|193028|194107|194661|215290|215291|246954|251245|251246|251248|251249|251250|251251|251255|251256|251257|251258|251259|251262|251263|251264|251265|251267|251268|251269|265669|266002|268088|268281|269737|272107|272439|272446|272805|273142|273662|291301|291305|291312|291314|291315|291320|291321|291326|291328|291329|291337|291339|291348|291349|291357|291362|291363|291367|291371|291375|291377|291378|291379|292375|292376|292378|292381|292384|292398|292404|292422|292424|292429|292430|292431|292449|292450|292453|292456|292459|292463|292472|292474|292476|292479|292480|292481|292485|292495|292500|292507|292509|292517|292518|295787|295788|295793|295799|295802|295803|295809|295812|295815|295832|295833|295834|295840|295841|295842|295843|295844|295850|295860|295862|295863|295864|295865|295866|295867|295868|295870|295874|295878|295879|295881|295882|295884|295888|295895|295896|295897|295902|295903|295905|295913|295914|295915|295917|295920|295921|295923|295926|295928|295932|295934|367354|367365|367714|367717|368789|368795|368806|368807|406356|433581|443505|488686|489919|491191|500348|500628|500630|500635|500817|500826|500840|500962|584829|612660|620135|620136|655570|659955|709003|720602|720605|734246|734248|748471|748479|764132|795463|799329|799330|889475|889476|889477|889478|889479|889480|889481|889482|889483|889484|889485|889486|889487|889488|889489|889490|889491|889492|889493|889494|889495|889496|889497|889498|889499|889500|889501|889502|889503|889504|889505|889506|889507|889508|889509|889510|889511|889512|889513|889514|889515|889516|889517|889518|889519|889520|889521|889522|889523|889524|889525|889526|889527|889528|889529|889530|889531|889532|889533|889534|889535|889536|889537|889538|889539|889540|889541|889542|889543|891694|891695|891696|891697|891698|891699|891700|977202", + "upstreamId": "190793|192097|192636|193028|194107|194661|215290|215291|246954|251245|251246|251248|251249|251250|251251|251255|251256|251257|251258|251259|251262|251263|251264|251265|251267|251268|251269|265669|266002|268088|268281|269737|272107|272439|272446|272805|273142|273662|291301|291305|291312|291314|291315|291320|291321|291326|291328|291329|291337|291339|291348|291349|291357|291362|291363|291367|291371|291375|291377|291378|291379|292375|292376|292378|292381|292384|292398|292404|292422|292424|292429|292430|292431|292449|292450|292453|292456|292459|292463|292472|292474|292476|292479|292480|292481|292485|292495|292500|292507|292509|292517|292518|295787|295788|295793|295799|295802|295803|295809|295812|295815|295832|295833|295834|295840|295841|295842|295843|295844|295850|295860|295862|295863|295864|295865|295866|295867|295868|295870|295874|295878|295879|295881|295882|295884|295888|295895|295896|295897|295902|295903|295905|295913|295914|295915|295917|295920|295921|295923|295926|295928|295932|295934|367354|367365|367714|367717|368789|368795|368806|368807|406356|433581|443505|488686|489919|491191|500348|500628|500630|500635|500817|500826|500840|500962|584829|612660|620135|620136|655570|659955|709003|720602|720605|734246|734248|748471|748479|764132|795463|799329|799330|889475|889476|889477|889478|889479|889480|889481|889482|889483|889484|889485|889486|889487|889488|889489|889490|889491|889492|889493|889494|889495|889496|889497|889498|889499|889500|889501|889502|889503|889504|889505|889506|889507|889508|889509|889510|889511|889512|889513|889514|889515|889516|889517|889518|889519|889520|889521|889522|889523|889524|889525|889526|889527|889528|889529|889530|889531|889532|889533|889534|889535|889536|889537|889538|889539|889540|889541|889542|889543|891694|891695|891696|891697|891698|891699|891700|977202", "text": "FLNB-Related Spectrum Disorders" }, { - "baseId": "190802|227346", + "upstreamId": "190802|227346", "text": "Bone mineral density quantitative trait locus 1" }, { - "baseId": "191253|224877|263252|360913|360914|425203|496110", + "upstreamId": "191253|224877|263252|360913|360914|425203|496110", "text": "Growth delay" }, { - "baseId": "191263|268075|268448|292256|292257|292263|292264|292285|297000|297001|297011|297012|297043|297046|297056|331416|331417|331418|331420|331425|331426|331428|331429|331434|341735|341736|341740|341742|341748|341749|347094|347098|347099|347100|347101|347104|347110|347113|347115|347116|348420|348425|348426|348429|348430|348431|348433|348439", + "upstreamId": "191263|268075|268448|292256|292257|292263|292264|292285|297000|297001|297011|297012|297043|297046|297056|331416|331417|331418|331420|331425|331426|331428|331429|331434|341735|341736|341740|341742|341748|341749|347094|347098|347099|347100|347101|347104|347110|347113|347115|347116|348420|348425|348426|348429|348430|348431|348433|348439", "text": "Smith-McCort dysplasia" }, { - "baseId": "191328|195870|195870|214063|214064|214065|226046|226047|226048|226049|226050|226051|272293|307590|544093|613501|792760", + "upstreamId": "191328|195870|195870|214063|214064|214065|226046|226047|226048|226049|226050|226051|272293|307590|544093|613501|792760", "text": "Heimler syndrome 2" }, { - "baseId": "191401|192021|238372|360822|366028|511336|628711|790070|790071|970714|970715", + "upstreamId": "191401|192021|238372|360822|366028|511336|628711|790070|790071|970714|970715", "text": "Early infantile epileptic encephalopathy 62" }, { - "baseId": "191401|192021|238372|360822|513175|513176|513177|513178|816441|964166", + "upstreamId": "191401|192021|238372|360822|513175|513176|513177|513178|816441|964166", "text": "Epilepsy, familial focal, with variable foci 4" }, { - "baseId": "191565|550367", + "upstreamId": "191565|550367", "text": "SCN8A-related disorder" }, { - "baseId": "191884", + "upstreamId": "191884", "text": "SCN1A-Related Disorders" }, { - "baseId": "191890", + "upstreamId": "191890", "text": "FLNA-related disorder" }, { - "baseId": "192240|192241|194311|194312|268964|273740|329344|329348|329350|329353|329358|345360|345364|345365|345368|346743|346744|346745|550125|586653|589676|688805|694141|861144|878111|878112|878113|878114|878115|878116|878117|878118|878119|878120|878121|878122|878123|878124|878125|878126|878127|878128|878129|878130|880565|880566", + "upstreamId": "192240|192241|194311|194312|268964|273740|329344|329348|329350|329353|329358|345360|345364|345365|345368|346743|346744|346745|550125|586653|589676|688805|694141|861144|878111|878112|878113|878114|878115|878116|878117|878118|878119|878120|878121|878122|878123|878124|878125|878126|878127|878128|878129|878130|880565|880566", "text": "Growth hormone deficiency" }, { - "baseId": "192598|192599|192600|194555|194558|194559|254272|291930|291932|291938|291943|291951|293328|293357|293358|293360|296667|296670|296671|296674|296675|296681|296691|296699|314845|314861|314862|314865|314867|314872|314873|314879|321649|321650|321653|322134|322145|323103|327685|327736|327743|327744|327745|327748|327749|328816|328819|328827|331427|338167|338170|338210|338239|339697|340151|344312", + "upstreamId": "192598|192599|192600|194555|194558|194559|254272|291930|291932|291938|291943|291951|293328|293357|293358|293360|296667|296670|296671|296674|296675|296681|296691|296699|314845|314861|314862|314865|314867|314872|314873|314879|321649|321650|321653|322134|322145|323103|327685|327736|327743|327744|327745|327748|327749|328816|328819|328827|331427|338167|338170|338210|338239|339697|340151|344312", "text": "Congenital Stationary Night Blindness, Recessive" }, { - "baseId": "192662|322465|331847|331854|334830|334832|334837|338871|344705|344707|349683|349686|349687|349688|349692|350684|350687|654899", + "upstreamId": "192662|322465|331847|331854|334830|334832|334837|338871|344705|344707|349683|349686|349687|349688|349692|350684|350687|654899", "text": "Congenital dyserythropoietic anemia" }, { - "baseId": "192995|205231|285543|288937|288967|288979|296803|298736|298743|302946|303128|318655|318659|318675|318687|326790|326934|332972|333048|333051|333068|333083|333105|334543|334549|334732|334798|334799|334803|334807|334818|334825", + "upstreamId": "192995|205231|285543|288937|288967|288979|296803|298736|298743|302946|303128|318655|318659|318675|318687|326790|326934|332972|333048|333051|333068|333083|333105|334543|334549|334732|334798|334799|334803|334807|334818|334825", "text": "Hereditary sensory and autonomic neuropathy type II" }, { - "baseId": "193191|202453|282352|282353|282354|282355|282359|282360|282369|283031|283039|283042|283043|283093|283094|284604|284606|284613|284630|285054|285055|285062|285069|311035|311128|311129|317606|317661|317686|331773|331794|331804|333249|333251|353541", + "upstreamId": "193191|202453|282352|282353|282354|282355|282359|282360|282369|283031|283039|283042|283043|283093|283094|284604|284606|284613|284630|285054|285055|285062|285069|311035|311128|311129|317606|317661|317686|331773|331794|331804|333249|333251|353541", "text": "Early Infantile Epileptic Encephalopathy, Autosomal Dominant" }, { - "baseId": "193483|378472|485873|485874|485875|485876|805117|816357", + "upstreamId": "193483|378472|485873|485874|485875|485876|805117|816357", "text": "Short stature, facial dysmorphism, and skeletal anomalies with or without cardiac anomalies" }, { - "baseId": "193507|312076|312079|312081|312083|312085|312088|317728|317744|317745|317747|317748|317749|317755|323771|323789|323792|323793|323795|323796|323804|323809|323818|323831|323837|323843|324482|324490|324493|324496|324502|324525|324539|324545|324546|324547|724175|866823|866824|866825|866826|866827|866828|866829|866830|866831|866832|866833|866834|866835|866836|868581|868582", + "upstreamId": "193507|312076|312079|312081|312083|312085|312088|317728|317744|317745|317747|317748|317749|317755|323771|323789|323792|323793|323795|323796|323804|323809|323818|323831|323837|323843|324482|324490|324493|324496|324502|324525|324539|324545|324546|324547|724175|866823|866824|866825|866826|866827|866828|866829|866830|866831|866832|866833|866834|866835|866836|868581|868582", "text": "Metaphyseal anadysplasia" }, { - "baseId": "193524|324572|324574|324585|324589|324595|334144|334147|334149|340832|340838|340839|340842|342222|342224|703545|770594|874825|874827|874828|874829|874830|874831|874832|874833|874834|874835|874836|874837|874838|874839|874840|874841|876633", + "upstreamId": "193524|324572|324574|324585|324589|324595|334144|334147|334149|340832|340838|340839|340842|342222|342224|703545|770594|874825|874827|874828|874829|874830|874831|874832|874833|874834|874835|874836|874837|874838|874839|874840|874841|876633", "text": "UMOD-Associated Kidney Disease" }, { - "baseId": "193961", + "upstreamId": "193961", "text": "Classic multiminicore myopathy" }, { - "baseId": "194348|207867|264645|965582", + "upstreamId": "194348|207867|264645|965582", "text": "Focal seizures with impairment of consciousness or awareness" }, { - "baseId": "194351|278697|278726|278912|278917|280044|280090|280169|280171|283985|289693|289714|290450|290472|290485|290486|293545|293548|294144|320697|320698|320704|329501|329502|329506|329507|329508|329509|336094|336097|336106|336119|336131|338009|338016|338023|338038|353093|353647", + "upstreamId": "194351|278697|278726|278912|278917|280044|280090|280169|280171|283985|289693|289714|290450|290472|290485|290486|293545|293548|294144|320697|320698|320704|329501|329502|329506|329507|329508|329509|336094|336097|336106|336119|336131|338009|338016|338023|338038|353093|353647", "text": "Cleft Lip +/- Cleft Palate, Autosomal Dominant" }, { - "baseId": "194410|250761|286996|287001|287003|287024|287070|287788|287814|289162|289967|289968|289969|289972|289975|289986|290138|290549|290561|290631|290634|293058|293472|306486|314291|316039|320896|328007|328018|328020|329365|339623|345381|346754|346763|353640|353641", + "upstreamId": "194410|250761|286996|287001|287003|287024|287070|287788|287814|289162|289967|289968|289969|289972|289975|289986|290138|290549|290561|290631|290634|293058|293472|306486|314291|316039|320896|328007|328018|328020|329365|339623|345381|346754|346763|353640|353641", "text": "Congenital Myasthenic Syndrome, Recessive" }, { - "baseId": "195230|291713|291719|291720|291722|291724|291725|291726|293046|293047|293051|293052|293054|296315|296319|296366|297144|311806|311813", + "upstreamId": "195230|291713|291719|291720|291722|291724|291725|291726|293046|293047|293051|293052|293054|296315|296319|296366|297144|311806|311813", "text": "Combined Pituitary Hormone Deficiency, Recessive" }, { - "baseId": "195354|203840|203843|961746|976516", + "upstreamId": "195354|203840|203843|961746|976516", "text": "Generalized myoclonic seizures" }, { - "baseId": "195700|437850|609208|609209|609210|609219|609220|609221|609222|609223|609240", + "upstreamId": "195700|437850|609208|609209|609210|609219|609220|609221|609222|609223|609240", "text": "Nonsyndromic cleft lip palate" }, { - "baseId": "195704|196002|280582|280601|280607|280608|281071|282349|282361|282581|282591|282593|282602|282605|427819|481594|615934", + "upstreamId": "195704|196002|280582|280601|280607|280608|281071|282349|282361|282581|282591|282593|282602|282605|427819|481594|615934", "text": "GLUT1 deficiency syndrome" }, { - "baseId": "195870|973023", + "upstreamId": "195870|973023", "text": "PEX6-Related Disorders" }, { - "baseId": "196051|201228|390660|390661|390662|390663|390664|390665|390666|404707|404708", + "upstreamId": "196051|201228|390660|390661|390662|390663|390664|390665|390666|404707|404708", "text": "MBD5 associated neurodevelopmental disorder" }, { - "baseId": "196215|208567|208570|343319", + "upstreamId": "196215|208567|208570|343319", "text": "Primary Microcephaly 2 With or Without Cortical Malformations" }, { - "baseId": "196307|551719", + "upstreamId": "196307|551719", "text": "developmental delay with intractable seizures" }, { - "baseId": "196335", + "upstreamId": "196335", "text": "Neurologic Disorders/Seipinopathy" }, { - "baseId": "196335|253485|307677|311934|318023|318040", + "upstreamId": "196335|253485|307677|311934|318023|318040", "text": "Congenital generalized lipodystrophy (disease)" }, { - "baseId": "196414|196415|196416|215775|447233|447323|447346|447348|447350|447351|447359|447411|447412|447419|515211|515213|515214|515217|515229|515231|515233|515237|515318|515329|556658|556717|557007|558188|558190|558192|558194|624162|627005|627006|627007|627008|627009|627010|627011|650591|650668|706787|718310|718312|731807|745783|761295|761297|761299|774401|780360|780362|822910|822911|822912|822913|822914|822915|822916|822917|822918|822919|822920|822921|822922|822923|822924|822925|822926|822927|921708|921709|921710|921711|921712|921713|921714|921715|921716|930110|930111|930112|930113|930114|930115|930116|930117|930118|939777|940604|940605|941535|941536|941537|941538|941539|941540|941541|941542|941543|952119|952120|952121|952122|952123|952124|959526|960409|966610", + "upstreamId": "196414|196415|196416|215775|447233|447323|447346|447348|447350|447351|447359|447411|447412|447419|515211|515213|515214|515217|515229|515231|515233|515237|515318|515329|556658|556717|557007|558188|558190|558192|558194|624162|627005|627006|627007|627008|627009|627010|627011|650591|650668|706787|718310|718312|731807|745783|761295|761297|761299|774401|780360|780362|822910|822911|822912|822913|822914|822915|822916|822917|822918|822919|822920|822921|822922|822923|822924|822925|822926|822927|921708|921709|921710|921711|921712|921713|921714|921715|921716|930110|930111|930112|930113|930114|930115|930116|930117|930118|939777|940604|940605|941535|941536|941537|941538|941539|941540|941541|941542|941543|952119|952120|952121|952122|952123|952124|959526|960409|966610", "text": "Autoimmune interstitial lung, joint, and kidney disease" }, { - "baseId": "196418|196419|196420|196421|196422|443750|454810|454814|454823|454826|454828|454832|454835|454929|454933|454939|454940|454947|455405|455406|455416|455418|455420|455427|455432|455666|455669|521016|521019|521022|521025|521029|521031|521048|521051|521058|521072|521251|521257|521259|521265|521268|521272|521282|521284|521286|521291|521293|521294|521299|521415|521417|521420|521421|521425|521515|521518|521524|521529|521534|521539|521546|560263|560265|560267|560269|560372|560374|560376|560378|560380|563036|563039|563040|563042|563044|563045|563047|563051|563057|565011|565012|624303|633731|633732|633733|633734|633735|633736|633737|633738|633739|633740|633741|633742|633743|633744|633745|633746|633747|633748|633749|633750|633751|633752|633753|651317|651320|651386|651414|709813|709815|709816|709817|709818|709819|709820|709821|709822|721374|721375|721376|721377|734996|734997|734999|735000|744036|744222|744225|749407|749408|749409|749411|749412|749415|749417|765011|765018|765019|779087|779091|790535|790536|790537|830628|830629|830630|830631|830632|830633|830634|830635|830636|830637|830638|830639|830640|830641|830642|830643|830644|830645|830646|830647|830648|830649|830650|830651|830652|830653|830654|830655|830656|830657|830658|851028|852199|923990|923991|923992|923993|923994|923995|923996|923997|923998|923999|932838|932839|932840|932841|932842|932843|932844|932845|932846|932847|939999|944534|944535|944536|944537|944538|944539|944540|944541|944542|954108|954109|954110|960560|960561", + "upstreamId": "196418|196419|196420|196421|196422|443750|454810|454814|454823|454826|454828|454832|454835|454929|454933|454939|454940|454947|455405|455406|455416|455418|455420|455427|455432|455666|455669|521016|521019|521022|521025|521029|521031|521048|521051|521058|521072|521251|521257|521259|521265|521268|521272|521282|521284|521286|521291|521293|521294|521299|521415|521417|521420|521421|521425|521515|521518|521524|521529|521534|521539|521546|560263|560265|560267|560269|560372|560374|560376|560378|560380|563036|563039|563040|563042|563044|563045|563047|563051|563057|565011|565012|624303|633731|633732|633733|633734|633735|633736|633737|633738|633739|633740|633741|633742|633743|633744|633745|633746|633747|633748|633749|633750|633751|633752|633753|651317|651320|651386|651414|709813|709815|709816|709817|709818|709819|709820|709821|709822|721374|721375|721376|721377|734996|734997|734999|735000|744036|744222|744225|749407|749408|749409|749411|749412|749415|749417|765011|765018|765019|779087|779091|790535|790536|790537|830628|830629|830630|830631|830632|830633|830634|830635|830636|830637|830638|830639|830640|830641|830642|830643|830644|830645|830646|830647|830648|830649|830650|830651|830652|830653|830654|830655|830656|830657|830658|851028|852199|923990|923991|923992|923993|923994|923995|923996|923997|923998|923999|932838|932839|932840|932841|932842|932843|932844|932845|932846|932847|939999|944534|944535|944536|944537|944538|944539|944540|944541|944542|954108|954109|954110|960560|960561", "text": "Immunodeficiency 40" }, { - "baseId": "196427|196428|917947|917948|917949", + "upstreamId": "196427|196428|917947|917948|917949", "text": "Fanconi anemia, complementation group T" }, { - "baseId": "196817|213532|213571|224371|405508|434610", + "upstreamId": "196817|213532|213571|224371|405508|434610", "text": "Ehlers-Danlos syndrome, type 3" }, { - "baseId": "197521|226957|389102|514123|553143|590049|801187|801217", + "upstreamId": "197521|226957|389102|514123|553143|590049|801187|801217", "text": "Abnormality of the cerebral white matter" }, { - "baseId": "197660|971395", + "upstreamId": "197660|971395", "text": "Progressive congenital scoliosis" }, { - "baseId": "198601", + "upstreamId": "198601", "text": "Hemolytic disease of fetus OR newborn due to RhD isoimmunization" }, { - "baseId": "198601", + "upstreamId": "198601", "text": "Anti-D isoimmunization affecting pregnancy" }, { - "baseId": "198618", + "upstreamId": "198618", "text": "GLB1-Related Disorders" }, { - "baseId": "198685|360828", + "upstreamId": "198685|360828", "text": "Proximal lower limb amyotrophy" }, { - "baseId": "198685|360828", + "upstreamId": "198685|360828", "text": "Decreased patellar reflex" }, { - "baseId": "198685", + "upstreamId": "198685", "text": "Rimmed vacuoles" }, { - "baseId": "198685", + "upstreamId": "198685", "text": "Limb-girdle muscle atrophy" }, { - "baseId": "199051|208908|434672|443088|485811|858778|858781|858785|858790", + "upstreamId": "199051|208908|434672|443088|485811|858778|858781|858785|858790", "text": "Centronuclear myopathy" }, { - "baseId": "199781|424262|961619", + "upstreamId": "199781|424262|961619", "text": "Intellectual disability and seizures" }, { - "baseId": "199794|620825", + "upstreamId": "199794|620825", "text": "LIPA-Related Disorders" }, { - "baseId": "199803|230626|230630|654796", + "upstreamId": "199803|230626|230630|654796", "text": "Primary interstitial lung disease specific to childhood due to pulmonary surfactant protein anomalies" }, { - "baseId": "199848|199849|199850|199851|199852|199853|199854|247083|413346|437940|462450|462694|462696|463181|463294|463295|463299|463300|463303|463308|505020|527327|527335|527637|527640|527641|527646|527866|565695|565696|565701|567036|567047|571988|571995|641361|641362|641363|641364|641365|652731|693274|693276|693277|693278|695582|695583|713707|798660|798661|798662|798663|798664|801575|840211|840212|840213|840214|861392|861393|936231|936232|956918|956919|960055|964397", + "upstreamId": "199848|199849|199850|199851|199852|199853|199854|247083|413346|437940|462450|462694|462696|463181|463294|463295|463299|463300|463303|463308|505020|527327|527335|527637|527640|527641|527646|527866|565695|565696|565701|567036|567047|571988|571995|641361|641362|641363|641364|641365|652731|693274|693276|693277|693278|695582|695583|713707|798660|798661|798662|798663|798664|801575|840211|840212|840213|840214|861392|861393|936231|936232|956918|956919|960055|964397", "text": "Frontotemporal dementia and/or amyotrophic lateral sclerosis 4" }, { - "baseId": "199855", + "upstreamId": "199855", "text": "Deafness, congenital, with onychodystrophy, autosomal dominant" }, { - "baseId": "199862|364869|364882|447509|498222|515479|515489|515595|515609|549875|549876|549877|556796|557165|558351|627402|627403|627404|627405|627406|690507|690508|695027|823498|823499|823500|930337|940621", + "upstreamId": "199862|364869|364882|447509|498222|515479|515489|515595|515609|549875|549876|549877|556796|557165|558351|627402|627403|627404|627405|627406|690507|690508|695027|823498|823499|823500|930337|940621", "text": "Spastic paraplegia 74, autosomal recessive" }, { - "baseId": "199874|199875|583088|614600|697690|708404|970748", + "upstreamId": "199874|199875|583088|614600|697690|708404|970748", "text": "Acrofacial dysostosis, Cincinnati type" }, { - "baseId": "199876|199877|361734|361735|361736|405706|708211|790227|918766|977188|977189", + "upstreamId": "199876|199877|361734|361735|361736|405706|708211|790227|918766|977188|977189", "text": "Epileptic encephalopathy, early infantile, 50" }, { - "baseId": "199878", + "upstreamId": "199878", "text": "Alopecia congenita keratosis palmoplantaris" }, { - "baseId": "199879|199880", + "upstreamId": "199879|199880", "text": "Erythrokeratodermia variabilis et progressiva 3" }, { - "baseId": "199952", + "upstreamId": "199952", "text": "Methylmalonic aciduria" }, { - "baseId": "199983|199984|199985|215216|270084|282051|282712|284556|284557|284564|628488|690749|719280|762214|794787|977575|977576|977577", + "upstreamId": "199983|199984|199985|215216|270084|282051|282712|284556|284557|284564|628488|690749|719280|762214|794787|977575|977576|977577", "text": "Methylmalonic aciduria with homocystinuria cblD type" }, { - "baseId": "200092|299102|360826|361067|361069|361097|522940|564803|612361|612362|612363|612364|612365|612366|612367|612368|612369|612370|612371|612372|612373|612374|612375|612376|612377|612378|612379|612380|612381|612382|612383|612384|612385|612386|612387|612388|612389|612390|612391|612392|612393|612394|612395|612396|612397|612398|612399|612400|612401|612402|612403|612404|612405|612406|612407|612408|612409|612410|612411|612412|612413|612414|612415|612416|612417|612418|612419|612420|612421|612422|612423|612424|612425|612426|612427|612428|612429|801103|801104", + "upstreamId": "200092|299102|360826|361067|361069|361097|522940|564803|612361|612362|612363|612364|612365|612366|612367|612368|612369|612370|612371|612372|612373|612374|612375|612376|612377|612378|612379|612380|612381|612382|612383|612384|612385|612386|612387|612388|612389|612390|612391|612392|612393|612394|612395|612396|612397|612398|612399|612400|612401|612402|612403|612404|612405|612406|612407|612408|612409|612410|612411|612412|612413|612414|612415|612416|612417|612418|612419|612420|612421|612422|612423|612424|612425|612426|612427|612428|612429|801103|801104", "text": "Severe Myopia" }, { - "baseId": "200167", + "upstreamId": "200167", "text": "Mitochondrial proton-transporting ATP synthase complex deficiency" }, { - "baseId": "200359|376912|377930|572837|573438|648546|648547|648548|648549|648550|705358|757361|786319|821297|848182|848183|848184|848185|938896", + "upstreamId": "200359|376912|377930|572837|573438|648546|648547|648548|648549|648550|705358|757361|786319|821297|848182|848183|848184|848185|938896", "text": "Methylmalonic aciduria due to transcobalamin receptor defect" }, { - "baseId": "200397|200398|200399", + "upstreamId": "200397|200398|200399", "text": "Meier-gorlin syndrome 6" }, { - "baseId": "200691|200692|200692|200694|252491|252492|252492|252493|252498|252499|252500|252502|252503|252504|252505|252507|252509|252510|252515|252516|252517|252520|252521|252522|252523|252524|252527|252528|252529|361649|369176|370533|370534|406901|406901|413722|415064|415065|443987|443989|443990|443992|443993|443994|443999|455749|455750|455757|455769|455774|455778|455782|455783|455787|455800|455803|455903|455907|455910|455917|455918|455921|455923|455931|455936|455938|455939|455943|455945|455948|455952|455961|455969|455971|455975|455976|455979|455986|456323|456325|456326|456332|456336|456337|456338|456340|456342|456346|456348|456352|456359|456363|456364|456367|456392|456672|456677|456679|456683|456688|456693|456699|456706|456707|456713|456716|456717|456721|456729|456730|456747|456748|513286|513286|521757|521760|521771|521773|521780|521785|521786|521789|521791|521793|521800|521802|521805|522128|522129|522130|522134|522136|522137|522139|522142|522144|522146|522151|522152|522155|522158|522159|522164|522166|522168|522170|522176|522491|522492|522508|522518|522534|522540|522543|522549|522552|522555|539003|560826|560835|560848|560851|560853|560854|560855|560862|560864|560868|560876|560877|560886|560889|560893|560899|560901|560902|560905|560906|560907|560908|560917|560929|560969|560976|560978|560980|560982|560986|560989|560993|561004|561006|561008|561012|561015|561016|561025|561028|561030|561032|561034|561041|563691|563705|563706|563709|563712|563713|563718|563722|563723|563731|563734|563737|563739|563743|563745|563747|563749|563751|563753|563755|563762|565842|565846|565852|565853|565854|565858|565874|565877|565881|565888|565892|565895|565898|565903|565905|565920|565924|565936|565953|565957|635139|635140|635141|635142|635143|635144|635145|635146|635147|635148|635149|635150|635151|635152|635153|635154|635155|635156|635157|635158|635159|635160|635161|635162|635163|635164|635165|635166|635167|635168|635169|635170|635171|635172|635173|635174|635175|635176|635177|635178|635179|635180|635181|635182|635183|635184|635185|635186|635187|635188|635189|635190|635191|635192|635193|635194|635195|635196|635197|635198|635199|635200|635201|635202|635203|635204|635205|635206|635207|635208|635209|635210|635211|635212|635213|635214|635215|635216|635217|635218|635219|635220|635221|635222|635223|635224|635225|635226|635227|635228|635229|635230|635231|635232|635233|635234|635235|635236|635237|635238|635239|635240|635241|635242|651549|651578|651582|651591|651670|679752|692037|692038|692039|692040|692041|692043|692044|692045|692046|692047|692049|692053|692054|692055|692057|692058|692059|692060|695327|695328|699658|699662|699663|699666|699668|699669|710601|710602|710603|710604|710605|710608|710609|710610|710611|722136|722137|730436|735769|735771|735774|750218|750220|750224|759605|765824|765827|765829|765843|777648|777653|777774|779270|782646|782651|782652|782654|787468|788805|805008|819749|832350|832351|832352|832353|832354|832355|832356|832357|832358|832359|832360|832361|832362|832363|832364|832365|832366|832367|832368|832369|832370|832371|832372|832373|832374|832375|832376|832377|832378|832379|832380|832381|832382|832383|832384|832385|832386|832387|832388|832389|832390|832391|832392|832393|832394|832395|832396|832397|832398|832399|832400|832401|832402|832403|832404|832405|832406|832407|832408|832409|832410|832411|832412|832413|832414|832415|832416|832417|832418|832419|832420|832421|832422|832423|832424|832425|832426|832427|832428|832429|832430|832431|832432|832433|832434|832435|832436|832437|832438|832439|832440|832441|832442|851098|851100|851462|851465|851469|917765|917766|924444|924445|924446|924447|924448|924449|924450|924451|924452|924453|924454|924455|924456|924457|924458|924459|924460|924461|924462|924463|924464|924465|924466|924467|924468|924469|924470|924471|924472|924473|924474|924475|924476|924477|924478|924479|924480|924481|924482|924483|924484|924485|924486|924487|924488|924489|933456|933457|933458|933459|933460|933461|933462|933463|933464|933465|933466|933467|933468|933469|933470|933471|933472|933473|933474|933475|933476|933477|933478|933479|933480|933481|933482|933483|933484|933485|933486|933487|940048|940856|940857|940858|940859|940860|940861|945174|945175|945176|945177|945178|945179|945180|945181|945182|945183|945184|945185|945186|945187|945188|945189|945190|945191|945192|945193|945194|945195|945196|945197|945198|945199|945200|945201|945202|945203|945204|954880|954881|954882|954883|954884|954885|954886|954887|954888|954889|954890|954891|954892|954893|954894|954895|954896|954897|959815|959816", + "upstreamId": "200691|200692|200692|200694|252491|252492|252492|252493|252498|252499|252500|252502|252503|252504|252505|252507|252509|252510|252515|252516|252517|252520|252521|252522|252523|252524|252527|252528|252529|361649|369176|370533|370534|406901|406901|413722|415064|415065|443987|443989|443990|443992|443993|443994|443999|455749|455750|455757|455769|455774|455778|455782|455783|455787|455800|455803|455903|455907|455910|455917|455918|455921|455923|455931|455936|455938|455939|455943|455945|455948|455952|455961|455969|455971|455975|455976|455979|455986|456323|456325|456326|456332|456336|456337|456338|456340|456342|456346|456348|456352|456359|456363|456364|456367|456392|456672|456677|456679|456683|456688|456693|456699|456706|456707|456713|456716|456717|456721|456729|456730|456747|456748|513286|513286|521757|521760|521771|521773|521780|521785|521786|521789|521791|521793|521800|521802|521805|522128|522129|522130|522134|522136|522137|522139|522142|522144|522146|522151|522152|522155|522158|522159|522164|522166|522168|522170|522176|522491|522492|522508|522518|522534|522540|522543|522549|522552|522555|539003|560826|560835|560848|560851|560853|560854|560855|560862|560864|560868|560876|560877|560886|560889|560893|560899|560901|560902|560905|560906|560907|560908|560917|560929|560969|560976|560978|560980|560982|560986|560989|560993|561004|561006|561008|561012|561015|561016|561025|561028|561030|561032|561034|561041|563691|563705|563706|563709|563712|563713|563718|563722|563723|563731|563734|563737|563739|563743|563745|563747|563749|563751|563753|563755|563762|565842|565846|565852|565853|565854|565858|565874|565877|565881|565888|565892|565895|565898|565903|565905|565920|565924|565936|565953|565957|635139|635140|635141|635142|635143|635144|635145|635146|635147|635148|635149|635150|635151|635152|635153|635154|635155|635156|635157|635158|635159|635160|635161|635162|635163|635164|635165|635166|635167|635168|635169|635170|635171|635172|635173|635174|635175|635176|635177|635178|635179|635180|635181|635182|635183|635184|635185|635186|635187|635188|635189|635190|635191|635192|635193|635194|635195|635196|635197|635198|635199|635200|635201|635202|635203|635204|635205|635206|635207|635208|635209|635210|635211|635212|635213|635214|635215|635216|635217|635218|635219|635220|635221|635222|635223|635224|635225|635226|635227|635228|635229|635230|635231|635232|635233|635234|635235|635236|635237|635238|635239|635240|635241|635242|651549|651578|651582|651591|651670|679752|692037|692038|692039|692040|692041|692043|692044|692045|692046|692047|692049|692053|692054|692055|692057|692058|692059|692060|695327|695328|699658|699662|699663|699666|699668|699669|710601|710602|710603|710604|710605|710608|710609|710610|710611|722136|722137|730436|735769|735771|735774|750218|750220|750224|759605|765824|765827|765829|765843|777648|777653|777774|779270|782646|782651|782652|782654|787468|788805|805008|819749|832350|832351|832352|832353|832354|832355|832356|832357|832358|832359|832360|832361|832362|832363|832364|832365|832366|832367|832368|832369|832370|832371|832372|832373|832374|832375|832376|832377|832378|832379|832380|832381|832382|832383|832384|832385|832386|832387|832388|832389|832390|832391|832392|832393|832394|832395|832396|832397|832398|832399|832400|832401|832402|832403|832404|832405|832406|832407|832408|832409|832410|832411|832412|832413|832414|832415|832416|832417|832418|832419|832420|832421|832422|832423|832424|832425|832426|832427|832428|832429|832430|832431|832432|832433|832434|832435|832436|832437|832438|832439|832440|832441|832442|851098|851100|851462|851465|851469|917765|917766|924444|924445|924446|924447|924448|924449|924450|924451|924452|924453|924454|924455|924456|924457|924458|924459|924460|924461|924462|924463|924464|924465|924466|924467|924468|924469|924470|924471|924472|924473|924474|924475|924476|924477|924478|924479|924480|924481|924482|924483|924484|924485|924486|924487|924488|924489|933456|933457|933458|933459|933460|933461|933462|933463|933464|933465|933466|933467|933468|933469|933470|933471|933472|933473|933474|933475|933476|933477|933478|933479|933480|933481|933482|933483|933484|933485|933486|933487|940048|940856|940857|940858|940859|940860|940861|945174|945175|945176|945177|945178|945179|945180|945181|945182|945183|945184|945185|945186|945187|945188|945189|945190|945191|945192|945193|945194|945195|945196|945197|945198|945199|945200|945201|945202|945203|945204|954880|954881|954882|954883|954884|954885|954886|954887|954888|954889|954890|954891|954892|954893|954894|954895|954896|954897|959815|959816", "text": "Ullrich congenital muscular dystrophy 2" }, { - "baseId": "200692|200692|200693|200694|200694|252491|252492|252493|252498|252499|252500|252502|252503|252504|252505|252507|252509|252510|252515|252516|252517|252520|252521|252522|252523|252524|252527|252528|252529|361649|369176|370533|370534|406901|413722|415064|415065|443987|443989|443990|443992|443993|443994|443999|455749|455750|455757|455769|455774|455778|455782|455783|455787|455800|455803|455903|455907|455910|455917|455918|455921|455923|455931|455936|455938|455939|455943|455945|455948|455952|455961|455969|455971|455975|455976|455979|455986|456323|456325|456326|456332|456336|456337|456338|456340|456342|456346|456348|456352|456359|456363|456364|456367|456392|456672|456677|456679|456683|456688|456693|456699|456706|456707|456713|456716|456717|456721|456729|456730|456747|456748|513286|521757|521760|521771|521773|521780|521785|521786|521789|521791|521793|521800|521802|521805|522128|522129|522130|522134|522136|522137|522139|522142|522144|522146|522151|522152|522155|522158|522159|522164|522166|522168|522170|522176|522491|522492|522508|522518|522534|522540|522543|522549|522552|522555|539003|539003|560826|560835|560848|560851|560853|560854|560855|560862|560864|560868|560876|560877|560886|560889|560893|560899|560901|560902|560905|560906|560907|560908|560917|560929|560969|560976|560978|560980|560982|560986|560989|560993|561004|561006|561008|561012|561015|561016|561025|561028|561030|561032|561034|561041|563691|563705|563706|563709|563712|563713|563718|563722|563723|563731|563734|563737|563739|563743|563745|563747|563749|563751|563753|563755|563762|565842|565846|565852|565853|565854|565858|565874|565877|565881|565888|565892|565895|565898|565903|565905|565920|565924|565936|565953|565957|626168|635139|635140|635141|635142|635143|635144|635145|635146|635147|635148|635149|635150|635151|635152|635153|635154|635155|635156|635157|635158|635159|635160|635161|635162|635163|635164|635165|635166|635167|635168|635169|635170|635171|635172|635173|635174|635175|635176|635177|635178|635179|635180|635181|635182|635183|635184|635185|635186|635187|635188|635189|635190|635191|635192|635193|635194|635195|635196|635197|635198|635199|635200|635201|635202|635203|635204|635205|635206|635207|635208|635209|635210|635211|635212|635213|635214|635215|635216|635217|635218|635219|635220|635221|635222|635223|635224|635225|635226|635227|635228|635229|635230|635231|635232|635233|635234|635235|635236|635237|635238|635239|635240|635241|635242|651549|651578|651582|651591|651670|692037|692038|692039|692040|692041|692043|692044|692045|692046|692047|692049|692053|692054|692055|692057|692058|692059|692060|695327|695328|699658|699662|699663|699666|699668|699669|710601|710602|710603|710604|710605|710608|710609|710610|710611|722136|722137|730436|735769|735771|735774|750218|750220|750224|759605|765824|765827|765829|765843|777648|777653|777774|779270|782646|782651|782652|782654|787468|819749|832350|832351|832352|832353|832354|832355|832356|832357|832358|832359|832360|832361|832362|832363|832364|832365|832366|832367|832368|832369|832370|832371|832372|832373|832374|832375|832376|832377|832378|832379|832380|832381|832382|832383|832384|832385|832386|832387|832388|832389|832390|832391|832392|832393|832394|832395|832396|832397|832398|832399|832400|832401|832402|832403|832404|832405|832406|832407|832408|832409|832410|832411|832412|832413|832414|832415|832416|832417|832418|832419|832420|832421|832422|832423|832424|832425|832426|832427|832428|832429|832430|832431|832432|832433|832434|832435|832436|832437|832438|832439|832440|832441|832442|851098|851100|851462|851465|851469|919055|919056|919057|919058|924444|924445|924446|924447|924448|924449|924450|924451|924452|924453|924454|924455|924456|924457|924458|924459|924460|924461|924462|924463|924464|924465|924466|924467|924468|924469|924470|924471|924472|924473|924474|924475|924476|924477|924478|924479|924480|924481|924482|924483|924484|924485|924486|924487|924488|924489|933456|933457|933458|933459|933460|933461|933462|933463|933464|933465|933466|933467|933468|933469|933470|933471|933472|933473|933474|933475|933476|933477|933478|933479|933480|933481|933482|933483|933484|933485|933486|933487|940048|940856|940857|940858|940859|940860|940861|945174|945175|945176|945177|945178|945179|945180|945181|945182|945183|945184|945185|945186|945187|945188|945189|945190|945191|945192|945193|945194|945195|945196|945197|945198|945199|945200|945201|945202|945203|945204|954880|954881|954882|954883|954884|954885|954886|954887|954888|954889|954890|954891|954892|954893|954894|954895|954896|954897|959815|959816|970837|970838", + "upstreamId": "200692|200692|200693|200694|200694|252491|252492|252493|252498|252499|252500|252502|252503|252504|252505|252507|252509|252510|252515|252516|252517|252520|252521|252522|252523|252524|252527|252528|252529|361649|369176|370533|370534|406901|413722|415064|415065|443987|443989|443990|443992|443993|443994|443999|455749|455750|455757|455769|455774|455778|455782|455783|455787|455800|455803|455903|455907|455910|455917|455918|455921|455923|455931|455936|455938|455939|455943|455945|455948|455952|455961|455969|455971|455975|455976|455979|455986|456323|456325|456326|456332|456336|456337|456338|456340|456342|456346|456348|456352|456359|456363|456364|456367|456392|456672|456677|456679|456683|456688|456693|456699|456706|456707|456713|456716|456717|456721|456729|456730|456747|456748|513286|521757|521760|521771|521773|521780|521785|521786|521789|521791|521793|521800|521802|521805|522128|522129|522130|522134|522136|522137|522139|522142|522144|522146|522151|522152|522155|522158|522159|522164|522166|522168|522170|522176|522491|522492|522508|522518|522534|522540|522543|522549|522552|522555|539003|539003|560826|560835|560848|560851|560853|560854|560855|560862|560864|560868|560876|560877|560886|560889|560893|560899|560901|560902|560905|560906|560907|560908|560917|560929|560969|560976|560978|560980|560982|560986|560989|560993|561004|561006|561008|561012|561015|561016|561025|561028|561030|561032|561034|561041|563691|563705|563706|563709|563712|563713|563718|563722|563723|563731|563734|563737|563739|563743|563745|563747|563749|563751|563753|563755|563762|565842|565846|565852|565853|565854|565858|565874|565877|565881|565888|565892|565895|565898|565903|565905|565920|565924|565936|565953|565957|626168|635139|635140|635141|635142|635143|635144|635145|635146|635147|635148|635149|635150|635151|635152|635153|635154|635155|635156|635157|635158|635159|635160|635161|635162|635163|635164|635165|635166|635167|635168|635169|635170|635171|635172|635173|635174|635175|635176|635177|635178|635179|635180|635181|635182|635183|635184|635185|635186|635187|635188|635189|635190|635191|635192|635193|635194|635195|635196|635197|635198|635199|635200|635201|635202|635203|635204|635205|635206|635207|635208|635209|635210|635211|635212|635213|635214|635215|635216|635217|635218|635219|635220|635221|635222|635223|635224|635225|635226|635227|635228|635229|635230|635231|635232|635233|635234|635235|635236|635237|635238|635239|635240|635241|635242|651549|651578|651582|651591|651670|692037|692038|692039|692040|692041|692043|692044|692045|692046|692047|692049|692053|692054|692055|692057|692058|692059|692060|695327|695328|699658|699662|699663|699666|699668|699669|710601|710602|710603|710604|710605|710608|710609|710610|710611|722136|722137|730436|735769|735771|735774|750218|750220|750224|759605|765824|765827|765829|765843|777648|777653|777774|779270|782646|782651|782652|782654|787468|819749|832350|832351|832352|832353|832354|832355|832356|832357|832358|832359|832360|832361|832362|832363|832364|832365|832366|832367|832368|832369|832370|832371|832372|832373|832374|832375|832376|832377|832378|832379|832380|832381|832382|832383|832384|832385|832386|832387|832388|832389|832390|832391|832392|832393|832394|832395|832396|832397|832398|832399|832400|832401|832402|832403|832404|832405|832406|832407|832408|832409|832410|832411|832412|832413|832414|832415|832416|832417|832418|832419|832420|832421|832422|832423|832424|832425|832426|832427|832428|832429|832430|832431|832432|832433|832434|832435|832436|832437|832438|832439|832440|832441|832442|851098|851100|851462|851465|851469|919055|919056|919057|919058|924444|924445|924446|924447|924448|924449|924450|924451|924452|924453|924454|924455|924456|924457|924458|924459|924460|924461|924462|924463|924464|924465|924466|924467|924468|924469|924470|924471|924472|924473|924474|924475|924476|924477|924478|924479|924480|924481|924482|924483|924484|924485|924486|924487|924488|924489|933456|933457|933458|933459|933460|933461|933462|933463|933464|933465|933466|933467|933468|933469|933470|933471|933472|933473|933474|933475|933476|933477|933478|933479|933480|933481|933482|933483|933484|933485|933486|933487|940048|940856|940857|940858|940859|940860|940861|945174|945175|945176|945177|945178|945179|945180|945181|945182|945183|945184|945185|945186|945187|945188|945189|945190|945191|945192|945193|945194|945195|945196|945197|945198|945199|945200|945201|945202|945203|945204|954880|954881|954882|954883|954884|954885|954886|954887|954888|954889|954890|954891|954892|954893|954894|954895|954896|954897|959815|959816|970837|970838", "text": "Bethlem myopathy 2" }, { - "baseId": "200708|200709|919365", + "upstreamId": "200708|200709|919365", "text": "Exudative vitreoretinopathy 6" }, { - "baseId": "200710|200711", + "upstreamId": "200710|200711", "text": "Retinitis pigmentosa 72" }, { - "baseId": "200718|205252|205702", + "upstreamId": "200718|205252|205702", "text": "Partial lipodystrophy, congenital cataracts, and neurodegeneration syndrome" }, { - "baseId": "200762|200763|200765|200766|200767|200769|200770|514251|514252|514253|514254|514255|514256|788887|917779", + "upstreamId": "200762|200763|200765|200766|200767|200769|200770|514251|514252|514253|514254|514255|514256|788887|917779", "text": "Adams-Oliver syndrome 6" }, { - "baseId": "200878|905829|905830|905831|905832|964360|964361", + "upstreamId": "200878|905829|905830|905831|905832|964360|964361", "text": "Growth restriction, severe, with distinctive facies" }, { - "baseId": "200885|200887|200888|200889|205558|455396|455414|455415|455424|455500|455504|455507|455514|455525|455528|456230|456238|456240|521483|521777|521781|521787|521788|521873|521878|521879|522157|522162|522163|560642|560644|560646|560648|560650|563460|563463|563465|563466|565499|565502|565507|634751|634752|634753|634754|634755|634756|634757|634758|634759|634760|651532|744106|850690|850691|850693|850694|850695|850696|850697|929876|929877|929878|929879|951953|951954|959417|959418|959419|959420", + "upstreamId": "200885|200887|200888|200889|205558|455396|455414|455415|455424|455500|455504|455507|455514|455525|455528|456230|456238|456240|521483|521777|521781|521787|521788|521873|521878|521879|522157|522162|522163|560642|560644|560646|560648|560650|563460|563463|563465|563466|565499|565502|565507|634751|634752|634753|634754|634755|634756|634757|634758|634759|634760|651532|744106|850690|850691|850693|850694|850695|850696|850697|929876|929877|929878|929879|951953|951954|959417|959418|959419|959420", "text": "Ciliary dyskinesia, primary, 32" }, { - "baseId": "200970|200971|200972|200973|200974|215173|259235|411605|411606|609275|609276|732842|790064|790065|790067|857610|857627|861670|963435|964991", + "upstreamId": "200970|200971|200972|200973|200974|215173|259235|411605|411606|609275|609276|732842|790064|790065|790067|857610|857627|861670|963435|964991", "text": "Infantile liver failure syndrome 2" }, { - "baseId": "200983|200983|200984|200984|200985|200986|200987|214344|214345|214346|214347|214347|260917|353908|364136|409140|426072|429581|429582|438769|463307|463315|463316|463321|463323|463330|463335|463844|463845|463854|464181|464184|464187|464189|464196|464210|464326|464331|464332|514662|528218|528219|528220|528222|528576|528586|528587|528691|566189|566507|568950|568952|611786|642523|642524|642525|652956|693515|693515|693516|693518|693519|702911|702912|702913|702914|702915|702916|702917|702918|702920|702921|702922|725711|778191|778288|784734|791416|820631|841566|841567|841568|919533|927106|927107|927108|936643|936644|936645|940305|940306|948592|948593|972793", + "upstreamId": "200983|200983|200984|200984|200985|200986|200987|214344|214345|214346|214347|214347|260917|353908|364136|409140|426072|429581|429582|438769|463307|463315|463316|463321|463323|463330|463335|463844|463845|463854|464181|464184|464187|464189|464196|464210|464326|464331|464332|514662|528218|528219|528220|528222|528576|528586|528587|528691|566189|566507|568950|568952|611786|642523|642524|642525|652956|693515|693515|693516|693518|693519|702911|702912|702913|702914|702915|702916|702917|702918|702920|702921|702922|725711|778191|778288|784734|791416|820631|841566|841567|841568|919533|927106|927107|927108|936643|936644|936645|940305|940306|948592|948593|972793", "text": "Joubert syndrome 23" }, { - "baseId": "200983|200983|200984|205373|205374|214347|364136|409140|429581|438769|463307|463315|463316|463321|463323|463330|463335|463844|463845|463854|464181|464184|464187|464189|464196|464210|464326|464331|464332|514662|528218|528219|528220|528222|528576|528586|528587|528691|566189|566507|568950|568950|568952|611786|642523|642524|642525|652956|693515|693516|693518|693519|702911|702912|702913|702914|702915|702916|702917|702918|702920|702921|702922|725711|778191|778288|784734|820631|841566|841567|841568|927106|927107|927108|936643|936644|936645|940305|940306|948592|948593", + "upstreamId": "200983|200983|200984|205373|205374|214347|364136|409140|429581|438769|463307|463315|463316|463321|463323|463330|463335|463844|463845|463854|464181|464184|464187|464189|464196|464210|464326|464331|464332|514662|528218|528219|528220|528222|528576|528586|528587|528691|566189|566507|568950|568950|568952|611786|642523|642524|642525|652956|693515|693516|693518|693519|702911|702912|702913|702914|702915|702916|702917|702918|702920|702921|702922|725711|778191|778288|784734|820631|841566|841567|841568|927106|927107|927108|936643|936644|936645|940305|940306|948592|948593", "text": "Short-rib thoracic dysplasia 14 with polydactyly" }, { - "baseId": "200983|260900|260907|260908|260914|260917|260923|260924|362277", + "upstreamId": "200983|260900|260907|260908|260914|260917|260923|260924|362277", "text": "Joubert syndrome and related disorders" }, { - "baseId": "201007|431489", + "upstreamId": "201007|431489", "text": "Beukes hip dysplasia" }, { - "baseId": "201142|231839|264585|332444|359214|361120|361121|361122|361124|361127|361130|361140|361141|361142|361146|361147|361149|361150|361155|608933|608934", + "upstreamId": "201142|231839|264585|332444|359214|361120|361121|361122|361124|361127|361130|361140|361141|361142|361146|361147|361149|361150|361155|608933|608934", "text": "intellectual deficiency" }, { - "baseId": "201179|201194|205231|264065|282640|282677|284326|284539|285543|288937|288967|288979|316394|316408|320150|320157|323800|323825|323870|331227", + "upstreamId": "201179|201194|205231|264065|282640|282677|284326|284539|285543|288937|288967|288979|316394|316408|320150|320157|323800|323825|323870|331227", "text": "Intellectual Disability, Dominant" }, { - "baseId": "201452", + "upstreamId": "201452", "text": "SCN1A Seizure Disorders" }, { - "baseId": "201881|202181|203013|516418|551735", + "upstreamId": "201881|202181|203013|516418|551735", "text": "Lennox-Gastaut syndrome" }, { - "baseId": "202181|653823", + "upstreamId": "202181|653823", "text": "Severe neurodevelopmental delay" }, { - "baseId": "202254|305050|305052|308787|308789|308790|313900|313966|313968|313970|314028|314029|314034|353837|353838|464434|464437|464567|528332|528333|528814|528857|568338|568345|569082|577379|581792|642789|642790|642791|703027|703028|760358|787889|841908|841909|841910|841911|841912|927197|936766|936767|936768|948726|957341|957342", + "upstreamId": "202254|305050|305052|308787|308789|308790|313900|313966|313968|313970|314028|314029|314034|353837|353838|464434|464437|464567|528332|528333|528814|528857|568338|568345|569082|577379|581792|642789|642790|642791|703027|703028|760358|787889|841908|841909|841910|841911|841912|927197|936766|936767|936768|948726|957341|957342", "text": "Nocturnal frontal lobe epilepsy" }, { - "baseId": "202264|551694", + "upstreamId": "202264|551694", "text": "myoclonic epilepsy" }, { - "baseId": "202291", + "upstreamId": "202291", "text": "Photosensitive tonic-clonic seizures" }, { - "baseId": "202332", + "upstreamId": "202332", "text": "STXBP1-associated neurodevelopmental disorder" }, { - "baseId": "202626", + "upstreamId": "202626", "text": "Epileptic encephalopathy, early infantile, 3" }, { - "baseId": "202926|861053", + "upstreamId": "202926|861053", "text": "Childhood myocerebrohepatopathy spectrum" }, { - "baseId": "203048|400552", + "upstreamId": "203048|400552", "text": "Primary progressive multiple sclerosis" }, { - "baseId": "203699|243873", + "upstreamId": "203699|243873", "text": "Continuous spike and waves during slow-wave sleep syndrome" }, { - "baseId": "203726|623231|801183", + "upstreamId": "203726|623231|801183", "text": "Limb dystonia" }, { - "baseId": "203840|203843", + "upstreamId": "203840|203843", "text": "Progressive neurologic deterioration" }, { - "baseId": "203840|203843", + "upstreamId": "203840|203843", "text": "Difficulty standing" }, { - "baseId": "203897|203912", + "upstreamId": "203897|203912", "text": "sporadic NAFE" }, { - "baseId": "203912|203950", + "upstreamId": "203912|203950", "text": "Neurodevelopmental disorder with epilepsy" }, { - "baseId": "203913", + "upstreamId": "203913", "text": "Familial GGE" }, { - "baseId": "204032|263371", + "upstreamId": "204032|263371", "text": "Speech apraxia" }, { - "baseId": "204306|204307|204308|204309|204310|204311|204312|204313|217239|481060|481061|481062|481063|481064|481069|481070|481072|609006|679835|745640|798456|963077|973108", + "upstreamId": "204306|204307|204308|204309|204310|204311|204312|204313|217239|481060|481061|481062|481063|481064|481069|481070|481072|609006|679835|745640|798456|963077|973108", "text": "Robinow syndrome, autosomal dominant 2" }, { - "baseId": "204353|204354", + "upstreamId": "204353|204354", "text": "Maturity-onset diabetes of the young, type 14" }, { - "baseId": "204355|204357|204358", + "upstreamId": "204355|204357|204358", "text": "Barber-Say syndrome" }, { - "baseId": "204356", + "upstreamId": "204356", "text": "Ablepharon macrostomia syndrome" }, { - "baseId": "204390|205762|441330|459438|459443|459444|459535|459999|460001|524527|524830|524937|524939|525087|525090|563212|563214|563216|563927|563941|565878|565882|565883|569005|569006|577120|612285|638210|638211|638212|638213|638214|638215|692663|700985|836071|836072|836073|836074|836075|925566|925567|934741|934742|934743|934744|934745|946597|946598", + "upstreamId": "204390|205762|441330|459438|459443|459444|459535|459999|460001|524527|524830|524937|524939|525087|525090|563212|563214|563216|563927|563941|565878|565882|565883|569005|569006|577120|612285|638210|638211|638212|638213|638214|638215|692663|700985|836071|836072|836073|836074|836075|925566|925567|934741|934742|934743|934744|934745|946597|946598", "text": "Distal spinal muscular atrophy, autosomal recessive 2" }, { - "baseId": "204406", + "upstreamId": "204406", "text": "Deafness, autosomal recessive 104" }, { - "baseId": "204433|204434|204438|205693|205694|205695|205696|205697|205698|213956|583077|788729|789872|789873|789874|789875|789876|966069|966070|966071", + "upstreamId": "204433|204434|204438|205693|205694|205695|205696|205697|205698|213956|583077|788729|789872|789873|789874|789875|789876|966069|966070|966071", "text": "Achromatopsia 7" }, { - "baseId": "204458|439706|439707|439708|439709|439710|439711|439712|439713", + "upstreamId": "204458|439706|439707|439708|439709|439710|439711|439712|439713", "text": "Combined immunodeficiency and megaloblastic anemia with or without hyperhomocysteinemia" }, { - "baseId": "204462", + "upstreamId": "204462", "text": "Pazopanib response" }, { - "baseId": "204521|204522|204523|204524|204525|204526|204527|204528|204529|204530", + "upstreamId": "204521|204522|204523|204524|204525|204526|204527|204528|204529|204530", "text": "Glycogen content in skeletal muscle, increased" }, { - "baseId": "204609|204610|204611|204612|204613|204614|204615|204616|204617|204618|204619|204620|204621|204622|204623|204624|204625|204626|204627|204628|204629", + "upstreamId": "204609|204610|204611|204612|204613|204614|204615|204616|204617|204618|204619|204620|204621|204622|204623|204624|204625|204626|204627|204628|204629", "text": "Childhood-Onset Schizophrenia" }, { - "baseId": "204637|204638|204639|204640", + "upstreamId": "204637|204638|204639|204640", "text": "intellectual disability with severe speech impairment" }, { - "baseId": "204637|204638|204639|204640|206661|206662|583119|815999|919489|919490", + "upstreamId": "204637|204638|204639|204640|206661|206662|583119|815999|919489|919490", "text": "Mental retardation, autosomal dominant 40" }, { - "baseId": "204642|275535", + "upstreamId": "204642|275535", "text": "Developmental dyslexia" }, { - "baseId": "204646|204647|237152|362360|383518|481309|583083|608802|608860|626121|654116|790142|918714|961592|961593|963515|964187|964651|965454|970729|972711", + "upstreamId": "204646|204647|237152|362360|383518|481309|583083|608802|608860|626121|654116|790142|918714|961592|961593|963515|964187|964651|965454|970729|972711", "text": "Mental retardation, autosomal dominant 39" }, { - "baseId": "204975|204976|805052|805053|858583", + "upstreamId": "204975|204976|805052|805053|858583", "text": "Polymicrogyria, perisylvian, with cerebellar hypoplasia and arthrogryposis" }, { - "baseId": "204977|227320|920331", + "upstreamId": "204977|227320|920331", "text": "Nonmedullary thyroid carcinoma 1" }, { - "baseId": "204978", + "upstreamId": "204978", "text": "Thyroid cancer, nonmedullary, 4" }, { - "baseId": "204979|486801", + "upstreamId": "204979|486801", "text": "Herpes simplex encephalitis, susceptibility to, 7" }, { - "baseId": "205022|514092", + "upstreamId": "205022|514092", "text": "Transient ischemic attack" }, { - "baseId": "205031", + "upstreamId": "205031", "text": "Aplasia/Hypoplasia of the thumb" }, { - "baseId": "205031", + "upstreamId": "205031", "text": "Multiple skeletal anomalies" }, { - "baseId": "205041|205042|205043|205044|297332|481298|481299|481300|481301|481302|481303|481304|481305|481306|481307|512580|583135|792693|792694|792695|792696|792697|792698|792699|798803|919972|961658|972734", + "upstreamId": "205041|205042|205043|205044|297332|481298|481299|481300|481301|481302|481303|481304|481305|481306|481307|512580|583135|792693|792694|792695|792696|792697|792698|792699|798803|919972|961658|972734", "text": "Mental retardation, X-linked 12" }, { - "baseId": "205045|205046|205047|790663", + "upstreamId": "205045|205046|205047|790663", "text": "Congenital anomalies of kidney and urinary tract type 2" }, { - "baseId": "205051|205052|205053|205054|205055|205056", + "upstreamId": "205051|205052|205053|205054|205055|205056", "text": "Spinocerebellar ataxia, X-linked" }, { - "baseId": "205144|205144|260877|486672|486673|486674|561972|799347|799348|980914", + "upstreamId": "205144|205144|260877|486672|486673|486674|561972|799347|799348|980914", "text": "Amyotrophic lateral sclerosis, susceptibility to, 24" }, { - "baseId": "205181|514063|682738", + "upstreamId": "205181|514063|682738", "text": "Hypokalemia" }, { - "baseId": "205181|514063", + "upstreamId": "205181|514063", "text": "Hypermagnesemia" }, { - "baseId": "205197|205198|855088|855091|855092|855093|855094|855095|855096|962246", + "upstreamId": "205197|205198|855088|855091|855092|855093|855094|855095|855096|962246", "text": "Developmental and epileptic encephalopathy, 85, with or without midline brain defects" }, { - "baseId": "205199|205200|205201|205202|205203|205204|575497|575498|575510|575516|578507|622420|918387|919493|974497", + "upstreamId": "205199|205200|205201|205202|205203|205204|575497|575498|575510|575516|578507|622420|918387|919493|974497", "text": "Combined oxidative phosphorylation deficiency 31" }, { - "baseId": "205199|205200|205201|205202|205203|205204|205205|226502|426751|514079|550131", + "upstreamId": "205199|205200|205201|205202|205203|205204|205205|226502|426751|514079|550131", "text": "Infantile muscular hypotonia" }, { - "baseId": "205208|320553|320594|329361|337894|399643|400207|400211|445230|464041|464044|528518|550273|550277|566413", + "upstreamId": "205208|320553|320594|329361|337894|399643|400207|400211|445230|464041|464044|528518|550273|550277|566413", "text": "Spermatogenic failure 28" }, { - "baseId": "205216|226496|226497|226498|226499|226502|424605|511195|609017|621936|626101|800980|964137|964797|983663|983664", + "upstreamId": "205216|226496|226497|226498|226499|226502|424605|511195|609017|621936|626101|800980|964137|964797|983663|983664", "text": "Mental retardation, autosomal dominant 42" }, { - "baseId": "205216|226495|226496|226497|226498|226499|226500|226501|226502", + "upstreamId": "205216|226495|226496|226497|226498|226499|226500|226501|226502", "text": "Neurodevelopmental Disability" }, { - "baseId": "205216|226495|226496|226497|226498|226499|226500|226501|226502|792733|918499", + "upstreamId": "205216|226495|226496|226497|226498|226499|226500|226501|226502|792733|918499", "text": "hypotonia" }, { - "baseId": "205216", + "upstreamId": "205216", "text": "LEUKEMIA, CHRONIC LYMPHOCYTIC, SOMATIC" }, { - "baseId": "205216|210875|225802|225854|227575|362296|362313|424629|512101|513423|576122|623669|623670|623672|623674|623677|623678|623679|623680|623682|623683|623684|623686|623688|623689|623690|623691|623692|623693|623694|623697|623698|623699|623701|623702|623703|623704|623706|623707|623708|623709|623710|623711|623712|623713|623714|623715|623716|623718|623719|623720|623722|623723|623725|623727|623729|623730|623732|623738|623739|623740|623742|623743|623744|623745|623746|623747|623748|623749|623750|623751|623752|623753|623754|623755|623756|623757|623759|623761|623762|623764|623767|623768|623769|623771|623772|623773|677427|679241|679242|679243|679244|679245|679246|679247|679791|743180|788958|788959|788960|788961|788962|789343|792776|857334|857335|857336|857337|857338|857339|857340|857341|857342|857343|857344|861271|861569|904877|916784|916786|916789|917227|918245|918283|918302|921257|969483|969485|969486|969487|969488|970259|970273|970274|970275|970276|970277|970278|970279|970280|970281|970282|970283|970284|970285|970286|970287|970288|970289|970290|970291|970292|970293|970294|970295|970296|970297|970298|970338|970342|970673|970678|970684|970690|970698|970703|970757|970771|970774|970802|970867|970916|970921|970975|971003|971015|971021|971047|971049|971071|971075|971106|971107|971108|971109|971123|971140|971141|971154|971158|971168|971173|971186|971193|971199|971223|973044|974486", + "upstreamId": "205216|210875|225802|225854|227575|362296|362313|424629|512101|513423|576122|623669|623670|623672|623674|623677|623678|623679|623680|623682|623683|623684|623686|623688|623689|623690|623691|623692|623693|623694|623697|623698|623699|623701|623702|623703|623704|623706|623707|623708|623709|623710|623711|623712|623713|623714|623715|623716|623718|623719|623720|623722|623723|623725|623727|623729|623730|623732|623738|623739|623740|623742|623743|623744|623745|623746|623747|623748|623749|623750|623751|623752|623753|623754|623755|623756|623757|623759|623761|623762|623764|623767|623768|623769|623771|623772|623773|677427|679241|679242|679243|679244|679245|679246|679247|679791|743180|788958|788959|788960|788961|788962|789343|792776|857334|857335|857336|857337|857338|857339|857340|857341|857342|857343|857344|861271|861569|904877|916784|916786|916789|917227|918245|918283|918302|921257|969483|969485|969486|969487|969488|970259|970273|970274|970275|970276|970277|970278|970279|970280|970281|970282|970283|970284|970285|970286|970287|970288|970289|970290|970291|970292|970293|970294|970295|970296|970297|970298|970338|970342|970673|970678|970684|970690|970698|970703|970757|970771|970774|970802|970867|970916|970921|970975|971003|971015|971021|971047|971049|971071|971075|971106|971107|971108|971109|971123|971140|971141|971154|971158|971168|971173|971186|971193|971199|971223|973044|974486", "text": "Neurodevelopmental disorder" }, { - "baseId": "205218|215784|405057|425337|480736|480738|654113|970676", + "upstreamId": "205218|215784|405057|425337|480736|480738|654113|970676", "text": "Takenouchi-Kosaki syndrome" }, { - "baseId": "205253|522909|625144|969586", + "upstreamId": "205253|522909|625144|969586", "text": "Spinal muscular atrophy, infantile, James type" }, { - "baseId": "205277|214788|214789|390060|390109|462348|462357|462364|462631|463076|463220|463221|463226|526878|527278|527292|527294|527295|527297|527557|527822|527828|527829|565016|565634|565636|565640|566961|566963|568135|571942|571944|614380|624459|624461|641283|641284|641285|641286|641287|641288|641289|641290|641291|641292|641293|641294|641295|652186|652494|702426|702427|713645|738759|769230|769231|769233|787883|840112|840113|840114|840115|840116|840117|840118|840119|840120|840121|840122|840123|840124|926684|926685|936196|936197|936198|936199|936200|936201|936202|948110|948111|956908|956909|964926|965347", + "upstreamId": "205277|214788|214789|390060|390109|462348|462357|462364|462631|463076|463220|463221|463226|526878|527278|527292|527294|527295|527297|527557|527822|527828|527829|565016|565634|565636|565640|566961|566963|568135|571942|571944|614380|624459|624461|641283|641284|641285|641286|641287|641288|641289|641290|641291|641292|641293|641294|641295|652186|652494|702426|702427|713645|738759|769230|769231|769233|787883|840112|840113|840114|840115|840116|840117|840118|840119|840120|840121|840122|840123|840124|926684|926685|936196|936197|936198|936199|936200|936201|936202|948110|948111|956908|956909|964926|965347", "text": "Immunodeficiency 44" }, { - "baseId": "205306|481272|481273|481274|481275|481276|551303|551321|677329|791801|797583|800057|805961|919753|962055|965892|972730|976669", + "upstreamId": "205306|481272|481273|481274|481275|481276|551303|551321|677329|791801|797583|800057|805961|919753|962055|965892|972730|976669", "text": "Intellectual disability, autosomal dominant 56" }, { - "baseId": "205317", + "upstreamId": "205317", "text": "Tonic-clonic epilepsy" }, { - "baseId": "205317", + "upstreamId": "205317", "text": "Unilateral Hypotonia" }, { - "baseId": "205317|230984", + "upstreamId": "205317|230984", "text": "Mental Retardation, Psychosocial" }, { - "baseId": "205332|205359|205360|205362|205363|205364|205365|205366|205367|379026|471347|472076|535063|535065|535066|573631|575346|575347|649752|694806|939463|951634", + "upstreamId": "205332|205359|205360|205362|205363|205364|205365|205366|205367|379026|471347|472076|535063|535065|535066|573631|575346|575347|649752|694806|939463|951634", "text": "X-linked myopathy with excessive autophagy" }, { - "baseId": "205352|420004|420005|420006|626301|677474|679332|792638|792639|792640|920061", + "upstreamId": "205352|420004|420005|420006|626301|677474|679332|792638|792639|792640|920061", "text": "Intellectual disability, X-linked 106" }, { - "baseId": "205385|205386|226589|226591", + "upstreamId": "205385|205386|226589|226591", "text": "Acute rhabdomyolysis" }, { - "baseId": "205385|205386|226589|226591", + "upstreamId": "205385|205386|226589|226591", "text": "Episodic flaccid weakness" }, { - "baseId": "205385|205386|226589|226591|226592|226593|378630|608879|792019|802233|904183|904184|972732", + "upstreamId": "205385|205386|226589|226591|226592|226593|378630|608879|792019|802233|904183|904184|972732", "text": "METABOLIC CRISES, RECURRENT, WITH RHABDOMYOLYSIS, CARDIAC ARRHYTHMIAS, AND NEURODEGENERATION" }, { - "baseId": "205404|226149|538497|578583|578584|581233|581234|622481|758004|788945|798769|805043|805044", + "upstreamId": "205404|226149|538497|578583|578584|581233|581234|622481|758004|788945|798769|805043|805044", "text": "Klippel-feil syndrome 4, autosomal recessive, with nemaline myopathy and facial dysmorphism" }, { - "baseId": "205532|205533|919254|919255|919256|920278", + "upstreamId": "205532|205533|919254|919255|919256|920278", "text": "Epithelial recurrent erosion dystrophy" }, { - "baseId": "205538|205539|426175|429831|429833|429836|429837|465817|465820|466516|466519|466553|466801|530099|530103|530106|530110|530208|530423|530644|530645|568210|568212|570330|570334|570338|570349|570351|574101|644805|644806|644807|644808|644809|644810|644811|644812|653283|726738|731088|731089|771003|776191|844090|844091|844092|844093|844094|844095|844096|844097|844098|844099|844100|844101|844102|844103|844104|844105|844106|850420|850421|927883|927884|927885|929859|937529|937530|937531|937532|937533|937534|939724|949476|949477|951929|951930|957831|957832|959406|959407|962179", + "upstreamId": "205538|205539|426175|429831|429833|429836|429837|465817|465820|466516|466519|466553|466801|530099|530103|530106|530110|530208|530423|530644|530645|568210|568212|570330|570334|570338|570349|570351|574101|644805|644806|644807|644808|644809|644810|644811|644812|653283|726738|731088|731089|771003|776191|844090|844091|844092|844093|844094|844095|844096|844097|844098|844099|844100|844101|844102|844103|844104|844105|844106|850420|850421|927883|927884|927885|929859|937529|937530|937531|937532|937533|937534|939724|949476|949477|951929|951930|957831|957832|959406|959407|962179", "text": "Dyskeratosis congenita, autosomal dominant 6" }, { - "baseId": "205538|205539", + "upstreamId": "205538|205539", "text": "Dyskeratosis congenita, autosomal recessive 7" }, { - "baseId": "205551|274984|424401|452592|452593|452598|452600|452601|452607|452608|452621|452626|452631|452633|452636|452638|452644|452651|452653|452655|452657|452659|452663|452664|452667|452675|452679|452680|452682|452683|452686|452687|452689|452691|452875|452878|452880|452881|452884|452888|452891|452892|452894|452896|452897|452901|452903|452907|452908|452913|452915|452916|452917|452920|452923|452924|452925|452926|452927|452929|452930|452932|452933|452934|452935|452937|452938|452939|452941|452944|452945|452946|452947|452948|452951|452953|452955|452963|452964|452966|452969|452970|452971|452973|452974|452975|452976|452977|452978|452982|452984|452986|452988|452994|452996|452997|453006|453007|453008|453016|453018|453026|453030|453032|453033|453144|453146|453151|453155|453160|453163|453170|453176|453188|453190|453191|453194|453195|453207|453210|453212|453214|453220|453221|453222|453238|453247|453251|453253|453256|453258|453261|453270|453281|453289|453296|453314|453316|453319|453320|453325|453328|519458|519463|519467|519476|519480|519482|519484|519485|519486|519487|519488|519490|519491|519493|519495|519496|519499|519504|519505|519506|519508|519509|519511|519512|519517|519519|519520|519521|519522|519527|519529|519531|519534|519535|519537|519546|519553|519555|519559|519560|519563|519568|519573|519579|519583|519653|519655|519662|519664|519675|519679|519683|519696|519698|519704|519709|519711|519713|519715|519716|519720|519722|519724|519727|519744|519746|519749|519755|519757|519762|519764|519766|519769|519770|519775|519777|519781|519783|519787|519791|519793|519797|519799|519801|559076|559078|559080|559082|559084|559086|559088|559090|559092|559094|559096|559606|559608|559610|559612|559614|559616|559618|559620|559622|559624|559626|559628|559630|559632|559634|559636|561704|561709|561710|561712|561717|561722|561723|561726|561730|561744|561745|561750|563162|563167|563169|563174|563177|563186|563192|563193|563197|563204|631628|631629|631630|631631|631632|631633|631634|631635|631636|631637|631638|631639|631640|631641|631642|631643|631644|631645|631646|631647|631648|631649|631650|631651|631652|631653|631654|631655|631656|631657|631658|631659|631660|631661|631662|631663|631664|631665|631666|631667|631668|631669|631670|631671|631672|631673|631674|631675|631676|631677|631678|631679|631680|631681|631682|631683|631684|631685|631686|631687|631688|631689|631690|631691|631692|631693|631694|631695|631696|631697|691457|691458|691459|691460|691461|691462|691463|691464|691465|691466|691467|691468|695212|695213|698199|698202|698203|698204|698205|698206|698207|698209|698210|698212|698213|698215|698217|698219|698220|698221|698222|698223|708960|708961|708964|708965|708968|708970|708971|720554|720555|720556|720557|720558|720560|720562|720563|720565|720566|734192|734196|734198|734200|734203|743942|744030|748413|748418|748419|748421|748426|759217|759227|764056|764059|764060|764066|764067|764071|764077|774864|777264|777267|777383|779070|781759|781761|781767|781771|828408|828409|828410|828411|828412|828413|828414|828415|828416|828417|828418|828419|828420|828421|828422|828423|828424|828425|828426|828427|828428|828429|828430|828431|828432|828433|828434|828435|828436|828437|828438|828439|828440|828441|828442|828443|828444|828445|828446|828447|828448|828449|828450|828451|828452|828453|850956|851067|851572|851574|857588|857589|923285|923286|923287|923288|923289|923290|923291|923292|923293|923294|923295|923296|923297|923298|923299|923300|923301|923302|932040|932041|932042|932043|932044|932045|932046|932047|932048|932049|932050|932051|932052|932053|940760|943650|943651|943652|943653|943654|943655|943656|943657|943658|943659|943660|943661|943662|943663|943664|943665|943666|943667|953562|953563|953564|953565|953566|953567|953568|959704", + "upstreamId": "205551|274984|424401|452592|452593|452598|452600|452601|452607|452608|452621|452626|452631|452633|452636|452638|452644|452651|452653|452655|452657|452659|452663|452664|452667|452675|452679|452680|452682|452683|452686|452687|452689|452691|452875|452878|452880|452881|452884|452888|452891|452892|452894|452896|452897|452901|452903|452907|452908|452913|452915|452916|452917|452920|452923|452924|452925|452926|452927|452929|452930|452932|452933|452934|452935|452937|452938|452939|452941|452944|452945|452946|452947|452948|452951|452953|452955|452963|452964|452966|452969|452970|452971|452973|452974|452975|452976|452977|452978|452982|452984|452986|452988|452994|452996|452997|453006|453007|453008|453016|453018|453026|453030|453032|453033|453144|453146|453151|453155|453160|453163|453170|453176|453188|453190|453191|453194|453195|453207|453210|453212|453214|453220|453221|453222|453238|453247|453251|453253|453256|453258|453261|453270|453281|453289|453296|453314|453316|453319|453320|453325|453328|519458|519463|519467|519476|519480|519482|519484|519485|519486|519487|519488|519490|519491|519493|519495|519496|519499|519504|519505|519506|519508|519509|519511|519512|519517|519519|519520|519521|519522|519527|519529|519531|519534|519535|519537|519546|519553|519555|519559|519560|519563|519568|519573|519579|519583|519653|519655|519662|519664|519675|519679|519683|519696|519698|519704|519709|519711|519713|519715|519716|519720|519722|519724|519727|519744|519746|519749|519755|519757|519762|519764|519766|519769|519770|519775|519777|519781|519783|519787|519791|519793|519797|519799|519801|559076|559078|559080|559082|559084|559086|559088|559090|559092|559094|559096|559606|559608|559610|559612|559614|559616|559618|559620|559622|559624|559626|559628|559630|559632|559634|559636|561704|561709|561710|561712|561717|561722|561723|561726|561730|561744|561745|561750|563162|563167|563169|563174|563177|563186|563192|563193|563197|563204|631628|631629|631630|631631|631632|631633|631634|631635|631636|631637|631638|631639|631640|631641|631642|631643|631644|631645|631646|631647|631648|631649|631650|631651|631652|631653|631654|631655|631656|631657|631658|631659|631660|631661|631662|631663|631664|631665|631666|631667|631668|631669|631670|631671|631672|631673|631674|631675|631676|631677|631678|631679|631680|631681|631682|631683|631684|631685|631686|631687|631688|631689|631690|631691|631692|631693|631694|631695|631696|631697|691457|691458|691459|691460|691461|691462|691463|691464|691465|691466|691467|691468|695212|695213|698199|698202|698203|698204|698205|698206|698207|698209|698210|698212|698213|698215|698217|698219|698220|698221|698222|698223|708960|708961|708964|708965|708968|708970|708971|720554|720555|720556|720557|720558|720560|720562|720563|720565|720566|734192|734196|734198|734200|734203|743942|744030|748413|748418|748419|748421|748426|759217|759227|764056|764059|764060|764066|764067|764071|764077|774864|777264|777267|777383|779070|781759|781761|781767|781771|828408|828409|828410|828411|828412|828413|828414|828415|828416|828417|828418|828419|828420|828421|828422|828423|828424|828425|828426|828427|828428|828429|828430|828431|828432|828433|828434|828435|828436|828437|828438|828439|828440|828441|828442|828443|828444|828445|828446|828447|828448|828449|828450|828451|828452|828453|850956|851067|851572|851574|857588|857589|923285|923286|923287|923288|923289|923290|923291|923292|923293|923294|923295|923296|923297|923298|923299|923300|923301|923302|932040|932041|932042|932043|932044|932045|932046|932047|932048|932049|932050|932051|932052|932053|940760|943650|943651|943652|943653|943654|943655|943656|943657|943658|943659|943660|943661|943662|943663|943664|943665|943666|943667|953562|953563|953564|953565|953566|953567|953568|959704", "text": "Ciliary dyskinesia, primary, 37" }, { - "baseId": "205553|205554|205555|788391", + "upstreamId": "205553|205554|205555|788391", "text": "Ciliary dyskinesia, primary, 42" }, { - "baseId": "205598", + "upstreamId": "205598", "text": "Chondrodysplasia punctata 2, X-linked dominant, atypical" }, { - "baseId": "205664", + "upstreamId": "205664", "text": "HETEROTOPIA, PERIVENTRICULAR NODULAR, X-LINKED DOMINANT, WITH MELNICK-NEEDLES SYNDROME" }, { - "baseId": "205685|205685|205686|205686|205687|274206|360505|424904|427124|442566|550231|553084|622739|622740|788944|966805|972527", + "upstreamId": "205685|205685|205686|205686|205687|274206|360505|424904|427124|442566|550231|553084|622739|622740|788944|966805|972527", "text": "Noonan syndrome 10" }, { - "baseId": "205688|205689|264699|360061|360159|363735|364005|373101|373104|373107|373852|373856|376070|409125|409127|438761|439007|439099|442557|463255|463257|463275|463276|463280|463286|463287|463289|463782|463785|463787|463795|463796|464103|464108|464120|464125|464126|464275|464277|464279|464281|464283|464285|464289|481139|486105|487787|504561|504784|505464|511014|528171|528183|528188|528190|528193|528196|528198|528522|528536|528537|528545|528650|528661|528664|528667|552775|566480|566482|566487|568917|568922|568928|568929|568931|572804|572805|572806|642470|642471|642472|642473|642474|642475|642476|642477|642478|642479|642480|642481|642482|652556|672277|693500|693504|693505|693507|693508|693509|695619|695620|702890|702891|725675|799765|820623|841525|841526|841527|841528|841529|841530|841531|841532|841533|841534|841535|841536|852741|927082|927083|927084|927085|927086|927087|927088|927089|927090|927091|936629|936630|936631|940303|940304|941061|948575|948576|948577|948578|957224|957225|957226|957227|957228|962887|962888|964415", + "upstreamId": "205688|205689|264699|360061|360159|363735|364005|373101|373104|373107|373852|373856|376070|409125|409127|438761|439007|439099|442557|463255|463257|463275|463276|463280|463286|463287|463289|463782|463785|463787|463795|463796|464103|464108|464120|464125|464126|464275|464277|464279|464281|464283|464285|464289|481139|486105|487787|504561|504784|505464|511014|528171|528183|528188|528190|528193|528196|528198|528522|528536|528537|528545|528650|528661|528664|528667|552775|566480|566482|566487|568917|568922|568928|568929|568931|572804|572805|572806|642470|642471|642472|642473|642474|642475|642476|642477|642478|642479|642480|642481|642482|652556|672277|693500|693504|693505|693507|693508|693509|695619|695620|702890|702891|725675|799765|820623|841525|841526|841527|841528|841529|841530|841531|841532|841533|841534|841535|841536|852741|927082|927083|927084|927085|927086|927087|927088|927089|927090|927091|936629|936630|936631|940303|940304|941061|948575|948576|948577|948578|957224|957225|957226|957227|957228|962887|962888|964415", "text": "Noonan syndrome 9" }, { - "baseId": "205690|205691|205692|456134", + "upstreamId": "205690|205691|205692|456134", "text": "Glioma susceptibility 9" }, { - "baseId": "205707|359048|359049|359050|359051|964900|972456|974877|975715", + "upstreamId": "205707|359048|359049|359050|359051|964900|972456|974877|975715", "text": "Congenital disorder of glycosylation type 1y" }, { - "baseId": "205708|205709|205710|205711|205712|205713|205714|205715|226778|226779|226786|422400", + "upstreamId": "205708|205709|205710|205711|205712|205713|205714|205715|226778|226779|226786|422400", "text": "CLCN4-related disorder" }, { - "baseId": "205729|243941|243942|243943|243944|243945|260375|260376|390649|390650|414917|425531|608947|608948|800392|827639|961026|970758", + "upstreamId": "205729|243941|243942|243943|243944|243945|260375|260376|390649|390650|414917|425531|608947|608948|800392|827639|961026|970758", "text": "Charcot-Marie-Tooth disease, axonal, type 2T" }, { - "baseId": "205735|207496|253010|361357|425459|446888|513538|610599|610600|610601|610602|610603|610604|610605|610606|610607|610608|798956|918835|918836|961970|965341|965343", + "upstreamId": "205735|207496|253010|361357|425459|446888|513538|610599|610600|610601|610602|610603|610604|610605|610606|610607|610608|798956|918835|918836|961970|965341|965343", "text": "Systemic lupus erythematosus" }, { - "baseId": "205751", + "upstreamId": "205751", "text": "Autosomal recessive AGK-related phenotype" }, { - "baseId": "205780|260116|422096|512202|582444|610488|610492", + "upstreamId": "205780|260116|422096|512202|582444|610488|610492", "text": "Menke-Hennekam syndrome 1" }, { - "baseId": "205802|361919|613993", + "upstreamId": "205802|361919|613993", "text": "Chromosome 17q12 deletion syndrome" }, { - "baseId": "205803|205804", + "upstreamId": "205803|205804", "text": "Macrocytic dyserythropoietic anemia" }, { - "baseId": "206613|788942|848626", + "upstreamId": "206613|788942|848626", "text": "Progressive bulbar palsy of childhood" }, { - "baseId": "206661|206662|214566|214568|214571|264510|495565|514653|796914|815999|972844|972968|972969", + "upstreamId": "206661|206662|214566|214568|214571|264510|495565|514653|796914|815999|972844|972968|972969", "text": "CHAMP1-related syndrome" }, { - "baseId": "206679|206680|206681|424449|438672|612142|612176|698319|720688|815903|961982|961983|964657|970782|971539|981441", + "upstreamId": "206679|206680|206681|424449|438672|612142|612176|698319|720688|815903|961982|961983|964657|970782|971539|981441", "text": "Immunodeficiency, common variable, 12" }, { - "baseId": "206712", + "upstreamId": "206712", "text": "Stenosis of the external auditory canal" }, { - "baseId": "206712|263421", + "upstreamId": "206712|263421", "text": "Malar flattening" }, { - "baseId": "206712|263270", + "upstreamId": "206712|263270", "text": "Midface retrusion" }, { - "baseId": "206712|263322|361071|408757|514005|514187|682749|805096|920517", + "upstreamId": "206712|263322|361071|408757|514005|514187|682749|805096|920517", "text": "Micrognathia" }, { - "baseId": "206820", + "upstreamId": "206820", "text": "Muscular dystrophy-dystroglycanopathy (congenital with brain and eye anomalies), type A3" }, { - "baseId": "206864|360820|361025|361047|513943", + "upstreamId": "206864|360820|361025|361047|513943", "text": "Limb pain" }, { - "baseId": "207153|226418|538607|966332|966334", + "upstreamId": "207153|226418|538607|966332|966334", "text": "Myelodysplasia" }, { - "baseId": "207165|256466|297145|322262|330265|330616|330632|331573|331577|340236|340237|340242|340467|340885|340921|346183|346464|346475|346542|347494|347500|347830|347842|353319|353463|353474|353475", + "upstreamId": "207165|256466|297145|322262|330265|330616|330632|331573|331577|340236|340237|340242|340467|340885|340921|346183|346464|346475|346542|347494|347500|347830|347842|353319|353463|353474|353475", "text": "Dyskeratosis Congenita, Recessive" }, { - "baseId": "207209|226415|226416|226417|226418|226419|428396|428398|428400|428401|965623", + "upstreamId": "207209|226415|226416|226417|226418|226419|428396|428398|428400|428401|965623", "text": "Myeloproliferative/lymphoproliferative neoplasms, familial (multiple types), susceptibility to" }, { - "baseId": "207705|207707", + "upstreamId": "207705|207707", "text": "Cerebellar hypoplasia and mental retardation with or without quadrupedal locomotion 1" }, { - "baseId": "207729", + "upstreamId": "207729", "text": "Spinal muscular atrophy, lower extremity-predominant, 2, AD" }, { - "baseId": "207729|407722|608895", + "upstreamId": "207729|407722|608895", "text": "Spinal muscular atrophy, lower extremity-predominant, 2b, prenatal onset, autosomal dominant" }, { - "baseId": "208267|425950", + "upstreamId": "208267|425950", "text": "Kabuki-like syndrome" }, { - "baseId": "208463|430075|430076|430078", + "upstreamId": "208463|430075|430076|430078", "text": "Obesity, autosomal dominant" }, { - "baseId": "208704|353974", + "upstreamId": "208704|353974", "text": "Benign Rolandic epilepsy" }, { - "baseId": "208713|243606|243619|243620|257452|336677|336686|336699|336711|336717|336736|336740|336742|346357|346369|346386|350599|350602|350609|350615|350616|350619|350623|350626|351666|351667|351675|351677|351679|351686|362898|362899|362900|362901|403736|404243|404263|430418|469592|469595|470630|470637|470649|471193|471194|471618|471631|533846|533849|533863|533873|533875|552358|552360|552361|552363|552366|552367|552378|552380|552382|552390|552391|552392|571520|571527|573128|648982|653667|653831|984020", + "upstreamId": "208713|243606|243619|243620|257452|336677|336686|336699|336711|336717|336736|336740|336742|346357|346369|346386|350599|350602|350609|350615|350616|350619|350623|350626|351666|351667|351675|351677|351679|351686|362898|362899|362900|362901|403736|404243|404263|430418|469592|469595|470630|470637|470649|471193|471194|471618|471631|533846|533849|533863|533873|533875|552358|552360|552361|552363|552366|552367|552378|552380|552382|552390|552391|552392|571520|571527|573128|648982|653667|653831|984020", "text": "Hereditary thrombocytopenia and hematologic cancer predisposition syndrome" }, { - "baseId": "208809|208816", + "upstreamId": "208809|208816", "text": "Microcephaly and chorioretinopathy with or without mental retardation" }, { - "baseId": "208841|208843|208844|208846|208847|208848|208849|208850|208851|208852", + "upstreamId": "208841|208843|208844|208846|208847|208848|208849|208850|208851|208852", "text": "Abnormal cortical gyration" }, { - "baseId": "209077|215663|552261", + "upstreamId": "209077|215663|552261", "text": "Cerebral-cerebellar-coloboma syndrome, X-linked" }, { - "baseId": "209199", + "upstreamId": "209199", "text": "Alpha-thalassemia/mental retardation syndrome" }, { - "baseId": "209332", + "upstreamId": "209332", "text": "JOUBERT SYNDROME 29" }, { - "baseId": "209332|424234", + "upstreamId": "209332|424234", "text": "Orofaciodigital syndrome 16" }, { - "baseId": "209338", + "upstreamId": "209338", "text": "Intellectual disability (severe)" }, { - "baseId": "209387|209388|209389|209390|209391|247637|247638|509029|509030|509031|509032|719875", + "upstreamId": "209387|209388|209389|209390|209391|247637|247638|509029|509030|509031|509032|719875", "text": "Short-rib thoracic dysplasia 15 with polydactyly" }, { - "baseId": "209387|209388|209389|209390|209391|260921|538980|622504", + "upstreamId": "209387|209388|209389|209390|209391|260921|538980|622504", "text": "Short-rib thoracic dysplasia 1 with or without polydactyly" }, { - "baseId": "209407|209408|222923|264416|444519|444522|495041|495042|495043|495044|513434|612480|613506|654134|677304|792606|794090|806407|920276", + "upstreamId": "209407|209408|222923|264416|444519|444522|495041|495042|495043|495044|513434|612480|613506|654134|677304|792606|794090|806407|920276", "text": "AU-KLINE SYNDROME" }, { - "baseId": "209809", + "upstreamId": "209809", "text": "Brain Aneurysm" }, { - "baseId": "209858|209860|239862|298319|298323|298324|298325|298328|298331|298335|298336|298339|298340|298348|298354|300625|300626|300636|300637|300639|300640|304909|304910|304913|304923|304948|304960|304961|304962|304965|304969|304972|304988|304989|305124|305125|305133|305146|305149|305150|305151|305155|305168|305169|305172|305175|305183|305187", + "upstreamId": "209858|209860|239862|298319|298323|298324|298325|298328|298331|298335|298336|298339|298340|298348|298354|300625|300626|300636|300637|300639|300640|304909|304910|304913|304923|304948|304960|304961|304962|304965|304969|304972|304988|304989|305124|305125|305133|305146|305149|305150|305151|305155|305168|305169|305172|305175|305183|305187", "text": "Parkes Weber syndrome" }, { - "baseId": "209858|239859|239862|264245|268905|298323|298331|300626|300636|300637|304910|304948|304960|304962|305146|305149|394972|394975|394981|395146|395158|433889|455253|455715|455728|455733|455972|455985|455988|495239|521262|521542|521553|521608|521869|609600|609603|609604|634453|634455|634460|651267|683742|683743|683744|683745|683746|683747|686767|686768|689800|699206|765368|779142|831235|831236|831237|831238|831239|831240|831241|831242|831243|831244|831245|831246|831247|851048|851050|852224|924180|924181|924182|924183|924184|924185|924186|924187|924188|933051|933052|933053|933054|933055|933056|933057|933058|933059|933060|933061|933062|940019|940827|944762|944763|944764|944765|944766|944767|944768|954263|954264|954265|954266|954267|959781", + "upstreamId": "209858|239859|239862|264245|268905|298323|298331|300626|300636|300637|304910|304948|304960|304962|305146|305149|394972|394975|394981|395146|395158|433889|455253|455715|455728|455733|455972|455985|455988|495239|521262|521542|521553|521608|521869|609600|609603|609604|634453|634455|634460|651267|683742|683743|683744|683745|683746|683747|686767|686768|689800|699206|765368|779142|831235|831236|831237|831238|831239|831240|831241|831242|831243|831244|831245|831246|831247|851048|851050|852224|924180|924181|924182|924183|924184|924185|924186|924187|924188|933051|933052|933053|933054|933055|933056|933057|933058|933059|933060|933061|933062|940019|940827|944762|944763|944764|944765|944766|944767|944768|954263|954264|954265|954266|954267|959781", "text": "Capillary malformation-arteriovenous malformation" }, { - "baseId": "209918|311722|407257|522812|613855|613933|613934|613935|613936|818713|919114|919115|920245|966542", + "upstreamId": "209918|311722|407257|522812|613855|613933|613934|613935|613936|818713|919114|919115|920245|966542", "text": "Williams syndrome" }, { - "baseId": "210238", + "upstreamId": "210238", "text": "Epistaxis" }, { - "baseId": "210644|364851", + "upstreamId": "210644|364851", "text": "ADCK3-Related Disorders" }, { - "baseId": "210790|285147|285164|285783|285810|288120|353561", + "upstreamId": "210790|285147|285164|285783|285810|288120|353561", "text": "Thiamine Metabolism Dysfunction Syndrome" }, { - "baseId": "210897|247473", + "upstreamId": "210897|247473", "text": "Portal hypertension, noncirrhotic" }, { - "baseId": "210898", + "upstreamId": "210898", "text": "Mitochondrial DNA depletion syndrome, hepatocerebral form due to DGUOK deficiency" }, { - "baseId": "211110|211112", + "upstreamId": "211110|211112", "text": "Cystic Leukoencephalopathy" }, { - "baseId": "211259|211261|247571|481197|481208|481210|536153|578614", + "upstreamId": "211259|211261|247571|481197|481208|481210|536153|578614", "text": "Spastic paraplegia 77, autosomal recessive" }, { - "baseId": "211320", + "upstreamId": "211320", "text": "Severe lactic acidosis" }, { - "baseId": "211570|315359|329611", + "upstreamId": "211570|315359|329611", "text": "Optic Atrophy, Recessive" }, { - "baseId": "211614|211619|439516|439517|610426|677437", + "upstreamId": "211614|211619|439516|439517|610426|677437", "text": "Optic atrophy 5" }, { - "baseId": "211827|256339|264339|292955|294312|294313|297750|297774|297785|297790|297874|303732|303737|303738|307196|307236|309188|309201|309206|312159|312174|319813|320336|345482", + "upstreamId": "211827|256339|264339|292955|294312|294313|297750|297774|297785|297790|297874|303732|303737|303738|307196|307236|309188|309201|309206|312159|312174|319813|320336|345482", "text": "Progressive external ophthalmoplegia with mitochondrial DNA deletions" }, { - "baseId": "212720|242329", + "upstreamId": "212720|242329", "text": "B-Lymphoblastic Leukemia/Lymphoma with Intrachromosomal Amplification of Chromosome 21" }, { - "baseId": "212828|961297", + "upstreamId": "212828|961297", "text": "DYNC2H1-Related Disorder" }, { - "baseId": "212829|265359|393351|440054|440058|440073|440085|440086|440093|440097|440100", + "upstreamId": "212829|265359|393351|440054|440058|440073|440085|440086|440093|440097|440100", "text": "Type IV short rib polydactyly syndrome" }, { - "baseId": "213290|611994", + "upstreamId": "213290|611994", "text": "Ganglioglioma" }, { - "baseId": "213453|683051|683119", + "upstreamId": "213453|683051|683119", "text": "Charcot-Marie-Tooth disease type 5" }, { - "baseId": "213453|439659|625417|791929|791930|971134", + "upstreamId": "213453|439659|625417|791929|791930|971134", "text": "Spinocerebellar ataxia 46" }, { - "baseId": "213602|551712", + "upstreamId": "213602|551712", "text": "Bannayan-Riley-Ruvalcaba syndrome" }, { - "baseId": "213674", + "upstreamId": "213674", "text": "Bleeding disorder platelet type macrothrombocytopenia" }, { - "baseId": "213674|411533|411534|411535|411536|411537|974492|975947", + "upstreamId": "213674|411533|411534|411535|411536|411537|974492|975947", "text": "Bleeding disorder, platelet-type, 21" }, { - "baseId": "213760|213765|213766|413295|434637", + "upstreamId": "213760|213765|213766|413295|434637", "text": "Spastic paraplegia 9b, autosomal recessive" }, { - "baseId": "213760|213762|213763|213903|213904|213905|253951|311782|311783|311800|317399|317414|323424|323434|324069|324070|373610|373621|413295|415242|434637|437871|444691|460344|460358|460416|460700|461164|461165|461169|503312|513599|525626|564063|564950|566648|566650|566654|566655|566660|569906|569909|639320|639321|639322|639323|639324|639325|639326|652348|665615|692902|692903|712533|712534|724130|775702|783785|837521|837522|837523|837524|837525|837526|837527|919307|919308|920290|925986|935257|935258|947157|947158|947159|947160|956289|956290", + "upstreamId": "213760|213762|213763|213903|213904|213905|253951|311782|311783|311800|317399|317414|323424|323434|324069|324070|373610|373621|413295|415242|434637|437871|444691|460344|460358|460416|460700|461164|461165|461169|503312|513599|525626|564063|564950|566648|566650|566654|566655|566660|569906|569909|639320|639321|639322|639323|639324|639325|639326|652348|665615|692902|692903|712533|712534|724130|775702|783785|837521|837522|837523|837524|837525|837526|837527|919307|919308|920290|925986|935257|935258|947157|947158|947159|947160|956289|956290", "text": "Cutis laxa, autosomal dominant 3" }, { - "baseId": "213761|213762|213762|213763|213763|213764|253951|311782|311783|311800|317399|317414|323424|323434|324069|324070|373610|373621|413295|415242|434637|437871|444691|460344|460358|460416|460700|461164|461165|461169|503312|508733|513599|525626|564063|564950|566648|566650|566654|566655|566660|569906|569909|639320|639321|639322|639323|639324|639325|639326|652348|665615|692902|692903|712533|712534|724130|775702|783785|837521|837522|837523|837524|837525|837526|837527|859828|925986|935257|935258|947157|947158|947159|947160|956289|956290", + "upstreamId": "213761|213762|213762|213763|213763|213764|253951|311782|311783|311800|317399|317414|323424|323434|324069|324070|373610|373621|413295|415242|434637|437871|444691|460344|460358|460416|460700|461164|461165|461169|503312|508733|513599|525626|564063|564950|566648|566650|566654|566655|566660|569906|569909|639320|639321|639322|639323|639324|639325|639326|652348|665615|692902|692903|712533|712534|724130|775702|783785|837521|837522|837523|837524|837525|837526|837527|859828|925986|935257|935258|947157|947158|947159|947160|956289|956290", "text": "Hereditary spastic paraplegia 9A" }, { - "baseId": "213762", + "upstreamId": "213762", "text": "ALDH18A1 deficiency" }, { - "baseId": "213776|481265|536058|536061|536062|536063|536064|965283", + "upstreamId": "213776|481265|536058|536061|536062|536063|536064|965283", "text": "Dextrocardia" }, { - "baseId": "213786", + "upstreamId": "213786", "text": "6q21-6q22.1 deletion" }, { - "baseId": "213951", + "upstreamId": "213951", "text": "Adolescent alopeciam dentogingival abnormalitites and intellectual disability" }, { - "baseId": "213953|244036|792729", + "upstreamId": "213953|244036|792729", "text": "Autosomal recessive woolly hair 3" }, { - "baseId": "213957|213958|213959|213960|213961|213962|213963|213964|213965", + "upstreamId": "213957|213958|213959|213960|213961|213962|213963|213964|213965", "text": "Nonsyndromic otitis media" }, { - "baseId": "213979|249384|276318|276319|276546|276547|277014|277022|277025|277112|277113|277114|277115|277116|277117|277120|319105|327533|333805|335443|335480|335534|335538|353059|353060|353284", + "upstreamId": "213979|249384|276318|276319|276546|276547|277014|277022|277025|277112|277113|277114|277115|277116|277117|277120|319105|327533|333805|335443|335480|335534|335538|353059|353060|353284", "text": "Zonular Pulverulent Cataract" }, { - "baseId": "214327|214330|420427|514026", + "upstreamId": "214327|214330|420427|514026", "text": "Occipital encephalocele" }, { - "baseId": "214327|514026|514058|971020", + "upstreamId": "214327|514026|514058|971020", "text": "Cystic renal dysplasia" }, { - "baseId": "214342|439558|439560|590021|590021|590163|621032|798668|798669|970039|983797", + "upstreamId": "214342|439558|439560|590021|590021|590163|621032|798668|798669|970039|983797", "text": "Joubert syndrome 33" }, { - "baseId": "214358", + "upstreamId": "214358", "text": "B9D1-Related Disorders" }, { - "baseId": "214364", + "upstreamId": "214364", "text": "Rotary nystagmus" }, { - "baseId": "214364|360913|360914", + "upstreamId": "214364|360913|360914", "text": "Limb undergrowth" }, { - "baseId": "214392|214393|214394", + "upstreamId": "214392|214393|214394", "text": "Porokeratosis 9, multiple types" }, { - "baseId": "214481", + "upstreamId": "214481", "text": "OBESITY (BMIQ14), SUSCEPTIBILITY TO" }, { - "baseId": "214513", + "upstreamId": "214513", "text": "Benign Soft Tissue Neoplasm of Uncertain Differentiation" }, { - "baseId": "214521|453543|453545|453555|453558|453562|453566|453567|453781|453785|453787|453793|453799|453800|453810|453812|453822|453830|453969|453970|453975|453979|454356|454363|454364|520133|520135|520263|520273|520507|520508|520510|520515|520518|520538|520539|520543|559811|559813|559815|559817|559946|562250|562254|562262|562264|562268|564071|564082|564089|564092|564098|632462|632463|632464|632465|632466|632467|632468|632469|632470|632471|632472|632473|698641|698642|698643|698644|698645|709478|721083|721085|721086|734740|764626|764627|782042|829470|829471|829472|829473|829474|829475|829476|829477|829478|829479|829480|829481|829482|829483|829484|829485|829486|829487|829488|829489|829490|829491|829492|923610|923611|923612|923613|923614|923615|923616|932442|932443|932444|932445|932446|932447|932448|932449|932450|932451|932452|932453|932454|932455|944126|944127|944128|944129|944130|944131|953851|953852|953853|953854|953855", + "upstreamId": "214521|453543|453545|453555|453558|453562|453566|453567|453781|453785|453787|453793|453799|453800|453810|453812|453822|453830|453969|453970|453975|453979|454356|454363|454364|520133|520135|520263|520273|520507|520508|520510|520515|520518|520538|520539|520543|559811|559813|559815|559817|559946|562250|562254|562262|562264|562268|564071|564082|564089|564092|564098|632462|632463|632464|632465|632466|632467|632468|632469|632470|632471|632472|632473|698641|698642|698643|698644|698645|709478|721083|721085|721086|734740|764626|764627|782042|829470|829471|829472|829473|829474|829475|829476|829477|829478|829479|829480|829481|829482|829483|829484|829485|829486|829487|829488|829489|829490|829491|829492|923610|923611|923612|923613|923614|923615|923616|932442|932443|932444|932445|932446|932447|932448|932449|932450|932451|932452|932453|932454|932455|944126|944127|944128|944129|944130|944131|953851|953852|953853|953854|953855", "text": "Epilepsy, progressive myoclonic, 10" }, { - "baseId": "214526|214527|970942", + "upstreamId": "214526|214527|970942", "text": "Mitral valve prolapse 2" }, { - "baseId": "214539", + "upstreamId": "214539", "text": "INCLUSION BODY MYOPATHY WITHOUT EARLY-ONSET PAGET DISEASE AND FRONTOTEMPORAL DEMENTIA 1" }, { - "baseId": "214544|577601|580398|610495|791655|791656|791657|920543", + "upstreamId": "214544|577601|580398|610495|791655|791656|791657|920543", "text": "Encephalopathy, progressive, early-onset, with episodic rhabdomyolysis" }, { - "baseId": "214548|624110|624111|624112", + "upstreamId": "214548|624110|624111|624112", "text": "APC-mutation negative familial colorectal cancer" }, { - "baseId": "214559|214560|214561|215104|438599|438992|446253|469375|469378|469385|469388|469388|470412|470416|470417|470428|470435|470904|470909|470913|470920|470928|470929|470930|470932|470932|471396|471399|471408|471417|471418|471420|471422|486770|533547|533547|533549|533558|533584|533586|533587|533589|533591|533592|533597|533597|533634|533635|533638|533639|534121|534122|534127|571261|571266|571269|572916|572917|572920|572921|573557|573559|573560|573561|575109|575110|575111|612454|612455|612456|612457|612458|612459|612460|612461|648721|648722|648723|648724|648725|648726|648727|648728|648729|648730|648731|648732|648733|648734|648735|648736|648737|648738|648739|648740|648741|648742|648743|653562|653647|653650|677463|705509|705510|705511|705512|705514|705515|705516|705517|717013|717014|717016|728694|728695|728696|742440|742441|757563|757566|757568|757569|760903|760960|773127|773129|773132|773138|776660|778683|786392|786393|786394|821330|821331|848433|848434|848435|848436|848437|848438|848439|848440|848441|848442|848443|848444|848445|848446|848447|848448|848449|848450|848451|848452|848453|848454|848455|848456|848457|852378|852910|920417|929203|929204|929205|929206|929207|929208|929209|929210|929211|929212|929213|938988|938989|938990|938991|938992|938993|938994|938995|938996|940509|941252|941253|951110|951111|951112|951113|951114|951115|951116|951117|951118|958852|958853|958854|960319|960320", + "upstreamId": "214559|214560|214561|215104|438599|438992|446253|469375|469378|469385|469388|469388|470412|470416|470417|470428|470435|470904|470909|470913|470920|470928|470929|470930|470932|470932|471396|471399|471408|471417|471418|471420|471422|486770|533547|533547|533549|533558|533584|533586|533587|533589|533591|533592|533597|533597|533634|533635|533638|533639|534121|534122|534127|571261|571266|571269|572916|572917|572920|572921|573557|573559|573560|573561|575109|575110|575111|612454|612455|612456|612457|612458|612459|612460|612461|648721|648722|648723|648724|648725|648726|648727|648728|648729|648730|648731|648732|648733|648734|648735|648736|648737|648738|648739|648740|648741|648742|648743|653562|653647|653650|677463|705509|705510|705511|705512|705514|705515|705516|705517|717013|717014|717016|728694|728695|728696|742440|742441|757563|757566|757568|757569|760903|760960|773127|773129|773132|773138|776660|778683|786392|786393|786394|821330|821331|848433|848434|848435|848436|848437|848438|848439|848440|848441|848442|848443|848444|848445|848446|848447|848448|848449|848450|848451|848452|848453|848454|848455|848456|848457|852378|852910|920417|929203|929204|929205|929206|929207|929208|929209|929210|929211|929212|929213|938988|938989|938990|938991|938992|938993|938994|938995|938996|940509|941252|941253|951110|951111|951112|951113|951114|951115|951116|951117|951118|958852|958853|958854|960319|960320", "text": "Early infantile epileptic encephalopathy 34" }, { - "baseId": "214739|861615", + "upstreamId": "214739|861615", "text": "RNU4ATAC-related spliceosomopathies" }, { - "baseId": "214742|214743|214744|214745|425229|792645|798761|919909|961890", + "upstreamId": "214742|214743|214744|214745|425229|792645|798761|919909|961890", "text": "Epileptic encephalopathy, early infantile, 35" }, { - "baseId": "214760|214761|626298|860895|964619|964706|983695", + "upstreamId": "214760|214761|626298|860895|964619|964706|983695", "text": "Ritscher-schinzel syndrome 2" }, { - "baseId": "214792|226768", + "upstreamId": "214792|226768", "text": "Split-foot malformation with mesoaxial polydactyly" }, { - "baseId": "214799|214800|214801|214802|458194|458195|458710|458712|458713|458722|458810|459217|459220|459222|459225|459226|523891|523893|523902|523903|524174|524176|524179|524438|524443|524445|524452|524455|524461|524463|524491|563352|563358|563362|563366|563369|565400|565408|565409|565413|565419|568380|568381|568386|568388|568390|568397|637602|637603|637604|637605|637606|637607|637608|637609|637610|637611|637612|637613|637614|637615|637616|637617|692559|692560|700725|700726|723244|744445|766997|783218|783219|820040|820041|835353|835354|835355|835356|835357|835358|835359|835360|835361|835362|835363|835364|835365|835366|835367|835368|835369|925325|925326|925327|925328|925329|925330|925331|925332|934500|934501|934502|934503|934504|934505|940122|946299|946300|946301|946302|946303|946304|946305|946306|955652|972790", + "upstreamId": "214799|214800|214801|214802|458194|458195|458710|458712|458713|458722|458810|459217|459220|459222|459225|459226|523891|523893|523902|523903|524174|524176|524179|524438|524443|524445|524452|524455|524461|524463|524491|563352|563358|563362|563366|563369|565400|565408|565409|565413|565419|568380|568381|568386|568388|568390|568397|637602|637603|637604|637605|637606|637607|637608|637609|637610|637611|637612|637613|637614|637615|637616|637617|692559|692560|700725|700726|723244|744445|766997|783218|783219|820040|820041|835353|835354|835355|835356|835357|835358|835359|835360|835361|835362|835363|835364|835365|835366|835367|835368|835369|925325|925326|925327|925328|925329|925330|925331|925332|934500|934501|934502|934503|934504|934505|940122|946299|946300|946301|946302|946303|946304|946305|946306|955652|972790", "text": "Epileptic encephalopathy, early infantile, 37" }, { - "baseId": "214799|214800|214801|214802|800989", + "upstreamId": "214799|214800|214801|214802|800989", "text": "Progressive encephalopathy" }, { - "baseId": "214807", + "upstreamId": "214807", "text": "Immunodeficiency 45" }, { - "baseId": "214809|224665|224666|249216|260858|260859|553351|815897|815918|815920|815926|815927", + "upstreamId": "214809|224665|224666|249216|260858|260859|553351|815897|815918|815920|815926|815927", "text": "Combined T and B cell immunodeficiency" }, { - "baseId": "214809|578416", + "upstreamId": "214809|578416", "text": "Immunodeficiency 46" }, { - "baseId": "214831|214832|214833", + "upstreamId": "214831|214832|214833", "text": "Pseudohyperkalemia, familial, 2, due to red cell leak" }, { - "baseId": "214841", + "upstreamId": "214841", "text": "CHARCOT-MARIE-TOOTH DISEASE, AXONAL, AUTOSOMAL DOMINANT, TYPE 2K, MODIFIER OF" }, { - "baseId": "214881|214882|539045|551310|623028|791214|966599", + "upstreamId": "214881|214882|539045|551310|623028|791214|966599", "text": "Microcephaly 16, primary, autosomal recessive" }, { - "baseId": "214932|214933|432275|432276", + "upstreamId": "214932|214933|432275|432276", "text": "Overhydrated hereditary stomatocytosis" }, { - "baseId": "215001|215002", + "upstreamId": "215001|215002", "text": "Charcot-Marie-Tooth disease, axonal, type 2y" }, { - "baseId": "215003|215004|248765|410985|426373|470149|470150|470163|470167|470174|470176|470179|470182|470183|470189|471069|471072|471086|471087|471498|471501|471506|471509|471511|471515|471517|471522|471523|471912|471915|471916|471918|471919|471920|471922|471924|471926|512515|534204|534206|534207|534210|534211|534217|534218|534221|534232|534236|534241|534245|534254|534258|534265|534338|534341|534348|534350|534357|534358|534716|534718|534719|534725|534727|534730|535283|537403|537404|540472|571916|571922|571925|571927|571937|573361|573362|573364|573366|573367|573373|574091|574092|574094|574096|574098|574100|575252|575253|575254|575255|575256|575257|575258|575259|649376|649377|649378|649379|649380|649381|649382|649383|649384|649385|649386|649387|649388|649389|649390|649391|649392|649393|649394|649395|649396|649397|649398|649399|649400|649401|649402|649403|649404|649405|649406|649407|653322|653715|653719|683110|683112|683213|694707|694710|694711|705881|705882|705884|729145|742854|742856|742857|742858|745154|745344|758037|758041|773515|773517|773518|778636|792053|849234|849235|849236|849237|849238|849239|849240|849241|849242|849243|849244|849245|849246|849247|849248|849249|849250|849251|851920|852930|929463|929464|929465|929466|929467|929468|929469|929470|939273|939274|939275|951425|951426|951427|951428|951429|951430|951431|951432|951433|951434|951435|959071|959072|959073|960345|960346|982248|982249", + "upstreamId": "215003|215004|248765|410985|426373|470149|470150|470163|470167|470174|470176|470179|470182|470183|470189|471069|471072|471086|471087|471498|471501|471506|471509|471511|471515|471517|471522|471523|471912|471915|471916|471918|471919|471920|471922|471924|471926|512515|534204|534206|534207|534210|534211|534217|534218|534221|534232|534236|534241|534245|534254|534258|534265|534338|534341|534348|534350|534357|534358|534716|534718|534719|534725|534727|534730|535283|537403|537404|540472|571916|571922|571925|571927|571937|573361|573362|573364|573366|573367|573373|574091|574092|574094|574096|574098|574100|575252|575253|575254|575255|575256|575257|575258|575259|649376|649377|649378|649379|649380|649381|649382|649383|649384|649385|649386|649387|649388|649389|649390|649391|649392|649393|649394|649395|649396|649397|649398|649399|649400|649401|649402|649403|649404|649405|649406|649407|653322|653715|653719|683110|683112|683213|694707|694710|694711|705881|705882|705884|729145|742854|742856|742857|742858|745154|745344|758037|758041|773515|773517|773518|778636|792053|849234|849235|849236|849237|849238|849239|849240|849241|849242|849243|849244|849245|849246|849247|849248|849249|849250|849251|851920|852930|929463|929464|929465|929466|929467|929468|929469|929470|939273|939274|939275|951425|951426|951427|951428|951429|951430|951431|951432|951433|951434|951435|959071|959072|959073|960345|960346|982248|982249", "text": "Charcot-Marie-Tooth disease, axonal, type 2z" }, { - "baseId": "215037", + "upstreamId": "215037", "text": "MELANOCORTIN 4 RECEPTOR POLYMORPHISM" }, { - "baseId": "215037", + "upstreamId": "215037", "text": "OBESITY, RESISTANCE TO" }, { - "baseId": "215059|916783", + "upstreamId": "215059|916783", "text": "Deafness, autosomal dominant 68" }, { - "baseId": "215089|215090|215091", + "upstreamId": "215089|215090|215091", "text": "X-linked dominant Parkinson's disease" }, { - "baseId": "215093|368095|513941|514022|608934|801518|801519|806406", + "upstreamId": "215093|368095|513941|514022|608934|801518|801519|806406", "text": "Leukoencephalopathy" }, { - "baseId": "215093|622895|964356", + "upstreamId": "215093|622895|964356", "text": "Leukodystrophy, hypomyelinating, 12" }, { - "baseId": "215097|514119|517762|970834", + "upstreamId": "215097|514119|517762|970834", "text": "Recurrent infections" }, { - "baseId": "215104|215105|469388|470932|533547|533597|619848|622471|677463", + "upstreamId": "215104|215105|469388|470932|533547|533597|619848|622471|677463", "text": "Epilepsy, idiopathic generalized, susceptibility to, 14" }, { - "baseId": "215118", + "upstreamId": "215118", "text": "CHD2-Related Disorder" }, { - "baseId": "215312|424455|424456|424459|424460|424461|550887|550889|654125|963573|976649", + "upstreamId": "215312|424455|424456|424459|424460|424461|550887|550889|654125|963573|976649", "text": "Intellectual disability, autosomal dominant 53" }, { - "baseId": "215434|254136|274286|313856|313857|313862|313863|313867|313872|313873|313874|313877|313885|313886|313888|313889|320061|320069|320071|320080|320084|320087|320102|320108|320111|320114|320134|320135|320138|320142|320143|320145|320146|320147|320163|320166|320167|320197|320198|326222|326244|326245|326246|326248|326251|326252|326255|326256|326257|326258|326270|326272|326273|326276|326277|327197|327203|327206|327207|327214|327222|327223|327224|327241|327242|327259|327263|327273|327276|327282|327283|612908|867820|867821|867822|867823|867824|867825|867826|867827|867828|867829|867830|867831|867832|867833|867834|867835|867836|867837|867838|867839|867840|867841|867842|867843|867844|867845|867846|867847|867848|867849|867850|867851|867852|867853|867854|867855|867856|867857|867858|867859", + "upstreamId": "215434|254136|274286|313856|313857|313862|313863|313867|313872|313873|313874|313877|313885|313886|313888|313889|320061|320069|320071|320080|320084|320087|320102|320108|320111|320114|320134|320135|320138|320142|320143|320145|320146|320147|320163|320166|320167|320197|320198|326222|326244|326245|326246|326248|326251|326252|326255|326256|326257|326258|326270|326272|326273|326276|326277|327197|327203|327206|327207|327214|327222|327223|327224|327241|327242|327259|327263|327273|327276|327282|327283|612908|867820|867821|867822|867823|867824|867825|867826|867827|867828|867829|867830|867831|867832|867833|867834|867835|867836|867837|867838|867839|867840|867841|867842|867843|867844|867845|867846|867847|867848|867849|867850|867851|867852|867853|867854|867855|867856|867857|867858|867859", "text": "carboxymethyl-dextran-A2-gadolinium-DOTA" }, { - "baseId": "215434|223627|223637|262041|262042|262043|262044|262045|262046|262047|262048|262049|262050|262051|313857|313862|313870|313872|313873|313874|313885|313888|320061|320062|320071|320080|320087|320088|320089|320100|320102|320108|320111|320112|320114|320138|320142|320143|320145|320146|320147|320163|320165|320167|320174|320198|320199|326222|326244|326245|326251|326252|326255|326257|326270|326273|326277|327197|327204|327214|327217|327218|327223|327224|327241|327263|327272|327273|327282|327283|551625|576140|800694|858615", + "upstreamId": "215434|223627|223637|262041|262042|262043|262044|262045|262046|262047|262048|262049|262050|262051|313857|313862|313870|313872|313873|313874|313885|313888|320061|320062|320071|320080|320087|320088|320089|320100|320102|320108|320111|320112|320114|320138|320142|320143|320145|320146|320147|320163|320165|320167|320174|320198|320199|326222|326244|326245|326251|326252|326255|326257|326270|326273|326277|327197|327204|327214|327217|327218|327223|327224|327241|327263|327272|327273|327282|327283|551625|576140|800694|858615", "text": "Congenital aniridia" }, { - "baseId": "215434|254136|274286|313856|313857|313862|313863|313867|313870|313872|313873|313874|313877|313885|313886|313888|313889|320061|320062|320069|320071|320080|320084|320087|320088|320089|320100|320102|320108|320111|320112|320114|320134|320135|320138|320142|320143|320145|320146|320147|320163|320165|320166|320167|320174|320197|320198|320199|326222|326244|326245|326246|326248|326251|326252|326255|326256|326257|326258|326270|326272|326273|326276|326277|327197|327203|327204|327206|327207|327214|327217|327218|327222|327223|327224|327241|327242|327259|327263|327272|327273|327276|327282|327283|612908|867820|867821|867822|867823|867824|867825|867826|867827|867828|867829|867830|867831|867832|867833|867834|867835|867836|867837|867838|867839|867840|867841|867842|867843|867844|867845|867846|867847|867848|867849|867850|867851|867852|867853|867854|867855|867856|867857|867858|867859", + "upstreamId": "215434|254136|274286|313856|313857|313862|313863|313867|313870|313872|313873|313874|313877|313885|313886|313888|313889|320061|320062|320069|320071|320080|320084|320087|320088|320089|320100|320102|320108|320111|320112|320114|320134|320135|320138|320142|320143|320145|320146|320147|320163|320165|320166|320167|320174|320197|320198|320199|326222|326244|326245|326246|326248|326251|326252|326255|326256|326257|326258|326270|326272|326273|326276|326277|327197|327203|327204|327206|327207|327214|327217|327218|327222|327223|327224|327241|327242|327259|327263|327272|327273|327276|327282|327283|612908|867820|867821|867822|867823|867824|867825|867826|867827|867828|867829|867830|867831|867832|867833|867834|867835|867836|867837|867838|867839|867840|867841|867842|867843|867844|867845|867846|867847|867848|867849|867850|867851|867852|867853|867854|867855|867856|867857|867858|867859", "text": "Keratitis, hereditary" }, { - "baseId": "215571|361955|550268|550270|550271|550272|789387|975719|975720|975721|976519", + "upstreamId": "215571|361955|550268|550270|550271|550272|789387|975719|975720|975721|976519", "text": "Myopathy, congenital, with neuropathy and deafness" }, { - "baseId": "215635|215636|215637|805099", + "upstreamId": "215635|215636|215637|805099", "text": "Tooth agenesis, selective, 7" }, { - "baseId": "215638", + "upstreamId": "215638", "text": "Retinal dystrophy and iris coloboma with or without congenital cataract" }, { - "baseId": "215639|215640|215641", + "upstreamId": "215639|215640|215641", "text": "Parkinson disease 22, autosomal dominant" }, { - "baseId": "215642|215643", + "upstreamId": "215642|215643", "text": "Spondyloepimetaphyseal dysplasia, Faden-Alkuraya type" }, { - "baseId": "215646|215647", + "upstreamId": "215646|215647", "text": "Deafness, autosomal dominant 69" }, { - "baseId": "215651|215652|260899|439090|800608", + "upstreamId": "215651|215652|260899|439090|800608", "text": "Ciliopathy" }, { - "baseId": "215655|215656|215657|622876|788769|857616", + "upstreamId": "215655|215656|215657|622876|788769|857616", "text": "SLC39A8-CDG" }, { - "baseId": "215661|215662", + "upstreamId": "215661|215662", "text": "Nonsyndromic hypergonadotropic hypogonadism" }, { - "baseId": "215661|215662", + "upstreamId": "215661|215662", "text": "Ovarian dysgenesis 5" }, { - "baseId": "215673|215674|481352|539029|964343|965278|965279|970225", + "upstreamId": "215673|215674|481352|539029|964343|965278|965279|970225", "text": "Myasthenic syndrome, congenital, 19" }, { - "baseId": "215723|215724|215725|536073|918617|980302", + "upstreamId": "215723|215724|215725|536073|918617|980302", "text": "Cleft palate, psychomotor retardation, and distinctive facial features" }, { - "baseId": "215751|215752", + "upstreamId": "215751|215752", "text": "Symmetric circumferential skin creases, congenital, 1" }, { - "baseId": "215753|215754|215755|215756|621619|622028", + "upstreamId": "215753|215754|215755|215756|621619|622028", "text": "Skin creases, congenital symmetric circumferential, 2" }, { - "baseId": "215758|215759|798566", + "upstreamId": "215758|215759|798566", "text": "Optic atrophy 10 with or without ataxia, mental retardation, and seizures" }, { - "baseId": "215782|482291|816484|816485|906277", + "upstreamId": "215782|482291|816484|816485|906277", "text": "Joubert syndrome 26" }, { - "baseId": "215785|215786|215787", + "upstreamId": "215785|215786|215787", "text": "Radioulnar synostosis with amegakaryocytic thrombocytopenia 2" }, { - "baseId": "216009|216019", + "upstreamId": "216009|216019", "text": "CCDC115-CDG" }, { - "baseId": "216009|216010|216017|216019", + "upstreamId": "216009|216010|216017|216019", "text": "Congenital disorders of glycosylation type II" }, { - "baseId": "216010|216017|224173|224174", + "upstreamId": "216010|216017|224173|224174", "text": "TMEM199-CDG" }, { - "baseId": "216789|216790|216791|216792|789892|789893", + "upstreamId": "216789|216790|216791|216792|789892|789893", "text": "Cerebellar atrophy, visual impairment, and psychomotor retardation" }, { - "baseId": "216792|611498", + "upstreamId": "216792|611498", "text": "EMC1-Related Disorder" }, { - "baseId": "216916|216917|216918|216919|216920|360676|411476|411477|422515|512747|535715|590565|622929|625879|682085|682086|682087|682088|682089|682090|682091|682092|682093|682094|682095|682096|682097|682098|682099|682100|682101|682102|682103|682104|682105|920058|920059|920060|964925|980405|983690", + "upstreamId": "216916|216917|216918|216919|216920|360676|411476|411477|422515|512747|535715|590565|622929|625879|682085|682086|682087|682088|682089|682090|682091|682092|682093|682094|682095|682096|682097|682098|682099|682100|682101|682102|682103|682104|682105|920058|920059|920060|964925|980405|983690", "text": "Mental retardation, X-linked, syndromic 33" }, { - "baseId": "216921|578525|578526|917791|917792", + "upstreamId": "216921|578525|578526|917791|917792", "text": "Coenzyme Q10 deficiency, primary, 8" }, { - "baseId": "216924|216925|216926|465565|466181|466183|466185|466191|466192|466971|466975|467013|467018|467265|467266|467268|467283|467291|467292|467294|530450|530585|530592|530594|530595|530775|530777|530963|530969|530970|530974|568524|568526|569828|570641|570644|570646|574228|645236|645237|645238|645239|645240|645241|694004|703926|703927|703928|703929|726960|726961|726963|755578|760499|785456|792802|820961|820962|844624|844625|844626|844627|844628|844629|844630|844631|844632|844633|844634|844635|844636|844637|844638|928034|928035|937694|937695|949667|949668|949669|949670|949671", + "upstreamId": "216924|216925|216926|465565|466181|466183|466185|466191|466192|466971|466975|467013|467018|467265|467266|467268|467283|467291|467292|467294|530450|530585|530592|530594|530595|530775|530777|530963|530969|530970|530974|568524|568526|569828|570641|570644|570646|574228|645236|645237|645238|645239|645240|645241|694004|703926|703927|703928|703929|726960|726961|726963|755578|760499|785456|792802|820961|820962|844624|844625|844626|844627|844628|844629|844630|844631|844632|844633|844634|844635|844636|844637|844638|928034|928035|937694|937695|949667|949668|949669|949670|949671", "text": "Ciliary dyskinesia, primary, 33" }, { - "baseId": "216927|216928", + "upstreamId": "216927|216928", "text": "Mental retardation, autosomal recessive 51" }, { - "baseId": "216929|216930|216931|216932|581263", + "upstreamId": "216929|216930|216931|216932|581263", "text": "Nephrotic syndrome, type 11" }, { - "baseId": "216939|216940|216941|919395|919396", + "upstreamId": "216939|216940|216941|919395|919396", "text": "Tremor, hereditary essential, 5" }, { - "baseId": "216945|216946|216947|216948|216949|216950|424616|431919|488205|488206|513592|575493|622010|799603|906196", + "upstreamId": "216945|216946|216947|216948|216949|216950|424616|431919|488205|488206|513592|575493|622010|799603|906196", "text": "Desanto-shinawi syndrome" }, { - "baseId": "217180|217181|247551|792786", + "upstreamId": "217180|217181|247551|792786", "text": "Cholestasis, progressive familial intrahepatic, 5" }, { - "baseId": "217214|217215|217216|223700|223701|223702|223703|223707|226893|263823|263824|424643|424644|443148|446882|481501|538961|672218|672219|672220|672221|672301|672302|719566|730100|790161|790162|790163|818152|818153|961506|961507|964190|970199|980907", + "upstreamId": "217214|217215|217216|223700|223701|223702|223703|223707|226893|263823|263824|424643|424644|443148|446882|481501|538961|672218|672219|672220|672221|672301|672302|719566|730100|790161|790162|790163|818152|818153|961506|961507|964190|970199|980907", "text": "Hypotonia, infantile, with psychomotor retardation and characteristic facies 2" }, { - "baseId": "217217|615912", + "upstreamId": "217217|615912", "text": "Metabolic crises, recurrent, with variable encephalomyopathic features and neurologic regression" }, { - "baseId": "217217", + "upstreamId": "217217", "text": "SLC25A42-related mitochondrial disorder" }, { - "baseId": "217240|217241|217242|217243|217244|481071|677415|789363|918816|918817", + "upstreamId": "217240|217241|217242|217243|217244|481071|677415|789363|918816|918817", "text": "Robinow syndrome, autosomal dominant 3" }, { - "baseId": "217264|217265|217266|217267", + "upstreamId": "217264|217265|217266|217267", "text": "nonsyndromic cleft palate" }, { - "baseId": "217271|217338", + "upstreamId": "217271|217338", "text": "Deafness, autosomal recessive 68" }, { - "baseId": "217280|977279", + "upstreamId": "217280|977279", "text": "TUBB3-related tubulinopathy" }, { - "baseId": "221136|238590|238592|238595|238596|250493|250494|250497|250501|250502|250503|250505|250506|250507|266843|283960|283962|283963|283970|283971|283972|283978|283979|283982|284685|284693|284695|284696|284698|284699|284725|284727|284739|284742|284743|286627|286630|286631|286635|286636|286639|286642|286644|287049|287060|287065|287069|287071|287072|287073|287088|287102|287103|287104|392274|450379|450392|450513|517524|517610|517618|517632|620049|629294|683468|683470|686110|686116|686117|689703|747169|759187|883310|883311|883312|883313|883314|883315|883316|883317|883318|883319|883320|883321|883322|883323|883324|883325|883326|883327|883328|883329|883330|883331|883332|883333|883334|883335|883336|883337|883338|883339|883340|883341|883342|883343|883344|883345|883346|883347|883348|887238|887239|887240", + "upstreamId": "221136|238590|238592|238595|238596|250493|250494|250497|250501|250502|250503|250505|250506|250507|266843|283960|283962|283963|283970|283971|283972|283978|283979|283982|284685|284693|284695|284696|284698|284699|284725|284727|284739|284742|284743|286627|286630|286631|286635|286636|286639|286642|286644|287049|287060|287065|287069|287071|287072|287073|287088|287102|287103|287104|392274|450379|450392|450513|517524|517610|517618|517632|620049|629294|683468|683470|686110|686116|686117|689703|747169|759187|883310|883311|883312|883313|883314|883315|883316|883317|883318|883319|883320|883321|883322|883323|883324|883325|883326|883327|883328|883329|883330|883331|883332|883333|883334|883335|883336|883337|883338|883339|883340|883341|883342|883343|883344|883345|883346|883347|883348|887238|887239|887240", "text": "ALS2-Related Disorders" }, { - "baseId": "221698", + "upstreamId": "221698", "text": "GARS-Associated Axonal Neuropathy" }, { - "baseId": "222607|514007", + "upstreamId": "222607|514007", "text": "Thoracic scoliosis" }, { - "baseId": "222922", + "upstreamId": "222922", "text": "Schizoaffective disorder, depressive type" }, { - "baseId": "222924|222925|590592|590593", + "upstreamId": "222924|222925|590592|590593", "text": "Cataract 44" }, { - "baseId": "222930|222931|578422", + "upstreamId": "222930|222931|578422", "text": "Seckel syndrome 9" }, { - "baseId": "222973|222974|222975|224869|224870|224871|224872|380148|380149|380150|672357|794277|965787|965788|965789|965790|965791|965792|965793|965794|965795|965796|965797|965798|965799|965800|965801|965802|965803|965804|965805|965806|965807|965808|965809|965810|965811|965812|965813|965814|965815|983927", + "upstreamId": "222973|222974|222975|224869|224870|224871|224872|380148|380149|380150|672357|794277|965787|965788|965789|965790|965791|965792|965793|965794|965795|965796|965797|965798|965799|965800|965801|965802|965803|965804|965805|965806|965807|965808|965809|965810|965811|965812|965813|965814|965815|983927", "text": "Oocyte maturation defect 2" }, { - "baseId": "222982|222983", + "upstreamId": "222982|222983", "text": "Spondylocostal dysostosis 6, autosomal recessive" }, { - "baseId": "222985|222986|222987|222988|427813|447876|447878|447880|447882|448030|448039|448097|448105|448168|515850|515879|515886|515891|515969|557311|627824|627825|650546|650748|690594|690595|690596|690597|696719|696720|696722|718956|761908|789109|823946|823947|823948|823949|922010|940632|941934|952405|952406|952407|952408", + "upstreamId": "222985|222986|222987|222988|427813|447876|447878|447880|447882|448030|448039|448097|448105|448168|515850|515879|515886|515891|515969|557311|627824|627825|650546|650748|690594|690595|690596|690597|696719|696720|696722|718956|761908|789109|823946|823947|823948|823949|922010|940632|941934|952405|952406|952407|952408", "text": "Joubert syndrome 25" }, { - "baseId": "222989", + "upstreamId": "222989", "text": "BAP1 Cancer Syndrome" }, { - "baseId": "222995|247394|248601|248602|248603|248606|551309|583114|583115|624054|624055|788863|805023", + "upstreamId": "222995|247394|248601|248602|248603|248606|551309|583114|583115|624054|624055|788863|805023", "text": "Microcephaly 17, primary, autosomal recessive" }, { - "baseId": "222997|285823|285827|286553|286555|286561|288795|288800|289216|366592|614556|977712", + "upstreamId": "222997|285823|285827|286553|286555|286561|288795|288800|289216|366592|614556|977712", "text": "Mitochondrial DNA depletion syndrome, hepatocerebral form" }, { - "baseId": "222997", + "upstreamId": "222997", "text": "Mitochondrial DNA depletion syndrome 15 (hepatocerebral type)" }, { - "baseId": "223017", + "upstreamId": "223017", "text": "Orofacial cleft 15" }, { - "baseId": "223018|223019|223020|223021|223022|223023|223024|223025|538991|790572|972786", + "upstreamId": "223018|223019|223020|223021|223022|223023|223024|223025|538991|790572|972786", "text": "Spastic paraplegia and psychomotor retardation with or without seizures" }, { - "baseId": "223026", + "upstreamId": "223026", "text": "Hereditary elliptocytosis" }, { - "baseId": "223282|223293|223294|223295|362149|362150", + "upstreamId": "223282|223293|223294|223295|362149|362150", "text": "Spinocerebellar ataxia, autosomal recessive 2" }, { - "baseId": "223283", + "upstreamId": "223283", "text": "LIM DOMAIN ONLY-1 POLYMORPHISM" }, { - "baseId": "223284|223285|223286|223287|223288|223289|223290|223291|225845|225881|247070|361202|362425|362426|408530|408531|418971|418972|421902|421904|424623|424631|424659|425221|425222|425950|426745|434766|444923|462433|481412|482012|511031|511971|511972|536069|550620|550621|550622|611408|611409|613867|614045|614607|626212|653881|798652|805724|815996|903586|917105|919413|919414|919415|919416|920311|961617|963747|964373|964374|964375|964376|964377|964378|964674|964675|967275|970949|970950|970951|970952|972837|972840|972841|972954|972955|972956|972957|972958|972959|983786|983788", + "upstreamId": "223284|223285|223286|223287|223288|223289|223290|223291|225845|225881|247070|361202|362425|362426|408530|408531|418971|418972|421902|421904|424623|424631|424659|425221|425222|425950|426745|434766|444923|462433|481412|482012|511031|511971|511972|536069|550620|550621|550622|611408|611409|613867|614045|614607|626212|653881|798652|805724|815996|903586|917105|919413|919414|919415|919416|920311|961617|963747|964373|964374|964375|964376|964377|964378|964674|964675|967275|970949|970950|970951|970952|972837|972840|972841|972954|972955|972956|972957|972958|972959|983786|983788", "text": "Mental retardation and distinctive facial features with or without cardiac defects" }, { - "baseId": "223645|321281|321298|330507|337017", + "upstreamId": "223645|321281|321298|330507|337017", "text": "VSX2-related Microphthalmia" }, { - "baseId": "223669|223669|539075|578548|578549|622444|622445|626256|961336|963176|965235", + "upstreamId": "223669|223669|539075|578548|578549|622444|622445|626256|961336|963176|965235", "text": "Spinocerebellar ataxia 42" }, { - "baseId": "223669", + "upstreamId": "223669", "text": "CACNA1G-related disorders" }, { - "baseId": "223669|265019|415572|550304|626256|626257|778363|860412|919746|919747|919748|919749|971085", + "upstreamId": "223669|265019|415572|550304|626256|626257|778363|860412|919746|919747|919748|919749|971085", "text": "Spinocerebellar ataxia 42, early-onset, severe, with neurodevelopmental deficits" }, { - "baseId": "223692|223693|223694", + "upstreamId": "223692|223693|223694", "text": "Wilms tumor 6" }, { - "baseId": "223695", + "upstreamId": "223695", "text": "Vibratory urticaria" }, { - "baseId": "223696|223697|223698|223699", + "upstreamId": "223696|223697|223698|223699", "text": "Combined oxidative phosphorylation deficiency 28" }, { - "baseId": "223709|223710|223711|223712|223713|360941|424661|444967|495732|511984|536093|583116|611411|622410|653995|683188|683189|683190|683191|683192|683193|683194|683195|683196|683197|683198|683200|683202|683203|683204|683205|683206|683207|683208|683209|798653|861572|961652|962056|964382|967277|970958|970959", + "upstreamId": "223709|223710|223711|223712|223713|360941|424661|444967|495732|511984|536093|583116|611411|622410|653995|683188|683189|683190|683191|683192|683193|683194|683195|683196|683197|683198|683200|683202|683203|683204|683205|683206|683207|683208|683209|798653|861572|961652|962056|964382|967277|970958|970959", "text": "Lamb-shaffer syndrome" }, { - "baseId": "223714", + "upstreamId": "223714", "text": "Combined oxidative phosphorylation deficiency 29" }, { - "baseId": "223715|223716", + "upstreamId": "223715|223716", "text": "Hyperphosphatasia with mental retardation syndrome 6" }, { - "baseId": "223717|446855|800948", + "upstreamId": "223717|446855|800948", "text": "Preimplantation embryonic lethality 1" }, { - "baseId": "223737", + "upstreamId": "223737", "text": "Spastic paraplegia, optic atrophy, and neuropathy" }, { - "baseId": "223738|578374", + "upstreamId": "223738|578374", "text": "Microcephaly, short stature, and impaired glucose metabolism 2" }, { - "baseId": "223741", + "upstreamId": "223741", "text": "IgA nephropathy, susceptibility to, 3" }, { - "baseId": "223742|612717|614645|614646|614647", + "upstreamId": "223742|612717|614645|614646|614647", "text": "Muscular dystrophy, limb-girdle, type 2X" }, { - "baseId": "223744|919262", + "upstreamId": "223744|919262", "text": "Corpus callosum, agenesis of, with facial anomalies and cerebellar ataxia" }, { - "baseId": "223761|223762|223763|223764", + "upstreamId": "223761|223762|223763|223764", "text": "Inherited bone marrow failure syndrome" }, { - "baseId": "223761|223762|223763|223764|247583|609003|609004|790553|798560|802154", + "upstreamId": "223761|223762|223763|223764|247583|609003|609004|790553|798560|802154", "text": "Bone marrow failure syndrome 3" }, { - "baseId": "223765|223766|223767|223768|226382|538444|590310|971025", + "upstreamId": "223765|223766|223767|223768|226382|538444|590310|971025", "text": "Parkinson disease 23, autosomal recessive early-onset" }, { - "baseId": "223771", + "upstreamId": "223771", "text": "Cachexia" }, { - "baseId": "223771", + "upstreamId": "223771", "text": "Abnormal pattern of respiration" }, { - "baseId": "223771|360857|360941|361041|446889|514016|514091|610430|800985|905848", + "upstreamId": "223771|360857|360941|361041|446889|514016|514091|610430|800985|905848", "text": "Strabismus" }, { - "baseId": "223779", + "upstreamId": "223779", "text": "Hypotonia, infantile, with psychomotor retardation" }, { - "baseId": "223780|223781|223782|236862|417867|679342|798822|800680|822287|861587", + "upstreamId": "223780|223781|223782|236862|417867|679342|798822|800680|822287|861587", "text": "Mental retardation, X-linked, syndromic 34" }, { - "baseId": "224306|224450|244161", + "upstreamId": "224306|224450|244161", "text": "Skeletal myopathy" }, { - "baseId": "224411|291085|291103|291104|292062|295393|295411|295594|295618|311739|317301|672229|672230|672231|672232|672233|672297|672298|672299|858554|918512|918513|918515|918516|918517|965294", + "upstreamId": "224411|291085|291103|291104|292062|295393|295411|295594|295618|311739|317301|672229|672230|672231|672232|672233|672297|672298|672299|858554|918512|918513|918515|918516|918517|965294", "text": "Nephrotic syndrome" }, { - "baseId": "224461", + "upstreamId": "224461", "text": "First degree atrioventricular block" }, { - "baseId": "224616|250156|250159|250161|250162|448463|448564|448565|448569|448571|448685|448688|448690|448693|448778|448786|516332|516335|516347|516350|516374|516401|516421|516430|516432|516434|557506|557508|557510|557512|557555|557557|558715|558717|559200|559202|628435|628436|628437|628438|628439|628440|628441|628442|650767|650833|650835|690739|777196|824742|824743|824744|824745|824746|824747|824748|824749|824750|824751|824752|824753|824754|851332|922236|922237|930796|930797|930798|942228|952631", + "upstreamId": "224616|250156|250159|250161|250162|448463|448564|448565|448569|448571|448685|448688|448690|448693|448778|448786|516332|516335|516347|516350|516374|516401|516421|516430|516432|516434|557506|557508|557510|557512|557555|557557|558715|558717|559200|559202|628435|628436|628437|628438|628439|628440|628441|628442|650767|650833|650835|690739|777196|824742|824743|824744|824745|824746|824747|824748|824749|824750|824751|824752|824753|824754|851332|922236|922237|930796|930797|930798|942228|952631", "text": "Muscular dystrophy, limb-girdle, type 2W" }, { - "baseId": "224617", + "upstreamId": "224617", "text": "MUSCULAR DYSTROPHY, AUTOSOMAL RECESSIVE, WITH CARDIOMYOPATHY AND TRIANGULAR TONGUE" }, { - "baseId": "224665|224666|451991", + "upstreamId": "224665|224666|451991", "text": "Autoimmune disease, multisystem, infantile-onset, 2" }, { - "baseId": "224678|224679|224680|224681|224682|224683|224684|224685|224686|224687|224688|224689|224690", + "upstreamId": "224678|224679|224680|224681|224682|224683|224684|224685|224686|224687|224688|224689|224690", "text": "Monoclonal B-Cell Lymphocytosis" }, { - "baseId": "224695|224696|224697", + "upstreamId": "224695|224696|224697", "text": "Microcephaly, congenital cataract, and psoriasiform dermatitis" }, { - "baseId": "224700|224701|226639|226640|226641|226642|226643|226644|226645|226646|226647|226649|226650|226652|226653|226654|226655|226656", + "upstreamId": "224700|224701|226639|226640|226641|226642|226643|226644|226645|226646|226647|226649|226650|226652|226653|226654|226655|226656", "text": "Cerebral visual impairment and intellectual disability" }, { - "baseId": "224706|224707|226069|919424", + "upstreamId": "224706|224707|226069|919424", "text": "Toriello-Lacassie-Droste syndrome" }, { - "baseId": "224708|224709|789841|965210", + "upstreamId": "224708|224709|789841|965210", "text": "Paget disease of bone 6" }, { - "baseId": "224814|224816|244175", + "upstreamId": "224814|224816|244175", "text": "Short stature, developmental delay, and congenital heart defects" }, { - "baseId": "224821|224822|224823|224824|224825|481245|481503|512663|538510|539113|611450|917773|964705|972735|972736", + "upstreamId": "224821|224822|224823|224824|224825|481245|481503|512663|538510|539113|611450|917773|964705|972735|972736", "text": "Mental retardation, X-linked 99, syndromic, female-restricted" }, { - "baseId": "224832|224833", + "upstreamId": "224832|224833", "text": "Exercise intolerance, riboflavin-responsive" }, { - "baseId": "224866|362857|363052", + "upstreamId": "224866|362857|363052", "text": "MELORHEOSTOSIS, ISOLATED, SOMATIC MOSAIC" }, { - "baseId": "224882|224883|439689", + "upstreamId": "224882|224883|439689", "text": "Brachydactyly, type a1, d" }, { - "baseId": "224967|613916|613955|613984|614036", + "upstreamId": "224967|613916|613955|613984|614036", "text": "Chromosome 17q12 duplication syndrome" }, { - "baseId": "224974|919852|919853", + "upstreamId": "224974|919852|919853", "text": "Cataract 45" }, { - "baseId": "225795|466943|466947|466949|467848|467853|467855|467861|468150|468153|468161|468337|468349|531195|531200|531205|531208|574505|646140|652807|652976|694093|694094|694095|695750|704187|740832|845542|845543|845544|845545|845546|845547|845548|845549|928357|928358|938000|938001|938002|940418|949991|949992|949993|949994", + "upstreamId": "225795|466943|466947|466949|467848|467853|467855|467861|468150|468153|468161|468337|468349|531195|531200|531205|531208|574505|646140|652807|652976|694093|694094|694095|695750|704187|740832|845542|845543|845544|845545|845546|845547|845548|845549|928357|928358|938000|938001|938002|940418|949991|949992|949993|949994", "text": "Atrial fibrillation, familial, 18" }, { - "baseId": "225797|225798", + "upstreamId": "225797|225798", "text": "Anemia, sideroblastic, 4" }, { - "baseId": "225802|384424|426751|514320|514322|514324|514325|514326|514327|514327|514328|514329|514330|514336|550126|576328|608922|677043|921237|921238|921243|975943", + "upstreamId": "225802|384424|426751|514320|514322|514324|514325|514326|514327|514327|514328|514329|514330|514336|550126|576328|608922|677043|921237|921238|921243|975943", "text": "Moderate global developmental delay" }, { - "baseId": "225802|590225|590226|590227|590228|590229|590230|790068|798486|918676", + "upstreamId": "225802|590225|590226|590227|590228|590229|590230|790068|798486|918676", "text": "Autism 5" }, { - "baseId": "225802|225802|225802|679897|921238|921240", + "upstreamId": "225802|225802|225802|679897|921238|921240", "text": "Delayed fine motor development" }, { - "baseId": "225802|513910", + "upstreamId": "225802|513910", "text": "Abnormal brainstem MRI signal intensity" }, { - "baseId": "225802|263332", + "upstreamId": "225802|263332", "text": "Hypoplasia of the frontal lobes" }, { - "baseId": "225802", + "upstreamId": "225802", "text": "Focal cortical dysplasia" }, { - "baseId": "225815|263782|263783|361701|362304|362305|362307|362310|362311|362312|362313|407829|481314|535703|551777|672078|679767|790944|816373|816471|963695|964842|980937", + "upstreamId": "225815|263782|263783|361701|362304|362305|362307|362310|362311|362312|362313|407829|481314|535703|551777|672078|679767|790944|816373|816471|963695|964842|980937", "text": "Hypotonia, ataxia, and delayed development syndrome" }, { - "baseId": "225852|514188", + "upstreamId": "225852|514188", "text": "Edema of the lower limbs" }, { - "baseId": "225852|514114|514188", + "upstreamId": "225852|514114|514188", "text": "Downslanted palpebral fissures" }, { - "baseId": "225870|263011|380286|380287|380288|391129|391133|391178|391211|391216|424638|439845|439847|439848|439850|439851|439855|439856|439857|439858|439859|439860|481589|486731|515820|550580|552397|558459|611375|614214|789955|789956|903506|918626|918627|921967|964152|964798|965272", + "upstreamId": "225870|263011|380286|380287|380288|391129|391133|391178|391211|391216|424638|439845|439847|439848|439850|439851|439855|439856|439857|439858|439859|439860|481589|486731|515820|550580|552397|558459|611375|614214|789955|789956|903506|918626|918627|921967|964152|964798|965272", "text": "Epileptic encephalopathy, early infantile, 54" }, { - "baseId": "226044|226045", + "upstreamId": "226044|226045", "text": "Combined oxidative phosphorylation deficiency 30" }, { - "baseId": "226064|226065|226066", + "upstreamId": "226064|226065|226066", "text": "Even-plus syndrome" }, { - "baseId": "226233", + "upstreamId": "226233", "text": "ARV1-related condition" }, { - "baseId": "226235|226236", + "upstreamId": "226235|226236", "text": "Brainstem dysplasia" }, { - "baseId": "226235|226236", + "upstreamId": "226235|226236", "text": "Heart and brain malformation syndrome" }, { - "baseId": "226290|226291", + "upstreamId": "226290|226291", "text": "Spasticity, childhood-onset, with hyperglycinemia" }, { - "baseId": "226331", + "upstreamId": "226331", "text": "Adenomatous polyposis coli, attenuated" }, { - "baseId": "226373|226374|226375|226376|226377|226378|538378|583096|614152|974452", + "upstreamId": "226373|226374|226375|226376|226377|226378|538378|583096|614152|974452", "text": "Diarrhea 8, secretory sodium, congenital" }, { - "baseId": "226400", + "upstreamId": "226400", "text": "Autosomal dominant familial hypercholesterolemia" }, { - "baseId": "226403|226404|226405|226406|226407|610516", + "upstreamId": "226403|226404|226405|226406|226407|610516", "text": "Exudative retinopathy" }, { - "baseId": "226408|226410|226411", + "upstreamId": "226408|226410|226411", "text": "Duane syndrome type 3" }, { - "baseId": "226408|226409|226410|226411|576094", + "upstreamId": "226408|226409|226410|226411|576094", "text": "Duane syndrome type 1" }, { - "baseId": "226409", + "upstreamId": "226409", "text": "Duane retraction syndrome 3 with or without deafness" }, { - "baseId": "226412|226413|426117", + "upstreamId": "226412|226413|426117", "text": "Spinal muscular atrophy with congenital bone fractures 1" }, { - "baseId": "226439", + "upstreamId": "226439", "text": "Congenital muscular dystrophy with rigid spine" }, { - "baseId": "226499", + "upstreamId": "226499", "text": "GNB1-Related Disorder" }, { - "baseId": "226504|434654|513461|906211|906214|976667", + "upstreamId": "226504|434654|513461|906211|906214|976667", "text": "Chromosome 16p13.2 deletion syndrome" }, { - "baseId": "226511|226514|226515|226516|226517|226518", + "upstreamId": "226511|226514|226515|226516|226517|226518", "text": "Lipid storage myopathy due to flavin adenine dinucleotide synthetase deficiency" }, { - "baseId": "226593", + "upstreamId": "226593", "text": "Metabolic crises with rhabdomyolysis, cardiac arrhythmias, and neurodegeneration" }, { - "baseId": "226595", + "upstreamId": "226595", "text": "Oxyphilic adenoma" }, { - "baseId": "226596|226597|226598|226599|226600|226601|420430|539189|539419|679855|799512|965220", + "upstreamId": "226596|226597|226598|226599|226600|226601|420430|539189|539419|679855|799512|965220", "text": "Immunodeficiency, common variable, 13" }, { - "baseId": "226609|226610|226611|226612|226613|226614|237778|237780|406822|511628|514525|611391|611646|611647|918996|918997|918998|918999|919000|970822|970823|972832|972932|972933|972934", + "upstreamId": "226609|226610|226611|226612|226613|226614|237778|237780|406822|511628|514525|611391|611646|611647|918996|918997|918998|918999|919000|970822|970823|972832|972932|972933|972934", "text": "Mental retardation, autosomal dominant 43" }, { - "baseId": "226614", + "upstreamId": "226614", "text": "HIVEP2-Related Disorder" }, { - "baseId": "226615|226616|226617|226618|226619|264757|360579|410763|410768|426344|550643|610412|610413|806079|962194|963910|964532|964895|972845|972994|972995", + "upstreamId": "226615|226616|226617|226618|226619|264757|360579|410763|410768|426344|550643|610412|610413|806079|962194|963910|964532|964895|972845|972994|972995", "text": "Okur-chung neurodevelopmental syndrome" }, { - "baseId": "226644|237016|237784|237785|237787|359325|405245|442892|513409|536089|553144|553145|553146|553147|553148|553149|578385|626113|802123|918653|918654|918655|918656|918657|964160|970702|974565", + "upstreamId": "226644|237016|237784|237785|237787|359325|405245|442892|513409|536089|553144|553145|553146|553147|553148|553149|578385|626113|802123|918653|918654|918655|918656|918657|964160|970702|974565", "text": "Neurodevelopmental disorder with or without anomalies of the brain, eye, or heart" }, { - "baseId": "226648|480556", + "upstreamId": "226648|480556", "text": "NEURODEVELOPMENTAL DISORDER WITH HYPERKINETIC MOVEMENTS WITHOUT SEIZURES, AUTOSOMAL RECESSIVE" }, { - "baseId": "226648|444451|480557|511828|919210|920272|961294", + "upstreamId": "226648|444451|480557|511828|919210|920272|961294", "text": "Neurodevelopmental disorder with or without hyperkinetic movements and seizures, autosomal recessive" }, { - "baseId": "226654|677382|677383|677399|802109|802110|976670", + "upstreamId": "226654|677382|677383|677399|802109|802110|976670", "text": "Intellectual developmental disorder 62" }, { - "baseId": "226658|226659|226660|226661|226662", + "upstreamId": "226658|226659|226660|226661|226662", "text": "Chromosome 17p13.1 deletion syndrome" }, { - "baseId": "226711|244146|361295|361296|361297|361298", + "upstreamId": "226711|244146|361295|361296|361297|361298", "text": "Chromosome Xq26.3 duplication syndrome" }, { - "baseId": "226718|226719", + "upstreamId": "226718|226719", "text": "Anadysplasia-like, spontaneously remitting spondylometaphyseal dysplasia" }, { - "baseId": "226722|371648|439515|653883|677328|818143|970961", + "upstreamId": "226722|371648|439515|653883|677328|818143|970961", "text": "Spondyloepiphyseal dysplasia, stanescu type" }, { - "baseId": "226734|226735", + "upstreamId": "226734|226735", "text": "Advanced sleep phase syndrome, familial, 3" }, { - "baseId": "226736", + "upstreamId": "226736", "text": "Mental retardation, autosomal recessive 52" }, { - "baseId": "226737", + "upstreamId": "226737", "text": "Leukodystrophy, hypomyelinating, 13" }, { - "baseId": "226759|226760|919151|919152|920254", + "upstreamId": "226759|226760|919151|919152|920254", "text": "Encephalocraniocutaneous lipomatosis" }, { - "baseId": "226775|226776|677968", + "upstreamId": "226775|226776|677968", "text": "Osteochondrodysplasia, complex lethal, symoens-barnes-gistelinck type" }, { - "baseId": "226816|291968|488239|488240", + "upstreamId": "226816|291968|488239|488240", "text": "Hereditary renal cell carcinoma" }, { - "baseId": "226843|415883|415884|528769|528776|529250|550369|573216|643112|693661|739570|791440|842238|842239|963787", + "upstreamId": "226843|415883|415884|528769|528776|529250|550369|573216|643112|693661|739570|791440|842238|842239|963787", "text": "Cleft palate, cardiac defects, and mental retardation" }, { - "baseId": "226843", + "upstreamId": "226843", "text": "MEIS2-related disorder" }, { - "baseId": "226845|226846|226847|226848|226849|590323|623339|802211|802212|818330|818331", + "upstreamId": "226845|226846|226847|226848|226849|590323|623339|802211|802212|818330|818331", "text": "Nephrotic syndrome, type 12" }, { - "baseId": "226850|798582", + "upstreamId": "226850|798582", "text": "Nephrotic syndrome, type 13" }, { - "baseId": "226861|513686|578590", + "upstreamId": "226861|513686|578590", "text": "Pigmentary disorder, reticulate, with systemic manifestations, X-linked" }, { - "baseId": "226870|259636|364651|511197|608799|677970|788731|792595|918582|918583|964138|970667|970668|977171", + "upstreamId": "226870|259636|364651|511197|608799|677970|788731|792595|918582|918583|964138|970667|970668|977171", "text": "Developmental and epileptic encephalopathy, 69" }, { - "baseId": "226887|965590", + "upstreamId": "226887|965590", "text": "Autoinflammation, immune dysregulation, and eosinophilia" }, { - "baseId": "226916|226917|612037|612040|678081|798621|969737", + "upstreamId": "226916|226917|612037|612040|678081|798621|969737", "text": "Epilepsy, idiopathic generalized, susceptibility to, 15" }, { - "baseId": "226957|553143|677959", + "upstreamId": "226957|553143|677959", "text": "Progressive cerebellar ataxia" }, { - "baseId": "226957", + "upstreamId": "226957", "text": "KARS-related disorders" }, { - "baseId": "226967|226968|361816|361817|858578|858579", + "upstreamId": "226967|226968|361816|361817|858578|858579", "text": "Mental retardation, autosomal recessive 58" }, { - "baseId": "226967|426271", + "upstreamId": "226967|426271", "text": "ELP2-Related Disorders" }, { - "baseId": "227010|294184", + "upstreamId": "227010|294184", "text": "Mitochondrial DNA depletion syndrome 14 (cardioencephalomyopathic type)" }, { - "baseId": "227013|227014|227015|431678", + "upstreamId": "227013|227014|227015|431678", "text": "Macular dystrophy, patterned, 2" }, { - "baseId": "227046|227047|227048|227049|227050|227053|227056|227057|227059|553354|553355|623685", + "upstreamId": "227046|227047|227048|227049|227050|227053|227056|227057|227059|553354|553355|623685", "text": "Tooth agenesis" }, { - "baseId": "227079|227080|511483", + "upstreamId": "227079|227080|511483", "text": "Exudative vitreoretinopathy 7" }, { - "baseId": "227105|227106|227107|227108", + "upstreamId": "227105|227106|227107|227108", "text": "Periventricular nodular heterotopia with syndactyly, cleft palate and developmental delay" }, { - "baseId": "227105|227106|227107|227108|539084|583207|626269|800676|802022|855115|919803|961632", + "upstreamId": "227105|227106|227107|227108|539084|583207|626269|800676|802022|855115|919803|961632", "text": "Periventricular nodular heterotopia 7" }, { - "baseId": "227129|227130|227131|227132", + "upstreamId": "227129|227130|227131|227132", "text": "Thiopurines, poor metabolism of, 2" }, { - "baseId": "227129", + "upstreamId": "227129", "text": "mercaptopurine response - Dosage, Toxicity/ADR" }, { - "baseId": "227129", + "upstreamId": "227129", "text": "azathioprine response - Dosage, Toxicity/ADR" }, { - "baseId": "227149|227150|227151", + "upstreamId": "227149|227150|227151", "text": "Syndromic Infantile Encephalopathy" }, { - "baseId": "227242|371260|514566|622024|622025|622026|622027", + "upstreamId": "227242|371260|514566|622024|622025|622026|622027", "text": "Hypertriglyceridemia" }, { - "baseId": "227256", + "upstreamId": "227256", "text": "Hereditary hypotrichosis simplex" }, { - "baseId": "227261|620127|620765", + "upstreamId": "227261|620127|620765", "text": "TREX1-Related Disorders" }, { - "baseId": "227289|252040|252042|298450|298452|298458|298464|298465|298469|298470|298474|298484|298485|298486|298491|298508|298509|300787|300801|300803|300805|300807|300809|300813|300814|300815|300820|300821|305166|305182|305184|305199|305205|305207|305301|305320|305324|305325|305328|305331|305351|305353|305354|305355|305360|305362|305368|305371|620202|620203|620204|895065|895066|895067|895068|895069|895070|895071|895072|895073|895074|895075|895076|895077|895078|895079|895080|895081|895082|895083|895084|895085|895086|895087|895088|895089|895090|895091|895092|895093|895094|895095|895096|895097|895098|895099|895100|895101|896170|896171", + "upstreamId": "227289|252040|252042|298450|298452|298458|298464|298465|298469|298470|298474|298484|298485|298486|298491|298508|298509|300787|300801|300803|300805|300807|300809|300813|300814|300815|300820|300821|305166|305182|305184|305199|305205|305207|305301|305320|305324|305325|305328|305331|305351|305353|305354|305355|305360|305362|305368|305371|620202|620203|620204|895065|895066|895067|895068|895069|895070|895071|895072|895073|895074|895075|895076|895077|895078|895079|895080|895081|895082|895083|895084|895085|895086|895087|895088|895089|895090|895091|895092|895093|895094|895095|895096|895097|895098|895099|895100|895101|896170|896171", "text": "I blood group system" }, { - "baseId": "227347|271424|622847|903583|919386|919387|920300", + "upstreamId": "227347|271424|622847|903583|919386|919387|920300", "text": "Exudative vitreoretinopathy 4" }, { - "baseId": "227427|613840|613841|613842|614122|653993", + "upstreamId": "227427|613840|613841|613842|614122|653993", "text": "Chromosome 1q21.1 duplication syndrome" }, { - "baseId": "227430|227431|227432|227433|227434|227435|724120|799625", + "upstreamId": "227430|227431|227432|227433|227434|227435|724120|799625", "text": "Immunodeficiency-centromeric instability-facial anomalies syndrome 4" }, { - "baseId": "227436|227437|227438|227439", + "upstreamId": "227436|227437|227438|227439", "text": "Immunodeficiency-centromeric instability-facial anomalies syndrome 3" }, { - "baseId": "227440|227441|227442|227443", + "upstreamId": "227440|227441|227442|227443", "text": "Platelet-type bleeding disorder 20" }, { - "baseId": "227444|404643|404644|404646", + "upstreamId": "227444|404643|404644|404646", "text": "Lopes-Maciel-Rodan syndrome" }, { - "baseId": "227447|227448|919813|919814", + "upstreamId": "227447|227448|919813|919814", "text": "Alzheimer disease, type 9" }, { - "baseId": "227447|648879|858701|858704|858705|858707|858708|858711|858712|858715", + "upstreamId": "227447|648879|858701|858704|858705|858707|858708|858711|858712|858715", "text": "Early-onset Alzheimer's disease" }, { - "baseId": "227464|227465", + "upstreamId": "227464|227465", "text": "Charcot-Marie-Tooth disease, axonal, type 2CC" }, { - "baseId": "227467|227468|513219|792757|798572", + "upstreamId": "227467|227468|513219|792757|798572", "text": "Dyskinesia, limb and orofacial, infantile-onset" }, { - "baseId": "227469|227470|513219|792757", + "upstreamId": "227469|227470|513219|792757", "text": "Striatal degeneration, autosomal dominant 2" }, { - "baseId": "227471|227472|227473|363789|363802|406440|438600|438947|439027|453204|453211|453213|453215|453219|453223|453225|453227|453229|453231|453233|453237|453241|453242|453461|453462|453468|453479|453480|453485|453489|453490|453495|453499|453504|453510|453513|453515|453517|453568|453584|453585|453589|453603|453607|453611|453613|453615|453947|453950|453991|453992|453994|454002|454009|454010|519659|519924|519947|519949|519955|519957|519961|519963|519964|519967|519969|519978|519980|519984|520207|520212|520219|520221|520223|520226|520227|520228|520229|520232|520235|520238|520241|520243|520245|520247|520248|520249|559695|559697|559699|559703|559705|559707|559709|559852|559854|559856|559858|559860|559862|561837|562027|562031|562033|562035|563330|563724|563771|563772|563776|563784|563788|563793|589832|590166|632231|632232|632233|632234|632235|632243|632244|632245|632246|632247|632248|632249|632250|632251|632252|632253|632254|632255|632256|632257|632258|632259|632260|691572|698538|698540|698541|698545|698548|709385|709387|709388|709390|720993|744149|748958|748959|764482|764488|764490|764491|764492|779105|781962|781964|781966|781970|787207|798542|798543|829193|829194|829195|829196|829197|829198|829199|829200|829208|829209|829210|829211|829212|829213|829214|829215|829216|829217|829218|829219|829220|829221|829222|829223|851125|851606|923523|923524|923525|923526|923527|923528|923529|923530|923531|923532|923533|932358|932359|932360|932361|932362|932366|932367|932368|932369|932370|932371|932372|940780|944019|944020|944021|944022|944023|944024|944025|944026|944027|944028|944029|953786|953787|953788|953789|953790|953791|960539", + "upstreamId": "227471|227472|227473|363789|363802|406440|438600|438947|439027|453204|453211|453213|453215|453219|453223|453225|453227|453229|453231|453233|453237|453241|453242|453461|453462|453468|453479|453480|453485|453489|453490|453495|453499|453504|453510|453513|453515|453517|453568|453584|453585|453589|453603|453607|453611|453613|453615|453947|453950|453991|453992|453994|454002|454009|454010|519659|519924|519947|519949|519955|519957|519961|519963|519964|519967|519969|519978|519980|519984|520207|520212|520219|520221|520223|520226|520227|520228|520229|520232|520235|520238|520241|520243|520245|520247|520248|520249|559695|559697|559699|559703|559705|559707|559709|559852|559854|559856|559858|559860|559862|561837|562027|562031|562033|562035|563330|563724|563771|563772|563776|563784|563788|563793|589832|590166|632231|632232|632233|632234|632235|632243|632244|632245|632246|632247|632248|632249|632250|632251|632252|632253|632254|632255|632256|632257|632258|632259|632260|691572|698538|698540|698541|698545|698548|709385|709387|709388|709390|720993|744149|748958|748959|764482|764488|764490|764491|764492|779105|781962|781964|781966|781970|787207|798542|798543|829193|829194|829195|829196|829197|829198|829199|829200|829208|829209|829210|829211|829212|829213|829214|829215|829216|829217|829218|829219|829220|829221|829222|829223|851125|851606|923523|923524|923525|923526|923527|923528|923529|923530|923531|923532|923533|932358|932359|932360|932361|932362|932366|932367|932368|932369|932370|932371|932372|940780|944019|944020|944021|944022|944023|944024|944025|944026|944027|944028|944029|953786|953787|953788|953789|953790|953791|960539", "text": "Mental retardation, autosomal recessive 53" }, { - "baseId": "227491", + "upstreamId": "227491", "text": "Brachydactyly-syndactyly-oligodactyly syndrome" }, { - "baseId": "227504", + "upstreamId": "227504", "text": "Thrombocytopenia 6" }, { - "baseId": "227504|361047|513943", + "upstreamId": "227504|361047|513943", "text": "Osteoporosis" }, { - "baseId": "227511|227512|425308|513492|578362|583076|903501|964912|977169|980500", + "upstreamId": "227511|227512|425308|513492|578362|583076|903501|964912|977169|980500", "text": "Harel-Yoon syndrome" }, { - "baseId": "227573|918877", + "upstreamId": "227573|918877", "text": "Hypotonia, ataxia, developmental delay, and tooth enamel defect syndrome" }, { - "baseId": "227574|227575|227576|512552|798776|816513|973004", + "upstreamId": "227574|227575|227576|512552|798776|816513|973004", "text": "Mental retardation, X-linked, syndromic, Bain type" }, { - "baseId": "227579|611750|969587", + "upstreamId": "227579|611750|969587", "text": "MULTIPLE JOINT DISLOCATIONS, SHORT STATURE, AND CRANIOFACIAL DYSMORPHISM WITHOUT CONGENITAL HEART DEFECTS" }, { - "baseId": "227580|227581|227582|227583|481999|575494|608845|791153|791154|963160|974893|974894|974895|974896|974897|974898|974899|974900|974901", + "upstreamId": "227580|227581|227582|227583|481999|575494|608845|791153|791154|963160|974893|974894|974895|974896|974897|974898|974899|974900|974901", "text": "Spastic paraplegia 76, autosomal recessive" }, { - "baseId": "227598|362286|362287|362288|362289|362290|362291|362292", + "upstreamId": "227598|362286|362287|362288|362289|362290|362291|362292", "text": "Chronic osteomyelitis" }, { - "baseId": "227654|227655", + "upstreamId": "227654|227655", "text": "Trichothiodystrophy 6, nonphotosensitive" }, { - "baseId": "227660", + "upstreamId": "227660", "text": "Chorea, childhood-onset, with psychomotor retardation" }, { - "baseId": "227683|614455|614456|704839|704840|716247|727998|728000|741675|741680|800124|800125|800126|961981|971122|982173|982174", + "upstreamId": "227683|614455|614456|704839|704840|716247|727998|728000|741675|741680|800124|800125|800126|961981|971122|982173|982174", "text": "Agammaglobulinemia 8, autosomal dominant" }, { - "baseId": "227687|406145|439048|451947|451948|452144|452292|452295|452408|511467|511468|518979|519155|519159|535699|558840|559381|562565|614258|614258|615905|650404|650405|650406|650407|650971|651022|651099|697936|743913|744025|781614|790357|790358|790359|790360|827710|827711|827712|827713|827714|827715|827716|906205|923096|923097|931837|931838|943418|943419|953397|964217|970761", + "upstreamId": "227687|406145|439048|451947|451948|452144|452292|452295|452408|511467|511468|518979|519155|519159|535699|558840|559381|562565|614258|614258|615905|650404|650405|650406|650407|650971|651022|651099|697936|743913|744025|781614|790357|790358|790359|790360|827710|827711|827712|827713|827714|827715|827716|906205|923096|923097|931837|931838|943418|943419|953397|964217|970761", "text": "Pierpont syndrome" }, { - "baseId": "227693|227694|227695", + "upstreamId": "227693|227694|227695", "text": "Increased histidine" }, { - "baseId": "227696|227697|227698|227699|227700|227701", + "upstreamId": "227696|227697|227698|227699|227700|227701", "text": "Pineoblastoma" }, { - "baseId": "227702|513442|623048|677011", + "upstreamId": "227702|513442|623048|677011", "text": "Myopathy, congenital, with tremor" }, { - "baseId": "227715|227716", + "upstreamId": "227715|227716", "text": "Premature ovarian failure 11" }, { - "baseId": "227741", + "upstreamId": "227741", "text": "Bisphosphonates response - Efficacy" }, { - "baseId": "227742", + "upstreamId": "227742", "text": "rituximab response - Efficacy" }, { - "baseId": "227743", + "upstreamId": "227743", "text": "hormonal contraceptives for systemic use response - Toxicity/ADR" }, { - "baseId": "227744", + "upstreamId": "227744", "text": "latanoprost response - Efficacy" }, { - "baseId": "227746", + "upstreamId": "227746", "text": "lamotrigine response - Other" }, { - "baseId": "227747", + "upstreamId": "227747", "text": "atazanavir response - Other" }, { - "baseId": "227748", + "upstreamId": "227748", "text": "cetuximab response - Efficacy" }, { - "baseId": "227750", + "upstreamId": "227750", "text": "oxazepam response - Other" }, { - "baseId": "227750", + "upstreamId": "227750", "text": "lorazepam response - Other" }, { - "baseId": "227751", + "upstreamId": "227751", "text": "nicotine response - Metabolism/PK" }, { - "baseId": "227752|227759|227775", + "upstreamId": "227752|227759|227775", "text": "pravastatin response - Efficacy" }, { - "baseId": "227752|227788", + "upstreamId": "227752|227788", "text": "HMG CoA reductase inhibitors response - Efficacy" }, { - "baseId": "227753|227761|227766", + "upstreamId": "227753|227761|227766", "text": "salbutamol response - Efficacy" }, { - "baseId": "227753", + "upstreamId": "227753", "text": "salmeterol response - Efficacy" }, { - "baseId": "227754", + "upstreamId": "227754", "text": "aspirin response - Toxicity/ADR" }, { - "baseId": "227756", + "upstreamId": "227756", "text": "hmg coa reductase inhibitors response - Efficacy, Toxicity/ADR" }, { - "baseId": "227756|963322|963323|963324", + "upstreamId": "227756|963322|963323|963324", "text": "LIPOPROTEIN(a) POLYMORPHISM" }, { - "baseId": "227757", + "upstreamId": "227757", "text": "etanercept response - Efficacy" }, { - "baseId": "227757", + "upstreamId": "227757", "text": "infliximab response - Efficacy" }, { - "baseId": "227757", + "upstreamId": "227757", "text": "Tumor necrosis factor alpha (TNF-alpha) inhibitors response - Efficacy" }, { - "baseId": "227757", + "upstreamId": "227757", "text": "adalimumab response - Efficacy" }, { - "baseId": "227758", + "upstreamId": "227758", "text": "fluoxetine response - Efficacy" }, { - "baseId": "227758|227777|227810", + "upstreamId": "227758|227777|227810", "text": "Selective serotonin reuptake inhibitors response - Efficacy" }, { - "baseId": "227758", + "upstreamId": "227758", "text": "mirtazapine response - Efficacy" }, { - "baseId": "227758|227777|227821", + "upstreamId": "227758|227777|227821", "text": "antidepressants response - Efficacy" }, { - "baseId": "227758", + "upstreamId": "227758", "text": "venlafaxine response - Efficacy" }, { - "baseId": "227758|362497", + "upstreamId": "227758|362497", "text": "paroxetine response - Efficacy" }, { - "baseId": "227761", + "upstreamId": "227761", "text": "selective beta-2-adrenoreceptor agonists response - Efficacy" }, { - "baseId": "227762|227767|227835", + "upstreamId": "227762|227767|227835", "text": "irinotecan response - Toxicity/ADR" }, { - "baseId": "227763", + "upstreamId": "227763", "text": "MDR1 POLYMORPHISM" }, { - "baseId": "227763|227805|227833", + "upstreamId": "227763|227805|227833", "text": "nevirapine response - Toxicity/ADR" }, { - "baseId": "227763", + "upstreamId": "227763", "text": "digoxin response - Other" }, { - "baseId": "227763", + "upstreamId": "227763", "text": "fentanyl response - Dosage, Efficacy" }, { - "baseId": "227764", + "upstreamId": "227764", "text": "sirolimus response - Dosage" }, { - "baseId": "227764", + "upstreamId": "227764", "text": "cyclosporine response - Dosage, Metabolism/PK" }, { - "baseId": "227764", + "upstreamId": "227764", "text": "tacrolimus response (donor genotype) - Dosage, Metabolism/PK" }, { - "baseId": "227764", + "upstreamId": "227764", "text": "tacrolimus response - Efficacy" }, { - "baseId": "227764", + "upstreamId": "227764", "text": "tacrolimus response (recipient genotype) - Dosage, Metabolism/PK" }, { - "baseId": "227764", + "upstreamId": "227764", "text": "sirolimus response - Metabolism/PK" }, { - "baseId": "227768|227792", + "upstreamId": "227768|227792", "text": "aspirin response - Efficacy" }, { - "baseId": "227770", + "upstreamId": "227770", "text": "clopidogrel response - Dosage, Efficacy, Toxicity/ADR" }, { - "baseId": "227770", + "upstreamId": "227770", "text": "citalopram response - Metabolism/PK" }, { - "baseId": "227770", + "upstreamId": "227770", "text": "escitalopram response - Metabolism/PK" }, { - "baseId": "227771", + "upstreamId": "227771", "text": "warfarin response - Dosage, Toxicity/ADR" }, { - "baseId": "227776|227794|227795", + "upstreamId": "227776|227794|227795", "text": "hydrochlorothiazide response - Efficacy" }, { - "baseId": "227777", + "upstreamId": "227777", "text": "Major depressive disorder, response to citalopram therapy in" }, { - "baseId": "227778", + "upstreamId": "227778", "text": "tenofovir response - Metabolism/PK" }, { - "baseId": "227779|227780|227830", + "upstreamId": "227779|227780|227830", "text": "hmg coa reductase inhibitors response - Toxicity/ADR" }, { - "baseId": "227781", + "upstreamId": "227781", "text": "warfarin response - Efficacy" }, { - "baseId": "227789|227809|362500|362501", + "upstreamId": "227789|227809|362500|362501", "text": "anthracyclines and related substances response - Toxicity/ADR" }, { - "baseId": "227791", + "upstreamId": "227791", "text": "triamcinolone response - Efficacy" }, { - "baseId": "227791", + "upstreamId": "227791", "text": "corticosteroids response - Efficacy" }, { - "baseId": "227791", + "upstreamId": "227791", "text": "fluticasone propionate response - Efficacy" }, { - "baseId": "227791", + "upstreamId": "227791", "text": "fluticasone/salmeterol response - Efficacy" }, { - "baseId": "227791", + "upstreamId": "227791", "text": "budesonide response - Efficacy" }, { - "baseId": "227795", + "upstreamId": "227795", "text": "diuretics response - Efficacy" }, { - "baseId": "227797", + "upstreamId": "227797", "text": "ziprasidone response - Toxicity/ADR" }, { - "baseId": "227797", + "upstreamId": "227797", "text": "paliperidone response - Toxicity/ADR" }, { - "baseId": "227797", + "upstreamId": "227797", "text": "haloperidol response - Toxicity/ADR" }, { - "baseId": "227797", + "upstreamId": "227797", "text": "amisulpride response - Toxicity/ADR" }, { - "baseId": "227797", + "upstreamId": "227797", "text": "quetiapine response - Toxicity/ADR" }, { - "baseId": "227797", + "upstreamId": "227797", "text": "aripiprazole response - Toxicity/ADR" }, { - "baseId": "227798", + "upstreamId": "227798", "text": "boceprevir, peginterferon alfa-2a, peginterferon alfa-2b, ribavirin, simeprevir, and telaprevir response - Efficacy" }, { - "baseId": "227800", + "upstreamId": "227800", "text": "warfarin response - Other" }, { - "baseId": "227801|227802", + "upstreamId": "227801|227802", "text": "peginterferon alfa-2a, peginterferon alfa-2b, ribavirin, and telaprevir response - Efficacy" }, { - "baseId": "227801", + "upstreamId": "227801", "text": "peginterferon alfa-2a, peginterferon alfa-2b, and ribavirin response - Efficacy" }, { - "baseId": "227801|362509", + "upstreamId": "227801|362509", "text": "peginterferon alfa-2b response - Efficacy" }, { - "baseId": "227801|362509", + "upstreamId": "227801|362509", "text": "ribavirin response - Efficacy" }, { - "baseId": "227801", + "upstreamId": "227801", "text": "boceprevir response - Efficacy" }, { - "baseId": "227802", + "upstreamId": "227802", "text": "interferons, peginterferon alfa-2a, peginterferon alfa-2b, and ribavirin response - Efficacy" }, { - "baseId": "227806", + "upstreamId": "227806", "text": "cisplatin response - Efficacy" }, { - "baseId": "227806", + "upstreamId": "227806", "text": "oxaliplatin response - Efficacy" }, { - "baseId": "227806", + "upstreamId": "227806", "text": "platinum response - Efficacy" }, { - "baseId": "227806", + "upstreamId": "227806", "text": "Platinum compounds response - Efficacy" }, { - "baseId": "227807", + "upstreamId": "227807", "text": "platinum response - Toxicity/ADR" }, { - "baseId": "227808", + "upstreamId": "227808", "text": "platinum response - Efficacy, Toxicity/ADR" }, { - "baseId": "227808", + "upstreamId": "227808", "text": "carboplatin response - Efficacy, Toxicity/ADR" }, { - "baseId": "227808", + "upstreamId": "227808", "text": "Platinum compounds response - Efficacy, Toxicity/ADR" }, { - "baseId": "227808", + "upstreamId": "227808", "text": "oxaliplatin response - Efficacy, Toxicity/ADR" }, { - "baseId": "227811", + "upstreamId": "227811", "text": "caffeine response - Toxicity/ADR" }, { - "baseId": "227813", + "upstreamId": "227813", "text": "sildenafil response - Efficacy" }, { - "baseId": "227816|227822|227823|227824|227831|227834", + "upstreamId": "227816|227822|227823|227824|227831|227834", "text": "radiotherapy response - Toxicity/ADR" }, { - "baseId": "227817", + "upstreamId": "227817", "text": "metformin response - Efficacy" }, { - "baseId": "227819", + "upstreamId": "227819", "text": "gemcitabine response - Other" }, { - "baseId": "227820", + "upstreamId": "227820", "text": "risperidone response - Efficacy" }, { - "baseId": "227828", + "upstreamId": "227828", "text": "meperidine response - Dosage" }, { - "baseId": "227828", + "upstreamId": "227828", "text": "pentazocine response - Dosage" }, { - "baseId": "227828", + "upstreamId": "227828", "text": "morphine response - Dosage" }, { - "baseId": "227828", + "upstreamId": "227828", "text": "buprenorphine response - Dosage" }, { - "baseId": "227828", + "upstreamId": "227828", "text": "fentanyl response - Dosage" }, { - "baseId": "227828", + "upstreamId": "227828", "text": "opioids response - Dosage" }, { - "baseId": "227829", + "upstreamId": "227829", "text": "methotrexate response - Efficacy" }, { - "baseId": "227830", + "upstreamId": "227830", "text": "rosuvastatin response - Toxicity/ADR" }, { - "baseId": "227830", + "upstreamId": "227830", "text": "atorvastatin response - Toxicity/ADR" }, { - "baseId": "227832", + "upstreamId": "227832", "text": "etoposide response - Toxicity/ADR" }, { - "baseId": "227835", + "upstreamId": "227835", "text": "atazanavir and ritonavir response - Toxicity/ADR" }, { - "baseId": "227836|227837|227838|227839|227840", + "upstreamId": "227836|227837|227838|227839|227840", "text": "Bartter syndrome, type 5, antenatal, transient" }, { - "baseId": "227925", + "upstreamId": "227925", "text": "Familial Hypophosphatemic Rickets" }, { - "baseId": "227927", + "upstreamId": "227927", "text": "Premature ovarian failure 12" }, { - "baseId": "227929", + "upstreamId": "227929", "text": "CAP-congenital myopathy with arthrogryposis multiplex congenita without heart involvement" }, { - "baseId": "227930|227931|227932|227933|264323|264323|310950|423857|480565|790716|790717|792629|805009", + "upstreamId": "227930|227931|227932|227933|264323|264323|310950|423857|480565|790716|790717|792629|805009", "text": "PERCHING syndrome" }, { - "baseId": "227934|227935|227936|227937|227938|227939|227940|227941|227942|227943|227944|227945|227946|227947|227948|227949|227950|227951|227952|227953|227954|227955|227956|227957|227958|227959|227960|227961|227962|227963|227964|227965|227966|227967|227968|227969|227970|227971|227972|227973|227974|227975|227976|227977|227978|227979|227980|227981|227982|227983|227984|227985|227986|227987|227988|227989|227990|227991|227992|227993|227994|227995|227996|227997|227998|227999|228000|228001|228002|228003|228004|228005|228006|228007|228008|228009|228010|228011|228012|228013|228014|228015|228016|228017|228018|228019|228020|228021|228022|228023|228024|228025|228026|228027|228028|228029|228030|228031|228032|228033|228034|228035|228036|228037|228038|228039|228040|228041|228042|228043|228044|228045|228046|228047|228048|228049|228050|228051|228052|228053|228054|228055|228056|228057|228058|228059|228060|228061|228062|228063|228064|228065|228066|228067|228068|228069|228070|228071|228072|228073|228074|228075|228076|228077|228078|228079|228080|228081|228082|228083|228084|228085|228086|228087|228088|228089|228090|228091|228092|228093|228094|228095|228096|228097|228098", + "upstreamId": "227934|227935|227936|227937|227938|227939|227940|227941|227942|227943|227944|227945|227946|227947|227948|227949|227950|227951|227952|227953|227954|227955|227956|227957|227958|227959|227960|227961|227962|227963|227964|227965|227966|227967|227968|227969|227970|227971|227972|227973|227974|227975|227976|227977|227978|227979|227980|227981|227982|227983|227984|227985|227986|227987|227988|227989|227990|227991|227992|227993|227994|227995|227996|227997|227998|227999|228000|228001|228002|228003|228004|228005|228006|228007|228008|228009|228010|228011|228012|228013|228014|228015|228016|228017|228018|228019|228020|228021|228022|228023|228024|228025|228026|228027|228028|228029|228030|228031|228032|228033|228034|228035|228036|228037|228038|228039|228040|228041|228042|228043|228044|228045|228046|228047|228048|228049|228050|228051|228052|228053|228054|228055|228056|228057|228058|228059|228060|228061|228062|228063|228064|228065|228066|228067|228068|228069|228070|228071|228072|228073|228074|228075|228076|228077|228078|228079|228080|228081|228082|228083|228084|228085|228086|228087|228088|228089|228090|228091|228092|228093|228094|228095|228096|228097|228098", "text": "Abnormality of esophagus morphology" }, { - "baseId": "228099", + "upstreamId": "228099", "text": "Multiple sclerosis" }, { - "baseId": "228221", + "upstreamId": "228221", "text": "Spermatogenic failure 15" }, { - "baseId": "228225|228226", + "upstreamId": "228225|228226", "text": "Spinocerebellar ataxia, autosomal recessive 23" }, { - "baseId": "228227|228228|459810|587355|638653|638654|651994|692759|692760|836510|925719", + "upstreamId": "228227|228228|459810|587355|638653|638654|651994|692759|692760|836510|925719", "text": "Spastic paraplegia 62, autosomal recessive" }, { - "baseId": "228229", + "upstreamId": "228229", "text": "Spinocerebellar ataxia, autosomal recessive 22" }, { - "baseId": "228501|551614", + "upstreamId": "228501|551614", "text": "Usher syndrome, type 1M" }, { - "baseId": "229233|262311|262312|262313|438857|709587|920205|961271|963136|980454", + "upstreamId": "229233|262311|262312|262313|438857|709587|920205|961271|963136|980454", "text": "Aortic aneurysm, familial thoracic 10" }, { - "baseId": "230438|230439|918492", + "upstreamId": "230438|230439|918492", "text": "Autosomal recessive spastic ataxia" }, { - "baseId": "230449|335064|337038", + "upstreamId": "230449|335064|337038", "text": "Hirschsprung Disease, Recessive" }, { - "baseId": "230608|496630", + "upstreamId": "230608|496630", "text": "Idiopathic and/or familial pulmonary arterial hypertension" }, { - "baseId": "231319|581215", + "upstreamId": "231319|581215", "text": "Ectodermal dysplasia 14, hair/tooth type with or without hypohidrosis" }, { - "baseId": "231647|965275", + "upstreamId": "231647|965275", "text": "Cerebral hypomyelination" }, { - "baseId": "231839|263782|263783|354284|354294|361039|361140", + "upstreamId": "231839|263782|263783|354284|354294|361039|361140", "text": "Ataxia" }, { - "baseId": "231850|262392|262393|262394|262395|263761|265178|265179|333093|361950|361951|361952|361953|361954|373236|424224|424254|904878|904879|904880", + "upstreamId": "231850|262392|262393|262394|262395|263761|265178|265179|333093|361950|361951|361952|361953|361954|373236|424224|424254|904878|904879|904880", "text": "Behcet's syndrome" }, { - "baseId": "232770|233072", + "upstreamId": "232770|233072", "text": "B Lymphoblastic Leukemia/Lymphoma with t(9" }, { - "baseId": "232770|233072", + "upstreamId": "232770|233072", "text": "22)(q34.1" }, { - "baseId": "232770|233072", + "upstreamId": "232770|233072", "text": "q11.2)" }, { - "baseId": "232770|233072", + "upstreamId": "232770|233072", "text": " BCR-ABL1" }, { - "baseId": "233048|550674", + "upstreamId": "233048|550674", "text": "Duodenal adenocarcinoma" }, { - "baseId": "233829|306874|316668|316671|316967|316969|323029|331658|331659|331662|331668|331672|331679|331683|331684|331686|331694|331695|331701|331704|341907|341932|341934|341935|341942|341944|341945|341948|347270|347281|347290|347332|347335|347347|348571|348608|348613|348647|348649|348653|348656|348660|348670|353480|353481", + "upstreamId": "233829|306874|316668|316671|316967|316969|323029|331658|331659|331662|331668|331672|331679|331683|331684|331686|331694|331695|331701|331704|341907|341932|341934|341935|341942|341944|341945|341948|347270|347281|347290|347332|347335|347347|348571|348608|348613|348647|348649|348653|348656|348660|348670|353480|353481", "text": "Juvenile Polyposis" }, { - "baseId": "234717", + "upstreamId": "234717", "text": "Invasive Breast Carcinoma" }, { - "baseId": "236444|263275|639685", + "upstreamId": "236444|263275|639685", "text": "Colorectal polyposis" }, { - "baseId": "236524|236534|550879", + "upstreamId": "236524|236534|550879", "text": "Heritable Thoracic Aortic Disease" }, { - "baseId": "236524|236534", + "upstreamId": "236524|236534", "text": "Early age onset of sporadic thoracic aortic dissections" }, { - "baseId": "236721", + "upstreamId": "236721", "text": "AP4S1-related disorder" }, { - "baseId": "236722", + "upstreamId": "236722", "text": "APS41-Related disorder" }, { - "baseId": "236723|236724|236725|236726|236727|236728|299020|432294|432295|623283|963357", + "upstreamId": "236723|236724|236725|236726|236727|236728|299020|432294|432295|623283|963357", "text": "Hypercalcemia, infantile, 2" }, { - "baseId": "236724", + "upstreamId": "236724", "text": "SLC34A1-Related Disorders" }, { - "baseId": "236767", + "upstreamId": "236767", "text": "Atrioventricular block, idiopathic second-degree" }, { - "baseId": "236794", + "upstreamId": "236794", "text": "Short QT Syndrome 4" }, { - "baseId": "236837|236838|236852", + "upstreamId": "236837|236838|236852", "text": "Lobar holoprosencephaly" }, { - "baseId": "236846", + "upstreamId": "236846", "text": "Alobar holoprosencephaly" }, { - "baseId": "236849|236855|236856", + "upstreamId": "236849|236855|236856", "text": "Semilobar holoprosencephaly" }, { - "baseId": "236861", + "upstreamId": "236861", "text": "Serum level of adiponectin 1" }, { - "baseId": "236863|513257", + "upstreamId": "236863|513257", "text": "Deafness, autosomal dominant 70" }, { - "baseId": "236864", + "upstreamId": "236864", "text": "Deafness, autosomal dominant 66" }, { - "baseId": "236877|236878|550159|550160|550161|550162|550163|626071|626072", + "upstreamId": "236877|236878|550159|550160|550161|550162|550163|626071|626072", "text": "Deafness, autosomal recessive 32" }, { - "baseId": "236880|682580|682582|682583|682584", + "upstreamId": "236880|682580|682582|682583|682584", "text": "Developmental and epileptic encephalopathy, 81" }, { - "baseId": "236882|236883|236884|236885|236886|236887|236888|236889", + "upstreamId": "236882|236883|236884|236885|236886|236887|236888|236889", "text": "Spondyloepimetaphyseal dysplasia, Genevieve type" }, { - "baseId": "236890", + "upstreamId": "236890", "text": "Cataract Hutterite type" }, { - "baseId": "236891|236892|466937|532135|532142|570041|571837|574705|574706|574707|622849|647076|647077|694242|694243|694244|694245|694246|694247|694248|695788|704528|715875|785834|846674|846675|846676|938379|950454|958433", + "upstreamId": "236891|236892|466937|532135|532142|570041|571837|574705|574706|574707|622849|647076|647077|694242|694243|694244|694245|694246|694247|694248|695788|704528|715875|785834|846674|846675|846676|938379|950454|958433", "text": "Situs inversus totalis" }, { - "baseId": "236891|236892|700109|730496|861285|920240|920241", + "upstreamId": "236891|236892|700109|730496|861285|920240|920241", "text": "Heterotaxy, visceral, 8, autosomal" }, { - "baseId": "236924|313219|313220|313223|313240|319379|325499|326446|326455|326461", + "upstreamId": "236924|313219|313220|313223|313240|319379|325499|326446|326455|326461", "text": "Antenatal Bartter Syndrome" }, { - "baseId": "236942|438516|438517|859599|919097|919098", + "upstreamId": "236942|438516|438517|859599|919097|919098", "text": "Sweeney-Cox syndrome" }, { - "baseId": "237072|289545|293412|293416|322708|330040|334414|350417|551991|967232", + "upstreamId": "237072|289545|293412|293416|322708|330040|334414|350417|551991|967232", "text": "Spermatogenic Failure" }, { - "baseId": "237250|253111|253112|253114|253115|253117|253118|253119|253120|253121|253124|253125|253126|253127|253128|253129|253130|253132|253133|253134|253135|253136|253137|253139|253140|253141|253142|253143|305249|305258|305260|305267|305272|305279|305291|305295|305302|305304|305308|305309|305310|305312|305318|305323|305327|305330|309065|309068|309070|309073|309075|309076|309078|309084|309087|309091|309110|309117|309121|309136|309152|309153|309154|309159|309161|309162|309163|309167|314271|314274|314286|314288|314292|314293|314299|314300|314328|314329|314330|314332|314339|314341|314346|314351|314359|314368|314371|314372|314374|314375|314376|314383|314384|314385|314386|314387|314388|314391|314392|314398|314399|314400|314402|314407|314409|314410|314411|314412|314413|314415|314417|314423|314424|314425|314426|609694|609698|711527|723086|723087|736649|736650|736654|751140|751148|751154|751155|766806|799547|799548|899535|899536|899537|899538|899539|899540|899541|899542|899543|899544|899545|899546|899547|899548|899549|899550|899551|899552|899553|899554|899555|899556|899557|899559|899560|899562|899563|899564|899566|899567|899568|899569|899570|899571|899572|899573|899574|899575|899576|899577|899578|899579|899580|899581|899582|899583|899584|899585|899586|899587|899588|899590|899591|899592|899593|899594|899595|899597|899600|899601|899602|899603|899604|899605|899606|900493|900494|900495|900496|900497|900498|900499", + "upstreamId": "237250|253111|253112|253114|253115|253117|253118|253119|253120|253121|253124|253125|253126|253127|253128|253129|253130|253132|253133|253134|253135|253136|253137|253139|253140|253141|253142|253143|305249|305258|305260|305267|305272|305279|305291|305295|305302|305304|305308|305309|305310|305312|305318|305323|305327|305330|309065|309068|309070|309073|309075|309076|309078|309084|309087|309091|309110|309117|309121|309136|309152|309153|309154|309159|309161|309162|309163|309167|314271|314274|314286|314288|314292|314293|314299|314300|314328|314329|314330|314332|314339|314341|314346|314351|314359|314368|314371|314372|314374|314375|314376|314383|314384|314385|314386|314387|314388|314391|314392|314398|314399|314400|314402|314407|314409|314410|314411|314412|314413|314415|314417|314423|314424|314425|314426|609694|609698|711527|723086|723087|736649|736650|736654|751140|751148|751154|751155|766806|799547|799548|899535|899536|899537|899538|899539|899540|899541|899542|899543|899544|899545|899546|899547|899548|899549|899550|899551|899552|899553|899554|899555|899556|899557|899559|899560|899562|899563|899564|899566|899567|899568|899569|899570|899571|899572|899573|899574|899575|899576|899577|899578|899579|899580|899581|899582|899583|899584|899585|899586|899587|899588|899590|899591|899592|899593|899594|899595|899597|899600|899601|899602|899603|899604|899605|899606|900493|900494|900495|900496|900497|900498|900499", "text": "Spherocytosis" }, { - "baseId": "237327|268471|776419", + "upstreamId": "237327|268471|776419", "text": "Glutaric acidemia type 2A" }, { - "baseId": "237378", + "upstreamId": "237378", "text": "Mitochondrial-DNA disorder" }, { - "baseId": "237520|354280", + "upstreamId": "237520|354280", "text": "Atrial septal defect 1" }, { - "baseId": "237522|362622|362623|362624|407131|407132|481277|481278|495323|511710|513425|536188|613829|677426|788816|815987|919104|920587|920588|961284|964833", + "upstreamId": "237522|362622|362623|362624|407131|407132|481277|481278|495323|511710|513425|536188|613829|677426|788816|815987|919104|920587|920588|961284|964833", "text": "Congenital heart defects, dysmorphic facial features, and intellectual developmental disorder" }, { - "baseId": "237539", + "upstreamId": "237539", "text": "ARRHYTHMOGENIC RIGHT VENTRICULAR DYSPLASIA, FAMILIAL, 11, WITH OR WITHOUT MILD PALMOPLANTAR KERATODERMA" }, { - "baseId": "237573|237574|237575|237576|237577|237578|237579|237580|237581|259766|259766|431536|432459|440803|511499|513174|576106|609019|918832|920194|965886|966847|976008", + "upstreamId": "237573|237574|237575|237576|237577|237578|237579|237580|237581|259766|259766|431536|432459|440803|511499|513174|576106|609019|918832|920194|965886|966847|976008", "text": "Gillespie syndrome" }, { - "baseId": "237603|237628|802084", + "upstreamId": "237603|237628|802084", "text": "Deafness, autosomal dominant 51" }, { - "baseId": "237711|237712|237713|237714|237715|237716|237717|237718|237719|237720|237721|237722|237723|237724|237725|237726|237727|237728|237729|237730|237731|237732|237733|237734|237735|237736|237737|237738|237739|237740|237741|237742|237743|237744|237745|237746|237747|237748|237749", + "upstreamId": "237711|237712|237713|237714|237715|237716|237717|237718|237719|237720|237721|237722|237723|237724|237725|237726|237727|237728|237729|237730|237731|237732|237733|237734|237735|237736|237737|237738|237739|237740|237741|237742|237743|237744|237745|237746|237747|237748|237749", "text": "Prednisolone response" }, { - "baseId": "237756|237757|513467|552203|581856|581857|581858|581862|791748", + "upstreamId": "237756|237757|513467|552203|581856|581857|581858|581862|791748", "text": "Congenital hypomyelinating neuropathy 3" }, { - "baseId": "237763|237764|247578|247579", + "upstreamId": "237763|237764|247578|247579", "text": "Mitochondrial complex 1 deficiency, nuclear type 29" }, { - "baseId": "237793|237794|237795|237796|237797|409448|424493", + "upstreamId": "237793|237794|237795|237796|237797|409448|424493", "text": "You-Hoover-Fong syndrome" }, { - "baseId": "237802|237803|237804|237805|431541|792590|904108|919991|962144", + "upstreamId": "237802|237803|237804|237805|431541|792590|904108|919991|962144", "text": "Immunodeficiency 47" }, { - "baseId": "237816|371356|614013|614014|614016|614018|614019|614049|614050|614137|654159", + "upstreamId": "237816|371356|614013|614014|614016|614018|614019|614049|614050|614137|654159", "text": "Chromosome 15q11-q13 duplication syndrome" }, { - "baseId": "237854", + "upstreamId": "237854", "text": "KCNT2-related condition" }, { - "baseId": "237854|683210|683211|789896|794511|975909", + "upstreamId": "237854|683210|683211|789896|794511|975909", "text": "Developmental and epileptic encephalopathy, 57" }, { - "baseId": "238102|238103|238104", + "upstreamId": "238102|238103|238104", "text": "Monosomy 21" }, { - "baseId": "238265|359237|391124|391125|391129|391165|391168|391184|391213|391218|391222|391300|391301|391308|405137|439845|439846|439847|439848|439849|439850|439851|439852|439853|439854|439855|439857|439858|439859|439860|439861|515740|515744|515745|515749|515780|515782|515785|515786|515793|515794|515800|515820|515823|515833|515839|515849|515851|515871|556502|556942|556944|556946|556948|556991|556997|556998|557232|557234|558457|558459|558461|558465|578806|627690|627691|627692|627693|627694|627695|627696|627697|627698|627699|627700|627701|627702|627703|650581|650590|650731|683317|683318|685093|685094|685684|685687|685689|685691|685692|685695|689653|690571|696631|746371|746372|761826|778817|780642|780643|821839|821840|821841|823824|823825|823826|823827|823828|823829|823830|823831|823832|823833|921963|921964|921965|921966|921967|921968|930436|930437|930438|930439|940629|941894|941895|941896|941897|952371|952372|952373|952374", + "upstreamId": "238265|359237|391124|391125|391129|391165|391168|391184|391213|391218|391222|391300|391301|391308|405137|439845|439846|439847|439848|439849|439850|439851|439852|439853|439854|439855|439857|439858|439859|439860|439861|515740|515744|515745|515749|515780|515782|515785|515786|515793|515794|515800|515820|515823|515833|515839|515849|515851|515871|556502|556942|556944|556946|556948|556991|556997|556998|557232|557234|558457|558459|558461|558465|578806|627690|627691|627692|627693|627694|627695|627696|627697|627698|627699|627700|627701|627702|627703|650581|650590|650731|683317|683318|685093|685094|685684|685687|685689|685691|685692|685695|689653|690571|696631|746371|746372|761826|778817|780642|780643|821839|821840|821841|823824|823825|823826|823827|823828|823829|823830|823831|823832|823833|921963|921964|921965|921966|921967|921968|930436|930437|930438|930439|940629|941894|941895|941896|941897|952371|952372|952373|952374", "text": "heterogeneous nuclear ribonucleoprotein G, human" }, { - "baseId": "238719", + "upstreamId": "238719", "text": "Low grade fibromyxoid sarcoma" }, { - "baseId": "239061|292174|353611", + "upstreamId": "239061|292174|353611", "text": "Hypocalcemia" }, { - "baseId": "239296|537417", + "upstreamId": "239296|537417", "text": "CRELD1-related condition" }, { - "baseId": "239498|434459", + "upstreamId": "239498|434459", "text": "Regorafenib response" }, { - "baseId": "239674", + "upstreamId": "239674", "text": "TERT-associated disorder" }, { - "baseId": "240451|311450|392291|414094|414095|414141|414142|414180|414278|538468|539168|539169|539170|539171|539172|539173|539174|539175|539176|539177|539178|539179|539180|539181|539413", + "upstreamId": "240451|311450|392291|414094|414095|414141|414142|414180|414278|538468|539168|539169|539170|539171|539172|539173|539174|539175|539176|539177|539178|539179|539180|539181|539413", "text": "Pulmonary arterial hypertension associated with congenital heart disease" }, { - "baseId": "240683|654531|672222|672223|672224|672225|672226|672227|672228|672239|672240|672255|672256|672311|672312|672313|672317", + "upstreamId": "240683|654531|672222|672223|672224|672225|672226|672227|672228|672239|672240|672255|672256|672311|672312|672313|672317", "text": "Congenital hydrocephalus" }, { - "baseId": "240900|454614|462979", + "upstreamId": "240900|454614|462979", "text": "Anomalous origin of coronary artery from the pulmonary artery" }, { - "baseId": "240900|260878|454614|462979|590054", + "upstreamId": "240900|260878|454614|462979|590054", "text": "Cough" }, { - "baseId": "241527|398855|461811|571612|610483|970956", + "upstreamId": "241527|398855|461811|571612|610483|970956", "text": "Intrauterine growth retardation, metaphyseal dysplasia, adrenal hypoplasia congenita, genital anomalies, and immunodeficiency" }, { - "baseId": "241578", + "upstreamId": "241578", "text": "Ataxia, spastic, 1, autosomal dominant" }, { - "baseId": "241599|373488|399258|608923|608924|608925|608926|608927|608929|614671|614672|614673|614674|614675|614676|614677", + "upstreamId": "241599|373488|399258|608923|608924|608925|608926|608927|608929|614671|614672|614673|614674|614675|614676|614677", "text": "Otitis media" }, { - "baseId": "242569|401431|422134|445685|467249|467261", + "upstreamId": "242569|401431|422134|445685|467249|467261", "text": "Skin/hair/eye pigmentation, variation in, 2" }, { - "baseId": "243321", + "upstreamId": "243321", "text": "Autosomal dominant familial acute myeloid leukemia" }, { - "baseId": "243381", + "upstreamId": "243381", "text": "TRPM4-Related Disorders" }, { - "baseId": "243654", + "upstreamId": "243654", "text": "Schwannoma" }, { - "baseId": "243654", + "upstreamId": "243654", "text": "Peripheral Schwannoma" }, { - "baseId": "243827", + "upstreamId": "243827", "text": "Cerebral palsy, spastic quadriplegic, 3" }, { - "baseId": "243871|243874|243876|243879|513521|551282|578396|623252|654146|679243|679246|790143|790144|798490|798491|816442|858588|964010|970730|973099|973100", + "upstreamId": "243871|243874|243876|243879|513521|551282|578396|623252|654146|679243|679246|790143|790144|798490|798491|816442|858588|964010|970730|973099|973100", "text": "Neurodevelopmental disorder with hypotonia, seizures, and absent language" }, { - "baseId": "243891|243892|243894|613609|679951", + "upstreamId": "243891|243892|243894|613609|679951", "text": "Nonsyndromic cleft lip with or without cleft palate" }, { - "baseId": "243919|243920|440047|440048|679720|802244|804848|919123|962162|964108|970868", + "upstreamId": "243919|243920|440047|440048|679720|802244|804848|919123|962162|964108|970868", "text": "Ataxia-pancytopenia syndrome" }, { - "baseId": "243919|440047|976561|976562", + "upstreamId": "243919|440047|976561|976562", "text": "Monosomy 7 of bone marrow" }, { - "baseId": "243981|243982|243983|961058|961059|961060|961061", + "upstreamId": "243981|243982|243983|961058|961059|961060|961061", "text": "Neurodevelopmental disorder with seizures, hypotonia, and brain imaging abnormalities" }, { - "baseId": "243985", + "upstreamId": "243985", "text": "Laryngeal hypoplasia" }, { - "baseId": "243993", + "upstreamId": "243993", "text": "Cerebellar cortical atrophy" }, { - "baseId": "244016|679678", + "upstreamId": "244016|679678", "text": "Renal hypoplasia (disease)" }, { - "baseId": "244018|360846|971562", + "upstreamId": "244018|360846|971562", "text": "Language impairment" }, { - "baseId": "244020", + "upstreamId": "244020", "text": "Effort-induced polymorphic ventricular tachycardias" }, { - "baseId": "244026|244027|244028|244029|244030|440224|440225|440226", + "upstreamId": "244026|244027|244028|244029|244030|440224|440225|440226", "text": "Hypermanganesemia with dystonia 2" }, { - "baseId": "244031|818308|971001", + "upstreamId": "244031|818308|971001", "text": "Lethal congenital contracture syndrome 10" }, { - "baseId": "244032", + "upstreamId": "244032", "text": "Arthrogryposis, perthes disease, and upward gaze palsy" }, { - "baseId": "244034|244035|905050", + "upstreamId": "244034|244035|905050", "text": "Retinitis pigmentosa 75" }, { - "baseId": "244036", + "upstreamId": "244036", "text": "Autosomal Recessive Hypotrichosis with Woolly Hair" }, { - "baseId": "244066|244067|244068", + "upstreamId": "244066|244067|244068", "text": "Night blindness, congenital stationary, type 1h" }, { - "baseId": "244070|244082", + "upstreamId": "244070|244082", "text": "Nevus comedonicus" }, { - "baseId": "244071|858395|904201", + "upstreamId": "244071|858395|904201", "text": "Retinal dystrophy with leukodystrophy" }, { - "baseId": "244075|244076|244077|977391|977392", + "upstreamId": "244075|244076|244077|977391|977392", "text": "Pyle metaphyseal dysplasia" }, { - "baseId": "244104", + "upstreamId": "244104", "text": "Mental retardation, autosomal recessive 54" }, { - "baseId": "244107|244108|622422|971621|971622", + "upstreamId": "244107|244108|622422|971621|971622", "text": "Myopathy, distal, 5" }, { - "baseId": "244130|244131|244132", + "upstreamId": "244130|244131|244132", "text": "Patent ductus arteriosus 3" }, { - "baseId": "244144|614081", + "upstreamId": "244144|614081", "text": "Specific language impairment 5" }, { - "baseId": "244158|590743|590744", + "upstreamId": "244158|590743|590744", "text": "PMP2-related Charcot-Marie-Tooth disease type 1" }, { - "baseId": "244173|244174", + "upstreamId": "244173|244174", "text": "X-linked spondyloepimetaphyseal dysplasia" }, { - "baseId": "244179", + "upstreamId": "244179", "text": "Dystonia, intellectual disability and language impairment" }, { - "baseId": "244523|305882|309947|315140|315160|315209|315217|315221|315300", + "upstreamId": "244523|305882|309947|315140|315160|315209|315217|315221|315300", "text": "Charcot-Marie-Tooth with Vocal Cord Paresis" }, { - "baseId": "244873|841022|961527|961528|977267", + "upstreamId": "244873|841022|961527|961528|977267", "text": "DYNC1H1-related neurodevelopmental disorders" }, { - "baseId": "245163|263366|800976|920542", + "upstreamId": "245163|263366|800976|920542", "text": "Neutropenia" }, { - "baseId": "246859|535693", + "upstreamId": "246859|535693", "text": "Diarrhea 9" }, { - "baseId": "246941", + "upstreamId": "246941", "text": "TBL1XR1-related neurodevelopmental disorders, including Pierpont syndrome" }, { - "baseId": "246962", + "upstreamId": "246962", "text": "Pseudohypoaldosteronism" }, { - "baseId": "246979|263334|394904|394905|431889|520947|521375|551742|551749|633665|683726|792587|963088", + "upstreamId": "246979|263334|394904|394905|431889|520947|521375|551742|551749|633665|683726|792587|963088", "text": "Hypoplastic left heart syndrome" }, { - "baseId": "247012|961777|961778", + "upstreamId": "247012|961777|961778", "text": "Saccharopinuria" }, { - "baseId": "247055|263254|263285|263783|550227|553415|969759", + "upstreamId": "247055|263254|263285|263783|550227|553415|969759", "text": "Robin sequence" }, { - "baseId": "247084", + "upstreamId": "247084", "text": "CEP290-related ciliopathies" }, { - "baseId": "247168|424691|424692|424693|424694|431511|624868|626276|626405|791938|903636|919871|919872|919873|919874|919875|919876|920410|961544|971136|971137|971138", + "upstreamId": "247168|424691|424692|424693|424694|431511|624868|626276|626405|791938|903636|919871|919872|919873|919874|919875|919876|920410|961544|971136|971137|971138", "text": "Intellectual disability, autosomal dominant 45" }, { - "baseId": "247170|359090|359091", + "upstreamId": "247170|359090|359091", "text": "Dehydrated hereditary stomatocytosis 2" }, { - "baseId": "247173", + "upstreamId": "247173", "text": "Inflammatory bowel disease 30" }, { - "baseId": "247328|247329|247330|247331|247332|260464|260465|260466|410844|434679|446312|538493|609241|609242|609243|609244|609245|609246|609247|609248|609249|609250|619906|622475|792006|815961|857694|861659|919933|961643|964545|975941|980395", + "upstreamId": "247328|247329|247330|247331|247332|260464|260465|260466|410844|434679|446312|538493|609241|609242|609243|609244|609245|609246|609247|609248|609249|609250|619906|622475|792006|815961|857694|861659|919933|961643|964545|975941|980395", "text": "ZTTK syndrome" }, { - "baseId": "247359", + "upstreamId": "247359", "text": "Acute hepatic failure" }, { - "baseId": "247359|971088", + "upstreamId": "247359|971088", "text": "Mitochondrial DNA depletion syndrome 16 (hepatic type)" }, { - "baseId": "247400|247401", + "upstreamId": "247400|247401", "text": "Ossifying fibroma of the jaw" }, { - "baseId": "247420|247421|247422", + "upstreamId": "247420|247421|247422", "text": "Vas deferens, congenital bilateral aplasia of, X-linked" }, { - "baseId": "247424|247428", + "upstreamId": "247424|247428", "text": "Retinal dystrophy with or without extraocular anomalies" }, { - "baseId": "247426|247427", + "upstreamId": "247426|247427", "text": "RETINAL DYSTROPHY WITH EXTRAOCULAR ANOMALIES" }, { - "baseId": "247432", + "upstreamId": "247432", "text": "Blood group antigen abnormality" }, { - "baseId": "247437|469318|470285|470288|533432|533513|533992|571140|573458|573462|648566|648567|648568|694988|706478|778566|788297|791967|805111|848195|848196|929138|929139|938902|938903|950976|960309|974505", + "upstreamId": "247437|469318|470285|470288|533432|533513|533992|571140|573458|573462|648566|648567|648568|694988|706478|778566|788297|791967|805111|848195|848196|929138|929139|938902|938903|950976|960309|974505", "text": "Myasthenic syndrome, congenital, 18" }, { - "baseId": "247440|247619", + "upstreamId": "247440|247619", "text": "Silver-russell syndrome 4" }, { - "baseId": "247441|247442|905833|905836", + "upstreamId": "247441|247442|905833|905836", "text": "Silver-Russell syndrome 5" }, { - "baseId": "247450|247451|626248", + "upstreamId": "247450|247451|626248", "text": "Porokeratosis 7, multiple types" }, { - "baseId": "247452|247453", + "upstreamId": "247452|247453", "text": "Porokeratosis of Mibelli" }, { - "baseId": "247468|247469|622518", + "upstreamId": "247468|247469|622518", "text": "Tooth agenesis, selective, 8" }, { - "baseId": "247470|249563|249564|447309|447314|447319|447321|447433|447435|447436|447438|447526|447534|447535|447536|447537|447546|447550|513406|515319|515320|515341|515381|515390|515397|556494|556702|556704|556706|556708|556751|556753|556755|556757|557062|557064|627130|627131|627132|627133|627134|627135|627136|627137|627138|627139|627140|627141|627142|627143|650652|650654|650660|650670|650696|690426|690427|696297|706901|745860|745861|780384|792713|823022|823023|823024|823025|823026|823027|823028|823029|823030|823031|823032|823033|823034|823035|823036|823037|823038|823039|823040|850744|851243|921758|921759|921760|921761|921762|921763|930176|930177|939782|940610|940611|941584|941585|941586|941587|941588|941589|941590|941591|952151|952152|952153|952154|952155|952156|952157|960413", + "upstreamId": "247470|249563|249564|447309|447314|447319|447321|447433|447435|447436|447438|447526|447534|447535|447536|447537|447546|447550|513406|515319|515320|515341|515381|515390|515397|556494|556702|556704|556706|556708|556751|556753|556755|556757|557062|557064|627130|627131|627132|627133|627134|627135|627136|627137|627138|627139|627140|627141|627142|627143|650652|650654|650660|650670|650696|690426|690427|696297|706901|745860|745861|780384|792713|823022|823023|823024|823025|823026|823027|823028|823029|823030|823031|823032|823033|823034|823035|823036|823037|823038|823039|823040|850744|851243|921758|921759|921760|921761|921762|921763|930176|930177|939782|940610|940611|941584|941585|941586|941587|941588|941589|941590|941591|952151|952152|952153|952154|952155|952156|952157|960413", "text": "Muscular dystrophy, limb-girdle, type 2y" }, { - "baseId": "247472", + "upstreamId": "247472", "text": "Mauriac syndrome" }, { - "baseId": "247473|247474", + "upstreamId": "247473|247474", "text": "MITOCHONDRIAL DNA DEPLETION SYNDROME 3" }, { - "baseId": "247481|247482|247483|247484|247485|424624|550857|551435|791485|919597", + "upstreamId": "247481|247482|247483|247484|247485|424624|550857|551435|791485|919597", "text": "Witteveen-kolk syndrome" }, { - "baseId": "247491|247492|247493|247494|247495|247496|247497|353885|443697|511569|535302|611387|623282|626148|654149|798552|818628|818630|861565|861621|964025|964239|964240|964241|964242|964659|964920|967267|969562|970799|977209|977210|977211|977212", + "upstreamId": "247491|247492|247493|247494|247495|247496|247497|353885|443697|511569|535302|611387|623282|626148|654149|798552|818628|818630|861565|861621|964025|964239|964240|964241|964242|964659|964920|967267|969562|970799|977209|977210|977211|977212", "text": "Mental retardation, autosomal dominant 44" }, { - "baseId": "247497|443697|818626|818627|918924|918928|966336|966337", + "upstreamId": "247497|443697|818626|818627|918924|918928|966336|966337", "text": "Intellectual developmental disorder, autosomal dominant 63, with macrocephaly" }, { - "baseId": "247503", + "upstreamId": "247503", "text": "ECTODERMAL DYSPLASIA 11B, HYPOHIDROTIC/HAIR/TOOTH TYPE, AUTOSOMAL DOMINANT" }, { - "baseId": "247505|247506", + "upstreamId": "247505|247506", "text": "Parkinson disease 19b, early-onset" }, { - "baseId": "247507", + "upstreamId": "247507", "text": "Epileptic encephalopathy, early infantile, 40" }, { - "baseId": "247508|247509|247510|247511|247512|247513|247514|247515|247516|609335|609336|609337|611347|623232", + "upstreamId": "247508|247509|247510|247511|247512|247513|247514|247515|247516|609335|609336|609337|611347|623232", "text": "Meier-gorlin syndrome 7" }, { - "baseId": "247517|361251|470897|471921|471923|472171|472172|472173|534897|534901|534902|534932|572554|574819|574821|575438|650141|650142|653814|694912|850209|939657|959330", + "upstreamId": "247517|361251|470897|471921|471923|472171|472172|472173|534897|534901|534902|534932|572554|574819|574821|575438|650141|650142|653814|694912|850209|939657|959330", "text": "Wilson-Turner X-linked mental retardation syndrome" }, { - "baseId": "247529|965289", + "upstreamId": "247529|965289", "text": "Muscular dystrophy, congenital, davignon-chauveau type" }, { - "baseId": "247530|247531|247532|247533|247534|458427|458428|458434|458441|458445|458447|458452|458899|458902|458906|458940|458950|458951|459422|459431|524371|524372|524378|524641|562847|563569|563574|565588|568320|568565|568567|568574|568577|637790|637791|677157|692598|820078|835580|835581|835582|835583|904228|925410|925411|934575|934576|946398|946399", + "upstreamId": "247530|247531|247532|247533|247534|458427|458428|458434|458441|458445|458447|458452|458899|458902|458906|458940|458950|458951|459422|459431|524371|524372|524378|524641|562847|563569|563574|565588|568320|568565|568567|568574|568577|637790|637791|677157|692598|820078|835580|835581|835582|835583|904228|925410|925411|934575|934576|946398|946399", "text": "Neuropathy, hereditary sensory and autonomic, type VIII" }, { - "baseId": "247538|247539", + "upstreamId": "247538|247539", "text": "Cardiomyopathy, familial restrictive, 5" }, { - "baseId": "247538", + "upstreamId": "247538", "text": "FLNC-Related Disorders" }, { - "baseId": "247540|247543|247544|247545|485919", + "upstreamId": "247540|247543|247544|247545|485919", "text": "POLYCYSTIC KIDNEY DISEASE 3 WITH POLYCYSTIC LIVER DISEASE" }, { - "baseId": "247542", + "upstreamId": "247542", "text": "POLYCYSTIC KIDNEY DISEASE 3 WITHOUT POLYCYSTIC LIVER DISEASE" }, { - "baseId": "247552|247553|247554|247555|626013", + "upstreamId": "247552|247553|247554|247555|626013", "text": "Striatonigral degeneration, childhood-onset" }, { - "baseId": "247556", + "upstreamId": "247556", "text": "Hermansky-Pudlak syndrome 10" }, { - "baseId": "247557|260444|260445|260945|434657|434658|918497", + "upstreamId": "247557|260444|260445|260945|434657|434658|918497", "text": "Infantile encephalopathy" }, { - "baseId": "247558|247559", + "upstreamId": "247558|247559", "text": "Hyperuricemic nephropathy, familial juvenile, 4" }, { - "baseId": "247561", + "upstreamId": "247561", "text": "PEHO-like syndrome" }, { - "baseId": "247562|480538|480539|626055", + "upstreamId": "247562|480538|480539|626055", "text": "MICROPHTHALMIA, SYNDROMIC 15" }, { - "baseId": "247563|247564|247565|511728|550604|578464|622382|789153|969606|973626|980558", + "upstreamId": "247563|247564|247565|511728|550604|578464|622382|789153|969606|973626|980558", "text": "Mirage syndrome" }, { - "baseId": "247576", + "upstreamId": "247576", "text": "Camptosynpolydactyly, complex" }, { - "baseId": "247581|610633|621029|621030|679775|919332|919333|919334", + "upstreamId": "247581|610633|621029|621030|679775|919332|919333|919334", "text": "Mental retardation, autosomal recessive 55" }, { - "baseId": "247586", + "upstreamId": "247586", "text": "Nasopalpebral lipoma-coloboma syndrome" }, { - "baseId": "247591", + "upstreamId": "247591", "text": "Nasopharyngeal carcinoma, susceptibility to, 3" }, { - "baseId": "247611|414917|496338|537440|795353|795355|918808|918809", + "upstreamId": "247611|414917|496338|537440|795353|795355|918808|918809", "text": "Spinocerebellar ataxia 43" }, { - "baseId": "247614|521968|563348|565353|565356|634520|634521|699279|710143|721689|735386|790576|831470|933146|933147|954332", + "upstreamId": "247614|521968|563348|565353|565356|634520|634521|699279|710143|721689|735386|790576|831470|933146|933147|954332", "text": "Congenital disorder of glycosylation, type Iaa" }, { - "baseId": "247614|480768|480769|480770|798567", + "upstreamId": "247614|480768|480769|480770|798567", "text": "Intellectual disability, autosomal dominant 55, with seizures" }, { - "baseId": "247643", + "upstreamId": "247643", "text": "Acute myeloid leukemia, M6 type" }, { - "baseId": "247749|247750|247751|971553|971554|971555", + "upstreamId": "247749|247750|247751|971553|971554|971555", "text": "Short-rib thoracic dysplasia 16 with or without polydactyly" }, { - "baseId": "247758|247759", + "upstreamId": "247758|247759", "text": "Pituitary adenoma, familial isolated" }, { - "baseId": "247765|247766|247767|247768|247769|247770|550232|550233|626190|816365|816366", + "upstreamId": "247765|247766|247767|247768|247769|247770|550232|550233|626190|816365|816366", "text": "Growth retardation, intellectual developmental disorder, hypotonia, and hepatopathy" }, { - "baseId": "247776|247777|576147|679721", + "upstreamId": "247776|247777|576147|679721", "text": "Ciliary dyskinesia, primary, 34" }, { - "baseId": "248477|248477|415438", + "upstreamId": "248477|248477|415438", "text": "Language delay and attention deficit-hyperactivity disorder/cognitive impairment with or without cardiac arrhythmia" }, { - "baseId": "248477|248477|263624|263625|263626|263627|263628|415438|445389", + "upstreamId": "248477|248477|263624|263625|263626|263627|263628|415438|445389", "text": "Intellectual developmental disorder with cardiac arrhythmia" }, { - "baseId": "248544|248545|248546|248547|248548|248549|248550|248551|248552|248553|248554|248555|248556|248557|248558|248559|248560|248561|248562|248563|248564|248565|248566|248567|248568|248569|262525", + "upstreamId": "248544|248545|248546|248547|248548|248549|248550|248551|248552|248553|248554|248555|248556|248557|248558|248559|248560|248561|248562|248563|248564|248565|248566|248567|248568|248569|262525", "text": "Oromandibular-limb hypogenesis spectrum" }, { - "baseId": "248553|248554|270213|270215|298428|298429|298436|298438|298439|298443|298444|300763|300767|300769|300773|300774|300780|305145|305148|305152|305154|305156|305269|305270|305273|305275|305287|305294|305296|305299|305300|428475|735294|735298|749704|801814|895033|895034|895035|895036|895037|895038|895039|895040|895041|895042|895043|895044|895045|895046|895047|895048|895049|895050|895051|895052|895053|895054|895055|895056|895057|895058|895059|895060|895061|895062|895063|895064", + "upstreamId": "248553|248554|270213|270215|298428|298429|298436|298438|298439|298443|298444|300763|300767|300769|300773|300774|300780|305145|305148|305152|305154|305156|305269|305270|305273|305275|305287|305294|305296|305299|305300|428475|735294|735298|749704|801814|895033|895034|895035|895036|895037|895038|895039|895040|895041|895042|895043|895044|895045|895046|895047|895048|895049|895050|895051|895052|895053|895054|895055|895056|895057|895058|895059|895060|895061|895062|895063|895064", "text": "Obesity due to SIM1 deficiency" }, { - "baseId": "248575|248576|248577", + "upstreamId": "248575|248576|248577", "text": "Autoinflammation, panniculitis, and dermatosis syndrome" }, { - "baseId": "248578|248579|788910|857600", + "upstreamId": "248578|248579|788910|857600", "text": "Ciliary dyskinesia, primary, 35" }, { - "baseId": "248617|248618|248619|248620|248621|248622", + "upstreamId": "248617|248618|248619|248620|248621|248622", "text": "Senior-Loken syndrome 9" }, { - "baseId": "248662", + "upstreamId": "248662", "text": "Macular dystrophy, patterned, 3" }, { - "baseId": "248690|248691", + "upstreamId": "248690|248691", "text": "Myopathy, myofibrillar, 7" }, { - "baseId": "248706|248707|248708|612334|982222", + "upstreamId": "248706|248707|248708|612334|982222", "text": "Vascular malformation, primary intraosseous" }, { - "baseId": "248713|248714|248715", + "upstreamId": "248713|248714|248715", "text": "Peeling skin syndrome 5" }, { - "baseId": "248723|411366|550378", + "upstreamId": "248723|411366|550378", "text": "CASK-Related Disorder" }, { - "baseId": "248784|248785|248786|538630", + "upstreamId": "248784|248785|248786|538630", "text": "Band heterotopia" }, { - "baseId": "248794|248795|248796|248797|409196|529066|550368|568640|802005|858354|920341|961321|961641|964419|971009|971010|972728", + "upstreamId": "248794|248795|248796|248797|409196|529066|550368|568640|802005|858354|920341|961321|961641|964419|971009|971010|972728", "text": "Epileptic encephalopathy, early infantile, 43" }, { - "baseId": "248798|248799|432363|432364|919358|919359|967273", + "upstreamId": "248798|248799|432363|432364|919358|919359|967273", "text": "Epileptic encephalopathy, early infantile, 41" }, { - "baseId": "248809|425254|672077|826217|857359", + "upstreamId": "248809|425254|672077|826217|857359", "text": "Bardet-Biedl syndrome 20" }, { - "baseId": "248811|248812|903599", + "upstreamId": "248811|248812|903599", "text": "Mental retardation, autosomal recessive 56" }, { - "baseId": "248897|248898|248899|248900|248901|438868|464867|465037|465464|465473|465587|465595|465659|465694|465700|466147|466174|466194|466850|466951|466992|467019|467022|467033|467059|467314|495812|529278|529462|529545|529577|529764|529831|529833|530038|530040|530363|530380|530469|530481|530495|530698|530763|530793|530799|530819|530881|530919|530948|530950|530980|530991|567594|567597|568516|569461|569537|569833|569970|570587|570595|570596|570600|570653|570719|570723|570737|570738|573682|573684|573689|573712|574225|574242|625816|643758|643759|643805|643806|643822|643823|643824|643901|643902|643903|643906|643907|645083|645115|645120|645160|645188|645222|645223|645242|645243|645256|652451|652452|652914|652917|653216|703445|715209|726954|739930|740412|740538|744904|745023|754831|754846|778367|785086|791521|805857|820764|820889|820890|820916|820969|820970|820971|820972|820973|842946|842971|842972|842973|842974|842975|842976|842977|842983|842984|842985|842986|842987|842988|843068|843069|843088|843089|843090|843091|844438|844439|844440|844441|844473|844507|844530|844531|844580|844582|844596|844604|844605|844606|844639|844640|844641|844642|844643|844644|844645|844659|851645|851687|852085|852147|852612|852788|919682|927515|927516|927517|927556|927557|928003|928016|937177|937178|937213|937680|937686|937687|937696|937697|937705|937706|949121|949131|949135|949649|949672|949673|949674|949683|957592|957593|957612|957623|964441|964683|964684|967282|971060|971063", + "upstreamId": "248897|248898|248899|248900|248901|438868|464867|465037|465464|465473|465587|465595|465659|465694|465700|466147|466174|466194|466850|466951|466992|467019|467022|467033|467059|467314|495812|529278|529462|529545|529577|529764|529831|529833|530038|530040|530363|530380|530469|530481|530495|530698|530763|530793|530799|530819|530881|530919|530948|530950|530980|530991|567594|567597|568516|569461|569537|569833|569970|570587|570595|570596|570600|570653|570719|570723|570737|570738|573682|573684|573689|573712|574225|574242|625816|643758|643759|643805|643806|643822|643823|643824|643901|643902|643903|643906|643907|645083|645115|645120|645160|645188|645222|645223|645242|645243|645256|652451|652452|652914|652917|653216|703445|715209|726954|739930|740412|740538|744904|745023|754831|754846|778367|785086|791521|805857|820764|820889|820890|820916|820969|820970|820971|820972|820973|842946|842971|842972|842973|842974|842975|842976|842977|842983|842984|842985|842986|842987|842988|843068|843069|843088|843089|843090|843091|844438|844439|844440|844441|844473|844507|844530|844531|844580|844582|844596|844604|844605|844606|844639|844640|844641|844642|844643|844644|844645|844659|851645|851687|852085|852147|852612|852788|919682|927515|927516|927517|927556|927557|928003|928016|937177|937178|937213|937680|937686|937687|937696|937697|937705|937706|949121|949131|949135|949649|949672|949673|949674|949683|957592|957593|957612|957623|964441|964683|964684|967282|971060|971063", "text": "Epilepsy, familial focal, with variable foci 3" }, { - "baseId": "248902|248903|248904|248905|407707|538977|613611|679824|788835|788836|918846|974483|980936", + "upstreamId": "248902|248903|248904|248905|407707|538977|613611|679824|788835|788836|918846|974483|980936", "text": "Epilepsy, familial focal, with variable foci 2" }, { - "baseId": "249126", + "upstreamId": "249126", "text": "Familial breast and ovarian cancer" }, { - "baseId": "249186|249187|249188|249190|417069", + "upstreamId": "249186|249187|249188|249190|417069", "text": "Noonan syndrome-like disorder with loose anagen hair 2" }, { - "baseId": "249205|249206|816532|964598", + "upstreamId": "249205|249206|816532|964598", "text": "Mental retardation, X-linked 103" }, { - "baseId": "249209|249210", + "upstreamId": "249209|249210", "text": "Orofaciodigital syndrome XV" }, { - "baseId": "249216|550890", + "upstreamId": "249216|550890", "text": "Immunodeficiency 49" }, { - "baseId": "249258|249259|590541|590542|789138|903649|919973|964568|971176", + "upstreamId": "249258|249259|590541|590542|789138|903649|919973|964568|971176", "text": "Mental retardation, X-linked 104" }, { - "baseId": "249260|249261|920037", + "upstreamId": "249260|249261|920037", "text": "Mental retardation, X-linked 105" }, { - "baseId": "249426|535240|535242|535244|535245|535246|535252|535253|535254|535261|535267|535268", + "upstreamId": "249426|535240|535242|535244|535245|535246|535252|535253|535254|535261|535267|535268", "text": "Congenital hemolytic anemia" }, { - "baseId": "249498|249500|249502|249503|249504|249505|249506|249507|249508|249510|249511|249512|249513|249514|249515|249516|249517|249518|249520|249521|249522|249523|249524|249525|249526|277166|277168|277179|277180|277191|277192|277194|277195|277214|277219|277220|277221|277222|277225|277248|277249|277250|277252|277253|277254|277257|277260|277262|277263|277270|277272|277273|277294|277416|277422|277423|277427|277428|277435|277443|277444|277452|277454|277458|277459|277466|277467|277468|277471|277472|277474|277480|277482|277486|277489|277492|277494|277498|277504|277505|278219|278222|278240|278256|278260|278261|278262|278263|278264|278267|278268|278269|278270|278271|278278|278280|278281|278288|278289|278291|278295|278297|278298|278305|278307|278309|278310|278312|278316|278317|278318|278325|278328|278329|278330|278332|278334|278336|278338|278340|278341|278342|278343|278350|278351|278352|278360|278364|278373|278374|278383|313035|313037|313079|318938|318970|318974|319574|319585|557032|558220|558220|615287|706851|718365|718370|745824|777016|862698|862699|862700|862701|862702|862703|862704|862705|862706|862707|862708|862709|862710|862711|862712|862713|862714|862715|862716|862717|862718|862719|862720|862721|862722|862723|862724|862725|862726|862727|862728|862729|862730|862731|862732|862733|862734|862735|862736|862737|862738|862739|862740|862741|862742|862743|862744|862745|862746|862747|862748|862749|862750|862751|862752|862753|865026|865027|865028", + "upstreamId": "249498|249500|249502|249503|249504|249505|249506|249507|249508|249510|249511|249512|249513|249514|249515|249516|249517|249518|249520|249521|249522|249523|249524|249525|249526|277166|277168|277179|277180|277191|277192|277194|277195|277214|277219|277220|277221|277222|277225|277248|277249|277250|277252|277253|277254|277257|277260|277262|277263|277270|277272|277273|277294|277416|277422|277423|277427|277428|277435|277443|277444|277452|277454|277458|277459|277466|277467|277468|277471|277472|277474|277480|277482|277486|277489|277492|277494|277498|277504|277505|278219|278222|278240|278256|278260|278261|278262|278263|278264|278267|278268|278269|278270|278271|278278|278280|278281|278288|278289|278291|278295|278297|278298|278305|278307|278309|278310|278312|278316|278317|278318|278325|278328|278329|278330|278332|278334|278336|278338|278340|278341|278342|278343|278350|278351|278352|278360|278364|278373|278374|278383|313035|313037|313079|318938|318970|318974|319574|319585|557032|558220|558220|615287|706851|718365|718370|745824|777016|862698|862699|862700|862701|862702|862703|862704|862705|862706|862707|862708|862709|862710|862711|862712|862713|862714|862715|862716|862717|862718|862719|862720|862721|862722|862723|862724|862725|862726|862727|862728|862729|862730|862731|862732|862733|862734|862735|862736|862737|862738|862739|862740|862741|862742|862743|862744|862745|862746|862747|862748|862749|862750|862751|862752|862753|865026|865027|865028", "text": "Budd-Chiari syndrome" }, { - "baseId": "249812|249813|249814|249816|266292|279711|279718|279719|279721|279724|279731|279733|279734|279736|280000|280002|280004|280007|280021|280030|280048|280049|280051|280061|280062|280064|281321|281323|281327|281330|281331|281333|281339|281345|281348|281355|281519|281523|281524|281532|281534|281538|281540|281543|281545", + "upstreamId": "249812|249813|249814|249816|266292|279711|279718|279719|279721|279724|279731|279733|279734|279736|280000|280002|280004|280007|280021|280030|280048|280049|280051|280061|280062|280064|281321|281323|281327|281330|281331|281333|281339|281345|281348|281355|281519|281523|281524|281532|281534|281538|281540|281543|281545", "text": "Hypohidrotic Ectodermal Dysplasia, Recessive" }, { - "baseId": "250099|281712|282335|283733|283789|284026|284057|284058", + "upstreamId": "250099|281712|282335|283733|283789|284026|284057|284058", "text": "Acute Recurrent Myoglobinuria" }, { - "baseId": "250402|250667|282964|283798|285276|285284|285836|285922|285941|285949|288248|288264|288685|329042|339090|339125|345084|345085|345774|346414|346445", + "upstreamId": "250402|250667|282964|283798|285276|285284|285836|285922|285941|285949|288248|288264|288685|329042|339090|339125|345084|345085|345774|346414|346445", "text": "Congenital Myasthenic Syndrome, Dominant/Recessive" }, { - "baseId": "250588|360836|514140", + "upstreamId": "250588|360836|514140", "text": "Hyperkalemia" }, { - "baseId": "250588|360836|360995|361392|424227", + "upstreamId": "250588|360836|360995|361392|424227", "text": "Stage 5 chronic kidney disease" }, { - "baseId": "250889|289179|292183|292185|292312|493309|518854|518855|630875|630876|708516|708518|827448|827449|923026|931736|943297", + "upstreamId": "250889|289179|292183|292185|292312|493309|518854|518855|630875|630876|708516|708518|827448|827449|923026|931736|943297", "text": "Hereditary orotic aciduria, type 1" }, { - "baseId": "251071|293653|333868|333874|333881|333904|343813|343837|343840|343865|343874|343876|349091|349105|349121|349123|349125|349127|349135|349143|349165|350042|350077|350093|353496", + "upstreamId": "251071|293653|333868|333874|333881|333904|343813|343837|343840|343865|343874|343876|349091|349105|349121|349123|349125|349127|349135|349143|349165|350042|350077|350093|353496", "text": "Optic Atrophy, Dominant" }, { - "baseId": "251558|251559|263522|263523|263524|294065|294068|294075|295522|295523|295524|295526|295533|295534|295535|295539|295542|295543|295545|295546|299289|299290|299292|299293|299300|299307|299310|299321|299322|299323|299324|299325|299326|299327|299330|299331|299339|299340|299341|299347|299348|299350|299352|361021|497683|609037|620174|698618|698619|698620|721056|721057|721058|749048|858321|858322|858323|892105|892106|892107|892108|892109|892110|892111|892112|892113|892114|892115|892116|892117|892118|892119|892120|892121|892122|892123|892124|892125|892126|892127|892128|892129|892130|892131|892132|892133|892134|892135|892136|892137|892138|892139|892140|892141|892142|892143|892144|892145|892146|892147|892148|892149|892150|892151|892152|895991", + "upstreamId": "251558|251559|263522|263523|263524|294065|294068|294075|295522|295523|295524|295526|295533|295534|295535|295539|295542|295543|295545|295546|299289|299290|299292|299293|299300|299307|299310|299321|299322|299323|299324|299325|299326|299327|299330|299331|299339|299340|299341|299347|299348|299350|299352|361021|497683|609037|620174|698618|698619|698620|721056|721057|721058|749048|858321|858322|858323|892105|892106|892107|892108|892109|892110|892111|892112|892113|892114|892115|892116|892117|892118|892119|892120|892121|892122|892123|892124|892125|892126|892127|892128|892129|892130|892131|892132|892133|892134|892135|892136|892137|892138|892139|892140|892141|892142|892143|892144|892145|892146|892147|892148|892149|892150|892151|892152|895991", "text": "Amelogenesis imperfecta" }, { - "baseId": "252058|290768|295268|298774|298775|301236|301242|301266|305609|305612|422029", + "upstreamId": "252058|290768|295268|298774|298775|301236|301242|301266|305609|305612|422029", "text": "Metaphyseal chondrodysplasia" }, { - "baseId": "252382|252383|252384|252385|252386|252387|252392|252394|300444|300454|300455|300459|300460|300461|300470|300473|300474|300485|300489|300493|300500|300503|300504|300505|300510|303302|303309|303310|303319|303329|303331|303361|303362|303364|303369|307787|307805|307812|307819|307820|307826|307827|307842|307843|307874|307880|307893|307894|307901|307902|307910|307913|307973|307977|307982|307991|307996|307998|307999|308001|308029|308034|308035|308038|308050|513063|620234|623290|735697|818249|896533|896534|896535|896536|896537|896538|896539|896540|896541|896542|896543|896544|896545|896546|896547|896548|896549|896550|896551|896552|896553|896554|896555|896556|896557|896558|896559|896560|900237|900238|900239|900240|919035", + "upstreamId": "252382|252383|252384|252385|252386|252387|252392|252394|300444|300454|300455|300459|300460|300461|300470|300473|300474|300485|300489|300493|300500|300503|300504|300505|300510|303302|303309|303310|303319|303329|303331|303361|303362|303364|303369|307787|307805|307812|307819|307820|307826|307827|307842|307843|307874|307880|307893|307894|307901|307902|307910|307913|307973|307977|307982|307991|307996|307998|307999|308001|308029|308034|308035|308038|308050|513063|620234|623290|735697|818249|896533|896534|896535|896536|896537|896538|896539|896540|896541|896542|896543|896544|896545|896546|896547|896548|896549|896550|896551|896552|896553|896554|896555|896556|896557|896558|896559|896560|900237|900238|900239|900240|919035", "text": "Focal segmental glomerulosclerosis 3, susceptibility to" }, { - "baseId": "252960|252961|252964|252965|252966|303552|303557|303560|303561|303562|303566|303568|303570|306979|306988|306989|306996|306998|307003|307005|307010|307011|307013|307014|311871|311876|311877|311882|311883|311886|311887|311888|311891|311895|311896|311899|311904|311907|311910|311912|311913|311914|311917|311920|311926|311929|311930|311931|311942|311946|311949|311950|311954|311955|458038|722719|744375|766441|898468|898469|898470|898471|898472|898473|898474|898475|898476|898477|898478|898479|898480|898481|898482|898483|898484|898485|898486|898487|898488|898489|898490|898491|898492|898493|898494|898495|898496|900410|900411|900412", + "upstreamId": "252960|252961|252964|252965|252966|303552|303557|303560|303561|303562|303566|303568|303570|306979|306988|306989|306996|306998|307003|307005|307010|307011|307013|307014|311871|311876|311877|311882|311883|311886|311887|311888|311891|311895|311896|311899|311904|311907|311910|311912|311913|311914|311917|311920|311926|311929|311930|311931|311942|311946|311949|311950|311954|311955|458038|722719|744375|766441|898468|898469|898470|898471|898472|898473|898474|898475|898476|898477|898478|898479|898480|898481|898482|898483|898484|898485|898486|898487|898488|898489|898490|898491|898492|898493|898494|898495|898496|900410|900411|900412", "text": "Angiokeratoma corporis diffusum with arteriovenous fistulas" }, { - "baseId": "254136|274286|313856|313857|313862|313863|313867|313870|313872|313873|313874|313877|313886|313888|313889|320061|320062|320069|320071|320080|320084|320087|320088|320089|320100|320111|320112|320114|320134|320135|320138|320142|320143|320145|320146|320147|320163|320165|320166|320167|320174|320197|320198|320199|326222|326244|326245|326246|326248|326251|326252|326256|326257|326258|326270|326272|326273|326276|326277|327197|327203|327204|327206|327207|327214|327217|327218|327222|327223|327241|327242|327259|327263|327272|327273|327276|327282|327283", + "upstreamId": "254136|274286|313856|313857|313862|313863|313867|313870|313872|313873|313874|313877|313886|313888|313889|320061|320062|320069|320071|320080|320084|320087|320088|320089|320100|320111|320112|320114|320134|320135|320138|320142|320143|320145|320146|320147|320163|320165|320166|320167|320174|320197|320198|320199|326222|326244|326245|326246|326248|326251|326252|326256|326257|326258|326270|326272|326273|326276|326277|327197|327203|327204|327206|327207|327214|327217|327218|327222|327223|327241|327242|327259|327263|327272|327273|327276|327282|327283", "text": "Aniridia, Cerebellar Ataxia, And Intellectual Disability" }, { - "baseId": "254388|315724|315727|322754|322757|328843|330053|330071|330082", + "upstreamId": "254388|315724|315727|322754|322757|328843|330053|330071|330082", "text": "Mucolipidosis, Type III Alpha/Beta" }, { - "baseId": "254945|320553|320594|329361|337894|399643|400207|400211|445230|464041|464044|566413", + "upstreamId": "254945|320553|320594|329361|337894|399643|400207|400211|445230|464041|464044|566413", "text": "Premature ovarian failure 15" }, { - "baseId": "255299|255300|255301|255302|255303|255304|312054|312057|317720|322878|322883|322884|322886|322889|322895|322898|322902|322904|322909|322910|322915|322917|322920|322921|322924|322928|322932|322936|322937|322938|322942|323745|324453|332378|332391|332412|332420|332421|332426|332427|332429|332446|332447|332461|332464|332468|332471|332480|332485|332487|332515|332525|339375|339377|339378|339381|339383|339384|339396|339405|339419|339439|339443|339453|339460|339476|339479|340813|340831|340834|340836|340840|340841|340846|340857|340866|340876|340888|340892|340898", + "upstreamId": "255299|255300|255301|255302|255303|255304|312054|312057|317720|322878|322883|322884|322886|322889|322895|322898|322902|322904|322909|322910|322915|322917|322920|322921|322924|322928|322932|322936|322937|322938|322942|323745|324453|332378|332391|332412|332420|332421|332426|332427|332429|332446|332447|332461|332464|332468|332471|332480|332485|332487|332515|332525|339375|339377|339378|339381|339383|339384|339396|339405|339419|339439|339443|339453|339460|339476|339479|340813|340831|340834|340836|340840|340841|340846|340857|340866|340876|340888|340892|340898", "text": "Amelogenesis Imperfecta, Recessive" }, { - "baseId": "255412|265437|340066|348872|353333", + "upstreamId": "255412|265437|340066|348872|353333", "text": "Jarcho-Levin syndrome" }, { - "baseId": "255439", + "upstreamId": "255439", "text": "Arthrogryposis with renal dysfunction and cholestasis syndrome" }, { - "baseId": "255586|514055", + "upstreamId": "255586|514055", "text": "Hyperechogenic kidneys" }, { - "baseId": "255755|325092|325093|325427|325468|325469|334748|334755|334758|334760|335073|335105|335114|335115|339526|339530|341231|341233|341234|341235|341560|341563|342742|342743|342753|343056|343057|343061|352425|352943|434692", + "upstreamId": "255755|325092|325093|325427|325468|325469|334748|334755|334758|334760|335073|335105|335114|335115|339526|339530|341231|341233|341234|341235|341560|341563|342742|342743|342753|343056|343057|343061|352425|352943|434692", "text": "Glycogen phosphorylase kinase deficiency" }, { - "baseId": "256261|794298|794299|794300|794301|794302|794303|794304|794305|794306|794307|794308|794309|794310|794311|794312|794313|794314|794315", + "upstreamId": "256261|794298|794299|794300|794301|794302|794303|794304|794305|794306|794307|794308|794309|794310|794311|794312|794313|794314|794315", "text": "CIC-DUX Sarcoma" }, { - "baseId": "256424|257265|257269|257273|257281|257286|299244|299251|299270|299272|299276|301661|301676|301684|301685|301701|306124|306137|306152|306156|306330|306356|306359|306370|306380|315854|334731|344553|345990|349580|350588|353744|389650|460250|654600|790976|963276", + "upstreamId": "256424|257265|257269|257273|257281|257286|299244|299251|299270|299272|299276|301661|301676|301684|301685|301701|306124|306137|306152|306156|306330|306356|306359|306370|306380|315854|334731|344553|345990|349580|350588|353744|389650|460250|654600|790976|963276", "text": "Familial hemophagocytic lymphohistiocytosis" }, { - "baseId": "256566|260583|260584|260585|260586|262271|361807|361808|361809|430044|434540|438065|439065|482162|482163|513651|538472|538473|539077|620934|626319|788920|788921|791848|791849|903628|919786|919787|920387|920388|977285|977286|977287", + "upstreamId": "256566|260583|260584|260585|260586|262271|361807|361808|361809|430044|434540|438065|439065|482162|482163|513651|538472|538473|539077|620934|626319|788920|788921|791848|791849|903628|919786|919787|920387|920388|977285|977286|977287", "text": "Arthrogryposis, distal, with impaired proprioception and touch" }, { - "baseId": "257203", + "upstreamId": "257203", "text": "FAMILIAL COLD AUTOINFLAMMATORY SYNDROME 2, SUSCEPTIBILITY TO" }, { - "baseId": "257379|335926|335929|335932|335935|335939|335940|335941|335943|335948|335951|335960|335961|335967|335968|335980|335983|335987|335988|335992|336001|345625|345637|345656|345658|345660|345665|345671|345673|345678|345680|345692|345693|345695|345698|345699|345704|345705|345707|345712|345714|345716|345718|345724|345731|345732|345734|345742|345749|350177|350180|350182|350184|350186|350187|350190|350193|350194|350197|350200|350204|350207|350208|350210|350211|350212|350214|350215|350221|350223|350224|350228|350229|350231|351244|351246|351249|351250|351256|351259|351262|351263|351266|351267|351270|351272|351275|351276|351278|351281|351283|442305|470472|471454|471456|514902|533643|886346|886347|886348|886349|886350|886351|886352|886353|886354|886355|886356|886357|886358|886359|886360|886361|886362|886363|886364|886365|886366|886367|886368|886369|886370|886371|886372|886373|886374|886375|886376|886377|886378|886379|886380|886381|886382|886383|886384|886385|886386|886387|886388|886389|886390|886391|886392|886393|886394|886395|886396|886397|886398|886399|886400|886401|887477|887478", + "upstreamId": "257379|335926|335929|335932|335935|335939|335940|335941|335943|335948|335951|335960|335961|335967|335968|335980|335983|335987|335988|335992|336001|345625|345637|345656|345658|345660|345665|345671|345673|345678|345680|345692|345693|345695|345698|345699|345704|345705|345707|345712|345714|345716|345718|345724|345731|345732|345734|345742|345749|350177|350180|350182|350184|350186|350187|350190|350193|350194|350197|350200|350204|350207|350208|350210|350211|350212|350214|350215|350221|350223|350224|350228|350229|350231|351244|351246|351249|351250|351256|351259|351262|351263|351266|351267|351270|351272|351275|351276|351278|351281|351283|442305|470472|471454|471456|514902|533643|886346|886347|886348|886349|886350|886351|886352|886353|886354|886355|886356|886357|886358|886359|886360|886361|886362|886363|886364|886365|886366|886367|886368|886369|886370|886371|886372|886373|886374|886375|886376|886377|886378|886379|886380|886381|886382|886383|886384|886385|886386|886387|886388|886389|886390|886391|886392|886393|886394|886395|886396|886397|886398|886399|886400|886401|887477|887478", "text": "Adult proximal spinal muscular atrophy, autosomal dominant" }, { - "baseId": "257577|257578|257579|347213|347216|352238|352273", + "upstreamId": "257577|257578|257579|347213|347216|352238|352273", "text": "Congenital nuclear cataract" }, { - "baseId": "257609|337921|337925|337929|347557|347569|347578|347582|351456|351477|352476|352477|352486|353605", + "upstreamId": "257609|337921|337925|337929|347557|347569|347578|347582|351456|351477|352476|352477|352486|353605", "text": "Fundus dystrophy, pseudoinflammatory, recessive form" }, { - "baseId": "257715|622486", + "upstreamId": "257715|622486", "text": "Congenital Muscular Dystrophy, CHKB-related" }, { - "baseId": "257852|286718|287430|289863|353573", + "upstreamId": "257852|286718|287430|289863|353573", "text": "Ovarian dysgenesis" }, { - "baseId": "258009", + "upstreamId": "258009", "text": "TTN-Related disorder" }, { - "baseId": "259117|377393", + "upstreamId": "259117|377393", "text": "Glucocorticoid deficiency 5" }, { - "baseId": "259230|497729", + "upstreamId": "259230|497729", "text": "Multiple congenital anomalies-hypotonia-seizures syndrome" }, { - "baseId": "259237", + "upstreamId": "259237", "text": "VATER/VACTERL association with CNS malformations" }, { - "baseId": "259239|259240|259241|354282|918814", + "upstreamId": "259239|259240|259241|354282|918814", "text": "Epidermolysis bullosa simplex, generalized, with scarring and hair loss" }, { - "baseId": "259290|259291|259292|259293|789368|977224", + "upstreamId": "259290|259291|259292|259293|789368|977224", "text": "Frontometaphyseal dysplasia 2" }, { - "baseId": "259294|259295|259296|259297|672323|677291|917767|963206|980841", + "upstreamId": "259294|259295|259296|259297|672323|677291|917767|963206|980841", "text": "Cardiospondylocarpofacial syndrome" }, { - "baseId": "259325", + "upstreamId": "259325", "text": "Aniridia 3" }, { - "baseId": "259405|267315|268160|270798|373810|445468|513354|578521", + "upstreamId": "259405|267315|268160|270798|373810|445468|513354|578521", "text": "Macrocephaly with multiple epiphyseal dysplasia and distinctive facies" }, { - "baseId": "259624|364478|364483|389107|389108|416152|416153|583075|623226|623227|801571|802117|921033|966154", + "upstreamId": "259624|364478|364483|389107|389108|416152|416153|583075|623226|623227|801571|802117|921033|966154", "text": "Neurodevelopmental disorder with microcephaly, hypotonia, and variable brain anomalies" }, { - "baseId": "259696|514048|514112|514124|620168", + "upstreamId": "259696|514048|514112|514124|620168", "text": "Low-set ears" }, { - "baseId": "259696", + "upstreamId": "259696", "text": "Abnormality of the neck" }, { - "baseId": "259696", + "upstreamId": "259696", "text": "Dysphagia" }, { - "baseId": "259742|359062|359063|481555|578403|578404|788756|790288|920466|920467", + "upstreamId": "259742|359062|359063|481555|578403|578404|788756|790288|920466|920467", "text": "Spastic tetraplegia, thin corpus callosum, and progressive microcephaly" }, { - "baseId": "259744", + "upstreamId": "259744", "text": "DYSF- Related Disorder" }, { - "baseId": "259765", + "upstreamId": "259765", "text": "Abnormal lung growth, pulmonary hypertension, microcephaly, and spasticity" }, { - "baseId": "259807|264639", + "upstreamId": "259807|264639", "text": "neonatal seizures" }, { - "baseId": "259861|259864|428715|963326|963327|963328|963329|963330|963331|970522|970523", + "upstreamId": "259861|259864|428715|963326|963327|963328|963329|963330|963331|970522|970523", "text": "Hamartoma of hypothalamus" }, { - "baseId": "259934|536049|536050|964841", + "upstreamId": "259934|536049|536050|964841", "text": "Heterotaxy, visceral, 7, autosomal" }, { - "baseId": "260018|411544|411545|411546|411547|411548|411549|625867|917582|917583", + "upstreamId": "260018|411544|411545|411546|411547|411548|411549|625867|917582|917583", "text": "Spondylometaphyseal dysplasia - Sutcliffe type" }, { - "baseId": "260122|432443|432444|432445|967132|967134", + "upstreamId": "260122|432443|432444|432445|967132|967134", "text": "Blepharocheilodontic syndrome 1" }, { - "baseId": "260246", + "upstreamId": "260246", "text": "Hip flexor weakness" }, { - "baseId": "260246", + "upstreamId": "260246", "text": "Falls" }, { - "baseId": "260246|360912|360933|360934|360970|360971|514007|514152|794110", + "upstreamId": "260246|360912|360933|360934|360970|360971|514007|514152|794110", "text": "Difficulty walking" }, { - "baseId": "260246", + "upstreamId": "260246", "text": "Qualitative or quantitative defects of collagen 6" }, { - "baseId": "260246|271059|970382", + "upstreamId": "260246|271059|970382", "text": "Bethlem myopathy" }, { - "baseId": "260290|446548|623169|623180|963309|984012", + "upstreamId": "260290|446548|623169|623180|963309|984012", "text": "L1 syndrome" }, { - "baseId": "260377|260377|260378|260379|260380|260381|260381|260382|260383|260384|260385|260386|260387|481498|481675|513414|795332|961598|970755", + "upstreamId": "260377|260377|260378|260379|260380|260381|260381|260382|260383|260384|260385|260386|260387|481498|481675|513414|795332|961598|970755", "text": "Epileptic encephalopathy, early infantile, 44" }, { - "baseId": "260377|260381|260388|260389", + "upstreamId": "260377|260381|260388|260389", "text": "Spinocerebellar ataxia, autosomal recessive 24" }, { - "baseId": "260407|260407|260408|260408|260409|260410|260411|433926|442901|448453|448461|448524|448576|448587|448594|448660|448665|516236|516237|516239|516244|516249|516250|516252|516255|516256|516262|516268|516343|516348|516354|516356|540442|557416|557456|557458|557460|557462|557464|557466|557468|557470|557519|557521|557523|557525|558667|558669|558671|558673|558675|558677|558679|559170|559172|609441|650390|650391|650394|650395|650396|650397|650398|650400|650401|650402|650403|690688|690690|690691|690692|690693|690694|690695|690696|690697|690698|695065|695066|695067|719178|719179|732694|762136|778868|780802|819023|819024|819025|824615|824616|824617|824618|824619|824620|824621|824622|824623|824624|824625|824626|824627|824628|824629|922205|922206|922207|922208|922209|922210|930746|930747|930748|942177|942178|952600|952601|952602|952603", + "upstreamId": "260407|260407|260408|260408|260409|260410|260411|433926|442901|448453|448461|448524|448576|448587|448594|448660|448665|516236|516237|516239|516244|516249|516250|516252|516255|516256|516262|516268|516343|516348|516354|516356|540442|557416|557456|557458|557460|557462|557464|557466|557468|557470|557519|557521|557523|557525|558667|558669|558671|558673|558675|558677|558679|559170|559172|609441|650390|650391|650394|650395|650396|650397|650398|650400|650401|650402|650403|690688|690690|690691|690692|690693|690694|690695|690696|690697|690698|695065|695066|695067|719178|719179|732694|762136|778868|780802|819023|819024|819025|824615|824616|824617|824618|824619|824620|824621|824622|824623|824624|824625|824626|824627|824628|824629|922205|922206|922207|922208|922209|922210|930746|930747|930748|942177|942178|952600|952601|952602|952603", "text": "Myasthenic syndrome, congenital, 20, presynaptic" }, { - "baseId": "260444|260445|260945|262040|970866", + "upstreamId": "260444|260445|260945|262040|970866", "text": "Epileptic encephalopathy, early infantile, 51" }, { - "baseId": "260470|260471|260472|918950|964253|972717", + "upstreamId": "260470|260471|260472|918950|964253|972717", "text": "Neurodegeneration with ataxia, dystonia, and gaze palsy, childhood-onset" }, { - "baseId": "260473|260474|260475|260476|260477|260478|513471|513472|797629|860452|917584|917585|917586|917587|917588|917589|917590|917591|917592|917593|917594|917595|917596|917597|917598|917599|917600|917601|917602|917603|917604|917605|917606|917607|917608|917609|917610|917611|917612|917613|917614|917615|917616|917617|917618|917619|917620|961542|963084", + "upstreamId": "260473|260474|260475|260476|260477|260478|513471|513472|797629|860452|917584|917585|917586|917587|917588|917589|917590|917591|917592|917593|917594|917595|917596|917597|917598|917599|917600|917601|917602|917603|917604|917605|917606|917607|917608|917609|917610|917611|917612|917613|917614|917615|917616|917617|917618|917619|917620|961542|963084", "text": "Leukoencephalopathy, brain calcifications, and cysts" }, { - "baseId": "260479|260480|262084|262085|481369|792655", + "upstreamId": "260479|260480|262084|262085|481369|792655", "text": "MEHMO syndrome" }, { - "baseId": "260501|260502|260503|260504", + "upstreamId": "260501|260502|260503|260504", "text": "Meester-loeys syndrome" }, { - "baseId": "260515", + "upstreamId": "260515", "text": "Left ventricular noncompaction 2" }, { - "baseId": "260547|260548|260549", + "upstreamId": "260547|260548|260549", "text": "GLUCOCORTICOID DEFICIENCY 4 WITH MINERALOCORTICOID DEFICIENCY" }, { - "baseId": "260579|260580|424600|626145|970793|972757", + "upstreamId": "260579|260580|424600|626145|970793|972757", "text": "Epileptic encephalopathy, early infantile, 45" }, { - "baseId": "260789", + "upstreamId": "260789", "text": "Ulnar/fibular ray defect and brachydactyly" }, { - "baseId": "260843|260844|260845|260846|260847|415885|513171|513207|514064|576175|626247|903613|919672|920502|920523", + "upstreamId": "260843|260844|260845|260846|260847|415885|513171|513207|514064|576175|626247|903613|919672|920502|920523", "text": "Short stature, brachydactyly, intellectual developmental disability, and seizures" }, { - "baseId": "260857|513415", + "upstreamId": "260857|513415", "text": "Epileptic encephalopathy, early infantile, 47" }, { - "baseId": "260858|260859|556462|556463|556464|556465|556468|556469|965881|971054", + "upstreamId": "260858|260859|556462|556463|556464|556465|556468|556469|965881|971054", "text": "Severe combined immunodeficiency due to CARMIL2 deficiency" }, { - "baseId": "260878|590054", + "upstreamId": "260878|590054", "text": "Lymphopenia" }, { - "baseId": "260878|360925|465930|465938|466617|466620|466656|466663|466957|485948|530172|530174|530176|530179|530243|530245|530251|530496|530502|530505|530507|530714|530719|534266|568273|570384|570388|570389|570390|570391|570447|570449|574133|590038|590054|644893|644894|644895|644896|644897|644898|644899|644900|644901|644902|644903|644904|644905|644906|644907|644908|644909|644910|644911|644912|644913|644914|644915|644916|644917|644918|644919|652755|653059|715032|716121|726762|726763|726764|740321|740322|740323|740325|755346|755347|760465|771035|771036|789347|805105|805110|815926|815927|844194|844195|844196|844197|844198|844199|844200|844201|844202|844203|844204|844205|844206|844207|844208|844209|844210|844211|844212|844213|844214|852125|904621|927909|927910|927911|927912|927913|927914|937569|937570|937571|937572|949518|949519|949520|949521|949522|957852|977163|977164|977313|977314|977316|983747|983858", + "upstreamId": "260878|360925|465930|465938|466617|466620|466656|466663|466957|485948|530172|530174|530176|530179|530243|530245|530251|530496|530502|530505|530507|530714|530719|534266|568273|570384|570388|570389|570390|570391|570447|570449|574133|590038|590054|644893|644894|644895|644896|644897|644898|644899|644900|644901|644902|644903|644904|644905|644906|644907|644908|644909|644910|644911|644912|644913|644914|644915|644916|644917|644918|644919|652755|653059|715032|716121|726762|726763|726764|740321|740322|740323|740325|755346|755347|760465|771035|771036|789347|805105|805110|815926|815927|844194|844195|844196|844197|844198|844199|844200|844201|844202|844203|844204|844205|844206|844207|844208|844209|844210|844211|844212|844213|844214|852125|904621|927909|927910|927911|927912|927913|927914|937569|937570|937571|937572|949518|949519|949520|949521|949522|957852|977163|977164|977313|977314|977316|983747|983858", "text": "Immunodeficiency" }, { - "baseId": "260878|590054", + "upstreamId": "260878|590054", "text": "Cor triatriatum dexter" }, { - "baseId": "260896|260921|260929", + "upstreamId": "260896|260921|260929", "text": "Orofacial-digital syndrome III" }, { - "baseId": "260904", + "upstreamId": "260904", "text": "Retinal vascular dystrophy" }, { - "baseId": "260978|260979|260980|260981|260982|260983|404809|611418|791272|816525|919465|919466|963767|964854|965924|971567|972726|972729", + "upstreamId": "260978|260979|260980|260981|260982|260983|404809|611418|791272|816525|919465|919466|963767|964854|965924|971567|972726|972729", "text": "Sifrim-Hitz-Weiss syndrome" }, { - "baseId": "262087|262088|262089|626202|794216|965983|965984", + "upstreamId": "262087|262088|262089|626202|794216|965983|965984", "text": "Short stature, rhizomelic, with microcephaly, micrognathia, and developmental delay" }, { - "baseId": "262090|590724|590725|590726|677309|791943|802030|903637|963185", + "upstreamId": "262090|590724|590725|590726|677309|791943|802030|903637|963185", "text": "Epileptic encephalopathy, early infantile, 46" }, { - "baseId": "262198|486206", + "upstreamId": "262198|486206", "text": "Sotos syndrome 3" }, { - "baseId": "262230", + "upstreamId": "262230", "text": "3q29 microdeletion syndrome" }, { - "baseId": "262271|578558", + "upstreamId": "262271|578558", "text": "autosomal recessive PIEZO2 associated disease" }, { - "baseId": "262352", + "upstreamId": "262352", "text": "Infant onset multiple organ failure" }, { - "baseId": "262483|262484|262519|262520|262521|262522|262523|262524|359036|359037|362387|362388|362389|362390|362391|362392|614383|614384|964399|964399|980471", + "upstreamId": "262483|262484|262519|262520|262521|262522|262523|262524|359036|359037|362387|362388|362389|362390|362391|362392|614383|614384|964399|964399|980471", "text": "Ehlers-Danlos syndrome, periodontal type, 2" }, { - "baseId": "262483|262484|262519|262520|262521|262522|262523|262524|359036|359037|362387|362388|362389|362390|362391|362392|614385|919468|961869|980472", + "upstreamId": "262483|262484|262519|262520|262521|262522|262523|262524|359036|359037|362387|362388|362389|362390|362391|362392|614385|919468|961869|980472", "text": "Ehlers-Danlos syndrome, type 8" }, { - "baseId": "262636", + "upstreamId": "262636", "text": "Juvenile onset psychosis" }, { - "baseId": "262748|262749|262750|262751|262752|262753|262754|262755|262756|262757|262758|262759", + "upstreamId": "262748|262749|262750|262751|262752|262753|262754|262755|262756|262757|262758|262759", "text": "16q24.3 microdeletion syndrome" }, { - "baseId": "263171|263172", + "upstreamId": "263171|263172", "text": "Lung damage, immunodeficiency and chromosome breakage syndrome" }, { - "baseId": "263171|263172", + "upstreamId": "263171|263172", "text": "Lung disease, immunodeficiency, and chromosome breakage syndrome" }, { - "baseId": "263176", + "upstreamId": "263176", "text": "Azoospermia" }, { - "baseId": "263176|263219|514147|963104", + "upstreamId": "263176|263219|514147|963104", "text": "Oral cleft" }, { - "baseId": "263176", + "upstreamId": "263176", "text": "Testicular atrophy" }, { - "baseId": "263181|362641|362644|802081", + "upstreamId": "263181|362641|362644|802081", "text": "Anosmia" }, { - "baseId": "263185", + "upstreamId": "263185", "text": "Incomplete partition of the cochlea type II" }, { - "baseId": "263185|513985|514023", + "upstreamId": "263185|513985|514023", "text": "Telangiectasia of the skin" }, { - "baseId": "263185", + "upstreamId": "263185", "text": "Juvenile rheumatoid arthritis" }, { - "baseId": "263187|354294", + "upstreamId": "263187|354294", "text": "Reduced visual acuity" }, { - "baseId": "263192", + "upstreamId": "263192", "text": "Partial duplication of thumb phalanx" }, { - "baseId": "263192|514005|514175", + "upstreamId": "263192|514005|514175", "text": "Clinodactyly" }, { - "baseId": "263197|263232|263315|263419|513890|513904", + "upstreamId": "263197|263232|263315|263419|513890|513904", "text": "17 conditions" }, { - "baseId": "263198", + "upstreamId": "263198", "text": "Widened subarachnoid space" }, { - "baseId": "263198|263218|263231|263391|361043|514104|677275", + "upstreamId": "263198|263218|263231|263391|361043|514104|677275", "text": "Mild global developmental delay" }, { - "baseId": "263202", + "upstreamId": "263202", "text": "Neurological speech impairment" }, { - "baseId": "263202", + "upstreamId": "263202", "text": "Obsessive-compulsive trait" }, { - "baseId": "263206|263215", + "upstreamId": "263206|263215", "text": "21 conditions" }, { - "baseId": "263218", + "upstreamId": "263218", "text": "Impaired visuospatial constructive cognition" }, { - "baseId": "263219", + "upstreamId": "263219", "text": "Nasolacrimal duct obstruction" }, { - "baseId": "263219", + "upstreamId": "263219", "text": "Feeding difficulties in infancy" }, { - "baseId": "263224", + "upstreamId": "263224", "text": "Spina bifida occulta" }, { - "baseId": "263224|360978", + "upstreamId": "263224|360978", "text": "Inguinal hernia" }, { - "baseId": "263234|414000|432334|485950|622520", + "upstreamId": "263234|414000|432334|485950|622520", "text": "Recurrent fractures" }, { - "baseId": "263238|263300", + "upstreamId": "263238|263300", "text": "25 conditions" }, { - "baseId": "263239|918956", + "upstreamId": "263239|918956", "text": "Plagiocephaly" }, { - "baseId": "263242", + "upstreamId": "263242", "text": "Macular hypopigmented whorls, streaks, and patches" }, { - "baseId": "263242", + "upstreamId": "263242", "text": "Global brain atrophy" }, { - "baseId": "263244|626449|626450|965430|966614", + "upstreamId": "263244|626449|626450|965430|966614", "text": "Hypospadias, penile" }, { - "baseId": "263251", + "upstreamId": "263251", "text": "Sensory impairment" }, { - "baseId": "263252", + "upstreamId": "263252", "text": "Oral motor hypotonia" }, { - "baseId": "263255|360977|360978|514184|961915|961916|961917", + "upstreamId": "263255|360977|360978|514184|961915|961916|961917", "text": "Tall stature" }, { - "baseId": "263260", + "upstreamId": "263260", "text": "Tracheomalacia" }, { - "baseId": "263269|805144|818379|857360", + "upstreamId": "263269|805144|818379|857360", "text": "Oligospermia" }, { - "baseId": "263269|360850|858734", + "upstreamId": "263269|360850|858734", "text": "Overgrowth" }, { - "baseId": "263269", + "upstreamId": "263269", "text": "Pneumothorax" }, { - "baseId": "263269", + "upstreamId": "263269", "text": "Decreased testicular size" }, { - "baseId": "263270", + "upstreamId": "263270", "text": "Aplasia of the nose" }, { - "baseId": "263270", + "upstreamId": "263270", "text": "Short chin" }, { - "baseId": "263274", + "upstreamId": "263274", "text": "Dyscalculia" }, { - "baseId": "263274|263336|263782|263783|424588|424589|424590|424591|424592|424593|424594|424595|424596|424597|590061|679897", + "upstreamId": "263274|263336|263782|263783|424588|424589|424590|424591|424592|424593|424594|424595|424596|424597|590061|679897", "text": "Expressive language delay" }, { - "baseId": "263274|679483|794110|921237|921239|921240", + "upstreamId": "263274|679483|794110|921237|921239|921240", "text": "Aggressive behavior" }, { - "baseId": "263274", + "upstreamId": "263274", "text": "Poor fine motor coordination" }, { - "baseId": "263275|263283", + "upstreamId": "263275|263283", "text": "Autism with high cognitive abilities" }, { - "baseId": "263279", + "upstreamId": "263279", "text": "Cerebral white matter hypoplasia" }, { - "baseId": "263282", + "upstreamId": "263282", "text": "Self-injurious behavior" }, { - "baseId": "263284", + "upstreamId": "263284", "text": "Abnormality of calvarial morphology" }, { - "baseId": "263284", + "upstreamId": "263284", "text": "Bronchogenic cyst (disease)" }, { - "baseId": "263284", + "upstreamId": "263284", "text": "Abnormality of the ileum" }, { - "baseId": "263288|535230|626420", + "upstreamId": "263288|535230|626420", "text": "Partial agenesis of the corpus callosum" }, { - "baseId": "263289", + "upstreamId": "263289", "text": "Impaired social interactions" }, { - "baseId": "263289", + "upstreamId": "263289", "text": "Short attention span" }, { - "baseId": "263294", + "upstreamId": "263294", "text": "Hypercoagulability" }, { - "baseId": "263297", + "upstreamId": "263297", "text": "Severe short stature" }, { - "baseId": "263303", + "upstreamId": "263303", "text": "29 conditions" }, { - "baseId": "263304|360992|513954|514058|514085|514102|621026|621038|965293", + "upstreamId": "263304|360992|513954|514058|514085|514102|621026|621038|965293", "text": "Multicystic kidney dysplasia" }, { - "baseId": "263304", + "upstreamId": "263304", "text": "Single umbilical artery" }, { - "baseId": "263304", + "upstreamId": "263304", "text": "Cerebellar dysplasia" }, { - "baseId": "263305", + "upstreamId": "263305", "text": "Drooling" }, { - "baseId": "263306|489148|966698", + "upstreamId": "263306|489148|966698", "text": "Cystic hygroma" }, { - "baseId": "263310", + "upstreamId": "263310", "text": "Severe intrauterine growth retardation" }, { - "baseId": "263310", + "upstreamId": "263310", "text": "Pelvic kidney" }, { - "baseId": "263310", + "upstreamId": "263310", "text": "Abnormal renal morphology" }, { - "baseId": "263314", + "upstreamId": "263314", "text": "Depressed nasal ridge" }, { - "baseId": "263314", + "upstreamId": "263314", "text": "Wide nose" }, { - "baseId": "263317|263411|590094", + "upstreamId": "263317|263411|590094", "text": "23 conditions" }, { - "baseId": "263320|538608|538609", + "upstreamId": "263320|538608|538609", "text": "Bladder exstrophy" }, { - "baseId": "263322|404850", + "upstreamId": "263322|404850", "text": "Microtia" }, { - "baseId": "263328", + "upstreamId": "263328", "text": "EEG with temporal focal spikes" }, { - "baseId": "263336", + "upstreamId": "263336", "text": "Abnormality of facial skeleton" }, { - "baseId": "263336", + "upstreamId": "263336", "text": "Abnormality of the skull" }, { - "baseId": "263337", + "upstreamId": "263337", "text": "Retrognathia" }, { - "baseId": "263337", + "upstreamId": "263337", "text": "Abnormality of the mandible" }, { - "baseId": "263340|540053|540054|540055|540056|540057|540058|540059|540060|540061|540062|540063|540064|540065|540066|540067|540068|540069|540070|540071|540072|540073|540074|540075|540076|540077|540078|540079|540080|540081|540082|540083|540084|540085|540086|540087|540088|540089|540090|540091|540092|540093|540094|540095|540096|540097|540098|540099|540100|540101|540102|540103|540104|540105|540106|540107|540108|540109|540110|540111|540112|540113|540114|540115|540116|540117|540118|540119|540120|540121|540122|540123|540124|540125|540126|540127|540128|540129|540130|540131|540132|540133|540134|540135|540136|540137|540138|540139|540140", + "upstreamId": "263340|540053|540054|540055|540056|540057|540058|540059|540060|540061|540062|540063|540064|540065|540066|540067|540068|540069|540070|540071|540072|540073|540074|540075|540076|540077|540078|540079|540080|540081|540082|540083|540084|540085|540086|540087|540088|540089|540090|540091|540092|540093|540094|540095|540096|540097|540098|540099|540100|540101|540102|540103|540104|540105|540106|540107|540108|540109|540110|540111|540112|540113|540114|540115|540116|540117|540118|540119|540120|540121|540122|540123|540124|540125|540126|540127|540128|540129|540130|540131|540132|540133|540134|540135|540136|540137|540138|540139|540140", "text": "Primary amenorrhea" }, { - "baseId": "263341|514143", + "upstreamId": "263341|514143", "text": "Aplasia of the uterus" }, { - "baseId": "263343", + "upstreamId": "263343", "text": "Oligomenorrhea" }, { - "baseId": "263343", + "upstreamId": "263343", "text": "Aplasia/Hypoplasia of the breasts" }, { - "baseId": "263344|590077|590078", + "upstreamId": "263344|590077|590078", "text": "Patent ductus arteriosus" }, { - "baseId": "263344|626449|626450", + "upstreamId": "263344|626449|626450", "text": "Patent foramen ovale" }, { - "baseId": "263345|263373|263379|263396", + "upstreamId": "263345|263373|263379|263396", "text": "Abnormality of prenatal development or birth" }, { - "baseId": "263347", + "upstreamId": "263347", "text": "Increased body weight" }, { - "baseId": "263347|513942", + "upstreamId": "263347|513942", "text": "Bipolar affective disorder" }, { - "baseId": "263349", + "upstreamId": "263349", "text": "Delayed skeletal maturation" }, { - "baseId": "263354|513946", + "upstreamId": "263354|513946", "text": "Slurred speech" }, { - "baseId": "263362", + "upstreamId": "263362", "text": "Decreased body weight" }, { - "baseId": "263364|551352", + "upstreamId": "263364|551352", "text": "Involuntary movements" }, { - "baseId": "263391", + "upstreamId": "263391", "text": "Chronic constipation" }, { - "baseId": "263391|263404", + "upstreamId": "263391|263404", "text": "Abnormality of the pinna" }, { - "baseId": "263410", + "upstreamId": "263410", "text": "Kyphoscoliosis" }, { - "baseId": "263415", + "upstreamId": "263415", "text": "30 conditions" }, { - "baseId": "263420", + "upstreamId": "263420", "text": "20 conditions" }, { - "baseId": "263421|513917", + "upstreamId": "263421|513917", "text": "Telecanthus" }, { - "baseId": "263457|263458|263459|263460|263461|263462", + "upstreamId": "263457|263458|263459|263460|263461|263462", "text": "Spermatogenic failure 16" }, { - "baseId": "263522|263523|263524", + "upstreamId": "263522|263523|263524", "text": "Amelogenesis imperfecta, hypomaturation type IIA6" }, { - "baseId": "263630|263631|263632|263633|263634|263635|481389|798686|802203|802204|858570|904911|963173", + "upstreamId": "263630|263631|263632|263633|263634|263635|481389|798686|802203|802204|858570|904911|963173", "text": "Lethal congenital contracture syndrome 11" }, { - "baseId": "263633|434101|622834|677217|966725", + "upstreamId": "263633|434101|622834|677217|966725", "text": "Multiple joint contractures" }, { - "baseId": "263637|263638|263639|263640|263641|539095|800326|800329", + "upstreamId": "263637|263638|263639|263640|263641|539095|800326|800329", "text": "Mental retardation, autosomal recessive 57" }, { - "baseId": "263642|263643|263644|263645|263646|263647|622304|861282", + "upstreamId": "263642|263643|263644|263645|263646|263647|622304|861282", "text": "Encephalopathy, progressive, early-onset, with brain edema and/or leukoencephalopathy 1" }, { - "baseId": "263648|263649|263650|263651|263652|263653|622322|654120|654121|790223|918764|918765|977185", + "upstreamId": "263648|263649|263650|263651|263652|263653|622322|654120|654121|790223|918764|918765|977185", "text": "Shashi-Pena syndrome" }, { - "baseId": "263781", + "upstreamId": "263781", "text": "16p13.2-p13.13 microduplication syndrome" }, { - "baseId": "263784|263785|263786|263787|263788|263789|263790|263791|263792|263793|410312|445926|578555|578556|578557|613102|622918|622919|679802|679803|756345|788919|797634|798727|798728|798729|858576|858577|917280|961630|961631|964883|964884|965291|966186|974529|974530", + "upstreamId": "263784|263785|263786|263787|263788|263789|263790|263791|263792|263793|410312|445926|578555|578556|578557|613102|622918|622919|679802|679803|756345|788919|797634|798727|798728|798729|858576|858577|917280|961630|961631|964883|964884|965291|966186|974529|974530", "text": "Encephalopathy, progressive, early-onset, with brain atrophy and thin corpus callosum" }, { - "baseId": "263800|362294|362295|362296|362297|362298|362300|362301|362302|362303|443527|511518|550597|612474|613827|798955|918865|963553|963555|964024|970780|972715|977203", + "upstreamId": "263800|362294|362295|362296|362297|362298|362300|362301|362302|362303|443527|511518|550597|612474|613827|798955|918865|963553|963555|964024|970780|972715|977203", "text": "Intellectual developmental disorder with dysmorphic facies and ptosis" }, { - "baseId": "263820", + "upstreamId": "263820", "text": "Developmental and epileptic encephalopathy, 58" }, { - "baseId": "263827|440036|440037|440038|511524|550566|550567|550568|550569|551289|789364|918882|918883|965579|970787|971600", + "upstreamId": "263827|440036|440037|440038|511524|550566|550567|550568|550569|551289|789364|918882|918883|965579|970787|971600", "text": "Intellectual disability, autosomal dominant 50" }, { - "baseId": "263832|966215|966216|966217", + "upstreamId": "263832|966215|966216|966217", "text": "Spermatogenic failure 17" }, { - "baseId": "263969|442630", + "upstreamId": "263969|442630", "text": "GATAD2B-Related Disorder" }, { - "baseId": "263969|861610", + "upstreamId": "263969|861610", "text": "GATAD2B-related intellectual disability syndrome" }, { - "baseId": "263996", + "upstreamId": "263996", "text": "KCNH1-related disorders" }, { - "baseId": "264298", + "upstreamId": "264298", "text": "Dysmorphism" }, { - "baseId": "264298", + "upstreamId": "264298", "text": "Bronchopneumonia" }, { - "baseId": "264314|682988|683032", + "upstreamId": "264314|682988|683032", "text": "Autosomal dominant intermediate Charcot-Marie-Tooth disease" }, { - "baseId": "264319|440711", + "upstreamId": "264319|440711", "text": "Pes valgus" }, { - "baseId": "264323", + "upstreamId": "264323", "text": "Bohring-Opitz-like syndrome" }, { - "baseId": "264339|309188|309201|309206|319813|320336", + "upstreamId": "264339|309188|309201|309206|319813|320336", "text": "Ataxia Neuropathy Spectrum Disorders" }, { - "baseId": "264434|362319|362337|568818", + "upstreamId": "264434|362319|362337|568818", "text": "Malignant migrating partial seizures of infancy" }, { - "baseId": "264436", + "upstreamId": "264436", "text": "Lung carcinoid tumor" }, { - "baseId": "264505|620465", + "upstreamId": "264505|620465", "text": "LIG4-Related Disorders" }, { - "baseId": "264567|268878|485926|485927", + "upstreamId": "264567|268878|485926|485927", "text": "Polycystic liver disease 3 with or without kidney cysts" }, { - "baseId": "264780", + "upstreamId": "264780", "text": "LZTR1-Related Disorder" }, { - "baseId": "264781|495314", + "upstreamId": "264781|495314", "text": "Type III lissencephaly" }, { - "baseId": "264781|495314", + "upstreamId": "264781|495314", "text": "Perisylvian polymicrogyria" }, { - "baseId": "264790|360623", + "upstreamId": "264790|360623", "text": "SHANK3-Related Disorder" }, { - "baseId": "264886", + "upstreamId": "264886", "text": "Autosomal recessive congenital ichthyosis" }, { - "baseId": "264907", + "upstreamId": "264907", "text": "SETBP1-Related Disorder" }, { - "baseId": "265231|548902|961879", + "upstreamId": "265231|548902|961879", "text": "Mucopolysaccharidosistype IIIB" }, { - "baseId": "265814|309751|309760|309954|315004|315130", + "upstreamId": "265814|309751|309760|309954|315004|315130", "text": "Congenital Bile Acid Synthesis Defect" }, { - "baseId": "265917|290290|290291|290295|291117|291140|291142|294446|294759|294783|294807|294831|353648|434719", + "upstreamId": "265917|290290|290291|290295|291117|291140|291142|294446|294759|294783|294807|294831|353648|434719", "text": "Refractory anemia with ringed sideroblasts (clinical)" }, { - "baseId": "266181", + "upstreamId": "266181", "text": "Bilateral cryptorchidism" }, { - "baseId": "266181|424978", + "upstreamId": "266181|424978", "text": "Microphallus" }, { - "baseId": "266421", + "upstreamId": "266421", "text": "COL6A2-related disorder" }, { - "baseId": "266655|362641|362642|362643|362644|362645|362646|362647|362648|362649|424974|424975|424976|424977|424978|424979|424980|424981|424982|424983|919791|919792|977289", + "upstreamId": "266655|362641|362642|362643|362644|362645|362646|362647|362648|362649|424974|424975|424976|424977|424978|424979|424980|424981|424982|424983|919791|919792|977289", "text": "Arrhinia with choanal atresia and microphthalmia syndrome" }, { - "baseId": "266844", + "upstreamId": "266844", "text": "DCTN1-Related Disorders" }, { - "baseId": "267083|788813", + "upstreamId": "267083|788813", "text": "ISPD-Related Disorder" }, { - "baseId": "267212|291300|292374|295765|295766|295767|295779", + "upstreamId": "267212|291300|292374|295765|295766|295767|295779", "text": "Combined Pituitary Hormone Deficiency, Dominant/Recessive" }, { - "baseId": "267516|788752", + "upstreamId": "267516|788752", "text": "COL6A3-related phenotype" }, { - "baseId": "268941|613525|613526|613527", + "upstreamId": "268941|613525|613526|613527", "text": "Cryptophthalmos, unilateral or bilateral, isolated" }, { - "baseId": "269933|361051|481389|551433|551434", + "upstreamId": "269933|361051|481389|551433|551434", "text": "Congenital contracture" }, { - "baseId": "270258|275547|439932|551421|551422|551423|624837|624838|677261|677262|677263|677264", + "upstreamId": "270258|275547|439932|551421|551422|551423|624837|624838|677261|677262|677263|677264", "text": "Scapulohumeral muscular dystrophy" }, { - "baseId": "270565|278166|278175|279150|279177|279183|279302|279352", + "upstreamId": "270565|278166|278175|279150|279177|279183|279302|279352", "text": "Isolated Hyperparathyroidism" }, { - "baseId": "270687|513914|514010", + "upstreamId": "270687|513914|514010", "text": "Fatty replacement of skeletal muscle" }, { - "baseId": "271513", + "upstreamId": "271513", "text": "Genu varum" }, { - "baseId": "271861", + "upstreamId": "271861", "text": "Proximal muscle weakness in lower limbs" }, { - "baseId": "271919|275126|363960|454663|454673|454675|454676|454734|454745|454771|454774|455202|455236|455459|455473|520795|521066|521089|521186|521292|564874|587393|622347|633523|683709|683710|683711|683712|683713|683714|683717|683718|685178|685179|685181|686702|686705|691761|691763|721263|830380|830400|830401|830422|830423|851919|932739|932740|932753|932754|944424|944425|944438|954059", + "upstreamId": "271919|275126|363960|454663|454673|454675|454676|454734|454745|454771|454774|455202|455236|455459|455473|520795|521066|521089|521186|521292|564874|587393|622347|633523|683709|683710|683711|683712|683713|683714|683717|683718|685178|685179|685181|686702|686705|691761|691763|721263|830380|830400|830401|830422|830423|851919|932739|932740|932753|932754|944424|944425|944438|954059", "text": "Infantile dystonia-parkinsonism" }, { - "baseId": "272211|318515|318517|318518|318520|318521|318526|318527|326695|326697|326709|326716|332916|334598|342546|342554|353257", + "upstreamId": "272211|318515|318517|318518|318520|318521|318526|318527|326695|326697|326709|326716|332916|334598|342546|342554|353257", "text": "Centronuclear Myopathy, Dominant" }, { - "baseId": "272947", + "upstreamId": "272947", "text": "Alagille syndrome, ATP8B1 related" }, { - "baseId": "273103|320737|320738|320744|329581|329583|329585|329586|336200|336203|336206|336207|338097|338103|338104|338106|353303", + "upstreamId": "273103|320737|320738|320744|329581|329583|329585|329586|336200|336203|336206|336207|338097|338103|338104|338106|353303", "text": "OTX2-Related Syndromic Microphthalmia" }, { - "baseId": "273447|440064", + "upstreamId": "273447|440064", "text": "SHORT-RIB THORACIC DYSPLASIA 7 WITHOUT POLYDACTYLY" }, { - "baseId": "273697|576106", + "upstreamId": "273697|576106", "text": "Spinocerebellar ataxia type 15/16" }, { - "baseId": "274984|424400|424401|424401|424402|424403|424405|452592|452593|452598|452600|452601|452607|452608|452621|452626|452631|452633|452636|452638|452644|452651|452653|452655|452657|452659|452663|452664|452667|452675|452679|452680|452682|452683|452686|452687|452689|452691|452875|452878|452880|452881|452884|452888|452891|452892|452894|452896|452897|452901|452903|452907|452908|452913|452915|452916|452917|452920|452923|452924|452925|452926|452927|452929|452930|452932|452933|452934|452935|452937|452938|452939|452941|452944|452945|452946|452947|452948|452951|452953|452955|452963|452964|452966|452969|452970|452971|452973|452974|452975|452976|452977|452978|452982|452984|452986|452988|452994|452996|452997|453006|453007|453008|453010|453016|453018|453026|453030|453032|453033|453036|453144|453146|453151|453155|453160|453163|453170|453176|453188|453190|453191|453194|453195|453207|453210|453212|453214|453220|453221|453222|453238|453247|453251|453253|453256|453258|453261|453270|453281|453289|453296|453314|453316|453319|453320|453325|453328|519458|519463|519467|519476|519480|519482|519484|519485|519486|519487|519488|519490|519491|519493|519495|519496|519499|519504|519505|519506|519508|519509|519511|519512|519517|519519|519520|519521|519522|519527|519529|519531|519534|519535|519537|519546|519553|519555|519559|519560|519563|519568|519573|519579|519583|519653|519655|519662|519664|519675|519679|519683|519696|519698|519704|519709|519711|519713|519715|519716|519720|519722|519724|519727|519744|519746|519749|519755|519757|519762|519764|519766|519769|519770|519775|519777|519781|519783|519787|519791|519793|519797|519799|519801|559076|559078|559080|559082|559084|559086|559088|559090|559092|559094|559096|559606|559608|559610|559612|559614|559616|559618|559620|559622|559624|559626|559628|559630|559632|559634|559636|561704|561709|561710|561712|561717|561722|561723|561726|561730|561744|561745|561750|563162|563167|563169|563174|563177|563186|563192|563193|563197|563204|578020|631628|631629|631630|631631|631632|631633|631634|631635|631636|631637|631638|631639|631640|631641|631642|631643|631644|631645|631646|631647|631648|631649|631650|631651|631652|631653|631654|631655|631656|631657|631658|631659|631660|631661|631662|631663|631664|631665|631666|631667|631668|631669|631670|631671|631672|631673|631674|631675|631676|631677|631678|631679|631680|631681|631681|631682|631683|631684|631685|631686|631687|631688|631689|631690|631691|631692|631693|631694|631695|631696|631697|691457|691458|691459|691460|691461|691462|691463|691464|691465|691466|691467|691468|695212|695213|698199|698202|698203|698204|698205|698206|698207|698209|698210|698212|698213|698215|698217|698219|698220|698221|698222|698223|708960|708961|708964|708965|708968|708970|708971|720554|720555|720556|720557|720558|720560|720562|720563|720565|720566|734192|734196|734198|734200|734203|743942|744030|748413|748418|748419|748421|748426|759217|759227|764056|764059|764060|764066|764067|764071|764077|774864|777264|777267|777383|779070|781759|781761|781767|781771|828408|828409|828410|828411|828412|828413|828414|828415|828416|828417|828418|828419|828420|828421|828422|828423|828424|828425|828426|828427|828428|828429|828430|828431|828432|828433|828434|828435|828436|828437|828438|828439|828440|828441|828442|828443|828444|828445|828446|828447|828448|828449|828450|828451|828452|828453|850956|851067|851572|851574|857588|857589|923285|923286|923287|923288|923289|923290|923291|923292|923293|923294|923295|923296|923297|923298|923299|923300|923301|923302|932040|932041|932042|932043|932044|932045|932046|932047|932048|932049|932050|932051|932052|932053|940760|943650|943651|943652|943653|943654|943655|943656|943657|943658|943659|943660|943661|943662|943663|943664|943665|943666|943667|953562|953563|953564|953565|953566|953567|953568|959704|984046", + "upstreamId": "274984|424400|424401|424401|424402|424403|424405|452592|452593|452598|452600|452601|452607|452608|452621|452626|452631|452633|452636|452638|452644|452651|452653|452655|452657|452659|452663|452664|452667|452675|452679|452680|452682|452683|452686|452687|452689|452691|452875|452878|452880|452881|452884|452888|452891|452892|452894|452896|452897|452901|452903|452907|452908|452913|452915|452916|452917|452920|452923|452924|452925|452926|452927|452929|452930|452932|452933|452934|452935|452937|452938|452939|452941|452944|452945|452946|452947|452948|452951|452953|452955|452963|452964|452966|452969|452970|452971|452973|452974|452975|452976|452977|452978|452982|452984|452986|452988|452994|452996|452997|453006|453007|453008|453010|453016|453018|453026|453030|453032|453033|453036|453144|453146|453151|453155|453160|453163|453170|453176|453188|453190|453191|453194|453195|453207|453210|453212|453214|453220|453221|453222|453238|453247|453251|453253|453256|453258|453261|453270|453281|453289|453296|453314|453316|453319|453320|453325|453328|519458|519463|519467|519476|519480|519482|519484|519485|519486|519487|519488|519490|519491|519493|519495|519496|519499|519504|519505|519506|519508|519509|519511|519512|519517|519519|519520|519521|519522|519527|519529|519531|519534|519535|519537|519546|519553|519555|519559|519560|519563|519568|519573|519579|519583|519653|519655|519662|519664|519675|519679|519683|519696|519698|519704|519709|519711|519713|519715|519716|519720|519722|519724|519727|519744|519746|519749|519755|519757|519762|519764|519766|519769|519770|519775|519777|519781|519783|519787|519791|519793|519797|519799|519801|559076|559078|559080|559082|559084|559086|559088|559090|559092|559094|559096|559606|559608|559610|559612|559614|559616|559618|559620|559622|559624|559626|559628|559630|559632|559634|559636|561704|561709|561710|561712|561717|561722|561723|561726|561730|561744|561745|561750|563162|563167|563169|563174|563177|563186|563192|563193|563197|563204|578020|631628|631629|631630|631631|631632|631633|631634|631635|631636|631637|631638|631639|631640|631641|631642|631643|631644|631645|631646|631647|631648|631649|631650|631651|631652|631653|631654|631655|631656|631657|631658|631659|631660|631661|631662|631663|631664|631665|631666|631667|631668|631669|631670|631671|631672|631673|631674|631675|631676|631677|631678|631679|631680|631681|631681|631682|631683|631684|631685|631686|631687|631688|631689|631690|631691|631692|631693|631694|631695|631696|631697|691457|691458|691459|691460|691461|691462|691463|691464|691465|691466|691467|691468|695212|695213|698199|698202|698203|698204|698205|698206|698207|698209|698210|698212|698213|698215|698217|698219|698220|698221|698222|698223|708960|708961|708964|708965|708968|708970|708971|720554|720555|720556|720557|720558|720560|720562|720563|720565|720566|734192|734196|734198|734200|734203|743942|744030|748413|748418|748419|748421|748426|759217|759227|764056|764059|764060|764066|764067|764071|764077|774864|777264|777267|777383|779070|781759|781761|781767|781771|828408|828409|828410|828411|828412|828413|828414|828415|828416|828417|828418|828419|828420|828421|828422|828423|828424|828425|828426|828427|828428|828429|828430|828431|828432|828433|828434|828435|828436|828437|828438|828439|828440|828441|828442|828443|828444|828445|828446|828447|828448|828449|828450|828451|828452|828453|850956|851067|851572|851574|857588|857589|923285|923286|923287|923288|923289|923290|923291|923292|923293|923294|923295|923296|923297|923298|923299|923300|923301|923302|932040|932041|932042|932043|932044|932045|932046|932047|932048|932049|932050|932051|932052|932053|940760|943650|943651|943652|943653|943654|943655|943656|943657|943658|943659|943660|943661|943662|943663|943664|943665|943666|943667|953562|953563|953564|953565|953566|953567|953568|959704|984046", "text": "Spermatogenic failure 18" }, { - "baseId": "275543|405860|513918", + "upstreamId": "275543|405860|513918", "text": "Hereditary nonpolyposis colorectal carcinoma" }, { - "baseId": "275544|417650|417652|417653|417655|439920|439921|439922|439923|439924|540863|551399|551400|624829|624830|677210", + "upstreamId": "275544|417650|417652|417653|417655|439920|439921|439922|439923|439924|540863|551399|551400|624829|624830|677210", "text": "Low alkaline phosphatase" }, { - "baseId": "276313|361272|613956|613989|653992|672131|918552", + "upstreamId": "276313|361272|613956|613989|653992|672131|918552", "text": "1q21.1 recurrent microdeletion" }, { - "baseId": "276529|277059|348590", + "upstreamId": "276529|277059|348590", "text": "Juvenile hemochromatosis" }, { - "baseId": "276671|276673|276686|276691|276726|276763|276949|276950|276955|277004|277518|277521|277522|277526|277528|277548|277604|277610|277611|277623|277627|277653|277727|277730|277732|277750|277761|331920|331961|338923|338944|340546|340556", + "upstreamId": "276671|276673|276686|276691|276726|276763|276949|276950|276955|277004|277518|277521|277522|277526|277528|277548|277604|277610|277611|277623|277627|277653|277727|277730|277732|277750|277761|331920|331961|338923|338944|340546|340556", "text": "Spherocytosis, Recessive" }, { - "baseId": "276776|276786|276789|277042|277056|277061|277062|277074|277618|277644|277648|277682|277773", + "upstreamId": "276776|276786|276789|277042|277056|277061|277062|277074|277618|277644|277648|277682|277773", "text": "Seizures, Sensorineural Deafness, Ataxia, Intellectual Disability, and Electrolyte Imbalance Syndrome" }, { - "baseId": "277021|277929|277938|278116", + "upstreamId": "277021|277929|277938|278116", "text": "Age-related cortical cataract" }, { - "baseId": "277054|278133|278135|312079|317744|317745|677478|677479|677480|677481", + "upstreamId": "277054|278133|278135|312079|317744|317745|677478|677479|677480|677481", "text": "Spondyloepimetaphyseal dysplasia" }, { - "baseId": "277189|277190|277193|277897|277898|277899|278001|862587|862588", + "upstreamId": "277189|277190|277193|277897|277898|277899|278001|862587|862588", "text": "Apolipoprotein A-II deficiency" }, { - "baseId": "277426", + "upstreamId": "277426", "text": "Lung cancer" }, { - "baseId": "277497|277499|320737|320744|336200|353303", + "upstreamId": "277497|277499|320737|320744|336200|353303", "text": "Combined Pituitary Hormone Deficiency, Dominant" }, { - "baseId": "278098|278128|278134|278151|278153|278158|279063", + "upstreamId": "278098|278128|278134|278151|278153|278158|279063", "text": "Hyperprolinemia" }, { - "baseId": "278181|278221|278238|279432", + "upstreamId": "278181|278221|278238|279432", "text": "Mesangiocapillary glomerulonephritis, type II" }, { - "baseId": "278248", + "upstreamId": "278248", "text": "Factor XIII deficiency" }, { - "baseId": "278548|278549|278557|278569|278588|278644|278645|278656|278658|278672|278676|278679|279809|279814|279815|279865|279913|279965|279966|279967|279973|279978|279979|283113|283121|283314|337898|347509|347512|351415|351422|352418|352435", + "upstreamId": "278548|278549|278557|278569|278588|278644|278645|278656|278658|278672|278676|278679|279809|279814|279815|279865|279913|279965|279966|279967|279973|279978|279979|283113|283121|283314|337898|347509|347512|351415|351422|352418|352435", "text": "Parkinson Disease, Recessive" }, { - "baseId": "279390", + "upstreamId": "279390", "text": "CFH-Related Disorders" }, { - "baseId": "279499|279511|279525|279526|279538|279571|279577|279772|279778|279779|279823|279851|281080|281103|281104|281198|281208|281211|286491|286513|286566|286567|286570|286571|286574|286576|287198|287218|287275|287304|289524|289540|289580|289615|289636|289996|290004|290006|342710|342733", + "upstreamId": "279499|279511|279525|279526|279538|279571|279577|279772|279778|279779|279823|279851|281080|281103|281104|281198|281208|281211|286491|286513|286566|286567|286570|286571|286574|286576|287198|287218|287275|287304|289524|289540|289580|289615|289636|289996|290004|290006|342710|342733", "text": "Familial erythrocytosis" }, { - "baseId": "281004|281015|282531|292021|293384|293443|293457|296773", + "upstreamId": "281004|281015|282531|292021|293384|293443|293457|296773", "text": "Renal Hypomagnesemia, Recessive" }, { - "baseId": "281045|321108|321109|330235|330237|330257|330288|338733|346275|346276|350532|350533|351571|351575|353095|353305|353588", + "upstreamId": "281045|321108|321109|330235|330237|330257|330288|338733|346275|346276|350532|350533|351571|351575|353095|353305|353588", "text": "Early-onset autosomal dominant Alzheimer disease" }, { - "baseId": "281496|353107", + "upstreamId": "281496|353107", "text": "Corneal Dystrophy, Dominant/Recessive" }, { - "baseId": "281844|281846|281847|281851|281852|281858|281859|281860|281866|281867|281872|281877|281878|281882|281883|281884|281888|281889|282500|282503|282506|282507|282508|282509|282510|282512|282513|282514|282521|282524|282525|284144|284145|284150|284151|284152|284154|284157|284158|284161|284162|284165|284166|284168|284181|284187|284357|284362|284368|284372|284373|284374|284375|284376|284379|284380|284384|284388|284389|284428|284435", + "upstreamId": "281844|281846|281847|281851|281852|281858|281859|281860|281866|281867|281872|281877|281878|281882|281883|281884|281888|281889|282500|282503|282506|282507|282508|282509|282510|282512|282513|282514|282521|282524|282525|284144|284145|284150|284151|284152|284154|284157|284158|284161|284162|284165|284166|284168|284181|284187|284357|284362|284368|284372|284373|284374|284375|284376|284379|284380|284384|284388|284389|284428|284435", "text": "Lactose intolerance" }, { - "baseId": "282038|486871|623098|623099", + "upstreamId": "282038|486871|623098|623099", "text": "fluorouracil response - Other" }, { - "baseId": "282781|285149", + "upstreamId": "282781|285149", "text": "Cerebral palsy spastic quadriplegic" }, { - "baseId": "283062|492849|620009", + "upstreamId": "283062|492849|620009", "text": "NPHP4-Related Disorders" }, { - "baseId": "283136|540578", + "upstreamId": "283136|540578", "text": "Blue rubber bleb nevus" }, { - "baseId": "283818|283833|285439|285465|285842", + "upstreamId": "283818|283833|285439|285465|285842", "text": "Duane's syndrome" }, { - "baseId": "283970|283979|283982|284743|286639|287065|287073|314616|314619|314621|353123|353124", + "upstreamId": "283970|283979|283982|284743|286639|287065|287073|314616|314619|314621|353123|353124", "text": "Amyotrophic Lateral Sclerosis, Recessive" }, { - "baseId": "284729|284732|284737|284740|285403|287631|287632|287635|287862|287863|287865|287866|287872|287873|287876|320533|320538|320539|337831|550215|550220", + "upstreamId": "284729|284732|284737|284740|285403|287631|287632|287635|287862|287863|287865|287866|287872|287873|287876|320533|320538|320539|337831|550215|550220", "text": "Selective tooth agenesis" }, { - "baseId": "284860|285486|285529|287809|288109|302986|307420|307642|413879", + "upstreamId": "284860|285486|285529|287809|288109|302986|307420|307642|413879", "text": "3-M syndrome" }, { - "baseId": "285302", + "upstreamId": "285302", "text": "Ichthyosis, congenital, autosomal recessive 4B (harlequin)" }, { - "baseId": "286219|286231|286234|286939|286957|286958|286963|289274|289292|289293|289628|289633|289635|289671|330539|337117|339038|339058|906005", + "upstreamId": "286219|286231|286234|286939|286957|286958|286963|289274|289292|289293|289628|289633|289635|289671|330539|337117|339038|339058|906005", "text": "Primary congenital glaucoma" }, { - "baseId": "286357", + "upstreamId": "286357", "text": "Familial Atypical Mycobacteriosis, Autosomal Dominant" }, { - "baseId": "286783|286785|286821|289103|289459", + "upstreamId": "286783|286785|286821|289103|289459", "text": "Xanthinuria" }, { - "baseId": "287756|287757|287763|287773|287775|288443|288444|288445|291332|291480|367104|425513|451516|451793|451985|451991|518654|518656|518696|518698|518783|518785|518794|518877|518885|537357|558698|559213|559215|561031|561033|562146|562150|562155|621141|624251|624252|630656|630657|630658|630659|630660|630661|630662|630663|630664|630665|630666|630667|630668|630669|630670|651024|691238|691239|691240|691241|691242|691243|697713|708418|720016|720017|747833|763475|779061|781489|781490|787344|819291|827181|827182|827183|827184|827185|827186|827187|850925|851448|851450|922957|922958|922959|922960|922961|922962|922963|931641|931642|931643|931644|943186|943187|943188|943189", + "upstreamId": "287756|287757|287763|287773|287775|288443|288444|288445|291332|291480|367104|425513|451516|451793|451985|451991|518654|518656|518696|518698|518783|518785|518794|518877|518885|537357|558698|559213|559215|561031|561033|562146|562150|562155|621141|624251|624252|630656|630657|630658|630659|630660|630661|630662|630663|630664|630665|630666|630667|630668|630669|630670|651024|691238|691239|691240|691241|691242|691243|697713|708418|720016|720017|747833|763475|779061|781489|781490|787344|819291|827181|827182|827183|827184|827185|827186|827187|850925|851448|851450|922957|922958|922959|922960|922961|922962|922963|931641|931642|931643|931644|943186|943187|943188|943189", "text": "ZAP70-Related Severe Combined Immunodeficiency" }, { - "baseId": "288124|288863|288876|291805|291811|291813|291910|291921|291925|291927", + "upstreamId": "288124|288863|288876|291805|291811|291813|291910|291921|291925|291927", "text": "Hereditary essential tremor" }, { - "baseId": "289467|289492|292684|292690", + "upstreamId": "289467|289492|292684|292690", "text": "Retinitis Pigmentosa, Dominant/Recessive" }, { - "baseId": "289626|289643|289644|290377|293464|293995|293999|294000|300208", + "upstreamId": "289626|289643|289644|290377|293464|293995|293999|294000|300208", "text": "3-MCC Deficiency" }, { - "baseId": "289693|289714|290450|290472|290485|290486|293545|293548|294144|353647|857675|966850", + "upstreamId": "289693|289714|290450|290472|290485|290486|293545|293548|294144|353647|857675|966850", "text": "Ectrodactyly" }, { - "baseId": "290633|290908|299994|300007|303437|304559|316173|323452|330859", + "upstreamId": "290633|290908|299994|300007|303437|304559|316173|323452|330859", "text": "Distal hereditary motor neuronopathy" }, { - "baseId": "290768|295268|305600|305605|305607|305608|309418|309460|309471|309492|309506|314732|314756|314789|314807|314902|349927|550229", + "upstreamId": "290768|295268|305600|305605|305607|305608|309418|309460|309471|309492|309506|314732|314756|314789|314807|314902|349927|550229", "text": "Chondrodysplasia" }, { - "baseId": "291486|291487|291491|291506|291528|291536|291540|291544|291547|291550|291551|292723|292726|292730|292742|292751|292752|292769|292780|292786|292791|292815|292817|292819|292838|296049|296050|296052|296053|296054|296066|296068|296075|296080|296085|296086|296095|296096|296108|296112|296143|296146|296148|296160|296164|296165|296168|296186|353652", + "upstreamId": "291486|291487|291491|291506|291528|291536|291540|291544|291547|291550|291551|292723|292726|292730|292742|292751|292752|292769|292780|292786|292791|292815|292817|292819|292838|296049|296050|296052|296053|296054|296066|296068|296075|296080|296085|296086|296095|296096|296108|296112|296143|296146|296148|296160|296164|296165|296168|296186|353652", "text": "Intellectual Disability with Language Impairment and Autistic Features" }, { - "baseId": "291598|291633|292886|292960|296241|296285|296299|353653|513583|514016|672257|918956", + "upstreamId": "291598|291633|292886|292960|296241|296285|296299|353653|513583|514016|672257|918956", "text": "Vesicoureteral reflux" }, { - "baseId": "292032|296771", + "upstreamId": "292032|296771", "text": "Axenfeld-rieger anomaly" }, { - "baseId": "292897|292903|292915|294262|294272|294273|297810|297814|297819|310626|315866|322615|322616|322623|322628", + "upstreamId": "292897|292903|292915|294262|294272|294273|297810|297814|297819|310626|315866|322615|322616|322623|322628", "text": "BH4-Deficient Hyperphenylalaninemia" }, { - "baseId": "293096|293159|294525|294542|298033|298080|538368|590769|590770|590771|613968|614004|614086|918868|918890", + "upstreamId": "293096|293159|294525|294542|298033|298080|538368|590769|590770|590771|613968|614004|614086|918868|918890", "text": "4p partial monosomy syndrome" }, { - "baseId": "293322", + "upstreamId": "293322", "text": "CFI-Related Disorders" }, { - "baseId": "294077|295541|295549|299343|329076|329088|345114|345117|346473", + "upstreamId": "294077|295541|295549|299343|329076|329088|345114|345117|346473", "text": "Amelogenesis Imperfecta, Dominant" }, { - "baseId": "294818|296525|296526|300251|300258|300260|300285", + "upstreamId": "294818|296525|296526|300251|300258|300260|300285", "text": "Sensory Neuropathy with Spastic Paraplegia" }, { - "baseId": "295091|295093|295096|295098|296916|296924|296927|300552|300556|300558|300665|300668|300669|300681|353676", + "upstreamId": "295091|295093|295096|295098|296916|296924|296927|300552|300556|300558|300665|300668|300669|300681|353676", "text": "Leukodystrophy, Adult-Onset" }, { - "baseId": "295612|295616|297372|301288|301457|353678|575496", + "upstreamId": "295612|295616|297372|301288|301457|353678|575496", "text": "Distal myopathy" }, { - "baseId": "295661", + "upstreamId": "295661", "text": "Hyperthyroxinemia, dysalbuminemic" }, { - "baseId": "295791|295801|295837|295941|295944|295950|295955|297605|297612|297661|297674|297675|301566|301574|301584|301599|301602|301671|301672|301734|301751|301758|301772|301775|301778|301780|301790|301866|301871", + "upstreamId": "295791|295801|295837|295941|295944|295950|295955|297605|297612|297661|297674|297675|301566|301574|301584|301599|301602|301671|301672|301734|301751|301758|301772|301775|301778|301780|301790|301866|301871", "text": "Craniometaphyseal dysplasia" }, { - "baseId": "295791|295801|295837|295941|295944|295950|295955|297605|297612|297661|297674|297675|301566|301574|301584|301599|301602|301671|301672|301734|301751|301758|301772|301775|301778|301780|301790|301866|301871", + "upstreamId": "295791|295801|295837|295941|295944|295950|295955|297605|297612|297661|297674|297675|301566|301574|301584|301599|301602|301671|301672|301734|301751|301758|301772|301775|301778|301780|301790|301866|301871", "text": "Chondrocalcinosis" }, { - "baseId": "296421|296456|302452|302691", + "upstreamId": "296421|296456|302452|302691", "text": "Treacher Collins Syndrome, Dominant" }, { - "baseId": "296470|434560", + "upstreamId": "296470|434560", "text": "Acute Porphyria" }, { - "baseId": "296638|298531|338796|338799|348400|348414|348437|348443|352024|352027|352031|352034|352035|352737|352738|352739|352740|352742|352743|353862", + "upstreamId": "296638|298531|338796|338799|348400|348414|348437|348443|352024|352027|352031|352034|352035|352737|352738|352739|352740|352742|352743|353862", "text": "Lymphoproliferative syndrome" }, { - "baseId": "297688|297692|297693|297694|297697|297698|297704|297707|297708|297714|297716|297722|297723|297730|297733|297734|297736|297741|297745|297748|297752|297756|297762|297765|297766|297767|297771|297772|297776|297779|297780|297781|297788|297797|297798|297799|297805|297807|299875|299877|299893|299894|299896|299914|299925|299927|299929|299931|299939|299940|299941|299945|299947|299949|299950|299951|299955|299960|299962|299965|299967|299970|299971|299972|299984|304058|304059|304064|304069|304070|304071|304073|304075|304077|304078|304079|304080|304084|304085|304090|304101|304102|304110|304115|304118|304119|304120|304123|304130|304133|304134|304141|304142|304143|304154|304155|304158|304159|304168|304169|304171|304176|304191|304201|304202|304203|304411|304412|304415|304417|304419|304422|304423|304424|304426|304428|304429|304436|304437|304438|304441|304442|304445|304447|304448|304449|304451|304453|304458|304469|304471|304474|304475|304481|304482|304488|304490|304493|304494|304496|304497|304498|304507|304521|304522|735128|790563|894421|894422|894423|894424|894425|894426|894427|894428|894429|894430|894431|894432|894433|894434|894435|894436|894437|894438|894439|894440|894441|894442|894443|894444|894445|894446|894447|894448|894449|894450|894451|894452|894453|894454|894455|894456|894457|894458|894459|894460|894461|894462|894463|894464|894465|894466|894467|894468|894469|894470|894471|894472|894473|894474|894475|894476|894477|894484|894485|894487|894488|894489|894491|894492|896114|896115|896116", + "upstreamId": "297688|297692|297693|297694|297697|297698|297704|297707|297708|297714|297716|297722|297723|297730|297733|297734|297736|297741|297745|297748|297752|297756|297762|297765|297766|297767|297771|297772|297776|297779|297780|297781|297788|297797|297798|297799|297805|297807|299875|299877|299893|299894|299896|299914|299925|299927|299929|299931|299939|299940|299941|299945|299947|299949|299950|299951|299955|299960|299962|299965|299967|299970|299971|299972|299984|304058|304059|304064|304069|304070|304071|304073|304075|304077|304078|304079|304080|304084|304085|304090|304101|304102|304110|304115|304118|304119|304120|304123|304130|304133|304134|304141|304142|304143|304154|304155|304158|304159|304168|304169|304171|304176|304191|304201|304202|304203|304411|304412|304415|304417|304419|304422|304423|304424|304426|304428|304429|304436|304437|304438|304441|304442|304445|304447|304448|304449|304451|304453|304458|304469|304471|304474|304475|304481|304482|304488|304490|304493|304494|304496|304497|304498|304507|304521|304522|735128|790563|894421|894422|894423|894424|894425|894426|894427|894428|894429|894430|894431|894432|894433|894434|894435|894436|894437|894438|894439|894440|894441|894442|894443|894444|894445|894446|894447|894448|894449|894450|894451|894452|894453|894454|894455|894456|894457|894458|894459|894460|894461|894462|894463|894464|894465|894466|894467|894468|894469|894470|894471|894472|894473|894474|894475|894476|894477|894484|894485|894487|894488|894489|894491|894492|896114|896115|896116", "text": "Platelet-type bleeding disorder 9" }, { - "baseId": "297720|301638|443707|633559|915005|915006|915007|915008|915009", + "upstreamId": "297720|301638|443707|633559|915005|915006|915007|915008|915009", "text": "Susceptibility to nonsyndromic otitis media" }, { - "baseId": "298067|304539|304545|304549|304586|304588|304832|304843|304860|304890|304891|304892", + "upstreamId": "298067|304539|304545|304549|304586|304588|304832|304843|304860|304890|304891|304892", "text": "Striatal Degeneration" }, { - "baseId": "298149|298164|298165|298173|302208|302439|302480|302486|302487|321763|331064|331098|337834|339817|339910", + "upstreamId": "298149|298164|298165|298173|302208|302439|302480|302486|302487|321763|331064|331098|337834|339817|339910", "text": "Achondrogenesis" }, { - "baseId": "298149|298164|298165|298173|302208|302439|302480|302486|302487", + "upstreamId": "298149|298164|298165|298173|302208|302439|302480|302486|302487", "text": "Atelosteogenesis" }, { - "baseId": "298362|298377|298378|298388|300646|300655|300690|300691|304999|305015|305016|305020|305065|305082|305088|305200|305209|305235", + "upstreamId": "298362|298377|298378|298388|300646|300655|300690|300691|304999|305015|305016|305020|305065|305082|305088|305200|305209|305235", "text": "Intellectual Disability, Stereotypic Movements, Epilepsy, and/or Cerebral Malformations" }, { - "baseId": "298502|298504|298510|300802|305165|305186|353739", + "upstreamId": "298502|298504|298510|300802|305165|305186|353739", "text": "Adult i blood group with or without congenital cataract" }, { - "baseId": "298591|302698|302716|302728|303023|303031", + "upstreamId": "298591|302698|302716|302728|303023|303031", "text": "Familial Atypical Mycobacteriosis, Autosomal Recessive" }, { - "baseId": "298705", + "upstreamId": "298705", "text": "Hyperparathyroidism 4" }, { - "baseId": "298732|305568|578440", + "upstreamId": "298732|305568|578440", "text": "FIG4-Related Disorders" }, { - "baseId": "298997|299002|299010|299023|299038|299788|299874|299882|301490|305803|305804|305807|305834|305835|305850|305856|305868|306031|306033|306046|306081|306100|353673|353743", + "upstreamId": "298997|299002|299010|299023|299038|299788|299874|299882|301490|305803|305804|305807|305834|305835|305850|305856|305868|306031|306033|306046|306081|306100|353673|353743", "text": "Hypophosphatemic Rickets, Recessive" }, { - "baseId": "299551|302086|302108|306529|306800|306813", + "upstreamId": "299551|302086|302108|306529|306800|306813", "text": "Parkinson Disease, Juvenile" }, { - "baseId": "299835|302415|302421|306831|306838|306848|306853|307133|307137|307138|654413", + "upstreamId": "299835|302415|302421|306831|306838|306848|306853|307133|307137|307138|654413", "text": "Trichohepatoenteric syndrome" }, { - "baseId": "300173|307361|307363|307369|307578", + "upstreamId": "300173|307361|307363|307369|307578", "text": "Choroidal Dystrophy" }, { - "baseId": "300173|307361|307363|307369|307578", + "upstreamId": "300173|307361|307363|307369|307578", "text": "Vitelliform macular dystrophy" }, { - "baseId": "300174", + "upstreamId": "300174", "text": "PEX6 POLYMORPHISM" }, { - "baseId": "300241|300244|300245", + "upstreamId": "300241|300244|300245", "text": "Treacher Collins Syndrome, Recessive" }, { - "baseId": "300941|308567|308577|308607", + "upstreamId": "300941|308567|308577|308607", "text": "Stickler Syndrome, Recessive" }, { - "baseId": "300968|300969", + "upstreamId": "300968|300969", "text": "Corneal Dystrophy, Dominant" }, { - "baseId": "302011|513576", + "upstreamId": "302011|513576", "text": "AGK-Related Disorders" }, { - "baseId": "303612|303655|307094|329115|329116|329117|329118|329119|329120|329121|329133|329136|329137|339236|339242|339248|345143|345153|346516|346533|346537|346539|346540|346545|346569", + "upstreamId": "303612|303655|307094|329115|329116|329117|329118|329119|329120|329121|329133|329136|329137|339236|339242|339248|345143|345153|346516|346533|346537|346539|346540|346545|346569", "text": "Osteogenesis Imperfecta, Dominant" }, { - "baseId": "303959|303972|304052|307523|307580|307638|307639|307643|312524|312531|312578|312592|312617|312627|312658|312670|312678|312712|312791|312792", + "upstreamId": "303959|303972|304052|307523|307580|307638|307639|307643|312524|312531|312578|312592|312617|312627|312658|312670|312678|312712|312791|312792", "text": "Trichorhinophalangeal syndrome" }, { - "baseId": "304081|307646|312825|327530|353822|353823", + "upstreamId": "304081|307646|312825|327530|353822|353823", "text": "Hereditary Multiple Osteochondromatosis" }, { - "baseId": "304344|313094", + "upstreamId": "304344|313094", "text": "Thyroid dyshormonogenesis" }, { - "baseId": "304422|440020", + "upstreamId": "304422|440020", "text": "Fetal and neonatal alloimmune thrombocytopenia" }, { - "baseId": "304821", + "upstreamId": "304821", "text": "HR-Related Disorders" }, { - "baseId": "304863|313665", + "upstreamId": "304863|313665", "text": "Alopecia universalis" }, { - "baseId": "305780|305788|309798|315034|315167|353842", + "upstreamId": "305780|305788|309798|315034|315167|353842", "text": "Familial temporal lobe epilepsy 2" }, { - "baseId": "305825|305826|305827|309830|309831|309833|309891|309902|309906|315068|315070|315185|315187|320766|320772|329627|329629|338132|338140|338146|338147|338153|353304|353843", + "upstreamId": "305825|305826|305827|309830|309831|309833|309891|309902|309906|315068|315070|315185|315187|320766|320772|329627|329629|338132|338140|338146|338147|338153|353304|353843", "text": "Branchiootorenal Spectrum Disorders" }, { - "baseId": "306222|306223|306229|306254|310358|315626", + "upstreamId": "306222|306223|306229|306254|310358|315626", "text": "Hypercholanemia" }, { - "baseId": "306295|306326|306354|306364|306369|310418|310442|310448|310465|310555|312419|315768|315803|315922|315965|316109|316138|316143|353848", + "upstreamId": "306295|306326|306354|306364|306369|310418|310442|310448|310465|310555|312419|315768|315803|315922|315965|316109|316138|316143|353848", "text": "Familial High Density Lipoprotein Deficiency" }, { - "baseId": "306385", + "upstreamId": "306385", "text": "Autosomal recessive myogenic arthrogryposis multiplex congenita" }, { - "baseId": "307152", + "upstreamId": "307152", "text": "SETX-Related Disorders" }, { - "baseId": "307675", + "upstreamId": "307675", "text": "POLR1C-Related Disorders" }, { - "baseId": "307975|822303", + "upstreamId": "307975|822303", "text": "Dysequilibrium syndrome" }, { - "baseId": "308072|308081|308082|308084|308089|308091|312430|312468|318241|318264|318267|318269|318288|318304|318333|318769|318772|318773", + "upstreamId": "308072|308081|308082|308084|308089|308091|312430|312468|318241|318264|318267|318269|318288|318304|318333|318769|318772|318773", "text": "Amyotrophic Lateral Sclerosis/Frontotemporal Dementia" }, { - "baseId": "308306|349927", + "upstreamId": "308306|349927", "text": "Acromesomelic dysplasia" }, { - "baseId": "308753|308755|308767|308769|308770|308825|308827|313373|313397|313430|313431|319222|319223|319225|319228|319240|319242|319793|319818|319826|319838|319842|319868|441341|441343|441345|441346|441348|441352|441353|441355|444515|444516|508843|577133|638388|684104|684106|684107|684108|684109|684110|684112|684113|684114|684115|684117|684118|684119|684120|685255|685256|685257|685258|685259|685261|685262|687502|687503|687504|687505|687506|687508|687510|687514|687517|687520|687525|687526|687527|687528|687529|687530|687532|687534|687536|687537|687541|687542|687544|687546|689959|689960|692690|692691|692692|692693|701062|751775|767478|793356|793357|836249|978597|978598|978599|978600|978601|978602|978603|978604|978605|978606|978607|978608|978609|978610|978611|978612|978613", + "upstreamId": "308753|308755|308767|308769|308770|308825|308827|313373|313397|313430|313431|319222|319223|319225|319228|319240|319242|319793|319818|319826|319838|319842|319868|441341|441343|441345|441346|441348|441352|441353|441355|444515|444516|508843|577133|638388|684104|684106|684107|684108|684109|684110|684112|684113|684114|684115|684117|684118|684119|684120|685255|685256|685257|685258|685259|685261|685262|687502|687503|687504|687505|687506|687508|687510|687514|687517|687520|687525|687526|687527|687528|687529|687530|687532|687534|687536|687537|687541|687542|687544|687546|689959|689960|692690|692691|692692|692693|701062|751775|767478|793356|793357|836249|978597|978598|978599|978600|978601|978602|978603|978604|978605|978606|978607|978608|978609|978610|978611|978612|978613", "text": "Choreaacanthocytosis" }, { - "baseId": "308951", + "upstreamId": "308951", "text": "Nonsyndromic Trigonocephaly" }, { - "baseId": "308989|361703|361704|361705|361708|361722", + "upstreamId": "308989|361703|361704|361705|361708|361722", "text": "Craniosynostosis, nonspecific" }, { - "baseId": "309261|309264|319840|320338|581825|581826", + "upstreamId": "309261|309264|319840|320338|581825|581826", "text": "Split-hand/foot malformation" }, { - "baseId": "309369|325180|353162", + "upstreamId": "309369|325180|353162", "text": "Renal Hypomagnesemia, Dominant" }, { - "baseId": "309832|309946|309949|314979|320866|321455|514035|514036", + "upstreamId": "309832|309946|309949|314979|320866|321455|514035|514036", "text": "Megaloblastic anemia" }, { - "baseId": "309908", + "upstreamId": "309908", "text": "Mitochondrial Complex V (ATP Synthase) Deficiency, Nuclear Type" }, { - "baseId": "310915|329340|348274|353447|353448|353449", + "upstreamId": "310915|329340|348274|353447|353448|353449", "text": "Isolated growth hormone deficiency" }, { - "baseId": "311110|311116|311117|316391|316412|323186|481315", + "upstreamId": "311110|311116|311117|316391|316412|323186|481315", "text": "KAT6B-Related Spectrum Disorders" }, { - "baseId": "311122|620263", + "upstreamId": "311122|620263", "text": "GLI3-Related Disorders" }, { - "baseId": "311576|311581|311582|311586|311592|311593|317166|317170|323197|323201|323202|323203|323776|353158|682675", + "upstreamId": "311576|311581|311582|311586|311592|311593|317166|317170|323197|323201|323202|323203|323776|353158|682675", "text": "Moyamoya disease" }, { - "baseId": "312348", + "upstreamId": "312348", "text": "Posterior polar cataract" }, { - "baseId": "312525|318500|324613|325351", + "upstreamId": "312525|318500|324613|325351", "text": "Immunodeficiency due to defect in CD3-gamma" }, { - "baseId": "313257|313258|313262|313263|313264|313265|313267|313284|313288|313292|313293|313320|313322|319388|319395|319396|319397|319433|319434|319444|325510|325511|325512|325513|325514|325524|325525|325528|325532|325537|325538|325560|326474|326475|326478|326479|326489|326511|326517|326519|326520|326521|326533|326534|326536", + "upstreamId": "313257|313258|313262|313263|313264|313265|313267|313284|313288|313292|313293|313320|313322|319388|319395|319396|319397|319433|319434|319444|325510|325511|325512|325513|325514|325524|325525|325528|325532|325537|325538|325560|326474|326475|326478|326479|326489|326511|326517|326519|326520|326521|326533|326534|326536", "text": "Familial hyperaldosteronism" }, { - "baseId": "314218|326894", + "upstreamId": "314218|326894", "text": "Bone Mineral Density Variation" }, { - "baseId": "314295|620404", + "upstreamId": "314295|620404", "text": "RAPSN-Related Disorders" }, { - "baseId": "315888|326756|329110|330282|330295|332924|332948|332949|345361|345369|350041|350043|351077|353258", + "upstreamId": "315888|326756|329110|330282|330295|332924|332948|332949|345361|345369|350041|350043|351077|353258", "text": "Immunodeficiency with Hyper-IgM" }, { - "baseId": "316019|359749|502091|624988|625731|904869", + "upstreamId": "316019|359749|502091|624988|625731|904869", "text": "Hereditary sensory and autonomic neuropathy" }, { - "baseId": "316211|326236|335942|335963|335977|339979|341364|342287|353210|353211|353331|353353|353354", + "upstreamId": "316211|326236|335942|335963|335977|339979|341364|342287|353210|353211|353331|353353|353354", "text": "Hypertyrosinemia" }, { - "baseId": "316881|316885|316891|316892|316893|316907|316909|316910|324494|324495|324505|324508|324510|330622|330661|330662|330689|330692|332012|332023|332039|332046|332067|332072|332081|332087|332103", + "upstreamId": "316881|316885|316891|316892|316893|316907|316909|316910|324494|324495|324505|324508|324510|330622|330661|330662|330689|330692|332012|332023|332039|332046|332067|332072|332081|332087|332103", "text": "Lethal Encephalopathy" }, { - "baseId": "316885|316889|316907|316909|316910|324499|324508|324510|324513|324515|324518|329883|329891|330637|330661|330689|330692|330699|330703|332004|332011|332012|332022|332036|332039|332072|332081|332087|332103|332105|332112|979281|979282", + "upstreamId": "316885|316889|316907|316909|316910|324499|324508|324510|324513|324515|324518|329883|329891|330637|330661|330689|330692|330699|330703|332004|332011|332012|332022|332036|332039|332072|332081|332087|332103|332105|332112|979281|979282", "text": "Mitochondrial myopathy and sideroblastic anemia" }, { - "baseId": "316959|316978|317007|332182|332191|976511|976512|976513", + "upstreamId": "316959|316978|317007|332182|332191|976511|976512|976513", "text": "Congenital fibrosis of extraocular muscles" }, { - "baseId": "317085", + "upstreamId": "317085", "text": "Lethal congenital contracture syndrome" }, { - "baseId": "317102|317118|324857|324859|330949|332440|332445", + "upstreamId": "317102|317118|324857|324859|330949|332440|332445", "text": "Hypophosphatemic Rickets, Dominant" }, { - "baseId": "317187|317211|317213|317230|317238|324901|324908|324917|324919|324921|331044|331069|332566|332622|332628|333910", + "upstreamId": "317187|317211|317213|317230|317238|324901|324908|324917|324919|324921|331044|331069|332566|332622|332628|333910", "text": "Vitamin D-dependent rickets" }, { - "baseId": "317382|325213|325217|325219|325221|325228|325230|331430|331436|331437|331445|331447|331449|331459|332850|332851|702337|869920|869921|869922|869923|869924|869925|869926|869927|869928|869929|869930|872250", + "upstreamId": "317382|325213|325217|325219|325221|325228|325230|331430|331436|331437|331445|331447|331449|331459|332850|332851|702337|869920|869921|869922|869923|869924|869925|869926|869927|869928|869929|869930|872250", "text": "46,XY gonadal dysgenesis, complete, dhh-related" }, { - "baseId": "318010|333610", + "upstreamId": "318010|333610", "text": "Congenital Muscular Dystrophy, ITGA7-related" }, { - "baseId": "318132|318139|326142|332311|332318", + "upstreamId": "318132|318139|326142|332311|332318", "text": "Cutaneous Malignant Melanoma, Dominant" }, { - "baseId": "318243|318287|332506|332551|334108|334117|334155", + "upstreamId": "318243|318287|332506|332551|334108|334117|334155", "text": "Cystic Fibrosis-Like Syndrome" }, { - "baseId": "318243|332475|332506|334092|334094|334108|334117", + "upstreamId": "318243|332475|332506|334092|334094|334108|334117", "text": "Familial Periodic Fever" }, { - "baseId": "319018|980688", + "upstreamId": "319018|980688", "text": "Cerebral hemorrhage" }, { - "baseId": "320106|328644|328645|328703|335252|335280|337132", + "upstreamId": "320106|328644|328645|328703|335252|335280|337132", "text": "Omodysplasia" }, { - "baseId": "320172", + "upstreamId": "320172", "text": "17-Beta-Hydroxysteroid Dehydrogenase III Deficiency" }, { - "baseId": "320697|320704|320737|320738|320744|329501|329502|329507|329509|329581|329582|329583|329584|329585|329586|336094|336096|336097|336106|336109|336119|336131|336193|336200|336203|336206|338009|338016|338023|338038|338103|353303", + "upstreamId": "320697|320704|320737|320738|320744|329501|329502|329507|329509|329581|329582|329583|329584|329585|329586|336094|336096|336097|336106|336109|336119|336131|336193|336200|336203|336206|338009|338016|338023|338038|338103|353303", "text": "Syndromic Microphthalmia, Dominant" }, { - "baseId": "320697|329501|329502|336097|336106|338009|338016|338023|626230", + "upstreamId": "320697|329501|329502|336097|336106|338009|338016|338023|626230", "text": "BMP4-Related Syndromic Microphthalmia" }, { - "baseId": "320933", + "upstreamId": "320933", "text": "Complement component 4, partial deficiency of" }, { - "baseId": "321860", + "upstreamId": "321860", "text": "PI M(MALTON)" }, { - "baseId": "321870", + "upstreamId": "321870", "text": "NODAL-Related Disorders" }, { - "baseId": "322495|514090", + "upstreamId": "322495|514090", "text": "Generalized joint laxity" }, { - "baseId": "322495|360798|360810|514090|590084|679897|980658|980729", + "upstreamId": "322495|360798|360810|514090|590084|679897|980658|980729", "text": "Joint laxity" }, { - "baseId": "322981|322984|322997|332528|332537|339529|353321|497250", + "upstreamId": "322981|322984|322997|332528|332537|339529|353321|497250", "text": "Griscelli syndrome" }, { - "baseId": "323349|333028|339866|339884|341294|341295|353329", + "upstreamId": "323349|333028|339866|339884|341294|341295|353329", "text": "Syndromic Microphthalmia, Recessive" }, { - "baseId": "324711|340891|340904|342346", + "upstreamId": "324711|340891|340904|342346", "text": "Pulmonary Surfactant Metabolism Dysfunction, Recessive" }, { - "baseId": "324984|324988|324989|334651|338333", + "upstreamId": "324984|324988|324989|334651|338333", "text": "Common Variable Immune Deficiency, Recessive" }, { - "baseId": "325225", + "upstreamId": "325225", "text": "46,XY DSD/46,XY CGD" }, { - "baseId": "325767|343348", + "upstreamId": "325767|343348", "text": "Multicentric Osteolysis-Nodulosis-Arthropathy (MONA) Spectrum Disorders" }, { - "baseId": "327428|327448|337297|343549|343582", + "upstreamId": "327428|327448|337297|343549|343582", "text": "Spontaneous pneumothorax" }, { - "baseId": "327720|327729|327761|337488|337536|337541|343742|343758|343774|343783|343814|345211", + "upstreamId": "327720|327729|327761|337488|337536|337541|343742|343758|343774|343783|343814|345211", "text": "Lissencephaly/Subcortical Band Heterotopia" }, { - "baseId": "327759|857406", + "upstreamId": "327759|857406", "text": "Familial Isolated Pituitary Adenomas" }, { - "baseId": "328459|839161|977248", + "upstreamId": "328459|839161|977248", "text": "CTSC-Related Disorders" }, { - "baseId": "328660|328662|328672|328673|338624|338631|338649|338655|344704", + "upstreamId": "328660|328662|328672|328673|338624|338631|338649|338655|344704", "text": "Distal Renal Tubular Acidosis, Dominant" }, { - "baseId": "329067|329081|335687|337517", + "upstreamId": "329067|329081|335687|337517", "text": "Dyskeratosis Congenita, Dominant" }, { - "baseId": "329273|353209|496550", + "upstreamId": "329273|353209|496550", "text": "Brachyolmia" }, { - "baseId": "329365|339623|345381|346754|346763", + "upstreamId": "329365|339623|345381|346754|346763", "text": "Hyperkalemic Periodic Paralysis" }, { - "baseId": "330305|330313|340490|340495|340496|340501|340503|340539|346227|347517|347571|353461", + "upstreamId": "330305|330313|340490|340495|340496|340501|340503|340539|346227|347517|347571|353461", "text": "Hereditary Neuralgic Amyotrophy (HNA)" }, { - "baseId": "330328|330333", + "upstreamId": "330328|330333", "text": "Desbuquois syndrome" }, { - "baseId": "331088", + "upstreamId": "331088", "text": "peginterferon alfa-2b and ribavirin response - Efficacy" }, { - "baseId": "331143", + "upstreamId": "331143", "text": "PI KALSHEKER-POLLER" }, { - "baseId": "331477|331499|331556|341769|341794|341816|347117|347157|347167|347192|347225|347227|347244|348441|348448|348458|348479|348482", + "upstreamId": "331477|331499|331556|341769|341794|341816|347117|347157|347167|347192|347225|347227|347244|348441|348448|348458|348479|348482", "text": "Diarrhea with Microvillus Atrophy" }, { - "baseId": "332327|332344|342455|342499|347877|347891", + "upstreamId": "332327|332344|342455|342499|347877|347891", "text": "Dementia, Deafness, and Sensory Neuropathy" }, { - "baseId": "332817", + "upstreamId": "332817", "text": "SCID, autosomal recessive, T-negative/B-positive type" }, { - "baseId": "332857|343034|348373|348380|348386|348392|348394|349551", + "upstreamId": "332857|343034|348373|348380|348386|348392|348394|349551", "text": "Thyroid Hormonogenesis Defect" }, { - "baseId": "333242|333266|343342", + "upstreamId": "333242|333266|343342", "text": "Microcephaly, Cortical Malformations, and Intellectual Disability" }, { - "baseId": "333885", + "upstreamId": "333885", "text": "GJB6-related disorders" }, { - "baseId": "333967|979289", + "upstreamId": "333967|979289", "text": "Encephalomyopathy with respiratory failure and lactic acidosis" }, { - "baseId": "335228|335232|335240|335241|335253|345048|345060|345066|345068|349857|349860|349861|349868|349871|350884|410746|410747|426331|426332|446219|470335|470877|470879|471378|533486|533496|533535|533541|533542|534060|571183|572875|572878|575084|648610|648618|648619|648622|648625|716903|716904|716905|728596|728598|731336|742347|742348|757444|757446|757448|757451|757455|757456|760654|760660|760867|760880|760949|773067|773071|786355|788936|821304|848286|848287|848288|848289|848290|848291|848292|848293|848294|848295|848296|848297|848298|848299|848300|929153|929154|929155|929156|929157|929158|929159|929160|929161|929162|938937|938938|938939|951036|951037|951038|951039|951040|951041|958805|958806|958807|960938", + "upstreamId": "335228|335232|335240|335241|335253|345048|345060|345066|345068|349857|349860|349861|349868|349871|350884|410746|410747|426331|426332|446219|470335|470877|470879|471378|533486|533496|533535|533541|533542|534060|571183|572875|572878|575084|648610|648618|648619|648622|648625|716903|716904|716905|728596|728598|731336|742347|742348|757444|757446|757448|757451|757455|757456|760654|760660|760867|760880|760949|773067|773071|786355|788936|821304|848286|848287|848288|848289|848290|848291|848292|848293|848294|848295|848296|848297|848298|848299|848300|929153|929154|929155|929156|929157|929158|929159|929160|929161|929162|938937|938938|938939|951036|951037|951038|951039|951040|951041|958805|958806|958807|960938", "text": "Centromeric instability of chromosomes 1,9 and 16 and immunodeficiency" }, { - "baseId": "335244|341681|343177|343201|343202|343224", + "upstreamId": "335244|341681|343177|343201|343202|343224", "text": "Trichoepithelioma, multiple familial, 2" }, { - "baseId": "335715|335743|335784|345489|345490|350105|965452", + "upstreamId": "335715|335743|335784|345489|345490|350105|965452", "text": "Periventricular Heterotopia" }, { - "baseId": "335916|335920|335922|335924|335925|345605|345618|345623|350170|350176|351213|351233|351234", + "upstreamId": "335916|335920|335922|335924|335925|345605|345618|345623|350170|350176|351213|351233|351234", "text": "Phosphoenolpyruvate carboxykinase (GTP) deficiency" }, { - "baseId": "335933|335979|336000|345642|345650|345651|345654|345735|345740|345745|345747|350179|350191|350195|350203|350220|351241|351252|351255|351273|351279", + "upstreamId": "335933|335979|336000|345642|345650|345651|345654|345735|345740|345745|345747|350179|350191|350195|350203|350220|351241|351252|351255|351273|351279", "text": "Spinal Muscular Atrophy, Dominant" }, { - "baseId": "336794|336807|336816|343033|343048|343069", + "upstreamId": "336794|336807|336816|343033|343048|343069", "text": "Malignant Melanoma Susceptibility" }, { - "baseId": "337275|337291|337313|337332|337335|337347|337353|337358|337359|337364|337365|337375|337378|337380|337385|337391|337399|337408|337411|337414|337420|337439|337442|337449|337462|346957|346979|346991|347001|347006|347008|347018|347027|347029|347035|347037|347047|347049|347058|347061|351009|351020|351022|351025|351034|351038|351041|351044|351047|351050|351051|351070|351074|351075|351078|351079|351084|351085|351088|351093|351096|351104|351105|351106|352010|352014|352040|352042|352043|352045|352046|352050|352054|352080|352081|352082|352084|352085|352086|352100|352101|352103|352109|352112|352116|352119|352120|352122|352126|352128|352131", + "upstreamId": "337275|337291|337313|337332|337335|337347|337353|337358|337359|337364|337365|337375|337378|337380|337385|337391|337399|337408|337411|337414|337420|337439|337442|337449|337462|346957|346979|346991|347001|347006|347008|347018|347027|347029|347035|347037|347047|347049|347058|347061|351009|351020|351022|351025|351034|351038|351041|351044|351047|351050|351051|351070|351074|351075|351078|351079|351084|351085|351088|351093|351096|351104|351105|351106|352010|352014|352040|352042|352043|352045|352046|352050|352054|352080|352081|352082|352084|352085|352086|352100|352101|352103|352109|352112|352116|352119|352120|352122|352126|352128|352131", "text": "Familial Candidiasis, Recessive" }, { - "baseId": "337612|337623|347191|351203", + "upstreamId": "337612|337623|347191|351203", "text": "Rhabdoid tumor" }, { - "baseId": "337801|337826|339798", + "upstreamId": "337801|337826|339798", "text": "Cutis Laxa, Dominant/Recessive" }, { - "baseId": "338143|338150|338155|338207|347776|347804|347825|347831|347864|351614|351621|351627|351632|351651|352569|352575|352578|352579|352582|352588|352589", + "upstreamId": "338143|338150|338155|338207|347776|347804|347825|347831|347864|351614|351621|351627|351632|351651|352569|352575|352578|352579|352582|352588|352589", "text": "Nephronophthisis-Like Nephropathy" }, { - "baseId": "338350|338355|338358|338365|338370|338371|338373|338376|338385|338395|338396|338412|338414|348012|348013|348016|348018|348021|348022|348023|348024|348026|348027|348031|348034|348035|348039|351746|351748|351749|351752|351753|351756|351757|351760|352625|352626|352627|352628|352629|352630|352632|620692|620693|620694|891389|891390|891391|891392|891393|891394|891395|891396|891397|891398|891399|891400|891401|891402|891403|891404|891405|891406|891407|891408|891409|891410|891411|891412|891413|891414|891415|891416|891417|891418|891419|891420|891845|891846|891847|891848|891849", + "upstreamId": "338350|338355|338358|338365|338370|338371|338373|338376|338385|338395|338396|338412|338414|348012|348013|348016|348018|348021|348022|348023|348024|348026|348027|348031|348034|348035|348039|351746|351748|351749|351752|351753|351756|351757|351760|352625|352626|352627|352628|352629|352630|352632|620692|620693|620694|891389|891390|891391|891392|891393|891394|891395|891396|891397|891398|891399|891400|891401|891402|891403|891404|891405|891406|891407|891408|891409|891410|891411|891412|891413|891414|891415|891416|891417|891418|891419|891420|891845|891846|891847|891848|891849", "text": "Fatty liver disease, nonalcoholic 1" }, { - "baseId": "338402|338413|348038|352631", + "upstreamId": "338402|338413|348038|352631", "text": "Susceptibility to Nonalcoholic Fatty Liver Disease" }, { - "baseId": "338589|338594|344649|346069|346070", + "upstreamId": "338589|338594|344649|346069|346070", "text": "Sclerosing Bone Dysplasias" }, { - "baseId": "338845", + "upstreamId": "338845", "text": "Infantile Nystagmus" }, { - "baseId": "339355", + "upstreamId": "339355", "text": "anastrozole response - Efficacy" }, { - "baseId": "339355", + "upstreamId": "339355", "text": "docetaxel response - Efficacy" }, { - "baseId": "339355", + "upstreamId": "339355", "text": "doxorubicin response - Efficacy" }, { - "baseId": "339355", + "upstreamId": "339355", "text": "epirubicin response - Efficacy" }, { - "baseId": "339355", + "upstreamId": "339355", "text": "exemestane response - Efficacy" }, { - "baseId": "339355|362508", + "upstreamId": "339355|362508", "text": "fluorouracil response - Efficacy" }, { - "baseId": "339355", + "upstreamId": "339355", "text": "paclitaxel response - Efficacy" }, { - "baseId": "339355", + "upstreamId": "339355", "text": "radiotherapy response - Efficacy" }, { - "baseId": "339355", + "upstreamId": "339355", "text": "tamoxifen response - Efficacy" }, { - "baseId": "339387|339397|348906|348909|348910|348911|348930|348946|348951|348952|348957|352293|352295|352298|352316|352333|352901|352904|352908|352910|352914|353867", + "upstreamId": "339387|339397|348906|348909|348910|348911|348930|348946|348951|348952|348957|352293|352295|352298|352316|352333|352901|352904|352908|352910|352914|353867", "text": "Dent's disease" }, { - "baseId": "341304", + "upstreamId": "341304", "text": "Congenital Adrenal Insufficiency" }, { - "baseId": "342540|434354|434355|434356|434357|434358", + "upstreamId": "342540|434354|434355|434356|434357|434358", "text": "Virus-induced diabetes" }, { - "baseId": "343296|343312|977282", + "upstreamId": "343296|343312|977282", "text": "MYH3-Related Disorders" }, { - "baseId": "345130|345148|349903", + "upstreamId": "345130|345148|349903", "text": "Hypermethioninemia" }, { - "baseId": "345502", + "upstreamId": "345502", "text": "SALL4-Related Spectrum Disorders" }, { - "baseId": "345546|350137|351180|351185|353585|353586", + "upstreamId": "345546|350137|351180|351185|353585|353586", "text": "Infantile hypercalcemia" }, { - "baseId": "346659|620617", + "upstreamId": "346659|620617", "text": "RBBP8-Related Disorders" }, { - "baseId": "348554|352096|352097|352779|353863", + "upstreamId": "348554|352096|352097|352779|353863", "text": "Hemophilia B, Factor IX Deficiency" }, { - "baseId": "348736|352229", + "upstreamId": "348736|352229", "text": "Congenital stationary night blindness, X-linked" }, { - "baseId": "349148", + "upstreamId": "349148", "text": "Disease Association NOS" }, { - "baseId": "350521", + "upstreamId": "350521", "text": "APP POLYMORPHISM" }, { - "baseId": "351934|351943", + "upstreamId": "351934|351943", "text": "Charcot-Marie-Tooth, X-linked" }, { - "baseId": "351934|351943|352966", + "upstreamId": "351934|351943|352966", "text": "Nonsyndromic Hearing Loss, X-Linked" }, { - "baseId": "352164", + "upstreamId": "352164", "text": "Hemophilia A, FVIII Deficiency" }, { - "baseId": "352627", + "upstreamId": "352627", "text": "asparaginase response - Toxicity/ADR" }, { - "baseId": "352627", + "upstreamId": "352627", "text": "daunorubicin response - Toxicity/ADR" }, { - "baseId": "352627", + "upstreamId": "352627", "text": "prednisolone response - Toxicity/ADR" }, { - "baseId": "352627|538600", + "upstreamId": "352627|538600", "text": "vincristine response - Toxicity/ADR" }, { - "baseId": "353518", + "upstreamId": "353518", "text": "Cortical pulverulent cataract" }, { - "baseId": "353745", + "upstreamId": "353745", "text": "C2-related disorders" }, { - "baseId": "353824", + "upstreamId": "353824", "text": "Birk-Barel Intellectual Disability Dysmorphism Syndrome" }, { - "baseId": "353955|353956|353957", + "upstreamId": "353955|353956|353957", "text": "Autosomal recessive severe congenital neutropenia" }, { - "baseId": "353955|353956|353957|792807", + "upstreamId": "353955|353956|353957|792807", "text": "Specific granule deficiency 2" }, { - "baseId": "353998", + "upstreamId": "353998", "text": "Epilepsy, benign neonatal, 1, and/or myokymia" }, { - "baseId": "354197|354272", + "upstreamId": "354197|354272", "text": "Fontaine progeroid syndrome" }, { - "baseId": "354199|354200|354201|354202|354203|354204|354205|354206|354207", + "upstreamId": "354199|354200|354201|354202|354203|354204|354205|354206|354207", "text": "Thyroid hemiagenesis" }, { - "baseId": "354281", + "upstreamId": "354281", "text": "Pulmonary atresia with intact ventricular septum" }, { - "baseId": "354286|354287|354288", + "upstreamId": "354286|354287|354288", "text": "Congenital cardiomyopathy" }, { - "baseId": "354289|354291", + "upstreamId": "354289|354291", "text": "Mitochondrial cytopathy" }, { - "baseId": "354290", + "upstreamId": "354290", "text": "Mild liver congestion" }, { - "baseId": "354290|514125", + "upstreamId": "354290|514125", "text": "Episodic vomiting" }, { - "baseId": "354292", + "upstreamId": "354292", "text": "Bilateral lesions of basal ganglia" }, { - "baseId": "354294", + "upstreamId": "354294", "text": "Parkinsonism-plus" }, { - "baseId": "354294", + "upstreamId": "354294", "text": "Atrophy of the brain and cerebellum" }, { - "baseId": "354296|354297", + "upstreamId": "354296|354297", "text": "Hyperlactaemia" }, { - "baseId": "354296|354297|446889", + "upstreamId": "354296|354297|446889", "text": "Muscular hypotonia of the trunk" }, { - "baseId": "354297", + "upstreamId": "354297", "text": "CHARCOT-MARIE-TOOTH DISEASE, AXONAL, MITOCHONDRIAL FORM, 1" }, { - "baseId": "354298", + "upstreamId": "354298", "text": "Hepatitis" }, { - "baseId": "354298", + "upstreamId": "354298", "text": "Hepatic steatosis" }, { - "baseId": "354298", + "upstreamId": "354298", "text": "Fibrosis" }, { - "baseId": "359035|461414|461426|461588|461590|461930|462253|462256|526456|526463|526747|526989|526993|564867|567480|567485|640391|650389|784160|820412|838917|838918|838919|838920|838921|838922|851459|920301|926369|935755|935756|956638|956639|960011", + "upstreamId": "359035|461414|461426|461588|461590|461930|462253|462256|526456|526463|526747|526989|526993|564867|567480|567485|640391|650389|784160|820412|838917|838918|838919|838920|838921|838922|851459|920301|926369|935755|935756|956638|956639|960011", "text": "Epilepsy, familial temporal lobe, 8" }, { - "baseId": "359044|513451|905063", + "upstreamId": "359044|513451|905063", "text": "Fanconi anemia, complementation group R" }, { - "baseId": "359045|359046", + "upstreamId": "359045|359046", "text": "Osteogenesis imperfecta, type xvii" }, { - "baseId": "359052|513389", + "upstreamId": "359052|513389", "text": "Syndromic X-linked intellectual disability Shashi type" }, { - "baseId": "359054|677062", + "upstreamId": "359054|677062", "text": "Mitochondrial complex 1 deficiency, nuclear type 30" }, { - "baseId": "359059|359060|792487|971225", + "upstreamId": "359059|359060|792487|971225", "text": "Immunodeficiency 50" }, { - "baseId": "359064|359065", + "upstreamId": "359064|359065", "text": "Myasthenic syndrome, congenital, 21, presynaptic" }, { - "baseId": "359066|359067|359068|792703", + "upstreamId": "359066|359067|359068|792703", "text": "Structural brain anomalies with impaired intellectual development and craniosynostosis" }, { - "baseId": "359069|969279", + "upstreamId": "359069|969279", "text": "Craniosynostosis 6" }, { - "baseId": "359070|359071|359072", + "upstreamId": "359070|359071|359072", "text": "Myopia 25, autosomal dominant" }, { - "baseId": "359074|359075", + "upstreamId": "359074|359075", "text": "Cataract 34, multiple types" }, { - "baseId": "359101", + "upstreamId": "359101", "text": "Fanconi anemia, complementation group V" }, { - "baseId": "359102|359103|359104", + "upstreamId": "359102|359103|359104", "text": "Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal recessive 2" }, { - "baseId": "359105|359106|513240", + "upstreamId": "359105|359106|513240", "text": "Encephalopathy, progressive, with amyotrophy and optic atrophy" }, { - "baseId": "359107|359108", + "upstreamId": "359107|359108", "text": "Sedoheptulokinase deficiency" }, { - "baseId": "359114|359115|359116|359117|961759", + "upstreamId": "359114|359115|359116|359117|961759", "text": "3-methylglutaconic aciduria, type VIII" }, { - "baseId": "359123", + "upstreamId": "359123", "text": "Mental retardation, autosomal recessive 50" }, { - "baseId": "359125|359126|359127|359128|359129|359130|359132|611602|861671", + "upstreamId": "359125|359126|359127|359128|359129|359130|359132|611602|861671", "text": "Sudden cardiac failure, infantile" }, { - "baseId": "359127|359131", + "upstreamId": "359127|359131", "text": "Sudden cardiac failure, alcohol-induced" }, { - "baseId": "359133|359134|359135|359136|359137", + "upstreamId": "359133|359134|359135|359136|359137", "text": "Preimplantation embryonic lethality 2" }, { - "baseId": "359138|359139|359140|363787|626058|858659", + "upstreamId": "359138|359139|359140|363787|626058|858659", "text": "Al-Raqad syndrome" }, { - "baseId": "359142|359143|359144|359145|359146|359147|361796|361797|361798|361799|406472|421504|453638|453654|453659|453660|453662|453904|453906|454077|454078|454451|454453|454461|454465|454466|481467|520315|520552|520558|520560|520563|520564|520597|520610|520616|520619|520623|538983|550114|559823|559845|559847|559849|559851|559968|562305|562306|562308|564122|564123|564131|564133|564138|564142|632539|632540|632541|632542|632543|632544|632545|632546|632547|632548|632549|632550|632551|632552|651270|651284|651285|651298|651302|691642|695249|698720|734796|749126|764674|790488|829564|829565|829566|829567|829568|829569|829570|829571|829572|829573|829574|829575|829576|829577|829578|829579|904450|923626|932486|932487|932488|932489|932490|939758|939974|944157|944158|944159|953875|953876|953877|953878|960544", + "upstreamId": "359142|359143|359144|359145|359146|359147|361796|361797|361798|361799|406472|421504|453638|453654|453659|453660|453662|453904|453906|454077|454078|454451|454453|454461|454465|454466|481467|520315|520552|520558|520560|520563|520564|520597|520610|520616|520619|520623|538983|550114|559823|559845|559847|559849|559851|559968|562305|562306|562308|564122|564123|564131|564133|564138|564142|632539|632540|632541|632542|632543|632544|632545|632546|632547|632548|632549|632550|632551|632552|651270|651284|651285|651298|651302|691642|695249|698720|734796|749126|764674|790488|829564|829565|829566|829567|829568|829569|829570|829571|829572|829573|829574|829575|829576|829577|829578|829579|904450|923626|932486|932487|932488|932489|932490|939758|939974|944157|944158|944159|953875|953876|953877|953878|960544", "text": "Neuropathy, hereditary motor and sensory, type 6B" }, { - "baseId": "359148|359149|359150|452804|452816|453164|453165|453168|453178|453206|453208|453216|453217|453578|453580|453581|519617|519619|519629|519630|519633|519639|519644|519670|519672|519906|519908|519910|519911|519913|519915|519916|519917|519918|519920|519923|519927|559539|559541|559688|559690|559692|559694|561835|563326|612666|631816|631817|631818|631819|631820|631821|631822|631823|631824|631825|631826|631827|631828|631829|631830|631831|631832|631833|631834|631835|631836|631837|631838|631839|651094|651136|698312|698313|709076|709077|709079|709080|709081|709082|709083|720672|720673|720674|720675|720676|734335|734336|748576|748578|748580|764203|764206|764208|764211|790425|819428|828609|828610|828611|828612|828613|828614|828615|828616|828617|828618|828619|828620|828621|828622|828623|828624|828625|851104|851477|923370|923371|923372|923373|932098|932099|932100|932101|932102|932103|932104|932105|940767|940768|940769|943721|943722|943723|943724|943725|943726|943727|943728|943729|943730|953604|953605|953606|953607|953608|953609|959709|960525", + "upstreamId": "359148|359149|359150|452804|452816|453164|453165|453168|453178|453206|453208|453216|453217|453578|453580|453581|519617|519619|519629|519630|519633|519639|519644|519670|519672|519906|519908|519910|519911|519913|519915|519916|519917|519918|519920|519923|519927|559539|559541|559688|559690|559692|559694|561835|563326|612666|631816|631817|631818|631819|631820|631821|631822|631823|631824|631825|631826|631827|631828|631829|631830|631831|631832|631833|631834|631835|631836|631837|631838|631839|651094|651136|698312|698313|709076|709077|709079|709080|709081|709082|709083|720672|720673|720674|720675|720676|734335|734336|748576|748578|748580|764203|764206|764208|764211|790425|819428|828609|828610|828611|828612|828613|828614|828615|828616|828617|828618|828619|828620|828621|828622|828623|828624|828625|851104|851477|923370|923371|923372|923373|932098|932099|932100|932101|932102|932103|932104|932105|940767|940768|940769|943721|943722|943723|943724|943725|943726|943727|943728|943729|943730|953604|953605|953606|953607|953608|953609|959709|960525", "text": "Candidiasis, familial, 9" }, { - "baseId": "359151|359152|359153|679842|679843|679844", + "upstreamId": "359151|359152|359153|679842|679843|679844", "text": "Combined oxidative phosphorylation deficiency 26" }, { - "baseId": "359165|359166|359167|404745|513191", + "upstreamId": "359165|359166|359167|404745|513191", "text": "Primary autosomal recessive microcephaly 15" }, { - "baseId": "359168", + "upstreamId": "359168", "text": "Muscular dystrophy, limb-girdle, type 2z" }, { - "baseId": "359174|359175|359176|359177|359178|359179|359180|552398|919240", + "upstreamId": "359174|359175|359176|359177|359178|359179|359180|552398|919240", "text": "Cone-rod dystrophy and hearing loss 1" }, { - "baseId": "359181|359182|359183|359184|359185", + "upstreamId": "359181|359182|359183|359184|359185", "text": "Lissencephaly 8" }, { - "baseId": "359186|359187|359188|359189|359190|622409", + "upstreamId": "359186|359187|359188|359189|359190|622409", "text": "Myopathy, myofibrillar, 8" }, { - "baseId": "359191|359192|802256", + "upstreamId": "359191|359192|802256", "text": "Ventricular tachycardia, catecholaminergic polymorphic, 3" }, { - "baseId": "359193|359194", + "upstreamId": "359193|359194", "text": "Seckel syndrome 10" }, { - "baseId": "359214|361127", + "upstreamId": "359214|361127", "text": "dysmorphy" }, { - "baseId": "359518|620158", + "upstreamId": "359518|620158", "text": "PROM1-Related Disorders" }, { - "baseId": "359552|360867", + "upstreamId": "359552|360867", "text": "Erythroderma" }, { - "baseId": "359708|551483", + "upstreamId": "359708|551483", "text": "Mungan syndrome" }, { - "baseId": "359762", + "upstreamId": "359762", "text": "Rectal prolapse" }, { - "baseId": "359762", + "upstreamId": "359762", "text": "Stress urinary incontinence" }, { - "baseId": "359762|485953", + "upstreamId": "359762|485953", "text": "Secundum atrial septal defect" }, { - "baseId": "359788", + "upstreamId": "359788", "text": "BRAT1-associated neurodegenerative disorder" }, { - "baseId": "359832|407888|411619", + "upstreamId": "359832|407888|411619", "text": "Retinitis pigmentosa 79" }, { - "baseId": "359832|407887|407888|590982|903568", + "upstreamId": "359832|407887|407888|590982|903568", "text": "Neurodevelopmental disorder with visual defects and brain anomalies" }, { - "baseId": "359990|590707|590708|610626|610627|623108|623109|623110|791144|917770|917778|974494", + "upstreamId": "359990|590707|590708|610626|610627|623108|623109|623110|791144|917770|917778|974494", "text": "Cardiac-urogenital syndrome" }, { - "baseId": "360150|919607", + "upstreamId": "360150|919607", "text": "Hypopigmentation, organomegaly, and delayed myelination and development" }, { - "baseId": "360260|424588|424590|424592|424594|424595|677059|678074|788914|816529|903623|919764|919765|920380|961338|964922", + "upstreamId": "360260|424588|424590|424592|424594|424595|677059|678074|788914|816529|903623|919764|919765|920380|961338|964922", "text": "Neurodevelopmental disorder with dysmorphic facies and distal limb anomalies" }, { - "baseId": "360454|420010|420017", + "upstreamId": "360454|420010|420017", "text": "Retinal dystrophy with or without macular staphyloma" }, { - "baseId": "360576|434678|495875", + "upstreamId": "360576|434678|495875", "text": "PIGT-related disorder" }, { - "baseId": "360579", + "upstreamId": "360579", "text": "CSNK2A1- Related Disorders" }, { - "baseId": "360798|360810|360916|361025", + "upstreamId": "360798|360810|360916|361025", "text": "Pain" }, { - "baseId": "360799", + "upstreamId": "360799", "text": "Vitiligo" }, { - "baseId": "360799", + "upstreamId": "360799", "text": "EMG: axonal abnormality" }, { - "baseId": "360805", + "upstreamId": "360805", "text": "Abdominal colic" }, { - "baseId": "360806|800787", + "upstreamId": "360806|800787", "text": "EMG: neuropathic changes" }, { - "baseId": "360806", + "upstreamId": "360806", "text": "Limb muscle weakness" }, { - "baseId": "360807|361005|445123|590074|590075|679509|679510|679511|679512|679513", + "upstreamId": "360807|361005|445123|590074|590075|679509|679510|679511|679512|679513", "text": "Respiratory distress" }, { - "baseId": "360809|360926", + "upstreamId": "360809|360926", "text": "Fever" }, { - "baseId": "360809|590545|619855|966700", + "upstreamId": "360809|590545|619855|966700", "text": "Pleural effusion" }, { - "baseId": "360809|619855", + "upstreamId": "360809|619855", "text": "Pericardial effusion" }, { - "baseId": "360812|360997|568036|581714|801191", + "upstreamId": "360812|360997|568036|581714|801191", "text": "Myoclonus" }, { - "baseId": "360814|439633|439634|439635|514075", + "upstreamId": "360814|439633|439634|439635|514075", "text": "Abnormality of vision" }, { - "baseId": "360814", + "upstreamId": "360814", "text": "Congenital blindness" }, { - "baseId": "360815|360816|445093|610529|610563|610564|610565", + "upstreamId": "360815|360816|445093|610529|610563|610564|610565", "text": "Retinopathy" }, { - "baseId": "360823|360824", + "upstreamId": "360823|360824", "text": "Pain insensitivity" }, { - "baseId": "360825", + "upstreamId": "360825", "text": "Abnormal liver function tests during pregnancy" }, { - "baseId": "360825", + "upstreamId": "360825", "text": "Intrahepatic Cholestasis" }, { - "baseId": "360825", + "upstreamId": "360825", "text": "Pruritus" }, { - "baseId": "360826", + "upstreamId": "360826", "text": "Prolactin-producing pituitary gland adenoma" }, { - "baseId": "360835", + "upstreamId": "360835", "text": "Stiff skin" }, { - "baseId": "360835|513930", + "upstreamId": "360835|513930", "text": "Arthralgia" }, { - "baseId": "360837|360838|481389", + "upstreamId": "360837|360838|481389", "text": "Breathing dysregulation" }, { - "baseId": "360839", + "upstreamId": "360839", "text": "Clonus" }, { - "baseId": "360839", + "upstreamId": "360839", "text": "Lower limb hyperreflexia" }, { - "baseId": "360843|362226|539978|801192", + "upstreamId": "360843|362226|539978|801192", "text": "Generalized dystonia" }, { - "baseId": "360845", + "upstreamId": "360845", "text": "Hypercalcemia" }, { - "baseId": "360845", + "upstreamId": "360845", "text": "Hypocalciuria" }, { - "baseId": "360850|361041|514221", + "upstreamId": "360850|361041|514221", "text": "Facial asymmetry" }, { - "baseId": "360850|361700|362583|513992|536162|619940", + "upstreamId": "360850|361700|362583|513992|536162|619940", "text": "Hemimegalencephaly" }, { - "baseId": "360852|360853", + "upstreamId": "360852|360853", "text": "Toe syndactyly" }, { - "baseId": "360852|360853", + "upstreamId": "360852|360853", "text": "Finger syndactyly" }, { - "baseId": "360854", + "upstreamId": "360854", "text": "Abnormality of the thyroid gland" }, { - "baseId": "360857", + "upstreamId": "360857", "text": "Anterior creases of earlobe" }, { - "baseId": "360857", + "upstreamId": "360857", "text": "Glabellar hemangioma" }, { - "baseId": "360863", + "upstreamId": "360863", "text": "Elevated systolic blood pressure" }, { - "baseId": "360863", + "upstreamId": "360863", "text": "Elevated diastolic blood pressure" }, { - "baseId": "360871", + "upstreamId": "360871", "text": "Cutaneous finger syndactyly" }, { - "baseId": "360871", + "upstreamId": "360871", "text": "Bilateral microphthalmos" }, { - "baseId": "360871", + "upstreamId": "360871", "text": "Anteverted nares" }, { - "baseId": "360874", + "upstreamId": "360874", "text": "Nail dysplasia" }, { - "baseId": "360874|360928", + "upstreamId": "360874|360928", "text": "Hypertrichosis" }, { - "baseId": "360877", + "upstreamId": "360877", "text": "Preauricular skin tag" }, { - "baseId": "360879", + "upstreamId": "360879", "text": "Opacification of the corneal stroma" }, { - "baseId": "360879", + "upstreamId": "360879", "text": "Bifid nasal tip" }, { - "baseId": "360879", + "upstreamId": "360879", "text": "Upslanted palpebral fissure" }, { - "baseId": "360882", + "upstreamId": "360882", "text": "EMG: myotonic runs" }, { - "baseId": "360884|513212", + "upstreamId": "360884|513212", "text": "Female infertility" }, { - "baseId": "360884", + "upstreamId": "360884", "text": "Abnormality of the ovary" }, { - "baseId": "360893|452274|513974|513975", + "upstreamId": "360893|452274|513974|513975", "text": "Cavernous hemangioma" }, { - "baseId": "360896", + "upstreamId": "360896", "text": "Multiple prenatal fractures" }, { - "baseId": "360897", + "upstreamId": "360897", "text": "Pear-shaped nose" }, { - "baseId": "360897", + "upstreamId": "360897", "text": "Proportionate short stature" }, { - "baseId": "360897|514155", + "upstreamId": "360897|514155", "text": "Alopecia areata" }, { - "baseId": "360904|360905|360937|361107", + "upstreamId": "360904|360905|360937|361107", "text": "Ocular albinism" }, { - "baseId": "360906", + "upstreamId": "360906", "text": "Poor speech" }, { - "baseId": "360906|360970|360971|513914|921240", + "upstreamId": "360906|360970|360971|513914|921240", "text": "Gait disturbance" }, { - "baseId": "360908", + "upstreamId": "360908", "text": "Adenoma sebaceum" }, { - "baseId": "360913|360914", + "upstreamId": "360913|360914", "text": "Trident hand" }, { - "baseId": "360916", + "upstreamId": "360916", "text": "Abnormality of the choroid" }, { - "baseId": "360916", + "upstreamId": "360916", "text": "Visual field defect" }, { - "baseId": "360921", + "upstreamId": "360921", "text": "Aplasia/Hypoplasia of the phalanges of the hand" }, { - "baseId": "360921|513889", + "upstreamId": "360921|513889", "text": "Palpitations" }, { - "baseId": "360921", + "upstreamId": "360921", "text": "Hand oligodactyly" }, { - "baseId": "360921", + "upstreamId": "360921", "text": "Aplasia/Hypoplasia involving the metacarpal bones" }, { - "baseId": "360922|514126", + "upstreamId": "360922|514126", "text": "Arterial tortuosity" }, { - "baseId": "360922", + "upstreamId": "360922", "text": "Aneurysm of descending aorta" }, { - "baseId": "360925", + "upstreamId": "360925", "text": "Conjunctival telangiectasia" }, { - "baseId": "360925|514103|971546", + "upstreamId": "360925|514103|971546", "text": "Oculomotor apraxia" }, { - "baseId": "360926|360927", + "upstreamId": "360926|360927", "text": "Abdominal pain" }, { - "baseId": "360926", + "upstreamId": "360926", "text": "Vomiting" }, { - "baseId": "360926", + "upstreamId": "360926", "text": "Mood changes" }, { - "baseId": "360927", + "upstreamId": "360927", "text": "Elevated urinary delta-aminolevulinic acid" }, { - "baseId": "360927|800788|971289", + "upstreamId": "360927|800788|971289", "text": "Anxiety" }, { - "baseId": "360933|360934|360953|361106", + "upstreamId": "360933|360934|360953|361106", "text": "Hammertoe" }, { - "baseId": "360933|360934|463431|514133|610581|610592", + "upstreamId": "360933|360934|463431|514133|610581|610592", "text": "Progressive muscle weakness" }, { - "baseId": "360939", + "upstreamId": "360939", "text": "Long fingers" }, { - "baseId": "360939", + "upstreamId": "360939", "text": "Astigmatism" }, { - "baseId": "360941", + "upstreamId": "360941", "text": "Aplasia/Hypoplasia of the nails" }, { - "baseId": "360944", + "upstreamId": "360944", "text": "Disproportionate short-limb short stature" }, { - "baseId": "360945|514005|966716|966717", + "upstreamId": "360945|514005|966716|966717", "text": "Short ribs" }, { - "baseId": "360945", + "upstreamId": "360945", "text": "Absent vertebral body mineralization" }, { - "baseId": "360952", + "upstreamId": "360952", "text": "Kayser-Fleischer ring" }, { - "baseId": "360952|512868|513906|513959|513983|514053|514111", + "upstreamId": "360952|512868|513906|513959|513983|514053|514111", "text": "Hand tremor" }, { - "baseId": "360970|360971", + "upstreamId": "360970|360971", "text": "Generalized hyperreflexia" }, { - "baseId": "360973|679854", + "upstreamId": "360973|679854", "text": "Ascending aortic dissection" }, { - "baseId": "360977", + "upstreamId": "360977", "text": "Pectus carinatum" }, { - "baseId": "360979|360984|485953", + "upstreamId": "360979|360984|485953", "text": "Mitral regurgitation" }, { - "baseId": "360984", + "upstreamId": "360984", "text": "Abnormal morphology of the left ventricle" }, { - "baseId": "360986", + "upstreamId": "360986", "text": "Dental enamel pits" }, { - "baseId": "360988", + "upstreamId": "360988", "text": "Renovascular hypertension" }, { - "baseId": "360988|360995|514057", + "upstreamId": "360988|360995|514057", "text": "Hepatic cysts" }, { - "baseId": "360991", + "upstreamId": "360991", "text": "Moderate sensorineural hearing impairment" }, { - "baseId": "360991", + "upstreamId": "360991", "text": "3-4 toe syndactyly" }, { - "baseId": "360992", + "upstreamId": "360992", "text": "Abnormality of the kidney" }, { - "baseId": "360995", + "upstreamId": "360995", "text": "Dilatation of the cerebral artery" }, { - "baseId": "360999|361071", + "upstreamId": "360999|361071", "text": "Thumb deformity (disease)" }, { - "baseId": "361003", + "upstreamId": "361003", "text": "Fetal megacystis" }, { - "baseId": "361003", + "upstreamId": "361003", "text": "Urethral atresia" }, { - "baseId": "361005", + "upstreamId": "361005", "text": "Tongue fasciculations" }, { - "baseId": "361010|514081", + "upstreamId": "361010|514081", "text": "Inguinal freckling" }, { - "baseId": "361013", + "upstreamId": "361013", "text": "Plexiform neurofibroma" }, { - "baseId": "361021", + "upstreamId": "361021", "text": "Peripheral pulmonary artery stenosis" }, { - "baseId": "361022|590093", + "upstreamId": "361022|590093", "text": "Osteopenia" }, { - "baseId": "361022|485950", + "upstreamId": "361022|485950", "text": "Blue sclerae" }, { - "baseId": "361022|966164|966165", + "upstreamId": "361022|966164|966165", "text": "Increased susceptibility to fractures" }, { - "baseId": "361024", + "upstreamId": "361024", "text": "Handgrip myotonia" }, { - "baseId": "361025|513969", + "upstreamId": "361025|513969", "text": "EMG: myotonic discharges" }, { - "baseId": "361034", + "upstreamId": "361034", "text": "Diffuse palmoplantar hyperkeratosis" }, { - "baseId": "361035|513911|513913|513956|964259|976826", + "upstreamId": "361035|513911|513913|513956|964259|976826", "text": "Noncompaction cardiomyopathy" }, { - "baseId": "361036", + "upstreamId": "361036", "text": "Cerebral hypoplasia" }, { - "baseId": "361041", + "upstreamId": "361041", "text": "Single transverse palmar crease" }, { - "baseId": "361042", + "upstreamId": "361042", "text": "Intestinal polyposis" }, { - "baseId": "361042", + "upstreamId": "361042", "text": "Periorbital hyperpigmentation" }, { - "baseId": "361043|679897", + "upstreamId": "361043|679897", "text": "Intention tremor" }, { - "baseId": "361047|513943", + "upstreamId": "361047|513943", "text": "Mildly elevated creatine phosphokinase" }, { - "baseId": "361051", + "upstreamId": "361051", "text": "Proximal amyotrophy" }, { - "baseId": "361068", + "upstreamId": "361068", "text": "Progressive neurodegenerative disease" }, { - "baseId": "361070|513926", + "upstreamId": "361070|513926", "text": "Fatigue" }, { - "baseId": "361070", + "upstreamId": "361070", "text": "Hyperextensible hand joints" }, { - "baseId": "361071", + "upstreamId": "361071", "text": "Facial grimacing" }, { - "baseId": "361072|610493|610494|919955|920428|920429|962058", + "upstreamId": "361072|610493|610494|919955|920428|920429|962058", "text": "Menke-Hennekam syndrome 2" }, { - "baseId": "361073|361074|361075|361076", + "upstreamId": "361073|361074|361075|361076", "text": "Central hypoventilation" }, { - "baseId": "361073|361074|361075|361076|535380", + "upstreamId": "361073|361074|361075|361076|535380", "text": "Progressive microcephaly" }, { - "baseId": "361079|589814|682784|682786|682787|920435", + "upstreamId": "361079|589814|682784|682786|682787|920435", "text": "Spondyloepimetaphyseal dysplasia, X-linked, with hypomyelinating leukodystrophy" }, { - "baseId": "361080|920586", + "upstreamId": "361080|920586", "text": "Pes planus" }, { - "baseId": "361080|513931|514154", + "upstreamId": "361080|513931|514154", "text": "Foot dorsiflexor weakness" }, { - "baseId": "361085", + "upstreamId": "361085", "text": "Decreased glucosephosphate isomerase activity" }, { - "baseId": "361090", + "upstreamId": "361090", "text": "Bowing of the legs" }, { - "baseId": "361090", + "upstreamId": "361090", "text": "Lower limb pain" }, { - "baseId": "361090|496345", + "upstreamId": "361090|496345", "text": "Hypophosphatemic rickets" }, { - "baseId": "361092", + "upstreamId": "361092", "text": "Proptosis" }, { - "baseId": "361097", + "upstreamId": "361097", "text": "Short lingual frenulum" }, { - "baseId": "361097", + "upstreamId": "361097", "text": "Persistent hyperplastic primary vitreous" }, { - "baseId": "361106|513931", + "upstreamId": "361106|513931", "text": "Peroneal muscle atrophy" }, { - "baseId": "361107", + "upstreamId": "361107", "text": "Poor eye contact" }, { - "baseId": "361109|361110", + "upstreamId": "361109|361110", "text": "Focal white matter lesions" }, { - "baseId": "361115|361116", + "upstreamId": "361115|361116", "text": "Leber plus disease" }, { - "baseId": "361122", + "upstreamId": "361122", "text": "KLF7-related disorder" }, { - "baseId": "361129", + "upstreamId": "361129", "text": "Pierre Robin-like syndrome" }, { - "baseId": "361137", + "upstreamId": "361137", "text": "Retinal dysplasia" }, { - "baseId": "361139|361147", + "upstreamId": "361139|361147", "text": "Language retardation" }, { - "baseId": "361144|540566|540567|540568|540569|624068|626241|779813|791477|798688|920541|971024", + "upstreamId": "361144|540566|540567|540568|540569|624068|626241|779813|791477|798688|920541|971024", "text": "Intellectual developmental disorder with or without epilepsy or cerebellar ataxia" }, { - "baseId": "361145", + "upstreamId": "361145", "text": "Moderate intellectual deficiency" }, { - "baseId": "361237|497803|512523|514782|535277|535278|538269|538273|590340|623357|679936|789399|793863|861600|903681|903689|974884|983615|983630|983631|983632|983633|983634|983635|983636|983637|983638|983639|983640|983641|983642", + "upstreamId": "361237|497803|512523|514782|535277|535278|538269|538273|590340|623357|679936|789399|793863|861600|903681|903689|974884|983615|983630|983631|983632|983633|983634|983635|983636|983637|983638|983639|983640|983641|983642", "text": "Waardenburg syndrome type 2E" }, { - "baseId": "361323", + "upstreamId": "361323", "text": "Subependymal giant-cell astrocytoma" }, { - "baseId": "361335|434702|445216|791396", + "upstreamId": "361335|434702|445216|791396", "text": "Phosphoenolpyruvate carboxykinase deficiency, mitochondrial" }, { - "baseId": "361445|431519|431520|431521|431522|431523|434077|434078|434079|434080", + "upstreamId": "361445|431519|431520|431521|431522|431523|434077|434078|434079|434080", "text": "STAG1-related disorder" }, { - "baseId": "361695|361696|364179", + "upstreamId": "361695|361696|364179", "text": "Abnormality of skeletal morphology" }, { - "baseId": "361695|361696|906204|917742|917743|917744|919190|919191|925413|971279|971280|971281|975862", + "upstreamId": "361695|361696|906204|917742|917743|917744|919190|919191|925413|971279|971280|971281|975862", "text": "Congenital heart defects and skeletal malformations syndrome" }, { - "baseId": "361709", + "upstreamId": "361709", "text": "Pemigatinib resistance" }, { - "baseId": "361712", + "upstreamId": "361712", "text": "FGFR2-related syndromic and non-syndromic craniosynostoses" }, { - "baseId": "361740", + "upstreamId": "361740", "text": "Uncombable hair syndrome 3" }, { - "baseId": "361741|361742|590224|679754", + "upstreamId": "361741|361742|590224|679754", "text": "Hydrops fetalis, nonimmune, and/or atrial septal defect, susceptibility to" }, { - "baseId": "361743|361744|792605|919222|919223", + "upstreamId": "361743|361744|792605|919222|919223", "text": "Glaucoma 3, primary congenital, E" }, { - "baseId": "361745", + "upstreamId": "361745", "text": "Uncombable hair syndrome 2" }, { - "baseId": "361747|361748|361749|361750|538354|654123|798521|798522", + "upstreamId": "361747|361748|361749|361750|538354|654123|798521|798522", "text": "Global developmental delay, absent or hypoplastic corpus callosum, and dysmorphic facies" }, { - "baseId": "361751|361752|361753|361754|361755|361756|789130|791490", + "upstreamId": "361751|361752|361753|361754|361755|361756|789130|791490", "text": "Epileptic encephalopathy, early infantile, 48" }, { - "baseId": "361757|361758|361759|361760|361761|361762|790797|790798|805088", + "upstreamId": "361757|361758|361759|361760|361761|361762|790797|790798|805088", "text": "Epilepsy, early-onset, vitamin b6-dependent" }, { - "baseId": "361767|361768|361769|361770|361771|362584|362590", + "upstreamId": "361767|361768|361769|361770|361771|362584|362590", "text": "Amelogenesis imperfecta, type IJ" }, { - "baseId": "361772|361773|361774", + "upstreamId": "361772|361773|361774", "text": "Uncombable hair syndrome" }, { - "baseId": "361775|361776|361777|361778|361779|361780|361781|361782|446086|481407|513476|539089|539978|539979|539980|539981|539982|539983|553400|581821|581822|679810|798746|798747|798748|798749|798750|806040|858745|919848|920405|963184|964891|971126|976672", + "upstreamId": "361775|361776|361777|361778|361779|361780|361781|361782|446086|481407|513476|539089|539978|539979|539980|539981|539982|539983|553400|581821|581822|679810|798746|798747|798748|798749|798750|806040|858745|919848|920405|963184|964891|971126|976672", "text": "Dystonia 28, childhood-onset" }, { - "baseId": "361783|361784|361786|361787|361788|442819|513407|798471", + "upstreamId": "361783|361784|361786|361787|361788|442819|513407|798471", "text": "Dystonia, childhood-onset, with optic atrophy and basal ganglia abnormalities" }, { - "baseId": "361783|361784|361786|361787|361788|442819", + "upstreamId": "361783|361784|361786|361787|361788|442819", "text": "Childhood Onset Dystonias" }, { - "baseId": "361789|361790", + "upstreamId": "361789|361790", "text": "Tooth agenesis, selective, 9" }, { - "baseId": "361813|361814|361815|424350|425212|434581|578407|920112|920113|920156|920157", + "upstreamId": "361813|361814|361815|424350|425212|434581|578407|920112|920113|920156|920157", "text": "Spastic paraplegia, intellectual disability, nystagmus, and obesity" }, { - "baseId": "361820|361821|361822|361823|361824|361825|788888|906263", + "upstreamId": "361820|361821|361822|361823|361824|361825|788888|906263", "text": "Nephronophthisis 20" }, { - "baseId": "361830|361831|361832|361833|362362|362363", + "upstreamId": "361830|361831|361832|361833|362362|362363", "text": "Epileptic encephalopathy, early infantile, 49" }, { - "baseId": "361859", + "upstreamId": "361859", "text": "Suxamethonium sensitivity" }, { - "baseId": "361877", + "upstreamId": "361877", "text": "Hereditary Mixed Polyposis" }, { - "baseId": "361892", + "upstreamId": "361892", "text": "Optic atrophy 11" }, { - "baseId": "361893", + "upstreamId": "361893", "text": "Mucopolysaccharidosis-plus syndrome" }, { - "baseId": "361894|361895|361896|447915|448245|557286|589796|628031|628032|696764|707425|707426|707427|707428|707430|707431|718981|718982|732485|732486|824137|824138|952442", + "upstreamId": "361894|361895|361896|447915|448245|557286|589796|628031|628032|696764|707425|707426|707427|707428|707430|707431|718981|718982|732485|732486|824137|824138|952442", "text": "Glycine encephalopathy with normal serum glycine" }, { - "baseId": "361897|361899|361900|362088", + "upstreamId": "361897|361899|361900|362088", "text": "Retinitis pigmentosa 77" }, { - "baseId": "361924|362581|553378", + "upstreamId": "361924|362581|553378", "text": "Bile acid synthesis defect, congenital, 6" }, { - "baseId": "362080|362081|439477|439583|550788|583211", + "upstreamId": "362080|362081|439477|439583|550788|583211", "text": "Midface hypoplasia, hearing impairment, elliptocytosis, and nephrocalcinosis" }, { - "baseId": "362082", + "upstreamId": "362082", "text": "Ichthyosis, congenital, autosomal recessive 12" }, { - "baseId": "362085|362086|362087", + "upstreamId": "362085|362086|362087", "text": "Anterior segment dysgenesis 8" }, { - "baseId": "362134", + "upstreamId": "362134", "text": "Abnormality of the basal ganglia" }, { - "baseId": "362134", + "upstreamId": "362134", "text": "Abnormal muscle tone" }, { - "baseId": "362138|362139|389102|414715|446863|446866|513885|626136|790398|903525|918834", + "upstreamId": "362138|362139|389102|414715|446863|446866|513885|626136|790398|903525|918834", "text": "Neurodevelopmental disorder with severe motor impairment and absent language" }, { - "baseId": "362144|362151", + "upstreamId": "362144|362151", "text": "Obsessive-compulsive behavior" }, { - "baseId": "362152", + "upstreamId": "362152", "text": "Neurogenic bladder" }, { - "baseId": "362152", + "upstreamId": "362152", "text": "Broad-based gait" }, { - "baseId": "362154", + "upstreamId": "362154", "text": "Abnormal biliary tract morphology" }, { - "baseId": "362154", + "upstreamId": "362154", "text": "Asplenia" }, { - "baseId": "362154", + "upstreamId": "362154", "text": "Reduced number of intrahepatic bile ducts" }, { - "baseId": "362154", + "upstreamId": "362154", "text": "Duodenal atresia (disease)" }, { - "baseId": "362158|362159|422029|553300|590082|858765|858766", + "upstreamId": "362158|362159|422029|553300|590082|858765|858766", "text": "Relative macrocephaly" }, { - "baseId": "362165", + "upstreamId": "362165", "text": "Cerebellar vermis atrophy" }, { - "baseId": "362179", + "upstreamId": "362179", "text": "Mental retardation, autosomal recessive 59" }, { - "baseId": "362182|683224", + "upstreamId": "362182|683224", "text": "Multiple mitochondrial dysfunctions syndrome 5" }, { - "baseId": "362204", + "upstreamId": "362204", "text": "Hypertelorism and tetralogy of fallot" }, { - "baseId": "362225", + "upstreamId": "362225", "text": "Cronkhite-Canada syndrome" }, { - "baseId": "362226", + "upstreamId": "362226", "text": "Functional motor deficit" }, { - "baseId": "362285", + "upstreamId": "362285", "text": "Ectodermal dysplasia 12, hypohidrotic/hair/tooth/nail type" }, { - "baseId": "362372|362373|553404|706045|858295|905813", + "upstreamId": "362372|362373|553404|706045|858295|905813", "text": "Ciliary dyskinesia, primary, 36, X-linked" }, { - "baseId": "362374|362375|362376|362377|362377|362378|425883|460061|497142|563876|837143", + "upstreamId": "362374|362375|362376|362377|362377|362378|425883|460061|497142|563876|837143", "text": "Nemaline myopathy 11, autosomal recessive" }, { - "baseId": "362402|362403", + "upstreamId": "362402|362403", "text": "Cerebroretinal microangiopathy with calcifications and cysts 2" }, { - "baseId": "362450", + "upstreamId": "362450", "text": "Abnormality of lipid metabolism" }, { - "baseId": "362479|362480|362481|362482|362483|514308|514309", + "upstreamId": "362479|362480|362481|362482|362483|514308|514309", "text": "Grange syndrome" }, { - "baseId": "362492|362493", + "upstreamId": "362492|362493", "text": "Aortic aneurysm, familial thoracic 11, susceptibility to" }, { - "baseId": "362494", + "upstreamId": "362494", "text": "nicotine response - Efficacy, Toxicity/ADR" }, { - "baseId": "362499", + "upstreamId": "362499", "text": "ethambutol, isoniazid, pyrazinamide, and rifampin response - Toxicity/ADR" }, { - "baseId": "362503", + "upstreamId": "362503", "text": "rosiglitazone response - Metabolism/PK" }, { - "baseId": "362504", + "upstreamId": "362504", "text": "cocaine response - Toxicity/ADR" }, { - "baseId": "362506", + "upstreamId": "362506", "text": "nicotine response - Toxicity/ADR, Metabolism/PK" }, { - "baseId": "362507", + "upstreamId": "362507", "text": "captopril response - Efficacy" }, { - "baseId": "362508", + "upstreamId": "362508", "text": "capecitabine response - Efficacy" }, { - "baseId": "362509", + "upstreamId": "362509", "text": "peginterferon alfa-2a response - Efficacy" }, { - "baseId": "362591|362592|362593|362594|550609", + "upstreamId": "362591|362592|362593|362594|550609", "text": "Intellectual developmental disorder with dysmorphic facies, seizures, and distal limb anomalies" }, { - "baseId": "362595|590711|590712|590713", + "upstreamId": "362595|590711|590712|590713", "text": "Autosomal recessive non-syndromic intellectual disability" }, { - "baseId": "362596", + "upstreamId": "362596", "text": "Syndromic intellectual disability, X-linked" }, { - "baseId": "362616|362617", + "upstreamId": "362616|362617", "text": "Mental retardation, autosomal recessive 60" }, { - "baseId": "362625|362626|791399|919526|970993", + "upstreamId": "362625|362626|791399|919526|970993", "text": "Congenital heart defects and ectodermal dysplasia" }, { - "baseId": "362644|424978", + "upstreamId": "362644|424978", "text": "Short nose" }, { - "baseId": "362736", + "upstreamId": "362736", "text": "Familial aortic aneurysms" }, { - "baseId": "362740", + "upstreamId": "362740", "text": "Hereditary mixed polyposis syndrome" }, { - "baseId": "362757|363157|363158", + "upstreamId": "362757|363157|363158", "text": "Squamous cell carcinoma" }, { - "baseId": "362775", + "upstreamId": "362775", "text": "Histone Methylation Therapy response" }, { - "baseId": "362834|362836|362880|362881|363190|451841|622029|622030", + "upstreamId": "362834|362836|362880|362881|363190|451841|622029|622030", "text": "Uveal melanoma" }, { - "baseId": "362901|615336|615547|615747", + "upstreamId": "362901|615336|615547|615747", "text": "Abnormal platelet function" }, { - "baseId": "362909", + "upstreamId": "362909", "text": "Leukemia, acute, ?X-linked" }, { - "baseId": "362943|363140|363142|983779|983780|983781|983782|983783|983784", + "upstreamId": "362943|363140|363142|983779|983780|983781|983782|983783|983784", "text": "Vascular Malformations and Overgrowth" }, { - "baseId": "362955|363107", + "upstreamId": "362955|363107", "text": "Esophageal Squamous Cell Carcinoma" }, { - "baseId": "362992|362993|362995", + "upstreamId": "362992|362993|362995", "text": "Leukemoid Reaction" }, { - "baseId": "363027|583093", + "upstreamId": "363027|583093", "text": "Mast cell disease, systemic" }, { - "baseId": "363110|363114", + "upstreamId": "363110|363114", "text": "Neoplasm of the parathyroid gland" }, { - "baseId": "363227", + "upstreamId": "363227", "text": "Granulosa Cell Tumor" }, { - "baseId": "363228|363229|363230", + "upstreamId": "363228|363229|363230", "text": "Leukemia-Lymphoma, Adult T-Cell" }, { - "baseId": "363238", + "upstreamId": "363238", "text": "Trabecular adenocarcinoma" }, { - "baseId": "363345|438544|438545|438546", + "upstreamId": "363345|438544|438545|438546", "text": "Immunodeficiency, developmental delay, and hypohomocysteinemia" }, { - "baseId": "363377", + "upstreamId": "363377", "text": "Intestinal duplication" }, { - "baseId": "363377", + "upstreamId": "363377", "text": "Megalencephaly" }, { - "baseId": "363377", + "upstreamId": "363377", "text": "Abnormality of the hairline" }, { - "baseId": "363377", + "upstreamId": "363377", "text": "Diaphragmatic eventration" }, { - "baseId": "363379|513783", + "upstreamId": "363379|513783", "text": "Anti-PDL1 response" }, { - "baseId": "363630", + "upstreamId": "363630", "text": "Agammaglobulinemia" }, { - "baseId": "363638", + "upstreamId": "363638", "text": "Wilms tumor, aniridia, genitourinary anomalies, mental retardation, and obesity syndrome" }, { - "baseId": "363734|490691", + "upstreamId": "363734|490691", "text": "Mitochondrial complex 1 deficiency, nuclear type 15" }, { - "baseId": "363926|516598", + "upstreamId": "363926|516598", "text": "IFIH1-related immunodeficiency" }, { - "baseId": "364270|364271|364278|364279|389089|389090|389091", + "upstreamId": "364270|364271|364278|364279|389089|389090|389091", "text": "Mental retardation, autosomal dominant" }, { - "baseId": "364928", + "upstreamId": "364928", "text": "ACTA1 gene related myopathy" }, { - "baseId": "365258|365560|628286", + "upstreamId": "365258|365560|628286", "text": "Myopathy, epilepsy, and progressive cerebral atrophy" }, { - "baseId": "365915", + "upstreamId": "365915", "text": "SCN9A-related disorders" }, { - "baseId": "366957", + "upstreamId": "366957", "text": "STAG1-Related Disorders" }, { - "baseId": "367600", + "upstreamId": "367600", "text": "SETD2-related disorder" }, { - "baseId": "369376|695384", + "upstreamId": "369376|695384", "text": "PLEC-related epidermolysis bullosa" }, { - "baseId": "372454|621008|959510", + "upstreamId": "372454|621008|959510", "text": "Deafness, autosomal recessive 94" }, { - "baseId": "373902|904882|984269", + "upstreamId": "373902|904882|984269", "text": "Neurodevelopmental disorder with epilepsy, spasticity, and brain atrophy" }, { - "baseId": "373902|419135|419136|419137|682323|798619|816403|961417|963332|963333", + "upstreamId": "373902|419135|419136|419137|682323|798619|816403|961417|963332|963333", "text": "Neurodevelopmental disorder with progressive microcephaly, spasticity, and brain anomalies" }, { - "baseId": "375180", + "upstreamId": "375180", "text": "TUBA1A-associated tubulinopathy" }, { - "baseId": "375263|613443", + "upstreamId": "375263|613443", "text": "COGNITIVE IMPAIRMENT WITHOUT CEREBELLAR ATAXIA" }, { - "baseId": "375817|801257", + "upstreamId": "375817|801257", "text": "Abnormality of the cerebellum" }, { - "baseId": "375817", + "upstreamId": "375817", "text": "Hyperkinesis" }, { - "baseId": "377094|378137|404746", + "upstreamId": "377094|378137|404746", "text": "Intervertebral disc disorder" }, { - "baseId": "377094|513966|514139|800575|962074", + "upstreamId": "377094|513966|514139|800575|962074", "text": "Retinal detachment" }, { - "baseId": "377094|962074", + "upstreamId": "377094|962074", "text": "Lattice retinal degeneration" }, { - "baseId": "377366|508921|508922|512856|975671", + "upstreamId": "377366|508921|508922|512856|975671", "text": "Persistent Mullerian duct syndrome" }, { - "baseId": "377641", + "upstreamId": "377641", "text": "Rib fusion" }, { - "baseId": "377731", + "upstreamId": "377731", "text": "Disrupted sleep-wake cycle with developmental delay and learning difficulty" }, { - "baseId": "377844|679430", + "upstreamId": "377844|679430", "text": "Family history of sudden cardiac death" }, { - "baseId": "379403|857584", + "upstreamId": "379403|857584", "text": "Congenital disorder of glycosylation, type IIr" }, { - "baseId": "379911", + "upstreamId": "379911", "text": "GRIA3-Related Disorder" }, { - "baseId": "380151|380152", + "upstreamId": "380151|380152", "text": "Peroxisome biogenesis disorder 10b" }, { - "baseId": "380157|380158|380159|624072|681918|681919|681920|681921|681922|790971|858815|858816|858817|858818", + "upstreamId": "380157|380158|380159|624072|681918|681919|681920|681921|681922|790971|858815|858816|858817|858818", "text": "Hyperphenylalaninemia, mild, non-bh4-deficient" }, { - "baseId": "380164|380165|797580|919750", + "upstreamId": "380164|380165|797580|919750", "text": "Autoinflammation with arthritis and dyskeratosis" }, { - "baseId": "380285", + "upstreamId": "380285", "text": "46,XY sex reversal, type 4" }, { - "baseId": "380291", + "upstreamId": "380291", "text": "Ectodermal dysplasia 13, hair/tooth type" }, { - "baseId": "380469", + "upstreamId": "380469", "text": "Cutaneous leiomyoma" }, { - "baseId": "380479|380480|404637|404638|404639", + "upstreamId": "380479|380480|404637|404638|404639", "text": "Anauxetic dysplasia 2" }, { - "baseId": "383299|613885|969292", + "upstreamId": "383299|613885|969292", "text": "Cat eye syndrome" }, { - "baseId": "384424", + "upstreamId": "384424", "text": "Mutism" }, { - "baseId": "384424|983555", + "upstreamId": "384424|983555", "text": "Psychosis" }, { - "baseId": "384445|514159|514160|590046", + "upstreamId": "384445|514159|514160|590046", "text": "Profound global developmental delay" }, { - "baseId": "384446|384447|792008", + "upstreamId": "384446|384447|792008", "text": "Early infantile epileptic encephalopathy 55" }, { - "baseId": "384448|384449|384450|434390|434391|790305|920183", + "upstreamId": "384448|384449|384450|434390|434391|790305|920183", "text": "Pontocerebellar hypoplasia, type 11" }, { - "baseId": "384625", + "upstreamId": "384625", "text": "Idiopathic scoliosis" }, { - "baseId": "389089|389091|679592|679593|679594|679595|679596|789743|789744|816468|964924", + "upstreamId": "389089|389091|679592|679593|679594|679595|679596|789743|789744|816468|964924", "text": "Weiss-kruszka syndrome" }, { - "baseId": "389122|514297|514298", + "upstreamId": "389122|514297|514298", "text": "Developmental and epileptic encephalopathy, 63" }, { - "baseId": "389127|389128|510989|510990|513202|550560|550561|553136|553137|553138|553139|553140|553141|553142|581225|581226|816460|861566|861567|964828|964829|984265|984268", + "upstreamId": "389127|389128|510989|510990|513202|550560|550561|553136|553137|553138|553139|553140|553141|553142|581225|581226|816460|861566|861567|964828|964829|984265|984268", "text": "Neurodevelopmental disorder with microcephaly, seizures, and cortical atrophy" }, { - "baseId": "389133|622936|622937|622938|622939|622940|622941|622942|679879|679880|679881|679882|679883|679884|816465|970841", + "upstreamId": "389133|622936|622937|622938|622939|622940|622941|622942|679879|679880|679881|679882|679883|679884|816465|970841", "text": "Developmental and epileptic encephalopathy, 76" }, { - "baseId": "389153|679682|679685|679686|792633", + "upstreamId": "389153|679682|679685|679686|792633", "text": "Neurodevelopmental disorder with brain anomalies and with or without vertebral or cardiac anomalies" }, { - "baseId": "389153|679672|679673|679674|679675|679676|679677|679678|679679|679680|679681|679682|679683|679684|679685|679686|679687|679688|679689", + "upstreamId": "389153|679672|679673|679674|679675|679676|679677|679678|679679|679680|679681|679682|679683|679684|679685|679686|679687|679688|679689", "text": "Neurodevelopmental disorders" }, { - "baseId": "389763|563602|634913|686861|972824|972827|972828|983793|983794|983795", + "upstreamId": "389763|563602|634913|686861|972824|972827|972828|983793|983794|983795", "text": "Spermatogenic failure 46" }, { - "baseId": "390062|390599|462450|463295|463308|512979", + "upstreamId": "390062|390599|462450|463295|463308|512979", "text": "Glaucoma 1, open angle, p" }, { - "baseId": "390431|470227|470757|470764|471279|471280|533358|533359|533361|533439|533441|533874|533878|571068|572783|573400|648438|648439|648440|648441|648442|648443|648444|648445|648446|716655|716656|728381|728382|742098|821286|848029|848030|848031|848032|848033|848034|848035|848036|848037|848038|848039|848040|848041|929100|929101|929102|929103|938842|938843|950907|950908|950909|950910|958727|958728", + "upstreamId": "390431|470227|470757|470764|471279|471280|533358|533359|533361|533439|533441|533874|533878|571068|572783|573400|648438|648439|648440|648441|648442|648443|648444|648445|648446|716655|716656|728381|728382|742098|821286|848029|848030|848031|848032|848033|848034|848035|848036|848037|848038|848039|848040|848041|929100|929101|929102|929103|938842|938843|950907|950908|950909|950910|958727|958728", "text": "Periodontitis" }, { - "baseId": "390603|575507", + "upstreamId": "390603|575507", "text": "TSPEAR-related disorder of tooth and hair follicle morphogenesis" }, { - "baseId": "390704|390705|390706|390707|390708|853053|853054|853055|853056|857392|857393", + "upstreamId": "390704|390705|390706|390707|390708|853053|853054|853055|853056|857392|857393", "text": "Congenital NAD deficiency disorder" }, { - "baseId": "390704|390705|390706", + "upstreamId": "390704|390705|390706", "text": "Vertebral, cardiac, renal, and limb defects syndrome 2" }, { - "baseId": "390707|390708|792730", + "upstreamId": "390707|390708|792730", "text": "Vertebral, cardiac, renal, and limb defects syndrome 1" }, { - "baseId": "391112", + "upstreamId": "391112", "text": "Hemoglobin, high altitude adaptation" }, { - "baseId": "393998", + "upstreamId": "393998", "text": "Impaired thermal sensitivity" }, { - "baseId": "395447", + "upstreamId": "395447", "text": "DSP-Related Disorders" }, { - "baseId": "397398|407634", + "upstreamId": "397398|407634", "text": "GRIN1-Related Disorder" }, { - "baseId": "397946|514059|514208|620168|623603|971435", + "upstreamId": "397946|514059|514208|620168|623603|971435", "text": "Hemangioma" }, { - "baseId": "398572", + "upstreamId": "398572", "text": "Beckwith-Wiedemann syndrome due to CDKN1C mutation" }, { - "baseId": "400294|643484|678093|678094|678095|678096|678097|678098|678099|678100|678101|678102|678103|678104|678105|678106|678107|678108|678109|678110|678111|678112|678113|678114", + "upstreamId": "400294|643484|678093|678094|678095|678096|678097|678098|678099|678100|678101|678102|678103|678104|678105|678106|678107|678108|678109|678110|678111|678112|678113|678114", "text": "Radioulnar synostosis" }, { - "baseId": "400923", + "upstreamId": "400923", "text": "TSC2-Related Disorder" }, { - "baseId": "404612|404613|404614|404615|404616", + "upstreamId": "404612|404613|404614|404615|404616", "text": "TRIT1 Deficiency" }, { - "baseId": "404612|404613|404614|404615|404616|425370|485882", + "upstreamId": "404612|404613|404614|404615|404616|425370|485882", "text": "Combined oxidative phosphorylation deficiency 35" }, { - "baseId": "404617|413182|418811|418812|611800|789145|789146|789147|789148|789149|789150|789151|789152|818310|818311", + "upstreamId": "404617|413182|418811|418812|611800|789145|789146|789147|789148|789149|789150|789151|789152|818310|818311", "text": "Intellectual developmental disorder and retinitis pigmentosa" }, { - "baseId": "404617|413182|418811|418812|611800|789145|789146|789147|789148|789149|789150|789151|789152|818310|818311", + "upstreamId": "404617|413182|418811|418812|611800|789145|789146|789147|789148|789149|789150|789151|789152|818310|818311", "text": " IDDRP" }, { - "baseId": "404634|404635|404636|980591", + "upstreamId": "404634|404635|404636|980591", "text": "3MC syndrome 3" }, { - "baseId": "404647|404648|404649|404650|404652|514430|677987|677988|677989|677990|677991|677992|677993|677994|920151", + "upstreamId": "404647|404648|404649|404650|404652|514430|677987|677988|677989|677990|677991|677992|677993|677994|920151", "text": "Pontocerebellar hypoplasia, type 7" }, { - "baseId": "404655|404656|404657|404658|404659|802229|802230", + "upstreamId": "404655|404656|404657|404658|404659|802229|802230", "text": "Retinitis pigmentosa 78" }, { - "baseId": "404660|404661", + "upstreamId": "404660|404661", "text": "Autosomal recessive cutis laxa type 2c" }, { - "baseId": "404664|404665", + "upstreamId": "404664|404665", "text": "MacInnes syndrome" }, { - "baseId": "404666", + "upstreamId": "404666", "text": "Diamond-Blackfan anemia 17" }, { - "baseId": "404671|404672|447692|447855|556802|557005|558359|627430|627431|627432|696567|696568|707188|707190|707191|718770|718771|718773|718776|718777|718778|729979|729980|743726|743735|746256|761705|778806|794606|794607|930344|930345|941778", + "upstreamId": "404671|404672|447692|447855|556802|557005|558359|627430|627431|627432|696567|696568|707188|707190|707191|718770|718771|718773|718776|718777|718778|729979|729980|743726|743735|746256|761705|778806|794606|794607|930344|930345|941778", "text": "CONGENITAL DISORDER OF GLYCOSYLATION, TYPE IIq" }, { - "baseId": "404673|404674|918791|920185", + "upstreamId": "404673|404674|918791|920185", "text": "Autosomal recessive cutis laxa type 2d" }, { - "baseId": "404675|404676|799090", + "upstreamId": "404675|404676|799090", "text": "Pseudo-TORCH syndrome 2" }, { - "baseId": "404677", + "upstreamId": "404677", "text": "Diamond-Blackfan anemia 16" }, { - "baseId": "404678|404679|404680|404681|404682|404683|404684", + "upstreamId": "404678|404679|404680|404681|404682|404683|404684", "text": "Muscular dystrophy, congenital, with cataracts and intellectual disability" }, { - "baseId": "404685|919826|920398|920399", + "upstreamId": "404685|919826|920398|920399", "text": "Neurodevelopmental disorder with epilepsy, cataracts, feeding difficulties, and delayed brain myelination" }, { - "baseId": "404687", + "upstreamId": "404687", "text": "Hereditary spastic paraplegia 23" }, { - "baseId": "404692|404693|404694|801576", + "upstreamId": "404692|404693|404694|801576", "text": "Short-rib thoracic dysplasia 17 with or without polydactyly" }, { - "baseId": "404695|404696|404697|612442", + "upstreamId": "404695|404696|404697|612442", "text": "Immunoskeletal dysplasia with neurodevelopmental abnormalities" }, { - "baseId": "404698|423866", + "upstreamId": "404698|423866", "text": "Keloid formation" }, { - "baseId": "404704|404705|404706", + "upstreamId": "404704|404705|404706", "text": "CRANIOSYNOSTOSIS 7, SUSCEPTIBILITY TO" }, { - "baseId": "404771|404772|404773", + "upstreamId": "404771|404772|404773", "text": "Coronary heart disease 7" }, { - "baseId": "404854|404855|405220|427850|438548|550180|609018|789349|918644|964802|969291", + "upstreamId": "404854|404855|405220|427850|438548|550180|609018|789349|918644|964802|969291", "text": "Brain malformations and urinary tract defects" }, { - "baseId": "404856", + "upstreamId": "404856", "text": "Premature ovarian failure 13" }, { - "baseId": "404859|404860", + "upstreamId": "404859|404860", "text": "Thrombocytopenia 3" }, { - "baseId": "404861|816459|980922", + "upstreamId": "404861|816459|980922", "text": "Thrombocytopenia, anemia, and myelofibrosis" }, { - "baseId": "405070", + "upstreamId": "405070", "text": "Huntington disease-like syndrome" }, { - "baseId": "405689|971396", + "upstreamId": "405689|971396", "text": "Abnormality of skin pigmentation" }, { - "baseId": "406053|446889", + "upstreamId": "406053|446889", "text": "Abnormality of the optic nerve" }, { - "baseId": "406284|682982|682984|683085", + "upstreamId": "406284|682982|682984|683085", "text": "Sodium channelopathy-related small fiber neuropathy" }, { - "baseId": "406654", + "upstreamId": "406654", "text": "PPP2R2B-Related Disorder" }, { - "baseId": "406667", + "upstreamId": "406667", "text": "Treacher Collins syndrome" }, { - "baseId": "406680", + "upstreamId": "406680", "text": "GABRA6-Related Disorder" }, { - "baseId": "406735", + "upstreamId": "406735", "text": "SQSTM1-related disorder" }, { - "baseId": "406757", + "upstreamId": "406757", "text": "NDUFAF2-Related Disorders" }, { - "baseId": "406763|538988|583097|622353|789739", + "upstreamId": "406763|538988|583097|622353|789739", "text": "Mental retardation, autosomal dominant 34" }, { - "baseId": "406782|432450|432451|432452|623287|623288|918985|970817", + "upstreamId": "406782|432450|432451|432452|623287|623288|918985|970817", "text": "Pilarowski-Bjornsson syndrome" }, { - "baseId": "407120|427107|427108|427110|553384|561899|614312|614313", + "upstreamId": "407120|427107|427108|427110|553384|561899|614312|614313", "text": "Immunodeficiency 11b with atopic dermatitis" }, { - "baseId": "407259", + "upstreamId": "407259", "text": "HSPB1-Related Disorder" }, { - "baseId": "407275|407279|407280|495362", + "upstreamId": "407275|407279|407280|495362", "text": "COL1A2-Related Disorder" }, { - "baseId": "407647|550740|550741|550742|550743|550744|550745|919220|964326|970905|970906|977238", + "upstreamId": "407647|550740|550741|550742|550743|550744|550745|919220|964326|970905|970906|977238", "text": "Macrocephaly, acquired, with impaired intellectual development" }, { - "baseId": "408356|966205|966207|966208|966213", + "upstreamId": "408356|966205|966207|966208|966213", "text": "Neurodevelopmental disorder with dysmorphic facies, impaired speech, and hypotonia" }, { - "baseId": "408753|432104|539047|970974", + "upstreamId": "408753|432104|539047|970974", "text": "Deafness, autosomal dominant 73" }, { - "baseId": "408795", + "upstreamId": "408795", "text": "COL4A1-Related Disorder" }, { - "baseId": "409073", + "upstreamId": "409073", "text": "CHD8-Related Disorders" }, { - "baseId": "409352|792608", + "upstreamId": "409352|792608", "text": "CHRNA3-related condition" }, { - "baseId": "409578|409583|653803|653804", + "upstreamId": "409578|409583|653803|653804", "text": "Rolandic epilepsy-paroxysmal exercise-induced dystonia-writer's cramp syndrome" }, { - "baseId": "409660|966898|966899|966901|966902|970508|983848", + "upstreamId": "409660|966898|966899|966901|966902|970508|983848", "text": "Vissers-Bodmer syndrome" }, { - "baseId": "409773", + "upstreamId": "409773", "text": "DEHYDRATED HEREDITARY STOMATOCYTOSIS WITH OR WITHOUT PSEUDOHYPERKALEMIA AND/OR PERINATAL EDEMA" }, { - "baseId": "410148", + "upstreamId": "410148", "text": "Ovarian Cancers" }, { - "baseId": "410288|961340", + "upstreamId": "410288|961340", "text": "CHD3-Related Disorder" }, { - "baseId": "410288|512330|540496|540497|540498|540499|540500|540501|540502|540503|540504|540505|540506|540507|540508|540509|540510|540511|540512|540513|540515|920382|964881|971094|971095", + "upstreamId": "410288|512330|540496|540497|540498|540499|540500|540501|540502|540503|540504|540505|540506|540507|540508|540509|540510|540511|540512|540513|540515|920382|964881|971094|971095", "text": "Snijders blok-campeau syndrome" }, { - "baseId": "410530", + "upstreamId": "410530", "text": "Bulbar palsy" }, { - "baseId": "410530", + "upstreamId": "410530", "text": "Recurrent respiratory infections" }, { - "baseId": "410891", + "upstreamId": "410891", "text": "COL6A1-related Disorder" }, { - "baseId": "410924", + "upstreamId": "410924", "text": "Cataract 17" }, { - "baseId": "410985", + "upstreamId": "410985", "text": "MORC2-related developmental disorder" }, { - "baseId": "410985|792534|792585|980603", + "upstreamId": "410985|792534|792585|980603", "text": "DEVELOPMENTAL DELAY, IMPAIRED GROWTH, DYSMORPHIC FACIES, AND AXONAL NEUROPATHY" }, { - "baseId": "410999|411005", + "upstreamId": "410999|411005", "text": "DEPDC5-Related Disorder" }, { - "baseId": "411308", + "upstreamId": "411308", "text": "IL1RAPL1-Related Disorder" }, { - "baseId": "411339", + "upstreamId": "411339", "text": "USP9X related disorders" }, { - "baseId": "411435|822344|822346|822348|822349|822350|966173", + "upstreamId": "411435|822344|822346|822348|822349|822350|966173", "text": "Wieacker-Wolff syndrome, female-restricted" }, { - "baseId": "411489", + "upstreamId": "411489", "text": "ATRX-Related Disorder" }, { - "baseId": "411536|613898|613899|615852|615873", + "upstreamId": "411536|613898|613899|615852|615873", "text": "11q partial monosomy syndrome" }, { - "baseId": "413180|970994", + "upstreamId": "413180|970994", "text": "Townes-Brocks syndrome 2" }, { - "baseId": "413182|609021|798919|800619|800620", + "upstreamId": "413182|609021|798919|800619|800620", "text": "Syndromic retinitis pigmentosa" }, { - "baseId": "413199|413200|413201|413202|413203|413204|540467|540468|788926|963182|963183", + "upstreamId": "413199|413200|413201|413202|413203|413204|540467|540468|788926|963182|963183", "text": "Arthrogryposis multiplex congenita, neurogenic, with myelin defect" }, { - "baseId": "413209|413210|413211|413212|413213|438051|536505|550630|611863|613832|626462|964487|970509", + "upstreamId": "413209|413210|413211|413212|413213|438051|536505|550630|611863|613832|626462|964487|970509", "text": "Intellectual developmental disorder with gastrointestinal difficulties and high pain threshold" }, { - "baseId": "413236|413585|413712|437893|438312|486402|612755|612912|790627|794743|798146|801311|801312|801320|801322|801324|801326|801364", + "upstreamId": "413236|413585|413712|437893|438312|486402|612755|612912|790627|794743|798146|801311|801312|801320|801322|801324|801326|801364", "text": "Isolated macular dystrophy" }, { - "baseId": "413297|578329", + "upstreamId": "413297|578329", "text": "Joubert syndrome 35" }, { - "baseId": "413483|481074|576060|576061|965884|970510", + "upstreamId": "413483|481074|576060|576061|965884|970510", "text": "Neurodevelopmental disorder with structural brain anomalies and dysmorphic facies" }, { - "baseId": "413491|609026|610497", + "upstreamId": "413491|609026|610497", "text": "Combined oxidative phosphorylation deficiency 37" }, { - "baseId": "414000|539139", + "upstreamId": "414000|539139", "text": "Dentinogenesis imperfecta" }, { - "baseId": "414475|414476|414477|414478", + "upstreamId": "414475|414476|414477|414478", "text": "Retinitis pigmentosa with or without skeletal anomalies" }, { - "baseId": "414516|414517|677316|677317|702910|963168", + "upstreamId": "414516|414517|677316|677317|702910|963168", "text": "Structural heart defects and renal anomalies syndrome" }, { - "baseId": "414648|414649|414650|980155|980910", + "upstreamId": "414648|414649|414650|980155|980910", "text": "Cardiac valvular defect, developmental" }, { - "baseId": "414711|414712|414713|414714|622260|622261", + "upstreamId": "414711|414712|414713|414714|622260|622261", "text": "Ichthyosis, congenital, autosomal recessive 14" }, { - "baseId": "415113", + "upstreamId": "415113", "text": "Chronic granulomatous disease due to deficiency of NCF-1" }, { - "baseId": "415242|444691|513599|564063|564950|639325|665615|925986|935257|935258|947157|947158|947159|947160|956289|956290", + "upstreamId": "415242|444691|513599|564063|564950|639325|665615|925986|935257|935258|947157|947158|947159|947160|956289|956290", "text": "de Barsy syndrome" }, { - "baseId": "415499", + "upstreamId": "415499", "text": "SLC6A2-related disorder" }, { - "baseId": "415601", + "upstreamId": "415601", "text": "Decreased activity of mitochondrial complex I" }, { - "baseId": "415601", + "upstreamId": "415601", "text": "Gastrostomy tube feeding in infancy" }, { - "baseId": "416845|513080", + "upstreamId": "416845|513080", "text": "Pancreatic lipase deficiency" }, { - "baseId": "416932", + "upstreamId": "416932", "text": "Beta-aminoisobutyric aciduria" }, { - "baseId": "417078", + "upstreamId": "417078", "text": "Distal trisomy 1p36" }, { - "baseId": "417247|964423|980953", + "upstreamId": "417247|964423|980953", "text": "Craniosynostosis 7" }, { - "baseId": "417544|417545", + "upstreamId": "417544|417545", "text": "Immunodeficiency 52" }, { - "baseId": "417641|417642|417643|417644|417645", + "upstreamId": "417641|417642|417643|417644|417645", "text": "Acute myeloid leukemia with maturation" }, { - "baseId": "417660|417661|417662|798544", + "upstreamId": "417660|417661|417662|798544", "text": "Fibromatosis, gingival, 5" }, { - "baseId": "417868|417869|417870|417871|626376|791821|798723|961337", + "upstreamId": "417868|417869|417870|417871|626376|791821|798723|961337", "text": "Stankiewicz-Isidor syndrome" }, { - "baseId": "418319|418320|418321|418322", + "upstreamId": "418319|418320|418321|418322", "text": "Erythrokeratodermia variabilis et progressiva 4" }, { - "baseId": "418437|788727", + "upstreamId": "418437|788727", "text": "Neurodevelopmental disorder with midbrain and hindbrain malformations" }, { - "baseId": "418797", + "upstreamId": "418797", "text": "Cardio-cutaneous syndrome" }, { - "baseId": "418798", + "upstreamId": "418798", "text": "Hypokinetic non-dilated cardiomyopathy" }, { - "baseId": "419004|419005|419006|419007|419008|419009|419010|419011|419012|419013|538963", + "upstreamId": "419004|419005|419006|419007|419008|419009|419010|419011|419012|419013|538963", "text": "ARMC9-related Joubert syndrome" }, { - "baseId": "419005|419006|419007|419008|419009|419010|419011|419012|419013|513217|624048|624090", + "upstreamId": "419005|419006|419007|419008|419009|419010|419011|419012|419013|513217|624048|624090", "text": "Joubert syndrome 30" }, { - "baseId": "419289", + "upstreamId": "419289", "text": "Sinus bradycardia" }, { - "baseId": "419298|425264|425265|425266|425267", + "upstreamId": "419298|425264|425265|425266|425267", "text": "Protein-losing enteropathy (disease)" }, { - "baseId": "420007|420008|420009|420012|420013|420014|420015|420016", + "upstreamId": "420007|420008|420009|420012|420013|420014|420015|420016", "text": "Axial spondylometaphyseal dysplasia" }, { - "baseId": "420147", + "upstreamId": "420147", "text": "Leukodystrophy, hypomyelinating, 17" }, { - "baseId": "420284|420285", + "upstreamId": "420284|420285", "text": "Intellectual developmental disorder with neuropsychiatric features" }, { - "baseId": "420424|420425|420426|495307|514534|623090|623091|623092|623093|623094|623095|789741|789742|859501|964270|980607|980608|980609|980610|980611", + "upstreamId": "420424|420425|420426|495307|514534|623090|623091|623092|623093|623094|623095|789741|789742|859501|964270|980607|980608|980609|980610|980611", "text": "Rahman syndrome" }, { - "baseId": "420976|798517|971282", + "upstreamId": "420976|798517|971282", "text": "Mitochondrial complex 1 deficiency, nuclear type 31" }, { - "baseId": "421143", + "upstreamId": "421143", "text": "Hemolytic disease of fetus OR newborn due to isoimmunization" }, { - "baseId": "421201", + "upstreamId": "421201", "text": "PINK1-Related Parkinsonism" }, { - "baseId": "421463|977332", + "upstreamId": "421463|977332", "text": "IMMUNODEFICIENCY 75" }, { - "baseId": "421583|421584|428609|915027", + "upstreamId": "421583|421584|428609|915027", "text": "Sialidosis" }, { - "baseId": "421732", + "upstreamId": "421732", "text": "Shone complex" }, { - "baseId": "421904", + "upstreamId": "421904", "text": "MED13L-Related Disorder" }, { - "baseId": "422029", + "upstreamId": "422029", "text": "Wide nasal bridge" }, { - "baseId": "422029", + "upstreamId": "422029", "text": "Wide mouth" }, { - "baseId": "422068", + "upstreamId": "422068", "text": "IGF1R-Related Disorder" }, { - "baseId": "422479|434694", + "upstreamId": "422479|434694", "text": "DDX3X-Related Disorder" }, { - "baseId": "422802|424255", + "upstreamId": "422802|424255", "text": "Familial hematuria" }, { - "baseId": "423091|423234|432254|432256", + "upstreamId": "423091|423234|432254|432256", "text": "Combined oxidative phosphorylation deficiency 32" }, { - "baseId": "423403|423404|423405|806438|919990|965239", + "upstreamId": "423403|423404|423405|806438|919990|965239", "text": "MENTAL RETARDATION, X-LINKED, SYNDROMIC, 35" }, { - "baseId": "423700|423701|423702|423703|423704|801579|919504|964858", + "upstreamId": "423700|423701|423702|423703|423704|801579|919504|964858", "text": "Gabriele de Vries syndrome" }, { - "baseId": "423705|423706|495432|615970|615971|615972|615973|615974|626452", + "upstreamId": "423705|423706|495432|615970|615971|615972|615973|615974|626452", "text": "Spastic ataxia 8, autosomal recessive, with hypomyelinating leukodystrophy" }, { - "baseId": "424016|424017", + "upstreamId": "424016|424017", "text": "Meier-Gorlin syndrome 8" }, { - "baseId": "424018", + "upstreamId": "424018", "text": "Perrault syndrome 6" }, { - "baseId": "424176|424177|424178|424179|462340|526505|571044|575495|640489|777938|778180|784235|784236|784237|791183|839142|919398|956710|967274", + "upstreamId": "424176|424177|424178|424179|462340|526505|571044|575495|640489|777938|778180|784235|784236|784237|791183|839142|919398|956710|967274", "text": "Cohen-Gibson syndrome" }, { - "baseId": "424180|581883|800967|800968|800969|964879|969135", + "upstreamId": "424180|581883|800967|800968|800969|964879|969135", "text": "Imagawa-Matsumoto syndrome" }, { - "baseId": "424219", + "upstreamId": "424219", "text": "Spinocerebellar ataxia 37" }, { - "baseId": "424232|424235", + "upstreamId": "424232|424235", "text": "Meckel syndrome 13" }, { - "baseId": "424250|424251|481459|511001|798659", + "upstreamId": "424250|424251|481459|511001|798659", "text": "Ichthyosis, congenital, autosomal recessive 13" }, { - "baseId": "424262|794103|794105|794106|794107|794108|800763|961649|964272|970495", + "upstreamId": "424262|794103|794105|794106|794107|794108|800763|961649|964272|970495", "text": "Poirier-Bienvenu neurodevelopmental syndrome" }, { - "baseId": "424349|622944", + "upstreamId": "424349|622944", "text": "Intellectual developmental disorder with severe speech and ambulation defects" }, { - "baseId": "424349|622944", + "upstreamId": "424349|622944", "text": "ACTL6B-related dominant intellectual disability" }, { - "baseId": "424352|535688|535690|790531|798556|815981|816016|962039|962040|962041|962042|962043|962044|962045", + "upstreamId": "424352|535688|535690|790531|798556|815981|816016|962039|962040|962041|962042|962043|962044|962045", "text": "Developmental and epileptic encephalopathy, 65" }, { - "baseId": "424366|424367", + "upstreamId": "424366|424367", "text": "Progressive childhood encephalopathy" }, { - "baseId": "424366|424367|432365", + "upstreamId": "424366|424367|432365", "text": "Early-onset progressive encephalopathy-hearing loss-pons hypoplasia-brain atrophy syndrome" }, { - "baseId": "424368|424369", + "upstreamId": "424368|424369", "text": "RHD DEL" }, { - "baseId": "424370", + "upstreamId": "424370", "text": "RhD negative" }, { - "baseId": "424384|424385|424386|424387|424388|802168|858559|974515|977236", + "upstreamId": "424384|424385|424386|424387|424388|802168|858559|974515|977236", "text": "Congenital nonprogressive myopathy with Moebius and Robin sequences" }, { - "baseId": "424393|424394|424395|798974|798975|798976", + "upstreamId": "424393|424394|424395|798974|798975|798976", "text": "Neutropenia, severe congenital, 8, autosomal dominant" }, { - "baseId": "424396|610523|681600|794276", + "upstreamId": "424396|610523|681600|794276", "text": "Progressive spastic paraparesis" }, { - "baseId": "424406|424407|424408|424409|424410|424411|424412|424413|590297", + "upstreamId": "424406|424407|424408|424409|424410|424411|424412|424413|590297", "text": "Nephrotic syndrome type 14" }, { - "baseId": "424439|961889|983748", + "upstreamId": "424439|961889|983748", "text": "Immunodeficiency 53" }, { - "baseId": "424464|424466|424467|424468|424469|550895|550896|964292", + "upstreamId": "424464|424466|424467|424468|424469|550895|550896|964292", "text": "Intellectual disability, autosomal dominant 54" }, { - "baseId": "424475", + "upstreamId": "424475", "text": "Spinocerebellar ataxia, autosomal recessive 25" }, { - "baseId": "424476|424477|424478|424479|424480|513770|513771|513772|513773|513774|513775", + "upstreamId": "424476|424477|424478|424479|424480|513770|513771|513772|513773|513774|513775", "text": "Spermatogenic failure 19" }, { - "baseId": "424481|513776|513777|513778|513779|513780", + "upstreamId": "424481|513776|513777|513778|513779|513780", "text": "Spermatogenic failure 20" }, { - "baseId": "424569", + "upstreamId": "424569", "text": "Caused by mutation in the tafazzin gene" }, { - "baseId": "424570|424571|424572|424573|798682", + "upstreamId": "424570|424571|424572|424573|798682", "text": "Maleylacetoacetate isomerase deficiency" }, { - "baseId": "424574|424575", + "upstreamId": "424574|424575", "text": "Mosaic variegated aneuploidy syndrome 3" }, { - "baseId": "424578", + "upstreamId": "424578", "text": "Birk-Landau-Perez syndrome" }, { - "baseId": "424588|424589|424590|424591|424592|424593|424594|424595|424596|424597|514213|519403|553302|861283|980693", + "upstreamId": "424588|424589|424590|424591|424592|424593|424594|424595|424596|424597|514213|519403|553302|861283|980693", "text": "Postnatal microcephaly" }, { - "baseId": "424641", + "upstreamId": "424641", "text": "Autism Spectrum Disorder with Intellectual Disability" }, { - "baseId": "424655|576113", + "upstreamId": "424655|576113", "text": "Non-syndromic intellectual disability" }, { - "baseId": "424689", + "upstreamId": "424689", "text": "Anencephalus" }, { - "baseId": "424698|614143|614178|614179|974444|984021|984022|984023|984024|984025", + "upstreamId": "424698|614143|614178|614179|974444|984021|984022|984023|984024|984025", "text": "Cerebellar ataxia, neuropathy, and vestibular areflexia syndrome" }, { - "baseId": "424702|487068|622775", + "upstreamId": "424702|487068|622775", "text": "Spinal muscular atrophy, type IV" }, { - "baseId": "424703|424704", + "upstreamId": "424703|424704", "text": "GARS-associated growth retardation and developmental delay" }, { - "baseId": "424908|424909|424910|424911|626166|790657|919051|919052|919053|963616|964281|967269|972719|976653", + "upstreamId": "424908|424909|424910|424911|626166|790657|919051|919052|919053|963616|964281|967269|972719|976653", "text": "Intellectual disability, autosomal dominant 46" }, { - "baseId": "424936", + "upstreamId": "424936", "text": "Amelogenesis imperfecta type 3B" }, { - "baseId": "424937|424939|424961|424962", + "upstreamId": "424937|424939|424961|424962", "text": "Microcephaly-micromelia syndrome" }, { - "baseId": "424937|424938|424939|424941|424942|424943|424961|481361|578579|966013", + "upstreamId": "424937|424938|424939|424941|424942|424943|424961|481361|578579|966013", "text": "Microcephaly, short stature, and limb abnormalities" }, { - "baseId": "424950", + "upstreamId": "424950", "text": "Deafness, autosomal dominant 72" }, { - "baseId": "424951|959511", + "upstreamId": "424951|959511", "text": "Deafness, autosomal dominant 71" }, { - "baseId": "424952|424953|424954|424955", + "upstreamId": "424952|424953|424954|424955", "text": "Polycystic kidney disease 5" }, { - "baseId": "424972|857683|858272", + "upstreamId": "424972|857683|858272", "text": "Deafness, autosomal recessive 110" }, { - "baseId": "424991|581220|581221|581222|581223|977261", + "upstreamId": "424991|581220|581221|581222|581223|977261", "text": "SYT1-associated neurodevelopmental disorder" }, { - "baseId": "424991|581220|581221|581222|581223|816476", + "upstreamId": "424991|581220|581221|581222|581223|816476", "text": "Infantile hypotonia-oculomotor anomalies-hyperkinetic movements-developmental delay syndrome" }, { - "baseId": "425202", + "upstreamId": "425202", "text": "Thin skin" }, { - "baseId": "425202", + "upstreamId": "425202", "text": "Hyperlaxity" }, { - "baseId": "425203|818745", + "upstreamId": "425203|818745", "text": "facial dysmorphism" }, { - "baseId": "425259|425260|425261|614315|614316", + "upstreamId": "425259|425260|425261|614315|614316", "text": "Nephrotic syndrome type 15" }, { - "baseId": "425263", + "upstreamId": "425263", "text": "CROMER BLOOD GROUP SYSTEM, Dr(a-) PHENOTYPE" }, { - "baseId": "425299|626151|699131|799031|970812", + "upstreamId": "425299|626151|699131|799031|970812", "text": "Neurodevelopmental disorder with movement abnormalities, abnormal gait, and autistic features" }, { - "baseId": "425299", + "upstreamId": "425299", "text": "ZSWIM6 related intellectual disability" }, { - "baseId": "425378", + "upstreamId": "425378", "text": "PARS2-related disorder" }, { - "baseId": "425459", + "upstreamId": "425459", "text": "Diabetes mellitus, insulin-dependent, 12" }, { - "baseId": "425459", + "upstreamId": "425459", "text": "Hashimoto thyroiditis" }, { - "baseId": "425461|425462", + "upstreamId": "425461|425462", "text": "UNC80-Related Disorder" }, { - "baseId": "425496", + "upstreamId": "425496", "text": "NRXN-Related Disorder" }, { - "baseId": "425580|797926|970256|970269|970270|970323|970324|970325|970326|970327|970328|970347|970348", + "upstreamId": "425580|797926|970256|970269|970270|970323|970324|970325|970326|970327|970328|970347|970348", "text": "Moyamoya angiopathy with developmental delay" }, { - "baseId": "425622", + "upstreamId": "425622", "text": "PURA-related severe neonatal hypotonia-seizures-encephalopathy syndrome due to a point mutation" }, { - "baseId": "425633", + "upstreamId": "425633", "text": "GABRG2-Related Disorder" }, { - "baseId": "425650", + "upstreamId": "425650", "text": "MEF2C-Related Disorder" }, { - "baseId": "425770|626366", + "upstreamId": "425770|626366", "text": "Predisposition to dissection" }, { - "baseId": "425924|550207|550208|919363|970655", + "upstreamId": "425924|550207|550208|919363|970655", "text": "Osteogenesis imperfecta, type xvi" }, { - "baseId": "426479", + "upstreamId": "426479", "text": "HSD17B10-Related Disorder" }, { - "baseId": "426508|426509|426510|426511|426512|426513|439624|439625|677300|789935|789936|815976|918612|920137|970677|971237", + "upstreamId": "426508|426509|426510|426511|426512|426513|439624|439625|677300|789935|789936|815976|918612|920137|970677|971237", "text": "Skraban-Deardorff syndrome" }, { - "baseId": "426722", + "upstreamId": "426722", "text": "Feingold syndrome 2" }, { - "baseId": "426758|426759", + "upstreamId": "426758|426759", "text": "Schizophrenia 19" }, { - "baseId": "427102|622035|905842|917751", + "upstreamId": "427102|622035|905842|917751", "text": "Autosomal dominant non-syndromic sensorineural deafness type DFNA" }, { - "baseId": "427102", + "upstreamId": "427102", "text": "Deafness, autosomal dominant 74" }, { - "baseId": "427103|427104|504286", + "upstreamId": "427103|427104|504286", "text": "Deafness, autosomal recessive 106" }, { - "baseId": "427105|427106|539092", + "upstreamId": "427105|427106|539092", "text": "Spinocerebellar ataxia, autosomal recessive 26" }, { - "baseId": "427834", + "upstreamId": "427834", "text": "Epilepsy due to perinatal stroke" }, { - "baseId": "429028|429029", + "upstreamId": "429028|429029", "text": "Pseudohermaphroditism male with gynecomastia" }, { - "baseId": "429533", + "upstreamId": "429533", "text": "DYNC1H1-related disorders" }, { - "baseId": "429594|590038|677229|800788|801072", + "upstreamId": "429594|590038|677229|800788|801072", "text": "Hypothyroidism" }, { - "baseId": "429767|643927|818781|818782|818783|818784|818785|818786|822289|822290|822291|822292", + "upstreamId": "429767|643927|818781|818782|818783|818784|818785|818786|822289|822290|822291|822292", "text": "Familial Interstitial Pneumonia" }, { - "baseId": "429767|643927|818781|818782|818783|818784|818785|818786|822289|822290|822291|822292", + "upstreamId": "429767|643927|818781|818782|818783|818784|818785|818786|822289|822290|822291|822292", "text": "Pulmonary fibrosis" }, { - "baseId": "430955", + "upstreamId": "430955", "text": "46,XX sex reversal, type 1" }, { - "baseId": "431406|431407|431408", + "upstreamId": "431406|431407|431408", "text": "Deafness, autosomal recessive 107" }, { - "baseId": "431409|625969|625972|965219", + "upstreamId": "431409|625969|625972|965219", "text": "Polydactyly, postaxial, type a7" }, { - "baseId": "431425|431426|431427|481435|513700|513701|513702|513703|550577|589824|654112|798458|818157|818158|858866|963117|980300", + "upstreamId": "431425|431426|431427|481435|513700|513701|513702|513703|550577|589824|654112|798458|818157|818158|858866|963117|980300", "text": "Congenital anomalies of kidney and urinary tract syndrome with or without hearing loss, abnormal ears, or developmental delay" }, { - "baseId": "431489|904914", + "upstreamId": "431489|904914", "text": "Spondyloepimetaphyseal dysplasia, di rocco type" }, { - "baseId": "431493|492638|614352|679181|969248", + "upstreamId": "431493|492638|614352|679181|969248", "text": "Cerebellar atrophy, developmental delay, and seizures" }, { - "baseId": "431494", + "upstreamId": "431494", "text": "Spermatogenic failure 21" }, { - "baseId": "431495|431496|553288|590786|906273", + "upstreamId": "431495|431496|553288|590786|906273", "text": "Hydranencephaly with renal aplasia-dysplasia" }, { - "baseId": "431510", + "upstreamId": "431510", "text": "Deafness, autosomal recessive 108" }, { - "baseId": "431518|431519|431520|431521|431522|431523|434077|513812|513813|513814|513845|513846|513847|550353|621148|790338|970756|983302", + "upstreamId": "431518|431519|431520|431521|431522|431523|434077|513812|513813|513814|513845|513846|513847|550353|621148|790338|970756|983302", "text": "Intellectual disability, autosomal dominant 47" }, { - "baseId": "431537", + "upstreamId": "431537", "text": "UBTF E210K Neuroregression Syndrome" }, { - "baseId": "431537|919730|971079", + "upstreamId": "431537|919730|971079", "text": "Childhood-onset motor and cognitive regression syndrome with extrapyramidal movement disorder" }, { - "baseId": "431537", + "upstreamId": "431537", "text": "Infantile or childhood onset neurodegenerative disease, global developmental delay, and intellectual disability" }, { - "baseId": "431537", + "upstreamId": "431537", "text": "UBTF-Related Disorder" }, { - "baseId": "431537", + "upstreamId": "431537", "text": "Rare syndromic intellectual disability" }, { - "baseId": "431554", + "upstreamId": "431554", "text": "Empty follicle syndrome" }, { - "baseId": "431554|676995|683219", + "upstreamId": "431554|676995|683219", "text": "Oocyte maturation defect 3" }, { - "baseId": "431877|682738", + "upstreamId": "431877|682738", "text": "Hypomagnesemia" }, { - "baseId": "431889", + "upstreamId": "431889", "text": "Hypoplastic right heart syndrome" }, { - "baseId": "431921", + "upstreamId": "431921", "text": "Tubulinopathy" }, { - "baseId": "431934", + "upstreamId": "431934", "text": "Learning difficulty" }, { - "baseId": "431979|431980", + "upstreamId": "431979|431980", "text": "Joint laxity, short stature, and myopia" }, { - "baseId": "431981|431982|613764|613765|613766", + "upstreamId": "431981|431982|613764|613765|613766", "text": "Spinocerebellar ataxia, autosomal recessive, with axonal neuropathy 3" }, { - "baseId": "432221|432222", + "upstreamId": "432221|432222", "text": "Cortical gyral simplification" }, { - "baseId": "432248", + "upstreamId": "432248", "text": "Inclusion body myositis" }, { - "baseId": "432257|432258|432259|963165", + "upstreamId": "432257|432258|432259|963165", "text": "Helix syndrome" }, { - "baseId": "432263|536175|536176|536177|536178|919379", + "upstreamId": "432263|536175|536176|536177|536178|919379", "text": "Coffin-Siris syndrome 7" }, { - "baseId": "432287", + "upstreamId": "432287", "text": "Microalbuminuria" }, { - "baseId": "432287", + "upstreamId": "432287", "text": "Macroscopic hematuria" }, { - "baseId": "432334|590099", + "upstreamId": "432334|590099", "text": "Kyphosis" }, { - "baseId": "432368|432369|610999|611000|611003", + "upstreamId": "432368|432369|610999|611000|611003", "text": "Galloway-Mowat syndrome 6" }, { - "baseId": "432405", + "upstreamId": "432405", "text": "SMALL ROUND CELL TUMOR" }, { - "baseId": "432414", + "upstreamId": "432414", "text": "YOLK SAC TUMOR AND HIGH-GRADE IMMATURE TERATOMA" }, { - "baseId": "432421", + "upstreamId": "432421", "text": "Desmoplastic small round cell tumor" }, { - "baseId": "432435|432436|432437|539972|539973|790752|798591", + "upstreamId": "432435|432436|432437|539972|539973|790752|798591", "text": "Developmental and epileptic encephalopathy, 56" }, { - "baseId": "432446|432447|432448|788851|919368", + "upstreamId": "432446|432447|432448|788851|919368", "text": "Blepharocheilodontic syndrome 2" }, { - "baseId": "432464|432465|432466|432467|432468|495073|513405|581219|672003|818380|965267|965268|965269|975902|975903", + "upstreamId": "432464|432465|432466|432467|432468|495073|513405|581219|672003|818380|965267|965268|965269|975902|975903", "text": "Mitochondrial myopathy-cerebellar ataxia-pigmentary retinopathy syndrome" }, { - "baseId": "432485|432486|432487|440927", + "upstreamId": "432485|432486|432487|440927", "text": "Spinocerebellar ataxia 44" }, { - "baseId": "432670", + "upstreamId": "432670", "text": "HEMOGLOBIN TAK" }, { - "baseId": "433599|609692|682779|682780|682781|700562|799533|799535|799536|981620|981621|981622|981623", + "upstreamId": "433599|609692|682779|682780|682781|700562|799533|799535|799536|981620|981621|981622|981623", "text": "Hemolytic anemia due to glutathione reductase deficiency" }, { - "baseId": "434381|434382|434383|434384|802215", + "upstreamId": "434381|434382|434383|434384|802215", "text": "Al Kaissi syndrome" }, { - "baseId": "434385|623122", + "upstreamId": "434385|623122", "text": "Spermatogenic failure 23" }, { - "baseId": "434386", + "upstreamId": "434386", "text": "Spermatogenic failure 22" }, { - "baseId": "434421|434422|481490|481491|800133|903634", + "upstreamId": "434421|434422|481490|481491|800133|903634", "text": "3-methylglutaconic aciduria type 9" }, { - "baseId": "434424", + "upstreamId": "434424", "text": "Methylmalonic aciduria of the cblA complementation type" }, { - "baseId": "434499|434500", + "upstreamId": "434499|434500", "text": "Hypertryptophanemia, familial" }, { - "baseId": "434518|578431|672236|672237|681867|805080", + "upstreamId": "434518|578431|672236|672237|681867|805080", "text": "Diencephalic-mesencephalic junction dysplasia syndrome 1" }, { - "baseId": "434541", + "upstreamId": "434541", "text": "Familial early-onset deep venous thrombosis" }, { - "baseId": "434542|434543|434544|434545|434546|434547|434548|583074|798453|964795|964796|974507", + "upstreamId": "434542|434543|434544|434545|434546|434547|434548|583074|798453|964795|964796|974507", "text": "Neurodevelopmental disorder, mitochondrial, with abnormal movements and lactic acidosis, with or without seizures" }, { - "baseId": "434549|626090", + "upstreamId": "434549|626090", "text": "Neurodevelopmental disorder with microcephaly, ataxia, and seizures" }, { - "baseId": "434570|672135", + "upstreamId": "434570|672135", "text": "Chromosome 2q23.1 deletion syndrome" }, { - "baseId": "434572", + "upstreamId": "434572", "text": "SCN3A- Related Disorder" }, { - "baseId": "434576", + "upstreamId": "434576", "text": "STAT1-Related Disorder" }, { - "baseId": "434585", + "upstreamId": "434585", "text": "SCN10A-Related Disorder" }, { - "baseId": "434586", + "upstreamId": "434586", "text": "FLNB-Related Disorder" }, { - "baseId": "434592|789738|918157|918158|918159|918161|964818", + "upstreamId": "434592|789738|918157|918158|918159|918161|964818", "text": "Neurodevelopmental disorder with language impairment and behavioral abnormalities" }, { - "baseId": "434597", + "upstreamId": "434597", "text": "MATR3-Related Disorder" }, { - "baseId": "434599|538375", + "upstreamId": "434599|538375", "text": "Spinocerebellar ataxia, autosomal recessive 28" }, { - "baseId": "434634|622048|622049|622050", + "upstreamId": "434634|622048|622049|622050", "text": "Neurooculocardiogenitourinary syndrome" }, { - "baseId": "434644|583122", + "upstreamId": "434644|583122", "text": "LTBP2-related Disorder" }, { - "baseId": "434665", + "upstreamId": "434665", "text": "MYOM1-related disorder" }, { - "baseId": "434670", + "upstreamId": "434670", "text": "DNMT1-Related Disorder" }, { - "baseId": "434674", + "upstreamId": "434674", "text": "Cutis Laxa Syndrome" }, { - "baseId": "434676", + "upstreamId": "434676", "text": "Periodic fever syndrome" }, { - "baseId": "434685", + "upstreamId": "434685", "text": "ACO2-related disorder" }, { - "baseId": "434686", + "upstreamId": "434686", "text": "ACO2-related disorders" }, { - "baseId": "434693", + "upstreamId": "434693", "text": "SMS-Related Disorder" }, { - "baseId": "434697", + "upstreamId": "434697", "text": "mtDNA-related disorders" }, { - "baseId": "434698|434699|434700", + "upstreamId": "434698|434699|434700", "text": "Mitochondrial DNA-related disorder" }, { - "baseId": "434734", + "upstreamId": "434734", "text": "TANGO2-Related disorder" }, { - "baseId": "434747", + "upstreamId": "434747", "text": "X-linked intellectual disability syndrome" }, { - "baseId": "434791", + "upstreamId": "434791", "text": "Arteriosclerosis" }, { - "baseId": "434791|622024|622025|622026|622027|672087", + "upstreamId": "434791|622024|622025|622026|622027|672087", "text": "Coronary artery disease" }, { - "baseId": "434864", + "upstreamId": "434864", "text": "Chromosome 10q22.3-q23.2 deletion syndrome" }, { - "baseId": "434869|434870|434871|434872|677458|677459|791826", + "upstreamId": "434869|434870|434871|434872|677458|677459|791826", "text": "Auditory neuropathy-optic atrophy syndrome" }, { - "baseId": "434873|434874|434875|434876|434877|434878", + "upstreamId": "434873|434874|434875|434876|434877|434878", "text": "Combined oxidative phosphorylation deficiency 33" }, { - "baseId": "434897", + "upstreamId": "434897", "text": "46,XX gonadal dysgenesis" }, { - "baseId": "434897|488076", + "upstreamId": "434897|488076", "text": "Ovarian dysgenesis 7" }, { - "baseId": "434925|434926|434927|434928|434929|488121|513416|590463|790427|800681|918867", + "upstreamId": "434925|434926|434927|434928|434929|488121|513416|590463|790427|800681|918867", "text": "Epileptic encephalopathy, infantile or early childhood 1" }, { - "baseId": "434934|921225|963440", + "upstreamId": "434934|921225|963440", "text": "Neuronopathy, distal hereditary motor, type 9" }, { - "baseId": "437661|801263|801264|801265|801266", + "upstreamId": "437661|801263|801264|801265|801266", "text": "Neoplasm of head and neck" }, { - "baseId": "437687|437688|437689|437690|437691|437692|437693|437694|539976|539977", + "upstreamId": "437687|437688|437689|437690|437691|437692|437693|437694|539976|539977", "text": "Oocyte maturation defect 4" }, { - "baseId": "437698", + "upstreamId": "437698", "text": "Deafness, X-linked" }, { - "baseId": "438508", + "upstreamId": "438508", "text": "Familial isolated restrictive cardiomyopathy" }, { - "baseId": "438512|438513|438514", + "upstreamId": "438512|438513|438514", "text": "Galloway-Mowat syndrome 2, X-linked" }, { - "baseId": "438518|438519|790768|815920|963060|963061|963062|963063|963064|963066|964666", + "upstreamId": "438518|438519|790768|815920|963060|963061|963062|963063|963064|963066|964666", "text": "Platelet abnormalities with eosinophilia and immune-mediated inflammatory disease" }, { - "baseId": "438522|438523|438524|438525", + "upstreamId": "438522|438523|438524|438525", "text": "Galloway-Mowat syndrome 4" }, { - "baseId": "438526|438527", + "upstreamId": "438526|438527", "text": "Galloway-Mowat syndrome 5" }, { - "baseId": "438528|438529|438530|438531|438532|438533|438534|438535|590309|962736|962737", + "upstreamId": "438528|438529|438530|438531|438532|438533|438534|438535|590309|962736|962737", "text": "Galloway-Mowat syndrome 3" }, { - "baseId": "438536", + "upstreamId": "438536", "text": "Facial palsy, congenital, with ptosis and velopharyngeal dysfunction" }, { - "baseId": "438551|677465", + "upstreamId": "438551|677465", "text": "Uruguay faciocardiomusculoskeletal syndrome" }, { - "baseId": "438552|438553|438554|438555|438556|438557|614091|678066|963150", + "upstreamId": "438552|438553|438554|438555|438556|438557|614091|678066|963150", "text": "Intellectual disability, autosomal dominant 48" }, { - "baseId": "439194|961520", + "upstreamId": "439194|961520", "text": "POLR3A-related neurological disorders" }, { - "baseId": "439220", + "upstreamId": "439220", "text": "SPECC1L-related syndrome" }, { - "baseId": "439459", + "upstreamId": "439459", "text": "Erythrokeratodermia variabilis et progressiva 5" }, { - "baseId": "439483|439484|439485|439486|439487|439488|481645|611381|611382|790205|790206|790207|790208|800918|805296|861563|861565|918748|918749|918750|918751|964196|964197|972712", + "upstreamId": "439483|439484|439485|439486|439487|439488|481645|611381|611382|790205|790206|790207|790208|800918|805296|861563|861565|918748|918749|918750|918751|964196|964197|972712", "text": "Clark-Baraitser syndrome" }, { - "baseId": "439491|439492|439493|439494|439495", + "upstreamId": "439491|439492|439493|439494|439495", "text": "Joubert syndrome 31" }, { - "baseId": "439497|624047", + "upstreamId": "439497|624047", "text": "Hyperuricemic nephropathy, familial juvenile, 3" }, { - "baseId": "439505|439506|439507", + "upstreamId": "439505|439506|439507", "text": "Myopathy, centronuclear, 6, with fiber-type disproportion" }, { - "baseId": "439523", + "upstreamId": "439523", "text": "Mitochondrial DNA depletion syndrome 19" }, { - "baseId": "439562|439563", + "upstreamId": "439562|439563", "text": "Retinitis pigmentosa-hearing loss-premature aging-short stature-facial dysmorphism syndrome" }, { - "baseId": "439564|539041|917096|976524|976592", + "upstreamId": "439564|539041|917096|976524|976592", "text": "Alkaline ceramidase 3 deficiency" }, { - "baseId": "439567|439584|439585", + "upstreamId": "439567|439584|439585", "text": "Spliceosomepathy" }, { - "baseId": "439568|439569|439570|439571|439572|962920|964353", + "upstreamId": "439568|439569|439570|439571|439572|962920|964353", "text": "Neurodevelopmental disorder with or without seizures and gait abnormalities" }, { - "baseId": "439573|488084", + "upstreamId": "439573|488084", "text": "Neurodevelopmental disorder with poor language and loss of hand skills" }, { - "baseId": "439580|696579|707219|799200|799201|981313", + "upstreamId": "439580|696579|707219|799200|799201|981313", "text": "Immunodeficiency, common variable, 14" }, { - "baseId": "439618|963568|963569|964235|964236|965963|970493", + "upstreamId": "439618|963568|963569|964235|964236|965963|970493", "text": "Microcephaly 18, primary, autosomal dominant" }, { - "baseId": "439621|439622|439623|614176|800532", + "upstreamId": "439621|439622|439623|614176|800532", "text": "North Carolina macular dystrophy" }, { - "baseId": "439633|439634|439635|496932|513979", + "upstreamId": "439633|439634|439635|496932|513979", "text": "Iris coloboma" }, { - "baseId": "439648|439649|439650", + "upstreamId": "439648|439649|439650", "text": "JOUBERT SYNDROME 34" }, { - "baseId": "439651", + "upstreamId": "439651", "text": "Microphthalmia and cataract" }, { - "baseId": "439655|439656|962156|970800", + "upstreamId": "439655|439656|962156|970800", "text": "Spinocerebellar ataxia 45" }, { - "baseId": "439690|439691|624060|624061", + "upstreamId": "439690|439691|624060|624061", "text": "Progressive external ophthalmoplegia with mitochondrial DNA deletions, autosomal recessive 5" }, { - "baseId": "439695|439696|439697|439698|439699", + "upstreamId": "439695|439696|439697|439698|439699", "text": "CALFAN syndrome" }, { - "baseId": "439695|439697|439698|439699|539035|679782|788852|963161", + "upstreamId": "439695|439697|439698|439699|539035|679782|788852|963161", "text": "Spinocerebellar ataxia, autosomal recessive 21" }, { - "baseId": "439700|621042|800836|800838", + "upstreamId": "439700|621042|800836|800838", "text": "Hereditary hearing loss and deafness" }, { - "baseId": "439702", + "upstreamId": "439702", "text": "CUP (carcinoma unknown primary) syndrome" }, { - "baseId": "439840|439841|919230", + "upstreamId": "439840|439841|919230", "text": "Intellectual disability, autosomal recessive 61" }, { - "baseId": "439842|439843", + "upstreamId": "439842|439843", "text": "Nephrotic syndrome type 16" }, { - "baseId": "439867|439868|962180", + "upstreamId": "439867|439868|962180", "text": "Fanconi anemia, complementation group W" }, { - "baseId": "439929", + "upstreamId": "439929", "text": "Spinal neurofibromas" }, { - "baseId": "440029|440030|440031|440032|440033|440034|440035|535229|550346|613826|622302|626094|788726|789855|961496", + "upstreamId": "440029|440030|440031|440032|440033|440034|440035|535229|550346|613826|622302|626094|788726|789855|961496", "text": "Intellectual disability, autosomal dominant 52" }, { - "baseId": "440039|440040|440041|550364|551680|551681|614526|614527|654136|791164|964368|973029", + "upstreamId": "440039|440040|440041|550364|551680|551681|614526|614527|654136|791164|964368|973029", "text": "Intellectual disability, autosomal dominant 51" }, { - "baseId": "440044|440045", + "upstreamId": "440044|440045", "text": "Inner ear Malformation" }, { - "baseId": "440064|496108", + "upstreamId": "440064|496108", "text": "Short-rib thoracic dysplasia 7/20 with polydactyly, digenic" }, { - "baseId": "440088|620162|620163", + "upstreamId": "440088|620162|620163", "text": "WDR19-Related Disorders" }, { - "baseId": "440166|440168|440180|440181|440209", + "upstreamId": "440166|440168|440180|440181|440209", "text": "Short-rib polydactyly syndrome type I" }, { - "baseId": "440239", + "upstreamId": "440239", "text": "Microcephaly 19, primary, autosomal recessive" }, { - "baseId": "440258|440335|919800", + "upstreamId": "440258|440335|919800", "text": "Gaze palsy, familial horizontal, with progressive scoliosis, 2" }, { - "baseId": "440258|440335|440336", + "upstreamId": "440258|440335|440336", "text": "Developmental Split Brain Syndrome" }, { - "baseId": "440400", + "upstreamId": "440400", "text": "Congenital hypomyelinating neuropathy" }, { - "baseId": "440416|871655|965244|965245|965246|965247|965248|965249|965250|965251|965252|965253|965254|965255|970043|970044|970045|970046|970047|970048|970049|970050|970051|970052|970053|970054|970055", + "upstreamId": "440416|871655|965244|965245|965246|965247|965248|965249|965250|965251|965252|965253|965254|965255|970043|970044|970045|970046|970047|970048|970049|970050|970051|970052|970053|970054|970055", "text": "Corticosteroid response" }, { - "baseId": "440711|464828|481389|514128|581923|581924|643075|652723|804981|804982|804983|804997|804998|805002|805003|805006|805010|805012|805013|805014|805015|805019|805025|805026|805028|805029|805030|805032|805035|805036|805037|805038|805039|805040|805041|805045|805048|805051|805057|805060|966293|966304", + "upstreamId": "440711|464828|481389|514128|581923|581924|643075|652723|804981|804982|804983|804997|804998|805002|805003|805006|805010|805012|805013|805014|805015|805019|805025|805026|805028|805029|805030|805032|805035|805036|805037|805038|805039|805040|805041|805045|805048|805051|805057|805060|966293|966304", "text": "Flexion contracture" }, { - "baseId": "440711", + "upstreamId": "440711", "text": "Tip-toe gait" }, { - "baseId": "442470|619886|619887|619888|619889", + "upstreamId": "442470|619886|619887|619888|619889", "text": "Reclassified - variant of unknown significance" }, { - "baseId": "442499|442500|442501|539036", + "upstreamId": "442499|442500|442501|539036", "text": "Geleophysic dysplasia 3" }, { - "baseId": "443137", + "upstreamId": "443137", "text": "SATB2-Related Disorder" }, { - "baseId": "443181|620066|620067", + "upstreamId": "443181|620066|620067", "text": "COL4A3-Related Disorders" }, { - "baseId": "443312|672043", + "upstreamId": "443312|672043", "text": "DCTN1-Related Disorder" }, { - "baseId": "443381|443382", + "upstreamId": "443381|443382", "text": "TBL1XR1-Related Disorder" }, { - "baseId": "443720|511578|622954|622956|622958|622959|622960|918931|918932", + "upstreamId": "443720|511578|622954|622956|622958|622959|622960|918931|918932", "text": "Brain abnormalities, neurodegeneration, and dysosteosclerosis" }, { - "baseId": "444422", + "upstreamId": "444422", "text": "Combined pituitary hormone deficiency type 3" }, { - "baseId": "444512", + "upstreamId": "444512", "text": "KANK1- Related Disorder" }, { - "baseId": "444973", + "upstreamId": "444973", "text": "CACNA1C-Related Disorder" }, { - "baseId": "445005", + "upstreamId": "445005", "text": "COL2A1-Related Disorder" }, { - "baseId": "445123|590074|590075", + "upstreamId": "445123|590074|590075", "text": "Neonatal respiratory distress" }, { - "baseId": "445590|624091", + "upstreamId": "445590|624091", "text": "PIGQ-related condition" }, { - "baseId": "445607|576321", + "upstreamId": "445607|576321", "text": "Microcephalic osteodysplastic dysplasia, Saul-Wilson type" }, { - "baseId": "446047|861654|938582", + "upstreamId": "446047|861654|938582", "text": "CACNA1A-related disorders" }, { - "baseId": "446049", + "upstreamId": "446049", "text": "CACNA1A-associated disorders" }, { - "baseId": "446050|626377", + "upstreamId": "446050|626377", "text": "CACNA1A-related condition" }, { - "baseId": "446193", + "upstreamId": "446193", "text": "Mitochondrial complex 1 deficiency, nuclear type 14" }, { - "baseId": "446266|961036", + "upstreamId": "446266|961036", "text": "Myoclonic absences" }, { - "baseId": "446266|514105|533574", + "upstreamId": "446266|514105|533574", "text": "developmental encephalopathy with epilepsy" }, { - "baseId": "446378|513479|513480|514780|540517|540518|540519|540520|540521|540522|590158|590159|590161|590162|622740|623590|679832|962128|966805", + "upstreamId": "446378|513479|513480|514780|540517|540518|540519|540520|540521|540522|590158|590159|590161|590162|622740|623590|679832|962128|966805", "text": "Noonan syndrome 2" }, { - "baseId": "446643", + "upstreamId": "446643", "text": "Protein avoidance" }, { - "baseId": "446643", + "upstreamId": "446643", "text": "Abnormality of ornithine metabolism" }, { - "baseId": "446829|446830|446831|446832|446833|446834|446835|609308|790786|790787", + "upstreamId": "446829|446830|446831|446832|446833|446834|446835|609308|790786|790787", "text": "Glycosylphosphatidylinositol biosynthesis defect 15" }, { - "baseId": "446836|446837", + "upstreamId": "446836|446837", "text": "Neurodevelopmental disorder with ataxic gait, absent speech, and decreased cortical white matter" }, { - "baseId": "446867|446868|446869|446870|446871|446872|446873|446874|446875|446876|446877|446878|446879|679804|906037|906220|906221|906222|906223|906224|906225|906226|906227|906228|906229|906229|962799|970548|977288", + "upstreamId": "446867|446868|446869|446870|446871|446872|446873|446874|446875|446876|446877|446878|446879|679804|906037|906220|906221|906222|906223|906224|906225|906226|906227|906228|906229|906229|962799|970548|977288", "text": "Renal hypodysplasia/aplasia 3" }, { - "baseId": "446892", + "upstreamId": "446892", "text": "Severe neonatal hypotonia improving with age" }, { - "baseId": "446893", + "upstreamId": "446893", "text": "Decreased activity of mitochondrial ATP synthase complex" }, { - "baseId": "446893|482269", + "upstreamId": "446893|482269", "text": "Mitochondrial complex 5 (ATP synthase) deficiency nuclear type 5" }, { - "baseId": "446900", + "upstreamId": "446900", "text": "Senior-Loken syndrome 3" }, { - "baseId": "447064|447144|514982|514986|515020|515026|515027|515047|515052|556556|556558|556589|556591|556851|556984|556986|626651|626652|626653|626654|626655|626656|706589|822564|822565|822566|822567|822568|822569|822570|822571|822572|822573|822574|921591|921592|921593|921594|921595|921596|921597|929978|929979|929980|929981|929982|941394|941395|952024|952025", + "upstreamId": "447064|447144|514982|514986|515020|515026|515027|515047|515052|556556|556558|556589|556591|556851|556984|556986|626651|626652|626653|626654|626655|626656|706589|822564|822565|822566|822567|822568|822569|822570|822571|822572|822573|822574|921591|921592|921593|921594|921595|921596|921597|929978|929979|929980|929981|929982|941394|941395|952024|952025", "text": "Autosomal recessive dyskeratosis congenita" }, { - "baseId": "447234", + "upstreamId": "447234", "text": "LMNA-Related Disorders" }, { - "baseId": "449094", + "upstreamId": "449094", "text": "Meckel-Gruber-like syndrome" }, { - "baseId": "450277|450434|517798|629320|686122|691015|691016|922527", + "upstreamId": "450277|450434|517798|629320|686122|691015|691016|922527", "text": "Nuclear pulverulent cataract" }, { - "baseId": "453161|453431|453534|519941|520189|562015|632204|651173|720980|734637|829151|923514|932338", + "upstreamId": "453161|453431|453534|519941|520189|562015|632204|651173|720980|734637|829151|923514|932338", "text": "T-cell immunodeficiency with epidermodysplasia verruciformis" }, { - "baseId": "454349|454859|454860|521018|521023|560061|562675|749203", + "upstreamId": "454349|454859|454860|521018|521023|560061|562675|749203", "text": "Decreased plasma carnitine" }, { - "baseId": "454863|454865|454875|455362|455367|455379|455384|455648|624878|633695|691812|698999|721361", + "upstreamId": "454863|454865|454875|455362|455367|455379|455384|455648|624878|633695|691812|698999|721361", "text": "Childhood absence epilepsy" }, { - "baseId": "454955|474385|954162", + "upstreamId": "454955|474385|954162", "text": "SDHA-Related Disorders" }, { - "baseId": "457782|549937|549942|636168|636169|700086|711001|711002|711003|711004|722538|736146|736150|736153|759581|933892|933893", + "upstreamId": "457782|549937|549942|636168|636169|700086|711001|711002|711003|711004|722538|736146|736150|736153|759581|933892|933893", "text": "Oxoglutaricaciduria" }, { - "baseId": "458792|513985|514023", + "upstreamId": "458792|513985|514023", "text": "Spontaneous, recurrent epistaxis" }, { - "baseId": "459866|612002", + "upstreamId": "459866|612002", "text": "Germinoma (disease)" }, { - "baseId": "461658|461663|526519|564906|566162|640435|640436|640437|713119|713120|724689|752935|838973|926380|935770|947651|947652", + "upstreamId": "461658|461663|526519|564906|566162|640435|640436|640437|713119|713120|724689|752935|838973|926380|935770|947651|947652", "text": "Infections, recurrent, with encephalopathy, hepatic dysfunction, and cardiovascular malformations" }, { - "baseId": "461713|526770|570721|640161|712902|712903|712905|738045|777955|838567|838568|838569|926278|926279|935601|935602|956534", + "upstreamId": "461713|526770|570721|640161|712902|712903|712905|738045|777955|838567|838568|838569|926278|926279|935601|935602|956534", "text": "Transcobalamin I deficiency" }, { - "baseId": "462563|462568|463332|463334|463444|463447|463449|463450|527450|527453|527472|527473|527477|527725|527726|527730|527732|527990|527997|528001|565832|565839|565844|565850|567143|567158|568248|572177|572182|572184|572189|641520|641521|641522|641523|641524|641525|641526|641527|641528|641529|641530|641531|641532|641533|641534|641535|641536|641537|652384|652801|713808|713809|725337|738919|744758|753681|769387|784514|820539|840493|840494|840495|840496|840497|840498|840499|840500|840501|840502|840503|840504|840505|840506|840507|840508|840509|840510|840511|840512|840513|926791|926792|926793|926794|926795|936325|936326|936327|936328|936329|948246|948247|948248|948249|948250|957014|960070", + "upstreamId": "462563|462568|463332|463334|463444|463447|463449|463450|527450|527453|527472|527473|527477|527725|527726|527730|527732|527990|527997|528001|565832|565839|565844|565850|567143|567158|568248|572177|572182|572184|572189|641520|641521|641522|641523|641524|641525|641526|641527|641528|641529|641530|641531|641532|641533|641534|641535|641536|641537|652384|652801|713808|713809|725337|738919|744758|753681|769387|784514|820539|840493|840494|840495|840496|840497|840498|840499|840500|840501|840502|840503|840504|840505|840506|840507|840508|840509|840510|840511|840512|840513|926791|926792|926793|926794|926795|936325|936326|936327|936328|936329|948246|948247|948248|948249|948250|957014|960070", "text": "Evans syndrome, immunodeficiency, and premature immunosenescence associated with tripeptidyl-peptidase II deficiency" }, { - "baseId": "464097|527988|527994|528040|642198|642201|714069|725621|739170|739171|769732|784680|841192|841193|841194|841195|841196|841197|841198|841199|926986|936553|936554|948482|948483|957178", + "upstreamId": "464097|527988|527994|528040|642198|642201|714069|725621|739170|739171|769732|784680|841192|841193|841194|841195|841196|841197|841198|841199|926986|936553|936554|948482|948483|957178", "text": "Specific granule deficiency" }, { - "baseId": "464622|961534", + "upstreamId": "464622|961534", "text": "KIF7-related ciliopathy spectrum disorder" }, { - "baseId": "466937|622851", + "upstreamId": "466937|622851", "text": "Absent inner and outer dynein arms" }, { - "baseId": "467572|467582|467583|467590|467596|467598|467600|467604|468420|468427|468433|468436|468890|468894|468903|468908|468919|468920|468922|468924|469176|469193|531854|531862|531863|531872|531873|531875|531877|531886|531888|531889|531899|531905|531912|531958|531959|531966|531975|531980|531987|532233|532240|532243|532248|532256|532259|532261|569803|569818|569827|571676|571677|571681|572348|572353|574642|574646|574649|574650|574652|574653|614446|646799|646805|646807|646809|646813|646815|646817|646818|646819|646820|646824|646829|715742|715743|715744|715745|715746|715747|727469|727470|727471|741070|741071|741072|741073|741075|741076|741077|741081|741082|741083|745084|756172|756174|756175|756177|756178|756179|756181|771868|771869|771876|771877|771878|776424|776542|780140|785767|785774|788190|846307|846308|846309|846310|846311|846312|846313|846314|846315|846316|846317|846318|846319|846320|846321|846322|846323|846324|846325|846326|846327|846328|846329|846330|846331|846332|846333|846334|846335|846336|846337|846338|846339|846340|846341|846342|846343|846344|846345|846346|846347|851757|852800|928562|928563|928564|928565|928566|928567|928568|928569|928570|928571|928572|928573|928574|928575|928576|928577|938246|938247|938248|938249|938250|938251|938252|938253|938254|938255|938256|938257|938258|938259|938260|938261|938262|938263|938264|940442|940443|940444|941203|950321|950322|950323|950324|950325|950326|950327|950328|950329|950330|950331|950332|950333|950334|950335|950336|950337|950338|958334|958335|958336|958337|958338|958339|958340|958341|960250|960251|960899|960900", + "upstreamId": "467572|467582|467583|467590|467596|467598|467600|467604|468420|468427|468433|468436|468890|468894|468903|468908|468919|468920|468922|468924|469176|469193|531854|531862|531863|531872|531873|531875|531877|531886|531888|531889|531899|531905|531912|531958|531959|531966|531975|531980|531987|532233|532240|532243|532248|532256|532259|532261|569803|569818|569827|571676|571677|571681|572348|572353|574642|574646|574649|574650|574652|574653|614446|646799|646805|646807|646809|646813|646815|646817|646818|646819|646820|646824|646829|715742|715743|715744|715745|715746|715747|727469|727470|727471|741070|741071|741072|741073|741075|741076|741077|741081|741082|741083|745084|756172|756174|756175|756177|756178|756179|756181|771868|771869|771876|771877|771878|776424|776542|780140|785767|785774|788190|846307|846308|846309|846310|846311|846312|846313|846314|846315|846316|846317|846318|846319|846320|846321|846322|846323|846324|846325|846326|846327|846328|846329|846330|846331|846332|846333|846334|846335|846336|846337|846338|846339|846340|846341|846342|846343|846344|846345|846346|846347|851757|852800|928562|928563|928564|928565|928566|928567|928568|928569|928570|928571|928572|928573|928574|928575|928576|928577|938246|938247|938248|938249|938250|938251|938252|938253|938254|938255|938256|938257|938258|938259|938260|938261|938262|938263|938264|940442|940443|940444|941203|950321|950322|950323|950324|950325|950326|950327|950328|950329|950330|950331|950332|950333|950334|950335|950336|950337|950338|958334|958335|958336|958337|958338|958339|958340|958341|960250|960251|960899|960900", "text": "Epidermodysplasia verruciformis" }, { - "baseId": "467804|468096|468293|531155|531158|531164|531165|531170|531174|531364|531366|531368|531420|531422|531427|531428|531641|531643|531649|531652|531666|571221|571225|571227|571533|571534|574500|646092|646093|646094|646095|646096|646097|646098|646099|646100|646101|646102|646103|646104|646105|646106|646107|652969|652972|727223|727224|727225|727226|740822|740823|744995|771590|785621|845498|845499|845500|845501|845502|845503|845504|845505|845506|845507|845508|845509|845510|845511|845512|845513|845514|852878|928343|928344|928345|928346|928347|928348|928349|937986|937987|937988|937989|937990|937991|937992|937993|937994|949977|949978|949979|949980|949981|958146", + "upstreamId": "467804|468096|468293|531155|531158|531164|531165|531170|531174|531364|531366|531368|531420|531422|531427|531428|531641|531643|531649|531652|531666|571221|571225|571227|571533|571534|574500|646092|646093|646094|646095|646096|646097|646098|646099|646100|646101|646102|646103|646104|646105|646106|646107|652969|652972|727223|727224|727225|727226|740822|740823|744995|771590|785621|845498|845499|845500|845501|845502|845503|845504|845505|845506|845507|845508|845509|845510|845511|845512|845513|845514|852878|928343|928344|928345|928346|928347|928348|928349|937986|937987|937988|937989|937990|937991|937992|937993|937994|949977|949978|949979|949980|949981|958146", "text": "NIK deficiency" }, { - "baseId": "469009|626445|626446|655042|679026|679062|679064|679065|679066|679067|679068|679074|679076|679077|679078|679086|679091|679104|679109|679114|679115|679126|679131|679135|679137|679139|679151|679154|679164|679166|679168|679169|679170", + "upstreamId": "469009|626445|626446|655042|679026|679062|679064|679065|679066|679067|679068|679074|679076|679077|679078|679086|679091|679104|679109|679114|679115|679126|679131|679135|679137|679139|679151|679154|679164|679166|679168|679169|679170", "text": "Esophageal atresia" }, { - "baseId": "469009|513978|655042|679026|679062|679064|679065|679066|679067|679068|679074|679076|679077|679078|679086|679091|679104|679109|679114|679115|679126|679131|679135|679137|679139|679151|679154|679164|679166|679168|679169|679170", + "upstreamId": "469009|513978|655042|679026|679062|679064|679065|679066|679067|679068|679074|679076|679077|679078|679086|679091|679104|679109|679114|679115|679126|679131|679135|679137|679139|679151|679154|679164|679166|679168|679169|679170", "text": "Pyloric stenosis" }, { - "baseId": "469648", + "upstreamId": "469648", "text": "SCN1B-Related Disorder" }, { - "baseId": "471580|965351|965352", + "upstreamId": "471580|965351|965352", "text": "Immunodeficiency 73b with defective neutrophil chemotaxis and lymphopenia" }, { - "baseId": "471610|973014", + "upstreamId": "471610|973014", "text": "Complete trisomy 21 syndrome" }, { - "baseId": "472237|472238|472239|906188|970665", + "upstreamId": "472237|472238|472239|906188|970665", "text": "Glycosylphosphatidylinositol biosynthesis defect 16" }, { - "baseId": "472250|472251|472252", + "upstreamId": "472250|472251|472252", "text": "Myopia 26, X-linked, female-limited" }, { - "baseId": "472744", + "upstreamId": "472744", "text": "MSH2-related disorder" }, { - "baseId": "473799|550670", + "upstreamId": "473799|550670", "text": "Gastrointestinal stromal tumor of small intestine" }, { - "baseId": "473816", + "upstreamId": "473816", "text": "Papillary renal cell carcinoma" }, { - "baseId": "476010|476355", + "upstreamId": "476010|476355", "text": "Acroleukopathy, symmetric" }, { - "baseId": "476701", + "upstreamId": "476701", "text": "Polymerase proofreading associated polyposis" }, { - "baseId": "480423|682661|682662|682664|682665|682666|857384|983693", + "upstreamId": "480423|682661|682662|682664|682665|682666|857384|983693", "text": "Neurodevelopmental disorder with dysmorphic facies and distal skeletal anomalies" }, { - "baseId": "480513|480514|536006|536007|536138|536160|536186|550148", + "upstreamId": "480513|480514|536006|536007|536138|536160|536186|550148", "text": "Rajab interstitial lung disease with brain calcifications" }, { - "baseId": "480531|480532|480533|480534|540434|540435", + "upstreamId": "480531|480532|480533|480534|540434|540435", "text": "Mitochondrial complex 1 deficiency, nuclear type 33" }, { - "baseId": "480548|480549|480550|581865", + "upstreamId": "480548|480549|480550|581865", "text": "Congenital ATN1 related disorder" }, { - "baseId": "480561|480562|480563|480564|964730|964732", + "upstreamId": "480561|480562|480563|480564|964730|964732", "text": "Combined immunodeficiency due to GINS1 deficiency" }, { - "baseId": "480578", + "upstreamId": "480578", "text": "Spondyloepimetaphyseal dysplasia, Shohat type" }, { - "baseId": "480602", + "upstreamId": "480602", "text": "Indifference to pain, congenital, autosomal dominant" }, { - "baseId": "480613|480614|480616|480617|480618|798801|964898", + "upstreamId": "480613|480614|480616|480617|480618|798801|964898", "text": "Basilicata-Akhtar syndrome" }, { - "baseId": "480624|481174|481175|589847|589848|589849|589850|589851", + "upstreamId": "480624|481174|481175|589847|589848|589849|589850|589851", "text": "Immune dysregulation-inflammatory bowel disease-arthritis-recurrent infections syndrome" }, { - "baseId": "480624|481174|481175", + "upstreamId": "480624|481174|481175", "text": "Inflammatory bowel disease, immunodeficiency, and encephalopathy" }, { - "baseId": "480785|480786|480787|480788|480789|480790|480791|480792|480793|480794|480795|480796|480797|480798|480799|480800|480801|480802|480803|480804|480805|480806|480807|480808|480809|480810|480811|480812|480813|480814|480815|480816|480817|612011|622842", + "upstreamId": "480785|480786|480787|480788|480789|480790|480791|480792|480793|480794|480795|480796|480797|480798|480799|480800|480801|480802|480803|480804|480805|480806|480807|480808|480809|480810|480811|480812|480813|480814|480815|480816|480817|612011|622842", "text": "Ependymoma" }, { - "baseId": "481073|481075|650514|973110|973111", + "upstreamId": "481073|481075|650514|973110|973111", "text": "Robinow syndrome, autosomal recessive 2" }, { - "baseId": "481074|481075|481076", + "upstreamId": "481074|481075|481076", "text": "Distal shortening of limbs" }, { - "baseId": "481083", + "upstreamId": "481083", "text": "Congenital short bowel syndrome, X-linked" }, { - "baseId": "481154", + "upstreamId": "481154", "text": "Alopecia-intellectual disability syndrome 1" }, { - "baseId": "481155", + "upstreamId": "481155", "text": "alpha, alpha-Trehalase deficiency" }, { - "baseId": "481159|481160", + "upstreamId": "481159|481160", "text": "Congenital disorder of glycosylation, type Ibb" }, { - "baseId": "481193|481194|481195|790985", + "upstreamId": "481193|481194|481195|790985", "text": "Amyotrophic lateral sclerosis type 23" }, { - "baseId": "481279|481280|963166", + "upstreamId": "481279|481280|963166", "text": "Neurodevelopmental disorder with microcephaly, epilepsy, and brain atrophy" }, { - "baseId": "481308", + "upstreamId": "481308", "text": "Intellectual disability, seizures, abnormal gait and distinctive facial features" }, { - "baseId": "481328", + "upstreamId": "481328", "text": "X-linked recessive seizure and neurodevelopmental deficit" }, { - "baseId": "481523|481524", + "upstreamId": "481523|481524", "text": "Short-rib thoracic dysplasia 18 with polydactyly" }, { - "baseId": "481592", + "upstreamId": "481592", "text": "COL9A2-Related Disorders" }, { - "baseId": "481612|536235", + "upstreamId": "481612|536235", "text": "SCN2A-related disorder" }, { - "baseId": "481865|620819", + "upstreamId": "481865|620819", "text": "OPTN-Related Disorders" }, { - "baseId": "482055|513448|550329|575499|575500", + "upstreamId": "482055|513448|550329|575499|575500", "text": "IRF2BPL-related condition" }, { - "baseId": "482079|539426|539427|539428|677448|980899", + "upstreamId": "482079|539426|539427|539428|677448|980899", "text": "Cardiomyopathy, familial hypertrophic 27" }, { - "baseId": "482150|539420|539422|539423|539424|609317|609318|609319|609320|609321|609322|609323|609324|609325|609326|609327|609328|609329|609330|609331|609332|677456|798720|805975|816534|966892|966893|966894|966895|980382", + "upstreamId": "482150|539420|539422|539423|539424|609317|609318|609319|609320|609321|609322|609323|609324|609325|609326|609327|609328|609329|609330|609331|609332|677456|798720|805975|816534|966892|966893|966894|966895|980382", "text": "Mental retardation, autosomal dominant 57" }, { - "baseId": "482203|970255|970320|970351", + "upstreamId": "482203|970255|970320|970351", "text": "Rubinstein taybi like syndrome" }, { - "baseId": "482261", + "upstreamId": "482261", "text": "SMC1A-related cohesinopathy" }, { - "baseId": "482273", + "upstreamId": "482273", "text": "CACNA1H-related disorder" }, { - "baseId": "482290|587102", + "upstreamId": "482290|587102", "text": "Retinitis pigmentosa 81" }, { - "baseId": "482317", + "upstreamId": "482317", "text": "Combined oxidative phosphorylation deficiency 34" }, { - "baseId": "482318|482320|501889", + "upstreamId": "482318|482320|501889", "text": "Corneal dystrophy, posterior polymorphous 4" }, { - "baseId": "485862|508752|513224|980482", + "upstreamId": "485862|508752|513224|980482", "text": "Growth hormone insensitivity syndrome with immune dysregulation 2, autosomal dominant" }, { - "baseId": "485877|485878|919212", + "upstreamId": "485877|485878|919212", "text": "Leber congenital amaurosis with early-onset deafness" }, { - "baseId": "485881", + "upstreamId": "485881", "text": "MFSD12 POLYMORPHISM" }, { - "baseId": "485952", + "upstreamId": "485952", "text": "Neoplasm of the central nervous system" }, { - "baseId": "486598|486599|486600|486601|486602", + "upstreamId": "486598|486599|486600|486601|486602", "text": "BODY MASS INDEX QUANTITATIVE TRAIT LOCUS 19" }, { - "baseId": "486669|486670", + "upstreamId": "486669|486670", "text": "Multiple synostoses syndrome 4" }, { - "baseId": "486675|486676", + "upstreamId": "486675|486676", "text": "SHORT-RIB THORACIC DYSPLASIA 19 WITHOUT POLYDACTYLY" }, { - "baseId": "486675|486676|486677|486678|550898", + "upstreamId": "486675|486676|486677|486678|550898", "text": "Short-rib thoracic dysplasia 19 with or without polydactyly" }, { - "baseId": "486695|919510|919511|974886", + "upstreamId": "486695|919510|919511|974886", "text": "Developmental and epileptic encephalopathy, 66" }, { - "baseId": "486703|550170", + "upstreamId": "486703|550170", "text": "Leukodystrophy, hypomyelinating, 14" }, { - "baseId": "486726|486727", + "upstreamId": "486726|486727", "text": "Pediatric metastatic thyroid tumour" }, { - "baseId": "486748|511754|535681|535682|535685|609309|788825|961289", + "upstreamId": "486748|511754|535681|535682|535685|609309|788825|961289", "text": "Developmental and epileptic encephalopathy, 64" }, { - "baseId": "486810|486811|486812|798663|816475|919463", + "upstreamId": "486810|486811|486812|798663|816475|919463", "text": "Encephalopathy, acute, infection-induced (herpes-specific), susceptibility to, 8" }, { - "baseId": "487471|487565|917021", + "upstreamId": "487471|487565|917021", "text": "Congenital heart disease (variable)" }, { - "baseId": "488076", + "upstreamId": "488076", "text": "Primary ovarian failure" }, { - "baseId": "488080|488081|488082|563452|836478", + "upstreamId": "488080|488081|488082|563452|836478", "text": "Early infantile epileptic encephalopathy 59" }, { - "baseId": "488085|488086", + "upstreamId": "488085|488086", "text": "Erythrocytosis, familial, 5" }, { - "baseId": "488087|976709", + "upstreamId": "488087|976709", "text": "Diamond-Blackfan anemia-like" }, { - "baseId": "488091|488092|488093|488094|965630", + "upstreamId": "488091|488092|488093|488094|965630", "text": "Congenital heart defects, multiple types, 5" }, { - "baseId": "488127", + "upstreamId": "488127", "text": "Islet cell adenomatosis" }, { - "baseId": "488146|488147|539094", + "upstreamId": "488146|488147|539094", "text": "Myotonic dystrophy" }, { - "baseId": "488173", + "upstreamId": "488173", "text": "Kala-azar susceptibility 2" }, { - "baseId": "489148", + "upstreamId": "489148", "text": "COL11A2-Related Disorders" }, { - "baseId": "489148|514005|966698|966716|966717", + "upstreamId": "489148|514005|966698|966716|966717", "text": "Short long bone" }, { - "baseId": "489148|966698|966727|966728|966729|966731", + "upstreamId": "489148|966698|966727|966728|966729|966731", "text": "Thickened nuchal skin fold" }, { - "baseId": "490222|801106", + "upstreamId": "490222|801106", "text": "Focal Segmental Glomerulosclerosis 10" }, { - "baseId": "492743|496667", + "upstreamId": "492743|496667", "text": "Fever-associated acute infantile liver failure syndrome" }, { - "baseId": "493436", + "upstreamId": "493436", "text": "SMAD3-Related Disorder" }, { - "baseId": "494917", + "upstreamId": "494917", "text": "Mild hemophilia A" }, { - "baseId": "494918|672075", + "upstreamId": "494918|672075", "text": "Neurodegeneration with brain iron accumulation 8" }, { - "baseId": "494920|494921|494922|494923|494924|494925|971580", + "upstreamId": "494920|494921|494922|494923|494924|494925|971580", "text": "Amyloidosis, primary localized cutaneous, 3" }, { - "baseId": "494926|494927|626156|626157", + "upstreamId": "494926|494927|626156|626157", "text": "Neurodegeneration with brain iron accumulation 7" }, { - "baseId": "495005|495006|495007|495008|495009|495010|495011|965270|966362", + "upstreamId": "495005|495006|495007|495008|495009|495010|495011|965270|966362", "text": "Microcephaly 20, primary, autosomal recessive" }, { - "baseId": "495473|963199|963200|963202|963203", + "upstreamId": "495473|963199|963200|963202|963203", "text": "Tolchin-Le Caignec syndrome" }, { - "baseId": "495535", + "upstreamId": "495535", "text": "PHIP-Related disorders" }, { - "baseId": "495552", + "upstreamId": "495552", "text": "CENPJ-Related Disorders" }, { - "baseId": "495916|495917|495918|495919", + "upstreamId": "495916|495917|495918|495919", "text": "Amyotrophic lateral sclerosis, susceptibility to, 25" }, { - "baseId": "495920", + "upstreamId": "495920", "text": "BLOOD GROUP, MN" }, { - "baseId": "496106|496107|496108", + "upstreamId": "496106|496107|496108", "text": "Short-rib thoracic dysplasia 20 with polydactyly" }, { - "baseId": "496109", + "upstreamId": "496109", "text": "Orofaciodigital syndrome 17" }, { - "baseId": "496109", + "upstreamId": "496109", "text": "Mohr syndrome" }, { - "baseId": "496318", + "upstreamId": "496318", "text": "Rare isolated myopia" }, { - "baseId": "496338", + "upstreamId": "496338", "text": "Congenital membranous nephropathy due to maternal anti-neutral endopeptidase alloimmunization" }, { - "baseId": "496684", + "upstreamId": "496684", "text": "Hypotonia-speech impairment-severe cognitive delay syndrome" }, { - "baseId": "496803", + "upstreamId": "496803", "text": "Immunodeficiency due to a late component of complement deficiency" }, { - "baseId": "497172", + "upstreamId": "497172", "text": "Respiratory distress associated with prematurity" }, { - "baseId": "497235", + "upstreamId": "497235", "text": "Hereditary ataxia" }, { - "baseId": "497421", + "upstreamId": "497421", "text": "Idiopathic bronchiectasis" }, { - "baseId": "497548", + "upstreamId": "497548", "text": "Hereditary methemoglobinemia" }, { - "baseId": "497913|538970|583089", + "upstreamId": "497913|538970|583089", "text": "Orofaciodigital syndrome 18" }, { - "baseId": "498462", + "upstreamId": "498462", "text": "Neurodevelopmental and congenital anomalies" }, { - "baseId": "504813", + "upstreamId": "504813", "text": "Cocaine-Related Disorders" }, { - "baseId": "508703|508704", + "upstreamId": "508703|508704", "text": "Keratoconus 9" }, { - "baseId": "508758", + "upstreamId": "508758", "text": "Autosomal-Recessive Hereditary Hearing Impairment" }, { - "baseId": "508759|508760|508761|508762|858724", + "upstreamId": "508759|508760|508761|508762|858724", "text": "Epilepsy, juvenile myoclonic, susceptibility to, 10" }, { - "baseId": "509021|509022|509023|789366|858343|858344|920100", + "upstreamId": "509021|509022|509023|789366|858343|858344|920100", "text": "Developmental and epileptic encephalopathy, 60" }, { - "baseId": "509054|509055", + "upstreamId": "509054|509055", "text": "Early infantile epileptic encephalopathy 61" }, { - "baseId": "510064", + "upstreamId": "510064", "text": "Narrow palate" }, { - "baseId": "510064", + "upstreamId": "510064", "text": "Abnormal vena cava morphology" }, { - "baseId": "510064", + "upstreamId": "510064", "text": "Aortic tortuosity" }, { - "baseId": "511233", + "upstreamId": "511233", "text": "H3F3A-related condition" }, { - "baseId": "511422|511423", + "upstreamId": "511422|511423", "text": "Rhizomelic limb shortening with dysmorphic features" }, { - "baseId": "511504|538359|583203|583204|608856|961413|964723|964724|970775", + "upstreamId": "511504|538359|583203|583204|608856|961413|964723|964724|970775", "text": "Neurodevelopmental disorder with impaired intellectual development, hypotonia, and ataxia" }, { - "baseId": "511615|969770|969781|969789|969791|969875|969877|969878", + "upstreamId": "511615|969770|969781|969789|969791|969875|969877|969878", "text": "Chromatinopathy" }, { - "baseId": "511653", + "upstreamId": "511653", "text": "CSNK2B-related intellectual disability with or without epilepsy" }, { - "baseId": "511804|551258|551259|551260|551261|798613|858741|861585|920263|964317", + "upstreamId": "511804|551258|551259|551260|551261|798613|858741|861585|920263|964317", "text": "Mental retardation, autosomal dominant 58" }, { - "baseId": "511875|792648|792649|792650|792651", + "upstreamId": "511875|792648|792649|792650|792651", "text": "Liang-Wang syndrome" }, { - "baseId": "511959", + "upstreamId": "511959", "text": "TRPV4-Associated Disorders" }, { - "baseId": "512291|512292", + "upstreamId": "512291|512292", "text": "Deafness, autosomal recessive 115" }, { - "baseId": "512310|513470|966802", + "upstreamId": "512310|513470|966802", "text": "Vertebral anomalies and variable endocrine and T-cell dysfunction" }, { - "baseId": "512539|590974|590977|619890|619891|619892|619893|619894|619895|792082|798772|805123|903646|919957|963939|964896|966601|970513|971166", + "upstreamId": "512539|590974|590977|619890|619891|619892|619893|619894|619895|792082|798772|805123|903646|919957|963939|964896|966601|970513|971166", "text": "Developmental delay with variable intellectual impairment and behavioral abnormalities" }, { - "baseId": "512732", + "upstreamId": "512732", "text": "DLG3-Related Disorder" }, { - "baseId": "513082|590296|861245|861246", + "upstreamId": "513082|590296|861245|861246", "text": "Proteinuria, chronic benign" }, { - "baseId": "513195", + "upstreamId": "513195", "text": "Seizures, benign familial infantile, 6" }, { - "baseId": "513197|513198|513455|624058|624059", + "upstreamId": "513197|513198|513455|624058|624059", "text": "Shwachman-Diamond syndrome 2" }, { - "baseId": "513201", + "upstreamId": "513201", "text": "Idiopathic transverse myelitis" }, { - "baseId": "513203", + "upstreamId": "513203", "text": "MICROTIA WITHOUT HEARING IMPAIRMENT" }, { - "baseId": "513215|513758|613404|984064", + "upstreamId": "513215|513758|613404|984064", "text": "Hereditary spherocytosis" }, { - "baseId": "513252", + "upstreamId": "513252", "text": "Neurodegeneration due to 3-hydroxyisobutyryl coenzyme A hydrolase deficiency" }, { - "baseId": "513287|539003|626168", + "upstreamId": "513287|539003|626168", "text": "Ullrich congenital muscular dystrophy" }, { - "baseId": "513347", + "upstreamId": "513347", "text": "Osteosclerotic metaphyseal dysplasia" }, { - "baseId": "513410", + "upstreamId": "513410", "text": "EVI5-related condition" }, { - "baseId": "513412", + "upstreamId": "513412", "text": "TRIP12 associated autism with facial dysmorphology" }, { - "baseId": "513423", + "upstreamId": "513423", "text": "ZNF292-related neurodevelopmental condition" }, { - "baseId": "513429|513430", + "upstreamId": "513429|513430", "text": "SNAPC4-associated inflammatory disease" }, { - "baseId": "513431|513432", + "upstreamId": "513431|513432", "text": "ABCA2-related condition" }, { - "baseId": "513435|513436", + "upstreamId": "513435|513436", "text": "AGTPBP1-related condition" }, { - "baseId": "513435|513436|590700|590701|590702|590703|590704|590705|971341|971342|973103", + "upstreamId": "513435|513436|590700|590701|590702|590703|590704|590705|971341|971342|973103", "text": "Neurodegeneration, childhood-onset, with cerebellar atrophy" }, { - "baseId": "513439", + "upstreamId": "513439", "text": "SPI1-related eosinophilia syndrome" }, { - "baseId": "513442|623048", + "upstreamId": "513442|623048", "text": "MYBPC1-related condition" }, { - "baseId": "513444", + "upstreamId": "513444", "text": "GDF11-associated multiple congenital anomalies and ID" }, { - "baseId": "513445", + "upstreamId": "513445", "text": "SMARCC2-related condition" }, { - "baseId": "513446|539441|539442", + "upstreamId": "513446|539441|539442", "text": "Proteasome-associated autoinflammatory syndrome 2" }, { - "baseId": "513453|513454|613433", + "upstreamId": "513453|513454|613433", "text": "Neurodevelopmental disorder with microcephaly, epilepsy, and hypomyelination" }, { - "baseId": "513456|513457", + "upstreamId": "513456|513457", "text": "GLYR1-related condition" }, { - "baseId": "513461", + "upstreamId": "513461", "text": "USP7-related condition" }, { - "baseId": "513470", + "upstreamId": "513470", "text": "TBX2-related condition" }, { - "baseId": "513549|615790|677277|822295|970796", + "upstreamId": "513549|615790|677277|822295|970796", "text": "Deafness, autosomal dominant 39, with dentinogenesis imperfecta 1" }, { - "baseId": "513600", + "upstreamId": "513600", "text": "DEND syndrome" }, { - "baseId": "513616", + "upstreamId": "513616", "text": "Xeroderma pigmentosum and Cockayne syndrome complex" }, { - "baseId": "513645|625967|625968", + "upstreamId": "513645|625967|625968", "text": "Pearson syndrome" }, { - "baseId": "513701", + "upstreamId": "513701", "text": "PBX1-related intellectual disability and pleiotropic developmental defects" }, { - "baseId": "513704|964899", + "upstreamId": "513704|964899", "text": "Intellectual disability, x-linked 107" }, { - "baseId": "513705|576291", + "upstreamId": "513705|576291", "text": "Arthrogryposis multiplex congenita 2, neurogenic type" }, { - "baseId": "513721|513722|513723", + "upstreamId": "513721|513722|513723", "text": "Elsahy-Waters syndrome" }, { - "baseId": "513746|513747|513748", + "upstreamId": "513746|513747|513748", "text": "Osteogenesis imperfecta, type 18" }, { - "baseId": "513759|513760|513761|513762|513763|788734|789345|789346", + "upstreamId": "513759|513760|513761|513762|513763|788734|789345|789346", "text": "Leukodystrophy, hypomyelinating, 15" }, { - "baseId": "513764|513765|513766|513767|513768", + "upstreamId": "513764|513765|513766|513767|513768", "text": "Multiple mitochondrial dysfunctions syndrome 6" }, { - "baseId": "513764", + "upstreamId": "513764", "text": "PMPCB-related mitochondrial disorder" }, { - "baseId": "513769", + "upstreamId": "513769", "text": "Hyperostosis cranialis interna" }, { - "baseId": "513781", + "upstreamId": "513781", "text": "AKT1 Inhibitor response" }, { - "baseId": "513782", + "upstreamId": "513782", "text": "WEE1 Inhibitor response" }, { - "baseId": "513793|513796|513799", + "upstreamId": "513793|513796|513799", "text": "VEGF Inhibitors response" }, { - "baseId": "513798", + "upstreamId": "513798", "text": "MEK Inhibitor response" }, { - "baseId": "513800|513801", + "upstreamId": "513800|513801", "text": "mTOR Inhibitor response" }, { - "baseId": "513815|513816", + "upstreamId": "513815|513816", "text": "PDS5A-related disorder" }, { - "baseId": "513825", + "upstreamId": "513825", "text": "WAPL-related disorder" }, { - "baseId": "513826|513827|513828|513829|513830|513848", + "upstreamId": "513826|513827|513828|513829|513830|513848", "text": "STAG2-related disorder" }, { - "baseId": "513827|513828|513830|612202|612203|612204|798804|798805", + "upstreamId": "513827|513828|513830|612202|612203|612204|798804|798805", "text": "Mullegama-Klein-Martinez syndrome" }, { - "baseId": "513861|513862|513863", + "upstreamId": "513861|513862|513863", "text": "Combined oxidative phosphorylation deficiency 36" }, { - "baseId": "513864|513865|615240|615241", + "upstreamId": "513864|513865|615240|615241", "text": "Spermatogenic failure 24" }, { - "baseId": "513884", + "upstreamId": "513884", "text": "Spermatogenic failure 26" }, { - "baseId": "513887", + "upstreamId": "513887", "text": "Leukodystrophy, hypomyelinating, 16" }, { - "baseId": "513889", + "upstreamId": "513889", "text": "Adrenal pheochromocytoma" }, { - "baseId": "513889", + "upstreamId": "513889", "text": "Recurrent paroxysmal headache" }, { - "baseId": "513891", + "upstreamId": "513891", "text": "Palmoplantar hyperhidrosis" }, { - "baseId": "513891|513990", + "upstreamId": "513891|513990", "text": "Atrophic scars" }, { - "baseId": "513896", + "upstreamId": "513896", "text": "Constipation" }, { - "baseId": "513896", + "upstreamId": "513896", "text": "Abnormal urinary color" }, { - "baseId": "513905", + "upstreamId": "513905", "text": "Hyperglycemia" }, { - "baseId": "513906|513959|514053|677975", + "upstreamId": "513906|513959|514053|677975", "text": "Arteriovenous malformation" }, { - "baseId": "513907", + "upstreamId": "513907", "text": "Bilateral cleft palate" }, { - "baseId": "513907", + "upstreamId": "513907", "text": "Absent gallbladder" }, { - "baseId": "513911", + "upstreamId": "513911", "text": "Low-output congestive heart failure" }, { - "baseId": "513914", + "upstreamId": "513914", "text": "Late-onset muscular dystrophy" }, { - "baseId": "513915", + "upstreamId": "513915", "text": "Severe photosensitivity" }, { - "baseId": "513917|513990", + "upstreamId": "513917|513990", "text": "Hyperextensible skin" }, { - "baseId": "513917", + "upstreamId": "513917", "text": "Spinal deformities" }, { - "baseId": "513926", + "upstreamId": "513926", "text": "Abnormal myelination" }, { - "baseId": "513927|513928", + "upstreamId": "513927|513928", "text": "Amenorrhea" }, { - "baseId": "513929", + "upstreamId": "513929", "text": "Optic disc drusen" }, { - "baseId": "513931", + "upstreamId": "513931", "text": "Absent muscle fiber dysferlin" }, { - "baseId": "513945", + "upstreamId": "513945", "text": "Teratoma" }, { - "baseId": "513945|626447|626448|626449|626450", + "upstreamId": "513945|626447|626448|626449|626450", "text": "Imperforate anus" }, { - "baseId": "513946", + "upstreamId": "513946", "text": "Progressive gait ataxia" }, { - "baseId": "513953", + "upstreamId": "513953", "text": "Hydrocele testis" }, { - "baseId": "513967", + "upstreamId": "513967", "text": "Ventricular arrhythmia" }, { - "baseId": "513970", + "upstreamId": "513970", "text": "Skeletal muscle hypertrophy" }, { - "baseId": "513970", + "upstreamId": "513970", "text": "Lumbar hyperlordosis" }, { - "baseId": "513970", + "upstreamId": "513970", "text": "Hypoplasia of the maxilla" }, { - "baseId": "513972|514028", + "upstreamId": "513972|514028", "text": "Vasculitis" }, { - "baseId": "513977", + "upstreamId": "513977", "text": "Chorioretinal coloboma" }, { - "baseId": "513977", + "upstreamId": "513977", "text": "Pulmonary artery atresia" }, { - "baseId": "513977", + "upstreamId": "513977", "text": "Retinal coloboma" }, { - "baseId": "513978", + "upstreamId": "513978", "text": "Choanal atresia" }, { - "baseId": "513985", + "upstreamId": "513985", "text": "Pulmonary arteriovenous malformation" }, { - "baseId": "513985", + "upstreamId": "513985", "text": "Palate telangiectasia" }, { - "baseId": "513985|514023", + "upstreamId": "513985|514023", "text": "Oral cavity telangiectasia" }, { - "baseId": "513987", + "upstreamId": "513987", "text": "Angiofibromas" }, { - "baseId": "513987", + "upstreamId": "513987", "text": "Renal angiomyolipoma" }, { - "baseId": "513990", + "upstreamId": "513990", "text": "Cigarette-paper scars" }, { - "baseId": "513990", + "upstreamId": "513990", "text": "Large joint dislocations" }, { - "baseId": "513995", + "upstreamId": "513995", "text": "Impaired gluconeogenesis" }, { - "baseId": "513995", + "upstreamId": "513995", "text": "Abnormality of acid-base homeostasis" }, { - "baseId": "514002", + "upstreamId": "514002", "text": "Loss of consciousness" }, { - "baseId": "514023", + "upstreamId": "514023", "text": "Lip telangiectasia" }, { - "baseId": "514032", + "upstreamId": "514032", "text": "Pachygyria" }, { - "baseId": "514035|514036", + "upstreamId": "514035|514036", "text": "Cobalamin deficiency" }, { - "baseId": "514043|514327", + "upstreamId": "514043|514327", "text": "Aplasia/Hypoplasia of the corpus callosum" }, { - "baseId": "514050|514187", + "upstreamId": "514050|514187", "text": "Striae distensae" }, { - "baseId": "514050", + "upstreamId": "514050", "text": "Pulmonary artery dilatation" }, { - "baseId": "514051", + "upstreamId": "514051", "text": "Myxomatous mitral valve degeneration" }, { - "baseId": "514051", + "upstreamId": "514051", "text": "Lumbar scoliosis" }, { - "baseId": "514059|679672", + "upstreamId": "514059|679672", "text": "Enlarged kidney" }, { - "baseId": "514069|514070|608886|608887|608888|608889|608891|608892|608893|971066", + "upstreamId": "514069|514070|608886|608887|608888|608889|608891|608892|608893|971066", "text": "Ciliary dyskinesia, primary, 40" }, { - "baseId": "514079", + "upstreamId": "514079", "text": "Premature birth" }, { - "baseId": "514084", + "upstreamId": "514084", "text": "Reduced bone mineral density" }, { - "baseId": "514092", + "upstreamId": "514092", "text": "Tension-type headache" }, { - "baseId": "514099|623231", + "upstreamId": "514099|623231", "text": "Apnea" }, { - "baseId": "514103", + "upstreamId": "514103", "text": "Myopathic facies" }, { - "baseId": "514103", + "upstreamId": "514103", "text": "Axial muscle stiffness" }, { - "baseId": "514106|622034|963005|963006|963007|963008|963009|963010|963011|963012|963013|963014|963015|963016|963017|963018|963019|963020|963021|963022|963023|963024|963025|963026|963027|963028|963029|963030|963031|963032|963033|963034|963035|963036|963037|963038|963039|963040|963041|963042|963043|963044|963045|963046|963047|963048|963049|963050|963051|963052|963053|963054|963055|963056|963057|963058|963059", + "upstreamId": "514106|622034|963005|963006|963007|963008|963009|963010|963011|963012|963013|963014|963015|963016|963017|963018|963019|963020|963021|963022|963023|963024|963025|963026|963027|963028|963029|963030|963031|963032|963033|963034|963035|963036|963037|963038|963039|963040|963041|963042|963043|963044|963045|963046|963047|963048|963049|963050|963051|963052|963053|963054|963055|963056|963057|963058|963059", "text": "Aganglionic megacolon" }, { - "baseId": "514106", + "upstreamId": "514106", "text": "Abnormality of the rectum" }, { - "baseId": "514114|792691", + "upstreamId": "514114|792691", "text": "Nephropathy" }, { - "baseId": "514115", + "upstreamId": "514115", "text": "Unilateral deafness" }, { - "baseId": "514116", + "upstreamId": "514116", "text": "Nephritis" }, { - "baseId": "514116", + "upstreamId": "514116", "text": "Global glomerulosclerosis" }, { - "baseId": "514117", + "upstreamId": "514117", "text": "Elevated mean arterial pressure" }, { - "baseId": "514119", + "upstreamId": "514119", "text": "Sepsis" }, { - "baseId": "514122", + "upstreamId": "514122", "text": "Abnormality of the nail" }, { - "baseId": "514122", + "upstreamId": "514122", "text": "Bifid nail" }, { - "baseId": "514122", + "upstreamId": "514122", "text": "Ridged nail" }, { - "baseId": "514123", + "upstreamId": "514123", "text": "Unilateral polymicrogyria" }, { - "baseId": "514123", + "upstreamId": "514123", "text": "Frontoparietal polymicrogyria" }, { - "baseId": "514125", + "upstreamId": "514125", "text": "Encephalitis" }, { - "baseId": "514125", + "upstreamId": "514125", "text": "Episodic fever" }, { - "baseId": "514125|514142", + "upstreamId": "514125|514142", "text": "Myocarditis" }, { - "baseId": "514126", + "upstreamId": "514126", "text": "Arterial thrombosis" }, { - "baseId": "514127", + "upstreamId": "514127", "text": "Subependymal nodules" }, { - "baseId": "514133", + "upstreamId": "514133", "text": "Abnormal muscle fiber dystrophin expression" }, { - "baseId": "514137", + "upstreamId": "514137", "text": "Mild fetal ventriculomegaly" }, { - "baseId": "514140", + "upstreamId": "514140", "text": "Low-molecular-weight proteinuria" }, { - "baseId": "514140", + "upstreamId": "514140", "text": "Multiple small medullary renal cysts" }, { - "baseId": "514143", + "upstreamId": "514143", "text": "Absent pubic hair" }, { - "baseId": "514143", + "upstreamId": "514143", "text": "Absent axillary hair" }, { - "baseId": "514143", + "upstreamId": "514143", "text": "Female external genitalia in individual with 46,XY karyotype" }, { - "baseId": "514148", + "upstreamId": "514148", "text": "Chorioretinal atrophy" }, { - "baseId": "514150", + "upstreamId": "514150", "text": "Optic neuritis" }, { - "baseId": "514152", + "upstreamId": "514152", "text": "Oromandibular dystonia" }, { - "baseId": "514154", + "upstreamId": "514154", "text": "Steppage gait" }, { - "baseId": "514155", + "upstreamId": "514155", "text": "Incomprehensible speech" }, { - "baseId": "514159|514160", + "upstreamId": "514159|514160", "text": "Peripheral hypomyelination" }, { - "baseId": "514170", + "upstreamId": "514170", "text": "Narrow mouth" }, { - "baseId": "514173", + "upstreamId": "514173", "text": "Long face" }, { - "baseId": "514173", + "upstreamId": "514173", "text": "Proximal placement of thumb" }, { - "baseId": "514176", + "upstreamId": "514176", "text": "Epileptic spasms" }, { - "baseId": "514184", + "upstreamId": "514184", "text": "Coarctation of aorta" }, { - "baseId": "514185", + "upstreamId": "514185", "text": "Hearing abnormality" }, { - "baseId": "514187", + "upstreamId": "514187", "text": "Abnormality of the mitral valve" }, { - "baseId": "514208|621018", + "upstreamId": "514208|621018", "text": "Facial hemangioma" }, { - "baseId": "514213", + "upstreamId": "514213", "text": "Torticollis" }, { - "baseId": "514216|514217|801187|801188", + "upstreamId": "514216|514217|801187|801188", "text": "Migraine with aura" }, { - "baseId": "514218", + "upstreamId": "514218", "text": "Short phalanx of finger" }, { - "baseId": "514218", + "upstreamId": "514218", "text": "Sandal gap" }, { - "baseId": "514218", + "upstreamId": "514218", "text": "Hypermetropia" }, { - "baseId": "514221", + "upstreamId": "514221", "text": "Frontal bossing" }, { - "baseId": "514263", + "upstreamId": "514263", "text": "LOW DENSITY LIPOPROTEIN CHOLESTEROL LEVEL QUANTITATIVE TRAIT LOCUS 7" }, { - "baseId": "514264|609315", + "upstreamId": "514264|609315", "text": "Spermatogenic failure 27" }, { - "baseId": "514265", + "upstreamId": "514265", "text": "Synostosis involving bones of the lower limbs" }, { - "baseId": "514265", + "upstreamId": "514265", "text": "Severe postnatal growth retardation" }, { - "baseId": "514266", + "upstreamId": "514266", "text": "AFib amyloidosis" }, { - "baseId": "514277", + "upstreamId": "514277", "text": "Intellectual disability syndrome due to a DYRK1A point mutation" }, { - "baseId": "514293", + "upstreamId": "514293", "text": "Human immunodeficiency virus type 1, rapid progression to AIDS" }, { - "baseId": "514305|514306|514307|575488|612052|790402|790403|790404|918153|970773|977199", + "upstreamId": "514305|514306|514307|575488|612052|790402|790403|790404|918153|970773|977199", "text": "Ververi-Brady syndrome" }, { - "baseId": "514310|514311", + "upstreamId": "514310|514311", "text": "Abnormality of the ribs" }, { - "baseId": "514310|514311|550882|550883|800785", + "upstreamId": "514310|514311|550882|550883|800785", "text": "External ophthalmoplegia" }, { - "baseId": "514310|514311", + "upstreamId": "514310|514311", "text": "Ophthalmoplegia, external, with rib and vertebral anomalies" }, { - "baseId": "514432", + "upstreamId": "514432", "text": "NFIA-related disorders" }, { - "baseId": "514844", + "upstreamId": "514844", "text": "Microcephaly 23, primary, autosomal recessive" }, { - "baseId": "514845|514846|514847", + "upstreamId": "514845|514846|514847", "text": "Microcephaly 22, primary, autosomal recessive" }, { - "baseId": "514850", + "upstreamId": "514850", "text": "Microcephaly 21, primary, autosomal recessive" }, { - "baseId": "517552|619120|620052|620053", + "upstreamId": "517552|619120|620052|620053", "text": "APOB-Related Disorders" }, { - "baseId": "520495|620169|620170", + "upstreamId": "520495|620169|620170", "text": "EVC-Related Disorders" }, { - "baseId": "521177|521178|560315|560448|633932|633933|633934|633935|691852|830834|830835|932903|932904|940815|944616", + "upstreamId": "521177|521178|560315|560448|633932|633933|633934|633935|691852|830834|830835|932903|932904|940815|944616", "text": "Pure or complex autosomal recessive spastic paraplegia" }, { - "baseId": "525349|639123|919283", + "upstreamId": "525349|639123|919283", "text": "Lymphoma, Non-Hodgkin, Familial" }, { - "baseId": "528414", + "upstreamId": "528414", "text": "Inherited spastic paresis" }, { - "baseId": "533574", + "upstreamId": "533574", "text": "KCNB1-related disorder" }, { - "baseId": "535228", + "upstreamId": "535228", "text": "Abnormal sperm morphology" }, { - "baseId": "535228", + "upstreamId": "535228", "text": "Reduced sperm motility" }, { - "baseId": "535230", + "upstreamId": "535230", "text": "Echogenic fetal bowel" }, { - "baseId": "535230", + "upstreamId": "535230", "text": "Bilateral fetal pyelectasis" }, { - "baseId": "535231|535232|535233|535234|789367|963142", + "upstreamId": "535231|535232|535233|535234|789367|963142", "text": "Jaberi-Elahi syndrome" }, { - "baseId": "535285|535286|535287|535288|536191", + "upstreamId": "535285|535286|535287|535288|536191", "text": "Ehlers-danlos syndrome, classic-like, 2" }, { - "baseId": "535380", + "upstreamId": "535380", "text": "Recurrent encephalopathy" }, { - "baseId": "535380|622762|622764|622765", + "upstreamId": "535380|622762|622764|622765", "text": "Encephalopathy, acute, infection-induced, susceptibility to, 9" }, { - "baseId": "535383", + "upstreamId": "535383", "text": "DACT1-related neural tube defects" }, { - "baseId": "535386", + "upstreamId": "535386", "text": "13q partial monosomy syndrome" }, { - "baseId": "535693|792798|966164|966165", + "upstreamId": "535693|792798|966164|966165", "text": "Diarrhea" }, { - "baseId": "535693|550130", + "upstreamId": "535693|550130", "text": "Failure to thrive in infancy" }, { - "baseId": "535693", + "upstreamId": "535693", "text": "Chronic diarrhea" }, { - "baseId": "535693", + "upstreamId": "535693", "text": "Impaired feeding ability" }, { - "baseId": "535700|556483|615915", + "upstreamId": "535700|556483|615915", "text": "Muscular dystrophy-dystroglycanopathy (limb-girdle), type C, 8" }, { - "baseId": "535725|535726|535727|535728|970528", + "upstreamId": "535725|535726|535727|535728|970528", "text": "Congenital disorder of glycosylation with defective fucosylation 1" }, { - "baseId": "535729|535730|535731|965424|965425|965426", + "upstreamId": "535729|535730|535731|965424|965425|965426", "text": "OOCYTE MATURATION DEFECT 5" }, { - "baseId": "535752", + "upstreamId": "535752", "text": "Deafness, autosomal recessive 26" }, { - "baseId": "535756|535757|535758", + "upstreamId": "535756|535757|535758", "text": "Hyperekplexia 4" }, { - "baseId": "536004", + "upstreamId": "536004", "text": "Isolated nail anomaly" }, { - "baseId": "536009", + "upstreamId": "536009", "text": "Premature ovarian failure 14" }, { - "baseId": "536010|536011", + "upstreamId": "536010|536011", "text": "Deafness, autosomal recessive 109" }, { - "baseId": "536026|536027|536028|536029|575487|961597|983652|983653", + "upstreamId": "536026|536027|536028|536029|575487|961597|983652|983653", "text": "Epileptic encephalopathy, infantile or early childhood 3" }, { - "baseId": "536041", + "upstreamId": "536041", "text": "SHORT-RIB THORACIC DYSPLASIA 4 WITH POLYDACTYLY" }, { - "baseId": "536042", + "upstreamId": "536042", "text": "gamma-Glutamyltransferase deficiency" }, { - "baseId": "536060", + "upstreamId": "536060", "text": "Anomalous pulmonary venous return" }, { - "baseId": "536064|857664|857665|857666|857667|857668|857669|857670", + "upstreamId": "536064|857664|857665|857666|857667|857668|857669|857670", "text": "Conotruncal defect" }, { - "baseId": "536074", + "upstreamId": "536074", "text": "Protoporphyria, erythropoietic, 2" }, { - "baseId": "536086|536087", + "upstreamId": "536086|536087", "text": "CYP2C8 POLYMORPHISM" }, { - "baseId": "536130|536131", + "upstreamId": "536130|536131", "text": "Glycosylphosphatidylinositol biosynthesis defect 17" }, { - "baseId": "536132|536133", + "upstreamId": "536132|536133", "text": "Tetraamelia syndrome 2" }, { - "baseId": "536134", + "upstreamId": "536134", "text": "Humerofemoral hypoplasia with radiotibial ray deficiency" }, { - "baseId": "536135", + "upstreamId": "536135", "text": "Waardenburg syndrome type 2" }, { - "baseId": "536136", + "upstreamId": "536136", "text": "Cleft palate, proliferative retinopathy, and developmental delay" }, { - "baseId": "536137", + "upstreamId": "536137", "text": "RFT1 related CDG" }, { - "baseId": "536138|536151|536160|536186|536187", + "upstreamId": "536138|536151|536160|536186|536187", "text": "Interstitial pneumonitis" }, { - "baseId": "536138|536151|536160|536186|536187", + "upstreamId": "536138|536151|536160|536186|536187", "text": "Cirrhosis of liver" }, { - "baseId": "536169|536170|536171|536172|536173|983569", + "upstreamId": "536169|536170|536171|536172|536173|983569", "text": "Charcot-marie-tooth disease, axonal, type 2DD" }, { - "baseId": "536184", + "upstreamId": "536184", "text": "BMPR1A Skeletal Dysplasia Syndrome" }, { - "baseId": "536185|538933|538934|578020", + "upstreamId": "536185|538933|538934|578020", "text": "Spermatogenic failure 33" }, { - "baseId": "536185", + "upstreamId": "536185", "text": "multiple morphologic abnormalities of the sperm flagellum" }, { - "baseId": "536185", + "upstreamId": "536185", "text": "dysplasia of the mitochondrial sheath" }, { - "baseId": "536185", + "upstreamId": "536185", "text": "asthenozoospermia" }, { - "baseId": "536236|620735", + "upstreamId": "536236|620735", "text": "TTC21B-Related Disorders" }, { - "baseId": "536352", + "upstreamId": "536352", "text": "ROR2-Related Disorders" }, { - "baseId": "536834", + "upstreamId": "536834", "text": "GRIN2B-Related Disorder" }, { - "baseId": "537303|556459|919788|961430|961433|964749", + "upstreamId": "537303|556459|919788|961430|961433|964749", "text": "Optic atrophy 12" }, { - "baseId": "537654", + "upstreamId": "537654", "text": "Suxamethonium response - slow metabolism" }, { - "baseId": "537662|537663|537664|537665|614692|614693", + "upstreamId": "537662|537663|537664|537665|614692|614693", "text": "Keipert syndrome" }, { - "baseId": "538327|578378|906220|906221|906222|906223|906224|906225|906226|906227|906228|906229", + "upstreamId": "538327|578378|906220|906221|906222|906223|906224|906225|906226|906227|906228|906229", "text": "Rokitansky Kuster Hauser syndrome" }, { - "baseId": "538391|590732", + "upstreamId": "538391|590732", "text": "Fulminant hepatic failure" }, { - "baseId": "538391|538392|590732|680031|680032|970558", + "upstreamId": "538391|538392|590732|680031|680032|970558", "text": "Infantile liver failure syndrome 3" }, { - "baseId": "538603", + "upstreamId": "538603", "text": "lovastatin response - Efficacy" }, { - "baseId": "538604", + "upstreamId": "538604", "text": "sunitinib response - Toxicity/ADR" }, { - "baseId": "538616", + "upstreamId": "538616", "text": "Parkinsonism-dystonia, infantile, 2" }, { - "baseId": "538617|538618|538619|538620", + "upstreamId": "538617|538618|538619|538620", "text": "Mitochondrial complex 1 deficiency, nuclear type 32" }, { - "baseId": "538627|623665|623666|623667|919022|970829", + "upstreamId": "538627|623665|623666|623667|919022|970829", "text": "Coffin-Siris syndrome 10" }, { - "baseId": "538627|623665|623666|623667", + "upstreamId": "538627|623665|623666|623667", "text": "Mild facial and digital morphological abnormalities" }, { - "baseId": "538927|615334|615335", + "upstreamId": "538927|615334|615335", "text": "Impaired ADP-induced platelet aggregation" }, { - "baseId": "538933|538934|654330", + "upstreamId": "538933|538934|654330", "text": "Non-syndromic male infertility due to sperm motility disorder" }, { - "baseId": "538933|538934|609187|615983|615984|615985|615986|800342|800343", + "upstreamId": "538933|538934|609187|615983|615984|615985|615986|800342|800343", "text": "Male infertility with teratozoospermia due to single gene mutation" }, { - "baseId": "538954", + "upstreamId": "538954", "text": "Fasting plasma glucose level quantitative trait locus 1" }, { - "baseId": "538975|905825|905826|905827|905828", + "upstreamId": "538975|905825|905826|905827|905828", "text": "Fanconi renotubular syndrome 1" }, { - "baseId": "538996", + "upstreamId": "538996", "text": "Acetyl-CoA acetyltransferase-2 deficiency" }, { - "baseId": "539044", + "upstreamId": "539044", "text": "POLE Exonuclease Domain Mutation" }, { - "baseId": "539116|539117|539118|539119|621023|789341|789342|789343", + "upstreamId": "539116|539117|539118|539119|621023|789341|789342|789343", "text": "Periventricular nodular heterotopia" }, { - "baseId": "539117|539118|539119|789341|789342|789343|918530|918978|977217", + "upstreamId": "539117|539118|539119|789341|789342|789343|918530|918978|977217", "text": "Periventricular nodular heterotopia 9" }, { - "baseId": "539127", + "upstreamId": "539127", "text": "Neuromotor delay" }, { - "baseId": "539144", + "upstreamId": "539144", "text": "Kaposiform hemangioendothelioma" }, { - "baseId": "539144", + "upstreamId": "539144", "text": "Lobular capillary hemangioma" }, { - "baseId": "539144", + "upstreamId": "539144", "text": "Congenital tufted angioma" }, { - "baseId": "539159", + "upstreamId": "539159", "text": "Hemolytic-uremic syndrome" }, { - "baseId": "539160", + "upstreamId": "539160", "text": "Lobular capillary hemangiomas" }, { - "baseId": "539162|742567|980853", + "upstreamId": "539162|742567|980853", "text": "Congenital anomalies of kidney and urinary tract 3" }, { - "baseId": "539187", + "upstreamId": "539187", "text": "RTEL1-related Disorders" }, { - "baseId": "539431", + "upstreamId": "539431", "text": "SLC9A7-related neurodevelopmental disorder" }, { - "baseId": "539431", + "upstreamId": "539431", "text": "Intellectual developmental disorder, X-linked 108" }, { - "baseId": "539434", + "upstreamId": "539434", "text": "Glaucoma 1, open angle, B" }, { - "baseId": "539437|539438|539439|539477", + "upstreamId": "539437|539438|539439|539477", "text": "Proteasome-associated autoinflammatory syndrome 3" }, { - "baseId": "539475|539476|634822", + "upstreamId": "539475|539476|634822", "text": "PROTEASOME-ASSOCIATED AUTOINFLAMMATORY SYNDROME 1, DIGENIC" }, { - "baseId": "539960|539961|539962", + "upstreamId": "539960|539961|539962", "text": "Extra oral halitosis" }, { - "baseId": "539960|539961|539962|576310", + "upstreamId": "539960|539961|539962|576310", "text": "Extraoral halitosis due to methanethiol oxidase deficiency" }, { - "baseId": "539967|977164|977313|977314|977316", + "upstreamId": "539967|977164|977313|977314|977316", "text": "Decreased antibody level in blood" }, { - "baseId": "539978", + "upstreamId": "539978", "text": "Poor motor coordination" }, { - "baseId": "540441", + "upstreamId": "540441", "text": "Spinal muscular atrophy, facioscapulohumeral type" }, { - "baseId": "540443", + "upstreamId": "540443", "text": "Autosomal recessive distal hereditary motor neuropathy" }, { - "baseId": "540459|610399|610400|610402|610403", + "upstreamId": "540459|610399|610400|610402|610403", "text": "Myasthenic syndrome, congenital, 25, presynaptic" }, { - "baseId": "540570|540571", + "upstreamId": "540570|540571", "text": "Pontocerebellar hypoplasia, type 1d" }, { - "baseId": "540570", + "upstreamId": "540570", "text": "Cerebral atrophy" }, { - "baseId": "540572|540573|540574|540575|540576|975663|980320", + "upstreamId": "540572|540573|540574|540575|540576|975663|980320", "text": "Polycystic kidney disease 6 with or without polycystic liver disease" }, { - "baseId": "540580|540581", + "upstreamId": "540580|540581", "text": "Bone marrow failure syndrome 5" }, { - "baseId": "540582", + "upstreamId": "540582", "text": "Phocomelia" }, { - "baseId": "540582", + "upstreamId": "540582", "text": "Bilateral cleft lip and palate" }, { - "baseId": "540583|540584|540585|540586|540587|798630", + "upstreamId": "540583|540584|540585|540586|540587|798630", "text": "Ciliary dyskinesia, primary, 38" }, { - "baseId": "546178", + "upstreamId": "546178", "text": "KCNJ11-Related Disorders" }, { - "baseId": "549007", + "upstreamId": "549007", "text": "LAMA3-Related Disorders" }, { - "baseId": "549494|590364", + "upstreamId": "549494|590364", "text": "1q24q25 microdeletion syndrome" }, { - "baseId": "549495|549496|980402", + "upstreamId": "549495|549496|980402", "text": "Osteogenesis imperfecta, type 19" }, { - "baseId": "550117|970789", + "upstreamId": "550117|970789", "text": "Epilepsy, familial adult myoclonic, 7" }, { - "baseId": "550118", + "upstreamId": "550118", "text": "Epilepsy, familial adult myoclonic, 6" }, { - "baseId": "550129|550226|818753|818754|818755|818756", + "upstreamId": "550129|550226|818753|818754|818755|818756", "text": "Mandibular prognathia" }, { - "baseId": "550129|550226", + "upstreamId": "550129|550226", "text": "Narrow nasal bridge" }, { - "baseId": "550131", + "upstreamId": "550131", "text": "Short philtrum" }, { - "baseId": "550141|550142", + "upstreamId": "550141|550142", "text": "Combined oxidative phosphorylation deficiency 41" }, { - "baseId": "550143|550144|550146|853057|853058", + "upstreamId": "550143|550144|550146|853057|853058", "text": "Combined oxidative phosphorylation deficiency 40" }, { - "baseId": "550147", + "upstreamId": "550147", "text": "Combined oxidative phosphorylation deficiency 42" }, { - "baseId": "550171|550172", + "upstreamId": "550171|550172", "text": "Neurodevelopmental disorder with spasticity and poor growth" }, { - "baseId": "550173", + "upstreamId": "550173", "text": "Inflammatory bowel disease 29" }, { - "baseId": "550206", + "upstreamId": "550206", "text": "Ovarian dysgenesis 6" }, { - "baseId": "550223|550224", + "upstreamId": "550223|550224", "text": "LOW DENSITY LIPOPROTEIN CHOLESTEROL LEVEL QUANTITATIVE TRAIT LOCUS 8" }, { - "baseId": "550227|553415", + "upstreamId": "550227|553415", "text": "Abnormality of esophagus physiology" }, { - "baseId": "550229", + "upstreamId": "550229", "text": "overriding digits" }, { - "baseId": "550229", + "upstreamId": "550229", "text": "clino-symphalangism" }, { - "baseId": "550229", + "upstreamId": "550229", "text": "Osteochondrodysplasia, brachydactyly, and overlapping malformed digits" }, { - "baseId": "550241|550242|970660", + "upstreamId": "550241|550242|970660", "text": "Peeling skin syndrome 6" }, { - "baseId": "550298", + "upstreamId": "550298", "text": "Syndromic hydrocephalus due to diffuse villous hyperplasia of choroid plexus" }, { - "baseId": "550305|550306|550307|550308|550309|550310", + "upstreamId": "550305|550306|550307|550308|550309|550310", "text": "Congenital malrotation of intestine" }, { - "baseId": "550314", + "upstreamId": "550314", "text": "Atrial fibrillation, familial, 1" }, { - "baseId": "550317|550318|550319", + "upstreamId": "550317|550318|550319", "text": "Moyamoya disease 1" }, { - "baseId": "550321|550322|550323|550324|550325|550326|626460|677962|792598|798509|816504|858763|906197|906199|963522|963523|964203|964813|964814|965214|970746|972528|976646", + "upstreamId": "550321|550322|550323|550324|550325|550326|626460|677962|792598|798509|816504|858763|906197|906199|963522|963523|964203|964813|964814|965214|970746|972528|976646", "text": "Intellectual developmental disorder with dysmorphic facies and behavioral abnormalities" }, { - "baseId": "550327|550328|858752", + "upstreamId": "550327|550328|858752", "text": "Neurodevelopmental disorder with epilepsy and hypoplasia of the corpus callosum" }, { - "baseId": "550329|550330|550331|550332|550333|590379|590380|791423|964862|964992|971002|974523", + "upstreamId": "550329|550330|550331|550332|550333|590379|590380|791423|964862|964992|971002|974523", "text": "Neurodevelopmental disorder with regression, abnormal movements, loss of speech, and seizures" }, { - "baseId": "550357", + "upstreamId": "550357", "text": "ITPR1-associated cerebellar ataxia spectrum disorder" }, { - "baseId": "550366", + "upstreamId": "550366", "text": "SCN8A-related epileptic disorder" }, { - "baseId": "550565", + "upstreamId": "550565", "text": "Spermatogenic failure 29" }, { - "baseId": "550616|962974|962975", + "upstreamId": "550616|962974|962975", "text": "Arthrogryposis multiplex congenita 5" }, { - "baseId": "550672", + "upstreamId": "550672", "text": "Klatskin tumor" }, { - "baseId": "550690", + "upstreamId": "550690", "text": "Carcinoma of head of pancreas" }, { - "baseId": "550879", + "upstreamId": "550879", "text": "Heritable thoracic aortic disease without juvenile polyposis and hereditary hemorrhagic telangiectasia" }, { - "baseId": "550884", + "upstreamId": "550884", "text": "X-linked congenital hemolytic anemia" }, { - "baseId": "550886|976649", + "upstreamId": "550886|976649", "text": "Intellectual disability, autosomal recessive 63" }, { - "baseId": "550890|550891|550892|550893|550894|798683|798684|919553|964418|964863|976704|983659", + "upstreamId": "550890|550891|550892|550893|550894|798683|798684|919553|964418|964863|976704|983659", "text": "Intellectual developmental disorder with speech delay, dysmorphic facies, and t-cell abnormalities" }, { - "baseId": "551234|551235", + "upstreamId": "551234|551235", "text": "Mental retardation, autosomal recessive 64" }, { - "baseId": "551247|551248|551249|551250", + "upstreamId": "551247|551248|551249|551250", "text": "Neurodevelopmental disorder with seizures and speech and walking impairment" }, { - "baseId": "551251|551252|551253", + "upstreamId": "551251|551252|551253", "text": "Microcephaly, growth restriction, and increased sister chromatid exchange 2" }, { - "baseId": "551265", + "upstreamId": "551265", "text": "Deafness, autosomal recessive 26, modifier of" }, { - "baseId": "551266|789260|861054", + "upstreamId": "551266|789260|861054", "text": "Epilepsy, familial adult myoclonic, 1" }, { - "baseId": "551271|551272", + "upstreamId": "551271|551272", "text": "Generalized hypertrichosis" }, { - "baseId": "551271|551272", + "upstreamId": "551271|551272", "text": "Gingival overgrowth" }, { - "baseId": "551271|551272|919376|919377", + "upstreamId": "551271|551272|919376|919377", "text": "Facial dysmorphism, hypertrichosis, epilepsy, intellectual/developmental delay, and gingival overgrowth syndrome" }, { - "baseId": "551354|551355", + "upstreamId": "551354|551355", "text": "Osteopetrosis, autosomal dominant 3" }, { - "baseId": "551402", + "upstreamId": "551402", "text": "Sensory axonal neuropathy" }, { - "baseId": "551416|788851|818759|818760|818761|818762|818763|818764|818767|818768|818769|818770|818771|818772|818773|818774|818775|818776|818777|818778|818779|818780|818787|818788|818789|818790|818791|818792|818793|818794|818795|818796|822288", + "upstreamId": "551416|788851|818759|818760|818761|818762|818763|818764|818767|818768|818769|818770|818771|818772|818773|818774|818775|818776|818777|818778|818779|818780|818787|818788|818789|818790|818791|818792|818793|818794|818795|818796|822288", "text": "Cleft lip with or without cleft palate" }, { - "baseId": "551431|624832|624833", + "upstreamId": "551431|624832|624833", "text": "Coronal craniosynostosis" }, { - "baseId": "551445|610695|610896|610898|801074|918497|964792", + "upstreamId": "551445|610695|610896|610898|801074|918497|964792", "text": "Lactic acidosis" }, { - "baseId": "551448|551458", + "upstreamId": "551448|551458", "text": "Aortic valve disease 3" }, { - "baseId": "551484", + "upstreamId": "551484", "text": "Spermatogenic failure 30" }, { - "baseId": "551500|551501|551502|611343|611344|798703", + "upstreamId": "551500|551501|551502|611343|611344|798703", "text": "Spermatogenic failure 31" }, { - "baseId": "551675|551676|551677|551678|551679|614525|804880|804881|964142", + "upstreamId": "551675|551676|551677|551678|551679|614525|804880|804881|964142", "text": "Intellectual disability, autosomal recessive 65" }, { - "baseId": "551692", + "upstreamId": "551692", "text": "Primary generalized epilepsy" }, { - "baseId": "551693", + "upstreamId": "551693", "text": "pharmacoresistant multifocal epilepsy" }, { - "baseId": "551696", + "upstreamId": "551696", "text": "intractable epilepsy" }, { - "baseId": "551707", + "upstreamId": "551707", "text": "Chronic adenoiditis" }, { - "baseId": "551731|971587", + "upstreamId": "551731|971587", "text": "Biventricular noncompaction cardiomyopathy" }, { - "baseId": "551734", + "upstreamId": "551734", "text": "Dilated left ventricle" }, { - "baseId": "551738|857698", + "upstreamId": "551738|857698", "text": "Complex febrile seizures" }, { - "baseId": "551740", + "upstreamId": "551740", "text": "developmental delay with absent seizures" }, { - "baseId": "551750", + "upstreamId": "551750", "text": "Intractable status epilepticus" }, { - "baseId": "551755", + "upstreamId": "551755", "text": "KCNH1-related phenotype" }, { - "baseId": "551956", + "upstreamId": "551956", "text": "Hyaline body myopathy" }, { - "baseId": "551990", + "upstreamId": "551990", "text": "Encephalitis/encephalopathy, mild, with reversible myelin vacuolization" }, { - "baseId": "551991", + "upstreamId": "551991", "text": "Spermatogenic failure 32" }, { - "baseId": "552028", + "upstreamId": "552028", "text": "Small cell carcinoma of the ovary, hypercalcemic type" }, { - "baseId": "552180", + "upstreamId": "552180", "text": "Epilepsy, idiopathic generalized 7" }, { - "baseId": "552184|677192|677193|677194|677195|677197|964871|964872|983564", + "upstreamId": "552184|677192|677193|677194|677195|677197|964871|964872|983564", "text": "Developmental and epileptic encephalopathy, 80" }, { - "baseId": "552226|576314", + "upstreamId": "552226|576314", "text": "Curly hair, ankyloblepharon, nail dysplasia syndrome" }, { - "baseId": "552249|578588|626292|626293", + "upstreamId": "552249|578588|626292|626293", "text": "FLNA related disorders" }, { - "baseId": "552270|552271|552272|589847", + "upstreamId": "552270|552271|552272|589847", "text": "Immunodeficiency 57" }, { - "baseId": "552300|552301|798477|861667|903696", + "upstreamId": "552300|552301|798477|861667|903696", "text": "Bone marrow failure syndrome 4" }, { - "baseId": "552302", + "upstreamId": "552302", "text": "Friedreich ataxia with retained reflexes" }, { - "baseId": "552305|552306|552307|552308|552309|552310|552311|622299|798454|798455|861608|861609|921195|921526|971330|971331|984047|984048", + "upstreamId": "552305|552306|552307|552308|552309|552310|552311|622299|798454|798455|861608|861609|921195|921526|971330|971331|984047|984048", "text": "Autosomal recessive cerebellar ataxia-saccadic intrusion syndrome" }, { - "baseId": "552351|552352|552353|970542", + "upstreamId": "552351|552352|552353|970542", "text": "Polydactyly, postaxial, type A8" }, { - "baseId": "552354", + "upstreamId": "552354", "text": "Liddle syndrome 3" }, { - "baseId": "552399", + "upstreamId": "552399", "text": "Hypoxic Ischemic Encephalopathy" }, { - "baseId": "552401|552406|552407", + "upstreamId": "552401|552406|552407", "text": "Nonsyndromic hearing loss" }, { - "baseId": "552409", + "upstreamId": "552409", "text": "Low renin, low aldosterone hypertension" }, { - "baseId": "553119|553120|553121", + "upstreamId": "553119|553120|553121", "text": "Neurodevelopmental disorder with absent language and variable seizures" }, { - "baseId": "553256|553257|553274", + "upstreamId": "553256|553257|553274", "text": "Autosomal recessive sensorineural hearing loss" }, { - "baseId": "553303", + "upstreamId": "553303", "text": "Wide anterior fontanel" }, { - "baseId": "553304", + "upstreamId": "553304", "text": "Progressive macrocephaly" }, { - "baseId": "553305", + "upstreamId": "553305", "text": "Turricephaly" }, { - "baseId": "553306", + "upstreamId": "553306", "text": "Oxycephaly" }, { - "baseId": "553351", + "upstreamId": "553351", "text": "Chronic colitis" }, { - "baseId": "553354|967228", + "upstreamId": "553354|967228", "text": "Low bone mineral density" }, { - "baseId": "553368|553369|553370|553371|980959", + "upstreamId": "553368|553369|553370|553371|980959", "text": "Trichohepatoneurodevelopmental syndrome" }, { - "baseId": "553368|553369|553370|553371", + "upstreamId": "553368|553369|553370|553371", "text": "Global developmental delay with dysmorphic features, liver dysfunction, pruritus, and woolly hair" }, { - "baseId": "556776|614205|627336|980442", + "upstreamId": "556776|614205|627336|980442", "text": "Systemic lupus erythematosus 9" }, { - "baseId": "557027|558481|622852", + "upstreamId": "557027|558481|622852", "text": "recessive ARS-related multisystem disease" }, { - "baseId": "557659", + "upstreamId": "557659", "text": "Acute encephalopathy" }, { - "baseId": "562130", + "upstreamId": "562130", "text": "Acute promyelocytic leukemia" }, { - "baseId": "568095|961876", + "upstreamId": "568095|961876", "text": "Glycogen storage disease type IXc" }, { - "baseId": "570972", + "upstreamId": "570972", "text": "IGHMBP2-related neuronopathy" }, { - "baseId": "575484", + "upstreamId": "575484", "text": "MTOR-related megalencephaly and pigmentary mosaicism in skin" }, { - "baseId": "575486", + "upstreamId": "575486", "text": "PRELP-related osteosclerosis" }, { - "baseId": "575492", + "upstreamId": "575492", "text": "TRIM8-related epileptic encephalopathy" }, { - "baseId": "575496", + "upstreamId": "575496", "text": "Motor neuropathy" }, { - "baseId": "575503", + "upstreamId": "575503", "text": "ACOX1-related condition" }, { - "baseId": "575503", + "upstreamId": "575503", "text": "Mitchell syndrome" }, { - "baseId": "576071|623373|623374|623375|625775|789381", + "upstreamId": "576071|623373|623374|623375|625775|789381", "text": "Microcephaly, facial dysmorphism, renal agenesis, and ambiguous genitalia syndrome" }, { - "baseId": "576097", + "upstreamId": "576097", "text": "Plasma fibronectin deficiency" }, { - "baseId": "576130", + "upstreamId": "576130", "text": "Dystonia, primary cervical" }, { - "baseId": "576131", + "upstreamId": "576131", "text": "NOTCH1-Related Disorders" }, { - "baseId": "576141|789704|789705|789706", + "upstreamId": "576141|789704|789705|789706", "text": "PU.1-mutated agammaglobulinemia" }, { - "baseId": "576177", + "upstreamId": "576177", "text": "MYH2-related myopathy" }, { - "baseId": "576196", + "upstreamId": "576196", "text": "HUWE1-Related Disorder" }, { - "baseId": "576199", + "upstreamId": "576199", "text": "Mitochondrial DNA-Associated Leigh Syndrome and NARP" }, { - "baseId": "576254", + "upstreamId": "576254", "text": "primray hypomagnesemia with secondary hypocalcemia" }, { - "baseId": "576301|950239|980508|980562", + "upstreamId": "576301|950239|980508|980562", "text": "Usher syndrome, type 4" }, { - "baseId": "576302|576303|576304|576305|576306", + "upstreamId": "576302|576303|576304|576305|576306", "text": "Glycosylphosphatidylinositol biosynthesis defect 18" }, { - "baseId": "576318|576319|676912|980942", + "upstreamId": "576318|576319|676912|980942", "text": "Deafness, autosomal recessive 111" }, { - "baseId": "576328", + "upstreamId": "576328", "text": "Clinodactyly of the 4th toe" }, { - "baseId": "576332|615425|615428|615632|615633", + "upstreamId": "576332|615425|615428|615632|615633", "text": "Storage pool disease of platelets" }, { - "baseId": "576334", + "upstreamId": "576334", "text": "Familial isolated hyperparathyroidism" }, { - "baseId": "576339|966340|966341", + "upstreamId": "576339|966340|966341", "text": "Isolated anophthalmia-microphthalmia syndrome" }, { - "baseId": "576340", + "upstreamId": "576340", "text": "Presynaptic congenital myasthenic syndrome" }, { - "baseId": "576359", + "upstreamId": "576359", "text": "Intellectual developmental disorder with hypertelorism and distinctive facies" }, { - "baseId": "576379|576380|576381", + "upstreamId": "576379|576380|576381", "text": "Spindle cell sarcoma" }, { - "baseId": "577751|906322", + "upstreamId": "577751|906322", "text": "Cerebral autosomal dominant arteriopathy with subcortical infarcts and leukoencephalopathy" }, { - "baseId": "577996|577998|577999|578000|578001", + "upstreamId": "577996|577998|577999|578000|578001", "text": "Lissencephaly with decussation defect" }, { - "baseId": "577996|577997|577998|577999|578000|578001|816439|918636|918637|918638|918639|920149|970687|970688", + "upstreamId": "577996|577997|577998|577999|578000|578001|816439|918636|918637|918638|918639|920149|970687|970688", "text": "Lissencephaly 9 with complex brainstem malformation" }, { - "baseId": "578014|578015", + "upstreamId": "578014|578015", "text": "Abnormal lactate dehydrogenase activity" }, { - "baseId": "578014|578015|861066", + "upstreamId": "578014|578015|861066", "text": "Lactic aciduria due to d-lactic acid" }, { - "baseId": "578016|578017|578018|578019", + "upstreamId": "578016|578017|578018|578019", "text": "Spermatogenic failure 34" }, { - "baseId": "578025|578314|920130", + "upstreamId": "578025|578314|920130", "text": "Warburg-Cinotti syndrome" }, { - "baseId": "578026|679688", + "upstreamId": "578026|679688", "text": "Unilateral renal agenesis" }, { - "baseId": "578026|858767|971020", + "upstreamId": "578026|858767|971020", "text": "Abnormality of finger" }, { - "baseId": "578026|920542", + "upstreamId": "578026|920542", "text": "Coarse facial features" }, { - "baseId": "578033|578034|615903", + "upstreamId": "578033|578034|615903", "text": "Hennekam lymphangiectasia-lymphedema syndrome 3" }, { - "baseId": "578310|578311|578312|590647", + "upstreamId": "578310|578311|578312|590647", "text": "Squalene synthase deficiency" }, { - "baseId": "578323", + "upstreamId": "578323", "text": "Spondyloepimetaphyseal dysplasia, Krakow type" }, { - "baseId": "578324|578325", + "upstreamId": "578324|578325", "text": "Isolated growth hormone deficiency, type 5" }, { - "baseId": "578327|578328|798646|964371|970946", + "upstreamId": "578327|578328|798646|964371|970946", "text": "Intellectual developmental disorder with macrocephaly, seizures, and speech delay" }, { - "baseId": "578376", + "upstreamId": "578376", "text": "Reduced muscle fiber perlecan" }, { - "baseId": "578386|578387", + "upstreamId": "578386|578387", "text": "Nonpersistence of intestinal lactase" }, { - "baseId": "578393", + "upstreamId": "578393", "text": "CHRNA1-Related Congenital Myasthenic Syndrome" }, { - "baseId": "578412", + "upstreamId": "578412", "text": "ATR-X-related syndrome" }, { - "baseId": "578415", + "upstreamId": "578415", "text": "3-Methylglutaconic aciduria" }, { - "baseId": "578479", + "upstreamId": "578479", "text": "Anti-SEMA4D Monoclonal Antibody VX15/2503" }, { - "baseId": "578642", + "upstreamId": "578642", "text": "Retinitis pigmentosa 83" }, { - "baseId": "578643|578644|578645|578646|816356|975869", + "upstreamId": "578643|578644|578645|578646|816356|975869", "text": "Cardiac, facial, and digital anomalies with developmental delay" }, { - "baseId": "578659|578664|578665|622714", + "upstreamId": "578659|578664|578665|622714", "text": "CONTRACTURES, PTERYGIA, AND SPONDYLOCARPOTARSAL FUSION SYNDROME 1B" }, { - "baseId": "580923|788952", + "upstreamId": "580923|788952", "text": "X-linked MED12-related disorder" }, { - "baseId": "581201|581202|581203", + "upstreamId": "581201|581202|581203", "text": "Cortical dysplasia, complex, with other brain malformations 9" }, { - "baseId": "581207", + "upstreamId": "581207", "text": "Atypical chronic myeloid leukemia" }, { - "baseId": "581208", + "upstreamId": "581208", "text": "Chronic myelomonocytic leukemia" }, { - "baseId": "581213|964876|970143", + "upstreamId": "581213|964876|970143", "text": "Spinocerebellar ataxia 48" }, { - "baseId": "581229", + "upstreamId": "581229", "text": "TCF20-related condition" }, { - "baseId": "581236|581237|581238|581828|581835|581836|581837|581839|581840|581841|581842|590438", + "upstreamId": "581236|581237|581238|581828|581835|581836|581837|581839|581840|581841|581842|590438", "text": "Abnormal aortic valve physiology" }, { - "baseId": "581239|581240|581241|581242|581243|581244|590640|590641|789964|792717|798472|858541", + "upstreamId": "581239|581240|581241|581242|581243|581244|590640|590641|789964|792717|798472|858541", "text": "Neurodegeneration, childhood-onset, stress-induced, with variable ataxia and seizures" }, { - "baseId": "581254|581255|581256|581257", + "upstreamId": "581254|581255|581256|581257", "text": "Nephrotic syndrome, type 17" }, { - "baseId": "581258|581259|581260", + "upstreamId": "581258|581259|581260", "text": "Nephrotic syndrome, type 18" }, { - "baseId": "581261|581262", + "upstreamId": "581261|581262", "text": "Nephrotic syndrome, type 19" }, { - "baseId": "581265|581266|581267", + "upstreamId": "581265|581266|581267", "text": "Diarrhea 10, protein-losing enteropathy type" }, { - "baseId": "581268|798649", + "upstreamId": "581268|798649", "text": "Microcephaly 24, primary, autosomal recessive" }, { - "baseId": "581270|581271|581272|677961", + "upstreamId": "581270|581271|581272|677961", "text": "Periventricular nodular heterotopia 8" }, { - "baseId": "581700|581701", + "upstreamId": "581700|581701", "text": "Orthostatic hypotension 2" }, { - "baseId": "581702|581703|581704|581705|581706|581707|679885|679886|679887|921213|980331", + "upstreamId": "581702|581703|581704|581705|581706|581707|679885|679886|679887|921213|980331", "text": "Hyperparathyroidism, transient neonatal" }, { - "baseId": "581718", + "upstreamId": "581718", "text": "X-linked external auditory canal atresia-dilated internal auditory canal-facial dysmorphism syndrome" }, { - "baseId": "581719|581720|581721", + "upstreamId": "581719|581720|581721", "text": "Cardiomyopathy, dilated, 2c" }, { - "baseId": "581723", + "upstreamId": "581723", "text": "Ovarian dysgenesis 8" }, { - "baseId": "581810|581811|581812|581813|581814|581815|581816|581817|581818|581819|611667|679216|679217|679218|679219|679220|679221|679222|679223|679224|679225|679226|679227|679228|679229|679230|679231|679232|679233|679234|679235|679236|679237|679238|970059", + "upstreamId": "581810|581811|581812|581813|581814|581815|581816|581817|581818|581819|611667|679216|679217|679218|679219|679220|679221|679222|679223|679224|679225|679226|679227|679228|679229|679230|679231|679232|679233|679234|679235|679236|679237|679238|970059", "text": "Capillary malformation-arteriovenous malformation 2" }, { - "baseId": "581847", + "upstreamId": "581847", "text": "MUSCULAR DYSTROPHY, DUCHENNE TYPE" }, { - "baseId": "581847", + "upstreamId": "581847", "text": " DMD" }, { - "baseId": "581849|589983|589984|590019|590020", + "upstreamId": "581849|589983|589984|590019|590020", "text": "Hereditary lymphedema" }, { - "baseId": "581871|621042|622035|624879", + "upstreamId": "581871|621042|622035|624879", "text": "Deafness, autosomal dominant 76" }, { - "baseId": "581871", + "upstreamId": "581871", "text": "Autosomal dominant nonsyndromic hearing impairment" }, { - "baseId": "581884|976734", + "upstreamId": "581884|976734", "text": "Myasthenic syndrome, congenital, 23, presynaptic" }, { - "baseId": "581885", + "upstreamId": "581885", "text": "Immunodeficiency 15a" }, { - "baseId": "581886|581887|581888|581889|965447", + "upstreamId": "581886|581887|581888|581889|965447", "text": "Developmental and epileptic encephalopathy, 68" }, { - "baseId": "581890|581891|581892|581952|581953|581954|581955|590153|590154|590439", + "upstreamId": "581890|581891|581892|581952|581953|581954|581955|590153|590154|590439", "text": "Abnormal mitral valve physiology" }, { - "baseId": "581923|581924|581925|581927|714580", + "upstreamId": "581923|581924|581925|581927|714580", "text": "Myasthenic syndrome, congenital, 24, presynaptic" }, { - "baseId": "583092|798932|798942|798943|798944|798945|798948", + "upstreamId": "583092|798932|798942|798943|798944|798945|798948", "text": "Developmental and epileptic encephalopathy, 84" }, { - "baseId": "583102", + "upstreamId": "583102", "text": "ELN-related disorder" }, { - "baseId": "583111", + "upstreamId": "583111", "text": "ABCC8-related disorder" }, { - "baseId": "583171", + "upstreamId": "583171", "text": "Polydactyly, postaxial, type A9" }, { - "baseId": "583171", + "upstreamId": "583171", "text": "Postaxial polydactyly type A" }, { - "baseId": "583202|858669|858670", + "upstreamId": "583202|858669|858670", "text": "Nizon-Isidor syndrome" }, { - "baseId": "584608|961757", + "upstreamId": "584608|961757", "text": "Long chain acyl-CoA dehydrogenase deficiency" }, { - "baseId": "585229", + "upstreamId": "585229", "text": "OSTEOPOIKILOSIS WITH OR WITHOUT MELORHEOSTOSIS" }, { - "baseId": "586179|620218|620219|620220|620221|620222|620223", + "upstreamId": "586179|620218|620219|620220|620221|620222|620223", "text": "SYNE1-Related Disorders" }, { - "baseId": "588259|905844", + "upstreamId": "588259|905844", "text": "Deafness, autosomal recessive 93" }, { - "baseId": "589806", + "upstreamId": "589806", "text": "MAPK8IP3-related disorder" }, { - "baseId": "589806|620947|620949|620950|620951|791528|794181|794182|794183|794184|816482|904941|904942|920107|920108|920367", + "upstreamId": "589806|620947|620949|620950|620951|791528|794181|794182|794183|794184|816482|904941|904942|920107|920108|920367", "text": "Neurodevelopmental disorder with or without variable brain abnormalities" }, { - "baseId": "589806|620947|620949|620950|620951|791528|794181|794182|794183|794184|816482|904941|904942|920107|920108|920367", + "upstreamId": "589806|620947|620949|620950|620951|791528|794181|794182|794183|794184|816482|904941|904942|920107|920108|920367", "text": " NEDBA" }, { - "baseId": "589807|589816", + "upstreamId": "589807|589816", "text": "TAX1BP3-related arrhythmogenic right ventricular cardiomyopathy" }, { - "baseId": "589808|589809", + "upstreamId": "589808|589809", "text": "TMEM94-related condition" }, { - "baseId": "589808|589809|609070|609071|609074|903624", + "upstreamId": "589808|589809|609070|609071|609074|903624", "text": "Intellectual developmental disorder with cardiac defects and dysmorphic facies" }, { - "baseId": "589811", + "upstreamId": "589811", "text": "SLC25A42-related mitochondrial encephalomyopathy" }, { - "baseId": "589814", + "upstreamId": "589814", "text": "AIFM1-related hypomyelination with spondylometaphyseal dysplasia" }, { - "baseId": "589843", + "upstreamId": "589843", "text": "CDK8-kinase module-associated disorder" }, { - "baseId": "590021|621032", + "upstreamId": "590021|621032", "text": "Cephalocele" }, { - "baseId": "590038", + "upstreamId": "590038", "text": "Protruding tongue" }, { - "baseId": "590038|590082", + "upstreamId": "590038|590082", "text": "Severe T-cell immunodeficiency" }, { - "baseId": "590077|590078", + "upstreamId": "590077|590078", "text": "Respiratory failure requiring assisted ventilation" }, { - "baseId": "590082", + "upstreamId": "590082", "text": "Aplasia of the thymus" }, { - "baseId": "590093", + "upstreamId": "590093", "text": "Cortical visual impairment" }, { - "baseId": "590099", + "upstreamId": "590099", "text": "Ectopic ossification" }, { - "baseId": "590099", + "upstreamId": "590099", "text": "Myositis" }, { - "baseId": "590117", + "upstreamId": "590117", "text": "Deafness, autosomal recessive 112" }, { - "baseId": "590120", + "upstreamId": "590120", "text": "INDIAN BLOOD GROUP SYSTEM POLYMORPHISM" }, { - "baseId": "590363", + "upstreamId": "590363", "text": "Spondyloepiphyseal dysplasia MIR140 type Nishimura" }, { - "baseId": "590363", + "upstreamId": "590363", "text": "Spondyloepiphyseal dysplasia, nishimura type" }, { - "baseId": "590365|590366|590369", + "upstreamId": "590365|590366|590369", "text": "Silver Russell Syndrome-related disorder" }, { - "baseId": "590367|920539|920540", + "upstreamId": "590367|920539|920540", "text": "Chromosome 17p13.3, centromeric, duplication syndrome" }, { - "baseId": "590370|613930|818576|961895", + "upstreamId": "590370|613930|818576|961895", "text": "Chromosome 22q11.2 deletion syndrome, distal" }, { - "baseId": "590371|590372|590373|590374|590375|590376", + "upstreamId": "590371|590372|590373|590374|590375|590376", "text": "Central centrifugal cicatricial alopecia" }, { - "baseId": "590377|590378", + "upstreamId": "590377|590378", "text": "Granulocytopenia with immunoglobulin abnormality" }, { - "baseId": "590432|590433|590434|590435", + "upstreamId": "590432|590433|590434|590435", "text": "Ciliary dyskinesia, primary, 39" }, { - "baseId": "590456", + "upstreamId": "590456", "text": "Orofaciodigital syndrome IX" }, { - "baseId": "590464|590465", + "upstreamId": "590464|590465", "text": "Arthrogryposis, cleft palate, craniosynostosis, and impaired intellectual development" }, { - "baseId": "590475|590476|590477|590478|590479", + "upstreamId": "590475|590476|590477|590478|590479", "text": "Epidermodysplasia verruciformis, susceptibility to, 3" }, { - "baseId": "590482|590483|841957", + "upstreamId": "590482|590483|841957", "text": "Global developmental delay - lung cysts - overgrowth - Wilms tumor syndrome" }, { - "baseId": "590518", + "upstreamId": "590518", "text": "Knee dislocation" }, { - "baseId": "590518", + "upstreamId": "590518", "text": "Limited knee flexion/extension" }, { - "baseId": "590518", + "upstreamId": "590518", "text": "Patellar hypoplasia" }, { - "baseId": "590545", + "upstreamId": "590545", "text": "Interphalangeal joint contracture of finger" }, { - "baseId": "590545", + "upstreamId": "590545", "text": "Increased number of skin folds" }, { - "baseId": "590545", + "upstreamId": "590545", "text": "Emphysema" }, { - "baseId": "590563", + "upstreamId": "590563", "text": "ACTL6B-related neurodevelopmental disorder" }, { - "baseId": "590594|590595|590596", + "upstreamId": "590594|590595|590596", "text": "Hypotrichosis 14" }, { - "baseId": "590597|590598|822315|822316|822317|822318|822319|970507|970512", + "upstreamId": "590597|590598|822315|822316|822317|822318|822319|970507|970512", "text": "Alopecia-mental retardation syndrome 4" }, { - "baseId": "590599|590600|590601", + "upstreamId": "590599|590600|590601", "text": "Mirror movements 4" }, { - "baseId": "590634|590635|590636", + "upstreamId": "590634|590635|590636", "text": "Severe combined immunodeficiency due to CD70 deficiency" }, { - "baseId": "590638|590639", + "upstreamId": "590638|590639", "text": "Pontocerebellar hypoplasia, type 12" }, { - "baseId": "590642|613398", + "upstreamId": "590642|613398", "text": "Lower Urinary Tract Obstruction" }, { - "baseId": "590642|613398", + "upstreamId": "590642|613398", "text": "Lower urinary tract obstruction, congenital" }, { - "baseId": "590666|590667|590668|590669|678076|919818|919819|919820|964918|966783", + "upstreamId": "590666|590667|590668|590669|678076|919818|919819|919820|964918|966783", "text": "Mega-corpus-callosum syndrome with cerebellar hypoplasia and cortical malformations" }, { - "baseId": "590714|590715", + "upstreamId": "590714|590715", "text": "Fibrosis, neurodegeneration, and cerebral angiomatosis" }, { - "baseId": "590716|590717|590718|966718|966719", + "upstreamId": "590716|590717|590718|966718|966719", "text": "Aplasia/Hypoplasia of the cerebellum" }, { - "baseId": "590716", + "upstreamId": "590716", "text": "Motor polyneuropathy" }, { - "baseId": "590737|590740", + "upstreamId": "590737|590740", "text": "PISD-related mitochondrial disease" }, { - "baseId": "590737|590740|682217|861683", + "upstreamId": "590737|590740|682217|861683", "text": "Liberfarb syndrome" }, { - "baseId": "590738|590739", + "upstreamId": "590738|590739", "text": "Polydactyly, postaxial, type a10" }, { - "baseId": "590738|590739", + "upstreamId": "590738|590739", "text": "Autosomal recessive nonsyndromic postaxial polydactyly" }, { - "baseId": "590745", + "upstreamId": "590745", "text": "Microcephaly, cataracts, impaired intellectual development, and dystonia with abnormal striatum" }, { - "baseId": "590746", + "upstreamId": "590746", "text": "Visual impairment and progressive phthisis bulbi" }, { - "baseId": "590747|590748|590749|590750|590751", + "upstreamId": "590747|590748|590749|590750|590751", "text": "Hyper-IgE recurrent infection syndrome 3, autosomal recessive" }, { - "baseId": "590769|590770|590771|965893", + "upstreamId": "590769|590770|590771|965893", "text": "Wolf-Hirschhorn like syndrome" }, { - "baseId": "590869|619908|619909", + "upstreamId": "590869|619908|619909", "text": "OCULOSKELETODENTAL SYNDROME" }, { - "baseId": "590985|590986", + "upstreamId": "590985|590986", "text": "Situs inversus" }, { - "baseId": "608807|608811|608812", + "upstreamId": "608807|608811|608812", "text": "Microphthalmia-ankyloblepharon-intellectual disability syndrome" }, { - "baseId": "608837|976708", + "upstreamId": "608837|976708", "text": "Intellectual developmental disorder, autosomal recessive 67" }, { - "baseId": "608839|966682", + "upstreamId": "608839|966682", "text": "Infantile fibrosarcoma" }, { - "baseId": "608841", + "upstreamId": "608841", "text": "Renal transitional cell carcinoma" }, { - "baseId": "608854", + "upstreamId": "608854", "text": "Mucocutaneous ulceration, chronic" }, { - "baseId": "608857|608858|608859|970820", + "upstreamId": "608857|608858|608859|970820", "text": "Developmental and epileptic encephalopathy, 70" }, { - "baseId": "608866|972744|972745|972755", + "upstreamId": "608866|972744|972745|972755", "text": "Kilquist syndrome" }, { - "baseId": "608875", + "upstreamId": "608875", "text": "Trigonocephaly-short stature-developmental delay syndrome" }, { - "baseId": "608922", + "upstreamId": "608922", "text": "Pervasive developmental disorder" }, { - "baseId": "608930|608931", + "upstreamId": "608930|608931", "text": "Deficiency of carnitine acetyltransferase" }, { - "baseId": "608933|625993|625994|625996|625997|625998|916979|970521|970842", + "upstreamId": "608933|625993|625994|625996|625997|625998|916979|970521|970842", "text": "O'Donnell-Luria-Rodan syndrome" }, { - "baseId": "608999|609000|609001|971114", + "upstreamId": "608999|609000|609001|971114", "text": "Intellectual developmental disorder, autosomal recessive 68" }, { - "baseId": "609006", + "upstreamId": "609006", "text": "Autosomal dominant omodysplasia" }, { - "baseId": "609007", + "upstreamId": "609007", "text": "Epidermodysplasia verruciformis, susceptibility to, 4" }, { - "baseId": "609020|676979|676980|676981|676982|964232|964819", + "upstreamId": "609020|676979|676980|676981|676982|964232|964819", "text": "Developmental and epileptic encephalopathy, 78" }, { - "baseId": "609026", + "upstreamId": "609026", "text": "Mitochondrial hepato-encephalopathy" }, { - "baseId": "609034", + "upstreamId": "609034", "text": "myoglobinopathy" }, { - "baseId": "609036|609079", + "upstreamId": "609036|609079", "text": "Hyperostosis" }, { - "baseId": "609044|609045|609046|610696|918545|920124|980298", + "upstreamId": "609044|609045|609046|610696|918545|920124|980298", "text": "Hypomagnesemia, seizures, and mental retardation 2" }, { - "baseId": "609068", + "upstreamId": "609068", "text": "Diamond-Blackfan anemia 20" }, { - "baseId": "609069", + "upstreamId": "609069", "text": "Diamond-Blackfan anemia 18" }, { - "baseId": "609075", + "upstreamId": "609075", "text": "Diamond-Blackfan anemia 19" }, { - "baseId": "609078", + "upstreamId": "609078", "text": "nonsyndromic sensorineural hearing loss" }, { - "baseId": "609092|609093|609094|609095|609096|609097|609098|609099|609100|679909|679910|679911|679912|679913|679914|679915|679916|679917|679918|679919|679920|679921|679922|679923|679924|679925", + "upstreamId": "609092|609093|609094|609095|609096|609097|609098|609099|609100|679909|679910|679911|679912|679913|679914|679915|679916|679917|679918|679919|679920|679921|679922|679923|679924|679925", "text": "Basal ganglia calcification, idiopathic, 7, autosomal recessive" }, { - "baseId": "609141|609142|858296|858300", + "upstreamId": "609141|609142|858296|858300", "text": "Spermatogenesis maturation arrest" }, { - "baseId": "609143", + "upstreamId": "609143", "text": "Abnormal morphology of left ventricular trabeculae" }, { - "baseId": "609143", + "upstreamId": "609143", "text": "Atrial flutter" }, { - "baseId": "609143", + "upstreamId": "609143", "text": "Tachycardia" }, { - "baseId": "609149|918533", + "upstreamId": "609149|918533", "text": "Glioma" }, { - "baseId": "609153|609154|609155|609156|609157|966184", + "upstreamId": "609153|609154|609155|609156|609157|966184", "text": "Encephalopathy, progressive, early-onset, with brain edema and/or leukoencephalopathy, 2" }, { - "baseId": "609185", + "upstreamId": "609185", "text": "Progressive cone degeneration" }, { - "baseId": "609186|610418", + "upstreamId": "609186|610418", "text": "Distal hereditary motor neuropathy associated with upper motor neuron signs" }, { - "baseId": "609187", + "upstreamId": "609187", "text": "Sperm tail anomaly" }, { - "baseId": "609187|615983|615984|615985|615986", + "upstreamId": "609187|615983|615984|615985|615986", "text": "Spermatogenic failure 38" }, { - "baseId": "609302|609303", + "upstreamId": "609302|609303", "text": "SPINOCEREBELLAR ATAXIA 47, EARLY-ONSET" }, { - "baseId": "609302|609303|609304|916823|961251|964155|972709|973017", + "upstreamId": "609302|609303|609304|916823|961251|964155|972709|973017", "text": "Spinocerebellar ataxia 47" }, { - "baseId": "610388|610389|610390|610391|610392|610393|861584|965738", + "upstreamId": "610388|610389|610390|610391|610392|610393|861584|965738", "text": "Global developmental delay with or without impaired intellectual development" }, { - "baseId": "610394|610395|610396", + "upstreamId": "610394|610395|610396", "text": "Developmental and epileptic encephalopathy, 71" }, { - "baseId": "610409|610585|966157|966158", + "upstreamId": "610409|610585|966157|966158", "text": "Congenital titinopathy" }, { - "baseId": "610414", + "upstreamId": "610414", "text": "IMMUNODEFICIENCY 33, MALE-RESTRICTED" }, { - "baseId": "610429", + "upstreamId": "610429", "text": "ROSAH syndrome" }, { - "baseId": "610429", + "upstreamId": "610429", "text": "Splenomegaly, cytopenia, and vision loss" }, { - "baseId": "610431|610432|610433", + "upstreamId": "610431|610432|610433", "text": "Congenital disorder of glycosylation with defective fucosylation 2" }, { - "baseId": "610478", + "upstreamId": "610478", "text": "Weakened expression of D antigen" }, { - "baseId": "610501", + "upstreamId": "610501", "text": "Infantile cataract, skin abnormalities, glutamate excess, and impaired intellectual development" }, { - "baseId": "610512|610513|962971|962972", + "upstreamId": "610512|610513|962971|962972", "text": "Spermatogenic failure 35" }, { - "baseId": "610530|610531", + "upstreamId": "610530|610531", "text": "Aganglionosis, total intestinal" }, { - "baseId": "610586", + "upstreamId": "610586", "text": "Primary progressive non fluent aphasia" }, { - "baseId": "610586|858706|858714", + "upstreamId": "610586|858706|858714", "text": "Corticobasal syndrome" }, { - "baseId": "610591", + "upstreamId": "610591", "text": "Abnormality of the outer ear" }, { - "baseId": "610591|613436", + "upstreamId": "610591|613436", "text": "Turnpenny-fry syndrome" }, { - "baseId": "610596|610597|610598", + "upstreamId": "610596|610597|610598", "text": "Peritoneal mesothelioma" }, { - "baseId": "610614", + "upstreamId": "610614", "text": "Primary Ciliary Dyskinesia (DNAH5-related)" }, { - "baseId": "610625", + "upstreamId": "610625", "text": "POLYMICROGYRIA WITHOUT VASCULAR-TYPE EHLERS-DANLOS SYNDROME" }, { - "baseId": "610628|610629|610630|610631|610632|792602|792612|798580", + "upstreamId": "610628|610629|610630|610631|610632|792602|792612|798580", "text": "Intellectual developmental disorder with abnormal behavior, microcephaly, and short stature" }, { - "baseId": "610634", + "upstreamId": "610634", "text": "Retinitis pigmentosa 85" }, { - "baseId": "610695|610896|610898", + "upstreamId": "610695|610896|610898", "text": "Mitochondrial complex 3 deficiency, nuclear type 10" }, { - "baseId": "610993", + "upstreamId": "610993", "text": "Microcephaly 25, primary, autosomal recessive" }, { - "baseId": "610994|610995|676994", + "upstreamId": "610994|610995|676994", "text": "Oocyte maturation defect 6" }, { - "baseId": "610998", + "upstreamId": "610998", "text": "Microcephaly, growth deficiency, seizures, and brain malformations" }, { - "baseId": "611003", + "upstreamId": "611003", "text": "Galloway-Mowat syndrome" }, { - "baseId": "611004", + "upstreamId": "611004", "text": "HOLOPROSENCEPHALY 12 WITH OR WITHOUT PANCREATIC AGENESIS" }, { - "baseId": "611341", + "upstreamId": "611341", "text": "Galloway-Mowat syndrome 8" }, { - "baseId": "611366", + "upstreamId": "611366", "text": "Episodic coma" }, { - "baseId": "611406|789352|789353|789355", + "upstreamId": "611406|789352|789353|789355", "text": "Intellectual developmental disorder with behavioral abnormalities and craniofacial dysmorphism with or without seizures" }, { - "baseId": "611606", + "upstreamId": "611606", "text": "NAA15-related syndrome" }, { - "baseId": "611868|798966|798967|798969|798970|919758|964052|983558|983801", + "upstreamId": "611868|798966|798967|798969|798970|919758|964052|983558|983801", "text": "Intellectual developmental disorder 61" }, { - "baseId": "611973", + "upstreamId": "611973", "text": "Androgen deprivation therapy response" }, { - "baseId": "611998", + "upstreamId": "611998", "text": "Undifferentiated pleomorphic sarcoma" }, { - "baseId": "612012", + "upstreamId": "612012", "text": "Mixed Phenotype Acute Leukemia with t(v" }, { - "baseId": "612021", + "upstreamId": "612021", "text": "Glioblastoma multiforme" }, { - "baseId": "612041|612042|612043|964715|964716", + "upstreamId": "612041|612042|612043|964715|964716", "text": "Neurodevelopmental disorder with central and peripheral motor dysfunction" }, { - "baseId": "612044|612045|612046|612047|612048", + "upstreamId": "612044|612045|612046|612047|612048", "text": "Cone-rod dystrophy and hearing loss 2" }, { - "baseId": "612105", + "upstreamId": "612105", "text": "Hereditary renal cancer" }, { - "baseId": "612121|612200", + "upstreamId": "612121|612200", "text": "FLNA related lung disease" }, { - "baseId": "612202|855079|855080", + "upstreamId": "612202|855079|855080", "text": "Holoprosencephaly 13, x-linked" }, { - "baseId": "612210|612211|612212|612213|612214|798658|919458|919459|920319|964395|965739|967279|975867", + "upstreamId": "612210|612211|612212|612213|612214|798658|919458|919459|920319|964395|965739|967279|975867", "text": "Coffin-Siris syndrome 8" }, { - "baseId": "612215|612216|612217|612218|612219", + "upstreamId": "612215|612216|612217|612218|612219", "text": "Short stature, amelogenesis imperfecta, and skeletal dysplasia with scoliosis" }, { - "baseId": "612222|612226|612227|612229|612230|861582|972797", + "upstreamId": "612222|612226|612227|612229|612230|861582|972797", "text": "Neurodevelopmental disorder with coarse facies and mild distal skeletal abnormalities" }, { - "baseId": "612462", + "upstreamId": "612462", "text": "Myoclonus, familial, 2" }, { - "baseId": "612463|612464|612465|612466|906271", + "upstreamId": "612463|612464|612465|612466|906271", "text": "Brain small vessel disease 3" }, { - "baseId": "613175|861430|919931", + "upstreamId": "613175|861430|919931", "text": "Spastic tetraplegia and axial hypotonia, progressive" }, { - "baseId": "613392|614438|614439|816342|980483|980484", + "upstreamId": "613392|614438|614439|816342|980483|980484", "text": "Asthma, nasal polyps, and aspirin intolerance" }, { - "baseId": "613437|613438|613439", + "upstreamId": "613437|613438|613439", "text": "Spinocerebellar ataxia, autosomal recessive 27" }, { - "baseId": "613444|613445|613446|613448|613449|613450|613451|613452|613453", + "upstreamId": "613444|613445|613446|613448|613449|613450|613451|613452|613453", "text": "Dyschromatosis universalis hereditaria 1" }, { - "baseId": "613484|613485", + "upstreamId": "613484|613485", "text": "Developmental and epileptic encephalopathy, 72" }, { - "baseId": "613491|613492", + "upstreamId": "613491|613492", "text": "Developmental and epileptic encephalopathy, 73" }, { - "baseId": "613511", + "upstreamId": "613511", "text": "Combined oxidative phosphorylation deficiency 38" }, { - "baseId": "613515|613516|613517|613518", + "upstreamId": "613515|613516|613517|613518", "text": "Thiopurine response" }, { - "baseId": "613521", + "upstreamId": "613521", "text": "Abnormality of the urinary system" }, { - "baseId": "613528|613529", + "upstreamId": "613528|613529", "text": "Intellectual developmental disorder, autosomal recessive 69" }, { - "baseId": "613534|801191|801221", + "upstreamId": "613534|801191|801221", "text": "Abnormality of metabolism/homeostasis" }, { - "baseId": "613536|613536|613537|613537", + "upstreamId": "613536|613536|613537|613537", "text": "Sparse hair" }, { - "baseId": "613552", + "upstreamId": "613552", "text": "Male infertility due to obstructive azoospermia" }, { - "baseId": "613613", + "upstreamId": "613613", "text": "MYO16-associated developmental delay" }, { - "baseId": "613730|613731|613732|682209|682210", + "upstreamId": "613730|613731|613732|682209|682210", "text": "Amelogenesis imperfecta, type 3c" }, { - "baseId": "613733|613734|613735", + "upstreamId": "613733|613734|613735", "text": "Mental retardation, short stature, facial anomalies, and joint dislocations" }, { - "baseId": "613738|613739|613740", + "upstreamId": "613738|613739|613740", "text": "Leukoencephalopathy, acute reversible, with increased urinary alpha-ketoglutarate" }, { - "baseId": "613762|613763|800922|964877|964878", + "upstreamId": "613762|613763|800922|964877|964878", "text": "Spondyloepiphyseal dysplasia, kondo-fu type" }, { - "baseId": "613772", + "upstreamId": "613772", "text": "Deafness, Y-linked 2" }, { - "baseId": "613773|613774|613775", + "upstreamId": "613773|613774|613775", "text": "Fetal akinesia deformation sequence 4" }, { - "baseId": "613833", + "upstreamId": "613833", "text": "GNAS-related disorder" }, { - "baseId": "613860", + "upstreamId": "613860", "text": "Chromosome 10q26 deletion syndrome" }, { - "baseId": "613880|613881|613903|613981|613990|614058", + "upstreamId": "613880|613881|613903|613981|613990|614058", "text": "Chromosome 16p12.1 deletion syndrome, 520kb" }, { - "baseId": "613882|613884", + "upstreamId": "613882|613884", "text": "Chromosome 17p13.3, telomeric, duplication syndrome" }, { - "baseId": "613886|613887|613888|613889|613891|613892|613893|613894|613923|613926|613985|614111|624097|624098|624099|624100|969292", + "upstreamId": "613886|613887|613888|613889|613891|613892|613893|613894|613923|613926|613985|614111|624097|624098|624099|624100|969292", "text": "Chromosome 22q11.2 microduplication syndrome" }, { - "baseId": "613904|613905", + "upstreamId": "613904|613905", "text": "Chromosome 16p11.2 deletion syndrome, 220 kb" }, { - "baseId": "613907|613908|613911|613912|613914", + "upstreamId": "613907|613908|613911|613912|613914", "text": "Chromosome 16p11.2 duplication syndrome" }, { - "baseId": "613949", + "upstreamId": "613949", "text": "Moyamoya disease 4 with short stature, hypergonadotropic hypogonadism, and facial dysmorphism" }, { - "baseId": "614005|614006|904210", + "upstreamId": "614005|614006|904210", "text": "5p partial monosomy syndrome" }, { - "baseId": "614027", + "upstreamId": "614027", "text": "Chromosome 16p13.3 duplication syndrome" }, { - "baseId": "614070|614071|614072|653991|962878", + "upstreamId": "614070|614071|614072|653991|962878", "text": "Chromosome 1p36 deletion syndrome" }, { - "baseId": "614101", + "upstreamId": "614101", "text": "Mental retardation 91, X-linked" }, { - "baseId": "614140|614141", + "upstreamId": "614140|614141", "text": "Congenital disorder of glycosylation, type ICC" }, { - "baseId": "614147|614148|977223", + "upstreamId": "614147|614148|977223", "text": "Immunodeficiency 60" }, { - "baseId": "614149|614150", + "upstreamId": "614149|614150", "text": "Spondyloepimetaphyseal dysplasia with joint laxity, type 3" }, { - "baseId": "614156|614656|614657|614659|614660|614661|614662|794176|794177|794178|794179|794180", + "upstreamId": "614156|614656|614657|614659|614660|614661|614662|794176|794177|794178|794179|794180", "text": "Leukodystrophy, hypomyelinating, 18" }, { - "baseId": "614176|614176|614177", + "upstreamId": "614176|614176|614177", "text": "Progressive bifocal chorioretinal atrophy" }, { - "baseId": "614273", + "upstreamId": "614273", "text": "Age-related macular degeneration 13" }, { - "baseId": "614310|614524", + "upstreamId": "614310|614524", "text": "Thromboxane synthetase deficiency" }, { - "baseId": "614505", + "upstreamId": "614505", "text": "Ectodermal dysplasia, anhidrotic, with immunodeficiency, osteopetrosis, and lymphedema" }, { - "baseId": "614518", + "upstreamId": "614518", "text": "Immunodeficiency 61" }, { - "baseId": "614546|614547|614548", + "upstreamId": "614546|614547|614548", "text": "Subcutaneous panniculitis-like T-cell lymphoma" }, { - "baseId": "614569|614570", + "upstreamId": "614569|614570", "text": "Intellectual developmental disorder, autosomal recessive 70" }, { - "baseId": "614619", + "upstreamId": "614619", "text": "Deletion of long arm of chromosome 18" }, { - "baseId": "614654|614655", + "upstreamId": "614654|614655", "text": "Deafness, autosomal recessive 113" }, { - "baseId": "614666|614667|614668", + "upstreamId": "614666|614667|614668", "text": "Global developmental delay, progressive ataxia, and elevated glutamine" }, { - "baseId": "615238", + "upstreamId": "615238", "text": "Preaxial hand polydactyly" }, { - "baseId": "615270|615271|615272", + "upstreamId": "615270|615271|615272", "text": "Cataract 48" }, { - "baseId": "615421", + "upstreamId": "615421", "text": "Pulmonary embolism (disease)" }, { - "baseId": "615445|615446|615447|615448", + "upstreamId": "615445|615446|615447|615448", "text": "Prolonged prothrombin time" }, { - "baseId": "615447|620402", + "upstreamId": "615447|620402", "text": "F2-Related Disorders" }, { - "baseId": "615449|615450|615451|615452|615453|615454|615575|615585|615592|615605|615728|615729|615730|615754|615755", + "upstreamId": "615449|615450|615451|615452|615453|615454|615575|615585|615592|615605|615728|615729|615730|615754|615755", "text": "Abnormal platelet aggregation" }, { - "baseId": "615606|615607", + "upstreamId": "615606|615607", "text": "Impaired thromboxane A2 agonist-induced platelet aggregation" }, { - "baseId": "615652", + "upstreamId": "615652", "text": "Thrombotic stroke" }, { - "baseId": "615768|615769", + "upstreamId": "615768|615769", "text": "Congenital myopathy with reduced type 2 muscle fibers" }, { - "baseId": "615778|615779|615780", + "upstreamId": "615778|615779|615780", "text": "Gonadal dysgenesis, dysmorphic facies, retinal dystrophy, and myopathy" }, { - "baseId": "615778|615779|615780", + "upstreamId": "615778|615779|615780", "text": "Spermatogenic failure 36" }, { - "baseId": "615877", + "upstreamId": "615877", "text": "Deafness, autosomal recessive 100" }, { - "baseId": "615897|615898|615899|615900|615902|798497", + "upstreamId": "615897|615898|615899|615900|615902|798497", "text": "Neurodevelopmental disorder with impaired speech and hyperkinetic movements" }, { - "baseId": "615906|615907|615908|615909|615910|615911|677048|677049|815990|920546", + "upstreamId": "615906|615907|615908|615909|615910|615911|677048|677049|815990|920546", "text": "Spastic paraplegia 80, autosomal dominant" }, { - "baseId": "615926|615927|615928|615929|615930", + "upstreamId": "615926|615927|615928|615929|615930", "text": "Spermatogenic failure 37" }, { - "baseId": "615931|615932|615933", + "upstreamId": "615931|615932|615933", "text": "Hydatidiform mole, recurrent, 3" }, { - "baseId": "615980|615981", + "upstreamId": "615980|615981", "text": "Hydatidiform mole, recurrent, 4" }, { - "baseId": "615987|615988|615989|615990|615991", + "upstreamId": "615987|615988|615989|615990|615991", "text": "X-linked intellectual disability, Van Esch type" }, { - "baseId": "615987|615988|615989|615990|615991|798812", + "upstreamId": "615987|615988|615989|615990|615991|798812", "text": "VAN ESCH-O''''DRISCOLL SYNDROME" }, { - "baseId": "616002|616003|616004", + "upstreamId": "616002|616003|616004", "text": "9q34 microduplication syndrome" }, { - "baseId": "616822|967178", + "upstreamId": "616822|967178", "text": "Arrhythmogenic right ventricular dysplasia, type 5" }, { - "baseId": "619849|805141|964745", + "upstreamId": "619849|805141|964745", "text": "Myopathy, congenital, with diaphragmatic defects, respiratory insufficiency, and dysmorphic facies" }, { - "baseId": "619918|620007|620725", + "upstreamId": "619918|620007|620725", "text": "PCSK9-Related Disorders" }, { - "baseId": "619922|620310", + "upstreamId": "619922|620310", "text": "C8orf37-Related Disorders" }, { - "baseId": "619944|620702", + "upstreamId": "619944|620702", "text": "COL11A1-Related Disorders" }, { - "baseId": "619958", + "upstreamId": "619958", "text": "MPZ-Related Disorders" }, { - "baseId": "619990|620714", + "upstreamId": "619990|620714", "text": "HSPG2-Related Disorders" }, { - "baseId": "619991", + "upstreamId": "619991", "text": "RAB3GAP2-Related Disorders" }, { - "baseId": "619996", + "upstreamId": "619996", "text": "FH-Related Disorders" }, { - "baseId": "620011", + "upstreamId": "620011", "text": "PGM1-Related Disorders" }, { - "baseId": "620012|620726", + "upstreamId": "620012|620726", "text": "LEPR-Related Disorders" }, { - "baseId": "620014|620015", + "upstreamId": "620014|620015", "text": "NEXN-Related Disorders" }, { - "baseId": "620035", + "upstreamId": "620035", "text": "CACNB4-Related Disorders" }, { - "baseId": "620076", + "upstreamId": "620076", "text": "POMC-Related Disorders" }, { - "baseId": "620089", + "upstreamId": "620089", "text": "FSHR-Related Disorders" }, { - "baseId": "620116", + "upstreamId": "620116", "text": "Congenital sucrose-isomaltase deficiency" }, { - "baseId": "620152|620153|620154", + "upstreamId": "620152|620153|620154", "text": "FGA-Related Disorders" }, { - "baseId": "620159", + "upstreamId": "620159", "text": "CYP4V2-Related Disorders" }, { - "baseId": "620172", + "upstreamId": "620172", "text": "PDE6B-Related Disorders" }, { - "baseId": "620181", + "upstreamId": "620181", "text": "TERT-Related Disorders" }, { - "baseId": "620189", + "upstreamId": "620189", "text": "ANKH-Related Disorders" }, { - "baseId": "620214|620785", + "upstreamId": "620214|620785", "text": "ENPP1-Related Disorders" }, { - "baseId": "620228", + "upstreamId": "620228", "text": "TULP1-Related Disorders" }, { - "baseId": "620242", + "upstreamId": "620242", "text": "COL9A1-Related Disorders" }, { - "baseId": "620249", + "upstreamId": "620249", "text": "IMPDH1-Related Disorders" }, { - "baseId": "620269", + "upstreamId": "620269", "text": "HSPB1-Related Disorders" }, { - "baseId": "620280|961516", + "upstreamId": "620280|961516", "text": "COL1A2-Related Disorders" }, { - "baseId": "620316", + "upstreamId": "620316", "text": "DFNB31-Related Disorders" }, { - "baseId": "620319|620320", + "upstreamId": "620319|620320", "text": "GLE1-Related Disorders" }, { - "baseId": "620329", + "upstreamId": "620329", "text": "VCP-Related Disorders" }, { - "baseId": "620331|620332", + "upstreamId": "620331|620332", "text": "TPM2-Related Disorders" }, { - "baseId": "620336", + "upstreamId": "620336", "text": "TMC1-Related Disorders" }, { - "baseId": "620366", + "upstreamId": "620366", "text": "PCDH15-Related Disorders" }, { - "baseId": "620377|620378", + "upstreamId": "620377|620378", "text": "MMP13-Related Disorders" }, { - "baseId": "620398", + "upstreamId": "620398", "text": "CSRP3-Related Disorders" }, { - "baseId": "620416|620417", + "upstreamId": "620416|620417", "text": "NDUFV1-Related Disorders" }, { - "baseId": "620455|620851", + "upstreamId": "620455|620851", "text": "SCNN1A-Related Disorders" }, { - "baseId": "620475", + "upstreamId": "620475", "text": "EDNRB-Related Disorders" }, { - "baseId": "620480", + "upstreamId": "620480", "text": "MYH6-Related Disorders" }, { - "baseId": "620488", + "upstreamId": "620488", "text": "LTBP2-Related Disorders" }, { - "baseId": "620495", + "upstreamId": "620495", "text": "TSHR-Related Disorders" }, { - "baseId": "620526", + "upstreamId": "620526", "text": "MAP2K1-Related Disorders" }, { - "baseId": "620571", + "upstreamId": "620571", "text": "SCO1-Related Disorders" }, { - "baseId": "620637", + "upstreamId": "620637", "text": "RAX2-Related Disorders" }, { - "baseId": "620718|620719|620720", + "upstreamId": "620718|620719|620720", "text": "SDCCAG8-Related Disorders" }, { - "baseId": "620794", + "upstreamId": "620794", "text": "SLC17A5-Related Disorders" }, { - "baseId": "620829", + "upstreamId": "620829", "text": "MFRP-related disorders" }, { - "baseId": "620833", + "upstreamId": "620833", "text": "NDUFS3-Related Disorders" }, { - "baseId": "620916", + "upstreamId": "620916", "text": "MKKS-Related Disorders" }, { - "baseId": "620927", + "upstreamId": "620927", "text": "LARGE-related disorders" }, { - "baseId": "620933", + "upstreamId": "620933", "text": "Spastic ataxia 9, autosomal recessive" }, { - "baseId": "620946|679339", + "upstreamId": "620946|679339", "text": "Aminoaciduria" }, { - "baseId": "621018|621023|621033", + "upstreamId": "621018|621023|621033", "text": "Isolated unilateral hemispheric cerebellar hypoplasia" }, { - "baseId": "621019", + "upstreamId": "621019", "text": "Syndrome with a Dandy-Walker malformation as major feature" }, { - "baseId": "621033", + "upstreamId": "621033", "text": "Grade I preterm intraventricular hemorrhage" }, { - "baseId": "621884", + "upstreamId": "621884", "text": "Ciliary dyskinesia, primary, 41" }, { - "baseId": "621892|621893|682169|682170", + "upstreamId": "621892|621893|682169|682170", "text": "NEURODEGENERATION, EARLY-ONSET, WITH CHOREOATHETOSIS AND MICROCYTIC ANEMIA" }, { - "baseId": "621892|621893|682169|682170", + "upstreamId": "621892|621893|682169|682170", "text": "Neurodegeneration, early-onset, with choreoathetoid movements and microcytic anemia" }, { - "baseId": "621899|621900", + "upstreamId": "621899|621900", "text": "Adrenal insufficiency" }, { - "baseId": "622023", + "upstreamId": "622023", "text": "Intellectual developmental disorder with short stature and variable skeletal anomalies" }, { - "baseId": "622024|622025|622026|622027", + "upstreamId": "622024|622025|622026|622027", "text": "Diabetes" }, { - "baseId": "622029", + "upstreamId": "622029", "text": "Ocular melanocytosis" }, { - "baseId": "622031", + "upstreamId": "622031", "text": "Deafness, autosomal recessive 114" }, { - "baseId": "622041|622148|622207", + "upstreamId": "622041|622148|622207", "text": "Suleiman-El-Hattab syndrome" }, { - "baseId": "622044|622045|963341|984052|984053|984057", + "upstreamId": "622044|622045|963341|984052|984053|984057", "text": "Cryptozoospermia" }, { - "baseId": "622046", + "upstreamId": "622046", "text": "Early spermatogenesis maturation arrest" }, { - "baseId": "622081|622082", + "upstreamId": "622081|622082", "text": "Immunodeficiency 62" }, { - "baseId": "622129", + "upstreamId": "622129", "text": "Paganini-Miozzo syndrome" }, { - "baseId": "622130|622131|622132", + "upstreamId": "622130|622131|622132", "text": "Khan-Khan-Katsanis syndrome" }, { - "baseId": "622148", + "upstreamId": "622148", "text": "Distinctive facial features" }, { - "baseId": "622207", + "upstreamId": "622207", "text": "Happy demeanor" }, { - "baseId": "622215", + "upstreamId": "622215", "text": "Bleeding disorder, platelet-type, 22" }, { - "baseId": "622275|622280|622282|622283|622284|622285|622286|622290|622297", + "upstreamId": "622275|622280|622282|622283|622284|622285|622286|622290|622297", "text": "CYP2C19: uncertain function" }, { - "baseId": "622276|622281|622288|622291|622294", + "upstreamId": "622276|622281|622288|622291|622294", "text": "CYP2C19: normal function" }, { - "baseId": "622304", + "upstreamId": "622304", "text": "Encephalopathy, progressive, early-onset, with brain edema and/or leukoencephalopathy" }, { - "baseId": "622488", + "upstreamId": "622488", "text": "Autosomal recessive sideroblastic anemia" }, { - "baseId": "622499", + "upstreamId": "622499", "text": "CD99 Positive Neoplastic Cells Present" }, { - "baseId": "622716|622717|622718|622719|622720|858633|962057|963642|964296|970869|972720|980332", + "upstreamId": "622716|622717|622718|622719|622720|858633|962057|963642|964296|970869|972720|980332", "text": "Developmental delay with or without dysmorphic facies and autism" }, { - "baseId": "622726|622727|622728", + "upstreamId": "622726|622727|622728", "text": "Uridine-cytidineuria" }, { - "baseId": "622738", + "upstreamId": "622738", "text": "Hereditary factor XIII deficiency disease" }, { - "baseId": "622741", + "upstreamId": "622741", "text": "Third degree atrioventricular block" }, { - "baseId": "622759", + "upstreamId": "622759", "text": "Zimmermann-Laband syndrome with epileptic encephalopathy" }, { - "baseId": "622766|622767|622768|622769|622770", + "upstreamId": "622766|622767|622768|622769|622770", "text": "Cerebellar, ocular, craniofacial, and genital syndrome" }, { - "baseId": "622849|961999", + "upstreamId": "622849|961999", "text": "Heterotaxy, visceral, 9, autosomal, with male infertility" }, { - "baseId": "622850|622851", + "upstreamId": "622850|622851", "text": "Dynein arm defect of respiratory motile cilia" }, { - "baseId": "622850", + "upstreamId": "622850", "text": "Recurrent bronchitis" }, { - "baseId": "622851", + "upstreamId": "622851", "text": "Bronchiectasis" }, { - "baseId": "622851", + "upstreamId": "622851", "text": "Abnormal ciliary motility" }, { - "baseId": "622938|622939|622940|622941|622942|679879|679880|679881|679882|679883|679884|816516|816517|816518", + "upstreamId": "622938|622939|622940|622941|622942|679879|679880|679881|679882|679883|679884|816516|816517|816518", "text": "ACTL6B-related recessive epilepsy" }, { - "baseId": "622961|622962|622963|622964|622965", + "upstreamId": "622961|622962|622963|622964|622965", "text": "Paragangliomas 6" }, { - "baseId": "622968", + "upstreamId": "622968", "text": "Paragangliomas 7" }, { - "baseId": "622996", + "upstreamId": "622996", "text": "Infantile nystagmus with foveal hypoplasia" }, { - "baseId": "622997", + "upstreamId": "622997", "text": "Infantile osteopetrosis" }, { - "baseId": "622999", + "upstreamId": "622999", "text": "Retinitis pigmentosa, juvenile" }, { - "baseId": "623001", + "upstreamId": "623001", "text": "Galactokinase deficiency with cataracts" }, { - "baseId": "623004|623007", + "upstreamId": "623004|623007", "text": "Cavernous sinus meningioma" }, { - "baseId": "623009", + "upstreamId": "623009", "text": "Oligodendroglioma, anaplastic" }, { - "baseId": "623010", + "upstreamId": "623010", "text": "Adult spinal cord ependymoma" }, { - "baseId": "623011|623012", + "upstreamId": "623011|623012", "text": "Chordoma" }, { - "baseId": "623019", + "upstreamId": "623019", "text": "Nanophthalmos 1" }, { - "baseId": "623022|623023|623024|623025|623026|623027|970808", + "upstreamId": "623022|623023|623024|623025|623026|623027|970808", "text": "Generalized epilepsy with febrile seizures plus, type 10" }, { - "baseId": "623029|623030", + "upstreamId": "623029|623030", "text": "Pili torti-developmental delay-neurological abnormalities syndrome" }, { - "baseId": "623097", + "upstreamId": "623097", "text": "buprenorphine response - Efficacy" }, { - "baseId": "623114", + "upstreamId": "623114", "text": "1p13.3 deletion syndrome" }, { - "baseId": "623115|682370", + "upstreamId": "623115|682370", "text": "Epilepsy, familial adult myoclonic, 3" }, { - "baseId": "623119", + "upstreamId": "623119", "text": "Doughnut lesions of skull, familial" }, { - "baseId": "623120|623121", + "upstreamId": "623120|623121", "text": "CALVARIAL DOUGHNUT LESIONS WITH BONE FRAGILITY AND SPONDYLOMETAPHYSEAL DYSPLASIA" }, { - "baseId": "623152|623153", + "upstreamId": "623152|623153", "text": "Ataxia telangiectasi" }, { - "baseId": "623154", + "upstreamId": "623154", "text": "Xeroderma pigmentosum, group E, DDB-negative subtype" }, { - "baseId": "623166", + "upstreamId": "623166", "text": "Crisponi/Cold-induced sweating syndrome" }, { - "baseId": "623225|623226|623227", + "upstreamId": "623225|623226|623227", "text": "Neurodevelopmental disorder with microcephaly and structural brain anomalies" }, { - "baseId": "623603|967252", + "upstreamId": "623603|967252", "text": "Blepharophimosis" }, { - "baseId": "623610|623611", + "upstreamId": "623610|623611", "text": "Nephrotic syndrome, type 20" }, { - "baseId": "623612|623613|623614", + "upstreamId": "623612|623613|623614", "text": "Noonan syndrome 11" }, { - "baseId": "623626|623627|623628|623629|623630", + "upstreamId": "623626|623627|623628|623629|623630", "text": "Hypotonia, hypoventilation, impaired intellectual development, dysautonomia, epilepsy, and eye abnormalities" }, { - "baseId": "623644|623645|623646|623647", + "upstreamId": "623644|623645|623646|623647", "text": "Immunodeficiency 63 with lymphoproliferation and autoimmunity" }, { - "baseId": "623648|623649|623650|623651|777803|777804|790882|790883", + "upstreamId": "623648|623649|623650|623651|777803|777804|790882|790883", "text": "Neurodevelopmental disorder with seizures and nonepileptic hyperkinetic movements" }, { - "baseId": "623663", + "upstreamId": "623663", "text": "Microlissencephaly" }, { - "baseId": "623676|623728|623765|623777", + "upstreamId": "623676|623728|623765|623777", "text": "Internal malformations" }, { - "baseId": "623685", + "upstreamId": "623685", "text": "Kidney disease" }, { - "baseId": "623695|623696|623717|623721|623737|623770", + "upstreamId": "623695|623696|623717|623721|623737|623770", "text": "Growth abnormality" }, { - "baseId": "623758", + "upstreamId": "623758", "text": "Arthrogryphosis" }, { - "baseId": "623775|623778", + "upstreamId": "623775|623778", "text": "Muscle dystrophy" }, { - "baseId": "623782|623783|802095|861284|967249", + "upstreamId": "623782|623783|802095|861284|967249", "text": "Lower limb spasticity" }, { - "baseId": "623782|623783", + "upstreamId": "623782|623783", "text": "Neurodevelopmental disorder with ataxia, hypotonia, and microcephaly" }, { - "baseId": "624049", + "upstreamId": "624049", "text": "SPTBN1-related neurodevelopmental disease" }, { - "baseId": "624051|624066", + "upstreamId": "624051|624066", "text": "GP130-deficient hyper-IgE syndrome" }, { - "baseId": "624056", + "upstreamId": "624056", "text": "NBEA-related developmental delay and generalized epilepsy" }, { - "baseId": "624062", + "upstreamId": "624062", "text": "LONP1-related condition" }, { - "baseId": "624076|624077|800762", + "upstreamId": "624076|624077|800762", "text": "Neuropathy, hereditary motor and sensory, type VIc, with optic atrophy" }, { - "baseId": "624083|624084", + "upstreamId": "624083|624084", "text": "Intellectual developmental disorder, autosomal recessive 71" }, { - "baseId": "624101|624102|624103|624104|624105", + "upstreamId": "624101|624102|624103|624104|624105", "text": "22q11.2 central deletion syndrome" }, { - "baseId": "624106|624107", + "upstreamId": "624106|624107", "text": "22q11.2 central duplication syndrome" }, { - "baseId": "624108|624109", + "upstreamId": "624108|624109", "text": "22q11.2 distal duplication syndrome" }, { - "baseId": "624839", + "upstreamId": "624839", "text": "Reduced factor IX activity" }, { - "baseId": "624841|816385|816386|980500", + "upstreamId": "624841|816385|816386|980500", "text": "Pontocerebellar hypoplasia, hypotonia, and respiratory insufficiency syndrome, neonatal lethal" }, { - "baseId": "624881|625774", + "upstreamId": "624881|625774", "text": "Sclerocornea" }, { - "baseId": "624881|822308", + "upstreamId": "624881|822308", "text": "Microcornea" }, { - "baseId": "625455", + "upstreamId": "625455", "text": "Neuropathy, hereditary motor and sensory, with deafness, mental retardation, and absent sensory large myelinated fibers" }, { - "baseId": "625774", + "upstreamId": "625774", "text": "Congenital cornea plana" }, { - "baseId": "625778", + "upstreamId": "625778", "text": "Ataxia with Dysarthria" }, { - "baseId": "625780", + "upstreamId": "625780", "text": "Cholangiocarcinoma" }, { - "baseId": "625900|625901|625902|625903|625904|625905|625906|625907|625908|625909|625910|970254|970304|970305|970308|970309", + "upstreamId": "625900|625901|625902|625903|625904|625905|625906|625907|625908|625909|625910|970254|970304|970305|970308|970309", "text": "Sponastrime dysplasia" }, { - "baseId": "625907|625908|626374|626375", + "upstreamId": "625907|625908|626374|626375", "text": "TONSL-related condition" }, { - "baseId": "625907|625908|626374|626375|970306|970307", + "upstreamId": "625907|625908|626374|626375|970306|970307", "text": "Skeletal dysplaisia with extra-skeletal manifestations" }, { - "baseId": "625913|625914", + "upstreamId": "625913|625914", "text": "Leber congenital amaurosis 19" }, { - "baseId": "625980|794273", + "upstreamId": "625980|794273", "text": "Amelia, autosomal recessive" }, { - "baseId": "626053|626054", + "upstreamId": "626053|626054", "text": "Mitochondrial complex 4 deficiency, nuclear type 18" }, { - "baseId": "626239", + "upstreamId": "626239", "text": "CAPN3-Related Disorders" }, { - "baseId": "626283", + "upstreamId": "626283", "text": "Hereditary cerebral hemorrhage with amyloidosis" }, { - "baseId": "626351", + "upstreamId": "626351", "text": "Asthma" }, { - "baseId": "626352|626353", + "upstreamId": "626352|626353", "text": "Hyper-ige recurrent infection syndrome 4, autosomal recessive" }, { - "baseId": "626369", + "upstreamId": "626369", "text": "NSD2-related condition" }, { - "baseId": "626370", + "upstreamId": "626370", "text": "WHSC1 (NSD2)-related condition" }, { - "baseId": "626371|626387", + "upstreamId": "626371|626387", "text": "SLC25A46-associated optic atrophy spectrum disorder" }, { - "baseId": "626378|626379", + "upstreamId": "626378|626379", "text": "SARS2-associated condition" }, { - "baseId": "626384", + "upstreamId": "626384", "text": "ARX-associated condition" }, { - "baseId": "626396|626397|626398|626399|626400|626401|626402|626403|626404|626405|626406|626407|626408", + "upstreamId": "626396|626397|626398|626399|626400|626401|626402|626403|626404|626405|626406|626407|626408", "text": "NK-cell enteropathy" }, { - "baseId": "626447|626449|626450", + "upstreamId": "626447|626449|626450", "text": "Abnormality of the vertebral column" }, { - "baseId": "626449|626450", + "upstreamId": "626449|626450", "text": "Urethral stricture" }, { - "baseId": "630398", + "upstreamId": "630398", "text": "Recessive Marfanoid Syndrome with Severe Herniation" }, { - "baseId": "636134", + "upstreamId": "636134", "text": "GARS1-related neuropathies" }, { - "baseId": "642802", + "upstreamId": "642802", "text": "Supratentorial primitive neuroectodermal tumor" }, { - "baseId": "643390|655011|655012|655013|655014|655015|655016|655017", + "upstreamId": "643390|655011|655012|655013|655014|655015|655016|655017", "text": "Congenital scoliosis" }, { - "baseId": "646406", + "upstreamId": "646406", "text": "SCN4A-Related Disorders" }, { - "baseId": "653800|653801", + "upstreamId": "653800|653801", "text": "ERYTHROKERATODERMIA VARIABILIS ET PROGRESSIVA 6" }, { - "baseId": "653802", + "upstreamId": "653802", "text": "Ichthyotic keratoderma, spasticity, hypomyelination, and dysmorphic facial features" }, { - "baseId": "653816", + "upstreamId": "653816", "text": "Deafness, autosomal dominant 37" }, { - "baseId": "653817", + "upstreamId": "653817", "text": "Ectodermal dysplasia 15, hypohidrotic/hair type" }, { - "baseId": "653823|798961|798962|798963|798965", + "upstreamId": "653823|798961|798962|798963|798965", "text": "Neurodevelopmental disorder with hypotonia and autistic features with or without hyperkinetic movements" }, { - "baseId": "653824", + "upstreamId": "653824", "text": "Dabrafenib response" }, { - "baseId": "653834|653835|653836|653837|653838|971013", + "upstreamId": "653834|653835|653836|653837|653838|971013", "text": "Immunodeficiency 64" }, { - "baseId": "653884", + "upstreamId": "653884", "text": "Scrotal hypoplasia" }, { - "baseId": "653968", + "upstreamId": "653968", "text": "Brain dopamine-serotonin vesicular transport disease" }, { - "baseId": "653994", + "upstreamId": "653994", "text": "Leri pleonosteosis" }, { - "baseId": "654000", + "upstreamId": "654000", "text": "Chromosome 17q11.2 deletion syndrome, 1.4 MB" }, { - "baseId": "654008|971560", + "upstreamId": "654008|971560", "text": "Chromosome 15q11.2 deletion syndrome" }, { - "baseId": "654170", + "upstreamId": "654170", "text": "Spondyloepiphyseal dysplasia" }, { - "baseId": "654352", + "upstreamId": "654352", "text": "Van Maldergem syndrome" }, { - "baseId": "654385", + "upstreamId": "654385", "text": "Homocystinuria without methylmalonic aciduria" }, { - "baseId": "654481", + "upstreamId": "654481", "text": "Kleefstra syndrome due to a point mutation" }, { - "baseId": "672010", + "upstreamId": "672010", "text": "Neurodevelopmental disorder with brain malformations and multiple congenital anomalies" }, { - "baseId": "672042", + "upstreamId": "672042", "text": "ACTG2-Related Disorder" }, { - "baseId": "672046|672047", + "upstreamId": "672046|672047", "text": "SLC6A1-Related Disorder" }, { - "baseId": "672060", + "upstreamId": "672060", "text": "LOX-Related Disorder" }, { - "baseId": "672069", + "upstreamId": "672069", "text": "PHIP-Related Disorder" }, { - "baseId": "672085", + "upstreamId": "672085", "text": "MYO7A-related disorder" }, { - "baseId": "672102", + "upstreamId": "672102", "text": "CLTC-Related Disorder" }, { - "baseId": "672104", + "upstreamId": "672104", "text": "TLK2-Related Disorder" }, { - "baseId": "672108|961344", + "upstreamId": "672108|961344", "text": "CACNA1A-Related Disorder" }, { - "baseId": "672109", + "upstreamId": "672109", "text": "Hemiplegia-hemiconvulsion-epilepsy syndrome" }, { - "baseId": "672113", + "upstreamId": "672113", "text": "PPP2R1A-related disorder" }, { - "baseId": "672116", + "upstreamId": "672116", "text": "Mercaptolactate-cysteine disulfiduria" }, { - "baseId": "672121", + "upstreamId": "672121", "text": "BRWD3-Related Disorder" }, { - "baseId": "672133|961404", + "upstreamId": "672133|961404", "text": "Rubinstein-Taybi syndrome due to 16p13.3 microdeletion" }, { - "baseId": "672148", + "upstreamId": "672148", "text": "Chromosome Xp21 deletion syndrome" }, { - "baseId": "672236|672237|672238", + "upstreamId": "672236|672237|672238", "text": "Diencephalic-mesencephalic junction dysplasia syndrome" }, { - "baseId": "672236|965274", + "upstreamId": "672236|965274", "text": "Diencephalic-mesencephalic junction dysplasia" }, { - "baseId": "672259|672260|672261|672262", + "upstreamId": "672259|672260|672261|672262", "text": "Nephrotic syndrome, type 21" }, { - "baseId": "672283|672284|672285|672286|672287|672288|672289|672290|672291|672292|672293", + "upstreamId": "672283|672284|672285|672286|672287|672288|672289|672290|672291|672292|672293", "text": "Renal agenesis and hypodysplasia" }, { - "baseId": "672318", + "upstreamId": "672318", "text": "Radioulnar synostosis-microcephaly-scoliosis syndrome" }, { - "baseId": "672320", + "upstreamId": "672320", "text": "Cerebellar medulloblastoma" }, { - "baseId": "672358", + "upstreamId": "672358", "text": "Carpal osteolysis" }, { - "baseId": "676913", + "upstreamId": "676913", "text": "Interstitial cardiac fibrosis" }, { - "baseId": "676955|676971|905977|971561", + "upstreamId": "676955|676971|905977|971561", "text": "Intellectual developmental disorder, autosomal recessive 72" }, { - "baseId": "676983|676984|676985|789780", + "upstreamId": "676983|676984|676985|789780", "text": "Developmental and epileptic encephalopathy, 79" }, { - "baseId": "676986", + "upstreamId": "676986", "text": "Mitochondrial DNA depletion syndrome 17" }, { - "baseId": "676989|676990|676991", + "upstreamId": "676989|676990|676991", "text": "Trichothiodystrophy 7, nonphotosensitive" }, { - "baseId": "677012", + "upstreamId": "677012", "text": "Hepatitis, fulminant viral, susceptibility to" }, { - "baseId": "677013|677014|677015|677016", + "upstreamId": "677013|677014|677015|677016", "text": "Oocyte maturation defect 7" }, { - "baseId": "677025|677026|677027|677028|796901|815998|964401", + "upstreamId": "677025|677026|677027|677028|796901|815998|964401", "text": "Microangiopathy and leukoencephalopathy, pontine, autosomal dominant" }, { - "baseId": "677052|677053|677054", + "upstreamId": "677052|677053|677054", "text": "LEUKODYSTROPHY, HYPOMYELINATING, 19, TRANSIENT INFANTILE" }, { - "baseId": "677070|983529|983531|983532|983533", + "upstreamId": "677070|983529|983531|983532|983533", "text": "INTELLECTUAL DEVELOPMENTAL DISORDER WITH PAROXYSMAL DYSKINESIA OR SEIZURES" }, { - "baseId": "677115|677117|677119", + "upstreamId": "677115|677117|677119", "text": "Megabladder, congenital" }, { - "baseId": "677184|677185|677186|677186|677187|861612|861613", + "upstreamId": "677184|677185|677186|677186|677187|861612|861613", "text": "Myopathy, congenital, progressive, with scoliosis" }, { - "baseId": "677198|677199|677200|677201|677202|677203|919087", + "upstreamId": "677198|677199|677200|677201|677202|677203|919087", "text": "Neurodevelopmental disorder with cataracts, poor growth, and dysmorphic facies" }, { - "baseId": "677204|677205", + "upstreamId": "677204|677205", "text": "Neurodevelopmental disorder with cerebellar hypoplasia and spasticity" }, { - "baseId": "677225|677253", + "upstreamId": "677225|677253", "text": "Abnormality of connective tissue" }, { - "baseId": "677230", + "upstreamId": "677230", "text": "Absent radius" }, { - "baseId": "677232", + "upstreamId": "677232", "text": "Distal amyotrophy" }, { - "baseId": "677242", + "upstreamId": "677242", "text": "Male pseudohermaphroditism" }, { - "baseId": "677336", + "upstreamId": "677336", "text": "NUDT2-associated condition" }, { - "baseId": "677337", + "upstreamId": "677337", "text": "PRNP-associated condition" }, { - "baseId": "677400", + "upstreamId": "677400", "text": "Intellectual developmental disorder 60 with seizures" }, { - "baseId": "677401|677402", + "upstreamId": "677401|677402", "text": "Glycosylphosphatidylinositol biosynthesis defect 21" }, { - "baseId": "677478|677479|677480|792532|802101|802102", + "upstreamId": "677478|677479|677480|792532|802101|802102", "text": "Spondyloepimetaphyseal dysplasia, Isidor-Toutain type" }, { - "baseId": "677482", + "upstreamId": "677482", "text": "LMNA-associated condition" }, { - "baseId": "678055", + "upstreamId": "678055", "text": "Areflexia" }, { - "baseId": "678055", + "upstreamId": "678055", "text": "Stereotypical hand wringing" }, { - "baseId": "678055|679241|679242|679243|679245|679247", + "upstreamId": "678055|679241|679242|679243|679245|679247", "text": "Neurodevelopmental disorder with behavioral abnormalities, absent speech, and hypotonia" }, { - "baseId": "678084", + "upstreamId": "678084", "text": "Congenitally corrected transposition of the great arteries" }, { - "baseId": "678949|861048", + "upstreamId": "678949|861048", "text": "Postaxial polydactyly" }, { - "baseId": "678964|678965|678966|678967", + "upstreamId": "678964|678965|678966|678967", "text": "EPILEPTIC ENCEPHALOPATHY, EARLY INFANTILE, 82" }, { - "baseId": "678971", + "upstreamId": "678971", "text": "SHORT SLEEP, FAMILIAL NATURAL, 2" }, { - "baseId": "679174|679175|679176|679177|858510|858511", + "upstreamId": "679174|679175|679176|679177|858510|858511", "text": "Hypothyroidism, congenital, nongoitrous, 8" }, { - "baseId": "679178|679179|679180", + "upstreamId": "679178|679179|679180", "text": "Hypothyroidism, congenital, nongoitrous, 9" }, { - "baseId": "679183|679184|679185|679186|679187|861265|861267|861268|861269|861270|861271|861272|861273|861274|861275|971091|971092", + "upstreamId": "679183|679184|679185|679186|679187|861265|861267|861268|861269|861270|861271|861272|861273|861274|861275|971091|971092", "text": "Neurodevelopmental disorder with hypotonia and variable intellectual and behavioral abnormalities" }, { - "baseId": "679189|679190|679191", + "upstreamId": "679189|679190|679191", "text": "Peritoneal Gliomatosis" }, { - "baseId": "679282|679283|679284|679285|679286|679287|798479|964807|972529", + "upstreamId": "679282|679283|679284|679285|679286|679287|798479|964807|972529", "text": "Snijders blok-fisher syndrome" }, { - "baseId": "679288|679289|679290", + "upstreamId": "679288|679289|679290", "text": "Pontocerebellar hypoplasia, type 13" }, { - "baseId": "679293", + "upstreamId": "679293", "text": "Chromosome 8p11 myeloproliferative syndrome" }, { - "baseId": "679317|679318", + "upstreamId": "679317|679318", "text": "Retinitis pigmentosa 86" }, { - "baseId": "679319|679320", + "upstreamId": "679319|679320", "text": "Intellectual developmental disorder with nasal speech, dysmorphic facies, and variable skeletal anomalies" }, { - "baseId": "679356|679357|679358|679359", + "upstreamId": "679356|679357|679358|679359", "text": "Mitochondrial complex 1 deficiency, nuclear type 34" }, { - "baseId": "679483|794110", + "upstreamId": "679483|794110", "text": "Frequent falls" }, { - "baseId": "679509|679510|679511|679512|679513", + "upstreamId": "679509|679510|679511|679512|679513", "text": "Neurodevelopmental disorder with hypotonia, neonatal respiratory insufficiency, and thermodysregulation" }, { - "baseId": "679565|679566|679567|679568|679569", + "upstreamId": "679565|679566|679567|679568|679569", "text": "Early Onset Neurological Disease Trait" }, { - "baseId": "679571", + "upstreamId": "679571", "text": "Spastic Paraplegia 2, mild, late onset" }, { - "baseId": "679574|679575|679576|679577", + "upstreamId": "679574|679575|679576|679577", "text": "Pachygyria, microcephaly, developmental delay, and dysmorphic facies, with or without seizures" }, { - "baseId": "679578", + "upstreamId": "679578", "text": "Imatinib response" }, { - "baseId": "679582", + "upstreamId": "679582", "text": "Neuronal intranuclear inclusion disease" }, { - "baseId": "679582", + "upstreamId": "679582", "text": "Tremor, hereditary essential, 6" }, { - "baseId": "679672|679678", + "upstreamId": "679672|679678", "text": "Reduced renal corticomedullary differentiation" }, { - "baseId": "679672|679673|679674|679675", + "upstreamId": "679672|679673|679674|679675", "text": "Neuromuscular disease and ocular or auditory anomalies with or without seizures" }, { - "baseId": "679698|679699|679700|679701|679702|679703|679704|679705", + "upstreamId": "679698|679699|679700|679701|679702|679703|679704|679705", "text": "Non-progressive neurodevelopmental disorder with spasticity and transient opisthotonus" }, { - "baseId": "679714|679715|679716|679717|679718|679719|858504|858505|858506|858507", + "upstreamId": "679714|679715|679716|679717|679718|679719|858504|858505|858506|858507", "text": "Neurodevelopmental disorder with microcephaly, arthrogryposis, and structural brain anomalies" }, { - "baseId": "679730|682220", + "upstreamId": "679730|682220", "text": "Leukemia, acute lymphoblastic 2" }, { - "baseId": "679745", + "upstreamId": "679745", "text": "PURA Syndrome" }, { - "baseId": "679764", + "upstreamId": "679764", "text": "congenital heart defect" }, { - "baseId": "679772|974491", + "upstreamId": "679772|974491", "text": "Autosomal dominant KAT6B-related disorders" }, { - "baseId": "679786|973031", + "upstreamId": "679786|973031", "text": "COL2A1-related skeletal dysplasia" }, { - "baseId": "679812", + "upstreamId": "679812", "text": "Teratoid tumor, atypical" }, { - "baseId": "679829", + "upstreamId": "679829", "text": "Mucocutaneous ulceration" }, { - "baseId": "679836", + "upstreamId": "679836", "text": "Oppositional defiant disorder" }, { - "baseId": "679836", + "upstreamId": "679836", "text": "reactive attachment disorder" }, { - "baseId": "679848|679849|679850", + "upstreamId": "679848|679849|679850", "text": "Rothmund-Thomson syndrome type 1" }, { - "baseId": "679851", + "upstreamId": "679851", "text": "syndrome with premature-aging" }, { - "baseId": "679894", + "upstreamId": "679894", "text": "Doxorubicin response" }, { - "baseId": "679958|679959", + "upstreamId": "679958|679959", "text": "SeSAME-like syndrome" }, { - "baseId": "679961", + "upstreamId": "679961", "text": "Oculopharyngeal myopathy with leukoencephalopathy 1" }, { - "baseId": "680033|680034|680035|680036", + "upstreamId": "680033|680034|680035|680036", "text": "Siddiqi syndrome" }, { - "baseId": "680037", + "upstreamId": "680037", "text": "Oculopharyngodistal myopathy" }, { - "baseId": "680074|680075|680076|680077", + "upstreamId": "680074|680075|680076|680077", "text": "Osteogenesis imperfecta, type 20" }, { - "baseId": "680078|680079|680080", + "upstreamId": "680078|680079|680080", "text": "SPERMATOGENIC FAILURE 39" }, { - "baseId": "681333", + "upstreamId": "681333", "text": "Decreased activity of mitochondrial complex IV" }, { - "baseId": "681600|794276", + "upstreamId": "681600|794276", "text": "Abnormal basal ganglia MRI signal intensity" }, { - "baseId": "681600|794276", + "upstreamId": "681600|794276", "text": "Gonadal dysgenesis" }, { - "baseId": "681802|822326|822327|822328|822329|822330", + "upstreamId": "681802|822326|822327|822328|822329|822330", "text": "Myopia 2, autosomal dominant" }, { - "baseId": "681863|681864", + "upstreamId": "681863|681864", "text": "Immunodeficiency 65, susceptibility to viral infections" }, { - "baseId": "681868|681869", + "upstreamId": "681868|681869", "text": "Diencephalic-mesencephalic junction dysplasia syndrome 2" }, { - "baseId": "681873", + "upstreamId": "681873", "text": "Epidermodysplasia verruciformis, susceptibility to, 5" }, { - "baseId": "682095|961553", + "upstreamId": "682095|961553", "text": "TAF1-related syndromic intellectual disability" }, { - "baseId": "682119", + "upstreamId": "682119", "text": "Cholestasis, progressive familial intrahepatic, (PFIC4-like)" }, { - "baseId": "682119|682409|682410|682411|682412|682413|682414|682415|682416|682417|792798", + "upstreamId": "682119|682409|682410|682411|682412|682413|682414|682415|682416|682417|792798", "text": "Cholestasis" }, { - "baseId": "682122|682123", + "upstreamId": "682122|682123", "text": "Muscular dystrophy-dystroglycanopathy (congenital with impaired intellectual development), type b, 15" }, { - "baseId": "682171", + "upstreamId": "682171", "text": "Neurodevelopmental disorder with spastic quadriplegia, optic atrophy, seizures, and structural brain anomalies" }, { - "baseId": "682239|682240", + "upstreamId": "682239|682240", "text": "Myopathy, congenital, with structured cores and z-line abnormalities" }, { - "baseId": "682241|682242|970681", + "upstreamId": "682241|682242|970681", "text": "Myopathy, distal, 6, adult-onset, autosomal dominant" }, { - "baseId": "682243|682244|682245|682246|682247", + "upstreamId": "682243|682244|682245|682246|682247", "text": "Intellectual developmental disorder with impaired language and dysmorphic facies" }, { - "baseId": "682249", + "upstreamId": "682249", "text": "Hypercalciuria" }, { - "baseId": "682299", + "upstreamId": "682299", "text": "Deafness, autosomal dominant 27" }, { - "baseId": "682300", + "upstreamId": "682300", "text": "Esophageal and colonic dysmotility" }, { - "baseId": "682317", + "upstreamId": "682317", "text": "Skin adenoma" }, { - "baseId": "682348|682350|682351|682361", + "upstreamId": "682348|682350|682351|682361", "text": "mitochondrial hepatopathy" }, { - "baseId": "682356", + "upstreamId": "682356", "text": "Alpers-like hepatocerebral syndrome" }, { - "baseId": "682369", + "upstreamId": "682369", "text": "HEMOGLOBIN HANA" }, { - "baseId": "682372|682373", + "upstreamId": "682372|682373", "text": "Diarrhea 11, malabsorptive, congenital" }, { - "baseId": "682396", + "upstreamId": "682396", "text": "Abnormal chromosome morphology" }, { - "baseId": "682396|800941|800943|800945|800946|800947|800952", + "upstreamId": "682396|800941|800943|800945|800946|800947|800952", "text": "Recurrent spontaneous abortion" }, { - "baseId": "682397|682398|682399|682400|682401|682402|682403|682404|682405|682406|682407|682408", + "upstreamId": "682397|682398|682399|682400|682401|682402|682403|682404|682405|682406|682407|682408", "text": "CDC42BPB-related neurodevelopmental syndrome" }, { - "baseId": "682426", + "upstreamId": "682426", "text": "Motor and sensory neuropathy" }, { - "baseId": "682488", + "upstreamId": "682488", "text": "Delayed myelination" }, { - "baseId": "682490", + "upstreamId": "682490", "text": "Epilepsy, familial adult myoclonic, 4" }, { - "baseId": "682509|800951", + "upstreamId": "682509|800951", "text": "Oocyte maturation defect" }, { - "baseId": "682585|682586|682587|682656", + "upstreamId": "682585|682586|682587|682656", "text": "Spermatogenic failure 40" }, { - "baseId": "682657", + "upstreamId": "682657", "text": "Spermatogenic failure 41" }, { - "baseId": "682667|682668", + "upstreamId": "682667|682668", "text": "Hydrocephalus, congenital communicating, 1" }, { - "baseId": "682724|682725|682726|682727", + "upstreamId": "682724|682725|682726|682727", "text": "Cortical dysplasia, complex, with other brain malformations 10" }, { - "baseId": "682749", + "upstreamId": "682749", "text": "Hydronephrosis" }, { - "baseId": "682782", + "upstreamId": "682782", "text": "Lessel-kubisch syndrome" }, { - "baseId": "682783", + "upstreamId": "682783", "text": "Pancreatic cancer, susceptibility to, 5" }, { - "baseId": "682788|682789|682790|682791|682792|964893|973105", + "upstreamId": "682788|682789|682790|682791|682792|964893|973105", "text": "Intellectual developmental disorder with speech delay, autism, and dysmorphic facies" }, { - "baseId": "682793|921216", + "upstreamId": "682793|921216", "text": "Pulmonary fibrosis and/or bone marrow failure, telomere-related, 5" }, { - "baseId": "682852|818744", + "upstreamId": "682852|818744", "text": "Renal tubular acidosis" }, { - "baseId": "682852|818744", + "upstreamId": "682852|818744", "text": "Rickets" }, { - "baseId": "682852|818744", + "upstreamId": "682852|818744", "text": "Metabolic acidosis" }, { - "baseId": "682855", + "upstreamId": "682855", "text": "Intrahepatic cholestasis with episodic jaundice" }, { - "baseId": "682864", + "upstreamId": "682864", "text": "Aplasia/hypoplasia involving bones of the lower limbs" }, { - "baseId": "682864", + "upstreamId": "682864", "text": "Absence of the sacrum" }, { - "baseId": "682950|969162", + "upstreamId": "682950|969162", "text": "Mitochondrial complex 5 (atp synthase) deficiency, nuclear type 6" }, { - "baseId": "683186|789712", + "upstreamId": "683186|789712", "text": "ECTODERMAL DYSPLASIA WITH FACIAL DYSMORPHISM AND ACRAL, OCULAR, AND BRAIN ANOMALIES, SOMATIC MOSAIC" }, { - "baseId": "683186", + "upstreamId": "683186", "text": "neuro-ectodermal phenotype" }, { - "baseId": "683225|683226", + "upstreamId": "683225|683226", "text": "Intellectual developmental disorder with short stature and behavioral abnormalities" }, { - "baseId": "683832", + "upstreamId": "683832", "text": "Hereditary hemochromatosis type 5" }, { - "baseId": "711182|816412", + "upstreamId": "711182|816412", "text": "Zellweger Spectrum Disorder" }, { - "baseId": "714726", + "upstreamId": "714726", "text": "Hyperaldosteronism" }, { - "baseId": "716121|789347", + "upstreamId": "716121|789347", "text": "Recurrent skin infections" }, { - "baseId": "724728|966721", + "upstreamId": "724728|966721", "text": "Rudimentary fibula" }, { - "baseId": "734506|828921", + "upstreamId": "734506|828921", "text": "Glutaric acidemia type 2C" }, { - "baseId": "761008", + "upstreamId": "761008", "text": "Retinitis pigmentosa 87 with choroidal involvement" }, { - "baseId": "788384|788385|788386|788387", + "upstreamId": "788384|788385|788386|788387", "text": "Ciliary dyskinesia, primary, 43" }, { - "baseId": "788765", + "upstreamId": "788765", "text": "COL7A1-related disorders" }, { - "baseId": "788809", + "upstreamId": "788809", "text": "MAP3K7-related disorder" }, { - "baseId": "788814", + "upstreamId": "788814", "text": "TWIST1-related disorder" }, { - "baseId": "788817", + "upstreamId": "788817", "text": "GLI3-related postaxial polydactyly" }, { - "baseId": "788850|789376", + "upstreamId": "788850|789376", "text": "Autosomal dominant KCNQ1-related disease" }, { - "baseId": "788866", + "upstreamId": "788866", "text": "COL2A1-related phenotype" }, { - "baseId": "788879", + "upstreamId": "788879", "text": "Autosomal dominant MYH7-related disorder" }, { - "baseId": "788924|880183|880185|880192", + "upstreamId": "788924|880183|880185|880192", "text": "COMP-related disorders" }, { - "baseId": "788977", + "upstreamId": "788977", "text": "Primary pulmonary hypoplasia" }, { - "baseId": "789156", + "upstreamId": "789156", "text": "Short stature and microcephaly with genital anomalies" }, { - "baseId": "789161|789162|789163|789164|789165|970494", + "upstreamId": "789161|789162|789163|789164|789165|970494", "text": "Neurodevelopmental disorder with nonspecific brain abnormalities and with or without seizures" }, { - "baseId": "789246|969242", + "upstreamId": "789246|969242", "text": "Dysfibrinogenemia, congenital" }, { - "baseId": "789258", + "upstreamId": "789258", "text": "Multifocal seizures" }, { - "baseId": "789314", + "upstreamId": "789314", "text": "Premature ovarian failure 16" }, { - "baseId": "789341|789342|789343", + "upstreamId": "789341|789342|789343", "text": "White matter deficit" }, { - "baseId": "789384", + "upstreamId": "789384", "text": "CNTNAP1-related disease" }, { - "baseId": "789388", + "upstreamId": "789388", "text": "INSR-related disorder" }, { - "baseId": "789713|789714", + "upstreamId": "789713|789714", "text": "Heyn-Sproul-Jackson syndrome" }, { - "baseId": "789781|789782|794170|969301", + "upstreamId": "789781|789782|794170|969301", "text": "Webb-Dattani syndrome" }, { - "baseId": "791856", + "upstreamId": "791856", "text": "Hereditary amyloidosis" }, { - "baseId": "792538|792539|792540|792541|792542|792543|792544|792545|792546|792547|792548|792549|792550|792551|792552|792553|792554|792559|792560|792561|792562", + "upstreamId": "792538|792539|792540|792541|792542|792543|792544|792545|792546|792547|792548|792549|792550|792551|792552|792553|792554|792559|792560|792561|792562", "text": "Cystine urolithiasis" }, { - "baseId": "792563|792564|792565", + "upstreamId": "792563|792564|792565", "text": "Zimmermann-laband syndrome 3" }, { - "baseId": "792590", + "upstreamId": "792590", "text": "ATP6AP1-related disorders" }, { - "baseId": "792596|792597", + "upstreamId": "792596|792597", "text": "EIF2AK2-related condition" }, { - "baseId": "792596|792597|801518|801519|806288|806406|861117|861118", + "upstreamId": "792596|792597|801518|801519|806288|806406|861117|861118", "text": "Leukoencephalopathy, developmental delay, and episodic neurologic regression syndrome" }, { - "baseId": "792599", + "upstreamId": "792599", "text": "DROSHA-related neurodevelopmental disorder" }, { - "baseId": "792600", + "upstreamId": "792600", "text": "ADGRV1-related myoclonic epilepsy" }, { - "baseId": "792603", + "upstreamId": "792603", "text": "KMT2C-related condition" }, { - "baseId": "792604", + "upstreamId": "792604", "text": "EIF2AK1-related condition" }, { - "baseId": "792604", + "upstreamId": "792604", "text": "Leukoencephalopathy, motor delay, spasticity, and dysarthria syndrome" }, { - "baseId": "792610", + "upstreamId": "792610", "text": "CDH2-related condition" }, { - "baseId": "792610|794093|794094|794095|794096|794097|794098|794099|794100", + "upstreamId": "792610|794093|794094|794095|794096|794097|794098|794099|794100", "text": "Axon pathfinding, cardiac, ocular and genital defects" }, { - "baseId": "792610|794093|794094|794098|794099|918173|918174", + "upstreamId": "792610|794093|794094|794098|794099|918173|918174", "text": "Agenesis of corpus callosum, cardiac, ocular, and genital syndrome" }, { - "baseId": "792610|794093|794094|794095|794099|794100", + "upstreamId": "792610|794093|794094|794095|794099|794100", "text": "Syndromic neurodevelopmental disorder" }, { - "baseId": "792653", + "upstreamId": "792653", "text": "Aneurysm, intracranial berry, 12" }, { - "baseId": "792662|792663|792664|792665|972750", + "upstreamId": "792662|792663|792664|792665|972750", "text": "Deafness, autosomal dominant 78" }, { - "baseId": "792692", + "upstreamId": "792692", "text": "Death in childhood" }, { - "baseId": "792704|792705|792706|792707|792708|792709|792710", + "upstreamId": "792704|792705|792706|792707|792708|792709|792710", "text": "Neurodevelopmental disorder with microcephaly, cortical malformations, and spasticity" }, { - "baseId": "792733", + "upstreamId": "792733", "text": "visual disturbance" }, { - "baseId": "792811", + "upstreamId": "792811", "text": "Abnormality of the liver" }, { - "baseId": "794110", + "upstreamId": "794110", "text": "Prolonged neonatal jaundice" }, { - "baseId": "794114|794115|794116|794117|794118", + "upstreamId": "794114|794115|794116|794117|794118", "text": "Autosomal recessive keratitis-ichthyosis-deafness syndrome" }, { - "baseId": "794151|794152|794153|858300|963341", + "upstreamId": "794151|794152|794153|858300|963341", "text": "SPERMATOGENIC FAILURE 48" }, { - "baseId": "794167|794168|794169", + "upstreamId": "794167|794168|794169", "text": "Acontractile detrusor" }, { - "baseId": "794201", + "upstreamId": "794201", "text": "Chromosome 15q26-qter deletion syndrome" }, { - "baseId": "794204", + "upstreamId": "794204", "text": "Immunodeficiency with T and B cell lymphopenia" }, { - "baseId": "794265|794266|794267|794268", + "upstreamId": "794265|794266|794267|794268", "text": "Progeroid mandibuloacral dysplasia" }, { - "baseId": "794265|794266|794267|794268|815876", + "upstreamId": "794265|794266|794267|794268|815876", "text": "MANDIBULOACRAL DYSPLASIA PROGEROID SYNDROME" }, { - "baseId": "794292|794293|794294|794295|794296|794297", + "upstreamId": "794292|794293|794294|794295|794296|794297", "text": "Spermatogenic failure 42" }, { - "baseId": "794316", + "upstreamId": "794316", "text": "Developmental and epileptic encephalopathy, 83" }, { - "baseId": "794317|794318|794319|794320|794321|970981|983847", + "upstreamId": "794317|794318|794319|794320|794321|970981|983847", "text": "Intellectual developmental disorder with hypotonia and behavioral abnormalities" }, { - "baseId": "794322|794323|794324|794325|794326|794327|794328", + "upstreamId": "794322|794323|794324|794325|794326|794327|794328", "text": "Spermatogenic failure 43" }, { - "baseId": "794329", + "upstreamId": "794329", "text": "Normal pressure hydrocephalus" }, { - "baseId": "794347", + "upstreamId": "794347", "text": "Refractory epilepsy with Lennox Gastaut syndrome" }, { - "baseId": "794350", + "upstreamId": "794350", "text": "Non-lesional parietal lobe epilepsy" }, { - "baseId": "794353", + "upstreamId": "794353", "text": "Periventricular nodular heterotopia and epilepsy" }, { - "baseId": "794668|971332|971333|971334|971335|971336", + "upstreamId": "794668|971332|971333|971334|971335|971336", "text": "Spectraplakinopathy type I" }, { - "baseId": "796238|804900|906327|906328|906329|906330|906331", + "upstreamId": "796238|804900|906327|906328|906329|906330|906331", "text": "Sandestig-stefanova syndrome" }, { - "baseId": "798695", + "upstreamId": "798695", "text": "Glomerulocystic kidney disease with hyperuricemia and isosthenuria" }, { - "baseId": "798949", + "upstreamId": "798949", "text": "Catifa syndrome" }, { - "baseId": "798950|798951", + "upstreamId": "798950|798951", "text": "Endometriosis" }, { - "baseId": "798954", + "upstreamId": "798954", "text": "Acute myeloid leukemia with multilineage dysplasia" }, { - "baseId": "798959", + "upstreamId": "798959", "text": "13q12.3 microdeletion" }, { - "baseId": "799078|799079", + "upstreamId": "799078|799079", "text": "Joubert syndrome 36" }, { - "baseId": "799091|799092", + "upstreamId": "799091|799092", "text": "Arthrogryposis multiplex congenita 4, neurogenic, with agenesis of the corpus callosum" }, { - "baseId": "799559", + "upstreamId": "799559", "text": "Mitochondrial complex III deficiency, nuclear type 3" }, { - "baseId": "800028", + "upstreamId": "800028", "text": "Acetyl-CoA: carboxylase deficiency" }, { - "baseId": "800185", + "upstreamId": "800185", "text": "Major affective disorder 7" }, { - "baseId": "800331", + "upstreamId": "800331", "text": "Discoid lupus rash" }, { - "baseId": "800332|858623|858624|858625|858626|858627", + "upstreamId": "800332|858623|858624|858625|858626|858627", "text": "Neurodevelopmental disorder with or without autistic features and/or structural brain abnormalities" }, { - "baseId": "800342|800343", + "upstreamId": "800342|800343", "text": "SPERMATOGENIC FAILURE 51" }, { - "baseId": "800545|800546|800547|800548|800549|800550|800551|800552", + "upstreamId": "800545|800546|800547|800548|800549|800550|800551|800552", "text": "cone dystrophy with supernormal rod electroretinogram" }, { - "baseId": "800595|800596|965597|965598|965599|965600|965601|965602|965603", + "upstreamId": "800595|800596|965597|965598|965599|965600|965601|965602|965603", "text": "Retinitis pigmentosa 90" }, { - "baseId": "800670", + "upstreamId": "800670", "text": "15q22.2 deletion syndrome" }, { - "baseId": "800692", + "upstreamId": "800692", "text": "Refsum syndrome" }, { - "baseId": "800757", + "upstreamId": "800757", "text": "Lymphatic malformation 8" }, { - "baseId": "800758|800759", + "upstreamId": "800758|800759", "text": "Deafness, autosomal dominant 7" }, { - "baseId": "800761", + "upstreamId": "800761", "text": "Sirenomelia" }, { - "baseId": "800787", + "upstreamId": "800787", "text": "Microcephaly-complex motor and sensory axonal neuropathy syndrome" }, { - "baseId": "800788", + "upstreamId": "800788", "text": "Polyarticular arthritis" }, { - "baseId": "800819|800820|800821", + "upstreamId": "800819|800820|800821", "text": "Spastic paraplegia 82, autosomal recessive" }, { - "baseId": "800822|800823", + "upstreamId": "800822|800823", "text": "Spastic paraplegia 81, autosomal recessive" }, { - "baseId": "800862|800863|800864|800865|800866", + "upstreamId": "800862|800863|800864|800865|800866", "text": "Congenital heart defects, multiple types, 7" }, { - "baseId": "800899|962163", + "upstreamId": "800899|962163", "text": "Deafness, autosomal dominant 75" }, { - "baseId": "800927|800929", + "upstreamId": "800927|800929", "text": "Long QT syndrome 16" }, { - "baseId": "800928", + "upstreamId": "800928", "text": "VENTRICULAR TACHYCARDIA, CATECHOLAMINERGIC POLYMORPHIC, 6" }, { - "baseId": "800930|800931|800932|800933|800934", + "upstreamId": "800930|800931|800932|800933|800934", "text": "Coffin-Siris syndrome 11" }, { - "baseId": "800939", + "upstreamId": "800939", "text": "Dizygotic twins" }, { - "baseId": "800950", + "upstreamId": "800950", "text": "Preimplantation embryonic lethality" }, { - "baseId": "800982", + "upstreamId": "800982", "text": "Reticulocytopenia" }, { - "baseId": "800989", + "upstreamId": "800989", "text": "Hypsarrhythmia" }, { - "baseId": "800989", + "upstreamId": "800989", "text": "Peripheral edema" }, { - "baseId": "801106", + "upstreamId": "801106", "text": "Minimal change glomerulonephritis" }, { - "baseId": "801116", + "upstreamId": "801116", "text": "Abnormal dense granule content" }, { - "baseId": "801116", + "upstreamId": "801116", "text": "Abnormal dense granules" }, { - "baseId": "801122", + "upstreamId": "801122", "text": "Abnormality of the heme biosynthetic pathway" }, { - "baseId": "801164", + "upstreamId": "801164", "text": "Toe walking" }, { - "baseId": "801186", + "upstreamId": "801186", "text": "Progressive psychomotor deterioration" }, { - "baseId": "801195|801506", + "upstreamId": "801195|801506", "text": "Mesangiocapillary glomerulonephritis" }, { - "baseId": "801221", + "upstreamId": "801221", "text": "Central core regions in muscle fibers" }, { - "baseId": "801221", + "upstreamId": "801221", "text": "Abnormality of the respiratory system" }, { - "baseId": "801224", + "upstreamId": "801224", "text": "Abnormal synaptic transmission" }, { - "baseId": "801228", + "upstreamId": "801228", "text": "Basal ganglia calcification" }, { - "baseId": "801230", + "upstreamId": "801230", "text": "SPTA1-related disorders" }, { - "baseId": "801247", + "upstreamId": "801247", "text": "Pure red cell aplasia" }, { - "baseId": "801254", + "upstreamId": "801254", "text": "Paris-Trousseau thrombocytopenia" }, { - "baseId": "801392|801393|801442", + "upstreamId": "801392|801393|801442", "text": "Choroidal dystrophy central areolar" }, { - "baseId": "801504|806289", + "upstreamId": "801504|806289", "text": "global hypotonia" }, { - "baseId": "801521", + "upstreamId": "801521", "text": "Deletion syndrome" }, { - "baseId": "801523|801524|801525|801526", + "upstreamId": "801523|801524|801525|801526", "text": "Ciliary dyskinesia, primary, 44" }, { - "baseId": "801542|801543", + "upstreamId": "801542|801543", "text": "MITOCHONDRIAL COMPLEX I DEFICIENCY, NUCLEAR TYPE 36" }, { - "baseId": "802069", + "upstreamId": "802069", "text": "Dominant progressive sensorineural hearing loss" }, { - "baseId": "802075", + "upstreamId": "802075", "text": "Dominant congenital non-syndromic sensorineural hearing loss" }, { - "baseId": "802081", + "upstreamId": "802081", "text": "Dominant congenital profound hearing loss" }, { - "baseId": "802094|966697|966704", + "upstreamId": "802094|966697|966704", "text": "Renal agenesis" }, { - "baseId": "804744", + "upstreamId": "804744", "text": "Demyelinating peripheral neuropathy" }, { - "baseId": "804835|804836|804837|804838|804839|804840|804841|804842|804843|970491", + "upstreamId": "804835|804836|804837|804838|804839|804840|804841|804842|804843|970491", "text": "Beck-Fahrner syndrome" }, { - "baseId": "804835|804836|804837|804838|804839|804840|804841|804842|804843|967106", + "upstreamId": "804835|804836|804837|804838|804839|804840|804841|804842|804843|967106", "text": "TET3 deficiency" }, { - "baseId": "804896|804897|804898|804899", + "upstreamId": "804896|804897|804898|804899", "text": "Ciliary dyskinesia, primary, 45" }, { - "baseId": "804905|804906", + "upstreamId": "804905|804906", "text": "Triokinase and FMN cyclase deficiency syndrome" }, { - "baseId": "804905|804906", + "upstreamId": "804905|804906", "text": "Inborn errors of metabolism" }, { - "baseId": "804905|804906", + "upstreamId": "804905|804906", "text": "TKFC deficiency" }, { - "baseId": "805100", + "upstreamId": "805100", "text": "Bilateral cleft lip" }, { - "baseId": "805101|805102", + "upstreamId": "805101|805102", "text": "Tricuspid atresia (disease)" }, { - "baseId": "805178", + "upstreamId": "805178", "text": "ASH1L-Related Disorder" }, { - "baseId": "805403", + "upstreamId": "805403", "text": "DSPP-Related Disorder" }, { - "baseId": "806433", + "upstreamId": "806433", "text": "Embryonic calcium dysregulation" }, { - "baseId": "806433", + "upstreamId": "806433", "text": "Metaphyseal fractures" }, { - "baseId": "806433", + "upstreamId": "806433", "text": "Slender long bone" }, { - "baseId": "806442", + "upstreamId": "806442", "text": "Chromosome 3pter-p25 deletion syndrome" }, { - "baseId": "815776", + "upstreamId": "815776", "text": "T-CELL LYMPHOPENIA, INFANTILE, WITHOUT NAIL DYSTROPHY, AUTOSOMAL DOMINANT" }, { - "baseId": "815778|815779", + "upstreamId": "815778|815779", "text": "T-lymphocyte deficiency" }, { - "baseId": "815785", + "upstreamId": "815785", "text": "Respiratory papillomatosis, juvenile recurrent, congenital" }, { - "baseId": "815790|815791|815792|815793|815794|815795|815796|815797|815798|815799|815800|815801|815802|815803|815804|815805|815806|815807|815808|815809", + "upstreamId": "815790|815791|815792|815793|815794|815795|815796|815797|815798|815799|815800|815801|815802|815803|815804|815805|815806|815807|815808|815809", "text": "Hereditary angioedema with normal C1Inh" }, { - "baseId": "815857|815858|815859|815860|815861", + "upstreamId": "815857|815858|815859|815860|815861", "text": "Intellectual developmental disorder, x-linked, syndromic, Hackmann-Di Donato type" }, { - "baseId": "815973", + "upstreamId": "815973", "text": "Arnold-Chiari malformation" }, { - "baseId": "816293", + "upstreamId": "816293", "text": "Mitochondrial DNA depletion syndrome 18" }, { - "baseId": "816295|816296|816297|962168|964855|965225|969608|977262", + "upstreamId": "816295|816296|816297|962168|964855|965225|969608|977262", "text": "Genitourinary and/or brain malformation syndrome" }, { - "baseId": "816391", + "upstreamId": "816391", "text": "Myopathy, congenital proximal, with minicore lesions" }, { - "baseId": "816392", + "upstreamId": "816392", "text": "Myopathy, congenital, with respiratory insufficiency and bone fractures" }, { - "baseId": "816393|816394|816395", + "upstreamId": "816393|816394|816395", "text": "Intellectual developmental disorder with poor growth and with or without seizures or ataxia" }, { - "baseId": "816431", + "upstreamId": "816431", "text": "Tyrosinemia" }, { - "baseId": "816534", + "upstreamId": "816534", "text": "TLK2-related neurodevelopmental disorder" }, { - "baseId": "818123|818124|818125|818126", + "upstreamId": "818123|818124|818125|818126", "text": "Myopia 27" }, { - "baseId": "818127|818128|818129|818130|818131|818132|818133|818134", + "upstreamId": "818127|818128|818129|818130|818131|818132|818133|818134", "text": "Basal ganglia calcification, idiopathic, 8, autosomal recessive" }, { - "baseId": "818575|969300", + "upstreamId": "818575|969300", "text": "5q35 microduplication syndrome" }, { - "baseId": "818586|818587|818588|818589|818590|818591", + "upstreamId": "818586|818587|818588|818589|818590|818591", "text": "Neuromyopathy" }, { - "baseId": "818634", + "upstreamId": "818634", "text": "Hypotrichosis 5" }, { - "baseId": "818712", + "upstreamId": "818712", "text": "Chromosome 4q21 deletion syndrome" }, { - "baseId": "818727|818728", + "upstreamId": "818727|818728", "text": "Neurodevelopmental disorder with microcephaly and dysmorphic facies" }, { - "baseId": "818729|818730|818731|818732", + "upstreamId": "818729|818730|818731|818732", "text": "Neurodevelopmental disorder with relative macrocephaly and with or without cardiac or endocrine anomalies" }, { - "baseId": "818730", + "upstreamId": "818730", "text": "SPOP-related condition" }, { - "baseId": "818742", + "upstreamId": "818742", "text": "Profound hearing impairment" }, { - "baseId": "818765|818766", + "upstreamId": "818765|818766", "text": "Isolated hand syndactyly" }, { - "baseId": "822314", + "upstreamId": "822314", "text": "Mitochondrial complex 4 deficiency, nuclear type 16" }, { - "baseId": "822320|822321|822322", + "upstreamId": "822320|822321|822322", "text": "Hypogonadotropic hypogonadism 25 with anosmia" }, { - "baseId": "822340|822341|822342|822343|919645|919646|920360|962177|964874", + "upstreamId": "822340|822341|822342|822343|919645|919646|920360|962177|964874", "text": "Epilepsy, early-onset, with or without developmental delay" }, { - "baseId": "822665|858242|858244", + "upstreamId": "822665|858242|858244", "text": "Al-Gazali syndrome" }, { - "baseId": "836396", + "upstreamId": "836396", "text": "PTCH1-related disorders" }, { - "baseId": "850071|959307|969739", + "upstreamId": "850071|959307|969739", "text": "VEXAS" }, { - "baseId": "850071|959307|969739", + "upstreamId": "850071|959307|969739", "text": "VEXAS syndrome" }, { - "baseId": "853050", + "upstreamId": "853050", "text": "N-FORMYLPEPTIDE RECEPTOR POLYMORPHISM" }, { - "baseId": "853053|853054|853055|853056", + "upstreamId": "853053|853054|853055|853056", "text": "Vertebral, cardiac, renal, and limb defects syndrome 3" }, { - "baseId": "855097|855098|855099|855100|855101|962148|964820", + "upstreamId": "855097|855098|855099|855100|855101|962148|964820", "text": "Diets-Jongmans syndrome" }, { - "baseId": "857371", + "upstreamId": "857371", "text": "Immunodeficiency 66" }, { - "baseId": "857373|857374|857375", + "upstreamId": "857373|857374|857375", "text": "Antisynthetase syndrome" }, { - "baseId": "857396", + "upstreamId": "857396", "text": "Increased serum lactate" }, { - "baseId": "857396", + "upstreamId": "857396", "text": "Acidosis" }, { - "baseId": "857398|857399", + "upstreamId": "857398|857399", "text": "Hypervalinemia and hyperleucine-isoleucinemia" }, { - "baseId": "857400|857401|857402", + "upstreamId": "857400|857401|857402", "text": "Muscular dystrophy, limb-girdle, autosomal recessive 26" }, { - "baseId": "857611|857628", + "upstreamId": "857611|857628", "text": "Decreased activity of mitochondrial complex III" }, { - "baseId": "857626", + "upstreamId": "857626", "text": "neonatal lactic acidosis" }, { - "baseId": "857631", + "upstreamId": "857631", "text": "Eosinophilia" }, { - "baseId": "857633", + "upstreamId": "857633", "text": "Bone marrow failure syndrome 6" }, { - "baseId": "857634|857635|857636|857637|857638", + "upstreamId": "857634|857635|857636|857637|857638", "text": "Testicular regression syndrome" }, { - "baseId": "857996|857997", + "upstreamId": "857996|857997", "text": "Anauxetic dysplasia 3" }, { - "baseId": "858218|858219", + "upstreamId": "858218|858219", "text": "Combined oxidative phosphorylation deficiency 43" }, { - "baseId": "858248", + "upstreamId": "858248", "text": "Right ventricular dilatation" }, { - "baseId": "858248", + "upstreamId": "858248", "text": "Left ventricular failure" }, { - "baseId": "858288", + "upstreamId": "858288", "text": "Cole-Carpenter syndrome" }, { - "baseId": "858291", + "upstreamId": "858291", "text": "Bruck syndrome" }, { - "baseId": "858297|905812", + "upstreamId": "858297|905812", "text": "Abnormal spermatogenesis" }, { - "baseId": "858301|858302|858303", + "upstreamId": "858301|858302|858303", "text": "Chronic obstructive pulmonary disease, biomass related" }, { - "baseId": "858390|858391|858392|858393", + "upstreamId": "858390|858391|858392|858393", "text": "Autoinflammation with episodic fever and lymphadenopathy" }, { - "baseId": "858513", + "upstreamId": "858513", "text": "Bilateral multifocal epileptiform discharges" }, { - "baseId": "858548", + "upstreamId": "858548", "text": "PPP1R21-related neurodevelopmental disorder" }, { - "baseId": "858553", + "upstreamId": "858553", "text": "PTPN23-related neurodevelopmental disorder" }, { - "baseId": "858555", + "upstreamId": "858555", "text": "GRIK2-related neurodevelopmental disorder" }, { - "baseId": "858581", + "upstreamId": "858581", "text": "PIGG-related neurodevelopmental disorder" }, { - "baseId": "858585", + "upstreamId": "858585", "text": "HUWE1-related neurodevelopmental disorder" }, { - "baseId": "858617|858618|858619|858620|858621|971156", + "upstreamId": "858617|858618|858619|858620|858621|971156", "text": "Neurodevelopmental disorder with hypotonia, microcephaly, and seizures" }, { - "baseId": "858634", + "upstreamId": "858634", "text": "neurological and psychiatric features" }, { - "baseId": "858645|858646|858647|858648|858649|980550", + "upstreamId": "858645|858646|858647|858648|858649|980550", "text": "Skeletal dysplasia, mild, with joint laxity and advanced bone age" }, { - "baseId": "858664|858665|858666", + "upstreamId": "858664|858665|858666", "text": "Neurodegeneration, childhood-onset, with ataxia, tremor, optic atrophy, and cognitive decline" }, { - "baseId": "858678|858679|858685|858686", + "upstreamId": "858678|858679|858685|858686", "text": "Sex reversal" }, { - "baseId": "858700|858703|858709|858710|858713", + "upstreamId": "858700|858703|858709|858710|858713", "text": "Early-onset dementia of unclear type" }, { - "baseId": "858720", + "upstreamId": "858720", "text": "Abnormal peripheral nervous system morphology" }, { - "baseId": "858734", + "upstreamId": "858734", "text": "Increased muscle fatiguability" }, { - "baseId": "858734", + "upstreamId": "858734", "text": "Congenital ptosis" }, { - "baseId": "858734", + "upstreamId": "858734", "text": "Fatigable weakness" }, { - "baseId": "858736|858737", + "upstreamId": "858736|858737", "text": "MSTO1-related disorder" }, { - "baseId": "858739", + "upstreamId": "858739", "text": "TOMM70-related neurodevelopmental disorder" }, { - "baseId": "858742|858751", + "upstreamId": "858742|858751", "text": "FAM177A1-related disorder" }, { - "baseId": "858746", + "upstreamId": "858746", "text": "CDKL5-related disorder" }, { - "baseId": "858747", + "upstreamId": "858747", "text": "HNRNPA1-related multisystem proteinopathy" }, { - "baseId": "858765|858766", + "upstreamId": "858765|858766", "text": "Severe muscular hypotonia" }, { - "baseId": "858768|858769", + "upstreamId": "858768|858769", "text": "Focal clonic seizures" }, { - "baseId": "858793|983721", + "upstreamId": "858793|983721", "text": "Hermansky-Pudlak syndrome 11" }, { - "baseId": "858794|858795", + "upstreamId": "858794|858795", "text": "Hereditary late onset Parkinson disease" }, { - "baseId": "859391", + "upstreamId": "859391", "text": "Normochromic microcytic anemia" }, { - "baseId": "860991", + "upstreamId": "860991", "text": "21q22.11q22.12 microdeletion syndrome" }, { - "baseId": "861030|861031|861032|861033|861034", + "upstreamId": "861030|861031|861032|861033|861034", "text": "Lissencephaly 10" }, { - "baseId": "861030|861031|861032|861033|861034|967107|967108|967109|967110", + "upstreamId": "861030|861031|861032|861033|861034|967107|967108|967109|967110", "text": "Posterior Predominant Lissencephaly" }, { - "baseId": "861063|861064", + "upstreamId": "861063|861064", "text": "Deficiency of ADA2" }, { - "baseId": "861067|861068|861069", + "upstreamId": "861067|861068|861069", "text": "Epilepsy, progressive myoclonic, 11" }, { - "baseId": "861071|861072|861073|861074|861075", + "upstreamId": "861071|861072|861073|861074|861075", "text": "Armfield X-linked mental retardation syndrome" }, { - "baseId": "861119|861120|861121", + "upstreamId": "861119|861120|861121", "text": "Autism, susceptibility to, 20" }, { - "baseId": "861150|861151|861152|861153|861154", + "upstreamId": "861150|861151|861152|861153|861154", "text": "Galactosemia 4" }, { - "baseId": "861157|861158|861159|861160|861161|861162", + "upstreamId": "861157|861158|861159|861160|861161|861162", "text": "Seizures, early-onset, with neurodegeneration and brain calcifications" }, { - "baseId": "861247|861248|861249|861250|861251|861252", + "upstreamId": "861247|861248|861249|861250|861251|861252", "text": "Neurodevelopmental disorder with hypotonia and cerebellar atrophy, with or without seizures" }, { - "baseId": "861328", + "upstreamId": "861328", "text": "Amyotrophic lateral sclerosis-parkinsonism-dementia complex" }, { - "baseId": "861426", + "upstreamId": "861426", "text": "Madras motor neuron disease" }, { - "baseId": "861611|961496|961497", + "upstreamId": "861611|961496|961497", "text": "ASH1L-related neurodevelopmental disorders" }, { - "baseId": "861619", + "upstreamId": "861619", "text": "CTNNB1-related syndromic intellectual disability" }, { - "baseId": "861620|977198", + "upstreamId": "861620|977198", "text": "ITPR1-related syndromic and non-syndromic hereditary ataxias" }, { - "baseId": "861623", + "upstreamId": "861623", "text": "FBXW11-related neurodevelopmental, brain, eye, and digit anomalies" }, { - "baseId": "861624", + "upstreamId": "861624", "text": "MEF2C-related complex neurodevelopmental disorder" }, { - "baseId": "861626", + "upstreamId": "861626", "text": "SOX4-related neurodevelopmental disorder" }, { - "baseId": "861627|977226|977227", + "upstreamId": "861627|977226|977227", "text": "KMT2C-related disorders" }, { - "baseId": "861630|861631", + "upstreamId": "861630|861631", "text": "RP1-related retinal dystrophy" }, { - "baseId": "861633", + "upstreamId": "861633", "text": "VCP-related multisystem proteinopathy" }, { - "baseId": "861634", + "upstreamId": "861634", "text": "CAMK2G-related syndromic intellectual disability" }, { - "baseId": "861635|977244", + "upstreamId": "861635|977244", "text": "GRIA4-related neurodevelopmental disorder" }, { - "baseId": "861639|961524", + "upstreamId": "861639|961524", "text": "MED13L-related neurodevelopmental disorder" }, { - "baseId": "861644", + "upstreamId": "861644", "text": "DYNC1H1-related neuronopathy" }, { - "baseId": "861647|961537", + "upstreamId": "861647|961537", "text": "USP7-related neurodevelopmental disorder" }, { - "baseId": "861648", + "upstreamId": "861648", "text": "STAT5B-related growth hormone insensitivity syndrome" }, { - "baseId": "861649", + "upstreamId": "861649", "text": "MED13-related neurodevelopmental disorder" }, { - "baseId": "861657|861658", + "upstreamId": "861657|861658", "text": "SPTBN4-related neurodevelopmental disorder" }, { - "baseId": "861676|861677|861678|861679|861680", + "upstreamId": "861676|861677|861678|861679|861680", "text": "Congenital disorder of glycosylation, type iit" }, { - "baseId": "865227|865228|865229|865230|865231", + "upstreamId": "865227|865228|865229|865230|865231", "text": "Microcephaly, developmental delay, and brittle hair syndrome" }, { - "baseId": "868122", + "upstreamId": "868122", "text": "HBD-Related Disorders" }, { - "baseId": "896246|961559", + "upstreamId": "896246|961559", "text": "Pseudo-torch syndrome 3" }, { - "baseId": "900539", + "upstreamId": "900539", "text": "COL6A5 POLYMORPHISM" }, { - "baseId": "903683|903684|903685|903686|903687", + "upstreamId": "903683|903684|903685|903686|903687", "text": "Syndrome with microcephaly as major feature" }, { - "baseId": "904073", + "upstreamId": "904073", "text": "Retinitis pigmentosa 6" }, { - "baseId": "904231|904232|904235|904236", + "upstreamId": "904231|904232|904235|904236", "text": "Premenstrual dysphoric disorder" }, { - "baseId": "904258|904262", + "upstreamId": "904258|904262", "text": "46,xx sex reversal 5" }, { - "baseId": "904752", + "upstreamId": "904752", "text": "VARIANT OF UNKNOWN SIGNIFICANCE" }, { - "baseId": "904965|905007", + "upstreamId": "904965|905007", "text": "Short telomere length" }, { - "baseId": "904965|905004|905007|961210|961211|961212|961213|961214|961215|961216|961217", + "upstreamId": "904965|905004|905007|961210|961211|961212|961213|961214|961215|961216|961217", "text": "Interstitial pulmonary abnormality" }, { - "baseId": "905007", + "upstreamId": "905007", "text": "Premature graying of hair" }, { - "baseId": "905007", + "upstreamId": "905007", "text": "Macrocytic anemia" }, { - "baseId": "905018|905021", + "upstreamId": "905018|905021", "text": "ARTHROGRYPOSIS, DISTAL, TYPE 1C" }, { - "baseId": "905022|905023|905024|905025|905026|905027|905028", + "upstreamId": "905022|905023|905024|905025|905026|905027|905028", "text": "sellar metastasis from primary bronchial carcinoid tumor" }, { - "baseId": "905814|905815|905816|905817|905818|905819", + "upstreamId": "905814|905815|905816|905817|905818|905819", "text": "WBP11 spliceosomopathy" }, { - "baseId": "905821", + "upstreamId": "905821", "text": "Klippel-Tr\u00c3\u00a9naunay syndrome" }, { - "baseId": "905823", + "upstreamId": "905823", "text": "Subcutaneous venous lacunae" }, { - "baseId": "905823", + "upstreamId": "905823", "text": "Cerebral cavernous angioma" }, { - "baseId": "905824|969298|969299", + "upstreamId": "905824|969298|969299", "text": "Chromosome 9p deletion syndrome" }, { - "baseId": "905852|905853|905854|905856", + "upstreamId": "905852|905853|905854|905856", "text": "Noonan syndrome 13" }, { - "baseId": "905857", + "upstreamId": "905857", "text": "May-Hegglin Disorder" }, { - "baseId": "906167", + "upstreamId": "906167", "text": "Hyperlipoproteinemia" }, { - "baseId": "906173", + "upstreamId": "906173", "text": "Sex Hormone-Binding Globulin Deficiency" }, { - "baseId": "906215|906216|906217|976526", + "upstreamId": "906215|906216|906217|976526", "text": "Neurodevelopmental, jaw, eye, and digital syndrome" }, { - "baseId": "906219", + "upstreamId": "906219", "text": "Fanconi renotubular syndrome 5" }, { - "baseId": "906274", + "upstreamId": "906274", "text": "Caroli disease" }, { - "baseId": "915004", + "upstreamId": "915004", "text": "Developmental and epileptic encephalopathy, 86" }, { - "baseId": "916784|916785|916786|916787|916788", + "upstreamId": "916784|916785|916786|916787|916788", "text": "INTELLECTUAL DEVELOPMENTAL DISORDER WITH AUTISTIC FEATURES AND LANGUAGE DELAY WITHOUT SEIZURES" }, { - "baseId": "916789", + "upstreamId": "916789", "text": "INTELLECTUAL DEVELOPMENTAL DISORDER WITH AUTISTIC FEATURES AND LANGUAGE DELAY WITH SEIZURES" }, { - "baseId": "917577", + "upstreamId": "917577", "text": "Deafness, autosomal dominant 77" }, { - "baseId": "917578|917579", + "upstreamId": "917578|917579", "text": "Sorbitol dehydrogenase deficiency with peripheral neuropathy" }, { - "baseId": "917581", + "upstreamId": "917581", "text": "9p partial trisomy syndrome" }, { - "baseId": "917759", + "upstreamId": "917759", "text": "Joint dislocation" }, { - "baseId": "917803", + "upstreamId": "917803", "text": "Primary Immune Deficiency" }, { - "baseId": "917805", + "upstreamId": "917805", "text": "Sepsis, susceptibility to" }, { - "baseId": "917816|917817", + "upstreamId": "917816|917817", "text": "Arrhythmogenic right ventricular dysplasia, familial, 14" }, { - "baseId": "918166|918167|962120|962150|964098|964099|964100|964101", + "upstreamId": "918166|918167|962120|962150|964098|964099|964100|964101", "text": "Developmental and epileptic encephalopathy, 87" }, { - "baseId": "918166", + "upstreamId": "918166", "text": "CDK19-related condition" }, { - "baseId": "918182|918183|918502", + "upstreamId": "918182|918183|918502", "text": "OCULOCUTANEOUS ALBINISM, TYPE VIII" }, { - "baseId": "918184", + "upstreamId": "918184", "text": "Left ventricular diastolic dysfunction" }, { - "baseId": "918257", + "upstreamId": "918257", "text": "Autosomal recessive infantile hypercalcemia" }, { - "baseId": "918408", + "upstreamId": "918408", "text": "Childhood-onset autosomal recessive myopathy with external ophthalmoplegia" }, { - "baseId": "918499", + "upstreamId": "918499", "text": "vanishing white matter disease" }, { - "baseId": "918571", + "upstreamId": "918571", "text": "Headache" }, { - "baseId": "918571", + "upstreamId": "918571", "text": "Dysphasia" }, { - "baseId": "918813", + "upstreamId": "918813", "text": "SOX2-Related Disorder" }, { - "baseId": "920333|974551|974552|974553|974554|974556|980559|980950", + "upstreamId": "920333|974551|974552|974553|974554|974556|980559|980950", "text": "INTELLECTUAL DEVELOPMENTAL DISORDER WITH SPEECH DELAY AND AXONAL PERIPHERAL NEUROPATHY" }, { - "baseId": "920547|920548|920549", + "upstreamId": "920547|920548|920549", "text": "IFAP syndrome 2" }, { - "baseId": "920547|969581", + "upstreamId": "920547|969581", "text": "Hereditary mucoepithelial dysplasia" }, { - "baseId": "920551", + "upstreamId": "920551", "text": "C6 A/B POLYMORPHISM" }, { - "baseId": "920602", + "upstreamId": "920602", "text": "22q13.3 interstitial deletion" }, { - "baseId": "920612|920613|920614", + "upstreamId": "920612|920613|920614", "text": "Treacher Collins syndrome 4" }, { - "baseId": "920615|920616", + "upstreamId": "920615|920616", "text": "Autosomal recessive chronic granulomatous disease 5" }, { - "baseId": "921239", + "upstreamId": "921239", "text": "Limb myoclonus" }, { - "baseId": "921253|921255|921256", + "upstreamId": "921253|921255|921256", "text": "Motor tics" }, { - "baseId": "921256", + "upstreamId": "921256", "text": "Bradykinesia" }, { - "baseId": "934579", + "upstreamId": "934579", "text": "ABL1-Related Disorder" }, { - "baseId": "952954", + "upstreamId": "952954", "text": "Alport syndrome type 2" }, { - "baseId": "961063", + "upstreamId": "961063", "text": "Retinitis pigmentosa 32" }, { - "baseId": "961064", + "upstreamId": "961064", "text": "Oculopharyngodistal myopathy 2" }, { - "baseId": "961125", + "upstreamId": "961125", "text": "Glycoprotein storage disease" }, { - "baseId": "961226|961229|961921|963436", + "upstreamId": "961226|961229|961921|963436", "text": "Motor axonal neuropathy" }, { - "baseId": "961260", + "upstreamId": "961260", "text": "DNMT3A-Related Disorder" }, { - "baseId": "961281", + "upstreamId": "961281", "text": "COL12A1- Related Disorder" }, { - "baseId": "961282", + "upstreamId": "961282", "text": "PLOD3-Related Disorder" }, { - "baseId": "961300", + "upstreamId": "961300", "text": "LRP4-Related Disorder" }, { - "baseId": "961302", + "upstreamId": "961302", "text": "POLR3B-Related Disorder" }, { - "baseId": "961304", + "upstreamId": "961304", "text": "DIABLO-Related Hearing Loss" }, { - "baseId": "961326", + "upstreamId": "961326", "text": "TRAF7-Related Disorder" }, { - "baseId": "961328|961329", + "upstreamId": "961328|961329", "text": "CNOT1-Related Disorder" }, { - "baseId": "961330", + "upstreamId": "961330", "text": "CTCF-Related Disorder" }, { - "baseId": "961356", + "upstreamId": "961356", "text": "MSL3-Related Disorder" }, { - "baseId": "961358", + "upstreamId": "961358", "text": "MECP2-Related Disorder" }, { - "baseId": "961368", + "upstreamId": "961368", "text": "AKT3-Related Disorder" }, { - "baseId": "961406", + "upstreamId": "961406", "text": "DMD-Related Disorder" }, { - "baseId": "961432", + "upstreamId": "961432", "text": "Reduced tendon reflexes" }, { - "baseId": "961498|961499", + "upstreamId": "961498|961499", "text": "ATP13A2-related disorders" }, { - "baseId": "961503|961504", + "upstreamId": "961503|961504", "text": "SCN3A-related neurodevelopmental sisorder" }, { - "baseId": "961509", + "upstreamId": "961509", "text": "GRIA2-related neurodevelopmental disorder" }, { - "baseId": "961511", + "upstreamId": "961511", "text": "CYFIP2-related neurodevelopmental disorders" }, { - "baseId": "961522", + "upstreamId": "961522", "text": "KMT5B-related neurodevelopmental disorder" }, { - "baseId": "961523", + "upstreamId": "961523", "text": "PAK1-related neurodevelopmental disorders" }, { - "baseId": "961538", + "upstreamId": "961538", "text": "TAOK1-related neurodevelopmental disorder" }, { - "baseId": "961539", + "upstreamId": "961539", "text": "TANC2-related neurodevelopmental disorders" }, { - "baseId": "961540", + "upstreamId": "961540", "text": "POLG2-related spectrum disorders" }, { - "baseId": "961543", + "upstreamId": "961543", "text": "ATP1A3-related neurologic disorders" }, { - "baseId": "961544|977294", + "upstreamId": "961544|977294", "text": "CIC-related neurodevelopmental disorders" }, { - "baseId": "961545", + "upstreamId": "961545", "text": "POLD1-related disorders" }, { - "baseId": "961549", + "upstreamId": "961549", "text": "FLNA-related otopalatodigital spectrum disorders" }, { - "baseId": "961551", + "upstreamId": "961551", "text": "USP9X-related neurodevelopmental disorder" }, { - "baseId": "961552", + "upstreamId": "961552", "text": "Kabuki Syndrome - KDM6A" }, { - "baseId": "961556|961557", + "upstreamId": "961556|961557", "text": "Retinitis pigmentosa 89" }, { - "baseId": "961694", + "upstreamId": "961694", "text": "typical paroxysmal kinesigenic dyskinesia" }, { - "baseId": "961805|966209|966210|966211|966212", + "upstreamId": "961805|966209|966210|966211|966212", "text": "Deeah syndrome" }, { - "baseId": "961812|961813", + "upstreamId": "961812|961813", "text": "Hyper-IgE recurrent infection syndrome 5, autosomal recessive" }, { - "baseId": "961814", + "upstreamId": "961814", "text": "Developmental and epileptic encephalopathy, 88" }, { - "baseId": "961830|961831|961832|961833|961834", + "upstreamId": "961830|961831|961832|961833|961834", "text": "Familial intrahepatic cholestasis type 2" }, { - "baseId": "961853|961854", + "upstreamId": "961853|961854", "text": "Familial intrahepatic cholestasis type 3" }, { - "baseId": "961867", + "upstreamId": "961867", "text": "Distal trisomy 11q" }, { - "baseId": "961875", + "upstreamId": "961875", "text": "Immunodeficiency type 56" }, { - "baseId": "961896", + "upstreamId": "961896", "text": "Polyarteritis nodosa" }, { - "baseId": "961899", + "upstreamId": "961899", "text": "Turner syndrome" }, { - "baseId": "961906", + "upstreamId": "961906", "text": "Aortic valve stenosis" }, { - "baseId": "961935", + "upstreamId": "961935", "text": "WDR1 deficiency" }, { - "baseId": "961995|961996|962002", + "upstreamId": "961995|961996|962002", "text": "Generalized choriocapillaris dystrophy" }, { - "baseId": "962057", + "upstreamId": "962057", "text": "TRAPP-associated developmental delay" }, { - "baseId": "962060", + "upstreamId": "962060", "text": "SCAF4-associated mental retardation" }, { - "baseId": "962070", + "upstreamId": "962070", "text": "Late onset congenital glaucoma" }, { - "baseId": "962240|962241", + "upstreamId": "962240|962241", "text": "Chronic multifocal osteomyelitis" }, { - "baseId": "962268", + "upstreamId": "962268", "text": "Combined oxidative phosphorylation deficiency 45" }, { - "baseId": "962273", + "upstreamId": "962273", "text": "Combined oxidative phosphorylation deficiency 46" }, { - "baseId": "962274|962275", + "upstreamId": "962274|962275", "text": "Combined oxidative phosphorylation deficiency 47" }, { - "baseId": "962895|962896|962897|962898|962899|962900|962901|962902", + "upstreamId": "962895|962896|962897|962898|962899|962900|962901|962902", "text": "Lazy leukocyte syndrome" }, { - "baseId": "962903|962904|962905|962906|962907", + "upstreamId": "962903|962904|962905|962906|962907", "text": "Cone-rod synaptic disorder syndrome, congenital nonprogressive" }, { - "baseId": "962973", + "upstreamId": "962973", "text": "Immunodeficiency 69" }, { - "baseId": "962977|962978|962979", + "upstreamId": "962977|962978|962979", "text": "Immunodeficiency 70" }, { - "baseId": "963316|963317|963318|963319", + "upstreamId": "963316|963317|963318|963319", "text": "Neurodegeneration, infantile-onset, biotin-responsive" }, { - "baseId": "964135", + "upstreamId": "964135", "text": "Renal neoplasm" }, { - "baseId": "964259|976826", + "upstreamId": "964259|976826", "text": "Severe hydrops fetalis" }, { - "baseId": "964658", + "upstreamId": "964658", "text": "Thrombocytosis" }, { - "baseId": "964711", + "upstreamId": "964711", "text": "SMAD2-congenital heart disease and multiple congenital anomaly disorder" }, { - "baseId": "964726|964727|964728|964729", + "upstreamId": "964726|964727|964728|964729", "text": "Li-Ghorbani-Weisz-Hubshman syndrome" }, { - "baseId": "964735", + "upstreamId": "964735", "text": "FLNC-associated cardiomyopathy" }, { - "baseId": "964792", + "upstreamId": "964792", "text": "X-\u00adlinked recessive mitochondrial myopathy" }, { - "baseId": "964792", + "upstreamId": "964792", "text": "Cognitive impairment and autistic features" }, { - "baseId": "964793", + "upstreamId": "964793", "text": "NSD2-associated disorder" }, { - "baseId": "964793", + "upstreamId": "964793", "text": "atypical Wolf-Hirschhorn syndrome" }, { - "baseId": "964794", + "upstreamId": "964794", "text": "CSDE1-associated disorder" }, { - "baseId": "964799", + "upstreamId": "964799", "text": "AGO1-associated disorder" }, { - "baseId": "964800", + "upstreamId": "964800", "text": "MANEAL-associated disorder" }, { - "baseId": "964806", + "upstreamId": "964806", "text": "AFF3-associated disorder" }, { - "baseId": "964808", + "upstreamId": "964808", "text": "ATP5G3-associated disorder" }, { - "baseId": "964826", + "upstreamId": "964826", "text": "HIST1H4C-associated disorder" }, { - "baseId": "964830", + "upstreamId": "964830", "text": "POU3F2-associated disorder" }, { - "baseId": "964835", + "upstreamId": "964835", "text": "DNAJC30-associated disorder" }, { - "baseId": "964836", + "upstreamId": "964836", "text": "ERI1-associated disorder" }, { - "baseId": "964849", + "upstreamId": "964849", "text": "SETD1B-associated disorder" }, { - "baseId": "964864|964865|964866|964867|964868|964869|964870", + "upstreamId": "964864|964865|964866|964867|964868|964869|964870", "text": "SPATA5L1-associated disorder" }, { - "baseId": "964894", + "upstreamId": "964894", "text": "VPS16-associated disorder" }, { - "baseId": "964981|964982|964983|964984", + "upstreamId": "964981|964982|964983|964984", "text": "Immunodeficiency 72 with autoinflammation" }, { - "baseId": "964987|984270|984271", + "upstreamId": "964987|984270|984271", "text": "Syndromic congenital hemolytic and dyserythropoietic anemia" }, { - "baseId": "965271|980757", + "upstreamId": "965271|980757", "text": "Skeletal muscle atrophy" }, { - "baseId": "965271", + "upstreamId": "965271", "text": "skeletal contractures" }, { - "baseId": "965276", + "upstreamId": "965276", "text": "Metopic ridging-ptosis-facial dysmorphism syndrome" }, { - "baseId": "965340|965342|965344", + "upstreamId": "965340|965342|965344", "text": "Autoimmune thrombocytopenia" }, { - "baseId": "965340|965344", + "upstreamId": "965340|965344", "text": "Autoimmune hemolytic anemia" }, { - "baseId": "965353", + "upstreamId": "965353", "text": "Immunodeficiency 73c with defective neutrophil chemotaxis and hypogammaglobulinemia" }, { - "baseId": "965363|965364", + "upstreamId": "965363|965364", "text": "Immunodeficiency 74, covid19-related, x-linked" }, { - "baseId": "965405", + "upstreamId": "965405", "text": "Adult Fanconi syndrome" }, { - "baseId": "965406|965407|965408", + "upstreamId": "965406|965407|965408", "text": "Autosomal dominant lamellar ichthyosis" }, { - "baseId": "965430", + "upstreamId": "965430", "text": "Very long chain fatty acid accumulation" }, { - "baseId": "965432", + "upstreamId": "965432", "text": "Intellectual developmental disorder with autistic features and language delay, with or without seizures" }, { - "baseId": "965446", + "upstreamId": "965446", "text": "Abnormal CNS myelination" }, { - "baseId": "965604", + "upstreamId": "965604", "text": "Hemophagocytic lymphohistiocytosis, familial, 6" }, { - "baseId": "965607|965608|965609|965610|965611|965643|965644|971503", + "upstreamId": "965607|965608|965609|965610|965611|965643|965644|971503", "text": "Intellectual developmental disorder with seizures and language delay" }, { - "baseId": "965618", + "upstreamId": "965618", "text": "Sensory autonomic neuropathy with intellectual disability" }, { - "baseId": "965634|965635|965636|965637", + "upstreamId": "965634|965635|965636|965637", "text": "Optic atrophy with negative electroretinograms" }, { - "baseId": "965639|965640", + "upstreamId": "965639|965640", "text": "Mitochondrial complex 1 deficiency, nuclear type 35" }, { - "baseId": "965645", + "upstreamId": "965645", "text": "Mitochondrial complex 4 deficiency, nuclear type 21" }, { - "baseId": "965646|965647|965648|965649", + "upstreamId": "965646|965647|965648|965649", "text": "Oocyte maturation defect 8" }, { - "baseId": "965772|965773", + "upstreamId": "965772|965773", "text": "Rajab interstitial lung disease with brain calcifications 2" }, { - "baseId": "965774|965775|965776|965777|965778", + "upstreamId": "965774|965775|965776|965777|965778", "text": "Oocyte maturation defect 9" }, { - "baseId": "965786", + "upstreamId": "965786", "text": "Epidermolysis Bullosa Distrophica Autosomal Recessive (RDEB)" }, { - "baseId": "965878", + "upstreamId": "965878", "text": "GNB2-related condition" }, { - "baseId": "965882", + "upstreamId": "965882", "text": "MTSS2-related neurodevelopmental disorder" }, { - "baseId": "965883", + "upstreamId": "965883", "text": "EZH1-related disorder" }, { - "baseId": "965916", + "upstreamId": "965916", "text": "ATP5PO-related disorder" }, { - "baseId": "965917", + "upstreamId": "965917", "text": "microdeletion 4p16.3p16.1" }, { - "baseId": "965918", + "upstreamId": "965918", "text": "duplication 8q12" }, { - "baseId": "965920", + "upstreamId": "965920", "text": "10q11.22q11.23 microdeletion including CHAT and SLC18A3" }, { - "baseId": "965926", + "upstreamId": "965926", "text": "Chromosome 19q13.11 deletion syndrome" }, { - "baseId": "966061", + "upstreamId": "966061", "text": "Mitochondrial complex 4 deficiency, nuclear type 20" }, { - "baseId": "966074|966104", + "upstreamId": "966074|966104", "text": "Occult maculopathy" }, { - "baseId": "966146", + "upstreamId": "966146", "text": "polysyndactyly" }, { - "baseId": "966156", + "upstreamId": "966156", "text": "Bachmann-Bupp syndrome" }, { - "baseId": "966160|966161", + "upstreamId": "966160|966161", "text": "MADD-related condition" }, { - "baseId": "966162", + "upstreamId": "966162", "text": "MPEG1-related immunodeficiency" }, { - "baseId": "966164|966165", + "upstreamId": "966164|966165", "text": "UNC45A-associated Cholestasis" }, { - "baseId": "966164|966165", + "upstreamId": "966164|966165", "text": "Impaired Hearing" }, { - "baseId": "966171", + "upstreamId": "966171", "text": "ELFN1-related condition" }, { - "baseId": "966200|966201|966202|966203", + "upstreamId": "966200|966201|966202|966203", "text": "Combined oxidative phosphorylation deficiency 48" }, { - "baseId": "966360", + "upstreamId": "966360", "text": "Intellectual developmental disorder with epilepsy, behavioral abnormalities, and coarse facies" }, { - "baseId": "966618|969329", + "upstreamId": "966618|969329", "text": "Global proximal tubulopathy" }, { - "baseId": "966618|969329", + "upstreamId": "966618|969329", "text": "Cholestatic liver disease" }, { - "baseId": "966620", + "upstreamId": "966620", "text": "Combined oxidative phosphorylation deficiency 50" }, { - "baseId": "966621", + "upstreamId": "966621", "text": "Combined oxidative phosphorylation deficiency 49" }, { - "baseId": "966697|966704", + "upstreamId": "966697|966704", "text": "Right aortic arch" }, { - "baseId": "966700", + "upstreamId": "966700", "text": "Fetal ascites" }, { - "baseId": "966701|966702|966703|966707|966708|966735", + "upstreamId": "966701|966702|966703|966707|966708|966735", "text": "Median cleft lip and palate" }, { - "baseId": "966707|966708|966712|966713", + "upstreamId": "966707|966708|966712|966713", "text": "Dysgenesis of the cerebellar vermis" }, { - "baseId": "966709", + "upstreamId": "966709", "text": "Cerebral venous angioma" }, { - "baseId": "966710", + "upstreamId": "966710", "text": "Gastrointestinal obstruction" }, { - "baseId": "966716|966717", + "upstreamId": "966716|966717", "text": "Deformed rib cage" }, { - "baseId": "966716|966717", + "upstreamId": "966716|966717", "text": "Abnormality of the lung" }, { - "baseId": "966718|966719", + "upstreamId": "966718|966719", "text": "Anencephaly" }, { - "baseId": "966883", + "upstreamId": "966883", "text": "GH-secreting pituitary adenoma" }, { - "baseId": "966904", + "upstreamId": "966904", "text": "Coenzyme q10 deficiency, primary, 9" }, { - "baseId": "967111|967112", + "upstreamId": "967111|967112", "text": "GET4 deficiency" }, { - "baseId": "967113|967114|967115|967116|967117|967118|967119|967120", + "upstreamId": "967113|967114|967115|967116|967117|967118|967119|967120", "text": "Familial prostate carcinoma" }, { - "baseId": "967133|967135", + "upstreamId": "967133|967135", "text": "Cleft lip/palate" }, { - "baseId": "967196", + "upstreamId": "967196", "text": "Colorectal cancer susceptibility 12" }, { - "baseId": "967234", + "upstreamId": "967234", "text": "Complex I deficiency" }, { - "baseId": "967285|967286|967287|967288|967289|970516|970517", + "upstreamId": "967285|967286|967287|967288|967289|970516|970517", "text": "Neurodevelopmental disorder with progressive spasticity and brain white matter abnormalities" }, { - "baseId": "967290", + "upstreamId": "967290", "text": "Spastic paraplegia 83, autosomal recessive" }, { - "baseId": "969091", + "upstreamId": "969091", "text": "constitutional indocyanine green excretory defect" }, { - "baseId": "969133", + "upstreamId": "969133", "text": "CNTNAP5-associated intellectual disability" }, { - "baseId": "969135", + "upstreamId": "969135", "text": "mircrodeletion 17q11.2q12 including TMEM98 and SUZ12" }, { - "baseId": "969254", + "upstreamId": "969254", "text": "Cornelia de Lange" }, { - "baseId": "969270", + "upstreamId": "969270", "text": "Weakness of facial musculature" }, { - "baseId": "969290", + "upstreamId": "969290", "text": "Distal 17p13.3 microdeletion syndrome" }, { - "baseId": "969296", + "upstreamId": "969296", "text": "2q24 microdeletion syndrome" }, { - "baseId": "969297", + "upstreamId": "969297", "text": "Deletion 6q16 q21" }, { - "baseId": "969309|969310", + "upstreamId": "969309|969310", "text": "POC1A-related syndrome" }, { - "baseId": "969573|969574", + "upstreamId": "969573|969574", "text": "Myofibrillar myopathy 10" }, { - "baseId": "969575|969576|969577", + "upstreamId": "969575|969576|969577", "text": "Spermatogenic failure 44" }, { - "baseId": "969590", + "upstreamId": "969590", "text": "Mitochondrial complex 4 deficiency, nuclear type 19" }, { - "baseId": "969772", + "upstreamId": "969772", "text": "Cleft lip" }, { - "baseId": "969774", + "upstreamId": "969774", "text": "Cornelia de Lange-like syndrome" }, { - "baseId": "969784", + "upstreamId": "969784", "text": "Craniofacial-ulnar-renal syndrome" }, { - "baseId": "970005|970006|970007", + "upstreamId": "970005|970006|970007", "text": "Microcephalic primordial dwarfism" }, { - "baseId": "970040|970041|970042", + "upstreamId": "970040|970041|970042", "text": "Neurodevelopmental disorder with speech impairment and dysmorphic facies" }, { - "baseId": "970152|970153", + "upstreamId": "970152|970153", "text": "Combined oxidative phosphorylation deficiency 51" }, { - "baseId": "970321", + "upstreamId": "970321", "text": "VERTEBRAL HYPERSEGMENTATION AND OROFACIAL ANOMALIES" }, { - "baseId": "970341", + "upstreamId": "970341", "text": "Intellectual Disability with multiple congenital anomalies" }, { - "baseId": "970484", + "upstreamId": "970484", "text": "Vitamin D-dependent rickets, type 3" }, { - "baseId": "970520", + "upstreamId": "970520", "text": "brain structure abnormalities" }, { - "baseId": "970525", + "upstreamId": "970525", "text": "Blepharophimosis intellectual disability syndrome" }, { - "baseId": "970922", + "upstreamId": "970922", "text": "Epilepsy, idiopathic generalized, susceptibility to, 16" }, { - "baseId": "971020", + "upstreamId": "971020", "text": "Abnormality of the face" }, { - "baseId": "971106", + "upstreamId": "971106", "text": "NEURODEVELOPMENTAL DISORDER WITH MICROCEPHALY, IMPAIRED LANGUAGE, EPILEPSY, AND GAIT ABNORMALITIES" }, { - "baseId": "971107|974445|974447|974448|974450", + "upstreamId": "971107|974445|974447|974448|974450", "text": "NEURODEVELOPMENTAL DISORDER WITH MICROCEPHALY, IMPAIRED LANGUAGE, AND GAIT ABNORMALITIES" }, { - "baseId": "971187", + "upstreamId": "971187", "text": "Spastic tetraplegia" }, { - "baseId": "971289", + "upstreamId": "971289", "text": "Arachnoid cyst" }, { - "baseId": "971344", + "upstreamId": "971344", "text": "Optic atrophy-ataxia-peripheral neuropathy-global developmental delay syndrome" }, { - "baseId": "971353|971354|971355|971356|971357", + "upstreamId": "971353|971354|971355|971356|971357", "text": "Neurodevelopmental disorder with alopecia and brain abnormalities" }, { - "baseId": "971551", + "upstreamId": "971551", "text": "Susceptibility to strabismus" }, { - "baseId": "971566", + "upstreamId": "971566", "text": "Syndromic global developmental delay" }, { - "baseId": "971568", + "upstreamId": "971568", "text": "Microcornea, rod-cone dystrophy, cataract, and posterior staphyloma 1" }, { - "baseId": "971604", + "upstreamId": "971604", "text": "Leukodystrophy, hypomyelinating, 20" }, { - "baseId": "971613|971614|971615|971616", + "upstreamId": "971613|971614|971615|971616", "text": "Neurodevelopmental disorder with seizures and brain atrophy" }, { - "baseId": "971617", + "upstreamId": "971617", "text": "Neurodevelopmental disorder with microcephaly, seizures, and brain atrophy" }, { - "baseId": "972618", + "upstreamId": "972618", "text": "Primary bone dysplasia with multiple joint dislocations" }, { - "baseId": "972751|972752|972753|972754", + "upstreamId": "972751|972752|972753|972754", "text": "Delpire-McNeill syndrome" }, { - "baseId": "972756", + "upstreamId": "972756", "text": "Deafness, autosomal dominant 79" }, { - "baseId": "972817|972818|972819|972820|972821", + "upstreamId": "972817|972818|972819|972820|972821", "text": "Spermatogenic failure 45" }, { - "baseId": "972822", + "upstreamId": "972822", "text": "Deafness, autosomal recessive 116" }, { - "baseId": "973022", + "upstreamId": "973022", "text": "Congenital central hypoventilation syndrome, with or without Hirschsprung disease" }, { - "baseId": "973047", + "upstreamId": "973047", "text": "EEF1A2-related disorders" }, { - "baseId": "973088", + "upstreamId": "973088", "text": "Mitral valve prolapse 3" }, { - "baseId": "973089|973090", + "upstreamId": "973089|973090", "text": "SPERMATOGENIC FAILURE 47" }, { - "baseId": "974156|976877|976878|976879|976881|976882", + "upstreamId": "974156|976877|976878|976879|976881|976882", "text": "KAYA-BARAKAT-MASSON SYNDROME" }, { - "baseId": "974478", + "upstreamId": "974478", "text": "SLC2A1-Related Disorders" }, { - "baseId": "974528", + "upstreamId": "974528", "text": "Hemiparkinsonism-hemiatrophy syndrome" }, { - "baseId": "974888|974889", + "upstreamId": "974888|974889", "text": "TMEM53-related craniotubular dysplasia" }, { - "baseId": "975725", + "upstreamId": "975725", "text": "Autoimmune connective tissue disease and vasculitis" }, { - "baseId": "975787", + "upstreamId": "975787", "text": "SIM1-Related Disorders" }, { - "baseId": "975878", + "upstreamId": "975878", "text": "MED12-related disorder" }, { - "baseId": "975890", + "upstreamId": "975890", "text": "Complement component 4b deficiency" }, { - "baseId": "975899|975900", + "upstreamId": "975899|975900", "text": "Chondrodysplasia-pseudohermaphroditism syndrome" }, { - "baseId": "975905|975906|975907", + "upstreamId": "975905|975906|975907", "text": "NEURODEVELOPMENTAL DISORDER WITH DYSMORPHIC FACIES, SLEEP DISTURBANCE, AND BRAIN ABNORMALITIES" }, { - "baseId": "976028", + "upstreamId": "976028", "text": "RNF2-associated neurodevelopmental condition" }, { - "baseId": "976029", + "upstreamId": "976029", "text": "BAP1-associated neurodevelopmental disorder" }, { - "baseId": "976511|976512", + "upstreamId": "976511|976512", "text": "Congenital bilateral perisylvian syndrome" }, { - "baseId": "976533|976534", + "upstreamId": "976533|976534", "text": "CARDIOFACIONEURODEVELOPMENTAL SYNDROME" }, { - "baseId": "976557|976558", + "upstreamId": "976557|976558", "text": "MONOSOMY 7 MYELODYSPLASIA AND LEUKEMIA SYNDROME 2" }, { - "baseId": "976563|976564|976565|976566|976567|976568|976569", + "upstreamId": "976563|976564|976565|976566|976567|976568|976569", "text": "NEURODEVELOPMENTAL DISORDER WITH CARDIOMYOPATHY, SPASTICITY, AND BRAIN ABNORMALITIES" }, { - "baseId": "976583", + "upstreamId": "976583", "text": "Pure gonadal dysgenesis 46,XY" }, { - "baseId": "976589|976590", + "upstreamId": "976589|976590", "text": "RNH1-related condition" }, { - "baseId": "976883|976884|976885|976886|976887", + "upstreamId": "976883|976884|976885|976886|976887", "text": "DEVELOPMENTAL AND EPILEPTIC ENCEPHALOPATHY 89" }, { - "baseId": "976888|976889|976890|976891", + "upstreamId": "976888|976889|976890|976891", "text": "OSTEOGENESIS IMPERFECTA, TYPE XXI" }, { - "baseId": "977163|977164|977313|977314|977316", + "upstreamId": "977163|977164|977313|977314|977316", "text": "Skin rash" }, { - "baseId": "977163|977164|977314|977316", + "upstreamId": "977163|977164|977314|977316", "text": "Arthritis" }, { - "baseId": "977172", + "upstreamId": "977172", "text": "ZBTB18-related intellectual disability" }, { - "baseId": "977177", + "upstreamId": "977177", "text": "GLI2-related disorders" }, { - "baseId": "977181", + "upstreamId": "977181", "text": "SCN3A-related neurodevelopmental disorder" }, { - "baseId": "977182", + "upstreamId": "977182", "text": "SCN2A-related generalized epilepsy with febrile seizures plus" }, { - "baseId": "977183", + "upstreamId": "977183", "text": "HECW2-related neurodevelopmental disorder" }, { - "baseId": "977184", + "upstreamId": "977184", "text": "KIF1A-related disorders" }, { - "baseId": "977186|977187", + "upstreamId": "977186|977187", "text": "SLC5A6-related disorder" }, { - "baseId": "977197", + "upstreamId": "977197", "text": "MED12L-related neurodevelopmental disorder" }, { - "baseId": "977200", + "upstreamId": "977200", "text": "CACNA1D-related neurodevelopmental and endocrine disorders" }, { - "baseId": "977204|977205", + "upstreamId": "977204|977205", "text": "PLK4-related microcephaly and growth failure with or without ocular features" }, { - "baseId": "977218", + "upstreamId": "977218", "text": "HIVEP2-related syndromic intellectual disability" }, { - "baseId": "977219", + "upstreamId": "977219", "text": "TUBB-related tubulinopathy" }, { - "baseId": "977229|977230", + "upstreamId": "977229|977230", "text": "ACTB-related disorders" }, { - "baseId": "977231|977232", + "upstreamId": "977231|977232", "text": "TRRAP-related neurodevelopmental disorder" }, { - "baseId": "977234", + "upstreamId": "977234", "text": "CHD7-related disorders" }, { - "baseId": "977235", + "upstreamId": "977235", "text": "STXBP1-related neurodevelopmental disorder" }, { - "baseId": "977241", + "upstreamId": "977241", "text": "CNNM2-related neurodevelopmental disorder and hypomagnesemia" }, { - "baseId": "977243", + "upstreamId": "977243", "text": "WAC-related neurodevelopmental disorder" }, { - "baseId": "977251", + "upstreamId": "977251", "text": "TRPV4-associated skeletal dysplasias" }, { - "baseId": "977259", + "upstreamId": "977259", "text": "SMARCC2-related neurodevelopmental disorder" }, { - "baseId": "977264|977265", + "upstreamId": "977264|977265", "text": "NBEA-related intellectual disability" }, { - "baseId": "977270", + "upstreamId": "977270", "text": "TRAPPC6B-related neurodevelopmental disorder" }, { - "baseId": "977271", + "upstreamId": "977271", "text": "TGFB3-related connective tissue disorders" }, { - "baseId": "977273", + "upstreamId": "977273", "text": "NR2F2-related congenital heart defects" }, { - "baseId": "977284", + "upstreamId": "977284", "text": "BPTF-related neurodevelopmental disorder" }, { - "baseId": "977291", + "upstreamId": "977291", "text": "SMAD2-related disorders" }, { - "baseId": "977295", + "upstreamId": "977295", "text": "CSNK2A1-related neurodevelopmental syndrome" }, { - "baseId": "977300", + "upstreamId": "977300", "text": "PTCHD1-related autism and intellectual disability" }, { - "baseId": "977303", + "upstreamId": "977303", "text": "BCOR-related disorders" }, { - "baseId": "977304", + "upstreamId": "977304", "text": "CASK-related intellectual disability and microcephaly with pontine and cerebellar hypoplasia" }, { - "baseId": "977311", + "upstreamId": "977311", "text": "OGT-related X-linked syndromic intellectual disability" }, { - "baseId": "977312", + "upstreamId": "977312", "text": "BRWD3-related X-linked syndromic intellectual disability" }, { - "baseId": "977313", + "upstreamId": "977313", "text": "Joint swelling" }, { - "baseId": "977320|977322", + "upstreamId": "977320|977322", "text": "ENDOVES (EN1-associated dorsoventral syndrome)" }, { - "baseId": "977321", + "upstreamId": "977321", "text": "EN1 syndrome" }, { - "baseId": "977323", + "upstreamId": "977323", "text": "Congenital miosis" }, { - "baseId": "977365", + "upstreamId": "977365", "text": "FRONTOTEMPORAL DEMENTIA WITHOUT AMYOTROPHIC LATERAL SCLEROSIS 6, WITH NEUROFIBRILLARY TANGLES" }, { - "baseId": "977366|977367", + "upstreamId": "977366|977367", "text": "RITSCHER-SCHINZEL SYNDROME 3" }, { - "baseId": "977368|977369|977370|977371|977372", + "upstreamId": "977368|977369|977370|977371|977372", "text": "THROMBOCYTOPENIA 7" }, { - "baseId": "977394|977395|977396|977397", + "upstreamId": "977394|977395|977396|977397", "text": "CARDIOACROFACIAL DYSPLASIA 2" }, { - "baseId": "977398", + "upstreamId": "977398", "text": "CARDIOACROFACIAL DYSPLASIA 1" }, { - "baseId": "980127|980128|980129|980130|980131", + "upstreamId": "980127|980128|980129|980130|980131", "text": "SPERMATOGENIC FAILURE 49" }, { - "baseId": "980132", + "upstreamId": "980132", "text": "SPERMATOGENIC FAILURE 50" }, { - "baseId": "980132", + "upstreamId": "980132", "text": "PREMATURE OVARIAN FAILURE 17" }, { - "baseId": "980410|980411", + "upstreamId": "980410|980411", "text": "Rheumatic heart disease" }, { - "baseId": "980451", + "upstreamId": "980451", "text": "Coronary heart disease 1" }, { - "baseId": "980451", + "upstreamId": "980451", "text": "Age-related macular degeneration 12" }, { - "baseId": "980452", + "upstreamId": "980452", "text": "Diabetes mellitus, insulin-dependent, 22" }, { - "baseId": "980480", + "upstreamId": "980480", "text": "Systemic lupus erythematosus 6" }, { - "baseId": "980516|980517|980518|980519", + "upstreamId": "980516|980517|980518|980519", "text": "FRONTOTEMPORAL DEMENTIA AND/OR AMYOTROPHIC LATERAL SCLEROSIS 5" }, { - "baseId": "980520", + "upstreamId": "980520", "text": "AMYOTROPHIC LATERAL SCLEROSIS 26 WITH FRONTOTEMPORAL DEMENTIA" }, { - "baseId": "980521", + "upstreamId": "980521", "text": "AMYOTROPHIC LATERAL SCLEROSIS 26 WITH OR WITHOUT FRONTOTEMPORAL DEMENTIA" }, { - "baseId": "980522", + "upstreamId": "980522", "text": "FRONTOTEMPORAL DEMENTIA AND/OR AMYOTROPHIC LATERAL SCLEROSIS 8" }, { - "baseId": "980588", + "upstreamId": "980588", "text": "multilineage dysplasia" }, { - "baseId": "980590", + "upstreamId": "980590", "text": "Generalized cerebral atrophy/hypoplasia" }, { - "baseId": "980704", + "upstreamId": "980704", "text": "Trigonocephaly" }, { - "baseId": "980829|980830", + "upstreamId": "980829|980830", "text": "HEATR5B-associated Pontocerebellar hypoplasia" }, { - "baseId": "980858", + "upstreamId": "980858", "text": "Familial congenital diaphragmatic hernia" }, { - "baseId": "983490|983491|983492|983493|983494|983495", + "upstreamId": "983490|983491|983492|983493|983494|983495", "text": "LESSEL-KREIENKAMP SYNDROME" }, { - "baseId": "983542|983543", + "upstreamId": "983542|983543", "text": "NEPHROTIC SYNDROME, TYPE 22" }, { - "baseId": "983544|983545|983546|983547|983548", + "upstreamId": "983544|983545|983546|983547|983548", "text": "NEURODEVELOPMENTAL DISORDER WITH OR WITHOUT EARLY-ONSET GENERALIZED EPILEPSY" }, { - "baseId": "983683", + "upstreamId": "983683", "text": "Increased nuchal translucency" }, { - "baseId": "983745", + "upstreamId": "983745", "text": "Disorder of sex development" }, { - "baseId": "983750", + "upstreamId": "983750", "text": "DEAFNESS, AUTOSOMAL RECESSIVE 117" }, { - "baseId": "983807|983817", + "upstreamId": "983807|983817", "text": "Bilateral renal agenesis" }, { - "baseId": "983835|983836", + "upstreamId": "983835|983836", "text": "OOCYTE MATURATION DEFECT 10" }, { - "baseId": "983855", + "upstreamId": "983855", "text": "2-3 finger syndactyly" }, { - "baseId": "984036|984037|984038|984039|984040", + "upstreamId": "984036|984037|984038|984039|984040", "text": "MULTIPLE CONGENITAL ANOMALIES-NEURODEVELOPMENTAL SYNDROME, X-LINKED" }, { - "baseId": "984257|984258|984259|984260|984261|984262", + "upstreamId": "984257|984258|984259|984260|984261|984262", "text": "IMMUNODEFICIENCY 76" } ] From f00c59f9d18fba5b0520360d747905b0624155fb Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Thu, 25 Feb 2021 16:26:43 +0800 Subject: [PATCH 23/72] Made numberOfReviewsRequired a project property. --- .../curation/constants/CurationConstants.java | 2 -- .../spot/ontotools/curation/domain/Project.java | 2 ++ .../curation/domain/mapping/Mapping.java | 5 ++--- .../rest/assembler/ProjectDtoAssembler.java | 3 +++ .../controller/MappingReviewsController.java | 5 ++++- .../curation/rest/dto/ProjectCreationDto.java | 11 ++++++++++- .../ontotools/curation/rest/dto/ProjectDto.java | 9 +++++++++ .../curation/service/MappingService.java | 2 +- .../service/impl/MappingServiceImpl.java | 4 ++-- .../service/impl/ProjectServiceImpl.java | 1 + .../spot/ontotools/curation/DataImportTest.java | 2 +- .../ontotools/curation/EntityControllerTest.java | 2 +- .../spot/ontotools/curation/IntegrationTest.java | 4 ++-- .../curation/MappingCommentsControllerTest.java | 2 +- .../curation/MappingReviewsControllerTest.java | 4 ++-- .../curation/MappingsControllerTest.java | 2 +- .../spot/ontotools/curation/MatchMakingTest.java | 2 +- .../curation/OntologyTermControllerTest.java | 2 +- .../curation/ProjectsControllerTest.java | 16 +++++++++------- .../curation/SourcesControllerTest.java | 2 +- .../ontotools/curation/UsersControllerTest.java | 10 +++++----- 21 files changed, 59 insertions(+), 33 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java index 738f8b7..ab156fd 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -26,6 +26,4 @@ public class CurationConstants { public static final String ZOOMA_CONFIDENCE_HIGH = "HIGH"; - public static final int NO_REVIEWS_REQUIRED = 3; - } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Project.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Project.java index fbc2a33..01a8244 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Project.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Project.java @@ -49,5 +49,7 @@ public class Project { */ private List preferredMappingOntologies; + private Integer numberOfReviewsRequired; + private Provenance created; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java index 9fe958b..fb77f56 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java @@ -10,7 +10,6 @@ import org.springframework.data.mongodb.core.index.CompoundIndexes; import org.springframework.data.mongodb.core.index.Indexed; import org.springframework.data.mongodb.core.mapping.Document; -import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.Review; @@ -52,12 +51,12 @@ public class Mapping { @Transient private OntologyTerm ontologyTerm; - public void addReview(Review review) { + public void addReview(Review review, int noReviewsRequired) { if (reviews == null) { reviews = new ArrayList<>(); } this.reviews.add(review); - if (this.reviews.size() >= CurationConstants.NO_REVIEWS_REQUIRED) { + if (this.reviews.size() >= noReviewsRequired) { this.reviewed = true; this.status = MappingStatus.REQUIRED_REVIEWS_REACHED.name(); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java index d62c4f3..1f039b6 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java @@ -17,6 +17,7 @@ public static ProjectDto assemble(Project project) { project.getDatasources() != null ? project.getDatasources().stream().map(ProjectMappingConfigDtoAssembler::assemble).collect(Collectors.toList()) : new ArrayList<>(), project.getOntologies() != null ? project.getOntologies().stream().map(ProjectMappingConfigDtoAssembler::assemble).collect(Collectors.toList()) : new ArrayList<>(), project.getPreferredMappingOntologies(), + project.getNumberOfReviewsRequired(), ProvenanceDtoAssembler.assemble(project.getCreated())); } @@ -27,6 +28,7 @@ public static Project disassemble(ProjectDto project) { project.getDatasources() != null ? project.getDatasources().stream().map(ProjectMappingConfigDtoAssembler::disassemble).collect(Collectors.toList()) : new ArrayList<>(), project.getOntologies() != null ? project.getOntologies().stream().map(ProjectMappingConfigDtoAssembler::disassemble).collect(Collectors.toList()) : new ArrayList<>(), project.getPreferredMappingOntologies(), + project.getNumberOfReviewsRequired(), ProvenanceDtoAssembler.disassemble(project.getCreated())); } @@ -37,6 +39,7 @@ public static Project disassemble(ProjectCreationDto project, Provenance provena project.getDatasources() != null ? project.getDatasources().stream().map(ProjectMappingConfigDtoAssembler::disassemble).collect(Collectors.toList()) : new ArrayList<>(), project.getOntologies() != null ? project.getOntologies().stream().map(ProjectMappingConfigDtoAssembler::disassemble).collect(Collectors.toList()) : new ArrayList<>(), project.getPreferredMappingOntologies(), + project.getNumberOfReviewsRequired(), provenance); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingReviewsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingReviewsController.java index e689930..4d039df 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingReviewsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingReviewsController.java @@ -9,6 +9,7 @@ import org.springframework.web.bind.annotation.*; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; @@ -53,8 +54,10 @@ public ReviewDto createReview(@PathVariable String projectId, @PathVariable Stri log.info("[{}] Request to create review on mapping: {} | {}", user.getEmail(), projectId, mappingId); projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); + Project project = projectService.retrieveProject(projectId, user); Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); - Mapping mapping = mappingService.addReviewToMapping(mappingId, comment, provenance); + Mapping mapping = mappingService.addReviewToMapping(mappingId, comment, + project.getNumberOfReviewsRequired() == null ? 0 : project.getNumberOfReviewsRequired(), provenance); return ReviewDtoAssembler.assemble(mapping.getReviews().get(mapping.getReviews().size() - 1)); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDto.java index c13ca76..59a853c 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDto.java @@ -31,17 +31,22 @@ public final class ProjectCreationDto implements Serializable { @JsonProperty("preferredMappingOntologies") private final List preferredMappingOntologies; + @JsonProperty("numberOfReviewsRequired") + private final Integer numberOfReviewsRequired; + @JsonCreator public ProjectCreationDto(@JsonProperty("name") String name, @JsonProperty("description") String description, @JsonProperty("datasources") List datasources, @JsonProperty("ontologies") List ontologies, - @JsonProperty("preferredMappingOntologies") List preferredMappingOntologies) { + @JsonProperty("preferredMappingOntologies") List preferredMappingOntologies, + @JsonProperty("numberOfReviewsRequired") Integer numberOfReviewsRequired) { this.name = name; this.description = description; this.datasources = datasources; this.ontologies = ontologies; this.preferredMappingOntologies = preferredMappingOntologies; + this.numberOfReviewsRequired = numberOfReviewsRequired; } public String getName() { @@ -63,4 +68,8 @@ public List getOntologies() { public List getPreferredMappingOntologies() { return preferredMappingOntologies; } + + public Integer getNumberOfReviewsRequired() { + return numberOfReviewsRequired; + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java index edb7381..c438553 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java @@ -35,6 +35,9 @@ public final class ProjectDto implements Serializable { @JsonProperty("preferredMappingOntologies") private final List preferredMappingOntologies; + @JsonProperty("numberOfReviewsRequired") + private final Integer numberOfReviewsRequired; + @JsonProperty("created") private final ProvenanceDto created; @@ -45,6 +48,7 @@ public ProjectDto(@JsonProperty("id") String id, @JsonProperty("datasources") List datasources, @JsonProperty("ontologies") List ontologies, @JsonProperty("preferredMappingOntologies") List preferredMappingOntologies, + @JsonProperty("numberOfReviewsRequired") Integer numberOfReviewsRequired, @JsonProperty("created") ProvenanceDto created) { this.id = id; this.name = name; @@ -52,6 +56,7 @@ public ProjectDto(@JsonProperty("id") String id, this.datasources = datasources; this.ontologies = ontologies; this.preferredMappingOntologies = preferredMappingOntologies; + this.numberOfReviewsRequired = numberOfReviewsRequired; this.created = created; } @@ -79,6 +84,10 @@ public List getPreferredMappingOntologies() { return preferredMappingOntologies; } + public Integer getNumberOfReviewsRequired() { + return numberOfReviewsRequired; + } + public ProvenanceDto getCreated() { return created; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java index e809c1f..1b0e207 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java @@ -18,7 +18,7 @@ public interface MappingService { List deleteMappingExcluding(Entity entity, String ontologyTermId); - Mapping addReviewToMapping(String mappingId, String comment, Provenance provenance); + Mapping addReviewToMapping(String mappingId, String comment, int noReviewsRequired, Provenance provenance); Mapping retrieveMappingById(String mappingId); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java index b2f815c..5177d1e 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java @@ -104,7 +104,7 @@ public List deleteMappingExcluding(Entity entity, String ontologyTermId) } @Override - public Mapping addReviewToMapping(String mappingId, String comment, Provenance provenance) { + public Mapping addReviewToMapping(String mappingId, String comment, int noReviewsRequired, Provenance provenance) { log.info("Adding review to mapping: {}", mappingId); Optional mappingOp = mappingRepository.findById(mappingId); if (!mappingOp.isPresent()) { @@ -113,7 +113,7 @@ public Mapping addReviewToMapping(String mappingId, String comment, Provenance p } Mapping mapping = mappingOp.get(); mapping.setStatus(MappingStatus.REVIEW_IN_PROGRESS.name()); - mapping.addReview(new Review(comment, provenance)); + mapping.addReview(new Review(comment, provenance), noReviewsRequired); mapping = mappingRepository.save(mapping); return mapping; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java index 03afaa2..9ddb371 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java @@ -58,6 +58,7 @@ public Project updateProject(Project project, String projectId, User user) { existing.setOntologies(project.getOntologies() != null ? project.getOntologies() : new ArrayList<>()); existing.setName(project.getName()); existing.setDescription(project.getDescription()); + existing.setNumberOfReviewsRequired(project.getNumberOfReviewsRequired()); return projectRepository.save(existing); } else { log.error("User [{}] cannot change project [{}]. Required access is missing.", user.getEmail(), projectId); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/DataImportTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/DataImportTest.java index dc8d0fa..f3ced04 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/DataImportTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/DataImportTest.java @@ -40,7 +40,7 @@ public class DataImportTest extends IntegrationTest { @Override public void setup() throws Exception { super.setup(); - projectDto = super.createProject("New Project", "token1", null, null, null); + projectDto = super.createProject("New Project", "token1", null, null, null, 0); sourceDto = super.createSource(projectDto.getId()); doNothing().when(matchmakerService).runMatchmaking(eq(sourceDto.getId()), any()); } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java index 94680a4..8e44259 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java @@ -41,7 +41,7 @@ public void setup() throws Exception { super.setup(); List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); - ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo"); + ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo", 0); user1 = userService.findByEmail(user1.getEmail()); project = projectService.retrieveProject(projectDto.getId(), user1); sourceDto = super.createSource(project.getId()); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 6b08fe8..6f43355 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -120,14 +120,14 @@ public void setup() throws Exception { protected ProjectDto createProject(String name, String token, List datasources, List ontologies, - String preferredMappingOntology) throws Exception { + String preferredMappingOntology, int noReviewsRequired) throws Exception { String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS; ProjectCreationDto projectCreationDto = new ProjectCreationDto(name, "Description", datasources != null ? Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", datasources)}) : new ArrayList<>(), ontologies != null ? Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", ontologies)}) : new ArrayList<>(), - preferredMappingOntology != null ? Arrays.asList(new String[]{preferredMappingOntology}) : new ArrayList<>()); + preferredMappingOntology != null ? Arrays.asList(new String[]{preferredMappingOntology}) : new ArrayList<>(), noReviewsRequired); String response = mockMvc.perform(post(endpoint) .contentType(MediaType.APPLICATION_JSON) diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java index 9369d44..e81007c 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java @@ -49,7 +49,7 @@ public void setup() throws Exception { super.setup(); List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); - ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo"); + ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo", 0); user1 = userService.findByEmail(user1.getEmail()); project = projectService.retrieveProject(projectDto.getId(), user1); sourceDto = super.createSource(project.getId()); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java index 470e8f2..eab0332 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java @@ -50,7 +50,7 @@ public void setup() throws Exception { super.setup(); List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); - ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo"); + ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo", 3); user1 = userService.findByEmail(user1.getEmail()); project = projectService.retrieveProject(projectDto.getId(), user1); sourceDto = super.createSource(project.getId()); @@ -121,7 +121,7 @@ public void shouldCreateReviewedMapping() throws Exception { public void shouldGetReviews() throws Exception { EntityDto actual = super.retrieveEntity(project.getId()); MappingDto mappingDto = actual.getMappings().get(0); - mappingService.addReviewToMapping(mappingDto.getId(), "New review", ProvenanceDtoAssembler.disassemble(mappingDto.getCreated())); + mappingService.addReviewToMapping(mappingDto.getId(), "New review", 3, ProvenanceDtoAssembler.disassemble(mappingDto.getCreated())); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_REVIEWS; diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java index bfb6c92..2432003 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java @@ -46,7 +46,7 @@ public void setup() throws Exception { super.setup(); List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); - ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo"); + ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo", 0); user1 = userService.findByEmail(user1.getEmail()); project = projectService.retrieveProject(projectDto.getId(), user1); sourceDto = super.createSource(project.getId()); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java index e647ba5..5bcbc60 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java @@ -70,7 +70,7 @@ public void setup() throws Exception { List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); - ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo"); + ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo", 0); user1 = userService.findByEmail(user1.getEmail()); project = projectService.retrieveProject(projectDto.getId(), user1); sourceDto = super.createSource(project.getId()); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java index acd6b38..f9fa42a 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java @@ -39,7 +39,7 @@ public void setup() throws Exception { List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); - ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo"); + ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo", 0); user1 = userService.findByEmail(user1.getEmail()); project = projectService.retrieveProject(projectDto.getId(), user1); } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java index cd7d2bf..3773772 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java @@ -23,7 +23,7 @@ public class ProjectsControllerTest extends IntegrationTest { */ @Test public void shouldCreateProject() throws Exception { - super.createProject("New Project", "token1", null, null, null); + super.createProject("New Project", "token1", null, null, null, 0); } /** @@ -31,8 +31,8 @@ public void shouldCreateProject() throws Exception { */ @Test public void shouldGetProjects() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null); - super.createProject("New Project 2", "token2", null, null, null); + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + super.createProject("New Project 2", "token2", null, null, null, 0); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS; String response = mockMvc.perform(get(endpoint) @@ -57,7 +57,7 @@ public void shouldGetProjects() throws Exception { */ @Test public void shouldGetProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null); + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); String response = mockMvc.perform(get(endpoint) .contentType(MediaType.APPLICATION_JSON) @@ -78,13 +78,14 @@ public void shouldGetProject() throws Exception { */ @Test public void shouldUpdateProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null); + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); ProjectDto updatedProject = new ProjectDto(projectDto.getId(), "New Name", projectDto.getDescription(), Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", Arrays.asList(new String[]{"gwas"}))}), Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", Arrays.asList(new String[]{"ordo"}))}), projectDto.getPreferredMappingOntologies(), + 0, projectDto.getCreated()); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); @@ -110,13 +111,14 @@ public void shouldUpdateProject() throws Exception { */ @Test public void shouldNotUpdateProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null); + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); ProjectDto updatedProject = new ProjectDto(projectDto.getId(), "New Name", projectDto.getDescription(), Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", Arrays.asList(new String[]{"gwas"}))}), Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", Arrays.asList(new String[]{"ordo"}))}), projectDto.getPreferredMappingOntologies(), + 0, projectDto.getCreated()); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); @@ -132,7 +134,7 @@ public void shouldNotUpdateProject() throws Exception { */ @Test public void shouldDeleteProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null); + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); mockMvc.perform(delete(endpoint) .header(IDPConstants.JWT_TOKEN, "token1")) diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/SourcesControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/SourcesControllerTest.java index 5823417..8d3d13d 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/SourcesControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/SourcesControllerTest.java @@ -22,7 +22,7 @@ public class SourcesControllerTest extends IntegrationTest { @Override public void setup() throws Exception { super.setup(); - projectDto = createProject("New Project", "token1", null, null, null); + projectDto = createProject("New Project", "token1", null, null, null, 0); } /** diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java index e335b11..b49d8aa 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java @@ -26,7 +26,7 @@ public class UsersControllerTest extends IntegrationTest { */ @Test public void shouldGetUsersForProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null); + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; String response = mockMvc.perform(get(endpoint) .contentType(MediaType.APPLICATION_JSON) @@ -49,7 +49,7 @@ public void shouldGetUsersForProject() throws Exception { */ @Test public void shouldNotGetUsersForProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null); + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; mockMvc.perform(get(endpoint) .contentType(MediaType.APPLICATION_JSON) @@ -62,7 +62,7 @@ public void shouldNotGetUsersForProject() throws Exception { */ @Test public void shouldAddUserToProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null); + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); mockMvc.perform(get(endpoint) @@ -128,7 +128,7 @@ public void shouldAddUserToProject() throws Exception { */ @Test public void shouldUpdateUserToProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null); + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); @@ -174,7 +174,7 @@ public void shouldUpdateUserToProject() throws Exception { */ @Test public void shouldDeleteUserRolesInProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null); + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); From 25fc1e7f435d3cd9a691e75ea70b054ed58e30eb Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Thu, 25 Feb 2021 22:29:08 +0800 Subject: [PATCH 24/72] Added public export endpoint. --- .../curation/config/AuthInterceptor.java | 6 + .../config/ExceptionHandlerAdvice.java | 8 + .../curation/constants/CurationConstants.java | 4 + .../constants/ProjectExportRequestStatus.java | 10 + .../curation/domain/ProjectExportRequest.java | 31 ++++ .../exception/FileProcessingException.java | 8 + .../curation/repository/EntityRepository.java | 2 + .../ProjectExportRequestRepository.java | 12 ++ .../rest/controller/PublicDataController.java | 65 +++++++ .../rest/dto/ProjectExportStatusDto.java | 39 ++++ .../rest/dto/export/ExportEntityDto.java | 64 +++++++ .../rest/dto/export/ExportMappingDto.java | 59 ++++++ .../export/ExportMappingSuggestionDto.java | 41 +++++ .../curation/service/EntityService.java | 2 + .../service/ExportExecutorService.java | 7 + .../service/ExportFileStorageService.java | 10 + .../service/ProjectExportService.java | 11 ++ .../service/impl/EntityDataCollector.java | 74 ++++++++ .../service/impl/EntityServiceImpl.java | 5 + .../impl/ExportExecutorServiceImpl.java | 136 ++++++++++++++ .../impl/ExportFileStorageServiceImpl.java | 95 ++++++++++ .../impl/ProjectExportServiceImpl.java | 88 +++++++++ .../curation/system/GeneralCommon.java | 2 + .../system/SystemConfigProperties.java | 7 + src/main/resources/application.yml | 1 + .../ontotools/curation/IntegrationTest.java | 6 + .../curation/PublicDataControllerTest.java | 171 ++++++++++++++++++ .../rest/dto/ProjectExportStatusDtoTest.java | 14 ++ .../rest/dto/export/ExportEntityDtoTest.java | 14 ++ .../rest/dto/export/ExportMappingDtoTest.java | 14 ++ .../ExportMappingSuggestionDtoTest.java | 15 ++ .../rest/dto/mapping/CommentDtoTest.java | 14 ++ 32 files changed, 1035 insertions(+) create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/ProjectExportRequestStatus.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ProjectExportRequest.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/exception/FileProcessingException.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ProjectExportRequestRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/PublicDataController.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectExportStatusDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportMappingDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportMappingSuggestionDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ExportExecutorService.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ExportFileStorageService.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectExportService.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ExportExecutorServiceImpl.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ExportFileStorageServiceImpl.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectExportServiceImpl.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/PublicDataControllerTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectExportStatusDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportMappingDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportMappingSuggestionDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/CommentDtoTest.java diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/AuthInterceptor.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/AuthInterceptor.java index 3966870..0a1a34a 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/AuthInterceptor.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/AuthInterceptor.java @@ -43,6 +43,12 @@ public boolean preHandle(HttpServletRequest httpServletRequest, return true; } + String requestedURI = httpServletRequest.getRequestURI(); + if (systemConfigProperties.getUnauthenticatedEndpointsPrefix() != null && requestedURI.startsWith(systemConfigProperties.getUnauthenticatedEndpointsPrefix())) { + log.info("Received call on unauthenticated endpoint: {}", requestedURI); + return true; + } + String jwt = HeadersUtil.extractJWT(httpServletRequest); if (jwt == null) { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/ExceptionHandlerAdvice.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/ExceptionHandlerAdvice.java index 3dd1d72..d1d41bc 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/ExceptionHandlerAdvice.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/ExceptionHandlerAdvice.java @@ -6,10 +6,12 @@ import org.springframework.http.ResponseEntity; import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; +import org.springframework.web.bind.annotation.ResponseStatus; import org.springframework.web.bind.annotation.RestController; import uk.ac.ebi.spot.ontotools.curation.exception.AuthenticationException; import uk.ac.ebi.spot.ontotools.curation.exception.AuthorizationException; import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; +import uk.ac.ebi.spot.ontotools.curation.exception.FileProcessingException; @ControllerAdvice(annotations = RestController.class) public class ExceptionHandlerAdvice { @@ -34,4 +36,10 @@ public ResponseEntity handleAuthorizationException(EntityNotFoundExcepti headers.setContentType(MediaType.TEXT_PLAIN); return new ResponseEntity<>(e.getMessage(), headers, HttpStatus.NOT_FOUND); } + + @ExceptionHandler(FileProcessingException.class) + @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR) + public void handleFileProcessingException() { + } + } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java index ab156fd..3dbc5c8 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -12,6 +12,10 @@ public class CurationConstants { public static final String API_MAPPINGS = "/mappings"; + public static final String API_EXPORT = "/export"; + + public static final String API_DOWNLOAD = "/download"; + public static final String API_ENTITIES = "/entities"; public static final String API_ONTOLOGY_TERMS = "/ontology-terms"; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/ProjectExportRequestStatus.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/ProjectExportRequestStatus.java new file mode 100644 index 0000000..8aabcf9 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/ProjectExportRequestStatus.java @@ -0,0 +1,10 @@ +package uk.ac.ebi.spot.ontotools.curation.constants; + +public enum ProjectExportRequestStatus { + + REQUESTED, + IN_PROGRESS, + FINALIZED, + FAILED + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ProjectExportRequest.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ProjectExportRequest.java new file mode 100644 index 0000000..b8ce3bf --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ProjectExportRequest.java @@ -0,0 +1,31 @@ +package uk.ac.ebi.spot.ontotools.curation.domain; + +import lombok.AllArgsConstructor; +import lombok.Getter; +import lombok.NoArgsConstructor; +import lombok.Setter; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.index.Indexed; +import org.springframework.data.mongodb.core.mapping.Document; + +@Document(collection = "projectExportRequests") +@NoArgsConstructor +@AllArgsConstructor +@Getter +@Setter +public class ProjectExportRequest { + + @Id + private String id; + + @Indexed + private String projectId; + + @Indexed + private String requestId; + + @Indexed + private String status; + + private String fileId; +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/exception/FileProcessingException.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/exception/FileProcessingException.java new file mode 100644 index 0000000..fc7a01d --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/exception/FileProcessingException.java @@ -0,0 +1,8 @@ +package uk.ac.ebi.spot.ontotools.curation.exception; + +public class FileProcessingException extends RuntimeException { + public FileProcessingException(String message) { + super(message); + } + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java index 27924db..66c0165 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java @@ -12,4 +12,6 @@ public interface EntityRepository extends MongoRepository { Stream readBySourceId(String sourceId); Page findByProjectId(String projectId, Pageable page); + + Stream readByProjectId(String projectId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ProjectExportRequestRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ProjectExportRequestRepository.java new file mode 100644 index 0000000..bf8a001 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ProjectExportRequestRepository.java @@ -0,0 +1,12 @@ +package uk.ac.ebi.spot.ontotools.curation.repository; + +import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.ProjectExportRequest; + +import java.util.Optional; + +public interface ProjectExportRequestRepository extends MongoRepository { + + Optional findByRequestId(String requestId); + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/PublicDataController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/PublicDataController.java new file mode 100644 index 0000000..6f78587 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/PublicDataController.java @@ -0,0 +1,65 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.controller; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpEntity; +import org.springframework.http.HttpHeaders; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.web.bind.annotation.*; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.domain.ProjectExportRequest; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectExportStatusDto; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectExportService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; + +@RestController +@RequestMapping(value = GeneralCommon.API_PUBLIC + GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) +public class PublicDataController { + + private static final Logger log = LoggerFactory.getLogger(PublicDataController.class); + + @Autowired + private ProjectExportService projectExportService; + + /** + * POST /v1/projects/{projectId}/export + */ + @PostMapping(value = "/{projectId}" + CurationConstants.API_EXPORT, + produces = MediaType.TEXT_PLAIN_VALUE) + @ResponseStatus(HttpStatus.CREATED) + public String registerExportRequest(@PathVariable String projectId) { + log.info("[{}] Request to run export.", projectId); + return projectExportService.registerRequest(projectId); + } + + /** + * GET /v1/projects/{projectId}/export/{requestId} + */ + @GetMapping(value = "/{projectId}" + CurationConstants.API_EXPORT + "/{requestId}", + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public ProjectExportStatusDto getExportRequestStatus(@PathVariable String projectId, @PathVariable String requestId) { + log.info("[{}] Request to retrieve export status: {}", projectId, requestId); + ProjectExportRequest projectExportRequest = projectExportService.getExportStatus(projectId, requestId); + return new ProjectExportStatusDto(projectExportRequest.getRequestId(), projectExportRequest.getStatus()); + } + + /** + * GET /v1/projects/{projectId}/export/{requestId}/download + */ + @GetMapping(value = "/{projectId}" + CurationConstants.API_EXPORT + "/{requestId}" + CurationConstants.API_DOWNLOAD, + produces = MediaType.APPLICATION_OCTET_STREAM_VALUE) + @ResponseStatus(HttpStatus.OK) + public HttpEntity downloadExport(@PathVariable String projectId, @PathVariable String requestId) { + log.info("[{}] Request to download export: {}", projectId, requestId); + + byte[] payload = projectExportService.getExportContent(projectId, requestId); + HttpHeaders responseHeaders = new HttpHeaders(); + responseHeaders.add(HttpHeaders.CONTENT_DISPOSITION, "attachment; filename=" + projectId + ".zip"); + responseHeaders.add(HttpHeaders.CONTENT_TYPE, MediaType.APPLICATION_OCTET_STREAM_VALUE); + responseHeaders.add(HttpHeaders.CONTENT_LENGTH, Integer.toString(payload.length)); + return new HttpEntity<>(payload, responseHeaders); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectExportStatusDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectExportStatusDto.java new file mode 100644 index 0000000..e4a5bcb --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectExportStatusDto.java @@ -0,0 +1,39 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotEmpty; +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class ProjectExportStatusDto implements Serializable { + + private static final long serialVersionUID = -6467334898778590695L; + + @NotEmpty + @JsonProperty("requestId") + private final String requestId; + + @NotEmpty + @JsonProperty("status") + private final String status; + + @JsonCreator + public ProjectExportStatusDto(@JsonProperty("requestId") String requestId, + @JsonProperty("status") String status) { + this.requestId = requestId; + this.status = status; + } + + public String getRequestId() { + return requestId; + } + + public String getStatus() { + return status; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDto.java new file mode 100644 index 0000000..0c0978f --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDto.java @@ -0,0 +1,64 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.export; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import java.io.Serializable; +import java.util.List; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class ExportEntityDto implements Serializable { + + private static final long serialVersionUID = 1657559863177266372L; + + @JsonProperty("name") + private final String name; + + @JsonProperty("baseId") + private final String baseId; + + @JsonProperty("baseField") + private final String baseField; + + @JsonProperty("mappingSuggestions") + private final List mappingSuggestions; + + @JsonProperty("mappings") + private final List mappings; + + @JsonCreator + public ExportEntityDto(@JsonProperty("name") String name, + @JsonProperty("baseId") String baseId, + @JsonProperty("baseField") String baseField, + @JsonProperty("mappingSuggestions") List mappingSuggestions, + @JsonProperty("mappings") List mappings) { + this.name = name; + this.baseId = baseId; + this.baseField = baseField; + this.mappingSuggestions = mappingSuggestions; + this.mappings = mappings; + } + + public String getName() { + return name; + } + + public String getBaseId() { + return baseId; + } + + public String getBaseField() { + return baseField; + } + + public List getMappingSuggestions() { + return mappingSuggestions; + } + + public List getMappings() { + return mappings; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportMappingDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportMappingDto.java new file mode 100644 index 0000000..b3c655b --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportMappingDto.java @@ -0,0 +1,59 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.export; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProvenanceDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.OntologyTermDto; + +import javax.validation.constraints.NotNull; +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class ExportMappingDto implements Serializable { + + private static final long serialVersionUID = -6638221277434507289L; + + @NotNull + @JsonProperty("ontologyTerm") + private final OntologyTermDto ontologyTerm; + + @JsonProperty("reviewed") + private final boolean reviewed; + + @JsonProperty("status") + private final String status; + + @NotNull + @JsonProperty("created") + private final ProvenanceDto created; + + @JsonCreator + public ExportMappingDto(@JsonProperty("ontologyTerm") OntologyTermDto ontologyTerm, + @JsonProperty("reviewed") boolean reviewed, + @JsonProperty("status") String status, + @JsonProperty("created") ProvenanceDto created) { + this.ontologyTerm = ontologyTerm; + this.reviewed = reviewed; + this.status = status; + this.created = created; + } + + public OntologyTermDto getOntologyTerm() { + return ontologyTerm; + } + + public boolean isReviewed() { + return reviewed; + } + + public String getStatus() { + return status; + } + + public ProvenanceDto getCreated() { + return created; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportMappingSuggestionDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportMappingSuggestionDto.java new file mode 100644 index 0000000..c1207aa --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportMappingSuggestionDto.java @@ -0,0 +1,41 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.export; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProvenanceDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.OntologyTermDto; + +import javax.validation.constraints.NotNull; +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class ExportMappingSuggestionDto implements Serializable { + + private static final long serialVersionUID = 3552462400615112894L; + + @NotNull + @JsonProperty("ontologyTerm") + private final OntologyTermDto ontologyTerm; + + @NotNull + @JsonProperty("created") + private final ProvenanceDto created; + + @JsonCreator + public ExportMappingSuggestionDto(@JsonProperty("ontologyTerm") OntologyTermDto ontologyTerm, + @JsonProperty("created") ProvenanceDto created) { + this.ontologyTerm = ontologyTerm; + this.created = created; + } + + public OntologyTermDto getOntologyTerm() { + return ontologyTerm; + } + + public ProvenanceDto getCreated() { + return created; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java index b32f261..6c1f0ab 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java @@ -15,6 +15,8 @@ public interface EntityService { Stream retrieveEntitiesForSource(String sourceId); + Stream streamEntitiesForProject(String projectId); + Entity updateMappingStatus(Entity entity, EntityStatus mappingStatus); Page retrieveEntitiesForProject(String projectId, Pageable page); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ExportExecutorService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ExportExecutorService.java new file mode 100644 index 0000000..b0e98e3 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ExportExecutorService.java @@ -0,0 +1,7 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import uk.ac.ebi.spot.ontotools.curation.domain.ProjectExportRequest; + +public interface ExportExecutorService { + void addToQueue(ProjectExportRequest projectExportRequest); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ExportFileStorageService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ExportFileStorageService.java new file mode 100644 index 0000000..baed2be --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ExportFileStorageService.java @@ -0,0 +1,10 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import java.io.InputStream; + +public interface ExportFileStorageService { + + String storeFile(InputStream is, String fileName); + + byte[] retrieveFileContent(String fileId); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectExportService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectExportService.java new file mode 100644 index 0000000..8ee574e --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectExportService.java @@ -0,0 +1,11 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import uk.ac.ebi.spot.ontotools.curation.domain.ProjectExportRequest; + +public interface ProjectExportService { + String registerRequest(String projectId); + + ProjectExportRequest getExportStatus(String projectId, String requestId); + + byte[] getExportContent(String projectId, String requestId); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java new file mode 100644 index 0000000..00e4680 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java @@ -0,0 +1,74 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import com.fasterxml.jackson.databind.ObjectMapper; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.OntologyTermDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.ProvenanceDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.export.ExportEntityDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.export.ExportMappingDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.export.ExportMappingSuggestionDto; + +import java.io.ByteArrayOutputStream; +import java.io.IOException; +import java.util.ArrayList; +import java.util.List; +import java.util.zip.ZipEntry; +import java.util.zip.ZipOutputStream; + +public class EntityDataCollector { + + private static final Logger log = LoggerFactory.getLogger(EntityDataCollector.class); + + private String projectId; + + private List exportEntityDtos; + + public EntityDataCollector(String projectId) { + this.projectId = projectId; + this.exportEntityDtos = new ArrayList<>(); + } + + public void add(Entity entity, List mappingList, List mappingSuggestionList) { + List mappingSuggestions = new ArrayList<>(); + List mappings = new ArrayList<>(); + + if (mappingList != null) { + for (Mapping mapping : mappingList) { + mappings.add(new ExportMappingDto(OntologyTermDtoAssembler.assemble(mapping.getOntologyTerm()), mapping.isReviewed(), + mapping.getStatus(), ProvenanceDtoAssembler.assemble(mapping.getCreated()))); + } + } + if (mappingSuggestionList != null) { + for (MappingSuggestion mappingSuggestion : mappingSuggestionList) { + mappingSuggestions.add(new ExportMappingSuggestionDto(OntologyTermDtoAssembler.assemble(mappingSuggestion.getOntologyTerm()), + ProvenanceDtoAssembler.assemble(mappingSuggestion.getCreated()))); + } + } + + exportEntityDtos.add(new ExportEntityDto(entity.getName(), + entity.getBaseId(), + entity.getBaseField(), + mappingSuggestions, + mappings + )); + } + + public ByteArrayOutputStream serialize() { + ObjectMapper objectMapper = new ObjectMapper(); + ByteArrayOutputStream baos = new ByteArrayOutputStream(); + try (ZipOutputStream zos = new ZipOutputStream(baos)) { + ZipEntry entry = new ZipEntry(projectId + ".json"); + zos.putNextEntry(entry); + zos.write(objectMapper.writeValueAsString(exportEntityDtos).getBytes()); + zos.closeEntry(); + } catch (IOException e) { + log.error("[{}] Error encountered when creating file: {}", projectId, e.getMessage(), e); + return null; + } + return baos; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java index 6851a53..66a07cb 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java @@ -36,6 +36,11 @@ public Stream retrieveEntitiesForSource(String sourceId) { return entityRepository.readBySourceId(sourceId); } + @Override + public Stream streamEntitiesForProject(String projectId) { + return entityRepository.readByProjectId(projectId); + } + @Override public Entity updateMappingStatus(Entity entity, EntityStatus mappingStatus) { log.info("Updating mapping status [{}]: {}", entity.getName(), mappingStatus); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ExportExecutorServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ExportExecutorServiceImpl.java new file mode 100644 index 0000000..87d328c --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ExportExecutorServiceImpl.java @@ -0,0 +1,136 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.scheduling.annotation.Async; +import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectExportRequestStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.ProjectExportRequest; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; +import uk.ac.ebi.spot.ontotools.curation.repository.ProjectExportRequestRepository; +import uk.ac.ebi.spot.ontotools.curation.service.*; + +import javax.annotation.PostConstruct; +import java.io.ByteArrayInputStream; +import java.io.ByteArrayOutputStream; +import java.util.List; +import java.util.Optional; +import java.util.Queue; +import java.util.concurrent.ConcurrentLinkedQueue; +import java.util.concurrent.SynchronousQueue; +import java.util.stream.Stream; + +@Service +public class ExportExecutorServiceImpl implements ExportExecutorService { + + private static final Logger log = LoggerFactory.getLogger(ExportExecutorService.class); + + @Autowired + private ProjectExportRequestRepository projectExportRequestRepository; + + @Autowired + private ExportFileStorageService exportFileStorageService; + + @Autowired + private EntityService entityService; + + @Autowired + private MappingService mappingService; + + @Autowired + private MappingSuggestionsService mappingSuggestionsService; + + private Queue requestQueue; + + private String currentRequest; + + @PostConstruct + public void initialize() { + this.currentRequest = null; + requestQueue = new ConcurrentLinkedQueue<>(); + List projectExportRequests = projectExportRequestRepository.findAll(); + for (ProjectExportRequest projectExportRequest : projectExportRequests) { + if (!projectExportRequest.getStatus().equalsIgnoreCase(ProjectExportRequestStatus.FINALIZED.name())) { + requestQueue.add(projectExportRequest.getId()); + } + } + this.execute(); + } + + @Override + @Async + public void addToQueue(ProjectExportRequest projectExportRequest) { + log.info("Adding request to queue: {} | {}", projectExportRequest.getProjectId(), projectExportRequest.getRequestId()); + requestQueue.add(projectExportRequest.getId()); + this.execute(); + } + + private void execute() { + if (currentRequest != null) { + return; + } + if (requestQueue.isEmpty()) { + return; + } + + String projectRequestId = requestQueue.remove(); + log.info("Selected next item in the queue: {}", projectRequestId); + Optional projectExportRequestOptional = projectExportRequestRepository.findById(projectRequestId); + if (!projectExportRequestOptional.isPresent()) { + log.error("Project export request [{}] not found!", projectRequestId); + this.execute(); + } else { + currentRequest = projectRequestId; + ProjectExportRequest projectExportRequest = projectExportRequestOptional.get(); + projectExportRequest.setStatus(ProjectExportRequestStatus.IN_PROGRESS.name()); + projectExportRequest = projectExportRequestRepository.save(projectExportRequest); + this.processRequest(projectExportRequest); + currentRequest = null; + this.execute(); + } + } + + private void processRequest(ProjectExportRequest projectExportRequest) { + log.info("Processing export request: {}", projectExportRequest.getId()); + double sTime = System.currentTimeMillis(); + + log.info("Export request [{}] - collecting data ...", projectExportRequest.getId()); + EntityDataCollector entityDataCollector = new EntityDataCollector(projectExportRequest.getProjectId()); + Stream entityStream = entityService.streamEntitiesForProject(projectExportRequest.getProjectId()); + entityStream.forEach(entity -> processEntity(entity, entityDataCollector)); + entityStream.close(); + + log.info("Export request [{}] - saving file ...", projectExportRequest.getId()); + ByteArrayOutputStream baos = entityDataCollector.serialize(); + if (baos == null) { + projectExportRequest.setStatus(ProjectExportRequestStatus.FAILED.name()); + projectExportRequest = projectExportRequestRepository.save(projectExportRequest); + double eTime = System.currentTimeMillis(); + log.info("Export request [{}] failed in: {}", projectExportRequest.getId(), (eTime - sTime) / 1000); + } + + String fileId = exportFileStorageService.storeFile(new ByteArrayInputStream(baos.toByteArray()), projectExportRequest.getProjectId() + ".zip"); + if (fileId == null) { + projectExportRequest.setStatus(ProjectExportRequestStatus.FAILED.name()); + projectExportRequest = projectExportRequestRepository.save(projectExportRequest); + double eTime = System.currentTimeMillis(); + log.info("Export request [{}] failed in: {}", projectExportRequest.getId(), (eTime - sTime) / 1000); + } + + log.info("Export request [{}] - changing status to FINALIZED.", projectExportRequest.getId()); + projectExportRequest.setFileId(fileId); + projectExportRequest.setStatus(ProjectExportRequestStatus.FINALIZED.name()); + projectExportRequest = projectExportRequestRepository.save(projectExportRequest); + double eTime = System.currentTimeMillis(); + log.info("Export request [{}] finalized in: {}", projectExportRequest.getId(), (eTime - sTime) / 1000); + } + + private void processEntity(Entity entity, EntityDataCollector entityDataCollector) { + List mappingList = mappingService.retrieveMappingsForEntity(entity.getId()); + List mappingSuggestions = mappingSuggestionsService.retrieveMappingSuggestionsForEntity(entity.getId()); + entityDataCollector.add(entity, mappingList, mappingSuggestions); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ExportFileStorageServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ExportFileStorageServiceImpl.java new file mode 100644 index 0000000..9dbc351 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ExportFileStorageServiceImpl.java @@ -0,0 +1,95 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import com.mongodb.client.gridfs.GridFSBuckets; +import com.mongodb.client.gridfs.GridFSDownloadStream; +import com.mongodb.client.gridfs.model.GridFSFile; +import org.apache.commons.io.IOUtils; +import org.bson.types.ObjectId; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.mongodb.core.MongoTemplate; +import org.springframework.data.mongodb.core.query.Criteria; +import org.springframework.data.mongodb.core.query.Query; +import org.springframework.data.mongodb.gridfs.GridFsOperations; +import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; +import uk.ac.ebi.spot.ontotools.curation.exception.FileProcessingException; +import uk.ac.ebi.spot.ontotools.curation.service.ExportFileStorageService; + +import java.io.IOException; +import java.io.InputStream; + +@Service +public class ExportFileStorageServiceImpl implements ExportFileStorageService { + + private static final Logger log = LoggerFactory.getLogger(ExportFileStorageService.class); + + @Autowired + private GridFsOperations gridFsOperations; + + @Autowired + private MongoTemplate mongoTemplate; + + @Override + public String storeFile(InputStream is, String fileName) { + log.info("Storing new file: {}", fileName); + try { + ObjectId objectId = is == null ? null : gridFsOperations.store(is, fileName, ""); + log.info("File successfully stored: {}", objectId); + return objectId != null ? objectId.toString() : null; + } catch (Exception e) { + log.error("Encountered exception when saving file [{}]: {}", fileName, e.getMessage(), e); + return null; + } + } + + @Override + public byte[] retrieveFileContent(String fileId) { + log.info("Retrieving file content: {}", fileId); + GridFSFile file = getGridFsdbFileForFileId(fileId); + byte[] attachmentByteArray; + + try (InputStream inputStream = getFileDownloadStream(file.getObjectId())) { + attachmentByteArray = IOUtils.toByteArray(inputStream); + } catch (IOException e) { + log.error("Unable to get file {}: {}", fileId, e.getMessage(), e); + throw new FileProcessingException("Unable to get file " + fileId + ": " + e.getMessage()); + } + log.info("Content for file {} successfully retrieved: {}", fileId, attachmentByteArray.length); + + return attachmentByteArray; + } + + private GridFSFile getGridFsdbFileForFileId(String fileId) { + log.info("Received call to get GridFSFile for id: {}", fileId); + Query query = new Query(Criteria.where("_id").is(fileId)); + GridFSFile file = gridFsOperations.findOne(query); + if (file == null) { + log.error("No file found in DB for id: {}", fileId); + throw new EntityNotFoundException("No file found in DB for id: " + fileId); + } + return file; + } + + private InputStream getFileDownloadStream(ObjectId objectId) { + log.info("Retrieving file for download: {}", objectId.toString()); + GridFSDownloadStream stream = GridFSBuckets.create(mongoTemplate.getDb()) + .openDownloadStream(objectId); + log.info("Retrieved download stream {}", objectId.toString()); + return stream; + + } + + private void deleteGridFSFile(String fileId) { + log.info("Received call to delete GridFSFile with id: {}", fileId); + Query query = new Query(Criteria.where("_id").is(fileId)); + GridFSFile file = gridFsOperations.findOne(query); + if (file == null) { + log.error("No file found in DB for id: {}", fileId); + throw new EntityNotFoundException("No file found in DB for id: " + fileId); + } + gridFsOperations.delete(query); + } + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectExportServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectExportServiceImpl.java new file mode 100644 index 0000000..c47629b --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectExportServiceImpl.java @@ -0,0 +1,88 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectExportRequestStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.ProjectExportRequest; +import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; +import uk.ac.ebi.spot.ontotools.curation.repository.ProjectExportRequestRepository; +import uk.ac.ebi.spot.ontotools.curation.repository.ProjectRepository; +import uk.ac.ebi.spot.ontotools.curation.service.ExportExecutorService; +import uk.ac.ebi.spot.ontotools.curation.service.ExportFileStorageService; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectExportService; + +import java.util.Optional; +import java.util.UUID; + +@Service +public class ProjectExportServiceImpl implements ProjectExportService { + + private static final Logger log = LoggerFactory.getLogger(ProjectExportService.class); + + @Autowired + private ProjectExportRequestRepository projectExportRequestRepository; + + @Autowired + private ExportExecutorService exportExecutorService; + + @Autowired + private ProjectRepository projectRepository; + + @Autowired + private ExportFileStorageService exportFileStorageService; + + @Override + public String registerRequest(String projectId) { + log.info("Received export request for project: {}", projectId); + Optional projectOptional = projectRepository.findById(projectId); + if (!projectOptional.isPresent()) { + log.error("Project {} not found.", projectId); + throw new EntityNotFoundException("Project " + projectId + " not found."); + } + + ProjectExportRequest projectExportRequest = projectExportRequestRepository.insert(new ProjectExportRequest(null, + projectId, UUID.randomUUID().toString(), ProjectExportRequestStatus.REQUESTED.name(), null)); + log.info("[{}] Export request registered: {} | {}", projectId, projectExportRequest.getId(), projectExportRequest.getRequestId()); + exportExecutorService.addToQueue(projectExportRequest); + return projectExportRequest.getRequestId(); + } + + @Override + public ProjectExportRequest getExportStatus(String projectId, String requestId) { + log.info("[{}] Received status update request: {}", projectId, requestId); + Optional projectOptional = projectRepository.findById(projectId); + if (!projectOptional.isPresent()) { + log.error("Project {} not found.", projectId); + throw new EntityNotFoundException("Project " + projectId + " not found."); + } + + Optional projectExportRequestOptional = projectExportRequestRepository.findByRequestId(requestId); + if (!projectExportRequestOptional.isPresent()) { + log.error("Project export request {} not found.", requestId); + throw new EntityNotFoundException("Project export request " + requestId + " not found."); + } + + return projectExportRequestOptional.get(); + } + + @Override + public byte[] getExportContent(String projectId, String requestId) { + log.info("[{}] Downloading content for: {}", projectId, requestId); + Optional projectOptional = projectRepository.findById(projectId); + if (!projectOptional.isPresent()) { + log.error("Project {} not found.", projectId); + throw new EntityNotFoundException("Project " + projectId + " not found."); + } + + Optional projectExportRequestOptional = projectExportRequestRepository.findByRequestId(requestId); + if (!projectExportRequestOptional.isPresent()) { + log.error("Project export request {} not found.", requestId); + throw new EntityNotFoundException("Project export request " + requestId + " not found."); + } + + return exportFileStorageService.retrieveFileContent(projectExportRequestOptional.get().getFileId()); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/GeneralCommon.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/GeneralCommon.java index 88286a6..ff6e820 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/GeneralCommon.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/GeneralCommon.java @@ -2,6 +2,8 @@ public class GeneralCommon { + public static final String API_PUBLIC = "/public"; + public static final String API_V1 = "/v1"; public static final String LOG_FILE_NAME = "LOG_FILE_NAME"; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/SystemConfigProperties.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/SystemConfigProperties.java index e0e5ccc..65268f8 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/SystemConfigProperties.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/system/SystemConfigProperties.java @@ -21,6 +21,9 @@ public class SystemConfigProperties { @Value("${ontotools-curation.auth.cert:#{NULL}}") private String certPath; + @Value("${ontotools-curation.auth.unauthenticated-endpoints-prefix:#{NULL}}") + private String unauthenticatedEndpointsPrefix; + @Value("${ontotools-curation.admin.robot-user}") private String robotUser; @@ -55,4 +58,8 @@ public String getCertPath() { public String getRobotUser() { return robotUser; } + + public String getUnauthenticatedEndpointsPrefix() { + return unauthenticatedEndpointsPrefix; + } } diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 544bfce..ce48647 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -11,6 +11,7 @@ ontotools-curation: auth: enabled: true cert: aap.der + unauthenticated-endpoints-prefix: /public admin: robot-user: ontotools-curator@ebi.ac.uk diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 6f43355..5ba3c51 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -33,6 +33,7 @@ import uk.ac.ebi.spot.ontotools.curation.service.MatchmakerService; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; +import javax.annotation.PreDestroy; import java.util.ArrayList; import java.util.Arrays; import java.util.List; @@ -118,6 +119,11 @@ public void setup() throws Exception { authTokenRepository.insert(new AuthToken(null, "supertoken", "super@test.com")); } + @PreDestroy + public void destroy() { + mongoTemplate.getDb().drop(); + } + protected ProjectDto createProject(String name, String token, List datasources, List ontologies, String preferredMappingOntology, int noReviewsRequired) throws Exception { diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/PublicDataControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/PublicDataControllerTest.java new file mode 100644 index 0000000..fd2bbc5 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/PublicDataControllerTest.java @@ -0,0 +1,171 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import com.fasterxml.jackson.core.type.TypeReference; +import org.apache.commons.lang3.RandomStringUtils; +import org.joda.time.DateTime; +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpHeaders; +import org.springframework.http.MediaType; +import org.springframework.mock.web.MockHttpServletResponse; +import org.springframework.test.context.ContextConfiguration; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectExportRequestStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.ProjectExportRequest; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.domain.config.ExternalServiceConfig; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; +import uk.ac.ebi.spot.ontotools.curation.repository.ExternalServiceConfigRepository; +import uk.ac.ebi.spot.ontotools.curation.repository.ProjectExportRequestRepository; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectExportStatusDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.service.EntityService; +import uk.ac.ebi.spot.ontotools.curation.service.MatchmakerService; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; +import uk.ac.ebi.spot.ontotools.curation.service.UserService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; + +import java.io.ByteArrayInputStream; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; +import java.util.Optional; +import java.util.zip.ZipEntry; +import java.util.zip.ZipInputStream; + +import static junit.framework.TestCase.assertTrue; +import static org.junit.Assert.*; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; + +@ContextConfiguration(classes = {IntegrationTest.MockTaskExecutorConfig.class}) +public class PublicDataControllerTest extends IntegrationTest { + + @Autowired + private ExternalServiceConfigRepository externalServiceConfigRepository; + + @Autowired + private EntityService entityService; + + @Autowired + private ProjectService projectService; + + @Autowired + private UserService userService; + + @Autowired + private MatchmakerService matchmakerService; + + @Autowired + private ProjectExportRequestRepository projectExportRequestRepository; + + private Project project; + + private SourceDto sourceDto; + + @Override + public void setup() throws Exception { + super.setup(); + externalServiceConfigRepository.insert(new ExternalServiceConfig(null, "OLS", Arrays.asList(new String[]{"orphanet::ordo"}))); + externalServiceConfigRepository.insert(new ExternalServiceConfig(null, "OXO", Arrays.asList(new String[]{"ordo::orphanet"}))); + + List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); + List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); + + ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo", 0); + user1 = userService.findByEmail(user1.getEmail()); + project = projectService.retrieveProject(projectDto.getId(), user1); + sourceDto = super.createSource(project.getId()); + Provenance provenance = new Provenance(user1.getName(), user1.getEmail(), DateTime.now()); + + /** + * Other examples: + * - Hemochromatosis type 1 + * - Retinal dystrophy + */ + entity = entityService.createEntity(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), + RandomStringUtils.randomAlphabetic(10), sourceDto.getId(), project.getId(), provenance, EntityStatus.UNMAPPED)); + matchmakerService.runMatchmaking(sourceDto.getId(), project); + } + + + /** + * POST - GET /public/v1/projects/{projectId}/export + */ + @Test + public void shouldCreateExportRequest() throws Exception { + String endpoint = GeneralCommon.API_PUBLIC + GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_EXPORT; + String requestId = mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON)) + .andExpect(status().isCreated()) + .andReturn() + .getResponse() + .getContentAsString(); + + + endpoint = endpoint + "/" + requestId; + String response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON)) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + + ProjectExportStatusDto actual = mapper.readValue(response, new TypeReference() { + }); + assertEquals(requestId, actual.getRequestId()); + + Thread.sleep(10000); + response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON)) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + actual = mapper.readValue(response, new TypeReference() { + }); + assertEquals(requestId, actual.getRequestId()); + assertEquals(ProjectExportRequestStatus.FINALIZED.name(), actual.getStatus()); + + Optional projectExportRequestOptional = projectExportRequestRepository.findByRequestId(requestId); + assertTrue(projectExportRequestOptional.isPresent()); + assertNotNull(projectExportRequestOptional.get().getFileId()); + + endpoint = endpoint + CurationConstants.API_DOWNLOAD; + MockHttpServletResponse dataResponse = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON)) + .andExpect(status().isOk()) + .andReturn() + .getResponse(); + + byte[] payload = dataResponse.getContentAsByteArray(); + assertTrue(payload.length != 0); + assertEquals("attachment; filename=" + project.getId() + ".zip", dataResponse.getHeader(HttpHeaders.CONTENT_DISPOSITION)); + + ZipInputStream zi = null; + List entries = new ArrayList<>(); + try { + zi = new ZipInputStream(new ByteArrayInputStream(payload)); + + ZipEntry zipEntry = null; + while ((zipEntry = zi.getNextEntry()) != null) { + entries.add(zipEntry); + } + } finally { + if (zi != null) { + zi.close(); + } + } + + assertFalse(entries.isEmpty()); + assertEquals(project.getId() + ".json", entries.get(0).getName()); + super.destroy(); + } +} diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectExportStatusDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectExportStatusDtoTest.java new file mode 100644 index 0000000..7676bac --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectExportStatusDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class ProjectExportStatusDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(ProjectExportStatusDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDtoTest.java new file mode 100644 index 0000000..8e62b8c --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.export; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class ExportEntityDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(ExportEntityDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportMappingDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportMappingDtoTest.java new file mode 100644 index 0000000..d2a321d --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportMappingDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.export; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class ExportMappingDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(ExportMappingDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportMappingSuggestionDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportMappingSuggestionDtoTest.java new file mode 100644 index 0000000..0b25a9d --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportMappingSuggestionDtoTest.java @@ -0,0 +1,15 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.export; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class ExportMappingSuggestionDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(ExportMappingSuggestionDto.class) + .verify(); + } + + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/CommentDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/CommentDtoTest.java new file mode 100644 index 0000000..3f97f57 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/CommentDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class CommentDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(CommentDto.class) + .verify(); + } + +} \ No newline at end of file From d86fa156078a8d0e3f2117fcdbb130823a5aa17d Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Fri, 26 Feb 2021 16:05:14 +0800 Subject: [PATCH 25/72] Fixed upstream field names. --- .../curation/rest/dto/EntityDto.java | 24 +++++++++--------- .../rest/dto/export/ExportEntityDto.java | 25 ++++++++++--------- 2 files changed, 25 insertions(+), 24 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java index 3fe78f1..d3c8d1b 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java @@ -27,11 +27,11 @@ public final class EntityDto implements Serializable { @JsonProperty("name") private final String name; - @JsonProperty("baseId") - private final String baseId; + @JsonProperty("upstreamId") + private final String upstreamId; - @JsonProperty("baseField") - private final String baseField; + @JsonProperty("upstreamField") + private final String upstreamField; @JsonProperty("mappingStatus") private final String mappingStatus; @@ -49,8 +49,8 @@ public final class EntityDto implements Serializable { public EntityDto(@JsonProperty("id") String id, @JsonProperty("source") SourceDto source, @JsonProperty("name") String name, - @JsonProperty("baseId") String baseId, - @JsonProperty("baseField") String baseField, + @JsonProperty("upstreamId") String upstreamId, + @JsonProperty("upstreamField") String upstreamField, @JsonProperty("mappingStatus") String mappingStatus, @JsonProperty("mappingSuggestions") List mappingSuggestions, @JsonProperty("mappings") List mappings, @@ -58,8 +58,8 @@ public EntityDto(@JsonProperty("id") String id, this.id = id; this.source = source; this.name = name; - this.baseId = baseId; - this.baseField = baseField; + this.upstreamId = upstreamId; + this.upstreamField = upstreamField; this.mappingStatus = mappingStatus; this.mappingSuggestions = mappingSuggestions; this.mappings = mappings; @@ -94,11 +94,11 @@ public List getMappings() { return mappings; } - public String getBaseId() { - return baseId; + public String getUpstreamId() { + return upstreamId; } - public String getBaseField() { - return baseField; + public String getUpstreamField() { + return upstreamField; } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDto.java index 0c0978f..26b4a20 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDto.java @@ -17,11 +17,11 @@ public final class ExportEntityDto implements Serializable { @JsonProperty("name") private final String name; - @JsonProperty("baseId") - private final String baseId; + @JsonProperty("upstreamId") + private final String upstreamId; - @JsonProperty("baseField") - private final String baseField; + @JsonProperty("upstreamField") + private final String upstreamField; @JsonProperty("mappingSuggestions") private final List mappingSuggestions; @@ -31,13 +31,13 @@ public final class ExportEntityDto implements Serializable { @JsonCreator public ExportEntityDto(@JsonProperty("name") String name, - @JsonProperty("baseId") String baseId, - @JsonProperty("baseField") String baseField, + @JsonProperty("upstreamId") String upstreamId, + @JsonProperty("upstreamField") String upstreamField, @JsonProperty("mappingSuggestions") List mappingSuggestions, @JsonProperty("mappings") List mappings) { this.name = name; - this.baseId = baseId; - this.baseField = baseField; + this.upstreamId = upstreamId; + this.upstreamField = upstreamField; this.mappingSuggestions = mappingSuggestions; this.mappings = mappings; } @@ -46,12 +46,13 @@ public String getName() { return name; } - public String getBaseId() { - return baseId; + + public String getUpstreamId() { + return upstreamId; } - public String getBaseField() { - return baseField; + public String getUpstreamField() { + return upstreamField; } public List getMappingSuggestions() { From 523457e87bedafa477217997613da596230f9385 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Mon, 1 Mar 2021 18:33:53 +0800 Subject: [PATCH 26/72] Changed domain model to cater for 1-to-N mappings to ontology terms. --- .../curation/constants/CurationConstants.java | 2 + .../curation/domain/mapping/Mapping.java | 4 +- .../curation/domain/mapping/OntologyTerm.java | 6 + .../repository/MappingRepository.java | 3 - .../repository/OntologyTermRepository.java | 2 + .../rest/assembler/MappingDtoAssembler.java | 2 +- .../rest/controller/MappingsController.java | 110 ++++++++++-- .../rest/dto/export/ExportMappingDto.java | 13 +- .../curation/rest/dto/mapping/MappingDto.java | 12 +- .../curation/service/MappingService.java | 6 +- .../curation/service/OntologyTermService.java | 2 +- .../service/impl/EntityDataCollector.java | 5 +- .../service/impl/MappingServiceImpl.java | 107 +++++++++--- .../impl/MappingSuggestionsServiceImpl.java | 2 +- .../service/impl/OntologyTermServiceImpl.java | 10 +- .../curation/EntityControllerTest.java | 4 +- .../ontotools/curation/IntegrationTest.java | 5 +- .../curation/MappingsControllerTest.java | 156 ++++++++++++++++-- .../ontotools/curation/MatchMakingTest.java | 2 +- 19 files changed, 376 insertions(+), 77 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java index 3dbc5c8..cb134d5 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -28,6 +28,8 @@ public class CurationConstants { public static final String PARAM_ENTITY_ID = "entityId"; + public static final String PARAM_CURIE = "curie"; + public static final String ZOOMA_CONFIDENCE_HIGH = "HIGH"; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java index fb77f56..e6f9b03 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java @@ -32,7 +32,7 @@ public class Mapping { private String entityId; @Indexed - private String ontologyTermId; + private List ontologyTermIds; @Indexed private String projectId; @@ -49,7 +49,7 @@ public class Mapping { private Provenance created; @Transient - private OntologyTerm ontologyTerm; + private List ontologyTerms; public void addReview(Review review, int noReviewsRequired) { if (reviews == null) { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTerm.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTerm.java index 69cea60..267301c 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTerm.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTerm.java @@ -18,6 +18,7 @@ public class OntologyTerm { @Id private String id; + @Indexed private String curie; private String iri; @@ -33,4 +34,9 @@ public class OntologyTerm { private String crossRefs; + + @Override + public String toString() { + return curie + " (" + label + ")"; + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java index aa94815..bf1eaef 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java @@ -4,11 +4,8 @@ import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; import java.util.List; -import java.util.Optional; public interface MappingRepository extends MongoRepository { - Optional findByEntityIdAndOntologyTermId(String entityId, String ontologyTermId); - List findByEntityIdIn(List entityIds); List findByEntityId(String entityId); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java index f4861fa..ea2f9da 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java @@ -10,4 +10,6 @@ public interface OntologyTermRepository extends MongoRepository findByIdIn(List ontoTermIds); Optional findByIriHash(String iriHash); + + Optional findByCurie(String curie); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java index 139b245..1f23f3d 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java @@ -11,7 +11,7 @@ public class MappingDtoAssembler { public static MappingDto assemble(Mapping mapping) { return new MappingDto(mapping.getId(), mapping.getEntityId(), - OntologyTermDtoAssembler.assemble(mapping.getOntologyTerm()), + mapping.getOntologyTerms().stream().map(OntologyTermDtoAssembler::assemble).collect(Collectors.toList()), mapping.isReviewed(), mapping.getStatus(), mapping.getReviews() != null ? mapping.getReviews().stream().map(ReviewDtoAssembler::assemble).collect(Collectors.toList()) : new ArrayList<>(), diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java index 414233a..ce48f8f 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java @@ -10,10 +10,11 @@ import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; -import uk.ac.ebi.spot.ontotools.curation.domain.*; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.domain.Source; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.EntityDtoAssembler; @@ -75,6 +76,11 @@ public EntityDto getMappings(@PathVariable String projectId, @RequestParam(value /** * POST /v1/projects/{projectId}/mappings + *

+ * Assumptions: + * - Creating a mapping = transforming an existing mapping suggestion into a new mapping. + * - No existing mappings are deleted + * - Originating mapping suggestion is removed */ @PostMapping(value = "/{projectId}" + CurationConstants.API_MAPPINGS, consumes = MediaType.APPLICATION_JSON_VALUE, @@ -82,12 +88,12 @@ public EntityDto getMappings(@PathVariable String projectId, @RequestParam(value @ResponseStatus(HttpStatus.CREATED) public EntityDto createMapping(@PathVariable String projectId, @RequestBody @Valid MappingCreationDto mappingCreationDto, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); - log.info("[{}] Request to create mapping: {} | {} | {}", user.getEmail(), projectId, mappingCreationDto.getEntityId(), mappingCreationDto.getOntologyTerm().getCurie()); + log.info("[{}] Request to create mapping: {} | {} | {}", user.getEmail(), projectId, mappingCreationDto.getEntityId(), mappingCreationDto.getOntologyTerm()); projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); Entity entity = entityService.retrieveEntity(mappingCreationDto.getEntityId()); - OntologyTerm ontologyTerm = ontologyTermService.retrieveTermByIri(mappingCreationDto.getOntologyTerm().getIri()); + OntologyTerm ontologyTerm = ontologyTermService.retrieveTermByCurie(mappingCreationDto.getOntologyTerm().getCurie()); /** * Check if a mapping to this term already exists @@ -95,7 +101,7 @@ public EntityDto createMapping(@PathVariable String projectId, @RequestBody @Val List existingMappings = mappingService.retrieveMappingsForEntity(entity.getId()); boolean exists = false; for (Mapping mapping : existingMappings) { - if (mapping.getOntologyTermId().equalsIgnoreCase(ontologyTerm.getId())) { + if (mapping.getOntologyTermIds().contains(ontologyTerm.getId())) { exists = true; break; } @@ -111,10 +117,59 @@ public EntityDto createMapping(@PathVariable String projectId, @RequestBody @Val mappingService.createMapping(entity, ontologyTerm, provenance); /** - * New mapping created - deleting existing mappings, except of the newly created one. - * Retaining ontology terms associated with the previous mappings. + * Updating mapping status to MANUAL. + */ + entity = entityService.updateMappingStatus(entity, EntityStatus.MANUALLY_MAPPED); + + /** + * Deleting mapping suggestions associated with the current ontology term. */ - List ontologyTermIds = mappingService.deleteMappingExcluding(entity, ontologyTerm.getId()); + mappingSuggestionsService.deleteMappingSuggestions(entity.getId(), ontologyTerm.getId()); + + return packAndSend(entity, projectId); + } + + /** + * PUT /v1/projects/{projectId}/mappings/{mappingId} + *

+ * Assumptions: + * - Updating a mapping = adding an additional ontology term from a mapping suggestion to an existing mapping + * - No existing mappings are deleted + * - Originating mapping suggestion is removed + */ + @PutMapping(value = "/{projectId}" + CurationConstants.API_MAPPINGS + "/{mappingId}", + consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public EntityDto updateMapping(@PathVariable String projectId, @PathVariable String mappingId, @RequestBody @Valid MappingCreationDto mappingCreationDto, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to update mapping [{} - {}]: {} | {}", user.getEmail(), projectId, mappingId, mappingCreationDto.getEntityId(), mappingCreationDto.getOntologyTerm()); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); + + Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); + Entity entity = entityService.retrieveEntity(mappingCreationDto.getEntityId()); + OntologyTerm ontologyTerm = ontologyTermService.retrieveTermByCurie(mappingCreationDto.getOntologyTerm().getCurie()); + + /** + * Check if a different mapping to this term already exists + */ + List existingMappings = mappingService.retrieveMappingsForEntity(entity.getId()); + boolean exists = false; + for (Mapping mapping : existingMappings) { + if (mapping.getOntologyTermIds().contains(ontologyTerm.getId())) { + exists = true; + break; + } + } + if (exists) { + log.warn("[{}] Mapping to term [{}] already exists.", entity.getName(), ontologyTerm.getCurie()); + return packAndSend(entity, projectId); + } + + /** + * Update mapping. + */ + mappingService.updateMapping(mappingId, ontologyTerm, provenance); /** * Updating mapping status to MANUAL. @@ -126,15 +181,44 @@ public EntityDto createMapping(@PathVariable String projectId, @RequestBody @Val */ mappingSuggestionsService.deleteMappingSuggestions(entity.getId(), ontologyTerm.getId()); + return packAndSend(entity, projectId); + } + + /** + * DELETE /v1/projects/{projectId}/mappings/{mappingId}?curie= + *

+ * Assumptions: + * - Delete entire mapping when curie is missing + * - Delete only mapping to curie when this is present + * - Convert all removed curies to mapping suggestions + */ + @DeleteMapping(value = "/{projectId}" + CurationConstants.API_MAPPINGS + "/{mappingId}") + @ResponseStatus(HttpStatus.OK) + public void deleteMapping(@PathVariable String projectId, @PathVariable String mappingId, + @RequestParam(value = CurationConstants.PARAM_CURIE, required = false) String curie, + HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to delete mapping [{} - {}]: {}", user.getEmail(), projectId, mappingId, curie); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); + + Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); + Mapping mapping = mappingService.retrieveMappingById(mappingId); + Entity entity = entityService.retrieveEntity(mapping.getEntityId()); + + /** + * Delete mapping. + */ + OntologyTerm ontoTerm = curie != null ? ontologyTermService.retrieveTermByCurie(curie) : null; + List ontoTermIds = mappingService.deleteMapping(mappingId, ontoTerm != null ? ontoTerm.getId() : null, provenance); + /** - * Creating new mapping suggestion from the terms previously included in the mappings. + * Re-create mapping suggestions. */ - for (String ontologyTermId : ontologyTermIds) { - OntologyTerm ontoTerm = ontologyTermService.retrieveTermById(ontologyTermId); - mappingSuggestionsService.createMappingSuggestion(entity, ontoTerm, provenance); + for (String ontoTermId : ontoTermIds) { + OntologyTerm ontologyTerm = ontologyTermService.retrieveTermById(ontoTermId); + mappingSuggestionsService.createMappingSuggestion(entity, ontologyTerm, provenance); } - return packAndSend(entity, projectId); } private EntityDto packAndSend(Entity entity, String projectId) { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportMappingDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportMappingDto.java index b3c655b..2c35120 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportMappingDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportMappingDto.java @@ -9,6 +9,7 @@ import javax.validation.constraints.NotNull; import java.io.Serializable; +import java.util.List; @EqualsAndHashCode @JsonInclude(JsonInclude.Include.NON_NULL) @@ -17,8 +18,8 @@ public final class ExportMappingDto implements Serializable { private static final long serialVersionUID = -6638221277434507289L; @NotNull - @JsonProperty("ontologyTerm") - private final OntologyTermDto ontologyTerm; + @JsonProperty("ontologyTerms") + private final List ontologyTerms; @JsonProperty("reviewed") private final boolean reviewed; @@ -31,18 +32,18 @@ public final class ExportMappingDto implements Serializable { private final ProvenanceDto created; @JsonCreator - public ExportMappingDto(@JsonProperty("ontologyTerm") OntologyTermDto ontologyTerm, + public ExportMappingDto(@JsonProperty("ontologyTerms") List ontologyTerms, @JsonProperty("reviewed") boolean reviewed, @JsonProperty("status") String status, @JsonProperty("created") ProvenanceDto created) { - this.ontologyTerm = ontologyTerm; + this.ontologyTerms = ontologyTerms; this.reviewed = reviewed; this.status = status; this.created = created; } - public OntologyTermDto getOntologyTerm() { - return ontologyTerm; + public List getOntologyTerms() { + return ontologyTerms; } public boolean isReviewed() { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingDto.java index 0c8bda7..52f1172 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingDto.java @@ -25,8 +25,8 @@ public final class MappingDto implements Serializable { private final String entityId; @NotNull - @JsonProperty("ontologyTerm") - private final OntologyTermDto ontologyTerm; + @JsonProperty("ontologyTerms") + private final List ontologyTerms; @JsonProperty("reviewed") private final boolean reviewed; @@ -47,7 +47,7 @@ public final class MappingDto implements Serializable { @JsonCreator public MappingDto(@JsonProperty("id") String id, @JsonProperty("entityId") String entityId, - @JsonProperty("ontologyTerm") OntologyTermDto ontologyTerm, + @JsonProperty("ontologyTerms") List ontologyTerms, @JsonProperty("reviewed") boolean reviewed, @JsonProperty("status") String status, @JsonProperty("reviews") List reviews, @@ -55,7 +55,7 @@ public MappingDto(@JsonProperty("id") String id, @JsonProperty("created") ProvenanceDto created) { this.id = id; this.entityId = entityId; - this.ontologyTerm = ontologyTerm; + this.ontologyTerms = ontologyTerms; this.reviewed = reviewed; this.status = status; this.reviews = reviews; @@ -67,8 +67,8 @@ public String getId() { return id; } - public OntologyTermDto getOntologyTerm() { - return ontologyTerm; + public List getOntologyTerms() { + return ontologyTerms; } public String getEntityId() { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java index 1b0e207..1af6ec2 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java @@ -16,11 +16,13 @@ public interface MappingService { List retrieveMappingsForEntity(String entityId); - List deleteMappingExcluding(Entity entity, String ontologyTermId); - Mapping addReviewToMapping(String mappingId, String comment, int noReviewsRequired, Provenance provenance); Mapping retrieveMappingById(String mappingId); Mapping addCommentToMapping(String mappingId, String body, Provenance provenance); + + void updateMapping(String mappingId, OntologyTerm ontologyTerm, Provenance provenance); + + List deleteMapping(String mappingId, String ontoTermId, Provenance provenance); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java index 614fb32..e702648 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java @@ -15,7 +15,7 @@ public interface OntologyTermService { List retrieveAllTerms(); - OntologyTerm retrieveTermByIri(String iri); + OntologyTerm retrieveTermByCurie(String curie); OntologyTerm retrieveTermById(String ontologyTermId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java index 00e4680..989bb73 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java @@ -11,11 +11,13 @@ import uk.ac.ebi.spot.ontotools.curation.rest.dto.export.ExportEntityDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.export.ExportMappingDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.export.ExportMappingSuggestionDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.OntologyTermDto; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.util.ArrayList; import java.util.List; +import java.util.stream.Collectors; import java.util.zip.ZipEntry; import java.util.zip.ZipOutputStream; @@ -38,7 +40,8 @@ public void add(Entity entity, List mappingList, List ontologyTermDtos = mapping.getOntologyTerms().stream().map(OntologyTermDtoAssembler::assemble).collect(Collectors.toList()); + mappings.add(new ExportMappingDto(ontologyTermDtos, mapping.isReviewed(), mapping.getStatus(), ProvenanceDtoAssembler.assemble(mapping.getCreated()))); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java index 5177d1e..1a16da9 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java @@ -17,7 +17,6 @@ import uk.ac.ebi.spot.ontotools.curation.service.OntologyTermService; import java.util.*; -import java.util.stream.Collectors; @Service public class MappingServiceImpl implements MappingService { @@ -33,33 +32,86 @@ public class MappingServiceImpl implements MappingService { @Override public Mapping createMapping(Entity entity, OntologyTerm ontologyTerm, Provenance provenance) { log.info("Creating mapping for entity [{}]: {}", entity.getName(), ontologyTerm.getCurie()); - Optional mappingOp = mappingRepository.findByEntityIdAndOntologyTermId(entity.getId(), ontologyTerm.getId()); - if (mappingOp.isPresent()) { - log.warn("Mapping for between entity [{}] and ontology term [{}] already exists: {}", entity.getName(), ontologyTerm.getCurie(), mappingOp.get().getId()); - return mappingOp.get(); + List mappings = mappingRepository.findByEntityId(entity.getId()); + for (Mapping mapping : mappings) { + if (mapping.getOntologyTermIds().contains(ontologyTerm.getId())) { + log.warn("Mapping for between entity [{}] and ontology term [{}] already exists: {}", entity.getName(), ontologyTerm.getCurie(), mapping.getId()); + return mapping; + } } - Mapping created = mappingRepository.insert(new Mapping(null, entity.getId(), ontologyTerm.getId(), entity.getProjectId(), + Mapping created = mappingRepository.insert(new Mapping(null, entity.getId(), Arrays.asList(new String[]{ontologyTerm.getId()}), entity.getProjectId(), false, new ArrayList<>(), new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), provenance, null)); log.info("Mapping for between entity [{}] and ontology term [{}] created: {}", entity.getName(), ontologyTerm.getCurie(), created.getId()); return created; } + @Override + public void updateMapping(String mappingId, OntologyTerm ontologyTerm, Provenance provenance) { + log.info("Updating mapping [{}]: {}", mappingId, ontologyTerm.getCurie()); + Optional mappingOp = mappingRepository.findById(mappingId); + if (!mappingOp.isPresent()) { + log.error("Mapping not found: {}", mappingId); + throw new EntityNotFoundException("Mapping not found: " + mappingId); + } + + /** + * TODO: Associate the provenance to the ontology term rather than the entire mapping !? + */ + Mapping mapping = mappingOp.get(); + mapping.getOntologyTermIds().add(ontologyTerm.getId()); + mappingRepository.save(mapping); + } + + @Override + public List deleteMapping(String mappingId, String ontoTermId, Provenance provenance) { + Optional mappingOp = mappingRepository.findById(mappingId); + if (!mappingOp.isPresent()) { + log.error("Mapping not found: {}", mappingId); + throw new EntityNotFoundException("Mapping not found: " + mappingId); + } + + Mapping mapping = mappingOp.get(); + List result = new ArrayList<>(); + if (ontoTermId != null) { + mapping.getOntologyTermIds().remove(ontoTermId); + result.add(ontoTermId); + mappingRepository.save(mapping); + } else { + result.addAll(mapping.getOntologyTermIds()); + mappingRepository.delete(mapping); + } + + return result; + } + @Override public Map> retrieveMappingsForEntities(List entityIds) { log.info("Retrieving mappings for entities: {}", entityIds); List mappings = mappingRepository.findByEntityIdIn(entityIds); - List ontologyTermIds = mappings.stream().map(Mapping::getOntologyTermId).collect(Collectors.toList()); + List ontologyTermIds = new ArrayList<>(); + for (Mapping mapping : mappings) { + for (String oId : mapping.getOntologyTermIds()) { + if (!ontologyTermIds.contains(oId)) { + ontologyTermIds.add(oId); + } + } + } Map ontologyTermMap = ontologyTermService.retrieveTerms(ontologyTermIds); log.info("Found {} mappings.", mappings.size()); Map> result = new HashMap<>(); for (Mapping mapping : mappings) { - if (!ontologyTermMap.containsKey(mapping.getOntologyTermId())) { - log.warn("Unable to find ontology term [{}] for mapping suggestion: {}", mapping.getOntologyTermId(), mapping.getId()); - continue; + List ontologyTerms = new ArrayList<>(); + for (String oId : mapping.getOntologyTermIds()) { + if (!ontologyTermMap.containsKey(oId)) { + log.warn("Unable to find ontology term [{}] for mapping suggestion: {}", oId, mapping.getId()); + continue; + } else { + ontologyTerms.add(ontologyTermMap.get(oId)); + } } List list = result.containsKey(mapping.getEntityId()) ? result.get(mapping.getEntityId()) : new ArrayList<>(); - mapping.setOntologyTerm(ontologyTermMap.get(mapping.getOntologyTermId())); + mapping.setOntologyTerms(ontologyTerms); list.add(mapping); result.put(mapping.getEntityId(), list); } @@ -70,38 +122,50 @@ public Map> retrieveMappingsForEntities(List entit public List retrieveMappingsForEntity(String entityId) { log.info("Retrieving mappings for entity: {}", entityId); List mappings = mappingRepository.findByEntityId(entityId); - List ontologyTermIds = mappings.stream().map(Mapping::getOntologyTermId).collect(Collectors.toList()); + List ontologyTermIds = new ArrayList<>(); + for (Mapping mapping : mappings) { + for (String oId : mapping.getOntologyTermIds()) { + if (!ontologyTermIds.contains(oId)) { + ontologyTermIds.add(oId); + } + } + } + Map ontologyTermMap = ontologyTermService.retrieveTerms(ontologyTermIds); log.info("Found {} mappings.", mappings.size()); List result = new ArrayList<>(); for (Mapping mapping : mappings) { - if (!ontologyTermMap.containsKey(mapping.getOntologyTermId())) { - log.warn("Unable to find ontology term [{}] for mapping suggestion: {}", mapping.getOntologyTermId(), mapping.getId()); - continue; + List ontologyTerms = new ArrayList<>(); + for (String oId : mapping.getOntologyTermIds()) { + if (!ontologyTermMap.containsKey(oId)) { + log.warn("Unable to find ontology term [{}] for mapping suggestion: {}", oId, mapping.getId()); + continue; + } else { + ontologyTerms.add(ontologyTermMap.get(oId)); + } } - mapping.setOntologyTerm(ontologyTermMap.get(mapping.getOntologyTermId())); + mapping.setOntologyTerms(ontologyTerms); result.add(mapping); } return result; } + + /* @Override public List deleteMappingExcluding(Entity entity, String ontologyTermId) { log.info("Deleting mappings for entity [{}] excluding ontology term: {}", entity.getId(), ontologyTermId); - /** - * TODO: Archive the reviews associated with the previous mappings so that they can be restored if need be at a later time. - */ - List mappings = mappingRepository.findByEntityId(entity.getId()); List result = new ArrayList<>(); for (Mapping mapping : mappings) { - if (!mapping.getOntologyTermId().equalsIgnoreCase(ontologyTermId)) { + if (!mapping.getOntologyTermIds().contains(ontologyTermId)) { result.add(mapping.getOntologyTermId()); mappingRepository.delete(mapping); } } return result; } + */ @Override public Mapping addReviewToMapping(String mappingId, String comment, int noReviewsRequired, Provenance provenance) { @@ -145,4 +209,5 @@ public Mapping addCommentToMapping(String mappingId, String body, Provenance pro mapping = mappingRepository.save(mapping); return mapping; } + } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java index 8e82cbd..42987a1 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java @@ -96,7 +96,7 @@ public void deleteMappingSuggestions(String entityId, String ontologyTermId) { log.info("Deleting mapping suggestions for entity [{}] with ontology term: {}", entityId, ontologyTermId); List mappingSuggestions = mappingSuggestionRepository.findByEntityId(entityId); for (MappingSuggestion mappingSuggestion : mappingSuggestions) { - if (!mappingSuggestion.getOntologyTermId().equalsIgnoreCase(ontologyTermId)) { + if (mappingSuggestion.getOntologyTermId().equalsIgnoreCase(ontologyTermId)) { mappingSuggestionRepository.delete(mappingSuggestion); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java index ec14c3d..b63561e 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java @@ -110,12 +110,12 @@ public List retrieveAllTerms() { } @Override - public OntologyTerm retrieveTermByIri(String iri) { - log.info("Retrieving ontology term: {}", iri); - Optional ontologyTermOp = ontologyTermRepository.findByIriHash(DigestUtils.sha256Hex(iri)); + public OntologyTerm retrieveTermByCurie(String curie) { + log.info("Retrieving ontology term: {}", curie); + Optional ontologyTermOp = ontologyTermRepository.findByCurie(curie); if (!ontologyTermOp.isPresent()) { - log.error("Unable to find ontology term: {}", iri); - throw new EntityNotFoundException("Unable to find ontology term: " + iri); + log.error("Unable to find ontology term: {}", curie); + throw new EntityNotFoundException("Unable to find ontology term: " + curie); } return ontologyTermOp.get(); } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java index 8e44259..428162f 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java @@ -72,7 +72,7 @@ public void shouldGetEntities() throws Exception { assertEquals(EntityStatus.AUTO_MAPPED.name(), actual.getMappingStatus()); assertEquals(1, actual.getMappings().size()); - assertEquals("Orphanet:15", actual.getMappings().get(0).getOntologyTerm().getCurie()); + assertEquals("Orphanet:15", actual.getMappings().get(0).getOntologyTerms().get(0).getCurie()); assertEquals(MappingStatus.AWAITING_REVIEW.name(), actual.getMappings().get(0).getStatus()); assertEquals(2, actual.getMappingSuggestions().size()); @@ -112,7 +112,7 @@ public void shouldGetEntity() throws Exception { assertEquals(EntityStatus.AUTO_MAPPED.name(), actual.getMappingStatus()); assertEquals(1, actual.getMappings().size()); - assertEquals("Orphanet:15", actual.getMappings().get(0).getOntologyTerm().getCurie()); + assertEquals("Orphanet:15", actual.getMappings().get(0).getOntologyTerms().get(0).getCurie()); assertEquals(MappingStatus.AWAITING_REVIEW.name(), actual.getMappings().get(0).getStatus()); assertEquals(2, actual.getMappingSuggestions().size()); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 5ba3c51..8b11b84 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -101,6 +101,8 @@ public MatchmakerService matchmakerService() { protected Entity entity; + protected Mapping orphaTermMapping; + @Before public void setup() throws Exception { mongoTemplate.getDb().drop(); @@ -207,7 +209,8 @@ protected void createEntityTestData(String sourceId, String projectId, User user mappingSuggestionRepository.insert(new MappingSuggestion(null, entity.getId(), orphaTerm.getId(), projectId, provenance, null)); mappingSuggestionRepository.insert(new MappingSuggestion(null, entity.getId(), mondoTerm.getId(), projectId, provenance, null)); - mappingRepository.insert(new Mapping(null, entity.getId(), orphaTerm.getId(), projectId, false, new ArrayList<>(), new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), provenance, null)); + orphaTermMapping = mappingRepository.insert(new Mapping(null, entity.getId(), Arrays.asList(new String[]{orphaTerm.getId()}), + projectId, false, new ArrayList<>(), new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), provenance, null)); } protected EntityDto retrieveEntity(String projectId) throws Exception { diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java index 2432003..a3f56e3 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java @@ -14,6 +14,7 @@ import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingCreationDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingSuggestionDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.OntologyTermDto; import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; @@ -23,9 +24,8 @@ import java.util.Arrays; import java.util.List; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertNotNull; -import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; +import static org.junit.Assert.*; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; @ContextConfiguration(classes = {IntegrationTest.MockTaskExecutorConfig.class}) @@ -64,7 +64,7 @@ public void shouldGetMappings() throws Exception { assertEquals(EntityStatus.AUTO_MAPPED.name(), actual.getMappingStatus()); assertEquals(1, actual.getMappings().size()); - assertEquals("Orphanet:15", actual.getMappings().get(0).getOntologyTerm().getCurie()); + assertEquals("Orphanet:15", actual.getMappings().get(0).getOntologyTerms().get(0).getCurie()); assertEquals(MappingStatus.AWAITING_REVIEW.name(), actual.getMappings().get(0).getStatus()); assertEquals(2, actual.getMappingSuggestions().size()); @@ -114,23 +114,157 @@ public void shouldCreateMapping() throws Exception { assertEquals("Achondroplasia", actual.getName()); assertEquals(EntityStatus.MANUALLY_MAPPED.name(), actual.getMappingStatus()); + assertEquals(2, actual.getMappings().size()); + int foundCuries = 0; + for (MappingDto mappingDto : actual.getMappings()) { + if (mappingDto.getOntologyTerms().get(0).getCurie().equalsIgnoreCase("Orphanet:15")) { + foundCuries++; + } + if (mappingDto.getOntologyTerms().get(0).getCurie().equalsIgnoreCase("MONDO:0007037")) { + foundCuries++; + } + } + + assertEquals(2, foundCuries); + for (MappingDto mappingDto : actual.getMappings()) { + assertEquals(MappingStatus.AWAITING_REVIEW.name(), mappingDto.getStatus()); + } + + assertEquals(1, actual.getMappingSuggestions().size()); + assertEquals("Orphanet:15", actual.getMappingSuggestions().get(0).getOntologyTerm().getCurie()); + + assertEquals(sourceDto.getId(), actual.getSource().getId()); + } + + /** + * PUT /v1/projects/{projectId}/mappings/{mappingId} + */ + @Test + public void shouldUpdateMapping() throws Exception { + EntityDto entityDto = super.retrieveEntity(project.getId()); + OntologyTermDto ontologyTermDto = null; + for (MappingSuggestionDto mappingSuggestionDto : entityDto.getMappingSuggestions()) { + if (mappingSuggestionDto.getOntologyTerm().getCurie().equalsIgnoreCase("MONDO:0007037")) { + ontologyTermDto = mappingSuggestionDto.getOntologyTerm(); + break; + } + } + assertNotNull(ontologyTermDto); + MappingCreationDto mappingCreationDto = new MappingCreationDto(entityDto.getId(), ontologyTermDto); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + orphaTermMapping.getId(); + String response = mockMvc.perform(put(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(mappingCreationDto)) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + EntityDto actual = mapper.readValue(response, new TypeReference() { + }); + + assertEquals("Achondroplasia", actual.getName()); + assertEquals(EntityStatus.MANUALLY_MAPPED.name(), actual.getMappingStatus()); + assertEquals(1, actual.getMappings().size()); - assertEquals("MONDO:0007037", actual.getMappings().get(0).getOntologyTerm().getCurie()); - assertEquals(MappingStatus.AWAITING_REVIEW.name(), actual.getMappings().get(0).getStatus()); + int foundCuries = 0; + for (OntologyTermDto ontologyTerm : actual.getMappings().get(0).getOntologyTerms()) { + if (ontologyTerm.getCurie().equalsIgnoreCase("Orphanet:15")) { + foundCuries++; + } + if (ontologyTerm.getCurie().equalsIgnoreCase("MONDO:0007037")) { + foundCuries++; + } + } - assertEquals(2, actual.getMappingSuggestions().size()); + assertEquals(2, foundCuries); + assertEquals(1, actual.getMappingSuggestions().size()); + assertEquals("Orphanet:15", actual.getMappingSuggestions().get(0).getOntologyTerm().getCurie()); + } + + /** + * DELETE /v1/projects/{projectId}/mappings/{mappingId}?curie= + */ + @Test + public void shouldDeleteMappingByCurie() throws Exception { + EntityDto entityDto = super.retrieveEntity(project.getId()); + OntologyTermDto ontologyTermDto = null; + for (MappingSuggestionDto mappingSuggestionDto : entityDto.getMappingSuggestions()) { + if (mappingSuggestionDto.getOntologyTerm().getCurie().equalsIgnoreCase("MONDO:0007037")) { + ontologyTermDto = mappingSuggestionDto.getOntologyTerm(); + break; + } + } + assertNotNull(ontologyTermDto); + MappingCreationDto mappingCreationDto = new MappingCreationDto(entityDto.getId(), ontologyTermDto); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + orphaTermMapping.getId(); + String response = mockMvc.perform(put(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(mappingCreationDto)) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + EntityDto actual = mapper.readValue(response, new TypeReference() { + }); + + assertEquals(1, actual.getMappings().size()); int foundCuries = 0; - for (MappingSuggestionDto mappingSuggestion : actual.getMappingSuggestions()) { - if (mappingSuggestion.getOntologyTerm().getCurie().equalsIgnoreCase("Orphanet:15")) { + for (OntologyTermDto ontologyTerm : actual.getMappings().get(0).getOntologyTerms()) { + if (ontologyTerm.getCurie().equalsIgnoreCase("Orphanet:15")) { foundCuries++; } - if (mappingSuggestion.getOntologyTerm().getCurie().equalsIgnoreCase("MONDO:0007037")) { + if (ontologyTerm.getCurie().equalsIgnoreCase("MONDO:0007037")) { foundCuries++; } } assertEquals(2, foundCuries); - assertEquals(sourceDto.getId(), actual.getSource().getId()); + assertEquals(1, actual.getMappingSuggestions().size()); + assertEquals("Orphanet:15", actual.getMappingSuggestions().get(0).getOntologyTerm().getCurie()); + + endpoint += "?curie=MONDO:0007037"; + + mockMvc.perform(delete(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()); + + entityDto = super.retrieveEntity(project.getId()); + assertEquals(1, entityDto.getMappings().size()); + assertEquals(1, entityDto.getMappings().get(0).getOntologyTerms().size()); + assertEquals("Orphanet:15", entityDto.getMappings().get(0).getOntologyTerms().get(0).getCurie()); + + assertEquals(2, entityDto.getMappingSuggestions().size()); } + /** + * DELETE /v1/projects/{projectId}/mappings/{mappingId} + */ + @Test + public void shouldDeleteMapping() throws Exception { + EntityDto entityDto = super.retrieveEntity(project.getId()); + OntologyTermDto ontologyTermDto = null; + for (MappingSuggestionDto mappingSuggestionDto : entityDto.getMappingSuggestions()) { + if (mappingSuggestionDto.getOntologyTerm().getCurie().equalsIgnoreCase("MONDO:0007037")) { + ontologyTermDto = mappingSuggestionDto.getOntologyTerm(); + break; + } + } + assertNotNull(ontologyTermDto); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + orphaTermMapping.getId(); + mockMvc.perform(delete(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()); + + entityDto = super.retrieveEntity(project.getId()); + assertTrue(entityDto.getMappings().isEmpty()); + assertEquals(2, entityDto.getMappingSuggestions().size()); + } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java index 5bcbc60..86665dd 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java @@ -118,7 +118,7 @@ public void runMatchmakingTest() { assertEquals(1, mappings.size()); for (Mapping mapping : mappings) { - assertTrue(ontoMap.containsKey(mapping.getOntologyTermId())); + assertTrue(ontoMap.containsKey(mapping.getOntologyTermIds().get(0))); assertEquals(MappingStatus.AWAITING_REVIEW.name(), mapping.getStatus()); } } From ea5014c06661862d526d6b72c490ce7a43b791fe Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Wed, 3 Mar 2021 16:13:52 +0800 Subject: [PATCH 27/72] Fixed missing runtime dependency. --- pom.xml | 6 ++++++ .../ontotools/curation/domain/mapping/OntologyTerm.java | 4 ++++ .../curation/service/impl/MatchmakerServiceImpl.java | 4 ++++ .../ontotools/curation/service/impl/ZoomaServiceImpl.java | 2 +- 4 files changed, 15 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 482e527..359d0a6 100644 --- a/pom.xml +++ b/pom.xml @@ -26,6 +26,7 @@ 5.3.3 4.0.1 2.0.1.Final + 2.3.1 2.10.9 1.18.18 @@ -214,6 +215,11 @@ ${httpclient.version} + + javax.xml.bind + jaxb-api + ${jaxb.version} + joda-time joda-time diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTerm.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTerm.java index 69cea60..62c1dcc 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTerm.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTerm.java @@ -33,4 +33,8 @@ public class OntologyTerm { private String crossRefs; + @Override + public String toString() { + return curie + " (" + label + ")"; + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java index 673ab31..c7939b6 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java @@ -128,6 +128,7 @@ private void autoMap(Entity entity, Project project, User user) { } } + log.info(" -- Final IRIs and terms created: {}", finalIRIs, termsCreated); List newTerms = findExactMapping(entity, termsCreated, highConfidenceIRIs, project, provenance); if (!newTerms.isEmpty() && termsCreated.isEmpty()) { entity = entityService.updateMappingStatus(entity, EntityStatus.SUGGESTIONS_PROVIDED); @@ -161,9 +162,11 @@ private List findExactMapping(Entity entity, List te } } + log.info(" -- Got to the OXO part: {} | {} | {}", entity.getName(), termsCreated, highConfidenceIRIs); for (String iri : highConfidenceIRIs) { String ontoId = CurationUtil.ontoFromIRI(iri); List olsTerms = olsService.retrieveTerms(ontoId, iri); + log.info(" --- OntoId | OLS results: {} | {}", ontoId, olsTerms.size()); if (olsTerms.isEmpty()) { log.warn("Found no OLS results. Cannot continue mapping for: {}", entity.getName()); continue; @@ -179,6 +182,7 @@ private List findExactMapping(Entity entity, List te CurationUtil.configForField(entity, project.getOntologies())); for (OXOMappingResponseDto oxoMappingResponseDto : oxoMappings) { String targetOntoId = oxoMappingResponseDto.getTargetPrefix().toLowerCase(); + log.info(" ---- OXO onto: {} | {}", targetOntoId, oxoMappingResponseDto.getCurie()); olsTerms = olsService.retrieveTerms(targetOntoId, oxoMappingResponseDto.getCurie()); if (olsTerms.isEmpty()) { continue; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ZoomaServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ZoomaServiceImpl.java index a4397c7..220e2f0 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ZoomaServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ZoomaServiceImpl.java @@ -34,7 +34,7 @@ public class ZoomaServiceImpl implements ZoomaService { private RestTemplate restTemplate; public List annotate(String entityValue, List datasources, List ontologies) { - log.info("Calling Zooma for entity value: {}", entityValue); + log.info("Calling Zooma for entity value: {} | {} | {}", entityValue, datasources, ontologies); String encodedString; try { encodedString = URLEncoder.encode(entityValue, StandardCharsets.UTF_8.toString()); From 6f37a1e53e2323e3d48f6526f9b27f13b1f590da Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Wed, 3 Mar 2021 21:14:40 +0800 Subject: [PATCH 28/72] Removed calls to OXO. Optimized auto-mapping creation process. --- .../service/impl/MatchmakerServiceImpl.java | 97 ++++--------------- 1 file changed, 20 insertions(+), 77 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java index c7939b6..abf4ca8 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java @@ -12,13 +12,14 @@ import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.oxo.OXOMappingResponseDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.zooma.ZoomaResponseDto; import uk.ac.ebi.spot.ontotools.curation.service.*; import uk.ac.ebi.spot.ontotools.curation.util.CurationUtil; -import java.util.*; +import java.util.ArrayList; +import java.util.HashSet; +import java.util.List; +import java.util.Set; import java.util.stream.Stream; import static uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants.ZOOMA_CONFIDENCE_HIGH; @@ -43,12 +44,6 @@ public class MatchmakerServiceImpl implements MatchmakerService { @Autowired private OntologyTermService ontologyTermService; - @Autowired - private OLSService olsService; - - @Autowired - private OXOService oxoService; - @Autowired private UserService userService; @@ -118,10 +113,25 @@ private void autoMap(Entity entity, Project project, User user) { if (ontologyTerm != null) { termsCreated.add(ontologyTerm); mappingSuggestionsService.createMappingSuggestion(entity, ontologyTerm, provenance); + + if (highConfidenceIRIs.contains(iri)) { + if (entity.getMappingStatus().equals(EntityStatus.UNMAPPED) || entity.getMappingStatus().equals(EntityStatus.SUGGESTIONS_PROVIDED)) { + mappingService.createMapping(entity, ontologyTerm, provenance); + entity = entityService.updateMappingStatus(entity, EntityStatus.AUTO_MAPPED); + log.info("Found high confidence mapping for [{}] in: {}", entity.getName(), ontologyTerm.getIri()); + } + } else { + if (entity.getName().equalsIgnoreCase(ontologyTerm.getLabel()) && + (entity.getMappingStatus().equals(EntityStatus.UNMAPPED) || entity.getMappingStatus().equals(EntityStatus.SUGGESTIONS_PROVIDED))) { + mappingService.createMapping(entity, ontologyTerm, provenance); + entity = entityService.updateMappingStatus(entity, EntityStatus.AUTO_MAPPED); + log.info("Found exact text matching for [{}] in: {}", entity.getName(), ontologyTerm.getIri()); + } + } } } - if (!termsCreated.isEmpty()) { + if (!termsCreated.isEmpty() && entity.getMappingStatus().equals(EntityStatus.UNMAPPED)) { entity = entityService.updateMappingStatus(entity, EntityStatus.SUGGESTIONS_PROVIDED); if (entity == null) { return; @@ -129,74 +139,7 @@ private void autoMap(Entity entity, Project project, User user) { } log.info(" -- Final IRIs and terms created: {}", finalIRIs, termsCreated); - List newTerms = findExactMapping(entity, termsCreated, highConfidenceIRIs, project, provenance); - if (!newTerms.isEmpty() && termsCreated.isEmpty()) { - entity = entityService.updateMappingStatus(entity, EntityStatus.SUGGESTIONS_PROVIDED); - } - termsCreated.addAll(newTerms); mappingSuggestionsService.deleteMappingSuggestionsExcluding(entity, termsCreated); } - private List findExactMapping(Entity entity, List termsCreated, List highConfidenceIRIs, Project project, Provenance provenance) { - List ontoSuggestions = new ArrayList<>(); - - if (!entity.getMappingStatus().equals(EntityStatus.UNMAPPED)) { - log.warn("Entity has an existing mapping."); - } - - for (OntologyTerm ontologyTerm : termsCreated) { - if (highConfidenceIRIs.contains(ontologyTerm.getIri())) { - mappingService.createMapping(entity, ontologyTerm, provenance); - entity = entityService.updateMappingStatus(entity, EntityStatus.AUTO_MAPPED); - log.info("Found high confidence mapping for [{}] in: {}", entity.getName(), ontologyTerm.getIri()); - return ontoSuggestions; - } - } - - for (OntologyTerm ontologyTerm : termsCreated) { - if (entity.getName().equalsIgnoreCase(ontologyTerm.getLabel())) { - mappingService.createMapping(entity, ontologyTerm, provenance); - entity = entityService.updateMappingStatus(entity, EntityStatus.AUTO_MAPPED); - log.info("Found exact text matching for [{}] in: {}", entity.getName(), ontologyTerm.getIri()); - return ontoSuggestions; - } - } - - log.info(" -- Got to the OXO part: {} | {} | {}", entity.getName(), termsCreated, highConfidenceIRIs); - for (String iri : highConfidenceIRIs) { - String ontoId = CurationUtil.ontoFromIRI(iri); - List olsTerms = olsService.retrieveTerms(ontoId, iri); - log.info(" --- OntoId | OLS results: {} | {}", ontoId, olsTerms.size()); - if (olsTerms.isEmpty()) { - log.warn("Found no OLS results. Cannot continue mapping for: {}", entity.getName()); - continue; - } - if (olsTerms.size() > 1) { - log.warn("Found {} OLS results. Using only the first one to map to: {}", olsTerms.size(), entity.getName()); - } - - /** - * TODO: Discuss why are so many calls to OLS required - */ - List oxoMappings = oxoService.findMapping(Arrays.asList(new String[]{olsTerms.get(0).getCurie()}), - CurationUtil.configForField(entity, project.getOntologies())); - for (OXOMappingResponseDto oxoMappingResponseDto : oxoMappings) { - String targetOntoId = oxoMappingResponseDto.getTargetPrefix().toLowerCase(); - log.info(" ---- OXO onto: {} | {}", targetOntoId, oxoMappingResponseDto.getCurie()); - olsTerms = olsService.retrieveTerms(targetOntoId, oxoMappingResponseDto.getCurie()); - if (olsTerms.isEmpty()) { - continue; - } - String resultIri = olsTerms.get(0).getIri(); - OntologyTerm ontologyTerm = ontologyTermService.createTerm(resultIri, project); - if (ontologyTerm != null) { - ontoSuggestions.add(ontologyTerm); - mappingSuggestionsService.createMappingSuggestion(entity, ontologyTerm, provenance); - } - } - } - - return ontoSuggestions; - } - } From 47c1d3e7adbfc91fd4efc98b2a55e6a74ede70a4 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Wed, 3 Mar 2021 23:10:29 +0800 Subject: [PATCH 29/72] Added set of controlled matchmaking tests to understand all possible mapping scenarios. --- .../curation/service/ProjectService.java | 4 +- .../service/impl/MatchmakerServiceImpl.java | 2 +- .../service/impl/OntologyTermServiceImpl.java | 2 +- .../ontotools/curation/IntegrationTest.java | 20 ++ .../curation/MatchMakingContolledTest.java | 340 ++++++++++++++++++ 5 files changed, 364 insertions(+), 4 deletions(-) create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java index 1e4b457..23fa6b4 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java @@ -9,9 +9,9 @@ public interface ProjectService { List retrieveProjects(User user); - Project createProject(Project disassemble, User user); + Project createProject(Project project, User user); - Project updateProject(Project disassemble, String projectId, User user); + Project updateProject(Project project, String projectId, User user); void deleteProject(String projectId, User user); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java index abf4ca8..8b32810 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java @@ -114,7 +114,7 @@ private void autoMap(Entity entity, Project project, User user) { termsCreated.add(ontologyTerm); mappingSuggestionsService.createMappingSuggestion(entity, ontologyTerm, provenance); - if (highConfidenceIRIs.contains(iri)) { + if (highConfidenceIRIs.contains(ontologyTerm.getIri())) { if (entity.getMappingStatus().equals(EntityStatus.UNMAPPED) || entity.getMappingStatus().equals(EntityStatus.SUGGESTIONS_PROVIDED)) { mappingService.createMapping(entity, ontologyTerm, provenance); entity = entityService.updateMappingStatus(entity, EntityStatus.AUTO_MAPPED); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java index ec14c3d..48c55aa 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java @@ -83,7 +83,7 @@ public OntologyTerm createTerm(String iri, Project project) { DigestUtils.sha256Hex(iri), olsTermDto.getLabel(), TermStatus.CURRENT.name(), null, null); } else { OLSTermDto olsTermDto = parentOntoResponse.get(0); - ot = new OntologyTerm(null, olsTermDto.getCurie(), iri, DigestUtils.sha256Hex(iri), olsTermDto.getLabel(), termStatus, null, null); + ot = new OntologyTerm(null, olsTermDto.getCurie(), olsTermDto.getIri(), DigestUtils.sha256Hex(olsTermDto.getIri()), olsTermDto.getLabel(), termStatus, null, null); } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 5ba3c51..89740c4 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -31,6 +31,8 @@ import uk.ac.ebi.spot.ontotools.curation.repository.*; import uk.ac.ebi.spot.ontotools.curation.rest.dto.*; import uk.ac.ebi.spot.ontotools.curation.service.MatchmakerService; +import uk.ac.ebi.spot.ontotools.curation.service.OLSService; +import uk.ac.ebi.spot.ontotools.curation.service.ZoomaService; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; import javax.annotation.PreDestroy; @@ -67,6 +69,24 @@ public MatchmakerService matchmakerService() { } } + @Configuration + public static class MockZoomaServiceConfig { + + @Bean + public ZoomaService zoomaService() { + return mock(ZoomaService.class); + } + } + + @Configuration + public static class MockOLSServiceConfig { + + @Bean + public OLSService olsService() { + return mock(OLSService.class); + } + } + @Autowired private MongoTemplate mongoTemplate; diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java new file mode 100644 index 0000000..2ad85a8 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java @@ -0,0 +1,340 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import org.apache.commons.lang3.RandomStringUtils; +import org.joda.time.DateTime; +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.test.context.ContextConfiguration; +import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.domain.config.ExternalServiceConfig; +import uk.ac.ebi.spot.ontotools.curation.domain.config.ProjectMappingConfig; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.repository.ExternalServiceConfigRepository; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.zooma.ZoomaResponseDto; +import uk.ac.ebi.spot.ontotools.curation.service.*; +import uk.ac.ebi.spot.ontotools.curation.util.CurationUtil; + +import java.util.*; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.ArgumentMatchers.eq; +import static org.mockito.Mockito.when; + +@ContextConfiguration(classes = {IntegrationTest.MockTaskExecutorConfig.class, + IntegrationTest.MockZoomaServiceConfig.class, + IntegrationTest.MockOLSServiceConfig.class}) +public class MatchMakingContolledTest extends IntegrationTest { + + @Autowired + private ExternalServiceConfigRepository externalServiceConfigRepository; + + @Autowired + private EntityService entityService; + + @Autowired + private ProjectService projectService; + + @Autowired + private UserService userService; + + @Autowired + private MatchmakerService matchmakerService; + + @Autowired + private MappingSuggestionsService mappingSuggestionsService; + + @Autowired + private MappingService mappingService; + + @Autowired + private OntologyTermService ontologyTermService; + + private Project project; + + private SourceDto sourceDto; + + private Entity entity; + + private List datasources; + + private List ontologies; + + @Autowired + private ZoomaService zoomaService; + + @Autowired + private OLSService olsService; + + @Override + public void setup() throws Exception { + super.setup(); + externalServiceConfigRepository.insert(new ExternalServiceConfig(null, "OLS", Arrays.asList(new String[]{"orphanet::ordo"}))); + externalServiceConfigRepository.insert(new ExternalServiceConfig(null, "OXO", Arrays.asList(new String[]{"ordo::orphanet"}))); + + this.datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); + this.ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); + + ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo", 0); + user1 = userService.findByEmail(user1.getEmail()); + project = projectService.retrieveProject(projectDto.getId(), user1); + sourceDto = super.createSource(project.getId()); + Provenance provenance = new Provenance(user1.getName(), user1.getEmail(), DateTime.now()); + + /** + * Other examples: + * - Hemochromatosis type 1 + * - Retinal dystrophy + */ + entity = entityService.createEntity(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), + RandomStringUtils.randomAlphabetic(10), sourceDto.getId(), project.getId(), provenance, EntityStatus.UNMAPPED)); + } + + + /** + * Test case: + * - Get from Zooma at least 1 high confidence response; Ontology matches preferred. OLS returns the same IRI. + * -- Expect: mapping to be created. Number of mapping suggestions = number of ontology terms 'created' + */ + @Test + public void testCase1() { + String iri1 = "http://www.orpha.net/ORDO/Orphanet_15"; + String iri2 = "http://purl.obolibrary.org/obo/MONDO_0007037"; + + List zoomaResponseDtos = new ArrayList<>(); + zoomaResponseDtos.add(new ZoomaResponseDto(Arrays.asList(new String[]{iri1}), "HIGH")); + zoomaResponseDtos.add(new ZoomaResponseDto(Arrays.asList(new String[]{iri2}), "GOOD")); + + when(zoomaService.annotate(eq(entity.getName()), any(), any())).thenReturn(zoomaResponseDtos); + + when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri1)), eq(iri1))).thenReturn( + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri1, "Orphanet:15", "Achondroplasia", false)}) + ); + when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri2)), eq(iri2))).thenReturn( + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri2, "MONDO:0007037", "achondroplasia", false)}) + ); + + matchmakerService.runMatchmaking(sourceDto.getId(), project); + + Entity updated = entityService.retrieveEntity(entity.getId()); + assertEquals(EntityStatus.AUTO_MAPPED, updated.getMappingStatus()); + + List ontologyTerms = ontologyTermService.retrieveAllTerms(); + assertEquals(2, ontologyTerms.size()); + Map ontoMap = new HashMap<>(); + for (OntologyTerm ontologyTerm : ontologyTerms) { + ontoMap.put(ontologyTerm.getCurie(), ontologyTerm); + } + assertTrue(ontoMap.containsKey("Orphanet:15")); + assertTrue(ontoMap.containsKey("MONDO:0007037")); + + Map> mappingSuggestionMap = mappingSuggestionsService.retrieveMappingSuggestionsForEntities(Arrays.asList(new String[]{entity.getId()})); + assertEquals(1, mappingSuggestionMap.size()); + List mappingSuggestions = mappingSuggestionMap.get(entity.getId()); + assertEquals(2, mappingSuggestions.size()); + + Map> mappingMap = mappingService.retrieveMappingsForEntities(Arrays.asList(new String[]{entity.getId()})); + assertEquals(1, mappingMap.size()); + List mappings = mappingMap.get(entity.getId()); + assertEquals(1, mappings.size()); + } + + /** + * Test case: + * - Get from Zooma at least 1 high confidence response; Ontology matches preferred. OLS returns a different IRI - not in high confidence. + * -- Expect: No mapping created. Number of mapping suggestions = number of ontology terms 'created' + */ + @Test + public void testCase2() { + String iri1 = "http://www.orpha.net/ORDO/Orphanet_15"; + String iri2 = "http://purl.obolibrary.org/obo/MONDO_0007037"; + String iri3 = "http://purl.obolibrary.org/obo/ICD_12356"; + + List zoomaResponseDtos = new ArrayList<>(); + zoomaResponseDtos.add(new ZoomaResponseDto(Arrays.asList(new String[]{iri1}), "HIGH")); + zoomaResponseDtos.add(new ZoomaResponseDto(Arrays.asList(new String[]{iri2}), "GOOD")); + + when(zoomaService.annotate(eq(entity.getName()), any(), any())).thenReturn(zoomaResponseDtos); + + when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri1)), eq(iri1))).thenReturn( + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri3, "ICD:12356", "Pseudo-achondroplasia", false)}) + ); + when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri2)), eq(iri2))).thenReturn( + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri2, "MONDO:0007037", "ACH", false)}) + ); + + matchmakerService.runMatchmaking(sourceDto.getId(), project); + + Entity updated = entityService.retrieveEntity(entity.getId()); + assertEquals(EntityStatus.SUGGESTIONS_PROVIDED, updated.getMappingStatus()); + + List ontologyTerms = ontologyTermService.retrieveAllTerms(); + assertEquals(2, ontologyTerms.size()); + Map ontoMap = new HashMap<>(); + for (OntologyTerm ontologyTerm : ontologyTerms) { + ontoMap.put(ontologyTerm.getCurie(), ontologyTerm); + } + assertTrue(ontoMap.containsKey("ICD:12356")); + assertTrue(ontoMap.containsKey("MONDO:0007037")); + + Map> mappingSuggestionMap = mappingSuggestionsService.retrieveMappingSuggestionsForEntities(Arrays.asList(new String[]{entity.getId()})); + assertEquals(1, mappingSuggestionMap.size()); + List mappingSuggestions = mappingSuggestionMap.get(entity.getId()); + assertEquals(2, mappingSuggestions.size()); + + Map> mappingMap = mappingService.retrieveMappingsForEntities(Arrays.asList(new String[]{entity.getId()})); + assertEquals(0, mappingMap.size()); + } + + /** + * Test case: + * - Get from Zooma at least 1 high confidence response; Ontology does not match preferred. + * -- Expect: No mapping created. Number of mapping suggestions = number of ontology terms 'created' + */ + @Test + public void testCase3() { + String iri1 = "http://www.orpha.net/ORDO/Orphanet_15"; + String iri2 = "http://purl.obolibrary.org/obo/MONDO_0007037"; + + List zoomaResponseDtos = new ArrayList<>(); + zoomaResponseDtos.add(new ZoomaResponseDto(Arrays.asList(new String[]{iri1}), "HIGH")); + zoomaResponseDtos.add(new ZoomaResponseDto(Arrays.asList(new String[]{iri2}), "GOOD")); + + when(zoomaService.annotate(eq(entity.getName()), any(), any())).thenReturn(zoomaResponseDtos); + + when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri1)), eq(iri1))).thenReturn( + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri1, "Orphanet:15", "Achondroplasia", false)}) + ); + when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri2)), eq(iri2))).thenReturn( + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri2, "MONDO:0007037", "ACH", false)}) + ); + + this.ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp"}); + this.project.setOntologies(Arrays.asList(new ProjectMappingConfig[]{new ProjectMappingConfig(ProjectMappingConfig.ALL, this.ontologies)})); + this.projectService.updateProject(this.project, this.project.getId(), this.user1); + + matchmakerService.runMatchmaking(sourceDto.getId(), project); + + Entity updated = entityService.retrieveEntity(entity.getId()); + assertEquals(EntityStatus.SUGGESTIONS_PROVIDED, updated.getMappingStatus()); + + List ontologyTerms = ontologyTermService.retrieveAllTerms(); + assertEquals(1, ontologyTerms.size()); + Map ontoMap = new HashMap<>(); + for (OntologyTerm ontologyTerm : ontologyTerms) { + ontoMap.put(ontologyTerm.getCurie(), ontologyTerm); + } + assertEquals("MONDO:0007037", ontologyTerms.get(0).getCurie()); + + Map> mappingSuggestionMap = mappingSuggestionsService.retrieveMappingSuggestionsForEntities(Arrays.asList(new String[]{entity.getId()})); + assertEquals(1, mappingSuggestionMap.size()); + List mappingSuggestions = mappingSuggestionMap.get(entity.getId()); + assertEquals(1, mappingSuggestions.size()); + + Map> mappingMap = mappingService.retrieveMappingsForEntities(Arrays.asList(new String[]{entity.getId()})); + assertEquals(0, mappingMap.size()); + } + + /** + * Test case: + * - Get from Zooma no high confidence responses; Label matches + * -- Expect: mapping to be created. Number of mapping suggestions = number of ontology terms 'created' + */ + @Test + public void testCase4() { + String iri1 = "http://www.orpha.net/ORDO/Orphanet_15"; + String iri2 = "http://purl.obolibrary.org/obo/MONDO_0007037"; + + List zoomaResponseDtos = new ArrayList<>(); + zoomaResponseDtos.add(new ZoomaResponseDto(Arrays.asList(new String[]{iri1}), "GOOD")); + zoomaResponseDtos.add(new ZoomaResponseDto(Arrays.asList(new String[]{iri2}), "GOOD")); + + when(zoomaService.annotate(eq(entity.getName()), any(), any())).thenReturn(zoomaResponseDtos); + + when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri1)), eq(iri1))).thenReturn( + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri1, "Orphanet:15", "Achondroplasia", false)}) + ); + when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri2)), eq(iri2))).thenReturn( + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri2, "MONDO:0007037", "ACH", false)}) + ); + + matchmakerService.runMatchmaking(sourceDto.getId(), project); + + Entity updated = entityService.retrieveEntity(entity.getId()); + assertEquals(EntityStatus.AUTO_MAPPED, updated.getMappingStatus()); + + List ontologyTerms = ontologyTermService.retrieveAllTerms(); + assertEquals(2, ontologyTerms.size()); + Map ontoMap = new HashMap<>(); + for (OntologyTerm ontologyTerm : ontologyTerms) { + ontoMap.put(ontologyTerm.getCurie(), ontologyTerm); + } + assertTrue(ontoMap.containsKey("Orphanet:15")); + assertTrue(ontoMap.containsKey("MONDO:0007037")); + + Map> mappingSuggestionMap = mappingSuggestionsService.retrieveMappingSuggestionsForEntities(Arrays.asList(new String[]{entity.getId()})); + assertEquals(1, mappingSuggestionMap.size()); + List mappingSuggestions = mappingSuggestionMap.get(entity.getId()); + assertEquals(2, mappingSuggestions.size()); + + Map> mappingMap = mappingService.retrieveMappingsForEntities(Arrays.asList(new String[]{entity.getId()})); + assertEquals(1, mappingMap.size()); + List mappings = mappingMap.get(entity.getId()); + assertEquals(1, mappings.size()); + } + + /** + * Test case: + * - Get from Zooma no high confidence responses; Label does not match + * -- Expect: No mapping created. Number of mapping suggestions = number of ontology terms 'created' + */ + @Test + public void testCase5() { + String iri1 = "http://www.orpha.net/ORDO/Orphanet_15"; + String iri2 = "http://purl.obolibrary.org/obo/MONDO_0007037"; + + List zoomaResponseDtos = new ArrayList<>(); + zoomaResponseDtos.add(new ZoomaResponseDto(Arrays.asList(new String[]{iri1}), "GOOD")); + zoomaResponseDtos.add(new ZoomaResponseDto(Arrays.asList(new String[]{iri2}), "GOOD")); + + when(zoomaService.annotate(eq(entity.getName()), any(), any())).thenReturn(zoomaResponseDtos); + + when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri1)), eq(iri1))).thenReturn( + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri1, "Orphanet:15", "Pseudo-achondroplasia", false)}) + ); + when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri2)), eq(iri2))).thenReturn( + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri2, "MONDO:0007037", "ACH", false)}) + ); + + matchmakerService.runMatchmaking(sourceDto.getId(), project); + + Entity updated = entityService.retrieveEntity(entity.getId()); + assertEquals(EntityStatus.SUGGESTIONS_PROVIDED, updated.getMappingStatus()); + + List ontologyTerms = ontologyTermService.retrieveAllTerms(); + assertEquals(2, ontologyTerms.size()); + Map ontoMap = new HashMap<>(); + for (OntologyTerm ontologyTerm : ontologyTerms) { + ontoMap.put(ontologyTerm.getCurie(), ontologyTerm); + } + assertTrue(ontoMap.containsKey("Orphanet:15")); + assertTrue(ontoMap.containsKey("MONDO:0007037")); + + Map> mappingSuggestionMap = mappingSuggestionsService.retrieveMappingSuggestionsForEntities(Arrays.asList(new String[]{entity.getId()})); + assertEquals(1, mappingSuggestionMap.size()); + List mappingSuggestions = mappingSuggestionMap.get(entity.getId()); + assertEquals(2, mappingSuggestions.size()); + + Map> mappingMap = mappingService.retrieveMappingsForEntities(Arrays.asList(new String[]{entity.getId()})); + assertEquals(0, mappingMap.size()); + } +} From a65c00636ead505ca9ef28405af3b6115d76cd07 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Thu, 4 Mar 2021 18:13:10 +0800 Subject: [PATCH 30/72] Increased test coverage for all edge-case scenarios. --- .../controller/OntologyTermController.java | 9 +- .../service/impl/ProjectServiceImpl.java | 5 +- .../ontotools/curation/DataImportTest.java | 32 +++ .../curation/EntityControllerTest.java | 30 ++- .../ontotools/curation/IntegrationTest.java | 4 + .../MappingCommentsControllerTest.java | 38 +++- .../MappingReviewsControllerTest.java | 71 +++++++ .../curation/MappingsControllerTest.java | 53 ++++- .../curation/OntologyTermControllerTest.java | 34 ++++ .../curation/PlatformAdminControllerTest.java | 18 +- .../curation/ProjectsControllerTest.java | 88 ++++++++- .../curation/SourcesControllerTest.java | 71 +++++++ .../curation/UsersControllerTest.java | 184 ++++++++++++++++++ 13 files changed, 624 insertions(+), 13 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/OntologyTermController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/OntologyTermController.java index af0d442..9e683ce 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/OntologyTermController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/OntologyTermController.java @@ -7,17 +7,20 @@ import org.springframework.http.MediaType; import org.springframework.web.bind.annotation.*; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; -import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.OntologyTermDtoAssembler; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.OntologyTermDto; import uk.ac.ebi.spot.ontotools.curation.service.JWTService; import uk.ac.ebi.spot.ontotools.curation.service.OntologyTermService; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; import uk.ac.ebi.spot.ontotools.curation.util.HeadersUtil; import javax.servlet.http.HttpServletRequest; import javax.validation.Valid; +import java.util.Arrays; @RestController @RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) @@ -31,6 +34,9 @@ public class OntologyTermController { @Autowired private OntologyTermService ontologyTermService; + @Autowired + private ProjectService projectService; + /** * POST /v1/projects/{projectId}/ontology-terms */ @@ -41,6 +47,7 @@ public class OntologyTermController { public OntologyTermDto createOntologyTerm(@PathVariable String projectId, @RequestBody @Valid OntologyTermDto ontologyTermDto, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to create ontology term: {} | {}", user.getEmail(), projectId, ontologyTermDto.getCurie()); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); OntologyTerm created = ontologyTermService.createTerm(OntologyTermDtoAssembler.disassemble(ontologyTermDto)); return OntologyTermDtoAssembler.assemble(created); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java index 9ddb371..c12cd13 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java @@ -8,7 +8,6 @@ import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.auth.Role; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; -import uk.ac.ebi.spot.ontotools.curation.exception.AuthorizationException; import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; import uk.ac.ebi.spot.ontotools.curation.repository.ProjectRepository; import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; @@ -62,7 +61,7 @@ public Project updateProject(Project project, String projectId, User user) { return projectRepository.save(existing); } else { log.error("User [{}] cannot change project [{}]. Required access is missing.", user.getEmail(), projectId); - throw new AuthorizationException("User [" + user.getEmail() + "] cannot change project [" + projectId + "]. Required access is missing."); + throw new EntityNotFoundException("No project [" + projectId + "] found for user [" + user.getEmail() + "]"); } } @@ -83,7 +82,7 @@ public void deleteProject(String projectId, User user) { */ } else { log.error("User [{}] cannot delete project [{}]. Required access is missing.", user.getEmail(), projectId); - throw new AuthorizationException("User [" + user.getEmail() + "] cannot delete project [" + projectId + "]. Required access is missing."); + throw new EntityNotFoundException("No project [" + projectId + "] found for user [" + user.getEmail() + "]"); } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/DataImportTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/DataImportTest.java index f3ced04..cf8ccce 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/DataImportTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/DataImportTest.java @@ -9,6 +9,7 @@ import org.springframework.test.web.servlet.request.MockMvcRequestBuilders; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.repository.EntityRepository; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; @@ -16,6 +17,7 @@ import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; import java.io.InputStream; +import java.util.Arrays; import static org.junit.Assert.assertEquals; import static org.mockito.ArgumentMatchers.any; @@ -62,4 +64,34 @@ public void shouldImportData() throws Exception { assertEquals(12443, entityRepository.findAll().size()); } + @Test + public void shouldNotImportData() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + + CurationConstants.API_SOURCES + "/" + sourceDto.getId() + CurationConstants.API_UPLOAD; + + InputStream fileAsStream = new ClassPathResource("import_test.json").getInputStream(); + MockMultipartFile testFile = new MockMultipartFile("file", "import_test.json", + ContentType.APPLICATION_JSON.getMimeType(), fileAsStream); + + mockMvc.perform(MockMvcRequestBuilders.multipart(endpoint) + .file(testFile) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + @Test + public void shouldNotImportDataAsConsumer() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + + CurationConstants.API_SOURCES + "/" + sourceDto.getId() + CurationConstants.API_UPLOAD; + userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); + + InputStream fileAsStream = new ClassPathResource("import_test.json").getInputStream(); + MockMultipartFile testFile = new MockMultipartFile("file", "import_test.json", + ContentType.APPLICATION_JSON.getMimeType(), fileAsStream); + + mockMvc.perform(MockMvcRequestBuilders.multipart(endpoint) + .file(testFile) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java index 8e44259..17f1c8b 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java @@ -10,7 +10,10 @@ import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; import uk.ac.ebi.spot.ontotools.curation.domain.Project; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.*; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.RestResponsePage; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingSuggestionDto; import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; import uk.ac.ebi.spot.ontotools.curation.service.UserService; @@ -129,4 +132,29 @@ public void shouldGetEntity() throws Exception { assertEquals(2, foundCuries); assertEquals(sourceDto.getId(), actual.getSource().getId()); } + + /** + * GET /v1/projects/{projectId}/entities + */ + @Test + public void shouldNotGetEntities() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_ENTITIES; + mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * GET /v1/projects/{projectId}/entities/{entityId} + */ + @Test + public void shouldNotGetEntity() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_ENTITIES + "/" + entity.getId(); + mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 89740c4..c131ede 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -32,6 +32,7 @@ import uk.ac.ebi.spot.ontotools.curation.rest.dto.*; import uk.ac.ebi.spot.ontotools.curation.service.MatchmakerService; import uk.ac.ebi.spot.ontotools.curation.service.OLSService; +import uk.ac.ebi.spot.ontotools.curation.service.UserService; import uk.ac.ebi.spot.ontotools.curation.service.ZoomaService; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; @@ -111,6 +112,9 @@ public OLSService olsService() { @Autowired private EntityRepository entityRepository; + @Autowired + protected UserService userService; + protected MockMvc mockMvc; protected ObjectMapper mapper; diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java index e81007c..ccf5d41 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java @@ -61,7 +61,7 @@ public void setup() throws Exception { * POST /v1/projects/{projectId}/mappings/{mappingId}/comments */ @Test - public void shouldCreateReview() throws Exception { + public void shouldCreateComment() throws Exception { EntityDto actual = super.retrieveEntity(project.getId()); MappingDto mappingDto = actual.getMappings().get(0); @@ -88,7 +88,7 @@ public void shouldCreateReview() throws Exception { * GET /v1/projects/{projectId}/mappings/{mappingId}/comments */ @Test - public void shouldGetReviews() throws Exception { + public void shouldGetComments() throws Exception { EntityDto actual = super.retrieveEntity(project.getId()); MappingDto mappingDto = actual.getMappings().get(0); mappingService.addCommentToMapping(mappingDto.getId(), "New comment", ProvenanceDtoAssembler.disassemble(mappingDto.getCreated())); @@ -108,4 +108,38 @@ public void shouldGetReviews() throws Exception { assertEquals(1, commentDtos.size()); assertEquals("New comment", commentDtos.get(0).getBody()); } + + /** + * POST /v1/projects/{projectId}/mappings/{mappingId}/comments + */ + @Test + public void shouldNotCreateComment() throws Exception { + EntityDto actual = super.retrieveEntity(project.getId()); + MappingDto mappingDto = actual.getMappings().get(0); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_COMMENTS; + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content("New comment") + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * GET /v1/projects/{projectId}/mappings/{mappingId}/comments + */ + @Test + public void shouldNotGetComments() throws Exception { + EntityDto actual = super.retrieveEntity(project.getId()); + MappingDto mappingDto = actual.getMappings().get(0); + mappingService.addCommentToMapping(mappingDto.getId(), "New comment", ProvenanceDtoAssembler.disassemble(mappingDto.getCreated())); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_COMMENTS; + mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java index eab0332..5b634dc 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java @@ -8,6 +8,7 @@ import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.ProvenanceDtoAssembler; @@ -138,4 +139,74 @@ public void shouldGetReviews() throws Exception { assertEquals(1, reviewDtos.size()); assertEquals("New review", reviewDtos.get(0).getComment()); } + + /** + * POST /v1/projects/{projectId}/mappings/{mappingId}/reviews + */ + @Test + public void shouldNotCreateReview() throws Exception { + EntityDto actual = super.retrieveEntity(project.getId()); + MappingDto mappingDto = actual.getMappings().get(0); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_REVIEWS; + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content("New review") + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * GET /v1/projects/{projectId}/mappings/{mappingId}/reviews + */ + @Test + public void shouldNotGetReviews() throws Exception { + EntityDto actual = super.retrieveEntity(project.getId()); + MappingDto mappingDto = actual.getMappings().get(0); + mappingService.addReviewToMapping(mappingDto.getId(), "New review", 3, ProvenanceDtoAssembler.disassemble(mappingDto.getCreated())); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_REVIEWS; + mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * POST /v1/projects/{projectId}/mappings/{mappingId}/reviews + */ + @Test + public void shouldNotCreateReviewAsConsumer() throws Exception { + EntityDto actual = super.retrieveEntity(project.getId()); + MappingDto mappingDto = actual.getMappings().get(0); + userService.addUserToProject(super.user2, project.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_REVIEWS; + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content("New review") + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * GET /v1/projects/{projectId}/mappings/{mappingId}/reviews + */ + @Test + public void shouldNotGetReviewsAsConsumer() throws Exception { + EntityDto actual = super.retrieveEntity(project.getId()); + MappingDto mappingDto = actual.getMappings().get(0); + mappingService.addReviewToMapping(mappingDto.getId(), "New review", 3, ProvenanceDtoAssembler.disassemble(mappingDto.getCreated())); + userService.addUserToProject(super.user2, project.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_REVIEWS; + mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java index 2432003..cedba69 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java @@ -5,10 +5,7 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.MediaType; import org.springframework.test.context.ContextConfiguration; -import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; -import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; -import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; -import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; +import uk.ac.ebi.spot.ontotools.curation.constants.*; import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; @@ -133,4 +130,52 @@ public void shouldCreateMapping() throws Exception { assertEquals(sourceDto.getId(), actual.getSource().getId()); } + /** + * POST /v1/projects/{projectId}/mappings + */ + @Test + public void shouldNotCreateMapping() throws Exception { + EntityDto entityDto = super.retrieveEntity(project.getId()); + OntologyTermDto ontologyTermDto = null; + for (MappingSuggestionDto mappingSuggestionDto : entityDto.getMappingSuggestions()) { + if (mappingSuggestionDto.getOntologyTerm().getCurie().equalsIgnoreCase("MONDO:0007037")) { + ontologyTermDto = mappingSuggestionDto.getOntologyTerm(); + break; + } + } + assertNotNull(ontologyTermDto); + MappingCreationDto mappingCreationDto = new MappingCreationDto(entityDto.getId(), ontologyTermDto); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS; + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(mappingCreationDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * POST /v1/projects/{projectId}/mappings + */ + @Test + public void shouldNotCreateMappingAsConsumer() throws Exception { + EntityDto entityDto = super.retrieveEntity(project.getId()); + OntologyTermDto ontologyTermDto = null; + for (MappingSuggestionDto mappingSuggestionDto : entityDto.getMappingSuggestions()) { + if (mappingSuggestionDto.getOntologyTerm().getCurie().equalsIgnoreCase("MONDO:0007037")) { + ontologyTermDto = mappingSuggestionDto.getOntologyTerm(); + break; + } + } + assertNotNull(ontologyTermDto); + MappingCreationDto mappingCreationDto = new MappingCreationDto(entityDto.getId(), ontologyTermDto); + userService.addUserToProject(super.user2, project.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS; + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(mappingCreationDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java index f9fa42a..0921a68 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java @@ -7,6 +7,7 @@ import org.springframework.test.context.ContextConfiguration; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; @@ -71,4 +72,37 @@ public void shouldCreateOntologyTerm() throws Exception { assertEquals(TermStatus.NEEDS_IMPORT.toString(), actual.getStatus()); } + + /** + * POST /v1/projects/{projectId}/ontology-terms + */ + @Test + public void shouldNotCreateOntologyTerm() throws Exception { + OntologyTermDto toCreate = new OntologyTermDto("MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", + "Achondroplasia", null, null, null); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_ONTOLOGY_TERMS; + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(toCreate)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * POST /v1/projects/{projectId}/ontology-terms + */ + @Test + public void shouldNotCreateOntologyTermAsConsumer() throws Exception { + OntologyTermDto toCreate = new OntologyTermDto("MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", + "Achondroplasia", null, null, null); + userService.addUserToProject(super.user2, project.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_ONTOLOGY_TERMS; + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(toCreate)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/PlatformAdminControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/PlatformAdminControllerTest.java index 2e811e4..fd87a67 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/PlatformAdminControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/PlatformAdminControllerTest.java @@ -57,7 +57,6 @@ public void shouldUpdateConfig() throws Exception { assertEquals(newMap, actual.getAliases()); } - /** * GET /v1/platform-admin */ @@ -93,4 +92,21 @@ public void shouldNotGetConfigs() throws Exception { .header(IDPConstants.JWT_TOKEN, "token1")) .andExpect(status().isForbidden()); } + + /** + * PUT /v1/platform-admin + */ + @Test + public void shouldNotUpdateConfig() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PLATFORM_ADMIN; + Map newMap = new HashMap<>(); + newMap.put("orphanet", "ordo"); + newMap.put("efox", "efo"); + ExternalServiceConfigDto toUpdate = new ExternalServiceConfigDto("OLS", newMap); + mockMvc.perform(put(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(toUpdate)) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isForbidden()); + } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java index 3773772..5c3b705 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java @@ -5,6 +5,7 @@ import org.springframework.http.MediaType; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectMappingConfigDto; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; @@ -52,6 +53,27 @@ public void shouldGetProjects() throws Exception { assertEquals(projectDto.getDescription(), actual.getDescription()); } + /** + * GET /v1/projects + */ + @Test + public void shouldNotGetProjects() throws Exception { + super.createProject("New Project 1", "token1", null, null, null, 0); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS; + String response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + List projectList = mapper.readValue(response, new TypeReference>() { + }); + assertEquals(0, projectList.size()); + } + /** * GET /v1/projects/{projectId} */ @@ -73,6 +95,19 @@ public void shouldGetProject() throws Exception { assertEquals(projectDto.getDescription(), actual.getDescription()); } + /** + * GET /v1/projects/{projectId} + */ + @Test + public void shouldNotGetProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); + mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + /** * PUT /v1/projects/{projectId} */ @@ -126,7 +161,32 @@ public void shouldNotUpdateProject() throws Exception { .contentType(MediaType.APPLICATION_JSON) .content(mapper.writeValueAsString(updatedProject)) .header(IDPConstants.JWT_TOKEN, "token2")) - .andExpect(status().isForbidden()); + .andExpect(status().isNotFound()); + } + + /** + * PUT /v1/projects/{projectId} + */ + @Test + public void shouldNotUpdateProjectAsConsumer() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + ProjectDto updatedProject = new ProjectDto(projectDto.getId(), + "New Name", + projectDto.getDescription(), + Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", Arrays.asList(new String[]{"gwas"}))}), + Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", Arrays.asList(new String[]{"ordo"}))}), + projectDto.getPreferredMappingOntologies(), + 0, + projectDto.getCreated()); + + userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); + mockMvc.perform(put(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(updatedProject)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); } /** @@ -145,4 +205,30 @@ public void shouldDeleteProject() throws Exception { .header(IDPConstants.JWT_TOKEN, "token1")) .andExpect(status().isNotFound()); } + + /** + * DELETE /v1/projects/{projectId} + */ + @Test + public void shouldNotDeleteProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); + mockMvc.perform(delete(endpoint) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * DELETE /v1/projects/{projectId} + */ + @Test + public void shouldNotDeleteProjectAsConsumer() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); + mockMvc.perform(delete(endpoint) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/SourcesControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/SourcesControllerTest.java index 8d3d13d..f465204 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/SourcesControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/SourcesControllerTest.java @@ -2,17 +2,24 @@ import com.fasterxml.jackson.core.type.TypeReference; import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.MediaType; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; +import uk.ac.ebi.spot.ontotools.curation.constants.SourceType; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceCreationDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.service.UserService; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; +import java.util.Arrays; import java.util.List; import static org.junit.Assert.assertEquals; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; public class SourcesControllerTest extends IntegrationTest { @@ -33,6 +40,44 @@ public void shouldCreateSource() throws Exception { createSource(projectDto.getId()); } + /** + * POST /v1/projects/{projectId}/sources + */ + @Test + public void shouldNotCreateSource() throws Exception { + SourceCreationDto sourceCreationDto = new SourceCreationDto("Source name", + "Description", + null, + SourceType.LOCAL.name()); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_SOURCES; + + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(sourceCreationDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * POST /v1/projects/{projectId}/sources + */ + @Test + public void shouldNotCreateSourceAsConsumer() throws Exception { + SourceCreationDto sourceCreationDto = new SourceCreationDto("Source name", + "Description", + null, + SourceType.LOCAL.name()); + + userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_SOURCES; + + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(sourceCreationDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + /** * GET /v1/projects/{projectId}/sources */ @@ -57,6 +102,19 @@ public void shouldGetSources() throws Exception { assertEquals(sourceDto.getDescription(), actual.getDescription()); } + /** + * GET /v1/projects/{projectId}/sources + */ + @Test + public void shouldNotGetSources() throws Exception { + super.createSource(projectDto.getId()); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_SOURCES; + mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + /** * GET /v1/projects/{projectId}/sources/{sourceId} */ @@ -77,4 +135,17 @@ public void shouldGetSource() throws Exception { assertEquals(sourceDto.getName(), actual.getName()); assertEquals(sourceDto.getDescription(), actual.getDescription()); } + + /** + * GET /v1/projects/{projectId}/sources/{sourceId} + */ + @Test + public void shouldNotGetSource() throws Exception { + SourceDto sourceDto = super.createSource(projectDto.getId()); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_SOURCES + "/" + sourceDto.getId(); + mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java index b49d8aa..4960213 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java @@ -57,6 +57,36 @@ public void shouldNotGetUsersForProject() throws Exception { .andExpect(status().isNotFound()); } + /** + * GET /v1/projects/{projectId}/users + */ + @Test + public void shouldNotGetUsersForProjectAsContributor() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + + userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONTRIBUTOR})); + mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * GET /v1/projects/{projectId}/users + */ + @Test + public void shouldNotGetUsersForProjectAsConsumer() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + + userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); + mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + /** * POST /v1/projects/{projectId}/users */ @@ -123,6 +153,57 @@ public void shouldAddUserToProject() throws Exception { } + /** + * POST /v1/projects/{projectId}/users + */ + @Test + public void shouldNotAddUserToProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * POST /v1/projects/{projectId}/users + */ + @Test + public void shouldNotAddUserToProjectAsContributor() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + + userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONTRIBUTOR})); + + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * POST /v1/projects/{projectId}/users + */ + @Test + public void shouldNotAddUserToProjectAsConsumer() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + + userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); + + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + /** * PUT /v1/projects/{projectId}/users/{userId} */ @@ -169,6 +250,59 @@ public void shouldUpdateUserToProject() throws Exception { assertEquals(ProjectRole.CONSUMER.name(), actual.getRoles().get(0).getRole()); } + /** + * PUT /v1/projects/{projectId}/users/{userId} + */ + @Test + public void shouldNotUpdateUserToProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * PUT /v1/projects/{projectId}/users/{userId} + */ + @Test + public void shouldNotUpdateUserToProjectAsContributor() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONTRIBUTOR})); + + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * PUT /v1/projects/{projectId}/users/{userId} + */ + @Test + public void shouldNotUpdateUserToProjectAsConsumer() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); + + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** * DELETE /v1/projects/{projectId}/users/{userId} */ @@ -221,4 +355,54 @@ public void shouldDeleteUserRolesInProject() throws Exception { assertEquals(1, actualList.size()); } + + /** + * DELETE /v1/projects/{projectId}/users/{userId} + */ + @Test + public void shouldNotDeleteUserRolesInProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * DELETE /v1/projects/{projectId}/users/{userId} + */ + @Test + public void shouldNotDeleteUserRolesInProjectAsContributor() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONTRIBUTOR})); + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * DELETE /v1/projects/{projectId}/users/{userId} + */ + @Test + public void shouldNotDeleteUserRolesInProjectAsConsumer() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } } From 59eee9b1c79a82b4134ddd088faef23c5f6f6767 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Fri, 5 Mar 2021 19:13:16 +0800 Subject: [PATCH 31/72] Refactored code to revert to the original 1-to-1 entity-mapping relationship. --- README.md | 29 +- .../repository/MappingRepository.java | 3 +- .../rest/assembler/EntityDtoAssembler.java | 9 +- .../rest/controller/EntityController.java | 6 +- .../rest/controller/MappingsController.java | 134 ++++----- .../curation/rest/dto/EntityDto.java | 13 +- .../rest/dto/export/ExportEntityDto.java | 12 +- .../curation/service/MappingService.java | 8 +- .../service/impl/EntityDataCollector.java | 16 +- .../impl/ExportExecutorServiceImpl.java | 4 +- .../service/impl/MappingServiceImpl.java | 72 ++--- .../curation/EntityControllerTest.java | 13 +- .../ontotools/curation/IntegrationTest.java | 12 +- .../MappingCommentsControllerTest.java | 17 +- .../MappingReviewsControllerTest.java | 29 +- .../curation/MappingsControllerTest.java | 267 ++++++++---------- .../curation/MatchMakingContolledTest.java | 27 +- .../ontotools/curation/MatchMakingTest.java | 18 +- 18 files changed, 318 insertions(+), 371 deletions(-) diff --git a/README.md b/README.md index a6b3550..d8f4a15 100644 --- a/README.md +++ b/README.md @@ -1 +1,28 @@ -# Future Curation App \ No newline at end of file +# Onto-tools Curation App + +## Requirements to build and run locally + +* Local MongoDB instance running on port `27017` +* Some test credentials and data added to the DB (if authentication is turned on) - see https://github.com/EBISPOT/ontotools-curator/wiki/Test-data +* Alternatively: + * Add at least one `super` user in the DB in the `users` collection: + ``` + { + "name": "Super user", + "email": "ontotools-curator@ebi.ac.uk", + "superUser": true + } + ``` + * Set `ontotools-curation.auth.enabled` to `false` in the `dev` profile in `application.yml` + +### Build package + +* Run `mvn clean install -Dspring.profiles.active=dev` +* Alternatively, introduce in a new profile in `application.yml` and use it as active when building +* At least one active profile has to be specified when building the package + +### Build docker container +* Run the `build.sh` script under `scripts` + +### Run locally +* `java -jar -Dspring.profiles.active=dev target/ontotools-curation-service-*.jar` \ No newline at end of file diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java index bf1eaef..19a05b6 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java @@ -4,9 +4,10 @@ import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; import java.util.List; +import java.util.Optional; public interface MappingRepository extends MongoRepository { List findByEntityIdIn(List entityIds); - List findByEntityId(String entityId); + Optional findByEntityId(String entityId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java index 89cba97..73217ad 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java @@ -8,14 +8,15 @@ import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingSuggestionDto; +import java.util.ArrayList; import java.util.List; import java.util.stream.Collectors; public class EntityDtoAssembler { - public static EntityDto assemble(Entity entity, SourceDto source, List mappings, List mappingSuggestions) { - List mappingSuggestionDtos = mappingSuggestions.stream().map(MappingSuggestionDtoAssembler::assemble).collect(Collectors.toList()); - List mappingDtos = mappings.stream().map(MappingDtoAssembler::assemble).collect(Collectors.toList()); + public static EntityDto assemble(Entity entity, SourceDto source, Mapping mapping, List mappingSuggestions) { + List mappingSuggestionDtos = mappingSuggestions != null ? mappingSuggestions.stream().map(MappingSuggestionDtoAssembler::assemble).collect(Collectors.toList()) : new ArrayList<>(); + MappingDto mappingDto = mapping != null ? MappingDtoAssembler.assemble(mapping) : null; return new EntityDto(entity.getId(), source, @@ -24,7 +25,7 @@ public static EntityDto assemble(Entity entity, SourceDto source, List entity.getBaseField(), entity.getMappingStatus().name(), mappingSuggestionDtos, - mappingDtos, + mappingDto, ProvenanceDtoAssembler.assemble(entity.getCreated())); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java index 99217c3..3a12ee1 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java @@ -71,7 +71,7 @@ public RestResponsePage getEntities(@PathVariable String projectId, @ Page entities = entityService.retrieveEntitiesForProject(projectId, pageable); List entityIds = entities.get().map(Entity::getId).collect(Collectors.toList()); - Map> mappings = mappingService.retrieveMappingsForEntities(entityIds); + Map mappings = mappingService.retrieveMappingsForEntities(entityIds); Map> mappingSuggestions = mappingSuggestionsService.retrieveMappingSuggestionsForEntities(entityIds); List entityDtos = new ArrayList<>(); for (Entity entity : entities.getContent()) { @@ -92,8 +92,8 @@ public EntityDto getEntity(@PathVariable String projectId, @PathVariable String projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR, ProjectRole.CONSUMER})); Entity entity = entityService.retrieveEntity(entityId); Source source = sourceService.getSource(entity.getSourceId(), projectId); - Map> mappings = mappingService.retrieveMappingsForEntities(Arrays.asList(new String[]{entityId})); + Mapping mapping = mappingService.retrieveMappingForEntity(entityId); Map> mappingSuggestions = mappingSuggestionsService.retrieveMappingSuggestionsForEntities(Arrays.asList(new String[]{entityId})); - return EntityDtoAssembler.assemble(entity, SourceDtoAssembler.assemble(source), mappings.get(entityId), mappingSuggestions.get(entityId)); + return EntityDtoAssembler.assemble(entity, SourceDtoAssembler.assemble(source), mapping, mappingSuggestions.get(entityId)); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java index ce48f8f..4f48ed9 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java @@ -11,27 +11,24 @@ import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; -import uk.ac.ebi.spot.ontotools.curation.domain.Source; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; -import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; -import uk.ac.ebi.spot.ontotools.curation.rest.assembler.EntityDtoAssembler; -import uk.ac.ebi.spot.ontotools.curation.rest.assembler.SourceDtoAssembler; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.MappingDtoAssembler; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingCreationDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.OntologyTermDto; import uk.ac.ebi.spot.ontotools.curation.service.*; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; import uk.ac.ebi.spot.ontotools.curation.util.HeadersUtil; import javax.servlet.http.HttpServletRequest; import javax.validation.Valid; +import javax.validation.constraints.NotEmpty; +import java.util.ArrayList; import java.util.Arrays; -import java.util.HashMap; import java.util.List; -import java.util.Map; @RestController @RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) @@ -66,27 +63,26 @@ public class MappingsController { @GetMapping(value = "/{projectId}" + CurationConstants.API_MAPPINGS, produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.OK) - public EntityDto getMappings(@PathVariable String projectId, @RequestParam(value = CurationConstants.PARAM_ENTITY_ID) String entityId, HttpServletRequest request) { + public List getMappings(@PathVariable String projectId, @RequestParam(value = CurationConstants.PARAM_ENTITY_ID) String entityId, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to retrieve mappings: {} | {}", user.getEmail(), projectId, entityId); projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR, ProjectRole.CONSUMER})); Entity entity = entityService.retrieveEntity(entityId); - return packAndSend(entity, projectId); + Mapping mapping = mappingService.retrieveMappingForEntity(entity.getId()); + if (mapping == null) { + return null; + } + return Arrays.asList(new MappingDto[]{MappingDtoAssembler.assemble(mapping)}); } /** * POST /v1/projects/{projectId}/mappings - *

- * Assumptions: - * - Creating a mapping = transforming an existing mapping suggestion into a new mapping. - * - No existing mappings are deleted - * - Originating mapping suggestion is removed */ @PostMapping(value = "/{projectId}" + CurationConstants.API_MAPPINGS, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.CREATED) - public EntityDto createMapping(@PathVariable String projectId, @RequestBody @Valid MappingCreationDto mappingCreationDto, HttpServletRequest request) { + public MappingDto createMapping(@PathVariable String projectId, @RequestBody @Valid MappingCreationDto mappingCreationDto, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to create mapping: {} | {} | {}", user.getEmail(), projectId, mappingCreationDto.getEntityId(), mappingCreationDto.getOntologyTerm()); projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); @@ -98,23 +94,16 @@ public EntityDto createMapping(@PathVariable String projectId, @RequestBody @Val /** * Check if a mapping to this term already exists */ - List existingMappings = mappingService.retrieveMappingsForEntity(entity.getId()); - boolean exists = false; - for (Mapping mapping : existingMappings) { - if (mapping.getOntologyTermIds().contains(ontologyTerm.getId())) { - exists = true; - break; - } - } - if (exists) { + Mapping existingMapping = mappingService.retrieveMappingForEntity(entity.getId()); + if (existingMapping != null) { log.warn("[{}] Mapping to term [{}] already exists.", entity.getName(), ontologyTerm.getCurie()); - return packAndSend(entity, projectId); + return MappingDtoAssembler.assemble(existingMapping); } /** * Create new mapping. */ - mappingService.createMapping(entity, ontologyTerm, provenance); + Mapping created = mappingService.createMapping(entity, ontologyTerm, provenance); /** * Updating mapping status to MANUAL. @@ -125,91 +114,84 @@ public EntityDto createMapping(@PathVariable String projectId, @RequestBody @Val * Deleting mapping suggestions associated with the current ontology term. */ mappingSuggestionsService.deleteMappingSuggestions(entity.getId(), ontologyTerm.getId()); - - return packAndSend(entity, projectId); + return MappingDtoAssembler.assemble(created); } /** * PUT /v1/projects/{projectId}/mappings/{mappingId} - *

- * Assumptions: - * - Updating a mapping = adding an additional ontology term from a mapping suggestion to an existing mapping - * - No existing mappings are deleted - * - Originating mapping suggestion is removed */ @PutMapping(value = "/{projectId}" + CurationConstants.API_MAPPINGS + "/{mappingId}", consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.OK) - public EntityDto updateMapping(@PathVariable String projectId, @PathVariable String mappingId, @RequestBody @Valid MappingCreationDto mappingCreationDto, HttpServletRequest request) { + public MappingDto updateMapping(@PathVariable String projectId, @PathVariable String mappingId, @RequestBody @NotEmpty @Valid List ontologyTermsDtos, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); - log.info("[{}] Request to update mapping [{} - {}]: {} | {}", user.getEmail(), projectId, mappingId, mappingCreationDto.getEntityId(), mappingCreationDto.getOntologyTerm()); + log.info("[{}] Request to update mapping [{} | {}]: {}", user.getEmail(), projectId, mappingId, ontologyTermsDtos); projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); - Entity entity = entityService.retrieveEntity(mappingCreationDto.getEntityId()); - OntologyTerm ontologyTerm = ontologyTermService.retrieveTermByCurie(mappingCreationDto.getOntologyTerm().getCurie()); - - /** - * Check if a different mapping to this term already exists - */ - List existingMappings = mappingService.retrieveMappingsForEntity(entity.getId()); - boolean exists = false; - for (Mapping mapping : existingMappings) { - if (mapping.getOntologyTermIds().contains(ontologyTerm.getId())) { - exists = true; - break; - } + List ontologyTermIds = new ArrayList<>(); + List ontologyTerms = new ArrayList<>(); + for (OntologyTermDto ontologyTermDto : ontologyTermsDtos) { + OntologyTerm ontologyTerm = ontologyTermService.retrieveTermByCurie(ontologyTermDto.getCurie()); + ontologyTermIds.add(ontologyTerm.getId()); + ontologyTerms.add(ontologyTerm); } - if (exists) { - log.warn("[{}] Mapping to term [{}] already exists.", entity.getName(), ontologyTerm.getCurie()); - return packAndSend(entity, projectId); + Mapping existing = mappingService.retrieveMappingById(mappingId); + List existingOntoIds = existing.getOntologyTermIds(); + Mapping updated = mappingService.updateMapping(mappingId, ontologyTermIds); + + List old = new ArrayList<>(); + for (String oId : existingOntoIds) { + if (!ontologyTermIds.contains(oId)) { + old.add(ontologyTermService.retrieveTermById(oId)); + } } - /** - * Update mapping. - */ - mappingService.updateMapping(mappingId, ontologyTerm, provenance); - /** * Updating mapping status to MANUAL. */ + Entity entity = entityService.retrieveEntity(updated.getEntityId()); entity = entityService.updateMappingStatus(entity, EntityStatus.MANUALLY_MAPPED); /** - * Deleting mapping suggestions associated with the current ontology term. + * Deleting mapping suggestions associated with the new ontology terms */ - mappingSuggestionsService.deleteMappingSuggestions(entity.getId(), ontologyTerm.getId()); + for (String oId : ontologyTermIds) { + mappingSuggestionsService.deleteMappingSuggestions(entity.getId(), oId); + } + /** + * Create mapping suggestions associated with the old ontology terms + */ + for (OntologyTerm ontologyTerm : old) { + mappingSuggestionsService.createMappingSuggestion(entity, ontologyTerm, provenance); + } - return packAndSend(entity, projectId); + updated.setOntologyTerms(ontologyTerms); + return MappingDtoAssembler.assemble(updated); } /** - * DELETE /v1/projects/{projectId}/mappings/{mappingId}?curie= - *

- * Assumptions: - * - Delete entire mapping when curie is missing - * - Delete only mapping to curie when this is present - * - Convert all removed curies to mapping suggestions + * DELETE /v1/projects/{projectId}/mappings/{mappingId} */ @DeleteMapping(value = "/{projectId}" + CurationConstants.API_MAPPINGS + "/{mappingId}") @ResponseStatus(HttpStatus.OK) public void deleteMapping(@PathVariable String projectId, @PathVariable String mappingId, - @RequestParam(value = CurationConstants.PARAM_CURIE, required = false) String curie, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); - log.info("[{}] Request to delete mapping [{} - {}]: {}", user.getEmail(), projectId, mappingId, curie); + log.info("[{}] Request to delete mapping [{}]: {}", user.getEmail(), projectId, mappingId); projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); Mapping mapping = mappingService.retrieveMappingById(mappingId); Entity entity = entityService.retrieveEntity(mapping.getEntityId()); + List ontoTermIds = mapping.getOntologyTermIds(); /** * Delete mapping. */ - OntologyTerm ontoTerm = curie != null ? ontologyTermService.retrieveTermByCurie(curie) : null; - List ontoTermIds = mappingService.deleteMapping(mappingId, ontoTerm != null ? ontoTerm.getId() : null, provenance); + mappingService.deleteMapping(mappingId); + entity = entityService.updateMappingStatus(entity, EntityStatus.SUGGESTIONS_PROVIDED); /** * Re-create mapping suggestions. @@ -221,16 +203,4 @@ public void deleteMapping(@PathVariable String projectId, @PathVariable String m } - private EntityDto packAndSend(Entity entity, String projectId) { - List sources = sourceService.getSources(projectId); - Map sourceMap = new HashMap<>(); - for (Source source : sources) { - sourceMap.put(source.getId(), SourceDtoAssembler.assemble(source)); - } - List mappings = mappingService.retrieveMappingsForEntity(entity.getId()); - List mappingSuggestions = mappingSuggestionsService.retrieveMappingSuggestionsForEntity(entity.getId()); - return EntityDtoAssembler.assemble(entity, sourceMap.get(entity.getSourceId()), mappings, mappingSuggestions); - - } - } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java index d3c8d1b..dc42889 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java @@ -42,8 +42,8 @@ public final class EntityDto implements Serializable { @JsonProperty("mappingSuggestions") private final List mappingSuggestions; - @JsonProperty("mappings") - private final List mappings; + @JsonProperty("mapping") + private final MappingDto mapping; @JsonCreator public EntityDto(@JsonProperty("id") String id, @@ -53,7 +53,7 @@ public EntityDto(@JsonProperty("id") String id, @JsonProperty("upstreamField") String upstreamField, @JsonProperty("mappingStatus") String mappingStatus, @JsonProperty("mappingSuggestions") List mappingSuggestions, - @JsonProperty("mappings") List mappings, + @JsonProperty("mapping") MappingDto mapping, @JsonProperty("created") ProvenanceDto created) { this.id = id; this.source = source; @@ -62,7 +62,7 @@ public EntityDto(@JsonProperty("id") String id, this.upstreamField = upstreamField; this.mappingStatus = mappingStatus; this.mappingSuggestions = mappingSuggestions; - this.mappings = mappings; + this.mapping = mapping; this.created = created; } @@ -90,8 +90,9 @@ public List getMappingSuggestions() { return mappingSuggestions; } - public List getMappings() { - return mappings; + + public MappingDto getMapping() { + return mapping; } public String getUpstreamId() { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDto.java index 26b4a20..598e3ae 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDto.java @@ -26,20 +26,20 @@ public final class ExportEntityDto implements Serializable { @JsonProperty("mappingSuggestions") private final List mappingSuggestions; - @JsonProperty("mappings") - private final List mappings; + @JsonProperty("mapping") + private final ExportMappingDto mapping; @JsonCreator public ExportEntityDto(@JsonProperty("name") String name, @JsonProperty("upstreamId") String upstreamId, @JsonProperty("upstreamField") String upstreamField, @JsonProperty("mappingSuggestions") List mappingSuggestions, - @JsonProperty("mappings") List mappings) { + @JsonProperty("mapping") ExportMappingDto mapping) { this.name = name; this.upstreamId = upstreamId; this.upstreamField = upstreamField; this.mappingSuggestions = mappingSuggestions; - this.mappings = mappings; + this.mapping = mapping; } public String getName() { @@ -59,7 +59,7 @@ public List getMappingSuggestions() { return mappingSuggestions; } - public List getMappings() { - return mappings; + public ExportMappingDto getMapping() { + return mapping; } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java index 1af6ec2..8ed513a 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java @@ -12,9 +12,9 @@ public interface MappingService { Mapping createMapping(Entity entity, OntologyTerm ontologyTerm, Provenance provenance); - Map> retrieveMappingsForEntities(List entityIds); + Map retrieveMappingsForEntities(List entityIds); - List retrieveMappingsForEntity(String entityId); + Mapping retrieveMappingForEntity(String entityId); Mapping addReviewToMapping(String mappingId, String comment, int noReviewsRequired, Provenance provenance); @@ -22,7 +22,7 @@ public interface MappingService { Mapping addCommentToMapping(String mappingId, String body, Provenance provenance); - void updateMapping(String mappingId, OntologyTerm ontologyTerm, Provenance provenance); + Mapping updateMapping(String mappingId, List ontologyTermIds); - List deleteMapping(String mappingId, String ontoTermId, Provenance provenance); + void deleteMapping(String mappingId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java index 989bb73..67fbda5 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java @@ -34,16 +34,14 @@ public EntityDataCollector(String projectId) { this.exportEntityDtos = new ArrayList<>(); } - public void add(Entity entity, List mappingList, List mappingSuggestionList) { + public void add(Entity entity, Mapping mapping, List mappingSuggestionList) { List mappingSuggestions = new ArrayList<>(); - List mappings = new ArrayList<>(); + ExportMappingDto exportMappingDto = null; - if (mappingList != null) { - for (Mapping mapping : mappingList) { - List ontologyTermDtos = mapping.getOntologyTerms().stream().map(OntologyTermDtoAssembler::assemble).collect(Collectors.toList()); - mappings.add(new ExportMappingDto(ontologyTermDtos, mapping.isReviewed(), - mapping.getStatus(), ProvenanceDtoAssembler.assemble(mapping.getCreated()))); - } + if (mapping != null) { + List ontologyTermDtos = mapping.getOntologyTerms().stream().map(OntologyTermDtoAssembler::assemble).collect(Collectors.toList()); + exportMappingDto = new ExportMappingDto(ontologyTermDtos, mapping.isReviewed(), + mapping.getStatus(), ProvenanceDtoAssembler.assemble(mapping.getCreated())); } if (mappingSuggestionList != null) { for (MappingSuggestion mappingSuggestion : mappingSuggestionList) { @@ -56,7 +54,7 @@ public void add(Entity entity, List mappingList, List mappingList = mappingService.retrieveMappingsForEntity(entity.getId()); + Mapping mapping = mappingService.retrieveMappingForEntity(entity.getId()); List mappingSuggestions = mappingSuggestionsService.retrieveMappingSuggestionsForEntity(entity.getId()); - entityDataCollector.add(entity, mappingList, mappingSuggestions); + entityDataCollector.add(entity, mapping, mappingSuggestions); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java index 1a16da9..b7d11de 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java @@ -32,61 +32,48 @@ public class MappingServiceImpl implements MappingService { @Override public Mapping createMapping(Entity entity, OntologyTerm ontologyTerm, Provenance provenance) { log.info("Creating mapping for entity [{}]: {}", entity.getName(), ontologyTerm.getCurie()); - List mappings = mappingRepository.findByEntityId(entity.getId()); - for (Mapping mapping : mappings) { - if (mapping.getOntologyTermIds().contains(ontologyTerm.getId())) { - log.warn("Mapping for between entity [{}] and ontology term [{}] already exists: {}", entity.getName(), ontologyTerm.getCurie(), mapping.getId()); - return mapping; + Optional mappingOptional = mappingRepository.findByEntityId(entity.getId()); + if (mappingOptional.isPresent()) { + if (mappingOptional.get().getOntologyTermIds().contains(ontologyTerm.getId())) { + log.warn("Mapping for between entity [{}] and ontology term [{}] already exists: {}", entity.getName(), ontologyTerm.getCurie(), mappingOptional.get().getId()); + return mappingOptional.get(); } } Mapping created = mappingRepository.insert(new Mapping(null, entity.getId(), Arrays.asList(new String[]{ontologyTerm.getId()}), entity.getProjectId(), false, new ArrayList<>(), new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), provenance, null)); + created.setOntologyTerms(Arrays.asList(new OntologyTerm[]{ontologyTerm})); log.info("Mapping for between entity [{}] and ontology term [{}] created: {}", entity.getName(), ontologyTerm.getCurie(), created.getId()); return created; } @Override - public void updateMapping(String mappingId, OntologyTerm ontologyTerm, Provenance provenance) { - log.info("Updating mapping [{}]: {}", mappingId, ontologyTerm.getCurie()); + public Mapping updateMapping(String mappingId, List ontologyTermIds) { + log.info("Updating mapping [{}]: {}", mappingId, ontologyTermIds); Optional mappingOp = mappingRepository.findById(mappingId); if (!mappingOp.isPresent()) { log.error("Mapping not found: {}", mappingId); throw new EntityNotFoundException("Mapping not found: " + mappingId); } - /** - * TODO: Associate the provenance to the ontology term rather than the entire mapping !? - */ Mapping mapping = mappingOp.get(); - mapping.getOntologyTermIds().add(ontologyTerm.getId()); - mappingRepository.save(mapping); + mapping.setOntologyTermIds(ontologyTermIds); + return mappingRepository.save(mapping); } @Override - public List deleteMapping(String mappingId, String ontoTermId, Provenance provenance) { + public void deleteMapping(String mappingId) { Optional mappingOp = mappingRepository.findById(mappingId); if (!mappingOp.isPresent()) { log.error("Mapping not found: {}", mappingId); throw new EntityNotFoundException("Mapping not found: " + mappingId); } - Mapping mapping = mappingOp.get(); - List result = new ArrayList<>(); - if (ontoTermId != null) { - mapping.getOntologyTermIds().remove(ontoTermId); - result.add(ontoTermId); - mappingRepository.save(mapping); - } else { - result.addAll(mapping.getOntologyTermIds()); - mappingRepository.delete(mapping); - } - - return result; + mappingRepository.delete(mappingOp.get()); } @Override - public Map> retrieveMappingsForEntities(List entityIds) { + public Map retrieveMappingsForEntities(List entityIds) { log.info("Retrieving mappings for entities: {}", entityIds); List mappings = mappingRepository.findByEntityIdIn(entityIds); List ontologyTermIds = new ArrayList<>(); @@ -99,7 +86,7 @@ public Map> retrieveMappingsForEntities(List entit } Map ontologyTermMap = ontologyTermService.retrieveTerms(ontologyTermIds); log.info("Found {} mappings.", mappings.size()); - Map> result = new HashMap<>(); + Map result = new HashMap<>(); for (Mapping mapping : mappings) { List ontologyTerms = new ArrayList<>(); for (String oId : mapping.getOntologyTermIds()) { @@ -110,31 +97,20 @@ public Map> retrieveMappingsForEntities(List entit ontologyTerms.add(ontologyTermMap.get(oId)); } } - List list = result.containsKey(mapping.getEntityId()) ? result.get(mapping.getEntityId()) : new ArrayList<>(); mapping.setOntologyTerms(ontologyTerms); - list.add(mapping); - result.put(mapping.getEntityId(), list); + result.put(mapping.getEntityId(), mapping); } return result; } @Override - public List retrieveMappingsForEntity(String entityId) { - log.info("Retrieving mappings for entity: {}", entityId); - List mappings = mappingRepository.findByEntityId(entityId); - List ontologyTermIds = new ArrayList<>(); - for (Mapping mapping : mappings) { - for (String oId : mapping.getOntologyTermIds()) { - if (!ontologyTermIds.contains(oId)) { - ontologyTermIds.add(oId); - } - } - } + public Mapping retrieveMappingForEntity(String entityId) { + log.info("Retrieving mapping for entity: {}", entityId); + Optional mappingOptional = mappingRepository.findByEntityId(entityId); + if (mappingOptional.isPresent()) { + Mapping mapping = mappingOptional.get(); + Map ontologyTermMap = ontologyTermService.retrieveTerms(mapping.getOntologyTermIds()); - Map ontologyTermMap = ontologyTermService.retrieveTerms(ontologyTermIds); - log.info("Found {} mappings.", mappings.size()); - List result = new ArrayList<>(); - for (Mapping mapping : mappings) { List ontologyTerms = new ArrayList<>(); for (String oId : mapping.getOntologyTermIds()) { if (!ontologyTermMap.containsKey(oId)) { @@ -145,9 +121,11 @@ public List retrieveMappingsForEntity(String entityId) { } } mapping.setOntologyTerms(ontologyTerms); - result.add(mapping); + return mapping; } - return result; + + log.warn("Unable to find mapping for entity: {}", entityId); + return null; } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java index fd538e1..28dbc7b 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java @@ -23,6 +23,7 @@ import java.util.List; import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; @@ -74,9 +75,9 @@ public void shouldGetEntities() throws Exception { assertEquals("Achondroplasia", actual.getName()); assertEquals(EntityStatus.AUTO_MAPPED.name(), actual.getMappingStatus()); - assertEquals(1, actual.getMappings().size()); - assertEquals("Orphanet:15", actual.getMappings().get(0).getOntologyTerms().get(0).getCurie()); - assertEquals(MappingStatus.AWAITING_REVIEW.name(), actual.getMappings().get(0).getStatus()); + assertNotNull(actual.getMapping()); + assertEquals("Orphanet:15", actual.getMapping().getOntologyTerms().get(0).getCurie()); + assertEquals(MappingStatus.AWAITING_REVIEW.name(), actual.getMapping().getStatus()); assertEquals(2, actual.getMappingSuggestions().size()); int foundCuries = 0; @@ -114,9 +115,9 @@ public void shouldGetEntity() throws Exception { assertEquals("Achondroplasia", actual.getName()); assertEquals(EntityStatus.AUTO_MAPPED.name(), actual.getMappingStatus()); - assertEquals(1, actual.getMappings().size()); - assertEquals("Orphanet:15", actual.getMappings().get(0).getOntologyTerms().get(0).getCurie()); - assertEquals(MappingStatus.AWAITING_REVIEW.name(), actual.getMappings().get(0).getStatus()); + assertNotNull(actual.getMapping()); + assertEquals("Orphanet:15", actual.getMapping().getOntologyTerms().get(0).getCurie()); + assertEquals(MappingStatus.AWAITING_REVIEW.name(), actual.getMapping().getStatus()); assertEquals(2, actual.getMappingSuggestions().size()); int foundCuries = 0; diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 5b6b5cd..a981dc4 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -30,6 +30,7 @@ import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.repository.*; import uk.ac.ebi.spot.ontotools.curation.rest.dto.*; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; import uk.ac.ebi.spot.ontotools.curation.service.MatchmakerService; import uk.ac.ebi.spot.ontotools.curation.service.OLSService; import uk.ac.ebi.spot.ontotools.curation.service.UserService; @@ -101,13 +102,13 @@ public OLSService olsService() { private AuthTokenRepository authTokenRepository; @Autowired - private OntologyTermRepository ontologyTermRepository; + protected OntologyTermRepository ontologyTermRepository; @Autowired - private MappingSuggestionRepository mappingSuggestionRepository; + protected MappingSuggestionRepository mappingSuggestionRepository; @Autowired - private MappingRepository mappingRepository; + protected MappingRepository mappingRepository; @Autowired private EntityRepository entityRepository; @@ -237,7 +238,7 @@ protected void createEntityTestData(String sourceId, String projectId, User user projectId, false, new ArrayList<>(), new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), provenance, null)); } - protected EntityDto retrieveEntity(String projectId) throws Exception { + protected List retrieveMapping(String projectId) throws Exception { String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectId + CurationConstants.API_MAPPINGS + "?entityId=" + entity.getId(); String response = mockMvc.perform(get(endpoint) @@ -248,9 +249,8 @@ protected EntityDto retrieveEntity(String projectId) throws Exception { .getResponse() .getContentAsString(); - EntityDto actual = mapper.readValue(response, new TypeReference() { + List actual = mapper.readValue(response, new TypeReference>() { }); return actual; } - } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java index ccf5d41..abb986f 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java @@ -10,7 +10,6 @@ import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.ProvenanceDtoAssembler; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.CommentDto; @@ -62,8 +61,8 @@ public void setup() throws Exception { */ @Test public void shouldCreateComment() throws Exception { - EntityDto actual = super.retrieveEntity(project.getId()); - MappingDto mappingDto = actual.getMappings().get(0); + List actual = super.retrieveMapping(project.getId()); + MappingDto mappingDto = actual.get(0); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_COMMENTS; @@ -89,8 +88,8 @@ public void shouldCreateComment() throws Exception { */ @Test public void shouldGetComments() throws Exception { - EntityDto actual = super.retrieveEntity(project.getId()); - MappingDto mappingDto = actual.getMappings().get(0); + List actual = super.retrieveMapping(project.getId()); + MappingDto mappingDto = actual.get(0); mappingService.addCommentToMapping(mappingDto.getId(), "New comment", ProvenanceDtoAssembler.disassemble(mappingDto.getCreated())); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + @@ -114,8 +113,8 @@ public void shouldGetComments() throws Exception { */ @Test public void shouldNotCreateComment() throws Exception { - EntityDto actual = super.retrieveEntity(project.getId()); - MappingDto mappingDto = actual.getMappings().get(0); + List actual = super.retrieveMapping(project.getId()); + MappingDto mappingDto = actual.get(0); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_COMMENTS; @@ -131,8 +130,8 @@ public void shouldNotCreateComment() throws Exception { */ @Test public void shouldNotGetComments() throws Exception { - EntityDto actual = super.retrieveEntity(project.getId()); - MappingDto mappingDto = actual.getMappings().get(0); + List actual = super.retrieveMapping(project.getId()); + MappingDto mappingDto = actual.get(0); mappingService.addCommentToMapping(mappingDto.getId(), "New comment", ProvenanceDtoAssembler.disassemble(mappingDto.getCreated())); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java index 5b634dc..f255ec8 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java @@ -12,7 +12,6 @@ import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.ProvenanceDtoAssembler; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; @@ -64,8 +63,8 @@ public void setup() throws Exception { */ @Test public void shouldCreateReview() throws Exception { - EntityDto actual = super.retrieveEntity(project.getId()); - MappingDto mappingDto = actual.getMappings().get(0); + List actual = super.retrieveMapping(project.getId()); + MappingDto mappingDto = actual.get(0); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_REVIEWS; @@ -93,8 +92,8 @@ public void shouldCreateReview() throws Exception { */ @Test public void shouldCreateReviewedMapping() throws Exception { - EntityDto actual = super.retrieveEntity(project.getId()); - MappingDto mappingDto = actual.getMappings().get(0); + List actual = super.retrieveMapping(project.getId()); + MappingDto mappingDto = actual.get(0); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_REVIEWS; @@ -120,8 +119,8 @@ public void shouldCreateReviewedMapping() throws Exception { */ @Test public void shouldGetReviews() throws Exception { - EntityDto actual = super.retrieveEntity(project.getId()); - MappingDto mappingDto = actual.getMappings().get(0); + List actual = super.retrieveMapping(project.getId()); + MappingDto mappingDto = actual.get(0); mappingService.addReviewToMapping(mappingDto.getId(), "New review", 3, ProvenanceDtoAssembler.disassemble(mappingDto.getCreated())); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + @@ -145,8 +144,8 @@ public void shouldGetReviews() throws Exception { */ @Test public void shouldNotCreateReview() throws Exception { - EntityDto actual = super.retrieveEntity(project.getId()); - MappingDto mappingDto = actual.getMappings().get(0); + List actual = super.retrieveMapping(project.getId()); + MappingDto mappingDto = actual.get(0); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_REVIEWS; @@ -162,8 +161,8 @@ public void shouldNotCreateReview() throws Exception { */ @Test public void shouldNotGetReviews() throws Exception { - EntityDto actual = super.retrieveEntity(project.getId()); - MappingDto mappingDto = actual.getMappings().get(0); + List actual = super.retrieveMapping(project.getId()); + MappingDto mappingDto = actual.get(0); mappingService.addReviewToMapping(mappingDto.getId(), "New review", 3, ProvenanceDtoAssembler.disassemble(mappingDto.getCreated())); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + @@ -179,8 +178,8 @@ public void shouldNotGetReviews() throws Exception { */ @Test public void shouldNotCreateReviewAsConsumer() throws Exception { - EntityDto actual = super.retrieveEntity(project.getId()); - MappingDto mappingDto = actual.getMappings().get(0); + List actual = super.retrieveMapping(project.getId()); + MappingDto mappingDto = actual.get(0); userService.addUserToProject(super.user2, project.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + @@ -197,8 +196,8 @@ public void shouldNotCreateReviewAsConsumer() throws Exception { */ @Test public void shouldNotGetReviewsAsConsumer() throws Exception { - EntityDto actual = super.retrieveEntity(project.getId()); - MappingDto mappingDto = actual.getMappings().get(0); + List actual = super.retrieveMapping(project.getId()); + MappingDto mappingDto = actual.get(0); mappingService.addReviewToMapping(mappingDto.getId(), "New review", 3, ProvenanceDtoAssembler.disassemble(mappingDto.getCreated())); userService.addUserToProject(super.user2, project.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java index 10163f3..ca2c9a1 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java @@ -7,6 +7,8 @@ import org.springframework.test.context.ContextConfiguration; import uk.ac.ebi.spot.ontotools.curation.constants.*; import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.OntologyTermDtoAssembler; import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; @@ -18,6 +20,7 @@ import uk.ac.ebi.spot.ontotools.curation.service.UserService; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; +import java.util.ArrayList; import java.util.Arrays; import java.util.List; @@ -56,27 +59,10 @@ public void setup() throws Exception { */ @Test public void shouldGetMappings() throws Exception { - EntityDto actual = super.retrieveEntity(project.getId()); - assertEquals("Achondroplasia", actual.getName()); - assertEquals(EntityStatus.AUTO_MAPPED.name(), actual.getMappingStatus()); - - assertEquals(1, actual.getMappings().size()); - assertEquals("Orphanet:15", actual.getMappings().get(0).getOntologyTerms().get(0).getCurie()); - assertEquals(MappingStatus.AWAITING_REVIEW.name(), actual.getMappings().get(0).getStatus()); - - assertEquals(2, actual.getMappingSuggestions().size()); - int foundCuries = 0; - for (MappingSuggestionDto mappingSuggestion : actual.getMappingSuggestions()) { - if (mappingSuggestion.getOntologyTerm().getCurie().equalsIgnoreCase("Orphanet:15")) { - foundCuries++; - } - if (mappingSuggestion.getOntologyTerm().getCurie().equalsIgnoreCase("MONDO:0007037")) { - foundCuries++; - } - } - - assertEquals(2, foundCuries); - assertEquals(sourceDto.getId(), actual.getSource().getId()); + List actual = super.retrieveMapping(project.getId()); + assertEquals(1, actual.size()); + assertEquals("Orphanet:15", actual.get(0).getOntologyTerms().get(0).getCurie()); + assertEquals(MappingStatus.AWAITING_REVIEW.name(), actual.get(0).getStatus()); } /** @@ -84,16 +70,10 @@ public void shouldGetMappings() throws Exception { */ @Test public void shouldCreateMapping() throws Exception { - EntityDto entityDto = super.retrieveEntity(project.getId()); - OntologyTermDto ontologyTermDto = null; - for (MappingSuggestionDto mappingSuggestionDto : entityDto.getMappingSuggestions()) { - if (mappingSuggestionDto.getOntologyTerm().getCurie().equalsIgnoreCase("MONDO:0007037")) { - ontologyTermDto = mappingSuggestionDto.getOntologyTerm(); - break; - } - } - assertNotNull(ontologyTermDto); - MappingCreationDto mappingCreationDto = new MappingCreationDto(entityDto.getId(), ontologyTermDto); + OntologyTerm ontologyTerm = ontologyTermRepository.findByCurie("MONDO:0007037").get(); + OntologyTermDto ontologyTermDto = OntologyTermDtoAssembler.assemble(ontologyTerm); + MappingCreationDto mappingCreationDto = new MappingCreationDto(entity.getId(), ontologyTermDto); + mappingRepository.deleteAll(); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS; String response = mockMvc.perform(post(endpoint) @@ -105,32 +85,37 @@ public void shouldCreateMapping() throws Exception { .getResponse() .getContentAsString(); - EntityDto actual = mapper.readValue(response, new TypeReference() { + MappingDto actual = mapper.readValue(response, new TypeReference() { }); - assertEquals("Achondroplasia", actual.getName()); - assertEquals(EntityStatus.MANUALLY_MAPPED.name(), actual.getMappingStatus()); - - assertEquals(2, actual.getMappings().size()); - int foundCuries = 0; - for (MappingDto mappingDto : actual.getMappings()) { - if (mappingDto.getOntologyTerms().get(0).getCurie().equalsIgnoreCase("Orphanet:15")) { - foundCuries++; - } - if (mappingDto.getOntologyTerms().get(0).getCurie().equalsIgnoreCase("MONDO:0007037")) { - foundCuries++; - } - } + assertEquals(1, actual.getOntologyTerms().size()); + assertEquals("Achondroplasia", actual.getOntologyTerms().get(0).getLabel()); + assertEquals("MONDO:0007037", actual.getOntologyTerms().get(0).getCurie()); - assertEquals(2, foundCuries); - for (MappingDto mappingDto : actual.getMappings()) { - assertEquals(MappingStatus.AWAITING_REVIEW.name(), mappingDto.getStatus()); - } + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_ENTITIES + "/" + entity.getId(); + response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + EntityDto actualEntity = mapper.readValue(response, new TypeReference() { + }); - assertEquals(1, actual.getMappingSuggestions().size()); - assertEquals("Orphanet:15", actual.getMappingSuggestions().get(0).getOntologyTerm().getCurie()); + assertEquals(EntityStatus.MANUALLY_MAPPED.name(), actualEntity.getMappingStatus()); - assertEquals(sourceDto.getId(), actual.getSource().getId()); + assertNotNull(actualEntity.getMapping()); + assertEquals(1, actualEntity.getMapping().getOntologyTerms().size()); + assertEquals("Achondroplasia", actualEntity.getMapping().getOntologyTerms().get(0).getLabel()); + assertEquals("MONDO:0007037", actualEntity.getMapping().getOntologyTerms().get(0).getCurie()); + + assertEquals(1, actualEntity.getMappingSuggestions().size()); + assertEquals("Orphanet:15", actualEntity.getMappingSuggestions().get(0).getOntologyTerm().getCurie()); + + assertEquals(sourceDto.getId(), actualEntity.getSource().getId()); } /** @@ -138,106 +123,91 @@ public void shouldCreateMapping() throws Exception { */ @Test public void shouldUpdateMapping() throws Exception { - EntityDto entityDto = super.retrieveEntity(project.getId()); - OntologyTermDto ontologyTermDto = null; - for (MappingSuggestionDto mappingSuggestionDto : entityDto.getMappingSuggestions()) { - if (mappingSuggestionDto.getOntologyTerm().getCurie().equalsIgnoreCase("MONDO:0007037")) { - ontologyTermDto = mappingSuggestionDto.getOntologyTerm(); - break; - } - } - assertNotNull(ontologyTermDto); - MappingCreationDto mappingCreationDto = new MappingCreationDto(entityDto.getId(), ontologyTermDto); + List mappingDtos = super.retrieveMapping(project.getId()); + List ontologyTermDtos = new ArrayList<>(); + ontologyTermDtos.add(OntologyTermDtoAssembler.assemble(ontologyTermRepository.findByCurie("MONDO:0007037").get())); + ontologyTermDtos.add(OntologyTermDtoAssembler.assemble(ontologyTermRepository.findByCurie("Orphanet:15").get())); - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + orphaTermMapping.getId(); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + mappingDtos.get(0).getId(); String response = mockMvc.perform(put(endpoint) .contentType(MediaType.APPLICATION_JSON) - .content(mapper.writeValueAsString(mappingCreationDto)) + .content(mapper.writeValueAsString(ontologyTermDtos)) .header(IDPConstants.JWT_TOKEN, "token1")) .andExpect(status().isOk()) .andReturn() .getResponse() .getContentAsString(); - EntityDto actual = mapper.readValue(response, new TypeReference() { + MappingDto actual = mapper.readValue(response, new TypeReference() { }); - - assertEquals("Achondroplasia", actual.getName()); - assertEquals(EntityStatus.MANUALLY_MAPPED.name(), actual.getMappingStatus()); - - assertEquals(1, actual.getMappings().size()); - int foundCuries = 0; - for (OntologyTermDto ontologyTerm : actual.getMappings().get(0).getOntologyTerms()) { - if (ontologyTerm.getCurie().equalsIgnoreCase("Orphanet:15")) { - foundCuries++; - } - if (ontologyTerm.getCurie().equalsIgnoreCase("MONDO:0007037")) { - foundCuries++; - } + assertEquals(2, actual.getOntologyTerms().size()); + List curies = new ArrayList<>(); + for (OntologyTermDto ontologyTermDto : actual.getOntologyTerms()) { + curies.add(ontologyTermDto.getCurie()); } - assertEquals(2, foundCuries); - assertEquals(1, actual.getMappingSuggestions().size()); - assertEquals("Orphanet:15", actual.getMappingSuggestions().get(0).getOntologyTerm().getCurie()); - } + assertTrue(curies.contains("Orphanet:15")); + assertTrue(curies.contains("MONDO:0007037")); - /** - * DELETE /v1/projects/{projectId}/mappings/{mappingId}?curie= - */ - @Test - public void shouldDeleteMappingByCurie() throws Exception { - EntityDto entityDto = super.retrieveEntity(project.getId()); - OntologyTermDto ontologyTermDto = null; - for (MappingSuggestionDto mappingSuggestionDto : entityDto.getMappingSuggestions()) { - if (mappingSuggestionDto.getOntologyTerm().getCurie().equalsIgnoreCase("MONDO:0007037")) { - ontologyTermDto = mappingSuggestionDto.getOntologyTerm(); - break; - } - } - assertNotNull(ontologyTermDto); - MappingCreationDto mappingCreationDto = new MappingCreationDto(entityDto.getId(), ontologyTermDto); - - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + orphaTermMapping.getId(); - String response = mockMvc.perform(put(endpoint) + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_ENTITIES + "/" + entity.getId(); + response = mockMvc.perform(get(endpoint) .contentType(MediaType.APPLICATION_JSON) - .content(mapper.writeValueAsString(mappingCreationDto)) .header(IDPConstants.JWT_TOKEN, "token1")) .andExpect(status().isOk()) .andReturn() .getResponse() .getContentAsString(); - EntityDto actual = mapper.readValue(response, new TypeReference() { + EntityDto actualEntity = mapper.readValue(response, new TypeReference() { }); - assertEquals(1, actual.getMappings().size()); - int foundCuries = 0; - for (OntologyTermDto ontologyTerm : actual.getMappings().get(0).getOntologyTerms()) { - if (ontologyTerm.getCurie().equalsIgnoreCase("Orphanet:15")) { - foundCuries++; - } - if (ontologyTerm.getCurie().equalsIgnoreCase("MONDO:0007037")) { - foundCuries++; - } - } + assertEquals(EntityStatus.MANUALLY_MAPPED.name(), actualEntity.getMappingStatus()); + + assertNotNull(actualEntity.getMapping()); + assertEquals(2, actualEntity.getMapping().getOntologyTerms().size()); - assertEquals(2, foundCuries); - assertEquals(1, actual.getMappingSuggestions().size()); - assertEquals("Orphanet:15", actual.getMappingSuggestions().get(0).getOntologyTerm().getCurie()); + assertEquals(0, actualEntity.getMappingSuggestions().size()); + } - endpoint += "?curie=MONDO:0007037"; + /** + * DELETE /v1/projects/{projectId}/mappings/{mappingId} + */ + @Test + public void shouldDeleteMapping() throws Exception { + List actual = super.retrieveMapping(project.getId()); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + actual.get(0).getId(); mockMvc.perform(delete(endpoint) .contentType(MediaType.APPLICATION_JSON) .header(IDPConstants.JWT_TOKEN, "token1")) .andExpect(status().isOk()); - entityDto = super.retrieveEntity(project.getId()); - assertEquals(1, entityDto.getMappings().size()); - assertEquals(1, entityDto.getMappings().get(0).getOntologyTerms().size()); - assertEquals("Orphanet:15", entityDto.getMappings().get(0).getOntologyTerms().get(0).getCurie()); + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_ENTITIES + "/" + entity.getId(); + String response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); - assertEquals(2, entityDto.getMappingSuggestions().size()); + EntityDto actualEntity = mapper.readValue(response, new TypeReference() { + }); + + assertEquals(EntityStatus.SUGGESTIONS_PROVIDED.name(), actualEntity.getMappingStatus()); + + assertNull(actualEntity.getMapping()); + + assertEquals(2, actualEntity.getMappingSuggestions().size()); + List curies = new ArrayList<>(); + for (MappingSuggestionDto mappingSuggestionDto : actualEntity.getMappingSuggestions()) { + curies.add(mappingSuggestionDto.getOntologyTerm().getCurie()); + } + + assertTrue(curies.contains("Orphanet:15")); + assertTrue(curies.contains("MONDO:0007037")); } /** @@ -245,17 +215,8 @@ public void shouldDeleteMappingByCurie() throws Exception { */ @Test public void shouldNotCreateMapping() throws Exception { - EntityDto entityDto = super.retrieveEntity(project.getId()); - OntologyTermDto ontologyTermDto = null; - for (MappingSuggestionDto mappingSuggestionDto : entityDto.getMappingSuggestions()) { - if (mappingSuggestionDto.getOntologyTerm().getCurie().equalsIgnoreCase("MONDO:0007037")) { - ontologyTermDto = mappingSuggestionDto.getOntologyTerm(); - break; - } - } - assertNotNull(ontologyTermDto); - MappingCreationDto mappingCreationDto = new MappingCreationDto(entityDto.getId(), ontologyTermDto); - + MappingCreationDto mappingCreationDto = new MappingCreationDto(entity.getId(), + new OntologyTermDto("MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", "Achondroplasia", TermStatus.NEEDS_IMPORT.name(), null, null)); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS; mockMvc.perform(post(endpoint) .contentType(MediaType.APPLICATION_JSON) @@ -269,16 +230,8 @@ public void shouldNotCreateMapping() throws Exception { */ @Test public void shouldNotCreateMappingAsConsumer() throws Exception { - EntityDto entityDto = super.retrieveEntity(project.getId()); - OntologyTermDto ontologyTermDto = null; - for (MappingSuggestionDto mappingSuggestionDto : entityDto.getMappingSuggestions()) { - if (mappingSuggestionDto.getOntologyTerm().getCurie().equalsIgnoreCase("MONDO:0007037")) { - ontologyTermDto = mappingSuggestionDto.getOntologyTerm(); - break; - } - } - assertNotNull(ontologyTermDto); - MappingCreationDto mappingCreationDto = new MappingCreationDto(entityDto.getId(), ontologyTermDto); + MappingCreationDto mappingCreationDto = new MappingCreationDto(entity.getId(), + new OntologyTermDto("MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", "Achondroplasia", TermStatus.NEEDS_IMPORT.name(), null, null)); userService.addUserToProject(super.user2, project.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS; @@ -288,4 +241,34 @@ public void shouldNotCreateMappingAsConsumer() throws Exception { .header(IDPConstants.JWT_TOKEN, "token2")) .andExpect(status().isNotFound()); } + + /** + * DELETE /v1/projects/{projectId}/mappings/{mappingId} + */ + @Test + public void shouldNotDeleteMapping() throws Exception { + List actual = super.retrieveMapping(project.getId()); + MappingDto mappingDto = actual.get(0); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId(); + mockMvc.perform(delete(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * DELETE /v1/projects/{projectId}/mappings/{mappingId} + */ + @Test + public void shouldNotDeleteMappingAsConsumer() throws Exception { + List actual = super.retrieveMapping(project.getId()); + MappingDto mappingDto = actual.get(0); + userService.addUserToProject(super.user2, project.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId(); + mockMvc.perform(delete(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java index 2ad85a8..c279f88 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java @@ -24,8 +24,7 @@ import java.util.*; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertTrue; +import static org.junit.Assert.*; import static org.mockito.ArgumentMatchers.any; import static org.mockito.ArgumentMatchers.eq; import static org.mockito.Mockito.when; @@ -142,10 +141,8 @@ public void testCase1() { List mappingSuggestions = mappingSuggestionMap.get(entity.getId()); assertEquals(2, mappingSuggestions.size()); - Map> mappingMap = mappingService.retrieveMappingsForEntities(Arrays.asList(new String[]{entity.getId()})); - assertEquals(1, mappingMap.size()); - List mappings = mappingMap.get(entity.getId()); - assertEquals(1, mappings.size()); + Mapping mapping = mappingService.retrieveMappingForEntity(entity.getId()); + assertNotNull(mapping); } /** @@ -191,8 +188,8 @@ public void testCase2() { List mappingSuggestions = mappingSuggestionMap.get(entity.getId()); assertEquals(2, mappingSuggestions.size()); - Map> mappingMap = mappingService.retrieveMappingsForEntities(Arrays.asList(new String[]{entity.getId()})); - assertEquals(0, mappingMap.size()); + Mapping mapping = mappingService.retrieveMappingForEntity(entity.getId()); + assertNull(mapping); } /** @@ -240,8 +237,8 @@ public void testCase3() { List mappingSuggestions = mappingSuggestionMap.get(entity.getId()); assertEquals(1, mappingSuggestions.size()); - Map> mappingMap = mappingService.retrieveMappingsForEntities(Arrays.asList(new String[]{entity.getId()})); - assertEquals(0, mappingMap.size()); + Mapping mapping = mappingService.retrieveMappingForEntity(entity.getId()); + assertNull(mapping); } /** @@ -286,10 +283,8 @@ public void testCase4() { List mappingSuggestions = mappingSuggestionMap.get(entity.getId()); assertEquals(2, mappingSuggestions.size()); - Map> mappingMap = mappingService.retrieveMappingsForEntities(Arrays.asList(new String[]{entity.getId()})); - assertEquals(1, mappingMap.size()); - List mappings = mappingMap.get(entity.getId()); - assertEquals(1, mappings.size()); + Mapping mapping = mappingService.retrieveMappingForEntity(entity.getId()); + assertNotNull(mapping); } /** @@ -334,7 +329,7 @@ public void testCase5() { List mappingSuggestions = mappingSuggestionMap.get(entity.getId()); assertEquals(2, mappingSuggestions.size()); - Map> mappingMap = mappingService.retrieveMappingsForEntities(Arrays.asList(new String[]{entity.getId()})); - assertEquals(0, mappingMap.size()); + Mapping mapping = mappingService.retrieveMappingForEntity(entity.getId()); + assertNull(mapping); } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java index 86665dd..b3bdf95 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java @@ -8,8 +8,8 @@ import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; -import uk.ac.ebi.spot.ontotools.curation.domain.*; import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.config.ExternalServiceConfig; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; @@ -25,8 +25,7 @@ import java.util.List; import java.util.Map; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertTrue; +import static org.junit.Assert.*; @ContextConfiguration(classes = {IntegrationTest.MockTaskExecutorConfig.class}) public class MatchMakingTest extends IntegrationTest { @@ -112,14 +111,9 @@ public void runMatchmakingTest() { assertTrue(ontoMap.containsKey(mappingSuggestion.getOntologyTermId())); } - Map> mappingMap = mappingService.retrieveMappingsForEntities(Arrays.asList(new String[]{entity.getId()})); - assertEquals(1, mappingMap.size()); - List mappings = mappingMap.get(entity.getId()); - assertEquals(1, mappings.size()); - - for (Mapping mapping : mappings) { - assertTrue(ontoMap.containsKey(mapping.getOntologyTermIds().get(0))); - assertEquals(MappingStatus.AWAITING_REVIEW.name(), mapping.getStatus()); - } + Mapping mapping = mappingService.retrieveMappingForEntity(entity.getId()); + assertNotNull(mapping); + assertTrue(ontoMap.containsKey(mapping.getOntologyTermIds().get(0))); + assertEquals(MappingStatus.AWAITING_REVIEW.name(), mapping.getStatus()); } } From 424b76c30927d932791e9589781a8d155dff5396 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Mon, 8 Mar 2021 21:11:26 +0800 Subject: [PATCH 32/72] WIP: Adding audit trail for entities. --- .../constants/AuditEntryConstants.java | 11 ++++ .../ontotools/curation/domain/AuditEntry.java | 34 ++++++++++ .../curation/domain/MetadataEntry.java | 13 ++++ .../repository/AuditEntryRepository.java | 11 ++++ .../assembler/AuditEntryDtoAssembler.java | 17 +++++ .../rest/assembler/EntityDtoAssembler.java | 6 +- .../assembler/MetadataEntryDtoAssembler.java | 10 +++ .../rest/controller/EntityController.java | 12 +++- .../rest/controller/MappingsController.java | 36 +++++----- .../curation/rest/dto/EntityDto.java | 10 +++ .../curation/rest/dto/ProvenanceDto.java | 6 +- .../rest/dto/audit/AuditEntryDto.java | 66 +++++++++++++++++++ .../curation/rest/dto/audit/AuditUserDto.java | 36 ++++++++++ .../rest/dto/audit/MetadataEntryDto.java | 39 +++++++++++ .../curation/service/AuditEntryService.java | 14 ++++ .../curation/service/MappingService.java | 4 +- .../service/MappingSuggestionsService.java | 4 +- .../service/impl/AuditEntryServiceImpl.java | 38 +++++++++++ .../service/impl/MappingServiceImpl.java | 41 ++++++------ .../impl/MappingSuggestionsServiceImpl.java | 26 ++++++-- .../service/impl/MatchmakerServiceImpl.java | 2 +- 21 files changed, 382 insertions(+), 54 deletions(-) create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/AuditEntryConstants.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/AuditEntry.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MetadataEntry.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/AuditEntryRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/AuditEntryDtoAssembler.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MetadataEntryDtoAssembler.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/AuditEntryDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/AuditUserDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/MetadataEntryDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/AuditEntryService.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/AuditEntryServiceImpl.java diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/AuditEntryConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/AuditEntryConstants.java new file mode 100644 index 0000000..157ece6 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/AuditEntryConstants.java @@ -0,0 +1,11 @@ +package uk.ac.ebi.spot.ontotools.curation.constants; + +public enum AuditEntryConstants { + + ADDED_SUGGESTION, + REMOVED_SUGGESTION, + ADDED_MAPPING, + UPDATED_MAPPING, + REMOVED_MAPPING, + REVIEWED +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/AuditEntry.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/AuditEntry.java new file mode 100644 index 0000000..02eb009 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/AuditEntry.java @@ -0,0 +1,34 @@ +package uk.ac.ebi.spot.ontotools.curation.domain; + +import lombok.AllArgsConstructor; +import lombok.Getter; +import lombok.NoArgsConstructor; +import lombok.Setter; +import org.joda.time.DateTime; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.index.Indexed; +import org.springframework.data.mongodb.core.mapping.Document; + +import java.util.List; + +@Document(collection = "auditEntries") +@NoArgsConstructor +@AllArgsConstructor +@Getter +@Setter +public class AuditEntry { + + @Id + private String id; + + @Indexed + private String entityId; + + private String action; + + private Provenance provenance; + + private List metadataEntries; + + private DateTime timestamp; +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MetadataEntry.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MetadataEntry.java new file mode 100644 index 0000000..2fabbf8 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MetadataEntry.java @@ -0,0 +1,13 @@ +package uk.ac.ebi.spot.ontotools.curation.domain; + +import lombok.AllArgsConstructor; +import lombok.Getter; + +@AllArgsConstructor +@Getter +public class MetadataEntry { + + private String key; + + private String value; +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/AuditEntryRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/AuditEntryRepository.java new file mode 100644 index 0000000..3a18bd6 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/AuditEntryRepository.java @@ -0,0 +1,11 @@ +package uk.ac.ebi.spot.ontotools.curation.repository; + +import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.AuditEntry; + +import java.util.List; + +public interface AuditEntryRepository extends MongoRepository { + + List findByEntityIdOrderByTimestampDesc(String entityId); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/AuditEntryDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/AuditEntryDtoAssembler.java new file mode 100644 index 0000000..35b7f1e --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/AuditEntryDtoAssembler.java @@ -0,0 +1,17 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.assembler; + +import uk.ac.ebi.spot.ontotools.curation.domain.AuditEntry; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.audit.AuditEntryDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.audit.AuditUserDto; + +import java.util.stream.Collectors; + +public class AuditEntryDtoAssembler { + + public static AuditEntryDto assemble(AuditEntry auditEntry) { + return new AuditEntryDto(auditEntry.getAction(), + new AuditUserDto(auditEntry.getProvenance().getUserName(), auditEntry.getProvenance().getUserEmail()), + auditEntry.getMetadataEntries().stream().map(MetadataEntryDtoAssembler::assemble).collect(Collectors.toList()), + auditEntry.getTimestamp()); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java index 73217ad..73cec2a 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java @@ -1,10 +1,12 @@ package uk.ac.ebi.spot.ontotools.curation.rest.assembler; +import uk.ac.ebi.spot.ontotools.curation.domain.AuditEntry; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.audit.AuditEntryDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingSuggestionDto; @@ -14,9 +16,10 @@ public class EntityDtoAssembler { - public static EntityDto assemble(Entity entity, SourceDto source, Mapping mapping, List mappingSuggestions) { + public static EntityDto assemble(Entity entity, SourceDto source, Mapping mapping, List mappingSuggestions, List auditEntries) { List mappingSuggestionDtos = mappingSuggestions != null ? mappingSuggestions.stream().map(MappingSuggestionDtoAssembler::assemble).collect(Collectors.toList()) : new ArrayList<>(); MappingDto mappingDto = mapping != null ? MappingDtoAssembler.assemble(mapping) : null; + List auditTrail = auditEntries != null ? auditEntries.stream().map(AuditEntryDtoAssembler::assemble).collect(Collectors.toList()) : new ArrayList<>(); return new EntityDto(entity.getId(), source, @@ -26,6 +29,7 @@ public static EntityDto assemble(Entity entity, SourceDto source, Mapping mappin entity.getMappingStatus().name(), mappingSuggestionDtos, mappingDto, + auditTrail, ProvenanceDtoAssembler.assemble(entity.getCreated())); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MetadataEntryDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MetadataEntryDtoAssembler.java new file mode 100644 index 0000000..a06e050 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MetadataEntryDtoAssembler.java @@ -0,0 +1,10 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.assembler; + +import uk.ac.ebi.spot.ontotools.curation.domain.MetadataEntry; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.audit.MetadataEntryDto; + +public class MetadataEntryDtoAssembler { + public static MetadataEntryDto assemble(MetadataEntry metadataEntry) { + return new MetadataEntryDto(metadataEntry.getKey(), metadataEntry.getValue()); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java index 3a12ee1..b46ce8c 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java @@ -53,6 +53,9 @@ public class EntityController { @Autowired private MappingService mappingService; + @Autowired + private AuditEntryService auditEntryService; + /** * GET /v1/projects/{projectId}/entities */ @@ -75,7 +78,10 @@ public RestResponsePage getEntities(@PathVariable String projectId, @ Map> mappingSuggestions = mappingSuggestionsService.retrieveMappingSuggestionsForEntities(entityIds); List entityDtos = new ArrayList<>(); for (Entity entity : entities.getContent()) { - entityDtos.add(EntityDtoAssembler.assemble(entity, sourceMap.get(entity.getSourceId()), mappings.get(entity.getId()), mappingSuggestions.get(entity.getId()))); + entityDtos.add(EntityDtoAssembler.assemble(entity, sourceMap.get(entity.getSourceId()), + mappings.get(entity.getId()), + mappingSuggestions.get(entity.getId()), + auditEntryService.retrieveAuditEntries(entity.getId()))); } return new RestResponsePage<>(entityDtos, pageable, entities.getTotalElements()); } @@ -94,6 +100,8 @@ public EntityDto getEntity(@PathVariable String projectId, @PathVariable String Source source = sourceService.getSource(entity.getSourceId(), projectId); Mapping mapping = mappingService.retrieveMappingForEntity(entityId); Map> mappingSuggestions = mappingSuggestionsService.retrieveMappingSuggestionsForEntities(Arrays.asList(new String[]{entityId})); - return EntityDtoAssembler.assemble(entity, SourceDtoAssembler.assemble(source), mapping, mappingSuggestions.get(entityId)); + return EntityDtoAssembler.assemble(entity, SourceDtoAssembler.assemble(source), + mapping, mappingSuggestions.get(entityId), + auditEntryService.retrieveAuditEntries(entity.getId())); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java index 4f48ed9..1007cba 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java @@ -26,9 +26,7 @@ import javax.servlet.http.HttpServletRequest; import javax.validation.Valid; import javax.validation.constraints.NotEmpty; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.List; +import java.util.*; @RestController @RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) @@ -48,9 +46,6 @@ public class MappingsController { @Autowired private MappingService mappingService; - @Autowired - private SourceService sourceService; - @Autowired private MappingSuggestionsService mappingSuggestionsService; @@ -113,7 +108,7 @@ public MappingDto createMapping(@PathVariable String projectId, @RequestBody @Va /** * Deleting mapping suggestions associated with the current ontology term. */ - mappingSuggestionsService.deleteMappingSuggestions(entity.getId(), ontologyTerm.getId()); + mappingSuggestionsService.deleteMappingSuggestions(entity.getId(), ontologyTerm, provenance); return MappingDtoAssembler.assemble(created); } @@ -130,20 +125,20 @@ public MappingDto updateMapping(@PathVariable String projectId, @PathVariable St projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); - List ontologyTermIds = new ArrayList<>(); + Map ontologyTermMap = new LinkedHashMap<>(); List ontologyTerms = new ArrayList<>(); for (OntologyTermDto ontologyTermDto : ontologyTermsDtos) { OntologyTerm ontologyTerm = ontologyTermService.retrieveTermByCurie(ontologyTermDto.getCurie()); - ontologyTermIds.add(ontologyTerm.getId()); + ontologyTermMap.put(ontologyTerm.getId(), ontologyTerm); ontologyTerms.add(ontologyTerm); } Mapping existing = mappingService.retrieveMappingById(mappingId); List existingOntoIds = existing.getOntologyTermIds(); - Mapping updated = mappingService.updateMapping(mappingId, ontologyTermIds); + Mapping updated = mappingService.updateMapping(mappingId, ontologyTerms, provenance); List old = new ArrayList<>(); for (String oId : existingOntoIds) { - if (!ontologyTermIds.contains(oId)) { + if (!ontologyTermMap.containsKey(oId)) { old.add(ontologyTermService.retrieveTermById(oId)); } } @@ -157,8 +152,8 @@ public MappingDto updateMapping(@PathVariable String projectId, @PathVariable St /** * Deleting mapping suggestions associated with the new ontology terms */ - for (String oId : ontologyTermIds) { - mappingSuggestionsService.deleteMappingSuggestions(entity.getId(), oId); + for (String oId : ontologyTermMap.keySet()) { + mappingSuggestionsService.deleteMappingSuggestions(entity.getId(), ontologyTermMap.get(oId), provenance); } /** * Create mapping suggestions associated with the old ontology terms @@ -187,18 +182,25 @@ public void deleteMapping(@PathVariable String projectId, @PathVariable String m Entity entity = entityService.retrieveEntity(mapping.getEntityId()); List ontoTermIds = mapping.getOntologyTermIds(); + Map ontologyTermMap = new LinkedHashMap<>(); + Map metadata = new LinkedHashMap<>(); + for (String ontoTermId : ontoTermIds) { + OntologyTerm ontologyTerm = ontologyTermService.retrieveTermById(ontoTermId); + ontologyTermMap.put(ontoTermId, ontologyTerm); + metadata.put(ontologyTerm.getCurie(), ontologyTerm.getLabel()); + } + /** * Delete mapping. */ - mappingService.deleteMapping(mappingId); + mappingService.deleteMapping(mappingId, provenance, metadata); entity = entityService.updateMappingStatus(entity, EntityStatus.SUGGESTIONS_PROVIDED); /** * Re-create mapping suggestions. */ - for (String ontoTermId : ontoTermIds) { - OntologyTerm ontologyTerm = ontologyTermService.retrieveTermById(ontoTermId); - mappingSuggestionsService.createMappingSuggestion(entity, ontologyTerm, provenance); + for (String ontoTermId : ontologyTermMap.keySet()) { + mappingSuggestionsService.createMappingSuggestion(entity, ontologyTermMap.get(ontoTermId), provenance); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java index dc42889..9d28c0e 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java @@ -4,6 +4,7 @@ import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonProperty; import lombok.EqualsAndHashCode; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.audit.AuditEntryDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingSuggestionDto; @@ -45,6 +46,9 @@ public final class EntityDto implements Serializable { @JsonProperty("mapping") private final MappingDto mapping; + @JsonProperty("auditTrail") + private final List auditTrail; + @JsonCreator public EntityDto(@JsonProperty("id") String id, @JsonProperty("source") SourceDto source, @@ -54,6 +58,7 @@ public EntityDto(@JsonProperty("id") String id, @JsonProperty("mappingStatus") String mappingStatus, @JsonProperty("mappingSuggestions") List mappingSuggestions, @JsonProperty("mapping") MappingDto mapping, + @JsonProperty("auditTrail") List auditTrail, @JsonProperty("created") ProvenanceDto created) { this.id = id; this.source = source; @@ -63,6 +68,7 @@ public EntityDto(@JsonProperty("id") String id, this.mappingStatus = mappingStatus; this.mappingSuggestions = mappingSuggestions; this.mapping = mapping; + this.auditTrail = auditTrail; this.created = created; } @@ -102,4 +108,8 @@ public String getUpstreamId() { public String getUpstreamField() { return upstreamField; } + + public List getAuditTrail() { + return auditTrail; + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProvenanceDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProvenanceDto.java index 3a7da40..9dfcd67 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProvenanceDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProvenanceDto.java @@ -10,7 +10,7 @@ import uk.ac.ebi.spot.ontotools.curation.util.JsonJodaDateTimeDeserializer; import uk.ac.ebi.spot.ontotools.curation.util.JsonJodaDateTimeSerializer; -import javax.validation.constraints.NotNull; +import javax.validation.constraints.NotEmpty; import java.io.Serializable; @EqualsAndHashCode @@ -19,12 +19,12 @@ public final class ProvenanceDto implements Serializable { private static final long serialVersionUID = -527759108725584128L; - @NotNull + @NotEmpty @JsonSerialize(using = JsonJodaDateTimeSerializer.class) @JsonProperty("timestamp") private final DateTime timestamp; - @NotNull + @NotEmpty @JsonProperty("user") private final UserDto user; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/AuditEntryDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/AuditEntryDto.java new file mode 100644 index 0000000..2d3d16e --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/AuditEntryDto.java @@ -0,0 +1,66 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.audit; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import com.fasterxml.jackson.databind.annotation.JsonDeserialize; +import com.fasterxml.jackson.databind.annotation.JsonSerialize; +import lombok.EqualsAndHashCode; +import org.joda.time.DateTime; +import uk.ac.ebi.spot.ontotools.curation.util.JsonJodaDateTimeDeserializer; +import uk.ac.ebi.spot.ontotools.curation.util.JsonJodaDateTimeSerializer; + +import javax.validation.constraints.NotEmpty; +import java.io.Serializable; +import java.util.List; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class AuditEntryDto implements Serializable { + + private static final long serialVersionUID = 1202550557817376005L; + + @NotEmpty + @JsonProperty("action") + private final String action; + + @NotEmpty + @JsonProperty("user") + private final AuditUserDto user; + + @JsonProperty("metadata") + private final List metadata; + + @NotEmpty + @JsonProperty("timestamp") + @JsonSerialize(using = JsonJodaDateTimeSerializer.class) + private final DateTime timestamp; + + + @JsonCreator + public AuditEntryDto(@JsonProperty("action") String action, + @JsonProperty("user") AuditUserDto user, + @JsonProperty("metadata") List metadata, + @JsonProperty("timestamp") @JsonDeserialize(using = JsonJodaDateTimeDeserializer.class) DateTime timestamp) { + this.action = action; + this.user = user; + this.metadata = metadata; + this.timestamp = timestamp; + } + + public String getAction() { + return action; + } + + public AuditUserDto getUser() { + return user; + } + + public List getMetadata() { + return metadata; + } + + public DateTime getTimestamp() { + return timestamp; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/AuditUserDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/AuditUserDto.java new file mode 100644 index 0000000..7af23c6 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/AuditUserDto.java @@ -0,0 +1,36 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.audit; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class AuditUserDto implements Serializable { + + private static final long serialVersionUID = -3429229879698902802L; + + @JsonProperty("name") + private final String name; + + @JsonProperty("email") + private final String email; + + @JsonCreator + public AuditUserDto(@JsonProperty("name") String name, + @JsonProperty("email") String email) { + this.name = name; + this.email = email; + } + + public String getName() { + return name; + } + + public String getEmail() { + return email; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/MetadataEntryDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/MetadataEntryDto.java new file mode 100644 index 0000000..6e62b77 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/MetadataEntryDto.java @@ -0,0 +1,39 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.audit; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotEmpty; +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class MetadataEntryDto implements Serializable { + + private static final long serialVersionUID = -2731589237887840195L; + + @NotEmpty + @JsonProperty("key") + private final String key; + + @NotEmpty + @JsonProperty("value") + private final String value; + + @JsonCreator + public MetadataEntryDto(@JsonProperty("key") String key, + @JsonProperty("value") String value) { + this.key = key; + this.value = value; + } + + public String getKey() { + return key; + } + + public String getValue() { + return value; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/AuditEntryService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/AuditEntryService.java new file mode 100644 index 0000000..c551245 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/AuditEntryService.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import uk.ac.ebi.spot.ontotools.curation.domain.AuditEntry; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; + +import java.util.List; +import java.util.Map; + +public interface AuditEntryService { + + void addEntry(String action, String entityId, Provenance provenance, Map metadata); + + List retrieveAuditEntries(String entityId); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java index 8ed513a..95f57a0 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java @@ -22,7 +22,7 @@ public interface MappingService { Mapping addCommentToMapping(String mappingId, String body, Provenance provenance); - Mapping updateMapping(String mappingId, List ontologyTermIds); + Mapping updateMapping(String mappingId, List ontologyTerms, Provenance provenance); - void deleteMapping(String mappingId); + void deleteMapping(String mappingId, Provenance provenance, Map metadata); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java index bb06623..b1e3c43 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingSuggestionsService.java @@ -12,11 +12,11 @@ public interface MappingSuggestionsService { MappingSuggestion createMappingSuggestion(Entity entity, OntologyTerm ontologyTerm, Provenance provenance); - void deleteMappingSuggestionsExcluding(Entity entity, List ontologyTerms); + void deleteMappingSuggestionsExcluding(Entity entity, List ontologyTerms, Provenance provenance); Map> retrieveMappingSuggestionsForEntities(List entityIds); List retrieveMappingSuggestionsForEntity(String entityId); - void deleteMappingSuggestions(String entityId, String ontologyTermId); + void deleteMappingSuggestions(String entityId, OntologyTerm ontologyTerm, Provenance provenance); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/AuditEntryServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/AuditEntryServiceImpl.java new file mode 100644 index 0000000..5d158e9 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/AuditEntryServiceImpl.java @@ -0,0 +1,38 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import org.joda.time.DateTime; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.scheduling.annotation.Async; +import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.domain.AuditEntry; +import uk.ac.ebi.spot.ontotools.curation.domain.MetadataEntry; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.repository.AuditEntryRepository; +import uk.ac.ebi.spot.ontotools.curation.service.AuditEntryService; + +import java.util.ArrayList; +import java.util.List; +import java.util.Map; + +@Service +public class AuditEntryServiceImpl implements AuditEntryService { + + @Autowired + private AuditEntryRepository auditEntryRepository; + + @Override + @Async + public void addEntry(String action, String entityId, Provenance provenance, Map metadata) { + List metadataEntryList = new ArrayList<>(); + for (String key : metadata.keySet()) { + metadataEntryList.add(new MetadataEntry(key, metadata.get(key))); + } + + auditEntryRepository.insert(new AuditEntry(null, entityId, action, provenance, metadataEntryList, DateTime.now())); + } + + @Override + public List retrieveAuditEntries(String entityId) { + return auditEntryRepository.findByEntityIdOrderByTimestampDesc(entityId); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java index b7d11de..c0e4639 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java @@ -4,6 +4,7 @@ import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.constants.AuditEntryConstants; import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.Review; @@ -13,6 +14,7 @@ import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; import uk.ac.ebi.spot.ontotools.curation.repository.MappingRepository; +import uk.ac.ebi.spot.ontotools.curation.service.AuditEntryService; import uk.ac.ebi.spot.ontotools.curation.service.MappingService; import uk.ac.ebi.spot.ontotools.curation.service.OntologyTermService; @@ -29,6 +31,9 @@ public class MappingServiceImpl implements MappingService { @Autowired private OntologyTermService ontologyTermService; + @Autowired + private AuditEntryService auditEntryService; + @Override public Mapping createMapping(Entity entity, OntologyTerm ontologyTerm, Provenance provenance) { log.info("Creating mapping for entity [{}]: {}", entity.getName(), ontologyTerm.getCurie()); @@ -43,13 +48,15 @@ public Mapping createMapping(Entity entity, OntologyTerm ontologyTerm, Provenanc Mapping created = mappingRepository.insert(new Mapping(null, entity.getId(), Arrays.asList(new String[]{ontologyTerm.getId()}), entity.getProjectId(), false, new ArrayList<>(), new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), provenance, null)); created.setOntologyTerms(Arrays.asList(new OntologyTerm[]{ontologyTerm})); + + auditEntryService.addEntry(AuditEntryConstants.ADDED_MAPPING.name(), entity.getId(), provenance, Map.of(ontologyTerm.getIri(), ontologyTerm.getLabel())); log.info("Mapping for between entity [{}] and ontology term [{}] created: {}", entity.getName(), ontologyTerm.getCurie(), created.getId()); return created; } @Override - public Mapping updateMapping(String mappingId, List ontologyTermIds) { - log.info("Updating mapping [{}]: {}", mappingId, ontologyTermIds); + public Mapping updateMapping(String mappingId, List ontologyTerms, Provenance provenance) { + log.info("Updating mapping [{}]: {}", mappingId, ontologyTerms); Optional mappingOp = mappingRepository.findById(mappingId); if (!mappingOp.isPresent()) { log.error("Mapping not found: {}", mappingId); @@ -57,12 +64,20 @@ public Mapping updateMapping(String mappingId, List ontologyTermIds) { } Mapping mapping = mappingOp.get(); + List ontologyTermIds = new ArrayList<>(); mapping.setOntologyTermIds(ontologyTermIds); + Map metadata = new LinkedHashMap<>(); + for (OntologyTerm ontologyTerm : ontologyTerms) { + ontologyTermIds.add(ontologyTerm.getId()); + metadata.put(ontologyTerm.getCurie(), ontologyTerm.getLabel()); + } + + auditEntryService.addEntry(AuditEntryConstants.UPDATED_MAPPING.name(), mappingOp.get().getEntityId(), provenance, metadata); return mappingRepository.save(mapping); } @Override - public void deleteMapping(String mappingId) { + public void deleteMapping(String mappingId, Provenance provenance, Map metadata) { Optional mappingOp = mappingRepository.findById(mappingId); if (!mappingOp.isPresent()) { log.error("Mapping not found: {}", mappingId); @@ -70,6 +85,7 @@ public void deleteMapping(String mappingId) { } mappingRepository.delete(mappingOp.get()); + auditEntryService.addEntry(AuditEntryConstants.REMOVED_MAPPING.name(), mappingOp.get().getEntityId(), provenance, metadata); } @Override @@ -128,23 +144,6 @@ public Mapping retrieveMappingForEntity(String entityId) { return null; } - - /* - @Override - public List deleteMappingExcluding(Entity entity, String ontologyTermId) { - log.info("Deleting mappings for entity [{}] excluding ontology term: {}", entity.getId(), ontologyTermId); - List mappings = mappingRepository.findByEntityId(entity.getId()); - List result = new ArrayList<>(); - for (Mapping mapping : mappings) { - if (!mapping.getOntologyTermIds().contains(ontologyTermId)) { - result.add(mapping.getOntologyTermId()); - mappingRepository.delete(mapping); - } - } - return result; - } - */ - @Override public Mapping addReviewToMapping(String mappingId, String comment, int noReviewsRequired, Provenance provenance) { log.info("Adding review to mapping: {}", mappingId); @@ -157,6 +156,8 @@ public Mapping addReviewToMapping(String mappingId, String comment, int noReview mapping.setStatus(MappingStatus.REVIEW_IN_PROGRESS.name()); mapping.addReview(new Review(comment, provenance), noReviewsRequired); mapping = mappingRepository.save(mapping); + auditEntryService.addEntry(AuditEntryConstants.REVIEWED.name(), mappingOp.get().getEntityId(), provenance, + comment != null ? Map.of("COMMENT", comment) : new HashMap<>()); return mapping; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java index 42987a1..a132361 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java @@ -5,11 +5,13 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.constants.AuditEntryConstants; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; -import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.repository.MappingSuggestionRepository; +import uk.ac.ebi.spot.ontotools.curation.service.AuditEntryService; import uk.ac.ebi.spot.ontotools.curation.service.MappingSuggestionsService; import uk.ac.ebi.spot.ontotools.curation.service.OntologyTermService; @@ -27,6 +29,9 @@ public class MappingSuggestionsServiceImpl implements MappingSuggestionsService @Autowired private OntologyTermService ontologyTermService; + @Autowired + private AuditEntryService auditEntryService; + @Override public MappingSuggestion createMappingSuggestion(Entity entity, OntologyTerm ontologyTerm, Provenance provenance) { log.info("Creating mapping suggestion for entity [{}]: {}", entity.getName(), ontologyTerm.getCurie()); @@ -37,18 +42,26 @@ public MappingSuggestion createMappingSuggestion(Entity entity, OntologyTerm ont } MappingSuggestion created = mappingSuggestionRepository.insert(new MappingSuggestion(null, entity.getId(), ontologyTerm.getId(), entity.getProjectId(), provenance, null)); + auditEntryService.addEntry(AuditEntryConstants.ADDED_SUGGESTION.name(), entity.getId(), provenance, Map.of(ontologyTerm.getIri(), ontologyTerm.getLabel())); log.info("[{} | {}] Mapping suggestion created: {}", entity.getName(), ontologyTerm.getCurie(), created.getId()); return created; } @Override @Async - public void deleteMappingSuggestionsExcluding(Entity entity, List ontologyTerms) { + public void deleteMappingSuggestionsExcluding(Entity entity, List ontologyTerms, Provenance provenance) { log.info("Deleting [{}] old mapping suggestions for: {}", ontologyTerms.size(), entity.getName()); - List ontologyTermIds = ontologyTerms.stream().map(OntologyTerm::getId).collect(Collectors.toList()); + List ontologyTermIds = new ArrayList<>(); + Map metadata = new LinkedHashMap<>(); + for (OntologyTerm ontologyTerm : ontologyTerms) { + ontologyTermIds.add(ontologyTerm.getId()); + metadata.put(ontologyTerm.getCurie(), ontologyTerm.getLabel()); + } List toDelete = mappingSuggestionRepository.findByEntityIdAndOntologyTermIdNotIn(entity.getId(), ontologyTermIds); log.info("[{}] Found {} mapping suggestions to delete.", entity.getName(), toDelete.size()); mappingSuggestionRepository.deleteAll(toDelete); + + auditEntryService.addEntry(AuditEntryConstants.REMOVED_SUGGESTION.name(), entity.getId(), provenance, metadata); } @Override @@ -92,13 +105,14 @@ public List retrieveMappingSuggestionsForEntity(String entity } @Override - public void deleteMappingSuggestions(String entityId, String ontologyTermId) { - log.info("Deleting mapping suggestions for entity [{}] with ontology term: {}", entityId, ontologyTermId); + public void deleteMappingSuggestions(String entityId, OntologyTerm ontologyTerm, Provenance provenance) { + log.info("Deleting mapping suggestions for entity [{}] with ontology term: {}", entityId, ontologyTerm.getId()); List mappingSuggestions = mappingSuggestionRepository.findByEntityId(entityId); for (MappingSuggestion mappingSuggestion : mappingSuggestions) { - if (mappingSuggestion.getOntologyTermId().equalsIgnoreCase(ontologyTermId)) { + if (mappingSuggestion.getOntologyTermId().equalsIgnoreCase(ontologyTerm.getId())) { mappingSuggestionRepository.delete(mappingSuggestion); } } + auditEntryService.addEntry(AuditEntryConstants.REMOVED_SUGGESTION.name(), entityId, provenance, Map.of(ontologyTerm.getIri(), ontologyTerm.getLabel())); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java index 8b32810..984ff6e 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java @@ -139,7 +139,7 @@ private void autoMap(Entity entity, Project project, User user) { } log.info(" -- Final IRIs and terms created: {}", finalIRIs, termsCreated); - mappingSuggestionsService.deleteMappingSuggestionsExcluding(entity, termsCreated); + mappingSuggestionsService.deleteMappingSuggestionsExcluding(entity, termsCreated, provenance); } } From 9dd0c933aa7deae1532a11ce611d8f49c0e182fc Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Mon, 8 Mar 2021 21:14:23 +0800 Subject: [PATCH 33/72] WIP: Adding audit trail for entities. Added test classes. --- .../curation/rest/dto/audit/AuditEntryDtoTest.java | 14 ++++++++++++++ .../curation/rest/dto/audit/AuditUserDtoTest.java | 14 ++++++++++++++ .../rest/dto/audit/MetadataEntryDtoTest.java | 14 ++++++++++++++ 3 files changed, 42 insertions(+) create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/AuditEntryDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/AuditUserDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/MetadataEntryDtoTest.java diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/AuditEntryDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/AuditEntryDtoTest.java new file mode 100644 index 0000000..020deb1 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/AuditEntryDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.audit; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class AuditEntryDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(AuditEntryDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/AuditUserDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/AuditUserDtoTest.java new file mode 100644 index 0000000..8765d7e --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/AuditUserDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.audit; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class AuditUserDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(AuditUserDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/MetadataEntryDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/MetadataEntryDtoTest.java new file mode 100644 index 0000000..f37c202 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/MetadataEntryDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.audit; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class MetadataEntryDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(MetadataEntryDto.class) + .verify(); + } + +} \ No newline at end of file From 87da24b4adf547676c17924c6a84fc4d9e33bcb3 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Mon, 8 Mar 2021 21:43:15 +0800 Subject: [PATCH 34/72] Fixed incorrect field used in compositeIndex. --- .../ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java index e6f9b03..a36b75c 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java @@ -22,7 +22,7 @@ @Setter @AllArgsConstructor @NoArgsConstructor -@CompoundIndexes({@CompoundIndex(name = "eoId", def = "{'entityId': 1, 'ontologyTermId': 1}")}) +@CompoundIndexes({@CompoundIndex(name = "eoId", def = "{'entityId': 1, 'ontologyTermIds': 1}")}) public class Mapping { @Id From 7e8a5459f9cc2684cb861a0ef8909885e02ff81f Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Tue, 9 Mar 2021 21:12:48 +0800 Subject: [PATCH 35/72] Added tests for audit trail. Fixed java version in pom.xml. --- pom.xml | 1 + .../rest/controller/MappingsController.java | 2 +- .../ontotools/curation/IntegrationTest.java | 6 +- .../MappingReviewsControllerTest.java | 24 +++++-- .../curation/MappingsControllerTest.java | 63 +++++++++++++++---- 5 files changed, 75 insertions(+), 21 deletions(-) diff --git a/pom.xml b/pom.xml index 359d0a6..68efe24 100644 --- a/pom.xml +++ b/pom.xml @@ -21,6 +21,7 @@ UTF-8 uk.ac.ebi.spot.ontotools.curation.Application + 1.9 2.4.2 5.3.3 diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java index 1007cba..eab7296 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java @@ -187,7 +187,7 @@ public void deleteMapping(@PathVariable String projectId, @PathVariable String m for (String ontoTermId : ontoTermIds) { OntologyTerm ontologyTerm = ontologyTermService.retrieveTermById(ontoTermId); ontologyTermMap.put(ontoTermId, ontologyTerm); - metadata.put(ontologyTerm.getCurie(), ontologyTerm.getLabel()); + metadata.put(ontologyTerm.getIri(), ontologyTerm.getLabel()); } /** diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index a981dc4..65fbaa9 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -171,7 +171,7 @@ protected ProjectDto createProject(String name, String token, .getResponse() .getContentAsString(); - ProjectDto actual = mapper.readValue(response, new TypeReference() { + ProjectDto actual = mapper.readValue(response, new TypeReference<>() { }); assertEquals(projectCreationDto.getName(), actual.getName()); assertEquals(projectCreationDto.getDescription(), actual.getDescription()); @@ -213,7 +213,7 @@ protected SourceDto createSource(String projectId) throws Exception { .getResponse() .getContentAsString(); - SourceDto actual = mapper.readValue(response, new TypeReference() { + SourceDto actual = mapper.readValue(response, new TypeReference<>() { }); assertEquals(sourceCreationDto.getName(), actual.getName()); assertEquals(sourceCreationDto.getDescription(), actual.getDescription()); @@ -249,7 +249,7 @@ protected List retrieveMapping(String projectId) throws Exception { .getResponse() .getContentAsString(); - List actual = mapper.readValue(response, new TypeReference>() { + List actual = mapper.readValue(response, new TypeReference<>() { }); return actual; } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java index f255ec8..180d46f 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java @@ -5,13 +5,11 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.MediaType; import org.springframework.test.context.ContextConfiguration; -import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; -import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; -import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; -import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; +import uk.ac.ebi.spot.ontotools.curation.constants.*; import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.ProvenanceDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; @@ -77,7 +75,7 @@ public void shouldCreateReview() throws Exception { .getResponse() .getContentAsString(); - ReviewDto reviewDto = mapper.readValue(response, new TypeReference() { + ReviewDto reviewDto = mapper.readValue(response, new TypeReference<>() { }); assertEquals("New review", reviewDto.getComment()); Mapping mapping = mappingService.retrieveMappingById(mappingDto.getId()); @@ -85,6 +83,22 @@ public void shouldCreateReview() throws Exception { assertEquals("New review", mapping.getReviews().get(0).getComment()); assertFalse(mapping.isReviewed()); assertEquals(MappingStatus.REVIEW_IN_PROGRESS.name(), mapping.getStatus()); + + + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_ENTITIES + "/" + entity.getId(); + response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + EntityDto actualEntity = mapper.readValue(response, new TypeReference<>() { + }); + assertEquals(1, actualEntity.getAuditTrail().size()); + assertEquals(AuditEntryConstants.REVIEWED.name(), actualEntity.getAuditTrail().get(0).getAction()); } /** diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java index ca2c9a1..d16fc9e 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java @@ -12,6 +12,7 @@ import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.audit.AuditEntryDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingCreationDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingSuggestionDto; @@ -85,7 +86,7 @@ public void shouldCreateMapping() throws Exception { .getResponse() .getContentAsString(); - MappingDto actual = mapper.readValue(response, new TypeReference() { + MappingDto actual = mapper.readValue(response, new TypeReference<>() { }); assertEquals(1, actual.getOntologyTerms().size()); @@ -102,7 +103,7 @@ public void shouldCreateMapping() throws Exception { .getResponse() .getContentAsString(); - EntityDto actualEntity = mapper.readValue(response, new TypeReference() { + EntityDto actualEntity = mapper.readValue(response, new TypeReference<>() { }); assertEquals(EntityStatus.MANUALLY_MAPPED.name(), actualEntity.getMappingStatus()); @@ -116,6 +117,20 @@ public void shouldCreateMapping() throws Exception { assertEquals("Orphanet:15", actualEntity.getMappingSuggestions().get(0).getOntologyTerm().getCurie()); assertEquals(sourceDto.getId(), actualEntity.getSource().getId()); + + assertEquals(2, actualEntity.getAuditTrail().size()); + for (AuditEntryDto auditEntryDto : actualEntity.getAuditTrail()) { + assertTrue(auditEntryDto.getAction().equalsIgnoreCase(AuditEntryConstants.ADDED_MAPPING.name()) || + auditEntryDto.getAction().equalsIgnoreCase(AuditEntryConstants.REMOVED_SUGGESTION.name())); + if (auditEntryDto.getAction().equalsIgnoreCase(AuditEntryConstants.REMOVED_SUGGESTION.name())) { + assertEquals(1, auditEntryDto.getMetadata().size()); + assertEquals("http://purl.obolibrary.org/obo/MONDO_0007037", auditEntryDto.getMetadata().get(0).getKey()); + } + if (auditEntryDto.getAction().equalsIgnoreCase(AuditEntryConstants.ADDED_MAPPING.name())) { + assertEquals(1, auditEntryDto.getMetadata().size()); + assertEquals("http://purl.obolibrary.org/obo/MONDO_0007037", auditEntryDto.getMetadata().get(0).getKey()); + } + } } /** @@ -138,7 +153,7 @@ public void shouldUpdateMapping() throws Exception { .getResponse() .getContentAsString(); - MappingDto actual = mapper.readValue(response, new TypeReference() { + MappingDto actual = mapper.readValue(response, new TypeReference<>() { }); assertEquals(2, actual.getOntologyTerms().size()); List curies = new ArrayList<>(); @@ -159,7 +174,7 @@ public void shouldUpdateMapping() throws Exception { .getResponse() .getContentAsString(); - EntityDto actualEntity = mapper.readValue(response, new TypeReference() { + EntityDto actualEntity = mapper.readValue(response, new TypeReference<>() { }); assertEquals(EntityStatus.MANUALLY_MAPPED.name(), actualEntity.getMappingStatus()); @@ -168,6 +183,21 @@ public void shouldUpdateMapping() throws Exception { assertEquals(2, actualEntity.getMapping().getOntologyTerms().size()); assertEquals(0, actualEntity.getMappingSuggestions().size()); + assertEquals(3, actualEntity.getAuditTrail().size()); + + int noRemovedSuggestions = 0; + int noUpdatedMapping = 0; + for (AuditEntryDto auditEntryDto : actualEntity.getAuditTrail()) { + if (auditEntryDto.getAction().equalsIgnoreCase(AuditEntryConstants.UPDATED_MAPPING.name())) { + noUpdatedMapping++; + } + if (auditEntryDto.getAction().equalsIgnoreCase(AuditEntryConstants.REMOVED_SUGGESTION.name())) { + noRemovedSuggestions++; + } + } + + assertEquals(2, noRemovedSuggestions); + assertEquals(1, noUpdatedMapping); } /** @@ -175,6 +205,7 @@ public void shouldUpdateMapping() throws Exception { */ @Test public void shouldDeleteMapping() throws Exception { + mappingSuggestionRepository.deleteAll(); List actual = super.retrieveMapping(project.getId()); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + actual.get(0).getId(); @@ -193,21 +224,29 @@ public void shouldDeleteMapping() throws Exception { .getResponse() .getContentAsString(); - EntityDto actualEntity = mapper.readValue(response, new TypeReference() { + EntityDto actualEntity = mapper.readValue(response, new TypeReference<>() { }); assertEquals(EntityStatus.SUGGESTIONS_PROVIDED.name(), actualEntity.getMappingStatus()); assertNull(actualEntity.getMapping()); - assertEquals(2, actualEntity.getMappingSuggestions().size()); - List curies = new ArrayList<>(); - for (MappingSuggestionDto mappingSuggestionDto : actualEntity.getMappingSuggestions()) { - curies.add(mappingSuggestionDto.getOntologyTerm().getCurie()); - } + assertEquals(1, actualEntity.getMappingSuggestions().size()); + assertEquals("Orphanet:15", actualEntity.getMappingSuggestions().get(0).getOntologyTerm().getCurie()); - assertTrue(curies.contains("Orphanet:15")); - assertTrue(curies.contains("MONDO:0007037")); + assertEquals(2, actualEntity.getAuditTrail().size()); + for (AuditEntryDto auditEntryDto : actualEntity.getAuditTrail()) { + assertTrue(auditEntryDto.getAction().equalsIgnoreCase(AuditEntryConstants.REMOVED_MAPPING.name()) || + auditEntryDto.getAction().equalsIgnoreCase(AuditEntryConstants.ADDED_SUGGESTION.name())); + if (auditEntryDto.getAction().equalsIgnoreCase(AuditEntryConstants.ADDED_SUGGESTION.name())) { + assertEquals(1, auditEntryDto.getMetadata().size()); + assertEquals("http://www.orpha.net/ORDO/Orphanet_15", auditEntryDto.getMetadata().get(0).getKey()); + } + if (auditEntryDto.getAction().equalsIgnoreCase(AuditEntryConstants.REMOVED_MAPPING.name())) { + assertEquals(1, auditEntryDto.getMetadata().size()); + assertEquals("http://www.orpha.net/ORDO/Orphanet_15", auditEntryDto.getMetadata().get(0).getKey()); + } + } } /** From 65dc11fb4f8325d076f64b5ed93541d59fd125ef Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Wed, 10 Mar 2021 21:13:03 +0800 Subject: [PATCH 36/72] Added 'priority' field to entities. --- .../ontotools/curation/domain/mapping/Entity.java | 5 +++++ .../curation/rest/controller/SourcesController.java | 2 +- .../rest/dto/dataimport/ImportDataElementDto.java | 11 ++++++++++- .../curation/rest/dto/export/ExportEntityDto.java | 9 +++++++++ .../curation/service/impl/AuditEntryServiceImpl.java | 2 +- .../curation/service/impl/DataImportServiceImpl.java | 5 +++-- .../curation/service/impl/EntityDataCollector.java | 1 + .../ebi/spot/ontotools/curation/IntegrationTest.java | 2 +- .../ontotools/curation/MatchMakingContolledTest.java | 2 +- .../ebi/spot/ontotools/curation/MatchMakingTest.java | 2 +- .../ontotools/curation/PublicDataControllerTest.java | 2 +- 11 files changed, 34 insertions(+), 9 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java index d3995bb..308732d 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java @@ -5,6 +5,8 @@ import lombok.NoArgsConstructor; import lombok.Setter; import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.index.CompoundIndex; +import org.springframework.data.mongodb.core.index.CompoundIndexes; import org.springframework.data.mongodb.core.index.Indexed; import org.springframework.data.mongodb.core.mapping.Document; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; @@ -15,6 +17,7 @@ @Setter @NoArgsConstructor @AllArgsConstructor +@CompoundIndexes({@CompoundIndex(name = "ppIdx", def = "{'projectId': 1, 'priority': 1}")}) public class Entity { @Id @@ -32,6 +35,8 @@ public class Entity { @Indexed private String projectId; + private Integer priority; + private Provenance created; private EntityStatus mappingStatus; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java index 2579fe0..603d201 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java @@ -111,7 +111,7 @@ public void addDataToSource(@RequestBody List entities, @PathVariable St Source source = sourceService.getSource(sourceId, projectId); for (String entity : entities) { entityService.createEntity(new Entity(null, entity, null, null, source.getId(), - projectId, new Provenance(user.getName(), user.getEmail(), DateTime.now()), EntityStatus.UNMAPPED)); + projectId, null, new Provenance(user.getName(), user.getEmail(), DateTime.now()), EntityStatus.UNMAPPED)); } matchmakerService.runMatchmaking(sourceId, projectService.retrieveProject(projectId, user)); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataElementDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataElementDto.java index 6d0880c..b4777be 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataElementDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataElementDto.java @@ -24,13 +24,18 @@ public final class ImportDataElementDto implements Serializable { @JsonProperty("upstreamField") private final String upstreamField; + @JsonProperty("priority") + private final Integer priority; + @JsonCreator public ImportDataElementDto(@JsonProperty("text") String text, @JsonProperty("upstreamId") String upstreamId, - @JsonProperty("upstreamField") String upstreamField) { + @JsonProperty("upstreamField") String upstreamField, + @JsonProperty("priority") Integer priority) { this.upstreamId = upstreamId; this.text = text; this.upstreamField = upstreamField; + this.priority = priority; } public String getText() { @@ -44,4 +49,8 @@ public String getUpstreamId() { public String getUpstreamField() { return upstreamField; } + + public Integer getPriority() { + return priority; + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDto.java index 598e3ae..ce01d73 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDto.java @@ -23,6 +23,9 @@ public final class ExportEntityDto implements Serializable { @JsonProperty("upstreamField") private final String upstreamField; + @JsonProperty("priority") + private final Integer priority; + @JsonProperty("mappingSuggestions") private final List mappingSuggestions; @@ -33,6 +36,7 @@ public final class ExportEntityDto implements Serializable { public ExportEntityDto(@JsonProperty("name") String name, @JsonProperty("upstreamId") String upstreamId, @JsonProperty("upstreamField") String upstreamField, + @JsonProperty("priority") Integer priority, @JsonProperty("mappingSuggestions") List mappingSuggestions, @JsonProperty("mapping") ExportMappingDto mapping) { this.name = name; @@ -40,6 +44,7 @@ public ExportEntityDto(@JsonProperty("name") String name, this.upstreamField = upstreamField; this.mappingSuggestions = mappingSuggestions; this.mapping = mapping; + this.priority = priority; } public String getName() { @@ -62,4 +67,8 @@ public List getMappingSuggestions() { public ExportMappingDto getMapping() { return mapping; } + + public Integer getPriority() { + return priority; + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/AuditEntryServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/AuditEntryServiceImpl.java index 5d158e9..2d04c11 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/AuditEntryServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/AuditEntryServiceImpl.java @@ -21,7 +21,7 @@ public class AuditEntryServiceImpl implements AuditEntryService { private AuditEntryRepository auditEntryRepository; @Override - @Async + @Async(value = "applicationTaskExecutor") public void addEntry(String action, String entityId, Provenance provenance, Map metadata) { List metadataEntryList = new ArrayList<>(); for (String key : metadata.keySet()) { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java index 1b01f81..43ae173 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java @@ -59,8 +59,9 @@ public void importData(String fileData, String projectId, String sourceId, User log.info("Creating entities ..."); int count = 0; for (ImportDataElementDto importDataElementDto : importDataPackageDto.getData()) { - entityService.createEntity(new Entity(null, importDataElementDto.getText(), importDataElementDto.getUpstreamId(), importDataElementDto.getUpstreamField(), - sourceId, projectId, provenance, EntityStatus.UNMAPPED)); + entityService.createEntity(new Entity(null, importDataElementDto.getText(), + importDataElementDto.getUpstreamId(), importDataElementDto.getUpstreamField(), + sourceId, projectId, importDataElementDto.getPriority(), provenance, EntityStatus.UNMAPPED)); count++; if (count % 100 == 0) { log.info(" -- [{} | {}] Progress: {} of {}", projectId, sourceId, count, importDataPackageDto.getData().size()); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java index 67fbda5..634f734 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java @@ -53,6 +53,7 @@ public void add(Entity entity, Mapping mapping, List mappingS exportEntityDtos.add(new ExportEntityDto(entity.getName(), entity.getBaseId(), entity.getBaseField(), + entity.getPriority(), mappingSuggestions, exportMappingDto )); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 65fbaa9..4e5f42c 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -224,7 +224,7 @@ protected SourceDto createSource(String projectId) throws Exception { protected void createEntityTestData(String sourceId, String projectId, User user) { Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); entity = entityRepository.insert(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), - RandomStringUtils.randomAlphabetic(10), sourceId, projectId, provenance, EntityStatus.AUTO_MAPPED)); + RandomStringUtils.randomAlphabetic(10), sourceId, projectId, null, provenance, EntityStatus.AUTO_MAPPED)); OntologyTerm orphaTerm = ontologyTermRepository.insert(new OntologyTerm(null, "Orphanet:15", "http://www.orpha.net/ORDO/Orphanet_15", DigestUtils.sha256Hex("http://www.orpha.net/ORDO/Orphanet_15"), "Achondroplasia", TermStatus.CURRENT.name(), null, null)); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java index c279f88..ce9b77c 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java @@ -95,7 +95,7 @@ public void setup() throws Exception { * - Retinal dystrophy */ entity = entityService.createEntity(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), - RandomStringUtils.randomAlphabetic(10), sourceDto.getId(), project.getId(), provenance, EntityStatus.UNMAPPED)); + RandomStringUtils.randomAlphabetic(10), sourceDto.getId(), project.getId(), 10, provenance, EntityStatus.UNMAPPED)); } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java index b3bdf95..0343b2e 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java @@ -81,7 +81,7 @@ public void setup() throws Exception { * - Retinal dystrophy */ entity = entityService.createEntity(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), - RandomStringUtils.randomAlphabetic(10), sourceDto.getId(), project.getId(), provenance, EntityStatus.UNMAPPED)); + RandomStringUtils.randomAlphabetic(10), sourceDto.getId(), project.getId(), 10, provenance, EntityStatus.UNMAPPED)); } @Test diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/PublicDataControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/PublicDataControllerTest.java index fd2bbc5..b4c6756 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/PublicDataControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/PublicDataControllerTest.java @@ -88,7 +88,7 @@ public void setup() throws Exception { * - Retinal dystrophy */ entity = entityService.createEntity(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), - RandomStringUtils.randomAlphabetic(10), sourceDto.getId(), project.getId(), provenance, EntityStatus.UNMAPPED)); + RandomStringUtils.randomAlphabetic(10), sourceDto.getId(), project.getId(), 10, provenance, EntityStatus.UNMAPPED)); matchmakerService.runMatchmaking(sourceDto.getId(), project); } From 1180c233912c86b5460b96c46e072d082349f32f Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Thu, 11 Mar 2021 17:37:15 +0800 Subject: [PATCH 37/72] Updated PROD DB details. --- src/main/resources/application.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index ce48647..467728f 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -62,7 +62,7 @@ spring: on-profile: "prod" data: mongodb: - uri: mongodb-hhvm-062.ebi.ac.uk:27017,mongodb-hxvm-063.ebi.ac.uk:27017/admin?replicaSet=gwasdepodevrs039 + uri: mongos-hx-ontotoolscuratorprors-001.ebi.ac.uk:27017,mongos-hl-ontotoolscuratorprors-002.ebi.ac.uk:27017/admin?replicaSet=ontotoolscuratorprors071 ontotools-curation: - db: ontotools-curation + db: ontotoolscurator From 88ce7ac2227ff3a5362d45dad1d99b07439f36bc Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Thu, 11 Mar 2021 19:48:15 +0800 Subject: [PATCH 38/72] Added temp deployment plan for PROD. --- scripts/config/ontotools-pvc-prod.yml | 13 ++++ ...ontotools-curation-service-deployment.yaml | 72 +++++++++++++++++++ 2 files changed, 85 insertions(+) create mode 100644 scripts/config/ontotools-pvc-prod.yml create mode 100644 scripts/config/prod/ontotools-curation-service-deployment.yaml diff --git a/scripts/config/ontotools-pvc-prod.yml b/scripts/config/ontotools-pvc-prod.yml new file mode 100644 index 0000000..bfaa265 --- /dev/null +++ b/scripts/config/ontotools-pvc-prod.yml @@ -0,0 +1,13 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: ontotools-curation-logs + namespace: ontotools +spec: + storageClassName: standard-nfs-production + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 5Gi + diff --git a/scripts/config/prod/ontotools-curation-service-deployment.yaml b/scripts/config/prod/ontotools-curation-service-deployment.yaml new file mode 100644 index 0000000..840219d --- /dev/null +++ b/scripts/config/prod/ontotools-curation-service-deployment.yaml @@ -0,0 +1,72 @@ +apiVersion: extensions/v1beta1 +kind: Deployment +metadata: + name: ontotools-curation-service + namespace: ontotools + labels: + version: latest +spec: + replicas: 1 + strategy: + type: RollingUpdate + rollingUpdate: + maxSurge: 1 + maxUnavailable: 0 + template: + metadata: + labels: + app: ontotools-curation-service + spec: + containers: + - name: ontotools-curation-service + image: "ebispot/ontotools-curation-service:latest-sandbox" + imagePullPolicy: Always + resources: + requests: + cpu: 100m + memory: 256Mi + limits: + cpu: 200m + memory: 512Mi + ports: + - name: http + containerPort: 8080 + volumeMounts: + - mountPath: "/var/log/ontotools" + name: log + env: + - name: ENVIRONMENT + value: "prod" + - name: XMS + value: "-Xms256m" + - name: XMX + value: "-Xms256m" + - name: LOG_FILE_NAME + value: "ontotools-curation-service" + - name: DB_USER + value: "" + - name: DB_PASSWORD + valueFrom: + secretKeyRef: + name: ontotools-secrets + key: db-pwd + volumes: + - name: log + persistentVolumeClaim: + claimName: ontotools-curation-logs +--- +kind: Service +apiVersion: v1 +metadata: + labels: + app: ontotools-curation-service + version: latest + name: ontotools-curation-service + namespace: ontotools +spec: + type: NodePort + ports: + - name: "application" + port: 8080 + selector: + app: ontotools-curation-service From 1bec3011ff33e3048987bcefae59bdc21c7e19dd Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Thu, 11 Mar 2021 20:54:33 +0800 Subject: [PATCH 39/72] Added GitLab pipeline to test and build container. No deployment just yet. --- .gitlab-ci.yml | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..98ba7b5 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,46 @@ +image: docker:latest +services: + - docker:dind + +stages: + - build + - docker + - docker-release + +variables: + DOCKER_DRIVER: overlay2 + DOCKER_TLS_CERTDIR: "" + REGISTRY_IMAGE: ebispot/ontotools-curation-service + SERVICE_NAME: ontotools-curation-service + +maven-build: + image: maven:3-jdk-12 + stage: build + script: + - mvn -clean package -B -Dspring.profiles.active=dev + artifacts: + paths: + - target/*.jar + +build-container: + stage: docker + script: + - echo "$DOCKER_HUB_PASSWORD" > dhpw.txt + - docker login -u "${DOCKER_HUB_USER}" --password-stdin < dhpw.txt + - docker build --cache-from $REGISTRY_IMAGE:latest -t $REGISTRY_IMAGE:$CI_COMMIT_SHA . + - docker push $REGISTRY_IMAGE:$CI_COMMIT_SHA + +build-release: + variables: + GIT_STRATEGY: none + stage: docker-release + script: + - echo "$DOCKER_HUB_PASSWORD" > dhpw.txt + - docker login -u "${DOCKER_HUB_USER}" --password-stdin < dhpw.txt + - docker pull $REGISTRY_IMAGE:$CI_COMMIT_SHA + - docker tag $REGISTRY_IMAGE:$CI_COMMIT_SHA $REGISTRY_IMAGE:latest + - docker tag $REGISTRY_IMAGE:$CI_COMMIT_SHA $REGISTRY_IMAGE:$CI_COMMIT_TAG + - docker push $REGISTRY_IMAGE:latest + - docker push $REGISTRY_IMAGE:$CI_COMMIT_TAG + only: + - tags From 9ebacb96109846d4bca42ccf853ddf819a1e1e50 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Thu, 11 Mar 2021 21:06:41 +0800 Subject: [PATCH 40/72] Fixed typo in GitLab pipeline. Added 'test' environment --- .gitlab-ci.yml | 2 +- .../curation/config/MongoConfig.java | 2 +- src/main/resources/application.yml | 13 ++++++++++ src/main/resources/logback-spring.xml | 25 +++++++++++++++++++ src/main/resources/logging-test.properties | 3 +++ 5 files changed, 43 insertions(+), 2 deletions(-) create mode 100644 src/main/resources/logging-test.properties diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 98ba7b5..71fb0e3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -17,7 +17,7 @@ maven-build: image: maven:3-jdk-12 stage: build script: - - mvn -clean package -B -Dspring.profiles.active=dev + - mvn clean install -B -Dspring.profiles.active=test artifacts: paths: - target/*.jar diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/MongoConfig.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/MongoConfig.java index 0ffa4ed..159c67a 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/MongoConfig.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/MongoConfig.java @@ -18,7 +18,7 @@ public class MongoConfig { @Configuration @EnableMongoRepositories(basePackages = {"uk.ac.ebi.spot.ontotools.curation.repository"}) @EnableTransactionManagement - @Profile({"dev","sandbox"}) + @Profile({"dev","sandbox", "test"}) public static class MongoConfigDevSandbox extends AbstractMongoClientConfiguration { @Autowired diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 467728f..a02772b 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -43,6 +43,19 @@ ontotools-curation: --- +spring: + config: + activate: + on-profile: "test" + data: + mongodb: + uri: snoopy.ebi.ac.uk:27017 + +ontotools-curation: + db: ontotools-curation-test + +--- + spring: config: activate: diff --git a/src/main/resources/logback-spring.xml b/src/main/resources/logback-spring.xml index 01af70d..d025d73 100644 --- a/src/main/resources/logback-spring.xml +++ b/src/main/resources/logback-spring.xml @@ -58,6 +58,31 @@ + + + + + + + ${log.file.location}${log.file.name}-%d{yyyy-MM-dd}.%i.log + + + ${log.max.file.size} + + + + ${log.pattern} + + + + + + + + + + diff --git a/src/main/resources/logging-test.properties b/src/main/resources/logging-test.properties new file mode 100644 index 0000000..70cd6b5 --- /dev/null +++ b/src/main/resources/logging-test.properties @@ -0,0 +1,3 @@ +log.max.file.size=1000MB +log.file.location=log/ +log.pattern=%d{"yyyy-MM-dd'T'HH:mm:ss.SSSXXX"} %-5level [%thread] %property{serviceName} %logger{0}: %msg%n From e855ed13a430f1844c80214b6a08f059aad1a742 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Thu, 11 Mar 2021 21:24:15 +0800 Subject: [PATCH 41/72] Added dummy secrets for sandbox. Added deployment entries for all environments in the GitLab pipeline. --- .gitlab-ci.yml | 52 ++++++++++++++++++++++++++++++++++++++ k8chart/values.yaml | 2 +- scripts/config/secret.yaml | 8 ++++++ 3 files changed, 61 insertions(+), 1 deletion(-) create mode 100644 scripts/config/secret.yaml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 71fb0e3..f4bd06f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,6 +6,9 @@ stages: - build - docker - docker-release + - deploy-sandbox + - deploy-fallback + - deploy-live variables: DOCKER_DRIVER: overlay2 @@ -44,3 +47,52 @@ build-release: - docker push $REGISTRY_IMAGE:$CI_COMMIT_TAG only: - tags + +deploy-sandbox: + image: dtzar/helm-kubectl:2.13.1 + stage: deploy-sandbox + script: + - echo "Deploy to sandbox server" + - mkdir -p /root/.kube + - echo ${SANBOX_KUBECONF} | base64 -d > /root/.kube/config + - helm init + - helm delete --purge ontotools-curation-service || true + - helm install --name ontotools-curation-service --set k8Namespace=ontotools,image.repository=$REGISTRY_IMAGE,image.tag=$CI_COMMIT_SHA,image.env.secretsName=ontotools-secrets,image.env.secretsKey=db-pwd ./k8chart/ --wait + environment: + name: sandbox + when: manual + only: + - develop + + +deploy-fallback: + image: dtzar/helm-kubectl:2.13.1 + stage: deploy-fallback + script: + - echo "Deploy to Production fallback server" + - mkdir -p /root/.kube + - echo ${PFALLBACK_KUBECONFIG} | base64 -d > /root/.kube/config + - helm init + - helm delete --purge ontotools-curation-service || true + - helm install --name ontotools-curation-service --set k8Namespace=ontotools,replicaCount=1,image.env.envName=prod,image.repository=$REGISTRY_IMAGE,image.tag=$CI_COMMIT_SHA,image.env.dbUser=ontotoolscurator,image.env.secretsName=ontotools-secrets,image.env.secretsKey=db-pwd ./k8chart/ --wait + environment: + name: prod + when: manual + only: + - tags + +deploy-live: + image: dtzar/helm-kubectl:2.13.1 + stage: deploy-live + script: + - echo "Deploy to Production server" + - mkdir -p /root/.kube + - echo ${PLIVE_KUBECONFIG} | base64 -d > /root/.kube/config + - helm init + - helm delete --purge ontotools-curation-service || true + - helm install --name ontotools-curation-service --set k8Namespace=ontotools,replicaCount=1,image.env.envName=prod,image.repository=$REGISTRY_IMAGE,image.tag=$CI_COMMIT_SHA,image.env.dbUser=ontotoolscurator,image.env.secretsName=ontotools-secrets,image.env.secretsKey=db-pwd ./k8chart/ --wait + environment: + name: prod + when: manual + only: + - tags diff --git a/k8chart/values.yaml b/k8chart/values.yaml index 4802f1f..f754891 100644 --- a/k8chart/values.yaml +++ b/k8chart/values.yaml @@ -1,4 +1,4 @@ -# Default values for ontotools-backend-service. +# Default values for ontotools-curation-service. # This is a YAML-formatted file. # Declare variables to be passed into your templates. diff --git a/scripts/config/secret.yaml b/scripts/config/secret.yaml new file mode 100644 index 0000000..124ee87 --- /dev/null +++ b/scripts/config/secret.yaml @@ -0,0 +1,8 @@ +apiVersion: v1 +kind: Secret +metadata: + name: ontotools-secrets + namespace: ontotools +type: Opaque +data: + db-pwd: TlVMTA== From d8982c1680db7c3c59a70095f5897a7fffb8f73d Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Thu, 11 Mar 2021 21:31:43 +0800 Subject: [PATCH 42/72] Attempting to fix helm init issue. --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f4bd06f..b96d186 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -55,7 +55,7 @@ deploy-sandbox: - echo "Deploy to sandbox server" - mkdir -p /root/.kube - echo ${SANBOX_KUBECONF} | base64 -d > /root/.kube/config - - helm init + - helm init --stable-repo-url https://charts.helm.sh/stable - helm delete --purge ontotools-curation-service || true - helm install --name ontotools-curation-service --set k8Namespace=ontotools,image.repository=$REGISTRY_IMAGE,image.tag=$CI_COMMIT_SHA,image.env.secretsName=ontotools-secrets,image.env.secretsKey=db-pwd ./k8chart/ --wait environment: @@ -72,7 +72,7 @@ deploy-fallback: - echo "Deploy to Production fallback server" - mkdir -p /root/.kube - echo ${PFALLBACK_KUBECONFIG} | base64 -d > /root/.kube/config - - helm init + - helm init --stable-repo-url https://charts.helm.sh/stable - helm delete --purge ontotools-curation-service || true - helm install --name ontotools-curation-service --set k8Namespace=ontotools,replicaCount=1,image.env.envName=prod,image.repository=$REGISTRY_IMAGE,image.tag=$CI_COMMIT_SHA,image.env.dbUser=ontotoolscurator,image.env.secretsName=ontotools-secrets,image.env.secretsKey=db-pwd ./k8chart/ --wait environment: @@ -88,7 +88,7 @@ deploy-live: - echo "Deploy to Production server" - mkdir -p /root/.kube - echo ${PLIVE_KUBECONFIG} | base64 -d > /root/.kube/config - - helm init + - helm init --stable-repo-url https://charts.helm.sh/stable - helm delete --purge ontotools-curation-service || true - helm install --name ontotools-curation-service --set k8Namespace=ontotools,replicaCount=1,image.env.envName=prod,image.repository=$REGISTRY_IMAGE,image.tag=$CI_COMMIT_SHA,image.env.dbUser=ontotoolscurator,image.env.secretsName=ontotools-secrets,image.env.secretsKey=db-pwd ./k8chart/ --wait environment: From 944591f5b4e692593ff9e2ca5896fc03a00ec715 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Thu, 11 Mar 2021 21:45:40 +0800 Subject: [PATCH 43/72] Removed ingress. --- k8chart/templates/curation-ingress.yaml | 17 ----------------- k8chart/values.yaml | 8 -------- 2 files changed, 25 deletions(-) delete mode 100644 k8chart/templates/curation-ingress.yaml diff --git a/k8chart/templates/curation-ingress.yaml b/k8chart/templates/curation-ingress.yaml deleted file mode 100644 index e6f95ca..0000000 --- a/k8chart/templates/curation-ingress.yaml +++ /dev/null @@ -1,17 +0,0 @@ -apiVersion: extensions/v1beta1 -kind: Ingress -metadata: - name: curation-ingress - annotations: - nginx.ingress.kubernetes.io/rewrite-target: /$2 - nginx.ingress.kubernetes.io/ssl-redirect: "false" - namespace: {{.Values.k8Namespace}} -spec: - rules: - - host: - http: - paths: - - path: {{.Values.ingress.path}} - curation: - serviceName: {{.Values.service.name}} - servicePort: {{.Values.service.port}} diff --git a/k8chart/values.yaml b/k8chart/values.yaml index f754891..1dd4e19 100644 --- a/k8chart/values.yaml +++ b/k8chart/values.yaml @@ -32,14 +32,6 @@ service: ingress: enabled: false - annotations: {} - # kubernetes.io/ingress.class: nginx - # kubernetes.io/tls-acme: "true" - - host: chart-example.local - path: "/curation(/|$)(.*)" - - tls: [] k8Namespace: ontotools From 4adedadd3071d189a90bb528496e23526ad02313 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Sat, 13 Mar 2021 12:22:52 +0800 Subject: [PATCH 44/72] WIP: Adding contexts. --- .../config/ExceptionHandlerAdvice.java | 12 ++- .../curation/constants/CurationConstants.java | 6 +- .../ontotools/curation/domain/Project.java | 32 ++----- .../curation/domain/ProjectContext.java | 53 +++++++++++ .../domain/config/ProjectMappingConfig.java | 18 ---- .../curation/domain/mapping/Entity.java | 5 +- .../exception/BadRequestException.java | 9 ++ .../curation/repository/EntityRepository.java | 2 + .../repository/ProjectContextRepository.java | 14 +++ .../rest/assembler/EntityDtoAssembler.java | 2 +- .../assembler/ProjectContextDtoAssembler.java | 25 ++++++ .../rest/assembler/ProjectDtoAssembler.java | 32 +++---- .../ProjectMappingConfigDtoAssembler.java | 15 ---- .../controller/ProjectContextsController.java | 87 +++++++++++++++++++ .../rest/controller/ProjectsController.java | 2 +- .../rest/controller/SourcesController.java | 5 +- .../curation/rest/dto/EntityDto.java | 12 +-- .../curation/rest/dto/ProjectContextDto.java | 68 +++++++++++++++ .../curation/rest/dto/ProjectCreationDto.java | 32 +++---- .../curation/rest/dto/ProjectDto.java | 30 ++----- .../rest/dto/ProjectMappingConfigDto.java | 40 --------- .../dto/dataimport/ImportDataElementDto.java | 12 +-- .../rest/dto/export/ExportEntityDto.java | 12 +-- .../curation/service/DataImportService.java | 3 +- .../curation/service/EntityService.java | 2 + .../curation/service/MatchmakerService.java | 3 +- .../curation/service/OntologyTermService.java | 4 +- .../curation/service/ProjectService.java | 10 ++- .../service/impl/DataImportServiceImpl.java | 15 ++-- .../service/impl/EntityDataCollector.java | 2 +- .../service/impl/EntityServiceImpl.java | 13 +++ .../service/impl/MatchmakerServiceImpl.java | 42 ++++++--- .../service/impl/OntologyTermServiceImpl.java | 8 +- .../service/impl/ProjectServiceImpl.java | 86 ++++++++++++++++-- .../ontotools/curation/util/CurationUtil.java | 36 -------- src/main/resources/application.yml | 2 +- .../ontotools/curation/IntegrationTest.java | 34 ++++---- .../curation/MatchMakingContolledTest.java | 1 - .../curation/ProjectsControllerTest.java | 21 ++--- 39 files changed, 518 insertions(+), 289 deletions(-) create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ProjectContext.java delete mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/config/ProjectMappingConfig.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/exception/BadRequestException.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ProjectContextRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectContextDtoAssembler.java delete mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectMappingConfigDtoAssembler.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectContextsController.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectContextDto.java delete mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectMappingConfigDto.java diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/ExceptionHandlerAdvice.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/ExceptionHandlerAdvice.java index d1d41bc..8f1c942 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/ExceptionHandlerAdvice.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/ExceptionHandlerAdvice.java @@ -8,10 +8,7 @@ import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.bind.annotation.ResponseStatus; import org.springframework.web.bind.annotation.RestController; -import uk.ac.ebi.spot.ontotools.curation.exception.AuthenticationException; -import uk.ac.ebi.spot.ontotools.curation.exception.AuthorizationException; -import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; -import uk.ac.ebi.spot.ontotools.curation.exception.FileProcessingException; +import uk.ac.ebi.spot.ontotools.curation.exception.*; @ControllerAdvice(annotations = RestController.class) public class ExceptionHandlerAdvice { @@ -37,6 +34,13 @@ public ResponseEntity handleAuthorizationException(EntityNotFoundExcepti return new ResponseEntity<>(e.getMessage(), headers, HttpStatus.NOT_FOUND); } + @ExceptionHandler(BadRequestException.class) + public ResponseEntity handleBadRequestException(BadRequestException e) { + HttpHeaders headers = new HttpHeaders(); + headers.setContentType(MediaType.TEXT_PLAIN); + return new ResponseEntity<>(e.getMessage(), headers, HttpStatus.BAD_REQUEST); + } + @ExceptionHandler(FileProcessingException.class) @ResponseStatus(HttpStatus.INTERNAL_SERVER_ERROR) public void handleFileProcessingException() { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java index cb134d5..bb31bcb 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -4,6 +4,8 @@ public class CurationConstants { public static final String API_PROJECTS = "/projects"; + public static final String API_CONTEXTS = "/contexts"; + public static final String API_SOURCES = "/sources"; public static final String API_UPLOAD = "/upload"; @@ -28,8 +30,8 @@ public class CurationConstants { public static final String PARAM_ENTITY_ID = "entityId"; - public static final String PARAM_CURIE = "curie"; - public static final String ZOOMA_CONFIDENCE_HIGH = "HIGH"; + public static final String CONTEXT_DEFAULT = "DEFAULT"; + } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Project.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Project.java index 01a8244..33dc81d 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Project.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/Project.java @@ -5,8 +5,8 @@ import lombok.NoArgsConstructor; import lombok.Setter; import org.springframework.data.annotation.Id; +import org.springframework.data.annotation.Transient; import org.springframework.data.mongodb.core.mapping.Document; -import uk.ac.ebi.spot.ontotools.curation.domain.config.ProjectMappingConfig; import java.util.List; @@ -24,32 +24,12 @@ public class Project { private String description; - /** - * List of datasources used to query Zooma to retrieve suggestions. - * Zooma service uses this list to filter results pertaining only to these datasources. - *

- * `ProjectMappingConfig` enables a field-based mapping preference setting. - * The default value for `field` when fields are not used is ALL. - */ - private List datasources; - - /** - * List of datasources used to query Zooma to retrieve suggestions. - * Zooma service uses this list to filter results pertaining only to these ontologies. - *

- * `ProjectMappingConfig` enables a field-based mapping preference setting. - * The default value for `field` when fields are not used is ALL. - *

- * NB: Orphanet prefix used by Zooma is `ordo` - */ - private List ontologies; - - /** - * Ontology ID used when creating ontology terms locally to query OLS for a mapping - */ - private List preferredMappingOntologies; - private Integer numberOfReviewsRequired; + private List contextIds; + private Provenance created; + + @Transient + private List contexts; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ProjectContext.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ProjectContext.java new file mode 100644 index 0000000..09f409c --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ProjectContext.java @@ -0,0 +1,53 @@ +package uk.ac.ebi.spot.ontotools.curation.domain; + +import lombok.AllArgsConstructor; +import lombok.Getter; +import lombok.NoArgsConstructor; +import lombok.Setter; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.index.CompoundIndex; +import org.springframework.data.mongodb.core.index.CompoundIndexes; +import org.springframework.data.mongodb.core.index.Indexed; +import org.springframework.data.mongodb.core.mapping.Document; + +import java.util.List; + +@Document(collection = "contexts") +@NoArgsConstructor +@AllArgsConstructor +@Getter +@Setter +@CompoundIndexes({@CompoundIndex(name = "pName", def = "{'projectId': 1, 'name': 1}")}) +public class ProjectContext { + + @Id + private String id; + + private String name; + + @Indexed + private String projectId; + + private String description; + + + /** + * List of datasources used to query Zooma to retrieve suggestions. + * Zooma service uses this list to filter results pertaining only to these datasources. + */ + private List datasources; + + /** + * List of ontologies used to query Zooma to retrieve suggestions. + * Zooma service uses this list to filter results pertaining only to these ontologies. + *

+ * NB: Orphanet prefix used by Zooma is `ordo` + */ + private List ontologies; + + /** + * Ontology IDs used when creating ontology terms locally to query OLS for a mapping + */ + private List preferredMappingOntologies; + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/config/ProjectMappingConfig.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/config/ProjectMappingConfig.java deleted file mode 100644 index 90a6481..0000000 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/config/ProjectMappingConfig.java +++ /dev/null @@ -1,18 +0,0 @@ -package uk.ac.ebi.spot.ontotools.curation.domain.config; - -import lombok.AllArgsConstructor; -import lombok.Getter; - -import java.util.List; - -@AllArgsConstructor -@Getter -public class ProjectMappingConfig { - - public static final String ALL = "ALL"; - - private String field; - - private List mappingList; - -} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java index 308732d..f5ea5ed 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java @@ -17,7 +17,8 @@ @Setter @NoArgsConstructor @AllArgsConstructor -@CompoundIndexes({@CompoundIndex(name = "ppIdx", def = "{'projectId': 1, 'priority': 1}")}) +@CompoundIndexes({@CompoundIndex(name = "ppIdx", def = "{'projectId': 1, 'priority': 1}"), + @CompoundIndex(name = "ppCon", def = "{'projectId': 1, 'context': 1}")}) public class Entity { @Id @@ -27,7 +28,7 @@ public class Entity { private String baseId; - private String baseField; + private String context; @Indexed private String sourceId; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/exception/BadRequestException.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/exception/BadRequestException.java new file mode 100644 index 0000000..d9d6137 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/exception/BadRequestException.java @@ -0,0 +1,9 @@ +package uk.ac.ebi.spot.ontotools.curation.exception; + +public class BadRequestException extends RuntimeException { + + public BadRequestException(String message) { + super(message); + } + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java index 66c0165..23f9938 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java @@ -14,4 +14,6 @@ public interface EntityRepository extends MongoRepository { Page findByProjectId(String projectId, Pageable page); Stream readByProjectId(String projectId); + + Stream readByProjectIdAndContext(String projectId, String context); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ProjectContextRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ProjectContextRepository.java new file mode 100644 index 0000000..8e527a9 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ProjectContextRepository.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.repository; + +import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.ProjectContext; + +import java.util.List; +import java.util.Optional; + +public interface ProjectContextRepository extends MongoRepository { + + List findByProjectId(String projectId); + + Optional findByProjectIdAndNameIgnoreCase(String projectId, String name); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java index 73cec2a..a633ec3 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java @@ -25,7 +25,7 @@ public static EntityDto assemble(Entity entity, SourceDto source, Mapping mappin source, entity.getName(), entity.getBaseId(), - entity.getBaseField(), + entity.getContext(), entity.getMappingStatus().name(), mappingSuggestionDtos, mappingDto, diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectContextDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectContextDtoAssembler.java new file mode 100644 index 0000000..d283de4 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectContextDtoAssembler.java @@ -0,0 +1,25 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.assembler; + +import uk.ac.ebi.spot.ontotools.curation.domain.ProjectContext; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectContextDto; + +public class ProjectContextDtoAssembler { + + public static ProjectContextDto assemble(ProjectContext projectContext) { + return new ProjectContextDto(projectContext.getName(), + projectContext.getDescription(), + projectContext.getDatasources(), + projectContext.getOntologies(), + projectContext.getPreferredMappingOntologies()); + } + + public static ProjectContext disassemble(ProjectContextDto projectContext) { + return new ProjectContext(null, + projectContext.getName(), + null, + projectContext.getDescription(), + projectContext.getDatasources(), + projectContext.getOntologies(), + projectContext.getPreferredMappingOntologies()); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java index 1f039b6..5522329 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java @@ -1,6 +1,9 @@ package uk.ac.ebi.spot.ontotools.curation.rest.assembler; +import org.apache.commons.lang3.tuple.Pair; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.ProjectContext; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectCreationDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; @@ -14,9 +17,7 @@ public static ProjectDto assemble(Project project) { return new ProjectDto(project.getId(), project.getName(), project.getDescription(), - project.getDatasources() != null ? project.getDatasources().stream().map(ProjectMappingConfigDtoAssembler::assemble).collect(Collectors.toList()) : new ArrayList<>(), - project.getOntologies() != null ? project.getOntologies().stream().map(ProjectMappingConfigDtoAssembler::assemble).collect(Collectors.toList()) : new ArrayList<>(), - project.getPreferredMappingOntologies(), + project.getContexts().stream().map(ProjectContextDtoAssembler::assemble).collect(Collectors.toList()), project.getNumberOfReviewsRequired(), ProvenanceDtoAssembler.assemble(project.getCreated())); } @@ -25,21 +26,20 @@ public static Project disassemble(ProjectDto project) { return new Project(project.getId(), project.getName(), project.getDescription(), - project.getDatasources() != null ? project.getDatasources().stream().map(ProjectMappingConfigDtoAssembler::disassemble).collect(Collectors.toList()) : new ArrayList<>(), - project.getOntologies() != null ? project.getOntologies().stream().map(ProjectMappingConfigDtoAssembler::disassemble).collect(Collectors.toList()) : new ArrayList<>(), - project.getPreferredMappingOntologies(), project.getNumberOfReviewsRequired(), - ProvenanceDtoAssembler.disassemble(project.getCreated())); + null, + ProvenanceDtoAssembler.disassemble(project.getCreated()), + null); } - public static Project disassemble(ProjectCreationDto project, Provenance provenance) { - return new Project(null, - project.getName(), - project.getDescription(), - project.getDatasources() != null ? project.getDatasources().stream().map(ProjectMappingConfigDtoAssembler::disassemble).collect(Collectors.toList()) : new ArrayList<>(), - project.getOntologies() != null ? project.getOntologies().stream().map(ProjectMappingConfigDtoAssembler::disassemble).collect(Collectors.toList()) : new ArrayList<>(), - project.getPreferredMappingOntologies(), - project.getNumberOfReviewsRequired(), - provenance); + public static Pair disassemble(ProjectCreationDto project, Provenance provenance) { + return Pair.of(new Project(null, + project.getName(), + project.getDescription(), + project.getNumberOfReviewsRequired(), + new ArrayList<>(), + provenance, null), + new ProjectContext(null, CurationConstants.CONTEXT_DEFAULT, null, "Default context", + project.getDatasources(), project.getOntologies(), project.getPreferredMappingOntologies())); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectMappingConfigDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectMappingConfigDtoAssembler.java deleted file mode 100644 index bbcbce0..0000000 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectMappingConfigDtoAssembler.java +++ /dev/null @@ -1,15 +0,0 @@ -package uk.ac.ebi.spot.ontotools.curation.rest.assembler; - -import uk.ac.ebi.spot.ontotools.curation.domain.config.ProjectMappingConfig; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectMappingConfigDto; - -public class ProjectMappingConfigDtoAssembler { - - public static ProjectMappingConfigDto assemble(ProjectMappingConfig projectMappingConfig) { - return new ProjectMappingConfigDto(projectMappingConfig.getField(), projectMappingConfig.getMappingList()); - } - - public static ProjectMappingConfig disassemble(ProjectMappingConfigDto projectMappingConfig) { - return new ProjectMappingConfig(projectMappingConfig.getField(), projectMappingConfig.getMappingList()); - } -} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectContextsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectContextsController.java new file mode 100644 index 0000000..e8789b1 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectContextsController.java @@ -0,0 +1,87 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.controller; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.web.bind.annotation.*; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.exception.BadRequestException; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.ProjectContextDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.ProjectDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectContextDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.service.EntityService; +import uk.ac.ebi.spot.ontotools.curation.service.JWTService; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; +import uk.ac.ebi.spot.ontotools.curation.util.HeadersUtil; + +import javax.servlet.http.HttpServletRequest; +import javax.validation.Valid; + +@RestController +@RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) +public class ProjectContextsController { + + private static final Logger log = LoggerFactory.getLogger(ProjectContextsController.class); + + @Autowired + private JWTService jwtService; + + @Autowired + private ProjectService projectService; + + @Autowired + private EntityService entityService; + + /** + * POST /v1/projects/{projectId}/contexts + */ + @PostMapping(value = "/{projectId}" + CurationConstants.API_CONTEXTS, + consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.CREATED) + public ProjectDto createProjectContext(@PathVariable String projectId, + @RequestBody @Valid ProjectContextDto projectContextDto, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to create project context [{}]: {}", user.getEmail(), projectId, projectContextDto.getName()); + Project project = projectService.createProjectContext(ProjectContextDtoAssembler.disassemble(projectContextDto), projectId, user); + return ProjectDtoAssembler.assemble(project); + } + + /** + * PUT /v1/projects/{projectId}/contexts + */ + @PutMapping(value = "/{projectId}" + CurationConstants.API_CONTEXTS, + consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public ProjectDto updateProjectContext(@RequestBody @Valid ProjectContextDto projectContextDto, @PathVariable String projectId, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to update project context [{}]: {}", user.getEmail(), projectId, projectContextDto.getName()); + Project updated = projectService.updateProjectContext(ProjectContextDtoAssembler.disassemble(projectContextDto), projectId, user); + return ProjectDtoAssembler.assemble(updated); + } + + /** + * DELETE /v1/projects/{projectId}/contexts/{contextName} + */ + @DeleteMapping(value = "/{projectId}" + CurationConstants.API_CONTEXTS + "/{contextName}", + produces = MediaType.TEXT_PLAIN_VALUE) + @ResponseStatus(HttpStatus.OK) + public void deleteProjectContext(@PathVariable String projectId, @PathVariable String contextName, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to delete project context [{}]: {}", user.getEmail(), projectId, contextName); + if (contextName.equalsIgnoreCase(CurationConstants.CONTEXT_DEFAULT)) { + log.error("Cannot delete DEFAULT context for any project."); + throw new BadRequestException("Cannot delete DEFAULT context for any project."); + } + projectService.deleteProjectContext(contextName, projectId, user); + entityService.moveEntities(projectId, contextName, CurationConstants.CONTEXT_DEFAULT); + } + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java index 254e59b..52e7fe6 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java @@ -9,8 +9,8 @@ import org.springframework.web.bind.annotation.*; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; -import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.ProjectDtoAssembler; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectCreationDto; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java index 603d201..8867c7b 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java @@ -113,7 +113,7 @@ public void addDataToSource(@RequestBody List entities, @PathVariable St entityService.createEntity(new Entity(null, entity, null, null, source.getId(), projectId, null, new Provenance(user.getName(), user.getEmail(), DateTime.now()), EntityStatus.UNMAPPED)); } - matchmakerService.runMatchmaking(sourceId, projectService.retrieveProject(projectId, user)); + matchmakerService.runMatchmaking(source, projectService.retrieveProject(projectId, user)); } /** @@ -126,10 +126,11 @@ public void importDataFromFile(@RequestParam MultipartFile file, @PathVariable S User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to import data from file [{} - {}] to source: {} | {}", user.getEmail(), file.getOriginalFilename(), file.getSize(), projectId, sourceId); projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); + Source source = sourceService.getSource(sourceId, projectId); try { String fileData = IOUtils.toString(file.getInputStream(), "UTF-8"); - dataImportService.importData(fileData, projectId, sourceId, user); + dataImportService.importData(fileData, projectId, source, user); } catch (IOException e) { log.error("Unable to deserialize import data file: {}", e.getMessage(), e); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java index 9d28c0e..b12983f 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java @@ -31,8 +31,8 @@ public final class EntityDto implements Serializable { @JsonProperty("upstreamId") private final String upstreamId; - @JsonProperty("upstreamField") - private final String upstreamField; + @JsonProperty("context") + private final String context; @JsonProperty("mappingStatus") private final String mappingStatus; @@ -54,7 +54,7 @@ public EntityDto(@JsonProperty("id") String id, @JsonProperty("source") SourceDto source, @JsonProperty("name") String name, @JsonProperty("upstreamId") String upstreamId, - @JsonProperty("upstreamField") String upstreamField, + @JsonProperty("context") String context, @JsonProperty("mappingStatus") String mappingStatus, @JsonProperty("mappingSuggestions") List mappingSuggestions, @JsonProperty("mapping") MappingDto mapping, @@ -64,7 +64,7 @@ public EntityDto(@JsonProperty("id") String id, this.source = source; this.name = name; this.upstreamId = upstreamId; - this.upstreamField = upstreamField; + this.context = context; this.mappingStatus = mappingStatus; this.mappingSuggestions = mappingSuggestions; this.mapping = mapping; @@ -105,8 +105,8 @@ public String getUpstreamId() { return upstreamId; } - public String getUpstreamField() { - return upstreamField; + public String getContext() { + return context; } public List getAuditTrail() { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectContextDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectContextDto.java new file mode 100644 index 0000000..cfa4b0e --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectContextDto.java @@ -0,0 +1,68 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotNull; +import javax.validation.constraints.Pattern; +import java.io.Serializable; +import java.util.List; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class ProjectContextDto implements Serializable { + + private static final long serialVersionUID = -4397444940725422977L; + + @NotNull + @Pattern(regexp = "^[a-zA-Z0-9]+$", message = "Invalid context name.") + @JsonProperty("name") + private final String name; + + @JsonProperty("description") + private final String description; + + @JsonProperty("datasources") + private final List datasources; + + @JsonProperty("ontologies") + private final List ontologies; + + @JsonProperty("preferredMappingOntologies") + private final List preferredMappingOntologies; + + @JsonCreator + public ProjectContextDto(@JsonProperty("name") String name, + @JsonProperty("description") String description, + @JsonProperty("datasources") List datasources, + @JsonProperty("ontologies") List ontologies, + @JsonProperty("preferredMappingOntologies") List preferredMappingOntologies) { + this.name = name; + this.description = description; + this.datasources = datasources; + this.ontologies = ontologies; + this.preferredMappingOntologies = preferredMappingOntologies; + } + + public String getName() { + return name; + } + + public String getDescription() { + return description; + } + + public List getDatasources() { + return datasources; + } + + public List getOntologies() { + return ontologies; + } + + public List getPreferredMappingOntologies() { + return preferredMappingOntologies; + } +} \ No newline at end of file diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDto.java index 59a853c..f07f8fc 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectCreationDto.java @@ -22,31 +22,31 @@ public final class ProjectCreationDto implements Serializable { @JsonProperty("description") private final String description; + @JsonProperty("numberOfReviewsRequired") + private final Integer numberOfReviewsRequired; + @JsonProperty("datasources") - private final List datasources; + private final List datasources; @JsonProperty("ontologies") - private final List ontologies; + private final List ontologies; @JsonProperty("preferredMappingOntologies") private final List preferredMappingOntologies; - @JsonProperty("numberOfReviewsRequired") - private final Integer numberOfReviewsRequired; - @JsonCreator public ProjectCreationDto(@JsonProperty("name") String name, @JsonProperty("description") String description, - @JsonProperty("datasources") List datasources, - @JsonProperty("ontologies") List ontologies, - @JsonProperty("preferredMappingOntologies") List preferredMappingOntologies, - @JsonProperty("numberOfReviewsRequired") Integer numberOfReviewsRequired) { + @JsonProperty("numberOfReviewsRequired") Integer numberOfReviewsRequired, + @JsonProperty("datasources") List datasources, + @JsonProperty("ontologies") List ontologies, + @JsonProperty("preferredMappingOntologies") List preferredMappingOntologies) { this.name = name; this.description = description; + this.numberOfReviewsRequired = numberOfReviewsRequired; this.datasources = datasources; this.ontologies = ontologies; this.preferredMappingOntologies = preferredMappingOntologies; - this.numberOfReviewsRequired = numberOfReviewsRequired; } public String getName() { @@ -57,19 +57,19 @@ public String getDescription() { return description; } - public List getDatasources() { + public Integer getNumberOfReviewsRequired() { + return numberOfReviewsRequired; + } + + public List getDatasources() { return datasources; } - public List getOntologies() { + public List getOntologies() { return ontologies; } public List getPreferredMappingOntologies() { return preferredMappingOntologies; } - - public Integer getNumberOfReviewsRequired() { - return numberOfReviewsRequired; - } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java index c438553..2e58fcb 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectDto.java @@ -26,14 +26,8 @@ public final class ProjectDto implements Serializable { @JsonProperty("description") private final String description; - @JsonProperty("datasources") - private final List datasources; - - @JsonProperty("ontologies") - private final List ontologies; - - @JsonProperty("preferredMappingOntologies") - private final List preferredMappingOntologies; + @JsonProperty("contexts") + private final List contexts; @JsonProperty("numberOfReviewsRequired") private final Integer numberOfReviewsRequired; @@ -45,17 +39,13 @@ public final class ProjectDto implements Serializable { public ProjectDto(@JsonProperty("id") String id, @JsonProperty("name") String name, @JsonProperty("description") String description, - @JsonProperty("datasources") List datasources, - @JsonProperty("ontologies") List ontologies, - @JsonProperty("preferredMappingOntologies") List preferredMappingOntologies, + @JsonProperty("contexts") List contexts, @JsonProperty("numberOfReviewsRequired") Integer numberOfReviewsRequired, @JsonProperty("created") ProvenanceDto created) { this.id = id; this.name = name; this.description = description; - this.datasources = datasources; - this.ontologies = ontologies; - this.preferredMappingOntologies = preferredMappingOntologies; + this.contexts = contexts; this.numberOfReviewsRequired = numberOfReviewsRequired; this.created = created; } @@ -72,16 +62,8 @@ public String getDescription() { return description; } - public List getDatasources() { - return datasources; - } - - public List getOntologies() { - return ontologies; - } - - public List getPreferredMappingOntologies() { - return preferredMappingOntologies; + public List getContexts() { + return contexts; } public Integer getNumberOfReviewsRequired() { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectMappingConfigDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectMappingConfigDto.java deleted file mode 100644 index 9d365ab..0000000 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectMappingConfigDto.java +++ /dev/null @@ -1,40 +0,0 @@ -package uk.ac.ebi.spot.ontotools.curation.rest.dto; - -import com.fasterxml.jackson.annotation.JsonCreator; -import com.fasterxml.jackson.annotation.JsonInclude; -import com.fasterxml.jackson.annotation.JsonProperty; -import lombok.EqualsAndHashCode; - -import javax.validation.constraints.NotEmpty; -import java.io.Serializable; -import java.util.List; - -@EqualsAndHashCode -@JsonInclude(JsonInclude.Include.NON_NULL) -public final class ProjectMappingConfigDto implements Serializable { - - private static final long serialVersionUID = 5092703110421044505L; - - @NotEmpty - @JsonProperty("field") - private final String field; - - @NotEmpty - @JsonProperty("mappingList") - private final List mappingList; - - @JsonCreator - public ProjectMappingConfigDto(@JsonProperty("field") String field, - @JsonProperty("mappingList") List mappingList) { - this.field = field; - this.mappingList = mappingList; - } - - public String getField() { - return field; - } - - public List getMappingList() { - return mappingList; - } -} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataElementDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataElementDto.java index b4777be..91f0e9a 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataElementDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/dataimport/ImportDataElementDto.java @@ -21,8 +21,8 @@ public final class ImportDataElementDto implements Serializable { @JsonProperty("text") private final String text; - @JsonProperty("upstreamField") - private final String upstreamField; + @JsonProperty("context") + private final String context; @JsonProperty("priority") private final Integer priority; @@ -30,11 +30,11 @@ public final class ImportDataElementDto implements Serializable { @JsonCreator public ImportDataElementDto(@JsonProperty("text") String text, @JsonProperty("upstreamId") String upstreamId, - @JsonProperty("upstreamField") String upstreamField, + @JsonProperty("context") String context, @JsonProperty("priority") Integer priority) { this.upstreamId = upstreamId; this.text = text; - this.upstreamField = upstreamField; + this.context = context; this.priority = priority; } @@ -46,8 +46,8 @@ public String getUpstreamId() { return upstreamId; } - public String getUpstreamField() { - return upstreamField; + public String getContext() { + return context; } public Integer getPriority() { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDto.java index ce01d73..6f1bc94 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/export/ExportEntityDto.java @@ -20,8 +20,8 @@ public final class ExportEntityDto implements Serializable { @JsonProperty("upstreamId") private final String upstreamId; - @JsonProperty("upstreamField") - private final String upstreamField; + @JsonProperty("context") + private final String context; @JsonProperty("priority") private final Integer priority; @@ -35,13 +35,13 @@ public final class ExportEntityDto implements Serializable { @JsonCreator public ExportEntityDto(@JsonProperty("name") String name, @JsonProperty("upstreamId") String upstreamId, - @JsonProperty("upstreamField") String upstreamField, + @JsonProperty("context") String context, @JsonProperty("priority") Integer priority, @JsonProperty("mappingSuggestions") List mappingSuggestions, @JsonProperty("mapping") ExportMappingDto mapping) { this.name = name; this.upstreamId = upstreamId; - this.upstreamField = upstreamField; + this.context = context; this.mappingSuggestions = mappingSuggestions; this.mapping = mapping; this.priority = priority; @@ -56,8 +56,8 @@ public String getUpstreamId() { return upstreamId; } - public String getUpstreamField() { - return upstreamField; + public String getContext() { + return context; } public List getMappingSuggestions() { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/DataImportService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/DataImportService.java index d4e52ee..85d298b 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/DataImportService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/DataImportService.java @@ -1,7 +1,8 @@ package uk.ac.ebi.spot.ontotools.curation.service; +import uk.ac.ebi.spot.ontotools.curation.domain.Source; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; public interface DataImportService { - void importData(String fileData, String projectId, String sourceId, User user); + void importData(String fileData, String projectId, Source source, User user); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java index 6c1f0ab..a7449d7 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java @@ -22,4 +22,6 @@ public interface EntityService { Page retrieveEntitiesForProject(String projectId, Pageable page); Entity retrieveEntity(String entityId); + + void moveEntities(String projectId, String fromContext, String toContext); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakerService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakerService.java index 58be5be..bb8ce83 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakerService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakerService.java @@ -1,8 +1,9 @@ package uk.ac.ebi.spot.ontotools.curation.service; import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.Source; public interface MatchmakerService { - void runMatchmaking(String sourceId, Project project); + void runMatchmaking(Source source, Project project); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java index e702648..e040acd 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java @@ -1,7 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.service; +import uk.ac.ebi.spot.ontotools.curation.domain.ProjectContext; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; -import uk.ac.ebi.spot.ontotools.curation.domain.Project; import java.util.List; import java.util.Map; @@ -9,7 +9,7 @@ public interface OntologyTermService { OntologyTerm createTerm(OntologyTerm term); - OntologyTerm createTerm(String iri, Project project); + OntologyTerm createTerm(String iri, ProjectContext projectContext); Map retrieveTerms(List ontologyTermIds); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java index 23fa6b4..d23e87e 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ProjectService.java @@ -1,7 +1,9 @@ package uk.ac.ebi.spot.ontotools.curation.service; +import org.apache.commons.lang3.tuple.Pair; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.ProjectContext; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import java.util.List; @@ -9,7 +11,7 @@ public interface ProjectService { List retrieveProjects(User user); - Project createProject(Project project, User user); + Project createProject(Pair projectCreationPair, User user); Project updateProject(Project project, String projectId, User user); @@ -18,4 +20,10 @@ public interface ProjectService { Project retrieveProject(String projectId, User user); void verifyAccess(String projectId, User user, List roles); + + Project createProjectContext(ProjectContext projectContext, String projectId, User user); + + Project updateProjectContext(ProjectContext projectContext, String projectId, User user); + + void deleteProjectContext(String contextName, String projectId, User user); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java index 43ae173..2bd9c0b 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java @@ -11,6 +11,7 @@ import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.domain.Source; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.rest.dto.dataimport.ImportDataElementDto; @@ -46,12 +47,12 @@ public void initialize() { @Async(value = "applicationTaskExecutor") @Override - public void importData(String fileData, String projectId, String sourceId, User user) { - log.info("[{} | {}] Importing data from file.", projectId, sourceId); + public void importData(String fileData, String projectId, Source source, User user) { + log.info("[{} | {}] Importing data from file.", projectId, source.getId()); Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); Project project = projectService.retrieveProject(projectId, user); try { - ImportDataPackageDto importDataPackageDto = this.objectMapper.readValue(fileData, new TypeReference() { + ImportDataPackageDto importDataPackageDto = this.objectMapper.readValue(fileData, new TypeReference<>() { }); log.info("Received {} entries to import.", importDataPackageDto.getData().size()); @@ -60,16 +61,16 @@ public void importData(String fileData, String projectId, String sourceId, User int count = 0; for (ImportDataElementDto importDataElementDto : importDataPackageDto.getData()) { entityService.createEntity(new Entity(null, importDataElementDto.getText(), - importDataElementDto.getUpstreamId(), importDataElementDto.getUpstreamField(), - sourceId, projectId, importDataElementDto.getPriority(), provenance, EntityStatus.UNMAPPED)); + importDataElementDto.getUpstreamId(), importDataElementDto.getContext(), + source.getId(), projectId, importDataElementDto.getPriority(), provenance, EntityStatus.UNMAPPED)); count++; if (count % 100 == 0) { - log.info(" -- [{} | {}] Progress: {} of {}", projectId, sourceId, count, importDataPackageDto.getData().size()); + log.info(" -- [{} | {}] Progress: {} of {}", projectId, source.getId(), count, importDataPackageDto.getData().size()); } } long eTime = System.currentTimeMillis(); log.info("{} entities created [{}s]", count, (eTime - sTime) / 1000); - matchmakerService.runMatchmaking(sourceId, project); + matchmakerService.runMatchmaking(source, project); } catch (IOException e) { log.error("Unable to deserialize import data file: {}", e.getMessage(), e); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java index 634f734..0f823bd 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java @@ -52,7 +52,7 @@ public void add(Entity entity, Mapping mapping, List mappingS exportEntityDtos.add(new ExportEntityDto(entity.getName(), entity.getBaseId(), - entity.getBaseField(), + entity.getContext(), entity.getPriority(), mappingSuggestions, exportMappingDto diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java index 66a07cb..d074846 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java @@ -75,4 +75,17 @@ public Entity retrieveEntity(String entityId) { return entityOptional.get(); } + @Override + public void moveEntities(String projectId, String fromContext, String toContext) { + log.info("Moving entities in project [{}] from context [{}] to context: {}", projectId, fromContext, toContext); + Stream entityStream = entityRepository.readByProjectIdAndContext(projectId, fromContext); + entityStream.forEach(entity -> updateContext(entity, toContext)); + entityStream.close(); + } + + private void updateContext(Entity entity, String toContext) { + entity.setContext(toContext); + entityRepository.save(entity); + } + } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java index 984ff6e..b5510e0 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java @@ -6,9 +6,12 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.ProjectContext; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.domain.Source; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; @@ -49,24 +52,43 @@ public class MatchmakerServiceImpl implements MatchmakerService { @Override @Async(value = "applicationTaskExecutor") - public void runMatchmaking(String sourceId, Project project) { - log.info("Running auto-mapping for source: {}", sourceId); + public void runMatchmaking(Source source, Project project) { + log.info("Running auto-mapping for source: {}", source.getId()); User robotUser = userService.retrieveRobotUser(); - project.setOntologies(CurationUtil.configListtoLowerCase(project.getOntologies())); - project.setDatasources(CurationUtil.configListtoLowerCase(project.getDatasources())); - project.setPreferredMappingOntologies(CurationUtil.listToLowerCase(project.getPreferredMappingOntologies())); long sTime = System.currentTimeMillis(); - Stream entityStream = entityService.retrieveEntitiesForSource(sourceId); + Stream entityStream = entityService.retrieveEntitiesForSource(source.getId()); entityStream.forEach(entity -> this.autoMap(entity, project, robotUser)); entityStream.close(); long eTime = System.currentTimeMillis(); - log.info("[{}] Auto-mapping done in {}s", sourceId, (eTime - sTime) / 1000); + log.info("[{}] Auto-mapping done in {}s", source.getId(), (eTime - sTime) / 1000); + } + + private ProjectContext findContext(String contextName, String entityName, Project project) { + ProjectContext projectContext = null; + ProjectContext defaultContext = null; + for (ProjectContext pc : project.getContexts()) { + if (pc.getName().equalsIgnoreCase(contextName)) { + projectContext = pc; + break; + } + if (pc.getName().equalsIgnoreCase(CurationConstants.CONTEXT_DEFAULT)) { + defaultContext = pc; + } + } + + if (projectContext == null) { + log.error("Cannot find context [{}] for entity [{}] in project: {}", contextName, entityName, project.getId()); + return defaultContext; + } + + return projectContext; } private void autoMap(Entity entity, Project project, User user) { - List projectDatasources = CurationUtil.configForField(entity, project.getDatasources()); - List projectOntologies = CurationUtil.configForField(entity, project.getOntologies()); + ProjectContext projectContext = this.findContext(entity.getContext(), entity.getName(), project); + List projectDatasources = projectContext.getDatasources(); + List projectOntologies = projectContext.getOntologies(); /** * Retrieve annotations from Zooma from datasources stored in the project @@ -109,7 +131,7 @@ private void autoMap(Entity entity, Project project, User user) { Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); List termsCreated = new ArrayList<>(); for (String iri : finalIRIs) { - OntologyTerm ontologyTerm = ontologyTermService.createTerm(iri, project); + OntologyTerm ontologyTerm = ontologyTermService.createTerm(iri, projectContext); if (ontologyTerm != null) { termsCreated.add(ontologyTerm); mappingSuggestionsService.createMappingSuggestion(entity, ontologyTerm, provenance); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java index 06f5f29..98ceb22 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java @@ -7,7 +7,7 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; -import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.ProjectContext; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; import uk.ac.ebi.spot.ontotools.curation.repository.OntologyTermRepository; @@ -44,7 +44,7 @@ public OntologyTerm createTerm(OntologyTerm term) { } @Override - public OntologyTerm createTerm(String iri, Project project) { + public OntologyTerm createTerm(String iri, ProjectContext projectContext) { log.info("Creating term: {}", iri); Optional ontologyTermOp = ontologyTermRepository.findByIriHash(DigestUtils.sha256Hex(iri)); if (ontologyTermOp.isPresent()) { @@ -53,13 +53,13 @@ public OntologyTerm createTerm(String iri, Project project) { } List preferredOntoResponse = new ArrayList<>(); - for (String preferredOntology : project.getPreferredMappingOntologies()) { + for (String preferredOntology : projectContext.getPreferredMappingOntologies()) { preferredOntoResponse.addAll(olsService.retrieveTerms(preferredOntology, iri)); } List parentOntoResponse = new ArrayList<>(); String ontoId = CurationUtil.ontoFromIRI(iri); String termStatus; - if (!project.getPreferredMappingOntologies().contains(ontoId.toLowerCase())) { + if (!projectContext.getPreferredMappingOntologies().contains(ontoId.toLowerCase())) { parentOntoResponse = olsService.retrieveTerms(ontoId, iri); termStatus = parseStatus(preferredOntoResponse, parentOntoResponse, null); } else { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java index c12cd13..1038084 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java @@ -1,14 +1,17 @@ package uk.ac.ebi.spot.ontotools.curation.service.impl; +import org.apache.commons.lang3.tuple.Pair; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.ProjectContext; import uk.ac.ebi.spot.ontotools.curation.domain.auth.Role; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; +import uk.ac.ebi.spot.ontotools.curation.repository.ProjectContextRepository; import uk.ac.ebi.spot.ontotools.curation.repository.ProjectRepository; import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; @@ -26,19 +29,33 @@ public class ProjectServiceImpl implements ProjectService { @Autowired private ProjectRepository projectRepository; + @Autowired + private ProjectContextRepository projectContextRepository; + @Override public List retrieveProjects(User user) { log.info("Retrieving projects for user: {}", user.getEmail()); List projectIds = user.getRoles().stream().map(Role::getProjectId).collect(Collectors.toList()); List projects = user.isSuperUser() ? projectRepository.findAll() : projectRepository.findByIdIn(projectIds); + List result = new ArrayList<>(); + for (Project project : projects) { + List projectContexts = projectContextRepository.findByProjectId(project.getId()); + project.setContexts(projectContexts); + result.add(project); + } log.info("Found {} projects: ", projects.size()); - return projects; + return result; } @Override - public Project createProject(Project toCreate, User user) { - log.info("[{}] Creating project: {}", user.getEmail(), toCreate.getName()); - Project created = projectRepository.insert(toCreate); + public Project createProject(Pair projectCreationPair, User user) { + log.info("[{}] Creating project: {}", user.getEmail(), projectCreationPair.getLeft().getName()); + Project created = projectRepository.insert(projectCreationPair.getLeft()); + ProjectContext projectContext = projectCreationPair.getRight(); + projectContext.setProjectId(created.getId()); + projectContext = projectContextRepository.insert(projectContext); + created.setContextIds(Arrays.asList(new String[]{projectContext.getId()})); + created = projectRepository.save(created); log.info("[{}] Project created: {}", created.getName(), created.getId()); return created; } @@ -53,12 +70,14 @@ public Project updateProject(Project project, String projectId, User user) { } if (hasAccess(user, projectId, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN}))) { Project existing = exitingOp.get(); - existing.setDatasources(project.getDatasources() != null ? project.getDatasources() : new ArrayList<>()); - existing.setOntologies(project.getOntologies() != null ? project.getOntologies() : new ArrayList<>()); existing.setName(project.getName()); existing.setDescription(project.getDescription()); existing.setNumberOfReviewsRequired(project.getNumberOfReviewsRequired()); - return projectRepository.save(existing); + existing = projectRepository.save(existing); + + List projectContexts = projectContextRepository.findByProjectId(existing.getId()); + existing.setContexts(projectContexts); + return existing; } else { log.error("User [{}] cannot change project [{}]. Required access is missing.", user.getEmail(), projectId); throw new EntityNotFoundException("No project [" + projectId + "] found for user [" + user.getEmail() + "]"); @@ -99,8 +118,59 @@ public Project retrieveProject(String projectId, User user) { log.error("[{}] Unable to find project: {}", user.getEmail(), projectId); throw new EntityNotFoundException("[" + user.getEmail() + "] Unable to find project: " + projectId); } + Project project = exitingOp.get(); + List projectContexts = projectContextRepository.findByProjectId(project.getId()); + project.setContexts(projectContexts); + return project; + } + + @Override + public Project createProjectContext(ProjectContext projectContext, String projectId, User user) { + log.info("[{}] Creating project context [{}]: {}", user.getEmail(), projectId, projectContext.getName()); + Project project = this.retrieveProject(projectId, user); + projectContext.setProjectId(project.getId()); + projectContext = projectContextRepository.insert(projectContext); + project.getContextIds().add(projectContext.getId()); + project = projectRepository.save(project); + List projectContexts = projectContextRepository.findByProjectId(project.getId()); + project.setContexts(projectContexts); + return project; + } + + @Override + public Project updateProjectContext(ProjectContext projectContext, String projectId, User user) { + log.info("[{}] Updating project context [{}]: {}", user.getEmail(), projectId, projectContext.getName()); + Project project = this.retrieveProject(projectId, user); + Optional projectContextOptional = projectContextRepository.findByProjectIdAndNameIgnoreCase(projectId, projectContext.getName()); + if (!projectContextOptional.isPresent()) { + log.error("Project context [{}] not found for project {}.", projectContext.getName(), project.getName()); + throw new EntityNotFoundException("Project context [" + projectContext.getName() + "] not found for project " + project.getName() + "."); + } + ProjectContext existing = projectContextOptional.get(); + existing.setDescription(projectContext.getDescription()); + existing.setDatasources(projectContext.getDatasources()); + existing.setOntologies(projectContext.getOntologies()); + existing.setPreferredMappingOntologies(projectContext.getPreferredMappingOntologies()); + projectContextRepository.save(existing); + List projectContexts = projectContextRepository.findByProjectId(project.getId()); + project.setContexts(projectContexts); + return project; + } + + @Override + public void deleteProjectContext(String contextName, String projectId, User user) { + log.info("[{}] Deleting project context [{}]: {}", user.getEmail(), projectId, contextName); + Project project = this.retrieveProject(projectId, user); + Optional projectContextOptional = projectContextRepository.findByProjectIdAndNameIgnoreCase(projectId, contextName); + if (!projectContextOptional.isPresent()) { + log.error("Project context [{}] not found for project {}.", contextName, project.getName()); + throw new EntityNotFoundException("Project context [" + contextName + "] not found for project " + project.getName() + "."); + } - return exitingOp.get(); + ProjectContext existing = projectContextOptional.get(); + project.getContextIds().remove(existing.getId()); + projectRepository.save(project); + projectContextRepository.delete(existing); } @Override diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java index 66ccb0f..dbd0a05 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java @@ -1,8 +1,6 @@ package uk.ac.ebi.spot.ontotools.curation.util; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; -import uk.ac.ebi.spot.ontotools.curation.domain.config.ProjectMappingConfig; -import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import java.util.ArrayList; import java.util.HashMap; @@ -70,38 +68,4 @@ public static Map parseAliases(List aliasList) { return map; } - public static List configListtoLowerCase(List projectMappingConfigs) { - List result = new ArrayList<>(); - for (ProjectMappingConfig projectMappingConfig : projectMappingConfigs) { - result.add(new ProjectMappingConfig(projectMappingConfig.getField().toLowerCase(), listToLowerCase(projectMappingConfig.getMappingList()))); - } - return result; - } - - public static List configForField(Entity entity, List projectMappingConfigs) { - if (entity.getBaseField() == null) { - for (ProjectMappingConfig projectMappingConfig : projectMappingConfigs) { - if (projectMappingConfig.getField().equalsIgnoreCase(ProjectMappingConfig.ALL)) { - return projectMappingConfig.getMappingList(); - } - } - - if (!projectMappingConfigs.isEmpty()) { - return projectMappingConfigs.get(0).getMappingList(); - } - } else { - for (ProjectMappingConfig projectMappingConfig : projectMappingConfigs) { - if (projectMappingConfig.getField().equalsIgnoreCase(entity.getBaseField())) { - return projectMappingConfig.getMappingList(); - } - } - for (ProjectMappingConfig projectMappingConfig : projectMappingConfigs) { - if (projectMappingConfig.getField().equalsIgnoreCase(ProjectMappingConfig.ALL)) { - return projectMappingConfig.getMappingList(); - } - } - } - - return new ArrayList<>(); - } } diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index a02772b..73fa737 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -75,7 +75,7 @@ spring: on-profile: "prod" data: mongodb: - uri: mongos-hx-ontotoolscuratorprors-001.ebi.ac.uk:27017,mongos-hl-ontotoolscuratorprors-002.ebi.ac.uk:27017/admin?replicaSet=ontotoolscuratorprors071 + uri: mongos-hx-ontotoolscuratorprors071-01.ebi.ac.uk:27017,mongos-hl-ontotoolscuratorprors071-02.ebi.ac.uk:27017/admin?replicaSet=ontotoolscuratorprors071 ontotools-curation: db: ontotoolscurator diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 4e5f42c..8e75478 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -29,7 +29,10 @@ import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.repository.*; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.*; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectCreationDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceCreationDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; import uk.ac.ebi.spot.ontotools.curation.service.MatchmakerService; import uk.ac.ebi.spot.ontotools.curation.service.OLSService; @@ -157,10 +160,10 @@ protected ProjectDto createProject(String name, String token, String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS; - ProjectCreationDto projectCreationDto = new ProjectCreationDto(name, "Description", - datasources != null ? Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", datasources)}) : new ArrayList<>(), - ontologies != null ? Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", ontologies)}) : new ArrayList<>(), - preferredMappingOntology != null ? Arrays.asList(new String[]{preferredMappingOntology}) : new ArrayList<>(), noReviewsRequired); + ProjectCreationDto projectCreationDto = new ProjectCreationDto(name, "Description", noReviewsRequired, + datasources != null ? datasources : new ArrayList<>(), + ontologies != null ? ontologies : new ArrayList<>(), + preferredMappingOntology != null ? Arrays.asList(new String[]{preferredMappingOntology}) : new ArrayList<>()); String response = mockMvc.perform(post(endpoint) .contentType(MediaType.APPLICATION_JSON) @@ -175,24 +178,23 @@ protected ProjectDto createProject(String name, String token, }); assertEquals(projectCreationDto.getName(), actual.getName()); assertEquals(projectCreationDto.getDescription(), actual.getDescription()); - assertNotNull(actual.getDatasources()); - assertNotNull(actual.getOntologies()); + assertEquals(1, actual.getContexts().size()); + assertEquals(CurationConstants.CONTEXT_DEFAULT, actual.getContexts().get(0).getName()); + assertNotNull(actual.getContexts().get(0).getDatasources()); + assertNotNull(actual.getContexts().get(0).getOntologies()); + if (datasources == null) { - assertTrue(actual.getDatasources().isEmpty()); + assertTrue(actual.getContexts().get(0).getDatasources().isEmpty()); } else { - assertEquals(1, actual.getDatasources().size()); - assertEquals("ALL", actual.getDatasources().get(0).getField()); - assertEquals(datasources.size(), actual.getDatasources().get(0).getMappingList().size()); + assertEquals(datasources.size(), actual.getContexts().get(0).getDatasources().size()); } if (ontologies == null) { - assertTrue(actual.getOntologies().isEmpty()); + assertTrue(actual.getContexts().get(0).getOntologies().isEmpty()); } else { - assertEquals(1, actual.getOntologies().size()); - assertEquals("ALL", actual.getOntologies().get(0).getField()); - assertEquals(ontologies.size(), actual.getOntologies().get(0).getMappingList().size()); + assertEquals(ontologies.size(), actual.getContexts().get(0).getOntologies().size()); } if (preferredMappingOntology != null) { - assertEquals(preferredMappingOntology, actual.getPreferredMappingOntologies().get(0)); + assertEquals(preferredMappingOntology, actual.getContexts().get(0).getPreferredMappingOntologies().get(0)); } return actual; } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java index ce9b77c..7b4ac2e 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java @@ -9,7 +9,6 @@ import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.config.ExternalServiceConfig; -import uk.ac.ebi.spot.ontotools.curation.domain.config.ProjectMappingConfig; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java index 5c3b705..11fac3b 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java @@ -7,7 +7,6 @@ import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectMappingConfigDto; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; import java.util.Arrays; @@ -44,7 +43,7 @@ public void shouldGetProjects() throws Exception { .getResponse() .getContentAsString(); - List projectList = mapper.readValue(response, new TypeReference>() { + List projectList = mapper.readValue(response, new TypeReference<>() { }); assertEquals(1, projectList.size()); @@ -69,7 +68,7 @@ public void shouldNotGetProjects() throws Exception { .getResponse() .getContentAsString(); - List projectList = mapper.readValue(response, new TypeReference>() { + List projectList = mapper.readValue(response, new TypeReference<>() { }); assertEquals(0, projectList.size()); } @@ -117,9 +116,7 @@ public void shouldUpdateProject() throws Exception { ProjectDto updatedProject = new ProjectDto(projectDto.getId(), "New Name", projectDto.getDescription(), - Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", Arrays.asList(new String[]{"gwas"}))}), - Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", Arrays.asList(new String[]{"ordo"}))}), - projectDto.getPreferredMappingOntologies(), + null, 0, projectDto.getCreated()); @@ -133,12 +130,10 @@ public void shouldUpdateProject() throws Exception { .getResponse() .getContentAsString(); - ProjectDto actual = mapper.readValue(response, new TypeReference() { + ProjectDto actual = mapper.readValue(response, new TypeReference<>() { }); assertEquals(updatedProject.getName(), actual.getName()); assertEquals(updatedProject.getDescription(), actual.getDescription()); - assertEquals(updatedProject.getDatasources(), actual.getDatasources()); - assertEquals(updatedProject.getOntologies(), actual.getOntologies()); } /** @@ -150,9 +145,7 @@ public void shouldNotUpdateProject() throws Exception { ProjectDto updatedProject = new ProjectDto(projectDto.getId(), "New Name", projectDto.getDescription(), - Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", Arrays.asList(new String[]{"gwas"}))}), - Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", Arrays.asList(new String[]{"ordo"}))}), - projectDto.getPreferredMappingOntologies(), + null, 0, projectDto.getCreated()); @@ -173,9 +166,7 @@ public void shouldNotUpdateProjectAsConsumer() throws Exception { ProjectDto updatedProject = new ProjectDto(projectDto.getId(), "New Name", projectDto.getDescription(), - Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", Arrays.asList(new String[]{"gwas"}))}), - Arrays.asList(new ProjectMappingConfigDto[]{new ProjectMappingConfigDto("ALL", Arrays.asList(new String[]{"ordo"}))}), - projectDto.getPreferredMappingOntologies(), + null, 0, projectDto.getCreated()); From e4f3496227fce17444451cdf40aef81e5f8d9b0c Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Mon, 15 Mar 2021 22:01:44 +0800 Subject: [PATCH 45/72] WIP #43 - Fixed bugs. Added tests. --- .../controller/ProjectContextsController.java | 5 + .../rest/controller/SourcesController.java | 2 +- .../curation/service/MatchmakerService.java | 3 +- .../service/impl/DataImportServiceImpl.java | 6 +- .../service/impl/MatchmakerServiceImpl.java | 9 +- .../service/impl/ProjectServiceImpl.java | 1 + .../ontotools/curation/DataImportTest.java | 4 + .../curation/EntityControllerTest.java | 6 +- .../ontotools/curation/IntegrationTest.java | 2 +- .../curation/MatchMakingContolledTest.java | 10 +- .../ontotools/curation/MatchMakingTest.java | 3 +- .../ProjectContextsControllerTest.java | 232 ++++++++++++++++++ .../curation/ProjectsControllerTest.java | 11 + .../curation/PublicDataControllerTest.java | 2 +- .../curation/UsersControllerTest.java | 16 +- ...toTest.java => ProjectContextDtoTest.java} | 4 +- 16 files changed, 288 insertions(+), 28 deletions(-) create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectContextsControllerTest.java rename src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/{ProjectMappingConfigDtoTest.java => ProjectContextDtoTest.java} (65%) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectContextsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectContextsController.java index e8789b1..36c31f9 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectContextsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectContextsController.java @@ -7,6 +7,7 @@ import org.springframework.http.MediaType; import org.springframework.web.bind.annotation.*; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.exception.BadRequestException; @@ -22,6 +23,7 @@ import javax.servlet.http.HttpServletRequest; import javax.validation.Valid; +import java.util.Arrays; @RestController @RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) @@ -49,6 +51,7 @@ public ProjectDto createProjectContext(@PathVariable String projectId, @RequestBody @Valid ProjectContextDto projectContextDto, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to create project context [{}]: {}", user.getEmail(), projectId, projectContextDto.getName()); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN})); Project project = projectService.createProjectContext(ProjectContextDtoAssembler.disassemble(projectContextDto), projectId, user); return ProjectDtoAssembler.assemble(project); } @@ -63,6 +66,7 @@ public ProjectDto createProjectContext(@PathVariable String projectId, public ProjectDto updateProjectContext(@RequestBody @Valid ProjectContextDto projectContextDto, @PathVariable String projectId, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to update project context [{}]: {}", user.getEmail(), projectId, projectContextDto.getName()); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN})); Project updated = projectService.updateProjectContext(ProjectContextDtoAssembler.disassemble(projectContextDto), projectId, user); return ProjectDtoAssembler.assemble(updated); } @@ -76,6 +80,7 @@ public ProjectDto updateProjectContext(@RequestBody @Valid ProjectContextDto pro public void deleteProjectContext(@PathVariable String projectId, @PathVariable String contextName, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to delete project context [{}]: {}", user.getEmail(), projectId, contextName); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN})); if (contextName.equalsIgnoreCase(CurationConstants.CONTEXT_DEFAULT)) { log.error("Cannot delete DEFAULT context for any project."); throw new BadRequestException("Cannot delete DEFAULT context for any project."); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java index 8867c7b..bd8e123 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/SourcesController.java @@ -113,7 +113,7 @@ public void addDataToSource(@RequestBody List entities, @PathVariable St entityService.createEntity(new Entity(null, entity, null, null, source.getId(), projectId, null, new Provenance(user.getName(), user.getEmail(), DateTime.now()), EntityStatus.UNMAPPED)); } - matchmakerService.runMatchmaking(source, projectService.retrieveProject(projectId, user)); + matchmakerService.runMatchmaking(source.getId(), projectService.retrieveProject(projectId, user)); } /** diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakerService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakerService.java index bb8ce83..58be5be 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakerService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakerService.java @@ -1,9 +1,8 @@ package uk.ac.ebi.spot.ontotools.curation.service; import uk.ac.ebi.spot.ontotools.curation.domain.Project; -import uk.ac.ebi.spot.ontotools.curation.domain.Source; public interface MatchmakerService { - void runMatchmaking(Source source, Project project); + void runMatchmaking(String sourceId, Project project); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java index 2bd9c0b..5d03469 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java @@ -8,6 +8,7 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; @@ -61,7 +62,8 @@ public void importData(String fileData, String projectId, Source source, User us int count = 0; for (ImportDataElementDto importDataElementDto : importDataPackageDto.getData()) { entityService.createEntity(new Entity(null, importDataElementDto.getText(), - importDataElementDto.getUpstreamId(), importDataElementDto.getContext(), + importDataElementDto.getUpstreamId(), + importDataElementDto.getContext() == null ? CurationConstants.CONTEXT_DEFAULT : importDataElementDto.getContext(), source.getId(), projectId, importDataElementDto.getPriority(), provenance, EntityStatus.UNMAPPED)); count++; if (count % 100 == 0) { @@ -70,7 +72,7 @@ public void importData(String fileData, String projectId, Source source, User us } long eTime = System.currentTimeMillis(); log.info("{} entities created [{}s]", count, (eTime - sTime) / 1000); - matchmakerService.runMatchmaking(source, project); + matchmakerService.runMatchmaking(source.getId(), project); } catch (IOException e) { log.error("Unable to deserialize import data file: {}", e.getMessage(), e); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java index b5510e0..01c7612 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java @@ -11,7 +11,6 @@ import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.ProjectContext; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; -import uk.ac.ebi.spot.ontotools.curation.domain.Source; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; @@ -52,16 +51,16 @@ public class MatchmakerServiceImpl implements MatchmakerService { @Override @Async(value = "applicationTaskExecutor") - public void runMatchmaking(Source source, Project project) { - log.info("Running auto-mapping for source: {}", source.getId()); + public void runMatchmaking(String sourceId, Project project) { + log.info("Running auto-mapping for source: {}", sourceId); User robotUser = userService.retrieveRobotUser(); long sTime = System.currentTimeMillis(); - Stream entityStream = entityService.retrieveEntitiesForSource(source.getId()); + Stream entityStream = entityService.retrieveEntitiesForSource(sourceId); entityStream.forEach(entity -> this.autoMap(entity, project, robotUser)); entityStream.close(); long eTime = System.currentTimeMillis(); - log.info("[{}] Auto-mapping done in {}s", source.getId(), (eTime - sTime) / 1000); + log.info("[{}] Auto-mapping done in {}s", sourceId, (eTime - sTime) / 1000); } private ProjectContext findContext(String contextName, String entityName, Project project) { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java index 1038084..12ff90a 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java @@ -57,6 +57,7 @@ public Project createProject(Pair projectCreationPair, created.setContextIds(Arrays.asList(new String[]{projectContext.getId()})); created = projectRepository.save(created); log.info("[{}] Project created: {}", created.getName(), created.getId()); + created.setContexts(Arrays.asList(new ProjectContext[]{projectContext})); return created; } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/DataImportTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/DataImportTest.java index cf8ccce..674fe36 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/DataImportTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/DataImportTest.java @@ -10,6 +10,7 @@ import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.repository.EntityRepository; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; @@ -62,6 +63,9 @@ public void shouldImportData() throws Exception { .andExpect(status().isCreated()); assertEquals(12443, entityRepository.findAll().size()); + for (Entity entity : entityRepository.findAll()) { + assertEquals(CurationConstants.CONTEXT_DEFAULT, entity.getContext()); + } } @Test diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java index 28dbc7b..e867294 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java @@ -67,13 +67,14 @@ public void shouldGetEntities() throws Exception { .getResponse() .getContentAsString(); - RestResponsePage entitiesPage = mapper.readValue(response, new TypeReference>() { + RestResponsePage entitiesPage = mapper.readValue(response, new TypeReference<>() { }); assertEquals(1, entitiesPage.getTotalElements()); EntityDto actual = entitiesPage.getContent().get(0); assertEquals("Achondroplasia", actual.getName()); assertEquals(EntityStatus.AUTO_MAPPED.name(), actual.getMappingStatus()); + assertEquals(CurationConstants.CONTEXT_DEFAULT, actual.getContext()); assertNotNull(actual.getMapping()); assertEquals("Orphanet:15", actual.getMapping().getOntologyTerms().get(0).getCurie()); @@ -109,11 +110,12 @@ public void shouldGetEntity() throws Exception { .getResponse() .getContentAsString(); - EntityDto actual = mapper.readValue(response, new TypeReference() { + EntityDto actual = mapper.readValue(response, new TypeReference<>() { }); assertEquals("Achondroplasia", actual.getName()); assertEquals(EntityStatus.AUTO_MAPPED.name(), actual.getMappingStatus()); + assertEquals(CurationConstants.CONTEXT_DEFAULT, actual.getContext()); assertNotNull(actual.getMapping()); assertEquals("Orphanet:15", actual.getMapping().getOntologyTerms().get(0).getCurie()); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 8e75478..6ec2198 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -226,7 +226,7 @@ protected SourceDto createSource(String projectId) throws Exception { protected void createEntityTestData(String sourceId, String projectId, User user) { Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); entity = entityRepository.insert(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), - RandomStringUtils.randomAlphabetic(10), sourceId, projectId, null, provenance, EntityStatus.AUTO_MAPPED)); + CurationConstants.CONTEXT_DEFAULT, sourceId, projectId, null, provenance, EntityStatus.AUTO_MAPPED)); OntologyTerm orphaTerm = ontologyTermRepository.insert(new OntologyTerm(null, "Orphanet:15", "http://www.orpha.net/ORDO/Orphanet_15", DigestUtils.sha256Hex("http://www.orpha.net/ORDO/Orphanet_15"), "Achondroplasia", TermStatus.CURRENT.name(), null, null)); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java index 7b4ac2e..6e108e0 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java @@ -5,8 +5,10 @@ import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.ProjectContext; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.config.ExternalServiceConfig; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; @@ -94,7 +96,7 @@ public void setup() throws Exception { * - Retinal dystrophy */ entity = entityService.createEntity(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), - RandomStringUtils.randomAlphabetic(10), sourceDto.getId(), project.getId(), 10, provenance, EntityStatus.UNMAPPED)); + CurationConstants.CONTEXT_DEFAULT, sourceDto.getId(), project.getId(), 10, provenance, EntityStatus.UNMAPPED)); } @@ -215,8 +217,10 @@ public void testCase3() { ); this.ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp"}); - this.project.setOntologies(Arrays.asList(new ProjectMappingConfig[]{new ProjectMappingConfig(ProjectMappingConfig.ALL, this.ontologies)})); - this.projectService.updateProject(this.project, this.project.getId(), this.user1); + ProjectContext projectContext = project.getContexts().get(0); + projectContext.setOntologies(this.ontologies); + projectService.updateProjectContext(projectContext, project.getId(), user1); + project = projectService.retrieveProject(project.getId(), user1); matchmakerService.runMatchmaking(sourceDto.getId(), project); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java index 0343b2e..dce2dba 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java @@ -5,6 +5,7 @@ import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; @@ -81,7 +82,7 @@ public void setup() throws Exception { * - Retinal dystrophy */ entity = entityService.createEntity(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), - RandomStringUtils.randomAlphabetic(10), sourceDto.getId(), project.getId(), 10, provenance, EntityStatus.UNMAPPED)); + CurationConstants.CONTEXT_DEFAULT, sourceDto.getId(), project.getId(), 10, provenance, EntityStatus.UNMAPPED)); } @Test diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectContextsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectContextsControllerTest.java new file mode 100644 index 0000000..761895a --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectContextsControllerTest.java @@ -0,0 +1,232 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import com.fasterxml.jackson.core.type.TypeReference; +import org.junit.Test; +import org.springframework.http.MediaType; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectContextDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; + +import java.util.Arrays; +import java.util.HashMap; +import java.util.Map; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; + +public class ProjectContextsControllerTest extends IntegrationTest { + + private ProjectDto projectDto; + + public void setup() throws Exception { + super.setup(); + projectDto = super.createProject("New Project", "token1", + Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}), + Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}), + "efo", 0); + } + + + /** + * POST /v1/projects/{projectId}/contexts + */ + @Test + public void shouldCreateContext() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_CONTEXTS; + ProjectContextDto newProjectContextDto = new ProjectContextDto("species_mouse", "", + Arrays.asList(new String[]{"sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}), + Arrays.asList(new String[]{"efo", "mondo", "mp"}), + Arrays.asList(new String[]{"efo"})); + + String response = mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1") + .content(super.mapper.writeValueAsString(newProjectContextDto))) + .andExpect(status().isCreated()) + .andReturn() + .getResponse() + .getContentAsString(); + + ProjectDto projectResponse = mapper.readValue(response, new TypeReference<>() { + }); + + assertEquals(2, projectResponse.getContexts().size()); + Map contexts = new HashMap<>(); + for (ProjectContextDto projectContextDto : projectResponse.getContexts()) { + contexts.put(projectContextDto.getName(), ""); + } + assertTrue(contexts.containsKey(CurationConstants.CONTEXT_DEFAULT)); + assertTrue(contexts.containsKey(newProjectContextDto.getName())); + for (ProjectContextDto projectContextDto : projectResponse.getContexts()) { + if (projectContextDto.getName().equalsIgnoreCase(newProjectContextDto.getName())) { + assertEquals(newProjectContextDto.getDatasources().size(), projectContextDto.getDatasources().size()); + assertEquals(newProjectContextDto.getOntologies().size(), projectContextDto.getOntologies().size()); + assertEquals(newProjectContextDto.getPreferredMappingOntologies().size(), projectContextDto.getPreferredMappingOntologies().size()); + } + } + } + + /** + * PUT /v1/projects/{projectId}/contexts + */ + @Test + public void shouldUpdateContext() throws Exception { + ProjectContextDto projectContextDto = projectDto.getContexts().get(0); + ProjectContextDto updated = new ProjectContextDto(projectContextDto.getName(), + projectContextDto.getDescription(), + Arrays.asList(new String[]{"sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}), + Arrays.asList(new String[]{"efo", "mondo", "mp"}), + Arrays.asList(new String[]{"efo"})); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_CONTEXTS; + String response = mockMvc.perform(put(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1") + .content(super.mapper.writeValueAsString(updated))) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + ProjectDto projectResponse = mapper.readValue(response, new TypeReference<>() { + }); + + assertEquals(1, projectResponse.getContexts().size()); + assertEquals(CurationConstants.CONTEXT_DEFAULT, projectResponse.getContexts().get(0).getName()); + assertEquals(updated.getDatasources().size(), projectResponse.getContexts().get(0).getDatasources().size()); + assertEquals(updated.getOntologies().size(), projectResponse.getContexts().get(0).getOntologies().size()); + assertEquals(updated.getPreferredMappingOntologies().size(), projectResponse.getContexts().get(0).getPreferredMappingOntologies().size()); + } + + /** + * DELETE /v1/projects/{projectId}/contexts/{contextName} + */ + @Test + public void shouldDeleteContext() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_CONTEXTS; + ProjectContextDto newProjectContextDto = new ProjectContextDto("species_mouse", "", + Arrays.asList(new String[]{"sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}), + Arrays.asList(new String[]{"efo", "mondo", "mp"}), + Arrays.asList(new String[]{"efo"})); + + String response = mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1") + .content(super.mapper.writeValueAsString(newProjectContextDto))) + .andExpect(status().isCreated()) + .andReturn() + .getResponse() + .getContentAsString(); + + ProjectDto projectResponse = mapper.readValue(response, new TypeReference<>() { + }); + + assertEquals(2, projectResponse.getContexts().size()); + + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_CONTEXTS + "/" + newProjectContextDto.getName(); + mockMvc.perform(delete(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()); + + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); + response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + ProjectDto actual = mapper.readValue(response, new TypeReference<>() { + }); + assertEquals(1, actual.getContexts().size()); + assertEquals(CurationConstants.CONTEXT_DEFAULT, actual.getContexts().get(0).getName()); + } + + /** + * DELETE /v1/projects/{projectId}/contexts/{contextName} + */ + @Test + public void shouldNotDeleteDefaultContext() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_CONTEXTS + "/" + CurationConstants.CONTEXT_DEFAULT; + mockMvc.perform(delete(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isBadRequest()); + } + + /** + * POST /v1/projects/{projectId}/contexts + */ + @Test + public void shouldNotCreateContext() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_CONTEXTS; + ProjectContextDto newProjectContextDto = new ProjectContextDto("species_mouse", "", + Arrays.asList(new String[]{"sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}), + Arrays.asList(new String[]{"efo", "mondo", "mp"}), + Arrays.asList(new String[]{"efo"})); + + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2") + .content(super.mapper.writeValueAsString(newProjectContextDto))) + .andExpect(status().isNotFound()); + } + + /** + * PUT /v1/projects/{projectId}/contexts + */ + @Test + public void shouldNotUpdateContext() throws Exception { + ProjectContextDto projectContextDto = projectDto.getContexts().get(0); + ProjectContextDto updated = new ProjectContextDto(projectContextDto.getName(), + projectContextDto.getDescription(), + Arrays.asList(new String[]{"sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}), + Arrays.asList(new String[]{"efo", "mondo", "mp"}), + Arrays.asList(new String[]{"efo"})); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_CONTEXTS; + mockMvc.perform(put(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2") + .content(super.mapper.writeValueAsString(updated))) + .andExpect(status().isNotFound()); + } + + /** + * DELETE /v1/projects/{projectId}/contexts/{contextName} + */ + @Test + public void shouldNotDeleteContext() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_CONTEXTS; + ProjectContextDto newProjectContextDto = new ProjectContextDto("species_mouse", "", + Arrays.asList(new String[]{"sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}), + Arrays.asList(new String[]{"efo", "mondo", "mp"}), + Arrays.asList(new String[]{"efo"})); + + String response = mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1") + .content(super.mapper.writeValueAsString(newProjectContextDto))) + .andExpect(status().isCreated()) + .andReturn() + .getResponse() + .getContentAsString(); + + ProjectDto projectResponse = mapper.readValue(response, new TypeReference<>() { + }); + + assertEquals(2, projectResponse.getContexts().size()); + + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_CONTEXTS + "/" + newProjectContextDto.getName(); + mockMvc.perform(delete(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } +} diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java index 11fac3b..a7bee16 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java @@ -26,6 +26,17 @@ public void shouldCreateProject() throws Exception { super.createProject("New Project", "token1", null, null, null, 0); } + /** + * POST /v1/projects + */ + @Test + public void shouldCreateProjectWithDatasources() throws Exception { + super.createProject("New Project", "token1", + Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}), + Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}), + "efo", 0); + } + /** * GET /v1/projects */ diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/PublicDataControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/PublicDataControllerTest.java index b4c6756..35e0644 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/PublicDataControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/PublicDataControllerTest.java @@ -88,7 +88,7 @@ public void setup() throws Exception { * - Retinal dystrophy */ entity = entityService.createEntity(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), - RandomStringUtils.randomAlphabetic(10), sourceDto.getId(), project.getId(), 10, provenance, EntityStatus.UNMAPPED)); + CurationConstants.CONTEXT_DEFAULT, sourceDto.getId(), project.getId(), 10, provenance, EntityStatus.UNMAPPED)); matchmakerService.runMatchmaking(sourceDto.getId(), project); } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java index 4960213..d04e794 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java @@ -36,7 +36,7 @@ public void shouldGetUsersForProject() throws Exception { .getResponse() .getContentAsString(); - List actual = mapper.readValue(response, new TypeReference>() { + List actual = mapper.readValue(response, new TypeReference<>() { }); assertEquals(1, actual.size()); @@ -111,7 +111,7 @@ public void shouldAddUserToProject() throws Exception { .getResponse() .getContentAsString(); - UserDto actual = mapper.readValue(response, new TypeReference() { + UserDto actual = mapper.readValue(response, new TypeReference<>() { }); assertEquals(user2.getEmail(), actual.getEmail()); @@ -127,7 +127,7 @@ public void shouldAddUserToProject() throws Exception { .getResponse() .getContentAsString(); - List actualList = mapper.readValue(response, new TypeReference>() { + List actualList = mapper.readValue(response, new TypeReference<>() { }); assertEquals(2, actualList.size()); @@ -146,7 +146,7 @@ public void shouldAddUserToProject() throws Exception { .getResponse() .getContentAsString(); - ProjectDto actualProject = mapper.readValue(response, new TypeReference() { + ProjectDto actualProject = mapper.readValue(response, new TypeReference<>() { }); assertEquals(projectDto.getName(), actualProject.getName()); assertEquals(projectDto.getDescription(), actualProject.getDescription()); @@ -222,7 +222,7 @@ public void shouldUpdateUserToProject() throws Exception { .getResponse() .getContentAsString(); - UserDto actual = mapper.readValue(response, new TypeReference() { + UserDto actual = mapper.readValue(response, new TypeReference<>() { }); assertEquals(user2.getEmail(), actual.getEmail()); @@ -241,7 +241,7 @@ public void shouldUpdateUserToProject() throws Exception { .getResponse() .getContentAsString(); - actual = mapper.readValue(response, new TypeReference() { + actual = mapper.readValue(response, new TypeReference<>() { }); assertEquals(user2.getEmail(), actual.getEmail()); @@ -321,7 +321,7 @@ public void shouldDeleteUserRolesInProject() throws Exception { .getResponse() .getContentAsString(); - UserDto actual = mapper.readValue(response, new TypeReference() { + UserDto actual = mapper.readValue(response, new TypeReference<>() { }); assertEquals(user2.getEmail(), actual.getEmail()); @@ -350,7 +350,7 @@ public void shouldDeleteUserRolesInProject() throws Exception { .getResponse() .getContentAsString(); - List actualList = mapper.readValue(response, new TypeReference>() { + List actualList = mapper.readValue(response, new TypeReference<>() { }); assertEquals(1, actualList.size()); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectMappingConfigDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectContextDtoTest.java similarity index 65% rename from src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectMappingConfigDtoTest.java rename to src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectContextDtoTest.java index f72b015..2703a04 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectMappingConfigDtoTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ProjectContextDtoTest.java @@ -3,11 +3,11 @@ import nl.jqno.equalsverifier.EqualsVerifier; import org.junit.Test; -public class ProjectMappingConfigDtoTest { +public class ProjectContextDtoTest { @Test public void equalsContract() { - EqualsVerifier.forClass(ProjectMappingConfigDto.class) + EqualsVerifier.forClass(ProjectContextDto.class) .verify(); } From 81ff55fb97a79160cb5418714b26b45d76e587a7 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Tue, 16 Mar 2021 21:14:51 +0800 Subject: [PATCH 46/72] Added priority field to Entity. --- .../curation/rest/assembler/EntityDtoAssembler.java | 1 + .../ebi/spot/ontotools/curation/rest/dto/EntityDto.java | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java index a633ec3..25e3ac7 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java @@ -26,6 +26,7 @@ public static EntityDto assemble(Entity entity, SourceDto source, Mapping mappin entity.getName(), entity.getBaseId(), entity.getContext(), + entity.getPriority(), entity.getMappingStatus().name(), mappingSuggestionDtos, mappingDto, diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java index b12983f..efccc9d 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/EntityDto.java @@ -34,6 +34,9 @@ public final class EntityDto implements Serializable { @JsonProperty("context") private final String context; + @JsonProperty("priority") + private final Integer priority; + @JsonProperty("mappingStatus") private final String mappingStatus; @@ -55,6 +58,7 @@ public EntityDto(@JsonProperty("id") String id, @JsonProperty("name") String name, @JsonProperty("upstreamId") String upstreamId, @JsonProperty("context") String context, + @JsonProperty("priority") Integer priority, @JsonProperty("mappingStatus") String mappingStatus, @JsonProperty("mappingSuggestions") List mappingSuggestions, @JsonProperty("mapping") MappingDto mapping, @@ -64,6 +68,7 @@ public EntityDto(@JsonProperty("id") String id, this.source = source; this.name = name; this.upstreamId = upstreamId; + this.priority = priority; this.context = context; this.mappingStatus = mappingStatus; this.mappingSuggestions = mappingSuggestions; @@ -109,6 +114,10 @@ public String getContext() { return context; } + public Integer getPriority() { + return priority; + } + public List getAuditTrail() { return auditTrail; } From 2d6405af5a4ca5a5e92ba78ebc0604cb437946ad Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Wed, 17 Mar 2021 12:11:26 +0800 Subject: [PATCH 47/72] ontotools-curator#48 ontotools-curator#49 --- .../curation/domain/FailedImportLogEntry.java | 26 ++++++ .../curation/domain/ImportLogBatch.java | 37 +++++++++ .../curation/domain/MatchmakingLogBatch.java | 25 ++++++ .../curation/domain/MatchmakingLogEntry.java | 30 +++++++ .../FailedImportLogEntryRepository.java | 8 ++ .../repository/ImportLogBatchRepository.java | 8 ++ .../MatchmakingLogBatchRepository.java | 8 ++ .../MatchmakingLogEntryRepository.java | 8 ++ .../curation/service/ImportLogService.java | 12 +++ .../service/MatchmakingLogService.java | 10 +++ .../service/impl/ConfigRegistryImpl.java | 2 +- .../service/impl/DataImportServiceImpl.java | 36 +++++--- .../impl/ExportExecutorServiceImpl.java | 2 +- .../service/impl/ImportLogServiceImpl.java | 49 +++++++++++ .../impl/MappingSuggestionsServiceImpl.java | 2 +- .../service/impl/MatchmakerServiceImpl.java | 35 +++----- .../impl/MatchmakingLogServiceImpl.java | 33 ++++++++ .../service/impl/OntologyTermServiceImpl.java | 82 ++++++++++--------- .../ontotools/curation/util/CurationUtil.java | 24 ++++++ .../ontotools/curation/IntegrationTest.java | 1 - 20 files changed, 363 insertions(+), 75 deletions(-) create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/FailedImportLogEntry.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ImportLogBatch.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MatchmakingLogBatch.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MatchmakingLogEntry.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/FailedImportLogEntryRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ImportLogBatchRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MatchmakingLogBatchRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MatchmakingLogEntryRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ImportLogService.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakingLogService.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ImportLogServiceImpl.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakingLogServiceImpl.java diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/FailedImportLogEntry.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/FailedImportLogEntry.java new file mode 100644 index 0000000..dc1d131 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/FailedImportLogEntry.java @@ -0,0 +1,26 @@ +package uk.ac.ebi.spot.ontotools.curation.domain; + +import lombok.AllArgsConstructor; +import lombok.Getter; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.index.Indexed; +import org.springframework.data.mongodb.core.mapping.Document; + +import java.util.List; +import java.util.Set; + +@AllArgsConstructor +@Getter +@Document(collection = "failedImportLogEntries") +public class FailedImportLogEntry { + + @Id + private String id; + + @Indexed + private String batchId; + + private String entityName; + + private String context; +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ImportLogBatch.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ImportLogBatch.java new file mode 100644 index 0000000..2d8c468 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ImportLogBatch.java @@ -0,0 +1,37 @@ +package uk.ac.ebi.spot.ontotools.curation.domain; + +import lombok.AllArgsConstructor; +import lombok.Getter; +import lombok.NoArgsConstructor; +import lombok.Setter; +import org.joda.time.DateTime; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.index.CompoundIndex; +import org.springframework.data.mongodb.core.index.CompoundIndexes; +import org.springframework.data.mongodb.core.index.Indexed; +import org.springframework.data.mongodb.core.mapping.Document; + +@NoArgsConstructor +@AllArgsConstructor +@Getter +@Setter +@Document(collection = "importLogBatches") +@CompoundIndexes({@CompoundIndex(name = "pTime", def = "{'projectId': 1, 'timestamp': 1}")}) +public class ImportLogBatch { + + @Id + private String id; + + @Indexed + private String projectId; + + private String sourceId; + + private DateTime timestamp; + + private long totalTime; + + private int totalCount; + + private int successful; +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MatchmakingLogBatch.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MatchmakingLogBatch.java new file mode 100644 index 0000000..2c40c96 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MatchmakingLogBatch.java @@ -0,0 +1,25 @@ +package uk.ac.ebi.spot.ontotools.curation.domain; + +import lombok.AllArgsConstructor; +import lombok.Getter; +import org.joda.time.DateTime; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.index.CompoundIndex; +import org.springframework.data.mongodb.core.index.CompoundIndexes; +import org.springframework.data.mongodb.core.index.Indexed; +import org.springframework.data.mongodb.core.mapping.Document; + +@AllArgsConstructor +@Getter +@Document(collection = "matchmakingLogBatches") +@CompoundIndexes({@CompoundIndex(name = "pTime", def = "{'projectId': 1, 'timestamp': 1}")}) +public class MatchmakingLogBatch { + + @Id + private String id; + + @Indexed + private String projectId; + + private DateTime timestamp; +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MatchmakingLogEntry.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MatchmakingLogEntry.java new file mode 100644 index 0000000..9670cce --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MatchmakingLogEntry.java @@ -0,0 +1,30 @@ +package uk.ac.ebi.spot.ontotools.curation.domain; + +import lombok.AllArgsConstructor; +import lombok.Getter; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.index.Indexed; +import org.springframework.data.mongodb.core.mapping.Document; + +import java.util.List; +import java.util.Set; + +@AllArgsConstructor +@Getter +@Document(collection = "matchmakingLogEntries") +public class MatchmakingLogEntry { + + @Id + private String id; + + @Indexed + private String batchId; + + private String entityId; + + private String entityName; + + private List highConfidenceURIs; + + private Set finalURIs; +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/FailedImportLogEntryRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/FailedImportLogEntryRepository.java new file mode 100644 index 0000000..8e6489d --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/FailedImportLogEntryRepository.java @@ -0,0 +1,8 @@ +package uk.ac.ebi.spot.ontotools.curation.repository; + +import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.FailedImportLogEntry; + +public interface FailedImportLogEntryRepository extends MongoRepository { + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ImportLogBatchRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ImportLogBatchRepository.java new file mode 100644 index 0000000..e175699 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ImportLogBatchRepository.java @@ -0,0 +1,8 @@ +package uk.ac.ebi.spot.ontotools.curation.repository; + +import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.ImportLogBatch; + +public interface ImportLogBatchRepository extends MongoRepository { + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MatchmakingLogBatchRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MatchmakingLogBatchRepository.java new file mode 100644 index 0000000..b2aa687 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MatchmakingLogBatchRepository.java @@ -0,0 +1,8 @@ +package uk.ac.ebi.spot.ontotools.curation.repository; + +import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.MatchmakingLogBatch; + +public interface MatchmakingLogBatchRepository extends MongoRepository { + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MatchmakingLogEntryRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MatchmakingLogEntryRepository.java new file mode 100644 index 0000000..5aebb85 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MatchmakingLogEntryRepository.java @@ -0,0 +1,8 @@ +package uk.ac.ebi.spot.ontotools.curation.repository; + +import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.MatchmakingLogEntry; + +public interface MatchmakingLogEntryRepository extends MongoRepository { + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ImportLogService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ImportLogService.java new file mode 100644 index 0000000..e2a4e71 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ImportLogService.java @@ -0,0 +1,12 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import uk.ac.ebi.spot.ontotools.curation.domain.FailedImportLogEntry; + +public interface ImportLogService { + + void logEntry(FailedImportLogEntry failedImportLogEntry); + + String createBatch(String projectId, String sourceId); + + void updateBatch(String batchId, long tTime, int count, int successful); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakingLogService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakingLogService.java new file mode 100644 index 0000000..b2ecb2f --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakingLogService.java @@ -0,0 +1,10 @@ +package uk.ac.ebi.spot.ontotools.curation.service; + +import uk.ac.ebi.spot.ontotools.curation.domain.MatchmakingLogEntry; + +public interface MatchmakingLogService { + + void logEntry(MatchmakingLogEntry matchmakingLogEntry); + + String createBatch(String projectId); +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ConfigRegistryImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ConfigRegistryImpl.java index a0038ff..3af2dfb 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ConfigRegistryImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ConfigRegistryImpl.java @@ -26,7 +26,7 @@ public void registerListener(ConfigListener configListener) { } @Override - @Async + @Async(value = "applicationTaskExecutor") public void updateAliases(ExternalServiceConfig externalServiceConfig) { ConfigListener configListener = configListenerMap.get(externalServiceConfig.getName()); if (configListener != null) { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java index 5d03469..4ff9d25 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java @@ -2,6 +2,7 @@ import com.fasterxml.jackson.core.type.TypeReference; import com.fasterxml.jackson.databind.ObjectMapper; +import org.apache.commons.lang3.tuple.Pair; import org.joda.time.DateTime; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -10,17 +11,13 @@ import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; -import uk.ac.ebi.spot.ontotools.curation.domain.Project; -import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; -import uk.ac.ebi.spot.ontotools.curation.domain.Source; +import uk.ac.ebi.spot.ontotools.curation.domain.*; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.rest.dto.dataimport.ImportDataElementDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.dataimport.ImportDataPackageDto; -import uk.ac.ebi.spot.ontotools.curation.service.DataImportService; -import uk.ac.ebi.spot.ontotools.curation.service.EntityService; -import uk.ac.ebi.spot.ontotools.curation.service.MatchmakerService; -import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; +import uk.ac.ebi.spot.ontotools.curation.service.*; +import uk.ac.ebi.spot.ontotools.curation.util.CurationUtil; import javax.annotation.PostConstruct; import java.io.IOException; @@ -39,6 +36,9 @@ public class DataImportServiceImpl implements DataImportService { @Autowired private MatchmakerService matchmakerService; + @Autowired + private ImportLogService importLogService; + private ObjectMapper objectMapper; @PostConstruct @@ -52,6 +52,7 @@ public void importData(String fileData, String projectId, Source source, User us log.info("[{} | {}] Importing data from file.", projectId, source.getId()); Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); Project project = projectService.retrieveProject(projectId, user); + String batchId = importLogService.createBatch(projectId, source.getId()); try { ImportDataPackageDto importDataPackageDto = this.objectMapper.readValue(fileData, new TypeReference<>() { }); @@ -60,18 +61,31 @@ public void importData(String fileData, String projectId, Source source, User us long sTime = System.currentTimeMillis(); log.info("Creating entities ..."); int count = 0; + int successful = 0; for (ImportDataElementDto importDataElementDto : importDataPackageDto.getData()) { + count++; + String context = CurationConstants.CONTEXT_DEFAULT; + if (importDataElementDto.getContext() != null) { + Pair projectContextInfo = CurationUtil.findContext(importDataElementDto.getContext(), project); + if (!projectContextInfo.getRight()) { + importLogService.logEntry(new FailedImportLogEntry(null, batchId, importDataElementDto.getText(), importDataElementDto.getContext())); + continue; + } + context = projectContextInfo.getLeft().getName(); + } + entityService.createEntity(new Entity(null, importDataElementDto.getText(), - importDataElementDto.getUpstreamId(), - importDataElementDto.getContext() == null ? CurationConstants.CONTEXT_DEFAULT : importDataElementDto.getContext(), + importDataElementDto.getUpstreamId(), context, source.getId(), projectId, importDataElementDto.getPriority(), provenance, EntityStatus.UNMAPPED)); - count++; + successful++; if (count % 100 == 0) { log.info(" -- [{} | {}] Progress: {} of {}", projectId, source.getId(), count, importDataPackageDto.getData().size()); } } long eTime = System.currentTimeMillis(); - log.info("{} entities created [{}s]", count, (eTime - sTime) / 1000); + long tTime = (eTime - sTime) / 1000; + log.info("{} entities created [{}s]", count, tTime); + importLogService.updateBatch(batchId, tTime, count, successful); matchmakerService.runMatchmaking(source.getId(), project); } catch (IOException e) { log.error("Unable to deserialize import data file: {}", e.getMessage(), e); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ExportExecutorServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ExportExecutorServiceImpl.java index aaedb67..29e2318 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ExportExecutorServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ExportExecutorServiceImpl.java @@ -61,7 +61,7 @@ public void initialize() { } @Override - @Async + @Async(value = "applicationTaskExecutor") public void addToQueue(ProjectExportRequest projectExportRequest) { log.info("Adding request to queue: {} | {}", projectExportRequest.getProjectId(), projectExportRequest.getRequestId()); requestQueue.add(projectExportRequest.getId()); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ImportLogServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ImportLogServiceImpl.java new file mode 100644 index 0000000..1e6b35f --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ImportLogServiceImpl.java @@ -0,0 +1,49 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import org.joda.time.DateTime; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.scheduling.annotation.Async; +import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.domain.FailedImportLogEntry; +import uk.ac.ebi.spot.ontotools.curation.domain.ImportLogBatch; +import uk.ac.ebi.spot.ontotools.curation.repository.FailedImportLogEntryRepository; +import uk.ac.ebi.spot.ontotools.curation.repository.ImportLogBatchRepository; +import uk.ac.ebi.spot.ontotools.curation.service.ImportLogService; + +import java.util.Optional; + +@Service +public class ImportLogServiceImpl implements ImportLogService { + + @Autowired + private FailedImportLogEntryRepository failedImportLogEntryRepository; + + @Autowired + private ImportLogBatchRepository importLogBatchRepository; + + @Async(value = "applicationTaskExecutor") + @Override + public void logEntry(FailedImportLogEntry failedImportLogEntry) { + failedImportLogEntryRepository.insert(failedImportLogEntry); + } + + @Override + public String createBatch(String projectId, String sourceId) { + ImportLogBatch importLogBatch = importLogBatchRepository.insert(new ImportLogBatch(null, projectId, sourceId, DateTime.now(), + -1, -1, -1)); + return importLogBatch.getId(); + } + + @Async(value = "applicationTaskExecutor") + @Override + public void updateBatch(String batchId, long tTime, int count, int successful) { + Optional importLogBatchOptional = importLogBatchRepository.findById(batchId); + if (importLogBatchOptional.isPresent()) { + ImportLogBatch importLogBatch = importLogBatchOptional.get(); + importLogBatch.setTotalTime(tTime); + importLogBatch.setTotalCount(count); + importLogBatch.setSuccessful(successful); + importLogBatchRepository.save(importLogBatch); + } + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java index a132361..295df19 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java @@ -48,7 +48,7 @@ public MappingSuggestion createMappingSuggestion(Entity entity, OntologyTerm ont } @Override - @Async + @Async(value = "applicationTaskExecutor") public void deleteMappingSuggestionsExcluding(Entity entity, List ontologyTerms, Provenance provenance) { log.info("Deleting [{}] old mapping suggestions for: {}", ontologyTerms.size(), entity.getName()); List ontologyTermIds = new ArrayList<>(); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java index 01c7612..1a4c912 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java @@ -1,13 +1,14 @@ package uk.ac.ebi.spot.ontotools.curation.service.impl; +import org.apache.commons.lang3.tuple.Pair; import org.joda.time.DateTime; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; -import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.MatchmakingLogEntry; import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.ProjectContext; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; @@ -49,6 +50,9 @@ public class MatchmakerServiceImpl implements MatchmakerService { @Autowired private UserService userService; + @Autowired + private MatchmakingLogService matchmakingLogService; + @Override @Async(value = "applicationTaskExecutor") public void runMatchmaking(String sourceId, Project project) { @@ -57,35 +61,20 @@ public void runMatchmaking(String sourceId, Project project) { long sTime = System.currentTimeMillis(); Stream entityStream = entityService.retrieveEntitiesForSource(sourceId); - entityStream.forEach(entity -> this.autoMap(entity, project, robotUser)); + entityStream.forEach(entity -> this.autoMap(entity, project, robotUser, matchmakingLogService.createBatch(project.getId()))); entityStream.close(); long eTime = System.currentTimeMillis(); log.info("[{}] Auto-mapping done in {}s", sourceId, (eTime - sTime) / 1000); } - private ProjectContext findContext(String contextName, String entityName, Project project) { - ProjectContext projectContext = null; - ProjectContext defaultContext = null; - for (ProjectContext pc : project.getContexts()) { - if (pc.getName().equalsIgnoreCase(contextName)) { - projectContext = pc; - break; - } - if (pc.getName().equalsIgnoreCase(CurationConstants.CONTEXT_DEFAULT)) { - defaultContext = pc; - } - } - if (projectContext == null) { - log.error("Cannot find context [{}] for entity [{}] in project: {}", contextName, entityName, project.getId()); - return defaultContext; + private void autoMap(Entity entity, Project project, User user, String batchId) { + Pair projectContextInfo = CurationUtil.findContext(entity.getContext(), project); + if (!projectContextInfo.getRight()) { + log.error("Cannot find context [{}] for entity [{}] in project: {}", entity.getContext(), entity.getName(), project.getId()); } + ProjectContext projectContext = projectContextInfo.getLeft(); - return projectContext; - } - - private void autoMap(Entity entity, Project project, User user) { - ProjectContext projectContext = this.findContext(entity.getContext(), entity.getName(), project); List projectDatasources = projectContext.getDatasources(); List projectOntologies = projectContext.getOntologies(); @@ -127,6 +116,8 @@ private void autoMap(Entity entity, Project project, User user) { } } + matchmakingLogService.logEntry(new MatchmakingLogEntry(null, batchId, entity.getId(), + entity.getName(), highConfidenceIRIs, finalIRIs)); Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); List termsCreated = new ArrayList<>(); for (String iri : finalIRIs) { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakingLogServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakingLogServiceImpl.java new file mode 100644 index 0000000..5e7d6ce --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakingLogServiceImpl.java @@ -0,0 +1,33 @@ +package uk.ac.ebi.spot.ontotools.curation.service.impl; + +import org.joda.time.DateTime; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.scheduling.annotation.Async; +import org.springframework.stereotype.Service; +import uk.ac.ebi.spot.ontotools.curation.domain.MatchmakingLogBatch; +import uk.ac.ebi.spot.ontotools.curation.domain.MatchmakingLogEntry; +import uk.ac.ebi.spot.ontotools.curation.repository.MatchmakingLogBatchRepository; +import uk.ac.ebi.spot.ontotools.curation.repository.MatchmakingLogEntryRepository; +import uk.ac.ebi.spot.ontotools.curation.service.MatchmakingLogService; + +@Service +public class MatchmakingLogServiceImpl implements MatchmakingLogService { + + @Autowired + private MatchmakingLogEntryRepository matchmakingLogEntryRepository; + + @Autowired + private MatchmakingLogBatchRepository matchmakingLogBatchRepository; + + @Async(value = "applicationTaskExecutor") + @Override + public void logEntry(MatchmakingLogEntry matchmakingLogEntry) { + matchmakingLogEntryRepository.insert(matchmakingLogEntry); + } + + @Override + public String createBatch(String projectId) { + MatchmakingLogBatch matchmakingLogBatch = matchmakingLogBatchRepository.insert(new MatchmakingLogBatch(null, projectId, DateTime.now())); + return matchmakingLogBatch.getId(); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java index 98ceb22..7699be4 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java @@ -46,50 +46,56 @@ public OntologyTerm createTerm(OntologyTerm term) { @Override public OntologyTerm createTerm(String iri, ProjectContext projectContext) { log.info("Creating term: {}", iri); - Optional ontologyTermOp = ontologyTermRepository.findByIriHash(DigestUtils.sha256Hex(iri)); - if (ontologyTermOp.isPresent()) { - log.warn("Ontology term already exists: {} | {}", ontologyTermOp.get().getCurie(), ontologyTermOp.get().getLabel()); - return ontologyTermOp.get(); - } + try { + Optional ontologyTermOp = ontologyTermRepository.findByIriHash(DigestUtils.sha256Hex(iri)); + if (ontologyTermOp.isPresent()) { + log.warn("Ontology term already exists: {} | {}", ontologyTermOp.get().getCurie(), ontologyTermOp.get().getLabel()); + return ontologyTermOp.get(); + } - List preferredOntoResponse = new ArrayList<>(); - for (String preferredOntology : projectContext.getPreferredMappingOntologies()) { - preferredOntoResponse.addAll(olsService.retrieveTerms(preferredOntology, iri)); - } - List parentOntoResponse = new ArrayList<>(); - String ontoId = CurationUtil.ontoFromIRI(iri); - String termStatus; - if (!projectContext.getPreferredMappingOntologies().contains(ontoId.toLowerCase())) { - parentOntoResponse = olsService.retrieveTerms(ontoId, iri); - termStatus = parseStatus(preferredOntoResponse, parentOntoResponse, null); - } else { - termStatus = parseStatus(preferredOntoResponse, null, null); - } + List preferredOntoResponse = new ArrayList<>(); + for (String preferredOntology : projectContext.getPreferredMappingOntologies()) { + preferredOntoResponse.addAll(olsService.retrieveTerms(preferredOntology, iri)); + } + List parentOntoResponse = new ArrayList<>(); + String ontoId = CurationUtil.ontoFromIRI(iri); + String termStatus; + if (!projectContext.getPreferredMappingOntologies().contains(ontoId.toLowerCase())) { + parentOntoResponse = olsService.retrieveTerms(ontoId, iri); + termStatus = parseStatus(preferredOntoResponse, parentOntoResponse, null); + } else { + termStatus = parseStatus(preferredOntoResponse, null, null); + } - OntologyTerm ot; - if (termStatus.equalsIgnoreCase(TermStatus.DELETED.name())) { - /** - * TODO: Discuss - * - * Previous code: - * ot = new OntologyTerm(null, "Not found", iri, DigestUtils.sha256Hex(iri), "Not found", MappingStatus.DELETED.name(), null, null); - */ - log.warn("Found DELETED term: {}", iri); - return null; - } else { - if (termStatus.equalsIgnoreCase(TermStatus.CURRENT.name())) { - OLSTermDto olsTermDto = preferredOntoResponse.get(0); - ot = new OntologyTerm(null, olsTermDto.getCurie(), iri, - DigestUtils.sha256Hex(iri), olsTermDto.getLabel(), TermStatus.CURRENT.name(), null, null); + OntologyTerm ot; + if (termStatus.equalsIgnoreCase(TermStatus.DELETED.name())) { + /** + * TODO: Discuss + * + * Previous code: + * ot = new OntologyTerm(null, "Not found", iri, DigestUtils.sha256Hex(iri), "Not found", MappingStatus.DELETED.name(), null, null); + */ + log.warn("Found DELETED term: {}", iri); + return null; } else { - OLSTermDto olsTermDto = parentOntoResponse.get(0); - ot = new OntologyTerm(null, olsTermDto.getCurie(), olsTermDto.getIri(), DigestUtils.sha256Hex(olsTermDto.getIri()), olsTermDto.getLabel(), termStatus, null, null); + if (termStatus.equalsIgnoreCase(TermStatus.CURRENT.name())) { + OLSTermDto olsTermDto = preferredOntoResponse.get(0); + ot = new OntologyTerm(null, olsTermDto.getCurie(), iri, + DigestUtils.sha256Hex(iri), olsTermDto.getLabel(), TermStatus.CURRENT.name(), null, null); + } else { + OLSTermDto olsTermDto = parentOntoResponse.get(0); + ot = new OntologyTerm(null, olsTermDto.getCurie(), olsTermDto.getIri(), DigestUtils.sha256Hex(olsTermDto.getIri()), olsTermDto.getLabel(), termStatus, null, null); + } } + + ot = ontologyTermRepository.insert(ot); + log.info("Created ontology term [{} | {}]: {}", ot.getCurie(), ot.getLabel(), ot.getId()); + return ot; + } catch (Exception e) { + log.error("ERROR: {}", e.getMessage(), e); } - ot = ontologyTermRepository.insert(ot); - log.info("Created ontology term [{} | {}]: {}", ot.getCurie(), ot.getLabel(), ot.getId()); - return ot; + return null; } @Override diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java index dbd0a05..321bbe9 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java @@ -1,6 +1,10 @@ package uk.ac.ebi.spot.ontotools.curation.util; +import org.apache.commons.lang3.tuple.Pair; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.ProjectContext; import java.util.ArrayList; import java.util.HashMap; @@ -68,4 +72,24 @@ public static Map parseAliases(List aliasList) { return map; } + public static Pair findContext(String contextName, Project project) { + ProjectContext projectContext = null; + ProjectContext defaultContext = null; + for (ProjectContext pc : project.getContexts()) { + if (pc.getName().equalsIgnoreCase(contextName)) { + projectContext = pc; + break; + } + if (pc.getName().equalsIgnoreCase(CurationConstants.CONTEXT_DEFAULT)) { + defaultContext = pc; + } + } + + if (projectContext == null) { + return Pair.of(defaultContext, false); + } + + return Pair.of(projectContext, true); + } + } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 6ec2198..293258d 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -159,7 +159,6 @@ protected ProjectDto createProject(String name, String token, String preferredMappingOntology, int noReviewsRequired) throws Exception { String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS; - ProjectCreationDto projectCreationDto = new ProjectCreationDto(name, "Description", noReviewsRequired, datasources != null ? datasources : new ArrayList<>(), ontologies != null ? ontologies : new ArrayList<>(), From c85fd33a69e79c99ac20ed89eea9c1b5bc7c797d Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Wed, 17 Mar 2021 13:57:29 +0800 Subject: [PATCH 48/72] Fixed field type and batch generator. --- .../ac/ebi/spot/ontotools/curation/domain/ImportLogBatch.java | 2 +- .../ebi/spot/ontotools/curation/service/ImportLogService.java | 2 +- .../ontotools/curation/service/impl/DataImportServiceImpl.java | 2 +- .../ontotools/curation/service/impl/ImportLogServiceImpl.java | 2 +- .../ontotools/curation/service/impl/MatchmakerServiceImpl.java | 3 ++- 5 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ImportLogBatch.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ImportLogBatch.java index 2d8c468..f7cbe60 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ImportLogBatch.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ImportLogBatch.java @@ -29,7 +29,7 @@ public class ImportLogBatch { private DateTime timestamp; - private long totalTime; + private int totalTime; private int totalCount; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ImportLogService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ImportLogService.java index e2a4e71..b7ed8e6 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ImportLogService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ImportLogService.java @@ -8,5 +8,5 @@ public interface ImportLogService { String createBatch(String projectId, String sourceId); - void updateBatch(String batchId, long tTime, int count, int successful); + void updateBatch(String batchId, int tTime, int count, int successful); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java index 4ff9d25..d083da4 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java @@ -85,7 +85,7 @@ public void importData(String fileData, String projectId, Source source, User us long eTime = System.currentTimeMillis(); long tTime = (eTime - sTime) / 1000; log.info("{} entities created [{}s]", count, tTime); - importLogService.updateBatch(batchId, tTime, count, successful); + importLogService.updateBatch(batchId, (int) tTime, count, successful); matchmakerService.runMatchmaking(source.getId(), project); } catch (IOException e) { log.error("Unable to deserialize import data file: {}", e.getMessage(), e); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ImportLogServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ImportLogServiceImpl.java index 1e6b35f..1d32226 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ImportLogServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ImportLogServiceImpl.java @@ -36,7 +36,7 @@ public String createBatch(String projectId, String sourceId) { @Async(value = "applicationTaskExecutor") @Override - public void updateBatch(String batchId, long tTime, int count, int successful) { + public void updateBatch(String batchId, int tTime, int count, int successful) { Optional importLogBatchOptional = importLogBatchRepository.findById(batchId); if (importLogBatchOptional.isPresent()) { ImportLogBatch importLogBatch = importLogBatchOptional.get(); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java index 1a4c912..1ceb261 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java @@ -58,10 +58,11 @@ public class MatchmakerServiceImpl implements MatchmakerService { public void runMatchmaking(String sourceId, Project project) { log.info("Running auto-mapping for source: {}", sourceId); User robotUser = userService.retrieveRobotUser(); + String batchId = matchmakingLogService.createBatch(project.getId()); long sTime = System.currentTimeMillis(); Stream entityStream = entityService.retrieveEntitiesForSource(sourceId); - entityStream.forEach(entity -> this.autoMap(entity, project, robotUser, matchmakingLogService.createBatch(project.getId()))); + entityStream.forEach(entity -> this.autoMap(entity, project, robotUser, batchId)); entityStream.close(); long eTime = System.currentTimeMillis(); log.info("[{}] Auto-mapping done in {}s", sourceId, (eTime - sTime) / 1000); From 3d9d0aa2af054830fcf5cff64470382b6876f943 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Wed, 17 Mar 2021 20:52:27 +0800 Subject: [PATCH 49/72] Changed mapping create process. --- .../repository/OntologyTermRepository.java | 2 ++ .../rest/controller/MappingsController.java | 16 +++++++---- .../rest/dto/mapping/MappingCreationDto.java | 14 ++++++---- .../curation/service/MappingService.java | 2 +- .../curation/service/OntologyTermService.java | 2 ++ .../service/impl/MappingServiceImpl.java | 24 +++++++--------- .../service/impl/MatchmakerServiceImpl.java | 28 +++++++++++-------- .../service/impl/OntologyTermServiceImpl.java | 8 ++++++ .../curation/MappingsControllerTest.java | 9 +++--- 9 files changed, 62 insertions(+), 43 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java index ea2f9da..7705ad5 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java @@ -12,4 +12,6 @@ public interface OntologyTermRepository extends MongoRepository findByIriHash(String iriHash); Optional findByCurie(String curie); + + List findByCurieIn(List curies); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java index eab7296..5b85af7 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java @@ -27,6 +27,7 @@ import javax.validation.Valid; import javax.validation.constraints.NotEmpty; import java.util.*; +import java.util.stream.Collectors; @RestController @RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) @@ -79,26 +80,27 @@ public List getMappings(@PathVariable String projectId, @RequestPara @ResponseStatus(HttpStatus.CREATED) public MappingDto createMapping(@PathVariable String projectId, @RequestBody @Valid MappingCreationDto mappingCreationDto, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); - log.info("[{}] Request to create mapping: {} | {} | {}", user.getEmail(), projectId, mappingCreationDto.getEntityId(), mappingCreationDto.getOntologyTerm()); + log.info("[{}] Request to create mapping: {} | {} | {}", user.getEmail(), projectId, mappingCreationDto.getEntityId(), mappingCreationDto.getOntologyTerms()); projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); Entity entity = entityService.retrieveEntity(mappingCreationDto.getEntityId()); - OntologyTerm ontologyTerm = ontologyTermService.retrieveTermByCurie(mappingCreationDto.getOntologyTerm().getCurie()); - /** * Check if a mapping to this term already exists */ Mapping existingMapping = mappingService.retrieveMappingForEntity(entity.getId()); if (existingMapping != null) { - log.warn("[{}] Mapping to term [{}] already exists.", entity.getName(), ontologyTerm.getCurie()); + log.warn("Entity [{}] already has a mapping.", entity.getName()); return MappingDtoAssembler.assemble(existingMapping); } + List curies = mappingCreationDto.getOntologyTerms().stream().map(OntologyTermDto::getCurie).collect(Collectors.toList()); + List ontologyTerms = ontologyTermService.retrieveTermByCuries(curies); + /** * Create new mapping. */ - Mapping created = mappingService.createMapping(entity, ontologyTerm, provenance); + Mapping created = mappingService.createMapping(entity, ontologyTerms, provenance); /** * Updating mapping status to MANUAL. @@ -108,7 +110,9 @@ public MappingDto createMapping(@PathVariable String projectId, @RequestBody @Va /** * Deleting mapping suggestions associated with the current ontology term. */ - mappingSuggestionsService.deleteMappingSuggestions(entity.getId(), ontologyTerm, provenance); + for (OntologyTerm ontologyTerm : ontologyTerms) { + mappingSuggestionsService.deleteMappingSuggestions(entity.getId(), ontologyTerm, provenance); + } return MappingDtoAssembler.assemble(created); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingCreationDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingCreationDto.java index da93389..c3a6431 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingCreationDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingCreationDto.java @@ -7,6 +7,7 @@ import javax.validation.constraints.NotNull; import java.io.Serializable; +import java.util.List; @EqualsAndHashCode @JsonInclude(JsonInclude.Include.NON_NULL) @@ -19,18 +20,19 @@ public final class MappingCreationDto implements Serializable { private final String entityId; @NotNull - @JsonProperty("ontologyTerm") - private final OntologyTermDto ontologyTerm; + @JsonProperty("ontologyTerms") + private final List ontologyTerms; @JsonCreator public MappingCreationDto(@JsonProperty("entityId") String entityId, - @JsonProperty("ontologyTerm") OntologyTermDto ontologyTerm) { + @JsonProperty("ontologyTerms") List ontologyTerms) { this.entityId = entityId; - this.ontologyTerm = ontologyTerm; + this.ontologyTerms = ontologyTerms; } - public OntologyTermDto getOntologyTerm() { - return ontologyTerm; + + public List getOntologyTerms() { + return ontologyTerms; } public String getEntityId() { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java index 95f57a0..333daa9 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java @@ -10,7 +10,7 @@ public interface MappingService { - Mapping createMapping(Entity entity, OntologyTerm ontologyTerm, Provenance provenance); + Mapping createMapping(Entity entity, List ontologyTerms, Provenance provenance); Map retrieveMappingsForEntities(List entityIds); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java index e040acd..023d41d 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java @@ -18,4 +18,6 @@ public interface OntologyTermService { OntologyTerm retrieveTermByCurie(String curie); OntologyTerm retrieveTermById(String ontologyTermId); + + List retrieveTermByCuries(List curies); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java index c0e4639..4751059 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java @@ -19,6 +19,7 @@ import uk.ac.ebi.spot.ontotools.curation.service.OntologyTermService; import java.util.*; +import java.util.stream.Collectors; @Service public class MappingServiceImpl implements MappingService { @@ -35,22 +36,17 @@ public class MappingServiceImpl implements MappingService { private AuditEntryService auditEntryService; @Override - public Mapping createMapping(Entity entity, OntologyTerm ontologyTerm, Provenance provenance) { - log.info("Creating mapping for entity [{}]: {}", entity.getName(), ontologyTerm.getCurie()); - Optional mappingOptional = mappingRepository.findByEntityId(entity.getId()); - if (mappingOptional.isPresent()) { - if (mappingOptional.get().getOntologyTermIds().contains(ontologyTerm.getId())) { - log.warn("Mapping for between entity [{}] and ontology term [{}] already exists: {}", entity.getName(), ontologyTerm.getCurie(), mappingOptional.get().getId()); - return mappingOptional.get(); - } - } - - Mapping created = mappingRepository.insert(new Mapping(null, entity.getId(), Arrays.asList(new String[]{ontologyTerm.getId()}), entity.getProjectId(), + public Mapping createMapping(Entity entity, List ontologyTerms, Provenance provenance) { + log.info("Creating mapping for entity [{}]: {}", entity.getName(), ontologyTerms); + List ontologyTermIds = ontologyTerms.stream().map(OntologyTerm::getId).collect(Collectors.toList()); + Mapping created = mappingRepository.insert(new Mapping(null, entity.getId(), ontologyTermIds, entity.getProjectId(), false, new ArrayList<>(), new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), provenance, null)); - created.setOntologyTerms(Arrays.asList(new OntologyTerm[]{ontologyTerm})); + created.setOntologyTerms(ontologyTerms); - auditEntryService.addEntry(AuditEntryConstants.ADDED_MAPPING.name(), entity.getId(), provenance, Map.of(ontologyTerm.getIri(), ontologyTerm.getLabel())); - log.info("Mapping for between entity [{}] and ontology term [{}] created: {}", entity.getName(), ontologyTerm.getCurie(), created.getId()); + for (OntologyTerm ontologyTerm : ontologyTerms) { + auditEntryService.addEntry(AuditEntryConstants.ADDED_MAPPING.name(), entity.getId(), provenance, Map.of(ontologyTerm.getIri(), ontologyTerm.getLabel())); + } + log.info("Mapping for between entity [{}] and ontology term [{}] created: {}", entity.getName(), ontologyTerms, created.getId()); return created; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java index 1ceb261..559c511 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java @@ -19,10 +19,7 @@ import uk.ac.ebi.spot.ontotools.curation.service.*; import uk.ac.ebi.spot.ontotools.curation.util.CurationUtil; -import java.util.ArrayList; -import java.util.HashSet; -import java.util.List; -import java.util.Set; +import java.util.*; import java.util.stream.Stream; import static uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants.ZOOMA_CONFIDENCE_HIGH; @@ -70,6 +67,12 @@ public void runMatchmaking(String sourceId, Project project) { private void autoMap(Entity entity, Project project, User user, String batchId) { + if (entity.getMappingStatus().equals(EntityStatus.MANUALLY_MAPPED) || + entity.getMappingStatus().equals(EntityStatus.AUTO_MAPPED)) { + log.info("Entity [{}] has mapping status [{}]. Will not attempt re-mapping it.", entity.getName(), entity.getMappingStatus().name()); + return; + } + Pair projectContextInfo = CurationUtil.findContext(entity.getContext(), project); if (!projectContextInfo.getRight()) { log.error("Cannot find context [{}] for entity [{}] in project: {}", entity.getContext(), entity.getName(), project.getId()); @@ -127,16 +130,17 @@ private void autoMap(Entity entity, Project project, User user, String batchId) termsCreated.add(ontologyTerm); mappingSuggestionsService.createMappingSuggestion(entity, ontologyTerm, provenance); + if (entity.getMappingStatus().equals(EntityStatus.MANUALLY_MAPPED) || entity.getMappingStatus().equals(EntityStatus.AUTO_MAPPED)) { + continue; + } + if (highConfidenceIRIs.contains(ontologyTerm.getIri())) { - if (entity.getMappingStatus().equals(EntityStatus.UNMAPPED) || entity.getMappingStatus().equals(EntityStatus.SUGGESTIONS_PROVIDED)) { - mappingService.createMapping(entity, ontologyTerm, provenance); - entity = entityService.updateMappingStatus(entity, EntityStatus.AUTO_MAPPED); - log.info("Found high confidence mapping for [{}] in: {}", entity.getName(), ontologyTerm.getIri()); - } + mappingService.createMapping(entity, Arrays.asList(new OntologyTerm[]{ontologyTerm}), provenance); + entity = entityService.updateMappingStatus(entity, EntityStatus.AUTO_MAPPED); + log.info("Found high confidence mapping for [{}] in: {}", entity.getName(), ontologyTerm.getIri()); } else { - if (entity.getName().equalsIgnoreCase(ontologyTerm.getLabel()) && - (entity.getMappingStatus().equals(EntityStatus.UNMAPPED) || entity.getMappingStatus().equals(EntityStatus.SUGGESTIONS_PROVIDED))) { - mappingService.createMapping(entity, ontologyTerm, provenance); + if (entity.getName().equalsIgnoreCase(ontologyTerm.getLabel())) { + mappingService.createMapping(entity, Arrays.asList(new OntologyTerm[]{ontologyTerm}), provenance); entity = entityService.updateMappingStatus(entity, EntityStatus.AUTO_MAPPED); log.info("Found exact text matching for [{}] in: {}", entity.getName(), ontologyTerm.getIri()); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java index 7699be4..f7fcc45 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java @@ -137,6 +137,14 @@ public OntologyTerm retrieveTermById(String ontologyTermId) { return ontologyTermOp.get(); } + @Override + public List retrieveTermByCuries(List curies) { + log.info("Retrieving ontology terms: {}", curies); + List ontologyTerms = ontologyTermRepository.findByCurieIn(curies); + log.info("Found {} ontology terms.", ontologyTerms.size()); + return ontologyTerms; + } + private String parseStatus(List preferredOntoResponse, List parentOntoResponse, String previousState) { if (CollectionUtils.isEmpty(preferredOntoResponse) && CollectionUtils.isEmpty(parentOntoResponse)) { return TermStatus.DELETED.name(); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java index d16fc9e..6d2bfbf 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java @@ -15,7 +15,6 @@ import uk.ac.ebi.spot.ontotools.curation.rest.dto.audit.AuditEntryDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingCreationDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingSuggestionDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.OntologyTermDto; import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; import uk.ac.ebi.spot.ontotools.curation.service.UserService; @@ -73,7 +72,7 @@ public void shouldGetMappings() throws Exception { public void shouldCreateMapping() throws Exception { OntologyTerm ontologyTerm = ontologyTermRepository.findByCurie("MONDO:0007037").get(); OntologyTermDto ontologyTermDto = OntologyTermDtoAssembler.assemble(ontologyTerm); - MappingCreationDto mappingCreationDto = new MappingCreationDto(entity.getId(), ontologyTermDto); + MappingCreationDto mappingCreationDto = new MappingCreationDto(entity.getId(), Arrays.asList(new OntologyTermDto[]{ontologyTermDto})); mappingRepository.deleteAll(); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS; @@ -254,8 +253,9 @@ public void shouldDeleteMapping() throws Exception { */ @Test public void shouldNotCreateMapping() throws Exception { + OntologyTermDto ontologyTermDto = new OntologyTermDto("MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", "Achondroplasia", TermStatus.NEEDS_IMPORT.name(), null, null); MappingCreationDto mappingCreationDto = new MappingCreationDto(entity.getId(), - new OntologyTermDto("MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", "Achondroplasia", TermStatus.NEEDS_IMPORT.name(), null, null)); + Arrays.asList(new OntologyTermDto[]{ontologyTermDto})); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS; mockMvc.perform(post(endpoint) .contentType(MediaType.APPLICATION_JSON) @@ -269,8 +269,9 @@ public void shouldNotCreateMapping() throws Exception { */ @Test public void shouldNotCreateMappingAsConsumer() throws Exception { + OntologyTermDto ontologyTermDto = new OntologyTermDto("MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", "Achondroplasia", TermStatus.NEEDS_IMPORT.name(), null, null); MappingCreationDto mappingCreationDto = new MappingCreationDto(entity.getId(), - new OntologyTermDto("MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", "Achondroplasia", TermStatus.NEEDS_IMPORT.name(), null, null)); + Arrays.asList(new OntologyTermDto[]{ontologyTermDto})); userService.addUserToProject(super.user2, project.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS; From ac9630435c32b3e08f1493733b0a4210d7808fef Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Wed, 17 Mar 2021 21:38:37 +0800 Subject: [PATCH 50/72] Changed mapping endpoints as per request. --- .../curation/constants/CurationConstants.java | 2 + .../rest/controller/MappingsController.java | 19 +++---- .../rest/dto/mapping/MappingCreationDto.java | 12 +---- .../ontotools/curation/IntegrationTest.java | 8 +-- .../MappingCommentsControllerTest.java | 12 ++--- .../MappingReviewsControllerTest.java | 21 +++----- .../curation/MappingsControllerTest.java | 50 +++++++++---------- 7 files changed, 52 insertions(+), 72 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java index bb31bcb..e96cdae 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -14,6 +14,8 @@ public class CurationConstants { public static final String API_MAPPINGS = "/mappings"; + public static final String API_MAPPING = "/mapping"; + public static final String API_EXPORT = "/export"; public static final String API_DOWNLOAD = "/download"; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java index 5b85af7..ac61637 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java @@ -54,12 +54,12 @@ public class MappingsController { private OntologyTermService ontologyTermService; /** - * GET /v1/projects/{projectId}/mappings?entityId= + * GET /v1/projects/{projectId}/entities/{entityId}/mapping */ - @GetMapping(value = "/{projectId}" + CurationConstants.API_MAPPINGS, + @GetMapping(value = "/{projectId}" + CurationConstants.API_ENTITIES + "/{entityId}" + CurationConstants.API_MAPPING, produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.OK) - public List getMappings(@PathVariable String projectId, @RequestParam(value = CurationConstants.PARAM_ENTITY_ID) String entityId, HttpServletRequest request) { + public MappingDto getMapping(@PathVariable String projectId, @PathVariable String entityId, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to retrieve mappings: {} | {}", user.getEmail(), projectId, entityId); projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR, ProjectRole.CONSUMER})); @@ -68,23 +68,24 @@ public List getMappings(@PathVariable String projectId, @RequestPara if (mapping == null) { return null; } - return Arrays.asList(new MappingDto[]{MappingDtoAssembler.assemble(mapping)}); + return MappingDtoAssembler.assemble(mapping); } /** - * POST /v1/projects/{projectId}/mappings + * POST /v1/projects/{projectId}/entities/{entityId}/mapping */ - @PostMapping(value = "/{projectId}" + CurationConstants.API_MAPPINGS, + @PostMapping(value = "/{projectId}" + CurationConstants.API_ENTITIES + "/{entityId}" + CurationConstants.API_MAPPING, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.CREATED) - public MappingDto createMapping(@PathVariable String projectId, @RequestBody @Valid MappingCreationDto mappingCreationDto, HttpServletRequest request) { + public MappingDto createMapping(@PathVariable String projectId, @PathVariable String entityId, + @RequestBody @Valid MappingCreationDto mappingCreationDto, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); - log.info("[{}] Request to create mapping: {} | {} | {}", user.getEmail(), projectId, mappingCreationDto.getEntityId(), mappingCreationDto.getOntologyTerms()); + log.info("[{}] Request to create mapping: {} | {} | {}", user.getEmail(), projectId, entityId, mappingCreationDto.getOntologyTerms()); projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); - Entity entity = entityService.retrieveEntity(mappingCreationDto.getEntityId()); + Entity entity = entityService.retrieveEntity(entityId); /** * Check if a mapping to this term already exists */ diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingCreationDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingCreationDto.java index c3a6431..b4eae20 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingCreationDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingCreationDto.java @@ -15,27 +15,17 @@ public final class MappingCreationDto implements Serializable { private static final long serialVersionUID = -2530149590750902127L; - @NotNull - @JsonProperty("entityId") - private final String entityId; - @NotNull @JsonProperty("ontologyTerms") private final List ontologyTerms; @JsonCreator - public MappingCreationDto(@JsonProperty("entityId") String entityId, - @JsonProperty("ontologyTerms") List ontologyTerms) { - this.entityId = entityId; + public MappingCreationDto(@JsonProperty("ontologyTerms") List ontologyTerms) { this.ontologyTerms = ontologyTerms; } - public List getOntologyTerms() { return ontologyTerms; } - public String getEntityId() { - return entityId; - } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 293258d..0140773 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -239,9 +239,9 @@ protected void createEntityTestData(String sourceId, String projectId, User user projectId, false, new ArrayList<>(), new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), provenance, null)); } - protected List retrieveMapping(String projectId) throws Exception { - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectId + CurationConstants.API_MAPPINGS - + "?entityId=" + entity.getId(); + protected MappingDto retrieveMapping(String projectId) throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectId + + CurationConstants.API_ENTITIES + "/" + entity.getId() + CurationConstants.API_MAPPING; String response = mockMvc.perform(get(endpoint) .contentType(MediaType.APPLICATION_JSON) .header(IDPConstants.JWT_TOKEN, "token1")) @@ -250,7 +250,7 @@ protected List retrieveMapping(String projectId) throws Exception { .getResponse() .getContentAsString(); - List actual = mapper.readValue(response, new TypeReference<>() { + MappingDto actual = mapper.readValue(response, new TypeReference<>() { }); return actual; } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java index abb986f..8d92142 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java @@ -61,8 +61,7 @@ public void setup() throws Exception { */ @Test public void shouldCreateComment() throws Exception { - List actual = super.retrieveMapping(project.getId()); - MappingDto mappingDto = actual.get(0); + MappingDto mappingDto = super.retrieveMapping(project.getId()); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_COMMENTS; @@ -88,8 +87,7 @@ public void shouldCreateComment() throws Exception { */ @Test public void shouldGetComments() throws Exception { - List actual = super.retrieveMapping(project.getId()); - MappingDto mappingDto = actual.get(0); + MappingDto mappingDto = super.retrieveMapping(project.getId()); mappingService.addCommentToMapping(mappingDto.getId(), "New comment", ProvenanceDtoAssembler.disassemble(mappingDto.getCreated())); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + @@ -113,8 +111,7 @@ public void shouldGetComments() throws Exception { */ @Test public void shouldNotCreateComment() throws Exception { - List actual = super.retrieveMapping(project.getId()); - MappingDto mappingDto = actual.get(0); + MappingDto mappingDto = super.retrieveMapping(project.getId()); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_COMMENTS; @@ -130,8 +127,7 @@ public void shouldNotCreateComment() throws Exception { */ @Test public void shouldNotGetComments() throws Exception { - List actual = super.retrieveMapping(project.getId()); - MappingDto mappingDto = actual.get(0); + MappingDto mappingDto = super.retrieveMapping(project.getId()); mappingService.addCommentToMapping(mappingDto.getId(), "New comment", ProvenanceDtoAssembler.disassemble(mappingDto.getCreated())); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java index 180d46f..9f1541c 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java @@ -61,8 +61,7 @@ public void setup() throws Exception { */ @Test public void shouldCreateReview() throws Exception { - List actual = super.retrieveMapping(project.getId()); - MappingDto mappingDto = actual.get(0); + MappingDto mappingDto = super.retrieveMapping(project.getId()); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_REVIEWS; @@ -106,8 +105,7 @@ public void shouldCreateReview() throws Exception { */ @Test public void shouldCreateReviewedMapping() throws Exception { - List actual = super.retrieveMapping(project.getId()); - MappingDto mappingDto = actual.get(0); + MappingDto mappingDto = super.retrieveMapping(project.getId()); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_REVIEWS; @@ -133,8 +131,7 @@ public void shouldCreateReviewedMapping() throws Exception { */ @Test public void shouldGetReviews() throws Exception { - List actual = super.retrieveMapping(project.getId()); - MappingDto mappingDto = actual.get(0); + MappingDto mappingDto = super.retrieveMapping(project.getId()); mappingService.addReviewToMapping(mappingDto.getId(), "New review", 3, ProvenanceDtoAssembler.disassemble(mappingDto.getCreated())); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + @@ -158,8 +155,7 @@ public void shouldGetReviews() throws Exception { */ @Test public void shouldNotCreateReview() throws Exception { - List actual = super.retrieveMapping(project.getId()); - MappingDto mappingDto = actual.get(0); + MappingDto mappingDto = super.retrieveMapping(project.getId()); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId() + CurationConstants.API_REVIEWS; @@ -175,8 +171,7 @@ public void shouldNotCreateReview() throws Exception { */ @Test public void shouldNotGetReviews() throws Exception { - List actual = super.retrieveMapping(project.getId()); - MappingDto mappingDto = actual.get(0); + MappingDto mappingDto = super.retrieveMapping(project.getId()); mappingService.addReviewToMapping(mappingDto.getId(), "New review", 3, ProvenanceDtoAssembler.disassemble(mappingDto.getCreated())); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + @@ -192,8 +187,7 @@ public void shouldNotGetReviews() throws Exception { */ @Test public void shouldNotCreateReviewAsConsumer() throws Exception { - List actual = super.retrieveMapping(project.getId()); - MappingDto mappingDto = actual.get(0); + MappingDto mappingDto = super.retrieveMapping(project.getId()); userService.addUserToProject(super.user2, project.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + @@ -210,8 +204,7 @@ public void shouldNotCreateReviewAsConsumer() throws Exception { */ @Test public void shouldNotGetReviewsAsConsumer() throws Exception { - List actual = super.retrieveMapping(project.getId()); - MappingDto mappingDto = actual.get(0); + MappingDto mappingDto = super.retrieveMapping(project.getId()); mappingService.addReviewToMapping(mappingDto.getId(), "New review", 3, ProvenanceDtoAssembler.disassemble(mappingDto.getCreated())); userService.addUserToProject(super.user2, project.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java index 6d2bfbf..b3ab152 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java @@ -55,27 +55,27 @@ public void setup() throws Exception { } /** - * GET /v1/projects/{projectId}/mappings?entityId= + * GET /v1/projects/{projectId}/entities/{entityId}/mapping */ @Test public void shouldGetMappings() throws Exception { - List actual = super.retrieveMapping(project.getId()); - assertEquals(1, actual.size()); - assertEquals("Orphanet:15", actual.get(0).getOntologyTerms().get(0).getCurie()); - assertEquals(MappingStatus.AWAITING_REVIEW.name(), actual.get(0).getStatus()); + MappingDto actual = super.retrieveMapping(project.getId()); + assertEquals("Orphanet:15", actual.getOntologyTerms().get(0).getCurie()); + assertEquals(MappingStatus.AWAITING_REVIEW.name(), actual.getStatus()); } /** - * POST /v1/projects/{projectId}/mappings + * POST /v1/projects/{projectId}/entities/{entityId}/mapping */ @Test public void shouldCreateMapping() throws Exception { OntologyTerm ontologyTerm = ontologyTermRepository.findByCurie("MONDO:0007037").get(); OntologyTermDto ontologyTermDto = OntologyTermDtoAssembler.assemble(ontologyTerm); - MappingCreationDto mappingCreationDto = new MappingCreationDto(entity.getId(), Arrays.asList(new OntologyTermDto[]{ontologyTermDto})); + MappingCreationDto mappingCreationDto = new MappingCreationDto(Arrays.asList(new OntologyTermDto[]{ontologyTermDto})); mappingRepository.deleteAll(); - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS; + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_ENTITIES + "/" + entity.getId() + CurationConstants.API_MAPPING; String response = mockMvc.perform(post(endpoint) .contentType(MediaType.APPLICATION_JSON) .content(mapper.writeValueAsString(mappingCreationDto)) @@ -137,12 +137,12 @@ public void shouldCreateMapping() throws Exception { */ @Test public void shouldUpdateMapping() throws Exception { - List mappingDtos = super.retrieveMapping(project.getId()); + MappingDto mappingDto = super.retrieveMapping(project.getId()); List ontologyTermDtos = new ArrayList<>(); ontologyTermDtos.add(OntologyTermDtoAssembler.assemble(ontologyTermRepository.findByCurie("MONDO:0007037").get())); ontologyTermDtos.add(OntologyTermDtoAssembler.assemble(ontologyTermRepository.findByCurie("Orphanet:15").get())); - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + mappingDtos.get(0).getId(); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId(); String response = mockMvc.perform(put(endpoint) .contentType(MediaType.APPLICATION_JSON) .content(mapper.writeValueAsString(ontologyTermDtos)) @@ -205,9 +205,9 @@ public void shouldUpdateMapping() throws Exception { @Test public void shouldDeleteMapping() throws Exception { mappingSuggestionRepository.deleteAll(); - List actual = super.retrieveMapping(project.getId()); + MappingDto actual = super.retrieveMapping(project.getId()); - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + actual.get(0).getId(); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + actual.getId(); mockMvc.perform(delete(endpoint) .contentType(MediaType.APPLICATION_JSON) .header(IDPConstants.JWT_TOKEN, "token1")) @@ -249,14 +249,14 @@ public void shouldDeleteMapping() throws Exception { } /** - * POST /v1/projects/{projectId}/mappings + * POST /v1/projects/{projectId}/entities/{entityId}/mapping */ @Test public void shouldNotCreateMapping() throws Exception { OntologyTermDto ontologyTermDto = new OntologyTermDto("MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", "Achondroplasia", TermStatus.NEEDS_IMPORT.name(), null, null); - MappingCreationDto mappingCreationDto = new MappingCreationDto(entity.getId(), - Arrays.asList(new OntologyTermDto[]{ontologyTermDto})); - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS; + MappingCreationDto mappingCreationDto = new MappingCreationDto(Arrays.asList(new OntologyTermDto[]{ontologyTermDto})); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_ENTITIES + "/" + entity.getId() + CurationConstants.API_MAPPING; mockMvc.perform(post(endpoint) .contentType(MediaType.APPLICATION_JSON) .content(mapper.writeValueAsString(mappingCreationDto)) @@ -265,16 +265,16 @@ public void shouldNotCreateMapping() throws Exception { } /** - * POST /v1/projects/{projectId}/mappings + * POST /v1/projects/{projectId}/entities/{entityId}/mapping */ @Test public void shouldNotCreateMappingAsConsumer() throws Exception { OntologyTermDto ontologyTermDto = new OntologyTermDto("MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", "Achondroplasia", TermStatus.NEEDS_IMPORT.name(), null, null); - MappingCreationDto mappingCreationDto = new MappingCreationDto(entity.getId(), - Arrays.asList(new OntologyTermDto[]{ontologyTermDto})); + MappingCreationDto mappingCreationDto = new MappingCreationDto(Arrays.asList(new OntologyTermDto[]{ontologyTermDto})); userService.addUserToProject(super.user2, project.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS; + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_ENTITIES + "/" + entity.getId() + CurationConstants.API_MAPPING; mockMvc.perform(post(endpoint) .contentType(MediaType.APPLICATION_JSON) .content(mapper.writeValueAsString(mappingCreationDto)) @@ -287,9 +287,8 @@ public void shouldNotCreateMappingAsConsumer() throws Exception { */ @Test public void shouldNotDeleteMapping() throws Exception { - List actual = super.retrieveMapping(project.getId()); - MappingDto mappingDto = actual.get(0); - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId(); + MappingDto actual = super.retrieveMapping(project.getId()); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + actual.getId(); mockMvc.perform(delete(endpoint) .contentType(MediaType.APPLICATION_JSON) .header(IDPConstants.JWT_TOKEN, "token2")) @@ -301,11 +300,10 @@ public void shouldNotDeleteMapping() throws Exception { */ @Test public void shouldNotDeleteMappingAsConsumer() throws Exception { - List actual = super.retrieveMapping(project.getId()); - MappingDto mappingDto = actual.get(0); + MappingDto actual = super.retrieveMapping(project.getId()); userService.addUserToProject(super.user2, project.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId(); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + actual.getId(); mockMvc.perform(delete(endpoint) .contentType(MediaType.APPLICATION_JSON) .header(IDPConstants.JWT_TOKEN, "token2")) From bfe10dfc605f3022365482569188a158d606af22 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Sat, 20 Mar 2021 08:00:28 +0800 Subject: [PATCH 51/72] Reverted format for mappings endpoints. --- ...ontotools-curation-service-deployment.yaml | 2 +- .../curation/constants/CurationConstants.java | 2 -- .../rest/controller/EntityController.java | 5 ++++- .../rest/controller/MappingsController.java | 17 +++++++------- .../rest/dto/mapping/MappingCreationDto.java | 13 ++++++++++- .../impl/MappingSuggestionsServiceImpl.java | 1 + src/main/resources/application.yml | 2 +- src/main/resources/logback-spring.xml | 15 ++++++++----- .../ontotools/curation/IntegrationTest.java | 2 +- .../curation/MappingsControllerTest.java | 22 +++++++++---------- 10 files changed, 48 insertions(+), 33 deletions(-) diff --git a/scripts/config/prod/ontotools-curation-service-deployment.yaml b/scripts/config/prod/ontotools-curation-service-deployment.yaml index 840219d..c014f2b 100644 --- a/scripts/config/prod/ontotools-curation-service-deployment.yaml +++ b/scripts/config/prod/ontotools-curation-service-deployment.yaml @@ -44,7 +44,7 @@ spec: - name: LOG_FILE_NAME value: "ontotools-curation-service" - name: DB_USER - value: "" + value: "ontotoolscurator" - name: DB_PASSWORD valueFrom: secretKeyRef: diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java index e96cdae..bb31bcb 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -14,8 +14,6 @@ public class CurationConstants { public static final String API_MAPPINGS = "/mappings"; - public static final String API_MAPPING = "/mapping"; - public static final String API_EXPORT = "/export"; public static final String API_DOWNLOAD = "/download"; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java index b46ce8c..cea3d5e 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java @@ -76,13 +76,16 @@ public RestResponsePage getEntities(@PathVariable String projectId, @ List entityIds = entities.get().map(Entity::getId).collect(Collectors.toList()); Map mappings = mappingService.retrieveMappingsForEntities(entityIds); Map> mappingSuggestions = mappingSuggestionsService.retrieveMappingSuggestionsForEntities(entityIds); + log.info("Assembling results ..."); List entityDtos = new ArrayList<>(); + //auditEntryService.retrieveAuditEntries(entity.getId()) for (Entity entity : entities.getContent()) { entityDtos.add(EntityDtoAssembler.assemble(entity, sourceMap.get(entity.getSourceId()), mappings.get(entity.getId()), mappingSuggestions.get(entity.getId()), - auditEntryService.retrieveAuditEntries(entity.getId()))); + new ArrayList<>())); } + log.info("Returning results ..."); return new RestResponsePage<>(entityDtos, pageable, entities.getTotalElements()); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java index ac61637..609047b 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java @@ -54,12 +54,12 @@ public class MappingsController { private OntologyTermService ontologyTermService; /** - * GET /v1/projects/{projectId}/entities/{entityId}/mapping + * GET /v1/projects/{projectId}/mappings?entityId= */ - @GetMapping(value = "/{projectId}" + CurationConstants.API_ENTITIES + "/{entityId}" + CurationConstants.API_MAPPING, + @GetMapping(value = "/{projectId}" + CurationConstants.API_MAPPINGS, produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.OK) - public MappingDto getMapping(@PathVariable String projectId, @PathVariable String entityId, HttpServletRequest request) { + public MappingDto getMapping(@PathVariable String projectId, @RequestParam(value = CurationConstants.PARAM_ENTITY_ID) String entityId, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to retrieve mappings: {} | {}", user.getEmail(), projectId, entityId); projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR, ProjectRole.CONSUMER})); @@ -72,20 +72,19 @@ public MappingDto getMapping(@PathVariable String projectId, @PathVariable Strin } /** - * POST /v1/projects/{projectId}/entities/{entityId}/mapping + * POST /v1/projects/{projectId}/mappings */ - @PostMapping(value = "/{projectId}" + CurationConstants.API_ENTITIES + "/{entityId}" + CurationConstants.API_MAPPING, + @PostMapping(value = "/{projectId}" + CurationConstants.API_MAPPINGS, consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.CREATED) - public MappingDto createMapping(@PathVariable String projectId, @PathVariable String entityId, - @RequestBody @Valid MappingCreationDto mappingCreationDto, HttpServletRequest request) { + public MappingDto createMapping(@PathVariable String projectId, @RequestBody @Valid MappingCreationDto mappingCreationDto, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); - log.info("[{}] Request to create mapping: {} | {} | {}", user.getEmail(), projectId, entityId, mappingCreationDto.getOntologyTerms()); + log.info("[{}] Request to create mapping: {} | {} | {}", user.getEmail(), projectId, mappingCreationDto.getEntityId(), mappingCreationDto.getOntologyTerms()); projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); - Entity entity = entityService.retrieveEntity(entityId); + Entity entity = entityService.retrieveEntity(mappingCreationDto.getEntityId()); /** * Check if a mapping to this term already exists */ diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingCreationDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingCreationDto.java index b4eae20..e72698e 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingCreationDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/MappingCreationDto.java @@ -15,15 +15,26 @@ public final class MappingCreationDto implements Serializable { private static final long serialVersionUID = -2530149590750902127L; + @NotNull + @JsonProperty("entityId") + private final String entityId; + @NotNull @JsonProperty("ontologyTerms") private final List ontologyTerms; @JsonCreator - public MappingCreationDto(@JsonProperty("ontologyTerms") List ontologyTerms) { + public MappingCreationDto(@JsonProperty("entityId") String entityId, + @JsonProperty("ontologyTerms") List ontologyTerms) { + this.entityId = entityId; this.ontologyTerms = ontologyTerms; } + + public String getEntityId() { + return entityId; + } + public List getOntologyTerms() { return ontologyTerms; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java index 295df19..a5973f5 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java @@ -82,6 +82,7 @@ public Map> retrieveMappingSuggestionsForEntitie list.add(mappingSuggestion); result.put(mappingSuggestion.getEntityId(), list); } + log.info("Returning a result of size: {}", result.size()); return result; } diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 73fa737..35ef6d0 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -75,7 +75,7 @@ spring: on-profile: "prod" data: mongodb: - uri: mongos-hx-ontotoolscuratorprors071-01.ebi.ac.uk:27017,mongos-hl-ontotoolscuratorprors071-02.ebi.ac.uk:27017/admin?replicaSet=ontotoolscuratorprors071 + uri: mongos-hx-ontotoolscuratorprors071-01.ebi.ac.uk:27017,mongos-hl-ontotoolscuratorprors071-02.ebi.ac.uk:27017/admin ontotools-curation: db: ontotoolscurator diff --git a/src/main/resources/logback-spring.xml b/src/main/resources/logback-spring.xml index d025d73..3217c75 100644 --- a/src/main/resources/logback-spring.xml +++ b/src/main/resources/logback-spring.xml @@ -51,9 +51,14 @@ + + + + @@ -104,11 +109,11 @@ - + diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 0140773..adeed52 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -241,7 +241,7 @@ protected void createEntityTestData(String sourceId, String projectId, User user protected MappingDto retrieveMapping(String projectId) throws Exception { String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectId + - CurationConstants.API_ENTITIES + "/" + entity.getId() + CurationConstants.API_MAPPING; + CurationConstants.API_MAPPINGS + "?" + CurationConstants.PARAM_ENTITY_ID + "=" + entity.getId(); String response = mockMvc.perform(get(endpoint) .contentType(MediaType.APPLICATION_JSON) .header(IDPConstants.JWT_TOKEN, "token1")) diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java index b3ab152..ab7e403 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java @@ -55,7 +55,7 @@ public void setup() throws Exception { } /** - * GET /v1/projects/{projectId}/entities/{entityId}/mapping + * GET /v1/projects/{projectId}/mappings?entityId= */ @Test public void shouldGetMappings() throws Exception { @@ -65,17 +65,17 @@ public void shouldGetMappings() throws Exception { } /** - * POST /v1/projects/{projectId}/entities/{entityId}/mapping + * POST /v1/projects/{projectId}/mappings */ @Test public void shouldCreateMapping() throws Exception { OntologyTerm ontologyTerm = ontologyTermRepository.findByCurie("MONDO:0007037").get(); OntologyTermDto ontologyTermDto = OntologyTermDtoAssembler.assemble(ontologyTerm); - MappingCreationDto mappingCreationDto = new MappingCreationDto(Arrays.asList(new OntologyTermDto[]{ontologyTermDto})); + MappingCreationDto mappingCreationDto = new MappingCreationDto(entity.getId(), Arrays.asList(new OntologyTermDto[]{ontologyTermDto})); mappingRepository.deleteAll(); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + - CurationConstants.API_ENTITIES + "/" + entity.getId() + CurationConstants.API_MAPPING; + CurationConstants.API_MAPPINGS; String response = mockMvc.perform(post(endpoint) .contentType(MediaType.APPLICATION_JSON) .content(mapper.writeValueAsString(mappingCreationDto)) @@ -249,14 +249,13 @@ public void shouldDeleteMapping() throws Exception { } /** - * POST /v1/projects/{projectId}/entities/{entityId}/mapping + * POST /v1/projects/{projectId}/mappings */ @Test public void shouldNotCreateMapping() throws Exception { OntologyTermDto ontologyTermDto = new OntologyTermDto("MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", "Achondroplasia", TermStatus.NEEDS_IMPORT.name(), null, null); - MappingCreationDto mappingCreationDto = new MappingCreationDto(Arrays.asList(new OntologyTermDto[]{ontologyTermDto})); - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + - CurationConstants.API_ENTITIES + "/" + entity.getId() + CurationConstants.API_MAPPING; + MappingCreationDto mappingCreationDto = new MappingCreationDto(entity.getId(), Arrays.asList(new OntologyTermDto[]{ontologyTermDto})); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS; mockMvc.perform(post(endpoint) .contentType(MediaType.APPLICATION_JSON) .content(mapper.writeValueAsString(mappingCreationDto)) @@ -265,16 +264,15 @@ public void shouldNotCreateMapping() throws Exception { } /** - * POST /v1/projects/{projectId}/entities/{entityId}/mapping + * POST /v1/projects/{projectId}/mappings */ @Test public void shouldNotCreateMappingAsConsumer() throws Exception { OntologyTermDto ontologyTermDto = new OntologyTermDto("MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", "Achondroplasia", TermStatus.NEEDS_IMPORT.name(), null, null); - MappingCreationDto mappingCreationDto = new MappingCreationDto(Arrays.asList(new OntologyTermDto[]{ontologyTermDto})); + MappingCreationDto mappingCreationDto = new MappingCreationDto(entity.getId(), Arrays.asList(new OntologyTermDto[]{ontologyTermDto})); userService.addUserToProject(super.user2, project.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + - CurationConstants.API_ENTITIES + "/" + entity.getId() + CurationConstants.API_MAPPING; + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS; mockMvc.perform(post(endpoint) .contentType(MediaType.APPLICATION_JSON) .content(mapper.writeValueAsString(mappingCreationDto)) From 9615366c530fc01e3ff0d231fa297b66e76b6abf Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Sat, 20 Mar 2021 08:10:31 +0800 Subject: [PATCH 52/72] Added audit trail controller. --- .idea/compiler.xml | 22 +++ .idea/encodings.xml | 7 + .idea/inspectionProfiles/Project_Default.xml | 9 ++ ...__ch_qos_logback_logback_classic_1_2_3.xml | 13 ++ ...ven__ch_qos_logback_logback_core_1_2_3.xml | 13 ++ ...ackson_core_jackson_annotations_2_11_4.xml | 13 ++ ...erxml_jackson_core_jackson_core_2_11_4.xml | 13 ++ ...l_jackson_core_jackson_databind_2_11_4.xml | 13 ++ ..._datatype_jackson_datatype_jdk8_2_11_4.xml | 13 ++ ...atatype_jackson_datatype_jsr310_2_11_4.xml | 13 ++ ..._jackson_module_parameter_names_2_11_4.xml | 13 ++ ...un_activation_jakarta_activation_1_2_2.xml | 13 ++ ...Maven__com_sun_mail_jakarta_mail_1_6_5.xml | 13 ++ ...aven__commons_codec_commons_codec_1_15.xml | 13 ++ ...mons_fileupload_commons_fileupload_1_4.xml | 13 ++ .../Maven__commons_io_commons_io_2_8_0.xml | 13 ++ .../Maven__io_jsonwebtoken_jjwt_0_9_1.xml | 13 ++ ...n__io_micrometer_micrometer_core_1_6_3.xml | 13 ++ ...nnotation_jakarta_annotation_api_1_3_5.xml | 13 ++ ...arta_servlet_jakarta_servlet_api_4_0_4.xml | 13 ++ ..._websocket_jakarta_websocket_api_1_1_2.xml | 13 ++ ..._javax_servlet_javax_servlet_api_4_0_1.xml | 13 ++ ..._validation_validation_api_2_0_1_Final.xml | 13 ++ .../Maven__joda_time_joda_time_2_10_9.xml | 13 ++ .idea/libraries/Maven__junit_junit_4_13_1.xml | 13 ++ ...aven__net_bytebuddy_byte_buddy_1_10_19.xml | 13 ++ ...net_bytebuddy_byte_buddy_agent_1_10_19.xml | 13 ++ ...no_equalsverifier_equalsverifier_3_5_2.xml | 13 ++ .idea/libraries/Maven__ognl_ognl_3_2_18.xml | 13 ++ ...pache_commons_commons_collections4_4_4.xml | 13 ++ ..._org_apache_commons_commons_lang3_3_11.xml | 13 ++ ...pache_httpcomponents_httpclient_4_5_13.xml | 13 ++ ..._apache_httpcomponents_httpcore_4_4_14.xml | 13 ++ ..._apache_logging_log4j_log4j_api_2_13_3.xml | 13 ++ ...he_logging_log4j_log4j_to_slf4j_2_13_3.xml | 13 ++ ...rg_attoparser_attoparser_2_0_5_RELEASE.xml | 13 ++ ...tty_jetty_annotations_9_4_35_v20201120.xml | 13 ++ ...se_jetty_jetty_client_9_4_35_v20201120.xml | 13 ++ ...ty_jetty_continuation_9_4_35_v20201120.xml | 13 ++ ...ipse_jetty_jetty_http_9_4_35_v20201120.xml | 13 ++ ...clipse_jetty_jetty_io_9_4_35_v20201120.xml | 13 ++ ...ipse_jetty_jetty_plus_9_4_35_v20201120.xml | 13 ++ ..._jetty_jetty_security_9_4_35_v20201120.xml | 13 ++ ...se_jetty_jetty_server_9_4_35_v20201120.xml | 13 ++ ...e_jetty_jetty_servlet_9_4_35_v20201120.xml | 13 ++ ..._jetty_jetty_servlets_9_4_35_v20201120.xml | 13 ++ ...ipse_jetty_jetty_util_9_4_35_v20201120.xml | 13 ++ ...jetty_jetty_util_ajax_9_4_35_v20201120.xml | 13 ++ ...se_jetty_jetty_webapp_9_4_35_v20201120.xml | 13 ++ ...lipse_jetty_jetty_xml_9_4_35_v20201120.xml | 13 ++ ...websocket_client_impl_9_4_35_v20201120.xml | 13 ++ ...websocket_server_impl_9_4_35_v20201120.xml | 13 ++ ...bsocket_websocket_api_9_4_35_v20201120.xml | 13 ++ ...cket_websocket_client_9_4_35_v20201120.xml | 13 ++ ...cket_websocket_common_9_4_35_v20201120.xml | 13 ++ ...cket_websocket_server_9_4_35_v20201120.xml | 13 ++ ...ket_websocket_servlet_9_4_35_v20201120.xml | 13 ++ .../Maven__org_glassfish_jakarta_el_3_0_3.xml | 13 ++ .../Maven__org_hamcrest_hamcrest_core_1_3.xml | 13 ++ ...__org_hdrhistogram_HdrHistogram_2_1_12.xml | 13 ++ ...ven__org_javassist_javassist_3_24_1_GA.xml | 13 ++ ...n__org_latencyutils_LatencyUtils_2_0_3.xml | 13 ++ .../Maven__org_mockito_mockito_core_3_7_7.xml | 13 ++ .../Maven__org_mongodb_bson_4_1_1.xml | 13 ++ ..._org_mongodb_mongodb_driver_core_4_1_1.xml | 13 ++ ..._org_mongodb_mongodb_driver_sync_4_1_1.xml | 13 ++ .../Maven__org_objenesis_objenesis_3_1.xml | 13 ++ .../libraries/Maven__org_ow2_asm_asm_9_0.xml | 13 ++ .../Maven__org_ow2_asm_asm_analysis_9_0.xml | 13 ++ .../Maven__org_ow2_asm_asm_commons_9_0.xml | 13 ++ .../Maven__org_ow2_asm_asm_tree_9_0.xml | 13 ++ ...aven__org_projectlombok_lombok_1_18_18.xml | 13 ++ .../Maven__org_slf4j_jul_to_slf4j_1_7_30.xml | 13 ++ .../Maven__org_slf4j_slf4j_api_1_7_30.xml | 13 ++ ...springframework_boot_spring_boot_2_4_2.xml | 13 ++ ...mework_boot_spring_boot_actuator_2_4_2.xml | 13 ++ ...ring_boot_actuator_autoconfigure_2_4_2.xml | 13 ++ ...k_boot_spring_boot_autoconfigure_2_4_2.xml | 13 ++ ...amework_boot_spring_boot_starter_2_4_2.xml | 13 ++ ...oot_spring_boot_starter_actuator_2_4_2.xml | 13 ++ ...spring_boot_starter_data_mongodb_2_4_2.xml | 13 ++ ...k_boot_spring_boot_starter_jetty_2_4_2.xml | 13 ++ ...rk_boot_spring_boot_starter_json_2_4_2.xml | 13 ++ ...boot_spring_boot_starter_logging_2_4_2.xml | 13 ++ ...rk_boot_spring_boot_starter_mail_2_4_2.xml | 13 ++ ...ot_spring_boot_starter_thymeleaf_2_4_2.xml | 13 ++ ...ork_boot_spring_boot_starter_web_2_4_2.xml | 13 ++ ...gframework_boot_spring_boot_test_2_4_2.xml | 13 ++ ...amework_data_spring_data_commons_2_4_3.xml | 13 ++ ...amework_data_spring_data_mongodb_3_1_3.xml | 13 ++ ...__org_springframework_spring_aop_5_3_3.xml | 13 ++ ...org_springframework_spring_beans_5_3_3.xml | 13 ++ ...g_springframework_spring_context_5_3_3.xml | 13 ++ ...framework_spring_context_support_5_3_3.xml | 13 ++ ..._org_springframework_spring_core_5_3_3.xml | 13 ++ ...pringframework_spring_expression_5_3_3.xml | 13 ++ ...__org_springframework_spring_jcl_5_3_3.xml | 13 ++ ..._org_springframework_spring_test_5_3_3.xml | 13 ++ ...n__org_springframework_spring_tx_5_3_3.xml | 13 ++ ...__org_springframework_spring_web_5_3_3.xml | 13 ++ ...rg_springframework_spring_webmvc_5_3_3.xml | 13 ++ ...ymeleaf_extras_java8time_3_0_4_RELEASE.xml | 13 ++ ...org_thymeleaf_thymeleaf_3_0_12_RELEASE.xml | 13 ++ ...eleaf_thymeleaf_spring5_3_0_12_RELEASE.xml | 13 ++ ..._org_unbescape_unbescape_1_1_6_RELEASE.xml | 13 ++ .../Maven__org_yaml_snakeyaml_1_27.xml | 13 ++ .idea/misc.xml | 14 ++ .idea/modules.xml | 8 ++ .idea/ontotools-curator.iml | 136 ++++++++++++++++++ .idea/uiDesigner.xml | 124 ++++++++++++++++ .idea/vcs.xml | 6 + .../curation/constants/CurationConstants.java | 2 + .../rest/controller/AuditTrailController.java | 62 ++++++++ .../rest/controller/EntityController.java | 1 - .../curation/AuditTrailControllerTest.java | 70 +++++++++ 115 files changed, 1799 insertions(+), 1 deletion(-) create mode 100644 .idea/compiler.xml create mode 100644 .idea/encodings.xml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/libraries/Maven__ch_qos_logback_logback_classic_1_2_3.xml create mode 100644 .idea/libraries/Maven__ch_qos_logback_logback_core_1_2_3.xml create mode 100644 .idea/libraries/Maven__com_fasterxml_jackson_core_jackson_annotations_2_11_4.xml create mode 100644 .idea/libraries/Maven__com_fasterxml_jackson_core_jackson_core_2_11_4.xml create mode 100644 .idea/libraries/Maven__com_fasterxml_jackson_core_jackson_databind_2_11_4.xml create mode 100644 .idea/libraries/Maven__com_fasterxml_jackson_datatype_jackson_datatype_jdk8_2_11_4.xml create mode 100644 .idea/libraries/Maven__com_fasterxml_jackson_datatype_jackson_datatype_jsr310_2_11_4.xml create mode 100644 .idea/libraries/Maven__com_fasterxml_jackson_module_jackson_module_parameter_names_2_11_4.xml create mode 100644 .idea/libraries/Maven__com_sun_activation_jakarta_activation_1_2_2.xml create mode 100644 .idea/libraries/Maven__com_sun_mail_jakarta_mail_1_6_5.xml create mode 100644 .idea/libraries/Maven__commons_codec_commons_codec_1_15.xml create mode 100644 .idea/libraries/Maven__commons_fileupload_commons_fileupload_1_4.xml create mode 100644 .idea/libraries/Maven__commons_io_commons_io_2_8_0.xml create mode 100644 .idea/libraries/Maven__io_jsonwebtoken_jjwt_0_9_1.xml create mode 100644 .idea/libraries/Maven__io_micrometer_micrometer_core_1_6_3.xml create mode 100644 .idea/libraries/Maven__jakarta_annotation_jakarta_annotation_api_1_3_5.xml create mode 100644 .idea/libraries/Maven__jakarta_servlet_jakarta_servlet_api_4_0_4.xml create mode 100644 .idea/libraries/Maven__jakarta_websocket_jakarta_websocket_api_1_1_2.xml create mode 100644 .idea/libraries/Maven__javax_servlet_javax_servlet_api_4_0_1.xml create mode 100644 .idea/libraries/Maven__javax_validation_validation_api_2_0_1_Final.xml create mode 100644 .idea/libraries/Maven__joda_time_joda_time_2_10_9.xml create mode 100644 .idea/libraries/Maven__junit_junit_4_13_1.xml create mode 100644 .idea/libraries/Maven__net_bytebuddy_byte_buddy_1_10_19.xml create mode 100644 .idea/libraries/Maven__net_bytebuddy_byte_buddy_agent_1_10_19.xml create mode 100644 .idea/libraries/Maven__nl_jqno_equalsverifier_equalsverifier_3_5_2.xml create mode 100644 .idea/libraries/Maven__ognl_ognl_3_2_18.xml create mode 100644 .idea/libraries/Maven__org_apache_commons_commons_collections4_4_4.xml create mode 100644 .idea/libraries/Maven__org_apache_commons_commons_lang3_3_11.xml create mode 100644 .idea/libraries/Maven__org_apache_httpcomponents_httpclient_4_5_13.xml create mode 100644 .idea/libraries/Maven__org_apache_httpcomponents_httpcore_4_4_14.xml create mode 100644 .idea/libraries/Maven__org_apache_logging_log4j_log4j_api_2_13_3.xml create mode 100644 .idea/libraries/Maven__org_apache_logging_log4j_log4j_to_slf4j_2_13_3.xml create mode 100644 .idea/libraries/Maven__org_attoparser_attoparser_2_0_5_RELEASE.xml create mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_annotations_9_4_35_v20201120.xml create mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_client_9_4_35_v20201120.xml create mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_continuation_9_4_35_v20201120.xml create mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_http_9_4_35_v20201120.xml create mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_io_9_4_35_v20201120.xml create mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_plus_9_4_35_v20201120.xml create mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_security_9_4_35_v20201120.xml create mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_server_9_4_35_v20201120.xml create mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_servlet_9_4_35_v20201120.xml create mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_servlets_9_4_35_v20201120.xml create mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_util_9_4_35_v20201120.xml create mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_util_ajax_9_4_35_v20201120.xml create mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_webapp_9_4_35_v20201120.xml create mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_xml_9_4_35_v20201120.xml create mode 100644 .idea/libraries/Maven__org_eclipse_jetty_websocket_javax_websocket_client_impl_9_4_35_v20201120.xml create mode 100644 .idea/libraries/Maven__org_eclipse_jetty_websocket_javax_websocket_server_impl_9_4_35_v20201120.xml create mode 100644 .idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_api_9_4_35_v20201120.xml create mode 100644 .idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_client_9_4_35_v20201120.xml create mode 100644 .idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_common_9_4_35_v20201120.xml create mode 100644 .idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_server_9_4_35_v20201120.xml create mode 100644 .idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_servlet_9_4_35_v20201120.xml create mode 100644 .idea/libraries/Maven__org_glassfish_jakarta_el_3_0_3.xml create mode 100644 .idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml create mode 100644 .idea/libraries/Maven__org_hdrhistogram_HdrHistogram_2_1_12.xml create mode 100644 .idea/libraries/Maven__org_javassist_javassist_3_24_1_GA.xml create mode 100644 .idea/libraries/Maven__org_latencyutils_LatencyUtils_2_0_3.xml create mode 100644 .idea/libraries/Maven__org_mockito_mockito_core_3_7_7.xml create mode 100644 .idea/libraries/Maven__org_mongodb_bson_4_1_1.xml create mode 100644 .idea/libraries/Maven__org_mongodb_mongodb_driver_core_4_1_1.xml create mode 100644 .idea/libraries/Maven__org_mongodb_mongodb_driver_sync_4_1_1.xml create mode 100644 .idea/libraries/Maven__org_objenesis_objenesis_3_1.xml create mode 100644 .idea/libraries/Maven__org_ow2_asm_asm_9_0.xml create mode 100644 .idea/libraries/Maven__org_ow2_asm_asm_analysis_9_0.xml create mode 100644 .idea/libraries/Maven__org_ow2_asm_asm_commons_9_0.xml create mode 100644 .idea/libraries/Maven__org_ow2_asm_asm_tree_9_0.xml create mode 100644 .idea/libraries/Maven__org_projectlombok_lombok_1_18_18.xml create mode 100644 .idea/libraries/Maven__org_slf4j_jul_to_slf4j_1_7_30.xml create mode 100644 .idea/libraries/Maven__org_slf4j_slf4j_api_1_7_30.xml create mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_2_4_2.xml create mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_actuator_2_4_2.xml create mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_actuator_autoconfigure_2_4_2.xml create mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_autoconfigure_2_4_2.xml create mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_starter_2_4_2.xml create mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_starter_actuator_2_4_2.xml create mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_starter_data_mongodb_2_4_2.xml create mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_starter_jetty_2_4_2.xml create mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_starter_json_2_4_2.xml create mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_starter_logging_2_4_2.xml create mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_starter_mail_2_4_2.xml create mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_starter_thymeleaf_2_4_2.xml create mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_starter_web_2_4_2.xml create mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_test_2_4_2.xml create mode 100644 .idea/libraries/Maven__org_springframework_data_spring_data_commons_2_4_3.xml create mode 100644 .idea/libraries/Maven__org_springframework_data_spring_data_mongodb_3_1_3.xml create mode 100644 .idea/libraries/Maven__org_springframework_spring_aop_5_3_3.xml create mode 100644 .idea/libraries/Maven__org_springframework_spring_beans_5_3_3.xml create mode 100644 .idea/libraries/Maven__org_springframework_spring_context_5_3_3.xml create mode 100644 .idea/libraries/Maven__org_springframework_spring_context_support_5_3_3.xml create mode 100644 .idea/libraries/Maven__org_springframework_spring_core_5_3_3.xml create mode 100644 .idea/libraries/Maven__org_springframework_spring_expression_5_3_3.xml create mode 100644 .idea/libraries/Maven__org_springframework_spring_jcl_5_3_3.xml create mode 100644 .idea/libraries/Maven__org_springframework_spring_test_5_3_3.xml create mode 100644 .idea/libraries/Maven__org_springframework_spring_tx_5_3_3.xml create mode 100644 .idea/libraries/Maven__org_springframework_spring_web_5_3_3.xml create mode 100644 .idea/libraries/Maven__org_springframework_spring_webmvc_5_3_3.xml create mode 100644 .idea/libraries/Maven__org_thymeleaf_extras_thymeleaf_extras_java8time_3_0_4_RELEASE.xml create mode 100644 .idea/libraries/Maven__org_thymeleaf_thymeleaf_3_0_12_RELEASE.xml create mode 100644 .idea/libraries/Maven__org_thymeleaf_thymeleaf_spring5_3_0_12_RELEASE.xml create mode 100644 .idea/libraries/Maven__org_unbescape_unbescape_1_1_6_RELEASE.xml create mode 100644 .idea/libraries/Maven__org_yaml_snakeyaml_1_27.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/ontotools-curator.iml create mode 100644 .idea/uiDesigner.xml create mode 100644 .idea/vcs.xml create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/AuditTrailController.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/AuditTrailControllerTest.java diff --git a/.idea/compiler.xml b/.idea/compiler.xml new file mode 100644 index 0000000..73590d9 --- /dev/null +++ b/.idea/compiler.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..fade66b --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..106ba30 --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,9 @@ + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__ch_qos_logback_logback_classic_1_2_3.xml b/.idea/libraries/Maven__ch_qos_logback_logback_classic_1_2_3.xml new file mode 100644 index 0000000..6fec8f4 --- /dev/null +++ b/.idea/libraries/Maven__ch_qos_logback_logback_classic_1_2_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__ch_qos_logback_logback_core_1_2_3.xml b/.idea/libraries/Maven__ch_qos_logback_logback_core_1_2_3.xml new file mode 100644 index 0000000..9eb8596 --- /dev/null +++ b/.idea/libraries/Maven__ch_qos_logback_logback_core_1_2_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_annotations_2_11_4.xml b/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_annotations_2_11_4.xml new file mode 100644 index 0000000..b269864 --- /dev/null +++ b/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_annotations_2_11_4.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_core_2_11_4.xml b/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_core_2_11_4.xml new file mode 100644 index 0000000..5470f15 --- /dev/null +++ b/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_core_2_11_4.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_databind_2_11_4.xml b/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_databind_2_11_4.xml new file mode 100644 index 0000000..247505a --- /dev/null +++ b/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_databind_2_11_4.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__com_fasterxml_jackson_datatype_jackson_datatype_jdk8_2_11_4.xml b/.idea/libraries/Maven__com_fasterxml_jackson_datatype_jackson_datatype_jdk8_2_11_4.xml new file mode 100644 index 0000000..5e7e738 --- /dev/null +++ b/.idea/libraries/Maven__com_fasterxml_jackson_datatype_jackson_datatype_jdk8_2_11_4.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__com_fasterxml_jackson_datatype_jackson_datatype_jsr310_2_11_4.xml b/.idea/libraries/Maven__com_fasterxml_jackson_datatype_jackson_datatype_jsr310_2_11_4.xml new file mode 100644 index 0000000..acb88ad --- /dev/null +++ b/.idea/libraries/Maven__com_fasterxml_jackson_datatype_jackson_datatype_jsr310_2_11_4.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__com_fasterxml_jackson_module_jackson_module_parameter_names_2_11_4.xml b/.idea/libraries/Maven__com_fasterxml_jackson_module_jackson_module_parameter_names_2_11_4.xml new file mode 100644 index 0000000..8c681f4 --- /dev/null +++ b/.idea/libraries/Maven__com_fasterxml_jackson_module_jackson_module_parameter_names_2_11_4.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__com_sun_activation_jakarta_activation_1_2_2.xml b/.idea/libraries/Maven__com_sun_activation_jakarta_activation_1_2_2.xml new file mode 100644 index 0000000..fea99f0 --- /dev/null +++ b/.idea/libraries/Maven__com_sun_activation_jakarta_activation_1_2_2.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__com_sun_mail_jakarta_mail_1_6_5.xml b/.idea/libraries/Maven__com_sun_mail_jakarta_mail_1_6_5.xml new file mode 100644 index 0000000..a86e176 --- /dev/null +++ b/.idea/libraries/Maven__com_sun_mail_jakarta_mail_1_6_5.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__commons_codec_commons_codec_1_15.xml b/.idea/libraries/Maven__commons_codec_commons_codec_1_15.xml new file mode 100644 index 0000000..c88c2b7 --- /dev/null +++ b/.idea/libraries/Maven__commons_codec_commons_codec_1_15.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__commons_fileupload_commons_fileupload_1_4.xml b/.idea/libraries/Maven__commons_fileupload_commons_fileupload_1_4.xml new file mode 100644 index 0000000..3b9dcc0 --- /dev/null +++ b/.idea/libraries/Maven__commons_fileupload_commons_fileupload_1_4.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__commons_io_commons_io_2_8_0.xml b/.idea/libraries/Maven__commons_io_commons_io_2_8_0.xml new file mode 100644 index 0000000..06f5f24 --- /dev/null +++ b/.idea/libraries/Maven__commons_io_commons_io_2_8_0.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__io_jsonwebtoken_jjwt_0_9_1.xml b/.idea/libraries/Maven__io_jsonwebtoken_jjwt_0_9_1.xml new file mode 100644 index 0000000..f25b99b --- /dev/null +++ b/.idea/libraries/Maven__io_jsonwebtoken_jjwt_0_9_1.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__io_micrometer_micrometer_core_1_6_3.xml b/.idea/libraries/Maven__io_micrometer_micrometer_core_1_6_3.xml new file mode 100644 index 0000000..da3a96c --- /dev/null +++ b/.idea/libraries/Maven__io_micrometer_micrometer_core_1_6_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__jakarta_annotation_jakarta_annotation_api_1_3_5.xml b/.idea/libraries/Maven__jakarta_annotation_jakarta_annotation_api_1_3_5.xml new file mode 100644 index 0000000..cba9dd2 --- /dev/null +++ b/.idea/libraries/Maven__jakarta_annotation_jakarta_annotation_api_1_3_5.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__jakarta_servlet_jakarta_servlet_api_4_0_4.xml b/.idea/libraries/Maven__jakarta_servlet_jakarta_servlet_api_4_0_4.xml new file mode 100644 index 0000000..2ddfaae --- /dev/null +++ b/.idea/libraries/Maven__jakarta_servlet_jakarta_servlet_api_4_0_4.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__jakarta_websocket_jakarta_websocket_api_1_1_2.xml b/.idea/libraries/Maven__jakarta_websocket_jakarta_websocket_api_1_1_2.xml new file mode 100644 index 0000000..5fe7acc --- /dev/null +++ b/.idea/libraries/Maven__jakarta_websocket_jakarta_websocket_api_1_1_2.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__javax_servlet_javax_servlet_api_4_0_1.xml b/.idea/libraries/Maven__javax_servlet_javax_servlet_api_4_0_1.xml new file mode 100644 index 0000000..d05c196 --- /dev/null +++ b/.idea/libraries/Maven__javax_servlet_javax_servlet_api_4_0_1.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__javax_validation_validation_api_2_0_1_Final.xml b/.idea/libraries/Maven__javax_validation_validation_api_2_0_1_Final.xml new file mode 100644 index 0000000..6978c0b --- /dev/null +++ b/.idea/libraries/Maven__javax_validation_validation_api_2_0_1_Final.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__joda_time_joda_time_2_10_9.xml b/.idea/libraries/Maven__joda_time_joda_time_2_10_9.xml new file mode 100644 index 0000000..a937c00 --- /dev/null +++ b/.idea/libraries/Maven__joda_time_joda_time_2_10_9.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__junit_junit_4_13_1.xml b/.idea/libraries/Maven__junit_junit_4_13_1.xml new file mode 100644 index 0000000..9fa24fc --- /dev/null +++ b/.idea/libraries/Maven__junit_junit_4_13_1.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__net_bytebuddy_byte_buddy_1_10_19.xml b/.idea/libraries/Maven__net_bytebuddy_byte_buddy_1_10_19.xml new file mode 100644 index 0000000..5d5bc50 --- /dev/null +++ b/.idea/libraries/Maven__net_bytebuddy_byte_buddy_1_10_19.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__net_bytebuddy_byte_buddy_agent_1_10_19.xml b/.idea/libraries/Maven__net_bytebuddy_byte_buddy_agent_1_10_19.xml new file mode 100644 index 0000000..6fee14c --- /dev/null +++ b/.idea/libraries/Maven__net_bytebuddy_byte_buddy_agent_1_10_19.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__nl_jqno_equalsverifier_equalsverifier_3_5_2.xml b/.idea/libraries/Maven__nl_jqno_equalsverifier_equalsverifier_3_5_2.xml new file mode 100644 index 0000000..a870232 --- /dev/null +++ b/.idea/libraries/Maven__nl_jqno_equalsverifier_equalsverifier_3_5_2.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__ognl_ognl_3_2_18.xml b/.idea/libraries/Maven__ognl_ognl_3_2_18.xml new file mode 100644 index 0000000..4eddba7 --- /dev/null +++ b/.idea/libraries/Maven__ognl_ognl_3_2_18.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_apache_commons_commons_collections4_4_4.xml b/.idea/libraries/Maven__org_apache_commons_commons_collections4_4_4.xml new file mode 100644 index 0000000..5871c95 --- /dev/null +++ b/.idea/libraries/Maven__org_apache_commons_commons_collections4_4_4.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_apache_commons_commons_lang3_3_11.xml b/.idea/libraries/Maven__org_apache_commons_commons_lang3_3_11.xml new file mode 100644 index 0000000..7a30e6e --- /dev/null +++ b/.idea/libraries/Maven__org_apache_commons_commons_lang3_3_11.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_apache_httpcomponents_httpclient_4_5_13.xml b/.idea/libraries/Maven__org_apache_httpcomponents_httpclient_4_5_13.xml new file mode 100644 index 0000000..63bee0e --- /dev/null +++ b/.idea/libraries/Maven__org_apache_httpcomponents_httpclient_4_5_13.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_apache_httpcomponents_httpcore_4_4_14.xml b/.idea/libraries/Maven__org_apache_httpcomponents_httpcore_4_4_14.xml new file mode 100644 index 0000000..427f319 --- /dev/null +++ b/.idea/libraries/Maven__org_apache_httpcomponents_httpcore_4_4_14.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_apache_logging_log4j_log4j_api_2_13_3.xml b/.idea/libraries/Maven__org_apache_logging_log4j_log4j_api_2_13_3.xml new file mode 100644 index 0000000..8ad4996 --- /dev/null +++ b/.idea/libraries/Maven__org_apache_logging_log4j_log4j_api_2_13_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_apache_logging_log4j_log4j_to_slf4j_2_13_3.xml b/.idea/libraries/Maven__org_apache_logging_log4j_log4j_to_slf4j_2_13_3.xml new file mode 100644 index 0000000..57e6ac4 --- /dev/null +++ b/.idea/libraries/Maven__org_apache_logging_log4j_log4j_to_slf4j_2_13_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_attoparser_attoparser_2_0_5_RELEASE.xml b/.idea/libraries/Maven__org_attoparser_attoparser_2_0_5_RELEASE.xml new file mode 100644 index 0000000..5bad7db --- /dev/null +++ b/.idea/libraries/Maven__org_attoparser_attoparser_2_0_5_RELEASE.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_annotations_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_annotations_9_4_35_v20201120.xml new file mode 100644 index 0000000..6ba9a0f --- /dev/null +++ b/.idea/libraries/Maven__org_eclipse_jetty_jetty_annotations_9_4_35_v20201120.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_client_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_client_9_4_35_v20201120.xml new file mode 100644 index 0000000..8159c58 --- /dev/null +++ b/.idea/libraries/Maven__org_eclipse_jetty_jetty_client_9_4_35_v20201120.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_continuation_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_continuation_9_4_35_v20201120.xml new file mode 100644 index 0000000..c2e957a --- /dev/null +++ b/.idea/libraries/Maven__org_eclipse_jetty_jetty_continuation_9_4_35_v20201120.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_http_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_http_9_4_35_v20201120.xml new file mode 100644 index 0000000..924611a --- /dev/null +++ b/.idea/libraries/Maven__org_eclipse_jetty_jetty_http_9_4_35_v20201120.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_io_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_io_9_4_35_v20201120.xml new file mode 100644 index 0000000..d2358b9 --- /dev/null +++ b/.idea/libraries/Maven__org_eclipse_jetty_jetty_io_9_4_35_v20201120.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_plus_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_plus_9_4_35_v20201120.xml new file mode 100644 index 0000000..a90f1cd --- /dev/null +++ b/.idea/libraries/Maven__org_eclipse_jetty_jetty_plus_9_4_35_v20201120.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_security_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_security_9_4_35_v20201120.xml new file mode 100644 index 0000000..cdca08f --- /dev/null +++ b/.idea/libraries/Maven__org_eclipse_jetty_jetty_security_9_4_35_v20201120.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_server_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_server_9_4_35_v20201120.xml new file mode 100644 index 0000000..e4c60e1 --- /dev/null +++ b/.idea/libraries/Maven__org_eclipse_jetty_jetty_server_9_4_35_v20201120.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_servlet_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_servlet_9_4_35_v20201120.xml new file mode 100644 index 0000000..23dda98 --- /dev/null +++ b/.idea/libraries/Maven__org_eclipse_jetty_jetty_servlet_9_4_35_v20201120.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_servlets_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_servlets_9_4_35_v20201120.xml new file mode 100644 index 0000000..923a674 --- /dev/null +++ b/.idea/libraries/Maven__org_eclipse_jetty_jetty_servlets_9_4_35_v20201120.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_util_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_util_9_4_35_v20201120.xml new file mode 100644 index 0000000..11f3cd2 --- /dev/null +++ b/.idea/libraries/Maven__org_eclipse_jetty_jetty_util_9_4_35_v20201120.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_util_ajax_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_util_ajax_9_4_35_v20201120.xml new file mode 100644 index 0000000..9fe150c --- /dev/null +++ b/.idea/libraries/Maven__org_eclipse_jetty_jetty_util_ajax_9_4_35_v20201120.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_webapp_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_webapp_9_4_35_v20201120.xml new file mode 100644 index 0000000..0208984 --- /dev/null +++ b/.idea/libraries/Maven__org_eclipse_jetty_jetty_webapp_9_4_35_v20201120.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_xml_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_xml_9_4_35_v20201120.xml new file mode 100644 index 0000000..5771d0c --- /dev/null +++ b/.idea/libraries/Maven__org_eclipse_jetty_jetty_xml_9_4_35_v20201120.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_websocket_javax_websocket_client_impl_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_websocket_javax_websocket_client_impl_9_4_35_v20201120.xml new file mode 100644 index 0000000..2c41250 --- /dev/null +++ b/.idea/libraries/Maven__org_eclipse_jetty_websocket_javax_websocket_client_impl_9_4_35_v20201120.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_websocket_javax_websocket_server_impl_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_websocket_javax_websocket_server_impl_9_4_35_v20201120.xml new file mode 100644 index 0000000..bbe4307 --- /dev/null +++ b/.idea/libraries/Maven__org_eclipse_jetty_websocket_javax_websocket_server_impl_9_4_35_v20201120.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_api_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_api_9_4_35_v20201120.xml new file mode 100644 index 0000000..41a48be --- /dev/null +++ b/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_api_9_4_35_v20201120.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_client_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_client_9_4_35_v20201120.xml new file mode 100644 index 0000000..4df98dc --- /dev/null +++ b/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_client_9_4_35_v20201120.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_common_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_common_9_4_35_v20201120.xml new file mode 100644 index 0000000..019fb77 --- /dev/null +++ b/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_common_9_4_35_v20201120.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_server_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_server_9_4_35_v20201120.xml new file mode 100644 index 0000000..ded9645 --- /dev/null +++ b/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_server_9_4_35_v20201120.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_servlet_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_servlet_9_4_35_v20201120.xml new file mode 100644 index 0000000..b4bdc6a --- /dev/null +++ b/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_servlet_9_4_35_v20201120.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_glassfish_jakarta_el_3_0_3.xml b/.idea/libraries/Maven__org_glassfish_jakarta_el_3_0_3.xml new file mode 100644 index 0000000..ae5020d --- /dev/null +++ b/.idea/libraries/Maven__org_glassfish_jakarta_el_3_0_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml b/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml new file mode 100644 index 0000000..f58bbc1 --- /dev/null +++ b/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_hdrhistogram_HdrHistogram_2_1_12.xml b/.idea/libraries/Maven__org_hdrhistogram_HdrHistogram_2_1_12.xml new file mode 100644 index 0000000..6908885 --- /dev/null +++ b/.idea/libraries/Maven__org_hdrhistogram_HdrHistogram_2_1_12.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_javassist_javassist_3_24_1_GA.xml b/.idea/libraries/Maven__org_javassist_javassist_3_24_1_GA.xml new file mode 100644 index 0000000..8a2ccb0 --- /dev/null +++ b/.idea/libraries/Maven__org_javassist_javassist_3_24_1_GA.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_latencyutils_LatencyUtils_2_0_3.xml b/.idea/libraries/Maven__org_latencyutils_LatencyUtils_2_0_3.xml new file mode 100644 index 0000000..bf68169 --- /dev/null +++ b/.idea/libraries/Maven__org_latencyutils_LatencyUtils_2_0_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_mockito_mockito_core_3_7_7.xml b/.idea/libraries/Maven__org_mockito_mockito_core_3_7_7.xml new file mode 100644 index 0000000..d6a8331 --- /dev/null +++ b/.idea/libraries/Maven__org_mockito_mockito_core_3_7_7.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_mongodb_bson_4_1_1.xml b/.idea/libraries/Maven__org_mongodb_bson_4_1_1.xml new file mode 100644 index 0000000..da42255 --- /dev/null +++ b/.idea/libraries/Maven__org_mongodb_bson_4_1_1.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_mongodb_mongodb_driver_core_4_1_1.xml b/.idea/libraries/Maven__org_mongodb_mongodb_driver_core_4_1_1.xml new file mode 100644 index 0000000..ff92b86 --- /dev/null +++ b/.idea/libraries/Maven__org_mongodb_mongodb_driver_core_4_1_1.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_mongodb_mongodb_driver_sync_4_1_1.xml b/.idea/libraries/Maven__org_mongodb_mongodb_driver_sync_4_1_1.xml new file mode 100644 index 0000000..5fb6d25 --- /dev/null +++ b/.idea/libraries/Maven__org_mongodb_mongodb_driver_sync_4_1_1.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_objenesis_objenesis_3_1.xml b/.idea/libraries/Maven__org_objenesis_objenesis_3_1.xml new file mode 100644 index 0000000..ae73399 --- /dev/null +++ b/.idea/libraries/Maven__org_objenesis_objenesis_3_1.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_ow2_asm_asm_9_0.xml b/.idea/libraries/Maven__org_ow2_asm_asm_9_0.xml new file mode 100644 index 0000000..3055eb6 --- /dev/null +++ b/.idea/libraries/Maven__org_ow2_asm_asm_9_0.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_ow2_asm_asm_analysis_9_0.xml b/.idea/libraries/Maven__org_ow2_asm_asm_analysis_9_0.xml new file mode 100644 index 0000000..8f1cafa --- /dev/null +++ b/.idea/libraries/Maven__org_ow2_asm_asm_analysis_9_0.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_ow2_asm_asm_commons_9_0.xml b/.idea/libraries/Maven__org_ow2_asm_asm_commons_9_0.xml new file mode 100644 index 0000000..c71665d --- /dev/null +++ b/.idea/libraries/Maven__org_ow2_asm_asm_commons_9_0.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_ow2_asm_asm_tree_9_0.xml b/.idea/libraries/Maven__org_ow2_asm_asm_tree_9_0.xml new file mode 100644 index 0000000..d0224e4 --- /dev/null +++ b/.idea/libraries/Maven__org_ow2_asm_asm_tree_9_0.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_projectlombok_lombok_1_18_18.xml b/.idea/libraries/Maven__org_projectlombok_lombok_1_18_18.xml new file mode 100644 index 0000000..9c76b55 --- /dev/null +++ b/.idea/libraries/Maven__org_projectlombok_lombok_1_18_18.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_slf4j_jul_to_slf4j_1_7_30.xml b/.idea/libraries/Maven__org_slf4j_jul_to_slf4j_1_7_30.xml new file mode 100644 index 0000000..27229ce --- /dev/null +++ b/.idea/libraries/Maven__org_slf4j_jul_to_slf4j_1_7_30.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_30.xml b/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_30.xml new file mode 100644 index 0000000..02b6812 --- /dev/null +++ b/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_30.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_2_4_2.xml new file mode 100644 index 0000000..2b503d6 --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_boot_spring_boot_2_4_2.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_actuator_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_actuator_2_4_2.xml new file mode 100644 index 0000000..2ccd3fe --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_boot_spring_boot_actuator_2_4_2.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_actuator_autoconfigure_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_actuator_autoconfigure_2_4_2.xml new file mode 100644 index 0000000..2a9aa26 --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_boot_spring_boot_actuator_autoconfigure_2_4_2.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_autoconfigure_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_autoconfigure_2_4_2.xml new file mode 100644 index 0000000..b719b80 --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_boot_spring_boot_autoconfigure_2_4_2.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_2_4_2.xml new file mode 100644 index 0000000..53d5a86 --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_2_4_2.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_actuator_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_actuator_2_4_2.xml new file mode 100644 index 0000000..46da256 --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_actuator_2_4_2.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_data_mongodb_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_data_mongodb_2_4_2.xml new file mode 100644 index 0000000..de53817 --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_data_mongodb_2_4_2.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_jetty_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_jetty_2_4_2.xml new file mode 100644 index 0000000..88c2f55 --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_jetty_2_4_2.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_json_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_json_2_4_2.xml new file mode 100644 index 0000000..1cf572a --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_json_2_4_2.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_logging_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_logging_2_4_2.xml new file mode 100644 index 0000000..5660846 --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_logging_2_4_2.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_mail_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_mail_2_4_2.xml new file mode 100644 index 0000000..b7a7e19 --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_mail_2_4_2.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_thymeleaf_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_thymeleaf_2_4_2.xml new file mode 100644 index 0000000..b5c1f6d --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_thymeleaf_2_4_2.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_web_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_web_2_4_2.xml new file mode 100644 index 0000000..5959aa6 --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_web_2_4_2.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_test_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_test_2_4_2.xml new file mode 100644 index 0000000..168ac73 --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_boot_spring_boot_test_2_4_2.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_data_spring_data_commons_2_4_3.xml b/.idea/libraries/Maven__org_springframework_data_spring_data_commons_2_4_3.xml new file mode 100644 index 0000000..0cba724 --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_data_spring_data_commons_2_4_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_data_spring_data_mongodb_3_1_3.xml b/.idea/libraries/Maven__org_springframework_data_spring_data_mongodb_3_1_3.xml new file mode 100644 index 0000000..c1f44d3 --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_data_spring_data_mongodb_3_1_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_aop_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_aop_5_3_3.xml new file mode 100644 index 0000000..e83a60a --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_spring_aop_5_3_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_beans_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_beans_5_3_3.xml new file mode 100644 index 0000000..c8b8ba6 --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_spring_beans_5_3_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_context_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_context_5_3_3.xml new file mode 100644 index 0000000..92b40c1 --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_spring_context_5_3_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_context_support_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_context_support_5_3_3.xml new file mode 100644 index 0000000..bf294a7 --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_spring_context_support_5_3_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_core_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_core_5_3_3.xml new file mode 100644 index 0000000..141cffc --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_spring_core_5_3_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_expression_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_expression_5_3_3.xml new file mode 100644 index 0000000..c576204 --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_spring_expression_5_3_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_jcl_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_jcl_5_3_3.xml new file mode 100644 index 0000000..9d1706a --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_spring_jcl_5_3_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_test_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_test_5_3_3.xml new file mode 100644 index 0000000..b5118c6 --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_spring_test_5_3_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_tx_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_tx_5_3_3.xml new file mode 100644 index 0000000..4180b30 --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_spring_tx_5_3_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_web_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_web_5_3_3.xml new file mode 100644 index 0000000..56ff993 --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_spring_web_5_3_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_webmvc_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_webmvc_5_3_3.xml new file mode 100644 index 0000000..ec00422 --- /dev/null +++ b/.idea/libraries/Maven__org_springframework_spring_webmvc_5_3_3.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_thymeleaf_extras_thymeleaf_extras_java8time_3_0_4_RELEASE.xml b/.idea/libraries/Maven__org_thymeleaf_extras_thymeleaf_extras_java8time_3_0_4_RELEASE.xml new file mode 100644 index 0000000..7b246ae --- /dev/null +++ b/.idea/libraries/Maven__org_thymeleaf_extras_thymeleaf_extras_java8time_3_0_4_RELEASE.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_thymeleaf_thymeleaf_3_0_12_RELEASE.xml b/.idea/libraries/Maven__org_thymeleaf_thymeleaf_3_0_12_RELEASE.xml new file mode 100644 index 0000000..ef303d1 --- /dev/null +++ b/.idea/libraries/Maven__org_thymeleaf_thymeleaf_3_0_12_RELEASE.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_thymeleaf_thymeleaf_spring5_3_0_12_RELEASE.xml b/.idea/libraries/Maven__org_thymeleaf_thymeleaf_spring5_3_0_12_RELEASE.xml new file mode 100644 index 0000000..db66650 --- /dev/null +++ b/.idea/libraries/Maven__org_thymeleaf_thymeleaf_spring5_3_0_12_RELEASE.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_unbescape_unbescape_1_1_6_RELEASE.xml b/.idea/libraries/Maven__org_unbescape_unbescape_1_1_6_RELEASE.xml new file mode 100644 index 0000000..2334aa0 --- /dev/null +++ b/.idea/libraries/Maven__org_unbescape_unbescape_1_1_6_RELEASE.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/Maven__org_yaml_snakeyaml_1_27.xml b/.idea/libraries/Maven__org_yaml_snakeyaml_1_27.xml new file mode 100644 index 0000000..5f4b15d --- /dev/null +++ b/.idea/libraries/Maven__org_yaml_snakeyaml_1_27.xml @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..1a68899 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,14 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..ce29380 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/ontotools-curator.iml b/.idea/ontotools-curator.iml new file mode 100644 index 0000000..4995b0a --- /dev/null +++ b/.idea/ontotools-curator.iml @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml new file mode 100644 index 0000000..e96534f --- /dev/null +++ b/.idea/uiDesigner.xml @@ -0,0 +1,124 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java index bb31bcb..0656722 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -20,6 +20,8 @@ public class CurationConstants { public static final String API_ENTITIES = "/entities"; + public static final String API_AUDIT_TRAIL = "/audit-trail"; + public static final String API_ONTOLOGY_TERMS = "/ontology-terms"; public static final String API_USERS = "/users"; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/AuditTrailController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/AuditTrailController.java new file mode 100644 index 0000000..7b34220 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/AuditTrailController.java @@ -0,0 +1,62 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.controller; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.web.bind.annotation.*; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; +import uk.ac.ebi.spot.ontotools.curation.domain.AuditEntry; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.AuditEntryDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.audit.AuditEntryDto; +import uk.ac.ebi.spot.ontotools.curation.service.AuditEntryService; +import uk.ac.ebi.spot.ontotools.curation.service.EntityService; +import uk.ac.ebi.spot.ontotools.curation.service.JWTService; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; +import uk.ac.ebi.spot.ontotools.curation.util.HeadersUtil; + +import javax.servlet.http.HttpServletRequest; +import java.util.Arrays; +import java.util.List; +import java.util.stream.Collectors; + +@RestController +@RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) +public class AuditTrailController { + + private static final Logger log = LoggerFactory.getLogger(ProjectsController.class); + + @Autowired + private JWTService jwtService; + + @Autowired + private ProjectService projectService; + + @Autowired + private EntityService entityService; + + @Autowired + private AuditEntryService auditEntryService; + + /** + * GET /v1/projects/{projectId}/entities/{entityId}/audit-trail + */ + @GetMapping(value = "/{projectId}" + CurationConstants.API_ENTITIES + "/{entityId}" + CurationConstants.API_AUDIT_TRAIL, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public List getEntities(@PathVariable String projectId, + @PathVariable String entityId, + HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to retrieve audit trail for entity: {} | {}", user.getEmail(), projectId, entityId); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR, ProjectRole.CONSUMER})); + Entity entity = entityService.retrieveEntity(entityId); + List auditTrail = auditEntryService.retrieveAuditEntries(entity.getId()); + return auditTrail.stream().map(AuditEntryDtoAssembler::assemble).collect(Collectors.toList()); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java index cea3d5e..8b313d3 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java @@ -78,7 +78,6 @@ public RestResponsePage getEntities(@PathVariable String projectId, @ Map> mappingSuggestions = mappingSuggestionsService.retrieveMappingSuggestionsForEntities(entityIds); log.info("Assembling results ..."); List entityDtos = new ArrayList<>(); - //auditEntryService.retrieveAuditEntries(entity.getId()) for (Entity entity : entities.getContent()) { entityDtos.add(EntityDtoAssembler.assemble(entity, sourceMap.get(entity.getSourceId()), mappings.get(entity.getId()), diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/AuditTrailControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/AuditTrailControllerTest.java new file mode 100644 index 0000000..7947a8f --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/AuditTrailControllerTest.java @@ -0,0 +1,70 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import com.fasterxml.jackson.core.type.TypeReference; +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.MediaType; +import org.springframework.test.context.ContextConfiguration; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.audit.AuditEntryDto; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; +import uk.ac.ebi.spot.ontotools.curation.service.UserService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; + +import java.util.Arrays; +import java.util.List; + +import static org.junit.Assert.assertTrue; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; + +@ContextConfiguration(classes = {IntegrationTest.MockTaskExecutorConfig.class}) +public class AuditTrailControllerTest extends IntegrationTest { + + @Autowired + private UserService userService; + + @Autowired + private ProjectService projectService; + + private Project project; + + private SourceDto sourceDto; + + @Override + public void setup() throws Exception { + super.setup(); + List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); + List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); + ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo", 0); + user1 = userService.findByEmail(user1.getEmail()); + project = projectService.retrieveProject(projectDto.getId(), user1); + sourceDto = super.createSource(project.getId()); + + super.createEntityTestData(sourceDto.getId(), project.getId(), user1); + } + + /** + * GET /v1/projects/{projectId}/entities/{entityId}/audit-trail + */ + @Test + public void shouldGetEntity() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_ENTITIES + "/" + entity.getId() + CurationConstants.API_AUDIT_TRAIL; + String response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + List actual = mapper.readValue(response, new TypeReference<>() { + }); + assertTrue(actual.isEmpty()); + } +} From d371042d87ae9c8a12c25f64803e5c5a7056d9d2 Mon Sep 17 00:00:00 2001 From: tudorgroza Date: Sat, 20 Mar 2021 09:10:47 +0800 Subject: [PATCH 53/72] Revert "Added audit trail controller." --- .idea/compiler.xml | 22 --- .idea/encodings.xml | 7 - .idea/inspectionProfiles/Project_Default.xml | 9 -- ...__ch_qos_logback_logback_classic_1_2_3.xml | 13 -- ...ven__ch_qos_logback_logback_core_1_2_3.xml | 13 -- ...ackson_core_jackson_annotations_2_11_4.xml | 13 -- ...erxml_jackson_core_jackson_core_2_11_4.xml | 13 -- ...l_jackson_core_jackson_databind_2_11_4.xml | 13 -- ..._datatype_jackson_datatype_jdk8_2_11_4.xml | 13 -- ...atatype_jackson_datatype_jsr310_2_11_4.xml | 13 -- ..._jackson_module_parameter_names_2_11_4.xml | 13 -- ...un_activation_jakarta_activation_1_2_2.xml | 13 -- ...Maven__com_sun_mail_jakarta_mail_1_6_5.xml | 13 -- ...aven__commons_codec_commons_codec_1_15.xml | 13 -- ...mons_fileupload_commons_fileupload_1_4.xml | 13 -- .../Maven__commons_io_commons_io_2_8_0.xml | 13 -- .../Maven__io_jsonwebtoken_jjwt_0_9_1.xml | 13 -- ...n__io_micrometer_micrometer_core_1_6_3.xml | 13 -- ...nnotation_jakarta_annotation_api_1_3_5.xml | 13 -- ...arta_servlet_jakarta_servlet_api_4_0_4.xml | 13 -- ..._websocket_jakarta_websocket_api_1_1_2.xml | 13 -- ..._javax_servlet_javax_servlet_api_4_0_1.xml | 13 -- ..._validation_validation_api_2_0_1_Final.xml | 13 -- .../Maven__joda_time_joda_time_2_10_9.xml | 13 -- .idea/libraries/Maven__junit_junit_4_13_1.xml | 13 -- ...aven__net_bytebuddy_byte_buddy_1_10_19.xml | 13 -- ...net_bytebuddy_byte_buddy_agent_1_10_19.xml | 13 -- ...no_equalsverifier_equalsverifier_3_5_2.xml | 13 -- .idea/libraries/Maven__ognl_ognl_3_2_18.xml | 13 -- ...pache_commons_commons_collections4_4_4.xml | 13 -- ..._org_apache_commons_commons_lang3_3_11.xml | 13 -- ...pache_httpcomponents_httpclient_4_5_13.xml | 13 -- ..._apache_httpcomponents_httpcore_4_4_14.xml | 13 -- ..._apache_logging_log4j_log4j_api_2_13_3.xml | 13 -- ...he_logging_log4j_log4j_to_slf4j_2_13_3.xml | 13 -- ...rg_attoparser_attoparser_2_0_5_RELEASE.xml | 13 -- ...tty_jetty_annotations_9_4_35_v20201120.xml | 13 -- ...se_jetty_jetty_client_9_4_35_v20201120.xml | 13 -- ...ty_jetty_continuation_9_4_35_v20201120.xml | 13 -- ...ipse_jetty_jetty_http_9_4_35_v20201120.xml | 13 -- ...clipse_jetty_jetty_io_9_4_35_v20201120.xml | 13 -- ...ipse_jetty_jetty_plus_9_4_35_v20201120.xml | 13 -- ..._jetty_jetty_security_9_4_35_v20201120.xml | 13 -- ...se_jetty_jetty_server_9_4_35_v20201120.xml | 13 -- ...e_jetty_jetty_servlet_9_4_35_v20201120.xml | 13 -- ..._jetty_jetty_servlets_9_4_35_v20201120.xml | 13 -- ...ipse_jetty_jetty_util_9_4_35_v20201120.xml | 13 -- ...jetty_jetty_util_ajax_9_4_35_v20201120.xml | 13 -- ...se_jetty_jetty_webapp_9_4_35_v20201120.xml | 13 -- ...lipse_jetty_jetty_xml_9_4_35_v20201120.xml | 13 -- ...websocket_client_impl_9_4_35_v20201120.xml | 13 -- ...websocket_server_impl_9_4_35_v20201120.xml | 13 -- ...bsocket_websocket_api_9_4_35_v20201120.xml | 13 -- ...cket_websocket_client_9_4_35_v20201120.xml | 13 -- ...cket_websocket_common_9_4_35_v20201120.xml | 13 -- ...cket_websocket_server_9_4_35_v20201120.xml | 13 -- ...ket_websocket_servlet_9_4_35_v20201120.xml | 13 -- .../Maven__org_glassfish_jakarta_el_3_0_3.xml | 13 -- .../Maven__org_hamcrest_hamcrest_core_1_3.xml | 13 -- ...__org_hdrhistogram_HdrHistogram_2_1_12.xml | 13 -- ...ven__org_javassist_javassist_3_24_1_GA.xml | 13 -- ...n__org_latencyutils_LatencyUtils_2_0_3.xml | 13 -- .../Maven__org_mockito_mockito_core_3_7_7.xml | 13 -- .../Maven__org_mongodb_bson_4_1_1.xml | 13 -- ..._org_mongodb_mongodb_driver_core_4_1_1.xml | 13 -- ..._org_mongodb_mongodb_driver_sync_4_1_1.xml | 13 -- .../Maven__org_objenesis_objenesis_3_1.xml | 13 -- .../libraries/Maven__org_ow2_asm_asm_9_0.xml | 13 -- .../Maven__org_ow2_asm_asm_analysis_9_0.xml | 13 -- .../Maven__org_ow2_asm_asm_commons_9_0.xml | 13 -- .../Maven__org_ow2_asm_asm_tree_9_0.xml | 13 -- ...aven__org_projectlombok_lombok_1_18_18.xml | 13 -- .../Maven__org_slf4j_jul_to_slf4j_1_7_30.xml | 13 -- .../Maven__org_slf4j_slf4j_api_1_7_30.xml | 13 -- ...springframework_boot_spring_boot_2_4_2.xml | 13 -- ...mework_boot_spring_boot_actuator_2_4_2.xml | 13 -- ...ring_boot_actuator_autoconfigure_2_4_2.xml | 13 -- ...k_boot_spring_boot_autoconfigure_2_4_2.xml | 13 -- ...amework_boot_spring_boot_starter_2_4_2.xml | 13 -- ...oot_spring_boot_starter_actuator_2_4_2.xml | 13 -- ...spring_boot_starter_data_mongodb_2_4_2.xml | 13 -- ...k_boot_spring_boot_starter_jetty_2_4_2.xml | 13 -- ...rk_boot_spring_boot_starter_json_2_4_2.xml | 13 -- ...boot_spring_boot_starter_logging_2_4_2.xml | 13 -- ...rk_boot_spring_boot_starter_mail_2_4_2.xml | 13 -- ...ot_spring_boot_starter_thymeleaf_2_4_2.xml | 13 -- ...ork_boot_spring_boot_starter_web_2_4_2.xml | 13 -- ...gframework_boot_spring_boot_test_2_4_2.xml | 13 -- ...amework_data_spring_data_commons_2_4_3.xml | 13 -- ...amework_data_spring_data_mongodb_3_1_3.xml | 13 -- ...__org_springframework_spring_aop_5_3_3.xml | 13 -- ...org_springframework_spring_beans_5_3_3.xml | 13 -- ...g_springframework_spring_context_5_3_3.xml | 13 -- ...framework_spring_context_support_5_3_3.xml | 13 -- ..._org_springframework_spring_core_5_3_3.xml | 13 -- ...pringframework_spring_expression_5_3_3.xml | 13 -- ...__org_springframework_spring_jcl_5_3_3.xml | 13 -- ..._org_springframework_spring_test_5_3_3.xml | 13 -- ...n__org_springframework_spring_tx_5_3_3.xml | 13 -- ...__org_springframework_spring_web_5_3_3.xml | 13 -- ...rg_springframework_spring_webmvc_5_3_3.xml | 13 -- ...ymeleaf_extras_java8time_3_0_4_RELEASE.xml | 13 -- ...org_thymeleaf_thymeleaf_3_0_12_RELEASE.xml | 13 -- ...eleaf_thymeleaf_spring5_3_0_12_RELEASE.xml | 13 -- ..._org_unbescape_unbescape_1_1_6_RELEASE.xml | 13 -- .../Maven__org_yaml_snakeyaml_1_27.xml | 13 -- .idea/misc.xml | 14 -- .idea/modules.xml | 8 -- .idea/ontotools-curator.iml | 136 ------------------ .idea/uiDesigner.xml | 124 ---------------- .idea/vcs.xml | 6 - .../curation/constants/CurationConstants.java | 2 - .../rest/controller/AuditTrailController.java | 62 -------- .../rest/controller/EntityController.java | 1 + .../curation/AuditTrailControllerTest.java | 70 --------- 115 files changed, 1 insertion(+), 1799 deletions(-) delete mode 100644 .idea/compiler.xml delete mode 100644 .idea/encodings.xml delete mode 100644 .idea/inspectionProfiles/Project_Default.xml delete mode 100644 .idea/libraries/Maven__ch_qos_logback_logback_classic_1_2_3.xml delete mode 100644 .idea/libraries/Maven__ch_qos_logback_logback_core_1_2_3.xml delete mode 100644 .idea/libraries/Maven__com_fasterxml_jackson_core_jackson_annotations_2_11_4.xml delete mode 100644 .idea/libraries/Maven__com_fasterxml_jackson_core_jackson_core_2_11_4.xml delete mode 100644 .idea/libraries/Maven__com_fasterxml_jackson_core_jackson_databind_2_11_4.xml delete mode 100644 .idea/libraries/Maven__com_fasterxml_jackson_datatype_jackson_datatype_jdk8_2_11_4.xml delete mode 100644 .idea/libraries/Maven__com_fasterxml_jackson_datatype_jackson_datatype_jsr310_2_11_4.xml delete mode 100644 .idea/libraries/Maven__com_fasterxml_jackson_module_jackson_module_parameter_names_2_11_4.xml delete mode 100644 .idea/libraries/Maven__com_sun_activation_jakarta_activation_1_2_2.xml delete mode 100644 .idea/libraries/Maven__com_sun_mail_jakarta_mail_1_6_5.xml delete mode 100644 .idea/libraries/Maven__commons_codec_commons_codec_1_15.xml delete mode 100644 .idea/libraries/Maven__commons_fileupload_commons_fileupload_1_4.xml delete mode 100644 .idea/libraries/Maven__commons_io_commons_io_2_8_0.xml delete mode 100644 .idea/libraries/Maven__io_jsonwebtoken_jjwt_0_9_1.xml delete mode 100644 .idea/libraries/Maven__io_micrometer_micrometer_core_1_6_3.xml delete mode 100644 .idea/libraries/Maven__jakarta_annotation_jakarta_annotation_api_1_3_5.xml delete mode 100644 .idea/libraries/Maven__jakarta_servlet_jakarta_servlet_api_4_0_4.xml delete mode 100644 .idea/libraries/Maven__jakarta_websocket_jakarta_websocket_api_1_1_2.xml delete mode 100644 .idea/libraries/Maven__javax_servlet_javax_servlet_api_4_0_1.xml delete mode 100644 .idea/libraries/Maven__javax_validation_validation_api_2_0_1_Final.xml delete mode 100644 .idea/libraries/Maven__joda_time_joda_time_2_10_9.xml delete mode 100644 .idea/libraries/Maven__junit_junit_4_13_1.xml delete mode 100644 .idea/libraries/Maven__net_bytebuddy_byte_buddy_1_10_19.xml delete mode 100644 .idea/libraries/Maven__net_bytebuddy_byte_buddy_agent_1_10_19.xml delete mode 100644 .idea/libraries/Maven__nl_jqno_equalsverifier_equalsverifier_3_5_2.xml delete mode 100644 .idea/libraries/Maven__ognl_ognl_3_2_18.xml delete mode 100644 .idea/libraries/Maven__org_apache_commons_commons_collections4_4_4.xml delete mode 100644 .idea/libraries/Maven__org_apache_commons_commons_lang3_3_11.xml delete mode 100644 .idea/libraries/Maven__org_apache_httpcomponents_httpclient_4_5_13.xml delete mode 100644 .idea/libraries/Maven__org_apache_httpcomponents_httpcore_4_4_14.xml delete mode 100644 .idea/libraries/Maven__org_apache_logging_log4j_log4j_api_2_13_3.xml delete mode 100644 .idea/libraries/Maven__org_apache_logging_log4j_log4j_to_slf4j_2_13_3.xml delete mode 100644 .idea/libraries/Maven__org_attoparser_attoparser_2_0_5_RELEASE.xml delete mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_annotations_9_4_35_v20201120.xml delete mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_client_9_4_35_v20201120.xml delete mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_continuation_9_4_35_v20201120.xml delete mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_http_9_4_35_v20201120.xml delete mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_io_9_4_35_v20201120.xml delete mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_plus_9_4_35_v20201120.xml delete mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_security_9_4_35_v20201120.xml delete mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_server_9_4_35_v20201120.xml delete mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_servlet_9_4_35_v20201120.xml delete mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_servlets_9_4_35_v20201120.xml delete mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_util_9_4_35_v20201120.xml delete mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_util_ajax_9_4_35_v20201120.xml delete mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_webapp_9_4_35_v20201120.xml delete mode 100644 .idea/libraries/Maven__org_eclipse_jetty_jetty_xml_9_4_35_v20201120.xml delete mode 100644 .idea/libraries/Maven__org_eclipse_jetty_websocket_javax_websocket_client_impl_9_4_35_v20201120.xml delete mode 100644 .idea/libraries/Maven__org_eclipse_jetty_websocket_javax_websocket_server_impl_9_4_35_v20201120.xml delete mode 100644 .idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_api_9_4_35_v20201120.xml delete mode 100644 .idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_client_9_4_35_v20201120.xml delete mode 100644 .idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_common_9_4_35_v20201120.xml delete mode 100644 .idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_server_9_4_35_v20201120.xml delete mode 100644 .idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_servlet_9_4_35_v20201120.xml delete mode 100644 .idea/libraries/Maven__org_glassfish_jakarta_el_3_0_3.xml delete mode 100644 .idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml delete mode 100644 .idea/libraries/Maven__org_hdrhistogram_HdrHistogram_2_1_12.xml delete mode 100644 .idea/libraries/Maven__org_javassist_javassist_3_24_1_GA.xml delete mode 100644 .idea/libraries/Maven__org_latencyutils_LatencyUtils_2_0_3.xml delete mode 100644 .idea/libraries/Maven__org_mockito_mockito_core_3_7_7.xml delete mode 100644 .idea/libraries/Maven__org_mongodb_bson_4_1_1.xml delete mode 100644 .idea/libraries/Maven__org_mongodb_mongodb_driver_core_4_1_1.xml delete mode 100644 .idea/libraries/Maven__org_mongodb_mongodb_driver_sync_4_1_1.xml delete mode 100644 .idea/libraries/Maven__org_objenesis_objenesis_3_1.xml delete mode 100644 .idea/libraries/Maven__org_ow2_asm_asm_9_0.xml delete mode 100644 .idea/libraries/Maven__org_ow2_asm_asm_analysis_9_0.xml delete mode 100644 .idea/libraries/Maven__org_ow2_asm_asm_commons_9_0.xml delete mode 100644 .idea/libraries/Maven__org_ow2_asm_asm_tree_9_0.xml delete mode 100644 .idea/libraries/Maven__org_projectlombok_lombok_1_18_18.xml delete mode 100644 .idea/libraries/Maven__org_slf4j_jul_to_slf4j_1_7_30.xml delete mode 100644 .idea/libraries/Maven__org_slf4j_slf4j_api_1_7_30.xml delete mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_2_4_2.xml delete mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_actuator_2_4_2.xml delete mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_actuator_autoconfigure_2_4_2.xml delete mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_autoconfigure_2_4_2.xml delete mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_starter_2_4_2.xml delete mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_starter_actuator_2_4_2.xml delete mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_starter_data_mongodb_2_4_2.xml delete mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_starter_jetty_2_4_2.xml delete mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_starter_json_2_4_2.xml delete mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_starter_logging_2_4_2.xml delete mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_starter_mail_2_4_2.xml delete mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_starter_thymeleaf_2_4_2.xml delete mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_starter_web_2_4_2.xml delete mode 100644 .idea/libraries/Maven__org_springframework_boot_spring_boot_test_2_4_2.xml delete mode 100644 .idea/libraries/Maven__org_springframework_data_spring_data_commons_2_4_3.xml delete mode 100644 .idea/libraries/Maven__org_springframework_data_spring_data_mongodb_3_1_3.xml delete mode 100644 .idea/libraries/Maven__org_springframework_spring_aop_5_3_3.xml delete mode 100644 .idea/libraries/Maven__org_springframework_spring_beans_5_3_3.xml delete mode 100644 .idea/libraries/Maven__org_springframework_spring_context_5_3_3.xml delete mode 100644 .idea/libraries/Maven__org_springframework_spring_context_support_5_3_3.xml delete mode 100644 .idea/libraries/Maven__org_springframework_spring_core_5_3_3.xml delete mode 100644 .idea/libraries/Maven__org_springframework_spring_expression_5_3_3.xml delete mode 100644 .idea/libraries/Maven__org_springframework_spring_jcl_5_3_3.xml delete mode 100644 .idea/libraries/Maven__org_springframework_spring_test_5_3_3.xml delete mode 100644 .idea/libraries/Maven__org_springframework_spring_tx_5_3_3.xml delete mode 100644 .idea/libraries/Maven__org_springframework_spring_web_5_3_3.xml delete mode 100644 .idea/libraries/Maven__org_springframework_spring_webmvc_5_3_3.xml delete mode 100644 .idea/libraries/Maven__org_thymeleaf_extras_thymeleaf_extras_java8time_3_0_4_RELEASE.xml delete mode 100644 .idea/libraries/Maven__org_thymeleaf_thymeleaf_3_0_12_RELEASE.xml delete mode 100644 .idea/libraries/Maven__org_thymeleaf_thymeleaf_spring5_3_0_12_RELEASE.xml delete mode 100644 .idea/libraries/Maven__org_unbescape_unbescape_1_1_6_RELEASE.xml delete mode 100644 .idea/libraries/Maven__org_yaml_snakeyaml_1_27.xml delete mode 100644 .idea/misc.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/ontotools-curator.iml delete mode 100644 .idea/uiDesigner.xml delete mode 100644 .idea/vcs.xml delete mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/AuditTrailController.java delete mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/AuditTrailControllerTest.java diff --git a/.idea/compiler.xml b/.idea/compiler.xml deleted file mode 100644 index 73590d9..0000000 --- a/.idea/compiler.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml deleted file mode 100644 index fade66b..0000000 --- a/.idea/encodings.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml deleted file mode 100644 index 106ba30..0000000 --- a/.idea/inspectionProfiles/Project_Default.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__ch_qos_logback_logback_classic_1_2_3.xml b/.idea/libraries/Maven__ch_qos_logback_logback_classic_1_2_3.xml deleted file mode 100644 index 6fec8f4..0000000 --- a/.idea/libraries/Maven__ch_qos_logback_logback_classic_1_2_3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__ch_qos_logback_logback_core_1_2_3.xml b/.idea/libraries/Maven__ch_qos_logback_logback_core_1_2_3.xml deleted file mode 100644 index 9eb8596..0000000 --- a/.idea/libraries/Maven__ch_qos_logback_logback_core_1_2_3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_annotations_2_11_4.xml b/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_annotations_2_11_4.xml deleted file mode 100644 index b269864..0000000 --- a/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_annotations_2_11_4.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_core_2_11_4.xml b/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_core_2_11_4.xml deleted file mode 100644 index 5470f15..0000000 --- a/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_core_2_11_4.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_databind_2_11_4.xml b/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_databind_2_11_4.xml deleted file mode 100644 index 247505a..0000000 --- a/.idea/libraries/Maven__com_fasterxml_jackson_core_jackson_databind_2_11_4.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__com_fasterxml_jackson_datatype_jackson_datatype_jdk8_2_11_4.xml b/.idea/libraries/Maven__com_fasterxml_jackson_datatype_jackson_datatype_jdk8_2_11_4.xml deleted file mode 100644 index 5e7e738..0000000 --- a/.idea/libraries/Maven__com_fasterxml_jackson_datatype_jackson_datatype_jdk8_2_11_4.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__com_fasterxml_jackson_datatype_jackson_datatype_jsr310_2_11_4.xml b/.idea/libraries/Maven__com_fasterxml_jackson_datatype_jackson_datatype_jsr310_2_11_4.xml deleted file mode 100644 index acb88ad..0000000 --- a/.idea/libraries/Maven__com_fasterxml_jackson_datatype_jackson_datatype_jsr310_2_11_4.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__com_fasterxml_jackson_module_jackson_module_parameter_names_2_11_4.xml b/.idea/libraries/Maven__com_fasterxml_jackson_module_jackson_module_parameter_names_2_11_4.xml deleted file mode 100644 index 8c681f4..0000000 --- a/.idea/libraries/Maven__com_fasterxml_jackson_module_jackson_module_parameter_names_2_11_4.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__com_sun_activation_jakarta_activation_1_2_2.xml b/.idea/libraries/Maven__com_sun_activation_jakarta_activation_1_2_2.xml deleted file mode 100644 index fea99f0..0000000 --- a/.idea/libraries/Maven__com_sun_activation_jakarta_activation_1_2_2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__com_sun_mail_jakarta_mail_1_6_5.xml b/.idea/libraries/Maven__com_sun_mail_jakarta_mail_1_6_5.xml deleted file mode 100644 index a86e176..0000000 --- a/.idea/libraries/Maven__com_sun_mail_jakarta_mail_1_6_5.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__commons_codec_commons_codec_1_15.xml b/.idea/libraries/Maven__commons_codec_commons_codec_1_15.xml deleted file mode 100644 index c88c2b7..0000000 --- a/.idea/libraries/Maven__commons_codec_commons_codec_1_15.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__commons_fileupload_commons_fileupload_1_4.xml b/.idea/libraries/Maven__commons_fileupload_commons_fileupload_1_4.xml deleted file mode 100644 index 3b9dcc0..0000000 --- a/.idea/libraries/Maven__commons_fileupload_commons_fileupload_1_4.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__commons_io_commons_io_2_8_0.xml b/.idea/libraries/Maven__commons_io_commons_io_2_8_0.xml deleted file mode 100644 index 06f5f24..0000000 --- a/.idea/libraries/Maven__commons_io_commons_io_2_8_0.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__io_jsonwebtoken_jjwt_0_9_1.xml b/.idea/libraries/Maven__io_jsonwebtoken_jjwt_0_9_1.xml deleted file mode 100644 index f25b99b..0000000 --- a/.idea/libraries/Maven__io_jsonwebtoken_jjwt_0_9_1.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__io_micrometer_micrometer_core_1_6_3.xml b/.idea/libraries/Maven__io_micrometer_micrometer_core_1_6_3.xml deleted file mode 100644 index da3a96c..0000000 --- a/.idea/libraries/Maven__io_micrometer_micrometer_core_1_6_3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__jakarta_annotation_jakarta_annotation_api_1_3_5.xml b/.idea/libraries/Maven__jakarta_annotation_jakarta_annotation_api_1_3_5.xml deleted file mode 100644 index cba9dd2..0000000 --- a/.idea/libraries/Maven__jakarta_annotation_jakarta_annotation_api_1_3_5.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__jakarta_servlet_jakarta_servlet_api_4_0_4.xml b/.idea/libraries/Maven__jakarta_servlet_jakarta_servlet_api_4_0_4.xml deleted file mode 100644 index 2ddfaae..0000000 --- a/.idea/libraries/Maven__jakarta_servlet_jakarta_servlet_api_4_0_4.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__jakarta_websocket_jakarta_websocket_api_1_1_2.xml b/.idea/libraries/Maven__jakarta_websocket_jakarta_websocket_api_1_1_2.xml deleted file mode 100644 index 5fe7acc..0000000 --- a/.idea/libraries/Maven__jakarta_websocket_jakarta_websocket_api_1_1_2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__javax_servlet_javax_servlet_api_4_0_1.xml b/.idea/libraries/Maven__javax_servlet_javax_servlet_api_4_0_1.xml deleted file mode 100644 index d05c196..0000000 --- a/.idea/libraries/Maven__javax_servlet_javax_servlet_api_4_0_1.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__javax_validation_validation_api_2_0_1_Final.xml b/.idea/libraries/Maven__javax_validation_validation_api_2_0_1_Final.xml deleted file mode 100644 index 6978c0b..0000000 --- a/.idea/libraries/Maven__javax_validation_validation_api_2_0_1_Final.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__joda_time_joda_time_2_10_9.xml b/.idea/libraries/Maven__joda_time_joda_time_2_10_9.xml deleted file mode 100644 index a937c00..0000000 --- a/.idea/libraries/Maven__joda_time_joda_time_2_10_9.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__junit_junit_4_13_1.xml b/.idea/libraries/Maven__junit_junit_4_13_1.xml deleted file mode 100644 index 9fa24fc..0000000 --- a/.idea/libraries/Maven__junit_junit_4_13_1.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__net_bytebuddy_byte_buddy_1_10_19.xml b/.idea/libraries/Maven__net_bytebuddy_byte_buddy_1_10_19.xml deleted file mode 100644 index 5d5bc50..0000000 --- a/.idea/libraries/Maven__net_bytebuddy_byte_buddy_1_10_19.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__net_bytebuddy_byte_buddy_agent_1_10_19.xml b/.idea/libraries/Maven__net_bytebuddy_byte_buddy_agent_1_10_19.xml deleted file mode 100644 index 6fee14c..0000000 --- a/.idea/libraries/Maven__net_bytebuddy_byte_buddy_agent_1_10_19.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__nl_jqno_equalsverifier_equalsverifier_3_5_2.xml b/.idea/libraries/Maven__nl_jqno_equalsverifier_equalsverifier_3_5_2.xml deleted file mode 100644 index a870232..0000000 --- a/.idea/libraries/Maven__nl_jqno_equalsverifier_equalsverifier_3_5_2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__ognl_ognl_3_2_18.xml b/.idea/libraries/Maven__ognl_ognl_3_2_18.xml deleted file mode 100644 index 4eddba7..0000000 --- a/.idea/libraries/Maven__ognl_ognl_3_2_18.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_apache_commons_commons_collections4_4_4.xml b/.idea/libraries/Maven__org_apache_commons_commons_collections4_4_4.xml deleted file mode 100644 index 5871c95..0000000 --- a/.idea/libraries/Maven__org_apache_commons_commons_collections4_4_4.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_apache_commons_commons_lang3_3_11.xml b/.idea/libraries/Maven__org_apache_commons_commons_lang3_3_11.xml deleted file mode 100644 index 7a30e6e..0000000 --- a/.idea/libraries/Maven__org_apache_commons_commons_lang3_3_11.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_apache_httpcomponents_httpclient_4_5_13.xml b/.idea/libraries/Maven__org_apache_httpcomponents_httpclient_4_5_13.xml deleted file mode 100644 index 63bee0e..0000000 --- a/.idea/libraries/Maven__org_apache_httpcomponents_httpclient_4_5_13.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_apache_httpcomponents_httpcore_4_4_14.xml b/.idea/libraries/Maven__org_apache_httpcomponents_httpcore_4_4_14.xml deleted file mode 100644 index 427f319..0000000 --- a/.idea/libraries/Maven__org_apache_httpcomponents_httpcore_4_4_14.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_apache_logging_log4j_log4j_api_2_13_3.xml b/.idea/libraries/Maven__org_apache_logging_log4j_log4j_api_2_13_3.xml deleted file mode 100644 index 8ad4996..0000000 --- a/.idea/libraries/Maven__org_apache_logging_log4j_log4j_api_2_13_3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_apache_logging_log4j_log4j_to_slf4j_2_13_3.xml b/.idea/libraries/Maven__org_apache_logging_log4j_log4j_to_slf4j_2_13_3.xml deleted file mode 100644 index 57e6ac4..0000000 --- a/.idea/libraries/Maven__org_apache_logging_log4j_log4j_to_slf4j_2_13_3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_attoparser_attoparser_2_0_5_RELEASE.xml b/.idea/libraries/Maven__org_attoparser_attoparser_2_0_5_RELEASE.xml deleted file mode 100644 index 5bad7db..0000000 --- a/.idea/libraries/Maven__org_attoparser_attoparser_2_0_5_RELEASE.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_annotations_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_annotations_9_4_35_v20201120.xml deleted file mode 100644 index 6ba9a0f..0000000 --- a/.idea/libraries/Maven__org_eclipse_jetty_jetty_annotations_9_4_35_v20201120.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_client_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_client_9_4_35_v20201120.xml deleted file mode 100644 index 8159c58..0000000 --- a/.idea/libraries/Maven__org_eclipse_jetty_jetty_client_9_4_35_v20201120.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_continuation_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_continuation_9_4_35_v20201120.xml deleted file mode 100644 index c2e957a..0000000 --- a/.idea/libraries/Maven__org_eclipse_jetty_jetty_continuation_9_4_35_v20201120.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_http_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_http_9_4_35_v20201120.xml deleted file mode 100644 index 924611a..0000000 --- a/.idea/libraries/Maven__org_eclipse_jetty_jetty_http_9_4_35_v20201120.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_io_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_io_9_4_35_v20201120.xml deleted file mode 100644 index d2358b9..0000000 --- a/.idea/libraries/Maven__org_eclipse_jetty_jetty_io_9_4_35_v20201120.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_plus_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_plus_9_4_35_v20201120.xml deleted file mode 100644 index a90f1cd..0000000 --- a/.idea/libraries/Maven__org_eclipse_jetty_jetty_plus_9_4_35_v20201120.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_security_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_security_9_4_35_v20201120.xml deleted file mode 100644 index cdca08f..0000000 --- a/.idea/libraries/Maven__org_eclipse_jetty_jetty_security_9_4_35_v20201120.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_server_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_server_9_4_35_v20201120.xml deleted file mode 100644 index e4c60e1..0000000 --- a/.idea/libraries/Maven__org_eclipse_jetty_jetty_server_9_4_35_v20201120.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_servlet_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_servlet_9_4_35_v20201120.xml deleted file mode 100644 index 23dda98..0000000 --- a/.idea/libraries/Maven__org_eclipse_jetty_jetty_servlet_9_4_35_v20201120.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_servlets_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_servlets_9_4_35_v20201120.xml deleted file mode 100644 index 923a674..0000000 --- a/.idea/libraries/Maven__org_eclipse_jetty_jetty_servlets_9_4_35_v20201120.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_util_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_util_9_4_35_v20201120.xml deleted file mode 100644 index 11f3cd2..0000000 --- a/.idea/libraries/Maven__org_eclipse_jetty_jetty_util_9_4_35_v20201120.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_util_ajax_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_util_ajax_9_4_35_v20201120.xml deleted file mode 100644 index 9fe150c..0000000 --- a/.idea/libraries/Maven__org_eclipse_jetty_jetty_util_ajax_9_4_35_v20201120.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_webapp_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_webapp_9_4_35_v20201120.xml deleted file mode 100644 index 0208984..0000000 --- a/.idea/libraries/Maven__org_eclipse_jetty_jetty_webapp_9_4_35_v20201120.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_jetty_xml_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_jetty_xml_9_4_35_v20201120.xml deleted file mode 100644 index 5771d0c..0000000 --- a/.idea/libraries/Maven__org_eclipse_jetty_jetty_xml_9_4_35_v20201120.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_websocket_javax_websocket_client_impl_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_websocket_javax_websocket_client_impl_9_4_35_v20201120.xml deleted file mode 100644 index 2c41250..0000000 --- a/.idea/libraries/Maven__org_eclipse_jetty_websocket_javax_websocket_client_impl_9_4_35_v20201120.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_websocket_javax_websocket_server_impl_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_websocket_javax_websocket_server_impl_9_4_35_v20201120.xml deleted file mode 100644 index bbe4307..0000000 --- a/.idea/libraries/Maven__org_eclipse_jetty_websocket_javax_websocket_server_impl_9_4_35_v20201120.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_api_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_api_9_4_35_v20201120.xml deleted file mode 100644 index 41a48be..0000000 --- a/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_api_9_4_35_v20201120.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_client_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_client_9_4_35_v20201120.xml deleted file mode 100644 index 4df98dc..0000000 --- a/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_client_9_4_35_v20201120.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_common_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_common_9_4_35_v20201120.xml deleted file mode 100644 index 019fb77..0000000 --- a/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_common_9_4_35_v20201120.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_server_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_server_9_4_35_v20201120.xml deleted file mode 100644 index ded9645..0000000 --- a/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_server_9_4_35_v20201120.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_servlet_9_4_35_v20201120.xml b/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_servlet_9_4_35_v20201120.xml deleted file mode 100644 index b4bdc6a..0000000 --- a/.idea/libraries/Maven__org_eclipse_jetty_websocket_websocket_servlet_9_4_35_v20201120.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_glassfish_jakarta_el_3_0_3.xml b/.idea/libraries/Maven__org_glassfish_jakarta_el_3_0_3.xml deleted file mode 100644 index ae5020d..0000000 --- a/.idea/libraries/Maven__org_glassfish_jakarta_el_3_0_3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml b/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml deleted file mode 100644 index f58bbc1..0000000 --- a/.idea/libraries/Maven__org_hamcrest_hamcrest_core_1_3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_hdrhistogram_HdrHistogram_2_1_12.xml b/.idea/libraries/Maven__org_hdrhistogram_HdrHistogram_2_1_12.xml deleted file mode 100644 index 6908885..0000000 --- a/.idea/libraries/Maven__org_hdrhistogram_HdrHistogram_2_1_12.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_javassist_javassist_3_24_1_GA.xml b/.idea/libraries/Maven__org_javassist_javassist_3_24_1_GA.xml deleted file mode 100644 index 8a2ccb0..0000000 --- a/.idea/libraries/Maven__org_javassist_javassist_3_24_1_GA.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_latencyutils_LatencyUtils_2_0_3.xml b/.idea/libraries/Maven__org_latencyutils_LatencyUtils_2_0_3.xml deleted file mode 100644 index bf68169..0000000 --- a/.idea/libraries/Maven__org_latencyutils_LatencyUtils_2_0_3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_mockito_mockito_core_3_7_7.xml b/.idea/libraries/Maven__org_mockito_mockito_core_3_7_7.xml deleted file mode 100644 index d6a8331..0000000 --- a/.idea/libraries/Maven__org_mockito_mockito_core_3_7_7.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_mongodb_bson_4_1_1.xml b/.idea/libraries/Maven__org_mongodb_bson_4_1_1.xml deleted file mode 100644 index da42255..0000000 --- a/.idea/libraries/Maven__org_mongodb_bson_4_1_1.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_mongodb_mongodb_driver_core_4_1_1.xml b/.idea/libraries/Maven__org_mongodb_mongodb_driver_core_4_1_1.xml deleted file mode 100644 index ff92b86..0000000 --- a/.idea/libraries/Maven__org_mongodb_mongodb_driver_core_4_1_1.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_mongodb_mongodb_driver_sync_4_1_1.xml b/.idea/libraries/Maven__org_mongodb_mongodb_driver_sync_4_1_1.xml deleted file mode 100644 index 5fb6d25..0000000 --- a/.idea/libraries/Maven__org_mongodb_mongodb_driver_sync_4_1_1.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_objenesis_objenesis_3_1.xml b/.idea/libraries/Maven__org_objenesis_objenesis_3_1.xml deleted file mode 100644 index ae73399..0000000 --- a/.idea/libraries/Maven__org_objenesis_objenesis_3_1.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_ow2_asm_asm_9_0.xml b/.idea/libraries/Maven__org_ow2_asm_asm_9_0.xml deleted file mode 100644 index 3055eb6..0000000 --- a/.idea/libraries/Maven__org_ow2_asm_asm_9_0.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_ow2_asm_asm_analysis_9_0.xml b/.idea/libraries/Maven__org_ow2_asm_asm_analysis_9_0.xml deleted file mode 100644 index 8f1cafa..0000000 --- a/.idea/libraries/Maven__org_ow2_asm_asm_analysis_9_0.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_ow2_asm_asm_commons_9_0.xml b/.idea/libraries/Maven__org_ow2_asm_asm_commons_9_0.xml deleted file mode 100644 index c71665d..0000000 --- a/.idea/libraries/Maven__org_ow2_asm_asm_commons_9_0.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_ow2_asm_asm_tree_9_0.xml b/.idea/libraries/Maven__org_ow2_asm_asm_tree_9_0.xml deleted file mode 100644 index d0224e4..0000000 --- a/.idea/libraries/Maven__org_ow2_asm_asm_tree_9_0.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_projectlombok_lombok_1_18_18.xml b/.idea/libraries/Maven__org_projectlombok_lombok_1_18_18.xml deleted file mode 100644 index 9c76b55..0000000 --- a/.idea/libraries/Maven__org_projectlombok_lombok_1_18_18.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_slf4j_jul_to_slf4j_1_7_30.xml b/.idea/libraries/Maven__org_slf4j_jul_to_slf4j_1_7_30.xml deleted file mode 100644 index 27229ce..0000000 --- a/.idea/libraries/Maven__org_slf4j_jul_to_slf4j_1_7_30.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_30.xml b/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_30.xml deleted file mode 100644 index 02b6812..0000000 --- a/.idea/libraries/Maven__org_slf4j_slf4j_api_1_7_30.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_2_4_2.xml deleted file mode 100644 index 2b503d6..0000000 --- a/.idea/libraries/Maven__org_springframework_boot_spring_boot_2_4_2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_actuator_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_actuator_2_4_2.xml deleted file mode 100644 index 2ccd3fe..0000000 --- a/.idea/libraries/Maven__org_springframework_boot_spring_boot_actuator_2_4_2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_actuator_autoconfigure_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_actuator_autoconfigure_2_4_2.xml deleted file mode 100644 index 2a9aa26..0000000 --- a/.idea/libraries/Maven__org_springframework_boot_spring_boot_actuator_autoconfigure_2_4_2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_autoconfigure_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_autoconfigure_2_4_2.xml deleted file mode 100644 index b719b80..0000000 --- a/.idea/libraries/Maven__org_springframework_boot_spring_boot_autoconfigure_2_4_2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_2_4_2.xml deleted file mode 100644 index 53d5a86..0000000 --- a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_2_4_2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_actuator_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_actuator_2_4_2.xml deleted file mode 100644 index 46da256..0000000 --- a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_actuator_2_4_2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_data_mongodb_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_data_mongodb_2_4_2.xml deleted file mode 100644 index de53817..0000000 --- a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_data_mongodb_2_4_2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_jetty_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_jetty_2_4_2.xml deleted file mode 100644 index 88c2f55..0000000 --- a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_jetty_2_4_2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_json_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_json_2_4_2.xml deleted file mode 100644 index 1cf572a..0000000 --- a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_json_2_4_2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_logging_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_logging_2_4_2.xml deleted file mode 100644 index 5660846..0000000 --- a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_logging_2_4_2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_mail_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_mail_2_4_2.xml deleted file mode 100644 index b7a7e19..0000000 --- a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_mail_2_4_2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_thymeleaf_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_thymeleaf_2_4_2.xml deleted file mode 100644 index b5c1f6d..0000000 --- a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_thymeleaf_2_4_2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_web_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_web_2_4_2.xml deleted file mode 100644 index 5959aa6..0000000 --- a/.idea/libraries/Maven__org_springframework_boot_spring_boot_starter_web_2_4_2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_boot_spring_boot_test_2_4_2.xml b/.idea/libraries/Maven__org_springframework_boot_spring_boot_test_2_4_2.xml deleted file mode 100644 index 168ac73..0000000 --- a/.idea/libraries/Maven__org_springframework_boot_spring_boot_test_2_4_2.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_data_spring_data_commons_2_4_3.xml b/.idea/libraries/Maven__org_springframework_data_spring_data_commons_2_4_3.xml deleted file mode 100644 index 0cba724..0000000 --- a/.idea/libraries/Maven__org_springframework_data_spring_data_commons_2_4_3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_data_spring_data_mongodb_3_1_3.xml b/.idea/libraries/Maven__org_springframework_data_spring_data_mongodb_3_1_3.xml deleted file mode 100644 index c1f44d3..0000000 --- a/.idea/libraries/Maven__org_springframework_data_spring_data_mongodb_3_1_3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_aop_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_aop_5_3_3.xml deleted file mode 100644 index e83a60a..0000000 --- a/.idea/libraries/Maven__org_springframework_spring_aop_5_3_3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_beans_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_beans_5_3_3.xml deleted file mode 100644 index c8b8ba6..0000000 --- a/.idea/libraries/Maven__org_springframework_spring_beans_5_3_3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_context_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_context_5_3_3.xml deleted file mode 100644 index 92b40c1..0000000 --- a/.idea/libraries/Maven__org_springframework_spring_context_5_3_3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_context_support_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_context_support_5_3_3.xml deleted file mode 100644 index bf294a7..0000000 --- a/.idea/libraries/Maven__org_springframework_spring_context_support_5_3_3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_core_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_core_5_3_3.xml deleted file mode 100644 index 141cffc..0000000 --- a/.idea/libraries/Maven__org_springframework_spring_core_5_3_3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_expression_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_expression_5_3_3.xml deleted file mode 100644 index c576204..0000000 --- a/.idea/libraries/Maven__org_springframework_spring_expression_5_3_3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_jcl_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_jcl_5_3_3.xml deleted file mode 100644 index 9d1706a..0000000 --- a/.idea/libraries/Maven__org_springframework_spring_jcl_5_3_3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_test_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_test_5_3_3.xml deleted file mode 100644 index b5118c6..0000000 --- a/.idea/libraries/Maven__org_springframework_spring_test_5_3_3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_tx_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_tx_5_3_3.xml deleted file mode 100644 index 4180b30..0000000 --- a/.idea/libraries/Maven__org_springframework_spring_tx_5_3_3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_web_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_web_5_3_3.xml deleted file mode 100644 index 56ff993..0000000 --- a/.idea/libraries/Maven__org_springframework_spring_web_5_3_3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_springframework_spring_webmvc_5_3_3.xml b/.idea/libraries/Maven__org_springframework_spring_webmvc_5_3_3.xml deleted file mode 100644 index ec00422..0000000 --- a/.idea/libraries/Maven__org_springframework_spring_webmvc_5_3_3.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_thymeleaf_extras_thymeleaf_extras_java8time_3_0_4_RELEASE.xml b/.idea/libraries/Maven__org_thymeleaf_extras_thymeleaf_extras_java8time_3_0_4_RELEASE.xml deleted file mode 100644 index 7b246ae..0000000 --- a/.idea/libraries/Maven__org_thymeleaf_extras_thymeleaf_extras_java8time_3_0_4_RELEASE.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_thymeleaf_thymeleaf_3_0_12_RELEASE.xml b/.idea/libraries/Maven__org_thymeleaf_thymeleaf_3_0_12_RELEASE.xml deleted file mode 100644 index ef303d1..0000000 --- a/.idea/libraries/Maven__org_thymeleaf_thymeleaf_3_0_12_RELEASE.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_thymeleaf_thymeleaf_spring5_3_0_12_RELEASE.xml b/.idea/libraries/Maven__org_thymeleaf_thymeleaf_spring5_3_0_12_RELEASE.xml deleted file mode 100644 index db66650..0000000 --- a/.idea/libraries/Maven__org_thymeleaf_thymeleaf_spring5_3_0_12_RELEASE.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_unbescape_unbescape_1_1_6_RELEASE.xml b/.idea/libraries/Maven__org_unbescape_unbescape_1_1_6_RELEASE.xml deleted file mode 100644 index 2334aa0..0000000 --- a/.idea/libraries/Maven__org_unbescape_unbescape_1_1_6_RELEASE.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/libraries/Maven__org_yaml_snakeyaml_1_27.xml b/.idea/libraries/Maven__org_yaml_snakeyaml_1_27.xml deleted file mode 100644 index 5f4b15d..0000000 --- a/.idea/libraries/Maven__org_yaml_snakeyaml_1_27.xml +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml deleted file mode 100644 index 1a68899..0000000 --- a/.idea/misc.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index ce29380..0000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/.idea/ontotools-curator.iml b/.idea/ontotools-curator.iml deleted file mode 100644 index 4995b0a..0000000 --- a/.idea/ontotools-curator.iml +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml deleted file mode 100644 index e96534f..0000000 --- a/.idea/uiDesigner.xml +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index 35eb1dd..0000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java index 0656722..bb31bcb 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -20,8 +20,6 @@ public class CurationConstants { public static final String API_ENTITIES = "/entities"; - public static final String API_AUDIT_TRAIL = "/audit-trail"; - public static final String API_ONTOLOGY_TERMS = "/ontology-terms"; public static final String API_USERS = "/users"; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/AuditTrailController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/AuditTrailController.java deleted file mode 100644 index 7b34220..0000000 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/AuditTrailController.java +++ /dev/null @@ -1,62 +0,0 @@ -package uk.ac.ebi.spot.ontotools.curation.rest.controller; - -import org.slf4j.Logger; -import org.slf4j.LoggerFactory; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.HttpStatus; -import org.springframework.http.MediaType; -import org.springframework.web.bind.annotation.*; -import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; -import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; -import uk.ac.ebi.spot.ontotools.curation.domain.AuditEntry; -import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; -import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; -import uk.ac.ebi.spot.ontotools.curation.rest.assembler.AuditEntryDtoAssembler; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.audit.AuditEntryDto; -import uk.ac.ebi.spot.ontotools.curation.service.AuditEntryService; -import uk.ac.ebi.spot.ontotools.curation.service.EntityService; -import uk.ac.ebi.spot.ontotools.curation.service.JWTService; -import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; -import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; -import uk.ac.ebi.spot.ontotools.curation.util.HeadersUtil; - -import javax.servlet.http.HttpServletRequest; -import java.util.Arrays; -import java.util.List; -import java.util.stream.Collectors; - -@RestController -@RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) -public class AuditTrailController { - - private static final Logger log = LoggerFactory.getLogger(ProjectsController.class); - - @Autowired - private JWTService jwtService; - - @Autowired - private ProjectService projectService; - - @Autowired - private EntityService entityService; - - @Autowired - private AuditEntryService auditEntryService; - - /** - * GET /v1/projects/{projectId}/entities/{entityId}/audit-trail - */ - @GetMapping(value = "/{projectId}" + CurationConstants.API_ENTITIES + "/{entityId}" + CurationConstants.API_AUDIT_TRAIL, - produces = MediaType.APPLICATION_JSON_VALUE) - @ResponseStatus(HttpStatus.OK) - public List getEntities(@PathVariable String projectId, - @PathVariable String entityId, - HttpServletRequest request) { - User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); - log.info("[{}] Request to retrieve audit trail for entity: {} | {}", user.getEmail(), projectId, entityId); - projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR, ProjectRole.CONSUMER})); - Entity entity = entityService.retrieveEntity(entityId); - List auditTrail = auditEntryService.retrieveAuditEntries(entity.getId()); - return auditTrail.stream().map(AuditEntryDtoAssembler::assemble).collect(Collectors.toList()); - } -} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java index 8b313d3..cea3d5e 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java @@ -78,6 +78,7 @@ public RestResponsePage getEntities(@PathVariable String projectId, @ Map> mappingSuggestions = mappingSuggestionsService.retrieveMappingSuggestionsForEntities(entityIds); log.info("Assembling results ..."); List entityDtos = new ArrayList<>(); + //auditEntryService.retrieveAuditEntries(entity.getId()) for (Entity entity : entities.getContent()) { entityDtos.add(EntityDtoAssembler.assemble(entity, sourceMap.get(entity.getSourceId()), mappings.get(entity.getId()), diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/AuditTrailControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/AuditTrailControllerTest.java deleted file mode 100644 index 7947a8f..0000000 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/AuditTrailControllerTest.java +++ /dev/null @@ -1,70 +0,0 @@ -package uk.ac.ebi.spot.ontotools.curation; - -import com.fasterxml.jackson.core.type.TypeReference; -import org.junit.Test; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.http.MediaType; -import org.springframework.test.context.ContextConfiguration; -import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; -import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; -import uk.ac.ebi.spot.ontotools.curation.domain.Project; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.audit.AuditEntryDto; -import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; -import uk.ac.ebi.spot.ontotools.curation.service.UserService; -import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; - -import java.util.Arrays; -import java.util.List; - -import static org.junit.Assert.assertTrue; -import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; -import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; - -@ContextConfiguration(classes = {IntegrationTest.MockTaskExecutorConfig.class}) -public class AuditTrailControllerTest extends IntegrationTest { - - @Autowired - private UserService userService; - - @Autowired - private ProjectService projectService; - - private Project project; - - private SourceDto sourceDto; - - @Override - public void setup() throws Exception { - super.setup(); - List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); - List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); - ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo", 0); - user1 = userService.findByEmail(user1.getEmail()); - project = projectService.retrieveProject(projectDto.getId(), user1); - sourceDto = super.createSource(project.getId()); - - super.createEntityTestData(sourceDto.getId(), project.getId(), user1); - } - - /** - * GET /v1/projects/{projectId}/entities/{entityId}/audit-trail - */ - @Test - public void shouldGetEntity() throws Exception { - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + - CurationConstants.API_ENTITIES + "/" + entity.getId() + CurationConstants.API_AUDIT_TRAIL; - String response = mockMvc.perform(get(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .header(IDPConstants.JWT_TOKEN, "token1")) - .andExpect(status().isOk()) - .andReturn() - .getResponse() - .getContentAsString(); - - List actual = mapper.readValue(response, new TypeReference<>() { - }); - assertTrue(actual.isEmpty()); - } -} From 30e5d706ce0d6cb7cf32af922f45a78f9eab364b Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Sat, 20 Mar 2021 09:22:47 +0800 Subject: [PATCH 54/72] Added audit trail on entities. --- .../curation/constants/CurationConstants.java | 2 + .../rest/controller/AuditTrailController.java | 62 ++++++++++++++++ .../curation/AuditTrailControllerTest.java | 70 +++++++++++++++++++ 3 files changed, 134 insertions(+) create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/AuditTrailController.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/AuditTrailControllerTest.java diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java index bb31bcb..6fdfac3 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -22,6 +22,8 @@ public class CurationConstants { public static final String API_ONTOLOGY_TERMS = "/ontology-terms"; + public static final String API_AUDIT_TRAIL = "/audit-trail"; + public static final String API_USERS = "/users"; public static final String API_REVIEWS = "/reviews"; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/AuditTrailController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/AuditTrailController.java new file mode 100644 index 0000000..7b34220 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/AuditTrailController.java @@ -0,0 +1,62 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.controller; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.web.bind.annotation.*; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; +import uk.ac.ebi.spot.ontotools.curation.domain.AuditEntry; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.AuditEntryDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.audit.AuditEntryDto; +import uk.ac.ebi.spot.ontotools.curation.service.AuditEntryService; +import uk.ac.ebi.spot.ontotools.curation.service.EntityService; +import uk.ac.ebi.spot.ontotools.curation.service.JWTService; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; +import uk.ac.ebi.spot.ontotools.curation.util.HeadersUtil; + +import javax.servlet.http.HttpServletRequest; +import java.util.Arrays; +import java.util.List; +import java.util.stream.Collectors; + +@RestController +@RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) +public class AuditTrailController { + + private static final Logger log = LoggerFactory.getLogger(ProjectsController.class); + + @Autowired + private JWTService jwtService; + + @Autowired + private ProjectService projectService; + + @Autowired + private EntityService entityService; + + @Autowired + private AuditEntryService auditEntryService; + + /** + * GET /v1/projects/{projectId}/entities/{entityId}/audit-trail + */ + @GetMapping(value = "/{projectId}" + CurationConstants.API_ENTITIES + "/{entityId}" + CurationConstants.API_AUDIT_TRAIL, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public List getEntities(@PathVariable String projectId, + @PathVariable String entityId, + HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to retrieve audit trail for entity: {} | {}", user.getEmail(), projectId, entityId); + projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR, ProjectRole.CONSUMER})); + Entity entity = entityService.retrieveEntity(entityId); + List auditTrail = auditEntryService.retrieveAuditEntries(entity.getId()); + return auditTrail.stream().map(AuditEntryDtoAssembler::assemble).collect(Collectors.toList()); + } +} diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/AuditTrailControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/AuditTrailControllerTest.java new file mode 100644 index 0000000..7947a8f --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/AuditTrailControllerTest.java @@ -0,0 +1,70 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import com.fasterxml.jackson.core.type.TypeReference; +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.MediaType; +import org.springframework.test.context.ContextConfiguration; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.audit.AuditEntryDto; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; +import uk.ac.ebi.spot.ontotools.curation.service.UserService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; + +import java.util.Arrays; +import java.util.List; + +import static org.junit.Assert.assertTrue; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; + +@ContextConfiguration(classes = {IntegrationTest.MockTaskExecutorConfig.class}) +public class AuditTrailControllerTest extends IntegrationTest { + + @Autowired + private UserService userService; + + @Autowired + private ProjectService projectService; + + private Project project; + + private SourceDto sourceDto; + + @Override + public void setup() throws Exception { + super.setup(); + List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); + List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); + ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo", 0); + user1 = userService.findByEmail(user1.getEmail()); + project = projectService.retrieveProject(projectDto.getId(), user1); + sourceDto = super.createSource(project.getId()); + + super.createEntityTestData(sourceDto.getId(), project.getId(), user1); + } + + /** + * GET /v1/projects/{projectId}/entities/{entityId}/audit-trail + */ + @Test + public void shouldGetEntity() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + + CurationConstants.API_ENTITIES + "/" + entity.getId() + CurationConstants.API_AUDIT_TRAIL; + String response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + List actual = mapper.readValue(response, new TypeReference<>() { + }); + assertTrue(actual.isEmpty()); + } +} From 2dc2b8d7ae6e024e3676ade34d650d1baeb37d59 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Mon, 22 Mar 2021 20:25:54 +0800 Subject: [PATCH 55/72] Fixed payload on PUT mappings. --- .../curation/rest/controller/MappingsController.java | 6 +++--- .../ontotools/curation/MappingsControllerTest.java | 11 ++++++++++- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java index 609047b..a7c570c 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java @@ -123,15 +123,15 @@ public MappingDto createMapping(@PathVariable String projectId, @RequestBody @Va consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.OK) - public MappingDto updateMapping(@PathVariable String projectId, @PathVariable String mappingId, @RequestBody @NotEmpty @Valid List ontologyTermsDtos, HttpServletRequest request) { + public MappingDto updateMapping(@PathVariable String projectId, @PathVariable String mappingId, @RequestBody @NotEmpty @Valid MappingDto mappingDto, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); - log.info("[{}] Request to update mapping [{} | {}]: {}", user.getEmail(), projectId, mappingId, ontologyTermsDtos); + log.info("[{}] Request to update mapping [{} | {}]: {}", user.getEmail(), projectId, mappingId, mappingDto.getOntologyTerms()); projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); Map ontologyTermMap = new LinkedHashMap<>(); List ontologyTerms = new ArrayList<>(); - for (OntologyTermDto ontologyTermDto : ontologyTermsDtos) { + for (OntologyTermDto ontologyTermDto : mappingDto.getOntologyTerms()) { OntologyTerm ontologyTerm = ontologyTermService.retrieveTermByCurie(ontologyTermDto.getCurie()); ontologyTermMap.put(ontologyTerm.getId(), ontologyTerm); ontologyTerms.add(ontologyTerm); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java index ab7e403..8e2014d 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java @@ -142,10 +142,19 @@ public void shouldUpdateMapping() throws Exception { ontologyTermDtos.add(OntologyTermDtoAssembler.assemble(ontologyTermRepository.findByCurie("MONDO:0007037").get())); ontologyTermDtos.add(OntologyTermDtoAssembler.assemble(ontologyTermRepository.findByCurie("Orphanet:15").get())); + MappingDto updated = new MappingDto(mappingDto.getId(), + mappingDto.getEntityId(), + ontologyTermDtos, + mappingDto.isReviewed(), + mappingDto.getStatus(), + mappingDto.getReviews(), + mappingDto.getComments(), + mappingDto.getCreated()); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_MAPPINGS + "/" + mappingDto.getId(); String response = mockMvc.perform(put(endpoint) .contentType(MediaType.APPLICATION_JSON) - .content(mapper.writeValueAsString(ontologyTermDtos)) + .content(mapper.writeValueAsString(updated)) .header(IDPConstants.JWT_TOKEN, "token1")) .andExpect(status().isOk()) .andReturn() From 1e5e20a32aa5549fa820b2c074a7b3513f2d9d20 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Mon, 22 Mar 2021 21:04:41 +0800 Subject: [PATCH 56/72] Added back suggestions on creating a mapping. --- .../rest/controller/MappingsController.java | 23 +------- .../curation/MappingsControllerTest.java | 59 ++++++++++--------- 2 files changed, 33 insertions(+), 49 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java index a7c570c..d23dd64 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java @@ -105,14 +105,8 @@ public MappingDto createMapping(@PathVariable String projectId, @RequestBody @Va /** * Updating mapping status to MANUAL. */ - entity = entityService.updateMappingStatus(entity, EntityStatus.MANUALLY_MAPPED); + entityService.updateMappingStatus(entity, EntityStatus.MANUALLY_MAPPED); - /** - * Deleting mapping suggestions associated with the current ontology term. - */ - for (OntologyTerm ontologyTerm : ontologyTerms) { - mappingSuggestionsService.deleteMappingSuggestions(entity.getId(), ontologyTerm, provenance); - } return MappingDtoAssembler.assemble(created); } @@ -151,20 +145,7 @@ public MappingDto updateMapping(@PathVariable String projectId, @PathVariable St * Updating mapping status to MANUAL. */ Entity entity = entityService.retrieveEntity(updated.getEntityId()); - entity = entityService.updateMappingStatus(entity, EntityStatus.MANUALLY_MAPPED); - - /** - * Deleting mapping suggestions associated with the new ontology terms - */ - for (String oId : ontologyTermMap.keySet()) { - mappingSuggestionsService.deleteMappingSuggestions(entity.getId(), ontologyTermMap.get(oId), provenance); - } - /** - * Create mapping suggestions associated with the old ontology terms - */ - for (OntologyTerm ontologyTerm : old) { - mappingSuggestionsService.createMappingSuggestion(entity, ontologyTerm, provenance); - } + entityService.updateMappingStatus(entity, EntityStatus.MANUALLY_MAPPED); updated.setOntologyTerms(ontologyTerms); return MappingDtoAssembler.assemble(updated); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java index 8e2014d..4ea3fdf 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java @@ -13,8 +13,10 @@ import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.audit.AuditEntryDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.audit.MetadataEntryDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingCreationDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingSuggestionDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.OntologyTermDto; import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; import uk.ac.ebi.spot.ontotools.curation.service.UserService; @@ -112,24 +114,21 @@ public void shouldCreateMapping() throws Exception { assertEquals("Achondroplasia", actualEntity.getMapping().getOntologyTerms().get(0).getLabel()); assertEquals("MONDO:0007037", actualEntity.getMapping().getOntologyTerms().get(0).getCurie()); - assertEquals(1, actualEntity.getMappingSuggestions().size()); - assertEquals("Orphanet:15", actualEntity.getMappingSuggestions().get(0).getOntologyTerm().getCurie()); + assertEquals(2, actualEntity.getMappingSuggestions().size()); + List curies = new ArrayList<>(); + for (MappingSuggestionDto mappingSuggestionDto : actualEntity.getMappingSuggestions()) { + curies.add(mappingSuggestionDto.getOntologyTerm().getCurie()); + } + assertTrue(curies.contains("Orphanet:15")); + assertTrue(curies.contains("MONDO:0007037")); assertEquals(sourceDto.getId(), actualEntity.getSource().getId()); - assertEquals(2, actualEntity.getAuditTrail().size()); - for (AuditEntryDto auditEntryDto : actualEntity.getAuditTrail()) { - assertTrue(auditEntryDto.getAction().equalsIgnoreCase(AuditEntryConstants.ADDED_MAPPING.name()) || - auditEntryDto.getAction().equalsIgnoreCase(AuditEntryConstants.REMOVED_SUGGESTION.name())); - if (auditEntryDto.getAction().equalsIgnoreCase(AuditEntryConstants.REMOVED_SUGGESTION.name())) { - assertEquals(1, auditEntryDto.getMetadata().size()); - assertEquals("http://purl.obolibrary.org/obo/MONDO_0007037", auditEntryDto.getMetadata().get(0).getKey()); - } - if (auditEntryDto.getAction().equalsIgnoreCase(AuditEntryConstants.ADDED_MAPPING.name())) { - assertEquals(1, auditEntryDto.getMetadata().size()); - assertEquals("http://purl.obolibrary.org/obo/MONDO_0007037", auditEntryDto.getMetadata().get(0).getKey()); - } - } + assertEquals(1, actualEntity.getAuditTrail().size()); + AuditEntryDto auditEntryDto = actualEntity.getAuditTrail().get(0); + assertTrue(auditEntryDto.getAction().equalsIgnoreCase(AuditEntryConstants.ADDED_MAPPING.name())); + assertEquals(1, auditEntryDto.getMetadata().size()); + assertEquals("http://purl.obolibrary.org/obo/MONDO_0007037", auditEntryDto.getMetadata().get(0).getKey()); } /** @@ -190,22 +189,26 @@ public void shouldUpdateMapping() throws Exception { assertNotNull(actualEntity.getMapping()); assertEquals(2, actualEntity.getMapping().getOntologyTerms().size()); - assertEquals(0, actualEntity.getMappingSuggestions().size()); - assertEquals(3, actualEntity.getAuditTrail().size()); + assertEquals(2, actualEntity.getMappingSuggestions().size()); + curies = new ArrayList<>(); + for (MappingSuggestionDto mappingSuggestionDto : actualEntity.getMappingSuggestions()) { + curies.add(mappingSuggestionDto.getOntologyTerm().getCurie()); + } + assertTrue(curies.contains("Orphanet:15")); + assertTrue(curies.contains("MONDO:0007037")); - int noRemovedSuggestions = 0; - int noUpdatedMapping = 0; - for (AuditEntryDto auditEntryDto : actualEntity.getAuditTrail()) { - if (auditEntryDto.getAction().equalsIgnoreCase(AuditEntryConstants.UPDATED_MAPPING.name())) { - noUpdatedMapping++; - } - if (auditEntryDto.getAction().equalsIgnoreCase(AuditEntryConstants.REMOVED_SUGGESTION.name())) { - noRemovedSuggestions++; - } + assertEquals(1, actualEntity.getAuditTrail().size()); + AuditEntryDto auditEntryDto = actualEntity.getAuditTrail().get(0); + assertTrue(auditEntryDto.getAction().equalsIgnoreCase(AuditEntryConstants.UPDATED_MAPPING.name())); + assertEquals(2, auditEntryDto.getMetadata().size()); + + curies = new ArrayList<>(); + for (MetadataEntryDto metadataEntryDto : auditEntryDto.getMetadata()) { + curies.add(metadataEntryDto.getKey()); } - assertEquals(2, noRemovedSuggestions); - assertEquals(1, noUpdatedMapping); + assertTrue(curies.contains("MONDO:0007037")); + assertTrue(curies.contains("Orphanet:15")); } /** From 2c4e56dcc204b06f39d0f2d207cc57a8c85e3ab0 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Tue, 23 Mar 2021 15:27:24 +0800 Subject: [PATCH 57/72] Fixed user management bug. --- .../service/impl/UserServiceImpl.java | 48 ++++++++++--------- 1 file changed, 25 insertions(+), 23 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java index ef994fd..500803f 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java @@ -67,23 +67,23 @@ public User findRandomSuperUser() { } @Override - public User addUserToProject(User user, String projectId, List roles) { - log.info("Adding project [{}] to user [{}] with roles: {}", projectId, user.getName(), roles); - if (user.getRoles() == null) { - user.setRoles(new ArrayList<>()); + public User addUserToProject(User targetUser, String projectId, List roles) { + User existing = this.findByEmail(targetUser.getEmail()); + log.info("Adding project [{}] to user [{}] with roles: {}", projectId, existing.getName(), roles); + if (existing.getRoles() == null) { + existing.setRoles(new ArrayList<>()); } List existingRoles = new ArrayList<>(); List toRemove = new ArrayList<>(); - for (Role role : user.getRoles()) { + for (Role role : existing.getRoles()) { if (role.getProjectId().equalsIgnoreCase(projectId)) { existingRoles.add(role.getRole()); toRemove.add(role); } } for (Role role : toRemove) { - user.getRoles().remove(role); + existing.getRoles().remove(role); } - for (ProjectRole projectRole : roles) { if (!existingRoles.contains(projectRole)) { existingRoles.add(projectRole); @@ -91,28 +91,29 @@ public User addUserToProject(User user, String projectId, List role } for (ProjectRole projectRole : existingRoles) { - user.getRoles().add(new Role(projectId, projectRole)); + existing.getRoles().add(new Role(projectId, projectRole)); } - return userRepository.save(user); + return userRepository.save(existing); } @Override - public User updateUserRoles(User user, String projectId, List projectRoles) { - log.info("Updating roles for user [{}] in project: {}", user.getEmail(), projectId); + public User updateUserRoles(User targetUser, String projectId, List projectRoles) { + User existing = this.findByEmail(targetUser.getEmail()); + log.info("Updating roles for user [{}] in project: {}", existing.getEmail(), projectId); List toRemove = new ArrayList<>(); - for (Role role : user.getRoles()) { + for (Role role : existing.getRoles()) { if (role.getProjectId().equalsIgnoreCase(projectId)) { toRemove.add(role); } } for (Role role : toRemove) { - user.getRoles().remove(role); + existing.getRoles().remove(role); } for (ProjectRole projectRole : projectRoles) { - user.getRoles().add(new Role(projectId, projectRole)); + existing.getRoles().add(new Role(projectId, projectRole)); } - return userRepository.save(user); + return userRepository.save(existing); } @Override @@ -129,24 +130,25 @@ public User findById(String userId) { } @Override - public void removeProjectFromUser(User user, String projectId) { - log.info("Removing project [{}] from user: {}", projectId, user.getName()); - if (user.getRoles() == null) { - user.setRoles(new ArrayList<>()); + public void removeProjectFromUser(User targetUser, String projectId) { + User existing = this.findByEmail(targetUser.getEmail()); + log.info("Removing project [{}] from user: {}", projectId, existing.getName()); + if (existing.getRoles() == null) { + existing.setRoles(new ArrayList<>()); } Role found = null; - for (Role role : user.getRoles()) { + for (Role role : existing.getRoles()) { if (role.getProjectId().equals(projectId)) { found = role; break; } } if (found != null) { - user.getRoles().remove(found); - userRepository.save(user); + existing.getRoles().remove(found); + userRepository.save(existing); } else { - log.warn("Unable to find project [{}] associated with user: {}", projectId, user.getName()); + log.warn("Unable to find project [{}] associated with user: {}", projectId, existing.getName()); } } From 7631892d92ee7b076fdd6f1a3497ed928e3fb9dd Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Tue, 23 Mar 2021 20:53:12 +0800 Subject: [PATCH 58/72] Added OLS Search endpoint. --- .../config/RestInteractionConfig.java | 7 ++ .../curation/constants/CurationConstants.java | 4 ++ .../constants/RestInteractionConstants.java | 2 + .../controller/ProjectsUtilController.java | 45 +++++++++++++ .../curation/rest/dto/ols/OLSQueryDocDto.java | 66 +++++++++++++++++++ .../rest/dto/ols/OLSQueryResponseDto.java | 29 ++++++++ .../dto/ols/OLSQueryResponseEntryDto.java | 48 ++++++++++++++ .../curation/service/OLSService.java | 3 + .../curation/service/impl/OLSServiceImpl.java | 30 ++++++++- src/main/resources/application.yml | 1 + .../ontotools/curation/OLSServiceTest.java | 17 ++++- .../curation/ProjectsUtilControllerTest.java | 46 +++++++++++++ .../rest/dto/ols/OLSQueryDocDtoTest.java | 13 ++++ .../rest/dto/ols/OLSQueryResponseDtoTest.java | 13 ++++ .../dto/ols/OLSQueryResponseEntryDtoTest.java | 13 ++++ 15 files changed, 334 insertions(+), 3 deletions(-) create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsUtilController.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryDocDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryResponseDto.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryResponseEntryDto.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsUtilControllerTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryDocDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryResponseDtoTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryResponseEntryDtoTest.java diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/RestInteractionConfig.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/RestInteractionConfig.java index 275c022..05ad723 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/RestInteractionConfig.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/RestInteractionConfig.java @@ -25,6 +25,9 @@ public class RestInteractionConfig { @Value("${ontotools.ols.endpoints.ontologies}") private String olsOntologiesEndpoint; + @Value("${ontotools.ols.endpoints.search}") + private String olsSearchEndpoint; + @Value("${server.name}") private String serverName; @@ -55,4 +58,8 @@ public String getOlsBase() { public String getOlsOntologiesEndpoint() { return olsBase + olsOntologiesEndpoint; } + + public String getOlsSearchEndpoint() { + return olsBase + olsSearchEndpoint; + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java index 6fdfac3..8a87a95 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -30,8 +30,12 @@ public class CurationConstants { public static final String API_COMMENTS = "/comments"; + public static final String API_SEARCH_OLS = "/searchOLS"; + public static final String PARAM_ENTITY_ID = "entityId"; + public static final String PARAM_QUERY = "query"; + public static final String ZOOMA_CONFIDENCE_HIGH = "HIGH"; public static final String CONTEXT_DEFAULT = "DEFAULT"; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/RestInteractionConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/RestInteractionConstants.java index 99b236e..1d2b624 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/RestInteractionConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/RestInteractionConstants.java @@ -18,6 +18,8 @@ public class RestInteractionConstants { public static final String OLS_IDTYPE_IRI = "iri"; + public static final String OLS_PARAM_Q = "q"; + public static String zoomaFilterValueFromList(List datasources, List ontologies) { if (datasources != null && !datasources.isEmpty()) { return ZOOMA_FILTER_VALUE_REQUIRED + ":[" + StringUtils.join(datasources, ",") + "]"; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsUtilController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsUtilController.java new file mode 100644 index 0000000..d7fc19b --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsUtilController.java @@ -0,0 +1,45 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.controller; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.web.bind.annotation.*; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSQueryDocDto; +import uk.ac.ebi.spot.ontotools.curation.service.JWTService; +import uk.ac.ebi.spot.ontotools.curation.service.OLSService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; +import uk.ac.ebi.spot.ontotools.curation.util.HeadersUtil; + +import javax.servlet.http.HttpServletRequest; +import java.util.List; + +@RestController +@RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) +public class ProjectsUtilController { + + private static final Logger log = LoggerFactory.getLogger(ProjectsController.class); + + @Autowired + private JWTService jwtService; + + @Autowired + private OLSService olsService; + + /** + * GET /v1/projects/{projectId}/searchOLS?query= + */ + @GetMapping(value = "/{projectId}" + CurationConstants.API_SEARCH_OLS, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public List getProject(@PathVariable String projectId, + @RequestParam(value = CurationConstants.PARAM_QUERY) String query, + HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to query OLS [{}]: {}", user.getEmail(), projectId, query); + return olsService.query(query); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryDocDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryDocDto.java new file mode 100644 index 0000000..23fa95e --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryDocDto.java @@ -0,0 +1,66 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.ols; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import java.io.Serializable; +import java.util.List; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +@JsonIgnoreProperties(ignoreUnknown = true) +public final class OLSQueryDocDto implements Serializable { + + private static final long serialVersionUID = -1340048985906827319L; + + @JsonProperty("iri") + private final String iri; + + @JsonProperty("obo_id") + private final String curie; + + @JsonProperty("label") + private final String label; + + @JsonProperty("description") + private final List description; + + @JsonProperty("ontology_name") + private final String ontologyName; + + @JsonCreator + public OLSQueryDocDto(@JsonProperty("iri") String iri, + @JsonProperty("obo_id") String curie, + @JsonProperty("label") String label, + @JsonProperty("description") List description, + @JsonProperty("ontology_name") String ontologyName) { + this.iri = iri; + this.curie = curie; + this.label = label; + this.description = description; + this.ontologyName = ontologyName; + } + + public String getIri() { + return iri; + } + + public String getCurie() { + return curie; + } + + public String getLabel() { + return label; + } + + public List getDescription() { + return description; + } + + public String getOntologyName() { + return ontologyName; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryResponseDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryResponseDto.java new file mode 100644 index 0000000..1e219b2 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryResponseDto.java @@ -0,0 +1,29 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.ols; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +@JsonIgnoreProperties(ignoreUnknown = true) +public final class OLSQueryResponseDto implements Serializable { + + private static final long serialVersionUID = 6519860430552605535L; + + @JsonProperty("response") + private final OLSQueryResponseEntryDto response; + + @JsonCreator + public OLSQueryResponseDto(@JsonProperty("response") OLSQueryResponseEntryDto response) { + this.response = response; + } + + public OLSQueryResponseEntryDto getResponse() { + return response; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryResponseEntryDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryResponseEntryDto.java new file mode 100644 index 0000000..686061c --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryResponseEntryDto.java @@ -0,0 +1,48 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.ols; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonIgnoreProperties; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import java.io.Serializable; +import java.util.List; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +@JsonIgnoreProperties(ignoreUnknown = true) +public final class OLSQueryResponseEntryDto implements Serializable { + + private static final long serialVersionUID = 7846676429881522819L; + + @JsonProperty("numFound") + private final Integer numFound; + + @JsonProperty("start") + private final Integer start; + + @JsonProperty("docs") + private final List docs; + + @JsonCreator + public OLSQueryResponseEntryDto(@JsonProperty("numFound") Integer numFound, + @JsonProperty("start") Integer start, + @JsonProperty("docs") List docs) { + this.numFound = numFound; + this.start = start; + this.docs = docs; + } + + public Integer getNumFound() { + return numFound; + } + + public Integer getStart() { + return start; + } + + public List getDocs() { + return docs; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OLSService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OLSService.java index f040e05..482ac62 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OLSService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OLSService.java @@ -1,5 +1,6 @@ package uk.ac.ebi.spot.ontotools.curation.service; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSQueryDocDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; import java.util.List; @@ -7,4 +8,6 @@ public interface OLSService { List retrieveTerms(String ontologyId, String identifierValue); + + List query(String prefix); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java index 679236e..ca328aa 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java @@ -13,6 +13,8 @@ import org.springframework.web.util.UriComponentsBuilder; import uk.ac.ebi.spot.ontotools.curation.config.RestInteractionConfig; import uk.ac.ebi.spot.ontotools.curation.constants.RestInteractionConstants; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSQueryDocDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSQueryResponseDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSResponseDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; import uk.ac.ebi.spot.ontotools.curation.service.ConfigListener; @@ -93,13 +95,39 @@ public List retrieveTerms(String ontologyId, String identifierValue) return new ArrayList<>(); } + @Override + public List query(String prefix) { + log.info("Calling OLS search: {}", prefix); + UriComponentsBuilder uriBuilder = UriComponentsBuilder.fromHttpUrl(restInteractionConfig.getOlsSearchEndpoint()) + .queryParam(RestInteractionConstants.OLS_PARAM_Q, prefix); + String endpoint = uriBuilder.build().toUriString(); + + try { + HttpEntity httpEntity = restInteractionConfig.httpEntity().build(); + ResponseEntity response = + restTemplate.exchange(endpoint, + HttpMethod.GET, httpEntity, + new ParameterizedTypeReference<>() { + }); + + if (response.getStatusCode().equals(HttpStatus.OK)) { + log.info("OLS query [{}]: received {} docs.", prefix, response.getBody().getResponse().getDocs().size()); + return response.getBody().getResponse().getDocs(); + } + } catch (Exception e) { + log.error("Unable to call OLS: {}", e.getMessage(), e); + } + + return new ArrayList<>(); + } + /** * TODO: Implement * Scheduled task to periodically go through all local terms with status CURRENT | AWAITING_IMPORT or NEEDS_IMPORT * and repeat the process associated with checking the status - as per the initial term creation *

* Why?? - * + *

* Do we have to introduce project-based terms? If not - how do we use project preferences to do this import? */ public void importOLS() { diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 35ef6d0..8403fac 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -27,6 +27,7 @@ ontotools: base: https://www.ebi.ac.uk/ols/api endpoints: ontologies: /ontologies + search: /search --- diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OLSServiceTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OLSServiceTest.java index 3021ca3..bf1611a 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OLSServiceTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OLSServiceTest.java @@ -2,13 +2,13 @@ import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSQueryDocDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; import uk.ac.ebi.spot.ontotools.curation.service.OLSService; import java.util.List; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertFalse; +import static org.junit.Assert.*; public class OLSServiceTest extends IntegrationTest { @@ -28,4 +28,17 @@ public void shouldRetrieveTerms() { assertFalse(terms.get(0).getObsolete()); } + @Test + public void shouldQuery() { + String prefix = "diabetes"; + + List docs = olsService.query(prefix); + assertEquals(10, docs.size()); + + for (OLSQueryDocDto olsQueryDocDto : docs) { + if (olsQueryDocDto.getOntologyName().equalsIgnoreCase("efo")) { + assertEquals("EFO:0000400", olsQueryDocDto.getCurie()); + } + } + } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsUtilControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsUtilControllerTest.java new file mode 100644 index 0000000..c15602f --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsUtilControllerTest.java @@ -0,0 +1,46 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import com.fasterxml.jackson.core.type.TypeReference; +import org.junit.Test; +import org.springframework.http.MediaType; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSQueryDocDto; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; + +import java.util.List; + +import static org.junit.Assert.assertEquals; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; + +public class ProjectsUtilControllerTest extends IntegrationTest { + + /** + * GET /v1/projects/{projectId}/searchOLS?query= + */ + @Test + public void shouldQueryOLS() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_SEARCH_OLS + + "?" + CurationConstants.PARAM_QUERY + "=diabetes"; + String response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + List docs = mapper.readValue(response, new TypeReference<>() { + }); + assertEquals(10, docs.size()); + for (OLSQueryDocDto olsQueryDocDto : docs) { + if (olsQueryDocDto.getOntologyName().equalsIgnoreCase("efo")) { + assertEquals("EFO:0000400", olsQueryDocDto.getCurie()); + } + } + } + +} diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryDocDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryDocDtoTest.java new file mode 100644 index 0000000..b067d46 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryDocDtoTest.java @@ -0,0 +1,13 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.ols; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class OLSQueryDocDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(OLSQueryDocDto.class) + .verify(); + } +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryResponseDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryResponseDtoTest.java new file mode 100644 index 0000000..0b555bb --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryResponseDtoTest.java @@ -0,0 +1,13 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.ols; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class OLSQueryResponseDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(OLSQueryResponseDto.class) + .verify(); + } +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryResponseEntryDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryResponseEntryDtoTest.java new file mode 100644 index 0000000..fc74f41 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSQueryResponseEntryDtoTest.java @@ -0,0 +1,13 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.ols; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class OLSQueryResponseEntryDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(OLSQueryResponseEntryDto.class) + .verify(); + } +} \ No newline at end of file From a37f7f08fc672abbacc16a5badb895a5d31bbb06 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Tue, 23 Mar 2021 21:50:51 +0800 Subject: [PATCH 59/72] Fixed semantics in audit trail entries. --- .../constants/AuditEntryConstants.java | 2 + .../curation/domain/MetadataEntry.java | 2 + .../assembler/MetadataEntryDtoAssembler.java | 2 +- .../rest/controller/MappingsController.java | 22 +++++----- .../rest/dto/audit/MetadataEntryDto.java | 12 +++++- .../curation/service/AuditEntryService.java | 4 +- .../curation/service/MappingService.java | 5 ++- .../service/impl/AuditEntryServiceImpl.java | 9 +---- .../service/impl/MappingServiceImpl.java | 40 ++++++++++++++----- .../impl/MappingSuggestionsServiceImpl.java | 12 +++--- .../curation/MappingsControllerTest.java | 4 +- 11 files changed, 73 insertions(+), 41 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/AuditEntryConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/AuditEntryConstants.java index 157ece6..4bed581 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/AuditEntryConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/AuditEntryConstants.java @@ -2,6 +2,8 @@ public enum AuditEntryConstants { + ADDED, + REMOVED, ADDED_SUGGESTION, REMOVED_SUGGESTION, ADDED_MAPPING, diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MetadataEntry.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MetadataEntry.java index 2fabbf8..2716ec5 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MetadataEntry.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MetadataEntry.java @@ -10,4 +10,6 @@ public class MetadataEntry { private String key; private String value; + + private String action; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MetadataEntryDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MetadataEntryDtoAssembler.java index a06e050..1a6d43b 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MetadataEntryDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MetadataEntryDtoAssembler.java @@ -5,6 +5,6 @@ public class MetadataEntryDtoAssembler { public static MetadataEntryDto assemble(MetadataEntry metadataEntry) { - return new MetadataEntryDto(metadataEntry.getKey(), metadataEntry.getValue()); + return new MetadataEntryDto(metadataEntry.getKey(), metadataEntry.getValue(), metadataEntry.getAction()); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java index d23dd64..fa9ec36 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java @@ -7,9 +7,11 @@ import org.springframework.http.HttpStatus; import org.springframework.http.MediaType; import org.springframework.web.bind.annotation.*; +import uk.ac.ebi.spot.ontotools.curation.constants.AuditEntryConstants; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; +import uk.ac.ebi.spot.ontotools.curation.domain.MetadataEntry; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; @@ -124,30 +126,32 @@ public MappingDto updateMapping(@PathVariable String projectId, @PathVariable St Provenance provenance = new Provenance(user.getName(), user.getEmail(), DateTime.now()); Map ontologyTermMap = new LinkedHashMap<>(); - List ontologyTerms = new ArrayList<>(); + List newTerms = new ArrayList<>(); + List newTermIds = new ArrayList<>(); for (OntologyTermDto ontologyTermDto : mappingDto.getOntologyTerms()) { OntologyTerm ontologyTerm = ontologyTermService.retrieveTermByCurie(ontologyTermDto.getCurie()); ontologyTermMap.put(ontologyTerm.getId(), ontologyTerm); - ontologyTerms.add(ontologyTerm); + newTerms.add(ontologyTerm); + newTermIds.add(ontologyTerm.getId()); } Mapping existing = mappingService.retrieveMappingById(mappingId); List existingOntoIds = existing.getOntologyTermIds(); - Mapping updated = mappingService.updateMapping(mappingId, ontologyTerms, provenance); - - List old = new ArrayList<>(); + List oldTerms = new ArrayList<>(); for (String oId : existingOntoIds) { if (!ontologyTermMap.containsKey(oId)) { - old.add(ontologyTermService.retrieveTermById(oId)); + oldTerms.add(ontologyTermService.retrieveTermById(oId)); } } + Mapping updated = mappingService.updateMapping(mappingId, newTerms, newTermIds, oldTerms, provenance); + /** * Updating mapping status to MANUAL. */ Entity entity = entityService.retrieveEntity(updated.getEntityId()); entityService.updateMappingStatus(entity, EntityStatus.MANUALLY_MAPPED); - updated.setOntologyTerms(ontologyTerms); + updated.setOntologyTerms(newTerms); return MappingDtoAssembler.assemble(updated); } @@ -168,11 +172,11 @@ public void deleteMapping(@PathVariable String projectId, @PathVariable String m List ontoTermIds = mapping.getOntologyTermIds(); Map ontologyTermMap = new LinkedHashMap<>(); - Map metadata = new LinkedHashMap<>(); + List metadata = new ArrayList<>(); for (String ontoTermId : ontoTermIds) { OntologyTerm ontologyTerm = ontologyTermService.retrieveTermById(ontoTermId); ontologyTermMap.put(ontoTermId, ontologyTerm); - metadata.put(ontologyTerm.getIri(), ontologyTerm.getLabel()); + metadata.add(new MetadataEntry(ontologyTerm.getIri(), ontologyTerm.getLabel(), AuditEntryConstants.REMOVED.name())); } /** diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/MetadataEntryDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/MetadataEntryDto.java index 6e62b77..072cec0 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/MetadataEntryDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/audit/MetadataEntryDto.java @@ -22,11 +22,17 @@ public final class MetadataEntryDto implements Serializable { @JsonProperty("value") private final String value; + @NotEmpty + @JsonProperty("action") + private final String action; + @JsonCreator public MetadataEntryDto(@JsonProperty("key") String key, - @JsonProperty("value") String value) { + @JsonProperty("value") String value, + @JsonProperty("action") String action) { this.key = key; this.value = value; + this.action = action; } public String getKey() { @@ -36,4 +42,8 @@ public String getKey() { public String getValue() { return value; } + + public String getAction() { + return action; + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/AuditEntryService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/AuditEntryService.java index c551245..dce38f1 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/AuditEntryService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/AuditEntryService.java @@ -1,14 +1,14 @@ package uk.ac.ebi.spot.ontotools.curation.service; import uk.ac.ebi.spot.ontotools.curation.domain.AuditEntry; +import uk.ac.ebi.spot.ontotools.curation.domain.MetadataEntry; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import java.util.List; -import java.util.Map; public interface AuditEntryService { - void addEntry(String action, String entityId, Provenance provenance, Map metadata); + void addEntry(String action, String entityId, Provenance provenance, List metadataEntryList); List retrieveAuditEntries(String entityId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java index 333daa9..92cd976 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java @@ -1,5 +1,6 @@ package uk.ac.ebi.spot.ontotools.curation.service; +import uk.ac.ebi.spot.ontotools.curation.domain.MetadataEntry; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; @@ -22,7 +23,7 @@ public interface MappingService { Mapping addCommentToMapping(String mappingId, String body, Provenance provenance); - Mapping updateMapping(String mappingId, List ontologyTerms, Provenance provenance); + Mapping updateMapping(String mappingId, List newTerms, List newTermIds, List oldTerms, Provenance provenance); - void deleteMapping(String mappingId, Provenance provenance, Map metadata); + void deleteMapping(String mappingId, Provenance provenance, List metadata); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/AuditEntryServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/AuditEntryServiceImpl.java index 2d04c11..d88df08 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/AuditEntryServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/AuditEntryServiceImpl.java @@ -10,9 +10,7 @@ import uk.ac.ebi.spot.ontotools.curation.repository.AuditEntryRepository; import uk.ac.ebi.spot.ontotools.curation.service.AuditEntryService; -import java.util.ArrayList; import java.util.List; -import java.util.Map; @Service public class AuditEntryServiceImpl implements AuditEntryService { @@ -22,12 +20,7 @@ public class AuditEntryServiceImpl implements AuditEntryService { @Override @Async(value = "applicationTaskExecutor") - public void addEntry(String action, String entityId, Provenance provenance, Map metadata) { - List metadataEntryList = new ArrayList<>(); - for (String key : metadata.keySet()) { - metadataEntryList.add(new MetadataEntry(key, metadata.get(key))); - } - + public void addEntry(String action, String entityId, Provenance provenance, List metadataEntryList) { auditEntryRepository.insert(new AuditEntry(null, entityId, action, provenance, metadataEntryList, DateTime.now())); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java index 4751059..409b4cb 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java @@ -6,6 +6,7 @@ import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.constants.AuditEntryConstants; import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.MetadataEntry; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.Review; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Comment; @@ -44,15 +45,16 @@ public Mapping createMapping(Entity entity, List ontologyTerms, Pr created.setOntologyTerms(ontologyTerms); for (OntologyTerm ontologyTerm : ontologyTerms) { - auditEntryService.addEntry(AuditEntryConstants.ADDED_MAPPING.name(), entity.getId(), provenance, Map.of(ontologyTerm.getIri(), ontologyTerm.getLabel())); + auditEntryService.addEntry(AuditEntryConstants.ADDED_MAPPING.name(), entity.getId(), provenance, + Arrays.asList(new MetadataEntry[]{new MetadataEntry(ontologyTerm.getIri(), ontologyTerm.getLabel(), AuditEntryConstants.ADDED.name())})); } log.info("Mapping for between entity [{}] and ontology term [{}] created: {}", entity.getName(), ontologyTerms, created.getId()); return created; } @Override - public Mapping updateMapping(String mappingId, List ontologyTerms, Provenance provenance) { - log.info("Updating mapping [{}]: {}", mappingId, ontologyTerms); + public Mapping updateMapping(String mappingId, List newTerms, List newTermIds, List oldTerms, Provenance provenance) { + log.info("Updating mapping [{}]: {}", mappingId, newTerms); Optional mappingOp = mappingRepository.findById(mappingId); if (!mappingOp.isPresent()) { log.error("Mapping not found: {}", mappingId); @@ -60,12 +62,26 @@ public Mapping updateMapping(String mappingId, List ontologyTerms, } Mapping mapping = mappingOp.get(); - List ontologyTermIds = new ArrayList<>(); - mapping.setOntologyTermIds(ontologyTermIds); - Map metadata = new LinkedHashMap<>(); - for (OntologyTerm ontologyTerm : ontologyTerms) { - ontologyTermIds.add(ontologyTerm.getId()); - metadata.put(ontologyTerm.getCurie(), ontologyTerm.getLabel()); + Map oldIRIs = new LinkedHashMap<>(); + for (OntologyTerm ontologyTerm : oldTerms) { + oldIRIs.put(ontologyTerm.getIri(), ontologyTerm.getLabel()); + } + Map newIRIs = new LinkedHashMap<>(); + for (OntologyTerm ontologyTerm : newTerms) { + oldIRIs.put(ontologyTerm.getIri(), ontologyTerm.getLabel()); + } + + mapping.setOntologyTermIds(newTermIds); + List metadata = new ArrayList<>(); + for (String oldIRI : oldIRIs.keySet()) { + if (!newIRIs.containsKey(oldIRI)) { + metadata.add(new MetadataEntry(oldIRI, oldIRIs.get(oldIRI), AuditEntryConstants.REMOVED.name())); + } + } + for (String newIRI : newIRIs.keySet()) { + if (!oldIRIs.containsKey(newIRI)) { + metadata.add(new MetadataEntry(newIRI, oldIRIs.get(newIRI), AuditEntryConstants.ADDED.name())); + } } auditEntryService.addEntry(AuditEntryConstants.UPDATED_MAPPING.name(), mappingOp.get().getEntityId(), provenance, metadata); @@ -73,7 +89,7 @@ public Mapping updateMapping(String mappingId, List ontologyTerms, } @Override - public void deleteMapping(String mappingId, Provenance provenance, Map metadata) { + public void deleteMapping(String mappingId, Provenance provenance, List metadata) { Optional mappingOp = mappingRepository.findById(mappingId); if (!mappingOp.isPresent()) { log.error("Mapping not found: {}", mappingId); @@ -153,7 +169,9 @@ public Mapping addReviewToMapping(String mappingId, String comment, int noReview mapping.addReview(new Review(comment, provenance), noReviewsRequired); mapping = mappingRepository.save(mapping); auditEntryService.addEntry(AuditEntryConstants.REVIEWED.name(), mappingOp.get().getEntityId(), provenance, - comment != null ? Map.of("COMMENT", comment) : new HashMap<>()); + comment != null ? + Arrays.asList(new MetadataEntry[]{new MetadataEntry("COMMENT", comment, AuditEntryConstants.ADDED.name())}) : + new ArrayList<>()); return mapping; } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java index a5973f5..649a7a2 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingSuggestionsServiceImpl.java @@ -6,6 +6,7 @@ import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.constants.AuditEntryConstants; +import uk.ac.ebi.spot.ontotools.curation.domain.MetadataEntry; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; @@ -42,7 +43,8 @@ public MappingSuggestion createMappingSuggestion(Entity entity, OntologyTerm ont } MappingSuggestion created = mappingSuggestionRepository.insert(new MappingSuggestion(null, entity.getId(), ontologyTerm.getId(), entity.getProjectId(), provenance, null)); - auditEntryService.addEntry(AuditEntryConstants.ADDED_SUGGESTION.name(), entity.getId(), provenance, Map.of(ontologyTerm.getIri(), ontologyTerm.getLabel())); + auditEntryService.addEntry(AuditEntryConstants.ADDED_SUGGESTION.name(), entity.getId(), provenance, + Arrays.asList(new MetadataEntry[]{new MetadataEntry(ontologyTerm.getIri(), ontologyTerm.getLabel(), AuditEntryConstants.ADDED.name())})); log.info("[{} | {}] Mapping suggestion created: {}", entity.getName(), ontologyTerm.getCurie(), created.getId()); return created; } @@ -52,15 +54,14 @@ public MappingSuggestion createMappingSuggestion(Entity entity, OntologyTerm ont public void deleteMappingSuggestionsExcluding(Entity entity, List ontologyTerms, Provenance provenance) { log.info("Deleting [{}] old mapping suggestions for: {}", ontologyTerms.size(), entity.getName()); List ontologyTermIds = new ArrayList<>(); - Map metadata = new LinkedHashMap<>(); + List metadata = new ArrayList<>(); for (OntologyTerm ontologyTerm : ontologyTerms) { ontologyTermIds.add(ontologyTerm.getId()); - metadata.put(ontologyTerm.getCurie(), ontologyTerm.getLabel()); + metadata.add(new MetadataEntry(ontologyTerm.getCurie(), ontologyTerm.getLabel(), AuditEntryConstants.REMOVED.name())); } List toDelete = mappingSuggestionRepository.findByEntityIdAndOntologyTermIdNotIn(entity.getId(), ontologyTermIds); log.info("[{}] Found {} mapping suggestions to delete.", entity.getName(), toDelete.size()); mappingSuggestionRepository.deleteAll(toDelete); - auditEntryService.addEntry(AuditEntryConstants.REMOVED_SUGGESTION.name(), entity.getId(), provenance, metadata); } @@ -114,6 +115,7 @@ public void deleteMappingSuggestions(String entityId, OntologyTerm ontologyTerm, mappingSuggestionRepository.delete(mappingSuggestion); } } - auditEntryService.addEntry(AuditEntryConstants.REMOVED_SUGGESTION.name(), entityId, provenance, Map.of(ontologyTerm.getIri(), ontologyTerm.getLabel())); + auditEntryService.addEntry(AuditEntryConstants.REMOVED_SUGGESTION.name(), entityId, provenance, + Arrays.asList(new MetadataEntry[]{new MetadataEntry(ontologyTerm.getIri(), ontologyTerm.getLabel(), AuditEntryConstants.REMOVED.name())})); } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java index 4ea3fdf..5c80807 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java @@ -207,8 +207,8 @@ public void shouldUpdateMapping() throws Exception { curies.add(metadataEntryDto.getKey()); } - assertTrue(curies.contains("MONDO:0007037")); - assertTrue(curies.contains("Orphanet:15")); + assertTrue(curies.contains("http://purl.obolibrary.org/obo/MONDO_0007037")); + assertTrue(curies.contains("http://www.orpha.net/ORDO/Orphanet_15")); } /** From b2996f268c868c28a92fac6ce56df5929d160374 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Wed, 24 Mar 2021 22:23:43 +0800 Subject: [PATCH 60/72] First version of the OntoTerms update task. --- .../config/RestInteractionConfig.java | 7 ++ .../curation/constants/MappingStatus.java | 3 +- .../{ => log}/FailedImportLogEntry.java | 2 +- .../domain/{ => log}/ImportLogBatch.java | 2 +- .../domain/{ => log}/MatchmakingLogBatch.java | 2 +- .../domain/{ => log}/MatchmakingLogEntry.java | 2 +- .../log/OntologyTermUpdateLogBatch.java | 23 ++++ .../log/OntologyTermUpdateLogEntry.java | 29 +++++ .../curation/domain/mapping/OntologyTerm.java | 1 + .../FailedImportLogEntryRepository.java | 2 +- .../repository/ImportLogBatchRepository.java | 2 +- .../repository/MappingRepository.java | 2 + .../MatchmakingLogBatchRepository.java | 2 +- .../MatchmakingLogEntryRepository.java | 2 +- .../repository/OntologyTermRepository.java | 3 + .../OntologyTermUpdateLogBatchRepository.java | 8 ++ .../OntologyTermUpdateLogEntryRepository.java | 8 ++ .../curation/rest/dto/ols/OLSTermDto.java | 11 +- .../curation/service/ImportLogService.java | 2 +- .../curation/service/MappingService.java | 2 + .../service/MatchmakingLogService.java | 2 +- .../curation/service/OLSService.java | 2 + .../service/impl/DataImportServiceImpl.java | 1 + .../service/impl/ImportLogServiceImpl.java | 4 +- .../service/impl/MappingServiceImpl.java | 11 ++ .../service/impl/MatchmakerServiceImpl.java | 2 +- .../impl/MatchmakingLogServiceImpl.java | 4 +- .../curation/service/impl/OLSServiceImpl.java | 40 +++++-- .../curation/tasks/OLSUpdateTask.java | 100 ++++++++++++++++++ src/main/resources/application.yml | 9 ++ .../curation/MatchMakingContolledTest.java | 20 ++-- .../ontotools/curation/OLSServiceTest.java | 8 ++ .../curation/tasks/OLSUpdateTaskTest.java | 93 ++++++++++++++++ 33 files changed, 373 insertions(+), 38 deletions(-) rename src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/{ => log}/FailedImportLogEntry.java (90%) rename src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/{ => log}/ImportLogBatch.java (94%) rename src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/{ => log}/MatchmakingLogBatch.java (92%) rename src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/{ => log}/MatchmakingLogEntry.java (91%) create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/OntologyTermUpdateLogBatch.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/OntologyTermUpdateLogEntry.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermUpdateLogBatchRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermUpdateLogEntryRepository.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/OLSUpdateTask.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OLSUpdateTaskTest.java diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/RestInteractionConfig.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/RestInteractionConfig.java index 05ad723..aac6ade 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/RestInteractionConfig.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/RestInteractionConfig.java @@ -25,6 +25,9 @@ public class RestInteractionConfig { @Value("${ontotools.ols.endpoints.ontologies}") private String olsOntologiesEndpoint; + @Value("${ontotools.ols.endpoints.terms}") + private String olsTermsEndpoint; + @Value("${ontotools.ols.endpoints.search}") private String olsSearchEndpoint; @@ -62,4 +65,8 @@ public String getOlsOntologiesEndpoint() { public String getOlsSearchEndpoint() { return olsBase + olsSearchEndpoint; } + + public String getOlsTermsEndpoint() { + return olsBase + olsTermsEndpoint; + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/MappingStatus.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/MappingStatus.java index 5bf8e8f..4943880 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/MappingStatus.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/MappingStatus.java @@ -4,6 +4,7 @@ public enum MappingStatus { AWAITING_REVIEW, REVIEW_IN_PROGRESS, - REQUIRED_REVIEWS_REACHED + REQUIRED_REVIEWS_REACHED, + HAS_OBSOLETE_TERM } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/FailedImportLogEntry.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/FailedImportLogEntry.java similarity index 90% rename from src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/FailedImportLogEntry.java rename to src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/FailedImportLogEntry.java index dc1d131..7ea232c 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/FailedImportLogEntry.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/FailedImportLogEntry.java @@ -1,4 +1,4 @@ -package uk.ac.ebi.spot.ontotools.curation.domain; +package uk.ac.ebi.spot.ontotools.curation.domain.log; import lombok.AllArgsConstructor; import lombok.Getter; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ImportLogBatch.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/ImportLogBatch.java similarity index 94% rename from src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ImportLogBatch.java rename to src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/ImportLogBatch.java index f7cbe60..7720ae8 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ImportLogBatch.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/ImportLogBatch.java @@ -1,4 +1,4 @@ -package uk.ac.ebi.spot.ontotools.curation.domain; +package uk.ac.ebi.spot.ontotools.curation.domain.log; import lombok.AllArgsConstructor; import lombok.Getter; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MatchmakingLogBatch.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/MatchmakingLogBatch.java similarity index 92% rename from src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MatchmakingLogBatch.java rename to src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/MatchmakingLogBatch.java index 2c40c96..1daa4c0 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MatchmakingLogBatch.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/MatchmakingLogBatch.java @@ -1,4 +1,4 @@ -package uk.ac.ebi.spot.ontotools.curation.domain; +package uk.ac.ebi.spot.ontotools.curation.domain.log; import lombok.AllArgsConstructor; import lombok.Getter; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MatchmakingLogEntry.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/MatchmakingLogEntry.java similarity index 91% rename from src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MatchmakingLogEntry.java rename to src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/MatchmakingLogEntry.java index 9670cce..3d6e4ca 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/MatchmakingLogEntry.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/MatchmakingLogEntry.java @@ -1,4 +1,4 @@ -package uk.ac.ebi.spot.ontotools.curation.domain; +package uk.ac.ebi.spot.ontotools.curation.domain.log; import lombok.AllArgsConstructor; import lombok.Getter; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/OntologyTermUpdateLogBatch.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/OntologyTermUpdateLogBatch.java new file mode 100644 index 0000000..271ae2f --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/OntologyTermUpdateLogBatch.java @@ -0,0 +1,23 @@ +package uk.ac.ebi.spot.ontotools.curation.domain.log; + +import lombok.AllArgsConstructor; +import lombok.Getter; +import lombok.Setter; +import org.joda.time.DateTime; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.mapping.Document; + +@AllArgsConstructor +@Getter +@Setter +@Document(collection = "ontoTermsLogBatches") +public class OntologyTermUpdateLogBatch { + + @Id + private String id; + + private DateTime timestamp; + + private int totalTime; + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/OntologyTermUpdateLogEntry.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/OntologyTermUpdateLogEntry.java new file mode 100644 index 0000000..06f9b4b --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/OntologyTermUpdateLogEntry.java @@ -0,0 +1,29 @@ +package uk.ac.ebi.spot.ontotools.curation.domain.log; + +import lombok.AllArgsConstructor; +import lombok.Getter; +import org.springframework.data.annotation.Id; +import org.springframework.data.mongodb.core.index.Indexed; +import org.springframework.data.mongodb.core.mapping.Document; + +@AllArgsConstructor +@Getter +@Document(collection = "ontoTermsLogEntries") +public class OntologyTermUpdateLogEntry { + + @Id + private String id; + + @Indexed + private String batchId; + + private String ontoTermId; + + private String ontoTermCurie; + + private String ontoTermLabel; + + private String previousStatus; + + private String newStatus; +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTerm.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTerm.java index 2d52f12..9daf8ef 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTerm.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTerm.java @@ -28,6 +28,7 @@ public class OntologyTerm { private String label; + @Indexed private String status; private String description; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/FailedImportLogEntryRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/FailedImportLogEntryRepository.java index 8e6489d..cfea888 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/FailedImportLogEntryRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/FailedImportLogEntryRepository.java @@ -1,7 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.repository; import org.springframework.data.mongodb.repository.MongoRepository; -import uk.ac.ebi.spot.ontotools.curation.domain.FailedImportLogEntry; +import uk.ac.ebi.spot.ontotools.curation.domain.log.FailedImportLogEntry; public interface FailedImportLogEntryRepository extends MongoRepository { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ImportLogBatchRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ImportLogBatchRepository.java index e175699..83371b8 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ImportLogBatchRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/ImportLogBatchRepository.java @@ -1,7 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.repository; import org.springframework.data.mongodb.repository.MongoRepository; -import uk.ac.ebi.spot.ontotools.curation.domain.ImportLogBatch; +import uk.ac.ebi.spot.ontotools.curation.domain.log.ImportLogBatch; public interface ImportLogBatchRepository extends MongoRepository { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java index 19a05b6..98d34d0 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java @@ -10,4 +10,6 @@ public interface MappingRepository extends MongoRepository { List findByEntityIdIn(List entityIds); Optional findByEntityId(String entityId); + + List findByOntologyTermIdsContains(String ontoTermId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MatchmakingLogBatchRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MatchmakingLogBatchRepository.java index b2aa687..d6faf6f 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MatchmakingLogBatchRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MatchmakingLogBatchRepository.java @@ -1,7 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.repository; import org.springframework.data.mongodb.repository.MongoRepository; -import uk.ac.ebi.spot.ontotools.curation.domain.MatchmakingLogBatch; +import uk.ac.ebi.spot.ontotools.curation.domain.log.MatchmakingLogBatch; public interface MatchmakingLogBatchRepository extends MongoRepository { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MatchmakingLogEntryRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MatchmakingLogEntryRepository.java index 5aebb85..4c5828d 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MatchmakingLogEntryRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MatchmakingLogEntryRepository.java @@ -1,7 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.repository; import org.springframework.data.mongodb.repository.MongoRepository; -import uk.ac.ebi.spot.ontotools.curation.domain.MatchmakingLogEntry; +import uk.ac.ebi.spot.ontotools.curation.domain.log.MatchmakingLogEntry; public interface MatchmakingLogEntryRepository extends MongoRepository { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java index 7705ad5..6bfd79a 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java @@ -5,6 +5,7 @@ import java.util.List; import java.util.Optional; +import java.util.stream.Stream; public interface OntologyTermRepository extends MongoRepository { List findByIdIn(List ontoTermIds); @@ -14,4 +15,6 @@ public interface OntologyTermRepository extends MongoRepository findByCurie(String curie); List findByCurieIn(List curies); + + Stream readByStatusIn(List statusList); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermUpdateLogBatchRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermUpdateLogBatchRepository.java new file mode 100644 index 0000000..1dfedc9 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermUpdateLogBatchRepository.java @@ -0,0 +1,8 @@ +package uk.ac.ebi.spot.ontotools.curation.repository; + +import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.log.OntologyTermUpdateLogBatch; + +public interface OntologyTermUpdateLogBatchRepository extends MongoRepository { + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermUpdateLogEntryRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermUpdateLogEntryRepository.java new file mode 100644 index 0000000..5558cd7 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermUpdateLogEntryRepository.java @@ -0,0 +1,8 @@ +package uk.ac.ebi.spot.ontotools.curation.repository; + +import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.log.OntologyTermUpdateLogEntry; + +public interface OntologyTermUpdateLogEntryRepository extends MongoRepository { + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSTermDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSTermDto.java index 5952fc1..6805880 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSTermDto.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/ols/OLSTermDto.java @@ -27,15 +27,20 @@ public final class OLSTermDto implements Serializable { @JsonProperty("is_obsolete") private final Boolean obsolete; + @JsonProperty("is_defining_ontology") + private final Boolean definingOntology; + @JsonCreator public OLSTermDto(@JsonProperty("iri") String iri, @JsonProperty("obo_id") String curie, @JsonProperty("label") String label, - @JsonProperty("is_obsolete") Boolean obsolete) { + @JsonProperty("is_obsolete") Boolean obsolete, + @JsonProperty("is_defining_ontology") Boolean definingOntology) { this.iri = iri; this.curie = curie; this.label = label; this.obsolete = obsolete; + this.definingOntology = definingOntology; } public String getIri() { @@ -53,4 +58,8 @@ public String getLabel() { public Boolean getObsolete() { return obsolete; } + + public Boolean getDefiningOntology() { + return definingOntology; + } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ImportLogService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ImportLogService.java index b7ed8e6..5909b03 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ImportLogService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/ImportLogService.java @@ -1,6 +1,6 @@ package uk.ac.ebi.spot.ontotools.curation.service; -import uk.ac.ebi.spot.ontotools.curation.domain.FailedImportLogEntry; +import uk.ac.ebi.spot.ontotools.curation.domain.log.FailedImportLogEntry; public interface ImportLogService { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java index 92cd976..bd4cb9a 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java @@ -26,4 +26,6 @@ public interface MappingService { Mapping updateMapping(String mappingId, List newTerms, List newTermIds, List oldTerms, Provenance provenance); void deleteMapping(String mappingId, Provenance provenance, List metadata); + + void updateStatusForObsoleteMappings(String ontologyTermId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakingLogService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakingLogService.java index b2ecb2f..34944da 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakingLogService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakingLogService.java @@ -1,6 +1,6 @@ package uk.ac.ebi.spot.ontotools.curation.service; -import uk.ac.ebi.spot.ontotools.curation.domain.MatchmakingLogEntry; +import uk.ac.ebi.spot.ontotools.curation.domain.log.MatchmakingLogEntry; public interface MatchmakingLogService { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OLSService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OLSService.java index 482ac62..1632228 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OLSService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OLSService.java @@ -10,4 +10,6 @@ public interface OLSService { List retrieveTerms(String ontologyId, String identifierValue); List query(String prefix); + + OLSTermDto retrieveOriginalTerm(String iri); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java index d083da4..3e00c62 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/DataImportServiceImpl.java @@ -13,6 +13,7 @@ import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.domain.*; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.domain.log.FailedImportLogEntry; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.rest.dto.dataimport.ImportDataElementDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.dataimport.ImportDataPackageDto; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ImportLogServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ImportLogServiceImpl.java index 1d32226..05f6053 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ImportLogServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ImportLogServiceImpl.java @@ -4,8 +4,8 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; -import uk.ac.ebi.spot.ontotools.curation.domain.FailedImportLogEntry; -import uk.ac.ebi.spot.ontotools.curation.domain.ImportLogBatch; +import uk.ac.ebi.spot.ontotools.curation.domain.log.FailedImportLogEntry; +import uk.ac.ebi.spot.ontotools.curation.domain.log.ImportLogBatch; import uk.ac.ebi.spot.ontotools.curation.repository.FailedImportLogEntryRepository; import uk.ac.ebi.spot.ontotools.curation.repository.ImportLogBatchRepository; import uk.ac.ebi.spot.ontotools.curation.service.ImportLogService; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java index 409b4cb..b5db75f 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java @@ -3,6 +3,7 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.constants.AuditEntryConstants; import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; @@ -100,6 +101,16 @@ public void deleteMapping(String mappingId, Provenance provenance, List mappings = mappingRepository.findByOntologyTermIdsContains(ontologyTermId); + for (Mapping mapping : mappings) { + mapping.setStatus(MappingStatus.HAS_OBSOLETE_TERM.name()); + mappingRepository.save(mapping); + } + } + @Override public Map retrieveMappingsForEntities(List entityIds) { log.info("Retrieving mappings for entities: {}", entityIds); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java index 559c511..376af95 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java @@ -8,7 +8,7 @@ import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; -import uk.ac.ebi.spot.ontotools.curation.domain.MatchmakingLogEntry; +import uk.ac.ebi.spot.ontotools.curation.domain.log.MatchmakingLogEntry; import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.ProjectContext; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakingLogServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakingLogServiceImpl.java index 5e7d6ce..9639a49 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakingLogServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakingLogServiceImpl.java @@ -4,8 +4,8 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.scheduling.annotation.Async; import org.springframework.stereotype.Service; -import uk.ac.ebi.spot.ontotools.curation.domain.MatchmakingLogBatch; -import uk.ac.ebi.spot.ontotools.curation.domain.MatchmakingLogEntry; +import uk.ac.ebi.spot.ontotools.curation.domain.log.MatchmakingLogBatch; +import uk.ac.ebi.spot.ontotools.curation.domain.log.MatchmakingLogEntry; import uk.ac.ebi.spot.ontotools.curation.repository.MatchmakingLogBatchRepository; import uk.ac.ebi.spot.ontotools.curation.repository.MatchmakingLogEntryRepository; import uk.ac.ebi.spot.ontotools.curation.service.MatchmakingLogService; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java index ca328aa..07a5876 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OLSServiceImpl.java @@ -79,7 +79,7 @@ public List retrieveTerms(String ontologyId, String identifierValue) ResponseEntity response = restTemplate.exchange(endpoint, HttpMethod.GET, httpEntity, - new ParameterizedTypeReference() { + new ParameterizedTypeReference<>() { }); if (response.getStatusCode().equals(HttpStatus.OK)) { @@ -121,17 +121,35 @@ public List query(String prefix) { return new ArrayList<>(); } - /** - * TODO: Implement - * Scheduled task to periodically go through all local terms with status CURRENT | AWAITING_IMPORT or NEEDS_IMPORT - * and repeat the process associated with checking the status - as per the initial term creation - *

- * Why?? - *

- * Do we have to introduce project-based terms? If not - how do we use project preferences to do this import? - */ - public void importOLS() { + @Override + public OLSTermDto retrieveOriginalTerm(String iri) { + log.info("Calling OLS terms: {}", iri); + UriComponentsBuilder uriBuilder = UriComponentsBuilder.fromHttpUrl(restInteractionConfig.getOlsTermsEndpoint()) + .queryParam(RestInteractionConstants.OLS_IDTYPE_IRI, iri); + String endpoint = uriBuilder.build().toUriString(); + try { + HttpEntity httpEntity = restInteractionConfig.httpEntity().build(); + ResponseEntity response = + restTemplate.exchange(endpoint, + HttpMethod.GET, httpEntity, + new ParameterizedTypeReference<>() { + }); + + if (response.getStatusCode().equals(HttpStatus.OK)) { + List olsTermDtos = response.getBody().getEmbedded().getTerms(); + log.info("OLS terms [{}]: received {} docs.", iri, olsTermDtos.size()); + for (OLSTermDto olsTermDto : olsTermDtos) { + if (olsTermDto.getDefiningOntology() != null && olsTermDto.getDefiningOntology()) { + return olsTermDto; + } + } + + } + } catch (Exception e) { + log.error("Unable to call OLS: {}", e.getMessage(), e); + } + return null; } @Override diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/OLSUpdateTask.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/OLSUpdateTask.java new file mode 100644 index 0000000..44ef237 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/OLSUpdateTask.java @@ -0,0 +1,100 @@ +package uk.ac.ebi.spot.ontotools.curation.tasks; + +import org.joda.time.DateTime; +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; +import org.springframework.scheduling.annotation.Scheduled; +import org.springframework.stereotype.Component; +import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.log.OntologyTermUpdateLogBatch; +import uk.ac.ebi.spot.ontotools.curation.domain.log.OntologyTermUpdateLogEntry; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.repository.OntologyTermRepository; +import uk.ac.ebi.spot.ontotools.curation.repository.OntologyTermUpdateLogBatchRepository; +import uk.ac.ebi.spot.ontotools.curation.repository.OntologyTermUpdateLogEntryRepository; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; +import uk.ac.ebi.spot.ontotools.curation.service.MappingService; +import uk.ac.ebi.spot.ontotools.curation.service.OLSService; + +import java.util.Arrays; +import java.util.List; +import java.util.stream.Stream; + +@Component +@ConditionalOnProperty(name = "ontotools.ols.update-schedule.enabled", havingValue = "true") +public class OLSUpdateTask { + + private static final Logger log = LoggerFactory.getLogger(OLSUpdateTask.class); + + /** + * Scheduled task to periodically go through all local terms with status CURRENT | AWAITING_IMPORT or NEEDS_IMPORT + * and repeat the process associated with checking the status - as per the initial term creation + */ + + @Autowired + private OntologyTermRepository ontologyTermRepository; + + @Autowired + private OntologyTermUpdateLogBatchRepository ontologyTermUpdateLogBatchRepository; + + @Autowired + private OntologyTermUpdateLogEntryRepository ontologyTermUpdateLogEntryRepository; + + @Autowired + private OLSService olsService; + + @Autowired + private MappingService mappingService; + + @Scheduled(cron = "${ontotools.ols.update-schedule.pattern}") + public void updateOntologyTerms() { + log.info("Running ontology terms update ..."); + double sTime = System.currentTimeMillis(); + List targetStatusList = Arrays.asList(new String[]{ + TermStatus.CURRENT.name(), + TermStatus.AWAITING_IMPORT.name(), + TermStatus.NEEDS_IMPORT.name(), + TermStatus.NEEDS_CREATION.name() + }); + + OntologyTermUpdateLogBatch ontologyTermUpdateLogBatch = ontologyTermUpdateLogBatchRepository.insert(new OntologyTermUpdateLogBatch(null, DateTime.now(), 0)); + + Stream ontologyTermStream = ontologyTermRepository.readByStatusIn(targetStatusList); + ontologyTermStream.forEach(ontologyTerm -> this.updateTerm(ontologyTerm, ontologyTermUpdateLogBatch.getId())); + ontologyTermStream.close(); + + double eTime = System.currentTimeMillis(); + double tTime = (eTime - sTime) / 1000; + ontologyTermUpdateLogBatch.setTotalTime((int) tTime); + ontologyTermUpdateLogBatchRepository.save(ontologyTermUpdateLogBatch); + log.info("Ontology terms update finalized in {}s.", tTime); + } + + /** + * TODO: Fix this to cater for transitions starting from NEEDS_IMPORT / AWAITING_IMPORT into CURRENT + */ + + private void updateTerm(OntologyTerm ontologyTerm, String batchId) { + String currentStatus = ontologyTerm.getStatus(); + String newStatus = currentStatus; + OLSTermDto olsTermDto = olsService.retrieveOriginalTerm(ontologyTerm.getIri()); + if (olsTermDto == null) { + newStatus = TermStatus.DELETED.name(); + } else { + if (olsTermDto.getObsolete() != null && olsTermDto.getObsolete()) { + newStatus = TermStatus.OBSOLETE.name(); + } + } + + if (!currentStatus.equalsIgnoreCase(newStatus)) { + ontologyTermUpdateLogEntryRepository.insert(new OntologyTermUpdateLogEntry(null, batchId, ontologyTerm.getId(), + ontologyTerm.getCurie(), ontologyTerm.getLabel(), currentStatus, newStatus)); + ontologyTerm.setStatus(newStatus); + ontologyTermRepository.save(ontologyTerm); + + mappingService.updateStatusForObsoleteMappings(ontologyTerm.getId()); + } + } +} diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 8403fac..3519950 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -28,6 +28,10 @@ ontotools: endpoints: ontologies: /ontologies search: /search + terms: /terms + update-schedule: + enabled: false + pattern: 0 0 1 * * MON --- @@ -42,6 +46,11 @@ spring: ontotools-curation: db: ontotools-curation-dev +ontotools: + ols: + update-schedule: + enabled: true + --- spring: diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java index 6e108e0..bab7c5c 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java @@ -117,10 +117,10 @@ public void testCase1() { when(zoomaService.annotate(eq(entity.getName()), any(), any())).thenReturn(zoomaResponseDtos); when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri1)), eq(iri1))).thenReturn( - Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri1, "Orphanet:15", "Achondroplasia", false)}) + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri1, "Orphanet:15", "Achondroplasia", false, true)}) ); when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri2)), eq(iri2))).thenReturn( - Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri2, "MONDO:0007037", "achondroplasia", false)}) + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri2, "MONDO:0007037", "achondroplasia", false, true)}) ); matchmakerService.runMatchmaking(sourceDto.getId(), project); @@ -164,10 +164,10 @@ public void testCase2() { when(zoomaService.annotate(eq(entity.getName()), any(), any())).thenReturn(zoomaResponseDtos); when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri1)), eq(iri1))).thenReturn( - Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri3, "ICD:12356", "Pseudo-achondroplasia", false)}) + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri3, "ICD:12356", "Pseudo-achondroplasia", false, true)}) ); when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri2)), eq(iri2))).thenReturn( - Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri2, "MONDO:0007037", "ACH", false)}) + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri2, "MONDO:0007037", "ACH", false, true)}) ); matchmakerService.runMatchmaking(sourceDto.getId(), project); @@ -210,10 +210,10 @@ public void testCase3() { when(zoomaService.annotate(eq(entity.getName()), any(), any())).thenReturn(zoomaResponseDtos); when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri1)), eq(iri1))).thenReturn( - Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri1, "Orphanet:15", "Achondroplasia", false)}) + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri1, "Orphanet:15", "Achondroplasia", false, true)}) ); when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri2)), eq(iri2))).thenReturn( - Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri2, "MONDO:0007037", "ACH", false)}) + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri2, "MONDO:0007037", "ACH", false, true)}) ); this.ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp"}); @@ -261,10 +261,10 @@ public void testCase4() { when(zoomaService.annotate(eq(entity.getName()), any(), any())).thenReturn(zoomaResponseDtos); when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri1)), eq(iri1))).thenReturn( - Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri1, "Orphanet:15", "Achondroplasia", false)}) + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri1, "Orphanet:15", "Achondroplasia", false, true)}) ); when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri2)), eq(iri2))).thenReturn( - Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri2, "MONDO:0007037", "ACH", false)}) + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri2, "MONDO:0007037", "ACH", false, true)}) ); matchmakerService.runMatchmaking(sourceDto.getId(), project); @@ -307,10 +307,10 @@ public void testCase5() { when(zoomaService.annotate(eq(entity.getName()), any(), any())).thenReturn(zoomaResponseDtos); when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri1)), eq(iri1))).thenReturn( - Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri1, "Orphanet:15", "Pseudo-achondroplasia", false)}) + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri1, "Orphanet:15", "Pseudo-achondroplasia", false, true)}) ); when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri2)), eq(iri2))).thenReturn( - Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri2, "MONDO:0007037", "ACH", false)}) + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri2, "MONDO:0007037", "ACH", false, true)}) ); matchmakerService.runMatchmaking(sourceDto.getId(), project); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OLSServiceTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OLSServiceTest.java index bf1611a..49006bd 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OLSServiceTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OLSServiceTest.java @@ -41,4 +41,12 @@ public void shouldQuery() { } } } + + @Test + public void shouldGetTerm() { + String iri = "http://www.ebi.ac.uk/efo/EFO_0001444"; + + OLSTermDto olsTermDto = olsService.retrieveOriginalTerm(iri); + assertNotNull(olsTermDto); + } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OLSUpdateTaskTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OLSUpdateTaskTest.java new file mode 100644 index 0000000..93cbd8a --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OLSUpdateTaskTest.java @@ -0,0 +1,93 @@ +package uk.ac.ebi.spot.ontotools.curation.tasks; + +import org.apache.commons.codec.digest.DigestUtils; +import org.apache.commons.lang3.RandomStringUtils; +import org.joda.time.DateTime; +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.test.context.ContextConfiguration; +import uk.ac.ebi.spot.ontotools.curation.IntegrationTest; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; +import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; +import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.repository.EntityRepository; +import uk.ac.ebi.spot.ontotools.curation.repository.OntologyTermRepository; +import uk.ac.ebi.spot.ontotools.curation.repository.OntologyTermUpdateLogEntryRepository; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; +import uk.ac.ebi.spot.ontotools.curation.service.OLSService; + +import java.util.ArrayList; +import java.util.Arrays; + +import static org.junit.Assert.assertEquals; +import static org.mockito.Mockito.*; + +@ContextConfiguration(classes = {IntegrationTest.MockTaskExecutorConfig.class, + IntegrationTest.MockOLSServiceConfig.class}) +public class OLSUpdateTaskTest extends IntegrationTest { + + @Autowired + private OLSUpdateTask olsUpdateTask; + + @Autowired + private OLSService olsService; + + @Autowired + private OntologyTermRepository ontologyTermRepository; + + @Autowired + private OntologyTermUpdateLogEntryRepository ontologyTermUpdateLogEntryRepository; + + @Autowired + private EntityRepository entityRepository; + + private OntologyTerm orphaTerm; + + private OntologyTerm mondoTerm; + + private Mapping mapping; + + @Override + public void setup() throws Exception { + super.setup(); + this.orphaTerm = ontologyTermRepository.insert(new OntologyTerm(null, "Orphanet:15", "http://www.orpha.net/ORDO/Orphanet_15", + DigestUtils.sha256Hex("http://www.orpha.net/ORDO/Orphanet_15"), "Achondroplasia", TermStatus.CURRENT.name(), null, null)); + this.mondoTerm = ontologyTermRepository.insert(new OntologyTerm(null, "MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", + DigestUtils.sha256Hex("http://purl.obolibrary.org/obo/MONDO_0007037"), "Achondroplasia", TermStatus.NEEDS_IMPORT.name(), null, null)); + + Entity entity = entityRepository.insert(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), + CurationConstants.CONTEXT_DEFAULT, RandomStringUtils.randomAlphabetic(10), RandomStringUtils.randomAlphabetic(10), + null, new Provenance(user1.getName(), user1.getEmail(), DateTime.now()), EntityStatus.AUTO_MAPPED)); + + mapping = mappingRepository.insert(new Mapping(null, entity.getId(), Arrays.asList(new String[]{orphaTerm.getId()}), + entity.getProjectId(), false, new ArrayList<>(), new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), + new Provenance(user1.getName(), user1.getEmail(), DateTime.now()), null)); + + when(olsService.retrieveOriginalTerm(this.mondoTerm.getIri())).thenReturn(null); + when(olsService.retrieveOriginalTerm(this.orphaTerm.getIri())).thenReturn(new OLSTermDto(this.orphaTerm.getIri(), + this.orphaTerm.getCurie(), this.orphaTerm.getLabel(), true, true)); + } + + @Test + public void shouldRunUpdate() { + olsUpdateTask.updateOntologyTerms(); + + OntologyTerm ontologyTerm = ontologyTermRepository.findById(this.orphaTerm.getId()).get(); + assertEquals(TermStatus.OBSOLETE.name(), ontologyTerm.getStatus()); + + ontologyTerm = ontologyTermRepository.findById(this.mondoTerm.getId()).get(); + assertEquals(TermStatus.DELETED.name(), ontologyTerm.getStatus()); + assertEquals(2, ontologyTermUpdateLogEntryRepository.findAll().size()); + + Mapping newMapping = mappingRepository.findById(mapping.getId()).get(); + assertEquals(MappingStatus.HAS_OBSOLETE_TERM.name(), newMapping.getStatus()); + + verify(olsService, times(1)).retrieveOriginalTerm(eq(this.mondoTerm.getIri())); + verify(olsService, times(1)).retrieveOriginalTerm(eq(this.orphaTerm.getIri())); + } +} \ No newline at end of file From d5bf4d35cbe37eda076ee050231042bd4566aa4d Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Thu, 25 Mar 2021 21:25:39 +0800 Subject: [PATCH 61/72] First version of the mapping update task. --- .../curation/domain/mapping/Entity.java | 3 +- .../curation/repository/EntityRepository.java | 4 + .../repository/MappingRepository.java | 1 + .../curation/service/MatchmakerService.java | 4 + .../service/impl/MatchmakerServiceImpl.java | 4 +- .../service/impl/ZoomaServiceImpl.java | 12 --- .../curation/tasks/MappingUpdateTask.java | 76 +++++++++++++++++++ ...eTask.java => OntologyTermUpdateTask.java} | 4 +- src/main/resources/application.yml | 6 ++ ...t.java => OntologyTermUpdateTaskTest.java} | 6 +- 10 files changed, 100 insertions(+), 20 deletions(-) create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/MappingUpdateTask.java rename src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/{OLSUpdateTask.java => OntologyTermUpdateTask.java} (97%) rename src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/{OLSUpdateTaskTest.java => OntologyTermUpdateTaskTest.java} (96%) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java index f5ea5ed..4bdf432 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java @@ -18,7 +18,8 @@ @NoArgsConstructor @AllArgsConstructor @CompoundIndexes({@CompoundIndex(name = "ppIdx", def = "{'projectId': 1, 'priority': 1}"), - @CompoundIndex(name = "ppCon", def = "{'projectId': 1, 'context': 1}")}) + @CompoundIndex(name = "ppCon", def = "{'projectId': 1, 'context': 1}"), + @CompoundIndex(name = "ppStat", def = "{'projectId': 1, 'mappingStatus': 1}")}) public class Entity { @Id diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java index 23f9938..2a32f50 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java @@ -3,8 +3,10 @@ import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.data.mongodb.repository.MongoRepository; +import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; +import java.util.List; import java.util.stream.Stream; public interface EntityRepository extends MongoRepository { @@ -16,4 +18,6 @@ public interface EntityRepository extends MongoRepository { Stream readByProjectId(String projectId); Stream readByProjectIdAndContext(String projectId, String context); + + Stream readByProjectIdAndMappingStatusIn(String projectId, List statusList); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java index 98d34d0..b774495 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java @@ -12,4 +12,5 @@ public interface MappingRepository extends MongoRepository { Optional findByEntityId(String entityId); List findByOntologyTermIdsContains(String ontoTermId); + } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakerService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakerService.java index 58be5be..bc83507 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakerService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MatchmakerService.java @@ -1,8 +1,12 @@ package uk.ac.ebi.spot.ontotools.curation.service; import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; public interface MatchmakerService { void runMatchmaking(String sourceId, Project project); + + void autoMap(Entity entity, Project project, User user, String batchId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java index 376af95..aec8c04 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java @@ -65,8 +65,8 @@ public void runMatchmaking(String sourceId, Project project) { log.info("[{}] Auto-mapping done in {}s", sourceId, (eTime - sTime) / 1000); } - - private void autoMap(Entity entity, Project project, User user, String batchId) { + @Override + public void autoMap(Entity entity, Project project, User user, String batchId) { if (entity.getMappingStatus().equals(EntityStatus.MANUALLY_MAPPED) || entity.getMappingStatus().equals(EntityStatus.AUTO_MAPPED)) { log.info("Entity [{}] has mapping status [{}]. Will not attempt re-mapping it.", entity.getName(), entity.getMappingStatus().name()); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ZoomaServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ZoomaServiceImpl.java index 220e2f0..34a7406 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ZoomaServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ZoomaServiceImpl.java @@ -64,16 +64,4 @@ public List annotate(String entityValue, List datasour } return new ArrayList<>(); } - - - /** - * TODO: Implement - * Scheduled task to periodically go through all entties and re-attempt mapping - * - * Whyy?? - */ - public void importZooma() { - - } - } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/MappingUpdateTask.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/MappingUpdateTask.java new file mode 100644 index 0000000..db9cd1d --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/MappingUpdateTask.java @@ -0,0 +1,76 @@ +package uk.ac.ebi.spot.ontotools.curation.tasks; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; +import org.springframework.scheduling.annotation.Scheduled; +import org.springframework.stereotype.Component; +import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.ProjectContext; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; +import uk.ac.ebi.spot.ontotools.curation.repository.EntityRepository; +import uk.ac.ebi.spot.ontotools.curation.repository.ProjectContextRepository; +import uk.ac.ebi.spot.ontotools.curation.repository.ProjectRepository; +import uk.ac.ebi.spot.ontotools.curation.service.MatchmakerService; +import uk.ac.ebi.spot.ontotools.curation.service.MatchmakingLogService; +import uk.ac.ebi.spot.ontotools.curation.service.UserService; + +import java.util.Arrays; +import java.util.List; +import java.util.stream.Stream; + +@Component +@ConditionalOnProperty(name = "ontotools.zooma.update-schedule.enabled", havingValue = "true") +public class MappingUpdateTask { + + private static final Logger log = LoggerFactory.getLogger(MappingUpdateTask.class); + + @Autowired + private ProjectRepository projectRepository; + + @Autowired + private EntityRepository entityRepository; + + @Autowired + private ProjectContextRepository projectContextRepository; + + @Autowired + private MatchmakingLogService matchmakingLogService; + + @Autowired + private UserService userService; + + @Autowired + private MatchmakerService matchmakerService; + + @Scheduled(cron = "${ontotools.zooma.update-schedule.pattern}") + public void updateMappings() { + log.info("Running mappings update ..."); + double sTime = System.currentTimeMillis(); + User robotUser = userService.retrieveRobotUser(); + + List projectList = projectRepository.findAll(); + int count = 1; + for (Project project : projectList) { + log.info("Updating project [{} of {}]: {}", count, projectList.size(), project.getName()); + List projectContexts = projectContextRepository.findByProjectId(project.getId()); + + String batchId = matchmakingLogService.createBatch(project.getId()); + project.setContexts(projectContexts); + + Stream entityStream = entityRepository.readByProjectIdAndMappingStatusIn(project.getId(), + Arrays.asList(new EntityStatus[]{EntityStatus.SUGGESTIONS_PROVIDED, EntityStatus.UNMAPPED})); + entityStream.forEach(entity -> matchmakerService.autoMap(entity, project, robotUser, batchId)); + entityStream.close(); + count++; + } + + double eTime = System.currentTimeMillis(); + double tTime = (eTime - sTime) / 1000; + log.info("Mappings update finalized in {}s.", tTime); + } + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/OLSUpdateTask.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTask.java similarity index 97% rename from src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/OLSUpdateTask.java rename to src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTask.java index 44ef237..3d84dee 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/OLSUpdateTask.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTask.java @@ -24,9 +24,9 @@ @Component @ConditionalOnProperty(name = "ontotools.ols.update-schedule.enabled", havingValue = "true") -public class OLSUpdateTask { +public class OntologyTermUpdateTask { - private static final Logger log = LoggerFactory.getLogger(OLSUpdateTask.class); + private static final Logger log = LoggerFactory.getLogger(OntologyTermUpdateTask.class); /** * Scheduled task to periodically go through all local terms with status CURRENT | AWAITING_IMPORT or NEEDS_IMPORT diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index 3519950..f81525a 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -20,6 +20,9 @@ ontotools: base: http://www.ebi.ac.uk/spot/zooma/v2/api endpoints: annotate: /services/annotate + update-schedule: + enabled: false + pattern: 0 0 1 * * MON oxo: base: https://www.ebi.ac.uk/spot/oxo/api/search?size=5000 mapping-distance: 2 @@ -50,6 +53,9 @@ ontotools: ols: update-schedule: enabled: true + zooma: + update-schedule: + enabled: true --- diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OLSUpdateTaskTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTaskTest.java similarity index 96% rename from src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OLSUpdateTaskTest.java rename to src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTaskTest.java index 93cbd8a..5f98100 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OLSUpdateTaskTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTaskTest.java @@ -29,10 +29,10 @@ @ContextConfiguration(classes = {IntegrationTest.MockTaskExecutorConfig.class, IntegrationTest.MockOLSServiceConfig.class}) -public class OLSUpdateTaskTest extends IntegrationTest { +public class OntologyTermUpdateTaskTest extends IntegrationTest { @Autowired - private OLSUpdateTask olsUpdateTask; + private OntologyTermUpdateTask ontologyTermUpdateTask; @Autowired private OLSService olsService; @@ -75,7 +75,7 @@ public void setup() throws Exception { @Test public void shouldRunUpdate() { - olsUpdateTask.updateOntologyTerms(); + ontologyTermUpdateTask.updateOntologyTerms(); OntologyTerm ontologyTerm = ontologyTermRepository.findById(this.orphaTerm.getId()).get(); assertEquals(TermStatus.OBSOLETE.name(), ontologyTerm.getStatus()); From 25c9f373d256be71db3779f81cfacb0e59b6ddba Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Mon, 29 Mar 2021 22:49:08 +0800 Subject: [PATCH 62/72] WIP: Overhaul of the ontology term status setting. --- .../curation/domain/ProjectContext.java | 2 + .../curation/domain/mapping/OntologyTerm.java | 7 +-- .../domain/mapping/OntologyTermContext.java | 16 +++++++ .../repository/OntologyTermRepository.java | 4 +- .../rest/assembler/EntityDtoAssembler.java | 12 ++++- .../rest/assembler/MappingDtoAssembler.java | 12 ++++- .../MappingSuggestionDtoAssembler.java | 4 +- .../assembler/OntologyTermDtoAssembler.java | 17 +++++-- .../assembler/ProjectContextDtoAssembler.java | 13 +++++- .../rest/assembler/ProjectDtoAssembler.java | 9 +++- .../rest/controller/EntityController.java | 1 - .../rest/controller/MappingsController.java | 8 ++-- .../controller/OntologyTermController.java | 10 ++-- .../dto/mapping/OntologyTermCreationDto.java | 39 ++++++++++++++++ .../service/impl/EntityDataCollector.java | 11 +++-- .../service/impl/OntologyTermServiceImpl.java | 46 +++++++++++-------- .../tasks/OntologyTermUpdateTask.java | 5 +- .../ontotools/curation/util/CurationUtil.java | 15 ++++++ .../ontotools/curation/IntegrationTest.java | 17 ++++--- .../curation/MappingsControllerTest.java | 6 +-- .../ontotools/curation/MatchMakingTest.java | 5 +- .../curation/OntologyTermControllerTest.java | 17 ++++--- .../mapping/OntologyTermCreationDtoTest.java | 14 ++++++ .../tasks/OntologyTermUpdateTaskTest.java | 22 +++------ 24 files changed, 230 insertions(+), 82 deletions(-) create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTermContext.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/OntologyTermCreationDto.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/OntologyTermCreationDtoTest.java diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ProjectContext.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ProjectContext.java index 09f409c..dbfc03f 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ProjectContext.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/ProjectContext.java @@ -50,4 +50,6 @@ public class ProjectContext { */ private List preferredMappingOntologies; + private List preferredMappingOntologiesLower; + } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTerm.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTerm.java index 9daf8ef..c5b9f32 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTerm.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTerm.java @@ -8,6 +8,8 @@ import org.springframework.data.mongodb.core.index.Indexed; import org.springframework.data.mongodb.core.mapping.Document; +import java.util.List; + @Document(collection = "ontologyTerms") @Getter @Setter @@ -28,13 +30,12 @@ public class OntologyTerm { private String label; - @Indexed - private String status; + private List contexts; private String description; private String crossRefs; - + @Override public String toString() { return curie + " (" + label + ")"; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTermContext.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTermContext.java new file mode 100644 index 0000000..1b89e48 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/OntologyTermContext.java @@ -0,0 +1,16 @@ +package uk.ac.ebi.spot.ontotools.curation.domain.mapping; + +import lombok.AllArgsConstructor; +import lombok.Getter; + +@AllArgsConstructor +@Getter +public class OntologyTermContext { + + private String projectId; + + private String context; + + private String status; + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java index 6bfd79a..afffb8d 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/OntologyTermRepository.java @@ -1,6 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.repository; import org.springframework.data.mongodb.repository.MongoRepository; +import org.springframework.data.mongodb.repository.Query; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import java.util.List; @@ -16,5 +17,6 @@ public interface OntologyTermRepository extends MongoRepository findByCurieIn(List curies); - Stream readByStatusIn(List statusList); + @Query(value = "{}") + Stream findAllByCustomQueryAndStream(); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java index 25e3ac7..18e7d06 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/EntityDtoAssembler.java @@ -17,8 +17,16 @@ public class EntityDtoAssembler { public static EntityDto assemble(Entity entity, SourceDto source, Mapping mapping, List mappingSuggestions, List auditEntries) { - List mappingSuggestionDtos = mappingSuggestions != null ? mappingSuggestions.stream().map(MappingSuggestionDtoAssembler::assemble).collect(Collectors.toList()) : new ArrayList<>(); - MappingDto mappingDto = mapping != null ? MappingDtoAssembler.assemble(mapping) : null; + List mappingSuggestionDtos = new ArrayList<>(); + if (mappingSuggestions != null) { + for (MappingSuggestion mappingSuggestion : mappingSuggestions) { + mappingSuggestionDtos.add(MappingSuggestionDtoAssembler.assemble(mappingSuggestion, entity.getProjectId(), entity.getContext())); + } + } + MappingDto mappingDto = null; + if (mapping != null) { + mappingDto = MappingDtoAssembler.assemble(mapping, entity.getProjectId(), entity.getContext()); + } List auditTrail = auditEntries != null ? auditEntries.stream().map(AuditEntryDtoAssembler::assemble).collect(Collectors.toList()) : new ArrayList<>(); return new EntityDto(entity.getId(), diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java index 1f23f3d..221f7f2 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingDtoAssembler.java @@ -1,17 +1,25 @@ package uk.ac.ebi.spot.ontotools.curation.rest.assembler; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.OntologyTermDto; import java.util.ArrayList; +import java.util.List; import java.util.stream.Collectors; public class MappingDtoAssembler { - public static MappingDto assemble(Mapping mapping) { + public static MappingDto assemble(Mapping mapping, String projectId, String context) { + List ontologyTermDtos = new ArrayList<>(); + for (OntologyTerm ontologyTerm : mapping.getOntologyTerms()) { + ontologyTermDtos.add(OntologyTermDtoAssembler.assemble(ontologyTerm, projectId, context)); + } + return new MappingDto(mapping.getId(), mapping.getEntityId(), - mapping.getOntologyTerms().stream().map(OntologyTermDtoAssembler::assemble).collect(Collectors.toList()), + ontologyTermDtos, mapping.isReviewed(), mapping.getStatus(), mapping.getReviews() != null ? mapping.getReviews().stream().map(ReviewDtoAssembler::assemble).collect(Collectors.toList()) : new ArrayList<>(), diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingSuggestionDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingSuggestionDtoAssembler.java index 0c24800..01974dd 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingSuggestionDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/MappingSuggestionDtoAssembler.java @@ -5,10 +5,10 @@ public class MappingSuggestionDtoAssembler { - public static MappingSuggestionDto assemble(MappingSuggestion mappingSuggestion) { + public static MappingSuggestionDto assemble(MappingSuggestion mappingSuggestion, String projectId, String context) { return new MappingSuggestionDto(mappingSuggestion.getId(), mappingSuggestion.getEntityId(), - OntologyTermDtoAssembler.assemble(mappingSuggestion.getOntologyTerm()), + OntologyTermDtoAssembler.assemble(mappingSuggestion.getOntologyTerm(), projectId, context), ProvenanceDtoAssembler.assemble(mappingSuggestion.getCreated())); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/OntologyTermDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/OntologyTermDtoAssembler.java index 2363c82..2746c83 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/OntologyTermDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/OntologyTermDtoAssembler.java @@ -3,26 +3,35 @@ import org.apache.commons.codec.digest.DigestUtils; import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTermContext; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.OntologyTermDto; +import uk.ac.ebi.spot.ontotools.curation.util.CurationUtil; + +import java.util.Arrays; +import java.util.List; public class OntologyTermDtoAssembler { - public static OntologyTermDto assemble(OntologyTerm ontologyTerm) { + public static OntologyTermDto assemble(OntologyTerm ontologyTerm, String projectId, String context) { return new OntologyTermDto(ontologyTerm.getCurie(), ontologyTerm.getIri(), ontologyTerm.getLabel(), - ontologyTerm.getStatus(), + CurationUtil.termStatusForContext(ontologyTerm, projectId, context), ontologyTerm.getDescription(), ontologyTerm.getCrossRefs()); } - public static OntologyTerm disassemble(OntologyTermDto ontologyTerm) { + public static OntologyTerm disassemble(OntologyTermDto ontologyTerm, String projectId, String context) { + String status = ontologyTerm.getStatus() != null ? ontologyTerm.getStatus() : TermStatus.NEEDS_CREATION.name(); + List ontologyTermContexts = Arrays.asList(new OntologyTermContext[]{ + new OntologyTermContext(projectId, context, status) + }); return new OntologyTerm(null, ontologyTerm.getCurie(), ontologyTerm.getIri(), DigestUtils.sha256Hex(ontologyTerm.getIri()), ontologyTerm.getLabel(), - ontologyTerm.getStatus() != null ? ontologyTerm.getStatus() : TermStatus.NEEDS_IMPORT.name(), + ontologyTermContexts, ontologyTerm.getDescription(), ontologyTerm.getCrossRefs()); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectContextDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectContextDtoAssembler.java index d283de4..b450bba 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectContextDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectContextDtoAssembler.java @@ -3,6 +3,9 @@ import uk.ac.ebi.spot.ontotools.curation.domain.ProjectContext; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectContextDto; +import java.util.ArrayList; +import java.util.List; + public class ProjectContextDtoAssembler { public static ProjectContextDto assemble(ProjectContext projectContext) { @@ -14,12 +17,20 @@ public static ProjectContextDto assemble(ProjectContext projectContext) { } public static ProjectContext disassemble(ProjectContextDto projectContext) { + List preferredMappingLower = new ArrayList<>(); + if (projectContext.getPreferredMappingOntologies() != null) { + for (String entry : projectContext.getPreferredMappingOntologies()) { + preferredMappingLower.add(entry.toLowerCase()); + } + } + return new ProjectContext(null, projectContext.getName(), null, projectContext.getDescription(), projectContext.getDatasources(), projectContext.getOntologies(), - projectContext.getPreferredMappingOntologies()); + projectContext.getPreferredMappingOntologies(), + preferredMappingLower); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java index 5522329..d6bba4c 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/assembler/ProjectDtoAssembler.java @@ -9,6 +9,7 @@ import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; import java.util.ArrayList; +import java.util.List; import java.util.stream.Collectors; public class ProjectDtoAssembler { @@ -33,6 +34,12 @@ public static Project disassemble(ProjectDto project) { } public static Pair disassemble(ProjectCreationDto project, Provenance provenance) { + List preferredMappingLower = new ArrayList<>(); + if (project.getPreferredMappingOntologies() != null) { + for (String entry : project.getPreferredMappingOntologies()) { + preferredMappingLower.add(entry.toLowerCase()); + } + } return Pair.of(new Project(null, project.getName(), project.getDescription(), @@ -40,6 +47,6 @@ public static Pair disassemble(ProjectCreationDto proje new ArrayList<>(), provenance, null), new ProjectContext(null, CurationConstants.CONTEXT_DEFAULT, null, "Default context", - project.getDatasources(), project.getOntologies(), project.getPreferredMappingOntologies())); + project.getDatasources(), project.getOntologies(), project.getPreferredMappingOntologies(), preferredMappingLower)); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java index cea3d5e..8b313d3 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java @@ -78,7 +78,6 @@ public RestResponsePage getEntities(@PathVariable String projectId, @ Map> mappingSuggestions = mappingSuggestionsService.retrieveMappingSuggestionsForEntities(entityIds); log.info("Assembling results ..."); List entityDtos = new ArrayList<>(); - //auditEntryService.retrieveAuditEntries(entity.getId()) for (Entity entity : entities.getContent()) { entityDtos.add(EntityDtoAssembler.assemble(entity, sourceMap.get(entity.getSourceId()), mappings.get(entity.getId()), diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java index fa9ec36..a874fd3 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java @@ -70,7 +70,7 @@ public MappingDto getMapping(@PathVariable String projectId, @RequestParam(value if (mapping == null) { return null; } - return MappingDtoAssembler.assemble(mapping); + return MappingDtoAssembler.assemble(mapping, entity.getProjectId(), entity.getContext()); } /** @@ -93,7 +93,7 @@ public MappingDto createMapping(@PathVariable String projectId, @RequestBody @Va Mapping existingMapping = mappingService.retrieveMappingForEntity(entity.getId()); if (existingMapping != null) { log.warn("Entity [{}] already has a mapping.", entity.getName()); - return MappingDtoAssembler.assemble(existingMapping); + return MappingDtoAssembler.assemble(existingMapping, entity.getProjectId(), entity.getContext()); } List curies = mappingCreationDto.getOntologyTerms().stream().map(OntologyTermDto::getCurie).collect(Collectors.toList()); @@ -109,7 +109,7 @@ public MappingDto createMapping(@PathVariable String projectId, @RequestBody @Va */ entityService.updateMappingStatus(entity, EntityStatus.MANUALLY_MAPPED); - return MappingDtoAssembler.assemble(created); + return MappingDtoAssembler.assemble(created, entity.getProjectId(), entity.getContext()); } /** @@ -152,7 +152,7 @@ public MappingDto updateMapping(@PathVariable String projectId, @PathVariable St entityService.updateMappingStatus(entity, EntityStatus.MANUALLY_MAPPED); updated.setOntologyTerms(newTerms); - return MappingDtoAssembler.assemble(updated); + return MappingDtoAssembler.assemble(updated, entity.getProjectId(), entity.getContext()); } /** diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/OntologyTermController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/OntologyTermController.java index 9e683ce..02babbf 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/OntologyTermController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/OntologyTermController.java @@ -11,6 +11,7 @@ import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.OntologyTermDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.OntologyTermCreationDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.OntologyTermDto; import uk.ac.ebi.spot.ontotools.curation.service.JWTService; import uk.ac.ebi.spot.ontotools.curation.service.OntologyTermService; @@ -44,12 +45,13 @@ public class OntologyTermController { consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.CREATED) - public OntologyTermDto createOntologyTerm(@PathVariable String projectId, @RequestBody @Valid OntologyTermDto ontologyTermDto, HttpServletRequest request) { + public OntologyTermDto createOntologyTerm(@PathVariable String projectId, @RequestBody @Valid OntologyTermCreationDto ontologyTermCreationDto, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); - log.info("[{}] Request to create ontology term: {} | {}", user.getEmail(), projectId, ontologyTermDto.getCurie()); + log.info("[{}] Request to create ontology term: {} | {}", user.getEmail(), projectId, ontologyTermCreationDto.getOntologyTerm().getCurie()); projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR})); - OntologyTerm created = ontologyTermService.createTerm(OntologyTermDtoAssembler.disassemble(ontologyTermDto)); - return OntologyTermDtoAssembler.assemble(created); + OntologyTerm created = ontologyTermService.createTerm(OntologyTermDtoAssembler.disassemble(ontologyTermCreationDto.getOntologyTerm(), projectId, + ontologyTermCreationDto.getContext())); + return OntologyTermDtoAssembler.assemble(created, projectId, ontologyTermCreationDto.getContext()); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/OntologyTermCreationDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/OntologyTermCreationDto.java new file mode 100644 index 0000000..5a8f63f --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/OntologyTermCreationDto.java @@ -0,0 +1,39 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotEmpty; +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class OntologyTermCreationDto implements Serializable { + + private static final long serialVersionUID = 4164035957804875140L; + + @NotEmpty + @JsonProperty("context") + private final String context; + + @NotEmpty + @JsonProperty("ontologyTerm") + private final OntologyTermDto ontologyTerm; + + @JsonCreator + public OntologyTermCreationDto(@JsonProperty("context") String context, + @JsonProperty("ontologyTerm") OntologyTermDto ontologyTerm) { + this.context = context; + this.ontologyTerm = ontologyTerm; + } + + public String getContext() { + return context; + } + + public OntologyTermDto getOntologyTerm() { + return ontologyTerm; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java index 0f823bd..1f2affe 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityDataCollector.java @@ -6,6 +6,7 @@ import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.OntologyTermDtoAssembler; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.ProvenanceDtoAssembler; import uk.ac.ebi.spot.ontotools.curation.rest.dto.export.ExportEntityDto; @@ -17,7 +18,6 @@ import java.io.IOException; import java.util.ArrayList; import java.util.List; -import java.util.stream.Collectors; import java.util.zip.ZipEntry; import java.util.zip.ZipOutputStream; @@ -39,14 +39,17 @@ public void add(Entity entity, Mapping mapping, List mappingS ExportMappingDto exportMappingDto = null; if (mapping != null) { - List ontologyTermDtos = mapping.getOntologyTerms().stream().map(OntologyTermDtoAssembler::assemble).collect(Collectors.toList()); + List ontologyTermDtos = new ArrayList<>(); + for (OntologyTerm ontologyTerm : mapping.getOntologyTerms()) { + ontologyTermDtos.add(OntologyTermDtoAssembler.assemble(ontologyTerm, projectId, entity.getContext())); + } exportMappingDto = new ExportMappingDto(ontologyTermDtos, mapping.isReviewed(), mapping.getStatus(), ProvenanceDtoAssembler.assemble(mapping.getCreated())); } if (mappingSuggestionList != null) { for (MappingSuggestion mappingSuggestion : mappingSuggestionList) { - mappingSuggestions.add(new ExportMappingSuggestionDto(OntologyTermDtoAssembler.assemble(mappingSuggestion.getOntologyTerm()), - ProvenanceDtoAssembler.assemble(mappingSuggestion.getCreated()))); + mappingSuggestions.add(new ExportMappingSuggestionDto(OntologyTermDtoAssembler.assemble(mappingSuggestion.getOntologyTerm(), + projectId, entity.getContext()), ProvenanceDtoAssembler.assemble(mappingSuggestion.getCreated()))); } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java index f7fcc45..93e7776 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java @@ -9,6 +9,7 @@ import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; import uk.ac.ebi.spot.ontotools.curation.domain.ProjectContext; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTermContext; import uk.ac.ebi.spot.ontotools.curation.exception.EntityNotFoundException; import uk.ac.ebi.spot.ontotools.curation.repository.OntologyTermRepository; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; @@ -47,10 +48,16 @@ public OntologyTerm createTerm(OntologyTerm term) { public OntologyTerm createTerm(String iri, ProjectContext projectContext) { log.info("Creating term: {}", iri); try { + OntologyTerm ot = null; Optional ontologyTermOp = ontologyTermRepository.findByIriHash(DigestUtils.sha256Hex(iri)); if (ontologyTermOp.isPresent()) { - log.warn("Ontology term already exists: {} | {}", ontologyTermOp.get().getCurie(), ontologyTermOp.get().getLabel()); - return ontologyTermOp.get(); + String status = CurationUtil.termStatusForContext(ontologyTermOp.get(), projectContext.getProjectId(), projectContext.getName()); + if (status != null) { + log.warn("Ontology term already exists: {} | {} | {}", ontologyTermOp.get().getCurie(), ontologyTermOp.get().getLabel(), status); + return ontologyTermOp.get(); + } else { + ot = ontologyTermOp.get(); + } } List preferredOntoResponse = new ArrayList<>(); @@ -60,36 +67,39 @@ public OntologyTerm createTerm(String iri, ProjectContext projectContext) { List parentOntoResponse = new ArrayList<>(); String ontoId = CurationUtil.ontoFromIRI(iri); String termStatus; - if (!projectContext.getPreferredMappingOntologies().contains(ontoId.toLowerCase())) { + if (!projectContext.getPreferredMappingOntologiesLower().contains(ontoId.toLowerCase())) { parentOntoResponse = olsService.retrieveTerms(ontoId, iri); termStatus = parseStatus(preferredOntoResponse, parentOntoResponse, null); } else { termStatus = parseStatus(preferredOntoResponse, null, null); } - OntologyTerm ot; if (termStatus.equalsIgnoreCase(TermStatus.DELETED.name())) { - /** - * TODO: Discuss - * - * Previous code: - * ot = new OntologyTerm(null, "Not found", iri, DigestUtils.sha256Hex(iri), "Not found", MappingStatus.DELETED.name(), null, null); - */ log.warn("Found DELETED term: {}", iri); return null; } else { - if (termStatus.equalsIgnoreCase(TermStatus.CURRENT.name())) { - OLSTermDto olsTermDto = preferredOntoResponse.get(0); - ot = new OntologyTerm(null, olsTermDto.getCurie(), iri, - DigestUtils.sha256Hex(iri), olsTermDto.getLabel(), TermStatus.CURRENT.name(), null, null); + if (ot != null) { + if (ot.getContexts() == null) { + ot.setContexts(new ArrayList<>()); + } + } + + OntologyTermContext otc = new OntologyTermContext(projectContext.getProjectId(), projectContext.getName(), termStatus); + OLSTermDto olsTermDto = termStatus.equalsIgnoreCase(TermStatus.CURRENT.name()) ? preferredOntoResponse.get(0) : parentOntoResponse.get(0); + if (ot != null) { + ot.getContexts().add(otc); + ot = ontologyTermRepository.save(ot); + log.info("Updated ontology term [{} | {}]: {} | {} | {}", ot.getCurie(), ot.getLabel(), projectContext.getProjectId(), + projectContext.getName(), termStatus); } else { - OLSTermDto olsTermDto = parentOntoResponse.get(0); - ot = new OntologyTerm(null, olsTermDto.getCurie(), olsTermDto.getIri(), DigestUtils.sha256Hex(olsTermDto.getIri()), olsTermDto.getLabel(), termStatus, null, null); + ot = new OntologyTerm(null, olsTermDto.getCurie(), iri, + DigestUtils.sha256Hex(iri), olsTermDto.getLabel(), + Arrays.asList(new OntologyTermContext[]{otc}), null, null); + ot = ontologyTermRepository.insert(ot); + log.info("Created ontology term [{} | {}]: {}", ot.getCurie(), ot.getLabel(), ot.getId()); } } - ot = ontologyTermRepository.insert(ot); - log.info("Created ontology term [{} | {}]: {}", ot.getCurie(), ot.getLabel(), ot.getId()); return ot; } catch (Exception e) { log.error("ERROR: {}", e.getMessage(), e); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTask.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTask.java index 3d84dee..4e36815 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTask.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTask.java @@ -61,7 +61,7 @@ public void updateOntologyTerms() { OntologyTermUpdateLogBatch ontologyTermUpdateLogBatch = ontologyTermUpdateLogBatchRepository.insert(new OntologyTermUpdateLogBatch(null, DateTime.now(), 0)); - Stream ontologyTermStream = ontologyTermRepository.readByStatusIn(targetStatusList); + Stream ontologyTermStream = ontologyTermRepository.findAllByCustomQueryAndStream(); ontologyTermStream.forEach(ontologyTerm -> this.updateTerm(ontologyTerm, ontologyTermUpdateLogBatch.getId())); ontologyTermStream.close(); @@ -77,6 +77,7 @@ public void updateOntologyTerms() { */ private void updateTerm(OntologyTerm ontologyTerm, String batchId) { + /* String currentStatus = ontologyTerm.getStatus(); String newStatus = currentStatus; OLSTermDto olsTermDto = olsService.retrieveOriginalTerm(ontologyTerm.getIri()); @@ -96,5 +97,7 @@ private void updateTerm(OntologyTerm ontologyTerm, String batchId) { mappingService.updateStatusForObsoleteMappings(ontologyTerm.getId()); } + + */ } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java index 321bbe9..d181a66 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java @@ -5,6 +5,8 @@ import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.ProjectContext; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTermContext; import java.util.ArrayList; import java.util.HashMap; @@ -92,4 +94,17 @@ public static Pair findContext(String contextName, Proj return Pair.of(projectContext, true); } + public static String termStatusForContext(OntologyTerm ontologyTerm, String projectId, String context) { + if (ontologyTerm.getContexts() == null) { + return null; + } + + for (OntologyTermContext ontologyTermContext : ontologyTerm.getContexts()) { + if (ontologyTermContext.getProjectId().equals(projectId) && + ontologyTermContext.getContext().equals(context)) { + return ontologyTermContext.getStatus(); + } + } + return null; + } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index adeed52..e1b343a 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -24,10 +24,7 @@ import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.auth.AuthToken; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; -import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; -import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; -import uk.ac.ebi.spot.ontotools.curation.domain.mapping.MappingSuggestion; -import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.*; import uk.ac.ebi.spot.ontotools.curation.repository.*; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectCreationDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; @@ -228,10 +225,16 @@ protected void createEntityTestData(String sourceId, String projectId, User user CurationConstants.CONTEXT_DEFAULT, sourceId, projectId, null, provenance, EntityStatus.AUTO_MAPPED)); OntologyTerm orphaTerm = ontologyTermRepository.insert(new OntologyTerm(null, "Orphanet:15", "http://www.orpha.net/ORDO/Orphanet_15", - DigestUtils.sha256Hex("http://www.orpha.net/ORDO/Orphanet_15"), "Achondroplasia", TermStatus.CURRENT.name(), null, null)); + DigestUtils.sha256Hex("http://www.orpha.net/ORDO/Orphanet_15"), "Achondroplasia", + Arrays.asList(new OntologyTermContext[]{ + new OntologyTermContext(TermStatus.CURRENT.name(), entity.getProjectId(), entity.getContext()) + }), null, null)); OntologyTerm mondoTerm = ontologyTermRepository.insert(new OntologyTerm(null, "MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", - DigestUtils.sha256Hex("http://purl.obolibrary.org/obo/MONDO_0007037"), "Achondroplasia", TermStatus.NEEDS_IMPORT.name(), null, null)); + DigestUtils.sha256Hex("http://purl.obolibrary.org/obo/MONDO_0007037"), "Achondroplasia", + Arrays.asList(new OntologyTermContext[]{ + new OntologyTermContext(TermStatus.CURRENT.name(), entity.getProjectId(), entity.getContext()) + }), null, null)); mappingSuggestionRepository.insert(new MappingSuggestion(null, entity.getId(), orphaTerm.getId(), projectId, provenance, null)); mappingSuggestionRepository.insert(new MappingSuggestion(null, entity.getId(), mondoTerm.getId(), projectId, provenance, null)); @@ -241,7 +244,7 @@ protected void createEntityTestData(String sourceId, String projectId, User user protected MappingDto retrieveMapping(String projectId) throws Exception { String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectId + - CurationConstants.API_MAPPINGS + "?" + CurationConstants.PARAM_ENTITY_ID + "=" + entity.getId(); + CurationConstants.API_MAPPINGS + "?" + CurationConstants.PARAM_ENTITY_ID + "=" + entity.getId(); String response = mockMvc.perform(get(endpoint) .contentType(MediaType.APPLICATION_JSON) .header(IDPConstants.JWT_TOKEN, "token1")) diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java index 5c80807..8107b90 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java @@ -72,7 +72,7 @@ public void shouldGetMappings() throws Exception { @Test public void shouldCreateMapping() throws Exception { OntologyTerm ontologyTerm = ontologyTermRepository.findByCurie("MONDO:0007037").get(); - OntologyTermDto ontologyTermDto = OntologyTermDtoAssembler.assemble(ontologyTerm); + OntologyTermDto ontologyTermDto = OntologyTermDtoAssembler.assemble(ontologyTerm, project.getId(), entity.getContext()); MappingCreationDto mappingCreationDto = new MappingCreationDto(entity.getId(), Arrays.asList(new OntologyTermDto[]{ontologyTermDto})); mappingRepository.deleteAll(); @@ -138,8 +138,8 @@ public void shouldCreateMapping() throws Exception { public void shouldUpdateMapping() throws Exception { MappingDto mappingDto = super.retrieveMapping(project.getId()); List ontologyTermDtos = new ArrayList<>(); - ontologyTermDtos.add(OntologyTermDtoAssembler.assemble(ontologyTermRepository.findByCurie("MONDO:0007037").get())); - ontologyTermDtos.add(OntologyTermDtoAssembler.assemble(ontologyTermRepository.findByCurie("Orphanet:15").get())); + ontologyTermDtos.add(OntologyTermDtoAssembler.assemble(ontologyTermRepository.findByCurie("MONDO:0007037").get(), project.getId(), entity.getContext())); + ontologyTermDtos.add(OntologyTermDtoAssembler.assemble(ontologyTermRepository.findByCurie("Orphanet:15").get(), project.getId(), entity.getContext())); MappingDto updated = new MappingDto(mappingDto.getId(), mappingDto.getEntityId(), diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java index dce2dba..0986310 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java @@ -20,6 +20,7 @@ import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; import uk.ac.ebi.spot.ontotools.curation.service.*; +import uk.ac.ebi.spot.ontotools.curation.util.CurationUtil; import java.util.Arrays; import java.util.HashMap; @@ -96,10 +97,10 @@ public void runMatchmakingTest() { for (OntologyTerm ontologyTerm : ontologyTerms) { ontoMap.put(ontologyTerm.getId(), ontologyTerm); if (ontologyTerm.getCurie().equalsIgnoreCase("Orphanet:15")) { - assertEquals(TermStatus.CURRENT.name(), ontologyTerm.getStatus()); + assertEquals(TermStatus.CURRENT.name(), CurationUtil.termStatusForContext(ontologyTerm, project.getId(), updated.getContext())); } if (ontologyTerm.getCurie().equalsIgnoreCase("MONDO:0007037")) { - assertEquals(TermStatus.NEEDS_IMPORT.name(), ontologyTerm.getStatus()); + assertEquals(TermStatus.NEEDS_IMPORT.name(), CurationUtil.termStatusForContext(ontologyTerm, project.getId(), updated.getContext())); } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java index 0921a68..8ca947e 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java @@ -11,6 +11,7 @@ import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.OntologyTermCreationDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.OntologyTermDto; import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; import uk.ac.ebi.spot.ontotools.curation.service.UserService; @@ -51,25 +52,27 @@ public void setup() throws Exception { @Test public void shouldCreateOntologyTerm() throws Exception { OntologyTermDto toCreate = new OntologyTermDto("MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", - "Achondroplasia", null, null, null); + "Achondroplasia", TermStatus.NEEDS_CREATION.name(), null, null); + OntologyTermCreationDto payload = new OntologyTermCreationDto(CurationConstants.CONTEXT_DEFAULT, toCreate); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_ONTOLOGY_TERMS; String response = mockMvc.perform(post(endpoint) .contentType(MediaType.APPLICATION_JSON) - .content(mapper.writeValueAsString(toCreate)) + .content(mapper.writeValueAsString(payload)) .header(IDPConstants.JWT_TOKEN, "token1")) .andExpect(status().isCreated()) .andReturn() .getResponse() .getContentAsString(); - OntologyTermDto actual = mapper.readValue(response, new TypeReference() { + OntologyTermDto actual = mapper.readValue(response, new TypeReference<>() { }); assertEquals(toCreate.getLabel(), actual.getLabel()); assertEquals(toCreate.getCurie(), actual.getCurie()); assertEquals(toCreate.getIri(), actual.getIri()); - assertEquals(TermStatus.NEEDS_IMPORT.toString(), actual.getStatus()); + assertEquals(TermStatus.NEEDS_CREATION.toString(), actual.getStatus()); } @@ -80,11 +83,12 @@ public void shouldCreateOntologyTerm() throws Exception { public void shouldNotCreateOntologyTerm() throws Exception { OntologyTermDto toCreate = new OntologyTermDto("MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", "Achondroplasia", null, null, null); + OntologyTermCreationDto payload = new OntologyTermCreationDto(CurationConstants.CONTEXT_DEFAULT, toCreate); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_ONTOLOGY_TERMS; mockMvc.perform(post(endpoint) .contentType(MediaType.APPLICATION_JSON) - .content(mapper.writeValueAsString(toCreate)) + .content(mapper.writeValueAsString(payload)) .header(IDPConstants.JWT_TOKEN, "token2")) .andExpect(status().isNotFound()); } @@ -96,12 +100,13 @@ public void shouldNotCreateOntologyTerm() throws Exception { public void shouldNotCreateOntologyTermAsConsumer() throws Exception { OntologyTermDto toCreate = new OntologyTermDto("MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", "Achondroplasia", null, null, null); + OntologyTermCreationDto payload = new OntologyTermCreationDto(CurationConstants.CONTEXT_DEFAULT, toCreate); userService.addUserToProject(super.user2, project.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_ONTOLOGY_TERMS; mockMvc.perform(post(endpoint) .contentType(MediaType.APPLICATION_JSON) - .content(mapper.writeValueAsString(toCreate)) + .content(mapper.writeValueAsString(payload)) .header(IDPConstants.JWT_TOKEN, "token2")) .andExpect(status().isNotFound()); } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/OntologyTermCreationDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/OntologyTermCreationDtoTest.java new file mode 100644 index 0000000..c9422d8 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/mapping/OntologyTermCreationDtoTest.java @@ -0,0 +1,14 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class OntologyTermCreationDtoTest { + + @Test + public void equalsContract() { + EqualsVerifier.forClass(OntologyTermCreationDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTaskTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTaskTest.java index 5f98100..221257f 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTaskTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTaskTest.java @@ -1,32 +1,17 @@ package uk.ac.ebi.spot.ontotools.curation.tasks; -import org.apache.commons.codec.digest.DigestUtils; -import org.apache.commons.lang3.RandomStringUtils; -import org.joda.time.DateTime; +import org.junit.Ignore; import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; import uk.ac.ebi.spot.ontotools.curation.IntegrationTest; -import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; -import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; -import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; -import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; -import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; -import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.repository.EntityRepository; import uk.ac.ebi.spot.ontotools.curation.repository.OntologyTermRepository; import uk.ac.ebi.spot.ontotools.curation.repository.OntologyTermUpdateLogEntryRepository; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; import uk.ac.ebi.spot.ontotools.curation.service.OLSService; -import java.util.ArrayList; -import java.util.Arrays; - -import static org.junit.Assert.assertEquals; -import static org.mockito.Mockito.*; - @ContextConfiguration(classes = {IntegrationTest.MockTaskExecutorConfig.class, IntegrationTest.MockOLSServiceConfig.class}) public class OntologyTermUpdateTaskTest extends IntegrationTest { @@ -55,6 +40,7 @@ public class OntologyTermUpdateTaskTest extends IntegrationTest { @Override public void setup() throws Exception { super.setup(); + /* this.orphaTerm = ontologyTermRepository.insert(new OntologyTerm(null, "Orphanet:15", "http://www.orpha.net/ORDO/Orphanet_15", DigestUtils.sha256Hex("http://www.orpha.net/ORDO/Orphanet_15"), "Achondroplasia", TermStatus.CURRENT.name(), null, null)); this.mondoTerm = ontologyTermRepository.insert(new OntologyTerm(null, "MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", @@ -71,10 +57,13 @@ public void setup() throws Exception { when(olsService.retrieveOriginalTerm(this.mondoTerm.getIri())).thenReturn(null); when(olsService.retrieveOriginalTerm(this.orphaTerm.getIri())).thenReturn(new OLSTermDto(this.orphaTerm.getIri(), this.orphaTerm.getCurie(), this.orphaTerm.getLabel(), true, true)); + */ } @Test + @Ignore public void shouldRunUpdate() { + /* ontologyTermUpdateTask.updateOntologyTerms(); OntologyTerm ontologyTerm = ontologyTermRepository.findById(this.orphaTerm.getId()).get(); @@ -89,5 +78,6 @@ public void shouldRunUpdate() { verify(olsService, times(1)).retrieveOriginalTerm(eq(this.mondoTerm.getIri())); verify(olsService, times(1)).retrieveOriginalTerm(eq(this.orphaTerm.getIri())); + */ } } \ No newline at end of file From 09dc73d92d7bfa6b6ca7ca5e9720705933683360 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Tue, 30 Mar 2021 22:14:31 +0800 Subject: [PATCH 63/72] Finalized: Overhaul of the ontology term status setting. --- .../service/impl/MatchmakerServiceImpl.java | 10 +- .../service/impl/OntologyTermServiceImpl.java | 2 +- .../curation/OntoTermContextStatusTest.java | 209 ++++++++++++++++++ 3 files changed, 217 insertions(+), 4 deletions(-) create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/OntoTermContextStatusTest.java diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java index aec8c04..2ff5713 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MatchmakerServiceImpl.java @@ -104,7 +104,7 @@ public void autoMap(Entity entity, Project project, User user, String batchId) { /** * Retain high confidence terms to attempt exact mapping. */ - if (zoomaResponseDto.getConfidence().equalsIgnoreCase(ZOOMA_CONFIDENCE_HIGH)) { + if (zoomaResponseDto.getConfidence().equalsIgnoreCase(ZOOMA_CONFIDENCE_HIGH) && !highConfidenceIRIs.contains(suggestedTermIRI)) { highConfidenceIRIs.add(suggestedTermIRI); } @@ -113,10 +113,14 @@ public void autoMap(Entity entity, Project project, User user, String batchId) { */ if (projectOntologies != null) { if (projectOntologies.contains(CurationUtil.ontoFromIRI(suggestedTermIRI).toLowerCase())) { - finalIRIs.add(suggestedTermIRI); + if (!finalIRIs.contains(suggestedTermIRI)) { + finalIRIs.add(suggestedTermIRI); + } } } else { - finalIRIs.add(suggestedTermIRI); + if (!finalIRIs.contains(suggestedTermIRI)) { + finalIRIs.add(suggestedTermIRI); + } } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java index 93e7776..ece33ae 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java @@ -92,7 +92,7 @@ public OntologyTerm createTerm(String iri, ProjectContext projectContext) { log.info("Updated ontology term [{} | {}]: {} | {} | {}", ot.getCurie(), ot.getLabel(), projectContext.getProjectId(), projectContext.getName(), termStatus); } else { - ot = new OntologyTerm(null, olsTermDto.getCurie(), iri, + ot = new OntologyTerm(null, olsTermDto.getCurie(), olsTermDto.getIri(), DigestUtils.sha256Hex(iri), olsTermDto.getLabel(), Arrays.asList(new OntologyTermContext[]{otc}), null, null); ot = ontologyTermRepository.insert(ot); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntoTermContextStatusTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntoTermContextStatusTest.java new file mode 100644 index 0000000..4c6de0d --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntoTermContextStatusTest.java @@ -0,0 +1,209 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import org.apache.commons.lang3.RandomStringUtils; +import org.joda.time.DateTime; +import org.junit.Test; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.test.context.ContextConfiguration; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; +import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.ProjectContext; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.domain.config.ExternalServiceConfig; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTermContext; +import uk.ac.ebi.spot.ontotools.curation.repository.ExternalServiceConfigRepository; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.zooma.ZoomaResponseDto; +import uk.ac.ebi.spot.ontotools.curation.service.*; +import uk.ac.ebi.spot.ontotools.curation.util.CurationUtil; + +import java.util.*; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.ArgumentMatchers.eq; +import static org.mockito.Mockito.when; + +@ContextConfiguration(classes = {IntegrationTest.MockTaskExecutorConfig.class, + IntegrationTest.MockZoomaServiceConfig.class, + IntegrationTest.MockOLSServiceConfig.class}) +public class OntoTermContextStatusTest extends IntegrationTest { + + @Autowired + private ExternalServiceConfigRepository externalServiceConfigRepository; + + @Autowired + private EntityService entityService; + + @Autowired + private ProjectService projectService; + + @Autowired + private UserService userService; + + @Autowired + private MatchmakerService matchmakerService; + + @Autowired + private OntologyTermService ontologyTermService; + + private List datasources; + + private List ontologies; + + @Autowired + private ZoomaService zoomaService; + + @Autowired + private OLSService olsService; + + @Override + public void setup() throws Exception { + super.setup(); + externalServiceConfigRepository.insert(new ExternalServiceConfig(null, "OLS", Arrays.asList(new String[]{"orphanet::ordo"}))); + externalServiceConfigRepository.insert(new ExternalServiceConfig(null, "OXO", Arrays.asList(new String[]{"ordo::orphanet"}))); + + this.datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); + this.ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); + } + + /** + * Test case: + * - Match 2 entities from 2 projects annotated with the same term. + * -- Expected: term should have 2 contexts + */ + @Test + public void testCase1() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", datasources, ontologies, "efo", 0); + + user1 = userService.findByEmail(user1.getEmail()); + Project project1 = projectService.retrieveProject(projectDto.getId(), user1); + SourceDto sourceDto1 = super.createSource(project1.getId()); + Provenance provenance = new Provenance(user1.getName(), user1.getEmail(), DateTime.now()); + Entity entity1 = entityService.createEntity(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), + CurationConstants.CONTEXT_DEFAULT, sourceDto1.getId(), project1.getId(), 10, provenance, EntityStatus.UNMAPPED)); + + projectDto = super.createProject("New Project 2", "token1", datasources, ontologies, "efo", 0); + user1 = userService.findByEmail(user1.getEmail()); + Project project2 = projectService.retrieveProject(projectDto.getId(), user1); + SourceDto sourceDto2 = super.createSource(project2.getId()); + Entity entity2 = entityService.createEntity(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), + CurationConstants.CONTEXT_DEFAULT, sourceDto2.getId(), project2.getId(), 10, provenance, EntityStatus.UNMAPPED)); + + String iri1 = "http://www.orpha.net/ORDO/Orphanet_15"; + + List zoomaResponseDtos = new ArrayList<>(); + zoomaResponseDtos.add(new ZoomaResponseDto(Arrays.asList(new String[]{iri1}), "HIGH")); + when(zoomaService.annotate(eq(entity1.getName()), any(), any())).thenReturn(zoomaResponseDtos); + when(zoomaService.annotate(eq(entity2.getName()), any(), any())).thenReturn(zoomaResponseDtos); + + when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri1)), eq(iri1))).thenReturn( + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri1, "Orphanet:15", "Achondroplasia", false, true)}) + ); + + matchmakerService.runMatchmaking(sourceDto1.getId(), project1); + matchmakerService.runMatchmaking(sourceDto2.getId(), project2); + + Entity updated = entityService.retrieveEntity(entity1.getId()); + assertEquals(EntityStatus.AUTO_MAPPED, updated.getMappingStatus()); + + updated = entityService.retrieveEntity(entity2.getId()); + assertEquals(EntityStatus.AUTO_MAPPED, updated.getMappingStatus()); + + List ontologyTerms = ontologyTermService.retrieveAllTerms(); + assertEquals(1, ontologyTerms.size()); + OntologyTerm ontologyTerm = ontologyTerms.get(0); + assertEquals(2, ontologyTerm.getContexts().size()); + + Map projectMap = new HashMap<>(); + for (OntologyTermContext ontologyTermContext : ontologyTerm.getContexts()) { + projectMap.put(ontologyTermContext.getProjectId(), ""); + } + + assertEquals(2, projectMap.size()); + assertTrue(projectMap.containsKey(project1.getId())); + assertTrue(projectMap.containsKey(project2.getId())); + for (OntologyTermContext ontologyTermContext : ontologyTerm.getContexts()) { + if (ontologyTermContext.getProjectId().equalsIgnoreCase(project1.getId())) { + assertEquals(CurationConstants.CONTEXT_DEFAULT, ontologyTermContext.getContext()); + assertEquals(TermStatus.NEEDS_IMPORT.name(), ontologyTermContext.getStatus()); + } + if (ontologyTermContext.getProjectId().equalsIgnoreCase(project2.getId())) { + assertEquals(CurationConstants.CONTEXT_DEFAULT, ontologyTermContext.getContext()); + assertEquals(TermStatus.NEEDS_IMPORT.name(), ontologyTermContext.getStatus()); + } + } + } + + /** + * Test case: + * - Match 1 entity from 1 project in 2 different contexts annotated with the same term. + * -- Expected: term should have 2 contexts + */ + @Test + public void testCase2() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", "token1", datasources, ontologies, "efo", 0); + user1 = userService.findByEmail(user1.getEmail()); + + Project project = projectService.retrieveProject(projectDto.getId(), user1); + SourceDto sourceDto1 = super.createSource(project.getId()); + SourceDto sourceDto2 = super.createSource(project.getId()); + Provenance provenance = new Provenance(user1.getName(), user1.getEmail(), DateTime.now()); + projectService.createProjectContext(new ProjectContext(null, "SECOND", project.getId(), "Description", + datasources, ontologies, Arrays.asList(new String[]{"Orphanet"}), Arrays.asList(new String[]{"orphanet"})), project.getId(), user1); + project = projectService.retrieveProject(projectDto.getId(), user1); + + Entity entity1 = entityService.createEntity(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), + CurationConstants.CONTEXT_DEFAULT, sourceDto1.getId(), project.getId(), 10, provenance, EntityStatus.UNMAPPED)); + Entity entity2 = entityService.createEntity(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), + "SECOND", sourceDto2.getId(), project.getId(), 10, provenance, EntityStatus.UNMAPPED)); + + String iri1 = "http://www.orpha.net/ORDO/Orphanet_15"; + + List zoomaResponseDtos = new ArrayList<>(); + zoomaResponseDtos.add(new ZoomaResponseDto(Arrays.asList(new String[]{iri1}), "HIGH")); + when(zoomaService.annotate(eq(entity1.getName()), any(), any())).thenReturn(zoomaResponseDtos); + when(zoomaService.annotate(eq(entity2.getName()), any(), any())).thenReturn(zoomaResponseDtos); + + when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(iri1)), eq(iri1))).thenReturn( + Arrays.asList(new OLSTermDto[]{new OLSTermDto(iri1, "Orphanet:15", "Achondroplasia", false, true)}) + ); + + matchmakerService.runMatchmaking(sourceDto1.getId(), project); + matchmakerService.runMatchmaking(sourceDto2.getId(), project); + + Entity updated = entityService.retrieveEntity(entity1.getId()); + assertEquals(EntityStatus.AUTO_MAPPED, updated.getMappingStatus()); + + updated = entityService.retrieveEntity(entity2.getId()); + assertEquals(EntityStatus.AUTO_MAPPED, updated.getMappingStatus()); + + List ontologyTerms = ontologyTermService.retrieveAllTerms(); + assertEquals(1, ontologyTerms.size()); + OntologyTerm ontologyTerm = ontologyTerms.get(0); + assertEquals(2, ontologyTerm.getContexts().size()); + + Map projectMap = new HashMap<>(); + for (OntologyTermContext ontologyTermContext : ontologyTerm.getContexts()) { + projectMap.put(ontologyTermContext.getProjectId(), ""); + } + + assertEquals(1, projectMap.size()); + assertTrue(projectMap.containsKey(project.getId())); + for (OntologyTermContext ontologyTermContext : ontologyTerm.getContexts()) { + if (ontologyTermContext.getProjectId().equalsIgnoreCase(project.getId()) && ontologyTermContext.getContext().equals(CurationConstants.CONTEXT_DEFAULT)) { + assertEquals(TermStatus.NEEDS_IMPORT.name(), ontologyTermContext.getStatus()); + } + if (ontologyTermContext.getProjectId().equalsIgnoreCase(project.getId()) && ontologyTermContext.getContext().equals("SECOND")) { + assertEquals(TermStatus.CURRENT.name(), ontologyTermContext.getStatus()); + } + } + } +} From 1442cf28ba8c8cdf99c85a29eed5fe9982a34252 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Tue, 30 Mar 2021 22:16:30 +0800 Subject: [PATCH 64/72] Added gitignore. --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..21a5f21 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/target/ +/log/ +/.idea/ From 8703440884bf0a8643b9f0767397b95eea61ce31 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Wed, 31 Mar 2021 21:20:05 +0800 Subject: [PATCH 65/72] Added support for free-text search on entity and user names. --- .../curation/constants/CurationConstants.java | 2 + .../ontotools/curation/domain/auth/User.java | 2 + .../curation/domain/mapping/Entity.java | 2 + .../curation/repository/EntityRepository.java | 3 ++ .../curation/repository/UserRepository.java | 5 ++ .../rest/controller/EntityController.java | 8 ++-- .../curation/service/EntityService.java | 2 +- .../service/impl/EntityServiceImpl.java | 7 +-- .../curation/EntityControllerTest.java | 46 +++++++++++++++++++ .../ontotools/curation/IntegrationTest.java | 2 +- 10 files changed, 71 insertions(+), 8 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java index 8a87a95..cf71295 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -34,6 +34,8 @@ public class CurationConstants { public static final String PARAM_ENTITY_ID = "entityId"; + public static final String PARAM_SEARCH = "search"; + public static final String PARAM_QUERY = "query"; public static final String ZOOMA_CONFIDENCE_HIGH = "HIGH"; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/User.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/User.java index 8d6f707..54b5514 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/User.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/auth/User.java @@ -6,6 +6,7 @@ import lombok.Setter; import org.springframework.data.annotation.Id; import org.springframework.data.mongodb.core.index.Indexed; +import org.springframework.data.mongodb.core.index.TextIndexed; import org.springframework.data.mongodb.core.mapping.Document; import java.util.List; @@ -20,6 +21,7 @@ public class User { @Id private String id; + @TextIndexed private String name; @Indexed diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java index 4bdf432..512de42 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Entity.java @@ -8,6 +8,7 @@ import org.springframework.data.mongodb.core.index.CompoundIndex; import org.springframework.data.mongodb.core.index.CompoundIndexes; import org.springframework.data.mongodb.core.index.Indexed; +import org.springframework.data.mongodb.core.index.TextIndexed; import org.springframework.data.mongodb.core.mapping.Document; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; @@ -25,6 +26,7 @@ public class Entity { @Id private String id; + @TextIndexed private String name; private String baseId; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java index 2a32f50..0c7f41b 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java @@ -2,6 +2,7 @@ import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; +import org.springframework.data.mongodb.core.query.TextCriteria; import org.springframework.data.mongodb.repository.MongoRepository; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; @@ -20,4 +21,6 @@ public interface EntityRepository extends MongoRepository { Stream readByProjectIdAndContext(String projectId, String context); Stream readByProjectIdAndMappingStatusIn(String projectId, List statusList); + + Page findByNameLikeIgnoreCase(String prefix, Pageable pageable); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/UserRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/UserRepository.java index 343e516..b97f73d 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/UserRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/UserRepository.java @@ -1,5 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.repository; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; import org.springframework.data.mongodb.repository.MongoRepository; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; @@ -13,4 +15,7 @@ public interface UserRepository extends MongoRepository { List findBySuperUser(boolean superUser); List findByRoles_ProjectId(String projectId); + + Page findByNameLikeIgnoreCase(String prefix, Pageable pageable); + } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java index 8b313d3..b740755 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java @@ -57,12 +57,14 @@ public class EntityController { private AuditEntryService auditEntryService; /** - * GET /v1/projects/{projectId}/entities + * GET /v1/projects/{projectId}/entities?search= */ @GetMapping(value = "/{projectId}" + CurationConstants.API_ENTITIES, produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.OK) - public RestResponsePage getEntities(@PathVariable String projectId, @PageableDefault(size = 20, page = 0) Pageable pageable, HttpServletRequest request) { + public RestResponsePage getEntities(@PathVariable String projectId, + @RequestParam(value = CurationConstants.PARAM_SEARCH, required = false) String prefix, + @PageableDefault(size = 20, page = 0) Pageable pageable, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to retrieve entities: {}", user.getEmail(), projectId); projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR, ProjectRole.CONSUMER})); @@ -72,7 +74,7 @@ public RestResponsePage getEntities(@PathVariable String projectId, @ sourceMap.put(source.getId(), SourceDtoAssembler.assemble(source)); } - Page entities = entityService.retrieveEntitiesForProject(projectId, pageable); + Page entities = entityService.retrieveEntitiesForProject(projectId, prefix, pageable); List entityIds = entities.get().map(Entity::getId).collect(Collectors.toList()); Map mappings = mappingService.retrieveMappingsForEntities(entityIds); Map> mappingSuggestions = mappingSuggestionsService.retrieveMappingSuggestionsForEntities(entityIds); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java index a7449d7..3b0def9 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java @@ -19,7 +19,7 @@ public interface EntityService { Entity updateMappingStatus(Entity entity, EntityStatus mappingStatus); - Page retrieveEntitiesForProject(String projectId, Pageable page); + Page retrieveEntitiesForProject(String projectId, String prefix, Pageable page); Entity retrieveEntity(String entityId); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java index d074846..23d7f47 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java @@ -57,9 +57,10 @@ public Entity updateMappingStatus(Entity entity, EntityStatus mappingStatus) { } @Override - public Page retrieveEntitiesForProject(String projectId, Pageable page) { - log.debug("Retrieving entities for {} sources: {} | {}", projectId, page.getPageNumber(), page.getPageSize()); - Page entityPage = entityRepository.findByProjectId(projectId, page); + public Page retrieveEntitiesForProject(String projectId, String prefix, Pageable page) { + log.debug("Retrieving entities [{}]: {} | {}", projectId, prefix, page.getPageNumber(), page.getPageSize()); + Page entityPage = prefix == null ? entityRepository.findByProjectId(projectId, page) : + entityRepository.findByNameLikeIgnoreCase(prefix, page); log.debug("Found {} entities.", entityPage.getContent().size()); return entityPage; } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java index e867294..cece7e1 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java @@ -1,6 +1,8 @@ package uk.ac.ebi.spot.ontotools.curation; import com.fasterxml.jackson.core.type.TypeReference; +import org.apache.commons.lang3.RandomStringUtils; +import org.joda.time.DateTime; import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.http.MediaType; @@ -10,6 +12,8 @@ import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.RestResponsePage; @@ -95,6 +99,48 @@ public void shouldGetEntities() throws Exception { assertEquals(sourceDto.getId(), actual.getSource().getId()); } + /** + * GET /v1/projects/{projectId}/entities?search= + */ + @Test + public void shouldGetEntitiesByPrefixSearch() throws Exception { + super.entityRepository.insert(new Entity(null, "Achonparestesia", RandomStringUtils.randomAlphabetic(10), + CurationConstants.CONTEXT_DEFAULT, sourceDto.getId(), project.getId(), null, + new Provenance(user1.getName(), user1.getEmail(), DateTime.now()), EntityStatus.AUTO_MAPPED)); + + String prefix = "chon"; + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_ENTITIES + + "?" + CurationConstants.PARAM_SEARCH + "=" + prefix; + String response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + RestResponsePage entitiesPage = mapper.readValue(response, new TypeReference<>() { + }); + assertEquals(2, entitiesPage.getTotalElements()); + + prefix = "achond"; + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_ENTITIES + + "?" + CurationConstants.PARAM_SEARCH + "=" + prefix; + response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + entitiesPage = mapper.readValue(response, new TypeReference<>() { + }); + assertEquals(1, entitiesPage.getTotalElements()); + EntityDto actual = entitiesPage.getContent().get(0); + assertEquals("Achondroplasia", actual.getName()); + } + /** * GET /v1/projects/{projectId}/entities/{entityId} */ diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index e1b343a..03d9254 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -111,7 +111,7 @@ public OLSService olsService() { protected MappingRepository mappingRepository; @Autowired - private EntityRepository entityRepository; + protected EntityRepository entityRepository; @Autowired protected UserService userService; From 26ba36724c9a7c2973a6b99684216271c1c7affb Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Wed, 31 Mar 2021 22:51:13 +0800 Subject: [PATCH 66/72] Fixed ontoterm update task. --- .../log/OntologyTermUpdateLogEntry.java | 4 + .../curation/domain/mapping/Mapping.java | 5 +- .../repository/MappingRepository.java | 1 + .../curation/service/MappingService.java | 2 +- .../curation/service/OntologyTermService.java | 2 + .../service/impl/MappingServiceImpl.java | 6 +- .../service/impl/OntologyTermServiceImpl.java | 17 +++ .../tasks/OntologyTermUpdateTask.java | 100 ++++++++++++------ .../ontotools/curation/IntegrationTest.java | 2 +- .../tasks/OntologyTermUpdateTaskTest.java | 90 +++++++++++----- 10 files changed, 167 insertions(+), 62 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/OntologyTermUpdateLogEntry.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/OntologyTermUpdateLogEntry.java index 06f9b4b..e7ce0f0 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/OntologyTermUpdateLogEntry.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/log/OntologyTermUpdateLogEntry.java @@ -23,6 +23,10 @@ public class OntologyTermUpdateLogEntry { private String ontoTermLabel; + private String projectId; + + private String context; + private String previousStatus; private String newStatus; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java index a36b75c..daf584c 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/domain/mapping/Mapping.java @@ -22,7 +22,8 @@ @Setter @AllArgsConstructor @NoArgsConstructor -@CompoundIndexes({@CompoundIndex(name = "eoId", def = "{'entityId': 1, 'ontologyTermIds': 1}")}) +@CompoundIndexes({@CompoundIndex(name = "eoId", def = "{'entityId': 1, 'ontologyTermIds': 1}"), + @CompoundIndex(name = "pco", def = "{'projectId': 1, 'context': 1, 'ontologyTermIds': 1}")}) public class Mapping { @Id @@ -31,6 +32,8 @@ public class Mapping { @Indexed private String entityId; + private String context; + @Indexed private List ontologyTermIds; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java index b774495..104b959 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/MappingRepository.java @@ -13,4 +13,5 @@ public interface MappingRepository extends MongoRepository { List findByOntologyTermIdsContains(String ontoTermId); + List findByProjectIdAndContextAndOntologyTermIdsContains(String projectId, String context, String ontoTermId); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java index bd4cb9a..ff74c96 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/MappingService.java @@ -27,5 +27,5 @@ public interface MappingService { void deleteMapping(String mappingId, Provenance provenance, List metadata); - void updateStatusForObsoleteMappings(String ontologyTermId); + void updateStatusForObsoleteMappings(String ontologyTermId, String projectId, String context); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java index 023d41d..aff6743 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/OntologyTermService.java @@ -20,4 +20,6 @@ public interface OntologyTermService { OntologyTerm retrieveTermById(String ontologyTermId); List retrieveTermByCuries(List curies); + + String retrieveStatusUpdate(String iri, ProjectContext projectContext, String previousStatus); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java index b5db75f..0e9fd94 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/MappingServiceImpl.java @@ -41,7 +41,7 @@ public class MappingServiceImpl implements MappingService { public Mapping createMapping(Entity entity, List ontologyTerms, Provenance provenance) { log.info("Creating mapping for entity [{}]: {}", entity.getName(), ontologyTerms); List ontologyTermIds = ontologyTerms.stream().map(OntologyTerm::getId).collect(Collectors.toList()); - Mapping created = mappingRepository.insert(new Mapping(null, entity.getId(), ontologyTermIds, entity.getProjectId(), + Mapping created = mappingRepository.insert(new Mapping(null, entity.getId(), entity.getContext(), ontologyTermIds, entity.getProjectId(), false, new ArrayList<>(), new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), provenance, null)); created.setOntologyTerms(ontologyTerms); @@ -103,8 +103,8 @@ public void deleteMapping(String mappingId, Provenance provenance, List mappings = mappingRepository.findByOntologyTermIdsContains(ontologyTermId); + public void updateStatusForObsoleteMappings(String ontologyTermId, String projectId, String context) { + List mappings = mappingRepository.findByProjectIdAndContextAndOntologyTermIdsContains(projectId, context, ontologyTermId); for (Mapping mapping : mappings) { mapping.setStatus(MappingStatus.HAS_OBSOLETE_TERM.name()); mappingRepository.save(mapping); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java index ece33ae..5f448d3 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/OntologyTermServiceImpl.java @@ -108,6 +108,23 @@ public OntologyTerm createTerm(String iri, ProjectContext projectContext) { return null; } + @Override + public String retrieveStatusUpdate(String iri, ProjectContext projectContext, String previousStatus) { + List preferredOntoResponse = new ArrayList<>(); + for (String preferredOntology : projectContext.getPreferredMappingOntologies()) { + preferredOntoResponse.addAll(olsService.retrieveTerms(preferredOntology, iri)); + } + String ontoId = CurationUtil.ontoFromIRI(iri); + String termStatus; + if (!projectContext.getPreferredMappingOntologiesLower().contains(ontoId.toLowerCase())) { + List parentOntoResponse = olsService.retrieveTerms(ontoId, iri); + termStatus = parseStatus(preferredOntoResponse, parentOntoResponse, previousStatus); + } else { + termStatus = parseStatus(preferredOntoResponse, null, previousStatus); + } + return termStatus; + } + @Override public Map retrieveTerms(List ontologyTermIds) { log.info("Retrieving {} ontology terms.", ontologyTermIds.size()); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTask.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTask.java index 4e36815..0369b2c 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTask.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTask.java @@ -8,18 +8,19 @@ import org.springframework.scheduling.annotation.Scheduled; import org.springframework.stereotype.Component; import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.ProjectContext; import uk.ac.ebi.spot.ontotools.curation.domain.log.OntologyTermUpdateLogBatch; import uk.ac.ebi.spot.ontotools.curation.domain.log.OntologyTermUpdateLogEntry; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTermContext; import uk.ac.ebi.spot.ontotools.curation.repository.OntologyTermRepository; import uk.ac.ebi.spot.ontotools.curation.repository.OntologyTermUpdateLogBatchRepository; import uk.ac.ebi.spot.ontotools.curation.repository.OntologyTermUpdateLogEntryRepository; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; -import uk.ac.ebi.spot.ontotools.curation.service.MappingService; -import uk.ac.ebi.spot.ontotools.curation.service.OLSService; +import uk.ac.ebi.spot.ontotools.curation.service.*; -import java.util.Arrays; -import java.util.List; +import java.util.*; import java.util.stream.Stream; @Component @@ -48,21 +49,26 @@ public class OntologyTermUpdateTask { @Autowired private MappingService mappingService; + @Autowired + private ProjectService projectService; + + @Autowired + private UserService userService; + + @Autowired + private OntologyTermService ontologyTermService; + @Scheduled(cron = "${ontotools.ols.update-schedule.pattern}") public void updateOntologyTerms() { log.info("Running ontology terms update ..."); double sTime = System.currentTimeMillis(); - List targetStatusList = Arrays.asList(new String[]{ - TermStatus.CURRENT.name(), - TermStatus.AWAITING_IMPORT.name(), - TermStatus.NEEDS_IMPORT.name(), - TermStatus.NEEDS_CREATION.name() - }); - OntologyTermUpdateLogBatch ontologyTermUpdateLogBatch = ontologyTermUpdateLogBatchRepository.insert(new OntologyTermUpdateLogBatch(null, DateTime.now(), 0)); + List projects = projectService.retrieveProjects(userService.retrieveRobotUser()); + Map> projectConfig = prepareProjectConfig(projects); + Stream ontologyTermStream = ontologyTermRepository.findAllByCustomQueryAndStream(); - ontologyTermStream.forEach(ontologyTerm -> this.updateTerm(ontologyTerm, ontologyTermUpdateLogBatch.getId())); + ontologyTermStream.forEach(ontologyTerm -> this.updateTerm(ontologyTerm, projectConfig, ontologyTermUpdateLogBatch.getId())); ontologyTermStream.close(); double eTime = System.currentTimeMillis(); @@ -72,32 +78,62 @@ public void updateOntologyTerms() { log.info("Ontology terms update finalized in {}s.", tTime); } - /** - * TODO: Fix this to cater for transitions starting from NEEDS_IMPORT / AWAITING_IMPORT into CURRENT - */ + private Map> prepareProjectConfig(List projects) { + Map> result = new LinkedHashMap<>(); - private void updateTerm(OntologyTerm ontologyTerm, String batchId) { - /* - String currentStatus = ontologyTerm.getStatus(); - String newStatus = currentStatus; - OLSTermDto olsTermDto = olsService.retrieveOriginalTerm(ontologyTerm.getIri()); - if (olsTermDto == null) { - newStatus = TermStatus.DELETED.name(); - } else { - if (olsTermDto.getObsolete() != null && olsTermDto.getObsolete()) { - newStatus = TermStatus.OBSOLETE.name(); + for (Project project : projects) { + Map contextMap = new LinkedHashMap<>(); + for (ProjectContext projectContext : project.getContexts()) { + contextMap.put(projectContext.getName(), projectContext); } + result.put(project.getId(), contextMap); } - if (!currentStatus.equalsIgnoreCase(newStatus)) { - ontologyTermUpdateLogEntryRepository.insert(new OntologyTermUpdateLogEntry(null, batchId, ontologyTerm.getId(), - ontologyTerm.getCurie(), ontologyTerm.getLabel(), currentStatus, newStatus)); - ontologyTerm.setStatus(newStatus); - ontologyTermRepository.save(ontologyTerm); + return result; + } - mappingService.updateStatusForObsoleteMappings(ontologyTerm.getId()); + private void updateTerm(OntologyTerm ontologyTerm, Map> projectConfig, String batchId) { + Map deletedTerms = new LinkedHashMap<>(); + Map toUpdate = new LinkedHashMap<>(); + + for (OntologyTermContext ontologyTermContext : ontologyTerm.getContexts()) { + String currentStatus = ontologyTermContext.getStatus(); + String newStatus = ontologyTermService.retrieveStatusUpdate(ontologyTerm.getIri(), + projectConfig.get(ontologyTermContext.getProjectId()).get(ontologyTermContext.getContext()), currentStatus); + + if (!newStatus.equalsIgnoreCase(currentStatus)) { + toUpdate.put(ontologyTermContext.getProjectId() + "::" + ontologyTermContext.getContext(), newStatus); + + if (newStatus.equalsIgnoreCase(TermStatus.DELETED.name())) { + deletedTerms.put(ontologyTermContext.getProjectId(), ontologyTermContext.getContext()); + } + } } - */ + if (!toUpdate.isEmpty()) { + List newContexts = new ArrayList<>(); + for (OntologyTermContext ontologyTermContext : ontologyTerm.getContexts()) { + if (toUpdate.containsKey(ontologyTermContext.getProjectId() + "::" + ontologyTermContext.getContext())) { + String newStatus = toUpdate.get(ontologyTermContext.getProjectId() + "::" + ontologyTermContext.getContext()); + newContexts.add(new OntologyTermContext(ontologyTermContext.getProjectId(), + ontologyTermContext.getContext(), newStatus)); + + ontologyTermUpdateLogEntryRepository.insert(new OntologyTermUpdateLogEntry(null, batchId, ontologyTerm.getId(), + ontologyTerm.getCurie(), ontologyTerm.getLabel(), ontologyTermContext.getProjectId(), + ontologyTermContext.getContext(), ontologyTermContext.getStatus(), newStatus)); + } else { + newContexts.add(ontologyTermContext); + } + } + + ontologyTerm.setContexts(newContexts); + ontologyTermRepository.save(ontologyTerm); + } + + if (!deletedTerms.isEmpty()) { + for (String projectId : deletedTerms.keySet()) { + mappingService.updateStatusForObsoleteMappings(ontologyTerm.getId(), projectId, deletedTerms.get(projectId)); + } + } } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 03d9254..030f591 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -238,7 +238,7 @@ protected void createEntityTestData(String sourceId, String projectId, User user mappingSuggestionRepository.insert(new MappingSuggestion(null, entity.getId(), orphaTerm.getId(), projectId, provenance, null)); mappingSuggestionRepository.insert(new MappingSuggestion(null, entity.getId(), mondoTerm.getId(), projectId, provenance, null)); - orphaTermMapping = mappingRepository.insert(new Mapping(null, entity.getId(), Arrays.asList(new String[]{orphaTerm.getId()}), + orphaTermMapping = mappingRepository.insert(new Mapping(null, entity.getId(), entity.getContext(), Arrays.asList(new String[]{orphaTerm.getId()}), projectId, false, new ArrayList<>(), new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), provenance, null)); } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTaskTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTaskTest.java index 221257f..0172641 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTaskTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTaskTest.java @@ -1,21 +1,49 @@ package uk.ac.ebi.spot.ontotools.curation.tasks; -import org.junit.Ignore; +import org.apache.commons.codec.digest.DigestUtils; +import org.apache.commons.lang3.RandomStringUtils; +import org.joda.time.DateTime; import org.junit.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; import uk.ac.ebi.spot.ontotools.curation.IntegrationTest; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; +import uk.ac.ebi.spot.ontotools.curation.constants.MappingStatus; +import uk.ac.ebi.spot.ontotools.curation.constants.TermStatus; +import uk.ac.ebi.spot.ontotools.curation.domain.Project; +import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; +import uk.ac.ebi.spot.ontotools.curation.domain.config.ExternalServiceConfig; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Mapping; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; -import uk.ac.ebi.spot.ontotools.curation.repository.EntityRepository; +import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTermContext; +import uk.ac.ebi.spot.ontotools.curation.repository.ExternalServiceConfigRepository; import uk.ac.ebi.spot.ontotools.curation.repository.OntologyTermRepository; import uk.ac.ebi.spot.ontotools.curation.repository.OntologyTermUpdateLogEntryRepository; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ols.OLSTermDto; +import uk.ac.ebi.spot.ontotools.curation.service.EntityService; import uk.ac.ebi.spot.ontotools.curation.service.OLSService; +import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; +import uk.ac.ebi.spot.ontotools.curation.util.CurationUtil; + +import java.util.ArrayList; +import java.util.Arrays; +import java.util.List; + +import static org.junit.Assert.assertEquals; +import static org.mockito.Mockito.eq; +import static org.mockito.Mockito.when; @ContextConfiguration(classes = {IntegrationTest.MockTaskExecutorConfig.class, IntegrationTest.MockOLSServiceConfig.class}) public class OntologyTermUpdateTaskTest extends IntegrationTest { + @Autowired + private ExternalServiceConfigRepository externalServiceConfigRepository; + @Autowired private OntologyTermUpdateTask ontologyTermUpdateTask; @@ -29,7 +57,10 @@ public class OntologyTermUpdateTaskTest extends IntegrationTest { private OntologyTermUpdateLogEntryRepository ontologyTermUpdateLogEntryRepository; @Autowired - private EntityRepository entityRepository; + private EntityService entityService; + + @Autowired + private ProjectService projectService; private OntologyTerm orphaTerm; @@ -40,44 +71,55 @@ public class OntologyTermUpdateTaskTest extends IntegrationTest { @Override public void setup() throws Exception { super.setup(); - /* + + externalServiceConfigRepository.insert(new ExternalServiceConfig(null, "OLS", Arrays.asList(new String[]{"orphanet::ordo"}))); + externalServiceConfigRepository.insert(new ExternalServiceConfig(null, "OXO", Arrays.asList(new String[]{"ordo::orphanet"}))); + + List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); + List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); + + ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "mondo", 0); + user1 = userService.findByEmail(user1.getEmail()); + Project project = projectService.retrieveProject(projectDto.getId(), user1); + SourceDto sourceDto = super.createSource(project.getId()); + Provenance provenance = new Provenance(user1.getName(), user1.getEmail(), DateTime.now()); + this.orphaTerm = ontologyTermRepository.insert(new OntologyTerm(null, "Orphanet:15", "http://www.orpha.net/ORDO/Orphanet_15", - DigestUtils.sha256Hex("http://www.orpha.net/ORDO/Orphanet_15"), "Achondroplasia", TermStatus.CURRENT.name(), null, null)); + DigestUtils.sha256Hex("http://www.orpha.net/ORDO/Orphanet_15"), "Achondroplasia", + Arrays.asList(new OntologyTermContext[]{ + new OntologyTermContext(project.getId(), CurationConstants.CONTEXT_DEFAULT, TermStatus.CURRENT.name()) + }), null, null)); + this.mondoTerm = ontologyTermRepository.insert(new OntologyTerm(null, "MONDO:0007037", "http://purl.obolibrary.org/obo/MONDO_0007037", - DigestUtils.sha256Hex("http://purl.obolibrary.org/obo/MONDO_0007037"), "Achondroplasia", TermStatus.NEEDS_IMPORT.name(), null, null)); + DigestUtils.sha256Hex("http://purl.obolibrary.org/obo/MONDO_0007037"), "Achondroplasia", Arrays.asList(new OntologyTermContext[]{ + new OntologyTermContext(project.getId(), CurationConstants.CONTEXT_DEFAULT, TermStatus.NEEDS_IMPORT.name()) + }), null, null)); - Entity entity = entityRepository.insert(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), - CurationConstants.CONTEXT_DEFAULT, RandomStringUtils.randomAlphabetic(10), RandomStringUtils.randomAlphabetic(10), - null, new Provenance(user1.getName(), user1.getEmail(), DateTime.now()), EntityStatus.AUTO_MAPPED)); + entity = entityService.createEntity(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), + CurationConstants.CONTEXT_DEFAULT, sourceDto.getId(), project.getId(), 10, provenance, EntityStatus.UNMAPPED)); - mapping = mappingRepository.insert(new Mapping(null, entity.getId(), Arrays.asList(new String[]{orphaTerm.getId()}), + mapping = mappingRepository.insert(new Mapping(null, entity.getId(), entity.getContext(), Arrays.asList(new String[]{orphaTerm.getId()}), entity.getProjectId(), false, new ArrayList<>(), new ArrayList<>(), MappingStatus.AWAITING_REVIEW.name(), new Provenance(user1.getName(), user1.getEmail(), DateTime.now()), null)); - when(olsService.retrieveOriginalTerm(this.mondoTerm.getIri())).thenReturn(null); - when(olsService.retrieveOriginalTerm(this.orphaTerm.getIri())).thenReturn(new OLSTermDto(this.orphaTerm.getIri(), - this.orphaTerm.getCurie(), this.orphaTerm.getLabel(), true, true)); - */ + when(olsService.retrieveTerms(eq(CurationUtil.ontoFromIRI(orphaTerm.getIri())), eq(orphaTerm.getIri()))).thenReturn(new ArrayList<>()); + when(olsService.retrieveTerms(eq("mondo"), eq(mondoTerm.getIri()))).thenReturn( + Arrays.asList(new OLSTermDto[]{new OLSTermDto(mondoTerm.getIri(), "MONDO:0007037", "Achondroplasia", false, true)}) + ); } @Test - @Ignore public void shouldRunUpdate() { - /* ontologyTermUpdateTask.updateOntologyTerms(); OntologyTerm ontologyTerm = ontologyTermRepository.findById(this.orphaTerm.getId()).get(); - assertEquals(TermStatus.OBSOLETE.name(), ontologyTerm.getStatus()); - - ontologyTerm = ontologyTermRepository.findById(this.mondoTerm.getId()).get(); - assertEquals(TermStatus.DELETED.name(), ontologyTerm.getStatus()); - assertEquals(2, ontologyTermUpdateLogEntryRepository.findAll().size()); + assertEquals(TermStatus.DELETED.name(), ontologyTerm.getContexts().get(0).getStatus()); Mapping newMapping = mappingRepository.findById(mapping.getId()).get(); assertEquals(MappingStatus.HAS_OBSOLETE_TERM.name(), newMapping.getStatus()); - verify(olsService, times(1)).retrieveOriginalTerm(eq(this.mondoTerm.getIri())); - verify(olsService, times(1)).retrieveOriginalTerm(eq(this.orphaTerm.getIri())); - */ + ontologyTerm = ontologyTermRepository.findById(this.mondoTerm.getId()).get(); + assertEquals(TermStatus.CURRENT.name(), ontologyTerm.getContexts().get(0).getStatus()); + assertEquals(2, ontologyTermUpdateLogEntryRepository.findAll().size()); } } \ No newline at end of file From d3346a9481108f9037d0cb69531cf90b00a95413 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Thu, 1 Apr 2021 22:01:15 +0800 Subject: [PATCH 67/72] Revamped project and user management. --- .../rest/controller/EntityController.java | 2 +- .../rest/controller/MappingsController.java | 2 +- .../controller/OntologyTermController.java | 2 +- ...oller.java => ProjectUsersController.java} | 4 +- .../rest/controller/ProjectsController.java | 14 +- .../controller/ProjectsUtilController.java | 2 +- .../rest/controller/UsersController.java | 72 ++++ .../curation/rest/dto/UserCreationDto.java | 39 ++ .../curation/service/UserService.java | 6 + .../service/impl/ProjectServiceImpl.java | 3 + .../service/impl/UserServiceImpl.java | 17 + .../ontotools/curation/util/CurationUtil.java | 12 + .../curation/AuditTrailControllerTest.java | 2 +- .../ontotools/curation/DataImportTest.java | 2 +- .../curation/EntityControllerTest.java | 2 +- .../ontotools/curation/IntegrationTest.java | 6 +- .../MappingCommentsControllerTest.java | 2 +- .../MappingReviewsControllerTest.java | 2 +- .../curation/MappingsControllerTest.java | 2 +- .../curation/MatchMakingContolledTest.java | 2 +- .../ontotools/curation/MatchMakingTest.java | 2 +- .../curation/OntoTermContextStatusTest.java | 6 +- .../curation/OntologyTermControllerTest.java | 2 +- .../ProjectContextsControllerTest.java | 2 +- .../curation/ProjectUsersControllerTest.java | 408 ++++++++++++++++++ .../curation/ProjectsControllerTest.java | 57 ++- .../curation/ProjectsUtilControllerTest.java | 2 +- .../curation/PublicDataControllerTest.java | 2 +- .../curation/SourcesControllerTest.java | 2 +- .../curation/UsersControllerTest.java | 380 ++-------------- .../rest/dto/UserCreationDtoTest.java | 13 + .../tasks/OntologyTermUpdateTaskTest.java | 2 +- 32 files changed, 677 insertions(+), 396 deletions(-) rename src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/{UserManagementController.java => ProjectUsersController.java} (98%) create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/UsersController.java create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/UserCreationDto.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectUsersControllerTest.java create mode 100644 src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/UserCreationDtoTest.java diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java index b740755..36a1b3f 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java @@ -33,7 +33,7 @@ @RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) public class EntityController { - private static final Logger log = LoggerFactory.getLogger(ProjectsController.class); + private static final Logger log = LoggerFactory.getLogger(EntityController.class); @Autowired private JWTService jwtService; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java index a874fd3..efd7570 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/MappingsController.java @@ -35,7 +35,7 @@ @RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) public class MappingsController { - private static final Logger log = LoggerFactory.getLogger(ProjectsController.class); + private static final Logger log = LoggerFactory.getLogger(MappingsController.class); @Autowired private JWTService jwtService; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/OntologyTermController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/OntologyTermController.java index 02babbf..907d451 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/OntologyTermController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/OntologyTermController.java @@ -27,7 +27,7 @@ @RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) public class OntologyTermController { - private static final Logger log = LoggerFactory.getLogger(ProjectsController.class); + private static final Logger log = LoggerFactory.getLogger(OntologyTermController.class); @Autowired private JWTService jwtService; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/UserManagementController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectUsersController.java similarity index 98% rename from src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/UserManagementController.java rename to src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectUsersController.java index dbb2cd8..794522d 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/UserManagementController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectUsersController.java @@ -27,9 +27,9 @@ @RestController @RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) -public class UserManagementController { +public class ProjectUsersController { - private static final Logger log = LoggerFactory.getLogger(ProjectsController.class); + private static final Logger log = LoggerFactory.getLogger(ProjectUsersController.class); @Autowired private JWTService jwtService; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java index 52e7fe6..3005756 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsController.java @@ -12,6 +12,7 @@ import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.exception.AuthorizationException; import uk.ac.ebi.spot.ontotools.curation.rest.assembler.ProjectDtoAssembler; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectCreationDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; @@ -50,9 +51,12 @@ public class ProjectsController { @ResponseStatus(HttpStatus.CREATED) public ProjectDto createProject(@RequestBody @Valid ProjectCreationDto projectCreationDto, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + if (!user.isSuperUser()) { + log.error("Attempt to create a project by a non-super user: {}", user.getEmail()); + throw new AuthorizationException("Attempt to create a project by a non-super user: " + user.getEmail()); + } log.info("[{}] Request to create project: {}", user.getEmail(), projectCreationDto.getName()); Project created = projectService.createProject(ProjectDtoAssembler.disassemble(projectCreationDto, new Provenance(user.getName(), user.getEmail(), DateTime.now())), user); - userService.addUserToProject(user, created.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN})); return ProjectDtoAssembler.assemble(created); } @@ -92,6 +96,10 @@ public ProjectDto getProject(@PathVariable String projectId, HttpServletRequest @ResponseStatus(HttpStatus.OK) public ProjectDto updateProject(@RequestBody @Valid ProjectDto projectDto, @PathVariable String projectId, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + if (!user.isSuperUser()) { + log.error("Attempt to create a project by a non-super user: {}", user.getEmail()); + throw new AuthorizationException("Attempt to create a project by a non-super user: " + user.getEmail()); + } log.info("[{}] Request to update project [{}]: {}", user.getEmail(), projectId, projectDto.getName()); Project updated = projectService.updateProject(ProjectDtoAssembler.disassemble(projectDto), projectId, user); return ProjectDtoAssembler.assemble(updated); @@ -105,6 +113,10 @@ public ProjectDto updateProject(@RequestBody @Valid ProjectDto projectDto, @Path @ResponseStatus(HttpStatus.OK) public void deleteProject(@PathVariable String projectId, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + if (!user.isSuperUser()) { + log.error("Attempt to create a project by a non-super user: {}", user.getEmail()); + throw new AuthorizationException("Attempt to create a project by a non-super user: " + user.getEmail()); + } log.info("[{}] Request to delete project: {}", user.getEmail(), projectId); projectService.deleteProject(projectId, user); userService.removeProjectFromUser(user, projectId); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsUtilController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsUtilController.java index d7fc19b..06c62c1 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsUtilController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/ProjectsUtilController.java @@ -21,7 +21,7 @@ @RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS) public class ProjectsUtilController { - private static final Logger log = LoggerFactory.getLogger(ProjectsController.class); + private static final Logger log = LoggerFactory.getLogger(ProjectsUtilController.class); @Autowired private JWTService jwtService; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/UsersController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/UsersController.java new file mode 100644 index 0000000..881b43c --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/UsersController.java @@ -0,0 +1,72 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.controller; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; +import org.springframework.data.web.PageableDefault; +import org.springframework.http.HttpStatus; +import org.springframework.http.MediaType; +import org.springframework.web.bind.annotation.*; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; +import uk.ac.ebi.spot.ontotools.curation.exception.AuthorizationException; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.UserDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.RestResponsePage; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.UserCreationDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.UserDto; +import uk.ac.ebi.spot.ontotools.curation.service.JWTService; +import uk.ac.ebi.spot.ontotools.curation.service.UserService; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; +import uk.ac.ebi.spot.ontotools.curation.util.CurationUtil; +import uk.ac.ebi.spot.ontotools.curation.util.HeadersUtil; + +import javax.servlet.http.HttpServletRequest; +import javax.validation.Valid; +import java.util.stream.Collectors; + +@RestController +@RequestMapping(value = GeneralCommon.API_V1 + CurationConstants.API_USERS) +public class UsersController { + + private static final Logger log = LoggerFactory.getLogger(UsersController.class); + + @Autowired + private JWTService jwtService; + + @Autowired + private UserService userService; + + /** + * GET /v1/users?search= + */ + @GetMapping(produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.OK) + public RestResponsePage getUsers(@RequestParam(value = CurationConstants.PARAM_SEARCH, required = false) String prefix, + @PageableDefault(size = 20, page = 0) Pageable pageable, + HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to retrieve users: {}", user.getEmail(), prefix); + Page users = userService.retrieveUsers(prefix, pageable); + return new RestResponsePage<>(users.stream().map(UserDtoAssembler::assemble).collect(Collectors.toList()), pageable, users.getTotalElements()); + } + + /** + * POST /v1/users + */ + @PostMapping(consumes = MediaType.APPLICATION_JSON_VALUE, + produces = MediaType.APPLICATION_JSON_VALUE) + @ResponseStatus(HttpStatus.CREATED) + public UserDto createUser(@RequestBody @Valid UserCreationDto userCreationDto, HttpServletRequest request) { + User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); + log.info("[{}] Request to create user: {} | {}", user.getEmail(), userCreationDto.getName(), userCreationDto.getEmail()); + if (user.isSuperUser() || CurationUtil.isAdmin(user)) { + User created = userService.createUser(userCreationDto.getName(), userCreationDto.getEmail()); + return UserDtoAssembler.assemble(created); + } + + log.error("Attempt to create a user by an unauthorized user: {}", user.getEmail()); + throw new AuthorizationException("Attempt to create a user by an unauthorized user: " + user.getEmail()); + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/UserCreationDto.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/UserCreationDto.java new file mode 100644 index 0000000..ed8e872 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/UserCreationDto.java @@ -0,0 +1,39 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import com.fasterxml.jackson.annotation.JsonCreator; +import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.annotation.JsonProperty; +import lombok.EqualsAndHashCode; + +import javax.validation.constraints.NotNull; +import java.io.Serializable; + +@EqualsAndHashCode +@JsonInclude(JsonInclude.Include.NON_NULL) +public final class UserCreationDto implements Serializable { + + private static final long serialVersionUID = -7756602971327722980L; + + @NotNull + @JsonProperty("name") + private final String name; + + @NotNull + @JsonProperty("email") + private final String email; + + @JsonCreator + public UserCreationDto(@JsonProperty("name") String name, + @JsonProperty("email") String email) { + this.name = name; + this.email = email; + } + + public String getName() { + return name; + } + + public String getEmail() { + return email; + } +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java index da4d0c4..aebdb11 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/UserService.java @@ -1,5 +1,7 @@ package uk.ac.ebi.spot.ontotools.curation.service; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; @@ -21,4 +23,8 @@ public interface UserService { User updateUserRoles(User targetUser, String projectId, List projectRoles); User findById(String userId); + + Page retrieveUsers(String prefix, Pageable pageable); + + User createUser(String name, String email); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java index 12ff90a..6c472e2 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/ProjectServiceImpl.java @@ -189,6 +189,9 @@ public void verifyAccess(String projectId, User user, List roles) { } private boolean hasAccess(User user, String projectId, List roles) { + if (user.isSuperUser()) { + return true; + } if (user.getRoles() != null) { for (Role role : user.getRoles()) { if (role.getProjectId().equals(projectId) && roles.contains(role.getRole())) { diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java index 500803f..d07df7d 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/UserServiceImpl.java @@ -3,6 +3,8 @@ import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.data.domain.Page; +import org.springframework.data.domain.Pageable; import org.springframework.stereotype.Service; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.domain.auth.Role; @@ -129,6 +131,21 @@ public User findById(String userId) { return userOptional.get(); } + @Override + public Page retrieveUsers(String prefix, Pageable page) { + log.info("Retrieving users: {}", prefix); + Page userPage = prefix == null ? userRepository.findAll(page) : userRepository.findByNameLikeIgnoreCase(prefix, page); + return userPage; + } + + @Override + public User createUser(String name, String email) { + log.info("Creating user: {} | {}", name, email); + User created = userRepository.insert(new User(null, name, email, new ArrayList<>(), false)); + log.info("User [{}] created: {}", email, created.getId()); + return created; + } + @Override public void removeProjectFromUser(User targetUser, String projectId) { User existing = this.findByEmail(targetUser.getEmail()); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java index d181a66..d300657 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/util/CurationUtil.java @@ -5,6 +5,8 @@ import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.ProjectContext; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.Role; +import uk.ac.ebi.spot.ontotools.curation.domain.auth.User; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTerm; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.OntologyTermContext; @@ -107,4 +109,14 @@ public static String termStatusForContext(OntologyTerm ontologyTerm, String proj } return null; } + + public static boolean isAdmin(User user) { + for (Role role : user.getRoles()) { + if (role.getRole().equals(ProjectRole.ADMIN)) { + return true; + } + } + + return false; + } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/AuditTrailControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/AuditTrailControllerTest.java index 7947a8f..c3cd087 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/AuditTrailControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/AuditTrailControllerTest.java @@ -40,7 +40,7 @@ public void setup() throws Exception { super.setup(); List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); - ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo", 0); + ProjectDto projectDto = super.createProject("New Project", user1, datasources, ontologies, "efo", 0); user1 = userService.findByEmail(user1.getEmail()); project = projectService.retrieveProject(projectDto.getId(), user1); sourceDto = super.createSource(project.getId()); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/DataImportTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/DataImportTest.java index 674fe36..84e7e4f 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/DataImportTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/DataImportTest.java @@ -43,7 +43,7 @@ public class DataImportTest extends IntegrationTest { @Override public void setup() throws Exception { super.setup(); - projectDto = super.createProject("New Project", "token1", null, null, null, 0); + projectDto = super.createProject("New Project", user1, null, null, null, 0); sourceDto = super.createSource(projectDto.getId()); doNothing().when(matchmakerService).runMatchmaking(eq(sourceDto.getId()), any()); } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java index cece7e1..bf33d70 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java @@ -49,7 +49,7 @@ public void setup() throws Exception { super.setup(); List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); - ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo", 0); + ProjectDto projectDto = super.createProject("New Project", user1, datasources, ontologies, "efo", 0); user1 = userService.findByEmail(user1.getEmail()); project = projectService.retrieveProject(projectDto.getId(), user1); sourceDto = super.createSource(project.getId()); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java index 030f591..ef21ff6 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/IntegrationTest.java @@ -151,7 +151,7 @@ public void destroy() { mongoTemplate.getDb().drop(); } - protected ProjectDto createProject(String name, String token, + protected ProjectDto createProject(String name, User adminUser, List datasources, List ontologies, String preferredMappingOntology, int noReviewsRequired) throws Exception { String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS; @@ -164,7 +164,7 @@ protected ProjectDto createProject(String name, String token, String response = mockMvc.perform(post(endpoint) .contentType(MediaType.APPLICATION_JSON) .content(mapper.writeValueAsString(projectCreationDto)) - .header(IDPConstants.JWT_TOKEN, token)) + .header(IDPConstants.JWT_TOKEN, "supertoken")) .andExpect(status().isCreated()) .andReturn() .getResponse() @@ -192,6 +192,8 @@ protected ProjectDto createProject(String name, String token, if (preferredMappingOntology != null) { assertEquals(preferredMappingOntology, actual.getContexts().get(0).getPreferredMappingOntologies().get(0)); } + + userService.addUserToProject(adminUser, actual.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN})); return actual; } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java index 8d92142..3f156b5 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingCommentsControllerTest.java @@ -48,7 +48,7 @@ public void setup() throws Exception { super.setup(); List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); - ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo", 0); + ProjectDto projectDto = super.createProject("New Project", user1, datasources, ontologies, "efo", 0); user1 = userService.findByEmail(user1.getEmail()); project = projectService.retrieveProject(projectDto.getId(), user1); sourceDto = super.createSource(project.getId()); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java index 9f1541c..9a80d9b 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingReviewsControllerTest.java @@ -48,7 +48,7 @@ public void setup() throws Exception { super.setup(); List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); - ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo", 3); + ProjectDto projectDto = super.createProject("New Project", user1, datasources, ontologies, "efo", 3); user1 = userService.findByEmail(user1.getEmail()); project = projectService.retrieveProject(projectDto.getId(), user1); sourceDto = super.createSource(project.getId()); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java index 8107b90..b194b2d 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MappingsControllerTest.java @@ -48,7 +48,7 @@ public void setup() throws Exception { super.setup(); List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); - ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo", 0); + ProjectDto projectDto = super.createProject("New Project", user1, datasources, ontologies, "efo", 0); user1 = userService.findByEmail(user1.getEmail()); project = projectService.retrieveProject(projectDto.getId(), user1); sourceDto = super.createSource(project.getId()); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java index bab7c5c..6158218 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingContolledTest.java @@ -84,7 +84,7 @@ public void setup() throws Exception { this.datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); this.ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); - ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo", 0); + ProjectDto projectDto = super.createProject("New Project", user1, datasources, ontologies, "efo", 0); user1 = userService.findByEmail(user1.getEmail()); project = projectService.retrieveProject(projectDto.getId(), user1); sourceDto = super.createSource(project.getId()); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java index 0986310..fcb22fc 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/MatchMakingTest.java @@ -71,7 +71,7 @@ public void setup() throws Exception { List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); - ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo", 0); + ProjectDto projectDto = super.createProject("New Project", user1, datasources, ontologies, "efo", 0); user1 = userService.findByEmail(user1.getEmail()); project = projectService.retrieveProject(projectDto.getId(), user1); sourceDto = super.createSource(project.getId()); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntoTermContextStatusTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntoTermContextStatusTest.java index 4c6de0d..e1f33cd 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntoTermContextStatusTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntoTermContextStatusTest.java @@ -81,7 +81,7 @@ public void setup() throws Exception { */ @Test public void testCase1() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", datasources, ontologies, "efo", 0); + ProjectDto projectDto = super.createProject("New Project 1", user1, datasources, ontologies, "efo", 0); user1 = userService.findByEmail(user1.getEmail()); Project project1 = projectService.retrieveProject(projectDto.getId(), user1); @@ -90,7 +90,7 @@ public void testCase1() throws Exception { Entity entity1 = entityService.createEntity(new Entity(null, "Achondroplasia", RandomStringUtils.randomAlphabetic(10), CurationConstants.CONTEXT_DEFAULT, sourceDto1.getId(), project1.getId(), 10, provenance, EntityStatus.UNMAPPED)); - projectDto = super.createProject("New Project 2", "token1", datasources, ontologies, "efo", 0); + projectDto = super.createProject("New Project 2", user1, datasources, ontologies, "efo", 0); user1 = userService.findByEmail(user1.getEmail()); Project project2 = projectService.retrieveProject(projectDto.getId(), user1); SourceDto sourceDto2 = super.createSource(project2.getId()); @@ -149,7 +149,7 @@ public void testCase1() throws Exception { */ @Test public void testCase2() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", datasources, ontologies, "efo", 0); + ProjectDto projectDto = super.createProject("New Project 1", user1, datasources, ontologies, "efo", 0); user1 = userService.findByEmail(user1.getEmail()); Project project = projectService.retrieveProject(projectDto.getId(), user1); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java index 8ca947e..be2f975 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/OntologyTermControllerTest.java @@ -41,7 +41,7 @@ public void setup() throws Exception { List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); - ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo", 0); + ProjectDto projectDto = super.createProject("New Project", user1, datasources, ontologies, "efo", 0); user1 = userService.findByEmail(user1.getEmail()); project = projectService.retrieveProject(projectDto.getId(), user1); } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectContextsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectContextsControllerTest.java index 761895a..98713c3 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectContextsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectContextsControllerTest.java @@ -24,7 +24,7 @@ public class ProjectContextsControllerTest extends IntegrationTest { public void setup() throws Exception { super.setup(); - projectDto = super.createProject("New Project", "token1", + projectDto = super.createProject("New Project", user1, Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}), Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}), "efo", 0); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectUsersControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectUsersControllerTest.java new file mode 100644 index 0000000..5559af5 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectUsersControllerTest.java @@ -0,0 +1,408 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import com.fasterxml.jackson.core.type.TypeReference; +import org.junit.Test; +import org.springframework.http.MediaType; +import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; +import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; +import uk.ac.ebi.spot.ontotools.curation.rest.assembler.UserDtoAssembler; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectUserDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.UserDto; +import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; + +import java.util.Arrays; +import java.util.List; + +import static org.junit.Assert.assertEquals; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*; +import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; + +public class ProjectUsersControllerTest extends IntegrationTest { + + /** + * GET /v1/projects/{projectId}/users + */ + @Test + public void shouldGetUsersForProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + String response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + List actual = mapper.readValue(response, new TypeReference<>() { + }); + + assertEquals(1, actual.size()); + assertEquals(user1.getEmail(), actual.get(0).getEmail()); + assertEquals(user1.getName(), actual.get(0).getName()); + } + + /** + * GET /v1/projects/{projectId}/users + */ + @Test + public void shouldNotGetUsersForProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * GET /v1/projects/{projectId}/users + */ + @Test + public void shouldNotGetUsersForProjectAsContributor() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + + userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONTRIBUTOR})); + mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * GET /v1/projects/{projectId}/users + */ + @Test + public void shouldNotGetUsersForProjectAsConsumer() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + + userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); + mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * POST /v1/projects/{projectId}/users + */ + @Test + public void shouldAddUserToProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); + mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + String response = mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isCreated()) + .andReturn() + .getResponse() + .getContentAsString(); + + UserDto actual = mapper.readValue(response, new TypeReference<>() { + }); + + assertEquals(user2.getEmail(), actual.getEmail()); + assertEquals(user2.getName(), actual.getName()); + assertEquals(1, actual.getRoles().size()); + assertEquals(ProjectRole.CONTRIBUTOR.name(), actual.getRoles().get(0).getRole()); + + response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + List actualList = mapper.readValue(response, new TypeReference<>() { + }); + + assertEquals(2, actualList.size()); + + mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); + response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + ProjectDto actualProject = mapper.readValue(response, new TypeReference<>() { + }); + assertEquals(projectDto.getName(), actualProject.getName()); + assertEquals(projectDto.getDescription(), actualProject.getDescription()); + + } + + /** + * POST /v1/projects/{projectId}/users + */ + @Test + public void shouldNotAddUserToProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * POST /v1/projects/{projectId}/users + */ + @Test + public void shouldNotAddUserToProjectAsContributor() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + + userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONTRIBUTOR})); + + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * POST /v1/projects/{projectId}/users + */ + @Test + public void shouldNotAddUserToProjectAsConsumer() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + + userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); + + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * PUT /v1/projects/{projectId}/users/{userId} + */ + @Test + public void shouldUpdateUserToProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + String response = mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isCreated()) + .andReturn() + .getResponse() + .getContentAsString(); + + UserDto actual = mapper.readValue(response, new TypeReference<>() { + }); + + assertEquals(user2.getEmail(), actual.getEmail()); + assertEquals(user2.getName(), actual.getName()); + assertEquals(1, actual.getRoles().size()); + assertEquals(ProjectRole.CONTRIBUTOR.name(), actual.getRoles().get(0).getRole()); + + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS + "/" + user2.getId(); + ProjectUserDto updatedProjectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONSUMER.name()})); + response = mockMvc.perform(put(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(updatedProjectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + actual = mapper.readValue(response, new TypeReference<>() { + }); + + assertEquals(user2.getEmail(), actual.getEmail()); + assertEquals(user2.getName(), actual.getName()); + assertEquals(1, actual.getRoles().size()); + assertEquals(ProjectRole.CONSUMER.name(), actual.getRoles().get(0).getRole()); + } + + /** + * PUT /v1/projects/{projectId}/users/{userId} + */ + @Test + public void shouldNotUpdateUserToProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * PUT /v1/projects/{projectId}/users/{userId} + */ + @Test + public void shouldNotUpdateUserToProjectAsContributor() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONTRIBUTOR})); + + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * PUT /v1/projects/{projectId}/users/{userId} + */ + @Test + public void shouldNotUpdateUserToProjectAsConsumer() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); + + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + + /** + * DELETE /v1/projects/{projectId}/users/{userId} + */ + @Test + public void shouldDeleteUserRolesInProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + String response = mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isCreated()) + .andReturn() + .getResponse() + .getContentAsString(); + + UserDto actual = mapper.readValue(response, new TypeReference<>() { + }); + + assertEquals(user2.getEmail(), actual.getEmail()); + assertEquals(user2.getName(), actual.getName()); + assertEquals(1, actual.getRoles().size()); + assertEquals(ProjectRole.CONTRIBUTOR.name(), actual.getRoles().get(0).getRole()); + + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS + "/" + user2.getId(); + mockMvc.perform(delete(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()); + + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); + mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + List actualList = mapper.readValue(response, new TypeReference<>() { + }); + + assertEquals(1, actualList.size()); + } + + /** + * DELETE /v1/projects/{projectId}/users/{userId} + */ + @Test + public void shouldNotDeleteUserRolesInProject() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * DELETE /v1/projects/{projectId}/users/{userId} + */ + @Test + public void shouldNotDeleteUserRolesInProjectAsContributor() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONTRIBUTOR})); + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } + + /** + * DELETE /v1/projects/{projectId}/users/{userId} + */ + @Test + public void shouldNotDeleteUserRolesInProjectAsConsumer() throws Exception { + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); + + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectUserDto)) + .header(IDPConstants.JWT_TOKEN, "token2")) + .andExpect(status().isNotFound()); + } +} diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java index a7bee16..e9eae2d 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsControllerTest.java @@ -6,9 +6,11 @@ import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectCreationDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; +import java.util.ArrayList; import java.util.Arrays; import java.util.List; @@ -18,12 +20,27 @@ public class ProjectsControllerTest extends IntegrationTest { + /** + * POST /v1/projects + */ + @Test + public void shouldNotCreateProject() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS; + ProjectCreationDto projectCreationDto = new ProjectCreationDto("New Project", "Description", 0, + new ArrayList<>(), new ArrayList<>(), new ArrayList<>()); + mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .content(mapper.writeValueAsString(projectCreationDto)) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isForbidden()); + } + /** * POST /v1/projects */ @Test public void shouldCreateProject() throws Exception { - super.createProject("New Project", "token1", null, null, null, 0); + super.createProject("New Project", user1, null, null, null, 0); } /** @@ -31,7 +48,7 @@ public void shouldCreateProject() throws Exception { */ @Test public void shouldCreateProjectWithDatasources() throws Exception { - super.createProject("New Project", "token1", + super.createProject("New Project", user1, Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}), Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}), "efo", 0); @@ -42,8 +59,8 @@ public void shouldCreateProjectWithDatasources() throws Exception { */ @Test public void shouldGetProjects() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); - super.createProject("New Project 2", "token2", null, null, null, 0); + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); + super.createProject("New Project 2", user2, null, null, null, 0); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS; String response = mockMvc.perform(get(endpoint) @@ -68,7 +85,7 @@ public void shouldGetProjects() throws Exception { */ @Test public void shouldNotGetProjects() throws Exception { - super.createProject("New Project 1", "token1", null, null, null, 0); + super.createProject("New Project 1", user1, null, null, null, 0); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS; String response = mockMvc.perform(get(endpoint) @@ -89,7 +106,7 @@ public void shouldNotGetProjects() throws Exception { */ @Test public void shouldGetProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); String response = mockMvc.perform(get(endpoint) .contentType(MediaType.APPLICATION_JSON) @@ -110,7 +127,7 @@ public void shouldGetProject() throws Exception { */ @Test public void shouldNotGetProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); mockMvc.perform(get(endpoint) .contentType(MediaType.APPLICATION_JSON) @@ -123,7 +140,7 @@ public void shouldNotGetProject() throws Exception { */ @Test public void shouldUpdateProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); ProjectDto updatedProject = new ProjectDto(projectDto.getId(), "New Name", projectDto.getDescription(), @@ -135,7 +152,7 @@ public void shouldUpdateProject() throws Exception { String response = mockMvc.perform(put(endpoint) .contentType(MediaType.APPLICATION_JSON) .content(mapper.writeValueAsString(updatedProject)) - .header(IDPConstants.JWT_TOKEN, "token1")) + .header(IDPConstants.JWT_TOKEN, "supertoken")) .andExpect(status().isOk()) .andReturn() .getResponse() @@ -152,7 +169,7 @@ public void shouldUpdateProject() throws Exception { */ @Test public void shouldNotUpdateProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); ProjectDto updatedProject = new ProjectDto(projectDto.getId(), "New Name", projectDto.getDescription(), @@ -165,7 +182,7 @@ public void shouldNotUpdateProject() throws Exception { .contentType(MediaType.APPLICATION_JSON) .content(mapper.writeValueAsString(updatedProject)) .header(IDPConstants.JWT_TOKEN, "token2")) - .andExpect(status().isNotFound()); + .andExpect(status().isForbidden()); } /** @@ -173,7 +190,7 @@ public void shouldNotUpdateProject() throws Exception { */ @Test public void shouldNotUpdateProjectAsConsumer() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); ProjectDto updatedProject = new ProjectDto(projectDto.getId(), "New Name", projectDto.getDescription(), @@ -188,7 +205,7 @@ public void shouldNotUpdateProjectAsConsumer() throws Exception { .contentType(MediaType.APPLICATION_JSON) .content(mapper.writeValueAsString(updatedProject)) .header(IDPConstants.JWT_TOKEN, "token2")) - .andExpect(status().isNotFound()); + .andExpect(status().isForbidden()); } /** @@ -196,15 +213,15 @@ public void shouldNotUpdateProjectAsConsumer() throws Exception { */ @Test public void shouldDeleteProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); mockMvc.perform(delete(endpoint) - .header(IDPConstants.JWT_TOKEN, "token1")) + .header(IDPConstants.JWT_TOKEN, "supertoken")) .andExpect(status().isOk()); mockMvc.perform(get(endpoint) .contentType(MediaType.APPLICATION_JSON) - .header(IDPConstants.JWT_TOKEN, "token1")) + .header(IDPConstants.JWT_TOKEN, "supertoken")) .andExpect(status().isNotFound()); } @@ -213,11 +230,11 @@ public void shouldDeleteProject() throws Exception { */ @Test public void shouldNotDeleteProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); mockMvc.perform(delete(endpoint) .header(IDPConstants.JWT_TOKEN, "token2")) - .andExpect(status().isNotFound()); + .andExpect(status().isForbidden()); } /** @@ -225,12 +242,12 @@ public void shouldNotDeleteProject() throws Exception { */ @Test public void shouldNotDeleteProjectAsConsumer() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); mockMvc.perform(delete(endpoint) .header(IDPConstants.JWT_TOKEN, "token2")) - .andExpect(status().isNotFound()); + .andExpect(status().isForbidden()); } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsUtilControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsUtilControllerTest.java index c15602f..1cd1960 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsUtilControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/ProjectsUtilControllerTest.java @@ -22,7 +22,7 @@ public class ProjectsUtilControllerTest extends IntegrationTest { */ @Test public void shouldQueryOLS() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); + ProjectDto projectDto = super.createProject("New Project 1", user1, null, null, null, 0); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_SEARCH_OLS + "?" + CurationConstants.PARAM_QUERY + "=diabetes"; String response = mockMvc.perform(get(endpoint) diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/PublicDataControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/PublicDataControllerTest.java index 35e0644..1dd3323 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/PublicDataControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/PublicDataControllerTest.java @@ -76,7 +76,7 @@ public void setup() throws Exception { List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); - ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "efo", 0); + ProjectDto projectDto = super.createProject("New Project", user1, datasources, ontologies, "efo", 0); user1 = userService.findByEmail(user1.getEmail()); project = projectService.retrieveProject(projectDto.getId(), user1); sourceDto = super.createSource(project.getId()); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/SourcesControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/SourcesControllerTest.java index f465204..64080fd 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/SourcesControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/SourcesControllerTest.java @@ -29,7 +29,7 @@ public class SourcesControllerTest extends IntegrationTest { @Override public void setup() throws Exception { super.setup(); - projectDto = createProject("New Project", "token1", null, null, null, 0); + projectDto = createProject("New Project", user1, null, null, null, 0); } /** diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java index d04e794..476fd47 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java @@ -5,29 +5,24 @@ import org.springframework.http.MediaType; import uk.ac.ebi.spot.ontotools.curation.constants.CurationConstants; import uk.ac.ebi.spot.ontotools.curation.constants.IDPConstants; -import uk.ac.ebi.spot.ontotools.curation.constants.ProjectRole; -import uk.ac.ebi.spot.ontotools.curation.rest.assembler.UserDtoAssembler; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectUserDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.RestResponsePage; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.UserCreationDto; import uk.ac.ebi.spot.ontotools.curation.rest.dto.UserDto; import uk.ac.ebi.spot.ontotools.curation.system.GeneralCommon; -import java.util.Arrays; -import java.util.List; - import static org.junit.Assert.assertEquals; -import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; public class UsersControllerTest extends IntegrationTest { /** - * GET /v1/projects/{projectId}/users + * GET /v1/users */ @Test - public void shouldGetUsersForProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; + public void shouldGetUsers() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_USERS; String response = mockMvc.perform(get(endpoint) .contentType(MediaType.APPLICATION_JSON) .header(IDPConstants.JWT_TOKEN, "token1")) @@ -36,286 +31,35 @@ public void shouldGetUsersForProject() throws Exception { .getResponse() .getContentAsString(); - List actual = mapper.readValue(response, new TypeReference<>() { + RestResponsePage actualPage = mapper.readValue(response, new TypeReference<>() { }); - assertEquals(1, actual.size()); - assertEquals(user1.getEmail(), actual.get(0).getEmail()); - assertEquals(user1.getName(), actual.get(0).getName()); - } - - /** - * GET /v1/projects/{projectId}/users - */ - @Test - public void shouldNotGetUsersForProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; - mockMvc.perform(get(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .header(IDPConstants.JWT_TOKEN, "token2")) - .andExpect(status().isNotFound()); - } - - /** - * GET /v1/projects/{projectId}/users - */ - @Test - public void shouldNotGetUsersForProjectAsContributor() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; - - userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONTRIBUTOR})); - mockMvc.perform(get(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .header(IDPConstants.JWT_TOKEN, "token2")) - .andExpect(status().isNotFound()); - } - - /** - * GET /v1/projects/{projectId}/users - */ - @Test - public void shouldNotGetUsersForProjectAsConsumer() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; - - userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); - mockMvc.perform(get(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .header(IDPConstants.JWT_TOKEN, "token2")) - .andExpect(status().isNotFound()); + assertEquals(4, actualPage.getContent().size()); } /** - * POST /v1/projects/{projectId}/users + * GET /v1/users */ @Test - public void shouldAddUserToProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); - - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); + public void shouldNotGetUsers() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_USERS; mockMvc.perform(get(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .header(IDPConstants.JWT_TOKEN, "token2")) - .andExpect(status().isNotFound()); - - endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; - ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); - String response = mockMvc.perform(post(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .content(mapper.writeValueAsString(projectUserDto)) - .header(IDPConstants.JWT_TOKEN, "token1")) - .andExpect(status().isCreated()) - .andReturn() - .getResponse() - .getContentAsString(); - - UserDto actual = mapper.readValue(response, new TypeReference<>() { - }); - - assertEquals(user2.getEmail(), actual.getEmail()); - assertEquals(user2.getName(), actual.getName()); - assertEquals(1, actual.getRoles().size()); - assertEquals(ProjectRole.CONTRIBUTOR.name(), actual.getRoles().get(0).getRole()); - - response = mockMvc.perform(get(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .header(IDPConstants.JWT_TOKEN, "token1")) - .andExpect(status().isOk()) - .andReturn() - .getResponse() - .getContentAsString(); - - List actualList = mapper.readValue(response, new TypeReference<>() { - }); - - assertEquals(2, actualList.size()); - - mockMvc.perform(get(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .header(IDPConstants.JWT_TOKEN, "token2")) - .andExpect(status().isNotFound()); - - endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); - response = mockMvc.perform(get(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .header(IDPConstants.JWT_TOKEN, "token2")) - .andExpect(status().isOk()) - .andReturn() - .getResponse() - .getContentAsString(); - - ProjectDto actualProject = mapper.readValue(response, new TypeReference<>() { - }); - assertEquals(projectDto.getName(), actualProject.getName()); - assertEquals(projectDto.getDescription(), actualProject.getDescription()); - - } - - /** - * POST /v1/projects/{projectId}/users - */ - @Test - public void shouldNotAddUserToProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; - ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); - mockMvc.perform(post(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .content(mapper.writeValueAsString(projectUserDto)) - .header(IDPConstants.JWT_TOKEN, "token2")) - .andExpect(status().isNotFound()); - } - - /** - * POST /v1/projects/{projectId}/users - */ - @Test - public void shouldNotAddUserToProjectAsContributor() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; - ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); - - userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONTRIBUTOR})); - - mockMvc.perform(post(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .content(mapper.writeValueAsString(projectUserDto)) - .header(IDPConstants.JWT_TOKEN, "token2")) - .andExpect(status().isNotFound()); - } - - /** - * POST /v1/projects/{projectId}/users - */ - @Test - public void shouldNotAddUserToProjectAsConsumer() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; - ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); - - userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); - - mockMvc.perform(post(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .content(mapper.writeValueAsString(projectUserDto)) - .header(IDPConstants.JWT_TOKEN, "token2")) - .andExpect(status().isNotFound()); - } - - /** - * PUT /v1/projects/{projectId}/users/{userId} - */ - @Test - public void shouldUpdateUserToProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); - - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; - ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); - String response = mockMvc.perform(post(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .content(mapper.writeValueAsString(projectUserDto)) - .header(IDPConstants.JWT_TOKEN, "token1")) - .andExpect(status().isCreated()) - .andReturn() - .getResponse() - .getContentAsString(); - - UserDto actual = mapper.readValue(response, new TypeReference<>() { - }); - - assertEquals(user2.getEmail(), actual.getEmail()); - assertEquals(user2.getName(), actual.getName()); - assertEquals(1, actual.getRoles().size()); - assertEquals(ProjectRole.CONTRIBUTOR.name(), actual.getRoles().get(0).getRole()); - - endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS + "/" + user2.getId(); - ProjectUserDto updatedProjectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONSUMER.name()})); - response = mockMvc.perform(put(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .content(mapper.writeValueAsString(updatedProjectUserDto)) - .header(IDPConstants.JWT_TOKEN, "token1")) - .andExpect(status().isOk()) - .andReturn() - .getResponse() - .getContentAsString(); - - actual = mapper.readValue(response, new TypeReference<>() { - }); - - assertEquals(user2.getEmail(), actual.getEmail()); - assertEquals(user2.getName(), actual.getName()); - assertEquals(1, actual.getRoles().size()); - assertEquals(ProjectRole.CONSUMER.name(), actual.getRoles().get(0).getRole()); - } - - /** - * PUT /v1/projects/{projectId}/users/{userId} - */ - @Test - public void shouldNotUpdateUserToProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); - - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; - ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); - mockMvc.perform(post(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .content(mapper.writeValueAsString(projectUserDto)) - .header(IDPConstants.JWT_TOKEN, "token2")) - .andExpect(status().isNotFound()); + .contentType(MediaType.APPLICATION_JSON)) + .andExpect(status().isUnauthorized()); } /** - * PUT /v1/projects/{projectId}/users/{userId} + * POST /v1/users */ @Test - public void shouldNotUpdateUserToProjectAsContributor() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); - - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; - ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); - userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONTRIBUTOR})); - - mockMvc.perform(post(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .content(mapper.writeValueAsString(projectUserDto)) - .header(IDPConstants.JWT_TOKEN, "token2")) - .andExpect(status().isNotFound()); - } - - /** - * PUT /v1/projects/{projectId}/users/{userId} - */ - @Test - public void shouldNotUpdateUserToProjectAsConsumer() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); - - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; - ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); - userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); - - mockMvc.perform(post(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .content(mapper.writeValueAsString(projectUserDto)) - .header(IDPConstants.JWT_TOKEN, "token2")) - .andExpect(status().isNotFound()); - } - - - /** - * DELETE /v1/projects/{projectId}/users/{userId} - */ - @Test - public void shouldDeleteUserRolesInProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); - - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; - ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); + public void shouldCreateUser() throws Exception { + super.createProject("New Project", user1, null, null, null, 0); + UserCreationDto userCreationDto = new UserCreationDto("Me", "me@me.com"); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_USERS; String response = mockMvc.perform(post(endpoint) .contentType(MediaType.APPLICATION_JSON) - .content(mapper.writeValueAsString(projectUserDto)) - .header(IDPConstants.JWT_TOKEN, "token1")) + .header(IDPConstants.JWT_TOKEN, "token1") + .content(mapper.writeValueAsString(userCreationDto))) .andExpect(status().isCreated()) .andReturn() .getResponse() @@ -324,85 +68,21 @@ public void shouldDeleteUserRolesInProject() throws Exception { UserDto actual = mapper.readValue(response, new TypeReference<>() { }); - assertEquals(user2.getEmail(), actual.getEmail()); - assertEquals(user2.getName(), actual.getName()); - assertEquals(1, actual.getRoles().size()); - assertEquals(ProjectRole.CONTRIBUTOR.name(), actual.getRoles().get(0).getRole()); - - endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS + "/" + user2.getId(); - mockMvc.perform(delete(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .header(IDPConstants.JWT_TOKEN, "token1")) - .andExpect(status().isOk()); - - endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId(); - mockMvc.perform(get(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .header(IDPConstants.JWT_TOKEN, "token2")) - .andExpect(status().isNotFound()); - - endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; - response = mockMvc.perform(get(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .header(IDPConstants.JWT_TOKEN, "token1")) - .andExpect(status().isOk()) - .andReturn() - .getResponse() - .getContentAsString(); - - List actualList = mapper.readValue(response, new TypeReference<>() { - }); - - assertEquals(1, actualList.size()); + assertEquals(userCreationDto.getName(), actual.getName()); + assertEquals(userCreationDto.getEmail(), actual.getEmail()); } /** - * DELETE /v1/projects/{projectId}/users/{userId} + * POST /v1/users */ @Test - public void shouldNotDeleteUserRolesInProject() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); - - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; - ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); - mockMvc.perform(post(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .content(mapper.writeValueAsString(projectUserDto)) - .header(IDPConstants.JWT_TOKEN, "token2")) - .andExpect(status().isNotFound()); - } - - /** - * DELETE /v1/projects/{projectId}/users/{userId} - */ - @Test - public void shouldNotDeleteUserRolesInProjectAsContributor() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); - - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; - ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); - userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONTRIBUTOR})); - mockMvc.perform(post(endpoint) - .contentType(MediaType.APPLICATION_JSON) - .content(mapper.writeValueAsString(projectUserDto)) - .header(IDPConstants.JWT_TOKEN, "token2")) - .andExpect(status().isNotFound()); - } - - /** - * DELETE /v1/projects/{projectId}/users/{userId} - */ - @Test - public void shouldNotDeleteUserRolesInProjectAsConsumer() throws Exception { - ProjectDto projectDto = super.createProject("New Project 1", "token1", null, null, null, 0); - - String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + projectDto.getId() + CurationConstants.API_USERS; - ProjectUserDto projectUserDto = new ProjectUserDto(UserDtoAssembler.assemble(user2), Arrays.asList(new String[]{ProjectRole.CONTRIBUTOR.name()})); - userService.addUserToProject(super.user2, projectDto.getId(), Arrays.asList(new ProjectRole[]{ProjectRole.CONSUMER})); + public void shouldNotCreateUser() throws Exception { + UserCreationDto userCreationDto = new UserCreationDto("Me", "me@me.com"); + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_USERS; mockMvc.perform(post(endpoint) .contentType(MediaType.APPLICATION_JSON) - .content(mapper.writeValueAsString(projectUserDto)) - .header(IDPConstants.JWT_TOKEN, "token2")) - .andExpect(status().isNotFound()); + .header(IDPConstants.JWT_TOKEN, "token1") + .content(mapper.writeValueAsString(userCreationDto))) + .andExpect(status().isForbidden()); } } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/UserCreationDtoTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/UserCreationDtoTest.java new file mode 100644 index 0000000..9de48c7 --- /dev/null +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/rest/dto/UserCreationDtoTest.java @@ -0,0 +1,13 @@ +package uk.ac.ebi.spot.ontotools.curation.rest.dto; + +import nl.jqno.equalsverifier.EqualsVerifier; +import org.junit.Test; + +public class UserCreationDtoTest { + @Test + public void equalsContract() { + EqualsVerifier.forClass(UserCreationDto.class) + .verify(); + } + +} \ No newline at end of file diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTaskTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTaskTest.java index 0172641..904c07f 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTaskTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/tasks/OntologyTermUpdateTaskTest.java @@ -78,7 +78,7 @@ public void setup() throws Exception { List datasources = Arrays.asList(new String[]{"cttv", "sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}); List ontologies = Arrays.asList(new String[]{"efo", "mondo", "hp", "ordo", "orphanet"}); - ProjectDto projectDto = super.createProject("New Project", "token1", datasources, ontologies, "mondo", 0); + ProjectDto projectDto = super.createProject("New Project", user1, datasources, ontologies, "mondo", 0); user1 = userService.findByEmail(user1.getEmail()); Project project = projectService.retrieveProject(projectDto.getId(), user1); SourceDto sourceDto = super.createSource(project.getId()); From 9bd27c7cf36856a2b53c6fcb24fd5ffb11ba763f Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Tue, 6 Apr 2021 21:07:03 +0800 Subject: [PATCH 68/72] Fixed access control on GET users endpoint. --- .../ontotools/curation/rest/controller/UsersController.java | 4 ++++ .../ac/ebi/spot/ontotools/curation/UsersControllerTest.java | 1 + 2 files changed, 5 insertions(+) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/UsersController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/UsersController.java index 881b43c..01a2c4b 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/UsersController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/UsersController.java @@ -48,6 +48,10 @@ public RestResponsePage getUsers(@RequestParam(value = CurationConstant HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); log.info("[{}] Request to retrieve users: {}", user.getEmail(), prefix); + if (!user.isSuperUser() && !CurationUtil.isAdmin(user)) { + log.error("Attempt to retrieve users by an unauthorized user: {}", user.getEmail()); + throw new AuthorizationException("Attempt to retrieve users by an unauthorized user: " + user.getEmail()); + } Page users = userService.retrieveUsers(prefix, pageable); return new RestResponsePage<>(users.stream().map(UserDtoAssembler::assemble).collect(Collectors.toList()), pageable, users.getTotalElements()); } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java index 476fd47..7529b67 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/UsersControllerTest.java @@ -22,6 +22,7 @@ public class UsersControllerTest extends IntegrationTest { */ @Test public void shouldGetUsers() throws Exception { + super.createProject("New Project", user1, null, null, null, 0); String endpoint = GeneralCommon.API_V1 + CurationConstants.API_USERS; String response = mockMvc.perform(get(endpoint) .contentType(MediaType.APPLICATION_JSON) From c00f06872f4a6f5ebb859d608c05a4aa024ddd4d Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Fri, 9 Apr 2021 11:44:57 +0800 Subject: [PATCH 69/72] Prepared structure for monolith packaging. --- Dockerfile | 4 +- pom.xml | 19 ++++- .../ontotools-curation-ingress-withui.yaml | 18 +++++ .../spot/ontotools/curation/Application.java | 12 ++- .../ontotools/curation/ApplicationWebXml.java | 29 +++++++ .../curation/config/AuthInterceptor.java | 77 ++++++++++--------- .../curation/config/WebMvcConfig.java | 11 +++ src/main/resources/application.yml | 6 ++ src/main/resources/logback-spring.xml | 20 ++--- 9 files changed, 141 insertions(+), 55 deletions(-) create mode 100644 scripts/config/ontotools-curation-ingress-withui.yaml create mode 100644 src/main/java/uk/ac/ebi/spot/ontotools/curation/ApplicationWebXml.java diff --git a/Dockerfile b/Dockerfile index 3cf7f91..fa8849c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,8 +10,8 @@ RUN if [ ! -d /var/log/ontotools/ ];then mkdir /var/log/ontotools/;fi RUN chown -R ontotools-curation-service:ontotools-curation-service /var/log/ontotools # Move project artifact -ADD target/ontotools-curation-service-*.jar /home/ontotools-curation-service/ +ADD target/ontotools-curation-service-*.war /home/ontotools-curation-service/ USER ontotools-curation-service # Launch application server -ENTRYPOINT exec $JAVA_HOME/bin/java $XMX $XMS -jar -Dspring.profiles.active=$ENVIRONMENT /home/ontotools-curation-service/ontotools-curation-service-*.jar +ENTRYPOINT exec $JAVA_HOME/bin/java $XMX $XMS -jar -Dspring.profiles.active=$ENVIRONMENT /home/ontotools-curation-service/ontotools-curation-service-*.war diff --git a/pom.xml b/pom.xml index 68efe24..01e899a 100644 --- a/pom.xml +++ b/pom.xml @@ -7,7 +7,7 @@ uk.ac.ebi.spot.ontotools ontotools-curation-service 0.0.1-SNAPSHOT - jar + war OntoTools Curation Service @@ -66,6 +66,23 @@ org.springframework.boot spring-boot-maven-plugin + + true + + + + + repackage + + + + + + org.apache.maven.plugins + maven-war-plugin + + false + org.jacoco diff --git a/scripts/config/ontotools-curation-ingress-withui.yaml b/scripts/config/ontotools-curation-ingress-withui.yaml new file mode 100644 index 0000000..81167c8 --- /dev/null +++ b/scripts/config/ontotools-curation-ingress-withui.yaml @@ -0,0 +1,18 @@ +apiVersion: extensions/v1beta1 +kind: Ingress +metadata: + name: ontotools-curation-ingress + namespace: ontotools + annotations: + nginx.ingress.kubernetes.io/rewrite-target: /$2 + nginx.ingress.kubernetes.io/ssl-redirect: "false" + nginx.ingress.kubernetes.io/proxy-body-size: "30m" +spec: + rules: + - host: + http: + paths: + - path: /curator(/|$)(.*) + backend: + serviceName: ontotools-curation-service + servicePort: 8080 diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/Application.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/Application.java index 9feff60..f3ca24f 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/Application.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/Application.java @@ -38,9 +38,13 @@ public void destroy() { } public static void main(String[] args) throws UnknownHostException { - String hostAddress = InetAddress.getLocalHost().getHostAddress(); - String logFileName = System.getenv(GeneralCommon.LOG_FILE_NAME); - System.setProperty("log.file.name", logFileName + "-" + hostAddress); - SpringApplication.run(Application.class, args); + try { + String hostAddress = InetAddress.getLocalHost().getHostAddress(); + String logFileName = System.getenv(GeneralCommon.LOG_FILE_NAME); + System.setProperty("log.file.name", logFileName + "-" + hostAddress); + SpringApplication.run(Application.class, args); + }catch (Exception e) { + e.printStackTrace(); + } } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/ApplicationWebXml.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/ApplicationWebXml.java new file mode 100644 index 0000000..3f2d1d4 --- /dev/null +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/ApplicationWebXml.java @@ -0,0 +1,29 @@ +package uk.ac.ebi.spot.ontotools.curation; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.boot.builder.SpringApplicationBuilder; +import org.springframework.boot.web.servlet.support.SpringBootServletInitializer; + +public class ApplicationWebXml extends SpringBootServletInitializer { + + private static final Logger log = LoggerFactory.getLogger(ApplicationWebXml.class); + + @Override + protected SpringApplicationBuilder configure( + SpringApplicationBuilder application) { + return application.profiles(addDefaultProfile()).sources(Application.class); + } + + private String addDefaultProfile() { + String profile = System.getProperty("spring.profiles.active"); + if (profile != null) { + log.info("Running with Spring profile(s) : {}", profile); + return profile; + } + + log.warn("No Spring profile configured, running with default configuration"); + return "dev"; + } + +} diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/AuthInterceptor.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/AuthInterceptor.java index 0a1a34a..c8e5bbd 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/AuthInterceptor.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/AuthInterceptor.java @@ -15,6 +15,7 @@ import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; +import java.io.IOException; import java.util.Optional; public class AuthInterceptor implements HandlerInterceptor { @@ -36,48 +37,48 @@ public class AuthInterceptor implements HandlerInterceptor { @Override public boolean preHandle(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, - Object o) { - if (!"/error".equals(httpServletRequest.getRequestURI())) { - log.info("Authentication enabled: {}", systemConfigProperties.isAuthEnabled()); - if (!systemConfigProperties.isAuthEnabled()) { - return true; - } - - String requestedURI = httpServletRequest.getRequestURI(); - if (systemConfigProperties.getUnauthenticatedEndpointsPrefix() != null && requestedURI.startsWith(systemConfigProperties.getUnauthenticatedEndpointsPrefix())) { - log.info("Received call on unauthenticated endpoint: {}", requestedURI); - return true; - } - - String jwt = HeadersUtil.extractJWT(httpServletRequest); + Object o) throws IOException { + String requestedURI = httpServletRequest.getRequestURI(); + log.debug("Authentication enabled: {}", systemConfigProperties.isAuthEnabled()); + if (requestedURI.equals("/error")) { + return false; + } + if ((systemConfigProperties.getUnauthenticatedEndpointsPrefix() != null && + requestedURI.startsWith(systemConfigProperties.getUnauthenticatedEndpointsPrefix())) || + (!requestedURI.startsWith("/v1"))) { + log.debug("Received call on unauthenticated endpoint: {}", requestedURI); + return true; + } + if (!systemConfigProperties.isAuthEnabled()) { + return true; + } - if (jwt == null) { - log.error("Authorization failure. JWT token is null."); - throw new AuthenticationException("Authorization failure. JWT token is null."); - } - if ("".equals(jwt)) { - log.error("Authorization failure. JWT token is null."); - throw new AuthenticationException("Authorization failure. JWT token is null."); - } + String jwt = HeadersUtil.extractJWT(httpServletRequest); - Optional authTokenOptional = authTokenRepository.findByToken(jwt); - log.info("Token is privileged: {}", authTokenOptional.isPresent()); - if (authTokenOptional.isPresent()) { - User user = userService.findByEmail(authTokenOptional.get().getEmail()); - log.info("User found: {} - {}", user.getName(), user.getEmail()); - return true; - } + if (jwt == null) { + log.error("Authorization failure. JWT token is null."); + throw new AuthenticationException("Authorization failure. JWT token is null."); + } + if ("".equals(jwt)) { + log.error("Authorization failure. JWT token is null."); + throw new AuthenticationException("Authorization failure. JWT token is null."); + } - try { - User user = jwtService.extractUserSlim(jwt); - log.info("User found: {} - {}", user.getName(), user.getEmail()); - return true; - } catch (Exception e) { - log.error("Authorization failure: {}", e.getMessage(), e); - throw new AuthenticationException(e.getMessage()); - } + Optional authTokenOptional = authTokenRepository.findByToken(jwt); + log.debug("Token is privileged: {}", authTokenOptional.isPresent()); + if (authTokenOptional.isPresent()) { + User user = userService.findByEmail(authTokenOptional.get().getEmail()); + log.debug("User found: {} - {}", user.getName(), user.getEmail()); + return true; } - return false; + try { + User user = jwtService.extractUserSlim(jwt); + log.debug("User found: {} - {}", user.getName(), user.getEmail()); + return true; + } catch (Exception e) { + log.error("Authorization failure: {}", e.getMessage(), e); + throw new AuthenticationException(e.getMessage()); + } } } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/WebMvcConfig.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/WebMvcConfig.java index 1864054..4ec2e0c 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/WebMvcConfig.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/config/WebMvcConfig.java @@ -7,6 +7,7 @@ import org.springframework.web.multipart.support.MultipartFilter; import org.springframework.web.servlet.config.annotation.CorsRegistry; import org.springframework.web.servlet.config.annotation.InterceptorRegistry; +import org.springframework.web.servlet.config.annotation.ViewControllerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @@ -48,5 +49,15 @@ public void addCorsMappings(CorsRegistry registry) { .allowCredentials(true) .allowedHeaders("*", "Access-Control-Allow-Origin", "Access-Control-Allow-Credentials"); } + + @Override + public void addViewControllers(ViewControllerRegistry registry) { + registry.addViewController("/{spring:^[a-zA-Z\\d-_]+}") + .setViewName("forward:/"); + registry.addViewController("/**/{spring:^[a-zA-Z\\d-_]+}") + .setViewName("forward:/"); + registry.addViewController("/{spring:^[a-zA-Z\\d-_]+}/**{spring:?!(\\.js|\\.css)$}") + .setViewName("forward:/"); + } } } \ No newline at end of file diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index f81525a..8037027 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -2,6 +2,12 @@ server: name: ontotools-curation port: 8080 +spring: + web: + resources: + add-mappings: true + static-locations: classpath:/META-INF/resources/,classpath:/resources/,classpath:/static/ + logging: level: org: diff --git a/src/main/resources/logback-spring.xml b/src/main/resources/logback-spring.xml index 3217c75..600293f 100644 --- a/src/main/resources/logback-spring.xml +++ b/src/main/resources/logback-spring.xml @@ -23,11 +23,11 @@ - + @@ -51,11 +51,11 @@ - + From 3805b01321709412845858447f934c87bdc5eebf Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Fri, 9 Apr 2021 19:47:01 +0800 Subject: [PATCH 70/72] Added entity filtering by context. --- .../curation/constants/CurationConstants.java | 2 + .../curation/repository/EntityRepository.java | 7 ++- .../rest/controller/EntityController.java | 5 +- .../curation/service/EntityService.java | 4 +- .../service/impl/EntityServiceImpl.java | 9 ++- .../curation/EntityControllerTest.java | 63 +++++++++++++++++-- 6 files changed, 76 insertions(+), 14 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java index cf71295..a3b877e 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -36,6 +36,8 @@ public class CurationConstants { public static final String PARAM_SEARCH = "search"; + public static final String PARAM_CONTEXT = "context"; + public static final String PARAM_QUERY = "query"; public static final String ZOOMA_CONFIDENCE_HIGH = "HIGH"; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java index 0c7f41b..e5a31f2 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/repository/EntityRepository.java @@ -2,7 +2,6 @@ import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; -import org.springframework.data.mongodb.core.query.TextCriteria; import org.springframework.data.mongodb.repository.MongoRepository; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; @@ -16,11 +15,15 @@ public interface EntityRepository extends MongoRepository { Page findByProjectId(String projectId, Pageable page); + Page findByProjectIdAndContext(String projectId, String context, Pageable page); + Stream readByProjectId(String projectId); Stream readByProjectIdAndContext(String projectId, String context); Stream readByProjectIdAndMappingStatusIn(String projectId, List statusList); - Page findByNameLikeIgnoreCase(String prefix, Pageable pageable); + Page findByProjectIdAndNameLikeIgnoreCase(String projectId, String prefix, Pageable pageable); + + Page findByProjectIdAndContextAndNameLikeIgnoreCase(String projectId, String context, String prefix, Pageable pageable); } diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java index 36a1b3f..7863e2c 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java @@ -64,9 +64,10 @@ public class EntityController { @ResponseStatus(HttpStatus.OK) public RestResponsePage getEntities(@PathVariable String projectId, @RequestParam(value = CurationConstants.PARAM_SEARCH, required = false) String prefix, + @RequestParam(value = CurationConstants.PARAM_CONTEXT, required = false) String context, @PageableDefault(size = 20, page = 0) Pageable pageable, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); - log.info("[{}] Request to retrieve entities: {}", user.getEmail(), projectId); + log.info("[{}] Request to retrieve entities: {} | {} | {}", user.getEmail(), projectId, prefix, context); projectService.verifyAccess(projectId, user, Arrays.asList(new ProjectRole[]{ProjectRole.ADMIN, ProjectRole.CONTRIBUTOR, ProjectRole.CONSUMER})); List sources = sourceService.getSources(projectId); Map sourceMap = new HashMap<>(); @@ -74,7 +75,7 @@ public RestResponsePage getEntities(@PathVariable String projectId, sourceMap.put(source.getId(), SourceDtoAssembler.assemble(source)); } - Page entities = entityService.retrieveEntitiesForProject(projectId, prefix, pageable); + Page entities = entityService.retrieveEntitiesForProject(projectId, prefix, context, pageable); List entityIds = entities.get().map(Entity::getId).collect(Collectors.toList()); Map mappings = mappingService.retrieveMappingsForEntities(entityIds); Map> mappingSuggestions = mappingSuggestionsService.retrieveMappingSuggestionsForEntities(entityIds); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java index 3b0def9..286f608 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/EntityService.java @@ -4,9 +4,7 @@ import org.springframework.data.domain.Pageable; import uk.ac.ebi.spot.ontotools.curation.constants.EntityStatus; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; -import uk.ac.ebi.spot.ontotools.curation.domain.Source; -import java.util.List; import java.util.stream.Stream; public interface EntityService { @@ -19,7 +17,7 @@ public interface EntityService { Entity updateMappingStatus(Entity entity, EntityStatus mappingStatus); - Page retrieveEntitiesForProject(String projectId, String prefix, Pageable page); + Page retrieveEntitiesForProject(String projectId, String prefix, String context, Pageable page); Entity retrieveEntity(String entityId); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java index 23d7f47..cdb9108 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/service/impl/EntityServiceImpl.java @@ -57,10 +57,13 @@ public Entity updateMappingStatus(Entity entity, EntityStatus mappingStatus) { } @Override - public Page retrieveEntitiesForProject(String projectId, String prefix, Pageable page) { + public Page retrieveEntitiesForProject(String projectId, String prefix, String context, Pageable page) { log.debug("Retrieving entities [{}]: {} | {}", projectId, prefix, page.getPageNumber(), page.getPageSize()); - Page entityPage = prefix == null ? entityRepository.findByProjectId(projectId, page) : - entityRepository.findByNameLikeIgnoreCase(prefix, page); + Page entityPage = prefix == null ? + (context == null ? entityRepository.findByProjectId(projectId, page) : + entityRepository.findByProjectIdAndContext(projectId, context, page)) : + (context == null ? entityRepository.findByProjectIdAndNameLikeIgnoreCase(projectId, prefix, page) : + entityRepository.findByProjectIdAndContextAndNameLikeIgnoreCase(projectId, context, prefix, page)); log.debug("Found {} entities.", entityPage.getContent().size()); return entityPage; } diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java index bf33d70..f463d33 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java @@ -14,10 +14,7 @@ import uk.ac.ebi.spot.ontotools.curation.domain.Project; import uk.ac.ebi.spot.ontotools.curation.domain.Provenance; import uk.ac.ebi.spot.ontotools.curation.domain.mapping.Entity; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.EntityDto; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.ProjectDto; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.RestResponsePage; -import uk.ac.ebi.spot.ontotools.curation.rest.dto.SourceDto; +import uk.ac.ebi.spot.ontotools.curation.rest.dto.*; import uk.ac.ebi.spot.ontotools.curation.rest.dto.mapping.MappingSuggestionDto; import uk.ac.ebi.spot.ontotools.curation.service.ProjectService; import uk.ac.ebi.spot.ontotools.curation.service.UserService; @@ -29,6 +26,7 @@ import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get; +import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post; import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status; @ContextConfiguration(classes = {IntegrationTest.MockTaskExecutorConfig.class}) @@ -141,6 +139,63 @@ public void shouldGetEntitiesByPrefixSearch() throws Exception { assertEquals("Achondroplasia", actual.getName()); } + /** + * GET /v1/projects/{projectId}/entities?context= + */ + @Test + public void shouldGetEntitiesByContext() throws Exception { + String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_CONTEXTS; + ProjectContextDto newProjectContextDto = new ProjectContextDto("species_mouse", "", + Arrays.asList(new String[]{"sysmicro", "atlas", "ebisc", "uniprot", "gwas", "cbi", "clinvar-xrefs"}), + Arrays.asList(new String[]{"efo", "mondo", "mp"}), + Arrays.asList(new String[]{"efo"})); + + String response = mockMvc.perform(post(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1") + .content(super.mapper.writeValueAsString(newProjectContextDto))) + .andExpect(status().isCreated()) + .andReturn() + .getResponse() + .getContentAsString(); + + ProjectDto projectResponse = mapper.readValue(response, new TypeReference<>() { + }); + assertEquals(2, projectResponse.getContexts().size()); + + super.entityRepository.insert(new Entity(null, "Achonparestesia", RandomStringUtils.randomAlphabetic(10), + CurationConstants.CONTEXT_DEFAULT, sourceDto.getId(), project.getId(), null, + new Provenance(user1.getName(), user1.getEmail(), DateTime.now()), EntityStatus.AUTO_MAPPED)); + + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_ENTITIES + + "?" + CurationConstants.PARAM_CONTEXT + "=species_mouse"; + response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + RestResponsePage entitiesPage = mapper.readValue(response, new TypeReference<>() { + }); + assertEquals(0, entitiesPage.getTotalElements()); + + endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_ENTITIES + + "?" + CurationConstants.PARAM_CONTEXT + "=DEFAULT"; + response = mockMvc.perform(get(endpoint) + .contentType(MediaType.APPLICATION_JSON) + .header(IDPConstants.JWT_TOKEN, "token1")) + .andExpect(status().isOk()) + .andReturn() + .getResponse() + .getContentAsString(); + + entitiesPage = mapper.readValue(response, new TypeReference<>() { + }); + assertEquals(2, entitiesPage.getTotalElements()); + } + /** * GET /v1/projects/{projectId}/entities/{entityId} */ From 022b8b93ed40c7f14d0a6ba735626ac17b504e59 Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Sat, 10 Apr 2021 07:56:45 +0800 Subject: [PATCH 71/72] Added frontend. Changed CI pipeline. --- .gitlab-ci.yml | 77 +- frontend/.env | 4 + frontend/.env.prod | 4 + frontend/.env.sandbox | 4 + frontend/.gitignore | 23 + frontend/README.md | 46 + frontend/package-lock.json | 36877 ++++++++++++++++ frontend/package.json | 56 + frontend/public/favicon.ico | Bin 0 -> 3870 bytes frontend/public/index.html | 43 + frontend/public/logo192.png | Bin 0 -> 5347 bytes frontend/public/logo512.png | Bin 0 -> 9664 bytes frontend/public/manifest.json | 25 + frontend/public/robots.txt | 3 + frontend/src/App.css | 38 + frontend/src/App.test.tsx | 9 + frontend/src/App.tsx | 54 + frontend/src/ElixirAuthService.tsx | 127 + frontend/src/api.ts | 47 + frontend/src/auth-context.tsx | 79 + frontend/src/auth.tsx | 54 + frontend/src/components/AuditTrail.tsx | 48 + frontend/src/components/EntityStatusBox.tsx | 27 + frontend/src/components/LoadingOverlay.tsx | 14 + frontend/src/components/MappingStatusBox.tsx | 25 + frontend/src/components/Provenance.tsx | 18 + frontend/src/components/StatusBox.tsx | 22 + frontend/src/components/TermStatusBox.tsx | 27 + frontend/src/dto/AuditEntry.ts | 14 + frontend/src/dto/Comment.ts | 6 + frontend/src/dto/Context.ts | 20 + frontend/src/dto/Entity.ts | 25 + frontend/src/dto/Mapping.ts | 34 + frontend/src/dto/MappingSuggestion.ts | 9 + frontend/src/dto/OlsSearchResult.ts | 16 + frontend/src/dto/OntologyTerm.ts | 27 + frontend/src/dto/Paginated.ts | 30 + frontend/src/dto/Project.ts | 22 + frontend/src/dto/ProjectMappingConfig.ts | 10 + frontend/src/dto/Provenance.ts | 10 + frontend/src/dto/Review.ts | 6 + frontend/src/dto/Source.ts | 25 + frontend/src/dto/User.ts | 11 + frontend/src/elixir_login_button.png | Bin 0 -> 62475 bytes frontend/src/elixir_logo.png | Bin 0 -> 72771 bytes frontend/src/formatDate.ts | 7 + frontend/src/global.d.ts | 1 + frontend/src/history.ts | 2 + frontend/src/index.css | 13 + frontend/src/index.tsx | 17 + frontend/src/logo.svg | 1 + frontend/src/pages/Home.tsx | 29 + frontend/src/pages/Login.tsx | 190 + frontend/src/pages/ProjectList.tsx | 35 + frontend/src/pages/entities/EntityList.tsx | 235 + frontend/src/pages/entities/EntityPage.tsx | 167 + .../pages/entities/MappingSuggestionList.tsx | 109 + .../src/pages/entities/MappingTermList.tsx | 101 + .../pages/entities/OntologyTermSearchBox.tsx | 80 + frontend/src/pages/projects/ContextForm.tsx | 51 + .../pages/projects/CreateContextDialog.tsx | 94 + .../pages/projects/CreateProjectDialog.tsx | 105 + frontend/src/pages/projects/ProjectForm.tsx | 52 + frontend/src/pages/projects/ProjectList.tsx | 132 + frontend/src/pages/projects/ProjectPage.tsx | 120 + frontend/src/react-app-env.d.ts | 1 + frontend/src/reportWebVitals.ts | 15 + frontend/src/setupTests.ts | 5 + frontend/tsconfig.json | 26 + frontend/yarn.lock | 12414 ++++++ 70 files changed, 52009 insertions(+), 9 deletions(-) create mode 100644 frontend/.env create mode 100644 frontend/.env.prod create mode 100644 frontend/.env.sandbox create mode 100644 frontend/.gitignore create mode 100644 frontend/README.md create mode 100644 frontend/package-lock.json create mode 100644 frontend/package.json create mode 100644 frontend/public/favicon.ico create mode 100644 frontend/public/index.html create mode 100644 frontend/public/logo192.png create mode 100644 frontend/public/logo512.png create mode 100644 frontend/public/manifest.json create mode 100644 frontend/public/robots.txt create mode 100644 frontend/src/App.css create mode 100644 frontend/src/App.test.tsx create mode 100644 frontend/src/App.tsx create mode 100644 frontend/src/ElixirAuthService.tsx create mode 100644 frontend/src/api.ts create mode 100644 frontend/src/auth-context.tsx create mode 100644 frontend/src/auth.tsx create mode 100644 frontend/src/components/AuditTrail.tsx create mode 100644 frontend/src/components/EntityStatusBox.tsx create mode 100644 frontend/src/components/LoadingOverlay.tsx create mode 100644 frontend/src/components/MappingStatusBox.tsx create mode 100644 frontend/src/components/Provenance.tsx create mode 100644 frontend/src/components/StatusBox.tsx create mode 100644 frontend/src/components/TermStatusBox.tsx create mode 100644 frontend/src/dto/AuditEntry.ts create mode 100644 frontend/src/dto/Comment.ts create mode 100644 frontend/src/dto/Context.ts create mode 100644 frontend/src/dto/Entity.ts create mode 100644 frontend/src/dto/Mapping.ts create mode 100644 frontend/src/dto/MappingSuggestion.ts create mode 100644 frontend/src/dto/OlsSearchResult.ts create mode 100644 frontend/src/dto/OntologyTerm.ts create mode 100644 frontend/src/dto/Paginated.ts create mode 100644 frontend/src/dto/Project.ts create mode 100644 frontend/src/dto/ProjectMappingConfig.ts create mode 100644 frontend/src/dto/Provenance.ts create mode 100644 frontend/src/dto/Review.ts create mode 100644 frontend/src/dto/Source.ts create mode 100644 frontend/src/dto/User.ts create mode 100644 frontend/src/elixir_login_button.png create mode 100644 frontend/src/elixir_logo.png create mode 100644 frontend/src/formatDate.ts create mode 100644 frontend/src/global.d.ts create mode 100644 frontend/src/history.ts create mode 100644 frontend/src/index.css create mode 100644 frontend/src/index.tsx create mode 100644 frontend/src/logo.svg create mode 100644 frontend/src/pages/Home.tsx create mode 100644 frontend/src/pages/Login.tsx create mode 100644 frontend/src/pages/ProjectList.tsx create mode 100644 frontend/src/pages/entities/EntityList.tsx create mode 100644 frontend/src/pages/entities/EntityPage.tsx create mode 100644 frontend/src/pages/entities/MappingSuggestionList.tsx create mode 100644 frontend/src/pages/entities/MappingTermList.tsx create mode 100644 frontend/src/pages/entities/OntologyTermSearchBox.tsx create mode 100644 frontend/src/pages/projects/ContextForm.tsx create mode 100644 frontend/src/pages/projects/CreateContextDialog.tsx create mode 100644 frontend/src/pages/projects/CreateProjectDialog.tsx create mode 100644 frontend/src/pages/projects/ProjectForm.tsx create mode 100644 frontend/src/pages/projects/ProjectList.tsx create mode 100644 frontend/src/pages/projects/ProjectPage.tsx create mode 100644 frontend/src/react-app-env.d.ts create mode 100644 frontend/src/reportWebVitals.ts create mode 100644 frontend/src/setupTests.ts create mode 100644 frontend/tsconfig.json create mode 100644 frontend/yarn.lock diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b96d186..49e1044 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,9 +3,12 @@ services: - docker:dind stages: - - build - - docker - - docker-release + - build-frontend + - build-artefact + - build-container + - build-frontend-release + - build-artefact-release + - build-container-release - deploy-sandbox - deploy-fallback - deploy-live @@ -16,27 +19,84 @@ variables: REGISTRY_IMAGE: ebispot/ontotools-curation-service SERVICE_NAME: ontotools-curation-service +build-front: + image: node:10.15.3 + stage: build-frontend + script: + - npm -v + - node -v + - cd frontend + - rm -rf node_modules + - npm install + - CI=false npm run build:sandbox + artifacts: + paths: + - frontend/build/* + only: + - develop + maven-build: image: maven:3-jdk-12 - stage: build + stage: build-artefact script: - - mvn clean install -B -Dspring.profiles.active=test + - mkdir src/main/webapp + - mv frontend/build/* src/main/webapp/ + - ls -lah src/main/webapp + - mvn clean package spring-boot:repackage -DskipTests=true + dependencies: + - build-front artifacts: paths: - - target/*.jar + - target/*.war + only: + - develop build-container: - stage: docker + stage: build-container script: - echo "$DOCKER_HUB_PASSWORD" > dhpw.txt - docker login -u "${DOCKER_HUB_USER}" --password-stdin < dhpw.txt - docker build --cache-from $REGISTRY_IMAGE:latest -t $REGISTRY_IMAGE:$CI_COMMIT_SHA . - docker push $REGISTRY_IMAGE:$CI_COMMIT_SHA + only: + - develop + +build-front-release: + image: node:10.15.3 + stage: build-frontend-release + script: + - npm -v + - node -v + - cd frontend + - rm -rf node_modules + - npm install + - CI=false npm run build:prod + artifacts: + paths: + - frontend/build/* + only: + - tags + +maven-build-release: + image: maven:3-jdk-12 + stage: build-artefact-release + script: + - mkdir src/main/webapp + - mv frontend/build/* src/main/webapp/ + - ls -lah src/main/webapp + - mvn clean package spring-boot:repackage -DskipTests=true + dependencies: + - build-front-release + artifacts: + paths: + - target/*.war + only: + - tags build-release: variables: GIT_STRATEGY: none - stage: docker-release + stage: build-container-release script: - echo "$DOCKER_HUB_PASSWORD" > dhpw.txt - docker login -u "${DOCKER_HUB_USER}" --password-stdin < dhpw.txt @@ -64,7 +124,6 @@ deploy-sandbox: only: - develop - deploy-fallback: image: dtzar/helm-kubectl:2.13.1 stage: deploy-fallback diff --git a/frontend/.env b/frontend/.env new file mode 100644 index 0000000..ca4b576 --- /dev/null +++ b/frontend/.env @@ -0,0 +1,4 @@ +REACT_APP_AAPURL="https://api.aai.ebi.ac.uk" +REACT_APP_APIURL="http://localhost:8080/ontotools/curation/api" +PUBLIC_URL="" + diff --git a/frontend/.env.prod b/frontend/.env.prod new file mode 100644 index 0000000..e20b185 --- /dev/null +++ b/frontend/.env.prod @@ -0,0 +1,4 @@ +REACT_APP_AAPURL="https://api.aai.ebi.ac.uk" +REACT_APP_APIURL="/curator" +PUBLIC_URL="/curator" + diff --git a/frontend/.env.sandbox b/frontend/.env.sandbox new file mode 100644 index 0000000..e20b185 --- /dev/null +++ b/frontend/.env.sandbox @@ -0,0 +1,4 @@ +REACT_APP_AAPURL="https://api.aai.ebi.ac.uk" +REACT_APP_APIURL="/curator" +PUBLIC_URL="/curator" + diff --git a/frontend/.gitignore b/frontend/.gitignore new file mode 100644 index 0000000..4d29575 --- /dev/null +++ b/frontend/.gitignore @@ -0,0 +1,23 @@ +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# production +/build + +# misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* diff --git a/frontend/README.md b/frontend/README.md new file mode 100644 index 0000000..b58e0af --- /dev/null +++ b/frontend/README.md @@ -0,0 +1,46 @@ +# Getting Started with Create React App + +This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app). + +## Available Scripts + +In the project directory, you can run: + +### `yarn start` + +Runs the app in the development mode.\ +Open [http://localhost:3000](http://localhost:3000) to view it in the browser. + +The page will reload if you make edits.\ +You will also see any lint errors in the console. + +### `yarn test` + +Launches the test runner in the interactive watch mode.\ +See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information. + +### `yarn build` + +Builds the app for production to the `build` folder.\ +It correctly bundles React in production mode and optimizes the build for the best performance. + +The build is minified and the filenames include the hashes.\ +Your app is ready to be deployed! + +See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information. + +### `yarn eject` + +**Note: this is a one-way operation. Once you `eject`, you can’t go back!** + +If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project. + +Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own. + +You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it. + +## Learn More + +You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started). + +To learn React, check out the [React documentation](https://reactjs.org/). diff --git a/frontend/package-lock.json b/frontend/package-lock.json new file mode 100644 index 0000000..b8e81db --- /dev/null +++ b/frontend/package-lock.json @@ -0,0 +1,36877 @@ +{ + "name": "curation-app", + "version": "0.1.0", + "lockfileVersion": 2, + "requires": true, + "packages": { + "": { + "version": "0.1.0", + "dependencies": { + "@material-ui/core": "^4.11.3", + "@material-ui/icons": "^4.11.2", + "@material-ui/lab": "^4.0.0-alpha.57", + "@testing-library/jest-dom": "^5.11.4", + "@testing-library/react": "^11.1.0", + "@testing-library/user-event": "^12.1.10", + "@types/jest": "^26.0.15", + "@types/node": "^12.0.0", + "@types/react": "^17.0.0", + "@types/react-dom": "^17.0.0", + "@types/react-router-dom": "^5.1.7", + "date-fns": "^2.19.0", + "history": "^5.0.0", + "jwt-decode": "^3.1.2", + "react": "^17.0.1", + "react-data-table-component": "^6.11.7", + "react-dom": "^17.0.1", + "react-loading-overlay": "^1.0.1", + "react-router-dom": "^5.2.0", + "react-scripts": "4.0.3", + "styled-components": "^5.2.1", + "typescript": "^4.1.2", + "web-vitals": "^1.0.1" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", + "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.12.13" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.13.tgz", + "integrity": "sha512-U/hshG5R+SIoW7HVWIdmy1cB7s3ki+r3FpyEZiCgpi4tFgPnX/vynY80ZGSASOIrUM6O7VxOgCZgdt7h97bUGg==", + "license": "MIT" + }, + "node_modules/@babel/core": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.17.tgz", + "integrity": "sha512-V3CuX1aBywbJvV2yzJScRxeiiw0v2KZZYYE3giywxzFJL13RiyPjaaDwhDnxmgFTTS7FgvM2ijr4QmKNIu0AtQ==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.12.17", + "@babel/helper-module-transforms": "^7.12.17", + "@babel/helpers": "^7.12.17", + "@babel/parser": "^7.12.17", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/core/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@babel/generator": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.17.tgz", + "integrity": "sha512-DSA7ruZrY4WI8VxuS1jWSRezFnghEoYEFrZcw9BizQRmOZiUsiHl59+qEARGPqPikwA/GPTyRCi7isuCK/oyqg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.17", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + } + }, + "node_modules/@babel/generator/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz", + "integrity": "sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz", + "integrity": "sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA==", + "license": "MIT", + "dependencies": { + "@babel/helper-explode-assignable-expression": "^7.12.13", + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.17.tgz", + "integrity": "sha512-5EkibqLVYOuZ89BSg2lv+GG8feywLuvMXNYgf0Im4MssE0mFWPztSpJbildNnUgw0bLI2EsIN4MpSHC2iUJkQA==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.12.13", + "@babel/helper-validator-option": "^7.12.17", + "browserslist": "^4.14.5", + "semver": "^5.5.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.17.tgz", + "integrity": "sha512-I/nurmTxIxHV0M+rIpfQBF1oN342+yvl2kwZUrQuOClMamHF1w5tknfZubgNOLRoA73SzBFAdFcpb4M9HwOeWQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-member-expression-to-functions": "^7.12.17", + "@babel/helper-optimise-call-expression": "^7.12.13", + "@babel/helper-replace-supers": "^7.12.13", + "@babel/helper-split-export-declaration": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/@babel/core": { + "version": "7.12.3", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.1", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.1", + "@babel/parser": "^7.12.3", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.12.1", + "@babel/types": "^7.12.1", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "license": "MIT", + "peer": true, + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "license": "BSD-3-Clause", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz", + "integrity": "sha512-p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.12.13", + "regexpu-core": "^4.7.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-explode-assignable-expression": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.13.tgz", + "integrity": "sha512-5loeRNvMo9mx1dA/d6yNi+YiKziJZFylZnCo1nmFF4qPU4yJ14abhWESuSMQSlQxWdxdOFzxXjk/PpfudTtYyw==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz", + "integrity": "sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==", + "license": "MIT", + "dependencies": { + "@babel/helper-get-function-arity": "^7.12.13", + "@babel/template": "^7.12.13", + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-get-function-arity": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz", + "integrity": "sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.12.13.tgz", + "integrity": "sha512-KSC5XSj5HreRhYQtZ3cnSnQwDzgnbdUDEFsxkN0m6Q3WrCRt72xrnZ8+h+pX7YxM7hr87zIO3a/v5p/H3TrnVw==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.17.tgz", + "integrity": "sha512-Bzv4p3ODgS/qpBE0DiJ9qf5WxSmrQ8gVTe8ClMfwwsY2x/rhykxxy3bXzG7AGTnPB2ij37zGJ/Q/6FruxHxsxg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.17" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz", + "integrity": "sha512-NGmfvRp9Rqxy0uHSSVP+SRIW1q31a7Ji10cLBcqSDUngGentY4FRiHOFZFE1CLU5eiL0oE8reH7Tg1y99TDM/g==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.17.tgz", + "integrity": "sha512-sFL+p6zOCQMm9vilo06M4VHuTxUAwa6IxgL56Tq1DVtA0ziAGTH1ThmJq7xwPqdQlgAbKX3fb0oZNbtRIyA5KQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-replace-supers": "^7.12.13", + "@babel/helper-simple-access": "^7.12.13", + "@babel/helper-split-export-declaration": "^7.12.13", + "@babel/helper-validator-identifier": "^7.12.11", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17", + "lodash": "^4.17.19" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz", + "integrity": "sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.12.13.tgz", + "integrity": "sha512-C+10MXCXJLiR6IeG9+Wiejt9jmtFpxUc3MQqCmPY8hfCjyUGl9kT+B2okzEZrtykiwrc4dbCPdDoz0A/HQbDaA==", + "license": "MIT" + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.13.tgz", + "integrity": "sha512-Qa6PU9vNcj1NZacZZI1Mvwt+gXDH6CTfgAkSjeRMLE8HxtDK76+YDId6NQR+z7Rgd5arhD2cIbS74r0SxD6PDA==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.12.13", + "@babel/helper-wrap-function": "^7.12.13", + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.13.tgz", + "integrity": "sha512-pctAOIAMVStI2TMLhozPKbf5yTEXc0OJa0eENheb4w09SrgOWEs+P4nTOZYJQCqs8JlErGLDPDJTiGIp3ygbLg==", + "license": "MIT", + "dependencies": { + "@babel/helper-member-expression-to-functions": "^7.12.13", + "@babel/helper-optimise-call-expression": "^7.12.13", + "@babel/traverse": "^7.12.13", + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz", + "integrity": "sha512-0ski5dyYIHEfwpWGx5GPWhH35j342JaflmCeQmsPWcrOQDtCN6C1zKAVRFVbK53lPW2c9TsuLLSUDf0tIGJ5hA==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz", + "integrity": "sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.1" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz", + "integrity": "sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", + "license": "MIT" + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz", + "integrity": "sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==", + "license": "MIT" + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.12.13.tgz", + "integrity": "sha512-t0aZFEmBJ1LojdtJnhOaQEVejnzYhyjWHSsNSNo8vOYRbAJNh6r6GQF7pd36SqG7OKGbn+AewVQ/0IfYfIuGdw==", + "license": "MIT", + "dependencies": { + "@babel/helper-function-name": "^7.12.13", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.13", + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/helpers": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.17.tgz", + "integrity": "sha512-tEpjqSBGt/SFEsFikKds1sLNChKKGGR17flIgQKXH4fG6m9gTgl3gnOC1giHNyaBCSKuTfxaSzHi7UnvqiVKxg==", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17" + } + }, + "node_modules/@babel/highlight": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.12.13.tgz", + "integrity": "sha512-kocDQvIbgMKlWxXe9fof3TQ+gkIPOUSEYhJjqUjvKMez3krV7vbzYCDq39Oj11UAVK7JqPVGQPlgE85dPNlQww==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.12.11", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.17.tgz", + "integrity": "sha512-r1yKkiUTYMQ8LiEI0UcQx5ETw5dpTLn9wijn9hk6KkTtOK95FndDN10M+8/s6k/Ymlbivw0Av9q4SlgF80PtHg==", + "license": "MIT", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-proposal-async-generator-functions": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.13.tgz", + "integrity": "sha512-1KH46Hx4WqP77f978+5Ye/VUbuwQld2hph70yaw2hXS2v7ER2f3nlpNMu909HO2rbvP0NKLlMVDPh9KXklVMhA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-remap-async-to-generator": "^7.12.13", + "@babel/plugin-syntax-async-generators": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.13.tgz", + "integrity": "sha512-8SCJ0Ddrpwv4T7Gwb33EmW1V9PY5lggTO+A8WjyIwxrSHDUyBw4MtF96ifn1n8H806YlxbVCoKXbbmzD6RD+cA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-dynamic-import": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.17.tgz", + "integrity": "sha512-ZNGoFZqrnuy9H2izB2jLlnNDAfVPlGl5NhFEiFe4D84ix9GQGygF+CWMGHKuE+bpyS/AOuDQCnkiRNqW2IzS1Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-dynamic-import": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-export-namespace-from": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz", + "integrity": "sha512-INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-json-strings": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.13.tgz", + "integrity": "sha512-v9eEi4GiORDg8x+Dmi5r8ibOe0VXoKDeNPYcTTxdGN4eOWikrJfDJCJrr1l5gKGvsNyGJbrfMftC2dTL6oz7pg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-json-strings": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.13.tgz", + "integrity": "sha512-fqmiD3Lz7jVdK6kabeSr1PZlWSUVqSitmHEe3Z00dtGTKieWnX9beafvavc32kjORa5Bai4QNHgFDwWJP+WtSQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.13.tgz", + "integrity": "sha512-Qoxpy+OxhDBI5kRqliJFAl4uWXk3Bn24WeFstPH0iLymFehSAUR8MHpqU7njyXv/qbo7oN6yTy5bfCmXdKpo1Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz", + "integrity": "sha512-O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-object-rest-spread": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.13.tgz", + "integrity": "sha512-WvA1okB/0OS/N3Ldb3sziSrXg6sRphsBgqiccfcQq7woEn5wQLNX82Oc4PlaFcdwcWHuQXAtb8ftbS8Fbsg/sg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-transform-parameters": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-catch-binding": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.13.tgz", + "integrity": "sha512-9+MIm6msl9sHWg58NvqpNpLtuFbmpFYk37x8kgnGzAHvX35E1FyAwSUt5hIkSoWJFSAH+iwU8bJ4fcD1zKXOzg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.17.tgz", + "integrity": "sha512-TvxwI80pWftrGPKHNfkvX/HnoeSTR7gC4ezWnAL39PuktYUe6r8kEpOLTYnkBTsaoeazXm2jHJ22EQ81sdgfcA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1", + "@babel/plugin-syntax-optional-chaining": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.13.tgz", + "integrity": "sha512-sV0V57uUwpauixvR7s2o75LmwJI6JECwm5oPUY5beZB1nBl2i37hc7CJGqB5G+58fur5Y6ugvl3LRONk5x34rg==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-unicode-property-regex": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz", + "integrity": "sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz", + "integrity": "sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz", + "integrity": "sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.13.tgz", + "integrity": "sha512-tBtuN6qtCTd+iHzVZVOMNp+L04iIJBpqkdY42tWbmjIT5wvR2kx7gxMBsyhQtFzHwBbyGi9h8J8r9HgnOpQHxg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.13.tgz", + "integrity": "sha512-psM9QHcHaDr+HZpRuJcE1PXESuGWSCcbiGFFhhwfzdbTxaGDVzuVtdNYliAwcRo3GFg0Bc8MmI+AvIGYIJG04A==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-remap-async-to-generator": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz", + "integrity": "sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.13.tgz", + "integrity": "sha512-Pxwe0iqWJX4fOOM2kEZeUuAxHMWb9nK+9oh5d11bsLoB0xMg+mkDpt0eYuDZB7ETrY9bbcVlKUGTOGWy7BHsMQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.13.tgz", + "integrity": "sha512-cqZlMlhCC1rVnxE5ZGMtIb896ijL90xppMiuWXcwcOAuFczynpd3KYemb91XFFPi3wJSe/OcrX9lXoowatkkxA==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.12.13", + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-optimise-call-expression": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-replace-supers": "^7.12.13", + "@babel/helper-split-export-declaration": "^7.12.13", + "globals": "^11.1.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.13.tgz", + "integrity": "sha512-dDfuROUPGK1mTtLKyDPUavmj2b6kFu82SmgpztBFEO974KMjJT+Ytj3/oWsTUMBmgPcp9J5Pc1SlcAYRpJ2hRA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.13.tgz", + "integrity": "sha512-Dn83KykIFzjhA3FDPA1z4N+yfF3btDGhjnJwxIj0T43tP0flCujnU8fKgEkf0C1biIpSv9NZegPBQ1J6jYkwvQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz", + "integrity": "sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz", + "integrity": "sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz", + "integrity": "sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA==", + "license": "MIT", + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.13.tgz", + "integrity": "sha512-xCbdgSzXYmHGyVX3+BsQjcd4hv4vA/FDy7Kc8eOpzKmBBPEOTurt0w5fCRQaGl+GSBORKgJdstQ1rHl4jbNseQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz", + "integrity": "sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz", + "integrity": "sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz", + "integrity": "sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.13.tgz", + "integrity": "sha512-JHLOU0o81m5UqG0Ulz/fPC68/v+UTuGTWaZBUwpEk1fYQ1D9LfKV6MPn4ttJKqRo5Lm460fkzjLTL4EHvCprvA==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.13.tgz", + "integrity": "sha512-OGQoeVXVi1259HjuoDnsQMlMkT9UkZT9TpXAsqWplS/M0N1g3TJAn/ByOCeQu7mfjc5WpSsRU+jV1Hd89ts0kQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-simple-access": "^7.12.13", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.13.tgz", + "integrity": "sha512-aHfVjhZ8QekaNF/5aNdStCGzwTbU7SI5hUybBKlMzqIMC7w7Ho8hx5a4R/DkTHfRfLwHGGxSpFt9BfxKCoXKoA==", + "license": "MIT", + "dependencies": { + "@babel/helper-hoist-variables": "^7.12.13", + "@babel/helper-module-transforms": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-validator-identifier": "^7.12.11", + "babel-plugin-dynamic-import-node": "^2.3.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.13.tgz", + "integrity": "sha512-BgZndyABRML4z6ibpi7Z98m4EVLFI9tVsZDADC14AElFaNHHBcJIovflJ6wtCqFxwy2YJ1tJhGRsr0yLPKoN+w==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-transforms": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz", + "integrity": "sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz", + "integrity": "sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz", + "integrity": "sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-replace-supers": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.13.tgz", + "integrity": "sha512-e7QqwZalNiBRHCpJg/P8s/VJeSRYgmtWySs1JwvfwPqhBbiWfOcHDKdeAi6oAyIimoKWBlwc8oTgbZHdhCoVZA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz", + "integrity": "sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-constant-elements": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.12.13.tgz", + "integrity": "sha512-qmzKVTn46Upvtxv8LQoQ8mTCdUC83AOVQIQm57e9oekLT5cmK9GOMOfcWhe8jMNx4UJXn/UDhVZ/7lGofVNeDQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.13.tgz", + "integrity": "sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.17.tgz", + "integrity": "sha512-mwaVNcXV+l6qJOuRhpdTEj8sT/Z0owAVWf9QujTZ0d2ye9X/K+MTOTSizcgKOj18PGnTc/7g1I4+cIUjsKhBcw==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.12.13", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-jsx": "^7.12.13", + "@babel/types": "^7.12.17" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.17.tgz", + "integrity": "sha512-BPjYV86SVuOaudFhsJR1zjgxxOhJDt6JHNoD48DxWEIxUCAMjV1ys6DYw4SDYZh0b1QsS2vfIA9t/ZsQGsDOUQ==", + "license": "MIT", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.12.17" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz", + "integrity": "sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.13.tgz", + "integrity": "sha512-lxb2ZAvSLyJ2PEe47hoGWPmW22v7CtSl9jW8mingV4H2sEX/JOcrAj2nPuGWi56ERUm2bUpjKzONAuT6HCn2EA==", + "license": "MIT", + "dependencies": { + "regenerator-transform": "^0.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz", + "integrity": "sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz", + "integrity": "sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.13.tgz", + "integrity": "sha512-dUCrqPIowjqk5pXsx1zPftSq4sT0aCeZVAxhdgs3AMgyaDmoUT0G+5h3Dzja27t76aUEIJWlFgPJqJ/d4dbTtg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz", + "integrity": "sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.13.tgz", + "integrity": "sha512-arIKlWYUgmNsF28EyfmiQHJLJFlAJNYkuQO10jL46ggjBpeb2re1P9K9YGxNJB45BqTbaslVysXDYm/g3sN/Qg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz", + "integrity": "sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz", + "integrity": "sha512-0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz", + "integrity": "sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.17.tgz", + "integrity": "sha512-9PMijx8zFbCwTHrd2P4PJR5nWGH3zWebx2OcpTjqQrHhCiL2ssSR2Sc9ko2BsI2VmVBfoaQmPrlMTCui4LmXQg==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.12.13", + "@babel/helper-compilation-targets": "^7.12.17", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-validator-option": "^7.12.17", + "@babel/plugin-proposal-async-generator-functions": "^7.12.13", + "@babel/plugin-proposal-class-properties": "^7.12.13", + "@babel/plugin-proposal-dynamic-import": "^7.12.17", + "@babel/plugin-proposal-export-namespace-from": "^7.12.13", + "@babel/plugin-proposal-json-strings": "^7.12.13", + "@babel/plugin-proposal-logical-assignment-operators": "^7.12.13", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.13", + "@babel/plugin-proposal-numeric-separator": "^7.12.13", + "@babel/plugin-proposal-object-rest-spread": "^7.12.13", + "@babel/plugin-proposal-optional-catch-binding": "^7.12.13", + "@babel/plugin-proposal-optional-chaining": "^7.12.17", + "@babel/plugin-proposal-private-methods": "^7.12.13", + "@babel/plugin-proposal-unicode-property-regex": "^7.12.13", + "@babel/plugin-syntax-async-generators": "^7.8.0", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-dynamic-import": "^7.8.0", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.0", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.0", + "@babel/plugin-syntax-top-level-await": "^7.12.13", + "@babel/plugin-transform-arrow-functions": "^7.12.13", + "@babel/plugin-transform-async-to-generator": "^7.12.13", + "@babel/plugin-transform-block-scoped-functions": "^7.12.13", + "@babel/plugin-transform-block-scoping": "^7.12.13", + "@babel/plugin-transform-classes": "^7.12.13", + "@babel/plugin-transform-computed-properties": "^7.12.13", + "@babel/plugin-transform-destructuring": "^7.12.13", + "@babel/plugin-transform-dotall-regex": "^7.12.13", + "@babel/plugin-transform-duplicate-keys": "^7.12.13", + "@babel/plugin-transform-exponentiation-operator": "^7.12.13", + "@babel/plugin-transform-for-of": "^7.12.13", + "@babel/plugin-transform-function-name": "^7.12.13", + "@babel/plugin-transform-literals": "^7.12.13", + "@babel/plugin-transform-member-expression-literals": "^7.12.13", + "@babel/plugin-transform-modules-amd": "^7.12.13", + "@babel/plugin-transform-modules-commonjs": "^7.12.13", + "@babel/plugin-transform-modules-systemjs": "^7.12.13", + "@babel/plugin-transform-modules-umd": "^7.12.13", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.13", + "@babel/plugin-transform-new-target": "^7.12.13", + "@babel/plugin-transform-object-super": "^7.12.13", + "@babel/plugin-transform-parameters": "^7.12.13", + "@babel/plugin-transform-property-literals": "^7.12.13", + "@babel/plugin-transform-regenerator": "^7.12.13", + "@babel/plugin-transform-reserved-words": "^7.12.13", + "@babel/plugin-transform-shorthand-properties": "^7.12.13", + "@babel/plugin-transform-spread": "^7.12.13", + "@babel/plugin-transform-sticky-regex": "^7.12.13", + "@babel/plugin-transform-template-literals": "^7.12.13", + "@babel/plugin-transform-typeof-symbol": "^7.12.13", + "@babel/plugin-transform-unicode-escapes": "^7.12.13", + "@babel/plugin-transform-unicode-regex": "^7.12.13", + "@babel/preset-modules": "^0.1.3", + "@babel/types": "^7.12.17", + "core-js-compat": "^3.8.0", + "semver": "^5.5.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz", + "integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-react": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.13.tgz", + "integrity": "sha512-TYM0V9z6Abb6dj1K7i5NrEhA13oS5ujUYQYDfqIBXYHOc2c2VkFgc+q9kyssIyUfy4/hEwqrgSlJ/Qgv8zJLsA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-transform-react-display-name": "^7.12.13", + "@babel/plugin-transform-react-jsx": "^7.12.13", + "@babel/plugin-transform-react-jsx-development": "^7.12.12", + "@babel/plugin-transform-react-pure-annotations": "^7.12.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.12.18", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.18.tgz", + "integrity": "sha512-BogPQ7ciE6SYAUPtlm9tWbgI9+2AgqSam6QivMgXgAT+fKbgppaj4ZX15MHeLC1PVF5sNk70huBu20XxWOs8Cg==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.13.4" + } + }, + "node_modules/@babel/runtime-corejs3": { + "version": "7.12.18", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.18.tgz", + "integrity": "sha512-ngR7yhNTjDxxe1VYmhqQqqXZWujGb6g0IoA4qeG6MxNGRnIw2Zo8ImY8HfaQ7l3T6GklWhdNfyhWk0C0iocdVA==", + "license": "MIT", + "dependencies": { + "core-js-pure": "^3.0.0", + "regenerator-runtime": "^0.13.4" + } + }, + "node_modules/@babel/template": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz", + "integrity": "sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@babel/parser": "^7.12.13", + "@babel/types": "^7.12.13" + } + }, + "node_modules/@babel/traverse": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.17.tgz", + "integrity": "sha512-LGkTqDqdiwC6Q7fWSwQoas/oyiEYw6Hqjve5KOSykXkmFJFqzvGMb9niaUEag3Rlve492Mkye3gLw9FTv94fdQ==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.12.17", + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-split-export-declaration": "^7.12.13", + "@babel/parser": "^7.12.17", + "@babel/types": "^7.12.17", + "debug": "^4.1.0", + "globals": "^11.1.0", + "lodash": "^4.17.19" + } + }, + "node_modules/@babel/types": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.17.tgz", + "integrity": "sha512-tNMDjcv/4DIcHxErTgwB9q2ZcYyN0sUfgGKUK/mm1FJK7Wz+KstoEekxrl/tBiNDgLK1HGi+sppj1An/1DR4fQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.12.11", + "lodash": "^4.17.19", + "to-fast-properties": "^2.0.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "license": "MIT" + }, + "node_modules/@cnakazawa/watch": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", + "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", + "license": "Apache-2.0", + "dependencies": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + }, + "bin": { + "watch": "cli.js" + }, + "engines": { + "node": ">=0.1.95" + } + }, + "node_modules/@csstools/convert-colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz", + "integrity": "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==", + "license": "CC0-1.0", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/@csstools/normalize.css": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-10.1.0.tgz", + "integrity": "sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg==", + "license": "CC0-1.0" + }, + "node_modules/@emotion/cache": { + "version": "10.0.29", + "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-10.0.29.tgz", + "integrity": "sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==", + "dependencies": { + "@emotion/sheet": "0.9.4", + "@emotion/stylis": "0.8.5", + "@emotion/utils": "0.11.3", + "@emotion/weak-memoize": "0.2.5" + } + }, + "node_modules/@emotion/hash": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz", + "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" + }, + "node_modules/@emotion/is-prop-valid": { + "version": "0.8.8", + "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz", + "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==", + "dependencies": { + "@emotion/memoize": "0.7.4" + } + }, + "node_modules/@emotion/memoize": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", + "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" + }, + "node_modules/@emotion/serialize": { + "version": "0.11.16", + "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz", + "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==", + "dependencies": { + "@emotion/hash": "0.8.0", + "@emotion/memoize": "0.7.4", + "@emotion/unitless": "0.7.5", + "@emotion/utils": "0.11.3", + "csstype": "^2.5.7" + } + }, + "node_modules/@emotion/serialize/node_modules/csstype": { + "version": "2.6.16", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.16.tgz", + "integrity": "sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q==" + }, + "node_modules/@emotion/sheet": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-0.9.4.tgz", + "integrity": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==" + }, + "node_modules/@emotion/stylis": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz", + "integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==" + }, + "node_modules/@emotion/unitless": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz", + "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" + }, + "node_modules/@emotion/utils": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz", + "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" + }, + "node_modules/@emotion/weak-memoize": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz", + "integrity": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==" + }, + "node_modules/@eslint/eslintrc": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.3.0.tgz", + "integrity": "sha512-1JTKgrOKAHVivSvOYw+sJOunkBjUOvjqWk1DPja7ZFhIS2mX/4EgTT8M7eTK9jrKhL/FvXXEbQwIs3pg1xp3dg==", + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "lodash": "^4.17.20", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", + "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@hapi/address": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz", + "integrity": "sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/bourne": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz", + "integrity": "sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/hoek": { + "version": "8.5.1", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz", + "integrity": "sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==", + "license": "BSD-3-Clause" + }, + "node_modules/@hapi/joi": { + "version": "15.1.1", + "resolved": "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz", + "integrity": "sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/address": "2.x.x", + "@hapi/bourne": "1.x.x", + "@hapi/hoek": "8.x.x", + "@hapi/topo": "3.x.x" + } + }, + "node_modules/@hapi/topo": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz", + "integrity": "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==", + "license": "BSD-3-Clause", + "dependencies": { + "@hapi/hoek": "^8.3.0" + } + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "license": "ISC", + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz", + "integrity": "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==", + "license": "MIT", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^26.6.2", + "jest-util": "^26.6.2", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/console/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/@jest/core": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz", + "integrity": "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==", + "license": "MIT", + "dependencies": { + "@jest/console": "^26.6.2", + "@jest/reporters": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-changed-files": "^26.6.2", + "jest-config": "^26.6.3", + "jest-haste-map": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-resolve-dependencies": "^26.6.3", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "jest-watcher": "^26.6.2", + "micromatch": "^4.0.2", + "p-each-series": "^2.1.0", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/core/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/@jest/core/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@jest/environment": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz", + "integrity": "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==", + "license": "MIT", + "dependencies": { + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/environment/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/@jest/fake-timers": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz", + "integrity": "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^26.6.2", + "@sinonjs/fake-timers": "^6.0.1", + "@types/node": "*", + "jest-message-util": "^26.6.2", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/fake-timers/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/@jest/globals": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz", + "integrity": "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==", + "license": "MIT", + "dependencies": { + "@jest/environment": "^26.6.2", + "@jest/types": "^26.6.2", + "expect": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/reporters": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz", + "integrity": "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==", + "license": "MIT", + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.4", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^4.0.3", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "jest-haste-map": "^26.6.2", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^7.0.0" + }, + "engines": { + "node": ">= 10.14.2" + }, + "optionalDependencies": { + "node-notifier": "^8.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz", + "integrity": "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==", + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.4", + "source-map": "^0.6.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/test-result": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz", + "integrity": "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==", + "license": "MIT", + "dependencies": { + "@jest/console": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz", + "integrity": "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==", + "license": "MIT", + "dependencies": { + "@jest/test-result": "^26.6.2", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/transform": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz", + "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^26.6.2", + "babel-plugin-istanbul": "^6.0.0", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-util": "^26.6.2", + "micromatch": "^4.0.2", + "pirates": "^4.0.1", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/@jest/types/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/@material-ui/core": { + "version": "4.11.3", + "resolved": "https://registry.npmjs.org/@material-ui/core/-/core-4.11.3.tgz", + "integrity": "sha512-Adt40rGW6Uds+cAyk3pVgcErpzU/qxc7KBR94jFHBYretU4AtWZltYcNsbeMn9tXL86jjVL1kuGcIHsgLgFGRw==", + "dependencies": { + "@babel/runtime": "^7.4.4", + "@material-ui/styles": "^4.11.3", + "@material-ui/system": "^4.11.3", + "@material-ui/types": "^5.1.0", + "@material-ui/utils": "^4.11.2", + "@types/react-transition-group": "^4.2.0", + "clsx": "^1.0.4", + "hoist-non-react-statics": "^3.3.2", + "popper.js": "1.16.1-lts", + "prop-types": "^15.7.2", + "react-is": "^16.8.0 || ^17.0.0", + "react-transition-group": "^4.4.0" + }, + "engines": { + "node": ">=8.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/material-ui" + }, + "peerDependencies": { + "@types/react": "^16.8.6 || ^17.0.0", + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@material-ui/icons": { + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@material-ui/icons/-/icons-4.11.2.tgz", + "integrity": "sha512-fQNsKX2TxBmqIGJCSi3tGTO/gZ+eJgWmMJkgDiOfyNaunNaxcklJQFaFogYcFl0qFuaEz1qaXYXboa/bUXVSOQ==", + "dependencies": { + "@babel/runtime": "^7.4.4" + }, + "engines": { + "node": ">=8.0.0" + }, + "peerDependencies": { + "@material-ui/core": "^4.0.0", + "@types/react": "^16.8.6 || ^17.0.0", + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@material-ui/lab": { + "version": "4.0.0-alpha.57", + "resolved": "https://registry.npmjs.org/@material-ui/lab/-/lab-4.0.0-alpha.57.tgz", + "integrity": "sha512-qo/IuIQOmEKtzmRD2E4Aa6DB4A87kmY6h0uYhjUmrrgmEAgbbw9etXpWPVXuRK6AGIQCjFzV6WO2i21m1R4FCw==", + "dependencies": { + "@babel/runtime": "^7.4.4", + "@material-ui/utils": "^4.11.2", + "clsx": "^1.0.4", + "prop-types": "^15.7.2", + "react-is": "^16.8.0 || ^17.0.0" + }, + "engines": { + "node": ">=8.0.0" + }, + "peerDependencies": { + "@material-ui/core": "^4.9.10", + "@types/react": "^16.8.6 || ^17.0.0", + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@material-ui/styles": { + "version": "4.11.3", + "resolved": "https://registry.npmjs.org/@material-ui/styles/-/styles-4.11.3.tgz", + "integrity": "sha512-HzVzCG+PpgUGMUYEJ2rTEmQYeonGh41BYfILNFb/1ueqma+p1meSdu4RX6NjxYBMhf7k+jgfHFTTz+L1SXL/Zg==", + "dependencies": { + "@babel/runtime": "^7.4.4", + "@emotion/hash": "^0.8.0", + "@material-ui/types": "^5.1.0", + "@material-ui/utils": "^4.11.2", + "clsx": "^1.0.4", + "csstype": "^2.5.2", + "hoist-non-react-statics": "^3.3.2", + "jss": "^10.5.1", + "jss-plugin-camel-case": "^10.5.1", + "jss-plugin-default-unit": "^10.5.1", + "jss-plugin-global": "^10.5.1", + "jss-plugin-nested": "^10.5.1", + "jss-plugin-props-sort": "^10.5.1", + "jss-plugin-rule-value-function": "^10.5.1", + "jss-plugin-vendor-prefixer": "^10.5.1", + "prop-types": "^15.7.2" + }, + "engines": { + "node": ">=8.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/material-ui" + }, + "peerDependencies": { + "@types/react": "^16.8.6 || ^17.0.0", + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@material-ui/styles/node_modules/csstype": { + "version": "2.6.16", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.16.tgz", + "integrity": "sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q==" + }, + "node_modules/@material-ui/system": { + "version": "4.11.3", + "resolved": "https://registry.npmjs.org/@material-ui/system/-/system-4.11.3.tgz", + "integrity": "sha512-SY7otguNGol41Mu2Sg6KbBP1ZRFIbFLHGK81y4KYbsV2yIcaEPOmsCK6zwWlp+2yTV3J/VwT6oSBARtGIVdXPw==", + "dependencies": { + "@babel/runtime": "^7.4.4", + "@material-ui/utils": "^4.11.2", + "csstype": "^2.5.2", + "prop-types": "^15.7.2" + }, + "engines": { + "node": ">=8.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/material-ui" + }, + "peerDependencies": { + "@types/react": "^16.8.6 || ^17.0.0", + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@material-ui/system/node_modules/csstype": { + "version": "2.6.16", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.16.tgz", + "integrity": "sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q==" + }, + "node_modules/@material-ui/types": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@material-ui/types/-/types-5.1.0.tgz", + "integrity": "sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==", + "peerDependencies": { + "@types/react": "*" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@material-ui/utils": { + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@material-ui/utils/-/utils-4.11.2.tgz", + "integrity": "sha512-Uul8w38u+PICe2Fg2pDKCaIG7kOyhowZ9vjiC1FsVwPABTW8vPPKfF6OvxRq3IiBaI1faOJmgdvMG7rMJARBhA==", + "dependencies": { + "@babel/runtime": "^7.4.4", + "prop-types": "^15.7.2", + "react-is": "^16.8.0 || ^17.0.0" + }, + "engines": { + "node": ">=8.0.0" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "react-dom": "^16.8.0 || ^17.0.0" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz", + "integrity": "sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.4", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz", + "integrity": "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz", + "integrity": "sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.4", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@npmcli/move-file": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "license": "MIT", + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@npmcli/move-file/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@npmcli/move-file/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.4.3.tgz", + "integrity": "sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==", + "license": "MIT", + "dependencies": { + "ansi-html": "^0.0.7", + "error-stack-parser": "^2.0.6", + "html-entities": "^1.2.1", + "native-url": "^0.2.6", + "schema-utils": "^2.6.5", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">= 10.x" + }, + "peerDependencies": { + "@types/webpack": "4.x", + "react-refresh": ">=0.8.3 <0.10.0", + "sockjs-client": "^1.4.0", + "type-fest": "^0.13.1", + "webpack": ">=4.43.0 <6.0.0", + "webpack-dev-server": "3.x", + "webpack-hot-middleware": "2.x", + "webpack-plugin-serve": "0.x || 1.x" + }, + "peerDependenciesMeta": { + "@types/webpack": { + "optional": true + }, + "sockjs-client": { + "optional": true + }, + "type-fest": { + "optional": true + }, + "webpack-dev-server": { + "optional": true + }, + "webpack-hot-middleware": { + "optional": true + }, + "webpack-plugin-serve": { + "optional": true + } + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@rollup/plugin-node-resolve": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-7.1.3.tgz", + "integrity": "sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q==", + "license": "MIT", + "dependencies": { + "@rollup/pluginutils": "^3.0.8", + "@types/resolve": "0.0.8", + "builtin-modules": "^3.1.0", + "is-module": "^1.0.0", + "resolve": "^1.14.2" + }, + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/plugin-replace": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.1.tgz", + "integrity": "sha512-XwC1oK5rrtRJ0tn1ioLHS6OV5JTluJF7QE1J/q1hN3bquwjnVxjtMyY9iCnoyH9DQbf92CxajB3o98wZbP3oAQ==", + "license": "MIT", + "dependencies": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + }, + "peerDependencies": { + "rollup": "^1.20.0 || ^2.0.0" + } + }, + "node_modules/@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "license": "MIT", + "dependencies": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0" + } + }, + "node_modules/@rollup/pluginutils/node_modules/@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==", + "license": "MIT" + }, + "node_modules/@rollup/pluginutils/node_modules/estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==", + "license": "MIT" + }, + "node_modules/@sinonjs/commons": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.2.tgz", + "integrity": "sha512-sruwd86RJHdsVf/AtBoijDmUqJp3B6hF/DGC23C+JaegnDHaZyewCjoVGTdg3J0uz3Zs7NnIT05OBOmML72lQw==", + "license": "BSD-3-Clause", + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz", + "integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==", + "license": "BSD-3-Clause", + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/@surma/rollup-plugin-off-main-thread": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-1.4.2.tgz", + "integrity": "sha512-yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A==", + "license": "Apache-2.0", + "dependencies": { + "ejs": "^2.6.1", + "magic-string": "^0.25.0" + } + }, + "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", + "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "license": "MIT", + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", + "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "license": "MIT", + "dependencies": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/core/node_modules/camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@svgr/core/node_modules/cosmiconfig": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", + "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.12.6" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", + "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", + "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", + "license": "MIT", + "dependencies": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/plugin-svgo/node_modules/cosmiconfig": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", + "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@svgr/webpack": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", + "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@testing-library/dom": { + "version": "7.29.6", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-7.29.6.tgz", + "integrity": "sha512-vzTsAXa439ptdvav/4lsKRcGpAQX7b6wBIqia7+iNzqGJ5zjswApxA6jDAsexrc6ue9krWcbh8o+LYkBXW+GCQ==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^4.2.0", + "aria-query": "^4.2.2", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.4", + "lz-string": "^1.4.4", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@testing-library/dom/node_modules/@babel/runtime": { + "version": "7.13.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.7.tgz", + "integrity": "sha512-h+ilqoX998mRVM5FtB5ijRuHUDVt5l3yfoOi2uh18Z/O3hvyaHQ39NpxVkCIG5yFs+mLq/ewFp8Bss6zmWv6ZA==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.13.4" + } + }, + "node_modules/@testing-library/jest-dom": { + "version": "5.11.9", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.11.9.tgz", + "integrity": "sha512-Mn2gnA9d1wStlAIT2NU8J15LNob0YFBVjs2aEQ3j8rsfRQo+lAs7/ui1i2TGaJjapLmuNPLTsrm+nPjmZDwpcQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.9.2", + "@types/testing-library__jest-dom": "^5.9.1", + "aria-query": "^4.2.2", + "chalk": "^3.0.0", + "css": "^3.0.0", + "css.escape": "^1.5.1", + "lodash": "^4.17.15", + "redent": "^3.0.0" + }, + "engines": { + "node": ">=8", + "npm": ">=6", + "yarn": ">=1" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/@babel/runtime": { + "version": "7.13.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.7.tgz", + "integrity": "sha512-h+ilqoX998mRVM5FtB5ijRuHUDVt5l3yfoOi2uh18Z/O3hvyaHQ39NpxVkCIG5yFs+mLq/ewFp8Bss6zmWv6ZA==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.13.4" + } + }, + "node_modules/@testing-library/jest-dom/node_modules/chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@testing-library/react": { + "version": "11.2.5", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-11.2.5.tgz", + "integrity": "sha512-yEx7oIa/UWLe2F2dqK0FtMF9sJWNXD+2PPtp39BvE0Kh9MJ9Kl0HrZAgEuhUJR+Lx8Di6Xz+rKwSdEPY2UV8ZQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5", + "@testing-library/dom": "^7.28.1" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "react": "*", + "react-dom": "*" + } + }, + "node_modules/@testing-library/react/node_modules/@babel/runtime": { + "version": "7.13.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.7.tgz", + "integrity": "sha512-h+ilqoX998mRVM5FtB5ijRuHUDVt5l3yfoOi2uh18Z/O3hvyaHQ39NpxVkCIG5yFs+mLq/ewFp8Bss6zmWv6ZA==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.13.4" + } + }, + "node_modules/@testing-library/user-event": { + "version": "12.7.3", + "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-12.7.3.tgz", + "integrity": "sha512-IdSHkWfbeSSJRFlldvHDWfVX0U18TbXIvLSGII+JbqkJrsflFr4OWlQIua0TvcVVJNna3BNrNvRSvpQ0yvSXlA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.12.5" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + }, + "peerDependencies": { + "@testing-library/dom": ">=7.21.4" + } + }, + "node_modules/@testing-library/user-event/node_modules/@babel/runtime": { + "version": "7.13.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.7.tgz", + "integrity": "sha512-h+ilqoX998mRVM5FtB5ijRuHUDVt5l3yfoOi2uh18Z/O3hvyaHQ39NpxVkCIG5yFs+mLq/ewFp8Bss6zmWv6ZA==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.13.4" + } + }, + "node_modules/@types/anymatch": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz", + "integrity": "sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA==", + "license": "MIT" + }, + "node_modules/@types/aria-query": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-4.2.1.tgz", + "integrity": "sha512-S6oPal772qJZHoRZLFc/XoZW2gFvwXusYUmXPXkgxJLuEk2vOt7jc4Yo6z/vtI0EBkbPBVrJJ0B+prLIKiWqHg==", + "license": "MIT" + }, + "node_modules/@types/babel__core": { + "version": "7.1.12", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.12.tgz", + "integrity": "sha512-wMTHiiTiBAAPebqaPiPDLFA4LYPKr6Ph0Xq/6rq1Ur3v66HXyG+clfR9CNETkD7MQS8ZHvpQOtA53DLws5WAEQ==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.2.tgz", + "integrity": "sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.0.tgz", + "integrity": "sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A==", + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.0.tgz", + "integrity": "sha512-kSjgDMZONiIfSH1Nxcr5JIRMwUetDki63FSQfpTCz8ogF3Ulqm8+mr5f78dUYs6vMiB6gBusQqfQmBvHZj/lwg==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.3.0" + } + }, + "node_modules/@types/eslint": { + "version": "7.2.6", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.2.6.tgz", + "integrity": "sha512-I+1sYH+NPQ3/tVqCeUSBwTE/0heyvtXqpIopUUArlBm0Kpocb8FbMa3AZ/ASKIFpN3rnEx932TTXDbt9OXsNDw==", + "license": "MIT", + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/estree": { + "version": "0.0.46", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.46.tgz", + "integrity": "sha512-laIjwTQaD+5DukBZaygQ79K1Z0jb1bPEMRrkXSLjtCcZm+abyp5YbrqpSLzD42FwWW6gK/aS4NYpJ804nG2brg==", + "license": "MIT" + }, + "node_modules/@types/glob": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz", + "integrity": "sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==", + "license": "MIT", + "dependencies": { + "@types/minimatch": "*", + "@types/node": "*" + } + }, + "node_modules/@types/glob/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", + "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/graceful-fs/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/@types/history": { + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.8.tgz", + "integrity": "sha512-S78QIYirQcUoo6UJZx9CSP0O2ix9IaeAXwQi26Rhr/+mg7qqPy8TzaxHSUut7eGjL8WmLccT7/MXf304WjqHcA==" + }, + "node_modules/@types/html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-giAlZwstKbmvMk1OO7WXSj4OZ0keXAcl2TQq4LWHiiPH2ByaH7WeUzng+Qej8UPxxv+8lRTuouo0iaNDBuzIBA==", + "license": "MIT" + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", + "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==", + "license": "MIT" + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz", + "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==", + "license": "MIT", + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/jest": { + "version": "26.0.20", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-26.0.20.tgz", + "integrity": "sha512-9zi2Y+5USJRxd0FsahERhBwlcvFh6D2GLQnY2FH2BzK8J9s9omvNHIbvABwIluXa0fD8XVKMLTO0aOEuUfACAA==", + "license": "MIT", + "dependencies": { + "jest-diff": "^26.0.0", + "pretty-format": "^26.0.0" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz", + "integrity": "sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==", + "license": "MIT" + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=", + "license": "MIT" + }, + "node_modules/@types/minimatch": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", + "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==", + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "12.20.4", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.4.tgz", + "integrity": "sha512-xRCgeE0Q4pT5UZ189TJ3SpYuX/QGl6QIAOAIeDSbAVAd2gX1NxSZup4jNVK7cxIeP8KDSbJgcckun495isP1jQ==", + "license": "MIT" + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==", + "license": "MIT" + }, + "node_modules/@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "license": "MIT" + }, + "node_modules/@types/prettier": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.2.1.tgz", + "integrity": "sha512-DxZZbyMAM9GWEzXL+BMZROWz9oo6A9EilwwOMET2UVu2uZTqMWS5S69KVtuVKaRjCUpcrOXRalet86/OpG4kqw==", + "license": "MIT" + }, + "node_modules/@types/prop-types": { + "version": "15.7.3", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz", + "integrity": "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==", + "license": "MIT" + }, + "node_modules/@types/q": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz", + "integrity": "sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==", + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.2.tgz", + "integrity": "sha512-Xt40xQsrkdvjn1EyWe1Bc0dJLcil/9x2vAuW7ya+PuQip4UYUaXyhzWmAbwRsdMgwOFHpfp7/FFZebDU6Y8VHA==", + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.1.tgz", + "integrity": "sha512-yIVyopxQb8IDZ7SOHeTovurFq+fXiPICa+GV3gp0Xedsl+MwQlMLKmvrnEjFbQxjliH5YVAEWFh975eVNmKj7Q==", + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/react-router": { + "version": "5.1.11", + "resolved": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.11.tgz", + "integrity": "sha512-ofHbZMlp0Y2baOHgsWBQ4K3AttxY61bDMkwTiBOkPg7U6C/3UwwB5WaIx28JmSVi/eX3uFEMRo61BV22fDQIvg==", + "dependencies": { + "@types/history": "*", + "@types/react": "*" + } + }, + "node_modules/@types/react-router-dom": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.1.7.tgz", + "integrity": "sha512-D5mHD6TbdV/DNHYsnwBTv+y73ei+mMjrkGrla86HthE4/PVvL1J94Bu3qABU+COXzpL23T1EZapVVpwHuBXiUg==", + "dependencies": { + "@types/history": "*", + "@types/react": "*", + "@types/react-router": "*" + } + }, + "node_modules/@types/react-transition-group": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.1.tgz", + "integrity": "sha512-vIo69qKKcYoJ8wKCJjwSgCTM+z3chw3g18dkrDfVX665tMH7tmbDxEAnPdey4gTlwZz5QuHGzd+hul0OVZDqqQ==", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@types/resolve": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz", + "integrity": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==", + "license": "MIT", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/resolve/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/@types/source-list-map": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==", + "license": "MIT" + }, + "node_modules/@types/stack-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz", + "integrity": "sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==", + "license": "MIT" + }, + "node_modules/@types/tapable": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.6.tgz", + "integrity": "sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==", + "license": "MIT" + }, + "node_modules/@types/testing-library__jest-dom": { + "version": "5.9.5", + "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.9.5.tgz", + "integrity": "sha512-ggn3ws+yRbOHog9GxnXiEZ/35Mow6YtPZpd7Z5mKDeZS/o7zx3yAle0ov/wjhVB5QT4N2Dt+GNoGCdqkBGCajQ==", + "license": "MIT", + "dependencies": { + "@types/jest": "*" + } + }, + "node_modules/@types/uglify-js": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.12.0.tgz", + "integrity": "sha512-sYAF+CF9XZ5cvEBkI7RtrG9g2GtMBkviTnBxYYyq+8BWvO4QtXfwwR6a2LFwCi4evMKZfpv6U43ViYvv17Wz3Q==", + "license": "MIT", + "dependencies": { + "source-map": "^0.6.1" + } + }, + "node_modules/@types/webpack": { + "version": "4.41.26", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.26.tgz", + "integrity": "sha512-7ZyTfxjCRwexh+EJFwRUM+CDB2XvgHl4vfuqf1ZKrgGvcS5BrNvPQqJh3tsZ0P6h6Aa1qClVHaJZszLPzpqHeA==", + "license": "MIT", + "dependencies": { + "@types/anymatch": "*", + "@types/node": "*", + "@types/tapable": "*", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "source-map": "^0.6.0" + } + }, + "node_modules/@types/webpack-sources": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-2.1.0.tgz", + "integrity": "sha512-LXn/oYIpBeucgP1EIJbKQ2/4ZmpvRl+dlrFdX7+94SKRUV3Evy3FsfMZY318vGhkWUS5MPhtOM3w1/hCOAOXcg==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + } + }, + "node_modules/@types/webpack-sources/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/@types/webpack-sources/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@types/webpack/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/@types/yargs": { + "version": "15.0.13", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.13.tgz", + "integrity": "sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ==", + "license": "MIT", + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "20.2.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.0.tgz", + "integrity": "sha512-37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA==", + "license": "MIT" + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "4.15.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.15.2.tgz", + "integrity": "sha512-uiQQeu9tWl3f1+oK0yoAv9lt/KXO24iafxgQTkIYO/kitruILGx3uH+QtIAHqxFV+yIsdnJH+alel9KuE3J15Q==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/experimental-utils": "4.15.2", + "@typescript-eslint/scope-manager": "4.15.2", + "debug": "^4.1.1", + "functional-red-black-tree": "^1.0.1", + "lodash": "^4.17.15", + "regexpp": "^3.0.0", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^4.0.0", + "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "4.15.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.15.2.tgz", + "integrity": "sha512-Fxoshw8+R5X3/Vmqwsjc8nRO/7iTysRtDqx6rlfLZ7HbT8TZhPeQqbPjTyk2RheH3L8afumecTQnUc9EeXxohQ==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/scope-manager": "4.15.2", + "@typescript-eslint/types": "4.15.2", + "@typescript-eslint/typescript-estree": "4.15.2", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "4.15.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.15.2.tgz", + "integrity": "sha512-SHeF8xbsC6z2FKXsaTb1tBCf0QZsjJ94H6Bo51Y1aVEZ4XAefaw5ZAilMoDPlGghe+qtq7XdTiDlGfVTOmvA+Q==", + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/scope-manager": "4.15.2", + "@typescript-eslint/types": "4.15.2", + "@typescript-eslint/typescript-estree": "4.15.2", + "debug": "^4.1.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^5.0.0 || ^6.0.0 || ^7.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "4.15.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.15.2.tgz", + "integrity": "sha512-Zm0tf/MSKuX6aeJmuXexgdVyxT9/oJJhaCkijv0DvJVT3ui4zY6XYd6iwIo/8GEZGy43cd7w1rFMiCLHbRzAPQ==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "4.15.2", + "@typescript-eslint/visitor-keys": "4.15.2" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/types": { + "version": "4.15.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.15.2.tgz", + "integrity": "sha512-r7lW7HFkAarfUylJ2tKndyO9njwSyoy6cpfDKWPX6/ctZA+QyaYscAHXVAfJqtnY6aaTwDYrOhp+ginlbc7HfQ==", + "license": "MIT", + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "4.15.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.15.2.tgz", + "integrity": "sha512-cGR8C2g5SPtHTQvAymEODeqx90pJHadWsgTtx6GbnTWKqsg7yp6Eaya9nFzUd4KrKhxdYTTFBiYeTPQaz/l8bw==", + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/types": "4.15.2", + "@typescript-eslint/visitor-keys": "4.15.2", + "debug": "^4.1.1", + "globby": "^11.0.1", + "is-glob": "^4.0.1", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "4.15.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.15.2.tgz", + "integrity": "sha512-TME1VgSb7wTwgENN5KVj4Nqg25hP8DisXxNBojM4Nn31rYaNDIocNm5cmjOFfh42n7NVERxWrDFoETO/76ePyg==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "4.15.2", + "eslint-visitor-keys": "^2.0.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz", + "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==", + "license": "Apache-2.0", + "engines": { + "node": ">=10" + } + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "node_modules/@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==", + "license": "ISC" + }, + "node_modules/@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.9.0" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "license": "MIT", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "license": "MIT", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==", + "license": "MIT" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "license": "BSD-3-Clause" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "license": "Apache-2.0" + }, + "node_modules/abab": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", + "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==", + "license": "BSD-3-Clause" + }, + "node_modules/accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "license": "MIT", + "dependencies": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "license": "MIT", + "dependencies": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz", + "integrity": "sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==", + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/address": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz", + "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==", + "license": "MIT", + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/adjust-sourcemap-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-3.0.0.tgz", + "integrity": "sha512-YBrGyT2/uVQ/c6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E/ri63RYyG1IacMZtqw==", + "license": "MIT", + "dependencies": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + }, + "engines": { + "node": ">=8.9" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "license": "MIT", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "license": "MIT", + "peerDependencies": { + "ajv": ">=5.0.0" + } + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "license": "MIT", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=", + "license": "MIT" + }, + "node_modules/ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz", + "integrity": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.11.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz", + "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-html": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", + "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=", + "engines": [ + "node >= 0.8.0" + ], + "license": "Apache-2.0", + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/ansi-styles/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "license": "ISC", + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/anymatch/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/anymatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/anymatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/anymatch/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/anymatch/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "license": "MIT", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "license": "MIT", + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "license": "ISC" + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/aria-query": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", + "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", + "license": "Apache-2.0", + "dependencies": { + "@babel/runtime": "^7.10.2", + "@babel/runtime-corejs3": "^7.10.2" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/arity-n": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arity-n/-/arity-n-1.0.4.tgz", + "integrity": "sha1-2edrEXM+CFacCEeuezmyhgswt0U=", + "license": "MIT" + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "license": "MIT" + }, + "node_modules/array-includes": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.3.tgz", + "integrity": "sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2", + "get-intrinsic": "^1.1.1", + "is-string": "^1.0.5" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz", + "integrity": "sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz", + "integrity": "sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1", + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arrify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=", + "license": "MIT" + }, + "node_modules/asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "license": "MIT", + "dependencies": { + "safer-buffer": "~2.1.0" + } + }, + "node_modules/asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "license": "MIT", + "dependencies": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "license": "MIT", + "dependencies": { + "object-assign": "^4.1.1", + "util": "0.10.3" + } + }, + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/assert/node_modules/inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", + "license": "ISC" + }, + "node_modules/assert/node_modules/util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "license": "MIT", + "dependencies": { + "inherits": "2.0.1" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=", + "license": "ISC" + }, + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/async": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.14" + } + }, + "node_modules/async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", + "license": "MIT" + }, + "node_modules/async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "license": "MIT" + }, + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "license": "MIT" + }, + "node_modules/at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", + "license": "ISC", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "license": "(MIT OR Apache-2.0)", + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/autoprefixer": { + "version": "9.8.6", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz", + "integrity": "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "colorette": "^1.2.1", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + }, + "node_modules/autoprefixer/node_modules/postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==", + "license": "MIT" + }, + "node_modules/aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "license": "Apache-2.0", + "engines": { + "node": "*" + } + }, + "node_modules/aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==", + "license": "MIT" + }, + "node_modules/axe-core": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.1.2.tgz", + "integrity": "sha512-V+Nq70NxKhYt89ArVcaNL9FDryB3vQOd+BFXZIfO3RP6rwtj+2yqqqdHEkacutglPaZLkJeuXKCjCJDMGPtPqg==", + "license": "MPL-2.0", + "engines": { + "node": ">=4" + } + }, + "node_modules/axobject-query": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", + "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==", + "license": "Apache-2.0" + }, + "node_modules/babel-eslint": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", + "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.7.0", + "@babel/traverse": "^7.7.0", + "@babel/types": "^7.7.0", + "eslint-visitor-keys": "^1.0.0", + "resolve": "^1.12.0" + }, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "eslint": ">= 4.12.1" + } + }, + "node_modules/babel-extract-comments": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz", + "integrity": "sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==", + "license": "MIT", + "dependencies": { + "babylon": "^6.18.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/babel-jest": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz", + "integrity": "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==", + "license": "MIT", + "dependencies": { + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/babel__core": "^7.1.7", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-jest/node_modules/@babel/core": { + "version": "7.12.3", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.1", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.1", + "@babel/parser": "^7.12.3", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.12.1", + "@babel/types": "^7.12.1", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/babel-jest/node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-jest/node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-jest/node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-jest/node_modules/babel-preset-jest": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz", + "integrity": "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==", + "license": "MIT", + "dependencies": { + "babel-plugin-jest-hoist": "^26.6.2", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": ">= 10.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-jest/node_modules/json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "license": "MIT", + "peer": true, + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/babel-jest/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "license": "BSD-3-Clause", + "peer": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "license": "MIT", + "dependencies": { + "object.assign": "^4.1.0" + } + }, + "node_modules/babel-plugin-emotion": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-10.2.2.tgz", + "integrity": "sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==", + "dependencies": { + "@babel/helper-module-imports": "^7.0.0", + "@emotion/hash": "0.8.0", + "@emotion/memoize": "0.7.4", + "@emotion/serialize": "^0.11.16", + "babel-plugin-macros": "^2.0.0", + "babel-plugin-syntax-jsx": "^6.18.0", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^1.0.5", + "find-root": "^1.1.0", + "source-map": "^0.5.7" + } + }, + "node_modules/babel-plugin-emotion/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/babel-plugin-emotion/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz", + "integrity": "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^4.0.0", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz", + "integrity": "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==", + "license": "MIT", + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/babel-plugin-macros": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", + "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.7.2", + "cosmiconfig": "^6.0.0", + "resolve": "^1.12.0" + } + }, + "node_modules/babel-plugin-macros/node_modules/cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "license": "MIT", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-styled-components": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-1.12.0.tgz", + "integrity": "sha512-FEiD7l5ZABdJPpLssKXjBUJMYqzbcNzBowfXDCdJhOpbhWiewapUaY+LZGT8R4Jg2TwOjGjG4RKeyrO5p9sBkA==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.0.0", + "@babel/helper-module-imports": "^7.0.0", + "babel-plugin-syntax-jsx": "^6.18.0", + "lodash": "^4.17.11" + }, + "peerDependencies": { + "styled-components": ">= 2" + } + }, + "node_modules/babel-plugin-syntax-jsx": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", + "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=" + }, + "node_modules/babel-plugin-syntax-object-rest-spread": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz", + "integrity": "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=", + "license": "MIT" + }, + "node_modules/babel-plugin-transform-object-rest-spread": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz", + "integrity": "sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=", + "license": "MIT", + "dependencies": { + "babel-plugin-syntax-object-rest-spread": "^6.8.0", + "babel-runtime": "^6.26.0" + } + }, + "node_modules/babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==", + "license": "MIT" + }, + "node_modules/babel-preset-react-app": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.0.tgz", + "integrity": "sha512-itL2z8v16khpuKutx5IH8UdCdSTuzrOhRFTEdIhveZ2i1iBKDrVE0ATa4sFVy+02GLucZNVBWtoarXBy0Msdpg==", + "license": "MIT", + "dependencies": { + "@babel/core": "7.12.3", + "@babel/plugin-proposal-class-properties": "7.12.1", + "@babel/plugin-proposal-decorators": "7.12.1", + "@babel/plugin-proposal-nullish-coalescing-operator": "7.12.1", + "@babel/plugin-proposal-numeric-separator": "7.12.1", + "@babel/plugin-proposal-optional-chaining": "7.12.1", + "@babel/plugin-transform-flow-strip-types": "7.12.1", + "@babel/plugin-transform-react-display-name": "7.12.1", + "@babel/plugin-transform-runtime": "7.12.1", + "@babel/preset-env": "7.12.1", + "@babel/preset-react": "7.12.1", + "@babel/preset-typescript": "7.12.1", + "@babel/runtime": "7.12.1", + "babel-plugin-macros": "2.8.0", + "babel-plugin-transform-react-remove-prop-types": "0.4.24" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/core": { + "version": "7.12.3", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz", + "integrity": "sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.1", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.1", + "@babel/parser": "^7.12.3", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.12.1", + "@babel/types": "^7.12.1", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz", + "integrity": "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-proposal-decorators": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.12.1.tgz", + "integrity": "sha512-knNIuusychgYN8fGJHONL0RbFxLGawhXOJNLBk75TniTsZZeA+wdkDuv6wp4lGwzQEKjZi6/WYtnb3udNPmQmQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-decorators": "^7.12.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz", + "integrity": "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz", + "integrity": "sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz", + "integrity": "sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1", + "@babel/plugin-syntax-optional-chaining": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-syntax-decorators": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.12.13.tgz", + "integrity": "sha512-Rw6aIXGuqDLr6/LoBBYE57nKOzQpz/aDkKlMqEwH+Vp0MXbG6H/TfRjaY343LKxzAKAMXIHsQ8JzaZKuDZ9MwA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-syntax-flow": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.12.13.tgz", + "integrity": "sha512-J/RYxnlSLXZLVR7wTRsozxKT8qbsx1mNKJzXEEjQ0Kjx1ZACcyHgbanNWNCFtc36IzuWhYWPpvJFFoexoOWFmA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-syntax-typescript": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.13.tgz", + "integrity": "sha512-cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-transform-flow-strip-types": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.12.1.tgz", + "integrity": "sha512-8hAtkmsQb36yMmEtk2JZ9JnVyDSnDOdlB+0nEGzIDLuK4yR3JcEjfuFPYkdEPSh8Id+rAMeBEn+X0iVEyho6Hg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-flow": "^7.12.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz", + "integrity": "sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.17.tgz", + "integrity": "sha512-mwaVNcXV+l6qJOuRhpdTEj8sT/Z0owAVWf9QujTZ0d2ye9X/K+MTOTSizcgKOj18PGnTc/7g1I4+cIUjsKhBcw==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.12.13", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-jsx": "^7.12.13", + "@babel/types": "^7.12.17" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.17.tgz", + "integrity": "sha512-BPjYV86SVuOaudFhsJR1zjgxxOhJDt6JHNoD48DxWEIxUCAMjV1ys6DYw4SDYZh0b1QsS2vfIA9t/ZsQGsDOUQ==", + "license": "MIT", + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.12.17" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-transform-react-jsx-development/node_modules/@babel/core": { + "version": "7.12.17", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.12.17", + "@babel/helper-module-transforms": "^7.12.17", + "@babel/helpers": "^7.12.17", + "@babel/parser": "^7.12.17", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.13.tgz", + "integrity": "sha512-FXYw98TTJ125GVCCkFLZXlZ1qGcsYqNQhVBQcZjyrwf8FEUtVfKIoidnO8S0q+KBQpDYNTmiGo1gn67Vti04lQ==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.13.tgz", + "integrity": "sha512-O5JJi6fyfih0WfDgIJXksSPhGP/G0fQpfxYy87sDc+1sFmsCS6wr3aAn+whbzkhbjtq4VMqLRaSzR6IsshIC0Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-transform-react-jsx/node_modules/@babel/core": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.17.tgz", + "integrity": "sha512-V3CuX1aBywbJvV2yzJScRxeiiw0v2KZZYYE3giywxzFJL13RiyPjaaDwhDnxmgFTTS7FgvM2ijr4QmKNIu0AtQ==", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.12.17", + "@babel/helper-module-transforms": "^7.12.17", + "@babel/helpers": "^7.12.17", + "@babel/parser": "^7.12.17", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-transform-react-jsx/node_modules/@babel/plugin-syntax-jsx": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz", + "integrity": "sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-transform-react-pure-annotations": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz", + "integrity": "sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==", + "license": "MIT", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-transform-react-pure-annotations/node_modules/@babel/core": { + "version": "7.12.17", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.12.17", + "@babel/helper-module-transforms": "^7.12.17", + "@babel/helpers": "^7.12.17", + "@babel/parser": "^7.12.17", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-transform-runtime": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.1.tgz", + "integrity": "sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4", + "resolve": "^1.8.1", + "semver": "^5.5.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/plugin-transform-typescript": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.12.17.tgz", + "integrity": "sha512-1bIYwnhRoetxkFonuZRtDZPFEjl1l5r+3ITkxLC3mlMaFja+GQFo94b/WHEPjqWLU9Bc+W4oFZbvCGe9eYMu1g==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.12.17", + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-typescript": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/preset-env": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.1.tgz", + "integrity": "sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg==", + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.12.1", + "@babel/helper-compilation-targets": "^7.12.1", + "@babel/helper-module-imports": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-validator-option": "^7.12.1", + "@babel/plugin-proposal-async-generator-functions": "^7.12.1", + "@babel/plugin-proposal-class-properties": "^7.12.1", + "@babel/plugin-proposal-dynamic-import": "^7.12.1", + "@babel/plugin-proposal-export-namespace-from": "^7.12.1", + "@babel/plugin-proposal-json-strings": "^7.12.1", + "@babel/plugin-proposal-logical-assignment-operators": "^7.12.1", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", + "@babel/plugin-proposal-numeric-separator": "^7.12.1", + "@babel/plugin-proposal-object-rest-spread": "^7.12.1", + "@babel/plugin-proposal-optional-catch-binding": "^7.12.1", + "@babel/plugin-proposal-optional-chaining": "^7.12.1", + "@babel/plugin-proposal-private-methods": "^7.12.1", + "@babel/plugin-proposal-unicode-property-regex": "^7.12.1", + "@babel/plugin-syntax-async-generators": "^7.8.0", + "@babel/plugin-syntax-class-properties": "^7.12.1", + "@babel/plugin-syntax-dynamic-import": "^7.8.0", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.0", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.0", + "@babel/plugin-syntax-top-level-await": "^7.12.1", + "@babel/plugin-transform-arrow-functions": "^7.12.1", + "@babel/plugin-transform-async-to-generator": "^7.12.1", + "@babel/plugin-transform-block-scoped-functions": "^7.12.1", + "@babel/plugin-transform-block-scoping": "^7.12.1", + "@babel/plugin-transform-classes": "^7.12.1", + "@babel/plugin-transform-computed-properties": "^7.12.1", + "@babel/plugin-transform-destructuring": "^7.12.1", + "@babel/plugin-transform-dotall-regex": "^7.12.1", + "@babel/plugin-transform-duplicate-keys": "^7.12.1", + "@babel/plugin-transform-exponentiation-operator": "^7.12.1", + "@babel/plugin-transform-for-of": "^7.12.1", + "@babel/plugin-transform-function-name": "^7.12.1", + "@babel/plugin-transform-literals": "^7.12.1", + "@babel/plugin-transform-member-expression-literals": "^7.12.1", + "@babel/plugin-transform-modules-amd": "^7.12.1", + "@babel/plugin-transform-modules-commonjs": "^7.12.1", + "@babel/plugin-transform-modules-systemjs": "^7.12.1", + "@babel/plugin-transform-modules-umd": "^7.12.1", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.1", + "@babel/plugin-transform-new-target": "^7.12.1", + "@babel/plugin-transform-object-super": "^7.12.1", + "@babel/plugin-transform-parameters": "^7.12.1", + "@babel/plugin-transform-property-literals": "^7.12.1", + "@babel/plugin-transform-regenerator": "^7.12.1", + "@babel/plugin-transform-reserved-words": "^7.12.1", + "@babel/plugin-transform-shorthand-properties": "^7.12.1", + "@babel/plugin-transform-spread": "^7.12.1", + "@babel/plugin-transform-sticky-regex": "^7.12.1", + "@babel/plugin-transform-template-literals": "^7.12.1", + "@babel/plugin-transform-typeof-symbol": "^7.12.1", + "@babel/plugin-transform-unicode-escapes": "^7.12.1", + "@babel/plugin-transform-unicode-regex": "^7.12.1", + "@babel/preset-modules": "^0.1.3", + "@babel/types": "^7.12.1", + "core-js-compat": "^3.6.2", + "semver": "^5.5.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.13.tgz", + "integrity": "sha512-8SCJ0Ddrpwv4T7Gwb33EmW1V9PY5lggTO+A8WjyIwxrSHDUyBw4MtF96ifn1n8H806YlxbVCoKXbbmzD6RD+cA==", + "license": "MIT", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-class-properties/node_modules/@babel/core": { + "version": "7.12.17", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.12.17", + "@babel/helper-module-transforms": "^7.12.17", + "@babel/helpers": "^7.12.17", + "@babel/parser": "^7.12.17", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.13.tgz", + "integrity": "sha512-Qoxpy+OxhDBI5kRqliJFAl4uWXk3Bn24WeFstPH0iLymFehSAUR8MHpqU7njyXv/qbo7oN6yTy5bfCmXdKpo1Q==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-nullish-coalescing-operator/node_modules/@babel/core": { + "version": "7.12.17", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.12.17", + "@babel/helper-module-transforms": "^7.12.17", + "@babel/helpers": "^7.12.17", + "@babel/parser": "^7.12.17", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-numeric-separator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz", + "integrity": "sha512-O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-numeric-separator/node_modules/@babel/core": { + "version": "7.12.17", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.12.17", + "@babel/helper-module-transforms": "^7.12.17", + "@babel/helpers": "^7.12.17", + "@babel/parser": "^7.12.17", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.17.tgz", + "integrity": "sha512-TvxwI80pWftrGPKHNfkvX/HnoeSTR7gC4ezWnAL39PuktYUe6r8kEpOLTYnkBTsaoeazXm2jHJ22EQ81sdgfcA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1", + "@babel/plugin-syntax-optional-chaining": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-optional-chaining/node_modules/@babel/core": { + "version": "7.12.17", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.12.17", + "@babel/helper-module-transforms": "^7.12.17", + "@babel/helpers": "^7.12.17", + "@babel/parser": "^7.12.17", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/preset-react": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.1.tgz", + "integrity": "sha512-euCExymHCi0qB9u5fKw7rvlw7AZSjw/NaB9h7EkdTt5+yHRrXdiRTh7fkG3uBPpJg82CqLfp1LHLqWGSCrab+g==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-transform-react-display-name": "^7.12.1", + "@babel/plugin-transform-react-jsx": "^7.12.1", + "@babel/plugin-transform-react-jsx-development": "^7.12.1", + "@babel/plugin-transform-react-jsx-self": "^7.12.1", + "@babel/plugin-transform-react-jsx-source": "^7.12.1", + "@babel/plugin-transform-react-pure-annotations": "^7.12.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/preset-react/node_modules/@babel/plugin-transform-react-display-name": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.13.tgz", + "integrity": "sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/preset-react/node_modules/@babel/plugin-transform-react-display-name/node_modules/@babel/core": { + "version": "7.12.17", + "license": "MIT", + "peer": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.12.17", + "@babel/helper-module-transforms": "^7.12.17", + "@babel/helpers": "^7.12.17", + "@babel/parser": "^7.12.17", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/preset-typescript": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.12.1.tgz", + "integrity": "sha512-hNK/DhmoJPsksdHuI/RVrcEws7GN5eamhi28JkO52MqIxU8Z0QpmiSOQxZHWOHV7I3P4UjHV97ay4TcamMA6Kw==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-transform-typescript": "^7.12.1" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/babel-preset-react-app/node_modules/@babel/runtime": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz", + "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.13.4" + } + }, + "node_modules/babel-preset-react-app/node_modules/json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/babel-preset-react-app/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + "license": "MIT", + "dependencies": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + } + }, + "node_modules/babel-runtime/node_modules/core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "hasInstallScript": true, + "license": "MIT" + }, + "node_modules/babel-runtime/node_modules/regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", + "license": "MIT" + }, + "node_modules/babylon": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", + "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==", + "license": "MIT", + "bin": { + "babylon": "bin/babylon.js" + } + }, + "node_modules/balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "license": "MIT" + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "license": "MIT", + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", + "license": "MIT" + }, + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "license": "BSD-3-Clause", + "dependencies": { + "tweetnacl": "^0.14.3" + } + }, + "node_modules/bfj": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz", + "integrity": "sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==", + "license": "MIT", + "dependencies": { + "bluebird": "^3.5.5", + "check-types": "^11.1.1", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "license": "MIT", + "optional": true, + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==", + "license": "MIT" + }, + "node_modules/bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==", + "license": "MIT" + }, + "node_modules/body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "license": "MIT" + }, + "node_modules/bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "license": "MIT", + "dependencies": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + } + }, + "node_modules/bonjour/node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "license": "MIT" + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=", + "license": "ISC" + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "license": "MIT", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", + "license": "MIT" + }, + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "license": "BSD-2-Clause" + }, + "node_modules/browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "license": "MIT", + "dependencies": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "license": "MIT", + "dependencies": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "node_modules/browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "license": "MIT", + "dependencies": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "license": "MIT", + "dependencies": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "node_modules/browserify-rsa/node_modules/bn.js": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.1.3.tgz", + "integrity": "sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==", + "license": "MIT" + }, + "node_modules/browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "license": "ISC", + "dependencies": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + } + }, + "node_modules/browserify-sign/node_modules/bn.js": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.1.3.tgz", + "integrity": "sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==", + "license": "MIT" + }, + "node_modules/browserify-sign/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "license": "MIT", + "dependencies": { + "pako": "~1.0.5" + } + }, + "node_modules/browserslist": { + "version": "4.16.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.3.tgz", + "integrity": "sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw==", + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001181", + "colorette": "^1.2.1", + "electron-to-chromium": "^1.3.649", + "escalade": "^3.1.1", + "node-releases": "^1.1.70" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "license": "Apache-2.0", + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "license": "MIT", + "dependencies": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "license": "MIT" + }, + "node_modules/buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", + "license": "MIT" + }, + "node_modules/buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", + "license": "MIT" + }, + "node_modules/builtin-modules": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz", + "integrity": "sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", + "license": "MIT" + }, + "node_modules/bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cacache": { + "version": "15.0.5", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.0.5.tgz", + "integrity": "sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A==", + "license": "ISC", + "dependencies": { + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.0", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/cacache/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cacache/node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "license": "MIT", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cacache/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "license": "MIT", + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "license": "MIT", + "dependencies": { + "callsites": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-callsite/node_modules/callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", + "license": "MIT", + "dependencies": { + "caller-callsite": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "license": "MIT", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelize": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz", + "integrity": "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=" + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001191", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001191.tgz", + "integrity": "sha512-xJJqzyd+7GCJXkcoBiQ1GuxEiOBCLQ0aVW9HMekifZsAVGdj5eJ4mFB9fEhSHipq9IOk/QXFJUiIr9lZT+EsGw==", + "license": "CC-BY-4.0" + }, + "node_modules/capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "license": "ISC", + "dependencies": { + "rsvp": "^4.8.4" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz", + "integrity": "sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "license": "Apache-2.0" + }, + "node_modules/chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/check-types": { + "version": "11.1.2", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.1.2.tgz", + "integrity": "sha512-tzWzvgePgLORb9/3a0YenggReLKAIb2owL03H2Xdoe5pKcUyWRSEQ8xfCar8t2SIAuEDwtmx2da1YB52YuHQMQ==", + "license": "MIT" + }, + "node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "license": "MIT", + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/chokidar/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "license": "ISC", + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/chokidar/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", + "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==", + "license": "MIT", + "dependencies": { + "tslib": "^1.9.0" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/chrome-trace-event/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "license": "0BSD" + }, + "node_modules/ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "license": "MIT" + }, + "node_modules/cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/cjs-module-lexer": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz", + "integrity": "sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==", + "license": "MIT" + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "license": "MIT", + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/clean-css": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz", + "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==", + "license": "MIT", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "node_modules/clsx": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz", + "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "license": "MIT", + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "license": "MIT", + "dependencies": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/coa/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/coa/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/coa/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", + "license": "MIT" + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "license": "MIT", + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/color/-/color-3.1.3.tgz", + "integrity": "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.1", + "color-string": "^1.5.4" + } + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "license": "MIT", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-convert/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", + "license": "MIT" + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/color-string": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz", + "integrity": "sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==", + "license": "MIT", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/colorette": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz", + "integrity": "sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==", + "license": "MIT" + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "license": "MIT", + "dependencies": { + "delayed-stream": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "license": "MIT" + }, + "node_modules/common-tags": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz", + "integrity": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==", + "license": "MIT", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "license": "MIT" + }, + "node_modules/component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "license": "MIT" + }, + "node_modules/compose-function": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/compose-function/-/compose-function-3.0.3.tgz", + "integrity": "sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8=", + "license": "MIT", + "dependencies": { + "arity-n": "^1.0.4" + } + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "license": "MIT", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "license": "MIT" + }, + "node_modules/compression/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "license": "MIT" + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "engines": [ + "node >= 0.8" + ], + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/confusing-browser-globals": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz", + "integrity": "sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==", + "license": "MIT" + }, + "node_modules/connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "license": "MIT", + "engines": { + "node": ">=0.8" + } + }, + "node_modules/console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + }, + "node_modules/constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", + "license": "MIT" + }, + "node_modules/contains-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz", + "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "license": "MIT", + "dependencies": { + "safe-buffer": "5.1.2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-disposition/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, + "node_modules/content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", + "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.1" + } + }, + "node_modules/convert-source-map/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, + "node_modules/cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "license": "MIT" + }, + "node_modules/copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "license": "ISC", + "dependencies": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + } + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/core-js": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.9.0.tgz", + "integrity": "sha512-PyFBJaLq93FlyYdsndE5VaueA9K5cNB7CGzeCj191YYLhkQM0gdZR2SKihM70oF0wdqKSKClv/tEBOpoRmdOVQ==", + "hasInstallScript": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.0.tgz", + "integrity": "sha512-YK6fwFjCOKWwGnjFUR3c544YsnA/7DoLL0ysncuOJ4pwbriAtOpvM2bygdlcXbvQCQZ7bBU9CL4t7tGl7ETRpQ==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.16.3", + "semver": "7.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat/node_modules/semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/core-js-pure": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.9.0.tgz", + "integrity": "sha512-3pEcmMZC9Cq0D4ZBh3pe2HLtqxpGNJBLXF/kZ2YzK17RbKp94w0HFbdbSx8H8kAlZG5k76hvLrkPm57Uyef+kg==", + "hasInstallScript": true, + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "license": "MIT" + }, + "node_modules/cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "license": "MIT", + "dependencies": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cosmiconfig/node_modules/import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "license": "MIT", + "dependencies": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cosmiconfig/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "license": "MIT", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "license": "MIT", + "dependencies": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + } + }, + "node_modules/create-emotion": { + "version": "10.0.27", + "resolved": "https://registry.npmjs.org/create-emotion/-/create-emotion-10.0.27.tgz", + "integrity": "sha512-fIK73w82HPPn/RsAij7+Zt8eCE8SptcJ3WoRMfxMtjteYxud8GDTKKld7MYwAX2TVhrw29uR1N/bVGxeStHILg==", + "dependencies": { + "@emotion/cache": "^10.0.27", + "@emotion/serialize": "^0.11.15", + "@emotion/sheet": "0.9.4", + "@emotion/utils": "0.11.3" + } + }, + "node_modules/create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "license": "MIT", + "dependencies": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "node_modules/create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "license": "MIT", + "dependencies": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cross-spawn/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cross-spawn/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "license": "MIT", + "dependencies": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + }, + "engines": { + "node": "*" + } + }, + "node_modules/crypto-random-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", + "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/css": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/css/-/css-3.0.0.tgz", + "integrity": "sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.4", + "source-map": "^0.6.1", + "source-map-resolve": "^0.6.0" + } + }, + "node_modules/css-blank-pseudo": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz", + "integrity": "sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.5" + }, + "bin": { + "css-blank-pseudo": "cli.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/css-color-keywords": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz", + "integrity": "sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU=", + "engines": { + "node": ">=4" + } + }, + "node_modules/css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", + "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + }, + "engines": { + "node": ">4" + } + }, + "node_modules/css-has-pseudo": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz", + "integrity": "sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^5.0.0-rc.4" + }, + "bin": { + "css-has-pseudo": "cli.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/css-loader": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-4.3.0.tgz", + "integrity": "sha512-rdezjCjScIrsL8BSYszgT4s476IcNKt6yX69t0pHjJVnPUTDpn4WfIpDQTN3wCJvUvfsz/mFjuGOekf3PY3NUg==", + "license": "MIT", + "dependencies": { + "camelcase": "^6.0.0", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^2.0.0", + "postcss": "^7.0.32", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.3", + "postcss-modules-scope": "^2.2.0", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^2.7.1", + "semver": "^7.3.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.27.0 || ^5.0.0" + } + }, + "node_modules/css-loader/node_modules/camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/css-loader/node_modules/postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==", + "license": "MIT" + }, + "node_modules/css-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/css-loader/node_modules/semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/css-prefers-color-scheme": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz", + "integrity": "sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.5" + }, + "bin": { + "css-prefers-color-scheme": "cli.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "node_modules/css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==", + "license": "MIT" + }, + "node_modules/css-to-react-native": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.0.0.tgz", + "integrity": "sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==", + "dependencies": { + "camelize": "^1.0.0", + "css-color-keywords": "^1.0.0", + "postcss-value-parser": "^4.0.2" + } + }, + "node_modules/css-to-react-native/node_modules/postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" + }, + "node_modules/css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/css-vendor": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/css-vendor/-/css-vendor-2.0.8.tgz", + "integrity": "sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==", + "dependencies": { + "@babel/runtime": "^7.8.3", + "is-in-browser": "^1.0.2" + } + }, + "node_modules/css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==", + "license": "BSD-2-Clause", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=", + "license": "MIT" + }, + "node_modules/css/node_modules/source-map-resolve": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.6.0.tgz", + "integrity": "sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==", + "license": "MIT", + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0" + } + }, + "node_modules/cssdb": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-4.4.0.tgz", + "integrity": "sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==", + "license": "CC0-1.0" + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "4.1.10", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz", + "integrity": "sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==", + "license": "MIT", + "dependencies": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.7", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-preset-default": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz", + "integrity": "sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA==", + "license": "MIT", + "dependencies": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.2", + "postcss-unique-selectors": "^4.0.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", + "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", + "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", + "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", + "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "license": "MIT", + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.2.tgz", + "integrity": "sha512-wCoWush5Aeo48GLhfHPbmvZs59Z+M7k5+B1xDnXbdWNcEF423DoFdqSWE0PM5aNk5nI5cp1q7ms36zGApY/sKQ==", + "license": "MIT", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==", + "license": "CC0-1.0" + }, + "node_modules/cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", + "license": "MIT" + }, + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "license": "MIT", + "dependencies": { + "cssom": "~0.3.6" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "license": "MIT" + }, + "node_modules/csstype": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", + "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==", + "license": "MIT" + }, + "node_modules/cyclist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", + "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=", + "license": "MIT" + }, + "node_modules/d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "license": "ISC", + "dependencies": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" + } + }, + "node_modules/damerau-levenshtein": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz", + "integrity": "sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug==", + "license": "BSD-2-Clause" + }, + "node_modules/dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "license": "MIT", + "dependencies": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/date-fns": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.19.0.tgz", + "integrity": "sha512-X3bf2iTPgCAQp9wvjOQytnf5vO5rESYRXlPIVcgSbtT5OTScPcsf9eZU+B/YIkKAtYr5WeCii58BgATrNitlWg==", + "engines": { + "node": ">=0.11" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/date-fns" + } + }, + "node_modules/debug": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "license": "MIT", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decimal.js": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz", + "integrity": "sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==", + "license": "MIT" + }, + "node_modules/decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "license": "MIT", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=", + "license": "MIT" + }, + "node_modules/deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "license": "MIT", + "dependencies": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "license": "MIT" + }, + "node_modules/deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "license": "BSD-2-Clause", + "dependencies": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "license": "MIT", + "dependencies": { + "object-keys": "^1.0.12" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "license": "MIT", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-property/node_modules/is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "license": "MIT", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-property/node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "license": "MIT", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-property/node_modules/is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "license": "MIT", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-property/node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "license": "MIT", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-property/node_modules/is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "license": "MIT", + "dependencies": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-property/node_modules/kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "license": "MIT", + "dependencies": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/del/node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "license": "MIT", + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "license": "MIT", + "dependencies": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/del/node_modules/globby/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/des.js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "license": "MIT" + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/detect-node": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz", + "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==", + "license": "ISC" + }, + "node_modules/detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "license": "MIT", + "dependencies": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "bin": { + "detect": "bin/detect-port", + "detect-port": "bin/detect-port" + }, + "engines": { + "node": ">= 4.2.1" + } + }, + "node_modules/detect-port-alt/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/detect-port-alt/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "license": "MIT" + }, + "node_modules/diff-sequences": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz", + "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==", + "license": "MIT", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "license": "MIT", + "dependencies": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "license": "MIT", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=", + "license": "MIT" + }, + "node_modules/dns-packet": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz", + "integrity": "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==", + "license": "MIT", + "dependencies": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "license": "MIT", + "dependencies": { + "buffer-indexof": "^1.0.0" + } + }, + "node_modules/doctrine": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", + "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=", + "dependencies": { + "esutils": "^2.0.2", + "isarray": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/dom-accessibility-api": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.4.tgz", + "integrity": "sha512-TvrjBckDy2c6v6RLxPv5QXOnU+SmF9nBII5621Ve5fu6Z/BDrENurBEvlC1f44lKEUVqOpK4w9E5Idc5/EgkLQ==", + "license": "MIT" + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "license": "MIT", + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-helpers": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.0.tgz", + "integrity": "sha512-Ru5o9+V8CpunKnz5LGgWXkmrH/20cGKwcHwS4m73zIvs54CN9epEmT/HLqFJW3kXpakAFkEdzgy1hzlJe3E4OQ==", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "node_modules/dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + } + }, + "node_modules/dom-serializer/node_modules/domelementtype": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz", + "integrity": "sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/dom-serializer/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "license": "BSD-2-Clause", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "license": "MIT", + "engines": { + "node": ">=0.4", + "npm": ">=1.2" + } + }, + "node_modules/domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==", + "license": "BSD-2-Clause" + }, + "node_modules/domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "license": "MIT", + "dependencies": { + "webidl-conversions": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/domhandler": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "1" + } + }, + "node_modules/domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "license": "MIT", + "dependencies": { + "is-obj": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dot-prop/node_modules/is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/dotenv": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", + "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==", + "license": "BSD-2-Clause" + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "license": "MIT" + }, + "node_modules/duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "license": "MIT", + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "license": "MIT" + }, + "node_modules/ejs": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz", + "integrity": "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==", + "hasInstallScript": true, + "license": "Apache-2.0", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.3.671", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.671.tgz", + "integrity": "sha512-RTD97QkdrJKaKwRv9h/wGAaoR2lGxNXEcBXS31vjitgTPwTWAbLdS7cEsBK68eEQy7p6YyT8D5BxBEYHu2SuwQ==", + "license": "ISC" + }, + "node_modules/elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "license": "MIT", + "dependencies": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/emittery": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz", + "integrity": "sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/emotion": { + "version": "10.0.27", + "resolved": "https://registry.npmjs.org/emotion/-/emotion-10.0.27.tgz", + "integrity": "sha512-2xdDzdWWzue8R8lu4G76uWX5WhyQuzATon9LmNeCy/2BHVC6dsEpfhN1a0qhELgtDVdjyEA6J8Y/VlI5ZnaH0g==", + "dependencies": { + "babel-plugin-emotion": "^10.0.27", + "create-emotion": "^10.0.27" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "license": "MIT", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "dependencies": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/enhanced-resolve/node_modules/memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "license": "MIT", + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "license": "MIT", + "dependencies": { + "ansi-colors": "^4.1.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/enquirer/node_modules/ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==", + "license": "BSD-2-Clause" + }, + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "license": "MIT", + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz", + "integrity": "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==", + "license": "MIT", + "dependencies": { + "stackframe": "^1.1.1" + } + }, + "node_modules/es-abstract": { + "version": "1.18.0-next.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.2.tgz", + "integrity": "sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2", + "has": "^1.0.3", + "has-symbols": "^1.0.1", + "is-callable": "^1.2.2", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.1", + "object-inspect": "^1.9.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.3", + "string.prototype.trimstart": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "license": "MIT", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es5-ext": { + "version": "0.10.53", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", + "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", + "license": "ISC", + "dependencies": { + "es6-iterator": "~2.0.3", + "es6-symbol": "~3.1.3", + "next-tick": "~1.0.0" + } + }, + "node_modules/es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", + "license": "MIT", + "dependencies": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "node_modules/es6-symbol": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "license": "ISC", + "dependencies": { + "d": "^1.0.1", + "ext": "^1.1.2" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "license": "MIT" + }, + "node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "license": "BSD-2-Clause", + "dependencies": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" + }, + "engines": { + "node": ">=4.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" + } + }, + "node_modules/escodegen/node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "license": "MIT", + "dependencies": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/escodegen/node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "license": "MIT", + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/eslint": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.20.0.tgz", + "integrity": "sha512-qGi0CTcOGP2OtCQBgWZlQjcTuP0XkIpYFj25XtRTQSHC+umNnp7UMshr2G8SLsRFYDdAPFeHOsiteadmMH02Yw==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.3.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "file-entry-cache": "^6.0.0", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash": "^4.17.20", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.4", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-react-app": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-6.0.0.tgz", + "integrity": "sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==", + "license": "MIT", + "dependencies": { + "confusing-browser-globals": "^1.0.10" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^4.0.0", + "@typescript-eslint/parser": "^4.0.0", + "babel-eslint": "^10.0.0", + "eslint": "^7.5.0", + "eslint-plugin-flowtype": "^5.2.0", + "eslint-plugin-import": "^2.22.0", + "eslint-plugin-jest": "^24.0.0", + "eslint-plugin-jsx-a11y": "^6.3.1", + "eslint-plugin-react": "^7.20.3", + "eslint-plugin-react-hooks": "^4.0.8", + "eslint-plugin-testing-library": "^3.9.0" + }, + "peerDependenciesMeta": { + "eslint-plugin-jest": { + "optional": true + }, + "eslint-plugin-testing-library": { + "optional": true + } + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz", + "integrity": "sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==", + "license": "MIT", + "dependencies": { + "debug": "^2.6.9", + "resolve": "^1.13.1" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "license": "MIT" + }, + "node_modules/eslint-module-utils": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz", + "integrity": "sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==", + "license": "MIT", + "dependencies": { + "debug": "^2.6.9", + "pkg-dir": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/eslint-module-utils/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "license": "MIT", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "license": "MIT", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "license": "MIT" + }, + "node_modules/eslint-module-utils/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "license": "MIT", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "license": "MIT", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-module-utils/node_modules/pkg-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", + "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", + "license": "MIT", + "dependencies": { + "find-up": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-flowtype": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.2.2.tgz", + "integrity": "sha512-C4PlPYpszr9h1cBfUbTNRI1IdxUCF0qrXAHkXS2+bESp7WUUCnvb3UBBnYlaQLvJYJ2lRz+2SPQQ/WyV7p/Tow==", + "license": "BSD-3-Clause", + "dependencies": { + "lodash": "^4.17.15", + "string-natural-compare": "^3.0.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "peerDependencies": { + "eslint": "^7.1.0" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.22.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz", + "integrity": "sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==", + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.1", + "array.prototype.flat": "^1.2.3", + "contains-path": "^0.1.0", + "debug": "^2.6.9", + "doctrine": "1.5.0", + "eslint-import-resolver-node": "^0.3.4", + "eslint-module-utils": "^2.6.0", + "has": "^1.0.3", + "minimatch": "^3.0.4", + "object.values": "^1.1.1", + "read-pkg-up": "^2.0.0", + "resolve": "^1.17.0", + "tsconfig-paths": "^3.9.0" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "license": "MIT", + "dependencies": { + "locate-path": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-import/node_modules/locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "license": "MIT", + "dependencies": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-import/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "license": "MIT" + }, + "node_modules/eslint-plugin-import/node_modules/p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "license": "MIT", + "dependencies": { + "p-try": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-import/node_modules/p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "license": "MIT", + "dependencies": { + "p-limit": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-import/node_modules/p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-import/node_modules/path-type": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", + "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", + "license": "MIT", + "dependencies": { + "pify": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-import/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-import/node_modules/read-pkg": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", + "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", + "license": "MIT", + "dependencies": { + "load-json-file": "^2.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-import/node_modules/read-pkg-up": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", + "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", + "license": "MIT", + "dependencies": { + "find-up": "^2.0.0", + "read-pkg": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-plugin-jest": { + "version": "24.1.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-24.1.5.tgz", + "integrity": "sha512-FIP3lwC8EzEG+rOs1y96cOJmMVpdFNreoDJv29B5vIupVssRi8zrSY3QadogT0K3h1Y8TMxJ6ZSAzYUmFCp2hg==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/experimental-utils": "^4.0.1" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": ">=5" + } + }, + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz", + "integrity": "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.11.2", + "aria-query": "^4.2.2", + "array-includes": "^3.1.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.0.2", + "axobject-query": "^2.2.0", + "damerau-levenshtein": "^1.0.6", + "emoji-regex": "^9.0.0", + "has": "^1.0.3", + "jsx-ast-utils": "^3.1.0", + "language-tags": "^1.0.5" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7" + } + }, + "node_modules/eslint-plugin-jsx-a11y/node_modules/emoji-regex": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.1.tgz", + "integrity": "sha512-117l1H6U4X3Krn+MrzYrL57d5H7siRHWraBs7s+LjRuFK7Fe7hJqnJ0skWlinqsycVLU5YAo6L8CsEYQ0V5prg==", + "license": "MIT" + }, + "node_modules/eslint-plugin-react": { + "version": "7.22.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.22.0.tgz", + "integrity": "sha512-p30tuX3VS+NWv9nQot9xIGAHBXR0+xJVaZriEsHoJrASGCJZDJ8JLNM0YqKqI0AKm6Uxaa1VUHoNEibxRCMQHA==", + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.1", + "array.prototype.flatmap": "^1.2.3", + "doctrine": "^2.1.0", + "has": "^1.0.3", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "object.entries": "^1.1.2", + "object.fromentries": "^2.0.2", + "object.values": "^1.1.1", + "prop-types": "^15.7.2", + "resolve": "^1.18.1", + "string.prototype.matchall": "^4.0.2" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz", + "integrity": "sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-testing-library": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-3.10.1.tgz", + "integrity": "sha512-nQIFe2muIFv2oR2zIuXE4vTbcFNx8hZKRzgHZqJg8rfopIWwoTwtlbCCNELT/jXzVe1uZF68ALGYoDXjLczKiQ==", + "license": "MIT", + "dependencies": { + "@typescript-eslint/experimental-utils": "^3.10.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0", + "npm": ">=6" + }, + "peerDependencies": { + "eslint": "^5 || ^6 || ^7" + } + }, + "node_modules/eslint-plugin-testing-library/node_modules/@typescript-eslint/experimental-utils": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz", + "integrity": "sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/typescript-estree": "3.10.1", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + } + }, + "node_modules/eslint-plugin-testing-library/node_modules/@typescript-eslint/types": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-3.10.1.tgz", + "integrity": "sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==", + "license": "MIT", + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-plugin-testing-library/node_modules/@typescript-eslint/typescript-estree": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz", + "integrity": "sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==", + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/visitor-keys": "3.10.1", + "debug": "^4.1.1", + "glob": "^7.1.6", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-testing-library/node_modules/@typescript-eslint/visitor-keys": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz", + "integrity": "sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==", + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-plugin-testing-library/node_modules/semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "license": "Apache-2.0", + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-webpack-plugin": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-2.5.2.tgz", + "integrity": "sha512-ndD9chZ/kaGnjjx7taRg7c6FK/YKb29SSYzaLtPBIYLYJQmZtuKqtQbAvTS2ymiMQT6X0VW9vZIHK0KLstv93Q==", + "license": "MIT", + "dependencies": { + "@types/eslint": "^7.2.6", + "arrify": "^2.0.1", + "jest-worker": "^26.6.2", + "micromatch": "^4.0.2", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "eslint": "^7.0.0", + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/eslint-webpack-plugin/node_modules/schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/eslint/node_modules/@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/eslint/node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "license": "Apache-2.0", + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/eslint/node_modules/eslint-visitor-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz", + "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==", + "license": "Apache-2.0", + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", + "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "license": "MIT", + "dependencies": { + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esquery/node_modules/estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz", + "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==", + "license": "MIT" + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "license": "MIT" + }, + "node_modules/events": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.2.0.tgz", + "integrity": "sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==", + "license": "MIT", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/eventsource": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.0.7.tgz", + "integrity": "sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ==", + "license": "MIT", + "dependencies": { + "original": "^1.0.0" + }, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "license": "MIT", + "dependencies": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/exec-sh": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.4.tgz", + "integrity": "sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==", + "license": "MIT" + }, + "node_modules/execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/execa/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "license": "MIT", + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/execa/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "license": "MIT", + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/execa/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "license": "MIT", + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/expand-brackets/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "license": "MIT" + }, + "node_modules/expect": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz", + "integrity": "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==", + "license": "MIT", + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-styles": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "license": "MIT" + }, + "node_modules/express/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, + "node_modules/ext": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz", + "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==", + "license": "ISC", + "dependencies": { + "type": "^2.0.0" + } + }, + "node_modules/ext/node_modules/type": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/type/-/type-2.3.0.tgz", + "integrity": "sha512-rgPIqOdfK/4J9FhiVrZ3cveAjRRo5rsQBAIhnylX874y1DX/kEKSVdLsnuHB6l1KTjHyU01VjiMBHgU2adejyg==", + "license": "ISC" + }, + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "license": "MIT" + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "license": "MIT", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "license": "MIT", + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "engines": [ + "node >=0.6.0" + ], + "license": "MIT" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "license": "MIT" + }, + "node_modules/fast-glob": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz", + "integrity": "sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.0", + "merge2": "^1.3.0", + "micromatch": "^4.0.2", + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.10.1.tgz", + "integrity": "sha512-AWuv6Ery3pM+dY7LYS8YIaCiQvUaos9OB1RyNgaOWnaX+Tik7Onvcsf8x8c+YtDeT0maYLniBip2hox5KtEXXA==", + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/faye-websocket": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", + "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", + "license": "Apache-2.0", + "dependencies": { + "websocket-driver": ">=0.5.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", + "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", + "license": "Apache-2.0", + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", + "license": "ISC" + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "license": "MIT", + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/file-loader": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.1.1.tgz", + "integrity": "sha512-Klt8C4BjWSXYQAfhpYYkG4qHNTna4toMHEbWrI5IuVoxbU6uiDKeKAP99R8mmbJi3lvewn/jQBOgU4+NS3tDQw==", + "license": "MIT", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/file-loader/node_modules/schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "license": "MIT", + "optional": true + }, + "node_modules/filesize": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.1.0.tgz", + "integrity": "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "license": "MIT", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "license": "MIT" + }, + "node_modules/find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "license": "MIT", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-cache-dir/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "license": "MIT", + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "license": "MIT", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up/node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "license": "MIT", + "dependencies": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flat-cache/node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/flatted": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz", + "integrity": "sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA==", + "license": "ISC" + }, + "node_modules/flatten": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz", + "integrity": "sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==", + "license": "MIT" + }, + "node_modules/flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "node_modules/follow-redirects": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.2.tgz", + "integrity": "sha512-6mPTgLxYm3r6Bkkg0vNM0HTjfGrOEtsfbhagQvbxDEsEkpNhw582upBaoRZylzen6krEmxXJgt9Ju6HiI4O7BA==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "license": "MIT", + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "license": "Apache-2.0", + "engines": { + "node": "*" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz", + "integrity": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.5.5", + "chalk": "^2.4.1", + "micromatch": "^3.1.10", + "minimatch": "^3.0.4", + "semver": "^5.6.0", + "tapable": "^1.0.0", + "worker-rpc": "^0.1.0" + }, + "engines": { + "node": ">=6.11.5", + "yarn": ">=1.0.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "license": "MIT", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "license": "MIT", + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 0.12" + } + }, + "node_modules/forwarded": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", + "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "license": "MIT", + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "node_modules/fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "license": "MIT", + "dependencies": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/fs-extra/node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "license": "MIT", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/fs-extra/node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "license": "MIT", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", + "license": "ISC", + "dependencies": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "license": "ISC" + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "license": "MIT" + }, + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=", + "license": "MIT" + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==", + "license": "ISC" + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "license": "MIT", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0" + } + }, + "node_modules/glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "license": "ISC", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", + "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "license": "MIT", + "dependencies": { + "global-prefix": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "license": "MIT", + "dependencies": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/global-prefix/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/globby": { + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.2.tgz", + "integrity": "sha512-2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og==", + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globby/node_modules/ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", + "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==", + "license": "ISC" + }, + "node_modules/growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", + "license": "MIT", + "optional": true + }, + "node_modules/gzip-size": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", + "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", + "license": "MIT", + "dependencies": { + "duplexer": "^0.1.1", + "pify": "^4.0.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "license": "MIT" + }, + "node_modules/har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "license": "ISC", + "engines": { + "node": ">=4" + } + }, + "node_modules/har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "license": "MIT", + "dependencies": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/harmony-reflect": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.1.tgz", + "integrity": "sha512-WJTeyp0JzGtHcuMsi7rw2VwtkvLa+JyfEKJCFyfcS0+CDkjQ5lHPu7zEhFZP+PDSRrEgXa5Ah0l1MbgbE41XjA==", + "license": "(Apache-2.0 OR MPL-1.1)" + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/has-symbols": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", + "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "license": "MIT", + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "license": "MIT", + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "license": "MIT", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hash-base/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==", + "license": "MIT" + }, + "node_modules/history": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/history/-/history-5.0.0.tgz", + "integrity": "sha512-3NyRMKIiFSJmIPdq7FxkNMJkQ7ZEtVblOQ38VtKaA0zZMW1Eo6Q6W8oDKEflr1kNNTItSnk4JMCO1deeSgbLLg==", + "dependencies": { + "@babel/runtime": "^7.7.6" + } + }, + "node_modules/hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "license": "MIT", + "dependencies": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "dependencies": { + "react-is": "^16.7.0" + } + }, + "node_modules/hoist-non-react-statics/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/hoopy": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==", + "license": "MIT", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/hosted-git-info": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz", + "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==", + "license": "ISC" + }, + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "node_modules/hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=", + "license": "MIT" + }, + "node_modules/hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=", + "license": "MIT" + }, + "node_modules/html-comment-regex": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz", + "integrity": "sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==", + "license": "MIT" + }, + "node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "license": "MIT", + "dependencies": { + "whatwg-encoding": "^1.0.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/html-entities": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==", + "license": "MIT" + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "license": "MIT" + }, + "node_modules/html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", + "license": "MIT", + "dependencies": { + "camel-case": "^4.1.1", + "clean-css": "^4.2.3", + "commander": "^4.1.1", + "he": "^1.2.0", + "param-case": "^3.0.3", + "relateurl": "^0.2.7", + "terser": "^4.6.3" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/html-minifier-terser/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/html-webpack-plugin": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.5.0.tgz", + "integrity": "sha512-MouoXEYSjTzCrjIxWwg8gxL5fE2X2WZJLmBYXlaJhQUH5K/b5OrqmV7T4dB7iu0xkmJ6JlUuV6fFVtnqbPopZw==", + "license": "MIT", + "dependencies": { + "@types/html-minifier-terser": "^5.0.0", + "@types/tapable": "^1.0.5", + "@types/webpack": "^4.41.8", + "html-minifier-terser": "^5.0.1", + "loader-utils": "^1.2.3", + "lodash": "^4.17.15", + "pretty-error": "^2.1.1", + "tapable": "^1.1.3", + "util.promisify": "1.0.0" + }, + "engines": { + "node": ">=6.9" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/html-webpack-plugin/node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/htmlparser2": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", + "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "license": "MIT", + "dependencies": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + } + }, + "node_modules/htmlparser2/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=", + "license": "MIT" + }, + "node_modules/http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "license": "MIT", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/http-errors/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "license": "ISC" + }, + "node_modules/http-parser-js": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz", + "integrity": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==", + "license": "MIT" + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "license": "MIT", + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "license": "MIT", + "dependencies": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-proxy-middleware/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "license": "MIT", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" + } + }, + "node_modules/https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", + "license": "MIT" + }, + "node_modules/human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", + "license": "Apache-2.0", + "engines": { + "node": ">=8.12.0" + } + }, + "node_modules/hyphenate-style-name": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz", + "integrity": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "license": "MIT", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz", + "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", + "license": "ISC", + "dependencies": { + "postcss": "^7.0.14" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=", + "license": "MIT", + "dependencies": { + "harmony-reflect": "^1.4.6" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=", + "license": "MIT" + }, + "node_modules/ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/immer": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/immer/-/immer-8.0.1.tgz", + "integrity": "sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "node_modules/import-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", + "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=", + "license": "MIT", + "dependencies": { + "import-from": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/import-from": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", + "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=", + "license": "MIT", + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/import-local": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz", + "integrity": "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==", + "license": "MIT", + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indefinite-observable": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/indefinite-observable/-/indefinite-observable-2.0.1.tgz", + "integrity": "sha512-G8vgmork+6H9S8lUAg1gtXEj2JxIQTo0g2PbFiYOdjkziSI0F7UYBiVwhZRuixhBCNGczAls34+5HJPyZysvxQ==", + "dependencies": { + "symbol-observable": "1.2.0" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=", + "license": "MIT" + }, + "node_modules/infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "license": "ISC" + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "license": "ISC", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "license": "ISC" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "license": "ISC" + }, + "node_modules/internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "license": "MIT", + "dependencies": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "license": "MIT", + "dependencies": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", + "license": "MIT" + }, + "node_modules/ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "license": "MIT", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-accessor-descriptor/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-arguments": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz", + "integrity": "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "license": "MIT" + }, + "node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "license": "MIT", + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "license": "MIT" + }, + "node_modules/is-callable": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", + "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "license": "MIT", + "dependencies": { + "ci-info": "^2.0.0" + }, + "bin": { + "is-ci": "bin.js" + } + }, + "node_modules/is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", + "license": "MIT", + "dependencies": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + } + }, + "node_modules/is-core-module": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz", + "integrity": "sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==", + "license": "MIT", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "license": "MIT", + "dependencies": { + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-data-descriptor/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-date-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", + "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "license": "MIT", + "dependencies": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-descriptor/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-docker": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.1.1.tgz", + "integrity": "sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==", + "license": "MIT", + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-glob": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-in-browser": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/is-in-browser/-/is-in-browser-1.1.3.tgz", + "integrity": "sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=" + }, + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=", + "license": "MIT" + }, + "node_modules/is-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", + "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "license": "MIT", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "license": "MIT", + "dependencies": { + "is-path-inside": "^2.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "license": "MIT", + "dependencies": { + "path-is-inside": "^1.0.2" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-potential-custom-element-name": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz", + "integrity": "sha1-DFLlS8yjkbssSUsh6GJtczbG45c=", + "license": "MIT" + }, + "node_modules/is-regex": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", + "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "has-symbols": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", + "license": "ISC" + }, + "node_modules/is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-string": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", + "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-svg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz", + "integrity": "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==", + "license": "MIT", + "dependencies": { + "html-comment-regex": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/is-symbol": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", + "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", + "license": "MIT", + "dependencies": { + "has-symbols": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "license": "MIT" + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "license": "MIT" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "license": "ISC" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "license": "MIT" + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz", + "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", + "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/core": "^7.7.5", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "license": "BSD-3-Clause", + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz", + "integrity": "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==", + "license": "BSD-3-Clause", + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-reports": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz", + "integrity": "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==", + "license": "BSD-3-Clause", + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "26.6.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-26.6.0.tgz", + "integrity": "sha512-jxTmrvuecVISvKFFhOkjsWRZV7sFqdSUAd1ajOKY+/QE/aLBVstsJ/dX8GczLzwiT6ZEwwmZqtCUHLHHQVzcfA==", + "license": "MIT", + "dependencies": { + "@jest/core": "^26.6.0", + "import-local": "^3.0.2", + "jest-cli": "^26.6.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-changed-files": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.6.2.tgz", + "integrity": "sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^26.6.2", + "execa": "^4.0.0", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-changed-files/node_modules/execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/jest-changed-files/node_modules/get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "license": "MIT", + "dependencies": { + "pump": "^3.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-changed-files/node_modules/is-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", + "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-changed-files/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "license": "MIT", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-changed-files/node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus": { + "version": "26.6.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-26.6.0.tgz", + "integrity": "sha512-L2/Y9szN6FJPWFK8kzWXwfp+FOR7xq0cUL4lIsdbIdwz3Vh6P1nrpcqOleSzr28zOtSHQNV9Z7Tl+KkuK7t5Ng==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^26.6.0", + "@jest/test-result": "^26.6.0", + "@jest/types": "^26.6.0", + "@types/babel__traverse": "^7.0.4", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^26.6.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^26.6.0", + "jest-matcher-utils": "^26.6.0", + "jest-message-util": "^26.6.0", + "jest-runner": "^26.6.0", + "jest-runtime": "^26.6.0", + "jest-snapshot": "^26.6.0", + "jest-util": "^26.6.0", + "pretty-format": "^26.6.0", + "stack-utils": "^2.0.2", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-circus/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/jest-cli": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-26.6.3.tgz", + "integrity": "sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==", + "license": "MIT", + "dependencies": { + "@jest/core": "^26.6.3", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "import-local": "^3.0.2", + "is-ci": "^2.0.0", + "jest-config": "^26.6.3", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "prompts": "^2.0.1", + "yargs": "^15.4.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-config": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-26.6.3.tgz", + "integrity": "sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^26.6.3", + "@jest/types": "^26.6.2", + "babel-jest": "^26.6.3", + "chalk": "^4.0.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.4", + "jest-environment-jsdom": "^26.6.2", + "jest-environment-node": "^26.6.2", + "jest-get-type": "^26.3.0", + "jest-jasmine2": "^26.6.3", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-diff": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz", + "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-docblock": { + "version": "26.0.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-26.0.0.tgz", + "integrity": "sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==", + "license": "MIT", + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-each": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-26.6.2.tgz", + "integrity": "sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==", + "license": "MIT", + "dependencies": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-util": "^26.6.2", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-environment-jsdom": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz", + "integrity": "sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==", + "license": "MIT", + "dependencies": { + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2", + "jsdom": "^16.4.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-environment-jsdom/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/jest-environment-node": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.6.2.tgz", + "integrity": "sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==", + "license": "MIT", + "dependencies": { + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-environment-node/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/jest-get-type": { + "version": "26.3.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", + "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==", + "license": "MIT", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-haste-map": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz", + "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==", + "license": "MIT", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-regex-util": "^26.0.0", + "jest-serializer": "^26.6.2", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "micromatch": "^4.0.2", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "engines": { + "node": ">= 10.14.2" + }, + "optionalDependencies": { + "fsevents": "^2.1.2" + } + }, + "node_modules/jest-haste-map/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/jest-haste-map/node_modules/anymatch": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", + "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/jest-jasmine2": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz", + "integrity": "sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==", + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^26.6.2", + "@jest/source-map": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^26.6.2", + "is-generator-fn": "^2.0.0", + "jest-each": "^26.6.2", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-runtime": "^26.6.3", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "pretty-format": "^26.6.2", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-jasmine2/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/jest-leak-detector": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz", + "integrity": "sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==", + "license": "MIT", + "dependencies": { + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-matcher-utils": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz", + "integrity": "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==", + "license": "MIT", + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-message-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz", + "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-mock": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.2.tgz", + "integrity": "sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==", + "license": "MIT", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-mock/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", + "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-pnp-resolver/node_modules/jest-resolve": { + "version": "26.6.0", + "license": "MIT", + "optional": true, + "peer": true, + "dependencies": { + "@jest/types": "^26.6.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.0", + "read-pkg-up": "^7.0.1", + "resolve": "^1.17.0", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-regex-util": { + "version": "26.0.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz", + "integrity": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==", + "license": "MIT", + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz", + "integrity": "sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==", + "license": "MIT", + "dependencies": { + "@jest/types": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-snapshot": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runner": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-26.6.3.tgz", + "integrity": "sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==", + "license": "MIT", + "dependencies": { + "@jest/console": "^26.6.2", + "@jest/environment": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.7.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-config": "^26.6.3", + "jest-docblock": "^26.0.0", + "jest-haste-map": "^26.6.2", + "jest-leak-detector": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-resolve": "^26.6.2", + "jest-runtime": "^26.6.3", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "source-map-support": "^0.5.6", + "throat": "^5.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runner/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/jest-runtime": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.6.3.tgz", + "integrity": "sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==", + "license": "MIT", + "dependencies": { + "@jest/console": "^26.6.2", + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/globals": "^26.6.2", + "@jest/source-map": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0", + "cjs-module-lexer": "^0.6.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.4", + "jest-config": "^26.6.3", + "jest-haste-map": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-mock": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "slash": "^3.0.0", + "strip-bom": "^4.0.0", + "yargs": "^15.4.1" + }, + "bin": { + "jest-runtime": "bin/jest-runtime.js" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-runtime/node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-serializer": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz", + "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.4" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-serializer/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/jest-snapshot": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.6.2.tgz", + "integrity": "sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==", + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.0.0", + "chalk": "^4.0.0", + "expect": "^26.6.2", + "graceful-fs": "^4.2.4", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "jest-haste-map": "^26.6.2", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-resolve": "^26.6.2", + "natural-compare": "^1.4.0", + "pretty-format": "^26.6.2", + "semver": "^7.3.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "license": "MIT", + "dependencies": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-util/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/jest-validate": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz", + "integrity": "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^26.6.2", + "camelcase": "^6.0.0", + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "leven": "^3.1.0", + "pretty-format": "^26.6.2" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watch-typeahead": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-0.6.1.tgz", + "integrity": "sha512-ITVnHhj3Jd/QkqQcTqZfRgjfyRhDFM/auzgVo2RKvSwi18YMvh0WvXDJFoFED6c7jd/5jxtu4kSOb9PTu2cPVg==", + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^26.0.0", + "jest-watcher": "^26.3.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "jest": "^26.0.0" + } + }, + "node_modules/jest-watcher": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.2.tgz", + "integrity": "sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==", + "license": "MIT", + "dependencies": { + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^26.6.2", + "string-length": "^4.0.1" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/jest-watcher/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "license": "MIT", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/jest-worker/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "license": "MIT" + }, + "node_modules/jsdom": { + "version": "16.4.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.4.0.tgz", + "integrity": "sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w==", + "license": "MIT", + "dependencies": { + "abab": "^2.0.3", + "acorn": "^7.1.1", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.2.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.0", + "domexception": "^2.0.1", + "escodegen": "^1.14.1", + "html-encoding-sniffer": "^2.0.1", + "is-potential-custom-element-name": "^1.0.0", + "nwsapi": "^2.2.0", + "parse5": "5.1.1", + "request": "^2.88.2", + "request-promise-native": "^1.0.8", + "saxes": "^5.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^3.0.1", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0", + "ws": "^7.2.3", + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } + } + }, + "node_modules/jsdom/node_modules/tough-cookie": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz", + "integrity": "sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==", + "license": "BSD-3-Clause", + "dependencies": { + "ip-regex": "^2.1.0", + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsdom/node_modules/ws": { + "version": "7.4.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.3.tgz", + "integrity": "sha512-hr6vCR76GsossIRsr8OLR9acVVm1jyfEWvhbNjtgPOrfvAlKzvyeg/P6r8RuDjRyrcQoPQT7K0DGEPc7Ae6jzA==", + "license": "MIT", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "license": "MIT" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "license": "MIT" + }, + "node_modules/json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=", + "license": "MIT" + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "license": "ISC" + }, + "node_modules/json3": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", + "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==", + "license": "MIT" + }, + "node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "license": "MIT", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "engines": [ + "node >=0.6.0" + ], + "license": "MIT", + "dependencies": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "node_modules/jss": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss/-/jss-10.5.1.tgz", + "integrity": "sha512-hbbO3+FOTqVdd7ZUoTiwpHzKXIo5vGpMNbuXH1a0wubRSWLWSBvwvaq4CiHH/U42CmjOnp6lVNNs/l+Z7ZdDmg==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "csstype": "^3.0.2", + "indefinite-observable": "^2.0.1", + "is-in-browser": "^1.1.3", + "tiny-warning": "^1.0.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/jss" + } + }, + "node_modules/jss-plugin-camel-case": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-camel-case/-/jss-plugin-camel-case-10.5.1.tgz", + "integrity": "sha512-9+oymA7wPtswm+zxVti1qiowC5q7bRdCJNORtns2JUj/QHp2QPXYwSNRD8+D2Cy3/CEMtdJzlNnt5aXmpS6NAg==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "hyphenate-style-name": "^1.0.3", + "jss": "10.5.1" + } + }, + "node_modules/jss-plugin-default-unit": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-default-unit/-/jss-plugin-default-unit-10.5.1.tgz", + "integrity": "sha512-D48hJBc9Tj3PusvlillHW8Fz0y/QqA7MNmTYDQaSB/7mTrCZjt7AVRROExoOHEtd2qIYKOYJW3Jc2agnvsXRlQ==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "jss": "10.5.1" + } + }, + "node_modules/jss-plugin-global": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-global/-/jss-plugin-global-10.5.1.tgz", + "integrity": "sha512-jX4XpNgoaB8yPWw/gA1aPXJEoX0LNpvsROPvxlnYe+SE0JOhuvF7mA6dCkgpXBxfTWKJsno7cDSCgzHTocRjCQ==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "jss": "10.5.1" + } + }, + "node_modules/jss-plugin-nested": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-nested/-/jss-plugin-nested-10.5.1.tgz", + "integrity": "sha512-xXkWKOCljuwHNjSYcXrCxBnjd8eJp90KVFW1rlhvKKRXnEKVD6vdKXYezk2a89uKAHckSvBvBoDGsfZrldWqqQ==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "jss": "10.5.1", + "tiny-warning": "^1.0.2" + } + }, + "node_modules/jss-plugin-props-sort": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-props-sort/-/jss-plugin-props-sort-10.5.1.tgz", + "integrity": "sha512-t+2vcevNmMg4U/jAuxlfjKt46D/jHzCPEjsjLRj/J56CvP7Iy03scsUP58Iw8mVnaV36xAUZH2CmAmAdo8994g==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "jss": "10.5.1" + } + }, + "node_modules/jss-plugin-rule-value-function": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.5.1.tgz", + "integrity": "sha512-3gjrSxsy4ka/lGQsTDY8oYYtkt2esBvQiceGBB4PykXxHoGRz14tbCK31Zc6DHEnIeqsjMUGbq+wEly5UViStQ==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "jss": "10.5.1", + "tiny-warning": "^1.0.2" + } + }, + "node_modules/jss-plugin-vendor-prefixer": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.5.1.tgz", + "integrity": "sha512-cLkH6RaPZWHa1TqSfd2vszNNgxT1W0omlSjAd6hCFHp3KIocSrW21gaHjlMU26JpTHwkc+tJTCQOmE/O1A4FKQ==", + "dependencies": { + "@babel/runtime": "^7.3.1", + "css-vendor": "^2.0.8", + "jss": "10.5.1" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz", + "integrity": "sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==", + "license": "MIT", + "dependencies": { + "array-includes": "^3.1.2", + "object.assign": "^4.1.2" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/jwt-decode": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/jwt-decode/-/jwt-decode-3.1.2.tgz", + "integrity": "sha512-UfpWE/VZn0iP50d8cz9NrZLM9lSWhcJ+0Gt/nm4by88UL+J1SiKN8/5dkjMmbEzwL2CAe+67GsegCbIKtbp75A==" + }, + "node_modules/killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", + "license": "ISC" + }, + "node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "license": "MIT", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/klona": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.4.tgz", + "integrity": "sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/language-subtag-registry": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", + "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==", + "license": "ODC-By-1.0" + }, + "node_modules/language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=", + "license": "MIT", + "dependencies": { + "language-subtag-registry": "~0.3.2" + } + }, + "node_modules/last-call-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.5", + "webpack-sources": "^1.1.0" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/levn/node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/levn/node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lines-and-columns": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", + "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=", + "license": "MIT" + }, + "node_modules/load-json-file": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", + "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/load-json-file/node_modules/parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "license": "MIT", + "dependencies": { + "error-ex": "^1.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/load-json-file/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "license": "MIT", + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/loader-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/loader-utils/node_modules/json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "license": "MIT", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" + }, + "node_modules/lodash._reinterpolate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=", + "license": "MIT" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", + "license": "MIT" + }, + "node_modules/lodash.orderby": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.orderby/-/lodash.orderby-4.6.0.tgz", + "integrity": "sha1-5pfwTOXXhSL1TZM4syuBozk+TrM=" + }, + "node_modules/lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=", + "license": "MIT" + }, + "node_modules/lodash.template": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", + "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", + "license": "MIT", + "dependencies": { + "lodash._reinterpolate": "^3.0.0", + "lodash.templatesettings": "^4.0.0" + } + }, + "node_modules/lodash.templatesettings": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", + "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", + "license": "MIT", + "dependencies": { + "lodash._reinterpolate": "^3.0.0" + } + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", + "license": "MIT" + }, + "node_modules/loglevel": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.7.1.tgz", + "integrity": "sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==", + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/loglevel" + } + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/lz-string": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.4.4.tgz", + "integrity": "sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=", + "license": "WTFPL", + "bin": { + "lz-string": "bin/bin.js" + } + }, + "node_modules/magic-string": { + "version": "0.25.7", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz", + "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==", + "license": "MIT", + "dependencies": { + "sourcemap-codec": "^1.4.4" + } + }, + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "license": "MIT", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/makeerror": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", + "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", + "license": "BSD-3-Clause", + "dependencies": { + "tmpl": "1.0.x" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "license": "MIT", + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "license": "MIT", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==", + "license": "CC0-1.0" + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "license": "MIT", + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", + "license": "MIT" + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "license": "MIT" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/microevent.ts": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/microevent.ts/-/microevent.ts-0.1.1.tgz", + "integrity": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==", + "license": "MIT" + }, + "node_modules/micromatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", + "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", + "license": "MIT", + "dependencies": { + "braces": "^3.0.1", + "picomatch": "^2.0.5" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/micromatch/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/micromatch/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/micromatch/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/micromatch/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "license": "MIT", + "dependencies": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "bin": { + "miller-rabin": "bin/miller-rabin" + } + }, + "node_modules/mime": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", + "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mime-db": { + "version": "1.46.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz", + "integrity": "sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.29", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz", + "integrity": "sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ==", + "license": "MIT", + "dependencies": { + "mime-db": "1.46.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/mini-create-react-context": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz", + "integrity": "sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ==", + "dependencies": { + "@babel/runtime": "^7.12.1", + "tiny-warning": "^1.0.3" + }, + "peerDependencies": { + "prop-types": "^15.0.0", + "react": "^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0" + } + }, + "node_modules/mini-css-extract-plugin": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.11.3.tgz", + "integrity": "sha512-n9BA8LonkOkW1/zn+IbLPQmovsL0wMb9yx75fMJQZf2X1Zoec9yTZtyMePcyu19wPkmFbzZZA6fLTotpFhQsOA==", + "license": "MIT", + "dependencies": { + "loader-utils": "^1.1.0", + "normalize-url": "1.9.1", + "schema-utils": "^1.0.0", + "webpack-sources": "^1.1.0" + }, + "engines": { + "node": ">= 6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.0.0" + } + }, + "node_modules/mini-css-extract-plugin/node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "license": "ISC" + }, + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", + "license": "MIT" + }, + "node_modules/minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==", + "license": "MIT" + }, + "node_modules/minipass": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", + "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==", + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "license": "MIT", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/mississippi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "license": "BSD-2-Clause", + "dependencies": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "license": "MIT", + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mixin-deep/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", + "license": "ISC", + "dependencies": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "license": "MIT" + }, + "node_modules/multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "license": "MIT", + "dependencies": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } + }, + "node_modules/multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=", + "license": "MIT" + }, + "node_modules/nan": { + "version": "2.14.2", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz", + "integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==", + "license": "MIT", + "optional": true + }, + "node_modules/nanoid": { + "version": "3.1.20", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.20.tgz", + "integrity": "sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==", + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "license": "MIT", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nanomatch/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/native-url": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/native-url/-/native-url-0.2.6.tgz", + "integrity": "sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==", + "license": "Apache-2.0", + "dependencies": { + "querystring": "^0.2.0" + } + }, + "node_modules/native-url/node_modules/querystring": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz", + "integrity": "sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==", + "license": "MIT", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "license": "MIT" + }, + "node_modules/negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "license": "MIT" + }, + "node_modules/next-tick": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", + "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=", + "license": "MIT" + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "license": "MIT" + }, + "node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "license": "MIT", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==", + "license": "(BSD-3-Clause OR GPL-2.0)", + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=", + "license": "MIT" + }, + "node_modules/node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "license": "MIT", + "dependencies": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + } + }, + "node_modules/node-libs-browser/node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "license": "MIT" + }, + "node_modules/node-modules-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", + "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/node-notifier": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.1.tgz", + "integrity": "sha512-BvEXF+UmsnAfYfoapKM9nGxnP+Wn7P91YfXmrKnfcYCx6VBeoN5Ez5Ogck6I8Bi5k4RlpqRYaw75pAwzX9OphA==", + "license": "MIT", + "optional": true, + "dependencies": { + "growly": "^1.3.0", + "is-wsl": "^2.2.0", + "semver": "^7.3.2", + "shellwords": "^0.1.1", + "uuid": "^8.3.0", + "which": "^2.0.2" + } + }, + "node_modules/node-notifier/node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "license": "MIT", + "optional": true, + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/node-notifier/node_modules/semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "license": "ISC", + "optional": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-notifier/node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "license": "MIT", + "optional": true, + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/node-notifier/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "optional": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/node-releases": { + "version": "1.1.70", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.70.tgz", + "integrity": "sha512-Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw==", + "license": "MIT" + }, + "node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "license": "BSD-2-Clause", + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", + "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=", + "license": "MIT", + "dependencies": { + "object-assign": "^4.0.1", + "prepend-http": "^1.0.0", + "query-string": "^4.1.0", + "sort-keys": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "license": "MIT", + "dependencies": { + "path-key": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "license": "BSD-2-Clause", + "dependencies": { + "boolbase": "~1.0.0" + } + }, + "node_modules/num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", + "license": "MIT" + }, + "node_modules/nwsapi": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", + "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==", + "license": "MIT" + }, + "node_modules/oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "license": "Apache-2.0", + "engines": { + "node": "*" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "license": "MIT", + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", + "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "license": "MIT", + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.3.tgz", + "integrity": "sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1", + "has": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.4.tgz", + "integrity": "sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2", + "has": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz", + "integrity": "sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "license": "MIT", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.values": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.2.tgz", + "integrity": "sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1", + "has": "^1.0.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "license": "MIT" + }, + "node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "license": "MIT", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "license": "MIT", + "dependencies": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/open/node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "license": "MIT", + "dependencies": { + "is-docker": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "license": "MIT", + "dependencies": { + "is-wsl": "^1.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/optimize-css-assets-webpack-plugin": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.4.tgz", + "integrity": "sha512-wqd6FdI2a5/FdoiCNNkEvLeA//lHHfG24Ln2Xm2qqdIk4aOlsR18jwpyOihqQ8849W3qu2DX8fOYxpvTMj+93A==", + "license": "MIT", + "dependencies": { + "cssnano": "^4.1.10", + "last-call-webpack-plugin": "^3.0.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/optionator/node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/optionator/node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/original": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", + "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", + "license": "MIT", + "dependencies": { + "url-parse": "^1.4.3" + } + }, + "node_modules/os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", + "license": "MIT" + }, + "node_modules/p-each-series": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz", + "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "license": "MIT", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "license": "MIT", + "dependencies": { + "retry": "^0.12.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==", + "license": "(MIT AND Zlib)" + }, + "node_modules/parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "license": "MIT", + "dependencies": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + } + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "license": "MIT", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "license": "ISC", + "dependencies": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse5": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz", + "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==", + "license": "MIT" + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "license": "MIT", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", + "license": "MIT" + }, + "node_modules/path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "license": "MIT" + }, + "node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", + "license": "(WTFPL OR MIT)" + }, + "node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/path-parse": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "license": "MIT" + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "license": "MIT" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/pbkdf2": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.1.tgz", + "integrity": "sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==", + "license": "MIT", + "dependencies": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "license": "MIT" + }, + "node_modules/picomatch": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", + "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "license": "MIT", + "dependencies": { + "pinkie": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz", + "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", + "license": "MIT", + "dependencies": { + "node-modules-regexp": "^1.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "license": "MIT", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "license": "MIT", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "license": "MIT", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "license": "MIT", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-up/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "license": "MIT", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "license": "MIT", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pkg-up/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/pnp-webpack-plugin": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz", + "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==", + "license": "MIT", + "dependencies": { + "ts-pnp": "^1.1.6" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/popper.js": { + "version": "1.16.1-lts", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1-lts.tgz", + "integrity": "sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==" + }, + "node_modules/portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "license": "MIT", + "dependencies": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "engines": { + "node": ">= 0.12.0" + } + }, + "node_modules/portfinder/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/portfinder/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss": { + "version": "7.0.35", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", + "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", + "license": "MIT", + "dependencies": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-attribute-case-insensitive": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz", + "integrity": "sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^6.0.2" + } + }, + "node_modules/postcss-attribute-case-insensitive/node_modules/postcss-selector-parser": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz", + "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-browser-comments": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-3.0.0.tgz", + "integrity": "sha512-qfVjLfq7HFd2e0HW4s1dvU8X080OZdG46fFbIBFjW7US7YPDcWfRvdElvwMJr2LI6hMmD+7LnH2HcmXTs+uOig==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7" + }, + "engines": { + "node": ">=8.0.0" + }, + "peerDependencies": { + "browserslist": "^4" + } + }, + "node_modules/postcss-calc": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", + "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + } + }, + "node_modules/postcss-calc/node_modules/postcss-selector-parser": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz", + "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-calc/node_modules/postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==", + "license": "MIT" + }, + "node_modules/postcss-color-functional-notation": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz", + "integrity": "sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-color-gray": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz", + "integrity": "sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==", + "license": "ISC", + "dependencies": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.5", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-color-hex-alpha": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz", + "integrity": "sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.14", + "postcss-values-parser": "^2.0.1" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-color-mod-function": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz", + "integrity": "sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-color-rebeccapurple": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz", + "integrity": "sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", + "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", + "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-custom-media": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz", + "integrity": "sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.14" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-custom-properties": { + "version": "8.0.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz", + "integrity": "sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.17", + "postcss-values-parser": "^2.0.1" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-custom-selectors": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz", + "integrity": "sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-dir-pseudo-class": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz", + "integrity": "sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", + "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", + "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", + "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", + "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-double-position-gradients": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz", + "integrity": "sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.5", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-env-function": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-2.0.2.tgz", + "integrity": "sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-flexbugs-fixes": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz", + "integrity": "sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.26" + } + }, + "node_modules/postcss-focus-visible": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz", + "integrity": "sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-focus-within": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz", + "integrity": "sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-font-variant": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz", + "integrity": "sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-gap-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz", + "integrity": "sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-image-set-function": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz", + "integrity": "sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-initial": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.2.tgz", + "integrity": "sha512-ugA2wKonC0xeNHgirR4D3VWHs2JcU08WAi1KFLVcnb7IN89phID6Qtg2RIctWbnvp1TM2BOmDtX8GGLCKdR8YA==", + "license": "MIT", + "dependencies": { + "lodash.template": "^4.5.0", + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-lab-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz", + "integrity": "sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-load-config": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz", + "integrity": "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==", + "license": "MIT", + "dependencies": { + "cosmiconfig": "^5.0.0", + "import-cwd": "^2.0.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz", + "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==", + "license": "MIT", + "dependencies": { + "loader-utils": "^1.1.0", + "postcss": "^7.0.0", + "postcss-load-config": "^2.0.0", + "schema-utils": "^1.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-loader/node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/postcss-logical": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-3.0.0.tgz", + "integrity": "sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-media-minmax": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz", + "integrity": "sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", + "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", + "license": "MIT", + "dependencies": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", + "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-merge-rules/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "license": "MIT", + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", + "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", + "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", + "license": "MIT", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", + "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", + "license": "MIT", + "dependencies": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", + "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", + "license": "MIT", + "dependencies": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-minify-selectors/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "license": "MIT", + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", + "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "license": "ISC", + "dependencies": { + "postcss": "^7.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", + "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", + "license": "MIT", + "dependencies": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-modules-local-by-default/node_modules/postcss-selector-parser": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz", + "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-modules-local-by-default/node_modules/postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==", + "license": "MIT" + }, + "node_modules/postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", + "license": "ISC", + "dependencies": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/postcss-modules-scope/node_modules/postcss-selector-parser": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz", + "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", + "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", + "license": "ISC", + "dependencies": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + } + }, + "node_modules/postcss-nesting": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-7.0.1.tgz", + "integrity": "sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-normalize": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-8.0.1.tgz", + "integrity": "sha512-rt9JMS/m9FHIRroDDBGSMsyW1c0fkvOJPy62ggxSHUldJO7B195TqFMqIf+lY5ezpDcYOV4j86aUp3/XbxzCCQ==", + "license": "CC0-1.0", + "dependencies": { + "@csstools/normalize.css": "^10.1.0", + "browserslist": "^4.6.2", + "postcss": "^7.0.17", + "postcss-browser-comments": "^3.0.0", + "sanitize.css": "^10.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", + "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", + "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", + "license": "MIT", + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", + "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", + "license": "MIT", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", + "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", + "license": "MIT", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", + "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", + "license": "MIT", + "dependencies": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", + "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", + "license": "MIT", + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", + "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", + "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", + "license": "MIT", + "dependencies": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-normalize-url/node_modules/is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", + "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss-normalize-url/node_modules/normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", + "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", + "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", + "license": "MIT", + "dependencies": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-overflow-shorthand": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz", + "integrity": "sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-page-break": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-2.0.0.tgz", + "integrity": "sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-place": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-4.0.1.tgz", + "integrity": "sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-preset-env": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz", + "integrity": "sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==", + "license": "CC0-1.0", + "dependencies": { + "autoprefixer": "^9.6.1", + "browserslist": "^4.6.4", + "caniuse-lite": "^1.0.30000981", + "css-blank-pseudo": "^0.1.4", + "css-has-pseudo": "^0.10.0", + "css-prefers-color-scheme": "^3.1.1", + "cssdb": "^4.4.0", + "postcss": "^7.0.17", + "postcss-attribute-case-insensitive": "^4.0.1", + "postcss-color-functional-notation": "^2.0.1", + "postcss-color-gray": "^5.0.0", + "postcss-color-hex-alpha": "^5.0.3", + "postcss-color-mod-function": "^3.0.3", + "postcss-color-rebeccapurple": "^4.0.1", + "postcss-custom-media": "^7.0.8", + "postcss-custom-properties": "^8.0.11", + "postcss-custom-selectors": "^5.1.2", + "postcss-dir-pseudo-class": "^5.0.0", + "postcss-double-position-gradients": "^1.0.0", + "postcss-env-function": "^2.0.2", + "postcss-focus-visible": "^4.0.0", + "postcss-focus-within": "^3.0.0", + "postcss-font-variant": "^4.0.0", + "postcss-gap-properties": "^2.0.0", + "postcss-image-set-function": "^3.0.1", + "postcss-initial": "^3.0.0", + "postcss-lab-function": "^2.0.1", + "postcss-logical": "^3.0.0", + "postcss-media-minmax": "^4.0.0", + "postcss-nesting": "^7.0.0", + "postcss-overflow-shorthand": "^2.0.0", + "postcss-page-break": "^2.0.0", + "postcss-place": "^4.0.1", + "postcss-pseudo-class-any-link": "^6.0.0", + "postcss-replace-overflow-wrap": "^3.0.0", + "postcss-selector-matches": "^4.0.0", + "postcss-selector-not": "^4.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-pseudo-class-any-link": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz", + "integrity": "sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==", + "license": "CC0-1.0", + "dependencies": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", + "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", + "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", + "license": "MIT", + "dependencies": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-replace-overflow-wrap": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz", + "integrity": "sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==", + "license": "MIT", + "dependencies": { + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-safe-parser": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-5.0.2.tgz", + "integrity": "sha512-jDUfCPJbKOABhwpUKcqCVbbXiloe/QXMcbJ6Iipf3sDIihEzTqRCeMBfRaOHxhBuTYqtASrI1KJWxzztZU4qUQ==", + "license": "MIT", + "dependencies": { + "postcss": "^8.1.0" + }, + "engines": { + "node": ">=10.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-safe-parser/node_modules/postcss": { + "version": "8.2.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.2.6.tgz", + "integrity": "sha512-xpB8qYxgPuly166AGlpRjUdEYtmOWx2iCwGmrv4vqZL9YPVviDVPZPRXxnXr6xPZOdxQ9lp3ZBFCRgWJ7LE3Sg==", + "license": "MIT", + "dependencies": { + "colorette": "^1.2.1", + "nanoid": "^3.1.20", + "source-map": "^0.6.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/postcss-selector-matches": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz", + "integrity": "sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-selector-not": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz", + "integrity": "sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + } + }, + "node_modules/postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "license": "MIT", + "dependencies": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-selector-parser/node_modules/cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==", + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.2.tgz", + "integrity": "sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw==", + "license": "MIT", + "dependencies": { + "is-svg": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", + "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", + "license": "MIT", + "dependencies": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", + "license": "MIT" + }, + "node_modules/postcss-values-parser": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz", + "integrity": "sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==", + "license": "MIT", + "dependencies": { + "flatten": "^1.0.2", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=6.14.4" + } + }, + "node_modules/postcss/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss/node_modules/chalk/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/postcss/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-error": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz", + "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + } + }, + "node_modules/pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "license": "MIT", + "dependencies": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "license": "MIT" + }, + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "license": "MIT", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/promise": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.1.0.tgz", + "integrity": "sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==", + "license": "MIT", + "dependencies": { + "asap": "~2.0.6" + } + }, + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", + "license": "ISC" + }, + "node_modules/prompts": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz", + "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==", + "license": "MIT", + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.7.2", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", + "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.8.1" + } + }, + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/proxy-addr": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", + "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", + "license": "MIT", + "dependencies": { + "forwarded": "~0.1.2", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "license": "MIT" + }, + "node_modules/psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==", + "license": "MIT" + }, + "node_modules/public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "license": "MIT", + "dependencies": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "license": "MIT", + "dependencies": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "node_modules/pumpify/node_modules/pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", + "license": "MIT", + "engines": { + "node": ">=0.6.0", + "teleport": ">=0.2.0" + } + }, + "node_modules/qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/query-string": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", + "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", + "license": "MIT", + "dependencies": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==", + "license": "MIT" + }, + "node_modules/queue-microtask": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.2.tgz", + "integrity": "sha512-dB15eXv3p2jDlbOiNLyMabYg1/sXvppd8DP2J3EOCQ0AkuSXCW2tP7mnVouVLJKgUMY6yP0kcQDVpLCN13h4Xg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/raf": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "license": "MIT", + "dependencies": { + "performance-now": "^2.1.0" + } + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "license": "MIT", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "license": "MIT", + "dependencies": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "license": "MIT", + "dependencies": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/react": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react/-/react-17.0.1.tgz", + "integrity": "sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-app-polyfill": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-2.0.0.tgz", + "integrity": "sha512-0sF4ny9v/B7s6aoehwze9vJNWcmCemAUYBVasscVr92+UYiEqDXOxfKjXN685mDaMRNF3WdhHQs76oTODMocFA==", + "license": "MIT", + "dependencies": { + "core-js": "^3.6.5", + "object-assign": "^4.1.1", + "promise": "^8.1.0", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.7", + "whatwg-fetch": "^3.4.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-data-table-component": { + "version": "6.11.7", + "resolved": "https://registry.npmjs.org/react-data-table-component/-/react-data-table-component-6.11.7.tgz", + "integrity": "sha512-p+wdtaaKs2udJByL2tyvL9uj8EDFy5GtpVVtNGd6d5dT0KikVhgCKFMDyv0ef+azdBVS68BaxGQ8JArDr31nWw==", + "dependencies": { + "deepmerge": "^4.2.2", + "lodash.orderby": "^4.6.0", + "shortid": "^2.2.16" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0", + "styled-components": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/react-dev-utils": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-11.0.3.tgz", + "integrity": "sha512-4lEA5gF4OHrcJLMUV1t+4XbNDiJbsAWCH5Z2uqlTqW6dD7Cf5nEASkeXrCI/Mz83sI2o527oBIFKVMXtRf1Vtg==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "7.10.4", + "address": "1.1.2", + "browserslist": "4.14.2", + "chalk": "2.4.2", + "cross-spawn": "7.0.3", + "detect-port-alt": "1.1.6", + "escape-string-regexp": "2.0.0", + "filesize": "6.1.0", + "find-up": "4.1.0", + "fork-ts-checker-webpack-plugin": "4.1.6", + "global-modules": "2.0.0", + "globby": "11.0.1", + "gzip-size": "5.1.1", + "immer": "8.0.1", + "is-root": "2.1.0", + "loader-utils": "2.0.0", + "open": "^7.0.2", + "pkg-up": "3.1.0", + "prompts": "2.4.0", + "react-error-overlay": "^6.0.9", + "recursive-readdir": "2.2.2", + "shell-quote": "1.7.2", + "strip-ansi": "6.0.0", + "text-table": "0.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-dev-utils/node_modules/@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "license": "MIT", + "dependencies": { + "@babel/highlight": "^7.10.4" + } + }, + "node_modules/react-dev-utils/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-dev-utils/node_modules/browserslist": { + "version": "4.14.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.2.tgz", + "integrity": "sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==", + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001125", + "electron-to-chromium": "^1.3.564", + "escalade": "^3.0.2", + "node-releases": "^1.1.61" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + }, + "node_modules/react-dev-utils/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-dev-utils/node_modules/chalk/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/react-dev-utils/node_modules/globby": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz", + "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", + "license": "MIT", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-dev-utils/node_modules/ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/react-dev-utils/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/react-dom": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.1.tgz", + "integrity": "sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.1" + }, + "peerDependencies": { + "react": "17.0.1" + } + }, + "node_modules/react-error-overlay": { + "version": "6.0.9", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.9.tgz", + "integrity": "sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==", + "license": "MIT" + }, + "node_modules/react-is": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz", + "integrity": "sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==", + "license": "MIT" + }, + "node_modules/react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "node_modules/react-loading-overlay": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/react-loading-overlay/-/react-loading-overlay-1.0.1.tgz", + "integrity": "sha512-aUjtZ8tNXBSx+MbD2SQs0boPbeTAGTh+I5U9nWjDzMasKlYr58RJpr57c8W7uApeLpOkAGbInExRi6GamNC2bA==", + "dependencies": { + "emotion": "^10.0.1", + "prop-types": "^15.6.2", + "react-transition-group": "^2.5.0" + }, + "peerDependencies": { + "react": "^0.14 || ^15.0.0-rc || ^15.0 || ^16.0.0 || ^16.0", + "react-dom": "^0.14 || ^15.0.0-rc || ^15.0 || ^16.0.0 || ^16.0" + } + }, + "node_modules/react-loading-overlay/node_modules/dom-helpers": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz", + "integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==", + "dependencies": { + "@babel/runtime": "^7.1.2" + } + }, + "node_modules/react-loading-overlay/node_modules/react-transition-group": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz", + "integrity": "sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==", + "dependencies": { + "dom-helpers": "^3.4.0", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2", + "react-lifecycles-compat": "^3.0.4" + }, + "peerDependencies": { + "react": ">=15.0.0", + "react-dom": ">=15.0.0" + } + }, + "node_modules/react-refresh": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz", + "integrity": "sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-router": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.2.0.tgz", + "integrity": "sha512-smz1DUuFHRKdcJC0jobGo8cVbhO3x50tCL4icacOlcwDOEQPq4TMqwx3sY1TP+DvtTgz4nm3thuo7A+BK2U0Dw==", + "dependencies": { + "@babel/runtime": "^7.1.2", + "history": "^4.9.0", + "hoist-non-react-statics": "^3.1.0", + "loose-envify": "^1.3.1", + "mini-create-react-context": "^0.4.0", + "path-to-regexp": "^1.7.0", + "prop-types": "^15.6.2", + "react-is": "^16.6.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" + }, + "peerDependencies": { + "react": ">=15" + } + }, + "node_modules/react-router-dom": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.2.0.tgz", + "integrity": "sha512-gxAmfylo2QUjcwxI63RhQ5G85Qqt4voZpUXSEqCwykV0baaOTQDR1f0PmY8AELqIyVc0NEZUj0Gov5lNGcXgsA==", + "dependencies": { + "@babel/runtime": "^7.1.2", + "history": "^4.9.0", + "loose-envify": "^1.3.1", + "prop-types": "^15.6.2", + "react-router": "5.2.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" + }, + "peerDependencies": { + "react": ">=15" + } + }, + "node_modules/react-router-dom/node_modules/history": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", + "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", + "dependencies": { + "@babel/runtime": "^7.1.2", + "loose-envify": "^1.2.0", + "resolve-pathname": "^3.0.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0", + "value-equal": "^1.0.1" + } + }, + "node_modules/react-router/node_modules/history": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", + "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", + "dependencies": { + "@babel/runtime": "^7.1.2", + "loose-envify": "^1.2.0", + "resolve-pathname": "^3.0.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0", + "value-equal": "^1.0.1" + } + }, + "node_modules/react-router/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "node_modules/react-router/node_modules/path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "dependencies": { + "isarray": "0.0.1" + } + }, + "node_modules/react-router/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/react-scripts": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-4.0.3.tgz", + "integrity": "sha512-S5eO4vjUzUisvkIPB7jVsKtuH2HhWcASREYWHAQ1FP5HyCv3xgn+wpILAEWkmy+A+tTNbSZClhxjT3qz6g4L1A==", + "license": "MIT", + "dependencies": { + "@babel/core": "7.12.3", + "@pmmmwh/react-refresh-webpack-plugin": "0.4.3", + "@svgr/webpack": "5.5.0", + "@typescript-eslint/eslint-plugin": "^4.5.0", + "@typescript-eslint/parser": "^4.5.0", + "babel-eslint": "^10.1.0", + "babel-jest": "^26.6.0", + "babel-loader": "8.1.0", + "babel-plugin-named-asset-import": "^0.3.7", + "babel-preset-react-app": "^10.0.0", + "bfj": "^7.0.2", + "camelcase": "^6.1.0", + "case-sensitive-paths-webpack-plugin": "2.3.0", + "css-loader": "4.3.0", + "dotenv": "8.2.0", + "dotenv-expand": "5.1.0", + "eslint": "^7.11.0", + "eslint-config-react-app": "^6.0.0", + "eslint-plugin-flowtype": "^5.2.0", + "eslint-plugin-import": "^2.22.1", + "eslint-plugin-jest": "^24.1.0", + "eslint-plugin-jsx-a11y": "^6.3.1", + "eslint-plugin-react": "^7.21.5", + "eslint-plugin-react-hooks": "^4.2.0", + "eslint-plugin-testing-library": "^3.9.2", + "eslint-webpack-plugin": "^2.5.2", + "file-loader": "6.1.1", + "fs-extra": "^9.0.1", + "html-webpack-plugin": "4.5.0", + "identity-obj-proxy": "3.0.0", + "jest": "26.6.0", + "jest-circus": "26.6.0", + "jest-resolve": "26.6.0", + "jest-watch-typeahead": "0.6.1", + "mini-css-extract-plugin": "0.11.3", + "optimize-css-assets-webpack-plugin": "5.0.4", + "pnp-webpack-plugin": "1.6.4", + "postcss-flexbugs-fixes": "4.2.1", + "postcss-loader": "3.0.0", + "postcss-normalize": "8.0.1", + "postcss-preset-env": "6.7.0", + "postcss-safe-parser": "5.0.2", + "prompts": "2.4.0", + "react-app-polyfill": "^2.0.0", + "react-dev-utils": "^11.0.3", + "react-refresh": "^0.8.3", + "resolve": "1.18.1", + "resolve-url-loader": "^3.1.2", + "sass-loader": "^10.0.5", + "semver": "7.3.2", + "style-loader": "1.3.0", + "terser-webpack-plugin": "4.2.3", + "ts-pnp": "1.2.0", + "url-loader": "4.1.1", + "webpack": "4.44.2", + "webpack-dev-server": "3.11.1", + "webpack-manifest-plugin": "2.2.0", + "workbox-webpack-plugin": "5.1.4" + }, + "bin": { + "react-scripts": "bin/react-scripts.js" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.1.3" + }, + "peerDependencies": { + "react": ">= 16", + "typescript": "^3.2.1 || ^4" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/react-scripts/node_modules/@babel/core": { + "version": "7.12.3", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz", + "integrity": "sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.1", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.1", + "@babel/parser": "^7.12.3", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.12.1", + "@babel/types": "^7.12.1", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/react-scripts/node_modules/@babel/core/node_modules/resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/react-scripts/node_modules/@babel/core/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/react-scripts/node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/react-scripts/node_modules/babel-jest": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz", + "integrity": "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==", + "license": "MIT", + "dependencies": { + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/babel__core": "^7.1.7", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/react-scripts/node_modules/babel-loader": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.1.0.tgz", + "integrity": "sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==", + "license": "MIT", + "dependencies": { + "find-cache-dir": "^2.1.0", + "loader-utils": "^1.4.0", + "mkdirp": "^0.5.3", + "pify": "^4.0.1", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 6.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/react-scripts/node_modules/babel-plugin-named-asset-import": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.7.tgz", + "integrity": "sha512-squySRkf+6JGnvjoUtDEjSREJEBirnXi9NqP6rjSYsylxQxqBTz+pkmf395i9E2zsvmYUaI40BHo6SqZUdydlw==", + "license": "MIT", + "peerDependencies": { + "@babel/core": "^7.1.0" + } + }, + "node_modules/react-scripts/node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "license": "MIT", + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/react-scripts/node_modules/babel-preset-jest": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz", + "integrity": "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==", + "license": "MIT", + "dependencies": { + "babel-plugin-jest-hoist": "^26.6.2", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": ">= 10.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/react-scripts/node_modules/camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/react-scripts/node_modules/jest-resolve": { + "version": "26.6.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.0.tgz", + "integrity": "sha512-tRAz2bwraHufNp+CCmAD8ciyCpXCs1NQxB5EJAmtCFy6BN81loFEGWKzYu26Y62lAJJe4X4jg36Kf+NsQyiStQ==", + "license": "MIT", + "dependencies": { + "@jest/types": "^26.6.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.0", + "read-pkg-up": "^7.0.1", + "resolve": "^1.17.0", + "slash": "^3.0.0" + }, + "engines": { + "node": ">= 10.14.2" + } + }, + "node_modules/react-scripts/node_modules/jest-resolve/node_modules/resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/react-scripts/node_modules/json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.5" + }, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/react-scripts/node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/react-scripts/node_modules/loader-utils/node_modules/json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "license": "MIT", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/react-scripts/node_modules/resolve": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.18.1.tgz", + "integrity": "sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.0.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/react-scripts/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/react-scripts/node_modules/semver": { + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz", + "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/react-scripts/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-transition-group": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.1.tgz", + "integrity": "sha512-Djqr7OQ2aPUiYurhPalTrVy9ddmFCCzwhqQmtN+J3+3DzLO209Fdr70QrN8Z3DsglWql6iY1lDWAfpFiBtuKGw==", + "dependencies": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, + "node_modules/read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "license": "MIT", + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "license": "MIT", + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=8" + } + }, + "node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "license": "MIT", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readable-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "license": "MIT" + }, + "node_modules/readable-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/readdirp/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readdirp/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "license": "MIT", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/recursive-readdir": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz", + "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==", + "license": "MIT", + "dependencies": { + "minimatch": "3.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "license": "MIT", + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", + "license": "MIT" + }, + "node_modules/regenerate-unicode-properties": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz", + "integrity": "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==", + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.13.7", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", + "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==", + "license": "MIT" + }, + "node_modules/regenerator-transform": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", + "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "license": "MIT", + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-not/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regex-parser": { + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", + "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==", + "license": "MIT" + }, + "node_modules/regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz", + "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpp": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz", + "integrity": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/regexpu-core": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz", + "integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==", + "license": "MIT", + "dependencies": { + "regenerate": "^1.4.0", + "regenerate-unicode-properties": "^8.2.0", + "regjsgen": "^0.5.1", + "regjsparser": "^0.6.4", + "unicode-match-property-ecmascript": "^1.0.4", + "unicode-match-property-value-ecmascript": "^1.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsgen": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz", + "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==", + "license": "MIT" + }, + "node_modules/regjsparser": { + "version": "0.6.7", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.7.tgz", + "integrity": "sha512-ib77G0uxsA2ovgiYbCVGx4Pv3PSttAx2vIwidqQzbL2U5S4Q+j00HdSAneSBuyVcMvEnTXMjiGgB+DlXozVhpQ==", + "license": "BSD-2-Clause", + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "license": "ISC" + }, + "node_modules/renderkid": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.5.tgz", + "integrity": "sha512-ccqoLg+HLOHq1vdfYNm4TBeaCDIi1FLt3wGojTDSvdewUv65oTmI3cnT2E4hRjl1gzKZIPK+KZrXzlUYKnR+vQ==", + "license": "MIT", + "dependencies": { + "css-select": "^2.0.2", + "dom-converter": "^0.2", + "htmlparser2": "^3.10.1", + "lodash": "^4.17.20", + "strip-ansi": "^3.0.0" + } + }, + "node_modules/renderkid/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/renderkid/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "license": "MIT", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-element": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", + "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "license": "MIT", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "license": "Apache-2.0", + "dependencies": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/request-promise-core": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", + "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", + "license": "ISC", + "dependencies": { + "lodash": "^4.17.19" + }, + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "request": "^2.34" + } + }, + "node_modules/request-promise-native": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", + "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", + "license": "ISC", + "dependencies": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + }, + "engines": { + "node": ">=0.12.0" + }, + "peerDependencies": { + "request": "^2.34" + } + }, + "node_modules/request/node_modules/qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "license": "ISC" + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "license": "MIT" + }, + "node_modules/resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "license": "MIT", + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-cwd/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-pathname": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz", + "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "license": "MIT" + }, + "node_modules/resolve-url-loader": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-3.1.2.tgz", + "integrity": "sha512-QEb4A76c8Mi7I3xNKXlRKQSlLBwjUV/ULFMP+G7n3/7tJZ8MG5wsZ3ucxP1Jz8Vevn6fnJsxDx9cIls+utGzPQ==", + "license": "MIT", + "dependencies": { + "adjust-sourcemap-loader": "3.0.0", + "camelcase": "5.3.1", + "compose-function": "3.0.3", + "convert-source-map": "1.7.0", + "es6-iterator": "2.0.3", + "loader-utils": "1.2.3", + "postcss": "7.0.21", + "rework": "1.0.1", + "rework-visit": "1.0.0", + "source-map": "0.6.1" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/resolve-url-loader/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-url-loader/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-url-loader/node_modules/chalk/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-url-loader/node_modules/emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/resolve-url-loader/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/resolve-url-loader/node_modules/loader-utils": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", + "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^2.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/resolve-url-loader/node_modules/postcss": { + "version": "7.0.21", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.21.tgz", + "integrity": "sha512-uIFtJElxJo29QC753JzhidoAhvp/e/Exezkdhfmt8AymWT6/5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ==", + "license": "MIT", + "dependencies": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/resolve-url-loader/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "license": "MIT", + "engines": { + "node": ">=0.12" + } + }, + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rework": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz", + "integrity": "sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc=", + "dependencies": { + "convert-source-map": "^0.3.3", + "css": "^2.0.0" + } + }, + "node_modules/rework-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz", + "integrity": "sha1-mUWygD8hni96ygCtuLyfZA+ELJo=", + "license": "MIT" + }, + "node_modules/rework/node_modules/convert-source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz", + "integrity": "sha1-8dgClQr33SYxof6+BZZVDIarMZA=", + "license": "MIT" + }, + "node_modules/rework/node_modules/css": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/css/-/css-2.2.4.tgz", + "integrity": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "source-map": "^0.6.1", + "source-map-resolve": "^0.5.2", + "urix": "^0.1.0" + } + }, + "node_modules/rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=", + "license": "MIT" + }, + "node_modules/rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=", + "license": "MIT" + }, + "node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "license": "ISC", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "license": "MIT", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "node_modules/rollup": { + "version": "1.32.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-1.32.1.tgz", + "integrity": "sha512-/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==", + "license": "MIT", + "dependencies": { + "@types/estree": "*", + "@types/node": "*", + "acorn": "^7.1.0" + }, + "bin": { + "rollup": "dist/bin/rollup" + } + }, + "node_modules/rollup-plugin-babel": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-babel/-/rollup-plugin-babel-4.4.0.tgz", + "integrity": "sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw==", + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.0.0", + "rollup-pluginutils": "^2.8.1" + }, + "peerDependencies": { + "@babel/core": "7 || ^7.0.0-rc.2", + "rollup": ">=0.60.0 <3" + } + }, + "node_modules/rollup-plugin-terser": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-5.3.1.tgz", + "integrity": "sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w==", + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.5.5", + "jest-worker": "^24.9.0", + "rollup-pluginutils": "^2.8.2", + "serialize-javascript": "^4.0.0", + "terser": "^4.6.2" + }, + "peerDependencies": { + "rollup": ">=0.66.0 <3" + } + }, + "node_modules/rollup-plugin-terser/node_modules/jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "license": "MIT", + "dependencies": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/rollup-plugin-terser/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/rollup-pluginutils": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz", + "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==", + "license": "MIT", + "dependencies": { + "estree-walker": "^0.6.1" + } + }, + "node_modules/rollup/node_modules/@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==", + "license": "MIT" + }, + "node_modules/rsvp": { + "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", + "license": "MIT", + "engines": { + "node": "6.* || >= 7.*" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "license": "ISC", + "dependencies": { + "aproba": "^1.1.1" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "license": "MIT", + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "license": "MIT" + }, + "node_modules/sane": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", + "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "license": "MIT", + "dependencies": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "bin": { + "sane": "src/cli.js" + }, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/sane/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sane/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "license": "MIT", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sanitize.css": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-10.0.0.tgz", + "integrity": "sha512-vTxrZz4dX5W86M6oVWVdOVe72ZiPs41Oi7Z6Km4W5Turyz28mrXSJhhEBZoRtzJWIv3833WKVwLSDWWkEfupMg==", + "license": "CC0-1.0" + }, + "node_modules/sass-loader": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-10.1.1.tgz", + "integrity": "sha512-W6gVDXAd5hR/WHsPicvZdjAWHBcEJ44UahgxcIE196fW2ong0ZHMPO1kZuI5q0VlvMQZh32gpv69PLWQm70qrw==", + "license": "MIT", + "dependencies": { + "klona": "^2.0.4", + "loader-utils": "^2.0.0", + "neo-async": "^2.6.2", + "schema-utils": "^3.0.0", + "semver": "^7.3.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0", + "sass": "^1.3.0", + "webpack": "^4.36.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + } + } + }, + "node_modules/sass-loader/node_modules/schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/sass-loader/node_modules/semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "license": "ISC" + }, + "node_modules/saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "license": "ISC", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/scheduler": { + "version": "0.20.1", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.1.tgz", + "integrity": "sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "license": "MIT", + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=", + "license": "MIT" + }, + "node_modules/selfsigned": { + "version": "1.10.8", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.8.tgz", + "integrity": "sha512-2P4PtieJeEwVgTU9QEcwIRDQ/mXJLX8/+I3ur+Pg16nS8oNbrGxEso9NyYWy8NAmXiNl4dlAp5MwoNeCWzON4w==", + "license": "MIT", + "dependencies": { + "node-forge": "^0.10.0" + } + }, + "node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "license": "ISC", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "license": "MIT" + }, + "node_modules/send/node_modules/http-errors": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz", + "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==", + "license": "MIT", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/send/node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "license": "MIT" + }, + "node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "license": "MIT", + "dependencies": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/serve-index/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/serve-index/node_modules/http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "license": "MIT", + "dependencies": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/serve-index/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "license": "ISC" + }, + "node_modules/serve-index/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "license": "MIT" + }, + "node_modules/serve-index/node_modules/setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "license": "ISC" + }, + "node_modules/serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "license": "MIT", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "license": "ISC" + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "license": "MIT", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", + "license": "MIT" + }, + "node_modules/setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==", + "license": "ISC" + }, + "node_modules/sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "license": "(MIT AND BSD-3-Clause)", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "bin": { + "sha.js": "bin.js" + } + }, + "node_modules/shallowequal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", + "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", + "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==", + "license": "MIT" + }, + "node_modules/shellwords": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", + "license": "MIT", + "optional": true + }, + "node_modules/shortid": { + "version": "2.2.16", + "resolved": "https://registry.npmjs.org/shortid/-/shortid-2.2.16.tgz", + "integrity": "sha512-Ugt+GIZqvGXCIItnsL+lvFJOiN7RYqlGy7QE41O3YC1xbNSeDGIRO7xg2JJXIAj1cAGnOeC1r7/T9pgrtQbv4g==", + "dependencies": { + "nanoid": "^2.1.0" + } + }, + "node_modules/shortid/node_modules/nanoid": { + "version": "2.1.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-2.1.11.tgz", + "integrity": "sha512-s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA==" + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", + "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==", + "license": "ISC" + }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "license": "MIT", + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "license": "MIT" + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "license": "MIT" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" + } + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "license": "MIT", + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "license": "MIT", + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "license": "MIT", + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/snapdragon/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "license": "MIT" + }, + "node_modules/snapdragon/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sockjs": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz", + "integrity": "sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==", + "license": "MIT", + "dependencies": { + "faye-websocket": "^0.11.3", + "uuid": "^3.4.0", + "websocket-driver": "^0.7.4" + } + }, + "node_modules/sockjs-client": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.0.tgz", + "integrity": "sha512-8Dt3BDi4FYNrCFGTL/HtwVzkARrENdwOUf1ZoW/9p3M8lZdFT35jVdrHza+qgxuG9H3/shR4cuX/X9umUrjP8Q==", + "license": "MIT", + "dependencies": { + "debug": "^3.2.6", + "eventsource": "^1.0.7", + "faye-websocket": "^0.11.3", + "inherits": "^2.0.4", + "json3": "^3.3.3", + "url-parse": "^1.4.7" + } + }, + "node_modules/sockjs-client/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/sockjs-client/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", + "license": "MIT", + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "license": "MIT" + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "license": "MIT", + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "license": "MIT" + }, + "node_modules/sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==", + "license": "MIT" + }, + "node_modules/spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "license": "Apache-2.0", + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "license": "CC-BY-3.0" + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "license": "MIT", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz", + "integrity": "sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==", + "license": "CC0-1.0" + }, + "node_modules/spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "license": "MIT", + "dependencies": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "license": "MIT", + "dependencies": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + } + }, + "node_modules/spdy-transport/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "license": "MIT", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "license": "MIT", + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/split-string/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "license": "BSD-3-Clause" + }, + "node_modules/sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "license": "MIT", + "dependencies": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "license": "ISC", + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "license": "MIT" + }, + "node_modules/stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==", + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stackframe": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.2.0.tgz", + "integrity": "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==", + "license": "MIT" + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "license": "MIT", + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=", + "license": "ISC", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "license": "MIT", + "dependencies": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "node_modules/stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "license": "MIT", + "dependencies": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "node_modules/stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==", + "license": "MIT" + }, + "node_modules/strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-length": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.1.tgz", + "integrity": "sha512-PKyXUd0LK0ePjSOnWn34V2uD6acUWev9uy0Ft05k0E8xRW+SKcA0F7eMr7h5xlzfn+4O3N+55rduYyet3Jk+jw==", + "license": "MIT", + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-natural-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", + "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==", + "license": "MIT" + }, + "node_modules/string-width": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", + "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.4.tgz", + "integrity": "sha512-pknFIWVachNcyqRfaQSeu/FUfpvJTe4uskUSZ9Wc1RijsPuzbZ8TyYT8WCNnntCjUEqQ3vUHMAfVj2+wLAisPQ==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2", + "has-symbols": "^1.0.1", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.3.1", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz", + "integrity": "sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz", + "integrity": "sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==", + "license": "MIT", + "dependencies": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "license": "BSD-2-Clause", + "dependencies": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-comments": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-1.0.2.tgz", + "integrity": "sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==", + "license": "MIT", + "dependencies": { + "babel-extract-comments": "^1.0.0", + "babel-plugin-transform-object-rest-spread": "^6.26.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "license": "MIT", + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/style-loader": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.3.0.tgz", + "integrity": "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==", + "license": "MIT", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^2.7.0" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/style-loader/node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/styled-components": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-5.2.1.tgz", + "integrity": "sha512-sBdgLWrCFTKtmZm/9x7jkIabjFNVzCUeKfoQsM6R3saImkUnjx0QYdLwJHBjY9ifEcmjDamJDVfknWm1yxZPxQ==", + "dependencies": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/traverse": "^7.4.5", + "@emotion/is-prop-valid": "^0.8.8", + "@emotion/stylis": "^0.8.4", + "@emotion/unitless": "^0.7.4", + "babel-plugin-styled-components": ">= 1", + "css-to-react-native": "^3.0.0", + "hoist-non-react-statics": "^3.0.0", + "shallowequal": "^1.1.0", + "supports-color": "^5.5.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/styled-components" + }, + "peerDependencies": { + "react": ">= 16.8.0", + "react-dom": ">= 16.8.0", + "react-is": ">= 16.8.0" + } + }, + "node_modules/styled-components/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/stylehacks": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", + "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", + "license": "MIT", + "dependencies": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/stylehacks/node_modules/postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "license": "MIT", + "dependencies": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-color/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz", + "integrity": "sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==", + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==", + "license": "MIT" + }, + "node_modules/svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "license": "MIT", + "dependencies": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/svgo/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/es-abstract": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz", + "integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==", + "license": "MIT", + "dependencies": { + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1", + "is-callable": "^1.2.2", + "is-regex": "^1.1.1", + "object-inspect": "^1.8.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.1", + "string.prototype.trimend": "^1.0.1", + "string.prototype.trimstart": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svgo/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "license": "MIT", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/svgo/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/svgo/node_modules/util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/symbol-observable": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", + "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "license": "MIT" + }, + "node_modules/table": { + "version": "6.0.7", + "resolved": "https://registry.npmjs.org/table/-/table-6.0.7.tgz", + "integrity": "sha512-rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g==", + "license": "BSD-3-Clause", + "dependencies": { + "ajv": "^7.0.2", + "lodash": "^4.17.20", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.0" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/table/node_modules/ajv": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-7.1.1.tgz", + "integrity": "sha512-ga/aqDYnUy/o7vbsRTFhhTsNeXiYb5JWDIcRIeZfwRNCefwjNTVYCGdGSUrEmiu3yDK3vFvNbgJxvrQW4JXrYQ==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/table/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/tar": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.0.tgz", + "integrity": "sha512-DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA==", + "license": "ISC", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/tar/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/temp-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", + "integrity": "sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/tempy": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.3.0.tgz", + "integrity": "sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==", + "license": "MIT", + "dependencies": { + "temp-dir": "^1.0.0", + "type-fest": "^0.3.1", + "unique-string": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tempy/node_modules/type-fest": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", + "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=6" + } + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "license": "MIT", + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz", + "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==", + "license": "BSD-2-Clause", + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-4.2.3.tgz", + "integrity": "sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==", + "license": "MIT", + "dependencies": { + "cacache": "^15.0.5", + "find-cache-dir": "^3.3.1", + "jest-worker": "^26.5.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "source-map": "^0.6.1", + "terser": "^5.3.4", + "webpack-sources": "^1.4.3" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", + "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", + "license": "MIT", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/terser-webpack-plugin/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser-webpack-plugin/node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "license": "MIT", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", + "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "license": "BSD-3-Clause", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/terser": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.6.0.tgz", + "integrity": "sha512-vyqLMoqadC1uR0vywqOZzriDYzgEkNJFK4q9GeyOBHIbiECHiWLKcWfbQWAUaPfxkjDhapSlZB9f7fkMrvkVjA==", + "license": "BSD-2-Clause", + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.19" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin/node_modules/terser/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 8" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "license": "ISC", + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "license": "MIT" + }, + "node_modules/throat": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", + "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==", + "license": "MIT" + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "license": "MIT", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", + "license": "MIT" + }, + "node_modules/timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "license": "MIT", + "dependencies": { + "setimmediate": "^1.0.4" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=", + "license": "MIT" + }, + "node_modules/tiny-invariant": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.1.0.tgz", + "integrity": "sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==" + }, + "node_modules/tiny-warning": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + }, + "node_modules/tmpl": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz", + "integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=", + "license": "BSD-3-Clause" + }, + "node_modules/to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", + "license": "MIT" + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "license": "MIT", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "license": "MIT", + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "license": "MIT", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "license": "BSD-3-Clause", + "dependencies": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/tr46": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz", + "integrity": "sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==", + "license": "MIT", + "dependencies": { + "punycode": "^2.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tryer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", + "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==", + "license": "MIT" + }, + "node_modules/ts-pnp": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", + "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==", + "license": "MIT", + "engines": { + "node": ">=6" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/tsconfig-paths": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz", + "integrity": "sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==", + "license": "MIT", + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.0", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tslib": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", + "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==", + "license": "0BSD" + }, + "node_modules/tsutils": { + "version": "3.20.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.20.0.tgz", + "integrity": "sha512-RYbuQuvkhuqVeXweWT3tJLKOEJ/UUw9GjNEZGWdrLLlM+611o1gwLHBpxoFJKKl25fLprp2eVthtKs5JOrNeXg==", + "license": "MIT", + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/tsutils/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "license": "0BSD" + }, + "node_modules/tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", + "license": "MIT" + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "license": "Apache-2.0", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "license": "Unlicense" + }, + "node_modules/type": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", + "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==", + "license": "ISC" + }, + "node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "license": "MIT", + "dependencies": { + "prelude-ls": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "license": "(MIT OR CC0-1.0)", + "engines": { + "node": ">=8" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "license": "MIT", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "license": "MIT" + }, + "node_modules/typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "license": "MIT", + "dependencies": { + "is-typedarray": "^1.0.0" + } + }, + "node_modules/typescript": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.2.2.tgz", + "integrity": "sha512-tbb+NVrLfnsJy3M59lsDgrzWIflR4d4TIUjz+heUnHZwdF7YsrMTKoRERiIvI2lvBG95dfpLxB21WZhys1bgaQ==", + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" + } + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", + "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", + "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", + "license": "MIT", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^1.0.4", + "unicode-property-aliases-ecmascript": "^1.0.4" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz", + "integrity": "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz", + "integrity": "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "license": "MIT", + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", + "license": "MIT" + }, + "node_modules/uniqs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", + "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=", + "license": "MIT" + }, + "node_modules/unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "license": "ISC", + "dependencies": { + "unique-slug": "^2.0.0" + } + }, + "node_modules/unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4" + } + }, + "node_modules/unique-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", + "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=", + "license": "MIT", + "dependencies": { + "crypto-random-string": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=", + "license": "MIT" + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "license": "MIT", + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "license": "MIT", + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "license": "MIT", + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "license": "MIT", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "license": "MIT" + }, + "node_modules/url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "license": "MIT", + "dependencies": { + "punycode": "1.3.2", + "querystring": "0.2.0" + } + }, + "node_modules/url-loader": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", + "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", + "license": "MIT", + "dependencies": { + "loader-utils": "^2.0.0", + "mime-types": "^2.1.27", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "file-loader": "*", + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "file-loader": { + "optional": true + } + } + }, + "node_modules/url-loader/node_modules/schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "license": "MIT", + "dependencies": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/url-parse": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.1.tgz", + "integrity": "sha512-HOfCOUJt7iSYzEx/UqgtwKRMC6EU91NFhsCHMv9oM03VJcVo2Qrp8T8kI9D7amFf1cu+/3CEhgb3rF9zL7k85Q==", + "license": "MIT", + "dependencies": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "node_modules/url/node_modules/punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", + "license": "MIT" + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "license": "MIT", + "dependencies": { + "inherits": "2.0.3" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "license": "MIT" + }, + "node_modules/util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", + "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "license": "MIT", + "dependencies": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + } + }, + "node_modules/util/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "license": "ISC" + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=", + "license": "MIT" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "license": "MIT", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "license": "MIT", + "bin": { + "uuid": "bin/uuid" + } + }, + "node_modules/v8-compile-cache": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz", + "integrity": "sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==", + "license": "MIT" + }, + "node_modules/v8-to-istanbul": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.0.tgz", + "integrity": "sha512-uXUVqNUCLa0AH1vuVxzi+MI4RfxEOKt9pBgKwHbgH7st8Kv2P1m+jvWNnektzBh5QShF3ODgKmUFCf38LnVz1g==", + "license": "ISC", + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 8" + } + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "license": "Apache-2.0", + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/value-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz", + "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vendors": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", + "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "engines": [ + "node >=0.6.0" + ], + "license": "MIT", + "dependencies": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + } + }, + "node_modules/verror/node_modules/extsprintf": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz", + "integrity": "sha1-4mifjzVvrWLMplo6kcXfX5VRaS8=", + "engines": [ + "node >=0.6.0" + ], + "license": "MIT" + }, + "node_modules/vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==", + "license": "MIT" + }, + "node_modules/w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "license": "MIT", + "dependencies": { + "browser-process-hrtime": "^1.0.0" + } + }, + "node_modules/w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "license": "MIT", + "dependencies": { + "xml-name-validator": "^3.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/walker": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", + "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", + "license": "Apache-2.0", + "dependencies": { + "makeerror": "1.0.x" + } + }, + "node_modules/watchpack": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", + "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0" + }, + "optionalDependencies": { + "chokidar": "^3.4.1", + "watchpack-chokidar2": "^2.0.1" + } + }, + "node_modules/watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", + "license": "MIT", + "optional": true, + "dependencies": { + "chokidar": "^2.1.8" + } + }, + "node_modules/watchpack/node_modules/anymatch": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", + "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "license": "ISC", + "optional": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/watchpack/node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/watchpack/node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "license": "MIT", + "optional": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/watchpack/node_modules/chokidar": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", + "integrity": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==", + "license": "MIT", + "optional": true, + "dependencies": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.1" + } + }, + "node_modules/watchpack/node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "license": "MIT", + "optional": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/watchpack/node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "license": "MIT", + "optional": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/watchpack/node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/watchpack/node_modules/readdirp": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", + "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", + "license": "MIT", + "optional": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/watchpack/node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "optional": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "license": "MIT", + "dependencies": { + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/web-vitals": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-1.1.0.tgz", + "integrity": "sha512-1cx54eRxY/+M0KNKdNpNnuXAXG+vJEvwScV4DiV9rOYDguHoeDIzm09ghBohOPtkqPO5OtPC14FWkNva3SDisg==", + "license": "Apache-2.0" + }, + "node_modules/webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==", + "license": "BSD-2-Clause", + "engines": { + "node": ">=10.4" + } + }, + "node_modules/webpack": { + "version": "4.44.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.44.2.tgz", + "integrity": "sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==", + "license": "MIT", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.3.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=6.11.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + }, + "webpack-command": { + "optional": true + } + } + }, + "node_modules/webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "license": "MIT", + "dependencies": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-server": { + "version": "3.11.1", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.1.tgz", + "integrity": "sha512-u4R3mRzZkbxQVa+MBWi2uVpB5W59H3ekZAJsQlKUTdl7Elcah2EhygTPLmeFXybQkf9i2+L0kn7ik9SnXa6ihQ==", + "license": "MIT", + "dependencies": { + "ansi-html": "0.0.7", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "bin": { + "webpack-dev-server": "bin/webpack-dev-server.js" + }, + "engines": { + "node": ">= 6.11.5" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-dev-server/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "license": "MIT", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "license": "ISC", + "dependencies": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + } + }, + "node_modules/webpack-dev-server/node_modules/cliui/node_modules/ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/cliui/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==", + "license": "MIT" + }, + "node_modules/webpack-dev-server/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "license": "MIT", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "license": "MIT", + "dependencies": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "license": "MIT", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "license": "MIT", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "license": "MIT", + "dependencies": { + "resolve-from": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack-dev-server/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/webpack-dev-server/node_modules/string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/string-width/node_modules/ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/string-width/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "license": "MIT", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack-dev-server/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "license": "MIT", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/wrap-ansi/node_modules/ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/wrap-ansi/node_modules/strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^4.1.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-dev-server/node_modules/yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "license": "MIT", + "dependencies": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "node_modules/webpack-dev-server/node_modules/yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "license": "ISC", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "node_modules/webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "license": "MIT", + "dependencies": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/webpack-manifest-plugin": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz", + "integrity": "sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==", + "license": "MIT", + "dependencies": { + "fs-extra": "^7.0.0", + "lodash": ">=3.5 <5", + "object.entries": "^1.1.0", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=6.11.5" + }, + "peerDependencies": { + "webpack": "2 || 3 || 4" + } + }, + "node_modules/webpack-manifest-plugin/node_modules/fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "license": "MIT", + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/webpack/node_modules/acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/webpack/node_modules/cacache": { + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", + "license": "ISC", + "dependencies": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + } + }, + "node_modules/webpack/node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "license": "ISC" + }, + "node_modules/webpack/node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "license": "MIT", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/webpack/node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "license": "MIT", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "license": "MIT", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "license": "MIT", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/webpack/node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/webpack/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "license": "MIT", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/ssri": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", + "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", + "license": "ISC", + "dependencies": { + "figgy-pudding": "^3.5.1" + } + }, + "node_modules/webpack/node_modules/terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "license": "MIT", + "dependencies": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "engines": { + "node": ">= 6.9.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/webpack/node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "license": "ISC" + }, + "node_modules/websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "license": "Apache-2.0", + "dependencies": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", + "license": "Apache-2.0", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "license": "MIT", + "dependencies": { + "iconv-lite": "0.4.24" + } + }, + "node_modules/whatwg-fetch": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.1.tgz", + "integrity": "sha512-IEmN/ZfmMw6G1hgZpVd0LuZXOQDisrMOZrzYd5x3RAK4bMPlJohKUZWZ9t/QsTvH0dV9TbPDcc2OSuIDcihnHA==", + "license": "MIT" + }, + "node_modules/whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "license": "MIT" + }, + "node_modules/whatwg-url": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.4.0.tgz", + "integrity": "sha512-vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw==", + "license": "MIT", + "dependencies": { + "lodash.sortby": "^4.7.0", + "tr46": "^2.0.2", + "webidl-conversions": "^6.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "license": "ISC" + }, + "node_modules/word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/workbox-background-sync": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-5.1.4.tgz", + "integrity": "sha512-AH6x5pYq4vwQvfRDWH+vfOePfPIYQ00nCEB7dJRU1e0n9+9HMRyvI63FlDvtFT2AvXVRsXvUt7DNMEToyJLpSA==", + "license": "MIT", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-broadcast-update": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-5.1.4.tgz", + "integrity": "sha512-HTyTWkqXvHRuqY73XrwvXPud/FN6x3ROzkfFPsRjtw/kGZuZkPzfeH531qdUGfhtwjmtO/ZzXcWErqVzJNdXaA==", + "license": "MIT", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-build": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-5.1.4.tgz", + "integrity": "sha512-xUcZn6SYU8usjOlfLb9Y2/f86Gdo+fy1fXgH8tJHjxgpo53VVsqRX0lUDw8/JuyzNmXuo8vXX14pXX2oIm9Bow==", + "license": "MIT", + "dependencies": { + "@babel/core": "^7.8.4", + "@babel/preset-env": "^7.8.4", + "@babel/runtime": "^7.8.4", + "@hapi/joi": "^15.1.0", + "@rollup/plugin-node-resolve": "^7.1.1", + "@rollup/plugin-replace": "^2.3.1", + "@surma/rollup-plugin-off-main-thread": "^1.1.1", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^8.1.0", + "glob": "^7.1.6", + "lodash.template": "^4.5.0", + "pretty-bytes": "^5.3.0", + "rollup": "^1.31.1", + "rollup-plugin-babel": "^4.3.3", + "rollup-plugin-terser": "^5.3.1", + "source-map": "^0.7.3", + "source-map-url": "^0.4.0", + "stringify-object": "^3.3.0", + "strip-comments": "^1.0.2", + "tempy": "^0.3.0", + "upath": "^1.2.0", + "workbox-background-sync": "^5.1.4", + "workbox-broadcast-update": "^5.1.4", + "workbox-cacheable-response": "^5.1.4", + "workbox-core": "^5.1.4", + "workbox-expiration": "^5.1.4", + "workbox-google-analytics": "^5.1.4", + "workbox-navigation-preload": "^5.1.4", + "workbox-precaching": "^5.1.4", + "workbox-range-requests": "^5.1.4", + "workbox-routing": "^5.1.4", + "workbox-strategies": "^5.1.4", + "workbox-streams": "^5.1.4", + "workbox-sw": "^5.1.4", + "workbox-window": "^5.1.4" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/workbox-build/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/workbox-build/node_modules/source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "license": "BSD-3-Clause", + "engines": { + "node": ">= 8" + } + }, + "node_modules/workbox-cacheable-response": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-5.1.4.tgz", + "integrity": "sha512-0bfvMZs0Of1S5cdswfQK0BXt6ulU5kVD4lwer2CeI+03czHprXR3V4Y8lPTooamn7eHP8Iywi5QjyAMjw0qauA==", + "license": "MIT", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-core": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-5.1.4.tgz", + "integrity": "sha512-+4iRQan/1D8I81nR2L5vcbaaFskZC2CL17TLbvWVzQ4qiF/ytOGF6XeV54pVxAvKUtkLANhk8TyIUMtiMw2oDg==", + "license": "MIT" + }, + "node_modules/workbox-expiration": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-5.1.4.tgz", + "integrity": "sha512-oDO/5iC65h2Eq7jctAv858W2+CeRW5e0jZBMNRXpzp0ZPvuT6GblUiHnAsC5W5lANs1QS9atVOm4ifrBiYY7AQ==", + "license": "MIT", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-google-analytics": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-5.1.4.tgz", + "integrity": "sha512-0IFhKoEVrreHpKgcOoddV+oIaVXBFKXUzJVBI+nb0bxmcwYuZMdteBTp8AEDJacENtc9xbR0wa9RDCnYsCDLjA==", + "license": "MIT", + "dependencies": { + "workbox-background-sync": "^5.1.4", + "workbox-core": "^5.1.4", + "workbox-routing": "^5.1.4", + "workbox-strategies": "^5.1.4" + } + }, + "node_modules/workbox-navigation-preload": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-5.1.4.tgz", + "integrity": "sha512-Wf03osvK0wTflAfKXba//QmWC5BIaIZARU03JIhAEO2wSB2BDROWI8Q/zmianf54kdV7e1eLaIEZhth4K4MyfQ==", + "license": "MIT", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-precaching": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-5.1.4.tgz", + "integrity": "sha512-gCIFrBXmVQLFwvAzuGLCmkUYGVhBb7D1k/IL7pUJUO5xacjLcFUaLnnsoVepBGAiKw34HU1y/YuqvTKim9qAZA==", + "license": "MIT", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-range-requests": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-5.1.4.tgz", + "integrity": "sha512-1HSujLjgTeoxHrMR2muDW2dKdxqCGMc1KbeyGcmjZZAizJTFwu7CWLDmLv6O1ceWYrhfuLFJO+umYMddk2XMhw==", + "license": "MIT", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-routing": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-5.1.4.tgz", + "integrity": "sha512-8ljknRfqE1vEQtnMtzfksL+UXO822jJlHTIR7+BtJuxQ17+WPZfsHqvk1ynR/v0EHik4x2+826Hkwpgh4GKDCw==", + "license": "MIT", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/workbox-strategies": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-5.1.4.tgz", + "integrity": "sha512-VVS57LpaJTdjW3RgZvPwX0NlhNmscR7OQ9bP+N/34cYMDzXLyA6kqWffP6QKXSkca1OFo/v6v7hW7zrrguo6EA==", + "license": "MIT", + "dependencies": { + "workbox-core": "^5.1.4", + "workbox-routing": "^5.1.4" + } + }, + "node_modules/workbox-streams": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-5.1.4.tgz", + "integrity": "sha512-xU8yuF1hI/XcVhJUAfbQLa1guQUhdLMPQJkdT0kn6HP5CwiPOGiXnSFq80rAG4b1kJUChQQIGPrq439FQUNVrw==", + "license": "MIT", + "dependencies": { + "workbox-core": "^5.1.4", + "workbox-routing": "^5.1.4" + } + }, + "node_modules/workbox-sw": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-5.1.4.tgz", + "integrity": "sha512-9xKnKw95aXwSNc8kk8gki4HU0g0W6KXu+xks7wFuC7h0sembFnTrKtckqZxbSod41TDaGh+gWUA5IRXrL0ECRA==", + "license": "MIT" + }, + "node_modules/workbox-webpack-plugin": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-5.1.4.tgz", + "integrity": "sha512-PZafF4HpugZndqISi3rZ4ZK4A4DxO8rAqt2FwRptgsDx7NF8TVKP86/huHquUsRjMGQllsNdn4FNl8CD/UvKmQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.5.5", + "fast-json-stable-stringify": "^2.0.0", + "source-map-url": "^0.4.0", + "upath": "^1.1.2", + "webpack-sources": "^1.3.0", + "workbox-build": "^5.1.4" + }, + "engines": { + "node": ">=8.0.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/workbox-window": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-5.1.4.tgz", + "integrity": "sha512-vXQtgTeMCUq/4pBWMfQX8Ee7N2wVC4Q7XYFqLnfbXJ2hqew/cU1uMTD2KqGEgEpE4/30luxIxgE+LkIa8glBYw==", + "license": "MIT", + "dependencies": { + "workbox-core": "^5.1.4" + } + }, + "node_modules/worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "license": "MIT", + "dependencies": { + "errno": "~0.1.7" + } + }, + "node_modules/worker-rpc": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/worker-rpc/-/worker-rpc-0.1.1.tgz", + "integrity": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==", + "license": "MIT", + "dependencies": { + "microevent.ts": "~0.1.1" + } + }, + "node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "license": "ISC" + }, + "node_modules/write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "license": "ISC", + "dependencies": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "node_modules/ws": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", + "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", + "license": "MIT", + "dependencies": { + "async-limiter": "~1.0.0" + } + }, + "node_modules/xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "license": "Apache-2.0" + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", + "license": "MIT" + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "license": "MIT", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==", + "license": "ISC" + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "license": "ISC" + }, + "node_modules/yaml": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.0.tgz", + "integrity": "sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==", + "license": "ISC", + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "license": "MIT", + "dependencies": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "license": "ISC", + "dependencies": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz", + "integrity": "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==", + "requires": { + "@babel/highlight": "^7.12.13" + } + }, + "@babel/compat-data": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.13.tgz", + "integrity": "sha512-U/hshG5R+SIoW7HVWIdmy1cB7s3ki+r3FpyEZiCgpi4tFgPnX/vynY80ZGSASOIrUM6O7VxOgCZgdt7h97bUGg==" + }, + "@babel/core": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.17.tgz", + "integrity": "sha512-V3CuX1aBywbJvV2yzJScRxeiiw0v2KZZYYE3giywxzFJL13RiyPjaaDwhDnxmgFTTS7FgvM2ijr4QmKNIu0AtQ==", + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.12.17", + "@babel/helper-module-transforms": "^7.12.17", + "@babel/helpers": "^7.12.17", + "@babel/parser": "^7.12.17", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "requires": { + "minimist": "^1.2.5" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + } + } + }, + "@babel/generator": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.17.tgz", + "integrity": "sha512-DSA7ruZrY4WI8VxuS1jWSRezFnghEoYEFrZcw9BizQRmOZiUsiHl59+qEARGPqPikwA/GPTyRCi7isuCK/oyqg==", + "requires": { + "@babel/types": "^7.12.17", + "jsesc": "^2.5.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + } + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz", + "integrity": "sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw==", + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz", + "integrity": "sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA==", + "requires": { + "@babel/helper-explode-assignable-expression": "^7.12.13", + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-compilation-targets": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.17.tgz", + "integrity": "sha512-5EkibqLVYOuZ89BSg2lv+GG8feywLuvMXNYgf0Im4MssE0mFWPztSpJbildNnUgw0bLI2EsIN4MpSHC2iUJkQA==", + "requires": { + "@babel/compat-data": "^7.12.13", + "@babel/helper-validator-option": "^7.12.17", + "browserslist": "^4.14.5", + "semver": "^5.5.0" + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.17.tgz", + "integrity": "sha512-I/nurmTxIxHV0M+rIpfQBF1oN342+yvl2kwZUrQuOClMamHF1w5tknfZubgNOLRoA73SzBFAdFcpb4M9HwOeWQ==", + "requires": { + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-member-expression-to-functions": "^7.12.17", + "@babel/helper-optimise-call-expression": "^7.12.13", + "@babel/helper-replace-supers": "^7.12.13", + "@babel/helper-split-export-declaration": "^7.12.13" + }, + "dependencies": { + "@babel/core": { + "version": "7.12.3", + "peer": true, + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.1", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.1", + "@babel/parser": "^7.12.3", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.12.1", + "@babel/types": "^7.12.1", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + } + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "peer": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "peer": true + } + } + }, + "@babel/helper-create-regexp-features-plugin": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz", + "integrity": "sha512-p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.12.13", + "regexpu-core": "^4.7.1" + } + }, + "@babel/helper-explode-assignable-expression": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.13.tgz", + "integrity": "sha512-5loeRNvMo9mx1dA/d6yNi+YiKziJZFylZnCo1nmFF4qPU4yJ14abhWESuSMQSlQxWdxdOFzxXjk/PpfudTtYyw==", + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-function-name": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz", + "integrity": "sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==", + "requires": { + "@babel/helper-get-function-arity": "^7.12.13", + "@babel/template": "^7.12.13", + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz", + "integrity": "sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==", + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.12.13.tgz", + "integrity": "sha512-KSC5XSj5HreRhYQtZ3cnSnQwDzgnbdUDEFsxkN0m6Q3WrCRt72xrnZ8+h+pX7YxM7hr87zIO3a/v5p/H3TrnVw==", + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.17.tgz", + "integrity": "sha512-Bzv4p3ODgS/qpBE0DiJ9qf5WxSmrQ8gVTe8ClMfwwsY2x/rhykxxy3bXzG7AGTnPB2ij37zGJ/Q/6FruxHxsxg==", + "requires": { + "@babel/types": "^7.12.17" + } + }, + "@babel/helper-module-imports": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz", + "integrity": "sha512-NGmfvRp9Rqxy0uHSSVP+SRIW1q31a7Ji10cLBcqSDUngGentY4FRiHOFZFE1CLU5eiL0oE8reH7Tg1y99TDM/g==", + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-module-transforms": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.17.tgz", + "integrity": "sha512-sFL+p6zOCQMm9vilo06M4VHuTxUAwa6IxgL56Tq1DVtA0ziAGTH1ThmJq7xwPqdQlgAbKX3fb0oZNbtRIyA5KQ==", + "requires": { + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-replace-supers": "^7.12.13", + "@babel/helper-simple-access": "^7.12.13", + "@babel/helper-split-export-declaration": "^7.12.13", + "@babel/helper-validator-identifier": "^7.12.11", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17", + "lodash": "^4.17.19" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz", + "integrity": "sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==", + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.12.13.tgz", + "integrity": "sha512-C+10MXCXJLiR6IeG9+Wiejt9jmtFpxUc3MQqCmPY8hfCjyUGl9kT+B2okzEZrtykiwrc4dbCPdDoz0A/HQbDaA==" + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.13.tgz", + "integrity": "sha512-Qa6PU9vNcj1NZacZZI1Mvwt+gXDH6CTfgAkSjeRMLE8HxtDK76+YDId6NQR+z7Rgd5arhD2cIbS74r0SxD6PDA==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.12.13", + "@babel/helper-wrap-function": "^7.12.13", + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-replace-supers": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.13.tgz", + "integrity": "sha512-pctAOIAMVStI2TMLhozPKbf5yTEXc0OJa0eENheb4w09SrgOWEs+P4nTOZYJQCqs8JlErGLDPDJTiGIp3ygbLg==", + "requires": { + "@babel/helper-member-expression-to-functions": "^7.12.13", + "@babel/helper-optimise-call-expression": "^7.12.13", + "@babel/traverse": "^7.12.13", + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-simple-access": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz", + "integrity": "sha512-0ski5dyYIHEfwpWGx5GPWhH35j342JaflmCeQmsPWcrOQDtCN6C1zKAVRFVbK53lPW2c9TsuLLSUDf0tIGJ5hA==", + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz", + "integrity": "sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==", + "requires": { + "@babel/types": "^7.12.1" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz", + "integrity": "sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==", + "requires": { + "@babel/types": "^7.12.13" + } + }, + "@babel/helper-validator-identifier": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", + "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==" + }, + "@babel/helper-validator-option": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz", + "integrity": "sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==" + }, + "@babel/helper-wrap-function": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.12.13.tgz", + "integrity": "sha512-t0aZFEmBJ1LojdtJnhOaQEVejnzYhyjWHSsNSNo8vOYRbAJNh6r6GQF7pd36SqG7OKGbn+AewVQ/0IfYfIuGdw==", + "requires": { + "@babel/helper-function-name": "^7.12.13", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.13", + "@babel/types": "^7.12.13" + } + }, + "@babel/helpers": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.17.tgz", + "integrity": "sha512-tEpjqSBGt/SFEsFikKds1sLNChKKGGR17flIgQKXH4fG6m9gTgl3gnOC1giHNyaBCSKuTfxaSzHi7UnvqiVKxg==", + "requires": { + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17" + } + }, + "@babel/highlight": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.12.13.tgz", + "integrity": "sha512-kocDQvIbgMKlWxXe9fof3TQ+gkIPOUSEYhJjqUjvKMez3krV7vbzYCDq39Oj11UAVK7JqPVGQPlgE85dPNlQww==", + "requires": { + "@babel/helper-validator-identifier": "^7.12.11", + "chalk": "^2.0.0", + "js-tokens": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "@babel/parser": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.17.tgz", + "integrity": "sha512-r1yKkiUTYMQ8LiEI0UcQx5ETw5dpTLn9wijn9hk6KkTtOK95FndDN10M+8/s6k/Ymlbivw0Av9q4SlgF80PtHg==" + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.13.tgz", + "integrity": "sha512-1KH46Hx4WqP77f978+5Ye/VUbuwQld2hph70yaw2hXS2v7ER2f3nlpNMu909HO2rbvP0NKLlMVDPh9KXklVMhA==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-remap-async-to-generator": "^7.12.13", + "@babel/plugin-syntax-async-generators": "^7.8.0" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.13.tgz", + "integrity": "sha512-8SCJ0Ddrpwv4T7Gwb33EmW1V9PY5lggTO+A8WjyIwxrSHDUyBw4MtF96ifn1n8H806YlxbVCoKXbbmzD6RD+cA==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-proposal-dynamic-import": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.17.tgz", + "integrity": "sha512-ZNGoFZqrnuy9H2izB2jLlnNDAfVPlGl5NhFEiFe4D84ix9GQGygF+CWMGHKuE+bpyS/AOuDQCnkiRNqW2IzS1Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-dynamic-import": "^7.8.0" + } + }, + "@babel/plugin-proposal-export-namespace-from": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz", + "integrity": "sha512-INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.13.tgz", + "integrity": "sha512-v9eEi4GiORDg8x+Dmi5r8ibOe0VXoKDeNPYcTTxdGN4eOWikrJfDJCJrr1l5gKGvsNyGJbrfMftC2dTL6oz7pg==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-json-strings": "^7.8.0" + } + }, + "@babel/plugin-proposal-logical-assignment-operators": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.13.tgz", + "integrity": "sha512-fqmiD3Lz7jVdK6kabeSr1PZlWSUVqSitmHEe3Z00dtGTKieWnX9beafvavc32kjORa5Bai4QNHgFDwWJP+WtSQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.13.tgz", + "integrity": "sha512-Qoxpy+OxhDBI5kRqliJFAl4uWXk3Bn24WeFstPH0iLymFehSAUR8MHpqU7njyXv/qbo7oN6yTy5bfCmXdKpo1Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz", + "integrity": "sha512-O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.13.tgz", + "integrity": "sha512-WvA1okB/0OS/N3Ldb3sziSrXg6sRphsBgqiccfcQq7woEn5wQLNX82Oc4PlaFcdwcWHuQXAtb8ftbS8Fbsg/sg==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-transform-parameters": "^7.12.13" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.13.tgz", + "integrity": "sha512-9+MIm6msl9sHWg58NvqpNpLtuFbmpFYk37x8kgnGzAHvX35E1FyAwSUt5hIkSoWJFSAH+iwU8bJ4fcD1zKXOzg==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.0" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.17.tgz", + "integrity": "sha512-TvxwI80pWftrGPKHNfkvX/HnoeSTR7gC4ezWnAL39PuktYUe6r8kEpOLTYnkBTsaoeazXm2jHJ22EQ81sdgfcA==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1", + "@babel/plugin-syntax-optional-chaining": "^7.8.0" + } + }, + "@babel/plugin-proposal-private-methods": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.13.tgz", + "integrity": "sha512-sV0V57uUwpauixvR7s2o75LmwJI6JECwm5oPUY5beZB1nBl2i37hc7CJGqB5G+58fur5Y6ugvl3LRONk5x34rg==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz", + "integrity": "sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.3" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz", + "integrity": "sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-top-level-await": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz", + "integrity": "sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.13.tgz", + "integrity": "sha512-tBtuN6qtCTd+iHzVZVOMNp+L04iIJBpqkdY42tWbmjIT5wvR2kx7gxMBsyhQtFzHwBbyGi9h8J8r9HgnOpQHxg==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.13.tgz", + "integrity": "sha512-psM9QHcHaDr+HZpRuJcE1PXESuGWSCcbiGFFhhwfzdbTxaGDVzuVtdNYliAwcRo3GFg0Bc8MmI+AvIGYIJG04A==", + "requires": { + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-remap-async-to-generator": "^7.12.13" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz", + "integrity": "sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.13.tgz", + "integrity": "sha512-Pxwe0iqWJX4fOOM2kEZeUuAxHMWb9nK+9oh5d11bsLoB0xMg+mkDpt0eYuDZB7ETrY9bbcVlKUGTOGWy7BHsMQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.13.tgz", + "integrity": "sha512-cqZlMlhCC1rVnxE5ZGMtIb896ijL90xppMiuWXcwcOAuFczynpd3KYemb91XFFPi3wJSe/OcrX9lXoowatkkxA==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.12.13", + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-optimise-call-expression": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-replace-supers": "^7.12.13", + "@babel/helper-split-export-declaration": "^7.12.13", + "globals": "^11.1.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.13.tgz", + "integrity": "sha512-dDfuROUPGK1mTtLKyDPUavmj2b6kFu82SmgpztBFEO974KMjJT+Ytj3/oWsTUMBmgPcp9J5Pc1SlcAYRpJ2hRA==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.13.tgz", + "integrity": "sha512-Dn83KykIFzjhA3FDPA1z4N+yfF3btDGhjnJwxIj0T43tP0flCujnU8fKgEkf0C1biIpSv9NZegPBQ1J6jYkwvQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz", + "integrity": "sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz", + "integrity": "sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz", + "integrity": "sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA==", + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.13.tgz", + "integrity": "sha512-xCbdgSzXYmHGyVX3+BsQjcd4hv4vA/FDy7Kc8eOpzKmBBPEOTurt0w5fCRQaGl+GSBORKgJdstQ1rHl4jbNseQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz", + "integrity": "sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ==", + "requires": { + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz", + "integrity": "sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz", + "integrity": "sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.13.tgz", + "integrity": "sha512-JHLOU0o81m5UqG0Ulz/fPC68/v+UTuGTWaZBUwpEk1fYQ1D9LfKV6MPn4ttJKqRo5Lm460fkzjLTL4EHvCprvA==", + "requires": { + "@babel/helper-module-transforms": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.13.tgz", + "integrity": "sha512-OGQoeVXVi1259HjuoDnsQMlMkT9UkZT9TpXAsqWplS/M0N1g3TJAn/ByOCeQu7mfjc5WpSsRU+jV1Hd89ts0kQ==", + "requires": { + "@babel/helper-module-transforms": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-simple-access": "^7.12.13", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.13.tgz", + "integrity": "sha512-aHfVjhZ8QekaNF/5aNdStCGzwTbU7SI5hUybBKlMzqIMC7w7Ho8hx5a4R/DkTHfRfLwHGGxSpFt9BfxKCoXKoA==", + "requires": { + "@babel/helper-hoist-variables": "^7.12.13", + "@babel/helper-module-transforms": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-validator-identifier": "^7.12.11", + "babel-plugin-dynamic-import-node": "^2.3.3" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.13.tgz", + "integrity": "sha512-BgZndyABRML4z6ibpi7Z98m4EVLFI9tVsZDADC14AElFaNHHBcJIovflJ6wtCqFxwy2YJ1tJhGRsr0yLPKoN+w==", + "requires": { + "@babel/helper-module-transforms": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz", + "integrity": "sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.12.13" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz", + "integrity": "sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz", + "integrity": "sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-replace-supers": "^7.12.13" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.13.tgz", + "integrity": "sha512-e7QqwZalNiBRHCpJg/P8s/VJeSRYgmtWySs1JwvfwPqhBbiWfOcHDKdeAi6oAyIimoKWBlwc8oTgbZHdhCoVZA==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz", + "integrity": "sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-react-constant-elements": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.12.13.tgz", + "integrity": "sha512-qmzKVTn46Upvtxv8LQoQ8mTCdUC83AOVQIQm57e9oekLT5cmK9GOMOfcWhe8jMNx4UJXn/UDhVZ/7lGofVNeDQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-react-display-name": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.13.tgz", + "integrity": "sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-react-jsx": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.17.tgz", + "integrity": "sha512-mwaVNcXV+l6qJOuRhpdTEj8sT/Z0owAVWf9QujTZ0d2ye9X/K+MTOTSizcgKOj18PGnTc/7g1I4+cIUjsKhBcw==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.12.13", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-jsx": "^7.12.13", + "@babel/types": "^7.12.17" + } + }, + "@babel/plugin-transform-react-jsx-development": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.17.tgz", + "integrity": "sha512-BPjYV86SVuOaudFhsJR1zjgxxOhJDt6JHNoD48DxWEIxUCAMjV1ys6DYw4SDYZh0b1QsS2vfIA9t/ZsQGsDOUQ==", + "requires": { + "@babel/plugin-transform-react-jsx": "^7.12.17" + } + }, + "@babel/plugin-transform-react-pure-annotations": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz", + "integrity": "sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.13.tgz", + "integrity": "sha512-lxb2ZAvSLyJ2PEe47hoGWPmW22v7CtSl9jW8mingV4H2sEX/JOcrAj2nPuGWi56ERUm2bUpjKzONAuT6HCn2EA==", + "requires": { + "regenerator-transform": "^0.14.2" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz", + "integrity": "sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz", + "integrity": "sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.13.tgz", + "integrity": "sha512-dUCrqPIowjqk5pXsx1zPftSq4sT0aCeZVAxhdgs3AMgyaDmoUT0G+5h3Dzja27t76aUEIJWlFgPJqJ/d4dbTtg==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz", + "integrity": "sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.13.tgz", + "integrity": "sha512-arIKlWYUgmNsF28EyfmiQHJLJFlAJNYkuQO10jL46ggjBpeb2re1P9K9YGxNJB45BqTbaslVysXDYm/g3sN/Qg==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz", + "integrity": "sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-unicode-escapes": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz", + "integrity": "sha512-0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz", + "integrity": "sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA==", + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/preset-env": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.17.tgz", + "integrity": "sha512-9PMijx8zFbCwTHrd2P4PJR5nWGH3zWebx2OcpTjqQrHhCiL2ssSR2Sc9ko2BsI2VmVBfoaQmPrlMTCui4LmXQg==", + "requires": { + "@babel/compat-data": "^7.12.13", + "@babel/helper-compilation-targets": "^7.12.17", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-validator-option": "^7.12.17", + "@babel/plugin-proposal-async-generator-functions": "^7.12.13", + "@babel/plugin-proposal-class-properties": "^7.12.13", + "@babel/plugin-proposal-dynamic-import": "^7.12.17", + "@babel/plugin-proposal-export-namespace-from": "^7.12.13", + "@babel/plugin-proposal-json-strings": "^7.12.13", + "@babel/plugin-proposal-logical-assignment-operators": "^7.12.13", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.13", + "@babel/plugin-proposal-numeric-separator": "^7.12.13", + "@babel/plugin-proposal-object-rest-spread": "^7.12.13", + "@babel/plugin-proposal-optional-catch-binding": "^7.12.13", + "@babel/plugin-proposal-optional-chaining": "^7.12.17", + "@babel/plugin-proposal-private-methods": "^7.12.13", + "@babel/plugin-proposal-unicode-property-regex": "^7.12.13", + "@babel/plugin-syntax-async-generators": "^7.8.0", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-dynamic-import": "^7.8.0", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.0", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.0", + "@babel/plugin-syntax-top-level-await": "^7.12.13", + "@babel/plugin-transform-arrow-functions": "^7.12.13", + "@babel/plugin-transform-async-to-generator": "^7.12.13", + "@babel/plugin-transform-block-scoped-functions": "^7.12.13", + "@babel/plugin-transform-block-scoping": "^7.12.13", + "@babel/plugin-transform-classes": "^7.12.13", + "@babel/plugin-transform-computed-properties": "^7.12.13", + "@babel/plugin-transform-destructuring": "^7.12.13", + "@babel/plugin-transform-dotall-regex": "^7.12.13", + "@babel/plugin-transform-duplicate-keys": "^7.12.13", + "@babel/plugin-transform-exponentiation-operator": "^7.12.13", + "@babel/plugin-transform-for-of": "^7.12.13", + "@babel/plugin-transform-function-name": "^7.12.13", + "@babel/plugin-transform-literals": "^7.12.13", + "@babel/plugin-transform-member-expression-literals": "^7.12.13", + "@babel/plugin-transform-modules-amd": "^7.12.13", + "@babel/plugin-transform-modules-commonjs": "^7.12.13", + "@babel/plugin-transform-modules-systemjs": "^7.12.13", + "@babel/plugin-transform-modules-umd": "^7.12.13", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.13", + "@babel/plugin-transform-new-target": "^7.12.13", + "@babel/plugin-transform-object-super": "^7.12.13", + "@babel/plugin-transform-parameters": "^7.12.13", + "@babel/plugin-transform-property-literals": "^7.12.13", + "@babel/plugin-transform-regenerator": "^7.12.13", + "@babel/plugin-transform-reserved-words": "^7.12.13", + "@babel/plugin-transform-shorthand-properties": "^7.12.13", + "@babel/plugin-transform-spread": "^7.12.13", + "@babel/plugin-transform-sticky-regex": "^7.12.13", + "@babel/plugin-transform-template-literals": "^7.12.13", + "@babel/plugin-transform-typeof-symbol": "^7.12.13", + "@babel/plugin-transform-unicode-escapes": "^7.12.13", + "@babel/plugin-transform-unicode-regex": "^7.12.13", + "@babel/preset-modules": "^0.1.3", + "@babel/types": "^7.12.17", + "core-js-compat": "^3.8.0", + "semver": "^5.5.0" + } + }, + "@babel/preset-modules": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz", + "integrity": "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", + "@babel/plugin-transform-dotall-regex": "^7.4.4", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + } + }, + "@babel/preset-react": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.13.tgz", + "integrity": "sha512-TYM0V9z6Abb6dj1K7i5NrEhA13oS5ujUYQYDfqIBXYHOc2c2VkFgc+q9kyssIyUfy4/hEwqrgSlJ/Qgv8zJLsA==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-transform-react-display-name": "^7.12.13", + "@babel/plugin-transform-react-jsx": "^7.12.13", + "@babel/plugin-transform-react-jsx-development": "^7.12.12", + "@babel/plugin-transform-react-pure-annotations": "^7.12.1" + } + }, + "@babel/runtime": { + "version": "7.12.18", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.18.tgz", + "integrity": "sha512-BogPQ7ciE6SYAUPtlm9tWbgI9+2AgqSam6QivMgXgAT+fKbgppaj4ZX15MHeLC1PVF5sNk70huBu20XxWOs8Cg==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/runtime-corejs3": { + "version": "7.12.18", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.18.tgz", + "integrity": "sha512-ngR7yhNTjDxxe1VYmhqQqqXZWujGb6g0IoA4qeG6MxNGRnIw2Zo8ImY8HfaQ7l3T6GklWhdNfyhWk0C0iocdVA==", + "requires": { + "core-js-pure": "^3.0.0", + "regenerator-runtime": "^0.13.4" + } + }, + "@babel/template": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz", + "integrity": "sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==", + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/parser": "^7.12.13", + "@babel/types": "^7.12.13" + } + }, + "@babel/traverse": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.17.tgz", + "integrity": "sha512-LGkTqDqdiwC6Q7fWSwQoas/oyiEYw6Hqjve5KOSykXkmFJFqzvGMb9niaUEag3Rlve492Mkye3gLw9FTv94fdQ==", + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.12.17", + "@babel/helper-function-name": "^7.12.13", + "@babel/helper-split-export-declaration": "^7.12.13", + "@babel/parser": "^7.12.17", + "@babel/types": "^7.12.17", + "debug": "^4.1.0", + "globals": "^11.1.0", + "lodash": "^4.17.19" + } + }, + "@babel/types": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.17.tgz", + "integrity": "sha512-tNMDjcv/4DIcHxErTgwB9q2ZcYyN0sUfgGKUK/mm1FJK7Wz+KstoEekxrl/tBiNDgLK1HGi+sppj1An/1DR4fQ==", + "requires": { + "@babel/helper-validator-identifier": "^7.12.11", + "lodash": "^4.17.19", + "to-fast-properties": "^2.0.0" + } + }, + "@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + }, + "@cnakazawa/watch": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz", + "integrity": "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==", + "requires": { + "exec-sh": "^0.3.2", + "minimist": "^1.2.0" + } + }, + "@csstools/convert-colors": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz", + "integrity": "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==" + }, + "@csstools/normalize.css": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-10.1.0.tgz", + "integrity": "sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg==" + }, + "@emotion/cache": { + "version": "10.0.29", + "resolved": "https://registry.npmjs.org/@emotion/cache/-/cache-10.0.29.tgz", + "integrity": "sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==", + "requires": { + "@emotion/sheet": "0.9.4", + "@emotion/stylis": "0.8.5", + "@emotion/utils": "0.11.3", + "@emotion/weak-memoize": "0.2.5" + } + }, + "@emotion/hash": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz", + "integrity": "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" + }, + "@emotion/is-prop-valid": { + "version": "0.8.8", + "resolved": "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz", + "integrity": "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==", + "requires": { + "@emotion/memoize": "0.7.4" + } + }, + "@emotion/memoize": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz", + "integrity": "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" + }, + "@emotion/serialize": { + "version": "0.11.16", + "resolved": "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz", + "integrity": "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==", + "requires": { + "@emotion/hash": "0.8.0", + "@emotion/memoize": "0.7.4", + "@emotion/unitless": "0.7.5", + "@emotion/utils": "0.11.3", + "csstype": "^2.5.7" + }, + "dependencies": { + "csstype": { + "version": "2.6.16", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.16.tgz", + "integrity": "sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q==" + } + } + }, + "@emotion/sheet": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/@emotion/sheet/-/sheet-0.9.4.tgz", + "integrity": "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==" + }, + "@emotion/stylis": { + "version": "0.8.5", + "resolved": "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz", + "integrity": "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==" + }, + "@emotion/unitless": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz", + "integrity": "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" + }, + "@emotion/utils": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz", + "integrity": "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" + }, + "@emotion/weak-memoize": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz", + "integrity": "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==" + }, + "@eslint/eslintrc": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.3.0.tgz", + "integrity": "sha512-1JTKgrOKAHVivSvOYw+sJOunkBjUOvjqWk1DPja7ZFhIS2mX/4EgTT8M7eTK9jrKhL/FvXXEbQwIs3pg1xp3dg==", + "requires": { + "ajv": "^6.12.4", + "debug": "^4.1.1", + "espree": "^7.3.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.2.1", + "js-yaml": "^3.13.1", + "lodash": "^4.17.20", + "minimatch": "^3.0.4", + "strip-json-comments": "^3.1.1" + }, + "dependencies": { + "globals": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", + "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "requires": { + "type-fest": "^0.8.1" + } + } + } + }, + "@hapi/address": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz", + "integrity": "sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==" + }, + "@hapi/bourne": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz", + "integrity": "sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==" + }, + "@hapi/hoek": { + "version": "8.5.1", + "resolved": "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz", + "integrity": "sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==" + }, + "@hapi/joi": { + "version": "15.1.1", + "resolved": "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz", + "integrity": "sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==", + "requires": { + "@hapi/address": "2.x.x", + "@hapi/bourne": "1.x.x", + "@hapi/hoek": "8.x.x", + "@hapi/topo": "3.x.x" + } + }, + "@hapi/topo": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz", + "integrity": "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==", + "requires": { + "@hapi/hoek": "^8.3.0" + } + }, + "@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "requires": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + } + } + }, + "@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" + }, + "@jest/console": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz", + "integrity": "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==", + "requires": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^26.6.2", + "jest-util": "^26.6.2", + "slash": "^3.0.0" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + } + } + }, + "@jest/core": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz", + "integrity": "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==", + "requires": { + "@jest/console": "^26.6.2", + "@jest/reporters": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-changed-files": "^26.6.2", + "jest-config": "^26.6.3", + "jest-haste-map": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-resolve-dependencies": "^26.6.3", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "jest-watcher": "^26.6.2", + "micromatch": "^4.0.2", + "p-each-series": "^2.1.0", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "@jest/environment": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz", + "integrity": "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==", + "requires": { + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + } + } + }, + "@jest/fake-timers": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz", + "integrity": "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==", + "requires": { + "@jest/types": "^26.6.2", + "@sinonjs/fake-timers": "^6.0.1", + "@types/node": "*", + "jest-message-util": "^26.6.2", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + } + } + }, + "@jest/globals": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz", + "integrity": "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==", + "requires": { + "@jest/environment": "^26.6.2", + "@jest/types": "^26.6.2", + "expect": "^26.6.2" + } + }, + "@jest/reporters": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz", + "integrity": "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==", + "requires": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.2", + "graceful-fs": "^4.2.4", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^4.0.3", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.0.2", + "jest-haste-map": "^26.6.2", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "node-notifier": "^8.0.0", + "slash": "^3.0.0", + "source-map": "^0.6.0", + "string-length": "^4.0.1", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^7.0.0" + } + }, + "@jest/source-map": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz", + "integrity": "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==", + "requires": { + "callsites": "^3.0.0", + "graceful-fs": "^4.2.4", + "source-map": "^0.6.0" + } + }, + "@jest/test-result": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz", + "integrity": "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==", + "requires": { + "@jest/console": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + } + }, + "@jest/test-sequencer": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz", + "integrity": "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==", + "requires": { + "@jest/test-result": "^26.6.2", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-runner": "^26.6.3", + "jest-runtime": "^26.6.3" + } + }, + "@jest/transform": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz", + "integrity": "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==", + "requires": { + "@babel/core": "^7.1.0", + "@jest/types": "^26.6.2", + "babel-plugin-istanbul": "^6.0.0", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.4", + "jest-haste-map": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-util": "^26.6.2", + "micromatch": "^4.0.2", + "pirates": "^4.0.1", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + } + }, + "@jest/types": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz", + "integrity": "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + } + } + }, + "@material-ui/core": { + "version": "4.11.3", + "resolved": "https://registry.npmjs.org/@material-ui/core/-/core-4.11.3.tgz", + "integrity": "sha512-Adt40rGW6Uds+cAyk3pVgcErpzU/qxc7KBR94jFHBYretU4AtWZltYcNsbeMn9tXL86jjVL1kuGcIHsgLgFGRw==", + "requires": { + "@babel/runtime": "^7.4.4", + "@material-ui/styles": "^4.11.3", + "@material-ui/system": "^4.11.3", + "@material-ui/types": "^5.1.0", + "@material-ui/utils": "^4.11.2", + "@types/react-transition-group": "^4.2.0", + "clsx": "^1.0.4", + "hoist-non-react-statics": "^3.3.2", + "popper.js": "1.16.1-lts", + "prop-types": "^15.7.2", + "react-is": "^16.8.0 || ^17.0.0", + "react-transition-group": "^4.4.0" + } + }, + "@material-ui/icons": { + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@material-ui/icons/-/icons-4.11.2.tgz", + "integrity": "sha512-fQNsKX2TxBmqIGJCSi3tGTO/gZ+eJgWmMJkgDiOfyNaunNaxcklJQFaFogYcFl0qFuaEz1qaXYXboa/bUXVSOQ==", + "requires": { + "@babel/runtime": "^7.4.4" + } + }, + "@material-ui/lab": { + "version": "4.0.0-alpha.57", + "resolved": "https://registry.npmjs.org/@material-ui/lab/-/lab-4.0.0-alpha.57.tgz", + "integrity": "sha512-qo/IuIQOmEKtzmRD2E4Aa6DB4A87kmY6h0uYhjUmrrgmEAgbbw9etXpWPVXuRK6AGIQCjFzV6WO2i21m1R4FCw==", + "requires": { + "@babel/runtime": "^7.4.4", + "@material-ui/utils": "^4.11.2", + "clsx": "^1.0.4", + "prop-types": "^15.7.2", + "react-is": "^16.8.0 || ^17.0.0" + } + }, + "@material-ui/styles": { + "version": "4.11.3", + "resolved": "https://registry.npmjs.org/@material-ui/styles/-/styles-4.11.3.tgz", + "integrity": "sha512-HzVzCG+PpgUGMUYEJ2rTEmQYeonGh41BYfILNFb/1ueqma+p1meSdu4RX6NjxYBMhf7k+jgfHFTTz+L1SXL/Zg==", + "requires": { + "@babel/runtime": "^7.4.4", + "@emotion/hash": "^0.8.0", + "@material-ui/types": "^5.1.0", + "@material-ui/utils": "^4.11.2", + "clsx": "^1.0.4", + "csstype": "^2.5.2", + "hoist-non-react-statics": "^3.3.2", + "jss": "^10.5.1", + "jss-plugin-camel-case": "^10.5.1", + "jss-plugin-default-unit": "^10.5.1", + "jss-plugin-global": "^10.5.1", + "jss-plugin-nested": "^10.5.1", + "jss-plugin-props-sort": "^10.5.1", + "jss-plugin-rule-value-function": "^10.5.1", + "jss-plugin-vendor-prefixer": "^10.5.1", + "prop-types": "^15.7.2" + }, + "dependencies": { + "csstype": { + "version": "2.6.16", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.16.tgz", + "integrity": "sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q==" + } + } + }, + "@material-ui/system": { + "version": "4.11.3", + "resolved": "https://registry.npmjs.org/@material-ui/system/-/system-4.11.3.tgz", + "integrity": "sha512-SY7otguNGol41Mu2Sg6KbBP1ZRFIbFLHGK81y4KYbsV2yIcaEPOmsCK6zwWlp+2yTV3J/VwT6oSBARtGIVdXPw==", + "requires": { + "@babel/runtime": "^7.4.4", + "@material-ui/utils": "^4.11.2", + "csstype": "^2.5.2", + "prop-types": "^15.7.2" + }, + "dependencies": { + "csstype": { + "version": "2.6.16", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-2.6.16.tgz", + "integrity": "sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q==" + } + } + }, + "@material-ui/types": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@material-ui/types/-/types-5.1.0.tgz", + "integrity": "sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==", + "requires": {} + }, + "@material-ui/utils": { + "version": "4.11.2", + "resolved": "https://registry.npmjs.org/@material-ui/utils/-/utils-4.11.2.tgz", + "integrity": "sha512-Uul8w38u+PICe2Fg2pDKCaIG7kOyhowZ9vjiC1FsVwPABTW8vPPKfF6OvxRq3IiBaI1faOJmgdvMG7rMJARBhA==", + "requires": { + "@babel/runtime": "^7.4.4", + "prop-types": "^15.7.2", + "react-is": "^16.8.0 || ^17.0.0" + } + }, + "@nodelib/fs.scandir": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz", + "integrity": "sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA==", + "requires": { + "@nodelib/fs.stat": "2.0.4", + "run-parallel": "^1.1.9" + } + }, + "@nodelib/fs.stat": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz", + "integrity": "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==" + }, + "@nodelib/fs.walk": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz", + "integrity": "sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==", + "requires": { + "@nodelib/fs.scandir": "2.1.4", + "fastq": "^1.6.0" + } + }, + "@npmcli/move-file": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "requires": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "@pmmmwh/react-refresh-webpack-plugin": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.4.3.tgz", + "integrity": "sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==", + "requires": { + "ansi-html": "^0.0.7", + "error-stack-parser": "^2.0.6", + "html-entities": "^1.2.1", + "native-url": "^0.2.6", + "schema-utils": "^2.6.5", + "source-map": "^0.7.3" + }, + "dependencies": { + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + } + } + }, + "@rollup/plugin-node-resolve": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-7.1.3.tgz", + "integrity": "sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q==", + "requires": { + "@rollup/pluginutils": "^3.0.8", + "@types/resolve": "0.0.8", + "builtin-modules": "^3.1.0", + "is-module": "^1.0.0", + "resolve": "^1.14.2" + } + }, + "@rollup/plugin-replace": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.1.tgz", + "integrity": "sha512-XwC1oK5rrtRJ0tn1ioLHS6OV5JTluJF7QE1J/q1hN3bquwjnVxjtMyY9iCnoyH9DQbf92CxajB3o98wZbP3oAQ==", + "requires": { + "@rollup/pluginutils": "^3.1.0", + "magic-string": "^0.25.7" + } + }, + "@rollup/pluginutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz", + "integrity": "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==", + "requires": { + "@types/estree": "0.0.39", + "estree-walker": "^1.0.1", + "picomatch": "^2.2.2" + }, + "dependencies": { + "@types/estree": { + "version": "0.0.39", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz", + "integrity": "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" + }, + "estree-walker": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz", + "integrity": "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" + } + } + }, + "@sinonjs/commons": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.2.tgz", + "integrity": "sha512-sruwd86RJHdsVf/AtBoijDmUqJp3B6hF/DGC23C+JaegnDHaZyewCjoVGTdg3J0uz3Zs7NnIT05OBOmML72lQw==", + "requires": { + "type-detect": "4.0.8" + } + }, + "@sinonjs/fake-timers": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz", + "integrity": "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==", + "requires": { + "@sinonjs/commons": "^1.7.0" + } + }, + "@surma/rollup-plugin-off-main-thread": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-1.4.2.tgz", + "integrity": "sha512-yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A==", + "requires": { + "ejs": "^2.6.1", + "magic-string": "^0.25.0" + } + }, + "@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==" + }, + "@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==" + }, + "@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==" + }, + "@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==" + }, + "@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==" + }, + "@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==" + }, + "@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==" + }, + "@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==" + }, + "@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", + "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "requires": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + } + }, + "@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", + "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "requires": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + }, + "dependencies": { + "camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" + }, + "cosmiconfig": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", + "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + } + } + }, + "@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "requires": { + "@babel/types": "^7.12.6" + } + }, + "@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", + "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "requires": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + } + }, + "@svgr/plugin-svgo": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", + "integrity": "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==", + "requires": { + "cosmiconfig": "^7.0.0", + "deepmerge": "^4.2.2", + "svgo": "^1.2.2" + }, + "dependencies": { + "cosmiconfig": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", + "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + } + } + } + }, + "@svgr/webpack": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz", + "integrity": "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==", + "requires": { + "@babel/core": "^7.12.3", + "@babel/plugin-transform-react-constant-elements": "^7.12.1", + "@babel/preset-env": "^7.12.1", + "@babel/preset-react": "^7.12.5", + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "loader-utils": "^2.0.0" + } + }, + "@testing-library/dom": { + "version": "7.29.6", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-7.29.6.tgz", + "integrity": "sha512-vzTsAXa439ptdvav/4lsKRcGpAQX7b6wBIqia7+iNzqGJ5zjswApxA6jDAsexrc6ue9krWcbh8o+LYkBXW+GCQ==", + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^4.2.0", + "aria-query": "^4.2.2", + "chalk": "^4.1.0", + "dom-accessibility-api": "^0.5.4", + "lz-string": "^1.4.4", + "pretty-format": "^26.6.2" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.13.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.7.tgz", + "integrity": "sha512-h+ilqoX998mRVM5FtB5ijRuHUDVt5l3yfoOi2uh18Z/O3hvyaHQ39NpxVkCIG5yFs+mLq/ewFp8Bss6zmWv6ZA==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + } + } + }, + "@testing-library/jest-dom": { + "version": "5.11.9", + "resolved": "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.11.9.tgz", + "integrity": "sha512-Mn2gnA9d1wStlAIT2NU8J15LNob0YFBVjs2aEQ3j8rsfRQo+lAs7/ui1i2TGaJjapLmuNPLTsrm+nPjmZDwpcQ==", + "requires": { + "@babel/runtime": "^7.9.2", + "@types/testing-library__jest-dom": "^5.9.1", + "aria-query": "^4.2.2", + "chalk": "^3.0.0", + "css": "^3.0.0", + "css.escape": "^1.5.1", + "lodash": "^4.17.15", + "redent": "^3.0.0" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.13.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.7.tgz", + "integrity": "sha512-h+ilqoX998mRVM5FtB5ijRuHUDVt5l3yfoOi2uh18Z/O3hvyaHQ39NpxVkCIG5yFs+mLq/ewFp8Bss6zmWv6ZA==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "chalk": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz", + "integrity": "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + } + } + }, + "@testing-library/react": { + "version": "11.2.5", + "resolved": "https://registry.npmjs.org/@testing-library/react/-/react-11.2.5.tgz", + "integrity": "sha512-yEx7oIa/UWLe2F2dqK0FtMF9sJWNXD+2PPtp39BvE0Kh9MJ9Kl0HrZAgEuhUJR+Lx8Di6Xz+rKwSdEPY2UV8ZQ==", + "requires": { + "@babel/runtime": "^7.12.5", + "@testing-library/dom": "^7.28.1" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.13.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.7.tgz", + "integrity": "sha512-h+ilqoX998mRVM5FtB5ijRuHUDVt5l3yfoOi2uh18Z/O3hvyaHQ39NpxVkCIG5yFs+mLq/ewFp8Bss6zmWv6ZA==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + } + } + }, + "@testing-library/user-event": { + "version": "12.7.3", + "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-12.7.3.tgz", + "integrity": "sha512-IdSHkWfbeSSJRFlldvHDWfVX0U18TbXIvLSGII+JbqkJrsflFr4OWlQIua0TvcVVJNna3BNrNvRSvpQ0yvSXlA==", + "requires": { + "@babel/runtime": "^7.12.5" + }, + "dependencies": { + "@babel/runtime": { + "version": "7.13.7", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.7.tgz", + "integrity": "sha512-h+ilqoX998mRVM5FtB5ijRuHUDVt5l3yfoOi2uh18Z/O3hvyaHQ39NpxVkCIG5yFs+mLq/ewFp8Bss6zmWv6ZA==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + } + } + }, + "@types/anymatch": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz", + "integrity": "sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA==" + }, + "@types/aria-query": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-4.2.1.tgz", + "integrity": "sha512-S6oPal772qJZHoRZLFc/XoZW2gFvwXusYUmXPXkgxJLuEk2vOt7jc4Yo6z/vtI0EBkbPBVrJJ0B+prLIKiWqHg==" + }, + "@types/babel__core": { + "version": "7.1.12", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.12.tgz", + "integrity": "sha512-wMTHiiTiBAAPebqaPiPDLFA4LYPKr6Ph0Xq/6rq1Ur3v66HXyG+clfR9CNETkD7MQS8ZHvpQOtA53DLws5WAEQ==", + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "@types/babel__generator": { + "version": "7.6.2", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.2.tgz", + "integrity": "sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==", + "requires": { + "@babel/types": "^7.0.0" + } + }, + "@types/babel__template": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.0.tgz", + "integrity": "sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A==", + "requires": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "@types/babel__traverse": { + "version": "7.11.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.0.tgz", + "integrity": "sha512-kSjgDMZONiIfSH1Nxcr5JIRMwUetDki63FSQfpTCz8ogF3Ulqm8+mr5f78dUYs6vMiB6gBusQqfQmBvHZj/lwg==", + "requires": { + "@babel/types": "^7.3.0" + } + }, + "@types/eslint": { + "version": "7.2.6", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-7.2.6.tgz", + "integrity": "sha512-I+1sYH+NPQ3/tVqCeUSBwTE/0heyvtXqpIopUUArlBm0Kpocb8FbMa3AZ/ASKIFpN3rnEx932TTXDbt9OXsNDw==", + "requires": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "@types/estree": { + "version": "0.0.46", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.46.tgz", + "integrity": "sha512-laIjwTQaD+5DukBZaygQ79K1Z0jb1bPEMRrkXSLjtCcZm+abyp5YbrqpSLzD42FwWW6gK/aS4NYpJ804nG2brg==" + }, + "@types/glob": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz", + "integrity": "sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==", + "requires": { + "@types/minimatch": "*", + "@types/node": "*" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + } + } + }, + "@types/graceful-fs": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", + "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", + "requires": { + "@types/node": "*" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + } + } + }, + "@types/history": { + "version": "4.7.8", + "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.8.tgz", + "integrity": "sha512-S78QIYirQcUoo6UJZx9CSP0O2ix9IaeAXwQi26Rhr/+mg7qqPy8TzaxHSUut7eGjL8WmLccT7/MXf304WjqHcA==" + }, + "@types/html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-giAlZwstKbmvMk1OO7WXSj4OZ0keXAcl2TQq4LWHiiPH2ByaH7WeUzng+Qej8UPxxv+8lRTuouo0iaNDBuzIBA==" + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz", + "integrity": "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==" + }, + "@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "requires": { + "@types/istanbul-lib-coverage": "*" + } + }, + "@types/istanbul-reports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz", + "integrity": "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==", + "requires": { + "@types/istanbul-lib-report": "*" + } + }, + "@types/jest": { + "version": "26.0.20", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-26.0.20.tgz", + "integrity": "sha512-9zi2Y+5USJRxd0FsahERhBwlcvFh6D2GLQnY2FH2BzK8J9s9omvNHIbvABwIluXa0fD8XVKMLTO0aOEuUfACAA==", + "requires": { + "jest-diff": "^26.0.0", + "pretty-format": "^26.0.0" + } + }, + "@types/json-schema": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz", + "integrity": "sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==" + }, + "@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=" + }, + "@types/minimatch": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", + "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==" + }, + "@types/node": { + "version": "12.20.4", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.4.tgz", + "integrity": "sha512-xRCgeE0Q4pT5UZ189TJ3SpYuX/QGl6QIAOAIeDSbAVAd2gX1NxSZup4jNVK7cxIeP8KDSbJgcckun495isP1jQ==" + }, + "@types/normalize-package-data": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz", + "integrity": "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==" + }, + "@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + }, + "@types/prettier": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.2.1.tgz", + "integrity": "sha512-DxZZbyMAM9GWEzXL+BMZROWz9oo6A9EilwwOMET2UVu2uZTqMWS5S69KVtuVKaRjCUpcrOXRalet86/OpG4kqw==" + }, + "@types/prop-types": { + "version": "15.7.3", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz", + "integrity": "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==" + }, + "@types/q": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz", + "integrity": "sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==" + }, + "@types/react": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/@types/react/-/react-17.0.2.tgz", + "integrity": "sha512-Xt40xQsrkdvjn1EyWe1Bc0dJLcil/9x2vAuW7ya+PuQip4UYUaXyhzWmAbwRsdMgwOFHpfp7/FFZebDU6Y8VHA==", + "requires": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "@types/react-dom": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.1.tgz", + "integrity": "sha512-yIVyopxQb8IDZ7SOHeTovurFq+fXiPICa+GV3gp0Xedsl+MwQlMLKmvrnEjFbQxjliH5YVAEWFh975eVNmKj7Q==", + "requires": { + "@types/react": "*" + } + }, + "@types/react-router": { + "version": "5.1.11", + "resolved": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.11.tgz", + "integrity": "sha512-ofHbZMlp0Y2baOHgsWBQ4K3AttxY61bDMkwTiBOkPg7U6C/3UwwB5WaIx28JmSVi/eX3uFEMRo61BV22fDQIvg==", + "requires": { + "@types/history": "*", + "@types/react": "*" + } + }, + "@types/react-router-dom": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.1.7.tgz", + "integrity": "sha512-D5mHD6TbdV/DNHYsnwBTv+y73ei+mMjrkGrla86HthE4/PVvL1J94Bu3qABU+COXzpL23T1EZapVVpwHuBXiUg==", + "requires": { + "@types/history": "*", + "@types/react": "*", + "@types/react-router": "*" + } + }, + "@types/react-transition-group": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.1.tgz", + "integrity": "sha512-vIo69qKKcYoJ8wKCJjwSgCTM+z3chw3g18dkrDfVX665tMH7tmbDxEAnPdey4gTlwZz5QuHGzd+hul0OVZDqqQ==", + "requires": { + "@types/react": "*" + } + }, + "@types/resolve": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz", + "integrity": "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==", + "requires": { + "@types/node": "*" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + } + } + }, + "@types/source-list-map": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz", + "integrity": "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==" + }, + "@types/stack-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz", + "integrity": "sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==" + }, + "@types/tapable": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.6.tgz", + "integrity": "sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==" + }, + "@types/testing-library__jest-dom": { + "version": "5.9.5", + "resolved": "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.9.5.tgz", + "integrity": "sha512-ggn3ws+yRbOHog9GxnXiEZ/35Mow6YtPZpd7Z5mKDeZS/o7zx3yAle0ov/wjhVB5QT4N2Dt+GNoGCdqkBGCajQ==", + "requires": { + "@types/jest": "*" + } + }, + "@types/uglify-js": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.12.0.tgz", + "integrity": "sha512-sYAF+CF9XZ5cvEBkI7RtrG9g2GtMBkviTnBxYYyq+8BWvO4QtXfwwR6a2LFwCi4evMKZfpv6U43ViYvv17Wz3Q==", + "requires": { + "source-map": "^0.6.1" + } + }, + "@types/webpack": { + "version": "4.41.26", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.26.tgz", + "integrity": "sha512-7ZyTfxjCRwexh+EJFwRUM+CDB2XvgHl4vfuqf1ZKrgGvcS5BrNvPQqJh3tsZ0P6h6Aa1qClVHaJZszLPzpqHeA==", + "requires": { + "@types/anymatch": "*", + "@types/node": "*", + "@types/tapable": "*", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "source-map": "^0.6.0" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + } + } + }, + "@types/webpack-sources": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-2.1.0.tgz", + "integrity": "sha512-LXn/oYIpBeucgP1EIJbKQ2/4ZmpvRl+dlrFdX7+94SKRUV3Evy3FsfMZY318vGhkWUS5MPhtOM3w1/hCOAOXcg==", + "requires": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + }, + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + } + } + }, + "@types/yargs": { + "version": "15.0.13", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.13.tgz", + "integrity": "sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ==", + "requires": { + "@types/yargs-parser": "*" + } + }, + "@types/yargs-parser": { + "version": "20.2.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.0.tgz", + "integrity": "sha512-37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA==" + }, + "@typescript-eslint/eslint-plugin": { + "version": "4.15.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.15.2.tgz", + "integrity": "sha512-uiQQeu9tWl3f1+oK0yoAv9lt/KXO24iafxgQTkIYO/kitruILGx3uH+QtIAHqxFV+yIsdnJH+alel9KuE3J15Q==", + "requires": { + "@typescript-eslint/experimental-utils": "4.15.2", + "@typescript-eslint/scope-manager": "4.15.2", + "debug": "^4.1.1", + "functional-red-black-tree": "^1.0.1", + "lodash": "^4.17.15", + "regexpp": "^3.0.0", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + }, + "dependencies": { + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@typescript-eslint/experimental-utils": { + "version": "4.15.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.15.2.tgz", + "integrity": "sha512-Fxoshw8+R5X3/Vmqwsjc8nRO/7iTysRtDqx6rlfLZ7HbT8TZhPeQqbPjTyk2RheH3L8afumecTQnUc9EeXxohQ==", + "requires": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/scope-manager": "4.15.2", + "@typescript-eslint/types": "4.15.2", + "@typescript-eslint/typescript-estree": "4.15.2", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + } + }, + "@typescript-eslint/parser": { + "version": "4.15.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.15.2.tgz", + "integrity": "sha512-SHeF8xbsC6z2FKXsaTb1tBCf0QZsjJ94H6Bo51Y1aVEZ4XAefaw5ZAilMoDPlGghe+qtq7XdTiDlGfVTOmvA+Q==", + "requires": { + "@typescript-eslint/scope-manager": "4.15.2", + "@typescript-eslint/types": "4.15.2", + "@typescript-eslint/typescript-estree": "4.15.2", + "debug": "^4.1.1" + } + }, + "@typescript-eslint/scope-manager": { + "version": "4.15.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.15.2.tgz", + "integrity": "sha512-Zm0tf/MSKuX6aeJmuXexgdVyxT9/oJJhaCkijv0DvJVT3ui4zY6XYd6iwIo/8GEZGy43cd7w1rFMiCLHbRzAPQ==", + "requires": { + "@typescript-eslint/types": "4.15.2", + "@typescript-eslint/visitor-keys": "4.15.2" + } + }, + "@typescript-eslint/types": { + "version": "4.15.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.15.2.tgz", + "integrity": "sha512-r7lW7HFkAarfUylJ2tKndyO9njwSyoy6cpfDKWPX6/ctZA+QyaYscAHXVAfJqtnY6aaTwDYrOhp+ginlbc7HfQ==" + }, + "@typescript-eslint/typescript-estree": { + "version": "4.15.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.15.2.tgz", + "integrity": "sha512-cGR8C2g5SPtHTQvAymEODeqx90pJHadWsgTtx6GbnTWKqsg7yp6Eaya9nFzUd4KrKhxdYTTFBiYeTPQaz/l8bw==", + "requires": { + "@typescript-eslint/types": "4.15.2", + "@typescript-eslint/visitor-keys": "4.15.2", + "debug": "^4.1.1", + "globby": "^11.0.1", + "is-glob": "^4.0.1", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + }, + "dependencies": { + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "@typescript-eslint/visitor-keys": { + "version": "4.15.2", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.15.2.tgz", + "integrity": "sha512-TME1VgSb7wTwgENN5KVj4Nqg25hP8DisXxNBojM4Nn31rYaNDIocNm5cmjOFfh42n7NVERxWrDFoETO/76ePyg==", + "requires": { + "@typescript-eslint/types": "4.15.2", + "eslint-visitor-keys": "^2.0.0" + }, + "dependencies": { + "eslint-visitor-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz", + "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==" + } + } + }, + "@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "requires": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==" + }, + "@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==" + }, + "@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==" + }, + "@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", + "requires": { + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==" + }, + "@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "requires": { + "@webassemblyjs/ast": "1.9.0" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==" + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "requires": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==" + }, + "@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "abab": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", + "integrity": "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==" + }, + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "requires": { + "mime-types": "~2.1.24", + "negotiator": "0.6.2" + } + }, + "acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + }, + "acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "requires": { + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" + } + }, + "acorn-jsx": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz", + "integrity": "sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==", + "requires": {} + }, + "acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" + }, + "address": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.1.2.tgz", + "integrity": "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==" + }, + "adjust-sourcemap-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-3.0.0.tgz", + "integrity": "sha512-YBrGyT2/uVQ/c6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E/ri63RYyG1IacMZtqw==", + "requires": { + "loader-utils": "^2.0.0", + "regex-parser": "^2.2.11" + } + }, + "aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "requires": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + } + }, + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "requires": {} + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "requires": {} + }, + "alphanum-sort": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", + "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=" + }, + "ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==" + }, + "ansi-escapes": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz", + "integrity": "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==", + "requires": { + "type-fest": "^0.11.0" + }, + "dependencies": { + "type-fest": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz", + "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==" + } + } + }, + "ansi-html": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", + "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=" + }, + "ansi-regex": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz", + "integrity": "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + }, + "dependencies": { + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + } + } + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "requires": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "requires": { + "remove-trailing-separator": "^1.0.1" + } + } + } + }, + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "aria-query": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", + "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", + "requires": { + "@babel/runtime": "^7.10.2", + "@babel/runtime-corejs3": "^7.10.2" + } + }, + "arity-n": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/arity-n/-/arity-n-1.0.4.tgz", + "integrity": "sha1-2edrEXM+CFacCEeuezmyhgswt0U=" + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" + }, + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + }, + "array-includes": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.3.tgz", + "integrity": "sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2", + "get-intrinsic": "^1.1.1", + "is-string": "^1.0.5" + } + }, + "array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + }, + "array.prototype.flat": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz", + "integrity": "sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1" + } + }, + "array.prototype.flatmap": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz", + "integrity": "sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1", + "function-bind": "^1.1.1" + } + }, + "arrify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz", + "integrity": "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" + }, + "asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + }, + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "requires": { + "safer-buffer": "~2.1.0" + } + }, + "asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "requires": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + } + }, + "assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "requires": { + "object-assign": "^4.1.1", + "util": "0.10.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "requires": { + "inherits": "2.0.1" + } + } + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" + }, + "ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" + }, + "astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" + }, + "async": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", + "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", + "requires": { + "lodash": "^4.17.14" + } + }, + "async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" + }, + "async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + }, + "at-least-node": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", + "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" + }, + "autoprefixer": { + "version": "9.8.6", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz", + "integrity": "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==", + "requires": { + "browserslist": "^4.12.0", + "caniuse-lite": "^1.0.30001109", + "colorette": "^1.2.1", + "normalize-range": "^0.1.2", + "num2fraction": "^1.2.2", + "postcss": "^7.0.32", + "postcss-value-parser": "^4.1.0" + }, + "dependencies": { + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" + } + } + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + }, + "aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" + }, + "axe-core": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.1.2.tgz", + "integrity": "sha512-V+Nq70NxKhYt89ArVcaNL9FDryB3vQOd+BFXZIfO3RP6rwtj+2yqqqdHEkacutglPaZLkJeuXKCjCJDMGPtPqg==" + }, + "axobject-query": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", + "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==" + }, + "babel-eslint": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", + "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", + "requires": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.7.0", + "@babel/traverse": "^7.7.0", + "@babel/types": "^7.7.0", + "eslint-visitor-keys": "^1.0.0", + "resolve": "^1.12.0" + } + }, + "babel-extract-comments": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz", + "integrity": "sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==", + "requires": { + "babylon": "^6.18.0" + } + }, + "babel-jest": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz", + "integrity": "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==", + "requires": { + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/babel__core": "^7.1.7", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + }, + "dependencies": { + "@babel/core": { + "version": "7.12.3", + "peer": true, + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.1", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.1", + "@babel/parser": "^7.12.3", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.12.1", + "@babel/types": "^7.12.1", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + } + }, + "@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "requires": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + } + }, + "babel-preset-jest": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz", + "integrity": "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==", + "requires": { + "babel-plugin-jest-hoist": "^26.6.2", + "babel-preset-current-node-syntax": "^1.0.0" + } + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "peer": true, + "requires": { + "minimist": "^1.2.5" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "peer": true + } + } + }, + "babel-plugin-dynamic-import-node": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz", + "integrity": "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==", + "requires": { + "object.assign": "^4.1.0" + } + }, + "babel-plugin-emotion": { + "version": "10.2.2", + "resolved": "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-10.2.2.tgz", + "integrity": "sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@emotion/hash": "0.8.0", + "@emotion/memoize": "0.7.4", + "@emotion/serialize": "^0.11.16", + "babel-plugin-macros": "^2.0.0", + "babel-plugin-syntax-jsx": "^6.18.0", + "convert-source-map": "^1.5.0", + "escape-string-regexp": "^1.0.5", + "find-root": "^1.1.0", + "source-map": "^0.5.7" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + } + } + }, + "babel-plugin-istanbul": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz", + "integrity": "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^4.0.0", + "test-exclude": "^6.0.0" + } + }, + "babel-plugin-jest-hoist": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz", + "integrity": "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==", + "requires": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" + } + }, + "babel-plugin-macros": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz", + "integrity": "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==", + "requires": { + "@babel/runtime": "^7.7.2", + "cosmiconfig": "^6.0.0", + "resolve": "^1.12.0" + }, + "dependencies": { + "cosmiconfig": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz", + "integrity": "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==", + "requires": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.1.0", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.7.2" + } + } + } + }, + "babel-plugin-styled-components": { + "version": "1.12.0", + "resolved": "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-1.12.0.tgz", + "integrity": "sha512-FEiD7l5ZABdJPpLssKXjBUJMYqzbcNzBowfXDCdJhOpbhWiewapUaY+LZGT8R4Jg2TwOjGjG4RKeyrO5p9sBkA==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.0.0", + "@babel/helper-module-imports": "^7.0.0", + "babel-plugin-syntax-jsx": "^6.18.0", + "lodash": "^4.17.11" + } + }, + "babel-plugin-syntax-jsx": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz", + "integrity": "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=" + }, + "babel-plugin-syntax-object-rest-spread": { + "version": "6.13.0", + "resolved": "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz", + "integrity": "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=" + }, + "babel-plugin-transform-object-rest-spread": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz", + "integrity": "sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=", + "requires": { + "babel-plugin-syntax-object-rest-spread": "^6.8.0", + "babel-runtime": "^6.26.0" + } + }, + "babel-plugin-transform-react-remove-prop-types": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz", + "integrity": "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" + }, + "babel-preset-react-app": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.0.tgz", + "integrity": "sha512-itL2z8v16khpuKutx5IH8UdCdSTuzrOhRFTEdIhveZ2i1iBKDrVE0ATa4sFVy+02GLucZNVBWtoarXBy0Msdpg==", + "requires": { + "@babel/core": "7.12.3", + "@babel/plugin-proposal-class-properties": "7.12.1", + "@babel/plugin-proposal-decorators": "7.12.1", + "@babel/plugin-proposal-nullish-coalescing-operator": "7.12.1", + "@babel/plugin-proposal-numeric-separator": "7.12.1", + "@babel/plugin-proposal-optional-chaining": "7.12.1", + "@babel/plugin-transform-flow-strip-types": "7.12.1", + "@babel/plugin-transform-react-display-name": "7.12.1", + "@babel/plugin-transform-runtime": "7.12.1", + "@babel/preset-env": "7.12.1", + "@babel/preset-react": "7.12.1", + "@babel/preset-typescript": "7.12.1", + "@babel/runtime": "7.12.1", + "babel-plugin-macros": "2.8.0", + "babel-plugin-transform-react-remove-prop-types": "0.4.24" + }, + "dependencies": { + "@babel/core": { + "version": "7.12.3", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz", + "integrity": "sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==", + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.1", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.1", + "@babel/parser": "^7.12.3", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.12.1", + "@babel/types": "^7.12.1", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz", + "integrity": "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-proposal-decorators": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.12.1.tgz", + "integrity": "sha512-knNIuusychgYN8fGJHONL0RbFxLGawhXOJNLBk75TniTsZZeA+wdkDuv6wp4lGwzQEKjZi6/WYtnb3udNPmQmQ==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-decorators": "^7.12.1" + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz", + "integrity": "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0" + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz", + "integrity": "sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz", + "integrity": "sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1", + "@babel/plugin-syntax-optional-chaining": "^7.8.0" + } + }, + "@babel/plugin-syntax-decorators": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.12.13.tgz", + "integrity": "sha512-Rw6aIXGuqDLr6/LoBBYE57nKOzQpz/aDkKlMqEwH+Vp0MXbG6H/TfRjaY343LKxzAKAMXIHsQ8JzaZKuDZ9MwA==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-flow": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.12.13.tgz", + "integrity": "sha512-J/RYxnlSLXZLVR7wTRsozxKT8qbsx1mNKJzXEEjQ0Kjx1ZACcyHgbanNWNCFtc36IzuWhYWPpvJFFoexoOWFmA==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.13.tgz", + "integrity": "sha512-cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-flow-strip-types": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.12.1.tgz", + "integrity": "sha512-8hAtkmsQb36yMmEtk2JZ9JnVyDSnDOdlB+0nEGzIDLuK4yR3JcEjfuFPYkdEPSh8Id+rAMeBEn+X0iVEyho6Hg==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-syntax-flow": "^7.12.1" + } + }, + "@babel/plugin-transform-react-display-name": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz", + "integrity": "sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "@babel/plugin-transform-react-jsx": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.17.tgz", + "integrity": "sha512-mwaVNcXV+l6qJOuRhpdTEj8sT/Z0owAVWf9QujTZ0d2ye9X/K+MTOTSizcgKOj18PGnTc/7g1I4+cIUjsKhBcw==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.12.13", + "@babel/helper-module-imports": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-jsx": "^7.12.13", + "@babel/types": "^7.12.17" + }, + "dependencies": { + "@babel/core": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.17.tgz", + "integrity": "sha512-V3CuX1aBywbJvV2yzJScRxeiiw0v2KZZYYE3giywxzFJL13RiyPjaaDwhDnxmgFTTS7FgvM2ijr4QmKNIu0AtQ==", + "peer": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.12.17", + "@babel/helper-module-transforms": "^7.12.17", + "@babel/helpers": "^7.12.17", + "@babel/parser": "^7.12.17", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "semver": "^5.4.1", + "source-map": "^0.5.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz", + "integrity": "sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + } + } + }, + "@babel/plugin-transform-react-jsx-development": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.17.tgz", + "integrity": "sha512-BPjYV86SVuOaudFhsJR1zjgxxOhJDt6JHNoD48DxWEIxUCAMjV1ys6DYw4SDYZh0b1QsS2vfIA9t/ZsQGsDOUQ==", + "requires": { + "@babel/plugin-transform-react-jsx": "^7.12.17" + }, + "dependencies": { + "@babel/core": { + "version": "7.12.17", + "peer": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.12.17", + "@babel/helper-module-transforms": "^7.12.17", + "@babel/helpers": "^7.12.17", + "@babel/parser": "^7.12.17", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "semver": "^5.4.1", + "source-map": "^0.5.0" + } + } + } + }, + "@babel/plugin-transform-react-jsx-self": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.13.tgz", + "integrity": "sha512-FXYw98TTJ125GVCCkFLZXlZ1qGcsYqNQhVBQcZjyrwf8FEUtVfKIoidnO8S0q+KBQpDYNTmiGo1gn67Vti04lQ==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-react-jsx-source": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.13.tgz", + "integrity": "sha512-O5JJi6fyfih0WfDgIJXksSPhGP/G0fQpfxYy87sDc+1sFmsCS6wr3aAn+whbzkhbjtq4VMqLRaSzR6IsshIC0Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + } + }, + "@babel/plugin-transform-react-pure-annotations": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz", + "integrity": "sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==", + "requires": { + "@babel/helper-annotate-as-pure": "^7.10.4", + "@babel/helper-plugin-utils": "^7.10.4" + }, + "dependencies": { + "@babel/core": { + "version": "7.12.17", + "peer": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.12.17", + "@babel/helper-module-transforms": "^7.12.17", + "@babel/helpers": "^7.12.17", + "@babel/parser": "^7.12.17", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "semver": "^5.4.1", + "source-map": "^0.5.0" + } + } + } + }, + "@babel/plugin-transform-runtime": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.1.tgz", + "integrity": "sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg==", + "requires": { + "@babel/helper-module-imports": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4", + "resolve": "^1.8.1", + "semver": "^5.5.1" + } + }, + "@babel/plugin-transform-typescript": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.12.17.tgz", + "integrity": "sha512-1bIYwnhRoetxkFonuZRtDZPFEjl1l5r+3ITkxLC3mlMaFja+GQFo94b/WHEPjqWLU9Bc+W4oFZbvCGe9eYMu1g==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.12.17", + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-typescript": "^7.12.13" + } + }, + "@babel/preset-env": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.1.tgz", + "integrity": "sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg==", + "requires": { + "@babel/compat-data": "^7.12.1", + "@babel/helper-compilation-targets": "^7.12.1", + "@babel/helper-module-imports": "^7.12.1", + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/helper-validator-option": "^7.12.1", + "@babel/plugin-proposal-async-generator-functions": "^7.12.1", + "@babel/plugin-proposal-class-properties": "^7.12.1", + "@babel/plugin-proposal-dynamic-import": "^7.12.1", + "@babel/plugin-proposal-export-namespace-from": "^7.12.1", + "@babel/plugin-proposal-json-strings": "^7.12.1", + "@babel/plugin-proposal-logical-assignment-operators": "^7.12.1", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1", + "@babel/plugin-proposal-numeric-separator": "^7.12.1", + "@babel/plugin-proposal-object-rest-spread": "^7.12.1", + "@babel/plugin-proposal-optional-catch-binding": "^7.12.1", + "@babel/plugin-proposal-optional-chaining": "^7.12.1", + "@babel/plugin-proposal-private-methods": "^7.12.1", + "@babel/plugin-proposal-unicode-property-regex": "^7.12.1", + "@babel/plugin-syntax-async-generators": "^7.8.0", + "@babel/plugin-syntax-class-properties": "^7.12.1", + "@babel/plugin-syntax-dynamic-import": "^7.8.0", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.0", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.0", + "@babel/plugin-syntax-top-level-await": "^7.12.1", + "@babel/plugin-transform-arrow-functions": "^7.12.1", + "@babel/plugin-transform-async-to-generator": "^7.12.1", + "@babel/plugin-transform-block-scoped-functions": "^7.12.1", + "@babel/plugin-transform-block-scoping": "^7.12.1", + "@babel/plugin-transform-classes": "^7.12.1", + "@babel/plugin-transform-computed-properties": "^7.12.1", + "@babel/plugin-transform-destructuring": "^7.12.1", + "@babel/plugin-transform-dotall-regex": "^7.12.1", + "@babel/plugin-transform-duplicate-keys": "^7.12.1", + "@babel/plugin-transform-exponentiation-operator": "^7.12.1", + "@babel/plugin-transform-for-of": "^7.12.1", + "@babel/plugin-transform-function-name": "^7.12.1", + "@babel/plugin-transform-literals": "^7.12.1", + "@babel/plugin-transform-member-expression-literals": "^7.12.1", + "@babel/plugin-transform-modules-amd": "^7.12.1", + "@babel/plugin-transform-modules-commonjs": "^7.12.1", + "@babel/plugin-transform-modules-systemjs": "^7.12.1", + "@babel/plugin-transform-modules-umd": "^7.12.1", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.12.1", + "@babel/plugin-transform-new-target": "^7.12.1", + "@babel/plugin-transform-object-super": "^7.12.1", + "@babel/plugin-transform-parameters": "^7.12.1", + "@babel/plugin-transform-property-literals": "^7.12.1", + "@babel/plugin-transform-regenerator": "^7.12.1", + "@babel/plugin-transform-reserved-words": "^7.12.1", + "@babel/plugin-transform-shorthand-properties": "^7.12.1", + "@babel/plugin-transform-spread": "^7.12.1", + "@babel/plugin-transform-sticky-regex": "^7.12.1", + "@babel/plugin-transform-template-literals": "^7.12.1", + "@babel/plugin-transform-typeof-symbol": "^7.12.1", + "@babel/plugin-transform-unicode-escapes": "^7.12.1", + "@babel/plugin-transform-unicode-regex": "^7.12.1", + "@babel/preset-modules": "^0.1.3", + "@babel/types": "^7.12.1", + "core-js-compat": "^3.6.2", + "semver": "^5.5.0" + }, + "dependencies": { + "@babel/plugin-proposal-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.13.tgz", + "integrity": "sha512-8SCJ0Ddrpwv4T7Gwb33EmW1V9PY5lggTO+A8WjyIwxrSHDUyBw4MtF96ifn1n8H806YlxbVCoKXbbmzD6RD+cA==", + "requires": { + "@babel/helper-create-class-features-plugin": "^7.12.13", + "@babel/helper-plugin-utils": "^7.12.13" + }, + "dependencies": { + "@babel/core": { + "version": "7.12.17", + "peer": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.12.17", + "@babel/helper-module-transforms": "^7.12.17", + "@babel/helpers": "^7.12.17", + "@babel/parser": "^7.12.17", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "semver": "^5.4.1", + "source-map": "^0.5.0" + } + } + } + }, + "@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.13.tgz", + "integrity": "sha512-Qoxpy+OxhDBI5kRqliJFAl4uWXk3Bn24WeFstPH0iLymFehSAUR8MHpqU7njyXv/qbo7oN6yTy5bfCmXdKpo1Q==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.0" + }, + "dependencies": { + "@babel/core": { + "version": "7.12.17", + "peer": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.12.17", + "@babel/helper-module-transforms": "^7.12.17", + "@babel/helpers": "^7.12.17", + "@babel/parser": "^7.12.17", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "semver": "^5.4.1", + "source-map": "^0.5.0" + } + } + } + }, + "@babel/plugin-proposal-numeric-separator": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz", + "integrity": "sha512-O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "dependencies": { + "@babel/core": { + "version": "7.12.17", + "peer": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.12.17", + "@babel/helper-module-transforms": "^7.12.17", + "@babel/helpers": "^7.12.17", + "@babel/parser": "^7.12.17", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "semver": "^5.4.1", + "source-map": "^0.5.0" + } + } + } + }, + "@babel/plugin-proposal-optional-chaining": { + "version": "7.12.17", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.17.tgz", + "integrity": "sha512-TvxwI80pWftrGPKHNfkvX/HnoeSTR7gC4ezWnAL39PuktYUe6r8kEpOLTYnkBTsaoeazXm2jHJ22EQ81sdgfcA==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13", + "@babel/helper-skip-transparent-expression-wrappers": "^7.12.1", + "@babel/plugin-syntax-optional-chaining": "^7.8.0" + }, + "dependencies": { + "@babel/core": { + "version": "7.12.17", + "peer": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.12.17", + "@babel/helper-module-transforms": "^7.12.17", + "@babel/helpers": "^7.12.17", + "@babel/parser": "^7.12.17", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "semver": "^5.4.1", + "source-map": "^0.5.0" + } + } + } + } + } + }, + "@babel/preset-react": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.1.tgz", + "integrity": "sha512-euCExymHCi0qB9u5fKw7rvlw7AZSjw/NaB9h7EkdTt5+yHRrXdiRTh7fkG3uBPpJg82CqLfp1LHLqWGSCrab+g==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-transform-react-display-name": "^7.12.1", + "@babel/plugin-transform-react-jsx": "^7.12.1", + "@babel/plugin-transform-react-jsx-development": "^7.12.1", + "@babel/plugin-transform-react-jsx-self": "^7.12.1", + "@babel/plugin-transform-react-jsx-source": "^7.12.1", + "@babel/plugin-transform-react-pure-annotations": "^7.12.1" + }, + "dependencies": { + "@babel/plugin-transform-react-display-name": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.13.tgz", + "integrity": "sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA==", + "requires": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "dependencies": { + "@babel/core": { + "version": "7.12.17", + "peer": true, + "requires": { + "@babel/code-frame": "^7.12.13", + "@babel/generator": "^7.12.17", + "@babel/helper-module-transforms": "^7.12.17", + "@babel/helpers": "^7.12.17", + "@babel/parser": "^7.12.17", + "@babel/template": "^7.12.13", + "@babel/traverse": "^7.12.17", + "@babel/types": "^7.12.17", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "semver": "^5.4.1", + "source-map": "^0.5.0" + } + } + } + } + } + }, + "@babel/preset-typescript": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.12.1.tgz", + "integrity": "sha512-hNK/DhmoJPsksdHuI/RVrcEws7GN5eamhi28JkO52MqIxU8Z0QpmiSOQxZHWOHV7I3P4UjHV97ay4TcamMA6Kw==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4", + "@babel/plugin-transform-typescript": "^7.12.1" + } + }, + "@babel/runtime": { + "version": "7.12.1", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz", + "integrity": "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==", + "requires": { + "regenerator-runtime": "^0.13.4" + } + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "requires": { + "minimist": "^1.2.5" + } + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + } + } + }, + "babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=", + "requires": { + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" + }, + "dependencies": { + "core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==" + }, + "regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + } + } + }, + "babylon": { + "version": "6.18.0", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz", + "integrity": "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==" + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "requires": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + } + } + }, + "base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "requires": { + "tweetnacl": "^0.14.3" + } + }, + "bfj": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz", + "integrity": "sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==", + "requires": { + "bluebird": "^3.5.5", + "check-types": "^11.1.1", + "hoopy": "^0.1.4", + "tryer": "^1.0.1" + } + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" + }, + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "optional": true, + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "bn.js": { + "version": "4.11.9", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz", + "integrity": "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==" + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "requires": { + "bytes": "3.1.0", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "~1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "~2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "~1.6.17" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "requires": { + "array-flatten": "^2.1.0", + "deep-equal": "^1.0.1", + "dns-equal": "^1.0.0", + "dns-txt": "^2.0.2", + "multicast-dns": "^6.0.1", + "multicast-dns-service-types": "^1.1.0" + }, + "dependencies": { + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + } + } + }, + "boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "requires": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "requires": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + } + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" + }, + "browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "requires": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "requires": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "requires": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "requires": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + }, + "dependencies": { + "bn.js": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.1.3.tgz", + "integrity": "sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==" + } + } + }, + "browserify-sign": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz", + "integrity": "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==", + "requires": { + "bn.js": "^5.1.1", + "browserify-rsa": "^4.0.1", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.3", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.5", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "bn.js": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.1.3.tgz", + "integrity": "sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==" + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "requires": { + "pako": "~1.0.5" + } + }, + "browserslist": { + "version": "4.16.3", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.3.tgz", + "integrity": "sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw==", + "requires": { + "caniuse-lite": "^1.0.30001181", + "colorette": "^1.2.1", + "electron-to-chromium": "^1.3.649", + "escalade": "^3.1.1", + "node-releases": "^1.1.70" + } + }, + "bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "requires": { + "node-int64": "^0.4.0" + } + }, + "buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "requires": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" + }, + "buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==" + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" + }, + "builtin-modules": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz", + "integrity": "sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==" + }, + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" + }, + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" + }, + "cacache": { + "version": "15.0.5", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.0.5.tgz", + "integrity": "sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A==", + "requires": { + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.0", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + }, + "p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "requires": { + "aggregate-error": "^3.0.0" + } + }, + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "requires": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + } + }, + "call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "requires": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + } + }, + "caller-callsite": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz", + "integrity": "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=", + "requires": { + "callsites": "^2.0.0" + }, + "dependencies": { + "callsites": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz", + "integrity": "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=" + } + } + }, + "caller-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz", + "integrity": "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=", + "requires": { + "caller-callsite": "^2.0.0" + } + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + }, + "camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + }, + "camelize": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz", + "integrity": "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=" + }, + "caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "requires": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "caniuse-lite": { + "version": "1.0.30001191", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001191.tgz", + "integrity": "sha512-xJJqzyd+7GCJXkcoBiQ1GuxEiOBCLQ0aVW9HMekifZsAVGdj5eJ4mFB9fEhSHipq9IOk/QXFJUiIr9lZT+EsGw==" + }, + "capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "requires": { + "rsvp": "^4.8.4" + } + }, + "case-sensitive-paths-webpack-plugin": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz", + "integrity": "sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==" + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + }, + "chalk": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", + "integrity": "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" + }, + "check-types": { + "version": "11.1.2", + "resolved": "https://registry.npmjs.org/check-types/-/check-types-11.1.2.tgz", + "integrity": "sha512-tzWzvgePgLORb9/3a0YenggReLKAIb2owL03H2Xdoe5pKcUyWRSEQ8xfCar8t2SIAuEDwtmx2da1YB52YuHQMQ==" + }, + "chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "requires": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "fsevents": "^1.2.7", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "dependencies": { + "fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "optional": true, + "requires": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "requires": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "requires": { + "is-extglob": "^2.1.0" + } + } + } + } + } + }, + "chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" + }, + "chrome-trace-event": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", + "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==", + "requires": { + "tslib": "^1.9.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "cjs-module-lexer": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz", + "integrity": "sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==" + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "requires": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + } + }, + "clean-css": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz", + "integrity": "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==", + "requires": { + "source-map": "~0.6.0" + } + }, + "clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" + }, + "cliui": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz", + "integrity": "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==", + "requires": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^6.2.0" + } + }, + "clsx": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz", + "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==" + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" + }, + "coa": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz", + "integrity": "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==", + "requires": { + "@types/q": "^1.5.1", + "chalk": "^2.4.1", + "q": "^1.1.2" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "requires": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + } + }, + "color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/color/-/color-3.1.3.tgz", + "integrity": "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==", + "requires": { + "color-convert": "^1.9.1", + "color-string": "^1.5.4" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "requires": { + "color-name": "1.1.3" + }, + "dependencies": { + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + } + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "color-string": { + "version": "1.5.4", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz", + "integrity": "sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==", + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "colorette": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz", + "integrity": "sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==" + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "requires": { + "delayed-stream": "~1.0.0" + } + }, + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "common-tags": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz", + "integrity": "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==" + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + }, + "compose-function": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/compose-function/-/compose-function-3.0.3.tgz", + "integrity": "sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8=", + "requires": { + "arity-n": "^1.0.4" + } + }, + "compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "requires": { + "mime-db": ">= 1.43.0 < 2" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "requires": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "dependencies": { + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "confusing-browser-globals": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz", + "integrity": "sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==" + }, + "connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" + }, + "console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" + }, + "contains-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz", + "integrity": "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=" + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "requires": { + "safe-buffer": "5.1.2" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + }, + "convert-source-map": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz", + "integrity": "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==", + "requires": { + "safe-buffer": "~5.1.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + } + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + }, + "copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "requires": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + } + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" + }, + "core-js": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.9.0.tgz", + "integrity": "sha512-PyFBJaLq93FlyYdsndE5VaueA9K5cNB7CGzeCj191YYLhkQM0gdZR2SKihM70oF0wdqKSKClv/tEBOpoRmdOVQ==" + }, + "core-js-compat": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.0.tgz", + "integrity": "sha512-YK6fwFjCOKWwGnjFUR3c544YsnA/7DoLL0ysncuOJ4pwbriAtOpvM2bygdlcXbvQCQZ7bBU9CL4t7tGl7ETRpQ==", + "requires": { + "browserslist": "^4.16.3", + "semver": "7.0.0" + }, + "dependencies": { + "semver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", + "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" + } + } + }, + "core-js-pure": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.9.0.tgz", + "integrity": "sha512-3pEcmMZC9Cq0D4ZBh3pe2HLtqxpGNJBLXF/kZ2YzK17RbKp94w0HFbdbSx8H8kAlZG5k76hvLrkPm57Uyef+kg==" + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + }, + "cosmiconfig": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz", + "integrity": "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==", + "requires": { + "import-fresh": "^2.0.0", + "is-directory": "^0.3.1", + "js-yaml": "^3.13.1", + "parse-json": "^4.0.0" + }, + "dependencies": { + "import-fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz", + "integrity": "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=", + "requires": { + "caller-path": "^2.0.0", + "resolve-from": "^3.0.0" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "requires": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + } + } + } + }, + "create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "requires": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + } + }, + "create-emotion": { + "version": "10.0.27", + "resolved": "https://registry.npmjs.org/create-emotion/-/create-emotion-10.0.27.tgz", + "integrity": "sha512-fIK73w82HPPn/RsAij7+Zt8eCE8SptcJ3WoRMfxMtjteYxud8GDTKKld7MYwAX2TVhrw29uR1N/bVGxeStHILg==", + "requires": { + "@emotion/cache": "^10.0.27", + "@emotion/serialize": "^0.11.15", + "@emotion/sheet": "0.9.4", + "@emotion/utils": "0.11.3" + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "requires": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "requires": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "requires": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "dependencies": { + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "requires": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + } + }, + "crypto-random-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz", + "integrity": "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=" + }, + "css": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/css/-/css-3.0.0.tgz", + "integrity": "sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==", + "requires": { + "inherits": "^2.0.4", + "source-map": "^0.6.1", + "source-map-resolve": "^0.6.0" + }, + "dependencies": { + "source-map-resolve": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.6.0.tgz", + "integrity": "sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0" + } + } + } + }, + "css-blank-pseudo": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz", + "integrity": "sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==", + "requires": { + "postcss": "^7.0.5" + } + }, + "css-color-keywords": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz", + "integrity": "sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU=" + }, + "css-color-names": { + "version": "0.0.4", + "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", + "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=" + }, + "css-declaration-sorter": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz", + "integrity": "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==", + "requires": { + "postcss": "^7.0.1", + "timsort": "^0.3.0" + } + }, + "css-has-pseudo": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz", + "integrity": "sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==", + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^5.0.0-rc.4" + } + }, + "css-loader": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-4.3.0.tgz", + "integrity": "sha512-rdezjCjScIrsL8BSYszgT4s476IcNKt6yX69t0pHjJVnPUTDpn4WfIpDQTN3wCJvUvfsz/mFjuGOekf3PY3NUg==", + "requires": { + "camelcase": "^6.0.0", + "cssesc": "^3.0.0", + "icss-utils": "^4.1.1", + "loader-utils": "^2.0.0", + "postcss": "^7.0.32", + "postcss-modules-extract-imports": "^2.0.0", + "postcss-modules-local-by-default": "^3.0.3", + "postcss-modules-scope": "^2.2.0", + "postcss-modules-values": "^3.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^2.7.1", + "semver": "^7.3.2" + }, + "dependencies": { + "camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "css-prefers-color-scheme": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz", + "integrity": "sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==", + "requires": { + "postcss": "^7.0.5" + } + }, + "css-select": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz", + "integrity": "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==", + "requires": { + "boolbase": "^1.0.0", + "css-what": "^3.2.1", + "domutils": "^1.7.0", + "nth-check": "^1.0.2" + } + }, + "css-select-base-adapter": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz", + "integrity": "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + }, + "css-to-react-native": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.0.0.tgz", + "integrity": "sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==", + "requires": { + "camelize": "^1.0.0", + "css-color-keywords": "^1.0.0", + "postcss-value-parser": "^4.0.2" + }, + "dependencies": { + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" + } + } + }, + "css-tree": { + "version": "1.0.0-alpha.37", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz", + "integrity": "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==", + "requires": { + "mdn-data": "2.0.4", + "source-map": "^0.6.1" + } + }, + "css-vendor": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/css-vendor/-/css-vendor-2.0.8.tgz", + "integrity": "sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==", + "requires": { + "@babel/runtime": "^7.8.3", + "is-in-browser": "^1.0.2" + } + }, + "css-what": { + "version": "3.4.2", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz", + "integrity": "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==" + }, + "css.escape": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz", + "integrity": "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=" + }, + "cssdb": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-4.4.0.tgz", + "integrity": "sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==" + }, + "cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + }, + "cssnano": { + "version": "4.1.10", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz", + "integrity": "sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==", + "requires": { + "cosmiconfig": "^5.0.0", + "cssnano-preset-default": "^4.0.7", + "is-resolvable": "^1.0.0", + "postcss": "^7.0.0" + } + }, + "cssnano-preset-default": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz", + "integrity": "sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA==", + "requires": { + "css-declaration-sorter": "^4.0.1", + "cssnano-util-raw-cache": "^4.0.1", + "postcss": "^7.0.0", + "postcss-calc": "^7.0.1", + "postcss-colormin": "^4.0.3", + "postcss-convert-values": "^4.0.1", + "postcss-discard-comments": "^4.0.2", + "postcss-discard-duplicates": "^4.0.2", + "postcss-discard-empty": "^4.0.1", + "postcss-discard-overridden": "^4.0.1", + "postcss-merge-longhand": "^4.0.11", + "postcss-merge-rules": "^4.0.3", + "postcss-minify-font-values": "^4.0.2", + "postcss-minify-gradients": "^4.0.2", + "postcss-minify-params": "^4.0.2", + "postcss-minify-selectors": "^4.0.2", + "postcss-normalize-charset": "^4.0.1", + "postcss-normalize-display-values": "^4.0.2", + "postcss-normalize-positions": "^4.0.2", + "postcss-normalize-repeat-style": "^4.0.2", + "postcss-normalize-string": "^4.0.2", + "postcss-normalize-timing-functions": "^4.0.2", + "postcss-normalize-unicode": "^4.0.1", + "postcss-normalize-url": "^4.0.1", + "postcss-normalize-whitespace": "^4.0.2", + "postcss-ordered-values": "^4.1.2", + "postcss-reduce-initial": "^4.0.3", + "postcss-reduce-transforms": "^4.0.2", + "postcss-svgo": "^4.0.2", + "postcss-unique-selectors": "^4.0.1" + } + }, + "cssnano-util-get-arguments": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", + "integrity": "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=" + }, + "cssnano-util-get-match": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz", + "integrity": "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=" + }, + "cssnano-util-raw-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz", + "integrity": "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==", + "requires": { + "postcss": "^7.0.0" + } + }, + "cssnano-util-same-parent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", + "integrity": "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==" + }, + "csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "requires": { + "css-tree": "^1.1.2" + }, + "dependencies": { + "css-tree": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.2.tgz", + "integrity": "sha512-wCoWush5Aeo48GLhfHPbmvZs59Z+M7k5+B1xDnXbdWNcEF423DoFdqSWE0PM5aNk5nI5cp1q7ms36zGApY/sKQ==", + "requires": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + } + }, + "mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + } + } + }, + "cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" + }, + "cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "requires": { + "cssom": "~0.3.6" + }, + "dependencies": { + "cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + } + } + }, + "csstype": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz", + "integrity": "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" + }, + "cyclist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz", + "integrity": "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=" + }, + "d": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/d/-/d-1.0.1.tgz", + "integrity": "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==", + "requires": { + "es5-ext": "^0.10.50", + "type": "^1.0.1" + } + }, + "damerau-levenshtein": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz", + "integrity": "sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug==" + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "data-urls": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "requires": { + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" + } + }, + "date-fns": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.19.0.tgz", + "integrity": "sha512-X3bf2iTPgCAQp9wvjOQytnf5vO5rESYRXlPIVcgSbtT5OTScPcsf9eZU+B/YIkKAtYr5WeCii58BgATrNitlWg==" + }, + "debug": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz", + "integrity": "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==", + "requires": { + "ms": "2.1.2" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + }, + "decimal.js": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz", + "integrity": "sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==" + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" + }, + "dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=" + }, + "deep-equal": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz", + "integrity": "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==", + "requires": { + "is-arguments": "^1.0.4", + "is-date-object": "^1.0.1", + "is-regex": "^1.0.4", + "object-is": "^1.0.1", + "object-keys": "^1.1.1", + "regexp.prototype.flags": "^1.2.0" + } + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" + }, + "deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==" + }, + "default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "requires": { + "execa": "^1.0.0", + "ip-regex": "^2.1.0" + } + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "requires": { + "object-keys": "^1.0.12" + } + }, + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "requires": { + "is-descriptor": "^0.1.0" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "requires": { + "kind-of": "^3.0.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "requires": { + "is-accessor-descriptor": "^0.1.6", + "is-data-descriptor": "^0.1.4", + "kind-of": "^5.0.0" + } + }, + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + } + } + }, + "del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "requires": { + "@types/glob": "^7.1.1", + "globby": "^6.1.0", + "is-path-cwd": "^2.0.0", + "is-path-in-cwd": "^2.0.0", + "p-map": "^2.0.0", + "pify": "^4.0.1", + "rimraf": "^2.6.3" + }, + "dependencies": { + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "requires": { + "array-uniq": "^1.0.1" + } + }, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "requires": { + "array-union": "^1.0.1", + "glob": "^7.0.3", + "object-assign": "^4.0.1", + "pify": "^2.0.0", + "pinkie-promise": "^2.0.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } + } + } + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + }, + "des.js": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz", + "integrity": "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==", + "requires": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + }, + "detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" + }, + "detect-node": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz", + "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==" + }, + "detect-port-alt": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz", + "integrity": "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==", + "requires": { + "address": "^1.0.1", + "debug": "^2.6.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "diff-sequences": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz", + "integrity": "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==" + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "requires": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "requires": { + "path-type": "^4.0.0" + } + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" + }, + "dns-packet": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz", + "integrity": "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==", + "requires": { + "ip": "^1.1.0", + "safe-buffer": "^5.0.1" + } + }, + "dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "requires": { + "buffer-indexof": "^1.0.0" + } + }, + "doctrine": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz", + "integrity": "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=", + "requires": { + "esutils": "^2.0.2", + "isarray": "^1.0.0" + } + }, + "dom-accessibility-api": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.4.tgz", + "integrity": "sha512-TvrjBckDy2c6v6RLxPv5QXOnU+SmF9nBII5621Ve5fu6Z/BDrENurBEvlC1f44lKEUVqOpK4w9E5Idc5/EgkLQ==" + }, + "dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "requires": { + "utila": "~0.4" + } + }, + "dom-helpers": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.0.tgz", + "integrity": "sha512-Ru5o9+V8CpunKnz5LGgWXkmrH/20cGKwcHwS4m73zIvs54CN9epEmT/HLqFJW3kXpakAFkEdzgy1hzlJe3E4OQ==", + "requires": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "dom-serializer": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz", + "integrity": "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==", + "requires": { + "domelementtype": "^2.0.1", + "entities": "^2.0.0" + }, + "dependencies": { + "domelementtype": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz", + "integrity": "sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==" + }, + "entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + } + } + }, + "domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==" + }, + "domelementtype": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz", + "integrity": "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + }, + "domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "requires": { + "webidl-conversions": "^5.0.0" + }, + "dependencies": { + "webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==" + } + } + }, + "domhandler": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz", + "integrity": "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==", + "requires": { + "domelementtype": "1" + } + }, + "domutils": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz", + "integrity": "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==", + "requires": { + "dom-serializer": "0", + "domelementtype": "1" + } + }, + "dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "dot-prop": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", + "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", + "requires": { + "is-obj": "^2.0.0" + }, + "dependencies": { + "is-obj": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" + } + } + }, + "dotenv": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", + "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==" + }, + "dotenv-expand": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz", + "integrity": "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" + }, + "duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + }, + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "requires": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + }, + "ejs": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz", + "integrity": "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==" + }, + "electron-to-chromium": { + "version": "1.3.671", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.671.tgz", + "integrity": "sha512-RTD97QkdrJKaKwRv9h/wGAaoR2lGxNXEcBXS31vjitgTPwTWAbLdS7cEsBK68eEQy7p6YyT8D5BxBEYHu2SuwQ==" + }, + "elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "requires": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "emittery": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz", + "integrity": "sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==" + }, + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + }, + "emotion": { + "version": "10.0.27", + "resolved": "https://registry.npmjs.org/emotion/-/emotion-10.0.27.tgz", + "integrity": "sha512-2xdDzdWWzue8R8lu4G76uWX5WhyQuzATon9LmNeCy/2BHVC6dsEpfhN1a0qhELgtDVdjyEA6J8Y/VlI5ZnaH0g==", + "requires": { + "babel-plugin-emotion": "^10.0.27", + "create-emotion": "^10.0.27" + } + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + }, + "end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "requires": { + "once": "^1.4.0" + } + }, + "enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "requires": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "dependencies": { + "memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + } + } + }, + "enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "requires": { + "ansi-colors": "^4.1.1" + }, + "dependencies": { + "ansi-colors": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz", + "integrity": "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==" + } + } + }, + "entities": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz", + "integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" + }, + "errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "requires": { + "prr": "~1.0.1" + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "requires": { + "is-arrayish": "^0.2.1" + } + }, + "error-stack-parser": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz", + "integrity": "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==", + "requires": { + "stackframe": "^1.1.1" + } + }, + "es-abstract": { + "version": "1.18.0-next.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.2.tgz", + "integrity": "sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw==", + "requires": { + "call-bind": "^1.0.2", + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2", + "has": "^1.0.3", + "has-symbols": "^1.0.1", + "is-callable": "^1.2.2", + "is-negative-zero": "^2.0.1", + "is-regex": "^1.1.1", + "object-inspect": "^1.9.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.2", + "string.prototype.trimend": "^1.0.3", + "string.prototype.trimstart": "^1.0.3" + } + }, + "es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "requires": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + } + }, + "es5-ext": { + "version": "0.10.53", + "resolved": "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz", + "integrity": "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==", + "requires": { + "es6-iterator": "~2.0.3", + "es6-symbol": "~3.1.3", + "next-tick": "~1.0.0" + } + }, + "es6-iterator": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz", + "integrity": "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=", + "requires": { + "d": "1", + "es5-ext": "^0.10.35", + "es6-symbol": "^3.1.1" + } + }, + "es6-symbol": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz", + "integrity": "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==", + "requires": { + "d": "^1.0.1", + "ext": "^1.1.2" + } + }, + "escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + }, + "escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" + }, + "escodegen": { + "version": "1.14.3", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz", + "integrity": "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==", + "requires": { + "esprima": "^4.0.1", + "estraverse": "^4.2.0", + "esutils": "^2.0.2", + "optionator": "^0.8.1", + "source-map": "~0.6.1" + }, + "dependencies": { + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "requires": { + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + } + }, + "optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "requires": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + } + } + } + }, + "eslint": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-7.20.0.tgz", + "integrity": "sha512-qGi0CTcOGP2OtCQBgWZlQjcTuP0XkIpYFj25XtRTQSHC+umNnp7UMshr2G8SLsRFYDdAPFeHOsiteadmMH02Yw==", + "requires": { + "@babel/code-frame": "7.12.11", + "@eslint/eslintrc": "^0.3.0", + "ajv": "^6.10.0", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.0.1", + "doctrine": "^3.0.0", + "enquirer": "^2.3.5", + "eslint-scope": "^5.1.1", + "eslint-utils": "^2.1.0", + "eslint-visitor-keys": "^2.0.0", + "espree": "^7.3.1", + "esquery": "^1.4.0", + "esutils": "^2.0.2", + "file-entry-cache": "^6.0.0", + "functional-red-black-tree": "^1.0.1", + "glob-parent": "^5.0.0", + "globals": "^12.1.0", + "ignore": "^4.0.6", + "import-fresh": "^3.0.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "js-yaml": "^3.13.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash": "^4.17.20", + "minimatch": "^3.0.4", + "natural-compare": "^1.4.0", + "optionator": "^0.9.1", + "progress": "^2.0.0", + "regexpp": "^3.1.0", + "semver": "^7.2.1", + "strip-ansi": "^6.0.0", + "strip-json-comments": "^3.1.0", + "table": "^6.0.4", + "text-table": "^0.2.0", + "v8-compile-cache": "^2.0.3" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.12.11", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", + "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "requires": { + "esutils": "^2.0.2" + } + }, + "eslint-visitor-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz", + "integrity": "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==" + }, + "globals": { + "version": "12.4.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz", + "integrity": "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==", + "requires": { + "type-fest": "^0.8.1" + } + }, + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "eslint-config-react-app": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-6.0.0.tgz", + "integrity": "sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==", + "requires": { + "confusing-browser-globals": "^1.0.10" + } + }, + "eslint-import-resolver-node": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz", + "integrity": "sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==", + "requires": { + "debug": "^2.6.9", + "resolve": "^1.13.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "eslint-module-utils": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz", + "integrity": "sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==", + "requires": { + "debug": "^2.6.9", + "pkg-dir": "^2.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "requires": { + "locate-path": "^2.0.0" + } + }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" + }, + "pkg-dir": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz", + "integrity": "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=", + "requires": { + "find-up": "^2.1.0" + } + } + } + }, + "eslint-plugin-flowtype": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.2.2.tgz", + "integrity": "sha512-C4PlPYpszr9h1cBfUbTNRI1IdxUCF0qrXAHkXS2+bESp7WUUCnvb3UBBnYlaQLvJYJ2lRz+2SPQQ/WyV7p/Tow==", + "requires": { + "lodash": "^4.17.15", + "string-natural-compare": "^3.0.1" + } + }, + "eslint-plugin-import": { + "version": "2.22.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz", + "integrity": "sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==", + "requires": { + "array-includes": "^3.1.1", + "array.prototype.flat": "^1.2.3", + "contains-path": "^0.1.0", + "debug": "^2.6.9", + "doctrine": "1.5.0", + "eslint-import-resolver-node": "^0.3.4", + "eslint-module-utils": "^2.6.0", + "has": "^1.0.3", + "minimatch": "^3.0.4", + "object.values": "^1.1.1", + "read-pkg-up": "^2.0.0", + "resolve": "^1.17.0", + "tsconfig-paths": "^3.9.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "find-up": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", + "integrity": "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=", + "requires": { + "locate-path": "^2.0.0" + } + }, + "locate-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", + "integrity": "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=", + "requires": { + "p-locate": "^2.0.0", + "path-exists": "^3.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "p-limit": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", + "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", + "requires": { + "p-try": "^1.0.0" + } + }, + "p-locate": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", + "integrity": "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=", + "requires": { + "p-limit": "^1.1.0" + } + }, + "p-try": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", + "integrity": "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" + }, + "path-type": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz", + "integrity": "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=", + "requires": { + "pify": "^2.0.0" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + }, + "read-pkg": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz", + "integrity": "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=", + "requires": { + "load-json-file": "^2.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^2.0.0" + } + }, + "read-pkg-up": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz", + "integrity": "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=", + "requires": { + "find-up": "^2.0.0", + "read-pkg": "^2.0.0" + } + } + } + }, + "eslint-plugin-jest": { + "version": "24.1.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-24.1.5.tgz", + "integrity": "sha512-FIP3lwC8EzEG+rOs1y96cOJmMVpdFNreoDJv29B5vIupVssRi8zrSY3QadogT0K3h1Y8TMxJ6ZSAzYUmFCp2hg==", + "requires": { + "@typescript-eslint/experimental-utils": "^4.0.1" + } + }, + "eslint-plugin-jsx-a11y": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz", + "integrity": "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==", + "requires": { + "@babel/runtime": "^7.11.2", + "aria-query": "^4.2.2", + "array-includes": "^3.1.1", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.0.2", + "axobject-query": "^2.2.0", + "damerau-levenshtein": "^1.0.6", + "emoji-regex": "^9.0.0", + "has": "^1.0.3", + "jsx-ast-utils": "^3.1.0", + "language-tags": "^1.0.5" + }, + "dependencies": { + "emoji-regex": { + "version": "9.2.1", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.1.tgz", + "integrity": "sha512-117l1H6U4X3Krn+MrzYrL57d5H7siRHWraBs7s+LjRuFK7Fe7hJqnJ0skWlinqsycVLU5YAo6L8CsEYQ0V5prg==" + } + } + }, + "eslint-plugin-react": { + "version": "7.22.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.22.0.tgz", + "integrity": "sha512-p30tuX3VS+NWv9nQot9xIGAHBXR0+xJVaZriEsHoJrASGCJZDJ8JLNM0YqKqI0AKm6Uxaa1VUHoNEibxRCMQHA==", + "requires": { + "array-includes": "^3.1.1", + "array.prototype.flatmap": "^1.2.3", + "doctrine": "^2.1.0", + "has": "^1.0.3", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "object.entries": "^1.1.2", + "object.fromentries": "^2.0.2", + "object.values": "^1.1.1", + "prop-types": "^15.7.2", + "resolve": "^1.18.1", + "string.prototype.matchall": "^4.0.2" + }, + "dependencies": { + "doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "requires": { + "esutils": "^2.0.2" + } + } + } + }, + "eslint-plugin-react-hooks": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz", + "integrity": "sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==", + "requires": {} + }, + "eslint-plugin-testing-library": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-3.10.1.tgz", + "integrity": "sha512-nQIFe2muIFv2oR2zIuXE4vTbcFNx8hZKRzgHZqJg8rfopIWwoTwtlbCCNELT/jXzVe1uZF68ALGYoDXjLczKiQ==", + "requires": { + "@typescript-eslint/experimental-utils": "^3.10.1" + }, + "dependencies": { + "@typescript-eslint/experimental-utils": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz", + "integrity": "sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==", + "requires": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/typescript-estree": "3.10.1", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + } + }, + "@typescript-eslint/types": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-3.10.1.tgz", + "integrity": "sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==" + }, + "@typescript-eslint/typescript-estree": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz", + "integrity": "sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==", + "requires": { + "@typescript-eslint/types": "3.10.1", + "@typescript-eslint/visitor-keys": "3.10.1", + "debug": "^4.1.1", + "glob": "^7.1.6", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + } + }, + "@typescript-eslint/visitor-keys": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz", + "integrity": "sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==", + "requires": { + "eslint-visitor-keys": "^1.1.0" + } + }, + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "requires": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + } + }, + "eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "requires": { + "eslint-visitor-keys": "^1.1.0" + } + }, + "eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" + }, + "eslint-webpack-plugin": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-2.5.2.tgz", + "integrity": "sha512-ndD9chZ/kaGnjjx7taRg7c6FK/YKb29SSYzaLtPBIYLYJQmZtuKqtQbAvTS2ymiMQT6X0VW9vZIHK0KLstv93Q==", + "requires": { + "@types/eslint": "^7.2.6", + "arrify": "^2.0.1", + "jest-worker": "^26.6.2", + "micromatch": "^4.0.2", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "requires": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "espree": { + "version": "7.3.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz", + "integrity": "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==", + "requires": { + "acorn": "^7.4.0", + "acorn-jsx": "^5.3.1", + "eslint-visitor-keys": "^1.3.0" + } + }, + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + }, + "esquery": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", + "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", + "requires": { + "estraverse": "^5.1.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==" + } + } + }, + "esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "requires": { + "estraverse": "^5.2.0" + }, + "dependencies": { + "estraverse": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz", + "integrity": "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==" + } + } + }, + "estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + }, + "estree-walker": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz", + "integrity": "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==" + }, + "esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + }, + "eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + }, + "events": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.2.0.tgz", + "integrity": "sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==" + }, + "eventsource": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.0.7.tgz", + "integrity": "sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ==", + "requires": { + "original": "^1.0.0" + } + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "requires": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "exec-sh": { + "version": "0.3.4", + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.4.tgz", + "integrity": "sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==" + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "requires": { + "cross-spawn": "^6.0.0", + "get-stream": "^4.0.0", + "is-stream": "^1.1.0", + "npm-run-path": "^2.0.0", + "p-finally": "^1.0.0", + "signal-exit": "^3.0.0", + "strip-eof": "^1.0.0" + }, + "dependencies": { + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "requires": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + } + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "requires": { + "shebang-regex": "^1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" + } + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=" + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "requires": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "expect": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz", + "integrity": "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==", + "requires": { + "@jest/types": "^26.6.2", + "ansi-styles": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-regex-util": "^26.0.0" + } + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "requires": { + "accepts": "~1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "~1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "~1.1.2", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "~1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.5", + "qs": "6.7.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "~1.5.0", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + } + } + }, + "ext": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz", + "integrity": "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==", + "requires": { + "type": "^2.0.0" + }, + "dependencies": { + "type": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/type/-/type-2.3.0.tgz", + "integrity": "sha512-rgPIqOdfK/4J9FhiVrZ3cveAjRRo5rsQBAIhnylX874y1DX/kEKSVdLsnuHB6l1KTjHyU01VjiMBHgU2adejyg==" + } + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "requires": { + "is-extendable": "^0.1.0" + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "requires": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + } + } + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + }, + "fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "fast-glob": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz", + "integrity": "sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg==", + "requires": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.0", + "merge2": "^1.3.0", + "micromatch": "^4.0.2", + "picomatch": "^2.2.1" + } + }, + "fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + }, + "fastq": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.10.1.tgz", + "integrity": "sha512-AWuv6Ery3pM+dY7LYS8YIaCiQvUaos9OB1RyNgaOWnaX+Tik7Onvcsf8x8c+YtDeT0maYLniBip2hox5KtEXXA==", + "requires": { + "reusify": "^1.0.4" + } + }, + "faye-websocket": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", + "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", + "requires": { + "websocket-driver": ">=0.5.1" + } + }, + "fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", + "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", + "requires": { + "bser": "2.1.1" + } + }, + "figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==" + }, + "file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "requires": { + "flat-cache": "^3.0.4" + } + }, + "file-loader": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.1.1.tgz", + "integrity": "sha512-Klt8C4BjWSXYQAfhpYYkG4qHNTna4toMHEbWrI5IuVoxbU6uiDKeKAP99R8mmbJi3lvewn/jQBOgU4+NS3tDQw==", + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "requires": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "optional": true + }, + "filesize": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-6.1.0.tgz", + "integrity": "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==" + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "requires": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "requires": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "dependencies": { + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "requires": { + "pify": "^4.0.1", + "semver": "^5.6.0" + } + } + } + }, + "find-root": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", + "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" + }, + "find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "requires": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "dependencies": { + "path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + } + } + }, + "flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "requires": { + "flatted": "^3.1.0", + "rimraf": "^3.0.2" + }, + "dependencies": { + "rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "requires": { + "glob": "^7.1.3" + } + } + } + }, + "flatted": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz", + "integrity": "sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA==" + }, + "flatten": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz", + "integrity": "sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==" + }, + "flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "requires": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "follow-redirects": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.2.tgz", + "integrity": "sha512-6mPTgLxYm3r6Bkkg0vNM0HTjfGrOEtsfbhagQvbxDEsEkpNhw582upBaoRZylzen6krEmxXJgt9Ju6HiI4O7BA==" + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + }, + "fork-ts-checker-webpack-plugin": { + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz", + "integrity": "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==", + "requires": { + "@babel/code-frame": "^7.5.5", + "chalk": "^2.4.1", + "micromatch": "^3.1.10", + "minimatch": "^3.0.4", + "semver": "^5.6.0", + "tapable": "^1.0.0", + "worker-rpc": "^0.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.6", + "mime-types": "^2.1.12" + } + }, + "forwarded": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", + "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "requires": { + "map-cache": "^0.2.2" + } + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "requires": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "fs-extra": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", + "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", + "requires": { + "at-least-node": "^1.0.0", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "dependencies": { + "jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "requires": { + "graceful-fs": "^4.1.6", + "universalify": "^2.0.0" + } + }, + "universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + } + } + }, + "fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "requires": { + "minipass": "^3.0.0" + } + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", + "requires": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + }, + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "optional": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + }, + "functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" + }, + "gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + }, + "get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + }, + "get-intrinsic": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", + "integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==", + "requires": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1" + } + }, + "get-own-enumerable-property-symbols": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz", + "integrity": "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + }, + "get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "requires": { + "pump": "^3.0.0" + } + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "requires": { + "assert-plus": "^1.0.0" + } + }, + "glob": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz", + "integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "glob-parent": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz", + "integrity": "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==", + "requires": { + "is-glob": "^4.0.1" + } + }, + "global-modules": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz", + "integrity": "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==", + "requires": { + "global-prefix": "^3.0.0" + } + }, + "global-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz", + "integrity": "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==", + "requires": { + "ini": "^1.3.5", + "kind-of": "^6.0.2", + "which": "^1.3.1" + }, + "dependencies": { + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + } + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + }, + "globby": { + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.2.tgz", + "integrity": "sha512-2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og==", + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + }, + "dependencies": { + "ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==" + } + } + }, + "graceful-fs": { + "version": "4.2.6", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz", + "integrity": "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" + }, + "growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", + "optional": true + }, + "gzip-size": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz", + "integrity": "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==", + "requires": { + "duplexer": "^0.1.1", + "pify": "^4.0.1" + } + }, + "handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + }, + "har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "requires": { + "ajv": "^6.12.3", + "har-schema": "^2.0.0" + } + }, + "harmony-reflect": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.1.tgz", + "integrity": "sha512-WJTeyp0JzGtHcuMsi7rw2VwtkvLa+JyfEKJCFyfcS0+CDkjQ5lHPu7zEhFZP+PDSRrEgXa5Ah0l1MbgbE41XjA==" + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "requires": { + "function-bind": "^1.1.1" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + }, + "has-symbols": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz", + "integrity": "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==" + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "requires": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "requires": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "dependencies": { + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "requires": { + "is-buffer": "^1.1.5" + } + } + } + }, + "hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "requires": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "requires": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + }, + "hex-color-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz", + "integrity": "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==" + }, + "history": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/history/-/history-5.0.0.tgz", + "integrity": "sha512-3NyRMKIiFSJmIPdq7FxkNMJkQ7ZEtVblOQ38VtKaA0zZMW1Eo6Q6W8oDKEflr1kNNTItSnk4JMCO1deeSgbLLg==", + "requires": { + "@babel/runtime": "^7.7.6" + } + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "requires": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "hoist-non-react-statics": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", + "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", + "requires": { + "react-is": "^16.7.0" + }, + "dependencies": { + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + } + } + }, + "hoopy": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz", + "integrity": "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==" + }, + "hosted-git-info": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz", + "integrity": "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==" + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "requires": { + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" + } + }, + "hsl-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz", + "integrity": "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=" + }, + "hsla-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz", + "integrity": "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=" + }, + "html-comment-regex": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz", + "integrity": "sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==" + }, + "html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "requires": { + "whatwg-encoding": "^1.0.5" + } + }, + "html-entities": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz", + "integrity": "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==" + }, + "html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + }, + "html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", + "requires": { + "camel-case": "^4.1.1", + "clean-css": "^4.2.3", + "commander": "^4.1.1", + "he": "^1.2.0", + "param-case": "^3.0.3", + "relateurl": "^0.2.7", + "terser": "^4.6.3" + }, + "dependencies": { + "commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" + } + } + }, + "html-webpack-plugin": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.5.0.tgz", + "integrity": "sha512-MouoXEYSjTzCrjIxWwg8gxL5fE2X2WZJLmBYXlaJhQUH5K/b5OrqmV7T4dB7iu0xkmJ6JlUuV6fFVtnqbPopZw==", + "requires": { + "@types/html-minifier-terser": "^5.0.0", + "@types/tapable": "^1.0.5", + "@types/webpack": "^4.41.8", + "html-minifier-terser": "^5.0.1", + "loader-utils": "^1.2.3", + "lodash": "^4.17.15", + "pretty-error": "^2.1.1", + "tapable": "^1.1.3", + "util.promisify": "1.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + } + } + }, + "htmlparser2": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz", + "integrity": "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==", + "requires": { + "domelementtype": "^1.3.1", + "domhandler": "^2.3.0", + "domutils": "^1.5.1", + "entities": "^1.1.1", + "inherits": "^2.0.1", + "readable-stream": "^3.1.1" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + } + } + }, + "http-parser-js": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz", + "integrity": "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==" + }, + "http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "requires": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + } + }, + "http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "requires": { + "http-proxy": "^1.17.0", + "is-glob": "^4.0.0", + "lodash": "^4.17.11", + "micromatch": "^3.1.10" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + } + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "requires": { + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + } + }, + "https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" + }, + "human-signals": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", + "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" + }, + "hyphenate-style-name": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz", + "integrity": "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "requires": { + "safer-buffer": ">= 2.1.2 < 3" + } + }, + "icss-utils": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz", + "integrity": "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==", + "requires": { + "postcss": "^7.0.14" + } + }, + "identity-obj-proxy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz", + "integrity": "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=", + "requires": { + "harmony-reflect": "^1.4.6" + } + }, + "ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + }, + "iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=" + }, + "ignore": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz", + "integrity": "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" + }, + "immer": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/immer/-/immer-8.0.1.tgz", + "integrity": "sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==" + }, + "import-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz", + "integrity": "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=", + "requires": { + "import-from": "^2.1.0" + } + }, + "import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "requires": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + } + } + }, + "import-from": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz", + "integrity": "sha1-M1238qev/VOqpHHUuAId7ja387E=", + "requires": { + "resolve-from": "^3.0.0" + } + }, + "import-local": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz", + "integrity": "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==", + "requires": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "dependencies": { + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "requires": { + "find-up": "^4.0.0" + } + } + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=" + }, + "indefinite-observable": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/indefinite-observable/-/indefinite-observable-2.0.1.tgz", + "integrity": "sha512-G8vgmork+6H9S8lUAg1gtXEj2JxIQTo0g2PbFiYOdjkziSI0F7UYBiVwhZRuixhBCNGczAls34+5HJPyZysvxQ==", + "requires": { + "symbol-observable": "1.2.0" + } + }, + "indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + }, + "indexes-of": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", + "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=" + }, + "infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "requires": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "requires": { + "default-gateway": "^4.2.0", + "ipaddr.js": "^1.9.0" + } + }, + "internal-slot": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", + "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "requires": { + "get-intrinsic": "^1.1.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + } + }, + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + }, + "ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=" + }, + "ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + }, + "is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==" + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "requires": { + "kind-of": "^6.0.0" + }, + "dependencies": { + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + } + } + }, + "is-arguments": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz", + "integrity": "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==", + "requires": { + "call-bind": "^1.0.0" + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "requires": { + "binary-extensions": "^1.0.0" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "is-callable": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz", + "integrity": "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==" + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "requires": { + "ci-info": "^2.0.0" + } + }, + "is-color-stop": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz", + "integrity": "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=", + "requires": { + "css-color-names": "^0.0.4", + "hex-color-regex": "^1.1.0", + "hsl-regex": "^1.0.0", + "hsla-regex": "^1.0.0", + "rgb-regex": "^1.0.1", + "rgba-regex": "^1.0.0" + } + }, + "is-core-module": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz", + "integrity": "sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==", + "requires": { + "has": "^1.0.3" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "requires": { + "kind-of": "^6.0.0" + }, + "dependencies": { + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + } + } + }, + "is-date-object": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz", + "integrity": "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==" + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "requires": { + "is-accessor-descriptor": "^1.0.0", + "is-data-descriptor": "^1.0.0", + "kind-of": "^6.0.2" + }, + "dependencies": { + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + } + } + }, + "is-directory": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz", + "integrity": "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=" + }, + "is-docker": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.1.1.tgz", + "integrity": "sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==" + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + }, + "is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + }, + "is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-in-browser": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/is-in-browser/-/is-in-browser-1.1.3.tgz", + "integrity": "sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=" + }, + "is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=" + }, + "is-negative-zero": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz", + "integrity": "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "requires": { + "kind-of": "^3.0.2" + } + }, + "is-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz", + "integrity": "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=" + }, + "is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" + }, + "is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "requires": { + "is-path-inside": "^2.1.0" + } + }, + "is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "requires": { + "path-is-inside": "^1.0.2" + } + }, + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "requires": { + "isobject": "^3.0.1" + } + }, + "is-potential-custom-element-name": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz", + "integrity": "sha1-DFLlS8yjkbssSUsh6GJtczbG45c=" + }, + "is-regex": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz", + "integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==", + "requires": { + "call-bind": "^1.0.2", + "has-symbols": "^1.0.1" + } + }, + "is-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz", + "integrity": "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=" + }, + "is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==" + }, + "is-root": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", + "integrity": "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==" + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" + }, + "is-string": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz", + "integrity": "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==" + }, + "is-svg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz", + "integrity": "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==", + "requires": { + "html-comment-regex": "^1.1.0" + } + }, + "is-symbol": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz", + "integrity": "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==", + "requires": { + "has-symbols": "^1.0.1" + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=" + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + }, + "istanbul-lib-coverage": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz", + "integrity": "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==" + }, + "istanbul-lib-instrument": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz", + "integrity": "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==", + "requires": { + "@babel/core": "^7.7.5", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.0.0", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "requires": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" + } + }, + "istanbul-lib-source-maps": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz", + "integrity": "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==", + "requires": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + } + }, + "istanbul-reports": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz", + "integrity": "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==", + "requires": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + } + }, + "jest": { + "version": "26.6.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-26.6.0.tgz", + "integrity": "sha512-jxTmrvuecVISvKFFhOkjsWRZV7sFqdSUAd1ajOKY+/QE/aLBVstsJ/dX8GczLzwiT6ZEwwmZqtCUHLHHQVzcfA==", + "requires": { + "@jest/core": "^26.6.0", + "import-local": "^3.0.2", + "jest-cli": "^26.6.0" + } + }, + "jest-changed-files": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.6.2.tgz", + "integrity": "sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==", + "requires": { + "@jest/types": "^26.6.2", + "execa": "^4.0.0", + "throat": "^5.0.0" + }, + "dependencies": { + "execa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", + "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", + "requires": { + "cross-spawn": "^7.0.0", + "get-stream": "^5.0.0", + "human-signals": "^1.1.1", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.0", + "onetime": "^5.1.0", + "signal-exit": "^3.0.2", + "strip-final-newline": "^2.0.0" + } + }, + "get-stream": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", + "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", + "requires": { + "pump": "^3.0.0" + } + }, + "is-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz", + "integrity": "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==" + }, + "npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "requires": { + "path-key": "^3.0.0" + } + }, + "path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + } + } + }, + "jest-circus": { + "version": "26.6.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-26.6.0.tgz", + "integrity": "sha512-L2/Y9szN6FJPWFK8kzWXwfp+FOR7xq0cUL4lIsdbIdwz3Vh6P1nrpcqOleSzr28zOtSHQNV9Z7Tl+KkuK7t5Ng==", + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^26.6.0", + "@jest/test-result": "^26.6.0", + "@jest/types": "^26.6.0", + "@types/babel__traverse": "^7.0.4", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^26.6.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^26.6.0", + "jest-matcher-utils": "^26.6.0", + "jest-message-util": "^26.6.0", + "jest-runner": "^26.6.0", + "jest-runtime": "^26.6.0", + "jest-snapshot": "^26.6.0", + "jest-util": "^26.6.0", + "pretty-format": "^26.6.0", + "stack-utils": "^2.0.2", + "throat": "^5.0.0" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + } + } + }, + "jest-cli": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-26.6.3.tgz", + "integrity": "sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==", + "requires": { + "@jest/core": "^26.6.3", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "import-local": "^3.0.2", + "is-ci": "^2.0.0", + "jest-config": "^26.6.3", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "prompts": "^2.0.1", + "yargs": "^15.4.1" + } + }, + "jest-config": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-26.6.3.tgz", + "integrity": "sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==", + "requires": { + "@babel/core": "^7.1.0", + "@jest/test-sequencer": "^26.6.3", + "@jest/types": "^26.6.2", + "babel-jest": "^26.6.3", + "chalk": "^4.0.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.4", + "jest-environment-jsdom": "^26.6.2", + "jest-environment-node": "^26.6.2", + "jest-get-type": "^26.3.0", + "jest-jasmine2": "^26.6.3", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2" + } + }, + "jest-diff": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz", + "integrity": "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==", + "requires": { + "chalk": "^4.0.0", + "diff-sequences": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + } + }, + "jest-docblock": { + "version": "26.0.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-26.0.0.tgz", + "integrity": "sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==", + "requires": { + "detect-newline": "^3.0.0" + } + }, + "jest-each": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-26.6.2.tgz", + "integrity": "sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==", + "requires": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "jest-util": "^26.6.2", + "pretty-format": "^26.6.2" + } + }, + "jest-environment-jsdom": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz", + "integrity": "sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==", + "requires": { + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2", + "jsdom": "^16.4.0" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + } + } + }, + "jest-environment-node": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.6.2.tgz", + "integrity": "sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==", + "requires": { + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "jest-mock": "^26.6.2", + "jest-util": "^26.6.2" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + } + } + }, + "jest-get-type": { + "version": "26.3.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz", + "integrity": "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==" + }, + "jest-haste-map": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz", + "integrity": "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==", + "requires": { + "@jest/types": "^26.6.2", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.1.2", + "graceful-fs": "^4.2.4", + "jest-regex-util": "^26.0.0", + "jest-serializer": "^26.6.2", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "micromatch": "^4.0.2", + "sane": "^4.0.3", + "walker": "^1.0.7" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + }, + "anymatch": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", + "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + } + } + }, + "jest-jasmine2": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz", + "integrity": "sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==", + "requires": { + "@babel/traverse": "^7.1.0", + "@jest/environment": "^26.6.2", + "@jest/source-map": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^26.6.2", + "is-generator-fn": "^2.0.0", + "jest-each": "^26.6.2", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-runtime": "^26.6.3", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "pretty-format": "^26.6.2", + "throat": "^5.0.0" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + } + } + }, + "jest-leak-detector": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz", + "integrity": "sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==", + "requires": { + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + } + }, + "jest-matcher-utils": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz", + "integrity": "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==", + "requires": { + "chalk": "^4.0.0", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "pretty-format": "^26.6.2" + } + }, + "jest-message-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz", + "integrity": "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==", + "requires": { + "@babel/code-frame": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.2", + "pretty-format": "^26.6.2", + "slash": "^3.0.0", + "stack-utils": "^2.0.2" + } + }, + "jest-mock": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.2.tgz", + "integrity": "sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==", + "requires": { + "@jest/types": "^26.6.2", + "@types/node": "*" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + } + } + }, + "jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", + "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", + "requires": {}, + "dependencies": { + "jest-resolve": { + "version": "26.6.0", + "optional": true, + "peer": true, + "requires": { + "@jest/types": "^26.6.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.0", + "read-pkg-up": "^7.0.1", + "resolve": "^1.17.0", + "slash": "^3.0.0" + } + } + } + }, + "jest-regex-util": { + "version": "26.0.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz", + "integrity": "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==" + }, + "jest-resolve": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz", + "integrity": "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==", + "requires": { + "@jest/types": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.2", + "read-pkg-up": "^7.0.1", + "resolve": "^1.18.1", + "slash": "^3.0.0" + } + }, + "jest-resolve-dependencies": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz", + "integrity": "sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==", + "requires": { + "@jest/types": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-snapshot": "^26.6.2" + } + }, + "jest-runner": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-26.6.3.tgz", + "integrity": "sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==", + "requires": { + "@jest/console": "^26.6.2", + "@jest/environment": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.7.1", + "exit": "^0.1.2", + "graceful-fs": "^4.2.4", + "jest-config": "^26.6.3", + "jest-docblock": "^26.0.0", + "jest-haste-map": "^26.6.2", + "jest-leak-detector": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-resolve": "^26.6.2", + "jest-runtime": "^26.6.3", + "jest-util": "^26.6.2", + "jest-worker": "^26.6.2", + "source-map-support": "^0.5.6", + "throat": "^5.0.0" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + } + } + }, + "jest-runtime": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.6.3.tgz", + "integrity": "sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==", + "requires": { + "@jest/console": "^26.6.2", + "@jest/environment": "^26.6.2", + "@jest/fake-timers": "^26.6.2", + "@jest/globals": "^26.6.2", + "@jest/source-map": "^26.6.2", + "@jest/test-result": "^26.6.2", + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/yargs": "^15.0.0", + "chalk": "^4.0.0", + "cjs-module-lexer": "^0.6.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.4", + "jest-config": "^26.6.3", + "jest-haste-map": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-mock": "^26.6.2", + "jest-regex-util": "^26.0.0", + "jest-resolve": "^26.6.2", + "jest-snapshot": "^26.6.2", + "jest-util": "^26.6.2", + "jest-validate": "^26.6.2", + "slash": "^3.0.0", + "strip-bom": "^4.0.0", + "yargs": "^15.4.1" + }, + "dependencies": { + "strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" + } + } + }, + "jest-serializer": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz", + "integrity": "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==", + "requires": { + "@types/node": "*", + "graceful-fs": "^4.2.4" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + } + } + }, + "jest-snapshot": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.6.2.tgz", + "integrity": "sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==", + "requires": { + "@babel/types": "^7.0.0", + "@jest/types": "^26.6.2", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.0.0", + "chalk": "^4.0.0", + "expect": "^26.6.2", + "graceful-fs": "^4.2.4", + "jest-diff": "^26.6.2", + "jest-get-type": "^26.3.0", + "jest-haste-map": "^26.6.2", + "jest-matcher-utils": "^26.6.2", + "jest-message-util": "^26.6.2", + "jest-resolve": "^26.6.2", + "natural-compare": "^1.4.0", + "pretty-format": "^26.6.2", + "semver": "^7.3.2" + }, + "dependencies": { + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "jest-util": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", + "integrity": "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==", + "requires": { + "@jest/types": "^26.6.2", + "@types/node": "*", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "is-ci": "^2.0.0", + "micromatch": "^4.0.2" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + } + } + }, + "jest-validate": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz", + "integrity": "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==", + "requires": { + "@jest/types": "^26.6.2", + "camelcase": "^6.0.0", + "chalk": "^4.0.0", + "jest-get-type": "^26.3.0", + "leven": "^3.1.0", + "pretty-format": "^26.6.2" + }, + "dependencies": { + "camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" + } + } + }, + "jest-watch-typeahead": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-0.6.1.tgz", + "integrity": "sha512-ITVnHhj3Jd/QkqQcTqZfRgjfyRhDFM/auzgVo2RKvSwi18YMvh0WvXDJFoFED6c7jd/5jxtu4kSOb9PTu2cPVg==", + "requires": { + "ansi-escapes": "^4.3.1", + "chalk": "^4.0.0", + "jest-regex-util": "^26.0.0", + "jest-watcher": "^26.3.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0" + } + }, + "jest-watcher": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.2.tgz", + "integrity": "sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==", + "requires": { + "@jest/test-result": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^26.6.2", + "string-length": "^4.0.1" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + } + } + }, + "jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "requires": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + } + } + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" + }, + "jsdom": { + "version": "16.4.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.4.0.tgz", + "integrity": "sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w==", + "requires": { + "abab": "^2.0.3", + "acorn": "^7.1.1", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.2.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.0", + "domexception": "^2.0.1", + "escodegen": "^1.14.1", + "html-encoding-sniffer": "^2.0.1", + "is-potential-custom-element-name": "^1.0.0", + "nwsapi": "^2.2.0", + "parse5": "5.1.1", + "request": "^2.88.2", + "request-promise-native": "^1.0.8", + "saxes": "^5.0.0", + "symbol-tree": "^3.2.4", + "tough-cookie": "^3.0.1", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0", + "ws": "^7.2.3", + "xml-name-validator": "^3.0.0" + }, + "dependencies": { + "tough-cookie": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz", + "integrity": "sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==", + "requires": { + "ip-regex": "^2.1.0", + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "ws": { + "version": "7.4.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.4.3.tgz", + "integrity": "sha512-hr6vCR76GsossIRsr8OLR9acVVm1jyfEWvhbNjtgPOrfvAlKzvyeg/P6r8RuDjRyrcQoPQT7K0DGEPc7Ae6jzA==", + "requires": {} + } + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + }, + "json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + }, + "json3": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", + "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==" + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + }, + "jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", + "requires": { + "graceful-fs": "^4.1.6" + } + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "jss": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss/-/jss-10.5.1.tgz", + "integrity": "sha512-hbbO3+FOTqVdd7ZUoTiwpHzKXIo5vGpMNbuXH1a0wubRSWLWSBvwvaq4CiHH/U42CmjOnp6lVNNs/l+Z7ZdDmg==", + "requires": { + "@babel/runtime": "^7.3.1", + "csstype": "^3.0.2", + "indefinite-observable": "^2.0.1", + "is-in-browser": "^1.1.3", + "tiny-warning": "^1.0.2" + } + }, + "jss-plugin-camel-case": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-camel-case/-/jss-plugin-camel-case-10.5.1.tgz", + "integrity": "sha512-9+oymA7wPtswm+zxVti1qiowC5q7bRdCJNORtns2JUj/QHp2QPXYwSNRD8+D2Cy3/CEMtdJzlNnt5aXmpS6NAg==", + "requires": { + "@babel/runtime": "^7.3.1", + "hyphenate-style-name": "^1.0.3", + "jss": "10.5.1" + } + }, + "jss-plugin-default-unit": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-default-unit/-/jss-plugin-default-unit-10.5.1.tgz", + "integrity": "sha512-D48hJBc9Tj3PusvlillHW8Fz0y/QqA7MNmTYDQaSB/7mTrCZjt7AVRROExoOHEtd2qIYKOYJW3Jc2agnvsXRlQ==", + "requires": { + "@babel/runtime": "^7.3.1", + "jss": "10.5.1" + } + }, + "jss-plugin-global": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-global/-/jss-plugin-global-10.5.1.tgz", + "integrity": "sha512-jX4XpNgoaB8yPWw/gA1aPXJEoX0LNpvsROPvxlnYe+SE0JOhuvF7mA6dCkgpXBxfTWKJsno7cDSCgzHTocRjCQ==", + "requires": { + "@babel/runtime": "^7.3.1", + "jss": "10.5.1" + } + }, + "jss-plugin-nested": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-nested/-/jss-plugin-nested-10.5.1.tgz", + "integrity": "sha512-xXkWKOCljuwHNjSYcXrCxBnjd8eJp90KVFW1rlhvKKRXnEKVD6vdKXYezk2a89uKAHckSvBvBoDGsfZrldWqqQ==", + "requires": { + "@babel/runtime": "^7.3.1", + "jss": "10.5.1", + "tiny-warning": "^1.0.2" + } + }, + "jss-plugin-props-sort": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-props-sort/-/jss-plugin-props-sort-10.5.1.tgz", + "integrity": "sha512-t+2vcevNmMg4U/jAuxlfjKt46D/jHzCPEjsjLRj/J56CvP7Iy03scsUP58Iw8mVnaV36xAUZH2CmAmAdo8994g==", + "requires": { + "@babel/runtime": "^7.3.1", + "jss": "10.5.1" + } + }, + "jss-plugin-rule-value-function": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.5.1.tgz", + "integrity": "sha512-3gjrSxsy4ka/lGQsTDY8oYYtkt2esBvQiceGBB4PykXxHoGRz14tbCK31Zc6DHEnIeqsjMUGbq+wEly5UViStQ==", + "requires": { + "@babel/runtime": "^7.3.1", + "jss": "10.5.1", + "tiny-warning": "^1.0.2" + } + }, + "jss-plugin-vendor-prefixer": { + "version": "10.5.1", + "resolved": "https://registry.npmjs.org/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.5.1.tgz", + "integrity": "sha512-cLkH6RaPZWHa1TqSfd2vszNNgxT1W0omlSjAd6hCFHp3KIocSrW21gaHjlMU26JpTHwkc+tJTCQOmE/O1A4FKQ==", + "requires": { + "@babel/runtime": "^7.3.1", + "css-vendor": "^2.0.8", + "jss": "10.5.1" + } + }, + "jsx-ast-utils": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz", + "integrity": "sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==", + "requires": { + "array-includes": "^3.1.2", + "object.assign": "^4.1.2" + } + }, + "jwt-decode": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/jwt-decode/-/jwt-decode-3.1.2.tgz", + "integrity": "sha512-UfpWE/VZn0iP50d8cz9NrZLM9lSWhcJ+0Gt/nm4by88UL+J1SiKN8/5dkjMmbEzwL2CAe+67GsegCbIKtbp75A==" + }, + "killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==" + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "requires": { + "is-buffer": "^1.1.5" + } + }, + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + }, + "klona": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.4.tgz", + "integrity": "sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA==" + }, + "language-subtag-registry": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", + "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + }, + "language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=", + "requires": { + "language-subtag-registry": "~0.3.2" + } + }, + "last-call-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==", + "requires": { + "lodash": "^4.17.5", + "webpack-sources": "^1.1.0" + } + }, + "leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" + }, + "levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "requires": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "dependencies": { + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "requires": { + "prelude-ls": "^1.2.1" + } + } + } + }, + "lines-and-columns": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", + "integrity": "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" + }, + "load-json-file": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz", + "integrity": "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=", + "requires": { + "graceful-fs": "^4.1.2", + "parse-json": "^2.2.0", + "pify": "^2.0.0", + "strip-bom": "^3.0.0" + }, + "dependencies": { + "parse-json": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", + "requires": { + "error-ex": "^1.2.0" + } + }, + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + } + } + }, + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==" + }, + "loader-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz", + "integrity": "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "dependencies": { + "json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "requires": { + "minimist": "^1.2.5" + } + } + } + }, + "locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "requires": { + "p-locate": "^4.1.0" + } + }, + "lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "lodash._reinterpolate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=" + }, + "lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + }, + "lodash.orderby": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.orderby/-/lodash.orderby-4.6.0.tgz", + "integrity": "sha1-5pfwTOXXhSL1TZM4syuBozk+TrM=" + }, + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" + }, + "lodash.template": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", + "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", + "requires": { + "lodash._reinterpolate": "^3.0.0", + "lodash.templatesettings": "^4.0.0" + } + }, + "lodash.templatesettings": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", + "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", + "requires": { + "lodash._reinterpolate": "^3.0.0" + } + }, + "lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + }, + "loglevel": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.7.1.tgz", + "integrity": "sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==" + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "requires": { + "js-tokens": "^3.0.0 || ^4.0.0" + } + }, + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "requires": { + "tslib": "^2.0.3" + } + }, + "lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "requires": { + "yallist": "^4.0.0" + } + }, + "lz-string": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.4.4.tgz", + "integrity": "sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=" + }, + "magic-string": { + "version": "0.25.7", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz", + "integrity": "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==", + "requires": { + "sourcemap-codec": "^1.4.4" + } + }, + "make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "requires": { + "semver": "^6.0.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + } + } + }, + "makeerror": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", + "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", + "requires": { + "tmpl": "1.0.x" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "requires": { + "object-visit": "^1.0.0" + } + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "mdn-data": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", + "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "requires": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + }, + "merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + }, + "microevent.ts": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/microevent.ts/-/microevent.ts-0.1.1.tgz", + "integrity": "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==" + }, + "micromatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz", + "integrity": "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==", + "requires": { + "braces": "^3.0.1", + "picomatch": "^2.0.5" + }, + "dependencies": { + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "requires": { + "fill-range": "^7.0.1" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "requires": { + "is-number": "^7.0.0" + } + } + } + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "requires": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + } + }, + "mime": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", + "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==" + }, + "mime-db": { + "version": "1.46.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz", + "integrity": "sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ==" + }, + "mime-types": { + "version": "2.1.29", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz", + "integrity": "sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ==", + "requires": { + "mime-db": "1.46.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + }, + "min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==" + }, + "mini-create-react-context": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz", + "integrity": "sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ==", + "requires": { + "@babel/runtime": "^7.12.1", + "tiny-warning": "^1.0.3" + } + }, + "mini-css-extract-plugin": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.11.3.tgz", + "integrity": "sha512-n9BA8LonkOkW1/zn+IbLPQmovsL0wMb9yx75fMJQZf2X1Zoec9yTZtyMePcyu19wPkmFbzZZA6fLTotpFhQsOA==", + "requires": { + "loader-utils": "^1.1.0", + "normalize-url": "1.9.1", + "schema-utils": "^1.0.0", + "webpack-sources": "^1.1.0" + }, + "dependencies": { + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + } + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "requires": { + "brace-expansion": "^1.1.7" + } + }, + "minimist": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz", + "integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + }, + "minipass": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz", + "integrity": "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==", + "requires": { + "yallist": "^4.0.0" + } + }, + "minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "requires": { + "minipass": "^3.0.0" + } + }, + "minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "requires": { + "minipass": "^3.0.0" + } + }, + "minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "requires": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + } + }, + "mississippi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "requires": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + } + }, + "mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "requires": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "mkdirp": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", + "requires": { + "minimist": "^1.2.5" + } + }, + "move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", + "requires": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "requires": { + "dns-packet": "^1.3.1", + "thunky": "^1.0.2" + } + }, + "multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=" + }, + "nan": { + "version": "2.14.2", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz", + "integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==", + "optional": true + }, + "nanoid": { + "version": "3.1.20", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.20.tgz", + "integrity": "sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==" + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + } + } + }, + "native-url": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/native-url/-/native-url-0.2.6.tgz", + "integrity": "sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==", + "requires": { + "querystring": "^0.2.0" + }, + "dependencies": { + "querystring": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz", + "integrity": "sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==" + } + } + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" + }, + "neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "next-tick": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz", + "integrity": "sha1-yobR/ogoFpsBICCOPchCS524NCw=" + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node-forge": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz", + "integrity": "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==" + }, + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=" + }, + "node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "requires": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + }, + "dependencies": { + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + } + } + }, + "node-modules-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", + "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=" + }, + "node-notifier": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.1.tgz", + "integrity": "sha512-BvEXF+UmsnAfYfoapKM9nGxnP+Wn7P91YfXmrKnfcYCx6VBeoN5Ez5Ogck6I8Bi5k4RlpqRYaw75pAwzX9OphA==", + "optional": true, + "requires": { + "growly": "^1.3.0", + "is-wsl": "^2.2.0", + "semver": "^7.3.2", + "shellwords": "^0.1.1", + "uuid": "^8.3.0", + "which": "^2.0.2" + }, + "dependencies": { + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "optional": true, + "requires": { + "is-docker": "^2.0.0" + } + }, + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "optional": true, + "requires": { + "lru-cache": "^6.0.0" + } + }, + "uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "optional": true + }, + "which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "optional": true, + "requires": { + "isexe": "^2.0.0" + } + } + } + }, + "node-releases": { + "version": "1.1.70", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.70.tgz", + "integrity": "sha512-Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw==" + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "requires": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + }, + "normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" + }, + "normalize-url": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", + "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=", + "requires": { + "object-assign": "^4.0.1", + "prepend-http": "^1.0.0", + "query-string": "^4.1.0", + "sort-keys": "^1.0.0" + } + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "requires": { + "path-key": "^2.0.0" + } + }, + "nth-check": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz", + "integrity": "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==", + "requires": { + "boolbase": "~1.0.0" + } + }, + "num2fraction": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", + "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" + }, + "nwsapi": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", + "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==" + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "requires": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + } + }, + "object-inspect": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz", + "integrity": "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==" + }, + "object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "requires": { + "isobject": "^3.0.0" + } + }, + "object.assign": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz", + "integrity": "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "has-symbols": "^1.0.1", + "object-keys": "^1.1.1" + } + }, + "object.entries": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.3.tgz", + "integrity": "sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1", + "has": "^1.0.3" + } + }, + "object.fromentries": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.4.tgz", + "integrity": "sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2", + "has": "^1.0.3" + } + }, + "object.getownpropertydescriptors": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz", + "integrity": "sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "requires": { + "isobject": "^3.0.1" + } + }, + "object.values": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.2.tgz", + "integrity": "sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.1", + "has": "^1.0.3" + } + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "requires": { + "wrappy": "1" + } + }, + "onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "requires": { + "mimic-fn": "^2.1.0" + } + }, + "open": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", + "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "requires": { + "is-docker": "^2.0.0", + "is-wsl": "^2.1.1" + }, + "dependencies": { + "is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "requires": { + "is-docker": "^2.0.0" + } + } + } + }, + "opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "requires": { + "is-wsl": "^1.1.0" + } + }, + "optimize-css-assets-webpack-plugin": { + "version": "5.0.4", + "resolved": "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.4.tgz", + "integrity": "sha512-wqd6FdI2a5/FdoiCNNkEvLeA//lHHfG24Ln2Xm2qqdIk4aOlsR18jwpyOihqQ8849W3qu2DX8fOYxpvTMj+93A==", + "requires": { + "cssnano": "^4.1.10", + "last-call-webpack-plugin": "^3.0.0" + } + }, + "optionator": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", + "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", + "requires": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.3" + }, + "dependencies": { + "prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + }, + "type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "requires": { + "prelude-ls": "^1.2.1" + } + } + } + }, + "original": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", + "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", + "requires": { + "url-parse": "^1.4.3" + } + }, + "os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" + }, + "p-each-series": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz", + "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==" + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" + }, + "p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "requires": { + "p-try": "^2.0.0" + } + }, + "p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "requires": { + "p-limit": "^2.2.0" + } + }, + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" + }, + "p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "requires": { + "retry": "^0.12.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + }, + "pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + }, + "parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "requires": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + } + }, + "param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "requires": { + "callsites": "^3.0.0" + } + }, + "parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "requires": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "requires": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + } + }, + "parse5": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz", + "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==" + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + }, + "pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" + }, + "path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" + }, + "path-parse": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + }, + "path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + }, + "pbkdf2": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.1.tgz", + "integrity": "sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==", + "requires": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + }, + "picomatch": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", + "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==" + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "requires": { + "pinkie": "^2.0.0" + } + }, + "pirates": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz", + "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", + "requires": { + "node-modules-regexp": "^1.0.0" + } + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + } + } + }, + "pkg-up": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz", + "integrity": "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==", + "requires": { + "find-up": "^3.0.0" + }, + "dependencies": { + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + } + } + }, + "pnp-webpack-plugin": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz", + "integrity": "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==", + "requires": { + "ts-pnp": "^1.1.6" + } + }, + "popper.js": { + "version": "1.16.1-lts", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1-lts.tgz", + "integrity": "sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==" + }, + "portfinder": { + "version": "1.0.28", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz", + "integrity": "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==", + "requires": { + "async": "^2.6.2", + "debug": "^3.1.1", + "mkdirp": "^0.5.5" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" + }, + "postcss": { + "version": "7.0.35", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz", + "integrity": "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "postcss-attribute-case-insensitive": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz", + "integrity": "sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==", + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^6.0.2" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz", + "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==", + "requires": { + "cssesc": "^3.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1", + "util-deprecate": "^1.0.2" + } + } + } + }, + "postcss-browser-comments": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-3.0.0.tgz", + "integrity": "sha512-qfVjLfq7HFd2e0HW4s1dvU8X080OZdG46fFbIBFjW7US7YPDcWfRvdElvwMJr2LI6hMmD+7LnH2HcmXTs+uOig==", + "requires": { + "postcss": "^7" + } + }, + "postcss-calc": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz", + "integrity": "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==", + "requires": { + "postcss": "^7.0.27", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.0.2" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz", + "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==", + "requires": { + "cssesc": "^3.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1", + "util-deprecate": "^1.0.2" + } + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" + } + } + }, + "postcss-color-functional-notation": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz", + "integrity": "sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==", + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-color-gray": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz", + "integrity": "sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==", + "requires": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.5", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-color-hex-alpha": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz", + "integrity": "sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==", + "requires": { + "postcss": "^7.0.14", + "postcss-values-parser": "^2.0.1" + } + }, + "postcss-color-mod-function": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz", + "integrity": "sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==", + "requires": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-color-rebeccapurple": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz", + "integrity": "sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==", + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-colormin": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", + "integrity": "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==", + "requires": { + "browserslist": "^4.0.0", + "color": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + } + }, + "postcss-convert-values": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", + "integrity": "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + } + }, + "postcss-custom-media": { + "version": "7.0.8", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz", + "integrity": "sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==", + "requires": { + "postcss": "^7.0.14" + } + }, + "postcss-custom-properties": { + "version": "8.0.11", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz", + "integrity": "sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==", + "requires": { + "postcss": "^7.0.17", + "postcss-values-parser": "^2.0.1" + } + }, + "postcss-custom-selectors": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz", + "integrity": "sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==", + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + } + }, + "postcss-dir-pseudo-class": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz", + "integrity": "sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==", + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + } + }, + "postcss-discard-comments": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", + "integrity": "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==", + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-discard-duplicates": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", + "integrity": "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==", + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-discard-empty": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", + "integrity": "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==", + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-discard-overridden": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", + "integrity": "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==", + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-double-position-gradients": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz", + "integrity": "sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==", + "requires": { + "postcss": "^7.0.5", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-env-function": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-2.0.2.tgz", + "integrity": "sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==", + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-flexbugs-fixes": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz", + "integrity": "sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==", + "requires": { + "postcss": "^7.0.26" + } + }, + "postcss-focus-visible": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz", + "integrity": "sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-focus-within": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz", + "integrity": "sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-font-variant": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz", + "integrity": "sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-gap-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz", + "integrity": "sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-image-set-function": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz", + "integrity": "sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==", + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-initial": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.2.tgz", + "integrity": "sha512-ugA2wKonC0xeNHgirR4D3VWHs2JcU08WAi1KFLVcnb7IN89phID6Qtg2RIctWbnvp1TM2BOmDtX8GGLCKdR8YA==", + "requires": { + "lodash.template": "^4.5.0", + "postcss": "^7.0.2" + } + }, + "postcss-lab-function": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz", + "integrity": "sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==", + "requires": { + "@csstools/convert-colors": "^1.4.0", + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-load-config": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz", + "integrity": "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==", + "requires": { + "cosmiconfig": "^5.0.0", + "import-cwd": "^2.0.0" + } + }, + "postcss-loader": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz", + "integrity": "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==", + "requires": { + "loader-utils": "^1.1.0", + "postcss": "^7.0.0", + "postcss-load-config": "^2.0.0", + "schema-utils": "^1.0.0" + }, + "dependencies": { + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + } + } + }, + "postcss-logical": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-3.0.0.tgz", + "integrity": "sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-media-minmax": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz", + "integrity": "sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-merge-longhand": { + "version": "4.0.11", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", + "integrity": "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==", + "requires": { + "css-color-names": "0.0.4", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "stylehacks": "^4.0.0" + } + }, + "postcss-merge-rules": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", + "integrity": "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==", + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "cssnano-util-same-parent": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0", + "vendors": "^1.0.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-minify-font-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", + "integrity": "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + } + }, + "postcss-minify-gradients": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", + "integrity": "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "is-color-stop": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + } + }, + "postcss-minify-params": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", + "integrity": "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==", + "requires": { + "alphanum-sort": "^1.0.0", + "browserslist": "^4.0.0", + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "uniqs": "^2.0.0" + } + }, + "postcss-minify-selectors": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", + "integrity": "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==", + "requires": { + "alphanum-sort": "^1.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "postcss-modules-extract-imports": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz", + "integrity": "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==", + "requires": { + "postcss": "^7.0.5" + } + }, + "postcss-modules-local-by-default": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz", + "integrity": "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==", + "requires": { + "icss-utils": "^4.1.1", + "postcss": "^7.0.32", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz", + "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==", + "requires": { + "cssesc": "^3.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1", + "util-deprecate": "^1.0.2" + } + }, + "postcss-value-parser": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", + "integrity": "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" + } + } + }, + "postcss-modules-scope": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz", + "integrity": "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==", + "requires": { + "postcss": "^7.0.6", + "postcss-selector-parser": "^6.0.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz", + "integrity": "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==", + "requires": { + "cssesc": "^3.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1", + "util-deprecate": "^1.0.2" + } + } + } + }, + "postcss-modules-values": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz", + "integrity": "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==", + "requires": { + "icss-utils": "^4.0.0", + "postcss": "^7.0.6" + } + }, + "postcss-nesting": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-7.0.1.tgz", + "integrity": "sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-normalize": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-8.0.1.tgz", + "integrity": "sha512-rt9JMS/m9FHIRroDDBGSMsyW1c0fkvOJPy62ggxSHUldJO7B195TqFMqIf+lY5ezpDcYOV4j86aUp3/XbxzCCQ==", + "requires": { + "@csstools/normalize.css": "^10.1.0", + "browserslist": "^4.6.2", + "postcss": "^7.0.17", + "postcss-browser-comments": "^3.0.0", + "sanitize.css": "^10.0.0" + } + }, + "postcss-normalize-charset": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz", + "integrity": "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==", + "requires": { + "postcss": "^7.0.0" + } + }, + "postcss-normalize-display-values": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", + "integrity": "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + } + }, + "postcss-normalize-positions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", + "integrity": "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + } + }, + "postcss-normalize-repeat-style": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", + "integrity": "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + } + }, + "postcss-normalize-string": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", + "integrity": "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==", + "requires": { + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + } + }, + "postcss-normalize-timing-functions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", + "integrity": "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + } + }, + "postcss-normalize-unicode": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", + "integrity": "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==", + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + } + }, + "postcss-normalize-url": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", + "integrity": "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==", + "requires": { + "is-absolute-url": "^2.0.0", + "normalize-url": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + }, + "dependencies": { + "is-absolute-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", + "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=" + }, + "normalize-url": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", + "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==" + } + } + }, + "postcss-normalize-whitespace": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", + "integrity": "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==", + "requires": { + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + } + }, + "postcss-ordered-values": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", + "integrity": "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==", + "requires": { + "cssnano-util-get-arguments": "^4.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + } + }, + "postcss-overflow-shorthand": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz", + "integrity": "sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-page-break": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-2.0.0.tgz", + "integrity": "sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-place": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-4.0.1.tgz", + "integrity": "sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==", + "requires": { + "postcss": "^7.0.2", + "postcss-values-parser": "^2.0.0" + } + }, + "postcss-preset-env": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz", + "integrity": "sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==", + "requires": { + "autoprefixer": "^9.6.1", + "browserslist": "^4.6.4", + "caniuse-lite": "^1.0.30000981", + "css-blank-pseudo": "^0.1.4", + "css-has-pseudo": "^0.10.0", + "css-prefers-color-scheme": "^3.1.1", + "cssdb": "^4.4.0", + "postcss": "^7.0.17", + "postcss-attribute-case-insensitive": "^4.0.1", + "postcss-color-functional-notation": "^2.0.1", + "postcss-color-gray": "^5.0.0", + "postcss-color-hex-alpha": "^5.0.3", + "postcss-color-mod-function": "^3.0.3", + "postcss-color-rebeccapurple": "^4.0.1", + "postcss-custom-media": "^7.0.8", + "postcss-custom-properties": "^8.0.11", + "postcss-custom-selectors": "^5.1.2", + "postcss-dir-pseudo-class": "^5.0.0", + "postcss-double-position-gradients": "^1.0.0", + "postcss-env-function": "^2.0.2", + "postcss-focus-visible": "^4.0.0", + "postcss-focus-within": "^3.0.0", + "postcss-font-variant": "^4.0.0", + "postcss-gap-properties": "^2.0.0", + "postcss-image-set-function": "^3.0.1", + "postcss-initial": "^3.0.0", + "postcss-lab-function": "^2.0.1", + "postcss-logical": "^3.0.0", + "postcss-media-minmax": "^4.0.0", + "postcss-nesting": "^7.0.0", + "postcss-overflow-shorthand": "^2.0.0", + "postcss-page-break": "^2.0.0", + "postcss-place": "^4.0.1", + "postcss-pseudo-class-any-link": "^6.0.0", + "postcss-replace-overflow-wrap": "^3.0.0", + "postcss-selector-matches": "^4.0.0", + "postcss-selector-not": "^4.0.0" + } + }, + "postcss-pseudo-class-any-link": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz", + "integrity": "sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==", + "requires": { + "postcss": "^7.0.2", + "postcss-selector-parser": "^5.0.0-rc.3" + } + }, + "postcss-reduce-initial": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", + "integrity": "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==", + "requires": { + "browserslist": "^4.0.0", + "caniuse-api": "^3.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0" + } + }, + "postcss-reduce-transforms": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", + "integrity": "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==", + "requires": { + "cssnano-util-get-match": "^4.0.0", + "has": "^1.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0" + } + }, + "postcss-replace-overflow-wrap": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz", + "integrity": "sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==", + "requires": { + "postcss": "^7.0.2" + } + }, + "postcss-safe-parser": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-5.0.2.tgz", + "integrity": "sha512-jDUfCPJbKOABhwpUKcqCVbbXiloe/QXMcbJ6Iipf3sDIihEzTqRCeMBfRaOHxhBuTYqtASrI1KJWxzztZU4qUQ==", + "requires": { + "postcss": "^8.1.0" + }, + "dependencies": { + "postcss": { + "version": "8.2.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.2.6.tgz", + "integrity": "sha512-xpB8qYxgPuly166AGlpRjUdEYtmOWx2iCwGmrv4vqZL9YPVviDVPZPRXxnXr6xPZOdxQ9lp3ZBFCRgWJ7LE3Sg==", + "requires": { + "colorette": "^1.2.1", + "nanoid": "^3.1.20", + "source-map": "^0.6.1" + } + } + } + }, + "postcss-selector-matches": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz", + "integrity": "sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==", + "requires": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + } + }, + "postcss-selector-not": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz", + "integrity": "sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==", + "requires": { + "balanced-match": "^1.0.0", + "postcss": "^7.0.2" + } + }, + "postcss-selector-parser": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz", + "integrity": "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==", + "requires": { + "cssesc": "^2.0.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + }, + "dependencies": { + "cssesc": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz", + "integrity": "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" + } + } + }, + "postcss-svgo": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.2.tgz", + "integrity": "sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw==", + "requires": { + "is-svg": "^3.0.0", + "postcss": "^7.0.0", + "postcss-value-parser": "^3.0.0", + "svgo": "^1.0.0" + } + }, + "postcss-unique-selectors": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", + "integrity": "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==", + "requires": { + "alphanum-sort": "^1.0.0", + "postcss": "^7.0.0", + "uniqs": "^2.0.0" + } + }, + "postcss-value-parser": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", + "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + }, + "postcss-values-parser": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz", + "integrity": "sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==", + "requires": { + "flatten": "^1.0.2", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" + }, + "prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" + }, + "pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" + }, + "pretty-error": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz", + "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", + "requires": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + } + }, + "pretty-format": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz", + "integrity": "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==", + "requires": { + "@jest/types": "^26.6.2", + "ansi-regex": "^5.0.0", + "ansi-styles": "^4.0.0", + "react-is": "^17.0.1" + } + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" + }, + "process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" + }, + "promise": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/promise/-/promise-8.1.0.tgz", + "integrity": "sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==", + "requires": { + "asap": "~2.0.6" + } + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" + }, + "prompts": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz", + "integrity": "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==", + "requires": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + } + }, + "prop-types": { + "version": "15.7.2", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", + "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", + "requires": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.8.1" + }, + "dependencies": { + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + } + } + }, + "proxy-addr": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz", + "integrity": "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==", + "requires": { + "forwarded": "~0.1.2", + "ipaddr.js": "1.9.1" + } + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=" + }, + "psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "requires": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + }, + "dependencies": { + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + }, + "q": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", + "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=" + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" + }, + "query-string": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", + "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", + "requires": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + } + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=" + }, + "querystringify": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz", + "integrity": "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + }, + "queue-microtask": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.2.tgz", + "integrity": "sha512-dB15eXv3p2jDlbOiNLyMabYg1/sXvppd8DP2J3EOCQ0AkuSXCW2tP7mnVouVLJKgUMY6yP0kcQDVpLCN13h4Xg==" + }, + "raf": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz", + "integrity": "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==", + "requires": { + "performance-now": "^2.1.0" + } + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "requires": { + "safe-buffer": "^5.1.0" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "requires": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + }, + "raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + } + }, + "react": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react/-/react-17.0.1.tgz", + "integrity": "sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "react-app-polyfill": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-2.0.0.tgz", + "integrity": "sha512-0sF4ny9v/B7s6aoehwze9vJNWcmCemAUYBVasscVr92+UYiEqDXOxfKjXN685mDaMRNF3WdhHQs76oTODMocFA==", + "requires": { + "core-js": "^3.6.5", + "object-assign": "^4.1.1", + "promise": "^8.1.0", + "raf": "^3.4.1", + "regenerator-runtime": "^0.13.7", + "whatwg-fetch": "^3.4.1" + } + }, + "react-data-table-component": { + "version": "6.11.7", + "resolved": "https://registry.npmjs.org/react-data-table-component/-/react-data-table-component-6.11.7.tgz", + "integrity": "sha512-p+wdtaaKs2udJByL2tyvL9uj8EDFy5GtpVVtNGd6d5dT0KikVhgCKFMDyv0ef+azdBVS68BaxGQ8JArDr31nWw==", + "requires": { + "deepmerge": "^4.2.2", + "lodash.orderby": "^4.6.0", + "shortid": "^2.2.16" + } + }, + "react-dev-utils": { + "version": "11.0.3", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-11.0.3.tgz", + "integrity": "sha512-4lEA5gF4OHrcJLMUV1t+4XbNDiJbsAWCH5Z2uqlTqW6dD7Cf5nEASkeXrCI/Mz83sI2o527oBIFKVMXtRf1Vtg==", + "requires": { + "@babel/code-frame": "7.10.4", + "address": "1.1.2", + "browserslist": "4.14.2", + "chalk": "2.4.2", + "cross-spawn": "7.0.3", + "detect-port-alt": "1.1.6", + "escape-string-regexp": "2.0.0", + "filesize": "6.1.0", + "find-up": "4.1.0", + "fork-ts-checker-webpack-plugin": "4.1.6", + "global-modules": "2.0.0", + "globby": "11.0.1", + "gzip-size": "5.1.1", + "immer": "8.0.1", + "is-root": "2.1.0", + "loader-utils": "2.0.0", + "open": "^7.0.2", + "pkg-up": "3.1.0", + "prompts": "2.4.0", + "react-error-overlay": "^6.0.9", + "recursive-readdir": "2.2.2", + "shell-quote": "1.7.2", + "strip-ansi": "6.0.0", + "text-table": "0.2.0" + }, + "dependencies": { + "@babel/code-frame": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz", + "integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==", + "requires": { + "@babel/highlight": "^7.10.4" + } + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "browserslist": { + "version": "4.14.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.14.2.tgz", + "integrity": "sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==", + "requires": { + "caniuse-lite": "^1.0.30001125", + "electron-to-chromium": "^1.3.564", + "escalade": "^3.0.2", + "node-releases": "^1.1.61" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + } + } + }, + "globby": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz", + "integrity": "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==", + "requires": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.1.1", + "ignore": "^5.1.4", + "merge2": "^1.3.0", + "slash": "^3.0.0" + } + }, + "ignore": { + "version": "5.1.8", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz", + "integrity": "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "react-dom": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-17.0.1.tgz", + "integrity": "sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1", + "scheduler": "^0.20.1" + } + }, + "react-error-overlay": { + "version": "6.0.9", + "resolved": "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.9.tgz", + "integrity": "sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==" + }, + "react-is": { + "version": "17.0.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz", + "integrity": "sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==" + }, + "react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "react-loading-overlay": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/react-loading-overlay/-/react-loading-overlay-1.0.1.tgz", + "integrity": "sha512-aUjtZ8tNXBSx+MbD2SQs0boPbeTAGTh+I5U9nWjDzMasKlYr58RJpr57c8W7uApeLpOkAGbInExRi6GamNC2bA==", + "requires": { + "emotion": "^10.0.1", + "prop-types": "^15.6.2", + "react-transition-group": "^2.5.0" + }, + "dependencies": { + "dom-helpers": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz", + "integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==", + "requires": { + "@babel/runtime": "^7.1.2" + } + }, + "react-transition-group": { + "version": "2.9.0", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz", + "integrity": "sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==", + "requires": { + "dom-helpers": "^3.4.0", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2", + "react-lifecycles-compat": "^3.0.4" + } + } + } + }, + "react-refresh": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz", + "integrity": "sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==" + }, + "react-router": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-5.2.0.tgz", + "integrity": "sha512-smz1DUuFHRKdcJC0jobGo8cVbhO3x50tCL4icacOlcwDOEQPq4TMqwx3sY1TP+DvtTgz4nm3thuo7A+BK2U0Dw==", + "requires": { + "@babel/runtime": "^7.1.2", + "history": "^4.9.0", + "hoist-non-react-statics": "^3.1.0", + "loose-envify": "^1.3.1", + "mini-create-react-context": "^0.4.0", + "path-to-regexp": "^1.7.0", + "prop-types": "^15.6.2", + "react-is": "^16.6.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" + }, + "dependencies": { + "history": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", + "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", + "requires": { + "@babel/runtime": "^7.1.2", + "loose-envify": "^1.2.0", + "resolve-pathname": "^3.0.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0", + "value-equal": "^1.0.1" + } + }, + "isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + }, + "path-to-regexp": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz", + "integrity": "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==", + "requires": { + "isarray": "0.0.1" + } + }, + "react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + } + } + }, + "react-router-dom": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.2.0.tgz", + "integrity": "sha512-gxAmfylo2QUjcwxI63RhQ5G85Qqt4voZpUXSEqCwykV0baaOTQDR1f0PmY8AELqIyVc0NEZUj0Gov5lNGcXgsA==", + "requires": { + "@babel/runtime": "^7.1.2", + "history": "^4.9.0", + "loose-envify": "^1.3.1", + "prop-types": "^15.6.2", + "react-router": "5.2.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0" + }, + "dependencies": { + "history": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/history/-/history-4.10.1.tgz", + "integrity": "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==", + "requires": { + "@babel/runtime": "^7.1.2", + "loose-envify": "^1.2.0", + "resolve-pathname": "^3.0.0", + "tiny-invariant": "^1.0.2", + "tiny-warning": "^1.0.0", + "value-equal": "^1.0.1" + } + } + } + }, + "react-scripts": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-4.0.3.tgz", + "integrity": "sha512-S5eO4vjUzUisvkIPB7jVsKtuH2HhWcASREYWHAQ1FP5HyCv3xgn+wpILAEWkmy+A+tTNbSZClhxjT3qz6g4L1A==", + "requires": { + "@babel/core": "7.12.3", + "@pmmmwh/react-refresh-webpack-plugin": "0.4.3", + "@svgr/webpack": "5.5.0", + "@typescript-eslint/eslint-plugin": "^4.5.0", + "@typescript-eslint/parser": "^4.5.0", + "babel-eslint": "^10.1.0", + "babel-jest": "^26.6.0", + "babel-loader": "8.1.0", + "babel-plugin-named-asset-import": "^0.3.7", + "babel-preset-react-app": "^10.0.0", + "bfj": "^7.0.2", + "camelcase": "^6.1.0", + "case-sensitive-paths-webpack-plugin": "2.3.0", + "css-loader": "4.3.0", + "dotenv": "8.2.0", + "dotenv-expand": "5.1.0", + "eslint": "^7.11.0", + "eslint-config-react-app": "^6.0.0", + "eslint-plugin-flowtype": "^5.2.0", + "eslint-plugin-import": "^2.22.1", + "eslint-plugin-jest": "^24.1.0", + "eslint-plugin-jsx-a11y": "^6.3.1", + "eslint-plugin-react": "^7.21.5", + "eslint-plugin-react-hooks": "^4.2.0", + "eslint-plugin-testing-library": "^3.9.2", + "eslint-webpack-plugin": "^2.5.2", + "file-loader": "6.1.1", + "fs-extra": "^9.0.1", + "fsevents": "^2.1.3", + "html-webpack-plugin": "4.5.0", + "identity-obj-proxy": "3.0.0", + "jest": "26.6.0", + "jest-circus": "26.6.0", + "jest-resolve": "26.6.0", + "jest-watch-typeahead": "0.6.1", + "mini-css-extract-plugin": "0.11.3", + "optimize-css-assets-webpack-plugin": "5.0.4", + "pnp-webpack-plugin": "1.6.4", + "postcss-flexbugs-fixes": "4.2.1", + "postcss-loader": "3.0.0", + "postcss-normalize": "8.0.1", + "postcss-preset-env": "6.7.0", + "postcss-safe-parser": "5.0.2", + "prompts": "2.4.0", + "react-app-polyfill": "^2.0.0", + "react-dev-utils": "^11.0.3", + "react-refresh": "^0.8.3", + "resolve": "1.18.1", + "resolve-url-loader": "^3.1.2", + "sass-loader": "^10.0.5", + "semver": "7.3.2", + "style-loader": "1.3.0", + "terser-webpack-plugin": "4.2.3", + "ts-pnp": "1.2.0", + "url-loader": "4.1.1", + "webpack": "4.44.2", + "webpack-dev-server": "3.11.1", + "webpack-manifest-plugin": "2.2.0", + "workbox-webpack-plugin": "5.1.4" + }, + "dependencies": { + "@babel/core": { + "version": "7.12.3", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz", + "integrity": "sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==", + "requires": { + "@babel/code-frame": "^7.10.4", + "@babel/generator": "^7.12.1", + "@babel/helper-module-transforms": "^7.12.1", + "@babel/helpers": "^7.12.1", + "@babel/parser": "^7.12.3", + "@babel/template": "^7.10.4", + "@babel/traverse": "^7.12.1", + "@babel/types": "^7.12.1", + "convert-source-map": "^1.7.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.1", + "json5": "^2.1.2", + "lodash": "^4.17.19", + "resolve": "^1.3.2", + "semver": "^5.4.1", + "source-map": "^0.5.0" + }, + "dependencies": { + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + } + } + }, + "@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "requires": { + "@babel/helper-plugin-utils": "^7.8.0" + } + }, + "@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "requires": { + "@babel/helper-plugin-utils": "^7.10.4" + } + }, + "babel-jest": { + "version": "26.6.3", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz", + "integrity": "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==", + "requires": { + "@jest/transform": "^26.6.2", + "@jest/types": "^26.6.2", + "@types/babel__core": "^7.1.7", + "babel-plugin-istanbul": "^6.0.0", + "babel-preset-jest": "^26.6.2", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "slash": "^3.0.0" + } + }, + "babel-loader": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.1.0.tgz", + "integrity": "sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==", + "requires": { + "find-cache-dir": "^2.1.0", + "loader-utils": "^1.4.0", + "mkdirp": "^0.5.3", + "pify": "^4.0.1", + "schema-utils": "^2.6.5" + } + }, + "babel-plugin-named-asset-import": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.7.tgz", + "integrity": "sha512-squySRkf+6JGnvjoUtDEjSREJEBirnXi9NqP6rjSYsylxQxqBTz+pkmf395i9E2zsvmYUaI40BHo6SqZUdydlw==", + "requires": {} + }, + "babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "requires": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + } + }, + "babel-preset-jest": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz", + "integrity": "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==", + "requires": { + "babel-plugin-jest-hoist": "^26.6.2", + "babel-preset-current-node-syntax": "^1.0.0" + } + }, + "camelcase": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz", + "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" + }, + "jest-resolve": { + "version": "26.6.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.0.tgz", + "integrity": "sha512-tRAz2bwraHufNp+CCmAD8ciyCpXCs1NQxB5EJAmtCFy6BN81loFEGWKzYu26Y62lAJJe4X4jg36Kf+NsQyiStQ==", + "requires": { + "@jest/types": "^26.6.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.4", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^26.6.0", + "read-pkg-up": "^7.0.1", + "resolve": "^1.17.0", + "slash": "^3.0.0" + }, + "dependencies": { + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + } + } + }, + "json5": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz", + "integrity": "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==", + "requires": { + "minimist": "^1.2.5" + } + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "dependencies": { + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "requires": { + "minimist": "^1.2.0" + } + } + } + }, + "resolve": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.18.1.tgz", + "integrity": "sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==", + "requires": { + "is-core-module": "^2.0.0", + "path-parse": "^1.0.6" + } + }, + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + }, + "semver": { + "version": "7.3.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz", + "integrity": "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + } + } + }, + "react-transition-group": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.1.tgz", + "integrity": "sha512-Djqr7OQ2aPUiYurhPalTrVy9ddmFCCzwhqQmtN+J3+3DzLO209Fdr70QrN8Z3DsglWql6iY1lDWAfpFiBtuKGw==", + "requires": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + } + }, + "read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "requires": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "dependencies": { + "type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" + } + } + }, + "read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "requires": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + } + }, + "readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + }, + "dependencies": { + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "requires": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + } + } + }, + "recursive-readdir": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz", + "integrity": "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==", + "requires": { + "minimatch": "3.0.4" + } + }, + "redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "requires": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + } + }, + "regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + }, + "regenerate-unicode-properties": { + "version": "8.2.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz", + "integrity": "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==", + "requires": { + "regenerate": "^1.4.0" + } + }, + "regenerator-runtime": { + "version": "0.13.7", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz", + "integrity": "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" + }, + "regenerator-transform": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz", + "integrity": "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==", + "requires": { + "@babel/runtime": "^7.8.4" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "requires": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "regex-parser": { + "version": "2.2.11", + "resolved": "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz", + "integrity": "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==" + }, + "regexp.prototype.flags": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz", + "integrity": "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" + } + }, + "regexpp": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz", + "integrity": "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==" + }, + "regexpu-core": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz", + "integrity": "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==", + "requires": { + "regenerate": "^1.4.0", + "regenerate-unicode-properties": "^8.2.0", + "regjsgen": "^0.5.1", + "regjsparser": "^0.6.4", + "unicode-match-property-ecmascript": "^1.0.4", + "unicode-match-property-value-ecmascript": "^1.2.0" + } + }, + "regjsgen": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz", + "integrity": "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==" + }, + "regjsparser": { + "version": "0.6.7", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.7.tgz", + "integrity": "sha512-ib77G0uxsA2ovgiYbCVGx4Pv3PSttAx2vIwidqQzbL2U5S4Q+j00HdSAneSBuyVcMvEnTXMjiGgB+DlXozVhpQ==", + "requires": { + "jsesc": "~0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" + } + } + }, + "relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" + }, + "renderkid": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.5.tgz", + "integrity": "sha512-ccqoLg+HLOHq1vdfYNm4TBeaCDIi1FLt3wGojTDSvdewUv65oTmI3cnT2E4hRjl1gzKZIPK+KZrXzlUYKnR+vQ==", + "requires": { + "css-select": "^2.0.2", + "dom-converter": "^0.2", + "htmlparser2": "^3.10.1", + "lodash": "^4.17.20", + "strip-ansi": "^3.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "^2.0.0" + } + } + } + }, + "repeat-element": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", + "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==" + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" + }, + "request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "requires": { + "aws-sign2": "~0.7.0", + "aws4": "^1.8.0", + "caseless": "~0.12.0", + "combined-stream": "~1.0.6", + "extend": "~3.0.2", + "forever-agent": "~0.6.1", + "form-data": "~2.3.2", + "har-validator": "~5.1.3", + "http-signature": "~1.2.0", + "is-typedarray": "~1.0.0", + "isstream": "~0.1.2", + "json-stringify-safe": "~5.0.1", + "mime-types": "~2.1.19", + "oauth-sign": "~0.9.0", + "performance-now": "^2.1.0", + "qs": "~6.5.2", + "safe-buffer": "^5.1.2", + "tough-cookie": "~2.5.0", + "tunnel-agent": "^0.6.0", + "uuid": "^3.3.2" + }, + "dependencies": { + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" + } + } + }, + "request-promise-core": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz", + "integrity": "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==", + "requires": { + "lodash": "^4.17.19" + } + }, + "request-promise-native": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz", + "integrity": "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==", + "requires": { + "request-promise-core": "1.1.4", + "stealthy-require": "^1.1.1", + "tough-cookie": "^2.3.3" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + }, + "require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + }, + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" + }, + "resolve": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz", + "integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==", + "requires": { + "is-core-module": "^2.2.0", + "path-parse": "^1.0.6" + } + }, + "resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "requires": { + "resolve-from": "^5.0.0" + }, + "dependencies": { + "resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + } + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=" + }, + "resolve-pathname": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz", + "integrity": "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" + }, + "resolve-url-loader": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-3.1.2.tgz", + "integrity": "sha512-QEb4A76c8Mi7I3xNKXlRKQSlLBwjUV/ULFMP+G7n3/7tJZ8MG5wsZ3ucxP1Jz8Vevn6fnJsxDx9cIls+utGzPQ==", + "requires": { + "adjust-sourcemap-loader": "3.0.0", + "camelcase": "5.3.1", + "compose-function": "3.0.3", + "convert-source-map": "1.7.0", + "es6-iterator": "2.0.3", + "loader-utils": "1.2.3", + "postcss": "7.0.21", + "rework": "1.0.1", + "rework-visit": "1.0.0", + "source-map": "0.6.1" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=" + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "loader-utils": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", + "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^2.0.0", + "json5": "^1.0.1" + } + }, + "postcss": { + "version": "7.0.21", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.21.tgz", + "integrity": "sha512-uIFtJElxJo29QC753JzhidoAhvp/e/Exezkdhfmt8AymWT6/5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ==", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" + }, + "retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=" + }, + "reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + }, + "rework": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz", + "integrity": "sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc=", + "requires": { + "convert-source-map": "^0.3.3", + "css": "^2.0.0" + }, + "dependencies": { + "convert-source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz", + "integrity": "sha1-8dgClQr33SYxof6+BZZVDIarMZA=" + }, + "css": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/css/-/css-2.2.4.tgz", + "integrity": "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==", + "requires": { + "inherits": "^2.0.3", + "source-map": "^0.6.1", + "source-map-resolve": "^0.5.2", + "urix": "^0.1.0" + } + } + } + }, + "rework-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz", + "integrity": "sha1-mUWygD8hni96ygCtuLyfZA+ELJo=" + }, + "rgb-regex": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz", + "integrity": "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=" + }, + "rgba-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz", + "integrity": "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=" + }, + "rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "requires": { + "glob": "^7.1.3" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "requires": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "rollup": { + "version": "1.32.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-1.32.1.tgz", + "integrity": "sha512-/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==", + "requires": { + "@types/estree": "*", + "@types/node": "*", + "acorn": "^7.1.0" + }, + "dependencies": { + "@types/node": { + "version": "14.14.31", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz", + "integrity": "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + } + } + }, + "rollup-plugin-babel": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-babel/-/rollup-plugin-babel-4.4.0.tgz", + "integrity": "sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw==", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "rollup-pluginutils": "^2.8.1" + } + }, + "rollup-plugin-terser": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-5.3.1.tgz", + "integrity": "sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w==", + "requires": { + "@babel/code-frame": "^7.5.5", + "jest-worker": "^24.9.0", + "rollup-pluginutils": "^2.8.2", + "serialize-javascript": "^4.0.0", + "terser": "^4.6.2" + }, + "dependencies": { + "jest-worker": { + "version": "24.9.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz", + "integrity": "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==", + "requires": { + "merge-stream": "^2.0.0", + "supports-color": "^6.1.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "rollup-pluginutils": { + "version": "2.8.2", + "resolved": "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz", + "integrity": "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==", + "requires": { + "estree-walker": "^0.6.1" + } + }, + "rsvp": { + "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==" + }, + "run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "requires": { + "queue-microtask": "^1.2.2" + } + }, + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "requires": { + "aproba": "^1.1.1" + } + }, + "safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "requires": { + "ret": "~0.1.10" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "sane": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", + "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "requires": { + "@cnakazawa/watch": "^1.0.3", + "anymatch": "^2.0.0", + "capture-exit": "^2.0.0", + "exec-sh": "^0.3.2", + "execa": "^1.0.0", + "fb-watchman": "^2.0.0", + "micromatch": "^3.1.4", + "minimist": "^1.1.1", + "walker": "~1.0.5" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + } + } + }, + "sanitize.css": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/sanitize.css/-/sanitize.css-10.0.0.tgz", + "integrity": "sha512-vTxrZz4dX5W86M6oVWVdOVe72ZiPs41Oi7Z6Km4W5Turyz28mrXSJhhEBZoRtzJWIv3833WKVwLSDWWkEfupMg==" + }, + "sass-loader": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-10.1.1.tgz", + "integrity": "sha512-W6gVDXAd5hR/WHsPicvZdjAWHBcEJ44UahgxcIE196fW2ong0ZHMPO1kZuI5q0VlvMQZh32gpv69PLWQm70qrw==", + "requires": { + "klona": "^2.0.4", + "loader-utils": "^2.0.0", + "neo-async": "^2.6.2", + "schema-utils": "^3.0.0", + "semver": "^7.3.2" + }, + "dependencies": { + "schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "requires": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "semver": { + "version": "7.3.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz", + "integrity": "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==", + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + }, + "saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "requires": { + "xmlchars": "^2.2.0" + } + }, + "scheduler": { + "version": "0.20.1", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.20.1.tgz", + "integrity": "sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw==", + "requires": { + "loose-envify": "^1.1.0", + "object-assign": "^4.1.1" + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "requires": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + } + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" + }, + "selfsigned": { + "version": "1.10.8", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.8.tgz", + "integrity": "sha512-2P4PtieJeEwVgTU9QEcwIRDQ/mXJLX8/+I3ur+Pg16nS8oNbrGxEso9NyYWy8NAmXiNl4dlAp5MwoNeCWzON4w==", + "requires": { + "node-forge": "^0.10.0" + } + }, + "semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "requires": { + "debug": "2.6.9", + "depd": "~1.1.2", + "destroy": "~1.0.4", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "~1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "~2.3.0", + "range-parser": "~1.2.1", + "statuses": "~1.5.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + }, + "dependencies": { + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + } + } + }, + "http-errors": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz", + "integrity": "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.4", + "setprototypeof": "1.1.1", + "statuses": ">= 1.5.0 < 2", + "toidentifier": "1.0.0" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + }, + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + } + } + }, + "serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "requires": { + "randombytes": "^2.1.0" + } + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "requires": { + "accepts": "~1.3.4", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "~1.0.3", + "http-errors": "~1.6.2", + "mime-types": "~2.1.17", + "parseurl": "~1.3.2" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "requires": { + "depd": "~1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": ">= 1.4.0 < 2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + } + } + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "requires": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.17.1" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + }, + "set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "requires": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + } + }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "requires": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "shallowequal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", + "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + }, + "shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "requires": { + "shebang-regex": "^3.0.0" + } + }, + "shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + }, + "shell-quote": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", + "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" + }, + "shellwords": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", + "optional": true + }, + "shortid": { + "version": "2.2.16", + "resolved": "https://registry.npmjs.org/shortid/-/shortid-2.2.16.tgz", + "integrity": "sha512-Ugt+GIZqvGXCIItnsL+lvFJOiN7RYqlGy7QE41O3YC1xbNSeDGIRO7xg2JJXIAj1cAGnOeC1r7/T9pgrtQbv4g==", + "requires": { + "nanoid": "^2.1.0" + }, + "dependencies": { + "nanoid": { + "version": "2.1.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-2.1.11.tgz", + "integrity": "sha512-s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA==" + } + } + }, + "side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "requires": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + } + }, + "signal-exit": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", + "integrity": "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=", + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + } + } + }, + "sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + }, + "slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + }, + "slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "requires": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + } + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "requires": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "dependencies": { + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "requires": { + "ms": "2.0.0" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "requires": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "requires": { + "is-descriptor": "^1.0.0" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "requires": { + "kind-of": "^3.2.0" + } + }, + "sockjs": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz", + "integrity": "sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==", + "requires": { + "faye-websocket": "^0.11.3", + "uuid": "^3.4.0", + "websocket-driver": "^0.7.4" + } + }, + "sockjs-client": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.0.tgz", + "integrity": "sha512-8Dt3BDi4FYNrCFGTL/HtwVzkARrENdwOUf1ZoW/9p3M8lZdFT35jVdrHza+qgxuG9H3/shR4cuX/X9umUrjP8Q==", + "requires": { + "debug": "^3.2.6", + "eventsource": "^1.0.7", + "faye-websocket": "^0.11.3", + "inherits": "^2.0.4", + "json3": "^3.3.3", + "url-parse": "^1.4.7" + }, + "dependencies": { + "debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "requires": { + "ms": "^2.1.1" + } + }, + "ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + } + } + }, + "sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", + "requires": { + "is-plain-obj": "^1.0.0" + } + }, + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "requires": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "source-map-support": { + "version": "0.5.19", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz", + "integrity": "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==", + "requires": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==" + }, + "sourcemap-codec": { + "version": "1.4.8", + "resolved": "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz", + "integrity": "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" + }, + "spdx-correct": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", + "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "requires": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + }, + "spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "requires": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "spdx-license-ids": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz", + "integrity": "sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==" + }, + "spdy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", + "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", + "requires": { + "debug": "^4.1.0", + "handle-thing": "^2.0.0", + "http-deceiver": "^1.2.7", + "select-hose": "^2.0.0", + "spdy-transport": "^3.0.0" + } + }, + "spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "requires": { + "debug": "^4.1.0", + "detect-node": "^2.0.4", + "hpack.js": "^2.1.6", + "obuf": "^1.1.2", + "readable-stream": "^3.0.6", + "wbuf": "^1.7.3" + }, + "dependencies": { + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } + } + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "requires": { + "extend-shallow": "^3.0.0" + }, + "dependencies": { + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "requires": { + "asn1": "~0.2.3", + "assert-plus": "^1.0.0", + "bcrypt-pbkdf": "^1.0.0", + "dashdash": "^1.12.0", + "ecc-jsbn": "~0.1.1", + "getpass": "^0.1.1", + "jsbn": "~0.1.0", + "safer-buffer": "^2.0.2", + "tweetnacl": "~0.14.0" + } + }, + "ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "requires": { + "minipass": "^3.1.1" + } + }, + "stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + }, + "stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==", + "requires": { + "escape-string-regexp": "^2.0.0" + } + }, + "stackframe": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.2.0.tgz", + "integrity": "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==" + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "requires": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + } + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + }, + "stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=" + }, + "stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "requires": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "requires": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "requires": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" + }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=" + }, + "string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "requires": { + "safe-buffer": "~5.2.0" + } + }, + "string-length": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.1.tgz", + "integrity": "sha512-PKyXUd0LK0ePjSOnWn34V2uD6acUWev9uy0Ft05k0E8xRW+SKcA0F7eMr7h5xlzfn+4O3N+55rduYyet3Jk+jw==", + "requires": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + } + }, + "string-natural-compare": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz", + "integrity": "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==" + }, + "string-width": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz", + "integrity": "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==", + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.0" + } + }, + "string.prototype.matchall": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.4.tgz", + "integrity": "sha512-pknFIWVachNcyqRfaQSeu/FUfpvJTe4uskUSZ9Wc1RijsPuzbZ8TyYT8WCNnntCjUEqQ3vUHMAfVj2+wLAisPQ==", + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.3", + "es-abstract": "^1.18.0-next.2", + "has-symbols": "^1.0.1", + "internal-slot": "^1.0.3", + "regexp.prototype.flags": "^1.3.1", + "side-channel": "^1.0.4" + } + }, + "string.prototype.trimend": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz", + "integrity": "sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + } + }, + "string.prototype.trimstart": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz", + "integrity": "sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==", + "requires": { + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" + } + }, + "stringify-object": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz", + "integrity": "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==", + "requires": { + "get-own-enumerable-property-symbols": "^3.0.0", + "is-obj": "^1.0.1", + "is-regexp": "^1.0.0" + } + }, + "strip-ansi": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz", + "integrity": "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==", + "requires": { + "ansi-regex": "^5.0.0" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" + }, + "strip-comments": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/strip-comments/-/strip-comments-1.0.2.tgz", + "integrity": "sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==", + "requires": { + "babel-extract-comments": "^1.0.0", + "babel-plugin-transform-object-rest-spread": "^6.26.0" + } + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" + }, + "strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + }, + "strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "requires": { + "min-indent": "^1.0.0" + } + }, + "strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + }, + "style-loader": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-1.3.0.tgz", + "integrity": "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==", + "requires": { + "loader-utils": "^2.0.0", + "schema-utils": "^2.7.0" + }, + "dependencies": { + "schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "requires": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "styled-components": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/styled-components/-/styled-components-5.2.1.tgz", + "integrity": "sha512-sBdgLWrCFTKtmZm/9x7jkIabjFNVzCUeKfoQsM6R3saImkUnjx0QYdLwJHBjY9ifEcmjDamJDVfknWm1yxZPxQ==", + "requires": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/traverse": "^7.4.5", + "@emotion/is-prop-valid": "^0.8.8", + "@emotion/stylis": "^0.8.4", + "@emotion/unitless": "^0.7.4", + "babel-plugin-styled-components": ">= 1", + "css-to-react-native": "^3.0.0", + "hoist-non-react-statics": "^3.0.0", + "shallowequal": "^1.1.0", + "supports-color": "^5.5.0" + }, + "dependencies": { + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, + "stylehacks": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz", + "integrity": "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==", + "requires": { + "browserslist": "^4.0.0", + "postcss": "^7.0.0", + "postcss-selector-parser": "^3.0.0" + }, + "dependencies": { + "postcss-selector-parser": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz", + "integrity": "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==", + "requires": { + "dot-prop": "^5.2.0", + "indexes-of": "^1.0.1", + "uniq": "^1.0.1" + } + } + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + } + } + }, + "supports-hyperlinks": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz", + "integrity": "sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==", + "requires": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "dependencies": { + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + } + } + }, + "svg-parser": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz", + "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + }, + "svgo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", + "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "requires": { + "chalk": "^2.4.1", + "coa": "^2.0.2", + "css-select": "^2.0.0", + "css-select-base-adapter": "^0.1.1", + "css-tree": "1.0.0-alpha.37", + "csso": "^4.0.2", + "js-yaml": "^3.13.1", + "mkdirp": "~0.5.1", + "object.values": "^1.1.0", + "sax": "~1.2.4", + "stable": "^0.1.8", + "unquote": "~1.1.1", + "util.promisify": "~1.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "requires": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + } + }, + "es-abstract": { + "version": "1.17.7", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz", + "integrity": "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==", + "requires": { + "es-to-primitive": "^1.2.1", + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-symbols": "^1.0.1", + "is-callable": "^1.2.2", + "is-regex": "^1.1.1", + "object-inspect": "^1.8.0", + "object-keys": "^1.1.1", + "object.assign": "^4.1.1", + "string.prototype.trimend": "^1.0.1", + "string.prototype.trimstart": "^1.0.1" + } + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "util.promisify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz", + "integrity": "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==", + "requires": { + "define-properties": "^1.1.3", + "es-abstract": "^1.17.2", + "has-symbols": "^1.0.1", + "object.getownpropertydescriptors": "^2.1.0" + } + } + } + }, + "symbol-observable": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", + "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==" + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + }, + "table": { + "version": "6.0.7", + "resolved": "https://registry.npmjs.org/table/-/table-6.0.7.tgz", + "integrity": "sha512-rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g==", + "requires": { + "ajv": "^7.0.2", + "lodash": "^4.17.20", + "slice-ansi": "^4.0.0", + "string-width": "^4.2.0" + }, + "dependencies": { + "ajv": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-7.1.1.tgz", + "integrity": "sha512-ga/aqDYnUy/o7vbsRTFhhTsNeXiYb5JWDIcRIeZfwRNCefwjNTVYCGdGSUrEmiu3yDK3vFvNbgJxvrQW4JXrYQ==", + "requires": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + } + } + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" + }, + "tar": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.0.tgz", + "integrity": "sha512-DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA==", + "requires": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "dependencies": { + "mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + } + } + }, + "temp-dir": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", + "integrity": "sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=" + }, + "tempy": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/tempy/-/tempy-0.3.0.tgz", + "integrity": "sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==", + "requires": { + "temp-dir": "^1.0.0", + "type-fest": "^0.3.1", + "unique-string": "^1.0.0" + }, + "dependencies": { + "type-fest": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz", + "integrity": "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==" + } + } + }, + "terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "requires": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + } + }, + "terser": { + "version": "4.8.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz", + "integrity": "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==", + "requires": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + } + }, + "terser-webpack-plugin": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-4.2.3.tgz", + "integrity": "sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==", + "requires": { + "cacache": "^15.0.5", + "find-cache-dir": "^3.3.1", + "jest-worker": "^26.5.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "source-map": "^0.6.1", + "terser": "^5.3.4", + "webpack-sources": "^1.4.3" + }, + "dependencies": { + "find-cache-dir": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz", + "integrity": "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==", + "requires": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + } + }, + "p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "requires": { + "yocto-queue": "^0.1.0" + } + }, + "pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "requires": { + "find-up": "^4.0.0" + } + }, + "schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "requires": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + }, + "serialize-javascript": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", + "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "requires": { + "randombytes": "^2.1.0" + } + }, + "terser": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.6.0.tgz", + "integrity": "sha512-vyqLMoqadC1uR0vywqOZzriDYzgEkNJFK4q9GeyOBHIbiECHiWLKcWfbQWAUaPfxkjDhapSlZB9f7fkMrvkVjA==", + "requires": { + "commander": "^2.20.0", + "source-map": "~0.7.2", + "source-map-support": "~0.5.19" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + } + } + } + } + }, + "test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "requires": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + }, + "throat": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz", + "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==" + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "requires": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "thunky": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", + "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + }, + "timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "requires": { + "setimmediate": "^1.0.4" + } + }, + "timsort": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz", + "integrity": "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=" + }, + "tiny-invariant": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.1.0.tgz", + "integrity": "sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==" + }, + "tiny-warning": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz", + "integrity": "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + }, + "tmpl": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz", + "integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=" + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "requires": { + "kind-of": "^3.0.2" + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "requires": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "dependencies": { + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + } + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "requires": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + } + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "requires": { + "psl": "^1.1.28", + "punycode": "^2.1.1" + } + }, + "tr46": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz", + "integrity": "sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==", + "requires": { + "punycode": "^2.1.1" + } + }, + "tryer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz", + "integrity": "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==" + }, + "ts-pnp": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", + "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==" + }, + "tsconfig-paths": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz", + "integrity": "sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==", + "requires": { + "@types/json5": "^0.0.29", + "json5": "^1.0.1", + "minimist": "^1.2.0", + "strip-bom": "^3.0.0" + } + }, + "tslib": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz", + "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==" + }, + "tsutils": { + "version": "3.20.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.20.0.tgz", + "integrity": "sha512-RYbuQuvkhuqVeXweWT3tJLKOEJ/UUw9GjNEZGWdrLLlM+611o1gwLHBpxoFJKKl25fLprp2eVthtKs5JOrNeXg==", + "requires": { + "tslib": "^1.8.1" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + } + } + }, + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "requires": { + "safe-buffer": "^5.0.1" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + }, + "type": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/type/-/type-1.2.0.tgz", + "integrity": "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "requires": { + "prelude-ls": "~1.1.2" + } + }, + "type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" + }, + "type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "requires": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + } + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + }, + "typedarray-to-buffer": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", + "integrity": "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==", + "requires": { + "is-typedarray": "^1.0.0" + } + }, + "typescript": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-4.2.2.tgz", + "integrity": "sha512-tbb+NVrLfnsJy3M59lsDgrzWIflR4d4TIUjz+heUnHZwdF7YsrMTKoRERiIvI2lvBG95dfpLxB21WZhys1bgaQ==" + }, + "unicode-canonical-property-names-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", + "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==" + }, + "unicode-match-property-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", + "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", + "requires": { + "unicode-canonical-property-names-ecmascript": "^1.0.4", + "unicode-property-aliases-ecmascript": "^1.0.4" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz", + "integrity": "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==" + }, + "unicode-property-aliases-ecmascript": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz", + "integrity": "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==" + }, + "union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "requires": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + } + }, + "uniq": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", + "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=" + }, + "uniqs": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", + "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=" + }, + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "requires": { + "unique-slug": "^2.0.0" + } + }, + "unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "requires": { + "imurmurhash": "^0.1.4" + } + }, + "unique-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz", + "integrity": "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=", + "requires": { + "crypto-random-string": "^1.0.0" + } + }, + "universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + }, + "unquote": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz", + "integrity": "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "requires": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "requires": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" + } + } + }, + "upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==" + }, + "uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "requires": { + "punycode": "^2.1.0" + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + } + } + }, + "url-loader": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", + "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", + "requires": { + "loader-utils": "^2.0.0", + "mime-types": "^2.1.27", + "schema-utils": "^3.0.0" + }, + "dependencies": { + "schema-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz", + "integrity": "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==", + "requires": { + "@types/json-schema": "^7.0.6", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + } + } + } + }, + "url-parse": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.5.1.tgz", + "integrity": "sha512-HOfCOUJt7iSYzEx/UqgtwKRMC6EU91NFhsCHMv9oM03VJcVo2Qrp8T8kI9D7amFf1cu+/3CEhgb3rF9zL7k85Q==", + "requires": { + "querystringify": "^2.1.1", + "requires-port": "^1.0.0" + } + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" + }, + "util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "requires": { + "inherits": "2.0.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + } + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + }, + "util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", + "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "requires": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + } + }, + "utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + }, + "uuid": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", + "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + }, + "v8-compile-cache": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz", + "integrity": "sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==" + }, + "v8-to-istanbul": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.0.tgz", + "integrity": "sha512-uXUVqNUCLa0AH1vuVxzi+MI4RfxEOKt9pBgKwHbgH7st8Kv2P1m+jvWNnektzBh5QShF3ODgKmUFCf38LnVz1g==", + "requires": { + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0", + "source-map": "^0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + } + } + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "requires": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "value-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz", + "integrity": "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + }, + "vendors": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz", + "integrity": "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==" + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "requires": { + "assert-plus": "^1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "^1.2.0" + }, + "dependencies": { + "extsprintf": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz", + "integrity": "sha1-4mifjzVvrWLMplo6kcXfX5VRaS8=" + } + } + }, + "vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + }, + "w3c-hr-time": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz", + "integrity": "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==", + "requires": { + "browser-process-hrtime": "^1.0.0" + } + }, + "w3c-xmlserializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz", + "integrity": "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==", + "requires": { + "xml-name-validator": "^3.0.0" + } + }, + "walker": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", + "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", + "requires": { + "makeerror": "1.0.x" + } + }, + "watchpack": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", + "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", + "requires": { + "chokidar": "^3.4.1", + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0", + "watchpack-chokidar2": "^2.0.1" + }, + "dependencies": { + "anymatch": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz", + "integrity": "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==", + "optional": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "optional": true + }, + "braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "optional": true, + "requires": { + "fill-range": "^7.0.1" + } + }, + "chokidar": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz", + "integrity": "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==", + "optional": true, + "requires": { + "anymatch": "~3.1.1", + "braces": "~3.0.2", + "fsevents": "~2.3.1", + "glob-parent": "~5.1.0", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.5.0" + } + }, + "fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "optional": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "optional": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "optional": true + }, + "readdirp": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz", + "integrity": "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==", + "optional": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "optional": true, + "requires": { + "is-number": "^7.0.0" + } + } + } + }, + "watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", + "optional": true, + "requires": { + "chokidar": "^2.1.8" + } + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "requires": { + "minimalistic-assert": "^1.0.0" + } + }, + "web-vitals": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/web-vitals/-/web-vitals-1.1.0.tgz", + "integrity": "sha512-1cx54eRxY/+M0KNKdNpNnuXAXG+vJEvwScV4DiV9rOYDguHoeDIzm09ghBohOPtkqPO5OtPC14FWkNva3SDisg==" + }, + "webidl-conversions": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz", + "integrity": "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==" + }, + "webpack": { + "version": "4.44.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.44.2.tgz", + "integrity": "sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==", + "requires": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.3.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "dependencies": { + "acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==" + }, + "cacache": { + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", + "requires": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + } + }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "requires": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + } + }, + "eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "requires": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + } + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "requires": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + } + }, + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "requires": { + "is-plain-object": "^2.0.4" + } + }, + "kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + }, + "loader-utils": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", + "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "requires": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + } + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "requires": { + "yallist": "^3.0.2" + } + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "requires": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + } + }, + "ssri": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", + "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", + "requires": { + "figgy-pudding": "^3.5.1" + } + }, + "terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "requires": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + } + }, + "yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + } + } + }, + "webpack-dev-middleware": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz", + "integrity": "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==", + "requires": { + "memory-fs": "^0.4.1", + "mime": "^2.4.4", + "mkdirp": "^0.5.1", + "range-parser": "^1.2.1", + "webpack-log": "^2.0.0" + } + }, + "webpack-dev-server": { + "version": "3.11.1", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.1.tgz", + "integrity": "sha512-u4R3mRzZkbxQVa+MBWi2uVpB5W59H3ekZAJsQlKUTdl7Elcah2EhygTPLmeFXybQkf9i2+L0kn7ik9SnXa6ihQ==", + "requires": { + "ansi-html": "0.0.7", + "bonjour": "^3.5.0", + "chokidar": "^2.1.8", + "compression": "^1.7.4", + "connect-history-api-fallback": "^1.6.0", + "debug": "^4.1.1", + "del": "^4.1.1", + "express": "^4.17.1", + "html-entities": "^1.3.1", + "http-proxy-middleware": "0.19.1", + "import-local": "^2.0.0", + "internal-ip": "^4.3.0", + "ip": "^1.1.5", + "is-absolute-url": "^3.0.3", + "killable": "^1.0.1", + "loglevel": "^1.6.8", + "opn": "^5.5.0", + "p-retry": "^3.0.1", + "portfinder": "^1.0.26", + "schema-utils": "^1.0.0", + "selfsigned": "^1.10.8", + "semver": "^6.3.0", + "serve-index": "^1.9.1", + "sockjs": "^0.3.21", + "sockjs-client": "^1.5.0", + "spdy": "^4.0.2", + "strip-ansi": "^3.0.1", + "supports-color": "^6.1.0", + "url": "^0.11.0", + "webpack-dev-middleware": "^3.7.2", + "webpack-log": "^2.0.0", + "ws": "^6.2.1", + "yargs": "^13.3.2" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "requires": { + "color-convert": "^1.9.0" + } + }, + "cliui": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz", + "integrity": "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==", + "requires": { + "string-width": "^3.1.0", + "strip-ansi": "^5.2.0", + "wrap-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "emoji-regex": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz", + "integrity": "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "requires": { + "locate-path": "^3.0.0" + } + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "requires": { + "pkg-dir": "^3.0.0", + "resolve-cwd": "^2.0.0" + } + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "requires": { + "p-limit": "^2.0.0" + } + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "requires": { + "resolve-from": "^3.0.0" + } + }, + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + }, + "string-width": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz", + "integrity": "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==", + "requires": { + "emoji-regex": "^7.0.1", + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^5.1.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "requires": { + "ansi-regex": "^2.0.0" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "requires": { + "has-flag": "^3.0.0" + } + }, + "wrap-ansi": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz", + "integrity": "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==", + "requires": { + "ansi-styles": "^3.2.0", + "string-width": "^3.0.0", + "strip-ansi": "^5.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "requires": { + "ansi-regex": "^4.1.0" + } + } + } + }, + "yargs": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz", + "integrity": "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==", + "requires": { + "cliui": "^5.0.0", + "find-up": "^3.0.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^3.0.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^13.1.2" + } + }, + "yargs-parser": { + "version": "13.1.2", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz", + "integrity": "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + } + } + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "requires": { + "ansi-colors": "^3.0.0", + "uuid": "^3.3.2" + } + }, + "webpack-manifest-plugin": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz", + "integrity": "sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==", + "requires": { + "fs-extra": "^7.0.0", + "lodash": ">=3.5 <5", + "object.entries": "^1.1.0", + "tapable": "^1.0.0" + }, + "dependencies": { + "fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "requires": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + } + } + }, + "webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "requires": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "websocket-driver": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", + "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", + "requires": { + "http-parser-js": ">=0.5.1", + "safe-buffer": ">=5.1.0", + "websocket-extensions": ">=0.1.1" + } + }, + "websocket-extensions": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", + "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "requires": { + "iconv-lite": "0.4.24" + } + }, + "whatwg-fetch": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.1.tgz", + "integrity": "sha512-IEmN/ZfmMw6G1hgZpVd0LuZXOQDisrMOZrzYd5x3RAK4bMPlJohKUZWZ9t/QsTvH0dV9TbPDcc2OSuIDcihnHA==" + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" + }, + "whatwg-url": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.4.0.tgz", + "integrity": "sha512-vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw==", + "requires": { + "lodash.sortby": "^4.7.0", + "tr46": "^2.0.2", + "webidl-conversions": "^6.1.0" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "requires": { + "isexe": "^2.0.0" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + }, + "word-wrap": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", + "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" + }, + "workbox-background-sync": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-5.1.4.tgz", + "integrity": "sha512-AH6x5pYq4vwQvfRDWH+vfOePfPIYQ00nCEB7dJRU1e0n9+9HMRyvI63FlDvtFT2AvXVRsXvUt7DNMEToyJLpSA==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-broadcast-update": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-5.1.4.tgz", + "integrity": "sha512-HTyTWkqXvHRuqY73XrwvXPud/FN6x3ROzkfFPsRjtw/kGZuZkPzfeH531qdUGfhtwjmtO/ZzXcWErqVzJNdXaA==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-build": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-build/-/workbox-build-5.1.4.tgz", + "integrity": "sha512-xUcZn6SYU8usjOlfLb9Y2/f86Gdo+fy1fXgH8tJHjxgpo53VVsqRX0lUDw8/JuyzNmXuo8vXX14pXX2oIm9Bow==", + "requires": { + "@babel/core": "^7.8.4", + "@babel/preset-env": "^7.8.4", + "@babel/runtime": "^7.8.4", + "@hapi/joi": "^15.1.0", + "@rollup/plugin-node-resolve": "^7.1.1", + "@rollup/plugin-replace": "^2.3.1", + "@surma/rollup-plugin-off-main-thread": "^1.1.1", + "common-tags": "^1.8.0", + "fast-json-stable-stringify": "^2.1.0", + "fs-extra": "^8.1.0", + "glob": "^7.1.6", + "lodash.template": "^4.5.0", + "pretty-bytes": "^5.3.0", + "rollup": "^1.31.1", + "rollup-plugin-babel": "^4.3.3", + "rollup-plugin-terser": "^5.3.1", + "source-map": "^0.7.3", + "source-map-url": "^0.4.0", + "stringify-object": "^3.3.0", + "strip-comments": "^1.0.2", + "tempy": "^0.3.0", + "upath": "^1.2.0", + "workbox-background-sync": "^5.1.4", + "workbox-broadcast-update": "^5.1.4", + "workbox-cacheable-response": "^5.1.4", + "workbox-core": "^5.1.4", + "workbox-expiration": "^5.1.4", + "workbox-google-analytics": "^5.1.4", + "workbox-navigation-preload": "^5.1.4", + "workbox-precaching": "^5.1.4", + "workbox-range-requests": "^5.1.4", + "workbox-routing": "^5.1.4", + "workbox-strategies": "^5.1.4", + "workbox-streams": "^5.1.4", + "workbox-sw": "^5.1.4", + "workbox-window": "^5.1.4" + }, + "dependencies": { + "fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + } + }, + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + } + } + }, + "workbox-cacheable-response": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-5.1.4.tgz", + "integrity": "sha512-0bfvMZs0Of1S5cdswfQK0BXt6ulU5kVD4lwer2CeI+03czHprXR3V4Y8lPTooamn7eHP8Iywi5QjyAMjw0qauA==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-core": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-core/-/workbox-core-5.1.4.tgz", + "integrity": "sha512-+4iRQan/1D8I81nR2L5vcbaaFskZC2CL17TLbvWVzQ4qiF/ytOGF6XeV54pVxAvKUtkLANhk8TyIUMtiMw2oDg==" + }, + "workbox-expiration": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-5.1.4.tgz", + "integrity": "sha512-oDO/5iC65h2Eq7jctAv858W2+CeRW5e0jZBMNRXpzp0ZPvuT6GblUiHnAsC5W5lANs1QS9atVOm4ifrBiYY7AQ==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-google-analytics": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-5.1.4.tgz", + "integrity": "sha512-0IFhKoEVrreHpKgcOoddV+oIaVXBFKXUzJVBI+nb0bxmcwYuZMdteBTp8AEDJacENtc9xbR0wa9RDCnYsCDLjA==", + "requires": { + "workbox-background-sync": "^5.1.4", + "workbox-core": "^5.1.4", + "workbox-routing": "^5.1.4", + "workbox-strategies": "^5.1.4" + } + }, + "workbox-navigation-preload": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-5.1.4.tgz", + "integrity": "sha512-Wf03osvK0wTflAfKXba//QmWC5BIaIZARU03JIhAEO2wSB2BDROWI8Q/zmianf54kdV7e1eLaIEZhth4K4MyfQ==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-precaching": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-5.1.4.tgz", + "integrity": "sha512-gCIFrBXmVQLFwvAzuGLCmkUYGVhBb7D1k/IL7pUJUO5xacjLcFUaLnnsoVepBGAiKw34HU1y/YuqvTKim9qAZA==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-range-requests": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-5.1.4.tgz", + "integrity": "sha512-1HSujLjgTeoxHrMR2muDW2dKdxqCGMc1KbeyGcmjZZAizJTFwu7CWLDmLv6O1ceWYrhfuLFJO+umYMddk2XMhw==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-routing": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-routing/-/workbox-routing-5.1.4.tgz", + "integrity": "sha512-8ljknRfqE1vEQtnMtzfksL+UXO822jJlHTIR7+BtJuxQ17+WPZfsHqvk1ynR/v0EHik4x2+826Hkwpgh4GKDCw==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "workbox-strategies": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-5.1.4.tgz", + "integrity": "sha512-VVS57LpaJTdjW3RgZvPwX0NlhNmscR7OQ9bP+N/34cYMDzXLyA6kqWffP6QKXSkca1OFo/v6v7hW7zrrguo6EA==", + "requires": { + "workbox-core": "^5.1.4", + "workbox-routing": "^5.1.4" + } + }, + "workbox-streams": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-streams/-/workbox-streams-5.1.4.tgz", + "integrity": "sha512-xU8yuF1hI/XcVhJUAfbQLa1guQUhdLMPQJkdT0kn6HP5CwiPOGiXnSFq80rAG4b1kJUChQQIGPrq439FQUNVrw==", + "requires": { + "workbox-core": "^5.1.4", + "workbox-routing": "^5.1.4" + } + }, + "workbox-sw": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-sw/-/workbox-sw-5.1.4.tgz", + "integrity": "sha512-9xKnKw95aXwSNc8kk8gki4HU0g0W6KXu+xks7wFuC7h0sembFnTrKtckqZxbSod41TDaGh+gWUA5IRXrL0ECRA==" + }, + "workbox-webpack-plugin": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-5.1.4.tgz", + "integrity": "sha512-PZafF4HpugZndqISi3rZ4ZK4A4DxO8rAqt2FwRptgsDx7NF8TVKP86/huHquUsRjMGQllsNdn4FNl8CD/UvKmQ==", + "requires": { + "@babel/runtime": "^7.5.5", + "fast-json-stable-stringify": "^2.0.0", + "source-map-url": "^0.4.0", + "upath": "^1.1.2", + "webpack-sources": "^1.3.0", + "workbox-build": "^5.1.4" + } + }, + "workbox-window": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/workbox-window/-/workbox-window-5.1.4.tgz", + "integrity": "sha512-vXQtgTeMCUq/4pBWMfQX8Ee7N2wVC4Q7XYFqLnfbXJ2hqew/cU1uMTD2KqGEgEpE4/30luxIxgE+LkIa8glBYw==", + "requires": { + "workbox-core": "^5.1.4" + } + }, + "worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "requires": { + "errno": "~0.1.7" + } + }, + "worker-rpc": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/worker-rpc/-/worker-rpc-0.1.1.tgz", + "integrity": "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==", + "requires": { + "microevent.ts": "~0.1.1" + } + }, + "wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + }, + "write-file-atomic": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz", + "integrity": "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==", + "requires": { + "imurmurhash": "^0.1.4", + "is-typedarray": "^1.0.0", + "signal-exit": "^3.0.2", + "typedarray-to-buffer": "^3.1.5" + } + }, + "ws": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", + "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", + "requires": { + "async-limiter": "~1.0.0" + } + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" + }, + "xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + }, + "xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + }, + "y18n": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz", + "integrity": "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==" + }, + "yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "yaml": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.0.tgz", + "integrity": "sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==" + }, + "yargs": { + "version": "15.4.1", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz", + "integrity": "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==", + "requires": { + "cliui": "^6.0.0", + "decamelize": "^1.2.0", + "find-up": "^4.1.0", + "get-caller-file": "^2.0.1", + "require-directory": "^2.1.1", + "require-main-filename": "^2.0.0", + "set-blocking": "^2.0.0", + "string-width": "^4.2.0", + "which-module": "^2.0.0", + "y18n": "^4.0.0", + "yargs-parser": "^18.1.2" + } + }, + "yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "requires": { + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" + } + }, + "yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + } + } +} diff --git a/frontend/package.json b/frontend/package.json new file mode 100644 index 0000000..a062c42 --- /dev/null +++ b/frontend/package.json @@ -0,0 +1,56 @@ +{ + "name": "curation-app", + "version": "0.1.0", + "private": true, + "dependencies": { + "@material-ui/core": "^4.11.3", + "@material-ui/icons": "^4.11.2", + "@material-ui/lab": "^4.0.0-alpha.57", + "@testing-library/jest-dom": "^5.11.4", + "@testing-library/react": "^11.1.0", + "@testing-library/user-event": "^12.1.10", + "@types/jest": "^26.0.15", + "@types/node": "^12.0.0", + "@types/react": "^17.0.0", + "@types/react-dom": "^17.0.0", + "@types/react-router-dom": "^5.1.7", + "date-fns": "^2.19.0", + "history": "^5.0.0", + "jwt-decode": "^3.1.2", + "react": "^17.0.1", + "react-data-table-component": "^6.11.7", + "react-dom": "^17.0.1", + "react-loading-overlay": "^1.0.1", + "react-router-dom": "^5.2.0", + "react-scripts": "4.0.3", + "styled-components": "^5.2.1", + "typescript": "^4.1.2", + "web-vitals": "^1.0.1" + }, + "scripts": { + "start": "react-scripts start", + "build": "bash -ac '. .env.${REACT_APP_ENV}; react-scripts build'", + "build:sandbox": "REACT_APP_ENV=sandbox npm run build", + "build:prod": "REACT_APP_ENV=prod npm run build", + "test": "react-scripts test", + "eject": "react-scripts eject" + }, + "eslintConfig": { + "extends": [ + "react-app", + "react-app/jest" + ] + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + } +} diff --git a/frontend/public/favicon.ico b/frontend/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..a11777cc471a4344702741ab1c8a588998b1311a GIT binary patch literal 3870 zcma);c{J4h9>;%nil|2-o+rCuEF-(I%-F}ijC~o(k~HKAkr0)!FCj~d>`RtpD?8b; zXOC1OD!V*IsqUwzbMF1)-gEDD=A573Z-&G7^LoAC9|WO7Xc0Cx1g^Zu0u_SjAPB3vGa^W|sj)80f#V0@M_CAZTIO(t--xg= z!sii`1giyH7EKL_+Wi0ab<)&E_0KD!3Rp2^HNB*K2@PHCs4PWSA32*-^7d{9nH2_E zmC{C*N*)(vEF1_aMamw2A{ZH5aIDqiabnFdJ|y0%aS|64E$`s2ccV~3lR!u<){eS` z#^Mx6o(iP1Ix%4dv`t@!&Za-K@mTm#vadc{0aWDV*_%EiGK7qMC_(`exc>-$Gb9~W!w_^{*pYRm~G zBN{nA;cm^w$VWg1O^^<6vY`1XCD|s_zv*g*5&V#wv&s#h$xlUilPe4U@I&UXZbL z0)%9Uj&@yd03n;!7do+bfixH^FeZ-Ema}s;DQX2gY+7g0s(9;`8GyvPY1*vxiF&|w z>!vA~GA<~JUqH}d;DfBSi^IT*#lrzXl$fNpq0_T1tA+`A$1?(gLb?e#0>UELvljtQ zK+*74m0jn&)5yk8mLBv;=@}c{t0ztT<v;Avck$S6D`Z)^c0(jiwKhQsn|LDRY&w(Fmi91I7H6S;b0XM{e zXp0~(T@k_r-!jkLwd1_Vre^v$G4|kh4}=Gi?$AaJ)3I+^m|Zyj#*?Kp@w(lQdJZf4 z#|IJW5z+S^e9@(6hW6N~{pj8|NO*>1)E=%?nNUAkmv~OY&ZV;m-%?pQ_11)hAr0oAwILrlsGawpxx4D43J&K=n+p3WLnlDsQ$b(9+4 z?mO^hmV^F8MV{4Lx>(Q=aHhQ1){0d*(e&s%G=i5rq3;t{JC zmgbn5Nkl)t@fPH$v;af26lyhH!k+#}_&aBK4baYPbZy$5aFx4}ka&qxl z$=Rh$W;U)>-=S-0=?7FH9dUAd2(q#4TCAHky!$^~;Dz^j|8_wuKc*YzfdAht@Q&ror?91Dm!N03=4=O!a)I*0q~p0g$Fm$pmr$ zb;wD;STDIi$@M%y1>p&_>%?UP($15gou_ue1u0!4(%81;qcIW8NyxFEvXpiJ|H4wz z*mFT(qVx1FKufG11hByuX%lPk4t#WZ{>8ka2efjY`~;AL6vWyQKpJun2nRiZYDij$ zP>4jQXPaP$UC$yIVgGa)jDV;F0l^n(V=HMRB5)20V7&r$jmk{UUIe zVjKroK}JAbD>B`2cwNQ&GDLx8{pg`7hbA~grk|W6LgiZ`8y`{Iq0i>t!3p2}MS6S+ zO_ruKyAElt)rdS>CtF7j{&6rP-#c=7evGMt7B6`7HG|-(WL`bDUAjyn+k$mx$CH;q2Dz4x;cPP$hW=`pFfLO)!jaCL@V2+F)So3}vg|%O*^T1j>C2lx zsURO-zIJC$^$g2byVbRIo^w>UxK}74^TqUiRR#7s_X$e)$6iYG1(PcW7un-va-S&u zHk9-6Zn&>T==A)lM^D~bk{&rFzCi35>UR!ZjQkdSiNX*-;l4z9j*7|q`TBl~Au`5& z+c)*8?#-tgUR$Zd%Q3bs96w6k7q@#tUn`5rj+r@_sAVVLqco|6O{ILX&U-&-cbVa3 zY?ngHR@%l{;`ri%H*0EhBWrGjv!LE4db?HEWb5mu*t@{kv|XwK8?npOshmzf=vZA@ zVSN9sL~!sn?r(AK)Q7Jk2(|M67Uy3I{eRy z_l&Y@A>;vjkWN5I2xvFFTLX0i+`{qz7C_@bo`ZUzDugfq4+>a3?1v%)O+YTd6@Ul7 zAfLfm=nhZ`)P~&v90$&UcF+yXm9sq!qCx3^9gzIcO|Y(js^Fj)Rvq>nQAHI92ap=P z10A4@prk+AGWCb`2)dQYFuR$|H6iDE8p}9a?#nV2}LBCoCf(Xi2@szia7#gY>b|l!-U`c}@ zLdhvQjc!BdLJvYvzzzngnw51yRYCqh4}$oRCy-z|v3Hc*d|?^Wj=l~18*E~*cR_kU z{XsxM1i{V*4GujHQ3DBpl2w4FgFR48Nma@HPgnyKoIEY-MqmMeY=I<%oG~l!f<+FN z1ZY^;10j4M4#HYXP zw5eJpA_y(>uLQ~OucgxDLuf}fVs272FaMxhn4xnDGIyLXnw>Xsd^J8XhcWIwIoQ9} z%FoSJTAGW(SRGwJwb=@pY7r$uQRK3Zd~XbxU)ts!4XsJrCycrWSI?e!IqwqIR8+Jh zlRjZ`UO1I!BtJR_2~7AbkbSm%XQqxEPkz6BTGWx8e}nQ=w7bZ|eVP4?*Tb!$(R)iC z9)&%bS*u(lXqzitAN)Oo=&Ytn>%Hzjc<5liuPi>zC_nw;Z0AE3Y$Jao_Q90R-gl~5 z_xAb2J%eArrC1CN4G$}-zVvCqF1;H;abAu6G*+PDHSYFx@Tdbfox*uEd3}BUyYY-l zTfEsOqsi#f9^FoLO;ChK<554qkri&Av~SIM*{fEYRE?vH7pTAOmu2pz3X?Wn*!ROX ztd54huAk&mFBemMooL33RV-*1f0Q3_(7hl$<#*|WF9P!;r;4_+X~k~uKEqdzZ$5Al zV63XN@)j$FN#cCD;ek1R#l zv%pGrhB~KWgoCj%GT?%{@@o(AJGt*PG#l3i>lhmb_twKH^EYvacVY-6bsCl5*^~L0 zonm@lk2UvvTKr2RS%}T>^~EYqdL1q4nD%0n&Xqr^cK^`J5W;lRRB^R-O8b&HENO||mo0xaD+S=I8RTlIfVgqN@SXDr2&-)we--K7w= zJVU8?Z+7k9dy;s;^gDkQa`0nz6N{T?(A&Iz)2!DEecLyRa&FI!id#5Z7B*O2=PsR0 zEvc|8{NS^)!d)MDX(97Xw}m&kEO@5jqRaDZ!+%`wYOI<23q|&js`&o4xvjP7D_xv@ z5hEwpsp{HezI9!~6O{~)lLR@oF7?J7i>1|5a~UuoN=q&6N}EJPV_GD`&M*v8Y`^2j zKII*d_@Fi$+i*YEW+Hbzn{iQk~yP z>7N{S4)r*!NwQ`(qcN#8SRQsNK6>{)X12nbF`*7#ecO7I)Q$uZsV+xS4E7aUn+U(K baj7?x%VD!5Cxk2YbYLNVeiXvvpMCWYo=by@ literal 0 HcmV?d00001 diff --git a/frontend/public/index.html b/frontend/public/index.html new file mode 100644 index 0000000..aa069f2 --- /dev/null +++ b/frontend/public/index.html @@ -0,0 +1,43 @@ + + + + + + + + + + + + + React App + + + +

+ + + diff --git a/frontend/public/logo192.png b/frontend/public/logo192.png new file mode 100644 index 0000000000000000000000000000000000000000..fc44b0a3796c0e0a64c3d858ca038bd4570465d9 GIT binary patch literal 5347 zcmZWtbyO6NvR-oO24RV%BvuJ&=?+<7=`LvyB&A_#M7mSDYw1v6DJkiYl9XjT!%$dLEBTQ8R9|wd3008in6lFF3GV-6mLi?MoP_y~}QUnaDCHI#t z7w^m$@6DI)|C8_jrT?q=f8D?0AM?L)Z}xAo^e^W>t$*Y0KlT5=@bBjT9kxb%-KNdk zeOS1tKO#ChhG7%{ApNBzE2ZVNcxbrin#E1TiAw#BlUhXllzhN$qWez5l;h+t^q#Eav8PhR2|T}y5kkflaK`ba-eoE+Z2q@o6P$)=&` z+(8}+-McnNO>e#$Rr{32ngsZIAX>GH??tqgwUuUz6kjns|LjsB37zUEWd|(&O!)DY zQLrq%Y>)Y8G`yYbYCx&aVHi@-vZ3|ebG!f$sTQqMgi0hWRJ^Wc+Ibv!udh_r%2|U) zPi|E^PK?UE!>_4`f`1k4hqqj_$+d!EB_#IYt;f9)fBOumGNyglU(ofY`yHq4Y?B%- zp&G!MRY<~ajTgIHErMe(Z8JG*;D-PJhd@RX@QatggM7+G(Lz8eZ;73)72Hfx5KDOE zkT(m}i2;@X2AT5fW?qVp?@WgN$aT+f_6eo?IsLh;jscNRp|8H}Z9p_UBO^SJXpZew zEK8fz|0Th%(Wr|KZBGTM4yxkA5CFdAj8=QSrT$fKW#tweUFqr0TZ9D~a5lF{)%-tTGMK^2tz(y2v$i%V8XAxIywrZCp=)83p(zIk6@S5AWl|Oa2hF`~~^W zI;KeOSkw1O#TiQ8;U7OPXjZM|KrnN}9arP)m0v$c|L)lF`j_rpG(zW1Qjv$=^|p*f z>)Na{D&>n`jOWMwB^TM}slgTEcjxTlUby89j1)|6ydRfWERn3|7Zd2&e7?!K&5G$x z`5U3uFtn4~SZq|LjFVrz$3iln-+ucY4q$BC{CSm7Xe5c1J<=%Oagztj{ifpaZk_bQ z9Sb-LaQMKp-qJA*bP6DzgE3`}*i1o3GKmo2pn@dj0;He}F=BgINo};6gQF8!n0ULZ zL>kC0nPSFzlcB7p41doao2F7%6IUTi_+!L`MM4o*#Y#0v~WiO8uSeAUNp=vA2KaR&=jNR2iVwG>7t%sG2x_~yXzY)7K& zk3p+O0AFZ1eu^T3s};B%6TpJ6h-Y%B^*zT&SN7C=N;g|#dGIVMSOru3iv^SvO>h4M=t-N1GSLLDqVTcgurco6)3&XpU!FP6Hlrmj}f$ zp95;b)>M~`kxuZF3r~a!rMf4|&1=uMG$;h^g=Kl;H&Np-(pFT9FF@++MMEx3RBsK?AU0fPk-#mdR)Wdkj)`>ZMl#^<80kM87VvsI3r_c@_vX=fdQ`_9-d(xiI z4K;1y1TiPj_RPh*SpDI7U~^QQ?%0&!$Sh#?x_@;ag)P}ZkAik{_WPB4rHyW#%>|Gs zdbhyt=qQPA7`?h2_8T;-E6HI#im9K>au*(j4;kzwMSLgo6u*}-K`$_Gzgu&XE)udQ zmQ72^eZd|vzI)~!20JV-v-T|<4@7ruqrj|o4=JJPlybwMg;M$Ud7>h6g()CT@wXm` zbq=A(t;RJ^{Xxi*Ff~!|3!-l_PS{AyNAU~t{h;(N(PXMEf^R(B+ZVX3 z8y0;0A8hJYp@g+c*`>eTA|3Tgv9U8#BDTO9@a@gVMDxr(fVaEqL1tl?md{v^j8aUv zm&%PX4^|rX|?E4^CkplWWNv*OKM>DxPa z!RJ)U^0-WJMi)Ksc!^ixOtw^egoAZZ2Cg;X7(5xZG7yL_;UJ#yp*ZD-;I^Z9qkP`} zwCTs0*%rIVF1sgLervtnUo&brwz?6?PXRuOCS*JI-WL6GKy7-~yi0giTEMmDs_-UX zo=+nFrW_EfTg>oY72_4Z0*uG>MnXP=c0VpT&*|rvv1iStW;*^={rP1y?Hv+6R6bxFMkxpWkJ>m7Ba{>zc_q zEefC3jsXdyS5??Mz7IET$Kft|EMNJIv7Ny8ZOcKnzf`K5Cd)&`-fTY#W&jnV0l2vt z?Gqhic}l}mCv1yUEy$%DP}4AN;36$=7aNI^*AzV(eYGeJ(Px-j<^gSDp5dBAv2#?; zcMXv#aj>%;MiG^q^$0MSg-(uTl!xm49dH!{X0){Ew7ThWV~Gtj7h%ZD zVN-R-^7Cf0VH!8O)uUHPL2mO2tmE*cecwQv_5CzWeh)ykX8r5Hi`ehYo)d{Jnh&3p z9ndXT$OW51#H5cFKa76c<%nNkP~FU93b5h-|Cb}ScHs@4Q#|}byWg;KDMJ#|l zE=MKD*F@HDBcX@~QJH%56eh~jfPO-uKm}~t7VkHxHT;)4sd+?Wc4* z>CyR*{w@4(gnYRdFq=^(#-ytb^5ESD?x<0Skhb%Pt?npNW1m+Nv`tr9+qN<3H1f<% zZvNEqyK5FgPsQ`QIu9P0x_}wJR~^CotL|n zk?dn;tLRw9jJTur4uWoX6iMm914f0AJfB@C74a;_qRrAP4E7l890P&{v<}>_&GLrW z)klculcg`?zJO~4;BBAa=POU%aN|pmZJn2{hA!d!*lwO%YSIzv8bTJ}=nhC^n}g(ld^rn#kq9Z3)z`k9lvV>y#!F4e{5c$tnr9M{V)0m(Z< z#88vX6-AW7T2UUwW`g<;8I$Jb!R%z@rCcGT)-2k7&x9kZZT66}Ztid~6t0jKb&9mm zpa}LCb`bz`{MzpZR#E*QuBiZXI#<`5qxx=&LMr-UUf~@dRk}YI2hbMsAMWOmDzYtm zjof16D=mc`^B$+_bCG$$@R0t;e?~UkF?7<(vkb70*EQB1rfUWXh$j)R2)+dNAH5%R zEBs^?N;UMdy}V};59Gu#0$q53$}|+q7CIGg_w_WlvE}AdqoS<7DY1LWS9?TrfmcvT zaypmplwn=P4;a8-%l^e?f`OpGb}%(_mFsL&GywhyN(-VROj`4~V~9bGv%UhcA|YW% zs{;nh@aDX11y^HOFXB$a7#Sr3cEtNd4eLm@Y#fc&j)TGvbbMwze zXtekX_wJqxe4NhuW$r}cNy|L{V=t#$%SuWEW)YZTH|!iT79k#?632OFse{+BT_gau zJwQcbH{b}dzKO?^dV&3nTILYlGw{27UJ72ZN){BILd_HV_s$WfI2DC<9LIHFmtyw? zQ;?MuK7g%Ym+4e^W#5}WDLpko%jPOC=aN)3!=8)s#Rnercak&b3ESRX3z{xfKBF8L z5%CGkFmGO@x?_mPGlpEej!3!AMddChabyf~nJNZxx!D&{@xEb!TDyvqSj%Y5@A{}9 zRzoBn0?x}=krh{ok3Nn%e)#~uh;6jpezhA)ySb^b#E>73e*frBFu6IZ^D7Ii&rsiU z%jzygxT-n*joJpY4o&8UXr2s%j^Q{?e-voloX`4DQyEK+DmrZh8A$)iWL#NO9+Y@!sO2f@rI!@jN@>HOA< z?q2l{^%mY*PNx2FoX+A7X3N}(RV$B`g&N=e0uvAvEN1W^{*W?zT1i#fxuw10%~))J zjx#gxoVlXREWZf4hRkgdHx5V_S*;p-y%JtGgQ4}lnA~MBz-AFdxUxU1RIT$`sal|X zPB6sEVRjGbXIP0U+?rT|y5+ev&OMX*5C$n2SBPZr`jqzrmpVrNciR0e*Wm?fK6DY& zl(XQZ60yWXV-|Ps!A{EF;=_z(YAF=T(-MkJXUoX zI{UMQDAV2}Ya?EisdEW;@pE6dt;j0fg5oT2dxCi{wqWJ<)|SR6fxX~5CzblPGr8cb zUBVJ2CQd~3L?7yfTpLNbt)He1D>*KXI^GK%<`bq^cUq$Q@uJifG>p3LU(!H=C)aEL zenk7pVg}0{dKU}&l)Y2Y2eFMdS(JS0}oZUuVaf2+K*YFNGHB`^YGcIpnBlMhO7d4@vV zv(@N}(k#REdul8~fP+^F@ky*wt@~&|(&&meNO>rKDEnB{ykAZ}k>e@lad7to>Ao$B zz<1(L=#J*u4_LB=8w+*{KFK^u00NAmeNN7pr+Pf+N*Zl^dO{LM-hMHyP6N!~`24jd zXYP|Ze;dRXKdF2iJG$U{k=S86l@pytLx}$JFFs8e)*Vi?aVBtGJ3JZUj!~c{(rw5>vuRF$`^p!P8w1B=O!skwkO5yd4_XuG^QVF z`-r5K7(IPSiKQ2|U9+`@Js!g6sfJwAHVd|s?|mnC*q zp|B|z)(8+mxXyxQ{8Pg3F4|tdpgZZSoU4P&9I8)nHo1@)9_9u&NcT^FI)6|hsAZFk zZ+arl&@*>RXBf-OZxhZerOr&dN5LW9@gV=oGFbK*J+m#R-|e6(Loz(;g@T^*oO)0R zN`N=X46b{7yk5FZGr#5&n1!-@j@g02g|X>MOpF3#IjZ_4wg{dX+G9eqS+Es9@6nC7 zD9$NuVJI}6ZlwtUm5cCAiYv0(Yi{%eH+}t)!E^>^KxB5^L~a`4%1~5q6h>d;paC9c zTj0wTCKrhWf+F#5>EgX`sl%POl?oyCq0(w0xoL?L%)|Q7d|Hl92rUYAU#lc**I&^6p=4lNQPa0 znQ|A~i0ip@`B=FW-Q;zh?-wF;Wl5!+q3GXDu-x&}$gUO)NoO7^$BeEIrd~1Dh{Tr` z8s<(Bn@gZ(mkIGnmYh_ehXnq78QL$pNDi)|QcT*|GtS%nz1uKE+E{7jdEBp%h0}%r zD2|KmYGiPa4;md-t_m5YDz#c*oV_FqXd85d@eub?9N61QuYcb3CnVWpM(D-^|CmkL z(F}L&N7qhL2PCq)fRh}XO@U`Yn<?TNGR4L(mF7#4u29{i~@k;pLsgl({YW5`Mo+p=zZn3L*4{JU;++dG9 X@eDJUQo;Ye2mwlRs?y0|+_a0zY+Zo%Dkae}+MySoIppb75o?vUW_?)>@g{U2`ERQIXV zeY$JrWnMZ$QC<=ii4X|@0H8`si75jB(ElJb00HAB%>SlLR{!zO|C9P3zxw_U8?1d8uRZ=({Ga4shyN}3 zAK}WA(ds|``G4jA)9}Bt2Hy0+f3rV1E6b|@?hpGA=PI&r8)ah|)I2s(P5Ic*Ndhn^ z*T&j@gbCTv7+8rpYbR^Ty}1AY)YH;p!m948r#%7x^Z@_-w{pDl|1S4`EM3n_PaXvK z1JF)E3qy$qTj5Xs{jU9k=y%SQ0>8E$;x?p9ayU0bZZeo{5Z@&FKX>}s!0+^>C^D#z z>xsCPvxD3Z=dP}TTOSJhNTPyVt14VCQ9MQFN`rn!c&_p?&4<5_PGm4a;WS&1(!qKE z_H$;dDdiPQ!F_gsN`2>`X}$I=B;={R8%L~`>RyKcS$72ai$!2>d(YkciA^J0@X%G4 z4cu!%Ps~2JuJ8ex`&;Fa0NQOq_nDZ&X;^A=oc1&f#3P1(!5il>6?uK4QpEG8z0Rhu zvBJ+A9RV?z%v?!$=(vcH?*;vRs*+PPbOQ3cdPr5=tOcLqmfx@#hOqX0iN)wTTO21jH<>jpmwRIAGw7`a|sl?9y9zRBh>(_%| zF?h|P7}~RKj?HR+q|4U`CjRmV-$mLW>MScKnNXiv{vD3&2@*u)-6P@h0A`eeZ7}71 zK(w%@R<4lLt`O7fs1E)$5iGb~fPfJ?WxhY7c3Q>T-w#wT&zW522pH-B%r5v#5y^CF zcC30Se|`D2mY$hAlIULL%-PNXgbbpRHgn<&X3N9W!@BUk@9g*P5mz-YnZBb*-$zMM z7Qq}ic0mR8n{^L|=+diODdV}Q!gwr?y+2m=3HWwMq4z)DqYVg0J~^}-%7rMR@S1;9 z7GFj6K}i32X;3*$SmzB&HW{PJ55kT+EI#SsZf}bD7nW^Haf}_gXciYKX{QBxIPSx2Ma? zHQqgzZq!_{&zg{yxqv3xq8YV+`S}F6A>Gtl39_m;K4dA{pP$BW0oIXJ>jEQ!2V3A2 zdpoTxG&V=(?^q?ZTj2ZUpDUdMb)T?E$}CI>r@}PFPWD9@*%V6;4Ag>D#h>!s)=$0R zRXvdkZ%|c}ubej`jl?cS$onl9Tw52rBKT)kgyw~Xy%z62Lr%V6Y=f?2)J|bZJ5(Wx zmji`O;_B+*X@qe-#~`HFP<{8$w@z4@&`q^Q-Zk8JG3>WalhnW1cvnoVw>*R@c&|o8 zZ%w!{Z+MHeZ*OE4v*otkZqz11*s!#s^Gq>+o`8Z5 z^i-qzJLJh9!W-;SmFkR8HEZJWiXk$40i6)7 zZpr=k2lp}SasbM*Nbn3j$sn0;rUI;%EDbi7T1ZI4qL6PNNM2Y%6{LMIKW+FY_yF3) zSKQ2QSujzNMSL2r&bYs`|i2Dnn z=>}c0>a}>|uT!IiMOA~pVT~R@bGlm}Edf}Kq0?*Af6#mW9f9!}RjW7om0c9Qlp;yK z)=XQs(|6GCadQbWIhYF=rf{Y)sj%^Id-ARO0=O^Ad;Ph+ z0?$eE1xhH?{T$QI>0JP75`r)U_$#%K1^BQ8z#uciKf(C701&RyLQWBUp*Q7eyn76} z6JHpC9}R$J#(R0cDCkXoFSp;j6{x{b&0yE@P7{;pCEpKjS(+1RQy38`=&Yxo%F=3y zCPeefABp34U-s?WmU#JJw23dcC{sPPFc2#J$ZgEN%zod}J~8dLm*fx9f6SpO zn^Ww3bt9-r0XaT2a@Wpw;C23XM}7_14#%QpubrIw5aZtP+CqIFmsG4`Cm6rfxl9n5 z7=r2C-+lM2AB9X0T_`?EW&Byv&K?HS4QLoylJ|OAF z`8atBNTzJ&AQ!>sOo$?^0xj~D(;kS$`9zbEGd>f6r`NC3X`tX)sWgWUUOQ7w=$TO&*j;=u%25ay-%>3@81tGe^_z*C7pb9y*Ed^H3t$BIKH2o+olp#$q;)_ zfpjCb_^VFg5fU~K)nf*d*r@BCC>UZ!0&b?AGk_jTPXaSnCuW110wjHPPe^9R^;jo3 zwvzTl)C`Zl5}O2}3lec=hZ*$JnkW#7enKKc)(pM${_$9Hc=Sr_A9Biwe*Y=T?~1CK z6eZ9uPICjy-sMGbZl$yQmpB&`ouS8v{58__t0$JP%i3R&%QR3ianbZqDs<2#5FdN@n5bCn^ZtH992~5k(eA|8|@G9u`wdn7bnpg|@{m z^d6Y`*$Zf2Xr&|g%sai#5}Syvv(>Jnx&EM7-|Jr7!M~zdAyjt*xl;OLhvW-a%H1m0 z*x5*nb=R5u><7lyVpNAR?q@1U59 zO+)QWwL8t zyip?u_nI+K$uh{y)~}qj?(w0&=SE^8`_WMM zTybjG=999h38Yes7}-4*LJ7H)UE8{mE(6;8voE+TYY%33A>S6`G_95^5QHNTo_;Ao ztIQIZ_}49%{8|=O;isBZ?=7kfdF8_@azfoTd+hEJKWE!)$)N%HIe2cplaK`ry#=pV z0q{9w-`i0h@!R8K3GC{ivt{70IWG`EP|(1g7i_Q<>aEAT{5(yD z=!O?kq61VegV+st@XCw475j6vS)_z@efuqQgHQR1T4;|-#OLZNQJPV4k$AX1Uk8Lm z{N*b*ia=I+MB}kWpupJ~>!C@xEN#Wa7V+7{m4j8c?)ChV=D?o~sjT?0C_AQ7B-vxqX30s0I_`2$in86#`mAsT-w?j{&AL@B3$;P z31G4(lV|b}uSDCIrjk+M1R!X7s4Aabn<)zpgT}#gE|mIvV38^ODy@<&yflpCwS#fRf9ZX3lPV_?8@C5)A;T zqmouFLFk;qIs4rA=hh=GL~sCFsXHsqO6_y~*AFt939UYVBSx1s(=Kb&5;j7cSowdE;7()CC2|-i9Zz+_BIw8#ll~-tyH?F3{%`QCsYa*b#s*9iCc`1P1oC26?`g<9))EJ3%xz+O!B3 zZ7$j~To)C@PquR>a1+Dh>-a%IvH_Y7^ys|4o?E%3`I&ADXfC8++hAdZfzIT#%C+Jz z1lU~K_vAm0m8Qk}K$F>|>RPK%<1SI0(G+8q~H zAsjezyP+u!Se4q3GW)`h`NPSRlMoBjCzNPesWJwVTY!o@G8=(6I%4XHGaSiS3MEBK zhgGFv6Jc>L$4jVE!I?TQuwvz_%CyO!bLh94nqK11C2W$*aa2ueGopG8DnBICVUORP zgytv#)49fVXDaR$SukloYC3u7#5H)}1K21=?DKj^U)8G;MS)&Op)g^zR2($<>C*zW z;X7`hLxiIO#J`ANdyAOJle4V%ppa*(+0i3w;8i*BA_;u8gOO6)MY`ueq7stBMJTB; z-a0R>hT*}>z|Gg}@^zDL1MrH+2hsR8 zHc}*9IvuQC^Ju)^#Y{fOr(96rQNPNhxc;mH@W*m206>Lo<*SaaH?~8zg&f&%YiOEG zGiz?*CP>Bci}!WiS=zj#K5I}>DtpregpP_tfZtPa(N<%vo^#WCQ5BTv0vr%Z{)0q+ z)RbfHktUm|lg&U3YM%lMUM(fu}i#kjX9h>GYctkx9Mt_8{@s%!K_EI zScgwy6%_fR?CGJQtmgNAj^h9B#zmaMDWgH55pGuY1Gv7D z;8Psm(vEPiwn#MgJYu4Ty9D|h!?Rj0ddE|&L3S{IP%H4^N!m`60ZwZw^;eg4sk6K{ ziA^`Sbl_4~f&Oo%n;8Ye(tiAdlZKI!Z=|j$5hS|D$bDJ}p{gh$KN&JZYLUjv4h{NY zBJ>X9z!xfDGY z+oh_Z&_e#Q(-}>ssZfm=j$D&4W4FNy&-kAO1~#3Im;F)Nwe{(*75(p=P^VI?X0GFakfh+X-px4a%Uw@fSbmp9hM1_~R>?Z8+ ziy|e9>8V*`OP}4x5JjdWp}7eX;lVxp5qS}0YZek;SNmm7tEeSF*-dI)6U-A%m6YvCgM(}_=k#a6o^%-K4{`B1+}O4x zztDT%hVb;v#?j`lTvlFQ3aV#zkX=7;YFLS$uIzb0E3lozs5`Xy zi~vF+%{z9uLjKvKPhP%x5f~7-Gj+%5N`%^=yk*Qn{`> z;xj&ROY6g`iy2a@{O)V(jk&8#hHACVDXey5a+KDod_Z&}kHM}xt7}Md@pil{2x7E~ zL$k^d2@Ec2XskjrN+IILw;#7((abu;OJii&v3?60x>d_Ma(onIPtcVnX@ELF0aL?T zSmWiL3(dOFkt!x=1O!_0n(cAzZW+3nHJ{2S>tgSK?~cFha^y(l@-Mr2W$%MN{#af8J;V*>hdq!gx=d0h$T7l}>91Wh07)9CTX zh2_ZdQCyFOQ)l(}gft0UZG`Sh2`x-w`5vC2UD}lZs*5 zG76$akzn}Xi))L3oGJ75#pcN=cX3!=57$Ha=hQ2^lwdyU#a}4JJOz6ddR%zae%#4& za)bFj)z=YQela(F#Y|Q#dp}PJghITwXouVaMq$BM?K%cXn9^Y@g43$=O)F&ZlOUom zJiad#dea;-eywBA@e&D6Pdso1?2^(pXiN91?jvcaUyYoKUmvl5G9e$W!okWe*@a<^ z8cQQ6cNSf+UPDx%?_G4aIiybZHHagF{;IcD(dPO!#=u zWfqLcPc^+7Uu#l(Bpxft{*4lv#*u7X9AOzDO z1D9?^jIo}?%iz(_dwLa{ex#T}76ZfN_Z-hwpus9y+4xaUu9cX}&P{XrZVWE{1^0yw zO;YhLEW!pJcbCt3L8~a7>jsaN{V3>tz6_7`&pi%GxZ=V3?3K^U+*ryLSb)8^IblJ0 zSRLNDvIxt)S}g30?s_3NX>F?NKIGrG_zB9@Z>uSW3k2es_H2kU;Rnn%j5qP)!XHKE zPB2mHP~tLCg4K_vH$xv`HbRsJwbZMUV(t=ez;Ec(vyHH)FbfLg`c61I$W_uBB>i^r z&{_P;369-&>23R%qNIULe=1~T$(DA`ev*EWZ6j(B$(te}x1WvmIll21zvygkS%vwG zzkR6Z#RKA2!z!C%M!O>!=Gr0(J0FP=-MN=5t-Ir)of50y10W}j`GtRCsXBakrKtG& zazmITDJMA0C51&BnLY)SY9r)NVTMs);1<=oosS9g31l{4ztjD3#+2H7u_|66b|_*O z;Qk6nalpqdHOjx|K&vUS_6ITgGll;TdaN*ta=M_YtyC)I9Tmr~VaPrH2qb6sd~=AcIxV+%z{E&0@y=DPArw zdV7z(G1hBx7hd{>(cr43^WF%4Y@PXZ?wPpj{OQ#tvc$pABJbvPGvdR`cAtHn)cSEV zrpu}1tJwQ3y!mSmH*uz*x0o|CS<^w%&KJzsj~DU0cLQUxk5B!hWE>aBkjJle8z~;s z-!A=($+}Jq_BTK5^B!`R>!MulZN)F=iXXeUd0w5lUsE5VP*H*oCy(;?S$p*TVvTxwAeWFB$jHyb0593)$zqalVlDX=GcCN1gU0 zlgU)I$LcXZ8Oyc2TZYTPu@-;7<4YYB-``Qa;IDcvydIA$%kHhJKV^m*-zxcvU4viy&Kr5GVM{IT>WRywKQ9;>SEiQD*NqplK-KK4YR`p0@JW)n_{TU3bt0 zim%;(m1=#v2}zTps=?fU5w^(*y)xT%1vtQH&}50ZF!9YxW=&7*W($2kgKyz1mUgfs zfV<*XVVIFnohW=|j+@Kfo!#liQR^x>2yQdrG;2o8WZR+XzU_nG=Ed2rK?ntA;K5B{ z>M8+*A4!Jm^Bg}aW?R?6;@QG@uQ8&oJ{hFixcfEnJ4QH?A4>P=q29oDGW;L;= z9-a0;g%c`C+Ai!UmK$NC*4#;Jp<1=TioL=t^YM)<<%u#hnnfSS`nq63QKGO1L8RzX z@MFDqs1z ztYmxDl@LU)5acvHk)~Z`RW7=aJ_nGD!mOSYD>5Odjn@TK#LY{jf?+piB5AM-CAoT_ z?S-*q7}wyLJzK>N%eMPuFgN)Q_otKP;aqy=D5f!7<=n(lNkYRXVpkB{TAYLYg{|(jtRqYmg$xH zjmq?B(RE4 zQx^~Pt}gxC2~l=K$$-sYy_r$CO(d=+b3H1MB*y_5g6WLaWTXn+TKQ|hNY^>Mp6k*$ zwkovomhu776vQATqT4blf~g;TY(MWCrf^^yfWJvSAB$p5l;jm@o#=!lqw+Lqfq>X= z$6~kxfm7`3q4zUEB;u4qa#BdJxO!;xGm)wwuisj{0y2x{R(IGMrsIzDY9LW>m!Y`= z04sx3IjnYvL<4JqxQ8f7qYd0s2Ig%`ytYPEMKI)s(LD}D@EY>x`VFtqvnADNBdeao zC96X+MxnwKmjpg{U&gP3HE}1=s!lv&D{6(g_lzyF3A`7Jn*&d_kL<;dAFx!UZ>hB8 z5A*%LsAn;VLp>3${0>M?PSQ)9s3}|h2e?TG4_F{}{Cs>#3Q*t$(CUc}M)I}8cPF6% z=+h(Kh^8)}gj(0}#e7O^FQ6`~fd1#8#!}LMuo3A0bN`o}PYsm!Y}sdOz$+Tegc=qT z8x`PH$7lvnhJp{kHWb22l;@7B7|4yL4UOOVM0MP_>P%S1Lnid)+k9{+3D+JFa#Pyf zhVc#&df87APl4W9X)F3pGS>@etfl=_E5tBcVoOfrD4hmVeTY-cj((pkn%n@EgN{0f zwb_^Rk0I#iZuHK!l*lN`ceJn(sI{$Fq6nN& zE<-=0_2WN}m+*ivmIOxB@#~Q-cZ>l136w{#TIJe478`KE7@=a{>SzPHsKLzYAyBQO zAtuuF$-JSDy_S@6GW0MOE~R)b;+0f%_NMrW(+V#c_d&U8Z9+ec4=HmOHw?gdjF(Lu zzra83M_BoO-1b3;9`%&DHfuUY)6YDV21P$C!Rc?mv&{lx#f8oc6?0?x zK08{WP65?#>(vPfA-c=MCY|%*1_<3D4NX zeVTi-JGl2uP_2@0F{G({pxQOXt_d{g_CV6b?jNpfUG9;8yle-^4KHRvZs-_2siata zt+d_T@U$&t*xaD22(fH(W1r$Mo?3dc%Tncm=C6{V9y{v&VT#^1L04vDrLM9qBoZ4@ z6DBN#m57hX7$C(=#$Y5$bJmwA$T8jKD8+6A!-IJwA{WOfs%s}yxUw^?MRZjF$n_KN z6`_bGXcmE#5e4Ym)aQJ)xg3Pg0@k`iGuHe?f(5LtuzSq=nS^5z>vqU0EuZ&75V%Z{ zYyhRLN^)$c6Ds{f7*FBpE;n5iglx5PkHfWrj3`x^j^t z7ntuV`g!9Xg#^3!x)l*}IW=(Tz3>Y5l4uGaB&lz{GDjm2D5S$CExLT`I1#n^lBH7Y zDgpMag@`iETKAI=p<5E#LTkwzVR@=yY|uBVI1HG|8h+d;G-qfuj}-ZR6fN>EfCCW z9~wRQoAPEa#aO?3h?x{YvV*d+NtPkf&4V0k4|L=uj!U{L+oLa(z#&iuhJr3-PjO3R z5s?=nn_5^*^Rawr>>Nr@K(jwkB#JK-=+HqwfdO<+P5byeim)wvqGlP-P|~Nse8=XF zz`?RYB|D6SwS}C+YQv+;}k6$-%D(@+t14BL@vM z2q%q?f6D-A5s$_WY3{^G0F131bbh|g!}#BKw=HQ7mx;Dzg4Z*bTLQSfo{ed{4}NZW zfrRm^Ca$rlE{Ue~uYv>R9{3smwATcdM_6+yWIO z*ZRH~uXE@#p$XTbCt5j7j2=86e{9>HIB6xDzV+vAo&B?KUiMP|ttOElepnl%|DPqL b{|{}U^kRn2wo}j7|0ATu<;8xA7zX}7|B6mN literal 0 HcmV?d00001 diff --git a/frontend/public/manifest.json b/frontend/public/manifest.json new file mode 100644 index 0000000..080d6c7 --- /dev/null +++ b/frontend/public/manifest.json @@ -0,0 +1,25 @@ +{ + "short_name": "React App", + "name": "Create React App Sample", + "icons": [ + { + "src": "favicon.ico", + "sizes": "64x64 32x32 24x24 16x16", + "type": "image/x-icon" + }, + { + "src": "logo192.png", + "type": "image/png", + "sizes": "192x192" + }, + { + "src": "logo512.png", + "type": "image/png", + "sizes": "512x512" + } + ], + "start_url": ".", + "display": "standalone", + "theme_color": "#000000", + "background_color": "#ffffff" +} diff --git a/frontend/public/robots.txt b/frontend/public/robots.txt new file mode 100644 index 0000000..e9e57dc --- /dev/null +++ b/frontend/public/robots.txt @@ -0,0 +1,3 @@ +# https://www.robotstxt.org/robotstxt.html +User-agent: * +Disallow: diff --git a/frontend/src/App.css b/frontend/src/App.css new file mode 100644 index 0000000..74b5e05 --- /dev/null +++ b/frontend/src/App.css @@ -0,0 +1,38 @@ +.App { + text-align: center; +} + +.App-logo { + height: 40vmin; + pointer-events: none; +} + +@media (prefers-reduced-motion: no-preference) { + .App-logo { + animation: App-logo-spin infinite 20s linear; + } +} + +.App-header { + background-color: #282c34; + min-height: 100vh; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + font-size: calc(10px + 2vmin); + color: white; +} + +.App-link { + color: #61dafb; +} + +@keyframes App-logo-spin { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +} diff --git a/frontend/src/App.test.tsx b/frontend/src/App.test.tsx new file mode 100644 index 0000000..2a68616 --- /dev/null +++ b/frontend/src/App.test.tsx @@ -0,0 +1,9 @@ +import React from 'react'; +import { render, screen } from '@testing-library/react'; +import App from './App'; + +test('renders learn react link', () => { + render(); + const linkElement = screen.getByText(/learn react/i); + expect(linkElement).toBeInTheDocument(); +}); diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx new file mode 100644 index 0000000..8c7a80f --- /dev/null +++ b/frontend/src/App.tsx @@ -0,0 +1,54 @@ +import React, { Fragment, useState } from 'react'; +import { BrowserRouter, Route, RouteComponentProps, Switch, withRouter } from "react-router-dom"; +import logo from './logo.svg'; +import './App.css'; +import { createStyles, Theme, WithStyles, withStyles } from '@material-ui/core'; + +import Home from './pages/Home' +import Login from './pages/Login' +import ProjectPage from './pages/projects/ProjectPage' +import { AuthProvider } from './auth-context'; +import EntityPage from './pages/entities/EntityPage'; + +let styles = (theme:Theme) => createStyles({ + main: { + padding: theme.spacing(3), + [theme.breakpoints.down('xs')]: { + padding: theme.spacing(2), + }, + }, + }); + +interface AppProps extends WithStyles { +} + +function App(props:AppProps) { + + let { classes } = props + + return ( + + +
+ + + + + + }> + + }> + +
+
+
+ + ); + +} + +export default withStyles(styles)(App) + + diff --git a/frontend/src/ElixirAuthService.tsx b/frontend/src/ElixirAuthService.tsx new file mode 100644 index 0000000..f458c25 --- /dev/null +++ b/frontend/src/ElixirAuthService.tsx @@ -0,0 +1,127 @@ +import jwt_decode from 'jwt-decode'; + +export default class ElixirAuthService { + + _domain:string + _appURL:string + + constructor() { + this._domain = encodeURIComponent(window.location.origin) || 'http://localhost:8080'; + this._appURL = process.env.REACT_APP_AAPURL!.replace(/\/$/, ''); + + this.getProfile = this.getProfile.bind(this); + this.login = this.login.bind(this); + } + + login = () => { + var width = 650; + var height = 1000; + var left = -1; + var top = -1; + + if (left < 0) { + const screenWidth = window.screen.width; + if (screenWidth > width) { + left = Math.round((screenWidth - width) / 2); + } + } + if (top < 0) { + const screenHeight = window.screen.height; + if (screenHeight > height) { + top = Math.round((screenHeight - height) / 2); + } + } + + const windowOptions = [ + `width=${width}`, + `height=${height}`, + `left=${left}`, + `top=${top}`, + 'personalbar=no', + 'toolbar=no', + 'scrollbars=yes', + 'resizable=yes', + 'directories=no', + 'location=no', + 'menubar=no', + 'titlebar=no', + 'toolbar=no' + ]; + + const loginWindow = window.open(this.getSSOURL(), 'Sign in to Elixir', windowOptions.join(',')); + + if (loginWindow) { + loginWindow.focus(); + } + } + + + /** + * Produces a URL that allows logging into the single sign on (SSO) page. + * The URL is opened in a new window using window.open(). + * + * @returns The SSO URL. + */ + getSSOURL() { + const fragments = this._formatFragments({ + 'from': this._domain, + }); + return `${this._appURL}/sso${fragments}&ttl=180`; + } + + + /** + * Format and filter fragment options + * + * @params options + * + * @returns fragment string + */ + _formatFragments(options:any) { + return '?' + Object.entries(options) + .map(([key, value]) => `${key}=${value}`).join('&'); + } + + + loggedIn() { + // Checks if there is a saved token and it's still valid + const token = this.getToken() // GEtting token from localstorage + return !!token && !this.isTokenExpired(token) // handwaiving here + } + + isTokenExpired(token:string) { + try { + const decoded:any = jwt_decode(token); + if (decoded.exp < Date.now() / 1000) { // Checking if token is expired. + return true; + } + else { + return false; + } + } + catch (err) { + return err; + } + } + + setToken(token:string) { + // Saves user token to localStorage + localStorage.setItem("id_token", token); + } + + getToken() { + // Retrieves the user token from localStorage + return localStorage.getItem('id_token') + } + + logout() { + // Clear user token and profile data from localStorage + localStorage.removeItem('id_token'); + } + + getProfile() { + // Using jwt-decode npm package to decode the token + return jwt_decode(this.getToken()!); + } +} + diff --git a/frontend/src/api.ts b/frontend/src/api.ts new file mode 100644 index 0000000..39cb963 --- /dev/null +++ b/frontend/src/api.ts @@ -0,0 +1,47 @@ + +import { getAuthHeaders, isLoggedIn } from "./auth" + +export async function request(path:string, init?:RequestInit|undefined):Promise { + + if(!isLoggedIn()) { + window.location.href = process.env.PUBLIC_URL + '/login' + return + } + + try { + let res = await fetch(`${process.env.REACT_APP_APIURL}${path}`, { + ...(init ? init : {}), + headers: { ...(init?.headers || {}), ...getAuthHeaders() } + }) + + return await res.json() + } catch(e) { + console.dir(e) + // window.location.href = '/login' + } + +} + +export async function get(path:string):Promise { + return request(path) +} + +export async function post(path:string, body:ReqType):Promise { + return request(path, { + method: 'POST', + body: JSON.stringify(body), + headers: { + 'content-type': 'application/json' + } + }) +} + +export async function put(path:string, body:ReqType):Promise { + return request(path, { + method: 'PUT', + body: JSON.stringify(body), + headers: { + 'content-type': 'application/json' + } + }) +} \ No newline at end of file diff --git a/frontend/src/auth-context.tsx b/frontend/src/auth-context.tsx new file mode 100644 index 0000000..662149c --- /dev/null +++ b/frontend/src/auth-context.tsx @@ -0,0 +1,79 @@ +import React, { createContext } from 'react'; +import ElixirAuthService from './ElixirAuthService'; + +interface AuthContextState { + isAuthenticated:boolean + JWTToken:string|null + onAuthenticate:(token:string)=>void + onLogout:()=>void +} + +export const AuthContext = createContext({ + isAuthenticated: false, + JWTToken: null, + onAuthenticate: (token:string) => { }, + onLogout: () => { }, +}); + +export class AuthProvider extends React.Component<{}, AuthContextState> { + + elixirAuthService:ElixirAuthService + + constructor() { + + super({}); + + this.state = { + isAuthenticated: false, + JWTToken: null, + onAuthenticate: this.onAuthenticate, + onLogout: this.onLogout + } + + this.elixirAuthService = new ElixirAuthService(); + } + + componentDidMount() { + const savedToken = this.elixirAuthService.getToken(); + + if (savedToken) { + this.setState({ + isAuthenticated: true, + JWTToken: savedToken + }); + } + } + + onAuthenticate = (token:string) => { + this.setState({ + isAuthenticated: true, + JWTToken: token + }) + } + + onLogout = () => { + this.setState({ + isAuthenticated: false, + JWTToken: null + }) + } + + getProvidedState():AuthContextState { + return { + isAuthenticated: this.state.isAuthenticated, + JWTToken: this.state.JWTToken, + onAuthenticate: this.onAuthenticate, + onLogout: this.onLogout + }; + } + + render() { + return ( + + {this.props.children} + + ); + } +} + +export const AuthConsumer = AuthContext.Consumer; diff --git a/frontend/src/auth.tsx b/frontend/src/auth.tsx new file mode 100644 index 0000000..441c256 --- /dev/null +++ b/frontend/src/auth.tsx @@ -0,0 +1,54 @@ + +import jwt_decode from 'jwt-decode'; +import ElixirAuthService from './ElixirAuthService' +import history from './history' + +/** + * Check if user is logged in and if token is still valid and if GDPR accepted. + */ +export function checkUserAuthStatus() { + const token = getToken().auth; + // const gdprAccepted = JSON.parse(localStorage.getItem('gdpr-accepted')); + const eas = new ElixirAuthService(); + + if (token && !eas.isTokenExpired(token)) {// && gdprAccepted) { + return token; + } else { + // if (!JSON.parse(gdprAccepted)) { + // history.push(`${process.env.PUBLIC_URL}/gdpr`, { + // from: `/update-bodyofwork`, + // }) + // } + // else { + // history.push(`${process.env.PUBLIC_URL}/login`, { + // from: `/update-bodyofwork`, + // }) + // } + } + return; +} + +/** + * Check for token in local storage + * and parse out email if token is present. + */ +export function getToken() { + let token:any = null; + let userEmail:any = null; + if (localStorage.getItem('id_token')) { + token = localStorage.getItem('id_token'); + userEmail = (jwt_decode(token) as any).email; + } + return { authEmail: userEmail, auth: token }; +} + +export function getAuthHeaders() { + return { 'Authorization': 'Bearer ' + getToken().auth } + // return { 'Authorization': 'Bearer james' } +} + + +export function isLoggedIn() { + return !!checkUserAuthStatus() +} + diff --git a/frontend/src/components/AuditTrail.tsx b/frontend/src/components/AuditTrail.tsx new file mode 100644 index 0000000..4b4ef2b --- /dev/null +++ b/frontend/src/components/AuditTrail.tsx @@ -0,0 +1,48 @@ + +import { Box, Card, List, ListItem, Paper, Table, TableBody, TableCell, TableContainer, TableRow } from "@material-ui/core"; +import React from "react"; +import AuditEntry from "../dto/AuditEntry"; +import { EntityStatus } from "../dto/Entity"; +import formatDate from "../formatDate"; +import StatusBox from "./StatusBox"; + +let actionToText = new Map(); +actionToText.set('ADDED_MAPPING', 'added a mapping') +actionToText.set('ADDED_SUGGESTION', 'added a suggestion') +actionToText.set('REMOVED_SUGGESTION', 'removed a suggestion') +actionToText.set('UPDATED_MAPPING', 'updated the mapping') + +export default function AuditTrail(props:{trail:AuditEntry[]}) { + + let { trail } = props + + return + { + trail.map((e:AuditEntry) => { + return + + + {e.user.name} {actionToText.get(e.action) || e.action} {formatDate(e.timestamp)} + + { + e.metadata.length > 0 && + + + + { + e.metadata.map(m => { + return {m.key}{m.value} + }) + } + +
+
+ } +
+
+ }) + } +
+} + + diff --git a/frontend/src/components/EntityStatusBox.tsx b/frontend/src/components/EntityStatusBox.tsx new file mode 100644 index 0000000..d2e263e --- /dev/null +++ b/frontend/src/components/EntityStatusBox.tsx @@ -0,0 +1,27 @@ + +import React from "react"; +import { EntityStatus } from "../dto/Entity"; +import StatusBox from "./StatusBox"; + +export default function EntityStatusBox(props:{ status:EntityStatus }) { + + let { status } = props + + let color = ({ + [EntityStatus.UNMAPPED]: '#B22929', + [EntityStatus.SUGGESTIONS_PROVIDED]: '#FAA869', + [EntityStatus.MANUALLY_MAPPED]: '#29B27F', + [EntityStatus.AUTO_MAPPED]: '#29B27F' + })[status] + + let text = ({ + [EntityStatus.UNMAPPED]: 'Unmapped', + [EntityStatus.SUGGESTIONS_PROVIDED]: 'Suggestions Provided', + [EntityStatus.MANUALLY_MAPPED]: 'Manually Mapped', + [EntityStatus.AUTO_MAPPED]: 'Auto Mapped' + })[status] + + return +} + + diff --git a/frontend/src/components/LoadingOverlay.tsx b/frontend/src/components/LoadingOverlay.tsx new file mode 100644 index 0000000..49b6329 --- /dev/null +++ b/frontend/src/components/LoadingOverlay.tsx @@ -0,0 +1,14 @@ + +import { ReactNode } from 'react' +import ReactLoadingOverlay from 'react-loading-overlay' + +export default function LoadingOverlay(props: { active: boolean, children: ReactNode }) { + return ({ + ...base, + background: 'rgba(0, 0, 0, 0.2)' + }) + }}> + {props.children} + +} diff --git a/frontend/src/components/MappingStatusBox.tsx b/frontend/src/components/MappingStatusBox.tsx new file mode 100644 index 0000000..ccfad8a --- /dev/null +++ b/frontend/src/components/MappingStatusBox.tsx @@ -0,0 +1,25 @@ + +import React from "react"; +import { MappingStatus } from "../dto/Mapping"; +import StatusBox from "./StatusBox"; + +export default function MappingStatusBox(props:{ status:MappingStatus }) { + + let { status } = props + + let color = ({ + [MappingStatus.AWAITING_REVIEW]: '#B22929', + [MappingStatus.REVIEW_IN_PROGRESS]: '#FAA869', + [MappingStatus.REQUIRED_REVIEWS_REACHED]: '#29B27F' + })[status] + + let text = ({ + [MappingStatus.AWAITING_REVIEW]: 'Awaiting Review', + [MappingStatus.REVIEW_IN_PROGRESS]: 'Review in Progress', + [MappingStatus.REQUIRED_REVIEWS_REACHED]: 'Required Reviews Reached' + })[status] + + return +} + + diff --git a/frontend/src/components/Provenance.tsx b/frontend/src/components/Provenance.tsx new file mode 100644 index 0000000..542f001 --- /dev/null +++ b/frontend/src/components/Provenance.tsx @@ -0,0 +1,18 @@ + +import ProvenanceDTO from "../dto/Provenance"; +import formatDate from '../formatDate' + +export default function Provenance(props:{provenance:ProvenanceDTO, label:string}) { + + let { provenance, label } = props + + let when = formatDate(provenance.timestamp) + + return
+} + + diff --git a/frontend/src/components/StatusBox.tsx b/frontend/src/components/StatusBox.tsx new file mode 100644 index 0000000..974d0a2 --- /dev/null +++ b/frontend/src/components/StatusBox.tsx @@ -0,0 +1,22 @@ + + +export default function StatusBox(props:{color:string, text:string}) { + + let { color, text } = props + + return {text} +} + + + diff --git a/frontend/src/components/TermStatusBox.tsx b/frontend/src/components/TermStatusBox.tsx new file mode 100644 index 0000000..12e4991 --- /dev/null +++ b/frontend/src/components/TermStatusBox.tsx @@ -0,0 +1,27 @@ + +import React from "react"; +import { OntologyTermStatus } from "../dto/OntologyTerm"; +import StatusBox from "./StatusBox"; + +export default function TermStatusBox(props:{ status:OntologyTermStatus }) { + + let { status } = props + + let color = ({ + [OntologyTermStatus.DELETED]: '#B22929', + [OntologyTermStatus.OBSOLETE]: '#B22929', + [OntologyTermStatus.NEEDS_IMPORT]: '#FAA869', + [OntologyTermStatus.CURRENT]: '#29B27F' + })[status] + + let text = ({ + [OntologyTermStatus.DELETED]: 'Deleted', + [OntologyTermStatus.OBSOLETE]: 'Obsolete', + [OntologyTermStatus.NEEDS_IMPORT]: 'Needs Import', + [OntologyTermStatus.CURRENT]: 'Current' + })[status] + + return +} + + diff --git a/frontend/src/dto/AuditEntry.ts b/frontend/src/dto/AuditEntry.ts new file mode 100644 index 0000000..3e17fb8 --- /dev/null +++ b/frontend/src/dto/AuditEntry.ts @@ -0,0 +1,14 @@ + +export default interface AuditEntry { + action:string + user: { + name:string + email:string + } + metadata: { + key:string + value:string + }[] + timestamp:string +} + diff --git a/frontend/src/dto/Comment.ts b/frontend/src/dto/Comment.ts new file mode 100644 index 0000000..38aaf50 --- /dev/null +++ b/frontend/src/dto/Comment.ts @@ -0,0 +1,6 @@ +import Provenance from "./Provenance"; + +export default interface Comment { + body:string + created:Provenance +} diff --git a/frontend/src/dto/Context.ts b/frontend/src/dto/Context.ts new file mode 100644 index 0000000..c9c183d --- /dev/null +++ b/frontend/src/dto/Context.ts @@ -0,0 +1,20 @@ + +import Provenance from "./Provenance"; + +export default interface Context { + id?:string + name:string + description:string + datasources:{ + field:string + mappingList:string[] + }[] + ontologies:{ + field:string + mappingList:string[] + }[] + preferredMappingOntologies:string[] + created:Provenance +} + + diff --git a/frontend/src/dto/Entity.ts b/frontend/src/dto/Entity.ts new file mode 100644 index 0000000..0f3f634 --- /dev/null +++ b/frontend/src/dto/Entity.ts @@ -0,0 +1,25 @@ +import MappingSuggestion from "./MappingSuggestion"; +import Provenance from "./Provenance"; +import Source from "./Source"; +import Mapping from "./Mapping"; +import AuditEntry from "./AuditEntry"; + +export default interface Entity { + id: string + name: string + mappingStatus: EntityStatus + source: Source + upstreamId: string + upstreamField: string + mappingSuggestions:MappingSuggestion[] + mapping:Mapping + created:Provenance + auditTrail:AuditEntry[] +} + +export enum EntityStatus { + UNMAPPED = 'UNMAPPED', + SUGGESTIONS_PROVIDED = 'SUGGESTIONS_PROVIDED', + AUTO_MAPPED = 'AUTO_MAPPED', + MANUALLY_MAPPED = 'MANUALLY_MAPPED' +} diff --git a/frontend/src/dto/Mapping.ts b/frontend/src/dto/Mapping.ts new file mode 100644 index 0000000..14e52c4 --- /dev/null +++ b/frontend/src/dto/Mapping.ts @@ -0,0 +1,34 @@ + +import Review from './Review' +import Comment from './Comment' +import Provenance from './Provenance' +import OntologyTerm from './OntologyTerm' + +export interface CreateMapping { + entityId:string + // ontologyTerms: { + // curie:string + // iri:string + // label:string + // status:string + // }[] + ontologyTerms:OntologyTerm[] +} + +export default interface Mapping { + id?:string + entityId:string + ontologyTerms: OntologyTerm[] + reviewed:boolean + status:MappingStatus + reviews:Review[] + comments:Comment[] + created: Provenance +} + +export enum MappingStatus { + AWAITING_REVIEW = 'AWAITING_REVIEW', + REVIEW_IN_PROGRESS = 'REVIEW_IN_PROGRESS', + REQUIRED_REVIEWS_REACHED = 'REQUIRED_REVIEWS_REACHED' +} + diff --git a/frontend/src/dto/MappingSuggestion.ts b/frontend/src/dto/MappingSuggestion.ts new file mode 100644 index 0000000..cfebb7e --- /dev/null +++ b/frontend/src/dto/MappingSuggestion.ts @@ -0,0 +1,9 @@ +import OntologyTerm from "./OntologyTerm"; +import Provenance from "./Provenance"; + +export default interface MappingSuggestion { + id:string + entityId:string + ontologyTerm: OntologyTerm + created: Provenance +} diff --git a/frontend/src/dto/OlsSearchResult.ts b/frontend/src/dto/OlsSearchResult.ts new file mode 100644 index 0000000..f6ba258 --- /dev/null +++ b/frontend/src/dto/OlsSearchResult.ts @@ -0,0 +1,16 @@ + +export default interface OlsResponse { + numFound:number + start:number + docs: OlsSearchResult[] +} + +export interface OlsSearchResult { + + iri:string + curie:string + label:string + description:string + ontologyName:string + +} diff --git a/frontend/src/dto/OntologyTerm.ts b/frontend/src/dto/OntologyTerm.ts new file mode 100644 index 0000000..76e85c5 --- /dev/null +++ b/frontend/src/dto/OntologyTerm.ts @@ -0,0 +1,27 @@ + +/* + +On creation: + +curie, iri and label are mandatory NOT EMPTY +In responses: + +status is auto-populated +*/ + +export default interface OntologyTerm { + curie:string + iri:string + label:string + status:OntologyTermStatus + description:string + crossRefs:string +} + +export enum OntologyTermStatus { + DELETED = 'DELETED', + OBSOLETE = 'OBSOLETE', + CURRENT = 'CURRENT', + NEEDS_IMPORT = 'NEEDS_IMPORT' +} + diff --git a/frontend/src/dto/Paginated.ts b/frontend/src/dto/Paginated.ts new file mode 100644 index 0000000..9525e85 --- /dev/null +++ b/frontend/src/dto/Paginated.ts @@ -0,0 +1,30 @@ + +export default interface Paginated { + content:T[] + number:number + size:number + totalElements:number + pageable: { + sort: { + sorted:boolean + unsorted:boolean + empty:boolean + } + offset:number + pageNumber:number + pageSize:number + paged:boolean + unpaged:boolean + } + totalPages:number + sort: { + sorted:boolean + unsorted:boolean + empty:boolean + } + first:boolean + last:boolean + numberOfElements:number + empty:boolean +} + diff --git a/frontend/src/dto/Project.ts b/frontend/src/dto/Project.ts new file mode 100644 index 0000000..1ce07ec --- /dev/null +++ b/frontend/src/dto/Project.ts @@ -0,0 +1,22 @@ + +/* +On creation: + +id is NOT ACCEPTED +name is mandatory NOT EMPTY +datasources and ontologies fields are list of ProjectMappingConfigDto. They enable field-level preferences for mappings. If general non-field-specific mapping is preferred / used, the value of field becomes a constant: ALL +In responses: + +id is NOT EMPTY +created follows a standard structure across all DTOs / objects +timestamp - always using the format: YYYY-MM-DDThh:mm:ss.ms+TZ +user - always containing name and email +*/ + +import Context from "./Context"; + +export default interface Project extends Context { + numberOfReviewsRequired:number + contexts:Context[] +} + diff --git a/frontend/src/dto/ProjectMappingConfig.ts b/frontend/src/dto/ProjectMappingConfig.ts new file mode 100644 index 0000000..1ac4c3a --- /dev/null +++ b/frontend/src/dto/ProjectMappingConfig.ts @@ -0,0 +1,10 @@ + +/* +Note: If general non-field-specific mapping is preferred / used, the value of field becomes a constant: ALL +*/ + +export default interface ProjectMappingConfig { + field:string + mappingList:string[] +} + diff --git a/frontend/src/dto/Provenance.ts b/frontend/src/dto/Provenance.ts new file mode 100644 index 0000000..4569039 --- /dev/null +++ b/frontend/src/dto/Provenance.ts @@ -0,0 +1,10 @@ + +export default interface Provenance { + user: { + name: string + email: string + }, + timestamp: string +} + + diff --git a/frontend/src/dto/Review.ts b/frontend/src/dto/Review.ts new file mode 100644 index 0000000..2f626a0 --- /dev/null +++ b/frontend/src/dto/Review.ts @@ -0,0 +1,6 @@ +import Provenance from "./Provenance"; + +export default interface Review { + comment:string + created: Provenance +} diff --git a/frontend/src/dto/Source.ts b/frontend/src/dto/Source.ts new file mode 100644 index 0000000..a5bef14 --- /dev/null +++ b/frontend/src/dto/Source.ts @@ -0,0 +1,25 @@ + +/* +On creation: + +id is NOT ACCEPTED +name is mandatory NOT EMPTY +In responses: + +id is NOT EMPTY +created and lastUpdated follow a standard structure across all DTOs / objects +timestamp - always using the format: YYYY-MM-DDThh:mm:ss.ms+TZ +user - always containing name and email +*/ + +import Provenance from "./Provenance"; + +export default interface Source { + id?:string + name:string + description:string + uri:string + type:'LOCAL'|'REMOTE' + created: Provenance + lastUpdated: Provenance +} diff --git a/frontend/src/dto/User.ts b/frontend/src/dto/User.ts new file mode 100644 index 0000000..54f169b --- /dev/null +++ b/frontend/src/dto/User.ts @@ -0,0 +1,11 @@ + +export default interface User { + id: string + name: string + email: string + roles: { + projectId: string + role:'CONTRIBUTOR'|'CONSUMER'|'ADMIN' + }[] +} + diff --git a/frontend/src/elixir_login_button.png b/frontend/src/elixir_login_button.png new file mode 100644 index 0000000000000000000000000000000000000000..836866fd2ef549779347d3e754c5ef0283aed387 GIT binary patch literal 62475 zcmeHQ2|SeB`yY|5EJ;b$&_agU&4^KUWnV&wF$JnBRHWrrl88tuWUDAyOB7Nl zl4x;Tq*aTG68`UuwV~T@ZvF2~m(M5O&U>EcocB53^L?K4oHOriH#ap9;GfSA0)YgK z40SDmzq^2cTD;uAZ&;FSJMf3k$IzYz0;$L|{&55x*IEw(@tcu#bj;1&DRc_Wo#G>F zq@yG2L#2?&oV_LCWqeMT#>2`$=v8*=B4< zR##$PJx>|$%mapS3uNfb6WY?V{@hY^sq(>NmE~dl3O*oV-aNtrTAw@zsArRg#!|U5 zp7S7%fW{fTpfZz$GKl210ioyG2OT*=w{n!xqtL5(Lq$Q$gLZ4Df|l!ZgeJxGB`xngNNR9%@&L&3cg4~yZvg%jw&;!{)K%%5o zmoT8)U=YN}mShMzbq-WkCp;q;#5)rNv4{*;1aSp}T&m^e13+63f<*P-*=oF9nj_qy z1X$`|u128(MlZ~P7wpSpYpWu?q|QiesVE9J4Hv&$r9AMUI4ley^k>&K5GXln4)C;H zeF1fXIdyfY-T8vf;O7^(2jpB`AN9A_XZkD$fgaE|-RM_V&6^*(j62k;KV@Mjm;2fo z$$s5CNx4GH&w`Slwc2+1Fl?iDWN%?hOZ(%;w^v@$cEHuxZtQm}cP_K-^Zc|)<4gC4 zKhHl@2!lC=8F2OdS$^%k@o~xeeSBM8?>^aM@a5c$fiF^xa+i!;3+{(z zoT2Vp9@P5}yw>V7NL~mEB^mAW1%cM;DyUf3b0fO36j_=5i@SnT2~qw2z=lxlMtfrjO8P z9BHh+mIF@Ww5%eBzFIrFSeVY=Gc0FtjtaGret?E-R^knAOUs#>ctUqI|Jjbo#0@i;8A_x-`!f z2Hj?7s4Ra=WY26>;owM}OKJ)t+jU@z3-?YlI(^K#L8L*y!P`>)nevGQgyDSo=qs%R zk6a$ier4IE)!~m5A6GnvKbCmB;GF}1qU&U7HCdR>5*c^?w zyqA8&dKPle8tv>O`IaXwwx!QT_{C#tx6CzKbv!#Irg6Tzn0q(*>`M(YJwHJvza6^FXFeMxyx( zD+w#N6U)-KWw@nNthJ79vhUl@ZC_zrVWxA;BKfrQqmoM58F=x$0ObW90+|thVaQ91 zPS>_ew8%7gQHsiWm6n)Vs#k2^8z#7-YUN_b#RhJB>ZT`lShZN) zOXE+QYoe+CAx9;{!Av{u zyqOBzcV^bj)3}WErD#a0R^54Pq2pAsT<1701{eEaYgFM4jiXKaf9MPCB3C*-Qh4N5 z=~a1j5%;16i&mLDH|dPGG$~9~OkHNY%($xdT5U@0t%Jw}O=vT$BcUUqIic;G%bI{S z%K7Q}1w^CV$7@pUJM&At!`EQ!kK5U-amv%rPRw3-t2nzjZB|;LX|!o((k-`&Q*ZOH z&N%nBs^@?hpKP}pCXw5hr z1Mz6f+GM6<7Up)gLtYiH8fBZ^eCphB|BP>~}e`>^}=&ezn+&Q+hg zYF0r>at?3P36UQl3t_g2m!gtDSrTkJOdF4^NwWLPbPb{lIeLNK^FwH!Fmd(&z44 z_-?lU!rlCVKmwwbxfWV}VI@zT0!RC#3aPvxwoj{g=IWo>P^M;kn|Gw>N9L zJ(xdVJN2pcnkCIjJh^T}ThfKv?KPMKnMq4)UtPzn zVulTWd-%o|cbi{1nc1n@x1Gg(j!2Zi&e^^rNA!+Z?3|F>OYR1=OKhXmTsU}l|Ctk+ zmkJ5>qz2NnC-=cg4uS_VVxPncdJD9)o)KtUedg7Nk9v1hV{4b(Dc+K=Q+V`(MnMTN z?MhwkGA-+4*6*!9TcbJ~?w!Ro_jupvln5^QhGi66g2J zU#)1-xwoxJ%c1}7?bmlh)|L4ucip&a(9IpbrM^Gv!yX}>>3a_Dxf&r5@gfP0#b6$4 zQTv{KNzrd&wnjbyH8%i{`o;aW{^{zKe~%;I-j+-}AB;;wSG^mRCxj zzY+k4u6@6{_ti!JyZ%zIkG2V!J>DQ2vSh&h)9DXZ*VB5V#iOGKxH#jwzTn~DJ0Q@l zn`CP{x}Ax!I-cUCf+J8|i7EkJK0qJ}0%>Rk_~7s!M7pdi(T(h_Dfhbgf}AXwpebjI zG=Z4-=n&n>hCx)KRgkGQKF9-)A;@WA`85L60R>(}I!-pg%hQ{t9-t}5)T<6$Gm2H^ zWSLdy9-4A17!AtWnV8G!P^d&%qzVd*heDyUY8VwL5)FqTm1SWNC{h)IQH4Ul5U4s7 zq7H+|4*kes`GG49DuJYKsjENK9PmF)Id?kUM_pCb-``)wAFe{7x~W1j7>p_erV4|B zff`_1pf?>C0QRQI4=Nefqf4aWsbn8Inc^+W(2H}W_|Y}x}@V)>jR{`2a$YZwZ;0{I!^u*MyQZx+QVc zA`>=9vkvqjs#+3h6hA7S2vnD!sNXcY-g>|kL#F*76zQ!8>@cA!vZtpXjZVeUDb$G- zj;ZihCb2emn^=C>lyp@ew{KWQm+bY|vV&Fusu8_u02~0MOaKBJUElkEGKxOs8@2%8 zVDQ%+nfM8O#^C&`!2oUmHiJ+2*gnH+$cbAVx&2L})5)Z7fQfPEn_|QO@;Ag7cLv3n zlX-BCX%O)0Bns6FN5_)AaBf6ZA8$7e)zQMyfne06lj)wsG17nzCMT@$q<>vHe8ZE> z;0kq5oHqcU05E|_!ufg9<*=p{0@2yP#z@y#&)CRR&&ruV^!CD0Jv3AqRNzVeTH9dh z*Nrec$=V+cV2IUC0Olj$=r~;*orncE4F!h4!BDg{1fmXssY79FG*rh`8}pdVdlUkh z6!<*_qm@|1b*Mz3?O|~w7zzbLG1gEt(6~BOZK(Y*l_nCWP^~ExPwXIVk0vC5d<280 zWtW)X@MLdBmO^pxahU3cgud2iVxn&3O{3$y@kAqCEbw?LWHLdWNK_-Zx+0-qJPC#a zBVb4j7>9vF!D?t6!j*t@B|_mirsl83$Ent(;QbgZ45%LTJp>9KP(Oli;DKRy3h%Ow8grIfM!@4JsAJ>K@(VIYKcqAQ99F2wrGCvfOIxx$Jb+FtY zC$CGSlGhUn`c#S+)2I31s5Byj@-^j#Ie)|n4$VKN(@-amA0SsK9_flf;=!&6z>6Xf zL|3pYhKL6vaX1)`NQA-gB!q_QIPuXwG3MalZD2^gGe)iiJX8%10Yi}_^w1bVfv|-{ zfZ-4%I1){QL5ABJqimwKD1UpH2KzdJ{6x)Azd2HaYFO@%su&*1F+(+mY#0Or0N#*H z0~}`Hm>a`{W<~VQIj62}t)p2+R+ORYnfEtE@$CQnBc~FAU&|rlL zzygGD0N!;V5Ht*eLPMcw7;J?e8l$fZMX8~X7$#5{y2prqTfe_M(VIb>a4-Z0hC!^M zP<13i9l;>Z!45Dhd|RGIA<_MDRN@LZfER`s%xE+Yk=3z6ea&BkTE729k{FbZ^YQT{<8h2BtLj6c z(FYeWvUJKeFt}v7y#4z<3A@L4qJ)1QP!5g+4%DYB2OcszWjA zFh*YJZ_mr`B#5SF<@aahNXBY-82%l+5(ZO9!=3o9CmGYrk?AbUT&;}Gz;CZmevya% z;rs^@jez1YYD6#si2x=k9)<$D0udk>4kx;z5C|9v0iBwpBYC933ufm2-%VTnuQ^V( zQ&$t@{HM5eINLbF6Mu(f#w9{V(;XvZ!r+@RyGj41`~P`#IyU+9Yd`Z3v+4h~H#9h` zY%QOE*J(MJY5sa|V0fcp{9b~_n7p966&**V`}vp;9x}$7Q-NJQ4b{J>F}kQ^Y*qmK z^6G{-+G;Y5?CME00}`A*3=LR)oF@%PApb>;ztUq(#d*_!$b#sN5B#R8uPTk#W@-*> zC)2RdkxmR1jIU{e3t-f>A_o!w$2}BaBLp}tpze=_t3g$e5XKLK%LdCv8yH+~GfLgD zFceyaS#hMM`_~&eLpuGu$#kqaIe_R%8&=6I8r3@TKx6tnM%D1BFpeS6#*{NU!`LCx z#<_i6I(&nDR}3780583!I8fyg%J+R+G_9j{ZgJ+~;piS{4n7MkAef^j_313wn zeVV~oV9-*-RrGOQWY54c8f6(Ofy3|y43n_b`kpF05&Mmv=;MHUe=W|~JH=X4{g|7m zV;g7Q__i!C4;Uv&tmwdGaKi#82WWvbS;mM^+^9GocOq35p#qf!4kr=1w+$p&?uwD-xg&Imp<@m0+t~gF|h0yTdC0L%*FGF!H4Bo)la<9 zHCXyJ+(xj=iq2uwntK8#7Z{zJ2)bVr+#qs>qDZVxAkKT@evIN9YXVGj;568G>)8`M zJt_X*t)}e>9GaWB)?n$^9Ugi32_JIU0#^PwI^NxYO7Zhy(+2+|c@5bOpk@PgH%2o| zEa(m%jgcK}UY6NDv%_O6u?{@Lw4-{Ma{{0@mXdD@=}F{@=QhfatYsQ>n87&jhl z6T>(SzZEqw@nAm`9!wF$cy3^pd_@rd0YDf~i9{g!oGf@4HzNOV>@cqV-;W{&mm^bv z_y$1?uN!_!3^55J2yIVB66C)EhjH_p?I40>NPjvF;*aG=OiHIME28IQjY_bKEMf_J=foehkYyhaR*F+-$ zXiOqxuo#w2&R`u@ww(x?1(8!B89aBa@CX)c##h^1Cwz zkhEZ=wni2tlPR^u8v3!x8LXKlwnNV!#Rh8!ez_b5kk&HMgpVXK;FBo+WQ_pX#0H!t zPGK7xKbXc~ZU2{p#)v}!E+$nP<6rhCtj+&sD-$5&Ipj_dlMENEiAy#KgO$tKCJY2i zob#IjLyZXxMt*COr9IVHJOR77U>R1nalz93Zw3oy_{q$NPcm5iVC>1d+?|5On6taU zhC8r10_>_X=wgz&k#TDRHu-`zZe$x6EPV5u@x>r87{Bc`VGL-%fRATQmP0x}ij8sd zY=Z;#W9VQN|20=7gXoxK{)Ba1z$R_{I5d9mID?rOpOnC0jTEMU@lzAyz?S>)(LUgE zavkks-8=usp~2b#HiHe;HS;g$PJq1lFgO4LnN(>mR@?sL*kI)?HnG9tj($04jI2+9 zz4%E53>L$(iHjdzp0FMO_|0GetVv853ln=y#3aK7Yi!RZFj&ReUYa0SfccvN1Av2x zCXf>c5*iF(OrljQ>%g!H4A#6h+raoiN5Zn={pB19b7cbjve!g0fH9f!8LT72CNfyX z*+vHH$0&o9vVJ{iFq{d13IH06r3qpZZNDQ~rX8EmU>#ZZp~2EVo8E+#^L{yKFyjos zrwl=35+Q?i*0G5U){*(Ak-f-M5W`-Rc`#!#9p_>_^TH-Fe%PI`reN9R z4AvF*uLq40cLJQ!m|T$tYoduwX#B7{VLcqeCNx+%@0WuHb9Dj)8AG3MhW~e#Cn%Oc zfo*@ndeD$fXs{yt*MtUedT00(i^xe7Yp@0jY|;kn(I2+4F>Y6mO>nTfv|kP!%*87c z988y@Hi@voYTJJr8$ak$Sh4wI(3t3bsG}bz89ZR|?e~Fx^97K9=e>`EA6^-K^Qi$9 z7YMv-nR&)zv~+@(QH~L0zUp-F)zU-nM`f0LQ|Q}|HfRLqbNqv^I@MvmRD!{|j6e-w zk;!w$g=Kxj=B#3oW}9$Xr1BpqCR3Re`!!mrhUiB3<~&U3N$CvXTc{kC}5K* z(1cCJ6yrjPk%FHXQ$QzEpgEbgpeHj^OsY6@Dxo>T3#=DEktYy8GfD9a?-6KI$!_lS z|K=_Mu(BN4oBhwY-*K6Gws#7~X<&1&fW=e%k_$NC1laJd{eK1-tcSR!fbrGWq77~# zG2izFyj|fx^uZ<8(|K&;g7uS6zZqY!z6Wp;5ylU`isgrq@w>YcMuai+6&H--2$KjI z<3@(f?IhN-eQc8kOO)`NaR%_wl*x$;*7Lys1}xwJIEPlje*+d{q<<{*{Qp?hO{A0g zsMh9g>Q)nffwqPZfuwFur4an^L@IU#f#OP(HP_Xb^(4DeanwLr21^4cy1uG4dY((e z$DKl_(A+6L>ddoTCXBCqh6B|nD4tNtNJj@~oCJJ@I+kW>pe<{pr-OoGP$)1=h0*GW znlbez)MHHypc~@?f$x|9`m5`i2Z6r+vh~4r|KB+wH0EiUZ85(dn?AOiqs61W9LY1V ziZl9*^`y9g$-tLnjy@_=2lF1Qj)~9v4VHfWjAQjpXqqv7(WT)1ynrviUg3==(&!X+ zEr4(EzPOswpC=J>0})u59}By}?? znekoVbTY*o3xIH3+32tg*0-}H(kPyO%=&N$^G6jR83xTTWyjuUm9_tl?AZIPvZJCl z-efu!Hq;zT@fay$0GTv6Ppy1#cp~HBSc_O|o09{Go_4xq03bA`Js6vkOd-}g6H3~T zN}_$n%3N$&fUU|?=$bMY zTNYre@)WwJ%*B=k*s45*t|@b|WdXJ-PoZndTx?l@t;$pAnlcw#7GSIL6uPF&#g+xw zsyv0RDRZ%90k$enp=-)qY*~P<%2Vi?G8bDGV5{=Kk1l=nOY|ma%K6J_ zVSQ&5B!EC5S-hd82?!Ll5CjU{0s?&+0RBD$f&3sK&~q0MNIeb&5~J*MzN`-diL5r# zU11&2`Z6(azjae$mDcOhHATfm2@#~U=@NVOM1B4ckylw#S>Rz#Sd^qt6+q8b7vJ(k z;iz=2ktyMc`$O^A^n;fcJ}+?7VIX0v%e>RJ=R9{f^``(xnJRhtI$cNE#>7HU=yd3UxvP)ctd`hyzdQD#%stuV zR;eadAYMLU`{^81uHL^why9O(c-+w1QAm_AhT ztT}<+Jpa{AnX(IBp~Y5jx<2^Sbnii@p7yLES$h`hb(zL+8!Hw*Fj>R{xnZ1qYjdXf z2Cjog8of8Kdc7^cG%ys8>uwJ&ErW*M&t4Vgddp|UkZ(TQLM%=0P zIBMChrdzLz;3J=kt9OhhI2_UoRCT<2qYbTFUMp-p zQ*pyJNL`ddJ48Wv*$Vh}TwEmguHziD-FbF}tA#bJO^)4k7Sg9ydS~8x5VsUh``BO+S&{oGq+R}9xfEi4O~VFi@Cf;x*X zUTJ&riROgn`7E97bymQN5;o&?Scry@>VR<4Ar1#I9nX`WH+)%X_x4&8&pZj`>HM6c z37!oqFV&2~)|R5{w{)D`CLy-s5y|dCGLJaPxc_|Z&SYZR=l(rnH&=^3n1+w4?ct`Y zRO){)CU!wel}>X{kIx+7w~-fgEaj}q6e!D0Ceu3K?wXOHwWK@+Z{)G}cB?;hclMQj zX|4!p?lY&J_lgA{$pLR9YRHZbNmM#d121#A?{zBJYt~$; zRr8u0UabqA_vbOhi(`V)E}$m^{G0Mc>Pn^74zzE&OCruy21VzDx9y3jERy5;XyPca zPbAqsPLVTy3t`_bg`<$}x#+GA$d~th)tOu|h0umGXL%3wahj~@fhWl<)~tlcAO-&1 zE+x+~Pja`f$15r<>9T{s7R9qprkNR4Yx)s~`gIB(F6gN+QZi_e64w;qHVMry^|_yT z>b>tAeK*TDt=W2KL#`N@ab7}~b3-e7U+ccy3uu$Xc2)CT2jt@dl`?Md0_#C3f-BVEBbSC`?=i*fV z);Wum((NmC%{4jWQt6S2d`OX{p2e>gT{*3hYD-yq4d%Dg<)LvvZ}+Jea9;_*4Si{l zSAyxz(?c|lKRTbB@^VkyMau)#R}ecTO}gi$UKYqbc0$WpVUCB*Gp zQ13~ma%p_V=uQ1NwCk$Jk4aQ}jgzHwMrr#U&uytD@1FQK0#a2U&> zdcS(vhZxU4mbwM4YzxxgzXVcu&q)Wbqc;`4Nf!K~>GPFF0G zT2F{-o_3{RT~?n@7V&(f8WvWieN5}x2L2lEGLO6miJ1BGs@~aqI8UF4yR|l5=3mbT`w>bsgRon6~Yn$g0|d67jNpQq2xn$v%^z)&8P@F?oz#z!+WUwQM- z9WeSps{fL}AAL_$!_Uw3aQ$2-vxCv30J3Q4YPH+m)8tKe$Ot&=-Co^&=a3*wLGp#8 zc*O>Or*8cR)MkynHfszT++>Z5xSw2TDSZdZJpAHI0KwB+)9)(3vsyYe>a?&^v_onp z?Qujys@Vw}g*PQC99=6KmpirMEid2SOuY5XeTfTkp2+T~x5~G4dmrl=dR#vLcD`=l zySInuxNz^@rke*dk!V||RRXtIX{CO1?aAW@En%(VHXjZ-76!Lf_dK1Q*EZYYwsmsz z=cnR@D;-cmNrmYU9Y32*&cwShg%{49tXu0Z$Nxt$wI117qnseQF~wDiGr3N@@|tKh zZ!{q&(<(8d3H;2Zx6#p|b>)dyPhwi4`K=CHn|(~rojYxH1b92|+gN#AACmdjF&K*CR)~s4}D4{pFBBf3|Bkx_W zQuuSVW~XyAQ5!7_N)#Vy-9Ih#XooUIpYp2DFcG%P+SIA!kjH_;F(KR!7E5N%Ia`G6 zJ+r5&ERraR-E+b>xnh-rBCVltPK@MdYzai#gZNZy! z2Ys6GO56RfeL6+*mX5xCplY7LyyiT+wE7k;(Xap!0&%Ef^J#==+bo?=SA`NB z3)UXJ=B%cT-WU8b+W>bXgx+~Ud84jOfqdJZXXgjx;H9|()wg=@sfg=0e7SZ};#sqa zo?(cqr#vw1A%!LwkzLQMAdOvXe5OVIdQ$P zxPPa0>aiY0wGO!Tk#}7b^E-Z&ia5nW<91aFf#THBzmuyo=Z{aDjJx~9$Op9JO<;1I zhfvASu5W8OW>Ot$UUJ8UY|7J;5%b(mTK=l_+9&X5_@`N_ro1H0Xrzuu$B9dah;Bzy z-o|Pt>o(swmwdP(>fm#W0b*bIZWEgY1DE&j*#*94ja=+6sp}r0=GtAF6EOhg($T$zL?-1(m=Md*9q^Ayjcsgxw2+vd+%*p zb7I!wT9?@m*S_PKw{ZUYYxJ|48&Fw+HsLpq@a{Uq@6qwrh~{SsyI$S!WYeoQgPncO zH6h~gg>Cf#0jv85NcVW|#$E{N;=gRZsf=!Ye@WLphnx8)`**%K$)PRmO3JYu`ND`Zo=Lv<^k(Jvp|uKw8DF#J<|UDM6ySrn(N63uH;!aFjx z4z0J!pY2;86cBXaoimJ_?tG%M-`gn*b^(8$&!Z#i-OGim`G9n`+K&L;u6u6!h@cw33# zm3KKbjff8q&s4=nKj4|sRJK@+PiTWwen`A?XUVb$Sq?TAZX7y&`O-$S8q^*j(5;&` z-+ZYpavC`O{IMl}g6-bur&!6P8YtLt!=-IqIFJb38(s9yjRIXbJwKTrRH(OtgVvcwq=NNg zKE8RB)uNy%;;$GMy;hnFOK@F(YJFumPkrdU7aP58=kF`(m1|19X7ORkJXj%mTYAT3 zLO`u~ZF1y(!D$taXoEkzIGU~$_!%`1w0t-??OJGxP~)ml-|F>3^BM`C_w6g?iED-9 z9^1FHnK0*(FmU?XqYYV|Mao!xZk8zH*>Q3DYr64EfWlsV(g70z8DBD+cbM^lFD5Fh|cHv9XJC3zIecAolM(?a-(Y^)# zZ>$?)qn|A-tL9z2Re8}kx=b;M7_Pa55LZ@^um%VMsNLeGeV(nXNF2Y=z zX_ONdYnb0)LPqk;dCgF7Xk`GM}&l>QYmxse=d=WzgOP_Xikp3vb6R-I?=IQkdDkksm znW9#RHI_xuqBKIJxn*e;Inhb?4k`5t1eeY@X0BvPs@WSZ@ITC=}&dey*>!B-69`8 zKVIAhI$N<8QK^jSd9v`zhvg!9{xSm>#9}FJkWAOE+NL|RJJz^Z2=0I0EG#Df@TA~! zOQm}4%pDPc0WODlO7`7N+n$lQrVYxmzn}-9dFz0dj8wssFo7UXV(^1amx=~J{g>A5A@+)m#yQ?K(gI2Bx5(h>Sb%ahv1 z>rp;0?~uV7g{LB)3vgmq6p86;H_CH7;?rFiUeTD<-F+jb>O+X+4fBN$Q%qFdHotrs zVzxoMbJZaj_W0RPuwCRMyG|A09B$rFnqLQ6sMGnTeCuu1J~e|S_m&ie-@W`tt#%k6 zwe1aVyFT);Z|;fr`_ayZj%IfWXb9=2-EYWN)HCM|5WNB-loX^v!zSYH>S!v49b zi&H;%Mj$R-@=Ke+p|4asi+8_SfnNh^)cZy3uka#fr2?WbOSXN@13`JbZ(zh59I!e<@>83`nyu5O$*0` z+2v)VfJMbVTF~uo#=hssSrJ;Zz#lAv$2#8dIq-VERIdDOc*>F5X!rBIG5AlGZQ^f} zxvHJkAr{sca-ZUINZt7I8E-hITzRF{Ex%U!B%PaMi}l1t(@Lz|L)qu<3SHC+5C#D|DZ zJvL3DtL5Rdm7k2GJFFtk^d&*$MIb$27ID33!CqMKD(}VafTAtsuTSeP3o75{yVXd5 z_g3WR_4^2Pwn*aa+ literal 0 HcmV?d00001 diff --git a/frontend/src/elixir_logo.png b/frontend/src/elixir_logo.png new file mode 100644 index 0000000000000000000000000000000000000000..e7d9f7b4c19599cf874cc1be11867ab6c700cbc8 GIT binary patch literal 72771 zcmaHTcRW@9|M)Q?yC_s{yMZ67$g7(X_H6zy66_8m>Ll{ew?>ul9(e@m;YrdfsbVTpvj<9@WwFo}f;DH*{%{|JHjA zbgECoQQu7bodXGHSL3OPO_A!IUwU3`ht$y84R(nh%Nl*wO6EiG_Hs>{#$^Hmke?x9 z5ANMcg$z~VRQ(qg%<1j*iDN?cEOkpPJMNx4KelEIHQNlNnbywvVfS`G%gGsy_aa9k zR~*<{=vJnCJarzn1v|YE3(YujPmrg$lUiBn-{A1^NS?j_B0i6F#G= zi24git-aHXcKurg>oum;0#o6Kp7K_F;S}6ld+S)rDe0|u%x%_j-O@x_e^2coYB|2TwxzdgRWi#5Zg|v=F1z;dVLLQZi^bE zvFRzI_OPG|dT{#wlQKc4IwIe(QoJzm77SJVw_9B=BDuEU#J8Irk)^%D%$jW($@=8n zTzi|jPFNc>SLIQUhFK8BIjbbHqHHeK+HU(TFzmhXD}HdD5UdD2%W`M0bJ~%6%NB#( zTf%bX|Y- zM}E5XG>){)E_P3#*w8$uCx?>;X-K%7MW7{YsHME&tN zKNz%cN5anv1kH_K^y^sd)T-N5MQW>d{oa0gaGw{-uFkR2ZVD_|ZXH=hiyU-}SrDJA zdP2U3oIWL^vFJeCtRHmf(X-iVKznh+T68PbUsI5XED+Q-mby#D=yXrC|71NG%f7~! zGcy{`st|-^s`~3iXB3+fYLLub?vXou23(gkD#yZX2w47kro`|I5a- zhF(OVaG5sM)zfRQP*VGlq)$OL*ZW<_bw9Xa|K}-ye|a<60+-fKue`5WS1}SU-qT+) zDt)ng2(jjeArqhfXh{DlL#?xO>_%j#FS1ylUN^0+@W&~DG`34*_I#RR>@*PzxRU2O+aI0CN&9{YmjSMI>VZe zB5H35zoPGJpH54BSZ{4$$Tn4LMF|HS_{T$YPZO@;I~uAk`LisC_bq1onqCB7t+Vv0 zUToz;pP&65(f$WC_Td2J!sJuI*4J&T@ZV&sMP{{Y0j+O0JAM>cO zn^OY0@GFA)zG?D)%4jr;G)yI@{Uf0t960WEcwhVYnmng_evg>yUR$6T|5Qb4s&>gO z(fkjr-1FpEE}l6z8B8QvX8b8#g94pQ4^4btmB{?8+(1e!zlhj&tw zdS#a7f9x}mWST-Q+)U8;$0uZfIce_&>7kTz7^W*raS3U>T!4A|Fg z2M&H-n6UYGTJfs_q0r}f@JR8m4unmt4YX>R3YbYL3SGZ(GVkxUmlh~6xPmP$wIV#8 zYn4C0FT2qKfUI*Q0h2wAyH&iWO0+MCm;sY6Vc7I7bBfr3~;NT6bkiP+M@ z81d|rH~OCDP*B&1-p;>ZS$E~&L0(tSedmk6o(CeF)d33ANRmV84L?Nz=x8mgEg_Hg&Q`2&1&GWmZZ9EV`uRqIos zasR&u_d%d|Bg~#cu2R=%*WXgUNyp8#rRYA7_(w69n$HANIY&KLU^o>~DJ*&j_s)ZS+(q>zc5 z>+gq#cmEVH8O8{$_+tMqaoJwv=KA}gq4(zheE7Esx_@h*JLtkcnxMD;yyrJylG+D` zZYrYwLJN`H2iBmLMvjm8nn}>uGePJ=Tjxj4RWi&!hx2~{Z$vOc5K68GmtJ*=Vf0tv zpkaW$foO~@9sz)U|1~rB3Ks>CrmP4#yKm$p8shdrQI(hD~pI zSeGb{z%`IRc-CMZAFE5Xz~xWDVDJ)P&8X-okUw^jWjjBJEj+*^mm7U(cuk9|4YHEz+S_ShydudMdkCi!&Mt!nZ=1;69N4@nu@b>%}1$_PU;BH2ii*z7`eM zT@eL-D_@E&x9Q_hIfP_x^T1v7>B0U0HIkYXNV68~zCM4gR_tJ&`XhK_!>buQc8_x{ z_st%WgNuf{J3l8f9kQFn0aH8%L0kbH9tL#>w!X(2{Z{R8Jl8=1_F`r7oF)UdQGJ^6 z?Qk@hx3|Z3wI1HZ`#2exw)h;UA_~wH%u0%r#S;#a!qP&?WrhJWU+BalYtK_BM~p@y zDBUC#xWFpZP<@pOJ>R*v^L6T^mhrl4d;}9YT+v|{twSLX`Wg&u{U|Ty+TrCj=G~RN z3;@-ZY4^arO^FiRHuHLdk2tcs>In8FWmw>x-uYnxJ1rHhM!u8PBu003nPqI3zvPw_uzihR4t@#%cAu9c~OB2tU}l8bg9svw`obj z4Z8R#At(sN`BhSy*k}l9Ep<=$4OT6^29Bvx;)8AP)wZhYKulKO-u3F}Jd?d;g)|{2_&?6K~h4 z47HUFz;Z=@NKGmcB=?4Qqm?s($lc3e+rvNeJWMW?$4ZW~gAE57ivOQIzt*{0qe%?c zt@R>k%;8mtKG6cF8fl|JdUe*cXrQ-ZCkZ(TrgIf%{i#UHSawzVRQDW7(13Q~Htbrk z&nKRuY8rwV*}B~p;m^$|P5#*i=|HPLA)1A};SrglniIr_h7vN76VF@L>t z*JviC=tdu4yN>SCCz~22=#RD0B)!UKbHI5k1H%sohqkiAt^SV;cMS{AI!Qr3>M&Qf zyT;T>>CJ51M@O9ZLBS+u%fno(*%Yb42c9?6mR(9{Pq>%XH@w8pk|fTF=yyfWZjo?v z0jX~L<0nxWM!LIKx*EMbWf(Qb~su`3Tl#mcIhx`8AK9~%_}9wM)pB=dre ztzKBGKb#pjDDBZwSbMSB3Z&}(JDicSiwsECG}zH;rjM?PR#ocbI)u>R{2nCeCMTBP z2F#t!tq!h?cY<3yF{-hybmyxVbCpqAUes|LEDT%KiZFWlDLvz?z+oR$Zg%UV7}(T? z64oiBZ*9z3+#ehWFmccN{gv57W+dvFLB;6C6>+YH>crWX2yTWS@&YTpC?U*UD``?H zkM8_=b`m}Op@qXkDOqBirL*x?fAPHf+S zGe|8Lo1W3w{nFfk)+KkBva8ou$I-stNuDto`lcc8_+0i#F`s;jildMrSKtCLS*eEO z6#8tLoafq`neMy9G;I*3!vI*D>T%+a=&))^-;AzuuanQiRGG32OCU)GCg6yA~<;@&*Me4V8k_RhaP!WPu~{P#zT z)5A&K{@$I+B2kuBh6i_0Q*!<-{c8>t&tMOieUWPV)OKAPoI!*HcoDK#x1VGjzp*YF z^iiPdb9vowKO)1gk$MAPAwMh-V+<(irBv$4IDELkX6Q7?u8U^6K4&j!PuT=oYsa7a z*f6yo#Zo07@}`j}S<+q0g2>AmC=Rr1cEiAGboqvwel88)ud&a7FvkPR8@pSgK_8%G z-2+Z}AZIvlH#tFmeEv~6XI0f?&rg63dkHkVbgjrxxSe18&Ifd-O-hbCds#Qp40ASg zs0}+TnP?lSz*6iE-2PoXOU9w-;bS6*xQyzl5{i0GyV#VvGo_%dmO^_&UvEKimGbej zh(~O*%h~~iy|PDy$A^WB32c%0R)$UBq#m&w&`>SB<6mZ|2Gdsei`T;@c6yYiLR}A>9f-MB?AgW8 z?#CYeon~ViU>knBCf{X8I0R~SES*&{n%;Jc3do_a*esK_;|0L9a15}T{+XhHZ?NNx`6BkDJL;N2zuOd+eu`)TAsFrOsA#f6@V}t z*ZubXT0UBF@OgvS{p=H*)lOoA<22p$w1C~nZ2a>WtiKJf zvwSGlT43}Y*uvnX3L|Gyi9`6%&p+#gM_EYyPM^Uoum>%{D#R$vGv*FpSEGtD z+8^zpSO?3!9@G{rwETpGF!!uVcC0w;-iZ_uqc2jl%#Utqxo;p{GFsqZ(}c@7R)q)r z{JMT1aQHH2#*JSP+)22~d7aB5X-GYndfpzb_QQa-DY0e!b^W_4CC`wwr~Ls)D}dsA zp`Rg3uh@4bHzsEEIdk~bapY&lvGisH4!M(iZ@cw>dof%kpCjG&M1n=TMPl2@es$(6 zmkW@DxO{scQpP=Fg=F_Coua z>Zi5D{u@QxJxXPW-3fp4jb+=cybE#-h!{+8CEd0s5gh$Jr)xiZ(L10t~H#Vvss!?R-wQxubO zNI82t0UUEKsS~ThNGdQyAUO9zIW(Z*7ZbE8b#A<{tVo$D{%lF(Z{rd*Gn<& z7@=rkFF|@v=!HSXXt+|Y5+&A6WYKX{fDVH@CiUwKoCuvxoGoX1igF?2R4&aacD@P# zMdG{~n5x6OxdfPQgS?jg!+~fukChKeKU5Jx*!0Px919RHJxi03d<0TE|z{+T#K0&VSUG zkX{WK&CI7>PaIn<$$q9M1?Fjx%6(Z5G6sT4iGkR3Z$RqgEv9k~W@BCdxySKJfB~~l z-=&_m&?|5y@fN>&pojvB_{>-`x%!|%wi75}2uqkN+LpabML&_8Iw{ClLeE^AJsj6- za$@_Q+436q!5WRz#UB%3iwViAv0+2Pk?^vU>vY3>w6Y!g%ciibH!#uKE6oNe2fT@I zMcKHyfNq~q^?Lk=qN$X%*s*ZG(dfBxcvPn&nK1STCIO9*Zb9wfKHS~$Sa{M{h zA=9u$SrcR<4X8r{CRqYyz|QX89(VR6?X#8G0d^eOtsUaMz86*v#1^xh{&mZXpIeS7 zaMkgyxmPQq09Rtby!Fw}2R#yLK7a2t)3mZZ&cjN1UPmqZxZ@ssCDDup4EFGW~CQYki7{5_(4+63Q<~!^5 zWMSz>8LJ?4WcE>6N|cRQ7^L1#$@jZVc;+lU>u2}2{ysj>$rNR5< z0@sX6vYZAZzAGqY6CGZg+VY>3?lR5^#b^9yHXXV+t7}6`l=(WxPH>zou^}R22w&%` z^1AiQ&Wnzw(!m^*?pWHcu4v&h4JyXP1Pff7d1;|}t#fZyu6IRnqj0k||IYZ6=L+$G z$OycDp>nZhTPq>J}_RH|SPmZQ!ntCYkA>fX7KfLS@mu-4@} zg|%XvxsShcEZqzJQ6`%tU|5}8JlMOd$*xYbKF;mJ%kdd{%*N~Rtq&-~jXEn}LjSsG8hYv>I{p!UDxtHh9Qxe;;DvS^pO2xvH6 zxz^bEs{)! zjPyLwnjpRGWl|VZWZnM$`YG7S7H;=Qh)VASy4DQls=stz1d7PcTs~F&T%$8OX;UN1#Ea0H>ZcRXQ^9GhWVB^~hgE%m@aX#a`b8o;_ zNa8ADhKY>Kc3sA9Z(6xymc-$MgnoFF2YcMxtnhIh!GZJM9`o=Xq6xG)c?({SP$v7k(L8I4`$Zc%J;k zT7fI4v*dC{Mfp|O*jP7Iy}=9wkla5jJ97iZnuHVc5AE~M`4nZ7apaz7W~~6dDIQFs zSEIX|2p*{`Mt)e>UH2W)VSY4o49P3;++DTW#%>vmM3$Vp*J-KKLr)S~3crT8a!4I?=A*RE6af3XLGUlK!Cm{eHO#f7*8d9^5j(?Ln8BU5C{XvO( zU|f3c2ad8~yKiZH<1#c+fuu{k;HJPEVNd1h>;at*z^!E0=M$ZbquHMIlGkQbWQLhA z#<}N^^*oVxq&UvmUs{fIiX(eeu|=ypJUP|tYC745lF~3nS2`KEEnn#irq;w3U4Gt; zV@2l+*sJ`!=lM1lAVn0=`4L;F2H!-eVa|3?O9T!wdvwY61w$2{8%VX?^X+!7x_Nvl z)sBo0l8AKpVQBkGRjfp$b3=gHqXP&=dfpc)TEjpf(kB|k?ND!aFR$ho zJI<7DDJP{}PSjliS39giO$&Xo5CqX|SoaP(y&h=#&RMPKIztOsCN?{DGupj1p} zRC)I5E89q}D231OTCpSd8?!OacQ;+qvR*!B^M{p#$FR)X-*yY{Hm*&+e@mu`0^ZwM zNDwZ&L&f{6D|NCt%$v-sS*x}{y0w%OM{Yf9TDPd)n4tV9PFtxfSmN9vC#Dy$^LwI~(FT|y=dn@*KpKZNvy z8Kv_YvqKCelz>wI~?3J<1s%lh_;+5ir}diVSn3e<_N66qkPKv z%T1wJeb54_~uw@e+JPi&T8>F67wK$DFRDi)nvZ3=)QqDxjN_BkV#j2DS8 zLnqd4q{pc^bgeerJ7!P86Z5!xd>8ENl_8ZFM0YNrillBc^9f+KwaR$M4Ko$bMExeo z;exP}A_{!mIqyt{yFn~6EOdG@ya*n&GLf20JpcfZTS9pGPf?k4Z7081yZ3gERow%0 zaS0lSVV_5zBM~-3ATWSYrc78+7^>Q9!&%@ji4I3~{R+qb7#g z19BdRgYCQo9jZtPZZ7l>Uo7~@kz#=ZhIn(4h|qr?NEBi^eUMTm3gMm!a8KJ-f0iv|D13fj;(M@;0D*%Ib!_yJpy{@E1o(nukd=-sVgg6;q4HIX~B7xzx` zF4%$BC}JVqlgdSKr{HLk5tD3bqHreYUBBZ8FQ8AtVnc2W;4f;bx^N^#1I!XZH0HaA z`+TwBEoalibq4S2ok6|w1I7#Dj}SK(P&YfcIUuDnPQ^LWVr?LZKm@&Xq-oNz*zR=?+cm;w7v4EZcAiY5ALuWLFs&%Ac79eQ! zBwYPun}Q1()r*3|N-{Qt$76f&0uXo{h|E;00$c%wRc~PmuRcg5$7>)}>U7H^Ru?MH z!3{9`e8&r@zWp!^l9P|jzkL9m>Wc+0FMp_*bc|g!M&zak9{kKw$kHT%l2j3zg26Q~ zzeyzk{zx6TqY;)1oFJ$xc15tI=W8ELoMR8LAHD?h__pLWDf+7~7W}%LZhDx+b7#1SHZH#7SuqlLp-%{v5Sm4ZFd+AN3fuSnAhzb`2 z+YR>3I3WMvsNnFZ^w|Q1_^&B|?S|&7R1g}6V5bLWyn4Ck!d$fsz3G@0pzZ!OmLo|v z8RYm-L@sPP9gZx<>mjSgyE)uE&* zc=j`0e2W;6R;Ma|}e7hPn(!;oIVX)7?XjTBnz; z;Pr~kx%)kJRv%8U*Ts~vD{}Zt2raah_de`|{mNyQmV?Yb+PY~esG*I2FC-(W-lFYk6 z@L2LZ(Bsx(=ktnmF@6W6ZjXR5Fsc*ny%~m9gj4+66zD00o$J@YH5I`*QyJ<}(E0m1 z2?Tq+Q~{)3#%3|CJRs0A^DsbT}_av?o@*Gy@zSp}H!3)RG74-e-A<-C3+w z?BN@nQCgC;OD8NhUF~%RE>jn6(HQz#NHzuwo-uaV(l|$b87{XbJRVMmMK|`8QTQ={ zw7P5IzQE1Xw`IL$`-4n6U}7#(-UbU~{AJE+ZERUx36v2yU!MK(gFifO6XV1p?iK0>KD`QAS7QO7|1!lY1j= zF0w5#J#ba-qU0~m4I-RQR%h~w*A_UO3#v8fa4a}Qxq1TOa1L-`q=*8$j)AZ(r80X#vJc4X0W2^5Gb96T&?qu<4|xkRQDfYfUv|O0IDJV= zu;FRuDRJZVc*dZb`fXV{{2;>XuSc)H=fvha72ACUuTXq+pdM(1PHFEQmt){s*s-Lz zi;{gM!oRni0Tzfh_f;P}x(UhYO`Ux36(Twz6~q0rxz?4hs&w+5?nyep$nKpb8K{Ov zk&#hI;gzfPZftd5`GGK5!A!|s)j5sv{#oZ^<##Bswn!9e(5WcvED54tbAn9_T))7h z1wlj}EP=}uh-hur<&+BGh7^N#C+mbnqSAH(gD_C8UH6h{U(%DiR)yC7`Za>6i`-n; zS>$dNnvMA_`z)?v4ojm<u=*`EXV5gi)i*%~VfnVUFataDUa?D~A|uD&&(x0_tuP!5nca9#-S$NOm4+{E zpKnVHlNsb%x|>ve5_mClH@5hh_=l`2yIjy9Ea!H1!kci6Vgl?|6w!U!VWnT549loDGUdRd_Jq*Ye-T3y{o9ByN)5FA~sM1XIBVfeV>&~WGLP^B*%0sjAUrd7Yk7F ze%Mi{o;}8~enO3o3=)1{@kXfHRdnu-ew|eJ+37E{2}N>lDaV7b^ms@b>9h-rz|)Z{ zgAbg$=bjJmvJ6+4UT~|6TVvecUxRRd6D9qs8_6>F62;+j`Ce@;D#hbaC{Y z_p9XPPtq9-M&AuNw*w6jk2&D&ge~-lCk8?gNW5=^HHU zu}Xlvg*Qjm9SS+a629i9s>-FUyVd2i|0dC*qS z)Cs5)b?n34fF5E@hVH*zUq%lP%74{jFe$xZw_Qp%D&Z0Q&d;=zzA%X=_z*2V!ao*&w29u-I&k|=l=M@(qJ|&Su?|diXWBj1 zo_1BAY&-lc&cmpM91ATYm#?vEsjs9sb1%i+_d=v_7-ZyGZx3)pja~3yVC9)NunhmW z)_SFHov@i;9a$#0N=3qjB}2aIF%)QV^Qrjr?FFM>ZI6e6zOobZA5Y62>xwSeu?S!J znX07v9WTjLEt0d)l6KkhMBz5hRoVK0_bLkv0=bwxbfUJ1rG(_;YW0jKtEc=00OP6X zXGlF)RM1Xc7HuCp@osIn(@0HXyj@AHT^!?I9!<7eo zJ&3)GvVKPMkJi420pSOV=0NIE%g4#77e2&g6yV+7J}eXK0U+{^`BwK?ep>pICV5Gl z8e5H=#i4*yPOF_;i*cO2-JG0m=K#?E3}|SekJjS~@l%!07tZ(7r@B+wXmF>j?u-^c z`q|Uf)1V{)HSJpc(6#wT#Rmf#FYm17JpKMn6W})>MP(c!<6B^Fe$Bdl@4+MmcEIoZ z;I;Aa)aq8Q;o0y_{n8{dAomA|@nhpsV{Hr`Ob$S6vT@-onWrJhG97bwfH}g}z<-u3 z@%VT>m!7Ou$kgUDJxmPe*}TJ3ELpWzc+nBK4GWH@P}2A(zF0uCtNN1COdK$Q(cm|+ zD&)`*KVg6s(gn$wMReit2L66y@!=AsTH@CmRfB=Y5BFrt>dag19BADQzcQ(?3FG8l z>pA&N4}G%ZA%R@cP0}<0+GoEjSJ-@B(mYCAa^1tQCZmE^bwlomh4hyn{kJmG3h3KO zvfUL?fB>0PH{FYJlMxoZ%PwnqGA;nb>K8Zh%%eN%&pUO~lpY@4mdv`EI_OQ0Tk2vW zut}e9x?tcPb!&wayPJ6uPYbx-aY#(YkU$T&q{Jx>%YC{`kWEo~n9u%r^N&O5#FIMw zT`+`v-D*iJOykK2DX`DYnpsL;i=7965vJdt?%5~VTTt6uT0RU-~XF^CqjEaP}qSAONS7X z9d6PWDBnv>N=j)ayxvvz$&FU z?e`BAe&`3dmkY4#rV22H8_V2Wz2x;JdF+}t6NHb_5|x_d4H~V$v`T0XBldGYl_PrQkN@ysVaIY8pdfw&j?XCh#Mv9&ou=S82#V3I{@rn03yTe{nQ1gxiTilRTY0Xn%Tb=~YR92J8(!PrK6iv0 zl`oJw`XVIi0TNeFFD>}04U5Hv*8{zx2wfRDG_4nImb~HVpA*w_vf&RM`I0qP)G;{z zy`$@iM=Oti-R~+>s2>UZc&${iX$+s&aa+Kmy(kH!TV@mESA8xlei(=`XQSoX$L^`6 zfsd$=AqL23SA+Q`eI*A2x}L|?1$yWT>Z?LntxWBWVWNCke5FaqDSylZ<=Yzs4EV+v zYHqcZC)w%5)y-|G6#8(ffaZ+bqdm7+xS~$m zY#o)}(LZy=bWnW#=h;JxvxjT5TXO|6x9X>6$13Wsv3o(?yG}L#(U-fObJu!(X@MsTHuRlU7&kuhl>}l_%sPKl6TFBve_=msDj}n`dCBBj zVmapmKz{FOo#1&XlANqr>Ni9K1;RK?V^She4l(NTAf5 zMk=WFp(1MfN3T`KmU+Sv2-UXxlEYfw`6^?;#q(aDCjHwW^Ez>cMB0w2PH4EK>BG7g z8PqCK_W3;MfI--@Gst1j8`2o4U-FV|&=n|9SPoK<*fa;XUyDFG_08cyO#Hq{e`un#8Akx0jbiYbJan+xEe|0vLp9clZ0F@g!mpF$Zg z*tww@!4DYQ4ewn0R2njm4iu+RLw4$(Jor9R2#0idu}V?C_JiRLbH2h5Ug2I~&N(uW z&E7%EWPIf>K%o^41%#5l6^b?Rbh=FnaUD=Z0laJ)asuYVc5VN)NdoWm9KeM#9>c6t z`(nZJL!Slam_}gF4sU?<1gBSYi-24adm2%ho!wgACM*4{uA}lr?V}L7;-)eWIw1BO z2^2!g%>{NxnK0IQ-fSK#wyp%9Agm|SgpEHu|LETRnOgJP<+L9GZ#aqc~pMp_xDQCJ>5`7gEln5}*T8sPVlelF_NSlj$bwm*O) zp+I}viM=&Mil{d)b)Dr34uFIkoH*pmI@r3e$zvzk1_~!aW6l1qAjKp$Nt$7_{K`12 zYw#2AtcU{tUD5^NeAw>$=eExRpaJ*cBN$J_Px@lP(scz|lK%V&4_Hg;S$>S!H-T(F zQG?Tgc;QypwY(s;{@B9lypaO*DQy<81^V<9IfpkIlE-A&Y;>JAT%1Ut`0szh z07!3Sng5ZVI2X)+J6BvdjV3w(e2)k^jeM^cd;eG4h3(btOtWOCJ3;Q_nSy{uEl|tv zY5#iDX-gyN?dP!i3Y-(kr=Q(IK`2IFEI@u;Sx#W|Zqb|Ym~dpdP=oZF02JT2yLd}Z zK&WaMz%_%7edc@^EM+_gYU4f!7x*25{a z)|G<##-NdtK^2%D!+!E-)?0uzWf!ZpiO%nGzwxEdtSkP4LLkYTpzxI>ha6ua8qc^R zyVl=nU5WU!uMiZ>ID|e?KuQMvhh!1p7QycMlF0|5@!L@f$kkDn_33cL*-HQPViN4> zU5nGQo}su86QBH+pX4_^)XMYM`)Zx7D=VU_X=IM=@nqeaqH=*CuW}B3|LWJu+5U~$ z%^aXb7;+M+DIew*IFrG~j&B2C6wrUWXV7x2?eQ^sTRk^7Sl6z7=k=U!`z9CB z4RSLBl0WR0k_CZkn8KyHmMbEE#sozme6VJ3a zaR`e$=uAA~GF(y(8g|&-i9)LzI6C59f51Cg;7kvlC4)8{1&U|`ZiWpVW`eD2*Xw8p z>3Y~)gw?XCqr=A@pk&13iUqAk)H%f2wNkC+>HAiz-c)OW)xE>0^uxI3RS5X5`t8FU zXaPDX?{AQeXG%@R%jc~g!5}H`aVYx_;bj#!1vWN?BDjdoa>5j7y9Wh#6CtTY>IVIS z)g$Ja7ob)%kwx~plbdViyiiTsyK^K^E3+aByyVz)I%p$2ws*m#FS@7(LUnbo2hx>g z70^*Y4-as2fj6Xh;=&uP@fGF7aecI zZf0{6f^?fYjjT!@WO9J|^WjUwd*P{I88xn<7PRwoIkh%h8espx8-p+O4M_XX;2{w1!G3epXb?eX!9LLmVwU`$b;a4!wV_wq^ zJhFw@ojK|T1!N0dO|6*g@MaXy9hSoFub?t!>OkMDfTOYXN91dHF8%)PNp@2d{0k3Af&}G>X=VB#Tw7UWE zR%7zm1vWuFj~DiO*)-b6q3fXMkT%u1YMvkNEk#@1Q=v`)#Wx{ebw-VA#yk$cS7Lji z3^>!O4hraaIdAlRsU7u-!D?L{VGiiw?p$J`bn5v~!Qhc>VA8ER1=}V8f(Jl6%tX8w zHq6y@sJwREB{U;8of3LTtB1)kEd+foa2{HZDx!cKLOdra90%sxJlJjXihCe@LM^?Y zam}IS0O4C2zU)PGrl1jpia-nw1$3HgS7f>Ns9FCJG!z2 zyaMtStG~9s0o^%g0Jqbz!b!sAtO^~3CSF z_l#HV8IKDB%eHgvnr{p0^)V>wfl%x(>}^AUNo={rWssu$0GY_k+{`PvzN8+<$YhkC#Igkti$w?G6|?|atI zIqy9AnR7Q-VeaO|A$0zZKzheDWfF)e0CU(aujj3xYjSWRb8OsIqaP2v)_>hMgoDfq zKv(8o{VjPLg^n!6GZhbJX4!t8wm0A?+=&8ND1OBk3v#C&FeI4#gd?6J(~g=;zIzmWd82*%J!|% zP&+>8G^AmkDF*7T+9DSY`bJ?xC*q>K%g);!bVd>FDGKj_C?4rKgH>t>%L%8C*e%>` z((9d{$i`hkm_HS999q@QU()u791c!**Tcw4Vi~tL-q@}3v>pBQXSTIop4td7UAA)< zY`xkT7ViYUXRI+8k~{_qyAjoAZ^GlIu1K^LC#RDPxes5QU*#KYdm(0X`v`obd*7G; zncxZT$6O_(2c|x;W3yl(FiZ2vE`0sj;Hl|8%n4ydVTE1l&0)-IR;2pjC??Ysw;oj* zWmM8UBT6+o8y;s`dfVx>Q{uv5$Rm+;WxXS6c44)Y!eiNYr@sYLM^vQsInp8W%FKd0 zAysi8$&4Jxp4M!>C$KnX~ zW#X$A(-(;Il59uhjmA~!4rnTTy4Sh=CqO>ec_ogo{ZezrjQ~sBt(g|38BgFNyF)-A zMm?n>$#353*z94pZE}zCET6mhZFwQlqjW9zQ=R^qGqN2ob9R6xXXhXNbg3nIIBdR_ zt-DbxI`o}nhu_|SwYqkJ*XoIe^_J7X@NB&FpjYZt<|RpDspb2ku|Jm~b_k7htmt^j z+ofi~!B#SRSYrvUD_#9L^}8hjgRN-P62}OV`~0|VJwr?-OI{bVF&lnC*6P#p$E$$4 z=#uf)$|(^nV;2icz=Y481Brs4|M=gvnB88uUN-9T`UWrU=}j_7{USFwF%(Rs7BPiD za?dZYO)s^#XjR5ZM6H{;_sN|f@OaMdL#>@roOVE|Qsg0ZLTOQykx;1dY*u3T z5}({s%$=@qAvGTYeY-wLYr|G1qCIr!_3a_XjdvVolPrO8ycc54-9L$!wsn^8@aPUNTX=b<)4D(DU(D599oKBUHDgdfP4>j1 zKtZaV?#uvw(%s?&mIA|DFFJJIa-~4oK012=d`mQy^c#zSK3`U%NIxdlwamYR_5LJz zi|Iq_!*%-4*nk6py}-Mh^bX~DB&DZDt;KHE5{d!DGPl~M?|aL+69pPuS8itGHI@PLJ?WkCUu zNOyc$S|NRAWTE@g2e?*55UL#fr0G=>Wz-UCY@QXSP~bMd@#$3Z<|IE+IC&F40ClM5 z%S%7T30aK+gO__6oFVf#asTnZ9)WANj`crkz#xiPf|@kKm=v z)h7qHK(PTgM38gxRfzP2^plr0g6H1|8@l9?R}iS%X={rLzu^ummNX@Q%%CHASY>WI zeQPB^`Mzzn`NA*CrAftzZ}q1Kx6Ge*UC~djwUqy~o!GMDq{YrjL*4JO`Zpsv_vDJ2qiLK~49a{92C!WqcIyE!T##!HDQR>k)megfsL@ z4`c<*e-^6UD*OpXD(jh2(1wI5=qO1!9k>-ex7{1pzoq32O(o_(_3WP;Bh zgJTPM;XQ52PD8R+UUh>+#p1D;4Co75hOMT^r-dA$1m)6|&KMgMT+D3@Y3lzrx0HaVw{2VFUMdIrbhs-bEGJllg>NOdoh!x z)DU!(8@LmHsS~mE8VN@?xyt$pDCnVs4=Ui|WNUFbXhD?Uq(}9WV_mT@Wke=LAewAF z8lG;P7bz;5iChW`x|q3t9LZjM6M-x=gWT)iLWks&Ho(AI2C2NA8-v?Uq*ej6y@3kx z4rbjYHv*cMfFAq>B_XFzq$rxOA)`N4t_jE%I8}@1^jufqztHO7Ed#-q+xU&-0>T)VuYadkJPWX6BsoJNnn&H`D2R`6s~ZA)2dGf=u@PM z{bS{Nyqc^4(_I#k(5YnB9Zc^`CItll`Wyp3>VYzfC>P|VBi{tNi;x(S>X+DKL@Nx> zR<{A`pd2RZ@+?1ipqE|tf;+xMFveEo&s!r%=Emx`$ooD+F*|=i1+YWwv_k@_ek3om zIUkA^xX9C;W^Pd~-_ewQqyBeSO&H~nNQW5OR^xq}O_f9^Oym??ORdc`Y~P%mLGQerC7JWxQ6V(PA`df zX*HGKLeW{g?9xW!&LpcTpf&e^!($?~r5}?Ha^m<0uwl`G+@nL5+f#}}w&}EMC#`~^aZAaud7x;7SHq%g0TH?<^GU22Kyt4rnOBaH2$y&AFtl$ znH#{ql1vvGE!iOg-X^dgGqP+{&IhvOS4d!db4b01S(zwofIV*hf!tkmvU{yuuueA4 z67qOYqn=!2t!^~24O&tgu&P>BJbA81@#%Al-}bpG2@ct-P-A(}8f(CH(4E2AjgfrP zad50I5q_2C1kOt~A1s5WMSZFtPNEgeq;7Z+!x#b*lrOy!s9d)Ek+UG1A|(&C8f%&t zF@-(M-w=jtvOUxFLa6)plh_{4|ET1)&$U{p^`hCscjE(?<>a(}EEt8mERjg5P89VI z1bk;8yekHYI^GzGmBG=(M|x)}6Z`%jQ{NqrW&6f`-N@dA>?9iIgUGzCj3_EQGs(!x z-giYvMpFp471=V9o!PLm_bfXRvU!h7zxVyT&mYg{`Fx)HI$939sbu^4~ zU-D1BT}D7OCq2qNeAe@DTM%G6D({KHBY9_nyo-+y5Vk+cbPXI{&i^>_dN?i0lhD`H z@fabtC3rIkeJ=lYR6~W$TSgek@jg11n9hTAGK`$o=k&oOh|s2K`wLc^85FS`b<#2V zTTtFU6nO>E9%)0PU#Bbxu5T1#z&lDB*0YM!9~D2S0d4T<)3>O^zn~%l#DTKQ9ipEl z$Eg7du$&`tbAzqPvPa$EF{(i1WNUZh^6IXM=sc)Sa9?>Nj7nf0Q*p9twq+wEuWo1( zZ7Sq&ivgi2ayyZZ6xr7?crYyqs6}MC2 zSe-YI9-3SIkFW1)S21DKyel=Q&OtW0}Xpt=0=ZEqcOvS+ts3L!DEndyyP~bIPE=xx*54f*L=1Q zx|9(xq&VK6-Ce#XKqAq>IB15L9bWlwxO?ik~%DMVk4 z&MB_J$7P)wqRWx3;MnAUmAt{F=}~gj#ZVfPahcRsj^ea>`!zDwobDraNghLT6N;Fi zqg{jMQWryzh4GnB#_j}~9oNX>-@yi>>ZK$pkleEa7bgY5=+OeO?mig(?%;wAA6W&I zHa9E;{N@QjK84&b``RbXv2ua_303l%! zIHgeLv1k&@#?C#q-a=GCf6)&*CPW~p3MAsnrr#iH%|)jL3;B6cW+ zgOX1fmmT(Y06Dk{y{L2ewoSMalfBy^+r6I|In(<$71-PQqZeF-V5fwY_y{%If1|kg zAAC0%)+&#|F`@vHTfsn+a8)gJ!^yz*svD8|f3{&~f@lsb3-OgNj8o1eFRTWAPH%0sx34>k5p7l@mpI zX@nCt*-2-3j2cf|ap>Nx0&l=`9Bs`3&i-Dn%Sj7jVf)KEhnx`bYqN22WZ=oNLLyv* z2aGW~y;m1FPxM0QB%T8(fsXn~{nOMl|J@{Xs|;}`+_ARdLvjmPHm$Hyfl+e@-GQ5N zSSfh!@zHZ+m<$M!GSkfsmgV!^fzP9o55do=vEu+xB8VRpOl=L5A2oUB59|Z0Z#)_$Ej0~pka-E!LsoTyyx?25PJS^l%!I4nX7T{X zii(8v^o88xLNCC1htODL5d_f_Ow`kfzB%!~rM5O;eYBI8tI8^tAXHv@i>ZsAKj^lT z=Yr;3$dM@SfGBpdh${6w(oei=G#knB@VYUI8}q87gf3oe0u?gewV&BN_DJHvZ#Z42 z61vUZGzjoanuUI4$A%N0{`w`IxoDbfbtl5D8?jK`Om2@D#%UjIN#kfss1IEIvit?i zc`U0|FFetQ*FXgm_Y5~|KM%bB`G=}3dBoI#O+INlmR*0=mNcNo6C{7-2 zU*8`@N)q9*)5N$-=wU{W?3ydk|LTjC#!rh1--zyCIE^$$YrWuxd;L1~D-KtLB?+*w zBS9tjw~XfnS&l5F_f9V+R^XRBNF$BjC~g@9m4><{6?S;;prLl;k?0L#7`kLS36W{E z__!e)qLcCg)`1S05@k63SqOli0WqG+{cw_GipiqIk`aYUqi7CAN6hBwQ*C3;k*@QY zgxuUJ8kkf?!bqSM_G+G((fL_&0u^=veNe~|1Me6;QidNCZhcB*@jt;bv&^o4$X-n} ze0~eArm#&V8vN*l#b(13{BY+4u(eK$FK@pihogW&M@ljuCWA#U+Xs#sJi1g{2A{Lu zh`c%$vYnkn<^bZlEyeCpMOkqgIa?Fd(y^z(x7VOxmD#GhrImo*Ugw^01%y(0`+TAM z{M#-IP!rD+%dNG|s92t{m2EvFj7s|jx8LzfyEB9_1fxM);a5kwkKrIFqIdsTd;og@ zR45LG^$rhv;FpSzas%2d`#OY@{sTAO$ZURHd6&b2P173~GwRbY46A z|1SU`oZeNU_JHNmQpLuF#Y^}}x6Ne5r7&ya!guiVZMPKqL2&QwDq>cRO|C#5;tBKM zjz8g0Y9QuEQB!dE{^JMZ4(~m4%4z>EeRqe=IwxVr@uQvRi4Oi&=$c#}1x?rJk7cR+ zHGv_DuZZ|Wz(<(WJjZxobd~aR9RbxuFMU5UM-v|6is}EGD^Gv9TbPG_%q8* z^|#hkStQAlHLC{K#$Dh#cWzI0N&L%jdL;DiZb$Q!udruJoSupGMvlh~Hh*K9M{BHT z7X^t%XD%(&ApWktU2u4*-sKG1iTkf)VMB^ERF|cIervW_9BgOPhYxK1v|EojtMWQ%WprU%we`FDK=v ziAU4xNhK^8zK)~Z`UkN38T&vvok#7}Hq+YW-lNeu(?Uv$tHf8AXv;q9rzD4b?dGk( z1gsg$mF<%kPH&E|VB>CA9NtYWE40}dl+5i5+NHcTdc&dKM=Ca22y9Y^`6ReIhZI{< zGyi261?8;<3gGIC``OoZ*dHz^u=;O|N2R0$IiGf2>m6Txw;pZIp)fQR!8k{}-gH}D zQ0*(SG!dY`ncODlvs)mT-!Y5baxJCKJ;lP=ANI{&zUk8lNkFSbiIrS`yVsRM zneaK;3CUbHrk)=z5EJ$6apvrH%v=~d$a(7^nRW2wWd1bCfm&>Dm^|mgIAB=!eze_M zcZL1D;`@?m66y0!8UXWGFD-`KTQd*ZN3h`X<_?NWhsq9zrq*0ndxI`|X@F(EJ!-1< z55#|g7$^xDSp6+g-Sxek-RNKU`n1vbxK1#Bn zP{JaJ1kfWx;4u(B2JLk(INbtK4d&+F_efRh)7Z%9I|NYRinK$TTM*{KcigoRx}H!^bI0L;On z1>FnE2BT@s9Ye4co_)RH=4tuxQ5@e_WR(5`!5%Tg<`$&UY)y^1co;FgO5SxjBW(IiLgxz#2WGW=-vvO*EXkU1*z z_eWb!LLqVwz#Y4zA_y~~%W!&&$CL2SM;bxB>Y7+IDMb#V+nqqrb?sd)$o{&MM0=$- zj~+C}BZ#g-0nES+Rz7r&J{2uP?0l zMlEhfTUO~uMnb?qSu2!%LXPJAv2v(s!PwA>cyF0d1!n(NDp5=gj5!zlq=80tbF-CK z+w{ssQ3J@LxCXTD&I-K(S(|{sutSRsbdG!U6|n>M5mf&PRR0p(!nM?q7uF|1D@dJa zlv;tVpD`(^1r_j?Aq|O|{;nxRF-h0jTB7SJpB*LTEAGzg-(R1v2@(9zU8`Gpm>}T4vs$=jDv|RwBUv&wnad%_PF26 zEvrM z)x82z6CL2$f@=+>3SlfJxFJ*|DW_R~$}?KHez&TS9~@EX=-g-l3>MhaKsDtI*L0H5 zntAPuFim!V>Piztc3`OI4D1DKeDq`BkW`?f!JLg0Rs+7!`5B2G00W@dAAfxYvvfstxv6yPKlm)JsC4TffPL)S z5z!WN;UqVLYa4`kMR6L*8V!M0ymZ1AvQ3sAA9p@zcRzgBaGM3}BLlVbbhHGva09Ff zUohcq{;v&!q3a}DjmS`+%AYpNxg;1!@q08)gggVDuq8QKKkvww^lGC($ptI1%a z?cuF@)!s0v3^n{M2hqaq%g4tcNaIz5anK$BPelU@Og0pX6^kstoMd~TTNrXwT`zu6 zxRJ&rX~{m@eeI4GD3A#a)B{iQ>bibDBB_hIVe*x<+JEsj)MhU*eavPu4K9W@(k^{J z9let|kD?5|`sf}12n@s`(?)Y8F`T}x8xZ4^-xqUB+3Qd9ny4LXXS%!m=s<(t&^UAV z5J2ue{}*V(xHD+rN=uHjmNNYXoXK`WB7>1;MO1O}_nm{TYZ zI2lTCPh}#DT8P?-6sPfv*&;V@##Y~m9IAr&2RA3ek4KMO^%1x#CE|1KqBi8dLi1iv z@y&Cqk+ZT4^@nxAqHMKGYC_ zEb!R@TW?mIBl;gV0VyG2sNVWey$zC6PKX@kCufd%VwKn%YjXKbNjaAs(ctu%6%raw z_~^&~>RO;6&>3*W*vIJVWq<-@pBQbeb+o>!@Ys>7`Vf`9X#neQq2rzwa!F=ax`DAD z(x%5X#GU!%D9}_0^n~e%1T%SxeDDL)LidAM_jN+ z<^e&oU4_gRs=ElcU1hjdOE+OyWM^{U9mdju9z*{uOI+z5o4|18^5GmQsb;eoc9r{&!M|N)$oWITHQh_B{(9Rt_#+ zgR%}uLQgOOgTJWK%%CTE3Sgq#C{Eq@b*&Fe@yhIxbq|e%tX_t~0+oN=b=10LKLOFi zMXd(dob5DX`)I-DFXR?@OFEDYR_cLt&F6cw0`^%y9Co$QgK$exdy<9krRVRh5#f!% zgE-(NS6&y-POhAMGMlZN1D`mt2kW8{5LrYW)SLAr-W^^getCp`$?Qapm@dIJ9mm7c zBMegd_;*At3`ieodEmv7bSVEx$2KavvgzjOnlv`rNah*an+(DYQo51GO^);=y|2Py z^+M5;+%QV&ns!Qi6KWOs+*ce#A9yo%;I`@s+f)(BTg(Nu4c>1-sASVp$*(F5KyQT- z=tFA2qBVPQ#x!LuqELotCj9_dN`_*9qKPWjY7e$&C-mGA-Y} zDJdqnev2wz-Wc0(ey)#PsPsXoF^1~~kr$(yFrx-eFQj9Z-R$Sz%R}4b#}2Yrl#jz$ zyfzj=gv(iyLrGks6x6$aZTztjB*uAD%_gX>x(HAQ*+_CnS;=t(FD{QSjO*_ikFPav zs0Bch$2y3EVN|t(Vf=X{fn{AHUKg*#e2<&iDsYkQRY-SrN%_7S6uQ=?g$k%d8zwXB zzG>3&US^=hvWi2q)Cud3F6`^27bLGfJ>e7)I$irJ6@H7Sh{qv_nGHl?Jsu>?+)cdw zC2x|oB)74ixq0zUOYP&(w_? znl?vqHmMUa@iXrWW!mDzjaP?VYKopi$UqW{(fx=CHP5Ein|yz_!$*K~r<_fA>9<+D z1Pbfz?=JV2I=D>OIXT*&e3cdUgGe!3SIcIivW6tB(HN1tS^#Na*H->^Ra8Y^M~^fQiWCb^mk+(1no_kQ1Ky-U(rTB{*W$ z=WK}e;4xBe-L@;N6dJPg)^Z$Ljdd3m98NFU8ucbe!?tV@^2)<c(hT z0k2H|RZN;B!GI~Si*L$CU+^(cA#Kt>Z3Yq>xAf7O-$E7gk`(EZc;l?U5nb@i``IYY zyDx3JwuUk4(EgiVK(w@@ry%NLbGB%-Fh2W0+*H{4+*yRT!wK7w5RT)zc#y-8{AjIB zg%Y;isD-ME22|Cs(-O}6%>6t8ZXN9NtK7bkC*jmp_QT$a-JP`$J2fS=XbdXqMvrL_ zMF6)O5#a6)P|f*>(M@a>TnV;m?0zc>X&y=4EGCso2SIGl9a2@E+1sMsco#%9_rYU- zyW{-fP*8rXq=WAFlxx7QMw9-{pH<46`Q$ewwD?>5*8LwLrjmW#isf8(PFp$SUWD(( zG@|)+XGXQE&Em}5$15yWQTC|q(Bxpn zS>a$atRuUIn%@esFp0-`Uw&%H6y!8@mg{&J)9w2K{sU8->-)mB0m*xNE8ovFo&?)| z)f~DX;`>{Ra=r^uv8h)sG;drkJ=PE+|X`0CF* zGPCW#^?=txRM-g&P27og$(#*$7d=~F@Alk6HXUIpFapalsr=tE_L}$H7Jr@@7(Dk% zL48d&^RE1K{gB>xRYAf1@H7q#oCnXjouW>e%`s zO-RJ!{s_@FT=;(bI`5<8_(0@fWt`(-eBy)b9R@z#vH&$GhR)I9T(N4Hn^hE-`zua$S_)Fcup1AYoQvIA3)1 zczNjM08s|wx3kal>JA?7zTFLXe3Zsb(CUG}<51HAaio-=UD!JtL%MNtCH{grIi;{y z=tlF7@L@qG(m3p2a)qky@)FSt784}`cISJ&T7@;e3U{K&zr7-JuMlv0Xe0IK!x>K2 z5}%=5mt4E|5C!52Hu%|-?~rKpgw{DM5AU#OehcX=yA$at8(-M{ zY)D8ecRifD`k5Nhcd4ztY@c=pd*cr8fy%!h(k>z$MGQJW;)Pd@R#!St;KKNfn;Jwd zYmd{&5E`ksKLl`n+e@gERLxm{yybM2wZ5(Wm9M_iq|UB~ru2Ec;%}Uptmu z>qzb7yzBO#b({P69U5hOpRZt7nL?)Dp4u}HA?C)t4*9ZsZsddN(>*We*W$_QJR0LF z$k?B^TwsRfea@#>1u8M8QxD`K7dnE-X$XgzqV8>TQDN6#{JuQUp=eeD$v*kQn#A}v z`;bOJfOaE%5hIRKeLG0~A7k*LfNU6%y6Qm9X7a|q-(c0Ca(tCztdI;I$H%?%vzXLO zoI!DuVxZmO!4&D6>StoK03M{g{-6ihxjJmDduA&xAvDgkh9(*VhkN5Y`4R;ZGW%l^Q zIQ@mTzl-%dYj#rOttyxq4HwF`BCVId{iVUBt{oyP=JB|w8>D^7w=H+?;70bV2X|t( zY7;n)p(3!56xg{VHJ@;S~TeFZ6jGyX~pjTup%NLbE=$;nu z_zE;3I9O8LWW{I?GxwpB^oQdU??JLNy3V6XZ2wtPc6y1?Ro#3zM3rUYG4_0B%%3N+ zZ(sV2GaoCiPWG%=&4=m2p&5mAOc<%43cAv(Ue$^8gVo>lQ#6R`>gJ5!{Vl^>jqW_s zI+L+=vjNvlGfLt3aC|`9s(HkYa4n-JZn-{l(tmpBQDy)GX6dlE=4Vj;x!kjKu?&kH zh%JG=uG{)IW(~NfGu9?lY6^znGGYYUXe{`-ee(w~)+fW6Bb6UMW*O>UDq~!3;mY`4 z(Yd~#$Fzn%V^6{Jl6`gyz`?5b^N8 z**B0{w;v1N>hr~8t!!I-rCFG1XvpP=?wSuA`{OP(ZtH@q@k(V!tZwJ7?2&9JAWyr9 z+_$DWP81?leC%`|X_dv7S^)&&hD7NV|AW<r0< zI*++EHv7M^MGXI93Fki1jO=}asou2?Kj*_YXg_KYA}9+Yp3r6xb+%^T-!s@Qe(Dc_P8%>^e=@MhWU=M8xhH6DMxDqjC7TCxBD|FFyHaOOnu%E7`6 z=>pyBUj8pG@z+Qq+es0Z0rSe1`jO38RSkaNKPb&GRDaEJ9pih6p)(3}<$~qk*!-$O zspiV}fH#Cgr_ahZ5;h7ji{EG>a8!$E*yt+B?bS|qyI+}X1`XRYC3bU!W6KGo&t_FK zNF`cu7s+3|2q~StEQ+j$^5I8ALR2HL2>Vy?X8W>xeA;79jgPCoCeDLN*r}KW!{Pgy|$^C~|^;0ikS2j9!r*OkbF#T{2=Sr3g2h zD4}M$s-CEkMU%6$rpTH|I$d(NS-`dUdb$ri$4gP3uryxM!%QEhA1pri{zSyqB0Gu< zoowPJ3JZJ0ctI|$Mrpmr+}i!$5;V!1RXa`)u2h7Onn^Hx;)*}jRll!StSnhy6p-0Q z7pT%I`gQ)vJFt2t}TQP|GGd}z;{;HHYieW_=3QpXGNY&24%^fI8 ztVv#Y`h0#)OrtgFVK(8DIErKSpq}*IzGk>K|FwV0k_7+qOiySQjSqfONZRs))8eHc zbGHI&MM;p)Z(vP9#sI|Kg6F{%!<(05n|^r?2Fjz_d6_V%?Dok(BTLTwJ(|V%N3I_( zUz=;ylap`RXo)&K&k~LeQ0LFR-gv6#X{;6ZE%3`9+6VXgMY2+Q1oW^P4M?qJ$FzqWncl(#opW}0&XG@N z^L$HK;eJn4J~8PNcE&O0ud=iOA$* z>pqu@90%p%)vVJ8%l)Hq!#d`avuxw0cEuO6<RGW=?Csdhw5+qrL=``ZgMYL`}L5I*{BF_l|(u}>P{z{c> zGjR-{_0nx4SpoO8_eKkc$m0A&$vd|8J!zS>U1eS>tkIu)kA3I`D}jiL6}`fXaW}2B zLkK>{^5GSjM+b z{MYUjkkeeRJP4F_j2b$Kpp)+}qlO6Y3Dt>n5e|CI{M})ZU zO>*EbpwfWbwug|T$i~>eXCmrMv2wGXLV0p*K z7zw$BGDxZ0**wGFVrC~HlZhZWAzOrC?rE~>%D9`C@ad;73kxd)#ZQ%j zb)JgHaRv*f$w^%`7zp$=k`>?HYq?OquCmcnJ0N~Bxar~hgC`UblV7g3t8iaUs-1P! zfj9gzi=+q@g_@+TNVg9$^JHSZyHJ%HprdoRUGINq(rfVJRZI5pPkZ5Kyk94fICxxQsG;LchQEpc>Jo4M6yvgBO_BwgVPfDkk> zwu8r=CZO;rji- z4{oA>ByeF(p~@8Z?A~!c)f9{G2vH@Ob69Wk`-5+Xf}BjQ;mMEk8s0PLz@K5?{NTj< zV9sZboTNv*)c<9pzD?1dBCthUHQD5gQl=DYh0)?jTy&~@`tiQAxC;*D;Vj6`d}h+& zTE|U-@0B?UK>+r(*msYG>PBa{ycn|+qr;h@?5x8d%WT}zn{x1eSTFy7^omL^# z35ry)NK)ZnDnC|oQXKJlM~!dUsbc7CEl{vG@OXMJ`}&EY?k5FBymR4bA!hr%<|*kD z%-p*W(z1I#xe&$=M^|KarVKhi9+hE~)o(RqoxJ+Ay6?0I;!oE~!1pShx2o?FyrS-6Tx?UDa3huGuE0=}p;CV*QwS1~domXLiSuD0S=ZlWi(ENRFZv zw2hTW5IwLt)0FD%KxEHcqeRv{`0;V(0VU#y;%3zeESK#)b*LYPJVfP%Gia+di8`Yu z{fo1Mj#Op3PXlqcduD7l?1dB1zO}v6Rwv2H+sKLlW4IEp+z>Q)jKSf(w6UI;$Hv~B znU_ygWRiuA)b48Iy7j{G9^g1_x-^|N9XtbHzxYbOF4}`^CkaVf%-{UO(SqQPrOT;CK#T)KAWvi0;hcyv9 zEea|lA3Kp77u2Tj@8|@mtBDU|NZdWDtBjyHZV6l-RB#^9A7Z<`x~d;xN*GjNslk7_$evJ@>r9N&6fYU0A~^FL9+%QwnWs;4D^foIJk zTM;!9n6|yIY1UqRQZ+01{f8`{+nTogZyZWJRe8U8dWegQ^~b5Vbkr3Ph58`EWgmQt z?(*&pmCpHo(lhGaq5LFf?pmHFBP-53d?vVDk4L0k{fd;Y=Z5W`JZH<{yV-#1z>CF3 z2`tq&@)g8vzVaWq1=tJJ_98@eZoZJ{?iSfuo|QM?bV53LC>-XqRXQu4lBUjNU771k z?IbG6Gun?^T9Y)qN;1vo)|Pc-UQAXK$L{ci#e4L~8s>Zs5;6$s*!c67zUAA(6a6OT z=RKESIq&b9J?RL#%ek|9sNi@|%2<0CsL<8hOIYW&Q^F84YBMFyfI$TRJBgMv(+w<0 z#eZ*{vmxb-b^ZO*xhUUfWcrBXh3B?#=%Lf(R_U$pNMl6&C`(wso-*~mbV*2-Z)e}SKpBvyz%WjNRHZX(W7~-O zL?u_Z``mp9u_jffu|m$}tXu&G;fVC+$IdtJ^Ey9^`7H*4!UV`=ggBJFrHrU&**1;7A^|1Nas4(wxA|k& z9RY$cKp56v_5a#c6ys*bqC;g}h$562I^l2cbbp$4^dihYES^+U*BjWLU=c@Fnc^9y z^uxI+GDzQVIaODgjR~lHcUEA({r88Ea&**bzmYRHQn>%;6toDnwn6fwQssn=XwDQA)~fIgXphJ+lWdc^irfak6Hb-MHgBv^VSj zn|*Q@$Wr7_Vttt=-D`f!H>;^S=gr~^it@PNRr$KMH}*W#QvQ4oYH_-bRB8Ox#%{#k zF?=DtniCZTxvk&F#7iNA^yaRt$tgCjW@M#AHHFO9qv{HUuG4LUuUU=P>2r=#! zlsT4rqZ(G{`4{Ic_C{)r4*k&j7V6a&7d`WDnPBG;Gv)Nc*RpBsyxzoxX3TGXC9cHqn{6_^o}7aaJY?kdqyP6pEoWb{$gEfTkn5fT6*h~eSno)oUGWJ(eFA#I zAn7U$w0wDW06pIa94-r3WL{oVmTXtS>k}vSv8TA74$spL6uz1H(9(^j_|%%Ke|CXs zrJ*JD%Xf=EBU!&orJ0Pg;d0wB$d@l=WLblQ_0)*#e|90|FL=UUg%J0bO5eY*U`^5C z+D%I0Y8YnWzy+pOe(>>JZUeirxB7N%!*;X8x0;@?)r#YaOlyU@`_n4)UtSNS97ojk z+GQ}>d%n|eN*0nr=bot03Pw;>7UOxx{tYyAvu=|s9+n%nZXdGxV5paVts85bM1{9@QwY#y-_mTDFcTt@~R_%bf5BL zelJ~u){&568js^V8p;(At@z~O6;;|(apXv53peDoGP+C#j>lrrzD^BOs z-{%*v!IO=Lat{512siUZPLd0&4w0`&hG?JKNQQ}NsC;`kG5RsTJKd<94PejDERrxV zWEbmNdnC1~^gbvukvEsB^Bg~Oqci$;=8G3FXS1gD!jaT#kGbv7(^ZW^`Rb7<6fr!? z5?;rGjNLs;5H;5g87UmIVW}`EC=t;1Pg!{aa1V+L+Uy5A73{qLSZTypA zO(L11$N=DVSWYz~w9w~dSa@IXY=RWvi4tW=E~8>e4Xm5S;2A)Kyni-)1S zk@V$N)vpg?RMZPZW`E6ynvufiA*6GiK!X4g|5|w?$>Y8(nC}pPlxFzs{j;W%HkP5b z%i9M}wQB2mrTDmO)v`)q@il1fewgd~Qa!$q3AdOvt}DXZy)XYYR-jLOt&kQYND*nn zikrJfecTiC=YdYuIXYg2=1a|n>#ukaG8OjR?diCdV=AW zrl9Lg9o})v#)L&(1POTok5bCg`pLG}U>Xjfdqo>dz5rPmmt{B?kq{EpU+TbltC0oa z5&K^k7=J7Ub7l$op~!1`9!yJi z4GT&nbn-JPwV?PbJEWeSe8V!SDvYiOVnPKq^7$Gx-pNk2*Wot$&{Zyr-iv2|k%No5|)zUI4Vtqa~ z5vN)E6^@H+YL(ffIFoo@)a73}r+u#({(3kCoeOdlEpw?>f>-Xvlw#aOhHj$>Ny>eW>Ewu*X@6tmlqaxTEQEER{FyL*J9>n)3(7sA%`9qQl*nhjKib%`UUAoB zV@p~@x;ZL^4BFTQqNIXYwU9K+F@DaxioSPI_4K)T!JsJQy4vF@h!}-M6~ZkOE|YSRNvxG!lyqmDG}b}LyCZojjVn7G1!Y{VqRh}hsk(ntD-4wZKVT-dk*X0k{=e}*8d zjrDpqSDLdU-HE8I|2w8pAzO|pG2(I~9;c(DtWbWZSzD}eSs*`SUcb1|uh#g)=T;@6 z>f@|9J}Yd%=bD9!&sarWnWx=u2{`qQBRDhlk7RSz=H@+G#wUf!csx5=qtc?D*-W-o zkFy~6ifI*v?GPRbG)lkb0sjDWiOfCZO~ASLoX@&1S!|*?0?r-TBmvId|1GUvmj*u5 ziG$MXoNV2%1o(E(k~+i#69`Gs*vpfb7}??JO~f&FyH*xZEWBjlre@`zzVpp_150Bx zaX}tDglxbgui z9*7Dz`}2LMZwfm+6C=h=!?@605RnIn=(eB)P2X7_8#OBgfA!i3nYt)PkfNyuW(x26 z9~sk0&+Cutz`q7r5Gx3t^(?h7RrKrWoP)ZNVAiKhdOV+%&OWdme9D5%y<|)PA(7kH z$%!$S?TtaIb+^O0{Pr3rx%Yuq@dCKy#W&99bYuP#CROc_BioO@&<^&7!e;dF%0ei~TlP^yeCo7&$ih10DZ)ajJf} zMW(OC4etoO#JbDvDibv{>>VyOM*Rvknmo{4{2WOf;ytJ*N0UL?+JGQdPlv8xAKM+1 zD9m`Pt2CYNXA>o0QThLDot+6d8e;ByHy&dH!bJP7qoJ-8LY@3~qTmOte|{>u{J6WF z$2oVhzY5jidOf_UPhpw&>6>9CLfW|12Qe4v6AOv&Ji#C;r%L&_n@au{;|Bkj$aTUW zx(B|0c^{4!Eub312^% zbzDT=w+Uzm^UHLNe$GPT$kU6U@2d}$c5dA@9Eg;#fnhA1{Cfska{JHE{oeY$bx3$U zAlkV#Cqv_n&x|L2Uhpgo3Y?zMMiI4Zr&w>5;JRue-XS{t=7>05hpwego7G9X)iSngEFjiP;VA3U3_)|nahJHrCFPu1zp_oJMZO8 z0xQe>vgq%xe!m4VJPCSVmR@D5&{G+(MN$o_xUHj9_}c-zyNMw958@chF7oYFrfVbO zSF%ZVK2IgAPVSKSrr06mZq{nz&8n#Trdk2*^v`w^5fSrWU3R-UaOyLjq!hIgVG%!L3h4XvCU9$cuNH z#Qm~W5Z&)mCnO`E=R1}XEc{Fw-Bd+v!CwVxyl1c+A(*#JA2ow)+t|hBz5Yoz?QME9|>HE+% zprOQA;q2SNhD1q&I=SbPMWjW9+Mn`$%&h%UcJ>EU?r)e_aaI`^(t`=k4B(4$3!DmI z6i*aE0+{@cfDh-=eLue8N-u$~cJcCz9MmS(b`LZuV`!+by1Rh4WLM}_*K;Y-6`GeC z9nqKogQvS$D#&u&-8Pt$J9sMlq z88Nrcscf2ykFF7Yuh;~m!ZOfSuFa5_-}!Ta>EzAfe4i)LoUT2D>5ecod+A3<2r=Fe znnwKM!lZ*na%Kw+vbH4=u^!;-Jj-Yl)Hq*Q4MjjDkl49Rcut-36Jz6StTQJqwFz~$ zINg3&y;)xDxJHSW*NPzyX|yYeFgp!Hw5eNXyR4)I%8l+`*C8D4J~NpVmvfEC?mdO( zk%!TEbL)bE+yLt^_1==EBQ#`FZ#9)uGY&uL1DQ=9(mr<=yxpB1(x5t|PqmF`h9eW< z@r-v;?cAvz9|$u!O`zW4D=p=?aDfWDTFHo!eaCozCq_Rmw5e@}4Z+emAE`R3^gdeS zo1K2}p}4KgfpatP7BUATQ)d#2a{j6}XspQ)9=ukFBo`)a(sFy?!}9A72n}z^&+VxT z_%GGG_mW4A{2!J4qqJd)3g4rpg3Mecd#4gp24fh7owm$ki*Rv3 zq+tT&0{eftKqZgo^Iu1<3tYMh(ncaV?IIt5aGWym$cB$i-(za2Ly; z>VU%C^KXy$)cxITU193-(@<$s8ebN_m_9#7;I+7UpgT!*V>7_Q86>ECxE0F#>;fHT z&j7M{0K_ACIXcoKuo-39BXgKX}GoJ#O?-;8we{m0w`EB z&A^~z8>E)0QZ48pk`S%0P8;UGXJo@N2lY~_37(0jJus*C(?n~C~z+{dmT6BV=bz87Wd z{;mvd&{TZ~=DM`$tDN{{u7&a6>Xhp@;pFJ7R-cu6k_0&#U#uI;(2O{;%;Aizt}tDr z9})Aqb6-%~i>bW#n;d}3scvy3WOY6x&0kvux6J^cnr1N*lz`S7r-~#18poFqEXQ4Z zhmLZzKa-y7^AFzae_`#CUq&F@xC!;x&d^p+Kn(ar+6G2>+Nq) zp)_RUCN`t~uh}+{8A5pyttvyzhlBsa)q4k0+5i9J*Ex=;tb-8ZWJPu)w|UGct0iTR z5+TYAIVn3kQIe6;Fe`g>WL1PxwlYe?PWJjeuS@s+eSd!bx$n+(U9a(cJ)e)~e7#;E zCaIIRKWkoWYq@=g>ebc(@_|NlfMn@V>voiXc0il(M-N*gh_QHq6@#qry|w8UTq==5 z2Yw}q-W$rz4HukgQS&_G{Mb*@N5-KQP24>wm!Xx&NKZM2aYV<;K=8Scd&D|0oPU-LbS0Y7 z?$;i+3z)pO6ICM5JM=3)Zu@lxX6$8ntcg><@IeIq>$_kV#GXsulq8{sc0zWFf)j1O z+@+%tHjWSI6FmJPj}ui}ZC%aq0;2sEplW?npD$PJjJV3Xzlq(}lH#2t5Z+lmPy$^$ z?jeDvCpmdL{<(jz+no`OU1RYgT~+=;Xh2h`5K~$~dcnIaB9Xb>qk2^*E(y&>2yH@$ z-$7TrbL7v3D~x~rg?U2)YMDs7f7Gf{8N7OHKO>o6xHd*afVvuy4`m@O@i#DWh#Box z#`RQmX7A`e`h1`??db66y~iRy1fwoYd|o*$RyL(&?Su>?z*O(G8B)~W@0OOk zS>`cGX(<|{Y8<*vxzudrqOQU7?<^7sJRln?#P^%kqLb7Q2e~mc{ZTT2x z#yQBCd!)WOsu@8F6um)F^}=Y;kjel|q|?q85YBvT4>Ow3tq3WBnOW72S ze+Qx+CL%zh={z>_P`_X0hWCKA^aT_&e0yY3hZAuafoy!y1-f^sxiJ-o6VKNK^8Kzq z%*M-0*+Np9&#W2MwIg|8<^ahx#z6rL)r;;oMKT_y%u|^u76ELvtq?Fq3y9{P-RHB| zh%0uNKL%nniDA0y%-;YKnIWbafZ`7BwZ1TZzXqy_PKx0d0$+cE)apm|^;2N{`?C?_ z%H)XJ&CMEqg}TH8s17$*G-WdpyNv8R8bLN}KLA!;S74=tTGP8>x$#F%;H__s`I=p` zLC5 z!>Hcqj~>_Ua9wSaGybRnOeDj7ZLXq(NjM~x%Y-ve*u+@9#1wl0($U3-!#>iTqVb*7fkD!+c z8m2(Fl5SQ8Rge3F(g2q2I6Zr5{^K8B{L1U{ZEdV`IlUB!6i!Jz&+~2#~HHYemU0AM+l- zV+)BhbLXqN!GUT{jRcF?2?*OtLRIH2a4;!{iE%7rk3F7Z=93?n{ge<<5~clxb|(-C zs8%w&-d!ys`T*T3l@}8of4OIl`7!X7KqC~UveQI>Uy+=4bW;gt{eEu8jd+{FY7JI2 zb^qA$E`2)qVW!=wpw?^+yk^Hl*}8FZ^Cw3)oVL>#sCfTS}Tt*g@LGK5eBa?!5nf)B^Dj=zxD z{X+~UCdaoQ>3JOd@$RQCuuin|F&{8Hug7&voAo_x5JM=XKXbP}l6rU$TG*GhQ`4~h zAorKvT|6c$9#CST$~9cjLVhMv;%-K*c+6A?*R#B&a&fF6_CoIe@kuc&WOoXz{GepQUA=FJYluNc&(b*e|Wz?SF0!lni^FY^%d$ z80|rV2_F~bAI0KdM7;$jgNyrh9^)KaJD+iPBhMa&q#8KgOZ>Zcxd<9`1Gd9A8B^4*p#&e)?Id2-xz}F@6 z5qt7`Tn`7b6Qw)HSU?{&E(1*?C^ZliW{%b&Ygdtp zveI;CGJykfwcr$=M^R}M1GE2dC_oPA)h@?PN$`>muC97ouol6ks32{k-Nqz5YWo7J zvkLRa((y8%E*)n* z^VEOtVp~B_RNJ4(Eg9K?;GYiND`si1YW?LQ12&*h6*(}4uF|z(EdO3uUOnt^O*KuW z+{rs{T+cujko_4snwsuOakw;-0A61iM(GDPHaprJN3J}rWDdgxmQ zB!B8;AeJ4TgrW;LX=y#JYL<7f^?H35#%&4J-#u&_%bN23|2%FAnK~Eqib)t<=sLip z?t^`XWWGgQ92@gBpOcYP6#6uh=wA;2v_nb9Q8W(Sw(5U)X51B}R0{u2N6#rxI(H%B zo;e{xGVj92MUQov7kfDq_d4DNlz!7| z69!%l)G+5n8G7~j1Y0r25ys~sA(Kx_lH=GtfB*e%LvG6HY%A}zI$1D41ynQ39aE>` zLLSYt^0CA=PyxF~z6nRD`09&6a2F0b=@>O4i{v6->ovc`$SVoufkH#!m>2wv?6uDb z6eN}OJZ_1%SxF72#C$ip|9Ac$@g<` z;p69!Loe_30;igVyIo)-w(piU0j0IHavaTAK^reiyz%=mrM2w+RkAW0)Ljw^?`iLm zn^nfj3doLk?`^Gh%90Z=GbGt%+%N9{KX|P3Fe``##_YHkp9sezIVd+!eg{xE6>vWJ za!(+?67=Z@nYNT@ zLGOu3>KwBxgfcUaXwaBcymE6$mRt?okDHj%QmxUo%Xmv$ zQ*TK{^-mm?ZW@CvKG{zo9_kfkx%k1;`o%}&4;)D|?<0mkeKe9 zKfcp!tVvw2pU7X&tw#!r4-x$Rr14#}$ zGTwvyj!AfOXl7X?Si;whct9Frm%Qznsgy(Ux)ZZd-S?aeIhQ(MlyDYQDo48IhPwx9hoUHPY0up5##3KVeWZ9dooRL9n1T319I5?Bh84N`F7H8A zR283E1Zm~iwQ)g-)g@@^*USM9nqOM8f(dpx!)4!X?@XW*u|cVD!hnV<2+mX<=U%ZF z_w$pDKQ$kL(&jh7NFiTh+L1pi@iwsOdH748Hi0*eQ*`*O>i#u9Gcj7!U{U+$E6PY< zzXdq%RyHgZkdeCFLc^DkffL=1?&3&k((hqB7sUUoNRgdp1;99L>@}0{%;pB~xGIR| zp%UnBb_X@W-A&$U&cn`w?5$arzs}6<8`q&R;i!QE;5YFb40k9@b@4WjnBT?9w8{Y9 zWLIEEVMLPwQutSE4@$S{f9frUe!#V(18JXb-)C4d=$72zIJd9r5PXmFhrVWz zl_5Dy7S0L4a&8`HL94cJF(fa|nlMw06n~34CDETg zg#QjdF;-1B{oVEfJH{iRIxZwLiXYE-Tw3&qB&7d(T<{xntB*QzQeJ8+wV`zhX zq#9%;vEq}P<8=}TgLk!@Qhj(3vfL>u@3uDXL^(zOIa{2*I5M91kH8;o)?W}5ig>I| zEjow1Z9MaqksJ$W2*~hm4Mj_0d8@M7F*j4Pw|wjC&SH@~WIB9Pi$#o<{eVIaQ#-V_ z@yrO+8J%+Y-IfJh0+Eh>F~1~8hn@@MI}0Jx3@CjkIK1L6t*l6~io#K1fOw{`i|SFb z<;pZCO7)~8G;xBpOy2`l8v{3H@5mAB$1eNb*EO&PGX{1>z(r|l;L7|gyIqKH7iL!e z;IQW=aOud|ncJ-pHEf13FBE~a3)KZlRpNFvY7pAm zT(Zy4;FN`6Q*aThfVGpcgovJ1_wKBgIsR7AsF#k$E*)i1sp}VW>pb?Z4#lE`(qn9K zVS(?rAM_W6(CX%<$#Y@%`Le!0qEot$6HWK?UW07bK4%&$aA`-4Ca|;b$juLK) zyribyTDsWJO_V7vkqTWIIj`?vdm_K`RPOU8%{>Dj=6ya`)3D=h2OO@1dvO8UQfpO9 z=wD}ja^OZnt)Jgo`)L3vB6$_b*)v~)&bmk-+?{8X)Uv0(UmSRsr`+1u#8-cau&N~- z{Aj;GAyb_a7)W%?QuxarGcG;pMmn4YrF{z=c?fSLoy*VP)2;#~m%~5jLgg5Vnu_1*wWQP#yOY&G>D1DcIND@<+#lQ+dc1M|-|MUkCpGHfQ!z;#CjX zV|*%dJ88+M{Ep>UHvh9;>$;WWrey76N4LhO*u8?I2a`@s3kr|PAP7gSIDX%4h1**w z#(Rm`Z=|P1&eZUh>JkiW#}{QiO^zTpYf>)`yFCTdngInsleBA_&e}G2Z2`l- ze$CV&pYFN?=T!S?^s;Lh96rc0d*&<|XJY#K=GbI0SIv3xV3Mgo%6|2GFzUWD~=h-tcT(GpAwgzwgw<8o9f4x1VM8G6H8h1S_J7AnzhnD2Pg*O)FoKM&P zLvQ=rgIK&k6rAvmCfyA1}KeF|sxPhCRd?}R;W zSFXOjFNVC0#Ak$^hhaaKtj$ez53Eya0WZ|Xd13FrLesEA`sFXWL6c=a4JWHOiP?~! zjUjn_!`_Zh>G;kEIBlF}?Jp{##>X+6TmdoL7ytdZ8dx-SkbUH906 zP&p_2w(9K<>|cGtPtkg!9Vfy3<;M0efxeU?uxoO0jyAg+Z=*b$^)H`Pu=ADIA=@&T2cNJ@ zVNCbxXWwHMX1fcnuN2+E^G^g3piv zcDFq&GbUouLEq%R9gHMO&|;TB1}A6RURj-q`HA^8BL=u4TwR)r&tWVw?jcZrCU}oq z$>qV%YU0RmO|itei$TY~Ra|1Eue)Vqd-qQlcL;fQ8l1{wLiZG>B(r?JS3?TZqdx}_ z;03KX+)UHG+cKJ7#J*;{(pb$(njQIO*In^T6K7%)NqKdIaPyyrtutQ)U6NdOg?e!z z9s`RB7(5~4q5B@fju<;N{ziJvTvP+d;62m`T{Kr#|Wcgye9;~)C0VtSPbOQ zziw8G0+MI5Lg2(TOkT`Vt0h_gE5G82HzPivzCpHb(J?4%tuc zpr@pLuUEG zGIac$9hl4E(I;fmi+=G+9KQY<6&)$41&0&u6tjX*+>J>E+JzmDpx(ue2*_?5T+H_n z=c6Sraak#dAxbx*>4OV}&1zJPqc^Tx_2TMqM*RtuO{od=OGy*$3*!ckn|=UVtEe(w zTVZnf{@yN2@yKi4kt8k{{S$4QE8!jrm+onRH}>8qih?rCe9kc|$W>xls$hZ&u`7Gdu((>S+`$lA|KMfP8 z7=+ygcXxO&+wZk1`tC8L>11Q_gcc_o%)%^bthIV_8kq4ukBQZoNW<2AYqPL-0|R{% zD{0`W#(a;!n5X~Ru+60{H=;g@ZX4Wgk85`~{Bu!(Up;xOwexsW5m7@XlJff~Y>g<5 zWXr8fu@HpV?g*%DDe3))q7ZXW%T5_DJ7O{7Kc_lUCVK)tOftMT0hju~K`Q97X9d^NZjR;eXqcHxuk&6t=uVfc{cU#OHovZshbD(gdUzkGDkR33XmUrw z4ENvsqw$KN_>2=l%Z99emj2CNrEFTqLHEYEkw?P}#!eF&cP0W%BkloT#PJ_06x^(w z5qCXEk9TW5mTtwqz9g ze^@0aR@(CI^S-m&4TPcTmd(%KD*M4mcxDno1^bN>w4g(b3-ppajT_`wX))?(5ACBV z+j_%X)uzTEKw&#rUIR@W+b9X|gN!O0n(_^=XY!cbLDf&MDD&uLREqlR)Rl35kBOx` zdFOG8GMBE&Z;H@pbNz$7D8r!3QW3cpw?Kd-BmvLv(~HVpIer`T&zo4evBKALV={p1 zB-TjEhvD6#2;GRS_XlpG!9&)oOZ#TdjSW9h2Uaw_BH1;d%kbt1fgP^*`Y__>{MA#x zn92U45+09ee~ozKd6b(72V?S`&1u$h8+jFQdmPN1U&aMO@kyu-V%56b*lJjsK(Bis z2z8BAJ?R+;}=(NvYtBnFy+s~48xfgaaB4?GX=coO)^j2_L z;l&hQkAMCK%cx7J?Pisbgo-X#J0*}l#!Ko`lBhUN{+u-;Kly2xjT^jVtP>}s!-DCN z@2?w^hwFM@M`Z-`&o$|kPqG(^X*sD!mdWC{dHQa%Vs7d2bM+#cO#0?*U zSiN5+?3%@J5jM zr7HT@(tAg|B=HCnR4^pCY1OyReO6Z*ctaf~tr@SsXh0Na-UY@gST%PEmEUHh3N^z7mRi(^f8#NXLGCW?`i z;Zfk4g;elRIuC;3cz8$}AzxSXf{6$?bL1ktM}>nO_6wxkNLGQFo0)Ugt)XV04z68A z6u%ARrqj@jXQv}7_bRV*1W3~Rhesc5*;IK~U-taky)~NtH$bn5BlJ@8>a-o1poOUDKec zEZkf$IM;F6+v!!SGIKgvon z$hdLqe()1z9%WSJP*{Q<0c~Red z*OcOQP4k<*e8jf290^t~7B-U)U;^X@4j2v3NpKIMgJWCog_E314#4&3sK0m3&E77b zo0$C=2=Usj63pjR+w=4ThZg%y2^x9YHZkE#nX;(yOpRUr$bT3Ln!pLvgAE%_D4>Dy zCm!m+7=lxB{r0_WIKM>d;>xAsk?Q%j`xZXR{Bx==q4IZaVW`oU`K;)(4yUnj(Aqo| zh?q^Wg5C1@T_}*NBnXhe9OdFWd-5n;D2UlMBDNMO;&N9@q!hM?299CwHc|?ui?RP7}sPpWLOm~Dle>_hl<&Z2w9fzYeOa<}wb`Mnoj9Sb@XHtb;x0uK*AKX~uE2+LX zwHOM(aVbezpYWWu_J}GcxT~GEav1ZuX%XYB6`RiQ!6OeJjzlcszX0-q!=QH^37 zsE91HK{f-~!qv>0Yf%lhJt9baHIh`c$ zNJ!!}Hd^=o^i7b0!5)dA`lPRco;(%M&%JfjV0Zf$PnvCq50GZHVAm?uixG{gu;Ut9 z3o4M5)55{oe#ikv=JXM7N1m$1XdPy0VO-Er`aeem@v}SpM!4&kf0XPfH8-Dxjkg*^ zlm1qS;?#ph(Pu=kjUFg65+d%WCC8s1%lc&;q=&DWuHff+ZZ(oT=2mv)%ko~r{f=H+ zfRlp`AG}gz&)xu-3Kt+DDUVTpiMe#eDY+1kJDNTC7#FAdmzD5n9j21is|Ad-4|!zE z)Ce`BcS?EB4!p4F*8Im?D=fj3LI0^Xi>eNsARA#qaG0T?tS~rL5Nn0145HG*+TxwZ z>_nvoBs@EUr~Vmhdh@A8?py$4i}}|ZOS`{-VWi57P-I~069MBN5aigjjIt}AC!IoT zWvkFoW!wGzjV!BAn@gl_U0SPym;kKP5<84t-Ql-aic|xd#JDPokL;V?-V0(X6Mu-H z-xonrl>RX6v*5k**+*Ry{6ny*25ZJvpWb$yZtWuVFFby^ey79uoP?3DRK$<{0(y7G z%vN2>>5w=UKx_Xw2$Y1dAR2QEw`SKp_eNyz7ocywD}LolAa^F{3w|k(q5i(+e|%{6 zg>5w=K402B8s50`81N=S+64z^ZY>DYBz>Bv-ks~JJrktFAL~3*bmGs(C*tt?Dha*x zsTvR2gVFTEsQz-hl1NbLc9#7TLpJY<9-QU0%znrG-5@OC&j|>3fa`(ULR`JS4s5$h zDd(#ED8U)TxytZ8F=*BP0y{F%P&fXfhgEFV>-#WI*UsUQlb?xBV|Hcg7ld%J&rY|z zpnqiHQ@OtE@w_m^Ml`2xuB`2o>IV?4IQA~v2P;K{6`x)(`9#@2)R^d2?WG=@1>Hc1Nyt4C&bJU(Xw=8jtNzT`$(EoYJj` z9o=odtU{5K8r7rAEtB{E+luD#lAs-*kQW5@i?mXF{80_4LD(-B%*N z2)yrXDBLom#oBGXzf0Y>eDcov>5HZ9XM}G)S8MxL`00*lZfXnBLt3a1uIECs8@z3t z{MGpCnxBq&yjSK`-nEYs_NzefllppR4nDp1q6!d6*7_E+^mYZcqJu%Lb&ku&S>McN zC`(BD227QMStP~D50`(BUzoh~?5wO>2dO)tF;@6hUMhP;&QK?_U?QL6;gJ^9Hkk$m zd3LDw7}LEg>;KG0Ju(hj$~&~CYY~^$raaUCJ>77rYsH*-X&z!F%zUqQa@H*HLa43I zY{`(7#na+lxqmZ+=>#&|pM(fxwEMBXOanIu4Z$xa7?GF!FSosUao@9R& zBDcQ$u|(I&gy5;|YRS;h$fHkouM0ePphMk%WQ6&bUr?S@vzOyNuEs-zd_jYJR)`=V z$dIaR1Py8T0Wd-bO8K1nx3v`HbvQCye;^}8%-?8|t2%BKAb}{wZ((`cjr*y~I=Y{j zpL%P%&TywLuO^&=u{llBOBOt72c({x4qsLAML0V_Sf>*f%R(jns~Bh>wuh4*9U^oZ z$~|Y(xPxg-gS|4b=|=Skvi0%@<6&-DB#tsvTc^w5KO>{etW3N(QkyURYn8<=v z-&UGqJ(1J^bxm<%wnmO#mpJNlEcPbO1c+}#1WJjuBXBK-INz&~k=jd2-U5nMnC<#N zi1HXb=by$t3G}1cFTGFNb)N@p0~frZm_D}wb3o3gM^dT`@FedNd|xb`%Tjj)DFyiQ zefVG@cpW9@7PVL@=d1i)t`$$d-2TtwC1`tw@kH%a&CE|hFOli>>g(81B{l_M#4kAwO`rAMP8_|fa!I4 zT>^i(GVsEC0y)=hW#y(d-Bc4zNq{fnXwmY%n4Za5wCa=ab|(3@9kuBpCY2$Yj%hl3iE+;vG za&5-$9dFaBx>RHiYu2&sVy?tvxeQ3$qqZmtw+F(K8BNc3p?{mf!LWdFZIs43r*V z?*5%+Pr)GcA;hewqsF6!sB;r$Z@msUc(&jQS&Qp%whhS z6EYokmN!Su%%wc{mH_&Q}G-!^0*(ZwIwFqE}M;JFD?A zc7nkdtYYbNSZk}rQVz8l5%Lckw4(W&BO4O<-f#j%uZpAgvr0>Avk_rsXVAAb3s(Jd zVy!3e(qyr*Fpkd0JijuUtL6g;MB=*A1y!4Yo8l0Y0zxk3pdavh%fc^fUHYY zsip5$nx<#0SI5?IY4crc54di;X&Kj!6KWIvU{?ysy6b@_2=d-m-Qim(g5~dfmBW+h z2e@TKef^Q7Q^+B1LLbG{OOo(TG%9CI(=`_vc}p%#_V zO}wcacM*%}Ydb{v`94@J7g)?cH^$7JcQZO(UB#whVpWyOf119R{OQ5XBL?Y#!kazmo#lHBHgrEjQ(af1{E*$uRp4HzW~n8WhFP- zH(jOzdY4WM27mR{9kOD8l!oe3?Z%Yz%#6kkIE)jLKp;?Q=0q+wxv#Xwk4Rt(UGH#W zju~mgXMjcjaKKtHcyKQIV zv!|yw!bTeC^2U@IcVmFRWV^WxRW@KRa#7WvA}dYXKB{@lJOX*>2sbe%6QLMJuPasw z#~4DcYc_LT#3^1M^H4rC|C|-KIsvNL8Q}Br@4wDX zCxo;LJvP3e9rw|UN9pKgT^!^)<_mPlfF)s1rmS^nsn-FDqUqNBxl8dK6T6L-i7L(p zzCXtO)y-WkbC)}$6DW19PAelDNe~XlwSR^B=C2L#NrSDW1>8(Bx zN;nfG(6x)nX4O^^`1kT}O3?hpAshqJ(H&0um+@Tp1c#j;v-2(g$Fu7gLf64_FMhS3 zUu&iuh3BB+-SKF0@wDUSvK#LD~mf!i%sYWWU~v){w+of zE8zMYG$mH;6lCUSYYqu()xUJX_r=hI^1R))N?mI+>FbLH5N%v&YV5R5v}&V=4Uhar zLalS1W;C!HrootbDJ)DA&B8osXsYgMtEVF)JVe3}XP#eQ1T}>c)B%Fres7*1idAW8w8)o`UYsO5zV#F<0pqMcv1v6-t&e;B^mSx>=nz4pdmDoq3K>hUw7!4r30}kj zKGn?f=sTQ$fQ0Ytz=`K3uHQTIZt3zbaiozOLB3ADvER6+wc8}<_?mSMQ4oohS$#5~ zwI<_<3zq(gzgc5SSYUV}73$`m8e-ROv1XO8JS#k!OT1dFMX!`dt!?a;IS?qe6*%PH zo|X0OAWa3!9c|nF8}QRIeMQfC{e2;LP+q8m4^R_viEZk4;V5xx{p1DFzWw{o+jHic z>l04A`_oqa`@N&>9@wD^H>OkLRkzMa`&9PB62exu#-Y++s{L{rmwn8|5VJb(b`sDcPcNV`E{B$wnq7CHt>qT^9%T z+fiO}F%P}V>*#)akcn>SAhg4Bb|(+gru8p&bvui#Ikt*rpb)b8*mZeB!^r!S@wuX#i^njXCwC z-#dg~=VtrfNcaaG(e4KCA)T}NpOeOnu5zwcqO+S@NIo+fq?@Ks1<|GSEd5N`_=Wf1fuUHwVK;j{3TPrWOm?O+la=R&4s6?95TtuTRi$ z*1N+~0hVYkh^9Y^pWVQn@$F*ULp@$5`{H)EClSf|eavO!8Zag^Gr4qR#>qeI*Ymn8 zJjt-6oPOk0HA~GPEprdJ>}DIQA`vcYITk+r^~gd;Y_esLC2xh}&q-FJq!E7Sezj9L zNwZjx4~aGQl?|##bK#J$s?^u8tPJB2jk>J$$FW4xe$9=2bz|Vi6}&IalANN`SHA z89sAA6s4b0n6~fTq4G9Y^U$IYHM#Cb{+1lCHreztx)n)C*nP0hGmioEtZKnAh zyElbbCJT&tAS{WHm+yf|hzyp6N-;#mrsY8<`lq+8xiS3%qJ}$K0EUp5Ar=L>zY9NH zZ2eOMEFE5aV&a8ig4F>(llj=;jv<8i2xi|LW$jruE}v8j$Gzg({wrUY_|YjyT8R_% z5Zo1r8YR^D8`756hXu@`O62=&2%4oukAXpu4>=HKLk8)4D@0d19;zE<$3N&>H;cfD zKtR0=&I(3Hy4h1x`|eQ#hMo$pQb|01tjSa`Wbj_(|1?2`ggWX{yzUHo>$RZ4AoJKq zfd0yb4~*z!SU0<&^j0WNL1;_Byz5(qzvLE3@BTZV-pyY0%sI~l^&S#1_gTwK+`_B- z|9{>JV{C}ai@G>aY)APSZ9X}mFYxF&gqdIk5Q?W5j&2q5sJG z_XP-QEe+dql77p3@|=pmWp(_w`hQ<&@6_o@S6K59h<4coDeW9!RL7A(MszS}7!sm^ zp-f~)yVsos-zru}Tf&Xi6?}lTE5I;9Ns_IDG2%Vc^EUJoi*NzIZ4wSwDF)J_1>j)N zh@z|4t!2&$!CqJD>kdechvOg}LQ?F46fUB71M6nZWo1O0q33iGij~?0FpM1gOmTP~ z2Ni4ZpIDgf*t#c*g5Z1Pagna9nQhi){AKw}jOB^F6^~G}^>wF-fxGY)z5hoOC5&h) zCjZgi&6Y<-@5p~N`}@2fiYEj@T`a-iy~aiQ2bNCRb<9p|3p&zk*huNH+^lMnHcEG> z@gk|(FXTgwh|g}A=f5xcJC6-lsaGdxm#p`1F<^)TQ~obKUy-R;cswG1s#>C_>_vCI41~rAsVg14u?#{=o>ck(C#9BIq)Ze3Q-MYOY93 zVeGoeYcpu59GQlS90^YTN+dp~5=DS#;Kpvs1dBS>jC#pLESs#u*b@t%66WA4V8wiF zVe2;$#^;5X$EWmGq4>NpjMtZ(v|0M~gN#)$7^*kKR{y{YuOo9gCxPgNjNKtzB(!2~ zE(grF&7~QBh%F62pb;m3DNfM(DJJJG5Xt@9*Jd+aC?|%Z>#M9|6$b?#wW^#bkNxe% z5v{K9eSiCT>UtR~jY9#%v=?3}kbll?+7}&pWKynPx%+>JfeGGpDdcEv z{#hx;)F_%={7Z_>@1xW!5zDz8IY5{S3!jsAlvC(rk700Gg{{i-u1=j#=~iG8`m7bP z(zL|1T6YY{!5As@7)G7V0}Pw-;F0-_%5EB$jaB2s#-tF@0uK5BHI<0+kIf`Zb8n~% z=v_$c%b5QM4j$MTTTC(Rw_xpg#>fRhxUw8fiWE27hZNbFpv#gGxtrqJ0^ZsSArgu)CN%$jc}!C$AQ&=XX080L2$;{~2g&9kl+! zrDqF6SuE7X!GSdJH)Dd%&*3Q~DluT(??O|;2KOedd1Xx)A4s5wj0U_Fjv*h(F*U@M zdU3v0!G=l$f)m6pdlhiNl_IH*zKb{d%4IKhq7? zKv_rDrc`O5^ohGaf$||w39c^^=NrCWQ8Z=@B^rN)Ve^$FtQz39(6cig#Pzw0MO!YxmlQ#auZ7MB3@t)E>RBEc5`f{~^=QKM zu3myG^=z$z4cXn^b|_jXSQ!(0Uf8b+6FzZrdmrUn3oOD-D276h%mG^zlY2gNaMr^`eeOQ&#fzb%`y% z3XbtFk67@&0gmo}+-e2`a#z6?^tcNLzx4~6`d_)~>!o>7Numku;Wn(8$vCKpVbA;X zW5ZeMs>y`7aP{S}PF;rg&v$jpd)5IxD1w;SYPBtne_~2z|$09@WNZw?7}#XI=VN=TnC; z(28*q#M|UIYU&NoXb@_D{-J~K=(15hQ;bAYSW33YYzaHok^~vZ9rS zBq6{pBXWo0rtpMfgW&>85-vOlM@y)1hFY8B#L#Up0}$+oahouXd_7<1FTN@=pmU?v zfX&3)qBgo1 zo1pRsBWU7tMlNdCTd$l!q1LvqP+J3ceM6IUXf*($c)b~5gNAAifnCXlQ$rX?QD`uR zH2^1isNsvaJ`$jjsb2*Sj*pTzE&8npMwpadNDu~qclCn(oT1hM5=hk8|xO1R85DLV5s%adu}23~ehmG)Ofe2)%PaZB8>SwbU|_ zv{ea+zd1ULNk}h-Xcr!H!N(BN$>U1Mz{+@Fcs5EHk!`@7zB06Nh!y#gz1>6r_5h5b z8L>_6l(N}`5C~g9A9!Usl?JB+tp1X1D>l90b7OWt+-HunBG!HgMKRn)U2r*vkaxdCIDy(vzApbNA=kNqs#%VrgYo$j~-h1n0vImg$^Qi zKYD=9ouq<^h?eDi6PV}oU)J77;?`e)EeC~L3hY5*c&H=MfcH`;m;ipp#*bP81r>LZ z09#S~WwFq~OOdndS7tRJ0EDo#vY~p3xsa&Q>Bd=dnPzcM$leY!j8?BO&Djs-Ih@=3 ze7;UXZ5?38Vgk_l?&hem7gnEwFA>5dTV7d$idp0E>;Fvezb!PKL1S9y#X(lOj0m-o zm`b;*#&{jMlKay17ePLHlbV}t zELdRFEMdh_t1Y8Qn^H)^fR=jl|4|Tg%LhMO$kjdnCJMv*+x{)6>GiHG{KP}m>S1-k z+YiaYGnP&IZ+EpkzWrrO+rWwP$ZAUpVb zg$c+i6!AVqYff@4Bay+OMkZ&FK{qkf0HMdAbQ&rPZf&O(DEB{>ubd`<@U`uiuiBi~ zCXk|bFnBbK1LEv{xbcHT6JO*1={r=4j5%<*meJ-t$h0qXe>+U#0XhJz&Iw`2*N!Xh zyEstIK|}rQ4Rk+>!b>6MxXE0C1Pw>Y@aqB4hbw?$|5?~;=(Xo6l01yB*YsT!#d|`(cy^sq3iVQw^XnY8)*fF1AK%&}qmfppl1MJae1slK0*_|{7c6)-S8zm2cEK*caa#D6;Mns!%d~q}C<015JdxG^hd37GM zm`3%(QmVjVg?I&JdU@oWr!#uipQf5kOkdt}V?F%z_vKOv(Ud;>}52*__mi|2rw_pVAYcO!lIS*&U0D zY6>%$nG?VV?lNF)TY*1u6rNFQs`|KzPsbD5dN|-p& zVWPys2jYOdjb@&Hdm=VNdejkYVl7xzHuww0fS^o92QsG7n9u~{4+jQg*>#0g9 zSjjDvYfv_|xn6@a==jO#dL756#`_s0coVevFqP!sJdV#M3thMXrOwLSlo8anj6k94 z@253Z(p3h{Jp-EYoK)FjffUlmigqk~$ES}{&0!MFL5rMl8M+mVA=Y<-^ZF#zJj z==$|%F$maqxh>(Z^8R%cW3knQaO%HgsX%brkfj;)M58^FgBUO^m9qk<0TU5v$n2=@ zmO{zxi^+T(MA4vF`LWP5kb1I8sTGlsgPDtHEhe1Y-kbz|0%GVgAnzAR;D%_!r^w%K zA%g(5TuIuU`Pv9e5@g74cWlZHGv=o3YlkG9S0fZc&+BrMC}n@TzNN8?6m2foU99=K zcG@4>45uog@0(zE^kb5RA^?D%$H=Xn$$;2X6^2N?zc|OgoK%OcK6tz)X#>9S;S?!XT`A&z|jrif7PZ+5!0F+R{1KN5Po(e~8?f5B@H1-aY^*P?CC z3UciYcC~ij@6~XokC?)C^)!)d*VP_k%C6dAqKyXQ3Gwsm@gy?Be=jGJmj9%Bp0??` zr_3kr<)$|A2y6PsK`7O_jnz{s5&A-;>`|kj<9R&k#rGGF4(~)n8iYykyN$ap8G;47 zbHvFDhpv~zBQ}?<-?MtUiJ@X;(TEyR56=i{oXbaW28oBs1LlX|cO+RB1)7LQza5^t z(~4FU6OfM8JGU|}J%&CI_nm?yRQK*RjtOF!&(J={-;wpX8Ie(a_wuDB{?})ot?<&| zKCEBHCR}?OL#C?`lJepj`Y|=`1_eg-)dF{i_9O*)*tS1oGKfa<1U#b5?nI$+u^i9- zMHi1Owj9O7uZroY0NqFtCqJJ)0AFZ|3d65Rr~^9Rk&;toc=jIKp=~TkfT0LFr@L+F zoOGYOO*}KZcme2S5LJX*NzVG>#EfI&7%c*@ zUIp@zcfsOh#QmP~|NJTiW4T02Pf|#xKogW&Y%F?Zc=_$HB!ms6WVB_jNQ?+go5Kii zqklA(;g|3jee@k$Dxy2>ISv?McpH?3{MU@4ixB<09VGYx&QCal5{%~3=6fk&)$lKb zYJ#nX@8%e6L_TDFe%fB1gg$cTLsywA4(L7z)P0eRF~(+Zwys#alqJ6;coX3YMn}g` zza!(6J1xD0_*kBZ7kG) z2_f|BP#bi(2TZ@|R{#ep!J=gFY!XvNmkguxXU1MfJojKjXvNt7fM*5XfxzC^xr0PG zHLD~8?bxtjubXf3VL5brAv6Pir;^Z_59-1ShQvA@nK}c%!M{7PU%f4GkrxCp=J-2} zJ`Y+^1sH^4uRi)7LoK?}ZW(VA=U(l|_@Tgx#Bq2%Kp94cfRe2&I+~EVHVkw_|Frg@ zl(+}{H6Tvxy$|z(KZZAG6U(Ll32X-ECR?be>%rr-$G^X>p>4k%ow_7KQ@?i7@AOAq z`v0%BFAu9}Z697L+0i)-oH&NsrO;?fsMJo1cF0s2QrlQ)RA?);QiRNngbEErMFUdV z9Lkh7p_J6o(SS&k>ZE@6bFY=*y?*a^eb@DU>#ur-`?=@oS$l7X_bKNf-gM z=E=WtvQgotfI%LKzLy-PZd05*KdfR>kjJZugdU0>h0JJp&}jI0l?FB2x76Q6KQ1n| zq|c!5aNyQ~B>K~nQIUEspU!*>oh^n-ZEt@dQfzAloxK!{d7C5p?ilXh zbe$)`pYpUO5)$WwlgZrfKW6+4gWa)p>HROpTf&X<$*qQN!JVW1_El zv+@lUXOuV+elae~;R10%zR6OQbNM`~-YTp@gA0?_X<{r6M7^AI(_8+@mu+4>5mDbj zP_G$md**!cUn+GHp8K<UnouKHGk4q8(8p!u$0n6KUlWHn&J&f zyMOx{aiQ$`_(Uz6m&LV?GStfZ>Kr$X+uNR<)k8=7h*%uYZ;K4&q8ZNBPamBBB#daK z=S-r!E(s6AFA4K(CFm%JzY0+SRcjT%ABB8hJ-Gi$_|3%=l z?|cr49Blv77SX$xK%CPtzGq}vR?62Y088`^so5&0NQr|IrJ7HmYj!~u(OZN9(j34W z?xd|45@F>T`SWZoSk&st61z(x3CDOwL~}fov~28(YY!<>qUo2^U79q&M-zn>A0~`G zRRaDmH!GTZe%bDqeBy87XAvT2m`9E;G8O+DFGa2P`l5d6nqpRmI#HA?XX1G3y#{h< zy;;`sC7bl;8--#-{l2wiC48w%Ryg;3q|{|ZM6?YlGP-CitTz4>NyVEdN~vy8%&M~$ z07Op>a$sixD7a5UXT{jy&=?1a%_XKof6VRGvWY6LJ*`OjxM-U#x8ybT99P<=Aqfi{ zkSzsGW^iQ31T*90zcb20a|j74h^b7RFsucHYKFDD#O8dkISg^V$)HO zz5oy-Jrb7dL4U*pB)PXnb>_}R`K?0WM#+6A`{4Bshei)+UgqDQy^U5ev*Hw)U z&lv&H=PmLh)e5w1uGV>_-@SL({;C!NXMlVrz@I((;-{|r{`9cSHO8->*a7#b2FE33 z*%0V6I@@p61y&me*h$bs#-#VTK06x_vDWU^D3F#Dup+U`c>{{cr$mDbG7cp6A@b_+ z9^GraGyAEIo4U)r<-Y^Koo^LEVmdu#J(R;g(RHm6O6_(BUiG@qi!CbXdVRs`SXo_M zY$B?yTr>^*4+q)!-}Y{u>DcvZTHF-f_e&H<$_H^@QF4@8B7MG3pW(^s#f(zfR+ zcgEkn7vQ&x+>nUFO|8JvUfT+fPdnnLF}sov-`8X?#GbD3#e4{sbYsX&qb$C@Z=Xf^ zfYIBw5(tn*fc}gkzD@A*qOnzMQU89~6&1p*13~0eH!%{?>oJ3Pj*SYHz_K*kcMr^4 zeN*RXgZ~HF1rixOu3EWUdF8K^OK6B~22VT@aFO;vi zX;AU+K8I`r9?scPvT1QNy1FLfHYd#mGW@KPJ9j~I?<3II*;)`w`S^F`wer=qfD-)s*#8c(mjISRSr zj}n(mmk2ASICS-qz{7Dy7CXI~Z-TK?g^viY#d(8Wm0+2FwTDun>9wPY7ONk?Bvnfy zEzbu;*{U^({xh{@{f$n2>0Re6KL@xLc<(@Q`+l6tt*l(;OCZLK`F_ddGj0x8Vmsq zY3+8miJg1l?t;;Scq>*uH`0U^0z<-weVcX7d=nwPBJmwRMA<&3*oDIo9(}^bDL@3HD?kG@#Qld6hH|cF2n$6QJZDG_DjuT?@HGOyvCCZ$_Ui zG1T2WyaN_+DMaauRz_!!nT9CO_mAbKhb7~6h|ebbgUf<|T?@vUxlF`NJ|BSans_x#cuSV_BN%a*J2WH>4kP1W1O9m^0y2k9T*N?;%YrZsgAAvXF zp^;Zle7@>3;nvYqm8QZ<%>i^^pZ77RlO@k^f8A{jE^r!hv!c9mYa#n`s*M4 zGP_()ett3+C1rxx4+f3B96<@rJUeR=FvwWjD`#D5Bse87-XjG2`HsZUSx5J{GO4S_ ze6PpWZ-ZdL#wX+$HK?KrmPpWDhN~sJt@fvPm-|N{_a}K+!u~k|D4VQTKKJ{Rs=M5! zSFU4nXmw{`k$vDd=hBT;{#r8ukl;-o^a*LJ)E0F&WsgV>;6tCQEl=$FWZGLIH`V4# zZfD#3^viweu$Bs_CB!d{wvvAnE=Bd!&5+uxY-$kqmuz3lk=i(wSZQlXE-b4#ay&N; za#F$7i^i|?93=OBghEP7l5*<&EyGp0sCt0+b&jupQ`yUALQ1DnI(+Iv@P3L6QIi^L zC|6Yi2LXe7bTd}m9VIzt;+Qe%f6p=qylfO$1eQR5M&I(_V$1p$#=RHjxR~bdq(mof z4T12T(3R(5@^xshbyxd)n^xiG0!i&aXR^op28nGE8x%wA`IKnp!swvGW8*_h7j=GX zY~3i)SFaLkT9j&PlYEQBbvg`JueSvp{<^w@AJTqYshuxPrS;?=)ie1m^hjLo*M}n< zM|E87)c5(;Ui(%KHi-w45Fax|GQJ!#((5lb30i%+d*1tKHXMn&d8XH9#_s_g#m+mr z-7Ek62Fs~k7>kcXc9}k#*lU}r?)zG<^VdDq!;2=1zibtIl$?9l*sA+)Y5mtezt1lm zVUI``BaiI~slOpb^|Vg*I{KLlwAcZ+{#L)3R3C{6fwnxSdQutCS6aa<5*Gmvt&K9@enRR>B1va(t38tN(Lv%s z(+XTgT}SxmAY=QLn~2L~Z*bh{5+wCti-<`ZEqTN-k`dk@!lDtGjQrWA3HnHu^bwFal~oC!&D-L4>=@S;7G$hBI|WTKS3q1 zl7nTKFBU%3h%d+Vl;DPk8bVJZw&?T^rtd%m$J*0xy-9Hbk0J7I#GeE1UBg})Mdgyr zR|F#iqtWk@Rbo|ge&K!2gdAs9T38|+e3~zn&_pU1IMW@^)UrLZUMqy;OXLwx#*Kxk zqPJLi!Lq}+%)naa&VP&mhd?i(9f>=0Nk>jpKH>-4+DJi1KZS_v21Q%QMwlnhEVTdm zq$!0x3E(dytH}}vu z!vu5kjc9HbpV5zoPy*^4v^b1#IOWoZ12%#ZK0x#G4`l zW`IB>!xga#!Xegl`sa}vrG9fzMmb2MIW&=Q1W((2U@`lQBi##nGO@l)7Q#e?S+kJg z1l@rYEsGqVM%}v>&TQ*Ov5A+++(}i(5jp_R(H|S%+0ThvxbI|H(084~UF^9-(MySc z@hbnz{1T{r<}q8oq1aqJppAol7oY?CQp_wv$8D(fm#Kc2zA2$(Z`M!xfFsO~7|g`> zM)2hwHCQ!3jZ(d=&hhwfCoo$n<}_8|nC1Tcst{<&gGxm+lG|Bb^Ig>tXJ!w*pEU&d zm-$;TPx}XT*U&8-{q%!6rnX}?&qwF~-~JAUJBka8w0P5z>kpTF*GQ2YsUoReudtm+ zQFssoi9#X#|N2|BD2lNG$_LFUL5J}eR09^N{|)*7n{o4gcGt}!4?qzf*wx?PFBX963+D8_?xpPfxx#vJ{BCQuyB8mlK_E8A$XTm0!4 z$n)3*RM~&32(=SxYyLnyrU5U3%(XN)6C;^(u>-;U$%?XV6B`)OG-%Z(P~~4oY*`sO zpzSo2ve^X-yu~o1la(T`4>f82%I8d@7o64rG^g!Hxmo@0hcU3aNWqmV)^9Nyzti@e z)kQ`l+pwU7gdn6oQh>;crxG~K!x~`@I550x0w*3#Jg+(HSE%dQ!8G@lnE+pVhkKX> z!F;xt41!`pzVt+J=+HzV53^=n%}B=KiT*%Zf|u+rzi9k`ks95L-4$twN6~!TM18}Q zNOrqo$hG6l2;-DTeAM{CM$9;FlNP*c9-Gs#Uid8t_RTM#bUGC8!tG5zC(taeltVf2 zOO#o+Mrs(!7S3dY#UzOX-{pq87DFlri7)8}!o#ycdcvI{|I+>?gni*>)IdsikwKr0 zbR9qOUXt*h1jJ4P0-pFm#BL5+u6&+2`0ovD6#I(sV~4}F9GgMxB=xkYJOZ*x=tE$; z0oWXc0XH+8Yg|SXU{w4%gmy?_5#IN~2$LIFLPxrm(*PHxC!}zpSQinwKMk@OHgjWA z2FpaLgeqI%S`M>r45n@e`9JaqHtB)XTPq}*)w(K_+@&)b99=d-G5O7MFo33lhvC>& z1YDRD>LLV$ehtPEOX#4C|KrXhbwrJJN6pw+q8Jj@4<9|iV?OX343edu$syO-K>)#9 zSIDw4fIQ`g<+>^l(wN;3kI4-%KYLEqE@rx#=s~VBjnfX_%y? zfUiVgoh2>`B^DDife86i&=Ts3?>qqZ=q@S zT@*~N{YBl(1A zxkVZGm-g+Ax2JJ&oeQ>XE_nSmAt#%WEwd=8kTby`U5d%Jl?awG!_uW<2lfvQ!OX&9 zmCWo_YzV`fdBK4kxcy{ZiYI2S5nUYyl`08_lZU%XrVlF@9oc)R#3=TD(g zTS31O+T4rPvIenn0Iyl+zk(v<4SO_R#|f@N2ckgnqwW5TPhf11kUXjyGn(ga8k}O5 z;u*n&MN6+ma#^*d7p_~W;ykV7f-bYn0UHft1L~`=q_NQu?8*-Jd{-;IUmxx@}e0BV}j82K@64bd2t9gA}a;D ztC!|12i>{Of)2#y+Z?!2hc`6v>0Qmx5(4IvCd^x`cB$`2aq5p31B++ziCp>T=+X{wqnPBZYN~Y%Ofm%B=F$h{Ga*RFYcfdg=AjYo&`h z-P3zTdX*a`NLnXltNraD{64zmHAh*;ZVI@SDTPdI{4V; z%fQweL8OUpW$Qvk)md3HADZi)#VuUJSQ@SyeNqj+uH|fcxe-4<0x*IW@Zfd!yl2Uo z9q=*6j5q%zyg7i{M&EY@k=4|^OK{At4_3dkazDbM8zKOXz~^b5nXKyRC==bgILurB zBnWQF>>5jxIBl8gvnz(>9d20^HUTI1!Ox?>t9K90t4#2MTh^_QpEIK<1x?TiQQSWX0j?!}Rw3E=X&M+#T$wry$n)UGxmSAY>_7UZK0)su z!r`eKkS(UGvV`*H^FH(OtBYWUr_SeroyxT=njT9>9p`L;ui+$*+F~G$wz+S)OGdW?3{aS=4*i3{(r|)=L zw@_B~vUS{HMjWE&69_}>LHtcCvV=!1XJi@>7Qr)VCX&bzrd+GKuCUMduyvdr3yiw8eYk zUeAqgFB5H6fSlm@XvFLirX&Kja?d#R*Ngd#?_{QYB`U)g4~LWT+8$g(Um{3nrMy3a zRpMRIp*wXM)9yG%)W!G;%ZDd*uPgm;wlhZFae&Ny&ayd3vB*S7 zK1o!*UpQUKa^HrfA9Gp0{%c7@xLt5lbK}!PdYliop;r!u(v5S`PsPY~8*piFmXV94Pf+llzdywu-bhm zqo=2@625ipD;2DH#pH;hg=n*97E2AbX4!EXZEV(g&afyokPJLV34}p@e1!>@ZW^?H zr}YdYxye7_y@byL?$`6<^eS32)#2-W@!XmRsMJ!R85OOm>UVBx7FIkpU}VKrHs}|n<6Hjp#9+S2<5S@f>i$~I z-1u|rqG-nZ%+TTUpy^HnyZv6e6+~Ok%V7*<^a#ST8G7bJX`%{bLk zj1$c+ITCwXj)tCO+|{H7==hK1R1NldUKgxC&cm+TXB;X3y$RV=V5PiyQ>Nw-|FSwq zwQvLcOc^E8M?Tqr>gLWG@Ak%e-PMJJ90(u_F1*wN5!6^knvBVIuBux$vh;Z9$@9$Q zEFu-rlL!;HCn1+B@}dg$i7vr2KipeDX8uWV+_o?TheS_a5d}0JGX74|ZIU8@_An@& zv285P8}*2{Fr-OUgPp+O=xZlTDRVnqQF6^qS^cWLKe@+(ULMlnI7j*Y#aVL+t{$%s zkO{aYj-X+FczEc_3Z2T5zN{M&_rr)cfG1`Gfn0O%9po9AE~eF4H;&y8yP?Ejrq6^S zI)6#GzDLPbP=+(b=E|FuFd&Qc5$}(ujh}xYk}Wd$swh;lS0hlV82ANPI5OY9JFB6v zn3tY-WvWNZB9DGyAbZwNkZgKfyuFo4A%~*4=O3OT4*%EPd-noXn9OJtj9!0izIq?x zC8$7p9xRpKnH6dui})o`2c_c_s?p`DM5tEm~HF+ba}dQ zJFPH*ybuU(1+g4`>RIyZLl*H1R2$lZdahMNtn}YSrs){OH`tCaW43scxbLkw@swMf zMv-Z*9sx{$>e~<>?*3ZVN4eovdjfdN?9Mx6n!18I*kg5c>6)*xw@l^Q9}Y*`pCL=w zNX2DT{hn3+#8o1&C8;M9nDp;XvWp5uXIV2O!sK+e^VC-NJ_D($>=l}QI60a*Gd-(H zUjK995^>{@Z-2&KHjVXm`e6Kgl@r3R$-smC&pk^PPLJBXFefv0f!TDov`PofUIfzY zj0hNI=t__I=4N1^k?_j7x3Re6+x626Ue%v_hH6R0wVIkI{FZJsZP|6Q%gSQmoV3}3 G-TwoC&8&+6 literal 0 HcmV?d00001 diff --git a/frontend/src/formatDate.ts b/frontend/src/formatDate.ts new file mode 100644 index 0000000..d791066 --- /dev/null +++ b/frontend/src/formatDate.ts @@ -0,0 +1,7 @@ + +import { formatRelative, parseISO } from 'date-fns' + +export default function formatDate(dateStr:string) { + return formatRelative(parseISO(dateStr), new Date()) +} + diff --git a/frontend/src/global.d.ts b/frontend/src/global.d.ts new file mode 100644 index 0000000..f4e0cc5 --- /dev/null +++ b/frontend/src/global.d.ts @@ -0,0 +1 @@ +declare module 'react-loading-overlay' \ No newline at end of file diff --git a/frontend/src/history.ts b/frontend/src/history.ts new file mode 100644 index 0000000..2724b5b --- /dev/null +++ b/frontend/src/history.ts @@ -0,0 +1,2 @@ +import { createBrowserHistory } from "history"; +export default createBrowserHistory(); diff --git a/frontend/src/index.css b/frontend/src/index.css new file mode 100644 index 0000000..ec2585e --- /dev/null +++ b/frontend/src/index.css @@ -0,0 +1,13 @@ +body { + margin: 0; + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', + 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', + sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +code { + font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', + monospace; +} diff --git a/frontend/src/index.tsx b/frontend/src/index.tsx new file mode 100644 index 0000000..ef2edf8 --- /dev/null +++ b/frontend/src/index.tsx @@ -0,0 +1,17 @@ +import React from 'react'; +import ReactDOM from 'react-dom'; +import './index.css'; +import App from './App'; +import reportWebVitals from './reportWebVitals'; + +ReactDOM.render( + + + , + document.getElementById('root') +); + +// If you want to start measuring performance in your app, pass a function +// to log results (for example: reportWebVitals(console.log)) +// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals +reportWebVitals(); diff --git a/frontend/src/logo.svg b/frontend/src/logo.svg new file mode 100644 index 0000000..9dfc1c0 --- /dev/null +++ b/frontend/src/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/frontend/src/pages/Home.tsx b/frontend/src/pages/Home.tsx new file mode 100644 index 0000000..f6a3c94 --- /dev/null +++ b/frontend/src/pages/Home.tsx @@ -0,0 +1,29 @@ + + +import { Breadcrumbs, Link } from '@material-ui/core' +import React from 'react' +import { Redirect } from 'react-router-dom' +import { getToken, isLoggedIn } from '../auth' +import ProjectList from './projects/ProjectList' + +interface Props { +} + +export default function Home(props:Props) { + + if(!isLoggedIn()) { + return + } + + return
+ {/*
Logged in as {getToken().authEmail} with token {getToken().auth}
*/} + + + Projects + + +

Projects

+ +
+} + diff --git a/frontend/src/pages/Login.tsx b/frontend/src/pages/Login.tsx new file mode 100644 index 0000000..8340c0c --- /dev/null +++ b/frontend/src/pages/Login.tsx @@ -0,0 +1,190 @@ +import React, { Component } from 'react'; +import elixir_login_button from '../elixir_logo.png'; + +import Grid from '@material-ui/core/Grid'; +import ElixirAuthService from '../ElixirAuthService'; + +import { AuthConsumer } from '../auth-context'; + +import history from "../history"; +import { createStyles, Theme, Typography, WithStyles } from '@material-ui/core'; +import Link from '@material-ui/core/Link'; + +import PropTypes from 'prop-types'; +import { withStyles } from '@material-ui/core/styles'; + + +const AAP_URL = process.env.REACT_APP_AAPURL; + +const elixirRegisterationLink = "https://elixir-europe.org/register"; + +const elixirLoginContact = aai-contact@elixir-europe.org; + +const styles = (theme:Theme) => createStyles({ + linkColor: { + color: '#0000EE', + '&:visted': { + color: '#551A8B' + } + }, + span: { + fontWeight: 'bold', + }, + button: { + margin: theme.spacing(1), + color: '#333', + background: 'linear-gradient(to bottom, #E7F7F9 50%, #D3EFF3 100%)', + borderRadius: 4, + border: '1px solid #ccc', + fontWeight: 'bold', + textShadow: '0 1px 0 #fff', + width: 120, + height: 40, + }, +}) + +interface Props extends WithStyles { + isAuthenticated:boolean + onAuthenticate:(token:string)=>void + onLogout:()=>void +} + +class Login extends Component { + + ElixirAuthService:ElixirAuthService + + constructor(props:Props) { + super(props); + + this.ElixirAuthService = new ElixirAuthService(); + + // Check if token is still valid --> Check if working properly! + // if (this.ElixirAuthService.isTokenExpired(this.token)) { + // TODO: Add method to refresh token + // console.log("** Need to refresh token") + // } else { + // console.log("** Token is still valid") + // Set Auth Context + // this.props.onAuthenticate(this.ElixirAuthService.getToken()); + + // Redirect to Home page if token is still valid + // history.push("/"); + // } + // this.handleLogin = this.handleLogin.bind(this); + } + + + handleLogin = (event:any) => { + this.ElixirAuthService.login(); + + if (!this.messageIsAcceptable(event)) { + return; + } + + // Store JWT in local storage + const token = event.data; + this.ElixirAuthService.setToken(token); + + // Set Auth Context + this.props.onAuthenticate(token); + + // Close pop-up login window after token is received + if (event.source) { + ((window as any).event!.source).close(); + } + + // Redirect back to page that required a login + let referrer; + if (history.location.state && (history.location.state as any).from) { + referrer = `${process.env.PUBLIC_URL}` + (history.location.state as any).from; + } + + if (referrer) { + // history.push(referrer) + history.replace(`${process.env.PUBLIC_URL}` + (history.location.state as any).from, { + from: (history.location.state as any).from, + id: (history.location.state as any).id, + answer: (history.location.state as any).answer + }) + } else { + history.back() + } + } + + componentDidMount() { + window.addEventListener("message", this.handleLogin); + } + + componentWillUnmount() { + window.removeEventListener('message', this.handleLogin); + } + + /** + * Check if the message is coming from the same domain we use to generate + * the SSO URL, otherwise it's iffy and shouldn't trust it. + */ + messageIsAcceptable(event:any) { + return event.origin === AAP_URL; + } + + render() { + const { classes } = this.props; + + return ( + + + + Single Sign On using your ELIXIR identity! + + + + + + + + + + You can use the ELIXIR identity service and other ELIXIR services with the freely available + ELIXIR identity, which integrates with Google, ORCID and most academic institutions. + + Obtain your ELIXIR identity here. + + + + + + If you have problems logging in please contact {elixirLoginContact}. + + + + ) + } +} + +// Login.propTypes = { +// classes: PropTypes.object.isRequired, +// }; + +let LoginWithStyles = withStyles(styles)(Login); + +export default () => ( + + {(context) => ( + + )} + +) + diff --git a/frontend/src/pages/ProjectList.tsx b/frontend/src/pages/ProjectList.tsx new file mode 100644 index 0000000..6033956 --- /dev/null +++ b/frontend/src/pages/ProjectList.tsx @@ -0,0 +1,35 @@ + +import React from "react"; +import { useState, useEffect } from "react"; +import Project from "../dto/Project"; + +export interface Props { +} + +export interface State { + projects:Project[] +} + +export default class ProjectList extends React.Component { + + constructor(props:Props) { + + super(props) + + this.state = { + projects: [] + } + + this.fetchProjects() + + } + + render() { + return
+ } + + async fetchProjects() { + + + } +} diff --git a/frontend/src/pages/entities/EntityList.tsx b/frontend/src/pages/entities/EntityList.tsx new file mode 100644 index 0000000..e7c394c --- /dev/null +++ b/frontend/src/pages/entities/EntityList.tsx @@ -0,0 +1,235 @@ + +import { Button, CircularProgress, createStyles, darken, Input, InputAdornment, lighten, makeStyles, Paper, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, TextField, Theme, WithStyles, withStyles } from "@material-ui/core"; +import SearchIcon from '@material-ui/icons/Search'; +import React, { ChangeEvent, Fragment } from "react"; +import { useState, useEffect } from "react"; +import { getAuthHeaders, getToken, isLoggedIn } from "../../auth"; +import Entity from "../../dto/Entity"; +import { Link, Redirect } from 'react-router-dom' +import DataTable from "react-data-table-component"; +import Paginated from "../../dto/Paginated"; +import MappingStatusBox from "../../components/MappingStatusBox"; +import EntityStatusBox from "../../components/EntityStatusBox"; + +const styles = (theme:Theme) => createStyles({ + tableRow: { + "&": { + cursor: 'pointer' + }, + "&:hover": { + backgroundColor: lighten(theme.palette.primary.light, 0.85) + } + } +}) + +interface Props extends WithStyles { + projectId:string + contextId:string +} + +interface State { + page:number + size:number + sortColumn:string + sortDirection:'asc'|'desc' + filter:string + loading:boolean + entities:Paginated|null + goToEntity:Entity|null +} + +class EntityList extends React.Component { + + constructor(props:Props) { + + super(props) + + this.state = { + page: 0, + size: 20, + sortColumn: '', + sortDirection: 'asc', + filter: '', + loading:true, + entities: null, + goToEntity: null + } + + + } + + componentDidMount() { + this.fetchEntities() + } + + columns: any[] = [ + { + name: 'Name', + selector: 'name', + sortable: true + }, + { + name: 'Mapping Status', + selector: 'mappingStatus', + sortable: true, + cell: (entity:Entity) => + }, + { + name: 'Mapping Term', + selector: 'mapping', + sortable: true, + cell: (entity:Entity) => renderEntityMappingTerm(entity) + }, + { + name: 'Mapping Label', + selector: 'mapping', + sortable: true, + cell: (entity:Entity) => renderEntityMappingLabel(entity) + }, + { + name: 'Source', + selector: 'source', + sortable: true, + ignoreRowClick: true, + cell: (entity:Entity) => {entity.source.name} + }, + // { + // name: 'Mapping Suggestions', + // selector: 'mappingSuggestions', + // sortable: true + // }, + // { + // name: 'Mapping', + // selector: 'mapping', + // sortable: true + // }, + // { + // // created + // } + ] + + render() { + + let { entities, goToEntity } = this.state + let { classes, projectId } = this.props + + // if(entities === null) { + // return + // } + + if(goToEntity !== null) { + return + } + + return + } onChange={this.onFilter} /> + } + /> + + } + + async fetchEntities() { + + let { projectId, contextId } = this.props + + let { page, size, sortColumn, sortDirection, filter } = this.state + + await this.setState(prevState => ({ ...prevState, loading: true })) + + let res = await fetch(`${process.env.REACT_APP_APIURL}/v1/projects/${projectId}/entities?${ + new URLSearchParams({ + context: contextId, + page: page.toString(), + size: size.toString(), + ...(sortColumn ? { sort: sortColumn + ',' + sortDirection } : {}), + filter: filter + }) + }`, { + headers: { ...getAuthHeaders() } + }) + + let entities:Paginated = await res.json() + + this.setState(prevState => ({ ...prevState, entities, loading: false })) + } + + onClickEntity = async (entity:Entity) => { + this.setState(prevState => ({ ...prevState, goToEntity: entity })) + } + + onChangePage = async (page:number) => { + await this.setState(prevState => ({ ...prevState, page: page-1 })) + this.fetchEntities() + } + + onChangeRowsPerPage = async (rowsPerPage:number) => { + await this.setState(prevState => ({ ...prevState, size: rowsPerPage })) + this.fetchEntities() + } + + onSort = async (column: any, sortDirection:'asc'|'desc') => { + await this.setState(prevState => ({ ...prevState, sortColumn: column.selector, sortDirection })) + this.fetchEntities() + } + + onFilter = async (e:ChangeEvent) => { + await this.setState(prevState => ({ ...prevState, filter: e.target.value })) + this.fetchEntities() + } + + // onCreateEntity = async (entity:Entity) => { + + // let res = await fetch(process.env.REACT_APP_APIURL + '/v1/entities', { + // method: 'POST', + // headers: { ...getAuthHeaders(), 'content-type': 'application/json' }, + // body: JSON.stringify(entity) + // }) + + // if(res.status === 201) { + // this.fetchEntities() + // } else { + // console.log('Error creating entities: ' + res.statusText) + // } + // } +} + +export default withStyles(styles)(EntityList) + + +function renderEntityMappingTerm(entity:Entity) { + + let { mapping } = entity + + if(!mapping) + return '' + + return mapping.ontologyTerms.map(term =>
{term.curie}
) +} + +function renderEntityMappingLabel(entity:Entity) { + + let { mapping } = entity + + if(!mapping) + return '' + + return mapping.ontologyTerms.map(term =>
{term.label}
) +} + diff --git a/frontend/src/pages/entities/EntityPage.tsx b/frontend/src/pages/entities/EntityPage.tsx new file mode 100644 index 0000000..8d8d7ad --- /dev/null +++ b/frontend/src/pages/entities/EntityPage.tsx @@ -0,0 +1,167 @@ + +import { Box, Breadcrumbs, Button, CircularProgress, Grid, Link, Paper, TextField, Typography } from "@material-ui/core"; +import { Search, Add } from '@material-ui/icons' +import React from "react"; +import { Redirect } from "react-router-dom"; +import { post, get, put } from "../../api"; +import { getAuthHeaders, isLoggedIn } from "../../auth"; +import AuditTrail from "../../components/AuditTrail"; +import EntityStatusBox from "../../components/EntityStatusBox"; +import MappingStatusBox from "../../components/MappingStatusBox"; +import Entity from "../../dto/Entity"; +import Mapping, { CreateMapping, MappingStatus } from "../../dto/Mapping"; +import MappingSuggestion from "../../dto/MappingSuggestion"; +import OntologyTerm from "../../dto/OntologyTerm"; +import Project from "../../dto/Project"; +import MappingSuggestionList from "./MappingSuggestionList"; +import MappingTermList from "./MappingTermList"; +import { Link as RouterLink } from 'react-router-dom' + +interface Props { + projectId:string + entityId:string +} + +interface State { + project:Project|null + entity:Entity|null + saving:boolean +} + +export default class EntityPage extends React.Component { + + constructor(props:Props) { + super(props) + + this.state = { + entity: null, + project: null, + saving: false + } + } + + componentDidMount() { + this.fetch() + } + + render() { + + let { project, entity, saving } = this.state + + if (!isLoggedIn()) { + return + } + + if(!project || !entity) { + return + } + + return
+ + + Projects + + + {project.name} + + + Entities + + {entity.name} + +

{entity.name}

+ {/*

Mappings

+ */} +

Suggested Mappings

+ +
+ +   +   + + +

History

+ +
+ } + + async fetch() { + + let { projectId, entityId } = this.props + + //await this.setState(prevState => ({ ...prevState, project: null, entity: null })) + + let [ project, entity ] = await Promise.all([ + get(`/v1/projects/${projectId}`), + get(`/v1/projects/${projectId}/entities/${entityId}`) + ]) + + this.setState(prevState => ({ ...prevState, project, entity })) + } + + onClickSuggestion = (suggestion:MappingSuggestion) => { + + let entity = this.state.entity! + + let term = suggestion.ontologyTerm + + if(entity.mapping) { + + let wasSelected = entity.mapping.ontologyTerms.filter(t => t.iri === term.iri).length > 0 + + if(wasSelected) { + + this.updateMapping({ + ...entity.mapping, + ontologyTerms: entity.mapping.ontologyTerms.filter(t => t.iri !== term.iri) + }) + + } else { + + this.updateMapping({ + ...entity.mapping, + ontologyTerms: [ + ...entity.mapping.ontologyTerms, + suggestion.ontologyTerm + ] + }) + + } + + } else { + + this.createMapping({ + entityId: entity.id, + ontologyTerms: [ + suggestion.ontologyTerm + ] + }) + + } + + + } + + private async createMapping(mapping:CreateMapping) { + + let { projectId, entityId } = this.props + + await this.setState(prevState => ({ ...prevState, saving: true })) + await post(`/v1/projects/${projectId}/mappings`, mapping) + await this.fetch() + await this.setState(prevState => ({ ...prevState, saving: false })) + } + + private async updateMapping(mapping:Mapping) { + + let { projectId, entityId } = this.props + + await this.setState(prevState => ({ ...prevState, saving: true })) + await put(`/v1/projects/${projectId}/mappings/${mapping.id}`, mapping) + await this.fetch() + await this.setState(prevState => ({ ...prevState, saving: false })) + } + + onRemoveMappingTerm = (term:OntologyTerm) => { + } +} diff --git a/frontend/src/pages/entities/MappingSuggestionList.tsx b/frontend/src/pages/entities/MappingSuggestionList.tsx new file mode 100644 index 0000000..6404ab2 --- /dev/null +++ b/frontend/src/pages/entities/MappingSuggestionList.tsx @@ -0,0 +1,109 @@ + +import { Checkbox, createStyles, lighten, Paper, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, Theme, WithStyles, withStyles } from "@material-ui/core" +import React from "react" +import LoadingOverlay from "../../components/LoadingOverlay" +import TermStatusBox from "../../components/TermStatusBox" +import Entity from "../../dto/Entity" +import Mapping, { CreateMapping } from "../../dto/Mapping" +import MappingSuggestion from "../../dto/MappingSuggestion" +import Project from "../../dto/Project" + +const styles = (theme:Theme) => createStyles({ + tableRow: { + "&": { + cursor: 'pointer' + }, + "&:hover": { + backgroundColor: lighten(theme.palette.primary.light, 0.85) + } + } +}) + +interface Props extends WithStyles { + project:Project + entity:Entity + saving:boolean + + onClickSuggestion:(suggestion:MappingSuggestion)=>void +} + +interface State { +} + +class MappingSuggestionList extends React.Component { + + constructor(props:Props) { + super(props) + + this.state = { + } + } + + render() { + + let { classes, project, entity, saving } = this.props + + return + + + + + + Term + Term Label + Term Status + {/* Suggested By + Term Status */} + + + + + {entity.mappingSuggestions.map((suggestion:MappingSuggestion) => { + + let term = suggestion.ontologyTerm + + let selected = entity.mapping && + entity.mapping.ontologyTerms.filter(t => t.iri === term.iri).length > 0 + + return this.onClickSuggestion(suggestion)} + className={classes.tableRow} + key={project.name}> + + + + + {term.curie} + + + {term.label} + + + + + + })} + + {/* + + + + */} + +
+
+
+ + } + + + onClickSuggestion = (suggestion:MappingSuggestion) => { + + this.props.onClickSuggestion(suggestion) + + } + +} + +export default withStyles(styles)(MappingSuggestionList) diff --git a/frontend/src/pages/entities/MappingTermList.tsx b/frontend/src/pages/entities/MappingTermList.tsx new file mode 100644 index 0000000..76d0e73 --- /dev/null +++ b/frontend/src/pages/entities/MappingTermList.tsx @@ -0,0 +1,101 @@ + +import { Checkbox, createStyles, lighten, Paper, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, Theme, WithStyles, withStyles } from "@material-ui/core" +import React from "react" +import TermStatusBox from "../../components/TermStatusBox" +import Entity from "../../dto/Entity" +import Mapping, { CreateMapping } from "../../dto/Mapping" +import MappingSuggestion from "../../dto/MappingSuggestion" +import OntologyTerm from "../../dto/OntologyTerm" +import Project from "../../dto/Project" + +const styles = (theme:Theme) => createStyles({ + tableRow: { + "&": { + cursor: 'pointer' + }, + "&:hover": { + backgroundColor: lighten(theme.palette.primary.light, 0.85) + } + } +}) + +interface Props extends WithStyles { + project:Project + entity:Entity + + onRemoveMappingTerm:(term:OntologyTerm)=>void +} + +interface State { +} + +class MappingTermList extends React.Component { + + constructor(props:Props) { + super(props) + + this.state = { + } + } + + render() { + + let { classes, project, entity } = this.props + + return + + + + + Term + Term Label + Term Status + {/* Suggested By + Term Status */} + + + + + {entity.mapping && entity.mapping.ontologyTerms.map((term:OntologyTerm) => { + + return this.props.onRemoveMappingTerm(term)} + className={classes.tableRow} + key={project.name}> + + x + + + {term.curie} + + + {term.label} + + + + + + })} + + {/* + + + + */} + +
+
+ + } + + + onClickSuggestion = (term:OntologyTerm) => { + + this.props.onRemoveMappingTerm(term) + + } + +} + +export default withStyles(styles)(MappingTermList) diff --git a/frontend/src/pages/entities/OntologyTermSearchBox.tsx b/frontend/src/pages/entities/OntologyTermSearchBox.tsx new file mode 100644 index 0000000..2ad6b74 --- /dev/null +++ b/frontend/src/pages/entities/OntologyTermSearchBox.tsx @@ -0,0 +1,80 @@ + + +import React from 'react'; +import TextField from '@material-ui/core/TextField'; +import Autocomplete from '@material-ui/lab/Autocomplete'; +import CircularProgress from '@material-ui/core/CircularProgress'; +import { get } from '../../api'; +import OlsResponse, { OlsSearchResult } from '../../dto/OlsSearchResult'; + +export default function OntologyTermSearchBox(projectId:string) { + const [open, setOpen] = React.useState(false); + const [options, setOptions] = React.useState([]); + const loading = open && options.length === 0; + + React.useEffect(() => { + let active = true; + + if (!loading) { + return undefined; + } + + (async () => { + + const res:OlsResponse = await get(`/v1/projects/${projectId}/searchOLS?${ + new URLSearchParams({ + query: '' + })}`) + + console.dir(res) + + if (active) { + setOptions(res.docs) + } + })(); + + return () => { + active = false; + }; + }, [loading]); + + React.useEffect(() => { + if (!open) { + setOptions([]); + } + }, [open]); + + return ( + { + setOpen(true); + }} + onClose={() => { + setOpen(false); + }} + getOptionSelected={(option:OlsSearchResult, value:OlsSearchResult) => option.iri === value.iri} + getOptionLabel={(option:OlsSearchResult) => option.iri} + options={options} + loading={loading} + renderInput={(params) => ( + + {loading ? : null} + {params.InputProps.endAdornment} + + ), + }} + /> + )} + /> + ); +} \ No newline at end of file diff --git a/frontend/src/pages/projects/ContextForm.tsx b/frontend/src/pages/projects/ContextForm.tsx new file mode 100644 index 0000000..5daf6b6 --- /dev/null +++ b/frontend/src/pages/projects/ContextForm.tsx @@ -0,0 +1,51 @@ + +import { Button, CircularProgress, createStyles, darken, FormGroup, Grid, lighten, makeStyles, Paper, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, TextField, Theme, WithStyles, withStyles } from "@material-ui/core"; +import React, { ChangeEvent } from "react"; +import { useState, useEffect } from "react"; +import { getAuthHeaders, getToken, isLoggedIn } from "../../auth"; +import Context from "../../dto/Context"; + +interface Props { + context:Context + onUpdateContext:(context:Context)=>void +} + +interface State { +} + +class ContextForm extends React.Component { + + constructor(props:Props) { + + super(props) + + } + + render() { + + return
+ + + + + + + + + + +
+ } + + onChangeName = (e:ChangeEvent) => { + this.props.onUpdateContext({ ...this.props.context, name: e.target.value }) + } + + onChangeDescription = (e:ChangeEvent) => { + this.props.onUpdateContext({ ...this.props.context, description: e.target.value }) + } + +} + +export default ContextForm + diff --git a/frontend/src/pages/projects/CreateContextDialog.tsx b/frontend/src/pages/projects/CreateContextDialog.tsx new file mode 100644 index 0000000..f6f04c7 --- /dev/null +++ b/frontend/src/pages/projects/CreateContextDialog.tsx @@ -0,0 +1,94 @@ + +import { Box, Button, CircularProgress, createStyles, darken, Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle, lighten, makeStyles, Paper, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, TextField, Theme, WithStyles, withStyles } from "@material-ui/core"; +import React, { Fragment } from "react"; +import { useState, useEffect } from "react"; +import { getAuthHeaders, getToken, isLoggedIn } from "../../auth"; +import Context from "../../dto/Context"; +import ContextForm from "./ContextForm"; + +interface Props { + onCreate:(context:Context)=>void + onClose:()=>void +} + +interface State { + context:Context +} + +class CreateContextDialog extends React.Component { + + constructor(props:Props) { + + super(props) + + this.state = { + context: emptyContext() + } + + } + + render() { + + let { context } = this.state + + console.dir(context) + + return + Create Context + + + Please enter a name and description for the context. + + + + + + + + + + + } + + onClose = () => { + this.props.onClose() + } + + onUpdateContext = (context:Context) => { + this.setState(prevState => ({ ...prevState, context })) + } + + onCreate = () => { + this.props.onCreate(this.state.context) + this.setState(prevState => ({ ...prevState, open: false })) + } +} + +export default CreateContextDialog + + +function emptyContext() { + return { + name: '', + description: '', + datasources: [], + ontologies: [], + preferredMappingOntologies: [], + contexts: [], + numberOfReviewsRequired: 0, + created: { + user: { + email: '', + name: '' + }, + timestamp: '' + } + + } +} + + diff --git a/frontend/src/pages/projects/CreateProjectDialog.tsx b/frontend/src/pages/projects/CreateProjectDialog.tsx new file mode 100644 index 0000000..fdfcb8f --- /dev/null +++ b/frontend/src/pages/projects/CreateProjectDialog.tsx @@ -0,0 +1,105 @@ + +import { Box, Button, CircularProgress, createStyles, darken, Dialog, DialogActions, DialogContent, DialogContentText, DialogTitle, lighten, makeStyles, Paper, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, TextField, Theme, WithStyles, withStyles } from "@material-ui/core"; +import React, { Fragment } from "react"; +import { useState, useEffect } from "react"; +import { getAuthHeaders, getToken, isLoggedIn } from "../../auth"; +import Project from "../../dto/Project"; +import ProjectForm from "./ProjectForm"; +import ProjectList from "./ProjectList"; + +interface Props { + onCreate:(project:Project)=>void +} + +interface State { + open:boolean + project:Project +} + +class CreateProjectDialog extends React.Component { + + constructor(props:Props) { + + super(props) + + this.state = { + open: false, + project: emptyProject() + } + + } + + render() { + + let { open, project } = this.state + + console.dir(project) + + return
+ + + Create Project + + + Please enter a name and description for the project. + + + + + + + + + + +
+ } + + onOpen = () => { + this.setState(prevState => ({ ...prevState, open: true, project: emptyProject() })) + } + + onClose = () => { + this.setState(prevState => ({ ...prevState, open: false })) + } + + onUpdateProject = (project:Project) => { + this.setState(prevState => ({ ...prevState, project })) + } + + onCreate = () => { + this.props.onCreate(this.state.project) + this.setState(prevState => ({ ...prevState, open: false })) + } +} + +export default CreateProjectDialog + + +function emptyProject() { + return { + name: '', + description: '', + datasources: [], + ontologies: [], + preferredMappingOntologies: [], + contexts: [], + numberOfReviewsRequired: 0, + created: { + user: { + email: '', + name: '' + }, + timestamp: '' + } + + } +} + + diff --git a/frontend/src/pages/projects/ProjectForm.tsx b/frontend/src/pages/projects/ProjectForm.tsx new file mode 100644 index 0000000..28fca88 --- /dev/null +++ b/frontend/src/pages/projects/ProjectForm.tsx @@ -0,0 +1,52 @@ + +import { Button, CircularProgress, createStyles, darken, FormGroup, Grid, lighten, makeStyles, Paper, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, TextField, Theme, WithStyles, withStyles } from "@material-ui/core"; +import React, { ChangeEvent } from "react"; +import { useState, useEffect } from "react"; +import { getAuthHeaders, getToken, isLoggedIn } from "../../auth"; +import Project from "../../dto/Project"; +import ProjectList from "./ProjectList"; + +interface Props { + project:Project + onUpdateProject:(project:Project)=>void +} + +interface State { +} + +class ProjectForm extends React.Component { + + constructor(props:Props) { + + super(props) + + } + + render() { + + return
+ + + + + + + + + + +
+ } + + onChangeName = (e:ChangeEvent) => { + this.props.onUpdateProject({ ...this.props.project, name: e.target.value }) + } + + onChangeDescription = (e:ChangeEvent) => { + this.props.onUpdateProject({ ...this.props.project, description: e.target.value }) + } + +} + +export default ProjectForm + diff --git a/frontend/src/pages/projects/ProjectList.tsx b/frontend/src/pages/projects/ProjectList.tsx new file mode 100644 index 0000000..1864764 --- /dev/null +++ b/frontend/src/pages/projects/ProjectList.tsx @@ -0,0 +1,132 @@ + +import { Button, CircularProgress, createStyles, darken, lighten, makeStyles, Paper, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, Theme, WithStyles, withStyles } from "@material-ui/core"; +import React from "react"; +import { useState, useEffect } from "react"; +import { getAuthHeaders, getToken, isLoggedIn } from "../../auth"; +import Project from "../../dto/Project"; +import CreateProjectDialog from "./CreateProjectDialog"; +import { Link, Redirect } from 'react-router-dom' +import formatDate from "../../formatDate"; + +const styles = (theme:Theme) => createStyles({ + tableRow: { + "&": { + cursor: 'pointer' + }, + "&:hover": { + backgroundColor: lighten(theme.palette.primary.light, 0.85) + } + } +}) + +interface Props extends WithStyles { +} + +interface State { + projects:Project[]|null + goToProject:Project|null +} + +class ProjectList extends React.Component { + + constructor(props:Props) { + + super(props) + + this.state = { + projects: null, + goToProject: null + } + + + } + + componentDidMount() { + this.fetchProjects() + } + + render() { + + let { projects, goToProject } = this.state + let { classes } = this.props + + if(projects === null) { + return + } + + if(goToProject !== null) { + return + } + + return + + + + Name + Description + Created by + Created + + + + {projects.map((project:Project) => ( + this.onClickProject(project)} className={classes.tableRow} key={project.name}> + + {project.name} + + + {project.description} + + + {project.created!.user.name} + + + {formatDate(project.created!.timestamp)} + + + ))} + + + + + + +
+
+ } + + async fetchProjects() { + + await this.setState(prevState => ({ ...prevState, projects: null })) + + let res = await fetch(process.env.REACT_APP_APIURL + '/v1/projects', { + headers: { ...getAuthHeaders() } + }) + + let projects = await res.json() + + this.setState(prevState => ({ ...prevState, projects })) + } + + onClickProject = async (project:Project) => { + this.setState(prevState => ({ ...prevState, goToProject: project })) + } + + onCreateProject = async (project:Project) => { + + let res = await fetch(process.env.REACT_APP_APIURL + '/v1/projects', { + method: 'POST', + headers: { ...getAuthHeaders(), 'content-type': 'application/json' }, + body: JSON.stringify(project) + }) + + if(res.status === 201) { + this.fetchProjects() + } else { + console.log('Error creating projects: ' + res.statusText) + } + } +} + +export default withStyles(styles)(ProjectList) + diff --git a/frontend/src/pages/projects/ProjectPage.tsx b/frontend/src/pages/projects/ProjectPage.tsx new file mode 100644 index 0000000..28431bc --- /dev/null +++ b/frontend/src/pages/projects/ProjectPage.tsx @@ -0,0 +1,120 @@ + +import { AppBar, Breadcrumbs, CircularProgress, Link, Paper, Tab, Tabs, Typography } from "@material-ui/core"; +import React from "react"; +import { Redirect } from "react-router-dom"; +import { get, post } from "../../api"; +import { getAuthHeaders, isLoggedIn } from "../../auth"; +import Provenance from "../../components/Provenance"; +import Context from "../../dto/Context"; +import Project from "../../dto/Project"; +import EntityList from "../entities/EntityList"; +import CreateContextDialog from "./CreateContextDialog"; +import { Link as RouterLink } from 'react-router-dom' + +interface Props { + id:string +} + +interface State { + project:Project|null + context:Context|null, + showCreateContextDialog: boolean +} + +export default class ProjectPage extends React.Component { + + constructor(props:Props) { + super(props) + + this.state = { + project: null, + context: null, + showCreateContextDialog: false + } + } + + componentDidMount() { + this.fetchProject() + } + + render() { + + let { project, context, showCreateContextDialog } = this.state + + if (!isLoggedIn()) { + return + } + + if(project === null || context === null) { + return + } + + return
+ { showCreateContextDialog && } + + + Projects + + {project.name} + + { project.created && } +

{project.name}

+ {project.description} +
+ {/* */} + + {project.contexts.map(c => this.setContext(c)} />)} + + + {/* */} +

Entities

+ +
+ } + + async fetchProject() { + + let { id } = this.props + + let project = await get(`/v1/projects/${id}`) + + let context = project.contexts.filter(c => c.name === 'DEFAULT')[0] + + if(this.state.context) { + let currentContextName = this.state.context.name + let currentContext = project.contexts.filter(c => c.name === currentContextName)[0] + if(currentContext) { + context = currentContext + } + } + this.setState(prevState => ({ ...prevState, project, context })) + } + + newContext = () => { + this.setState(prevState => ({ ...prevState, showCreateContextDialog: true })) + } + + createContext = async (context:Context) => { + + let { id } = this.props + + await post(`/v1/projects/${id}/contexts`, context) + + this.fetchProject() + + this.setState(prevState => ({ ...prevState, showCreateContextDialog: false })) + } + + closeCreateContext = () => { + this.setState(prevState => ({ ...prevState, showCreateContextDialog: false })) + } + + setContext = (context:Context) => { + this.setState(prevState => ({ ...prevState, context })) + } +} diff --git a/frontend/src/react-app-env.d.ts b/frontend/src/react-app-env.d.ts new file mode 100644 index 0000000..6431bc5 --- /dev/null +++ b/frontend/src/react-app-env.d.ts @@ -0,0 +1 @@ +/// diff --git a/frontend/src/reportWebVitals.ts b/frontend/src/reportWebVitals.ts new file mode 100644 index 0000000..49a2a16 --- /dev/null +++ b/frontend/src/reportWebVitals.ts @@ -0,0 +1,15 @@ +import { ReportHandler } from 'web-vitals'; + +const reportWebVitals = (onPerfEntry?: ReportHandler) => { + if (onPerfEntry && onPerfEntry instanceof Function) { + import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => { + getCLS(onPerfEntry); + getFID(onPerfEntry); + getFCP(onPerfEntry); + getLCP(onPerfEntry); + getTTFB(onPerfEntry); + }); + } +}; + +export default reportWebVitals; diff --git a/frontend/src/setupTests.ts b/frontend/src/setupTests.ts new file mode 100644 index 0000000..8f2609b --- /dev/null +++ b/frontend/src/setupTests.ts @@ -0,0 +1,5 @@ +// jest-dom adds custom jest matchers for asserting on DOM nodes. +// allows you to do things like: +// expect(element).toHaveTextContent(/react/i) +// learn more: https://github.com/testing-library/jest-dom +import '@testing-library/jest-dom'; diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json new file mode 100644 index 0000000..a273b0c --- /dev/null +++ b/frontend/tsconfig.json @@ -0,0 +1,26 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], + "allowJs": true, + "skipLibCheck": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noFallthroughCasesInSwitch": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react-jsx" + }, + "include": [ + "src" + ] +} diff --git a/frontend/yarn.lock b/frontend/yarn.lock new file mode 100644 index 0000000..798387e --- /dev/null +++ b/frontend/yarn.lock @@ -0,0 +1,12414 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.5.5": + "integrity" "sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==" + "resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/highlight" "^7.12.13" + +"@babel/code-frame@7.10.4": + "integrity" "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==" + "resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz" + "version" "7.10.4" + dependencies: + "@babel/highlight" "^7.10.4" + +"@babel/code-frame@7.12.11": + "integrity" "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==" + "resolved" "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz" + "version" "7.12.11" + dependencies: + "@babel/highlight" "^7.10.4" + +"@babel/compat-data@^7.12.1", "@babel/compat-data@^7.12.13": + "integrity" "sha512-U/hshG5R+SIoW7HVWIdmy1cB7s3ki+r3FpyEZiCgpi4tFgPnX/vynY80ZGSASOIrUM6O7VxOgCZgdt7h97bUGg==" + "resolved" "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.13.tgz" + "version" "7.12.13" + +"@babel/core@^7.0.0", "@babel/core@^7.0.0-0", "@babel/core@^7.1.0", "@babel/core@^7.12.3", "@babel/core@^7.7.5", "@babel/core@^7.8.4", "@babel/core@7 || ^7.0.0-rc.2": + "integrity" "sha512-V3CuX1aBywbJvV2yzJScRxeiiw0v2KZZYYE3giywxzFJL13RiyPjaaDwhDnxmgFTTS7FgvM2ijr4QmKNIu0AtQ==" + "resolved" "https://registry.npmjs.org/@babel/core/-/core-7.12.17.tgz" + "version" "7.12.17" + dependencies: + "@babel/code-frame" "^7.12.13" + "@babel/generator" "^7.12.17" + "@babel/helper-module-transforms" "^7.12.17" + "@babel/helpers" "^7.12.17" + "@babel/parser" "^7.12.17" + "@babel/template" "^7.12.13" + "@babel/traverse" "^7.12.17" + "@babel/types" "^7.12.17" + "convert-source-map" "^1.7.0" + "debug" "^4.1.0" + "gensync" "^1.0.0-beta.1" + "json5" "^2.1.2" + "lodash" "^4.17.19" + "semver" "^5.4.1" + "source-map" "^0.5.0" + +"@babel/core@7.12.3": + "integrity" "sha512-0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g==" + "resolved" "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz" + "version" "7.12.3" + dependencies: + "@babel/code-frame" "^7.10.4" + "@babel/generator" "^7.12.1" + "@babel/helper-module-transforms" "^7.12.1" + "@babel/helpers" "^7.12.1" + "@babel/parser" "^7.12.3" + "@babel/template" "^7.10.4" + "@babel/traverse" "^7.12.1" + "@babel/types" "^7.12.1" + "convert-source-map" "^1.7.0" + "debug" "^4.1.0" + "gensync" "^1.0.0-beta.1" + "json5" "^2.1.2" + "lodash" "^4.17.19" + "resolve" "^1.3.2" + "semver" "^5.4.1" + "source-map" "^0.5.0" + +"@babel/generator@^7.12.1", "@babel/generator@^7.12.17": + "integrity" "sha512-DSA7ruZrY4WI8VxuS1jWSRezFnghEoYEFrZcw9BizQRmOZiUsiHl59+qEARGPqPikwA/GPTyRCi7isuCK/oyqg==" + "resolved" "https://registry.npmjs.org/@babel/generator/-/generator-7.12.17.tgz" + "version" "7.12.17" + dependencies: + "@babel/types" "^7.12.17" + "jsesc" "^2.5.1" + "source-map" "^0.5.0" + +"@babel/helper-annotate-as-pure@^7.0.0", "@babel/helper-annotate-as-pure@^7.10.4", "@babel/helper-annotate-as-pure@^7.12.13": + "integrity" "sha512-7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw==" + "resolved" "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/types" "^7.12.13" + +"@babel/helper-builder-binary-assignment-operator-visitor@^7.12.13": + "integrity" "sha512-CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA==" + "resolved" "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-explode-assignable-expression" "^7.12.13" + "@babel/types" "^7.12.13" + +"@babel/helper-compilation-targets@^7.12.1", "@babel/helper-compilation-targets@^7.12.17": + "integrity" "sha512-5EkibqLVYOuZ89BSg2lv+GG8feywLuvMXNYgf0Im4MssE0mFWPztSpJbildNnUgw0bLI2EsIN4MpSHC2iUJkQA==" + "resolved" "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.17.tgz" + "version" "7.12.17" + dependencies: + "@babel/compat-data" "^7.12.13" + "@babel/helper-validator-option" "^7.12.17" + "browserslist" "^4.14.5" + "semver" "^5.5.0" + +"@babel/helper-create-class-features-plugin@^7.12.1", "@babel/helper-create-class-features-plugin@^7.12.13", "@babel/helper-create-class-features-plugin@^7.12.17": + "integrity" "sha512-I/nurmTxIxHV0M+rIpfQBF1oN342+yvl2kwZUrQuOClMamHF1w5tknfZubgNOLRoA73SzBFAdFcpb4M9HwOeWQ==" + "resolved" "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.17.tgz" + "version" "7.12.17" + dependencies: + "@babel/helper-function-name" "^7.12.13" + "@babel/helper-member-expression-to-functions" "^7.12.17" + "@babel/helper-optimise-call-expression" "^7.12.13" + "@babel/helper-replace-supers" "^7.12.13" + "@babel/helper-split-export-declaration" "^7.12.13" + +"@babel/helper-create-regexp-features-plugin@^7.12.13": + "integrity" "sha512-p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg==" + "resolved" "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz" + "version" "7.12.17" + dependencies: + "@babel/helper-annotate-as-pure" "^7.12.13" + "regexpu-core" "^4.7.1" + +"@babel/helper-explode-assignable-expression@^7.12.13": + "integrity" "sha512-5loeRNvMo9mx1dA/d6yNi+YiKziJZFylZnCo1nmFF4qPU4yJ14abhWESuSMQSlQxWdxdOFzxXjk/PpfudTtYyw==" + "resolved" "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/types" "^7.12.13" + +"@babel/helper-function-name@^7.12.13": + "integrity" "sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==" + "resolved" "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-get-function-arity" "^7.12.13" + "@babel/template" "^7.12.13" + "@babel/types" "^7.12.13" + +"@babel/helper-get-function-arity@^7.12.13": + "integrity" "sha512-DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==" + "resolved" "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/types" "^7.12.13" + +"@babel/helper-hoist-variables@^7.12.13": + "integrity" "sha512-KSC5XSj5HreRhYQtZ3cnSnQwDzgnbdUDEFsxkN0m6Q3WrCRt72xrnZ8+h+pX7YxM7hr87zIO3a/v5p/H3TrnVw==" + "resolved" "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/types" "^7.12.13" + +"@babel/helper-member-expression-to-functions@^7.12.13", "@babel/helper-member-expression-to-functions@^7.12.17": + "integrity" "sha512-Bzv4p3ODgS/qpBE0DiJ9qf5WxSmrQ8gVTe8ClMfwwsY2x/rhykxxy3bXzG7AGTnPB2ij37zGJ/Q/6FruxHxsxg==" + "resolved" "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.17.tgz" + "version" "7.12.17" + dependencies: + "@babel/types" "^7.12.17" + +"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.12.1", "@babel/helper-module-imports@^7.12.13": + "integrity" "sha512-NGmfvRp9Rqxy0uHSSVP+SRIW1q31a7Ji10cLBcqSDUngGentY4FRiHOFZFE1CLU5eiL0oE8reH7Tg1y99TDM/g==" + "resolved" "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/types" "^7.12.13" + +"@babel/helper-module-transforms@^7.12.1", "@babel/helper-module-transforms@^7.12.13", "@babel/helper-module-transforms@^7.12.17": + "integrity" "sha512-sFL+p6zOCQMm9vilo06M4VHuTxUAwa6IxgL56Tq1DVtA0ziAGTH1ThmJq7xwPqdQlgAbKX3fb0oZNbtRIyA5KQ==" + "resolved" "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.17.tgz" + "version" "7.12.17" + dependencies: + "@babel/helper-module-imports" "^7.12.13" + "@babel/helper-replace-supers" "^7.12.13" + "@babel/helper-simple-access" "^7.12.13" + "@babel/helper-split-export-declaration" "^7.12.13" + "@babel/helper-validator-identifier" "^7.12.11" + "@babel/template" "^7.12.13" + "@babel/traverse" "^7.12.17" + "@babel/types" "^7.12.17" + "lodash" "^4.17.19" + +"@babel/helper-optimise-call-expression@^7.12.13": + "integrity" "sha512-BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==" + "resolved" "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/types" "^7.12.13" + +"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": + "integrity" "sha512-C+10MXCXJLiR6IeG9+Wiejt9jmtFpxUc3MQqCmPY8hfCjyUGl9kT+B2okzEZrtykiwrc4dbCPdDoz0A/HQbDaA==" + "resolved" "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.12.13.tgz" + "version" "7.12.13" + +"@babel/helper-remap-async-to-generator@^7.12.13": + "integrity" "sha512-Qa6PU9vNcj1NZacZZI1Mvwt+gXDH6CTfgAkSjeRMLE8HxtDK76+YDId6NQR+z7Rgd5arhD2cIbS74r0SxD6PDA==" + "resolved" "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-annotate-as-pure" "^7.12.13" + "@babel/helper-wrap-function" "^7.12.13" + "@babel/types" "^7.12.13" + +"@babel/helper-replace-supers@^7.12.13": + "integrity" "sha512-pctAOIAMVStI2TMLhozPKbf5yTEXc0OJa0eENheb4w09SrgOWEs+P4nTOZYJQCqs8JlErGLDPDJTiGIp3ygbLg==" + "resolved" "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-member-expression-to-functions" "^7.12.13" + "@babel/helper-optimise-call-expression" "^7.12.13" + "@babel/traverse" "^7.12.13" + "@babel/types" "^7.12.13" + +"@babel/helper-simple-access@^7.12.13": + "integrity" "sha512-0ski5dyYIHEfwpWGx5GPWhH35j342JaflmCeQmsPWcrOQDtCN6C1zKAVRFVbK53lPW2c9TsuLLSUDf0tIGJ5hA==" + "resolved" "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/types" "^7.12.13" + +"@babel/helper-skip-transparent-expression-wrappers@^7.12.1": + "integrity" "sha512-Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==" + "resolved" "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/types" "^7.12.1" + +"@babel/helper-split-export-declaration@^7.12.13": + "integrity" "sha512-tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==" + "resolved" "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/types" "^7.12.13" + +"@babel/helper-validator-identifier@^7.12.11": + "integrity" "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==" + "resolved" "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz" + "version" "7.12.11" + +"@babel/helper-validator-option@^7.12.1", "@babel/helper-validator-option@^7.12.17": + "integrity" "sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw==" + "resolved" "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz" + "version" "7.12.17" + +"@babel/helper-wrap-function@^7.12.13": + "integrity" "sha512-t0aZFEmBJ1LojdtJnhOaQEVejnzYhyjWHSsNSNo8vOYRbAJNh6r6GQF7pd36SqG7OKGbn+AewVQ/0IfYfIuGdw==" + "resolved" "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-function-name" "^7.12.13" + "@babel/template" "^7.12.13" + "@babel/traverse" "^7.12.13" + "@babel/types" "^7.12.13" + +"@babel/helpers@^7.12.1", "@babel/helpers@^7.12.17": + "integrity" "sha512-tEpjqSBGt/SFEsFikKds1sLNChKKGGR17flIgQKXH4fG6m9gTgl3gnOC1giHNyaBCSKuTfxaSzHi7UnvqiVKxg==" + "resolved" "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.17.tgz" + "version" "7.12.17" + dependencies: + "@babel/template" "^7.12.13" + "@babel/traverse" "^7.12.17" + "@babel/types" "^7.12.17" + +"@babel/highlight@^7.10.4", "@babel/highlight@^7.12.13": + "integrity" "sha512-kocDQvIbgMKlWxXe9fof3TQ+gkIPOUSEYhJjqUjvKMez3krV7vbzYCDq39Oj11UAVK7JqPVGQPlgE85dPNlQww==" + "resolved" "https://registry.npmjs.org/@babel/highlight/-/highlight-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-validator-identifier" "^7.12.11" + "chalk" "^2.0.0" + "js-tokens" "^4.0.0" + +"@babel/parser@^7.1.0", "@babel/parser@^7.12.13", "@babel/parser@^7.12.17", "@babel/parser@^7.12.3", "@babel/parser@^7.7.0": + "integrity" "sha512-r1yKkiUTYMQ8LiEI0UcQx5ETw5dpTLn9wijn9hk6KkTtOK95FndDN10M+8/s6k/Ymlbivw0Av9q4SlgF80PtHg==" + "resolved" "https://registry.npmjs.org/@babel/parser/-/parser-7.12.17.tgz" + "version" "7.12.17" + +"@babel/plugin-proposal-async-generator-functions@^7.12.1", "@babel/plugin-proposal-async-generator-functions@^7.12.13": + "integrity" "sha512-1KH46Hx4WqP77f978+5Ye/VUbuwQld2hph70yaw2hXS2v7ER2f3nlpNMu909HO2rbvP0NKLlMVDPh9KXklVMhA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/helper-remap-async-to-generator" "^7.12.13" + "@babel/plugin-syntax-async-generators" "^7.8.0" + +"@babel/plugin-proposal-class-properties@^7.12.1": + "integrity" "sha512-8SCJ0Ddrpwv4T7Gwb33EmW1V9PY5lggTO+A8WjyIwxrSHDUyBw4MtF96ifn1n8H806YlxbVCoKXbbmzD6RD+cA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-create-class-features-plugin" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-proposal-class-properties@^7.12.13": + "integrity" "sha512-8SCJ0Ddrpwv4T7Gwb33EmW1V9PY5lggTO+A8WjyIwxrSHDUyBw4MtF96ifn1n8H806YlxbVCoKXbbmzD6RD+cA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-create-class-features-plugin" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-proposal-class-properties@7.12.1": + "integrity" "sha512-cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-create-class-features-plugin" "^7.12.1" + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-proposal-decorators@7.12.1": + "integrity" "sha512-knNIuusychgYN8fGJHONL0RbFxLGawhXOJNLBk75TniTsZZeA+wdkDuv6wp4lGwzQEKjZi6/WYtnb3udNPmQmQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-create-class-features-plugin" "^7.12.1" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-syntax-decorators" "^7.12.1" + +"@babel/plugin-proposal-dynamic-import@^7.12.1", "@babel/plugin-proposal-dynamic-import@^7.12.17": + "integrity" "sha512-ZNGoFZqrnuy9H2izB2jLlnNDAfVPlGl5NhFEiFe4D84ix9GQGygF+CWMGHKuE+bpyS/AOuDQCnkiRNqW2IzS1Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.17.tgz" + "version" "7.12.17" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/plugin-syntax-dynamic-import" "^7.8.0" + +"@babel/plugin-proposal-export-namespace-from@^7.12.1", "@babel/plugin-proposal-export-namespace-from@^7.12.13": + "integrity" "sha512-INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + +"@babel/plugin-proposal-json-strings@^7.12.1", "@babel/plugin-proposal-json-strings@^7.12.13": + "integrity" "sha512-v9eEi4GiORDg8x+Dmi5r8ibOe0VXoKDeNPYcTTxdGN4eOWikrJfDJCJrr1l5gKGvsNyGJbrfMftC2dTL6oz7pg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/plugin-syntax-json-strings" "^7.8.0" + +"@babel/plugin-proposal-logical-assignment-operators@^7.12.1", "@babel/plugin-proposal-logical-assignment-operators@^7.12.13": + "integrity" "sha512-fqmiD3Lz7jVdK6kabeSr1PZlWSUVqSitmHEe3Z00dtGTKieWnX9beafvavc32kjORa5Bai4QNHgFDwWJP+WtSQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + +"@babel/plugin-proposal-nullish-coalescing-operator@^7.12.1": + "integrity" "sha512-Qoxpy+OxhDBI5kRqliJFAl4uWXk3Bn24WeFstPH0iLymFehSAUR8MHpqU7njyXv/qbo7oN6yTy5bfCmXdKpo1Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" + +"@babel/plugin-proposal-nullish-coalescing-operator@^7.12.13": + "integrity" "sha512-Qoxpy+OxhDBI5kRqliJFAl4uWXk3Bn24WeFstPH0iLymFehSAUR8MHpqU7njyXv/qbo7oN6yTy5bfCmXdKpo1Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" + +"@babel/plugin-proposal-nullish-coalescing-operator@7.12.1": + "integrity" "sha512-nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" + +"@babel/plugin-proposal-numeric-separator@^7.12.1": + "integrity" "sha512-O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-proposal-numeric-separator@^7.12.13": + "integrity" "sha512-O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-proposal-numeric-separator@7.12.1": + "integrity" "sha512-MR7Ok+Af3OhNTCxYVjJZHS0t97ydnJZt/DbR4WISO39iDnhiD8XHrY12xuSJ90FFEGjir0Fzyyn7g/zY6hxbxA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + +"@babel/plugin-proposal-object-rest-spread@^7.12.1", "@babel/plugin-proposal-object-rest-spread@^7.12.13": + "integrity" "sha512-WvA1okB/0OS/N3Ldb3sziSrXg6sRphsBgqiccfcQq7woEn5wQLNX82Oc4PlaFcdwcWHuQXAtb8ftbS8Fbsg/sg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/plugin-syntax-object-rest-spread" "^7.8.0" + "@babel/plugin-transform-parameters" "^7.12.13" + +"@babel/plugin-proposal-optional-catch-binding@^7.12.1", "@babel/plugin-proposal-optional-catch-binding@^7.12.13": + "integrity" "sha512-9+MIm6msl9sHWg58NvqpNpLtuFbmpFYk37x8kgnGzAHvX35E1FyAwSUt5hIkSoWJFSAH+iwU8bJ4fcD1zKXOzg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" + +"@babel/plugin-proposal-optional-chaining@^7.12.1": + "integrity" "sha512-TvxwI80pWftrGPKHNfkvX/HnoeSTR7gC4ezWnAL39PuktYUe6r8kEpOLTYnkBTsaoeazXm2jHJ22EQ81sdgfcA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.17.tgz" + "version" "7.12.17" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" + "@babel/plugin-syntax-optional-chaining" "^7.8.0" + +"@babel/plugin-proposal-optional-chaining@^7.12.17": + "integrity" "sha512-TvxwI80pWftrGPKHNfkvX/HnoeSTR7gC4ezWnAL39PuktYUe6r8kEpOLTYnkBTsaoeazXm2jHJ22EQ81sdgfcA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.17.tgz" + "version" "7.12.17" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" + "@babel/plugin-syntax-optional-chaining" "^7.8.0" + +"@babel/plugin-proposal-optional-chaining@7.12.1": + "integrity" "sha512-c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" + "@babel/plugin-syntax-optional-chaining" "^7.8.0" + +"@babel/plugin-proposal-private-methods@^7.12.1", "@babel/plugin-proposal-private-methods@^7.12.13": + "integrity" "sha512-sV0V57uUwpauixvR7s2o75LmwJI6JECwm5oPUY5beZB1nBl2i37hc7CJGqB5G+58fur5Y6ugvl3LRONk5x34rg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-create-class-features-plugin" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-proposal-unicode-property-regex@^7.12.1", "@babel/plugin-proposal-unicode-property-regex@^7.12.13", "@babel/plugin-proposal-unicode-property-regex@^7.4.4": + "integrity" "sha512-XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-async-generators@^7.8.0", "@babel/plugin-syntax-async-generators@^7.8.4": + "integrity" "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz" + "version" "7.8.4" + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-bigint@^7.8.3": + "integrity" "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz" + "version" "7.8.3" + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-class-properties@^7.12.1", "@babel/plugin-syntax-class-properties@^7.12.13", "@babel/plugin-syntax-class-properties@^7.8.3": + "integrity" "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-decorators@^7.12.1": + "integrity" "sha512-Rw6aIXGuqDLr6/LoBBYE57nKOzQpz/aDkKlMqEwH+Vp0MXbG6H/TfRjaY343LKxzAKAMXIHsQ8JzaZKuDZ9MwA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-dynamic-import@^7.8.0": + "integrity" "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz" + "version" "7.8.3" + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-export-namespace-from@^7.8.3": + "integrity" "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz" + "version" "7.8.3" + dependencies: + "@babel/helper-plugin-utils" "^7.8.3" + +"@babel/plugin-syntax-flow@^7.12.1": + "integrity" "sha512-J/RYxnlSLXZLVR7wTRsozxKT8qbsx1mNKJzXEEjQ0Kjx1ZACcyHgbanNWNCFtc36IzuWhYWPpvJFFoexoOWFmA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-import-meta@^7.8.3": + "integrity" "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz" + "version" "7.10.4" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-json-strings@^7.8.0", "@babel/plugin-syntax-json-strings@^7.8.3": + "integrity" "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz" + "version" "7.8.3" + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-jsx@^7.12.13": + "integrity" "sha512-d4HM23Q1K7oq/SLNmG6mRt85l2csmQ0cHRaxRXjKW0YFdEXqlZ5kzFQKH5Uc3rDJECgu+yCRgPkG04Mm98R/1g==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-logical-assignment-operators@^7.10.4", "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": + "integrity" "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz" + "version" "7.10.4" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": + "integrity" "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz" + "version" "7.8.3" + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-numeric-separator@^7.10.4", "@babel/plugin-syntax-numeric-separator@^7.8.3": + "integrity" "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz" + "version" "7.10.4" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": + "integrity" "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz" + "version" "7.8.3" + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-catch-binding@^7.8.0", "@babel/plugin-syntax-optional-catch-binding@^7.8.3": + "integrity" "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz" + "version" "7.8.3" + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-optional-chaining@^7.8.0", "@babel/plugin-syntax-optional-chaining@^7.8.3": + "integrity" "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz" + "version" "7.8.3" + dependencies: + "@babel/helper-plugin-utils" "^7.8.0" + +"@babel/plugin-syntax-top-level-await@^7.12.1", "@babel/plugin-syntax-top-level-await@^7.12.13", "@babel/plugin-syntax-top-level-await@^7.8.3": + "integrity" "sha512-A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-syntax-typescript@^7.12.13": + "integrity" "sha512-cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w==" + "resolved" "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-arrow-functions@^7.12.1", "@babel/plugin-transform-arrow-functions@^7.12.13": + "integrity" "sha512-tBtuN6qtCTd+iHzVZVOMNp+L04iIJBpqkdY42tWbmjIT5wvR2kx7gxMBsyhQtFzHwBbyGi9h8J8r9HgnOpQHxg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-async-to-generator@^7.12.1", "@babel/plugin-transform-async-to-generator@^7.12.13": + "integrity" "sha512-psM9QHcHaDr+HZpRuJcE1PXESuGWSCcbiGFFhhwfzdbTxaGDVzuVtdNYliAwcRo3GFg0Bc8MmI+AvIGYIJG04A==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-module-imports" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/helper-remap-async-to-generator" "^7.12.13" + +"@babel/plugin-transform-block-scoped-functions@^7.12.1", "@babel/plugin-transform-block-scoped-functions@^7.12.13": + "integrity" "sha512-zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-block-scoping@^7.12.1", "@babel/plugin-transform-block-scoping@^7.12.13": + "integrity" "sha512-Pxwe0iqWJX4fOOM2kEZeUuAxHMWb9nK+9oh5d11bsLoB0xMg+mkDpt0eYuDZB7ETrY9bbcVlKUGTOGWy7BHsMQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-classes@^7.12.1", "@babel/plugin-transform-classes@^7.12.13": + "integrity" "sha512-cqZlMlhCC1rVnxE5ZGMtIb896ijL90xppMiuWXcwcOAuFczynpd3KYemb91XFFPi3wJSe/OcrX9lXoowatkkxA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-annotate-as-pure" "^7.12.13" + "@babel/helper-function-name" "^7.12.13" + "@babel/helper-optimise-call-expression" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/helper-replace-supers" "^7.12.13" + "@babel/helper-split-export-declaration" "^7.12.13" + "globals" "^11.1.0" + +"@babel/plugin-transform-computed-properties@^7.12.1", "@babel/plugin-transform-computed-properties@^7.12.13": + "integrity" "sha512-dDfuROUPGK1mTtLKyDPUavmj2b6kFu82SmgpztBFEO974KMjJT+Ytj3/oWsTUMBmgPcp9J5Pc1SlcAYRpJ2hRA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-destructuring@^7.12.1", "@babel/plugin-transform-destructuring@^7.12.13": + "integrity" "sha512-Dn83KykIFzjhA3FDPA1z4N+yfF3btDGhjnJwxIj0T43tP0flCujnU8fKgEkf0C1biIpSv9NZegPBQ1J6jYkwvQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-dotall-regex@^7.12.1", "@babel/plugin-transform-dotall-regex@^7.12.13", "@babel/plugin-transform-dotall-regex@^7.4.4": + "integrity" "sha512-foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-duplicate-keys@^7.12.1", "@babel/plugin-transform-duplicate-keys@^7.12.13": + "integrity" "sha512-NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-exponentiation-operator@^7.12.1", "@babel/plugin-transform-exponentiation-operator@^7.12.13": + "integrity" "sha512-fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-builder-binary-assignment-operator-visitor" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-flow-strip-types@7.12.1": + "integrity" "sha512-8hAtkmsQb36yMmEtk2JZ9JnVyDSnDOdlB+0nEGzIDLuK4yR3JcEjfuFPYkdEPSh8Id+rAMeBEn+X0iVEyho6Hg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-syntax-flow" "^7.12.1" + +"@babel/plugin-transform-for-of@^7.12.1", "@babel/plugin-transform-for-of@^7.12.13": + "integrity" "sha512-xCbdgSzXYmHGyVX3+BsQjcd4hv4vA/FDy7Kc8eOpzKmBBPEOTurt0w5fCRQaGl+GSBORKgJdstQ1rHl4jbNseQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-function-name@^7.12.1", "@babel/plugin-transform-function-name@^7.12.13": + "integrity" "sha512-6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-function-name" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-literals@^7.12.1", "@babel/plugin-transform-literals@^7.12.13": + "integrity" "sha512-FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-member-expression-literals@^7.12.1", "@babel/plugin-transform-member-expression-literals@^7.12.13": + "integrity" "sha512-kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-modules-amd@^7.12.1", "@babel/plugin-transform-modules-amd@^7.12.13": + "integrity" "sha512-JHLOU0o81m5UqG0Ulz/fPC68/v+UTuGTWaZBUwpEk1fYQ1D9LfKV6MPn4ttJKqRo5Lm460fkzjLTL4EHvCprvA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-module-transforms" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" + "babel-plugin-dynamic-import-node" "^2.3.3" + +"@babel/plugin-transform-modules-commonjs@^7.12.1", "@babel/plugin-transform-modules-commonjs@^7.12.13": + "integrity" "sha512-OGQoeVXVi1259HjuoDnsQMlMkT9UkZT9TpXAsqWplS/M0N1g3TJAn/ByOCeQu7mfjc5WpSsRU+jV1Hd89ts0kQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-module-transforms" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/helper-simple-access" "^7.12.13" + "babel-plugin-dynamic-import-node" "^2.3.3" + +"@babel/plugin-transform-modules-systemjs@^7.12.1", "@babel/plugin-transform-modules-systemjs@^7.12.13": + "integrity" "sha512-aHfVjhZ8QekaNF/5aNdStCGzwTbU7SI5hUybBKlMzqIMC7w7Ho8hx5a4R/DkTHfRfLwHGGxSpFt9BfxKCoXKoA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-hoist-variables" "^7.12.13" + "@babel/helper-module-transforms" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/helper-validator-identifier" "^7.12.11" + "babel-plugin-dynamic-import-node" "^2.3.3" + +"@babel/plugin-transform-modules-umd@^7.12.1", "@babel/plugin-transform-modules-umd@^7.12.13": + "integrity" "sha512-BgZndyABRML4z6ibpi7Z98m4EVLFI9tVsZDADC14AElFaNHHBcJIovflJ6wtCqFxwy2YJ1tJhGRsr0yLPKoN+w==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-module-transforms" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-named-capturing-groups-regex@^7.12.1", "@babel/plugin-transform-named-capturing-groups-regex@^7.12.13": + "integrity" "sha512-Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.12.13" + +"@babel/plugin-transform-new-target@^7.12.1", "@babel/plugin-transform-new-target@^7.12.13": + "integrity" "sha512-/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-object-super@^7.12.1", "@babel/plugin-transform-object-super@^7.12.13": + "integrity" "sha512-JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/helper-replace-supers" "^7.12.13" + +"@babel/plugin-transform-parameters@^7.12.1", "@babel/plugin-transform-parameters@^7.12.13": + "integrity" "sha512-e7QqwZalNiBRHCpJg/P8s/VJeSRYgmtWySs1JwvfwPqhBbiWfOcHDKdeAi6oAyIimoKWBlwc8oTgbZHdhCoVZA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-property-literals@^7.12.1", "@babel/plugin-transform-property-literals@^7.12.13": + "integrity" "sha512-nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-react-constant-elements@^7.12.1": + "integrity" "sha512-qmzKVTn46Upvtxv8LQoQ8mTCdUC83AOVQIQm57e9oekLT5cmK9GOMOfcWhe8jMNx4UJXn/UDhVZ/7lGofVNeDQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-constant-elements/-/plugin-transform-react-constant-elements-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-react-display-name@^7.12.1": + "integrity" "sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-react-display-name@^7.12.13": + "integrity" "sha512-MprESJzI9O5VnJZrL7gg1MpdqmiFcUv41Jc7SahxYsNP2kDkFqClxxTZq+1Qv4AFCamm+GXMRDQINNn+qrxmiA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-react-display-name@7.12.1": + "integrity" "sha512-cAzB+UzBIrekfYxyLlFqf/OagTvHLcVBb5vpouzkYkBclRPraiygVnafvAoipErZLI8ANv8Ecn6E/m5qPXD26w==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-transform-react-jsx-development@^7.12.1": + "integrity" "sha512-BPjYV86SVuOaudFhsJR1zjgxxOhJDt6JHNoD48DxWEIxUCAMjV1ys6DYw4SDYZh0b1QsS2vfIA9t/ZsQGsDOUQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.17.tgz" + "version" "7.12.17" + dependencies: + "@babel/plugin-transform-react-jsx" "^7.12.17" + +"@babel/plugin-transform-react-jsx-development@^7.12.12": + "integrity" "sha512-BPjYV86SVuOaudFhsJR1zjgxxOhJDt6JHNoD48DxWEIxUCAMjV1ys6DYw4SDYZh0b1QsS2vfIA9t/ZsQGsDOUQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.12.17.tgz" + "version" "7.12.17" + dependencies: + "@babel/plugin-transform-react-jsx" "^7.12.17" + +"@babel/plugin-transform-react-jsx-self@^7.12.1": + "integrity" "sha512-FXYw98TTJ125GVCCkFLZXlZ1qGcsYqNQhVBQcZjyrwf8FEUtVfKIoidnO8S0q+KBQpDYNTmiGo1gn67Vti04lQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-react-jsx-source@^7.12.1": + "integrity" "sha512-O5JJi6fyfih0WfDgIJXksSPhGP/G0fQpfxYy87sDc+1sFmsCS6wr3aAn+whbzkhbjtq4VMqLRaSzR6IsshIC0Q==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-react-jsx@^7.12.1", "@babel/plugin-transform-react-jsx@^7.12.13", "@babel/plugin-transform-react-jsx@^7.12.17": + "integrity" "sha512-mwaVNcXV+l6qJOuRhpdTEj8sT/Z0owAVWf9QujTZ0d2ye9X/K+MTOTSizcgKOj18PGnTc/7g1I4+cIUjsKhBcw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.12.17.tgz" + "version" "7.12.17" + dependencies: + "@babel/helper-annotate-as-pure" "^7.12.13" + "@babel/helper-module-imports" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/plugin-syntax-jsx" "^7.12.13" + "@babel/types" "^7.12.17" + +"@babel/plugin-transform-react-pure-annotations@^7.12.1": + "integrity" "sha512-RqeaHiwZtphSIUZ5I85PEH19LOSzxfuEazoY7/pWASCAIBuATQzpSVD+eT6MebeeZT2F4eSL0u4vw6n4Nm0Mjg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-annotate-as-pure" "^7.10.4" + "@babel/helper-plugin-utils" "^7.10.4" + +"@babel/plugin-transform-regenerator@^7.12.1", "@babel/plugin-transform-regenerator@^7.12.13": + "integrity" "sha512-lxb2ZAvSLyJ2PEe47hoGWPmW22v7CtSl9jW8mingV4H2sEX/JOcrAj2nPuGWi56ERUm2bUpjKzONAuT6HCn2EA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "regenerator-transform" "^0.14.2" + +"@babel/plugin-transform-reserved-words@^7.12.1", "@babel/plugin-transform-reserved-words@^7.12.13": + "integrity" "sha512-xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-runtime@7.12.1": + "integrity" "sha512-Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-module-imports" "^7.12.1" + "@babel/helper-plugin-utils" "^7.10.4" + "resolve" "^1.8.1" + "semver" "^5.5.1" + +"@babel/plugin-transform-shorthand-properties@^7.12.1", "@babel/plugin-transform-shorthand-properties@^7.12.13": + "integrity" "sha512-xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-spread@^7.12.1", "@babel/plugin-transform-spread@^7.12.13": + "integrity" "sha512-dUCrqPIowjqk5pXsx1zPftSq4sT0aCeZVAxhdgs3AMgyaDmoUT0G+5h3Dzja27t76aUEIJWlFgPJqJ/d4dbTtg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" + +"@babel/plugin-transform-sticky-regex@^7.12.1", "@babel/plugin-transform-sticky-regex@^7.12.13": + "integrity" "sha512-Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-template-literals@^7.12.1", "@babel/plugin-transform-template-literals@^7.12.13": + "integrity" "sha512-arIKlWYUgmNsF28EyfmiQHJLJFlAJNYkuQO10jL46ggjBpeb2re1P9K9YGxNJB45BqTbaslVysXDYm/g3sN/Qg==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-typeof-symbol@^7.12.1", "@babel/plugin-transform-typeof-symbol@^7.12.13": + "integrity" "sha512-eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-typescript@^7.12.1": + "integrity" "sha512-1bIYwnhRoetxkFonuZRtDZPFEjl1l5r+3ITkxLC3mlMaFja+GQFo94b/WHEPjqWLU9Bc+W4oFZbvCGe9eYMu1g==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.12.17.tgz" + "version" "7.12.17" + dependencies: + "@babel/helper-create-class-features-plugin" "^7.12.17" + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/plugin-syntax-typescript" "^7.12.13" + +"@babel/plugin-transform-unicode-escapes@^7.12.1", "@babel/plugin-transform-unicode-escapes@^7.12.13": + "integrity" "sha512-0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/plugin-transform-unicode-regex@^7.12.1", "@babel/plugin-transform-unicode-regex@^7.12.13": + "integrity" "sha512-mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA==" + "resolved" "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-create-regexp-features-plugin" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" + +"@babel/preset-env@^7.12.1", "@babel/preset-env@^7.8.4": + "integrity" "sha512-9PMijx8zFbCwTHrd2P4PJR5nWGH3zWebx2OcpTjqQrHhCiL2ssSR2Sc9ko2BsI2VmVBfoaQmPrlMTCui4LmXQg==" + "resolved" "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.17.tgz" + "version" "7.12.17" + dependencies: + "@babel/compat-data" "^7.12.13" + "@babel/helper-compilation-targets" "^7.12.17" + "@babel/helper-module-imports" "^7.12.13" + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/helper-validator-option" "^7.12.17" + "@babel/plugin-proposal-async-generator-functions" "^7.12.13" + "@babel/plugin-proposal-class-properties" "^7.12.13" + "@babel/plugin-proposal-dynamic-import" "^7.12.17" + "@babel/plugin-proposal-export-namespace-from" "^7.12.13" + "@babel/plugin-proposal-json-strings" "^7.12.13" + "@babel/plugin-proposal-logical-assignment-operators" "^7.12.13" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.13" + "@babel/plugin-proposal-numeric-separator" "^7.12.13" + "@babel/plugin-proposal-object-rest-spread" "^7.12.13" + "@babel/plugin-proposal-optional-catch-binding" "^7.12.13" + "@babel/plugin-proposal-optional-chaining" "^7.12.17" + "@babel/plugin-proposal-private-methods" "^7.12.13" + "@babel/plugin-proposal-unicode-property-regex" "^7.12.13" + "@babel/plugin-syntax-async-generators" "^7.8.0" + "@babel/plugin-syntax-class-properties" "^7.12.13" + "@babel/plugin-syntax-dynamic-import" "^7.8.0" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-json-strings" "^7.8.0" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.0" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" + "@babel/plugin-syntax-optional-chaining" "^7.8.0" + "@babel/plugin-syntax-top-level-await" "^7.12.13" + "@babel/plugin-transform-arrow-functions" "^7.12.13" + "@babel/plugin-transform-async-to-generator" "^7.12.13" + "@babel/plugin-transform-block-scoped-functions" "^7.12.13" + "@babel/plugin-transform-block-scoping" "^7.12.13" + "@babel/plugin-transform-classes" "^7.12.13" + "@babel/plugin-transform-computed-properties" "^7.12.13" + "@babel/plugin-transform-destructuring" "^7.12.13" + "@babel/plugin-transform-dotall-regex" "^7.12.13" + "@babel/plugin-transform-duplicate-keys" "^7.12.13" + "@babel/plugin-transform-exponentiation-operator" "^7.12.13" + "@babel/plugin-transform-for-of" "^7.12.13" + "@babel/plugin-transform-function-name" "^7.12.13" + "@babel/plugin-transform-literals" "^7.12.13" + "@babel/plugin-transform-member-expression-literals" "^7.12.13" + "@babel/plugin-transform-modules-amd" "^7.12.13" + "@babel/plugin-transform-modules-commonjs" "^7.12.13" + "@babel/plugin-transform-modules-systemjs" "^7.12.13" + "@babel/plugin-transform-modules-umd" "^7.12.13" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.13" + "@babel/plugin-transform-new-target" "^7.12.13" + "@babel/plugin-transform-object-super" "^7.12.13" + "@babel/plugin-transform-parameters" "^7.12.13" + "@babel/plugin-transform-property-literals" "^7.12.13" + "@babel/plugin-transform-regenerator" "^7.12.13" + "@babel/plugin-transform-reserved-words" "^7.12.13" + "@babel/plugin-transform-shorthand-properties" "^7.12.13" + "@babel/plugin-transform-spread" "^7.12.13" + "@babel/plugin-transform-sticky-regex" "^7.12.13" + "@babel/plugin-transform-template-literals" "^7.12.13" + "@babel/plugin-transform-typeof-symbol" "^7.12.13" + "@babel/plugin-transform-unicode-escapes" "^7.12.13" + "@babel/plugin-transform-unicode-regex" "^7.12.13" + "@babel/preset-modules" "^0.1.3" + "@babel/types" "^7.12.17" + "core-js-compat" "^3.8.0" + "semver" "^5.5.0" + +"@babel/preset-env@7.12.1": + "integrity" "sha512-H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg==" + "resolved" "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/compat-data" "^7.12.1" + "@babel/helper-compilation-targets" "^7.12.1" + "@babel/helper-module-imports" "^7.12.1" + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/helper-validator-option" "^7.12.1" + "@babel/plugin-proposal-async-generator-functions" "^7.12.1" + "@babel/plugin-proposal-class-properties" "^7.12.1" + "@babel/plugin-proposal-dynamic-import" "^7.12.1" + "@babel/plugin-proposal-export-namespace-from" "^7.12.1" + "@babel/plugin-proposal-json-strings" "^7.12.1" + "@babel/plugin-proposal-logical-assignment-operators" "^7.12.1" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.12.1" + "@babel/plugin-proposal-numeric-separator" "^7.12.1" + "@babel/plugin-proposal-object-rest-spread" "^7.12.1" + "@babel/plugin-proposal-optional-catch-binding" "^7.12.1" + "@babel/plugin-proposal-optional-chaining" "^7.12.1" + "@babel/plugin-proposal-private-methods" "^7.12.1" + "@babel/plugin-proposal-unicode-property-regex" "^7.12.1" + "@babel/plugin-syntax-async-generators" "^7.8.0" + "@babel/plugin-syntax-class-properties" "^7.12.1" + "@babel/plugin-syntax-dynamic-import" "^7.8.0" + "@babel/plugin-syntax-export-namespace-from" "^7.8.3" + "@babel/plugin-syntax-json-strings" "^7.8.0" + "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" + "@babel/plugin-syntax-numeric-separator" "^7.10.4" + "@babel/plugin-syntax-object-rest-spread" "^7.8.0" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" + "@babel/plugin-syntax-optional-chaining" "^7.8.0" + "@babel/plugin-syntax-top-level-await" "^7.12.1" + "@babel/plugin-transform-arrow-functions" "^7.12.1" + "@babel/plugin-transform-async-to-generator" "^7.12.1" + "@babel/plugin-transform-block-scoped-functions" "^7.12.1" + "@babel/plugin-transform-block-scoping" "^7.12.1" + "@babel/plugin-transform-classes" "^7.12.1" + "@babel/plugin-transform-computed-properties" "^7.12.1" + "@babel/plugin-transform-destructuring" "^7.12.1" + "@babel/plugin-transform-dotall-regex" "^7.12.1" + "@babel/plugin-transform-duplicate-keys" "^7.12.1" + "@babel/plugin-transform-exponentiation-operator" "^7.12.1" + "@babel/plugin-transform-for-of" "^7.12.1" + "@babel/plugin-transform-function-name" "^7.12.1" + "@babel/plugin-transform-literals" "^7.12.1" + "@babel/plugin-transform-member-expression-literals" "^7.12.1" + "@babel/plugin-transform-modules-amd" "^7.12.1" + "@babel/plugin-transform-modules-commonjs" "^7.12.1" + "@babel/plugin-transform-modules-systemjs" "^7.12.1" + "@babel/plugin-transform-modules-umd" "^7.12.1" + "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.1" + "@babel/plugin-transform-new-target" "^7.12.1" + "@babel/plugin-transform-object-super" "^7.12.1" + "@babel/plugin-transform-parameters" "^7.12.1" + "@babel/plugin-transform-property-literals" "^7.12.1" + "@babel/plugin-transform-regenerator" "^7.12.1" + "@babel/plugin-transform-reserved-words" "^7.12.1" + "@babel/plugin-transform-shorthand-properties" "^7.12.1" + "@babel/plugin-transform-spread" "^7.12.1" + "@babel/plugin-transform-sticky-regex" "^7.12.1" + "@babel/plugin-transform-template-literals" "^7.12.1" + "@babel/plugin-transform-typeof-symbol" "^7.12.1" + "@babel/plugin-transform-unicode-escapes" "^7.12.1" + "@babel/plugin-transform-unicode-regex" "^7.12.1" + "@babel/preset-modules" "^0.1.3" + "@babel/types" "^7.12.1" + "core-js-compat" "^3.6.2" + "semver" "^5.5.0" + +"@babel/preset-modules@^0.1.3": + "integrity" "sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg==" + "resolved" "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz" + "version" "0.1.4" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" + "@babel/plugin-transform-dotall-regex" "^7.4.4" + "@babel/types" "^7.4.4" + "esutils" "^2.0.2" + +"@babel/preset-react@^7.12.5": + "integrity" "sha512-TYM0V9z6Abb6dj1K7i5NrEhA13oS5ujUYQYDfqIBXYHOc2c2VkFgc+q9kyssIyUfy4/hEwqrgSlJ/Qgv8zJLsA==" + "resolved" "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/helper-plugin-utils" "^7.12.13" + "@babel/plugin-transform-react-display-name" "^7.12.13" + "@babel/plugin-transform-react-jsx" "^7.12.13" + "@babel/plugin-transform-react-jsx-development" "^7.12.12" + "@babel/plugin-transform-react-pure-annotations" "^7.12.1" + +"@babel/preset-react@7.12.1": + "integrity" "sha512-euCExymHCi0qB9u5fKw7rvlw7AZSjw/NaB9h7EkdTt5+yHRrXdiRTh7fkG3uBPpJg82CqLfp1LHLqWGSCrab+g==" + "resolved" "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-transform-react-display-name" "^7.12.1" + "@babel/plugin-transform-react-jsx" "^7.12.1" + "@babel/plugin-transform-react-jsx-development" "^7.12.1" + "@babel/plugin-transform-react-jsx-self" "^7.12.1" + "@babel/plugin-transform-react-jsx-source" "^7.12.1" + "@babel/plugin-transform-react-pure-annotations" "^7.12.1" + +"@babel/preset-typescript@7.12.1": + "integrity" "sha512-hNK/DhmoJPsksdHuI/RVrcEws7GN5eamhi28JkO52MqIxU8Z0QpmiSOQxZHWOHV7I3P4UjHV97ay4TcamMA6Kw==" + "resolved" "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "@babel/helper-plugin-utils" "^7.10.4" + "@babel/plugin-transform-typescript" "^7.12.1" + +"@babel/runtime-corejs3@^7.10.2": + "integrity" "sha512-ngR7yhNTjDxxe1VYmhqQqqXZWujGb6g0IoA4qeG6MxNGRnIw2Zo8ImY8HfaQ7l3T6GklWhdNfyhWk0C0iocdVA==" + "resolved" "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.12.18.tgz" + "version" "7.12.18" + dependencies: + "core-js-pure" "^3.0.0" + "regenerator-runtime" "^0.13.4" + +"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.2", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.1", "@babel/runtime@^7.3.1", "@babel/runtime@^7.4.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.7.2", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.3", "@babel/runtime@^7.8.4", "@babel/runtime@^7.8.7": + "integrity" "sha512-BogPQ7ciE6SYAUPtlm9tWbgI9+2AgqSam6QivMgXgAT+fKbgppaj4ZX15MHeLC1PVF5sNk70huBu20XxWOs8Cg==" + "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.18.tgz" + "version" "7.12.18" + dependencies: + "regenerator-runtime" "^0.13.4" + +"@babel/runtime@^7.12.5": + "integrity" "sha512-h+ilqoX998mRVM5FtB5ijRuHUDVt5l3yfoOi2uh18Z/O3hvyaHQ39NpxVkCIG5yFs+mLq/ewFp8Bss6zmWv6ZA==" + "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.7.tgz" + "version" "7.13.7" + dependencies: + "regenerator-runtime" "^0.13.4" + +"@babel/runtime@^7.9.2": + "integrity" "sha512-h+ilqoX998mRVM5FtB5ijRuHUDVt5l3yfoOi2uh18Z/O3hvyaHQ39NpxVkCIG5yFs+mLq/ewFp8Bss6zmWv6ZA==" + "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.7.tgz" + "version" "7.13.7" + dependencies: + "regenerator-runtime" "^0.13.4" + +"@babel/runtime@7.12.1": + "integrity" "sha512-J5AIf3vPj3UwXaAzb5j1xM4WAQDX3EMgemF8rjCP3SoW09LfRKAXQKt6CoVYl230P6iWdRcBbnLDDdnqWxZSCA==" + "resolved" "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.1.tgz" + "version" "7.12.1" + dependencies: + "regenerator-runtime" "^0.13.4" + +"@babel/template@^7.10.4", "@babel/template@^7.12.13", "@babel/template@^7.3.3": + "integrity" "sha512-/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==" + "resolved" "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz" + "version" "7.12.13" + dependencies: + "@babel/code-frame" "^7.12.13" + "@babel/parser" "^7.12.13" + "@babel/types" "^7.12.13" + +"@babel/traverse@^7.1.0", "@babel/traverse@^7.12.1", "@babel/traverse@^7.12.13", "@babel/traverse@^7.12.17", "@babel/traverse@^7.4.5", "@babel/traverse@^7.7.0": + "integrity" "sha512-LGkTqDqdiwC6Q7fWSwQoas/oyiEYw6Hqjve5KOSykXkmFJFqzvGMb9niaUEag3Rlve492Mkye3gLw9FTv94fdQ==" + "resolved" "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.17.tgz" + "version" "7.12.17" + dependencies: + "@babel/code-frame" "^7.12.13" + "@babel/generator" "^7.12.17" + "@babel/helper-function-name" "^7.12.13" + "@babel/helper-split-export-declaration" "^7.12.13" + "@babel/parser" "^7.12.17" + "@babel/types" "^7.12.17" + "debug" "^4.1.0" + "globals" "^11.1.0" + "lodash" "^4.17.19" + +"@babel/types@^7.0.0", "@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/types@^7.12.17", "@babel/types@^7.12.6", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4", "@babel/types@^7.7.0": + "integrity" "sha512-tNMDjcv/4DIcHxErTgwB9q2ZcYyN0sUfgGKUK/mm1FJK7Wz+KstoEekxrl/tBiNDgLK1HGi+sppj1An/1DR4fQ==" + "resolved" "https://registry.npmjs.org/@babel/types/-/types-7.12.17.tgz" + "version" "7.12.17" + dependencies: + "@babel/helper-validator-identifier" "^7.12.11" + "lodash" "^4.17.19" + "to-fast-properties" "^2.0.0" + +"@bcoe/v8-coverage@^0.2.3": + "integrity" "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==" + "resolved" "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz" + "version" "0.2.3" + +"@cnakazawa/watch@^1.0.3": + "integrity" "sha512-v9kIhKwjeZThiWrLmj0y17CWoyddASLj9O2yvbZkbvw/N3rWOYy9zkV66ursAoVr0mV15bL8g0c4QZUE6cdDoQ==" + "resolved" "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.4.tgz" + "version" "1.0.4" + dependencies: + "exec-sh" "^0.3.2" + "minimist" "^1.2.0" + +"@csstools/convert-colors@^1.4.0": + "integrity" "sha512-5a6wqoJV/xEdbRNKVo6I4hO3VjyDq//8q2f9I6PBAvMesJHFauXDorcNCsr9RzvsZnaWi5NYCcfyqP1QeFHFbw==" + "resolved" "https://registry.npmjs.org/@csstools/convert-colors/-/convert-colors-1.4.0.tgz" + "version" "1.4.0" + +"@csstools/normalize.css@^10.1.0": + "integrity" "sha512-ij4wRiunFfaJxjB0BdrYHIH8FxBJpOwNPhhAcunlmPdXudL1WQV1qoP9un6JsEBAgQH+7UXyyjh0g7jTxXK6tg==" + "resolved" "https://registry.npmjs.org/@csstools/normalize.css/-/normalize.css-10.1.0.tgz" + "version" "10.1.0" + +"@emotion/cache@^10.0.27": + "integrity" "sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==" + "resolved" "https://registry.npmjs.org/@emotion/cache/-/cache-10.0.29.tgz" + "version" "10.0.29" + dependencies: + "@emotion/sheet" "0.9.4" + "@emotion/stylis" "0.8.5" + "@emotion/utils" "0.11.3" + "@emotion/weak-memoize" "0.2.5" + +"@emotion/hash@^0.8.0", "@emotion/hash@0.8.0": + "integrity" "sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==" + "resolved" "https://registry.npmjs.org/@emotion/hash/-/hash-0.8.0.tgz" + "version" "0.8.0" + +"@emotion/is-prop-valid@^0.8.8": + "integrity" "sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==" + "resolved" "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-0.8.8.tgz" + "version" "0.8.8" + dependencies: + "@emotion/memoize" "0.7.4" + +"@emotion/memoize@0.7.4": + "integrity" "sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==" + "resolved" "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.7.4.tgz" + "version" "0.7.4" + +"@emotion/serialize@^0.11.15", "@emotion/serialize@^0.11.16": + "integrity" "sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==" + "resolved" "https://registry.npmjs.org/@emotion/serialize/-/serialize-0.11.16.tgz" + "version" "0.11.16" + dependencies: + "@emotion/hash" "0.8.0" + "@emotion/memoize" "0.7.4" + "@emotion/unitless" "0.7.5" + "@emotion/utils" "0.11.3" + "csstype" "^2.5.7" + +"@emotion/sheet@0.9.4": + "integrity" "sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==" + "resolved" "https://registry.npmjs.org/@emotion/sheet/-/sheet-0.9.4.tgz" + "version" "0.9.4" + +"@emotion/stylis@^0.8.4", "@emotion/stylis@0.8.5": + "integrity" "sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==" + "resolved" "https://registry.npmjs.org/@emotion/stylis/-/stylis-0.8.5.tgz" + "version" "0.8.5" + +"@emotion/unitless@^0.7.4", "@emotion/unitless@0.7.5": + "integrity" "sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==" + "resolved" "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.7.5.tgz" + "version" "0.7.5" + +"@emotion/utils@0.11.3": + "integrity" "sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==" + "resolved" "https://registry.npmjs.org/@emotion/utils/-/utils-0.11.3.tgz" + "version" "0.11.3" + +"@emotion/weak-memoize@0.2.5": + "integrity" "sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==" + "resolved" "https://registry.npmjs.org/@emotion/weak-memoize/-/weak-memoize-0.2.5.tgz" + "version" "0.2.5" + +"@eslint/eslintrc@^0.3.0": + "integrity" "sha512-1JTKgrOKAHVivSvOYw+sJOunkBjUOvjqWk1DPja7ZFhIS2mX/4EgTT8M7eTK9jrKhL/FvXXEbQwIs3pg1xp3dg==" + "resolved" "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.3.0.tgz" + "version" "0.3.0" + dependencies: + "ajv" "^6.12.4" + "debug" "^4.1.1" + "espree" "^7.3.0" + "globals" "^12.1.0" + "ignore" "^4.0.6" + "import-fresh" "^3.2.1" + "js-yaml" "^3.13.1" + "lodash" "^4.17.20" + "minimatch" "^3.0.4" + "strip-json-comments" "^3.1.1" + +"@hapi/address@2.x.x": + "integrity" "sha512-QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ==" + "resolved" "https://registry.npmjs.org/@hapi/address/-/address-2.1.4.tgz" + "version" "2.1.4" + +"@hapi/bourne@1.x.x": + "integrity" "sha512-1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA==" + "resolved" "https://registry.npmjs.org/@hapi/bourne/-/bourne-1.3.2.tgz" + "version" "1.3.2" + +"@hapi/hoek@^8.3.0", "@hapi/hoek@8.x.x": + "integrity" "sha512-yN7kbciD87WzLGc5539Tn0sApjyiGHAJgKvG9W8C7O+6c7qmoQMfVs0W4bX17eqz6C78QJqqFrtgdK5EWf6Qow==" + "resolved" "https://registry.npmjs.org/@hapi/hoek/-/hoek-8.5.1.tgz" + "version" "8.5.1" + +"@hapi/joi@^15.1.0": + "integrity" "sha512-entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ==" + "resolved" "https://registry.npmjs.org/@hapi/joi/-/joi-15.1.1.tgz" + "version" "15.1.1" + dependencies: + "@hapi/address" "2.x.x" + "@hapi/bourne" "1.x.x" + "@hapi/hoek" "8.x.x" + "@hapi/topo" "3.x.x" + +"@hapi/topo@3.x.x": + "integrity" "sha512-tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ==" + "resolved" "https://registry.npmjs.org/@hapi/topo/-/topo-3.1.6.tgz" + "version" "3.1.6" + dependencies: + "@hapi/hoek" "^8.3.0" + +"@istanbuljs/load-nyc-config@^1.0.0": + "integrity" "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==" + "resolved" "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz" + "version" "1.1.0" + dependencies: + "camelcase" "^5.3.1" + "find-up" "^4.1.0" + "get-package-type" "^0.1.0" + "js-yaml" "^3.13.1" + "resolve-from" "^5.0.0" + +"@istanbuljs/schema@^0.1.2": + "integrity" "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==" + "resolved" "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz" + "version" "0.1.3" + +"@jest/console@^26.6.2": + "integrity" "sha512-IY1R2i2aLsLr7Id3S6p2BA82GNWryt4oSvEXLAKc+L2zdi89dSkE8xC1C+0kpATG4JhBJREnQOH7/zmccM2B0g==" + "resolved" "https://registry.npmjs.org/@jest/console/-/console-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "@types/node" "*" + "chalk" "^4.0.0" + "jest-message-util" "^26.6.2" + "jest-util" "^26.6.2" + "slash" "^3.0.0" + +"@jest/core@^26.6.0", "@jest/core@^26.6.3": + "integrity" "sha512-xvV1kKbhfUqFVuZ8Cyo+JPpipAHHAV3kcDBftiduK8EICXmTFddryy3P7NfZt8Pv37rA9nEJBKCCkglCPt/Xjw==" + "resolved" "https://registry.npmjs.org/@jest/core/-/core-26.6.3.tgz" + "version" "26.6.3" + dependencies: + "@jest/console" "^26.6.2" + "@jest/reporters" "^26.6.2" + "@jest/test-result" "^26.6.2" + "@jest/transform" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/node" "*" + "ansi-escapes" "^4.2.1" + "chalk" "^4.0.0" + "exit" "^0.1.2" + "graceful-fs" "^4.2.4" + "jest-changed-files" "^26.6.2" + "jest-config" "^26.6.3" + "jest-haste-map" "^26.6.2" + "jest-message-util" "^26.6.2" + "jest-regex-util" "^26.0.0" + "jest-resolve" "^26.6.2" + "jest-resolve-dependencies" "^26.6.3" + "jest-runner" "^26.6.3" + "jest-runtime" "^26.6.3" + "jest-snapshot" "^26.6.2" + "jest-util" "^26.6.2" + "jest-validate" "^26.6.2" + "jest-watcher" "^26.6.2" + "micromatch" "^4.0.2" + "p-each-series" "^2.1.0" + "rimraf" "^3.0.0" + "slash" "^3.0.0" + "strip-ansi" "^6.0.0" + +"@jest/environment@^26.6.0", "@jest/environment@^26.6.2": + "integrity" "sha512-nFy+fHl28zUrRsCeMB61VDThV1pVTtlEokBRgqPrcT1JNq4yRNIyTHfyht6PqtUvY9IsuLGTrbG8kPXjSZIZwA==" + "resolved" "https://registry.npmjs.org/@jest/environment/-/environment-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/fake-timers" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/node" "*" + "jest-mock" "^26.6.2" + +"@jest/fake-timers@^26.6.2": + "integrity" "sha512-14Uleatt7jdzefLPYM3KLcnUl1ZNikaKq34enpb5XG9i81JpppDb5muZvonvKyrl7ftEHkKS5L5/eB/kxJ+bvA==" + "resolved" "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "@sinonjs/fake-timers" "^6.0.1" + "@types/node" "*" + "jest-message-util" "^26.6.2" + "jest-mock" "^26.6.2" + "jest-util" "^26.6.2" + +"@jest/globals@^26.6.2": + "integrity" "sha512-85Ltnm7HlB/KesBUuALwQ68YTU72w9H2xW9FjZ1eL1U3lhtefjjl5c2MiUbpXt/i6LaPRvoOFJ22yCBSfQ0JIA==" + "resolved" "https://registry.npmjs.org/@jest/globals/-/globals-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/environment" "^26.6.2" + "@jest/types" "^26.6.2" + "expect" "^26.6.2" + +"@jest/reporters@^26.6.2": + "integrity" "sha512-h2bW53APG4HvkOnVMo8q3QXa6pcaNt1HkwVsOPMBV6LD/q9oSpxNSYZQYkAnjdMjrJ86UuYeLo+aEZClV6opnw==" + "resolved" "https://registry.npmjs.org/@jest/reporters/-/reporters-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@bcoe/v8-coverage" "^0.2.3" + "@jest/console" "^26.6.2" + "@jest/test-result" "^26.6.2" + "@jest/transform" "^26.6.2" + "@jest/types" "^26.6.2" + "chalk" "^4.0.0" + "collect-v8-coverage" "^1.0.0" + "exit" "^0.1.2" + "glob" "^7.1.2" + "graceful-fs" "^4.2.4" + "istanbul-lib-coverage" "^3.0.0" + "istanbul-lib-instrument" "^4.0.3" + "istanbul-lib-report" "^3.0.0" + "istanbul-lib-source-maps" "^4.0.0" + "istanbul-reports" "^3.0.2" + "jest-haste-map" "^26.6.2" + "jest-resolve" "^26.6.2" + "jest-util" "^26.6.2" + "jest-worker" "^26.6.2" + "slash" "^3.0.0" + "source-map" "^0.6.0" + "string-length" "^4.0.1" + "terminal-link" "^2.0.0" + "v8-to-istanbul" "^7.0.0" + optionalDependencies: + "node-notifier" "^8.0.0" + +"@jest/source-map@^26.6.2": + "integrity" "sha512-YwYcCwAnNmOVsZ8mr3GfnzdXDAl4LaenZP5z+G0c8bzC9/dugL8zRmxZzdoTl4IaS3CryS1uWnROLPFmb6lVvA==" + "resolved" "https://registry.npmjs.org/@jest/source-map/-/source-map-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "callsites" "^3.0.0" + "graceful-fs" "^4.2.4" + "source-map" "^0.6.0" + +"@jest/test-result@^26.6.0", "@jest/test-result@^26.6.2": + "integrity" "sha512-5O7H5c/7YlojphYNrK02LlDIV2GNPYisKwHm2QTKjNZeEzezCbwYs9swJySv2UfPMyZ0VdsmMv7jIlD/IKYQpQ==" + "resolved" "https://registry.npmjs.org/@jest/test-result/-/test-result-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/console" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/istanbul-lib-coverage" "^2.0.0" + "collect-v8-coverage" "^1.0.0" + +"@jest/test-sequencer@^26.6.3": + "integrity" "sha512-YHlVIjP5nfEyjlrSr8t/YdNfU/1XEt7c5b4OxcXCjyRhjzLYu/rO69/WHPuYcbCWkz8kAeZVZp2N2+IOLLEPGw==" + "resolved" "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-26.6.3.tgz" + "version" "26.6.3" + dependencies: + "@jest/test-result" "^26.6.2" + "graceful-fs" "^4.2.4" + "jest-haste-map" "^26.6.2" + "jest-runner" "^26.6.3" + "jest-runtime" "^26.6.3" + +"@jest/transform@^26.6.2": + "integrity" "sha512-E9JjhUgNzvuQ+vVAL21vlyfy12gP0GhazGgJC4h6qUt1jSdUXGWJ1wfu/X7Sd8etSgxV4ovT1pb9v5D6QW4XgA==" + "resolved" "https://registry.npmjs.org/@jest/transform/-/transform-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@babel/core" "^7.1.0" + "@jest/types" "^26.6.2" + "babel-plugin-istanbul" "^6.0.0" + "chalk" "^4.0.0" + "convert-source-map" "^1.4.0" + "fast-json-stable-stringify" "^2.0.0" + "graceful-fs" "^4.2.4" + "jest-haste-map" "^26.6.2" + "jest-regex-util" "^26.0.0" + "jest-util" "^26.6.2" + "micromatch" "^4.0.2" + "pirates" "^4.0.1" + "slash" "^3.0.0" + "source-map" "^0.6.1" + "write-file-atomic" "^3.0.0" + +"@jest/types@^26.6.0", "@jest/types@^26.6.2": + "integrity" "sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==" + "resolved" "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@types/istanbul-lib-coverage" "^2.0.0" + "@types/istanbul-reports" "^3.0.0" + "@types/node" "*" + "@types/yargs" "^15.0.0" + "chalk" "^4.0.0" + +"@material-ui/core@^4.0.0", "@material-ui/core@^4.11.3", "@material-ui/core@^4.9.10": + "integrity" "sha512-Adt40rGW6Uds+cAyk3pVgcErpzU/qxc7KBR94jFHBYretU4AtWZltYcNsbeMn9tXL86jjVL1kuGcIHsgLgFGRw==" + "resolved" "https://registry.npmjs.org/@material-ui/core/-/core-4.11.3.tgz" + "version" "4.11.3" + dependencies: + "@babel/runtime" "^7.4.4" + "@material-ui/styles" "^4.11.3" + "@material-ui/system" "^4.11.3" + "@material-ui/types" "^5.1.0" + "@material-ui/utils" "^4.11.2" + "@types/react-transition-group" "^4.2.0" + "clsx" "^1.0.4" + "hoist-non-react-statics" "^3.3.2" + "popper.js" "1.16.1-lts" + "prop-types" "^15.7.2" + "react-is" "^16.8.0 || ^17.0.0" + "react-transition-group" "^4.4.0" + +"@material-ui/icons@^4.11.2": + "integrity" "sha512-fQNsKX2TxBmqIGJCSi3tGTO/gZ+eJgWmMJkgDiOfyNaunNaxcklJQFaFogYcFl0qFuaEz1qaXYXboa/bUXVSOQ==" + "resolved" "https://registry.npmjs.org/@material-ui/icons/-/icons-4.11.2.tgz" + "version" "4.11.2" + dependencies: + "@babel/runtime" "^7.4.4" + +"@material-ui/lab@^4.0.0-alpha.57": + "integrity" "sha512-qo/IuIQOmEKtzmRD2E4Aa6DB4A87kmY6h0uYhjUmrrgmEAgbbw9etXpWPVXuRK6AGIQCjFzV6WO2i21m1R4FCw==" + "resolved" "https://registry.npmjs.org/@material-ui/lab/-/lab-4.0.0-alpha.57.tgz" + "version" "4.0.0-alpha.57" + dependencies: + "@babel/runtime" "^7.4.4" + "@material-ui/utils" "^4.11.2" + "clsx" "^1.0.4" + "prop-types" "^15.7.2" + "react-is" "^16.8.0 || ^17.0.0" + +"@material-ui/styles@^4.11.3": + "integrity" "sha512-HzVzCG+PpgUGMUYEJ2rTEmQYeonGh41BYfILNFb/1ueqma+p1meSdu4RX6NjxYBMhf7k+jgfHFTTz+L1SXL/Zg==" + "resolved" "https://registry.npmjs.org/@material-ui/styles/-/styles-4.11.3.tgz" + "version" "4.11.3" + dependencies: + "@babel/runtime" "^7.4.4" + "@emotion/hash" "^0.8.0" + "@material-ui/types" "^5.1.0" + "@material-ui/utils" "^4.11.2" + "clsx" "^1.0.4" + "csstype" "^2.5.2" + "hoist-non-react-statics" "^3.3.2" + "jss" "^10.5.1" + "jss-plugin-camel-case" "^10.5.1" + "jss-plugin-default-unit" "^10.5.1" + "jss-plugin-global" "^10.5.1" + "jss-plugin-nested" "^10.5.1" + "jss-plugin-props-sort" "^10.5.1" + "jss-plugin-rule-value-function" "^10.5.1" + "jss-plugin-vendor-prefixer" "^10.5.1" + "prop-types" "^15.7.2" + +"@material-ui/system@^4.11.3": + "integrity" "sha512-SY7otguNGol41Mu2Sg6KbBP1ZRFIbFLHGK81y4KYbsV2yIcaEPOmsCK6zwWlp+2yTV3J/VwT6oSBARtGIVdXPw==" + "resolved" "https://registry.npmjs.org/@material-ui/system/-/system-4.11.3.tgz" + "version" "4.11.3" + dependencies: + "@babel/runtime" "^7.4.4" + "@material-ui/utils" "^4.11.2" + "csstype" "^2.5.2" + "prop-types" "^15.7.2" + +"@material-ui/types@^5.1.0": + "integrity" "sha512-7cqRjrY50b8QzRSYyhSpx4WRw2YuO0KKIGQEVk5J8uoz2BanawykgZGoWEqKm7pVIbzFDN0SpPcVV4IhOFkl8A==" + "resolved" "https://registry.npmjs.org/@material-ui/types/-/types-5.1.0.tgz" + "version" "5.1.0" + +"@material-ui/utils@^4.11.2": + "integrity" "sha512-Uul8w38u+PICe2Fg2pDKCaIG7kOyhowZ9vjiC1FsVwPABTW8vPPKfF6OvxRq3IiBaI1faOJmgdvMG7rMJARBhA==" + "resolved" "https://registry.npmjs.org/@material-ui/utils/-/utils-4.11.2.tgz" + "version" "4.11.2" + dependencies: + "@babel/runtime" "^7.4.4" + "prop-types" "^15.7.2" + "react-is" "^16.8.0 || ^17.0.0" + +"@nodelib/fs.scandir@2.1.4": + "integrity" "sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA==" + "resolved" "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz" + "version" "2.1.4" + dependencies: + "@nodelib/fs.stat" "2.0.4" + "run-parallel" "^1.1.9" + +"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.4": + "integrity" "sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==" + "resolved" "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz" + "version" "2.0.4" + +"@nodelib/fs.walk@^1.2.3": + "integrity" "sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==" + "resolved" "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz" + "version" "1.2.6" + dependencies: + "@nodelib/fs.scandir" "2.1.4" + "fastq" "^1.6.0" + +"@npmcli/move-file@^1.0.1": + "integrity" "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==" + "resolved" "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz" + "version" "1.1.2" + dependencies: + "mkdirp" "^1.0.4" + "rimraf" "^3.0.2" + +"@pmmmwh/react-refresh-webpack-plugin@0.4.3": + "integrity" "sha512-br5Qwvh8D2OQqSXpd1g/xqXKnK0r+Jz6qVKBbWmpUcrbGOxUrf39V5oZ1876084CGn18uMdR5uvPqBv9UqtBjQ==" + "resolved" "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.4.3.tgz" + "version" "0.4.3" + dependencies: + "ansi-html" "^0.0.7" + "error-stack-parser" "^2.0.6" + "html-entities" "^1.2.1" + "native-url" "^0.2.6" + "schema-utils" "^2.6.5" + "source-map" "^0.7.3" + +"@rollup/plugin-node-resolve@^7.1.1": + "integrity" "sha512-RxtSL3XmdTAE2byxekYLnx+98kEUOrPHF/KRVjLH+DEIHy6kjIw7YINQzn+NXiH/NTrQLAwYs0GWB+csWygA9Q==" + "resolved" "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-7.1.3.tgz" + "version" "7.1.3" + dependencies: + "@rollup/pluginutils" "^3.0.8" + "@types/resolve" "0.0.8" + "builtin-modules" "^3.1.0" + "is-module" "^1.0.0" + "resolve" "^1.14.2" + +"@rollup/plugin-replace@^2.3.1": + "integrity" "sha512-XwC1oK5rrtRJ0tn1ioLHS6OV5JTluJF7QE1J/q1hN3bquwjnVxjtMyY9iCnoyH9DQbf92CxajB3o98wZbP3oAQ==" + "resolved" "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.1.tgz" + "version" "2.4.1" + dependencies: + "@rollup/pluginutils" "^3.1.0" + "magic-string" "^0.25.7" + +"@rollup/pluginutils@^3.0.8", "@rollup/pluginutils@^3.1.0": + "integrity" "sha512-GksZ6pr6TpIjHm8h9lSQ8pi8BE9VeubNT0OMJ3B5uZJ8pz73NPiqOtCog/x2/QzM1ENChPKxMDhiQuRHsqc+lg==" + "resolved" "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-3.1.0.tgz" + "version" "3.1.0" + dependencies: + "@types/estree" "0.0.39" + "estree-walker" "^1.0.1" + "picomatch" "^2.2.2" + +"@sinonjs/commons@^1.7.0": + "integrity" "sha512-sruwd86RJHdsVf/AtBoijDmUqJp3B6hF/DGC23C+JaegnDHaZyewCjoVGTdg3J0uz3Zs7NnIT05OBOmML72lQw==" + "resolved" "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.2.tgz" + "version" "1.8.2" + dependencies: + "type-detect" "4.0.8" + +"@sinonjs/fake-timers@^6.0.1": + "integrity" "sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==" + "resolved" "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-6.0.1.tgz" + "version" "6.0.1" + dependencies: + "@sinonjs/commons" "^1.7.0" + +"@surma/rollup-plugin-off-main-thread@^1.1.1": + "integrity" "sha512-yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A==" + "resolved" "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-1.4.2.tgz" + "version" "1.4.2" + dependencies: + "ejs" "^2.6.1" + "magic-string" "^0.25.0" + +"@svgr/babel-plugin-add-jsx-attribute@^5.4.0": + "integrity" "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz" + "version" "5.4.0" + +"@svgr/babel-plugin-remove-jsx-attribute@^5.4.0": + "integrity" "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz" + "version" "5.4.0" + +"@svgr/babel-plugin-remove-jsx-empty-expression@^5.0.1": + "integrity" "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz" + "version" "5.0.1" + +"@svgr/babel-plugin-replace-jsx-attribute-value@^5.0.1": + "integrity" "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz" + "version" "5.0.1" + +"@svgr/babel-plugin-svg-dynamic-title@^5.4.0": + "integrity" "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz" + "version" "5.4.0" + +"@svgr/babel-plugin-svg-em-dimensions@^5.4.0": + "integrity" "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz" + "version" "5.4.0" + +"@svgr/babel-plugin-transform-react-native-svg@^5.4.0": + "integrity" "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz" + "version" "5.4.0" + +"@svgr/babel-plugin-transform-svg-component@^5.5.0": + "integrity" "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==" + "resolved" "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz" + "version" "5.5.0" + +"@svgr/babel-preset@^5.5.0": + "integrity" "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==" + "resolved" "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz" + "version" "5.5.0" + dependencies: + "@svgr/babel-plugin-add-jsx-attribute" "^5.4.0" + "@svgr/babel-plugin-remove-jsx-attribute" "^5.4.0" + "@svgr/babel-plugin-remove-jsx-empty-expression" "^5.0.1" + "@svgr/babel-plugin-replace-jsx-attribute-value" "^5.0.1" + "@svgr/babel-plugin-svg-dynamic-title" "^5.4.0" + "@svgr/babel-plugin-svg-em-dimensions" "^5.4.0" + "@svgr/babel-plugin-transform-react-native-svg" "^5.4.0" + "@svgr/babel-plugin-transform-svg-component" "^5.5.0" + +"@svgr/core@^5.5.0": + "integrity" "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==" + "resolved" "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz" + "version" "5.5.0" + dependencies: + "@svgr/plugin-jsx" "^5.5.0" + "camelcase" "^6.2.0" + "cosmiconfig" "^7.0.0" + +"@svgr/hast-util-to-babel-ast@^5.5.0": + "integrity" "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==" + "resolved" "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz" + "version" "5.5.0" + dependencies: + "@babel/types" "^7.12.6" + +"@svgr/plugin-jsx@^5.5.0": + "integrity" "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==" + "resolved" "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz" + "version" "5.5.0" + dependencies: + "@babel/core" "^7.12.3" + "@svgr/babel-preset" "^5.5.0" + "@svgr/hast-util-to-babel-ast" "^5.5.0" + "svg-parser" "^2.0.2" + +"@svgr/plugin-svgo@^5.5.0": + "integrity" "sha512-r5swKk46GuQl4RrVejVwpeeJaydoxkdwkM1mBKOgJLBUJPGaLci6ylg/IjhrRsREKDkr4kbMWdgOtbXEh0fyLQ==" + "resolved" "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz" + "version" "5.5.0" + dependencies: + "cosmiconfig" "^7.0.0" + "deepmerge" "^4.2.2" + "svgo" "^1.2.2" + +"@svgr/webpack@5.5.0": + "integrity" "sha512-DOBOK255wfQxguUta2INKkzPj6AIS6iafZYiYmHn6W3pHlycSRRlvWKCfLDG10fXfLWqE3DJHgRUOyJYmARa7g==" + "resolved" "https://registry.npmjs.org/@svgr/webpack/-/webpack-5.5.0.tgz" + "version" "5.5.0" + dependencies: + "@babel/core" "^7.12.3" + "@babel/plugin-transform-react-constant-elements" "^7.12.1" + "@babel/preset-env" "^7.12.1" + "@babel/preset-react" "^7.12.5" + "@svgr/core" "^5.5.0" + "@svgr/plugin-jsx" "^5.5.0" + "@svgr/plugin-svgo" "^5.5.0" + "loader-utils" "^2.0.0" + +"@testing-library/dom@^7.28.1", "@testing-library/dom@>=7.21.4": + "integrity" "sha512-vzTsAXa439ptdvav/4lsKRcGpAQX7b6wBIqia7+iNzqGJ5zjswApxA6jDAsexrc6ue9krWcbh8o+LYkBXW+GCQ==" + "resolved" "https://registry.npmjs.org/@testing-library/dom/-/dom-7.29.6.tgz" + "version" "7.29.6" + dependencies: + "@babel/code-frame" "^7.10.4" + "@babel/runtime" "^7.12.5" + "@types/aria-query" "^4.2.0" + "aria-query" "^4.2.2" + "chalk" "^4.1.0" + "dom-accessibility-api" "^0.5.4" + "lz-string" "^1.4.4" + "pretty-format" "^26.6.2" + +"@testing-library/jest-dom@^5.11.4": + "integrity" "sha512-Mn2gnA9d1wStlAIT2NU8J15LNob0YFBVjs2aEQ3j8rsfRQo+lAs7/ui1i2TGaJjapLmuNPLTsrm+nPjmZDwpcQ==" + "resolved" "https://registry.npmjs.org/@testing-library/jest-dom/-/jest-dom-5.11.9.tgz" + "version" "5.11.9" + dependencies: + "@babel/runtime" "^7.9.2" + "@types/testing-library__jest-dom" "^5.9.1" + "aria-query" "^4.2.2" + "chalk" "^3.0.0" + "css" "^3.0.0" + "css.escape" "^1.5.1" + "lodash" "^4.17.15" + "redent" "^3.0.0" + +"@testing-library/react@^11.1.0": + "integrity" "sha512-yEx7oIa/UWLe2F2dqK0FtMF9sJWNXD+2PPtp39BvE0Kh9MJ9Kl0HrZAgEuhUJR+Lx8Di6Xz+rKwSdEPY2UV8ZQ==" + "resolved" "https://registry.npmjs.org/@testing-library/react/-/react-11.2.5.tgz" + "version" "11.2.5" + dependencies: + "@babel/runtime" "^7.12.5" + "@testing-library/dom" "^7.28.1" + +"@testing-library/user-event@^12.1.10": + "integrity" "sha512-IdSHkWfbeSSJRFlldvHDWfVX0U18TbXIvLSGII+JbqkJrsflFr4OWlQIua0TvcVVJNna3BNrNvRSvpQ0yvSXlA==" + "resolved" "https://registry.npmjs.org/@testing-library/user-event/-/user-event-12.7.3.tgz" + "version" "12.7.3" + dependencies: + "@babel/runtime" "^7.12.5" + +"@types/anymatch@*": + "integrity" "sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA==" + "resolved" "https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz" + "version" "1.3.1" + +"@types/aria-query@^4.2.0": + "integrity" "sha512-S6oPal772qJZHoRZLFc/XoZW2gFvwXusYUmXPXkgxJLuEk2vOt7jc4Yo6z/vtI0EBkbPBVrJJ0B+prLIKiWqHg==" + "resolved" "https://registry.npmjs.org/@types/aria-query/-/aria-query-4.2.1.tgz" + "version" "4.2.1" + +"@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7": + "integrity" "sha512-wMTHiiTiBAAPebqaPiPDLFA4LYPKr6Ph0Xq/6rq1Ur3v66HXyG+clfR9CNETkD7MQS8ZHvpQOtA53DLws5WAEQ==" + "resolved" "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.12.tgz" + "version" "7.1.12" + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + "@types/babel__generator" "*" + "@types/babel__template" "*" + "@types/babel__traverse" "*" + +"@types/babel__generator@*": + "integrity" "sha512-MdSJnBjl+bdwkLskZ3NGFp9YcXGx5ggLpQQPqtgakVhsWK0hTtNYhjpZLlWQTviGTvF8at+Bvli3jV7faPdgeQ==" + "resolved" "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.2.tgz" + "version" "7.6.2" + dependencies: + "@babel/types" "^7.0.0" + +"@types/babel__template@*": + "integrity" "sha512-NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A==" + "resolved" "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.0.tgz" + "version" "7.4.0" + dependencies: + "@babel/parser" "^7.1.0" + "@babel/types" "^7.0.0" + +"@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": + "integrity" "sha512-kSjgDMZONiIfSH1Nxcr5JIRMwUetDki63FSQfpTCz8ogF3Ulqm8+mr5f78dUYs6vMiB6gBusQqfQmBvHZj/lwg==" + "resolved" "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.0.tgz" + "version" "7.11.0" + dependencies: + "@babel/types" "^7.3.0" + +"@types/eslint@^7.2.6": + "integrity" "sha512-I+1sYH+NPQ3/tVqCeUSBwTE/0heyvtXqpIopUUArlBm0Kpocb8FbMa3AZ/ASKIFpN3rnEx932TTXDbt9OXsNDw==" + "resolved" "https://registry.npmjs.org/@types/eslint/-/eslint-7.2.6.tgz" + "version" "7.2.6" + dependencies: + "@types/estree" "*" + "@types/json-schema" "*" + +"@types/estree@*": + "integrity" "sha512-laIjwTQaD+5DukBZaygQ79K1Z0jb1bPEMRrkXSLjtCcZm+abyp5YbrqpSLzD42FwWW6gK/aS4NYpJ804nG2brg==" + "resolved" "https://registry.npmjs.org/@types/estree/-/estree-0.0.46.tgz" + "version" "0.0.46" + +"@types/estree@0.0.39": + "integrity" "sha512-EYNwp3bU+98cpU4lAWYYL7Zz+2gryWH1qbdDTidVd6hkiR6weksdbMadyXKXNPEkQFhXM+hVO9ZygomHXp+AIw==" + "resolved" "https://registry.npmjs.org/@types/estree/-/estree-0.0.39.tgz" + "version" "0.0.39" + +"@types/glob@^7.1.1": + "integrity" "sha512-SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==" + "resolved" "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz" + "version" "7.1.3" + dependencies: + "@types/minimatch" "*" + "@types/node" "*" + +"@types/graceful-fs@^4.1.2": + "integrity" "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==" + "resolved" "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz" + "version" "4.1.5" + dependencies: + "@types/node" "*" + +"@types/history@*": + "integrity" "sha512-S78QIYirQcUoo6UJZx9CSP0O2ix9IaeAXwQi26Rhr/+mg7qqPy8TzaxHSUut7eGjL8WmLccT7/MXf304WjqHcA==" + "resolved" "https://registry.npmjs.org/@types/history/-/history-4.7.8.tgz" + "version" "4.7.8" + +"@types/html-minifier-terser@^5.0.0": + "integrity" "sha512-giAlZwstKbmvMk1OO7WXSj4OZ0keXAcl2TQq4LWHiiPH2ByaH7WeUzng+Qej8UPxxv+8lRTuouo0iaNDBuzIBA==" + "resolved" "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz" + "version" "5.1.1" + +"@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": + "integrity" "sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw==" + "resolved" "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz" + "version" "2.0.3" + +"@types/istanbul-lib-report@*": + "integrity" "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==" + "resolved" "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "@types/istanbul-lib-coverage" "*" + +"@types/istanbul-reports@^3.0.0": + "integrity" "sha512-nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA==" + "resolved" "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "@types/istanbul-lib-report" "*" + +"@types/jest@*", "@types/jest@^26.0.15": + "integrity" "sha512-9zi2Y+5USJRxd0FsahERhBwlcvFh6D2GLQnY2FH2BzK8J9s9omvNHIbvABwIluXa0fD8XVKMLTO0aOEuUfACAA==" + "resolved" "https://registry.npmjs.org/@types/jest/-/jest-26.0.20.tgz" + "version" "26.0.20" + dependencies: + "jest-diff" "^26.0.0" + "pretty-format" "^26.0.0" + +"@types/json-schema@*", "@types/json-schema@^7.0.3", "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6": + "integrity" "sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==" + "resolved" "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz" + "version" "7.0.7" + +"@types/json5@^0.0.29": + "integrity" "sha1-7ihweulOEdK4J7y+UnC86n8+ce4=" + "resolved" "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz" + "version" "0.0.29" + +"@types/minimatch@*": + "integrity" "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==" + "resolved" "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz" + "version" "3.0.3" + +"@types/node@*": + "integrity" "sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g==" + "resolved" "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz" + "version" "14.14.31" + +"@types/node@^12.0.0": + "integrity" "sha512-xRCgeE0Q4pT5UZ189TJ3SpYuX/QGl6QIAOAIeDSbAVAd2gX1NxSZup4jNVK7cxIeP8KDSbJgcckun495isP1jQ==" + "resolved" "https://registry.npmjs.org/@types/node/-/node-12.20.4.tgz" + "version" "12.20.4" + +"@types/normalize-package-data@^2.4.0": + "integrity" "sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==" + "resolved" "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz" + "version" "2.4.0" + +"@types/parse-json@^4.0.0": + "integrity" "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==" + "resolved" "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz" + "version" "4.0.0" + +"@types/prettier@^2.0.0": + "integrity" "sha512-DxZZbyMAM9GWEzXL+BMZROWz9oo6A9EilwwOMET2UVu2uZTqMWS5S69KVtuVKaRjCUpcrOXRalet86/OpG4kqw==" + "resolved" "https://registry.npmjs.org/@types/prettier/-/prettier-2.2.1.tgz" + "version" "2.2.1" + +"@types/prop-types@*": + "integrity" "sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==" + "resolved" "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz" + "version" "15.7.3" + +"@types/q@^1.5.1": + "integrity" "sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug==" + "resolved" "https://registry.npmjs.org/@types/q/-/q-1.5.4.tgz" + "version" "1.5.4" + +"@types/react-dom@^17.0.0": + "integrity" "sha512-yIVyopxQb8IDZ7SOHeTovurFq+fXiPICa+GV3gp0Xedsl+MwQlMLKmvrnEjFbQxjliH5YVAEWFh975eVNmKj7Q==" + "resolved" "https://registry.npmjs.org/@types/react-dom/-/react-dom-17.0.1.tgz" + "version" "17.0.1" + dependencies: + "@types/react" "*" + +"@types/react-router-dom@^5.1.7": + "integrity" "sha512-D5mHD6TbdV/DNHYsnwBTv+y73ei+mMjrkGrla86HthE4/PVvL1J94Bu3qABU+COXzpL23T1EZapVVpwHuBXiUg==" + "resolved" "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.1.7.tgz" + "version" "5.1.7" + dependencies: + "@types/history" "*" + "@types/react" "*" + "@types/react-router" "*" + +"@types/react-router@*": + "integrity" "sha512-ofHbZMlp0Y2baOHgsWBQ4K3AttxY61bDMkwTiBOkPg7U6C/3UwwB5WaIx28JmSVi/eX3uFEMRo61BV22fDQIvg==" + "resolved" "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.11.tgz" + "version" "5.1.11" + dependencies: + "@types/history" "*" + "@types/react" "*" + +"@types/react-transition-group@^4.2.0": + "integrity" "sha512-vIo69qKKcYoJ8wKCJjwSgCTM+z3chw3g18dkrDfVX665tMH7tmbDxEAnPdey4gTlwZz5QuHGzd+hul0OVZDqqQ==" + "resolved" "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.1.tgz" + "version" "4.4.1" + dependencies: + "@types/react" "*" + +"@types/react@*", "@types/react@^16.8.6 || ^17.0.0", "@types/react@^17.0.0": + "integrity" "sha512-Xt40xQsrkdvjn1EyWe1Bc0dJLcil/9x2vAuW7ya+PuQip4UYUaXyhzWmAbwRsdMgwOFHpfp7/FFZebDU6Y8VHA==" + "resolved" "https://registry.npmjs.org/@types/react/-/react-17.0.2.tgz" + "version" "17.0.2" + dependencies: + "@types/prop-types" "*" + "csstype" "^3.0.2" + +"@types/resolve@0.0.8": + "integrity" "sha512-auApPaJf3NPfe18hSoJkp8EbZzer2ISk7o8mCC3M9he/a04+gbMF97NkpD2S8riMGvm4BMRI59/SZQSaLTKpsQ==" + "resolved" "https://registry.npmjs.org/@types/resolve/-/resolve-0.0.8.tgz" + "version" "0.0.8" + dependencies: + "@types/node" "*" + +"@types/source-list-map@*": + "integrity" "sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA==" + "resolved" "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.2.tgz" + "version" "0.1.2" + +"@types/stack-utils@^2.0.0": + "integrity" "sha512-RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw==" + "resolved" "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz" + "version" "2.0.0" + +"@types/tapable@*", "@types/tapable@^1.0.5": + "integrity" "sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA==" + "resolved" "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.6.tgz" + "version" "1.0.6" + +"@types/testing-library__jest-dom@^5.9.1": + "integrity" "sha512-ggn3ws+yRbOHog9GxnXiEZ/35Mow6YtPZpd7Z5mKDeZS/o7zx3yAle0ov/wjhVB5QT4N2Dt+GNoGCdqkBGCajQ==" + "resolved" "https://registry.npmjs.org/@types/testing-library__jest-dom/-/testing-library__jest-dom-5.9.5.tgz" + "version" "5.9.5" + dependencies: + "@types/jest" "*" + +"@types/uglify-js@*": + "integrity" "sha512-sYAF+CF9XZ5cvEBkI7RtrG9g2GtMBkviTnBxYYyq+8BWvO4QtXfwwR6a2LFwCi4evMKZfpv6U43ViYvv17Wz3Q==" + "resolved" "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.12.0.tgz" + "version" "3.12.0" + dependencies: + "source-map" "^0.6.1" + +"@types/webpack-sources@*": + "integrity" "sha512-LXn/oYIpBeucgP1EIJbKQ2/4ZmpvRl+dlrFdX7+94SKRUV3Evy3FsfMZY318vGhkWUS5MPhtOM3w1/hCOAOXcg==" + "resolved" "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "@types/node" "*" + "@types/source-list-map" "*" + "source-map" "^0.7.3" + +"@types/webpack@^4.41.8", "@types/webpack@4.x": + "integrity" "sha512-7ZyTfxjCRwexh+EJFwRUM+CDB2XvgHl4vfuqf1ZKrgGvcS5BrNvPQqJh3tsZ0P6h6Aa1qClVHaJZszLPzpqHeA==" + "resolved" "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.26.tgz" + "version" "4.41.26" + dependencies: + "@types/anymatch" "*" + "@types/node" "*" + "@types/tapable" "*" + "@types/uglify-js" "*" + "@types/webpack-sources" "*" + "source-map" "^0.6.0" + +"@types/yargs-parser@*": + "integrity" "sha512-37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA==" + "resolved" "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.0.tgz" + "version" "20.2.0" + +"@types/yargs@^15.0.0": + "integrity" "sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ==" + "resolved" "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.13.tgz" + "version" "15.0.13" + dependencies: + "@types/yargs-parser" "*" + +"@typescript-eslint/eslint-plugin@^4.0.0", "@typescript-eslint/eslint-plugin@^4.5.0": + "integrity" "sha512-uiQQeu9tWl3f1+oK0yoAv9lt/KXO24iafxgQTkIYO/kitruILGx3uH+QtIAHqxFV+yIsdnJH+alel9KuE3J15Q==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.15.2.tgz" + "version" "4.15.2" + dependencies: + "@typescript-eslint/experimental-utils" "4.15.2" + "@typescript-eslint/scope-manager" "4.15.2" + "debug" "^4.1.1" + "functional-red-black-tree" "^1.0.1" + "lodash" "^4.17.15" + "regexpp" "^3.0.0" + "semver" "^7.3.2" + "tsutils" "^3.17.1" + +"@typescript-eslint/experimental-utils@^3.10.1": + "integrity" "sha512-DewqIgscDzmAfd5nOGe4zm6Bl7PKtMG2Ad0KG8CUZAHlXfAKTF9Ol5PXhiMh39yRL2ChRH1cuuUGOcVyyrhQIw==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-3.10.1.tgz" + "version" "3.10.1" + dependencies: + "@types/json-schema" "^7.0.3" + "@typescript-eslint/types" "3.10.1" + "@typescript-eslint/typescript-estree" "3.10.1" + "eslint-scope" "^5.0.0" + "eslint-utils" "^2.0.0" + +"@typescript-eslint/experimental-utils@^4.0.1", "@typescript-eslint/experimental-utils@4.15.2": + "integrity" "sha512-Fxoshw8+R5X3/Vmqwsjc8nRO/7iTysRtDqx6rlfLZ7HbT8TZhPeQqbPjTyk2RheH3L8afumecTQnUc9EeXxohQ==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.15.2.tgz" + "version" "4.15.2" + dependencies: + "@types/json-schema" "^7.0.3" + "@typescript-eslint/scope-manager" "4.15.2" + "@typescript-eslint/types" "4.15.2" + "@typescript-eslint/typescript-estree" "4.15.2" + "eslint-scope" "^5.0.0" + "eslint-utils" "^2.0.0" + +"@typescript-eslint/parser@^4.0.0", "@typescript-eslint/parser@^4.5.0": + "integrity" "sha512-SHeF8xbsC6z2FKXsaTb1tBCf0QZsjJ94H6Bo51Y1aVEZ4XAefaw5ZAilMoDPlGghe+qtq7XdTiDlGfVTOmvA+Q==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.15.2.tgz" + "version" "4.15.2" + dependencies: + "@typescript-eslint/scope-manager" "4.15.2" + "@typescript-eslint/types" "4.15.2" + "@typescript-eslint/typescript-estree" "4.15.2" + "debug" "^4.1.1" + +"@typescript-eslint/scope-manager@4.15.2": + "integrity" "sha512-Zm0tf/MSKuX6aeJmuXexgdVyxT9/oJJhaCkijv0DvJVT3ui4zY6XYd6iwIo/8GEZGy43cd7w1rFMiCLHbRzAPQ==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.15.2.tgz" + "version" "4.15.2" + dependencies: + "@typescript-eslint/types" "4.15.2" + "@typescript-eslint/visitor-keys" "4.15.2" + +"@typescript-eslint/types@3.10.1": + "integrity" "sha512-+3+FCUJIahE9q0lDi1WleYzjCwJs5hIsbugIgnbB+dSCYUxl8L6PwmsyOPFZde2hc1DlTo/xnkOgiTLSyAbHiQ==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/types/-/types-3.10.1.tgz" + "version" "3.10.1" + +"@typescript-eslint/types@4.15.2": + "integrity" "sha512-r7lW7HFkAarfUylJ2tKndyO9njwSyoy6cpfDKWPX6/ctZA+QyaYscAHXVAfJqtnY6aaTwDYrOhp+ginlbc7HfQ==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.15.2.tgz" + "version" "4.15.2" + +"@typescript-eslint/typescript-estree@3.10.1": + "integrity" "sha512-QbcXOuq6WYvnB3XPsZpIwztBoquEYLXh2MtwVU+kO8jgYCiv4G5xrSP/1wg4tkvrEE+esZVquIPX/dxPlePk1w==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-3.10.1.tgz" + "version" "3.10.1" + dependencies: + "@typescript-eslint/types" "3.10.1" + "@typescript-eslint/visitor-keys" "3.10.1" + "debug" "^4.1.1" + "glob" "^7.1.6" + "is-glob" "^4.0.1" + "lodash" "^4.17.15" + "semver" "^7.3.2" + "tsutils" "^3.17.1" + +"@typescript-eslint/typescript-estree@4.15.2": + "integrity" "sha512-cGR8C2g5SPtHTQvAymEODeqx90pJHadWsgTtx6GbnTWKqsg7yp6Eaya9nFzUd4KrKhxdYTTFBiYeTPQaz/l8bw==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.15.2.tgz" + "version" "4.15.2" + dependencies: + "@typescript-eslint/types" "4.15.2" + "@typescript-eslint/visitor-keys" "4.15.2" + "debug" "^4.1.1" + "globby" "^11.0.1" + "is-glob" "^4.0.1" + "semver" "^7.3.2" + "tsutils" "^3.17.1" + +"@typescript-eslint/visitor-keys@3.10.1": + "integrity" "sha512-9JgC82AaQeglebjZMgYR5wgmfUdUc+EitGUUMW8u2nDckaeimzW+VsoLV6FoimPv2id3VQzfjwBxEMVz08ameQ==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-3.10.1.tgz" + "version" "3.10.1" + dependencies: + "eslint-visitor-keys" "^1.1.0" + +"@typescript-eslint/visitor-keys@4.15.2": + "integrity" "sha512-TME1VgSb7wTwgENN5KVj4Nqg25hP8DisXxNBojM4Nn31rYaNDIocNm5cmjOFfh42n7NVERxWrDFoETO/76ePyg==" + "resolved" "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.15.2.tgz" + "version" "4.15.2" + dependencies: + "@typescript-eslint/types" "4.15.2" + "eslint-visitor-keys" "^2.0.0" + +"@webassemblyjs/ast@1.9.0": + "integrity" "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@webassemblyjs/helper-module-context" "1.9.0" + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" + "@webassemblyjs/wast-parser" "1.9.0" + +"@webassemblyjs/floating-point-hex-parser@1.9.0": + "integrity" "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz" + "version" "1.9.0" + +"@webassemblyjs/helper-api-error@1.9.0": + "integrity" "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz" + "version" "1.9.0" + +"@webassemblyjs/helper-buffer@1.9.0": + "integrity" "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz" + "version" "1.9.0" + +"@webassemblyjs/helper-code-frame@1.9.0": + "integrity" "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@webassemblyjs/wast-printer" "1.9.0" + +"@webassemblyjs/helper-fsm@1.9.0": + "integrity" "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz" + "version" "1.9.0" + +"@webassemblyjs/helper-module-context@1.9.0": + "integrity" "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@webassemblyjs/ast" "1.9.0" + +"@webassemblyjs/helper-wasm-bytecode@1.9.0": + "integrity" "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz" + "version" "1.9.0" + +"@webassemblyjs/helper-wasm-section@1.9.0": + "integrity" "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-buffer" "1.9.0" + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" + "@webassemblyjs/wasm-gen" "1.9.0" + +"@webassemblyjs/ieee754@1.9.0": + "integrity" "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@xtuc/ieee754" "^1.2.0" + +"@webassemblyjs/leb128@1.9.0": + "integrity" "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@xtuc/long" "4.2.2" + +"@webassemblyjs/utf8@1.9.0": + "integrity" "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz" + "version" "1.9.0" + +"@webassemblyjs/wasm-edit@1.9.0": + "integrity" "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-buffer" "1.9.0" + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" + "@webassemblyjs/helper-wasm-section" "1.9.0" + "@webassemblyjs/wasm-gen" "1.9.0" + "@webassemblyjs/wasm-opt" "1.9.0" + "@webassemblyjs/wasm-parser" "1.9.0" + "@webassemblyjs/wast-printer" "1.9.0" + +"@webassemblyjs/wasm-gen@1.9.0": + "integrity" "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" + "@webassemblyjs/ieee754" "1.9.0" + "@webassemblyjs/leb128" "1.9.0" + "@webassemblyjs/utf8" "1.9.0" + +"@webassemblyjs/wasm-opt@1.9.0": + "integrity" "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-buffer" "1.9.0" + "@webassemblyjs/wasm-gen" "1.9.0" + "@webassemblyjs/wasm-parser" "1.9.0" + +"@webassemblyjs/wasm-parser@1.9.0": + "integrity" "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-api-error" "1.9.0" + "@webassemblyjs/helper-wasm-bytecode" "1.9.0" + "@webassemblyjs/ieee754" "1.9.0" + "@webassemblyjs/leb128" "1.9.0" + "@webassemblyjs/utf8" "1.9.0" + +"@webassemblyjs/wast-parser@1.9.0": + "integrity" "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/floating-point-hex-parser" "1.9.0" + "@webassemblyjs/helper-api-error" "1.9.0" + "@webassemblyjs/helper-code-frame" "1.9.0" + "@webassemblyjs/helper-fsm" "1.9.0" + "@xtuc/long" "4.2.2" + +"@webassemblyjs/wast-printer@1.9.0": + "integrity" "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==" + "resolved" "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz" + "version" "1.9.0" + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/wast-parser" "1.9.0" + "@xtuc/long" "4.2.2" + +"@xtuc/ieee754@^1.2.0": + "integrity" "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + "resolved" "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz" + "version" "1.2.0" + +"@xtuc/long@4.2.2": + "integrity" "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + "resolved" "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz" + "version" "4.2.2" + +"abab@^2.0.3": + "integrity" "sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q==" + "resolved" "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz" + "version" "2.0.5" + +"accepts@~1.3.4", "accepts@~1.3.5", "accepts@~1.3.7": + "integrity" "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==" + "resolved" "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz" + "version" "1.3.7" + dependencies: + "mime-types" "~2.1.24" + "negotiator" "0.6.2" + +"acorn-globals@^6.0.0": + "integrity" "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==" + "resolved" "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz" + "version" "6.0.0" + dependencies: + "acorn" "^7.1.1" + "acorn-walk" "^7.1.1" + +"acorn-jsx@^5.3.1": + "integrity" "sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng==" + "resolved" "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.1.tgz" + "version" "5.3.1" + +"acorn-walk@^7.1.1": + "integrity" "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" + "resolved" "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz" + "version" "7.2.0" + +"acorn@^6.0.0 || ^7.0.0 || ^8.0.0", "acorn@^7.1.0", "acorn@^7.1.1", "acorn@^7.4.0": + "integrity" "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==" + "resolved" "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz" + "version" "7.4.1" + +"acorn@^6.4.1": + "integrity" "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==" + "resolved" "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz" + "version" "6.4.2" + +"address@^1.0.1", "address@1.1.2": + "integrity" "sha512-aT6camzM4xEA54YVJYSqxz1kv4IHnQZRtThJJHhUMRExaU5spC7jX5ugSwTaTgJliIgs4VhZOk7htClvQ/LmRA==" + "resolved" "https://registry.npmjs.org/address/-/address-1.1.2.tgz" + "version" "1.1.2" + +"adjust-sourcemap-loader@3.0.0": + "integrity" "sha512-YBrGyT2/uVQ/c6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E/ri63RYyG1IacMZtqw==" + "resolved" "https://registry.npmjs.org/adjust-sourcemap-loader/-/adjust-sourcemap-loader-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "loader-utils" "^2.0.0" + "regex-parser" "^2.2.11" + +"aggregate-error@^3.0.0": + "integrity" "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==" + "resolved" "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz" + "version" "3.1.0" + dependencies: + "clean-stack" "^2.0.0" + "indent-string" "^4.0.0" + +"ajv-errors@^1.0.0": + "integrity" "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==" + "resolved" "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz" + "version" "1.0.1" + +"ajv-keywords@^3.1.0", "ajv-keywords@^3.4.1", "ajv-keywords@^3.5.2": + "integrity" "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==" + "resolved" "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz" + "version" "3.5.2" + +"ajv@^6.1.0", "ajv@^6.10.0", "ajv@^6.10.2", "ajv@^6.12.3", "ajv@^6.12.4", "ajv@^6.12.5", "ajv@^6.9.1", "ajv@>=5.0.0": + "integrity" "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==" + "resolved" "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz" + "version" "6.12.6" + dependencies: + "fast-deep-equal" "^3.1.1" + "fast-json-stable-stringify" "^2.0.0" + "json-schema-traverse" "^0.4.1" + "uri-js" "^4.2.2" + +"ajv@^7.0.2": + "integrity" "sha512-ga/aqDYnUy/o7vbsRTFhhTsNeXiYb5JWDIcRIeZfwRNCefwjNTVYCGdGSUrEmiu3yDK3vFvNbgJxvrQW4JXrYQ==" + "resolved" "https://registry.npmjs.org/ajv/-/ajv-7.1.1.tgz" + "version" "7.1.1" + dependencies: + "fast-deep-equal" "^3.1.1" + "json-schema-traverse" "^1.0.0" + "require-from-string" "^2.0.2" + "uri-js" "^4.2.2" + +"alphanum-sort@^1.0.0": + "integrity" "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=" + "resolved" "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz" + "version" "1.0.2" + +"ansi-colors@^3.0.0": + "integrity" "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==" + "resolved" "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz" + "version" "3.2.4" + +"ansi-colors@^4.1.1": + "integrity" "sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA==" + "resolved" "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz" + "version" "4.1.1" + +"ansi-escapes@^4.2.1", "ansi-escapes@^4.3.1": + "integrity" "sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA==" + "resolved" "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.1.tgz" + "version" "4.3.1" + dependencies: + "type-fest" "^0.11.0" + +"ansi-html@^0.0.7", "ansi-html@0.0.7": + "integrity" "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=" + "resolved" "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz" + "version" "0.0.7" + +"ansi-regex@^2.0.0": + "integrity" "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" + "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz" + "version" "2.1.1" + +"ansi-regex@^4.1.0": + "integrity" "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==" + "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz" + "version" "4.1.0" + +"ansi-regex@^5.0.0": + "integrity" "sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==" + "resolved" "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz" + "version" "5.0.0" + +"ansi-styles@^3.2.0": + "integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" + "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" + "version" "3.2.1" + dependencies: + "color-convert" "^1.9.0" + +"ansi-styles@^3.2.1": + "integrity" "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==" + "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz" + "version" "3.2.1" + dependencies: + "color-convert" "^1.9.0" + +"ansi-styles@^4.0.0", "ansi-styles@^4.1.0": + "integrity" "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==" + "resolved" "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz" + "version" "4.3.0" + dependencies: + "color-convert" "^2.0.1" + +"anymatch@^2.0.0": + "integrity" "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==" + "resolved" "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "micromatch" "^3.1.4" + "normalize-path" "^2.1.1" + +"anymatch@^3.0.3": + "integrity" "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==" + "resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz" + "version" "3.1.1" + dependencies: + "normalize-path" "^3.0.0" + "picomatch" "^2.0.4" + +"anymatch@~3.1.1": + "integrity" "sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg==" + "resolved" "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz" + "version" "3.1.1" + dependencies: + "normalize-path" "^3.0.0" + "picomatch" "^2.0.4" + +"aproba@^1.1.1": + "integrity" "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + "resolved" "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz" + "version" "1.2.0" + +"argparse@^1.0.7": + "integrity" "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==" + "resolved" "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz" + "version" "1.0.10" + dependencies: + "sprintf-js" "~1.0.2" + +"aria-query@^4.2.2": + "integrity" "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==" + "resolved" "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz" + "version" "4.2.2" + dependencies: + "@babel/runtime" "^7.10.2" + "@babel/runtime-corejs3" "^7.10.2" + +"arity-n@^1.0.4": + "integrity" "sha1-2edrEXM+CFacCEeuezmyhgswt0U=" + "resolved" "https://registry.npmjs.org/arity-n/-/arity-n-1.0.4.tgz" + "version" "1.0.4" + +"arr-diff@^4.0.0": + "integrity" "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=" + "resolved" "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz" + "version" "4.0.0" + +"arr-flatten@^1.1.0": + "integrity" "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==" + "resolved" "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz" + "version" "1.1.0" + +"arr-union@^3.1.0": + "integrity" "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=" + "resolved" "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz" + "version" "3.1.0" + +"array-flatten@^2.1.0": + "integrity" "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==" + "resolved" "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz" + "version" "2.1.2" + +"array-flatten@1.1.1": + "integrity" "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=" + "resolved" "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz" + "version" "1.1.1" + +"array-includes@^3.1.1", "array-includes@^3.1.2": + "integrity" "sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A==" + "resolved" "https://registry.npmjs.org/array-includes/-/array-includes-3.1.3.tgz" + "version" "3.1.3" + dependencies: + "call-bind" "^1.0.2" + "define-properties" "^1.1.3" + "es-abstract" "^1.18.0-next.2" + "get-intrinsic" "^1.1.1" + "is-string" "^1.0.5" + +"array-union@^1.0.1": + "integrity" "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=" + "resolved" "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "array-uniq" "^1.0.1" + +"array-union@^2.1.0": + "integrity" "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==" + "resolved" "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz" + "version" "2.1.0" + +"array-uniq@^1.0.1": + "integrity" "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=" + "resolved" "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz" + "version" "1.0.3" + +"array-unique@^0.3.2": + "integrity" "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=" + "resolved" "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz" + "version" "0.3.2" + +"array.prototype.flat@^1.2.3": + "integrity" "sha512-4470Xi3GAPAjZqFcljX2xzckv1qeKPizoNkiS0+O4IoPR2ZNpcjE0pkhdihlDouK+x6QOast26B4Q/O9DJnwSg==" + "resolved" "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.2.4.tgz" + "version" "1.2.4" + dependencies: + "call-bind" "^1.0.0" + "define-properties" "^1.1.3" + "es-abstract" "^1.18.0-next.1" + +"array.prototype.flatmap@^1.2.3": + "integrity" "sha512-r9Z0zYoxqHz60vvQbWEdXIEtCwHF0yxaWfno9qzXeNHvfyl3BZqygmGzb84dsubyaXLH4husF+NFgMSdpZhk2Q==" + "resolved" "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.2.4.tgz" + "version" "1.2.4" + dependencies: + "call-bind" "^1.0.0" + "define-properties" "^1.1.3" + "es-abstract" "^1.18.0-next.1" + "function-bind" "^1.1.1" + +"arrify@^2.0.1": + "integrity" "sha512-3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug==" + "resolved" "https://registry.npmjs.org/arrify/-/arrify-2.0.1.tgz" + "version" "2.0.1" + +"asap@~2.0.6": + "integrity" "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY=" + "resolved" "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz" + "version" "2.0.6" + +"asn1.js@^5.2.0": + "integrity" "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==" + "resolved" "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz" + "version" "5.4.1" + dependencies: + "bn.js" "^4.0.0" + "inherits" "^2.0.1" + "minimalistic-assert" "^1.0.0" + "safer-buffer" "^2.1.0" + +"asn1@~0.2.3": + "integrity" "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==" + "resolved" "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz" + "version" "0.2.4" + dependencies: + "safer-buffer" "~2.1.0" + +"assert-plus@^1.0.0", "assert-plus@1.0.0": + "integrity" "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" + "resolved" "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz" + "version" "1.0.0" + +"assert@^1.1.1": + "integrity" "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==" + "resolved" "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz" + "version" "1.5.0" + dependencies: + "object-assign" "^4.1.1" + "util" "0.10.3" + +"assign-symbols@^1.0.0": + "integrity" "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=" + "resolved" "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz" + "version" "1.0.0" + +"ast-types-flow@^0.0.7": + "integrity" "sha1-9wtzXGvKGlycItmCw+Oef+ujva0=" + "resolved" "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz" + "version" "0.0.7" + +"astral-regex@^2.0.0": + "integrity" "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==" + "resolved" "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz" + "version" "2.0.0" + +"async-each@^1.0.1": + "integrity" "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==" + "resolved" "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz" + "version" "1.0.3" + +"async-limiter@~1.0.0": + "integrity" "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==" + "resolved" "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz" + "version" "1.0.1" + +"async@^2.6.2": + "integrity" "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==" + "resolved" "https://registry.npmjs.org/async/-/async-2.6.3.tgz" + "version" "2.6.3" + dependencies: + "lodash" "^4.17.14" + +"asynckit@^0.4.0": + "integrity" "sha1-x57Zf380y48robyXkLzDZkdLS3k=" + "resolved" "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz" + "version" "0.4.0" + +"at-least-node@^1.0.0": + "integrity" "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==" + "resolved" "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz" + "version" "1.0.0" + +"atob@^2.1.2": + "integrity" "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==" + "resolved" "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz" + "version" "2.1.2" + +"autoprefixer@^9.6.1": + "integrity" "sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg==" + "resolved" "https://registry.npmjs.org/autoprefixer/-/autoprefixer-9.8.6.tgz" + "version" "9.8.6" + dependencies: + "browserslist" "^4.12.0" + "caniuse-lite" "^1.0.30001109" + "colorette" "^1.2.1" + "normalize-range" "^0.1.2" + "num2fraction" "^1.2.2" + "postcss" "^7.0.32" + "postcss-value-parser" "^4.1.0" + +"aws-sign2@~0.7.0": + "integrity" "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" + "resolved" "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz" + "version" "0.7.0" + +"aws4@^1.8.0": + "integrity" "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" + "resolved" "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz" + "version" "1.11.0" + +"axe-core@^4.0.2": + "integrity" "sha512-V+Nq70NxKhYt89ArVcaNL9FDryB3vQOd+BFXZIfO3RP6rwtj+2yqqqdHEkacutglPaZLkJeuXKCjCJDMGPtPqg==" + "resolved" "https://registry.npmjs.org/axe-core/-/axe-core-4.1.2.tgz" + "version" "4.1.2" + +"axobject-query@^2.2.0": + "integrity" "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==" + "resolved" "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz" + "version" "2.2.0" + +"babel-eslint@^10.0.0", "babel-eslint@^10.1.0": + "integrity" "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==" + "resolved" "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz" + "version" "10.1.0" + dependencies: + "@babel/code-frame" "^7.0.0" + "@babel/parser" "^7.7.0" + "@babel/traverse" "^7.7.0" + "@babel/types" "^7.7.0" + "eslint-visitor-keys" "^1.0.0" + "resolve" "^1.12.0" + +"babel-extract-comments@^1.0.0": + "integrity" "sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==" + "resolved" "https://registry.npmjs.org/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "babylon" "^6.18.0" + +"babel-jest@^26.6.0": + "integrity" "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==" + "resolved" "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz" + "version" "26.6.3" + dependencies: + "@jest/transform" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/babel__core" "^7.1.7" + "babel-plugin-istanbul" "^6.0.0" + "babel-preset-jest" "^26.6.2" + "chalk" "^4.0.0" + "graceful-fs" "^4.2.4" + "slash" "^3.0.0" + +"babel-jest@^26.6.3": + "integrity" "sha512-pl4Q+GAVOHwvjrck6jKjvmGhnO3jHX/xuB9d27f+EJZ/6k+6nMuPjorrYp7s++bKKdANwzElBWnLWaObvTnaZA==" + "resolved" "https://registry.npmjs.org/babel-jest/-/babel-jest-26.6.3.tgz" + "version" "26.6.3" + dependencies: + "@jest/transform" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/babel__core" "^7.1.7" + "babel-plugin-istanbul" "^6.0.0" + "babel-preset-jest" "^26.6.2" + "chalk" "^4.0.0" + "graceful-fs" "^4.2.4" + "slash" "^3.0.0" + +"babel-loader@8.1.0": + "integrity" "sha512-7q7nC1tYOrqvUrN3LQK4GwSk/TQorZSOlO9C+RZDZpODgyN4ZlCqE5q9cDsyWOliN+aU9B4JX01xK9eJXowJLw==" + "resolved" "https://registry.npmjs.org/babel-loader/-/babel-loader-8.1.0.tgz" + "version" "8.1.0" + dependencies: + "find-cache-dir" "^2.1.0" + "loader-utils" "^1.4.0" + "mkdirp" "^0.5.3" + "pify" "^4.0.1" + "schema-utils" "^2.6.5" + +"babel-plugin-dynamic-import-node@^2.3.3": + "integrity" "sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ==" + "resolved" "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz" + "version" "2.3.3" + dependencies: + "object.assign" "^4.1.0" + +"babel-plugin-emotion@^10.0.27": + "integrity" "sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==" + "resolved" "https://registry.npmjs.org/babel-plugin-emotion/-/babel-plugin-emotion-10.2.2.tgz" + "version" "10.2.2" + dependencies: + "@babel/helper-module-imports" "^7.0.0" + "@emotion/hash" "0.8.0" + "@emotion/memoize" "0.7.4" + "@emotion/serialize" "^0.11.16" + "babel-plugin-macros" "^2.0.0" + "babel-plugin-syntax-jsx" "^6.18.0" + "convert-source-map" "^1.5.0" + "escape-string-regexp" "^1.0.5" + "find-root" "^1.1.0" + "source-map" "^0.5.7" + +"babel-plugin-istanbul@^6.0.0": + "integrity" "sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ==" + "resolved" "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz" + "version" "6.0.0" + dependencies: + "@babel/helper-plugin-utils" "^7.0.0" + "@istanbuljs/load-nyc-config" "^1.0.0" + "@istanbuljs/schema" "^0.1.2" + "istanbul-lib-instrument" "^4.0.0" + "test-exclude" "^6.0.0" + +"babel-plugin-jest-hoist@^26.6.2": + "integrity" "sha512-PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw==" + "resolved" "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@babel/template" "^7.3.3" + "@babel/types" "^7.3.3" + "@types/babel__core" "^7.0.0" + "@types/babel__traverse" "^7.0.6" + +"babel-plugin-macros@^2.0.0", "babel-plugin-macros@2.8.0": + "integrity" "sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==" + "resolved" "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-2.8.0.tgz" + "version" "2.8.0" + dependencies: + "@babel/runtime" "^7.7.2" + "cosmiconfig" "^6.0.0" + "resolve" "^1.12.0" + +"babel-plugin-named-asset-import@^0.3.7": + "integrity" "sha512-squySRkf+6JGnvjoUtDEjSREJEBirnXi9NqP6rjSYsylxQxqBTz+pkmf395i9E2zsvmYUaI40BHo6SqZUdydlw==" + "resolved" "https://registry.npmjs.org/babel-plugin-named-asset-import/-/babel-plugin-named-asset-import-0.3.7.tgz" + "version" "0.3.7" + +"babel-plugin-styled-components@>= 1": + "integrity" "sha512-FEiD7l5ZABdJPpLssKXjBUJMYqzbcNzBowfXDCdJhOpbhWiewapUaY+LZGT8R4Jg2TwOjGjG4RKeyrO5p9sBkA==" + "resolved" "https://registry.npmjs.org/babel-plugin-styled-components/-/babel-plugin-styled-components-1.12.0.tgz" + "version" "1.12.0" + dependencies: + "@babel/helper-annotate-as-pure" "^7.0.0" + "@babel/helper-module-imports" "^7.0.0" + "babel-plugin-syntax-jsx" "^6.18.0" + "lodash" "^4.17.11" + +"babel-plugin-syntax-jsx@^6.18.0": + "integrity" "sha1-CvMqmm4Tyno/1QaeYtew9Y0NiUY=" + "resolved" "https://registry.npmjs.org/babel-plugin-syntax-jsx/-/babel-plugin-syntax-jsx-6.18.0.tgz" + "version" "6.18.0" + +"babel-plugin-syntax-object-rest-spread@^6.8.0": + "integrity" "sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=" + "resolved" "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz" + "version" "6.13.0" + +"babel-plugin-transform-object-rest-spread@^6.26.0": + "integrity" "sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=" + "resolved" "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz" + "version" "6.26.0" + dependencies: + "babel-plugin-syntax-object-rest-spread" "^6.8.0" + "babel-runtime" "^6.26.0" + +"babel-plugin-transform-react-remove-prop-types@0.4.24": + "integrity" "sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==" + "resolved" "https://registry.npmjs.org/babel-plugin-transform-react-remove-prop-types/-/babel-plugin-transform-react-remove-prop-types-0.4.24.tgz" + "version" "0.4.24" + +"babel-preset-current-node-syntax@^1.0.0": + "integrity" "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==" + "resolved" "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "@babel/plugin-syntax-async-generators" "^7.8.4" + "@babel/plugin-syntax-bigint" "^7.8.3" + "@babel/plugin-syntax-class-properties" "^7.8.3" + "@babel/plugin-syntax-import-meta" "^7.8.3" + "@babel/plugin-syntax-json-strings" "^7.8.3" + "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" + "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" + "@babel/plugin-syntax-numeric-separator" "^7.8.3" + "@babel/plugin-syntax-object-rest-spread" "^7.8.3" + "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" + "@babel/plugin-syntax-optional-chaining" "^7.8.3" + "@babel/plugin-syntax-top-level-await" "^7.8.3" + +"babel-preset-jest@^26.6.2": + "integrity" "sha512-YvdtlVm9t3k777c5NPQIv6cxFFFapys25HiUmuSgHwIZhfifweR5c5Sf5nwE3MAbfu327CYSvps8Yx6ANLyleQ==" + "resolved" "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "babel-plugin-jest-hoist" "^26.6.2" + "babel-preset-current-node-syntax" "^1.0.0" + +"babel-preset-react-app@^10.0.0": + "integrity" "sha512-itL2z8v16khpuKutx5IH8UdCdSTuzrOhRFTEdIhveZ2i1iBKDrVE0ATa4sFVy+02GLucZNVBWtoarXBy0Msdpg==" + "resolved" "https://registry.npmjs.org/babel-preset-react-app/-/babel-preset-react-app-10.0.0.tgz" + "version" "10.0.0" + dependencies: + "@babel/core" "7.12.3" + "@babel/plugin-proposal-class-properties" "7.12.1" + "@babel/plugin-proposal-decorators" "7.12.1" + "@babel/plugin-proposal-nullish-coalescing-operator" "7.12.1" + "@babel/plugin-proposal-numeric-separator" "7.12.1" + "@babel/plugin-proposal-optional-chaining" "7.12.1" + "@babel/plugin-transform-flow-strip-types" "7.12.1" + "@babel/plugin-transform-react-display-name" "7.12.1" + "@babel/plugin-transform-runtime" "7.12.1" + "@babel/preset-env" "7.12.1" + "@babel/preset-react" "7.12.1" + "@babel/preset-typescript" "7.12.1" + "@babel/runtime" "7.12.1" + "babel-plugin-macros" "2.8.0" + "babel-plugin-transform-react-remove-prop-types" "0.4.24" + +"babel-runtime@^6.26.0": + "integrity" "sha1-llxwWGaOgrVde/4E/yM3vItWR/4=" + "resolved" "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz" + "version" "6.26.0" + dependencies: + "core-js" "^2.4.0" + "regenerator-runtime" "^0.11.0" + +"babylon@^6.18.0": + "integrity" "sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==" + "resolved" "https://registry.npmjs.org/babylon/-/babylon-6.18.0.tgz" + "version" "6.18.0" + +"balanced-match@^1.0.0": + "integrity" "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=" + "resolved" "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz" + "version" "1.0.0" + +"base@^0.11.1": + "integrity" "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==" + "resolved" "https://registry.npmjs.org/base/-/base-0.11.2.tgz" + "version" "0.11.2" + dependencies: + "cache-base" "^1.0.1" + "class-utils" "^0.3.5" + "component-emitter" "^1.2.1" + "define-property" "^1.0.0" + "isobject" "^3.0.1" + "mixin-deep" "^1.2.0" + "pascalcase" "^0.1.1" + +"base64-js@^1.0.2": + "integrity" "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" + "resolved" "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" + "version" "1.5.1" + +"batch@0.6.1": + "integrity" "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=" + "resolved" "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz" + "version" "0.6.1" + +"bcrypt-pbkdf@^1.0.0": + "integrity" "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=" + "resolved" "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "tweetnacl" "^0.14.3" + +"bfj@^7.0.2": + "integrity" "sha512-+e/UqUzwmzJamNF50tBV6tZPTORow7gQ96iFow+8b562OdMpEK0BcJEq2OSPEDmAbSMBQ7PKZ87ubFkgxpYWgw==" + "resolved" "https://registry.npmjs.org/bfj/-/bfj-7.0.2.tgz" + "version" "7.0.2" + dependencies: + "bluebird" "^3.5.5" + "check-types" "^11.1.1" + "hoopy" "^0.1.4" + "tryer" "^1.0.1" + +"big.js@^5.2.2": + "integrity" "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==" + "resolved" "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz" + "version" "5.2.2" + +"binary-extensions@^1.0.0": + "integrity" "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==" + "resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz" + "version" "1.13.1" + +"binary-extensions@^2.0.0": + "integrity" "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" + "resolved" "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz" + "version" "2.2.0" + +"bindings@^1.5.0": + "integrity" "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==" + "resolved" "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz" + "version" "1.5.0" + dependencies: + "file-uri-to-path" "1.0.0" + +"bluebird@^3.5.5": + "integrity" "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + "resolved" "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz" + "version" "3.7.2" + +"bn.js@^4.0.0", "bn.js@^4.1.0", "bn.js@^4.11.9": + "integrity" "sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==" + "resolved" "https://registry.npmjs.org/bn.js/-/bn.js-4.11.9.tgz" + "version" "4.11.9" + +"bn.js@^5.0.0": + "integrity" "sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==" + "resolved" "https://registry.npmjs.org/bn.js/-/bn.js-5.1.3.tgz" + "version" "5.1.3" + +"bn.js@^5.1.1": + "integrity" "sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==" + "resolved" "https://registry.npmjs.org/bn.js/-/bn.js-5.1.3.tgz" + "version" "5.1.3" + +"body-parser@1.19.0": + "integrity" "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==" + "resolved" "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz" + "version" "1.19.0" + dependencies: + "bytes" "3.1.0" + "content-type" "~1.0.4" + "debug" "2.6.9" + "depd" "~1.1.2" + "http-errors" "1.7.2" + "iconv-lite" "0.4.24" + "on-finished" "~2.3.0" + "qs" "6.7.0" + "raw-body" "2.4.0" + "type-is" "~1.6.17" + +"bonjour@^3.5.0": + "integrity" "sha1-jokKGD2O6aI5OzhExpGkK897yfU=" + "resolved" "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz" + "version" "3.5.0" + dependencies: + "array-flatten" "^2.1.0" + "deep-equal" "^1.0.1" + "dns-equal" "^1.0.0" + "dns-txt" "^2.0.2" + "multicast-dns" "^6.0.1" + "multicast-dns-service-types" "^1.1.0" + +"boolbase@^1.0.0", "boolbase@~1.0.0": + "integrity" "sha1-aN/1++YMUes3cl6p4+0xDcwed24=" + "resolved" "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz" + "version" "1.0.0" + +"brace-expansion@^1.1.7": + "integrity" "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==" + "resolved" "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz" + "version" "1.1.11" + dependencies: + "balanced-match" "^1.0.0" + "concat-map" "0.0.1" + +"braces@^2.3.1", "braces@^2.3.2": + "integrity" "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==" + "resolved" "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz" + "version" "2.3.2" + dependencies: + "arr-flatten" "^1.1.0" + "array-unique" "^0.3.2" + "extend-shallow" "^2.0.1" + "fill-range" "^4.0.0" + "isobject" "^3.0.1" + "repeat-element" "^1.1.2" + "snapdragon" "^0.8.1" + "snapdragon-node" "^2.0.1" + "split-string" "^3.0.2" + "to-regex" "^3.0.1" + +"braces@^3.0.1": + "integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" + "resolved" "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" + "version" "3.0.2" + dependencies: + "fill-range" "^7.0.1" + +"braces@~3.0.2": + "integrity" "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==" + "resolved" "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz" + "version" "3.0.2" + dependencies: + "fill-range" "^7.0.1" + +"brorand@^1.0.1", "brorand@^1.1.0": + "integrity" "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=" + "resolved" "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz" + "version" "1.1.0" + +"browser-process-hrtime@^1.0.0": + "integrity" "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==" + "resolved" "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz" + "version" "1.0.0" + +"browserify-aes@^1.0.0", "browserify-aes@^1.0.4": + "integrity" "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==" + "resolved" "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz" + "version" "1.2.0" + dependencies: + "buffer-xor" "^1.0.3" + "cipher-base" "^1.0.0" + "create-hash" "^1.1.0" + "evp_bytestokey" "^1.0.3" + "inherits" "^2.0.1" + "safe-buffer" "^5.0.1" + +"browserify-cipher@^1.0.0": + "integrity" "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==" + "resolved" "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "browserify-aes" "^1.0.4" + "browserify-des" "^1.0.0" + "evp_bytestokey" "^1.0.0" + +"browserify-des@^1.0.0": + "integrity" "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==" + "resolved" "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "cipher-base" "^1.0.1" + "des.js" "^1.0.0" + "inherits" "^2.0.1" + "safe-buffer" "^5.1.2" + +"browserify-rsa@^4.0.0", "browserify-rsa@^4.0.1": + "integrity" "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==" + "resolved" "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz" + "version" "4.1.0" + dependencies: + "bn.js" "^5.0.0" + "randombytes" "^2.0.1" + +"browserify-sign@^4.0.0": + "integrity" "sha512-/vrA5fguVAKKAVTNJjgSm1tRQDHUU6DbwO9IROu/0WAzC8PKhucDSh18J0RMvVeHAn5puMd+QHC2erPRNf8lmg==" + "resolved" "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.1.tgz" + "version" "4.2.1" + dependencies: + "bn.js" "^5.1.1" + "browserify-rsa" "^4.0.1" + "create-hash" "^1.2.0" + "create-hmac" "^1.1.7" + "elliptic" "^6.5.3" + "inherits" "^2.0.4" + "parse-asn1" "^5.1.5" + "readable-stream" "^3.6.0" + "safe-buffer" "^5.2.0" + +"browserify-zlib@^0.2.0": + "integrity" "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==" + "resolved" "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz" + "version" "0.2.0" + dependencies: + "pako" "~1.0.5" + +"browserslist@^4", "browserslist@^4.0.0", "browserslist@^4.12.0", "browserslist@^4.14.5", "browserslist@^4.16.3", "browserslist@^4.6.2", "browserslist@^4.6.4": + "integrity" "sha512-vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw==" + "resolved" "https://registry.npmjs.org/browserslist/-/browserslist-4.16.3.tgz" + "version" "4.16.3" + dependencies: + "caniuse-lite" "^1.0.30001181" + "colorette" "^1.2.1" + "electron-to-chromium" "^1.3.649" + "escalade" "^3.1.1" + "node-releases" "^1.1.70" + +"browserslist@4.14.2": + "integrity" "sha512-HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==" + "resolved" "https://registry.npmjs.org/browserslist/-/browserslist-4.14.2.tgz" + "version" "4.14.2" + dependencies: + "caniuse-lite" "^1.0.30001125" + "electron-to-chromium" "^1.3.564" + "escalade" "^3.0.2" + "node-releases" "^1.1.61" + +"bser@2.1.1": + "integrity" "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==" + "resolved" "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz" + "version" "2.1.1" + dependencies: + "node-int64" "^0.4.0" + +"buffer-from@^1.0.0": + "integrity" "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==" + "resolved" "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz" + "version" "1.1.1" + +"buffer-indexof@^1.0.0": + "integrity" "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==" + "resolved" "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz" + "version" "1.1.1" + +"buffer-xor@^1.0.3": + "integrity" "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=" + "resolved" "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz" + "version" "1.0.3" + +"buffer@^4.3.0": + "integrity" "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==" + "resolved" "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz" + "version" "4.9.2" + dependencies: + "base64-js" "^1.0.2" + "ieee754" "^1.1.4" + "isarray" "^1.0.0" + +"builtin-modules@^3.1.0": + "integrity" "sha512-lGzLKcioL90C7wMczpkY0n/oART3MbBa8R9OFGE1rJxoVI86u4WAGfEk8Wjv10eKSyTHVGkSo3bvBylCEtk7LA==" + "resolved" "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.2.0.tgz" + "version" "3.2.0" + +"builtin-status-codes@^3.0.0": + "integrity" "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=" + "resolved" "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz" + "version" "3.0.0" + +"bytes@3.0.0": + "integrity" "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" + "resolved" "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz" + "version" "3.0.0" + +"bytes@3.1.0": + "integrity" "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==" + "resolved" "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz" + "version" "3.1.0" + +"cacache@^12.0.2": + "integrity" "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==" + "resolved" "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz" + "version" "12.0.4" + dependencies: + "bluebird" "^3.5.5" + "chownr" "^1.1.1" + "figgy-pudding" "^3.5.1" + "glob" "^7.1.4" + "graceful-fs" "^4.1.15" + "infer-owner" "^1.0.3" + "lru-cache" "^5.1.1" + "mississippi" "^3.0.0" + "mkdirp" "^0.5.1" + "move-concurrently" "^1.0.1" + "promise-inflight" "^1.0.1" + "rimraf" "^2.6.3" + "ssri" "^6.0.1" + "unique-filename" "^1.1.1" + "y18n" "^4.0.0" + +"cacache@^15.0.5": + "integrity" "sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A==" + "resolved" "https://registry.npmjs.org/cacache/-/cacache-15.0.5.tgz" + "version" "15.0.5" + dependencies: + "@npmcli/move-file" "^1.0.1" + "chownr" "^2.0.0" + "fs-minipass" "^2.0.0" + "glob" "^7.1.4" + "infer-owner" "^1.0.4" + "lru-cache" "^6.0.0" + "minipass" "^3.1.1" + "minipass-collect" "^1.0.2" + "minipass-flush" "^1.0.5" + "minipass-pipeline" "^1.2.2" + "mkdirp" "^1.0.3" + "p-map" "^4.0.0" + "promise-inflight" "^1.0.1" + "rimraf" "^3.0.2" + "ssri" "^8.0.0" + "tar" "^6.0.2" + "unique-filename" "^1.1.1" + +"cache-base@^1.0.1": + "integrity" "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==" + "resolved" "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "collection-visit" "^1.0.0" + "component-emitter" "^1.2.1" + "get-value" "^2.0.6" + "has-value" "^1.0.0" + "isobject" "^3.0.1" + "set-value" "^2.0.0" + "to-object-path" "^0.3.0" + "union-value" "^1.0.0" + "unset-value" "^1.0.0" + +"call-bind@^1.0.0", "call-bind@^1.0.2": + "integrity" "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==" + "resolved" "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "function-bind" "^1.1.1" + "get-intrinsic" "^1.0.2" + +"caller-callsite@^2.0.0": + "integrity" "sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=" + "resolved" "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "callsites" "^2.0.0" + +"caller-path@^2.0.0": + "integrity" "sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=" + "resolved" "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "caller-callsite" "^2.0.0" + +"callsites@^2.0.0": + "integrity" "sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=" + "resolved" "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz" + "version" "2.0.0" + +"callsites@^3.0.0": + "integrity" "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==" + "resolved" "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz" + "version" "3.1.0" + +"camel-case@^4.1.1": + "integrity" "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==" + "resolved" "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz" + "version" "4.1.2" + dependencies: + "pascal-case" "^3.1.2" + "tslib" "^2.0.3" + +"camelcase@^5.0.0", "camelcase@^5.3.1", "camelcase@5.3.1": + "integrity" "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==" + "resolved" "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz" + "version" "5.3.1" + +"camelcase@^6.0.0": + "integrity" "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" + "resolved" "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz" + "version" "6.2.0" + +"camelcase@^6.1.0": + "integrity" "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" + "resolved" "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz" + "version" "6.2.0" + +"camelcase@^6.2.0": + "integrity" "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==" + "resolved" "https://registry.npmjs.org/camelcase/-/camelcase-6.2.0.tgz" + "version" "6.2.0" + +"camelize@^1.0.0": + "integrity" "sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs=" + "resolved" "https://registry.npmjs.org/camelize/-/camelize-1.0.0.tgz" + "version" "1.0.0" + +"caniuse-api@^3.0.0": + "integrity" "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==" + "resolved" "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "browserslist" "^4.0.0" + "caniuse-lite" "^1.0.0" + "lodash.memoize" "^4.1.2" + "lodash.uniq" "^4.5.0" + +"caniuse-lite@^1.0.0", "caniuse-lite@^1.0.30000981", "caniuse-lite@^1.0.30001109", "caniuse-lite@^1.0.30001125", "caniuse-lite@^1.0.30001181": + "integrity" "sha512-xJJqzyd+7GCJXkcoBiQ1GuxEiOBCLQ0aVW9HMekifZsAVGdj5eJ4mFB9fEhSHipq9IOk/QXFJUiIr9lZT+EsGw==" + "resolved" "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001191.tgz" + "version" "1.0.30001191" + +"capture-exit@^2.0.0": + "integrity" "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==" + "resolved" "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "rsvp" "^4.8.4" + +"case-sensitive-paths-webpack-plugin@2.3.0": + "integrity" "sha512-/4YgnZS8y1UXXmC02xD5rRrBEu6T5ub+mQHLNRj0fzTRbgdBYhsNo2V5EqwgqrExjxsjtF/OpAKAMkKsxbD5XQ==" + "resolved" "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.3.0.tgz" + "version" "2.3.0" + +"caseless@~0.12.0": + "integrity" "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" + "resolved" "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz" + "version" "0.12.0" + +"chalk@^2.0.0": + "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" + "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" + "version" "2.4.2" + dependencies: + "ansi-styles" "^3.2.1" + "escape-string-regexp" "^1.0.5" + "supports-color" "^5.3.0" + +"chalk@^2.4.1": + "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" + "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" + "version" "2.4.2" + dependencies: + "ansi-styles" "^3.2.1" + "escape-string-regexp" "^1.0.5" + "supports-color" "^5.3.0" + +"chalk@^2.4.2": + "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" + "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" + "version" "2.4.2" + dependencies: + "ansi-styles" "^3.2.1" + "escape-string-regexp" "^1.0.5" + "supports-color" "^5.3.0" + +"chalk@^3.0.0": + "integrity" "sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==" + "resolved" "https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "ansi-styles" "^4.1.0" + "supports-color" "^7.1.0" + +"chalk@^4.0.0", "chalk@^4.1.0": + "integrity" "sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==" + "resolved" "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz" + "version" "4.1.0" + dependencies: + "ansi-styles" "^4.1.0" + "supports-color" "^7.1.0" + +"chalk@2.4.2": + "integrity" "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==" + "resolved" "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz" + "version" "2.4.2" + dependencies: + "ansi-styles" "^3.2.1" + "escape-string-regexp" "^1.0.5" + "supports-color" "^5.3.0" + +"char-regex@^1.0.2": + "integrity" "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==" + "resolved" "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz" + "version" "1.0.2" + +"check-types@^11.1.1": + "integrity" "sha512-tzWzvgePgLORb9/3a0YenggReLKAIb2owL03H2Xdoe5pKcUyWRSEQ8xfCar8t2SIAuEDwtmx2da1YB52YuHQMQ==" + "resolved" "https://registry.npmjs.org/check-types/-/check-types-11.1.2.tgz" + "version" "11.1.2" + +"chokidar@^2.1.8": + "integrity" "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==" + "resolved" "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz" + "version" "2.1.8" + dependencies: + "anymatch" "^2.0.0" + "async-each" "^1.0.1" + "braces" "^2.3.2" + "glob-parent" "^3.1.0" + "inherits" "^2.0.3" + "is-binary-path" "^1.0.0" + "is-glob" "^4.0.0" + "normalize-path" "^3.0.0" + "path-is-absolute" "^1.0.0" + "readdirp" "^2.2.1" + "upath" "^1.1.1" + optionalDependencies: + "fsevents" "^1.2.7" + +"chokidar@^3.4.1": + "integrity" "sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==" + "resolved" "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz" + "version" "3.5.1" + dependencies: + "anymatch" "~3.1.1" + "braces" "~3.0.2" + "glob-parent" "~5.1.0" + "is-binary-path" "~2.1.0" + "is-glob" "~4.0.1" + "normalize-path" "~3.0.0" + "readdirp" "~3.5.0" + optionalDependencies: + "fsevents" "~2.3.1" + +"chownr@^1.1.1": + "integrity" "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + "resolved" "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz" + "version" "1.1.4" + +"chownr@^2.0.0": + "integrity" "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==" + "resolved" "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz" + "version" "2.0.0" + +"chrome-trace-event@^1.0.2": + "integrity" "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==" + "resolved" "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "tslib" "^1.9.0" + +"ci-info@^2.0.0": + "integrity" "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==" + "resolved" "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz" + "version" "2.0.0" + +"cipher-base@^1.0.0", "cipher-base@^1.0.1", "cipher-base@^1.0.3": + "integrity" "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==" + "resolved" "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz" + "version" "1.0.4" + dependencies: + "inherits" "^2.0.1" + "safe-buffer" "^5.0.1" + +"cjs-module-lexer@^0.6.0": + "integrity" "sha512-uc2Vix1frTfnuzxxu1Hp4ktSvM3QaI4oXl4ZUqL1wjTu/BGki9TrCWoqLTg/drR1KwAEarXuRFCG2Svr1GxPFw==" + "resolved" "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-0.6.0.tgz" + "version" "0.6.0" + +"class-utils@^0.3.5": + "integrity" "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==" + "resolved" "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz" + "version" "0.3.6" + dependencies: + "arr-union" "^3.1.0" + "define-property" "^0.2.5" + "isobject" "^3.0.0" + "static-extend" "^0.1.1" + +"clean-css@^4.2.3": + "integrity" "sha512-VcMWDN54ZN/DS+g58HYL5/n4Zrqe8vHJpGA8KdgUXFU4fuP/aHNw8eld9SyEIyabIMJX/0RaY/fplOo5hYLSFA==" + "resolved" "https://registry.npmjs.org/clean-css/-/clean-css-4.2.3.tgz" + "version" "4.2.3" + dependencies: + "source-map" "~0.6.0" + +"clean-stack@^2.0.0": + "integrity" "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==" + "resolved" "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz" + "version" "2.2.0" + +"cliui@^5.0.0": + "integrity" "sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA==" + "resolved" "https://registry.npmjs.org/cliui/-/cliui-5.0.0.tgz" + "version" "5.0.0" + dependencies: + "string-width" "^3.1.0" + "strip-ansi" "^5.2.0" + "wrap-ansi" "^5.1.0" + +"cliui@^6.0.0": + "integrity" "sha512-t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ==" + "resolved" "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz" + "version" "6.0.0" + dependencies: + "string-width" "^4.2.0" + "strip-ansi" "^6.0.0" + "wrap-ansi" "^6.2.0" + +"clsx@^1.0.4": + "integrity" "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==" + "resolved" "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz" + "version" "1.1.1" + +"co@^4.6.0": + "integrity" "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=" + "resolved" "https://registry.npmjs.org/co/-/co-4.6.0.tgz" + "version" "4.6.0" + +"coa@^2.0.2": + "integrity" "sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==" + "resolved" "https://registry.npmjs.org/coa/-/coa-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "@types/q" "^1.5.1" + "chalk" "^2.4.1" + "q" "^1.1.2" + +"collect-v8-coverage@^1.0.0": + "integrity" "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==" + "resolved" "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz" + "version" "1.0.1" + +"collection-visit@^1.0.0": + "integrity" "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=" + "resolved" "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "map-visit" "^1.0.0" + "object-visit" "^1.0.0" + +"color-convert@^1.9.0", "color-convert@^1.9.1": + "integrity" "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==" + "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz" + "version" "1.9.3" + dependencies: + "color-name" "1.1.3" + +"color-convert@^2.0.1": + "integrity" "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==" + "resolved" "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "color-name" "~1.1.4" + +"color-name@^1.0.0", "color-name@~1.1.4": + "integrity" "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" + "version" "1.1.4" + +"color-name@1.1.3": + "integrity" "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + "resolved" "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz" + "version" "1.1.3" + +"color-string@^1.5.4": + "integrity" "sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw==" + "resolved" "https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz" + "version" "1.5.4" + dependencies: + "color-name" "^1.0.0" + "simple-swizzle" "^0.2.2" + +"color@^3.0.0": + "integrity" "sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ==" + "resolved" "https://registry.npmjs.org/color/-/color-3.1.3.tgz" + "version" "3.1.3" + dependencies: + "color-convert" "^1.9.1" + "color-string" "^1.5.4" + +"colorette@^1.2.1": + "integrity" "sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw==" + "resolved" "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz" + "version" "1.2.1" + +"combined-stream@^1.0.6", "combined-stream@~1.0.6": + "integrity" "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==" + "resolved" "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz" + "version" "1.0.8" + dependencies: + "delayed-stream" "~1.0.0" + +"commander@^2.20.0": + "integrity" "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + "resolved" "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz" + "version" "2.20.3" + +"commander@^4.1.1": + "integrity" "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==" + "resolved" "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz" + "version" "4.1.1" + +"common-tags@^1.8.0": + "integrity" "sha512-6P6g0uetGpW/sdyUy/iQQCbFF0kWVMSIVSyYz7Zgjcgh8mgw8PQzDNZeyZ5DQ2gM7LBoZPHmnjz8rUthkBG5tw==" + "resolved" "https://registry.npmjs.org/common-tags/-/common-tags-1.8.0.tgz" + "version" "1.8.0" + +"commondir@^1.0.1": + "integrity" "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=" + "resolved" "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz" + "version" "1.0.1" + +"component-emitter@^1.2.1": + "integrity" "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==" + "resolved" "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz" + "version" "1.3.0" + +"compose-function@3.0.3": + "integrity" "sha1-ntZ18TzFRQHTCVCkhv9qe6OrGF8=" + "resolved" "https://registry.npmjs.org/compose-function/-/compose-function-3.0.3.tgz" + "version" "3.0.3" + dependencies: + "arity-n" "^1.0.4" + +"compressible@~2.0.16": + "integrity" "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==" + "resolved" "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz" + "version" "2.0.18" + dependencies: + "mime-db" ">= 1.43.0 < 2" + +"compression@^1.7.4": + "integrity" "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==" + "resolved" "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz" + "version" "1.7.4" + dependencies: + "accepts" "~1.3.5" + "bytes" "3.0.0" + "compressible" "~2.0.16" + "debug" "2.6.9" + "on-headers" "~1.0.2" + "safe-buffer" "5.1.2" + "vary" "~1.1.2" + +"concat-map@0.0.1": + "integrity" "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" + "resolved" "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + "version" "0.0.1" + +"concat-stream@^1.5.0": + "integrity" "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==" + "resolved" "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz" + "version" "1.6.2" + dependencies: + "buffer-from" "^1.0.0" + "inherits" "^2.0.3" + "readable-stream" "^2.2.2" + "typedarray" "^0.0.6" + +"confusing-browser-globals@^1.0.10": + "integrity" "sha512-gNld/3lySHwuhaVluJUKLePYirM3QNCKzVxqAdhJII9/WXKVX5PURzMVJspS1jTslSqjeuG4KMVTSouit5YPHA==" + "resolved" "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.10.tgz" + "version" "1.0.10" + +"connect-history-api-fallback@^1.6.0": + "integrity" "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==" + "resolved" "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz" + "version" "1.6.0" + +"console-browserify@^1.1.0": + "integrity" "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + "resolved" "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz" + "version" "1.2.0" + +"constants-browserify@^1.0.0": + "integrity" "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=" + "resolved" "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz" + "version" "1.0.0" + +"contains-path@^0.1.0": + "integrity" "sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo=" + "resolved" "https://registry.npmjs.org/contains-path/-/contains-path-0.1.0.tgz" + "version" "0.1.0" + +"content-disposition@0.5.3": + "integrity" "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==" + "resolved" "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz" + "version" "0.5.3" + dependencies: + "safe-buffer" "5.1.2" + +"content-type@~1.0.4": + "integrity" "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==" + "resolved" "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz" + "version" "1.0.4" + +"convert-source-map@^0.3.3": + "integrity" "sha1-8dgClQr33SYxof6+BZZVDIarMZA=" + "resolved" "https://registry.npmjs.org/convert-source-map/-/convert-source-map-0.3.5.tgz" + "version" "0.3.5" + +"convert-source-map@^1.4.0", "convert-source-map@^1.5.0", "convert-source-map@^1.6.0", "convert-source-map@^1.7.0", "convert-source-map@1.7.0": + "integrity" "sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==" + "resolved" "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz" + "version" "1.7.0" + dependencies: + "safe-buffer" "~5.1.1" + +"cookie-signature@1.0.6": + "integrity" "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=" + "resolved" "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz" + "version" "1.0.6" + +"cookie@0.4.0": + "integrity" "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==" + "resolved" "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz" + "version" "0.4.0" + +"copy-concurrently@^1.0.0": + "integrity" "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==" + "resolved" "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz" + "version" "1.0.5" + dependencies: + "aproba" "^1.1.1" + "fs-write-stream-atomic" "^1.0.8" + "iferr" "^0.1.5" + "mkdirp" "^0.5.1" + "rimraf" "^2.5.4" + "run-queue" "^1.0.0" + +"copy-descriptor@^0.1.0": + "integrity" "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=" + "resolved" "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz" + "version" "0.1.1" + +"core-js-compat@^3.6.2", "core-js-compat@^3.8.0": + "integrity" "sha512-YK6fwFjCOKWwGnjFUR3c544YsnA/7DoLL0ysncuOJ4pwbriAtOpvM2bygdlcXbvQCQZ7bBU9CL4t7tGl7ETRpQ==" + "resolved" "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.0.tgz" + "version" "3.9.0" + dependencies: + "browserslist" "^4.16.3" + "semver" "7.0.0" + +"core-js-pure@^3.0.0": + "integrity" "sha512-3pEcmMZC9Cq0D4ZBh3pe2HLtqxpGNJBLXF/kZ2YzK17RbKp94w0HFbdbSx8H8kAlZG5k76hvLrkPm57Uyef+kg==" + "resolved" "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.9.0.tgz" + "version" "3.9.0" + +"core-js@^2.4.0": + "integrity" "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==" + "resolved" "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz" + "version" "2.6.12" + +"core-js@^3.6.5": + "integrity" "sha512-PyFBJaLq93FlyYdsndE5VaueA9K5cNB7CGzeCj191YYLhkQM0gdZR2SKihM70oF0wdqKSKClv/tEBOpoRmdOVQ==" + "resolved" "https://registry.npmjs.org/core-js/-/core-js-3.9.0.tgz" + "version" "3.9.0" + +"core-util-is@~1.0.0", "core-util-is@1.0.2": + "integrity" "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" + "resolved" "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz" + "version" "1.0.2" + +"cosmiconfig@^5.0.0": + "integrity" "sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==" + "resolved" "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz" + "version" "5.2.1" + dependencies: + "import-fresh" "^2.0.0" + "is-directory" "^0.3.1" + "js-yaml" "^3.13.1" + "parse-json" "^4.0.0" + +"cosmiconfig@^6.0.0": + "integrity" "sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==" + "resolved" "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz" + "version" "6.0.0" + dependencies: + "@types/parse-json" "^4.0.0" + "import-fresh" "^3.1.0" + "parse-json" "^5.0.0" + "path-type" "^4.0.0" + "yaml" "^1.7.2" + +"cosmiconfig@^7.0.0": + "integrity" "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==" + "resolved" "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz" + "version" "7.0.0" + dependencies: + "@types/parse-json" "^4.0.0" + "import-fresh" "^3.2.1" + "parse-json" "^5.0.0" + "path-type" "^4.0.0" + "yaml" "^1.10.0" + +"create-ecdh@^4.0.0": + "integrity" "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==" + "resolved" "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz" + "version" "4.0.4" + dependencies: + "bn.js" "^4.1.0" + "elliptic" "^6.5.3" + +"create-emotion@^10.0.27": + "integrity" "sha512-fIK73w82HPPn/RsAij7+Zt8eCE8SptcJ3WoRMfxMtjteYxud8GDTKKld7MYwAX2TVhrw29uR1N/bVGxeStHILg==" + "resolved" "https://registry.npmjs.org/create-emotion/-/create-emotion-10.0.27.tgz" + "version" "10.0.27" + dependencies: + "@emotion/cache" "^10.0.27" + "@emotion/serialize" "^0.11.15" + "@emotion/sheet" "0.9.4" + "@emotion/utils" "0.11.3" + +"create-hash@^1.1.0", "create-hash@^1.1.2", "create-hash@^1.2.0": + "integrity" "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==" + "resolved" "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz" + "version" "1.2.0" + dependencies: + "cipher-base" "^1.0.1" + "inherits" "^2.0.1" + "md5.js" "^1.3.4" + "ripemd160" "^2.0.1" + "sha.js" "^2.4.0" + +"create-hmac@^1.1.0", "create-hmac@^1.1.4", "create-hmac@^1.1.7": + "integrity" "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==" + "resolved" "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz" + "version" "1.1.7" + dependencies: + "cipher-base" "^1.0.3" + "create-hash" "^1.1.0" + "inherits" "^2.0.1" + "ripemd160" "^2.0.0" + "safe-buffer" "^5.0.1" + "sha.js" "^2.4.8" + +"cross-spawn@^6.0.0": + "integrity" "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==" + "resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz" + "version" "6.0.5" + dependencies: + "nice-try" "^1.0.4" + "path-key" "^2.0.1" + "semver" "^5.5.0" + "shebang-command" "^1.2.0" + "which" "^1.2.9" + +"cross-spawn@^7.0.0", "cross-spawn@^7.0.2", "cross-spawn@7.0.3": + "integrity" "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==" + "resolved" "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz" + "version" "7.0.3" + dependencies: + "path-key" "^3.1.0" + "shebang-command" "^2.0.0" + "which" "^2.0.1" + +"crypto-browserify@^3.11.0": + "integrity" "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==" + "resolved" "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz" + "version" "3.12.0" + dependencies: + "browserify-cipher" "^1.0.0" + "browserify-sign" "^4.0.0" + "create-ecdh" "^4.0.0" + "create-hash" "^1.1.0" + "create-hmac" "^1.1.0" + "diffie-hellman" "^5.0.0" + "inherits" "^2.0.1" + "pbkdf2" "^3.0.3" + "public-encrypt" "^4.0.0" + "randombytes" "^2.0.0" + "randomfill" "^1.0.3" + +"crypto-random-string@^1.0.0": + "integrity" "sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=" + "resolved" "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz" + "version" "1.0.0" + +"css-blank-pseudo@^0.1.4": + "integrity" "sha512-LHz35Hr83dnFeipc7oqFDmsjHdljj3TQtxGGiNWSOsTLIAubSm4TEz8qCaKFpk7idaQ1GfWscF4E6mgpBysA1w==" + "resolved" "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-0.1.4.tgz" + "version" "0.1.4" + dependencies: + "postcss" "^7.0.5" + +"css-color-keywords@^1.0.0": + "integrity" "sha1-/qJhbcZ2spYmhrOvjb2+GAskTgU=" + "resolved" "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz" + "version" "1.0.0" + +"css-color-names@^0.0.4", "css-color-names@0.0.4": + "integrity" "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=" + "resolved" "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz" + "version" "0.0.4" + +"css-declaration-sorter@^4.0.1": + "integrity" "sha512-BcxQSKTSEEQUftYpBVnsH4SF05NTuBokb19/sBt6asXGKZ/6VP7PLG1CBCkFDYOnhXhPh0jMhO6xZ71oYHXHBA==" + "resolved" "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "postcss" "^7.0.1" + "timsort" "^0.3.0" + +"css-has-pseudo@^0.10.0": + "integrity" "sha512-Z8hnfsZu4o/kt+AuFzeGpLVhFOGO9mluyHBaA2bA8aCGTwah5sT3WV/fTHH8UNZUytOIImuGPrl/prlb4oX4qQ==" + "resolved" "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-0.10.0.tgz" + "version" "0.10.0" + dependencies: + "postcss" "^7.0.6" + "postcss-selector-parser" "^5.0.0-rc.4" + +"css-loader@4.3.0": + "integrity" "sha512-rdezjCjScIrsL8BSYszgT4s476IcNKt6yX69t0pHjJVnPUTDpn4WfIpDQTN3wCJvUvfsz/mFjuGOekf3PY3NUg==" + "resolved" "https://registry.npmjs.org/css-loader/-/css-loader-4.3.0.tgz" + "version" "4.3.0" + dependencies: + "camelcase" "^6.0.0" + "cssesc" "^3.0.0" + "icss-utils" "^4.1.1" + "loader-utils" "^2.0.0" + "postcss" "^7.0.32" + "postcss-modules-extract-imports" "^2.0.0" + "postcss-modules-local-by-default" "^3.0.3" + "postcss-modules-scope" "^2.2.0" + "postcss-modules-values" "^3.0.0" + "postcss-value-parser" "^4.1.0" + "schema-utils" "^2.7.1" + "semver" "^7.3.2" + +"css-prefers-color-scheme@^3.1.1": + "integrity" "sha512-MTu6+tMs9S3EUqzmqLXEcgNRbNkkD/TGFvowpeoWJn5Vfq7FMgsmRQs9X5NXAURiOBmOxm/lLjsDNXDE6k9bhg==" + "resolved" "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-3.1.1.tgz" + "version" "3.1.1" + dependencies: + "postcss" "^7.0.5" + +"css-select-base-adapter@^0.1.1": + "integrity" "sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==" + "resolved" "https://registry.npmjs.org/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz" + "version" "0.1.1" + +"css-select@^2.0.0", "css-select@^2.0.2": + "integrity" "sha512-Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ==" + "resolved" "https://registry.npmjs.org/css-select/-/css-select-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "boolbase" "^1.0.0" + "css-what" "^3.2.1" + "domutils" "^1.7.0" + "nth-check" "^1.0.2" + +"css-to-react-native@^3.0.0": + "integrity" "sha512-Ro1yETZA813eoyUp2GDBhG2j+YggidUmzO1/v9eYBKR2EHVEniE2MI/NqpTQ954BMpTPZFsGNPm46qFB9dpaPQ==" + "resolved" "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "camelize" "^1.0.0" + "css-color-keywords" "^1.0.0" + "postcss-value-parser" "^4.0.2" + +"css-tree@^1.1.2": + "integrity" "sha512-wCoWush5Aeo48GLhfHPbmvZs59Z+M7k5+B1xDnXbdWNcEF423DoFdqSWE0PM5aNk5nI5cp1q7ms36zGApY/sKQ==" + "resolved" "https://registry.npmjs.org/css-tree/-/css-tree-1.1.2.tgz" + "version" "1.1.2" + dependencies: + "mdn-data" "2.0.14" + "source-map" "^0.6.1" + +"css-tree@1.0.0-alpha.37": + "integrity" "sha512-DMxWJg0rnz7UgxKT0Q1HU/L9BeJI0M6ksor0OgqOnF+aRCDWg/N2641HmVyU9KVIu0OVVWOb2IpC9A+BJRnejg==" + "resolved" "https://registry.npmjs.org/css-tree/-/css-tree-1.0.0-alpha.37.tgz" + "version" "1.0.0-alpha.37" + dependencies: + "mdn-data" "2.0.4" + "source-map" "^0.6.1" + +"css-vendor@^2.0.8": + "integrity" "sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==" + "resolved" "https://registry.npmjs.org/css-vendor/-/css-vendor-2.0.8.tgz" + "version" "2.0.8" + dependencies: + "@babel/runtime" "^7.8.3" + "is-in-browser" "^1.0.2" + +"css-what@^3.2.1": + "integrity" "sha512-ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ==" + "resolved" "https://registry.npmjs.org/css-what/-/css-what-3.4.2.tgz" + "version" "3.4.2" + +"css.escape@^1.5.1": + "integrity" "sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=" + "resolved" "https://registry.npmjs.org/css.escape/-/css.escape-1.5.1.tgz" + "version" "1.5.1" + +"css@^2.0.0": + "integrity" "sha512-oUnjmWpy0niI3x/mPL8dVEI1l7MnG3+HHyRPHf+YFSbK+svOhXpmSOcDURUh2aOCgl2grzrOPt1nHLuCVFULLw==" + "resolved" "https://registry.npmjs.org/css/-/css-2.2.4.tgz" + "version" "2.2.4" + dependencies: + "inherits" "^2.0.3" + "source-map" "^0.6.1" + "source-map-resolve" "^0.5.2" + "urix" "^0.1.0" + +"css@^3.0.0": + "integrity" "sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ==" + "resolved" "https://registry.npmjs.org/css/-/css-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "inherits" "^2.0.4" + "source-map" "^0.6.1" + "source-map-resolve" "^0.6.0" + +"cssdb@^4.4.0": + "integrity" "sha512-LsTAR1JPEM9TpGhl/0p3nQecC2LJ0kD8X5YARu1hk/9I1gril5vDtMZyNxcEpxxDj34YNck/ucjuoUd66K03oQ==" + "resolved" "https://registry.npmjs.org/cssdb/-/cssdb-4.4.0.tgz" + "version" "4.4.0" + +"cssesc@^2.0.0": + "integrity" "sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==" + "resolved" "https://registry.npmjs.org/cssesc/-/cssesc-2.0.0.tgz" + "version" "2.0.0" + +"cssesc@^3.0.0": + "integrity" "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==" + "resolved" "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz" + "version" "3.0.0" + +"cssnano-preset-default@^4.0.7": + "integrity" "sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA==" + "resolved" "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz" + "version" "4.0.7" + dependencies: + "css-declaration-sorter" "^4.0.1" + "cssnano-util-raw-cache" "^4.0.1" + "postcss" "^7.0.0" + "postcss-calc" "^7.0.1" + "postcss-colormin" "^4.0.3" + "postcss-convert-values" "^4.0.1" + "postcss-discard-comments" "^4.0.2" + "postcss-discard-duplicates" "^4.0.2" + "postcss-discard-empty" "^4.0.1" + "postcss-discard-overridden" "^4.0.1" + "postcss-merge-longhand" "^4.0.11" + "postcss-merge-rules" "^4.0.3" + "postcss-minify-font-values" "^4.0.2" + "postcss-minify-gradients" "^4.0.2" + "postcss-minify-params" "^4.0.2" + "postcss-minify-selectors" "^4.0.2" + "postcss-normalize-charset" "^4.0.1" + "postcss-normalize-display-values" "^4.0.2" + "postcss-normalize-positions" "^4.0.2" + "postcss-normalize-repeat-style" "^4.0.2" + "postcss-normalize-string" "^4.0.2" + "postcss-normalize-timing-functions" "^4.0.2" + "postcss-normalize-unicode" "^4.0.1" + "postcss-normalize-url" "^4.0.1" + "postcss-normalize-whitespace" "^4.0.2" + "postcss-ordered-values" "^4.1.2" + "postcss-reduce-initial" "^4.0.3" + "postcss-reduce-transforms" "^4.0.2" + "postcss-svgo" "^4.0.2" + "postcss-unique-selectors" "^4.0.1" + +"cssnano-util-get-arguments@^4.0.0": + "integrity" "sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=" + "resolved" "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz" + "version" "4.0.0" + +"cssnano-util-get-match@^4.0.0": + "integrity" "sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=" + "resolved" "https://registry.npmjs.org/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz" + "version" "4.0.0" + +"cssnano-util-raw-cache@^4.0.1": + "integrity" "sha512-qLuYtWK2b2Dy55I8ZX3ky1Z16WYsx544Q0UWViebptpwn/xDBmog2TLg4f+DBMg1rJ6JDWtn96WHbOKDWt1WQA==" + "resolved" "https://registry.npmjs.org/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "postcss" "^7.0.0" + +"cssnano-util-same-parent@^4.0.0": + "integrity" "sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q==" + "resolved" "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz" + "version" "4.0.1" + +"cssnano@^4.1.10": + "integrity" "sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ==" + "resolved" "https://registry.npmjs.org/cssnano/-/cssnano-4.1.10.tgz" + "version" "4.1.10" + dependencies: + "cosmiconfig" "^5.0.0" + "cssnano-preset-default" "^4.0.7" + "is-resolvable" "^1.0.0" + "postcss" "^7.0.0" + +"csso@^4.0.2": + "integrity" "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==" + "resolved" "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz" + "version" "4.2.0" + dependencies: + "css-tree" "^1.1.2" + +"cssom@^0.4.4": + "integrity" "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==" + "resolved" "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz" + "version" "0.4.4" + +"cssom@~0.3.6": + "integrity" "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==" + "resolved" "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz" + "version" "0.3.8" + +"cssstyle@^2.2.0": + "integrity" "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==" + "resolved" "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz" + "version" "2.3.0" + dependencies: + "cssom" "~0.3.6" + +"csstype@^2.5.2": + "integrity" "sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q==" + "resolved" "https://registry.npmjs.org/csstype/-/csstype-2.6.16.tgz" + "version" "2.6.16" + +"csstype@^2.5.7": + "integrity" "sha512-61FBWoDHp/gRtsoDkq/B1nWrCUG/ok1E3tUrcNbZjsE9Cxd9yzUirjS3+nAATB8U4cTtaQmAHbNndoFz5L6C9Q==" + "resolved" "https://registry.npmjs.org/csstype/-/csstype-2.6.16.tgz" + "version" "2.6.16" + +"csstype@^3.0.2": + "integrity" "sha512-KxnUB0ZMlnUWCsx2Z8MUsr6qV6ja1w9ArPErJaJaF8a5SOWoHLIszeCTKGRGRgtLgYrs1E8CHkNSP1VZTTPc9g==" + "resolved" "https://registry.npmjs.org/csstype/-/csstype-3.0.7.tgz" + "version" "3.0.7" + +"cyclist@^1.0.1": + "integrity" "sha1-WW6WmP0MgOEgOMK4LW6xs1tiJNk=" + "resolved" "https://registry.npmjs.org/cyclist/-/cyclist-1.0.1.tgz" + "version" "1.0.1" + +"d@^1.0.1", "d@1": + "integrity" "sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==" + "resolved" "https://registry.npmjs.org/d/-/d-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "es5-ext" "^0.10.50" + "type" "^1.0.1" + +"damerau-levenshtein@^1.0.6": + "integrity" "sha512-JVrozIeElnj3QzfUIt8tB8YMluBJom4Vw9qTPpjGYQ9fYlB3D/rb6OordUxf3xeFB35LKWs0xqcO5U6ySvBtug==" + "resolved" "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.6.tgz" + "version" "1.0.6" + +"dashdash@^1.12.0": + "integrity" "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=" + "resolved" "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz" + "version" "1.14.1" + dependencies: + "assert-plus" "^1.0.0" + +"data-urls@^2.0.0": + "integrity" "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==" + "resolved" "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "abab" "^2.0.3" + "whatwg-mimetype" "^2.3.0" + "whatwg-url" "^8.0.0" + +"date-fns@^2.19.0": + "integrity" "sha512-X3bf2iTPgCAQp9wvjOQytnf5vO5rESYRXlPIVcgSbtT5OTScPcsf9eZU+B/YIkKAtYr5WeCii58BgATrNitlWg==" + "resolved" "https://registry.npmjs.org/date-fns/-/date-fns-2.19.0.tgz" + "version" "2.19.0" + +"debug@^2.2.0": + "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + "version" "2.6.9" + dependencies: + "ms" "2.0.0" + +"debug@^2.3.3": + "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + "version" "2.6.9" + dependencies: + "ms" "2.0.0" + +"debug@^2.6.0": + "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + "version" "2.6.9" + dependencies: + "ms" "2.0.0" + +"debug@^2.6.9": + "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + "version" "2.6.9" + dependencies: + "ms" "2.0.0" + +"debug@^3.1.1": + "integrity" "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" + "resolved" "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" + "version" "3.2.7" + dependencies: + "ms" "^2.1.1" + +"debug@^3.2.6": + "integrity" "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==" + "resolved" "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz" + "version" "3.2.7" + dependencies: + "ms" "^2.1.1" + +"debug@^4.0.1", "debug@^4.1.0", "debug@^4.1.1": + "integrity" "sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==" + "resolved" "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz" + "version" "4.3.1" + dependencies: + "ms" "2.1.2" + +"debug@2.6.9": + "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" + "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" + "version" "2.6.9" + dependencies: + "ms" "2.0.0" + +"decamelize@^1.2.0": + "integrity" "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=" + "resolved" "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz" + "version" "1.2.0" + +"decimal.js@^10.2.0": + "integrity" "sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw==" + "resolved" "https://registry.npmjs.org/decimal.js/-/decimal.js-10.2.1.tgz" + "version" "10.2.1" + +"decode-uri-component@^0.2.0": + "integrity" "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=" + "resolved" "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz" + "version" "0.2.0" + +"dedent@^0.7.0": + "integrity" "sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw=" + "resolved" "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz" + "version" "0.7.0" + +"deep-equal@^1.0.1": + "integrity" "sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g==" + "resolved" "https://registry.npmjs.org/deep-equal/-/deep-equal-1.1.1.tgz" + "version" "1.1.1" + dependencies: + "is-arguments" "^1.0.4" + "is-date-object" "^1.0.1" + "is-regex" "^1.0.4" + "object-is" "^1.0.1" + "object-keys" "^1.1.1" + "regexp.prototype.flags" "^1.2.0" + +"deep-is@^0.1.3", "deep-is@~0.1.3": + "integrity" "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=" + "resolved" "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz" + "version" "0.1.3" + +"deepmerge@^4.2.2": + "integrity" "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==" + "resolved" "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz" + "version" "4.2.2" + +"default-gateway@^4.2.0": + "integrity" "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==" + "resolved" "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz" + "version" "4.2.0" + dependencies: + "execa" "^1.0.0" + "ip-regex" "^2.1.0" + +"define-properties@^1.1.2", "define-properties@^1.1.3": + "integrity" "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==" + "resolved" "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz" + "version" "1.1.3" + dependencies: + "object-keys" "^1.0.12" + +"define-property@^0.2.5": + "integrity" "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=" + "resolved" "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz" + "version" "0.2.5" + dependencies: + "is-descriptor" "^0.1.0" + +"define-property@^1.0.0": + "integrity" "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=" + "resolved" "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "is-descriptor" "^1.0.0" + +"define-property@^2.0.2": + "integrity" "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==" + "resolved" "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "is-descriptor" "^1.0.2" + "isobject" "^3.0.1" + +"del@^4.1.1": + "integrity" "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==" + "resolved" "https://registry.npmjs.org/del/-/del-4.1.1.tgz" + "version" "4.1.1" + dependencies: + "@types/glob" "^7.1.1" + "globby" "^6.1.0" + "is-path-cwd" "^2.0.0" + "is-path-in-cwd" "^2.0.0" + "p-map" "^2.0.0" + "pify" "^4.0.1" + "rimraf" "^2.6.3" + +"delayed-stream@~1.0.0": + "integrity" "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" + "resolved" "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" + "version" "1.0.0" + +"depd@~1.1.2": + "integrity" "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=" + "resolved" "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz" + "version" "1.1.2" + +"des.js@^1.0.0": + "integrity" "sha512-Q0I4pfFrv2VPd34/vfLrFOoRmlYj3OV50i7fskps1jZWK1kApMWWT9G6RRUeYedLcBDIhnSDaUvJMb3AhUlaEA==" + "resolved" "https://registry.npmjs.org/des.js/-/des.js-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "inherits" "^2.0.1" + "minimalistic-assert" "^1.0.0" + +"destroy@~1.0.4": + "integrity" "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" + "resolved" "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz" + "version" "1.0.4" + +"detect-newline@^3.0.0": + "integrity" "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==" + "resolved" "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz" + "version" "3.1.0" + +"detect-node@^2.0.4": + "integrity" "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==" + "resolved" "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz" + "version" "2.0.4" + +"detect-port-alt@1.1.6": + "integrity" "sha512-5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q==" + "resolved" "https://registry.npmjs.org/detect-port-alt/-/detect-port-alt-1.1.6.tgz" + "version" "1.1.6" + dependencies: + "address" "^1.0.1" + "debug" "^2.6.0" + +"diff-sequences@^26.6.2": + "integrity" "sha512-Mv/TDa3nZ9sbc5soK+OoA74BsS3mL37yixCvUAQkiuA4Wz6YtwP/K47n2rv2ovzHZvoiQeA5FTQOschKkEwB0Q==" + "resolved" "https://registry.npmjs.org/diff-sequences/-/diff-sequences-26.6.2.tgz" + "version" "26.6.2" + +"diffie-hellman@^5.0.0": + "integrity" "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==" + "resolved" "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz" + "version" "5.0.3" + dependencies: + "bn.js" "^4.1.0" + "miller-rabin" "^4.0.0" + "randombytes" "^2.0.0" + +"dir-glob@^3.0.1": + "integrity" "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==" + "resolved" "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz" + "version" "3.0.1" + dependencies: + "path-type" "^4.0.0" + +"dns-equal@^1.0.0": + "integrity" "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" + "resolved" "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz" + "version" "1.0.0" + +"dns-packet@^1.3.1": + "integrity" "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==" + "resolved" "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz" + "version" "1.3.1" + dependencies: + "ip" "^1.1.0" + "safe-buffer" "^5.0.1" + +"dns-txt@^2.0.2": + "integrity" "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=" + "resolved" "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "buffer-indexof" "^1.0.0" + +"doctrine@^2.1.0": + "integrity" "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==" + "resolved" "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "esutils" "^2.0.2" + +"doctrine@^3.0.0": + "integrity" "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==" + "resolved" "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "esutils" "^2.0.2" + +"doctrine@1.5.0": + "integrity" "sha1-N53Ocw9hZvds76TmcHoVmwLFpvo=" + "resolved" "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz" + "version" "1.5.0" + dependencies: + "esutils" "^2.0.2" + "isarray" "^1.0.0" + +"dom-accessibility-api@^0.5.4": + "integrity" "sha512-TvrjBckDy2c6v6RLxPv5QXOnU+SmF9nBII5621Ve5fu6Z/BDrENurBEvlC1f44lKEUVqOpK4w9E5Idc5/EgkLQ==" + "resolved" "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.4.tgz" + "version" "0.5.4" + +"dom-converter@^0.2": + "integrity" "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==" + "resolved" "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz" + "version" "0.2.0" + dependencies: + "utila" "~0.4" + +"dom-helpers@^3.4.0": + "integrity" "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==" + "resolved" "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz" + "version" "3.4.0" + dependencies: + "@babel/runtime" "^7.1.2" + +"dom-helpers@^5.0.1": + "integrity" "sha512-Ru5o9+V8CpunKnz5LGgWXkmrH/20cGKwcHwS4m73zIvs54CN9epEmT/HLqFJW3kXpakAFkEdzgy1hzlJe3E4OQ==" + "resolved" "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.0.tgz" + "version" "5.2.0" + dependencies: + "@babel/runtime" "^7.8.7" + "csstype" "^3.0.2" + +"dom-serializer@0": + "integrity" "sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g==" + "resolved" "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.2.2.tgz" + "version" "0.2.2" + dependencies: + "domelementtype" "^2.0.1" + "entities" "^2.0.0" + +"domain-browser@^1.1.1": + "integrity" "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==" + "resolved" "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz" + "version" "1.2.0" + +"domelementtype@^1.3.1", "domelementtype@1": + "integrity" "sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==" + "resolved" "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.1.tgz" + "version" "1.3.1" + +"domelementtype@^2.0.1": + "integrity" "sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==" + "resolved" "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz" + "version" "2.1.0" + +"domexception@^2.0.1": + "integrity" "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==" + "resolved" "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "webidl-conversions" "^5.0.0" + +"domhandler@^2.3.0": + "integrity" "sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==" + "resolved" "https://registry.npmjs.org/domhandler/-/domhandler-2.4.2.tgz" + "version" "2.4.2" + dependencies: + "domelementtype" "1" + +"domutils@^1.5.1", "domutils@^1.7.0": + "integrity" "sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==" + "resolved" "https://registry.npmjs.org/domutils/-/domutils-1.7.0.tgz" + "version" "1.7.0" + dependencies: + "dom-serializer" "0" + "domelementtype" "1" + +"dot-case@^3.0.4": + "integrity" "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==" + "resolved" "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz" + "version" "3.0.4" + dependencies: + "no-case" "^3.0.4" + "tslib" "^2.0.3" + +"dot-prop@^5.2.0": + "integrity" "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==" + "resolved" "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz" + "version" "5.3.0" + dependencies: + "is-obj" "^2.0.0" + +"dotenv-expand@5.1.0": + "integrity" "sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==" + "resolved" "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-5.1.0.tgz" + "version" "5.1.0" + +"dotenv@8.2.0": + "integrity" "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==" + "resolved" "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz" + "version" "8.2.0" + +"duplexer@^0.1.1": + "integrity" "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + "resolved" "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz" + "version" "0.1.2" + +"duplexify@^3.4.2", "duplexify@^3.6.0": + "integrity" "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==" + "resolved" "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz" + "version" "3.7.1" + dependencies: + "end-of-stream" "^1.0.0" + "inherits" "^2.0.1" + "readable-stream" "^2.0.0" + "stream-shift" "^1.0.0" + +"ecc-jsbn@~0.1.1": + "integrity" "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=" + "resolved" "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz" + "version" "0.1.2" + dependencies: + "jsbn" "~0.1.0" + "safer-buffer" "^2.1.0" + +"ee-first@1.1.1": + "integrity" "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=" + "resolved" "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz" + "version" "1.1.1" + +"ejs@^2.6.1": + "integrity" "sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA==" + "resolved" "https://registry.npmjs.org/ejs/-/ejs-2.7.4.tgz" + "version" "2.7.4" + +"electron-to-chromium@^1.3.564", "electron-to-chromium@^1.3.649": + "integrity" "sha512-RTD97QkdrJKaKwRv9h/wGAaoR2lGxNXEcBXS31vjitgTPwTWAbLdS7cEsBK68eEQy7p6YyT8D5BxBEYHu2SuwQ==" + "resolved" "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.671.tgz" + "version" "1.3.671" + +"elliptic@^6.5.3": + "integrity" "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==" + "resolved" "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz" + "version" "6.5.4" + dependencies: + "bn.js" "^4.11.9" + "brorand" "^1.1.0" + "hash.js" "^1.0.0" + "hmac-drbg" "^1.0.1" + "inherits" "^2.0.4" + "minimalistic-assert" "^1.0.1" + "minimalistic-crypto-utils" "^1.0.1" + +"emittery@^0.7.1": + "integrity" "sha512-A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ==" + "resolved" "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz" + "version" "0.7.2" + +"emoji-regex@^7.0.1": + "integrity" "sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA==" + "resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz" + "version" "7.0.3" + +"emoji-regex@^8.0.0": + "integrity" "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + "resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz" + "version" "8.0.0" + +"emoji-regex@^9.0.0": + "integrity" "sha512-117l1H6U4X3Krn+MrzYrL57d5H7siRHWraBs7s+LjRuFK7Fe7hJqnJ0skWlinqsycVLU5YAo6L8CsEYQ0V5prg==" + "resolved" "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.1.tgz" + "version" "9.2.1" + +"emojis-list@^2.0.0": + "integrity" "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=" + "resolved" "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz" + "version" "2.1.0" + +"emojis-list@^3.0.0": + "integrity" "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==" + "resolved" "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz" + "version" "3.0.0" + +"emotion@^10.0.1": + "integrity" "sha512-2xdDzdWWzue8R8lu4G76uWX5WhyQuzATon9LmNeCy/2BHVC6dsEpfhN1a0qhELgtDVdjyEA6J8Y/VlI5ZnaH0g==" + "resolved" "https://registry.npmjs.org/emotion/-/emotion-10.0.27.tgz" + "version" "10.0.27" + dependencies: + "babel-plugin-emotion" "^10.0.27" + "create-emotion" "^10.0.27" + +"encodeurl@~1.0.2": + "integrity" "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=" + "resolved" "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz" + "version" "1.0.2" + +"end-of-stream@^1.0.0", "end-of-stream@^1.1.0": + "integrity" "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==" + "resolved" "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz" + "version" "1.4.4" + dependencies: + "once" "^1.4.0" + +"enhanced-resolve@^4.3.0": + "integrity" "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==" + "resolved" "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz" + "version" "4.5.0" + dependencies: + "graceful-fs" "^4.1.2" + "memory-fs" "^0.5.0" + "tapable" "^1.0.0" + +"enquirer@^2.3.5": + "integrity" "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==" + "resolved" "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz" + "version" "2.3.6" + dependencies: + "ansi-colors" "^4.1.1" + +"entities@^1.1.1": + "integrity" "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==" + "resolved" "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz" + "version" "1.1.2" + +"entities@^2.0.0": + "integrity" "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==" + "resolved" "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz" + "version" "2.2.0" + +"errno@^0.1.3", "errno@~0.1.7": + "integrity" "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==" + "resolved" "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz" + "version" "0.1.8" + dependencies: + "prr" "~1.0.1" + +"error-ex@^1.2.0", "error-ex@^1.3.1": + "integrity" "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==" + "resolved" "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz" + "version" "1.3.2" + dependencies: + "is-arrayish" "^0.2.1" + +"error-stack-parser@^2.0.6": + "integrity" "sha512-d51brTeqC+BHlwF0BhPtcYgF5nlzf9ZZ0ZIUQNZpc9ZB9qw5IJ2diTrBY9jlCJkTLITYPjmiX6OWCwH+fuyNgQ==" + "resolved" "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.0.6.tgz" + "version" "2.0.6" + dependencies: + "stackframe" "^1.1.1" + +"es-abstract@^1.17.2": + "integrity" "sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==" + "resolved" "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz" + "version" "1.17.7" + dependencies: + "es-to-primitive" "^1.2.1" + "function-bind" "^1.1.1" + "has" "^1.0.3" + "has-symbols" "^1.0.1" + "is-callable" "^1.2.2" + "is-regex" "^1.1.1" + "object-inspect" "^1.8.0" + "object-keys" "^1.1.1" + "object.assign" "^4.1.1" + "string.prototype.trimend" "^1.0.1" + "string.prototype.trimstart" "^1.0.1" + +"es-abstract@^1.18.0-next.1", "es-abstract@^1.18.0-next.2": + "integrity" "sha512-Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw==" + "resolved" "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.2.tgz" + "version" "1.18.0-next.2" + dependencies: + "call-bind" "^1.0.2" + "es-to-primitive" "^1.2.1" + "function-bind" "^1.1.1" + "get-intrinsic" "^1.0.2" + "has" "^1.0.3" + "has-symbols" "^1.0.1" + "is-callable" "^1.2.2" + "is-negative-zero" "^2.0.1" + "is-regex" "^1.1.1" + "object-inspect" "^1.9.0" + "object-keys" "^1.1.1" + "object.assign" "^4.1.2" + "string.prototype.trimend" "^1.0.3" + "string.prototype.trimstart" "^1.0.3" + +"es-to-primitive@^1.2.1": + "integrity" "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==" + "resolved" "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz" + "version" "1.2.1" + dependencies: + "is-callable" "^1.1.4" + "is-date-object" "^1.0.1" + "is-symbol" "^1.0.2" + +"es5-ext@^0.10.35", "es5-ext@^0.10.50": + "integrity" "sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q==" + "resolved" "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.53.tgz" + "version" "0.10.53" + dependencies: + "es6-iterator" "~2.0.3" + "es6-symbol" "~3.1.3" + "next-tick" "~1.0.0" + +"es6-iterator@~2.0.3", "es6-iterator@2.0.3": + "integrity" "sha1-p96IkUGgWpSwhUQDstCg+/qY87c=" + "resolved" "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.3.tgz" + "version" "2.0.3" + dependencies: + "d" "1" + "es5-ext" "^0.10.35" + "es6-symbol" "^3.1.1" + +"es6-symbol@^3.1.1", "es6-symbol@~3.1.3": + "integrity" "sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==" + "resolved" "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.3.tgz" + "version" "3.1.3" + dependencies: + "d" "^1.0.1" + "ext" "^1.1.2" + +"escalade@^3.0.2", "escalade@^3.1.1": + "integrity" "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==" + "resolved" "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz" + "version" "3.1.1" + +"escape-html@~1.0.3": + "integrity" "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=" + "resolved" "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz" + "version" "1.0.3" + +"escape-string-regexp@^1.0.5": + "integrity" "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" + "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz" + "version" "1.0.5" + +"escape-string-regexp@^2.0.0", "escape-string-regexp@2.0.0": + "integrity" "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==" + "resolved" "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz" + "version" "2.0.0" + +"escodegen@^1.14.1": + "integrity" "sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==" + "resolved" "https://registry.npmjs.org/escodegen/-/escodegen-1.14.3.tgz" + "version" "1.14.3" + dependencies: + "esprima" "^4.0.1" + "estraverse" "^4.2.0" + "esutils" "^2.0.2" + "optionator" "^0.8.1" + optionalDependencies: + "source-map" "~0.6.1" + +"eslint-config-react-app@^6.0.0": + "integrity" "sha512-bpoAAC+YRfzq0dsTk+6v9aHm/uqnDwayNAXleMypGl6CpxI9oXXscVHo4fk3eJPIn+rsbtNetB4r/ZIidFIE8A==" + "resolved" "https://registry.npmjs.org/eslint-config-react-app/-/eslint-config-react-app-6.0.0.tgz" + "version" "6.0.0" + dependencies: + "confusing-browser-globals" "^1.0.10" + +"eslint-import-resolver-node@^0.3.4": + "integrity" "sha512-ogtf+5AB/O+nM6DIeBUNr2fuT7ot9Qg/1harBfBtaP13ekEWFQEEMP94BCB7zaNW3gyY+8SHYF00rnqYwXKWOA==" + "resolved" "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.4.tgz" + "version" "0.3.4" + dependencies: + "debug" "^2.6.9" + "resolve" "^1.13.1" + +"eslint-module-utils@^2.6.0": + "integrity" "sha512-6j9xxegbqe8/kZY8cYpcp0xhbK0EgJlg3g9mib3/miLaExuuwc3n5UEfSnU6hWMbT0FAYVvDbL9RrRgpUeQIvA==" + "resolved" "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.6.0.tgz" + "version" "2.6.0" + dependencies: + "debug" "^2.6.9" + "pkg-dir" "^2.0.0" + +"eslint-plugin-flowtype@^5.2.0": + "integrity" "sha512-C4PlPYpszr9h1cBfUbTNRI1IdxUCF0qrXAHkXS2+bESp7WUUCnvb3UBBnYlaQLvJYJ2lRz+2SPQQ/WyV7p/Tow==" + "resolved" "https://registry.npmjs.org/eslint-plugin-flowtype/-/eslint-plugin-flowtype-5.2.2.tgz" + "version" "5.2.2" + dependencies: + "lodash" "^4.17.15" + "string-natural-compare" "^3.0.1" + +"eslint-plugin-import@^2.22.0", "eslint-plugin-import@^2.22.1": + "integrity" "sha512-8K7JjINHOpH64ozkAhpT3sd+FswIZTfMZTjdx052pnWrgRCVfp8op9tbjpAk3DdUeI/Ba4C8OjdC0r90erHEOw==" + "resolved" "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.22.1.tgz" + "version" "2.22.1" + dependencies: + "array-includes" "^3.1.1" + "array.prototype.flat" "^1.2.3" + "contains-path" "^0.1.0" + "debug" "^2.6.9" + "doctrine" "1.5.0" + "eslint-import-resolver-node" "^0.3.4" + "eslint-module-utils" "^2.6.0" + "has" "^1.0.3" + "minimatch" "^3.0.4" + "object.values" "^1.1.1" + "read-pkg-up" "^2.0.0" + "resolve" "^1.17.0" + "tsconfig-paths" "^3.9.0" + +"eslint-plugin-jest@^24.0.0", "eslint-plugin-jest@^24.1.0": + "integrity" "sha512-FIP3lwC8EzEG+rOs1y96cOJmMVpdFNreoDJv29B5vIupVssRi8zrSY3QadogT0K3h1Y8TMxJ6ZSAzYUmFCp2hg==" + "resolved" "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-24.1.5.tgz" + "version" "24.1.5" + dependencies: + "@typescript-eslint/experimental-utils" "^4.0.1" + +"eslint-plugin-jsx-a11y@^6.3.1": + "integrity" "sha512-0rGPJBbwHoGNPU73/QCLP/vveMlM1b1Z9PponxO87jfr6tuH5ligXbDT6nHSSzBC8ovX2Z+BQu7Bk5D/Xgq9zg==" + "resolved" "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.4.1.tgz" + "version" "6.4.1" + dependencies: + "@babel/runtime" "^7.11.2" + "aria-query" "^4.2.2" + "array-includes" "^3.1.1" + "ast-types-flow" "^0.0.7" + "axe-core" "^4.0.2" + "axobject-query" "^2.2.0" + "damerau-levenshtein" "^1.0.6" + "emoji-regex" "^9.0.0" + "has" "^1.0.3" + "jsx-ast-utils" "^3.1.0" + "language-tags" "^1.0.5" + +"eslint-plugin-react-hooks@^4.0.8", "eslint-plugin-react-hooks@^4.2.0": + "integrity" "sha512-623WEiZJqxR7VdxFCKLI6d6LLpwJkGPYKODnkH3D7WpOG5KM8yWueBd8TLsNAetEJNF5iJmolaAKO3F8yzyVBQ==" + "resolved" "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.2.0.tgz" + "version" "4.2.0" + +"eslint-plugin-react@^7.20.3", "eslint-plugin-react@^7.21.5": + "integrity" "sha512-p30tuX3VS+NWv9nQot9xIGAHBXR0+xJVaZriEsHoJrASGCJZDJ8JLNM0YqKqI0AKm6Uxaa1VUHoNEibxRCMQHA==" + "resolved" "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.22.0.tgz" + "version" "7.22.0" + dependencies: + "array-includes" "^3.1.1" + "array.prototype.flatmap" "^1.2.3" + "doctrine" "^2.1.0" + "has" "^1.0.3" + "jsx-ast-utils" "^2.4.1 || ^3.0.0" + "object.entries" "^1.1.2" + "object.fromentries" "^2.0.2" + "object.values" "^1.1.1" + "prop-types" "^15.7.2" + "resolve" "^1.18.1" + "string.prototype.matchall" "^4.0.2" + +"eslint-plugin-testing-library@^3.9.0", "eslint-plugin-testing-library@^3.9.2": + "integrity" "sha512-nQIFe2muIFv2oR2zIuXE4vTbcFNx8hZKRzgHZqJg8rfopIWwoTwtlbCCNELT/jXzVe1uZF68ALGYoDXjLczKiQ==" + "resolved" "https://registry.npmjs.org/eslint-plugin-testing-library/-/eslint-plugin-testing-library-3.10.1.tgz" + "version" "3.10.1" + dependencies: + "@typescript-eslint/experimental-utils" "^3.10.1" + +"eslint-scope@^4.0.3": + "integrity" "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==" + "resolved" "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz" + "version" "4.0.3" + dependencies: + "esrecurse" "^4.1.0" + "estraverse" "^4.1.1" + +"eslint-scope@^5.0.0", "eslint-scope@^5.1.1": + "integrity" "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==" + "resolved" "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz" + "version" "5.1.1" + dependencies: + "esrecurse" "^4.3.0" + "estraverse" "^4.1.1" + +"eslint-utils@^2.0.0", "eslint-utils@^2.1.0": + "integrity" "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==" + "resolved" "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "eslint-visitor-keys" "^1.1.0" + +"eslint-visitor-keys@^1.0.0", "eslint-visitor-keys@^1.1.0", "eslint-visitor-keys@^1.3.0": + "integrity" "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==" + "resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz" + "version" "1.3.0" + +"eslint-visitor-keys@^2.0.0": + "integrity" "sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ==" + "resolved" "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz" + "version" "2.0.0" + +"eslint-webpack-plugin@^2.5.2": + "integrity" "sha512-ndD9chZ/kaGnjjx7taRg7c6FK/YKb29SSYzaLtPBIYLYJQmZtuKqtQbAvTS2ymiMQT6X0VW9vZIHK0KLstv93Q==" + "resolved" "https://registry.npmjs.org/eslint-webpack-plugin/-/eslint-webpack-plugin-2.5.2.tgz" + "version" "2.5.2" + dependencies: + "@types/eslint" "^7.2.6" + "arrify" "^2.0.1" + "jest-worker" "^26.6.2" + "micromatch" "^4.0.2" + "schema-utils" "^3.0.0" + +"eslint@*", "eslint@^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0", "eslint@^3 || ^4 || ^5 || ^6 || ^7", "eslint@^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0", "eslint@^5 || ^6 || ^7", "eslint@^5.0.0 || ^6.0.0 || ^7.0.0", "eslint@^7.0.0", "eslint@^7.1.0", "eslint@^7.11.0", "eslint@^7.5.0", "eslint@>= 4.12.1", "eslint@>=5": + "integrity" "sha512-qGi0CTcOGP2OtCQBgWZlQjcTuP0XkIpYFj25XtRTQSHC+umNnp7UMshr2G8SLsRFYDdAPFeHOsiteadmMH02Yw==" + "resolved" "https://registry.npmjs.org/eslint/-/eslint-7.20.0.tgz" + "version" "7.20.0" + dependencies: + "@babel/code-frame" "7.12.11" + "@eslint/eslintrc" "^0.3.0" + "ajv" "^6.10.0" + "chalk" "^4.0.0" + "cross-spawn" "^7.0.2" + "debug" "^4.0.1" + "doctrine" "^3.0.0" + "enquirer" "^2.3.5" + "eslint-scope" "^5.1.1" + "eslint-utils" "^2.1.0" + "eslint-visitor-keys" "^2.0.0" + "espree" "^7.3.1" + "esquery" "^1.4.0" + "esutils" "^2.0.2" + "file-entry-cache" "^6.0.0" + "functional-red-black-tree" "^1.0.1" + "glob-parent" "^5.0.0" + "globals" "^12.1.0" + "ignore" "^4.0.6" + "import-fresh" "^3.0.0" + "imurmurhash" "^0.1.4" + "is-glob" "^4.0.0" + "js-yaml" "^3.13.1" + "json-stable-stringify-without-jsonify" "^1.0.1" + "levn" "^0.4.1" + "lodash" "^4.17.20" + "minimatch" "^3.0.4" + "natural-compare" "^1.4.0" + "optionator" "^0.9.1" + "progress" "^2.0.0" + "regexpp" "^3.1.0" + "semver" "^7.2.1" + "strip-ansi" "^6.0.0" + "strip-json-comments" "^3.1.0" + "table" "^6.0.4" + "text-table" "^0.2.0" + "v8-compile-cache" "^2.0.3" + +"espree@^7.3.0", "espree@^7.3.1": + "integrity" "sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==" + "resolved" "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz" + "version" "7.3.1" + dependencies: + "acorn" "^7.4.0" + "acorn-jsx" "^5.3.1" + "eslint-visitor-keys" "^1.3.0" + +"esprima@^4.0.0", "esprima@^4.0.1": + "integrity" "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" + "resolved" "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz" + "version" "4.0.1" + +"esquery@^1.4.0": + "integrity" "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==" + "resolved" "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz" + "version" "1.4.0" + dependencies: + "estraverse" "^5.1.0" + +"esrecurse@^4.1.0", "esrecurse@^4.3.0": + "integrity" "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==" + "resolved" "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz" + "version" "4.3.0" + dependencies: + "estraverse" "^5.2.0" + +"estraverse@^4.1.1", "estraverse@^4.2.0": + "integrity" "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==" + "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz" + "version" "4.3.0" + +"estraverse@^5.1.0": + "integrity" "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==" + "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz" + "version" "5.2.0" + +"estraverse@^5.2.0": + "integrity" "sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ==" + "resolved" "https://registry.npmjs.org/estraverse/-/estraverse-5.2.0.tgz" + "version" "5.2.0" + +"estree-walker@^0.6.1": + "integrity" "sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==" + "resolved" "https://registry.npmjs.org/estree-walker/-/estree-walker-0.6.1.tgz" + "version" "0.6.1" + +"estree-walker@^1.0.1": + "integrity" "sha512-1fMXF3YP4pZZVozF8j/ZLfvnR8NSIljt56UhbZ5PeeDmmGHpgpdwQt7ITlGvYaQukCvuBRMLEiKiYC+oeIg4cg==" + "resolved" "https://registry.npmjs.org/estree-walker/-/estree-walker-1.0.1.tgz" + "version" "1.0.1" + +"esutils@^2.0.2": + "integrity" "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==" + "resolved" "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz" + "version" "2.0.3" + +"etag@~1.8.1": + "integrity" "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=" + "resolved" "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz" + "version" "1.8.1" + +"eventemitter3@^4.0.0": + "integrity" "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + "resolved" "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz" + "version" "4.0.7" + +"events@^3.0.0": + "integrity" "sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg==" + "resolved" "https://registry.npmjs.org/events/-/events-3.2.0.tgz" + "version" "3.2.0" + +"eventsource@^1.0.7": + "integrity" "sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ==" + "resolved" "https://registry.npmjs.org/eventsource/-/eventsource-1.0.7.tgz" + "version" "1.0.7" + dependencies: + "original" "^1.0.0" + +"evp_bytestokey@^1.0.0", "evp_bytestokey@^1.0.3": + "integrity" "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==" + "resolved" "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz" + "version" "1.0.3" + dependencies: + "md5.js" "^1.3.4" + "safe-buffer" "^5.1.1" + +"exec-sh@^0.3.2": + "integrity" "sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A==" + "resolved" "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.4.tgz" + "version" "0.3.4" + +"execa@^1.0.0": + "integrity" "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==" + "resolved" "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "cross-spawn" "^6.0.0" + "get-stream" "^4.0.0" + "is-stream" "^1.1.0" + "npm-run-path" "^2.0.0" + "p-finally" "^1.0.0" + "signal-exit" "^3.0.0" + "strip-eof" "^1.0.0" + +"execa@^4.0.0": + "integrity" "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==" + "resolved" "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz" + "version" "4.1.0" + dependencies: + "cross-spawn" "^7.0.0" + "get-stream" "^5.0.0" + "human-signals" "^1.1.1" + "is-stream" "^2.0.0" + "merge-stream" "^2.0.0" + "npm-run-path" "^4.0.0" + "onetime" "^5.1.0" + "signal-exit" "^3.0.2" + "strip-final-newline" "^2.0.0" + +"exit@^0.1.2": + "integrity" "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=" + "resolved" "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz" + "version" "0.1.2" + +"expand-brackets@^2.1.4": + "integrity" "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=" + "resolved" "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz" + "version" "2.1.4" + dependencies: + "debug" "^2.3.3" + "define-property" "^0.2.5" + "extend-shallow" "^2.0.1" + "posix-character-classes" "^0.1.0" + "regex-not" "^1.0.0" + "snapdragon" "^0.8.1" + "to-regex" "^3.0.1" + +"expect@^26.6.0", "expect@^26.6.2": + "integrity" "sha512-9/hlOBkQl2l/PLHJx6JjoDF6xPKcJEsUlWKb23rKE7KzeDqUZKXKNMW27KIue5JMdBV9HgmoJPcc8HtO85t9IA==" + "resolved" "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "ansi-styles" "^4.0.0" + "jest-get-type" "^26.3.0" + "jest-matcher-utils" "^26.6.2" + "jest-message-util" "^26.6.2" + "jest-regex-util" "^26.0.0" + +"express@^4.17.1": + "integrity" "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==" + "resolved" "https://registry.npmjs.org/express/-/express-4.17.1.tgz" + "version" "4.17.1" + dependencies: + "accepts" "~1.3.7" + "array-flatten" "1.1.1" + "body-parser" "1.19.0" + "content-disposition" "0.5.3" + "content-type" "~1.0.4" + "cookie" "0.4.0" + "cookie-signature" "1.0.6" + "debug" "2.6.9" + "depd" "~1.1.2" + "encodeurl" "~1.0.2" + "escape-html" "~1.0.3" + "etag" "~1.8.1" + "finalhandler" "~1.1.2" + "fresh" "0.5.2" + "merge-descriptors" "1.0.1" + "methods" "~1.1.2" + "on-finished" "~2.3.0" + "parseurl" "~1.3.3" + "path-to-regexp" "0.1.7" + "proxy-addr" "~2.0.5" + "qs" "6.7.0" + "range-parser" "~1.2.1" + "safe-buffer" "5.1.2" + "send" "0.17.1" + "serve-static" "1.14.1" + "setprototypeof" "1.1.1" + "statuses" "~1.5.0" + "type-is" "~1.6.18" + "utils-merge" "1.0.1" + "vary" "~1.1.2" + +"ext@^1.1.2": + "integrity" "sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A==" + "resolved" "https://registry.npmjs.org/ext/-/ext-1.4.0.tgz" + "version" "1.4.0" + dependencies: + "type" "^2.0.0" + +"extend-shallow@^2.0.1": + "integrity" "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=" + "resolved" "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "is-extendable" "^0.1.0" + +"extend-shallow@^3.0.0": + "integrity" "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=" + "resolved" "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz" + "version" "3.0.2" + dependencies: + "assign-symbols" "^1.0.0" + "is-extendable" "^1.0.1" + +"extend-shallow@^3.0.2": + "integrity" "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=" + "resolved" "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz" + "version" "3.0.2" + dependencies: + "assign-symbols" "^1.0.0" + "is-extendable" "^1.0.1" + +"extend@~3.0.2": + "integrity" "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + "resolved" "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz" + "version" "3.0.2" + +"extglob@^2.0.4": + "integrity" "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==" + "resolved" "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz" + "version" "2.0.4" + dependencies: + "array-unique" "^0.3.2" + "define-property" "^1.0.0" + "expand-brackets" "^2.1.4" + "extend-shallow" "^2.0.1" + "fragment-cache" "^0.2.1" + "regex-not" "^1.0.0" + "snapdragon" "^0.8.1" + "to-regex" "^3.0.1" + +"extsprintf@^1.2.0": + "integrity" "sha1-4mifjzVvrWLMplo6kcXfX5VRaS8=" + "resolved" "https://registry.npmjs.org/extsprintf/-/extsprintf-1.4.0.tgz" + "version" "1.4.0" + +"extsprintf@1.3.0": + "integrity" "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" + "resolved" "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz" + "version" "1.3.0" + +"fast-deep-equal@^3.1.1": + "integrity" "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + "resolved" "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz" + "version" "3.1.3" + +"fast-glob@^3.1.1": + "integrity" "sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg==" + "resolved" "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz" + "version" "3.2.5" + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + "glob-parent" "^5.1.0" + "merge2" "^1.3.0" + "micromatch" "^4.0.2" + "picomatch" "^2.2.1" + +"fast-json-stable-stringify@^2.0.0", "fast-json-stable-stringify@^2.1.0": + "integrity" "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + "resolved" "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz" + "version" "2.1.0" + +"fast-levenshtein@^2.0.6", "fast-levenshtein@~2.0.6": + "integrity" "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=" + "resolved" "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz" + "version" "2.0.6" + +"fastq@^1.6.0": + "integrity" "sha512-AWuv6Ery3pM+dY7LYS8YIaCiQvUaos9OB1RyNgaOWnaX+Tik7Onvcsf8x8c+YtDeT0maYLniBip2hox5KtEXXA==" + "resolved" "https://registry.npmjs.org/fastq/-/fastq-1.10.1.tgz" + "version" "1.10.1" + dependencies: + "reusify" "^1.0.4" + +"faye-websocket@^0.11.3": + "integrity" "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==" + "resolved" "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz" + "version" "0.11.3" + dependencies: + "websocket-driver" ">=0.5.1" + +"fb-watchman@^2.0.0": + "integrity" "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==" + "resolved" "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "bser" "2.1.1" + +"figgy-pudding@^3.5.1": + "integrity" "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==" + "resolved" "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz" + "version" "3.5.2" + +"file-entry-cache@^6.0.0": + "integrity" "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==" + "resolved" "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz" + "version" "6.0.1" + dependencies: + "flat-cache" "^3.0.4" + +"file-loader@*", "file-loader@6.1.1": + "integrity" "sha512-Klt8C4BjWSXYQAfhpYYkG4qHNTna4toMHEbWrI5IuVoxbU6uiDKeKAP99R8mmbJi3lvewn/jQBOgU4+NS3tDQw==" + "resolved" "https://registry.npmjs.org/file-loader/-/file-loader-6.1.1.tgz" + "version" "6.1.1" + dependencies: + "loader-utils" "^2.0.0" + "schema-utils" "^3.0.0" + +"file-uri-to-path@1.0.0": + "integrity" "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==" + "resolved" "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz" + "version" "1.0.0" + +"filesize@6.1.0": + "integrity" "sha512-LpCHtPQ3sFx67z+uh2HnSyWSLLu5Jxo21795uRDuar/EOuYWXib5EmPaGIBuSnRqH2IODiKA2k5re/K9OnN/Yg==" + "resolved" "https://registry.npmjs.org/filesize/-/filesize-6.1.0.tgz" + "version" "6.1.0" + +"fill-range@^4.0.0": + "integrity" "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=" + "resolved" "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "extend-shallow" "^2.0.1" + "is-number" "^3.0.0" + "repeat-string" "^1.6.1" + "to-regex-range" "^2.1.0" + +"fill-range@^7.0.1": + "integrity" "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==" + "resolved" "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz" + "version" "7.0.1" + dependencies: + "to-regex-range" "^5.0.1" + +"finalhandler@~1.1.2": + "integrity" "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==" + "resolved" "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz" + "version" "1.1.2" + dependencies: + "debug" "2.6.9" + "encodeurl" "~1.0.2" + "escape-html" "~1.0.3" + "on-finished" "~2.3.0" + "parseurl" "~1.3.3" + "statuses" "~1.5.0" + "unpipe" "~1.0.0" + +"find-cache-dir@^2.1.0": + "integrity" "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==" + "resolved" "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "commondir" "^1.0.1" + "make-dir" "^2.0.0" + "pkg-dir" "^3.0.0" + +"find-cache-dir@^3.3.1": + "integrity" "sha512-t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==" + "resolved" "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz" + "version" "3.3.1" + dependencies: + "commondir" "^1.0.1" + "make-dir" "^3.0.2" + "pkg-dir" "^4.1.0" + +"find-root@^1.1.0": + "integrity" "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==" + "resolved" "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz" + "version" "1.1.0" + +"find-up@^2.0.0": + "integrity" "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=" + "resolved" "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "locate-path" "^2.0.0" + +"find-up@^2.1.0": + "integrity" "sha1-RdG35QbHF93UgndaK3eSCjwMV6c=" + "resolved" "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "locate-path" "^2.0.0" + +"find-up@^3.0.0": + "integrity" "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==" + "resolved" "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "locate-path" "^3.0.0" + +"find-up@^4.0.0", "find-up@^4.1.0", "find-up@4.1.0": + "integrity" "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==" + "resolved" "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz" + "version" "4.1.0" + dependencies: + "locate-path" "^5.0.0" + "path-exists" "^4.0.0" + +"flat-cache@^3.0.4": + "integrity" "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==" + "resolved" "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz" + "version" "3.0.4" + dependencies: + "flatted" "^3.1.0" + "rimraf" "^3.0.2" + +"flatted@^3.1.0": + "integrity" "sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA==" + "resolved" "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz" + "version" "3.1.1" + +"flatten@^1.0.2": + "integrity" "sha512-dVsPA/UwQ8+2uoFe5GHtiBMu48dWLTdsuEd7CKGlZlD78r1TTWBvDuFaFGKCo/ZfEr95Uk56vZoX86OsHkUeIg==" + "resolved" "https://registry.npmjs.org/flatten/-/flatten-1.0.3.tgz" + "version" "1.0.3" + +"flush-write-stream@^1.0.0": + "integrity" "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==" + "resolved" "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz" + "version" "1.1.1" + dependencies: + "inherits" "^2.0.3" + "readable-stream" "^2.3.6" + +"follow-redirects@^1.0.0": + "integrity" "sha512-6mPTgLxYm3r6Bkkg0vNM0HTjfGrOEtsfbhagQvbxDEsEkpNhw582upBaoRZylzen6krEmxXJgt9Ju6HiI4O7BA==" + "resolved" "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.2.tgz" + "version" "1.13.2" + +"for-in@^1.0.2": + "integrity" "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=" + "resolved" "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz" + "version" "1.0.2" + +"forever-agent@~0.6.1": + "integrity" "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" + "resolved" "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz" + "version" "0.6.1" + +"fork-ts-checker-webpack-plugin@4.1.6": + "integrity" "sha512-DUxuQaKoqfNne8iikd14SAkh5uw4+8vNifp6gmA73yYNS6ywLIWSLD/n/mBzHQRpW3J7rbATEakmiA8JvkTyZw==" + "resolved" "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-4.1.6.tgz" + "version" "4.1.6" + dependencies: + "@babel/code-frame" "^7.5.5" + "chalk" "^2.4.1" + "micromatch" "^3.1.10" + "minimatch" "^3.0.4" + "semver" "^5.6.0" + "tapable" "^1.0.0" + "worker-rpc" "^0.1.0" + +"form-data@~2.3.2": + "integrity" "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==" + "resolved" "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz" + "version" "2.3.3" + dependencies: + "asynckit" "^0.4.0" + "combined-stream" "^1.0.6" + "mime-types" "^2.1.12" + +"forwarded@~0.1.2": + "integrity" "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=" + "resolved" "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz" + "version" "0.1.2" + +"fragment-cache@^0.2.1": + "integrity" "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=" + "resolved" "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz" + "version" "0.2.1" + dependencies: + "map-cache" "^0.2.2" + +"fresh@0.5.2": + "integrity" "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=" + "resolved" "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz" + "version" "0.5.2" + +"from2@^2.1.0": + "integrity" "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=" + "resolved" "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz" + "version" "2.3.0" + dependencies: + "inherits" "^2.0.1" + "readable-stream" "^2.0.0" + +"fs-extra@^7.0.0": + "integrity" "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==" + "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz" + "version" "7.0.1" + dependencies: + "graceful-fs" "^4.1.2" + "jsonfile" "^4.0.0" + "universalify" "^0.1.0" + +"fs-extra@^8.1.0": + "integrity" "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==" + "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz" + "version" "8.1.0" + dependencies: + "graceful-fs" "^4.2.0" + "jsonfile" "^4.0.0" + "universalify" "^0.1.0" + +"fs-extra@^9.0.1": + "integrity" "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==" + "resolved" "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz" + "version" "9.1.0" + dependencies: + "at-least-node" "^1.0.0" + "graceful-fs" "^4.2.0" + "jsonfile" "^6.0.1" + "universalify" "^2.0.0" + +"fs-minipass@^2.0.0": + "integrity" "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==" + "resolved" "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "minipass" "^3.0.0" + +"fs-write-stream-atomic@^1.0.8": + "integrity" "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=" + "resolved" "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz" + "version" "1.0.10" + dependencies: + "graceful-fs" "^4.1.2" + "iferr" "^0.1.5" + "imurmurhash" "^0.1.4" + "readable-stream" "1 || 2" + +"fs.realpath@^1.0.0": + "integrity" "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" + "resolved" "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz" + "version" "1.0.0" + +"fsevents@^1.2.7": + "integrity" "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==" + "resolved" "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz" + "version" "1.2.13" + dependencies: + "bindings" "^1.5.0" + "nan" "^2.12.1" + +"fsevents@^2.1.2", "fsevents@^2.1.3", "fsevents@~2.3.1": + "integrity" "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==" + "resolved" "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz" + "version" "2.3.2" + +"function-bind@^1.1.1": + "integrity" "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==" + "resolved" "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz" + "version" "1.1.1" + +"functional-red-black-tree@^1.0.1": + "integrity" "sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=" + "resolved" "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz" + "version" "1.0.1" + +"gensync@^1.0.0-beta.1": + "integrity" "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==" + "resolved" "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz" + "version" "1.0.0-beta.2" + +"get-caller-file@^2.0.1": + "integrity" "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==" + "resolved" "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz" + "version" "2.0.5" + +"get-intrinsic@^1.0.2", "get-intrinsic@^1.1.0", "get-intrinsic@^1.1.1": + "integrity" "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==" + "resolved" "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz" + "version" "1.1.1" + dependencies: + "function-bind" "^1.1.1" + "has" "^1.0.3" + "has-symbols" "^1.0.1" + +"get-own-enumerable-property-symbols@^3.0.0": + "integrity" "sha512-I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g==" + "resolved" "https://registry.npmjs.org/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.2.tgz" + "version" "3.0.2" + +"get-package-type@^0.1.0": + "integrity" "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==" + "resolved" "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz" + "version" "0.1.0" + +"get-stream@^4.0.0": + "integrity" "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==" + "resolved" "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz" + "version" "4.1.0" + dependencies: + "pump" "^3.0.0" + +"get-stream@^5.0.0": + "integrity" "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==" + "resolved" "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz" + "version" "5.2.0" + dependencies: + "pump" "^3.0.0" + +"get-value@^2.0.3", "get-value@^2.0.6": + "integrity" "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=" + "resolved" "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz" + "version" "2.0.6" + +"getpass@^0.1.1": + "integrity" "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=" + "resolved" "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz" + "version" "0.1.7" + dependencies: + "assert-plus" "^1.0.0" + +"glob-parent@^3.1.0": + "integrity" "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=" + "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz" + "version" "3.1.0" + dependencies: + "is-glob" "^3.1.0" + "path-dirname" "^1.0.0" + +"glob-parent@^5.0.0", "glob-parent@^5.1.0", "glob-parent@~5.1.0": + "integrity" "sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==" + "resolved" "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz" + "version" "5.1.1" + dependencies: + "is-glob" "^4.0.1" + +"glob@^7.0.3", "glob@^7.1.1", "glob@^7.1.2", "glob@^7.1.3", "glob@^7.1.4", "glob@^7.1.6": + "integrity" "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==" + "resolved" "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz" + "version" "7.1.6" + dependencies: + "fs.realpath" "^1.0.0" + "inflight" "^1.0.4" + "inherits" "2" + "minimatch" "^3.0.4" + "once" "^1.3.0" + "path-is-absolute" "^1.0.0" + +"global-modules@2.0.0": + "integrity" "sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==" + "resolved" "https://registry.npmjs.org/global-modules/-/global-modules-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "global-prefix" "^3.0.0" + +"global-prefix@^3.0.0": + "integrity" "sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==" + "resolved" "https://registry.npmjs.org/global-prefix/-/global-prefix-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "ini" "^1.3.5" + "kind-of" "^6.0.2" + "which" "^1.3.1" + +"globals@^11.1.0": + "integrity" "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==" + "resolved" "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz" + "version" "11.12.0" + +"globals@^12.1.0": + "integrity" "sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg==" + "resolved" "https://registry.npmjs.org/globals/-/globals-12.4.0.tgz" + "version" "12.4.0" + dependencies: + "type-fest" "^0.8.1" + +"globby@^11.0.1": + "integrity" "sha512-2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og==" + "resolved" "https://registry.npmjs.org/globby/-/globby-11.0.2.tgz" + "version" "11.0.2" + dependencies: + "array-union" "^2.1.0" + "dir-glob" "^3.0.1" + "fast-glob" "^3.1.1" + "ignore" "^5.1.4" + "merge2" "^1.3.0" + "slash" "^3.0.0" + +"globby@^6.1.0": + "integrity" "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=" + "resolved" "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz" + "version" "6.1.0" + dependencies: + "array-union" "^1.0.1" + "glob" "^7.0.3" + "object-assign" "^4.0.1" + "pify" "^2.0.0" + "pinkie-promise" "^2.0.0" + +"globby@11.0.1": + "integrity" "sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==" + "resolved" "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz" + "version" "11.0.1" + dependencies: + "array-union" "^2.1.0" + "dir-glob" "^3.0.1" + "fast-glob" "^3.1.1" + "ignore" "^5.1.4" + "merge2" "^1.3.0" + "slash" "^3.0.0" + +"graceful-fs@^4.1.11", "graceful-fs@^4.1.15", "graceful-fs@^4.1.2", "graceful-fs@^4.1.6", "graceful-fs@^4.2.0", "graceful-fs@^4.2.4": + "integrity" "sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ==" + "resolved" "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz" + "version" "4.2.6" + +"growly@^1.3.0": + "integrity" "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=" + "resolved" "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz" + "version" "1.3.0" + +"gzip-size@5.1.1": + "integrity" "sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==" + "resolved" "https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz" + "version" "5.1.1" + dependencies: + "duplexer" "^0.1.1" + "pify" "^4.0.1" + +"handle-thing@^2.0.0": + "integrity" "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==" + "resolved" "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz" + "version" "2.0.1" + +"har-schema@^2.0.0": + "integrity" "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" + "resolved" "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz" + "version" "2.0.0" + +"har-validator@~5.1.3": + "integrity" "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==" + "resolved" "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz" + "version" "5.1.5" + dependencies: + "ajv" "^6.12.3" + "har-schema" "^2.0.0" + +"harmony-reflect@^1.4.6": + "integrity" "sha512-WJTeyp0JzGtHcuMsi7rw2VwtkvLa+JyfEKJCFyfcS0+CDkjQ5lHPu7zEhFZP+PDSRrEgXa5Ah0l1MbgbE41XjA==" + "resolved" "https://registry.npmjs.org/harmony-reflect/-/harmony-reflect-1.6.1.tgz" + "version" "1.6.1" + +"has-flag@^3.0.0": + "integrity" "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" + "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz" + "version" "3.0.0" + +"has-flag@^4.0.0": + "integrity" "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + "resolved" "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz" + "version" "4.0.0" + +"has-symbols@^1.0.1": + "integrity" "sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==" + "resolved" "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz" + "version" "1.0.1" + +"has-value@^0.3.1": + "integrity" "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=" + "resolved" "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz" + "version" "0.3.1" + dependencies: + "get-value" "^2.0.3" + "has-values" "^0.1.4" + "isobject" "^2.0.0" + +"has-value@^1.0.0": + "integrity" "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=" + "resolved" "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "get-value" "^2.0.6" + "has-values" "^1.0.0" + "isobject" "^3.0.0" + +"has-values@^0.1.4": + "integrity" "sha1-bWHeldkd/Km5oCCJrThL/49it3E=" + "resolved" "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz" + "version" "0.1.4" + +"has-values@^1.0.0": + "integrity" "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=" + "resolved" "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "is-number" "^3.0.0" + "kind-of" "^4.0.0" + +"has@^1.0.0", "has@^1.0.3": + "integrity" "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==" + "resolved" "https://registry.npmjs.org/has/-/has-1.0.3.tgz" + "version" "1.0.3" + dependencies: + "function-bind" "^1.1.1" + +"hash-base@^3.0.0": + "integrity" "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==" + "resolved" "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz" + "version" "3.1.0" + dependencies: + "inherits" "^2.0.4" + "readable-stream" "^3.6.0" + "safe-buffer" "^5.2.0" + +"hash.js@^1.0.0", "hash.js@^1.0.3": + "integrity" "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==" + "resolved" "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz" + "version" "1.1.7" + dependencies: + "inherits" "^2.0.3" + "minimalistic-assert" "^1.0.1" + +"he@^1.2.0": + "integrity" "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==" + "resolved" "https://registry.npmjs.org/he/-/he-1.2.0.tgz" + "version" "1.2.0" + +"hex-color-regex@^1.1.0": + "integrity" "sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ==" + "resolved" "https://registry.npmjs.org/hex-color-regex/-/hex-color-regex-1.1.0.tgz" + "version" "1.1.0" + +"history@^4.9.0": + "integrity" "sha512-36nwAD620w12kuzPAsyINPWJqlNbij+hpK1k9XRloDtym8mxzGYl2c17LnV6IAGB2Dmg4tEa7G7DlawS0+qjew==" + "resolved" "https://registry.npmjs.org/history/-/history-4.10.1.tgz" + "version" "4.10.1" + dependencies: + "@babel/runtime" "^7.1.2" + "loose-envify" "^1.2.0" + "resolve-pathname" "^3.0.0" + "tiny-invariant" "^1.0.2" + "tiny-warning" "^1.0.0" + "value-equal" "^1.0.1" + +"history@^5.0.0": + "integrity" "sha512-3NyRMKIiFSJmIPdq7FxkNMJkQ7ZEtVblOQ38VtKaA0zZMW1Eo6Q6W8oDKEflr1kNNTItSnk4JMCO1deeSgbLLg==" + "resolved" "https://registry.npmjs.org/history/-/history-5.0.0.tgz" + "version" "5.0.0" + dependencies: + "@babel/runtime" "^7.7.6" + +"hmac-drbg@^1.0.1": + "integrity" "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=" + "resolved" "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "hash.js" "^1.0.3" + "minimalistic-assert" "^1.0.0" + "minimalistic-crypto-utils" "^1.0.1" + +"hoist-non-react-statics@^3.0.0", "hoist-non-react-statics@^3.1.0", "hoist-non-react-statics@^3.3.2": + "integrity" "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==" + "resolved" "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz" + "version" "3.3.2" + dependencies: + "react-is" "^16.7.0" + +"hoopy@^0.1.4": + "integrity" "sha512-HRcs+2mr52W0K+x8RzcLzuPPmVIKMSv97RGHy0Ea9y/mpcaK+xTrjICA04KAHi4GRzxliNqNJEFYWHghy3rSfQ==" + "resolved" "https://registry.npmjs.org/hoopy/-/hoopy-0.1.4.tgz" + "version" "0.1.4" + +"hosted-git-info@^2.1.4": + "integrity" "sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==" + "resolved" "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz" + "version" "2.8.8" + +"hpack.js@^2.1.6": + "integrity" "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=" + "resolved" "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz" + "version" "2.1.6" + dependencies: + "inherits" "^2.0.1" + "obuf" "^1.0.0" + "readable-stream" "^2.0.1" + "wbuf" "^1.1.0" + +"hsl-regex@^1.0.0": + "integrity" "sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=" + "resolved" "https://registry.npmjs.org/hsl-regex/-/hsl-regex-1.0.0.tgz" + "version" "1.0.0" + +"hsla-regex@^1.0.0": + "integrity" "sha1-wc56MWjIxmFAM6S194d/OyJfnDg=" + "resolved" "https://registry.npmjs.org/hsla-regex/-/hsla-regex-1.0.0.tgz" + "version" "1.0.0" + +"html-comment-regex@^1.1.0": + "integrity" "sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==" + "resolved" "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz" + "version" "1.1.2" + +"html-encoding-sniffer@^2.0.1": + "integrity" "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==" + "resolved" "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "whatwg-encoding" "^1.0.5" + +"html-entities@^1.2.1", "html-entities@^1.3.1": + "integrity" "sha512-8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==" + "resolved" "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz" + "version" "1.4.0" + +"html-escaper@^2.0.0": + "integrity" "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + "resolved" "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz" + "version" "2.0.2" + +"html-minifier-terser@^5.0.1": + "integrity" "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==" + "resolved" "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz" + "version" "5.1.1" + dependencies: + "camel-case" "^4.1.1" + "clean-css" "^4.2.3" + "commander" "^4.1.1" + "he" "^1.2.0" + "param-case" "^3.0.3" + "relateurl" "^0.2.7" + "terser" "^4.6.3" + +"html-webpack-plugin@4.5.0": + "integrity" "sha512-MouoXEYSjTzCrjIxWwg8gxL5fE2X2WZJLmBYXlaJhQUH5K/b5OrqmV7T4dB7iu0xkmJ6JlUuV6fFVtnqbPopZw==" + "resolved" "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.5.0.tgz" + "version" "4.5.0" + dependencies: + "@types/html-minifier-terser" "^5.0.0" + "@types/tapable" "^1.0.5" + "@types/webpack" "^4.41.8" + "html-minifier-terser" "^5.0.1" + "loader-utils" "^1.2.3" + "lodash" "^4.17.15" + "pretty-error" "^2.1.1" + "tapable" "^1.1.3" + "util.promisify" "1.0.0" + +"htmlparser2@^3.10.1": + "integrity" "sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ==" + "resolved" "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.10.1.tgz" + "version" "3.10.1" + dependencies: + "domelementtype" "^1.3.1" + "domhandler" "^2.3.0" + "domutils" "^1.5.1" + "entities" "^1.1.1" + "inherits" "^2.0.1" + "readable-stream" "^3.1.1" + +"http-deceiver@^1.2.7": + "integrity" "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=" + "resolved" "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz" + "version" "1.2.7" + +"http-errors@~1.6.2": + "integrity" "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=" + "resolved" "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz" + "version" "1.6.3" + dependencies: + "depd" "~1.1.2" + "inherits" "2.0.3" + "setprototypeof" "1.1.0" + "statuses" ">= 1.4.0 < 2" + +"http-errors@~1.7.2": + "integrity" "sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==" + "resolved" "https://registry.npmjs.org/http-errors/-/http-errors-1.7.3.tgz" + "version" "1.7.3" + dependencies: + "depd" "~1.1.2" + "inherits" "2.0.4" + "setprototypeof" "1.1.1" + "statuses" ">= 1.5.0 < 2" + "toidentifier" "1.0.0" + +"http-errors@1.7.2": + "integrity" "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==" + "resolved" "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz" + "version" "1.7.2" + dependencies: + "depd" "~1.1.2" + "inherits" "2.0.3" + "setprototypeof" "1.1.1" + "statuses" ">= 1.5.0 < 2" + "toidentifier" "1.0.0" + +"http-parser-js@>=0.5.1": + "integrity" "sha512-t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==" + "resolved" "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz" + "version" "0.5.3" + +"http-proxy-middleware@0.19.1": + "integrity" "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==" + "resolved" "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz" + "version" "0.19.1" + dependencies: + "http-proxy" "^1.17.0" + "is-glob" "^4.0.0" + "lodash" "^4.17.11" + "micromatch" "^3.1.10" + +"http-proxy@^1.17.0": + "integrity" "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==" + "resolved" "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz" + "version" "1.18.1" + dependencies: + "eventemitter3" "^4.0.0" + "follow-redirects" "^1.0.0" + "requires-port" "^1.0.0" + +"http-signature@~1.2.0": + "integrity" "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=" + "resolved" "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz" + "version" "1.2.0" + dependencies: + "assert-plus" "^1.0.0" + "jsprim" "^1.2.2" + "sshpk" "^1.7.0" + +"https-browserify@^1.0.0": + "integrity" "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=" + "resolved" "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz" + "version" "1.0.0" + +"human-signals@^1.1.1": + "integrity" "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==" + "resolved" "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz" + "version" "1.1.1" + +"hyphenate-style-name@^1.0.3": + "integrity" "sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==" + "resolved" "https://registry.npmjs.org/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz" + "version" "1.0.4" + +"iconv-lite@0.4.24": + "integrity" "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==" + "resolved" "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" + "version" "0.4.24" + dependencies: + "safer-buffer" ">= 2.1.2 < 3" + +"icss-utils@^4.0.0", "icss-utils@^4.1.1": + "integrity" "sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA==" + "resolved" "https://registry.npmjs.org/icss-utils/-/icss-utils-4.1.1.tgz" + "version" "4.1.1" + dependencies: + "postcss" "^7.0.14" + +"identity-obj-proxy@3.0.0": + "integrity" "sha1-lNK9qWCERT7zb7xarsN+D3nx/BQ=" + "resolved" "https://registry.npmjs.org/identity-obj-proxy/-/identity-obj-proxy-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "harmony-reflect" "^1.4.6" + +"ieee754@^1.1.4": + "integrity" "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" + "resolved" "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz" + "version" "1.2.1" + +"iferr@^0.1.5": + "integrity" "sha1-xg7taebY/bazEEofy8ocGS3FtQE=" + "resolved" "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz" + "version" "0.1.5" + +"ignore@^4.0.6": + "integrity" "sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==" + "resolved" "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz" + "version" "4.0.6" + +"ignore@^5.1.4": + "integrity" "sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw==" + "resolved" "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz" + "version" "5.1.8" + +"immer@8.0.1": + "integrity" "sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==" + "resolved" "https://registry.npmjs.org/immer/-/immer-8.0.1.tgz" + "version" "8.0.1" + +"import-cwd@^2.0.0": + "integrity" "sha1-qmzzbnInYShcs3HsZRn1PiQ1sKk=" + "resolved" "https://registry.npmjs.org/import-cwd/-/import-cwd-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "import-from" "^2.1.0" + +"import-fresh@^2.0.0": + "integrity" "sha1-2BNVwVYS04bGH53dOSLUMEgipUY=" + "resolved" "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "caller-path" "^2.0.0" + "resolve-from" "^3.0.0" + +"import-fresh@^3.0.0", "import-fresh@^3.1.0", "import-fresh@^3.2.1": + "integrity" "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==" + "resolved" "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz" + "version" "3.3.0" + dependencies: + "parent-module" "^1.0.0" + "resolve-from" "^4.0.0" + +"import-from@^2.1.0": + "integrity" "sha1-M1238qev/VOqpHHUuAId7ja387E=" + "resolved" "https://registry.npmjs.org/import-from/-/import-from-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "resolve-from" "^3.0.0" + +"import-local@^2.0.0": + "integrity" "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==" + "resolved" "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "pkg-dir" "^3.0.0" + "resolve-cwd" "^2.0.0" + +"import-local@^3.0.2": + "integrity" "sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA==" + "resolved" "https://registry.npmjs.org/import-local/-/import-local-3.0.2.tgz" + "version" "3.0.2" + dependencies: + "pkg-dir" "^4.2.0" + "resolve-cwd" "^3.0.0" + +"imurmurhash@^0.1.4": + "integrity" "sha1-khi5srkoojixPcT7a21XbyMUU+o=" + "resolved" "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz" + "version" "0.1.4" + +"indefinite-observable@^2.0.1": + "integrity" "sha512-G8vgmork+6H9S8lUAg1gtXEj2JxIQTo0g2PbFiYOdjkziSI0F7UYBiVwhZRuixhBCNGczAls34+5HJPyZysvxQ==" + "resolved" "https://registry.npmjs.org/indefinite-observable/-/indefinite-observable-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "symbol-observable" "1.2.0" + +"indent-string@^4.0.0": + "integrity" "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==" + "resolved" "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz" + "version" "4.0.0" + +"indexes-of@^1.0.1": + "integrity" "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=" + "resolved" "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz" + "version" "1.0.1" + +"infer-owner@^1.0.3", "infer-owner@^1.0.4": + "integrity" "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + "resolved" "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz" + "version" "1.0.4" + +"inflight@^1.0.4": + "integrity" "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=" + "resolved" "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz" + "version" "1.0.6" + dependencies: + "once" "^1.3.0" + "wrappy" "1" + +"inherits@^2.0.1", "inherits@^2.0.3", "inherits@^2.0.4", "inherits@~2.0.1", "inherits@~2.0.3", "inherits@2", "inherits@2.0.4": + "integrity" "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" + "version" "2.0.4" + +"inherits@2.0.1": + "integrity" "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=" + "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + "version" "2.0.1" + +"inherits@2.0.3": + "integrity" "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=" + "resolved" "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz" + "version" "2.0.3" + +"ini@^1.3.5": + "integrity" "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + "resolved" "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz" + "version" "1.3.8" + +"internal-ip@^4.3.0": + "integrity" "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==" + "resolved" "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz" + "version" "4.3.0" + dependencies: + "default-gateway" "^4.2.0" + "ipaddr.js" "^1.9.0" + +"internal-slot@^1.0.3": + "integrity" "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==" + "resolved" "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz" + "version" "1.0.3" + dependencies: + "get-intrinsic" "^1.1.0" + "has" "^1.0.3" + "side-channel" "^1.0.4" + +"ip-regex@^2.1.0": + "integrity" "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=" + "resolved" "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz" + "version" "2.1.0" + +"ip@^1.1.0", "ip@^1.1.5": + "integrity" "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=" + "resolved" "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz" + "version" "1.1.5" + +"ipaddr.js@^1.9.0", "ipaddr.js@1.9.1": + "integrity" "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==" + "resolved" "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz" + "version" "1.9.1" + +"is-absolute-url@^2.0.0": + "integrity" "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=" + "resolved" "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz" + "version" "2.1.0" + +"is-absolute-url@^3.0.3": + "integrity" "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==" + "resolved" "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz" + "version" "3.0.3" + +"is-accessor-descriptor@^0.1.6": + "integrity" "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=" + "resolved" "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz" + "version" "0.1.6" + dependencies: + "kind-of" "^3.0.2" + +"is-accessor-descriptor@^1.0.0": + "integrity" "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==" + "resolved" "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "kind-of" "^6.0.0" + +"is-arguments@^1.0.4": + "integrity" "sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==" + "resolved" "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz" + "version" "1.1.0" + dependencies: + "call-bind" "^1.0.0" + +"is-arrayish@^0.2.1": + "integrity" "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=" + "resolved" "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz" + "version" "0.2.1" + +"is-arrayish@^0.3.1": + "integrity" "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" + "resolved" "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz" + "version" "0.3.2" + +"is-binary-path@^1.0.0": + "integrity" "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=" + "resolved" "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "binary-extensions" "^1.0.0" + +"is-binary-path@~2.1.0": + "integrity" "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==" + "resolved" "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "binary-extensions" "^2.0.0" + +"is-buffer@^1.1.5": + "integrity" "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + "resolved" "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz" + "version" "1.1.6" + +"is-callable@^1.1.4", "is-callable@^1.2.2": + "integrity" "sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==" + "resolved" "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz" + "version" "1.2.3" + +"is-ci@^2.0.0": + "integrity" "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==" + "resolved" "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "ci-info" "^2.0.0" + +"is-color-stop@^1.0.0": + "integrity" "sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=" + "resolved" "https://registry.npmjs.org/is-color-stop/-/is-color-stop-1.1.0.tgz" + "version" "1.1.0" + dependencies: + "css-color-names" "^0.0.4" + "hex-color-regex" "^1.1.0" + "hsl-regex" "^1.0.0" + "hsla-regex" "^1.0.0" + "rgb-regex" "^1.0.1" + "rgba-regex" "^1.0.0" + +"is-core-module@^2.0.0", "is-core-module@^2.2.0": + "integrity" "sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==" + "resolved" "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz" + "version" "2.2.0" + dependencies: + "has" "^1.0.3" + +"is-data-descriptor@^0.1.4": + "integrity" "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=" + "resolved" "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz" + "version" "0.1.4" + dependencies: + "kind-of" "^3.0.2" + +"is-data-descriptor@^1.0.0": + "integrity" "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==" + "resolved" "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "kind-of" "^6.0.0" + +"is-date-object@^1.0.1": + "integrity" "sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==" + "resolved" "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz" + "version" "1.0.2" + +"is-descriptor@^0.1.0": + "integrity" "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==" + "resolved" "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz" + "version" "0.1.6" + dependencies: + "is-accessor-descriptor" "^0.1.6" + "is-data-descriptor" "^0.1.4" + "kind-of" "^5.0.0" + +"is-descriptor@^1.0.0", "is-descriptor@^1.0.2": + "integrity" "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==" + "resolved" "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "is-accessor-descriptor" "^1.0.0" + "is-data-descriptor" "^1.0.0" + "kind-of" "^6.0.2" + +"is-directory@^0.3.1": + "integrity" "sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=" + "resolved" "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz" + "version" "0.3.1" + +"is-docker@^2.0.0": + "integrity" "sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw==" + "resolved" "https://registry.npmjs.org/is-docker/-/is-docker-2.1.1.tgz" + "version" "2.1.1" + +"is-extendable@^0.1.0", "is-extendable@^0.1.1": + "integrity" "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" + "resolved" "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz" + "version" "0.1.1" + +"is-extendable@^1.0.1": + "integrity" "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==" + "resolved" "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "is-plain-object" "^2.0.4" + +"is-extglob@^2.1.0", "is-extglob@^2.1.1": + "integrity" "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" + "resolved" "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz" + "version" "2.1.1" + +"is-fullwidth-code-point@^2.0.0": + "integrity" "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" + "resolved" "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz" + "version" "2.0.0" + +"is-fullwidth-code-point@^3.0.0": + "integrity" "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==" + "resolved" "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz" + "version" "3.0.0" + +"is-generator-fn@^2.0.0": + "integrity" "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==" + "resolved" "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz" + "version" "2.1.0" + +"is-glob@^3.1.0": + "integrity" "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=" + "resolved" "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz" + "version" "3.1.0" + dependencies: + "is-extglob" "^2.1.0" + +"is-glob@^4.0.0", "is-glob@^4.0.1", "is-glob@~4.0.1": + "integrity" "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==" + "resolved" "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "is-extglob" "^2.1.1" + +"is-in-browser@^1.0.2", "is-in-browser@^1.1.3": + "integrity" "sha1-Vv9NtoOgeMYILrldrX3GLh0E+DU=" + "resolved" "https://registry.npmjs.org/is-in-browser/-/is-in-browser-1.1.3.tgz" + "version" "1.1.3" + +"is-module@^1.0.0": + "integrity" "sha1-Mlj7afeMFNW4FdZkM2tM/7ZEFZE=" + "resolved" "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz" + "version" "1.0.0" + +"is-negative-zero@^2.0.1": + "integrity" "sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==" + "resolved" "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz" + "version" "2.0.1" + +"is-number@^3.0.0": + "integrity" "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=" + "resolved" "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "kind-of" "^3.0.2" + +"is-number@^7.0.0": + "integrity" "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" + "resolved" "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz" + "version" "7.0.0" + +"is-obj@^1.0.1": + "integrity" "sha1-PkcprB9f3gJc19g6iW2rn09n2w8=" + "resolved" "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz" + "version" "1.0.1" + +"is-obj@^2.0.0": + "integrity" "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==" + "resolved" "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz" + "version" "2.0.0" + +"is-path-cwd@^2.0.0": + "integrity" "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==" + "resolved" "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz" + "version" "2.2.0" + +"is-path-in-cwd@^2.0.0": + "integrity" "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==" + "resolved" "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "is-path-inside" "^2.1.0" + +"is-path-inside@^2.1.0": + "integrity" "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==" + "resolved" "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "path-is-inside" "^1.0.2" + +"is-plain-obj@^1.0.0": + "integrity" "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=" + "resolved" "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz" + "version" "1.1.0" + +"is-plain-object@^2.0.3", "is-plain-object@^2.0.4": + "integrity" "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==" + "resolved" "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz" + "version" "2.0.4" + dependencies: + "isobject" "^3.0.1" + +"is-potential-custom-element-name@^1.0.0": + "integrity" "sha1-DFLlS8yjkbssSUsh6GJtczbG45c=" + "resolved" "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz" + "version" "1.0.0" + +"is-regex@^1.0.4", "is-regex@^1.1.1": + "integrity" "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==" + "resolved" "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz" + "version" "1.1.2" + dependencies: + "call-bind" "^1.0.2" + "has-symbols" "^1.0.1" + +"is-regexp@^1.0.0": + "integrity" "sha1-/S2INUXEa6xaYz57mgnof6LLUGk=" + "resolved" "https://registry.npmjs.org/is-regexp/-/is-regexp-1.0.0.tgz" + "version" "1.0.0" + +"is-resolvable@^1.0.0": + "integrity" "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==" + "resolved" "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz" + "version" "1.1.0" + +"is-root@2.1.0": + "integrity" "sha512-AGOriNp96vNBd3HtU+RzFEc75FfR5ymiYv8E553I71SCeXBiMsVDUtdio1OEFvrPyLIQ9tVR5RxXIFe5PUFjMg==" + "resolved" "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz" + "version" "2.1.0" + +"is-stream@^1.1.0": + "integrity" "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" + "resolved" "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz" + "version" "1.1.0" + +"is-stream@^2.0.0": + "integrity" "sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==" + "resolved" "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz" + "version" "2.0.0" + +"is-string@^1.0.5": + "integrity" "sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ==" + "resolved" "https://registry.npmjs.org/is-string/-/is-string-1.0.5.tgz" + "version" "1.0.5" + +"is-svg@^3.0.0": + "integrity" "sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ==" + "resolved" "https://registry.npmjs.org/is-svg/-/is-svg-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "html-comment-regex" "^1.1.0" + +"is-symbol@^1.0.2": + "integrity" "sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==" + "resolved" "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz" + "version" "1.0.3" + dependencies: + "has-symbols" "^1.0.1" + +"is-typedarray@^1.0.0", "is-typedarray@~1.0.0": + "integrity" "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" + "resolved" "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz" + "version" "1.0.0" + +"is-windows@^1.0.2": + "integrity" "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==" + "resolved" "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz" + "version" "1.0.2" + +"is-wsl@^1.1.0": + "integrity" "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=" + "resolved" "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz" + "version" "1.1.0" + +"is-wsl@^2.1.1": + "integrity" "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" + "resolved" "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz" + "version" "2.2.0" + dependencies: + "is-docker" "^2.0.0" + +"is-wsl@^2.2.0": + "integrity" "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==" + "resolved" "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz" + "version" "2.2.0" + dependencies: + "is-docker" "^2.0.0" + +"isarray@^1.0.0", "isarray@~1.0.0", "isarray@1.0.0": + "integrity" "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=" + "resolved" "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz" + "version" "1.0.0" + +"isarray@0.0.1": + "integrity" "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=" + "resolved" "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + "version" "0.0.1" + +"isexe@^2.0.0": + "integrity" "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=" + "resolved" "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz" + "version" "2.0.0" + +"isobject@^2.0.0": + "integrity" "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=" + "resolved" "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "isarray" "1.0.0" + +"isobject@^3.0.0", "isobject@^3.0.1": + "integrity" "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=" + "resolved" "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz" + "version" "3.0.1" + +"isstream@~0.1.2": + "integrity" "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" + "resolved" "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz" + "version" "0.1.2" + +"istanbul-lib-coverage@^3.0.0": + "integrity" "sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==" + "resolved" "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz" + "version" "3.0.0" + +"istanbul-lib-instrument@^4.0.0", "istanbul-lib-instrument@^4.0.3": + "integrity" "sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ==" + "resolved" "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz" + "version" "4.0.3" + dependencies: + "@babel/core" "^7.7.5" + "@istanbuljs/schema" "^0.1.2" + "istanbul-lib-coverage" "^3.0.0" + "semver" "^6.3.0" + +"istanbul-lib-report@^3.0.0": + "integrity" "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==" + "resolved" "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "istanbul-lib-coverage" "^3.0.0" + "make-dir" "^3.0.0" + "supports-color" "^7.1.0" + +"istanbul-lib-source-maps@^4.0.0": + "integrity" "sha512-c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==" + "resolved" "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "debug" "^4.1.1" + "istanbul-lib-coverage" "^3.0.0" + "source-map" "^0.6.1" + +"istanbul-reports@^3.0.2": + "integrity" "sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==" + "resolved" "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz" + "version" "3.0.2" + dependencies: + "html-escaper" "^2.0.0" + "istanbul-lib-report" "^3.0.0" + +"jest-changed-files@^26.6.2": + "integrity" "sha512-fDS7szLcY9sCtIip8Fjry9oGf3I2ht/QT21bAHm5Dmf0mD4X3ReNUf17y+bO6fR8WgbIZTlbyG1ak/53cbRzKQ==" + "resolved" "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "execa" "^4.0.0" + "throat" "^5.0.0" + +"jest-circus@26.6.0": + "integrity" "sha512-L2/Y9szN6FJPWFK8kzWXwfp+FOR7xq0cUL4lIsdbIdwz3Vh6P1nrpcqOleSzr28zOtSHQNV9Z7Tl+KkuK7t5Ng==" + "resolved" "https://registry.npmjs.org/jest-circus/-/jest-circus-26.6.0.tgz" + "version" "26.6.0" + dependencies: + "@babel/traverse" "^7.1.0" + "@jest/environment" "^26.6.0" + "@jest/test-result" "^26.6.0" + "@jest/types" "^26.6.0" + "@types/babel__traverse" "^7.0.4" + "@types/node" "*" + "chalk" "^4.0.0" + "co" "^4.6.0" + "dedent" "^0.7.0" + "expect" "^26.6.0" + "is-generator-fn" "^2.0.0" + "jest-each" "^26.6.0" + "jest-matcher-utils" "^26.6.0" + "jest-message-util" "^26.6.0" + "jest-runner" "^26.6.0" + "jest-runtime" "^26.6.0" + "jest-snapshot" "^26.6.0" + "jest-util" "^26.6.0" + "pretty-format" "^26.6.0" + "stack-utils" "^2.0.2" + "throat" "^5.0.0" + +"jest-cli@^26.6.0": + "integrity" "sha512-GF9noBSa9t08pSyl3CY4frMrqp+aQXFGFkf5hEPbh/pIUFYWMK6ZLTfbmadxJVcJrdRoChlWQsA2VkJcDFK8hg==" + "resolved" "https://registry.npmjs.org/jest-cli/-/jest-cli-26.6.3.tgz" + "version" "26.6.3" + dependencies: + "@jest/core" "^26.6.3" + "@jest/test-result" "^26.6.2" + "@jest/types" "^26.6.2" + "chalk" "^4.0.0" + "exit" "^0.1.2" + "graceful-fs" "^4.2.4" + "import-local" "^3.0.2" + "is-ci" "^2.0.0" + "jest-config" "^26.6.3" + "jest-util" "^26.6.2" + "jest-validate" "^26.6.2" + "prompts" "^2.0.1" + "yargs" "^15.4.1" + +"jest-config@^26.6.3": + "integrity" "sha512-t5qdIj/bCj2j7NFVHb2nFB4aUdfucDn3JRKgrZnplb8nieAirAzRSHP8uDEd+qV6ygzg9Pz4YG7UTJf94LPSyg==" + "resolved" "https://registry.npmjs.org/jest-config/-/jest-config-26.6.3.tgz" + "version" "26.6.3" + dependencies: + "@babel/core" "^7.1.0" + "@jest/test-sequencer" "^26.6.3" + "@jest/types" "^26.6.2" + "babel-jest" "^26.6.3" + "chalk" "^4.0.0" + "deepmerge" "^4.2.2" + "glob" "^7.1.1" + "graceful-fs" "^4.2.4" + "jest-environment-jsdom" "^26.6.2" + "jest-environment-node" "^26.6.2" + "jest-get-type" "^26.3.0" + "jest-jasmine2" "^26.6.3" + "jest-regex-util" "^26.0.0" + "jest-resolve" "^26.6.2" + "jest-util" "^26.6.2" + "jest-validate" "^26.6.2" + "micromatch" "^4.0.2" + "pretty-format" "^26.6.2" + +"jest-diff@^26.0.0", "jest-diff@^26.6.2": + "integrity" "sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA==" + "resolved" "https://registry.npmjs.org/jest-diff/-/jest-diff-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "chalk" "^4.0.0" + "diff-sequences" "^26.6.2" + "jest-get-type" "^26.3.0" + "pretty-format" "^26.6.2" + +"jest-docblock@^26.0.0": + "integrity" "sha512-RDZ4Iz3QbtRWycd8bUEPxQsTlYazfYn/h5R65Fc6gOfwozFhoImx+affzky/FFBuqISPTqjXomoIGJVKBWoo0w==" + "resolved" "https://registry.npmjs.org/jest-docblock/-/jest-docblock-26.0.0.tgz" + "version" "26.0.0" + dependencies: + "detect-newline" "^3.0.0" + +"jest-each@^26.6.0", "jest-each@^26.6.2": + "integrity" "sha512-Mer/f0KaATbjl8MCJ+0GEpNdqmnVmDYqCTJYTvoo7rqmRiDllmp2AYN+06F93nXcY3ur9ShIjS+CO/uD+BbH4A==" + "resolved" "https://registry.npmjs.org/jest-each/-/jest-each-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "chalk" "^4.0.0" + "jest-get-type" "^26.3.0" + "jest-util" "^26.6.2" + "pretty-format" "^26.6.2" + +"jest-environment-jsdom@^26.6.2": + "integrity" "sha512-jgPqCruTlt3Kwqg5/WVFyHIOJHsiAvhcp2qiR2QQstuG9yWox5+iHpU3ZrcBxW14T4fe5Z68jAfLRh7joCSP2Q==" + "resolved" "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/environment" "^26.6.2" + "@jest/fake-timers" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/node" "*" + "jest-mock" "^26.6.2" + "jest-util" "^26.6.2" + "jsdom" "^16.4.0" + +"jest-environment-node@^26.6.2": + "integrity" "sha512-zhtMio3Exty18dy8ee8eJ9kjnRyZC1N4C1Nt/VShN1apyXc8rWGtJ9lI7vqiWcyyXS4BVSEn9lxAM2D+07/Tag==" + "resolved" "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/environment" "^26.6.2" + "@jest/fake-timers" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/node" "*" + "jest-mock" "^26.6.2" + "jest-util" "^26.6.2" + +"jest-get-type@^26.3.0": + "integrity" "sha512-TpfaviN1R2pQWkIihlfEanwOXK0zcxrKEE4MlU6Tn7keoXdN6/3gK/xl0yEh8DOunn5pOVGKf8hB4R9gVh04ig==" + "resolved" "https://registry.npmjs.org/jest-get-type/-/jest-get-type-26.3.0.tgz" + "version" "26.3.0" + +"jest-haste-map@^26.6.2": + "integrity" "sha512-easWIJXIw71B2RdR8kgqpjQrbMRWQBgiBwXYEhtGUTaX+doCjBheluShdDMeR8IMfJiTqH4+zfhtg29apJf/8w==" + "resolved" "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "@types/graceful-fs" "^4.1.2" + "@types/node" "*" + "anymatch" "^3.0.3" + "fb-watchman" "^2.0.0" + "graceful-fs" "^4.2.4" + "jest-regex-util" "^26.0.0" + "jest-serializer" "^26.6.2" + "jest-util" "^26.6.2" + "jest-worker" "^26.6.2" + "micromatch" "^4.0.2" + "sane" "^4.0.3" + "walker" "^1.0.7" + optionalDependencies: + "fsevents" "^2.1.2" + +"jest-jasmine2@^26.6.3": + "integrity" "sha512-kPKUrQtc8aYwBV7CqBg5pu+tmYXlvFlSFYn18ev4gPFtrRzB15N2gW/Roew3187q2w2eHuu0MU9TJz6w0/nPEg==" + "resolved" "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-26.6.3.tgz" + "version" "26.6.3" + dependencies: + "@babel/traverse" "^7.1.0" + "@jest/environment" "^26.6.2" + "@jest/source-map" "^26.6.2" + "@jest/test-result" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/node" "*" + "chalk" "^4.0.0" + "co" "^4.6.0" + "expect" "^26.6.2" + "is-generator-fn" "^2.0.0" + "jest-each" "^26.6.2" + "jest-matcher-utils" "^26.6.2" + "jest-message-util" "^26.6.2" + "jest-runtime" "^26.6.3" + "jest-snapshot" "^26.6.2" + "jest-util" "^26.6.2" + "pretty-format" "^26.6.2" + "throat" "^5.0.0" + +"jest-leak-detector@^26.6.2": + "integrity" "sha512-i4xlXpsVSMeKvg2cEKdfhh0H39qlJlP5Ex1yQxwF9ubahboQYMgTtz5oML35AVA3B4Eu+YsmwaiKVev9KCvLxg==" + "resolved" "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "jest-get-type" "^26.3.0" + "pretty-format" "^26.6.2" + +"jest-matcher-utils@^26.6.0", "jest-matcher-utils@^26.6.2": + "integrity" "sha512-llnc8vQgYcNqDrqRDXWwMr9i7rS5XFiCwvh6DTP7Jqa2mqpcCBBlpCbn+trkG0KNhPu/h8rzyBkriOtBstvWhw==" + "resolved" "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "chalk" "^4.0.0" + "jest-diff" "^26.6.2" + "jest-get-type" "^26.3.0" + "pretty-format" "^26.6.2" + +"jest-message-util@^26.6.0", "jest-message-util@^26.6.2": + "integrity" "sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==" + "resolved" "https://registry.npmjs.org/jest-message-util/-/jest-message-util-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@babel/code-frame" "^7.0.0" + "@jest/types" "^26.6.2" + "@types/stack-utils" "^2.0.0" + "chalk" "^4.0.0" + "graceful-fs" "^4.2.4" + "micromatch" "^4.0.2" + "pretty-format" "^26.6.2" + "slash" "^3.0.0" + "stack-utils" "^2.0.2" + +"jest-mock@^26.6.2": + "integrity" "sha512-YyFjePHHp1LzpzYcmgqkJ0nm0gg/lJx2aZFzFy1S6eUqNjXsOqTK10zNRff2dNfssgokjkG65OlWNcIlgd3zew==" + "resolved" "https://registry.npmjs.org/jest-mock/-/jest-mock-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "@types/node" "*" + +"jest-pnp-resolver@^1.2.2": + "integrity" "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==" + "resolved" "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz" + "version" "1.2.2" + +"jest-regex-util@^26.0.0": + "integrity" "sha512-Gv3ZIs/nA48/Zvjrl34bf+oD76JHiGDUxNOVgUjh3j890sblXryjY4rss71fPtD/njchl6PSE2hIhvyWa1eT0A==" + "resolved" "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-26.0.0.tgz" + "version" "26.0.0" + +"jest-resolve-dependencies@^26.6.3": + "integrity" "sha512-pVwUjJkxbhe4RY8QEWzN3vns2kqyuldKpxlxJlzEYfKSvY6/bMvxoFrYYzUO1Gx28yKWN37qyV7rIoIp2h8fTg==" + "resolved" "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-26.6.3.tgz" + "version" "26.6.3" + dependencies: + "@jest/types" "^26.6.2" + "jest-regex-util" "^26.0.0" + "jest-snapshot" "^26.6.2" + +"jest-resolve@*": + "version" "26.6.0" + dependencies: + "@jest/types" "^26.6.0" + "chalk" "^4.0.0" + "graceful-fs" "^4.2.4" + "jest-pnp-resolver" "^1.2.2" + "jest-util" "^26.6.0" + "read-pkg-up" "^7.0.1" + "resolve" "^1.17.0" + "slash" "^3.0.0" + +"jest-resolve@^26.6.2": + "integrity" "sha512-sOxsZOq25mT1wRsfHcbtkInS+Ek7Q8jCHUB0ZUTP0tc/c41QHriU/NunqMfCUWsL4H3MHpvQD4QR9kSYhS7UvQ==" + "resolved" "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "chalk" "^4.0.0" + "graceful-fs" "^4.2.4" + "jest-pnp-resolver" "^1.2.2" + "jest-util" "^26.6.2" + "read-pkg-up" "^7.0.1" + "resolve" "^1.18.1" + "slash" "^3.0.0" + +"jest-resolve@26.6.0": + "integrity" "sha512-tRAz2bwraHufNp+CCmAD8ciyCpXCs1NQxB5EJAmtCFy6BN81loFEGWKzYu26Y62lAJJe4X4jg36Kf+NsQyiStQ==" + "resolved" "https://registry.npmjs.org/jest-resolve/-/jest-resolve-26.6.0.tgz" + "version" "26.6.0" + dependencies: + "@jest/types" "^26.6.0" + "chalk" "^4.0.0" + "graceful-fs" "^4.2.4" + "jest-pnp-resolver" "^1.2.2" + "jest-util" "^26.6.0" + "read-pkg-up" "^7.0.1" + "resolve" "^1.17.0" + "slash" "^3.0.0" + +"jest-runner@^26.6.0", "jest-runner@^26.6.3": + "integrity" "sha512-atgKpRHnaA2OvByG/HpGA4g6CSPS/1LK0jK3gATJAoptC1ojltpmVlYC3TYgdmGp+GLuhzpH30Gvs36szSL2JQ==" + "resolved" "https://registry.npmjs.org/jest-runner/-/jest-runner-26.6.3.tgz" + "version" "26.6.3" + dependencies: + "@jest/console" "^26.6.2" + "@jest/environment" "^26.6.2" + "@jest/test-result" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/node" "*" + "chalk" "^4.0.0" + "emittery" "^0.7.1" + "exit" "^0.1.2" + "graceful-fs" "^4.2.4" + "jest-config" "^26.6.3" + "jest-docblock" "^26.0.0" + "jest-haste-map" "^26.6.2" + "jest-leak-detector" "^26.6.2" + "jest-message-util" "^26.6.2" + "jest-resolve" "^26.6.2" + "jest-runtime" "^26.6.3" + "jest-util" "^26.6.2" + "jest-worker" "^26.6.2" + "source-map-support" "^0.5.6" + "throat" "^5.0.0" + +"jest-runtime@^26.6.0", "jest-runtime@^26.6.3": + "integrity" "sha512-lrzyR3N8sacTAMeonbqpnSka1dHNux2uk0qqDXVkMv2c/A3wYnvQ4EXuI013Y6+gSKSCxdaczvf4HF0mVXHRdw==" + "resolved" "https://registry.npmjs.org/jest-runtime/-/jest-runtime-26.6.3.tgz" + "version" "26.6.3" + dependencies: + "@jest/console" "^26.6.2" + "@jest/environment" "^26.6.2" + "@jest/fake-timers" "^26.6.2" + "@jest/globals" "^26.6.2" + "@jest/source-map" "^26.6.2" + "@jest/test-result" "^26.6.2" + "@jest/transform" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/yargs" "^15.0.0" + "chalk" "^4.0.0" + "cjs-module-lexer" "^0.6.0" + "collect-v8-coverage" "^1.0.0" + "exit" "^0.1.2" + "glob" "^7.1.3" + "graceful-fs" "^4.2.4" + "jest-config" "^26.6.3" + "jest-haste-map" "^26.6.2" + "jest-message-util" "^26.6.2" + "jest-mock" "^26.6.2" + "jest-regex-util" "^26.0.0" + "jest-resolve" "^26.6.2" + "jest-snapshot" "^26.6.2" + "jest-util" "^26.6.2" + "jest-validate" "^26.6.2" + "slash" "^3.0.0" + "strip-bom" "^4.0.0" + "yargs" "^15.4.1" + +"jest-serializer@^26.6.2": + "integrity" "sha512-S5wqyz0DXnNJPd/xfIzZ5Xnp1HrJWBczg8mMfMpN78OJ5eDxXyf+Ygld9wX1DnUWbIbhM1YDY95NjR4CBXkb2g==" + "resolved" "https://registry.npmjs.org/jest-serializer/-/jest-serializer-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@types/node" "*" + "graceful-fs" "^4.2.4" + +"jest-snapshot@^26.6.0", "jest-snapshot@^26.6.2": + "integrity" "sha512-OLhxz05EzUtsAmOMzuupt1lHYXCNib0ECyuZ/PZOx9TrZcC8vL0x+DUG3TL+GLX3yHG45e6YGjIm0XwDc3q3og==" + "resolved" "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@babel/types" "^7.0.0" + "@jest/types" "^26.6.2" + "@types/babel__traverse" "^7.0.4" + "@types/prettier" "^2.0.0" + "chalk" "^4.0.0" + "expect" "^26.6.2" + "graceful-fs" "^4.2.4" + "jest-diff" "^26.6.2" + "jest-get-type" "^26.3.0" + "jest-haste-map" "^26.6.2" + "jest-matcher-utils" "^26.6.2" + "jest-message-util" "^26.6.2" + "jest-resolve" "^26.6.2" + "natural-compare" "^1.4.0" + "pretty-format" "^26.6.2" + "semver" "^7.3.2" + +"jest-util@^26.6.0", "jest-util@^26.6.2": + "integrity" "sha512-MDW0fKfsn0OI7MS7Euz6h8HNDXVQ0gaM9uW6RjfDmd1DAFcaxX9OqIakHIqhbnmF08Cf2DLDG+ulq8YQQ0Lp0Q==" + "resolved" "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "@types/node" "*" + "chalk" "^4.0.0" + "graceful-fs" "^4.2.4" + "is-ci" "^2.0.0" + "micromatch" "^4.0.2" + +"jest-validate@^26.6.2": + "integrity" "sha512-NEYZ9Aeyj0i5rQqbq+tpIOom0YS1u2MVu6+euBsvpgIme+FOfRmoC4R5p0JiAUpaFvFy24xgrpMknarR/93XjQ==" + "resolved" "https://registry.npmjs.org/jest-validate/-/jest-validate-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "camelcase" "^6.0.0" + "chalk" "^4.0.0" + "jest-get-type" "^26.3.0" + "leven" "^3.1.0" + "pretty-format" "^26.6.2" + +"jest-watch-typeahead@0.6.1": + "integrity" "sha512-ITVnHhj3Jd/QkqQcTqZfRgjfyRhDFM/auzgVo2RKvSwi18YMvh0WvXDJFoFED6c7jd/5jxtu4kSOb9PTu2cPVg==" + "resolved" "https://registry.npmjs.org/jest-watch-typeahead/-/jest-watch-typeahead-0.6.1.tgz" + "version" "0.6.1" + dependencies: + "ansi-escapes" "^4.3.1" + "chalk" "^4.0.0" + "jest-regex-util" "^26.0.0" + "jest-watcher" "^26.3.0" + "slash" "^3.0.0" + "string-length" "^4.0.1" + "strip-ansi" "^6.0.0" + +"jest-watcher@^26.3.0", "jest-watcher@^26.6.2": + "integrity" "sha512-WKJob0P/Em2csiVthsI68p6aGKTIcsfjH9Gsx1f0A3Italz43e3ho0geSAVsmj09RWOELP1AZ/DXyJgOgDKxXQ==" + "resolved" "https://registry.npmjs.org/jest-watcher/-/jest-watcher-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/test-result" "^26.6.2" + "@jest/types" "^26.6.2" + "@types/node" "*" + "ansi-escapes" "^4.2.1" + "chalk" "^4.0.0" + "jest-util" "^26.6.2" + "string-length" "^4.0.1" + +"jest-worker@^24.9.0": + "integrity" "sha512-51PE4haMSXcHohnSMdM42anbvZANYTqMrr52tVKPqqsPJMzoP6FYYDVqahX/HrAoKEKz3uUPzSvKs9A3qR4iVw==" + "resolved" "https://registry.npmjs.org/jest-worker/-/jest-worker-24.9.0.tgz" + "version" "24.9.0" + dependencies: + "merge-stream" "^2.0.0" + "supports-color" "^6.1.0" + +"jest-worker@^26.5.0", "jest-worker@^26.6.2": + "integrity" "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==" + "resolved" "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@types/node" "*" + "merge-stream" "^2.0.0" + "supports-color" "^7.0.0" + +"jest@^26.0.0", "jest@26.6.0": + "integrity" "sha512-jxTmrvuecVISvKFFhOkjsWRZV7sFqdSUAd1ajOKY+/QE/aLBVstsJ/dX8GczLzwiT6ZEwwmZqtCUHLHHQVzcfA==" + "resolved" "https://registry.npmjs.org/jest/-/jest-26.6.0.tgz" + "version" "26.6.0" + dependencies: + "@jest/core" "^26.6.0" + "import-local" "^3.0.2" + "jest-cli" "^26.6.0" + +"js-tokens@^3.0.0 || ^4.0.0", "js-tokens@^4.0.0": + "integrity" "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + "resolved" "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" + "version" "4.0.0" + +"js-yaml@^3.13.1": + "integrity" "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==" + "resolved" "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz" + "version" "3.14.1" + dependencies: + "argparse" "^1.0.7" + "esprima" "^4.0.0" + +"jsbn@~0.1.0": + "integrity" "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" + "resolved" "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz" + "version" "0.1.1" + +"jsdom@^16.4.0": + "integrity" "sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w==" + "resolved" "https://registry.npmjs.org/jsdom/-/jsdom-16.4.0.tgz" + "version" "16.4.0" + dependencies: + "abab" "^2.0.3" + "acorn" "^7.1.1" + "acorn-globals" "^6.0.0" + "cssom" "^0.4.4" + "cssstyle" "^2.2.0" + "data-urls" "^2.0.0" + "decimal.js" "^10.2.0" + "domexception" "^2.0.1" + "escodegen" "^1.14.1" + "html-encoding-sniffer" "^2.0.1" + "is-potential-custom-element-name" "^1.0.0" + "nwsapi" "^2.2.0" + "parse5" "5.1.1" + "request" "^2.88.2" + "request-promise-native" "^1.0.8" + "saxes" "^5.0.0" + "symbol-tree" "^3.2.4" + "tough-cookie" "^3.0.1" + "w3c-hr-time" "^1.0.2" + "w3c-xmlserializer" "^2.0.0" + "webidl-conversions" "^6.1.0" + "whatwg-encoding" "^1.0.5" + "whatwg-mimetype" "^2.3.0" + "whatwg-url" "^8.0.0" + "ws" "^7.2.3" + "xml-name-validator" "^3.0.0" + +"jsesc@^2.5.1": + "integrity" "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==" + "resolved" "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz" + "version" "2.5.2" + +"jsesc@~0.5.0": + "integrity" "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" + "resolved" "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz" + "version" "0.5.0" + +"json-parse-better-errors@^1.0.1", "json-parse-better-errors@^1.0.2": + "integrity" "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + "resolved" "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz" + "version" "1.0.2" + +"json-parse-even-better-errors@^2.3.0": + "integrity" "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + "resolved" "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz" + "version" "2.3.1" + +"json-schema-traverse@^0.4.1": + "integrity" "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + "resolved" "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz" + "version" "0.4.1" + +"json-schema-traverse@^1.0.0": + "integrity" "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + "resolved" "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz" + "version" "1.0.0" + +"json-schema@0.2.3": + "integrity" "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + "resolved" "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz" + "version" "0.2.3" + +"json-stable-stringify-without-jsonify@^1.0.1": + "integrity" "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" + "resolved" "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz" + "version" "1.0.1" + +"json-stringify-safe@~5.0.1": + "integrity" "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" + "resolved" "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" + "version" "5.0.1" + +"json3@^3.3.3": + "integrity" "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==" + "resolved" "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz" + "version" "3.3.3" + +"json5@^1.0.1": + "integrity" "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==" + "resolved" "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "minimist" "^1.2.0" + +"json5@^2.1.2": + "integrity" "sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==" + "resolved" "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz" + "version" "2.2.0" + dependencies: + "minimist" "^1.2.5" + +"jsonfile@^4.0.0": + "integrity" "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=" + "resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz" + "version" "4.0.0" + optionalDependencies: + "graceful-fs" "^4.1.6" + +"jsonfile@^6.0.1": + "integrity" "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==" + "resolved" "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz" + "version" "6.1.0" + dependencies: + "universalify" "^2.0.0" + optionalDependencies: + "graceful-fs" "^4.1.6" + +"jsprim@^1.2.2": + "integrity" "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=" + "resolved" "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz" + "version" "1.4.1" + dependencies: + "assert-plus" "1.0.0" + "extsprintf" "1.3.0" + "json-schema" "0.2.3" + "verror" "1.10.0" + +"jss-plugin-camel-case@^10.5.1": + "integrity" "sha512-9+oymA7wPtswm+zxVti1qiowC5q7bRdCJNORtns2JUj/QHp2QPXYwSNRD8+D2Cy3/CEMtdJzlNnt5aXmpS6NAg==" + "resolved" "https://registry.npmjs.org/jss-plugin-camel-case/-/jss-plugin-camel-case-10.5.1.tgz" + "version" "10.5.1" + dependencies: + "@babel/runtime" "^7.3.1" + "hyphenate-style-name" "^1.0.3" + "jss" "10.5.1" + +"jss-plugin-default-unit@^10.5.1": + "integrity" "sha512-D48hJBc9Tj3PusvlillHW8Fz0y/QqA7MNmTYDQaSB/7mTrCZjt7AVRROExoOHEtd2qIYKOYJW3Jc2agnvsXRlQ==" + "resolved" "https://registry.npmjs.org/jss-plugin-default-unit/-/jss-plugin-default-unit-10.5.1.tgz" + "version" "10.5.1" + dependencies: + "@babel/runtime" "^7.3.1" + "jss" "10.5.1" + +"jss-plugin-global@^10.5.1": + "integrity" "sha512-jX4XpNgoaB8yPWw/gA1aPXJEoX0LNpvsROPvxlnYe+SE0JOhuvF7mA6dCkgpXBxfTWKJsno7cDSCgzHTocRjCQ==" + "resolved" "https://registry.npmjs.org/jss-plugin-global/-/jss-plugin-global-10.5.1.tgz" + "version" "10.5.1" + dependencies: + "@babel/runtime" "^7.3.1" + "jss" "10.5.1" + +"jss-plugin-nested@^10.5.1": + "integrity" "sha512-xXkWKOCljuwHNjSYcXrCxBnjd8eJp90KVFW1rlhvKKRXnEKVD6vdKXYezk2a89uKAHckSvBvBoDGsfZrldWqqQ==" + "resolved" "https://registry.npmjs.org/jss-plugin-nested/-/jss-plugin-nested-10.5.1.tgz" + "version" "10.5.1" + dependencies: + "@babel/runtime" "^7.3.1" + "jss" "10.5.1" + "tiny-warning" "^1.0.2" + +"jss-plugin-props-sort@^10.5.1": + "integrity" "sha512-t+2vcevNmMg4U/jAuxlfjKt46D/jHzCPEjsjLRj/J56CvP7Iy03scsUP58Iw8mVnaV36xAUZH2CmAmAdo8994g==" + "resolved" "https://registry.npmjs.org/jss-plugin-props-sort/-/jss-plugin-props-sort-10.5.1.tgz" + "version" "10.5.1" + dependencies: + "@babel/runtime" "^7.3.1" + "jss" "10.5.1" + +"jss-plugin-rule-value-function@^10.5.1": + "integrity" "sha512-3gjrSxsy4ka/lGQsTDY8oYYtkt2esBvQiceGBB4PykXxHoGRz14tbCK31Zc6DHEnIeqsjMUGbq+wEly5UViStQ==" + "resolved" "https://registry.npmjs.org/jss-plugin-rule-value-function/-/jss-plugin-rule-value-function-10.5.1.tgz" + "version" "10.5.1" + dependencies: + "@babel/runtime" "^7.3.1" + "jss" "10.5.1" + "tiny-warning" "^1.0.2" + +"jss-plugin-vendor-prefixer@^10.5.1": + "integrity" "sha512-cLkH6RaPZWHa1TqSfd2vszNNgxT1W0omlSjAd6hCFHp3KIocSrW21gaHjlMU26JpTHwkc+tJTCQOmE/O1A4FKQ==" + "resolved" "https://registry.npmjs.org/jss-plugin-vendor-prefixer/-/jss-plugin-vendor-prefixer-10.5.1.tgz" + "version" "10.5.1" + dependencies: + "@babel/runtime" "^7.3.1" + "css-vendor" "^2.0.8" + "jss" "10.5.1" + +"jss@^10.5.1", "jss@10.5.1": + "integrity" "sha512-hbbO3+FOTqVdd7ZUoTiwpHzKXIo5vGpMNbuXH1a0wubRSWLWSBvwvaq4CiHH/U42CmjOnp6lVNNs/l+Z7ZdDmg==" + "resolved" "https://registry.npmjs.org/jss/-/jss-10.5.1.tgz" + "version" "10.5.1" + dependencies: + "@babel/runtime" "^7.3.1" + "csstype" "^3.0.2" + "indefinite-observable" "^2.0.1" + "is-in-browser" "^1.1.3" + "tiny-warning" "^1.0.2" + +"jsx-ast-utils@^2.4.1 || ^3.0.0", "jsx-ast-utils@^3.1.0": + "integrity" "sha512-EIsmt3O3ljsU6sot/J4E1zDRxfBNrhjyf/OKjlydwgEimQuznlM4Wv7U+ueONJMyEn1WRE0K8dhi3dVAXYT24Q==" + "resolved" "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.2.0.tgz" + "version" "3.2.0" + dependencies: + "array-includes" "^3.1.2" + "object.assign" "^4.1.2" + +"jwt-decode@^3.1.2": + "integrity" "sha512-UfpWE/VZn0iP50d8cz9NrZLM9lSWhcJ+0Gt/nm4by88UL+J1SiKN8/5dkjMmbEzwL2CAe+67GsegCbIKtbp75A==" + "resolved" "https://registry.npmjs.org/jwt-decode/-/jwt-decode-3.1.2.tgz" + "version" "3.1.2" + +"killable@^1.0.1": + "integrity" "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==" + "resolved" "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz" + "version" "1.0.1" + +"kind-of@^3.0.2", "kind-of@^3.0.3", "kind-of@^3.2.0": + "integrity" "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=" + "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz" + "version" "3.2.2" + dependencies: + "is-buffer" "^1.1.5" + +"kind-of@^4.0.0": + "integrity" "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=" + "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "is-buffer" "^1.1.5" + +"kind-of@^5.0.0": + "integrity" "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==" + "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz" + "version" "5.1.0" + +"kind-of@^6.0.0": + "integrity" "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz" + "version" "6.0.3" + +"kind-of@^6.0.2": + "integrity" "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" + "resolved" "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz" + "version" "6.0.3" + +"kleur@^3.0.3": + "integrity" "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==" + "resolved" "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz" + "version" "3.0.3" + +"klona@^2.0.4": + "integrity" "sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA==" + "resolved" "https://registry.npmjs.org/klona/-/klona-2.0.4.tgz" + "version" "2.0.4" + +"language-subtag-registry@~0.3.2": + "integrity" "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==" + "resolved" "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz" + "version" "0.3.21" + +"language-tags@^1.0.5": + "integrity" "sha1-0yHbxNowuovzAk4ED6XBRmH5GTo=" + "resolved" "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz" + "version" "1.0.5" + dependencies: + "language-subtag-registry" "~0.3.2" + +"last-call-webpack-plugin@^3.0.0": + "integrity" "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==" + "resolved" "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "lodash" "^4.17.5" + "webpack-sources" "^1.1.0" + +"leven@^3.1.0": + "integrity" "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==" + "resolved" "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz" + "version" "3.1.0" + +"levn@^0.4.1": + "integrity" "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==" + "resolved" "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz" + "version" "0.4.1" + dependencies: + "prelude-ls" "^1.2.1" + "type-check" "~0.4.0" + +"levn@~0.3.0": + "integrity" "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=" + "resolved" "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz" + "version" "0.3.0" + dependencies: + "prelude-ls" "~1.1.2" + "type-check" "~0.3.2" + +"lines-and-columns@^1.1.6": + "integrity" "sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA=" + "resolved" "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz" + "version" "1.1.6" + +"load-json-file@^2.0.0": + "integrity" "sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg=" + "resolved" "https://registry.npmjs.org/load-json-file/-/load-json-file-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "graceful-fs" "^4.1.2" + "parse-json" "^2.2.0" + "pify" "^2.0.0" + "strip-bom" "^3.0.0" + +"loader-runner@^2.4.0": + "integrity" "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==" + "resolved" "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz" + "version" "2.4.0" + +"loader-utils@^1.1.0": + "integrity" "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==" + "resolved" "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz" + "version" "1.4.0" + dependencies: + "big.js" "^5.2.2" + "emojis-list" "^3.0.0" + "json5" "^1.0.1" + +"loader-utils@^1.2.3": + "integrity" "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==" + "resolved" "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz" + "version" "1.4.0" + dependencies: + "big.js" "^5.2.2" + "emojis-list" "^3.0.0" + "json5" "^1.0.1" + +"loader-utils@^1.4.0": + "integrity" "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==" + "resolved" "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz" + "version" "1.4.0" + dependencies: + "big.js" "^5.2.2" + "emojis-list" "^3.0.0" + "json5" "^1.0.1" + +"loader-utils@^2.0.0", "loader-utils@2.0.0": + "integrity" "sha512-rP4F0h2RaWSvPEkD7BLDFQnvSf+nK+wr3ESUjNTyAGobqrijmW92zc+SO6d4p4B1wh7+B/Jg1mkQe5NYUEHtHQ==" + "resolved" "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "big.js" "^5.2.2" + "emojis-list" "^3.0.0" + "json5" "^2.1.2" + +"loader-utils@1.2.3": + "integrity" "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==" + "resolved" "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz" + "version" "1.2.3" + dependencies: + "big.js" "^5.2.2" + "emojis-list" "^2.0.0" + "json5" "^1.0.1" + +"locate-path@^2.0.0": + "integrity" "sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=" + "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "p-locate" "^2.0.0" + "path-exists" "^3.0.0" + +"locate-path@^3.0.0": + "integrity" "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==" + "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "p-locate" "^3.0.0" + "path-exists" "^3.0.0" + +"locate-path@^5.0.0": + "integrity" "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==" + "resolved" "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz" + "version" "5.0.0" + dependencies: + "p-locate" "^4.1.0" + +"lodash._reinterpolate@^3.0.0": + "integrity" "sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=" + "resolved" "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz" + "version" "3.0.0" + +"lodash.memoize@^4.1.2": + "integrity" "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=" + "resolved" "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz" + "version" "4.1.2" + +"lodash.orderby@^4.6.0": + "integrity" "sha1-5pfwTOXXhSL1TZM4syuBozk+TrM=" + "resolved" "https://registry.npmjs.org/lodash.orderby/-/lodash.orderby-4.6.0.tgz" + "version" "4.6.0" + +"lodash.sortby@^4.7.0": + "integrity" "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=" + "resolved" "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz" + "version" "4.7.0" + +"lodash.template@^4.5.0": + "integrity" "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==" + "resolved" "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz" + "version" "4.5.0" + dependencies: + "lodash._reinterpolate" "^3.0.0" + "lodash.templatesettings" "^4.0.0" + +"lodash.templatesettings@^4.0.0": + "integrity" "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==" + "resolved" "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz" + "version" "4.2.0" + dependencies: + "lodash._reinterpolate" "^3.0.0" + +"lodash.uniq@^4.5.0": + "integrity" "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=" + "resolved" "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz" + "version" "4.5.0" + +"lodash@^4.17.11", "lodash@^4.17.14", "lodash@^4.17.15", "lodash@^4.17.19", "lodash@^4.17.20", "lodash@^4.17.5", "lodash@>=3.5 <5": + "integrity" "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + "resolved" "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz" + "version" "4.17.21" + +"loglevel@^1.6.8": + "integrity" "sha512-Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==" + "resolved" "https://registry.npmjs.org/loglevel/-/loglevel-1.7.1.tgz" + "version" "1.7.1" + +"loose-envify@^1.1.0", "loose-envify@^1.2.0", "loose-envify@^1.3.1", "loose-envify@^1.4.0": + "integrity" "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==" + "resolved" "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" + "version" "1.4.0" + dependencies: + "js-tokens" "^3.0.0 || ^4.0.0" + +"lower-case@^2.0.2": + "integrity" "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==" + "resolved" "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "tslib" "^2.0.3" + +"lru-cache@^5.1.1": + "integrity" "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==" + "resolved" "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz" + "version" "5.1.1" + dependencies: + "yallist" "^3.0.2" + +"lru-cache@^6.0.0": + "integrity" "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==" + "resolved" "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz" + "version" "6.0.0" + dependencies: + "yallist" "^4.0.0" + +"lz-string@^1.4.4": + "integrity" "sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=" + "resolved" "https://registry.npmjs.org/lz-string/-/lz-string-1.4.4.tgz" + "version" "1.4.4" + +"magic-string@^0.25.0", "magic-string@^0.25.7": + "integrity" "sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA==" + "resolved" "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz" + "version" "0.25.7" + dependencies: + "sourcemap-codec" "^1.4.4" + +"make-dir@^2.0.0": + "integrity" "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==" + "resolved" "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "pify" "^4.0.1" + "semver" "^5.6.0" + +"make-dir@^3.0.0", "make-dir@^3.0.2": + "integrity" "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==" + "resolved" "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz" + "version" "3.1.0" + dependencies: + "semver" "^6.0.0" + +"makeerror@1.0.x": + "integrity" "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=" + "resolved" "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz" + "version" "1.0.11" + dependencies: + "tmpl" "1.0.x" + +"map-cache@^0.2.2": + "integrity" "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=" + "resolved" "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz" + "version" "0.2.2" + +"map-visit@^1.0.0": + "integrity" "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=" + "resolved" "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "object-visit" "^1.0.0" + +"md5.js@^1.3.4": + "integrity" "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==" + "resolved" "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz" + "version" "1.3.5" + dependencies: + "hash-base" "^3.0.0" + "inherits" "^2.0.1" + "safe-buffer" "^5.1.2" + +"mdn-data@2.0.14": + "integrity" "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + "resolved" "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz" + "version" "2.0.14" + +"mdn-data@2.0.4": + "integrity" "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" + "resolved" "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz" + "version" "2.0.4" + +"media-typer@0.3.0": + "integrity" "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=" + "resolved" "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz" + "version" "0.3.0" + +"memory-fs@^0.4.1": + "integrity" "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=" + "resolved" "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz" + "version" "0.4.1" + dependencies: + "errno" "^0.1.3" + "readable-stream" "^2.0.1" + +"memory-fs@^0.5.0": + "integrity" "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==" + "resolved" "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz" + "version" "0.5.0" + dependencies: + "errno" "^0.1.3" + "readable-stream" "^2.0.1" + +"merge-descriptors@1.0.1": + "integrity" "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=" + "resolved" "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz" + "version" "1.0.1" + +"merge-stream@^2.0.0": + "integrity" "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + "resolved" "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz" + "version" "2.0.0" + +"merge2@^1.3.0": + "integrity" "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==" + "resolved" "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz" + "version" "1.4.1" + +"methods@~1.1.2": + "integrity" "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=" + "resolved" "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz" + "version" "1.1.2" + +"microevent.ts@~0.1.1": + "integrity" "sha512-jo1OfR4TaEwd5HOrt5+tAZ9mqT4jmpNAusXtyfNzqVm9uiSYFZlKM1wYL4oU7azZW/PxQW53wM0S6OR1JHNa2g==" + "resolved" "https://registry.npmjs.org/microevent.ts/-/microevent.ts-0.1.1.tgz" + "version" "0.1.1" + +"micromatch@^3.1.10": + "integrity" "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==" + "resolved" "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz" + "version" "3.1.10" + dependencies: + "arr-diff" "^4.0.0" + "array-unique" "^0.3.2" + "braces" "^2.3.1" + "define-property" "^2.0.2" + "extend-shallow" "^3.0.2" + "extglob" "^2.0.4" + "fragment-cache" "^0.2.1" + "kind-of" "^6.0.2" + "nanomatch" "^1.2.9" + "object.pick" "^1.3.0" + "regex-not" "^1.0.0" + "snapdragon" "^0.8.1" + "to-regex" "^3.0.2" + +"micromatch@^3.1.4": + "integrity" "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==" + "resolved" "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz" + "version" "3.1.10" + dependencies: + "arr-diff" "^4.0.0" + "array-unique" "^0.3.2" + "braces" "^2.3.1" + "define-property" "^2.0.2" + "extend-shallow" "^3.0.2" + "extglob" "^2.0.4" + "fragment-cache" "^0.2.1" + "kind-of" "^6.0.2" + "nanomatch" "^1.2.9" + "object.pick" "^1.3.0" + "regex-not" "^1.0.0" + "snapdragon" "^0.8.1" + "to-regex" "^3.0.2" + +"micromatch@^4.0.2": + "integrity" "sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==" + "resolved" "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "braces" "^3.0.1" + "picomatch" "^2.0.5" + +"miller-rabin@^4.0.0": + "integrity" "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==" + "resolved" "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "bn.js" "^4.0.0" + "brorand" "^1.0.1" + +"mime-db@>= 1.43.0 < 2", "mime-db@1.46.0": + "integrity" "sha512-svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ==" + "resolved" "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz" + "version" "1.46.0" + +"mime-types@^2.1.12", "mime-types@^2.1.27", "mime-types@~2.1.17", "mime-types@~2.1.19", "mime-types@~2.1.24": + "integrity" "sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ==" + "resolved" "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz" + "version" "2.1.29" + dependencies: + "mime-db" "1.46.0" + +"mime@^2.4.4": + "integrity" "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==" + "resolved" "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz" + "version" "2.5.2" + +"mime@1.6.0": + "integrity" "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==" + "resolved" "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz" + "version" "1.6.0" + +"mimic-fn@^2.1.0": + "integrity" "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==" + "resolved" "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz" + "version" "2.1.0" + +"min-indent@^1.0.0": + "integrity" "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==" + "resolved" "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz" + "version" "1.0.1" + +"mini-create-react-context@^0.4.0": + "integrity" "sha512-YWCYEmd5CQeHGSAKrYvXgmzzkrvssZcuuQDDeqkT+PziKGMgE+0MCCtcKbROzocGBG1meBLl2FotlRwf4gAzbQ==" + "resolved" "https://registry.npmjs.org/mini-create-react-context/-/mini-create-react-context-0.4.1.tgz" + "version" "0.4.1" + dependencies: + "@babel/runtime" "^7.12.1" + "tiny-warning" "^1.0.3" + +"mini-css-extract-plugin@0.11.3": + "integrity" "sha512-n9BA8LonkOkW1/zn+IbLPQmovsL0wMb9yx75fMJQZf2X1Zoec9yTZtyMePcyu19wPkmFbzZZA6fLTotpFhQsOA==" + "resolved" "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-0.11.3.tgz" + "version" "0.11.3" + dependencies: + "loader-utils" "^1.1.0" + "normalize-url" "1.9.1" + "schema-utils" "^1.0.0" + "webpack-sources" "^1.1.0" + +"minimalistic-assert@^1.0.0", "minimalistic-assert@^1.0.1": + "integrity" "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + "resolved" "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz" + "version" "1.0.1" + +"minimalistic-crypto-utils@^1.0.1": + "integrity" "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=" + "resolved" "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz" + "version" "1.0.1" + +"minimatch@^3.0.4", "minimatch@3.0.4": + "integrity" "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==" + "resolved" "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz" + "version" "3.0.4" + dependencies: + "brace-expansion" "^1.1.7" + +"minimist@^1.1.1", "minimist@^1.2.0", "minimist@^1.2.5": + "integrity" "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw==" + "resolved" "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz" + "version" "1.2.5" + +"minipass-collect@^1.0.2": + "integrity" "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==" + "resolved" "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "minipass" "^3.0.0" + +"minipass-flush@^1.0.5": + "integrity" "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==" + "resolved" "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz" + "version" "1.0.5" + dependencies: + "minipass" "^3.0.0" + +"minipass-pipeline@^1.2.2": + "integrity" "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==" + "resolved" "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz" + "version" "1.2.4" + dependencies: + "minipass" "^3.0.0" + +"minipass@^3.0.0", "minipass@^3.1.1": + "integrity" "sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==" + "resolved" "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz" + "version" "3.1.3" + dependencies: + "yallist" "^4.0.0" + +"minizlib@^2.1.1": + "integrity" "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==" + "resolved" "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz" + "version" "2.1.2" + dependencies: + "minipass" "^3.0.0" + "yallist" "^4.0.0" + +"mississippi@^3.0.0": + "integrity" "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==" + "resolved" "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "concat-stream" "^1.5.0" + "duplexify" "^3.4.2" + "end-of-stream" "^1.1.0" + "flush-write-stream" "^1.0.0" + "from2" "^2.1.0" + "parallel-transform" "^1.1.0" + "pump" "^3.0.0" + "pumpify" "^1.3.3" + "stream-each" "^1.1.0" + "through2" "^2.0.0" + +"mixin-deep@^1.2.0": + "integrity" "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==" + "resolved" "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz" + "version" "1.3.2" + dependencies: + "for-in" "^1.0.2" + "is-extendable" "^1.0.1" + +"mkdirp@^0.5.1", "mkdirp@^0.5.3", "mkdirp@^0.5.5", "mkdirp@~0.5.1": + "integrity" "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==" + "resolved" "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz" + "version" "0.5.5" + dependencies: + "minimist" "^1.2.5" + +"mkdirp@^1.0.3": + "integrity" "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + "resolved" "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz" + "version" "1.0.4" + +"mkdirp@^1.0.4": + "integrity" "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==" + "resolved" "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz" + "version" "1.0.4" + +"move-concurrently@^1.0.1": + "integrity" "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=" + "resolved" "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "aproba" "^1.1.1" + "copy-concurrently" "^1.0.0" + "fs-write-stream-atomic" "^1.0.8" + "mkdirp" "^0.5.1" + "rimraf" "^2.5.4" + "run-queue" "^1.0.3" + +"ms@^2.1.1": + "integrity" "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" + "version" "2.1.3" + +"ms@2.0.0": + "integrity" "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=" + "resolved" "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" + "version" "2.0.0" + +"ms@2.1.1": + "integrity" "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==" + "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz" + "version" "2.1.1" + +"ms@2.1.2": + "integrity" "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + "resolved" "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz" + "version" "2.1.2" + +"multicast-dns-service-types@^1.1.0": + "integrity" "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=" + "resolved" "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz" + "version" "1.1.0" + +"multicast-dns@^6.0.1": + "integrity" "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==" + "resolved" "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz" + "version" "6.2.3" + dependencies: + "dns-packet" "^1.3.1" + "thunky" "^1.0.2" + +"nan@^2.12.1": + "integrity" "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==" + "resolved" "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz" + "version" "2.14.2" + +"nanoid@^2.1.0": + "integrity" "sha512-s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA==" + "resolved" "https://registry.npmjs.org/nanoid/-/nanoid-2.1.11.tgz" + "version" "2.1.11" + +"nanoid@^3.1.20": + "integrity" "sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==" + "resolved" "https://registry.npmjs.org/nanoid/-/nanoid-3.1.20.tgz" + "version" "3.1.20" + +"nanomatch@^1.2.9": + "integrity" "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==" + "resolved" "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz" + "version" "1.2.13" + dependencies: + "arr-diff" "^4.0.0" + "array-unique" "^0.3.2" + "define-property" "^2.0.2" + "extend-shallow" "^3.0.2" + "fragment-cache" "^0.2.1" + "is-windows" "^1.0.2" + "kind-of" "^6.0.2" + "object.pick" "^1.3.0" + "regex-not" "^1.0.0" + "snapdragon" "^0.8.1" + "to-regex" "^3.0.1" + +"native-url@^0.2.6": + "integrity" "sha512-k4bDC87WtgrdD362gZz6zoiXQrl40kYlBmpfmSjwRO1VU0V5ccwJTlxuE72F6m3V0vc1xOf6n3UCP9QyerRqmA==" + "resolved" "https://registry.npmjs.org/native-url/-/native-url-0.2.6.tgz" + "version" "0.2.6" + dependencies: + "querystring" "^0.2.0" + +"natural-compare@^1.4.0": + "integrity" "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=" + "resolved" "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz" + "version" "1.4.0" + +"negotiator@0.6.2": + "integrity" "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==" + "resolved" "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz" + "version" "0.6.2" + +"neo-async@^2.5.0", "neo-async@^2.6.1", "neo-async@^2.6.2": + "integrity" "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + "resolved" "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz" + "version" "2.6.2" + +"next-tick@~1.0.0": + "integrity" "sha1-yobR/ogoFpsBICCOPchCS524NCw=" + "resolved" "https://registry.npmjs.org/next-tick/-/next-tick-1.0.0.tgz" + "version" "1.0.0" + +"nice-try@^1.0.4": + "integrity" "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==" + "resolved" "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz" + "version" "1.0.5" + +"no-case@^3.0.4": + "integrity" "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==" + "resolved" "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz" + "version" "3.0.4" + dependencies: + "lower-case" "^2.0.2" + "tslib" "^2.0.3" + +"node-forge@^0.10.0": + "integrity" "sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==" + "resolved" "https://registry.npmjs.org/node-forge/-/node-forge-0.10.0.tgz" + "version" "0.10.0" + +"node-int64@^0.4.0": + "integrity" "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=" + "resolved" "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz" + "version" "0.4.0" + +"node-libs-browser@^2.2.1": + "integrity" "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==" + "resolved" "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz" + "version" "2.2.1" + dependencies: + "assert" "^1.1.1" + "browserify-zlib" "^0.2.0" + "buffer" "^4.3.0" + "console-browserify" "^1.1.0" + "constants-browserify" "^1.0.0" + "crypto-browserify" "^3.11.0" + "domain-browser" "^1.1.1" + "events" "^3.0.0" + "https-browserify" "^1.0.0" + "os-browserify" "^0.3.0" + "path-browserify" "0.0.1" + "process" "^0.11.10" + "punycode" "^1.2.4" + "querystring-es3" "^0.2.0" + "readable-stream" "^2.3.3" + "stream-browserify" "^2.0.1" + "stream-http" "^2.7.2" + "string_decoder" "^1.0.0" + "timers-browserify" "^2.0.4" + "tty-browserify" "0.0.0" + "url" "^0.11.0" + "util" "^0.11.0" + "vm-browserify" "^1.0.1" + +"node-modules-regexp@^1.0.0": + "integrity" "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=" + "resolved" "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz" + "version" "1.0.0" + +"node-notifier@^8.0.0": + "integrity" "sha512-BvEXF+UmsnAfYfoapKM9nGxnP+Wn7P91YfXmrKnfcYCx6VBeoN5Ez5Ogck6I8Bi5k4RlpqRYaw75pAwzX9OphA==" + "resolved" "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.1.tgz" + "version" "8.0.1" + dependencies: + "growly" "^1.3.0" + "is-wsl" "^2.2.0" + "semver" "^7.3.2" + "shellwords" "^0.1.1" + "uuid" "^8.3.0" + "which" "^2.0.2" + +"node-releases@^1.1.61", "node-releases@^1.1.70": + "integrity" "sha512-Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw==" + "resolved" "https://registry.npmjs.org/node-releases/-/node-releases-1.1.70.tgz" + "version" "1.1.70" + +"normalize-package-data@^2.3.2", "normalize-package-data@^2.5.0": + "integrity" "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==" + "resolved" "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz" + "version" "2.5.0" + dependencies: + "hosted-git-info" "^2.1.4" + "resolve" "^1.10.0" + "semver" "2 || 3 || 4 || 5" + "validate-npm-package-license" "^3.0.1" + +"normalize-path@^2.1.1": + "integrity" "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=" + "resolved" "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz" + "version" "2.1.1" + dependencies: + "remove-trailing-separator" "^1.0.1" + +"normalize-path@^3.0.0", "normalize-path@~3.0.0": + "integrity" "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" + "resolved" "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz" + "version" "3.0.0" + +"normalize-range@^0.1.2": + "integrity" "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=" + "resolved" "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz" + "version" "0.1.2" + +"normalize-url@^3.0.0": + "integrity" "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==" + "resolved" "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz" + "version" "3.3.0" + +"normalize-url@1.9.1": + "integrity" "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=" + "resolved" "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz" + "version" "1.9.1" + dependencies: + "object-assign" "^4.0.1" + "prepend-http" "^1.0.0" + "query-string" "^4.1.0" + "sort-keys" "^1.0.0" + +"npm-run-path@^2.0.0": + "integrity" "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=" + "resolved" "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "path-key" "^2.0.0" + +"npm-run-path@^4.0.0": + "integrity" "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==" + "resolved" "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "path-key" "^3.0.0" + +"nth-check@^1.0.2": + "integrity" "sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==" + "resolved" "https://registry.npmjs.org/nth-check/-/nth-check-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "boolbase" "~1.0.0" + +"num2fraction@^1.2.2": + "integrity" "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=" + "resolved" "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz" + "version" "1.2.2" + +"nwsapi@^2.2.0": + "integrity" "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==" + "resolved" "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz" + "version" "2.2.0" + +"oauth-sign@~0.9.0": + "integrity" "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==" + "resolved" "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz" + "version" "0.9.0" + +"object-assign@^4.0.1", "object-assign@^4.1.0", "object-assign@^4.1.1": + "integrity" "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + "resolved" "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz" + "version" "4.1.1" + +"object-copy@^0.1.0": + "integrity" "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=" + "resolved" "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz" + "version" "0.1.0" + dependencies: + "copy-descriptor" "^0.1.0" + "define-property" "^0.2.5" + "kind-of" "^3.0.3" + +"object-inspect@^1.8.0", "object-inspect@^1.9.0": + "integrity" "sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==" + "resolved" "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz" + "version" "1.9.0" + +"object-is@^1.0.1": + "integrity" "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==" + "resolved" "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz" + "version" "1.1.5" + dependencies: + "call-bind" "^1.0.2" + "define-properties" "^1.1.3" + +"object-keys@^1.0.12", "object-keys@^1.1.1": + "integrity" "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==" + "resolved" "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz" + "version" "1.1.1" + +"object-visit@^1.0.0": + "integrity" "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=" + "resolved" "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "isobject" "^3.0.0" + +"object.assign@^4.1.0", "object.assign@^4.1.1", "object.assign@^4.1.2": + "integrity" "sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==" + "resolved" "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz" + "version" "4.1.2" + dependencies: + "call-bind" "^1.0.0" + "define-properties" "^1.1.3" + "has-symbols" "^1.0.1" + "object-keys" "^1.1.1" + +"object.entries@^1.1.0", "object.entries@^1.1.2": + "integrity" "sha512-ym7h7OZebNS96hn5IJeyUmaWhaSM4SVtAPPfNLQEI2MYWCO2egsITb9nab2+i/Pwibx+R0mtn+ltKJXRSeTMGg==" + "resolved" "https://registry.npmjs.org/object.entries/-/object.entries-1.1.3.tgz" + "version" "1.1.3" + dependencies: + "call-bind" "^1.0.0" + "define-properties" "^1.1.3" + "es-abstract" "^1.18.0-next.1" + "has" "^1.0.3" + +"object.fromentries@^2.0.2": + "integrity" "sha512-EsFBshs5RUUpQEY1D4q/m59kMfz4YJvxuNCJcv/jWwOJr34EaVnG11ZrZa0UHB3wnzV1wx8m58T4hQL8IuNXlQ==" + "resolved" "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.4.tgz" + "version" "2.0.4" + dependencies: + "call-bind" "^1.0.2" + "define-properties" "^1.1.3" + "es-abstract" "^1.18.0-next.2" + "has" "^1.0.3" + +"object.getownpropertydescriptors@^2.0.3", "object.getownpropertydescriptors@^2.1.0": + "integrity" "sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ==" + "resolved" "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz" + "version" "2.1.2" + dependencies: + "call-bind" "^1.0.2" + "define-properties" "^1.1.3" + "es-abstract" "^1.18.0-next.2" + +"object.pick@^1.3.0": + "integrity" "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=" + "resolved" "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz" + "version" "1.3.0" + dependencies: + "isobject" "^3.0.1" + +"object.values@^1.1.0", "object.values@^1.1.1": + "integrity" "sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag==" + "resolved" "https://registry.npmjs.org/object.values/-/object.values-1.1.2.tgz" + "version" "1.1.2" + dependencies: + "call-bind" "^1.0.0" + "define-properties" "^1.1.3" + "es-abstract" "^1.18.0-next.1" + "has" "^1.0.3" + +"obuf@^1.0.0", "obuf@^1.1.2": + "integrity" "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==" + "resolved" "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz" + "version" "1.1.2" + +"on-finished@~2.3.0": + "integrity" "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=" + "resolved" "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz" + "version" "2.3.0" + dependencies: + "ee-first" "1.1.1" + +"on-headers@~1.0.2": + "integrity" "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==" + "resolved" "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz" + "version" "1.0.2" + +"once@^1.3.0", "once@^1.3.1", "once@^1.4.0": + "integrity" "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=" + "resolved" "https://registry.npmjs.org/once/-/once-1.4.0.tgz" + "version" "1.4.0" + dependencies: + "wrappy" "1" + +"onetime@^5.1.0": + "integrity" "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==" + "resolved" "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz" + "version" "5.1.2" + dependencies: + "mimic-fn" "^2.1.0" + +"open@^7.0.2": + "integrity" "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==" + "resolved" "https://registry.npmjs.org/open/-/open-7.4.2.tgz" + "version" "7.4.2" + dependencies: + "is-docker" "^2.0.0" + "is-wsl" "^2.1.1" + +"opn@^5.5.0": + "integrity" "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==" + "resolved" "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz" + "version" "5.5.0" + dependencies: + "is-wsl" "^1.1.0" + +"optimize-css-assets-webpack-plugin@5.0.4": + "integrity" "sha512-wqd6FdI2a5/FdoiCNNkEvLeA//lHHfG24Ln2Xm2qqdIk4aOlsR18jwpyOihqQ8849W3qu2DX8fOYxpvTMj+93A==" + "resolved" "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-5.0.4.tgz" + "version" "5.0.4" + dependencies: + "cssnano" "^4.1.10" + "last-call-webpack-plugin" "^3.0.0" + +"optionator@^0.8.1": + "integrity" "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==" + "resolved" "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz" + "version" "0.8.3" + dependencies: + "deep-is" "~0.1.3" + "fast-levenshtein" "~2.0.6" + "levn" "~0.3.0" + "prelude-ls" "~1.1.2" + "type-check" "~0.3.2" + "word-wrap" "~1.2.3" + +"optionator@^0.9.1": + "integrity" "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==" + "resolved" "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz" + "version" "0.9.1" + dependencies: + "deep-is" "^0.1.3" + "fast-levenshtein" "^2.0.6" + "levn" "^0.4.1" + "prelude-ls" "^1.2.1" + "type-check" "^0.4.0" + "word-wrap" "^1.2.3" + +"original@^1.0.0": + "integrity" "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==" + "resolved" "https://registry.npmjs.org/original/-/original-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "url-parse" "^1.4.3" + +"os-browserify@^0.3.0": + "integrity" "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=" + "resolved" "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz" + "version" "0.3.0" + +"p-each-series@^2.1.0": + "integrity" "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==" + "resolved" "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz" + "version" "2.2.0" + +"p-finally@^1.0.0": + "integrity" "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=" + "resolved" "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz" + "version" "1.0.0" + +"p-limit@^1.1.0": + "integrity" "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==" + "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz" + "version" "1.3.0" + dependencies: + "p-try" "^1.0.0" + +"p-limit@^2.0.0", "p-limit@^2.2.0": + "integrity" "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==" + "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz" + "version" "2.3.0" + dependencies: + "p-try" "^2.0.0" + +"p-limit@^3.0.2": + "integrity" "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==" + "resolved" "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz" + "version" "3.1.0" + dependencies: + "yocto-queue" "^0.1.0" + +"p-locate@^2.0.0": + "integrity" "sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=" + "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "p-limit" "^1.1.0" + +"p-locate@^3.0.0": + "integrity" "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==" + "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "p-limit" "^2.0.0" + +"p-locate@^4.1.0": + "integrity" "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==" + "resolved" "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz" + "version" "4.1.0" + dependencies: + "p-limit" "^2.2.0" + +"p-map@^2.0.0": + "integrity" "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" + "resolved" "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz" + "version" "2.1.0" + +"p-map@^4.0.0": + "integrity" "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==" + "resolved" "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "aggregate-error" "^3.0.0" + +"p-retry@^3.0.1": + "integrity" "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==" + "resolved" "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz" + "version" "3.0.1" + dependencies: + "retry" "^0.12.0" + +"p-try@^1.0.0": + "integrity" "sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=" + "resolved" "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz" + "version" "1.0.0" + +"p-try@^2.0.0": + "integrity" "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" + "resolved" "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz" + "version" "2.2.0" + +"pako@~1.0.5": + "integrity" "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + "resolved" "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz" + "version" "1.0.11" + +"parallel-transform@^1.1.0": + "integrity" "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==" + "resolved" "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz" + "version" "1.2.0" + dependencies: + "cyclist" "^1.0.1" + "inherits" "^2.0.3" + "readable-stream" "^2.1.5" + +"param-case@^3.0.3": + "integrity" "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==" + "resolved" "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz" + "version" "3.0.4" + dependencies: + "dot-case" "^3.0.4" + "tslib" "^2.0.3" + +"parent-module@^1.0.0": + "integrity" "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==" + "resolved" "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "callsites" "^3.0.0" + +"parse-asn1@^5.0.0", "parse-asn1@^5.1.5": + "integrity" "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==" + "resolved" "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz" + "version" "5.1.6" + dependencies: + "asn1.js" "^5.2.0" + "browserify-aes" "^1.0.0" + "evp_bytestokey" "^1.0.0" + "pbkdf2" "^3.0.3" + "safe-buffer" "^5.1.1" + +"parse-json@^2.2.0": + "integrity" "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=" + "resolved" "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz" + "version" "2.2.0" + dependencies: + "error-ex" "^1.2.0" + +"parse-json@^4.0.0": + "integrity" "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=" + "resolved" "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "error-ex" "^1.3.1" + "json-parse-better-errors" "^1.0.1" + +"parse-json@^5.0.0": + "integrity" "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==" + "resolved" "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz" + "version" "5.2.0" + dependencies: + "@babel/code-frame" "^7.0.0" + "error-ex" "^1.3.1" + "json-parse-even-better-errors" "^2.3.0" + "lines-and-columns" "^1.1.6" + +"parse5@5.1.1": + "integrity" "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==" + "resolved" "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz" + "version" "5.1.1" + +"parseurl@~1.3.2", "parseurl@~1.3.3": + "integrity" "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==" + "resolved" "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz" + "version" "1.3.3" + +"pascal-case@^3.1.2": + "integrity" "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==" + "resolved" "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz" + "version" "3.1.2" + dependencies: + "no-case" "^3.0.4" + "tslib" "^2.0.3" + +"pascalcase@^0.1.1": + "integrity" "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=" + "resolved" "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz" + "version" "0.1.1" + +"path-browserify@0.0.1": + "integrity" "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" + "resolved" "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz" + "version" "0.0.1" + +"path-dirname@^1.0.0": + "integrity" "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=" + "resolved" "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz" + "version" "1.0.2" + +"path-exists@^3.0.0": + "integrity" "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" + "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz" + "version" "3.0.0" + +"path-exists@^4.0.0": + "integrity" "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" + "resolved" "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz" + "version" "4.0.0" + +"path-is-absolute@^1.0.0": + "integrity" "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" + "resolved" "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz" + "version" "1.0.1" + +"path-is-inside@^1.0.2": + "integrity" "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" + "resolved" "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz" + "version" "1.0.2" + +"path-key@^2.0.0", "path-key@^2.0.1": + "integrity" "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=" + "resolved" "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz" + "version" "2.0.1" + +"path-key@^3.0.0": + "integrity" "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + "resolved" "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" + "version" "3.1.1" + +"path-key@^3.1.0": + "integrity" "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==" + "resolved" "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz" + "version" "3.1.1" + +"path-parse@^1.0.6": + "integrity" "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==" + "resolved" "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz" + "version" "1.0.6" + +"path-to-regexp@^1.7.0": + "integrity" "sha512-n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA==" + "resolved" "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz" + "version" "1.8.0" + dependencies: + "isarray" "0.0.1" + +"path-to-regexp@0.1.7": + "integrity" "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=" + "resolved" "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz" + "version" "0.1.7" + +"path-type@^2.0.0": + "integrity" "sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM=" + "resolved" "https://registry.npmjs.org/path-type/-/path-type-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "pify" "^2.0.0" + +"path-type@^4.0.0": + "integrity" "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==" + "resolved" "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz" + "version" "4.0.0" + +"pbkdf2@^3.0.3": + "integrity" "sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg==" + "resolved" "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.1.tgz" + "version" "3.1.1" + dependencies: + "create-hash" "^1.1.2" + "create-hmac" "^1.1.4" + "ripemd160" "^2.0.1" + "safe-buffer" "^5.0.1" + "sha.js" "^2.4.8" + +"performance-now@^2.1.0": + "integrity" "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" + "resolved" "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz" + "version" "2.1.0" + +"picomatch@^2.0.4", "picomatch@^2.0.5", "picomatch@^2.2.1", "picomatch@^2.2.2": + "integrity" "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==" + "resolved" "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz" + "version" "2.2.2" + +"pify@^2.0.0": + "integrity" "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" + "resolved" "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz" + "version" "2.3.0" + +"pify@^4.0.1": + "integrity" "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==" + "resolved" "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz" + "version" "4.0.1" + +"pinkie-promise@^2.0.0": + "integrity" "sha1-ITXW36ejWMBprJsXh3YogihFD/o=" + "resolved" "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "pinkie" "^2.0.0" + +"pinkie@^2.0.0": + "integrity" "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=" + "resolved" "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz" + "version" "2.0.4" + +"pirates@^4.0.1": + "integrity" "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==" + "resolved" "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "node-modules-regexp" "^1.0.0" + +"pkg-dir@^2.0.0": + "integrity" "sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=" + "resolved" "https://registry.npmjs.org/pkg-dir/-/pkg-dir-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "find-up" "^2.1.0" + +"pkg-dir@^3.0.0": + "integrity" "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==" + "resolved" "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "find-up" "^3.0.0" + +"pkg-dir@^4.1.0": + "integrity" "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" + "resolved" "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz" + "version" "4.2.0" + dependencies: + "find-up" "^4.0.0" + +"pkg-dir@^4.2.0": + "integrity" "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==" + "resolved" "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz" + "version" "4.2.0" + dependencies: + "find-up" "^4.0.0" + +"pkg-up@3.1.0": + "integrity" "sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==" + "resolved" "https://registry.npmjs.org/pkg-up/-/pkg-up-3.1.0.tgz" + "version" "3.1.0" + dependencies: + "find-up" "^3.0.0" + +"pnp-webpack-plugin@1.6.4": + "integrity" "sha512-7Wjy+9E3WwLOEL30D+m8TSTF7qJJUJLONBnwQp0518siuMxUQUbgZwssaFX+QKlZkjHZcw/IpZCt/H0srrntSg==" + "resolved" "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.6.4.tgz" + "version" "1.6.4" + dependencies: + "ts-pnp" "^1.1.6" + +"popper.js@1.16.1-lts": + "integrity" "sha512-Kjw8nKRl1m+VrSFCoVGPph93W/qrSO7ZkqPpTf7F4bk/sqcfWK019dWBUpE/fBOsOQY1dks/Bmcbfn1heM/IsA==" + "resolved" "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1-lts.tgz" + "version" "1.16.1-lts" + +"portfinder@^1.0.26": + "integrity" "sha512-Se+2isanIcEqf2XMHjyUKskczxbPH7dQnlMjXX6+dybayyHvAf/TCgyMRlzf/B6QDhAEFOGes0pzRo3by4AbMA==" + "resolved" "https://registry.npmjs.org/portfinder/-/portfinder-1.0.28.tgz" + "version" "1.0.28" + dependencies: + "async" "^2.6.2" + "debug" "^3.1.1" + "mkdirp" "^0.5.5" + +"posix-character-classes@^0.1.0": + "integrity" "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=" + "resolved" "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz" + "version" "0.1.1" + +"postcss-attribute-case-insensitive@^4.0.1": + "integrity" "sha512-clkFxk/9pcdb4Vkn0hAHq3YnxBQ2p0CGD1dy24jN+reBck+EWxMbxSUqN4Yj7t0w8csl87K6p0gxBe1utkJsYA==" + "resolved" "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "postcss" "^7.0.2" + "postcss-selector-parser" "^6.0.2" + +"postcss-browser-comments@^3.0.0": + "integrity" "sha512-qfVjLfq7HFd2e0HW4s1dvU8X080OZdG46fFbIBFjW7US7YPDcWfRvdElvwMJr2LI6hMmD+7LnH2HcmXTs+uOig==" + "resolved" "https://registry.npmjs.org/postcss-browser-comments/-/postcss-browser-comments-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "postcss" "^7" + +"postcss-calc@^7.0.1": + "integrity" "sha512-1tKHutbGtLtEZF6PT4JSihCHfIVldU72mZ8SdZHIYriIZ9fh9k9aWSppaT8rHsyI3dX+KSR+W+Ix9BMY3AODrg==" + "resolved" "https://registry.npmjs.org/postcss-calc/-/postcss-calc-7.0.5.tgz" + "version" "7.0.5" + dependencies: + "postcss" "^7.0.27" + "postcss-selector-parser" "^6.0.2" + "postcss-value-parser" "^4.0.2" + +"postcss-color-functional-notation@^2.0.1": + "integrity" "sha512-ZBARCypjEDofW4P6IdPVTLhDNXPRn8T2s1zHbZidW6rPaaZvcnCS2soYFIQJrMZSxiePJ2XIYTlcb2ztr/eT2g==" + "resolved" "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "postcss" "^7.0.2" + "postcss-values-parser" "^2.0.0" + +"postcss-color-gray@^5.0.0": + "integrity" "sha512-q6BuRnAGKM/ZRpfDascZlIZPjvwsRye7UDNalqVz3s7GDxMtqPY6+Q871liNxsonUw8oC61OG+PSaysYpl1bnw==" + "resolved" "https://registry.npmjs.org/postcss-color-gray/-/postcss-color-gray-5.0.0.tgz" + "version" "5.0.0" + dependencies: + "@csstools/convert-colors" "^1.4.0" + "postcss" "^7.0.5" + "postcss-values-parser" "^2.0.0" + +"postcss-color-hex-alpha@^5.0.3": + "integrity" "sha512-PF4GDel8q3kkreVXKLAGNpHKilXsZ6xuu+mOQMHWHLPNyjiUBOr75sp5ZKJfmv1MCus5/DWUGcK9hm6qHEnXYw==" + "resolved" "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-5.0.3.tgz" + "version" "5.0.3" + dependencies: + "postcss" "^7.0.14" + "postcss-values-parser" "^2.0.1" + +"postcss-color-mod-function@^3.0.3": + "integrity" "sha512-YP4VG+xufxaVtzV6ZmhEtc+/aTXH3d0JLpnYfxqTvwZPbJhWqp8bSY3nfNzNRFLgB4XSaBA82OE4VjOOKpCdVQ==" + "resolved" "https://registry.npmjs.org/postcss-color-mod-function/-/postcss-color-mod-function-3.0.3.tgz" + "version" "3.0.3" + dependencies: + "@csstools/convert-colors" "^1.4.0" + "postcss" "^7.0.2" + "postcss-values-parser" "^2.0.0" + +"postcss-color-rebeccapurple@^4.0.1": + "integrity" "sha512-aAe3OhkS6qJXBbqzvZth2Au4V3KieR5sRQ4ptb2b2O8wgvB3SJBsdG+jsn2BZbbwekDG8nTfcCNKcSfe/lEy8g==" + "resolved" "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "postcss" "^7.0.2" + "postcss-values-parser" "^2.0.0" + +"postcss-colormin@^4.0.3": + "integrity" "sha512-WyQFAdDZpExQh32j0U0feWisZ0dmOtPl44qYmJKkq9xFWY3p+4qnRzCHeNrkeRhwPHz9bQ3mo0/yVkaply0MNw==" + "resolved" "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz" + "version" "4.0.3" + dependencies: + "browserslist" "^4.0.0" + "color" "^3.0.0" + "has" "^1.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-convert-values@^4.0.1": + "integrity" "sha512-Kisdo1y77KUC0Jmn0OXU/COOJbzM8cImvw1ZFsBgBgMgb1iL23Zs/LXRe3r+EZqM3vGYKdQ2YJVQ5VkJI+zEJQ==" + "resolved" "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-custom-media@^7.0.8": + "integrity" "sha512-c9s5iX0Ge15o00HKbuRuTqNndsJUbaXdiNsksnVH8H4gdc+zbLzr/UasOwNG6CTDpLFekVY4672eWdiiWu2GUg==" + "resolved" "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-7.0.8.tgz" + "version" "7.0.8" + dependencies: + "postcss" "^7.0.14" + +"postcss-custom-properties@^8.0.11": + "integrity" "sha512-nm+o0eLdYqdnJ5abAJeXp4CEU1c1k+eB2yMCvhgzsds/e0umabFrN6HoTy/8Q4K5ilxERdl/JD1LO5ANoYBeMA==" + "resolved" "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-8.0.11.tgz" + "version" "8.0.11" + dependencies: + "postcss" "^7.0.17" + "postcss-values-parser" "^2.0.1" + +"postcss-custom-selectors@^5.1.2": + "integrity" "sha512-DSGDhqinCqXqlS4R7KGxL1OSycd1lydugJ1ky4iRXPHdBRiozyMHrdu0H3o7qNOCiZwySZTUI5MV0T8QhCLu+w==" + "resolved" "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-5.1.2.tgz" + "version" "5.1.2" + dependencies: + "postcss" "^7.0.2" + "postcss-selector-parser" "^5.0.0-rc.3" + +"postcss-dir-pseudo-class@^5.0.0": + "integrity" "sha512-3pm4oq8HYWMZePJY+5ANriPs3P07q+LW6FAdTlkFH2XqDdP4HeeJYMOzn0HYLhRSjBO3fhiqSwwU9xEULSrPgw==" + "resolved" "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-5.0.0.tgz" + "version" "5.0.0" + dependencies: + "postcss" "^7.0.2" + "postcss-selector-parser" "^5.0.0-rc.3" + +"postcss-discard-comments@^4.0.2": + "integrity" "sha512-RJutN259iuRf3IW7GZyLM5Sw4GLTOH8FmsXBnv8Ab/Tc2k4SR4qbV4DNbyyY4+Sjo362SyDmW2DQ7lBSChrpkg==" + "resolved" "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "postcss" "^7.0.0" + +"postcss-discard-duplicates@^4.0.2": + "integrity" "sha512-ZNQfR1gPNAiXZhgENFfEglF93pciw0WxMkJeVmw8eF+JZBbMD7jp6C67GqJAXVZP2BWbOztKfbsdmMp/k8c6oQ==" + "resolved" "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "postcss" "^7.0.0" + +"postcss-discard-empty@^4.0.1": + "integrity" "sha512-B9miTzbznhDjTfjvipfHoqbWKwd0Mj+/fL5s1QOz06wufguil+Xheo4XpOnc4NqKYBCNqqEzgPv2aPBIJLox0w==" + "resolved" "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "postcss" "^7.0.0" + +"postcss-discard-overridden@^4.0.1": + "integrity" "sha512-IYY2bEDD7g1XM1IDEsUT4//iEYCxAmP5oDSFMVU/JVvT7gh+l4fmjciLqGgwjdWpQIdb0Che2VX00QObS5+cTg==" + "resolved" "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "postcss" "^7.0.0" + +"postcss-double-position-gradients@^1.0.0": + "integrity" "sha512-G+nV8EnQq25fOI8CH/B6krEohGWnF5+3A6H/+JEpOncu5dCnkS1QQ6+ct3Jkaepw1NGVqqOZH6lqrm244mCftA==" + "resolved" "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "postcss" "^7.0.5" + "postcss-values-parser" "^2.0.0" + +"postcss-env-function@^2.0.2": + "integrity" "sha512-rwac4BuZlITeUbiBq60h/xbLzXY43qOsIErngWa4l7Mt+RaSkT7QBjXVGTcBHupykkblHMDrBFh30zchYPaOUw==" + "resolved" "https://registry.npmjs.org/postcss-env-function/-/postcss-env-function-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "postcss" "^7.0.2" + "postcss-values-parser" "^2.0.0" + +"postcss-flexbugs-fixes@4.2.1": + "integrity" "sha512-9SiofaZ9CWpQWxOwRh1b/r85KD5y7GgvsNt1056k6OYLvWUun0czCvogfJgylC22uJTwW1KzY3Gz65NZRlvoiQ==" + "resolved" "https://registry.npmjs.org/postcss-flexbugs-fixes/-/postcss-flexbugs-fixes-4.2.1.tgz" + "version" "4.2.1" + dependencies: + "postcss" "^7.0.26" + +"postcss-focus-visible@^4.0.0": + "integrity" "sha512-Z5CkWBw0+idJHSV6+Bgf2peDOFf/x4o+vX/pwcNYrWpXFrSfTkQ3JQ1ojrq9yS+upnAlNRHeg8uEwFTgorjI8g==" + "resolved" "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "postcss" "^7.0.2" + +"postcss-focus-within@^3.0.0": + "integrity" "sha512-W0APui8jQeBKbCGZudW37EeMCjDeVxKgiYfIIEo8Bdh5SpB9sxds/Iq8SEuzS0Q4YFOlG7EPFulbbxujpkrV2w==" + "resolved" "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "postcss" "^7.0.2" + +"postcss-font-variant@^4.0.0": + "integrity" "sha512-I3ADQSTNtLTTd8uxZhtSOrTCQ9G4qUVKPjHiDk0bV75QSxXjVWiJVJ2VLdspGUi9fbW9BcjKJoRvxAH1pckqmA==" + "resolved" "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "postcss" "^7.0.2" + +"postcss-gap-properties@^2.0.0": + "integrity" "sha512-QZSqDaMgXCHuHTEzMsS2KfVDOq7ZFiknSpkrPJY6jmxbugUPTuSzs/vuE5I3zv0WAS+3vhrlqhijiprnuQfzmg==" + "resolved" "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "postcss" "^7.0.2" + +"postcss-image-set-function@^3.0.1": + "integrity" "sha512-oPTcFFip5LZy8Y/whto91L9xdRHCWEMs3e1MdJxhgt4jy2WYXfhkng59fH5qLXSCPN8k4n94p1Czrfe5IOkKUw==" + "resolved" "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-3.0.1.tgz" + "version" "3.0.1" + dependencies: + "postcss" "^7.0.2" + "postcss-values-parser" "^2.0.0" + +"postcss-initial@^3.0.0": + "integrity" "sha512-ugA2wKonC0xeNHgirR4D3VWHs2JcU08WAi1KFLVcnb7IN89phID6Qtg2RIctWbnvp1TM2BOmDtX8GGLCKdR8YA==" + "resolved" "https://registry.npmjs.org/postcss-initial/-/postcss-initial-3.0.2.tgz" + "version" "3.0.2" + dependencies: + "lodash.template" "^4.5.0" + "postcss" "^7.0.2" + +"postcss-lab-function@^2.0.1": + "integrity" "sha512-whLy1IeZKY+3fYdqQFuDBf8Auw+qFuVnChWjmxm/UhHWqNHZx+B99EwxTvGYmUBqe3Fjxs4L1BoZTJmPu6usVg==" + "resolved" "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "@csstools/convert-colors" "^1.4.0" + "postcss" "^7.0.2" + "postcss-values-parser" "^2.0.0" + +"postcss-load-config@^2.0.0": + "integrity" "sha512-/rDeGV6vMUo3mwJZmeHfEDvwnTKKqQ0S7OHUi/kJvvtx3aWtyWG2/0ZWnzCt2keEclwN6Tf0DST2v9kITdOKYw==" + "resolved" "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-2.1.2.tgz" + "version" "2.1.2" + dependencies: + "cosmiconfig" "^5.0.0" + "import-cwd" "^2.0.0" + +"postcss-loader@3.0.0": + "integrity" "sha512-cLWoDEY5OwHcAjDnkyRQzAXfs2jrKjXpO/HQFcc5b5u/r7aa471wdmChmwfnv7x2u840iat/wi0lQ5nbRgSkUA==" + "resolved" "https://registry.npmjs.org/postcss-loader/-/postcss-loader-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "loader-utils" "^1.1.0" + "postcss" "^7.0.0" + "postcss-load-config" "^2.0.0" + "schema-utils" "^1.0.0" + +"postcss-logical@^3.0.0": + "integrity" "sha512-1SUKdJc2vuMOmeItqGuNaC+N8MzBWFWEkAnRnLpFYj1tGGa7NqyVBujfRtgNa2gXR+6RkGUiB2O5Vmh7E2RmiA==" + "resolved" "https://registry.npmjs.org/postcss-logical/-/postcss-logical-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "postcss" "^7.0.2" + +"postcss-media-minmax@^4.0.0": + "integrity" "sha512-fo9moya6qyxsjbFAYl97qKO9gyre3qvbMnkOZeZwlsW6XYFsvs2DMGDlchVLfAd8LHPZDxivu/+qW2SMQeTHBw==" + "resolved" "https://registry.npmjs.org/postcss-media-minmax/-/postcss-media-minmax-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "postcss" "^7.0.2" + +"postcss-merge-longhand@^4.0.11": + "integrity" "sha512-alx/zmoeXvJjp7L4mxEMjh8lxVlDFX1gqWHzaaQewwMZiVhLo42TEClKaeHbRf6J7j82ZOdTJ808RtN0ZOZwvw==" + "resolved" "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz" + "version" "4.0.11" + dependencies: + "css-color-names" "0.0.4" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + "stylehacks" "^4.0.0" + +"postcss-merge-rules@^4.0.3": + "integrity" "sha512-U7e3r1SbvYzO0Jr3UT/zKBVgYYyhAz0aitvGIYOYK5CPmkNih+WDSsS5tvPrJ8YMQYlEMvsZIiqmn7HdFUaeEQ==" + "resolved" "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz" + "version" "4.0.3" + dependencies: + "browserslist" "^4.0.0" + "caniuse-api" "^3.0.0" + "cssnano-util-same-parent" "^4.0.0" + "postcss" "^7.0.0" + "postcss-selector-parser" "^3.0.0" + "vendors" "^1.0.0" + +"postcss-minify-font-values@^4.0.2": + "integrity" "sha512-j85oO6OnRU9zPf04+PZv1LYIYOprWm6IA6zkXkrJXyRveDEuQggG6tvoy8ir8ZwjLxLuGfNkCZEQG7zan+Hbtg==" + "resolved" "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-minify-gradients@^4.0.2": + "integrity" "sha512-qKPfwlONdcf/AndP1U8SJ/uzIJtowHlMaSioKzebAXSG4iJthlWC9iSWznQcX4f66gIWX44RSA841HTHj3wK+Q==" + "resolved" "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "cssnano-util-get-arguments" "^4.0.0" + "is-color-stop" "^1.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-minify-params@^4.0.2": + "integrity" "sha512-G7eWyzEx0xL4/wiBBJxJOz48zAKV2WG3iZOqVhPet/9geefm/Px5uo1fzlHu+DOjT+m0Mmiz3jkQzVHe6wxAWg==" + "resolved" "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "alphanum-sort" "^1.0.0" + "browserslist" "^4.0.0" + "cssnano-util-get-arguments" "^4.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + "uniqs" "^2.0.0" + +"postcss-minify-selectors@^4.0.2": + "integrity" "sha512-D5S1iViljXBj9kflQo4YutWnJmwm8VvIsU1GeXJGiG9j8CIg9zs4voPMdQDUmIxetUOh60VilsNzCiAFTOqu3g==" + "resolved" "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "alphanum-sort" "^1.0.0" + "has" "^1.0.0" + "postcss" "^7.0.0" + "postcss-selector-parser" "^3.0.0" + +"postcss-modules-extract-imports@^2.0.0": + "integrity" "sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ==" + "resolved" "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "postcss" "^7.0.5" + +"postcss-modules-local-by-default@^3.0.3": + "integrity" "sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw==" + "resolved" "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz" + "version" "3.0.3" + dependencies: + "icss-utils" "^4.1.1" + "postcss" "^7.0.32" + "postcss-selector-parser" "^6.0.2" + "postcss-value-parser" "^4.1.0" + +"postcss-modules-scope@^2.2.0": + "integrity" "sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ==" + "resolved" "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz" + "version" "2.2.0" + dependencies: + "postcss" "^7.0.6" + "postcss-selector-parser" "^6.0.0" + +"postcss-modules-values@^3.0.0": + "integrity" "sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg==" + "resolved" "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "icss-utils" "^4.0.0" + "postcss" "^7.0.6" + +"postcss-nesting@^7.0.0": + "integrity" "sha512-FrorPb0H3nuVq0Sff7W2rnc3SmIcruVC6YwpcS+k687VxyxO33iE1amna7wHuRVzM8vfiYofXSBHNAZ3QhLvYg==" + "resolved" "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-7.0.1.tgz" + "version" "7.0.1" + dependencies: + "postcss" "^7.0.2" + +"postcss-normalize-charset@^4.0.1": + "integrity" "sha512-gMXCrrlWh6G27U0hF3vNvR3w8I1s2wOBILvA87iNXaPvSNo5uZAMYsZG7XjCUf1eVxuPfyL4TJ7++SGZLc9A3g==" + "resolved" "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "postcss" "^7.0.0" + +"postcss-normalize-display-values@^4.0.2": + "integrity" "sha512-3F2jcsaMW7+VtRMAqf/3m4cPFhPD3EFRgNs18u+k3lTJJlVe7d0YPO+bnwqo2xg8YiRpDXJI2u8A0wqJxMsQuQ==" + "resolved" "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "cssnano-util-get-match" "^4.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-normalize-positions@^4.0.2": + "integrity" "sha512-Dlf3/9AxpxE+NF1fJxYDeggi5WwV35MXGFnnoccP/9qDtFrTArZ0D0R+iKcg5WsUd8nUYMIl8yXDCtcrT8JrdA==" + "resolved" "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "cssnano-util-get-arguments" "^4.0.0" + "has" "^1.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-normalize-repeat-style@^4.0.2": + "integrity" "sha512-qvigdYYMpSuoFs3Is/f5nHdRLJN/ITA7huIoCyqqENJe9PvPmLhNLMu7QTjPdtnVf6OcYYO5SHonx4+fbJE1+Q==" + "resolved" "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "cssnano-util-get-arguments" "^4.0.0" + "cssnano-util-get-match" "^4.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-normalize-string@^4.0.2": + "integrity" "sha512-RrERod97Dnwqq49WNz8qo66ps0swYZDSb6rM57kN2J+aoyEAJfZ6bMx0sx/F9TIEX0xthPGCmeyiam/jXif0eA==" + "resolved" "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "has" "^1.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-normalize-timing-functions@^4.0.2": + "integrity" "sha512-acwJY95edP762e++00Ehq9L4sZCEcOPyaHwoaFOhIwWCDfik6YvqsYNxckee65JHLKzuNSSmAdxwD2Cud1Z54A==" + "resolved" "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "cssnano-util-get-match" "^4.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-normalize-unicode@^4.0.1": + "integrity" "sha512-od18Uq2wCYn+vZ/qCOeutvHjB5jm57ToxRaMeNuf0nWVHaP9Hua56QyMF6fs/4FSUnVIw0CBPsU0K4LnBPwYwg==" + "resolved" "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "browserslist" "^4.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-normalize-url@^4.0.1": + "integrity" "sha512-p5oVaF4+IHwu7VpMan/SSpmpYxcJMtkGppYf0VbdH5B6hN8YNmVyJLuY9FmLQTzY3fag5ESUUHDqM+heid0UVA==" + "resolved" "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "is-absolute-url" "^2.0.0" + "normalize-url" "^3.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-normalize-whitespace@^4.0.2": + "integrity" "sha512-tO8QIgrsI3p95r8fyqKV+ufKlSHh9hMJqACqbv2XknufqEDhDvbguXGBBqxw9nsQoXWf0qOqppziKJKHMD4GtA==" + "resolved" "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-normalize@8.0.1": + "integrity" "sha512-rt9JMS/m9FHIRroDDBGSMsyW1c0fkvOJPy62ggxSHUldJO7B195TqFMqIf+lY5ezpDcYOV4j86aUp3/XbxzCCQ==" + "resolved" "https://registry.npmjs.org/postcss-normalize/-/postcss-normalize-8.0.1.tgz" + "version" "8.0.1" + dependencies: + "@csstools/normalize.css" "^10.1.0" + "browserslist" "^4.6.2" + "postcss" "^7.0.17" + "postcss-browser-comments" "^3.0.0" + "sanitize.css" "^10.0.0" + +"postcss-ordered-values@^4.1.2": + "integrity" "sha512-2fCObh5UanxvSxeXrtLtlwVThBvHn6MQcu4ksNT2tsaV2Fg76R2CV98W7wNSlX+5/pFwEyaDwKLLoEV7uRybAw==" + "resolved" "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz" + "version" "4.1.2" + dependencies: + "cssnano-util-get-arguments" "^4.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-overflow-shorthand@^2.0.0": + "integrity" "sha512-aK0fHc9CBNx8jbzMYhshZcEv8LtYnBIRYQD5i7w/K/wS9c2+0NSR6B3OVMu5y0hBHYLcMGjfU+dmWYNKH0I85g==" + "resolved" "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "postcss" "^7.0.2" + +"postcss-page-break@^2.0.0": + "integrity" "sha512-tkpTSrLpfLfD9HvgOlJuigLuk39wVTbbd8RKcy8/ugV2bNBUW3xU+AIqyxhDrQr1VUj1RmyJrBn1YWrqUm9zAQ==" + "resolved" "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "postcss" "^7.0.2" + +"postcss-place@^4.0.1": + "integrity" "sha512-Zb6byCSLkgRKLODj/5mQugyuj9bvAAw9LqJJjgwz5cYryGeXfFZfSXoP1UfveccFmeq0b/2xxwcTEVScnqGxBg==" + "resolved" "https://registry.npmjs.org/postcss-place/-/postcss-place-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "postcss" "^7.0.2" + "postcss-values-parser" "^2.0.0" + +"postcss-preset-env@6.7.0": + "integrity" "sha512-eU4/K5xzSFwUFJ8hTdTQzo2RBLbDVt83QZrAvI07TULOkmyQlnYlpwep+2yIK+K+0KlZO4BvFcleOCCcUtwchg==" + "resolved" "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-6.7.0.tgz" + "version" "6.7.0" + dependencies: + "autoprefixer" "^9.6.1" + "browserslist" "^4.6.4" + "caniuse-lite" "^1.0.30000981" + "css-blank-pseudo" "^0.1.4" + "css-has-pseudo" "^0.10.0" + "css-prefers-color-scheme" "^3.1.1" + "cssdb" "^4.4.0" + "postcss" "^7.0.17" + "postcss-attribute-case-insensitive" "^4.0.1" + "postcss-color-functional-notation" "^2.0.1" + "postcss-color-gray" "^5.0.0" + "postcss-color-hex-alpha" "^5.0.3" + "postcss-color-mod-function" "^3.0.3" + "postcss-color-rebeccapurple" "^4.0.1" + "postcss-custom-media" "^7.0.8" + "postcss-custom-properties" "^8.0.11" + "postcss-custom-selectors" "^5.1.2" + "postcss-dir-pseudo-class" "^5.0.0" + "postcss-double-position-gradients" "^1.0.0" + "postcss-env-function" "^2.0.2" + "postcss-focus-visible" "^4.0.0" + "postcss-focus-within" "^3.0.0" + "postcss-font-variant" "^4.0.0" + "postcss-gap-properties" "^2.0.0" + "postcss-image-set-function" "^3.0.1" + "postcss-initial" "^3.0.0" + "postcss-lab-function" "^2.0.1" + "postcss-logical" "^3.0.0" + "postcss-media-minmax" "^4.0.0" + "postcss-nesting" "^7.0.0" + "postcss-overflow-shorthand" "^2.0.0" + "postcss-page-break" "^2.0.0" + "postcss-place" "^4.0.1" + "postcss-pseudo-class-any-link" "^6.0.0" + "postcss-replace-overflow-wrap" "^3.0.0" + "postcss-selector-matches" "^4.0.0" + "postcss-selector-not" "^4.0.0" + +"postcss-pseudo-class-any-link@^6.0.0": + "integrity" "sha512-lgXW9sYJdLqtmw23otOzrtbDXofUdfYzNm4PIpNE322/swES3VU9XlXHeJS46zT2onFO7V1QFdD4Q9LiZj8mew==" + "resolved" "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-6.0.0.tgz" + "version" "6.0.0" + dependencies: + "postcss" "^7.0.2" + "postcss-selector-parser" "^5.0.0-rc.3" + +"postcss-reduce-initial@^4.0.3": + "integrity" "sha512-gKWmR5aUulSjbzOfD9AlJiHCGH6AEVLaM0AV+aSioxUDd16qXP1PCh8d1/BGVvpdWn8k/HiK7n6TjeoXN1F7DA==" + "resolved" "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz" + "version" "4.0.3" + dependencies: + "browserslist" "^4.0.0" + "caniuse-api" "^3.0.0" + "has" "^1.0.0" + "postcss" "^7.0.0" + +"postcss-reduce-transforms@^4.0.2": + "integrity" "sha512-EEVig1Q2QJ4ELpJXMZR8Vt5DQx8/mo+dGWSR7vWXqcob2gQLyQGsionYcGKATXvQzMPn6DSN1vTN7yFximdIAg==" + "resolved" "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "cssnano-util-get-match" "^4.0.0" + "has" "^1.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + +"postcss-replace-overflow-wrap@^3.0.0": + "integrity" "sha512-2T5hcEHArDT6X9+9dVSPQdo7QHzG4XKclFT8rU5TzJPDN7RIRTbO9c4drUISOVemLj03aezStHCR2AIcr8XLpw==" + "resolved" "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "postcss" "^7.0.2" + +"postcss-safe-parser@5.0.2": + "integrity" "sha512-jDUfCPJbKOABhwpUKcqCVbbXiloe/QXMcbJ6Iipf3sDIihEzTqRCeMBfRaOHxhBuTYqtASrI1KJWxzztZU4qUQ==" + "resolved" "https://registry.npmjs.org/postcss-safe-parser/-/postcss-safe-parser-5.0.2.tgz" + "version" "5.0.2" + dependencies: + "postcss" "^8.1.0" + +"postcss-selector-matches@^4.0.0": + "integrity" "sha512-LgsHwQR/EsRYSqlwdGzeaPKVT0Ml7LAT6E75T8W8xLJY62CE4S/l03BWIt3jT8Taq22kXP08s2SfTSzaraoPww==" + "resolved" "https://registry.npmjs.org/postcss-selector-matches/-/postcss-selector-matches-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "balanced-match" "^1.0.0" + "postcss" "^7.0.2" + +"postcss-selector-not@^4.0.0": + "integrity" "sha512-YolvBgInEK5/79C+bdFMyzqTg6pkYqDbzZIST/PDMqa/o3qtXenD05apBG2jLgT0/BQ77d4U2UK12jWpilqMAQ==" + "resolved" "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "balanced-match" "^1.0.0" + "postcss" "^7.0.2" + +"postcss-selector-parser@^3.0.0": + "integrity" "sha512-h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA==" + "resolved" "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz" + "version" "3.1.2" + dependencies: + "dot-prop" "^5.2.0" + "indexes-of" "^1.0.1" + "uniq" "^1.0.1" + +"postcss-selector-parser@^5.0.0-rc.3", "postcss-selector-parser@^5.0.0-rc.4": + "integrity" "sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==" + "resolved" "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz" + "version" "5.0.0" + dependencies: + "cssesc" "^2.0.0" + "indexes-of" "^1.0.1" + "uniq" "^1.0.1" + +"postcss-selector-parser@^6.0.0": + "integrity" "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==" + "resolved" "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz" + "version" "6.0.4" + dependencies: + "cssesc" "^3.0.0" + "indexes-of" "^1.0.1" + "uniq" "^1.0.1" + "util-deprecate" "^1.0.2" + +"postcss-selector-parser@^6.0.2": + "integrity" "sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw==" + "resolved" "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz" + "version" "6.0.4" + dependencies: + "cssesc" "^3.0.0" + "indexes-of" "^1.0.1" + "uniq" "^1.0.1" + "util-deprecate" "^1.0.2" + +"postcss-svgo@^4.0.2": + "integrity" "sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw==" + "resolved" "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "is-svg" "^3.0.0" + "postcss" "^7.0.0" + "postcss-value-parser" "^3.0.0" + "svgo" "^1.0.0" + +"postcss-unique-selectors@^4.0.1": + "integrity" "sha512-+JanVaryLo9QwZjKrmJgkI4Fn8SBgRO6WXQBJi7KiAVPlmxikB5Jzc4EvXMT2H0/m0RjrVVm9rGNhZddm/8Spg==" + "resolved" "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "alphanum-sort" "^1.0.0" + "postcss" "^7.0.0" + "uniqs" "^2.0.0" + +"postcss-value-parser@^3.0.0": + "integrity" "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==" + "resolved" "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz" + "version" "3.3.1" + +"postcss-value-parser@^4.0.2": + "integrity" "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" + "resolved" "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz" + "version" "4.1.0" + +"postcss-value-parser@^4.1.0": + "integrity" "sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ==" + "resolved" "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz" + "version" "4.1.0" + +"postcss-values-parser@^2.0.0", "postcss-values-parser@^2.0.1": + "integrity" "sha512-2tLuBsA6P4rYTNKCXYG/71C7j1pU6pK503suYOmn4xYrQIzW+opD+7FAFNuGSdZC/3Qfy334QbeMu7MEb8gOxg==" + "resolved" "https://registry.npmjs.org/postcss-values-parser/-/postcss-values-parser-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "flatten" "^1.0.2" + "indexes-of" "^1.0.1" + "uniq" "^1.0.1" + +"postcss@^7", "postcss@^7.0.0", "postcss@^7.0.1", "postcss@^7.0.14", "postcss@^7.0.17", "postcss@^7.0.2", "postcss@^7.0.26", "postcss@^7.0.27", "postcss@^7.0.32", "postcss@^7.0.5", "postcss@^7.0.6": + "integrity" "sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==" + "resolved" "https://registry.npmjs.org/postcss/-/postcss-7.0.35.tgz" + "version" "7.0.35" + dependencies: + "chalk" "^2.4.2" + "source-map" "^0.6.1" + "supports-color" "^6.1.0" + +"postcss@^8.1.0": + "integrity" "sha512-xpB8qYxgPuly166AGlpRjUdEYtmOWx2iCwGmrv4vqZL9YPVviDVPZPRXxnXr6xPZOdxQ9lp3ZBFCRgWJ7LE3Sg==" + "resolved" "https://registry.npmjs.org/postcss/-/postcss-8.2.6.tgz" + "version" "8.2.6" + dependencies: + "colorette" "^1.2.1" + "nanoid" "^3.1.20" + "source-map" "^0.6.1" + +"postcss@7.0.21": + "integrity" "sha512-uIFtJElxJo29QC753JzhidoAhvp/e/Exezkdhfmt8AymWT6/5B7W1WmponYWkHk2eg6sONyTch0A3nkMPun3SQ==" + "resolved" "https://registry.npmjs.org/postcss/-/postcss-7.0.21.tgz" + "version" "7.0.21" + dependencies: + "chalk" "^2.4.2" + "source-map" "^0.6.1" + "supports-color" "^6.1.0" + +"prelude-ls@^1.2.1": + "integrity" "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==" + "resolved" "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz" + "version" "1.2.1" + +"prelude-ls@~1.1.2": + "integrity" "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=" + "resolved" "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz" + "version" "1.1.2" + +"prepend-http@^1.0.0": + "integrity" "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=" + "resolved" "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz" + "version" "1.0.4" + +"pretty-bytes@^5.3.0": + "integrity" "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==" + "resolved" "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz" + "version" "5.6.0" + +"pretty-error@^2.1.1": + "integrity" "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==" + "resolved" "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz" + "version" "2.1.2" + dependencies: + "lodash" "^4.17.20" + "renderkid" "^2.0.4" + +"pretty-format@^26.0.0", "pretty-format@^26.6.0", "pretty-format@^26.6.2": + "integrity" "sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg==" + "resolved" "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz" + "version" "26.6.2" + dependencies: + "@jest/types" "^26.6.2" + "ansi-regex" "^5.0.0" + "ansi-styles" "^4.0.0" + "react-is" "^17.0.1" + +"process-nextick-args@~2.0.0": + "integrity" "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + "resolved" "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz" + "version" "2.0.1" + +"process@^0.11.10": + "integrity" "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=" + "resolved" "https://registry.npmjs.org/process/-/process-0.11.10.tgz" + "version" "0.11.10" + +"progress@^2.0.0": + "integrity" "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" + "resolved" "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz" + "version" "2.0.3" + +"promise-inflight@^1.0.1": + "integrity" "sha1-mEcocL8igTL8vdhoEputEsPAKeM=" + "resolved" "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz" + "version" "1.0.1" + +"promise@^8.1.0": + "integrity" "sha512-W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q==" + "resolved" "https://registry.npmjs.org/promise/-/promise-8.1.0.tgz" + "version" "8.1.0" + dependencies: + "asap" "~2.0.6" + +"prompts@^2.0.1", "prompts@2.4.0": + "integrity" "sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==" + "resolved" "https://registry.npmjs.org/prompts/-/prompts-2.4.0.tgz" + "version" "2.4.0" + dependencies: + "kleur" "^3.0.3" + "sisteransi" "^1.0.5" + +"prop-types@^15.0.0", "prop-types@^15.6.2", "prop-types@^15.7.2": + "integrity" "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==" + "resolved" "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz" + "version" "15.7.2" + dependencies: + "loose-envify" "^1.4.0" + "object-assign" "^4.1.1" + "react-is" "^16.8.1" + +"proxy-addr@~2.0.5": + "integrity" "sha512-dh/frvCBVmSsDYzw6n926jv974gddhkFPfiN8hPOi30Wax25QZyZEGveluCgliBnqmuM+UJmBErbAUFIoDbjOw==" + "resolved" "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.6.tgz" + "version" "2.0.6" + dependencies: + "forwarded" "~0.1.2" + "ipaddr.js" "1.9.1" + +"prr@~1.0.1": + "integrity" "sha1-0/wRS6BplaRexok/SEzrHXj19HY=" + "resolved" "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz" + "version" "1.0.1" + +"psl@^1.1.28": + "integrity" "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + "resolved" "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz" + "version" "1.8.0" + +"public-encrypt@^4.0.0": + "integrity" "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==" + "resolved" "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz" + "version" "4.0.3" + dependencies: + "bn.js" "^4.1.0" + "browserify-rsa" "^4.0.0" + "create-hash" "^1.1.0" + "parse-asn1" "^5.0.0" + "randombytes" "^2.0.1" + "safe-buffer" "^5.1.2" + +"pump@^2.0.0": + "integrity" "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==" + "resolved" "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "end-of-stream" "^1.1.0" + "once" "^1.3.1" + +"pump@^3.0.0": + "integrity" "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==" + "resolved" "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "end-of-stream" "^1.1.0" + "once" "^1.3.1" + +"pumpify@^1.3.3": + "integrity" "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==" + "resolved" "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz" + "version" "1.5.1" + dependencies: + "duplexify" "^3.6.0" + "inherits" "^2.0.3" + "pump" "^2.0.0" + +"punycode@^1.2.4": + "integrity" "sha1-wNWmOycYgArY4esPpSachN1BhF4=" + "resolved" "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz" + "version" "1.4.1" + +"punycode@^2.1.0", "punycode@^2.1.1": + "integrity" "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" + "resolved" "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz" + "version" "2.1.1" + +"punycode@1.3.2": + "integrity" "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=" + "resolved" "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz" + "version" "1.3.2" + +"q@^1.1.2": + "integrity" "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=" + "resolved" "https://registry.npmjs.org/q/-/q-1.5.1.tgz" + "version" "1.5.1" + +"qs@~6.5.2": + "integrity" "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==" + "resolved" "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz" + "version" "6.5.2" + +"qs@6.7.0": + "integrity" "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==" + "resolved" "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz" + "version" "6.7.0" + +"query-string@^4.1.0": + "integrity" "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=" + "resolved" "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz" + "version" "4.3.4" + dependencies: + "object-assign" "^4.1.0" + "strict-uri-encode" "^1.0.0" + +"querystring-es3@^0.2.0": + "integrity" "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=" + "resolved" "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz" + "version" "0.2.1" + +"querystring@^0.2.0": + "integrity" "sha512-wkvS7mL/JMugcup3/rMitHmd9ecIGd2lhFhK9N3UUQ450h66d1r3Y9nvXzQAW1Lq+wyx61k/1pfKS5KuKiyEbg==" + "resolved" "https://registry.npmjs.org/querystring/-/querystring-0.2.1.tgz" + "version" "0.2.1" + +"querystring@0.2.0": + "integrity" "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=" + "resolved" "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz" + "version" "0.2.0" + +"querystringify@^2.1.1": + "integrity" "sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==" + "resolved" "https://registry.npmjs.org/querystringify/-/querystringify-2.2.0.tgz" + "version" "2.2.0" + +"queue-microtask@^1.2.2": + "integrity" "sha512-dB15eXv3p2jDlbOiNLyMabYg1/sXvppd8DP2J3EOCQ0AkuSXCW2tP7mnVouVLJKgUMY6yP0kcQDVpLCN13h4Xg==" + "resolved" "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.2.tgz" + "version" "1.2.2" + +"raf@^3.4.1": + "integrity" "sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==" + "resolved" "https://registry.npmjs.org/raf/-/raf-3.4.1.tgz" + "version" "3.4.1" + dependencies: + "performance-now" "^2.1.0" + +"randombytes@^2.0.0", "randombytes@^2.0.1", "randombytes@^2.0.5", "randombytes@^2.1.0": + "integrity" "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==" + "resolved" "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "safe-buffer" "^5.1.0" + +"randomfill@^1.0.3": + "integrity" "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==" + "resolved" "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz" + "version" "1.0.4" + dependencies: + "randombytes" "^2.0.5" + "safe-buffer" "^5.1.0" + +"range-parser@^1.2.1", "range-parser@~1.2.1": + "integrity" "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==" + "resolved" "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz" + "version" "1.2.1" + +"raw-body@2.4.0": + "integrity" "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==" + "resolved" "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz" + "version" "2.4.0" + dependencies: + "bytes" "3.1.0" + "http-errors" "1.7.2" + "iconv-lite" "0.4.24" + "unpipe" "1.0.0" + +"react-app-polyfill@^2.0.0": + "integrity" "sha512-0sF4ny9v/B7s6aoehwze9vJNWcmCemAUYBVasscVr92+UYiEqDXOxfKjXN685mDaMRNF3WdhHQs76oTODMocFA==" + "resolved" "https://registry.npmjs.org/react-app-polyfill/-/react-app-polyfill-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "core-js" "^3.6.5" + "object-assign" "^4.1.1" + "promise" "^8.1.0" + "raf" "^3.4.1" + "regenerator-runtime" "^0.13.7" + "whatwg-fetch" "^3.4.1" + +"react-data-table-component@^6.11.7": + "integrity" "sha512-p+wdtaaKs2udJByL2tyvL9uj8EDFy5GtpVVtNGd6d5dT0KikVhgCKFMDyv0ef+azdBVS68BaxGQ8JArDr31nWw==" + "resolved" "https://registry.npmjs.org/react-data-table-component/-/react-data-table-component-6.11.7.tgz" + "version" "6.11.7" + dependencies: + "deepmerge" "^4.2.2" + "lodash.orderby" "^4.6.0" + "shortid" "^2.2.16" + +"react-dev-utils@^11.0.3": + "integrity" "sha512-4lEA5gF4OHrcJLMUV1t+4XbNDiJbsAWCH5Z2uqlTqW6dD7Cf5nEASkeXrCI/Mz83sI2o527oBIFKVMXtRf1Vtg==" + "resolved" "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-11.0.3.tgz" + "version" "11.0.3" + dependencies: + "@babel/code-frame" "7.10.4" + "address" "1.1.2" + "browserslist" "4.14.2" + "chalk" "2.4.2" + "cross-spawn" "7.0.3" + "detect-port-alt" "1.1.6" + "escape-string-regexp" "2.0.0" + "filesize" "6.1.0" + "find-up" "4.1.0" + "fork-ts-checker-webpack-plugin" "4.1.6" + "global-modules" "2.0.0" + "globby" "11.0.1" + "gzip-size" "5.1.1" + "immer" "8.0.1" + "is-root" "2.1.0" + "loader-utils" "2.0.0" + "open" "^7.0.2" + "pkg-up" "3.1.0" + "prompts" "2.4.0" + "react-error-overlay" "^6.0.9" + "recursive-readdir" "2.2.2" + "shell-quote" "1.7.2" + "strip-ansi" "6.0.0" + "text-table" "0.2.0" + +"react-dom@*", "react-dom@^0.14 || ^15.0.0-rc || ^15.0 || ^16.0.0 || ^16.0", "react-dom@^16.8.0 || ^17.0.0", "react-dom@^17.0.1", "react-dom@>= 16.8.0", "react-dom@>=15.0.0", "react-dom@>=16.6.0": + "integrity" "sha512-6eV150oJZ9U2t9svnsspTMrWNyHc6chX0KzDeAOXftRa8bNeOKTTfCJ7KorIwenkHd2xqVTBTCZd79yk/lx/Ug==" + "resolved" "https://registry.npmjs.org/react-dom/-/react-dom-17.0.1.tgz" + "version" "17.0.1" + dependencies: + "loose-envify" "^1.1.0" + "object-assign" "^4.1.1" + "scheduler" "^0.20.1" + +"react-error-overlay@^6.0.9": + "integrity" "sha512-nQTTcUu+ATDbrSD1BZHr5kgSD4oF8OFjxun8uAaL8RwPBacGBNPf/yAuVVdx17N8XNzRDMrZ9XcKZHCjPW+9ew==" + "resolved" "https://registry.npmjs.org/react-error-overlay/-/react-error-overlay-6.0.9.tgz" + "version" "6.0.9" + +"react-is@^16.6.0": + "integrity" "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + "resolved" "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" + "version" "16.13.1" + +"react-is@^16.7.0": + "integrity" "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + "resolved" "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" + "version" "16.13.1" + +"react-is@^16.8.0 || ^17.0.0", "react-is@^17.0.1", "react-is@>= 16.8.0": + "integrity" "sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA==" + "resolved" "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz" + "version" "17.0.1" + +"react-is@^16.8.1": + "integrity" "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + "resolved" "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz" + "version" "16.13.1" + +"react-lifecycles-compat@^3.0.4": + "integrity" "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + "resolved" "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz" + "version" "3.0.4" + +"react-loading-overlay@^1.0.1": + "integrity" "sha512-aUjtZ8tNXBSx+MbD2SQs0boPbeTAGTh+I5U9nWjDzMasKlYr58RJpr57c8W7uApeLpOkAGbInExRi6GamNC2bA==" + "resolved" "https://registry.npmjs.org/react-loading-overlay/-/react-loading-overlay-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "emotion" "^10.0.1" + "prop-types" "^15.6.2" + "react-transition-group" "^2.5.0" + +"react-refresh@^0.8.3", "react-refresh@>=0.8.3 <0.10.0": + "integrity" "sha512-X8jZHc7nCMjaCqoU+V2I0cOhNW+QMBwSUkeXnTi8IPe6zaRWfn60ZzvFDZqWPfmSJfjub7dDW1SP0jaHWLu/hg==" + "resolved" "https://registry.npmjs.org/react-refresh/-/react-refresh-0.8.3.tgz" + "version" "0.8.3" + +"react-router-dom@^5.2.0": + "integrity" "sha512-gxAmfylo2QUjcwxI63RhQ5G85Qqt4voZpUXSEqCwykV0baaOTQDR1f0PmY8AELqIyVc0NEZUj0Gov5lNGcXgsA==" + "resolved" "https://registry.npmjs.org/react-router-dom/-/react-router-dom-5.2.0.tgz" + "version" "5.2.0" + dependencies: + "@babel/runtime" "^7.1.2" + "history" "^4.9.0" + "loose-envify" "^1.3.1" + "prop-types" "^15.6.2" + "react-router" "5.2.0" + "tiny-invariant" "^1.0.2" + "tiny-warning" "^1.0.0" + +"react-router@5.2.0": + "integrity" "sha512-smz1DUuFHRKdcJC0jobGo8cVbhO3x50tCL4icacOlcwDOEQPq4TMqwx3sY1TP+DvtTgz4nm3thuo7A+BK2U0Dw==" + "resolved" "https://registry.npmjs.org/react-router/-/react-router-5.2.0.tgz" + "version" "5.2.0" + dependencies: + "@babel/runtime" "^7.1.2" + "history" "^4.9.0" + "hoist-non-react-statics" "^3.1.0" + "loose-envify" "^1.3.1" + "mini-create-react-context" "^0.4.0" + "path-to-regexp" "^1.7.0" + "prop-types" "^15.6.2" + "react-is" "^16.6.0" + "tiny-invariant" "^1.0.2" + "tiny-warning" "^1.0.0" + +"react-scripts@4.0.3": + "integrity" "sha512-S5eO4vjUzUisvkIPB7jVsKtuH2HhWcASREYWHAQ1FP5HyCv3xgn+wpILAEWkmy+A+tTNbSZClhxjT3qz6g4L1A==" + "resolved" "https://registry.npmjs.org/react-scripts/-/react-scripts-4.0.3.tgz" + "version" "4.0.3" + dependencies: + "@babel/core" "7.12.3" + "@pmmmwh/react-refresh-webpack-plugin" "0.4.3" + "@svgr/webpack" "5.5.0" + "@typescript-eslint/eslint-plugin" "^4.5.0" + "@typescript-eslint/parser" "^4.5.0" + "babel-eslint" "^10.1.0" + "babel-jest" "^26.6.0" + "babel-loader" "8.1.0" + "babel-plugin-named-asset-import" "^0.3.7" + "babel-preset-react-app" "^10.0.0" + "bfj" "^7.0.2" + "camelcase" "^6.1.0" + "case-sensitive-paths-webpack-plugin" "2.3.0" + "css-loader" "4.3.0" + "dotenv" "8.2.0" + "dotenv-expand" "5.1.0" + "eslint" "^7.11.0" + "eslint-config-react-app" "^6.0.0" + "eslint-plugin-flowtype" "^5.2.0" + "eslint-plugin-import" "^2.22.1" + "eslint-plugin-jest" "^24.1.0" + "eslint-plugin-jsx-a11y" "^6.3.1" + "eslint-plugin-react" "^7.21.5" + "eslint-plugin-react-hooks" "^4.2.0" + "eslint-plugin-testing-library" "^3.9.2" + "eslint-webpack-plugin" "^2.5.2" + "file-loader" "6.1.1" + "fs-extra" "^9.0.1" + "html-webpack-plugin" "4.5.0" + "identity-obj-proxy" "3.0.0" + "jest" "26.6.0" + "jest-circus" "26.6.0" + "jest-resolve" "26.6.0" + "jest-watch-typeahead" "0.6.1" + "mini-css-extract-plugin" "0.11.3" + "optimize-css-assets-webpack-plugin" "5.0.4" + "pnp-webpack-plugin" "1.6.4" + "postcss-flexbugs-fixes" "4.2.1" + "postcss-loader" "3.0.0" + "postcss-normalize" "8.0.1" + "postcss-preset-env" "6.7.0" + "postcss-safe-parser" "5.0.2" + "prompts" "2.4.0" + "react-app-polyfill" "^2.0.0" + "react-dev-utils" "^11.0.3" + "react-refresh" "^0.8.3" + "resolve" "1.18.1" + "resolve-url-loader" "^3.1.2" + "sass-loader" "^10.0.5" + "semver" "7.3.2" + "style-loader" "1.3.0" + "terser-webpack-plugin" "4.2.3" + "ts-pnp" "1.2.0" + "url-loader" "4.1.1" + "webpack" "4.44.2" + "webpack-dev-server" "3.11.1" + "webpack-manifest-plugin" "2.2.0" + "workbox-webpack-plugin" "5.1.4" + optionalDependencies: + "fsevents" "^2.1.3" + +"react-transition-group@^2.5.0": + "integrity" "sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==" + "resolved" "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.9.0.tgz" + "version" "2.9.0" + dependencies: + "dom-helpers" "^3.4.0" + "loose-envify" "^1.4.0" + "prop-types" "^15.6.2" + "react-lifecycles-compat" "^3.0.4" + +"react-transition-group@^4.4.0": + "integrity" "sha512-Djqr7OQ2aPUiYurhPalTrVy9ddmFCCzwhqQmtN+J3+3DzLO209Fdr70QrN8Z3DsglWql6iY1lDWAfpFiBtuKGw==" + "resolved" "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.1.tgz" + "version" "4.4.1" + dependencies: + "@babel/runtime" "^7.5.5" + "dom-helpers" "^5.0.1" + "loose-envify" "^1.4.0" + "prop-types" "^15.6.2" + +"react@*", "react@^0.14 || ^15.0.0-rc || ^15.0 || ^16.0.0 || ^16.0", "react@^0.14.0 || ^15.0.0 || ^16.0.0 || ^17.0.0", "react@^16.8.0 || ^17.0.0", "react@^17.0.1", "react@>= 16", "react@>= 16.8.0", "react@>=15", "react@>=15.0.0", "react@>=16.6.0", "react@17.0.1": + "integrity" "sha512-lG9c9UuMHdcAexXtigOZLX8exLWkW0Ku29qPRU8uhF2R9BN96dLCt0psvzPLlHc5OWkgymP3qwTRgbnw5BKx3w==" + "resolved" "https://registry.npmjs.org/react/-/react-17.0.1.tgz" + "version" "17.0.1" + dependencies: + "loose-envify" "^1.1.0" + "object-assign" "^4.1.1" + +"read-pkg-up@^2.0.0": + "integrity" "sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4=" + "resolved" "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "find-up" "^2.0.0" + "read-pkg" "^2.0.0" + +"read-pkg-up@^7.0.1": + "integrity" "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==" + "resolved" "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz" + "version" "7.0.1" + dependencies: + "find-up" "^4.1.0" + "read-pkg" "^5.2.0" + "type-fest" "^0.8.1" + +"read-pkg@^2.0.0": + "integrity" "sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg=" + "resolved" "https://registry.npmjs.org/read-pkg/-/read-pkg-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "load-json-file" "^2.0.0" + "normalize-package-data" "^2.3.2" + "path-type" "^2.0.0" + +"read-pkg@^5.2.0": + "integrity" "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==" + "resolved" "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz" + "version" "5.2.0" + dependencies: + "@types/normalize-package-data" "^2.4.0" + "normalize-package-data" "^2.5.0" + "parse-json" "^5.0.0" + "type-fest" "^0.6.0" + +"readable-stream@^2.0.0", "readable-stream@^2.0.1", "readable-stream@^2.0.2", "readable-stream@^2.1.5", "readable-stream@^2.2.2", "readable-stream@^2.3.3", "readable-stream@^2.3.6", "readable-stream@~2.3.6", "readable-stream@1 || 2": + "integrity" "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==" + "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz" + "version" "2.3.7" + dependencies: + "core-util-is" "~1.0.0" + "inherits" "~2.0.3" + "isarray" "~1.0.0" + "process-nextick-args" "~2.0.0" + "safe-buffer" "~5.1.1" + "string_decoder" "~1.1.1" + "util-deprecate" "~1.0.1" + +"readable-stream@^3.0.6": + "integrity" "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==" + "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz" + "version" "3.6.0" + dependencies: + "inherits" "^2.0.3" + "string_decoder" "^1.1.1" + "util-deprecate" "^1.0.1" + +"readable-stream@^3.1.1": + "integrity" "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==" + "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz" + "version" "3.6.0" + dependencies: + "inherits" "^2.0.3" + "string_decoder" "^1.1.1" + "util-deprecate" "^1.0.1" + +"readable-stream@^3.6.0": + "integrity" "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==" + "resolved" "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz" + "version" "3.6.0" + dependencies: + "inherits" "^2.0.3" + "string_decoder" "^1.1.1" + "util-deprecate" "^1.0.1" + +"readdirp@^2.2.1": + "integrity" "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==" + "resolved" "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz" + "version" "2.2.1" + dependencies: + "graceful-fs" "^4.1.11" + "micromatch" "^3.1.10" + "readable-stream" "^2.0.2" + +"readdirp@~3.5.0": + "integrity" "sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ==" + "resolved" "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz" + "version" "3.5.0" + dependencies: + "picomatch" "^2.2.1" + +"recursive-readdir@2.2.2": + "integrity" "sha512-nRCcW9Sj7NuZwa2XvH9co8NPeXUBhZP7CRKJtU+cS6PW9FpCIFoI5ib0NT1ZrbNuPoRy0ylyCaUL8Gih4LSyFg==" + "resolved" "https://registry.npmjs.org/recursive-readdir/-/recursive-readdir-2.2.2.tgz" + "version" "2.2.2" + dependencies: + "minimatch" "3.0.4" + +"redent@^3.0.0": + "integrity" "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==" + "resolved" "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "indent-string" "^4.0.0" + "strip-indent" "^3.0.0" + +"regenerate-unicode-properties@^8.2.0": + "integrity" "sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==" + "resolved" "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz" + "version" "8.2.0" + dependencies: + "regenerate" "^1.4.0" + +"regenerate@^1.4.0": + "integrity" "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + "resolved" "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz" + "version" "1.4.2" + +"regenerator-runtime@^0.11.0": + "integrity" "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==" + "resolved" "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz" + "version" "0.11.1" + +"regenerator-runtime@^0.13.4", "regenerator-runtime@^0.13.7": + "integrity" "sha512-a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==" + "resolved" "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz" + "version" "0.13.7" + +"regenerator-transform@^0.14.2": + "integrity" "sha512-eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw==" + "resolved" "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz" + "version" "0.14.5" + dependencies: + "@babel/runtime" "^7.8.4" + +"regex-not@^1.0.0", "regex-not@^1.0.2": + "integrity" "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==" + "resolved" "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "extend-shallow" "^3.0.2" + "safe-regex" "^1.1.0" + +"regex-parser@^2.2.11": + "integrity" "sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q==" + "resolved" "https://registry.npmjs.org/regex-parser/-/regex-parser-2.2.11.tgz" + "version" "2.2.11" + +"regexp.prototype.flags@^1.2.0", "regexp.prototype.flags@^1.3.1": + "integrity" "sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==" + "resolved" "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz" + "version" "1.3.1" + dependencies: + "call-bind" "^1.0.2" + "define-properties" "^1.1.3" + +"regexpp@^3.0.0", "regexpp@^3.1.0": + "integrity" "sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q==" + "resolved" "https://registry.npmjs.org/regexpp/-/regexpp-3.1.0.tgz" + "version" "3.1.0" + +"regexpu-core@^4.7.1": + "integrity" "sha512-ywH2VUraA44DZQuRKzARmw6S66mr48pQVva4LBeRhcOltJ6hExvWly5ZjFLYo67xbIxb6W1q4bAGtgfEl20zfQ==" + "resolved" "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.1.tgz" + "version" "4.7.1" + dependencies: + "regenerate" "^1.4.0" + "regenerate-unicode-properties" "^8.2.0" + "regjsgen" "^0.5.1" + "regjsparser" "^0.6.4" + "unicode-match-property-ecmascript" "^1.0.4" + "unicode-match-property-value-ecmascript" "^1.2.0" + +"regjsgen@^0.5.1": + "integrity" "sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==" + "resolved" "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz" + "version" "0.5.2" + +"regjsparser@^0.6.4": + "integrity" "sha512-ib77G0uxsA2ovgiYbCVGx4Pv3PSttAx2vIwidqQzbL2U5S4Q+j00HdSAneSBuyVcMvEnTXMjiGgB+DlXozVhpQ==" + "resolved" "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.7.tgz" + "version" "0.6.7" + dependencies: + "jsesc" "~0.5.0" + +"relateurl@^0.2.7": + "integrity" "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=" + "resolved" "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz" + "version" "0.2.7" + +"remove-trailing-separator@^1.0.1": + "integrity" "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=" + "resolved" "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz" + "version" "1.1.0" + +"renderkid@^2.0.4": + "integrity" "sha512-ccqoLg+HLOHq1vdfYNm4TBeaCDIi1FLt3wGojTDSvdewUv65oTmI3cnT2E4hRjl1gzKZIPK+KZrXzlUYKnR+vQ==" + "resolved" "https://registry.npmjs.org/renderkid/-/renderkid-2.0.5.tgz" + "version" "2.0.5" + dependencies: + "css-select" "^2.0.2" + "dom-converter" "^0.2" + "htmlparser2" "^3.10.1" + "lodash" "^4.17.20" + "strip-ansi" "^3.0.0" + +"repeat-element@^1.1.2": + "integrity" "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==" + "resolved" "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz" + "version" "1.1.3" + +"repeat-string@^1.6.1": + "integrity" "sha1-jcrkcOHIirwtYA//Sndihtp15jc=" + "resolved" "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz" + "version" "1.6.1" + +"request-promise-core@1.1.4": + "integrity" "sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw==" + "resolved" "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.4.tgz" + "version" "1.1.4" + dependencies: + "lodash" "^4.17.19" + +"request-promise-native@^1.0.8": + "integrity" "sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g==" + "resolved" "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.9.tgz" + "version" "1.0.9" + dependencies: + "request-promise-core" "1.1.4" + "stealthy-require" "^1.1.1" + "tough-cookie" "^2.3.3" + +"request@^2.34", "request@^2.88.2": + "integrity" "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==" + "resolved" "https://registry.npmjs.org/request/-/request-2.88.2.tgz" + "version" "2.88.2" + dependencies: + "aws-sign2" "~0.7.0" + "aws4" "^1.8.0" + "caseless" "~0.12.0" + "combined-stream" "~1.0.6" + "extend" "~3.0.2" + "forever-agent" "~0.6.1" + "form-data" "~2.3.2" + "har-validator" "~5.1.3" + "http-signature" "~1.2.0" + "is-typedarray" "~1.0.0" + "isstream" "~0.1.2" + "json-stringify-safe" "~5.0.1" + "mime-types" "~2.1.19" + "oauth-sign" "~0.9.0" + "performance-now" "^2.1.0" + "qs" "~6.5.2" + "safe-buffer" "^5.1.2" + "tough-cookie" "~2.5.0" + "tunnel-agent" "^0.6.0" + "uuid" "^3.3.2" + +"require-directory@^2.1.1": + "integrity" "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=" + "resolved" "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz" + "version" "2.1.1" + +"require-from-string@^2.0.2": + "integrity" "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==" + "resolved" "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz" + "version" "2.0.2" + +"require-main-filename@^2.0.0": + "integrity" "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==" + "resolved" "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz" + "version" "2.0.0" + +"requires-port@^1.0.0": + "integrity" "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=" + "resolved" "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz" + "version" "1.0.0" + +"resolve-cwd@^2.0.0": + "integrity" "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=" + "resolved" "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "resolve-from" "^3.0.0" + +"resolve-cwd@^3.0.0": + "integrity" "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==" + "resolved" "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "resolve-from" "^5.0.0" + +"resolve-from@^3.0.0": + "integrity" "sha1-six699nWiBvItuZTM17rywoYh0g=" + "resolved" "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz" + "version" "3.0.0" + +"resolve-from@^4.0.0": + "integrity" "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==" + "resolved" "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz" + "version" "4.0.0" + +"resolve-from@^5.0.0": + "integrity" "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==" + "resolved" "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz" + "version" "5.0.0" + +"resolve-pathname@^3.0.0": + "integrity" "sha512-C7rARubxI8bXFNB/hqcp/4iUeIXJhJZvFPFPiSPRnhU5UPxzMFIl+2E6yY6c4k9giDJAhtV+enfA+G89N6Csng==" + "resolved" "https://registry.npmjs.org/resolve-pathname/-/resolve-pathname-3.0.0.tgz" + "version" "3.0.0" + +"resolve-url-loader@^3.1.2": + "integrity" "sha512-QEb4A76c8Mi7I3xNKXlRKQSlLBwjUV/ULFMP+G7n3/7tJZ8MG5wsZ3ucxP1Jz8Vevn6fnJsxDx9cIls+utGzPQ==" + "resolved" "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-3.1.2.tgz" + "version" "3.1.2" + dependencies: + "adjust-sourcemap-loader" "3.0.0" + "camelcase" "5.3.1" + "compose-function" "3.0.3" + "convert-source-map" "1.7.0" + "es6-iterator" "2.0.3" + "loader-utils" "1.2.3" + "postcss" "7.0.21" + "rework" "1.0.1" + "rework-visit" "1.0.0" + "source-map" "0.6.1" + +"resolve-url@^0.2.1": + "integrity" "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=" + "resolved" "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz" + "version" "0.2.1" + +"resolve@^1.10.0", "resolve@^1.12.0", "resolve@^1.13.1", "resolve@^1.14.2", "resolve@^1.17.0", "resolve@^1.18.1", "resolve@^1.3.2", "resolve@^1.8.1": + "integrity" "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==" + "resolved" "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz" + "version" "1.20.0" + dependencies: + "is-core-module" "^2.2.0" + "path-parse" "^1.0.6" + +"resolve@1.18.1": + "integrity" "sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA==" + "resolved" "https://registry.npmjs.org/resolve/-/resolve-1.18.1.tgz" + "version" "1.18.1" + dependencies: + "is-core-module" "^2.0.0" + "path-parse" "^1.0.6" + +"ret@~0.1.10": + "integrity" "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==" + "resolved" "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz" + "version" "0.1.15" + +"retry@^0.12.0": + "integrity" "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=" + "resolved" "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz" + "version" "0.12.0" + +"reusify@^1.0.4": + "integrity" "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==" + "resolved" "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz" + "version" "1.0.4" + +"rework-visit@1.0.0": + "integrity" "sha1-mUWygD8hni96ygCtuLyfZA+ELJo=" + "resolved" "https://registry.npmjs.org/rework-visit/-/rework-visit-1.0.0.tgz" + "version" "1.0.0" + +"rework@1.0.1": + "integrity" "sha1-MIBqhBNCtUUQqkEQhQzUhTQUSqc=" + "resolved" "https://registry.npmjs.org/rework/-/rework-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "convert-source-map" "^0.3.3" + "css" "^2.0.0" + +"rgb-regex@^1.0.1": + "integrity" "sha1-wODWiC3w4jviVKR16O3UGRX+rrE=" + "resolved" "https://registry.npmjs.org/rgb-regex/-/rgb-regex-1.0.1.tgz" + "version" "1.0.1" + +"rgba-regex@^1.0.0": + "integrity" "sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=" + "resolved" "https://registry.npmjs.org/rgba-regex/-/rgba-regex-1.0.0.tgz" + "version" "1.0.0" + +"rimraf@^2.5.4", "rimraf@^2.6.3": + "integrity" "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==" + "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz" + "version" "2.7.1" + dependencies: + "glob" "^7.1.3" + +"rimraf@^3.0.0": + "integrity" "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" + "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" + "version" "3.0.2" + dependencies: + "glob" "^7.1.3" + +"rimraf@^3.0.2": + "integrity" "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==" + "resolved" "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz" + "version" "3.0.2" + dependencies: + "glob" "^7.1.3" + +"ripemd160@^2.0.0", "ripemd160@^2.0.1": + "integrity" "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==" + "resolved" "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "hash-base" "^3.0.0" + "inherits" "^2.0.1" + +"rollup-plugin-babel@^4.3.3": + "integrity" "sha512-Lek/TYp1+7g7I+uMfJnnSJ7YWoD58ajo6Oarhlex7lvUce+RCKRuGRSgztDO3/MF/PuGKmUL5iTHKf208UNszw==" + "resolved" "https://registry.npmjs.org/rollup-plugin-babel/-/rollup-plugin-babel-4.4.0.tgz" + "version" "4.4.0" + dependencies: + "@babel/helper-module-imports" "^7.0.0" + "rollup-pluginutils" "^2.8.1" + +"rollup-plugin-terser@^5.3.1": + "integrity" "sha512-1pkwkervMJQGFYvM9nscrUoncPwiKR/K+bHdjv6PFgRo3cgPHoRT83y2Aa3GvINj4539S15t/tpFPb775TDs6w==" + "resolved" "https://registry.npmjs.org/rollup-plugin-terser/-/rollup-plugin-terser-5.3.1.tgz" + "version" "5.3.1" + dependencies: + "@babel/code-frame" "^7.5.5" + "jest-worker" "^24.9.0" + "rollup-pluginutils" "^2.8.2" + "serialize-javascript" "^4.0.0" + "terser" "^4.6.2" + +"rollup-pluginutils@^2.8.1", "rollup-pluginutils@^2.8.2": + "integrity" "sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==" + "resolved" "https://registry.npmjs.org/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz" + "version" "2.8.2" + dependencies: + "estree-walker" "^0.6.1" + +"rollup@^1.20.0 || ^2.0.0", "rollup@^1.20.0||^2.0.0", "rollup@^1.31.1", "rollup@>=0.60.0 <3", "rollup@>=0.66.0 <3": + "integrity" "sha512-/2HA0Ec70TvQnXdzynFffkjA6XN+1e2pEv/uKS5Ulca40g2L7KuOE3riasHoNVHOsFD5KKZgDsMk1CP3Tw9s+A==" + "resolved" "https://registry.npmjs.org/rollup/-/rollup-1.32.1.tgz" + "version" "1.32.1" + dependencies: + "@types/estree" "*" + "@types/node" "*" + "acorn" "^7.1.0" + +"rsvp@^4.8.4": + "integrity" "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==" + "resolved" "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz" + "version" "4.8.5" + +"run-parallel@^1.1.9": + "integrity" "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==" + "resolved" "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz" + "version" "1.2.0" + dependencies: + "queue-microtask" "^1.2.2" + +"run-queue@^1.0.0", "run-queue@^1.0.3": + "integrity" "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=" + "resolved" "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz" + "version" "1.0.3" + dependencies: + "aproba" "^1.1.1" + +"safe-buffer@^5.0.1", "safe-buffer@^5.1.0", "safe-buffer@^5.1.1", "safe-buffer@^5.1.2", "safe-buffer@^5.2.0", "safe-buffer@>=5.1.0", "safe-buffer@~5.2.0": + "integrity" "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" + "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" + "version" "5.2.1" + +"safe-buffer@~5.1.0", "safe-buffer@~5.1.1": + "integrity" "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" + "version" "5.1.2" + +"safe-buffer@5.1.2": + "integrity" "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + "resolved" "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz" + "version" "5.1.2" + +"safe-regex@^1.1.0": + "integrity" "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=" + "resolved" "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz" + "version" "1.1.0" + dependencies: + "ret" "~0.1.10" + +"safer-buffer@^2.0.2", "safer-buffer@^2.1.0", "safer-buffer@>= 2.1.2 < 3", "safer-buffer@~2.1.0": + "integrity" "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + "resolved" "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" + "version" "2.1.2" + +"sane@^4.0.3": + "integrity" "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==" + "resolved" "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz" + "version" "4.1.0" + dependencies: + "@cnakazawa/watch" "^1.0.3" + "anymatch" "^2.0.0" + "capture-exit" "^2.0.0" + "exec-sh" "^0.3.2" + "execa" "^1.0.0" + "fb-watchman" "^2.0.0" + "micromatch" "^3.1.4" + "minimist" "^1.1.1" + "walker" "~1.0.5" + +"sanitize.css@^10.0.0": + "integrity" "sha512-vTxrZz4dX5W86M6oVWVdOVe72ZiPs41Oi7Z6Km4W5Turyz28mrXSJhhEBZoRtzJWIv3833WKVwLSDWWkEfupMg==" + "resolved" "https://registry.npmjs.org/sanitize.css/-/sanitize.css-10.0.0.tgz" + "version" "10.0.0" + +"sass-loader@^10.0.5": + "integrity" "sha512-W6gVDXAd5hR/WHsPicvZdjAWHBcEJ44UahgxcIE196fW2ong0ZHMPO1kZuI5q0VlvMQZh32gpv69PLWQm70qrw==" + "resolved" "https://registry.npmjs.org/sass-loader/-/sass-loader-10.1.1.tgz" + "version" "10.1.1" + dependencies: + "klona" "^2.0.4" + "loader-utils" "^2.0.0" + "neo-async" "^2.6.2" + "schema-utils" "^3.0.0" + "semver" "^7.3.2" + +"sax@~1.2.4": + "integrity" "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==" + "resolved" "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz" + "version" "1.2.4" + +"saxes@^5.0.0": + "integrity" "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==" + "resolved" "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz" + "version" "5.0.1" + dependencies: + "xmlchars" "^2.2.0" + +"scheduler@^0.20.1": + "integrity" "sha512-LKTe+2xNJBNxu/QhHvDR14wUXHRQbVY5ZOYpOGWRzhydZUqrLb2JBvLPY7cAqFmqrWuDED0Mjk7013SZiOz6Bw==" + "resolved" "https://registry.npmjs.org/scheduler/-/scheduler-0.20.1.tgz" + "version" "0.20.1" + dependencies: + "loose-envify" "^1.1.0" + "object-assign" "^4.1.1" + +"schema-utils@^1.0.0": + "integrity" "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==" + "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "ajv" "^6.1.0" + "ajv-errors" "^1.0.0" + "ajv-keywords" "^3.1.0" + +"schema-utils@^2.6.5": + "integrity" "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==" + "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz" + "version" "2.7.1" + dependencies: + "@types/json-schema" "^7.0.5" + "ajv" "^6.12.4" + "ajv-keywords" "^3.5.2" + +"schema-utils@^2.7.0": + "integrity" "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==" + "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz" + "version" "2.7.1" + dependencies: + "@types/json-schema" "^7.0.5" + "ajv" "^6.12.4" + "ajv-keywords" "^3.5.2" + +"schema-utils@^2.7.1": + "integrity" "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==" + "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz" + "version" "2.7.1" + dependencies: + "@types/json-schema" "^7.0.5" + "ajv" "^6.12.4" + "ajv-keywords" "^3.5.2" + +"schema-utils@^3.0.0": + "integrity" "sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA==" + "resolved" "https://registry.npmjs.org/schema-utils/-/schema-utils-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "@types/json-schema" "^7.0.6" + "ajv" "^6.12.5" + "ajv-keywords" "^3.5.2" + +"select-hose@^2.0.0": + "integrity" "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=" + "resolved" "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz" + "version" "2.0.0" + +"selfsigned@^1.10.8": + "integrity" "sha512-2P4PtieJeEwVgTU9QEcwIRDQ/mXJLX8/+I3ur+Pg16nS8oNbrGxEso9NyYWy8NAmXiNl4dlAp5MwoNeCWzON4w==" + "resolved" "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.8.tgz" + "version" "1.10.8" + dependencies: + "node-forge" "^0.10.0" + +"semver@^5.4.1", "semver@^5.5.0", "semver@^5.5.1", "semver@^5.6.0", "semver@2 || 3 || 4 || 5": + "integrity" "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + "resolved" "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz" + "version" "5.7.1" + +"semver@^6.0.0": + "integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" + "version" "6.3.0" + +"semver@^6.3.0": + "integrity" "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==" + "resolved" "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz" + "version" "6.3.0" + +"semver@^7.2.1": + "integrity" "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==" + "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz" + "version" "7.3.4" + dependencies: + "lru-cache" "^6.0.0" + +"semver@^7.3.2": + "integrity" "sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==" + "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz" + "version" "7.3.4" + dependencies: + "lru-cache" "^6.0.0" + +"semver@7.0.0": + "integrity" "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==" + "resolved" "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz" + "version" "7.0.0" + +"semver@7.3.2": + "integrity" "sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==" + "resolved" "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz" + "version" "7.3.2" + +"send@0.17.1": + "integrity" "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==" + "resolved" "https://registry.npmjs.org/send/-/send-0.17.1.tgz" + "version" "0.17.1" + dependencies: + "debug" "2.6.9" + "depd" "~1.1.2" + "destroy" "~1.0.4" + "encodeurl" "~1.0.2" + "escape-html" "~1.0.3" + "etag" "~1.8.1" + "fresh" "0.5.2" + "http-errors" "~1.7.2" + "mime" "1.6.0" + "ms" "2.1.1" + "on-finished" "~2.3.0" + "range-parser" "~1.2.1" + "statuses" "~1.5.0" + +"serialize-javascript@^4.0.0": + "integrity" "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==" + "resolved" "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "randombytes" "^2.1.0" + +"serialize-javascript@^5.0.1": + "integrity" "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==" + "resolved" "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz" + "version" "5.0.1" + dependencies: + "randombytes" "^2.1.0" + +"serve-index@^1.9.1": + "integrity" "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=" + "resolved" "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz" + "version" "1.9.1" + dependencies: + "accepts" "~1.3.4" + "batch" "0.6.1" + "debug" "2.6.9" + "escape-html" "~1.0.3" + "http-errors" "~1.6.2" + "mime-types" "~2.1.17" + "parseurl" "~1.3.2" + +"serve-static@1.14.1": + "integrity" "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==" + "resolved" "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz" + "version" "1.14.1" + dependencies: + "encodeurl" "~1.0.2" + "escape-html" "~1.0.3" + "parseurl" "~1.3.3" + "send" "0.17.1" + +"set-blocking@^2.0.0": + "integrity" "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=" + "resolved" "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz" + "version" "2.0.0" + +"set-value@^2.0.0", "set-value@^2.0.1": + "integrity" "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==" + "resolved" "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "extend-shallow" "^2.0.1" + "is-extendable" "^0.1.1" + "is-plain-object" "^2.0.3" + "split-string" "^3.0.1" + +"setimmediate@^1.0.4": + "integrity" "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=" + "resolved" "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz" + "version" "1.0.5" + +"setprototypeof@1.1.0": + "integrity" "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==" + "resolved" "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz" + "version" "1.1.0" + +"setprototypeof@1.1.1": + "integrity" "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==" + "resolved" "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz" + "version" "1.1.1" + +"sha.js@^2.4.0", "sha.js@^2.4.8": + "integrity" "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==" + "resolved" "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz" + "version" "2.4.11" + dependencies: + "inherits" "^2.0.1" + "safe-buffer" "^5.0.1" + +"shallowequal@^1.1.0": + "integrity" "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==" + "resolved" "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz" + "version" "1.1.0" + +"shebang-command@^1.2.0": + "integrity" "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=" + "resolved" "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz" + "version" "1.2.0" + dependencies: + "shebang-regex" "^1.0.0" + +"shebang-command@^2.0.0": + "integrity" "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==" + "resolved" "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "shebang-regex" "^3.0.0" + +"shebang-regex@^1.0.0": + "integrity" "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" + "resolved" "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz" + "version" "1.0.0" + +"shebang-regex@^3.0.0": + "integrity" "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==" + "resolved" "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz" + "version" "3.0.0" + +"shell-quote@1.7.2": + "integrity" "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" + "resolved" "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz" + "version" "1.7.2" + +"shellwords@^0.1.1": + "integrity" "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==" + "resolved" "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz" + "version" "0.1.1" + +"shortid@^2.2.16": + "integrity" "sha512-Ugt+GIZqvGXCIItnsL+lvFJOiN7RYqlGy7QE41O3YC1xbNSeDGIRO7xg2JJXIAj1cAGnOeC1r7/T9pgrtQbv4g==" + "resolved" "https://registry.npmjs.org/shortid/-/shortid-2.2.16.tgz" + "version" "2.2.16" + dependencies: + "nanoid" "^2.1.0" + +"side-channel@^1.0.4": + "integrity" "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==" + "resolved" "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz" + "version" "1.0.4" + dependencies: + "call-bind" "^1.0.0" + "get-intrinsic" "^1.0.2" + "object-inspect" "^1.9.0" + +"signal-exit@^3.0.0", "signal-exit@^3.0.2": + "integrity" "sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==" + "resolved" "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz" + "version" "3.0.3" + +"simple-swizzle@^0.2.2": + "integrity" "sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=" + "resolved" "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz" + "version" "0.2.2" + dependencies: + "is-arrayish" "^0.3.1" + +"sisteransi@^1.0.5": + "integrity" "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==" + "resolved" "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz" + "version" "1.0.5" + +"slash@^3.0.0": + "integrity" "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==" + "resolved" "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz" + "version" "3.0.0" + +"slice-ansi@^4.0.0": + "integrity" "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==" + "resolved" "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz" + "version" "4.0.0" + dependencies: + "ansi-styles" "^4.0.0" + "astral-regex" "^2.0.0" + "is-fullwidth-code-point" "^3.0.0" + +"snapdragon-node@^2.0.1": + "integrity" "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==" + "resolved" "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz" + "version" "2.1.1" + dependencies: + "define-property" "^1.0.0" + "isobject" "^3.0.0" + "snapdragon-util" "^3.0.1" + +"snapdragon-util@^3.0.1": + "integrity" "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==" + "resolved" "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz" + "version" "3.0.1" + dependencies: + "kind-of" "^3.2.0" + +"snapdragon@^0.8.1": + "integrity" "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==" + "resolved" "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz" + "version" "0.8.2" + dependencies: + "base" "^0.11.1" + "debug" "^2.2.0" + "define-property" "^0.2.5" + "extend-shallow" "^2.0.1" + "map-cache" "^0.2.2" + "source-map" "^0.5.6" + "source-map-resolve" "^0.5.0" + "use" "^3.1.0" + +"sockjs-client@^1.4.0", "sockjs-client@^1.5.0": + "integrity" "sha512-8Dt3BDi4FYNrCFGTL/HtwVzkARrENdwOUf1ZoW/9p3M8lZdFT35jVdrHza+qgxuG9H3/shR4cuX/X9umUrjP8Q==" + "resolved" "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.5.0.tgz" + "version" "1.5.0" + dependencies: + "debug" "^3.2.6" + "eventsource" "^1.0.7" + "faye-websocket" "^0.11.3" + "inherits" "^2.0.4" + "json3" "^3.3.3" + "url-parse" "^1.4.7" + +"sockjs@^0.3.21": + "integrity" "sha512-DhbPFGpxjc6Z3I+uX07Id5ZO2XwYsWOrYjaSeieES78cq+JaJvVe5q/m1uvjIQhXinhIeCFRH6JgXe+mvVMyXw==" + "resolved" "https://registry.npmjs.org/sockjs/-/sockjs-0.3.21.tgz" + "version" "0.3.21" + dependencies: + "faye-websocket" "^0.11.3" + "uuid" "^3.4.0" + "websocket-driver" "^0.7.4" + +"sort-keys@^1.0.0": + "integrity" "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=" + "resolved" "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz" + "version" "1.1.2" + dependencies: + "is-plain-obj" "^1.0.0" + +"source-list-map@^2.0.0": + "integrity" "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + "resolved" "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz" + "version" "2.0.1" + +"source-map-resolve@^0.5.0", "source-map-resolve@^0.5.2": + "integrity" "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==" + "resolved" "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz" + "version" "0.5.3" + dependencies: + "atob" "^2.1.2" + "decode-uri-component" "^0.2.0" + "resolve-url" "^0.2.1" + "source-map-url" "^0.4.0" + "urix" "^0.1.0" + +"source-map-resolve@^0.6.0": + "integrity" "sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w==" + "resolved" "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.6.0.tgz" + "version" "0.6.0" + dependencies: + "atob" "^2.1.2" + "decode-uri-component" "^0.2.0" + +"source-map-support@^0.5.6", "source-map-support@~0.5.12", "source-map-support@~0.5.19": + "integrity" "sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==" + "resolved" "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz" + "version" "0.5.19" + dependencies: + "buffer-from" "^1.0.0" + "source-map" "^0.6.0" + +"source-map-url@^0.4.0": + "integrity" "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==" + "resolved" "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz" + "version" "0.4.1" + +"source-map@^0.5.0": + "integrity" "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" + "version" "0.5.7" + +"source-map@^0.5.6": + "integrity" "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" + "version" "0.5.7" + +"source-map@^0.5.7": + "integrity" "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" + "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz" + "version" "0.5.7" + +"source-map@^0.6.0", "source-map@^0.6.1", "source-map@~0.6.0", "source-map@~0.6.1", "source-map@0.6.1": + "integrity" "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz" + "version" "0.6.1" + +"source-map@^0.7.3": + "integrity" "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz" + "version" "0.7.3" + +"source-map@~0.7.2": + "integrity" "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==" + "resolved" "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz" + "version" "0.7.3" + +"sourcemap-codec@^1.4.4": + "integrity" "sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==" + "resolved" "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz" + "version" "1.4.8" + +"spdx-correct@^3.0.0": + "integrity" "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==" + "resolved" "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz" + "version" "3.1.1" + dependencies: + "spdx-expression-parse" "^3.0.0" + "spdx-license-ids" "^3.0.0" + +"spdx-exceptions@^2.1.0": + "integrity" "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + "resolved" "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz" + "version" "2.3.0" + +"spdx-expression-parse@^3.0.0": + "integrity" "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==" + "resolved" "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz" + "version" "3.0.1" + dependencies: + "spdx-exceptions" "^2.1.0" + "spdx-license-ids" "^3.0.0" + +"spdx-license-ids@^3.0.0": + "integrity" "sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==" + "resolved" "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz" + "version" "3.0.7" + +"spdy-transport@^3.0.0": + "integrity" "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==" + "resolved" "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "debug" "^4.1.0" + "detect-node" "^2.0.4" + "hpack.js" "^2.1.6" + "obuf" "^1.1.2" + "readable-stream" "^3.0.6" + "wbuf" "^1.7.3" + +"spdy@^4.0.2": + "integrity" "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==" + "resolved" "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz" + "version" "4.0.2" + dependencies: + "debug" "^4.1.0" + "handle-thing" "^2.0.0" + "http-deceiver" "^1.2.7" + "select-hose" "^2.0.0" + "spdy-transport" "^3.0.0" + +"split-string@^3.0.1", "split-string@^3.0.2": + "integrity" "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==" + "resolved" "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz" + "version" "3.1.0" + dependencies: + "extend-shallow" "^3.0.0" + +"sprintf-js@~1.0.2": + "integrity" "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" + "resolved" "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz" + "version" "1.0.3" + +"sshpk@^1.7.0": + "integrity" "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==" + "resolved" "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz" + "version" "1.16.1" + dependencies: + "asn1" "~0.2.3" + "assert-plus" "^1.0.0" + "bcrypt-pbkdf" "^1.0.0" + "dashdash" "^1.12.0" + "ecc-jsbn" "~0.1.1" + "getpass" "^0.1.1" + "jsbn" "~0.1.0" + "safer-buffer" "^2.0.2" + "tweetnacl" "~0.14.0" + +"ssri@^6.0.1": + "integrity" "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==" + "resolved" "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz" + "version" "6.0.1" + dependencies: + "figgy-pudding" "^3.5.1" + +"ssri@^8.0.0": + "integrity" "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==" + "resolved" "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz" + "version" "8.0.1" + dependencies: + "minipass" "^3.1.1" + +"stable@^0.1.8": + "integrity" "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==" + "resolved" "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz" + "version" "0.1.8" + +"stack-utils@^2.0.2": + "integrity" "sha512-gL//fkxfWUsIlFL2Tl42Cl6+HFALEaB1FU76I/Fy+oZjRreP7OPMXFlGbxM7NQsI0ZpUfw76sHnv0WNYuTb7Iw==" + "resolved" "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.3.tgz" + "version" "2.0.3" + dependencies: + "escape-string-regexp" "^2.0.0" + +"stackframe@^1.1.1": + "integrity" "sha512-GrdeshiRmS1YLMYgzF16olf2jJ/IzxXY9lhKOskuVziubpTYcYqyOwYeJKzQkwy7uN0fYSsbsC4RQaXf9LCrYA==" + "resolved" "https://registry.npmjs.org/stackframe/-/stackframe-1.2.0.tgz" + "version" "1.2.0" + +"static-extend@^0.1.1": + "integrity" "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=" + "resolved" "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz" + "version" "0.1.2" + dependencies: + "define-property" "^0.2.5" + "object-copy" "^0.1.0" + +"statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2", "statuses@~1.5.0": + "integrity" "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=" + "resolved" "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz" + "version" "1.5.0" + +"stealthy-require@^1.1.1": + "integrity" "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=" + "resolved" "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz" + "version" "1.1.1" + +"stream-browserify@^2.0.1": + "integrity" "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==" + "resolved" "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "inherits" "~2.0.1" + "readable-stream" "^2.0.2" + +"stream-each@^1.1.0": + "integrity" "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==" + "resolved" "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz" + "version" "1.2.3" + dependencies: + "end-of-stream" "^1.1.0" + "stream-shift" "^1.0.0" + +"stream-http@^2.7.2": + "integrity" "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==" + "resolved" "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz" + "version" "2.8.3" + dependencies: + "builtin-status-codes" "^3.0.0" + "inherits" "^2.0.1" + "readable-stream" "^2.3.6" + "to-arraybuffer" "^1.0.0" + "xtend" "^4.0.0" + +"stream-shift@^1.0.0": + "integrity" "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" + "resolved" "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz" + "version" "1.0.1" + +"strict-uri-encode@^1.0.0": + "integrity" "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=" + "resolved" "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz" + "version" "1.1.0" + +"string_decoder@^1.0.0", "string_decoder@^1.1.1": + "integrity" "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==" + "resolved" "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" + "version" "1.3.0" + dependencies: + "safe-buffer" "~5.2.0" + +"string_decoder@~1.1.1": + "integrity" "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==" + "resolved" "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz" + "version" "1.1.1" + dependencies: + "safe-buffer" "~5.1.0" + +"string-length@^4.0.1": + "integrity" "sha512-PKyXUd0LK0ePjSOnWn34V2uD6acUWev9uy0Ft05k0E8xRW+SKcA0F7eMr7h5xlzfn+4O3N+55rduYyet3Jk+jw==" + "resolved" "https://registry.npmjs.org/string-length/-/string-length-4.0.1.tgz" + "version" "4.0.1" + dependencies: + "char-regex" "^1.0.2" + "strip-ansi" "^6.0.0" + +"string-natural-compare@^3.0.1": + "integrity" "sha512-n3sPwynL1nwKi3WJ6AIsClwBMa0zTi54fn2oLU6ndfTSIO05xaznjSf15PcBZU6FNWbmN5Q6cxT4V5hGvB4taw==" + "resolved" "https://registry.npmjs.org/string-natural-compare/-/string-natural-compare-3.0.1.tgz" + "version" "3.0.1" + +"string-width@^3.0.0", "string-width@^3.1.0": + "integrity" "sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==" + "resolved" "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz" + "version" "3.1.0" + dependencies: + "emoji-regex" "^7.0.1" + "is-fullwidth-code-point" "^2.0.0" + "strip-ansi" "^5.1.0" + +"string-width@^4.1.0", "string-width@^4.2.0": + "integrity" "sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==" + "resolved" "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz" + "version" "4.2.0" + dependencies: + "emoji-regex" "^8.0.0" + "is-fullwidth-code-point" "^3.0.0" + "strip-ansi" "^6.0.0" + +"string.prototype.matchall@^4.0.2": + "integrity" "sha512-pknFIWVachNcyqRfaQSeu/FUfpvJTe4uskUSZ9Wc1RijsPuzbZ8TyYT8WCNnntCjUEqQ3vUHMAfVj2+wLAisPQ==" + "resolved" "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.4.tgz" + "version" "4.0.4" + dependencies: + "call-bind" "^1.0.2" + "define-properties" "^1.1.3" + "es-abstract" "^1.18.0-next.2" + "has-symbols" "^1.0.1" + "internal-slot" "^1.0.3" + "regexp.prototype.flags" "^1.3.1" + "side-channel" "^1.0.4" + +"string.prototype.trimend@^1.0.1", "string.prototype.trimend@^1.0.3": + "integrity" "sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw==" + "resolved" "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz" + "version" "1.0.3" + dependencies: + "call-bind" "^1.0.0" + "define-properties" "^1.1.3" + +"string.prototype.trimstart@^1.0.1", "string.prototype.trimstart@^1.0.3": + "integrity" "sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg==" + "resolved" "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz" + "version" "1.0.3" + dependencies: + "call-bind" "^1.0.0" + "define-properties" "^1.1.3" + +"stringify-object@^3.3.0": + "integrity" "sha512-rHqiFh1elqCQ9WPLIC8I0Q/g/wj5J1eMkyoiD6eoQApWHP0FtlK7rqnhmabL5VUY9JQCcqwwvlOaSuutekgyrw==" + "resolved" "https://registry.npmjs.org/stringify-object/-/stringify-object-3.3.0.tgz" + "version" "3.3.0" + dependencies: + "get-own-enumerable-property-symbols" "^3.0.0" + "is-obj" "^1.0.1" + "is-regexp" "^1.0.0" + +"strip-ansi@^3.0.0": + "integrity" "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=" + "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz" + "version" "3.0.1" + dependencies: + "ansi-regex" "^2.0.0" + +"strip-ansi@^3.0.1": + "integrity" "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=" + "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz" + "version" "3.0.1" + dependencies: + "ansi-regex" "^2.0.0" + +"strip-ansi@^5.0.0": + "integrity" "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==" + "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" + "version" "5.2.0" + dependencies: + "ansi-regex" "^4.1.0" + +"strip-ansi@^5.1.0": + "integrity" "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==" + "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" + "version" "5.2.0" + dependencies: + "ansi-regex" "^4.1.0" + +"strip-ansi@^5.2.0": + "integrity" "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==" + "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz" + "version" "5.2.0" + dependencies: + "ansi-regex" "^4.1.0" + +"strip-ansi@^6.0.0", "strip-ansi@6.0.0": + "integrity" "sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==" + "resolved" "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz" + "version" "6.0.0" + dependencies: + "ansi-regex" "^5.0.0" + +"strip-bom@^3.0.0": + "integrity" "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" + "resolved" "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz" + "version" "3.0.0" + +"strip-bom@^4.0.0": + "integrity" "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==" + "resolved" "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz" + "version" "4.0.0" + +"strip-comments@^1.0.2": + "integrity" "sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==" + "resolved" "https://registry.npmjs.org/strip-comments/-/strip-comments-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "babel-extract-comments" "^1.0.0" + "babel-plugin-transform-object-rest-spread" "^6.26.0" + +"strip-eof@^1.0.0": + "integrity" "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=" + "resolved" "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz" + "version" "1.0.0" + +"strip-final-newline@^2.0.0": + "integrity" "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==" + "resolved" "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz" + "version" "2.0.0" + +"strip-indent@^3.0.0": + "integrity" "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==" + "resolved" "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz" + "version" "3.0.0" + dependencies: + "min-indent" "^1.0.0" + +"strip-json-comments@^3.1.0", "strip-json-comments@^3.1.1": + "integrity" "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==" + "resolved" "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz" + "version" "3.1.1" + +"style-loader@1.3.0": + "integrity" "sha512-V7TCORko8rs9rIqkSrlMfkqA63DfoGBBJmK1kKGCcSi+BWb4cqz0SRsnp4l6rU5iwOEd0/2ePv68SV22VXon4Q==" + "resolved" "https://registry.npmjs.org/style-loader/-/style-loader-1.3.0.tgz" + "version" "1.3.0" + dependencies: + "loader-utils" "^2.0.0" + "schema-utils" "^2.7.0" + +"styled-components@^4.0.0 || ^5.0.0", "styled-components@^5.2.1", "styled-components@>= 2": + "integrity" "sha512-sBdgLWrCFTKtmZm/9x7jkIabjFNVzCUeKfoQsM6R3saImkUnjx0QYdLwJHBjY9ifEcmjDamJDVfknWm1yxZPxQ==" + "resolved" "https://registry.npmjs.org/styled-components/-/styled-components-5.2.1.tgz" + "version" "5.2.1" + dependencies: + "@babel/helper-module-imports" "^7.0.0" + "@babel/traverse" "^7.4.5" + "@emotion/is-prop-valid" "^0.8.8" + "@emotion/stylis" "^0.8.4" + "@emotion/unitless" "^0.7.4" + "babel-plugin-styled-components" ">= 1" + "css-to-react-native" "^3.0.0" + "hoist-non-react-statics" "^3.0.0" + "shallowequal" "^1.1.0" + "supports-color" "^5.5.0" + +"stylehacks@^4.0.0": + "integrity" "sha512-7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g==" + "resolved" "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz" + "version" "4.0.3" + dependencies: + "browserslist" "^4.0.0" + "postcss" "^7.0.0" + "postcss-selector-parser" "^3.0.0" + +"supports-color@^5.3.0": + "integrity" "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" + "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" + "version" "5.5.0" + dependencies: + "has-flag" "^3.0.0" + +"supports-color@^5.5.0": + "integrity" "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==" + "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz" + "version" "5.5.0" + dependencies: + "has-flag" "^3.0.0" + +"supports-color@^6.1.0": + "integrity" "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==" + "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz" + "version" "6.1.0" + dependencies: + "has-flag" "^3.0.0" + +"supports-color@^7.0.0", "supports-color@^7.1.0": + "integrity" "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==" + "resolved" "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz" + "version" "7.2.0" + dependencies: + "has-flag" "^4.0.0" + +"supports-hyperlinks@^2.0.0": + "integrity" "sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA==" + "resolved" "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz" + "version" "2.1.0" + dependencies: + "has-flag" "^4.0.0" + "supports-color" "^7.0.0" + +"svg-parser@^2.0.2": + "integrity" "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==" + "resolved" "https://registry.npmjs.org/svg-parser/-/svg-parser-2.0.4.tgz" + "version" "2.0.4" + +"svgo@^1.0.0", "svgo@^1.2.2": + "integrity" "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==" + "resolved" "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz" + "version" "1.3.2" + dependencies: + "chalk" "^2.4.1" + "coa" "^2.0.2" + "css-select" "^2.0.0" + "css-select-base-adapter" "^0.1.1" + "css-tree" "1.0.0-alpha.37" + "csso" "^4.0.2" + "js-yaml" "^3.13.1" + "mkdirp" "~0.5.1" + "object.values" "^1.1.0" + "sax" "~1.2.4" + "stable" "^0.1.8" + "unquote" "~1.1.1" + "util.promisify" "~1.0.0" + +"symbol-observable@1.2.0": + "integrity" "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==" + "resolved" "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz" + "version" "1.2.0" + +"symbol-tree@^3.2.4": + "integrity" "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==" + "resolved" "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz" + "version" "3.2.4" + +"table@^6.0.4": + "integrity" "sha512-rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g==" + "resolved" "https://registry.npmjs.org/table/-/table-6.0.7.tgz" + "version" "6.0.7" + dependencies: + "ajv" "^7.0.2" + "lodash" "^4.17.20" + "slice-ansi" "^4.0.0" + "string-width" "^4.2.0" + +"tapable@^1.0.0", "tapable@^1.1.3": + "integrity" "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==" + "resolved" "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz" + "version" "1.1.3" + +"tar@^6.0.2": + "integrity" "sha512-DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA==" + "resolved" "https://registry.npmjs.org/tar/-/tar-6.1.0.tgz" + "version" "6.1.0" + dependencies: + "chownr" "^2.0.0" + "fs-minipass" "^2.0.0" + "minipass" "^3.0.0" + "minizlib" "^2.1.1" + "mkdirp" "^1.0.3" + "yallist" "^4.0.0" + +"temp-dir@^1.0.0": + "integrity" "sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=" + "resolved" "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz" + "version" "1.0.0" + +"tempy@^0.3.0": + "integrity" "sha512-WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ==" + "resolved" "https://registry.npmjs.org/tempy/-/tempy-0.3.0.tgz" + "version" "0.3.0" + dependencies: + "temp-dir" "^1.0.0" + "type-fest" "^0.3.1" + "unique-string" "^1.0.0" + +"terminal-link@^2.0.0": + "integrity" "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==" + "resolved" "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz" + "version" "2.1.1" + dependencies: + "ansi-escapes" "^4.2.1" + "supports-hyperlinks" "^2.0.0" + +"terser-webpack-plugin@^1.4.3": + "integrity" "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==" + "resolved" "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz" + "version" "1.4.5" + dependencies: + "cacache" "^12.0.2" + "find-cache-dir" "^2.1.0" + "is-wsl" "^1.1.0" + "schema-utils" "^1.0.0" + "serialize-javascript" "^4.0.0" + "source-map" "^0.6.1" + "terser" "^4.1.2" + "webpack-sources" "^1.4.0" + "worker-farm" "^1.7.0" + +"terser-webpack-plugin@4.2.3": + "integrity" "sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==" + "resolved" "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-4.2.3.tgz" + "version" "4.2.3" + dependencies: + "cacache" "^15.0.5" + "find-cache-dir" "^3.3.1" + "jest-worker" "^26.5.0" + "p-limit" "^3.0.2" + "schema-utils" "^3.0.0" + "serialize-javascript" "^5.0.1" + "source-map" "^0.6.1" + "terser" "^5.3.4" + "webpack-sources" "^1.4.3" + +"terser@^4.1.2", "terser@^4.6.2", "terser@^4.6.3": + "integrity" "sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw==" + "resolved" "https://registry.npmjs.org/terser/-/terser-4.8.0.tgz" + "version" "4.8.0" + dependencies: + "commander" "^2.20.0" + "source-map" "~0.6.1" + "source-map-support" "~0.5.12" + +"terser@^5.3.4": + "integrity" "sha512-vyqLMoqadC1uR0vywqOZzriDYzgEkNJFK4q9GeyOBHIbiECHiWLKcWfbQWAUaPfxkjDhapSlZB9f7fkMrvkVjA==" + "resolved" "https://registry.npmjs.org/terser/-/terser-5.6.0.tgz" + "version" "5.6.0" + dependencies: + "commander" "^2.20.0" + "source-map" "~0.7.2" + "source-map-support" "~0.5.19" + +"test-exclude@^6.0.0": + "integrity" "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==" + "resolved" "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz" + "version" "6.0.0" + dependencies: + "@istanbuljs/schema" "^0.1.2" + "glob" "^7.1.4" + "minimatch" "^3.0.4" + +"text-table@^0.2.0", "text-table@0.2.0": + "integrity" "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=" + "resolved" "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz" + "version" "0.2.0" + +"throat@^5.0.0": + "integrity" "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==" + "resolved" "https://registry.npmjs.org/throat/-/throat-5.0.0.tgz" + "version" "5.0.0" + +"through2@^2.0.0": + "integrity" "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==" + "resolved" "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz" + "version" "2.0.5" + dependencies: + "readable-stream" "~2.3.6" + "xtend" "~4.0.1" + +"thunky@^1.0.2": + "integrity" "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==" + "resolved" "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz" + "version" "1.1.0" + +"timers-browserify@^2.0.4": + "integrity" "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==" + "resolved" "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz" + "version" "2.0.12" + dependencies: + "setimmediate" "^1.0.4" + +"timsort@^0.3.0": + "integrity" "sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=" + "resolved" "https://registry.npmjs.org/timsort/-/timsort-0.3.0.tgz" + "version" "0.3.0" + +"tiny-invariant@^1.0.2": + "integrity" "sha512-ytxQvrb1cPc9WBEI/HSeYYoGD0kWnGEOR8RY6KomWLBVhqz0RgTwVO9dLrGz7dC+nN9llyI7OKAgRq8Vq4ZBSw==" + "resolved" "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.1.0.tgz" + "version" "1.1.0" + +"tiny-warning@^1.0.0", "tiny-warning@^1.0.2", "tiny-warning@^1.0.3": + "integrity" "sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==" + "resolved" "https://registry.npmjs.org/tiny-warning/-/tiny-warning-1.0.3.tgz" + "version" "1.0.3" + +"tmpl@1.0.x": + "integrity" "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=" + "resolved" "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz" + "version" "1.0.4" + +"to-arraybuffer@^1.0.0": + "integrity" "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=" + "resolved" "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz" + "version" "1.0.1" + +"to-fast-properties@^2.0.0": + "integrity" "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" + "resolved" "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz" + "version" "2.0.0" + +"to-object-path@^0.3.0": + "integrity" "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=" + "resolved" "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz" + "version" "0.3.0" + dependencies: + "kind-of" "^3.0.2" + +"to-regex-range@^2.1.0": + "integrity" "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=" + "resolved" "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz" + "version" "2.1.1" + dependencies: + "is-number" "^3.0.0" + "repeat-string" "^1.6.1" + +"to-regex-range@^5.0.1": + "integrity" "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==" + "resolved" "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz" + "version" "5.0.1" + dependencies: + "is-number" "^7.0.0" + +"to-regex@^3.0.1", "to-regex@^3.0.2": + "integrity" "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==" + "resolved" "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz" + "version" "3.0.2" + dependencies: + "define-property" "^2.0.2" + "extend-shallow" "^3.0.2" + "regex-not" "^1.0.2" + "safe-regex" "^1.1.0" + +"toidentifier@1.0.0": + "integrity" "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" + "resolved" "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz" + "version" "1.0.0" + +"tough-cookie@^2.3.3", "tough-cookie@~2.5.0": + "integrity" "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==" + "resolved" "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz" + "version" "2.5.0" + dependencies: + "psl" "^1.1.28" + "punycode" "^2.1.1" + +"tough-cookie@^3.0.1": + "integrity" "sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg==" + "resolved" "https://registry.npmjs.org/tough-cookie/-/tough-cookie-3.0.1.tgz" + "version" "3.0.1" + dependencies: + "ip-regex" "^2.1.0" + "psl" "^1.1.28" + "punycode" "^2.1.1" + +"tr46@^2.0.2": + "integrity" "sha512-3n1qG+/5kg+jrbTzwAykB5yRYtQCTqOGKq5U5PE3b0a1/mzo6snDhjGS0zJVJunO0NrT3Dg1MLy5TjWP/UJppg==" + "resolved" "https://registry.npmjs.org/tr46/-/tr46-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "punycode" "^2.1.1" + +"tryer@^1.0.1": + "integrity" "sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA==" + "resolved" "https://registry.npmjs.org/tryer/-/tryer-1.0.1.tgz" + "version" "1.0.1" + +"ts-pnp@^1.1.6", "ts-pnp@1.2.0": + "integrity" "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==" + "resolved" "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz" + "version" "1.2.0" + +"tsconfig-paths@^3.9.0": + "integrity" "sha512-dRcuzokWhajtZWkQsDVKbWyY+jgcLC5sqJhg2PSgf4ZkH2aHPvaOY8YWGhmjb68b5qqTfasSsDO9k7RUiEmZAw==" + "resolved" "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.9.0.tgz" + "version" "3.9.0" + dependencies: + "@types/json5" "^0.0.29" + "json5" "^1.0.1" + "minimist" "^1.2.0" + "strip-bom" "^3.0.0" + +"tslib@^1.8.1": + "integrity" "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + "resolved" "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" + "version" "1.14.1" + +"tslib@^1.9.0": + "integrity" "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + "resolved" "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz" + "version" "1.14.1" + +"tslib@^2.0.3": + "integrity" "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==" + "resolved" "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz" + "version" "2.1.0" + +"tsutils@^3.17.1": + "integrity" "sha512-RYbuQuvkhuqVeXweWT3tJLKOEJ/UUw9GjNEZGWdrLLlM+611o1gwLHBpxoFJKKl25fLprp2eVthtKs5JOrNeXg==" + "resolved" "https://registry.npmjs.org/tsutils/-/tsutils-3.20.0.tgz" + "version" "3.20.0" + dependencies: + "tslib" "^1.8.1" + +"tty-browserify@0.0.0": + "integrity" "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=" + "resolved" "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz" + "version" "0.0.0" + +"tunnel-agent@^0.6.0": + "integrity" "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=" + "resolved" "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz" + "version" "0.6.0" + dependencies: + "safe-buffer" "^5.0.1" + +"tweetnacl@^0.14.3", "tweetnacl@~0.14.0": + "integrity" "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" + "resolved" "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz" + "version" "0.14.5" + +"type-check@^0.4.0": + "integrity" "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" + "resolved" "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" + "version" "0.4.0" + dependencies: + "prelude-ls" "^1.2.1" + +"type-check@~0.3.2": + "integrity" "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=" + "resolved" "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz" + "version" "0.3.2" + dependencies: + "prelude-ls" "~1.1.2" + +"type-check@~0.4.0": + "integrity" "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==" + "resolved" "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz" + "version" "0.4.0" + dependencies: + "prelude-ls" "^1.2.1" + +"type-detect@4.0.8": + "integrity" "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==" + "resolved" "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz" + "version" "4.0.8" + +"type-fest@^0.11.0": + "integrity" "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==" + "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz" + "version" "0.11.0" + +"type-fest@^0.13.1", "type-fest@^0.8.1": + "integrity" "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==" + "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz" + "version" "0.8.1" + +"type-fest@^0.3.1": + "integrity" "sha512-cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==" + "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz" + "version" "0.3.1" + +"type-fest@^0.6.0": + "integrity" "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==" + "resolved" "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz" + "version" "0.6.0" + +"type-is@~1.6.17", "type-is@~1.6.18": + "integrity" "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==" + "resolved" "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz" + "version" "1.6.18" + dependencies: + "media-typer" "0.3.0" + "mime-types" "~2.1.24" + +"type@^1.0.1": + "integrity" "sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==" + "resolved" "https://registry.npmjs.org/type/-/type-1.2.0.tgz" + "version" "1.2.0" + +"type@^2.0.0": + "integrity" "sha512-rgPIqOdfK/4J9FhiVrZ3cveAjRRo5rsQBAIhnylX874y1DX/kEKSVdLsnuHB6l1KTjHyU01VjiMBHgU2adejyg==" + "resolved" "https://registry.npmjs.org/type/-/type-2.3.0.tgz" + "version" "2.3.0" + +"typedarray-to-buffer@^3.1.5": + "integrity" "sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==" + "resolved" "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz" + "version" "3.1.5" + dependencies: + "is-typedarray" "^1.0.0" + +"typedarray@^0.0.6": + "integrity" "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=" + "resolved" "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz" + "version" "0.0.6" + +"typescript@^3.2.1 || ^4", "typescript@^4.1.2", "typescript@>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta": + "integrity" "sha512-tbb+NVrLfnsJy3M59lsDgrzWIflR4d4TIUjz+heUnHZwdF7YsrMTKoRERiIvI2lvBG95dfpLxB21WZhys1bgaQ==" + "resolved" "https://registry.npmjs.org/typescript/-/typescript-4.2.2.tgz" + "version" "4.2.2" + +"unicode-canonical-property-names-ecmascript@^1.0.4": + "integrity" "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==" + "resolved" "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz" + "version" "1.0.4" + +"unicode-match-property-ecmascript@^1.0.4": + "integrity" "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==" + "resolved" "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz" + "version" "1.0.4" + dependencies: + "unicode-canonical-property-names-ecmascript" "^1.0.4" + "unicode-property-aliases-ecmascript" "^1.0.4" + +"unicode-match-property-value-ecmascript@^1.2.0": + "integrity" "sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==" + "resolved" "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz" + "version" "1.2.0" + +"unicode-property-aliases-ecmascript@^1.0.4": + "integrity" "sha512-PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==" + "resolved" "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz" + "version" "1.1.0" + +"union-value@^1.0.0": + "integrity" "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==" + "resolved" "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "arr-union" "^3.1.0" + "get-value" "^2.0.6" + "is-extendable" "^0.1.1" + "set-value" "^2.0.1" + +"uniq@^1.0.1": + "integrity" "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=" + "resolved" "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz" + "version" "1.0.1" + +"uniqs@^2.0.0": + "integrity" "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=" + "resolved" "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz" + "version" "2.0.0" + +"unique-filename@^1.1.1": + "integrity" "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==" + "resolved" "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz" + "version" "1.1.1" + dependencies: + "unique-slug" "^2.0.0" + +"unique-slug@^2.0.0": + "integrity" "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==" + "resolved" "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "imurmurhash" "^0.1.4" + +"unique-string@^1.0.0": + "integrity" "sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo=" + "resolved" "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "crypto-random-string" "^1.0.0" + +"universalify@^0.1.0": + "integrity" "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==" + "resolved" "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz" + "version" "0.1.2" + +"universalify@^2.0.0": + "integrity" "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" + "resolved" "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz" + "version" "2.0.0" + +"unpipe@~1.0.0", "unpipe@1.0.0": + "integrity" "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=" + "resolved" "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" + "version" "1.0.0" + +"unquote@~1.1.1": + "integrity" "sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=" + "resolved" "https://registry.npmjs.org/unquote/-/unquote-1.1.1.tgz" + "version" "1.1.1" + +"unset-value@^1.0.0": + "integrity" "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=" + "resolved" "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "has-value" "^0.3.1" + "isobject" "^3.0.0" + +"upath@^1.1.1", "upath@^1.1.2", "upath@^1.2.0": + "integrity" "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==" + "resolved" "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz" + "version" "1.2.0" + +"uri-js@^4.2.2": + "integrity" "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==" + "resolved" "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz" + "version" "4.4.1" + dependencies: + "punycode" "^2.1.0" + +"urix@^0.1.0": + "integrity" "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=" + "resolved" "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz" + "version" "0.1.0" + +"url-loader@4.1.1": + "integrity" "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==" + "resolved" "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz" + "version" "4.1.1" + dependencies: + "loader-utils" "^2.0.0" + "mime-types" "^2.1.27" + "schema-utils" "^3.0.0" + +"url-parse@^1.4.3", "url-parse@^1.4.7": + "integrity" "sha512-HOfCOUJt7iSYzEx/UqgtwKRMC6EU91NFhsCHMv9oM03VJcVo2Qrp8T8kI9D7amFf1cu+/3CEhgb3rF9zL7k85Q==" + "resolved" "https://registry.npmjs.org/url-parse/-/url-parse-1.5.1.tgz" + "version" "1.5.1" + dependencies: + "querystringify" "^2.1.1" + "requires-port" "^1.0.0" + +"url@^0.11.0": + "integrity" "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=" + "resolved" "https://registry.npmjs.org/url/-/url-0.11.0.tgz" + "version" "0.11.0" + dependencies: + "punycode" "1.3.2" + "querystring" "0.2.0" + +"use@^3.1.0": + "integrity" "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==" + "resolved" "https://registry.npmjs.org/use/-/use-3.1.1.tgz" + "version" "3.1.1" + +"util-deprecate@^1.0.1", "util-deprecate@^1.0.2", "util-deprecate@~1.0.1": + "integrity" "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" + "resolved" "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" + "version" "1.0.2" + +"util.promisify@~1.0.0": + "integrity" "sha512-g9JpC/3He3bm38zsLupWryXHoEcS22YHthuPQSJdMy6KNrzIRzWqcsHzD/WUnqe45whVou4VIsPew37DoXWNrA==" + "resolved" "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.1.tgz" + "version" "1.0.1" + dependencies: + "define-properties" "^1.1.3" + "es-abstract" "^1.17.2" + "has-symbols" "^1.0.1" + "object.getownpropertydescriptors" "^2.1.0" + +"util.promisify@1.0.0": + "integrity" "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==" + "resolved" "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz" + "version" "1.0.0" + dependencies: + "define-properties" "^1.1.2" + "object.getownpropertydescriptors" "^2.0.3" + +"util@^0.11.0": + "integrity" "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==" + "resolved" "https://registry.npmjs.org/util/-/util-0.11.1.tgz" + "version" "0.11.1" + dependencies: + "inherits" "2.0.3" + +"util@0.10.3": + "integrity" "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=" + "resolved" "https://registry.npmjs.org/util/-/util-0.10.3.tgz" + "version" "0.10.3" + dependencies: + "inherits" "2.0.1" + +"utila@~0.4": + "integrity" "sha1-ihagXURWV6Oupe7MWxKk+lN5dyw=" + "resolved" "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz" + "version" "0.4.0" + +"utils-merge@1.0.1": + "integrity" "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=" + "resolved" "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz" + "version" "1.0.1" + +"uuid@^3.3.2", "uuid@^3.4.0": + "integrity" "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" + "resolved" "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz" + "version" "3.4.0" + +"uuid@^8.3.0": + "integrity" "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==" + "resolved" "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz" + "version" "8.3.2" + +"v8-compile-cache@^2.0.3": + "integrity" "sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q==" + "resolved" "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz" + "version" "2.2.0" + +"v8-to-istanbul@^7.0.0": + "integrity" "sha512-uXUVqNUCLa0AH1vuVxzi+MI4RfxEOKt9pBgKwHbgH7st8Kv2P1m+jvWNnektzBh5QShF3ODgKmUFCf38LnVz1g==" + "resolved" "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.0.tgz" + "version" "7.1.0" + dependencies: + "@types/istanbul-lib-coverage" "^2.0.1" + "convert-source-map" "^1.6.0" + "source-map" "^0.7.3" + +"validate-npm-package-license@^3.0.1": + "integrity" "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==" + "resolved" "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz" + "version" "3.0.4" + dependencies: + "spdx-correct" "^3.0.0" + "spdx-expression-parse" "^3.0.0" + +"value-equal@^1.0.1": + "integrity" "sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==" + "resolved" "https://registry.npmjs.org/value-equal/-/value-equal-1.0.1.tgz" + "version" "1.0.1" + +"vary@~1.1.2": + "integrity" "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=" + "resolved" "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz" + "version" "1.1.2" + +"vendors@^1.0.0": + "integrity" "sha512-/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w==" + "resolved" "https://registry.npmjs.org/vendors/-/vendors-1.0.4.tgz" + "version" "1.0.4" + +"verror@1.10.0": + "integrity" "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=" + "resolved" "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz" + "version" "1.10.0" + dependencies: + "assert-plus" "^1.0.0" + "core-util-is" "1.0.2" + "extsprintf" "^1.2.0" + +"vm-browserify@^1.0.1": + "integrity" "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + "resolved" "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz" + "version" "1.1.2" + +"w3c-hr-time@^1.0.2": + "integrity" "sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==" + "resolved" "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz" + "version" "1.0.2" + dependencies: + "browser-process-hrtime" "^1.0.0" + +"w3c-xmlserializer@^2.0.0": + "integrity" "sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==" + "resolved" "https://registry.npmjs.org/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "xml-name-validator" "^3.0.0" + +"walker@^1.0.7", "walker@~1.0.5": + "integrity" "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=" + "resolved" "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz" + "version" "1.0.7" + dependencies: + "makeerror" "1.0.x" + +"watchpack-chokidar2@^2.0.1": + "integrity" "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==" + "resolved" "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz" + "version" "2.0.1" + dependencies: + "chokidar" "^2.1.8" + +"watchpack@^1.7.4": + "integrity" "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==" + "resolved" "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz" + "version" "1.7.5" + dependencies: + "graceful-fs" "^4.1.2" + "neo-async" "^2.5.0" + optionalDependencies: + "chokidar" "^3.4.1" + "watchpack-chokidar2" "^2.0.1" + +"wbuf@^1.1.0", "wbuf@^1.7.3": + "integrity" "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==" + "resolved" "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz" + "version" "1.7.3" + dependencies: + "minimalistic-assert" "^1.0.0" + +"web-vitals@^1.0.1": + "integrity" "sha512-1cx54eRxY/+M0KNKdNpNnuXAXG+vJEvwScV4DiV9rOYDguHoeDIzm09ghBohOPtkqPO5OtPC14FWkNva3SDisg==" + "resolved" "https://registry.npmjs.org/web-vitals/-/web-vitals-1.1.0.tgz" + "version" "1.1.0" + +"webidl-conversions@^5.0.0": + "integrity" "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==" + "resolved" "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz" + "version" "5.0.0" + +"webidl-conversions@^6.1.0": + "integrity" "sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==" + "resolved" "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-6.1.0.tgz" + "version" "6.1.0" + +"webpack-dev-middleware@^3.7.2": + "integrity" "sha512-djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==" + "resolved" "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz" + "version" "3.7.3" + dependencies: + "memory-fs" "^0.4.1" + "mime" "^2.4.4" + "mkdirp" "^0.5.1" + "range-parser" "^1.2.1" + "webpack-log" "^2.0.0" + +"webpack-dev-server@3.11.1", "webpack-dev-server@3.x": + "integrity" "sha512-u4R3mRzZkbxQVa+MBWi2uVpB5W59H3ekZAJsQlKUTdl7Elcah2EhygTPLmeFXybQkf9i2+L0kn7ik9SnXa6ihQ==" + "resolved" "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.11.1.tgz" + "version" "3.11.1" + dependencies: + "ansi-html" "0.0.7" + "bonjour" "^3.5.0" + "chokidar" "^2.1.8" + "compression" "^1.7.4" + "connect-history-api-fallback" "^1.6.0" + "debug" "^4.1.1" + "del" "^4.1.1" + "express" "^4.17.1" + "html-entities" "^1.3.1" + "http-proxy-middleware" "0.19.1" + "import-local" "^2.0.0" + "internal-ip" "^4.3.0" + "ip" "^1.1.5" + "is-absolute-url" "^3.0.3" + "killable" "^1.0.1" + "loglevel" "^1.6.8" + "opn" "^5.5.0" + "p-retry" "^3.0.1" + "portfinder" "^1.0.26" + "schema-utils" "^1.0.0" + "selfsigned" "^1.10.8" + "semver" "^6.3.0" + "serve-index" "^1.9.1" + "sockjs" "^0.3.21" + "sockjs-client" "^1.5.0" + "spdy" "^4.0.2" + "strip-ansi" "^3.0.1" + "supports-color" "^6.1.0" + "url" "^0.11.0" + "webpack-dev-middleware" "^3.7.2" + "webpack-log" "^2.0.0" + "ws" "^6.2.1" + "yargs" "^13.3.2" + +"webpack-log@^2.0.0": + "integrity" "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==" + "resolved" "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz" + "version" "2.0.0" + dependencies: + "ansi-colors" "^3.0.0" + "uuid" "^3.3.2" + +"webpack-manifest-plugin@2.2.0": + "integrity" "sha512-9S6YyKKKh/Oz/eryM1RyLVDVmy3NSPV0JXMRhZ18fJsq+AwGxUY34X54VNwkzYcEmEkDwNxuEOboCZEebJXBAQ==" + "resolved" "https://registry.npmjs.org/webpack-manifest-plugin/-/webpack-manifest-plugin-2.2.0.tgz" + "version" "2.2.0" + dependencies: + "fs-extra" "^7.0.0" + "lodash" ">=3.5 <5" + "object.entries" "^1.1.0" + "tapable" "^1.0.0" + +"webpack-sources@^1.1.0", "webpack-sources@^1.3.0", "webpack-sources@^1.4.0", "webpack-sources@^1.4.1", "webpack-sources@^1.4.3": + "integrity" "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==" + "resolved" "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz" + "version" "1.4.3" + dependencies: + "source-list-map" "^2.0.0" + "source-map" "~0.6.1" + +"webpack@^4.0.0", "webpack@^4.0.0 || ^5.0.0", "webpack@^4.27.0 || ^5.0.0", "webpack@^4.36.0 || ^5.0.0", "webpack@^4.4.0 || ^5.0.0", "webpack@>=2", "webpack@>=4.43.0 <6.0.0", "webpack@2 || 3 || 4", "webpack@4.44.2": + "integrity" "sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==" + "resolved" "https://registry.npmjs.org/webpack/-/webpack-4.44.2.tgz" + "version" "4.44.2" + dependencies: + "@webassemblyjs/ast" "1.9.0" + "@webassemblyjs/helper-module-context" "1.9.0" + "@webassemblyjs/wasm-edit" "1.9.0" + "@webassemblyjs/wasm-parser" "1.9.0" + "acorn" "^6.4.1" + "ajv" "^6.10.2" + "ajv-keywords" "^3.4.1" + "chrome-trace-event" "^1.0.2" + "enhanced-resolve" "^4.3.0" + "eslint-scope" "^4.0.3" + "json-parse-better-errors" "^1.0.2" + "loader-runner" "^2.4.0" + "loader-utils" "^1.2.3" + "memory-fs" "^0.4.1" + "micromatch" "^3.1.10" + "mkdirp" "^0.5.3" + "neo-async" "^2.6.1" + "node-libs-browser" "^2.2.1" + "schema-utils" "^1.0.0" + "tapable" "^1.1.3" + "terser-webpack-plugin" "^1.4.3" + "watchpack" "^1.7.4" + "webpack-sources" "^1.4.1" + +"websocket-driver@^0.7.4", "websocket-driver@>=0.5.1": + "integrity" "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==" + "resolved" "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz" + "version" "0.7.4" + dependencies: + "http-parser-js" ">=0.5.1" + "safe-buffer" ">=5.1.0" + "websocket-extensions" ">=0.1.1" + +"websocket-extensions@>=0.1.1": + "integrity" "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==" + "resolved" "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz" + "version" "0.1.4" + +"whatwg-encoding@^1.0.5": + "integrity" "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==" + "resolved" "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz" + "version" "1.0.5" + dependencies: + "iconv-lite" "0.4.24" + +"whatwg-fetch@^3.4.1": + "integrity" "sha512-IEmN/ZfmMw6G1hgZpVd0LuZXOQDisrMOZrzYd5x3RAK4bMPlJohKUZWZ9t/QsTvH0dV9TbPDcc2OSuIDcihnHA==" + "resolved" "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-3.6.1.tgz" + "version" "3.6.1" + +"whatwg-mimetype@^2.3.0": + "integrity" "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==" + "resolved" "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz" + "version" "2.3.0" + +"whatwg-url@^8.0.0": + "integrity" "sha512-vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw==" + "resolved" "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.4.0.tgz" + "version" "8.4.0" + dependencies: + "lodash.sortby" "^4.7.0" + "tr46" "^2.0.2" + "webidl-conversions" "^6.1.0" + +"which-module@^2.0.0": + "integrity" "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=" + "resolved" "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz" + "version" "2.0.0" + +"which@^1.2.9", "which@^1.3.1": + "integrity" "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==" + "resolved" "https://registry.npmjs.org/which/-/which-1.3.1.tgz" + "version" "1.3.1" + dependencies: + "isexe" "^2.0.0" + +"which@^2.0.1": + "integrity" "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" + "resolved" "https://registry.npmjs.org/which/-/which-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "isexe" "^2.0.0" + +"which@^2.0.2": + "integrity" "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==" + "resolved" "https://registry.npmjs.org/which/-/which-2.0.2.tgz" + "version" "2.0.2" + dependencies: + "isexe" "^2.0.0" + +"word-wrap@^1.2.3", "word-wrap@~1.2.3": + "integrity" "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==" + "resolved" "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz" + "version" "1.2.3" + +"workbox-background-sync@^5.1.4": + "integrity" "sha512-AH6x5pYq4vwQvfRDWH+vfOePfPIYQ00nCEB7dJRU1e0n9+9HMRyvI63FlDvtFT2AvXVRsXvUt7DNMEToyJLpSA==" + "resolved" "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + +"workbox-broadcast-update@^5.1.4": + "integrity" "sha512-HTyTWkqXvHRuqY73XrwvXPud/FN6x3ROzkfFPsRjtw/kGZuZkPzfeH531qdUGfhtwjmtO/ZzXcWErqVzJNdXaA==" + "resolved" "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + +"workbox-build@^5.1.4": + "integrity" "sha512-xUcZn6SYU8usjOlfLb9Y2/f86Gdo+fy1fXgH8tJHjxgpo53VVsqRX0lUDw8/JuyzNmXuo8vXX14pXX2oIm9Bow==" + "resolved" "https://registry.npmjs.org/workbox-build/-/workbox-build-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "@babel/core" "^7.8.4" + "@babel/preset-env" "^7.8.4" + "@babel/runtime" "^7.8.4" + "@hapi/joi" "^15.1.0" + "@rollup/plugin-node-resolve" "^7.1.1" + "@rollup/plugin-replace" "^2.3.1" + "@surma/rollup-plugin-off-main-thread" "^1.1.1" + "common-tags" "^1.8.0" + "fast-json-stable-stringify" "^2.1.0" + "fs-extra" "^8.1.0" + "glob" "^7.1.6" + "lodash.template" "^4.5.0" + "pretty-bytes" "^5.3.0" + "rollup" "^1.31.1" + "rollup-plugin-babel" "^4.3.3" + "rollup-plugin-terser" "^5.3.1" + "source-map" "^0.7.3" + "source-map-url" "^0.4.0" + "stringify-object" "^3.3.0" + "strip-comments" "^1.0.2" + "tempy" "^0.3.0" + "upath" "^1.2.0" + "workbox-background-sync" "^5.1.4" + "workbox-broadcast-update" "^5.1.4" + "workbox-cacheable-response" "^5.1.4" + "workbox-core" "^5.1.4" + "workbox-expiration" "^5.1.4" + "workbox-google-analytics" "^5.1.4" + "workbox-navigation-preload" "^5.1.4" + "workbox-precaching" "^5.1.4" + "workbox-range-requests" "^5.1.4" + "workbox-routing" "^5.1.4" + "workbox-strategies" "^5.1.4" + "workbox-streams" "^5.1.4" + "workbox-sw" "^5.1.4" + "workbox-window" "^5.1.4" + +"workbox-cacheable-response@^5.1.4": + "integrity" "sha512-0bfvMZs0Of1S5cdswfQK0BXt6ulU5kVD4lwer2CeI+03czHprXR3V4Y8lPTooamn7eHP8Iywi5QjyAMjw0qauA==" + "resolved" "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + +"workbox-core@^5.1.4": + "integrity" "sha512-+4iRQan/1D8I81nR2L5vcbaaFskZC2CL17TLbvWVzQ4qiF/ytOGF6XeV54pVxAvKUtkLANhk8TyIUMtiMw2oDg==" + "resolved" "https://registry.npmjs.org/workbox-core/-/workbox-core-5.1.4.tgz" + "version" "5.1.4" + +"workbox-expiration@^5.1.4": + "integrity" "sha512-oDO/5iC65h2Eq7jctAv858W2+CeRW5e0jZBMNRXpzp0ZPvuT6GblUiHnAsC5W5lANs1QS9atVOm4ifrBiYY7AQ==" + "resolved" "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + +"workbox-google-analytics@^5.1.4": + "integrity" "sha512-0IFhKoEVrreHpKgcOoddV+oIaVXBFKXUzJVBI+nb0bxmcwYuZMdteBTp8AEDJacENtc9xbR0wa9RDCnYsCDLjA==" + "resolved" "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-background-sync" "^5.1.4" + "workbox-core" "^5.1.4" + "workbox-routing" "^5.1.4" + "workbox-strategies" "^5.1.4" + +"workbox-navigation-preload@^5.1.4": + "integrity" "sha512-Wf03osvK0wTflAfKXba//QmWC5BIaIZARU03JIhAEO2wSB2BDROWI8Q/zmianf54kdV7e1eLaIEZhth4K4MyfQ==" + "resolved" "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + +"workbox-precaching@^5.1.4": + "integrity" "sha512-gCIFrBXmVQLFwvAzuGLCmkUYGVhBb7D1k/IL7pUJUO5xacjLcFUaLnnsoVepBGAiKw34HU1y/YuqvTKim9qAZA==" + "resolved" "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + +"workbox-range-requests@^5.1.4": + "integrity" "sha512-1HSujLjgTeoxHrMR2muDW2dKdxqCGMc1KbeyGcmjZZAizJTFwu7CWLDmLv6O1ceWYrhfuLFJO+umYMddk2XMhw==" + "resolved" "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + +"workbox-routing@^5.1.4": + "integrity" "sha512-8ljknRfqE1vEQtnMtzfksL+UXO822jJlHTIR7+BtJuxQ17+WPZfsHqvk1ynR/v0EHik4x2+826Hkwpgh4GKDCw==" + "resolved" "https://registry.npmjs.org/workbox-routing/-/workbox-routing-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + +"workbox-strategies@^5.1.4": + "integrity" "sha512-VVS57LpaJTdjW3RgZvPwX0NlhNmscR7OQ9bP+N/34cYMDzXLyA6kqWffP6QKXSkca1OFo/v6v7hW7zrrguo6EA==" + "resolved" "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + "workbox-routing" "^5.1.4" + +"workbox-streams@^5.1.4": + "integrity" "sha512-xU8yuF1hI/XcVhJUAfbQLa1guQUhdLMPQJkdT0kn6HP5CwiPOGiXnSFq80rAG4b1kJUChQQIGPrq439FQUNVrw==" + "resolved" "https://registry.npmjs.org/workbox-streams/-/workbox-streams-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + "workbox-routing" "^5.1.4" + +"workbox-sw@^5.1.4": + "integrity" "sha512-9xKnKw95aXwSNc8kk8gki4HU0g0W6KXu+xks7wFuC7h0sembFnTrKtckqZxbSod41TDaGh+gWUA5IRXrL0ECRA==" + "resolved" "https://registry.npmjs.org/workbox-sw/-/workbox-sw-5.1.4.tgz" + "version" "5.1.4" + +"workbox-webpack-plugin@5.1.4": + "integrity" "sha512-PZafF4HpugZndqISi3rZ4ZK4A4DxO8rAqt2FwRptgsDx7NF8TVKP86/huHquUsRjMGQllsNdn4FNl8CD/UvKmQ==" + "resolved" "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "@babel/runtime" "^7.5.5" + "fast-json-stable-stringify" "^2.0.0" + "source-map-url" "^0.4.0" + "upath" "^1.1.2" + "webpack-sources" "^1.3.0" + "workbox-build" "^5.1.4" + +"workbox-window@^5.1.4": + "integrity" "sha512-vXQtgTeMCUq/4pBWMfQX8Ee7N2wVC4Q7XYFqLnfbXJ2hqew/cU1uMTD2KqGEgEpE4/30luxIxgE+LkIa8glBYw==" + "resolved" "https://registry.npmjs.org/workbox-window/-/workbox-window-5.1.4.tgz" + "version" "5.1.4" + dependencies: + "workbox-core" "^5.1.4" + +"worker-farm@^1.7.0": + "integrity" "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==" + "resolved" "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz" + "version" "1.7.0" + dependencies: + "errno" "~0.1.7" + +"worker-rpc@^0.1.0": + "integrity" "sha512-P1WjMrUB3qgJNI9jfmpZ/htmBEjFh//6l/5y8SD9hg1Ef5zTTVVoRjTrTEzPrNBQvmhMxkoTsjOXN10GWU7aCg==" + "resolved" "https://registry.npmjs.org/worker-rpc/-/worker-rpc-0.1.1.tgz" + "version" "0.1.1" + dependencies: + "microevent.ts" "~0.1.1" + +"wrap-ansi@^5.1.0": + "integrity" "sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q==" + "resolved" "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-5.1.0.tgz" + "version" "5.1.0" + dependencies: + "ansi-styles" "^3.2.0" + "string-width" "^3.0.0" + "strip-ansi" "^5.0.0" + +"wrap-ansi@^6.2.0": + "integrity" "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==" + "resolved" "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz" + "version" "6.2.0" + dependencies: + "ansi-styles" "^4.0.0" + "string-width" "^4.1.0" + "strip-ansi" "^6.0.0" + +"wrappy@1": + "integrity" "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" + "resolved" "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz" + "version" "1.0.2" + +"write-file-atomic@^3.0.0": + "integrity" "sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==" + "resolved" "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz" + "version" "3.0.3" + dependencies: + "imurmurhash" "^0.1.4" + "is-typedarray" "^1.0.0" + "signal-exit" "^3.0.2" + "typedarray-to-buffer" "^3.1.5" + +"ws@^6.2.1": + "integrity" "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==" + "resolved" "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz" + "version" "6.2.1" + dependencies: + "async-limiter" "~1.0.0" + +"ws@^7.2.3": + "integrity" "sha512-hr6vCR76GsossIRsr8OLR9acVVm1jyfEWvhbNjtgPOrfvAlKzvyeg/P6r8RuDjRyrcQoPQT7K0DGEPc7Ae6jzA==" + "resolved" "https://registry.npmjs.org/ws/-/ws-7.4.3.tgz" + "version" "7.4.3" + +"xml-name-validator@^3.0.0": + "integrity" "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" + "resolved" "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz" + "version" "3.0.0" + +"xmlchars@^2.2.0": + "integrity" "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + "resolved" "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz" + "version" "2.2.0" + +"xtend@^4.0.0", "xtend@~4.0.1": + "integrity" "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==" + "resolved" "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz" + "version" "4.0.2" + +"y18n@^4.0.0": + "integrity" "sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==" + "resolved" "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz" + "version" "4.0.1" + +"yallist@^3.0.2": + "integrity" "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + "resolved" "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz" + "version" "3.1.1" + +"yallist@^4.0.0": + "integrity" "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + "resolved" "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz" + "version" "4.0.0" + +"yaml@^1.10.0", "yaml@^1.7.2": + "integrity" "sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==" + "resolved" "https://registry.npmjs.org/yaml/-/yaml-1.10.0.tgz" + "version" "1.10.0" + +"yargs-parser@^13.1.2": + "integrity" "sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg==" + "resolved" "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.1.2.tgz" + "version" "13.1.2" + dependencies: + "camelcase" "^5.0.0" + "decamelize" "^1.2.0" + +"yargs-parser@^18.1.2": + "integrity" "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==" + "resolved" "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz" + "version" "18.1.3" + dependencies: + "camelcase" "^5.0.0" + "decamelize" "^1.2.0" + +"yargs@^13.3.2": + "integrity" "sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw==" + "resolved" "https://registry.npmjs.org/yargs/-/yargs-13.3.2.tgz" + "version" "13.3.2" + dependencies: + "cliui" "^5.0.0" + "find-up" "^3.0.0" + "get-caller-file" "^2.0.1" + "require-directory" "^2.1.1" + "require-main-filename" "^2.0.0" + "set-blocking" "^2.0.0" + "string-width" "^3.0.0" + "which-module" "^2.0.0" + "y18n" "^4.0.0" + "yargs-parser" "^13.1.2" + +"yargs@^15.4.1": + "integrity" "sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==" + "resolved" "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz" + "version" "15.4.1" + dependencies: + "cliui" "^6.0.0" + "decamelize" "^1.2.0" + "find-up" "^4.1.0" + "get-caller-file" "^2.0.1" + "require-directory" "^2.1.1" + "require-main-filename" "^2.0.0" + "set-blocking" "^2.0.0" + "string-width" "^4.2.0" + "which-module" "^2.0.0" + "y18n" "^4.0.0" + "yargs-parser" "^18.1.2" + +"yocto-queue@^0.1.0": + "integrity" "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==" + "resolved" "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz" + "version" "0.1.0" From dba79320c6c953015cdc3290c14c92e294fb199a Mon Sep 17 00:00:00 2001 From: Tudor Groza Date: Sat, 10 Apr 2021 11:26:46 +0800 Subject: [PATCH 72/72] Fixed filter parameter name. --- .../spot/ontotools/curation/constants/CurationConstants.java | 2 +- .../ontotools/curation/rest/controller/EntityController.java | 2 +- .../ontotools/curation/rest/controller/UsersController.java | 2 +- .../ac/ebi/spot/ontotools/curation/EntityControllerTest.java | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java index a3b877e..60e50d2 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/constants/CurationConstants.java @@ -34,7 +34,7 @@ public class CurationConstants { public static final String PARAM_ENTITY_ID = "entityId"; - public static final String PARAM_SEARCH = "search"; + public static final String PARAM_FILTER = "filter"; public static final String PARAM_CONTEXT = "context"; diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java index 7863e2c..6aabdcf 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/EntityController.java @@ -63,7 +63,7 @@ public class EntityController { produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.OK) public RestResponsePage getEntities(@PathVariable String projectId, - @RequestParam(value = CurationConstants.PARAM_SEARCH, required = false) String prefix, + @RequestParam(value = CurationConstants.PARAM_FILTER, required = false) String prefix, @RequestParam(value = CurationConstants.PARAM_CONTEXT, required = false) String context, @PageableDefault(size = 20, page = 0) Pageable pageable, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); diff --git a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/UsersController.java b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/UsersController.java index 01a2c4b..28a4e45 100644 --- a/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/UsersController.java +++ b/src/main/java/uk/ac/ebi/spot/ontotools/curation/rest/controller/UsersController.java @@ -43,7 +43,7 @@ public class UsersController { */ @GetMapping(produces = MediaType.APPLICATION_JSON_VALUE) @ResponseStatus(HttpStatus.OK) - public RestResponsePage getUsers(@RequestParam(value = CurationConstants.PARAM_SEARCH, required = false) String prefix, + public RestResponsePage getUsers(@RequestParam(value = CurationConstants.PARAM_FILTER, required = false) String prefix, @PageableDefault(size = 20, page = 0) Pageable pageable, HttpServletRequest request) { User user = jwtService.extractUser(HeadersUtil.extractJWT(request)); diff --git a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java index f463d33..3fa937b 100644 --- a/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java +++ b/src/test/java/uk/ac/ebi/spot/ontotools/curation/EntityControllerTest.java @@ -108,7 +108,7 @@ public void shouldGetEntitiesByPrefixSearch() throws Exception { String prefix = "chon"; String endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_ENTITIES + - "?" + CurationConstants.PARAM_SEARCH + "=" + prefix; + "?" + CurationConstants.PARAM_FILTER + "=" + prefix; String response = mockMvc.perform(get(endpoint) .contentType(MediaType.APPLICATION_JSON) .header(IDPConstants.JWT_TOKEN, "token1")) @@ -123,7 +123,7 @@ public void shouldGetEntitiesByPrefixSearch() throws Exception { prefix = "achond"; endpoint = GeneralCommon.API_V1 + CurationConstants.API_PROJECTS + "/" + project.getId() + CurationConstants.API_ENTITIES + - "?" + CurationConstants.PARAM_SEARCH + "=" + prefix; + "?" + CurationConstants.PARAM_FILTER + "=" + prefix; response = mockMvc.perform(get(endpoint) .contentType(MediaType.APPLICATION_JSON) .header(IDPConstants.JWT_TOKEN, "token1"))

+ + {label} {provenance.user.name} {when} + +